diff --git a/examples/PLProcessing.py b/examples/PLProcessing.py index bb061bb..8cd2a92 100644 --- a/examples/PLProcessing.py +++ b/examples/PLProcessing.py @@ -1,27 +1,27 @@ # Process PL Data from Wright group -import pathlib import makeitwright as mw - +from makeitwright import datasets andor = mw.andor roi = mw.helpers.roi parse = mw.parsers.parse plot = mw.spectra.plot_spectra +p = datasets.PL +filepath = p.parent +filename = p.stem -filepath = pathlib.Path().expanduser() / "Desktop" / "Research Data" / "Wright Table" / "Original" / "test" -filename = "PEAPbI on FPEASnI PL 77K 4 2 hour wait for cool" -obj = 10 # Objective magnification (5x, 10x, 50x, 100x) -ROI_lower = 1000 # Lower and upper bounds of ROI -ROI_upper = 1047 +obj = 10 # Objective magnification (5x, 10x, 50x, 100x) +ROI_lower = 575 # Lower and upper bounds of ROI +ROI_upper = 600 plotx_lower = 500 # Lower and upper bounds of built-in plot x-axis plotx_upper = 800 # Read data -data = parse(filepath, objective=obj, keywords=filename + ".asc") +data = parse(filepath, objective=str(obj), keywords=filename + ".asc") # Check object area @@ -34,7 +34,6 @@ if con == '1': quit() - # Process PL data PL_ROI = roi(data, {'y': ([ROI_lower, ROI_upper], 'average')}) plot(PL_ROI, channel=0, xrange=[plotx_lower, plotx_upper]) # Can add vrange=[ , ] (y axis scale) diff --git a/makeitwright/core/parsers/__init__.py b/makeitwright/core/parsers/__init__.py index 0e018fa..1d2de02 100644 --- a/makeitwright/core/parsers/__init__.py +++ b/makeitwright/core/parsers/__init__.py @@ -11,6 +11,18 @@ from .xrd import fromBruker +px_per_um = { + '5x-Jin' : 0.893, + '20x-Jin' : 3.52, + '100x-Wright' : 18.2, + '5' : 0.893, + '20' : 3.52, + '100' : 18.2, +} +# add 10x for now with approximation +px_per_um["10"] = px_per_um["10x-Jin"] = 2 * px_per_um["5"] + + def typeID(*fpaths): """ Infer what kind of data the file contains. @@ -78,14 +90,14 @@ def parse(fdir, objective, select_types=None, keywords:list|str=[], exclude=[]): keywords = [keywords] for kw in keywords: for i, f in enumerate(files): - if kw not in f: + if kw not in str(f): include[i]=0 if exclude: if type(exclude) is not list: exclude = [exclude] for x in exclude: for i, f in enumerate(files): - if x in f: + if x in str(f): include[i]=0 files = [file for i, file in zip(include, files) if i] @@ -118,7 +130,7 @@ def parse(fdir, objective, select_types=None, keywords:list|str=[], exclude=[]): too_much_data = True if len(ftypes) > 200: too_much_data = True - if sum([f.state()["st_size"] for f in files]) > virtual_memory().available: + if sum([f.stat().st_size for f in files]) > virtual_memory().available: too_much_data = True if too_much_data: @@ -126,7 +138,7 @@ def parse(fdir, objective, select_types=None, keywords:list|str=[], exclude=[]): d = [] for fpath, dtype in ftypes.items(): - basename = fpath.split('/')[-1].split('.')[0] + basename = fpath.stem if dtype.startswith('LabramHR'): d.append(fromLabramHR(fpath, name=basename)) @@ -148,9 +160,10 @@ def parse(fdir, objective, select_types=None, keywords:list|str=[], exclude=[]): elif dtype=='ASCII': try: - d.append(fromAndorNeo(fpath, name=basename, objective_lens=objective)) - except: + d.append(fromAndorNeo(fpath, name=basename, px_per_um=px_per_um[objective] if objective else None)) + except Exception as e: print(f'attempted to extract ASCII data from path <{fpath}> but it was not recognized by the andor module') + raise e print(basename) elif dtype=='wt5': diff --git a/makeitwright/core/parsers/andor.py b/makeitwright/core/parsers/andor.py index 53d7140..0f76c54 100644 --- a/makeitwright/core/parsers/andor.py +++ b/makeitwright/core/parsers/andor.py @@ -1,10 +1,11 @@ import WrightTools as wt -import numpy as np -import pathlib -from os import fspath -def fromAndorNeo(fpath, name=None, objective_lens='prompt', cps=False): +# builtin conversion from pixels to um (from somebody's records) +# for different objectives +# roughly, pixel size in microns / magnification + +def fromAndorNeo(fpath, name=None, px_per_um=None): """Create a data object from Andor Solis software (ascii exports). Parameters @@ -16,169 +17,35 @@ def fromAndorNeo(fpath, name=None, objective_lens='prompt', cps=False): name : string (optional) Name to give to the created data object. If None, filename is used. Default is None. + px_per_um : float-like (optional) + if present, camera spatial dimensions will be mapped in micron units. + if not present, spatial variables of camera will be a unitless index Returns ------- data New data object. """ - - objective_lenses = { - '5x-Jin' : 0.893, - '20x-Jin' : 3.52, - '100x-Wright' : 18.2, - '5' : 0.893, - '20' : 3.52, - '100' : 18.2, - 5 : 0.893, - 20 : 3.52, - 100 : 18.2 - } - # parse filepath - filepath = pathlib.Path(fpath) - - if not ".asc" in filepath.suffixes: - wt.exceptions.WrongFileTypeWarning.warn(filepath, ".asc") - # parse name - if name is None: - name = filepath.name.split("/")[-1] + data:wt.Data = wt.data.from_Solis(fpath, name=name, verbose=True) + data.rename_variables(xindex="x", yindex="y", wm="wl") + data.rename_channels(signal="sig") - if objective_lens=='prompt': - objective_lens = input(f'enter magnification for data at {name}: ') - if not objective_lens: - objective_lens = 0 + for var in {"x", "y"} & set(data.variable_names): + if px_per_um: + data[var][:] = data[var][:] / px_per_um + data[var].units = 'µm' - # create data - ds = np.DataSource(None) - f = ds.open(fspath(fpath), "rt") - axis0 = [] - arr = [] - attrs = {} + dtype = "image" if "x" in data.variable_names else "spectralprofile" + data.attrs.update(dtype=dtype) - line0 = f.readline().strip()[:-1] - line0 = [float(x) for x in line0.split(",")] # TODO: robust to space, tab, comma - axis0.append(line0.pop(0)) - arr.append(line0) - - def get_frames(f, arr, axis0): - axis0_written = False - while True: - line = f.readline().strip()[:-1] - if len(line) == 0: - break - else: - line = [float(x) for x in line.split(",")] - # signature of new frames is restart of axis0 - if not axis0_written and (line[0] == axis0[0]): - axis0_written = True - if axis0_written: - line.pop(0) - else: - axis0.append(line.pop(0)) - arr.append(line) - return arr, axis0 + if "wl" in data.variable_names: + data["wl"].attrs['label'] = "wavelength (nm)" if data["wl"].units == "nm" else "wavenumber (cm-1)" - arr, axis0 = get_frames(f, arr, axis0) - nframes = len(arr) // len(axis0) - - i = 0 - while i < 3: - line = f.readline().strip() - if len(line) == 0: - i += 1 - else: - try: - key, val = line.split(":", 1) - except ValueError: - pass - else: - attrs[key.strip()] = val.strip() - - f.close() - - #create data object - arr = np.array(arr) - axis0 = np.array(axis0) - data = wt.Data(name=name) - if float(attrs["Grating Groove Density (l/mm)"]) == 0: - xname = 'x' - dtype = 'image' - try: - axis0 = axis0/objective_lenses[objective_lens] - xunits = 'µm' - except KeyError: - xunits = 'px' + if data.sig.units == "Hz": + data.sig.label = "intensity (cps)" else: - xname = 'wl' - xunits = 'nm' - dtype = 'spectralprofile' - - axis1 = np.arange(arr.shape[-1]) - yname='y' - try: - axis1 = axis1/objective_lenses[objective_lens] - yunits = 'µm' - except KeyError: - yunits = 'px' - - axes = [xname, yname] + data.sig.label = "counts" - if nframes == 1: - arr = np.array(arr) - data.create_variable(name=xname, values=axis0[:, None], units=xunits) - data.create_variable(name=yname, values=axis1[None, :], units=yunits) - else: - frames = np.arange(nframes) - try: - ct = float(attrs["Kinetic Cycle Time (secs)"]) - frames = frames*ct - tname = 't' - tunits = 's' - except KeyError: - tname = 'frame' - tunits = None - arr = np.array(arr).reshape(nframes, len(axis0), len(arr[0])) - data.create_variable(name=tname, values=frames[:, None, None], units=tunits) - data.create_variable(name=xname, values=axis0[None, :, None], units=xunits) - data.create_variable(name=yname, values=axis1[None, None, :], units=yunits) - axes = [tname] + axes - - if xname=='wl': - if xunits=='nm': - data[xname].attrs['label'] = "wavelength (nm)" - if xunits=='wn': - data[xname].attrs['label'] = "wavenumber (cm-1)" - if xname=='x': - data[xname].attrs['label'] = "x (µm)" - if yname=='y': - data[yname].attrs['label'] = "y (µm)" - - data.transform(*axes) - if cps: - try: - arr = arr/float(attrs["Exposure Time (secs)"]) - except KeyError: - pass - try: - arr = arr/int(attrs["Number of Accumulations"]) - except KeyError: - pass - - data.create_channel(name='sig', values=arr, signed=False) - if cps: - data['sig'].attrs['label'] = "intensity (cps)" - else: - data['sig'].attrs['label'] = "counts" - - for key, val in attrs.items(): - data.attrs[key] = val - - # finish - print("data created at {0}".format(data.fullpath)) - print(" axes: {0}".format(data.axis_names)) - print(" shape: {0}".format(data.shape)) - data.attrs['dtype']=dtype return data - diff --git a/makeitwright/datasets/PL_hea_entropy_ex10sec_obj1_lowpower250um 1.asc b/makeitwright/datasets/PL_hea_entropy_ex10sec_obj1_lowpower250um 1.asc new file mode 100644 index 0000000..1540470 --- /dev/null +++ b/makeitwright/datasets/PL_hea_entropy_ex10sec_obj1_lowpower250um 1.asc @@ -0,0 +1,2590 @@ +384.25092,107,87,101,86,82,89,103,92,77,114,99,96,102,66,104,102,66,95,91,87,79,104,94,91,100,90,100,98,60,107,77,93,74,95,113,114,108,86,82,95,93,99,95,99,97,100,110,109,77,104,84,104,94,96,99,94,95,89,95,94,100,106,104,103,103,105,91,93,67,115,91,90,65,93,99,113,97,86,104,83,103,105,110,103,95,135,97,100,99,97,100,100,108,105,94,106,103,91,90,110,101,98,105,104,105,91,105,70,85,109,100,94,104,85,106,90,96,92,91,82,106,94,102,104,88,106,91,105,117,94,98,97,101,90,89,105,100,106,94,92,104,112,100,99,100,99,111,89,101,94,108,83,109,103,100,102,90,110,93,96,108,105,101,104,90,102,97,89,93,91,103,97,98,100,74,95,100,92,90,100,85,96,95,97,85,100,110,85,113,84,85,110,104,106,100,91,93,83,97,84,83,86,91,108,96,98,106,104,90,99,91,87,115,98,100,97,92,97,112,101,90,99,102,99,91,69,98,116,102,112,89,85,94,87,90,97,98,104,108,94,89,104,102,102,101,97,82,97,95,90,104,113,100,108,92,112,101,97,86,113,91,112,102,103,96,100,96,98,92,104,101,119,81,115,94,66,95,102,82,104,101,104,100,100,105,107,96,88,103,95,91,99,101,86,108,100,96,101,95,101,103,110,92,104,106,106,103,96,100,93,88,97,103,107,90,95,96,95,90,88,81,87,103,95,92,80,92,96,104,105,91,90,90,94,106,94,93,93,96,102,98,96,96,90,88,105,91,97,105,107,92,96,105,108,100,75,107,114,124,100,104,97,100,92,103,115,104,104,97,89,104,94,97,100,101,93,115,102,99,101,109,106,98,116,99,73,99,97,100,87,97,99,102,102,64,90,103,115,95,108,101,101,101,87,92,86,96,101,106,95,79,104,94,87,104,99,91,98,118,95,106,105,88,112,115,94,95,102,88,105,93,95,92,102,97,98,102,115,99,106,114,107,104,91,91,100,97,97,103,125,105,97,99,105,94,94,103,102,109,105,101,98,96,89,106,106,101,104,90,95,96,94,105,86,86,108,83,103,95,104,94,109,130,100,107,101,103,101,102,73,86,115,97,96,90,83,84,101,107,108,103,100,91,99,107,92,99,95,93,104,103,100,101,108,112,100,91,101,88,93,87,97,114,111,87,85,107,96,99,85,97,105,109,88,89,91,96,97,119,96,84,101,92,101,96,106,90,101,97,108,104,92,105,104,104,93,91,99,72,86,91,88,107,95,91,77,92,110,100,97,91,96,104,81,82,106,99,87,95,91,101,90,110,105,97,89,100,104,100,97,102,89,95,94,100,94,103,106,77,97,109,105,103,77,107,110,90,89,110,113,94,104,103,78,95,90,87,96,81,104,112,100,92,99,97,84,94,101,96,105,88,99,96,99,98,100,100,101,105,97,99,96,116,88,99,85,100,97,91,99,90,87,99,102,102,103,98,94,104,105,109,102,99,94,90,86,97,107,84,91,105,99,96,94,142,109,96,87,108,95,94,109,118,106,104,107,106,119,95,95,119,97,89,92,91,96,99,90,100,96,101,94,108,96,96,98,88,95,86,101,88,107,106,81,104,97,90,104,73,99,96,95,105,97,91,74,108,92,82,105,95,112,95,99,91,89,86,105,110,92,100,82,99,101,102,100,105,107,78,90,109,88,85,97,96,92,99,110,113,85,98,90,90,82,100,97,77,94,92,96,72,86,107,90,90,95,99,89,74,98,82,92,101,95,91,102,106,88,105,94,99,100,87,90,104,95,96,95,108,102,68,110,83,95,103,92,90,77,88,105,101,98,98,101,105,113,109,96,96,86,74,91,105,103,95,99,88,84,95,95,108,85,97,102,98,108,108,96,94,102,100,98,100,91,104,99,104,89,56,86,98,80,90,108,98,99,104,93,92,111,98,85,94,108,106,87,97,92,95,97,95,104,107,86,94,96,98,98,91,87,93,103,82,109,91,99,108,119,83,92,96,108,99,100,108,84,99,100,73,99,68,99,86,83,91,97,90,101,100,84,89,97,107,91,100,97,102,110,99,101,102,92,81,58,90,96,92,99,103,114,97,93,99,106,93,98,95,93,90,64,84,104,104,113,97,95,100,85,90,96,102,97,85,89,97,105,97,118,96,105,94,102,101,86,95,92,86,107,86,95,96,116,100,82,91,105,78,87,101,101,86,104,96,107,90,99,92,95,98,100,97,99,105,107,95,92,96,101,93,99,86,78,97,91,100,118,87,108,83,93,95,105,77,112,92,100,91,99,91,96,91,105,113,83,117,95,102,105,92,91,90,87,82,93,106,90,104,108,99,94,96,90,68,101,98,90,100,103,106,107,112,123,101,65,108,109,101,96,105,113,90,110,93,85,96,99,99,95,101,105,95,96,111,103,112,102,119,85,84,104,99,89,92,102,90,94,92,86,99,100,89,81,95,94,96,83,108,83,82,106,109,109,101,88,97,96,110,104,96,94,96,92,92,103,99,91,91,79,90,103,90,96,102,104,108,93,90,104,94,90,108,98,98,89,99,102,105,96,90,91,95,86,91,119,100,102,102,101,94,101,92,92,105,91,86,103,99,122,69,88,107,92,99,91,100,103,97,98,106,100,85,98,96,91,83,92,93,83,103,104,93,98,99,95,96,100,108,89,102,88,89,101,117,97,91,95,93,88,108,96,91,86,102,111,108,95,117,67,58,69,108,114,105,69,100,110,90,94,101,96,106,88,67,95,96,95,94,99,93,106,86,91,97,103,91,97,122,104,96,94,76,95,110,92,95,80,114,99,101,88,96,104,93,99,107,93,81,103,101,108,100,102,114,102,93,97,97,103,89,92,97,98,91,108,98,95,84,96,77,105,118,97,101,104,99,110,99,97,87,104,96,105,103,105,94,96,97,94,101,94,87,92,96,90,106,73,100,95,99,89,90,105,86,96,98,87,95,99,101,100,100,101,89,95,99,92,100,91,111,98,104,87,93,101,99,94,85,102,103,98,108,107,110,96,106,80,105,102,114,103,104,116,74,114,93,80,83,98,102,92,108,102,105,90,96,91,95,98,102,103,90,101,98,105,103,121,96,103,98,97,110,90,101,113,96,105,105,90,81,97,96,90,98,115,110,93,114,97,105,100,94,96,108,94,128,88,97,84,82,98,101,105,97,106,95,87,94,104,113,97,92,96,90,97,100,98,105,90,117,91,103,93,100,102,95,117,92,108,104,82,93,92,94,104,95,90,87,83,95,95,86,100,98,85,95,87,107,110,98,104,94,100,101,101,110,123,97,96,89,89,101,104,92,93,98,103,110,104,91,100,81,99,104,94,103,99,96,89,92,98,104,89,101,97,103,97,104,108,93,101,98,100,93,96,98,96,103,83,86,98,102,86,93,103,101,98,96,106,111,95,106,86,98,100,95,100,84,100,98,97,107,112,88,86,99,83,92,96,114,113,86,115,107,88,96,99,87,100,86,110,94,94,101,102,109,106,116,78,105,94,92,115,94,70,108,99,117,85,95,105,97,92,93,97,99,99,105,95,85,95,94,113,93,94,74,104,101,97,102,87,82,102,107,102,86,92,95,101,92,99,93,105,92,102,101,97,95,98,95,94,97,91,104,97,104,98,97,100,102,93,104,100,100,100,90,102,96,91,93,93,108,90,112,103,101,88,119,98,109,101,107,97,112,102,95,70,105,117,86,86,95,106,103,96,95,86,97,99,112,106,118,75,97,83,98,87,100,93,99,103,82,100,105,99,92,94,98,94,102,88,95,98,86,103,87,95,99,95,104,90,90,107,115,92,99,100,90,97,109,86,82,105,90,93,92,101,95,87,83,95,99,96,90,105,83,90,84,97,113,92,111,101,110,100,110,94,99,99,100,108,80,86,107,100,106,96,102,99,109,93,93,96,101,116,105,101,105,100,101,95,88,96,94,91,97,110,91,105,79,103,110,99,101,106,93,85,91,103,87,90,102,106,93,104,101,113,123,85,102,101,91,105,97,99,92,109,98,90,97,94,115,94,95,99,101,104,109,101,99,86,109,95,100,103,95,107,102,110,96,97,104,85,92,112,93,97,90,85,98,81,107,81,86,99,94,95,98,85,93,101,94,99,95,97,98,101,80,92,90,94,103,84,102,96,90,100,104,101,105,101,101,110,106,101,102,93,100,94,100,101,91,88,92,104,94,108,99,110,110,77,90,86,116,77,87,91,95,92,92,93,79,91,94,93,97,98,100,96,81,112,85,80,99,86,99,110,101,92,90,102,101,94,118,96,97,94,101,102,84,95,90,95,108,91,94,104,87,95,91,94,93,119,104,122,105,114,98,100,98,94,104,96,101,101,105,83,96,105,87,98,94,122,86,98,102,99,100,86,100,95,97,95,97,95,109,94,91,90,102,96,95,107,98,107,109,90,99,102,102,86,101,96,105,96,87,97,96,94,95,87,106,102,93,120,97,98,95,103,100,116,92,84,101,96,101,94,131,94,107,102,93,114,98,89,98,103,88,89,101,119,108,103,96,99,104,109,103,111,93,104,92,104,102,121,84,114,95,105,100,101,100,77,96,123,97,96,97,95,100,100,88,103,95,104,108,92,108,90,97,112,98,91,101,86,67,86,87,99,106,92,90,86,89,107,100,97,87,105,101,98,97,87,105,89,102,92,98,81,104,94,96,90,92,95,104,95,106,105,75,116,99,102,85,98,106,106,100,104,94,107,104,96,109,91,99,80,116,93,96,128,99,89,78,110,85,98,71,99,95,104,109,101,108,95,95,104,97,112,87,96,104,105,93,99,93,75,92,122,90,89,102,97,93,103,129,116,98,101,101,89,121,95,116,109,100,108,114,92,128,105, +384.39096,77,93,91,88,93,86,90,82,83,105,97,100,91,93,105,106,99,110,110,97,102,91,87,97,91,100,113,96,101,95,103,90,101,93,100,95,108,100,102,95,97,68,95,100,93,91,98,101,104,100,95,89,97,84,102,97,91,93,108,91,94,100,92,87,95,98,95,96,108,84,105,104,103,96,93,105,96,95,105,100,87,96,99,94,109,101,87,110,101,96,96,95,91,92,97,100,94,97,100,110,85,95,104,103,85,97,101,108,91,94,111,105,99,84,108,90,99,80,101,90,114,96,92,103,107,108,101,83,102,100,105,98,102,86,100,104,96,86,85,87,92,89,99,100,96,90,96,109,99,102,100,93,100,93,87,84,100,93,87,97,96,102,105,81,96,111,91,98,112,92,98,102,83,104,96,110,100,82,102,99,96,104,82,112,110,97,88,91,96,93,91,99,92,102,97,96,87,100,90,102,99,94,97,98,97,109,102,104,97,107,97,89,89,101,94,103,91,91,103,103,102,102,91,95,107,98,109,109,114,93,82,100,101,105,103,97,94,112,79,106,86,101,99,99,77,108,107,101,101,96,89,78,92,93,100,94,101,99,96,113,80,101,98,85,89,93,109,101,96,132,87,98,102,96,88,95,100,106,105,100,102,99,104,92,99,97,91,99,84,90,90,102,99,80,103,94,95,92,96,100,99,92,95,106,86,103,105,121,100,91,86,116,109,101,101,100,101,93,105,96,87,94,85,104,97,98,89,87,94,109,107,103,95,89,105,94,107,90,96,99,91,104,108,106,78,116,106,110,114,100,93,105,85,90,97,97,96,105,91,104,104,100,97,94,99,108,95,110,111,103,110,97,108,100,108,96,109,96,94,100,78,88,97,108,95,82,91,101,96,96,105,98,105,108,96,82,107,96,93,107,99,101,102,97,110,105,94,98,96,92,90,97,100,100,106,104,99,101,91,89,98,105,98,104,95,95,110,95,86,101,94,94,90,111,92,96,106,92,110,103,102,97,89,95,104,105,106,106,95,100,79,90,103,99,100,77,100,100,100,95,110,96,103,96,92,118,106,106,113,81,104,107,91,103,93,94,94,96,91,103,96,95,92,116,78,95,113,99,91,90,97,111,102,96,112,91,90,85,84,97,111,105,105,97,95,110,116,91,103,97,93,108,95,111,105,104,98,94,97,96,99,111,98,93,98,105,99,91,105,104,96,93,87,102,95,100,91,89,86,105,111,103,86,103,110,106,101,93,105,104,91,102,95,87,88,96,103,111,94,104,80,88,105,115,98,98,91,107,106,92,82,97,100,83,80,98,103,114,88,101,96,96,94,86,100,126,103,98,106,84,109,111,102,96,96,115,107,95,86,95,99,105,101,100,89,107,110,95,104,104,97,105,96,101,99,91,89,107,101,95,111,99,91,100,104,96,95,103,103,99,103,81,94,92,104,96,109,97,97,116,79,91,103,94,92,97,128,95,94,98,86,99,102,104,103,90,96,98,92,82,94,86,103,110,97,99,104,89,99,108,98,95,103,104,110,98,103,84,94,96,94,93,110,90,99,101,110,100,101,95,99,95,101,120,108,98,95,97,101,99,98,104,82,89,101,90,103,98,99,86,98,104,101,90,83,101,104,90,90,87,95,90,95,103,98,91,100,99,84,111,99,84,98,104,95,82,100,93,96,98,113,95,83,105,118,100,98,110,99,114,106,90,95,80,100,102,100,100,96,94,97,105,110,100,96,78,87,90,96,92,105,90,95,97,89,112,111,110,102,100,102,105,94,104,87,91,102,94,97,86,103,109,105,105,76,97,95,111,106,106,105,101,86,96,107,103,107,100,77,102,104,96,109,108,109,108,97,104,91,102,92,107,90,94,95,100,92,111,91,92,105,93,100,99,105,101,94,100,97,103,84,93,110,93,101,88,99,86,88,102,104,91,102,101,92,94,98,98,96,104,88,101,106,112,101,98,98,110,92,113,82,99,102,107,97,105,101,96,110,99,120,96,89,81,103,124,86,97,91,90,96,107,110,98,91,94,83,99,100,88,99,103,100,78,110,92,101,98,82,89,99,106,97,83,110,93,86,107,104,104,103,88,98,101,99,110,98,105,88,96,82,92,104,91,94,87,91,93,94,99,106,112,105,88,79,95,106,98,99,92,98,93,108,103,102,86,104,115,93,89,95,105,83,104,94,99,91,100,95,71,97,89,106,102,88,97,90,96,106,95,91,91,96,97,98,105,96,87,108,98,98,117,95,81,67,100,91,96,89,102,106,104,106,97,94,97,104,90,91,92,97,106,93,84,93,97,66,82,95,86,104,102,100,88,105,84,93,97,90,93,107,97,108,96,91,95,92,108,94,87,106,95,99,98,101,85,88,104,104,112,84,93,93,100,99,99,97,87,100,102,85,82,90,109,101,84,89,109,96,95,83,107,83,94,93,96,105,85,86,121,106,87,96,98,107,105,97,101,103,106,116,97,91,90,83,100,87,88,118,119,113,93,103,104,85,102,95,104,108,103,90,97,102,118,98,87,93,98,88,99,84,108,106,89,102,112,94,99,104,96,100,83,99,100,94,111,100,99,90,98,95,97,105,93,109,98,103,100,105,96,93,108,92,106,94,107,112,105,95,95,101,91,99,84,96,103,96,92,91,94,94,97,91,104,100,96,60,103,102,95,95,120,131,116,94,96,91,106,90,101,90,112,99,85,108,97,87,92,89,100,92,101,89,85,86,89,100,112,117,100,90,92,94,100,99,121,113,104,96,98,96,106,91,83,98,106,87,109,83,97,88,114,93,106,113,95,105,104,99,95,89,113,98,91,101,106,110,105,103,88,86,103,104,115,95,101,97,99,94,96,103,99,104,105,91,96,94,99,90,111,119,102,107,100,83,108,102,112,113,104,83,79,104,94,98,90,101,106,100,96,87,103,79,92,101,104,94,100,121,95,109,114,93,109,91,97,104,105,95,102,100,93,97,91,87,100,92,92,103,91,96,109,79,107,102,104,125,91,100,99,92,95,110,94,99,89,105,97,98,113,94,94,84,105,96,95,91,93,113,109,96,99,109,106,98,109,91,98,98,119,111,99,110,111,107,96,87,97,91,92,110,102,98,98,91,85,87,90,100,103,98,114,103,93,93,87,73,102,98,108,96,97,96,96,99,91,93,102,99,93,115,80,85,101,86,94,89,62,88,92,82,111,111,101,98,95,101,100,100,110,101,92,102,93,90,90,97,109,96,106,102,100,105,97,98,98,91,97,87,94,92,99,103,101,93,106,96,70,88,89,106,95,102,109,96,101,103,103,103,90,101,86,112,106,89,96,97,95,110,103,104,111,102,98,88,98,102,69,114,106,98,96,99,100,108,111,98,76,96,98,106,106,110,109,100,91,97,103,103,96,90,93,119,105,80,95,101,98,104,94,72,99,105,92,92,106,92,102,96,109,97,94,104,105,94,103,97,102,93,95,100,95,103,83,109,97,101,94,101,96,111,107,104,106,123,96,95,93,105,86,98,98,99,104,91,91,89,98,97,95,93,96,101,89,85,99,101,95,126,97,101,94,92,97,102,105,90,101,102,91,111,95,96,100,95,103,102,100,95,84,88,96,90,98,96,101,95,95,110,101,103,104,109,99,103,101,97,97,104,109,87,96,104,101,82,94,93,105,104,95,117,122,96,91,113,99,108,102,94,95,95,108,97,94,83,84,91,96,100,116,91,103,100,94,100,116,87,107,97,96,96,95,110,95,96,87,97,112,96,102,94,96,103,94,87,98,108,105,112,91,94,104,93,91,64,91,108,107,114,91,101,101,95,92,89,94,108,106,107,91,102,101,94,98,107,95,73,97,96,60,104,111,97,91,93,102,98,102,106,94,94,99,97,91,94,104,102,99,89,105,87,92,95,95,98,105,100,94,97,99,93,95,93,96,95,107,102,99,121,106,102,101,105,102,98,100,109,95,91,100,79,99,105,105,98,97,82,91,90,105,87,95,88,106,104,92,86,91,100,102,103,97,106,96,103,95,100,95,97,93,92,99,86,85,102,107,104,112,102,81,107,84,103,84,89,94,82,96,91,94,98,112,100,91,110,102,113,82,103,102,100,97,106,86,108,104,99,105,119,87,98,90,86,129,95,106,90,114,112,93,108,93,94,89,84,103,93,105,92,80,92,118,104,97,109,93,89,95,108,113,105,101,92,100,106,103,97,98,99,104,104,100,95,98,98,100,90,103,95,99,99,109,101,72,93,98,100,109,101,105,98,99,111,108,89,103,94,90,97,59,105,110,106,97,104,95,113,97,104,99,116,111,108,117,100,102,108,108,104,104,100,96,96,98,116,96,100,111,99,92,100,103,106,106,107,100,95,98,95,88,94,111,99,104,104,97,91,105,114,106,88,88,99,99,100,104,89,87,92,91,101,104,99,104,96,93,89,89,92,100,96,103,98,104,92,94,95,95,103,104,96,97,94,114,103,95,98,100,89,100,81,98,84,113,111,97,96,102,108,91,117,112,94,107,108,95,95,108,87,101,100,116,84,86,99,120,110,101,96,94,97,113,117,114,92,107,118,101,88,97,94,93,81,97,87,93,105,97,105,101,86,105,95,98,103,97,106,97,87,91,103,104,87,102,100,97,85,91,99,103,100,98,98,99,87,71,101,99,99,95,89,84,110,97,99,100,100,109,97,82,104,103,101,97,80,78,98,97,99,96,72,96,89,104,101,97,114,88,108,105,101,87,98,97,100,94,88,102,112,105,102,134,106,100,92,102,112,102,94,104,103,88,103,89,92,96,90,97,89,95,105,102,99,110,76,108,94,106,96,104,92,103,87,95,102,107,90,86,98,93,95,96,99,84,108,85,75,113,97,99,97,94,89,99,92,84,94,90,107,89, +384.53098,103,92,98,92,86,105,97,92,92,91,87,96,107,92,129,98,94,110,99,101,84,101,103,108,98,90,109,112,99,101,79,89,102,109,105,89,89,88,91,102,92,95,91,105,93,110,89,100,101,91,104,95,89,98,77,95,98,89,103,91,93,87,99,97,105,92,97,102,107,93,95,94,107,91,99,96,99,102,102,94,100,116,90,94,100,89,97,91,90,105,106,90,95,134,96,109,113,66,101,106,87,91,87,91,99,99,101,99,106,94,96,104,100,87,105,102,97,101,98,99,97,97,89,93,100,78,96,96,110,86,105,95,98,93,89,103,102,91,110,95,99,115,90,90,106,94,113,104,96,95,106,100,99,114,98,99,105,88,101,104,101,96,105,92,90,94,101,88,91,103,97,105,107,90,86,100,98,94,102,101,97,98,96,79,105,101,94,92,112,103,84,99,90,97,92,101,97,97,90,92,98,109,99,100,87,96,115,104,100,113,93,82,95,102,100,99,96,101,104,97,66,100,98,100,100,90,96,103,100,93,100,88,91,97,102,98,91,100,100,102,94,97,99,99,95,98,99,100,85,103,105,104,98,109,104,88,94,105,88,101,75,90,95,111,94,110,109,95,92,86,107,96,104,100,101,110,100,106,86,87,85,101,99,105,109,106,90,102,97,94,102,104,117,95,91,114,82,107,96,106,92,101,96,108,99,110,107,95,116,88,98,102,96,93,86,99,103,98,106,91,94,90,95,105,95,106,89,94,100,117,107,101,109,99,98,103,90,100,83,95,97,97,103,105,115,97,106,102,97,84,107,92,84,104,87,94,93,107,89,97,104,99,90,93,94,97,73,93,99,95,104,97,99,103,97,92,95,100,101,87,92,97,104,104,111,96,88,96,95,97,91,91,91,105,96,95,92,97,95,95,102,95,85,96,92,103,88,91,107,102,91,89,114,88,92,85,104,93,124,99,91,98,97,97,96,98,91,104,90,96,92,106,98,103,101,93,105,108,97,102,94,98,91,98,91,71,85,80,92,110,91,90,94,95,105,99,94,90,99,98,101,95,106,99,101,118,91,91,102,104,96,104,99,104,96,105,94,95,118,92,100,90,99,88,107,99,90,99,108,102,105,100,107,88,100,91,94,91,103,114,99,101,94,98,102,108,89,95,94,91,105,99,93,110,90,90,91,94,87,93,77,93,110,89,104,112,113,103,89,100,97,102,102,88,106,77,107,98,100,100,109,100,95,96,115,104,97,108,87,104,98,96,104,99,95,91,100,84,90,86,107,87,86,103,93,100,109,108,100,87,86,93,95,122,98,97,94,87,89,104,112,106,85,107,102,90,82,77,97,99,98,102,87,86,94,111,93,96,103,95,93,90,109,85,93,91,87,92,92,98,100,110,81,107,86,99,99,102,102,92,97,90,105,103,93,98,96,99,90,100,116,99,87,98,98,110,96,99,94,100,102,101,94,97,93,101,103,100,95,107,96,105,96,109,85,93,115,102,99,104,93,92,96,104,98,99,96,100,112,99,103,84,93,101,94,93,109,97,96,100,104,93,95,92,101,93,91,89,99,86,102,96,96,123,105,99,104,104,101,94,97,101,113,95,92,109,91,104,103,107,100,75,94,96,100,92,97,97,89,97,95,94,125,132,94,94,90,97,116,96,95,89,97,96,89,95,98,112,109,96,94,95,97,112,94,100,120,105,100,88,105,99,106,91,87,94,95,91,100,100,109,98,88,97,95,91,94,90,94,85,86,98,97,79,98,112,99,103,94,83,93,90,104,104,98,94,92,96,104,103,103,105,103,105,105,104,97,87,95,101,100,102,93,84,91,97,84,98,90,103,114,93,84,108,102,92,95,113,103,95,96,99,86,97,98,106,100,87,105,99,104,95,101,91,80,109,111,102,108,96,94,111,103,101,82,101,90,102,80,102,101,81,103,80,98,95,91,101,90,98,103,92,92,106,86,82,88,103,104,104,92,106,102,103,81,121,102,86,94,100,97,100,93,96,96,94,101,113,107,97,109,98,104,89,121,97,92,94,99,106,101,97,105,110,89,84,86,91,91,106,113,92,104,109,98,94,91,90,128,108,95,104,79,125,88,94,90,103,110,98,104,112,69,106,84,87,91,108,104,97,87,89,97,104,92,114,99,84,95,88,96,92,101,96,110,77,118,95,95,96,100,101,107,92,102,91,96,90,95,55,111,109,104,108,91,97,98,95,106,96,82,110,113,119,98,100,98,98,85,94,88,92,93,104,92,67,95,109,102,97,91,101,109,87,103,98,104,87,98,86,84,103,97,94,99,102,82,97,108,101,103,99,99,89,93,98,85,98,111,96,96,93,102,103,100,86,97,109,105,94,93,106,93,116,82,104,97,86,101,92,76,90,94,94,95,101,88,92,93,91,101,97,92,104,105,82,80,87,97,96,109,97,91,106,92,105,99,93,78,87,94,100,104,101,96,99,95,101,112,79,91,100,96,84,97,90,107,91,104,107,103,97,112,101,96,102,95,98,111,100,94,102,105,109,89,92,93,104,96,101,100,95,98,92,92,102,97,104,95,83,97,111,96,90,92,94,94,106,110,101,96,92,80,98,90,101,104,103,99,103,106,94,102,92,94,105,109,88,92,95,100,97,109,83,87,89,103,118,79,92,102,114,91,86,99,90,104,101,104,91,104,94,92,106,106,107,109,101,91,93,106,95,102,107,100,97,96,96,92,98,91,90,114,94,99,91,110,97,97,93,88,93,92,94,98,95,102,102,101,104,87,101,87,102,109,98,94,85,96,95,90,94,92,107,85,102,87,103,102,96,105,96,88,82,90,96,97,92,92,104,92,92,89,89,102,104,111,99,88,112,98,91,89,102,79,96,98,100,101,94,93,93,108,98,73,94,97,94,91,100,100,82,102,76,91,88,83,90,91,91,102,92,102,83,98,98,94,88,104,109,91,99,102,91,77,81,106,101,102,95,89,92,94,95,98,108,99,97,108,102,92,102,95,109,96,99,102,105,104,94,94,92,91,96,89,105,105,104,99,106,98,88,102,102,96,89,105,94,92,97,94,94,97,93,107,97,100,96,106,91,95,98,101,88,111,79,99,103,97,104,100,107,97,101,105,92,101,92,87,91,101,93,102,109,89,96,99,95,81,97,101,93,98,96,115,95,98,87,102,106,117,101,114,95,95,99,110,99,93,88,88,89,96,80,112,91,101,90,94,93,102,102,90,93,99,89,98,98,109,92,90,97,64,116,95,96,78,106,109,124,95,94,94,100,85,85,94,97,95,94,98,96,94,90,96,109,110,95,96,95,101,104,88,93,99,104,88,96,103,93,87,101,92,97,95,101,97,104,97,90,112,94,115,107,92,96,105,98,91,98,102,105,82,91,95,108,99,89,92,100,92,104,98,94,84,98,113,88,99,96,100,93,104,71,83,86,87,98,89,104,98,92,92,104,104,105,97,99,95,99,105,89,97,98,102,91,106,95,101,87,109,96,111,95,97,89,94,101,106,99,99,100,80,106,91,101,99,95,93,97,98,104,107,95,89,97,92,99,96,91,94,103,109,101,101,91,103,99,88,97,86,87,97,65,92,93,81,91,99,86,90,100,95,101,86,95,105,91,94,99,84,96,93,82,113,105,98,99,108,104,94,102,109,108,91,96,87,103,111,97,89,89,89,108,99,100,117,96,116,87,78,99,92,109,95,96,95,101,91,90,96,105,93,98,105,91,89,99,86,100,93,90,101,101,99,110,94,83,106,93,97,92,88,99,95,98,99,97,113,92,93,95,100,77,112,104,97,99,94,82,113,97,86,89,96,97,96,88,88,107,96,110,97,89,85,90,92,71,114,100,90,99,89,92,105,108,113,89,107,87,95,93,81,94,100,81,109,94,94,103,103,97,95,99,108,96,103,102,103,101,92,104,106,91,102,108,85,96,91,108,102,92,109,101,102,84,93,84,95,101,99,91,109,109,113,91,92,103,95,94,100,106,91,104,104,84,99,101,92,95,94,107,92,101,96,100,93,73,104,100,108,96,94,90,89,98,102,104,94,96,98,93,87,99,98,77,100,87,83,96,92,105,86,101,108,96,95,105,99,105,89,105,107,94,97,115,107,97,79,109,94,94,95,95,98,89,95,79,115,101,101,102,83,105,88,91,94,93,105,89,102,91,98,109,94,88,95,101,95,97,101,103,98,95,99,95,98,101,100,102,104,91,93,115,80,92,98,107,89,81,93,102,95,107,91,102,94,105,100,89,102,96,101,102,81,95,109,92,83,104,95,99,97,104,92,77,91,91,97,89,87,86,115,98,105,97,83,100,99,99,79,95,101,87,99,99,105,91,98,100,99,103,96,114,94,96,101,94,102,88,92,117,98,111,102,94,106,109,113,114,87,93,88,104,98,98,101,81,103,113,105,95,84,81,93,100,87,109,106,103,94,106,98,89,89,95,84,109,95,79,62,94,94,94,102,94,99,86,90,98,96,95,89,91,99,102,97,100,102,90,92,99,89,87,96,98,108,97,109,97,99,105,95,96,95,91,94,98,106,96,101,103,95,77,94,106,90,97,106,98,135,98,105,69,105,91,121,100,95,106,98,94,93,94,82,75,96,94,102,69,99,96,95,96,100,101,103,109,108,102,96,97,113,79,106,90,88,94,96,113,95,80,101,96,90,110,100,99,99,79,109,78,105,96,98,95,121,103,89,87,98,95,91,109,94,92,89,97,108,96,92,84,99,75,113,96,98,91,87,105,96,94,89,106,95,95,115,101,96,84,97,96,110,90,80,104,88,95,77,96,103,95,101,96,92,117,112,94,93,92,91,95,80,98,94,90,107,87,99,96,95,116,96,101,91,81,89,104,86,78,96,89,110,103,105,97,96,95,91,101, +384.67102,105,97,95,95,96,87,99,88,99,93,97,93,97,88,103,108,103,100,101,100,112,98,95,133,91,107,101,101,97,89,92,105,101,93,98,105,116,109,100,91,96,87,101,105,107,104,88,121,111,107,94,104,96,85,100,86,108,103,103,75,96,95,101,93,87,99,100,108,72,88,97,109,100,106,101,103,96,102,105,81,92,107,104,94,97,92,84,98,115,95,131,106,103,99,102,91,100,98,91,109,94,90,94,105,92,94,84,112,96,100,101,91,100,100,87,102,98,100,110,91,116,99,100,101,107,103,104,92,110,106,113,107,104,97,99,96,107,108,109,101,96,105,108,100,97,95,133,103,93,94,100,98,108,98,100,90,106,106,105,104,95,93,101,102,100,94,90,99,105,108,100,99,86,99,113,103,112,100,102,110,93,87,101,105,92,98,94,98,103,99,102,108,103,94,79,98,95,100,103,94,95,108,102,106,103,98,100,94,111,108,94,99,86,100,106,119,93,79,98,103,90,98,95,98,100,99,109,110,95,116,104,114,103,109,102,110,104,110,111,106,98,102,117,95,108,113,87,117,100,96,99,118,94,93,117,121,101,97,84,86,113,100,111,99,96,108,112,98,97,113,87,95,108,93,114,96,107,95,101,100,93,94,94,102,85,106,97,104,97,104,105,94,73,101,117,103,117,106,111,99,84,104,98,95,91,102,97,91,97,102,100,90,100,97,106,99,101,100,103,99,86,108,100,99,93,101,96,94,111,108,113,102,95,103,102,91,91,95,103,105,110,116,94,104,91,113,109,98,99,95,95,91,94,101,100,88,107,99,108,104,95,98,92,95,99,92,93,109,106,92,110,96,92,120,96,105,101,102,102,91,111,91,100,104,97,98,105,109,90,93,85,80,90,111,101,92,89,108,97,106,104,99,94,95,100,92,96,105,104,86,90,84,93,95,102,95,94,91,92,91,99,83,83,95,88,98,97,91,97,113,94,92,88,96,113,82,88,106,90,87,103,97,88,100,91,94,106,90,95,96,82,91,105,92,113,87,94,106,96,96,92,107,108,101,100,101,111,99,105,86,93,100,96,101,98,87,76,117,100,90,95,97,101,103,98,92,102,89,91,108,105,106,106,102,101,105,103,107,88,102,110,94,100,103,84,75,87,105,109,84,100,92,97,87,93,101,102,102,100,74,97,78,99,89,93,89,84,100,98,97,102,96,104,99,110,104,95,96,113,97,84,97,86,97,109,100,108,103,93,105,94,72,102,96,113,90,105,91,90,96,88,112,92,97,93,90,97,91,90,75,93,92,111,93,89,106,96,114,118,96,106,97,95,86,88,88,111,100,101,103,88,103,79,82,109,116,83,105,94,75,94,105,101,102,93,97,93,83,100,96,83,98,86,90,98,92,99,88,94,104,98,101,90,93,102,99,86,112,105,101,99,92,89,106,96,89,98,98,103,104,94,95,108,85,97,97,96,82,93,113,98,101,98,95,101,96,90,95,97,86,103,99,91,92,95,102,99,106,91,81,106,101,107,101,108,107,109,109,95,102,113,86,112,106,90,79,88,117,101,106,86,104,102,108,94,82,82,98,100,87,116,99,98,107,98,95,108,91,94,94,94,111,94,107,97,104,91,104,99,67,96,95,78,103,92,102,91,77,107,72,84,94,88,106,88,100,110,92,98,93,109,85,102,104,102,98,97,109,93,72,106,91,99,98,106,90,93,104,81,94,74,108,94,97,102,92,97,87,104,90,82,89,84,99,84,99,103,81,110,89,96,95,96,105,88,98,106,104,101,95,96,83,98,97,90,92,89,88,93,101,95,106,87,86,95,103,104,99,90,92,102,92,95,97,102,104,101,91,93,105,100,102,100,99,110,108,93,98,91,90,96,98,110,91,92,88,99,112,98,95,102,93,92,100,95,87,107,91,102,111,101,93,94,91,101,102,86,101,92,103,84,107,89,92,94,113,79,97,100,108,112,105,108,100,91,104,98,106,96,105,96,106,95,99,97,92,94,97,102,105,109,104,92,102,87,92,93,96,97,81,93,107,112,95,108,98,82,95,66,88,109,75,87,102,105,89,100,113,101,82,97,107,111,97,90,95,102,92,104,87,89,96,91,90,86,94,93,93,96,94,102,96,106,104,90,85,93,108,104,107,83,103,91,104,91,89,98,91,88,102,100,94,105,98,106,82,92,95,86,92,84,91,93,92,99,92,100,95,93,93,68,109,89,109,101,95,93,99,84,95,92,95,96,85,91,87,94,92,103,102,103,93,86,102,111,101,93,88,96,107,93,90,98,93,91,98,115,99,99,112,91,88,109,88,97,95,87,99,100,98,99,79,102,106,97,94,104,96,80,92,92,95,99,96,91,91,106,125,108,105,101,98,108,109,91,87,91,95,105,98,86,103,90,95,85,82,92,91,103,98,95,98,108,106,91,87,89,100,94,104,102,83,93,87,98,91,102,89,101,95,100,107,96,91,102,107,98,95,96,106,88,99,92,100,88,96,100,88,109,103,102,108,87,97,100,99,108,109,101,107,87,91,109,102,97,113,102,76,96,101,116,94,104,107,113,99,100,86,107,84,92,96,92,104,89,91,101,71,111,97,109,91,103,107,106,104,105,105,99,104,83,90,116,94,87,100,90,115,112,101,103,98,103,100,72,86,102,83,88,106,90,96,105,107,93,95,107,105,95,111,104,110,92,107,104,84,91,78,107,101,106,100,103,87,111,91,96,96,95,95,107,95,98,95,100,105,99,106,102,99,84,94,95,77,97,94,100,104,96,92,88,104,86,89,101,90,97,112,90,110,100,94,111,91,102,111,104,106,98,99,97,99,107,91,96,105,84,105,102,96,94,82,101,102,99,95,99,101,100,99,93,104,82,119,105,93,100,109,91,66,97,101,110,96,98,105,96,99,105,99,102,92,106,60,79,102,100,103,95,104,128,106,105,106,106,94,109,97,102,93,99,103,110,84,101,111,109,93,99,100,106,98,98,106,95,109,90,91,92,81,98,94,104,102,103,95,101,93,96,100,80,104,94,101,101,93,108,96,90,115,104,104,98,94,106,104,92,96,94,99,101,102,104,99,111,95,88,100,100,89,95,100,104,106,109,101,97,85,98,98,103,77,104,87,116,101,105,100,102,105,78,110,86,95,112,92,103,101,107,105,96,99,80,101,117,109,113,105,103,98,90,91,59,92,87,102,95,103,79,102,101,100,100,95,92,100,95,107,109,106,102,110,82,116,108,100,93,96,110,96,98,94,97,93,113,97,93,95,104,91,101,87,107,94,92,99,91,105,91,100,108,106,99,98,90,97,101,88,104,95,91,93,103,92,98,91,91,103,108,102,107,95,108,91,95,113,96,99,105,101,110,101,105,112,84,111,81,99,93,95,84,102,98,81,103,95,98,93,105,97,101,98,90,103,53,101,103,105,95,94,103,66,115,104,102,102,115,99,92,90,104,100,95,95,101,97,95,107,98,88,104,103,99,94,97,103,102,112,111,103,107,90,100,107,94,91,66,104,98,107,103,98,95,92,111,97,103,97,101,103,104,95,98,102,106,97,95,96,89,85,98,100,93,84,89,98,96,94,99,95,93,106,99,87,114,92,100,96,89,106,111,99,87,78,91,99,85,94,106,114,94,102,98,103,108,85,100,98,109,97,107,92,92,102,85,87,88,90,104,64,102,100,106,100,102,83,88,92,99,93,87,105,100,102,108,108,101,96,103,124,98,89,97,108,107,98,92,111,100,96,97,95,108,117,96,107,96,97,94,86,90,96,92,105,94,97,108,96,100,95,94,100,74,99,114,101,99,95,85,96,91,109,99,99,90,99,106,95,107,100,93,99,104,101,106,120,105,99,104,98,105,106,89,92,104,94,90,97,111,94,92,105,95,103,108,71,104,94,98,96,96,103,108,100,83,102,110,95,95,100,94,87,93,106,99,99,108,98,96,100,97,115,91,103,103,107,86,98,94,98,99,96,86,88,102,100,106,106,95,125,98,100,101,106,103,90,99,99,97,92,104,99,106,93,113,98,88,96,74,91,104,110,113,91,102,93,106,113,98,104,96,98,102,105,111,110,101,81,90,100,96,99,97,110,112,101,102,102,108,107,72,87,102,111,119,112,94,101,111,98,103,106,96,105,111,109,110,111,102,95,106,95,103,98,94,98,106,97,104,101,100,105,105,94,100,102,104,98,124,103,105,100,109,103,97,90,100,102,99,89,91,102,105,101,92,96,95,101,106,97,113,95,110,101,97,92,85,96,89,100,108,103,74,99,100,88,96,95,99,111,94,86,103,101,106,108,97,101,101,90,97,98,100,91,98,92,106,96,102,100,94,103,102,113,105,101,102,106,96,106,105,101,93,106,100,102,99,113,91,100,113,103,96,104,99,106,105,108,121,84,109,113,87,104,101,102,75,96,96,102,101,103,96,114,99,94,92,101,101,95,83,99,92,86,116,100,97,110,98,100,95,100,86,105,107,100,102,107,106,103,87,102,101,109,99,102,103,116,111,98,108,106,109,111,102,94,98,93,111,88,100,101,109,102,67,115,112,95,100,103,97,103,110,97,126,100,96,96,100,110,91,99,112,92,83,101,101,104,105,93,96,120,94,88,98,97,112,101,105,86,94,100,102,105,97,104,102,91,88,102,93,89,89,91,96,100,105,105,98,95,103,109,116,100,89,107,92,98,104,102,116,110,95,103,83,95,98,95,112,110,102,91,89,106,95,93,106,110,93,97,97,98,97,96,107,86,99,98,101,95,91,96,111,123,88,99,98,96,107,102,102,100,93,99,109,108,96,101,97,95,102,107,107,100,101,111,82,113,94,93,109,85,109,100,102,92,78,97,100,108,101,98,91,101,122,90,115,96,64,92, +384.81107,112,94,99,94,87,88,104,99,94,95,88,109,85,86,93,90,97,94,92,97,98,97,84,99,117,109,104,90,96,84,96,111,93,92,97,91,100,86,112,101,101,96,96,88,84,110,92,102,80,95,105,95,97,99,97,83,106,96,97,88,93,88,88,87,65,106,84,94,96,96,108,113,89,92,101,98,96,98,91,101,113,86,82,98,86,92,101,105,91,91,89,78,112,97,93,92,88,97,100,97,96,108,96,88,67,92,93,95,94,86,102,103,95,92,104,87,113,92,98,112,87,99,96,107,108,103,99,87,98,98,95,108,90,80,104,76,99,99,97,105,105,96,106,90,97,93,95,83,97,88,90,109,96,86,98,120,105,105,91,109,100,98,120,91,115,110,104,105,105,92,88,96,92,105,97,90,98,94,106,96,108,95,94,88,104,97,90,91,94,93,97,83,95,100,74,92,88,109,109,93,94,93,92,95,76,97,96,83,103,96,97,97,103,134,95,104,93,92,87,99,94,97,99,99,101,103,106,88,87,96,89,94,109,99,94,106,119,113,98,91,78,104,105,93,100,94,85,98,77,92,96,103,94,96,94,106,89,92,103,76,99,110,97,103,86,102,101,105,86,91,92,106,93,95,81,90,94,95,91,96,96,97,92,89,83,102,95,98,92,82,95,105,101,101,109,101,109,97,105,109,83,108,107,114,101,99,100,93,98,117,94,102,99,96,102,96,100,90,95,92,102,86,91,92,100,101,101,94,106,101,96,93,84,97,94,101,123,94,92,100,116,101,103,93,100,111,97,110,99,89,117,97,109,101,95,94,91,104,100,93,102,104,94,95,99,88,88,92,95,88,97,109,103,96,100,94,101,67,92,105,94,91,101,101,100,86,90,95,95,91,108,84,92,100,94,95,102,92,93,95,99,104,100,94,102,87,97,88,101,85,83,100,105,102,90,99,102,96,111,88,100,91,99,96,98,94,100,86,99,110,111,106,98,96,107,92,105,103,104,111,99,85,100,110,91,105,95,97,82,98,101,97,79,100,92,104,106,87,103,98,101,97,102,96,80,83,101,96,103,101,82,95,96,90,91,92,98,97,98,95,94,90,100,94,100,95,106,101,95,94,105,97,93,95,94,97,93,95,100,94,99,97,94,103,98,110,96,88,93,99,121,91,107,101,97,101,104,94,83,95,95,95,106,97,94,106,101,104,108,94,84,94,114,102,99,103,113,78,106,98,89,102,92,102,108,91,92,94,84,98,90,90,98,92,88,96,91,89,90,86,99,104,90,104,95,97,88,91,97,92,95,104,89,102,87,96,106,87,91,109,99,95,88,97,106,98,95,92,84,100,94,106,83,110,107,97,95,90,99,83,99,98,91,115,85,92,88,94,103,106,89,94,95,93,102,104,100,90,94,95,100,97,108,105,96,101,93,120,97,90,91,100,87,90,87,97,99,104,103,97,94,108,79,99,103,88,95,97,101,88,99,113,109,96,95,88,93,105,101,94,91,109,86,95,93,100,94,99,94,100,89,86,99,96,93,104,93,96,102,100,106,96,104,87,93,95,88,99,84,98,94,94,91,101,92,96,94,115,96,86,93,100,113,96,105,105,92,102,92,96,86,96,86,97,94,105,87,109,88,104,107,105,109,99,102,93,95,79,91,89,92,93,93,95,91,95,98,87,93,102,101,100,100,98,98,95,95,99,102,95,103,89,109,99,93,113,105,83,98,86,93,90,103,96,84,95,99,82,102,103,98,101,104,104,97,95,113,100,114,94,104,91,105,95,98,98,109,85,74,96,100,96,101,120,105,87,100,96,101,100,90,90,85,93,100,108,101,99,98,89,114,89,109,94,102,101,101,100,116,97,91,103,112,91,99,106,102,92,112,76,95,84,100,92,93,93,109,90,103,94,90,96,100,100,105,104,98,87,101,109,87,91,95,94,97,104,109,96,106,101,104,97,102,101,90,98,93,101,95,105,109,95,102,104,92,108,98,106,87,102,89,94,68,87,101,93,97,113,105,103,104,98,95,99,93,103,102,98,108,98,103,99,104,95,107,99,102,92,100,102,88,109,109,101,71,89,83,113,84,95,97,98,99,93,93,98,94,95,94,95,90,83,98,94,97,115,91,109,109,97,100,99,100,90,94,87,96,89,99,102,102,97,92,101,91,97,90,109,104,109,87,104,92,105,103,100,90,103,96,103,100,89,98,95,100,111,110,77,86,94,102,101,99,96,97,110,89,101,95,105,95,77,101,110,102,86,93,113,86,100,96,95,100,95,104,87,102,95,102,110,101,95,96,133,97,106,105,95,118,100,107,107,96,80,99,89,92,105,101,94,90,93,98,84,107,98,100,101,96,98,103,107,87,99,97,94,81,105,96,102,98,94,105,109,96,132,97,109,96,65,101,120,97,98,80,94,101,83,91,91,89,100,75,95,90,101,100,91,121,103,109,105,103,93,90,103,88,85,99,101,98,95,95,94,87,98,101,98,103,105,92,93,103,104,105,99,92,109,98,91,95,106,97,97,125,98,126,98,102,92,112,99,101,105,83,101,85,90,97,99,100,97,101,82,93,109,98,92,88,103,94,97,93,101,111,120,98,104,112,93,102,97,109,102,98,96,98,97,94,103,103,95,97,98,98,95,101,108,110,102,105,92,103,108,108,86,115,82,95,87,99,102,83,92,91,112,109,93,99,117,106,92,98,99,102,99,93,90,97,94,99,102,104,101,96,95,111,122,92,100,111,92,120,100,105,99,103,92,92,94,92,100,95,109,93,94,97,109,114,88,101,87,83,109,98,99,100,109,94,98,104,101,112,100,93,102,104,85,108,87,90,104,94,110,97,102,98,101,104,91,98,95,92,102,110,98,110,98,93,101,102,98,106,94,90,66,100,105,91,113,98,93,111,84,98,108,96,82,100,103,102,108,95,102,98,105,97,97,102,104,100,92,95,98,106,98,96,99,103,111,99,97,75,98,91,95,96,103,103,92,96,89,96,93,98,92,86,96,87,98,113,101,95,105,98,100,100,73,104,99,97,94,105,105,94,95,100,90,97,77,98,91,104,91,90,104,98,99,98,92,100,109,108,93,102,91,99,89,106,94,95,93,102,100,101,97,81,98,98,92,81,98,99,98,87,91,101,95,87,97,97,91,98,98,101,104,113,102,105,102,98,104,95,101,100,96,95,101,95,104,101,91,97,108,96,95,93,108,101,84,105,106,105,102,107,99,84,94,102,90,109,85,102,101,100,105,110,117,91,103,96,102,113,94,103,98,93,103,96,82,86,87,106,105,93,89,110,99,120,88,107,95,106,111,103,102,89,98,93,104,95,99,101,99,100,93,89,99,100,92,99,101,101,106,108,97,108,98,93,82,102,100,100,98,96,99,92,95,71,90,90,95,105,98,97,98,105,105,104,109,95,110,110,93,91,101,96,97,103,91,114,86,104,95,106,97,88,100,108,97,96,99,85,102,105,92,98,104,105,96,94,102,101,100,104,94,94,103,102,85,112,102,100,94,94,88,78,107,95,100,105,115,101,107,80,103,97,103,102,104,98,93,98,99,107,91,107,99,101,95,90,98,115,96,94,88,95,83,93,116,101,83,88,99,97,92,88,100,108,91,97,98,103,89,104,104,93,103,96,92,93,98,93,110,95,97,90,101,98,99,98,79,99,84,80,91,94,101,115,107,104,100,97,109,96,90,107,89,95,104,109,86,95,98,93,102,90,103,101,98,100,104,85,88,100,95,109,96,109,100,97,89,105,104,96,102,100,85,101,74,99,107,88,102,107,102,100,104,108,100,89,96,107,98,101,95,106,90,98,108,102,108,91,92,98,109,101,94,99,99,111,100,107,72,103,94,104,99,97,83,108,96,94,105,99,91,101,91,94,93,96,100,103,104,104,98,86,97,96,103,94,106,102,92,87,95,102,102,91,95,83,113,104,111,105,100,99,89,85,111,107,95,93,97,93,92,89,104,77,89,102,106,88,106,99,104,93,96,109,93,109,93,106,93,89,102,98,97,94,98,103,81,97,109,98,113,106,103,105,106,87,100,99,96,90,87,101,90,102,94,94,92,101,112,91,110,107,108,89,103,103,96,106,98,107,113,105,96,95,105,102,93,89,111,109,95,108,102,97,101,100,113,88,97,116,87,101,87,96,94,103,96,99,101,110,96,99,108,91,99,109,80,105,112,104,97,102,104,102,97,106,104,106,98,97,112,117,100,95,117,104,98,100,101,104,105,108,89,101,96,102,106,100,103,94,104,101,97,99,99,95,100,108,106,102,110,95,102,108,103,102,90,97,109,96,107,114,98,108,107,113,91,104,99,108,88,101,108,98,126,103,112,109,107,101,89,89,110,95,96,102,94,94,101,94,96,87,98,86,96,96,92,101,101,93,105,93,95,97,101,93,92,101,95,98,94,102,101,102,100,106,104,101,99,87,96,93,94,100,103,92,97,98,98,114,87,88,104,102,94,85,99,102,99,62,83,92,102,110,86,98,87,98,111,93,87,99,108,109,96,95,108,93,94,104,100,97,95,101,102,97,97,96,83,90,105,106,92,94,93,95,109,97,89,104,111,108,95,103,103,106,101,88,101,96,94,113,109,118,98,101,109,97,89,95,95,117,104,87,98,105,104,104,95,94,85,104,72,105,90,91,105,105,63,98,102,105,93,100,103,112,100,105,95,95,96,101,96,103,95,83,107,80,112,83,121,96,115,88,101,113,97,93,101,93,98,112,91,79,104,86,97,103,106,96,95,105,97,83,97,100,97,104,102,81,90,96,92,102,117,112,93,96,89,106,93,92,110,112,109,99,108,105,94,108,97,92,113,93,94,92,107,82,93,99,103,98,106,93,104,94,114,98,85,104,87,90,112,95,88, +384.95111,97,97,94,105,98,93,98,88,87,85,92,83,111,98,87,96,97,84,120,94,91,96,93,106,103,86,93,96,104,99,100,101,87,83,100,99,95,98,90,98,101,90,109,83,94,101,94,102,89,98,101,82,101,84,82,91,96,92,104,103,85,98,89,92,93,66,94,87,98,94,116,97,94,100,97,101,97,105,100,93,87,92,106,88,93,91,102,98,97,91,96,96,89,83,93,114,96,98,92,102,97,100,104,106,83,103,92,99,114,92,95,86,106,101,94,101,97,102,95,93,118,98,92,96,100,99,102,82,102,102,95,116,95,104,99,103,89,96,84,93,87,99,100,100,105,85,103,97,86,100,106,93,101,101,102,107,104,97,85,96,105,97,89,99,113,96,89,94,103,100,91,98,93,71,98,99,96,93,97,112,94,96,108,86,97,86,91,91,110,90,99,82,103,96,96,86,102,97,97,93,102,81,96,97,102,107,97,100,89,98,88,94,98,92,92,90,87,97,92,100,106,93,114,126,92,96,96,95,118,100,92,102,120,109,98,99,103,105,103,81,110,100,114,91,89,106,101,91,98,100,100,96,88,90,95,97,95,107,83,99,102,92,120,101,98,113,94,106,91,98,104,100,107,102,106,99,106,109,87,106,97,94,95,100,67,92,80,109,111,101,98,84,87,97,103,107,90,90,90,102,96,94,87,97,100,94,116,93,103,108,97,104,82,98,97,97,98,99,94,93,94,90,103,90,105,85,92,101,96,99,94,86,92,104,120,94,101,97,91,105,102,105,88,82,94,103,99,94,106,110,84,95,91,98,101,102,100,99,100,102,104,109,90,95,88,92,97,103,95,98,107,99,95,99,102,110,111,101,95,118,95,113,95,114,102,93,89,89,97,104,116,106,97,113,105,117,96,76,95,101,107,90,102,95,96,93,101,98,96,91,95,106,101,92,100,97,94,97,98,104,98,101,91,102,107,75,106,94,97,105,105,100,95,99,97,103,87,107,95,97,111,104,96,100,102,90,93,96,103,101,100,79,87,110,108,90,91,92,96,99,85,105,100,108,93,106,105,99,95,100,94,109,101,99,101,109,91,112,102,108,109,100,112,95,100,104,99,101,98,109,90,110,95,88,101,99,99,102,109,110,108,94,92,114,90,99,88,101,97,107,100,103,95,126,82,97,88,103,104,102,108,100,94,92,83,105,108,104,102,100,95,94,100,94,98,103,102,97,77,98,98,87,88,104,106,97,112,89,103,102,99,97,100,101,87,118,102,87,104,87,98,87,100,104,73,104,118,84,103,95,99,93,95,88,106,97,121,91,112,99,101,106,89,92,114,115,87,100,97,82,103,99,103,98,111,112,90,91,101,90,110,92,106,101,97,90,88,95,112,102,140,108,98,104,104,73,98,105,96,91,100,80,113,94,99,92,97,85,94,88,104,113,109,92,85,97,99,94,96,93,95,98,104,88,96,97,91,85,100,110,95,91,90,108,99,83,108,102,116,96,89,94,91,86,88,99,104,86,105,95,114,96,104,90,88,99,94,99,87,100,97,84,97,100,78,95,97,100,100,101,91,95,101,100,107,89,96,97,95,90,89,107,101,99,95,99,102,104,109,108,106,103,102,102,105,104,102,103,102,90,108,104,117,99,101,97,107,106,102,109,101,99,97,91,97,101,109,94,107,102,103,94,105,100,102,87,98,92,106,102,113,94,94,98,98,92,100,93,96,92,94,92,91,97,92,105,87,105,95,94,109,105,97,104,96,103,102,99,101,93,106,96,113,130,88,91,106,95,116,100,91,98,107,104,100,88,102,92,100,105,91,104,90,85,103,118,117,100,114,94,97,104,93,95,95,101,95,105,97,101,97,96,98,114,85,94,87,94,106,95,97,95,105,95,105,95,108,92,107,109,100,101,110,98,83,93,95,99,85,105,91,100,97,96,96,116,103,101,113,101,95,81,102,94,107,87,97,95,97,99,86,100,100,103,106,86,93,95,105,95,88,99,100,86,105,99,93,98,98,105,113,105,95,101,100,106,97,91,104,101,100,100,94,93,113,98,95,101,78,98,96,106,102,106,95,89,107,104,98,105,111,97,105,104,102,81,86,100,98,102,104,97,96,97,94,102,94,83,94,104,106,97,102,97,98,105,88,88,93,117,92,102,110,91,92,102,94,97,97,103,104,104,91,92,106,102,102,96,85,99,62,106,105,101,95,102,101,104,104,130,115,97,105,92,97,104,92,81,92,100,96,106,95,95,97,100,98,104,105,102,106,67,99,93,97,95,94,97,102,99,88,101,94,96,98,92,100,79,92,96,102,104,121,93,96,95,85,102,101,92,85,99,103,89,102,88,95,104,101,92,88,101,91,94,112,89,95,90,105,109,65,99,85,97,94,94,100,99,76,100,92,108,81,98,97,100,98,108,87,90,83,94,92,100,94,103,105,103,95,110,91,92,112,102,97,84,104,99,98,72,103,85,83,83,92,96,90,85,102,106,107,102,104,117,97,98,89,96,102,86,98,103,98,106,87,92,93,98,102,96,95,94,107,99,98,92,93,92,101,94,105,112,98,69,104,92,123,96,110,88,76,85,98,103,91,92,105,106,100,84,91,90,110,102,93,70,100,109,93,102,121,105,91,86,109,71,105,96,100,102,87,91,96,112,104,92,113,96,105,108,94,107,106,101,103,116,87,97,89,112,105,103,99,100,91,97,102,125,95,106,108,87,108,105,91,101,101,102,93,91,91,104,95,105,114,106,109,108,101,95,87,111,101,104,97,98,81,99,93,89,84,104,102,108,97,113,108,107,107,100,90,84,88,96,105,86,102,127,92,96,99,95,110,106,102,98,105,96,96,78,109,85,108,103,95,89,94,100,85,112,90,104,98,111,94,89,85,83,97,109,89,109,103,95,102,102,104,102,101,94,94,102,104,87,98,99,92,93,91,83,98,91,98,101,89,118,94,112,94,98,97,87,104,100,90,107,101,94,104,92,95,95,90,102,90,100,101,95,100,106,97,94,101,96,95,100,98,98,93,104,96,93,88,105,92,85,99,107,100,118,65,85,102,100,92,94,102,76,90,102,98,98,95,97,102,89,104,99,100,100,91,93,107,94,94,90,94,88,94,65,95,98,89,87,95,109,65,100,96,93,84,91,96,92,99,98,107,99,97,92,102,96,91,98,92,96,104,104,106,97,91,94,103,83,83,112,94,96,102,94,89,94,86,88,88,98,97,104,107,92,101,103,84,98,119,99,91,96,111,96,96,92,109,103,97,101,93,102,97,97,102,84,104,101,92,100,125,81,108,102,111,96,104,87,92,110,76,85,101,98,83,95,92,88,97,98,100,104,81,106,102,100,97,108,92,96,104,108,103,84,98,91,104,105,111,106,104,97,103,89,95,95,94,99,96,98,105,89,95,108,89,78,105,99,87,100,106,107,113,109,98,101,96,97,89,109,95,104,102,100,95,85,108,102,96,102,93,101,101,93,91,97,101,107,99,92,97,102,108,92,108,100,94,108,103,87,101,87,89,104,88,102,106,117,94,105,84,92,95,113,87,97,93,98,108,102,107,100,124,94,102,92,81,102,92,90,94,101,98,91,90,103,96,87,104,93,104,96,97,96,105,102,101,94,104,96,101,95,97,109,103,111,101,100,97,104,94,93,106,89,109,96,91,94,111,99,88,97,100,103,94,86,99,97,86,103,107,89,93,98,102,105,91,89,102,98,98,101,92,90,106,100,93,116,85,93,100,90,95,94,105,105,99,100,104,89,99,96,88,84,97,89,94,99,95,84,95,95,103,106,105,102,106,105,109,105,98,95,94,102,77,105,98,91,105,103,67,90,105,94,106,102,96,113,92,103,97,90,95,95,102,95,96,96,76,95,109,91,97,107,106,98,94,94,96,106,104,99,97,95,97,104,82,102,98,105,105,106,109,86,109,99,100,108,100,116,103,102,98,100,104,106,75,106,85,95,112,96,104,104,101,101,105,76,114,94,94,107,103,124,111,100,110,94,92,95,109,105,95,106,94,103,87,101,100,103,102,108,96,115,124,96,98,104,91,103,104,112,90,92,98,99,88,104,114,91,85,105,102,80,104,97,92,99,102,101,98,90,101,101,96,97,91,102,87,103,95,111,90,95,98,109,91,92,104,87,97,100,100,98,100,100,88,101,100,99,116,103,108,108,98,91,90,108,89,105,83,83,94,103,101,87,104,90,91,110,98,107,98,92,97,95,113,102,98,103,89,96,83,82,88,96,104,97,91,103,99,94,100,88,119,94,109,92,96,113,81,115,90,112,102,94,110,87,105,70,79,95,98,92,105,99,102,70,102,108,97,95,97,91,84,124,103,110,94,98,93,96,104,99,89,103,116,110,97,97,95,99,104,99,88,84,97,105,95,121,92,95,95,90,98,94,96,97,102,96,81,93,82,99,103,103,112,102,103,93,111,94,87,90,96,85,99,96,116,93,88,76,108,98,93,94,108,109,108,96,90,103,101,109,89,75,102,97,108,100,91,106,101,90,111,100,84,92,104,111,92,101,105,106,91,78,100,82,123,99,100,97,117,102,90,84,101,107,97,90,89,87,74,94,84,96,98,91,102,100,99,102,102,91,102,104,106,108,95,104,100,97,88,96,106,83,95,107,101,118,85,96,97,95,104,97,108,99,97,100,91,91,80,92,106,104,104,99,89,84,111,94,92,110,95,91,104,90,77,93,110,89,89,96,107,84,92,104,96,94,101,87,95,69,103,95,109,108,95,90,106,75,86,95,96,89,90,87,110,99,93,104,96,95,101,90,90,107,99,99,105,94,107,103,109,103,93,86,85,97,103,95,102,101,101,78,84,97,96,86,80,105,108,102,88,85,107,106,101,112,92,103,101,92, +385.09113,105,82,93,101,96,85,67,88,98,89,86,94,106,108,102,108,78,108,94,96,88,107,98,102,64,111,90,109,92,106,85,93,107,95,110,93,98,83,90,92,100,102,92,110,96,108,112,91,101,100,87,91,95,96,109,73,99,94,98,84,103,105,88,94,96,105,114,106,108,97,91,107,95,92,105,86,78,98,87,94,99,122,100,93,93,97,98,94,88,100,102,100,85,71,102,121,95,94,97,90,98,97,101,109,95,110,108,105,98,104,93,95,100,81,101,114,90,97,110,97,102,94,95,104,103,107,101,105,112,90,108,99,78,98,103,108,113,109,96,92,89,104,87,100,94,104,106,115,101,93,85,108,119,102,90,95,96,97,100,98,103,86,109,101,94,112,99,66,109,101,90,100,92,89,103,99,94,97,109,90,95,108,100,106,100,114,108,102,100,97,101,99,91,102,111,90,99,101,101,92,91,108,89,81,102,93,99,98,94,106,106,102,95,103,95,98,93,103,83,96,103,94,100,89,97,103,108,116,98,116,98,107,99,93,92,101,102,95,91,98,94,98,114,105,98,96,104,100,109,93,97,84,97,100,100,99,94,111,125,106,100,99,99,105,102,109,113,86,107,89,83,83,90,83,106,100,74,128,100,96,109,102,88,92,101,103,87,125,101,106,105,97,102,101,101,105,99,99,100,99,91,86,109,101,91,106,111,107,104,101,87,104,110,102,106,93,92,92,85,81,87,90,104,87,86,107,79,98,100,102,93,104,99,110,109,101,101,101,109,108,100,97,85,116,97,107,103,98,107,106,108,97,110,104,108,99,85,109,75,90,101,101,97,74,95,102,100,100,101,83,97,98,93,94,105,91,84,97,101,90,100,102,91,99,106,96,97,98,102,102,103,87,70,86,97,108,107,91,99,101,103,108,105,102,94,81,99,114,96,102,110,92,105,104,110,97,104,101,97,87,104,97,100,95,104,103,112,99,98,117,100,102,99,99,93,94,63,105,109,91,96,105,106,117,105,113,93,93,80,109,107,105,102,100,101,105,98,107,93,113,100,97,109,86,96,100,102,100,99,97,112,112,101,103,98,93,88,103,116,103,96,106,106,102,99,109,98,100,94,96,103,103,106,91,97,114,101,111,104,103,97,112,109,101,94,105,96,94,103,86,103,105,103,91,95,96,94,96,93,97,97,91,101,97,103,111,95,97,97,95,99,75,96,94,111,107,97,86,106,92,101,88,93,94,94,101,104,104,91,102,95,105,94,107,96,95,94,87,113,89,87,109,93,98,106,97,109,108,88,103,83,97,103,93,66,101,87,111,94,99,100,101,97,99,105,107,102,102,93,89,102,102,100,86,104,109,99,98,106,94,97,106,99,99,89,109,95,102,99,104,105,98,105,101,98,105,104,106,99,106,100,98,107,70,124,102,92,95,92,108,105,96,93,100,71,90,102,74,98,98,60,100,101,117,100,100,101,99,103,129,95,96,95,116,117,94,102,111,95,98,90,113,104,101,85,91,109,105,97,107,115,81,105,103,122,96,102,92,100,95,89,107,116,94,97,93,96,102,100,88,109,99,85,109,103,96,105,106,101,92,98,100,105,96,109,121,100,103,91,97,116,103,107,92,82,105,91,99,112,113,108,100,100,105,88,92,93,92,91,101,106,97,105,105,94,90,108,97,100,101,122,108,96,79,96,106,108,101,99,100,118,90,100,107,91,92,94,93,95,98,97,93,84,105,89,105,99,97,105,96,96,96,95,95,108,94,106,104,99,102,103,112,102,99,87,99,103,98,70,100,106,100,99,96,114,104,90,93,107,94,92,110,103,113,99,103,101,95,87,85,98,95,101,100,97,98,102,90,106,95,101,93,100,104,87,102,97,102,100,108,93,109,104,106,87,98,91,101,100,105,102,113,91,101,87,110,92,90,102,103,102,92,99,91,101,94,93,102,94,94,99,96,85,100,100,97,92,113,104,108,95,103,112,99,93,99,106,93,91,93,99,104,96,110,113,101,96,102,99,112,96,98,100,82,102,88,89,99,90,108,101,92,99,108,97,101,89,97,100,101,98,98,96,114,105,91,90,76,103,91,100,94,104,97,99,114,102,109,87,97,100,100,86,99,91,87,86,97,95,115,84,85,110,81,111,92,106,97,100,112,74,96,102,107,91,96,109,92,78,113,95,80,106,96,103,91,111,95,93,107,92,99,105,88,105,114,101,107,93,90,97,90,111,95,71,116,94,88,87,93,119,89,101,84,114,102,97,84,93,104,94,95,102,119,105,103,94,102,98,115,83,101,100,110,88,105,105,90,79,65,113,122,100,104,104,92,110,90,96,102,93,98,92,98,106,87,91,94,95,95,99,94,96,96,105,95,108,94,99,108,102,105,90,108,92,91,114,93,100,93,103,93,93,88,100,87,99,99,100,76,60,96,92,102,111,88,87,111,80,96,98,88,97,117,104,111,102,101,96,95,99,99,97,77,106,91,100,105,94,104,96,84,88,98,112,79,106,104,109,96,88,103,101,91,75,114,85,111,100,97,103,100,101,99,112,90,110,95,95,89,101,110,100,87,95,105,89,90,76,99,113,112,98,105,96,98,98,94,105,105,111,107,111,106,102,99,102,97,113,83,105,83,96,92,87,97,97,97,101,91,107,96,113,91,116,101,96,88,98,98,94,101,98,98,92,95,96,102,96,97,91,102,109,103,101,104,100,96,102,104,103,105,99,91,123,101,104,94,70,106,103,105,99,103,119,110,90,101,104,102,101,110,95,93,105,105,102,104,98,97,96,104,98,113,94,83,103,97,99,100,106,99,105,93,105,91,94,109,101,98,123,109,100,97,104,109,91,103,116,112,108,107,101,105,103,84,104,96,95,100,106,73,103,109,94,101,94,95,87,94,91,95,105,99,87,97,101,88,98,117,98,93,97,102,102,101,103,112,93,83,112,111,79,101,100,92,102,105,103,88,90,101,109,92,93,111,104,94,127,100,105,93,99,100,95,97,103,84,130,100,97,102,96,135,99,88,91,81,92,87,93,112,98,104,89,97,102,103,95,88,109,93,105,96,109,113,107,97,108,119,104,93,110,105,111,90,101,90,94,95,106,100,91,98,106,104,106,103,100,87,102,94,93,102,97,92,103,104,102,112,94,90,95,108,100,98,96,102,98,95,109,106,98,101,104,86,112,103,98,92,90,98,99,102,105,91,85,97,98,107,98,98,100,97,101,98,94,97,99,88,110,107,101,112,101,105,103,99,104,98,99,95,96,99,93,82,110,100,107,98,103,96,106,104,91,97,101,101,95,94,126,108,95,94,104,86,94,93,93,101,84,96,96,95,85,106,105,100,104,102,93,101,108,103,103,100,96,89,92,94,98,107,113,110,106,102,123,92,94,99,88,105,105,104,114,96,112,108,98,98,94,87,94,104,87,93,88,100,96,104,85,106,104,108,99,109,97,95,95,103,100,95,104,99,97,96,112,105,91,91,106,99,94,104,98,97,101,107,107,99,100,91,98,94,100,107,100,102,96,97,103,100,98,114,102,102,88,100,102,128,106,125,94,92,115,95,98,106,103,87,86,101,105,103,98,96,100,93,100,124,93,100,95,91,94,91,110,107,114,101,99,101,100,110,98,93,97,101,93,99,88,89,106,107,102,101,104,112,107,89,103,105,97,102,96,107,101,108,100,105,104,104,94,103,88,100,96,91,111,77,102,111,79,95,104,94,94,102,112,99,94,95,97,94,103,106,96,99,98,119,97,97,94,104,101,106,99,105,98,95,104,104,94,97,98,86,86,103,105,96,112,101,109,87,109,97,96,102,100,110,92,99,94,99,83,107,92,107,95,98,91,101,91,100,91,106,101,100,95,76,89,100,114,107,94,97,109,90,100,99,101,103,109,100,95,91,117,90,98,96,102,105,97,99,95,113,101,114,104,101,104,99,100,102,117,99,99,91,109,95,99,111,96,110,94,100,107,100,97,100,87,109,102,91,101,98,94,100,95,87,109,105,103,86,98,96,107,105,104,88,102,95,109,89,112,111,106,107,93,96,106,101,96,91,106,108,101,84,90,91,134,111,99,101,101,101,100,108,99,96,87,110,99,122,100,115,99,90,125,94,104,110,96,113,94,109,92,83,100,97,105,100,98,104,98,110,103,103,100,86,101,99,80,87,97,117,85,90,88,101,105,101,83,105,93,110,92,101,102,96,95,94,94,101,98,105,112,111,94,99,95,96,104,95,97,104,105,101,106,88,107,104,96,95,97,93,79,98,80,104,105,108,91,93,106,100,101,76,104,92,115,98,109,108,88,107,104,112,106,87,110,98,92,92,104,105,99,104,94,106,89,122,109,114,91,100,108,112,105,94,87,86,104,99,94,105,107,86,99,96,100,98,93,99,105,96,101,105,107,99,114,112,112,88,95,101,86,94,109,99,86,102,99,88,90,101,93,107,100,106,94,113,99,99,91,97,87,94,93,98,98,94,92,110,103,105,116,110,93,104,96,84,84,96,95,97,88,87,112,92,93,83,94,90,97,109,132,99,106,94,102,108,112,105,93,101,112,101,96,95,91,90,97,98,106,92,114,105,98,82,104,101,92,95,108,106,95,100,102,101,102,100,93,104,109,73,105,107,109,87,91,102,81,97,95,92,109,79,110,85,80,91,77,108,103,96,90,98,97,94,115,97,93,105,95,98,97,99,99,88,88,107,95,103,101,92,94,99,99,90,117,94,96,88,97,98,97,101,115,101,104,102,96,126,103,94,102,102,98,88,89,97,102,95,92,111,86,97,103,110,110,110,82,91,107,86,102,100,93,104,104,97,92,102,94,89,96,96,120,83,96,102,103,104,96,90,93,101,111,96,105,102,105,85,102,100,86,105,101,73, +385.23117,74,94,91,83,94,108,91,87,89,105,97,91,95,86,96,101,93,101,101,98,104,102,100,114,91,94,111,106,91,104,90,103,100,116,78,105,83,97,90,98,119,114,77,104,94,109,98,113,107,98,92,95,95,91,91,93,106,91,105,96,99,99,93,82,92,101,94,108,98,117,90,96,85,109,100,96,84,88,110,89,95,99,102,103,91,80,102,94,97,103,91,97,108,113,101,98,98,86,90,70,91,106,98,89,95,104,87,85,91,105,96,95,106,99,77,87,84,103,96,100,98,97,90,101,102,101,93,103,102,66,99,110,95,103,123,103,100,94,105,69,104,108,94,85,93,103,112,95,113,102,99,108,100,96,106,104,95,95,92,103,96,105,87,112,96,91,103,102,95,98,104,94,87,105,87,97,95,103,103,101,87,79,95,94,101,102,104,91,106,105,105,91,112,105,113,106,91,93,103,96,109,101,94,100,94,109,96,89,104,98,85,90,101,102,90,98,107,92,99,110,85,97,101,97,94,102,111,117,106,106,99,101,106,91,90,104,96,92,96,104,91,118,110,96,117,90,105,99,97,106,118,107,97,102,100,111,100,108,84,98,90,98,98,100,94,99,95,106,100,99,97,106,96,99,102,96,110,105,102,94,105,102,111,95,105,110,90,95,97,109,101,90,99,96,88,113,99,107,106,93,94,95,108,96,86,98,122,103,71,102,91,105,101,94,97,92,98,95,121,96,111,94,91,109,76,100,102,89,107,103,99,90,102,101,93,101,98,104,92,105,94,96,105,86,95,108,88,110,105,98,99,109,104,110,96,99,86,91,122,102,110,107,106,93,107,113,104,99,116,109,101,103,109,104,101,81,96,88,104,98,91,97,100,101,110,84,91,92,105,95,98,89,105,105,117,104,98,101,89,103,100,74,97,88,90,88,104,110,101,88,84,90,75,97,113,88,102,99,106,102,91,96,95,99,100,97,94,99,92,100,85,89,89,96,95,91,97,108,116,95,96,102,103,94,105,87,96,86,100,112,102,93,95,110,102,95,99,102,94,83,104,100,98,109,101,114,100,104,97,102,90,85,99,95,92,95,88,94,83,94,108,107,113,95,92,91,99,97,102,101,95,103,92,102,96,95,81,101,101,87,102,90,98,97,86,100,97,84,96,64,99,81,100,104,83,104,83,95,90,102,90,95,103,94,101,103,106,102,97,102,97,105,87,106,95,97,109,100,92,102,93,120,101,102,106,100,99,101,105,103,96,99,109,92,108,105,94,101,102,96,78,92,90,101,103,99,98,117,116,97,93,104,101,102,97,108,78,95,99,100,77,91,112,93,99,97,99,105,104,91,95,103,104,98,108,86,107,116,97,94,101,101,97,99,95,102,94,103,94,106,102,107,105,94,107,104,91,104,93,103,91,102,107,98,104,91,96,100,110,93,94,96,96,99,92,89,99,98,97,101,96,106,102,110,101,92,97,88,87,93,97,99,95,97,104,103,106,101,102,98,100,97,91,95,114,96,110,103,108,109,109,98,110,103,109,111,90,96,92,90,96,101,108,117,125,101,96,97,107,100,104,85,97,98,109,96,98,115,104,86,100,115,100,99,89,99,102,94,88,106,98,113,103,94,89,91,103,101,95,95,97,94,97,105,85,85,96,99,97,97,101,108,88,131,92,92,95,101,100,105,100,118,104,98,94,95,102,102,109,102,109,86,98,97,93,95,97,103,106,99,93,102,96,91,94,95,93,99,96,102,97,104,99,98,97,108,86,96,98,100,107,111,101,95,106,109,87,100,95,87,96,109,96,105,105,99,98,106,107,97,108,107,98,95,97,97,95,94,98,87,108,110,96,95,112,89,84,85,119,99,92,109,98,98,95,91,104,102,102,103,89,92,93,103,96,100,118,78,108,96,91,100,105,93,100,99,100,91,104,93,96,93,108,95,94,99,88,104,97,97,92,91,103,102,109,96,104,101,73,95,105,106,91,100,97,91,101,92,112,96,102,100,93,105,97,97,93,98,99,104,116,97,100,105,99,94,105,100,105,92,86,101,107,91,93,71,89,100,102,87,103,102,94,103,100,104,96,101,105,101,112,96,101,125,99,91,94,86,95,74,95,105,101,87,99,99,106,96,113,102,99,92,98,99,93,93,113,93,96,100,97,110,110,96,106,98,97,109,93,97,106,103,99,105,99,89,82,106,68,88,93,105,105,77,103,90,104,86,90,102,93,97,101,102,92,105,106,108,102,90,98,93,92,112,95,91,114,107,88,94,91,112,107,99,96,77,83,93,92,105,98,103,101,111,93,114,90,100,106,77,87,110,105,85,101,104,91,106,92,91,96,103,108,87,106,86,108,97,108,102,90,100,79,98,86,96,88,90,111,97,99,101,104,95,110,97,113,105,101,82,91,118,95,106,92,106,91,98,95,90,91,94,89,103,91,84,88,105,96,98,88,93,92,98,84,74,83,104,98,100,97,87,95,84,90,101,115,99,101,84,93,94,99,91,81,102,99,101,101,108,91,104,106,98,95,97,100,113,105,110,108,97,98,104,91,93,99,102,108,93,104,102,102,93,102,97,109,109,92,104,100,84,97,104,107,90,97,83,94,104,104,102,104,98,103,92,102,104,88,91,98,88,88,84,104,101,109,102,106,87,92,111,94,111,94,104,86,89,108,92,105,90,79,112,89,100,106,103,95,96,88,97,99,102,103,116,103,94,88,98,98,96,111,103,84,100,100,117,97,95,99,95,104,97,111,105,98,94,93,112,96,94,99,98,103,109,105,104,103,106,94,105,98,87,99,78,113,97,104,88,106,105,100,94,116,101,98,91,106,110,118,103,111,106,95,109,96,94,98,97,100,94,102,104,108,95,112,99,79,73,100,95,101,108,94,91,92,107,81,101,92,92,97,96,95,95,99,86,107,102,110,102,94,98,94,104,105,108,110,95,103,96,94,103,99,96,97,103,97,94,99,105,98,95,108,104,95,98,105,109,104,102,98,98,104,98,104,104,91,87,99,93,112,98,96,95,95,90,95,99,90,96,104,96,105,98,103,98,105,100,97,103,83,83,79,86,98,102,93,106,98,107,92,97,103,107,106,100,90,94,99,96,113,64,102,97,108,100,94,104,81,101,94,99,109,98,96,86,109,92,101,92,97,93,99,94,109,111,112,101,94,79,96,118,86,98,107,103,106,100,100,83,100,107,94,92,102,91,113,105,91,94,101,94,94,101,104,98,108,108,96,103,96,110,94,112,114,83,101,94,79,102,96,97,89,111,92,102,95,93,114,101,92,104,93,113,77,90,95,87,106,105,90,106,105,99,111,94,95,105,105,111,116,82,96,101,98,80,102,92,95,106,100,95,102,106,99,99,107,100,102,107,98,105,109,75,75,103,105,99,96,91,105,93,109,102,116,99,96,100,99,107,100,99,88,91,83,86,105,83,110,97,98,80,99,97,91,94,94,103,93,96,102,97,98,102,104,100,107,104,99,85,120,96,100,106,100,102,91,105,110,105,102,96,94,103,92,106,96,111,104,106,102,106,94,97,97,104,99,125,99,100,104,105,106,109,101,80,104,110,83,98,95,118,97,105,102,93,105,92,81,100,101,100,99,103,109,90,103,97,101,102,107,79,90,94,100,99,104,92,89,102,100,91,100,106,98,107,104,98,105,108,102,101,98,101,98,115,90,93,97,107,97,110,105,101,135,96,110,79,91,101,99,104,94,101,83,97,86,100,104,75,85,100,83,95,98,116,107,106,85,127,108,105,117,100,96,87,117,94,85,99,110,93,111,97,92,107,104,99,97,103,88,94,109,96,112,89,79,94,87,108,91,102,105,103,104,101,112,121,102,91,94,112,101,93,99,90,92,88,80,89,98,98,96,95,94,88,95,106,98,105,102,93,105,86,110,104,95,92,91,99,116,109,87,105,112,100,117,116,112,109,86,111,99,88,88,102,113,94,94,96,97,98,95,88,99,109,113,95,97,89,88,87,110,87,59,66,96,104,104,106,88,124,93,99,109,86,103,98,109,93,92,100,90,111,102,98,102,101,100,97,102,106,95,97,98,99,90,101,101,101,93,98,111,99,99,104,106,112,92,97,102,107,99,101,109,105,96,104,105,107,95,90,103,89,101,97,102,111,87,89,96,101,103,94,100,98,106,81,98,102,105,96,97,93,91,112,103,102,109,91,98,103,106,93,107,103,104,103,104,94,105,100,81,95,99,107,106,90,89,96,98,92,105,101,91,91,98,104,102,85,99,107,92,109,104,91,106,66,109,124,109,79,101,97,102,104,94,103,94,113,106,113,109,98,102,104,98,86,108,85,102,102,95,92,95,88,96,107,105,103,101,110,100,93,91,106,91,108,111,93,96,102,87,92,100,111,102,103,85,93,99,105,88,108,87,96,107,113,102,94,97,88,105,106,122,92,101,96,98,74,107,87,100,95,98,101,94,94,101,99,93,105,108,84,97,100,106,98,104,95,92,97,95,106,100,108,89,92,100,87,95,80,103,90,96,103,95,102,90,99,97,94,95,113,97,93,105,102,99,92,113,85,101,104,97,97,105,99,93,90,104,101,104,109,99,111,96,101,96,109,106,88,90,91,104,110,103,80,107,95,100,110,88,102,99,112,98,94,95,95,99,92,89,100,91,97,85,87,102,104,87,96,111,86,88,103,102,98,113,98,111,107,88,97,101,105,97,98,85,99,86,90,129,103,94,89,102,110,92,96,102,99,94,105,105,111,97,97,93,108,109,102,96,94,95,103,97,100,98,107,109,99,90,99,91,88,91,108,112,93,113,105,107,86,97,106,116,112,93,85,103,84,95,99,92,99,91,94,88,99,97,99,96,101,97,100,91,76,102,88,93,87,97,97,98,99,104,74, +385.37122,101,85,103,92,100,88,96,98,103,91,98,106,95,88,91,90,92,97,113,96,78,79,100,89,87,103,98,113,105,93,92,92,108,97,97,100,97,101,100,99,94,108,96,96,90,93,93,105,91,88,94,87,87,86,101,89,100,94,104,97,97,97,90,107,91,103,90,96,90,94,96,106,103,101,94,101,90,94,99,127,99,98,100,99,100,92,88,97,117,63,102,92,97,97,95,107,92,89,100,95,102,117,93,83,86,87,101,98,97,104,98,102,94,88,95,98,108,85,106,101,93,88,105,103,100,109,90,116,108,104,92,105,92,83,93,92,90,88,96,88,94,110,99,99,88,90,91,94,88,99,80,105,97,90,97,98,86,93,91,97,101,101,107,92,93,90,101,93,90,91,102,84,82,95,104,102,96,80,100,96,101,98,90,101,100,94,80,90,92,94,97,100,106,95,82,105,84,98,106,95,103,89,84,85,85,98,97,101,110,114,97,100,108,97,99,106,95,107,104,96,91,121,109,101,99,101,104,90,95,101,90,91,97,109,103,92,98,89,109,92,106,89,109,98,90,99,101,99,100,108,89,113,98,110,99,93,97,106,97,93,107,101,96,100,97,103,90,97,105,111,108,107,101,104,107,96,89,96,100,97,94,94,99,90,102,85,95,101,103,96,98,111,105,95,98,101,100,95,94,105,101,98,93,95,100,98,108,93,100,97,92,103,99,113,93,88,93,95,92,83,96,118,102,92,106,86,106,103,104,104,110,97,90,96,100,100,97,85,92,98,97,107,101,91,78,92,109,99,97,91,95,94,104,115,89,110,97,89,99,105,99,98,90,98,98,87,102,89,90,95,100,105,101,80,107,109,99,100,102,84,99,97,101,96,83,105,96,95,95,96,110,104,97,105,78,121,90,110,96,101,92,102,93,96,110,98,101,107,106,96,100,87,108,100,94,86,91,100,90,90,90,84,103,99,103,100,96,86,91,95,86,82,96,95,95,97,101,87,88,121,113,90,97,102,111,92,80,88,97,94,99,72,101,112,106,100,106,98,91,97,94,99,92,108,111,109,93,101,96,98,99,94,94,85,88,93,86,94,89,90,106,95,112,90,99,95,97,90,93,93,96,95,84,101,84,103,93,95,97,112,113,95,103,95,93,93,100,99,87,91,94,94,106,97,99,108,97,85,97,104,111,87,101,95,91,112,99,87,91,107,92,94,104,101,96,90,98,101,78,99,94,104,99,96,91,94,111,111,101,94,104,103,97,100,95,102,112,98,107,89,93,87,100,100,100,93,107,98,94,94,96,104,101,95,91,111,97,94,102,108,93,96,99,97,105,85,98,104,102,94,91,99,98,96,87,98,108,95,96,103,93,114,102,91,97,98,95,79,106,97,106,101,103,108,93,105,90,93,98,90,83,98,116,93,104,100,91,101,99,105,89,92,105,111,86,89,62,93,86,99,97,114,102,100,92,99,99,89,101,108,93,110,95,109,99,93,103,103,98,103,107,112,107,99,90,97,97,86,99,101,102,101,93,92,101,94,94,101,107,94,100,105,98,84,89,90,99,104,96,96,96,93,95,80,87,110,110,111,107,93,97,88,106,91,86,109,92,69,98,82,102,100,101,91,97,101,90,95,106,103,132,94,96,109,88,92,87,99,100,98,112,105,115,90,93,96,101,99,100,102,96,95,110,95,96,103,104,90,99,87,105,95,106,122,90,100,95,93,94,98,103,99,88,97,82,104,83,105,92,93,86,101,107,99,99,88,98,104,103,102,99,95,99,95,92,96,101,99,61,85,97,76,82,101,74,68,110,97,81,95,106,100,104,87,107,102,91,105,96,99,101,112,88,99,110,92,98,90,102,97,90,99,99,96,95,98,93,108,101,87,102,82,90,103,99,99,101,79,102,80,91,93,89,94,86,102,94,110,102,82,95,90,101,91,93,93,96,102,89,101,89,90,89,109,96,78,98,101,100,92,104,102,120,95,88,96,97,101,95,113,82,101,99,92,94,105,92,77,107,92,95,106,122,91,96,91,94,91,105,98,90,104,92,106,88,100,89,70,89,98,99,87,86,95,112,90,83,94,95,79,95,102,91,87,92,106,91,93,106,60,103,103,94,105,85,103,95,94,93,81,96,98,101,87,71,89,98,91,103,83,104,88,104,86,97,97,102,104,84,100,97,80,104,84,112,108,95,94,84,102,85,97,86,92,82,100,91,87,79,80,90,96,94,97,86,101,92,103,106,91,98,100,106,90,105,94,98,91,89,99,91,100,88,84,94,101,88,89,90,93,94,105,94,103,86,92,101,84,97,107,100,111,106,88,102,78,90,91,112,101,89,95,113,92,91,85,99,101,78,80,95,100,100,90,98,105,87,104,79,103,79,99,103,97,95,101,101,96,98,88,85,103,100,95,89,93,93,96,67,102,87,98,96,94,90,83,94,78,109,109,105,97,90,96,98,111,103,87,98,112,87,102,101,91,104,84,113,105,87,99,102,94,96,98,106,105,86,96,90,92,83,91,101,108,108,96,83,91,99,98,98,93,103,110,96,96,90,100,96,96,95,107,99,98,105,89,102,94,92,94,91,98,98,101,95,94,91,96,100,87,109,99,122,105,98,105,96,83,89,97,91,93,96,92,93,102,70,88,112,92,108,94,109,94,84,91,96,92,91,68,96,98,87,89,138,117,105,85,93,101,91,103,98,95,94,95,96,87,106,96,86,99,112,101,80,98,99,98,99,97,96,99,93,105,99,102,103,96,98,104,109,87,105,100,101,91,99,101,111,97,86,105,95,104,93,105,98,103,106,94,109,94,95,99,109,103,100,97,90,89,94,93,84,103,95,91,102,99,81,112,72,104,92,98,96,92,107,95,80,94,82,108,81,108,99,91,87,91,94,101,96,91,104,102,76,95,96,99,117,94,97,107,98,95,102,105,91,100,100,114,98,92,95,98,97,106,108,112,89,94,96,107,84,93,95,115,101,95,90,101,111,100,109,88,64,105,101,93,94,101,95,86,93,103,102,106,89,106,105,94,88,122,91,99,97,101,93,114,110,101,82,94,94,95,96,92,93,110,119,105,97,105,107,90,122,92,95,102,99,99,105,92,81,97,102,105,96,110,93,110,96,100,98,101,100,83,99,83,102,97,97,80,119,91,112,103,98,112,94,103,93,106,93,106,99,97,110,92,98,100,92,89,97,108,105,90,98,74,111,96,112,107,100,107,97,98,97,92,118,77,112,95,109,106,71,88,88,104,92,98,95,95,100,103,87,106,105,95,118,99,99,91,104,107,106,102,106,98,100,90,104,107,85,105,98,93,99,91,96,111,105,105,94,99,108,102,101,89,91,96,101,98,91,100,95,95,87,94,96,91,98,94,93,98,112,85,92,103,93,105,95,96,105,100,94,97,94,98,101,101,83,84,100,84,100,87,99,88,99,92,98,98,97,87,96,112,96,102,74,108,101,97,68,96,98,99,113,105,102,108,84,99,94,100,105,86,93,97,117,94,108,99,93,88,99,101,112,99,119,92,87,100,93,97,91,100,92,97,106,100,92,92,92,96,97,96,85,92,93,95,91,92,100,94,106,93,105,66,88,106,103,100,97,103,102,92,104,95,113,94,88,95,105,94,97,107,85,100,95,99,96,118,99,98,81,104,103,113,96,112,103,100,96,91,85,95,95,92,100,95,112,109,92,87,104,101,91,93,94,90,96,96,98,90,105,98,107,108,104,82,93,83,55,91,99,95,102,104,102,101,93,93,97,102,104,103,99,104,109,91,88,110,93,105,59,102,98,94,97,99,102,97,102,93,87,102,102,92,106,104,84,102,100,95,101,90,111,103,87,72,97,99,99,83,109,94,94,96,104,94,107,94,94,95,91,98,90,94,80,92,98,89,99,91,92,106,105,101,86,90,100,101,108,108,95,96,87,98,99,98,99,101,96,103,79,104,95,92,107,107,95,76,92,96,102,90,98,73,105,109,118,92,98,112,99,89,93,106,107,106,92,97,117,88,91,94,102,114,99,99,101,111,91,88,107,101,99,107,103,104,111,90,106,90,91,104,108,89,101,94,110,100,100,102,97,98,88,92,100,99,100,103,98,103,104,101,81,99,102,103,105,95,88,104,92,102,95,99,104,105,102,94,66,94,105,96,94,101,98,97,101,89,100,86,92,106,86,98,97,96,111,92,99,112,101,92,110,92,98,98,86,100,105,61,88,101,98,96,114,85,96,99,96,108,93,83,98,102,96,104,109,99,94,97,103,103,109,93,93,93,87,108,97,106,99,99,88,99,97,100,101,96,107,96,95,90,98,107,92,92,107,95,99,91,89,96,103,96,119,111,103,102,102,96,110,101,99,96,100,98,95,93,107,90,98,96,91,95,106,98,84,90,90,91,68,116,108,93,99,111,102,83,104,99,95,94,85,110,104,79,93,103,97,105,95,94,98,90,111,108,95,96,95,89,77,92,93,90,97,99,92,117,88,98,92,99,100,96,90,70,87,110,107,94,75,99,71,107,87,107,104,91,91,91,92,94,99,105,109,91,88,99,103,97,93,106,103,89,92,93,94,70,99,87,102,99,95,91,97,96,89,98,107,92,102,91,95,104,87,84,107,95,99,99,95,91,109,101,109,117,101,92,95,94,79,89,89,96,87,92,94,100,90,101,97,87,117,99,91,89,93,109,100,101,105,83,95,95,84,93,95,98,104,105,82,86,109,99,90,102,98,104,100,110,99,105,102,94,90,100,104,109,95,102,88,98,112,107,79,99,94,83,108,81,95,106,103,88,102,108,105,101,98,98,102,100,100,98,89,96,95,82,101,104,83,96,92,112,95,86,89,89,103,96,76,108,94,78,96,104,96,99,75,96,98,93,103,101,95,88, +385.51126,107,102,88,93,79,106,95,105,99,110,90,99,119,123,99,100,103,109,99,90,100,104,100,104,94,103,105,109,100,65,81,109,99,96,111,107,96,99,96,113,96,99,91,101,89,88,118,90,110,103,94,93,96,96,87,94,93,97,121,91,89,91,101,93,105,115,94,94,101,99,96,82,109,94,81,100,91,105,94,92,89,81,90,110,100,107,99,107,106,93,94,105,107,97,81,96,88,93,96,89,97,105,103,106,92,114,101,105,101,104,102,106,94,90,103,103,103,95,104,78,113,103,107,88,102,101,104,87,100,108,105,96,93,108,98,98,99,89,110,103,92,95,79,92,103,105,103,102,102,95,114,89,116,93,88,96,98,94,134,99,96,113,101,107,96,104,94,92,108,98,94,99,88,99,98,105,102,85,92,102,104,97,93,109,91,85,86,70,95,91,96,114,101,105,108,95,99,96,104,94,99,104,109,101,94,109,106,105,106,99,78,98,89,103,101,92,96,89,80,98,126,92,97,88,100,105,107,104,99,113,101,108,107,86,98,98,95,98,94,90,91,90,107,96,88,104,96,93,112,108,97,108,89,101,91,113,100,93,100,84,93,99,90,92,98,112,100,85,97,91,101,87,109,98,97,106,102,107,109,86,103,110,110,118,101,102,91,106,87,100,94,119,96,122,113,107,102,104,86,98,87,96,101,94,89,108,100,108,104,108,101,103,110,103,98,101,102,96,104,91,96,106,105,104,100,103,93,98,108,105,118,109,94,105,99,105,101,92,87,100,86,97,89,92,97,94,96,110,104,99,102,117,101,100,101,96,101,110,73,91,95,83,116,92,94,83,102,99,100,101,83,101,103,101,101,100,111,101,89,103,98,111,98,100,99,87,100,98,111,92,104,97,104,109,90,111,111,97,92,100,103,94,102,98,95,94,108,92,87,100,93,108,97,113,103,94,102,85,96,90,108,109,89,87,81,104,117,101,110,102,96,102,107,112,95,83,111,96,91,94,108,77,96,100,92,99,97,85,108,95,92,91,97,103,98,99,100,67,105,98,108,96,89,93,101,110,105,92,104,84,103,101,96,115,99,87,107,97,104,94,98,109,113,99,98,109,99,108,75,94,104,88,101,86,96,101,99,101,116,108,104,105,101,98,91,97,104,99,99,100,114,102,121,96,95,98,95,90,108,86,95,95,107,101,106,85,98,113,96,87,99,92,107,100,95,120,100,79,99,92,95,98,113,102,109,92,97,92,101,94,95,103,98,88,88,84,104,105,100,104,102,103,101,101,99,102,98,91,106,60,80,104,101,92,100,99,89,99,98,104,95,92,105,93,89,94,94,104,106,96,96,99,103,105,109,97,91,93,84,108,102,95,107,102,87,96,97,99,102,111,86,100,112,92,110,97,98,97,110,106,107,113,109,100,114,98,117,100,87,108,99,99,96,109,102,97,100,92,114,90,98,102,98,106,93,99,79,86,110,105,65,102,103,98,114,101,95,100,106,91,97,98,101,107,94,100,104,105,97,109,108,103,101,95,90,107,107,101,110,101,108,97,101,102,87,92,104,98,103,92,103,102,101,105,100,93,95,93,106,96,113,112,75,93,96,101,99,102,94,82,116,103,101,97,116,86,101,113,106,99,101,103,107,112,92,94,101,87,104,95,91,98,106,101,108,99,95,95,106,100,109,100,101,104,102,104,91,94,102,103,100,84,102,99,107,87,100,100,103,89,96,103,100,109,83,97,84,109,107,108,105,94,104,114,92,108,101,94,111,106,113,96,120,105,96,91,100,101,97,102,105,93,104,107,115,83,100,109,102,108,100,86,95,98,103,100,113,92,114,76,93,122,89,101,124,104,96,112,101,87,95,108,87,100,106,111,109,107,94,92,95,77,104,109,102,104,90,87,86,97,98,93,93,107,92,110,90,98,100,102,99,92,99,89,97,106,88,92,97,109,90,98,98,88,105,102,92,109,108,101,92,110,87,105,77,96,114,94,118,98,99,97,97,115,98,100,88,102,92,94,106,118,96,97,92,89,109,85,99,113,95,101,103,101,93,99,98,94,98,97,108,97,86,96,99,97,88,108,98,87,111,101,111,112,95,101,105,101,109,93,90,96,98,100,87,100,105,100,87,99,97,91,106,100,83,96,90,110,99,94,98,113,103,96,103,90,106,95,82,91,106,91,101,96,107,97,96,94,100,97,95,97,87,95,105,99,115,72,103,93,105,96,63,87,86,85,90,97,95,105,100,105,84,91,93,96,109,80,98,102,96,87,102,98,95,105,97,98,84,91,97,104,90,101,105,80,89,100,82,102,107,112,105,102,102,66,98,73,94,91,117,93,107,90,97,88,87,103,86,83,95,116,104,99,94,97,92,109,88,99,113,104,96,95,110,94,80,103,92,98,90,105,109,106,77,96,100,108,91,91,104,107,101,88,105,101,109,98,94,114,111,84,94,91,95,111,102,91,97,126,81,100,102,92,107,94,117,99,88,94,100,88,92,100,80,83,101,97,104,95,82,103,101,108,105,93,102,103,88,94,106,102,100,90,101,103,91,99,81,98,96,101,105,96,90,103,96,107,99,97,94,110,90,94,88,103,98,102,107,102,112,91,91,94,95,99,103,102,102,95,97,95,108,95,104,98,96,84,106,109,109,108,102,113,102,100,109,99,97,93,93,100,100,102,98,97,108,92,91,106,102,95,103,98,89,116,86,106,111,107,106,113,90,110,93,107,103,105,91,98,101,103,99,103,100,100,92,97,101,105,109,110,104,91,120,100,88,114,98,116,95,95,88,97,98,97,120,102,109,106,97,96,104,102,106,94,108,101,101,106,106,94,103,88,107,98,91,109,102,102,96,101,101,106,108,102,88,105,90,106,104,103,94,99,92,96,109,102,103,105,105,99,106,97,111,100,101,107,96,108,95,103,98,101,90,116,113,112,61,100,102,87,98,91,99,101,99,111,100,105,95,98,100,98,107,101,105,98,98,95,112,90,95,104,97,97,102,98,102,108,75,105,101,111,98,98,106,105,106,86,105,96,95,96,98,103,112,94,104,110,113,106,100,92,93,87,112,105,109,90,120,94,102,91,101,91,94,102,111,94,96,98,90,101,83,94,102,88,98,92,105,92,120,96,100,92,118,105,87,104,109,107,99,98,92,117,87,92,116,101,95,109,92,117,105,91,99,119,111,90,84,108,85,94,95,88,100,106,105,89,99,102,99,96,91,116,101,99,109,92,112,105,104,98,91,92,91,107,94,61,80,90,103,99,109,111,104,115,98,96,90,93,124,103,95,96,102,91,105,119,96,102,110,99,102,104,88,99,101,103,96,103,96,101,96,117,106,94,104,97,93,114,101,108,82,97,89,102,95,100,105,93,89,101,97,91,107,110,117,123,113,103,95,105,108,103,89,96,103,112,96,97,103,97,90,105,99,105,98,100,101,101,89,95,100,98,105,114,98,99,100,112,100,97,98,114,93,96,103,88,100,109,94,109,91,113,91,105,94,89,118,104,94,113,95,77,107,102,102,100,99,105,107,102,101,106,103,110,102,103,103,95,88,94,103,94,73,107,120,98,105,107,102,105,123,100,97,98,87,74,102,86,92,115,106,101,95,84,102,113,97,102,97,100,102,95,112,88,100,104,90,101,118,100,85,95,95,105,107,107,90,106,87,89,101,98,97,91,79,113,100,102,95,95,102,96,98,101,100,89,93,105,88,92,108,108,104,90,108,95,98,91,107,106,113,97,88,101,95,92,97,100,97,100,99,99,102,95,107,102,92,105,101,70,94,99,101,106,93,107,96,92,104,99,95,99,102,86,92,111,89,106,93,111,91,96,103,91,95,92,99,100,101,98,105,98,94,103,99,96,95,100,105,91,101,102,91,77,80,98,103,108,82,93,100,99,99,102,105,106,98,98,108,101,98,101,96,109,117,99,99,101,97,103,100,101,98,111,97,103,107,113,85,112,94,94,83,106,87,104,119,101,96,126,100,101,94,100,115,99,100,104,102,100,110,99,98,95,109,113,108,106,96,102,111,70,109,100,109,101,111,98,104,102,99,115,98,78,100,108,96,87,96,100,104,106,100,111,107,97,97,115,93,91,83,107,119,99,84,99,101,99,108,100,102,99,105,70,95,91,110,101,105,96,100,105,100,98,109,89,113,114,115,97,95,106,87,122,105,97,98,107,113,84,97,84,100,80,104,96,99,90,86,100,109,101,109,106,106,107,93,111,105,97,94,95,108,92,101,98,112,102,100,98,102,100,99,96,88,99,89,107,120,105,99,109,108,113,98,107,104,108,96,100,99,99,96,94,99,99,97,77,96,92,79,86,104,100,118,112,109,95,94,98,100,109,109,98,109,94,96,100,100,108,105,93,106,115,110,91,102,83,91,103,107,96,97,107,107,104,105,91,97,96,91,91,94,90,102,112,103,113,89,81,95,94,104,93,108,103,110,95,100,100,100,94,109,95,110,107,94,91,94,98,105,98,101,97,90,113,106,104,111,78,98,94,86,111,96,102,101,95,99,99,105,96,102,87,101,104,98,109,92,76,109,101,104,99,87,96,96,109,94,106,106,100,106,94,97,133,101,97,99,86,99,100,111,105,96,99,91,99,105,95,93,90,112,112,90,107,89,97,95,104,77,91,93,94,94,112,86,104,93,97,116,95,102,99,98,88,99,102,101,103,100,95,98,90,91,102,95,110,96,99,109,96,97,87,90,97,95,62,117,93,109,101,83,104,103,100,104,110,97,102,107,103,117,88,96,108,101,99,99,103,93,115,99,100,96,97,110,93,102,96,83,77,106,107,102,97,99,116,97,104,97,101,103,102,88,105,103,83,96,98,108,97,89,91,109,93,92,91,102,94,112,111,101,94,94,94, +385.65131,96,101,88,106,94,107,103,93,87,103,86,95,92,114,92,98,79,111,109,103,102,99,99,105,100,101,101,92,101,87,98,94,94,97,96,94,103,96,109,96,122,90,121,126,107,105,109,97,96,110,83,100,107,98,96,96,90,83,102,68,103,99,107,76,88,96,98,111,87,91,66,106,112,112,110,101,103,103,104,96,100,93,93,88,97,94,110,92,91,89,93,98,104,100,96,100,65,92,105,77,113,96,91,100,90,112,100,93,95,121,105,98,102,94,112,85,90,95,114,101,105,102,101,103,103,93,98,106,111,93,102,104,86,105,109,91,81,98,90,94,103,109,95,99,98,99,99,106,95,93,98,100,112,87,109,106,94,97,111,103,95,96,101,106,93,94,101,105,90,103,98,114,106,105,97,99,97,98,93,99,105,105,95,96,98,97,99,82,86,83,93,101,103,97,102,95,78,106,98,103,84,97,114,107,93,103,105,91,110,101,89,99,106,88,101,82,88,117,95,93,96,113,64,99,101,92,114,103,100,99,111,95,104,109,92,101,101,117,92,98,109,101,87,90,106,96,105,81,109,101,116,117,117,99,92,103,96,113,93,100,96,88,97,97,109,96,102,99,96,109,86,120,103,105,96,111,100,106,98,92,111,106,96,93,97,104,76,93,101,99,94,105,96,104,99,103,109,96,102,97,92,98,80,108,98,106,95,100,97,108,94,88,108,92,100,94,113,107,117,108,103,83,106,109,110,99,101,83,107,110,109,91,98,66,96,103,97,90,98,95,109,97,100,103,105,97,109,103,88,93,123,97,106,75,100,90,107,93,112,103,97,107,94,102,102,108,121,96,94,109,110,103,103,90,117,96,92,102,87,94,92,99,100,81,89,87,105,91,97,99,102,90,105,92,98,91,101,93,95,103,106,103,109,91,98,102,104,100,99,93,86,103,98,107,105,90,84,98,98,98,94,93,105,109,93,95,110,85,93,107,98,94,114,96,104,93,91,92,102,123,100,91,97,98,107,90,109,86,103,93,97,110,107,110,98,96,107,122,85,101,90,87,94,98,103,108,92,92,119,99,100,95,102,88,82,96,106,95,93,98,130,88,90,99,100,93,104,94,105,96,99,108,113,108,89,101,95,109,93,95,107,105,104,96,100,100,109,101,99,91,98,98,97,101,101,101,103,109,96,93,109,103,95,88,95,95,112,101,95,97,86,118,90,96,98,99,110,95,87,116,91,107,101,107,93,90,112,104,92,106,94,96,103,109,99,102,101,107,99,95,96,112,86,110,106,112,97,95,114,94,107,102,104,103,99,96,95,93,90,95,103,102,101,96,104,96,98,105,117,98,99,104,109,98,97,99,98,97,111,112,88,99,101,104,92,110,92,91,111,103,94,97,107,113,111,91,97,100,98,90,93,103,94,105,103,105,104,92,96,96,107,93,96,92,98,100,98,115,117,111,104,111,98,103,97,97,105,97,101,87,101,114,101,101,91,107,101,103,102,96,80,95,100,108,90,83,100,106,93,104,106,92,104,102,105,107,103,93,104,99,97,92,109,87,85,97,100,91,110,99,102,84,107,98,88,97,97,88,87,96,104,85,89,97,98,87,94,104,98,93,106,102,116,100,108,73,118,99,78,105,113,85,102,116,95,101,103,108,113,95,110,104,100,99,97,110,100,96,115,106,107,88,99,93,91,99,98,86,100,97,101,112,110,103,103,102,99,116,101,95,91,100,97,99,93,98,93,87,94,92,91,100,109,104,99,101,95,99,99,90,76,96,76,100,95,94,96,101,100,116,103,109,94,116,97,106,102,103,100,108,99,97,85,96,109,94,96,97,107,96,108,98,105,97,106,103,110,98,103,104,95,96,100,87,92,97,88,94,100,111,105,91,90,101,100,107,116,96,86,98,100,99,91,102,86,98,94,102,90,90,108,86,92,108,91,88,87,94,96,108,96,106,96,88,98,101,94,108,99,117,117,105,98,100,101,94,104,88,92,107,111,103,101,90,94,113,91,124,100,105,99,106,83,96,95,101,95,95,96,98,101,106,106,101,98,91,96,109,101,105,96,113,94,83,102,90,91,94,96,83,100,93,105,100,94,94,97,103,99,94,95,96,90,100,91,100,100,90,96,88,78,117,97,95,104,109,91,96,105,99,79,87,107,91,94,95,103,82,89,97,104,106,98,94,110,98,101,110,105,99,99,99,95,114,95,98,88,104,96,100,83,99,90,104,98,95,99,100,117,101,98,94,90,93,91,90,79,100,93,72,99,98,103,103,102,100,102,104,98,111,91,84,94,107,93,102,88,93,92,108,90,108,101,105,102,86,106,101,105,107,107,97,77,101,73,91,93,96,102,98,100,103,97,107,94,99,115,102,103,92,92,112,108,88,96,93,92,90,98,91,96,101,102,92,96,93,97,91,99,95,103,99,102,93,87,121,105,106,93,92,94,91,94,94,86,101,105,75,95,103,91,118,88,76,102,108,136,96,114,73,87,90,102,102,98,105,105,94,94,102,86,103,93,99,110,90,90,103,104,98,87,111,104,107,90,106,102,113,109,94,103,100,112,90,88,102,98,105,105,108,96,98,102,104,88,104,103,117,106,99,113,80,107,96,97,93,102,103,100,99,111,99,97,83,100,98,92,108,99,108,94,101,96,113,100,93,101,90,103,99,91,97,92,104,105,113,101,94,100,112,84,104,99,103,97,99,89,103,95,98,100,96,95,93,105,109,99,105,88,70,94,104,98,86,107,109,112,101,113,94,120,103,104,102,101,92,93,96,97,93,94,97,96,103,96,82,98,96,94,121,100,93,100,91,92,90,105,91,97,106,109,122,115,131,107,99,94,104,94,104,103,102,101,98,90,109,108,96,108,97,103,99,98,102,95,99,107,114,113,104,101,95,105,98,112,104,90,100,98,104,96,92,91,101,98,116,92,86,107,95,98,113,99,113,72,107,95,83,96,105,102,105,101,111,100,102,99,108,93,105,94,101,101,101,99,101,104,92,106,85,96,105,96,100,98,98,92,96,92,95,90,101,103,74,99,107,123,96,91,77,112,98,90,100,101,90,92,84,97,97,99,97,101,86,97,90,93,90,105,85,93,97,103,99,94,104,101,99,95,94,98,107,105,96,101,98,96,99,113,73,125,93,97,104,88,99,95,96,102,94,108,115,99,98,94,65,110,98,101,105,106,92,100,99,100,97,101,100,97,106,98,101,98,89,84,102,99,106,95,102,103,99,97,106,95,89,94,99,108,105,96,89,95,93,103,92,103,108,100,93,96,99,92,101,98,98,94,95,98,105,95,89,107,122,99,96,92,95,102,119,100,97,102,101,88,113,108,96,106,105,107,102,100,101,100,99,95,104,98,98,99,94,96,116,92,107,89,93,106,80,88,112,97,103,87,99,101,98,104,97,95,104,79,93,95,96,92,71,104,117,101,103,88,95,98,99,114,106,98,91,96,99,94,90,105,111,93,111,94,114,105,93,87,110,109,92,100,103,113,98,90,91,99,94,98,96,109,93,101,101,103,102,99,104,100,90,124,104,98,98,98,97,94,95,100,98,100,98,96,92,92,101,99,114,88,95,101,95,101,103,89,91,95,100,102,106,96,100,89,102,101,103,112,110,101,104,84,99,95,92,94,91,112,102,95,90,100,78,98,91,104,106,97,87,84,99,103,105,95,96,106,107,105,102,91,96,96,95,106,93,82,98,105,93,104,101,109,96,96,93,107,87,106,92,93,91,106,106,97,103,100,85,85,102,92,105,99,94,105,100,90,108,96,97,97,90,113,98,100,100,101,99,92,104,95,105,90,98,92,99,93,102,83,108,104,102,110,92,102,112,108,96,103,95,85,93,91,109,99,104,89,94,99,88,104,82,93,91,70,93,101,96,96,95,97,105,100,87,97,87,105,96,103,99,88,105,96,106,95,91,88,104,97,101,83,90,96,93,98,97,115,92,113,98,101,97,102,97,103,97,104,90,90,99,116,95,103,111,104,101,101,96,85,113,99,102,95,103,104,108,100,101,97,89,96,96,103,97,108,83,108,102,95,109,95,105,107,117,85,97,106,110,106,103,91,117,104,93,106,101,91,112,101,109,95,107,99,89,101,85,95,89,97,98,100,97,119,97,84,88,110,95,94,102,89,93,94,101,106,92,103,111,87,109,102,103,91,102,97,101,105,94,101,114,104,106,106,93,99,106,101,102,93,82,83,99,113,128,99,95,93,95,91,87,103,99,105,94,101,94,112,100,97,105,96,101,94,96,84,112,99,75,92,102,117,99,104,103,92,87,96,86,96,91,91,93,75,117,98,86,101,96,99,108,85,94,117,117,109,90,103,99,113,116,98,89,111,94,99,90,112,88,112,91,94,90,91,96,91,95,100,93,98,96,104,99,94,99,100,105,103,95,106,93,119,100,80,103,91,98,104,92,100,97,100,98,101,71,97,101,84,98,104,103,102,101,99,120,96,100,90,86,82,109,109,96,95,98,101,100,84,91,93,98,89,100,101,105,95,96,83,83,92,104,90,105,95,85,108,93,97,93,104,96,100,90,109,108,82,99,98,91,84,110,99,104,89,99,97,87,95,87,104,90,99,112,108,94,96,106,96,100,88,93,100,107,112,107,97,90,97,94,111,97,95,100,88,98,96,63,90,91,102,103,118,80,113,103,92,90,99,81,114,93,97,84,92,89,94,92,92,113,98,101,102,93,108,92,105,95,94,90,91,110,89,113,100,94,105,95,90,101,93,109,89,95,94,96,94,107,87,103,102,87,96,98,85,94,97,103,105,104,95,108,95,105,103,94,115,98,104,100,92,95,95,102,94,95,101,100,87,88,104,101,91,98,97,93,106,102,102,105,113,97,103,91,101,105,88,104, +385.79135,94,117,74,91,97,92,93,100,91,100,97,95,101,89,107,91,101,93,95,96,103,106,102,111,96,91,102,111,108,110,98,97,100,87,107,101,97,89,97,98,105,91,102,107,90,102,88,109,95,97,76,92,107,82,97,76,95,90,90,81,91,100,117,83,112,104,99,87,98,94,101,111,97,90,103,100,108,99,118,108,103,89,90,97,110,104,99,98,86,94,90,91,88,96,94,110,91,89,110,99,91,99,102,109,91,98,85,93,102,96,98,122,113,97,100,83,97,97,117,105,98,83,95,102,102,99,118,101,102,95,96,67,89,91,87,100,99,102,92,94,113,101,118,100,81,97,110,90,102,103,94,108,109,86,94,105,96,96,122,104,89,105,97,100,107,101,86,105,93,95,84,103,94,117,99,97,100,82,98,97,98,109,100,95,87,102,99,91,97,97,89,62,97,105,107,96,99,89,103,98,96,101,87,86,106,119,90,103,96,89,97,100,101,105,104,102,103,88,113,95,101,104,99,102,100,97,99,86,109,87,90,87,98,97,83,98,97,97,102,92,98,89,107,114,88,110,95,97,102,105,93,100,89,108,91,107,99,111,88,105,96,95,104,99,100,110,98,100,89,89,98,102,87,96,103,115,91,96,95,91,101,83,96,102,101,113,90,97,104,100,102,82,106,94,100,92,95,97,96,101,92,91,88,92,101,86,80,92,96,99,77,102,107,109,94,95,106,98,89,94,102,94,101,96,103,102,100,95,115,92,106,90,103,81,95,103,101,78,105,102,98,96,109,99,100,94,95,103,93,103,106,97,95,113,109,93,108,86,102,108,110,93,86,93,103,105,119,103,100,105,105,109,96,100,99,99,120,100,104,94,105,106,96,95,99,105,91,105,89,88,105,101,101,95,93,103,96,98,99,101,98,89,101,92,92,91,105,102,97,97,93,93,105,93,99,87,104,108,91,100,83,104,99,67,100,101,103,87,86,94,81,105,101,105,107,98,103,109,94,108,111,94,87,102,114,105,85,93,97,108,99,87,109,101,81,88,98,103,94,100,88,99,100,108,101,102,96,93,101,125,92,107,88,100,93,88,99,103,102,113,110,97,94,82,99,103,117,100,102,87,110,105,104,83,95,91,98,102,96,95,113,127,106,94,82,100,102,99,97,96,98,99,113,100,109,103,97,107,98,100,88,101,95,91,103,100,94,103,93,94,95,101,117,90,88,113,104,95,112,103,97,102,95,97,103,94,101,94,100,97,92,99,86,92,101,95,105,84,99,98,98,93,97,98,105,102,95,109,95,109,87,108,89,99,93,101,99,91,107,106,93,90,110,97,95,101,106,101,94,113,107,105,88,97,107,96,91,104,89,89,106,98,112,99,109,96,92,98,92,112,105,100,95,105,103,105,110,84,102,93,90,81,107,92,107,104,99,109,94,106,100,106,98,108,69,106,94,106,102,110,113,91,100,95,98,87,104,103,93,101,94,101,94,91,98,120,95,94,103,98,117,99,98,79,96,98,100,90,109,97,105,100,108,99,102,103,91,86,108,96,100,101,112,95,91,78,96,104,97,92,107,101,91,102,108,94,97,109,107,86,93,94,95,100,95,104,109,98,80,88,101,103,100,90,94,104,99,106,89,94,87,91,105,94,79,79,90,96,97,104,100,110,105,96,98,100,106,85,106,92,100,105,107,96,88,97,81,113,104,87,99,104,101,88,103,97,112,100,99,95,95,98,95,86,103,110,95,109,98,96,94,97,95,92,100,97,92,107,89,86,93,98,105,103,88,95,106,89,105,109,97,95,106,99,98,98,101,103,103,109,70,85,87,109,107,93,83,93,99,98,104,79,95,111,106,83,105,88,102,103,107,111,91,94,105,95,100,96,102,102,92,91,101,109,100,85,104,95,98,96,106,104,92,90,98,100,89,86,90,85,93,67,84,105,92,95,102,106,103,91,93,101,89,85,101,70,97,107,91,102,102,98,99,91,76,92,104,100,105,91,97,107,103,100,90,105,95,107,95,95,102,96,119,101,91,90,96,94,95,99,93,101,97,86,92,98,76,96,101,94,112,120,91,104,69,120,99,99,103,111,101,103,101,89,94,102,97,98,114,91,105,102,100,76,96,101,91,97,91,108,94,95,101,90,93,93,101,99,111,98,99,93,105,98,94,105,97,104,87,119,90,108,86,102,97,90,87,101,91,104,88,101,102,88,101,94,99,76,91,102,96,107,102,94,104,107,89,100,105,96,87,97,111,113,95,87,98,102,87,95,104,96,92,101,106,102,100,83,85,95,85,97,108,102,97,91,93,94,99,97,109,109,94,94,113,111,94,93,102,97,101,75,99,101,88,97,106,92,103,91,87,102,91,104,90,95,77,97,105,90,87,94,90,96,87,100,98,110,97,88,91,102,105,96,105,96,80,87,105,103,80,99,96,104,81,101,92,106,88,102,116,87,92,84,109,104,103,93,99,104,98,95,92,103,105,93,87,90,111,118,110,85,105,105,107,94,98,92,95,111,102,98,94,94,98,89,79,90,90,93,110,105,101,98,98,100,100,85,99,89,101,98,105,95,98,88,94,95,73,99,92,83,95,108,102,106,98,91,97,100,101,107,108,100,89,97,109,118,98,97,95,89,103,85,106,99,111,99,100,84,104,102,102,95,104,92,104,85,99,63,107,98,96,104,99,94,81,84,97,76,98,88,99,96,102,100,101,92,104,101,94,97,99,89,112,91,98,104,103,101,95,100,109,112,105,99,107,107,91,96,91,99,78,90,99,107,117,100,97,107,97,106,97,110,99,97,105,108,102,106,114,119,108,91,95,100,90,91,101,103,102,93,104,98,102,85,101,107,109,100,98,96,106,106,112,98,101,95,101,93,98,116,99,113,102,104,100,107,97,100,109,107,94,109,98,98,99,97,95,102,95,99,100,98,114,113,96,119,105,104,103,95,94,105,99,99,100,98,109,99,111,107,91,92,109,106,96,95,104,98,112,102,91,93,111,90,106,98,113,83,108,94,91,92,105,106,97,106,92,103,98,97,101,111,100,96,112,105,108,99,109,107,90,106,104,121,110,97,93,93,88,99,98,102,92,97,101,91,95,91,104,106,108,105,96,96,99,98,101,100,94,90,100,104,100,87,96,92,90,94,93,95,107,100,99,96,98,100,95,88,106,84,99,109,79,89,104,105,76,89,103,97,97,103,89,94,101,102,92,109,96,95,102,101,101,98,104,108,114,95,90,109,90,102,105,96,92,100,78,92,93,90,89,94,88,99,112,99,109,91,107,94,100,84,108,106,108,96,96,91,104,112,98,117,108,103,96,99,97,102,96,106,92,93,92,111,96,98,116,102,99,122,94,100,104,92,94,91,109,113,109,101,105,103,102,100,90,112,107,87,101,101,106,89,106,108,95,109,96,105,105,100,98,106,98,105,96,92,100,109,88,112,96,102,82,109,94,98,104,106,98,96,92,102,77,106,109,82,107,97,110,107,95,105,109,98,98,80,100,90,99,91,98,112,99,100,97,109,102,114,92,85,97,94,97,95,107,80,100,97,111,91,95,98,93,90,95,109,105,96,100,97,96,98,106,107,108,99,108,109,91,96,109,101,101,96,105,80,97,103,94,112,110,98,91,93,99,101,101,99,109,86,101,104,103,100,92,106,104,103,97,105,65,101,100,105,94,105,92,97,96,89,98,108,109,79,93,100,87,92,98,101,95,90,119,96,99,103,97,97,94,89,90,88,98,100,93,105,103,102,109,85,105,105,95,109,98,87,108,99,106,106,99,100,112,101,110,94,95,106,100,85,107,102,103,96,107,96,101,90,95,103,97,100,113,101,102,92,88,95,100,95,103,87,107,104,96,93,97,99,97,86,91,100,97,96,108,92,109,99,113,90,97,117,102,98,97,100,90,117,98,102,101,88,101,76,106,99,99,102,90,105,97,103,92,107,112,101,98,99,107,113,84,117,111,100,107,102,93,92,111,99,100,111,143,108,103,92,103,102,105,96,84,93,100,91,96,87,107,116,110,94,97,109,104,102,97,96,99,92,91,93,108,104,104,94,101,105,96,73,109,106,100,104,94,93,104,98,96,86,87,80,98,113,92,100,97,88,94,104,85,103,92,94,92,99,108,97,98,109,98,112,87,77,82,97,79,105,99,92,99,93,100,96,99,91,101,103,110,97,110,114,90,97,90,104,94,100,97,93,98,102,85,97,97,100,100,98,98,94,79,105,105,98,97,95,89,109,96,110,103,92,104,96,102,107,94,101,105,110,103,98,101,100,139,102,113,86,94,99,106,102,100,92,101,98,103,105,72,98,96,109,93,99,105,95,108,105,101,99,93,113,95,102,93,93,94,88,94,115,92,90,87,96,101,99,96,99,113,102,88,89,111,105,94,94,111,109,99,93,105,89,120,76,99,98,98,91,107,99,99,103,99,90,102,87,85,97,112,90,105,96,101,92,103,106,105,116,91,95,89,109,85,101,97,100,98,98,94,91,96,101,110,110,100,95,108,92,98,103,105,96,97,101,100,108,92,106,104,96,98,92,108,104,108,104,94,93,112,104,101,95,93,101,92,86,101,112,102,95,97,102,80,101,90,107,66,103,101,92,107,99,99,105,103,103,106,94,91,109,98,96,100,97,101,105,104,106,105,95,107,90,102,96,104,100,91,118,104,117,99,102,105,109,97,83,99,111,109,94,91,110,108,108,95,104,99,94,101,107,89,100,96,83,93,96,109,102,113,104,88,92,100,98,93,97,105,108,106,110,99,98,96,99,95,93,97,105,84,103,94,85,94,89,109,94,94,73,90,92,98,95,91,91,87,111,70,102,92,88,100,90,93,92,132,90,86,96,94,101,104,109,97,87,105,88,94,96,95,99, +385.9314,106,97,108,96,85,99,115,97,94,122,96,108,105,92,101,98,95,110,95,103,82,103,98,92,97,97,104,99,98,96,91,105,114,123,116,78,90,96,101,98,100,97,104,107,97,109,98,101,96,98,99,116,91,103,97,107,102,101,94,89,85,100,91,86,99,99,94,98,113,97,102,103,105,92,108,119,92,96,88,93,100,99,111,111,96,93,89,114,97,106,105,92,93,109,89,102,125,99,98,106,97,95,88,88,95,92,94,93,95,102,104,78,122,109,75,96,99,98,96,88,86,95,106,100,114,108,114,91,105,108,110,109,100,98,101,96,96,102,94,92,98,86,107,109,104,94,97,106,101,116,101,112,102,96,89,94,92,90,96,90,75,112,105,105,100,98,101,101,94,88,103,100,104,102,101,96,117,96,99,104,97,93,87,97,108,99,102,101,109,94,98,94,104,106,96,69,101,109,103,115,103,87,108,103,98,101,97,101,103,104,92,104,105,91,110,102,99,108,97,92,91,96,92,96,93,95,112,83,100,95,108,92,103,113,112,100,91,104,101,99,103,92,105,91,105,104,93,101,132,103,103,98,80,83,94,115,102,103,87,98,91,106,97,102,91,104,99,101,92,89,109,110,95,98,91,107,85,99,95,93,95,109,98,105,100,91,102,67,98,98,100,97,113,107,98,105,99,95,93,94,101,108,94,105,90,116,99,96,126,103,100,94,102,90,93,102,101,120,111,102,98,96,98,105,99,97,93,94,103,94,100,87,114,105,108,95,94,108,79,91,117,98,94,93,84,107,90,117,112,95,131,103,115,88,115,90,93,109,96,98,113,101,106,92,92,93,98,115,101,94,98,96,96,91,106,100,95,111,86,102,105,114,107,91,110,97,103,92,111,98,105,99,97,92,98,100,102,91,102,90,91,102,94,100,86,91,115,91,105,98,95,100,92,94,100,103,94,97,93,113,101,103,89,97,92,88,105,96,95,91,96,101,105,97,92,103,85,112,97,99,109,96,113,101,95,108,77,90,100,109,103,96,102,107,105,91,79,111,109,96,95,96,99,106,126,108,101,114,102,106,102,103,108,94,97,92,89,108,93,102,98,109,103,85,89,113,98,105,97,89,92,97,100,112,103,106,78,94,100,109,102,103,93,111,98,105,98,110,93,101,99,113,104,103,97,85,100,107,97,98,95,93,100,98,95,94,107,105,101,104,96,97,95,90,93,78,92,106,95,105,97,97,108,97,100,93,107,103,109,90,92,95,106,105,124,102,104,91,72,102,98,98,88,88,125,94,103,92,105,99,96,86,91,97,102,96,107,91,95,94,98,92,89,86,108,98,99,94,96,99,104,96,92,99,104,98,77,95,100,93,105,108,101,99,94,97,86,98,101,101,92,95,109,99,91,95,106,101,105,99,109,105,109,99,105,109,107,104,99,97,108,94,73,107,96,104,109,92,90,100,64,88,103,114,96,88,108,97,97,102,73,102,101,105,96,106,103,94,102,96,104,107,102,89,105,101,100,92,98,94,105,106,101,92,94,105,92,92,97,90,113,103,93,98,96,96,97,94,97,107,109,98,94,102,96,96,96,111,127,92,112,98,94,99,116,101,83,110,121,97,99,113,80,101,96,102,113,81,97,77,109,94,103,102,97,104,88,94,99,99,104,106,108,90,101,97,94,98,110,98,87,98,103,96,94,98,104,101,106,101,81,89,90,95,96,113,85,99,107,106,96,104,97,95,95,118,98,117,111,96,112,109,91,72,81,95,99,116,86,91,101,107,134,96,99,105,106,101,102,94,102,99,112,101,90,102,95,94,94,100,106,103,90,99,97,98,103,108,109,98,89,112,78,106,108,100,93,100,113,93,105,89,104,102,89,109,126,97,102,88,104,98,97,98,85,109,103,102,99,96,86,102,112,100,106,96,103,74,94,101,93,98,90,98,106,93,93,100,109,100,98,92,91,87,112,92,99,101,101,101,104,96,111,103,76,102,103,83,97,104,99,92,103,109,80,90,109,112,112,97,95,107,126,96,115,117,138,109,93,104,96,91,97,99,104,88,100,107,105,110,94,80,104,93,95,98,100,98,115,94,101,108,100,78,105,83,96,90,96,109,88,111,101,106,89,96,96,100,97,101,105,94,104,104,108,99,94,109,65,114,103,98,98,108,98,82,103,84,102,82,78,103,100,95,111,88,106,94,99,95,89,99,100,100,100,110,105,102,104,96,86,100,112,100,101,88,99,100,90,95,112,91,103,102,98,94,105,104,89,104,101,95,99,83,93,104,121,109,96,94,91,93,91,93,99,115,95,102,95,88,102,111,108,95,106,101,106,100,120,84,111,103,113,92,107,96,109,108,100,95,111,90,72,91,102,100,87,100,114,100,108,91,98,105,100,100,97,87,117,95,93,98,102,100,102,98,95,97,94,112,93,91,92,103,92,98,85,102,103,117,90,98,86,99,99,107,93,94,100,101,107,96,91,97,89,105,86,95,100,105,92,107,95,101,88,97,87,96,105,117,99,100,95,96,95,105,100,89,93,98,102,95,92,98,99,98,97,100,106,98,91,92,83,101,97,113,89,106,95,86,105,100,98,91,106,103,96,102,100,85,114,102,91,102,109,105,101,106,96,106,94,94,92,80,98,90,94,111,98,96,97,94,100,92,98,101,96,117,99,87,115,97,90,91,95,111,103,89,96,107,88,99,99,90,89,111,94,95,101,93,98,98,103,97,97,102,84,89,94,108,102,111,93,105,96,94,95,101,98,96,92,117,92,93,91,101,89,108,105,96,101,103,95,118,98,94,104,105,97,113,73,98,101,87,102,108,96,83,115,98,101,104,111,104,98,106,95,107,88,104,92,107,102,92,104,114,99,84,95,81,104,99,97,116,95,102,94,99,95,117,97,125,98,103,96,94,100,81,95,108,96,84,98,101,92,92,101,96,96,97,98,103,103,83,98,102,98,96,95,107,99,102,90,107,97,96,101,99,92,102,115,99,90,101,110,98,107,89,100,99,94,90,87,105,102,106,91,94,94,101,83,96,101,97,98,97,103,91,112,82,93,89,102,100,100,96,105,99,107,92,113,99,103,88,103,87,95,96,94,107,111,106,99,106,105,102,84,103,88,94,94,97,82,95,106,99,94,91,83,96,99,92,97,108,107,91,90,98,102,105,102,93,88,97,104,117,99,102,109,100,99,96,96,101,97,94,92,65,94,95,94,98,104,106,90,84,97,87,106,96,79,103,104,101,99,97,98,99,101,97,106,112,104,78,89,88,98,90,98,94,81,102,101,103,105,94,111,69,104,98,92,93,94,103,103,106,99,95,100,90,102,95,96,90,85,102,95,101,83,97,103,109,82,100,108,94,116,101,98,100,105,108,97,99,107,89,94,104,98,97,103,95,117,92,97,90,92,93,114,101,98,83,99,96,96,106,103,103,97,100,109,99,101,104,87,77,96,103,89,88,102,93,109,79,90,97,91,94,91,91,103,96,100,105,109,93,87,86,91,110,109,95,98,93,107,114,108,91,100,98,133,104,87,110,90,98,106,105,101,97,113,88,96,105,93,102,109,112,104,92,99,102,106,108,105,104,101,98,97,96,77,98,113,97,98,99,91,88,106,92,108,85,109,94,120,102,107,91,98,104,87,100,94,105,100,91,91,91,101,94,93,98,91,89,90,91,102,91,95,91,95,85,106,78,98,97,103,83,98,94,98,103,102,85,94,76,96,103,99,96,97,121,97,89,99,94,100,87,103,92,100,94,100,97,94,102,102,106,113,88,81,94,102,94,101,96,103,102,88,105,100,103,108,99,101,105,99,97,110,113,96,99,81,89,109,93,102,91,88,93,105,73,107,99,106,94,97,103,89,99,131,94,102,106,93,84,87,97,98,101,99,100,99,105,96,100,102,97,107,94,98,94,99,89,95,102,98,80,100,98,93,92,101,105,93,101,104,91,101,102,92,93,96,96,102,99,96,95,92,103,105,100,90,106,100,101,113,93,109,107,108,93,106,112,103,100,101,109,101,93,106,102,99,102,112,101,99,100,102,101,92,83,88,96,92,102,93,101,115,102,101,98,118,104,113,101,106,94,106,97,106,111,73,108,110,112,106,95,88,95,97,107,97,99,96,101,99,110,98,95,104,80,102,79,100,101,104,89,101,90,101,91,113,98,126,106,100,96,100,97,100,99,101,101,102,97,101,91,89,108,106,86,88,97,105,105,95,102,96,93,96,92,100,103,102,93,64,101,102,92,105,93,107,98,104,96,96,95,87,91,105,98,98,99,112,92,73,94,92,106,94,98,111,94,110,100,100,108,99,98,109,100,90,94,105,129,98,95,107,109,96,105,113,99,103,117,93,70,91,101,101,101,99,98,87,99,102,101,106,98,101,100,93,108,96,102,87,97,105,91,104,96,107,102,77,91,82,94,99,97,101,103,96,109,108,91,90,94,89,104,102,81,87,98,98,98,108,101,101,94,95,84,85,106,104,89,98,96,101,89,97,92,100,92,95,104,96,94,91,94,90,102,104,100,91,107,94,96,105,101,91,101,101,97,98,109,103,99,90,99,85,94,91,104,101,96,102,105,112,105,102,101,87,102,104,105,90,96,86,103,99,104,96,99,104,104,112,108,95,104,92,93,107,106,94,101,103,88,90,86,91,105,92,101,85,107,102,97,98,64,109,95,101,91,85,97,125,93,110,94,94,83,97,101,103,99,104,85,91,120,116,100,90,101,91,97,103,83,94,80,102,95,102,112,89,104,112,84,110,107,96,97,100,99,94,106,84,99,94,98,102,86,98,75,102,106,99,98,96,118,98,106,92,90,96,97,83,93,96,85,97,83,104,90,112,83,98,102,78,91,87,98,94,95,100,119,97,88,92,91, +386.07144,108,96,87,107,89,86,100,78,104,91,92,84,100,100,100,103,88,113,64,94,93,105,98,96,102,104,94,92,89,98,93,96,103,112,87,97,101,92,99,98,96,104,98,92,87,103,109,100,99,100,98,99,116,79,112,78,100,91,98,111,93,93,87,89,93,98,87,103,111,109,105,100,96,90,88,102,91,108,102,114,92,92,110,89,98,95,97,98,83,110,91,105,103,98,99,105,105,92,82,103,109,88,93,84,91,114,101,87,93,91,86,106,108,111,103,105,104,97,105,97,94,97,91,102,98,111,102,100,91,103,87,116,100,107,104,99,95,90,95,102,100,85,101,87,104,96,113,94,81,84,99,97,104,86,91,108,75,98,102,111,104,100,104,86,92,89,99,100,97,99,90,105,94,95,125,101,94,90,97,109,97,103,82,97,104,101,99,97,135,92,100,106,93,108,87,90,84,104,109,94,102,107,100,99,94,104,95,97,118,100,101,99,96,84,101,103,96,99,92,103,92,91,91,110,87,100,104,91,101,92,90,103,105,96,111,102,117,89,95,106,101,105,93,109,91,106,100,92,106,81,100,97,91,90,113,104,83,96,98,100,82,100,87,108,94,102,95,86,92,100,107,98,96,95,101,89,100,102,88,96,107,92,91,99,92,95,103,99,93,93,86,98,109,91,97,90,96,100,90,112,94,100,99,110,84,94,98,91,91,113,89,110,104,101,91,112,101,94,92,90,114,102,91,102,108,97,102,100,105,101,86,89,116,99,95,101,88,75,88,94,87,77,93,105,97,111,103,101,97,105,94,108,89,96,109,93,98,98,98,91,90,88,75,91,89,96,95,76,106,104,88,104,113,106,111,100,98,78,98,106,103,102,94,100,99,99,104,104,107,89,92,120,93,107,105,96,95,118,103,112,101,95,92,99,93,65,87,95,96,101,91,100,104,100,99,89,99,94,105,91,84,114,100,108,103,84,81,87,75,91,88,87,111,95,112,101,105,104,90,98,104,102,95,105,97,92,93,88,109,106,100,95,97,97,88,97,111,108,95,87,94,99,98,99,93,106,106,111,95,92,105,121,95,102,101,101,104,96,99,97,87,116,107,107,101,88,97,94,95,91,98,87,95,104,92,91,94,98,99,100,100,113,113,101,93,106,90,91,108,98,91,96,108,102,104,109,88,105,103,103,102,100,103,95,108,95,102,96,107,102,87,104,96,94,98,80,95,100,95,101,85,85,116,100,108,103,107,101,114,101,103,101,102,110,104,95,108,102,95,82,87,96,84,90,104,98,88,85,115,100,92,89,104,97,99,93,84,104,85,99,93,98,97,97,84,100,97,97,74,88,103,101,105,116,104,97,100,98,108,103,105,86,98,104,85,98,94,106,102,99,85,90,117,89,109,96,110,94,97,104,91,108,115,94,96,90,109,101,103,97,97,105,101,106,96,106,105,71,90,94,93,109,98,103,86,88,99,107,92,85,93,112,99,108,102,99,108,98,103,110,93,117,98,104,86,81,99,94,104,101,105,103,102,104,99,92,96,102,102,82,109,116,95,99,95,89,102,97,112,102,101,101,92,103,105,101,100,99,104,105,104,82,96,78,95,86,101,90,98,106,77,108,97,91,94,101,96,101,95,87,103,100,104,98,104,91,109,97,92,106,91,118,104,97,103,106,98,96,102,93,102,93,97,90,109,105,103,100,99,88,76,78,88,90,96,99,90,106,100,95,107,86,93,75,92,74,75,99,101,95,95,100,104,93,99,96,110,96,97,91,104,113,105,104,101,97,94,96,113,92,96,97,99,120,86,114,115,92,99,96,102,108,96,92,104,80,100,99,96,94,114,100,96,107,99,96,88,101,101,105,96,93,104,98,95,101,95,114,98,110,97,103,99,80,78,103,94,91,107,87,94,95,101,94,106,101,96,98,90,107,104,87,95,96,91,92,94,102,105,107,104,101,92,96,89,90,76,105,96,121,94,94,93,97,97,91,111,94,104,96,95,99,97,94,98,107,92,96,91,100,115,82,73,93,101,105,89,109,89,92,104,99,104,109,105,98,83,101,108,102,107,95,103,78,91,106,95,103,96,101,104,105,101,101,103,74,101,87,94,96,92,97,86,101,101,96,84,108,93,102,101,108,85,94,117,92,113,105,100,98,116,92,88,106,106,109,87,95,96,88,105,86,98,85,91,110,103,96,87,106,94,84,94,91,108,87,96,89,104,90,57,96,94,102,102,111,95,91,96,86,103,116,97,97,92,96,105,106,92,83,103,87,98,100,87,106,74,108,81,100,83,100,98,98,100,93,100,94,104,100,100,108,106,91,95,100,98,97,118,96,96,89,117,108,98,88,105,98,108,81,101,98,91,102,90,95,85,92,93,98,100,94,93,98,91,99,87,97,96,102,108,114,104,89,93,109,97,88,100,104,90,89,95,90,95,104,105,113,94,87,91,77,95,101,105,106,97,91,108,102,97,103,98,105,92,95,102,105,124,93,88,91,100,104,101,112,98,98,104,85,94,98,105,98,74,91,110,91,94,96,94,109,96,90,99,117,93,84,112,95,97,116,96,91,94,97,100,103,90,107,102,103,96,107,84,94,109,88,100,94,104,100,102,94,95,99,105,110,85,100,111,91,104,98,110,108,94,105,105,93,113,109,107,104,95,94,103,100,135,79,104,105,97,109,100,101,102,101,99,128,98,106,112,113,90,102,96,71,95,119,94,92,105,118,92,100,109,105,100,105,116,118,96,106,109,111,94,97,104,94,96,100,101,105,107,108,90,117,95,109,88,106,95,100,114,99,103,103,95,102,88,94,94,98,112,99,91,103,92,104,105,106,114,102,91,99,104,100,105,98,98,98,95,111,99,109,100,119,111,106,91,103,112,116,91,95,99,100,120,103,116,105,101,120,105,93,99,107,122,95,103,114,95,64,111,102,101,117,108,102,96,110,110,112,108,107,106,110,104,92,100,93,100,104,104,119,79,110,95,102,92,97,99,88,110,89,96,95,108,80,106,95,92,102,96,102,92,111,100,100,87,100,116,101,105,101,94,96,100,93,100,102,94,86,91,79,105,100,95,114,101,104,95,94,102,108,112,99,108,107,114,106,98,108,97,98,107,91,96,101,94,97,98,80,87,92,90,108,104,87,103,104,101,105,100,96,102,97,100,98,109,93,101,104,106,95,92,82,108,107,96,95,92,96,95,98,108,95,105,115,110,92,90,104,88,82,106,90,118,101,93,108,102,94,104,89,104,113,99,93,103,95,112,101,104,84,95,104,105,92,100,90,98,104,132,87,80,110,102,100,98,99,71,85,107,101,102,109,91,94,90,111,101,92,97,105,105,95,95,103,82,100,89,97,90,109,90,118,97,109,101,99,97,103,113,90,101,95,120,103,108,80,111,114,103,94,96,94,102,116,93,82,99,92,97,108,117,106,101,94,100,110,94,87,108,97,113,102,91,98,109,109,93,102,90,102,90,92,98,96,96,101,96,101,105,99,87,97,75,100,104,130,105,121,116,117,97,104,105,108,109,115,103,91,104,99,97,103,102,103,104,95,107,91,92,109,107,100,96,95,94,107,93,103,105,100,110,92,106,93,94,98,100,107,111,93,103,105,107,100,97,92,115,97,102,96,103,95,104,111,97,112,119,98,96,94,105,94,106,104,95,107,97,101,98,112,109,77,101,93,93,102,102,129,109,103,112,91,96,85,67,91,85,101,105,86,93,89,100,88,102,99,117,105,101,94,99,96,107,113,100,88,96,101,100,98,118,87,110,100,90,117,100,117,103,100,102,105,100,99,109,94,102,97,96,102,108,97,93,121,95,104,107,97,93,105,102,101,108,95,109,103,89,107,104,94,113,111,92,97,96,96,92,93,104,110,102,101,103,93,113,94,104,94,110,102,91,117,113,101,89,102,104,97,100,80,102,101,114,94,104,101,93,111,98,100,115,114,95,95,100,116,86,101,119,109,97,103,92,93,110,103,86,104,115,103,119,94,112,121,103,101,98,111,110,108,94,102,109,99,121,114,93,112,83,86,89,97,111,98,96,111,98,91,87,108,93,96,91,93,113,106,109,109,98,108,87,105,94,109,98,112,90,101,109,98,100,105,110,110,122,89,124,109,97,99,107,107,98,100,109,94,91,101,89,92,106,104,100,102,107,100,112,105,104,107,104,100,98,100,79,100,117,96,87,106,100,98,108,95,107,98,98,99,103,106,109,87,108,94,107,104,96,106,88,91,104,97,79,110,88,102,80,97,106,90,114,95,92,98,100,102,105,102,92,101,97,94,97,108,102,98,113,113,104,110,81,104,92,109,101,69,87,88,105,93,102,101,107,100,77,113,103,99,95,91,87,93,109,105,101,105,103,106,78,97,105,108,110,105,97,99,109,112,105,94,101,101,96,104,103,100,110,99,97,121,95,111,109,108,85,88,96,102,103,91,100,85,129,108,100,91,100,109,101,95,85,96,91,99,96,90,107,115,97,113,114,101,105,91,90,92,94,98,68,95,84,105,98,96,88,90,96,97,102,90,116,110,86,83,89,102,63,94,106,103,106,104,88,79,92,96,100,103,95,113,105,115,102,104,104,95,97,104,97,112,109,107,93,98,124,94,104,92,100,96,110,94,100,100,97,105,118,99,101,96,106,105,101,103,88,86,75,98,105,87,99,102,95,96,104,106,101,89,112,91,104,98,115,94,103,99,84,95,93,102,88,99,95,111,95,99,106,91,81,86,100,102,105,95,86,90,93,95,93,115,107,91,99,99,108,78,102,103,100,92,115,108,96,112,105,83,109,115,105,82,106,103,94,113,98,93,96,104,106,96,80,99,97,63,102,93,107,104,108,98,90,105,113,96,106,93,88,87,101,116,109,83,99,100, +386.21149,78,95,95,100,106,103,86,87,90,101,91,106,84,85,104,87,99,113,101,97,63,106,99,88,99,92,124,85,97,105,86,104,87,90,106,104,101,94,108,104,89,112,89,88,87,114,100,96,95,104,108,88,103,87,90,80,97,92,109,87,87,94,98,95,94,98,98,107,98,77,96,97,94,105,98,110,92,85,101,110,96,100,107,90,103,96,99,87,99,84,104,108,98,114,94,109,88,93,104,100,97,118,87,98,93,103,97,99,99,92,107,85,99,95,100,91,101,109,101,92,105,106,94,108,96,99,91,79,119,95,106,104,90,99,96,99,84,119,99,96,94,99,86,96,99,99,96,97,100,100,81,88,103,94,98,90,96,96,97,96,89,94,101,104,86,95,103,107,104,82,97,115,78,90,110,104,91,87,105,101,101,98,113,101,124,98,98,93,102,87,84,98,105,77,88,101,94,101,101,110,98,93,101,109,95,106,98,93,109,110,86,103,90,91,105,89,107,102,98,87,98,96,96,91,100,101,95,93,93,106,94,91,92,104,95,95,94,89,100,99,94,105,97,92,95,96,113,99,110,94,104,101,101,106,107,87,96,100,92,102,91,92,86,90,88,101,95,93,99,101,96,92,94,98,99,100,95,103,88,109,92,95,99,106,105,95,80,92,95,95,81,95,105,100,105,103,96,110,97,99,103,102,92,102,91,102,98,106,102,103,91,98,96,108,95,90,103,98,104,99,82,86,99,106,108,88,80,96,95,95,104,85,103,114,108,98,98,97,92,99,79,104,103,92,110,108,96,101,96,109,88,106,96,102,99,101,101,104,98,96,103,99,93,86,83,93,95,104,76,95,76,96,98,93,94,102,95,91,112,92,103,103,100,99,88,96,96,84,96,91,104,98,90,99,108,94,106,78,100,106,86,90,96,102,83,88,93,97,98,96,87,92,95,95,100,94,92,90,103,98,100,114,91,104,99,98,89,105,91,103,100,96,112,88,98,102,96,91,94,95,103,97,102,97,89,86,87,97,95,84,84,92,101,106,100,65,105,94,109,99,115,97,105,102,118,100,86,103,105,108,99,108,107,94,99,118,98,102,97,94,100,102,100,103,93,110,102,106,108,114,101,112,105,93,99,100,105,107,99,87,110,96,98,97,97,101,111,84,99,84,106,101,86,97,100,97,91,99,101,87,122,90,103,93,92,98,94,109,96,95,87,110,99,80,81,107,102,112,98,102,86,109,81,96,100,93,80,89,94,108,96,110,93,96,91,101,109,97,86,111,113,100,84,100,100,102,98,101,94,87,87,99,96,104,97,90,86,97,98,106,98,100,105,80,94,104,104,101,100,99,98,97,86,93,95,123,87,95,102,102,103,105,95,102,101,106,98,101,88,85,102,99,88,89,92,108,83,96,99,99,95,99,98,87,99,91,87,95,96,92,94,98,101,96,96,104,94,105,93,106,105,90,97,96,92,79,92,99,95,108,90,96,111,96,108,100,99,104,88,109,90,97,92,97,94,103,99,106,109,99,110,91,102,94,82,100,106,109,77,92,98,117,115,105,87,89,88,92,100,91,108,88,106,99,100,94,86,100,95,81,97,91,99,105,94,93,103,104,93,97,101,101,96,96,89,88,91,109,82,106,86,78,109,92,97,103,105,70,92,106,88,97,97,100,86,103,107,112,101,86,107,95,96,81,97,99,91,109,91,100,100,95,103,111,100,93,101,101,96,96,99,106,105,96,129,103,91,100,87,92,98,95,94,93,90,101,105,85,95,103,94,101,101,87,100,108,106,102,96,98,91,96,102,94,102,83,102,97,101,105,95,102,95,93,97,113,103,106,95,81,100,92,97,93,103,99,100,90,107,93,94,89,92,105,102,99,105,117,95,95,85,97,104,87,100,98,97,98,94,98,93,118,108,95,97,102,102,88,98,103,89,95,75,95,90,97,105,104,112,105,88,91,106,98,101,101,56,104,102,93,102,107,93,104,95,93,97,88,96,91,104,112,82,103,96,98,83,102,102,98,96,105,97,124,97,102,102,102,93,88,90,101,108,93,101,90,96,106,88,94,86,97,108,93,106,98,97,104,96,101,92,98,84,96,103,97,109,97,86,64,105,107,105,100,91,79,96,102,95,100,103,112,108,90,93,98,91,92,102,85,94,98,100,105,103,93,99,90,97,100,90,95,92,97,103,99,107,97,89,104,99,112,84,91,91,97,93,102,92,88,92,109,101,111,94,105,91,102,98,109,101,72,104,96,95,76,95,94,97,95,95,102,96,74,109,100,114,94,82,92,94,106,103,96,103,88,104,104,102,98,106,87,91,87,94,88,92,96,98,102,97,104,116,107,106,90,104,111,100,96,96,97,99,100,88,96,113,82,102,96,102,86,90,94,97,94,85,93,92,96,91,96,93,107,92,93,91,87,97,105,95,99,112,91,102,84,106,102,107,109,95,91,97,103,102,90,92,101,106,87,106,75,96,88,95,100,87,94,101,84,100,86,110,96,101,95,109,94,91,94,105,103,98,92,83,82,103,93,97,109,98,97,90,80,103,97,88,101,116,74,98,97,94,97,101,98,94,89,104,88,101,94,86,100,92,101,98,106,94,84,93,84,101,106,100,105,106,100,97,99,106,84,100,95,101,104,94,100,92,105,91,106,99,107,96,78,101,100,98,105,96,106,109,105,99,92,109,94,101,113,105,94,93,121,95,99,100,103,91,87,107,104,106,101,107,83,95,70,88,97,100,97,100,102,106,113,95,92,84,90,108,99,100,96,80,89,106,107,106,97,98,106,99,102,108,92,106,97,98,93,102,93,110,88,111,90,95,98,103,104,93,114,91,90,104,94,93,97,87,109,94,101,92,103,102,77,89,102,93,106,109,104,98,113,93,96,97,85,90,100,97,94,110,110,101,103,94,87,112,103,95,100,97,94,87,99,96,98,104,92,105,102,99,102,87,101,92,88,102,97,98,97,73,99,105,109,100,96,102,106,100,99,98,85,105,95,101,103,95,98,109,102,100,93,91,97,94,115,98,98,97,103,100,105,94,102,112,94,98,126,97,110,110,107,85,86,103,103,103,94,102,105,107,92,106,98,102,109,98,92,100,94,112,94,94,94,99,92,107,89,104,100,107,104,94,100,93,96,95,107,112,101,100,98,115,108,95,95,109,105,94,110,95,100,94,107,81,99,106,95,112,106,96,96,96,95,105,96,94,106,91,105,94,99,84,99,101,113,109,102,72,92,104,109,103,100,95,93,105,96,106,94,103,100,97,95,106,110,100,101,98,105,100,111,106,99,94,69,91,93,100,75,103,98,92,99,95,102,103,101,88,99,93,96,101,98,102,105,112,106,93,101,94,113,109,105,109,96,95,103,114,109,93,106,96,93,102,91,87,99,80,88,99,103,93,106,99,98,91,101,100,116,82,104,101,96,102,99,99,98,80,115,99,99,91,97,121,107,88,96,109,116,100,95,101,104,67,102,100,92,113,101,108,96,112,100,113,102,89,96,101,98,91,100,91,102,106,87,80,95,101,105,102,98,100,88,105,104,118,102,107,101,101,88,108,102,105,102,105,98,111,97,103,109,101,108,99,128,94,98,94,112,91,90,99,106,105,90,97,105,99,94,106,100,103,101,95,84,100,107,98,97,89,107,83,111,115,90,102,95,106,95,97,108,100,100,110,104,103,102,92,100,101,103,91,87,111,97,67,95,99,95,101,97,94,95,105,89,104,102,98,100,93,92,99,105,92,102,106,113,113,102,92,106,97,94,101,99,116,97,99,99,100,106,124,95,110,95,98,96,104,78,96,99,93,106,72,96,89,107,107,98,75,95,107,104,98,101,96,109,99,93,88,107,99,106,98,94,89,99,92,93,107,88,106,66,111,87,96,102,99,100,88,95,106,96,100,105,102,94,93,114,106,108,97,106,104,109,106,95,84,101,93,94,110,100,97,92,100,91,102,99,83,103,99,97,101,105,100,119,99,101,78,101,91,103,97,107,96,95,106,97,105,108,101,97,99,96,94,94,91,97,102,97,102,99,103,104,101,98,94,102,88,95,92,88,101,87,77,99,102,94,96,96,102,106,95,98,97,94,113,83,109,109,91,94,109,107,93,94,101,92,97,99,97,95,98,97,94,90,105,96,102,94,99,99,108,95,87,98,90,99,99,96,88,90,103,102,101,96,105,108,103,114,105,97,105,91,100,110,105,95,92,101,93,105,93,97,109,101,91,96,102,107,98,104,101,93,88,101,94,98,109,102,73,105,95,81,93,101,82,101,101,98,106,91,94,96,93,104,103,83,105,105,117,94,95,98,96,119,98,95,101,94,92,93,100,99,95,105,91,115,110,110,87,102,102,104,104,81,99,107,108,101,102,96,91,96,95,99,97,93,103,90,107,94,91,87,98,99,91,95,104,96,109,102,91,99,106,108,84,96,99,93,100,98,92,96,106,96,101,83,87,104,107,106,114,102,102,91,95,94,98,92,80,107,76,108,102,92,108,88,100,115,98,79,94,106,112,84,107,100,107,111,111,95,102,102,90,106,113,109,101,93,112,96,98,106,95,98,92,89,105,98,109,103,101,92,91,104,105,105,100,77,82,89,104,106,85,105,113,112,94,108,93,99,95,100,97,92,98,91,105,117,95,100,108,92,101,106,96,88,106,67,100,97,96,112,95,101,106,92,104,114,108,93,110,93,96,97,91,129,83,98,80,95,102,103,92,87,116,89,87,91,90,79,86,104,108,101,103,118,91,109,106,99,109,97,86,104,94,79,95,103,97,99,92,94,95,88,102,92,109,102,92,93,103,94,103,88,101,108,93,109,100,105,84,91,102,87,90,96,98,99,85,94,92,106,113,90,90,102,89,101,105,100,98,99,88,86, +386.35153,114,110,78,94,87,92,98,106,98,101,81,95,77,98,95,111,82,97,98,84,96,107,80,94,96,100,99,106,91,95,91,110,101,90,94,83,104,89,96,111,110,99,92,94,107,109,97,108,109,103,99,83,97,107,96,101,97,94,101,104,95,104,95,107,104,108,103,95,110,82,103,94,87,94,96,89,107,93,90,94,100,93,101,108,100,83,96,84,116,88,103,89,95,103,101,98,91,95,97,97,99,93,90,92,99,106,92,101,111,103,85,96,91,86,99,112,111,93,101,98,91,101,102,99,103,122,102,87,70,108,102,112,92,101,99,99,97,114,98,90,104,95,90,87,97,102,78,115,89,110,93,93,99,91,93,105,104,94,99,99,88,85,112,93,94,93,97,101,90,100,100,92,96,96,106,100,96,91,94,100,120,91,111,97,93,104,95,87,110,106,99,103,86,106,96,92,90,90,81,96,94,104,96,93,93,88,110,106,90,98,106,101,90,104,105,96,106,106,98,105,91,108,93,98,95,93,100,109,102,93,103,84,92,102,101,86,87,100,104,105,95,96,97,109,98,111,99,110,97,91,106,105,100,95,92,87,102,111,91,122,98,101,94,107,93,101,110,89,101,88,96,96,100,110,116,104,92,102,99,108,94,101,91,101,97,80,92,94,95,98,95,106,102,95,94,99,104,99,82,105,99,94,106,100,93,95,94,101,97,88,89,113,102,92,93,112,101,106,90,104,94,98,110,95,100,92,103,88,101,105,106,94,95,90,130,89,109,107,93,104,90,97,110,110,100,119,101,119,120,97,101,103,106,93,99,104,98,106,114,103,79,99,94,89,96,95,93,107,95,95,99,87,82,103,99,91,88,97,106,102,88,106,101,89,98,101,83,87,104,88,104,88,94,102,107,104,78,89,101,108,86,104,95,96,100,87,108,99,100,90,97,96,98,102,108,92,94,108,96,95,99,102,75,103,95,87,97,93,95,92,98,104,96,104,83,96,103,96,96,97,91,96,74,98,104,96,103,91,91,112,92,106,91,102,98,113,97,85,109,100,98,89,96,97,93,97,102,105,99,83,103,99,114,112,100,103,114,103,109,89,101,112,100,88,94,101,92,109,99,97,93,101,99,97,92,94,88,109,102,105,98,90,100,104,96,86,101,101,82,113,105,105,108,96,100,105,92,99,97,80,96,98,101,94,99,98,101,97,114,96,92,91,92,97,100,103,104,97,90,102,94,109,102,97,105,97,101,105,109,99,96,101,98,88,94,95,104,96,95,98,95,98,107,95,106,101,96,87,104,94,96,97,104,94,93,105,101,100,92,98,104,97,98,107,100,99,102,104,101,97,96,99,90,99,111,105,99,103,110,96,87,95,105,106,91,97,99,111,96,106,101,96,99,98,110,85,72,92,92,91,109,105,101,87,93,95,100,97,108,108,99,104,92,100,92,107,87,119,111,86,108,98,110,121,103,95,106,101,106,94,83,95,105,90,99,111,112,101,97,100,97,101,97,101,87,96,110,104,93,99,106,102,104,94,86,107,107,102,114,105,100,107,109,91,87,87,104,94,104,96,103,100,92,99,108,108,92,100,94,95,98,110,109,94,91,104,92,104,96,99,87,106,85,79,93,101,96,83,103,108,101,96,94,97,97,103,91,106,96,105,103,97,95,98,96,97,111,98,116,91,91,88,91,102,92,98,93,104,85,92,91,95,90,102,97,101,88,99,115,106,91,75,94,98,89,114,94,98,87,99,96,97,109,91,99,108,101,82,101,73,96,89,100,104,96,104,104,104,102,97,99,94,106,104,92,97,95,100,97,96,110,92,96,94,94,104,102,106,117,96,104,104,94,101,103,94,101,94,106,96,105,106,101,90,99,91,105,89,95,97,100,96,105,98,103,99,100,91,98,105,77,106,117,99,97,85,98,93,102,92,100,93,99,97,100,110,96,100,79,116,107,107,108,99,109,94,93,82,109,91,98,100,98,104,77,84,98,97,92,95,105,116,100,100,114,97,86,99,94,100,98,101,101,92,112,92,95,107,92,89,109,100,101,97,104,100,83,113,81,94,89,102,108,100,88,105,94,102,87,99,100,94,95,98,89,67,96,106,98,82,89,103,91,105,101,99,95,101,103,113,100,106,92,93,104,92,107,110,93,96,113,89,91,104,100,86,109,92,93,89,105,91,98,98,110,88,76,92,91,88,83,97,101,96,100,83,109,99,101,74,97,107,78,91,102,100,91,96,102,113,92,101,114,100,96,85,101,106,83,103,103,99,94,94,91,104,110,110,84,113,86,107,88,110,93,102,101,101,97,101,106,99,104,98,93,100,95,91,105,104,100,98,112,96,99,98,109,95,104,100,96,114,94,99,106,101,95,105,102,93,92,92,104,101,84,98,74,94,102,109,105,91,95,103,99,100,78,99,92,100,88,104,83,70,105,92,94,89,91,112,96,87,85,92,96,105,103,93,102,119,100,99,92,91,99,104,96,87,108,96,97,105,98,94,109,97,102,91,109,97,102,104,102,95,95,87,113,108,101,93,100,96,96,113,115,91,98,108,101,97,101,108,96,99,101,96,102,103,92,99,110,102,92,106,100,103,84,99,93,96,102,107,117,104,99,98,100,103,102,108,96,92,104,84,108,102,103,99,101,95,103,85,113,90,87,97,96,111,98,91,106,96,108,98,92,100,121,96,100,97,98,110,99,115,101,96,77,92,99,109,94,98,102,81,89,87,101,100,108,96,105,93,96,84,111,107,121,103,85,96,100,105,96,87,105,110,100,90,99,102,91,108,96,98,98,92,101,99,104,92,104,99,107,98,90,98,98,101,87,102,114,113,101,100,101,75,112,102,102,93,100,95,101,103,106,101,101,96,112,96,95,113,109,98,96,101,94,108,111,111,100,102,113,110,100,98,100,102,106,100,62,98,108,89,92,106,99,81,114,96,100,90,85,96,84,108,103,97,101,106,100,102,90,98,101,95,103,102,101,92,102,91,99,113,108,98,102,107,89,97,93,105,106,100,117,97,92,100,92,97,93,101,105,93,100,112,98,87,108,99,102,100,99,101,95,97,103,107,98,108,105,101,107,101,109,63,110,100,96,102,94,92,103,98,110,92,95,103,102,98,91,102,101,93,100,96,83,107,90,97,98,89,88,108,104,105,103,102,91,102,104,95,94,97,94,107,112,107,96,96,107,98,104,103,94,86,102,97,68,102,96,110,110,121,98,115,99,105,104,101,97,97,109,102,107,87,93,87,100,92,98,99,105,105,102,107,94,83,119,79,99,94,100,115,96,101,98,97,97,97,105,106,98,92,101,103,99,98,98,97,99,114,95,99,93,109,97,89,97,109,106,102,102,91,107,99,95,95,97,104,102,99,85,108,108,96,104,102,88,96,94,101,105,107,79,102,88,100,109,93,98,101,100,101,91,98,105,99,92,96,99,101,90,98,105,97,101,99,83,91,112,108,93,96,94,90,94,89,125,104,103,107,104,104,104,96,117,112,91,96,110,98,120,108,100,101,94,100,92,110,94,116,105,99,98,100,92,97,98,110,107,116,96,99,105,98,91,100,98,103,98,100,107,96,106,102,115,113,99,105,101,95,101,99,105,90,104,113,97,115,105,111,114,115,113,104,94,107,88,108,99,105,94,94,91,105,80,111,98,102,106,109,93,107,98,74,115,87,95,109,102,98,101,108,103,96,98,107,102,105,92,104,104,96,102,102,106,92,100,101,104,101,98,96,102,96,95,106,100,110,93,94,84,92,94,105,106,92,101,92,98,99,90,100,100,121,100,109,104,103,101,90,117,113,99,113,113,93,107,100,90,104,106,115,94,106,105,100,104,100,97,97,102,100,102,92,104,112,104,103,101,109,93,92,98,97,110,97,95,117,109,115,98,100,98,107,92,100,100,89,112,92,107,97,103,103,99,108,110,102,107,116,82,97,103,100,108,96,87,115,96,113,87,105,99,102,95,101,102,118,96,106,107,103,103,108,99,96,100,112,104,94,88,96,104,102,107,98,89,102,106,93,107,93,101,102,92,108,93,87,102,90,106,101,97,111,85,100,82,100,103,98,80,100,73,99,113,109,108,111,103,93,106,108,91,108,102,87,91,109,97,107,96,94,92,113,102,103,95,97,86,93,84,106,98,100,96,108,105,95,94,102,111,90,103,97,79,91,102,98,97,99,100,99,90,92,106,100,93,94,102,101,100,79,95,101,99,96,94,97,109,106,109,103,100,103,104,102,92,83,99,84,102,88,106,104,99,101,97,103,109,100,94,97,102,111,91,89,102,109,100,102,94,84,109,93,95,101,91,108,112,92,99,83,94,102,105,96,106,108,96,106,89,102,85,96,89,101,103,95,105,109,96,104,109,102,89,99,108,101,93,89,98,95,102,101,95,117,101,98,108,86,83,101,103,96,94,104,95,111,97,105,113,94,103,90,91,95,97,95,83,93,106,101,102,87,98,69,96,77,102,90,108,100,99,100,95,85,110,92,112,73,91,103,90,106,102,111,106,86,96,95,100,90,104,98,98,100,94,115,97,97,106,99,98,109,104,104,86,108,127,78,87,116,99,96,108,105,98,94,104,102,89,104,109,108,92,104,114,98,105,97,100,97,104,96,103,92,95,99,102,104,104,98,92,93,105,113,96,92,91,89,102,91,97,86,105,100,96,105,96,98,97,84,105,84,100,106,99,108,106,94,96,115,92,112,99,107,124,98,94,91,97,93,89,86,87,101,98,94,84,103,96,96,101,96,96,95,87,105,96,96,86,101,108,110,101,87,96,89,89,104,101,77,95,93,113,101,86,94,103,90,97,100,88,99,95,96,115,93,83,103,97,99,84,91,97,103,111,95,89,100,91,95,117,109,103,86,85,97, +386.49158,110,100,97,103,93,100,94,108,82,112,92,103,90,88,98,96,100,112,104,92,95,89,109,99,88,123,98,95,104,99,83,91,96,94,102,107,92,103,101,78,91,94,108,93,101,105,110,101,93,94,101,101,96,89,86,86,95,97,99,87,92,94,91,100,102,94,95,100,98,101,114,104,109,101,90,99,94,107,100,90,93,106,100,106,104,94,92,91,80,87,90,110,99,97,87,92,114,89,118,98,98,97,99,106,104,115,97,101,88,86,105,91,88,104,103,106,92,108,104,89,97,103,70,102,117,104,99,96,96,107,102,103,94,97,98,101,98,107,99,97,90,101,86,94,96,111,110,112,102,87,108,90,120,89,93,95,95,93,99,98,99,91,96,106,86,96,100,117,94,106,96,99,94,98,102,75,92,108,117,109,95,97,97,109,114,98,85,91,94,95,94,101,96,104,85,108,94,81,88,94,102,112,100,72,88,94,110,100,108,106,102,88,122,107,87,105,105,98,106,108,105,103,102,99,94,115,107,92,96,107,87,91,93,95,101,91,111,105,103,100,105,101,108,97,108,106,111,100,117,103,99,115,96,93,99,93,107,102,98,86,96,107,102,107,86,100,99,91,96,92,63,99,102,106,104,103,116,107,89,101,103,99,97,91,100,109,94,71,96,100,95,111,97,102,105,84,99,101,97,96,96,94,105,98,100,105,106,103,67,112,92,105,91,111,88,98,125,90,91,100,94,90,120,105,107,101,93,97,100,97,111,97,100,102,99,101,90,99,93,104,103,98,103,97,106,106,114,107,103,100,98,102,109,105,115,97,105,101,110,102,93,92,93,101,99,100,105,98,98,105,106,102,110,119,95,105,99,89,105,95,95,100,107,96,107,95,90,122,93,108,105,87,90,116,91,102,98,95,86,106,102,137,90,67,91,106,99,91,94,93,97,102,99,91,101,102,97,106,104,98,102,103,97,106,101,94,100,92,101,92,93,109,109,101,107,102,102,108,94,112,101,100,97,97,92,98,108,95,97,113,99,99,107,98,103,104,100,107,108,92,97,108,116,106,101,122,98,100,108,106,104,114,105,95,91,99,98,101,104,91,106,101,99,92,100,113,106,89,106,101,111,110,103,99,96,99,100,108,91,96,110,93,110,111,113,97,101,94,120,98,99,65,101,105,109,96,104,105,100,69,114,102,101,103,90,114,95,135,95,100,87,101,111,98,103,105,94,91,94,109,109,91,95,98,98,108,102,103,110,106,102,101,96,97,88,108,101,97,91,87,104,101,94,106,91,77,94,103,99,69,95,104,101,105,101,105,99,104,94,102,106,98,105,98,86,126,111,109,98,93,109,103,98,89,99,108,85,115,114,106,88,100,104,98,91,101,93,87,97,104,97,100,94,109,109,98,96,109,103,100,96,105,103,103,108,99,92,104,99,99,99,98,96,109,99,110,107,65,95,102,117,114,103,106,94,96,109,92,108,109,90,106,108,101,98,90,112,98,110,88,99,96,102,116,99,95,103,98,104,105,98,135,98,106,98,74,109,100,100,106,102,120,105,104,84,95,98,98,109,104,102,102,106,116,97,98,102,109,107,99,92,108,116,96,103,108,99,101,91,96,108,107,70,98,95,106,97,112,89,102,101,102,97,106,100,100,95,102,101,105,90,100,103,95,105,99,100,93,105,103,108,100,105,100,104,95,103,104,100,115,90,103,100,93,103,95,97,99,109,91,123,119,108,109,104,103,100,99,92,98,106,93,103,100,95,88,97,88,96,96,102,91,109,103,95,114,99,109,97,83,99,93,90,90,111,100,90,92,103,105,68,102,99,101,123,105,107,106,106,116,107,85,105,115,108,104,122,90,92,97,93,99,114,116,93,105,100,92,111,100,100,92,107,99,106,111,97,102,106,97,92,111,94,92,99,97,98,94,86,99,96,81,113,100,79,93,92,103,98,91,70,112,94,103,100,93,113,105,121,88,102,109,100,95,93,85,104,97,95,99,91,105,86,107,101,122,99,97,102,98,113,103,87,103,88,94,106,93,105,106,97,100,102,99,103,90,94,105,86,109,97,108,114,104,90,87,93,99,106,96,105,90,102,89,104,89,97,101,98,109,101,104,96,98,96,101,107,101,105,102,103,95,99,101,109,106,93,113,105,108,91,109,102,101,109,104,93,94,95,98,107,105,95,101,112,101,91,89,103,91,100,95,110,96,89,97,108,93,90,90,110,93,103,93,98,112,72,106,86,78,101,97,90,99,91,90,108,98,99,100,108,105,109,114,111,110,94,94,82,98,98,106,88,87,105,105,98,102,103,113,111,95,108,87,97,106,86,106,101,87,100,105,91,104,113,90,99,112,101,87,95,100,85,94,95,91,97,99,102,106,98,102,109,90,96,102,108,101,99,102,100,90,95,104,94,95,92,112,97,104,91,104,89,101,103,91,98,87,105,101,96,87,100,108,109,113,102,100,106,99,111,86,64,89,101,97,94,97,96,105,95,98,106,98,104,100,108,108,99,105,96,113,86,108,84,97,101,99,99,108,104,77,106,104,93,104,100,101,92,108,109,104,106,95,88,98,101,87,102,97,99,89,90,106,97,104,104,120,98,97,112,103,100,98,105,104,92,102,88,95,94,101,91,69,108,91,94,95,105,97,92,99,108,104,113,100,108,98,98,100,102,98,89,111,93,105,105,91,97,105,104,113,68,95,85,96,91,88,96,104,104,101,94,99,109,103,89,100,105,84,110,100,95,97,107,94,99,94,106,109,100,96,99,97,97,99,88,96,107,95,99,87,88,92,106,112,107,99,106,95,102,104,108,85,89,94,73,105,109,106,96,107,110,98,99,90,92,107,95,104,109,100,113,92,98,94,87,96,111,98,100,113,98,108,103,117,92,91,105,103,96,94,99,91,97,101,106,102,111,104,103,103,100,110,91,84,102,106,106,100,77,106,93,113,92,76,97,112,99,92,83,101,102,96,101,92,102,102,98,94,98,100,90,103,93,88,100,101,103,103,96,106,105,108,96,100,94,101,101,93,96,104,113,93,94,94,114,101,110,105,97,100,100,85,106,96,108,84,104,87,90,90,101,105,98,94,95,109,105,102,94,91,114,94,110,87,101,108,109,91,84,109,90,98,98,91,108,95,107,90,102,96,87,98,101,109,100,126,108,119,106,103,92,102,101,100,109,101,95,92,94,90,102,87,95,88,111,101,108,98,110,120,106,104,81,100,104,100,116,99,107,98,110,116,107,86,100,89,88,104,102,101,108,91,99,92,109,95,84,111,101,100,112,108,114,112,105,101,87,95,95,105,92,102,105,104,88,90,105,104,105,97,100,97,104,102,95,101,98,111,114,97,120,87,109,93,105,95,103,108,103,97,96,95,90,100,98,99,107,93,93,97,96,101,100,102,100,98,111,88,101,103,97,87,92,105,109,100,103,94,96,98,97,101,91,111,101,109,89,102,112,111,94,92,93,99,97,102,98,94,109,100,103,94,103,114,105,95,77,101,103,110,104,116,100,95,99,103,96,100,100,104,99,94,101,105,109,91,92,118,104,92,101,105,79,102,104,98,104,97,98,92,107,108,93,103,99,89,114,128,105,85,100,100,103,71,96,102,107,107,92,128,106,84,96,108,103,107,110,113,101,100,111,104,102,97,98,106,90,99,110,99,108,99,102,91,100,76,96,103,105,113,108,101,96,106,82,110,106,96,95,111,96,95,76,96,104,95,98,99,121,109,95,93,112,123,102,102,102,99,108,95,102,103,91,91,108,92,111,95,95,101,95,105,103,96,95,107,98,112,109,103,97,104,103,107,91,97,102,96,108,97,113,95,89,109,98,108,110,100,107,108,104,96,104,105,94,104,95,105,94,107,97,98,99,86,109,91,97,98,97,105,101,104,94,101,90,92,106,120,104,100,111,103,97,102,91,116,106,103,96,107,99,95,80,99,112,116,91,103,105,100,91,100,115,107,100,93,97,112,107,97,104,100,104,101,108,101,101,106,102,102,109,100,101,96,107,109,81,129,96,103,109,96,105,104,104,95,103,99,106,97,93,95,93,104,112,99,98,92,101,105,105,102,98,100,108,94,99,109,96,99,96,101,95,98,104,94,111,98,92,104,99,109,100,103,98,116,101,102,100,98,98,97,99,111,95,103,91,110,101,104,107,102,112,92,97,99,107,102,109,103,105,92,86,95,100,96,105,104,85,107,105,97,99,100,111,116,96,103,119,98,99,109,91,111,96,102,89,111,94,87,115,107,99,111,96,98,93,105,100,104,103,101,102,103,76,101,100,90,103,102,108,109,105,108,103,97,98,93,101,100,95,95,101,99,106,130,104,100,104,117,98,109,103,94,99,121,91,94,96,97,94,96,105,109,95,125,92,96,120,96,93,104,98,105,103,95,107,104,95,99,95,106,105,94,103,99,99,83,88,115,92,96,96,97,101,101,109,98,84,87,68,103,108,121,93,113,102,103,85,98,98,94,108,104,123,102,106,94,106,85,98,97,102,106,98,91,107,104,108,94,101,109,109,97,97,103,106,102,101,113,103,84,110,94,94,106,85,89,97,91,97,99,94,99,105,67,100,113,93,99,106,101,97,112,99,102,88,101,105,87,102,99,103,96,95,95,99,98,94,93,108,97,101,110,106,91,93,98,114,78,105,85,102,103,98,111,81,95,99,86,105,92,102,110,106,107,101,85,89,113,99,113,100,99,107,101,110,92,99,88,106,95,96,110,97,98,107,89,88,100,92,112,103,103,98,88,84,117,98,98,111,100,74,100,101,110,84,94,91,101,109,95,109,108,96,109,112,92,99,99,99,120,91,107,93,91,98,87,99,94,103,82,91,97,94,99,101,97,102,103,111,107,111,102,128,111,98,100, +386.63162,98,100,99,93,99,87,101,104,99,110,90,102,100,103,103,95,111,93,109,92,97,104,96,88,82,102,88,105,98,103,100,90,88,97,106,106,90,96,100,97,93,103,112,96,116,106,88,110,99,117,106,110,103,93,101,82,110,104,98,97,102,97,103,97,98,113,106,93,95,92,98,106,92,101,87,95,99,109,103,121,94,101,98,100,95,99,93,98,87,108,103,92,104,96,103,91,98,103,114,100,88,108,95,113,99,106,94,105,86,105,94,93,103,98,118,108,106,100,107,98,99,107,105,89,109,109,93,100,101,99,87,95,102,93,97,96,98,105,99,88,93,105,84,101,111,95,103,109,102,101,105,91,102,86,86,92,103,99,89,111,101,86,117,113,103,101,104,89,94,81,98,97,94,93,108,95,93,95,101,101,94,99,102,98,103,110,95,75,98,92,90,92,94,92,103,79,95,93,112,94,91,93,103,105,98,113,104,93,100,117,106,106,101,112,111,94,102,101,101,102,103,104,100,89,102,93,109,94,73,113,102,104,101,101,87,97,102,105,95,83,117,105,114,97,104,77,121,105,91,96,118,96,91,107,110,94,104,105,95,97,104,90,99,99,105,93,111,100,100,93,101,102,66,104,100,96,97,102,101,99,91,109,108,97,95,106,90,89,112,87,102,96,102,89,99,105,106,92,101,97,94,91,101,97,81,101,108,99,102,102,95,121,103,85,95,104,104,94,91,86,101,94,108,99,100,95,95,92,98,105,109,106,101,90,95,100,109,90,106,92,78,95,89,84,100,106,95,116,106,98,96,100,105,102,98,105,92,93,101,100,111,119,105,102,91,98,92,117,103,113,103,111,106,96,89,80,110,102,106,72,109,107,90,112,107,101,90,112,103,90,121,97,82,107,98,105,111,104,94,103,108,102,106,110,95,89,98,96,101,101,80,92,104,75,96,75,88,97,95,96,101,92,97,82,96,108,98,98,87,109,91,115,106,101,100,67,94,89,92,100,113,98,99,100,83,99,100,91,94,98,101,98,108,113,101,101,99,108,99,104,111,98,106,98,89,119,95,82,95,105,95,105,95,101,79,91,99,105,96,100,99,94,92,101,94,88,93,101,115,94,105,105,104,97,82,96,99,108,119,72,101,108,100,106,110,96,92,104,94,105,100,87,100,100,98,93,84,89,96,84,97,88,106,117,97,101,108,91,99,106,104,96,98,84,101,98,100,96,107,103,96,99,97,109,104,97,96,105,92,100,98,112,101,95,102,95,105,100,100,88,99,97,107,108,104,91,105,100,101,94,93,94,94,105,96,104,92,102,89,108,110,107,96,86,101,102,88,102,99,106,102,95,90,94,106,106,103,101,90,91,105,106,105,104,109,100,101,95,107,107,96,104,91,91,109,114,92,119,101,86,101,93,111,102,101,86,95,99,92,96,92,98,97,96,101,100,101,90,108,89,96,93,94,93,92,95,97,99,98,106,96,112,103,100,91,104,96,107,94,99,102,88,96,100,96,100,108,112,92,101,96,100,108,84,106,97,102,102,95,105,91,99,100,93,93,107,96,96,104,96,99,98,113,101,97,107,97,108,105,112,96,93,95,97,89,92,97,105,97,69,94,102,91,89,89,113,103,108,94,108,86,82,101,118,97,110,103,94,105,107,103,100,98,86,90,98,96,109,91,100,113,91,91,98,100,85,102,105,108,88,111,97,113,102,94,100,98,106,102,100,88,84,92,87,88,99,98,113,96,101,109,72,104,95,95,92,103,79,121,100,84,107,110,103,98,83,100,103,97,90,98,101,100,94,107,86,97,102,100,94,100,94,106,97,98,103,107,108,94,105,113,103,104,103,108,99,97,91,92,100,120,98,100,91,108,96,100,95,106,97,113,103,97,101,87,101,105,108,107,109,103,91,102,100,99,87,109,85,111,100,92,107,99,99,93,106,102,109,103,101,90,96,93,110,98,92,84,86,117,95,83,110,111,90,94,104,117,102,89,97,103,93,119,99,93,104,95,89,100,94,92,105,100,100,90,94,91,100,93,103,107,97,102,104,106,103,110,112,91,100,86,97,96,107,88,95,95,108,101,88,77,111,104,107,115,98,93,88,96,97,107,98,102,105,90,99,109,96,97,110,105,86,101,104,112,98,84,99,98,93,98,109,111,95,94,99,114,95,92,106,104,105,103,86,106,103,98,108,90,106,91,103,101,84,117,99,112,97,82,88,97,81,98,102,81,105,104,106,97,104,104,105,90,104,88,92,103,98,90,99,93,103,93,93,129,110,97,94,85,106,99,103,95,108,119,106,106,93,96,113,107,90,104,82,97,91,107,80,106,93,113,100,100,93,102,100,95,103,84,117,87,96,109,104,106,98,103,91,81,99,106,123,101,105,93,100,93,99,104,101,98,98,105,91,109,94,98,95,99,97,117,91,107,96,107,111,97,104,101,91,92,104,109,112,93,96,96,98,98,93,100,96,101,93,88,107,80,98,114,116,83,100,90,104,93,91,94,109,102,90,95,101,123,96,101,98,100,90,92,108,100,97,92,98,96,114,106,100,98,89,101,118,117,92,97,104,101,100,91,102,97,82,93,106,96,97,100,117,107,109,111,106,104,79,84,94,111,101,100,100,102,97,96,84,104,95,96,90,98,94,79,108,95,104,102,96,92,91,93,101,91,107,105,116,83,92,106,109,94,108,101,94,96,100,90,104,96,95,90,101,98,106,89,113,112,104,95,99,104,94,99,112,95,104,105,111,98,106,103,83,98,102,109,102,93,106,92,109,110,102,102,110,102,104,103,99,111,104,104,99,94,103,101,98,95,95,107,95,100,103,98,98,98,93,99,99,86,87,96,103,99,88,109,102,99,96,93,105,91,95,101,107,104,100,104,92,101,98,100,96,94,122,104,105,89,87,97,103,108,101,113,106,103,94,95,104,99,89,105,104,86,96,85,101,86,87,95,112,100,97,98,87,90,113,109,99,94,92,90,113,101,95,100,104,113,80,109,98,112,98,112,98,96,109,96,94,93,105,99,102,93,92,101,105,105,100,80,107,107,93,91,102,126,101,110,83,71,95,94,87,105,101,101,98,98,98,112,103,101,95,108,113,115,105,91,87,92,100,107,96,104,104,98,89,103,84,94,101,99,99,89,99,101,97,112,101,96,109,90,102,109,98,96,103,92,106,102,106,87,99,95,105,102,99,87,94,88,68,124,99,97,98,103,87,99,90,102,100,111,93,92,117,109,96,101,109,92,97,96,111,100,111,88,106,101,91,101,105,105,96,73,94,87,100,94,106,115,101,84,92,98,101,99,98,96,106,94,100,98,92,86,100,84,92,90,87,104,94,100,101,100,96,101,100,115,104,91,97,105,102,116,92,87,75,100,99,95,91,103,94,86,95,116,112,105,102,103,97,102,108,100,97,98,104,92,95,98,87,97,102,96,105,107,103,103,92,119,109,101,112,83,106,93,105,104,100,102,96,103,99,98,108,102,108,92,109,108,100,93,106,99,86,91,103,96,105,91,99,92,99,104,100,105,101,97,99,110,95,90,113,98,89,87,82,87,104,101,98,109,96,105,98,100,93,92,104,98,108,95,96,97,99,101,92,83,96,102,108,109,106,100,115,102,75,106,95,103,96,101,137,107,93,97,97,91,91,96,94,96,107,105,96,98,105,96,102,95,94,91,93,103,107,88,102,97,94,109,101,98,90,99,97,92,85,102,99,105,108,96,92,93,90,89,91,97,99,101,100,99,102,109,92,98,95,90,95,103,95,104,97,85,112,92,100,109,109,105,100,101,93,98,97,104,101,94,96,88,108,92,101,90,100,105,107,91,105,102,100,65,91,95,105,83,96,98,98,96,83,91,98,79,92,99,90,93,95,94,89,93,101,98,102,103,104,108,109,106,90,101,98,95,93,99,103,93,88,101,95,97,104,115,103,93,106,86,121,95,87,94,100,107,100,93,99,113,107,95,100,90,127,102,112,89,100,106,103,90,104,94,111,108,95,102,102,125,91,109,101,103,86,115,113,100,108,103,104,79,103,114,98,94,96,89,92,124,96,100,95,104,101,77,95,97,89,104,107,105,105,105,99,89,103,97,92,101,98,103,104,102,94,97,92,103,106,95,93,97,110,110,99,100,99,90,86,94,84,94,97,105,102,109,99,108,97,94,108,110,94,96,90,87,113,103,98,101,93,98,99,99,102,113,87,100,73,99,83,94,107,89,97,83,93,102,83,112,100,94,99,107,104,100,95,107,96,91,100,100,93,85,102,93,93,91,96,98,98,88,101,96,111,101,98,86,106,107,96,95,92,100,99,100,108,101,86,94,101,106,94,103,103,102,102,96,100,99,102,109,122,98,99,111,89,108,98,107,98,98,114,85,94,91,91,94,100,93,105,108,104,102,110,84,95,104,92,119,92,96,91,107,83,99,89,98,91,107,92,98,100,94,103,97,98,101,95,102,88,84,91,96,99,84,99,87,111,104,97,107,96,88,97,81,95,95,104,101,108,91,111,98,99,107,91,91,98,106,103,99,99,98,68,106,101,98,93,102,113,99,100,100,108,94,89,102,107,109,67,116,105,104,94,87,94,96,75,101,99,99,97,91,92,102,96,104,111,102,114,105,117,101,92,97,85,91,111,88,95,101,81,102,113,98,88,90,99,101,101,113,92,106,97,105,101,102,102,97,105,101,99,94,83,85,98,92,111,107,105,117,87,95,113,96,100,108,105,80,90,96,98,107,88,94,101,96,104,108,87,91,95,92,99,95,97,105,85,106,115,91,96,96,104,96,84,95,108,85,96,106,99,101,98,89,98,88,102,107,94,94,101,108,91,108,88,101,89,73,92,90,100,104,106,100,87,99,90,100,95,100,94,99,91, +386.77167,101,100,93,97,92,99,102,86,88,100,97,78,88,87,106,93,94,90,82,115,91,88,87,90,79,109,89,94,99,97,87,81,96,100,90,96,83,96,97,111,104,117,88,90,95,112,95,91,102,98,92,92,75,87,90,86,79,106,96,95,92,78,98,81,95,113,93,97,110,103,93,98,94,92,104,93,93,96,73,100,111,95,98,87,91,92,109,114,94,74,105,98,99,85,94,97,93,82,101,110,101,114,101,100,109,100,100,105,89,96,105,85,105,104,90,92,103,97,96,102,110,93,105,97,93,110,97,103,104,71,98,102,92,102,94,111,100,108,95,116,98,98,93,93,93,103,91,109,97,100,93,96,114,84,95,88,92,92,96,105,82,104,101,96,91,77,103,79,112,91,92,107,95,101,104,102,117,96,95,104,104,95,99,95,111,100,103,86,95,89,87,97,100,99,95,91,102,98,97,93,91,91,98,104,105,88,103,99,99,102,94,88,104,101,99,98,98,91,95,105,101,88,94,88,99,106,95,127,90,87,85,93,103,104,100,97,93,90,93,105,91,96,104,105,93,90,104,88,105,95,105,93,106,99,83,92,83,101,95,93,86,94,94,115,84,85,101,102,103,85,91,104,112,88,106,98,93,90,99,93,89,86,95,101,97,102,87,88,92,82,98,100,100,90,104,94,110,105,108,98,111,100,86,91,95,110,104,92,97,100,88,91,110,94,97,99,95,89,98,90,90,98,90,93,103,84,102,89,98,91,104,97,102,114,96,114,92,127,94,101,110,106,108,96,99,110,103,113,100,94,109,94,96,111,112,91,98,105,95,96,100,107,91,86,90,87,90,98,95,101,104,97,121,101,99,93,99,100,100,99,98,102,94,103,105,94,88,86,102,102,114,88,83,117,98,104,91,103,98,109,109,94,94,92,88,100,86,88,96,96,107,101,105,95,100,96,97,107,107,101,93,105,99,97,99,89,99,96,95,98,93,98,99,99,99,101,86,107,93,94,111,117,99,91,89,114,90,95,90,105,100,101,105,99,101,105,104,100,97,105,101,102,110,112,106,99,95,101,90,98,97,104,107,96,96,99,93,96,102,96,93,92,111,92,89,74,91,102,91,99,103,95,97,95,95,114,93,99,107,107,112,101,103,88,98,98,95,101,106,98,95,105,98,87,102,103,105,100,104,98,98,96,102,109,97,99,95,97,97,90,101,92,103,95,108,109,113,97,94,109,95,105,103,101,82,89,101,86,90,97,101,101,103,103,98,110,105,100,100,93,101,93,91,98,87,104,99,93,99,104,97,96,96,91,104,93,95,97,94,101,98,105,95,89,91,94,107,113,104,94,101,106,96,76,104,100,93,101,110,97,99,75,102,99,99,117,100,98,99,91,94,117,96,92,105,100,104,109,84,92,96,103,90,89,97,106,97,92,87,102,114,98,97,102,88,90,73,88,92,89,107,95,101,105,102,89,91,99,91,100,82,96,95,77,95,101,97,107,100,105,108,97,93,105,92,109,94,91,102,89,113,117,95,96,86,96,103,104,99,94,101,109,102,87,90,99,99,98,93,88,100,81,81,91,95,83,97,97,88,102,80,92,97,88,95,94,99,91,92,90,91,101,99,95,100,92,86,97,102,88,86,98,96,101,99,93,83,123,78,98,99,96,100,96,97,105,103,87,110,108,100,98,101,74,99,106,94,93,99,103,114,85,101,87,94,100,106,116,105,102,96,107,87,95,92,94,88,109,100,88,97,99,95,101,94,110,95,91,98,79,107,106,102,105,94,101,101,110,100,104,101,110,98,118,104,92,95,92,104,94,109,117,87,99,108,87,93,107,104,96,106,88,91,81,111,102,106,79,105,84,97,111,87,107,106,95,112,104,109,85,100,90,99,94,98,100,106,100,105,104,103,97,99,100,95,91,87,92,99,97,95,103,93,92,89,101,93,87,98,108,92,103,114,98,100,86,71,100,103,119,92,99,92,96,101,92,102,90,97,86,100,106,99,104,107,98,92,95,108,90,93,96,104,87,106,93,86,105,100,104,102,103,99,97,98,86,102,93,91,95,98,99,99,103,91,94,93,104,97,85,101,83,73,96,95,96,93,86,105,98,86,105,103,82,94,109,93,89,100,104,98,109,98,97,99,97,83,113,95,103,100,94,80,88,118,99,102,104,101,88,95,98,86,93,80,105,84,87,96,100,105,95,96,84,94,89,109,93,82,102,93,95,97,82,106,83,87,91,109,93,103,81,92,87,97,80,114,109,95,106,96,96,96,95,83,96,97,110,83,102,90,108,97,98,92,108,88,99,99,90,106,113,105,98,99,86,101,102,87,71,97,94,87,97,103,100,96,99,97,104,108,100,88,97,89,94,76,90,96,95,96,95,104,93,95,95,103,99,92,100,94,110,102,102,81,59,91,93,109,94,99,110,105,84,90,96,89,103,90,105,101,105,84,97,98,95,104,87,87,94,109,96,103,93,82,101,96,108,101,109,110,114,102,97,109,97,89,97,96,99,88,101,111,79,104,89,98,87,89,104,91,98,98,100,109,98,84,77,96,104,112,99,101,90,110,95,97,96,93,93,101,91,85,109,97,107,102,104,112,84,112,103,114,107,94,106,108,104,111,104,105,79,106,97,103,101,102,91,109,106,103,117,113,108,84,96,102,97,97,95,104,79,70,102,90,109,100,99,97,97,95,104,96,108,92,101,90,86,93,104,88,103,103,99,105,99,93,96,106,93,109,101,105,109,96,100,88,99,102,108,100,102,101,89,112,102,85,104,102,109,93,102,92,109,103,88,96,102,103,100,92,94,102,93,101,107,113,90,106,88,94,96,121,96,98,103,99,98,104,108,110,98,94,102,102,85,106,91,84,109,105,113,83,106,104,97,95,123,97,103,95,105,113,100,102,106,103,103,87,93,94,106,105,97,104,98,105,110,95,93,101,102,113,98,95,95,99,104,87,104,111,109,93,98,91,95,102,94,95,94,108,103,112,107,101,97,89,98,101,67,89,104,108,105,107,97,89,104,102,80,107,95,95,95,101,104,92,86,107,95,97,84,100,104,110,94,101,112,116,104,94,100,108,93,100,106,107,94,108,104,79,113,103,108,98,94,102,92,74,106,97,110,104,80,76,104,91,98,97,98,102,94,103,112,100,103,112,93,104,90,118,102,90,101,103,111,93,102,97,98,100,97,94,105,101,91,100,102,94,103,95,93,93,85,97,101,95,94,102,96,87,118,131,103,95,102,92,97,91,99,109,97,95,102,95,114,94,95,97,108,106,104,95,96,98,92,105,96,98,93,92,82,96,93,99,101,89,89,99,92,97,96,100,87,97,96,97,97,101,94,113,99,104,97,124,91,107,91,102,92,105,101,92,97,105,92,98,88,107,92,96,97,112,91,90,95,105,71,111,98,101,96,98,104,93,99,92,96,98,91,94,104,100,101,91,97,97,70,94,98,98,96,102,89,106,104,105,104,105,94,96,106,101,117,103,103,105,99,97,80,96,104,89,112,108,97,100,99,102,88,102,107,106,91,100,98,94,98,91,109,93,97,102,89,88,94,95,103,97,98,93,90,103,106,110,104,95,110,90,112,92,99,106,98,92,95,115,99,103,94,103,88,94,105,101,102,101,91,104,96,83,128,102,104,96,105,93,109,95,106,108,101,108,95,102,99,87,101,105,90,100,102,108,98,112,95,100,101,92,86,92,106,87,102,100,105,98,100,95,103,101,91,94,100,95,100,104,102,90,102,96,97,91,109,102,93,93,96,101,91,97,106,95,98,97,95,115,102,100,106,108,97,101,87,87,100,99,95,94,109,87,92,101,102,98,98,103,91,105,95,101,108,95,105,98,109,93,93,93,112,93,95,91,96,92,102,103,109,91,98,93,104,94,105,90,104,104,94,94,97,111,121,107,84,104,103,106,100,102,101,103,103,95,89,93,97,100,106,95,96,92,95,93,105,101,95,99,94,87,92,102,99,94,94,107,105,87,93,99,84,97,107,84,104,98,112,100,88,105,95,97,83,99,102,105,102,97,103,90,112,98,89,105,83,102,104,97,105,88,93,104,99,100,97,136,94,108,110,99,99,106,105,85,95,102,106,98,101,109,100,95,80,102,105,96,99,92,111,102,103,98,103,93,93,108,99,94,102,105,93,102,104,93,108,113,101,98,100,94,81,107,92,111,109,91,104,83,96,101,102,104,98,89,111,90,99,111,84,98,95,61,98,110,102,113,90,84,98,81,93,102,90,114,70,103,99,103,96,93,94,90,87,106,106,105,96,91,95,92,98,94,103,102,98,99,110,101,100,108,96,111,101,97,95,101,108,108,94,102,103,95,89,110,111,98,95,90,116,87,102,86,99,97,94,103,103,100,94,101,92,96,100,90,112,97,99,99,86,105,96,98,92,113,84,94,99,99,92,107,100,93,109,87,100,106,98,110,119,92,96,100,103,113,107,106,75,93,93,100,111,109,92,79,108,94,114,100,103,99,104,91,94,86,103,95,92,113,106,94,92,97,97,106,99,108,113,93,106,99,56,99,108,103,87,100,108,107,111,87,92,94,98,94,93,98,95,84,93,101,100,94,100,107,111,103,96,98,108,94,88,110,108,98,109,102,99,97,124,94,88,87,106,113,98,110,96,82,90,97,97,94,110,96,99,94,87,97,111,95,93,107,103,96,83,96,90,101,81,98,105,101,97,110,104,92,93,120,101,115,83,92,85,107,97,113,78,95,105,84,91,96,100,98,110,111,100,98,97,96,110,105,100,88,91,93,89,109,98,97,84,95,93,105,115,110,112,78,102,85,97,106,112,93,98,97,94,82,89,92,94,124,86,94,87,83,77,97,87,101,87,92,96,92,114,92,110,94,99,109,100, +386.91174,99,101,104,92,103,96,100,99,111,102,87,94,83,97,92,92,89,101,100,102,96,137,118,101,89,110,97,89,99,101,95,93,111,88,98,107,91,87,106,87,100,96,99,91,102,110,133,105,88,108,94,102,101,95,132,118,87,87,112,116,90,96,99,100,99,107,89,116,99,90,110,98,106,97,112,103,84,100,103,105,103,95,118,90,116,91,87,102,80,97,101,97,101,93,103,95,97,103,85,118,94,99,100,88,101,106,102,104,93,92,101,92,100,94,102,65,101,102,103,98,95,100,115,95,97,93,103,110,109,100,95,111,106,92,108,98,103,104,112,97,99,124,98,95,108,84,100,107,93,93,96,92,107,98,91,94,108,103,96,100,89,82,124,109,112,84,102,95,98,87,94,100,99,95,99,95,91,92,107,96,94,96,99,99,97,102,99,76,109,98,111,86,86,98,100,97,92,100,90,97,97,95,91,96,99,116,99,87,98,109,94,102,92,98,96,73,86,103,88,95,97,90,109,92,95,105,92,89,96,107,109,94,96,97,104,91,102,96,92,104,104,101,91,96,98,80,96,96,101,106,101,110,91,104,105,94,97,104,104,96,79,114,116,108,91,103,81,115,86,93,76,91,102,107,103,101,83,94,99,100,100,93,103,92,97,110,85,109,99,104,90,105,98,105,112,88,110,98,137,80,89,91,101,99,91,108,101,104,105,106,96,92,107,108,96,102,106,103,95,94,88,110,107,101,98,91,111,93,102,108,112,93,64,95,111,95,104,89,90,102,98,99,100,93,95,106,104,102,94,106,102,105,104,97,106,111,97,91,91,97,91,97,107,90,100,105,93,92,108,105,99,92,107,98,99,106,109,90,106,94,108,104,100,98,109,112,98,81,112,94,104,88,95,108,94,101,89,90,87,89,103,102,86,102,99,92,101,97,109,100,78,86,98,92,105,100,102,83,100,90,99,102,87,103,90,110,98,94,101,109,105,88,113,105,82,96,106,104,94,105,91,81,96,106,91,96,101,100,86,107,101,99,109,109,97,99,91,87,101,86,101,102,95,102,104,101,108,92,96,101,100,88,91,101,99,81,88,112,95,103,88,102,102,99,97,91,88,89,125,78,93,101,98,85,95,113,104,94,104,94,112,102,111,90,118,105,113,94,114,120,110,93,113,97,102,100,94,99,94,82,88,97,95,108,100,103,94,101,104,71,95,101,97,106,101,101,90,110,96,100,102,101,79,104,107,83,98,92,101,109,99,102,99,96,98,96,104,97,91,110,92,127,92,97,98,95,100,98,95,102,91,94,102,97,105,99,98,107,101,87,98,100,94,105,99,110,98,105,104,99,103,100,105,102,102,90,96,128,106,108,99,101,92,86,97,107,76,100,108,128,99,95,99,104,91,106,113,101,72,93,101,99,117,89,92,102,85,108,97,97,94,110,100,110,101,93,97,94,99,92,102,105,105,92,103,76,96,97,98,110,103,87,85,97,100,88,103,95,94,100,110,97,86,103,103,102,99,95,79,100,126,106,106,97,86,99,93,90,111,89,101,97,117,97,96,104,106,91,98,97,103,71,88,115,88,92,87,94,108,87,91,100,88,96,99,101,116,100,101,109,95,107,96,83,96,89,87,98,94,109,89,102,117,97,100,103,100,93,97,96,93,97,109,98,85,99,117,88,87,95,100,88,97,98,102,100,113,104,98,105,113,85,100,101,78,105,113,114,98,97,87,89,97,92,93,97,97,108,95,100,108,94,109,93,112,97,96,92,104,78,106,104,113,97,90,107,98,107,92,101,101,93,99,98,87,109,104,98,101,109,94,106,105,95,99,93,85,98,114,104,92,95,110,81,98,92,104,84,104,99,103,101,106,105,103,102,113,95,107,101,97,115,103,105,99,92,104,110,112,104,96,96,107,107,100,100,96,95,100,102,102,89,84,108,92,99,103,95,105,96,113,90,92,95,90,93,89,102,97,100,92,111,97,98,105,99,108,98,104,108,99,99,100,103,104,95,99,97,97,98,106,112,93,95,98,89,99,106,97,88,104,75,105,110,99,92,102,90,97,86,95,119,141,109,98,107,111,99,88,93,91,104,103,87,100,90,96,101,86,97,103,103,105,109,86,96,96,106,97,103,117,106,92,82,110,101,98,105,97,103,91,108,93,100,98,101,106,87,86,101,106,88,105,113,95,104,93,107,94,86,112,96,113,105,109,108,110,103,98,99,72,100,91,102,96,84,90,99,71,98,106,96,98,98,98,110,99,103,97,103,97,105,104,119,105,98,96,102,112,98,85,112,101,101,104,102,94,99,90,113,100,98,109,86,104,103,101,105,97,108,92,95,110,99,110,97,103,100,101,101,95,99,96,98,87,98,92,95,103,109,102,101,97,103,95,94,103,89,103,92,94,95,105,99,88,93,87,104,100,72,104,108,97,86,101,108,96,98,76,115,87,91,94,102,103,97,97,94,108,106,84,90,97,88,81,93,81,91,110,106,83,94,93,103,99,87,98,96,102,112,92,99,98,105,108,102,101,106,98,92,82,100,104,105,106,111,114,95,109,103,103,92,105,104,100,79,101,110,106,98,85,89,92,96,102,85,101,102,105,90,106,94,109,105,66,102,93,130,103,97,96,102,105,92,107,103,105,100,101,86,90,99,104,98,98,124,132,107,85,96,106,97,101,111,100,101,125,93,91,114,92,97,101,102,90,102,101,88,85,104,120,79,99,90,95,98,95,93,84,93,105,95,100,106,86,113,105,106,98,91,83,118,104,107,83,91,109,86,106,98,99,94,88,95,93,104,104,106,92,104,102,108,96,102,107,99,112,104,91,115,102,105,117,87,112,100,101,92,101,108,104,101,101,90,92,113,107,101,92,115,100,104,101,109,99,98,99,98,98,102,108,100,98,81,103,87,103,78,118,100,98,98,92,79,95,91,96,107,108,103,97,121,84,107,105,100,116,125,105,93,86,110,86,102,104,100,89,98,94,82,100,97,97,91,86,101,108,102,100,101,112,98,75,101,94,106,99,96,81,102,114,105,96,96,93,97,96,105,100,96,96,110,93,101,87,102,93,93,98,95,97,103,112,76,102,101,98,92,104,93,88,106,106,108,109,102,109,103,95,94,101,94,91,99,96,81,98,101,104,92,91,92,95,92,96,111,105,104,98,102,105,97,102,103,90,95,99,88,106,93,107,108,99,93,91,91,93,98,93,104,66,95,96,72,96,101,98,87,105,95,97,95,100,102,126,100,101,108,98,97,102,94,102,102,95,95,103,104,97,99,95,91,92,90,91,90,78,89,97,91,93,86,95,99,102,98,89,97,91,94,85,102,90,94,101,87,107,87,94,112,91,97,93,102,87,99,95,108,88,87,104,109,109,94,90,97,97,118,104,98,93,111,103,95,113,94,105,111,109,91,99,103,90,102,94,85,105,91,102,110,101,104,92,103,105,108,88,97,112,81,103,98,95,88,126,87,97,105,96,116,102,95,110,118,104,101,95,106,100,88,108,104,106,94,109,104,114,89,111,96,102,98,96,74,100,96,93,100,97,105,103,99,94,96,95,90,99,97,96,91,100,87,91,103,101,80,93,99,81,109,92,92,96,93,105,95,101,91,101,111,94,94,114,109,100,93,104,90,104,96,85,91,100,111,96,91,87,100,93,85,115,98,101,115,97,103,106,95,96,91,97,100,98,101,92,106,98,104,98,93,84,84,113,96,94,93,108,91,90,86,96,102,111,97,101,100,108,106,104,103,102,101,110,100,94,95,97,92,118,95,79,103,97,97,102,93,107,113,89,100,106,101,94,100,98,98,104,92,94,118,97,95,94,104,104,92,101,102,103,106,99,104,91,106,101,102,90,80,100,90,99,101,100,101,100,99,98,91,92,88,82,102,96,105,100,97,95,109,120,95,84,102,111,96,100,119,100,100,93,91,106,96,95,80,101,98,93,102,106,117,113,99,96,108,101,102,87,95,102,102,102,95,98,87,111,97,85,99,97,102,115,100,88,90,102,95,102,100,107,97,104,109,102,95,103,103,109,107,103,102,102,98,106,94,108,106,106,93,87,104,109,97,101,98,99,101,93,100,93,85,91,104,92,101,101,91,101,103,90,101,92,89,82,109,89,96,88,102,102,93,102,104,110,101,98,92,105,100,97,105,77,99,99,103,98,94,110,101,93,91,99,113,96,105,96,106,102,95,100,105,105,88,94,102,98,95,113,97,127,100,99,100,106,95,91,95,91,96,112,92,91,103,105,101,92,98,94,96,95,94,87,100,88,106,98,87,105,101,85,93,97,99,104,98,93,105,91,105,105,96,102,102,103,97,102,100,102,101,92,104,72,114,95,107,112,91,109,111,99,100,85,92,83,101,96,87,105,98,90,89,83,99,98,109,95,97,102,94,105,94,98,95,95,94,100,97,94,104,108,94,100,102,99,89,104,87,75,94,98,97,110,97,92,96,106,98,93,91,120,92,92,111,83,113,96,100,104,98,94,99,94,99,95,98,92,90,111,93,102,85,102,110,89,109,100,95,89,96,80,104,88,107,113,116,91,89,107,95,102,99,95,91,105,96,112,105,103,100,102,94,96,106,91,98,100,103,100,93,93,89,98,94,124,97,99,99,104,105,105,98,96,91,73,97,78,61,97,102,86,113,102,104,98,88,101,100,92,78,95,69,96,123,79,109,96,84,100,102,98,92,83,102,97,109,96,93,101,95,118,101,108,94,99,101,101,97,105,98,97,97,94,86,102,99,102,99,103,97,102,100,93,114,113,91,102,106,100,86,113,95,87,86,104,64,88,98,95,85,101,90,102,121,105,105,94,105,109,100,118,95,98,100,100,92,112,97,101,98,105,87,98,88,104,93,95,89,98,105,103,93, +387.05179,107,100,90,91,83,101,100,78,89,91,95,100,91,94,97,98,90,104,102,87,98,101,108,99,95,95,89,108,95,106,98,77,99,88,99,84,95,102,115,98,104,90,105,118,86,89,92,94,94,93,98,105,105,109,96,117,96,98,103,105,96,101,96,75,92,103,99,91,91,99,110,94,95,106,88,90,100,101,109,94,92,95,97,103,99,100,103,103,95,98,88,102,94,110,97,134,105,103,105,95,101,97,106,87,75,90,88,83,93,97,99,79,82,97,105,97,95,101,113,94,100,88,100,96,99,92,99,97,103,102,112,111,104,102,96,99,101,101,88,93,93,103,103,88,100,92,98,113,95,116,90,86,110,84,99,97,97,98,112,90,108,96,99,100,98,102,95,93,90,103,98,103,103,95,93,108,96,94,105,90,94,121,103,107,102,100,94,91,87,97,90,89,87,90,87,110,101,87,83,71,93,93,96,105,90,105,101,89,111,99,94,109,93,98,104,95,89,99,98,95,93,96,111,100,90,105,96,94,114,101,92,108,100,101,92,101,100,97,91,96,103,101,107,94,95,99,104,103,95,100,112,91,93,104,92,100,92,104,102,90,103,95,103,104,93,100,95,97,82,91,98,97,92,92,94,92,109,91,87,91,104,94,95,82,117,95,92,93,99,93,118,101,103,98,110,98,105,96,114,109,96,94,105,91,89,110,93,115,102,102,63,108,106,97,107,102,92,97,99,101,92,89,71,103,104,96,100,101,94,102,118,97,101,101,72,102,91,99,99,95,87,92,105,104,98,105,94,104,71,89,104,94,106,95,80,108,107,97,108,107,97,98,85,82,95,107,101,106,99,92,95,94,108,87,86,92,103,108,89,98,87,95,99,101,98,114,101,93,93,98,107,98,94,95,99,97,109,87,102,98,102,83,86,91,94,100,106,105,92,109,86,107,89,98,101,102,92,90,99,89,100,85,106,85,98,99,96,80,76,95,96,96,95,86,90,91,104,103,101,104,97,92,90,100,105,106,90,91,102,108,90,92,111,107,98,117,105,98,106,104,91,94,91,105,114,92,87,102,112,88,105,86,109,109,95,94,87,101,105,97,99,101,102,97,95,91,96,93,96,94,90,106,102,93,83,105,95,91,99,100,106,93,91,102,96,98,91,91,103,96,112,84,114,83,96,98,101,89,96,104,87,95,76,91,99,98,95,90,86,113,91,112,99,109,63,97,96,90,102,98,99,104,98,98,99,100,89,88,91,107,112,94,92,95,83,104,105,86,92,91,90,82,100,105,94,98,98,97,92,93,99,91,100,102,93,90,94,98,102,107,103,101,106,88,90,101,91,98,104,102,114,106,95,91,95,104,68,103,105,97,116,104,102,103,92,100,94,98,98,98,104,113,93,99,93,103,96,115,79,102,80,110,95,86,99,102,93,92,108,107,94,100,102,103,106,90,95,98,108,86,111,106,98,107,95,85,95,100,102,87,92,93,98,103,98,102,82,109,99,105,97,113,93,90,97,95,97,94,110,97,100,98,98,99,95,98,108,92,94,93,96,95,102,99,94,95,96,108,98,104,113,95,95,110,106,105,91,109,84,89,102,100,84,106,105,95,104,92,89,96,95,95,100,99,92,102,95,99,103,93,96,95,96,105,91,111,96,80,101,103,103,103,94,92,93,92,95,96,110,95,86,92,91,98,112,106,103,95,72,105,107,103,99,101,108,101,94,94,107,102,96,102,103,95,97,99,99,116,83,96,93,91,91,84,98,84,99,93,108,96,95,93,94,97,94,96,103,101,70,110,89,100,96,96,96,105,95,108,84,94,108,98,101,91,100,93,108,108,102,98,114,88,77,94,104,97,83,110,98,89,97,87,110,88,64,109,78,109,101,106,100,115,96,107,98,78,93,94,95,105,96,94,96,98,95,97,106,96,91,101,85,104,87,98,109,90,106,104,95,106,102,100,104,103,96,97,107,93,106,97,95,105,90,112,90,111,96,62,87,93,100,98,104,108,90,108,105,113,101,99,96,111,104,114,110,104,127,91,104,104,101,98,96,102,93,98,95,77,91,87,86,103,108,104,102,95,98,95,74,98,98,96,99,62,94,100,91,90,90,104,86,106,101,101,108,97,103,107,96,99,69,99,109,91,101,90,107,100,84,99,133,102,109,100,104,90,97,115,85,113,103,114,79,78,95,94,91,107,85,100,100,104,101,82,100,93,90,88,108,91,101,87,95,77,97,105,87,89,87,93,101,92,86,102,82,92,100,90,109,94,94,90,99,92,104,104,103,94,95,92,90,104,100,98,101,97,96,92,100,95,91,106,93,95,78,98,97,98,113,96,100,95,97,97,100,97,89,86,108,96,100,103,96,102,94,104,86,100,103,110,104,97,107,106,100,92,85,106,100,98,102,96,93,90,97,94,99,101,112,85,106,99,95,92,95,101,88,72,88,95,95,106,100,97,103,106,103,107,97,98,97,104,105,96,89,101,113,103,106,99,98,92,100,99,85,117,101,103,117,89,101,99,102,91,103,90,100,104,94,96,100,87,97,102,109,102,72,98,97,106,92,111,107,104,90,109,99,91,101,90,103,93,106,95,98,85,104,82,101,102,106,98,106,109,104,100,95,99,93,99,97,91,111,88,104,114,111,107,113,92,88,111,110,97,102,82,94,84,118,90,98,104,95,93,105,86,102,95,110,89,88,77,106,104,99,99,90,99,94,107,97,107,95,97,89,101,109,83,100,98,109,87,77,110,95,93,99,95,101,100,93,98,106,99,101,94,101,100,86,101,104,93,104,94,91,101,105,103,96,82,108,104,103,86,119,95,98,91,88,109,95,99,99,106,116,105,84,105,88,104,104,99,99,102,103,100,84,103,97,95,101,123,106,109,100,92,107,98,98,106,114,87,100,103,99,109,95,109,101,104,99,95,106,109,99,102,94,93,91,95,91,88,92,95,104,101,110,100,102,100,100,103,101,106,91,82,89,101,90,99,108,107,96,104,100,98,104,94,91,112,130,98,99,98,107,94,104,95,106,100,91,106,105,98,102,87,92,97,115,113,91,103,107,91,96,91,98,96,96,87,101,91,113,96,101,97,96,88,113,96,108,113,96,106,98,106,103,96,94,97,91,104,81,92,91,103,96,108,105,99,92,89,100,94,105,92,103,105,109,91,90,110,103,98,91,81,103,102,82,103,97,98,107,93,122,101,95,93,107,106,96,95,100,83,96,101,108,97,104,89,102,101,98,92,85,110,126,106,100,121,99,97,105,100,87,98,88,95,94,95,102,103,119,113,91,113,120,100,102,122,102,87,99,99,91,109,96,102,100,105,97,99,88,98,94,116,96,90,99,108,100,99,96,118,85,96,92,106,91,90,93,103,99,101,133,91,101,70,109,110,91,93,108,103,100,97,108,88,100,100,97,103,92,107,101,98,92,100,92,95,86,102,98,118,88,104,102,94,111,91,100,104,85,95,103,109,104,96,106,102,99,103,95,103,95,106,93,109,106,94,113,99,97,104,102,105,99,101,91,96,95,103,117,93,102,106,81,96,120,95,104,96,96,95,99,109,116,104,97,88,91,96,84,105,91,104,95,96,110,87,80,104,88,97,106,101,108,102,102,90,102,99,96,97,98,86,107,86,79,112,103,101,95,96,93,99,98,101,116,86,95,109,94,87,99,98,111,114,82,96,81,92,102,95,100,94,87,131,94,89,106,102,101,124,113,92,104,104,99,90,93,91,100,98,99,95,91,106,100,91,108,96,100,94,112,77,101,89,99,107,119,98,103,88,97,95,95,104,109,87,93,95,104,93,100,105,98,103,103,104,102,112,96,104,112,103,100,106,99,93,95,95,108,100,96,110,111,107,103,101,104,97,103,107,94,90,97,91,87,100,107,90,102,91,107,99,103,102,101,95,118,101,113,107,107,102,96,95,103,105,97,99,80,101,90,67,100,85,88,105,101,106,100,111,99,88,82,112,95,100,102,99,95,86,98,83,105,103,107,94,109,98,98,102,108,99,102,100,94,94,96,106,93,88,115,97,99,102,127,97,112,108,105,96,98,100,93,106,96,97,108,95,91,107,104,108,95,110,106,104,102,104,103,105,87,107,98,98,108,96,110,83,96,102,100,111,72,100,92,102,80,87,100,91,98,108,114,93,108,93,108,103,99,102,103,116,106,112,102,97,99,96,100,99,90,98,110,96,98,106,96,99,92,93,90,103,91,107,94,98,95,92,101,104,92,110,91,93,109,104,112,109,100,95,106,70,99,100,96,95,98,87,100,114,96,105,89,95,88,105,108,99,107,117,98,102,90,104,102,93,108,92,92,103,99,99,105,105,80,100,109,88,103,97,93,88,100,102,109,92,102,119,103,102,97,96,74,105,112,89,90,72,98,98,94,103,97,99,92,94,105,83,98,93,90,87,87,104,101,106,96,99,102,96,113,93,98,93,105,112,98,96,88,105,111,109,93,95,96,105,91,97,106,108,93,94,99,102,92,89,97,98,98,98,89,99,103,109,98,70,94,111,102,92,88,99,104,104,92,101,102,96,99,108,96,92,91,94,88,85,94,94,99,98,106,94,91,91,95,94,102,100,102,102,97,106,98,91,89,95,104,94,105,90,101,94,106,104,104,106,97,98,93,96,91,98,105,91,110,97,102,108,99,100,101,98,98,90,90,102,93,85,92,100,112,91,98,90,93,102,95,91,94,102,90,98,112,85,102,101,103,95,102,85,94,99,111,113,86,104,105,94,103,69,94,100,97,98,92,101,91,124,112,90,93,117,93,96,91,102,100,90,107,96,100,73,100,99,101,101,99,107,95,98,88,100,101,99,88,100,91,102,103,104,106,101,106,99,90,92,105,101,105,102,105,97,90,75,90,100, +387.19183,106,97,94,106,97,92,103,88,67,94,106,108,98,89,98,97,71,96,89,102,106,97,99,106,98,88,100,100,81,85,86,114,90,100,106,97,107,89,94,111,103,91,101,105,100,109,95,108,87,92,91,97,102,93,83,96,79,93,97,84,97,97,88,94,108,108,91,95,97,94,83,98,94,101,89,90,91,96,103,104,100,104,100,96,89,86,91,106,90,96,119,112,100,72,88,89,90,90,87,94,97,100,106,84,107,89,108,78,105,87,87,87,113,104,117,98,118,103,94,99,81,99,82,104,103,91,97,96,106,93,94,99,95,100,99,98,94,93,91,99,104,101,78,89,103,94,109,105,91,87,108,95,114,95,86,113,97,90,91,91,96,92,109,106,93,95,96,112,96,98,63,93,90,96,119,101,106,91,105,107,93,87,105,100,101,101,73,81,105,87,101,97,105,98,94,92,91,92,106,96,116,93,100,84,100,98,95,90,98,100,101,87,105,95,92,106,99,124,95,89,70,125,103,102,100,102,109,94,96,103,94,104,105,113,97,109,103,107,102,75,98,101,97,99,96,87,95,102,103,105,93,103,104,95,104,96,105,92,97,91,105,97,97,93,93,96,99,97,100,96,84,91,104,79,96,105,92,105,96,90,99,96,101,95,109,96,97,96,89,89,108,106,95,101,108,105,108,104,105,98,94,103,95,89,95,107,105,100,92,82,83,101,92,92,102,95,102,81,100,104,94,104,106,100,101,89,94,95,109,99,83,101,95,87,113,105,101,95,103,99,107,101,100,90,99,92,108,99,99,97,96,103,106,95,96,101,103,104,104,95,104,88,89,91,93,93,104,130,90,104,98,100,94,109,99,99,110,112,96,94,102,84,98,109,105,101,100,100,119,93,103,101,100,93,104,90,101,76,108,109,98,106,102,101,95,91,106,65,99,90,99,93,89,106,103,98,95,95,90,84,85,104,87,95,102,97,94,95,95,109,90,93,86,95,102,99,103,95,90,125,104,102,108,95,108,96,88,107,94,107,100,96,113,98,99,88,115,102,105,109,91,101,106,108,105,102,104,87,109,96,83,104,99,103,97,92,100,112,103,106,105,92,94,94,95,94,101,117,90,92,103,103,102,95,113,98,95,100,97,91,106,88,96,92,96,95,94,91,101,86,99,91,104,110,94,100,74,94,94,94,97,95,103,101,92,100,102,105,101,100,100,106,94,91,100,97,116,99,94,101,110,99,86,95,97,81,104,95,95,86,87,106,105,82,94,102,94,102,91,97,98,94,103,91,88,95,95,70,93,92,98,98,100,110,96,111,103,82,93,93,98,105,99,97,79,120,111,103,98,110,106,100,93,99,107,96,94,106,106,121,102,101,108,106,101,87,97,87,101,92,98,102,94,106,109,98,109,102,100,102,90,96,95,103,99,101,104,101,104,93,96,102,96,101,101,106,106,97,103,94,92,98,94,91,97,96,106,90,104,103,83,106,105,105,90,116,86,83,94,95,104,90,110,99,99,109,62,92,109,105,101,108,96,92,91,97,97,88,97,98,94,93,104,82,93,102,99,95,88,101,100,103,93,96,111,98,91,112,95,83,96,100,87,103,105,107,104,105,97,98,93,92,98,83,87,86,93,102,99,82,87,100,95,93,99,105,102,92,96,104,101,93,88,93,78,95,89,88,96,95,92,90,105,101,100,98,96,91,109,94,97,90,100,101,112,94,96,98,95,95,95,89,101,91,79,94,97,102,85,92,92,100,106,83,101,100,99,92,99,83,103,105,101,108,101,79,93,104,96,106,101,95,124,101,105,103,88,97,97,96,100,93,110,94,95,106,100,109,92,101,104,100,104,85,105,97,92,122,96,89,102,103,106,99,98,105,108,92,107,93,106,93,102,103,96,96,98,96,101,108,95,104,114,97,105,88,95,96,97,104,105,83,96,95,97,104,93,97,99,106,94,105,96,88,99,92,90,103,99,107,98,89,93,97,94,102,100,88,91,94,92,98,104,94,99,92,82,91,97,91,100,83,106,99,103,81,94,102,99,97,106,94,106,110,96,95,88,121,96,96,104,100,103,103,97,107,90,100,91,98,103,87,99,107,112,85,97,114,88,95,96,94,90,100,101,101,86,96,99,97,103,120,95,98,93,107,111,103,101,110,91,101,101,100,93,105,98,94,108,101,108,98,87,95,106,68,97,90,108,88,90,99,103,98,64,102,106,105,87,86,93,84,93,100,87,79,98,78,92,96,79,100,90,106,104,90,85,106,74,87,96,98,99,88,102,104,98,101,95,105,97,109,100,120,95,94,100,89,103,122,104,97,104,84,104,100,91,88,91,102,105,109,89,100,103,97,100,104,112,92,100,104,84,87,89,92,95,90,68,89,97,102,101,84,96,103,85,109,82,102,90,99,94,92,88,98,93,109,95,73,103,112,97,85,92,95,93,93,92,102,95,81,75,99,113,102,105,99,110,114,94,97,91,90,96,99,94,80,93,96,78,96,97,98,96,100,100,94,86,94,83,99,103,80,96,98,100,98,106,95,90,98,100,112,106,94,95,113,93,104,100,111,97,94,94,97,106,93,102,75,99,90,68,97,95,93,89,91,96,104,102,85,117,107,95,103,95,103,102,115,100,90,102,92,98,98,93,85,106,106,107,103,98,94,100,100,99,92,113,100,95,112,98,95,104,96,100,101,105,97,93,96,95,110,92,94,99,103,100,95,93,95,106,90,107,108,96,85,98,93,85,102,88,102,100,96,113,90,95,94,101,105,104,97,104,96,90,103,109,100,92,97,113,105,92,91,102,98,104,89,102,87,92,95,94,99,104,93,98,104,110,98,107,106,85,101,93,99,96,99,97,98,105,98,117,96,103,99,95,106,91,113,92,96,91,93,108,77,94,111,103,107,98,109,102,95,96,113,93,88,98,101,100,97,103,102,91,94,91,98,84,115,91,101,98,91,96,102,100,112,97,98,91,98,107,87,99,104,92,107,110,103,97,94,105,108,111,97,111,101,84,109,90,100,123,96,97,90,99,90,130,117,109,87,106,91,100,96,108,98,90,110,102,98,100,91,100,97,74,107,106,104,125,108,104,88,100,98,108,105,109,100,96,106,113,87,99,114,93,94,93,91,106,98,113,94,98,91,102,107,99,100,110,84,94,77,122,87,105,102,83,103,92,121,87,105,103,92,96,113,97,92,101,103,106,104,86,102,91,96,101,94,83,98,79,99,108,103,105,91,96,96,96,97,107,87,98,113,82,98,96,97,114,98,84,115,87,99,94,98,112,90,102,95,95,109,94,96,87,92,100,91,109,84,105,95,114,98,99,95,80,94,102,98,111,95,105,100,90,95,84,96,97,103,102,95,88,96,90,93,87,84,107,93,101,94,71,105,100,102,101,95,90,104,98,100,103,92,113,103,98,105,95,91,91,90,100,100,103,108,121,109,106,104,97,99,102,109,98,93,104,84,95,90,89,104,101,103,109,107,96,100,82,100,92,92,91,100,94,101,100,116,98,112,96,95,101,92,94,97,89,91,94,101,105,103,101,97,104,111,80,101,95,107,98,106,93,75,98,109,93,99,100,102,99,87,96,97,102,87,88,99,110,108,93,91,105,98,111,95,95,98,93,95,100,87,97,87,106,99,98,108,120,91,95,99,95,105,105,91,103,103,101,119,103,100,100,92,106,84,101,77,103,88,87,93,93,106,117,98,105,102,97,93,96,102,104,85,92,92,97,98,94,85,98,92,94,93,104,107,103,114,91,97,92,99,95,97,95,100,91,106,96,102,94,82,112,98,94,110,103,97,112,97,93,90,98,88,106,116,83,96,94,98,109,115,98,105,107,108,100,116,92,101,107,101,101,99,95,76,99,98,81,112,123,95,91,84,90,99,99,101,76,105,95,107,97,102,90,109,115,89,94,107,87,99,97,103,90,87,112,111,95,99,91,96,94,101,96,102,95,91,96,99,101,88,104,89,105,101,103,69,86,103,102,100,87,86,88,128,112,106,106,87,104,102,105,102,92,93,106,92,73,95,101,103,119,104,102,96,97,103,89,94,98,102,95,102,82,92,83,105,97,85,108,102,94,104,86,87,94,104,83,93,94,105,108,102,99,95,92,90,101,88,102,97,105,103,97,89,91,98,101,93,97,99,113,91,102,96,91,108,96,94,98,107,99,102,91,113,107,96,114,110,91,104,100,94,112,97,110,90,92,105,117,98,113,106,90,102,105,95,95,97,92,111,105,93,95,89,99,87,96,105,106,100,90,96,93,98,105,105,89,80,110,91,91,101,95,98,96,94,91,91,101,89,112,101,92,112,96,101,93,107,102,90,98,100,100,97,101,108,100,91,93,94,108,104,90,101,94,91,98,109,94,95,98,94,96,92,98,77,110,102,91,107,91,113,90,102,108,95,94,97,99,117,88,80,100,91,90,107,101,101,90,86,109,93,105,89,104,105,94,91,95,98,92,75,101,108,105,85,95,96,108,104,96,100,102,108,98,91,94,98,96,86,105,87,101,90,97,118,92,97,85,103,84,89,102,108,94,102,103,102,89,98,93,102,94,91,92,90,88,100,112,95,94,103,100,108,91,95,94,95,102,100,96,98,98,98,97,91,95,95,109,117,100,97,95,90,104,96,104,74,90,99,96,97,96,104,94,94,88,94,99,78,106,85,101,96,108,113,93,88,91,102,99,94,100,93,95,105,84,111,98,68,105,92,104,95,106,93,91,98,93,101,88,95,100,100,102,93,105,105,70,105,94,88,96,109,105,93,93,90,90,98,104,97,80,84,102,89,97,101,92,106,99,90,108,124,102,101,94,100,107,107,85,103,105,93,99,106,92,118,103,91,96,92,78,106,102,89,112,95,98,93,73,99,57,96, +387.33188,108,102,101,92,97,89,94,90,97,115,91,95,83,97,117,85,109,91,115,89,106,91,95,104,95,104,101,95,104,103,90,71,103,95,104,102,97,94,97,111,98,99,100,99,102,100,106,110,97,105,89,111,100,92,102,97,90,89,108,96,90,100,85,92,103,103,84,104,104,95,97,106,91,105,98,98,90,101,96,98,118,103,93,93,100,91,92,100,101,114,90,102,94,98,116,102,101,96,96,91,84,105,98,100,89,91,109,85,95,95,104,96,99,96,103,97,96,104,105,91,98,118,103,97,96,106,105,85,91,103,99,108,98,94,98,112,100,104,90,96,93,108,96,90,90,106,106,99,100,70,90,95,94,98,103,103,95,102,102,99,87,106,105,101,95,101,100,96,97,100,101,97,104,95,103,98,103,99,99,94,93,107,105,112,83,102,101,85,93,104,103,91,93,106,100,90,93,96,104,107,93,96,93,105,98,100,92,97,104,92,105,96,100,97,95,87,112,99,111,100,64,106,95,94,79,104,102,102,94,108,87,105,79,116,90,91,94,87,83,122,100,96,97,81,100,109,106,83,109,102,95,105,96,78,97,109,90,105,99,97,88,81,101,102,87,105,105,96,106,84,114,87,95,90,87,82,92,88,107,103,106,98,101,87,104,95,82,81,104,95,107,101,120,99,91,97,93,109,89,104,90,101,99,105,96,99,111,101,105,98,115,110,98,89,103,103,82,105,91,64,97,93,79,104,106,94,87,83,107,109,95,99,103,99,98,110,103,104,105,105,88,94,97,99,99,109,102,106,100,91,95,105,102,92,93,98,88,96,105,88,96,102,103,81,109,105,127,102,99,101,104,102,109,104,91,102,108,105,99,106,87,103,91,99,89,105,101,96,100,95,100,95,87,103,99,92,92,91,98,99,102,108,98,84,113,98,98,111,94,104,93,97,104,110,92,98,98,95,99,112,90,109,95,99,98,93,90,117,86,108,93,94,97,103,106,97,86,100,93,102,96,91,94,94,97,94,94,97,103,98,111,103,108,104,99,109,104,102,97,74,92,103,100,108,102,105,96,86,106,91,100,109,104,99,93,102,104,105,96,96,104,104,102,97,100,83,99,100,73,118,99,83,102,100,80,93,105,111,108,86,94,101,95,105,95,99,100,100,104,109,101,98,114,96,99,106,97,84,93,103,108,108,114,97,91,98,92,97,101,100,99,103,84,104,60,91,101,94,102,101,99,98,91,95,112,106,101,93,92,96,102,98,102,99,95,103,97,86,90,101,90,110,90,104,106,91,97,101,106,89,96,84,103,107,100,87,101,96,103,101,88,92,99,102,101,105,109,101,103,94,110,98,109,93,105,117,101,112,101,96,99,79,98,108,90,91,88,95,97,90,97,108,109,96,115,92,118,87,108,86,93,94,96,101,100,109,89,110,95,105,102,95,94,100,97,106,91,117,98,91,92,107,86,100,96,87,96,93,94,89,98,104,97,109,106,98,106,93,91,103,108,108,88,99,99,93,104,98,95,107,70,113,98,99,88,109,118,93,101,104,109,104,78,119,95,79,90,106,110,102,92,105,89,113,91,96,107,97,93,80,102,107,106,97,95,100,97,94,92,109,92,104,101,88,94,90,93,95,112,89,98,92,98,119,92,96,101,113,105,103,92,93,94,93,101,98,108,97,113,89,98,94,104,103,93,98,100,96,102,105,109,91,99,99,105,97,94,102,93,83,90,101,93,105,100,84,97,103,96,99,104,84,112,110,85,89,97,101,98,105,116,95,110,93,83,102,100,96,101,98,99,90,103,105,90,91,99,102,106,110,101,91,101,80,95,104,91,98,94,95,114,101,84,105,90,95,104,103,98,96,105,100,82,102,97,92,102,108,101,95,109,97,103,99,90,114,96,102,100,108,101,91,101,105,103,104,113,91,104,92,100,90,104,105,117,94,117,98,88,98,98,106,79,101,98,88,88,111,111,79,104,104,107,86,93,107,99,97,92,96,93,105,103,91,109,103,93,109,95,100,115,101,99,95,105,98,96,80,90,94,101,94,95,102,116,85,99,95,104,107,105,88,102,94,87,91,94,96,90,98,107,106,96,100,102,102,97,98,62,98,98,98,101,105,74,100,92,96,86,97,91,96,99,96,96,101,97,90,93,104,101,103,99,105,102,91,92,104,100,85,104,106,92,97,104,95,97,104,85,89,90,90,99,98,90,92,99,106,106,99,91,95,96,99,99,96,100,92,103,97,99,93,101,90,122,99,94,113,97,93,78,102,105,93,107,101,101,93,100,102,91,94,99,110,96,103,89,86,94,107,95,111,89,111,117,106,91,106,109,99,106,104,100,96,102,72,96,102,99,107,79,108,91,101,99,99,101,87,101,105,98,96,96,94,86,94,100,90,89,102,85,90,76,102,89,98,72,92,94,93,103,103,88,86,91,89,86,90,79,103,84,105,101,100,100,102,105,108,104,93,96,87,100,93,91,92,101,97,117,104,99,99,93,93,82,102,92,93,97,102,92,103,86,88,98,101,96,95,89,112,95,98,111,110,94,87,92,105,89,91,101,98,105,87,105,93,88,88,104,93,104,77,85,95,103,99,95,95,96,83,109,98,109,94,107,102,99,101,99,99,96,92,100,104,95,103,105,98,102,98,93,87,79,115,91,108,101,101,89,98,93,98,115,96,97,97,114,100,96,102,94,97,98,115,76,108,94,101,98,97,103,93,97,95,98,108,97,102,94,90,96,102,94,99,95,92,92,103,104,95,99,97,94,101,100,106,101,95,101,107,110,92,106,102,104,108,109,98,94,96,96,98,97,98,109,100,94,92,113,112,103,88,105,107,88,105,97,105,94,94,102,100,101,113,108,94,97,101,77,108,108,106,105,117,105,108,109,109,110,102,92,103,118,104,103,94,107,102,96,106,112,104,91,100,103,120,85,87,91,104,100,104,109,107,91,91,87,82,111,105,103,96,97,102,92,92,96,99,101,85,122,112,85,95,118,97,106,109,92,88,100,89,88,95,105,105,91,111,95,101,99,113,113,87,121,91,101,91,94,93,95,104,92,92,91,98,113,106,106,92,122,104,98,102,111,103,109,111,106,90,84,101,101,90,82,102,116,98,98,100,95,95,102,87,99,97,98,92,85,107,112,95,99,83,88,97,104,97,93,99,104,91,94,74,87,106,116,91,107,101,91,93,101,99,97,88,101,92,86,84,94,100,101,110,109,100,100,97,102,98,99,101,110,113,110,99,101,103,79,86,107,93,99,106,99,86,105,91,94,99,91,101,90,96,96,102,111,91,98,92,103,102,96,89,96,109,102,91,106,124,96,100,90,98,105,116,87,98,92,106,87,96,105,96,107,102,100,98,99,97,91,100,92,110,88,91,104,88,101,100,87,92,87,101,91,115,102,93,99,98,96,100,94,112,95,98,101,101,100,103,93,117,91,93,105,94,91,94,105,95,97,94,91,96,86,98,110,89,106,75,99,100,99,93,108,102,108,98,94,99,94,88,100,113,105,89,85,101,104,113,91,100,87,83,91,99,109,94,105,115,113,102,110,96,108,104,107,91,95,100,100,105,101,74,104,94,108,82,99,115,93,110,109,104,95,89,98,109,113,101,102,108,106,104,94,98,92,96,90,104,100,97,100,94,100,97,91,95,104,112,92,105,105,117,92,97,100,103,104,93,87,97,101,100,101,98,92,102,101,99,87,79,89,96,105,86,94,91,95,98,88,96,86,96,111,111,96,111,99,96,91,102,109,96,87,94,96,88,111,105,106,95,96,108,95,104,99,110,90,95,107,91,105,103,94,101,94,103,108,98,86,95,94,99,94,100,91,94,97,104,96,91,110,99,94,107,113,86,101,96,83,100,93,94,106,100,96,91,100,106,78,105,97,119,97,108,108,91,126,96,99,111,90,104,102,103,113,96,104,89,104,105,100,107,104,111,95,98,100,104,93,102,102,97,101,93,101,92,97,111,113,99,96,105,105,102,97,93,96,105,100,102,109,99,99,104,95,106,125,102,105,99,91,94,109,99,99,87,99,103,107,95,101,94,105,105,92,88,102,61,102,88,96,113,121,99,92,99,98,103,98,102,104,104,103,105,103,91,98,113,106,94,101,90,103,110,83,102,97,103,113,98,98,79,82,103,80,103,102,100,103,109,88,103,85,107,92,104,75,103,111,98,91,92,82,98,98,98,94,107,105,105,98,99,101,93,107,109,101,95,108,101,84,87,97,98,83,108,105,88,103,101,105,93,94,100,93,87,90,100,93,107,93,97,101,100,100,103,90,112,103,103,105,105,102,99,81,109,105,96,103,89,98,96,95,97,101,93,103,90,100,100,97,115,99,105,113,90,98,105,113,110,108,90,81,93,100,108,91,91,93,96,91,105,91,100,89,89,105,102,108,99,90,92,100,92,109,99,93,83,90,101,83,101,86,102,95,103,104,92,97,94,85,100,101,93,95,97,117,92,96,95,99,95,92,98,103,111,105,96,95,91,98,91,103,96,100,113,79,91,99,98,136,105,98,92,91,94,101,92,98,109,96,91,102,97,118,90,86,94,90,101,95,90,98,94,108,95,96,94,94,87,94,101,110,113,105,104,98,73,90,101,93,96,99,109,110,99,98,105,96,98,102,105,85,99,94,84,99,69,82,106,99,90,92,91,114,104,104,95,100,87,102,99,99,103,111,97,87,83,95,91,79,102,102,105,99,95,114,91,109,91,87,110,74,97,78,98,105,95,100,89,103,102,75,109,110,93,91,99,92,96,106,102,99,98,80,90,100,102,117,87,101,94,83,90,101,101,89,92,103,101,100,94,81,106,96,92,92,113,95,79,100,102,111,108,102,97,87,102,97,96,89,94,108,111,113,97,90,80, +387.47195,97,99,90,100,87,100,115,68,86,114,95,91,92,113,112,106,113,100,93,106,111,91,96,105,89,105,99,87,87,58,105,125,101,99,109,104,83,102,94,93,97,93,98,112,108,104,99,105,90,101,101,95,103,93,117,95,112,96,102,105,129,81,98,100,101,92,73,105,98,99,105,95,83,77,100,107,96,91,95,96,103,108,97,94,98,95,104,95,71,118,101,117,100,104,89,92,104,91,105,94,115,96,97,99,100,81,100,95,94,92,99,109,103,101,96,110,83,101,101,91,109,97,112,104,106,96,108,104,111,102,87,92,109,106,94,104,91,98,88,82,89,106,98,105,104,99,80,108,88,100,97,95,98,93,104,89,104,95,104,101,102,108,99,102,97,89,99,98,106,84,91,104,94,107,95,108,109,82,99,94,100,106,110,109,93,102,107,90,107,101,95,88,79,99,109,73,94,91,105,105,101,94,84,100,105,107,118,103,110,104,118,111,108,101,96,108,103,106,99,113,117,91,117,103,105,101,99,95,106,99,92,116,110,105,96,100,93,109,96,91,105,94,105,99,115,96,103,108,104,107,110,107,90,97,87,122,108,106,100,93,101,105,95,101,102,104,111,108,102,95,97,95,98,95,109,98,99,106,97,92,103,104,77,92,98,99,100,112,90,108,93,101,81,111,102,96,96,94,107,113,90,102,95,114,93,107,106,96,98,95,90,96,106,109,111,98,93,79,87,100,100,91,103,102,103,93,101,96,105,105,95,99,92,109,91,100,94,92,82,92,91,105,98,87,87,93,93,94,103,87,97,68,83,94,105,96,108,108,112,114,104,99,100,99,100,87,91,100,111,112,100,91,96,107,98,100,97,98,93,97,107,103,97,99,95,105,96,81,93,99,108,99,97,94,95,72,79,87,99,95,97,99,95,97,109,106,97,98,109,104,96,96,105,105,115,83,100,93,104,86,97,84,85,99,94,90,98,100,102,103,88,94,99,88,91,93,95,107,124,125,107,101,111,94,87,98,99,88,114,106,97,107,106,110,100,96,108,83,105,112,86,117,118,91,94,112,105,98,117,65,100,107,99,103,102,95,94,103,102,92,99,109,87,85,105,100,104,113,98,97,91,103,103,103,101,98,96,105,105,138,97,100,100,72,96,93,88,102,90,90,106,91,105,111,93,100,93,102,111,92,92,92,108,100,101,87,103,95,105,97,105,98,98,78,95,101,88,106,104,104,87,106,98,103,101,95,96,97,111,99,121,108,104,117,107,75,94,104,104,100,103,110,97,78,96,109,104,101,94,96,92,104,97,109,100,94,100,90,85,105,112,97,100,97,114,90,97,102,96,99,95,102,96,95,108,103,110,109,100,88,99,97,103,98,100,94,95,86,104,101,104,98,103,91,94,70,109,93,106,97,98,104,109,88,104,103,108,99,101,110,95,95,104,93,113,93,100,93,112,94,103,106,85,97,101,95,73,98,93,100,99,97,96,101,110,97,97,102,106,108,100,99,88,97,99,102,103,93,99,96,98,106,95,94,101,103,100,100,107,93,103,107,104,102,98,103,94,92,109,101,79,107,96,90,99,100,99,109,97,97,101,92,96,104,103,104,113,108,89,102,99,90,107,95,101,105,101,89,96,105,113,101,94,105,100,93,100,103,96,111,105,116,75,108,96,105,103,96,94,100,112,105,96,106,96,111,95,95,76,103,109,89,87,107,100,100,92,108,97,105,100,109,105,103,96,110,101,105,104,91,96,94,109,96,96,102,99,95,95,98,99,95,102,110,96,98,95,117,102,102,110,93,100,106,100,104,100,96,109,83,100,104,106,95,102,108,106,103,104,106,112,93,107,103,92,84,102,98,97,99,104,113,99,88,95,104,97,93,92,89,92,104,105,99,93,104,85,98,108,102,108,90,100,94,90,94,105,100,103,85,101,96,89,106,94,97,97,84,96,99,94,103,109,110,100,128,94,94,108,99,93,98,92,102,102,106,103,91,98,96,83,118,102,102,106,96,103,86,95,100,94,106,100,95,104,98,88,81,86,91,117,100,102,100,105,91,98,103,98,86,119,98,100,99,97,70,79,100,92,94,95,105,95,94,100,82,95,99,98,102,89,99,112,101,95,97,88,88,99,94,90,101,101,101,90,97,104,102,98,96,99,103,104,108,96,94,93,101,95,99,100,97,98,97,83,111,97,92,108,98,94,102,105,94,93,96,105,104,112,75,89,101,97,103,133,98,99,99,88,93,98,91,107,74,109,91,85,98,88,98,96,104,90,91,101,104,107,88,98,88,108,91,89,109,108,94,79,104,101,98,83,103,98,92,107,95,99,109,118,96,98,100,95,105,96,98,95,99,103,94,95,116,88,100,91,99,88,100,99,106,88,99,103,96,105,109,102,104,102,108,100,116,93,97,109,102,98,107,95,95,92,104,86,98,101,101,98,97,97,100,94,106,93,103,101,111,105,83,100,99,83,99,104,100,89,113,97,94,94,97,101,95,83,106,98,95,85,92,115,91,84,91,92,94,113,99,85,101,98,96,103,96,93,98,112,106,91,95,99,94,88,100,110,71,94,91,103,96,90,99,101,100,70,80,113,91,96,96,100,99,104,105,123,93,99,99,108,83,104,103,100,101,98,95,100,94,100,102,107,108,93,103,90,100,102,97,103,96,101,114,102,94,93,94,107,96,111,102,121,98,100,95,77,106,99,109,71,92,96,104,89,99,90,109,102,117,84,109,101,105,103,105,108,101,100,111,98,101,94,100,100,110,109,100,95,96,101,105,100,93,98,94,105,111,89,107,86,101,86,99,83,92,90,87,97,99,110,103,88,107,97,101,101,106,100,99,106,91,105,104,99,78,98,114,100,113,99,93,83,105,97,101,92,103,99,85,97,110,104,103,95,94,101,104,95,113,98,95,98,105,108,98,101,101,101,87,100,104,98,106,86,94,87,99,92,100,98,100,98,94,87,116,94,88,98,92,101,109,103,96,101,102,97,93,110,101,91,96,94,95,104,85,105,112,126,98,90,101,106,101,102,95,93,93,106,91,109,86,111,80,76,100,103,102,99,90,103,101,106,105,95,89,89,102,101,104,95,98,86,94,100,94,98,126,104,90,101,102,105,112,98,108,87,106,101,82,100,91,108,106,110,100,106,95,96,95,98,98,98,95,94,80,97,112,95,100,106,91,104,88,68,99,104,98,91,86,84,99,96,102,108,98,111,104,98,92,98,97,98,113,106,97,98,106,98,97,101,107,99,103,99,102,106,83,101,96,97,90,98,85,91,89,90,92,97,102,88,79,102,86,104,99,96,88,99,105,90,108,100,102,85,101,77,124,91,108,113,92,92,95,95,93,94,81,108,96,101,108,91,95,106,102,95,103,108,99,102,92,117,96,92,86,98,108,101,99,109,101,100,110,93,99,95,104,93,105,102,94,84,90,87,103,96,80,80,100,98,95,98,98,96,112,107,68,92,103,94,95,105,90,94,103,94,106,98,105,108,111,88,99,112,96,98,106,95,104,92,77,89,104,100,81,68,89,102,109,93,108,92,106,110,103,82,84,109,97,91,97,89,93,100,106,92,93,105,111,101,108,101,99,97,79,104,110,87,99,101,96,97,79,76,102,101,105,111,90,101,82,90,91,91,109,106,98,109,96,92,91,93,103,102,94,98,94,105,105,104,98,86,77,91,93,98,101,97,93,100,84,87,102,95,97,99,101,98,88,104,91,88,114,97,87,102,90,96,103,101,100,99,110,101,96,114,100,104,95,97,93,100,105,93,97,97,95,101,88,100,92,100,95,93,101,72,110,101,96,99,102,88,116,106,99,96,101,97,103,100,96,113,90,98,101,95,102,92,99,95,101,111,100,109,100,93,107,99,107,115,90,88,91,113,98,101,83,89,108,100,103,115,99,107,85,103,84,98,97,96,109,101,75,96,101,99,87,99,102,108,91,94,114,98,106,93,105,100,110,106,102,99,106,104,102,99,95,105,100,98,92,109,110,101,91,113,103,94,97,112,96,118,96,104,87,98,107,113,102,96,91,95,106,96,89,99,100,96,92,97,100,102,101,102,94,92,106,101,109,94,99,98,87,94,106,78,109,106,99,92,89,100,94,97,96,101,84,96,101,107,99,103,96,96,97,93,83,94,101,88,93,110,99,103,95,83,119,113,101,91,100,86,101,113,90,91,100,74,100,77,101,107,94,95,96,113,101,99,98,103,83,98,93,93,111,105,110,61,89,91,99,112,111,96,95,108,88,98,85,107,101,91,104,95,98,96,99,92,107,95,102,92,103,100,106,92,105,106,94,95,99,99,98,99,76,93,102,89,97,107,104,103,100,101,100,101,90,97,108,106,103,104,101,96,99,98,99,108,90,98,96,100,96,99,98,96,97,95,109,98,103,94,101,124,94,91,87,87,93,92,84,95,120,101,100,101,109,96,94,102,85,105,97,83,104,94,94,88,95,101,106,83,96,98,113,98,117,108,111,95,85,94,90,97,91,87,86,105,101,98,90,95,76,87,99,93,88,106,101,91,85,98,107,98,98,88,87,101,95,92,97,102,98,93,95,95,98,108,103,95,92,88,96,101,105,101,97,115,88,90,108,96,89,110,94,98,93,99,88,106,107,75,102,93,88,92,91,88,100,100,97,106,92,84,95,113,105,108,89,105,102,91,84,111,94,67,101,109,107,102,97,96,94,98,95,108,92,96,93,95,105,96,80,114,90,105,94,90,105,84,117,98,95,97,103,98,102,99,103,90,87,101,100,100,88,104,84,76,96,102,106,90,106,105,93,111,89,89,92,91,96,94,102,101,104,98,97,101,106,108,84,113,91,100,110,92,99,99,94,80,111,89,87,106,106,102,93,105,96,96,110,87,80, +387.612,98,94,92,106,89,100,132,98,93,112,103,71,97,99,87,102,100,103,71,88,119,76,88,104,93,91,101,89,93,86,105,113,82,91,101,105,96,92,95,92,89,98,96,80,100,106,107,103,95,96,97,105,98,91,95,92,105,97,104,96,104,75,94,84,105,109,100,100,104,89,103,115,98,75,92,101,96,102,100,97,92,105,103,102,102,79,80,98,93,109,103,109,100,65,105,91,91,104,78,100,102,102,98,93,112,104,97,102,98,104,98,92,99,101,96,90,100,98,97,93,109,93,99,117,105,107,95,92,101,102,80,100,100,79,94,93,92,99,97,94,89,89,99,66,98,98,106,89,103,95,99,106,98,97,97,94,104,94,96,92,93,102,102,92,104,94,95,105,98,97,105,99,97,103,95,95,96,77,108,96,89,103,98,98,97,98,112,84,97,87,101,97,76,100,93,108,97,108,94,121,107,88,102,91,90,101,92,87,92,97,88,99,105,113,103,100,86,92,91,101,92,110,94,106,99,105,102,109,86,105,92,113,91,100,105,98,92,112,96,102,95,90,101,117,95,88,100,97,95,96,92,100,93,96,114,95,103,99,103,106,67,99,97,98,79,98,101,89,94,91,106,94,104,97,110,98,101,91,89,98,105,98,98,94,100,105,95,103,97,94,95,95,102,91,104,108,99,98,106,91,104,104,94,106,79,97,120,98,100,99,96,91,104,100,105,102,102,98,109,103,86,101,109,95,104,85,100,93,111,94,114,92,76,95,110,98,100,95,116,84,96,97,97,105,113,102,102,98,90,95,87,89,107,104,99,98,100,95,106,101,87,90,94,87,95,93,88,99,98,96,96,111,113,107,82,92,110,104,96,97,102,95,94,95,103,96,95,98,88,97,98,91,77,105,100,91,91,93,102,114,109,117,96,93,87,106,107,119,99,100,94,91,98,105,95,88,89,102,105,100,92,95,100,108,111,101,104,91,100,99,104,96,102,86,97,88,92,113,99,98,93,99,101,102,96,105,87,95,95,103,90,104,101,107,94,97,106,100,108,92,98,69,104,100,112,109,107,80,99,94,96,107,96,97,98,76,100,70,100,95,106,104,102,90,98,110,82,108,98,67,102,104,109,87,94,96,98,101,109,99,101,95,104,108,107,94,93,93,100,104,96,99,101,95,105,98,89,97,99,99,104,110,99,95,89,114,103,93,96,83,87,117,98,102,76,109,106,88,96,109,94,91,112,96,97,98,99,136,108,102,102,98,100,89,91,115,93,97,100,95,100,94,105,102,109,105,105,96,101,111,117,109,93,102,106,93,101,100,95,102,97,90,100,97,100,104,101,112,102,101,105,90,95,97,100,105,88,99,108,97,101,98,101,96,105,115,93,106,97,103,89,106,103,100,94,111,98,100,99,106,99,99,95,108,87,81,91,92,100,97,92,88,102,103,75,95,105,103,92,104,109,82,100,69,100,103,93,88,99,114,92,123,98,108,105,95,105,103,108,102,107,114,119,110,92,114,100,96,110,97,108,96,99,99,92,96,100,97,98,91,99,95,119,83,94,100,99,98,107,91,97,99,100,108,106,98,102,87,104,85,96,87,105,101,98,111,106,98,89,86,95,99,105,95,97,65,92,109,91,95,110,101,77,96,91,100,92,102,107,89,128,95,104,105,107,98,97,77,100,95,89,93,107,106,105,92,101,100,111,106,100,101,107,99,98,103,97,92,104,101,100,99,96,101,85,108,87,101,96,87,104,110,98,97,101,91,102,89,100,81,107,87,96,109,104,114,105,96,86,78,99,112,91,101,105,97,96,92,102,83,101,107,93,92,106,103,96,101,106,86,104,104,99,111,96,101,103,102,96,121,102,98,102,108,96,100,102,109,99,105,105,99,97,100,79,100,105,91,110,89,89,107,89,99,92,100,97,99,105,89,96,101,97,100,103,87,106,100,92,114,102,95,100,100,106,100,99,94,91,124,96,102,100,106,97,96,111,104,97,95,103,100,102,113,108,91,96,94,106,103,114,113,94,105,109,94,108,109,99,94,97,101,101,98,91,107,87,103,87,74,106,99,99,99,94,97,105,106,101,110,88,101,109,103,105,90,88,100,98,86,105,107,95,105,92,107,105,105,96,105,98,100,101,96,94,93,103,96,97,117,101,98,97,90,105,97,101,92,100,115,114,98,100,96,103,92,86,101,80,98,95,112,96,91,94,100,106,88,95,99,94,107,108,87,98,95,96,92,104,83,96,99,98,110,99,100,97,100,99,98,100,97,101,93,104,101,98,101,104,95,83,101,108,101,102,89,91,102,93,91,91,115,93,74,114,111,94,104,123,95,96,96,94,102,100,94,102,106,92,93,101,97,82,117,90,104,109,107,108,104,112,97,94,95,96,95,98,99,103,106,97,108,96,104,92,98,100,102,96,102,96,109,96,87,106,95,90,91,92,97,102,96,89,112,87,95,97,101,95,114,101,98,101,98,109,91,98,96,108,105,116,92,104,106,96,95,94,95,112,105,93,102,93,99,95,90,80,91,86,102,83,95,91,89,92,106,104,113,91,94,105,113,92,81,101,87,113,103,93,103,98,91,99,111,97,81,104,96,92,98,111,106,107,97,102,105,87,108,101,93,106,95,111,82,95,95,104,92,99,92,91,100,104,94,95,97,88,95,102,101,102,98,85,104,88,98,105,100,97,106,98,94,93,80,102,93,95,95,101,89,96,99,102,93,103,90,90,112,85,107,99,94,93,117,109,88,72,105,104,100,104,96,98,121,107,106,112,98,105,84,103,94,95,102,106,75,101,108,108,99,98,99,76,96,100,107,101,102,97,100,103,97,102,102,94,92,76,102,100,86,98,88,91,97,117,104,102,96,101,104,100,102,87,93,86,91,102,94,100,98,107,90,108,96,95,99,111,105,91,107,109,98,89,97,91,90,103,104,97,101,97,108,97,95,99,93,99,93,91,91,95,99,96,100,97,103,95,87,111,91,104,105,92,81,85,101,113,101,93,99,92,95,98,96,105,92,95,91,90,94,103,98,104,84,98,85,91,93,106,109,105,91,90,98,103,85,120,106,96,98,107,91,96,94,95,95,96,109,112,106,105,90,91,107,93,90,81,101,118,103,99,97,96,111,98,92,95,101,99,90,97,91,96,78,106,103,106,88,113,105,100,97,68,88,109,96,113,102,95,91,87,92,95,102,92,111,73,96,91,99,103,102,104,99,102,104,101,93,94,109,99,99,120,110,108,91,91,107,106,109,98,99,88,104,98,104,77,96,106,101,98,87,104,108,98,99,102,104,100,90,113,111,101,109,96,87,90,90,92,106,93,106,93,96,95,90,106,97,102,99,97,112,101,100,97,87,99,102,102,93,93,98,92,103,107,99,96,93,98,100,96,89,96,86,100,97,97,91,91,104,88,94,117,99,89,104,83,107,96,105,112,107,103,97,101,105,96,101,95,104,97,105,105,94,97,99,106,115,95,93,99,105,86,108,91,79,90,111,100,84,93,102,97,105,106,94,94,111,128,98,106,95,95,89,78,93,89,102,92,108,111,98,101,95,108,98,109,110,87,88,91,90,94,99,102,88,95,103,104,103,99,108,90,98,104,101,90,91,85,91,94,101,102,102,93,79,95,104,93,95,96,83,105,95,87,102,97,96,100,98,111,100,103,105,95,95,117,102,103,91,107,101,100,91,91,98,106,91,81,106,97,100,99,83,98,104,106,104,97,95,97,87,96,102,103,99,100,106,103,109,100,91,106,100,89,90,92,83,99,106,91,96,97,110,108,92,102,107,83,109,113,110,101,87,104,107,88,100,113,106,93,117,109,94,97,96,117,95,93,101,95,105,111,93,101,83,109,102,102,100,98,96,100,94,103,90,94,94,97,103,86,89,111,103,107,108,92,95,95,102,99,91,117,98,101,100,81,108,96,108,97,97,92,95,92,101,103,100,83,109,95,98,89,97,104,94,105,88,95,106,99,107,78,116,93,89,105,95,112,102,103,104,110,111,113,89,101,96,110,108,93,106,98,91,116,102,96,87,103,90,112,91,104,101,87,103,97,104,87,94,97,98,91,90,68,100,102,92,103,107,100,102,108,94,97,102,99,101,100,93,91,92,100,101,96,108,87,105,102,87,97,105,105,89,91,115,93,98,96,90,108,80,94,90,103,78,101,103,99,94,91,95,110,96,103,104,100,87,105,101,105,91,96,85,96,99,111,106,107,95,89,104,85,94,100,106,102,90,78,90,96,96,112,89,112,95,99,89,92,96,109,104,100,102,105,96,97,98,104,102,96,109,104,96,105,109,108,96,94,115,109,76,87,94,106,84,70,99,90,88,91,113,110,136,95,113,112,111,100,104,101,102,91,105,95,109,105,95,100,101,96,104,99,91,101,93,92,110,81,107,114,85,86,95,107,94,95,102,92,92,102,95,100,102,123,106,93,105,100,102,117,85,94,90,117,90,114,92,100,95,91,110,96,101,96,98,88,102,103,94,87,97,93,103,97,104,113,87,109,96,97,93,91,99,96,96,107,91,95,92,113,102,103,102,82,98,91,104,95,96,57,87,94,114,112,101,105,94,109,105,94,91,97,93,80,106,93,105,97,96,99,101,94,106,101,95,90,98,104,84,95,98,100,84,100,83,93,114,99,87,114,94,106,107,92,91,105,96,96,86,95,91,97,96,106,96,105,110,92,81,94,100,104,103,95,93,102,99,93,99,103,92,101,97,101,97,97,104,112,101,104,92,104,94,91,105,119,92,95,101,107,98,108,98,106,135,101,104,102,98,108,86,97,105,87,94,116,99,121,100,80,99,97,96,83,104,89,100,108,98,84,95,90,96,105,95,107,99,105,97,113,108,94,89,104,94,99,80,103,92, +387.75204,101,99,82,99,96,91,80,123,83,102,96,100,82,94,90,102,84,87,108,98,99,79,97,108,95,105,108,104,108,94,95,113,105,109,99,94,96,86,91,105,80,94,102,95,99,99,92,111,95,105,103,96,103,108,89,112,66,106,90,85,105,92,82,97,96,106,93,109,128,95,96,101,104,100,89,108,87,103,91,98,92,94,107,98,102,97,95,104,84,87,104,100,101,99,112,110,101,99,101,94,100,101,101,97,95,92,106,95,86,109,91,100,97,108,69,101,63,101,96,75,95,96,86,98,102,86,110,87,117,102,84,99,100,98,102,99,104,95,94,86,92,103,97,88,102,93,99,98,94,110,91,91,98,87,106,91,101,84,83,101,97,93,87,106,101,101,100,89,94,98,105,98,101,111,100,90,89,99,99,94,81,101,90,101,104,90,95,85,100,104,100,94,97,95,96,96,95,99,97,95,95,98,95,119,93,105,94,89,103,102,114,100,98,103,94,106,92,113,97,92,97,104,97,99,96,108,92,109,98,105,103,102,102,108,98,98,105,92,105,95,92,77,104,101,92,91,99,106,99,103,98,104,105,97,96,101,67,113,94,105,83,107,100,100,83,111,103,106,101,83,84,96,98,101,100,102,100,95,91,95,103,111,107,105,82,93,102,102,111,107,84,111,104,89,91,141,98,94,100,99,94,103,96,109,97,116,107,107,86,105,98,106,102,105,105,106,105,99,105,94,103,95,93,105,107,100,101,86,83,101,103,91,109,96,96,97,94,98,94,99,100,100,101,96,95,112,85,106,116,96,99,82,101,102,108,103,91,106,111,106,90,108,86,92,106,96,104,109,104,101,101,103,110,101,106,91,96,102,97,104,108,76,87,96,108,84,98,100,92,96,101,89,83,101,99,118,99,101,99,103,95,93,95,100,96,102,99,113,113,103,91,90,97,105,96,92,97,104,102,97,97,102,91,99,105,91,102,86,95,109,101,110,87,89,92,104,99,112,103,97,92,99,101,86,104,97,89,94,102,95,92,100,88,93,101,94,103,88,108,93,90,100,106,104,94,106,104,102,104,96,103,117,107,108,105,91,94,112,110,102,111,108,108,104,108,71,103,92,106,95,107,104,100,116,92,110,105,112,100,103,100,94,91,94,94,104,93,101,98,114,98,96,100,92,100,105,89,95,100,94,111,98,98,94,107,95,100,100,104,103,112,90,106,85,92,99,99,86,109,90,116,103,113,92,108,91,90,100,116,104,96,99,99,92,108,97,105,94,99,94,95,86,95,102,98,101,98,105,105,82,82,102,104,92,73,98,90,86,91,96,106,89,107,103,95,101,96,106,102,97,96,106,114,96,110,93,93,96,99,106,88,88,93,98,102,98,104,74,106,96,94,105,101,99,98,91,96,100,77,107,138,87,107,89,91,105,102,96,101,93,99,100,89,99,104,104,106,104,109,97,101,102,115,100,93,93,99,86,103,94,95,103,99,105,99,108,107,98,102,99,114,103,102,87,87,90,104,93,103,86,101,98,105,101,97,113,98,102,96,95,92,100,90,85,86,99,99,93,91,96,108,105,107,99,107,97,107,95,104,96,117,90,101,74,92,118,104,99,75,98,97,98,97,93,96,104,97,92,110,91,101,99,102,104,102,128,101,100,98,101,101,79,111,102,86,105,100,101,98,86,106,107,95,98,102,104,104,104,90,100,105,88,96,96,99,98,98,115,101,108,91,93,89,96,90,101,87,112,107,105,107,107,105,102,102,99,107,104,108,86,109,96,86,95,103,91,104,93,102,105,105,113,90,101,94,98,109,102,99,112,86,94,103,103,114,102,91,97,98,79,107,104,105,108,105,129,95,94,92,85,101,100,115,97,107,109,101,96,105,88,106,90,96,92,96,97,108,101,105,94,102,109,110,101,118,79,103,86,100,89,96,102,95,114,114,97,101,105,91,107,102,97,105,91,95,107,99,94,103,99,104,101,91,94,93,102,105,100,91,94,108,110,103,95,103,102,88,102,104,74,102,101,101,111,98,98,89,95,99,108,101,106,105,81,72,100,101,100,99,110,103,105,106,92,100,109,96,99,110,98,104,91,108,97,102,106,92,83,98,98,96,93,105,100,96,100,94,98,99,113,102,100,87,88,101,99,122,111,93,98,105,79,90,75,103,91,100,108,104,115,103,108,94,101,108,99,96,102,91,114,101,98,104,77,107,91,95,102,111,95,91,100,89,97,101,95,95,96,105,91,90,92,112,109,96,92,100,94,106,102,93,83,102,101,89,106,103,97,98,86,98,100,93,108,91,95,96,95,80,87,108,104,103,85,99,101,92,101,91,83,98,103,104,76,116,94,99,100,84,95,87,87,85,86,95,96,90,95,96,110,109,112,103,98,96,103,94,102,107,115,102,101,95,101,101,93,87,108,100,83,95,98,93,103,101,93,93,92,89,102,86,100,96,105,115,106,97,97,113,93,95,108,99,97,87,109,103,89,91,103,100,123,91,103,102,92,83,101,97,95,96,99,71,90,112,100,91,84,82,90,82,93,92,87,110,102,95,95,92,105,110,95,115,89,113,95,93,106,101,93,100,90,96,123,109,103,94,98,106,96,95,108,95,123,100,93,92,103,95,124,106,96,86,104,97,101,105,97,92,84,89,96,83,105,94,104,96,98,97,102,99,117,73,109,112,113,108,94,94,103,87,103,98,99,92,104,92,90,87,102,103,104,101,104,98,110,100,98,104,113,100,97,103,96,98,113,99,91,90,102,98,108,102,98,100,105,101,97,95,99,101,105,101,94,91,100,96,88,90,101,91,90,104,79,103,93,99,98,97,109,110,104,103,102,87,92,95,108,88,103,104,107,99,95,106,90,107,95,101,119,99,97,105,105,96,98,81,89,94,119,107,106,100,106,103,93,116,103,109,93,95,120,92,104,89,96,98,95,91,99,94,91,91,105,108,98,120,94,91,93,87,93,102,97,94,113,93,108,107,94,92,79,102,111,121,97,103,90,98,103,91,96,96,92,102,106,104,101,102,105,102,114,96,98,83,100,108,105,101,108,89,90,97,93,82,121,104,100,90,86,104,103,99,92,100,103,92,105,100,102,98,98,106,107,102,86,105,99,101,84,90,106,102,90,109,105,83,107,98,99,91,94,107,95,101,96,117,98,98,112,110,96,97,95,92,106,99,102,102,93,94,104,94,94,92,104,97,116,117,95,98,94,86,99,103,94,106,96,101,96,95,84,98,110,101,104,101,97,91,108,104,101,102,94,93,101,100,101,99,83,90,88,110,101,107,99,109,110,121,96,83,97,101,104,123,112,105,95,106,95,94,96,97,94,91,110,105,104,98,95,99,103,87,117,95,98,100,96,95,99,104,102,108,111,98,103,102,97,105,118,97,93,98,94,93,103,108,108,75,109,103,99,91,98,111,105,114,105,101,104,110,97,98,116,81,106,94,111,95,78,105,103,93,81,97,100,98,100,100,88,97,96,93,94,97,115,95,100,97,93,99,109,102,98,100,106,116,106,98,100,98,105,99,99,102,101,110,122,94,103,107,97,81,97,98,104,95,114,96,91,102,91,93,98,96,83,108,103,99,92,95,95,101,106,91,89,105,94,92,99,99,103,111,104,113,97,95,101,108,107,107,108,91,107,94,101,102,96,100,105,99,105,99,109,99,88,102,102,90,109,99,106,106,107,92,84,101,93,107,92,103,95,96,96,102,104,105,95,102,87,85,87,102,102,87,107,97,87,105,100,100,97,93,101,98,101,103,77,102,89,99,89,85,116,104,85,105,108,97,100,91,76,111,91,101,98,97,106,85,111,110,91,89,107,100,97,90,105,101,94,87,112,96,95,89,108,91,115,100,105,116,83,100,104,108,89,94,89,100,91,97,98,88,105,99,95,102,109,97,95,100,98,108,108,114,97,87,104,101,98,98,104,100,103,108,99,99,110,94,104,106,107,99,120,83,92,100,79,70,106,102,101,89,103,120,86,114,86,101,84,111,91,95,100,98,88,99,97,109,90,83,95,102,93,102,103,98,110,100,96,101,88,104,117,101,108,100,105,99,92,95,101,91,107,103,104,105,111,95,103,97,99,103,97,95,99,117,111,95,98,103,105,93,105,83,104,94,100,108,106,101,99,92,99,97,101,94,91,106,96,97,92,113,106,105,100,111,113,101,97,105,89,102,105,93,90,114,92,101,101,115,94,106,97,99,95,97,103,120,102,115,112,100,96,93,100,95,89,99,89,121,101,99,97,99,99,86,73,99,101,101,98,105,96,105,98,95,103,97,99,102,119,90,93,115,86,99,97,93,90,95,105,92,102,106,88,109,90,101,94,92,118,101,90,108,106,71,100,91,97,89,103,98,93,107,106,105,101,99,116,89,90,89,96,100,92,97,101,102,99,107,95,84,100,95,100,90,96,101,95,97,106,73,108,99,89,91,98,100,92,110,98,102,109,105,96,93,107,87,89,103,90,98,101,91,100,96,107,81,94,84,95,96,96,105,107,128,104,96,89,91,96,99,102,106,100,77,98,101,98,93,91,89,98,108,99,101,95,76,94,92,87,92,99,103,99,101,105,101,98,105,93,104,95,83,97,131,94,98,99,99,97,102,99,81,102,94,96,97,101,84,100,89,95,113,101,105,99,100,94,101,99,93,96,77,103,101,102,92,89,117,117,104,101,112,113,101,84,102,106,93,100,87,105,93,96,104,101,125,100,88,105,82,97,86,104,96,90,105,88,99,86,103,111,100,88,97,95,89,106,91,100,102,82,99,97,94,99,102,91,108,99,102,95,103,97,94,102,101,117,96,91,94,96,96,95,72,104,85,99,105,98,108,92,111,94,108,125,106,100,103,107,94,88,109,89,102,95,99,112, +387.89209,100,98,93,111,104,111,101,88,98,92,89,106,86,109,101,96,88,86,96,121,90,108,133,111,100,99,101,96,100,108,86,99,112,92,109,110,102,97,91,93,94,99,97,96,106,102,94,97,97,105,94,90,108,95,94,107,90,80,99,98,104,91,96,113,105,99,104,91,97,71,97,104,105,97,93,83,89,96,95,92,128,106,86,102,87,97,91,105,94,98,103,100,110,82,73,95,102,98,85,87,99,110,119,104,105,90,95,93,101,89,105,94,101,104,102,122,95,96,108,98,100,93,107,103,96,96,103,102,110,106,100,108,100,101,108,91,86,89,104,95,98,96,93,94,102,84,104,102,106,91,97,96,117,83,89,113,96,108,105,79,93,114,110,96,97,84,97,92,94,103,91,105,94,102,105,96,95,112,99,90,99,103,103,104,96,101,100,85,98,102,93,102,111,102,98,97,110,90,92,96,100,97,100,106,103,104,91,104,94,92,98,105,101,92,102,96,88,98,100,100,100,96,76,114,83,108,100,99,90,102,97,68,90,100,101,89,108,93,108,89,91,85,104,101,94,94,112,108,110,92,103,107,94,108,108,115,107,100,106,99,91,105,99,101,89,102,97,87,97,94,76,101,107,101,107,98,81,106,107,93,105,107,87,103,97,96,92,87,93,91,105,95,92,94,106,105,101,112,87,94,106,95,111,94,100,113,115,98,99,101,104,94,110,98,97,94,116,114,101,101,96,89,112,103,94,86,96,95,94,95,114,95,93,73,99,118,104,91,88,99,105,93,103,98,102,101,99,96,105,96,95,99,103,100,95,96,93,103,96,104,99,101,80,96,100,92,102,86,101,102,66,89,104,95,105,107,98,103,105,95,104,98,118,108,89,104,97,102,116,100,115,108,89,99,95,96,101,98,105,103,108,84,97,98,99,99,114,96,114,108,90,97,95,98,94,107,79,95,91,98,96,88,98,100,92,91,100,89,101,93,103,111,91,100,91,94,99,109,104,95,101,88,94,103,91,106,86,87,104,103,111,101,91,101,101,94,101,78,102,92,95,102,90,91,104,99,97,103,92,98,106,98,86,106,95,83,111,113,112,109,104,94,108,95,80,94,109,95,95,91,108,102,111,92,96,102,96,92,95,104,106,99,96,72,92,108,102,95,105,104,111,96,86,114,98,102,95,108,107,92,100,103,103,107,86,85,92,94,95,96,86,95,93,105,94,103,97,95,88,100,100,100,91,99,92,99,102,90,104,98,95,98,105,92,104,94,110,91,105,95,104,106,107,99,108,83,95,88,109,108,75,97,105,105,95,93,91,91,104,80,108,96,96,73,101,113,103,110,101,101,98,104,103,95,103,86,99,100,92,99,96,97,114,102,105,92,91,84,95,97,98,102,85,98,90,91,115,96,95,94,105,95,117,95,106,95,101,105,95,97,103,91,95,105,86,108,109,101,93,98,88,114,104,97,100,93,97,104,91,100,90,102,102,98,85,84,123,100,99,92,94,96,110,90,88,111,104,99,107,90,109,97,97,106,97,98,98,104,90,102,103,106,91,88,95,99,99,97,93,98,101,93,96,93,91,96,98,100,90,86,106,92,109,100,90,92,98,96,104,99,94,102,96,99,98,101,104,110,94,97,83,103,94,105,106,103,90,104,100,109,112,90,88,100,116,115,97,88,103,91,99,92,93,93,99,110,98,100,107,101,108,90,96,89,78,98,96,97,107,99,91,100,97,98,99,86,91,94,87,106,100,97,97,101,102,98,92,96,102,104,93,79,94,98,111,106,101,102,94,105,101,98,91,102,104,97,106,108,105,111,104,97,85,99,106,97,122,97,94,98,111,96,92,99,105,93,104,98,92,103,94,102,111,108,105,97,104,72,101,92,91,92,94,104,98,83,101,97,105,108,99,90,102,103,96,100,88,106,99,94,101,105,94,96,91,106,105,93,105,76,92,70,107,111,106,93,97,94,103,104,100,106,88,106,100,90,116,89,97,87,95,106,95,106,99,105,93,112,103,92,105,101,94,105,111,94,102,94,102,102,103,123,95,94,101,91,96,100,84,106,96,105,121,99,108,88,94,115,102,99,103,97,104,93,94,95,99,98,110,110,78,105,98,104,92,104,105,105,109,104,105,104,104,99,90,88,109,106,112,103,102,101,122,97,97,102,103,97,98,107,94,107,110,92,106,88,92,104,93,102,96,76,97,115,95,97,113,90,97,105,102,101,93,101,83,87,100,79,95,110,101,93,107,87,83,83,96,93,103,100,90,90,94,101,60,92,97,101,91,82,80,91,106,106,91,98,100,90,101,100,109,102,97,97,97,105,109,116,92,101,97,100,101,103,103,106,107,106,100,109,98,100,96,91,101,98,99,102,101,97,97,98,95,102,104,100,101,103,100,98,105,98,101,91,108,101,97,106,104,102,99,115,98,92,101,114,94,110,99,111,79,98,90,104,95,98,80,101,99,96,93,102,94,70,95,98,108,86,98,96,101,104,87,93,96,112,82,99,116,105,104,99,100,95,108,87,94,90,100,106,103,99,101,90,91,97,97,91,92,97,98,105,98,97,97,97,122,101,102,105,102,81,93,101,98,114,113,105,112,85,128,102,100,93,87,88,95,97,104,93,93,96,110,93,103,102,101,91,93,110,87,94,95,105,102,97,98,89,95,110,102,95,85,102,89,76,104,106,94,93,97,98,100,105,97,98,83,94,106,109,96,103,99,104,109,100,105,94,116,106,108,97,96,110,103,113,105,98,107,103,107,102,87,99,105,102,87,100,124,65,97,117,94,93,111,112,99,102,107,101,106,95,107,91,102,96,97,94,91,132,101,91,113,113,101,89,88,107,99,93,103,101,94,104,99,92,106,99,92,108,108,111,97,99,98,95,93,109,110,102,92,98,100,89,91,109,102,109,105,98,88,103,93,97,95,94,95,100,93,98,90,97,105,97,104,87,95,102,96,102,91,90,96,94,96,114,96,104,93,85,112,111,106,110,102,91,98,68,115,100,86,71,100,108,113,99,111,109,76,104,103,85,113,106,94,96,91,101,110,86,100,105,101,95,113,93,89,95,95,105,105,91,113,92,98,92,107,103,89,91,100,106,97,105,100,75,96,108,105,91,104,105,103,104,101,98,94,97,110,96,105,100,109,90,96,115,95,101,100,95,106,104,98,97,107,84,111,101,93,92,115,101,100,96,105,92,92,97,110,105,101,90,83,98,93,101,100,116,98,96,108,102,104,109,100,93,107,84,90,98,96,92,99,92,91,97,95,106,98,104,100,89,101,105,95,104,113,100,108,104,91,107,116,105,102,100,91,95,89,92,91,110,91,91,91,109,98,92,106,94,88,108,98,96,98,105,96,91,100,109,100,105,92,95,109,99,98,108,98,99,85,96,94,102,102,106,87,106,101,104,104,92,114,94,101,82,93,119,93,135,93,106,99,86,95,93,96,93,110,109,122,94,107,94,96,113,98,103,94,96,87,95,98,98,105,106,94,98,115,100,100,100,100,113,89,97,100,108,96,95,104,111,109,95,94,109,95,94,95,108,93,102,105,109,104,94,103,85,112,83,84,83,105,104,97,92,98,93,105,89,95,96,105,89,101,97,100,104,117,106,92,98,90,98,109,93,96,99,107,87,97,97,95,113,94,101,91,101,100,85,98,95,102,99,94,94,107,95,96,93,87,89,107,104,94,93,100,104,98,93,110,65,110,84,105,96,106,94,106,96,117,93,110,99,96,95,104,99,119,103,117,108,97,117,101,102,97,98,105,90,95,103,99,115,101,112,96,101,99,97,93,104,106,98,101,96,100,108,106,107,87,76,108,99,114,106,90,95,87,93,100,110,100,105,105,102,103,89,97,102,115,93,112,88,90,94,100,98,93,106,92,94,102,87,91,90,95,91,99,106,96,100,116,107,92,91,91,108,102,101,106,97,108,118,103,101,100,101,107,109,101,123,93,99,106,91,92,108,96,96,108,117,87,92,95,103,100,100,113,99,100,105,104,126,106,94,103,107,107,103,93,108,95,95,112,113,105,96,88,99,100,87,97,83,98,131,102,96,104,96,120,114,102,106,97,99,100,97,88,108,104,92,104,102,99,110,99,109,101,106,89,94,99,97,92,110,95,99,94,105,94,90,92,102,91,90,112,101,103,92,103,106,106,99,99,104,106,106,109,106,92,100,76,86,90,97,98,98,107,130,94,95,90,113,80,88,87,102,94,97,90,90,99,102,92,105,92,97,94,87,106,106,93,108,104,92,110,123,73,101,99,91,92,97,89,106,100,110,92,108,95,103,103,91,102,97,96,98,109,110,99,85,105,101,102,92,113,105,104,100,98,101,105,98,91,100,107,104,106,99,101,101,101,114,117,101,97,105,96,106,92,89,96,125,95,103,89,108,97,103,93,105,96,100,97,96,92,89,110,69,99,105,94,105,110,80,91,87,68,91,94,92,103,105,108,99,98,102,91,120,93,98,79,101,87,97,93,106,93,91,83,101,100,95,94,98,103,99,102,98,90,88,89,96,101,102,96,96,105,108,103,104,106,90,64,111,98,81,66,94,96,97,99,107,99,92,99,106,93,96,98,112,96,105,98,95,99,100,98,85,109,104,105,109,99,116,105,93,104,93,99,109,108,102,86,98,106,106,95,85,79,98,83,100,87,100,97,110,102,98,105,90,89,100,92,93,94,101,106,89,87,100,88,109,93,109,98,92,90,106,97,101,97,97,85,95,79,69,109,91,92,102,86,99,108,101,94,92,90,105,104,97,105,102,83,112,103,107,72,107,105,101,93,101,95,99,104,94,87,88,89,99,108,108,91,100,91,94,83,84,106,108,110,104,113,105,107,98,110,97,99,102,96,109,102,105,66,109,118,104, +388.03217,91,88,100,95,92,79,89,106,101,104,95,96,93,103,117,98,90,91,96,93,103,102,95,95,96,99,67,95,91,99,103,95,95,102,101,95,98,86,98,102,104,94,108,99,93,101,110,97,111,98,88,91,109,82,106,80,97,90,109,89,98,100,69,106,91,104,103,98,106,93,100,98,79,90,93,106,105,105,95,95,96,85,95,103,97,100,110,109,101,94,101,97,98,103,88,100,104,95,103,92,83,100,109,90,109,102,92,88,100,82,104,96,101,85,90,88,102,95,97,109,98,100,100,111,98,81,101,97,113,81,94,86,100,102,97,88,103,89,92,83,100,96,90,96,116,89,95,92,88,105,82,88,96,96,84,96,89,96,109,96,105,107,111,107,104,94,98,100,98,104,100,102,99,100,108,103,110,88,104,67,105,90,91,99,105,102,93,97,105,84,94,95,100,106,91,86,92,96,107,97,92,100,91,100,92,110,105,91,91,107,88,107,84,105,103,102,97,105,83,97,98,97,103,96,94,113,97,105,100,109,97,97,101,110,100,103,111,106,102,104,94,85,109,105,109,106,93,99,122,104,98,87,104,95,97,101,90,94,94,94,97,107,98,96,87,109,82,90,110,104,95,100,96,86,96,107,97,102,100,103,102,95,101,103,95,99,93,101,98,116,101,101,103,98,110,99,119,110,105,106,87,108,110,105,91,98,103,117,105,98,105,118,96,97,105,101,103,108,103,98,99,90,103,97,103,111,98,92,107,107,112,103,103,91,100,123,94,97,102,100,93,101,103,104,102,108,91,101,109,91,115,102,112,85,105,104,102,110,99,91,103,95,101,88,95,95,91,101,91,96,99,92,103,94,98,102,102,96,89,96,113,97,102,104,100,99,96,126,111,87,96,96,93,111,102,95,108,101,113,103,102,103,85,91,96,104,103,113,99,84,92,89,94,94,104,86,93,84,106,90,106,89,101,101,100,106,88,87,98,102,105,99,88,68,103,104,89,100,98,107,91,110,101,104,89,96,108,93,102,111,86,104,92,103,100,108,108,102,109,98,83,96,101,103,105,105,99,100,118,97,104,101,102,104,97,98,66,107,95,102,109,104,105,92,91,104,102,97,102,92,112,107,104,87,95,111,93,100,104,100,96,96,107,91,98,103,102,109,103,107,108,90,99,97,107,98,98,104,70,91,102,95,107,74,106,103,111,100,92,100,87,100,95,82,108,99,107,101,101,95,96,106,93,91,105,101,107,98,101,106,104,96,98,96,111,88,104,95,104,101,109,95,104,106,100,110,107,95,97,92,98,97,87,102,91,110,93,87,101,99,106,95,96,87,91,95,100,109,106,101,105,103,103,95,107,101,93,102,88,97,100,108,86,97,99,94,79,99,99,107,105,96,112,98,87,92,90,87,79,100,87,104,95,87,103,92,103,106,101,97,102,86,101,88,95,97,86,85,109,104,111,100,94,104,94,89,93,103,110,99,91,106,101,97,120,109,101,99,103,83,104,89,103,98,88,86,102,93,101,107,113,94,94,96,84,94,96,106,102,90,110,96,100,93,107,98,95,102,100,107,102,99,94,98,88,96,99,86,103,100,94,97,101,97,82,109,106,100,93,98,93,96,107,97,93,100,90,100,108,100,95,89,104,101,91,108,95,96,90,93,112,104,96,95,90,103,98,92,95,113,99,109,99,85,99,94,108,101,100,105,107,96,99,92,134,112,102,100,104,100,93,109,92,89,106,104,98,95,101,109,94,110,90,98,72,93,93,107,91,93,106,92,91,97,100,100,97,104,101,92,92,104,88,103,116,105,87,94,110,98,103,95,100,100,95,101,88,102,96,91,107,96,91,92,103,99,107,91,98,91,76,106,100,92,96,99,103,89,105,97,100,102,94,105,101,95,107,97,96,105,97,108,102,98,108,101,97,95,70,112,90,104,99,83,86,96,89,109,92,101,96,88,105,101,102,90,98,106,100,112,91,110,104,92,97,98,106,102,101,85,91,87,96,106,104,104,97,101,97,117,105,112,107,104,97,96,95,103,96,93,85,107,98,103,96,94,96,99,83,110,93,107,111,93,103,118,108,95,104,97,101,101,99,102,110,107,105,98,107,86,100,105,101,108,98,89,98,97,112,88,103,98,100,106,86,97,104,95,88,119,98,101,115,94,106,108,105,94,95,104,118,101,83,93,106,114,79,103,93,104,109,92,97,91,102,99,102,84,82,95,97,112,93,97,89,101,93,105,105,107,96,91,98,85,87,88,97,102,89,102,82,87,92,90,92,97,110,95,104,98,94,99,104,92,105,85,98,82,101,84,112,104,101,90,101,91,102,100,96,93,97,107,100,104,99,113,94,103,105,101,89,101,82,99,82,87,100,100,97,98,108,102,107,95,100,92,108,99,92,85,105,95,96,108,91,97,99,100,105,102,91,113,93,136,83,94,99,103,99,96,104,127,93,106,99,98,92,101,107,111,97,112,90,71,99,101,100,97,93,103,104,97,110,83,88,87,108,96,104,108,91,111,100,94,102,84,102,91,99,103,102,102,100,107,100,99,99,100,99,99,101,100,98,99,93,91,94,90,106,101,109,87,100,104,92,105,106,92,86,101,109,98,96,96,95,101,84,106,97,94,95,89,94,95,100,109,101,98,106,102,83,96,86,104,95,82,109,88,133,101,97,109,87,110,93,113,99,100,94,103,100,94,103,98,102,96,108,94,92,101,95,88,116,120,124,112,102,103,100,95,87,99,105,105,102,101,93,89,106,103,106,109,106,95,106,109,121,95,98,116,90,108,94,100,99,111,94,92,94,90,94,98,116,88,108,95,97,98,109,99,100,94,115,118,90,100,84,63,96,99,104,97,102,110,108,91,103,103,93,95,106,100,131,109,98,91,92,123,92,105,99,87,102,106,101,99,98,80,91,107,106,92,106,104,92,104,105,83,102,101,110,107,101,110,100,104,109,113,91,85,105,96,116,96,101,109,104,109,106,103,116,114,98,98,109,99,96,60,109,94,100,110,92,107,112,99,105,97,96,95,97,105,100,103,100,101,109,93,110,110,105,102,95,94,88,83,106,102,100,89,83,95,96,101,108,97,89,94,95,90,96,93,106,101,103,100,91,111,98,98,94,87,105,103,93,94,87,103,102,89,92,85,104,97,104,103,98,97,93,98,103,90,100,95,105,99,101,103,103,95,101,93,88,94,97,91,99,95,89,97,101,89,91,95,91,94,110,97,121,101,100,104,94,109,95,95,99,98,98,103,112,90,96,100,93,108,95,102,102,97,91,110,108,100,111,99,102,98,92,102,105,96,111,109,111,89,96,87,98,81,91,109,103,94,98,109,90,106,100,104,88,101,112,101,95,104,96,105,104,105,106,100,97,96,108,101,83,102,97,102,93,105,94,94,94,97,108,92,108,95,103,89,99,99,94,98,104,108,96,95,107,100,96,98,105,105,83,91,98,91,100,108,96,101,100,109,102,101,82,99,99,84,98,101,104,116,97,98,105,89,120,98,105,98,94,105,97,95,97,105,83,98,96,96,96,110,109,91,90,105,113,85,102,102,97,97,97,116,99,97,98,91,92,105,92,98,94,92,102,95,95,96,99,99,91,94,96,100,98,112,93,105,116,91,125,95,86,96,95,108,102,103,71,93,94,102,99,98,103,94,99,106,106,105,103,84,94,101,97,81,91,85,98,113,95,88,94,103,102,117,90,100,86,91,97,114,105,93,105,99,88,84,90,91,93,101,91,108,118,100,100,90,95,103,107,94,112,91,102,87,101,99,96,101,87,97,86,103,101,106,101,93,105,90,87,108,93,99,92,111,95,100,87,96,95,106,99,105,105,108,111,100,101,101,106,97,88,94,100,100,88,77,92,107,97,96,97,101,114,79,108,94,89,107,98,127,97,92,106,99,103,95,117,128,95,101,101,100,113,94,98,101,101,103,89,105,90,96,96,93,104,101,101,99,109,109,87,103,99,101,103,92,103,102,81,88,103,116,88,94,86,99,105,109,104,103,92,96,105,113,106,95,97,99,94,94,91,107,90,111,93,99,88,93,107,99,113,102,99,79,95,104,101,95,109,103,87,114,95,109,107,105,86,117,128,104,98,97,103,104,94,101,71,97,109,102,92,95,99,102,100,104,93,81,93,91,104,108,101,87,108,105,106,102,104,94,82,106,87,114,103,93,90,98,107,89,97,87,98,97,104,95,101,92,93,92,101,110,107,95,87,98,103,87,97,105,96,95,102,103,100,94,105,90,87,97,98,89,94,95,109,100,89,112,95,100,91,92,100,100,103,101,108,109,103,95,103,107,94,103,101,87,97,100,98,101,94,110,107,94,90,113,90,106,107,88,105,98,94,100,97,104,92,120,87,88,96,89,110,93,93,102,83,97,102,106,93,104,91,106,106,95,94,106,90,95,102,112,94,95,100,95,98,90,104,89,90,98,105,98,104,99,103,110,93,103,93,107,103,94,112,94,94,94,113,105,112,94,85,88,88,107,102,98,98,92,95,103,88,99,97,102,98,110,91,96,107,107,99,92,117,88,104,95,99,94,112,87,79,98,98,99,101,90,100,108,99,96,92,105,97,109,98,90,68,100,106,97,96,106,102,97,99,86,92,106,95,98,100,104,109,100,109,75,91,99,112,87,94,91,104,99,100,109,116,89,98,98,107,103,114,103,94,94,102,101,93,95,93,108,87,102,83,90,73,97,91,94,113,102,112,91,101,96,100,95,89,95,100,108,95,89,101,96,103,100,89,97,92,113,90,93,98,88,99,95,94,121,94,98,92,87,97,89,101,99,109,94,69,84,102,109,113,95,87,108,92,110,117,101,106,121,97,89,93,102,95,89,114,88,88,94,112,92,109,104,102,100,108,94, +388.17221,98,90,91,88,107,97,103,89,99,99,87,87,99,96,97,110,97,70,55,97,109,111,96,101,109,100,107,102,117,94,105,108,117,105,111,97,102,92,91,100,114,107,104,94,115,91,98,95,95,96,106,106,99,84,102,100,95,75,105,95,105,107,102,113,100,100,102,105,105,94,96,105,101,105,99,111,96,110,116,98,109,99,99,109,100,97,101,87,97,106,105,102,134,95,96,108,90,107,91,108,96,102,91,105,96,106,116,112,104,93,103,94,104,106,82,98,108,103,102,103,107,104,104,100,117,105,105,91,113,95,95,97,119,126,101,103,99,100,91,88,90,107,112,90,98,102,110,94,98,105,113,101,104,91,97,101,94,105,104,88,95,99,107,102,101,109,96,97,105,101,104,112,105,94,101,102,99,99,103,103,112,116,97,106,90,105,86,103,107,78,100,111,112,106,101,100,86,103,95,97,105,101,86,106,100,109,115,94,102,118,91,107,92,98,105,97,105,107,102,105,105,98,83,106,88,102,86,104,87,95,100,104,111,97,109,99,94,96,95,124,100,96,94,112,89,106,106,106,103,93,103,120,94,114,102,120,100,99,82,119,89,108,92,108,92,93,117,119,93,98,106,112,107,100,104,97,96,98,95,103,113,73,115,112,83,106,106,101,108,108,99,77,98,102,102,97,103,106,109,98,101,99,100,111,102,124,111,98,93,111,110,106,106,114,100,115,106,98,103,100,106,101,91,109,105,97,101,92,111,97,102,108,104,92,107,98,91,104,91,92,80,93,96,94,98,96,109,102,104,110,88,112,108,90,89,91,108,105,106,101,105,100,98,107,86,89,109,110,104,106,101,100,106,103,108,95,118,80,101,115,110,109,110,95,101,106,97,110,103,90,101,86,99,108,116,94,93,99,99,108,91,73,79,101,111,96,105,103,91,102,103,100,99,110,98,100,101,97,104,105,105,98,103,110,105,91,87,100,96,96,117,108,107,105,112,98,97,97,91,97,108,102,110,95,97,105,105,103,87,104,105,104,96,104,112,98,104,110,101,111,112,102,136,111,106,115,100,104,107,106,98,137,106,106,103,100,83,87,90,116,98,110,102,100,90,98,108,115,108,88,109,89,96,102,113,101,98,82,107,103,102,100,90,101,97,103,106,97,96,99,121,97,109,114,101,94,99,87,105,102,98,101,104,100,101,92,106,98,112,97,91,104,100,96,110,100,107,109,106,103,117,97,100,104,114,93,99,90,102,97,100,98,112,91,98,118,102,101,77,105,114,99,95,120,107,96,105,110,99,101,108,104,100,96,92,103,96,92,102,110,110,98,99,97,108,95,111,101,88,97,117,106,93,97,109,78,101,103,107,97,91,101,102,95,92,101,87,102,109,120,89,102,120,114,103,116,101,70,108,110,87,103,112,100,103,108,95,100,104,95,108,100,101,104,99,98,81,95,107,86,113,103,113,92,89,77,115,102,104,102,99,118,99,101,95,101,102,98,105,106,114,122,103,97,93,99,107,96,97,107,101,109,104,102,97,94,109,91,102,118,107,102,87,102,101,93,97,97,111,95,104,95,105,99,103,109,99,95,106,94,98,102,93,78,98,102,110,95,110,92,99,98,94,100,105,108,97,102,93,112,109,89,90,100,105,108,94,109,90,97,103,102,113,98,95,104,100,105,104,100,100,102,103,100,105,110,102,102,107,95,103,102,102,93,102,98,109,97,108,103,108,126,101,91,95,102,97,107,100,93,105,108,104,109,98,106,98,106,109,102,100,108,111,105,92,114,112,102,101,96,111,97,112,101,105,100,101,75,109,107,110,107,97,103,111,103,102,103,114,91,116,103,105,104,100,95,82,90,101,97,102,110,101,109,84,112,106,102,100,102,80,103,102,106,101,100,97,103,103,111,108,98,110,108,98,111,102,109,100,98,92,121,87,106,99,106,100,107,97,106,90,89,123,97,90,100,92,91,107,101,102,98,103,102,102,98,102,112,108,96,113,95,103,109,99,104,99,106,124,98,108,100,95,105,88,98,87,107,98,107,93,120,132,103,112,99,97,103,93,98,83,96,92,116,106,83,98,97,122,113,105,99,106,92,98,100,108,102,107,106,121,96,107,109,102,106,89,104,104,113,104,105,109,119,98,93,109,95,97,113,95,107,99,108,115,99,105,115,99,96,102,72,86,94,117,106,98,113,97,106,114,109,100,88,92,99,101,110,93,107,93,103,96,92,103,96,94,100,85,103,97,99,116,103,104,111,98,109,100,107,105,111,114,92,102,106,105,99,95,98,97,109,98,111,84,87,85,94,99,99,100,118,101,100,103,103,97,103,102,84,92,94,99,88,105,90,104,109,106,112,97,102,103,88,101,93,96,110,95,100,108,94,107,79,111,105,101,101,101,105,92,113,73,84,89,127,100,98,102,98,105,105,97,107,116,98,91,93,93,104,98,95,108,106,108,108,104,96,93,102,89,94,87,95,88,97,91,109,94,91,92,95,87,99,95,99,111,92,102,92,102,100,94,100,95,96,98,97,87,114,100,89,92,101,104,93,108,92,102,99,97,97,89,92,96,100,97,84,115,89,101,98,92,103,106,100,93,93,103,88,104,102,95,91,99,98,92,107,98,99,99,93,94,95,116,103,130,92,107,106,106,109,96,92,90,91,91,102,99,100,90,88,88,106,96,93,110,92,82,98,99,105,87,108,95,94,91,90,107,108,101,108,100,87,97,93,78,93,103,92,103,92,93,107,104,104,104,88,96,93,101,98,91,105,100,99,103,90,108,110,91,101,102,107,83,80,100,105,92,96,98,95,113,93,94,105,108,112,104,105,116,106,98,97,101,102,105,108,89,111,104,108,105,95,93,101,98,105,87,92,103,93,96,123,102,84,99,85,102,98,113,99,105,115,103,105,106,90,100,102,108,96,88,107,111,102,84,83,96,94,105,96,82,88,102,103,108,109,109,106,115,109,94,90,117,104,101,102,88,102,104,106,91,98,90,95,102,103,97,98,104,101,98,117,101,84,89,100,96,97,100,110,105,82,102,97,108,115,98,81,106,103,96,112,85,96,99,104,96,104,100,103,106,94,98,74,105,103,107,85,103,102,96,104,110,95,102,91,108,100,91,96,104,99,104,95,85,103,106,98,88,106,112,109,106,104,103,100,101,104,115,98,83,104,96,101,113,92,106,102,102,116,102,87,85,113,105,112,99,101,99,104,87,91,88,97,113,96,110,83,91,99,110,125,113,108,101,90,83,101,102,97,67,113,99,95,108,102,116,103,101,88,104,104,97,103,101,95,103,99,107,97,103,97,116,94,96,95,92,98,99,104,100,89,103,90,101,105,109,101,112,83,94,86,103,97,101,103,101,98,97,96,101,100,92,92,99,111,106,99,95,98,93,106,94,106,98,95,107,92,98,90,89,95,89,94,102,113,96,100,99,132,126,109,100,96,112,96,102,96,104,112,96,121,101,105,103,85,109,110,100,100,93,105,112,95,87,87,101,94,103,106,95,109,104,104,91,106,105,104,102,97,93,107,98,97,73,93,77,113,99,102,101,96,98,106,107,94,95,87,101,107,94,106,106,96,94,103,104,95,103,105,85,99,100,92,106,96,106,102,90,106,104,106,94,94,97,93,101,110,99,80,96,117,95,108,100,93,91,99,110,92,99,92,82,81,96,108,64,69,102,96,101,129,95,99,94,102,98,91,94,93,100,94,97,91,110,116,88,102,91,83,92,89,97,100,99,104,106,96,108,95,100,105,103,99,93,91,97,102,97,89,114,102,105,95,85,112,112,97,108,109,96,113,96,106,103,91,102,115,94,92,92,93,106,117,90,98,96,103,95,106,98,96,96,101,96,99,103,102,102,99,95,93,94,87,90,93,92,87,105,82,95,92,96,87,91,103,92,99,94,98,111,81,94,87,100,99,98,108,91,91,102,108,94,115,91,109,97,89,96,106,80,111,103,100,113,106,102,94,106,97,115,105,76,93,102,136,113,104,95,97,111,97,98,105,113,101,101,96,103,106,88,95,99,97,97,106,112,100,101,95,107,99,86,91,97,95,102,93,95,95,90,87,91,112,97,92,109,113,103,105,91,98,100,107,107,96,92,102,98,86,84,104,117,94,104,93,105,115,102,104,75,94,95,106,96,93,101,94,105,109,107,88,91,103,95,103,109,106,113,102,111,93,96,107,101,95,98,101,106,99,89,97,105,104,99,98,100,96,71,98,123,122,83,97,93,95,95,106,105,99,111,95,98,110,105,86,97,100,76,103,106,115,107,106,83,95,109,84,104,100,105,104,105,93,95,110,105,115,103,103,109,97,103,98,105,100,90,106,110,116,116,98,73,107,93,98,102,96,112,111,104,99,91,101,111,109,86,101,102,77,128,94,99,97,99,96,99,100,112,93,94,90,95,110,89,91,77,105,104,112,94,104,102,97,92,95,96,95,93,82,107,84,115,101,94,113,99,104,92,87,102,105,107,95,99,90,96,104,98,99,97,97,100,97,104,115,109,101,100,101,95,94,99,102,87,87,101,96,96,94,103,100,96,100,105,102,88,95,98,99,101,109,107,105,97,98,110,91,101,79,87,100,94,107,103,102,105,96,111,98,100,101,89,100,96,102,84,103,70,92,106,110,93,93,87,110,92,83,95,95,113,79,99,97,107,102,94,98,108,113,68,94,105,103,87,88,91,96,95,103,113,121,91,97,99,93,102,98,97,88,92,88,96,100,99,102,93,95,97,101,96,99,102,101,98,105,116,105,91,88,96,94,102,80,105,73,103,100,89,107,100,97,84,107,84,90,81,97,91,97,95,88,61,97,88,102,108,89,99,87,102,95,82,81,96,99,100,91,115,102,95,97,105,104,104,97,85,97, +388.31229,97,105,94,94,92,94,97,92,97,95,97,86,90,96,102,95,88,94,96,99,109,92,65,92,115,106,103,100,102,99,108,101,108,103,109,91,112,108,100,109,97,117,90,104,101,113,93,103,92,100,101,99,99,98,111,105,111,95,111,100,96,102,96,68,100,99,67,107,91,97,111,96,107,101,84,105,91,103,101,97,99,108,106,96,104,90,98,125,99,86,105,104,95,95,100,98,88,98,91,105,95,95,94,104,88,101,99,110,106,114,102,99,95,111,95,102,106,90,91,94,87,103,91,95,109,95,99,100,113,104,87,116,108,104,107,97,103,94,95,103,103,108,101,100,100,90,101,101,107,108,96,97,107,97,89,104,72,96,105,92,109,98,99,97,95,94,102,115,102,86,100,110,100,112,98,96,96,99,96,91,93,110,87,98,95,98,89,100,93,101,73,101,87,104,100,90,94,87,99,94,102,92,104,105,95,107,105,91,116,101,86,100,100,105,99,101,103,104,103,114,98,95,101,73,103,104,98,100,103,95,107,101,115,104,103,98,115,96,74,103,102,89,108,100,97,102,99,100,97,113,89,108,99,106,91,107,96,109,80,95,102,93,94,90,94,100,104,106,98,95,103,102,101,104,105,94,76,98,95,99,91,92,95,108,95,108,91,95,95,101,105,103,104,113,97,102,103,90,91,106,92,102,83,96,99,98,87,103,101,103,91,103,107,87,84,100,79,101,95,112,88,95,99,98,103,67,101,101,93,102,97,101,106,100,114,87,100,104,92,94,101,87,98,95,85,103,121,94,113,103,111,83,104,115,95,101,100,95,94,99,128,108,117,93,92,94,106,103,103,107,98,102,110,112,109,107,101,103,103,91,105,103,90,103,99,103,95,94,100,103,99,93,94,100,95,96,87,104,92,112,110,87,97,95,94,99,102,88,106,85,69,103,103,113,106,98,95,111,93,95,110,102,96,95,114,81,99,86,86,104,102,114,100,97,103,88,105,100,95,99,106,98,96,103,90,98,93,88,107,98,107,114,79,108,87,103,102,97,108,99,104,99,102,86,97,108,79,87,104,102,89,109,101,94,90,102,108,92,103,102,106,107,98,82,99,90,101,95,110,101,93,99,95,102,90,98,90,106,109,98,105,95,106,99,84,97,89,93,97,100,106,102,86,103,89,104,88,99,91,99,104,99,99,86,92,96,109,100,90,103,96,115,72,106,105,81,95,110,97,106,95,98,87,88,80,110,96,94,104,105,99,108,97,98,88,106,100,96,95,101,97,92,96,95,109,105,95,102,105,100,95,93,103,79,106,98,100,100,101,106,100,99,98,99,100,103,108,88,107,94,105,108,98,100,120,114,101,105,101,98,109,95,110,96,103,104,97,95,94,104,106,97,98,89,91,95,103,99,91,95,96,100,113,97,99,113,99,94,105,112,90,96,91,103,98,101,78,92,116,91,91,106,97,114,100,92,106,98,105,113,97,103,92,97,87,98,99,109,96,118,97,114,96,113,89,105,107,96,101,100,119,80,106,89,93,105,96,104,96,98,92,113,103,93,79,85,107,103,114,90,100,109,95,106,103,97,96,98,98,95,111,95,99,88,103,97,111,106,100,104,96,81,102,92,101,108,112,109,101,93,96,96,103,111,93,107,100,105,100,107,103,101,93,120,90,98,102,107,106,101,96,104,98,90,109,97,101,103,105,107,104,89,97,99,110,106,109,99,104,98,97,94,90,116,95,101,94,104,97,97,98,106,108,103,91,102,94,97,98,105,95,97,97,100,97,97,100,98,101,105,106,102,96,114,109,117,105,100,90,106,94,113,107,107,107,110,104,90,105,99,102,104,98,117,108,95,100,108,86,92,97,96,102,113,80,101,105,103,100,91,108,112,95,73,99,118,98,107,103,97,104,105,100,92,102,90,102,103,104,101,101,88,96,104,79,104,84,102,110,107,96,103,110,105,94,105,84,110,120,101,105,101,110,97,98,94,103,87,100,98,101,101,104,98,79,112,88,98,91,100,93,105,86,93,106,101,98,111,110,82,101,91,101,111,96,109,96,94,90,104,101,113,108,97,99,92,88,97,113,104,99,98,102,106,95,98,82,106,87,98,99,108,100,88,93,97,96,100,101,116,97,105,95,101,88,105,96,92,101,99,110,100,94,104,92,97,97,119,101,103,101,90,101,98,90,87,105,102,102,94,110,102,125,102,99,110,99,96,106,68,104,109,97,107,106,108,114,94,107,96,97,110,89,96,96,85,96,104,97,103,94,99,102,93,106,112,96,91,96,86,82,96,72,95,105,94,92,100,94,105,106,101,99,97,105,108,91,88,106,97,93,108,105,102,104,90,104,103,94,105,93,100,85,100,97,94,94,99,107,95,104,104,98,99,98,91,104,101,107,105,99,121,101,100,103,73,109,103,102,99,110,104,87,103,92,98,87,100,92,97,104,101,94,95,95,113,89,81,96,102,94,98,96,94,104,100,102,108,101,100,101,71,99,105,94,109,81,87,104,101,105,99,101,100,94,90,94,106,85,98,96,104,95,72,107,81,102,98,104,97,93,111,92,99,109,97,92,99,92,76,97,99,106,102,92,103,105,87,108,104,97,101,105,101,109,93,100,89,95,108,104,84,103,80,91,93,104,79,94,105,101,107,90,105,87,100,87,87,123,100,105,102,93,101,99,101,108,119,97,101,109,102,87,90,100,115,91,88,102,102,82,119,88,110,99,98,108,91,103,95,95,105,102,97,113,98,107,99,99,104,95,97,95,108,111,99,99,96,106,90,109,105,98,101,109,84,85,83,103,111,94,104,96,77,115,101,92,104,95,95,94,101,103,118,98,110,98,100,100,100,97,115,92,100,112,96,102,115,95,107,105,93,104,106,94,104,109,93,100,103,107,104,105,108,95,90,96,96,104,103,96,86,68,96,97,91,106,103,117,96,92,104,94,101,87,105,106,94,99,101,93,100,102,102,93,112,122,97,99,95,108,101,117,101,107,89,110,117,95,90,102,102,98,96,103,106,94,120,100,98,96,95,113,105,92,88,113,103,120,94,98,115,102,104,104,97,105,101,100,95,101,99,102,91,103,108,98,105,104,101,78,110,103,119,100,94,95,100,133,110,109,101,96,101,99,109,106,85,105,96,92,105,100,101,111,95,98,105,104,99,112,105,97,102,101,101,91,103,93,99,99,97,88,98,104,95,85,95,99,98,106,93,97,91,91,99,102,107,117,88,108,100,109,111,99,106,98,96,97,96,94,99,107,99,111,112,103,101,100,84,78,108,111,101,99,116,99,89,101,87,108,98,111,89,108,102,96,98,101,100,88,109,92,99,97,101,108,113,101,101,89,106,111,76,111,105,91,100,100,98,106,113,99,115,105,104,98,92,112,83,100,105,108,100,107,92,101,95,91,100,80,104,98,96,101,72,95,115,99,97,93,109,98,92,90,95,102,109,109,105,97,99,115,94,106,106,104,98,99,103,99,101,105,102,100,85,89,104,83,106,91,104,89,117,100,101,104,94,115,102,118,97,104,99,106,98,98,106,91,108,90,92,91,100,108,95,100,98,106,90,96,101,111,105,97,108,103,105,118,97,103,101,105,96,87,102,102,113,108,97,102,92,110,97,100,92,98,84,115,101,103,100,106,101,105,108,101,104,113,107,114,92,99,115,97,85,99,88,101,92,102,111,96,96,87,98,103,109,106,98,103,104,95,106,91,95,106,98,95,91,93,100,91,97,107,106,108,112,99,108,80,95,108,88,95,104,91,94,101,88,83,110,110,97,102,98,95,105,103,97,93,103,93,119,97,100,106,102,100,106,75,109,95,105,105,106,100,95,97,112,90,93,112,97,89,100,98,109,95,96,101,91,79,90,113,93,94,99,101,98,99,106,97,88,92,99,105,95,95,100,97,99,109,78,107,117,100,99,97,92,81,102,105,98,89,107,100,117,91,113,93,102,105,100,108,104,102,107,96,103,97,96,101,109,109,98,94,91,95,110,105,99,111,107,91,95,105,99,97,92,98,96,92,94,113,99,96,106,100,100,92,96,92,98,101,90,98,114,112,92,89,108,109,119,109,107,96,106,113,95,104,106,93,96,98,99,100,90,92,101,93,84,106,103,88,92,107,112,102,114,113,106,92,106,102,97,100,117,90,98,122,106,103,103,99,94,125,102,113,103,100,99,112,98,108,111,102,105,98,100,99,109,98,84,105,91,101,93,102,96,88,98,114,101,93,103,98,102,121,107,99,102,97,101,97,99,92,96,102,120,90,91,108,103,92,98,102,95,105,107,99,92,103,96,88,104,101,97,82,113,100,107,112,100,99,91,94,93,118,99,111,101,94,101,101,106,98,121,108,104,100,102,95,98,108,93,105,90,94,125,99,107,92,99,95,98,90,99,100,97,98,94,97,83,100,97,93,98,104,107,101,114,108,92,98,94,99,97,97,99,102,97,91,107,113,103,89,97,99,107,95,86,87,101,94,97,103,96,98,91,98,95,95,109,106,104,104,105,106,95,89,113,108,105,101,105,79,99,100,94,87,100,120,97,110,94,102,112,106,98,101,100,109,113,114,97,80,101,112,99,102,96,94,99,104,98,100,102,110,98,100,104,97,94,104,102,112,79,97,98,91,95,101,99,98,106,100,105,108,87,106,98,102,102,118,92,117,100,101,88,105,100,104,112,103,105,99,104,90,99,85,113,100,113,95,89,100,87,95,102,100,110,90,91,83,104,96,87,95,112,97,106,99,107,96,91,101,93,99,75,95,92,91,93,87,106,98,104,97,121,104,110,94,111,125,77,95,99,99,82,103,80,97,88,92,96,83,99,109,97,66,76,110,100,121,87,101,99,96,106,103,110,87,104,99,99,116,103,73,91, +388.45233,109,81,100,103,94,113,85,90,88,108,94,99,105,109,106,86,93,103,84,104,97,95,97,106,101,102,87,91,92,107,97,91,107,110,88,95,100,110,108,108,100,103,100,101,102,109,93,100,104,92,96,90,120,95,100,109,95,92,108,87,89,71,95,103,109,119,104,92,106,87,105,104,94,101,101,107,106,88,106,92,103,99,101,117,95,104,86,100,87,86,108,101,105,96,79,99,93,97,112,100,84,102,103,96,100,98,97,93,82,94,109,98,93,96,99,90,100,106,102,97,104,101,95,104,87,102,110,102,102,99,92,105,99,106,106,100,95,116,89,85,98,103,96,93,97,98,109,91,103,91,100,88,99,91,83,94,97,98,99,113,97,80,108,97,96,102,102,95,112,103,100,97,98,80,93,97,89,64,101,103,109,95,105,113,91,109,86,89,103,85,93,95,93,117,97,100,103,92,103,106,100,95,105,101,99,105,100,93,102,113,104,101,107,104,106,100,98,103,97,100,83,99,98,97,87,97,96,104,103,99,93,101,94,109,98,108,90,96,104,105,99,94,105,89,105,90,91,102,106,86,96,99,90,102,107,96,105,93,94,110,91,114,92,88,88,102,75,104,99,92,97,94,99,103,100,107,102,105,106,68,91,114,96,87,95,99,79,96,104,104,101,95,89,101,106,104,109,96,96,108,101,96,102,106,89,106,114,110,100,112,90,97,97,86,97,92,93,99,98,95,91,90,109,98,97,91,104,87,105,97,98,106,99,105,103,102,91,92,91,110,101,103,96,91,96,107,109,93,91,102,95,106,105,96,92,89,104,111,104,102,103,97,102,86,101,94,100,106,97,100,103,100,103,105,96,96,108,89,97,105,100,107,90,98,100,88,106,105,104,98,104,102,90,87,106,97,100,100,97,91,90,104,109,95,95,86,96,107,112,112,98,101,90,101,102,88,101,93,102,101,91,96,87,97,99,96,99,91,97,87,90,97,106,103,102,93,94,100,89,100,73,88,102,102,92,105,100,97,80,98,93,98,99,101,97,90,113,106,105,98,104,70,95,120,104,103,82,80,90,101,101,106,95,86,121,100,93,109,105,102,93,103,102,98,100,92,105,102,99,97,87,102,95,97,92,111,99,99,96,102,101,91,105,102,99,95,85,100,102,92,96,119,115,94,98,100,101,103,100,91,94,102,88,112,100,89,101,106,100,74,91,93,113,105,96,95,103,94,90,95,95,95,95,111,83,98,110,95,93,101,96,101,105,100,109,104,100,91,97,97,90,87,109,94,97,97,105,96,90,102,101,98,92,97,98,98,96,106,96,107,98,76,97,100,89,97,108,100,99,94,100,88,105,92,108,108,100,97,98,101,99,96,101,99,101,69,108,105,105,97,102,107,109,102,96,93,105,99,97,95,101,104,99,98,99,112,103,87,106,106,95,105,94,92,100,109,97,93,108,114,113,95,95,98,102,84,92,108,103,102,88,105,103,102,62,93,109,94,87,92,113,98,95,114,101,96,103,100,102,90,105,115,112,93,96,94,101,99,101,90,101,73,100,108,103,87,97,105,93,104,98,111,87,106,96,91,103,105,89,101,103,91,118,92,109,101,101,105,90,97,90,104,82,103,99,103,106,99,104,102,87,104,80,101,87,88,101,94,94,111,114,97,96,102,105,90,109,95,106,100,87,99,91,99,97,98,103,105,92,91,103,104,95,96,109,102,104,105,101,94,96,95,101,88,96,100,92,102,101,91,99,110,95,103,96,98,102,97,95,99,105,104,97,97,94,94,94,98,106,99,102,102,117,107,88,91,98,95,97,104,87,106,103,109,103,135,95,96,100,110,101,94,105,94,102,105,95,106,98,91,102,103,107,111,91,100,102,97,93,100,108,106,113,89,100,88,87,101,110,95,100,116,103,110,96,103,95,92,99,140,97,107,104,92,99,88,94,92,102,112,130,100,85,103,104,107,103,111,89,107,95,99,98,105,90,88,107,102,97,97,95,101,93,101,98,103,100,111,92,93,89,86,108,106,97,100,93,104,98,86,102,105,98,102,95,87,100,99,94,109,89,113,101,98,98,99,117,102,106,91,101,106,107,98,96,96,108,104,80,90,109,110,100,104,113,109,91,109,130,102,99,97,98,84,95,124,92,92,78,106,98,110,100,94,127,95,98,92,99,97,110,108,87,102,108,94,97,96,90,105,98,111,99,129,94,102,99,89,97,93,102,95,96,100,93,107,95,98,97,90,91,84,96,71,91,106,88,91,98,99,101,93,98,105,96,98,103,105,96,95,86,79,97,100,116,102,101,103,87,95,102,106,86,94,114,96,92,92,89,94,124,93,102,103,108,96,94,105,98,83,101,92,106,104,95,94,107,117,86,133,95,122,100,95,101,96,95,97,101,105,87,97,100,117,62,92,100,103,98,95,105,80,101,102,104,95,96,93,87,102,97,89,97,97,96,98,89,105,122,107,90,94,104,94,96,104,102,101,108,93,106,88,105,94,100,102,103,95,94,95,96,91,103,100,97,94,91,115,88,89,86,89,103,111,92,93,107,96,95,96,94,114,87,90,95,93,94,100,100,98,105,103,98,102,95,95,98,102,111,89,119,94,97,89,122,115,97,89,94,106,101,92,72,88,61,100,75,110,94,100,87,97,107,89,103,103,89,91,89,95,91,100,90,89,107,101,90,97,87,98,98,98,90,98,85,101,96,104,112,103,97,92,100,95,92,106,107,98,106,105,111,91,102,116,103,86,98,97,98,93,101,103,110,95,104,98,96,100,98,105,96,109,98,110,100,106,104,105,99,104,103,101,100,89,101,83,97,106,92,101,92,91,113,87,91,94,90,96,93,108,89,105,102,97,104,105,103,87,88,109,80,104,101,107,97,95,101,100,102,95,107,93,102,104,113,114,119,93,105,101,97,105,99,92,91,98,111,98,102,106,107,109,98,107,104,91,84,97,80,79,102,88,90,96,126,100,104,90,109,98,111,97,102,112,109,96,114,105,93,85,90,98,106,101,96,101,100,102,97,97,95,99,105,97,103,91,105,90,90,107,113,107,91,94,76,83,91,96,109,94,91,71,118,105,111,94,115,92,98,85,105,85,90,101,101,111,94,99,100,81,108,97,98,89,108,91,88,107,94,108,95,112,103,104,107,102,83,92,98,101,101,101,105,101,91,118,104,91,91,109,101,97,101,97,101,111,107,101,101,101,104,92,88,111,104,88,101,100,105,104,117,93,113,102,103,90,90,105,105,97,94,102,113,93,114,101,88,95,91,97,102,112,107,102,103,108,99,100,79,116,108,95,98,93,92,109,85,90,92,99,103,101,95,98,108,107,89,95,99,100,90,107,101,101,95,114,95,91,101,100,103,102,103,104,98,107,83,98,99,92,98,100,95,104,105,111,89,92,111,104,113,102,102,84,91,96,102,95,99,100,119,108,95,92,96,102,102,100,93,102,108,113,113,100,95,115,87,100,101,104,101,104,95,110,99,107,104,93,89,96,99,107,106,105,100,100,101,105,105,113,106,99,111,93,99,105,100,92,96,106,96,113,101,105,103,101,106,95,104,100,93,104,81,103,98,97,96,82,100,98,94,95,95,105,91,97,104,110,99,99,98,102,99,92,108,100,94,132,97,108,92,104,109,114,91,91,102,95,101,106,101,120,103,106,91,94,103,98,110,95,97,91,107,97,105,105,74,92,100,97,87,94,100,106,106,93,101,97,108,98,106,95,97,83,94,98,98,89,77,93,109,97,97,96,98,104,102,110,98,108,101,105,91,96,105,87,123,98,87,95,97,96,104,111,95,102,79,103,98,103,104,99,92,104,101,91,82,99,112,82,99,93,99,101,102,106,100,110,101,91,95,105,97,101,81,99,94,96,87,96,88,97,106,98,90,77,101,96,129,94,96,91,117,94,108,96,98,99,105,102,101,103,88,94,101,67,105,90,98,99,106,99,98,104,102,95,106,95,110,103,106,105,95,99,104,100,101,93,98,84,128,100,106,99,105,91,100,105,96,81,106,91,84,90,105,92,107,93,99,93,98,95,95,93,102,103,93,101,89,113,100,95,106,95,109,115,97,98,94,96,101,102,97,106,104,103,117,89,100,100,102,94,97,113,97,105,90,107,73,92,99,105,92,88,98,97,94,113,112,100,109,112,113,99,96,106,104,108,106,105,100,103,92,93,105,105,109,102,98,95,115,98,104,102,108,93,116,104,92,90,101,87,93,97,104,94,103,114,88,100,105,99,113,95,93,126,106,95,113,98,107,95,95,99,93,69,75,95,91,107,95,96,108,96,109,98,110,101,108,100,105,95,94,95,101,94,93,95,86,109,101,102,91,99,101,106,109,100,78,98,105,96,102,93,120,90,98,117,106,92,103,91,91,99,94,92,87,94,100,96,94,106,100,96,91,85,87,98,88,96,83,101,112,86,103,96,100,100,128,88,96,108,81,91,91,95,101,103,90,102,95,106,87,102,96,102,92,99,99,107,92,90,88,110,92,97,110,96,102,99,102,110,95,108,96,88,98,94,98,100,87,117,98,101,79,116,92,91,102,95,97,101,102,96,88,99,98,98,102,93,96,96,92,94,98,95,94,101,108,112,103,87,95,98,102,78,83,92,110,94,95,92,97,91,100,106,92,98,117,91,77,101,102,102,93,93,88,102,100,100,101,98,99,97,86,92,105,74,80,90,88,105,105,99,90,97,99,97,101,102,99,92,91,94,102,91,103,98,100,104,106,92,88,101,99,102,106,87,101,99,98,93,109,98,94,104,98,116,93,95,100,100,107,102,102,87,109,105,78,90,64,107,112,97,100,112,94,114,104,91,104,92,93,89,101,100,114,103,98,110,97,90,102,124,95,95,106,92,97,88, +388.59241,102,84,87,91,89,85,107,107,113,88,85,101,101,69,86,95,98,93,98,104,83,91,111,101,85,98,103,82,86,76,94,91,98,92,104,88,93,90,93,97,89,93,86,94,96,93,92,107,93,102,93,87,79,95,107,104,93,100,96,93,101,79,94,82,86,95,99,91,91,93,100,115,103,100,97,96,92,96,114,76,87,98,93,102,95,90,90,104,96,90,97,103,89,96,101,91,94,101,83,100,104,99,93,97,81,85,101,105,95,102,103,92,85,69,88,86,98,86,65,91,100,108,91,96,120,104,107,97,65,90,96,94,86,101,104,92,97,98,84,96,79,94,84,98,111,102,100,88,113,102,99,92,105,85,107,93,98,94,77,94,83,90,81,95,96,94,94,72,98,91,93,101,87,97,91,90,102,88,105,97,80,85,88,83,92,93,89,90,99,99,96,80,93,86,94,98,105,95,96,70,102,94,94,116,88,104,101,92,103,95,86,82,90,101,84,96,88,110,96,86,109,96,76,100,96,82,110,87,108,92,89,93,73,101,92,106,96,107,91,92,87,97,86,71,87,98,93,99,92,93,103,94,103,106,87,104,94,92,101,92,91,93,98,90,94,95,106,98,81,88,92,90,104,102,96,98,107,105,92,88,93,97,100,102,100,98,84,76,96,96,87,101,106,100,100,106,105,99,104,103,102,89,100,101,104,106,107,99,93,92,96,105,92,95,101,91,108,95,92,94,94,79,97,98,105,103,100,104,112,91,100,107,97,91,102,96,98,91,97,94,87,92,86,103,99,92,96,99,104,96,101,96,82,95,96,100,99,108,102,97,98,98,93,96,101,93,90,103,97,100,103,90,101,94,77,101,104,93,96,101,108,68,90,95,104,96,103,86,77,101,103,95,93,94,92,98,88,107,94,87,102,104,99,100,105,96,98,94,91,99,84,97,105,100,90,94,120,116,93,97,87,70,98,104,109,92,89,82,95,94,98,101,91,92,80,94,92,99,88,100,90,90,113,92,94,95,101,95,108,98,112,98,107,94,91,97,99,93,98,111,87,99,83,106,92,103,96,95,93,103,103,97,96,102,97,102,79,111,100,94,105,111,82,102,95,102,104,95,105,91,96,100,104,107,98,93,114,78,103,90,100,100,91,96,102,112,96,101,97,75,79,101,101,96,108,93,86,97,87,88,93,89,93,86,91,98,109,99,94,97,94,93,110,99,101,103,107,94,96,83,96,93,97,109,98,87,97,98,99,93,99,94,100,86,97,109,103,102,104,92,88,94,94,100,96,101,96,95,101,87,92,100,96,91,95,102,103,90,76,94,109,92,107,93,102,81,101,94,92,98,104,97,89,99,91,106,85,108,96,97,96,96,101,98,69,103,107,96,93,106,98,100,91,101,104,97,97,96,96,83,118,109,101,88,105,112,88,99,100,102,110,98,96,92,90,99,101,97,101,92,108,95,104,94,91,93,101,93,104,104,97,92,102,105,103,101,92,100,90,99,108,102,98,92,88,88,109,95,95,93,98,118,95,97,97,93,110,94,101,90,87,84,87,72,104,97,96,96,91,90,97,120,88,105,97,92,102,101,95,88,93,97,100,97,108,99,93,97,93,101,101,91,98,89,104,95,87,107,101,92,101,95,91,91,91,88,98,93,91,99,99,96,96,103,91,106,105,100,118,109,102,94,95,103,89,96,104,104,92,96,103,92,92,88,94,98,84,88,94,102,97,95,97,95,87,96,94,101,92,96,95,98,94,105,89,107,98,89,105,96,104,100,88,102,103,92,95,70,105,91,99,90,90,106,107,104,83,87,85,94,103,101,85,101,97,107,90,94,97,95,95,105,98,117,82,97,90,99,105,102,88,109,107,89,105,100,93,105,103,96,105,94,93,107,84,94,125,97,95,95,95,100,126,87,98,87,93,91,131,115,96,109,99,106,87,91,102,106,102,104,83,92,91,103,103,107,94,93,102,108,103,87,95,100,102,86,109,79,102,102,95,108,98,103,100,106,105,105,100,94,95,88,106,96,107,88,113,104,98,97,92,104,97,97,97,92,97,79,90,90,98,87,102,92,91,98,97,100,92,94,92,106,105,90,108,106,90,99,96,90,88,87,99,98,91,92,94,98,96,102,96,115,100,96,87,101,87,118,109,103,91,87,86,97,86,95,104,96,95,89,92,90,88,98,98,79,104,94,99,101,78,97,104,107,100,86,97,105,87,97,95,101,100,99,107,98,99,86,108,101,104,94,103,93,97,99,87,90,88,93,105,108,91,97,110,93,90,97,105,95,89,94,90,91,97,102,106,99,93,91,102,101,97,96,96,101,105,95,91,97,96,110,113,95,103,86,91,109,94,92,99,101,80,102,95,75,97,91,96,91,98,106,98,105,90,107,94,96,96,107,76,107,93,122,101,92,92,104,71,88,91,111,89,95,103,89,72,94,90,85,95,114,102,92,116,108,102,107,108,107,98,94,90,93,95,97,99,106,100,90,85,77,101,101,102,109,98,99,98,104,101,101,96,101,97,97,95,102,91,107,101,98,93,100,96,106,99,98,95,100,103,109,105,97,100,115,86,100,109,89,99,93,98,107,102,88,93,94,102,105,115,93,105,95,96,83,101,103,93,92,109,108,111,95,100,100,99,95,102,86,104,104,82,97,100,87,99,87,102,86,100,106,91,97,96,108,91,90,84,105,93,90,88,111,102,97,99,94,98,101,127,91,116,95,88,95,106,95,108,107,100,108,90,96,101,101,109,105,93,90,104,103,66,107,102,100,107,109,96,105,105,94,93,113,104,98,103,91,104,115,98,91,97,86,106,92,109,94,84,93,105,97,104,103,95,84,94,106,83,103,103,83,98,105,100,93,90,94,95,83,97,100,88,95,80,98,105,95,105,97,101,97,112,77,126,85,101,102,99,92,82,97,92,91,96,103,105,103,102,91,90,94,83,99,91,88,102,99,89,95,96,68,90,102,100,114,105,95,108,97,103,127,95,100,110,102,87,105,103,109,98,98,97,101,112,91,94,97,95,106,93,95,101,99,104,109,67,100,97,98,105,101,91,109,83,96,104,96,102,100,100,103,99,92,111,96,94,88,95,88,93,91,101,87,98,109,96,117,93,103,93,99,105,104,96,104,94,103,96,110,105,93,79,99,101,95,106,101,106,92,95,100,91,102,100,107,106,101,84,93,97,103,102,95,103,100,106,100,92,114,106,96,87,96,91,112,117,93,105,109,96,106,101,105,97,102,87,105,84,102,128,107,104,105,121,90,101,100,113,101,114,96,101,88,101,95,89,99,100,106,102,105,105,106,84,109,105,98,97,90,105,104,102,97,138,108,107,76,111,97,94,96,108,88,94,92,98,90,98,102,87,105,101,105,97,102,94,97,92,111,91,101,94,109,90,106,99,96,104,105,89,101,109,93,89,93,99,105,101,92,87,100,97,98,87,93,106,103,101,96,102,96,102,94,102,98,98,99,101,101,111,93,96,102,106,110,99,92,83,102,118,107,92,105,95,88,83,100,98,109,95,92,91,101,100,95,94,79,99,104,97,101,99,98,117,103,101,87,90,90,98,108,105,108,77,96,92,97,100,93,100,127,104,105,103,87,102,104,102,89,91,94,103,95,106,94,97,100,93,112,93,90,111,108,100,107,96,99,94,102,95,102,96,106,85,91,88,92,104,101,98,105,108,102,102,101,97,98,105,93,97,83,96,91,95,96,91,95,95,103,115,91,103,95,97,105,80,92,96,103,111,111,126,92,89,98,98,89,96,98,87,88,95,104,90,101,96,101,94,101,95,89,96,95,96,94,99,105,98,80,90,120,108,100,93,102,98,100,95,99,101,104,100,91,92,102,87,109,100,90,93,118,95,101,110,85,79,72,84,93,108,102,100,105,104,84,105,99,96,101,99,103,94,96,86,116,97,97,85,94,101,103,105,106,102,108,106,116,83,93,92,94,96,91,102,90,99,119,105,84,104,102,99,108,101,106,99,98,112,104,93,72,108,101,95,99,107,92,95,98,90,98,93,98,90,99,90,109,102,82,104,94,105,102,104,116,98,96,70,96,100,84,97,95,101,116,78,105,102,103,136,90,104,97,98,104,114,93,101,63,96,109,91,93,94,97,104,99,98,98,105,91,93,96,97,99,97,106,104,91,89,90,100,108,100,102,99,118,81,92,114,96,99,98,98,104,94,101,105,110,99,97,106,109,96,107,104,115,106,79,102,90,99,123,102,93,80,87,101,104,100,90,103,92,115,107,90,93,76,97,105,92,102,97,101,97,106,103,97,112,101,131,109,105,85,91,93,89,93,102,100,88,99,94,97,103,98,103,108,93,108,100,110,93,104,102,101,98,99,102,83,98,103,91,103,88,100,102,95,94,97,97,90,94,100,109,94,88,94,107,93,90,107,98,94,100,100,91,91,105,108,123,102,98,105,94,104,96,96,107,86,96,108,94,93,93,102,99,107,97,103,89,91,96,90,91,101,102,94,91,98,96,96,108,84,94,103,108,95,99,99,106,94,100,96,105,102,85,94,94,91,102,96,100,107,98,98,95,94,105,103,90,98,98,106,93,115,96,96,101,95,90,101,100,99,86,95,111,110,102,113,86,89,106,95,93,85,102,100,97,83,81,101,100,98,94,109,94,94,83,94,101,95,110,95,90,89,89,108,97,93,106,87,94,85,100,108,98,97,105,80,90,94,105,88,98,95,95,91,121,82,94,108,99,95,121,97,110,92,103,92,106,100,120,98,99,104,96,101,99,115,94,88,87,99,99,98,98,80,101,87,87,91,109,103,102,106,105,101,101,113,104,93,117,94,121,82,105,104,92,99,101,95,87,94,95,88,89,101,109,96,95,76,94,89,100,81,105,86,101, +388.73245,94,100,93,90,93,105,106,84,90,72,91,106,94,109,91,96,90,99,101,89,101,98,101,108,84,106,106,108,104,104,105,104,107,65,91,98,105,109,99,96,92,97,100,99,95,100,102,113,101,92,95,103,91,107,100,98,96,93,109,95,98,84,89,99,99,113,96,96,92,98,97,95,101,99,93,105,87,84,109,113,97,112,118,111,86,94,76,108,100,99,123,112,87,92,111,93,97,91,103,100,75,102,101,101,106,88,100,103,99,96,72,98,99,96,95,98,91,104,83,96,106,99,70,95,76,91,101,108,111,101,101,99,93,91,89,91,91,89,97,104,103,114,112,110,94,99,110,106,98,90,88,101,107,88,95,91,106,92,105,97,92,83,102,101,90,88,103,94,98,90,89,99,91,100,88,87,93,91,95,106,100,96,97,106,84,88,104,94,82,93,101,90,110,100,77,107,97,109,97,95,94,93,84,101,94,98,100,98,107,96,96,97,106,103,104,99,90,93,95,113,97,101,92,98,98,93,108,100,103,94,88,89,90,94,97,88,111,109,94,96,106,109,110,98,84,96,73,100,103,103,98,113,102,80,94,103,98,113,90,109,102,91,95,100,116,88,105,101,98,106,97,92,119,106,106,96,108,99,92,94,106,95,101,102,99,100,99,99,105,113,100,95,102,77,87,107,96,95,94,94,92,99,95,98,83,116,103,107,98,120,105,111,98,67,93,113,99,100,73,100,112,86,105,98,113,108,100,97,112,96,93,85,104,89,100,110,94,90,90,108,91,96,82,113,110,111,98,104,99,99,96,109,105,93,87,104,99,95,106,106,96,100,100,90,102,107,122,86,93,108,105,98,93,98,100,90,91,103,106,105,95,117,95,95,106,101,102,85,106,91,101,90,94,97,97,104,98,84,91,110,117,104,97,92,100,95,90,105,97,72,103,102,91,107,103,91,105,88,106,75,104,98,91,103,97,90,93,80,91,98,89,105,103,105,94,94,115,98,99,106,102,97,92,93,95,98,94,99,105,100,94,91,96,104,100,102,100,90,106,93,99,96,106,102,93,117,101,101,105,97,100,98,104,91,96,94,95,104,94,103,104,102,102,102,96,91,104,119,101,103,101,95,82,95,93,93,91,105,98,104,107,94,95,98,81,98,83,100,100,92,104,96,94,109,90,89,92,111,86,89,101,105,107,100,103,95,99,99,92,100,85,104,101,88,99,106,95,87,105,113,81,92,92,94,103,104,108,100,95,95,103,105,105,93,89,79,84,107,87,95,101,104,99,94,113,102,100,95,101,96,97,94,102,107,106,108,87,100,98,96,105,95,107,94,87,95,102,101,106,98,100,108,79,91,67,109,93,95,101,100,99,96,94,100,94,102,95,94,119,87,107,110,103,110,91,88,99,94,101,106,101,104,99,98,110,92,90,115,108,98,91,112,106,110,88,92,67,105,94,100,86,102,106,111,102,84,98,81,83,102,99,102,118,95,98,109,94,109,99,96,98,109,103,110,85,99,107,92,101,99,102,101,105,90,104,104,102,100,105,99,77,99,101,92,79,103,105,100,114,97,100,96,89,103,90,89,101,110,100,87,105,84,101,94,91,98,103,99,63,103,94,92,97,93,96,99,86,96,91,101,94,88,88,86,98,88,93,105,88,105,104,91,93,109,106,101,92,94,103,108,95,95,105,103,98,93,94,113,93,100,95,102,87,107,102,106,101,93,106,91,105,92,92,95,80,112,96,101,100,91,95,99,96,90,101,102,85,110,101,72,97,101,97,87,97,95,102,102,101,95,104,108,104,100,94,93,99,98,104,110,99,97,96,92,99,102,100,100,102,91,98,104,90,96,114,91,101,88,98,89,108,110,101,96,116,110,110,96,102,98,95,98,104,90,97,106,105,108,109,88,110,104,101,90,104,99,96,90,103,92,101,97,112,98,105,93,90,100,99,100,84,98,113,104,93,96,91,88,101,105,99,89,88,107,106,93,101,94,102,94,100,94,100,97,98,101,91,103,99,103,104,99,102,101,105,101,99,104,96,99,93,83,110,109,103,96,93,100,95,92,100,104,106,95,96,91,92,103,112,104,103,109,96,100,103,92,105,95,87,100,93,103,97,127,105,93,96,91,111,74,105,103,98,103,102,99,87,98,101,106,101,86,111,100,99,101,96,101,97,94,115,102,103,103,109,99,79,97,99,105,98,93,92,103,98,103,110,95,76,89,97,103,106,93,103,99,97,102,101,96,98,105,98,92,99,96,90,107,104,98,94,98,97,106,117,104,95,106,102,104,89,105,95,113,101,86,99,86,96,91,98,117,96,75,98,81,95,96,101,110,102,85,100,91,102,93,96,95,90,99,87,100,95,110,85,90,92,102,105,93,90,100,85,105,110,91,93,94,98,100,92,99,94,100,99,103,102,98,105,90,99,103,106,109,103,100,99,82,93,91,90,96,90,107,98,99,109,83,103,98,106,104,98,88,83,102,101,98,114,104,81,87,104,103,90,98,94,97,101,99,109,109,107,108,97,100,99,99,100,101,97,101,88,99,113,96,108,106,101,100,104,109,107,100,94,102,93,105,88,100,98,94,86,99,110,92,97,85,89,107,103,102,102,104,109,79,99,114,102,103,96,102,109,93,82,104,108,91,94,101,106,105,101,98,87,105,116,93,104,108,96,96,84,98,95,105,104,109,98,99,97,103,106,97,91,102,97,97,95,94,112,95,104,90,104,99,108,98,103,97,81,109,107,109,99,101,97,85,92,97,95,113,97,79,100,117,87,109,93,93,96,97,100,104,110,88,109,94,100,107,98,97,112,98,100,110,104,98,83,98,104,84,101,110,91,100,109,106,88,98,91,101,98,112,103,115,99,98,102,96,97,98,111,102,111,98,96,99,107,108,112,103,103,95,97,99,97,97,97,104,101,103,98,105,98,98,101,113,100,110,90,99,95,99,105,101,98,110,105,97,94,84,105,101,92,100,102,105,127,105,90,99,93,92,94,100,98,96,100,93,99,98,96,96,100,105,105,94,97,83,89,101,96,102,96,91,98,112,104,99,95,109,109,109,92,97,114,91,94,113,101,107,94,101,111,92,97,106,89,99,101,102,92,108,97,91,93,106,105,98,98,102,62,92,96,99,99,100,100,79,105,99,88,105,107,98,108,93,122,109,100,78,108,95,101,112,108,101,101,87,91,98,105,104,108,94,106,68,100,106,108,91,101,112,94,98,106,110,111,102,72,104,102,110,115,105,94,105,105,109,94,92,111,97,109,91,114,113,107,104,101,84,99,98,110,108,99,100,85,93,95,89,101,99,95,92,95,110,105,99,94,103,103,97,87,101,98,91,91,99,81,98,94,94,102,117,98,93,94,87,98,83,90,95,103,88,97,98,89,103,102,102,96,104,97,81,101,120,101,99,107,102,101,86,98,93,102,100,104,86,93,102,93,101,91,98,103,103,102,94,104,104,87,69,91,94,113,108,101,83,109,102,87,113,85,100,78,88,98,74,106,91,96,108,95,105,101,97,92,89,99,111,104,102,111,95,77,84,102,108,99,97,100,83,109,96,107,86,99,84,91,89,99,97,102,101,105,107,93,99,97,103,100,100,96,103,104,102,98,103,104,98,107,106,88,94,99,87,89,100,89,106,97,80,74,94,96,105,100,107,113,98,108,104,88,93,109,103,120,102,108,100,93,87,98,86,98,110,107,98,102,96,68,98,107,107,102,94,102,99,97,91,91,100,109,110,102,99,105,91,96,104,108,91,94,98,92,89,76,104,100,100,112,107,114,96,87,110,89,95,113,98,102,83,105,104,86,92,97,96,83,106,97,104,97,109,104,106,99,101,102,108,102,107,83,79,88,116,83,95,96,103,102,98,98,70,104,89,99,118,90,100,95,104,93,101,111,99,111,98,111,99,102,96,91,104,102,108,108,99,102,101,100,111,104,103,105,99,109,90,83,104,94,87,98,90,91,96,90,99,96,95,92,110,101,90,99,89,98,101,121,103,99,99,101,102,92,105,107,92,95,93,92,97,97,103,104,94,103,100,95,97,95,97,87,112,82,101,103,95,103,100,103,78,100,104,104,79,94,99,89,94,72,113,100,107,102,94,113,108,91,93,93,90,93,106,99,109,93,103,105,99,106,84,103,102,81,97,95,102,95,102,113,98,101,102,108,99,98,109,73,95,98,102,113,103,98,100,101,101,100,96,102,89,100,83,99,102,100,101,96,99,107,96,95,97,88,103,100,87,107,97,100,104,91,114,97,100,102,98,92,101,99,102,92,100,98,104,79,107,104,113,111,98,110,97,105,96,97,109,108,96,106,105,96,101,101,112,93,91,84,103,102,102,100,105,97,98,107,121,101,102,113,105,81,91,100,128,90,96,100,70,95,102,95,107,81,108,100,107,106,92,92,88,80,92,95,88,100,95,101,97,102,98,105,84,99,67,112,94,110,72,104,98,111,92,91,97,100,92,101,105,96,107,101,92,112,101,98,95,87,107,109,105,113,81,95,95,92,109,83,99,100,100,101,95,92,83,100,107,102,101,110,102,84,97,100,99,94,101,88,105,91,109,106,110,102,94,102,107,89,97,106,101,92,99,104,113,108,101,98,96,100,108,102,102,99,85,105,84,103,107,103,110,91,96,101,111,122,98,99,91,109,94,107,87,96,102,106,93,74,95,98,103,102,91,98,127,106,104,101,81,96,95,117,87,113,101,109,100,103,101,100,102,103,102,102,115,92,100,93,94,97,102,92,96,90,91,98,96,85,96,89,80,105,88,91,96,79,84,104,90,102,109,98,99,108,90,95,97,112,105,100,95,94,82,91,94,104,87,94,92,93,87,103,99,96,94,115,97,102,103,95,106,99,88,88,94,102,91, +388.87253,106,94,74,105,102,95,87,95,101,105,89,118,79,104,84,85,91,92,107,101,105,99,98,110,99,116,92,103,110,90,100,101,98,97,100,95,106,99,117,91,70,105,108,90,95,106,79,103,95,110,96,97,87,95,93,84,101,94,106,93,92,95,93,93,101,86,94,93,97,92,90,103,94,125,93,106,96,97,110,91,91,99,107,91,91,95,101,82,95,102,99,97,96,101,101,96,101,100,98,83,91,94,87,84,91,95,102,97,86,103,95,92,109,101,96,87,93,108,114,86,100,92,98,109,97,100,105,100,125,82,93,108,97,98,95,100,87,106,95,103,107,99,93,97,79,98,108,104,94,97,91,102,99,97,89,103,96,82,97,94,93,98,104,109,103,90,97,88,95,97,102,106,110,101,107,101,95,98,97,86,101,113,95,102,90,113,95,89,95,79,112,84,98,101,105,71,114,87,88,102,102,107,130,95,97,92,108,100,115,97,83,103,104,103,105,84,95,98,91,104,102,99,99,83,85,108,110,99,93,100,96,102,98,104,96,99,99,105,108,122,102,106,101,99,96,95,100,98,101,99,109,100,87,91,92,106,101,83,90,103,90,103,100,89,104,95,73,95,107,95,88,87,91,90,90,99,99,112,98,89,112,101,91,101,95,87,111,94,102,113,92,96,100,101,100,104,103,92,96,106,99,106,103,100,115,91,106,103,100,109,94,105,93,95,103,101,105,102,93,89,98,79,99,108,96,98,87,93,105,107,96,91,98,115,98,99,95,85,97,93,100,91,99,93,85,81,91,96,109,92,96,90,86,108,98,101,98,105,95,92,109,90,87,100,86,105,102,107,91,108,101,102,102,113,83,74,95,95,69,103,96,114,94,102,99,94,90,91,99,98,105,86,93,102,93,85,94,90,109,92,97,102,105,115,92,99,97,107,98,101,98,126,101,108,86,109,107,91,100,98,95,98,86,99,103,104,103,101,96,98,97,92,94,89,92,91,74,108,81,103,112,95,97,95,88,109,108,89,89,105,101,93,91,116,106,96,98,101,101,96,95,101,98,98,97,103,104,105,99,100,81,106,93,97,105,94,98,103,102,88,85,112,103,98,113,94,106,101,103,98,96,119,101,119,101,106,99,104,96,91,99,89,83,100,90,94,91,94,110,96,108,100,99,99,112,101,90,100,90,88,99,95,101,109,96,117,108,110,110,95,83,95,90,91,105,96,102,94,99,110,97,96,87,105,123,93,100,94,96,87,102,100,105,94,90,93,91,94,95,98,90,87,99,98,102,112,83,91,99,84,90,100,100,103,96,91,102,75,94,95,100,87,91,100,112,123,116,103,110,95,114,106,86,98,109,97,108,108,106,98,103,89,103,92,98,102,94,99,101,99,91,92,81,101,104,68,97,109,104,106,116,101,94,92,102,97,93,95,94,89,93,104,102,103,86,113,95,100,96,100,101,106,104,96,106,93,96,100,108,109,91,109,99,100,99,83,108,93,98,101,103,101,75,70,95,94,95,98,95,87,96,103,104,101,94,98,117,94,101,104,97,113,95,95,87,93,79,99,98,97,89,108,90,114,99,95,93,95,107,90,103,88,86,92,114,94,95,101,87,106,84,99,101,100,85,113,96,97,103,94,106,86,109,100,98,91,96,101,96,98,113,98,90,95,97,81,105,116,102,95,100,103,94,100,92,98,106,94,96,95,103,95,100,96,88,94,103,91,87,97,98,88,85,94,93,99,91,100,104,104,86,101,104,105,94,90,96,88,101,94,90,96,108,107,100,113,104,109,105,105,96,107,132,94,100,108,89,91,93,101,94,102,106,96,101,94,103,98,117,105,98,105,88,95,113,98,114,107,97,98,100,98,97,105,103,105,106,94,75,83,105,107,95,98,99,119,102,103,97,102,88,96,102,101,90,90,101,92,103,84,96,97,106,85,98,104,97,98,99,98,94,95,97,97,83,97,105,105,91,105,101,107,96,94,105,107,102,90,103,101,105,111,93,94,95,94,98,102,92,96,109,102,99,101,91,97,95,110,101,105,107,102,112,89,105,104,85,95,97,104,105,100,103,93,92,102,83,96,139,99,95,93,113,100,101,105,97,96,98,97,105,95,98,102,85,117,93,97,109,89,105,105,95,88,91,92,105,93,80,104,104,93,97,109,95,102,91,108,109,94,96,91,109,96,91,111,90,94,105,111,66,104,94,105,92,100,97,93,87,94,109,100,104,95,111,109,96,98,97,96,94,88,100,94,98,91,96,105,92,74,108,88,92,84,114,97,111,125,88,91,94,94,101,102,83,97,99,107,94,101,103,110,94,104,103,93,98,86,95,101,105,85,95,97,93,89,87,116,93,103,90,94,95,100,82,79,101,92,95,101,91,74,106,90,92,94,96,86,105,110,99,103,102,97,100,92,94,99,102,96,103,104,101,93,99,109,87,85,87,94,91,101,100,95,107,109,113,95,103,98,103,101,95,102,98,96,92,110,105,90,115,91,107,113,98,100,106,91,98,98,108,97,101,108,103,90,82,90,114,114,91,87,93,65,100,103,108,105,103,111,110,101,102,96,117,116,102,103,97,100,90,96,95,121,98,103,95,108,101,98,107,106,110,99,97,100,115,83,103,100,99,98,96,98,93,99,99,104,91,90,92,98,99,108,104,89,94,97,100,106,127,105,100,105,89,91,105,105,99,103,101,100,112,77,96,112,89,99,99,102,102,105,108,105,109,103,97,100,97,97,95,107,84,114,107,108,104,103,108,98,102,95,88,87,95,106,95,99,104,99,91,101,95,104,117,111,100,89,95,121,77,84,105,103,113,105,91,118,103,96,107,91,106,109,92,93,103,102,95,110,132,100,95,111,104,99,101,90,95,107,106,93,104,108,92,91,101,105,102,107,108,109,98,82,95,102,105,91,108,104,99,97,104,100,91,92,95,107,103,98,101,118,94,100,92,97,104,106,91,93,91,105,93,95,101,107,108,96,92,88,112,96,73,125,104,102,111,97,99,85,107,94,99,114,104,105,101,105,95,97,106,97,101,111,99,101,111,79,88,92,95,138,97,98,72,88,102,108,108,106,96,104,98,97,95,106,93,104,118,97,108,101,106,113,101,100,87,121,99,98,103,85,109,112,94,101,107,103,96,123,90,105,101,102,88,91,96,94,101,98,109,108,88,89,108,110,87,87,104,98,109,87,111,106,82,95,92,101,95,106,104,131,102,97,79,92,96,95,102,99,96,95,104,106,99,102,90,108,104,85,100,79,103,95,102,92,92,105,102,91,93,90,118,105,102,101,103,95,100,91,100,97,92,95,94,103,106,103,94,92,89,104,107,91,98,77,97,108,88,96,89,87,96,101,98,98,95,96,100,103,109,97,93,101,106,108,86,83,100,104,102,109,112,90,87,90,94,103,85,106,92,100,91,70,93,100,102,104,103,90,102,102,105,100,99,96,100,98,100,96,92,101,118,87,102,106,113,94,91,96,98,96,88,103,111,106,91,115,100,96,98,100,100,110,98,106,100,87,97,113,98,105,103,97,106,96,77,93,96,99,107,108,94,95,116,99,104,96,105,99,102,95,100,87,101,91,95,100,102,90,87,110,94,98,95,96,108,109,105,89,103,106,80,98,75,99,102,73,102,100,90,93,97,109,90,86,110,114,98,84,89,98,103,84,89,88,114,96,100,113,101,112,115,108,105,87,119,82,99,91,76,91,98,125,103,91,98,105,109,92,109,101,98,102,105,93,94,101,95,103,99,95,98,91,90,92,77,96,97,91,95,98,97,102,103,99,96,109,97,94,110,98,101,107,79,91,82,97,96,107,98,99,95,99,93,98,115,94,95,99,92,102,96,121,105,104,109,100,112,113,93,98,109,106,98,90,105,94,84,84,108,105,109,101,95,105,96,98,121,96,80,97,103,98,99,96,94,99,93,100,100,100,112,85,85,100,98,98,95,92,101,102,104,112,82,97,110,110,87,99,83,106,101,114,112,97,110,105,65,97,111,109,103,94,105,94,110,87,111,98,68,100,99,106,116,113,99,99,104,90,102,98,110,102,93,93,91,106,90,105,96,108,103,102,101,113,100,100,106,102,103,100,99,102,106,102,98,105,94,103,100,101,94,111,106,113,97,97,101,100,98,79,84,96,100,107,98,91,99,86,99,88,65,101,96,94,91,100,103,92,107,109,94,108,102,104,101,99,101,94,101,96,102,104,96,105,106,100,103,99,109,88,96,97,94,93,87,100,101,99,96,87,107,100,95,93,103,95,91,100,104,106,93,101,105,96,109,99,92,94,100,95,74,107,113,101,94,113,64,109,103,100,106,97,99,89,100,101,96,97,105,104,91,111,94,98,96,105,106,100,105,93,84,96,109,105,103,104,99,90,114,96,104,91,95,101,96,82,100,103,98,81,102,113,101,97,88,105,101,107,99,106,113,91,92,80,95,94,108,93,95,86,96,101,104,98,97,106,116,108,96,87,108,94,100,103,97,95,111,90,100,91,101,99,96,107,83,99,105,98,90,97,92,93,98,92,108,101,101,101,105,104,97,103,98,108,100,90,92,93,102,89,89,94,106,77,100,96,95,102,97,91,100,110,95,100,99,106,108,101,94,98,120,101,117,92,96,108,131,84,97,93,101,93,98,97,98,78,96,116,93,99,99,102,92,97,87,94,71,98,99,109,108,97,110,88,83,98,96,91,97,94,96,96,111,95,104,94,109,92,122,110,94,100,92,76,98,97,86,87,108,100,102,100,105,105,112,108,106,114,90,105,100,95,91,69,90,99,95,99,103,89,106,98,96,97,106,119,101,100,97,91,97,100,84,99,85,116,97,84,95,92,93,83,98,117,91,102,93,95,112,88,99,87,123,100,102,102,92,91, +389.01257,91,95,101,101,93,101,97,91,97,94,92,98,103,93,87,106,95,64,116,107,103,97,101,103,114,95,90,98,99,101,104,110,100,87,108,94,96,105,112,82,101,95,109,108,93,95,101,84,84,107,92,101,96,97,102,109,108,101,109,97,90,98,95,109,93,113,95,103,91,90,108,101,97,112,100,137,103,110,104,103,104,98,97,89,123,105,107,101,94,95,98,97,84,102,93,93,116,103,100,102,119,94,96,100,105,102,101,105,108,90,98,110,96,102,104,99,100,97,109,97,94,108,106,93,114,103,111,101,111,100,107,87,92,84,96,132,93,120,103,110,104,119,99,99,103,99,106,98,94,91,98,101,89,90,97,104,102,91,115,113,94,108,121,111,102,102,88,78,103,109,97,112,87,110,114,104,107,103,99,107,98,115,107,102,101,97,98,101,111,108,96,90,114,106,108,100,101,105,109,95,114,96,97,100,99,102,107,75,89,102,98,84,102,104,98,104,95,96,101,108,93,107,114,95,107,112,101,98,108,98,95,105,106,90,104,94,116,100,110,105,106,100,117,103,97,110,120,117,96,97,99,84,99,106,111,113,91,100,98,112,90,101,100,105,111,78,100,103,99,97,93,98,104,109,106,98,94,107,83,85,102,109,116,103,101,98,105,108,113,101,93,105,99,103,119,96,102,99,98,102,94,100,96,94,105,114,124,100,102,98,97,108,105,96,99,112,96,75,108,98,109,91,99,95,109,117,93,100,118,111,108,100,103,96,101,109,99,99,101,102,111,106,83,101,101,103,101,91,97,91,95,101,100,100,100,102,112,108,107,106,103,109,98,95,98,93,90,105,91,102,96,67,109,102,106,79,105,105,90,103,104,108,99,108,73,101,86,104,103,95,111,98,113,105,99,98,110,105,97,98,100,103,99,102,101,96,99,104,92,102,107,94,107,100,100,88,111,106,90,101,85,94,92,105,100,94,109,90,88,78,85,108,103,99,98,99,60,110,92,105,102,92,90,96,92,101,83,84,107,106,95,95,106,102,102,102,105,107,101,92,105,117,94,102,100,107,103,95,96,109,106,110,94,98,102,101,100,115,102,87,102,102,107,94,98,80,99,105,104,96,96,95,109,97,103,105,105,92,102,106,96,91,93,98,84,86,99,101,105,99,110,109,95,93,102,103,95,100,94,93,108,104,108,94,100,101,95,99,97,105,104,102,100,106,91,106,99,91,111,107,100,93,94,103,104,106,101,127,103,104,104,92,107,105,108,99,94,85,101,104,96,106,108,90,93,98,110,88,99,95,101,114,102,101,107,102,107,105,110,114,100,93,89,90,103,108,102,101,102,99,105,91,92,99,99,96,101,111,92,71,92,106,86,101,85,94,99,99,101,112,104,113,96,107,99,95,100,105,101,106,95,94,108,106,102,102,107,101,97,106,103,91,94,105,94,95,92,101,114,101,105,106,110,104,103,90,94,109,107,103,97,95,103,100,106,104,94,101,96,102,105,113,109,102,92,99,101,93,101,100,110,103,101,99,105,109,109,103,97,91,103,104,108,90,91,96,108,94,102,107,98,101,96,99,103,96,105,93,94,109,111,103,105,98,99,98,104,121,119,92,105,98,100,93,98,101,94,102,104,100,106,93,105,90,102,94,108,97,91,109,95,96,88,103,99,95,118,86,99,102,100,92,112,112,102,111,103,92,97,102,112,95,95,95,106,102,107,96,103,73,88,102,106,99,94,110,101,96,105,95,100,100,101,93,89,106,76,102,103,107,111,105,104,104,101,111,106,97,96,97,114,98,109,101,102,104,101,101,98,110,107,108,101,83,100,106,106,106,91,89,113,102,101,102,109,95,108,98,99,105,95,102,120,102,106,97,106,93,106,95,101,101,106,110,105,103,97,98,95,107,90,119,99,99,105,107,94,95,96,102,96,96,105,95,96,91,91,105,105,95,101,122,100,82,95,90,108,82,84,103,105,100,97,108,105,96,111,94,103,103,106,79,106,89,105,100,96,108,96,95,106,87,117,104,92,100,100,87,91,106,95,103,102,99,96,94,107,102,96,105,86,94,117,96,101,103,94,104,102,114,97,96,98,90,93,106,103,103,100,90,108,109,100,101,101,99,94,101,104,98,99,101,103,100,101,112,111,95,96,102,103,93,101,110,96,105,98,96,99,102,104,113,101,120,108,112,96,109,115,108,118,100,91,104,102,99,95,95,82,100,92,95,90,100,89,104,104,94,100,109,109,97,106,99,92,98,110,105,103,98,102,98,100,98,105,102,92,101,94,106,104,109,101,93,103,101,105,107,107,100,101,119,109,96,107,103,99,105,108,111,95,97,94,92,73,112,86,112,111,88,100,99,97,94,104,89,94,101,109,91,79,101,107,104,98,112,96,94,99,99,94,92,102,106,92,96,95,103,100,71,97,108,86,99,101,102,92,95,123,95,116,79,98,86,90,88,101,87,112,102,83,102,103,93,92,107,96,102,107,91,95,87,109,101,86,105,101,103,101,92,96,96,98,111,108,109,103,104,94,100,100,100,97,96,101,91,84,80,89,99,99,108,104,87,104,99,91,93,93,101,98,97,96,104,103,108,88,109,107,86,74,106,95,95,104,89,111,87,99,96,94,79,82,80,105,102,96,95,94,81,99,92,104,101,87,88,92,96,83,92,105,90,104,105,91,113,121,93,91,108,100,85,106,97,102,101,80,97,104,97,103,96,99,100,110,101,126,106,105,95,99,105,89,109,100,112,96,106,90,103,107,102,100,94,90,98,103,108,96,89,106,107,90,99,103,85,96,98,105,104,90,89,102,97,106,96,98,90,99,94,95,113,100,86,100,98,96,122,97,103,103,100,101,98,96,101,93,94,103,94,104,95,109,106,104,87,106,103,94,68,91,99,94,91,96,89,103,92,104,99,92,105,98,100,102,90,100,101,110,92,81,96,100,130,97,96,104,118,81,99,97,96,97,92,97,99,88,112,87,97,93,96,83,97,104,87,102,102,102,95,101,98,98,101,98,100,99,87,93,95,100,111,90,101,105,95,94,91,103,100,99,101,96,93,90,95,95,87,89,94,108,105,101,96,109,101,104,102,95,88,104,93,94,106,100,98,103,103,100,91,90,94,106,101,75,104,100,121,106,102,105,69,98,93,101,94,96,84,96,100,91,100,99,114,116,96,115,96,88,86,92,98,97,98,98,102,103,88,98,98,114,98,107,99,94,83,109,99,96,87,97,105,83,110,87,92,102,97,115,96,98,89,109,107,96,92,85,105,94,98,108,100,109,90,102,103,89,109,76,92,100,98,107,107,104,94,87,100,103,104,79,101,108,96,106,107,99,102,103,119,102,97,87,105,88,113,109,103,76,100,101,100,104,99,97,113,93,91,100,109,98,90,125,90,103,95,116,81,108,77,105,101,99,93,94,92,98,105,91,97,103,98,91,88,81,98,107,101,98,110,110,91,103,94,107,98,98,107,107,94,83,98,83,105,110,86,101,105,106,91,92,95,91,110,103,104,101,100,102,87,92,96,95,94,101,112,99,97,88,106,108,100,82,98,120,98,90,108,92,89,106,110,100,100,106,108,93,105,110,92,85,97,102,109,105,97,96,76,109,109,117,101,85,106,97,101,108,106,99,91,102,91,96,104,106,87,94,104,103,104,104,95,91,106,109,100,97,112,116,98,98,98,98,95,102,93,97,103,93,87,99,113,68,90,100,71,90,109,94,107,91,96,96,91,102,95,114,100,104,100,83,98,95,102,93,98,94,84,103,98,94,101,85,109,88,98,88,96,103,103,108,98,101,98,93,102,97,102,96,89,95,103,107,94,92,105,103,98,100,95,76,107,99,104,99,87,101,99,75,91,105,100,101,105,90,99,110,102,88,104,100,98,104,107,108,92,97,96,115,94,98,92,99,105,100,102,95,91,102,93,98,96,105,117,107,100,100,89,89,109,102,95,90,94,88,96,99,106,104,105,102,97,94,99,100,94,92,99,106,93,113,97,116,108,108,97,109,93,105,105,100,91,90,100,100,115,87,101,101,98,107,92,100,103,91,113,101,109,104,94,96,105,101,85,106,103,76,103,109,89,98,91,100,121,103,101,109,105,102,83,103,99,95,102,107,99,96,96,96,105,89,96,90,85,109,97,99,103,103,109,103,99,109,90,128,80,94,95,94,98,108,104,106,106,94,96,110,98,93,101,94,98,105,92,100,99,89,109,102,96,93,100,100,105,92,107,97,108,102,92,100,100,98,106,91,102,96,95,87,98,93,103,107,82,97,114,101,101,113,124,95,101,112,93,88,104,105,94,101,101,94,102,102,96,110,99,88,95,103,96,100,100,98,94,87,120,92,106,93,98,100,98,109,96,91,96,106,112,100,83,94,87,103,109,96,97,90,91,94,97,106,90,98,93,104,97,88,117,84,88,100,81,99,101,97,112,100,82,100,99,91,89,110,106,101,86,107,96,94,101,93,100,94,94,101,98,102,95,105,99,92,88,97,121,102,95,103,97,108,94,98,109,95,105,96,92,101,95,94,85,97,99,100,103,101,123,106,96,108,100,89,85,98,94,111,102,98,93,99,105,95,108,98,95,101,91,91,97,96,84,90,105,105,102,93,76,111,98,112,112,100,97,100,103,99,116,105,96,94,87,100,91,89,91,92,88,83,91,109,95,104,92,109,93,98,104,91,94,103,90,89,87,90,99,97,79,113,69,109,91,105,92,83,98,99,87,97,91,97,109,110,104,115,91,98,106,90,95,102,101,87,103,100,101,93,88,92,112,99,100,110,89,99,104,116,107,76,108,107,95,88,108,98,104,90,112,79,93,102,82,93,97,89,98,109,104,110,94,86,91,121,96,123,87,108,85,105,98,64,92, +389.15265,90,83,94,94,88,98,98,103,96,100,92,89,99,109,99,93,86,104,94,95,112,103,97,88,102,105,93,98,90,96,94,97,103,98,106,95,98,94,99,104,111,77,96,86,101,64,106,88,112,100,86,104,106,110,122,91,100,80,109,88,95,87,97,79,103,108,92,101,93,95,89,102,107,91,93,100,90,104,99,105,94,97,100,104,97,92,99,96,99,92,99,86,88,90,103,92,102,93,83,93,78,94,114,98,103,93,99,108,88,104,95,101,101,95,92,77,105,100,95,102,97,87,109,105,93,101,99,97,93,94,91,93,109,104,82,99,97,90,97,96,84,107,87,106,94,99,102,99,107,84,107,110,107,94,99,110,90,91,116,106,94,100,106,87,86,93,88,77,74,108,112,75,93,106,101,95,104,104,94,91,95,102,104,97,98,91,100,90,88,114,90,88,91,96,97,98,105,102,86,99,96,95,104,96,95,109,111,97,93,106,93,96,103,103,95,102,101,100,94,94,114,103,100,97,103,109,108,103,95,97,91,99,88,118,82,102,99,98,101,85,97,105,96,100,93,101,91,90,99,93,93,94,84,117,106,102,104,99,112,90,92,106,93,99,97,88,90,106,97,100,97,88,99,100,94,99,99,100,86,91,97,101,97,95,85,103,102,101,104,102,94,95,98,99,109,99,102,106,103,112,108,101,86,114,96,106,116,98,86,102,98,105,121,90,95,106,98,91,107,98,112,97,103,101,98,98,91,102,98,101,94,87,112,97,89,94,75,99,101,112,93,93,93,96,101,106,117,92,94,93,110,107,91,76,90,101,94,108,102,115,105,96,91,93,104,101,94,105,111,96,97,101,113,99,100,94,98,96,102,97,101,96,90,101,87,86,72,70,103,92,104,88,89,100,95,98,99,109,100,98,116,107,102,98,87,98,96,107,90,103,85,104,82,94,121,90,88,96,104,104,95,89,97,105,96,92,93,87,94,96,102,109,93,96,100,95,97,101,100,101,88,104,106,109,110,100,84,96,92,98,86,106,98,98,100,101,97,102,105,97,88,90,102,129,102,106,105,104,97,97,104,108,96,85,97,86,108,106,102,96,96,95,102,98,104,101,107,95,101,91,107,113,104,109,93,98,96,102,91,91,91,103,93,77,102,105,92,101,115,108,104,106,104,108,100,100,105,79,96,101,99,108,97,87,102,108,101,92,100,90,102,103,93,96,101,88,106,99,97,97,98,98,105,97,103,96,109,90,101,90,107,99,96,102,94,101,98,107,92,101,99,100,91,98,101,95,101,99,107,90,79,92,108,104,94,101,104,88,97,84,98,84,116,105,98,103,109,102,91,96,97,100,102,105,106,103,88,99,100,90,100,109,104,105,103,97,76,94,106,107,95,114,109,98,79,98,95,97,92,94,114,105,102,99,93,99,104,101,99,96,98,103,97,109,101,98,96,101,102,97,95,94,102,83,94,82,91,94,99,99,97,93,98,103,113,96,100,102,100,101,107,114,101,89,87,106,104,92,107,101,102,100,107,100,96,95,102,95,99,87,91,88,107,98,90,89,105,96,105,106,105,102,91,115,98,102,94,101,101,99,93,90,91,99,90,97,102,104,88,99,111,118,92,96,83,71,67,111,99,98,93,83,86,111,89,85,100,95,95,115,96,94,95,97,97,92,94,95,103,95,109,95,104,109,105,94,97,100,103,112,107,88,112,96,99,95,90,94,87,95,95,98,96,109,91,105,94,106,96,97,90,100,96,99,88,96,80,100,87,100,103,83,105,82,67,106,93,86,79,89,102,108,99,102,100,105,91,88,101,100,91,101,99,104,95,101,93,75,106,97,90,91,95,106,114,87,101,96,94,96,80,117,95,99,97,90,98,106,96,91,94,87,109,106,98,107,97,102,101,97,103,99,105,93,88,98,87,91,93,97,100,93,86,97,109,85,90,104,92,100,104,96,86,104,96,103,98,108,99,99,99,101,109,96,95,107,94,86,107,83,102,102,96,104,98,94,85,104,94,104,96,105,97,92,94,90,86,110,106,105,110,100,105,96,86,102,102,101,99,83,100,102,99,100,92,105,82,104,95,100,100,98,97,102,95,96,100,101,91,80,105,101,98,103,91,102,105,87,82,101,88,103,88,103,90,87,99,98,102,105,114,99,101,101,106,93,101,88,92,100,104,106,100,92,100,121,99,93,98,98,91,101,93,96,100,113,119,98,95,110,98,103,98,107,108,91,90,97,102,101,94,92,101,95,90,97,101,104,97,93,94,100,89,100,117,106,102,92,102,98,90,107,92,104,99,85,105,105,86,86,95,130,87,77,85,99,105,96,74,105,102,90,100,91,109,91,100,93,89,100,102,97,95,100,90,94,106,83,94,103,102,97,92,95,101,95,71,103,99,99,90,103,99,99,104,97,102,102,96,102,93,109,86,129,99,102,104,95,100,100,83,98,103,107,102,101,109,104,95,115,80,112,81,96,97,99,73,91,101,88,98,83,112,92,87,104,96,87,96,98,99,118,103,104,105,93,99,84,91,108,104,119,91,96,99,96,93,105,99,93,105,98,96,108,103,95,103,101,69,106,103,87,90,112,101,97,85,104,106,97,112,120,112,93,114,94,110,99,95,107,102,93,96,84,86,103,93,104,101,96,96,100,102,97,93,86,99,97,97,101,99,93,92,102,104,97,117,105,85,95,111,104,96,98,97,121,98,101,108,101,108,108,100,116,92,91,97,104,92,94,101,98,72,98,85,101,98,109,103,92,100,105,92,95,112,97,102,113,106,101,90,109,98,101,116,101,109,103,107,101,102,100,105,101,100,112,91,109,99,121,91,102,109,101,96,95,93,94,96,98,104,94,108,105,101,116,108,98,104,105,106,103,100,99,109,96,104,109,107,110,95,103,96,101,99,110,110,92,103,103,105,83,91,105,95,95,93,94,94,92,103,98,91,97,107,100,96,92,101,105,97,103,101,91,107,113,88,108,99,100,116,104,96,99,99,95,103,102,108,91,94,89,99,103,102,93,109,90,98,91,109,102,95,130,96,101,109,100,112,104,105,101,91,96,98,96,101,91,98,105,104,106,75,95,103,87,95,97,100,103,86,95,96,103,89,98,104,103,103,100,96,95,104,92,89,100,109,99,102,102,98,102,102,123,92,96,88,91,102,110,108,99,89,109,99,102,107,96,97,92,91,105,116,103,87,98,108,101,87,101,114,110,92,97,99,109,104,91,111,100,98,102,96,105,101,70,94,104,102,91,109,98,101,97,81,102,99,109,107,99,90,91,108,98,102,102,96,92,104,97,105,87,91,104,105,95,94,97,88,97,89,96,100,111,84,100,98,104,103,87,98,104,96,90,95,96,97,96,102,92,103,106,102,96,102,106,97,108,96,100,94,109,111,102,116,90,102,108,97,87,101,90,107,99,101,101,91,101,93,100,94,105,103,91,92,106,109,93,97,102,105,99,124,101,87,97,98,119,104,101,96,105,93,106,104,107,95,101,103,103,96,99,101,129,105,94,101,110,102,100,98,104,124,104,102,97,111,91,108,123,108,111,102,112,94,99,102,96,102,93,93,107,97,108,84,92,104,127,94,100,94,105,123,93,95,74,101,110,90,113,93,96,107,101,106,113,103,99,93,83,92,98,101,110,96,94,94,106,97,95,99,105,98,107,83,105,114,97,111,87,100,101,108,104,111,91,109,100,97,105,80,70,108,87,97,104,97,105,105,99,102,117,98,96,96,92,91,104,107,101,97,100,100,110,97,84,101,90,109,99,102,103,94,112,107,96,83,101,108,109,110,100,104,101,94,113,83,95,96,103,102,102,83,100,110,106,104,90,106,106,73,113,105,91,108,108,101,93,113,95,92,94,101,96,111,91,105,85,97,98,104,104,99,87,93,99,108,103,111,98,106,107,117,101,103,101,102,116,111,107,92,105,89,105,91,102,94,89,90,99,95,99,92,104,94,103,100,100,88,107,106,101,82,96,102,104,99,93,96,102,97,104,100,98,99,108,110,96,104,99,88,113,103,93,104,102,108,93,105,102,91,98,105,97,95,102,105,101,87,96,98,95,95,95,94,108,108,105,96,104,77,113,92,95,109,100,108,93,93,108,104,88,93,111,94,103,104,95,91,94,100,98,96,99,99,91,100,100,95,92,117,97,91,91,96,92,106,111,92,103,107,114,100,94,100,107,109,99,84,88,117,90,90,112,89,100,87,102,102,96,104,106,103,97,102,108,81,94,98,87,99,96,109,88,77,91,103,105,98,102,106,116,93,110,109,100,93,103,97,116,104,107,103,99,102,114,104,107,112,102,98,91,105,99,100,101,103,98,91,100,100,102,106,96,97,99,108,111,116,106,107,113,98,102,98,105,98,103,114,94,97,100,93,97,112,91,98,100,100,103,97,103,94,78,109,111,89,92,87,101,98,98,92,94,110,96,84,96,104,106,106,95,100,91,100,96,83,100,107,102,92,85,100,106,110,100,99,108,97,102,104,100,100,85,99,89,97,98,108,125,105,101,105,87,103,110,101,112,110,103,107,102,108,102,79,115,112,85,97,101,98,89,105,104,107,73,96,101,100,105,89,108,92,100,98,102,105,103,102,103,76,101,76,104,99,95,101,100,105,120,99,108,109,98,95,96,92,110,94,92,103,94,98,104,103,95,106,117,80,91,104,112,96,104,91,95,93,112,98,100,100,96,92,101,81,95,95,102,112,99,98,108,90,88,92,96,88,107,107,98,92,92,102,121,87,105,103,105,108,106,95,94,105,119,103,120,100,89,86,93,109,102,107,102,105,114,104,95,98,103,109,97,98,88,94,98,84,102,103,79,93,96,94,86,113,109,97,97,94,102,113,84,128,92,130,105,117,97,103,65, +389.29269,110,131,97,98,91,102,91,90,94,96,96,96,76,91,93,100,97,105,99,73,100,96,100,104,100,102,105,94,113,105,105,96,104,98,99,116,98,86,88,97,96,88,90,101,99,102,92,117,121,91,86,100,113,96,96,92,98,90,105,78,100,89,92,99,101,104,100,110,110,97,101,94,105,108,118,98,100,91,91,99,107,102,93,99,113,101,110,102,95,93,98,112,96,97,98,88,108,83,98,102,100,82,100,105,95,95,88,95,104,105,101,93,111,98,112,97,93,96,110,92,95,99,94,104,110,108,115,90,112,92,89,99,103,109,94,100,100,113,67,99,87,107,104,96,93,109,101,103,91,103,105,98,98,109,102,105,103,92,113,102,93,116,105,102,100,101,91,92,97,113,95,116,97,95,109,103,102,84,110,96,110,103,104,104,95,102,91,83,107,96,93,87,95,104,99,93,91,90,92,97,103,91,101,100,94,89,100,102,90,101,91,112,108,103,100,106,93,94,102,101,110,105,107,108,92,105,110,103,109,104,100,96,101,90,93,99,105,103,101,116,99,114,106,99,98,99,106,106,95,103,97,105,100,100,84,108,90,105,89,104,97,109,94,105,92,109,98,80,103,101,104,97,101,108,98,91,99,97,98,96,115,74,90,93,110,92,109,86,96,98,95,98,94,99,99,90,93,91,106,96,105,101,89,110,95,100,93,97,103,98,101,102,87,112,95,107,101,95,85,95,97,100,104,99,101,102,94,90,99,94,82,88,100,93,105,91,98,108,86,92,106,100,98,97,96,96,107,99,109,105,102,92,105,91,110,98,114,107,102,101,99,93,94,82,100,92,105,92,86,91,103,102,106,96,108,100,101,100,104,99,96,97,92,79,97,89,93,88,105,97,105,95,92,95,101,92,101,94,91,104,98,105,116,87,104,86,79,113,97,94,94,95,100,107,98,97,90,103,102,93,98,94,85,103,101,77,102,96,82,105,100,94,110,90,99,78,101,104,98,99,103,90,101,103,72,100,91,90,114,99,101,101,94,109,94,103,100,100,102,99,95,97,104,95,100,100,91,104,100,113,105,94,108,97,99,100,98,102,95,105,111,99,105,102,105,94,107,92,91,100,104,95,92,96,97,98,82,113,94,105,103,83,90,98,84,108,99,102,106,91,106,95,95,105,88,101,95,98,93,90,124,105,106,118,98,92,97,102,92,100,90,98,108,94,89,108,99,83,98,87,95,90,95,96,98,83,91,104,110,116,102,104,112,110,97,103,102,112,95,94,111,99,95,103,90,96,99,121,95,100,84,93,100,99,95,92,89,88,91,91,106,95,104,102,99,98,94,99,83,111,98,95,102,93,113,109,106,109,107,97,96,96,98,93,94,95,93,105,105,101,104,114,83,102,100,98,97,111,99,109,99,91,94,100,104,103,99,102,97,66,97,84,113,96,79,92,100,99,97,96,117,86,90,99,106,111,93,101,105,103,98,93,113,105,90,102,109,101,101,94,98,103,96,102,75,96,107,93,94,94,99,97,103,96,116,102,91,85,100,98,99,99,98,85,104,89,88,91,103,105,100,95,87,108,106,108,90,92,87,84,104,96,76,96,103,108,109,104,90,85,105,110,96,94,84,94,60,93,106,85,92,99,108,91,117,81,107,99,110,120,96,102,108,99,83,93,108,111,108,94,95,88,103,108,106,100,107,86,91,109,117,103,73,109,86,91,99,103,117,101,68,92,83,104,102,95,96,102,98,96,96,99,104,110,99,105,94,107,90,95,109,95,107,107,109,105,108,102,95,93,108,98,111,95,98,109,87,109,107,102,106,88,83,95,101,104,89,105,117,75,105,103,94,98,107,98,80,103,99,95,92,97,87,100,95,91,110,99,94,100,101,101,95,96,96,125,90,101,96,95,93,104,102,95,97,103,106,94,103,100,92,96,94,112,105,87,88,97,84,102,93,109,76,93,97,98,102,97,105,117,84,110,89,100,101,111,97,107,104,96,98,133,88,99,98,88,100,97,85,98,103,104,95,106,92,75,93,78,92,93,99,76,104,109,95,108,103,100,83,96,95,99,106,99,104,100,99,97,96,86,72,93,96,111,94,93,101,115,94,90,105,97,105,99,90,96,100,98,97,96,109,99,106,97,104,95,104,94,92,98,100,99,108,102,102,99,102,80,96,103,106,103,95,97,101,100,98,104,92,91,100,103,106,88,95,99,99,105,105,102,95,109,87,105,94,88,100,98,104,98,92,91,98,100,94,82,95,103,93,89,98,108,117,95,100,101,98,104,94,106,102,99,98,100,105,102,92,89,89,86,113,104,103,87,101,100,91,100,98,95,105,101,105,101,95,84,81,81,93,94,96,93,88,97,101,102,114,90,103,98,104,98,111,101,92,111,100,122,104,108,104,101,98,103,104,97,98,106,94,99,82,106,87,107,99,96,96,79,101,104,96,90,88,105,96,91,83,95,100,78,84,104,91,90,93,80,110,85,101,95,104,73,96,80,93,91,87,101,95,81,113,103,104,95,104,89,103,91,91,100,107,88,99,89,105,97,96,95,113,100,98,95,90,90,96,101,107,104,98,92,95,89,93,115,97,103,89,99,110,102,99,95,110,105,110,98,103,76,92,97,108,87,91,90,109,104,93,99,101,87,85,83,99,93,96,85,91,95,91,102,103,68,108,88,92,83,105,91,100,97,101,98,105,93,83,110,99,93,87,102,96,96,106,89,105,103,104,122,102,95,92,111,95,107,99,102,104,95,94,107,104,100,102,102,107,95,97,110,93,89,101,100,104,108,95,111,113,114,105,95,97,109,94,103,99,108,94,95,86,95,100,96,106,100,98,84,93,103,93,112,101,93,97,95,97,88,88,104,99,97,64,101,101,107,104,90,89,102,96,96,93,97,97,89,93,96,98,96,96,109,98,90,89,97,94,105,102,98,103,82,94,101,93,97,89,105,91,101,92,87,104,84,94,96,98,104,97,95,113,90,101,90,98,96,102,97,102,102,94,109,109,87,99,98,104,106,88,81,89,101,89,87,111,98,103,104,106,95,95,93,105,91,111,94,101,87,102,107,108,101,102,110,96,99,104,104,113,102,101,94,93,91,103,99,101,98,97,104,102,93,89,103,88,94,109,118,99,96,101,104,90,96,94,107,110,105,102,98,102,100,100,90,76,95,94,100,105,99,91,95,93,93,94,119,92,93,97,115,98,95,106,104,101,95,94,90,100,94,105,98,93,108,98,101,97,100,93,99,104,92,94,88,102,89,96,98,98,100,95,91,83,93,99,100,94,95,99,109,95,91,96,103,94,107,97,87,104,85,95,97,101,105,108,112,97,98,97,93,107,100,101,88,104,94,98,107,97,103,111,94,85,96,78,104,104,103,84,100,95,98,85,100,111,102,96,93,93,90,101,111,92,93,106,88,89,87,90,94,105,94,99,95,96,106,91,90,95,103,88,106,106,101,94,87,80,100,110,106,99,89,95,102,107,99,107,87,94,89,96,96,108,103,100,116,98,104,108,85,79,113,98,112,97,94,95,91,117,96,100,99,99,93,98,94,92,115,93,91,104,84,98,108,89,101,101,109,101,93,93,96,108,89,94,116,90,95,105,96,117,103,103,99,102,98,87,99,95,92,101,70,105,108,93,95,98,101,87,98,92,92,109,102,97,101,66,96,85,108,94,101,104,108,113,109,99,93,93,92,98,97,96,100,102,90,97,95,99,108,77,105,109,102,98,103,87,95,104,91,94,102,93,94,102,85,91,92,108,89,113,90,97,102,86,94,115,73,114,92,98,99,93,97,101,96,108,109,102,100,107,88,102,98,104,99,102,91,100,100,96,122,96,102,83,96,97,104,102,108,100,100,100,71,95,91,100,94,116,106,107,97,85,93,84,102,108,101,98,100,105,101,113,95,98,98,84,104,100,101,94,100,90,101,94,97,88,99,105,100,87,100,98,96,90,97,101,97,103,100,89,109,101,99,94,99,96,105,98,105,103,83,104,91,93,94,106,97,95,92,98,97,96,86,67,80,99,102,101,101,108,80,95,108,108,105,104,91,101,104,104,98,106,101,109,97,91,98,106,110,100,94,113,103,91,95,105,90,107,100,95,101,101,103,91,102,100,85,91,109,100,106,103,85,92,103,105,98,99,93,98,100,96,106,105,103,95,90,99,105,96,103,102,104,103,106,99,94,112,93,100,102,109,99,108,95,87,87,96,97,106,96,105,101,98,100,97,94,90,97,105,98,98,105,90,94,95,100,109,87,92,91,100,90,88,118,96,90,105,96,108,112,99,92,110,105,107,102,116,100,94,96,100,97,104,107,93,87,98,103,105,91,95,107,92,99,110,96,110,95,102,111,98,94,106,104,95,87,103,104,96,90,99,87,91,102,91,93,92,102,98,94,98,99,103,95,97,89,100,88,122,110,84,93,104,99,95,95,88,100,95,81,90,101,90,82,93,103,91,103,91,99,92,95,87,103,113,105,98,105,86,92,99,87,85,96,95,99,98,101,100,104,97,115,93,111,107,106,91,91,83,103,101,96,99,102,93,104,106,93,80,106,99,92,102,96,98,92,99,100,88,91,93,108,93,124,98,94,92,92,97,104,109,90,102,95,106,98,108,99,102,105,92,102,109,98,104,92,99,92,100,91,91,83,104,86,109,134,95,96,109,98,112,98,99,106,96,98,97,104,98,92,97,108,101,100,85,105,105,89,83,94,109,104,89,95,87,92,104,100,96,88,72,96,100,107,94,93,107,90,104,83,96,98,100,92,97,137,98,106,97,97,89,117,94,104,124,104,117,92,101,91,95,81,101,100,88,65,92,89,104,93,98,91,108,90,106,91,87,95,97,98,88,113,78,84,109,98,101,95,90,93, +389.43277,91,101,86,94,90,94,95,80,91,89,99,104,100,84,97,80,87,90,93,85,97,84,93,95,94,100,99,90,99,98,110,101,109,94,95,75,90,98,108,94,99,116,95,90,103,105,83,107,94,95,95,95,93,98,99,95,91,97,96,89,103,96,96,89,100,111,91,112,104,105,104,94,92,99,109,89,94,86,105,100,103,93,87,102,80,98,96,103,84,106,95,94,105,95,75,95,90,84,92,100,101,98,69,83,92,100,99,98,102,98,109,104,96,87,97,108,92,101,91,98,99,100,92,97,92,92,100,99,104,86,109,104,97,114,93,91,95,97,92,102,105,101,87,94,113,93,103,105,89,98,112,99,93,67,99,97,95,108,102,98,93,101,95,108,90,95,95,96,93,90,110,91,83,110,116,101,91,93,109,79,135,91,105,105,107,84,95,97,106,98,91,94,93,105,99,99,95,98,101,101,90,104,95,113,88,103,104,100,108,99,87,93,100,92,95,102,84,97,106,93,110,101,102,89,100,92,95,96,88,92,104,92,94,102,98,105,100,105,105,104,95,103,106,94,117,99,99,94,108,103,92,99,79,95,82,102,97,109,98,98,94,95,93,97,89,85,102,98,91,102,105,94,100,97,101,97,92,106,101,99,104,107,97,96,108,99,105,97,95,87,99,103,98,92,104,92,79,99,91,101,95,99,109,99,106,107,99,113,95,98,89,100,100,102,96,99,107,93,96,93,90,93,107,95,99,102,100,94,93,100,98,103,103,103,103,101,127,104,112,97,97,100,80,102,96,98,96,90,101,95,102,116,99,98,79,84,102,98,110,96,108,94,108,92,118,105,95,96,92,102,100,97,92,104,109,98,103,83,94,105,100,94,101,101,101,89,90,101,100,94,103,94,100,106,101,97,101,109,102,95,95,96,94,93,88,86,101,101,103,100,97,94,99,90,97,93,91,106,95,98,84,71,56,103,98,94,108,103,98,110,98,100,100,99,98,91,92,92,89,100,101,99,101,100,98,97,94,81,99,109,103,97,71,95,89,88,92,101,89,99,109,91,106,96,106,118,124,97,108,104,94,97,105,88,88,94,95,102,105,110,91,104,105,94,99,97,93,64,105,99,92,96,101,89,92,94,97,97,100,92,117,97,108,108,94,97,94,97,96,98,93,97,94,113,109,90,99,71,114,96,79,94,100,99,90,91,107,103,105,82,98,100,95,90,97,110,85,100,99,100,99,102,95,93,97,102,109,129,89,117,100,96,105,98,91,91,90,99,94,108,96,102,89,107,96,92,104,96,96,90,93,102,103,90,106,120,94,101,99,97,98,81,130,108,121,104,96,95,97,90,105,106,98,91,102,93,109,101,106,98,111,108,101,96,92,84,70,90,114,100,77,103,99,98,95,90,100,88,94,101,93,93,86,99,103,97,98,96,109,95,109,96,92,100,88,106,103,103,105,88,100,94,98,96,94,91,132,91,89,109,84,100,101,105,88,94,98,103,110,96,100,99,97,100,80,94,99,97,91,100,103,90,109,87,106,112,105,95,107,104,92,86,116,85,85,92,97,90,91,113,113,101,94,101,98,106,94,100,96,95,88,86,104,96,105,107,99,91,89,101,105,98,101,94,84,99,91,96,87,97,85,95,90,108,107,99,103,108,99,100,87,98,92,96,111,86,97,100,91,99,108,100,102,112,100,87,99,109,97,105,96,97,106,91,91,101,101,99,116,99,93,82,69,100,95,87,98,114,103,100,93,102,101,100,102,98,105,94,96,95,104,93,104,111,100,103,88,113,100,104,110,95,99,93,103,104,93,97,85,97,92,93,100,126,108,92,91,95,111,96,99,93,92,98,105,100,105,113,97,90,111,104,107,108,95,93,90,99,95,100,103,105,92,98,102,92,100,101,104,99,105,104,85,103,62,87,99,104,95,96,111,92,90,85,88,96,78,102,94,105,102,95,102,94,98,100,114,102,95,105,97,97,99,105,101,108,107,93,96,104,90,107,91,94,94,110,96,94,109,103,83,116,100,103,98,91,99,98,98,84,103,117,100,98,95,94,87,97,109,97,99,93,100,91,97,80,87,111,103,97,102,105,101,70,99,86,106,96,92,94,107,84,105,100,87,106,97,107,93,92,102,97,93,109,102,100,96,106,94,115,102,84,120,96,98,88,105,91,73,110,99,102,102,101,106,93,100,91,98,109,96,91,99,99,106,97,89,97,88,98,103,120,95,89,94,84,98,93,110,98,98,94,97,92,90,96,84,110,92,104,94,105,93,94,101,97,102,93,101,94,98,93,121,95,101,95,97,96,85,102,105,94,100,104,84,99,96,109,93,103,93,83,110,88,100,104,86,99,100,97,86,96,92,86,87,86,125,84,123,96,86,101,98,100,93,103,100,93,96,112,90,84,91,97,77,93,102,98,101,90,100,109,94,93,93,107,95,109,86,97,94,86,96,94,97,95,92,98,91,102,92,103,98,93,91,107,102,91,100,101,106,79,103,102,114,102,93,91,105,94,104,99,104,84,107,99,97,94,76,99,110,91,100,98,92,78,103,92,108,103,101,99,83,98,111,103,104,92,101,98,92,102,90,96,95,107,92,98,95,91,102,100,108,99,106,85,107,89,93,97,103,107,67,92,98,112,111,92,111,101,101,94,99,93,102,100,122,100,95,89,100,103,105,94,95,116,121,96,83,107,98,75,95,106,97,101,97,107,77,88,91,106,91,100,110,100,95,106,109,94,112,94,111,120,95,103,102,93,98,97,93,100,109,93,110,99,98,105,122,100,105,88,97,96,104,93,109,104,87,108,99,102,105,92,91,95,103,98,99,102,100,95,102,97,95,99,95,102,90,105,98,102,103,108,107,125,95,95,90,99,106,92,102,111,117,110,111,101,101,96,99,96,101,105,97,92,94,101,108,100,97,105,95,104,89,96,95,87,78,102,104,91,102,111,97,83,97,105,97,96,88,115,108,103,113,100,113,107,88,98,110,91,97,103,103,104,101,109,83,99,94,88,93,104,94,108,102,98,107,92,96,91,96,97,102,96,105,110,92,103,85,107,80,113,94,102,100,100,107,101,105,106,106,92,96,98,103,93,91,96,112,115,108,100,95,93,95,97,104,94,102,93,94,106,99,91,90,103,99,106,101,91,99,113,93,106,101,95,103,102,95,88,92,100,105,92,97,98,100,90,94,108,88,100,88,61,94,105,107,99,92,109,75,89,100,87,114,103,97,101,107,110,95,113,103,95,131,113,103,95,93,94,92,96,102,99,93,102,101,92,90,91,103,102,102,98,101,105,94,108,92,107,100,106,101,95,100,100,90,96,95,109,105,109,102,109,87,80,84,94,61,90,106,97,108,91,92,83,106,101,78,90,94,99,102,98,100,87,116,87,90,88,93,101,88,98,101,98,100,99,76,75,104,101,95,103,116,101,91,87,97,101,103,95,98,103,94,100,95,98,104,104,123,93,83,103,83,101,110,93,112,93,99,107,102,97,91,92,96,96,98,100,100,102,93,94,100,103,105,99,98,102,85,102,121,108,94,88,96,95,94,94,94,95,113,92,94,94,83,92,88,97,99,106,92,93,94,99,101,114,85,100,98,87,92,100,103,98,85,99,103,91,86,100,87,97,92,103,98,98,93,87,100,99,94,95,91,98,95,104,88,116,93,124,88,89,100,138,93,105,90,100,99,106,104,95,96,106,92,100,115,102,91,98,104,87,103,88,92,92,102,98,86,89,82,94,107,98,108,100,92,97,101,103,104,104,81,109,96,103,79,104,109,99,108,90,103,101,95,96,94,109,94,84,89,101,88,100,89,112,102,94,107,106,98,94,95,92,106,96,109,101,93,98,99,100,96,96,94,103,101,105,85,94,108,99,100,102,99,91,98,121,104,98,92,101,106,101,102,95,102,89,113,93,93,100,90,99,105,97,94,96,102,109,95,91,94,96,89,96,99,104,105,118,97,97,91,102,101,105,103,104,84,98,117,91,99,95,113,91,119,98,105,90,100,99,106,101,105,97,108,102,108,95,102,91,95,110,103,90,102,101,92,89,99,94,97,89,99,106,98,104,99,100,104,100,92,96,99,91,98,109,82,103,105,102,99,104,104,99,98,96,107,101,91,97,109,104,92,117,94,102,102,100,89,96,98,98,99,101,68,95,107,87,97,97,99,110,113,104,117,104,98,102,85,104,89,103,101,94,101,105,94,95,110,90,113,91,86,82,94,79,104,91,101,102,103,100,102,86,93,110,97,105,79,93,97,81,102,98,98,99,106,100,101,91,95,97,104,104,102,116,97,101,101,104,110,97,102,105,101,91,104,92,109,93,99,90,104,98,98,113,94,101,92,103,103,121,91,99,85,85,101,98,90,97,95,96,114,90,92,102,89,104,99,110,98,103,95,99,104,109,90,89,82,97,96,98,87,97,101,99,97,104,95,102,93,109,99,110,101,87,98,99,98,97,102,102,105,113,91,100,75,90,96,102,104,106,95,97,90,94,90,84,101,100,92,99,106,95,104,93,92,107,93,99,92,90,98,119,93,105,106,106,99,93,99,111,103,96,99,103,70,106,100,98,109,81,110,108,96,103,102,98,94,102,107,100,72,90,104,93,100,91,104,96,89,98,96,96,93,92,101,102,103,105,94,95,113,106,94,94,94,94,108,73,95,94,88,111,107,111,87,98,99,89,93,84,89,95,93,90,90,92,82,96,96,102,133,88,105,84,106,101,107,89,105,101,96,94,94,104,102,97,87,112,103,97,106,106,100,97,93,101,96,111,68,103,104,100,104,102,89,102,108,95,106,85,95,108,97,88,93,97,101,102,101,95,116,87,106,94,86,93,109,96,103,99,97,95,109,82,85,97,112,93,91,92,127,83, +389.57285,91,89,110,105,96,92,99,99,109,92,110,76,86,94,98,99,86,106,87,108,114,98,85,91,89,114,81,107,115,86,96,96,110,95,99,100,98,94,105,105,97,104,89,100,114,99,94,110,106,93,98,94,112,101,95,96,94,92,108,90,94,97,101,103,103,103,86,100,108,90,109,110,94,99,80,105,93,109,101,104,75,101,97,97,92,91,100,109,88,92,109,93,112,88,99,91,105,92,91,99,99,97,103,83,100,98,110,101,92,96,103,117,126,96,92,93,95,90,105,96,95,95,104,91,109,108,112,94,99,95,93,89,90,113,89,106,98,116,99,85,88,112,98,90,97,97,104,109,92,103,91,91,112,85,91,101,100,95,90,94,97,94,104,110,95,96,81,92,99,95,101,94,103,94,90,105,104,96,98,95,112,98,101,100,92,83,90,100,101,109,95,91,100,103,102,90,92,106,105,97,100,111,95,100,98,100,106,94,96,109,88,111,108,99,96,90,95,98,97,109,102,105,101,107,84,104,111,104,109,101,94,93,94,111,86,97,105,113,94,97,100,97,106,98,103,87,100,101,90,97,90,96,99,105,104,99,101,112,89,94,102,100,94,104,96,109,111,103,87,92,104,95,102,91,102,93,87,104,102,103,94,102,87,97,105,107,96,100,104,102,107,108,93,93,110,103,100,106,104,100,102,104,91,83,95,102,99,107,108,94,72,100,94,116,100,107,99,105,99,97,85,98,91,99,109,105,95,90,113,98,110,100,106,101,108,95,98,101,91,101,88,90,95,88,95,95,87,109,84,113,100,100,89,94,109,92,105,115,101,98,99,105,116,84,106,95,104,105,98,97,100,97,98,109,103,102,107,99,89,106,94,89,114,94,96,92,119,90,109,86,101,109,102,93,104,107,96,100,93,113,103,108,83,99,106,107,93,104,100,110,92,109,90,105,101,106,103,97,96,105,95,97,89,110,108,101,103,100,94,89,92,98,98,108,105,90,99,101,104,108,108,88,102,87,83,93,100,99,104,103,95,109,97,103,104,97,96,106,111,99,102,109,101,107,103,87,92,101,107,105,103,106,99,93,102,90,99,99,104,109,98,99,111,89,95,102,100,93,99,118,119,100,112,92,94,104,94,98,92,98,113,96,98,108,102,114,96,91,95,93,99,94,110,102,102,100,104,98,93,99,108,105,95,101,90,102,105,105,100,107,100,96,101,96,102,95,108,97,98,97,91,94,90,107,98,95,100,105,115,113,92,108,95,90,92,96,105,96,93,99,99,102,92,101,95,89,112,105,104,83,106,102,97,95,104,108,105,90,82,102,105,97,103,88,96,103,99,113,102,86,95,106,92,91,96,101,94,104,109,92,103,96,112,90,106,101,101,100,104,96,102,94,100,97,103,103,94,99,98,94,81,106,100,108,110,94,94,102,110,97,87,92,100,97,93,79,96,89,85,93,94,90,98,98,94,87,102,88,113,99,98,78,112,97,99,102,113,104,98,95,105,104,97,93,103,99,103,82,101,94,105,121,103,100,100,100,99,114,103,103,102,113,109,95,88,110,96,87,101,104,105,107,92,99,98,94,91,100,105,102,104,103,110,97,102,102,106,111,94,100,95,98,94,94,93,94,99,93,115,85,96,92,94,116,103,84,100,95,92,125,104,102,99,100,91,91,98,98,100,100,99,83,94,94,95,102,96,99,108,102,110,97,99,97,97,93,102,99,101,106,94,88,104,102,109,100,90,104,99,87,106,95,91,96,97,102,94,94,101,94,103,101,106,105,97,114,105,90,97,117,81,100,117,96,96,97,101,100,109,109,113,104,90,96,103,101,104,90,106,101,113,97,101,94,109,91,104,95,102,118,100,106,98,107,96,96,99,104,114,98,105,93,105,99,103,105,117,96,97,103,99,96,95,103,92,108,96,90,86,60,101,88,103,101,91,103,108,107,92,99,83,105,104,106,101,111,91,97,100,111,107,99,95,100,83,102,107,97,99,89,96,103,115,91,98,110,81,105,91,95,106,104,97,96,108,102,95,108,102,96,100,89,99,102,90,99,95,97,89,132,94,104,99,90,103,91,102,106,105,101,99,108,100,113,102,102,93,97,91,100,104,125,97,106,104,84,101,99,97,113,102,95,95,92,102,89,99,105,102,98,110,96,105,105,113,102,99,100,95,109,112,96,106,70,93,94,91,89,93,98,91,93,93,102,99,104,100,102,86,96,96,98,88,94,114,101,92,86,91,96,114,91,95,95,88,92,85,100,115,111,102,94,105,91,99,97,102,106,86,110,94,101,99,100,98,105,94,95,101,89,98,86,124,90,84,95,90,105,90,102,96,84,87,106,95,97,96,90,81,94,104,111,84,87,94,101,91,100,96,95,91,94,94,91,106,98,91,101,92,89,97,97,95,105,88,92,92,99,91,110,86,103,87,106,88,102,94,90,95,112,99,98,98,108,103,99,95,105,97,91,106,107,96,73,87,93,100,108,111,101,97,88,108,96,101,106,99,86,82,93,99,97,91,74,96,92,92,83,94,98,107,95,88,97,106,102,97,98,87,97,111,99,101,94,94,91,98,112,104,104,116,96,98,131,103,96,97,90,98,94,113,97,95,95,88,101,117,94,105,89,96,92,100,88,90,97,124,100,97,100,103,93,105,83,99,113,111,103,103,99,105,99,91,121,101,99,114,95,104,101,91,93,113,106,68,97,79,90,87,97,87,102,91,91,101,96,93,101,102,104,89,93,97,99,107,113,82,87,105,93,103,103,104,93,101,98,90,113,91,109,103,89,114,120,105,106,98,81,97,101,103,84,102,117,93,98,100,97,82,101,99,102,106,100,99,82,103,100,90,100,104,92,96,112,84,100,102,97,91,101,99,105,99,109,106,93,104,102,97,94,99,103,100,100,101,108,91,74,87,72,102,99,88,90,100,113,96,107,113,105,100,104,85,93,97,113,108,100,104,91,102,97,93,90,94,115,103,110,106,95,112,102,119,102,112,85,107,104,95,87,97,93,102,109,99,99,95,96,94,96,99,112,96,101,101,92,96,101,100,105,105,101,100,105,94,103,102,97,94,101,103,96,94,107,88,96,102,94,97,94,98,98,98,103,80,102,101,104,73,108,97,99,95,95,97,89,89,82,99,85,105,96,95,94,95,91,89,102,114,108,99,106,89,93,98,97,102,104,102,102,96,93,79,101,84,107,94,98,99,104,103,108,105,104,87,99,109,100,108,102,98,90,103,95,109,104,95,103,98,100,93,103,98,96,94,96,105,94,96,103,95,88,92,109,96,93,111,116,103,87,102,109,98,114,91,103,87,99,95,90,105,86,109,74,62,113,85,85,109,94,94,102,96,104,83,100,104,109,101,101,91,91,97,99,101,103,96,104,95,81,103,116,92,106,102,95,101,100,104,80,91,88,106,80,82,103,93,104,112,98,95,98,117,89,91,77,71,93,96,94,103,92,88,88,103,107,92,101,99,91,124,104,93,108,104,102,98,93,89,95,102,98,104,98,87,96,99,103,100,80,99,97,105,92,102,98,89,106,107,109,103,103,95,102,92,84,100,98,101,96,100,106,98,113,102,101,100,92,102,91,92,93,67,102,98,98,99,99,106,110,95,95,91,64,101,88,85,104,97,103,93,88,99,100,108,91,93,90,113,101,99,106,98,98,108,93,108,104,109,109,94,97,95,105,91,109,103,110,108,98,104,100,91,96,94,111,105,96,102,110,106,97,89,98,103,107,108,96,93,95,104,100,100,97,97,93,105,91,112,87,116,106,87,72,103,110,105,105,95,97,100,110,85,92,106,105,95,102,100,104,104,91,99,93,97,98,102,102,101,100,101,102,92,104,108,102,99,98,98,94,101,87,103,105,101,102,99,99,97,102,84,101,84,89,103,84,101,96,97,81,81,105,97,96,107,102,92,99,108,72,104,112,87,99,99,111,100,97,87,91,106,98,85,102,99,109,109,72,95,102,98,102,98,104,112,95,102,97,112,105,107,101,94,99,104,106,94,94,105,89,95,101,94,90,103,101,89,90,91,106,102,101,105,97,97,101,96,95,88,105,107,91,104,92,98,110,92,92,102,102,106,104,97,101,100,92,104,93,82,99,98,94,99,99,100,85,97,93,108,94,93,113,101,84,106,96,92,111,101,100,107,99,90,98,108,100,92,100,102,99,106,105,114,101,102,87,90,98,100,94,98,105,100,96,87,93,105,99,93,95,89,106,109,109,96,91,93,78,114,89,96,97,123,105,102,93,104,100,95,103,103,103,94,99,101,92,106,100,97,112,101,105,103,96,103,84,98,108,89,99,108,92,92,95,104,108,98,101,93,102,84,98,95,111,104,106,99,100,111,97,110,96,109,96,90,105,95,99,98,96,94,96,106,99,118,105,93,104,98,105,101,106,90,100,94,98,92,90,105,102,102,95,96,101,99,104,90,107,129,98,94,96,98,102,87,92,99,93,102,105,105,100,92,106,113,99,110,105,67,99,106,94,107,107,99,104,110,81,103,105,90,94,91,76,106,94,99,109,93,95,89,92,113,113,89,91,104,97,89,123,101,90,88,93,120,96,109,122,99,107,106,91,105,93,100,109,103,114,101,88,104,104,102,90,105,104,100,100,90,100,93,123,112,102,95,94,100,96,91,86,95,81,110,98,106,100,105,87,101,99,100,99,92,88,102,98,101,98,98,98,95,93,96,106,100,97,108,97,99,105,113,105,99,96,101,102,91,125,102,105,94,97,101,91,96,94,94,100,91,101,101,93,97,90,95,105,91,107,91,106,105,65,83,99,92,112,103,92,97,101,103,118,103,98,90,102,82,108,110,100,91,96,98,96,97,115,91,86,99,101,85,97,94,97,100,77,99,108,93,62, +389.71289,104,90,100,99,92,98,107,93,97,97,92,88,99,117,114,92,108,90,84,119,88,96,91,78,105,100,87,86,112,90,98,99,91,99,96,93,107,102,105,100,98,91,95,114,79,107,103,114,84,114,92,93,117,91,107,78,105,105,108,102,91,120,88,103,100,99,101,116,103,102,98,101,100,103,87,93,91,95,101,97,82,102,86,77,88,97,108,93,120,103,108,100,97,83,100,107,101,102,107,112,107,98,97,98,90,95,100,112,102,98,100,94,88,100,108,95,104,90,112,95,102,94,87,107,106,67,103,102,97,106,94,110,94,91,101,104,106,97,91,97,75,92,90,91,86,104,90,98,100,96,101,87,108,88,100,91,99,105,97,108,96,111,99,112,100,89,95,120,103,95,103,102,84,104,104,101,90,101,96,106,98,101,102,95,96,97,94,102,111,89,98,89,103,109,103,100,93,95,98,101,101,105,91,94,98,98,103,105,91,91,105,99,100,112,98,99,104,86,95,88,98,92,86,98,97,97,101,100,100,100,95,98,97,119,96,105,99,95,95,107,100,91,96,96,100,113,88,104,85,93,107,96,92,94,107,103,100,87,94,120,86,103,101,106,88,104,100,101,110,95,95,104,102,88,108,88,76,95,92,94,107,89,103,94,100,104,84,103,84,104,100,97,100,97,103,96,98,93,109,92,103,100,103,102,98,95,103,95,91,110,97,111,99,101,94,91,104,106,104,99,91,105,105,119,87,101,85,97,92,100,99,101,101,98,100,107,99,99,93,101,107,93,102,95,99,106,105,74,109,92,115,106,97,102,106,106,108,95,95,96,114,94,92,99,81,96,84,108,91,114,100,109,105,108,109,108,102,96,89,103,88,116,96,99,83,100,96,104,95,91,98,89,114,104,87,89,111,96,98,98,104,96,106,98,103,82,96,96,98,100,92,83,96,90,104,86,102,93,99,101,104,97,89,96,91,99,91,85,95,97,106,108,103,100,97,91,98,106,102,92,90,95,80,95,116,92,94,96,103,104,98,94,103,100,101,96,83,98,94,97,106,97,108,113,104,103,94,97,95,97,96,103,102,107,96,91,104,101,101,91,88,109,104,95,111,106,94,94,89,100,125,105,101,95,96,95,91,103,102,109,91,112,105,95,103,105,97,100,92,98,114,92,98,84,103,103,97,92,73,97,100,100,97,107,106,90,90,103,97,99,96,106,101,94,86,101,101,99,98,101,93,92,80,103,102,103,97,104,102,101,105,81,98,100,111,105,95,105,69,92,116,105,103,100,90,96,101,90,103,87,100,97,92,90,94,94,93,95,99,99,98,92,102,104,106,84,104,103,93,100,88,97,122,100,103,100,92,99,94,118,100,100,98,101,95,86,94,106,95,106,111,94,102,96,86,98,92,98,93,95,100,79,92,94,70,93,85,102,102,89,96,114,97,102,88,100,95,94,98,103,102,105,102,116,91,88,93,102,91,109,113,99,93,108,96,108,97,99,95,105,85,98,87,114,90,86,98,98,101,96,95,93,100,95,106,96,105,99,99,98,94,96,105,89,107,100,90,92,108,106,104,112,123,97,104,102,96,114,104,100,91,106,92,90,104,100,104,96,96,99,105,89,99,99,83,94,107,104,83,95,75,96,90,94,95,100,99,97,106,123,86,108,105,97,101,90,105,101,102,101,109,92,93,98,102,103,97,107,111,104,66,91,96,98,102,107,100,102,105,98,76,101,85,98,95,94,87,100,102,109,86,100,102,108,90,96,103,104,83,94,102,83,109,99,85,102,97,98,94,91,97,99,102,92,84,97,105,104,102,101,91,96,93,107,107,93,104,100,85,105,107,82,98,89,96,95,100,100,99,94,99,118,89,94,97,105,91,95,101,90,105,114,94,100,107,95,104,90,103,88,102,97,109,105,103,91,97,83,86,99,106,100,102,86,88,100,101,109,102,111,103,90,94,114,106,100,100,97,113,107,101,93,97,106,90,113,99,106,107,94,101,92,108,109,96,102,77,96,122,98,112,96,108,103,102,98,96,100,102,106,103,98,87,99,97,117,102,90,93,93,99,102,95,114,103,87,104,96,103,83,103,101,95,93,95,103,93,103,96,113,109,100,105,108,98,103,100,93,99,111,103,107,101,84,97,99,94,98,98,96,103,98,107,98,116,99,99,108,92,115,95,95,90,108,107,100,99,97,97,83,99,113,111,92,81,109,91,96,88,71,95,97,98,93,84,103,105,97,84,96,86,109,106,104,93,90,87,111,81,96,94,91,79,88,98,101,109,99,96,98,94,96,109,107,105,93,97,92,89,95,105,100,110,111,113,113,92,105,96,75,94,115,95,98,106,98,95,102,92,98,94,105,101,96,93,101,101,98,90,101,88,109,77,107,100,113,90,102,105,102,86,63,91,103,101,103,97,94,99,88,84,103,92,91,107,98,94,97,96,89,107,94,96,99,102,102,106,102,110,102,109,94,91,88,98,107,114,109,97,82,98,92,107,113,102,101,94,96,94,95,107,89,102,101,102,93,107,112,104,109,105,94,101,95,75,110,100,106,96,108,92,97,74,100,98,104,103,97,90,84,106,80,87,95,108,89,95,112,93,113,92,84,99,109,102,94,100,108,114,100,98,101,87,95,102,105,105,85,99,102,98,106,112,96,94,95,98,94,105,99,102,92,92,92,91,96,104,80,107,83,109,117,100,101,101,97,87,104,90,103,93,105,105,90,97,104,97,104,104,106,94,112,99,106,94,95,96,106,96,92,97,99,102,95,101,106,92,106,94,108,103,99,106,102,89,113,103,102,83,102,101,100,97,108,96,86,89,91,95,92,105,87,121,106,109,106,95,106,93,111,108,101,101,96,101,99,93,91,106,106,113,105,98,94,102,95,90,98,104,102,84,102,97,88,100,97,87,79,79,104,104,100,102,103,105,78,91,97,103,105,104,109,93,101,109,112,93,99,96,88,101,99,95,100,99,89,100,95,98,103,98,100,94,87,113,91,100,91,98,82,91,84,98,94,100,98,100,93,98,98,90,103,105,87,106,62,87,102,69,99,100,102,93,99,92,95,94,96,89,98,99,90,102,98,106,98,107,100,83,91,92,85,100,100,99,90,102,101,104,106,87,117,96,105,106,98,94,103,103,119,89,85,107,114,111,96,98,95,99,92,92,101,98,103,79,93,100,101,87,105,102,101,102,85,111,95,98,113,78,98,104,99,87,109,92,96,105,97,103,104,100,109,104,107,88,103,100,62,106,98,83,96,100,84,103,116,92,101,99,100,102,100,97,104,111,97,107,107,106,102,109,99,100,95,96,113,100,96,100,98,103,101,88,103,106,95,98,86,95,103,105,91,102,107,96,105,100,88,97,104,102,107,93,107,93,95,98,107,100,95,97,101,99,96,96,90,94,104,105,97,84,98,92,90,97,100,108,96,100,92,96,106,103,105,95,89,103,109,97,92,111,102,100,80,93,98,98,109,107,111,108,85,96,95,104,100,118,90,107,102,105,113,91,108,112,97,98,109,92,105,93,96,99,101,112,96,93,99,99,107,94,102,95,132,98,99,94,98,94,90,96,95,87,96,98,114,101,109,109,105,92,106,130,96,102,86,67,105,105,93,96,98,100,98,102,101,106,109,96,116,117,98,113,100,97,101,101,102,109,104,103,112,102,108,93,95,97,105,98,92,110,91,113,108,94,97,86,101,77,95,90,102,86,112,92,97,102,88,94,110,97,87,109,96,109,107,89,111,99,111,88,102,100,97,93,89,105,87,91,90,100,115,105,106,96,92,90,102,109,108,97,94,91,103,94,116,105,99,96,92,94,109,102,92,95,98,98,95,106,94,102,104,106,123,105,94,106,95,101,99,95,100,91,90,95,91,121,98,83,111,90,91,100,101,98,95,97,101,110,99,100,89,114,99,95,93,79,102,105,98,94,101,97,104,106,92,112,99,98,100,94,99,100,102,107,92,97,101,100,107,115,109,105,102,99,106,99,85,120,81,106,85,112,102,105,102,100,91,99,103,101,102,93,104,93,106,93,80,94,107,98,91,94,108,107,97,97,99,101,92,97,101,108,98,93,105,95,111,108,89,119,98,112,96,108,108,105,96,104,105,104,98,99,107,106,101,95,87,109,107,101,97,99,109,108,105,98,98,85,85,107,100,68,102,96,111,102,104,95,102,108,91,103,112,106,121,91,109,104,96,99,100,108,105,89,89,106,106,104,99,109,93,111,112,97,105,102,101,59,107,98,94,107,100,70,99,92,108,104,97,117,90,99,94,106,97,96,94,103,113,100,99,105,111,101,96,90,117,105,96,104,95,109,93,103,80,88,95,99,91,90,103,111,102,97,107,92,95,95,95,93,100,77,97,106,112,90,109,94,88,103,99,94,95,97,103,103,111,100,106,135,106,89,102,117,99,88,107,90,100,98,109,101,106,90,100,95,101,110,96,90,88,125,105,89,106,98,96,96,84,91,100,99,99,122,102,98,75,100,81,94,104,113,96,99,93,93,99,92,95,101,94,104,98,104,91,90,90,102,105,100,105,106,101,99,104,97,107,91,100,91,101,100,100,100,105,97,93,105,104,93,94,104,83,98,99,102,91,89,101,100,96,108,90,104,97,107,108,98,105,97,93,109,94,79,83,98,101,102,102,94,103,98,110,87,97,89,93,87,80,117,109,102,102,99,96,71,92,98,91,92,83,94,90,106,104,103,77,84,102,107,103,94,93,104,98,93,95,104,94,102,99,90,106,96,88,109,74,105,106,104,99,97,93,92,93,93,101,61,77,106,94,82,108,105,96,104,96,97,110,94,105,76,91,81,102,91,103,104,94,103,105,96,91,97,78,93,83,107,110,101,104,94,93,111,96,97,93,92,105, +389.85297,99,103,94,72,95,94,112,113,96,90,101,95,95,105,94,100,94,82,95,98,110,94,91,100,88,102,88,108,68,102,105,93,90,100,88,98,106,106,100,104,101,98,87,93,105,96,99,94,86,91,106,97,98,96,91,87,98,94,97,94,107,101,109,97,108,105,104,111,86,114,97,101,102,116,87,91,99,100,89,106,96,100,105,96,101,92,105,100,79,86,96,92,102,90,87,88,92,87,115,88,105,101,100,91,97,101,98,104,101,95,92,109,77,93,93,92,95,98,92,90,92,91,94,105,112,90,82,94,96,112,96,101,82,92,93,98,98,94,92,101,98,75,94,95,101,97,101,80,90,107,92,88,109,101,95,108,98,109,107,106,100,94,94,90,99,98,91,94,108,77,111,103,100,106,94,100,109,90,94,84,123,102,97,98,95,97,102,91,104,96,91,88,102,105,99,102,126,105,108,96,98,96,100,107,110,103,107,89,98,103,102,104,113,100,83,95,110,98,95,96,118,89,100,115,86,106,96,103,97,93,91,105,95,104,106,103,99,100,87,99,97,92,106,102,96,105,93,104,103,99,91,95,92,101,110,101,92,98,92,106,90,106,103,93,91,100,111,96,88,98,98,92,110,101,98,93,100,102,79,92,97,95,97,92,101,97,85,102,99,94,96,102,96,104,93,99,93,97,98,85,95,101,96,100,75,107,96,100,98,102,102,107,91,114,101,97,88,104,92,96,96,101,105,96,103,99,105,79,108,74,101,114,94,105,109,88,105,117,104,111,102,95,91,98,85,104,97,97,90,93,98,111,108,90,92,89,101,113,103,98,88,101,87,98,90,108,103,104,103,100,105,100,99,84,93,102,91,96,96,95,102,101,98,95,102,103,96,94,107,91,108,92,90,97,122,125,86,103,109,100,96,87,91,88,97,91,100,107,81,118,95,97,98,101,101,106,107,100,98,88,97,88,99,106,90,95,97,97,87,103,89,98,103,91,100,95,96,100,86,105,109,101,95,92,84,92,95,87,102,103,95,105,96,108,102,96,110,106,97,93,102,100,95,109,100,109,95,103,101,96,88,105,108,108,106,97,108,97,114,104,86,100,97,96,103,90,97,105,100,94,96,114,91,94,90,110,99,101,99,105,95,102,93,102,101,87,110,92,99,96,92,101,98,110,101,103,110,97,91,112,101,100,104,91,98,101,105,99,98,100,103,107,108,93,95,108,94,103,106,103,96,102,91,81,102,100,94,101,109,104,102,98,109,94,94,90,93,106,88,84,95,107,90,96,97,92,94,104,102,87,98,103,97,89,91,101,93,97,99,90,116,97,113,87,91,97,96,103,99,95,100,97,99,95,102,121,90,90,96,91,104,91,99,94,95,97,97,101,102,105,93,98,95,93,96,99,98,88,65,105,103,107,97,98,102,93,87,94,102,108,103,107,94,104,96,100,98,109,95,107,99,83,70,98,95,96,95,125,96,96,101,103,103,101,100,106,88,102,102,88,100,85,96,112,87,95,76,113,95,105,107,99,100,93,93,85,101,105,100,120,101,92,99,97,94,99,101,104,92,91,105,99,98,93,98,106,97,97,96,90,110,88,102,97,114,98,110,96,103,82,108,99,103,93,96,86,84,93,96,92,94,83,98,109,92,97,99,96,105,105,93,106,105,98,93,92,97,99,103,95,96,95,95,94,99,89,98,92,90,103,102,83,95,96,105,99,94,72,96,102,102,98,98,93,92,87,93,115,83,88,106,96,104,101,92,102,85,106,108,102,91,87,101,95,112,102,92,94,92,101,93,106,109,97,102,107,100,83,105,99,96,95,99,86,109,89,117,94,93,96,107,64,89,99,96,88,99,108,93,102,106,94,87,104,103,95,93,86,101,86,93,100,101,100,93,103,113,107,87,89,98,102,100,85,94,101,90,113,98,110,99,95,64,92,95,87,102,96,103,91,92,84,97,86,91,89,83,99,106,105,104,96,97,99,99,93,85,109,92,93,98,108,104,101,86,90,104,105,100,107,106,107,112,99,81,95,96,99,98,107,83,101,109,101,107,88,95,84,96,93,87,103,112,94,128,105,90,95,100,100,100,86,98,99,129,95,96,96,95,106,110,108,83,106,83,102,73,101,104,107,97,108,109,102,107,99,100,104,102,98,109,101,103,108,113,97,93,99,91,87,102,97,82,90,99,90,100,104,96,91,104,99,100,102,97,94,90,98,106,90,106,87,93,95,110,100,106,95,96,89,86,100,99,87,90,97,76,98,93,95,93,87,84,92,95,83,117,101,90,102,106,105,97,102,109,112,105,107,95,84,110,111,101,90,110,113,109,87,94,101,99,91,84,98,88,92,102,99,84,90,91,105,98,91,99,91,108,87,101,101,95,115,105,97,98,87,89,93,102,93,100,95,92,99,93,90,94,108,83,93,74,109,96,91,110,94,90,85,99,98,119,105,87,94,104,96,102,108,100,98,90,113,113,94,102,106,110,95,101,104,96,101,102,120,100,96,100,108,111,104,107,103,104,100,105,101,97,103,112,109,105,101,96,100,121,107,104,98,103,104,104,119,107,98,98,96,98,107,95,111,99,90,104,98,109,86,100,97,112,101,98,103,103,108,100,96,98,94,108,103,109,90,113,105,108,103,97,105,99,95,96,91,101,102,115,106,108,104,101,97,104,92,107,94,96,104,100,107,107,107,88,95,109,106,99,108,110,94,103,89,98,99,99,96,108,105,95,101,91,106,103,107,99,103,100,97,101,103,103,91,105,112,99,101,108,108,93,112,103,108,103,99,106,100,107,83,102,103,100,100,96,97,101,91,96,83,90,108,97,100,108,102,103,109,103,89,96,94,89,98,94,101,91,107,104,95,103,88,95,116,77,78,95,113,99,100,113,101,99,109,97,101,101,102,108,99,102,93,107,104,113,120,85,94,102,82,112,101,98,105,116,109,88,95,95,101,91,106,106,103,110,100,92,110,93,124,96,95,100,95,115,102,98,110,114,102,101,103,99,95,74,95,109,105,107,116,112,101,94,93,97,103,109,105,100,101,109,112,106,104,100,100,101,112,86,108,113,92,97,112,101,106,83,90,112,98,99,102,104,97,102,103,102,108,96,102,101,98,120,107,96,99,91,116,103,92,110,105,101,121,97,102,103,106,103,100,98,95,104,111,89,81,95,95,106,92,98,98,98,97,114,108,99,92,104,101,98,97,93,87,97,110,100,95,111,103,105,94,99,113,101,90,104,114,109,88,97,89,99,107,99,104,94,94,97,110,101,99,102,97,103,89,98,101,101,119,110,91,111,95,99,100,101,99,93,105,102,103,119,106,113,97,105,88,88,94,99,110,100,99,105,106,101,101,88,95,99,116,104,96,100,108,95,100,108,112,91,99,111,102,105,104,105,102,106,100,93,101,110,101,100,100,94,100,107,90,96,103,87,98,84,102,113,106,95,109,108,87,93,97,103,101,104,101,96,109,108,101,111,96,104,94,114,107,103,88,106,91,91,100,103,102,98,94,103,98,101,104,105,96,93,91,97,102,114,102,91,91,94,105,101,101,100,101,112,96,95,106,96,94,106,103,106,105,106,107,106,98,105,100,108,85,98,87,113,97,112,89,106,115,99,119,101,105,107,98,99,106,96,105,107,105,105,106,134,91,80,87,105,99,100,102,95,112,107,95,102,106,102,90,102,81,88,100,107,92,93,115,99,87,95,120,110,105,117,102,112,95,95,91,99,96,98,101,109,119,106,94,89,108,109,91,94,97,96,100,109,110,107,95,89,106,102,114,89,107,92,100,103,92,102,104,99,101,113,111,100,97,91,102,94,107,100,94,99,106,103,95,93,109,103,117,117,101,102,96,99,107,101,98,108,106,100,101,100,91,104,115,104,102,104,88,101,98,97,105,96,98,107,102,106,101,107,106,109,117,98,100,99,111,99,73,100,107,99,100,105,118,106,103,98,97,99,98,104,105,115,103,103,105,105,109,110,109,111,97,91,104,111,93,105,85,102,100,99,98,109,101,97,79,103,100,97,89,105,111,84,79,100,104,92,92,104,107,106,107,98,89,104,103,97,95,80,113,98,103,109,102,87,103,106,94,89,105,90,101,102,91,107,101,101,110,107,104,99,102,91,104,99,110,111,97,96,92,102,98,106,94,89,101,108,108,112,109,91,106,105,114,105,107,99,112,103,104,110,84,97,95,105,101,97,92,109,110,91,96,111,111,91,95,95,99,102,108,83,111,100,92,111,87,95,92,102,96,87,92,95,83,104,105,100,93,113,111,99,113,109,91,104,111,108,104,105,87,105,100,98,99,95,92,107,98,105,102,102,87,113,112,107,106,86,90,108,102,90,94,100,98,101,97,98,102,96,109,93,112,96,101,102,109,97,98,90,93,101,101,84,98,98,86,120,102,106,99,91,102,89,101,103,102,98,111,98,97,96,91,100,105,91,101,70,95,98,102,92,97,99,87,91,105,100,99,98,94,97,107,88,104,104,95,109,95,97,101,101,94,103,92,112,104,100,113,92,116,106,91,96,93,95,116,103,112,112,100,102,98,118,104,88,95,92,97,96,106,111,91,101,111,100,104,95,110,108,91,97,100,109,95,104,105,94,103,114,98,104,87,95,106,113,102,98,103,106,94,96,85,65,94,96,94,89,95,102,102,114,102,97,107,99,88,114,103,104,101,99,98,85,117,102,78,99,111,95,115,95,111,102,100,112,97,96,101,100,102,103,98,95,109,113,88,102,96,96,99,101,105,99,94,103,100,104,103,104,96,104,93,106,105,83,99,100,104,87,87,104,68,104,97,104,111,107,91,84,99,102,107,97,110,106,102,108,60,87,98,104,91,99,100,105,97,94,100,103,104,99,106,100,102,107,102, +389.99304,99,97,97,112,100,90,70,88,101,96,98,99,93,84,98,100,96,97,112,112,93,96,102,107,91,97,87,111,100,92,109,102,104,101,107,87,94,98,94,97,102,94,97,107,102,93,95,91,90,94,97,98,92,93,102,98,96,80,96,91,95,93,100,97,93,96,101,99,72,89,96,94,97,104,99,105,96,94,94,107,90,93,83,108,78,92,87,105,91,103,96,106,97,89,102,86,92,87,101,83,100,99,113,87,96,106,91,86,88,88,102,95,95,89,106,101,102,102,92,102,101,93,103,108,106,99,95,81,94,98,87,91,80,106,118,110,103,92,93,88,56,90,90,95,89,105,94,98,78,100,97,100,105,96,92,106,93,98,92,101,89,90,104,101,110,97,84,94,95,94,101,93,101,94,96,96,82,99,103,102,109,92,84,113,98,102,103,90,117,88,95,96,90,106,100,94,114,103,90,90,108,96,92,106,103,95,87,100,88,105,95,81,93,104,96,91,95,100,103,96,96,112,89,96,98,97,106,95,87,104,100,89,107,116,110,87,100,86,99,95,95,101,96,93,107,93,106,99,114,92,94,102,105,99,90,116,106,102,100,98,100,103,117,92,96,106,95,109,102,105,95,108,101,98,99,82,96,99,98,90,111,95,101,117,95,106,106,101,100,105,99,91,103,101,109,90,93,98,100,116,100,97,106,107,100,98,105,109,105,102,92,102,116,104,94,100,101,82,101,96,84,106,97,98,87,105,103,112,93,107,105,97,88,96,93,98,103,90,89,88,98,97,103,107,96,101,103,100,117,103,114,104,93,97,100,103,83,93,105,109,118,104,104,100,92,98,108,102,100,103,103,89,92,101,103,95,95,98,100,104,106,98,101,86,96,96,97,84,96,93,103,98,110,100,100,94,97,100,95,98,101,107,108,102,103,98,98,91,106,97,99,103,99,93,93,97,108,83,107,100,90,85,90,104,106,93,110,99,100,95,97,104,94,110,106,100,92,115,106,100,109,87,98,105,95,98,105,109,100,114,112,102,108,111,102,99,98,89,102,100,94,103,94,95,100,85,100,104,107,102,98,102,91,105,87,91,95,116,97,101,103,109,104,125,110,103,102,103,109,96,95,97,102,106,101,102,105,96,100,95,102,94,104,96,96,106,91,92,90,96,101,95,95,101,86,104,101,91,83,96,103,83,100,88,98,96,104,87,87,104,110,94,93,98,110,100,114,100,105,106,100,109,84,90,88,101,105,98,94,96,96,105,99,106,90,95,115,93,103,98,102,91,94,94,98,74,113,95,96,113,83,95,87,90,104,108,95,93,103,95,93,92,86,88,91,96,107,108,101,95,107,98,99,93,104,111,102,89,92,98,94,100,98,104,96,101,101,101,99,99,94,96,98,102,100,101,117,106,107,85,106,94,101,108,116,97,100,88,110,111,103,102,97,103,88,114,91,87,104,100,112,95,112,89,101,84,101,108,102,103,105,96,103,98,108,96,103,99,104,97,105,92,106,61,92,99,106,74,110,98,102,101,94,99,91,91,91,107,104,99,91,104,107,83,77,102,97,81,86,97,102,98,101,100,95,93,98,102,86,104,102,89,90,97,99,104,108,106,94,97,95,102,106,96,100,104,101,93,98,90,94,108,110,101,91,97,98,114,107,91,105,109,92,97,91,92,91,96,103,89,106,101,99,100,95,77,101,92,89,105,96,94,92,88,103,92,113,113,111,102,106,93,97,94,95,100,99,104,96,96,112,104,105,94,119,98,97,96,103,96,120,100,100,109,90,106,103,102,105,116,102,100,95,101,100,105,105,103,91,107,97,96,93,98,102,107,102,99,105,99,114,88,92,99,97,104,102,101,94,99,95,100,103,94,94,97,95,91,108,101,102,97,88,99,112,101,103,111,108,91,94,99,106,109,105,98,103,103,96,89,90,86,97,103,111,96,112,102,99,101,105,108,96,104,102,91,93,103,101,103,91,104,105,89,101,97,101,99,105,97,90,98,97,100,110,108,102,112,92,89,100,104,88,97,103,98,98,100,113,106,101,107,107,98,95,96,99,101,94,97,96,94,108,98,93,90,88,71,98,96,97,101,113,97,75,87,98,95,110,93,101,95,96,103,95,106,107,113,93,95,89,111,116,100,109,80,105,99,101,97,105,113,97,112,92,105,96,111,104,87,100,99,100,97,100,86,92,106,91,93,101,111,97,104,101,92,105,97,92,106,99,89,92,89,100,104,98,110,90,111,95,97,99,95,93,92,92,106,111,101,100,92,98,91,94,104,104,100,90,93,98,100,109,113,102,87,97,95,103,93,119,110,101,101,105,71,87,95,64,105,116,102,107,92,96,95,95,97,88,91,94,95,104,113,95,96,96,92,104,92,93,103,82,97,92,86,98,100,98,100,90,101,95,95,74,96,100,98,118,100,96,105,97,93,96,100,99,105,95,105,97,89,92,94,104,100,84,101,98,94,94,94,99,95,98,108,99,98,95,101,93,94,99,109,95,99,90,89,97,108,95,110,102,94,83,95,99,101,87,101,101,99,90,99,84,107,98,78,100,90,100,126,77,100,111,103,98,103,97,96,78,94,95,92,95,105,101,101,107,112,109,108,105,83,100,95,78,96,95,108,99,99,105,96,100,100,99,98,109,100,106,87,103,106,82,124,87,96,91,99,98,95,105,91,95,102,101,91,106,119,99,107,103,99,106,111,105,94,95,103,108,102,102,88,98,106,98,109,105,107,87,109,96,107,109,98,105,119,103,102,98,87,100,104,100,107,102,90,106,95,91,107,90,97,96,92,111,102,91,106,101,94,102,94,106,94,110,113,106,87,111,102,100,87,96,87,109,111,102,102,103,91,96,107,96,94,101,93,90,105,102,109,107,111,95,99,94,87,102,104,101,96,103,93,98,106,90,97,113,105,93,98,94,96,101,103,98,100,98,98,121,109,93,109,93,94,104,106,98,61,92,99,107,98,112,101,103,97,104,113,107,113,90,102,109,101,107,102,88,117,102,92,113,81,109,94,104,99,84,98,93,97,102,93,102,99,98,91,116,98,91,99,95,101,83,96,90,97,97,100,107,100,107,98,101,112,98,106,94,93,92,90,112,102,107,99,92,101,104,80,93,88,114,98,103,108,92,99,100,107,92,103,112,99,104,113,93,94,109,104,87,95,99,98,93,102,103,106,99,108,102,104,88,98,98,89,104,100,101,101,100,108,106,99,97,100,100,99,106,90,113,93,112,102,92,118,124,79,101,94,107,89,108,98,93,113,103,99,103,113,105,88,99,109,101,117,105,92,93,103,102,99,97,93,92,108,91,99,99,97,93,97,104,80,105,97,108,98,93,114,84,94,113,103,100,101,86,96,93,101,95,102,99,91,96,109,115,97,111,96,100,101,97,105,92,102,108,101,98,111,90,95,102,97,96,74,96,93,95,105,98,100,107,100,87,93,97,112,95,93,106,105,105,85,92,103,97,100,108,95,100,110,101,108,101,105,103,102,102,97,100,112,92,104,98,95,106,95,79,105,97,105,91,94,100,116,99,87,93,94,96,94,96,100,91,95,97,96,92,92,106,95,92,86,98,83,103,101,106,102,86,101,89,111,103,93,103,92,138,100,95,99,89,99,106,100,91,75,103,103,103,99,100,105,98,102,100,111,108,105,106,100,97,101,98,107,103,94,99,104,102,90,101,103,95,95,101,94,96,105,101,96,113,101,98,102,89,94,108,94,99,92,90,96,101,94,104,100,98,99,106,110,96,117,102,112,72,109,101,107,90,104,106,87,98,75,107,112,95,108,109,102,100,86,93,105,87,88,96,102,88,100,105,104,86,105,99,93,101,105,88,104,84,102,81,105,107,98,96,97,97,92,96,84,95,92,99,102,101,90,108,112,110,93,115,100,104,111,100,108,92,92,97,96,95,105,92,97,101,98,97,104,96,103,89,94,98,114,109,91,98,104,93,106,105,97,95,100,99,92,101,113,96,95,112,97,100,102,95,107,102,95,109,106,94,103,102,87,98,101,110,109,103,99,109,107,93,115,104,96,93,90,96,89,112,113,86,98,94,99,96,92,77,109,112,102,87,99,98,98,96,105,106,106,92,109,78,104,100,92,89,98,90,109,98,97,95,102,95,102,95,105,99,93,109,95,108,93,94,93,106,107,110,92,99,96,95,108,108,98,94,92,98,109,93,100,94,95,107,99,98,94,104,100,103,95,98,100,95,101,105,110,81,115,111,105,98,101,93,99,106,103,107,101,91,88,97,75,89,111,94,94,111,93,96,100,91,109,101,110,103,95,104,100,102,109,95,98,97,109,115,94,108,96,94,103,105,89,99,116,67,90,100,106,94,90,108,92,98,91,92,99,98,99,104,101,98,108,99,98,110,68,97,97,100,111,89,92,113,94,101,105,79,100,103,84,106,87,98,97,96,93,99,109,97,84,102,92,100,107,98,90,106,95,96,82,97,107,106,105,104,93,111,94,98,128,99,98,99,103,87,93,102,110,100,102,92,104,93,94,91,102,99,94,99,97,96,95,91,111,101,94,101,93,108,109,99,93,88,94,97,97,100,111,101,94,95,94,96,98,97,102,106,99,96,96,97,98,102,99,98,101,92,95,96,86,109,103,64,93,79,77,93,103,89,98,100,90,105,104,100,102,101,102,103,106,97,98,93,87,83,105,101,94,105,87,83,107,92,96,110,91,83,112,103,91,101,114,106,91,92,90,107,89,88,111,100,105,97,107,78,76,102,93,105,98,87,96,89,105,98,94,94,91,62,107,101,95,88,92,92,105,96,87,102,105,93,98,104,108,83,98,100,88,99,110,87,106,101,97,102,99,88,102,94,92,110,107,88,99,102,96,97,88,103,91,99,95,87,80, +390.13312,100,94,88,90,100,104,98,96,106,105,85,117,102,97,98,90,97,93,113,99,102,87,95,102,98,98,101,92,109,113,102,92,102,97,106,88,113,94,88,94,94,81,100,103,83,103,103,97,98,108,96,106,94,93,112,93,94,89,101,91,108,94,94,93,98,108,96,100,97,93,95,94,95,110,95,127,84,91,106,103,106,104,103,101,102,96,114,103,89,97,92,98,104,115,97,92,117,101,102,102,92,93,102,111,104,107,103,96,94,103,82,105,104,108,91,95,64,99,98,99,113,105,110,103,85,110,113,101,104,103,96,91,113,96,106,106,95,100,96,64,84,113,104,95,94,93,98,118,96,77,96,107,103,71,93,103,106,97,106,101,105,100,96,99,87,104,109,104,105,104,97,99,105,91,100,106,82,87,105,112,113,98,107,102,105,93,88,85,97,105,101,107,99,109,98,98,94,96,100,95,101,96,102,110,98,102,93,105,100,110,106,104,87,128,106,93,97,100,128,111,102,99,110,96,107,97,102,107,104,75,96,102,109,98,114,98,96,95,109,100,83,103,105,108,99,88,88,103,112,81,100,109,93,113,109,107,105,107,100,99,96,103,108,69,99,102,101,100,103,98,115,101,106,107,99,97,97,96,100,100,97,90,90,97,103,86,84,107,111,93,99,108,105,104,109,107,91,87,104,101,107,94,78,126,101,102,109,108,112,107,84,91,103,100,91,103,98,97,100,101,94,94,96,101,123,107,95,110,105,110,98,111,102,99,109,98,100,107,99,102,111,102,92,86,95,98,101,100,94,100,98,103,97,98,102,107,102,97,109,99,111,100,96,90,98,100,94,91,100,94,103,95,104,73,103,96,112,95,101,88,90,93,102,101,92,87,89,81,109,91,94,103,113,95,97,109,82,99,104,121,116,122,81,103,97,99,104,93,88,99,87,92,92,96,97,86,113,101,96,93,94,91,96,107,98,84,102,97,95,100,114,110,105,105,102,100,93,112,108,97,99,102,99,104,94,105,91,98,99,106,90,108,113,108,105,99,103,105,111,99,108,103,96,99,101,100,90,97,103,85,95,96,103,94,92,91,87,116,98,99,76,119,104,87,96,98,99,94,98,107,83,106,110,91,109,102,96,113,99,92,103,108,105,96,105,105,85,96,98,107,96,105,111,111,86,91,68,98,94,95,100,96,91,90,79,97,107,105,98,100,94,105,97,78,103,99,103,105,104,103,95,98,97,88,125,101,112,101,102,104,113,105,98,96,94,109,96,103,93,103,82,83,106,106,106,102,96,95,99,89,97,98,97,94,119,105,82,93,102,109,79,83,70,99,101,88,102,105,103,104,110,108,94,102,91,118,105,91,96,104,102,94,101,90,103,106,92,93,95,96,95,108,105,93,97,85,104,100,101,100,88,96,94,98,102,108,99,104,86,107,101,114,97,107,99,103,96,96,108,97,99,108,88,107,97,85,89,105,110,114,95,107,104,106,85,101,86,104,98,97,100,114,98,99,92,95,99,89,111,110,104,91,99,109,110,110,94,105,99,106,109,99,100,80,91,75,115,107,113,99,109,96,96,103,108,92,83,87,102,103,106,115,97,88,96,112,105,100,94,104,101,98,97,101,98,109,105,99,121,91,89,95,108,98,107,83,103,86,107,108,104,99,99,86,106,97,105,95,104,102,106,97,101,108,110,111,115,100,96,94,92,95,96,103,83,93,104,95,98,109,110,91,93,96,91,96,112,111,104,87,99,110,103,100,95,115,94,100,105,113,101,105,118,95,107,105,95,109,95,106,95,112,92,97,98,98,96,100,100,109,100,100,106,82,121,105,110,99,106,111,101,99,107,97,113,103,102,116,123,107,99,90,111,108,90,87,104,108,113,95,96,102,91,96,100,104,103,105,97,103,80,95,90,95,90,108,103,96,92,89,94,96,81,96,96,110,87,114,107,94,104,99,91,99,99,95,96,107,104,98,108,99,114,92,86,103,100,97,94,99,90,98,102,100,105,85,104,102,97,101,103,111,104,103,96,99,95,110,93,98,94,100,102,92,86,98,103,96,95,101,90,101,108,95,105,104,93,80,103,85,90,96,105,100,91,110,96,96,92,104,85,91,112,102,96,100,100,97,102,85,110,99,92,105,82,97,112,92,96,91,102,108,100,101,115,97,103,102,97,103,111,102,87,99,109,107,74,99,96,96,88,99,92,93,78,101,97,83,104,102,101,98,97,92,96,102,118,97,96,97,103,97,103,95,84,121,84,93,94,116,100,79,96,96,102,102,91,111,98,104,94,91,81,114,99,95,101,109,103,88,105,104,83,75,99,108,105,102,90,94,87,96,97,99,106,80,98,114,98,102,97,104,89,66,99,105,103,107,65,95,108,111,86,112,101,109,100,104,81,103,100,107,106,111,102,101,74,102,130,93,88,110,90,101,92,102,101,100,90,120,92,106,97,94,101,116,83,83,108,103,98,106,102,96,92,105,109,70,100,95,98,90,100,90,104,98,84,96,102,99,102,95,103,92,91,94,102,97,81,105,100,94,97,94,96,94,96,110,97,84,101,107,94,87,104,105,96,94,83,97,91,113,97,97,99,92,110,97,106,97,102,99,102,93,101,103,104,93,120,96,92,88,101,88,97,100,92,99,91,92,95,90,103,105,91,93,97,93,109,109,112,102,100,95,101,103,102,96,113,96,110,103,98,98,105,101,87,87,96,98,70,101,105,94,112,98,103,86,94,92,93,106,89,96,99,102,113,100,98,88,105,101,98,101,109,94,95,104,92,98,89,111,104,106,95,102,100,90,105,103,86,95,103,105,100,108,97,91,102,100,88,96,98,82,95,81,98,103,132,99,94,102,105,109,103,87,99,97,68,98,100,102,101,103,102,98,94,104,99,103,108,105,105,102,98,100,93,75,100,99,113,77,90,109,68,77,96,119,104,91,106,99,96,103,94,59,93,103,97,97,99,116,101,92,102,112,100,97,101,98,98,85,91,112,90,93,106,99,92,102,101,97,108,106,107,115,112,101,109,114,95,105,97,100,97,99,103,102,104,110,93,94,91,99,90,87,91,102,104,91,95,98,97,94,95,109,98,99,97,85,97,101,93,119,107,90,110,95,105,96,103,92,107,100,104,91,106,100,91,114,111,100,97,115,101,108,104,105,108,91,102,100,103,96,101,99,109,94,101,93,109,108,105,92,87,103,93,89,89,120,105,71,106,90,87,94,93,92,99,100,108,97,98,102,89,90,92,106,97,90,104,108,105,83,98,98,98,109,97,103,93,101,100,105,104,97,104,99,123,85,117,90,97,96,97,96,100,92,109,98,104,113,97,109,95,86,103,100,101,105,97,99,94,92,105,96,110,109,98,98,91,98,103,95,93,85,68,102,93,103,95,95,101,98,93,111,107,97,80,99,97,98,101,99,109,98,103,87,104,105,99,103,93,96,97,92,99,77,92,96,108,103,95,88,112,112,106,119,106,94,105,96,97,100,99,107,103,109,104,105,91,107,95,109,90,101,113,93,100,100,103,112,106,128,102,115,113,100,111,99,95,115,92,108,99,103,93,109,94,98,84,113,91,98,101,103,98,105,89,89,91,94,94,103,97,90,98,101,94,91,103,102,108,113,103,91,118,96,109,95,100,95,103,108,91,104,101,109,93,103,99,98,97,102,100,96,109,93,107,101,102,77,117,106,98,102,105,105,99,87,93,101,89,102,97,110,107,91,101,105,100,109,117,88,93,105,95,98,67,85,84,105,105,97,69,106,103,106,99,100,100,114,90,104,111,98,95,103,98,102,100,106,110,109,98,99,91,90,92,104,105,107,95,105,106,100,98,100,98,97,89,89,94,100,106,102,99,102,124,112,102,97,83,100,96,101,101,90,104,104,91,87,92,98,94,99,100,89,112,114,95,96,96,87,109,107,99,110,105,110,108,101,103,107,106,111,116,103,88,110,114,97,96,100,109,99,100,100,100,100,108,104,102,113,100,108,90,111,96,98,110,94,91,111,105,94,98,89,95,99,94,108,95,100,97,104,106,83,110,95,94,93,95,99,91,110,92,106,96,104,107,102,124,112,94,105,87,101,103,105,104,104,94,102,96,99,99,79,103,111,92,101,100,102,98,101,95,103,109,112,100,96,96,94,104,90,106,105,98,91,75,90,94,96,98,97,107,107,101,99,105,109,84,95,115,120,108,105,97,102,95,85,98,105,101,90,103,81,99,95,94,97,92,94,89,90,96,102,95,111,101,93,125,98,94,94,100,100,85,101,94,88,105,91,98,95,93,114,93,93,103,104,102,97,94,93,99,94,94,98,107,100,95,95,98,101,97,94,109,110,98,107,103,104,104,97,95,91,104,98,93,111,110,111,88,104,104,102,92,79,105,86,91,108,88,93,96,94,93,100,108,105,91,95,97,103,101,96,85,104,100,117,98,99,98,103,95,90,83,101,100,102,107,84,98,110,101,84,96,98,94,96,91,107,103,107,92,96,88,105,102,83,100,105,100,104,91,105,104,105,79,109,91,96,100,93,90,90,105,108,74,90,94,105,101,101,98,100,101,115,72,91,98,106,102,99,107,96,95,99,93,96,96,112,109,100,105,100,92,107,95,81,101,103,106,97,116,83,99,105,123,97,106,102,94,94,88,108,96,84,98,121,104,98,102,67,91,97,90,117,113,98,103,92,92,98,93,96,84,95,84,99,92,111,95,97,97,106,95,113,101,87,84,90,92,91,84,106,108,84,100,107,97,95,98,96,106,93,96,96,106,100,107,96,109,101,102,97,99,101,99,104,91,100,108,93,93,98,86,94,106,98,79,103,87,96,108,109,114,95,102,104,98,94,71,105,105,97,102,97,113,91,99,98,94,101,97,87,105,100, +390.27316,87,93,97,103,83,103,90,99,93,102,97,100,100,106,97,83,98,91,98,95,95,101,101,95,92,105,93,99,98,102,77,98,111,88,108,87,83,94,98,100,86,93,92,96,105,87,93,100,98,94,89,83,93,95,94,94,97,89,102,92,100,96,89,108,97,99,96,104,97,100,102,90,96,117,104,112,89,91,110,104,106,109,105,82,98,97,101,96,96,85,99,99,100,87,103,102,106,92,108,100,99,104,96,96,93,101,113,102,99,90,90,104,96,100,105,104,94,99,109,101,107,95,99,98,89,112,105,100,98,101,104,97,102,105,110,102,89,97,79,97,125,91,98,96,96,92,90,106,106,98,97,114,104,63,97,97,101,101,101,95,100,106,99,95,97,92,86,94,104,98,63,95,92,103,103,99,98,104,116,98,80,85,93,108,99,97,95,101,123,90,97,90,99,101,105,90,90,91,98,91,98,107,98,98,109,83,91,94,105,101,104,103,100,109,105,107,108,101,99,94,78,106,96,97,99,112,90,101,108,105,91,92,108,105,87,104,97,107,104,87,96,100,106,95,92,107,94,101,98,98,98,101,99,136,101,106,89,101,95,97,95,93,101,102,98,86,105,105,101,100,104,99,92,91,84,95,98,95,106,110,97,111,104,97,101,102,101,103,94,100,96,91,108,100,99,93,104,109,93,107,95,101,98,92,83,110,116,93,96,98,95,99,95,106,101,98,89,101,139,106,86,98,101,93,100,100,97,89,100,104,93,100,105,94,107,86,109,71,91,99,101,96,95,95,94,105,100,91,101,96,94,102,111,105,101,96,115,100,99,101,106,95,83,109,95,98,101,94,99,93,96,93,111,116,113,87,99,101,70,95,95,103,93,101,107,86,95,90,110,99,101,95,101,98,105,93,100,98,100,99,100,113,102,97,69,101,98,80,103,91,98,92,108,108,100,93,102,96,96,97,94,104,98,110,98,80,106,89,94,99,95,99,113,101,90,87,89,92,94,98,97,104,103,105,88,105,107,101,98,99,103,98,98,115,95,121,97,100,99,102,91,96,94,93,109,115,109,93,97,98,95,102,96,105,104,111,112,115,96,92,92,107,89,108,98,99,95,95,100,106,108,104,107,93,92,94,105,118,110,91,81,94,94,105,102,95,92,101,94,106,96,113,101,92,101,94,108,96,96,94,89,109,94,103,109,114,106,101,104,95,102,99,103,98,103,114,87,98,101,105,102,96,98,94,110,92,100,85,110,101,98,108,99,103,94,108,103,100,88,71,98,101,94,98,94,98,101,105,105,109,88,91,99,94,102,98,107,91,95,104,99,97,94,98,99,99,100,99,115,95,100,102,99,93,110,111,93,104,111,95,98,93,91,77,106,104,96,103,100,99,97,97,93,97,94,87,108,94,97,100,94,94,113,91,97,96,98,99,94,96,104,98,92,109,94,95,87,96,107,106,95,104,103,100,70,97,100,94,109,107,108,94,119,98,102,75,105,104,91,100,109,99,102,94,93,104,109,99,105,98,98,100,99,112,96,100,87,105,107,104,97,107,105,109,92,111,104,100,105,99,77,98,65,110,99,95,99,97,106,102,110,88,110,89,96,93,103,98,94,100,108,98,97,102,91,86,104,107,115,93,93,98,98,101,93,92,110,99,97,107,100,111,98,96,111,94,105,86,96,96,90,99,109,91,104,96,100,103,96,100,110,97,93,102,109,97,105,97,108,117,74,96,104,94,100,91,91,98,106,90,98,91,109,110,93,105,93,105,101,90,71,91,87,109,95,105,104,113,103,102,95,101,124,99,99,101,96,96,112,89,92,107,92,106,101,96,94,96,89,96,102,102,93,92,84,114,106,99,110,101,97,95,116,98,94,91,84,87,98,96,94,96,105,95,103,99,93,96,102,100,98,101,106,99,96,98,96,87,101,95,97,86,103,88,101,95,91,98,113,105,97,98,96,103,97,96,100,100,109,103,104,98,99,112,97,92,97,92,100,91,97,94,93,95,99,101,86,109,98,107,106,86,99,103,99,99,101,113,100,99,104,104,117,98,107,97,88,101,87,96,105,117,99,103,93,98,98,103,109,106,88,108,112,108,112,115,106,107,113,103,104,109,97,112,92,106,100,100,101,97,103,92,99,102,68,102,107,100,97,112,97,96,104,94,97,91,106,105,94,104,110,100,99,96,94,101,101,89,92,99,104,100,104,110,108,98,92,92,89,98,104,100,102,105,103,91,105,95,98,116,112,93,108,92,104,110,105,117,88,108,109,94,94,103,96,83,110,102,91,103,102,98,112,96,101,100,95,92,96,96,104,95,112,109,100,92,105,108,96,89,114,90,88,94,110,88,100,100,101,92,109,100,78,89,93,90,90,105,102,98,87,109,105,97,94,105,110,95,101,90,99,104,108,92,106,90,97,102,114,102,81,100,85,104,87,103,100,100,92,100,95,92,94,102,91,110,105,89,99,98,106,105,92,85,105,95,97,95,93,112,88,94,99,94,58,95,90,95,100,94,95,96,99,101,64,108,88,96,103,92,109,84,105,100,92,97,79,89,95,97,91,100,103,102,105,97,102,89,88,98,97,90,92,97,92,93,100,100,93,96,102,94,100,106,113,104,101,93,95,99,103,81,112,79,102,103,95,91,97,95,95,79,97,101,96,100,99,105,104,88,105,107,100,106,97,103,101,100,90,99,107,105,109,95,90,86,86,91,103,100,90,97,109,93,98,102,95,105,108,96,92,108,71,101,109,86,108,106,93,105,105,103,97,115,98,105,91,112,102,85,95,81,97,92,102,89,85,94,103,95,104,97,94,83,98,98,96,104,102,98,97,103,87,96,105,94,100,106,87,105,109,88,98,96,105,98,99,100,105,95,95,86,93,102,89,100,93,91,94,110,101,105,108,91,94,102,94,92,102,101,87,102,93,101,93,95,89,99,99,87,99,101,92,101,88,109,109,109,95,105,78,93,97,85,99,103,105,100,110,109,128,101,100,99,98,96,93,91,105,105,99,97,89,109,106,102,98,93,93,95,97,85,97,87,91,96,105,92,95,95,99,88,100,97,83,98,104,103,96,90,105,101,105,101,89,110,105,91,99,100,86,90,107,98,104,91,109,101,91,93,85,97,100,102,116,94,116,88,121,101,97,93,104,101,87,101,107,110,108,94,103,93,128,94,96,94,100,106,97,102,99,99,93,112,87,91,75,98,101,96,87,103,94,93,100,99,97,108,106,105,108,103,95,121,98,93,84,97,93,94,94,77,95,94,91,102,104,107,111,92,115,97,99,97,92,105,105,109,87,113,113,116,81,102,97,103,103,84,96,92,96,91,91,89,108,99,95,106,92,104,98,89,101,92,106,100,96,87,95,100,99,82,103,110,109,97,89,96,90,87,94,116,85,104,101,94,95,92,102,97,105,96,83,99,87,95,101,118,91,96,109,97,90,102,87,87,104,87,112,99,106,96,104,95,96,101,93,110,111,116,106,104,104,95,104,100,101,94,98,88,109,103,101,95,86,96,95,100,64,88,111,100,110,101,117,76,85,106,83,109,102,94,93,97,91,112,100,89,94,100,90,92,93,96,90,101,100,85,106,94,98,82,99,112,97,107,105,105,94,101,119,112,103,92,105,110,106,98,111,97,93,100,95,92,105,98,87,89,106,97,91,71,95,103,94,98,89,93,115,98,107,106,100,97,101,100,93,94,97,96,111,91,82,100,103,109,90,93,79,90,104,97,93,91,104,109,98,87,98,95,103,110,97,83,107,77,92,94,103,105,101,109,91,99,90,102,98,102,99,95,127,102,102,83,88,82,102,101,91,95,82,106,105,91,93,108,108,100,100,92,101,98,96,95,106,109,92,105,105,96,99,102,90,101,96,98,97,93,86,101,73,95,96,99,102,91,98,83,109,83,109,100,100,102,93,113,89,93,108,98,100,90,91,111,88,109,91,95,78,100,91,106,87,106,96,99,95,95,99,109,101,96,93,103,96,92,101,106,92,94,79,99,97,98,74,112,90,95,94,97,96,97,97,95,97,96,104,106,107,94,110,97,98,98,103,93,108,113,98,104,101,101,102,105,99,109,95,89,105,101,83,96,113,103,100,105,107,91,114,97,102,97,125,97,98,100,91,110,97,94,99,100,88,84,100,96,91,98,90,91,105,108,96,100,99,93,95,102,98,105,105,101,98,97,87,106,98,92,109,100,91,79,106,95,93,104,94,98,108,108,105,99,114,99,97,105,74,108,95,105,91,104,112,93,96,93,95,91,92,93,105,94,101,87,83,98,94,104,95,91,105,95,98,98,105,101,99,101,88,105,98,97,98,101,106,97,97,95,116,91,85,109,106,103,94,106,103,94,102,88,102,96,102,100,94,104,95,103,103,97,104,90,103,97,68,109,133,97,100,103,112,105,94,94,105,100,95,94,98,108,97,87,92,89,107,97,87,98,90,101,97,97,105,92,105,101,91,97,98,120,91,95,97,94,99,113,96,97,101,86,107,85,98,92,91,95,94,98,107,105,91,101,96,94,99,91,101,104,92,97,96,97,112,87,106,97,104,100,97,102,85,95,87,105,112,101,88,94,98,98,62,88,94,100,98,105,107,105,90,100,101,101,99,103,101,97,97,112,100,84,105,91,99,101,95,105,99,81,96,87,83,87,101,90,123,99,100,106,91,99,94,93,101,102,86,91,99,97,108,109,90,119,98,99,105,100,104,90,110,111,94,90,108,84,120,98,94,97,100,108,112,96,99,111,104,94,91,105,103,89,99,109,87,88,98,104,89,100,94,94,94,100,109,91,102,96,99,101,110,119,88,102,105,97,94,103,94,98,99,92,94,69,97,94,79,71,91,105,113,103,98,101,100,92,88,107,77,91,84,92, +390.41324,92,95,93,95,93,101,97,106,91,110,111,102,93,100,114,103,110,96,90,98,97,106,86,101,94,100,92,101,100,96,110,104,95,97,108,85,111,98,99,86,93,89,105,96,96,111,102,91,96,109,102,92,93,98,88,91,90,99,88,96,103,110,103,84,96,96,94,100,92,97,99,92,94,105,83,94,89,104,90,94,93,84,93,95,95,86,107,105,105,105,93,84,94,106,97,86,103,98,98,106,93,103,81,71,105,79,92,108,91,105,96,97,110,98,91,92,99,102,101,125,83,88,105,98,96,96,95,97,109,98,91,93,86,94,92,91,61,103,101,107,98,96,96,87,106,83,97,95,93,87,100,91,96,101,97,95,93,94,94,105,101,105,91,97,92,106,93,95,100,93,100,100,78,104,102,102,84,93,98,98,96,94,98,86,111,93,91,96,98,94,87,93,93,96,106,96,94,112,94,98,108,97,79,113,98,110,82,103,102,104,71,101,86,101,102,93,96,92,85,105,96,90,102,99,96,98,93,101,97,95,88,100,91,96,94,102,106,112,109,95,101,90,89,97,91,102,93,100,104,86,103,101,106,104,101,104,96,97,72,96,104,90,95,91,89,100,86,96,93,86,90,99,99,85,97,99,86,105,91,99,108,97,101,104,101,100,100,99,88,96,94,100,109,105,87,111,81,98,101,104,97,95,95,108,98,92,107,108,105,100,116,113,103,94,100,89,91,90,113,93,108,95,97,93,94,110,100,95,92,108,104,92,97,94,93,108,94,100,99,106,91,98,92,77,106,99,93,95,67,98,99,103,121,106,85,107,104,95,90,103,107,96,102,111,96,88,121,116,94,103,103,94,108,74,85,98,112,108,106,101,114,95,82,102,107,88,89,98,106,84,95,89,100,103,82,87,97,92,97,101,65,112,98,87,92,75,92,100,99,107,94,100,97,103,95,88,97,94,104,91,99,98,95,110,109,93,96,97,101,98,110,109,83,109,89,105,110,68,92,102,95,95,92,97,97,103,102,107,101,101,94,103,98,109,99,105,106,77,108,105,113,88,94,92,94,101,95,98,99,102,104,103,93,105,99,93,77,106,112,90,110,105,95,97,95,102,94,88,94,99,91,92,97,88,85,102,92,91,100,100,100,112,98,92,100,97,80,96,95,108,110,111,107,100,97,117,98,104,88,100,99,95,106,90,106,98,77,100,92,89,105,88,108,95,95,96,89,96,96,101,89,92,98,91,94,97,97,91,101,101,93,113,107,107,86,106,101,98,101,94,94,90,84,94,98,99,112,105,86,87,98,99,110,105,104,91,109,92,97,100,104,82,96,98,109,91,113,110,104,88,107,90,106,94,101,92,101,103,104,94,105,97,117,96,99,96,98,122,92,108,92,97,91,101,108,108,95,108,92,107,99,100,98,92,108,110,82,106,105,98,98,94,99,89,87,101,92,91,100,100,98,101,96,106,94,89,81,79,94,111,99,113,84,107,100,106,95,104,96,105,84,111,88,100,79,94,79,87,105,91,102,108,103,103,104,100,104,89,102,93,95,122,99,87,94,101,102,88,86,90,92,98,97,108,100,102,105,88,107,91,105,99,103,94,100,111,94,108,92,104,92,108,97,103,105,93,105,102,101,85,98,83,97,101,103,80,75,96,132,78,96,96,92,98,84,99,99,100,97,94,102,95,115,100,113,105,100,96,88,87,86,96,101,105,72,96,96,93,103,83,94,91,88,117,80,110,104,105,100,105,111,94,94,99,104,86,97,89,95,89,100,105,101,107,95,92,94,96,102,78,90,101,100,109,101,121,106,92,117,96,91,97,100,94,92,98,101,101,97,113,115,93,101,99,99,88,97,102,92,96,88,100,94,101,88,107,105,102,97,109,95,82,102,102,98,97,71,91,99,98,90,109,105,110,92,94,88,88,101,106,98,92,100,94,91,101,98,109,101,99,101,99,107,103,100,93,92,104,105,103,98,98,97,98,100,96,105,90,113,105,95,92,97,104,93,88,98,109,91,108,102,87,90,101,92,83,88,89,100,99,101,97,91,100,98,96,99,101,88,94,98,106,99,97,114,93,94,93,84,101,115,104,89,101,96,88,88,106,99,102,93,117,84,104,84,109,83,96,108,92,97,104,98,95,99,99,103,90,87,91,93,94,99,98,98,81,94,99,86,102,108,93,90,98,93,99,85,94,105,102,98,94,80,105,91,95,104,94,95,95,94,95,104,104,95,102,106,91,88,112,98,94,94,97,104,102,92,87,96,107,92,104,97,98,82,98,97,91,102,90,89,103,96,101,104,109,95,94,98,88,100,103,106,98,108,99,96,100,92,100,89,109,89,86,110,86,97,99,87,89,95,96,83,102,91,82,102,101,95,82,90,95,103,85,100,91,94,100,108,100,105,103,98,100,87,88,108,97,106,96,94,95,91,108,99,86,100,97,98,99,108,98,100,107,95,101,98,90,108,105,92,101,102,98,102,92,95,111,113,103,114,94,99,107,62,98,109,89,100,99,108,100,96,93,92,99,100,95,93,108,106,95,101,104,108,117,91,102,105,103,97,106,111,101,99,102,106,95,102,100,101,103,102,101,105,100,104,96,110,93,111,103,108,101,95,96,99,106,92,107,107,90,117,96,100,97,119,99,98,93,98,87,98,102,105,93,94,80,106,107,101,122,94,85,98,97,108,91,89,99,96,104,115,102,105,101,93,81,104,91,116,103,109,102,93,93,103,99,96,95,103,130,104,98,103,98,104,87,102,117,98,117,96,105,113,108,100,97,102,87,115,103,101,110,99,104,96,98,102,110,100,93,99,103,105,101,88,88,104,102,105,83,101,90,89,100,101,91,105,120,93,91,114,104,97,92,87,95,104,90,103,108,103,96,97,96,92,116,109,106,102,105,115,97,99,103,111,109,105,95,105,92,97,88,113,109,112,80,109,102,107,96,90,103,106,104,99,102,95,103,102,108,87,100,99,107,97,105,92,104,118,102,99,99,105,99,112,103,101,90,96,101,96,92,101,92,99,95,100,115,94,92,97,99,109,103,100,98,107,102,95,99,96,102,108,93,98,86,108,104,107,107,100,104,96,113,105,99,107,96,91,107,105,111,103,98,110,102,97,88,100,93,98,98,106,114,101,104,100,118,101,94,105,103,99,109,109,102,99,95,97,103,74,101,93,97,99,102,102,97,116,100,92,104,96,102,84,97,104,106,96,97,92,102,105,104,92,91,105,97,107,90,97,107,101,103,95,113,89,97,95,99,94,84,89,100,93,101,96,99,96,101,112,103,99,104,111,103,119,99,102,90,98,95,106,109,100,112,103,111,108,105,104,98,105,100,106,101,114,108,83,101,109,105,104,107,110,88,101,99,104,96,102,103,89,116,83,109,100,104,99,95,100,101,99,71,115,97,102,95,98,81,84,100,125,97,91,101,97,103,97,92,95,104,101,99,98,97,105,96,97,88,92,104,97,103,101,108,104,105,108,100,91,83,98,100,103,98,94,91,104,88,94,100,99,102,103,96,77,94,96,110,105,88,111,107,93,106,103,108,113,108,96,107,81,106,98,88,98,105,91,104,93,105,93,108,84,113,90,120,98,102,91,92,103,92,95,83,98,111,107,99,102,94,101,113,109,102,100,101,94,99,97,106,100,92,106,98,78,103,91,101,96,114,117,93,107,105,106,89,109,108,94,109,91,100,94,112,109,90,109,98,101,101,105,108,88,95,90,106,104,97,92,69,98,101,107,95,103,100,104,95,93,92,102,88,106,99,94,95,112,103,95,110,104,96,97,103,100,111,109,83,99,100,104,96,87,91,100,112,89,109,96,86,101,93,96,99,110,90,97,108,106,101,107,94,97,95,92,96,89,97,98,91,98,100,106,96,100,100,102,106,100,98,102,121,107,89,104,108,94,101,98,84,105,99,108,107,93,94,75,95,97,95,102,95,87,98,89,100,111,104,93,97,100,117,103,102,77,101,116,99,98,88,117,99,96,97,109,97,100,100,102,88,97,90,110,91,116,106,105,98,101,91,86,100,92,109,105,88,107,106,107,88,101,107,116,109,101,106,100,111,110,103,106,91,105,94,98,114,106,108,104,106,108,106,103,98,105,109,103,89,101,106,102,110,85,111,102,106,106,111,109,96,100,96,103,110,107,91,103,104,94,94,110,104,112,108,106,95,111,109,102,102,92,103,99,88,118,96,88,110,103,101,95,95,102,105,87,94,89,93,84,95,101,100,101,99,94,101,113,100,94,96,83,95,93,93,92,103,106,101,100,68,94,105,89,118,99,98,109,94,105,91,114,101,119,96,100,99,98,72,115,102,97,98,105,91,95,87,99,110,106,101,108,108,89,99,86,99,99,96,104,122,95,94,100,70,107,97,91,91,78,96,87,98,100,102,109,96,106,89,113,96,94,96,86,100,103,91,106,100,109,99,102,90,96,94,103,90,100,107,95,95,107,105,91,95,109,101,100,105,95,98,110,92,97,112,112,112,89,84,95,108,96,97,106,110,107,103,96,92,97,95,95,103,92,95,108,90,100,100,88,109,101,101,100,103,96,106,79,100,105,112,91,98,94,94,103,117,104,80,95,104,87,100,125,98,105,99,102,105,95,100,105,91,100,98,92,99,92,94,95,114,96,98,104,102,101,109,98,92,105,98,100,97,122,99,80,105,108,92,98,95,63,98,99,102,100,98,89,101,102,68,113,95,106,98,96,109,106,99,105,96,86,102,103,99,106,103,99,95,103,77,111,104,103,95,107,102,89,99,99,96,99,85,102,109,91,114,94,106,96,94,94,95,94,106,94,111,92,104,106,96,92,112,102,94,113,79,108,81,90,102,102,89,108,97,110,99,97,105,84,95,109,102,100,113,89,85, +390.55331,94,97,113,121,90,82,105,93,104,93,106,92,89,91,116,110,104,129,107,96,94,109,96,87,103,104,94,101,99,114,97,101,96,105,97,97,99,101,101,88,104,96,95,91,108,94,98,108,99,114,97,100,98,99,99,95,99,94,106,84,98,97,111,100,98,96,94,97,100,94,96,98,108,89,95,99,109,91,102,101,98,110,97,108,101,94,82,94,99,91,97,109,108,96,91,98,101,94,92,92,101,93,93,102,103,106,91,101,100,101,98,105,87,97,99,90,96,94,94,95,113,96,103,99,105,109,109,94,123,110,99,104,89,96,96,101,96,89,108,92,95,107,92,95,101,79,90,97,95,97,99,124,100,86,105,93,96,86,95,100,120,90,104,106,110,100,96,83,98,104,113,92,91,100,101,105,97,101,100,105,90,102,96,86,105,102,102,88,99,95,112,94,88,101,91,106,94,90,83,105,92,100,102,107,91,99,98,101,99,91,104,109,106,97,103,80,94,100,100,92,106,96,106,91,83,92,97,108,90,101,87,88,106,80,95,91,108,95,93,107,92,91,97,108,85,110,93,91,117,106,105,94,99,103,107,100,105,100,79,93,91,101,101,88,87,106,105,100,100,100,102,111,90,99,104,99,86,98,106,95,103,85,96,102,96,97,105,106,99,104,97,94,108,108,100,111,118,102,92,98,97,106,88,114,90,99,107,102,102,99,95,98,100,104,101,95,100,94,95,96,106,97,90,108,100,99,102,93,100,113,95,97,101,92,96,91,99,99,96,100,92,104,85,86,91,100,83,107,104,104,106,95,100,94,97,107,98,109,96,99,107,107,97,80,103,87,93,98,93,92,111,103,100,110,97,90,98,92,94,104,108,100,97,90,98,110,120,95,111,97,95,92,89,103,108,70,99,87,107,97,97,98,80,94,95,93,104,110,99,91,86,89,94,113,92,94,106,94,105,101,95,108,100,98,95,95,102,100,102,99,86,102,104,96,95,113,125,112,90,102,100,95,90,94,93,93,103,88,98,114,101,93,94,106,95,98,100,90,103,97,102,90,102,99,97,108,84,96,94,88,83,113,83,95,88,113,97,98,96,95,88,113,103,107,120,87,98,85,108,86,97,103,99,104,90,97,95,112,102,93,112,116,106,93,101,90,91,100,99,100,86,99,77,97,93,90,98,97,89,98,96,102,108,97,100,118,103,99,97,101,89,95,101,101,108,92,100,88,95,89,83,100,99,105,106,85,98,103,99,102,91,102,89,95,87,101,97,99,102,94,102,105,101,94,98,113,118,105,109,98,101,95,98,97,88,95,98,106,107,91,110,97,97,100,92,92,101,90,104,92,106,101,99,104,114,109,91,99,104,108,105,106,108,93,103,100,99,100,95,102,76,112,98,92,100,101,106,95,95,96,106,97,113,96,105,113,95,101,97,100,96,109,91,109,96,106,101,98,102,98,103,120,94,98,90,92,94,96,104,106,106,102,105,94,96,100,84,93,86,97,86,101,87,97,92,94,92,86,94,72,106,98,105,105,101,97,97,95,114,104,97,106,99,102,97,99,96,97,90,107,98,105,100,97,105,110,94,97,103,95,103,87,90,109,97,101,91,91,108,114,107,99,93,103,97,105,99,108,87,110,91,103,95,88,90,89,113,93,103,106,107,100,99,98,100,98,110,93,109,101,103,92,91,94,73,98,105,103,100,110,89,105,100,103,103,88,92,97,99,113,106,99,74,102,90,102,109,100,98,99,103,101,113,96,79,100,96,89,105,110,90,110,106,92,94,109,112,96,107,128,105,90,100,93,107,105,101,99,107,96,108,103,84,103,97,104,108,105,91,98,94,99,101,104,102,105,113,99,91,95,96,94,98,110,92,111,96,102,108,69,76,89,110,98,102,86,99,108,102,106,91,94,98,95,87,83,98,106,91,103,106,85,105,99,90,100,96,109,96,105,97,104,103,99,98,79,91,95,95,101,99,97,81,99,90,105,121,101,96,103,95,85,94,96,94,101,96,112,103,101,88,101,101,102,116,80,101,104,96,101,92,100,93,103,99,100,96,99,104,92,94,92,121,98,100,86,98,86,96,103,109,103,104,110,99,102,103,95,94,104,100,101,93,100,101,102,91,81,110,95,101,100,102,101,101,106,105,91,93,84,93,93,98,87,97,97,104,110,88,98,99,95,114,95,90,104,92,103,95,90,106,101,103,93,99,94,105,100,95,83,101,100,91,95,89,93,101,101,92,95,113,87,101,96,95,99,65,109,82,111,102,86,93,91,95,93,101,103,92,101,89,95,93,102,102,83,99,83,90,87,99,107,99,86,102,96,104,89,105,100,98,109,95,83,109,94,86,104,99,111,89,98,96,105,98,96,100,97,96,100,114,115,105,101,97,92,90,95,105,92,98,93,96,103,90,100,78,99,106,91,83,99,99,105,101,93,92,100,91,96,102,91,99,99,96,100,103,86,114,98,93,94,108,94,98,102,84,91,96,109,101,97,98,96,105,98,95,103,92,100,101,99,103,98,97,101,97,109,107,105,98,104,118,94,101,102,92,97,91,107,99,106,98,97,98,94,101,99,94,95,110,96,93,103,109,96,98,82,102,100,99,97,103,91,109,100,105,95,99,100,97,89,99,109,98,89,108,96,104,103,100,94,116,100,107,103,100,97,106,95,106,98,85,96,104,101,103,100,83,109,89,99,105,83,87,104,96,104,109,90,98,102,108,84,106,97,107,113,103,100,104,102,93,103,105,104,109,105,104,103,99,112,104,105,107,105,94,98,113,95,106,98,110,100,90,101,105,103,96,106,98,102,88,91,99,93,114,109,78,90,102,75,108,98,98,105,116,106,101,93,104,87,95,100,95,117,96,106,93,104,104,114,87,112,105,93,105,110,94,113,110,105,101,97,117,101,108,97,112,95,95,102,104,94,102,107,107,101,95,105,92,96,89,103,96,94,92,104,98,105,102,100,97,100,97,108,102,95,105,98,102,113,92,109,106,95,101,91,87,100,103,83,104,100,102,104,90,106,89,98,104,97,120,102,98,102,100,119,95,96,103,96,107,103,105,100,98,99,95,110,105,98,107,96,124,94,109,105,104,113,115,121,107,103,88,94,102,106,91,88,108,101,83,102,107,84,109,105,95,102,106,91,94,107,123,101,102,104,101,103,108,105,84,110,110,108,107,104,105,95,104,102,99,104,92,97,109,112,107,108,108,98,109,89,98,115,97,109,112,114,98,104,103,105,106,93,88,121,105,105,107,103,95,105,97,75,102,89,99,94,109,86,104,93,84,108,99,100,80,88,104,104,98,105,101,97,101,102,105,88,99,106,108,95,86,103,100,116,113,103,87,91,109,94,76,99,125,94,102,94,87,89,112,95,85,102,106,106,95,113,94,107,101,102,107,108,99,102,96,93,111,105,94,105,96,98,104,93,103,105,97,99,120,87,102,100,91,100,100,98,114,105,109,100,100,105,95,115,108,116,106,100,98,112,98,105,98,107,102,102,105,110,93,102,96,104,103,95,99,97,100,106,98,105,103,114,93,96,88,101,121,102,102,93,106,93,97,103,96,99,97,95,87,105,113,85,92,94,98,93,98,91,109,96,101,99,84,85,95,102,96,102,102,110,99,113,89,98,94,102,94,107,108,94,87,93,98,113,63,94,113,108,105,98,108,96,104,98,97,95,93,103,100,100,109,89,94,101,104,93,91,103,101,106,83,104,97,103,105,93,98,100,105,100,102,97,93,82,89,113,105,92,106,95,77,103,106,94,99,99,99,104,102,111,112,108,103,103,97,92,105,94,106,95,91,110,101,89,109,113,106,112,97,91,97,116,109,111,94,114,102,103,98,112,107,105,91,102,87,95,99,97,88,102,105,91,98,93,83,106,119,100,100,106,104,96,106,110,106,95,96,103,101,102,91,105,99,101,101,98,88,103,106,101,102,92,90,105,110,94,102,84,98,109,102,96,96,113,104,103,95,96,90,99,104,102,98,103,114,110,105,82,115,107,86,97,108,107,104,100,102,104,97,94,111,117,105,105,104,95,102,90,104,98,83,88,89,105,99,100,103,105,88,101,116,96,99,109,89,106,98,100,102,79,94,100,105,100,95,97,98,113,95,109,101,103,96,96,105,115,107,110,99,91,99,99,95,104,83,102,114,109,109,95,113,99,97,107,122,104,107,100,97,91,99,97,98,98,94,104,109,98,100,91,111,105,105,112,71,90,102,103,104,89,93,118,100,96,98,94,101,98,107,100,100,98,97,98,94,92,93,104,91,102,104,97,102,98,90,100,106,91,114,99,104,100,115,97,95,107,105,110,105,96,106,97,95,94,92,91,107,102,106,96,97,93,94,98,100,107,90,116,113,113,100,90,104,105,115,122,92,101,95,95,97,97,97,105,94,106,107,105,109,104,82,97,101,104,100,108,102,113,106,94,93,98,97,91,98,77,99,102,100,99,98,96,105,111,102,108,88,83,100,111,105,124,103,102,93,115,89,98,88,102,69,102,105,107,101,99,99,104,94,103,104,96,88,93,97,95,93,105,107,91,71,102,97,88,91,104,101,96,98,105,67,98,88,95,82,107,102,94,99,94,95,82,95,102,109,107,92,96,100,91,75,94,110,91,84,99,106,98,102,107,103,101,88,102,102,103,105,97,98,97,101,97,98,90,107,114,107,102,98,80,104,98,103,107,80,100,80,99,87,92,93,100,120,105,84,93,99,98,97,102,94,104,95,115,93,91,93,89,99,93,107,104,96,106,103,102,92,67,102,101,112,107,97,102,94,118,112,113,94,91,106,94,100,98,105,114,97,107,106,88,90,109,91,109,103,103,108,109,93,88,106,100,106,114,103,99,130,100,101,103,101,94,94,94,104,104, +390.69339,83,100,92,100,84,104,91,93,76,90,96,110,109,94,90,107,94,102,93,110,105,106,94,101,93,87,97,95,94,99,81,94,84,72,91,95,97,87,108,98,93,88,91,102,93,104,86,96,82,84,79,95,85,103,110,97,79,96,95,99,104,93,83,105,101,91,90,90,99,105,92,91,106,95,93,109,87,98,102,99,100,86,92,99,97,105,91,100,96,95,88,102,90,98,107,94,92,94,98,87,100,88,93,91,112,92,98,94,92,84,99,104,113,97,84,91,96,99,100,89,100,90,104,99,90,99,108,92,97,97,92,99,91,90,97,104,92,97,89,87,93,98,83,104,105,83,101,92,88,100,90,96,113,97,97,101,97,102,103,96,92,101,100,93,87,94,93,84,101,88,98,101,99,103,101,95,97,84,94,107,91,78,94,131,100,100,96,94,85,85,76,88,109,90,99,87,94,98,106,97,91,105,105,107,87,95,98,87,109,106,99,89,90,99,97,97,109,93,104,92,121,102,102,100,102,82,105,101,97,101,102,99,107,101,91,105,106,90,84,83,93,101,101,101,100,82,92,94,118,94,105,97,101,98,108,97,90,88,98,94,94,105,107,100,91,99,99,91,107,78,95,96,99,87,92,101,78,105,99,85,86,91,105,99,109,82,90,96,114,89,103,95,93,97,109,100,95,98,100,103,84,95,96,103,90,98,92,101,96,110,94,96,95,99,90,92,96,90,91,93,99,89,115,99,90,85,97,97,94,106,91,102,103,98,104,98,91,98,95,86,103,102,85,95,91,92,104,117,100,98,99,81,112,106,95,109,111,96,98,112,97,98,99,99,102,101,112,103,93,99,100,98,103,95,85,94,99,77,90,89,110,108,95,94,87,85,80,101,94,94,104,97,102,101,86,108,99,102,96,92,96,103,106,92,98,97,98,101,104,88,100,99,97,100,99,97,93,102,102,109,104,94,96,102,87,79,94,93,108,107,106,84,91,96,84,93,93,86,90,86,99,92,105,116,106,101,97,97,85,100,101,105,94,81,105,92,102,95,87,84,123,97,95,106,91,109,75,94,99,98,110,104,95,99,91,96,92,110,103,107,91,87,100,96,88,85,94,98,97,104,112,98,103,106,95,97,94,96,118,86,101,97,82,67,107,101,94,97,84,95,102,101,92,98,88,105,90,118,94,90,103,91,87,95,103,78,99,90,118,100,92,102,86,100,100,95,97,95,102,99,96,87,101,85,94,103,116,88,104,105,111,88,101,96,95,99,87,93,92,90,86,103,78,86,90,92,106,112,103,95,91,96,94,103,87,96,89,87,116,102,103,98,98,100,97,108,83,94,78,78,96,103,93,86,101,94,92,96,99,86,107,93,89,90,88,95,99,102,94,91,82,96,104,108,97,94,91,102,66,108,89,95,99,99,106,118,101,95,96,87,106,95,88,96,83,96,82,92,93,93,91,108,97,86,86,93,93,88,98,97,88,85,98,91,105,98,100,98,97,91,101,96,129,93,95,106,89,107,93,101,102,83,88,91,102,98,99,99,106,100,112,98,100,99,101,84,102,94,98,97,95,102,93,113,98,98,100,98,80,101,111,92,84,103,82,101,95,102,97,105,102,94,92,105,89,96,92,98,99,97,95,97,107,109,97,101,104,82,95,102,102,97,102,90,89,91,95,102,103,97,105,95,100,105,91,93,98,87,91,95,102,94,100,107,86,75,99,87,84,84,98,92,86,101,97,102,110,108,117,91,76,103,93,92,94,102,85,103,111,96,83,96,100,91,84,110,94,85,97,90,119,93,85,107,103,105,99,86,105,103,88,95,87,101,102,78,96,120,80,92,95,104,105,100,96,94,92,105,110,101,95,97,98,84,93,95,96,98,100,87,96,90,94,86,90,93,93,88,99,102,99,96,92,93,91,93,93,96,96,95,86,106,98,95,101,93,110,100,93,84,92,108,85,96,91,95,94,98,95,97,105,99,96,74,97,98,88,95,109,104,101,90,96,99,92,106,94,84,108,106,97,109,95,109,89,77,106,88,89,105,77,100,97,95,101,89,89,83,95,98,98,101,111,92,94,97,86,97,101,100,92,94,92,100,90,95,95,105,107,94,92,104,105,101,110,100,84,102,101,85,96,99,118,97,104,93,112,95,100,103,69,99,107,93,97,95,89,104,90,106,106,104,86,111,105,92,108,101,105,98,94,103,98,101,85,100,107,99,84,96,103,93,94,78,92,95,89,96,79,114,101,93,103,93,94,94,90,108,91,88,91,95,76,97,95,97,96,96,98,101,88,97,93,96,87,95,100,91,97,106,98,104,97,82,95,95,87,110,110,95,101,88,99,83,107,98,93,96,96,96,109,107,95,101,89,95,90,97,99,94,93,69,96,100,90,95,90,90,98,89,92,101,94,102,87,101,86,95,90,97,97,105,93,82,80,103,91,93,83,100,111,93,102,100,103,97,101,94,107,85,105,96,95,90,99,104,104,97,110,104,103,101,89,101,103,102,100,102,91,104,106,125,116,100,94,97,88,92,99,94,86,103,96,87,98,93,99,106,101,99,100,110,109,93,100,115,88,103,90,90,92,96,94,107,94,86,99,95,110,96,106,109,103,76,100,105,111,91,113,100,98,101,109,94,113,112,94,104,102,95,102,87,99,98,97,98,102,88,98,98,93,96,90,106,80,107,103,92,100,107,109,91,105,91,108,101,99,106,98,100,103,100,107,102,91,107,96,103,90,99,104,112,72,109,108,74,98,92,99,97,95,109,105,107,105,98,95,96,97,100,86,97,102,113,100,83,102,90,94,102,101,95,104,101,100,95,90,97,102,94,100,110,111,101,99,102,96,104,97,111,92,99,95,95,99,98,96,102,91,90,101,103,105,106,107,94,89,100,105,102,91,96,117,104,101,104,105,108,97,99,97,109,112,93,93,105,103,99,100,109,104,94,94,100,106,110,108,91,107,100,99,99,107,99,96,113,87,112,106,98,91,103,115,89,97,96,95,90,93,94,98,104,76,119,107,109,104,95,75,90,98,98,115,99,100,105,105,90,120,117,104,103,106,105,102,91,98,100,102,83,96,108,102,91,91,97,97,103,100,89,104,97,90,110,92,87,99,103,108,112,98,99,102,103,105,111,95,84,98,93,89,93,97,105,95,97,104,95,97,100,108,93,83,92,106,99,100,92,102,111,104,114,97,80,99,94,101,97,102,92,94,111,97,95,101,91,94,99,100,85,101,106,80,105,101,94,96,98,106,99,104,112,101,108,99,105,103,107,94,100,94,100,96,86,89,114,90,97,109,88,109,104,97,100,113,96,98,103,104,93,64,99,105,103,97,103,110,108,100,91,95,92,95,81,98,109,107,93,92,92,103,106,132,89,106,100,94,102,102,106,93,100,94,107,107,90,102,89,94,91,79,87,90,94,102,96,100,103,88,105,99,98,80,102,92,104,94,95,99,101,111,93,106,95,111,93,100,103,102,96,100,97,100,100,98,91,97,106,102,104,64,87,105,105,103,106,96,106,98,110,97,95,105,98,97,105,99,107,100,102,98,99,109,93,102,110,90,101,106,93,91,80,84,105,102,111,100,97,101,103,97,102,107,112,97,101,84,102,117,104,89,100,90,104,93,94,93,95,117,95,112,100,100,91,105,105,98,94,104,97,99,115,110,99,104,108,101,97,98,98,100,106,87,96,100,113,93,84,109,101,96,105,101,104,99,99,112,104,105,98,102,87,97,105,94,84,109,87,98,94,103,97,85,97,91,102,99,95,98,104,91,100,72,111,109,94,107,84,87,89,132,101,111,101,99,95,96,88,83,100,104,108,102,104,124,96,91,92,99,100,95,103,98,96,100,101,115,99,105,101,95,85,101,104,90,98,103,82,94,105,86,91,106,87,106,113,113,96,103,96,95,104,109,105,89,97,109,113,102,109,94,96,95,111,102,103,92,109,104,94,113,95,79,89,91,106,98,109,98,104,102,107,98,89,112,91,99,103,97,100,103,98,114,104,122,96,103,112,107,121,92,97,104,95,86,91,110,101,96,110,98,94,109,108,108,82,108,105,100,98,106,97,81,101,103,114,89,102,137,103,95,102,106,102,91,90,108,102,108,101,101,117,89,79,98,103,118,100,87,99,95,94,93,98,94,87,101,110,94,84,113,106,101,105,98,95,96,95,96,99,100,104,87,84,102,109,108,94,99,101,105,98,112,88,93,96,103,100,107,105,72,95,104,99,96,98,88,103,97,82,112,93,90,87,111,92,104,88,106,120,103,96,106,106,106,92,91,93,97,110,92,95,93,96,103,100,102,109,88,97,109,99,105,103,95,95,108,108,112,67,101,106,132,105,96,114,110,77,98,103,111,97,91,101,92,90,107,94,101,99,68,106,99,101,92,105,98,101,105,90,99,99,102,97,109,98,93,95,117,103,94,110,116,96,103,94,102,93,92,98,90,97,100,88,97,94,100,116,96,97,87,123,99,97,106,94,95,96,108,95,92,92,100,99,97,88,107,92,96,107,98,106,103,99,80,88,100,100,103,120,106,95,106,93,96,96,102,96,97,99,83,106,100,102,103,95,95,95,100,90,87,104,87,105,99,91,102,98,101,92,105,97,81,102,101,107,109,94,97,100,94,98,99,96,102,109,99,91,80,101,91,108,88,109,106,103,104,100,89,97,106,106,94,93,116,101,96,102,91,87,88,96,91,100,105,93,102,90,106,104,80,85,89,117,98,91,92,104,99,120,103,110,101,94,101,105,99,98,109,113,99,103,107,102,100,103,102,100,92,100,93,87,95,102,99,108,102,102,71,101,116,102,83,91,102,106,87,105,105,87,109,102,94,103,75,95,102,104,94,108,104,93,105,88,105,98,97,109,100,81, +390.83347,117,93,99,102,97,116,105,99,100,110,104,99,86,87,92,83,96,110,91,87,105,71,102,90,90,108,95,81,98,106,87,83,111,85,102,104,83,97,96,105,98,93,92,103,95,92,94,100,95,94,107,99,103,107,108,68,101,95,101,85,89,87,90,101,105,104,98,93,89,79,95,100,68,99,87,110,107,105,104,119,89,96,100,103,102,96,98,98,90,97,94,99,103,96,91,102,105,100,93,99,98,82,90,88,95,99,105,103,90,100,99,97,101,94,114,102,118,86,98,94,95,86,113,107,97,113,108,90,109,105,89,98,97,109,120,102,90,97,104,95,96,102,92,99,96,108,101,89,87,109,94,89,99,100,98,97,108,97,103,68,99,102,107,107,100,88,98,98,101,98,106,104,96,102,104,104,97,85,101,105,107,99,102,91,100,86,103,90,75,94,83,89,83,111,96,98,83,112,98,96,91,99,98,101,93,87,103,90,97,93,84,106,117,79,115,101,90,115,91,99,80,108,108,86,92,101,114,112,108,92,93,96,100,100,88,104,95,94,103,98,97,89,106,104,98,92,87,95,103,107,98,100,102,101,96,108,104,91,90,83,90,100,102,98,101,94,98,111,105,83,103,96,96,89,94,105,100,89,90,81,94,69,106,95,102,100,93,96,101,127,136,91,98,100,110,114,114,99,84,101,97,83,98,104,99,104,91,109,98,96,91,104,92,110,98,108,99,116,91,91,111,79,99,73,75,101,85,96,114,100,121,88,104,95,101,109,105,100,90,110,103,98,96,101,94,99,114,102,101,105,98,97,102,104,102,111,100,106,102,101,118,106,101,95,100,103,118,93,95,95,98,106,104,130,106,101,101,112,98,100,99,71,89,101,80,92,98,91,111,98,110,77,91,99,96,94,102,100,100,104,91,99,99,86,129,76,102,101,91,97,87,90,98,113,99,85,91,88,104,95,98,91,95,97,98,93,100,71,97,109,91,105,100,104,97,98,101,99,104,107,104,105,93,114,103,103,99,84,79,94,84,101,103,105,92,106,97,108,101,89,91,87,110,91,89,102,107,94,107,100,97,107,100,117,88,102,95,117,99,93,96,103,104,102,103,94,99,96,98,76,106,95,105,104,105,95,91,121,100,101,106,105,107,101,105,98,98,99,98,90,97,117,115,99,105,104,96,93,97,96,70,100,99,91,99,107,90,107,68,93,83,104,91,94,100,92,95,91,103,93,97,112,104,100,102,99,103,95,106,101,95,102,92,90,115,99,92,95,94,85,89,103,90,87,90,101,91,96,104,99,110,96,95,98,97,87,105,96,109,102,100,104,104,97,111,96,109,99,97,101,112,100,101,104,90,102,97,101,106,97,91,106,109,99,94,102,109,91,97,86,96,99,114,95,104,101,105,103,94,105,105,102,98,87,91,104,113,87,103,97,97,98,88,110,87,104,99,94,110,107,101,95,96,88,82,101,96,87,96,102,100,100,94,105,112,94,99,98,110,101,108,87,104,95,105,103,87,93,106,92,109,95,100,98,87,89,118,88,98,104,100,97,101,88,101,86,109,93,103,112,92,112,92,107,105,90,101,92,95,92,105,95,97,110,90,95,115,108,87,98,99,95,104,107,99,91,111,99,107,87,99,98,97,99,98,98,98,78,92,90,108,91,81,89,94,81,95,86,100,107,93,102,102,83,101,90,93,97,102,100,117,86,95,96,99,94,95,85,96,98,102,106,93,102,93,101,99,102,100,93,103,119,97,100,98,97,109,106,105,105,102,95,104,107,96,99,103,100,107,96,90,106,97,90,96,108,96,98,92,104,97,101,86,92,106,95,101,101,94,108,103,91,98,100,98,97,105,105,98,110,88,99,96,100,103,101,104,107,104,92,86,88,100,101,79,112,100,97,102,92,92,103,104,92,97,104,93,108,85,99,103,103,92,106,98,100,98,100,80,106,99,72,96,103,106,96,100,107,109,98,103,107,93,102,85,103,93,92,98,95,100,102,103,90,116,92,107,105,108,108,91,100,96,90,113,91,91,99,84,99,92,97,92,86,97,101,87,97,90,105,92,92,106,113,101,97,100,113,109,101,101,118,104,99,95,102,102,96,94,109,113,105,97,114,77,91,91,96,98,107,104,95,97,105,102,78,98,106,121,99,106,92,103,109,102,94,106,104,95,108,103,106,100,103,93,102,100,91,102,87,105,103,91,67,97,93,94,104,105,97,95,98,106,99,91,102,101,90,111,103,98,101,99,86,103,78,97,98,97,98,88,101,109,77,107,104,91,90,87,102,79,117,91,79,102,96,99,91,96,99,107,103,104,88,102,85,106,103,105,101,99,112,102,89,107,97,89,103,95,90,88,109,109,100,94,86,103,91,95,95,109,92,111,103,71,97,103,104,103,96,99,106,86,94,94,128,96,96,105,101,94,104,92,95,85,86,95,75,100,99,108,103,90,107,104,93,89,99,117,103,101,95,84,104,95,105,95,92,104,97,98,91,104,98,98,103,98,109,106,93,112,93,111,109,104,91,98,98,101,96,104,104,77,97,105,85,98,99,95,94,98,115,98,92,112,108,98,96,79,93,103,99,93,104,66,94,98,94,88,100,101,103,101,101,99,100,109,89,97,93,91,100,104,90,86,64,95,83,97,92,97,100,111,97,102,101,98,88,104,103,96,110,87,84,93,96,119,103,104,100,99,102,106,107,94,109,91,92,93,87,107,97,103,102,124,100,102,95,91,95,103,101,102,103,99,112,107,104,103,104,99,90,96,95,103,101,108,99,100,94,90,95,101,98,103,98,101,106,96,89,102,92,88,89,100,92,100,97,108,103,96,106,111,94,99,107,89,100,82,105,87,91,88,98,109,88,113,88,106,107,96,98,107,91,107,98,106,94,105,99,99,107,95,97,101,102,111,94,100,108,98,89,102,94,95,114,92,95,101,112,100,102,103,96,95,107,118,96,99,85,95,103,103,99,99,106,101,97,94,102,105,93,95,109,98,101,93,96,87,96,94,97,98,97,101,103,109,99,99,106,97,97,104,78,101,103,111,95,104,90,103,102,89,113,98,86,90,95,98,87,110,108,100,94,88,117,117,98,98,100,92,105,88,117,111,98,104,106,109,79,83,91,108,96,95,98,99,100,105,97,86,105,79,101,106,96,89,102,97,100,99,93,97,100,106,96,100,112,99,109,104,104,95,107,106,92,86,113,85,96,96,107,90,88,95,100,103,101,110,89,91,101,111,117,100,85,103,112,100,96,95,104,102,89,98,97,107,96,94,101,85,97,106,100,79,91,105,90,95,114,106,98,81,109,97,76,95,97,98,92,95,101,100,104,120,100,101,112,116,115,92,99,96,97,92,102,91,102,99,99,108,108,99,101,92,91,89,99,96,104,103,100,106,106,102,91,87,95,100,102,93,111,96,106,95,97,97,101,100,102,106,113,94,88,91,101,104,98,101,100,117,94,85,93,94,96,101,104,102,96,102,91,94,92,105,85,93,82,88,97,101,90,98,98,95,91,92,96,103,102,92,115,109,109,110,102,90,101,103,99,115,94,104,92,101,94,98,98,101,93,95,108,94,100,99,103,100,86,105,111,94,106,104,94,100,103,92,102,98,103,107,97,99,94,96,99,96,97,101,105,88,91,102,92,98,98,95,90,96,101,101,100,113,105,79,101,100,93,121,83,108,109,106,105,115,102,96,107,98,97,91,90,95,97,105,98,95,84,102,101,84,101,102,106,107,83,104,104,105,111,105,95,102,106,102,104,98,95,124,89,112,89,128,105,109,101,86,99,104,87,117,101,103,111,105,98,97,109,94,107,108,106,108,100,98,103,111,102,98,95,93,92,109,101,102,106,104,100,89,104,97,94,104,99,91,96,100,82,105,88,97,103,95,109,106,103,109,105,86,86,101,99,98,95,92,96,120,87,112,105,111,103,81,104,96,111,100,94,82,107,111,104,95,108,99,92,101,102,69,97,94,115,87,102,106,103,133,111,93,104,108,106,103,113,100,116,115,88,108,96,94,102,84,98,96,101,101,103,108,82,106,102,115,95,91,100,96,89,91,103,92,98,87,96,98,99,105,118,106,105,96,92,96,93,91,100,99,99,101,104,91,95,93,103,109,87,106,93,105,91,100,96,81,79,103,107,98,109,97,91,100,115,95,120,92,87,90,98,103,97,98,106,100,113,101,98,110,98,94,100,105,93,99,98,89,88,106,109,93,105,99,90,104,94,77,92,87,92,93,98,95,102,102,104,92,101,99,97,99,99,90,93,105,100,102,95,88,99,103,95,97,105,106,97,108,96,98,92,95,106,102,91,95,105,98,98,106,109,117,119,98,108,99,107,102,96,102,94,102,102,97,107,97,103,89,102,109,111,100,91,92,92,97,108,95,86,96,106,104,89,113,103,100,98,99,103,97,95,99,108,89,117,113,95,85,85,96,75,91,95,90,95,109,95,106,99,107,107,98,118,95,100,96,111,117,91,106,101,95,99,86,87,88,70,98,102,99,107,97,88,93,115,94,98,104,98,102,88,97,99,106,110,120,95,96,99,94,98,85,98,92,95,97,107,109,93,104,91,105,90,104,99,100,86,105,101,98,99,105,90,99,109,108,91,91,87,100,97,98,99,96,97,104,109,96,94,91,94,111,97,95,128,107,97,95,100,95,79,86,95,109,100,104,87,91,96,91,101,108,86,92,105,97,92,90,93,89,90,103,94,104,98,109,103,93,96,96,76,86,90,76,98,93,110,99,98,97,89,82,105,102,103,106,94,91,101,102,105,96,92,83,90,83,102,99,98,95,99,93,105,77,104,86,89,88,90,87,93,102,95,93,89,80,103,95,90,84,75,90,104,92,82,92,97,103,98,106,104,99,93, +390.97354,108,127,102,97,92,87,115,107,106,95,110,92,109,108,86,111,91,110,98,107,100,104,90,99,103,99,108,108,111,109,108,103,104,101,103,93,80,89,99,104,105,91,108,114,100,104,101,98,88,102,109,116,104,97,100,71,100,101,109,98,93,101,108,95,103,107,100,105,110,96,100,90,90,98,95,100,110,100,102,92,109,95,84,105,96,100,92,88,97,107,103,112,99,92,94,87,101,103,99,104,99,97,96,85,98,100,86,99,98,97,98,105,97,91,108,106,90,114,100,91,99,88,99,105,101,102,112,84,117,97,102,114,94,104,101,98,88,97,116,109,96,106,103,101,100,107,106,110,102,98,95,101,89,95,94,92,92,94,96,98,86,98,112,109,96,113,105,93,99,106,107,109,95,105,97,107,90,98,102,85,96,97,82,96,95,93,112,100,110,103,91,93,87,104,99,97,93,101,93,105,106,96,94,92,103,100,93,104,103,103,105,96,94,96,91,96,70,110,95,106,110,105,103,108,103,106,103,95,110,110,87,95,101,96,107,93,111,110,104,101,95,104,111,95,85,95,123,112,91,121,105,92,102,103,101,101,102,97,95,89,104,109,96,99,97,68,105,92,94,98,100,103,102,101,99,105,109,94,96,95,89,92,110,113,105,101,97,96,106,98,99,108,101,102,106,94,102,97,98,103,97,101,95,98,101,104,107,107,98,95,83,100,108,83,98,93,104,97,115,95,101,92,100,99,106,94,92,91,104,98,110,89,101,102,105,96,96,88,91,95,104,91,109,100,97,109,109,110,98,110,99,99,101,95,107,111,98,102,101,111,112,104,110,92,91,98,110,95,112,98,104,92,115,104,100,94,117,85,92,95,105,111,93,101,101,100,98,99,99,90,102,91,104,102,85,92,98,107,104,105,96,97,101,104,106,99,88,99,95,93,82,98,114,90,91,103,102,89,112,98,93,102,91,106,99,91,103,94,102,87,97,95,104,95,100,106,108,107,102,105,105,92,95,98,102,104,93,99,93,109,102,96,112,98,98,93,120,95,102,110,98,99,103,114,112,121,109,103,96,111,95,105,110,103,100,97,104,101,106,102,97,99,99,99,100,96,115,96,101,109,101,118,96,95,97,100,103,95,98,105,107,107,99,93,98,105,93,110,110,106,108,80,96,110,103,102,97,89,97,106,102,102,107,111,96,110,103,110,98,91,107,105,101,98,97,98,104,81,89,98,100,103,93,95,104,104,94,98,91,109,109,111,106,109,103,92,109,103,104,85,91,92,94,97,86,93,114,108,96,104,98,106,110,107,95,105,91,96,93,109,103,87,100,90,84,97,105,102,94,99,100,86,63,96,101,109,91,98,98,105,98,102,109,96,106,98,90,101,99,113,121,99,99,100,102,103,104,102,100,103,90,106,124,100,101,90,98,110,105,102,93,97,86,107,101,107,98,90,84,117,108,94,106,94,98,82,102,88,101,103,101,104,93,116,96,92,107,97,99,116,94,99,104,109,96,102,111,92,92,102,94,110,100,70,101,99,110,96,96,98,107,116,101,90,99,103,92,95,97,120,99,106,95,104,103,104,107,95,106,92,97,90,108,102,98,116,87,104,98,95,99,105,104,95,105,88,96,92,102,80,101,105,81,99,87,96,106,95,105,103,104,102,99,99,99,104,83,87,105,99,104,103,128,109,104,102,98,98,105,93,100,94,101,104,98,101,93,90,103,100,105,108,89,109,101,99,87,95,102,100,109,99,79,106,97,110,100,92,103,88,96,93,115,69,106,98,95,105,110,92,105,101,101,107,108,113,111,94,85,91,97,109,100,101,117,103,121,96,107,95,96,98,90,110,106,94,103,97,102,104,95,96,102,102,99,104,95,102,110,100,99,89,88,102,101,103,98,106,90,95,103,87,103,90,99,105,100,99,89,89,101,91,94,113,93,92,109,106,106,85,110,94,100,96,94,101,95,91,106,110,105,102,97,96,91,99,109,104,104,96,86,105,91,100,96,102,95,101,103,95,90,111,91,89,97,94,113,103,110,105,100,90,111,94,106,100,98,105,112,109,96,105,99,104,120,76,97,90,101,99,90,95,104,98,102,73,100,109,103,108,101,104,85,100,107,103,94,95,107,110,112,105,105,96,93,95,101,106,93,99,91,107,104,95,103,95,110,97,96,92,81,106,101,92,102,92,111,95,83,95,103,104,101,94,93,94,98,99,110,100,99,104,101,103,105,94,94,96,103,95,98,104,109,101,100,83,95,110,101,102,90,87,97,97,94,105,92,101,94,95,95,105,97,99,96,101,98,95,101,95,104,105,108,96,101,102,110,110,95,92,100,121,96,95,92,89,90,108,92,91,94,93,90,96,103,95,86,79,106,106,92,98,104,94,92,104,102,96,117,66,107,102,97,102,91,100,90,105,92,88,104,99,112,108,100,102,96,96,108,93,101,107,113,118,109,107,104,92,91,107,108,103,100,96,90,111,82,109,91,95,106,93,93,92,100,101,104,98,101,93,94,102,105,90,95,98,102,95,89,109,94,95,109,96,89,95,108,92,108,100,107,89,98,100,90,97,98,98,99,100,104,96,101,105,101,114,112,100,101,90,123,83,112,102,86,100,94,89,96,110,93,95,97,94,84,105,104,102,98,107,116,116,92,115,87,99,107,98,103,107,108,103,96,96,102,101,108,89,110,93,98,91,98,110,92,105,94,83,98,106,107,104,100,97,105,97,95,111,102,110,102,98,90,111,77,96,104,96,95,104,113,95,97,92,99,103,94,94,102,96,99,98,96,100,111,90,104,108,104,96,95,95,96,92,104,101,109,99,94,107,102,95,106,113,101,94,108,105,94,94,98,104,96,105,102,105,75,99,85,98,105,87,99,103,101,100,90,98,101,104,121,105,69,95,93,90,96,99,87,100,108,97,105,95,98,107,98,90,104,110,105,97,99,98,95,88,107,93,103,91,103,84,105,91,93,102,89,101,97,95,104,101,99,108,100,98,89,105,98,112,106,88,97,101,105,103,98,99,94,99,99,110,101,95,100,91,94,102,95,102,95,102,92,95,109,104,104,99,98,86,91,109,101,93,105,98,94,96,95,84,97,79,97,109,95,87,98,88,100,111,97,83,76,95,97,103,99,92,88,101,87,101,102,99,106,89,99,103,102,93,109,105,97,88,100,78,103,94,103,97,95,102,96,95,101,101,100,94,105,101,103,99,90,102,97,92,90,87,117,94,95,99,94,98,96,97,96,102,108,96,88,104,100,95,106,94,91,89,81,91,105,105,100,98,90,107,104,83,93,99,103,101,76,98,99,99,107,93,98,105,92,121,95,99,95,92,93,94,98,94,120,102,98,98,102,94,98,96,92,98,98,91,103,102,98,106,93,105,91,99,92,104,88,113,94,103,90,100,97,105,96,88,101,99,105,89,112,93,104,113,98,104,93,100,97,89,105,98,87,109,105,90,105,87,94,103,98,100,112,96,94,99,102,91,100,85,98,87,95,98,112,101,103,99,95,110,98,107,95,104,93,110,98,101,98,105,108,99,105,103,113,99,107,107,98,108,94,96,98,98,94,101,91,128,94,86,99,106,89,101,98,97,90,92,92,101,81,102,94,95,117,106,100,107,101,88,102,95,71,104,95,92,113,98,94,96,107,129,98,100,93,105,92,93,96,102,102,103,97,87,88,92,123,93,95,98,107,97,94,89,96,94,99,91,95,96,107,85,92,99,103,98,97,92,92,111,113,107,98,101,102,92,97,99,99,96,99,99,103,103,89,101,108,104,87,99,100,101,72,106,85,104,98,104,96,93,102,94,110,86,95,118,93,89,87,99,89,98,94,87,103,100,89,99,99,84,103,108,99,96,108,91,97,92,105,104,101,95,91,90,106,104,96,101,91,99,93,100,103,91,88,97,125,96,93,90,98,96,90,94,92,95,90,115,99,98,102,91,95,94,98,103,101,112,101,91,108,89,95,91,94,112,99,105,105,101,80,101,113,90,100,88,105,92,94,97,86,102,97,103,112,114,97,106,116,95,105,83,106,89,89,95,115,75,85,75,93,120,95,92,99,116,93,112,100,99,103,101,93,105,105,99,110,95,106,98,99,104,97,94,88,92,108,109,95,104,98,89,101,104,102,84,100,98,95,90,113,102,93,87,115,110,104,96,100,96,110,103,105,106,100,101,96,90,97,82,93,96,95,100,107,98,113,105,77,88,98,104,95,91,86,96,109,97,55,97,90,105,95,94,92,94,115,92,104,104,98,83,106,100,97,93,100,113,90,105,105,100,101,111,93,103,115,98,102,91,95,90,87,113,96,102,113,100,94,97,105,98,95,113,93,101,101,95,96,104,99,87,105,107,90,108,94,111,120,107,101,97,94,107,62,99,98,103,92,122,96,96,87,104,99,103,99,95,94,96,91,101,92,87,101,94,105,115,94,111,93,117,104,104,94,104,91,107,100,97,92,98,74,114,105,96,93,108,103,98,99,106,107,94,102,99,97,105,109,105,98,110,97,99,93,98,104,98,105,116,100,104,106,92,98,91,96,106,109,107,98,102,100,95,99,100,96,87,90,93,101,102,108,95,134,104,110,110,100,112,112,112,108,100,110,100,105,97,110,123,104,98,120,104,91,102,76,108,103,95,98,100,98,90,90,110,100,98,101,101,103,101,95,101,98,90,102,105,90,110,81,98,99,91,93,114,99,109,100,90,105,106,100,113,104,100,91,96,95,92,95,98,108,79,96,113,102,104,96,108,104,98,107,94,121,97,95,99,100,99,100,82,96,103,80,97,71,97,104,101,89,99,93,96,113,113,98,124,86,103,93,95,106,94,115,110,98,88,87,105,94,94,100,110,104,108,96,97,92,105,95,95,91,85, +391.11362,98,127,96,95,93,98,132,104,95,106,87,103,83,100,107,83,98,106,96,97,89,96,102,99,91,98,91,92,89,99,95,104,97,95,89,110,101,95,98,84,99,92,69,96,95,97,87,87,95,106,100,96,92,92,103,82,92,101,92,80,87,98,106,80,109,102,98,103,88,96,99,101,93,100,97,98,92,97,103,96,92,110,81,97,94,87,102,86,99,104,99,104,100,87,92,97,96,102,108,107,105,95,90,89,96,83,84,100,110,102,100,91,91,91,94,130,98,94,106,102,92,98,88,100,111,84,106,94,100,92,104,102,100,107,90,101,63,96,95,97,94,97,102,96,97,98,92,84,96,96,87,91,105,94,94,93,91,105,124,109,95,102,99,96,95,89,95,87,108,94,105,102,110,93,86,94,92,97,97,89,92,105,98,107,102,98,91,94,100,83,96,105,93,104,117,89,85,71,110,94,91,100,102,96,103,96,92,94,96,96,98,89,109,95,92,101,90,100,109,99,115,103,91,110,100,87,103,102,105,97,96,102,85,97,98,98,97,98,105,107,95,91,99,98,99,82,96,108,96,104,99,99,91,96,94,107,91,108,97,105,94,90,90,101,87,102,95,97,105,104,83,106,87,91,95,104,98,92,106,91,103,96,106,87,94,94,96,101,88,100,90,100,109,89,98,98,94,109,101,91,87,97,105,101,97,111,101,92,106,98,100,103,97,107,90,99,99,98,91,97,104,108,88,96,92,93,92,106,114,95,88,93,106,96,80,77,93,83,95,99,87,87,110,89,95,105,97,94,101,100,97,107,97,98,97,93,97,90,99,107,102,99,96,103,82,88,98,99,99,108,78,90,98,90,106,103,113,78,86,106,105,96,96,107,94,85,94,96,97,82,110,99,92,103,102,98,86,66,97,98,103,108,89,90,103,98,94,93,93,93,88,94,102,100,104,98,95,113,107,83,105,87,92,104,97,120,86,103,100,103,96,91,97,98,104,102,104,97,91,101,102,97,88,106,92,100,101,110,92,107,91,101,99,100,133,101,101,86,80,93,95,108,103,107,124,103,93,103,95,102,101,84,95,92,97,97,95,105,83,92,86,96,102,101,95,102,97,97,93,82,109,103,104,110,85,83,97,84,101,100,105,101,92,103,92,101,105,92,102,94,92,109,100,99,96,97,105,103,96,87,89,103,80,104,107,95,97,96,93,96,84,102,89,94,98,101,92,104,93,105,100,95,98,110,103,91,103,99,93,112,101,111,89,94,93,116,98,100,98,101,100,76,94,97,98,92,115,101,99,95,94,105,95,101,99,96,95,87,99,85,102,97,113,92,100,98,115,96,105,89,97,105,105,97,99,105,104,107,106,92,92,102,112,96,94,106,92,92,80,95,94,93,95,100,99,75,96,123,94,92,125,107,98,100,113,77,100,103,101,101,107,93,97,93,93,106,100,102,106,92,101,97,99,87,90,92,101,107,98,98,90,103,101,100,105,110,104,103,109,100,99,93,105,100,79,87,91,68,98,101,100,87,91,82,91,87,99,93,105,89,94,100,88,91,84,101,93,92,101,98,86,105,94,100,103,98,103,102,99,99,88,95,92,106,94,100,109,103,96,101,92,93,95,97,92,99,95,96,100,85,84,95,111,89,98,94,102,91,102,101,91,104,103,84,107,92,104,103,106,104,92,125,90,97,104,102,105,100,95,94,100,94,108,101,108,91,83,93,90,102,107,98,92,105,88,91,89,101,95,92,103,101,93,95,103,68,97,98,112,101,102,104,86,97,91,111,108,90,100,105,105,107,91,107,101,111,102,98,98,106,95,95,94,94,110,111,104,100,94,102,109,92,102,91,93,96,124,95,98,90,77,103,95,109,100,104,110,100,101,109,99,110,95,108,104,94,93,97,94,98,90,101,90,87,92,98,92,106,95,92,84,97,91,95,99,91,101,107,89,103,104,90,99,88,98,94,90,92,105,102,97,99,88,106,81,96,91,103,87,95,89,103,89,98,87,98,96,104,98,102,108,98,113,99,91,99,87,85,103,99,99,72,109,86,99,84,103,87,98,100,101,102,101,97,93,93,86,88,95,104,96,95,79,91,100,99,102,86,101,96,96,108,96,98,107,93,83,86,89,96,105,100,88,97,97,109,101,110,96,104,97,99,91,100,115,101,94,94,99,95,101,106,102,108,100,86,94,88,91,101,92,96,104,95,120,93,102,98,99,105,97,102,115,88,104,102,97,94,77,97,89,96,95,95,93,74,88,106,92,102,105,88,95,87,103,106,92,103,99,79,96,92,97,89,94,106,91,101,90,101,104,116,101,86,93,97,102,101,111,81,96,90,98,91,96,91,104,103,92,101,93,92,97,105,95,99,91,107,88,87,93,97,108,96,88,108,84,93,112,90,109,98,95,114,95,90,107,94,89,101,94,106,99,95,115,102,100,100,87,101,103,101,98,101,99,99,107,101,117,82,103,108,94,109,89,90,88,93,103,107,102,110,102,102,97,112,94,105,95,107,92,119,102,113,102,95,102,95,104,109,90,102,105,91,88,98,102,93,110,109,104,110,93,94,94,95,102,105,103,103,105,96,95,87,95,110,105,106,97,101,108,104,112,108,103,105,94,104,95,100,110,83,96,94,94,103,89,80,96,79,115,97,96,99,95,97,90,94,113,109,97,99,99,100,115,94,109,105,106,109,92,95,99,101,106,93,107,86,91,106,108,81,96,102,109,94,95,127,99,84,96,108,94,100,96,95,90,91,96,101,88,106,90,97,107,89,103,107,99,98,104,115,115,105,103,90,97,98,101,99,99,98,104,95,86,97,99,100,100,115,101,86,101,106,109,93,91,83,97,103,103,95,89,105,105,96,78,101,99,100,102,106,92,96,98,93,103,108,85,69,104,66,108,123,96,98,101,112,105,110,121,99,99,106,92,112,97,99,104,102,95,102,92,109,95,104,104,110,96,90,92,104,84,97,100,91,108,96,109,101,97,106,108,105,95,111,104,102,96,105,110,95,102,118,99,100,105,107,107,105,84,112,102,89,97,100,96,104,90,100,107,94,110,86,98,89,100,92,120,91,113,102,110,102,112,105,102,90,98,103,90,97,101,98,82,99,117,96,94,80,106,95,102,98,84,101,104,117,97,103,105,100,91,112,91,101,111,105,107,98,88,108,92,102,98,102,106,95,104,93,102,99,89,109,95,83,97,101,98,113,106,105,90,101,88,102,97,97,108,100,96,95,100,113,91,103,101,123,93,83,104,91,90,94,91,103,106,105,97,108,91,92,106,91,98,100,108,108,95,87,102,87,101,92,108,115,81,97,106,98,92,101,86,101,104,91,104,102,106,91,102,96,114,103,100,101,87,101,108,91,110,94,115,104,116,98,102,84,105,105,108,94,103,100,91,99,94,85,105,93,110,98,98,100,104,100,100,92,105,94,102,105,112,100,92,96,102,101,89,87,102,106,94,92,93,97,101,99,95,95,99,111,98,102,111,111,95,107,101,103,120,92,97,106,95,102,105,106,100,86,94,102,96,101,107,103,92,108,100,103,101,108,106,94,88,70,101,105,104,102,104,98,112,99,88,92,102,96,115,93,105,111,106,105,99,88,100,99,101,96,73,112,96,105,95,100,109,89,97,111,101,107,101,112,109,91,88,102,109,96,88,118,101,100,83,96,95,106,107,98,103,94,86,100,106,99,106,109,102,84,100,94,95,107,104,102,103,101,94,104,100,96,105,90,115,95,91,117,100,102,100,97,94,103,99,98,99,100,97,103,100,107,100,123,100,90,74,84,87,92,94,100,96,98,107,98,101,105,98,104,86,99,98,114,102,108,102,98,109,96,103,94,105,107,95,105,88,90,99,99,103,95,118,96,102,94,86,76,92,100,103,97,85,104,110,105,88,96,97,100,113,97,94,97,90,109,104,102,91,93,112,100,90,110,102,108,84,96,95,108,106,106,95,80,123,113,100,106,101,100,93,98,87,95,77,105,93,98,103,99,110,106,108,98,109,99,101,85,107,94,98,117,89,93,98,100,89,100,99,93,79,105,105,99,99,117,121,99,104,96,102,86,101,101,106,111,90,104,109,94,87,93,93,107,107,105,92,103,97,102,106,108,91,96,104,94,113,107,97,107,107,98,97,101,107,108,105,96,107,91,113,106,99,107,94,95,93,105,96,102,98,96,83,97,88,101,100,90,91,105,105,103,97,109,96,100,87,112,104,104,95,98,114,93,93,102,90,93,84,91,104,98,113,106,98,108,93,100,85,93,66,92,116,106,79,101,81,104,103,103,112,101,94,100,95,102,94,90,95,98,114,104,103,96,102,95,110,104,101,106,102,106,104,117,102,109,109,102,99,98,99,101,99,108,92,91,113,105,90,95,98,112,93,113,100,116,94,107,113,107,102,100,102,95,100,101,96,88,95,109,99,90,109,103,94,95,97,97,103,95,90,95,100,96,102,89,92,100,101,101,80,83,97,105,109,99,99,100,95,92,93,87,94,95,117,113,91,102,104,94,96,113,93,105,95,101,98,97,99,100,98,106,105,103,98,99,105,98,95,91,101,99,99,104,101,96,110,107,88,100,98,104,101,97,93,115,109,115,96,94,95,89,94,91,95,94,101,103,114,97,94,92,102,100,94,97,84,106,90,95,92,96,93,99,107,105,99,86,113,111,89,101,80,87,88,101,95,100,94,92,87,93,95,97,90,72,118,97,101,102,99,107,108,92,107,90,105,108,89,111,104,98,96,99,104,110,88,95,99,104,88,96,104,87,115,115,102,93,105,98,101,101,68,91,131,91,87,97,100,101,109,91,100,96,101,105,83,104,95,107,95,91,104,99,95,90,105,90,105,117,105,89,96,96,101,94,95,114,88,88, +391.25369,87,119,97,104,82,88,106,89,98,88,92,89,91,98,96,101,81,113,116,99,63,92,93,104,91,109,100,100,99,118,95,106,103,106,107,98,91,97,98,92,102,93,111,100,104,109,92,99,105,98,85,66,109,111,95,91,98,93,101,97,97,91,102,91,98,110,97,91,107,97,90,93,95,101,83,93,95,104,83,86,92,99,95,91,95,87,101,103,98,99,103,95,103,98,89,103,100,88,110,94,96,103,93,97,92,85,104,74,98,89,102,92,92,90,90,93,101,90,98,105,97,95,104,105,96,99,114,102,99,99,97,97,93,105,97,98,105,103,87,86,98,102,95,87,116,77,104,96,101,79,97,95,103,88,94,89,83,95,114,91,98,88,95,86,91,98,111,98,95,99,109,97,81,102,104,106,92,92,117,90,97,96,107,100,84,88,91,95,91,92,81,95,93,97,90,98,93,94,102,91,105,98,92,96,112,105,95,109,103,112,98,103,109,98,101,73,105,99,95,98,99,97,97,102,102,78,97,104,99,91,106,100,94,98,93,78,95,97,87,84,100,97,90,120,93,94,99,103,95,106,100,99,82,98,88,95,101,104,97,104,90,113,95,101,95,99,94,102,95,87,93,108,104,97,98,106,108,103,101,91,104,97,96,106,105,91,101,86,99,97,97,93,110,94,104,103,102,113,102,101,101,99,87,129,96,105,102,108,103,95,95,106,99,96,90,99,101,105,101,94,111,90,113,96,95,96,94,86,105,108,103,90,105,111,105,104,103,99,93,79,100,99,96,96,100,109,99,102,100,98,100,119,100,103,94,100,103,104,95,108,98,99,84,84,93,101,98,106,72,103,87,104,97,105,91,105,94,100,103,111,106,98,98,98,105,104,94,90,94,85,114,94,101,110,94,88,96,80,103,104,98,101,85,102,94,99,97,102,104,99,112,103,99,101,99,94,94,95,109,92,101,99,92,80,92,104,98,102,97,105,95,96,99,112,102,91,96,87,104,103,108,106,91,95,92,100,100,89,107,110,95,114,107,96,99,98,100,100,116,92,98,96,103,96,94,96,109,88,108,101,94,113,107,105,93,103,106,96,115,101,95,108,101,96,110,91,96,103,87,100,95,103,97,105,95,95,90,96,97,96,104,86,104,95,79,100,81,108,90,102,95,108,88,106,95,108,110,98,109,95,106,96,108,98,110,96,97,99,98,96,98,100,107,102,108,98,113,111,89,88,102,97,103,109,102,85,104,103,109,92,105,107,93,98,101,93,107,85,90,94,91,95,92,94,106,122,91,104,97,100,87,95,98,101,91,103,92,98,77,99,91,103,95,91,125,107,104,110,104,94,93,106,95,101,108,97,99,90,93,95,92,106,91,92,101,102,97,103,107,107,102,99,101,103,100,96,108,105,105,95,109,108,94,94,100,102,90,105,93,108,99,87,102,106,88,93,97,91,91,99,112,102,100,89,92,88,91,98,101,104,90,98,96,101,96,99,100,95,109,90,97,111,83,92,95,97,106,96,111,96,106,92,91,105,94,108,93,97,103,101,91,97,105,87,93,94,101,103,92,105,108,103,78,97,116,98,108,92,98,68,101,93,90,110,105,84,103,108,93,87,104,98,97,110,107,99,93,95,90,95,99,86,96,103,92,90,89,100,104,99,96,101,86,105,97,88,100,107,108,102,108,99,96,89,99,88,112,102,132,99,107,99,121,103,88,96,102,98,101,106,105,109,85,103,102,100,98,100,100,103,105,108,103,108,110,108,107,106,108,97,109,100,102,87,105,109,112,104,100,102,99,96,100,114,113,105,98,102,101,106,113,92,95,82,100,102,94,101,104,101,99,92,95,106,102,90,95,111,92,105,91,90,102,104,99,112,81,93,98,107,92,105,97,86,93,107,95,103,100,104,99,95,107,92,69,101,103,97,97,108,100,105,96,98,102,99,92,95,96,109,106,112,101,105,101,95,101,91,121,91,97,101,91,121,82,93,95,97,101,110,105,109,93,96,107,96,87,98,92,99,104,93,107,109,92,93,102,97,92,113,95,108,110,104,102,95,105,104,67,99,106,81,95,101,103,96,91,99,97,105,94,97,106,104,125,100,100,105,83,90,105,93,101,113,107,86,86,102,100,107,114,110,95,92,89,81,86,102,95,110,88,100,108,102,111,100,111,111,93,126,87,115,104,100,106,93,102,99,84,102,84,99,91,91,91,92,96,81,101,103,93,105,95,92,97,84,80,92,89,115,98,98,105,106,102,62,84,92,86,89,105,86,109,80,117,103,106,91,91,102,93,98,93,103,100,87,85,93,94,91,115,105,100,98,91,96,99,87,77,103,92,91,92,91,97,97,87,100,83,106,97,100,96,93,96,87,104,86,103,85,102,106,101,105,108,94,105,100,95,108,95,105,92,104,92,101,101,105,108,92,98,102,96,100,94,105,104,89,84,66,94,99,102,98,96,92,78,99,102,108,101,92,92,102,100,99,97,105,94,113,101,100,106,96,97,89,102,97,106,96,99,97,103,108,103,87,97,99,87,109,110,95,105,90,83,100,97,108,93,112,106,98,96,108,93,100,92,98,98,98,91,85,97,98,89,98,101,105,107,102,103,100,100,103,110,92,106,93,93,94,114,83,94,96,93,90,101,113,105,95,94,106,96,96,105,106,84,97,106,86,103,97,97,107,98,95,108,82,97,95,105,94,103,102,93,62,94,100,88,99,107,109,98,92,101,111,104,103,83,98,92,100,96,105,117,102,96,105,99,93,101,108,108,95,103,102,83,91,96,96,92,110,103,94,102,95,105,97,88,94,112,93,90,96,100,99,105,112,102,99,97,105,101,104,90,100,94,98,86,98,84,94,102,106,100,102,93,103,87,99,105,100,105,98,104,92,96,98,104,104,98,104,111,104,100,104,106,90,108,96,93,99,97,101,112,98,101,101,98,99,105,102,92,86,94,96,105,106,101,96,115,94,99,108,103,110,98,110,107,102,98,104,100,93,113,109,89,98,98,106,103,102,98,93,107,104,102,106,97,120,103,95,102,97,97,94,103,100,97,94,99,98,93,96,92,100,99,98,108,87,97,100,100,94,120,92,97,90,109,112,100,100,92,95,101,101,101,119,95,99,95,98,100,106,95,93,104,105,99,95,90,104,101,85,101,105,98,93,106,104,102,92,91,95,102,107,100,94,103,104,96,90,97,95,98,87,109,103,98,97,93,113,93,98,109,103,109,89,110,95,99,99,101,102,102,113,104,111,103,89,106,111,101,83,108,98,86,102,104,95,98,73,96,100,103,98,89,106,118,90,107,99,104,109,98,108,95,107,97,100,97,97,98,91,94,90,98,95,110,98,97,96,100,103,109,103,97,92,99,102,99,90,119,96,99,116,89,96,101,95,101,102,105,101,95,102,91,99,102,111,91,99,114,100,94,94,101,107,108,102,93,93,100,96,99,105,113,99,115,104,107,117,103,84,96,100,98,93,101,80,92,96,114,88,94,103,79,104,98,92,101,95,104,114,92,95,105,95,91,87,98,108,106,104,95,106,101,105,95,108,101,132,102,76,104,103,92,101,93,87,93,91,116,108,98,108,114,101,91,94,95,102,87,95,92,99,105,101,105,108,94,94,94,95,97,102,106,95,86,110,99,109,96,108,89,104,107,106,101,117,96,104,98,101,95,116,98,117,95,112,98,112,107,100,107,85,106,98,106,109,89,95,99,99,118,108,99,97,87,89,103,86,104,102,112,104,102,124,91,126,114,105,87,94,126,93,97,89,109,99,92,115,89,99,106,106,98,98,98,104,112,106,91,94,88,95,102,99,116,113,91,101,100,95,88,97,96,103,106,84,93,100,108,94,108,106,92,99,102,75,105,90,102,96,99,96,100,98,104,67,90,103,96,115,105,105,98,102,101,108,94,100,91,98,99,117,94,98,95,99,123,99,93,104,96,97,105,101,99,112,108,82,98,104,96,96,106,107,101,104,113,102,96,103,107,93,83,95,105,109,112,97,96,95,101,105,99,104,102,117,108,101,100,97,105,97,85,100,68,99,101,98,104,98,101,102,98,106,100,103,106,100,101,102,107,111,92,100,101,97,92,107,96,93,96,96,84,104,105,103,98,90,99,100,91,111,100,98,97,99,94,98,99,88,98,98,99,97,104,94,101,101,106,104,93,78,102,98,104,96,115,100,99,100,102,103,90,92,91,97,95,74,103,103,97,95,116,95,102,89,94,104,95,97,105,105,103,102,83,105,101,106,100,82,92,96,108,91,97,111,108,102,96,99,92,95,106,98,99,91,109,97,107,94,98,101,109,108,109,106,106,99,101,98,123,104,105,93,108,101,87,90,89,87,108,116,107,100,99,94,81,108,98,98,104,87,108,101,104,68,63,91,122,102,101,108,100,112,100,90,106,97,112,97,92,103,88,97,103,115,66,91,105,87,97,104,91,99,95,93,94,100,94,95,100,105,113,101,101,98,80,96,102,102,95,105,102,94,87,101,94,95,96,98,88,116,103,95,114,99,98,112,103,111,93,102,109,98,100,85,106,108,116,84,98,98,108,100,98,91,91,105,100,104,108,95,105,105,107,91,94,66,96,102,105,98,102,103,97,99,99,102,96,98,99,93,101,98,102,102,83,101,110,125,104,100,124,104,101,96,63,101,101,100,101,95,107,96,86,93,94,97,127,106,96,96,114,96,103,100,92,100,103,67,98,92,106,101,97,95,102,105,106,102,97,99,87,82,94,89,105,97,85,107,107,105,90,97,100,92,96,88,104,96,116,96,94,108,79,93,94,94,103,113,102,97,109,97,109,98,93,101,91,97,80,95,83,112,117,96,95,110,107,97,103,107,98,104,96,99,113,97,96,102,104,94,85,106,106,96, +391.39377,86,102,88,102,69,101,90,90,98,94,95,98,99,96,94,98,96,93,106,113,101,101,98,95,96,121,93,103,103,94,88,100,93,83,111,98,106,93,99,92,88,101,99,96,105,103,87,96,94,107,101,99,102,111,99,97,82,101,98,94,79,95,100,93,98,102,83,110,114,77,98,67,110,99,89,110,107,88,113,90,97,96,98,98,92,92,69,96,94,97,105,85,100,102,101,85,94,93,90,100,92,102,105,82,101,101,99,106,95,92,94,90,108,96,106,96,102,122,118,97,93,94,102,98,98,105,92,100,101,92,90,104,99,99,92,100,95,81,105,97,96,96,95,95,104,94,96,91,88,100,95,104,99,89,84,102,101,104,100,101,91,95,102,88,91,93,82,93,97,96,104,99,105,95,100,96,100,91,117,90,98,108,100,101,95,98,100,98,99,90,93,96,100,90,89,95,88,90,96,105,100,84,113,102,104,100,96,104,85,97,97,102,100,88,104,99,102,97,113,98,95,90,82,108,98,94,95,104,106,106,98,95,120,95,107,100,122,102,83,79,93,99,96,100,88,86,89,114,104,100,102,108,92,88,113,100,91,96,87,91,101,95,97,102,98,98,105,96,93,92,121,95,95,98,105,88,93,101,92,106,103,97,99,100,99,99,67,94,119,96,94,106,96,91,102,93,110,96,84,104,95,95,93,108,99,100,89,109,92,99,103,98,96,99,95,96,87,108,94,88,100,99,82,93,88,100,97,91,93,91,77,90,106,108,94,98,110,101,102,96,85,99,112,91,92,106,81,98,99,105,102,98,94,99,107,95,93,106,103,109,91,100,99,97,96,93,97,111,100,125,100,96,99,113,107,85,95,92,101,113,87,104,99,104,95,101,100,92,92,98,102,91,85,106,103,94,97,96,98,110,98,100,110,101,100,102,81,95,107,97,97,96,93,103,98,99,96,94,104,85,111,98,91,99,106,98,97,103,92,95,106,114,99,103,94,102,98,95,91,100,113,93,96,96,102,105,92,110,115,114,104,89,89,115,87,92,91,97,104,95,108,99,95,93,104,104,94,79,85,100,90,106,95,105,93,98,95,104,82,100,94,104,104,89,95,109,95,109,106,100,96,110,112,96,94,89,100,109,93,88,101,87,95,103,102,102,104,86,101,102,95,94,101,106,94,105,84,95,92,93,97,104,104,96,98,98,107,103,100,92,96,99,106,100,108,103,115,100,99,104,89,99,97,97,95,94,94,95,122,110,97,110,94,111,88,94,100,92,106,96,100,104,93,97,108,108,105,104,92,101,90,95,115,107,94,94,102,73,90,99,95,106,102,95,88,92,105,95,96,94,100,87,94,109,99,98,79,101,112,95,89,101,99,89,98,102,95,90,114,101,83,96,97,101,98,101,103,99,120,109,97,97,98,100,96,88,98,99,103,92,93,87,95,99,95,98,99,92,97,91,96,90,91,102,94,90,95,107,100,98,118,100,89,103,114,95,110,83,110,136,103,100,97,104,96,99,94,90,94,117,102,92,103,97,96,94,99,106,98,80,107,100,92,93,101,94,104,92,106,110,98,96,108,107,105,99,97,95,83,88,98,95,100,97,91,109,105,95,101,105,107,96,89,93,92,103,98,94,102,93,100,102,93,99,93,90,96,107,112,102,99,93,78,99,95,102,99,99,104,98,106,95,92,98,112,91,100,93,87,113,95,98,93,100,96,94,89,101,98,108,105,89,125,99,95,96,82,100,102,85,95,91,101,96,100,109,95,89,102,97,86,98,95,96,92,94,107,107,96,104,98,103,97,104,98,84,92,108,105,96,90,96,86,98,98,108,103,98,83,99,96,88,92,105,101,101,91,69,99,95,97,103,102,85,95,95,104,99,111,98,99,85,86,98,94,98,98,90,101,101,93,88,91,97,101,90,101,80,100,99,87,91,94,97,89,108,97,94,89,96,84,105,90,97,102,99,91,99,107,100,76,101,102,114,101,94,87,95,90,104,91,104,70,85,92,94,87,103,105,93,105,106,110,104,97,67,98,122,86,91,103,104,86,97,129,101,91,106,98,94,102,103,98,96,98,114,104,95,99,104,109,99,97,93,88,98,96,99,104,88,96,98,92,109,86,114,90,95,105,99,112,102,98,102,89,104,87,106,99,101,92,92,93,127,109,109,99,96,106,94,96,95,96,92,94,92,98,103,91,93,85,108,92,95,86,98,93,88,80,103,85,98,102,83,96,95,99,101,98,93,92,108,91,98,112,96,117,93,100,90,98,98,107,96,95,98,82,111,100,102,85,99,97,81,101,97,89,95,101,102,100,96,88,88,102,71,100,95,88,103,89,80,106,106,104,81,109,96,102,104,92,100,122,105,107,104,89,90,105,93,104,90,95,90,89,98,107,108,102,97,88,98,95,96,103,98,92,101,103,98,113,106,103,97,102,93,102,82,90,89,91,92,127,96,102,101,103,99,100,103,120,103,93,84,96,109,95,87,98,83,104,88,106,94,97,101,104,100,97,93,109,103,121,101,92,95,96,96,100,93,111,99,105,93,98,112,97,91,101,100,91,98,88,100,90,93,87,106,88,105,104,96,96,96,83,108,102,90,102,88,96,93,103,98,96,100,96,99,95,94,113,95,102,95,104,88,103,94,104,98,87,87,111,94,98,96,100,97,95,90,97,100,98,101,109,90,105,95,99,94,92,105,120,79,87,106,82,93,91,97,105,101,95,113,94,92,91,105,110,98,90,100,100,105,96,106,102,97,97,83,99,104,92,98,92,88,93,113,95,97,105,103,100,109,104,91,102,98,101,104,102,92,99,90,102,102,93,101,93,98,103,99,96,87,96,108,90,99,90,93,97,96,88,100,110,100,81,91,102,98,106,102,104,100,103,84,90,92,97,113,102,86,105,97,90,97,103,99,105,114,93,102,103,100,101,92,98,89,100,97,98,97,87,95,115,101,98,115,98,95,103,97,104,99,96,111,104,111,107,96,100,139,92,110,98,86,76,84,106,98,95,109,104,113,100,84,98,97,102,110,102,91,90,91,112,104,106,93,94,94,94,103,93,94,103,91,92,105,91,101,93,100,106,97,102,101,99,98,98,95,98,95,106,104,116,89,108,115,106,107,96,93,96,95,94,91,91,95,117,98,105,109,94,102,94,113,87,90,96,91,117,94,100,94,92,101,98,101,100,81,101,87,96,105,92,91,90,98,86,95,98,105,83,87,100,108,105,115,104,92,109,99,115,97,106,102,102,115,111,95,98,102,93,102,106,98,89,89,99,100,83,89,91,88,98,104,99,92,101,86,108,96,97,109,87,79,97,94,79,100,85,110,97,96,94,104,83,105,100,107,97,100,105,98,100,90,110,93,111,94,107,116,84,91,95,98,92,110,83,93,87,101,100,93,88,106,94,98,105,102,105,97,101,123,93,102,90,100,98,96,99,98,91,113,96,97,91,92,91,88,110,109,89,98,114,87,109,100,98,88,108,106,94,99,90,97,99,105,102,91,101,100,78,105,96,104,102,99,90,109,94,91,113,113,109,102,85,100,119,85,76,84,94,95,100,103,95,108,102,93,104,99,105,107,91,103,99,102,99,93,89,81,99,96,99,90,103,101,102,87,104,89,96,105,95,117,97,102,97,97,103,98,104,94,92,93,98,99,87,105,100,103,105,102,98,101,93,96,101,100,71,113,96,113,105,93,95,101,112,91,107,102,100,92,91,101,100,95,89,106,92,94,87,94,95,106,105,101,102,98,101,89,88,112,91,82,106,81,107,94,92,100,104,100,88,94,96,101,95,101,111,93,106,92,92,109,97,96,106,74,106,109,100,95,90,116,107,99,98,98,101,98,103,92,103,105,102,99,99,100,95,92,96,107,80,85,103,91,103,89,106,96,96,93,94,108,75,94,97,90,102,87,92,101,93,99,117,91,103,88,94,100,99,103,93,97,93,104,90,92,101,101,112,101,119,112,94,90,94,120,106,82,91,104,102,99,90,85,104,94,102,104,83,101,93,89,95,97,106,104,98,98,95,96,101,95,97,101,98,96,91,94,84,98,92,100,100,99,96,110,103,94,104,103,103,102,77,95,87,96,96,92,105,100,89,97,111,106,96,94,101,89,99,80,97,86,96,92,70,105,94,104,96,117,85,100,109,79,99,97,71,95,99,91,102,96,84,94,91,95,109,102,99,105,96,88,92,95,83,87,105,92,104,90,95,106,102,84,100,90,92,88,94,85,97,91,95,93,129,107,101,102,93,106,94,91,101,88,89,109,105,103,94,93,109,93,101,103,96,99,99,109,103,97,100,101,91,89,100,93,90,95,97,100,102,91,101,101,113,107,101,91,104,94,95,81,102,100,92,98,95,101,100,91,105,93,93,104,101,93,98,98,93,105,91,105,97,96,92,93,104,105,95,100,86,98,101,98,95,88,89,111,92,98,106,87,84,102,105,98,80,86,92,100,109,98,86,96,91,92,85,80,111,103,94,92,94,85,90,97,85,97,88,99,95,81,105,98,113,104,106,98,101,106,96,93,94,96,87,92,98,99,98,97,99,113,103,104,98,100,93,102,102,85,115,112,104,108,117,103,94,105,97,102,93,100,100,102,93,87,92,96,105,120,100,92,108,119,97,104,84,94,113,98,86,98,119,92,96,80,98,100,100,87,95,94,118,108,100,91,100,108,91,93,79,104,106,118,98,92,110,105,97,102,108,107,100,97,108,107,101,98,89,96,93,105,100,91,90,102,96,91,72,93,94,112,104,99,108,92,104,83,91,103,89,94,108,102,94,106,103,91,98,109,96,90,109,94,101,110,104,93,97,99,107,93,94,78,107,94,99,105,107,89,107,93,106,80,114,100,97,95,109,90,125,85,99,104,110,94, +391.53384,94,110,88,101,95,98,102,108,102,89,86,89,81,102,101,81,88,92,111,84,104,98,92,94,96,107,102,106,100,95,87,118,97,91,104,102,95,87,97,91,94,92,103,93,91,96,114,96,112,99,100,97,93,96,109,97,94,104,105,88,100,105,95,93,118,102,91,92,99,92,98,104,92,96,92,104,92,95,104,102,110,100,104,99,103,80,96,101,93,97,96,97,104,102,87,85,103,94,98,106,101,99,95,96,110,95,98,103,87,87,110,99,121,94,98,123,100,98,94,95,100,87,107,104,99,99,102,94,109,95,116,89,99,96,105,94,96,89,96,97,106,106,105,97,105,99,91,90,92,92,103,99,85,90,106,96,100,96,103,100,103,94,100,93,105,109,97,105,109,96,96,104,104,101,86,106,95,89,104,102,95,79,95,94,95,103,103,87,108,105,112,89,101,113,103,89,109,98,102,112,108,113,110,101,105,100,104,104,112,94,101,100,113,102,113,99,97,105,96,78,85,92,120,106,90,101,99,102,88,96,98,98,106,105,95,98,95,100,99,98,102,104,106,103,97,102,100,100,100,90,101,112,102,106,106,91,91,95,96,102,95,100,101,105,84,92,97,102,96,91,99,106,102,96,103,106,98,112,92,104,99,100,114,94,108,97,84,102,101,108,92,96,110,87,87,92,110,97,102,100,116,105,101,96,94,100,93,106,92,121,101,102,91,98,106,99,104,96,97,94,97,97,97,58,95,103,87,89,112,98,84,94,92,85,113,101,101,100,100,104,90,105,103,90,95,100,105,110,114,99,95,104,115,97,74,106,97,107,96,82,101,76,98,101,96,95,59,113,113,108,99,95,96,104,105,97,90,97,89,100,90,90,121,98,93,102,98,94,94,100,118,97,96,102,87,93,93,95,92,99,81,93,91,111,102,93,81,99,94,100,98,95,104,99,99,94,94,95,108,98,96,128,106,105,99,107,97,103,105,108,99,111,96,87,90,100,101,105,93,104,90,105,99,108,95,98,99,100,97,110,108,101,77,82,100,89,98,101,107,105,94,98,105,98,106,107,104,89,98,100,90,104,93,95,83,92,101,105,92,105,100,99,104,110,97,91,90,101,88,98,95,100,101,93,99,85,110,98,111,105,91,99,103,100,99,91,92,91,95,94,103,105,94,94,100,115,94,99,100,104,109,99,99,106,97,95,108,104,86,101,105,102,83,99,107,101,92,104,87,99,107,99,77,112,95,99,99,104,92,107,100,109,101,97,105,93,99,103,99,87,99,91,102,102,95,114,93,90,101,102,87,99,99,104,104,91,99,102,108,104,108,92,92,93,96,95,106,115,95,98,104,97,95,95,114,109,88,103,93,96,98,99,100,98,96,98,99,95,112,100,94,84,92,93,109,101,94,108,100,101,100,86,114,90,95,102,102,108,91,91,109,100,95,105,94,100,92,103,88,104,107,106,102,100,93,97,100,107,108,70,98,105,94,107,106,100,113,97,81,118,123,100,97,93,84,100,102,105,100,98,109,97,89,96,98,95,103,97,100,88,104,95,96,104,103,94,93,99,109,108,103,99,106,100,99,89,98,94,87,101,93,92,94,101,100,81,101,82,91,81,95,91,100,77,92,100,111,96,93,92,100,98,106,105,94,98,95,102,95,96,97,95,94,100,107,101,98,105,87,94,114,108,101,96,100,105,105,103,95,100,109,92,104,89,101,101,101,91,104,106,105,99,88,107,93,93,78,110,105,88,108,95,104,91,95,106,93,109,107,104,113,101,95,99,97,97,98,98,93,101,92,90,94,110,104,93,102,106,111,122,93,101,96,102,90,98,97,96,110,100,88,101,83,113,109,103,99,101,102,92,100,103,106,110,105,109,109,100,102,104,114,99,108,102,100,103,96,107,117,95,89,99,96,103,99,97,84,100,96,98,114,91,97,99,105,100,98,111,98,97,102,114,104,99,96,89,91,101,107,92,101,103,108,101,95,100,100,91,96,95,96,93,100,94,100,105,101,121,70,97,99,107,100,97,106,92,106,112,105,109,105,87,110,98,101,100,96,103,88,101,106,99,104,113,93,101,104,97,88,96,102,99,109,102,109,101,111,104,92,102,104,96,104,109,88,98,94,91,90,96,110,110,104,113,95,96,99,94,100,107,93,102,106,109,100,106,89,93,105,102,99,108,91,101,109,97,86,97,101,111,102,107,100,96,96,94,101,91,100,101,100,96,95,89,97,90,110,106,112,97,101,94,96,113,98,86,95,110,105,93,109,102,88,101,92,103,90,101,87,109,88,101,116,111,94,104,104,91,91,103,104,109,105,93,104,98,112,107,96,105,102,111,93,100,108,87,87,117,96,98,96,117,93,103,106,96,90,77,97,79,94,98,97,101,110,105,104,97,95,94,92,112,98,99,98,101,93,100,102,105,109,122,110,105,97,92,99,97,101,105,121,89,94,105,120,109,100,97,102,114,99,101,112,105,94,93,87,111,91,89,89,94,106,98,97,100,91,97,107,98,99,100,104,98,101,110,104,104,94,108,98,104,99,96,98,106,102,86,116,106,107,102,102,111,103,102,75,87,93,101,76,92,92,106,76,103,99,105,109,98,99,86,107,120,86,90,110,95,95,98,104,87,101,98,96,105,101,94,101,108,83,102,117,109,85,90,85,92,100,101,109,96,95,100,93,100,106,97,99,108,88,98,103,99,99,106,95,97,102,97,120,109,103,98,93,97,113,97,86,98,112,107,102,108,105,106,89,93,103,92,107,103,87,88,100,101,110,107,105,101,89,92,104,102,91,83,100,108,102,105,96,95,123,90,97,95,104,92,91,103,96,101,103,95,97,94,98,109,113,95,105,92,129,109,106,99,111,105,114,96,100,86,73,112,90,94,89,86,90,102,93,90,110,102,114,107,99,100,95,106,100,108,100,100,102,101,109,98,90,96,100,99,90,108,105,101,101,99,109,91,101,106,104,99,108,103,87,106,96,96,109,106,99,92,108,96,106,93,101,99,107,93,102,102,94,102,103,102,91,104,96,122,105,96,108,103,100,94,107,90,111,103,95,102,89,113,111,103,99,100,103,110,91,99,111,97,116,110,105,102,101,94,101,95,108,96,92,110,103,103,104,109,87,107,112,96,99,104,92,85,94,102,89,100,101,101,106,103,114,105,106,96,88,111,106,96,95,95,93,98,113,105,115,112,101,87,82,101,105,96,106,105,96,106,105,108,117,95,99,89,107,100,107,99,103,104,99,108,103,107,111,94,100,106,102,101,96,95,98,99,105,87,106,106,105,102,111,107,98,94,139,131,94,98,114,96,97,100,97,99,88,107,101,95,102,95,94,92,94,90,89,113,102,92,96,105,93,90,104,90,101,100,120,98,104,99,95,106,96,95,104,91,100,97,103,94,95,97,100,100,95,97,101,95,102,66,96,109,107,90,89,100,78,98,100,104,113,99,102,87,89,109,113,92,97,97,96,114,104,112,113,102,99,109,113,93,101,110,105,101,103,92,99,103,97,100,101,104,92,103,102,96,90,79,115,102,96,96,92,99,104,109,98,92,118,105,105,100,108,91,102,110,95,107,104,110,87,109,102,93,91,94,95,92,94,107,101,112,96,100,97,83,113,107,108,98,95,99,112,99,101,87,98,68,99,106,98,103,101,94,82,111,97,111,108,93,98,109,100,100,109,94,104,110,94,109,91,101,103,90,91,107,92,95,99,110,119,100,98,103,99,93,95,106,99,102,105,108,102,104,123,104,98,94,108,68,103,92,105,97,91,113,115,96,107,129,93,103,107,94,94,106,103,102,101,104,99,97,100,104,99,111,102,107,96,100,118,100,106,89,93,113,102,106,88,96,104,96,95,102,97,102,99,98,97,102,103,99,87,96,98,96,98,102,109,97,94,95,104,98,106,117,103,106,124,93,102,105,104,107,95,104,96,117,93,103,100,99,101,96,110,100,97,90,106,105,101,104,100,109,100,117,71,108,101,103,96,87,93,104,107,92,86,103,100,88,105,98,102,93,99,105,90,99,97,100,106,98,102,93,89,93,98,114,97,107,90,91,95,104,92,91,100,95,108,97,109,103,108,72,94,100,101,100,97,98,108,103,90,96,107,100,107,106,102,109,91,109,92,108,105,102,99,85,102,106,105,95,98,98,104,99,99,117,106,103,105,106,111,97,101,109,97,87,97,88,83,94,107,81,104,101,89,101,87,99,96,134,102,95,90,91,104,92,93,104,100,110,94,97,85,99,102,100,101,98,94,81,92,98,106,107,109,96,70,91,79,109,88,96,97,88,101,106,98,108,97,88,101,100,86,96,99,97,98,98,101,100,95,93,102,106,95,95,103,104,108,98,100,104,102,106,101,102,95,98,105,116,106,95,101,96,107,105,100,106,91,96,83,100,118,96,102,104,101,96,90,100,80,98,104,88,104,100,104,94,91,96,108,76,99,67,101,88,102,96,97,108,96,97,96,101,107,97,92,97,102,102,88,100,98,107,72,91,94,92,104,103,80,89,98,87,96,93,103,97,89,94,109,99,95,113,104,89,103,105,103,98,97,102,95,97,105,99,95,103,101,108,81,99,97,111,101,99,96,125,83,97,81,108,122,98,113,87,99,87,108,97,99,106,92,116,96,110,94,94,105,91,96,102,104,101,96,105,93,99,102,113,96,76,95,99,125,95,101,93,91,90,89,99,96,103,97,98,99,110,90,97,99,119,101,96,107,103,91,104,99,100,128,88,100,100,103,105,104,104,104,103,109,98,97,109,105,101,93,126,109,99,87,111,101,87,96,98,110,96,90,96,90,106,108,100,103,96,108,99,80,108,113,106,93,110,116,88,101,94,106,107,102,108,117,96,106,101,102,94,90,88,95,86, +391.67392,104,93,101,96,96,99,83,96,97,94,99,71,96,101,109,91,106,97,87,112,100,102,87,87,100,101,82,93,107,96,107,86,105,92,89,107,87,104,87,88,98,99,86,89,94,85,98,109,87,91,110,97,93,95,89,96,95,97,84,83,94,108,102,74,106,111,98,93,97,90,107,106,95,90,97,109,91,94,103,89,92,96,121,101,107,99,104,102,99,101,94,93,100,89,106,91,97,97,103,95,109,89,96,95,92,86,101,90,94,82,105,87,96,99,97,98,90,108,106,95,93,107,103,87,94,109,117,100,104,97,104,95,114,94,93,97,111,88,102,89,98,107,93,96,92,85,97,96,89,106,97,88,98,95,92,102,95,94,94,90,80,112,102,100,101,94,94,90,101,100,98,105,84,97,117,86,100,90,108,109,82,77,108,105,98,90,97,85,104,93,96,118,92,104,99,101,113,93,94,100,89,87,97,100,99,95,98,98,99,108,95,100,104,110,101,118,87,104,102,97,86,74,96,101,91,117,95,94,105,100,102,111,96,105,103,106,99,109,105,104,107,97,100,99,107,97,93,90,92,112,92,101,105,99,102,85,95,102,90,86,101,103,92,96,91,96,115,106,93,107,95,90,104,82,97,104,102,102,94,84,102,82,91,108,95,92,84,96,98,102,91,106,103,102,102,96,112,88,102,94,109,80,100,111,98,98,97,107,108,97,92,101,87,100,96,112,106,83,114,92,106,90,105,110,105,102,105,97,100,100,87,84,101,83,108,105,107,83,105,117,103,83,96,99,98,108,102,98,103,101,95,102,97,87,102,98,100,101,86,95,91,110,88,95,95,88,86,89,109,100,100,102,98,92,101,87,109,97,83,102,93,108,97,100,98,101,95,104,113,97,109,101,94,103,95,93,91,101,109,113,102,105,102,101,97,94,97,92,92,96,87,101,105,104,112,105,95,110,102,87,97,91,93,90,104,89,103,100,97,103,74,107,96,83,82,96,78,108,92,105,103,91,87,103,104,97,97,96,98,109,100,98,105,101,103,100,110,86,109,102,93,98,92,91,95,99,100,103,99,103,87,112,106,97,108,106,83,101,112,100,96,101,104,98,99,94,99,100,68,94,89,99,104,96,99,108,95,95,98,108,98,110,103,99,96,99,83,93,94,132,102,101,99,99,95,94,99,94,88,100,105,91,106,98,101,86,109,97,126,105,90,101,104,99,98,96,104,99,89,110,101,104,102,93,92,86,89,88,98,92,116,110,99,98,105,96,106,94,93,95,118,97,93,106,110,99,112,94,96,91,97,94,71,102,99,101,103,95,59,85,98,101,96,95,109,97,100,96,94,106,72,91,98,92,105,103,97,96,91,102,93,114,104,101,95,89,94,100,94,109,101,83,104,101,106,102,96,98,94,99,101,99,99,95,96,113,88,103,99,98,102,98,99,100,86,102,87,94,105,96,94,102,96,98,130,94,99,91,104,104,108,108,84,100,98,92,101,104,87,104,96,97,100,82,104,96,95,94,101,105,106,91,99,92,101,103,100,99,99,95,104,82,96,88,96,91,93,95,97,98,102,101,98,99,95,95,109,109,89,98,91,92,96,89,79,92,95,109,93,103,98,90,80,100,92,99,106,86,100,97,106,105,103,95,99,79,102,95,102,81,104,105,100,90,99,95,99,94,103,93,107,103,101,95,93,98,102,105,108,111,105,97,101,94,106,98,98,88,94,91,83,113,93,106,64,97,94,99,107,95,107,99,95,99,93,90,99,102,91,124,92,101,101,96,105,107,106,103,95,98,107,112,99,103,102,97,98,95,91,96,109,109,96,79,101,88,105,94,92,84,98,97,101,96,105,96,106,98,105,92,105,102,107,104,95,95,91,103,103,83,89,105,75,106,100,104,106,101,95,110,83,113,98,95,103,122,89,86,93,90,100,93,99,109,101,92,91,105,94,106,102,101,91,105,107,102,89,94,113,101,83,110,98,104,99,97,87,91,100,88,98,109,89,103,106,99,108,94,110,95,98,99,97,100,104,97,83,105,83,107,100,108,105,92,95,82,99,108,98,99,95,91,105,96,102,99,97,96,100,106,86,112,92,119,95,97,92,98,106,98,93,99,112,99,77,102,85,103,101,92,95,123,76,106,105,91,106,91,90,103,104,89,108,99,100,95,99,95,100,103,103,105,110,99,103,96,106,93,96,105,99,101,99,91,103,114,98,93,92,96,80,109,100,92,91,92,96,74,91,102,111,100,103,83,106,103,92,105,100,105,97,99,103,89,93,94,84,97,78,83,83,89,104,94,94,112,105,96,84,99,102,99,94,119,111,105,105,93,92,99,111,97,101,105,95,96,105,112,100,98,102,100,106,120,74,109,103,108,105,90,91,104,102,105,94,95,63,108,113,106,82,110,99,102,95,99,97,99,104,87,98,102,103,97,94,107,103,114,93,102,101,102,105,101,98,106,90,96,109,98,97,95,104,92,105,103,94,105,113,109,105,119,106,105,99,99,100,87,91,102,101,111,99,104,107,97,103,98,112,96,94,97,100,99,90,100,120,103,73,107,93,110,107,94,93,109,105,97,101,93,99,96,102,107,98,85,101,100,111,101,109,91,112,106,101,101,107,100,113,105,113,89,105,113,110,91,98,96,101,89,95,97,101,117,106,101,95,109,115,92,98,103,78,102,95,108,100,83,88,101,107,92,110,106,95,117,102,88,81,96,87,122,116,105,102,103,98,104,91,91,97,105,103,105,111,98,106,106,91,88,98,106,97,100,102,98,99,102,108,93,99,116,95,93,104,113,84,103,98,108,109,102,98,108,103,95,95,102,106,95,95,106,109,96,115,103,103,108,95,100,107,107,100,99,106,91,102,95,89,103,111,96,96,115,104,92,102,95,102,117,98,105,105,101,96,77,106,98,103,98,96,108,101,110,102,103,105,92,99,96,101,105,88,96,101,105,96,102,104,90,98,108,94,104,97,107,98,108,104,85,98,88,97,105,92,100,104,108,101,91,92,80,106,109,104,97,96,101,103,116,95,92,104,87,92,100,102,108,96,90,91,98,95,94,103,83,106,111,108,99,108,101,98,106,112,94,98,81,93,97,91,110,99,117,98,106,109,97,124,104,98,102,99,114,94,99,118,98,95,96,87,84,94,98,103,93,68,102,96,110,101,104,97,113,89,101,111,98,106,102,97,92,98,96,108,97,115,94,102,101,102,91,93,108,105,96,98,95,104,72,106,96,100,106,106,94,97,103,92,103,104,111,92,105,102,99,107,94,98,96,123,94,112,106,99,112,81,103,105,97,108,105,102,106,104,92,89,86,94,93,104,100,104,101,104,109,101,109,100,99,104,98,104,97,97,88,101,94,106,106,102,88,86,91,99,98,93,112,102,97,92,99,93,113,91,102,109,98,100,102,108,97,106,101,102,110,95,110,136,92,95,98,106,99,90,95,108,102,112,104,106,93,98,98,112,122,99,96,112,101,98,104,95,101,105,102,107,94,87,106,105,101,110,109,98,136,87,78,105,91,100,94,90,102,102,91,91,101,86,99,109,94,95,94,98,105,92,104,97,98,99,90,83,97,99,106,101,105,103,109,93,104,98,104,108,107,101,112,105,104,88,94,112,102,95,100,99,106,107,93,101,96,105,109,109,103,98,105,105,95,98,110,100,97,97,98,105,104,101,105,106,84,107,96,105,101,119,107,96,105,93,105,107,98,103,108,105,102,104,95,120,85,103,92,106,90,88,91,98,104,102,94,100,111,105,101,114,83,101,73,100,106,92,101,108,102,105,119,105,108,108,102,94,103,92,101,92,106,100,104,81,103,91,86,92,105,115,95,106,110,90,98,103,101,95,103,113,98,99,102,98,88,79,105,90,95,91,93,104,112,99,117,93,108,99,92,112,95,109,102,107,93,102,111,97,103,95,97,99,94,113,102,100,105,96,87,124,94,92,99,98,108,100,107,109,103,102,100,110,107,101,104,107,86,111,97,99,106,91,105,108,102,99,94,101,102,96,91,103,105,106,102,102,96,123,103,98,110,111,110,87,105,105,100,98,110,106,102,112,97,93,101,106,102,97,105,88,98,91,98,104,100,97,107,112,113,106,100,95,101,98,96,91,97,98,95,94,104,87,99,98,86,98,91,99,101,89,102,95,102,94,107,104,108,111,99,91,96,102,106,104,140,93,99,102,108,110,98,96,98,110,104,101,97,87,108,122,99,116,101,96,116,112,91,101,85,99,96,104,100,85,85,108,101,101,103,92,98,98,101,105,105,101,92,108,100,97,89,84,111,103,95,122,96,101,99,100,83,113,95,104,91,106,106,65,83,100,84,99,101,99,78,113,100,100,135,95,98,107,91,105,95,113,101,103,91,95,96,107,102,87,94,100,112,110,105,95,102,102,85,111,107,96,76,105,102,99,115,102,135,93,111,100,95,105,105,98,107,88,94,95,101,95,113,108,99,108,104,118,113,96,104,106,115,103,99,99,98,105,95,98,88,88,86,104,113,87,104,99,109,74,102,105,92,92,115,96,88,105,108,96,95,104,98,100,89,103,96,99,109,95,110,97,109,108,93,91,93,102,108,97,99,107,104,103,102,100,107,95,100,101,98,107,104,99,97,85,110,108,104,90,93,110,99,100,85,87,97,93,97,91,105,93,104,95,86,95,98,99,103,109,108,101,97,96,99,100,108,89,105,93,91,92,114,100,102,97,102,98,108,107,100,93,102,107,114,135,105,101,98,96,110,97,99,100,113,99,90,104,108,110,93,94,85,107,99,94,110,84,95,104,99,99,94,106,96,89,97,100,106,114,102,91,95,81,116,106,103,104,101,99,116,87,101,103,98,111,99,104,109,96,95,98,114,87,92,71,92,104,88, +391.814,90,105,86,102,88,85,91,86,84,96,95,100,98,94,84,102,93,92,121,96,95,87,93,90,109,97,104,95,95,106,99,103,98,98,73,118,94,106,91,95,84,97,85,87,131,96,117,83,105,97,84,101,100,96,96,92,96,96,98,93,83,94,107,100,72,101,103,116,97,96,106,104,104,94,94,108,90,98,113,92,107,92,98,97,95,94,97,110,98,96,97,107,105,86,91,91,89,88,103,93,100,92,102,101,99,103,104,99,114,89,85,106,97,95,101,105,102,97,102,104,96,89,99,113,96,102,96,111,103,93,103,83,88,91,101,94,101,110,105,95,102,108,94,76,93,96,98,81,96,95,101,84,104,92,86,93,102,91,110,96,94,113,105,95,100,96,103,91,92,101,101,92,93,89,100,84,95,97,105,110,105,94,97,108,92,101,102,94,103,91,88,94,111,94,93,98,92,102,98,106,88,103,99,101,101,91,95,93,87,109,107,102,100,101,100,108,111,98,100,96,113,97,99,104,96,102,97,96,97,105,105,103,110,90,94,95,104,96,103,92,91,101,105,96,96,90,101,111,93,109,97,103,94,103,98,112,103,96,102,105,96,105,110,84,88,105,101,98,107,87,95,99,90,106,107,96,86,106,112,101,114,99,92,106,109,106,97,109,113,97,106,99,104,98,97,100,103,91,125,108,88,102,92,108,99,106,113,99,81,104,92,94,106,92,106,101,107,105,102,101,100,84,92,101,96,86,98,102,102,101,105,91,90,111,103,97,102,99,96,104,107,96,98,97,101,100,102,101,107,100,88,94,97,88,100,102,99,97,102,108,72,95,91,90,95,89,112,102,104,96,85,70,98,93,97,105,87,90,106,101,107,104,106,99,91,103,109,101,105,101,100,100,92,102,100,94,106,104,97,109,101,97,84,95,65,100,98,100,108,67,83,90,92,114,96,95,99,91,100,108,107,100,90,108,103,95,80,99,102,112,104,107,108,87,100,102,100,95,105,95,107,96,98,98,98,101,96,100,103,102,110,100,92,114,99,100,98,88,104,113,102,94,99,96,105,116,104,99,91,97,102,98,98,105,96,99,101,108,108,108,101,109,112,99,107,107,94,95,93,100,108,106,108,102,97,99,92,97,95,102,103,116,104,90,98,95,97,87,108,96,128,95,95,109,97,82,98,105,114,99,99,113,105,96,97,125,93,98,102,104,104,103,101,91,97,109,105,92,101,100,98,101,86,98,92,113,98,84,103,120,104,106,98,102,100,98,100,102,90,100,100,90,80,101,96,86,87,100,95,100,88,98,100,104,107,105,103,101,105,82,92,98,101,89,97,99,91,99,109,100,98,95,95,90,136,102,82,103,101,97,100,101,74,85,97,88,95,104,95,113,96,101,105,109,104,92,98,98,97,95,102,96,95,101,95,88,107,91,101,104,97,105,99,109,82,102,103,92,100,107,94,108,100,94,110,100,91,95,90,118,99,87,105,93,92,112,99,99,97,97,117,112,104,104,88,97,104,99,95,78,92,99,110,89,94,96,101,91,96,100,99,106,96,103,90,93,90,97,99,94,100,94,83,105,105,95,107,105,96,97,97,97,89,82,91,98,101,94,96,103,106,95,93,85,86,91,110,94,100,90,111,94,92,92,104,105,101,93,101,105,90,106,102,108,97,99,99,105,114,85,103,83,95,95,108,97,96,84,97,109,107,90,98,86,103,103,99,91,85,88,111,95,92,97,92,100,104,94,104,84,110,90,98,95,94,86,96,88,94,97,98,97,100,109,91,90,97,99,88,96,95,101,97,101,97,89,101,87,94,99,97,112,100,92,98,106,102,92,103,96,96,107,100,100,104,91,97,108,94,92,90,110,97,104,96,105,118,108,96,79,98,88,102,91,98,73,99,93,94,91,99,101,96,91,109,109,90,84,90,95,94,93,95,100,90,110,96,98,99,93,105,87,129,95,94,94,101,110,105,100,113,100,87,92,109,101,110,91,107,100,95,101,102,106,94,105,103,104,106,106,102,106,96,96,104,105,108,103,99,110,98,98,117,80,92,92,90,96,94,101,100,116,96,100,102,98,87,100,88,113,96,89,98,87,106,100,91,98,104,91,93,98,107,95,86,109,95,104,101,96,106,95,106,100,112,106,104,93,88,91,101,102,122,106,91,98,98,101,103,100,106,100,106,104,102,101,93,76,96,100,93,88,117,100,106,103,96,104,100,119,97,90,92,96,90,101,86,97,91,90,101,76,105,96,98,91,91,93,96,96,93,96,103,97,95,108,103,100,82,98,83,89,90,105,91,108,96,104,99,92,99,97,114,94,95,98,99,97,98,75,108,114,111,87,92,100,103,112,96,97,100,98,83,96,104,103,88,98,96,94,86,85,92,101,89,98,92,89,92,99,94,89,106,85,101,88,97,104,97,92,99,113,71,96,100,87,97,109,81,99,99,97,95,119,113,100,87,106,102,98,104,107,104,90,93,98,98,91,99,107,109,93,100,102,90,100,88,108,93,99,98,90,107,94,100,85,102,95,90,117,101,102,97,103,79,96,102,96,108,120,87,101,108,106,91,104,102,93,98,97,109,99,94,95,112,87,93,106,99,91,107,103,102,92,87,97,88,109,99,103,101,93,76,102,110,95,106,92,94,97,88,94,94,107,98,100,107,105,95,104,115,104,91,102,105,105,94,115,117,112,96,102,100,109,89,104,93,82,95,111,94,109,107,100,113,98,101,103,92,109,112,104,98,106,113,109,102,102,105,106,105,102,91,85,103,100,102,96,99,96,109,97,105,102,99,90,98,99,101,84,113,104,102,101,109,95,98,115,100,107,109,79,104,104,88,92,92,108,106,92,108,99,102,99,102,99,106,104,102,109,111,106,112,106,116,105,94,100,98,111,105,82,83,99,98,105,104,107,109,96,96,98,94,109,107,100,108,105,102,94,108,87,101,115,93,116,115,92,88,91,97,97,103,101,108,115,99,84,83,99,90,104,97,91,95,101,112,109,100,100,91,89,102,91,109,105,78,92,111,101,115,94,101,111,101,96,96,98,111,100,106,113,100,111,92,112,129,92,101,86,106,91,120,93,101,102,102,105,98,106,96,99,100,85,93,96,100,103,98,105,108,85,94,97,108,98,98,87,88,97,101,85,101,93,110,108,109,105,97,94,103,90,89,96,88,99,107,86,104,97,95,99,104,95,92,91,101,91,103,103,108,104,84,91,87,109,80,90,93,102,98,103,84,97,104,104,92,96,92,95,104,100,100,98,102,104,101,102,98,93,95,94,106,107,100,113,98,96,104,87,117,94,101,100,114,102,100,101,96,104,100,108,102,95,111,102,93,101,99,92,121,98,98,96,104,111,95,105,83,99,105,101,97,101,95,102,94,116,107,88,101,101,108,106,108,106,99,109,91,92,101,84,101,101,92,101,108,84,89,97,98,105,102,99,102,105,105,111,95,102,100,110,102,94,91,109,99,111,104,89,97,99,102,99,79,110,121,105,96,106,108,103,103,87,95,98,105,98,93,107,92,99,111,109,102,105,103,106,91,95,104,102,99,108,79,109,101,108,87,95,96,87,104,103,100,101,112,106,101,104,103,97,109,112,96,101,106,117,102,103,95,106,103,107,102,101,96,96,102,96,98,101,98,108,91,98,107,100,113,100,95,114,98,99,100,91,102,103,99,100,92,89,92,102,97,91,102,104,99,91,103,91,105,91,92,104,100,99,90,107,95,100,94,102,91,100,114,95,101,98,105,96,95,100,98,101,120,91,101,95,97,107,99,102,109,110,113,104,82,92,109,111,116,105,91,110,98,100,97,113,107,110,104,98,101,94,116,105,99,120,91,109,103,108,98,102,95,98,107,102,70,74,88,96,101,104,114,95,97,96,94,101,99,84,109,95,104,109,96,107,101,81,110,99,87,109,96,104,99,98,105,106,101,109,95,87,92,107,88,92,99,101,91,97,107,96,99,109,107,99,95,86,65,95,105,96,102,102,104,102,103,95,100,104,104,106,99,99,107,102,101,97,82,106,109,107,90,100,101,101,101,89,101,98,105,106,95,105,104,101,101,112,101,108,112,99,105,118,95,105,109,100,96,100,102,111,135,91,100,95,102,86,89,104,107,94,123,101,93,103,97,113,110,109,92,97,106,91,94,98,105,105,95,100,102,101,95,108,103,105,108,104,111,96,96,118,91,83,105,96,104,101,97,111,110,84,91,102,102,89,94,102,101,96,104,94,94,99,93,101,102,88,104,91,97,99,98,91,60,89,91,108,91,107,91,91,91,104,96,115,97,105,111,97,105,90,97,100,102,101,110,97,88,102,104,91,105,88,109,93,94,108,109,97,102,103,99,85,104,105,102,97,105,106,88,94,105,91,100,108,85,92,91,99,103,109,87,102,95,96,106,86,85,92,97,82,102,88,98,93,103,92,102,95,102,97,95,90,105,101,101,101,111,103,104,94,102,91,96,97,67,103,95,104,99,90,96,106,91,98,87,98,95,87,100,94,102,105,95,92,94,106,87,93,99,101,84,111,100,91,104,103,100,102,79,102,90,95,87,83,98,86,104,100,103,106,104,87,106,101,99,101,96,97,82,94,104,101,117,120,90,87,117,99,100,104,111,106,104,127,111,91,115,103,92,98,96,99,96,104,98,108,98,102,105,104,105,93,91,108,84,109,104,100,101,98,95,96,106,86,104,98,88,97,91,98,116,99,88,80,97,106,114,96,107,99,89,99,97,104,99,98,99,80,96,98,107,100,91,94,96,99,97,88,89,94,90,101,101,96,113,94,97,97,90,98,93,91,109,94,103,111,97,87,87,108,96,94,108,95,100,104,107,101,103,93,103,107,84,87,101,96,79,96,98,105,87,93,98,93, +391.95407,93,116,103,99,97,112,88,101,97,103,100,108,101,96,112,95,115,100,96,99,117,91,100,100,103,107,93,99,105,103,96,110,100,113,112,87,108,99,92,106,102,93,91,92,99,100,105,100,92,108,102,91,101,107,103,99,99,94,105,91,91,97,98,98,91,108,101,100,99,97,88,109,111,73,92,101,87,98,100,96,91,109,101,95,96,100,102,102,100,101,97,103,114,100,89,93,104,96,100,100,104,96,95,103,94,99,101,99,94,109,108,107,98,88,91,105,94,82,94,103,112,89,105,108,118,97,96,107,102,99,90,101,94,99,100,93,101,85,101,84,110,81,104,94,89,101,112,97,99,99,107,105,98,107,89,82,91,105,98,106,93,91,99,103,104,110,103,97,105,98,85,96,98,103,104,98,98,105,102,105,105,104,110,96,102,99,89,103,118,96,97,102,98,101,92,112,105,77,94,97,101,100,89,98,108,116,91,95,101,82,91,103,99,113,93,98,89,105,101,100,91,105,106,105,73,100,97,106,99,98,95,113,99,97,100,129,95,105,99,99,96,99,102,104,104,105,108,97,94,106,106,108,104,105,106,104,92,110,94,89,93,93,94,111,91,106,104,125,107,107,100,105,105,98,103,102,98,106,82,106,98,95,92,99,105,101,86,102,103,101,99,107,104,79,109,91,98,102,97,83,100,117,99,100,105,94,95,109,105,99,95,104,96,98,110,91,117,99,118,94,98,94,85,113,100,94,108,97,115,102,112,94,103,100,86,103,92,108,105,100,99,92,101,93,99,95,110,99,105,101,92,94,112,100,102,106,90,88,98,107,91,105,94,104,101,101,94,101,100,105,99,106,102,90,108,76,97,105,97,101,112,101,89,101,107,81,97,91,91,92,93,104,106,100,88,97,92,93,103,100,97,100,94,123,99,114,109,103,102,89,95,101,105,103,105,96,128,93,90,112,100,103,108,102,102,96,95,90,88,99,110,105,103,100,109,111,102,106,97,100,107,111,104,92,101,100,101,103,102,116,99,113,97,96,101,97,105,98,104,105,112,102,106,99,89,92,99,100,96,104,100,101,121,99,97,95,97,108,101,95,94,100,106,105,103,113,103,86,110,101,115,100,99,97,101,95,95,100,107,107,106,86,95,111,107,105,88,94,95,99,98,120,84,104,101,106,100,105,101,94,116,96,99,102,99,109,84,92,87,88,94,112,98,92,102,90,107,91,99,102,96,102,94,93,107,101,92,83,89,111,95,98,107,94,105,101,90,94,96,104,87,95,84,114,99,95,94,106,106,104,100,98,112,90,111,103,101,89,99,96,122,116,106,96,89,92,110,98,93,98,109,112,97,91,113,115,96,93,103,79,96,102,109,108,88,100,89,81,97,113,112,117,86,112,98,78,103,98,110,109,97,96,100,96,98,96,109,108,100,94,105,97,105,105,94,110,95,106,117,94,106,110,99,98,98,90,101,101,97,95,103,106,109,98,98,99,96,94,100,98,110,100,87,114,105,102,100,103,100,96,102,91,95,82,109,100,82,93,111,96,98,110,95,94,99,108,104,97,93,106,130,120,110,112,101,104,112,96,101,103,104,90,94,101,120,93,104,96,92,93,94,74,97,103,87,92,114,110,95,96,101,96,101,96,99,97,105,109,87,115,106,109,92,94,97,96,104,97,105,92,101,97,100,109,92,87,110,97,98,103,103,97,93,90,101,97,109,98,95,116,95,97,84,99,113,104,98,111,103,100,96,108,107,97,88,91,112,94,91,103,105,95,81,102,107,97,109,107,79,98,104,98,109,105,83,96,93,89,104,102,105,111,121,99,97,99,105,102,94,89,117,96,96,97,100,94,109,99,96,101,96,110,103,89,96,107,103,95,96,96,96,108,111,101,105,105,105,103,111,111,105,103,101,105,90,106,96,87,116,73,97,88,104,101,101,103,95,113,91,97,93,104,104,100,95,98,88,110,107,84,111,110,122,115,100,88,103,104,102,105,101,100,84,100,94,104,90,110,117,87,118,67,116,103,98,103,100,95,104,95,109,109,100,125,99,98,81,91,95,92,111,95,104,103,98,104,96,103,102,103,110,106,111,101,92,96,98,110,90,114,97,95,94,112,103,82,100,96,107,87,91,109,99,94,103,91,90,96,98,97,98,95,109,104,95,91,119,97,98,104,104,101,110,87,108,110,89,105,103,108,103,100,108,92,108,102,98,97,103,105,94,111,93,101,84,109,97,94,105,102,97,101,93,108,98,89,102,108,94,101,100,92,96,91,92,110,102,97,94,103,92,115,95,99,103,99,97,101,95,107,101,104,102,92,88,112,104,112,101,105,87,109,96,96,108,85,104,109,105,99,102,118,85,100,105,92,96,105,93,102,96,95,90,108,93,112,92,91,96,102,106,101,104,107,97,96,104,95,102,95,101,94,93,102,102,100,116,97,95,97,104,99,96,104,95,83,115,105,104,98,100,93,87,90,96,96,95,97,112,109,96,90,109,105,99,99,91,91,103,99,97,92,99,95,96,104,97,95,96,110,109,96,101,96,101,103,100,108,101,96,104,107,94,97,92,96,96,101,104,96,104,102,88,105,98,103,100,102,93,99,109,99,104,107,111,84,107,102,96,101,104,96,103,94,106,100,99,101,103,98,96,102,93,105,94,105,96,94,98,105,105,100,96,95,97,103,106,88,96,107,69,98,102,98,92,98,99,113,103,94,92,101,102,99,105,101,99,90,99,104,97,96,112,100,109,109,95,95,88,103,95,103,107,117,101,105,115,95,103,95,100,103,104,100,102,90,90,101,101,98,100,98,106,88,104,95,112,113,91,91,93,83,98,105,93,108,96,106,106,102,109,104,113,97,109,87,113,91,107,104,100,105,101,105,121,97,97,95,90,102,109,94,107,103,87,106,94,98,101,105,97,102,82,99,102,96,93,89,100,101,104,92,87,109,93,100,110,106,103,89,97,91,94,91,92,108,107,80,96,98,109,96,108,108,116,106,94,106,93,90,98,90,105,100,98,80,102,107,104,92,96,109,98,92,102,99,96,92,101,97,96,105,95,93,104,99,99,97,83,76,93,103,95,95,115,94,97,101,96,104,107,92,88,105,87,91,105,95,96,91,106,94,92,104,97,104,101,103,92,102,114,97,101,99,97,100,92,94,93,100,95,106,99,105,94,115,93,103,109,99,99,98,106,93,91,101,87,106,101,97,106,103,88,92,100,98,94,111,109,104,102,90,109,94,99,102,110,119,108,96,101,67,101,97,91,103,100,101,106,109,95,94,99,100,103,118,102,105,101,96,103,105,102,94,98,101,88,93,102,99,91,109,95,104,106,92,99,100,94,105,95,102,99,95,101,100,104,89,94,68,95,102,104,95,101,90,92,104,101,95,93,108,100,90,95,99,104,95,113,99,99,92,107,96,110,102,114,96,101,105,93,95,111,104,98,85,99,109,98,94,103,95,102,117,96,105,101,74,95,100,102,103,106,99,100,106,92,94,95,110,115,104,81,108,101,105,104,100,97,100,91,113,109,103,106,114,96,100,104,111,104,94,104,98,90,101,108,94,96,94,96,100,95,99,89,98,105,96,96,94,99,111,97,102,96,104,104,103,92,109,101,101,106,101,100,90,89,88,108,99,92,98,97,86,88,90,128,101,104,70,99,102,91,103,96,93,93,103,99,89,103,105,100,86,89,96,113,101,91,70,96,96,75,94,93,91,100,101,91,116,93,86,111,101,98,91,101,92,105,99,93,93,105,97,100,107,99,84,91,94,98,99,93,108,103,91,92,114,97,110,95,105,105,88,98,82,101,106,90,102,103,97,102,107,101,101,94,108,103,99,104,94,100,123,96,122,101,116,93,102,95,98,95,88,93,87,60,76,88,72,96,100,100,88,100,94,95,96,97,105,108,110,103,104,111,109,101,92,100,102,90,98,94,109,102,98,96,113,116,104,98,84,105,101,113,107,87,87,100,105,93,84,104,112,101,96,103,117,104,104,110,103,108,112,96,103,105,107,81,104,100,109,98,98,102,104,105,105,78,79,100,93,94,99,91,102,91,109,96,99,88,96,107,87,108,96,96,102,95,118,91,109,99,100,95,105,107,109,103,107,102,105,106,107,98,103,100,110,98,105,95,86,86,92,103,91,103,98,93,105,95,105,107,102,105,100,92,98,107,125,102,110,102,95,92,103,103,64,102,94,99,102,99,84,91,111,101,99,114,96,97,93,99,108,96,100,107,97,111,98,114,103,99,108,118,111,116,87,90,105,99,107,96,101,96,97,97,84,100,100,105,108,101,94,99,93,88,90,98,103,98,95,103,105,93,100,106,92,100,103,100,111,109,94,110,91,103,125,94,85,108,97,93,101,92,93,108,83,106,95,95,94,113,108,96,113,76,99,109,99,100,120,94,104,96,101,88,97,87,92,95,91,106,106,112,93,110,130,102,104,91,95,107,101,100,100,91,106,99,100,98,63,87,94,100,97,78,94,99,97,97,86,97,111,106,102,99,114,100,97,107,95,93,97,94,98,98,97,100,83,105,83,107,94,93,88,101,98,89,98,99,107,107,115,80,100,110,92,106,107,84,112,93,115,92,109,113,102,84,98,103,95,104,102,99,104,95,90,95,106,97,103,103,92,107,118,99,93,95,104,95,93,96,106,122,106,99,95,108,94,97,98,97,101,105,108,94,95,100,96,96,87,81,106,94,87,97,83,97,110,116,95,96,103,100,91,107,90,93,99,90,103,104,92,101,97,99,113,106,99,88,91,83,90,109,89,105,111,101,99,99,111,101,110,98,79,92,88,99,102,100,99,102,104,113,112,99,96,95,93,100,100,98,92,101,87,98,95,102,100,95,97,105,96,99,86,87,98,95,99, +392.09415,112,79,94,106,82,82,116,97,87,92,113,75,79,106,104,105,90,113,112,99,92,105,85,118,98,96,102,90,110,107,96,91,96,95,88,99,106,101,104,85,85,100,84,95,95,100,99,91,97,100,92,91,98,107,98,98,96,87,109,97,114,101,100,102,99,101,105,106,88,98,100,102,90,101,94,107,103,100,114,105,97,91,100,95,88,103,109,99,99,92,101,110,112,95,96,112,100,95,90,105,81,91,105,101,91,97,109,104,95,105,83,99,106,100,91,115,101,92,111,96,104,87,87,95,93,90,83,77,111,97,93,128,101,107,106,96,100,98,106,107,95,94,103,102,99,112,97,102,101,105,91,92,91,87,97,108,91,105,112,98,108,105,104,100,90,106,99,100,105,99,111,109,106,100,95,87,102,96,103,92,106,97,100,95,96,106,95,84,113,100,108,95,104,107,99,106,85,119,100,101,87,95,98,105,98,107,93,96,105,83,101,110,101,80,100,90,80,95,98,97,102,89,104,99,98,107,98,103,104,109,100,89,115,82,103,103,85,101,106,86,91,103,105,103,93,91,108,105,118,100,85,101,94,118,89,101,104,87,105,100,96,105,106,104,84,104,95,95,98,103,97,107,97,109,114,98,93,94,105,90,103,103,99,100,83,110,90,101,120,97,103,78,91,94,97,111,68,100,94,97,97,104,100,101,102,92,99,103,103,117,94,100,89,104,90,106,99,95,108,99,102,95,101,102,105,92,97,95,104,101,102,86,105,95,105,105,86,99,95,101,105,95,99,100,100,107,97,124,85,101,104,108,106,104,97,107,92,98,93,96,100,108,105,97,95,92,99,106,98,100,98,112,105,93,109,94,110,69,110,97,111,104,92,100,101,102,100,98,84,97,108,93,91,94,96,99,103,93,110,93,97,95,94,115,105,92,93,96,90,94,97,101,101,103,108,97,104,98,112,98,80,102,96,98,91,94,92,93,96,100,95,112,108,103,105,95,92,97,94,93,86,104,115,104,98,88,92,83,105,109,106,100,89,109,106,99,94,105,102,105,89,89,96,100,82,104,100,95,93,109,106,98,89,98,96,92,90,99,108,101,95,73,95,88,106,96,106,87,100,90,106,106,109,107,92,90,96,97,98,90,106,86,99,100,99,99,87,92,97,103,94,99,93,98,91,75,91,91,106,91,90,94,106,96,111,91,102,107,100,101,103,103,77,110,87,68,109,97,115,103,101,95,96,96,116,96,97,82,100,104,109,107,108,93,101,86,105,111,89,97,102,102,99,106,102,96,87,105,97,105,94,88,104,97,98,87,95,96,96,93,98,86,114,102,101,95,101,104,106,94,113,95,104,100,94,107,109,98,105,102,97,90,100,86,92,106,93,101,87,102,101,91,101,101,117,96,103,95,99,89,103,103,95,109,106,90,109,91,106,91,97,121,89,90,98,110,96,111,101,99,97,106,84,97,94,94,96,104,95,104,104,108,90,97,99,103,98,105,107,106,112,99,101,105,105,97,108,89,106,98,102,98,100,95,84,103,102,91,110,91,99,105,111,99,94,94,95,98,89,95,101,98,99,90,103,98,94,96,108,92,91,94,93,96,105,105,103,93,104,95,100,104,96,98,101,98,101,93,101,96,96,94,95,92,90,86,99,105,100,112,106,109,103,94,84,106,105,100,102,100,101,108,108,100,94,102,101,106,108,105,104,99,97,100,108,98,94,105,101,98,93,92,94,98,96,103,103,99,99,94,93,115,108,105,110,110,76,109,106,92,108,105,110,100,96,107,94,98,100,86,104,93,95,103,96,103,104,97,97,113,99,98,104,105,105,104,82,100,107,111,102,88,102,112,99,106,104,104,105,115,95,105,110,92,100,93,95,103,99,95,100,96,105,101,93,99,103,95,105,114,102,97,102,97,95,96,89,86,81,84,105,94,96,101,111,80,85,109,87,108,101,111,97,103,106,100,98,96,94,107,88,108,103,94,95,95,95,88,101,103,103,112,101,105,95,90,92,101,91,99,89,112,109,97,96,86,98,101,103,96,96,99,100,102,97,106,94,81,102,97,95,104,108,105,94,87,89,112,92,96,101,106,105,79,97,95,89,88,107,99,94,103,102,95,98,94,103,79,101,105,96,104,104,100,90,85,105,88,97,105,90,93,100,97,90,104,95,97,100,97,97,108,102,99,91,101,102,108,95,102,94,97,90,112,93,86,104,86,99,82,90,91,95,106,101,95,110,96,97,125,93,102,103,100,105,105,103,94,105,98,103,108,103,83,101,103,97,107,101,100,88,99,93,111,102,114,87,94,98,100,100,93,101,91,114,100,102,100,98,96,102,101,120,92,103,95,97,101,98,92,97,95,102,94,90,95,106,109,87,101,107,102,92,104,97,92,102,91,71,94,110,108,96,92,97,100,96,95,96,97,100,99,93,96,89,84,97,101,105,95,93,87,93,92,67,94,92,81,100,109,105,92,100,90,118,97,86,106,102,80,100,99,102,109,94,110,106,101,105,102,105,106,104,97,102,96,110,90,92,98,83,105,103,102,93,100,91,102,99,102,109,95,100,93,96,102,98,88,93,93,94,93,91,106,97,89,98,99,103,93,112,87,111,100,99,100,108,101,101,106,104,105,87,89,90,102,88,105,103,95,98,87,105,106,111,100,83,107,100,106,100,108,97,113,94,105,102,90,103,91,95,102,97,93,88,106,98,95,98,87,99,104,100,113,103,102,90,102,100,109,94,91,87,107,124,94,96,92,117,102,103,110,93,104,103,103,94,110,107,87,87,100,102,99,92,96,83,104,102,100,104,90,101,95,94,107,103,102,100,103,95,91,113,111,83,86,103,100,107,112,103,99,87,104,116,92,87,99,109,99,107,102,107,109,102,91,111,95,106,103,91,108,105,94,90,101,99,100,104,96,91,100,105,106,97,98,97,105,100,98,99,94,96,109,101,106,99,101,103,92,83,96,115,88,102,114,90,121,105,100,108,104,103,100,100,102,67,104,102,90,98,99,90,99,94,101,105,96,91,89,101,105,102,102,105,105,97,87,106,99,112,94,84,92,88,113,98,102,102,86,88,107,100,105,103,102,108,102,103,99,98,105,100,104,96,106,91,84,96,95,103,93,102,96,90,100,87,96,104,100,100,107,92,104,101,100,106,97,101,105,112,110,100,102,100,101,102,93,104,95,88,107,116,89,100,99,102,100,100,102,104,102,99,78,100,61,84,117,99,111,122,97,110,100,110,102,99,108,98,107,93,75,101,76,95,103,98,101,100,93,106,93,98,99,108,117,117,100,96,102,104,98,95,97,106,102,109,110,94,95,83,95,105,93,100,98,122,97,92,102,92,99,90,105,95,93,99,91,90,100,95,99,105,108,101,109,93,95,112,95,102,109,111,109,100,99,107,103,92,100,103,104,106,95,109,106,94,96,104,93,110,100,92,90,91,94,100,91,105,96,91,99,104,95,132,106,106,108,107,97,106,96,104,106,112,105,99,102,113,90,96,105,97,105,102,101,105,97,96,102,97,93,86,103,93,91,96,111,102,105,92,99,91,108,104,97,113,113,107,97,91,98,92,99,89,102,96,112,110,96,96,101,110,100,95,111,107,108,99,114,82,95,108,92,103,90,100,87,107,97,93,92,105,109,97,87,102,98,97,97,94,107,102,92,93,98,97,96,94,96,95,93,100,111,107,102,96,98,89,103,89,106,94,95,102,103,93,103,102,107,84,101,97,88,71,96,100,92,103,102,95,100,99,99,92,97,86,98,106,98,99,101,102,104,93,95,96,106,77,95,114,107,102,94,91,95,97,104,91,104,105,91,93,97,106,100,105,91,102,99,106,100,101,117,77,104,97,102,98,96,110,76,97,92,99,100,102,99,97,101,104,101,95,103,97,89,101,91,104,93,108,105,97,106,98,106,95,94,85,95,88,90,97,107,100,94,96,100,107,105,106,99,78,98,102,98,102,110,106,102,103,103,80,107,104,99,93,96,108,101,111,112,107,99,83,99,112,97,107,100,95,105,101,92,95,89,101,103,96,107,96,99,104,80,98,104,103,96,102,115,111,110,104,108,99,99,95,100,99,110,103,104,101,101,123,114,86,92,91,103,101,105,84,105,104,104,94,96,95,105,105,100,101,91,93,103,106,109,107,91,114,109,113,98,107,103,100,97,93,102,99,101,101,108,93,106,101,94,97,103,87,97,104,100,94,106,103,95,95,91,97,92,99,98,105,102,96,108,97,109,94,97,106,98,88,100,106,95,104,100,102,100,97,92,97,99,106,91,100,103,103,115,103,91,104,103,102,99,108,81,91,98,115,99,104,103,97,97,98,93,96,96,106,99,101,94,105,106,109,102,94,103,99,96,94,103,102,98,104,104,94,89,98,100,89,103,85,108,105,100,116,103,97,77,96,108,99,100,98,124,101,96,88,105,101,87,96,107,112,101,85,96,97,103,106,115,107,97,98,102,100,108,94,105,106,87,87,97,94,89,89,101,85,94,98,101,96,102,100,107,98,130,90,112,93,95,79,97,113,113,113,69,113,101,87,94,113,101,105,87,99,106,100,106,100,101,108,97,101,118,84,102,103,104,98,107,95,108,101,94,92,94,101,102,91,92,112,105,99,79,104,95,92,97,90,102,109,105,93,88,92,91,105,94,97,93,102,105,101,99,103,101,98,107,103,92,101,96,98,81,98,91,79,86,114,113,106,97,96,105,102,102,94,100,90,103,99,110,108,100,102,104,107,97,105,100,110,95,102,85,105,103,98,87,96,87,93,106,101,93,106,101,93,80,100,114,92,81,106,92,98,97,103,106,102,103,111,107,117,78,99,85,113,99,88,105,99,83,100,96,101,103,97,110,82,85,102,100,90,101, +392.23422,104,88,100,100,101,101,91,111,82,88,97,106,101,106,107,110,98,93,99,99,102,93,73,107,90,100,110,100,121,114,88,99,102,71,108,109,95,85,100,92,89,99,79,97,97,98,103,92,82,91,103,102,98,105,98,89,109,113,96,88,109,102,78,102,100,104,99,104,93,94,101,101,99,95,89,107,105,103,104,104,91,96,111,89,95,98,98,107,94,96,97,95,99,99,90,115,93,104,93,96,92,70,91,102,98,96,90,100,97,104,99,101,95,100,95,99,99,119,99,97,91,95,105,104,80,109,113,87,118,104,104,91,90,114,96,98,102,100,91,95,88,99,80,100,97,100,114,102,89,94,92,102,111,80,115,110,111,83,92,106,109,88,100,95,118,89,106,97,92,96,98,95,95,101,98,102,82,93,103,83,102,87,99,103,91,86,89,88,100,96,97,95,105,96,95,100,97,90,101,90,106,93,99,94,94,113,105,101,112,88,98,70,90,101,99,101,95,105,91,99,92,98,104,96,102,107,110,112,105,100,95,87,98,105,100,121,107,103,108,104,101,95,104,96,94,101,93,109,106,102,97,110,109,94,94,106,91,103,89,105,91,89,104,103,89,103,106,101,83,106,96,96,96,95,107,104,97,102,95,94,101,100,113,98,92,112,92,103,110,94,102,78,105,102,107,106,109,98,95,103,93,102,107,101,103,100,96,104,101,104,97,108,100,93,105,100,96,106,100,87,89,95,112,101,95,95,99,95,112,100,98,95,94,109,108,110,99,101,93,106,91,106,105,88,110,104,109,95,98,109,113,97,107,109,90,95,112,94,110,101,98,104,103,93,105,113,99,93,105,106,99,103,103,93,105,97,104,109,96,99,99,105,95,82,105,96,102,98,108,96,94,87,98,92,109,105,96,84,104,92,105,99,105,90,87,91,93,108,108,93,97,102,101,113,101,91,94,92,96,100,97,104,91,103,93,94,112,96,100,100,102,103,114,93,99,105,91,107,109,86,108,98,98,97,92,96,94,101,101,103,84,94,104,90,102,97,84,103,101,101,91,100,96,113,96,109,98,97,100,96,99,100,99,103,98,95,101,104,102,92,109,117,109,101,99,96,99,91,102,93,100,111,101,92,87,94,100,100,106,109,97,106,96,98,99,96,104,94,111,104,100,109,102,96,97,108,93,89,99,99,98,108,98,108,106,103,103,90,100,100,102,97,105,110,102,96,90,102,123,110,105,98,106,99,104,109,99,100,93,111,98,106,97,96,86,102,107,95,83,96,98,98,93,112,104,102,109,91,99,109,101,91,102,94,99,87,103,84,94,105,103,97,105,90,95,103,106,102,103,86,108,119,85,99,117,97,104,106,93,97,101,92,109,106,99,96,101,96,106,95,91,83,110,106,113,96,96,101,112,102,101,96,100,96,119,114,81,96,92,92,106,104,104,109,100,102,99,105,112,92,99,94,95,97,134,90,99,92,109,111,101,99,93,95,91,96,106,114,97,98,106,121,103,89,92,99,108,101,108,97,103,105,105,101,95,112,109,98,102,114,108,105,110,93,85,87,96,102,106,92,87,113,105,105,105,97,91,101,94,92,106,95,97,95,94,103,99,96,87,99,101,97,83,86,91,98,94,91,97,92,94,96,91,104,98,92,97,100,82,109,107,129,96,105,99,109,96,104,99,96,97,96,97,94,109,88,105,89,105,90,90,99,101,101,109,126,99,103,86,100,97,89,108,112,97,95,98,96,103,96,110,101,93,87,97,99,93,94,99,94,98,92,102,101,97,103,95,108,102,91,102,100,103,81,102,105,105,92,106,98,90,96,90,88,115,104,105,113,105,106,112,110,101,106,103,99,101,103,104,91,91,96,92,132,100,113,96,99,102,88,99,83,110,91,100,94,98,102,99,109,101,105,106,105,100,98,106,107,101,110,104,90,111,95,98,100,106,103,97,101,104,87,110,102,104,99,95,103,99,102,91,95,98,109,101,98,101,99,100,100,106,101,94,101,107,105,93,113,115,106,112,101,100,99,102,99,91,97,98,102,100,117,108,94,80,103,92,105,84,101,103,110,99,91,104,81,98,100,94,87,93,114,102,112,94,104,92,102,93,98,104,101,103,101,82,81,93,104,101,107,112,99,106,94,93,115,104,102,132,98,104,92,105,91,90,100,103,91,105,101,98,100,109,106,106,102,91,87,101,98,101,93,91,105,94,97,128,89,93,97,105,91,87,88,76,90,95,101,102,98,89,88,98,97,86,100,84,110,86,105,92,97,88,87,108,123,122,72,98,101,95,111,91,128,93,101,100,95,95,88,100,99,81,97,113,103,107,101,98,95,98,87,97,101,100,101,99,93,95,95,85,96,112,108,94,88,108,95,102,102,101,98,99,94,93,65,93,95,90,96,94,93,94,90,94,97,97,101,99,112,92,111,93,81,109,90,92,75,83,91,109,101,97,103,91,102,94,85,109,112,80,103,95,86,85,99,96,103,102,88,94,96,97,97,100,99,94,110,97,90,94,104,97,96,91,89,83,96,87,108,92,103,88,86,106,96,98,92,105,98,96,98,112,84,105,103,104,92,102,99,95,94,95,113,106,105,111,94,100,85,121,94,98,119,92,111,99,127,89,91,106,102,113,113,101,100,107,91,103,109,98,99,106,102,103,83,101,104,108,88,103,90,93,95,89,97,115,98,98,100,95,93,110,96,98,110,98,93,99,98,101,106,97,106,95,99,96,102,112,104,96,107,106,115,105,107,80,97,105,104,98,111,102,107,106,111,95,107,99,100,105,102,99,96,109,109,91,111,100,108,96,103,105,92,99,98,105,97,100,103,106,107,98,108,105,114,84,95,95,112,102,109,116,103,95,92,94,94,102,112,108,105,106,99,100,102,124,94,87,105,95,92,103,103,104,97,103,73,95,104,110,102,94,93,98,118,95,89,108,111,102,100,99,95,107,111,101,101,102,96,87,100,94,94,106,99,101,101,98,99,91,110,105,102,102,96,105,98,101,101,98,94,77,91,102,106,97,111,95,93,99,87,108,94,108,91,101,93,102,113,101,89,106,92,96,109,105,97,92,110,103,81,87,101,124,94,95,93,91,95,96,104,110,107,96,92,102,113,92,102,105,92,95,95,104,101,94,106,101,99,91,97,86,103,106,97,89,103,101,101,102,104,89,105,101,94,105,89,104,106,101,94,102,102,98,84,109,99,97,110,100,107,103,91,99,90,109,99,105,73,88,100,100,106,103,103,100,108,98,92,99,99,95,94,98,96,100,102,93,111,99,106,92,109,90,101,96,94,103,96,96,97,101,108,98,96,94,88,95,84,97,96,104,104,100,102,101,104,105,105,83,93,90,106,96,97,113,99,98,88,96,105,95,111,91,106,99,106,101,102,98,78,94,98,95,104,113,109,85,99,102,96,105,110,90,94,93,102,95,104,97,98,110,93,99,105,102,107,99,102,102,99,103,101,87,102,97,107,106,96,108,116,103,100,111,91,82,97,99,90,94,116,87,115,102,100,94,108,99,104,101,94,96,97,92,111,83,102,99,106,99,102,105,105,80,104,108,100,111,98,92,94,96,103,104,103,91,106,106,99,99,106,95,92,98,103,102,96,94,94,98,109,104,113,99,83,89,106,98,97,111,106,105,104,94,99,92,96,94,96,109,108,97,120,96,94,101,104,83,92,112,99,100,94,96,96,95,108,102,100,109,101,106,96,93,98,104,92,113,100,109,101,96,119,107,104,105,96,100,102,100,95,104,90,92,99,91,102,111,100,111,109,108,105,103,100,98,93,101,101,101,98,95,92,109,98,105,87,90,106,98,104,94,97,102,104,93,98,106,92,104,104,97,95,90,97,103,95,100,97,100,101,100,107,95,96,101,88,95,95,101,98,123,105,100,98,104,95,100,108,95,101,98,97,101,117,101,105,99,102,98,106,88,102,92,103,98,106,95,71,100,109,102,100,104,91,99,100,91,101,104,101,96,101,106,100,91,99,111,108,102,90,113,98,100,98,76,104,91,99,102,95,96,99,99,92,102,100,102,87,95,79,97,98,89,108,111,101,96,89,108,117,103,104,105,107,96,110,96,111,107,93,100,108,114,92,103,81,99,96,100,81,98,97,91,95,100,105,101,110,97,108,104,99,97,103,102,87,97,82,102,87,94,104,98,107,106,106,89,109,113,97,99,101,102,99,103,102,104,107,104,104,101,95,96,100,111,107,88,74,79,108,105,91,98,91,85,103,112,96,108,110,104,98,109,103,89,69,105,95,104,95,100,90,108,103,98,105,91,110,98,100,109,108,97,115,91,98,107,103,106,100,98,82,121,100,104,103,100,106,107,106,107,111,97,100,106,105,97,90,96,98,113,76,96,94,98,95,113,99,89,100,106,93,90,104,111,101,91,99,108,105,102,96,97,93,125,91,94,100,102,90,94,108,114,94,96,109,102,95,100,78,99,92,88,99,100,93,99,92,89,98,100,98,98,89,105,106,115,89,92,97,96,97,100,93,99,100,92,89,96,100,96,93,99,99,108,87,97,92,96,87,105,97,99,113,98,102,102,101,98,90,97,86,116,92,99,81,102,111,100,105,86,105,103,86,103,107,104,91,109,100,116,102,106,91,106,89,94,101,101,98,96,102,94,81,95,118,100,104,93,109,102,93,102,84,107,108,106,97,106,103,94,118,107,97,94,95,60,105,111,105,108,97,91,96,103,103,104,91,96,99,95,112,92,99,96,103,98,92,106,101,105,87,79,103,104,67,94,102,95,103,126,94,90,98,91,96,103,104,105,106,103,91,92,98,97,104,108,114,89,94,111,100,100,92,101,98,106,92,92,93,101,94,96,101,93,99,103,93,102,96,88,81,94,103,104,100,96,120, +392.3743,101,93,101,94,109,103,106,92,99,107,100,96,97,94,94,100,106,92,102,97,109,97,88,85,110,105,98,98,114,105,87,101,105,88,97,97,109,84,107,104,61,102,97,101,76,109,100,112,104,94,110,104,102,69,122,91,94,83,96,97,85,101,95,94,91,101,96,102,101,110,98,107,93,99,91,105,89,90,94,101,99,91,98,97,98,92,104,100,96,103,95,97,106,85,91,90,110,107,71,105,101,87,91,93,103,96,100,91,104,96,104,105,103,95,100,112,104,95,100,74,98,101,100,100,96,86,103,75,101,100,101,98,88,99,102,101,101,98,101,96,104,107,84,106,85,86,104,102,96,96,99,91,116,99,96,95,103,96,97,90,106,100,105,99,86,93,95,98,97,96,92,103,93,94,107,96,82,114,97,90,94,103,94,105,109,99,99,99,100,89,91,112,103,103,96,94,96,105,77,101,95,103,89,105,86,100,92,106,100,91,101,106,96,94,102,105,98,97,101,107,94,105,105,108,86,97,98,91,94,93,102,100,113,101,99,105,97,91,98,106,96,100,109,93,101,112,98,95,102,99,100,108,91,110,92,99,86,99,119,94,74,108,102,102,98,106,99,99,97,95,109,105,104,99,109,106,100,106,116,98,105,104,93,94,104,90,90,95,102,97,92,118,97,104,109,99,101,110,81,100,92,107,106,95,94,97,99,120,109,109,95,99,104,90,107,94,103,95,95,101,94,105,121,95,103,86,115,93,99,108,114,115,101,95,108,105,103,104,100,104,68,64,93,90,101,96,96,90,128,104,110,90,98,90,96,105,117,98,101,98,95,109,108,91,104,89,100,95,103,99,91,94,100,99,91,91,90,100,94,100,104,95,90,101,108,106,97,90,93,92,105,92,100,114,114,100,103,91,82,104,103,96,97,100,108,110,105,99,95,81,104,88,96,100,78,100,101,86,101,101,98,110,94,113,92,106,105,96,99,101,99,106,101,100,87,104,93,88,105,101,110,103,120,98,97,105,113,96,100,103,94,121,97,96,98,97,94,100,111,103,115,97,97,110,102,106,101,96,117,89,101,90,119,109,91,102,75,96,103,105,89,103,104,94,109,93,109,95,101,110,98,91,100,103,98,102,97,101,94,97,115,110,107,99,93,100,88,91,99,96,106,93,96,94,96,91,96,105,107,100,94,94,110,114,100,100,121,128,105,101,104,101,93,102,99,109,112,97,96,108,104,84,101,97,87,78,99,110,102,98,93,96,102,100,88,94,103,97,87,104,90,106,100,110,106,107,95,107,92,91,101,98,111,96,97,112,100,103,97,92,101,99,101,94,92,96,101,93,93,102,92,113,97,90,105,85,101,94,108,93,100,98,106,98,94,94,95,88,104,91,99,93,100,104,113,109,100,109,112,84,80,91,96,105,95,102,96,96,98,103,77,91,101,103,102,118,98,92,105,84,99,98,106,100,98,86,98,95,97,102,97,94,106,99,100,108,110,117,104,99,103,88,107,92,96,99,117,92,106,103,113,93,102,95,90,99,99,99,102,80,95,108,103,97,91,98,104,98,101,108,92,103,92,115,92,109,101,94,109,91,97,95,100,94,100,96,93,101,94,109,98,106,106,94,103,94,96,100,93,90,91,94,104,97,98,94,81,109,109,94,105,101,95,107,78,105,101,109,107,101,108,99,98,89,93,110,99,103,106,97,99,97,96,98,114,99,99,109,104,102,100,98,102,86,90,101,100,91,104,98,97,104,107,107,101,93,97,92,105,127,95,112,106,110,98,96,93,110,87,118,101,96,104,108,105,97,103,113,89,108,103,110,91,96,99,94,113,118,100,104,130,95,103,103,105,101,94,102,104,100,105,101,86,109,105,96,95,88,99,100,118,86,104,72,104,80,108,100,96,106,99,99,106,104,103,101,95,93,92,79,88,106,98,103,89,103,109,103,96,102,92,100,100,100,105,98,89,102,101,99,94,94,99,93,100,100,97,94,96,91,88,99,104,100,99,107,106,84,109,104,100,98,101,111,105,95,95,91,103,95,117,100,97,98,100,95,94,92,102,96,84,95,102,107,94,113,109,91,113,101,99,98,100,100,109,100,101,103,96,107,106,109,91,108,90,83,97,99,99,103,102,99,97,109,102,92,92,85,112,104,87,108,106,84,94,105,100,103,102,107,109,107,117,96,100,83,97,94,100,90,107,117,107,106,97,103,89,103,92,97,95,97,100,89,104,103,93,107,108,100,105,98,91,94,104,97,95,110,101,103,99,98,124,100,96,104,108,100,105,102,98,96,95,107,93,97,100,110,99,101,97,99,100,93,113,102,95,98,94,86,106,95,94,98,103,100,96,111,105,98,95,96,99,90,102,95,94,92,99,108,97,102,110,115,95,99,93,95,87,98,90,110,83,101,100,98,82,117,94,92,97,109,97,102,83,101,97,104,97,104,114,84,96,101,97,106,101,99,106,97,96,112,94,98,85,100,96,87,94,97,133,105,91,101,98,107,109,88,90,105,100,103,107,100,94,94,87,97,93,106,95,74,96,109,92,102,102,95,116,102,108,103,97,94,97,95,86,78,88,85,91,88,83,103,83,102,91,96,100,84,103,92,120,93,108,94,90,107,95,90,103,92,76,95,83,106,105,101,101,89,93,87,88,91,93,94,84,101,94,96,95,83,95,93,99,100,106,101,96,112,91,95,87,84,77,106,105,88,91,100,100,92,75,89,88,99,93,95,79,89,102,103,94,98,103,105,87,94,102,106,105,99,107,106,93,104,94,111,96,94,96,95,95,100,93,91,102,98,98,109,95,105,103,92,83,94,101,118,97,88,108,103,90,98,88,85,96,83,102,107,97,99,95,94,85,83,100,104,102,96,105,106,108,101,98,99,89,104,76,100,95,100,105,100,87,96,88,84,102,99,106,99,86,96,104,101,99,104,90,90,99,94,121,109,89,96,100,100,93,101,106,86,86,85,99,114,100,94,112,117,103,91,92,101,105,103,85,99,113,86,106,112,87,96,101,96,96,101,99,99,93,115,94,94,104,103,119,91,98,92,87,95,97,94,92,100,97,91,99,82,101,113,107,97,93,86,106,101,97,101,94,112,95,99,95,103,92,85,94,93,101,91,66,106,98,98,81,94,102,95,98,101,85,98,107,109,95,100,97,105,87,87,98,109,109,85,90,89,91,103,98,81,111,104,97,100,109,98,94,87,101,103,88,93,98,93,94,101,111,109,96,88,98,102,107,114,104,103,105,96,100,90,93,96,96,92,105,88,106,99,87,95,101,92,99,117,102,95,110,103,95,101,100,107,91,84,102,92,104,104,99,99,112,103,99,98,97,100,102,97,101,101,105,100,100,104,103,91,109,87,100,100,96,99,96,92,73,95,103,100,90,124,96,101,94,92,104,96,98,118,97,98,103,93,97,122,101,97,107,100,96,105,101,98,103,100,99,100,100,97,103,108,95,96,109,106,92,91,90,87,102,98,103,111,106,115,101,87,100,90,109,100,103,117,94,93,104,85,86,103,115,98,97,101,107,104,90,101,87,92,102,108,99,90,126,100,93,102,101,99,81,101,101,108,100,94,102,108,102,106,83,97,111,98,92,106,104,95,100,116,109,92,99,128,107,88,105,94,115,97,72,97,97,108,92,96,101,101,100,100,100,115,94,98,79,90,108,95,97,108,91,100,105,101,86,105,106,91,99,104,94,99,102,103,91,101,99,107,98,101,104,95,92,97,101,101,98,101,105,92,103,98,97,104,112,112,100,102,114,97,107,105,87,102,95,99,101,102,102,103,107,105,103,90,103,80,92,88,106,99,103,95,99,96,94,102,97,106,121,96,99,105,100,105,102,111,89,110,112,106,100,100,92,102,100,94,94,99,93,95,99,101,103,112,96,96,100,99,91,99,98,104,96,99,94,102,92,90,98,103,100,96,110,100,86,94,105,105,94,97,98,96,103,91,95,109,87,93,87,110,101,101,112,105,101,97,93,106,133,100,108,92,105,96,111,112,95,104,109,101,99,108,100,89,111,122,96,89,98,97,116,89,91,96,99,115,104,105,97,98,98,99,94,107,104,103,99,98,81,100,97,94,101,99,109,91,93,101,91,104,101,97,101,100,98,99,91,98,101,92,100,99,96,92,95,104,99,98,93,110,103,108,95,90,97,105,94,108,107,103,111,104,92,102,99,92,99,98,99,96,103,107,94,99,102,88,107,114,112,103,95,94,112,106,109,103,94,95,103,97,89,88,106,98,85,94,75,107,98,94,94,110,100,97,92,96,84,99,106,97,70,101,100,92,102,104,102,100,106,90,102,102,101,103,99,96,96,99,97,102,98,99,104,112,101,106,103,96,108,94,95,109,97,109,94,100,105,84,109,94,86,95,102,101,100,105,106,98,108,91,96,88,88,90,90,107,92,103,95,109,103,93,82,97,92,87,95,109,119,96,95,91,104,105,94,98,89,104,91,113,106,88,75,105,98,95,92,100,105,103,91,92,83,94,110,100,94,76,91,90,94,101,83,99,103,84,104,100,101,89,83,105,98,81,91,94,98,100,89,95,104,90,91,118,109,91,96,81,99,92,105,98,88,92,95,101,80,103,104,87,102,83,92,99,103,98,103,104,95,80,90,104,94,95,105,95,93,105,103,93,85,93,88,95,93,106,90,88,96,101,89,97,109,93,97,97,103,90,98,102,98,100,83,96,98,90,98,99,102,104,107,91,97,105,108,101,91,100,95,95,83,125,77,96,100,102,90,96,94,90,85,108,97,71,98,106,96,87,88,92,106,97,107,93,110,95,105,94,90,82,102,76,104,94,94,113,101,89,102,107,88,125,82,104,89,104,92,99,91,93,101,119,103,102,106,99,107,99,104,96, +392.5144,90,95,94,100,89,84,83,96,98,111,82,88,83,98,112,94,91,95,100,94,91,103,106,89,96,105,114,90,99,87,96,98,99,107,105,111,103,108,107,84,101,99,99,100,94,115,103,105,88,100,103,93,126,101,102,96,87,89,101,98,113,100,68,99,88,101,91,100,100,98,100,94,105,95,100,97,88,112,82,94,110,92,109,102,100,105,95,103,94,105,105,103,98,108,103,89,94,85,99,94,92,107,100,103,74,102,101,66,99,101,88,118,108,102,103,101,98,92,103,97,97,96,107,110,94,110,98,92,119,98,102,96,109,104,88,109,99,113,102,81,91,93,66,100,89,99,108,93,103,97,96,102,112,88,93,96,97,97,101,99,100,99,108,98,106,104,87,87,92,88,90,78,108,106,97,98,103,96,95,103,90,91,104,108,94,98,94,67,98,82,94,100,95,105,98,100,91,94,110,112,122,106,93,101,92,105,99,107,84,111,93,99,105,111,109,102,95,112,91,95,102,102,89,108,100,106,109,99,113,94,111,106,99,98,91,102,103,103,117,100,96,104,109,106,88,105,106,112,104,101,89,95,107,100,120,105,95,93,95,101,97,96,106,102,98,104,112,106,97,109,102,98,103,108,104,111,107,106,103,108,110,96,104,102,93,113,112,104,112,91,95,102,105,95,114,94,108,94,101,96,96,99,101,109,100,97,105,110,100,100,104,111,96,102,82,96,106,92,107,94,104,93,99,98,104,112,105,90,100,98,94,96,105,98,97,98,107,101,92,97,118,122,91,108,99,101,100,100,104,91,106,110,104,105,107,98,99,99,101,109,89,88,97,95,92,89,102,111,90,115,94,108,104,107,119,98,97,107,122,104,89,103,102,99,96,98,105,96,109,95,112,94,93,110,98,98,111,110,97,106,100,92,100,88,100,101,103,103,97,89,87,109,94,74,95,97,93,101,101,94,102,102,90,106,101,100,94,91,85,111,104,99,99,99,92,95,104,96,90,100,99,88,94,97,94,101,102,95,103,106,106,124,91,117,109,97,99,95,99,100,96,91,98,108,107,87,110,107,94,92,105,99,95,104,92,105,93,114,112,114,85,102,96,82,99,97,95,107,105,96,97,118,106,107,97,102,113,108,86,105,112,113,88,102,99,101,97,96,92,101,117,100,95,114,116,99,106,103,76,85,98,111,115,115,105,102,103,102,100,100,92,103,95,102,83,108,95,95,93,103,113,100,102,86,104,95,104,102,114,114,107,95,108,95,95,118,103,102,97,100,95,103,90,101,115,94,109,92,82,91,91,95,100,103,100,105,94,100,115,100,100,123,109,94,107,109,105,105,113,95,105,96,99,92,104,97,108,102,95,97,99,89,99,102,88,90,104,107,102,92,110,90,90,98,106,106,96,112,96,106,103,115,95,103,112,94,102,112,96,103,101,94,110,104,93,108,88,91,98,108,101,109,100,98,90,102,83,96,90,97,94,105,92,96,95,111,108,113,101,91,75,100,92,102,93,72,95,97,109,106,101,90,96,89,82,104,91,106,105,103,72,102,95,80,88,101,87,89,92,99,76,99,92,106,104,101,105,97,108,92,106,97,94,104,108,102,92,103,100,98,107,97,113,96,95,106,100,98,94,99,102,87,96,109,103,94,125,112,98,115,103,102,95,79,91,102,100,98,108,93,97,99,104,102,98,105,100,94,87,108,72,99,104,99,109,96,87,82,94,105,108,103,103,105,95,102,93,101,109,94,102,101,104,92,112,105,108,99,96,92,105,95,104,91,105,114,95,104,95,86,101,110,102,103,92,88,102,94,107,98,108,108,100,107,108,114,100,119,118,102,99,95,98,95,103,106,109,106,94,102,82,95,101,112,102,113,111,113,103,100,106,87,90,104,86,106,104,124,109,103,100,108,104,99,103,93,97,104,104,91,103,92,96,113,99,120,107,103,95,99,99,104,104,89,102,93,88,118,110,97,94,107,96,105,98,106,111,89,110,109,95,97,111,104,97,107,98,109,105,109,95,106,97,98,107,101,103,102,97,99,92,100,106,99,96,82,99,112,90,96,102,98,109,109,113,92,104,108,91,94,97,95,96,105,99,95,87,95,84,87,100,100,100,97,100,108,93,89,103,88,92,98,95,95,104,83,98,104,94,99,105,110,96,112,100,101,118,99,95,112,98,112,88,92,104,131,100,86,99,109,103,106,88,96,112,99,104,92,96,97,108,109,95,96,106,101,97,92,111,92,96,110,106,103,107,95,103,102,93,99,107,101,98,99,104,86,104,91,99,109,97,103,95,113,105,97,88,100,103,105,113,90,116,95,103,83,97,85,60,93,114,103,103,102,105,90,105,103,99,102,89,98,90,90,89,95,95,104,94,86,104,102,96,96,108,97,111,102,100,93,101,104,101,92,110,100,93,95,112,96,100,103,95,100,84,96,74,118,102,108,110,93,91,97,106,107,91,110,107,92,106,117,99,90,89,104,102,107,92,102,111,106,108,98,98,105,95,104,100,108,97,80,99,99,99,100,99,105,87,104,95,104,100,99,109,94,98,112,94,75,104,107,115,100,105,107,110,96,106,87,103,100,89,111,88,94,98,93,106,101,108,101,100,95,94,101,107,97,100,103,86,99,92,92,100,97,101,103,103,86,97,87,107,113,94,110,94,96,109,120,97,103,85,91,99,107,98,94,91,104,97,115,99,109,70,119,111,90,106,103,98,96,103,94,101,88,105,94,97,92,105,106,87,109,106,99,105,103,100,106,105,106,98,105,74,99,87,101,109,98,100,115,106,103,94,99,106,108,70,109,109,96,107,105,72,101,96,92,96,108,114,104,98,112,89,98,99,102,88,101,116,98,98,94,108,99,95,109,98,115,114,100,110,99,100,102,101,104,111,101,98,107,103,108,108,95,95,113,103,123,102,101,95,90,110,75,103,95,107,106,109,100,98,117,104,98,101,107,92,87,96,94,109,101,97,113,102,101,92,90,101,117,100,111,103,106,102,103,110,89,109,100,106,96,93,87,102,86,97,99,101,112,119,108,105,99,106,94,108,94,98,102,98,94,90,98,104,104,102,101,103,102,102,89,113,99,107,102,98,89,97,124,95,92,90,100,97,109,104,89,107,101,92,102,93,87,89,92,110,109,100,71,88,112,104,111,92,99,90,89,102,96,99,79,96,85,114,103,99,100,91,94,91,112,76,86,94,111,102,100,109,105,98,98,98,104,102,98,105,100,116,98,98,130,101,103,99,112,98,95,104,98,98,99,104,94,101,106,108,113,97,109,106,109,96,103,94,93,94,108,109,96,102,108,103,97,91,83,98,95,97,95,97,94,101,106,94,111,101,99,91,96,107,93,97,100,102,93,95,127,93,103,118,108,93,104,78,112,106,94,94,109,108,111,100,96,111,98,87,106,109,75,93,98,96,103,101,114,93,87,102,100,91,91,97,110,84,96,94,101,117,101,103,106,93,84,102,92,110,88,102,106,92,96,105,109,106,100,92,94,102,90,91,112,107,101,93,99,101,97,109,113,98,101,99,102,95,83,101,107,96,101,92,98,116,96,129,109,104,96,100,96,95,125,88,111,110,94,100,95,92,95,93,101,83,91,104,109,95,102,111,94,111,92,100,96,95,84,111,98,87,97,92,99,105,102,115,94,112,100,105,108,83,111,97,101,110,99,103,96,101,111,104,87,110,98,98,96,95,102,91,102,66,99,103,111,104,107,99,98,98,104,84,89,91,116,93,106,103,105,107,100,101,109,95,92,100,80,103,104,98,108,88,87,109,109,100,97,94,109,106,85,101,94,91,107,97,96,101,99,95,107,98,97,109,95,123,106,94,108,97,99,93,97,97,108,105,103,105,108,106,95,105,98,103,105,108,91,102,96,97,98,91,94,99,110,100,94,102,98,101,96,105,105,94,109,87,101,96,112,93,107,100,101,90,94,109,94,106,102,73,103,101,88,127,105,99,96,100,99,96,95,87,98,109,105,104,105,92,102,100,111,102,98,91,121,106,83,98,98,114,99,91,99,103,110,98,112,106,95,110,105,102,94,94,92,94,102,103,78,98,101,98,112,103,89,100,105,113,101,98,95,90,106,108,106,92,101,96,90,105,88,90,103,103,105,94,95,91,103,102,95,100,96,80,100,112,105,104,100,106,105,102,102,85,104,98,103,87,109,103,95,87,109,105,104,114,90,90,95,116,100,113,102,94,102,113,107,95,99,92,96,106,88,104,99,73,91,101,109,103,93,112,81,110,96,98,91,89,112,108,101,100,112,89,104,100,94,91,116,95,98,109,91,104,95,111,103,94,107,102,99,101,87,126,98,90,112,99,95,102,98,104,94,103,136,102,95,105,96,109,88,93,101,93,95,119,100,101,98,106,91,109,95,115,103,93,103,112,98,101,115,101,99,97,91,97,90,105,89,94,102,91,110,105,79,101,98,91,98,89,92,93,101,95,109,113,96,89,100,98,73,97,105,103,101,92,105,93,98,108,97,98,100,97,99,104,108,66,103,91,100,103,92,96,106,109,103,102,92,109,107,117,99,104,118,113,93,91,103,102,98,88,101,107,112,101,87,106,111,136,106,94,108,106,102,100,91,89,106,93,95,103,99,98,96,101,94,103,98,96,102,98,105,88,89,102,91,96,93,108,92,99,98,102,105,104,100,102,110,104,98,106,94,113,92,111,88,108,104,107,91,84,99,105,103,96,100,100,112,102,111,102,108,119,90,94,105,106,112,98,108,96,103,87,113,101,98,85,88,106,89,103,111,90,89,91,111,104,93,96,123,99,107,88,111,95,59,87,127,97,95,91,116,92,109,95,92,102,92,105,104,107,70,99,92,83,106,101,99,96,87,115,105,104,96,111,94,95,105, +392.65448,110,93,100,100,98,107,101,100,104,87,94,117,97,97,104,94,100,95,105,101,101,98,92,97,92,98,104,102,107,99,111,93,89,87,111,94,93,102,101,108,88,96,98,99,113,100,103,108,99,107,95,89,101,96,109,95,105,84,100,94,105,115,96,81,105,111,100,101,97,96,100,93,114,94,99,110,108,105,100,93,100,64,104,113,89,101,100,110,96,93,98,107,102,103,102,97,92,88,91,97,86,101,102,115,92,112,92,100,101,96,95,96,94,97,109,96,91,104,101,104,101,103,92,107,105,104,105,97,111,98,102,97,108,100,99,84,106,95,99,95,114,105,105,97,94,102,108,100,91,94,88,114,108,98,103,92,98,91,105,103,96,103,106,95,95,101,94,98,103,93,86,98,94,101,100,99,100,105,107,104,92,108,99,99,96,99,78,92,111,86,103,112,107,99,96,97,101,90,96,107,104,114,98,112,93,105,98,112,91,109,99,104,99,110,89,107,99,95,97,106,91,109,105,108,94,93,110,102,96,105,100,102,91,95,94,108,109,110,100,88,78,95,111,94,111,102,111,97,103,106,101,108,90,104,90,94,106,78,88,92,99,100,105,102,84,106,101,98,102,87,104,98,107,108,106,116,97,97,99,81,93,109,84,100,103,94,108,113,99,106,100,97,121,104,108,108,107,112,99,106,117,97,105,100,95,104,112,100,96,100,100,104,100,107,109,92,83,102,95,97,105,110,97,96,88,95,85,85,110,110,105,99,106,104,112,102,101,117,95,100,95,100,101,105,103,99,109,109,112,94,111,104,94,95,85,110,93,103,110,90,102,89,87,109,103,91,97,119,97,108,105,100,108,82,124,100,105,109,90,110,102,107,95,96,112,94,108,102,94,87,94,93,104,105,106,102,95,110,77,100,120,103,108,102,94,93,98,89,106,98,103,102,99,109,95,101,101,91,104,100,102,96,94,107,103,95,94,94,99,100,108,106,110,95,106,94,104,104,90,99,100,87,102,102,92,100,99,87,102,108,87,97,106,102,104,88,104,93,105,101,104,107,102,111,95,101,91,91,100,106,93,99,106,102,103,109,104,108,102,97,105,102,103,95,96,104,82,106,98,102,121,105,92,101,108,100,114,99,101,100,115,97,85,98,112,102,94,106,97,96,102,103,104,111,110,107,104,97,106,101,95,113,111,106,113,109,100,99,100,91,97,93,113,94,98,100,103,103,98,98,98,97,100,96,107,105,101,99,102,104,92,112,93,97,106,91,115,102,108,91,110,109,96,100,100,98,106,110,103,129,107,103,91,105,110,99,96,98,116,100,101,98,98,86,99,102,103,92,95,95,115,103,93,98,105,108,88,93,95,105,99,106,81,104,100,96,101,94,107,118,96,98,117,99,102,103,104,88,97,97,118,95,102,105,96,98,104,109,113,96,103,104,94,128,97,103,104,105,96,97,105,108,100,102,85,98,87,95,101,98,96,103,102,101,94,110,105,86,98,99,99,112,106,103,98,124,99,103,133,102,102,95,104,98,95,113,99,100,104,93,105,99,97,103,94,93,93,114,102,112,113,89,94,94,98,87,104,111,93,99,108,88,100,101,100,99,106,97,101,101,112,93,91,114,80,95,98,95,98,94,105,89,94,79,91,94,106,104,86,103,108,95,82,95,109,99,103,106,103,118,107,105,90,95,103,99,105,92,89,111,100,104,97,88,99,111,96,104,109,104,98,103,103,97,109,106,94,97,96,91,101,94,110,100,106,100,99,100,102,83,98,93,103,91,119,118,100,100,104,97,98,113,95,108,92,107,94,102,94,81,100,103,103,105,104,96,101,107,118,95,104,100,101,96,104,104,103,104,102,97,100,101,106,69,103,103,109,108,106,89,101,99,94,109,109,111,117,89,98,100,99,113,79,111,93,95,92,102,89,101,101,63,92,78,99,91,116,105,110,102,99,95,119,104,113,99,105,86,103,87,99,97,101,107,76,91,105,90,94,95,98,97,85,83,107,91,98,105,101,98,108,95,97,100,87,96,104,96,99,103,93,104,104,95,98,89,93,106,101,102,101,110,105,104,104,95,98,104,108,92,108,94,106,100,89,104,105,85,100,99,103,106,106,105,103,95,98,112,103,108,103,103,91,102,98,101,105,98,94,110,107,103,105,105,105,98,110,103,98,89,110,104,89,86,109,104,90,89,91,104,111,101,84,108,91,105,105,91,86,95,107,98,96,85,96,87,91,83,93,99,99,105,95,98,99,95,89,99,106,97,108,84,86,100,75,111,97,100,89,98,93,99,95,103,98,100,114,97,100,98,107,107,99,87,97,107,104,89,113,89,108,104,102,108,98,96,94,93,87,102,92,99,98,91,88,106,110,106,92,96,98,96,96,103,121,95,100,104,98,100,89,100,100,109,121,115,99,122,105,88,94,110,101,97,97,106,110,96,82,91,106,92,110,78,93,108,97,102,106,106,96,109,97,92,82,109,89,103,104,108,91,87,105,131,93,87,98,103,102,93,103,108,111,102,98,88,95,106,91,98,88,96,99,94,103,93,134,94,123,101,95,101,100,117,105,106,109,99,101,95,105,102,83,97,95,88,97,101,103,89,118,91,108,98,98,93,105,92,98,102,101,93,97,96,95,106,83,105,102,95,96,105,102,99,120,89,104,104,99,96,89,86,89,96,98,97,109,97,96,108,101,100,104,102,97,91,101,89,110,116,98,90,105,105,94,103,98,91,103,95,95,92,91,110,91,92,103,82,94,98,93,103,90,93,106,101,104,99,112,118,94,91,101,109,102,101,101,105,109,96,104,105,105,87,80,95,99,102,101,96,105,101,107,115,108,100,96,100,106,97,105,110,102,102,100,113,98,103,89,113,109,95,96,97,116,88,87,97,98,104,102,114,99,113,105,105,93,90,94,102,96,101,104,100,97,87,102,91,119,116,91,99,94,103,117,88,108,106,125,101,101,102,88,99,105,102,108,105,95,116,104,108,100,93,102,91,92,109,96,104,102,87,92,98,110,97,95,101,93,92,96,109,105,103,99,90,99,102,103,100,91,105,100,103,94,91,93,99,96,68,98,120,95,98,123,97,88,95,92,81,94,100,97,101,108,105,98,103,94,109,101,89,97,90,102,94,96,104,103,96,102,93,85,101,96,106,87,120,112,108,102,90,98,100,111,91,100,95,109,97,110,94,96,99,99,91,107,107,104,106,87,108,96,107,98,105,111,99,114,100,92,109,77,100,102,99,117,101,86,88,93,98,95,84,105,105,75,88,104,108,98,78,96,99,99,98,129,99,92,101,98,101,104,106,101,109,98,104,103,103,101,104,95,104,111,100,109,104,108,102,103,96,94,95,96,105,93,89,101,100,97,107,102,92,111,95,99,110,108,99,89,93,117,113,92,112,102,98,117,114,104,84,85,107,90,98,83,103,104,95,105,112,98,105,88,111,101,111,95,89,100,93,103,106,103,103,108,103,100,99,104,102,101,96,100,106,90,98,101,98,107,94,102,106,104,117,102,107,108,93,97,95,97,89,100,103,98,96,108,102,95,99,98,95,98,108,106,97,102,95,100,93,91,102,99,64,106,102,93,95,94,100,95,106,94,110,112,105,113,118,101,103,107,101,100,91,103,99,97,106,113,93,94,107,106,102,108,108,94,103,100,101,103,95,109,101,103,113,92,106,104,101,66,102,92,96,106,102,107,102,107,101,108,110,103,101,99,109,79,91,86,106,113,110,86,96,110,94,78,104,111,80,106,94,97,89,109,100,109,99,104,122,101,105,89,102,108,109,94,94,102,101,104,94,100,88,106,96,96,133,105,112,90,85,97,117,112,105,110,94,109,109,106,105,103,101,112,94,102,101,98,100,100,85,99,100,120,94,99,109,95,102,111,100,88,98,99,112,90,87,92,100,106,99,87,102,99,106,100,90,93,90,96,108,88,96,97,85,89,106,104,84,93,113,97,87,94,109,90,103,120,113,113,112,110,103,101,98,105,102,105,100,121,105,99,108,98,91,90,89,106,109,101,99,119,102,79,104,101,94,102,83,98,103,102,97,95,97,98,100,99,112,130,104,103,108,102,91,107,106,98,107,109,100,113,103,104,108,106,93,102,94,95,112,100,97,99,101,90,111,106,90,108,103,103,107,106,95,99,79,100,92,118,94,93,103,85,100,108,106,111,94,107,109,100,92,103,84,113,101,113,103,89,95,92,92,104,107,101,100,91,93,90,95,93,94,100,95,107,102,102,72,102,93,105,109,103,88,92,102,91,75,88,106,112,103,99,94,79,99,109,100,102,91,103,102,101,101,97,101,100,97,97,99,96,95,109,83,111,105,96,105,108,112,105,105,104,98,104,102,91,97,115,102,83,103,101,107,110,96,80,105,93,110,96,99,86,105,97,102,98,103,100,99,87,102,99,90,68,98,115,102,108,113,102,92,113,101,89,114,92,101,101,105,107,110,90,97,111,104,102,107,93,93,104,95,110,100,110,108,80,121,95,94,111,97,105,105,108,88,99,86,84,105,92,125,95,92,90,80,95,94,99,103,100,97,109,87,95,101,92,89,97,98,115,105,94,95,96,104,103,108,100,106,108,81,102,96,99,96,100,107,98,90,102,104,96,110,101,105,98,94,104,108,87,95,97,95,99,108,100,112,92,103,93,91,113,100,109,90,97,106,98,99,95,97,84,91,106,85,87,103,94,105,98,101,99,95,94,99,100,95,100,109,84,93,94,115,94,94,111,103,93,103,99,102,101,91,115,80,98,95,96,102,94,95,107,101,98,91,122,95,105,115,118,104,105,84,99,93,105,97,96,106,80,112,94,89,111,98,91,88,117,90,109,89,105,106,85,103,99,92,102,101,95,112,108,90,92,103, +392.79456,109,97,94,97,89,111,92,93,98,101,102,90,92,91,97,94,84,112,98,101,89,91,103,99,109,101,110,98,105,99,98,105,101,97,104,87,105,95,96,99,96,84,104,106,97,117,97,105,86,105,112,91,106,88,79,98,96,76,97,102,107,114,95,113,98,103,91,98,106,94,93,91,76,108,95,96,99,110,98,95,102,89,104,101,90,107,96,99,98,100,97,96,118,102,97,88,78,84,89,107,101,93,95,89,102,74,92,90,96,100,102,98,97,101,104,96,93,103,112,112,92,90,108,105,109,94,101,90,96,98,98,122,103,89,94,112,100,95,91,111,100,108,91,90,97,107,99,117,100,100,125,101,87,95,85,87,105,105,87,100,91,97,91,103,93,98,104,87,106,102,105,102,111,110,88,105,91,91,104,99,102,127,98,102,99,103,102,88,106,94,91,90,96,96,106,98,101,98,94,94,106,62,89,105,102,108,96,100,98,105,103,104,95,96,104,105,97,58,101,100,109,99,99,105,86,103,84,96,108,77,108,94,96,101,104,110,105,104,101,101,101,101,103,102,98,104,87,118,98,91,87,103,72,87,95,104,96,92,91,89,95,97,105,94,102,99,114,94,97,97,94,94,101,97,99,93,101,101,103,94,87,98,107,98,92,96,81,86,98,99,95,91,105,91,106,122,91,102,93,111,110,100,100,96,106,96,100,102,111,82,99,100,99,97,91,99,101,111,105,93,106,100,92,106,101,102,96,86,109,102,93,98,104,94,113,110,96,108,98,108,91,99,96,98,99,100,102,118,95,91,99,98,90,104,92,102,109,104,88,97,92,94,108,101,86,107,101,105,98,88,91,99,101,105,94,86,107,97,105,107,111,104,105,107,89,101,100,111,109,101,115,98,80,106,102,102,91,102,92,110,109,98,113,91,93,105,107,84,100,81,96,92,107,103,99,95,99,95,97,94,94,98,94,109,103,86,95,101,95,103,88,103,104,97,95,91,93,96,90,94,96,102,98,100,102,92,113,93,92,98,93,110,91,112,89,93,103,105,100,94,97,97,94,107,96,104,109,101,118,97,87,97,104,103,95,96,89,99,93,97,104,98,106,91,95,100,100,95,93,95,103,97,106,97,96,94,89,102,105,100,114,99,90,102,96,101,101,105,90,96,104,106,104,90,109,100,102,104,93,100,87,96,105,91,103,109,97,93,97,94,94,104,101,94,100,110,81,109,104,100,97,94,110,110,125,109,102,93,110,106,100,91,98,108,99,105,88,94,99,98,100,100,94,92,99,106,89,103,103,105,96,101,102,92,107,91,86,97,99,109,91,99,93,90,103,96,95,111,97,97,95,105,101,99,102,101,99,105,107,107,96,101,100,102,117,97,106,91,91,109,79,102,97,87,90,99,109,99,102,97,95,92,100,100,103,98,98,102,98,103,103,91,114,103,103,95,105,88,94,94,95,101,105,94,109,106,98,98,70,96,102,103,102,94,95,104,98,96,104,96,108,107,99,95,84,105,104,92,97,83,108,99,109,93,91,90,117,107,104,97,99,105,93,107,93,91,101,100,90,91,102,84,93,102,101,96,104,96,98,98,95,93,86,110,91,103,109,88,102,97,99,108,99,103,99,101,105,115,94,91,99,93,101,108,88,90,100,87,102,100,103,99,88,112,96,97,114,94,102,93,104,92,101,113,101,96,86,102,100,102,103,104,113,104,107,114,96,98,99,97,103,100,88,91,88,99,88,99,97,87,91,101,95,97,91,96,106,88,95,94,96,104,109,101,107,102,101,97,104,99,97,106,103,96,97,94,98,98,97,91,101,82,102,88,105,106,106,101,102,93,99,100,99,104,108,114,100,102,78,99,102,100,104,102,113,96,99,77,96,114,95,100,98,86,103,99,114,102,101,96,78,94,98,92,100,92,100,63,95,100,80,102,109,117,96,98,92,93,103,91,97,94,106,104,91,92,102,102,101,97,107,104,114,65,98,93,104,100,102,96,96,104,104,90,104,93,110,119,100,101,100,105,101,110,92,93,96,91,96,97,102,109,118,92,113,94,104,91,85,103,103,90,92,96,97,94,91,99,99,94,104,96,100,92,96,99,108,100,91,104,86,110,117,88,90,86,68,91,100,101,94,95,104,92,95,109,99,95,98,99,91,103,106,83,106,97,106,103,88,98,77,95,102,95,102,96,91,106,101,116,104,91,95,90,98,92,102,94,105,96,102,92,100,101,102,96,100,98,100,98,93,105,81,95,101,81,89,87,96,100,95,88,98,88,94,95,110,95,96,104,92,93,96,107,97,100,95,94,104,99,97,103,98,73,101,97,85,99,93,107,98,95,100,114,77,86,113,129,100,106,92,99,102,114,75,88,91,99,106,86,101,91,91,90,101,115,95,98,99,96,79,103,101,102,98,94,91,99,102,83,83,99,100,90,102,95,87,99,82,99,113,102,96,112,107,105,103,98,109,117,110,106,93,97,114,106,91,102,101,122,101,91,110,99,82,92,99,99,91,100,111,112,100,99,100,87,96,96,98,114,107,97,91,99,82,118,98,95,94,83,102,101,98,95,97,101,96,98,98,87,104,90,107,102,112,90,95,104,86,88,107,93,105,96,98,96,105,87,105,100,113,84,101,116,105,112,76,111,113,97,118,96,97,101,110,91,104,109,97,103,100,81,86,108,72,112,109,108,95,113,100,104,97,100,107,105,101,98,106,97,109,95,96,101,111,105,104,124,79,90,93,99,118,112,110,104,97,97,105,94,107,106,98,89,100,111,98,103,112,99,94,101,99,105,97,102,110,107,112,100,109,106,100,100,108,93,95,97,109,100,119,107,99,99,92,98,103,107,98,108,95,121,94,102,95,93,112,105,102,102,122,94,102,112,109,95,95,79,109,100,106,109,115,99,106,81,95,102,113,105,106,101,107,102,94,106,100,106,96,98,103,106,94,90,95,102,97,100,79,100,98,101,89,96,103,132,106,107,110,98,111,102,91,105,120,106,109,100,103,96,109,95,103,113,95,87,99,97,89,99,100,98,106,111,92,95,95,105,114,95,87,99,83,102,98,101,91,91,103,99,97,99,107,99,105,109,93,117,109,91,100,82,103,102,94,109,107,105,98,99,92,85,98,117,95,94,91,105,89,86,97,94,94,102,95,106,98,101,108,107,96,105,96,91,78,98,108,100,111,117,106,98,108,98,77,69,102,97,106,90,101,103,93,90,101,107,109,97,109,101,92,106,106,104,108,89,97,68,106,99,98,90,110,96,94,101,99,113,98,101,92,105,95,93,97,93,110,100,113,110,105,102,94,99,104,91,99,102,101,92,97,122,95,106,103,98,99,100,112,96,103,91,101,99,107,106,110,119,100,109,103,92,93,99,106,98,96,118,118,83,91,104,107,101,94,102,100,101,103,111,107,94,100,109,93,96,93,99,88,91,91,101,100,95,95,98,104,99,113,88,105,115,103,103,96,105,94,101,99,94,90,98,102,117,104,105,102,90,105,94,126,105,103,99,94,100,100,109,112,77,100,101,97,96,104,107,97,98,97,105,121,104,113,110,104,99,102,97,106,90,91,93,91,105,117,98,98,106,101,99,93,116,96,100,98,106,103,100,92,98,93,102,105,116,76,102,107,96,104,112,104,95,105,104,96,99,94,105,111,79,104,91,94,124,91,100,103,96,108,109,100,109,103,88,102,94,98,91,104,98,92,110,102,93,104,94,94,73,95,103,102,95,92,95,88,103,103,88,109,111,92,102,92,105,104,98,98,92,104,91,99,111,102,104,97,108,121,72,106,101,90,106,108,110,103,100,111,98,93,103,100,101,105,96,97,99,102,102,110,118,104,107,92,95,108,94,92,96,88,106,98,108,101,101,93,104,98,100,90,108,104,102,102,98,97,103,94,102,109,101,105,124,103,99,101,105,91,93,113,96,100,100,95,103,109,94,88,102,106,111,97,107,100,101,84,93,111,85,94,88,105,95,100,103,101,96,98,89,112,110,79,104,98,105,103,102,106,106,106,113,107,100,103,105,108,106,101,107,99,97,116,93,102,108,113,102,110,118,100,103,101,100,99,95,101,107,91,112,96,105,101,111,94,102,99,95,98,104,94,108,99,97,102,105,93,81,82,96,95,97,103,92,95,94,100,102,83,96,98,101,103,109,105,102,109,98,103,101,99,104,111,100,103,105,93,95,103,105,97,80,95,94,101,95,97,101,105,109,95,81,89,94,107,97,109,108,98,99,93,90,97,92,115,107,91,102,102,92,91,103,96,96,91,87,103,95,102,102,95,111,92,102,98,107,102,99,98,112,100,101,109,92,96,95,101,98,97,96,100,96,109,102,102,102,88,90,110,99,100,102,108,110,94,92,103,96,97,114,101,118,105,88,104,99,89,100,80,89,103,105,105,102,104,100,99,114,87,90,101,96,110,113,90,99,108,109,111,101,104,95,87,105,99,95,107,102,94,90,103,102,105,101,97,101,89,100,94,97,91,98,103,89,112,102,96,101,114,98,107,88,94,94,88,102,105,88,113,88,110,128,104,100,90,100,103,100,102,99,95,100,94,114,93,97,109,91,93,99,98,101,85,98,94,102,98,103,105,99,98,98,100,103,104,85,90,95,107,110,89,98,91,98,109,105,105,83,99,102,102,107,68,106,96,94,102,101,106,90,80,106,102,112,94,102,97,97,97,102,114,99,94,92,94,105,101,100,108,90,101,116,105,97,106,95,87,88,114,101,106,104,87,103,105,104,107,89,100,105,91,105,103,100,105,121,97,107,100,109,94,104,102,98,93,104,106,117,111,75,100,102,111,85,97,92,101,112,99,94,103,109,100,87,108,91,77,109,91,102,92,99,98,95,101,96,110,102,101,121,104,104, +392.93463,92,93,91,104,100,105,87,120,98,96,96,85,100,94,104,99,87,103,96,111,89,113,103,103,100,100,92,92,105,113,112,110,97,111,108,102,93,81,108,91,92,98,101,100,108,74,87,119,111,102,111,91,86,87,100,94,87,101,98,90,122,101,100,94,96,100,104,104,97,99,100,100,82,87,102,116,90,83,104,95,112,101,79,87,96,92,98,86,109,87,100,101,95,96,83,100,101,89,87,101,96,104,93,99,105,84,101,102,100,98,92,102,100,102,98,98,93,108,103,105,117,104,104,106,94,105,101,100,88,99,106,99,81,99,80,116,98,90,101,91,97,105,104,98,102,110,99,103,78,92,103,102,86,102,78,100,99,98,83,104,102,98,100,90,96,102,88,97,106,107,102,100,98,95,101,103,98,87,94,110,91,98,92,95,109,106,79,96,92,90,87,105,99,98,104,90,115,99,98,106,97,103,88,105,103,101,104,104,107,110,106,105,105,105,97,84,88,99,94,104,103,107,108,112,108,98,105,109,87,107,100,109,106,96,107,91,97,92,100,110,106,102,101,102,97,92,117,116,109,106,100,81,97,95,101,114,79,99,96,96,94,103,87,114,105,111,97,98,104,90,100,100,98,103,109,112,95,103,86,96,100,107,89,101,80,98,91,100,97,94,99,87,94,95,107,95,99,101,90,112,98,108,107,109,93,106,87,103,103,106,71,101,104,100,99,103,100,100,91,114,100,95,103,108,109,72,98,92,98,104,100,100,96,97,105,94,98,103,95,94,104,92,93,90,89,110,105,105,97,112,110,107,97,108,101,96,97,102,96,95,102,95,108,100,96,101,96,101,102,96,101,111,103,99,102,87,100,91,87,95,99,95,96,102,85,107,97,97,106,107,100,100,97,94,96,94,82,91,95,109,92,96,99,97,106,98,91,112,89,103,89,92,109,91,90,91,100,100,88,107,104,101,100,101,91,91,97,98,105,96,104,97,94,99,92,85,96,106,83,96,109,107,102,104,82,105,91,104,113,106,94,94,105,97,95,100,95,86,106,98,96,87,100,95,99,125,93,100,108,100,105,95,101,97,106,94,92,110,93,106,99,97,93,81,92,96,98,105,98,108,104,111,90,104,95,100,97,97,84,93,98,93,113,108,96,103,97,89,106,103,103,104,97,106,105,107,102,96,96,100,104,89,85,94,109,83,102,95,97,84,95,100,113,102,108,106,95,96,102,97,92,109,100,88,107,84,101,95,92,99,91,114,97,104,103,97,101,103,98,97,101,102,97,85,101,87,104,104,98,90,102,106,102,99,103,96,110,92,90,97,94,89,86,95,98,92,93,97,95,96,109,106,96,85,110,109,87,100,98,103,84,89,101,101,96,94,97,113,106,105,98,91,109,100,98,99,93,93,108,99,115,96,95,102,101,98,95,105,106,105,99,92,104,107,113,101,99,102,65,90,96,102,86,79,96,90,105,102,94,105,98,100,102,94,97,101,96,95,96,103,106,100,102,102,92,99,102,90,94,87,94,99,109,104,99,100,90,102,104,91,90,95,100,82,87,97,87,99,96,94,104,102,100,113,102,88,78,105,101,89,94,85,102,94,89,125,97,95,90,99,99,113,102,94,93,96,97,89,102,100,102,97,102,104,101,106,104,98,102,105,96,115,99,95,99,101,98,100,92,95,104,97,96,98,94,104,105,111,92,87,106,105,102,108,96,100,101,101,107,90,99,90,91,91,100,79,94,95,102,84,111,105,98,76,105,67,85,105,96,94,96,99,83,96,97,93,94,90,104,113,98,107,104,99,111,100,102,103,107,109,96,104,99,99,92,99,102,99,93,97,106,87,93,98,109,109,108,103,108,103,97,104,98,98,103,100,108,88,96,97,100,104,94,105,106,102,96,64,96,99,95,107,97,91,82,105,98,101,105,96,96,102,99,104,93,104,89,100,89,99,109,99,104,102,98,103,97,96,109,94,103,111,101,97,88,81,93,85,117,87,91,101,102,98,90,96,96,91,101,96,86,102,86,102,105,93,92,114,94,104,107,100,90,97,97,96,92,95,99,107,98,108,111,93,98,91,88,111,96,90,113,102,106,102,96,95,101,104,91,95,101,72,107,84,100,95,100,97,100,105,101,97,97,103,93,107,100,83,104,107,92,109,107,110,89,96,99,106,91,97,90,91,99,101,109,100,104,112,109,102,90,85,91,122,79,91,99,73,91,100,105,104,109,95,119,103,96,97,115,98,106,106,109,94,105,92,88,104,96,99,91,104,111,99,98,93,104,101,97,98,92,117,103,107,95,98,85,102,90,103,94,95,85,106,104,91,99,86,103,90,100,114,99,102,109,88,94,100,102,103,85,102,90,87,94,105,101,99,104,96,104,114,106,100,106,102,108,106,91,87,96,100,87,108,108,95,93,104,90,93,115,101,92,106,97,129,105,91,94,107,101,102,93,94,114,102,104,104,108,98,93,92,101,99,96,101,96,87,107,96,100,104,74,98,94,109,96,100,90,103,100,99,109,100,105,101,87,107,90,90,94,109,91,104,113,104,97,93,103,94,99,104,98,98,95,91,95,79,109,108,112,107,89,103,95,105,91,99,104,87,119,99,112,119,118,101,96,97,91,96,103,87,92,102,96,100,98,79,103,95,89,110,107,90,83,98,91,95,92,110,91,92,105,96,104,112,92,108,99,100,105,112,101,105,90,104,102,95,93,94,96,102,94,95,100,90,94,107,104,103,114,79,96,109,114,105,106,111,102,93,93,98,99,95,99,105,100,80,111,100,105,112,97,105,104,101,117,104,97,97,98,96,79,117,96,80,94,99,102,99,87,106,113,109,100,91,110,97,101,98,101,106,118,105,105,105,102,105,99,92,98,110,97,100,113,86,95,111,98,96,86,83,107,110,101,106,100,100,98,94,97,95,95,95,89,112,76,104,88,104,113,93,97,109,81,92,105,108,96,100,95,102,106,100,107,108,98,103,101,105,101,95,95,106,115,104,96,104,87,104,96,91,101,105,101,101,113,102,95,115,100,98,105,105,101,103,113,101,100,102,86,111,93,103,92,105,122,90,104,99,103,105,94,102,105,105,99,113,101,95,116,103,98,102,91,87,97,91,105,96,100,103,85,107,95,99,90,91,109,95,93,100,100,108,105,107,98,88,97,98,105,97,105,113,97,106,97,84,97,79,104,90,107,95,99,83,99,104,104,99,99,102,102,93,94,107,107,98,102,93,99,100,90,106,88,115,108,98,104,99,104,83,99,109,89,118,102,94,106,102,105,100,99,100,96,92,100,91,99,102,114,96,95,95,102,104,98,97,109,101,83,103,99,98,95,105,99,94,110,104,96,116,98,102,96,90,104,89,104,111,98,91,105,97,102,96,102,92,96,69,88,101,105,103,106,101,107,92,111,106,88,100,98,103,92,107,82,99,100,98,99,104,100,108,99,109,93,126,104,99,109,95,106,112,95,100,100,105,98,100,112,103,100,105,107,106,111,95,96,83,103,99,138,107,96,115,104,98,100,102,87,101,114,103,104,105,87,110,114,117,110,100,100,108,115,106,113,89,103,95,100,87,96,99,80,102,97,113,95,100,91,100,105,98,95,96,99,112,83,101,92,110,97,104,101,107,107,101,110,100,101,100,92,102,92,100,107,112,101,91,85,90,84,107,96,108,94,109,105,103,127,97,98,105,92,103,100,91,87,104,93,99,103,93,103,102,97,107,107,90,72,99,97,88,98,91,96,96,104,92,104,85,98,101,109,99,100,87,105,94,97,96,100,94,98,86,111,109,96,101,95,99,92,101,89,101,83,100,96,103,92,92,102,75,91,103,98,92,102,110,104,91,95,103,93,102,96,96,101,107,110,95,88,96,101,98,109,90,99,100,105,88,106,100,106,102,106,113,101,100,109,98,92,97,111,103,105,99,120,111,133,108,105,90,96,103,109,99,89,87,94,126,106,109,102,98,113,108,92,90,98,101,111,98,121,104,102,104,111,75,101,98,89,86,106,98,101,103,98,102,102,107,96,128,113,105,130,91,98,106,62,101,108,113,99,103,91,92,106,122,95,102,98,102,109,120,101,89,92,97,107,114,100,90,96,98,113,96,86,92,86,91,89,94,96,102,87,108,91,94,109,97,99,92,99,105,98,97,105,99,110,101,97,100,108,112,93,104,104,99,112,95,112,100,88,99,99,96,102,94,107,93,83,96,93,97,105,105,101,102,97,99,98,92,90,103,102,96,106,107,98,90,112,101,87,90,107,106,93,90,109,98,97,87,91,98,87,100,105,103,104,96,107,98,89,108,102,111,101,109,102,97,117,102,98,92,104,98,97,99,96,118,91,94,88,105,109,99,98,99,100,117,108,102,109,83,98,100,110,104,101,101,95,100,91,107,102,99,102,106,101,94,103,98,91,97,84,114,108,110,109,92,106,106,101,89,99,80,97,101,98,102,98,100,104,95,104,88,105,100,98,105,83,100,100,96,89,99,95,72,96,92,75,105,101,107,101,105,107,109,94,92,117,101,96,93,93,90,102,97,79,97,105,93,110,110,108,102,81,101,96,95,100,108,108,101,94,91,95,105,101,96,100,103,92,105,96,102,97,94,107,91,106,91,95,95,104,91,95,83,101,90,103,97,94,87,105,108,93,90,93,100,96,109,95,114,109,103,95,96,96,108,96,91,125,100,99,87,108,100,97,96,101,100,96,105,101,91,99,96,95,100,97,95,98,106,98,93,90,105,94,100,91,100,101,112,96,104,97,98,91,105,91,75,85,99,95,96,100,101,105,87,104,102,108,94,101,90,89,92,90,97,109,86,94,98,97,95,93,101,96,90,85,86,96,102,104,112,71,93,97,81,97,100,100,88,106,102,85,80, +393.07474,104,91,96,101,87,94,113,96,96,91,97,97,100,110,97,96,97,104,99,102,104,93,99,91,102,95,104,100,92,105,100,115,104,93,109,100,91,105,92,95,84,99,94,113,97,99,106,93,96,104,95,99,112,105,100,86,93,108,110,93,91,96,91,97,113,93,88,107,95,99,93,91,97,96,86,99,81,93,98,102,100,96,83,103,112,113,107,98,92,93,94,106,98,92,64,96,94,101,99,97,105,103,97,92,90,96,101,99,98,89,93,104,105,92,92,96,105,107,93,100,104,97,101,104,99,99,98,80,96,102,102,99,96,104,102,103,95,82,107,100,84,86,92,86,105,96,107,100,101,99,115,96,98,101,100,99,100,91,113,103,98,101,98,93,109,102,100,89,91,94,97,97,101,90,119,99,115,87,91,78,102,103,103,99,102,93,85,94,101,82,88,101,98,95,101,110,96,88,82,102,97,103,91,105,108,95,105,97,104,101,94,104,97,96,86,97,111,100,97,101,105,110,113,94,98,105,105,96,88,103,106,102,108,100,99,108,102,101,96,94,95,100,104,95,93,100,102,84,91,106,94,95,104,87,106,107,112,108,112,99,92,95,98,118,103,104,112,96,103,102,104,97,101,101,92,97,82,97,96,95,95,97,69,105,90,93,95,102,97,103,95,99,105,93,102,95,102,100,95,99,104,96,106,102,92,102,94,110,104,109,97,101,94,97,105,120,97,95,104,100,104,98,102,91,100,99,98,99,103,106,105,92,108,96,104,109,96,90,68,106,96,105,100,79,106,95,105,106,108,112,94,97,96,100,94,95,108,105,95,99,97,98,93,102,101,98,110,112,104,105,81,84,104,106,88,99,97,115,85,109,97,118,104,99,91,106,87,95,105,86,106,94,91,96,100,98,92,102,111,110,97,102,100,100,101,90,82,107,93,103,94,95,95,104,105,100,96,112,92,102,108,106,96,116,98,94,114,101,105,112,91,99,107,89,98,91,96,99,87,112,99,96,84,98,107,105,76,79,95,93,103,98,100,108,107,102,101,100,117,102,105,109,109,92,110,96,95,103,105,101,92,95,98,105,100,94,94,101,96,95,95,102,113,98,105,99,110,101,108,104,104,103,98,79,92,103,89,102,101,99,119,94,95,122,98,93,81,101,100,95,106,103,103,80,92,87,103,106,85,88,104,97,103,98,110,91,115,106,96,105,105,108,95,93,110,100,98,88,101,96,96,102,82,96,113,107,94,98,132,117,99,94,92,96,79,95,99,105,95,87,97,85,108,97,91,98,95,120,100,93,81,96,105,103,95,101,99,97,103,91,103,91,104,100,100,99,103,99,83,103,97,109,104,100,116,109,101,105,84,103,95,95,98,100,97,100,99,94,114,98,99,106,112,107,110,108,102,100,106,94,106,95,98,89,107,108,97,91,92,110,99,107,104,114,90,95,100,106,92,98,101,110,106,95,101,90,96,105,107,103,95,93,100,92,98,103,113,97,91,106,96,98,101,97,91,95,106,99,98,98,104,109,102,99,89,108,114,90,95,87,98,111,99,87,87,100,95,100,99,99,91,102,100,107,106,88,89,100,102,101,99,99,97,102,96,102,86,99,102,98,106,115,108,96,102,104,104,100,98,105,101,94,96,100,90,87,98,93,92,109,102,103,93,101,88,79,98,98,100,98,93,90,104,103,99,102,114,97,90,107,101,93,105,96,101,83,103,86,106,101,101,94,88,91,103,91,92,89,98,88,104,101,100,105,96,101,92,126,102,76,104,106,114,99,89,108,99,103,96,101,101,96,99,93,97,102,92,105,107,100,109,98,105,101,100,107,98,111,98,81,107,98,105,100,98,114,114,103,108,100,105,98,104,105,98,114,94,100,97,94,99,102,99,97,101,97,88,95,95,100,96,113,105,91,104,94,101,95,94,96,95,98,94,84,94,103,99,100,97,95,95,92,106,106,104,105,98,98,116,107,98,97,91,99,93,98,91,68,84,103,92,86,97,103,114,82,93,103,88,106,84,119,87,98,95,95,113,90,99,86,96,105,100,95,106,106,94,103,96,102,113,100,95,98,118,96,99,101,93,103,89,114,104,98,107,107,92,99,107,101,108,110,102,104,89,113,84,110,91,83,99,104,105,94,97,104,102,100,94,90,94,103,101,99,96,91,108,100,106,98,104,106,97,90,101,100,98,94,96,93,103,101,104,85,101,105,98,95,82,100,94,92,92,97,95,101,86,90,105,95,101,108,96,111,91,104,100,90,98,94,115,99,98,97,113,92,100,96,96,112,93,113,84,103,91,105,87,100,102,113,102,106,89,101,96,97,97,104,103,110,95,99,98,89,108,89,93,110,101,98,103,96,98,112,97,105,113,107,94,89,97,99,102,94,104,95,96,95,92,109,108,103,92,105,102,103,104,100,99,90,101,98,103,98,99,96,94,103,79,104,96,106,105,91,93,106,99,101,103,108,80,95,100,86,99,100,99,113,79,99,97,94,105,97,98,95,92,102,108,101,100,103,102,102,88,97,94,103,88,105,106,72,110,104,99,108,96,87,94,94,97,114,107,89,111,103,99,102,103,99,100,96,100,94,100,68,91,97,97,94,93,103,108,104,101,91,99,104,104,104,113,96,100,78,90,100,105,102,100,96,96,105,108,92,90,112,93,88,109,92,106,114,83,109,98,107,105,99,78,115,106,101,98,105,83,105,104,99,96,93,113,102,110,101,118,106,109,92,88,94,100,104,92,98,101,108,103,102,92,91,102,70,101,88,73,102,84,102,107,104,91,115,89,102,96,102,101,113,100,98,106,97,109,83,98,105,98,107,100,88,99,106,92,93,88,94,101,102,103,102,106,85,101,122,97,85,98,99,102,100,104,93,99,110,96,92,92,91,95,100,101,106,103,102,112,106,98,100,106,108,91,102,83,84,93,97,101,90,109,101,102,95,93,104,92,102,108,101,98,107,91,101,98,90,98,110,94,102,92,88,103,98,92,115,108,94,123,99,88,95,102,102,102,99,108,107,97,104,103,94,106,91,105,100,98,93,109,91,111,88,86,100,96,99,99,89,102,92,105,107,99,111,90,101,113,101,105,96,66,105,104,95,101,110,95,98,104,108,103,105,103,90,97,94,86,93,82,96,98,113,104,86,89,94,106,110,104,91,98,100,99,95,90,104,94,92,101,100,89,102,91,98,109,104,101,99,92,106,97,98,106,104,113,97,100,90,103,102,99,104,103,83,98,103,105,110,111,102,106,94,103,111,96,104,95,106,84,100,106,98,98,102,98,93,110,105,87,99,107,98,104,100,105,111,102,94,98,112,102,95,92,109,88,81,110,104,102,100,105,97,94,93,97,98,88,85,99,104,111,85,103,91,83,105,100,90,94,109,112,99,104,108,99,96,100,95,96,98,98,105,87,99,104,87,95,101,98,109,98,104,96,97,108,97,73,104,102,103,105,101,105,108,97,102,101,98,105,106,106,96,83,97,103,122,95,90,96,99,96,104,115,105,98,111,101,80,99,98,97,96,92,105,99,76,101,97,101,96,89,110,111,93,105,102,98,100,108,108,107,90,99,92,95,97,91,93,99,94,95,95,104,108,94,95,96,91,100,108,101,91,95,100,94,100,112,98,99,97,100,100,98,94,96,101,99,97,96,111,98,94,107,107,106,99,87,97,93,74,88,101,96,105,102,103,111,104,96,102,95,101,98,92,84,101,94,105,95,111,111,94,101,94,95,99,98,107,85,96,106,100,92,100,83,108,102,98,113,91,106,113,91,105,99,106,96,95,125,104,105,90,100,91,95,83,109,85,94,101,103,109,91,112,92,103,95,102,99,106,98,106,97,109,102,101,100,94,88,95,100,95,84,63,105,91,97,101,95,102,82,106,106,88,113,100,107,94,114,127,98,95,97,87,107,87,99,92,95,101,105,84,106,101,93,98,98,104,97,83,63,100,107,107,107,105,102,102,89,99,90,121,105,97,95,102,106,71,94,95,95,111,93,102,102,104,104,118,112,88,95,106,105,101,90,102,117,102,91,93,97,85,105,102,124,100,81,108,105,100,104,103,99,96,100,97,101,116,99,93,97,105,116,108,104,105,95,100,117,99,116,108,100,88,90,98,93,94,99,95,95,99,101,93,99,90,98,100,93,97,94,91,106,106,97,108,103,125,98,97,103,101,71,110,101,96,110,101,101,104,80,104,107,108,113,104,87,104,112,108,93,96,107,107,117,104,81,97,96,107,96,92,102,98,99,114,96,91,98,92,108,91,87,95,107,108,116,107,97,95,102,100,96,95,107,112,112,105,103,96,102,109,108,99,89,100,89,101,105,107,96,111,95,98,104,104,94,95,107,111,92,107,97,101,106,107,99,102,100,105,100,93,90,92,94,96,93,107,102,100,98,109,93,91,92,104,91,91,92,98,93,112,97,107,87,111,100,98,101,84,98,89,97,86,94,104,92,102,93,99,89,91,104,93,105,106,86,74,85,109,101,86,98,96,98,91,109,102,91,99,103,99,100,107,98,96,97,96,95,92,103,96,90,98,99,88,113,101,107,92,99,97,88,94,101,99,85,100,105,101,97,100,95,101,97,111,105,113,104,106,89,92,103,109,74,90,97,98,107,108,104,89,99,94,101,97,106,99,94,93,105,83,95,110,100,92,98,101,106,101,96,80,92,84,100,88,92,91,101,97,91,97,105,111,95,103,92,87,102,85,107,111,111,87,98,98,96,98,90,102,109,106,104,73,107,104,97,94,82,101,103,97,106,92,95,99,107,109,102,99,102,101,105,93,95,90,99,81,100,103,91,99,97,94,90,101,94,105,95,109,104,95,96,94,86,93,104,90,99,96,92,80,115,93,91,108,70,102,95,96,98,101, +393.21481,96,87,91,98,94,113,104,85,98,106,86,111,95,106,106,100,85,108,98,108,101,96,96,104,103,98,94,103,109,108,103,125,93,115,113,94,111,88,99,101,111,95,109,106,106,99,99,100,96,102,105,104,98,99,99,91,108,100,110,93,105,101,102,98,110,110,93,102,99,100,106,114,95,103,98,102,94,105,101,99,111,104,121,100,109,98,103,98,80,97,94,92,95,109,72,97,105,104,105,92,98,102,92,84,88,105,88,89,93,98,102,105,102,105,106,98,99,106,100,112,96,78,91,106,110,100,113,93,107,111,106,101,89,111,103,95,103,98,99,91,100,97,95,94,105,86,101,120,95,94,76,102,95,91,91,102,96,98,80,90,102,105,105,95,98,90,89,99,110,89,97,106,101,97,99,108,113,100,103,82,95,101,102,92,100,105,100,87,106,86,108,103,96,89,94,102,96,95,94,98,97,93,102,92,104,100,98,106,107,113,90,120,91,92,93,111,94,99,109,94,93,99,98,99,99,99,96,84,96,100,95,104,87,89,100,91,104,94,99,98,101,98,104,101,87,103,99,106,111,111,95,100,93,105,97,106,91,100,93,99,102,108,100,94,100,116,104,94,102,86,101,103,99,97,113,90,107,109,90,106,98,100,100,112,103,102,104,103,104,95,104,100,83,105,107,97,104,105,111,102,102,103,92,104,105,102,103,96,96,87,91,95,105,90,99,108,102,98,101,94,97,100,111,94,92,103,102,102,115,103,90,109,99,101,109,101,106,120,88,95,91,106,101,91,105,105,101,103,97,106,105,100,96,97,88,102,109,97,110,109,103,100,119,113,94,97,87,93,94,103,100,100,95,91,90,96,94,101,93,99,108,103,101,109,100,100,99,95,101,105,105,113,103,98,95,106,98,99,96,109,90,103,103,97,113,94,104,98,93,97,84,118,95,100,109,111,101,101,106,104,91,100,87,104,92,100,64,103,95,113,94,112,125,100,105,109,105,97,84,103,96,92,98,101,101,96,103,102,104,95,91,98,112,101,105,93,105,86,105,91,102,103,98,103,103,108,92,98,106,106,100,97,101,108,106,98,101,113,108,93,108,109,103,112,96,102,75,95,90,95,98,104,109,110,96,98,105,109,98,91,101,109,109,97,91,88,96,103,94,109,99,102,100,98,100,89,95,109,101,101,103,96,96,98,107,80,107,69,108,107,93,103,107,95,95,66,96,103,85,108,99,101,93,93,108,94,96,100,98,100,100,110,96,103,96,96,101,92,93,105,95,97,92,104,100,99,106,95,103,103,89,94,99,109,105,94,97,106,99,89,95,96,98,116,98,102,104,104,100,90,111,114,99,100,106,97,100,82,102,104,90,91,104,104,98,94,88,97,103,105,99,99,108,98,134,108,105,101,101,96,108,106,92,105,109,102,96,108,94,105,100,83,99,107,97,103,91,94,88,102,86,122,103,100,106,94,89,103,129,103,105,102,98,102,97,105,98,104,98,99,82,105,111,103,105,100,106,85,110,96,110,88,116,98,96,111,103,106,98,105,106,100,114,90,96,96,105,100,109,99,94,114,93,107,95,94,103,96,93,84,95,75,85,86,81,100,105,101,107,104,96,101,110,90,88,89,100,109,106,86,86,92,110,109,80,95,109,106,118,100,79,113,97,112,96,104,102,91,107,103,98,108,89,105,75,95,109,109,93,99,75,91,95,97,99,102,108,103,99,91,96,86,92,100,79,107,78,105,105,91,100,100,106,102,101,92,100,104,101,110,99,91,111,94,99,117,103,101,101,100,115,100,90,105,105,99,102,116,99,101,110,91,97,100,113,120,94,92,104,100,101,108,124,106,101,92,110,108,113,100,87,97,102,105,96,103,97,103,90,96,98,117,103,87,87,105,95,95,114,95,99,97,96,101,98,85,103,95,99,106,94,107,108,98,100,102,100,63,91,100,95,107,109,110,98,93,97,101,104,102,111,99,92,96,106,101,99,101,109,111,67,97,107,95,98,105,102,115,100,105,103,98,99,106,99,103,90,110,97,101,95,106,110,103,100,95,89,113,99,99,91,91,100,108,98,108,86,99,102,107,112,119,98,106,102,92,93,113,113,96,100,101,112,97,102,93,107,108,106,80,91,109,108,92,96,96,97,108,101,108,99,107,104,95,97,82,116,90,104,96,91,107,105,100,80,81,90,89,101,105,103,104,108,91,101,108,91,95,96,113,93,103,100,105,92,97,102,97,72,107,109,102,96,109,95,95,103,101,93,103,96,90,108,101,103,93,99,108,101,98,90,92,92,104,97,99,103,90,102,96,98,107,95,97,99,108,84,106,113,98,106,101,100,99,101,98,107,77,105,95,103,87,78,92,105,103,95,97,93,89,98,107,94,109,102,91,105,99,100,100,101,103,108,105,101,89,100,101,79,100,103,105,106,103,119,101,105,104,83,95,101,92,92,105,102,91,86,72,95,98,99,105,101,93,129,108,78,100,104,106,90,87,95,99,104,109,101,91,102,92,101,100,109,95,89,100,80,98,105,101,93,93,83,90,108,78,99,108,89,105,92,110,102,93,103,87,93,91,105,106,92,86,88,115,96,104,95,105,110,108,98,93,103,97,95,99,93,104,99,98,93,90,97,88,105,101,99,91,101,99,87,103,105,101,96,101,99,93,100,102,99,101,73,113,114,95,109,90,108,102,104,95,93,109,100,122,87,88,99,112,97,88,98,104,103,102,97,97,95,109,104,102,89,111,107,100,105,98,109,95,103,102,100,100,99,107,98,112,81,99,116,95,96,104,114,104,87,106,92,100,106,98,106,85,101,104,112,99,86,101,95,102,106,90,95,108,99,103,100,102,111,114,96,100,120,96,97,92,92,104,107,115,103,109,102,96,92,106,98,101,101,103,97,94,112,95,93,95,99,102,88,87,89,91,107,95,101,101,97,91,89,81,116,104,102,105,97,87,102,107,99,78,98,95,97,106,101,96,105,109,95,112,100,103,105,105,101,76,92,90,98,91,97,85,103,95,101,94,99,93,94,105,100,105,93,94,105,92,95,102,97,108,95,105,101,100,96,94,98,100,112,108,78,94,94,119,100,102,86,96,95,89,91,95,92,115,116,99,97,98,83,100,86,94,80,101,97,103,113,111,88,106,98,114,100,105,94,90,104,105,108,95,105,100,92,111,107,116,101,103,102,98,97,115,104,98,100,98,102,96,95,95,90,84,97,101,106,91,99,100,70,90,102,96,111,101,99,95,102,108,106,103,104,96,94,104,86,136,110,91,100,91,100,98,106,97,103,96,100,98,98,105,97,96,102,106,90,100,112,101,90,105,100,101,85,105,95,106,100,110,82,107,105,102,91,104,102,104,106,113,95,102,101,100,91,120,98,97,117,104,104,100,96,93,102,99,101,101,100,102,101,94,98,104,98,101,93,92,101,94,93,113,109,95,101,96,96,97,98,100,105,99,99,83,96,101,102,84,98,87,103,101,107,120,101,106,96,99,110,99,96,104,104,93,98,104,98,113,102,99,99,99,95,96,87,100,87,99,91,102,90,97,99,87,105,102,96,96,89,81,90,91,98,100,116,94,99,98,110,106,87,98,97,99,108,87,88,96,91,92,102,95,92,95,96,93,93,97,121,87,100,95,101,109,113,97,101,102,107,108,107,105,97,109,109,80,102,112,86,93,98,100,95,89,91,105,110,92,102,102,102,101,100,97,92,95,111,93,96,67,107,95,93,101,106,112,113,94,103,93,94,100,106,97,104,92,106,98,97,114,95,102,90,110,102,96,98,104,101,96,66,97,98,108,98,105,106,106,79,93,102,105,106,109,92,112,102,98,94,91,107,91,100,97,100,101,105,102,101,102,104,108,104,94,96,101,101,94,101,102,104,104,79,132,109,98,106,94,109,106,104,95,112,89,97,100,100,93,87,108,87,91,85,105,90,101,89,100,91,96,105,92,98,89,102,98,102,111,102,113,99,100,98,117,97,95,101,98,89,103,103,102,96,104,94,103,99,100,106,102,97,105,101,92,104,103,90,91,98,106,102,89,102,94,100,97,103,108,90,92,103,106,94,109,105,107,103,99,95,96,89,110,86,101,106,99,101,93,97,90,101,85,99,105,78,116,111,103,103,101,108,81,101,97,100,92,71,103,97,85,103,107,107,97,95,99,102,113,110,105,107,77,110,105,83,104,107,97,83,90,101,96,88,99,104,99,101,96,100,98,95,84,108,101,102,105,101,94,106,108,107,102,100,104,102,83,109,101,92,105,108,99,87,107,107,98,99,97,104,103,95,83,97,91,88,117,99,96,101,100,106,88,108,98,99,90,98,97,76,92,90,99,108,113,75,89,108,103,94,100,90,109,102,95,89,99,102,98,108,102,97,93,104,99,106,108,94,96,106,102,115,104,89,107,96,99,89,87,98,102,101,97,110,98,109,83,100,96,99,89,94,105,91,113,114,118,102,112,101,105,98,97,96,93,87,98,110,103,96,109,94,93,98,100,92,105,104,107,105,108,109,114,102,96,98,92,112,105,99,76,99,108,123,99,110,88,98,105,99,112,98,88,105,91,103,101,105,88,100,96,104,94,99,96,101,109,86,95,96,98,104,103,106,100,103,103,102,98,91,99,92,98,111,104,91,104,92,88,103,101,95,90,90,121,96,91,108,97,99,114,97,102,102,85,98,82,92,91,102,101,95,108,100,106,102,96,107,91,99,101,104,105,104,100,86,102,105,103,78,103,112,94,111,98,104,85,102,99,93,78,79,82,107,90,91,101,92,98,102,88,93,98,90,113,94,102,96,100,91,102,89,106,93,109,90,113,96,96,100,97,101,112,95,97,99,111,105,91,94,85,107,102,108,117,83,101,90,87,95,105, +393.35489,100,118,104,96,84,95,109,95,95,99,87,100,100,113,103,110,90,84,95,93,104,94,96,113,98,94,108,93,111,95,103,104,93,90,103,94,95,106,107,110,100,97,97,113,106,98,99,104,98,104,93,107,98,98,115,94,105,102,102,105,105,98,103,98,104,101,94,96,105,103,96,101,105,103,82,97,90,97,110,86,99,96,99,107,101,109,104,94,92,103,98,106,103,92,93,97,100,92,81,100,99,88,106,104,106,91,89,73,93,88,99,106,102,91,96,93,108,98,103,110,105,101,98,100,99,122,97,89,105,96,92,109,99,99,98,93,101,94,95,88,96,118,100,94,108,110,104,101,93,95,91,98,95,102,95,69,105,96,111,96,101,105,106,97,95,110,94,98,94,102,91,95,99,106,105,91,108,93,95,102,104,97,105,103,88,92,102,87,106,107,67,113,96,97,94,115,95,98,110,106,102,97,98,112,104,100,101,105,113,104,97,100,96,95,102,95,121,106,92,107,106,101,86,109,93,86,95,109,86,95,102,99,110,100,102,108,104,108,101,106,92,100,109,99,99,100,109,98,105,105,94,105,97,101,103,91,108,115,99,106,105,109,91,94,103,83,96,89,99,88,105,98,102,89,104,100,93,89,103,94,100,103,90,75,91,87,96,98,89,96,105,94,101,105,97,113,101,96,100,109,97,100,101,99,103,106,99,106,92,105,98,100,92,99,109,101,103,102,105,113,109,94,99,98,116,103,101,107,113,106,101,90,113,103,96,109,101,98,100,94,99,99,98,96,105,114,94,102,111,99,102,70,109,108,107,95,95,105,95,104,101,102,90,108,79,102,100,114,98,108,105,96,94,104,92,89,109,103,112,113,116,107,96,111,84,95,94,97,104,86,107,119,105,109,107,93,93,111,96,113,98,97,97,97,117,105,91,109,99,93,98,88,101,101,110,123,97,101,108,101,105,94,100,96,110,92,91,89,92,108,93,100,94,101,96,119,93,99,109,102,122,110,87,97,98,100,102,108,127,119,110,95,113,118,93,91,96,87,121,88,89,117,74,105,108,70,107,106,103,97,91,99,95,108,102,96,105,98,113,99,85,105,115,99,91,101,117,107,103,91,108,106,103,95,97,82,95,104,113,96,104,97,98,93,112,96,103,102,99,85,94,95,104,99,94,111,101,89,99,94,97,94,106,94,101,100,115,91,91,97,75,105,97,117,95,100,118,95,88,109,105,91,97,95,106,98,104,105,114,110,92,110,120,109,91,110,106,102,101,102,119,91,108,104,107,102,99,112,97,102,97,101,94,117,92,94,99,94,92,106,99,86,108,98,100,99,104,112,117,100,101,112,87,98,125,106,94,110,87,100,101,101,104,96,113,107,95,109,95,112,91,101,109,98,102,95,95,101,98,102,100,101,89,95,105,97,77,99,95,101,97,99,102,96,98,99,100,95,108,103,96,98,93,97,100,86,96,100,105,99,108,109,103,120,109,98,129,108,98,108,97,108,105,106,104,91,91,141,112,107,107,92,94,85,79,103,104,113,108,80,96,105,96,100,101,100,91,105,110,101,117,93,94,98,85,109,104,105,102,100,100,99,93,102,108,109,103,108,106,94,72,95,95,108,90,97,95,114,93,109,96,93,101,101,99,97,74,84,108,104,111,103,104,106,102,100,103,99,97,104,98,101,111,95,87,114,106,72,110,101,107,104,82,92,106,94,96,106,108,98,103,93,91,87,89,95,94,85,106,87,105,104,101,102,106,94,110,107,101,81,100,96,107,106,97,102,96,104,105,73,100,106,91,110,107,113,96,105,102,101,99,97,99,110,108,106,102,95,106,104,107,107,105,113,97,114,106,102,99,92,93,108,104,105,104,109,100,108,95,111,100,95,101,118,98,105,91,93,99,96,104,98,105,101,84,98,95,100,104,98,104,83,98,100,104,99,94,92,97,96,87,96,113,117,105,105,100,97,110,86,100,106,97,98,106,100,92,95,92,106,100,105,115,110,106,61,99,109,104,104,98,95,99,99,102,85,103,103,100,105,94,101,87,92,74,92,68,100,106,100,94,103,103,120,105,92,106,109,91,100,98,128,103,95,104,103,109,87,96,99,77,100,109,106,97,99,101,98,105,98,99,103,90,112,101,104,91,105,95,109,101,100,99,106,101,96,92,96,98,111,102,99,104,99,106,98,102,87,95,89,88,102,104,97,109,114,99,104,97,106,96,120,92,103,102,94,92,102,105,78,112,102,106,103,91,98,95,110,107,94,96,104,101,91,104,94,95,104,110,101,106,116,88,95,94,109,104,101,103,101,89,104,100,95,95,95,88,100,100,128,100,102,107,108,94,99,100,112,106,99,100,102,93,103,94,85,96,95,103,95,97,84,107,90,104,98,70,104,95,95,96,94,109,94,106,88,102,112,104,108,101,98,94,102,96,95,92,101,103,104,108,103,104,106,103,102,106,105,101,110,104,110,110,90,96,98,103,99,90,116,98,101,88,98,95,110,101,105,107,104,100,86,102,102,99,100,94,102,90,110,100,112,99,101,101,104,94,98,100,96,94,106,101,113,96,95,106,110,90,109,90,94,95,110,96,102,103,104,98,110,102,106,108,100,104,92,109,104,103,109,95,95,100,108,116,110,100,95,88,101,99,110,100,103,109,105,100,98,98,99,99,97,105,113,106,104,109,109,85,96,98,113,101,98,84,77,99,84,106,95,101,97,108,94,98,124,101,101,92,102,104,97,96,98,102,99,116,108,97,87,113,105,92,88,104,92,103,116,87,92,95,101,90,116,106,114,106,94,103,110,97,103,95,101,116,95,98,90,98,108,105,98,102,98,110,108,93,106,97,111,98,104,100,95,106,98,107,110,90,117,109,92,104,111,101,75,96,100,102,97,99,115,91,101,103,95,100,104,105,94,104,97,92,92,83,104,99,90,96,92,105,104,100,97,94,95,99,100,98,116,93,100,97,90,91,105,101,93,108,101,126,108,104,102,109,98,110,102,114,119,94,98,90,100,106,96,104,113,102,102,93,113,116,100,100,108,83,101,106,109,87,104,100,109,108,102,110,107,94,94,101,97,93,108,116,107,98,100,113,98,96,113,93,106,104,109,102,92,109,94,96,104,105,105,102,97,99,107,95,107,105,97,104,105,103,103,100,98,103,103,97,107,85,104,91,100,95,106,103,99,87,96,110,116,101,105,80,98,95,100,103,106,96,109,113,86,105,86,103,100,96,102,101,110,105,107,92,106,100,97,96,99,107,96,108,70,107,105,98,103,105,94,102,106,93,123,114,87,95,97,97,108,87,92,104,101,102,98,110,106,102,84,102,97,99,93,96,104,108,91,89,97,84,101,108,95,95,96,100,95,96,103,101,100,97,116,99,98,98,95,90,96,94,105,97,88,99,68,104,102,106,102,104,88,108,110,108,108,100,120,102,102,109,94,99,84,113,67,106,94,102,95,103,95,106,94,103,91,106,85,105,107,98,100,111,97,96,101,108,104,84,107,102,91,95,95,99,109,96,101,97,91,98,97,93,104,89,96,95,108,98,100,95,70,96,116,107,101,99,105,93,98,108,103,104,100,108,98,104,100,74,106,115,96,99,103,107,96,83,92,90,98,96,90,102,96,100,95,101,111,100,90,111,106,99,95,98,104,100,93,101,96,97,90,88,97,106,95,104,96,102,97,90,106,98,103,101,127,101,101,102,99,101,93,108,94,92,117,95,91,98,95,98,100,104,92,95,102,91,97,99,104,99,106,93,88,92,99,112,100,83,103,94,108,89,105,100,110,101,107,109,93,102,99,105,109,94,100,94,109,97,80,87,101,89,88,92,97,97,99,116,106,94,91,103,103,98,91,84,111,103,102,94,84,107,104,105,88,95,97,95,106,109,106,102,96,95,87,101,67,103,98,106,107,104,94,100,107,79,103,93,101,89,96,102,111,105,96,90,113,104,103,109,100,113,91,106,95,103,95,95,109,94,105,111,108,95,88,99,106,99,91,96,96,111,98,106,110,104,110,104,101,90,90,107,95,96,105,105,104,94,112,102,98,103,111,100,110,116,103,87,106,88,98,101,86,111,113,94,104,103,109,93,87,92,101,102,96,99,102,94,104,94,113,101,91,117,107,87,96,100,99,97,93,102,90,117,104,99,100,111,114,105,93,109,91,87,107,116,96,107,97,94,93,89,96,100,92,96,94,116,92,107,107,97,97,102,102,106,105,108,92,100,108,91,111,106,102,93,110,105,95,91,96,96,100,113,101,98,109,100,114,106,105,103,97,103,100,107,106,112,99,98,100,109,105,96,107,84,88,108,89,103,117,94,102,109,107,94,102,79,100,102,105,105,84,92,94,106,106,99,91,91,101,102,102,108,83,87,91,104,83,99,93,101,102,105,104,104,91,99,100,102,101,92,99,93,96,100,95,91,101,112,101,105,99,90,109,98,105,97,105,101,86,112,101,85,95,99,91,100,87,87,100,99,101,98,109,100,97,97,95,104,98,80,92,102,109,106,104,101,104,94,93,98,87,97,102,99,102,100,94,102,99,113,94,102,108,103,95,100,92,99,120,105,102,101,102,100,97,101,105,95,98,97,96,107,92,100,100,106,95,109,92,83,99,95,98,105,94,99,96,101,98,97,97,100,101,92,86,92,103,103,90,90,102,102,107,89,105,102,110,100,100,89,97,88,98,99,94,94,95,92,98,102,96,101,100,97,86,100,106,106,97,95,84,97,114,89,105,96,92,100,113,97,101,107,104,97,90,105,97,106,103,105,101,97,98,94,100,99,101,98,92,100,106,90,97,88,99,99,109,120,94,98,97,84,83,98,101,104,100,99,97,99,100,102,111,96,116,102,101,105,101,112,94,101,103,111,90, +393.495,104,108,108,103,94,104,102,125,99,113,95,97,107,93,95,110,96,93,92,89,92,96,103,96,110,108,98,93,88,100,93,97,100,105,110,92,102,91,105,109,86,106,102,110,112,109,97,87,95,105,90,100,110,93,92,92,93,92,97,100,108,96,92,95,108,105,91,94,94,102,111,103,100,100,99,81,100,94,112,95,95,100,103,108,115,99,86,102,94,107,104,106,73,92,104,107,91,105,97,101,96,114,98,101,97,95,99,101,100,105,101,100,98,90,92,105,101,111,105,92,98,92,107,103,94,116,109,101,120,109,103,100,101,117,102,98,98,98,104,88,91,98,104,100,101,86,91,102,101,93,107,99,108,102,92,112,105,105,109,109,105,108,95,100,101,108,87,107,100,101,89,99,102,103,120,105,104,99,99,102,113,111,95,109,103,98,104,76,104,105,97,105,103,99,90,95,117,82,107,98,104,93,117,88,113,85,94,93,108,116,103,98,104,110,106,101,92,91,92,96,98,117,95,86,102,97,113,98,99,104,98,97,111,89,94,106,95,103,81,112,97,112,117,95,98,99,102,104,102,99,93,101,101,101,109,105,89,98,101,95,96,95,86,97,103,92,77,90,117,102,94,99,104,90,112,97,86,99,96,70,106,95,96,120,113,93,94,110,97,100,93,108,105,98,105,103,79,92,100,100,93,79,97,96,91,105,110,88,109,101,101,101,105,95,102,99,111,96,101,94,88,102,99,99,108,100,96,103,96,109,105,103,104,92,74,105,111,112,93,110,103,101,89,94,78,102,95,99,95,112,108,92,104,90,95,94,100,97,107,107,77,100,94,102,103,105,92,97,93,99,93,117,98,98,103,95,100,100,104,100,107,111,92,106,114,103,98,103,113,91,110,90,96,99,100,101,103,88,95,103,101,92,94,95,101,91,85,98,90,89,93,99,97,96,100,106,111,91,106,101,93,98,100,104,95,101,108,95,93,101,99,104,110,107,96,98,101,105,99,102,98,96,90,96,103,98,97,99,110,105,101,117,95,114,101,117,99,108,98,95,85,102,99,102,106,112,92,101,103,97,103,107,105,105,109,100,90,107,91,103,107,91,105,90,102,89,92,100,94,96,102,114,106,99,99,109,90,98,102,105,106,92,106,112,99,100,102,108,98,86,102,94,92,104,93,99,97,98,90,92,104,102,104,83,105,104,107,97,96,103,116,73,98,111,104,90,107,107,89,95,99,104,97,90,125,87,96,104,112,113,110,111,106,111,101,87,98,103,95,91,98,95,107,100,111,92,102,103,98,101,90,87,101,94,104,100,98,106,103,100,113,96,97,108,97,113,92,98,98,99,96,99,98,86,105,111,100,99,109,94,97,98,99,103,96,103,113,101,104,99,105,97,100,103,104,93,105,105,98,119,97,102,99,109,104,98,95,106,100,96,90,103,88,105,104,93,100,94,131,94,112,92,99,97,91,92,91,108,106,86,106,99,105,96,92,106,103,104,95,89,112,101,96,101,93,95,110,96,104,105,111,94,89,98,105,99,113,88,96,79,113,89,99,98,109,95,103,94,105,108,113,101,95,111,99,94,99,101,90,101,103,92,98,101,71,110,87,102,94,95,109,74,103,93,97,105,103,106,98,101,98,103,108,108,99,95,90,102,100,110,97,96,104,97,99,97,104,94,98,97,99,109,95,110,106,101,97,102,100,104,100,101,96,81,99,88,96,109,96,106,87,100,89,104,104,97,87,98,101,102,117,97,102,94,113,108,104,104,105,91,99,104,99,119,110,94,100,96,108,103,100,116,104,97,105,121,94,103,106,110,100,96,92,105,100,98,103,105,93,99,95,95,94,85,100,93,100,102,113,100,101,98,109,102,106,101,97,107,93,82,103,94,112,100,112,94,98,94,86,109,98,104,106,109,97,109,101,97,95,108,118,91,103,93,92,98,94,104,110,99,107,96,95,91,103,94,100,65,105,104,101,98,93,103,101,99,101,107,91,77,126,99,97,97,86,106,99,106,91,102,99,110,98,105,99,103,102,105,97,112,103,100,101,105,99,96,109,99,101,106,82,108,113,99,104,110,93,104,109,111,104,96,105,99,96,101,111,92,91,96,112,98,103,100,103,114,93,98,106,106,101,95,104,97,106,97,101,111,109,107,105,109,118,102,102,101,105,101,103,88,107,104,103,100,103,94,95,102,118,101,99,96,101,89,106,97,87,94,108,96,99,104,92,91,97,100,113,101,90,106,105,102,104,91,110,88,97,104,94,111,103,107,110,97,90,93,101,100,98,94,94,101,105,111,89,116,125,100,104,101,100,101,109,91,118,97,131,107,102,85,92,95,103,106,120,92,99,113,95,102,94,99,101,78,92,72,104,91,93,106,95,114,89,99,106,101,90,103,101,96,97,103,92,93,91,95,97,102,103,79,83,101,109,87,90,99,102,110,103,93,103,109,82,101,86,96,106,100,110,108,101,117,105,93,109,87,115,91,95,106,96,97,104,100,108,102,104,108,113,94,100,109,102,98,96,102,105,102,91,103,95,90,101,110,88,97,100,102,110,105,85,99,97,101,105,96,101,110,99,87,90,106,88,99,97,101,100,110,98,99,115,94,97,90,114,105,109,89,90,95,90,107,101,85,103,104,99,111,108,96,88,93,97,106,96,107,103,96,98,92,127,79,101,100,110,101,105,98,103,113,87,94,101,102,96,104,82,102,102,100,93,108,116,97,95,96,93,127,102,93,99,98,83,82,106,98,105,112,130,98,91,107,110,91,94,95,94,116,105,95,104,91,87,94,100,100,97,91,109,109,100,99,95,83,93,92,108,92,87,102,101,102,94,94,102,93,97,102,89,88,95,87,118,109,102,107,88,92,92,103,105,94,104,99,99,96,95,95,95,85,105,103,89,75,107,105,96,106,91,87,101,103,97,98,100,100,96,104,111,109,109,116,105,101,111,80,102,112,107,90,94,104,103,90,108,102,99,98,96,108,98,92,109,110,122,92,100,103,98,99,104,95,104,112,97,104,105,94,107,96,98,95,105,102,98,97,100,99,93,101,91,106,102,97,100,97,99,109,90,98,104,91,101,116,104,95,112,91,93,93,84,101,93,108,103,93,96,105,119,101,106,97,98,103,99,95,101,98,102,102,104,102,97,116,117,103,106,75,107,92,90,105,94,95,102,89,111,95,101,101,102,106,109,101,108,95,95,105,103,100,111,98,108,95,98,101,94,93,88,91,111,97,95,100,89,104,107,107,100,99,105,105,113,93,105,101,105,96,109,98,85,96,91,104,87,107,102,102,106,90,91,116,109,89,105,93,105,93,102,102,95,99,101,99,109,100,101,103,99,102,109,96,103,107,112,107,96,100,97,96,103,104,95,101,103,118,104,101,107,105,87,101,96,112,67,129,99,102,93,101,103,92,98,110,84,93,99,102,104,94,115,97,88,111,88,101,92,94,108,102,97,86,111,100,98,100,88,105,88,113,102,88,96,97,95,83,121,101,101,101,98,111,91,109,92,92,108,109,95,81,117,99,88,101,112,109,100,108,99,89,98,109,107,103,101,98,98,102,111,91,98,95,99,95,106,78,101,96,99,96,100,86,117,107,90,92,70,95,108,101,101,83,103,108,98,87,96,97,102,100,107,108,96,119,92,98,99,98,92,100,109,120,96,96,106,92,100,97,105,99,96,99,98,100,102,92,100,97,104,112,103,96,95,90,111,102,105,94,104,79,93,87,100,87,101,97,98,96,95,96,103,107,102,103,67,104,88,105,94,101,96,109,97,99,95,97,83,90,89,100,97,100,92,104,95,97,101,96,100,109,94,113,92,98,95,102,110,98,107,90,109,100,88,105,115,91,96,104,104,96,103,97,105,100,115,89,93,108,105,83,102,104,71,110,92,100,119,97,100,97,100,86,112,105,90,106,97,90,95,103,104,97,109,75,93,98,118,109,94,103,100,103,100,113,102,97,106,90,98,105,104,93,96,99,99,104,104,96,103,110,99,86,98,87,90,98,108,95,98,102,97,108,100,109,111,105,103,100,101,88,86,99,97,96,99,105,99,100,98,99,96,113,96,94,100,107,100,95,84,97,96,98,96,96,104,106,104,95,101,95,104,87,94,113,97,94,112,103,109,93,109,96,101,96,117,108,108,101,95,102,106,100,87,102,104,104,93,99,95,99,108,108,98,98,103,103,103,89,103,95,98,108,101,99,100,99,113,107,111,109,99,100,99,104,103,105,112,106,99,84,101,97,107,101,89,101,83,107,92,117,97,90,93,106,98,110,102,101,108,96,77,101,105,101,105,96,91,97,94,101,88,90,99,95,82,106,105,106,108,95,84,93,107,94,93,96,113,92,103,92,97,125,117,102,94,107,96,98,98,101,87,87,99,85,94,100,110,102,98,98,110,87,100,101,106,99,81,97,107,103,108,105,98,96,100,97,97,98,110,89,101,100,91,102,109,94,96,98,93,98,94,93,97,108,88,97,102,110,83,87,97,100,97,88,90,109,103,87,113,93,97,101,97,87,115,101,104,71,98,93,93,112,87,121,85,100,110,105,94,103,97,89,109,102,94,94,101,96,95,108,100,101,99,99,100,109,99,95,95,102,99,104,100,106,98,100,107,104,97,101,90,120,105,96,95,109,102,99,92,98,97,96,94,104,110,94,104,118,120,100,97,104,102,112,98,104,99,90,93,85,120,84,97,94,93,104,95,92,94,99,100,93,98,100,97,104,106,93,117,96,107,112,97,99,99,91,98,85,94,90,83,90,101,89,99,94,74,118,81,97,92,103,79,98,104,100,97,89,97,109,81,106,102,106,98,81,92,96,108,92,85,88,101,100,101,108,94,99,93,90,97,97,95,93,103,84,99,89,84,91, +393.63507,94,94,113,86,86,100,76,85,88,104,92,98,91,96,101,98,90,86,95,83,103,94,114,97,102,94,97,105,88,83,104,98,93,91,107,106,100,99,100,105,93,128,104,101,94,103,98,102,98,102,100,96,107,93,96,102,100,86,97,84,100,85,104,98,97,92,93,103,109,92,90,99,93,107,79,103,106,103,110,107,112,99,105,96,108,99,106,94,97,101,106,106,93,105,88,92,106,94,96,106,100,103,90,94,97,100,85,99,92,91,84,94,102,108,101,87,94,101,96,106,92,89,99,114,103,102,116,111,101,98,90,101,100,97,98,96,92,110,83,101,98,90,83,94,114,98,106,97,96,107,93,91,99,78,95,96,83,98,101,102,104,104,103,89,88,102,103,79,86,87,105,93,104,95,96,103,93,87,117,102,102,100,92,108,98,83,94,89,106,101,97,99,79,104,90,100,93,94,103,94,90,92,99,101,90,102,89,104,112,77,104,101,109,95,110,109,93,87,93,93,99,103,95,96,96,99,97,100,95,116,98,103,109,102,94,95,106,94,93,98,90,97,100,100,100,103,93,90,101,99,97,103,112,92,100,104,98,100,105,99,121,92,108,103,104,99,102,105,116,95,97,107,94,96,95,98,105,107,99,110,101,109,98,95,96,103,97,94,99,103,84,106,96,100,103,95,101,107,95,95,100,94,99,100,89,98,116,85,90,104,105,102,107,92,89,97,95,114,95,100,104,98,111,107,107,109,97,93,97,101,100,105,101,96,101,87,104,102,94,90,89,109,113,75,96,118,103,97,109,96,102,94,101,99,93,96,104,95,101,102,92,110,102,87,88,93,99,105,101,99,95,98,94,95,106,95,96,100,95,103,94,84,97,104,95,95,102,100,79,99,100,100,92,93,92,96,116,92,114,103,97,97,97,95,107,92,113,96,111,92,97,90,96,100,126,80,108,101,126,99,104,83,95,95,99,94,104,99,98,99,95,97,98,87,77,91,87,100,87,102,102,102,111,92,97,99,87,98,107,112,109,92,95,106,80,101,98,95,101,98,95,101,107,101,111,102,99,93,96,108,113,93,100,98,81,89,109,109,103,100,103,111,101,91,93,96,101,99,92,104,101,114,103,89,96,87,91,97,101,122,87,93,90,100,102,103,100,94,84,108,106,99,101,92,98,105,92,101,88,93,109,98,109,105,97,95,105,97,92,79,80,104,97,87,112,85,105,97,90,99,99,96,76,92,105,95,103,104,106,106,106,91,97,107,104,105,78,113,96,107,104,104,107,96,91,106,112,106,104,101,97,80,73,100,87,91,85,86,98,94,104,102,102,113,106,112,93,114,96,98,92,90,95,94,105,99,90,99,109,121,88,93,98,110,89,104,97,100,120,125,96,90,85,86,114,105,104,108,98,108,110,100,92,109,105,100,111,112,104,101,100,100,102,110,94,105,90,95,87,104,91,102,100,96,98,87,98,95,112,112,79,100,93,99,97,91,108,91,103,110,100,94,93,101,98,101,99,76,109,97,103,97,94,97,84,105,98,92,99,90,98,116,82,83,96,98,93,101,95,105,103,96,103,91,103,85,98,104,98,94,103,103,99,94,94,96,97,101,75,97,110,105,105,81,87,83,97,98,101,95,101,91,101,104,85,99,85,103,91,99,92,128,87,101,89,122,92,83,100,106,99,100,92,100,103,93,101,109,106,105,112,94,102,90,99,97,93,111,93,105,97,108,101,108,88,96,91,116,95,83,99,110,93,102,97,99,98,103,95,95,102,102,96,99,101,94,99,98,92,96,95,110,103,105,103,96,101,99,86,104,96,101,80,98,97,117,91,93,101,94,111,96,105,97,105,118,94,98,108,105,99,99,111,105,99,76,130,98,101,100,106,100,101,107,90,120,95,100,104,90,95,110,108,104,94,107,72,94,98,102,97,107,93,98,79,96,110,103,93,94,96,113,96,95,96,96,83,91,90,98,82,114,100,103,85,102,105,105,93,95,99,95,96,97,90,105,92,105,98,99,87,99,103,96,97,100,108,89,110,96,114,96,93,94,106,103,90,106,102,91,106,108,104,82,101,83,103,97,92,106,94,95,104,101,121,80,95,100,94,96,105,99,92,106,99,99,112,102,109,102,112,97,95,102,101,98,101,108,93,108,112,102,103,102,104,106,95,98,110,96,98,103,95,92,87,74,101,92,107,103,106,90,94,88,100,101,107,91,92,94,98,103,95,89,86,98,98,97,104,98,114,101,82,104,92,102,99,95,112,115,94,94,88,100,109,95,108,99,110,85,94,91,90,96,98,100,106,105,89,96,128,102,103,96,99,84,86,98,90,90,103,113,100,105,107,93,102,109,101,104,107,109,103,105,94,93,93,93,89,104,91,94,100,103,95,89,89,102,113,104,93,91,92,91,97,98,93,103,106,97,95,101,97,95,95,97,93,92,93,94,99,109,99,90,103,88,99,81,99,110,91,113,96,89,87,106,100,86,101,103,95,89,102,98,99,102,84,97,97,105,101,82,95,99,107,102,91,99,67,91,98,106,96,108,85,103,93,102,109,97,90,103,97,104,97,116,103,91,100,96,83,102,101,95,102,97,105,84,76,99,121,99,114,99,102,102,94,98,112,108,92,91,106,100,99,102,83,99,98,104,93,126,109,93,101,85,95,106,109,115,103,95,94,101,99,105,109,115,106,102,98,82,93,98,100,103,97,99,98,85,89,103,115,95,125,101,104,124,97,101,102,96,98,105,103,108,103,119,103,89,120,105,90,94,103,94,97,99,100,101,93,101,102,100,102,89,96,106,96,91,108,97,107,96,103,93,91,83,99,111,100,102,90,89,96,80,91,109,92,104,113,69,101,112,98,105,108,100,102,101,100,109,110,110,92,106,94,102,71,103,112,102,106,100,103,116,101,102,104,91,102,115,97,98,107,101,112,113,98,98,97,106,91,115,97,96,99,98,98,96,107,98,97,89,96,92,96,95,103,84,104,115,102,106,104,86,94,107,107,102,87,95,98,98,102,97,87,109,94,102,96,105,87,97,105,103,106,99,95,93,99,110,109,98,99,86,103,97,105,98,97,99,88,103,103,85,99,79,97,99,101,86,85,111,106,101,83,105,101,90,87,111,107,101,99,88,101,93,103,97,101,92,89,85,100,96,114,94,104,100,114,97,107,95,103,101,92,102,107,105,107,103,102,76,105,108,100,91,104,111,96,98,91,105,98,96,108,97,96,105,101,103,103,110,112,93,102,102,99,92,102,104,97,94,97,95,89,93,97,101,93,72,98,125,91,106,98,95,112,96,88,102,92,105,94,91,86,95,106,102,91,75,109,96,102,91,112,106,96,95,68,88,96,78,103,104,100,105,102,99,102,112,108,98,84,104,99,102,102,99,100,102,105,103,88,104,92,95,102,95,91,102,91,90,90,95,94,92,93,87,98,95,101,114,93,98,105,94,103,87,95,89,108,89,94,90,96,100,101,88,105,123,105,110,106,96,102,108,99,102,96,96,98,96,99,100,99,89,85,92,99,107,98,104,107,99,110,107,100,99,106,102,87,88,102,91,108,107,101,101,100,103,95,97,92,110,98,105,106,91,85,103,100,87,97,92,102,94,94,101,101,95,102,87,98,102,91,100,97,104,99,95,97,90,131,108,94,95,99,104,89,102,100,94,93,100,87,99,92,98,94,100,97,117,109,111,109,129,104,92,106,92,97,91,110,106,75,79,96,103,102,100,102,97,94,97,101,90,106,107,111,91,100,90,61,97,97,93,96,94,92,100,89,99,100,112,90,111,108,108,104,87,103,89,97,116,98,93,90,112,92,100,104,101,99,100,101,97,95,96,95,98,94,96,104,103,97,103,100,97,97,91,105,93,105,103,100,90,99,88,65,95,107,106,94,105,108,111,116,105,93,82,99,90,113,101,113,101,91,108,96,92,111,113,82,73,116,95,91,104,90,92,102,95,93,96,109,96,119,101,89,100,97,107,102,95,103,109,99,102,119,100,113,94,116,105,91,103,114,87,125,97,98,90,105,107,105,108,103,103,102,90,113,102,100,97,98,94,107,84,100,99,95,89,111,93,94,108,109,91,96,97,107,67,86,107,95,109,88,98,94,103,94,109,84,92,94,84,99,105,95,96,112,95,105,112,98,94,96,103,105,122,108,95,101,95,104,109,103,87,104,115,102,91,88,93,109,97,94,98,96,98,97,101,106,96,113,103,103,94,91,98,107,92,111,94,102,98,107,100,74,92,100,102,106,80,89,105,94,106,98,96,109,104,105,93,107,90,94,94,100,101,113,98,116,93,109,112,98,94,107,106,104,112,97,110,81,100,102,95,107,113,101,107,88,90,102,109,99,105,89,104,103,96,87,105,111,110,94,99,94,83,92,97,85,102,100,95,95,100,107,98,91,78,89,100,100,95,107,96,99,104,100,65,93,84,91,105,125,88,103,100,96,105,99,100,99,103,92,95,87,91,91,101,92,93,91,104,90,88,83,88,94,113,97,95,109,108,98,98,97,98,85,96,101,92,92,87,107,109,109,105,114,101,101,102,87,94,81,87,94,83,96,91,105,94,103,106,83,101,96,105,91,102,91,101,101,117,105,90,96,89,100,97,106,91,112,117,82,94,101,94,100,95,81,100,105,96,94,82,93,85,96,98,101,63,103,101,95,88,105,103,101,90,104,100,101,98,103,98,97,100,113,85,95,91,104,97,91,100,97,87,98,84,89,105,96,106,91,109,97,102,90,93,89,100,108,98,96,94,93,80,103,105,97,101,99,102,95,105,104,93,87,91,124,94,104,115,104,100,108,116,100,114,90,100,104,105,112,92,103,106,105,103,104,109,103,117,94,95,114,89,92,99,97,90,112,105,96,103, +393.77518,85,97,97,108,82,82,102,95,90,101,96,104,94,90,109,101,113,99,101,95,105,89,93,99,98,94,109,95,96,90,101,102,94,100,103,105,134,100,117,109,102,102,92,107,91,102,94,105,98,109,131,93,93,92,108,101,92,97,105,113,115,98,104,106,97,101,89,104,98,90,106,105,87,95,95,110,104,86,105,107,102,96,78,101,96,95,92,96,97,108,101,103,83,78,95,101,93,91,89,95,100,115,107,93,95,98,86,103,87,105,92,101,108,96,98,98,102,107,97,125,105,95,100,96,94,108,124,86,102,99,92,99,98,89,94,97,100,102,100,97,105,113,91,105,98,106,107,99,92,98,105,109,108,95,103,108,96,102,107,104,101,121,110,93,90,101,102,91,98,94,101,115,85,96,96,113,98,98,102,92,113,97,92,105,95,104,95,85,101,100,99,86,94,126,91,110,90,99,103,98,103,100,100,104,108,101,84,100,105,96,105,80,83,105,96,101,112,100,105,71,98,104,102,100,104,109,89,99,97,99,93,102,105,110,102,91,101,94,95,110,110,114,105,98,99,134,95,104,98,95,116,109,105,95,90,100,98,102,91,104,93,94,101,92,88,100,96,104,97,111,98,83,110,97,102,100,88,99,84,98,97,84,92,99,105,98,88,97,102,105,98,93,91,103,109,100,103,96,94,105,113,104,109,94,100,110,104,103,110,101,81,104,101,96,101,106,106,99,99,103,100,96,94,99,102,118,96,81,103,101,99,93,109,104,95,105,105,95,94,99,94,100,96,99,96,94,99,104,100,89,100,97,98,95,99,97,112,116,103,95,106,106,107,90,96,100,111,100,101,100,109,105,103,102,110,101,100,90,96,101,105,107,97,108,85,101,94,114,108,90,99,84,87,107,107,100,99,98,100,89,92,96,112,103,97,97,96,107,104,99,88,91,90,103,104,115,97,106,104,112,97,98,101,90,97,100,103,89,99,97,100,103,95,103,95,101,100,94,94,97,117,83,94,101,115,112,91,94,100,104,97,90,96,109,91,105,104,96,108,101,101,102,91,113,100,111,91,123,102,98,105,96,119,98,75,102,100,94,107,95,99,105,106,97,94,93,104,87,99,112,107,104,99,100,92,95,99,80,107,110,101,98,97,116,101,96,101,90,91,107,110,104,111,108,108,105,100,100,103,95,101,105,103,95,98,91,106,108,100,104,105,100,100,95,89,95,98,104,99,100,101,105,89,86,102,104,98,96,96,103,103,105,101,101,107,101,100,100,108,91,99,98,103,104,89,103,102,99,102,112,100,104,94,93,98,125,133,106,103,97,93,92,110,102,105,96,107,108,95,103,108,105,90,101,92,96,86,106,98,94,86,122,105,103,95,106,98,101,100,98,103,98,106,101,107,116,106,95,113,102,101,103,94,100,108,81,89,105,84,111,77,107,90,107,91,105,102,89,112,89,93,98,99,100,92,90,95,108,107,114,93,109,112,77,111,101,114,108,101,100,96,73,76,105,87,91,86,93,104,103,101,113,112,98,101,101,98,99,89,99,95,81,100,90,93,103,88,95,99,102,106,93,88,107,102,99,94,96,102,88,101,120,102,92,107,102,102,99,100,100,102,99,99,95,96,100,99,109,108,95,100,101,99,105,96,97,111,92,93,86,104,82,96,96,101,98,88,94,105,100,104,97,100,107,96,93,97,102,89,105,104,91,91,103,104,97,90,104,100,90,94,102,95,100,98,92,102,100,109,87,108,117,108,96,100,116,97,107,99,96,99,116,110,99,101,107,99,92,103,105,92,113,90,112,98,95,98,101,105,93,93,95,96,102,106,106,96,90,103,100,103,100,93,102,100,92,109,101,106,106,98,124,101,110,100,97,84,97,104,98,103,105,108,99,102,94,106,98,91,105,113,91,98,104,92,86,100,98,106,106,100,101,96,93,97,97,99,102,103,105,99,97,101,99,110,94,94,109,104,101,102,104,111,100,100,100,106,83,71,93,91,92,99,133,85,97,101,97,94,104,98,112,95,104,105,100,99,71,105,107,94,108,107,92,94,82,91,86,90,98,96,100,91,102,103,99,102,102,102,95,101,88,95,105,103,102,104,105,99,101,103,103,93,99,95,104,87,97,105,104,98,99,102,101,109,109,127,109,100,97,92,91,109,100,97,96,90,110,96,99,98,113,99,93,109,94,88,107,108,108,106,89,105,92,89,104,98,106,95,104,105,102,102,102,106,93,102,99,101,97,111,102,101,100,91,99,110,99,95,108,108,103,98,117,108,93,111,99,93,92,92,111,98,98,100,99,84,86,102,97,109,98,93,84,92,96,110,115,92,99,97,92,97,109,113,94,102,106,103,103,89,107,103,79,94,106,97,111,100,92,98,100,103,106,102,107,108,110,100,104,95,100,107,86,101,97,92,95,97,95,101,109,109,108,98,99,95,102,98,107,107,83,101,100,98,114,104,101,107,113,97,100,94,99,85,95,107,97,98,98,117,106,111,110,109,97,96,91,101,110,88,94,95,84,103,106,102,68,94,103,93,106,93,102,100,92,98,98,94,104,99,90,113,92,112,95,97,97,90,100,104,96,102,109,112,95,95,72,98,84,95,94,112,101,93,95,92,103,114,105,102,95,96,88,100,94,102,98,120,80,92,99,96,84,88,108,101,86,101,110,97,95,85,96,92,110,87,97,92,99,103,105,106,105,97,94,98,98,112,119,100,109,91,105,101,108,97,106,98,94,92,96,88,106,95,105,98,91,92,101,101,98,105,90,107,97,97,102,108,88,94,87,104,115,109,94,95,101,109,103,87,101,99,96,101,88,108,97,106,115,102,94,102,101,94,100,92,85,98,106,94,88,95,97,95,96,93,109,95,110,100,87,100,105,89,109,98,107,100,102,83,108,93,97,102,98,110,101,102,105,97,100,102,87,94,86,95,90,97,103,106,100,94,103,96,117,104,95,72,102,104,100,105,94,97,98,101,102,105,97,95,99,94,103,98,94,92,121,127,94,102,105,94,94,106,100,98,107,105,88,97,93,100,100,99,105,95,100,98,84,104,90,93,98,87,100,93,98,91,102,92,110,109,95,106,96,92,102,107,81,101,98,95,111,96,83,96,108,96,106,91,92,99,89,87,106,106,104,97,90,93,98,91,107,98,104,117,92,95,98,103,84,93,115,103,100,109,103,105,93,104,99,95,92,109,95,105,103,100,136,99,102,99,108,99,95,101,111,100,111,96,101,111,105,98,94,101,105,92,98,94,89,102,89,101,95,99,100,108,104,112,109,112,103,103,99,94,108,109,99,106,94,97,114,93,100,99,81,85,74,91,108,102,105,103,97,102,112,98,112,93,107,104,102,92,94,98,88,89,109,93,109,109,103,105,93,92,95,104,105,94,102,98,102,99,90,102,96,95,107,98,98,88,111,95,94,102,89,87,98,115,110,105,99,95,102,98,96,92,91,99,102,91,94,104,84,101,94,97,114,94,101,101,104,113,98,98,97,87,98,100,96,102,135,91,107,106,105,94,105,93,116,106,92,89,96,104,104,94,101,95,89,96,95,95,116,99,92,94,87,91,112,101,94,116,95,86,98,92,114,92,102,102,112,94,101,96,89,115,101,99,96,85,96,93,98,101,95,94,99,96,87,94,101,104,101,96,104,101,93,105,96,72,99,98,91,95,102,104,113,108,96,101,95,94,98,112,107,92,103,100,91,95,96,105,94,88,107,97,106,97,88,91,92,110,99,91,80,83,111,101,106,78,114,98,106,95,97,103,92,97,118,98,106,94,96,103,95,95,92,102,101,107,103,107,98,97,94,83,98,104,105,90,101,92,101,106,95,115,70,78,99,93,120,94,107,101,88,99,98,104,92,90,114,98,110,83,97,88,97,92,95,96,101,94,108,107,84,83,104,94,104,99,106,99,95,102,105,97,98,92,106,88,104,86,97,101,86,103,106,104,90,95,108,98,97,100,119,104,84,104,99,104,102,111,96,100,82,108,92,97,88,109,133,101,99,107,99,101,103,97,89,94,96,113,101,99,102,102,89,105,103,100,105,92,106,105,112,110,99,95,94,91,98,106,107,105,116,90,110,105,96,97,103,96,111,101,100,88,101,113,104,101,112,98,94,87,104,100,96,94,105,90,106,92,100,105,106,89,87,111,98,105,100,98,96,92,102,86,88,100,102,91,98,94,102,98,111,100,100,107,104,99,103,96,83,111,99,89,103,107,96,98,109,93,108,87,97,94,103,106,98,107,116,101,102,102,83,111,104,88,127,101,93,103,96,98,103,94,106,94,92,69,115,100,96,95,85,105,95,101,96,103,76,106,94,98,100,103,94,108,89,99,106,108,89,108,103,102,95,84,96,97,109,98,91,91,99,98,95,94,83,74,102,105,90,91,98,102,100,104,101,94,86,98,99,81,90,97,103,92,107,97,108,110,91,93,108,109,94,100,106,101,101,112,99,101,96,96,101,94,95,102,111,94,94,108,106,101,97,91,94,80,96,96,101,111,95,103,99,101,95,109,117,100,97,117,107,92,97,99,111,93,91,96,94,105,105,94,77,100,97,105,96,98,99,106,95,114,110,93,87,96,111,113,102,91,95,99,94,103,99,102,96,99,84,98,112,91,89,101,93,112,94,110,89,91,100,104,87,78,98,111,95,98,92,92,104,101,91,95,99,109,99,88,89,103,109,83,136,94,96,87,81,103,88,91,93,98,105,89,88,93,101,96,102,92,120,95,91,96,106,93,93,89,98,90,101,96,103,102,91,104,104,105,102,102,102,114,95,113,90,96,93,96,102,119,112,92,115,115,95,98,90,95,97,81,102,113,90,84,90,101,122,100,87,93,99,84,93,106,87,99,103,100,104,94,101,84,90, +393.91525,102,113,80,98,99,98,101,99,94,88,95,103,91,107,85,94,99,85,92,115,99,97,95,108,109,106,92,98,89,102,96,99,101,96,96,92,107,78,101,103,99,102,99,91,96,121,90,121,99,87,97,108,105,93,102,90,102,82,106,83,106,98,97,83,96,115,93,103,117,92,95,90,119,97,95,104,95,89,96,90,117,94,105,90,89,105,95,110,90,91,98,103,99,107,107,100,102,93,93,92,108,94,97,97,96,100,91,97,98,91,88,108,100,106,100,99,107,100,103,88,97,103,92,108,95,127,106,92,110,88,106,111,97,99,96,95,103,95,105,99,87,111,94,97,98,100,95,98,89,97,99,97,101,70,102,103,96,107,100,101,101,94,108,106,104,92,105,100,98,109,106,93,90,98,98,95,104,87,94,113,101,97,109,98,102,99,85,82,74,103,93,102,103,102,96,108,108,92,96,106,109,98,84,108,94,105,103,105,102,110,103,97,106,96,91,104,108,100,94,98,102,102,96,63,95,103,126,100,111,101,98,104,103,98,112,106,101,100,114,109,110,99,95,113,106,94,107,97,93,97,110,103,104,104,101,103,91,94,97,98,91,100,96,94,94,94,99,95,90,107,101,97,98,109,100,98,103,89,92,103,94,99,101,100,80,110,101,99,99,103,86,98,113,106,107,104,103,100,97,98,108,93,94,115,92,92,113,109,98,99,97,108,110,104,90,98,99,106,98,102,95,95,112,103,109,112,103,88,109,109,103,105,104,97,105,88,100,92,98,103,69,92,101,94,92,103,96,113,107,94,109,97,109,109,96,98,105,105,91,88,90,101,112,98,100,100,102,97,92,108,98,91,117,105,96,98,103,110,102,90,112,107,99,100,89,94,103,88,104,105,105,101,100,111,99,105,96,100,95,100,102,103,106,97,103,100,86,96,96,110,89,103,102,110,107,95,114,82,103,100,108,118,97,101,98,92,96,97,106,106,76,103,107,100,95,112,98,111,98,96,107,101,107,100,103,119,112,98,101,111,99,104,78,108,95,105,101,101,107,90,90,110,101,98,104,93,100,104,88,87,97,112,104,95,88,103,99,98,106,102,95,95,98,89,111,98,138,109,114,77,101,103,98,95,101,101,100,112,98,105,104,101,118,102,104,83,97,109,107,96,99,105,96,108,109,86,101,102,100,101,100,102,101,115,95,102,117,108,89,105,96,105,98,97,104,113,103,99,104,101,99,112,93,87,105,87,105,104,99,107,87,113,94,104,86,103,104,113,102,113,105,105,107,107,106,102,111,106,102,106,87,85,102,91,100,106,88,109,103,95,99,99,114,108,99,116,108,102,109,94,92,100,107,92,97,107,98,101,101,108,94,82,102,97,108,101,124,98,109,89,99,99,97,105,103,99,109,106,90,112,89,95,103,102,100,110,110,96,97,101,98,102,99,97,99,94,104,92,94,108,105,100,93,101,97,104,105,95,96,104,85,97,106,97,96,94,100,108,90,96,99,108,123,100,91,94,102,88,106,101,105,95,102,81,106,99,108,95,107,93,105,105,101,97,121,92,87,101,93,109,108,84,112,116,108,95,105,96,70,96,102,84,106,102,95,102,106,113,98,97,110,102,105,93,95,101,123,102,91,109,94,92,99,102,91,101,103,104,98,109,104,91,90,93,96,110,96,106,92,82,95,93,107,102,101,103,96,103,103,116,105,87,109,97,111,102,90,95,113,116,99,98,103,97,97,107,82,94,95,96,102,80,107,104,97,91,93,107,107,100,98,98,98,103,110,104,90,94,95,108,96,92,99,88,116,98,90,100,88,99,100,101,113,112,115,100,95,105,97,96,101,96,95,94,99,96,113,105,109,100,87,103,98,105,100,112,93,77,95,97,110,91,100,113,99,97,100,104,80,90,84,113,105,97,85,101,98,99,102,104,97,108,101,87,82,101,92,101,104,102,105,99,99,105,103,105,100,94,103,107,90,98,91,104,89,108,101,101,78,92,108,101,110,103,99,102,98,91,97,95,101,93,83,115,115,106,100,105,98,99,100,114,91,101,93,89,97,100,104,97,94,106,111,102,94,97,101,105,99,94,107,99,101,107,105,110,106,104,111,105,93,105,97,112,90,88,94,94,110,113,97,101,94,100,97,106,108,106,122,98,65,100,77,103,94,110,103,83,102,99,108,99,103,80,105,102,97,99,101,106,91,105,99,85,86,114,92,106,105,87,103,109,101,105,108,99,90,96,99,100,115,104,95,94,106,96,105,96,98,78,96,103,90,110,108,104,110,99,97,103,89,108,87,94,101,93,109,101,98,95,114,83,86,92,102,95,94,91,94,91,102,101,99,95,100,84,101,100,106,99,105,92,114,115,89,95,96,106,108,89,90,107,99,94,105,96,99,109,103,108,105,107,87,113,94,95,93,105,97,74,88,115,94,99,113,104,93,90,90,88,105,105,97,102,97,103,94,89,108,100,110,98,104,102,101,98,105,100,100,100,99,101,96,103,105,104,91,98,101,92,98,108,102,92,88,102,97,104,87,109,85,103,96,108,97,105,98,118,98,92,104,94,100,106,112,113,93,97,100,94,93,98,82,105,92,90,99,91,111,96,105,99,98,80,81,99,102,84,109,95,92,88,99,88,108,92,102,91,95,95,95,96,112,77,109,102,94,93,93,104,117,72,94,99,105,86,123,95,98,109,98,87,102,91,97,106,93,115,91,102,116,100,102,104,108,114,98,113,102,92,92,91,95,95,105,96,110,113,93,92,94,110,100,92,103,104,106,102,107,81,87,97,97,106,95,103,107,108,101,68,115,93,104,95,99,118,116,103,94,95,72,117,102,98,96,105,100,95,99,99,104,94,107,103,126,105,95,100,94,83,98,106,103,108,93,95,98,101,98,92,99,101,106,93,98,104,92,103,94,103,97,97,98,96,95,99,109,91,95,105,100,85,92,109,94,95,102,105,97,93,103,95,80,90,106,101,99,100,106,98,84,84,97,107,104,83,104,101,105,87,104,90,94,102,116,97,104,102,104,85,97,94,103,93,105,89,94,82,96,101,107,74,97,96,121,97,111,100,89,98,83,111,84,94,106,91,92,106,104,104,87,104,107,109,96,102,91,94,101,114,90,97,98,98,101,107,102,89,97,107,107,100,99,98,101,68,106,93,98,87,102,104,101,101,96,104,105,95,97,110,97,99,104,105,101,100,79,95,75,102,94,98,102,90,99,95,94,92,93,101,92,89,105,126,105,110,91,99,91,94,83,100,103,110,102,68,99,104,112,78,107,87,97,105,98,102,111,86,99,96,95,105,108,105,98,85,92,84,111,106,92,92,84,88,94,98,101,97,94,99,97,97,103,103,90,114,90,94,95,100,99,83,86,110,94,96,104,80,96,99,104,97,96,85,102,97,90,98,101,95,101,94,96,97,65,100,106,92,107,96,106,106,95,90,97,89,89,95,102,99,88,73,109,87,105,101,103,108,91,98,102,94,99,101,112,94,100,97,111,89,104,101,96,99,92,94,90,103,109,105,102,96,106,101,110,100,99,97,100,93,105,92,87,84,109,90,104,100,106,90,97,99,97,101,89,94,96,97,97,108,100,104,95,109,113,89,95,99,86,94,101,99,108,110,109,102,89,101,100,111,106,104,115,106,102,102,66,96,98,92,116,101,90,94,103,96,102,105,93,104,95,117,97,104,104,104,118,96,95,108,87,95,109,93,126,97,96,98,98,102,104,125,95,101,103,84,113,105,102,98,106,94,85,105,89,95,98,88,73,103,97,102,87,103,114,90,84,102,102,98,113,106,108,94,94,102,85,95,96,99,110,116,94,87,75,92,115,98,113,108,109,101,103,99,95,100,102,94,109,90,88,97,90,99,96,95,94,90,107,101,100,111,91,95,94,93,115,88,104,93,103,92,94,93,103,90,105,95,113,109,108,100,100,102,92,105,102,90,101,96,109,98,110,95,113,110,88,98,101,94,101,101,94,108,99,91,101,95,96,99,101,110,104,103,93,82,105,96,97,101,103,115,97,99,108,116,97,90,104,95,93,96,94,87,102,108,87,95,89,102,106,93,96,106,102,103,96,99,94,113,95,93,103,106,89,99,106,81,99,116,91,94,77,100,95,99,92,102,117,85,104,106,95,94,97,103,95,102,107,87,105,110,88,103,97,92,94,106,116,102,101,101,113,98,97,86,128,94,83,102,110,102,90,109,83,91,100,121,105,100,100,98,95,72,99,95,99,77,111,98,103,109,106,89,109,99,98,102,104,100,97,88,95,103,103,104,100,90,103,100,93,107,113,104,120,94,96,91,94,99,98,93,100,105,95,91,96,105,111,101,97,103,98,100,103,98,105,94,98,101,95,97,101,96,95,113,100,94,94,104,102,81,89,99,106,104,93,93,96,92,110,106,91,123,83,103,95,111,90,90,107,105,98,92,102,108,104,93,98,107,96,98,93,103,112,105,97,105,103,104,90,97,93,104,98,103,100,111,105,96,94,67,96,83,87,93,98,99,96,103,91,100,87,88,102,91,96,94,90,99,99,88,111,85,100,91,97,108,79,86,104,83,104,103,105,104,95,98,86,98,98,88,92,88,97,117,101,108,94,96,103,90,94,110,103,102,104,95,95,85,100,106,99,98,105,97,96,97,101,96,100,90,102,100,87,103,95,112,99,98,107,102,99,102,99,88,95,91,116,100,105,109,93,91,86,107,110,97,100,108,93,91,96,95,91,104,88,103,92,88,83,97,95,95,74,105,100,98,99,71,88,112,95,81,103,87,96,104,92,93,106,99,101,93,95,89,102,106,103,89,112,101,93,99,97,99,99,98,100,91,93,99,105,108,91,98,89,105,103,86,112,108,101,113,104,109,107,84,89,102, +394.05536,99,92,96,107,103,110,89,87,90,85,90,86,99,103,93,108,92,100,100,88,95,116,100,108,90,98,96,103,94,86,105,91,62,91,103,84,102,105,92,100,99,105,98,97,104,103,90,100,93,104,96,92,108,86,99,84,106,93,89,91,91,98,90,86,96,104,91,82,89,98,107,101,105,105,89,103,98,78,104,91,107,109,90,97,90,104,94,87,85,87,96,97,79,117,101,92,105,113,95,108,105,74,93,91,83,90,97,101,87,103,99,96,87,87,98,103,93,91,83,100,100,101,95,111,95,102,99,102,102,96,95,108,79,95,107,95,98,105,90,104,103,99,95,92,122,94,97,107,94,91,91,92,98,95,100,106,97,77,108,98,99,96,102,104,115,92,93,100,98,105,100,107,104,97,97,96,93,103,113,94,99,95,98,100,103,102,105,92,92,98,104,106,93,98,96,90,102,99,100,106,108,107,83,98,95,85,82,94,96,79,96,107,100,100,94,99,99,91,85,107,98,95,94,101,90,84,96,100,103,101,80,106,100,98,98,91,92,94,87,97,94,97,96,91,93,98,108,102,107,97,91,101,96,103,95,102,87,70,116,101,92,110,100,89,89,91,95,98,100,97,78,103,98,92,98,97,86,109,90,95,109,98,102,103,101,98,106,99,101,79,94,97,89,104,104,101,101,99,99,89,88,94,97,99,103,102,111,101,105,96,83,109,96,102,92,94,105,107,108,91,94,98,90,97,101,95,98,80,96,103,116,99,93,98,109,96,104,96,106,92,95,91,97,87,99,105,100,98,102,97,90,95,95,100,96,97,110,103,97,95,86,89,93,101,95,85,99,90,104,101,97,101,97,97,106,93,83,99,113,105,101,93,100,97,88,97,95,86,107,87,105,94,84,92,96,98,99,94,114,72,87,102,101,97,96,92,101,104,101,92,91,97,98,99,106,84,113,94,86,102,104,109,93,95,100,95,97,83,100,104,94,96,96,99,88,100,79,99,90,101,100,100,93,93,100,94,103,110,102,106,96,114,87,113,96,100,90,110,99,93,101,106,119,100,99,105,80,85,86,105,96,101,112,91,103,99,86,102,96,84,100,112,118,103,97,105,109,109,112,98,93,95,96,99,98,100,103,97,103,105,101,97,97,97,101,106,95,95,96,100,93,90,66,105,106,108,94,97,103,85,109,93,100,91,87,95,97,91,106,87,100,98,101,93,88,93,89,118,95,98,96,92,95,91,115,94,121,95,106,101,97,101,109,100,103,92,109,94,103,100,77,93,95,90,88,84,101,99,86,106,90,74,86,95,106,104,94,91,89,99,91,106,110,98,104,91,101,127,104,100,95,97,91,96,102,90,98,93,99,90,106,102,109,97,104,99,98,93,87,107,97,87,109,99,112,106,101,88,97,94,97,97,99,101,103,112,108,92,94,116,108,99,99,104,92,104,94,92,91,104,104,106,97,94,94,90,96,98,100,103,92,99,105,100,84,101,106,95,104,91,109,105,94,107,93,91,114,97,83,84,103,96,99,95,116,99,99,109,103,93,101,99,98,91,95,96,90,123,96,91,94,107,103,100,107,104,105,93,101,105,100,78,98,101,105,106,102,109,91,102,86,103,104,93,102,102,93,112,98,93,99,88,101,100,93,111,97,91,100,99,79,93,105,90,92,94,97,94,101,102,105,92,102,100,103,100,111,99,99,97,106,99,104,100,105,100,90,98,98,94,95,110,85,86,105,98,98,109,99,111,103,101,90,110,110,102,63,95,96,97,104,97,98,101,96,112,83,113,102,108,99,96,109,89,98,108,94,100,97,99,104,96,90,106,103,102,98,95,97,90,92,104,103,94,110,95,111,68,102,86,87,111,96,101,110,107,114,104,82,97,103,120,99,89,95,95,110,98,99,96,97,97,103,94,102,99,99,99,102,98,94,101,94,92,107,91,99,93,100,105,84,96,92,97,91,79,94,112,110,100,90,101,104,107,102,101,97,100,109,93,104,110,99,96,96,104,104,99,97,106,103,102,104,102,108,87,99,100,100,81,82,109,97,102,91,93,93,102,94,101,97,99,96,99,99,100,95,103,99,91,95,90,96,95,101,82,95,112,84,95,100,96,91,100,92,105,92,101,100,118,75,104,98,96,93,113,96,93,93,105,94,92,96,98,111,98,107,89,97,96,98,113,76,104,96,91,102,104,99,99,93,96,108,91,88,102,94,110,75,106,80,107,91,101,98,104,106,91,111,105,105,90,100,101,100,103,109,99,104,94,91,96,98,92,105,85,101,109,80,110,94,95,97,98,98,97,94,101,102,88,84,109,100,87,95,106,95,120,105,104,96,82,99,92,93,86,95,90,100,92,108,103,92,109,103,95,100,99,95,117,94,102,105,94,105,103,106,109,98,113,116,106,101,82,108,92,106,103,96,112,96,87,93,94,101,104,101,102,90,107,98,105,89,66,102,100,95,105,105,97,96,109,98,93,71,93,108,87,102,102,101,95,108,107,86,99,101,98,108,106,92,106,89,85,92,90,99,114,89,107,95,103,110,95,102,104,98,101,109,95,103,113,110,105,104,100,96,99,106,91,102,102,95,96,76,93,99,91,97,96,100,105,99,95,104,96,98,105,107,100,98,107,106,101,93,97,94,99,108,93,93,97,94,101,101,91,93,100,101,106,103,96,99,102,108,76,114,95,100,108,101,96,102,74,100,110,101,102,91,102,109,101,103,102,92,103,96,98,98,97,101,93,109,101,96,97,91,92,109,92,101,94,111,98,102,93,92,94,106,109,93,108,94,105,98,117,100,100,100,107,90,104,100,94,96,97,94,107,103,101,84,112,110,96,98,87,97,102,98,106,105,100,96,106,107,106,99,101,95,110,107,98,113,112,107,93,87,108,98,102,83,91,88,100,99,98,86,95,98,59,80,106,94,110,87,104,96,88,92,82,95,98,98,111,106,93,99,111,95,91,102,102,104,94,99,63,100,102,104,101,95,92,93,96,90,98,101,97,106,91,94,90,98,106,106,105,108,93,96,113,104,102,91,102,88,73,104,94,113,66,99,105,83,93,96,98,87,99,91,102,102,113,108,96,99,90,97,102,100,76,104,106,92,104,102,99,97,107,97,99,99,90,107,102,103,99,102,86,91,86,99,90,91,101,91,105,94,97,89,93,113,85,93,113,98,105,98,93,108,99,99,104,103,106,98,91,88,101,101,113,100,99,95,106,104,107,100,93,102,108,102,92,91,101,91,95,103,99,87,98,86,99,101,103,103,106,89,95,99,103,80,85,95,73,93,96,98,91,105,92,87,97,104,99,102,94,100,87,83,100,108,99,113,109,112,96,105,114,102,103,96,96,102,124,101,106,112,105,103,88,98,108,97,100,88,95,101,101,106,82,94,109,95,94,99,88,97,91,115,102,94,91,85,87,92,109,106,107,100,116,82,95,104,99,91,103,102,97,104,91,108,94,100,93,98,111,92,101,127,85,109,115,107,98,108,94,102,103,87,93,109,113,101,99,107,100,109,105,100,109,107,110,103,97,88,116,95,106,98,99,108,87,106,107,112,103,104,120,98,96,95,84,96,93,99,108,90,101,102,99,97,95,98,95,97,92,102,84,91,119,93,106,91,99,103,94,91,96,98,126,109,98,94,100,90,101,97,110,104,91,104,106,96,104,86,92,93,101,110,105,103,106,108,100,93,102,95,104,97,94,102,107,100,101,101,100,101,105,95,87,107,90,91,94,104,108,100,89,107,94,100,105,80,95,91,100,103,95,108,105,96,112,97,102,91,87,89,91,104,98,109,92,94,104,96,87,100,106,90,99,99,104,93,99,93,100,86,99,93,103,97,112,91,96,97,112,65,109,108,97,106,98,101,91,105,99,99,91,98,93,89,108,98,103,98,102,98,108,94,88,99,91,92,100,105,96,124,120,103,106,102,105,113,114,86,99,101,101,97,105,69,102,91,90,105,92,94,95,94,104,109,102,105,98,110,105,98,93,107,97,112,104,105,88,91,112,116,89,107,112,99,106,97,97,97,108,103,95,94,95,104,93,102,93,90,114,108,103,98,118,108,93,80,105,91,96,104,104,91,100,97,94,118,104,106,116,103,106,97,89,94,110,101,100,105,106,92,101,110,113,105,97,116,107,94,102,104,98,103,90,106,106,105,99,101,121,107,126,100,104,107,105,96,94,102,94,76,93,91,110,90,94,91,100,105,94,108,104,118,101,98,101,95,104,91,102,100,91,94,103,109,103,98,108,89,99,90,98,94,99,86,87,96,95,103,109,101,96,90,94,95,97,97,105,91,105,97,87,94,106,115,105,104,107,98,108,105,87,99,101,102,98,96,98,110,99,103,101,107,96,109,109,107,105,90,92,95,108,110,96,98,86,104,97,92,105,102,98,106,91,117,93,95,90,91,104,105,109,96,107,101,105,111,102,106,91,104,121,128,94,90,88,100,108,99,107,94,94,98,104,94,99,99,94,101,97,103,106,97,88,89,98,95,94,105,100,97,100,96,105,96,100,93,90,110,99,97,100,98,108,105,94,102,110,91,112,97,88,94,98,99,99,100,112,109,104,101,104,108,91,96,100,102,100,98,94,96,103,93,106,116,112,97,102,99,93,106,104,103,88,105,84,108,101,83,98,108,117,91,87,97,78,100,92,105,97,102,102,100,80,104,96,104,92,97,106,101,96,79,100,91,102,99,98,111,104,102,103,93,107,111,98,106,96,101,109,89,99,97,95,98,95,95,108,98,99,104,92,101,97,109,95,103,121,100,87,97,102,97,92,86,101,98,91,98,94,95,103,105,98,106,96,99,94,96,107,102,88,116,100,116,128,105,93,110,103,92,99,111,92,95,83,99,116,98,103,95,103,97,94, +394.19543,100,107,97,93,94,101,112,90,103,92,83,99,85,103,90,93,91,93,93,96,87,90,99,95,98,74,105,105,102,99,97,108,112,107,100,96,100,89,104,96,99,99,108,106,101,110,93,118,101,108,89,105,105,107,105,103,90,98,105,91,108,92,92,100,82,113,99,102,108,106,103,97,96,96,83,102,92,108,106,99,102,100,102,92,90,87,105,112,110,101,92,106,101,96,96,98,86,104,114,98,99,98,96,94,101,86,101,112,97,92,70,92,97,94,108,95,96,114,91,104,101,93,96,99,101,97,98,104,111,77,88,98,101,104,101,96,99,100,101,105,99,105,96,99,102,101,113,110,106,102,104,102,88,85,101,109,111,103,107,95,76,103,106,97,105,93,91,93,100,72,81,91,82,88,107,100,105,104,95,92,92,104,110,99,92,95,104,95,88,104,95,97,96,92,103,112,93,95,103,96,113,95,97,100,105,105,100,103,107,102,97,111,98,95,110,87,95,98,103,94,105,117,99,96,95,101,96,105,97,110,103,106,83,95,93,91,95,81,99,89,94,101,108,103,98,99,102,94,100,97,101,95,94,101,95,91,81,102,101,104,98,117,98,96,99,100,106,95,104,106,106,94,97,78,101,100,87,94,102,92,117,93,123,101,101,98,88,98,100,103,109,93,107,95,98,93,75,108,93,106,79,109,100,99,110,109,116,99,98,103,95,100,87,106,101,94,96,94,94,97,86,96,108,105,98,91,101,94,98,104,100,95,114,88,91,99,107,87,89,90,107,99,102,93,103,112,99,94,109,111,105,92,106,92,102,91,98,103,103,98,94,100,94,95,87,99,97,110,107,96,104,94,112,95,106,97,105,97,89,95,113,101,108,104,85,104,95,91,100,97,117,89,96,87,105,92,101,99,101,100,101,97,99,104,105,98,96,101,103,92,86,103,105,95,87,95,105,100,108,92,111,102,90,108,97,94,87,98,90,103,96,102,101,92,101,100,101,110,94,101,91,93,129,109,94,81,101,109,104,109,96,100,103,94,91,94,108,101,94,87,89,87,110,109,102,102,101,113,99,97,88,99,101,81,92,99,93,98,99,100,92,86,99,90,103,105,113,104,96,69,103,90,105,102,84,114,107,93,93,101,104,113,96,97,103,91,85,94,96,95,106,97,112,102,100,99,100,102,94,86,104,107,109,86,107,92,89,107,100,86,95,113,98,104,79,95,99,98,94,96,101,98,104,94,95,90,92,107,104,92,96,107,104,98,97,83,100,101,101,100,113,99,98,69,86,94,97,98,96,107,97,99,99,107,98,97,105,91,89,101,97,95,105,97,103,100,103,109,116,102,101,111,92,112,113,100,106,100,104,88,92,102,100,92,104,109,125,94,109,94,93,97,116,102,103,94,110,104,96,107,91,105,101,65,96,100,86,102,101,94,105,88,102,105,100,92,93,102,109,103,101,109,100,108,101,94,113,91,101,102,90,90,104,104,96,87,95,108,100,106,114,103,96,109,91,102,101,89,111,89,104,105,104,98,97,101,101,105,101,106,95,102,97,84,112,98,95,103,92,90,100,78,101,93,102,94,102,90,111,90,95,104,98,102,112,105,98,101,81,105,98,103,96,101,97,95,103,102,100,100,105,95,84,106,102,85,99,88,96,101,95,96,89,99,95,92,106,103,105,103,90,96,103,97,90,105,98,98,91,79,104,90,98,94,99,94,102,112,110,99,102,91,89,90,87,96,97,90,97,92,86,98,104,100,97,108,109,97,105,89,100,102,113,101,102,105,98,100,96,102,105,102,93,85,103,98,95,92,106,118,100,96,91,100,95,94,98,105,97,98,110,102,86,98,100,96,97,104,106,104,95,110,92,100,134,93,101,101,104,100,95,91,93,78,100,107,104,100,115,108,83,101,96,90,101,96,96,101,95,99,106,96,91,105,94,97,97,108,132,87,101,80,108,104,107,99,97,102,118,100,100,117,99,102,91,106,79,86,105,100,84,102,93,99,104,94,96,105,100,99,113,106,112,104,107,77,101,105,97,102,100,108,108,107,102,97,93,102,88,98,98,104,122,102,95,96,102,110,94,107,96,119,91,104,122,98,87,115,101,99,104,100,104,102,93,110,100,96,90,100,96,100,89,96,91,96,102,99,97,99,101,98,110,102,94,92,109,108,101,91,95,106,101,100,109,101,92,90,103,101,107,100,99,99,99,94,111,100,98,99,96,99,106,93,90,92,88,108,95,99,117,92,91,104,77,93,96,79,99,110,104,99,98,92,87,100,86,112,84,107,90,93,108,100,93,103,101,99,89,94,106,108,110,98,106,105,103,92,105,91,112,111,96,102,101,98,91,93,94,98,106,99,95,87,105,102,103,97,91,96,99,104,100,101,93,103,100,106,100,100,95,101,95,96,94,96,89,105,95,104,91,104,83,109,108,96,92,102,94,95,100,106,95,90,97,111,102,105,125,112,99,103,104,90,101,102,87,105,101,107,105,91,121,103,103,105,100,101,114,105,99,102,106,121,97,95,104,95,102,106,95,103,110,102,87,91,95,104,93,101,92,104,106,105,103,98,134,98,100,105,128,114,91,111,103,104,100,95,107,114,84,97,93,108,87,91,105,96,121,102,88,104,101,98,92,104,90,92,98,100,97,97,103,94,103,101,98,92,111,94,96,89,106,109,100,97,97,85,93,103,103,95,109,106,96,102,105,109,65,110,109,94,102,89,108,95,100,109,97,111,100,104,95,102,103,126,100,115,73,95,110,104,96,103,99,84,91,96,100,91,94,101,95,102,101,99,103,98,101,110,106,103,100,87,103,115,99,105,100,88,90,93,88,123,105,96,92,101,105,106,107,99,102,105,102,104,102,103,68,109,109,103,100,96,101,103,96,95,100,111,102,89,107,106,111,105,100,80,101,93,95,98,94,94,72,98,102,98,106,107,104,101,102,124,88,95,89,113,89,101,102,104,96,104,102,102,107,96,94,92,99,88,107,98,99,100,105,99,100,94,103,98,105,106,103,87,96,94,98,104,90,87,94,99,98,95,102,96,103,104,97,92,107,99,98,106,102,85,113,101,107,120,100,106,103,94,109,89,99,111,104,109,105,117,108,92,98,98,90,88,108,91,109,111,113,95,99,111,106,107,104,97,102,105,113,103,97,97,103,96,93,59,100,110,102,113,106,105,100,94,82,99,101,94,96,95,100,102,99,112,106,95,103,94,80,95,96,94,106,101,96,102,92,95,99,93,99,109,122,106,89,108,104,98,101,101,87,96,113,108,97,92,103,104,105,92,98,86,99,103,105,104,108,101,88,101,87,93,91,98,110,100,104,102,107,95,97,103,121,84,113,108,102,100,104,100,97,96,94,115,109,102,98,93,107,102,95,106,103,92,100,109,97,104,99,98,83,106,101,110,98,105,107,103,85,95,96,109,91,89,98,94,98,110,90,105,112,93,101,103,103,109,108,98,109,100,112,111,106,102,106,93,105,111,117,105,101,100,108,90,94,97,91,103,106,99,91,100,100,104,98,94,105,91,92,114,102,104,95,112,102,90,115,102,95,99,93,117,105,91,102,92,101,107,113,98,106,98,95,84,98,113,94,93,91,90,101,90,113,95,106,115,94,102,107,91,102,85,97,103,109,89,107,110,104,106,96,115,97,91,104,97,98,98,94,99,98,107,111,98,102,98,101,100,103,105,107,74,96,99,100,111,101,97,99,100,102,105,96,96,107,100,90,96,98,99,103,97,105,65,107,114,98,110,101,100,96,92,97,98,106,95,108,99,99,93,113,113,107,108,106,109,111,96,98,113,111,98,106,98,114,92,99,98,102,107,107,98,101,107,105,105,105,101,108,87,97,98,92,70,112,99,109,95,104,106,104,92,93,107,110,102,108,101,105,116,98,96,100,96,102,85,103,107,97,105,101,108,100,95,103,102,112,101,91,104,109,90,96,95,95,88,103,95,100,101,103,95,97,106,99,101,113,97,106,94,98,94,114,103,107,108,94,108,95,111,107,114,101,73,101,84,96,90,99,106,94,103,96,99,98,94,108,89,97,100,97,109,101,103,105,105,99,91,96,100,92,112,85,103,98,104,98,97,82,106,66,108,99,94,103,100,71,112,99,99,96,101,100,96,93,92,87,77,102,101,102,107,105,101,76,98,96,104,100,103,106,106,105,95,113,118,93,103,92,94,111,110,102,87,108,98,102,88,92,100,99,105,93,100,94,98,101,117,82,103,103,102,77,109,101,95,99,106,101,89,106,93,86,109,95,101,87,103,95,97,117,98,101,103,112,97,108,113,83,112,105,91,92,96,84,98,100,99,93,102,95,128,101,96,100,113,108,103,98,110,105,104,106,92,102,94,91,106,93,101,105,94,95,95,104,80,89,93,110,96,94,101,104,104,84,96,91,76,123,87,98,98,98,99,108,100,88,103,90,119,97,101,91,93,97,93,101,97,95,103,89,99,97,102,95,108,101,99,102,97,108,105,102,97,106,106,73,105,110,103,98,103,88,93,96,99,100,91,108,100,99,112,108,104,111,99,106,89,88,95,98,94,88,94,96,101,96,99,106,104,110,99,98,95,94,95,93,116,106,101,79,106,98,114,105,82,103,91,115,97,106,82,97,92,106,93,106,109,76,102,90,95,106,107,83,101,81,97,108,100,87,107,92,97,104,95,109,103,103,99,109,94,102,82,98,98,110,94,118,90,104,99,106,83,100,90,100,94,102,93,88,101,105,94,108,109,100,102,109,91,101,95,106,94,91,102,100,92,116,96,100,111,102,99,108,86,94,87,94,92,103,87,79,91,74,102,110,98,93,96,95,96,113,124,99,95,98,89,95,88,94,97,92,115,97,98,110,90,98,113,102,96,100,90, +394.33554,93,118,94,91,101,109,81,96,102,95,116,99,94,100,92,110,95,102,100,99,76,99,96,108,100,106,91,91,95,109,106,96,93,102,109,95,83,100,92,92,89,101,100,105,94,98,104,103,101,98,90,92,100,107,97,105,100,93,89,89,96,95,100,86,104,96,93,99,93,98,102,86,98,96,93,98,91,110,97,97,98,101,103,95,101,98,102,95,97,94,100,94,97,101,95,101,102,94,98,91,105,84,99,90,111,99,98,103,93,102,112,104,99,101,90,98,97,95,91,91,104,105,86,105,102,112,89,98,111,106,94,106,81,97,107,101,98,101,91,97,97,95,112,102,101,95,94,114,87,97,93,107,97,82,99,98,98,98,103,104,101,102,99,97,95,97,103,90,89,101,103,94,100,97,94,100,101,95,105,104,105,108,96,105,100,102,107,96,99,87,99,100,93,108,105,97,101,88,102,113,101,87,94,106,104,121,105,101,101,112,93,101,91,104,91,104,101,105,112,96,100,105,97,97,99,106,103,100,97,98,104,75,97,100,99,96,102,106,104,95,106,88,105,93,72,96,97,97,103,102,101,108,88,63,107,109,92,98,101,108,94,104,96,94,94,103,96,101,111,98,112,96,104,92,106,109,83,105,100,95,102,94,97,86,107,89,103,107,106,97,99,90,102,104,107,101,90,102,102,101,101,104,103,97,89,105,103,112,93,115,90,117,103,108,102,91,81,99,95,113,95,94,114,94,112,109,92,94,109,98,107,87,90,101,96,88,121,103,90,88,107,100,101,93,99,101,91,109,111,102,106,93,100,106,103,109,105,103,107,102,63,113,91,94,98,96,108,103,97,102,91,102,107,113,110,108,110,102,102,90,109,97,97,109,75,86,97,105,103,94,106,98,96,108,100,91,100,98,103,107,103,97,94,99,94,89,106,95,105,100,86,92,87,110,102,103,87,93,89,106,91,90,94,103,97,100,96,91,95,92,87,102,104,86,108,107,87,105,101,98,96,98,95,92,93,108,90,93,100,107,104,97,104,97,97,91,121,89,99,83,101,100,104,104,108,101,101,91,91,94,109,105,105,97,101,91,109,96,105,101,99,99,100,103,99,76,101,99,108,106,110,114,112,70,83,90,99,95,104,63,103,101,111,105,109,104,93,96,102,98,108,91,93,103,94,101,95,103,103,96,88,110,118,102,100,101,95,110,98,95,106,96,103,103,96,103,97,102,83,99,102,93,88,92,112,98,101,109,90,99,84,101,102,93,107,98,113,95,92,108,99,101,108,100,94,119,99,99,107,110,89,91,101,100,119,93,104,110,86,116,115,98,105,87,117,104,100,100,92,67,101,100,92,102,104,94,107,109,107,132,107,106,99,126,101,97,109,89,82,97,106,97,101,103,95,105,107,90,103,100,95,100,97,94,111,100,91,97,100,114,100,104,102,93,118,91,100,92,114,85,108,109,95,109,109,92,111,94,95,106,95,104,102,99,94,101,92,107,100,96,101,101,113,102,91,106,104,94,109,94,106,92,108,104,85,103,95,98,97,105,101,94,96,103,93,99,96,109,101,106,104,96,107,97,98,92,100,107,90,99,103,99,96,91,107,114,94,100,109,97,104,90,111,103,94,87,84,97,95,103,100,89,107,97,94,81,99,86,100,102,100,109,92,83,97,95,103,107,114,100,104,88,96,95,102,108,97,108,96,95,101,90,108,101,110,110,95,107,96,91,105,105,96,97,90,112,101,107,96,96,102,93,112,106,91,94,102,91,92,87,100,108,111,100,97,100,102,92,103,113,95,98,101,88,91,104,96,94,94,92,107,95,88,66,94,102,102,98,110,100,106,104,96,99,84,95,98,100,104,104,94,96,99,106,101,98,104,91,93,101,105,102,111,97,82,108,112,108,96,99,95,116,106,95,93,103,97,100,113,99,102,91,88,103,101,91,103,100,102,101,74,94,105,94,102,92,93,105,105,112,109,94,87,110,98,91,114,64,95,96,125,109,96,109,97,105,99,106,102,95,96,94,108,79,104,88,98,108,80,114,105,93,103,106,121,98,100,97,103,87,101,111,95,106,95,91,82,109,97,104,114,125,101,106,98,97,94,89,99,99,91,106,98,95,90,104,84,111,100,107,91,90,100,106,95,95,100,101,97,102,90,98,117,91,90,91,92,97,96,99,106,99,91,107,100,90,68,114,111,103,92,98,84,101,98,100,109,104,88,98,96,94,93,94,98,102,93,105,99,103,93,74,85,101,87,85,104,110,90,104,111,101,91,90,99,103,94,103,97,100,96,89,100,112,101,107,94,82,95,96,113,94,112,108,85,97,110,99,107,95,103,102,101,95,101,101,114,109,96,97,95,105,98,94,93,93,90,95,87,83,103,92,103,98,100,98,99,95,88,98,94,98,90,102,109,93,110,94,102,93,96,108,99,102,101,105,96,93,110,94,111,104,84,90,106,98,94,93,91,92,104,97,113,96,94,98,105,97,104,100,75,94,104,92,93,96,98,91,99,90,99,88,100,101,96,90,91,81,80,100,95,105,102,92,98,100,81,114,93,102,93,112,105,100,96,108,98,96,88,87,113,99,96,97,94,97,98,85,108,92,100,95,99,93,99,85,99,84,102,104,104,95,108,90,90,107,94,88,111,106,104,79,97,96,98,93,75,93,98,101,99,100,106,97,88,93,100,101,96,105,105,100,95,115,90,105,108,86,102,104,97,93,91,100,101,105,99,112,87,86,122,115,85,91,95,101,96,109,93,99,109,104,98,109,105,93,84,97,97,92,95,98,102,95,95,103,76,101,89,116,95,101,82,97,97,90,100,98,101,96,100,110,93,102,97,88,97,95,99,105,105,91,98,107,92,92,91,65,90,105,97,94,100,100,94,99,85,105,105,94,101,97,113,91,101,104,103,94,96,93,98,100,123,102,98,100,96,112,95,90,93,103,93,91,99,96,92,91,89,97,83,75,108,101,94,100,76,109,105,84,101,89,98,116,87,100,102,102,115,97,101,91,80,98,104,97,91,98,106,98,91,86,96,97,106,92,102,98,111,91,104,101,89,96,92,91,88,106,90,89,111,95,113,103,92,87,90,101,109,94,111,96,95,119,93,97,100,85,106,91,101,82,100,103,106,103,98,88,95,88,103,100,98,91,104,97,99,104,116,85,100,95,93,96,103,99,89,81,97,88,110,92,101,87,94,83,91,106,90,87,100,88,88,99,103,81,99,102,92,92,109,98,109,103,102,108,100,95,102,100,90,104,101,100,91,103,108,95,106,99,94,92,93,107,80,93,89,99,103,103,86,97,107,95,111,104,94,85,97,102,100,86,105,102,84,92,98,96,101,70,87,95,95,109,91,98,98,91,87,107,88,97,94,105,100,116,107,102,98,90,96,98,99,97,96,92,99,102,98,105,95,101,101,92,104,106,100,105,97,87,98,91,89,92,82,101,101,91,87,87,89,90,91,93,87,103,87,92,96,92,93,110,102,91,91,90,83,105,103,93,102,91,93,102,94,94,92,109,86,105,92,104,95,85,96,107,87,118,103,101,114,105,102,102,94,88,89,94,94,97,106,94,99,103,99,87,93,103,92,99,88,109,98,103,96,84,92,110,108,97,117,93,109,89,97,71,96,99,89,103,87,91,111,93,103,106,95,101,88,89,96,104,102,91,105,91,86,97,92,101,85,100,101,98,100,93,102,96,107,94,87,95,97,95,86,98,102,99,80,105,94,98,96,92,102,98,111,95,101,93,96,92,99,92,93,83,90,88,105,108,90,102,96,100,98,105,106,97,124,94,103,99,103,85,90,104,94,108,102,117,92,99,92,103,86,100,95,95,99,88,100,105,93,102,98,99,93,98,97,92,85,105,117,105,108,102,97,92,89,96,94,86,99,93,92,92,103,104,105,117,89,93,109,80,91,103,107,89,115,97,89,112,112,96,96,99,97,116,87,101,102,114,86,84,113,91,106,101,89,90,102,102,92,110,102,81,97,95,89,103,108,109,101,110,95,103,104,94,101,103,101,94,90,104,113,100,105,107,96,106,91,98,105,109,100,98,93,99,99,103,96,94,94,109,103,114,76,104,109,101,98,97,91,89,102,90,101,103,98,82,94,93,98,102,103,106,86,95,107,109,99,91,91,99,110,105,102,108,98,104,104,108,104,96,97,125,96,101,104,102,102,99,106,105,107,97,99,81,98,92,97,85,103,95,89,90,98,90,105,101,69,99,96,92,94,105,98,102,113,107,95,102,101,87,85,65,97,91,87,96,100,104,98,101,94,103,100,95,99,93,105,83,104,92,99,90,95,107,98,92,95,113,97,100,97,96,103,95,98,96,96,100,97,103,98,97,95,97,99,95,94,97,99,113,85,99,100,103,100,98,94,97,98,82,85,95,95,105,96,88,95,93,93,93,85,97,93,91,108,110,95,96,111,98,124,92,93,77,100,89,108,100,70,89,97,101,97,97,103,106,99,99,98,84,116,100,99,93,91,103,95,88,90,95,96,108,90,107,106,96,104,103,93,96,99,89,99,105,105,90,75,92,105,68,88,115,102,107,90,98,99,91,103,95,88,109,103,80,101,99,97,106,104,116,107,92,100,90,89,84,102,87,96,102,97,100,103,101,118,98,79,98,99,101,120,95,98,101,106,83,108,97,98,82,95,98,100,102,91,87,91,98,83,96,101,107,94,90,95,97,100,91,105,106,98,95,109,88,97,100,100,92,110,91,86,94,99,97,93,102,96,89,109,107,90,93,101,98,98,79,97,94,93,84,91,105,89,92,88,88,111,97,98,91,96,97,92,105,90,97,99,113,83,102,84,98,79,101,100,98,84,102,114,102,92,82,100,91,87,91,102,101,111,104,96,73,116,95,82,78, +394.47562,103,96,71,99,95,99,110,98,91,106,84,88,112,84,98,95,83,119,105,94,112,95,103,103,102,94,95,92,99,105,96,99,126,107,118,130,101,96,89,99,100,116,97,101,101,106,84,110,107,95,100,81,88,96,97,76,90,101,112,93,101,102,101,97,90,108,85,101,94,94,87,88,101,103,100,102,90,103,86,89,102,98,101,90,89,95,104,110,105,101,91,106,97,110,90,101,102,101,82,95,97,93,90,98,100,91,101,102,87,87,94,91,87,95,93,95,94,85,96,86,96,96,105,103,108,87,106,97,97,79,81,90,96,110,111,98,108,102,100,103,89,100,101,104,97,88,104,86,95,99,102,99,106,97,105,96,92,96,104,107,98,103,113,96,103,116,107,103,110,98,103,71,98,87,100,101,95,98,96,89,102,93,89,104,105,91,102,84,94,106,101,92,114,94,109,102,99,103,88,86,104,97,100,105,101,103,94,97,108,102,91,97,99,108,97,96,104,103,89,102,92,121,93,110,96,105,90,96,95,98,88,97,101,96,80,103,100,101,91,92,110,112,91,100,102,99,99,99,106,96,96,71,98,100,113,104,104,102,93,105,106,101,94,95,96,114,110,93,99,82,102,94,96,102,105,98,88,93,110,94,80,109,77,93,99,101,89,115,91,80,101,103,97,104,103,107,103,85,96,95,87,97,90,108,97,100,110,108,107,100,85,119,101,94,108,101,98,101,101,95,95,105,67,100,114,100,119,94,99,63,86,96,94,98,96,100,91,99,104,98,93,80,118,95,113,110,104,99,107,91,100,106,118,89,101,96,93,91,101,98,95,106,107,100,87,87,112,103,96,107,102,102,102,105,113,97,97,100,117,107,100,104,98,103,108,97,108,96,110,88,108,92,101,100,105,102,104,95,104,111,103,104,96,98,93,83,107,92,97,97,98,97,100,92,103,93,99,106,111,93,101,118,98,98,100,98,91,115,103,104,94,94,101,91,101,98,95,91,98,108,99,96,96,93,67,112,108,95,79,99,105,110,116,109,103,89,102,96,95,105,100,100,98,104,94,113,103,104,88,101,99,104,99,100,86,93,95,114,105,103,90,109,108,94,108,109,91,102,102,100,95,106,96,110,94,90,103,104,103,92,114,103,106,99,99,108,84,90,97,96,113,96,98,105,99,108,98,97,99,86,95,117,100,94,100,90,100,127,105,99,99,100,105,102,96,109,105,106,87,98,104,99,101,94,96,102,98,99,113,98,103,100,97,99,104,88,103,95,97,99,107,97,90,96,98,102,104,109,110,95,92,96,92,107,101,100,93,99,116,103,96,104,108,96,97,99,107,117,87,109,100,116,87,97,105,99,106,98,106,103,101,106,106,97,101,100,107,99,93,95,96,96,98,97,93,91,101,91,99,104,99,101,96,101,98,103,91,99,93,98,93,97,101,96,98,113,105,98,95,115,108,105,110,98,100,86,103,99,96,98,113,106,99,105,86,96,100,94,95,95,97,92,110,117,85,102,92,96,104,100,91,100,103,95,92,104,107,100,103,78,95,94,93,106,82,95,95,108,98,98,99,106,91,107,98,98,106,95,108,99,84,109,102,99,94,100,102,97,96,104,79,96,110,95,92,107,112,117,94,98,112,96,105,105,94,84,97,97,99,99,100,94,104,100,100,94,103,96,108,96,94,85,104,108,94,108,103,106,103,104,113,101,102,97,79,102,101,99,95,100,101,92,100,95,96,105,88,99,96,101,86,105,106,93,99,106,97,88,101,84,109,93,95,97,97,100,94,109,90,109,103,94,103,112,88,102,107,97,102,102,94,90,87,82,103,98,94,96,108,110,98,94,98,97,107,94,105,97,102,99,95,95,90,91,95,104,105,96,110,98,116,80,107,85,101,108,111,101,99,110,93,96,97,98,104,94,98,97,104,93,102,86,108,88,99,100,76,105,91,96,100,80,110,113,85,88,95,99,109,89,102,105,93,102,89,101,100,102,87,94,102,103,104,108,102,99,106,104,107,81,93,98,103,102,101,99,116,101,101,98,106,98,106,95,103,97,109,95,97,103,103,102,106,94,100,90,114,101,101,99,103,96,96,103,110,99,99,92,96,108,90,102,83,99,89,98,97,91,103,106,82,89,100,105,104,98,103,100,99,111,104,90,109,97,101,86,101,94,104,97,99,99,99,94,100,105,83,90,100,95,91,95,107,89,95,102,97,95,87,87,89,108,97,105,114,103,98,106,96,93,104,90,97,107,104,99,89,100,96,106,94,92,95,105,100,110,79,94,110,112,86,100,101,113,107,108,112,96,96,125,87,95,90,90,107,104,103,102,96,73,110,100,102,99,112,89,99,99,106,97,97,93,88,96,84,101,105,108,97,101,96,95,102,88,100,84,110,97,113,105,75,100,108,95,95,106,85,97,92,130,104,105,93,105,94,103,95,103,82,92,83,102,88,106,91,97,113,105,83,114,72,107,106,94,100,92,100,112,96,112,112,92,106,92,105,116,106,99,92,94,107,111,105,82,112,92,87,92,94,121,105,100,102,94,98,104,95,102,104,82,102,101,113,104,105,95,104,109,102,100,104,92,81,108,100,92,105,108,98,92,92,100,106,98,95,99,104,98,83,106,104,92,96,90,89,102,101,94,106,101,99,108,97,97,96,96,94,91,97,98,106,95,106,100,102,92,103,87,100,96,100,97,98,94,114,116,92,98,100,102,93,98,101,88,102,107,79,104,108,110,106,126,84,101,92,93,105,94,99,89,113,102,101,89,111,113,88,86,103,107,89,100,92,98,101,101,111,97,100,99,95,104,106,91,101,98,103,92,109,90,93,88,113,117,112,79,87,99,97,103,111,100,109,98,109,87,99,108,101,105,105,105,103,101,100,80,98,91,106,97,97,104,100,99,101,107,103,104,101,85,100,101,106,113,99,98,90,105,95,101,99,112,91,118,105,103,106,104,107,91,102,113,97,102,101,95,92,102,104,93,100,89,96,99,107,105,101,100,101,95,100,91,100,98,96,107,98,83,113,95,93,96,117,97,102,81,107,91,96,102,89,102,86,103,94,102,109,103,105,91,82,99,102,106,88,95,105,98,101,109,99,104,99,102,102,68,90,99,102,86,94,92,108,104,112,104,95,108,91,100,106,92,95,100,124,100,103,74,100,106,92,97,102,93,98,97,98,97,90,105,112,85,93,95,98,100,83,94,101,91,98,100,104,87,104,97,102,102,103,81,87,98,102,119,84,84,84,100,108,117,96,87,94,91,89,118,72,97,89,91,92,97,120,83,105,98,99,111,103,108,108,109,99,96,112,104,98,100,99,95,95,94,110,102,100,77,99,90,97,93,104,95,87,106,109,101,92,101,87,94,97,94,90,91,89,98,103,107,105,94,90,108,100,92,107,105,103,88,104,99,101,96,105,95,95,99,97,97,92,92,83,118,98,94,98,101,107,103,97,94,97,92,88,98,97,103,91,97,91,95,99,99,96,113,100,109,89,98,102,66,106,103,87,100,103,93,111,102,87,99,90,94,104,91,104,107,95,102,96,113,102,97,93,103,96,100,100,90,103,98,109,94,96,100,94,102,91,99,97,98,102,112,101,108,107,105,112,89,102,103,86,110,95,99,90,89,107,87,111,96,93,114,112,98,113,95,94,98,106,98,95,108,106,101,91,96,93,101,105,86,98,98,99,95,92,117,96,88,91,105,84,97,78,107,105,114,94,101,98,108,113,91,105,87,98,108,93,107,99,101,94,92,105,94,115,94,91,101,115,99,98,83,91,96,99,111,94,93,97,106,99,113,98,93,101,104,101,94,114,109,95,95,92,113,98,104,109,94,103,108,96,93,104,112,64,96,107,102,102,99,114,93,109,100,105,107,102,93,104,97,110,102,110,104,90,110,67,113,110,95,102,88,104,98,104,112,96,88,114,99,119,95,100,109,92,98,101,92,93,95,104,90,74,103,102,103,97,99,66,110,107,103,97,103,110,91,98,108,99,93,113,106,99,92,103,97,117,104,95,93,104,101,102,101,92,103,91,96,98,96,99,90,95,92,111,103,100,96,97,99,90,101,101,95,79,97,98,115,102,101,105,107,110,103,103,99,99,94,103,101,108,103,109,107,103,88,98,104,98,98,83,105,94,95,103,116,99,109,97,100,97,91,109,83,91,99,95,99,97,103,109,100,103,97,97,94,110,102,98,90,106,94,99,98,97,95,116,101,96,94,109,97,97,98,101,108,96,109,98,101,104,103,96,106,96,99,103,112,97,101,126,108,87,93,111,96,94,113,96,97,103,107,95,117,95,95,100,88,98,98,105,94,98,104,104,102,108,85,108,101,113,105,103,111,87,99,104,98,91,106,91,106,95,98,96,100,104,106,107,97,98,88,91,95,102,67,93,95,107,98,105,101,96,94,94,99,57,94,90,95,99,106,93,97,93,102,92,105,110,108,84,96,101,100,92,104,92,92,103,94,88,94,97,104,98,107,95,104,106,91,87,103,91,85,87,71,94,93,89,107,98,122,90,115,94,105,97,94,102,99,97,114,110,92,89,85,94,90,96,101,106,93,95,109,110,99,113,100,94,96,97,91,100,95,98,100,94,106,87,96,100,104,97,103,105,103,99,97,103,93,98,104,103,116,96,110,90,112,103,96,95,111,95,99,92,97,103,94,108,85,102,100,105,96,108,84,105,101,105,96,91,91,87,75,100,101,95,107,102,94,98,105,105,97,94,88,86,96,92,91,94,97,102,99,101,102,100,115,117,116,106,91,94,102,100,102,121,120,94,92,106,96,98,95,117,101,104,100,83,95,103,83,98,105,84,106,104,121,102,81,103,104,91,91,103,98,116,100,102,101,111,97,95,106,124,105,110,97,91,100, +394.61572,87,102,91,85,93,92,105,91,95,95,85,87,104,101,97,74,101,100,95,104,111,107,88,96,111,87,106,98,95,122,103,102,100,109,95,93,106,78,100,93,105,88,100,91,88,92,96,88,95,120,99,88,105,106,91,86,101,109,111,97,114,96,99,90,96,85,95,63,93,116,75,93,79,88,79,101,101,98,106,105,75,87,95,102,98,99,126,88,110,96,100,89,103,79,85,102,94,94,97,99,79,91,97,98,98,99,97,94,73,93,95,91,89,97,104,110,99,103,93,101,108,101,102,97,117,97,106,92,112,100,92,100,98,100,96,107,94,108,105,87,111,101,97,100,95,103,90,102,87,95,94,114,108,96,90,90,97,84,110,100,92,101,113,100,94,90,102,114,110,97,98,100,65,108,90,90,90,89,99,96,100,98,91,112,84,105,94,93,107,96,88,102,105,106,95,104,96,97,103,104,85,97,102,103,99,106,109,99,94,97,116,91,100,103,94,91,99,102,106,97,102,83,105,97,90,101,105,108,95,100,96,110,96,112,108,98,107,92,98,98,99,97,85,92,100,98,87,110,87,106,98,103,110,99,104,99,98,109,102,102,86,88,97,95,98,105,101,100,105,105,94,96,109,116,101,102,102,92,94,90,102,95,108,84,75,104,90,105,114,110,91,102,99,105,97,103,113,100,102,93,90,106,100,103,101,103,112,104,109,103,98,105,99,104,102,98,102,95,94,103,78,89,104,87,89,87,95,95,67,107,114,99,102,95,100,109,86,110,96,118,101,93,106,86,95,99,93,95,100,100,114,106,107,104,98,101,101,96,102,96,95,96,88,87,104,95,96,94,101,99,98,126,108,108,102,104,100,114,95,106,103,107,103,106,113,93,115,92,98,109,108,96,91,115,79,92,96,113,99,89,93,98,96,104,103,99,99,109,108,102,95,98,106,97,113,108,93,104,102,88,104,89,93,93,94,97,103,91,99,103,90,93,100,91,98,107,89,97,93,92,120,92,102,105,88,97,87,85,101,117,91,97,96,98,96,101,98,85,100,102,104,104,100,90,109,101,98,101,113,101,92,104,116,97,100,95,97,100,104,94,105,102,115,102,101,81,98,101,112,107,108,109,104,95,84,97,82,110,94,89,106,105,101,109,97,98,94,91,100,93,98,96,98,87,84,112,95,106,103,102,95,91,94,101,96,91,97,106,96,93,108,98,97,97,97,96,96,94,88,109,94,103,116,91,86,108,109,94,92,99,98,103,100,101,99,87,98,96,87,95,97,94,103,97,103,103,108,98,113,96,91,90,98,93,100,100,96,115,97,105,101,99,93,107,104,101,88,100,91,92,100,96,100,91,99,95,100,102,104,90,106,97,103,95,98,105,94,90,71,99,97,94,119,99,92,101,93,96,109,101,101,77,107,100,102,88,89,107,98,102,100,98,78,95,87,98,99,93,104,67,101,95,103,95,89,101,88,96,99,100,96,83,92,104,104,100,90,103,102,106,109,94,99,96,100,96,104,102,95,94,100,103,93,101,116,115,107,96,101,100,90,89,101,107,103,98,96,109,95,101,103,90,116,89,111,94,108,95,103,100,94,95,89,102,93,108,109,100,99,103,109,98,101,105,80,87,111,90,88,91,82,90,89,102,94,90,88,91,96,105,101,87,87,100,93,103,105,105,116,97,104,92,100,96,104,100,106,101,91,98,114,88,96,101,95,92,117,100,110,96,96,98,86,92,94,98,97,108,84,92,94,105,103,102,101,102,106,100,101,103,101,98,71,103,93,93,103,105,100,100,106,86,99,103,96,91,110,105,72,110,97,87,89,105,90,101,106,100,72,101,103,97,100,102,92,92,102,105,95,99,100,103,93,82,93,90,117,103,110,100,94,100,105,108,90,93,100,90,109,100,96,96,94,104,102,95,102,96,98,97,57,92,100,108,107,99,96,101,101,80,81,113,104,92,99,77,97,102,113,106,89,92,100,121,94,98,99,95,88,110,95,106,101,106,112,98,78,102,92,95,103,105,117,103,91,90,111,89,100,118,111,97,104,100,91,106,97,96,105,113,95,100,100,106,105,96,89,97,93,123,110,102,106,99,100,116,99,100,107,101,109,100,104,91,89,79,93,105,109,91,98,91,110,92,91,92,102,105,92,117,106,108,108,101,105,98,95,103,103,95,94,98,103,100,106,110,76,109,90,91,88,94,97,94,105,89,97,93,106,99,100,106,97,108,107,102,101,108,100,98,80,84,95,98,105,87,89,96,100,98,94,99,102,93,103,117,98,113,96,100,88,85,84,102,90,94,94,117,97,111,99,103,95,89,106,99,92,84,84,96,98,89,101,96,98,97,95,104,104,102,85,92,104,78,99,96,94,100,96,111,111,102,95,100,92,90,92,100,101,98,90,113,97,89,90,90,117,89,91,92,98,99,87,87,81,101,97,101,100,96,85,102,92,98,102,96,101,108,113,104,88,87,97,103,94,103,92,91,102,106,93,94,100,91,99,114,96,104,99,107,102,138,99,98,104,103,106,104,111,107,104,99,92,106,92,92,113,106,107,100,106,105,110,97,116,104,86,94,102,84,100,110,88,112,121,100,104,109,98,94,99,108,113,88,104,103,107,90,98,102,102,112,104,64,101,100,104,88,101,112,100,80,107,99,94,99,93,88,100,117,100,102,101,91,96,113,106,98,83,96,96,102,106,99,97,87,93,107,93,106,88,109,109,90,102,105,106,88,102,105,105,100,101,105,97,102,98,104,100,106,105,111,102,93,105,103,108,108,95,90,98,98,100,101,102,100,99,107,97,90,129,91,85,99,96,94,91,100,96,98,89,93,104,98,99,104,95,115,104,109,85,115,100,112,111,97,97,106,100,106,97,98,109,99,107,95,105,104,83,99,99,109,115,94,110,99,103,112,104,105,95,112,94,100,91,92,103,97,104,109,97,97,115,96,110,98,97,107,91,88,103,105,107,103,103,103,109,108,90,93,95,101,102,102,99,80,115,102,86,92,77,90,102,111,95,111,106,102,95,102,101,97,92,104,114,99,132,101,113,93,100,104,96,131,96,103,103,102,104,118,109,108,106,103,104,96,104,88,87,79,96,99,106,105,106,94,95,98,108,102,103,75,101,96,99,78,96,112,101,93,89,98,103,113,93,98,108,103,98,99,109,105,105,103,98,83,104,95,111,102,104,96,96,101,101,90,105,97,94,94,102,103,101,103,115,98,94,97,118,103,83,99,100,135,112,93,93,98,83,114,79,94,84,103,103,92,100,96,106,99,73,89,104,96,100,102,108,92,102,101,109,95,106,102,96,107,102,105,102,97,96,120,99,94,93,99,104,130,91,113,140,98,97,93,105,84,106,99,97,104,104,100,98,102,91,112,102,100,119,99,96,100,100,103,101,93,106,96,110,117,94,93,103,97,109,104,104,99,113,108,94,95,98,97,107,93,102,99,88,105,100,111,93,86,87,93,91,111,121,104,115,100,83,121,103,102,87,101,109,106,101,103,113,113,104,105,112,74,105,96,103,96,120,101,113,103,96,85,96,93,106,98,94,121,107,104,105,114,102,98,70,96,93,112,100,99,95,106,102,102,93,89,96,108,106,92,102,90,84,100,92,111,102,106,106,84,89,105,104,101,75,99,98,104,95,95,107,103,105,106,107,99,106,105,95,96,89,100,106,99,109,65,96,82,100,97,104,91,93,102,94,106,87,98,106,86,96,96,90,92,106,88,102,103,109,96,96,108,101,100,98,96,106,100,96,93,100,103,108,94,100,108,98,105,106,93,95,102,90,96,101,100,109,88,91,100,96,85,104,119,95,93,103,92,99,104,94,102,103,101,109,97,91,103,104,108,103,111,103,90,68,106,96,98,106,109,98,99,100,98,103,87,65,100,95,100,108,97,108,98,73,104,100,102,103,94,100,94,113,101,100,112,97,98,103,97,100,95,90,101,94,108,101,111,104,100,89,126,96,105,107,93,89,95,105,97,97,107,110,105,98,93,91,100,91,102,106,106,104,92,104,90,100,98,106,103,99,100,93,62,107,98,105,100,96,104,93,110,98,79,111,101,100,104,98,110,98,110,82,99,93,92,106,96,99,92,104,109,102,101,93,98,84,97,102,100,94,97,98,125,98,95,108,103,104,102,107,102,107,91,106,96,99,93,99,101,87,99,90,85,94,94,98,99,106,100,98,97,96,90,98,92,113,96,84,98,107,112,100,100,110,94,105,102,105,84,102,96,100,99,112,98,92,88,101,105,122,99,94,105,99,85,109,91,104,91,104,109,85,93,102,99,91,105,106,98,101,110,105,102,103,108,104,111,105,107,103,100,124,101,102,106,111,94,87,99,90,95,129,93,91,108,132,110,109,100,108,100,98,102,84,97,99,104,114,112,87,80,104,99,99,107,102,99,113,96,86,105,92,95,89,98,108,101,101,81,98,100,109,90,95,87,121,109,104,119,90,104,112,101,83,105,95,103,100,93,109,102,93,95,101,108,108,116,108,111,103,118,100,101,100,109,96,100,99,96,91,95,94,108,100,98,95,97,101,109,89,96,91,104,105,95,105,94,97,108,103,89,100,94,89,107,105,127,85,102,99,123,106,94,104,107,103,97,106,96,101,90,102,95,101,101,104,98,102,113,106,110,84,96,96,100,104,96,107,99,95,109,96,81,98,70,100,102,94,87,73,97,105,104,60,101,80,97,90,86,105,82,95,102,112,104,99,99,99,101,96,97,95,103,100,99,104,114,105,99,92,95,100,100,114,102,91,97,88,102,101,98,83,99,114,100,96,96,92,92,96,91,100,100,85,101,91,92,95,106,79,101,103,94,106,95,96,82,113,89,100,68,105,90,105,104,95,102,112,97,96,100,104,88, +394.7558,91,106,104,95,91,105,96,107,100,102,87,100,78,100,102,100,107,94,103,113,101,95,89,94,98,103,95,83,101,105,92,104,94,97,114,91,96,126,94,100,84,83,100,90,91,112,98,99,98,107,109,99,98,99,94,89,93,106,103,97,88,102,96,99,86,105,95,105,87,90,118,104,71,107,97,108,101,105,105,102,73,119,94,102,107,98,96,107,91,91,92,105,99,92,107,95,110,91,106,91,105,93,95,96,104,105,94,97,88,99,109,111,90,91,112,103,86,98,91,100,100,96,90,104,97,95,108,105,103,90,105,113,104,97,97,114,98,93,93,97,95,110,109,100,105,99,101,95,84,104,94,93,88,91,110,112,96,105,89,102,99,120,83,102,100,99,105,98,104,93,118,96,96,109,99,100,119,108,83,92,95,107,94,99,100,96,87,101,100,98,99,97,96,95,106,101,97,99,98,105,101,105,97,95,90,112,96,114,101,104,97,99,90,101,108,87,96,114,100,106,104,111,80,106,110,106,94,96,112,99,98,100,91,105,101,104,94,104,92,111,104,123,87,96,95,99,99,109,97,106,103,101,87,101,98,104,92,86,104,98,88,79,83,100,106,102,87,91,93,97,98,96,105,95,108,105,110,104,106,102,102,103,94,112,109,106,100,109,97,90,101,104,103,95,105,96,99,100,114,91,109,113,97,97,95,95,97,101,101,118,100,105,104,105,97,90,102,98,83,98,104,98,91,93,100,91,104,90,100,100,104,97,90,95,100,106,98,94,86,103,106,98,100,91,99,96,104,119,97,104,100,105,87,113,99,103,103,95,92,109,104,100,95,97,97,91,111,104,101,103,100,107,111,103,100,95,98,97,99,103,102,96,84,91,96,89,87,111,99,100,111,99,91,108,101,101,104,91,102,104,94,95,101,97,100,97,108,101,110,92,91,101,109,112,117,107,108,91,87,90,103,98,91,105,90,94,104,91,96,113,101,103,90,85,97,100,100,91,105,94,108,99,99,109,96,104,102,87,87,106,91,95,96,108,91,94,102,87,92,93,85,101,97,109,102,94,99,100,110,95,100,108,110,88,97,104,109,95,91,107,80,91,99,92,83,110,104,99,98,99,104,112,78,106,96,106,96,103,117,92,109,88,92,96,107,107,97,110,101,103,109,110,90,92,99,100,102,91,102,106,100,104,106,100,110,95,101,108,96,112,101,108,105,99,101,103,104,97,115,100,106,94,105,99,92,97,89,94,104,99,101,97,92,100,105,108,102,112,95,97,94,94,100,113,78,85,94,94,103,97,98,93,100,105,100,98,94,105,104,103,112,100,86,92,106,89,105,99,101,105,94,97,82,108,118,125,102,102,114,117,97,94,103,94,104,107,96,100,93,109,97,107,96,102,99,105,90,87,106,73,97,94,96,110,85,99,91,92,109,89,79,98,96,103,68,100,106,102,105,98,104,103,87,111,89,94,97,92,94,121,93,99,95,97,105,107,95,104,93,88,102,96,110,95,82,93,102,98,106,100,120,101,103,90,97,100,101,103,91,103,108,96,94,96,91,97,93,100,102,95,86,104,97,111,102,94,104,106,101,86,97,97,98,117,85,104,96,99,108,96,98,96,94,96,91,98,98,96,99,103,102,105,111,100,98,99,99,109,103,102,84,104,97,91,100,106,96,105,99,96,101,97,92,105,101,98,96,97,115,108,101,103,100,98,102,111,108,99,96,98,124,108,92,92,124,100,91,96,102,102,104,100,107,83,96,104,97,105,105,104,97,100,86,95,93,95,102,102,106,105,100,91,100,110,115,106,91,83,95,98,95,101,106,102,103,128,106,94,111,112,99,95,76,102,103,114,102,97,91,104,65,91,96,101,102,96,101,100,105,90,106,93,77,93,91,103,98,100,100,107,91,108,102,102,104,100,96,95,96,99,90,96,109,97,86,109,90,93,100,112,92,92,101,97,105,107,105,100,106,103,95,99,94,98,103,84,123,104,101,104,109,113,101,103,121,105,90,94,108,96,93,102,113,97,92,96,96,109,106,101,100,101,102,93,92,105,89,116,98,97,100,108,98,94,97,83,86,96,100,102,106,102,93,99,74,98,96,99,98,98,104,106,91,73,90,84,92,96,94,101,100,94,110,106,95,99,95,88,102,99,96,121,113,104,116,105,114,120,87,99,90,98,108,91,114,98,92,104,96,95,112,106,86,100,93,76,106,93,96,96,96,102,95,99,100,106,97,98,103,96,97,105,96,106,96,97,106,104,105,105,66,103,106,98,91,96,115,105,90,96,94,97,98,124,107,103,101,96,106,96,98,104,97,93,62,109,96,100,92,98,105,91,86,99,104,89,94,98,95,95,104,95,101,97,98,105,99,92,98,89,103,98,105,80,103,110,105,97,96,107,91,108,104,93,101,98,105,112,84,105,82,105,98,89,94,78,98,94,84,78,101,103,98,114,101,109,95,108,114,109,101,92,87,64,97,93,110,102,92,110,84,81,99,107,82,109,96,100,105,89,100,109,98,99,126,101,99,112,100,103,91,115,99,90,108,101,105,97,104,102,105,103,96,102,106,99,84,101,94,104,113,78,98,111,101,117,109,84,109,90,102,105,102,94,99,92,101,94,107,98,107,97,88,92,100,86,113,92,112,123,99,92,98,93,99,94,101,89,117,103,100,101,101,99,105,98,98,103,97,111,91,99,88,111,83,107,110,83,102,100,94,102,106,100,103,102,103,96,104,90,95,95,102,106,107,100,92,102,86,105,91,95,99,103,97,104,96,92,106,99,92,86,100,99,103,95,115,131,87,108,90,104,109,109,97,96,103,103,91,88,88,98,87,99,117,93,113,97,117,115,103,95,104,104,95,99,91,101,92,104,108,96,93,96,99,98,91,107,87,100,105,103,122,98,104,104,95,101,100,87,102,111,95,115,109,92,99,100,100,102,89,100,93,98,101,91,69,107,93,81,102,106,102,110,102,109,89,95,114,97,88,87,97,106,92,100,103,92,84,103,106,102,100,105,98,96,95,107,94,109,112,98,103,106,92,105,93,97,102,95,93,105,94,92,96,102,97,112,98,98,101,101,96,98,102,111,104,100,95,92,91,100,96,99,106,70,95,94,111,102,118,98,96,99,105,91,102,95,101,104,119,87,94,112,97,97,113,96,85,95,102,96,94,108,100,99,108,97,96,89,102,110,93,106,106,95,90,99,89,94,99,110,97,95,94,90,93,95,113,98,107,101,107,104,102,90,95,99,111,89,97,100,101,98,101,113,103,112,102,101,92,93,103,101,98,109,99,109,103,108,103,92,87,99,94,108,94,95,104,97,97,95,99,82,93,113,87,101,75,104,94,113,94,108,105,94,90,99,106,97,101,104,87,101,98,98,84,109,104,111,98,99,101,90,87,99,97,106,89,100,91,98,106,104,105,108,100,102,104,113,96,92,106,100,99,73,88,98,107,101,92,88,95,95,109,96,108,105,102,98,111,101,95,109,96,94,103,94,105,110,110,96,99,103,112,99,116,103,100,104,99,92,109,102,96,96,95,92,103,123,105,100,90,100,90,93,90,102,104,87,88,108,97,110,100,102,96,93,108,101,99,94,110,86,103,89,95,104,93,98,95,112,89,97,97,108,105,100,103,114,103,97,90,113,90,87,96,99,94,96,115,84,101,100,90,98,99,94,100,90,105,108,105,103,96,68,98,103,95,105,94,113,94,100,102,89,109,105,113,99,111,95,97,97,116,106,97,93,103,94,99,104,107,92,113,105,95,88,97,104,104,107,101,101,110,98,101,107,90,101,98,104,117,102,105,80,102,101,101,86,90,108,120,104,88,106,105,99,94,92,101,104,103,94,100,104,92,95,95,89,85,109,105,100,113,97,95,92,89,106,99,109,97,92,103,99,105,100,102,100,101,101,92,110,123,90,102,93,114,98,94,97,101,98,93,104,101,103,106,89,108,90,99,110,101,105,89,102,109,94,110,105,98,113,104,83,93,90,109,106,112,98,116,105,101,127,105,106,110,99,104,101,101,97,104,99,107,98,97,93,94,95,109,101,100,99,108,107,102,96,96,100,98,104,95,107,92,117,96,113,96,97,96,106,109,104,90,96,102,106,109,98,99,103,102,102,103,116,94,111,104,111,109,84,106,104,113,121,106,84,94,110,101,94,120,102,111,99,106,96,98,97,102,115,90,101,102,93,100,94,102,98,113,104,102,115,104,100,101,97,100,91,96,93,108,102,120,99,97,107,98,96,99,103,118,110,74,113,86,101,101,99,94,89,108,94,112,90,105,101,114,106,70,97,106,101,108,107,104,92,111,110,92,85,105,91,99,105,120,101,99,112,106,103,87,103,108,102,105,104,95,108,109,105,103,92,103,91,95,96,93,96,88,97,109,113,109,97,110,101,107,113,102,110,95,88,105,87,108,103,102,116,101,98,106,93,94,94,95,93,98,94,117,91,95,110,123,99,110,104,85,93,84,102,97,112,107,106,100,89,99,105,93,101,105,97,111,112,75,105,94,93,69,100,103,102,98,104,100,120,102,103,99,97,100,106,86,97,96,100,109,98,106,101,106,92,102,106,112,100,95,105,111,112,91,100,117,88,90,103,91,99,106,116,109,99,95,107,103,115,103,83,99,111,93,89,94,101,98,86,87,97,95,116,104,103,110,103,103,93,113,99,103,115,104,88,111,119,96,90,87,101,92,101,101,110,99,90,102,106,104,99,111,113,119,106,91,97,105,98,105,96,116,101,83,101,86,101,99,99,86,100,72,97,96,98,106,95,77,87,96,88,91,95,97,87,120,96,99,118,101,104,98,114,90,108,79,102,107,101,110,109,94,93,102,76,115,108,94,93,97,98,105,87,111,100,92,74,110,104, +394.8959,112,90,100,100,75,106,101,111,99,91,96,104,102,104,104,94,79,109,93,86,100,93,98,95,91,117,113,95,96,91,93,90,85,100,99,99,90,102,99,108,101,90,93,96,114,101,101,98,108,107,96,121,108,91,92,95,100,89,116,104,106,99,111,97,99,96,93,89,104,97,100,93,92,102,96,120,103,94,87,96,103,105,108,102,97,96,105,110,93,110,91,116,100,100,95,97,125,115,99,104,94,77,100,94,98,96,112,85,80,103,105,108,105,103,110,99,95,100,99,92,119,104,98,109,104,84,110,90,98,93,106,111,106,106,98,92,106,106,95,101,89,108,99,101,105,112,87,97,92,84,98,71,95,86,102,94,99,102,109,91,98,100,104,115,98,103,118,102,110,88,99,93,88,98,118,98,95,89,117,105,98,93,104,99,105,92,82,91,83,96,102,113,117,105,99,102,98,85,96,94,99,104,121,92,95,98,105,99,94,92,90,101,97,101,102,104,88,102,98,96,126,108,109,108,102,107,105,107,97,94,95,94,106,101,106,94,96,107,110,97,96,111,95,99,82,97,101,113,96,110,115,93,103,101,98,112,90,101,110,110,86,98,108,104,90,100,103,114,96,100,98,105,96,86,101,105,106,97,98,94,98,97,113,95,105,95,101,104,109,102,101,98,100,100,112,103,108,97,117,103,102,83,106,96,104,100,110,103,100,105,102,100,112,94,106,90,102,84,95,92,102,105,102,84,100,103,88,96,96,112,98,92,95,105,89,105,102,106,85,105,96,101,98,97,105,107,107,97,114,101,86,101,96,94,89,95,96,98,95,102,96,115,102,93,99,96,110,106,104,105,98,94,103,102,103,94,109,103,101,110,104,99,100,91,96,99,93,98,103,87,98,98,96,97,96,102,99,88,104,103,101,99,106,87,96,100,100,111,93,106,100,99,101,100,95,103,95,90,103,99,87,104,100,107,94,97,88,89,89,109,91,103,110,92,105,100,108,99,95,89,105,102,99,108,95,104,87,100,111,101,84,107,97,101,102,101,102,108,119,95,109,102,102,95,104,109,105,100,88,99,95,115,99,100,106,96,88,102,105,110,101,101,108,102,103,99,110,109,101,93,105,100,101,100,91,99,87,105,99,96,109,96,113,108,88,97,101,96,106,100,99,95,105,103,94,83,107,105,127,106,108,99,98,117,99,99,95,110,105,105,98,106,99,96,87,107,79,99,98,115,102,104,94,100,102,94,99,93,129,104,110,104,113,101,101,103,102,101,105,101,112,94,99,100,100,100,103,94,97,106,100,107,94,99,97,107,97,89,97,100,92,107,97,96,97,96,122,107,96,102,99,98,93,95,103,100,73,98,103,99,101,108,105,100,98,88,110,94,103,100,100,99,96,100,110,96,105,118,104,111,92,104,95,101,97,102,100,85,111,101,106,98,90,108,80,98,91,93,98,88,112,96,100,96,95,101,86,97,84,106,86,93,102,94,99,99,109,107,95,110,117,98,103,98,93,82,109,95,119,98,103,92,95,100,101,103,104,102,108,106,98,96,108,92,107,99,82,97,103,95,95,110,94,92,96,102,103,103,97,86,95,91,107,121,103,115,97,102,95,111,105,98,100,100,90,99,112,106,97,96,94,99,91,102,102,101,101,101,98,116,96,91,120,106,89,91,100,96,106,96,106,90,105,102,102,129,98,115,95,102,99,94,102,105,104,98,96,94,110,93,89,90,102,99,90,94,96,91,97,107,102,88,101,97,96,86,101,90,96,87,99,110,108,105,91,95,104,117,119,102,101,109,103,87,98,91,109,96,87,106,100,97,100,101,95,96,90,109,110,101,97,96,91,87,122,101,99,99,76,88,98,112,100,114,112,98,80,95,109,99,98,102,96,90,107,104,93,95,96,98,94,102,98,103,102,104,98,94,99,103,88,97,91,98,96,97,98,103,113,119,97,100,106,98,76,93,91,110,93,114,95,114,89,104,107,97,100,87,94,86,101,107,96,107,102,102,102,114,95,88,100,116,105,105,103,101,108,96,105,105,105,100,99,94,105,91,92,103,88,104,104,87,99,102,104,98,107,92,104,96,105,94,109,113,93,114,95,98,108,92,104,101,101,95,100,108,99,101,108,104,102,96,110,87,101,102,95,109,91,108,94,106,114,84,113,105,95,100,89,105,98,106,95,102,98,94,99,96,102,92,89,98,101,82,103,100,104,100,98,103,93,105,104,94,100,87,96,99,103,91,114,90,112,102,92,109,87,89,98,99,102,105,86,109,93,104,106,103,90,105,102,96,99,109,91,122,89,100,101,92,95,108,105,95,101,113,95,99,105,113,103,100,104,102,98,79,96,107,90,95,112,98,101,93,100,83,90,93,90,97,93,98,97,95,106,103,82,110,112,109,95,101,108,96,95,98,101,88,83,106,82,104,95,108,93,92,104,96,95,91,98,102,105,110,105,102,103,100,108,107,98,100,114,93,106,113,98,100,84,106,98,86,95,100,100,100,94,109,111,101,90,110,107,99,109,101,91,106,105,108,105,108,94,102,109,104,104,107,82,98,105,105,110,107,102,106,102,106,102,93,91,95,89,99,109,95,95,85,106,106,100,94,120,97,109,104,116,93,102,110,109,99,106,84,112,114,106,97,100,104,102,97,120,124,105,100,110,113,94,97,101,91,96,100,98,112,103,90,111,98,98,94,121,105,104,84,95,106,91,99,112,93,112,102,121,116,107,115,99,109,99,106,104,108,107,106,102,106,98,107,96,105,105,96,109,97,104,102,106,116,105,102,93,108,106,86,100,90,103,114,90,106,102,95,105,105,106,113,90,105,106,115,109,109,103,105,101,98,107,109,106,113,109,96,116,104,92,103,99,95,100,109,100,95,104,95,108,102,114,108,93,97,110,113,114,100,103,99,99,100,106,103,89,95,112,110,93,101,87,112,100,96,110,106,102,98,107,112,107,109,93,97,81,103,93,96,105,94,104,96,104,99,117,98,107,98,102,99,105,87,101,94,94,98,104,104,95,117,100,107,84,119,102,109,99,108,104,96,109,98,86,102,94,96,97,95,111,102,102,99,101,92,94,105,111,90,109,101,104,106,94,100,98,113,94,89,92,113,95,95,108,97,105,112,107,88,102,84,100,100,100,102,104,90,96,107,95,104,107,109,104,96,105,109,101,91,101,110,97,102,99,109,109,97,97,100,96,107,104,102,105,90,93,97,89,78,95,92,104,93,103,116,99,115,99,99,104,105,99,102,98,98,105,104,93,108,95,109,99,108,102,96,103,102,87,106,109,105,105,105,97,100,99,95,117,101,105,84,114,80,95,116,104,99,104,112,105,98,100,101,93,109,92,96,97,96,105,100,103,107,106,97,98,105,106,94,119,103,97,104,87,106,98,112,104,72,95,99,113,109,112,103,105,99,94,102,113,112,110,95,109,96,106,107,105,104,101,107,101,92,102,100,93,109,95,95,103,97,106,100,101,102,83,101,109,98,100,101,93,99,104,69,101,109,95,105,99,102,101,109,100,101,104,96,102,104,112,95,101,108,95,98,106,105,112,102,101,94,106,94,87,105,103,103,105,103,93,117,103,107,95,99,109,94,113,94,103,105,113,109,102,105,106,109,103,97,107,100,110,104,105,101,113,102,92,103,101,111,100,110,100,104,117,104,96,101,107,116,106,115,102,101,102,105,99,108,103,119,107,97,87,98,92,102,129,112,105,94,105,87,106,102,109,96,104,91,113,103,97,110,101,105,109,101,102,95,98,100,103,71,91,106,97,115,90,99,96,109,96,94,105,109,109,108,104,99,106,99,95,94,108,111,111,117,89,91,99,94,104,96,97,111,99,94,95,99,107,106,116,93,99,113,105,94,91,96,91,96,86,98,88,96,109,114,92,91,98,103,103,102,112,98,98,107,101,106,103,102,113,100,97,92,93,94,93,103,102,96,94,105,113,100,100,105,92,98,100,121,97,105,100,99,106,115,105,96,88,112,115,111,106,106,110,94,126,110,95,109,110,101,109,104,110,101,103,100,89,101,104,99,97,87,101,94,105,103,88,65,102,97,105,105,116,99,110,118,98,113,101,95,102,112,102,97,110,109,107,97,91,97,103,87,92,111,103,91,95,130,105,111,102,96,95,92,99,106,97,103,97,104,106,90,100,95,101,108,100,124,108,91,98,112,106,104,96,94,94,108,105,98,106,108,101,102,93,112,108,106,110,102,99,87,105,113,105,97,109,94,113,107,95,98,110,113,107,92,100,116,104,108,101,107,104,110,99,73,94,108,114,99,106,95,106,104,111,101,96,98,107,106,111,95,105,97,105,102,107,94,108,96,101,106,104,104,99,104,108,104,95,110,95,107,105,100,90,105,110,109,105,102,87,99,109,98,100,103,88,97,103,90,107,108,98,95,98,98,94,108,97,107,103,113,99,101,97,102,90,113,112,89,92,99,102,108,125,109,101,94,95,101,91,108,92,101,113,108,105,98,91,88,88,94,111,99,98,98,104,103,108,96,101,104,91,97,88,94,99,91,105,110,103,99,89,96,104,109,114,121,104,95,97,107,97,109,92,94,82,92,90,98,95,101,93,78,106,94,100,110,102,97,110,105,105,99,107,105,104,97,113,100,103,96,99,90,95,104,98,102,101,89,94,94,95,98,105,100,106,104,98,105,109,88,110,94,101,92,101,96,88,87,82,107,81,107,100,100,112,101,103,106,100,95,108,95,108,103,102,100,99,108,99,96,105,95,104,115,108,101,94,109,103,88,79,85,116,97,107,78,98,111,99,91,98,94,113,110,98,108,113,94,106,93,110,98,101,117,110,104,115,100,99,100,94,98,101,98,94,111,105,91,104,91,92,103,99,82,110,105,113,99, +395.03601,113,98,91,100,91,95,98,74,136,104,91,95,86,106,95,74,84,83,92,86,92,85,103,97,97,109,102,99,93,110,94,100,104,106,105,100,105,96,87,99,98,91,87,92,97,98,102,106,93,102,99,85,98,97,89,106,105,110,113,102,98,100,105,108,108,101,89,96,97,93,97,96,98,96,103,93,104,102,106,105,97,97,85,106,97,107,92,91,98,110,112,98,98,103,89,88,95,104,90,78,105,97,97,99,95,101,101,88,93,104,98,104,99,87,96,104,88,78,90,96,101,96,95,101,103,87,104,103,108,103,111,89,96,110,97,96,107,97,96,87,103,99,83,104,103,90,95,97,99,97,92,95,99,99,102,98,97,89,103,91,102,100,101,96,104,95,99,92,110,100,104,97,91,106,94,99,103,97,101,99,94,100,79,90,107,103,94,91,93,100,95,104,108,101,94,86,105,85,99,100,100,109,105,94,96,104,101,91,97,101,102,107,84,96,82,113,99,101,90,98,106,104,105,113,101,110,103,100,87,108,96,96,102,106,105,94,91,101,73,90,91,101,101,106,103,108,92,98,102,112,104,98,92,94,102,105,100,114,91,96,86,95,86,99,84,96,97,96,96,103,94,86,101,79,122,97,86,98,94,102,102,101,107,96,90,89,86,87,104,105,87,95,88,94,92,103,106,109,102,102,108,104,115,118,95,117,100,102,97,102,104,107,92,103,98,105,107,104,100,95,87,110,118,99,110,94,91,89,104,105,109,97,95,104,95,100,108,95,95,102,86,95,99,91,76,90,106,78,95,112,103,109,102,96,107,107,102,113,105,106,98,104,96,100,94,100,100,96,95,97,109,107,100,107,85,103,95,93,101,93,87,108,95,85,96,96,95,127,113,94,99,91,95,101,118,91,105,98,87,105,79,95,109,102,98,103,90,116,100,93,101,87,93,108,104,104,109,105,101,98,110,92,102,103,95,97,106,98,101,100,92,108,108,91,105,92,98,92,85,96,107,112,101,110,87,94,99,95,91,107,101,99,99,106,93,91,107,95,112,93,91,92,118,102,102,101,98,110,90,93,106,102,98,103,93,100,104,109,98,80,85,101,105,103,103,125,101,102,93,88,91,115,104,101,109,81,101,101,87,109,91,101,102,97,109,86,98,93,101,105,95,87,102,114,93,110,104,97,97,89,111,90,103,84,107,105,95,108,97,88,100,99,96,101,95,100,98,101,94,97,99,101,103,98,103,101,104,110,117,102,88,104,107,104,105,105,102,105,95,99,110,95,99,98,92,102,80,91,102,121,79,96,105,96,104,93,96,96,104,99,90,89,116,94,97,92,107,94,103,94,109,98,92,106,89,112,96,93,99,94,105,105,110,109,95,99,103,100,109,103,99,85,99,121,101,104,100,109,65,85,93,113,100,101,105,95,86,105,105,97,107,96,82,108,111,92,95,98,105,101,90,98,90,99,87,98,89,100,104,101,97,99,103,91,93,101,112,122,95,96,101,100,91,98,107,87,100,86,103,85,99,91,96,104,94,101,90,120,106,94,96,109,107,93,99,91,90,102,99,112,92,100,89,116,95,111,106,100,97,98,101,94,99,99,98,97,99,103,94,124,97,95,90,100,98,108,110,83,116,95,90,83,104,101,95,101,84,92,97,99,83,105,101,86,87,111,86,95,95,102,110,101,102,101,109,114,96,96,101,94,118,90,92,104,95,120,92,98,117,101,91,87,97,99,97,103,100,100,99,96,119,97,107,98,94,103,105,104,104,99,95,99,98,99,97,96,105,104,100,102,95,102,102,108,110,76,77,108,99,89,95,96,95,107,99,112,103,77,103,99,105,104,100,97,101,91,78,100,104,91,83,114,88,94,102,96,91,103,92,103,103,69,101,88,86,86,93,94,96,118,91,96,99,98,104,103,108,94,101,112,104,87,98,101,102,89,112,108,82,99,91,93,106,94,98,93,79,87,102,103,91,91,91,102,93,96,100,92,97,99,109,88,71,80,77,90,105,102,114,105,91,98,98,117,101,93,100,108,106,102,126,109,111,97,107,101,92,103,88,102,88,96,90,99,102,104,101,92,95,114,106,97,108,93,103,95,96,104,97,107,104,96,94,105,97,105,93,114,101,107,97,114,110,99,91,114,73,109,91,109,104,95,101,103,94,93,99,110,100,92,116,115,91,88,105,98,103,110,97,104,93,94,104,104,104,91,103,110,94,102,85,98,103,106,109,98,87,87,101,102,103,93,104,104,108,95,97,100,97,99,108,97,109,100,96,98,92,91,92,99,96,109,107,103,83,91,96,93,86,91,94,110,100,90,107,101,93,110,110,90,101,91,106,88,105,91,98,97,89,69,96,89,98,103,84,102,94,105,101,104,99,93,121,101,95,97,101,102,107,95,91,101,105,101,76,101,92,115,95,117,67,114,93,104,100,102,112,104,98,67,110,100,90,113,96,115,100,108,116,99,113,102,99,72,97,100,108,109,93,98,112,109,101,99,98,108,89,100,105,100,84,103,109,109,93,100,103,89,94,118,114,101,99,90,91,99,113,114,107,86,94,112,96,96,106,93,101,87,96,91,104,87,90,105,96,91,109,108,99,112,104,112,112,108,83,101,116,108,91,107,103,92,105,95,112,115,102,93,105,105,109,97,103,96,88,99,102,108,108,95,105,108,92,98,108,96,121,109,104,95,92,113,99,104,96,98,107,88,100,94,83,104,97,100,98,117,103,103,94,104,109,104,106,103,111,102,89,100,94,101,105,94,102,100,94,75,92,90,105,102,87,102,107,97,83,89,105,103,95,117,98,93,110,94,99,99,102,100,94,109,97,89,111,98,101,91,95,97,86,102,109,94,95,103,92,96,95,101,99,124,105,106,114,111,106,98,95,98,77,107,123,107,109,105,100,114,101,90,89,108,93,109,103,100,104,108,109,91,103,99,95,102,86,100,107,97,107,102,94,111,104,100,99,90,109,111,108,108,98,93,108,101,97,109,107,113,108,100,99,106,107,97,102,75,91,88,67,103,97,97,100,103,107,88,95,90,97,106,113,98,103,101,100,99,112,97,108,82,88,97,101,98,99,96,97,98,110,109,107,105,106,109,101,106,107,99,98,100,91,101,97,93,97,101,91,94,79,88,102,110,93,92,79,95,111,108,103,99,105,89,95,95,103,102,98,102,97,96,90,96,95,92,94,100,97,96,90,101,95,94,111,101,91,105,96,100,110,100,86,108,108,94,105,108,108,109,97,102,105,111,101,97,101,72,99,99,91,104,105,93,96,100,105,107,106,96,96,100,106,94,105,91,105,103,109,102,107,102,101,100,102,108,105,99,107,89,87,103,106,112,103,90,110,105,101,96,94,106,102,88,98,108,99,92,105,108,98,106,100,102,109,106,105,103,101,92,97,99,96,97,96,97,100,105,96,103,98,100,99,88,102,95,100,94,98,94,106,98,108,97,102,104,108,98,91,107,113,110,92,98,88,110,91,96,102,99,113,112,96,122,94,106,96,99,103,110,107,109,91,114,87,101,93,110,121,95,93,96,90,106,106,96,96,101,97,105,95,98,89,94,95,106,91,106,103,105,113,106,100,102,96,98,104,95,100,93,108,101,99,106,99,129,100,109,106,100,94,99,101,102,98,115,106,100,97,98,109,94,96,94,99,105,94,108,97,92,108,87,97,103,118,91,108,103,92,98,93,98,101,97,97,95,102,100,96,103,101,109,98,92,109,98,75,110,95,107,97,91,97,104,106,97,90,90,100,97,97,97,112,95,88,107,96,113,103,102,98,114,108,104,98,105,98,96,100,102,102,101,100,105,103,111,108,103,110,96,102,105,99,103,103,97,93,105,98,102,99,104,96,95,100,94,98,95,102,98,98,96,106,103,109,109,103,94,95,101,99,99,93,103,111,100,110,104,96,111,109,114,109,98,110,106,112,102,101,107,102,100,95,97,105,102,102,97,97,98,107,108,100,107,108,97,86,102,116,87,72,77,98,101,105,99,91,98,105,93,94,112,114,99,110,97,108,95,104,107,98,92,102,100,116,104,96,99,102,94,86,105,110,100,108,112,110,97,87,108,94,108,108,107,103,113,102,108,95,107,101,105,119,94,89,99,109,106,100,111,95,99,95,86,106,109,102,94,99,101,96,104,102,109,102,108,111,103,103,108,89,98,117,106,90,106,105,112,99,102,95,94,114,107,102,94,107,87,97,93,116,96,103,90,82,99,97,97,92,106,98,100,106,105,102,103,114,95,105,94,106,86,79,99,101,94,88,95,100,94,101,100,100,108,102,100,105,99,92,109,98,100,83,92,98,91,102,96,107,95,107,85,113,98,95,92,90,105,95,96,104,100,111,111,109,107,110,98,105,97,97,88,94,92,94,62,109,68,96,95,95,108,98,90,124,76,91,103,105,98,102,104,116,105,106,99,108,98,97,98,99,105,118,100,103,95,100,105,95,104,99,81,106,98,94,101,79,103,111,101,97,100,98,108,84,87,87,103,109,89,113,92,95,100,98,106,94,106,97,97,102,99,91,110,101,91,98,96,97,98,121,105,121,106,88,91,98,102,116,103,102,101,95,118,108,106,100,94,89,100,106,124,97,105,90,100,111,105,101,97,111,106,84,108,91,105,105,109,95,93,95,99,88,89,106,99,96,92,102,98,103,94,109,100,95,110,124,105,105,102,86,103,99,101,90,103,91,104,97,99,81,93,110,104,108,121,93,98,90,93,100,106,105,94,94,94,91,92,93,122,104,87,88,96,107,95,99,98,83,114,102,85,96,100,97,83,80,99,104,89,94,100,84,103,111,102,102,92,88,106,112,103,106,102,99,98,110,94,96,86,84,131,104,90,105,93,106,103,102,99,99,81,93,100, +395.17609,94,88,93,101,97,106,93,93,98,106,89,96,105,94,90,99,97,99,95,97,90,99,100,102,86,103,84,78,105,106,100,93,89,102,95,94,99,84,94,109,114,88,98,100,90,108,87,92,87,90,94,95,97,91,101,102,93,90,74,95,93,103,94,92,99,108,89,92,90,97,103,92,100,67,99,100,80,96,93,93,95,86,94,101,100,115,100,100,96,61,95,98,101,94,101,105,75,91,105,98,101,110,98,100,91,99,104,106,99,92,110,88,113,105,95,87,93,91,86,99,110,80,98,106,108,100,105,97,90,100,103,98,94,98,99,96,100,93,89,88,101,105,105,106,101,105,103,98,95,94,97,104,100,101,108,94,97,104,86,98,92,92,100,112,102,110,96,92,98,106,96,102,99,87,101,89,110,82,93,101,107,118,95,102,95,99,100,104,103,99,91,117,91,105,99,99,101,99,104,109,97,112,101,96,98,87,92,97,103,99,87,96,109,99,100,95,94,94,110,100,95,98,95,90,84,103,95,108,96,91,99,90,110,112,99,92,99,93,97,107,99,117,87,100,93,93,95,96,92,91,91,97,102,105,96,103,93,105,88,108,90,101,114,96,113,86,103,91,96,104,113,75,103,96,98,93,94,95,64,98,106,104,85,91,129,97,89,120,105,99,93,92,102,91,101,97,99,101,100,99,106,95,101,102,82,94,103,90,104,102,98,105,97,100,93,97,105,90,106,85,92,105,109,79,96,105,106,90,109,106,110,99,91,107,101,107,92,97,95,87,104,103,108,99,107,102,98,113,120,101,103,102,96,95,94,98,103,102,90,98,94,82,79,95,86,87,91,106,109,101,98,107,99,97,106,113,102,116,90,98,103,105,106,97,86,100,99,105,108,93,105,77,97,107,98,98,92,98,92,101,92,97,93,100,90,92,95,101,98,99,87,99,98,103,84,100,103,92,132,97,108,88,82,109,102,98,100,84,86,100,94,105,99,103,107,98,85,100,95,102,106,71,96,112,89,90,97,98,101,103,98,111,99,96,95,80,108,103,100,82,97,102,96,109,109,77,90,100,98,87,100,113,101,101,96,96,93,100,100,98,98,85,99,94,98,95,104,95,88,99,105,103,102,99,105,94,103,106,102,101,103,99,98,94,96,102,99,98,102,95,101,104,93,100,100,105,85,95,103,92,89,98,102,103,97,98,107,95,100,95,92,105,101,100,105,107,89,98,90,102,122,101,98,94,110,79,97,98,101,97,87,87,96,111,100,101,91,94,78,92,100,96,102,99,101,97,99,109,112,93,96,106,93,97,110,100,97,87,108,100,109,99,103,100,95,92,104,99,102,99,102,96,109,95,110,115,100,115,106,93,102,95,98,94,92,89,104,96,98,106,94,132,105,94,102,96,82,98,87,111,100,102,92,99,111,103,102,108,97,102,107,94,102,94,106,105,92,96,98,98,96,97,104,92,87,94,86,97,96,98,87,102,100,109,82,94,101,111,99,88,96,105,100,91,96,95,101,99,87,96,116,97,102,95,102,97,120,109,98,101,94,93,70,88,92,91,90,101,89,94,104,95,99,105,92,104,109,109,99,88,96,101,100,60,99,111,96,108,99,98,99,96,96,103,107,105,84,97,99,100,103,104,97,104,87,92,95,108,90,98,101,99,116,99,88,101,116,100,96,98,99,101,107,95,103,99,102,113,111,115,121,90,82,103,112,97,100,103,93,92,98,99,101,108,93,103,86,96,100,103,101,113,95,108,96,102,106,96,113,101,96,98,92,105,93,92,96,84,96,100,100,95,103,106,111,113,91,98,77,104,99,86,92,91,109,106,94,94,95,108,113,101,100,98,97,100,111,102,111,106,97,102,99,92,117,101,93,78,88,110,109,96,94,105,105,108,89,87,103,103,113,98,99,101,94,95,97,90,98,89,91,91,95,96,98,87,101,101,106,89,100,82,103,100,98,90,93,110,105,97,108,90,108,102,106,97,95,106,92,89,90,90,109,92,100,97,97,86,105,101,108,124,94,92,97,99,81,89,90,87,95,103,97,97,106,101,101,97,92,82,109,94,105,101,100,81,98,111,102,107,97,91,109,100,93,99,101,95,107,108,107,86,96,96,101,100,101,110,110,106,104,92,101,102,92,104,98,106,101,109,93,109,95,103,98,101,98,107,92,100,105,109,98,71,99,106,94,86,82,78,99,60,107,93,101,105,106,99,101,95,87,100,99,81,99,94,94,93,90,96,101,99,96,97,82,95,97,101,99,95,96,104,102,95,94,105,99,102,94,89,90,85,93,96,102,92,109,95,98,104,94,99,100,87,91,92,97,97,88,91,96,105,101,95,111,94,99,101,89,100,94,104,96,110,98,110,100,90,99,87,85,98,112,93,81,102,85,100,97,95,86,86,102,112,88,92,101,99,101,88,97,101,76,103,109,89,107,91,100,105,92,106,97,104,112,104,101,103,97,101,108,113,107,92,90,105,99,91,93,99,97,89,91,94,97,101,90,83,100,100,115,92,98,113,111,99,91,100,99,90,105,99,92,105,99,102,95,97,89,88,107,112,93,90,93,101,106,98,104,95,102,93,107,74,90,101,102,97,109,88,117,98,107,97,108,64,103,108,104,85,98,98,103,94,99,108,100,105,99,94,93,91,101,103,105,92,98,102,98,107,100,91,105,108,88,72,108,103,91,99,102,99,95,102,108,103,99,87,106,102,112,108,112,101,94,92,105,113,94,104,115,110,94,107,101,111,88,99,96,98,104,110,92,94,106,95,99,103,98,100,94,94,105,99,101,104,83,94,106,99,98,99,87,93,105,90,113,73,100,103,103,107,99,103,99,105,102,110,96,100,102,112,94,103,95,93,93,99,96,87,97,110,96,105,96,102,102,117,102,105,111,105,99,109,95,96,109,99,107,108,102,105,96,92,100,105,94,97,109,96,108,121,93,98,90,102,98,99,105,108,100,96,89,90,96,105,96,100,98,98,105,105,109,98,110,95,105,108,109,90,113,91,98,106,102,101,108,120,87,103,94,94,106,98,106,85,106,107,105,102,100,103,98,98,94,96,107,108,92,79,107,111,105,97,115,109,104,107,92,102,98,102,94,95,100,103,105,97,105,83,97,99,97,120,108,116,104,101,83,104,90,94,93,92,101,103,92,100,104,110,101,97,95,106,85,102,91,91,100,105,111,105,96,99,116,97,97,110,103,98,105,96,102,93,96,92,94,101,104,97,105,100,101,111,106,95,89,91,92,76,97,90,106,105,82,116,95,99,108,95,86,92,106,101,103,94,99,95,89,93,104,118,108,115,110,100,110,84,88,113,96,105,102,99,101,101,115,107,98,96,95,101,101,106,96,97,93,97,109,101,92,101,103,101,99,105,94,94,105,98,89,103,113,100,91,105,103,104,105,88,106,96,105,89,91,99,107,92,100,96,81,96,113,98,109,113,111,96,91,104,101,105,101,94,94,108,87,104,109,101,104,104,105,105,95,96,108,102,101,101,100,96,104,103,98,99,106,96,107,88,98,102,103,103,100,95,92,110,90,105,108,100,104,94,101,87,110,98,111,87,92,92,103,98,91,111,99,92,95,101,93,93,101,103,102,97,95,95,100,103,84,92,99,87,100,89,99,98,106,75,98,103,104,100,111,106,110,105,98,100,99,106,96,99,95,93,96,111,126,92,105,99,98,100,96,98,88,98,96,102,99,124,100,103,107,88,101,94,104,108,97,106,95,100,102,117,105,99,104,100,100,100,104,97,90,102,104,91,109,109,88,82,94,99,102,94,91,112,106,101,105,93,104,110,82,106,100,91,93,96,123,103,99,93,94,91,97,87,84,92,99,95,79,99,80,108,97,99,107,94,81,87,93,92,100,100,96,101,89,103,97,100,100,104,109,89,97,98,106,94,102,93,100,116,104,99,121,93,102,108,91,98,100,113,93,104,95,107,95,98,109,104,95,86,85,93,99,113,99,109,98,105,87,114,111,92,101,99,97,100,91,108,93,102,106,96,101,85,87,100,101,99,90,97,92,102,116,105,117,104,113,105,105,77,114,107,95,88,95,93,104,107,95,92,108,101,88,100,99,109,107,105,108,97,99,100,100,109,96,104,107,93,101,95,108,111,104,104,103,104,102,95,94,83,95,96,95,104,84,105,83,103,99,99,100,100,98,108,112,116,104,107,101,110,96,91,105,96,98,111,109,97,97,98,74,103,101,98,93,108,89,103,98,101,80,106,92,100,100,92,98,113,109,92,106,95,105,107,75,107,105,91,88,97,93,106,102,107,100,100,104,105,93,109,101,103,95,107,100,114,111,115,100,101,109,107,91,103,102,103,99,104,100,106,101,105,97,98,109,96,98,98,95,108,87,93,102,102,88,92,71,90,105,97,112,103,90,87,94,90,101,102,101,98,103,98,99,103,97,104,105,105,94,98,101,94,91,98,94,105,98,99,107,99,106,98,94,108,105,97,94,109,91,105,99,101,97,104,98,97,84,102,101,100,89,95,110,99,93,101,87,106,88,96,89,88,110,88,109,94,100,101,93,105,94,110,110,109,94,87,93,94,112,102,106,106,100,111,92,107,98,109,108,95,95,94,84,112,101,96,98,103,105,108,95,99,120,98,96,87,92,91,99,96,102,108,110,92,101,96,96,99,101,103,88,128,107,104,83,102,98,88,104,104,100,101,99,92,98,103,101,97,99,97,104,107,98,89,104,80,91,99,101,98,92,97,91,124,114,107,87,87,97,95,74,98,95,105,101,87,114,88,107,92,94,98,96,113,89,94,106,98,72,87,90,99,104,108,88,98,105,109,105,91,103,96,105,102,94,88,97,107,100,92,84,91,105,101,100,99,89,99,87,94,67,100,86,91,95,107, +395.31619,101,102,81,78,97,60,85,91,91,107,100,91,99,62,111,101,90,104,106,91,90,103,99,100,120,111,102,99,100,78,94,87,102,105,104,79,101,95,99,100,106,84,104,101,104,106,97,86,96,102,87,107,101,99,108,106,104,94,96,105,105,98,105,97,102,88,92,95,93,91,92,95,87,102,93,101,93,94,101,88,107,96,101,87,100,100,103,96,101,110,98,98,99,96,87,95,109,102,81,86,96,96,105,92,93,107,97,95,95,97,98,114,100,93,102,98,94,101,102,102,107,94,108,92,107,107,114,92,114,99,96,100,97,102,91,109,99,99,106,97,96,104,93,95,87,97,105,116,88,101,70,100,108,89,105,98,69,85,104,95,106,103,96,95,97,95,100,95,114,91,107,101,97,97,91,100,83,108,96,101,99,99,100,106,108,108,90,75,116,112,100,94,102,99,101,110,97,96,96,82,94,96,99,98,111,90,97,97,100,103,93,96,109,94,103,99,116,96,94,94,97,105,103,100,109,97,109,95,91,95,98,97,98,102,103,98,104,108,100,95,96,99,104,90,89,98,94,98,82,106,94,95,101,99,122,104,102,99,89,105,98,108,95,107,90,105,101,106,101,99,69,99,100,100,107,103,110,107,94,94,98,97,105,106,105,104,93,115,103,100,111,107,109,105,94,101,105,103,94,93,91,91,96,110,88,108,94,103,104,98,87,105,102,95,95,103,108,103,93,101,91,99,97,101,102,91,92,105,110,101,96,99,112,95,105,94,102,100,99,101,106,89,81,87,110,94,98,105,103,106,96,105,114,86,92,73,99,113,100,106,102,105,105,106,86,106,94,106,109,96,100,117,106,101,104,100,100,97,104,104,104,111,96,100,73,101,101,99,105,101,117,101,96,104,102,99,89,90,107,96,92,104,99,117,102,92,101,103,99,107,103,97,93,103,93,97,104,101,117,105,106,87,95,81,100,96,94,110,101,103,101,94,78,96,100,99,93,101,100,103,104,99,89,94,92,98,89,100,105,108,112,108,104,102,88,96,96,101,99,100,115,100,106,107,103,104,106,94,99,88,98,99,111,92,100,89,99,113,102,103,108,99,111,91,85,104,93,91,100,106,109,89,91,80,96,105,97,101,103,100,84,99,114,116,100,94,99,95,96,100,112,92,105,106,88,99,98,100,117,96,112,94,95,109,100,100,92,98,100,102,118,97,90,96,101,103,95,100,91,101,92,93,99,110,103,112,94,106,95,102,85,81,101,94,104,99,87,101,103,100,106,92,96,101,90,105,97,113,106,101,85,97,99,114,99,101,94,67,102,95,99,100,99,110,68,101,104,95,111,95,88,106,87,91,107,102,97,95,99,87,104,107,98,97,107,100,92,101,97,109,92,91,97,93,104,97,101,97,103,96,100,104,97,100,109,101,110,104,108,105,121,103,98,97,92,78,95,98,97,97,110,95,86,93,96,90,93,114,89,104,103,103,107,97,108,100,86,101,113,95,124,102,111,91,95,96,102,103,76,85,104,116,107,95,102,103,94,90,110,97,91,108,99,96,92,97,102,113,105,95,101,102,108,99,103,107,97,110,111,98,121,101,96,103,101,95,108,100,99,103,87,73,102,90,89,102,101,103,106,77,103,92,90,113,69,88,106,107,104,107,99,88,113,91,108,85,90,83,92,94,101,92,113,95,80,101,95,98,92,95,97,102,97,90,103,90,91,117,112,96,100,108,95,96,96,93,91,99,111,102,101,85,105,90,94,81,69,121,95,93,100,92,98,112,95,82,80,111,87,94,107,103,97,95,99,94,81,103,101,97,88,101,96,105,104,109,96,113,96,100,96,94,107,120,103,95,95,95,74,96,103,102,102,94,87,102,93,97,101,103,93,87,80,102,87,98,87,99,98,74,97,101,100,101,97,108,90,90,104,94,87,107,103,105,86,99,102,110,113,91,96,92,95,110,102,97,109,116,99,108,99,112,95,102,95,98,99,99,96,101,100,93,97,103,103,95,99,110,85,103,88,94,86,97,96,91,102,102,94,97,111,100,92,96,119,100,89,92,115,99,94,97,103,97,102,94,85,94,91,95,99,104,110,93,93,100,98,102,112,104,98,114,90,101,92,100,93,110,92,91,100,106,99,103,93,103,96,92,100,99,102,92,103,97,98,95,100,105,75,91,102,84,100,94,107,102,87,94,97,97,92,90,102,90,94,115,99,75,93,101,104,94,108,109,76,86,84,100,100,110,88,87,93,98,93,89,108,86,99,94,95,109,92,98,93,105,106,92,87,104,87,103,100,99,95,96,113,101,106,91,106,109,103,98,104,97,100,103,99,97,101,85,127,90,99,84,111,100,104,101,109,89,94,108,91,94,94,97,97,90,96,100,93,100,97,92,87,110,92,88,107,100,112,104,91,84,62,104,104,96,93,103,99,98,110,115,90,94,86,107,102,90,85,101,109,113,106,91,100,101,97,106,100,88,95,98,91,96,103,95,99,89,100,111,95,109,102,97,104,97,100,108,116,121,102,102,101,91,101,103,84,96,99,93,103,92,100,91,105,90,116,119,105,87,106,92,92,92,95,95,91,95,98,104,98,96,100,103,115,99,106,107,106,107,98,69,122,91,104,109,104,89,101,92,103,106,90,91,89,107,70,96,108,106,90,96,106,83,95,80,92,94,97,99,110,106,113,108,99,107,90,98,108,98,105,105,96,102,94,97,87,106,100,109,101,105,111,101,98,113,105,110,102,101,108,78,110,102,110,97,97,113,98,103,90,99,101,94,107,106,102,107,86,97,108,99,96,85,99,94,86,91,110,95,73,89,99,99,95,109,96,103,86,101,105,99,91,100,81,103,105,91,104,104,105,98,95,107,100,96,100,106,103,112,90,114,89,120,95,101,107,85,100,93,94,98,107,108,101,102,99,113,96,103,103,102,97,111,84,97,110,91,93,110,105,96,109,95,131,102,101,99,95,106,104,102,95,98,102,102,91,107,99,106,104,97,91,102,107,106,119,99,98,113,99,105,100,100,95,111,99,103,104,98,103,102,116,94,109,97,99,107,99,107,91,96,90,96,96,97,89,109,104,110,107,90,99,90,109,88,110,92,103,95,105,98,99,109,95,96,104,96,100,112,116,93,98,105,95,92,88,97,91,91,104,122,85,116,108,111,107,103,88,99,87,103,104,106,106,95,73,110,91,106,92,91,95,104,101,97,98,100,99,104,102,99,96,113,103,94,110,110,100,106,107,96,107,110,90,97,103,95,115,92,100,100,102,83,88,88,90,118,107,109,94,98,108,83,91,97,123,111,85,96,112,110,97,93,101,102,93,107,103,93,97,110,94,100,90,99,93,100,99,96,96,102,95,102,98,109,105,102,81,98,81,99,101,102,106,113,92,102,112,104,100,93,103,100,105,103,91,91,94,96,98,93,109,86,107,96,111,100,94,105,101,86,100,94,103,92,105,99,63,83,103,100,100,102,117,101,100,95,99,102,103,107,97,88,98,89,94,106,109,101,97,112,108,105,108,112,106,100,112,109,116,115,95,101,94,101,91,91,97,104,92,100,104,105,110,97,110,103,79,99,100,100,109,94,106,109,98,87,90,100,101,108,113,92,116,98,100,95,106,97,113,94,99,99,95,98,110,94,107,97,99,94,101,102,102,93,103,101,98,91,100,97,103,111,99,111,99,99,95,119,102,114,87,106,91,76,100,104,95,102,97,84,104,104,102,120,85,106,94,98,93,111,92,91,96,106,99,100,98,127,99,92,100,96,95,89,100,108,83,93,96,90,95,102,95,110,97,99,106,99,94,94,94,100,109,105,93,104,102,105,88,105,91,104,100,112,96,118,108,104,102,107,92,102,98,100,95,112,101,97,92,97,95,97,95,107,100,101,109,93,103,100,97,92,99,97,101,102,102,98,101,108,105,103,101,94,92,102,88,101,101,116,98,103,91,100,105,91,103,111,111,124,93,99,110,89,99,100,96,102,80,95,104,97,109,100,88,100,107,83,105,103,101,102,99,93,99,100,98,88,98,97,98,112,105,105,114,99,117,97,98,102,112,104,99,90,88,98,106,104,94,98,114,107,98,97,108,101,95,102,91,113,116,94,106,113,99,93,104,100,105,97,118,111,96,102,99,98,102,82,100,97,90,95,113,90,99,103,116,97,108,95,92,106,105,98,98,105,93,106,100,95,104,105,87,100,110,95,101,84,99,99,110,101,112,116,100,101,108,88,106,94,101,97,80,57,109,97,102,103,97,96,99,94,105,111,93,106,101,96,98,99,92,102,99,117,102,94,107,104,112,93,93,98,94,109,101,92,98,101,108,108,101,98,112,105,96,98,101,101,107,101,106,102,97,100,88,101,92,102,96,100,107,101,90,98,94,88,101,91,117,96,95,95,98,102,99,103,87,93,116,86,105,106,99,111,94,105,98,113,96,94,92,78,111,98,89,89,114,111,104,94,107,124,91,94,85,93,95,104,104,91,115,109,97,86,92,85,92,101,93,99,83,97,80,83,87,98,105,103,96,97,102,92,103,98,105,106,103,94,104,94,97,93,102,106,87,100,98,98,95,100,95,107,96,88,106,109,91,91,88,102,109,100,96,92,102,98,97,100,97,99,106,94,108,99,77,97,96,89,99,100,77,108,102,91,110,69,102,109,101,90,82,94,97,101,89,92,103,104,97,95,112,89,95,88,90,105,91,76,100,111,102,100,125,98,111,105,107,98,97,103,110,90,92,97,102,95,99,98,100,114,99,92,90,109,101,96,97,106,98,112,86,103,97,105,91,98,93,96,101,99,110,97,92,93,97,105,105,116,106,111,111,94,91,82,89,97,109,97,110,101,93,106,113,104,89,92,114,101,113,93,96,101,103,97, +395.4563,101,101,92,89,99,100,95,108,99,109,98,77,87,104,95,97,101,88,101,121,96,98,84,108,91,107,101,98,91,106,106,85,93,86,99,104,99,108,92,96,100,100,105,98,88,102,69,92,99,88,88,96,100,94,86,98,99,106,97,88,98,112,107,93,100,105,120,99,99,92,109,104,113,106,98,103,82,99,105,103,106,100,103,95,97,88,98,85,110,87,111,108,103,98,98,85,111,102,108,89,106,97,92,91,93,105,91,91,100,99,94,103,98,93,101,86,99,99,108,97,105,98,105,99,100,104,104,102,119,93,97,100,107,97,98,111,113,99,101,107,87,104,93,109,89,105,97,95,97,93,70,98,113,100,98,96,106,96,104,93,104,88,88,97,107,102,94,100,97,91,93,103,96,94,91,96,99,97,98,109,92,98,108,118,97,86,84,83,98,88,101,101,85,105,107,103,100,95,110,97,93,99,100,103,103,98,95,109,113,111,100,95,112,104,97,92,105,91,105,101,97,105,101,104,99,97,108,104,92,91,96,99,104,89,92,90,80,114,91,97,85,107,109,92,89,92,93,109,100,78,91,101,100,89,92,112,122,94,98,91,91,101,111,95,85,116,104,94,107,97,92,116,106,103,90,100,100,100,98,100,98,96,109,93,98,99,93,83,79,105,107,99,117,105,109,95,99,95,103,101,104,98,91,104,96,119,103,117,88,79,94,95,96,85,95,108,104,95,100,104,101,91,101,86,108,105,90,73,106,100,94,101,91,95,106,100,107,106,94,100,92,113,105,97,100,104,95,101,99,97,112,97,100,94,104,104,112,101,90,106,70,105,91,99,98,101,95,86,98,105,105,102,111,102,95,99,114,108,81,100,111,95,90,101,94,99,95,97,106,93,101,103,98,95,115,99,94,97,96,102,88,95,104,88,88,95,118,99,104,96,97,90,95,107,91,110,101,97,72,97,102,96,105,118,92,95,105,100,94,96,95,99,97,88,92,92,103,102,105,88,94,102,107,90,89,113,98,100,95,107,102,83,105,98,95,91,89,103,106,92,95,91,96,102,106,95,101,98,103,103,100,106,102,92,98,94,86,102,81,115,103,113,100,92,102,113,105,92,80,98,101,107,104,69,100,92,82,97,102,99,86,95,93,105,112,107,95,102,91,90,101,102,94,86,90,98,103,105,94,86,107,83,108,99,103,86,97,116,98,98,108,87,108,107,103,86,101,109,106,105,103,117,99,104,107,83,106,102,90,108,109,103,91,92,114,98,94,85,94,94,100,94,89,115,97,103,101,104,74,90,98,94,101,94,97,114,108,98,94,100,99,103,107,101,112,93,92,105,96,86,88,97,105,94,94,109,103,98,116,110,78,83,109,84,102,98,92,111,95,94,109,97,102,124,106,99,102,95,100,90,94,110,87,93,90,100,77,105,97,100,108,108,91,97,101,100,93,102,94,101,96,94,109,102,99,90,76,105,96,107,93,96,95,106,99,96,111,110,104,100,107,107,93,95,100,97,97,94,109,91,86,87,111,98,105,110,99,98,103,96,107,101,95,90,98,92,61,96,105,97,96,100,90,103,97,104,96,103,98,85,93,89,108,90,96,107,101,113,113,102,100,101,100,94,84,86,95,115,103,97,105,87,91,94,93,106,105,112,92,119,106,103,101,104,99,100,107,103,95,101,89,88,97,99,97,104,88,102,101,95,104,101,109,95,96,101,101,96,100,105,106,98,99,82,84,105,100,105,108,96,88,89,93,101,96,94,100,101,110,87,94,95,102,97,108,100,99,113,102,101,98,83,92,92,102,96,97,104,103,104,90,69,105,100,99,104,101,96,105,103,112,103,97,88,113,105,99,106,106,101,100,92,96,100,102,103,107,99,110,101,101,93,86,98,92,100,95,94,104,98,72,102,103,88,98,91,101,83,96,99,98,95,103,97,90,98,99,81,94,94,94,93,88,95,107,77,96,100,108,96,95,95,100,95,106,92,98,94,99,103,95,99,108,93,97,86,104,107,104,117,98,112,101,101,102,92,99,93,91,108,103,106,105,95,83,103,97,106,75,113,97,100,105,101,106,106,84,105,104,98,95,99,110,112,97,90,92,104,94,87,91,102,91,90,99,113,127,98,113,112,101,104,87,95,98,106,96,92,95,112,105,110,96,98,97,106,98,103,92,94,95,104,70,100,101,125,103,105,89,101,96,104,107,102,100,109,103,110,100,101,100,100,96,100,99,88,83,102,89,97,105,100,91,96,100,100,100,108,104,88,92,95,109,100,107,106,111,101,81,98,105,100,96,91,85,102,94,94,97,103,110,112,96,114,89,93,95,84,79,100,109,89,103,103,109,85,100,106,115,96,94,103,105,94,101,95,98,102,110,105,99,93,103,102,97,103,93,104,97,104,100,105,108,100,93,101,101,98,114,99,99,96,100,94,96,106,94,95,102,98,93,116,121,117,111,117,97,93,104,92,100,102,102,97,106,113,102,95,95,102,99,93,99,101,93,87,112,100,94,104,102,99,95,95,102,96,99,108,96,90,106,92,90,94,100,96,94,99,107,91,98,102,108,97,99,99,98,100,99,105,98,98,96,96,96,105,105,93,100,96,91,95,99,113,99,103,108,98,101,99,94,94,119,85,93,100,83,93,108,79,99,95,100,92,82,102,102,98,109,101,108,101,96,96,98,126,109,127,103,100,105,105,100,102,98,98,101,89,98,102,119,99,90,95,100,101,98,108,95,98,84,102,101,109,100,99,104,115,117,97,97,90,106,100,107,91,98,106,110,101,107,89,110,101,105,103,102,100,111,104,105,98,106,99,73,98,93,103,109,101,112,123,119,94,94,83,99,101,99,111,118,105,106,110,96,110,115,100,93,113,129,102,95,102,99,93,96,99,79,107,109,105,113,104,92,97,103,101,99,83,101,100,100,92,109,109,103,86,85,102,93,106,102,95,69,88,112,109,90,99,94,98,104,95,107,113,101,111,95,104,106,96,85,96,97,98,108,105,97,89,89,98,105,106,103,91,90,83,93,103,98,101,101,106,101,91,72,95,111,92,102,99,94,77,99,99,113,113,95,72,96,106,99,108,88,96,108,101,101,103,97,95,102,108,101,102,95,111,112,101,98,109,87,95,93,99,105,103,92,92,111,109,107,102,117,105,112,105,100,101,87,86,115,99,98,106,98,113,101,97,87,106,103,102,98,104,94,115,100,114,106,115,109,95,91,98,118,98,99,109,87,103,103,99,94,100,97,99,104,88,93,100,106,95,104,104,105,100,110,96,107,89,101,106,98,101,100,87,97,95,94,96,105,96,107,96,98,107,110,93,95,107,95,106,108,100,103,101,95,94,106,104,116,107,102,102,98,104,104,99,99,113,102,112,90,99,101,95,92,92,101,96,104,100,103,100,98,105,104,105,95,101,88,107,101,104,102,97,89,103,102,90,109,106,86,97,102,111,107,97,110,95,101,107,100,102,101,109,101,95,97,113,95,107,100,104,105,94,107,95,106,97,97,106,97,101,72,111,110,109,93,103,104,95,94,98,98,126,109,108,101,95,91,95,95,97,97,106,107,88,101,96,95,104,108,85,106,107,105,112,88,92,106,108,109,102,94,106,97,106,120,96,104,114,107,104,88,100,116,105,110,93,105,107,117,101,88,95,96,114,98,112,103,107,110,93,99,100,110,102,107,102,113,120,85,94,98,90,106,62,93,89,109,94,109,95,106,105,90,112,105,98,105,100,90,94,95,104,103,89,108,96,95,94,105,110,106,99,99,110,111,120,96,110,107,103,109,95,111,97,91,102,88,91,82,99,102,78,96,112,91,100,102,99,101,103,109,95,93,91,107,95,91,96,109,101,107,102,95,99,107,95,97,111,89,101,97,101,88,96,113,100,102,89,91,97,103,102,108,107,106,110,111,110,106,106,100,104,102,92,100,95,89,106,81,96,104,108,101,115,108,93,90,95,102,102,105,102,94,105,78,112,70,117,109,92,110,107,106,92,113,112,109,105,105,106,106,106,104,98,113,92,94,105,112,99,104,101,110,95,105,97,105,102,102,91,98,123,110,112,99,98,102,96,103,109,102,105,100,92,72,90,99,96,96,105,108,93,91,105,92,109,109,106,97,91,101,110,113,106,102,97,96,104,93,89,99,105,110,87,104,102,109,93,97,103,104,105,113,109,120,107,95,99,106,101,98,95,111,105,95,91,101,108,112,104,99,96,93,101,93,111,106,101,105,104,96,101,105,104,69,106,97,117,101,100,98,94,90,110,105,109,98,95,98,102,84,88,95,103,95,98,114,107,103,120,106,102,96,107,102,93,87,71,96,95,100,91,113,107,112,109,110,101,101,97,105,96,108,93,94,95,111,98,103,106,93,111,98,108,107,92,89,93,88,104,102,104,102,103,113,110,107,133,98,103,101,98,101,118,100,75,96,92,133,89,102,93,106,67,103,83,101,105,116,109,94,87,107,97,100,100,97,106,102,103,100,104,95,95,106,91,102,96,108,102,101,109,101,125,95,99,113,94,100,97,103,109,104,100,104,100,109,95,103,105,96,92,102,94,100,94,95,97,103,101,97,108,104,105,101,96,95,102,103,90,107,123,95,101,77,96,124,107,101,103,111,99,94,104,91,109,96,82,96,95,96,96,102,100,93,85,96,101,109,99,101,97,105,97,113,94,106,98,107,100,99,92,98,97,97,105,88,102,102,101,101,108,105,105,90,112,99,95,96,99,136,101,106,98,107,88,99,114,107,107,104,83,83,96,104,111,94,101,96,107,99,112,96,105,92,92,91,99,116,93,90,108,82,94,83,88,89,101,95,96,95,97,102,94,100,111,103,95,98,99,96,105,98,97,108,106,105,117,98,108,80,92,93,83, +395.59641,100,95,103,82,90,97,93,87,100,78,102,89,95,96,102,99,91,100,96,126,104,91,100,103,95,97,88,87,96,101,102,91,97,92,99,96,96,107,100,91,99,98,86,96,91,107,98,96,101,105,105,94,97,99,131,89,123,105,103,94,103,96,108,93,89,94,104,97,92,109,120,96,90,102,117,97,98,99,106,87,96,95,99,77,93,95,102,113,92,95,115,106,95,104,98,83,100,92,97,91,88,98,99,96,92,92,91,93,93,99,108,95,106,95,106,84,99,104,104,97,90,92,97,88,96,106,111,98,103,94,96,95,87,103,99,99,88,83,100,110,92,99,99,105,94,87,100,109,94,107,110,94,90,63,89,96,92,90,93,93,83,67,104,95,96,95,103,90,105,90,106,100,102,104,110,98,95,84,87,105,94,89,100,99,97,88,81,92,99,93,94,100,105,96,99,90,104,108,88,112,89,87,88,98,88,108,108,105,90,101,110,107,104,105,106,105,100,100,96,95,90,100,96,99,79,105,99,106,101,103,91,82,107,103,113,83,90,103,112,108,96,99,96,89,94,97,101,91,104,94,105,98,96,108,92,110,106,97,92,105,87,109,107,115,96,101,104,97,102,100,104,92,92,104,94,94,87,95,98,96,102,83,105,102,95,99,101,110,95,100,85,96,103,99,103,92,97,98,106,90,95,96,101,103,94,100,110,106,106,110,97,104,105,90,95,93,107,99,101,99,96,95,90,120,93,93,100,84,113,99,101,103,102,95,98,101,122,98,106,109,100,90,94,73,92,110,105,112,106,108,100,99,109,102,89,105,98,118,101,99,90,94,86,96,92,93,89,101,100,83,98,98,100,105,96,106,103,100,86,111,114,95,87,102,98,102,102,101,112,89,100,93,101,106,100,102,92,98,93,99,101,96,98,91,96,97,96,94,111,101,87,77,101,101,95,87,87,93,114,93,102,91,94,117,113,88,100,92,93,96,92,107,109,99,100,88,100,103,111,96,110,86,103,97,99,96,101,97,61,105,105,110,100,110,101,100,94,100,98,92,98,107,102,110,97,105,98,82,104,106,89,113,101,98,100,106,107,94,94,96,101,107,108,108,99,98,105,108,82,99,109,97,98,121,105,98,102,92,80,125,105,99,92,115,91,90,92,101,101,91,102,107,100,86,100,80,101,99,102,92,103,96,101,101,103,96,98,95,106,95,94,106,105,105,99,110,107,97,103,102,88,110,93,107,102,106,105,96,107,99,96,101,99,102,102,100,100,98,100,103,109,104,90,97,95,88,92,84,97,99,99,95,100,91,98,97,105,100,113,113,88,97,81,108,102,105,100,97,105,106,78,100,103,113,97,101,86,107,104,94,105,113,112,91,96,104,72,97,106,107,103,97,105,100,124,107,99,98,104,94,97,102,115,91,106,103,94,103,100,98,102,94,109,102,107,117,94,91,105,105,113,105,97,104,88,106,103,98,105,103,87,108,103,104,108,103,106,100,103,119,96,96,100,111,101,100,104,105,97,107,99,116,95,100,101,103,106,86,109,93,106,101,109,104,95,88,97,97,96,117,105,101,94,105,119,90,80,103,95,88,92,109,109,98,104,113,108,94,97,113,97,104,97,98,82,85,94,82,101,99,97,93,100,105,92,97,100,107,88,96,106,105,101,92,93,92,104,96,110,94,92,102,113,94,95,98,95,92,101,113,101,87,98,103,93,64,86,97,109,110,91,105,95,91,91,69,86,102,101,99,99,94,129,102,100,104,104,89,95,91,97,102,101,95,102,101,120,99,93,105,95,99,101,95,100,108,106,100,104,108,97,99,103,96,96,92,91,104,102,102,109,104,100,100,107,99,99,65,104,97,98,108,99,102,121,109,98,97,100,100,95,93,106,101,83,108,106,96,100,103,91,104,111,100,115,103,88,89,94,94,88,73,99,98,97,99,102,113,100,104,107,101,94,103,96,94,94,101,94,94,107,102,97,109,87,99,111,104,109,95,112,107,95,105,106,96,101,97,101,103,95,105,113,102,96,108,86,93,107,93,102,112,102,110,93,94,97,121,95,94,97,101,100,90,101,90,95,98,97,98,96,105,121,95,112,105,87,106,98,104,108,97,105,101,104,98,99,106,103,96,112,111,98,92,99,94,115,107,102,102,104,102,102,98,102,83,95,97,99,108,109,108,99,117,114,104,98,104,102,109,96,109,97,96,86,90,83,122,105,92,106,113,114,100,103,97,97,97,104,96,99,90,115,98,105,91,89,93,93,99,91,92,98,99,106,103,99,99,77,106,73,105,99,95,98,103,109,103,92,94,107,97,91,100,113,99,112,100,100,116,100,101,98,93,104,92,102,103,100,106,90,98,102,104,97,97,106,73,102,99,81,112,103,100,105,108,99,95,103,95,90,108,103,91,95,94,108,98,96,104,91,98,97,116,106,97,98,93,92,101,108,85,98,110,104,107,103,94,103,92,88,105,96,100,102,116,102,99,105,85,92,96,107,110,77,90,109,98,94,90,105,106,98,104,106,105,107,72,97,95,102,97,77,111,100,101,104,109,108,94,80,108,98,94,101,105,103,104,96,98,97,93,104,113,101,110,108,99,107,95,108,97,117,110,90,98,107,100,101,109,94,91,94,95,106,88,104,106,109,105,99,104,94,109,98,101,110,98,98,83,95,104,107,102,102,105,101,110,98,103,98,103,95,101,100,112,95,107,108,110,101,111,110,111,103,89,104,95,112,102,117,98,106,96,108,97,107,105,108,89,101,101,110,95,105,92,105,100,96,93,96,105,109,80,99,103,102,98,95,108,108,98,99,92,106,99,109,103,96,117,109,100,106,99,91,99,103,100,103,120,109,110,103,97,111,100,114,109,108,101,106,98,106,102,104,101,117,98,98,96,97,105,98,117,93,105,102,108,94,100,95,98,109,91,102,111,103,89,103,114,101,100,96,109,97,104,101,116,100,96,99,108,97,95,94,93,96,102,103,105,107,93,99,94,102,98,111,93,96,77,110,87,112,106,98,96,99,120,94,101,106,94,95,92,115,87,108,111,88,103,96,99,92,96,99,117,112,106,106,101,116,98,115,98,103,99,107,83,89,95,100,95,97,95,98,93,106,108,89,100,102,96,99,111,109,109,114,101,110,97,95,100,106,96,115,97,101,102,109,106,106,71,98,95,110,100,96,109,102,102,87,104,90,106,106,89,105,97,117,105,101,99,106,90,98,116,93,106,82,97,95,121,98,101,102,111,95,113,116,103,108,81,113,109,99,99,93,103,110,96,113,102,106,98,104,104,88,96,109,93,107,111,95,101,109,105,92,97,99,91,107,109,102,90,104,93,87,102,102,105,104,112,103,101,108,103,101,101,100,99,121,103,107,99,106,117,102,96,112,67,87,99,99,104,90,98,110,100,103,116,97,98,97,101,93,76,104,96,100,109,102,108,104,103,96,100,100,100,102,106,115,90,108,76,101,111,109,96,114,96,106,102,99,113,110,104,103,103,86,138,115,104,104,109,98,74,110,109,99,110,94,107,117,103,108,89,110,96,103,104,107,96,104,99,83,98,96,97,93,92,95,97,92,113,110,99,99,99,106,105,100,105,98,96,106,100,100,98,104,107,91,102,107,98,97,101,99,105,98,92,94,96,104,70,92,101,87,88,91,113,97,99,115,102,106,97,95,103,99,98,99,109,117,98,104,100,109,108,96,91,101,90,96,102,98,123,84,102,95,93,91,97,108,96,107,109,102,115,102,102,104,91,117,108,122,105,106,100,105,99,105,88,109,111,96,105,72,103,100,116,102,107,102,107,104,99,113,116,95,103,101,104,96,107,104,100,112,101,95,106,92,111,91,105,101,108,91,95,109,101,107,100,97,101,109,107,106,96,95,95,107,98,91,96,100,104,107,116,110,115,138,130,98,106,91,113,116,99,112,97,102,98,91,111,91,109,103,99,102,79,98,92,99,104,106,102,104,102,111,97,104,104,91,126,105,97,100,90,104,95,111,112,124,101,110,97,88,94,108,111,105,97,98,119,112,107,106,106,104,99,108,102,104,102,100,128,84,109,94,100,88,99,107,106,109,94,93,105,102,115,109,104,102,107,95,102,95,89,102,116,103,97,102,112,103,105,93,100,115,91,107,95,107,83,102,99,104,100,99,103,103,107,105,104,106,98,88,111,106,87,107,103,102,102,102,105,97,89,100,101,106,96,87,93,98,103,113,94,92,102,102,99,105,102,89,98,89,97,104,103,99,91,107,96,91,97,96,103,108,85,95,102,109,92,99,97,98,90,81,106,95,117,109,99,89,102,102,106,98,100,91,99,106,97,104,94,100,104,102,84,99,95,104,100,91,99,102,98,94,99,113,107,96,95,109,101,110,113,92,104,99,94,102,99,104,104,94,98,103,97,107,91,102,88,94,100,100,109,96,109,106,108,97,102,103,112,93,95,111,114,104,97,104,87,104,100,99,106,99,79,91,93,103,104,93,118,104,98,101,96,98,98,86,100,115,100,96,108,97,98,98,101,97,92,91,108,94,108,102,107,102,100,113,101,99,112,106,93,101,98,96,94,104,112,100,108,124,95,95,97,104,102,98,96,100,100,98,90,111,94,99,93,98,92,97,75,87,103,105,97,98,95,101,101,94,86,98,97,101,98,105,83,103,106,107,99,135,110,112,93,80,105,102,102,90,107,101,106,91,98,109,70,91,107,90,99,96,93,124,106,106,105,98,98,85,102,100,79,107,83,96,103,100,101,100,105,98,90,87,90,96,108,97,87,100,101,98,115,97,103,107,125,76,99,103,108,95,105,96,100,93,105,108,108,108,112,92,98,99,87,91,105,111,95,117,90,110,102,99,111,120,92,103,87,92,105,100,108,92,90, +395.73651,86,99,90,96,87,98,105,78,96,100,98,99,105,103,96,88,96,107,108,104,90,101,97,110,97,101,101,89,104,89,114,100,96,110,108,95,99,102,106,110,98,95,89,102,105,109,105,97,105,102,90,99,127,97,95,93,96,105,99,91,106,90,92,99,95,109,96,120,100,93,96,103,100,102,97,104,102,96,105,100,98,90,101,80,96,94,102,91,78,109,93,119,100,102,94,99,104,103,106,60,110,96,109,103,94,91,97,108,98,84,106,93,102,107,108,91,96,83,101,91,93,122,103,100,97,119,110,102,97,101,93,98,100,107,113,104,96,96,101,95,104,102,83,100,93,100,105,104,100,95,101,102,101,91,91,81,118,113,98,91,87,94,102,119,103,91,121,105,100,99,104,112,93,102,103,97,116,81,95,93,93,101,103,103,100,71,86,84,101,86,127,96,100,96,100,99,114,99,102,100,84,93,97,108,108,106,108,112,109,101,91,112,107,106,92,106,96,100,93,96,97,100,107,90,97,99,102,97,109,104,98,100,95,108,106,89,105,85,92,103,108,107,108,102,92,62,100,99,101,98,97,104,102,93,99,106,81,107,110,105,96,100,83,132,100,106,101,97,100,92,105,98,130,107,114,111,102,98,91,91,102,102,96,92,105,92,91,100,104,100,100,99,112,93,96,72,113,108,116,109,86,98,92,118,95,104,100,96,93,112,97,96,102,93,97,94,91,109,110,106,91,97,101,101,98,93,102,99,105,110,103,100,84,96,102,98,101,98,106,98,101,104,101,100,103,79,104,100,104,100,91,80,94,94,99,102,97,100,103,101,98,101,108,84,106,99,105,95,108,109,104,98,103,105,96,99,109,83,100,106,95,124,91,93,86,96,95,96,91,111,89,100,101,100,100,84,98,101,75,101,98,104,111,94,101,89,86,96,107,106,88,102,91,109,108,117,96,92,117,99,102,102,112,91,110,88,105,93,99,107,95,104,100,74,98,99,91,107,92,95,98,102,97,113,103,112,107,102,96,96,105,103,93,111,101,95,93,104,118,99,95,105,109,103,101,105,105,86,91,104,106,105,101,97,102,106,95,106,97,108,88,112,97,101,97,109,100,95,109,97,97,100,105,111,91,109,106,101,106,76,119,104,97,88,114,108,96,101,95,99,104,93,94,102,82,94,96,96,94,102,93,91,98,91,97,102,104,102,86,105,93,103,122,108,101,110,103,104,101,103,71,97,93,102,108,100,105,94,113,106,97,109,104,91,102,98,98,84,98,101,102,94,89,97,100,103,109,95,95,91,83,105,92,109,104,101,106,105,95,98,69,97,112,101,95,103,97,108,102,106,109,101,96,95,113,104,88,103,109,98,79,101,109,106,110,94,102,105,96,99,116,108,93,95,107,92,97,103,103,98,111,103,100,104,102,106,92,103,108,113,97,97,109,109,112,90,109,103,103,112,106,101,107,94,96,79,98,85,102,105,104,105,96,90,108,102,104,99,102,97,116,96,88,109,102,105,112,95,92,98,103,96,105,102,100,97,108,102,105,110,95,111,101,101,99,103,102,110,101,96,94,103,94,77,96,103,93,93,99,109,97,99,103,106,105,112,100,101,96,101,106,88,90,98,98,106,100,87,92,104,92,69,107,105,88,101,97,106,103,105,105,105,84,99,93,59,107,91,100,108,96,99,95,100,112,99,106,98,99,100,106,100,101,104,114,108,96,90,103,96,107,97,92,103,90,104,97,92,110,106,94,101,104,112,97,90,91,111,103,101,117,100,99,103,103,103,101,99,99,100,117,109,102,98,87,95,100,99,100,103,95,108,100,99,104,129,100,107,104,108,94,100,97,110,104,96,109,101,106,103,129,103,89,103,105,103,99,96,106,103,103,92,98,97,110,99,100,94,99,97,98,98,101,93,103,101,104,105,105,104,109,92,101,100,101,97,96,104,78,102,105,97,95,112,101,100,101,129,109,101,92,100,99,99,113,98,107,114,96,101,100,104,82,104,93,102,102,96,102,101,99,90,99,92,98,113,104,100,103,98,99,106,104,100,120,108,104,105,109,108,103,102,101,104,99,118,98,105,102,101,112,105,100,90,104,81,94,95,94,95,87,111,109,107,99,104,92,110,95,93,109,98,99,103,101,94,102,98,95,99,89,102,103,78,84,93,99,101,86,99,105,107,97,98,113,97,104,84,92,103,93,106,96,98,115,101,96,94,102,108,103,110,105,105,88,106,97,105,101,73,107,99,92,91,94,90,102,106,110,110,90,92,100,98,96,113,101,100,104,102,104,114,94,104,103,101,103,107,93,116,115,102,102,94,112,91,87,95,115,97,109,100,97,100,96,88,109,86,103,105,118,99,109,98,96,109,90,99,94,88,104,97,97,103,100,92,100,106,111,94,103,89,106,98,95,101,113,66,87,96,105,109,82,101,87,81,110,108,94,97,87,92,90,110,96,101,99,110,103,101,91,97,102,77,98,89,103,91,104,106,99,88,96,81,96,92,95,95,90,99,106,100,88,97,91,82,107,90,87,101,102,109,94,97,95,87,94,92,94,100,95,102,106,84,104,101,102,94,93,96,94,83,110,99,109,116,86,96,102,101,99,88,112,116,89,104,99,103,107,116,102,90,108,80,110,94,91,100,88,95,105,99,101,106,97,90,91,97,104,104,94,101,102,86,94,101,108,99,101,103,89,101,98,95,110,98,103,106,91,95,102,108,106,92,102,108,87,107,107,105,112,94,103,89,110,105,106,97,100,101,104,105,102,83,109,100,99,98,106,104,105,94,92,112,100,89,102,109,101,101,112,85,105,108,97,94,99,116,94,109,110,87,113,90,99,105,96,97,86,93,115,104,102,92,106,106,98,98,92,109,103,97,112,98,103,91,97,116,95,104,96,97,112,106,87,97,104,107,97,83,97,99,95,101,112,101,84,94,105,105,108,99,102,96,106,101,107,101,106,108,94,97,102,103,105,104,97,101,92,103,102,94,103,105,95,97,114,96,96,91,106,98,105,98,96,103,89,99,95,92,113,89,101,102,97,114,102,104,108,90,113,108,106,102,105,111,100,113,99,104,102,98,111,107,97,75,102,104,96,104,112,96,106,111,97,106,99,105,96,109,104,105,99,103,102,96,93,108,94,87,109,96,105,107,102,108,103,97,106,104,99,102,109,105,98,111,102,109,99,108,102,95,100,98,94,90,99,105,101,103,94,97,119,89,88,99,111,91,100,85,95,100,104,104,104,114,92,100,98,106,96,90,103,88,102,98,100,107,106,105,104,103,105,105,110,104,98,111,92,99,102,102,97,102,100,113,101,108,99,97,96,108,92,121,102,106,105,99,87,101,103,105,107,105,103,117,102,111,87,97,97,97,95,94,100,101,98,112,109,105,107,102,98,113,115,109,102,107,106,100,95,92,109,92,97,87,102,107,103,96,102,108,96,96,104,111,106,101,112,93,104,104,108,88,114,101,116,108,115,115,103,102,97,96,102,104,90,94,111,112,103,99,111,111,97,101,112,104,104,108,88,96,110,89,108,99,98,115,109,103,112,100,103,104,91,103,96,99,105,85,97,98,97,98,106,109,100,104,93,95,105,93,98,87,108,102,82,94,108,86,95,95,91,95,98,90,94,106,103,101,98,95,97,98,101,92,94,104,108,91,103,103,100,100,95,99,108,106,103,92,112,98,101,101,100,113,109,106,96,88,99,100,100,90,101,100,105,96,105,94,97,97,100,94,109,90,96,99,109,96,113,109,100,93,103,92,103,115,104,95,94,95,98,119,96,104,100,108,93,96,100,90,92,108,104,107,102,97,105,102,98,94,107,99,96,113,101,95,100,112,100,111,87,94,124,93,105,110,101,108,97,97,100,108,87,99,93,100,90,101,109,94,102,102,95,97,105,86,95,111,106,96,98,90,101,102,86,133,103,98,94,107,99,107,98,113,94,102,100,82,99,104,112,95,107,106,123,97,109,101,104,88,96,97,112,98,113,107,113,113,113,107,108,96,100,103,96,99,121,101,96,112,97,100,103,99,95,107,84,103,101,100,100,99,98,92,106,91,104,91,101,105,86,94,100,121,91,109,105,102,100,106,104,91,105,116,98,103,99,96,110,101,93,91,100,88,108,111,101,91,99,100,97,90,104,103,77,108,92,83,117,101,113,95,104,97,99,113,116,104,106,120,107,103,83,104,99,99,101,108,103,96,104,92,95,103,105,106,98,93,88,109,109,89,108,99,98,88,96,94,117,107,95,91,103,94,102,89,89,113,97,112,99,97,103,106,101,112,106,109,100,90,104,112,119,100,106,102,95,104,105,103,114,104,117,81,95,100,98,100,95,104,113,104,100,99,96,102,98,100,97,103,93,114,97,95,99,106,113,103,92,98,103,106,105,113,98,95,93,88,109,106,101,106,97,100,92,98,111,92,105,97,106,109,103,99,60,92,102,99,100,109,92,124,96,98,91,103,102,108,94,109,95,99,98,84,101,107,108,104,94,100,109,116,94,102,112,105,104,106,97,96,104,109,102,104,96,104,106,95,113,106,105,111,93,97,105,98,109,94,74,102,88,111,96,100,95,113,106,104,104,120,91,102,103,98,109,99,96,96,102,105,105,93,119,108,113,111,99,95,99,94,95,104,101,96,106,98,106,99,104,96,106,96,105,108,108,111,104,99,100,116,102,102,113,103,109,101,98,103,99,101,93,107,99,108,107,99,105,96,93,114,100,93,106,100,108,96,92,97,98,85,104,77,90,89,110,99,114,110,98,93,110,100,105,108,101,110,90,109,94,86,103,93,104,107,113,102,103,87,103,105,100,109,95,98,96,110,106,116,98,97,78,103,105,95,105,100,101,104,102,90,109,97,105,99,104,105,80,110, +395.87659,100,108,92,90,104,95,111,88,93,77,106,103,99,108,113,86,96,100,96,107,86,92,97,101,92,96,92,101,103,91,90,107,92,94,107,86,108,93,104,101,91,98,102,99,96,94,85,81,79,93,96,101,105,91,110,92,94,96,94,90,107,97,100,92,97,110,94,108,106,104,95,97,108,98,84,90,97,105,93,109,103,101,94,103,99,80,101,106,80,96,120,107,86,85,88,95,89,98,93,89,103,106,98,86,82,109,111,91,87,90,98,105,101,102,100,98,100,96,97,94,110,92,116,90,99,105,110,89,109,99,105,107,103,99,93,109,100,92,93,99,102,106,97,94,104,100,105,102,89,77,103,104,101,92,93,96,98,109,99,112,106,91,98,89,104,111,112,97,100,99,105,97,99,104,102,104,87,93,104,98,98,110,95,93,86,97,90,97,88,89,99,92,101,101,104,96,100,106,99,98,97,93,103,108,92,105,95,92,100,100,81,104,102,95,87,107,91,98,99,111,97,98,103,110,94,117,105,103,98,102,88,105,102,98,97,99,105,98,94,98,86,106,100,105,91,95,97,102,107,99,94,95,96,104,95,98,106,103,92,96,98,82,102,109,92,102,100,99,100,99,96,108,101,94,98,102,93,103,94,101,97,99,107,105,104,101,103,90,102,100,104,99,102,114,112,95,100,88,96,100,93,97,93,90,82,94,105,99,99,70,71,104,91,110,111,95,114,105,91,98,105,107,95,109,104,99,94,92,96,96,97,92,94,96,70,112,96,93,106,91,102,99,103,92,95,106,104,105,102,95,105,97,96,99,114,105,94,98,113,105,104,101,111,102,99,95,103,100,102,99,90,113,115,100,104,86,101,104,104,107,92,100,95,101,100,91,112,99,88,92,98,98,93,99,92,105,91,98,97,111,93,94,92,93,95,91,94,99,90,100,97,95,98,101,102,119,96,92,102,107,124,92,93,97,99,92,111,90,96,123,88,105,94,92,92,93,96,107,90,104,94,102,102,78,101,96,106,91,110,108,97,103,102,104,102,85,105,95,97,95,96,96,96,98,109,89,88,92,100,87,101,91,105,90,100,89,95,99,100,110,99,99,108,102,111,97,104,91,95,98,94,130,104,101,102,100,88,101,106,119,104,100,105,118,95,112,96,102,102,90,103,112,95,99,109,97,96,95,96,102,89,94,97,105,109,84,101,95,101,93,93,114,94,100,97,104,103,98,105,106,104,113,100,104,101,96,91,89,94,102,95,104,108,101,87,99,104,101,105,95,93,96,105,84,89,102,73,91,101,102,83,112,102,83,102,108,103,94,103,103,91,108,123,96,111,88,100,101,88,104,94,95,102,103,105,103,100,92,101,94,96,113,100,95,101,104,95,95,100,100,102,84,97,99,125,92,88,102,99,102,99,99,96,98,92,100,106,105,100,108,99,107,100,108,96,101,101,99,99,75,131,95,102,96,91,86,95,87,101,107,88,100,98,86,102,95,97,105,100,127,109,101,85,95,90,98,85,90,95,99,101,107,104,101,100,109,103,95,99,93,85,92,111,104,104,110,95,97,108,103,108,113,92,94,113,92,100,99,97,97,100,106,105,103,101,104,91,90,96,109,103,91,106,99,93,108,92,97,100,91,108,89,101,96,87,93,104,95,100,115,102,109,105,103,98,97,92,100,99,99,100,93,100,98,105,104,106,105,107,100,111,89,101,101,92,111,102,115,117,75,97,112,102,95,88,97,90,106,104,96,103,83,112,105,99,90,108,113,102,102,86,92,108,100,94,113,91,105,97,91,104,96,102,104,81,99,106,104,97,108,101,96,96,100,105,99,73,96,108,97,101,103,95,95,102,108,96,90,66,87,80,96,110,108,87,90,91,108,88,106,96,106,97,92,95,104,105,99,111,96,102,105,92,99,108,94,98,83,94,97,110,93,93,94,92,89,91,101,101,92,125,106,99,95,99,87,87,102,106,111,103,103,90,101,93,98,109,86,100,101,101,99,101,102,96,104,102,98,85,91,95,97,100,95,101,101,108,93,98,108,101,100,102,105,103,100,93,101,98,110,105,97,114,105,101,112,88,107,102,98,92,100,95,92,98,64,104,102,91,120,96,99,89,108,99,120,99,103,102,115,104,111,102,99,108,80,100,103,100,111,106,110,99,100,101,73,115,106,104,105,97,97,104,93,105,97,100,115,99,101,80,109,106,101,99,102,93,99,107,99,73,89,102,95,98,100,95,103,104,92,106,94,104,102,98,98,92,105,93,109,98,97,105,100,105,83,104,108,104,101,102,99,100,111,90,95,95,86,93,88,104,108,92,97,88,126,104,106,120,101,104,111,90,95,113,87,100,105,102,89,88,104,86,95,96,93,107,87,105,110,89,98,105,82,102,108,92,98,105,96,104,102,104,99,105,91,101,102,97,78,100,111,107,110,91,107,101,94,107,102,122,96,81,94,104,87,103,94,97,102,103,104,97,102,102,99,100,99,114,99,99,96,97,96,104,115,96,98,119,102,77,97,94,94,94,112,93,104,95,99,111,97,110,110,100,118,92,127,95,103,104,106,99,105,95,91,102,97,99,94,100,93,84,98,97,100,109,95,105,105,93,92,98,89,106,95,97,105,96,92,98,78,100,113,94,105,96,103,103,106,112,102,93,95,95,109,89,84,104,96,106,95,107,99,85,83,109,91,99,75,107,102,109,109,97,93,104,99,87,91,106,111,104,99,99,98,108,104,92,104,99,106,98,96,95,106,96,94,105,84,118,104,98,100,94,96,105,89,103,95,94,97,101,107,98,109,115,105,103,90,96,100,107,91,103,94,95,95,93,97,116,112,110,105,103,96,97,97,97,104,108,103,95,97,103,101,87,95,95,103,108,107,93,99,91,103,95,95,101,109,77,100,108,105,101,97,93,99,99,102,91,96,97,100,106,102,105,102,107,98,93,103,95,107,95,96,91,114,98,99,106,109,91,92,94,99,103,110,99,84,96,102,102,84,108,125,100,87,108,102,102,92,105,102,100,124,103,91,95,105,127,119,106,99,97,90,99,106,97,83,104,93,95,88,106,95,106,98,96,105,91,103,113,88,102,91,99,99,91,99,99,102,103,115,99,88,110,102,96,110,100,110,95,108,108,85,98,93,102,95,101,94,96,98,106,107,109,106,105,103,111,108,95,92,108,89,98,101,90,106,88,104,90,114,98,104,85,97,98,111,97,101,96,99,94,110,100,94,101,94,104,99,99,98,94,90,90,95,93,116,109,89,89,107,106,94,94,97,97,106,84,95,96,103,108,101,102,104,111,108,96,109,108,105,108,99,94,73,103,98,98,95,104,100,80,92,92,112,93,104,111,105,101,98,103,97,95,112,97,98,105,101,97,96,94,123,91,96,103,102,93,104,125,98,94,103,97,88,108,102,97,101,98,86,94,104,101,98,95,110,95,105,93,105,101,87,103,104,107,94,101,103,108,83,105,95,102,108,106,90,113,99,91,103,102,100,100,103,110,96,106,106,108,101,90,98,108,103,102,97,95,95,116,102,103,96,93,92,107,98,105,110,109,98,97,103,92,102,104,100,91,94,106,99,97,102,115,106,100,98,96,110,91,102,71,91,111,109,78,100,92,102,102,108,91,104,74,99,97,91,107,90,107,103,92,79,95,105,100,98,102,112,101,94,88,91,111,99,95,93,108,87,97,111,95,69,91,102,98,99,94,103,96,95,100,104,102,94,93,98,101,91,101,108,94,98,100,102,106,108,104,70,109,98,109,91,79,85,106,88,104,97,99,105,105,102,101,103,101,108,104,95,103,104,104,91,102,106,88,96,90,120,105,100,104,93,112,104,105,97,119,80,80,108,99,100,102,101,98,106,93,94,96,101,97,100,95,79,95,95,102,93,89,93,105,98,105,94,106,96,95,96,105,104,89,103,102,93,105,91,98,87,97,110,104,106,96,97,97,91,100,93,87,99,108,96,106,113,93,87,95,94,91,96,98,88,95,100,115,102,108,102,112,102,99,101,111,100,106,92,97,97,92,97,102,101,102,91,101,105,112,86,110,95,108,98,104,105,97,92,98,121,111,112,105,106,91,94,94,88,95,85,118,89,100,83,90,98,90,103,104,104,104,118,96,102,95,99,104,96,119,102,92,91,102,90,105,102,100,111,101,108,105,102,107,97,104,96,109,96,104,102,101,104,97,102,108,102,92,94,97,99,105,120,104,100,102,92,106,91,98,106,94,103,97,95,112,96,99,90,102,109,99,94,58,91,96,100,97,102,95,98,99,102,101,103,92,113,103,92,103,106,97,105,99,91,92,103,87,93,101,84,107,94,92,110,103,100,98,95,104,98,127,110,105,101,100,98,94,101,90,98,98,97,95,115,96,88,102,94,92,97,77,94,96,94,110,105,99,112,93,103,101,101,101,87,94,77,101,105,103,102,92,100,99,99,95,104,117,99,92,98,89,98,98,111,99,88,95,91,86,103,101,109,82,90,86,105,102,95,93,89,99,95,97,94,101,115,87,94,102,90,90,99,102,102,96,88,88,102,100,107,104,90,101,91,88,95,106,106,98,87,112,103,101,108,100,101,91,76,101,96,94,104,98,83,96,104,101,89,111,99,99,97,105,92,105,96,111,100,101,90,97,104,90,81,92,90,96,88,85,98,91,90,100,92,95,105,99,86,93,102,102,97,113,69,90,83,97,94,86,117,87,87,100,91,98,96,99,95,109,104,90,111,101,96,100,102,103,95,101,103,113,110,100,91,101,98,102,105,87,104,96,94,91,95,87,104,99,83,106,103,98,102,100,95,91,90,88,91,92,112,92,102,99,104,90,106,102,102,94,96,95,90,103,111,111,102,100,112,105,88,87,101,87,104,91,95,99,93, +396.01669,94,100,87,102,92,110,110,93,97,105,95,104,103,86,97,102,85,120,104,110,100,105,88,79,103,92,96,104,111,105,102,99,109,106,106,118,85,96,86,91,103,93,109,104,99,108,96,101,98,98,90,102,86,92,98,97,88,100,92,96,116,90,104,109,99,109,97,99,99,96,92,95,100,99,101,104,104,105,99,94,102,99,101,100,94,109,121,99,103,95,92,98,95,98,100,100,100,86,104,109,103,100,82,90,106,90,95,108,94,98,87,98,114,99,95,99,98,102,91,111,114,97,85,103,105,96,112,69,108,101,113,92,83,87,94,103,99,99,91,97,103,97,85,95,98,97,101,101,92,107,91,85,86,96,86,101,100,93,99,109,103,93,105,98,88,80,97,96,96,101,96,84,101,95,107,100,107,87,100,96,110,99,98,102,108,82,106,98,108,107,97,95,104,94,107,98,103,79,94,104,104,97,101,96,105,106,107,97,94,95,101,100,102,89,101,102,97,99,101,76,109,97,106,91,97,109,104,102,92,102,87,95,102,95,78,104,100,103,91,102,94,109,99,108,95,98,101,100,95,87,101,112,99,103,93,97,97,109,100,102,93,99,101,96,91,95,117,101,98,100,98,98,101,95,91,97,108,107,96,105,93,95,96,98,102,107,91,91,109,99,95,103,115,90,102,100,123,100,97,112,114,101,87,99,109,106,90,111,99,119,101,98,96,97,102,108,100,105,112,96,86,91,109,93,101,104,98,99,113,104,102,97,100,103,114,104,94,91,102,99,99,91,107,105,93,109,92,92,99,111,99,98,103,111,100,104,103,102,107,94,100,90,108,97,102,98,99,110,104,105,105,104,98,104,122,98,91,95,100,102,105,87,99,102,101,117,109,105,100,109,101,93,103,106,93,110,115,113,102,100,91,98,106,105,106,98,105,99,94,95,91,104,104,95,101,100,94,97,106,100,103,104,92,95,97,92,109,98,83,100,109,96,99,89,106,108,97,103,96,92,100,102,113,108,103,103,100,93,94,103,95,106,104,96,108,93,107,96,98,110,101,99,97,103,99,100,96,100,101,94,106,102,108,99,98,89,100,121,99,96,96,106,109,99,106,100,109,89,100,91,99,120,104,88,99,101,105,106,109,99,94,94,99,116,98,101,97,100,104,106,102,98,83,95,107,101,90,90,101,94,102,98,104,90,99,101,105,102,109,92,92,103,95,92,110,97,88,83,101,104,108,103,94,97,101,97,105,95,114,102,102,105,109,101,89,97,96,101,100,75,87,90,73,90,98,100,87,97,106,101,92,100,108,91,104,102,103,89,102,109,102,96,101,104,89,89,106,111,105,94,103,106,104,113,106,103,97,94,110,96,99,106,96,96,111,104,105,94,97,98,100,97,89,105,94,102,100,95,83,104,100,104,103,91,113,100,126,115,107,106,101,94,91,100,97,74,101,105,112,97,108,102,92,95,99,94,102,106,106,100,101,113,102,99,92,92,97,101,107,102,99,106,98,103,100,101,106,100,105,84,100,101,108,102,98,105,79,96,97,94,104,85,107,92,96,73,89,113,111,96,101,102,101,101,106,104,101,90,109,86,102,92,99,93,82,104,104,110,105,89,95,107,83,97,101,98,110,109,103,102,97,97,105,100,88,89,107,80,99,96,100,104,90,89,97,105,97,90,105,104,75,90,112,91,106,108,100,93,110,107,110,99,105,90,111,95,98,102,106,97,99,89,96,103,88,102,86,86,102,94,109,76,105,98,95,104,111,94,96,101,96,94,102,101,108,102,116,93,103,101,101,91,101,98,110,104,110,100,89,110,106,97,105,96,113,97,103,96,100,92,106,96,97,101,94,105,110,104,114,98,94,95,105,98,92,104,111,91,99,88,100,107,106,109,103,107,109,100,116,77,105,118,95,105,103,97,105,99,100,87,93,91,102,105,102,100,115,98,102,105,98,87,94,100,78,99,83,96,107,102,103,94,94,99,79,102,100,102,94,114,98,108,104,102,98,93,94,114,86,106,106,101,101,102,112,100,96,110,109,95,100,111,100,116,89,97,102,109,92,101,99,95,105,90,110,88,104,104,97,92,102,84,101,100,98,105,100,93,101,101,98,95,98,94,100,107,86,102,99,103,123,108,99,103,100,100,108,95,85,99,97,109,106,114,99,122,105,97,101,90,98,120,97,91,101,108,97,104,90,99,106,79,90,100,96,101,110,86,99,99,95,101,95,98,102,99,102,97,91,91,72,96,100,110,96,104,98,95,91,91,104,99,101,95,111,105,103,101,94,86,92,104,106,77,102,96,117,105,98,105,90,108,114,97,110,100,80,94,116,91,71,104,98,88,108,86,102,99,91,95,106,90,104,104,86,97,112,104,113,96,102,96,105,102,95,105,97,105,100,91,91,121,93,94,90,99,101,105,95,88,80,109,91,86,89,100,79,109,97,95,117,96,87,109,94,100,98,92,114,97,102,102,99,101,105,99,107,88,108,100,111,91,83,99,95,111,103,104,87,75,91,102,105,111,98,91,93,107,99,107,99,89,101,83,103,109,98,106,102,99,94,110,92,102,108,109,101,100,105,105,98,99,85,101,101,92,100,92,106,97,104,98,107,107,111,98,93,106,101,99,104,93,95,87,96,101,87,105,109,104,91,98,99,111,96,81,92,104,106,92,93,102,85,107,106,105,110,101,100,110,111,98,102,108,89,101,90,105,96,100,79,104,101,117,100,110,103,105,96,103,100,112,103,111,90,93,97,109,102,102,104,93,98,104,98,104,93,96,108,93,95,102,106,94,108,110,109,98,102,108,103,98,100,95,109,99,117,99,106,93,96,98,100,111,98,101,99,102,89,104,108,109,96,106,103,95,105,103,105,99,96,108,105,111,84,99,99,101,105,111,97,93,103,95,101,87,109,103,88,100,101,100,102,113,109,91,92,95,113,99,98,109,99,102,102,98,114,102,105,99,100,92,104,99,98,102,98,91,103,99,87,109,99,111,110,97,111,102,106,103,109,97,98,117,110,78,102,98,88,102,95,76,102,99,93,94,107,106,107,104,103,95,106,88,105,100,100,101,103,97,102,113,97,95,106,102,126,107,97,110,105,101,114,101,99,101,88,94,91,98,115,86,102,105,96,103,108,91,98,95,101,94,110,99,114,98,100,98,116,103,97,99,102,103,101,90,95,106,99,103,105,101,96,96,94,92,83,98,100,111,99,96,93,96,105,106,102,79,108,96,88,113,109,90,104,91,94,119,102,99,108,105,89,96,102,108,106,118,104,106,115,96,103,111,91,100,107,97,95,91,108,106,105,99,96,98,93,95,95,100,96,98,97,103,102,90,105,96,103,101,98,106,104,94,94,114,113,97,103,109,102,98,80,105,102,90,97,83,98,103,85,87,100,100,94,104,102,98,99,110,88,93,106,93,104,108,97,104,98,87,100,102,106,102,95,109,98,82,108,98,106,90,104,100,100,100,106,99,104,100,105,97,105,100,90,108,105,115,88,101,106,109,108,99,100,95,105,113,78,110,89,106,100,98,101,104,104,102,104,108,100,92,98,100,108,94,95,104,108,100,94,93,91,115,93,108,99,112,93,83,105,101,111,117,98,96,95,109,106,102,98,100,104,97,121,103,106,103,94,107,100,98,100,96,103,104,96,95,111,95,109,78,93,102,128,104,101,100,109,113,99,111,100,95,108,103,106,121,95,99,103,105,99,106,97,94,111,96,106,101,91,102,95,94,104,110,98,109,100,100,95,95,102,102,107,94,102,93,92,114,92,93,97,106,108,100,91,96,106,101,109,101,104,85,101,108,99,104,100,103,81,110,104,98,107,106,118,100,112,89,101,103,118,104,103,103,98,96,93,101,91,98,105,101,112,101,107,104,88,113,103,96,102,93,110,101,97,104,94,96,121,83,99,110,100,103,99,109,121,94,95,99,102,109,87,92,99,99,107,107,126,104,102,117,128,103,118,102,95,91,99,100,102,109,106,80,95,90,114,94,110,112,100,107,98,102,102,98,98,98,102,97,113,95,106,103,121,97,103,105,102,83,106,94,107,103,99,102,92,92,105,100,95,108,107,103,115,106,88,103,105,99,88,90,106,106,106,91,91,109,101,86,103,93,113,107,105,101,126,104,105,107,79,101,102,106,104,97,103,92,108,105,112,109,88,105,99,90,108,101,92,97,101,105,93,115,107,105,108,99,80,101,101,110,107,101,86,116,115,103,89,100,108,84,97,97,101,111,83,97,108,104,108,92,97,105,91,75,108,90,91,100,101,104,112,96,104,103,98,101,96,106,105,99,100,89,97,94,106,107,99,98,92,100,104,94,103,104,114,109,112,110,105,105,91,99,99,93,111,101,98,127,89,104,112,98,105,105,111,104,95,75,95,84,94,88,103,94,108,87,102,109,102,103,96,104,90,110,95,95,102,94,78,105,103,99,113,94,100,90,93,92,107,106,104,103,98,97,117,106,101,95,98,102,102,104,99,96,94,113,98,106,105,91,109,93,100,102,107,87,97,96,93,97,106,94,111,110,101,107,113,95,116,108,102,109,100,99,96,98,95,96,109,103,99,114,104,100,92,104,102,94,107,103,111,95,101,110,83,103,102,102,98,109,74,99,98,107,118,109,99,99,103,112,105,97,101,97,91,96,97,92,98,98,109,91,105,98,103,88,104,102,113,95,98,110,105,92,90,74,102,113,87,95,98,113,97,97,107,96,105,96,102,97,110,81,96,100,102,83,102,89,110,96,108,102,93,110,94,78,96,109,113,90,84,102,93,101,105,92,102,102,100,101,108,101,99,113,95,94,106,102,88,98,94,96,83,117,108,73,97,103,97,93,94,90,108,109,117,109,102,87,106,89,98,88,95,71,111,105, +396.1568,102,93,86,98,85,91,103,90,99,93,101,92,93,89,103,101,106,91,99,99,90,90,104,99,86,95,99,99,92,104,94,92,98,93,105,102,102,88,105,95,104,83,101,104,113,118,101,76,107,100,99,115,88,99,87,89,106,89,97,98,99,101,93,103,95,105,91,98,97,91,92,95,91,113,102,98,88,108,92,100,103,92,101,96,100,90,92,109,86,93,91,101,82,92,97,95,96,94,100,107,96,90,98,102,98,105,101,96,107,94,107,96,76,101,106,105,105,99,104,99,110,102,102,103,97,105,110,100,101,96,96,88,109,96,99,95,90,90,103,105,97,110,96,102,97,86,100,91,112,80,101,110,100,83,104,98,86,100,112,102,93,97,99,101,105,64,94,72,101,93,128,100,97,83,109,93,89,99,110,106,94,105,99,96,82,97,94,102,109,96,100,78,100,96,94,111,102,109,95,102,96,96,101,94,102,96,104,106,94,109,92,107,102,97,100,108,112,95,92,87,96,99,111,105,97,111,109,100,110,102,90,108,90,99,105,95,88,101,101,94,86,99,94,97,93,100,95,102,96,96,107,108,105,106,100,103,97,96,83,102,101,89,95,101,94,97,98,88,95,100,107,95,104,101,99,105,96,104,102,101,84,97,85,111,91,119,88,99,105,114,98,92,93,94,99,91,95,98,106,99,101,92,111,103,115,94,117,104,100,96,85,103,91,89,99,103,125,101,99,102,101,89,100,104,110,95,90,94,98,97,88,105,94,106,103,109,98,91,86,105,98,101,101,94,96,99,107,105,119,92,91,105,102,92,91,105,113,102,103,105,105,100,103,89,95,100,93,97,106,112,99,101,100,101,107,94,89,106,103,104,106,102,101,88,102,97,95,100,99,94,106,91,100,99,102,101,103,95,89,99,89,90,101,84,92,91,95,96,102,106,92,92,106,99,101,101,95,102,102,96,106,93,111,99,96,85,104,82,98,104,98,101,105,98,101,97,106,105,102,87,98,90,95,129,97,90,87,92,90,102,116,100,102,103,91,99,95,95,108,91,94,103,97,99,100,105,107,98,98,92,96,100,108,91,91,91,96,92,106,91,100,100,111,101,104,97,102,104,99,101,95,98,101,104,105,90,87,108,105,103,101,109,95,114,108,103,102,109,94,98,109,107,101,105,100,99,101,84,110,98,104,110,96,101,103,82,108,104,104,92,96,99,99,99,103,118,99,87,91,98,97,103,101,110,99,98,93,88,97,106,91,96,98,96,101,92,105,104,81,103,96,109,101,101,105,113,103,104,104,97,96,102,106,100,90,99,93,90,99,104,91,99,112,83,96,106,107,96,102,93,91,99,87,72,100,100,94,101,101,98,110,108,83,96,91,97,88,91,105,113,102,102,99,103,100,105,97,101,93,90,104,95,98,97,106,95,90,96,98,106,108,99,94,91,90,93,101,96,96,117,104,100,101,98,100,90,91,91,97,100,94,99,90,107,94,92,95,111,94,92,96,101,97,93,87,89,100,91,97,92,108,101,99,100,91,107,116,99,99,108,100,111,105,119,118,101,93,100,90,99,114,80,97,99,93,91,90,87,96,104,101,102,103,105,77,109,92,98,98,91,121,109,101,93,99,93,91,119,98,92,106,100,103,97,92,87,86,104,98,115,70,85,93,100,101,108,102,99,108,96,94,99,98,95,97,87,110,96,92,98,87,72,100,100,98,97,107,104,100,92,107,106,94,97,99,112,94,102,114,95,105,88,98,92,104,106,114,89,94,91,110,95,109,106,94,108,108,107,99,109,99,106,103,107,104,108,98,111,103,101,100,97,106,103,103,109,100,99,99,92,108,93,92,92,98,98,105,102,102,96,99,110,97,93,103,86,108,94,102,95,97,99,105,94,116,110,119,99,96,78,114,107,106,97,102,87,101,93,102,92,75,107,91,101,95,100,108,101,93,103,101,99,95,96,105,101,88,82,101,96,101,108,94,100,104,90,113,98,101,99,105,100,100,94,101,98,102,94,104,104,95,103,98,91,85,96,78,109,99,106,96,94,102,100,112,102,97,115,81,101,88,105,109,100,103,91,89,104,109,98,106,99,113,105,114,91,109,91,93,86,83,109,104,93,87,90,103,91,93,96,90,96,107,104,109,97,99,104,102,93,101,93,103,113,107,95,99,103,78,108,100,88,106,98,109,96,98,88,99,108,91,95,106,88,108,97,96,95,97,109,103,100,93,80,105,90,103,93,118,109,93,90,107,110,114,102,97,99,103,88,90,108,125,110,96,97,94,101,90,105,94,92,91,108,98,95,87,113,72,86,93,83,102,92,103,94,101,105,110,116,90,111,106,101,105,99,99,95,89,88,95,87,90,96,91,104,103,92,87,114,103,98,92,94,113,102,90,85,92,102,97,93,113,81,81,101,96,89,96,94,87,97,96,101,112,95,104,99,91,99,99,72,98,102,102,106,100,102,92,97,97,98,112,95,98,111,88,93,99,118,103,75,112,98,102,102,105,106,109,68,101,110,109,101,102,99,99,98,96,95,100,112,87,91,117,105,93,105,99,97,101,98,104,92,97,103,99,96,96,101,102,95,100,91,108,87,88,99,116,97,96,97,98,95,99,92,100,104,90,104,106,89,106,98,90,96,102,116,104,94,100,98,120,104,92,96,102,86,107,89,113,99,94,111,95,102,108,104,81,98,97,94,102,108,103,95,106,92,109,115,111,105,91,93,111,102,118,106,105,103,103,114,90,101,92,101,113,105,78,109,103,95,109,97,113,102,108,102,90,87,98,103,112,89,91,102,91,105,115,102,98,101,104,92,93,113,112,93,92,89,95,107,107,109,92,94,95,115,100,110,107,96,104,103,105,73,100,103,88,100,98,106,95,84,95,108,104,115,92,101,121,95,117,101,104,100,110,104,108,107,114,95,96,106,103,102,113,95,96,109,95,101,102,101,91,94,102,98,105,92,109,93,100,105,97,107,94,106,104,103,106,106,91,108,106,98,99,80,115,94,99,105,111,101,106,103,100,96,89,85,91,106,98,97,101,93,111,113,106,106,95,119,107,92,94,108,94,113,113,104,103,102,100,105,109,95,88,66,95,101,103,99,105,106,108,86,111,111,93,98,102,84,103,102,107,91,95,96,95,96,93,98,99,102,102,101,109,98,90,124,97,98,99,102,94,98,99,101,93,102,113,98,87,91,102,95,102,100,90,97,100,105,94,103,101,110,105,98,108,98,106,105,108,105,106,101,91,107,111,76,92,95,92,104,92,106,106,99,104,103,109,93,97,97,106,96,105,106,98,96,91,100,106,104,110,107,106,102,109,90,98,104,101,98,88,105,106,96,95,106,96,97,101,109,97,101,92,109,88,109,97,101,91,97,106,90,99,83,104,101,88,98,91,95,86,109,110,109,122,98,95,81,90,98,95,90,112,91,88,107,95,92,96,100,94,95,100,102,98,112,92,96,110,95,107,103,95,106,103,90,102,86,95,100,107,105,87,101,111,102,102,102,95,108,102,94,107,96,105,103,99,103,99,87,104,106,95,100,98,98,92,92,83,90,115,97,90,95,94,101,104,101,95,95,93,98,97,98,98,101,102,103,95,101,91,100,105,109,88,106,97,98,102,94,96,88,96,103,104,92,105,93,108,100,98,95,93,108,95,83,105,110,103,109,74,99,104,99,77,99,103,98,100,102,99,94,99,105,94,100,104,99,94,104,102,95,105,106,95,94,100,98,91,87,106,118,103,104,99,96,109,103,100,93,105,96,102,102,110,101,91,112,93,93,105,95,101,107,93,106,110,97,104,113,109,99,95,105,100,111,109,112,96,95,125,106,98,102,100,96,110,100,112,99,99,102,98,93,87,90,96,101,98,97,73,94,93,95,100,108,105,103,99,92,115,106,104,102,99,110,95,105,108,92,96,101,107,76,107,88,117,99,103,99,94,107,94,100,95,100,98,99,91,96,103,98,96,98,99,103,100,102,99,99,117,101,111,105,110,117,96,95,92,98,107,103,93,87,115,100,99,100,101,99,114,111,98,103,103,97,100,88,103,104,94,90,79,115,95,105,109,110,101,88,93,96,92,97,87,85,96,102,100,87,94,110,97,101,93,100,98,57,98,111,101,102,100,101,99,102,98,97,98,80,98,108,96,78,91,93,111,98,100,99,104,99,98,87,97,110,103,109,104,121,96,109,110,105,102,97,118,105,97,100,95,98,94,106,94,108,91,106,106,81,97,96,96,93,99,100,98,93,103,97,102,96,94,99,89,97,91,105,96,98,104,93,109,100,98,98,97,95,104,103,108,94,98,96,99,106,104,104,98,79,93,102,97,109,103,101,80,118,113,125,100,115,106,87,90,114,90,98,98,92,95,101,90,108,88,94,94,85,110,98,98,101,111,97,111,110,115,107,93,95,97,88,101,98,88,89,107,88,94,94,101,96,112,87,112,107,93,98,99,113,91,105,103,83,99,103,86,100,96,92,97,75,100,97,106,111,100,87,97,91,91,93,101,112,103,89,99,105,89,103,90,98,94,89,96,106,101,113,110,94,95,88,104,111,103,98,99,100,98,111,100,90,101,93,103,96,104,102,106,102,97,102,106,106,97,91,90,97,96,103,101,101,108,97,105,90,97,93,112,99,97,109,102,96,102,104,103,82,93,101,106,98,107,104,101,94,96,90,105,111,97,102,98,98,83,97,111,105,98,95,107,89,99,94,104,100,97,99,91,109,77,93,91,102,96,107,89,101,89,108,82,99,96,89,98,107,98,111,98,93,100,99,96,102,101,103,98,85,105,103,113,99,96,102,97,104,101,102,93,98,86,94,94,90,110,102,109,102,107,85,107,85,98,98,91,87,101,94,88,101,100,117,106,101,93,105, +396.29691,92,95,105,85,90,101,91,90,88,91,85,126,98,95,113,102,101,93,90,96,97,82,95,100,115,106,102,93,108,102,83,86,105,94,109,101,96,99,92,89,103,87,101,89,86,89,101,94,105,98,98,99,108,88,92,95,95,96,107,92,98,98,93,98,92,104,92,102,104,100,97,105,98,104,98,99,89,105,102,100,112,123,90,104,109,97,93,97,106,106,96,106,97,92,103,109,96,91,96,119,102,96,60,101,95,112,96,101,94,104,100,88,100,100,105,108,89,92,109,107,111,107,108,90,91,104,102,108,104,106,103,112,96,99,102,92,100,115,97,106,99,103,89,98,97,99,85,100,75,91,96,102,107,86,100,104,99,78,104,100,95,108,100,102,109,87,90,92,100,95,108,105,111,78,96,125,91,93,98,109,111,100,106,109,117,93,92,101,109,97,89,94,89,119,95,110,138,105,106,89,97,97,93,106,93,111,79,100,102,91,96,71,105,101,98,94,90,94,93,95,110,100,103,97,90,110,102,96,95,100,96,102,96,103,101,98,92,99,94,99,89,95,99,102,101,101,94,108,101,101,99,98,102,75,91,106,101,98,99,96,102,101,107,94,91,90,101,110,101,94,104,101,69,93,103,92,95,106,106,98,103,117,92,99,94,96,107,99,96,88,103,83,100,104,109,105,98,92,97,101,95,88,98,105,99,93,105,103,103,113,112,101,97,104,94,98,99,98,103,95,109,100,87,107,107,101,91,108,95,84,103,102,102,110,110,112,96,104,109,109,106,96,104,91,112,98,99,107,104,96,93,99,106,99,96,101,105,99,98,107,97,99,96,68,99,102,95,111,100,105,86,98,88,98,117,99,78,101,98,109,113,93,92,106,104,99,118,86,93,76,108,100,119,100,101,96,110,99,83,94,98,104,117,104,104,85,102,107,100,100,103,99,100,100,100,106,105,110,107,104,113,87,97,117,95,96,98,93,104,109,102,96,105,94,102,99,95,95,99,108,105,83,99,100,94,113,98,100,96,107,96,99,119,107,121,104,100,100,104,96,103,114,106,119,110,109,107,96,116,74,95,97,107,94,102,92,90,103,114,98,91,109,98,95,91,93,96,116,99,96,107,110,104,103,95,97,97,103,96,98,105,99,109,109,95,102,93,98,100,93,98,112,103,100,92,107,100,101,97,103,104,102,96,94,103,99,113,96,109,101,95,90,99,114,97,103,101,99,114,103,96,98,111,111,104,97,99,97,109,103,107,103,95,113,97,110,107,113,100,104,94,112,111,102,103,95,103,107,97,96,104,94,95,120,106,91,79,96,103,100,95,95,99,95,87,102,97,105,102,86,86,100,103,101,98,113,105,112,107,100,102,100,102,97,97,87,106,95,99,102,109,97,92,101,97,99,99,91,96,101,103,106,100,102,94,105,105,111,82,102,106,96,104,102,103,106,106,94,106,84,64,105,95,90,95,83,108,95,102,99,98,106,112,88,111,106,91,120,102,112,105,85,94,93,90,104,97,94,89,92,99,101,105,104,98,104,100,108,95,97,108,109,103,100,94,92,105,93,100,108,100,115,102,107,102,92,99,97,111,101,99,97,99,133,100,105,96,113,96,96,99,108,102,100,90,104,100,104,105,97,104,93,106,96,90,95,113,105,110,102,98,102,92,101,93,107,75,105,106,84,103,86,108,108,105,100,105,108,92,104,84,91,100,101,99,102,98,90,103,99,108,108,91,101,96,94,96,115,107,108,63,96,95,95,99,98,102,111,104,94,100,88,112,91,99,101,105,124,88,106,102,113,117,99,91,105,100,105,97,96,90,110,100,93,105,103,117,116,94,100,95,99,110,104,117,85,124,93,99,92,113,109,98,106,94,86,108,108,95,110,96,100,101,102,110,102,97,105,91,95,84,114,92,104,101,105,93,94,97,104,99,84,109,92,99,91,124,109,97,99,102,95,88,94,92,95,95,102,105,103,99,121,79,102,92,95,100,93,105,101,115,102,70,107,113,106,107,106,104,105,105,96,113,97,90,97,96,108,103,102,97,122,118,109,88,103,92,96,98,93,107,110,86,105,93,98,87,92,98,93,99,93,118,90,99,91,96,104,93,104,105,107,106,99,90,108,94,111,121,89,105,109,105,105,113,109,117,107,112,95,114,105,95,104,105,94,105,74,94,99,100,98,92,97,90,91,100,102,102,91,89,100,86,93,106,110,97,104,96,92,101,98,93,99,110,100,88,100,113,91,93,100,95,105,98,107,105,105,89,101,98,107,90,103,104,96,109,106,96,109,95,103,104,108,104,99,108,101,101,91,108,120,98,117,103,92,93,90,95,105,94,104,110,94,103,91,87,96,96,96,100,114,91,106,96,97,91,95,93,104,98,106,103,105,96,97,97,107,97,93,106,106,103,99,108,92,88,93,103,99,92,102,106,103,106,95,118,95,98,94,100,99,84,101,91,96,110,106,109,96,102,118,101,103,105,94,98,105,113,114,89,89,100,102,106,103,98,109,105,102,88,100,95,97,96,95,109,98,91,96,110,99,93,113,101,90,106,102,106,96,105,100,95,109,105,99,110,101,89,97,95,90,89,101,88,111,94,103,108,94,107,102,109,104,92,109,95,116,107,84,105,105,109,73,91,95,99,99,103,99,125,117,98,105,93,100,106,92,106,106,102,99,95,105,90,102,102,109,98,119,98,96,99,111,106,111,105,94,94,105,93,111,97,111,101,114,117,103,104,106,96,115,94,92,99,101,103,103,92,108,98,103,96,83,103,111,105,91,106,104,101,109,90,102,100,116,100,109,99,102,102,110,93,72,102,96,103,107,109,80,95,127,103,115,98,99,95,101,91,95,101,102,111,100,106,98,95,100,109,61,101,107,97,125,100,98,94,111,104,103,106,98,90,110,96,103,94,94,104,94,99,103,96,95,105,81,84,102,105,105,92,114,103,109,101,97,98,99,105,110,102,117,100,98,99,106,104,100,98,111,104,93,100,105,104,113,95,94,107,73,87,105,88,112,99,115,102,94,94,118,109,100,116,94,95,96,91,97,96,105,104,109,85,103,106,89,112,113,88,79,112,98,90,107,112,100,103,99,109,77,76,113,105,110,99,106,93,100,97,109,110,99,99,98,99,112,83,113,100,104,94,101,122,102,95,95,102,103,101,94,103,104,105,112,107,98,98,105,91,99,93,100,95,99,71,98,111,102,101,100,92,90,88,97,115,102,95,97,107,98,99,132,94,132,101,94,108,116,96,93,108,101,91,96,112,97,93,102,94,93,94,107,93,109,95,98,101,102,101,105,87,106,94,101,108,96,97,107,99,112,103,95,102,109,84,100,96,103,103,92,88,78,117,93,98,99,90,91,88,97,92,101,116,90,99,105,109,91,91,88,94,93,96,108,100,95,117,100,109,90,101,102,105,89,105,80,101,75,95,102,104,108,104,102,102,118,105,93,102,92,117,93,109,97,93,105,103,104,102,102,111,97,100,110,102,115,91,95,99,92,103,99,91,102,92,100,105,104,109,101,93,106,94,95,101,107,102,112,110,103,113,93,106,102,95,98,107,102,91,102,106,105,103,99,98,98,89,89,103,100,97,101,99,104,101,103,98,94,101,100,97,99,100,87,105,100,109,99,100,96,93,107,100,101,99,104,107,104,97,86,91,103,95,110,108,98,90,102,105,99,100,101,98,105,90,87,101,99,85,112,106,113,98,101,108,105,103,103,103,107,95,96,103,90,65,105,94,108,95,111,101,101,102,105,99,98,100,107,115,108,104,111,97,120,109,97,102,117,104,98,104,103,102,104,101,104,98,87,107,118,95,105,91,93,97,81,102,102,90,97,86,100,77,108,90,108,100,97,100,97,105,92,113,105,95,99,95,101,107,88,88,94,93,111,87,101,103,102,113,99,97,113,111,103,108,115,109,106,110,114,97,103,86,128,94,103,101,96,108,99,100,105,115,80,101,114,118,114,110,104,97,114,90,103,106,95,95,93,99,117,109,98,97,108,102,108,91,100,109,90,97,105,67,98,100,107,99,102,108,108,104,96,97,110,104,104,105,106,97,109,90,106,107,109,101,113,95,103,103,105,105,79,91,90,89,110,94,105,100,95,101,96,78,111,108,102,99,80,94,98,96,91,101,94,108,103,94,95,88,105,108,102,103,97,109,112,86,110,105,100,105,108,107,104,103,73,108,108,99,101,108,102,96,95,99,104,98,111,92,106,101,96,110,101,83,110,92,109,98,94,94,91,96,100,82,106,102,100,104,108,108,105,110,81,96,100,98,101,101,102,95,105,98,117,105,96,103,106,99,107,90,87,94,95,102,93,98,102,107,91,106,98,104,111,97,102,94,106,104,95,95,90,101,107,93,96,107,94,89,94,98,90,105,105,109,102,89,103,103,95,114,102,94,84,111,92,92,107,109,94,102,103,102,100,99,88,91,100,98,99,85,98,95,90,104,99,95,106,109,95,97,94,100,88,123,101,99,82,113,93,101,87,103,96,106,97,100,102,102,97,87,109,65,87,95,106,92,93,94,96,108,113,99,103,89,95,86,99,89,72,100,97,105,108,113,105,99,116,95,99,102,102,102,97,100,110,96,105,102,102,102,105,108,102,102,86,102,102,100,76,108,104,104,107,93,91,93,89,107,105,101,104,106,100,96,101,111,105,90,93,117,107,91,95,97,105,106,102,100,91,89,100,105,99,102,94,107,104,98,97,106,99,98,104,103,95,90,90,121,121,93,101,100,102,103,97,95,84,99,109,96,111,102,104,102,116,100,106,103,93,102,93,85,112,118,88,96,114,109,113,109,105,108,97,97,112,97,98,108,93,102,92,103,107,91,102,98,110,102,105,109,97,74,101,109,93,110,98,99,82, +396.43701,100,98,95,90,90,112,95,91,93,99,108,91,100,101,100,113,94,90,97,93,92,98,89,104,90,101,97,90,111,92,105,88,84,101,93,91,95,87,90,100,102,103,94,114,105,107,80,96,95,100,96,97,103,96,106,81,91,97,102,92,97,97,113,99,112,102,95,94,101,91,97,109,96,105,101,103,89,92,104,99,96,86,70,102,98,118,87,105,114,92,91,96,102,90,103,104,95,98,102,96,91,101,96,95,105,99,98,94,94,99,103,82,87,94,95,101,100,95,117,97,105,95,102,105,65,116,109,102,102,89,98,105,96,108,114,101,95,99,86,90,101,98,109,116,86,91,97,100,96,96,86,105,95,93,88,106,75,101,103,95,74,107,94,101,93,98,81,91,98,105,100,102,95,90,94,96,102,93,104,101,112,97,107,112,100,92,93,102,97,95,94,103,100,102,94,109,108,89,95,92,93,96,93,92,91,99,106,91,115,90,96,101,97,92,97,103,97,110,97,95,103,88,100,87,91,99,106,97,95,100,116,74,101,96,102,96,99,95,91,91,99,100,105,98,105,102,90,107,95,104,95,88,97,99,105,110,102,96,103,102,95,92,106,93,92,107,99,98,109,98,98,90,101,101,90,101,92,105,98,87,103,105,97,107,92,93,102,99,105,95,83,93,92,100,113,90,109,106,95,92,100,105,96,99,96,117,86,100,100,99,86,93,94,96,91,91,98,103,98,102,96,98,104,90,108,85,102,104,105,117,91,94,93,106,107,100,94,109,96,92,88,99,104,96,96,94,92,104,112,109,97,111,97,95,102,103,101,103,95,103,105,103,96,96,98,80,97,81,95,95,102,101,101,96,100,93,72,102,109,105,94,103,87,101,99,110,102,91,101,97,102,83,97,96,108,95,72,96,93,112,99,85,98,96,90,89,98,102,99,88,104,92,93,101,113,71,100,96,105,102,108,94,100,98,94,88,102,100,92,99,101,99,100,82,83,110,96,78,110,107,113,88,96,96,95,111,96,94,95,107,96,112,104,132,86,105,88,100,99,100,98,91,98,98,112,105,101,94,90,86,108,96,100,96,109,93,91,123,94,95,110,82,106,99,91,92,96,104,99,88,114,102,105,96,95,103,94,93,98,96,103,94,100,100,99,98,100,96,100,104,118,99,92,116,109,101,98,99,94,107,102,87,106,102,93,102,89,101,94,98,62,96,100,93,86,98,102,95,104,106,105,99,91,103,97,96,98,110,105,108,114,106,92,95,93,109,104,91,102,92,92,93,90,110,98,92,102,102,104,94,98,89,103,94,103,120,108,101,96,91,103,79,105,107,97,102,108,105,97,119,112,105,107,104,108,106,92,97,105,101,102,80,100,101,97,111,98,103,110,99,103,123,113,99,96,103,102,94,111,98,95,102,103,103,102,92,101,95,90,101,102,97,97,105,109,105,94,100,87,100,81,102,105,98,103,87,89,87,92,104,97,95,103,103,93,99,99,96,99,85,106,105,94,100,94,100,91,91,98,97,101,101,101,76,100,109,107,102,103,97,107,91,108,94,97,97,92,106,89,105,99,95,102,94,93,96,97,94,98,102,103,95,110,98,108,105,108,118,100,105,88,100,104,103,102,96,111,97,100,103,109,117,104,113,105,87,104,91,85,99,107,97,74,98,95,95,92,100,98,89,100,90,103,91,118,92,92,102,101,109,113,106,97,94,98,93,90,95,104,102,102,99,99,106,74,102,105,117,91,99,104,97,104,105,106,103,94,108,105,105,92,119,101,107,89,113,104,105,100,90,98,100,96,100,101,108,105,105,98,106,94,110,101,98,98,99,90,104,97,92,102,95,98,123,100,101,97,95,71,98,113,109,103,103,87,99,102,99,79,92,97,99,95,105,122,101,96,103,118,96,98,111,95,95,90,108,106,100,110,102,77,101,79,102,106,105,91,106,105,85,90,101,101,87,100,101,104,99,98,95,97,90,108,92,93,92,87,90,94,96,103,104,101,98,94,100,99,106,106,100,113,106,96,92,104,94,94,83,109,102,100,103,96,89,95,98,87,105,98,97,99,90,95,91,95,104,84,100,84,91,108,98,101,100,91,92,102,107,106,113,70,96,93,95,79,95,95,95,103,111,108,85,109,89,79,91,88,93,99,102,104,100,98,100,104,100,110,110,82,97,87,106,109,93,66,87,85,102,90,102,104,96,88,91,95,96,99,116,95,100,97,99,97,91,109,104,85,103,102,102,99,92,92,93,90,99,96,96,99,91,99,97,86,103,108,90,94,100,90,101,88,95,90,100,103,110,106,95,95,102,97,107,101,97,81,94,96,64,103,103,86,97,95,109,109,93,80,113,94,101,100,104,89,84,86,93,81,94,101,87,104,91,109,94,109,91,89,74,99,96,92,99,91,102,96,114,105,101,99,96,103,97,105,100,104,107,99,101,89,105,105,99,102,106,106,102,99,111,105,106,110,96,101,101,83,112,94,93,101,92,102,92,100,113,91,90,98,94,93,95,88,110,96,96,100,96,95,99,105,90,104,86,96,101,131,98,97,119,99,123,107,109,105,109,104,103,102,104,102,99,102,94,101,109,97,105,98,117,99,75,103,102,111,95,100,104,110,94,94,107,101,97,100,91,98,86,105,96,105,107,105,107,103,106,98,99,103,94,102,109,100,98,94,100,102,101,112,98,107,113,97,105,109,103,96,100,96,95,86,103,105,112,121,100,101,87,98,116,94,103,108,99,106,95,111,110,92,80,84,112,91,92,91,87,102,99,99,105,123,95,97,101,90,88,106,96,100,98,92,115,98,107,110,96,93,105,92,109,97,103,101,92,93,81,96,98,91,99,91,109,95,103,97,108,136,93,91,87,97,106,93,98,100,98,113,100,62,92,98,103,106,102,104,106,97,111,98,102,100,102,96,100,115,110,98,92,101,105,116,102,95,104,102,95,104,93,101,109,100,100,102,93,113,93,106,100,100,102,105,100,107,99,103,100,107,107,102,108,98,102,109,96,88,102,105,89,103,101,103,105,106,102,109,105,109,91,100,106,107,95,105,83,95,105,103,102,132,117,104,102,103,112,91,103,102,92,91,106,108,83,115,102,94,111,111,101,97,98,95,98,110,86,95,103,101,83,100,97,104,87,107,105,98,101,96,97,108,99,104,100,109,79,110,97,105,111,101,102,102,106,96,91,98,92,106,105,102,90,104,106,93,97,92,104,85,102,110,87,103,102,107,97,109,102,87,109,105,101,103,99,103,95,94,107,102,100,80,95,103,88,91,108,100,102,103,98,101,94,102,104,112,110,87,97,96,100,92,90,106,103,92,91,98,96,105,99,116,98,100,106,97,113,105,101,103,102,107,99,105,102,99,112,115,124,92,98,96,104,96,93,96,100,102,105,100,91,104,82,96,115,97,102,94,100,106,97,83,102,88,94,101,99,107,99,90,102,107,102,111,99,104,66,97,83,89,99,99,84,99,102,91,100,94,100,90,108,99,99,96,103,95,109,102,102,97,105,101,96,99,88,103,92,112,110,101,107,104,93,96,107,97,99,99,102,101,98,92,130,101,95,102,102,94,107,103,94,106,98,109,114,95,91,95,108,95,94,101,107,99,95,91,103,104,110,96,105,95,98,95,100,106,102,113,106,96,85,98,93,100,104,98,104,101,98,93,91,92,110,89,95,108,100,96,104,108,109,108,97,104,107,99,107,84,97,98,108,91,108,103,87,91,82,107,96,93,109,93,112,109,103,104,104,91,108,100,92,95,97,101,105,110,104,108,111,104,94,105,104,99,105,106,107,105,99,106,99,101,94,99,96,113,100,81,99,101,102,104,101,95,98,116,81,100,108,110,107,98,90,100,87,130,111,109,95,107,92,102,97,94,113,94,100,99,93,94,106,101,105,99,95,98,110,81,105,111,76,101,90,101,98,91,90,89,98,80,98,95,92,103,90,118,104,102,113,97,96,101,99,96,103,101,98,99,95,101,89,77,106,103,108,103,99,93,91,107,94,103,95,110,111,100,101,101,102,108,113,100,97,98,90,107,80,102,101,97,105,110,106,92,97,96,102,99,97,93,103,98,96,101,131,89,91,101,116,98,95,104,101,105,88,98,106,101,103,91,101,95,94,91,104,97,100,96,89,96,95,116,91,100,94,89,99,101,103,92,97,100,107,82,101,102,105,107,101,101,103,107,113,103,106,107,94,109,92,105,95,93,104,113,91,97,96,102,91,95,101,102,105,98,104,98,74,120,104,95,106,92,84,93,101,99,98,85,80,102,97,89,103,97,112,106,108,100,92,92,94,97,109,95,99,98,100,92,103,104,98,100,89,103,108,87,104,111,99,93,91,98,100,107,106,102,94,105,105,100,104,123,102,105,95,90,86,101,110,89,103,99,100,102,92,91,111,104,101,96,93,96,103,77,80,84,99,106,102,103,96,94,98,101,113,103,104,106,96,107,109,106,103,98,99,95,100,91,111,103,101,109,108,83,97,77,108,92,95,101,101,94,102,95,95,97,95,91,101,94,106,104,108,109,95,85,100,95,98,98,109,103,100,102,105,95,93,100,103,111,97,98,99,89,106,101,100,89,108,101,98,96,106,90,101,104,114,93,108,104,92,105,106,100,100,85,101,113,94,89,100,98,93,103,95,101,83,95,103,88,104,99,123,106,110,96,106,105,103,97,93,95,102,95,96,95,110,80,107,101,110,83,89,105,96,99,97,69,100,95,103,92,93,99,109,94,97,95,108,98,96,79,94,100,95,99,94,92,109,108,106,95,114,96,101,98,102,92,96,109,106,87,106,104,64,115,100,77,98,100,93,97,98,95,88,106,92,117,94,85,91,100,104,106,98,101,97,112,83,106,78,107,86,109,97, +396.57712,108,80,103,67,95,96,92,91,90,92,88,109,94,93,100,110,69,104,99,106,104,106,84,97,100,95,111,85,102,98,91,86,116,105,115,87,89,101,99,92,99,97,109,99,99,111,101,110,96,101,102,104,98,109,99,99,104,121,104,97,85,107,99,99,97,99,91,106,102,87,103,103,82,106,86,84,96,104,94,106,81,100,90,87,93,104,100,95,106,82,106,95,99,81,100,92,94,92,105,125,103,86,91,100,104,106,109,97,94,94,114,101,98,95,100,90,100,94,103,100,88,101,99,86,103,91,101,91,113,103,113,106,119,104,110,102,102,100,97,114,89,91,88,98,108,104,99,99,95,95,97,95,97,94,87,106,96,100,106,94,92,94,101,103,95,111,99,101,91,107,87,96,101,82,103,104,99,99,90,88,97,98,101,101,97,97,94,92,107,96,92,95,95,103,100,95,90,90,101,111,92,104,96,98,91,109,95,94,105,108,98,84,104,89,129,101,117,106,92,100,105,107,99,104,99,113,102,114,103,95,101,102,102,96,104,110,86,104,107,109,100,104,112,95,104,97,86,102,103,101,101,106,99,88,96,102,105,98,73,101,89,92,107,87,100,110,116,98,100,98,97,96,107,95,99,98,96,95,71,95,104,104,101,101,98,98,95,97,98,105,104,104,97,97,105,97,106,105,99,97,80,106,118,107,100,107,96,95,88,97,97,112,105,125,95,103,99,95,96,87,108,97,92,96,100,96,95,93,109,114,101,106,107,94,107,113,91,94,101,89,106,98,103,99,95,98,108,104,99,105,103,105,101,101,103,99,91,101,109,113,103,109,105,101,100,101,96,113,99,95,106,87,102,86,101,105,102,93,107,91,104,99,102,97,110,95,98,91,96,101,109,86,105,99,104,110,106,97,111,94,101,106,101,97,102,95,98,105,99,87,105,91,98,102,99,91,101,106,97,101,101,100,93,117,91,93,86,88,111,96,95,94,103,98,101,103,112,95,92,98,108,97,104,107,99,100,106,97,94,101,97,91,95,100,132,102,97,109,114,97,95,95,106,129,107,108,108,89,91,106,120,88,108,98,93,110,103,104,111,91,76,97,102,100,92,99,98,91,104,97,83,102,118,76,80,96,100,108,103,106,112,100,100,105,104,102,105,98,109,103,103,98,96,79,102,105,87,104,100,96,109,122,105,106,101,100,107,106,97,91,91,102,104,113,101,104,101,105,103,104,106,107,96,104,110,93,95,100,108,104,96,108,120,104,104,97,109,96,113,99,114,99,103,98,103,100,108,111,97,103,111,83,104,105,91,92,81,102,99,98,112,100,92,89,96,95,104,103,105,101,101,98,92,97,106,96,104,98,128,102,94,111,110,87,103,76,98,115,107,105,103,96,98,104,113,104,100,108,122,104,104,98,106,105,98,109,88,96,105,91,102,114,102,87,93,109,110,98,109,95,102,129,93,109,93,95,102,96,86,87,95,91,110,106,100,101,92,113,101,103,101,96,106,101,98,97,107,101,88,110,108,100,100,91,95,118,110,107,109,100,86,103,100,101,103,98,101,105,106,106,98,105,102,109,95,95,73,109,100,104,92,103,92,93,103,103,97,100,105,86,101,91,106,114,90,103,114,94,101,96,98,99,98,91,110,100,85,104,87,107,103,103,101,96,108,100,96,93,106,106,107,93,106,97,112,99,108,95,95,98,114,92,98,96,108,105,90,101,100,91,103,106,68,88,117,98,102,108,93,89,100,102,107,92,91,95,106,104,98,101,103,94,110,96,93,96,100,111,101,109,74,109,113,112,100,104,90,101,101,91,102,102,90,92,89,93,113,95,103,95,99,80,90,106,108,111,110,103,101,103,108,108,105,66,111,95,101,98,104,113,126,106,100,97,83,91,104,108,112,95,93,109,110,98,96,93,89,109,92,95,100,98,100,103,87,104,106,99,104,101,102,104,86,113,99,108,96,107,101,108,92,96,103,110,106,96,106,97,105,107,109,87,105,96,97,102,104,98,105,96,99,103,105,108,102,88,102,98,104,98,99,129,110,100,102,99,94,97,98,103,100,114,107,115,100,94,111,109,101,96,88,104,93,114,104,99,95,106,100,90,104,108,101,100,91,114,99,108,100,107,100,107,104,96,100,109,105,103,98,99,106,108,104,97,108,94,109,110,90,92,94,95,98,95,106,100,98,90,102,100,103,110,97,115,95,106,99,93,103,95,95,94,107,96,103,101,98,111,96,100,107,105,108,100,106,97,92,100,104,108,105,97,102,93,105,105,96,102,99,89,100,104,101,111,82,108,107,92,87,84,102,102,99,95,92,113,84,98,105,100,109,106,107,103,84,97,105,105,95,103,95,70,109,110,93,99,64,116,87,66,102,101,93,97,102,80,96,104,95,101,94,85,97,107,99,105,90,91,92,92,86,101,109,110,94,96,93,108,109,105,87,104,94,92,107,97,107,92,100,91,83,96,103,92,104,98,117,80,100,103,103,106,93,109,88,104,109,96,104,99,98,109,95,92,101,92,104,93,96,87,87,107,106,94,111,86,96,98,91,94,109,95,108,97,107,96,117,96,92,89,88,94,92,100,101,106,98,101,91,95,100,98,109,87,79,93,104,119,89,104,96,92,101,91,102,108,100,93,92,103,97,94,106,100,91,102,105,90,99,98,91,89,92,115,90,99,107,104,113,106,95,113,107,113,94,113,94,91,99,98,91,109,91,108,99,91,113,112,94,80,109,104,104,106,119,112,116,88,94,107,106,108,90,87,100,104,104,115,103,102,88,109,86,95,98,87,101,101,99,107,98,99,100,92,91,108,108,96,90,112,88,99,93,101,97,103,84,112,106,100,100,102,98,103,113,98,95,90,97,105,104,105,108,108,99,105,102,97,99,96,109,103,86,84,102,80,101,98,91,98,104,93,91,104,93,100,106,118,104,104,106,112,97,96,78,107,95,103,92,68,99,81,94,99,91,102,101,95,102,100,98,99,106,81,110,94,111,113,109,99,99,100,93,110,99,94,91,101,94,108,100,105,99,87,122,94,107,100,94,100,102,104,72,105,94,87,91,90,101,106,95,103,101,100,96,91,101,100,108,92,104,109,92,111,104,87,96,95,99,92,103,84,96,95,92,92,106,73,74,102,98,101,107,95,100,95,84,103,108,109,112,103,96,99,89,94,99,96,102,95,99,95,108,103,102,101,105,98,82,94,98,104,96,88,101,98,87,99,100,93,100,94,101,92,93,95,105,102,109,93,110,92,100,94,102,96,103,105,99,91,93,82,95,101,107,83,107,90,103,100,102,98,108,122,103,102,96,92,108,84,105,100,106,101,102,88,110,104,109,90,101,101,100,88,99,99,113,95,98,95,98,96,99,105,99,108,109,100,116,105,90,104,102,99,87,91,112,98,100,93,105,102,113,107,93,88,96,105,96,102,94,90,98,107,90,99,101,100,97,98,99,100,97,85,100,104,93,106,103,88,97,104,101,102,83,101,103,97,97,94,107,88,91,106,98,91,109,102,92,97,99,103,101,96,100,97,99,103,106,100,104,89,102,102,97,90,92,86,92,109,94,104,96,111,97,93,103,83,104,71,82,93,100,101,104,101,122,101,97,110,104,107,99,106,100,103,96,99,94,101,97,96,95,105,99,94,96,98,91,90,100,109,108,94,99,99,90,98,105,116,102,105,98,104,104,96,100,103,100,99,97,109,95,95,96,104,93,82,100,105,96,113,88,83,97,97,94,80,108,94,89,100,95,100,96,75,98,90,104,98,102,104,127,95,89,101,110,121,103,97,106,111,101,110,103,102,98,73,96,93,88,100,95,99,81,113,94,102,102,96,97,97,110,141,93,102,102,92,110,85,105,97,98,85,84,89,103,96,93,97,101,98,103,98,92,92,105,86,98,93,100,89,113,97,83,105,104,105,100,103,100,103,98,97,91,92,96,109,103,100,87,104,89,97,116,98,92,91,103,103,123,99,98,101,95,95,112,96,107,89,117,93,93,109,120,106,107,94,101,90,108,96,89,98,117,115,112,94,106,103,88,102,96,95,83,95,74,91,99,101,98,113,102,105,104,109,77,104,84,89,89,72,88,92,91,99,102,93,102,96,84,91,100,97,107,95,103,104,114,98,105,92,92,93,102,100,99,100,101,90,99,112,104,108,97,92,97,92,97,94,88,94,104,102,104,102,94,94,108,119,99,101,89,100,97,98,94,97,86,96,97,99,102,84,97,106,93,89,98,102,101,99,97,98,108,102,94,90,92,107,98,100,95,87,102,98,106,85,92,98,99,96,109,102,96,102,88,94,100,104,91,95,90,88,94,92,101,87,90,103,114,83,141,102,89,83,93,86,106,100,93,102,110,97,95,98,111,94,107,102,106,87,101,99,107,97,95,101,100,92,95,109,79,101,101,97,94,81,65,87,102,104,88,87,100,104,82,79,105,112,99,91,93,86,102,119,91,91,93,100,89,98,105,98,101,90,101,93,93,100,85,88,92,105,109,88,105,102,106,80,100,108,94,88,103,98,109,103,101,91,96,106,96,100,94,103,101,104,91,92,94,96,104,103,101,90,81,98,87,93,97,91,84,88,110,77,99,99,111,101,98,104,102,97,114,105,98,110,106,103,99,87,102,93,84,111,110,88,100,89,107,87,96,103,87,108,90,108,113,92,95,89,104,100,104,105,105,102,87,103,84,95,96,104,113,83,105,101,101,93,105,88,109,95,109,96,86,92,113,83,96,96,98,88,97,107,92,94,100,94,94,89,90,103,102,106,98,99,96,99,107,99,95,91,107,105,97,110,104,97,98,84,92,96,101,94,100,117,106,87,122,78,92,97,99,101,98,106,118,96,105,88,74,84,101,84,87,106,88,96, +396.71722,96,101,98,93,97,100,92,103,92,98,84,107,104,97,95,108,92,98,85,103,95,91,101,100,100,108,94,106,93,110,94,101,93,83,110,96,102,96,103,87,89,101,99,104,102,96,95,102,96,97,93,88,102,99,97,105,104,92,96,106,95,96,80,90,105,109,102,98,97,94,105,120,87,106,92,114,110,97,102,105,99,116,95,98,102,102,90,91,104,101,99,94,94,104,103,100,97,101,94,91,92,105,97,90,97,91,95,103,96,97,103,99,111,90,105,109,99,105,105,96,104,97,92,118,114,91,112,83,104,105,98,104,93,97,97,103,117,107,93,95,105,93,91,97,110,93,99,101,97,99,93,105,85,92,83,100,99,106,108,111,85,93,95,109,96,109,102,85,100,93,87,100,86,96,102,111,101,92,107,99,94,93,103,109,100,76,91,87,109,97,94,89,110,96,102,96,116,97,95,90,101,101,113,94,115,102,98,102,108,111,98,110,103,88,101,105,94,94,99,102,108,104,96,106,103,108,95,104,105,102,114,99,100,96,82,101,98,103,107,79,96,103,107,103,91,108,96,100,105,103,97,93,95,92,109,98,96,100,101,99,94,98,105,78,98,110,92,104,98,101,101,114,97,100,105,99,106,107,102,106,97,102,101,99,88,103,101,105,110,103,91,109,103,90,95,96,103,106,97,95,100,103,108,99,81,77,103,107,107,106,97,108,108,97,100,87,116,106,99,104,86,90,113,101,100,98,101,104,103,96,99,101,104,100,104,101,105,93,92,103,110,106,100,100,110,105,108,93,104,98,94,107,98,97,108,116,105,99,114,104,93,95,91,102,92,111,89,109,98,97,109,92,102,100,101,93,98,101,103,104,91,101,95,104,91,102,109,99,102,105,102,107,98,101,110,104,97,100,113,108,94,106,112,121,108,96,100,94,113,98,107,89,101,118,97,94,101,102,112,106,91,100,88,112,106,92,98,105,97,94,95,114,93,100,113,90,94,94,97,91,98,106,96,96,93,102,99,101,103,102,67,97,100,91,106,119,104,102,109,95,97,98,99,102,101,104,114,112,104,99,91,98,98,104,101,95,104,95,110,94,103,96,104,97,113,106,96,113,99,97,93,137,92,87,87,110,90,103,103,99,103,99,95,106,94,102,101,101,108,101,85,100,97,96,108,99,109,93,86,103,105,98,85,101,113,112,98,110,101,98,100,105,102,98,92,102,100,104,90,95,105,104,105,101,112,88,99,106,96,108,109,104,100,100,100,105,106,97,105,108,101,103,105,105,112,110,105,101,94,107,97,94,100,97,101,99,105,99,109,96,99,86,107,97,103,91,102,106,79,101,101,96,93,101,109,109,96,98,97,99,103,118,98,96,96,96,91,94,96,101,91,94,102,105,97,102,107,100,97,114,99,102,108,100,95,112,99,101,101,87,93,112,88,102,105,99,101,98,97,104,72,100,92,98,97,85,97,104,106,114,131,110,104,99,94,105,105,101,99,103,110,100,101,97,109,109,94,96,86,96,110,103,103,95,94,95,92,78,103,112,108,97,113,103,93,94,98,96,110,93,108,110,101,102,89,95,102,100,95,71,95,99,97,94,111,117,96,107,95,97,103,104,97,98,104,98,89,90,108,91,101,100,92,108,96,102,109,95,87,94,95,99,100,94,86,97,95,87,109,112,97,89,110,110,102,98,106,103,98,110,113,92,112,79,93,103,101,96,127,98,103,117,67,100,91,97,88,86,105,102,93,98,101,101,99,102,94,95,90,87,107,111,95,108,98,105,101,96,92,106,97,105,107,99,91,93,102,95,76,104,91,98,103,99,103,108,95,108,101,99,104,92,83,99,114,108,110,104,98,88,105,95,101,107,103,95,97,103,91,110,102,97,106,96,95,102,105,113,95,101,101,94,102,99,96,99,100,105,101,98,100,102,97,100,105,104,94,97,98,105,102,102,102,99,96,99,110,101,101,109,93,98,122,103,105,94,98,91,97,94,103,106,108,109,88,108,104,114,105,98,100,109,118,105,111,97,98,98,95,101,102,108,95,96,92,108,82,110,94,102,104,94,107,95,102,92,103,105,90,104,103,110,104,98,113,104,94,93,78,99,103,97,106,102,91,93,93,101,106,99,84,107,101,107,107,82,101,102,91,96,92,110,98,102,95,91,106,107,97,97,106,105,116,98,103,101,92,91,102,99,105,96,108,94,93,99,99,115,106,110,105,94,95,92,123,96,93,98,104,101,98,99,100,100,109,105,106,103,93,104,106,96,86,98,99,78,106,98,91,102,80,99,97,108,83,97,109,109,99,97,112,85,109,88,116,100,102,103,101,96,101,133,96,103,100,77,95,102,105,101,109,109,100,102,97,97,103,96,94,105,96,66,96,88,94,105,72,84,106,95,109,97,108,94,115,94,94,79,96,95,99,112,101,118,107,100,96,108,101,97,100,99,96,93,88,88,88,93,109,103,91,101,99,100,102,96,97,109,105,107,98,106,106,91,110,106,99,100,100,94,109,104,102,108,96,89,78,102,74,111,99,100,99,104,94,99,98,104,110,101,95,104,91,103,104,95,105,114,99,89,98,96,80,93,97,97,95,91,110,98,105,106,104,101,84,111,100,99,97,104,104,99,100,83,92,98,86,102,103,95,105,108,95,91,98,101,90,105,109,95,98,106,104,109,100,100,102,105,100,113,98,94,97,110,116,101,107,88,72,105,104,100,101,98,104,87,85,94,100,98,101,110,84,102,109,108,100,101,66,101,102,105,96,97,103,99,92,93,68,100,97,95,116,99,105,73,102,107,107,116,102,70,105,91,104,101,105,86,109,101,111,115,106,102,103,90,110,94,87,109,106,99,96,91,96,101,99,103,99,107,106,116,95,100,100,98,97,110,100,104,95,69,109,111,94,101,104,100,113,98,102,90,107,101,104,98,105,101,107,91,101,101,88,106,101,102,90,103,117,84,95,98,100,91,110,112,101,101,98,113,110,109,80,98,108,108,105,100,101,104,105,98,97,100,94,91,100,111,97,104,83,104,100,95,103,84,98,96,107,108,92,97,103,106,87,115,98,90,85,99,105,105,102,95,108,99,106,120,78,101,105,112,101,100,91,82,93,101,100,112,100,92,104,111,105,85,98,104,98,112,98,87,80,102,113,109,117,109,98,94,113,93,110,93,76,95,95,113,102,100,92,95,92,101,107,99,91,101,100,92,102,97,81,102,108,90,100,99,99,101,95,94,97,114,77,107,99,97,93,96,113,105,99,98,102,87,93,112,102,102,103,82,101,103,117,102,95,96,109,93,103,100,108,115,100,119,92,92,117,90,86,107,98,96,90,98,111,97,100,104,99,100,108,109,106,100,96,91,96,94,97,100,91,104,103,112,97,100,113,89,87,100,103,100,100,101,93,96,103,107,121,90,96,97,101,101,95,90,106,83,103,105,95,93,100,104,96,106,96,93,93,101,105,97,95,110,96,96,97,96,104,99,94,104,96,105,96,106,101,95,114,97,106,93,97,91,103,102,94,98,99,104,108,85,105,97,93,100,100,97,98,95,99,106,110,99,105,102,101,101,95,91,102,109,96,105,100,95,97,98,99,90,97,101,109,104,100,94,106,102,107,109,102,109,101,101,93,106,110,84,94,103,101,82,98,89,100,105,109,101,101,107,109,104,98,90,87,108,105,105,95,100,101,98,100,91,98,118,97,96,100,103,106,102,99,80,98,99,96,103,103,100,85,98,93,103,101,109,107,109,102,109,87,106,96,86,109,95,110,93,82,112,92,87,87,96,110,108,111,97,103,87,90,96,120,104,98,87,104,103,94,102,104,112,91,103,101,99,124,88,103,94,98,101,105,105,102,99,87,95,91,104,79,99,90,95,79,95,90,124,102,99,89,92,89,100,86,99,109,111,94,99,108,99,100,102,96,100,94,95,88,102,101,89,95,86,95,97,109,99,98,112,98,107,109,105,105,98,96,99,102,99,97,92,113,90,102,104,97,109,104,98,89,99,106,92,100,104,106,94,100,98,105,109,105,96,111,92,84,101,92,95,109,112,98,113,104,100,105,104,106,103,99,106,101,107,99,113,88,91,104,93,101,109,90,106,102,95,96,90,96,98,97,113,105,101,96,82,109,98,97,108,123,102,95,99,96,100,90,95,98,95,104,99,94,99,98,102,107,99,107,99,93,104,106,91,110,95,99,100,100,104,109,121,110,101,108,100,105,96,109,91,93,113,97,95,102,94,98,113,91,99,112,106,105,92,87,90,89,107,113,93,97,98,91,98,94,99,95,99,95,99,109,115,102,128,100,108,102,121,100,104,106,89,91,117,99,112,103,105,101,106,107,103,92,100,105,111,100,112,96,95,125,103,97,92,110,98,72,98,102,98,100,94,100,99,103,95,96,98,107,110,107,101,95,97,113,99,102,114,107,104,108,99,94,98,101,96,95,117,90,116,98,100,100,91,94,95,93,105,94,88,80,107,105,98,102,105,111,100,96,101,94,103,94,101,104,104,107,99,99,110,98,94,102,100,95,91,103,100,108,107,119,102,104,98,93,95,104,94,106,94,97,97,89,98,108,104,101,98,99,101,109,104,105,113,103,101,100,94,116,96,105,109,111,89,97,106,106,104,95,90,113,99,103,110,119,96,98,88,99,94,107,102,110,94,101,99,98,108,109,87,105,104,102,97,105,88,100,92,91,94,97,102,102,97,109,106,106,104,112,101,96,108,86,88,93,83,97,103,104,109,98,89,90,92,95,102,101,102,102,97,103,88,94,92,90,109,99,85,93,84,105,87,99,106,95,87,90,100,103,110,83,87,92,104,93,105,103,98,105,98,98,98,115,90,99,100,87,101,89,117,98,97,96,96,100,99,100,100, +396.85733,104,92,94,91,87,102,99,79,84,102,107,91,100,98,100,83,87,112,91,93,107,102,105,100,104,94,97,101,86,112,101,97,101,107,111,104,94,92,94,93,115,75,105,104,97,105,103,105,98,73,94,94,103,92,112,74,99,87,104,92,90,107,89,92,106,132,108,112,101,96,94,104,94,106,98,89,103,94,99,119,100,92,84,85,109,85,103,101,91,91,105,95,106,105,83,99,100,99,96,102,91,101,90,94,94,106,102,98,97,93,97,100,95,101,93,102,105,89,92,107,99,91,98,97,105,116,105,109,101,88,132,101,98,97,94,95,79,99,79,100,108,105,106,98,105,90,127,91,94,100,99,92,94,89,100,95,99,99,101,93,77,98,94,96,113,111,90,82,55,95,87,120,90,97,105,93,101,90,105,101,102,99,98,108,106,98,100,95,91,100,97,99,101,89,103,102,112,87,108,104,92,118,92,93,106,98,90,111,113,91,92,109,102,94,89,96,95,106,103,105,100,88,112,99,105,89,99,104,98,98,88,111,112,100,101,100,106,103,95,109,97,108,100,95,90,98,109,112,96,95,101,98,98,94,88,95,91,101,94,101,95,100,95,106,100,108,98,101,96,102,102,94,111,96,103,106,106,103,100,102,108,99,117,105,117,109,104,107,101,94,104,104,104,103,98,115,100,99,104,95,93,96,98,114,96,113,82,96,106,108,88,100,94,101,103,100,93,94,89,109,100,94,99,110,101,105,99,100,106,109,96,90,79,76,99,102,100,101,87,98,93,90,99,93,98,89,98,106,98,117,104,107,108,84,102,109,103,107,108,103,101,91,101,95,88,101,103,102,94,99,104,95,98,102,108,101,97,92,101,113,97,99,94,113,91,95,72,96,100,101,100,99,101,101,98,97,109,103,101,92,90,110,111,100,110,93,95,107,100,109,96,100,104,92,98,89,83,101,91,92,94,93,100,94,104,92,96,97,91,106,89,102,94,103,100,99,99,102,100,98,114,98,100,98,102,104,104,92,95,109,101,108,102,109,109,98,105,95,95,82,112,102,109,139,103,98,125,104,95,109,105,105,95,97,98,91,107,105,98,98,101,108,104,89,104,102,106,112,113,87,108,96,92,126,96,107,101,106,115,105,113,104,100,106,101,103,102,106,97,92,86,92,106,94,98,102,93,97,97,106,111,111,104,111,104,101,110,111,105,101,100,100,119,92,99,100,96,94,106,106,78,99,101,100,115,99,101,92,97,113,98,105,140,117,105,101,123,107,105,103,101,90,91,100,97,87,110,105,104,101,94,105,102,107,108,101,98,108,90,111,107,96,104,99,100,99,108,96,99,92,108,101,104,83,114,105,91,103,110,98,95,105,116,113,100,95,98,104,110,95,110,107,101,114,113,105,110,101,102,102,106,107,101,101,107,99,100,109,111,105,97,100,102,121,86,105,91,94,106,107,94,95,106,97,96,105,101,92,106,108,95,105,96,99,97,95,91,91,106,142,110,93,98,102,106,94,103,78,124,87,110,106,96,93,104,121,98,101,100,93,101,106,100,93,92,102,93,90,89,107,106,101,90,106,96,96,109,92,92,96,102,83,104,105,102,98,106,103,99,95,102,94,105,110,102,105,97,104,107,100,94,105,95,99,94,100,95,112,105,109,92,108,89,110,99,106,110,105,106,100,112,71,105,92,106,104,110,105,96,108,109,96,93,101,104,101,95,93,111,90,107,105,91,99,99,102,104,102,95,97,91,101,100,80,99,94,122,97,97,98,106,97,109,104,96,102,102,96,102,108,107,114,90,89,88,96,107,104,111,100,94,106,92,101,99,106,81,120,98,96,101,99,94,103,102,92,107,105,102,90,117,100,101,110,92,104,102,99,109,94,126,95,110,90,105,102,120,100,92,113,87,95,98,99,108,99,94,105,114,116,100,99,101,92,98,99,87,94,95,97,97,108,99,116,103,105,99,101,106,102,92,92,96,102,75,110,97,98,105,105,95,102,84,94,107,88,98,103,90,77,104,95,105,78,106,97,100,108,121,108,109,113,111,94,105,101,99,93,105,95,107,95,104,100,103,97,92,103,100,106,100,77,102,118,103,110,105,101,98,90,101,100,112,100,99,113,98,108,87,101,103,100,88,108,84,94,92,109,115,97,92,100,91,92,99,106,109,100,87,93,111,98,88,91,114,113,99,95,106,101,93,98,95,96,99,101,106,99,99,96,114,100,88,95,99,97,95,110,99,96,110,115,100,117,101,108,97,106,92,89,98,91,100,97,97,103,102,91,100,96,94,100,103,99,101,105,89,109,101,92,77,93,88,105,103,100,114,106,106,108,97,105,99,96,106,91,97,109,100,98,90,104,95,101,100,104,107,113,82,92,110,98,99,98,97,111,101,105,98,103,86,94,87,70,95,96,104,99,95,94,88,105,76,95,115,86,96,99,99,92,104,107,105,89,100,100,96,106,103,94,101,101,107,88,96,105,111,99,104,105,102,104,115,113,96,108,101,99,92,97,91,114,95,99,109,100,92,90,107,95,93,106,99,105,99,107,96,103,94,102,102,99,104,93,80,106,117,95,96,101,100,95,87,89,101,87,107,93,95,107,109,95,116,103,102,99,105,103,97,109,105,107,110,93,97,101,97,99,111,95,99,97,68,97,97,105,103,92,89,97,102,103,120,116,110,99,113,104,94,114,93,95,104,102,95,100,105,100,103,95,84,101,100,94,113,104,105,108,113,105,95,113,105,101,129,116,116,112,107,85,104,97,118,93,109,94,89,86,76,99,89,95,100,113,106,99,92,109,104,102,122,98,103,88,105,98,113,96,91,104,100,91,100,92,105,96,94,108,94,108,104,97,104,95,91,93,98,109,106,92,109,110,109,110,104,90,102,111,90,108,90,103,79,101,95,106,107,81,113,108,109,98,98,93,119,112,93,100,105,115,94,105,101,102,93,104,104,114,100,106,107,111,89,97,100,92,100,100,97,88,111,98,102,94,101,105,99,88,100,110,98,92,100,102,102,113,87,108,104,91,104,101,91,101,106,97,103,103,102,103,102,105,105,105,97,103,104,97,116,103,94,106,97,92,105,102,100,99,98,98,100,102,110,108,113,82,85,95,104,96,104,99,95,95,93,94,96,98,102,95,95,95,106,90,100,101,93,102,105,110,120,112,105,110,99,116,117,105,99,105,96,73,100,97,92,97,95,114,95,104,97,95,97,94,98,108,103,99,102,99,111,104,100,103,109,82,109,106,97,93,102,87,109,87,97,105,95,101,78,101,92,101,100,100,115,80,111,99,107,103,110,98,91,117,103,91,111,103,103,106,86,88,91,109,105,95,102,100,104,95,94,107,97,100,100,101,111,98,100,93,101,100,105,109,94,91,98,90,98,115,100,101,112,101,103,94,91,104,109,111,91,91,86,99,96,106,98,108,104,109,89,112,99,94,104,107,112,115,102,103,106,97,112,87,99,92,102,87,110,97,95,109,95,99,116,109,107,93,95,100,105,100,103,104,96,99,99,113,91,98,98,104,80,101,98,105,101,109,103,121,88,100,101,114,97,104,108,90,103,95,92,84,73,109,96,104,104,110,100,99,92,93,98,110,103,79,122,98,107,109,104,103,105,93,79,95,101,103,94,106,91,96,97,105,108,80,104,94,104,104,106,100,105,72,88,119,118,108,98,132,104,99,91,101,106,97,100,105,89,93,113,99,106,100,106,107,72,94,104,101,92,84,93,84,102,97,100,88,107,102,110,95,112,84,97,100,95,88,106,95,95,95,89,109,110,83,93,111,98,102,117,87,123,108,90,103,91,96,95,109,94,108,111,97,110,111,99,98,105,94,95,95,104,98,104,94,105,109,97,104,106,103,100,99,104,94,102,94,91,99,97,100,98,99,116,102,113,101,116,91,101,91,105,98,101,101,108,101,104,118,125,107,103,107,97,105,98,97,108,97,91,100,106,101,102,101,99,102,93,107,103,105,95,91,104,101,100,105,83,103,93,103,109,100,107,95,104,65,102,102,102,100,100,91,90,112,108,105,107,106,104,90,98,99,87,104,97,105,105,109,105,91,99,103,110,110,95,101,99,121,90,100,108,77,103,109,110,94,112,98,103,97,66,93,104,99,102,108,112,106,102,85,99,94,109,101,103,98,95,90,107,99,107,94,102,105,98,112,100,99,107,106,104,103,98,102,107,109,111,105,103,93,112,90,100,91,94,105,99,80,95,97,101,99,102,109,96,102,83,102,101,112,95,92,99,109,82,98,93,93,92,96,95,106,101,104,93,112,101,105,104,102,113,107,100,91,111,103,100,116,105,101,109,91,113,100,99,100,109,116,104,106,100,87,100,103,110,92,95,97,109,107,96,99,97,98,102,95,96,108,98,98,97,103,92,92,86,111,92,117,103,101,93,94,97,100,96,102,105,81,109,103,106,103,91,102,98,105,103,115,106,110,84,84,100,105,106,108,95,94,99,109,94,103,98,101,102,98,98,93,87,98,96,105,99,99,94,117,103,100,98,100,93,93,104,84,106,106,107,96,103,117,83,100,101,94,95,95,102,95,95,90,98,118,109,95,102,94,102,108,101,99,101,97,92,79,103,110,96,107,107,105,113,95,113,99,120,129,94,101,99,115,92,100,88,118,94,101,99,105,105,104,104,109,108,122,97,97,101,99,103,107,105,99,99,105,108,99,104,101,111,108,105,103,104,64,102,92,120,106,101,80,95,103,97,100,87,108,108,92,95,114,95,93,100,100,103,96,95,103,98,99,94,86,92,108,108,100,86,97,99,99,98,101,105,106,102,95,92,87,100,108,102,87,91,101,109,109,100,97,106,106,102,103,94,91,103,97,88,112,106,92,98,98,107,101,110,106,95,99, +396.99744,90,103,86,96,87,105,98,117,99,94,94,84,81,104,100,94,101,95,103,100,109,108,100,105,109,105,101,103,93,94,105,79,96,96,78,109,98,87,101,100,84,99,92,95,95,106,97,105,95,116,101,133,79,103,101,93,94,90,109,97,104,106,102,98,97,93,110,86,95,114,105,97,104,106,109,106,97,92,106,96,95,101,99,113,109,99,99,98,102,92,100,87,98,75,105,98,108,104,110,96,90,95,100,90,108,95,108,99,102,91,85,91,92,111,99,109,96,104,104,110,106,119,93,107,101,112,106,79,98,97,94,102,96,99,108,90,104,105,115,108,97,91,88,101,95,100,100,99,108,99,100,97,104,86,108,97,101,101,98,97,91,92,104,97,86,112,98,92,97,93,101,107,98,98,101,115,104,99,88,89,94,107,96,89,109,61,96,105,132,104,82,95,97,106,89,85,99,96,107,102,96,104,92,109,80,110,106,99,102,108,98,117,96,113,99,104,102,94,103,99,117,90,102,105,88,113,101,109,85,94,75,88,87,105,105,109,98,109,93,95,94,103,108,84,108,101,101,103,104,116,108,88,103,101,97,94,110,105,96,93,97,106,100,98,102,98,95,106,101,101,105,86,112,93,96,99,106,97,95,106,104,101,104,96,114,104,96,99,107,99,89,101,109,109,108,106,92,107,92,109,98,91,101,104,96,99,107,101,92,106,123,101,101,123,98,108,98,102,105,99,94,78,96,105,110,97,100,101,99,106,104,100,106,87,86,105,105,96,106,113,101,106,98,101,105,84,95,105,97,101,98,109,102,105,105,109,96,101,82,102,95,97,105,93,93,101,83,95,98,100,97,102,82,105,112,104,107,105,115,98,99,104,100,102,113,99,96,92,98,104,102,84,109,104,98,110,100,98,104,95,99,102,90,95,99,102,82,101,97,97,99,100,108,106,107,91,100,101,106,102,95,82,91,105,90,93,90,99,99,94,100,94,93,98,104,133,97,102,97,104,98,94,109,113,96,94,88,100,92,97,97,88,91,88,93,100,98,101,107,108,92,90,100,103,119,99,95,97,110,73,93,101,103,98,101,109,113,113,90,106,97,91,114,104,105,98,97,113,104,100,100,92,119,99,96,97,67,103,93,105,108,99,92,110,95,99,88,109,94,101,108,99,84,109,105,107,100,99,110,95,96,97,100,103,101,102,106,101,97,99,101,92,110,106,90,91,87,101,102,96,112,118,120,101,118,102,97,98,106,106,109,110,98,106,98,107,99,100,99,94,96,88,88,92,90,101,89,95,102,104,96,95,109,96,101,101,101,91,113,98,97,102,104,103,100,88,90,90,96,100,117,102,79,95,105,116,90,99,93,95,88,113,114,98,93,94,91,102,99,108,112,95,113,100,104,91,96,110,80,106,95,91,99,87,105,94,95,95,103,112,91,95,99,103,88,101,108,90,117,98,105,90,109,91,97,96,99,91,87,103,84,105,95,96,104,88,103,96,100,96,106,94,117,96,93,93,103,87,106,90,102,96,103,100,110,96,99,106,109,106,106,97,104,105,101,94,89,117,97,103,103,93,108,91,97,100,97,99,99,100,99,100,100,87,123,100,95,105,96,99,99,93,104,98,87,93,100,98,86,107,101,98,110,102,97,90,107,95,104,101,100,80,98,98,99,100,96,104,116,103,104,103,113,90,102,98,98,112,106,106,112,97,106,88,88,72,88,102,100,90,85,116,97,114,104,87,95,106,99,91,100,99,88,97,104,106,102,97,103,100,103,117,105,103,98,108,104,105,95,106,112,88,97,102,92,89,101,99,98,103,97,98,101,96,109,85,80,115,92,96,98,102,99,101,98,101,101,98,109,93,103,95,103,107,116,104,117,100,104,103,102,107,94,87,100,102,96,100,103,99,100,97,110,100,83,93,113,92,112,86,103,91,63,95,101,114,95,101,91,104,95,94,99,95,98,100,105,112,108,104,101,98,98,111,112,94,91,95,112,107,97,94,105,95,95,102,105,123,97,102,101,95,113,104,100,96,102,102,84,88,109,98,105,103,98,102,103,97,95,93,94,111,104,103,99,94,95,112,98,111,91,117,99,106,103,99,110,100,110,104,108,104,102,110,97,95,108,96,109,77,94,105,104,103,95,86,113,107,95,110,106,102,103,102,109,84,95,84,96,104,95,104,94,99,96,92,98,92,90,101,100,93,98,106,107,92,96,92,91,98,109,98,99,98,97,106,99,95,102,96,102,88,97,114,101,105,93,103,104,114,110,94,95,62,101,101,110,105,100,103,79,104,100,118,89,99,92,111,93,88,94,104,77,98,102,101,94,96,104,98,108,105,106,92,97,91,100,87,81,108,96,92,106,99,76,96,93,86,90,89,111,105,110,95,101,100,102,98,110,97,97,97,98,90,108,103,94,79,98,96,107,110,96,95,96,105,97,99,92,100,109,100,101,96,101,101,108,99,105,100,99,96,103,87,91,94,118,109,103,108,94,114,99,104,110,98,101,99,113,98,102,115,95,102,87,92,109,102,80,89,108,86,97,90,109,96,110,94,95,89,112,98,100,101,95,106,80,100,103,106,109,87,96,111,104,108,103,106,106,90,108,103,106,89,101,98,94,100,100,102,109,103,90,100,93,95,101,94,100,103,74,88,101,87,98,93,94,96,109,96,90,107,88,93,98,90,109,100,91,70,95,98,103,80,95,96,112,101,104,108,87,90,93,102,99,113,117,105,98,99,93,96,100,105,108,94,95,100,91,100,79,104,94,93,101,66,102,115,115,95,107,107,96,89,123,98,99,89,100,99,95,91,105,96,98,88,94,105,108,105,100,105,99,101,96,101,102,110,112,100,106,100,95,103,87,96,104,103,95,108,113,95,111,124,95,101,93,102,101,106,111,102,100,101,99,109,103,90,109,110,110,108,105,92,95,99,97,88,108,115,101,99,101,95,89,90,87,105,97,100,107,94,90,99,107,110,96,105,99,94,111,89,112,98,102,98,116,114,96,87,123,97,88,113,108,84,102,101,103,103,95,115,102,107,109,93,99,113,108,103,108,99,81,94,99,94,102,113,92,96,101,100,114,95,111,100,107,100,97,92,96,100,111,113,115,97,96,92,106,110,116,90,101,101,100,99,101,102,98,95,101,118,115,105,94,116,109,102,109,102,89,104,103,100,105,99,103,104,94,91,93,99,100,103,105,94,99,99,102,108,102,104,87,101,87,106,102,84,103,107,99,105,100,111,98,81,104,99,93,89,97,86,99,99,91,100,95,98,103,98,104,95,97,112,110,95,103,90,101,87,77,95,96,93,99,101,108,94,113,94,102,104,91,102,101,87,108,99,109,80,104,94,87,94,102,98,98,107,91,97,92,105,108,102,100,95,96,106,109,103,95,95,96,102,91,100,88,102,96,100,102,93,94,99,92,88,93,89,113,92,105,100,103,100,98,102,86,90,95,89,103,96,96,100,87,99,105,105,104,106,103,92,102,95,97,97,90,87,112,99,108,116,107,100,118,103,92,99,95,83,100,94,99,94,112,96,92,98,98,103,117,92,88,110,99,103,100,103,103,104,89,92,92,97,105,105,95,104,99,99,96,100,100,108,104,97,93,93,95,102,97,105,90,100,103,92,103,102,103,108,97,103,89,101,98,94,97,104,124,100,99,101,109,83,90,90,102,107,100,96,107,64,104,99,94,95,91,103,93,101,91,97,107,99,95,105,106,100,117,108,70,94,96,91,96,105,115,109,112,92,92,100,102,113,91,102,89,88,103,112,99,112,98,104,102,90,96,99,97,95,115,94,102,97,112,102,101,106,105,104,90,94,91,94,102,108,111,95,103,97,97,94,93,97,103,105,87,88,98,97,121,106,102,108,102,104,106,104,79,97,100,99,87,102,111,95,102,101,96,98,101,101,103,96,94,112,102,107,98,111,96,98,96,110,96,108,100,103,101,92,103,114,91,92,89,97,92,110,87,81,87,108,93,110,100,101,98,106,107,105,114,91,107,108,109,95,110,106,88,87,111,102,88,86,105,113,106,94,104,92,106,112,101,107,98,105,99,98,93,87,94,105,97,109,103,102,103,117,136,93,101,99,104,78,101,102,102,104,102,97,98,98,92,104,99,95,101,108,100,98,96,103,90,102,88,96,124,101,96,96,94,96,95,97,98,100,105,106,101,104,93,108,95,106,98,99,96,104,112,98,103,106,97,75,102,88,102,106,93,101,98,84,100,101,91,88,82,105,93,113,99,96,108,94,93,102,96,98,96,97,105,106,96,102,83,90,99,105,97,108,96,100,101,101,102,105,95,102,106,98,90,95,99,88,103,98,97,95,103,100,80,113,100,97,105,130,107,108,87,99,94,111,95,100,89,97,109,114,103,90,91,94,109,101,106,107,100,92,101,101,112,103,101,92,100,95,102,92,105,98,96,99,114,104,102,97,93,95,96,105,87,103,90,91,102,108,106,96,58,96,105,94,85,96,109,83,103,77,101,94,101,85,109,108,109,97,103,95,104,95,103,95,121,105,107,91,84,87,62,98,95,108,101,75,94,109,100,107,67,104,110,94,84,103,102,102,80,91,115,104,108,100,109,79,93,101,116,112,97,89,96,108,101,92,105,99,96,102,99,109,96,97,102,115,108,95,101,90,95,90,93,116,101,102,103,91,100,107,101,103,105,82,101,98,101,99,88,97,93,94,108,106,95,99,102,100,101,106,106,105,111,107,106,94,109,96,88,118,118,97,103,92,101,110,90,112,91,98,96,102,98,92,97,100,106,108,96,105,109,99,108,93,100,95,104,103,100,87,94,90,112,94,88,95,109,82,95,97,105,83,100,108,105,98,97,101,97,101,76,101,99,78,98,92,101,89,98,103,93,84, +397.13754,87,89,95,102,99,87,95,106,83,101,79,99,97,119,101,114,94,105,100,103,89,97,97,106,106,97,98,96,86,99,94,90,97,102,104,105,94,95,103,95,99,103,87,95,105,102,87,98,127,101,88,97,93,104,101,84,98,87,99,102,99,96,95,99,106,101,94,95,103,80,93,97,92,111,97,104,94,110,100,104,98,89,113,100,101,101,94,90,105,104,117,94,99,100,91,98,103,95,99,107,101,97,99,90,96,92,106,97,99,98,99,101,97,99,96,110,97,102,109,94,104,109,103,97,109,104,99,97,98,106,90,105,107,93,91,102,109,102,101,101,99,106,102,104,99,97,107,103,96,88,102,97,105,95,102,95,100,106,98,97,94,99,89,108,84,117,99,105,95,95,96,104,101,104,99,94,103,104,94,111,99,99,77,89,98,99,85,84,124,98,98,92,104,87,91,93,104,118,110,94,93,99,100,107,104,102,101,107,113,96,95,103,92,102,85,99,90,103,82,95,104,84,104,103,93,95,103,87,96,95,103,97,98,91,99,104,114,93,120,101,99,97,103,107,99,90,98,93,104,99,104,101,100,92,91,100,92,102,91,94,99,108,99,95,106,107,108,109,86,93,93,95,103,97,101,102,76,93,102,95,99,97,100,90,98,104,97,104,97,91,118,111,118,111,107,93,101,101,100,103,91,113,109,97,95,80,93,108,96,98,102,100,110,109,101,97,95,104,97,98,99,104,106,105,94,87,63,93,113,98,106,113,91,90,91,91,97,83,100,103,98,102,103,94,94,111,99,102,109,102,105,78,101,93,90,98,97,92,97,98,93,103,88,99,101,107,102,101,101,100,97,112,126,101,99,87,100,106,98,110,105,103,91,96,99,97,92,98,105,96,106,97,100,111,105,92,97,95,96,115,97,123,104,105,97,105,101,105,117,89,91,88,99,112,106,93,101,96,103,97,102,94,97,99,85,101,103,92,93,101,101,97,101,98,102,99,90,108,97,100,99,110,101,109,90,89,95,102,104,100,97,107,101,102,99,93,96,115,107,93,103,104,94,106,103,106,102,96,97,100,87,99,92,121,98,103,94,108,99,103,105,105,100,97,104,98,110,115,98,103,110,95,101,104,109,98,107,99,109,92,103,97,123,105,96,86,96,99,118,92,101,94,82,97,103,102,99,98,102,99,107,98,82,92,107,99,103,104,110,92,104,91,104,87,106,106,98,91,93,99,107,96,92,108,100,103,106,107,98,106,101,106,97,101,100,104,110,90,103,101,100,96,101,98,102,99,109,103,107,100,85,105,112,92,105,113,108,82,105,73,105,100,98,97,117,95,114,100,105,68,94,107,109,109,99,100,88,112,101,102,92,104,106,117,96,96,108,97,103,105,95,100,108,91,108,96,98,101,111,101,95,110,99,110,111,106,102,99,108,103,80,109,86,94,93,106,105,88,101,97,95,107,130,101,98,95,106,93,97,100,98,94,103,95,89,91,91,98,99,100,90,92,109,94,87,101,91,102,91,95,109,108,101,109,92,93,99,98,114,94,101,96,115,91,92,105,100,94,102,90,98,99,101,101,97,92,90,99,92,95,90,92,112,86,99,94,96,91,87,107,88,100,96,102,103,91,107,93,94,96,104,90,97,91,95,89,96,68,105,101,84,109,98,90,96,92,105,81,94,96,100,96,116,101,88,89,101,97,112,99,108,102,77,104,97,84,89,101,106,98,90,84,65,94,91,106,101,93,102,93,111,91,101,102,90,95,97,94,84,98,101,105,119,93,98,102,114,99,93,107,99,102,95,103,102,99,93,98,108,100,99,85,90,94,105,96,103,99,100,105,98,101,98,97,101,106,99,106,106,94,101,109,95,105,109,97,107,89,105,103,104,102,105,106,98,94,107,89,93,95,97,98,95,98,94,94,103,92,97,86,103,89,95,97,99,106,105,101,95,90,92,101,102,100,105,95,93,100,101,100,99,97,76,94,79,100,91,90,99,96,93,88,101,101,97,96,98,101,101,111,102,110,108,109,105,105,93,100,97,109,111,96,99,96,97,97,100,92,92,105,101,101,99,102,95,100,93,102,96,91,101,104,99,96,94,110,96,99,110,92,102,113,104,116,109,89,99,91,104,100,116,87,95,89,84,90,97,84,114,96,92,90,113,103,96,105,96,106,100,84,96,100,98,105,95,81,104,95,94,94,97,102,107,101,83,111,102,101,91,102,102,92,87,97,110,90,94,101,93,100,87,93,101,89,95,84,93,95,97,110,123,96,94,99,105,111,91,101,75,106,98,90,92,106,96,90,89,98,95,91,98,101,92,88,90,95,86,100,111,104,81,93,91,89,103,93,87,114,94,97,88,98,115,105,93,91,103,94,83,97,91,98,110,100,96,91,97,102,95,98,95,101,98,92,106,94,134,102,93,77,101,97,79,90,89,105,99,94,86,86,96,96,104,95,104,98,99,96,106,108,98,88,95,89,94,80,105,104,102,99,106,98,90,107,106,104,101,98,111,98,98,107,97,104,108,99,95,107,91,102,112,102,108,102,110,104,110,121,92,94,114,96,104,100,102,93,100,114,93,101,103,90,97,99,101,109,102,99,105,100,108,112,96,101,101,95,95,98,90,82,112,93,105,96,112,107,94,108,110,91,100,91,107,104,104,107,104,90,98,102,100,102,91,106,80,103,100,91,95,104,99,104,102,100,112,112,95,87,92,99,113,118,109,101,95,99,107,105,107,98,91,109,92,109,114,125,110,91,106,108,103,95,115,95,93,117,102,103,95,101,100,108,100,102,86,90,110,95,100,109,95,101,114,94,112,103,85,104,99,97,96,112,102,107,99,107,99,106,101,103,101,100,107,109,93,98,83,93,107,98,97,106,105,100,96,92,100,99,101,100,92,98,97,106,100,101,107,77,103,109,91,106,97,101,101,109,87,93,95,112,89,92,111,112,99,102,96,100,91,104,97,106,95,107,106,108,85,114,96,100,105,97,99,95,89,112,83,90,97,97,110,101,97,104,91,110,99,102,96,92,94,108,105,86,92,91,111,100,101,105,105,98,103,83,100,94,82,110,102,115,103,108,101,106,118,91,112,94,101,98,100,114,90,99,88,121,99,102,100,100,99,101,102,108,104,95,105,95,103,102,93,95,103,102,106,104,93,104,104,98,99,99,91,103,100,113,95,110,104,109,88,97,106,93,115,110,115,102,107,101,112,102,98,91,87,111,102,115,112,108,107,99,102,96,108,100,92,99,97,90,96,120,94,102,103,103,100,99,121,105,97,89,98,104,105,95,104,100,98,105,112,98,91,102,106,103,104,95,100,103,103,96,97,93,90,92,99,82,102,106,97,112,103,111,96,102,109,100,88,95,99,98,90,106,106,102,94,88,102,100,96,103,107,95,97,104,96,100,102,115,96,94,105,98,96,106,93,105,101,109,100,97,114,100,88,97,115,106,95,101,110,106,105,99,101,119,105,107,109,103,96,95,101,99,103,100,75,105,110,87,117,106,98,126,101,105,101,108,108,98,92,102,102,99,94,100,106,81,105,97,112,105,105,105,107,102,98,111,112,121,84,103,104,103,102,100,96,102,109,101,88,92,97,106,104,108,95,91,99,99,106,98,103,91,102,116,101,100,106,101,101,106,90,119,98,97,103,103,96,95,94,87,117,96,92,100,93,95,102,102,97,117,103,106,96,105,93,105,106,91,105,111,106,91,108,101,104,103,106,95,83,95,97,87,100,98,103,91,88,113,100,98,102,97,90,103,100,94,104,121,113,106,98,87,67,94,96,115,104,90,120,105,99,120,100,105,90,107,80,97,99,113,95,96,102,96,97,100,112,104,73,96,105,96,106,109,84,100,105,106,116,108,105,101,95,103,95,92,95,102,93,110,109,97,121,116,111,97,103,109,102,75,105,109,94,95,103,114,103,104,92,102,93,120,103,103,112,106,98,91,106,102,101,109,106,94,109,109,77,97,103,98,109,109,111,104,113,106,111,112,111,90,121,121,98,105,102,92,100,102,113,100,98,110,93,108,101,96,98,109,107,107,108,96,98,103,95,105,95,88,100,101,108,83,99,96,99,100,99,93,106,111,110,96,101,106,101,98,97,96,98,100,100,108,102,96,91,102,97,103,104,93,98,94,98,111,101,103,92,106,99,100,106,97,106,111,98,123,108,106,104,101,101,107,109,103,104,102,111,98,101,96,94,89,101,101,94,109,99,88,98,104,103,108,88,101,104,101,97,92,103,96,109,101,100,102,102,96,93,104,103,96,98,105,91,108,83,93,103,96,108,76,115,109,100,98,96,92,102,99,98,106,113,93,107,105,105,103,99,121,102,99,103,107,111,94,116,93,95,101,105,105,97,109,107,90,104,104,112,94,101,87,97,92,94,87,99,117,101,91,109,95,100,92,72,99,93,105,105,101,103,112,106,95,99,108,93,105,109,101,98,110,105,104,107,110,100,104,94,92,100,106,106,111,100,108,102,102,101,87,93,99,99,107,99,87,96,109,98,94,100,101,94,100,99,97,101,95,82,101,105,112,109,97,102,117,100,112,109,95,99,87,107,105,107,106,82,98,91,109,96,97,94,111,95,109,107,103,97,97,108,92,103,91,88,106,113,96,76,99,106,103,103,99,101,113,105,79,100,85,99,93,86,109,112,93,98,83,109,98,97,111,95,103,106,91,106,96,103,104,98,79,104,97,95,97,116,81,89,107,105,92,103,103,104,104,89,88,107,99,97,102,98,106,103,90,97,103,100,107,99,95,103,96,118,102,104,111,86,75,116,107,109,93,119,110,90,92,98,96,113,119,95,99,97,98,110,99,106,107,116,107,91,105,128,106,119,111,93,93,103,71,95,97,117,100,82,91,107,94, +397.27765,93,78,98,96,101,107,99,105,94,113,91,95,103,99,84,109,100,100,105,101,103,86,90,102,95,99,103,99,93,104,99,107,92,105,108,100,116,98,100,99,94,101,118,99,98,98,88,112,90,101,94,117,96,109,103,102,97,95,108,104,95,105,109,93,105,113,85,127,126,83,104,89,108,104,94,117,98,104,95,96,88,115,96,84,108,99,97,93,94,100,106,110,101,100,96,101,102,104,96,99,94,96,117,87,98,100,107,101,106,107,91,105,100,95,101,105,102,100,98,107,98,92,103,112,110,94,100,90,107,113,113,103,93,107,102,114,101,102,93,108,93,124,91,92,117,97,70,103,91,81,103,105,110,106,94,117,107,104,106,98,90,106,92,96,104,101,96,95,95,106,98,106,97,88,100,96,102,96,102,113,96,96,104,104,98,114,103,92,116,93,100,105,94,95,98,72,95,87,108,99,97,94,95,95,98,105,99,112,105,103,102,95,102,88,96,113,88,97,100,103,105,106,102,102,99,106,110,93,95,100,110,112,106,96,110,99,109,92,92,112,105,112,110,96,114,104,96,104,96,107,97,98,100,108,98,113,90,113,103,98,97,80,101,108,103,111,99,116,100,100,93,108,95,101,99,100,95,104,90,102,111,105,102,101,107,104,96,108,119,100,95,109,110,106,115,106,95,101,98,91,84,98,107,107,100,104,103,100,116,132,100,106,99,96,108,103,96,114,108,86,102,101,107,109,97,106,99,97,108,107,110,97,106,69,101,104,101,100,93,104,95,109,95,100,92,111,105,93,97,99,107,101,98,100,98,108,107,106,78,110,100,95,104,105,112,94,98,103,99,104,101,113,104,102,86,108,96,100,105,107,102,118,100,101,92,101,90,91,98,101,97,110,112,99,98,108,106,108,124,94,102,93,96,94,103,101,99,100,98,97,98,103,102,99,100,79,101,102,99,103,95,99,102,108,99,88,99,89,99,87,125,112,98,105,106,107,107,96,106,101,100,98,94,111,98,96,95,109,103,104,96,100,91,106,105,86,101,100,110,108,92,99,116,110,96,96,105,89,119,95,97,105,103,88,109,94,109,107,100,89,112,101,98,107,110,97,107,106,113,106,113,110,111,113,103,105,102,112,79,92,109,109,106,110,103,97,98,103,105,99,82,100,94,113,110,91,114,100,92,100,110,106,120,100,99,104,99,117,99,91,104,92,95,103,94,103,106,88,110,101,100,95,100,98,109,109,105,100,106,92,109,89,103,95,94,101,112,100,97,88,100,101,106,77,99,104,96,109,102,90,97,95,101,96,97,101,88,104,103,86,101,105,112,101,100,112,103,108,115,99,110,104,92,110,103,101,109,105,120,100,107,104,106,91,113,109,93,92,111,105,96,106,105,103,117,96,104,98,99,108,102,94,100,115,100,97,87,103,117,101,106,95,101,93,89,98,98,121,98,98,104,99,108,96,93,96,88,91,110,89,88,116,106,105,96,106,101,99,96,101,97,108,101,97,99,97,101,101,109,93,103,110,89,104,103,94,103,97,128,113,79,103,100,107,96,102,97,83,99,99,96,112,103,99,87,105,111,118,109,106,94,107,95,96,116,100,108,100,96,103,108,100,96,98,102,104,91,102,102,105,95,101,103,99,104,106,89,104,100,107,102,98,101,96,107,102,108,89,108,104,108,104,102,103,92,94,97,101,99,103,106,90,102,92,96,99,82,101,98,107,97,101,93,109,99,106,110,108,103,107,101,105,113,118,112,106,103,105,98,96,101,95,105,117,88,117,109,95,92,97,121,117,107,99,106,97,93,95,119,106,100,107,99,98,103,97,95,87,84,100,73,103,102,99,106,95,110,106,108,91,96,103,99,115,99,106,97,102,100,103,107,103,104,102,98,105,103,98,102,103,100,98,103,68,106,85,109,104,94,99,100,102,112,103,116,101,96,98,101,100,96,112,105,93,108,101,71,110,106,111,95,98,96,103,102,85,96,96,94,112,98,109,102,104,98,98,91,96,90,100,99,103,102,111,80,102,86,96,95,104,111,100,100,86,97,87,91,112,107,86,95,102,97,110,107,88,100,111,101,100,110,100,114,94,99,104,82,107,101,102,109,124,107,104,94,104,105,91,89,91,97,96,99,111,106,87,98,112,105,100,106,103,109,101,111,94,98,108,97,106,103,102,100,90,113,102,97,97,71,105,98,98,111,101,102,98,95,101,111,102,101,101,104,132,101,93,99,95,101,96,106,97,103,99,98,91,109,109,100,99,109,100,86,103,98,93,111,100,95,102,98,94,105,109,99,94,92,88,115,100,103,105,86,97,84,100,100,86,108,95,95,105,103,107,105,92,98,102,101,102,99,99,96,96,109,110,107,105,99,94,105,97,97,99,89,103,86,96,97,113,97,105,97,114,89,102,99,97,101,97,89,116,97,108,101,99,106,95,91,109,106,100,77,104,102,96,94,91,115,103,98,97,101,108,100,105,100,93,96,99,97,75,103,102,88,105,102,98,102,100,97,113,95,96,106,97,91,92,84,109,100,100,95,108,111,99,95,102,97,100,100,109,109,80,94,103,94,102,109,89,98,91,105,103,104,102,90,107,112,93,105,96,104,102,97,88,98,106,90,104,87,104,95,88,95,87,79,89,65,104,97,94,115,109,105,109,101,100,102,101,91,100,91,106,104,111,109,99,101,105,90,108,101,104,98,103,99,111,112,105,98,78,109,98,107,109,105,103,100,93,97,92,91,106,103,101,95,109,95,88,102,105,108,80,97,94,102,99,94,97,100,91,106,106,102,101,95,98,97,105,97,93,92,95,131,94,102,95,100,105,97,96,106,92,107,105,103,102,106,86,102,102,95,91,104,94,102,109,95,96,98,102,106,112,110,105,95,100,104,107,97,87,96,94,102,91,105,95,98,102,106,97,93,112,99,98,112,97,102,105,107,101,107,105,102,90,93,108,94,105,97,99,101,99,96,115,92,98,96,100,99,99,81,100,107,98,84,99,88,96,102,109,102,102,105,96,90,97,103,100,99,101,92,108,97,94,103,100,102,105,89,91,99,108,111,94,116,95,99,95,104,99,125,108,76,91,97,95,101,93,84,94,95,107,96,94,92,100,88,90,107,107,93,103,100,98,109,101,101,107,98,94,78,93,102,102,101,99,121,105,91,92,97,113,98,97,104,102,101,103,96,93,96,101,92,93,91,104,95,87,105,109,98,96,98,105,90,93,102,90,92,98,100,111,100,96,95,84,108,106,96,100,115,98,96,110,102,101,94,107,94,101,86,93,98,113,74,96,103,95,105,102,109,110,102,92,96,81,109,104,98,90,101,104,108,91,97,97,100,76,100,97,97,94,74,82,104,101,92,100,100,98,90,102,94,106,103,97,101,88,89,92,87,102,91,92,99,95,106,125,103,104,90,106,99,106,100,98,105,99,108,103,101,99,91,106,98,99,100,89,97,106,102,102,103,97,111,98,94,90,97,117,104,84,134,107,113,93,104,92,108,108,97,99,102,102,108,114,100,102,94,100,111,98,105,101,103,105,97,108,113,99,100,96,100,104,103,105,106,87,90,100,106,104,95,107,92,100,89,83,93,108,98,95,86,101,94,94,101,97,95,104,103,95,100,107,99,91,91,95,98,100,95,117,109,95,100,96,103,111,73,95,96,108,105,104,93,96,102,99,104,98,104,117,105,104,101,109,108,87,100,108,102,96,102,91,101,109,100,98,97,104,92,93,102,113,96,99,103,97,104,112,99,92,102,102,106,88,98,100,102,107,105,110,96,98,92,103,97,101,98,100,105,112,103,109,95,104,90,110,88,98,100,113,89,97,93,96,102,105,103,78,87,98,93,90,93,102,108,103,101,100,102,91,113,99,80,105,88,88,110,103,100,101,90,114,110,93,96,112,99,104,112,95,99,100,107,103,94,94,90,105,94,117,91,113,101,98,94,97,106,101,106,108,108,102,103,100,81,100,111,104,95,97,89,89,109,113,91,106,124,108,105,94,88,99,97,97,108,100,105,87,97,117,97,97,103,98,79,98,99,100,103,105,99,94,106,96,98,100,98,108,96,96,105,103,99,93,96,83,96,91,95,102,101,109,97,89,106,99,109,90,101,100,103,108,99,90,102,102,102,95,85,91,96,102,95,101,89,103,101,99,99,100,92,101,97,107,104,105,100,98,105,113,112,94,91,100,105,105,97,93,101,112,103,105,108,101,102,83,96,99,110,97,99,106,92,112,101,93,103,91,120,104,113,105,94,99,91,87,67,96,106,99,111,100,98,98,94,108,97,105,98,100,105,91,92,101,107,101,91,96,98,98,100,92,98,106,105,112,96,105,101,109,106,92,100,100,92,94,96,92,105,108,101,87,103,92,109,103,105,98,96,106,83,120,75,105,102,98,104,96,97,99,106,103,97,107,87,99,79,113,81,84,101,98,93,117,94,91,102,100,100,91,94,106,88,98,101,91,102,105,86,102,89,107,100,108,105,88,94,109,92,91,93,106,107,98,98,98,86,104,87,107,93,100,102,100,101,95,89,104,107,102,98,105,117,90,99,98,97,91,102,95,102,101,97,100,105,108,79,102,117,104,100,92,94,116,97,95,101,102,97,99,102,87,106,103,98,106,90,108,96,103,94,89,94,92,93,96,106,84,108,98,103,100,96,105,114,99,90,103,99,96,88,109,98,103,101,95,94,91,109,99,102,102,93,93,101,109,89,93,86,101,98,94,101,100,99,107,97,110,106,113,103,104,97,97,106,92,88,95,102,101,100,92,97,94,104,91,108,102,97,102,102,99,111,106,95,97,133,101,92,103,95,108,83,103,95,91,104,103,104,100,96,98,95,97,89,99,105,92,99,106,121,96,106,99,96,87, +397.41776,94,101,72,98,105,88,101,101,93,88,97,93,96,85,108,106,94,101,90,87,99,89,97,106,101,109,113,106,91,85,87,93,103,106,113,108,90,95,103,112,100,101,103,101,108,106,100,121,95,95,105,99,113,94,91,89,109,100,95,82,100,90,105,85,114,108,89,97,100,102,97,91,85,99,109,95,93,63,102,97,98,96,96,105,112,102,101,111,96,97,104,94,103,97,104,111,103,103,92,108,96,92,91,93,105,93,93,87,95,107,105,95,117,105,106,102,104,106,112,101,101,104,92,109,97,119,99,101,99,113,101,96,96,108,99,94,95,94,107,88,116,110,99,111,92,104,111,108,114,97,101,104,100,96,98,97,102,98,98,99,106,99,108,87,102,91,104,115,100,83,101,121,116,93,99,102,104,95,98,104,99,95,92,99,106,100,68,103,94,95,98,102,103,105,108,96,106,90,110,107,104,99,86,84,103,110,108,104,103,91,99,97,111,113,100,107,102,108,102,105,102,107,97,100,95,95,123,97,90,88,100,97,98,119,104,106,97,105,99,96,92,92,104,100,88,98,102,109,99,89,90,104,97,113,91,109,105,86,105,94,102,109,109,88,106,105,98,96,106,101,84,100,104,91,108,102,94,109,94,99,112,107,103,103,103,87,101,113,107,99,93,100,102,104,116,92,104,112,85,97,103,97,112,100,108,101,112,97,105,103,106,103,93,96,97,100,96,97,97,90,96,99,106,112,101,108,100,91,92,106,110,101,100,111,109,92,92,95,86,99,105,94,105,102,90,104,100,101,123,105,96,111,96,97,90,98,68,109,92,102,108,101,99,69,96,103,94,100,93,94,104,118,129,93,99,91,87,107,99,103,97,100,99,102,100,96,97,99,112,87,105,99,89,108,97,91,108,96,93,104,104,96,109,105,99,88,92,113,104,107,100,86,91,94,106,87,112,95,113,83,105,91,92,95,95,96,96,94,100,101,80,104,96,89,78,100,103,105,108,98,103,94,97,105,98,101,96,93,98,105,93,100,95,94,85,99,94,99,100,104,104,102,102,106,107,102,103,98,103,102,92,117,102,95,101,97,103,110,91,96,100,108,109,100,97,93,107,99,107,104,103,103,91,98,113,106,103,103,103,99,108,107,112,108,98,109,101,109,105,90,104,94,106,87,104,107,104,106,86,91,112,90,102,105,97,108,108,102,95,94,102,105,102,105,102,111,106,103,95,105,84,113,109,101,113,101,105,91,102,106,97,101,111,99,91,102,110,98,109,117,113,98,105,95,97,107,101,101,100,97,93,83,98,113,100,104,114,106,99,93,89,102,94,111,100,92,107,111,99,110,102,96,105,93,105,110,114,106,105,102,98,105,86,104,106,107,110,88,96,107,99,101,105,100,106,91,114,92,77,105,92,105,103,101,104,107,99,121,94,106,111,83,99,103,92,98,97,90,104,97,107,104,91,105,99,87,94,99,96,102,106,102,103,104,104,100,101,95,111,98,107,109,69,99,93,104,88,109,125,88,99,102,107,97,98,103,105,111,106,111,107,82,99,93,91,101,94,103,113,101,106,91,103,107,100,102,78,99,109,92,98,102,97,90,87,98,119,112,108,92,101,94,101,101,107,99,100,85,110,98,103,93,103,100,103,107,94,105,109,112,107,129,87,98,110,101,100,93,98,91,95,109,111,108,107,104,103,92,90,105,111,90,103,95,105,105,93,105,118,107,95,106,92,103,97,90,88,100,101,99,109,100,100,106,91,95,100,99,105,98,95,103,96,108,102,103,91,96,105,93,101,99,104,100,102,104,87,109,110,102,91,67,87,90,107,97,93,93,95,104,106,107,99,111,112,87,100,105,94,91,100,100,112,96,101,101,108,108,105,100,102,97,101,103,98,99,104,104,100,100,96,102,89,102,102,101,105,98,104,105,88,92,99,99,104,121,109,96,100,102,103,88,109,114,96,127,104,107,104,102,109,101,91,73,92,114,104,107,104,99,92,94,97,101,92,105,97,89,104,100,103,107,123,107,112,97,109,95,103,105,100,105,108,105,108,103,90,105,98,109,88,96,77,94,97,103,92,109,106,96,101,113,99,113,105,98,97,108,89,99,101,97,114,117,100,103,107,95,103,106,102,107,104,100,95,67,104,106,113,91,106,106,105,111,121,101,105,90,110,90,107,105,98,92,113,85,106,112,91,111,101,98,92,93,112,107,109,101,109,102,103,110,91,92,93,119,99,91,91,95,112,100,100,103,96,90,99,112,97,113,105,99,95,101,100,97,109,100,108,102,102,98,98,105,90,98,108,98,109,92,105,107,101,94,101,99,98,115,112,102,108,95,109,104,97,96,103,106,103,96,78,95,84,101,92,107,117,95,96,100,96,105,113,106,98,104,97,110,109,99,92,100,105,91,99,102,71,105,103,103,95,112,104,94,104,96,104,95,95,103,95,120,83,108,103,128,96,105,99,99,102,97,99,92,86,107,112,91,90,86,107,102,113,104,103,99,103,91,108,102,114,97,99,91,113,92,69,94,99,109,114,94,87,91,115,88,99,102,98,98,84,102,103,95,95,110,101,91,102,92,109,89,95,100,100,107,103,82,92,79,103,95,102,96,103,92,108,94,101,105,96,81,108,82,99,113,101,103,100,100,105,93,97,98,99,97,111,87,106,99,86,91,96,128,100,103,98,111,100,95,100,99,105,102,99,106,95,83,98,104,97,101,93,101,80,96,85,90,94,91,118,109,98,104,96,109,110,99,109,95,104,97,94,100,108,105,91,108,110,108,87,102,113,110,109,105,114,81,90,89,99,103,103,109,107,107,99,117,91,104,94,103,91,113,104,85,108,117,92,112,82,105,105,100,99,110,103,99,92,101,92,107,108,101,106,98,75,77,111,110,105,103,110,113,97,92,101,106,112,105,103,95,95,100,103,100,83,111,95,107,103,97,101,96,96,105,101,102,103,109,95,125,96,90,99,100,99,94,79,95,113,99,99,111,95,83,107,89,68,101,103,108,100,95,99,102,99,110,101,101,93,98,116,93,109,108,102,95,81,104,99,94,77,91,98,102,97,118,94,95,105,110,111,91,96,99,99,97,104,99,102,95,100,88,101,97,111,105,98,91,107,80,102,98,102,92,105,100,105,95,99,99,101,64,98,102,99,99,106,109,111,88,95,97,105,104,115,104,107,89,100,96,110,107,108,107,102,103,113,100,98,112,97,77,95,108,102,102,107,103,97,107,102,102,104,87,94,116,95,102,110,100,98,105,93,97,95,88,108,85,99,114,94,98,100,115,102,102,109,89,107,102,103,106,98,96,98,88,117,94,96,99,93,102,102,98,93,100,92,87,92,106,97,82,101,91,98,110,104,100,99,90,102,95,98,98,91,136,93,87,98,93,101,91,99,110,102,94,113,79,105,94,101,99,71,95,100,101,105,101,94,93,95,102,109,87,113,100,85,99,102,95,88,103,107,102,104,108,105,93,98,107,111,103,108,102,78,101,99,94,101,95,103,109,95,107,100,102,96,98,101,121,106,100,90,98,92,106,93,104,99,105,101,104,96,103,105,101,99,102,105,104,99,105,106,94,87,106,96,96,97,98,103,103,94,92,115,76,111,104,91,98,105,92,105,96,93,98,101,109,109,102,97,103,106,96,92,108,97,95,105,92,98,94,87,90,103,92,107,99,84,95,100,100,113,105,96,97,103,87,105,104,106,100,103,115,102,97,102,96,88,88,95,95,101,102,96,103,109,98,97,93,101,95,100,101,103,98,114,109,100,106,101,110,104,101,101,112,99,100,120,96,100,89,95,105,105,101,92,96,99,102,96,89,103,93,107,90,91,110,102,102,96,101,84,98,100,90,96,106,98,103,88,111,95,100,88,97,99,109,96,100,107,100,102,96,101,104,96,101,101,85,115,93,95,111,116,99,119,105,97,99,99,101,93,104,91,102,109,103,90,94,77,96,98,94,101,97,93,84,105,99,104,101,101,103,94,106,101,99,96,106,94,91,98,100,99,112,106,111,78,101,94,109,96,99,92,102,102,86,102,101,91,101,97,88,93,112,104,117,86,97,91,102,92,90,85,109,93,100,94,98,94,98,103,111,84,106,104,102,101,91,102,100,121,97,96,99,115,112,109,104,105,77,98,94,102,105,109,99,108,95,88,96,88,100,87,98,98,103,102,97,104,97,89,104,113,94,113,106,108,97,97,84,85,104,83,112,104,94,98,103,104,99,90,101,95,108,96,94,100,105,101,101,95,90,102,102,103,99,108,91,97,97,100,95,95,96,107,105,99,104,127,101,98,101,102,101,102,126,106,105,97,91,97,92,92,101,103,87,94,104,116,108,112,108,99,96,103,101,97,92,99,102,79,98,103,102,91,110,91,94,99,97,100,96,100,90,104,96,105,104,90,97,91,97,85,94,104,108,94,99,94,112,90,88,92,89,89,122,101,96,105,83,96,102,98,96,105,98,99,102,102,105,105,98,95,102,103,100,79,103,97,105,108,95,94,100,95,98,88,115,97,117,101,100,111,100,108,100,101,92,98,95,98,101,117,92,92,92,88,99,109,104,108,95,113,102,81,93,86,112,98,117,99,105,97,103,88,97,98,101,97,92,63,106,116,113,104,95,98,97,104,103,105,108,101,98,102,91,99,87,96,107,94,96,109,99,127,104,110,112,107,104,105,100,99,93,101,103,79,99,87,108,96,102,112,90,130,111,77,94,100,108,94,99,92,82,104,100,92,91,102,98,100,98,104,100,95,92,82,100,109,98,84,98,87,98,89,95,96,90,121,111,90,103,90,117,91,109,104,114,126,81,95,99,87,100,95,98,81,93,93,92,88,84,90,93,100,95,100,107,104,95,113,87,100,83,98,60, +397.55786,89,101,87,90,84,106,109,91,102,84,97,88,96,96,90,78,101,98,116,85,104,91,93,92,92,86,94,105,101,102,101,100,98,102,104,95,111,91,99,98,105,99,97,93,74,106,107,101,110,108,100,89,110,88,104,91,90,86,104,94,104,101,115,95,84,88,97,101,86,97,103,98,104,97,101,112,102,100,99,87,106,108,102,92,95,102,104,100,97,107,103,105,102,92,96,101,99,87,111,87,92,100,101,101,105,103,95,99,93,94,94,109,102,85,99,92,97,98,105,92,101,98,100,101,103,96,105,108,107,100,101,103,105,91,102,100,102,88,102,95,96,112,99,98,91,99,75,92,113,95,99,96,113,105,95,102,96,101,96,87,93,104,105,97,100,87,98,84,99,100,100,103,100,102,89,98,110,97,110,105,99,104,92,109,98,99,93,88,111,108,97,98,105,99,101,107,105,92,103,91,102,95,82,103,98,102,99,95,101,109,100,93,103,96,98,105,85,104,101,105,106,105,104,105,102,96,107,93,104,101,86,100,106,95,99,97,86,92,99,102,94,113,82,92,97,90,100,110,99,90,98,103,103,106,93,95,98,108,97,93,109,134,95,100,101,105,99,110,101,94,103,96,103,95,109,103,117,99,101,96,80,99,104,94,106,106,95,98,94,96,104,93,101,99,113,100,98,100,110,100,90,101,100,108,95,111,117,108,105,108,97,107,102,94,102,110,94,97,95,101,99,102,100,100,97,96,98,87,107,98,114,104,93,100,101,120,96,88,104,97,100,107,113,88,105,104,113,121,113,103,92,99,85,115,113,106,107,104,102,82,97,100,100,98,103,97,101,110,106,95,100,119,102,105,98,91,94,105,102,110,105,103,105,113,98,92,90,101,96,106,102,102,99,110,89,100,106,99,99,110,113,95,96,96,80,90,106,111,97,85,82,109,106,95,104,100,98,111,103,113,100,91,96,92,99,84,104,101,97,114,97,101,87,104,90,90,88,101,115,95,109,98,101,102,91,100,102,100,100,103,108,96,93,102,114,101,110,102,103,103,110,110,100,100,91,98,102,103,106,99,131,109,100,97,95,98,93,102,100,101,94,95,118,108,97,90,108,100,122,102,92,94,104,100,95,103,98,95,79,98,99,96,94,103,111,104,90,104,102,92,96,106,101,107,94,96,107,86,88,95,99,99,86,104,115,101,107,104,104,85,96,114,94,96,105,100,99,95,94,99,100,94,99,114,102,103,103,99,98,103,98,109,98,101,98,97,91,85,100,92,114,96,102,95,113,94,97,109,104,110,91,114,112,106,101,99,111,101,91,111,98,112,104,111,99,87,105,98,105,132,93,96,95,108,104,107,113,104,113,102,98,91,78,99,94,109,97,115,98,97,97,125,82,114,101,105,93,106,106,111,104,106,107,100,95,93,110,106,99,109,107,88,108,106,91,117,108,110,119,99,114,113,96,85,104,99,99,95,104,99,87,100,86,104,102,104,91,104,104,108,104,108,71,88,101,100,102,97,101,106,96,106,108,114,96,97,114,97,96,99,100,111,101,97,96,87,94,100,96,106,104,95,99,117,116,103,104,98,103,104,107,100,94,100,107,106,107,89,82,91,93,101,109,107,103,87,90,101,92,100,98,93,94,87,108,98,106,100,96,130,104,98,103,116,102,91,110,99,105,91,106,106,101,105,104,90,103,105,96,113,100,107,94,101,91,97,99,102,114,108,91,111,97,85,101,101,105,98,104,95,110,106,103,90,108,103,95,107,100,113,91,104,107,103,109,99,110,104,97,101,91,100,107,105,102,105,104,103,97,104,102,79,109,99,98,106,103,104,96,112,118,88,101,111,100,105,103,94,105,94,100,97,93,90,86,101,97,93,103,75,101,100,102,95,101,99,107,92,110,97,92,107,106,108,104,105,101,82,103,84,95,90,103,95,93,106,100,109,107,100,100,93,99,100,95,108,87,89,103,103,110,107,108,92,99,101,115,90,103,85,112,95,94,113,105,91,90,97,105,101,101,107,106,116,92,98,81,104,104,91,75,105,108,95,100,98,100,110,92,95,108,110,102,103,98,96,77,103,90,115,103,101,109,111,98,100,108,111,96,107,91,100,115,107,95,105,93,106,91,97,111,113,90,100,104,91,104,106,104,103,94,104,94,98,106,110,105,116,98,108,113,95,104,93,94,69,90,102,98,99,98,100,97,98,96,93,105,98,90,100,95,98,101,104,95,108,117,99,101,109,101,98,95,107,89,101,101,94,93,85,104,101,93,106,110,102,107,110,104,98,99,101,104,99,92,94,92,96,92,101,122,111,104,102,94,102,90,95,110,98,108,100,99,84,100,63,105,104,100,97,103,109,92,95,91,103,100,101,100,108,103,109,97,87,107,93,97,115,92,92,104,95,100,87,90,109,91,108,102,104,92,103,100,81,87,91,103,100,103,95,107,108,90,108,100,106,90,100,110,95,101,90,92,109,88,89,102,96,103,101,97,85,109,99,97,80,114,94,103,91,95,109,79,98,96,99,92,86,97,103,106,86,116,104,85,91,85,91,112,103,102,93,111,93,102,103,95,106,103,99,112,100,88,91,105,99,92,81,124,98,105,97,98,113,69,92,102,102,108,88,110,100,112,88,105,99,102,95,104,99,95,96,114,102,100,126,98,99,116,100,102,90,84,110,108,107,112,104,94,108,104,96,91,95,105,106,105,80,90,90,102,111,103,100,106,118,105,102,111,104,102,100,106,111,97,100,104,104,97,104,97,110,78,96,104,108,114,112,102,105,97,103,100,109,101,102,104,99,101,101,104,69,97,92,98,111,96,113,95,98,111,109,98,101,94,87,95,105,106,105,112,85,100,109,106,105,96,102,104,126,110,92,90,101,97,91,113,89,105,113,102,111,109,97,106,109,98,112,101,94,103,94,89,95,103,96,105,109,108,110,96,98,99,101,106,99,95,116,97,75,92,98,93,95,98,100,105,93,91,95,92,99,100,108,113,102,117,94,104,107,103,87,105,106,101,89,109,89,89,107,103,97,109,96,95,96,93,104,106,89,102,99,98,109,98,98,94,104,104,97,103,94,97,92,105,96,99,103,93,97,102,96,130,109,105,100,106,91,90,100,101,95,98,110,107,94,93,90,93,112,98,101,104,92,97,99,104,84,106,107,98,100,88,98,109,100,99,91,110,97,83,115,109,107,80,109,87,102,104,100,94,88,93,106,97,112,99,120,121,101,104,97,97,102,108,101,100,108,105,107,97,90,98,88,93,101,96,90,116,100,93,81,123,96,95,103,102,90,96,97,95,103,108,89,101,109,101,92,112,96,94,99,105,95,106,113,102,98,99,95,96,113,99,98,114,107,99,94,95,94,90,98,107,108,110,129,99,104,95,99,103,95,107,110,102,116,95,96,97,96,96,97,87,104,93,96,98,102,102,101,97,105,91,95,90,104,104,99,107,100,98,90,96,84,97,95,100,99,106,93,112,93,98,97,113,112,104,108,100,96,97,101,90,110,97,104,95,99,95,103,95,110,91,96,107,104,113,104,101,97,116,91,98,112,95,98,100,115,113,106,101,113,107,100,100,97,83,109,104,101,94,105,96,85,101,100,87,112,108,92,79,94,86,91,87,104,108,94,94,98,90,91,98,107,88,95,106,94,89,100,99,108,98,111,104,100,91,97,108,98,94,94,103,95,87,96,106,80,92,101,97,96,100,97,110,96,95,114,110,106,104,91,109,98,104,93,96,111,88,90,98,92,108,104,106,93,104,92,108,102,95,95,84,109,97,102,96,108,93,105,92,87,104,101,98,104,105,97,94,99,98,106,84,97,107,105,106,108,101,93,98,103,103,95,101,85,94,100,102,108,90,97,97,97,103,96,96,90,97,99,98,91,100,97,102,98,103,87,108,91,104,101,98,105,95,115,106,105,92,102,101,84,107,102,94,105,104,107,103,96,100,93,108,91,109,93,92,109,102,101,113,93,95,102,102,106,96,106,101,103,102,114,105,93,80,100,118,101,105,103,91,110,89,104,99,106,100,106,96,100,103,88,86,106,88,100,113,97,96,106,109,103,107,105,95,95,89,111,95,100,103,98,96,98,97,101,104,71,105,99,96,76,102,107,104,105,102,112,105,108,102,107,90,94,98,107,109,102,100,89,94,94,118,108,105,87,84,110,96,97,103,103,104,101,90,104,97,93,130,100,102,93,88,102,89,104,105,107,96,93,82,99,109,98,98,99,101,91,76,118,103,92,102,100,72,95,90,103,101,102,98,112,107,90,95,104,92,113,99,102,108,110,111,96,104,102,98,109,98,99,103,95,101,108,104,99,99,99,95,97,108,99,99,106,92,108,110,96,105,108,93,97,93,96,95,99,99,95,103,87,87,88,98,101,79,89,98,92,95,99,104,115,107,99,90,97,84,112,85,100,104,96,107,106,95,87,110,84,93,96,99,102,104,104,87,101,96,83,102,103,91,107,98,111,107,97,123,102,85,96,82,98,94,91,88,111,112,104,94,98,94,106,98,86,108,91,95,82,85,99,105,110,100,108,107,100,104,103,110,102,96,101,105,103,106,76,78,102,97,98,99,100,104,101,89,116,91,111,93,108,101,96,96,105,101,93,106,98,105,93,100,68,95,92,93,96,111,107,103,69,107,92,113,97,91,94,111,106,99,94,96,103,93,98,102,99,101,101,100,79,98,104,81,97,125,107,108,114,91,89,97,100,92,95,85,108,92,100,117,106,104,102,94,95,98,102,100,102,88,102,93,91,101,110,89,106,106,105,92,75,104,93,98,101,99,76,103,101,97,93,105,98,94,109,91,89,109,101,115,97,92,101,86,98,91,105,107,112,99,84,106,103,75,97,82,91,100,85,105,86, +397.69797,95,85,92,109,91,97,96,108,103,92,101,92,97,94,97,96,89,101,129,102,98,99,105,97,73,99,103,95,82,108,97,101,92,104,97,91,106,116,99,108,98,97,105,99,117,99,93,98,95,102,105,100,109,93,101,84,99,108,98,99,90,104,100,101,102,109,97,104,102,94,98,112,98,96,87,100,105,116,105,118,104,114,101,110,99,115,93,95,104,99,91,96,96,112,108,105,108,99,90,100,103,107,87,91,92,102,126,102,95,102,128,101,106,97,80,94,99,115,109,102,104,98,103,103,102,84,86,95,101,109,96,107,102,106,108,99,99,111,99,98,99,107,94,85,97,90,105,91,96,96,102,114,106,108,100,93,105,101,99,98,88,97,104,95,102,99,95,97,113,94,88,110,88,90,96,95,100,113,112,109,107,102,103,95,108,97,102,76,79,91,93,98,94,100,98,104,96,94,93,110,88,97,103,101,94,93,101,100,101,107,101,99,98,119,100,115,100,98,80,98,97,88,105,99,98,96,95,103,109,101,70,100,93,102,102,110,99,99,101,79,69,96,118,97,102,97,92,93,101,109,109,104,103,95,92,105,103,102,94,98,84,100,106,97,110,104,104,98,90,89,116,97,107,107,96,100,91,96,98,85,91,91,103,92,101,97,96,98,99,96,100,99,104,89,94,107,87,105,86,99,94,83,97,109,92,101,95,93,91,111,101,104,104,92,106,108,104,71,98,94,97,82,103,110,97,94,101,103,102,100,102,97,102,102,102,101,105,105,99,96,88,99,88,93,101,94,97,111,95,99,106,109,101,99,106,86,101,109,102,100,99,99,94,101,100,99,108,103,106,107,102,103,85,104,100,91,106,106,105,105,74,100,109,96,94,101,82,100,86,108,100,95,91,106,103,84,94,96,101,106,92,106,104,103,97,107,104,99,102,95,87,90,110,98,110,97,99,105,104,89,110,105,94,104,87,95,79,96,109,86,94,98,102,102,101,104,111,102,99,90,102,95,106,119,103,95,109,100,112,104,99,105,101,87,105,105,104,102,102,92,103,89,110,111,134,107,101,97,107,102,97,107,109,90,95,91,88,102,113,100,92,100,110,100,105,95,127,101,94,72,94,116,102,79,94,91,87,99,99,96,109,90,91,96,102,89,107,99,96,92,112,95,101,100,95,82,93,117,104,104,102,112,98,101,110,94,108,103,102,97,86,82,93,103,94,99,109,102,102,104,97,101,98,111,76,114,109,98,99,105,95,100,115,99,96,93,111,104,91,88,98,102,101,97,102,95,99,104,101,100,102,100,103,111,95,101,97,101,102,103,98,96,94,102,110,99,113,101,106,95,95,110,97,86,102,124,101,102,105,97,102,102,120,103,102,98,105,87,107,117,111,107,96,102,92,94,84,104,98,105,105,113,110,112,107,105,105,105,104,74,87,97,95,93,89,109,103,101,103,111,96,108,98,99,92,100,106,94,99,102,101,104,103,103,96,101,97,101,101,103,106,101,126,99,94,101,93,91,112,113,98,100,117,106,116,82,106,97,104,94,97,101,94,90,90,100,101,107,109,99,104,100,103,103,91,106,78,111,102,96,83,96,96,94,107,103,104,121,94,100,95,99,107,102,110,99,88,99,101,96,102,98,107,74,98,105,88,101,95,96,96,105,101,101,90,104,94,87,99,92,105,104,96,93,108,94,113,104,97,113,94,101,101,102,112,101,105,98,102,107,96,97,103,104,102,94,99,111,101,94,106,89,90,101,95,112,106,105,105,99,98,96,126,98,85,110,97,82,103,101,97,102,102,93,103,109,90,87,71,106,99,107,100,93,111,106,101,112,110,100,100,93,91,108,103,107,97,105,91,105,94,108,94,99,102,100,94,104,107,97,112,121,104,93,100,115,94,111,119,98,91,82,105,101,100,100,104,92,99,98,107,93,108,103,96,100,103,122,94,99,91,86,99,100,101,111,94,104,105,118,93,97,96,113,95,106,100,82,110,93,100,98,105,124,110,99,99,96,106,92,105,112,97,105,99,98,89,120,110,103,101,111,92,101,96,108,91,104,98,103,101,109,102,100,81,94,92,107,98,96,109,101,96,100,99,100,97,84,96,106,96,103,92,102,99,95,71,98,92,92,99,98,88,113,100,97,90,100,101,106,97,98,95,104,122,102,97,107,105,98,86,100,70,93,102,100,89,86,98,116,113,101,81,99,101,101,103,103,104,101,91,97,96,99,95,87,105,100,103,95,88,94,104,93,100,94,96,103,96,97,95,97,98,93,113,102,97,105,91,99,101,103,92,94,96,104,106,95,103,102,96,109,90,84,100,103,95,112,78,101,112,97,71,93,106,96,91,95,95,97,130,86,101,105,96,101,107,104,98,99,106,99,96,111,99,96,102,100,107,102,79,122,101,106,97,101,107,113,87,104,100,106,95,96,101,92,108,106,84,100,65,93,100,108,91,107,103,115,106,107,104,108,98,93,99,95,116,93,117,90,93,100,104,99,109,95,106,95,117,101,110,102,98,104,106,99,102,99,108,90,113,108,91,105,98,99,95,94,96,80,104,96,112,106,96,100,88,107,99,90,102,96,101,110,98,98,89,87,104,89,96,91,112,95,101,99,100,80,85,106,111,130,100,94,104,107,102,97,107,106,98,96,105,100,116,103,110,102,100,103,94,104,90,109,106,111,112,105,100,106,95,113,99,119,81,119,106,105,108,98,96,98,101,91,100,105,101,99,87,102,109,108,94,104,94,99,88,113,99,95,100,113,110,100,97,105,98,106,98,96,91,113,98,124,102,98,103,97,106,102,107,105,95,112,100,95,103,101,91,96,93,98,100,114,94,100,105,95,103,92,103,97,99,97,116,105,99,104,99,104,104,97,96,89,110,95,101,99,120,104,100,95,109,101,102,102,102,98,95,116,94,109,101,94,108,111,99,93,102,96,112,98,101,108,95,94,95,95,93,103,97,108,101,102,91,99,114,112,94,108,120,86,104,102,98,108,106,95,92,96,101,113,98,104,102,99,95,89,110,94,106,91,97,102,92,93,98,99,106,105,96,94,105,112,102,92,96,100,104,107,88,110,103,108,104,99,92,99,121,103,95,93,109,106,104,103,96,105,106,95,91,99,96,94,98,94,102,112,103,116,109,98,107,94,100,114,124,112,100,98,100,90,111,104,100,100,109,109,94,100,88,97,105,102,99,99,113,114,107,104,98,92,96,96,102,99,100,104,108,79,105,100,108,98,107,106,94,111,108,105,105,94,109,88,129,101,106,91,92,90,100,97,114,104,105,112,114,100,78,101,105,94,105,107,106,86,104,112,115,82,98,95,104,117,73,98,105,98,105,84,98,95,92,115,109,96,98,98,110,64,90,87,98,95,98,110,107,96,106,98,95,94,97,103,98,89,94,98,91,119,111,87,60,107,97,85,104,106,98,89,104,122,97,97,97,95,105,111,113,105,92,101,94,85,105,94,105,103,116,98,102,100,93,118,104,96,105,103,100,96,93,90,101,109,100,107,95,105,101,109,93,97,106,101,105,104,94,92,106,106,99,104,104,94,106,94,96,95,104,104,102,103,94,101,99,112,109,105,98,98,106,114,103,99,104,101,87,105,91,91,94,106,102,96,102,98,105,105,95,99,88,108,91,106,118,103,104,96,104,102,106,122,99,93,102,94,99,99,98,98,113,104,101,107,106,103,92,92,103,93,98,113,94,89,106,97,99,107,104,103,99,111,82,104,101,99,110,107,107,72,103,107,100,107,79,105,110,98,91,94,108,101,103,113,95,102,102,104,93,112,106,108,99,96,95,101,104,100,98,106,104,103,98,111,106,106,102,94,100,102,92,97,90,103,100,96,104,104,86,102,91,106,87,103,108,79,102,112,105,109,93,110,99,104,90,99,95,102,109,97,97,104,100,104,105,105,104,101,101,96,95,106,96,104,100,91,97,97,98,114,111,104,99,106,98,105,109,108,102,92,109,112,93,91,114,95,91,94,104,98,118,96,102,111,109,94,113,106,110,84,114,95,102,103,107,100,104,96,109,108,111,94,100,101,105,103,103,100,117,103,99,102,90,108,107,102,99,113,102,93,115,98,94,87,108,95,95,96,108,106,101,101,107,101,83,104,94,117,96,96,107,104,97,104,99,109,104,109,88,96,100,98,101,91,91,104,98,102,94,97,107,100,113,105,94,113,110,102,117,103,112,93,101,96,92,105,102,109,101,97,102,106,112,102,96,92,102,107,111,104,97,101,102,91,105,104,102,100,83,112,106,109,103,102,103,117,104,96,94,117,103,126,86,104,104,113,98,113,108,113,105,101,112,104,94,95,106,99,111,70,107,103,105,90,97,107,97,92,99,95,104,102,95,97,101,99,104,113,105,78,96,98,101,97,90,87,107,94,96,96,111,101,105,102,91,95,81,97,102,97,112,107,109,84,103,105,103,106,101,86,111,104,91,104,107,106,104,97,104,115,108,110,109,95,94,98,97,95,121,96,89,98,99,93,95,91,104,103,103,94,117,109,90,97,107,108,117,100,124,111,97,100,103,91,101,105,104,105,95,115,87,97,118,108,96,106,83,98,95,93,100,109,93,98,100,103,87,103,94,89,102,113,95,113,95,102,111,101,99,109,103,87,117,108,91,105,98,101,75,99,108,96,95,79,106,94,118,106,109,106,99,96,104,101,92,99,101,99,108,98,100,95,97,93,115,115,105,107,99,88,100,102,93,94,93,102,104,102,113,108,101,108,102,101,81,106,98,101,107,102,96,100,110,89,112,94,94,99,100,113,106,106,95,103,80,92,100,104,109,103,114,106,102,108,88,114,94,97,111,92,93,97,91,97,106,91,112,111,100,100,102,111,104,112,89,106,111,95,98,104, +397.8381,110,109,95,95,94,101,109,89,71,97,100,95,90,93,81,98,87,106,98,81,95,113,92,102,110,99,99,108,104,114,96,98,98,102,98,97,96,107,96,106,93,104,87,103,113,113,105,92,101,95,99,96,78,106,98,84,81,90,107,83,90,104,108,92,101,113,99,113,97,91,103,114,103,124,99,95,66,110,80,104,106,99,111,101,97,101,94,110,104,104,97,89,98,101,89,92,103,96,84,96,94,90,92,92,96,104,100,108,92,98,115,87,94,100,99,101,87,101,96,95,104,62,98,99,113,107,109,95,104,94,88,120,100,104,102,90,89,102,86,103,98,110,83,90,100,88,105,110,104,103,92,95,100,96,96,83,98,96,113,104,96,106,101,103,105,107,114,99,107,95,97,104,97,94,100,107,102,100,114,100,104,103,98,99,126,97,97,95,93,65,91,94,104,104,97,100,97,87,104,103,106,105,99,108,98,99,97,99,103,99,114,103,105,93,102,100,104,101,92,96,103,101,114,104,86,113,88,99,98,95,101,103,101,108,88,100,109,102,84,94,95,105,115,106,101,99,97,95,100,109,107,109,96,85,115,107,101,99,92,108,112,102,99,110,88,109,95,98,113,103,99,98,104,104,108,108,100,100,81,106,102,104,103,99,93,105,96,98,95,105,101,99,116,93,113,102,99,90,90,94,94,103,94,106,99,100,104,111,93,114,91,96,99,94,106,91,102,100,92,100,97,94,106,95,91,91,93,87,103,102,102,98,95,109,108,102,86,101,90,96,97,101,101,90,87,101,105,88,97,92,83,108,104,101,109,118,113,99,98,113,96,105,97,105,92,88,68,106,102,101,107,96,110,97,106,104,98,100,101,113,112,99,91,107,86,110,90,89,109,98,111,85,100,94,115,95,114,99,100,113,97,99,109,98,109,103,94,109,100,104,99,92,103,107,95,91,95,96,104,95,99,103,101,97,100,106,94,96,103,110,95,96,103,95,106,87,97,124,97,104,97,95,108,94,105,90,107,93,105,99,102,98,103,105,95,112,86,97,108,104,95,99,98,99,100,99,78,88,111,92,104,111,98,109,84,95,105,98,98,101,102,103,110,101,95,109,114,106,110,94,105,95,103,82,96,97,97,100,112,94,108,107,95,104,88,98,87,94,102,97,91,105,107,99,91,113,101,107,93,83,100,99,90,106,91,104,104,114,98,103,93,95,99,94,100,98,108,104,102,100,97,95,92,93,74,83,97,80,95,104,99,112,117,88,86,84,96,99,114,99,94,103,101,103,120,101,103,100,106,101,95,114,106,101,104,107,96,100,112,97,98,109,97,96,83,99,125,77,89,114,95,94,96,101,97,95,108,95,97,101,98,108,102,96,97,72,96,101,95,99,96,100,110,102,100,92,108,94,106,107,94,110,108,101,100,104,97,107,103,105,105,102,99,101,105,117,106,101,109,97,102,113,95,99,90,99,71,104,90,84,101,107,101,114,78,94,104,105,102,102,106,113,100,98,100,102,95,100,109,97,99,98,106,117,106,113,106,100,107,107,102,96,96,96,101,100,90,110,101,107,101,91,88,100,90,92,97,97,87,93,87,91,98,78,103,103,104,95,101,96,96,89,93,108,92,104,101,99,90,87,95,103,97,99,87,78,106,102,98,103,102,101,91,103,94,95,106,96,104,92,99,87,109,103,103,90,113,104,110,85,105,85,113,92,100,100,104,98,102,106,108,112,108,71,100,100,79,103,111,112,98,117,96,93,90,95,96,92,102,99,104,105,103,96,101,103,101,105,99,112,96,117,105,105,99,104,111,92,96,109,99,96,107,108,109,106,100,95,93,99,106,98,91,91,106,95,105,91,104,109,97,96,104,89,102,97,116,105,113,99,96,102,97,109,96,104,93,105,103,92,98,100,99,94,95,92,101,118,97,103,104,97,97,100,104,106,98,92,87,98,106,97,108,85,96,102,88,103,96,104,109,100,99,102,112,104,101,94,104,108,91,108,105,100,96,96,97,105,88,100,104,104,105,94,98,94,96,95,97,117,99,104,101,101,105,94,90,94,103,100,98,106,114,91,91,89,91,104,98,97,100,103,96,105,109,105,106,109,105,103,99,106,96,108,97,88,96,98,103,105,100,93,106,121,95,91,113,106,86,95,107,101,107,94,107,79,95,107,106,99,136,123,99,96,106,99,105,106,94,112,107,106,96,113,102,79,100,103,105,102,100,112,100,106,108,102,97,99,104,99,99,97,87,100,96,84,96,75,95,95,94,96,92,87,109,98,111,97,90,103,92,92,95,104,101,105,101,89,101,97,130,64,103,90,86,105,99,120,94,91,97,105,108,109,101,100,92,102,98,96,100,96,101,108,91,97,107,92,105,98,107,92,96,89,96,111,95,100,94,93,105,104,107,83,99,103,88,98,97,97,97,99,102,100,97,103,103,97,92,100,97,90,120,92,101,99,109,105,114,104,89,93,97,100,98,111,95,63,89,111,96,99,115,92,99,104,92,90,101,118,91,96,95,98,97,116,98,85,100,99,84,96,108,106,110,92,99,91,103,103,95,107,102,107,113,96,104,91,108,96,99,105,85,110,99,103,97,99,99,89,108,100,87,102,101,91,102,99,98,102,94,95,111,101,88,100,95,103,98,100,85,101,100,107,98,97,106,96,107,98,98,102,113,111,103,115,104,106,104,99,91,99,107,108,97,102,92,100,92,106,102,94,112,102,90,96,101,99,101,105,98,87,106,109,107,90,114,102,100,126,111,100,92,97,121,107,96,95,102,113,99,97,98,101,96,102,91,101,101,108,110,106,100,113,106,90,105,100,84,101,110,103,113,101,105,98,92,92,101,107,106,115,101,101,106,100,98,107,102,112,98,94,94,130,95,96,97,100,105,101,95,105,101,115,95,105,83,104,104,106,108,105,87,96,97,106,96,92,111,130,117,94,104,107,95,101,103,99,100,95,109,94,108,95,103,109,103,92,103,95,98,88,82,95,102,95,101,101,103,104,105,104,103,114,101,106,97,100,100,109,93,108,105,86,108,101,107,117,102,110,86,104,106,108,95,94,102,91,98,97,99,106,100,94,112,97,89,104,105,110,106,98,96,107,92,106,90,92,79,113,108,96,97,94,98,94,104,102,111,96,90,97,103,90,91,103,109,98,106,101,106,91,93,106,105,101,108,104,98,100,92,79,97,89,108,100,96,107,102,105,105,100,76,94,103,103,107,107,112,108,102,111,107,110,99,96,105,102,92,108,91,91,105,105,99,104,90,87,91,102,99,98,94,97,104,109,106,109,102,103,104,96,102,102,96,104,108,106,100,87,90,116,103,96,102,94,113,101,101,104,93,101,85,106,96,85,100,98,88,100,102,95,96,106,95,102,104,106,96,92,97,103,105,95,105,88,101,98,107,82,94,96,118,94,92,94,93,79,102,104,107,108,100,92,87,98,102,97,93,99,94,105,101,90,87,100,99,103,103,99,107,104,78,100,105,100,68,106,95,106,104,105,93,111,96,95,110,96,92,104,87,91,107,101,116,109,97,87,96,100,107,99,109,100,103,90,86,98,100,99,108,93,101,106,98,103,110,92,91,88,90,100,97,95,99,94,122,103,110,109,98,122,107,108,99,110,98,97,105,99,101,100,103,108,90,88,105,87,95,95,95,103,99,106,99,102,106,100,87,102,105,106,108,104,110,102,94,96,75,88,88,106,98,100,113,90,96,96,107,101,98,96,98,102,94,103,102,103,110,97,114,110,96,95,95,103,102,90,94,105,107,96,105,117,119,94,101,91,96,100,105,83,98,101,105,98,92,103,106,112,86,79,93,107,97,111,95,107,101,100,87,93,100,115,97,106,102,97,105,90,100,111,89,85,101,90,95,102,99,99,91,95,102,100,101,94,100,103,94,92,88,66,106,103,96,106,90,92,105,102,93,109,85,114,89,101,95,97,100,98,95,100,99,107,101,111,102,101,95,89,97,100,91,102,102,95,106,102,97,89,110,107,101,104,96,118,108,100,100,101,103,95,76,91,100,109,105,102,109,98,112,104,105,101,101,87,113,103,102,106,101,96,96,108,111,107,94,109,99,102,104,102,110,97,103,100,99,91,96,100,94,96,106,92,102,104,109,110,101,96,106,101,97,90,93,100,96,106,98,96,71,94,95,113,100,106,97,91,98,96,105,93,98,100,101,114,84,83,104,102,103,85,97,94,123,95,105,97,106,103,92,112,104,98,109,104,108,96,103,81,90,101,96,94,88,99,98,105,93,110,102,106,100,94,92,98,98,112,95,95,103,87,111,95,117,101,85,101,110,108,96,96,97,95,94,108,114,73,100,65,99,107,104,111,98,97,88,91,111,91,104,77,96,101,115,96,99,112,104,95,103,92,93,96,89,96,113,81,100,103,103,98,89,95,87,91,106,107,95,91,103,106,89,98,96,88,103,101,96,105,93,94,95,102,99,99,101,106,91,94,91,109,98,97,116,107,102,95,91,98,104,89,109,95,109,93,103,91,97,90,101,96,98,97,106,85,95,92,98,92,93,102,94,98,82,102,101,104,95,94,71,81,101,124,103,98,108,102,103,98,73,99,105,82,103,103,98,104,103,96,93,91,79,90,108,87,121,93,104,103,95,87,126,100,103,102,105,109,100,90,90,97,102,100,100,101,90,95,97,102,87,100,108,95,98,92,99,92,95,91,116,90,119,103,106,101,107,112,103,75,97,95,101,92,94,103,94,103,101,91,99,98,91,115,102,99,106,99,101,102,103,120,108,83,104,103,94,113,97,101,109,87,101,90,111,100,97,100,91,95,119,82,101,93,96,107,97,104,97,99,97,112,112,93,103,100,97,106,100,97,99,81,79,99,86,91,99,96,89,96, +397.97821,112,98,91,103,99,98,92,86,108,113,101,99,80,110,90,97,104,94,91,92,92,91,92,103,101,104,99,90,106,89,100,95,91,105,115,95,105,101,105,102,98,93,88,112,100,101,88,95,96,96,93,91,100,95,81,98,88,96,111,82,101,94,98,91,88,112,94,94,100,102,96,96,92,91,96,102,112,103,102,86,95,91,94,95,95,98,97,94,102,90,98,103,109,96,98,93,107,101,95,104,98,95,94,96,102,102,96,96,90,107,92,100,96,99,95,105,109,92,104,99,87,96,92,105,115,96,111,103,103,102,95,104,76,101,98,89,84,94,102,113,102,103,92,105,94,102,123,101,94,77,87,105,103,88,101,95,90,93,109,97,107,98,110,102,107,81,91,99,97,95,88,111,98,99,100,94,91,96,102,104,102,106,101,105,109,120,108,80,95,86,93,107,108,97,87,107,103,107,96,99,100,104,92,97,92,100,97,101,99,108,100,94,103,103,96,91,98,100,94,95,97,102,104,117,104,97,114,107,87,104,102,104,100,112,92,99,85,106,95,93,103,110,108,112,100,115,108,100,100,93,104,85,95,100,102,97,98,92,95,108,103,98,90,99,91,123,111,114,101,99,83,124,106,95,100,114,96,99,91,101,101,95,95,97,101,105,96,96,99,93,101,98,104,103,99,99,105,101,115,84,98,107,107,110,97,94,97,99,99,106,93,110,94,98,96,111,95,96,94,90,100,91,108,104,92,104,91,90,108,97,101,100,93,96,106,104,112,99,108,104,108,87,107,100,96,104,107,91,106,101,102,100,103,101,115,104,90,110,104,100,106,106,95,102,128,96,106,108,88,106,116,102,112,110,98,109,99,105,100,81,109,112,95,111,95,92,123,117,86,93,111,100,89,99,94,94,94,104,102,110,104,103,92,92,106,83,99,80,118,90,87,96,105,96,99,102,90,93,106,93,101,93,92,91,102,89,103,96,100,107,98,115,108,91,104,105,93,103,108,117,100,95,104,106,86,98,101,104,102,97,97,103,92,107,95,95,106,109,103,96,93,87,95,97,101,108,92,98,106,107,106,84,95,86,89,92,81,109,108,108,89,103,94,97,98,91,105,99,96,98,105,102,106,89,93,87,106,101,117,86,92,107,94,99,101,104,94,97,105,117,109,112,103,101,99,109,120,96,112,101,87,104,106,96,105,98,95,95,88,89,100,94,94,102,96,103,95,94,98,96,98,92,94,103,104,99,109,108,100,113,110,104,91,97,96,99,98,98,87,88,110,109,99,114,90,110,99,102,99,94,102,92,102,102,100,98,97,91,120,95,100,105,105,93,97,102,102,109,88,110,109,94,104,100,107,102,98,103,114,97,98,112,103,96,101,102,95,105,97,99,101,100,92,104,97,103,95,93,104,102,78,82,86,102,106,102,97,100,103,93,96,102,101,100,89,99,95,74,105,100,105,89,87,96,94,88,108,94,104,117,91,101,84,98,108,102,100,83,111,102,108,86,96,100,92,96,96,99,101,105,95,99,99,94,87,100,99,115,91,108,94,86,99,80,99,105,98,95,94,100,101,101,58,106,101,89,90,97,106,116,101,110,102,91,109,111,99,97,94,103,96,90,98,83,92,102,93,102,100,105,105,102,99,98,91,96,118,101,94,112,98,104,110,104,99,100,103,94,114,95,89,99,101,102,97,94,106,95,93,111,98,100,99,92,105,104,82,93,91,100,100,107,95,93,96,104,89,105,95,86,106,93,100,99,92,100,103,98,95,94,105,98,101,90,95,103,113,102,93,106,90,100,95,103,96,98,103,100,102,97,101,89,99,99,101,103,106,107,99,96,102,94,100,104,101,93,94,100,103,94,106,102,95,112,119,93,101,99,105,97,113,94,105,101,91,102,107,102,105,111,96,97,100,98,105,100,102,94,92,84,104,100,86,98,92,88,94,114,96,102,95,107,93,105,86,98,97,97,103,98,99,90,103,87,89,100,99,95,103,93,107,105,103,103,93,95,80,101,97,96,89,96,94,95,96,93,99,83,103,88,113,103,112,107,106,98,90,88,99,102,91,106,92,99,99,104,100,95,91,91,110,92,99,96,111,97,93,95,99,101,95,92,113,101,99,84,104,91,95,100,106,97,96,103,97,97,96,92,102,113,106,100,101,98,95,91,96,100,77,103,99,100,106,97,114,99,92,90,110,100,93,103,105,93,97,108,101,99,97,100,94,87,101,105,95,93,96,103,102,87,105,106,102,106,103,102,92,98,94,101,117,107,97,93,113,114,94,101,96,93,93,87,100,97,90,102,97,94,102,99,99,83,93,95,104,105,99,107,104,99,112,83,111,98,110,89,100,89,107,98,92,87,94,102,91,98,98,86,78,90,79,95,102,107,91,94,89,97,98,99,71,109,94,85,90,100,94,102,95,97,82,117,94,116,91,105,92,101,97,97,98,91,98,98,116,91,96,101,100,101,97,107,91,84,107,97,94,91,102,107,91,107,93,96,91,100,85,101,92,103,87,105,98,94,111,92,106,96,106,112,107,95,106,90,101,96,95,113,101,95,89,108,105,95,105,98,82,96,95,103,122,88,91,88,96,91,96,106,109,90,103,89,112,97,91,92,102,101,92,101,93,101,108,93,116,100,100,109,98,104,110,102,106,91,100,95,96,92,101,96,106,107,105,102,95,98,98,89,99,95,98,94,89,102,91,109,91,91,97,100,101,100,108,101,104,103,95,112,105,110,102,87,101,102,95,103,97,103,93,94,98,108,101,95,101,98,98,109,109,105,102,94,83,103,97,98,112,90,99,106,97,99,116,101,100,98,98,100,62,100,94,99,113,94,99,93,92,97,96,113,97,105,101,92,113,95,100,100,112,103,107,96,103,119,96,95,102,110,102,100,94,91,102,95,100,103,113,93,98,95,102,87,84,98,104,89,105,94,98,100,105,110,121,89,90,98,100,99,115,91,96,99,99,84,109,93,112,102,99,113,106,90,98,101,92,96,106,102,108,102,100,96,107,113,87,101,96,94,99,98,100,94,121,102,105,111,107,88,100,101,96,103,107,103,90,99,103,96,103,105,86,111,94,108,112,108,98,94,113,93,113,93,107,107,95,78,90,102,100,99,95,93,107,104,98,97,99,85,100,97,81,100,88,95,73,100,106,94,103,92,100,103,107,97,99,101,110,96,102,96,113,108,99,93,91,100,95,94,101,95,100,106,111,97,108,96,92,94,111,105,99,99,106,99,109,101,95,91,101,110,98,80,92,90,103,95,105,93,98,103,105,122,112,103,98,119,104,106,105,97,107,92,92,106,94,89,93,101,96,94,96,105,97,108,100,84,111,96,73,99,96,105,99,101,95,109,98,108,99,87,104,111,113,91,98,117,88,96,97,108,92,98,104,99,91,106,99,102,112,109,75,89,89,97,109,94,100,105,109,96,91,86,101,115,105,99,91,84,90,83,91,105,113,88,105,102,98,93,103,111,106,108,102,99,105,105,98,109,107,98,111,96,98,94,94,121,101,93,73,98,96,109,95,93,99,98,81,105,94,106,113,123,89,105,104,102,105,101,96,104,98,100,104,83,101,101,87,99,95,95,128,105,110,93,97,105,100,95,109,91,108,97,96,97,102,95,117,95,101,99,101,108,93,103,97,99,102,96,91,106,108,89,85,123,97,102,91,113,100,107,86,106,100,104,87,106,109,101,101,86,99,103,109,108,105,99,96,100,109,105,102,61,95,98,102,98,94,98,99,108,133,97,101,121,106,106,105,88,107,96,87,98,102,98,90,101,91,96,117,91,93,105,106,111,97,101,95,102,96,108,83,114,95,93,106,113,94,101,90,109,105,96,117,84,116,118,98,115,102,99,96,98,103,96,108,108,104,107,92,93,97,83,99,102,99,93,97,93,102,100,100,98,102,98,104,91,99,111,97,106,96,116,97,106,89,96,109,95,106,87,102,96,100,100,109,92,78,96,98,93,108,87,104,85,103,92,104,105,100,98,108,100,108,112,108,107,112,90,100,91,107,96,94,105,110,91,97,91,97,101,102,132,93,116,109,102,104,93,107,81,98,94,100,103,110,100,95,105,120,83,111,105,95,102,98,97,108,99,99,108,100,113,96,101,99,94,104,102,82,105,100,67,93,90,102,97,97,92,98,102,103,85,96,103,96,104,96,97,109,106,111,105,95,116,100,101,95,98,104,99,105,107,97,107,83,94,121,92,92,84,82,101,103,126,92,107,84,99,106,103,80,83,101,100,99,106,106,95,85,108,93,108,94,104,97,97,94,104,96,107,102,107,105,115,100,107,100,98,96,102,96,102,106,91,92,99,106,100,102,86,93,103,109,115,95,101,95,92,87,103,95,101,89,94,109,104,116,114,95,100,95,114,103,94,102,95,93,100,106,104,106,103,99,85,105,91,85,95,104,98,92,117,96,98,109,101,94,109,103,97,95,97,88,104,124,103,87,96,106,94,104,107,100,105,109,101,101,100,89,102,93,98,87,95,106,106,101,108,104,92,107,90,85,89,84,93,90,90,94,101,105,109,110,87,90,101,94,87,98,99,110,106,98,105,105,94,114,92,94,98,125,102,91,108,106,115,102,94,103,95,98,109,98,85,99,93,100,91,107,103,90,97,96,109,104,114,108,106,106,99,90,118,100,111,101,100,113,98,97,91,101,93,108,116,100,89,95,103,90,98,93,108,94,107,100,96,104,102,101,97,91,91,100,83,91,99,96,97,96,97,93,103,116,109,112,102,95,102,101,100,113,93,92,96,97,105,81,105,97,112,108,108,102,95,112,87,96,88,97,105,91,109,90,101,87,87,104,95,113,88,95,101,111,102,114,99,100,100,104,88,108,88,102,104,106,92,95,101,95,88, +398.11832,104,62,114,95,113,103,103,94,95,94,103,101,98,103,103,87,93,80,105,87,100,92,85,100,95,87,100,116,101,112,98,88,103,101,93,102,98,101,88,98,97,90,90,84,102,116,71,112,82,103,106,97,91,83,95,106,96,92,104,101,102,106,87,92,89,103,90,106,98,97,116,60,95,101,104,112,97,99,98,95,96,100,105,92,100,88,107,92,98,97,104,93,102,105,103,99,93,104,94,93,97,91,106,97,93,99,97,97,82,92,103,97,99,91,105,91,108,102,94,101,89,91,100,98,103,107,104,101,98,94,91,103,103,93,105,99,105,98,99,95,103,101,97,95,96,99,105,90,98,103,114,85,97,91,87,99,86,101,93,82,96,99,93,108,103,96,96,96,95,99,73,92,96,95,98,88,117,102,97,110,101,102,97,108,112,103,104,96,104,92,84,102,98,108,101,104,113,113,92,115,115,95,95,97,99,103,94,116,107,92,87,99,103,106,58,97,93,106,93,110,103,104,105,89,85,110,98,107,114,97,94,100,101,94,113,100,106,105,91,104,100,109,112,104,103,101,93,115,102,99,99,94,100,96,100,95,87,103,97,63,75,73,99,86,99,99,97,95,102,97,96,96,106,100,103,87,101,108,101,98,101,95,99,99,106,104,102,93,92,102,99,99,99,107,101,99,112,105,89,105,84,111,94,108,94,100,98,109,95,90,96,99,94,103,88,102,106,94,104,92,102,96,88,95,101,91,100,92,66,104,93,92,108,97,113,103,87,94,93,84,102,105,97,93,105,106,93,96,102,103,102,104,106,101,93,109,105,94,95,103,108,114,101,95,94,97,97,99,96,105,98,95,89,101,101,95,110,107,102,108,99,76,99,98,94,96,95,86,94,102,107,88,91,98,99,104,100,97,108,97,91,109,104,86,105,98,109,99,97,91,97,94,103,101,95,92,93,101,107,97,103,90,96,90,110,100,101,96,88,102,101,105,92,103,110,103,98,97,102,106,72,85,90,95,89,105,88,97,96,108,96,109,113,107,94,97,97,104,112,109,105,100,112,102,89,98,97,88,94,101,93,98,94,97,98,95,102,98,96,63,98,100,103,90,91,103,103,97,98,102,108,107,110,97,95,101,96,103,104,87,110,99,101,101,98,101,97,101,105,96,96,105,78,99,95,90,95,90,97,96,118,93,95,112,92,84,112,100,94,100,94,91,98,94,88,106,97,99,105,102,81,99,104,105,84,92,95,101,102,101,110,110,87,110,97,89,93,90,90,103,96,101,88,100,96,98,110,107,100,100,91,91,94,99,102,88,92,94,93,97,101,78,95,103,101,94,116,93,95,93,100,104,100,96,110,95,87,105,104,104,94,102,100,94,59,104,87,101,97,104,104,105,117,92,102,110,91,110,100,100,99,93,100,88,102,99,101,107,100,95,98,97,107,98,88,105,103,99,92,84,98,92,101,109,100,101,102,91,93,101,97,109,93,98,82,98,100,108,115,88,94,109,104,101,104,99,95,93,97,105,118,97,89,88,91,107,104,95,109,105,103,118,96,95,95,95,96,99,88,111,98,96,92,99,102,97,96,103,107,104,88,98,92,104,102,103,109,101,86,104,97,94,99,87,89,101,103,100,87,100,114,105,96,99,99,87,98,79,96,101,102,101,92,102,101,101,105,92,91,104,85,76,103,100,107,76,97,104,96,102,107,91,105,99,100,105,101,96,97,92,101,80,98,88,100,99,94,119,100,87,109,104,90,89,96,93,110,89,110,91,104,104,104,103,93,110,91,103,88,103,97,93,106,94,76,100,89,100,95,97,96,101,91,94,99,99,116,91,100,95,92,98,105,108,100,98,102,102,101,94,91,102,90,106,104,94,98,99,105,97,97,99,101,109,92,103,101,96,104,106,99,95,94,91,90,104,94,89,99,98,96,108,107,110,95,103,94,98,100,111,101,92,102,123,102,103,69,109,109,107,105,92,91,101,96,91,99,91,81,94,93,105,85,103,102,94,104,96,110,99,104,101,100,95,110,109,99,105,96,98,105,109,109,109,96,88,106,102,95,78,104,109,108,106,103,97,91,101,98,99,102,98,105,102,109,104,115,110,89,100,99,107,102,90,93,85,93,104,106,91,112,95,97,109,92,102,101,102,98,86,106,89,112,94,100,107,102,104,92,102,101,100,106,93,101,98,97,98,86,94,105,109,91,77,99,101,96,85,98,97,102,100,104,124,107,102,89,101,99,97,95,118,104,92,96,102,99,96,105,102,104,112,90,99,106,110,100,107,84,118,98,94,108,104,115,104,104,96,88,102,96,103,97,89,97,102,86,101,105,88,101,98,105,101,95,103,89,98,77,86,85,103,94,101,99,92,90,95,94,92,95,118,101,107,72,106,106,92,113,94,94,99,98,103,94,89,87,101,94,84,103,96,103,104,103,101,93,103,91,94,83,84,90,100,105,99,100,96,87,104,102,95,95,96,92,100,92,94,90,115,106,98,96,84,103,92,94,91,107,106,111,77,91,102,101,96,97,100,67,99,138,102,96,78,93,100,99,107,82,97,109,110,89,102,100,91,85,95,93,100,91,101,98,98,97,90,104,110,99,98,98,106,99,97,97,105,107,92,115,114,95,87,107,94,104,92,98,98,98,109,97,100,105,103,96,98,93,101,105,105,103,105,97,107,103,98,94,95,115,90,107,105,107,112,93,105,96,109,112,110,99,97,115,98,95,103,109,107,91,108,103,90,101,106,111,103,102,120,78,91,102,95,100,95,99,99,95,79,92,94,100,102,96,113,102,88,93,97,100,103,81,113,93,97,96,102,101,112,103,97,102,99,89,116,96,95,98,112,98,112,102,98,111,101,103,105,101,89,112,100,96,89,96,105,96,109,91,115,98,103,91,90,95,107,92,97,109,99,99,113,100,97,100,102,96,98,102,95,107,112,106,108,100,113,96,97,110,100,103,93,104,107,105,98,98,108,100,91,94,98,106,109,96,96,110,103,112,102,96,93,103,85,96,114,101,102,97,96,109,106,108,102,106,91,106,101,134,91,106,97,102,103,87,101,98,101,95,95,83,87,103,99,107,86,96,97,102,100,102,87,92,96,97,96,102,98,101,103,107,99,98,98,108,92,87,103,95,105,86,95,110,91,109,103,99,112,98,95,130,101,102,107,107,114,107,100,102,105,107,102,99,95,90,105,101,93,101,79,97,96,99,111,102,104,99,108,96,102,100,95,110,109,102,113,105,91,99,107,94,99,106,98,101,92,98,92,98,113,101,105,98,91,102,102,90,112,110,109,96,94,104,108,105,100,90,105,98,89,91,92,98,100,93,92,91,97,108,95,106,109,86,96,95,94,99,105,96,103,110,108,97,103,101,91,96,113,105,79,97,93,96,99,99,91,105,114,103,96,112,94,100,100,95,101,98,104,107,101,83,94,106,93,87,102,85,101,107,100,106,75,86,106,99,90,81,106,83,99,95,100,71,99,106,104,105,106,103,101,102,85,119,102,114,100,97,91,113,74,91,95,110,109,100,99,113,92,95,91,102,112,103,96,95,98,102,98,102,87,100,92,93,93,116,88,101,100,104,93,105,97,108,106,106,104,88,100,102,96,92,108,95,106,106,104,106,92,104,96,100,109,87,101,97,105,98,92,102,104,100,84,90,105,99,123,112,100,101,104,100,98,93,105,99,108,98,103,97,110,93,94,102,90,119,105,97,103,108,93,108,106,102,95,94,83,102,102,100,79,104,94,101,81,94,103,92,115,112,102,107,109,98,104,121,81,103,104,102,84,98,105,110,85,98,104,93,103,109,90,103,79,97,113,105,89,89,106,111,90,97,102,100,99,105,99,106,101,92,101,104,95,93,97,99,109,112,84,95,97,105,95,112,100,102,109,95,89,103,102,95,103,102,101,97,104,95,83,98,113,101,97,106,101,99,102,110,95,95,84,101,91,93,100,112,107,102,113,104,99,94,106,104,103,92,93,92,100,104,99,99,98,98,113,99,101,106,92,104,100,107,102,100,103,94,94,113,109,93,103,110,113,102,98,103,97,96,91,79,107,117,102,99,96,95,98,105,110,94,98,108,105,104,102,90,93,93,97,92,105,86,101,105,91,65,102,94,94,102,109,101,106,106,104,99,94,99,114,104,102,94,73,98,108,98,90,100,108,93,109,106,109,114,106,100,97,110,102,94,89,104,98,100,93,112,105,100,99,97,98,70,82,87,96,96,98,97,96,109,100,90,102,101,86,101,96,111,99,109,64,88,108,89,101,113,98,97,99,96,107,101,99,102,96,104,114,95,98,99,102,96,92,116,98,96,105,101,111,91,95,97,112,99,116,112,102,102,93,109,103,102,98,99,102,110,94,93,102,113,109,98,91,104,94,94,107,113,101,90,110,109,102,109,109,100,101,96,103,84,95,95,96,97,85,95,97,103,100,113,87,104,97,105,114,87,103,97,92,99,91,107,95,103,101,99,108,118,97,93,106,101,96,92,94,94,102,106,103,104,110,101,108,97,108,99,89,100,101,87,92,100,89,84,105,98,95,105,117,107,105,87,116,102,94,98,108,96,106,102,96,107,107,88,102,94,99,93,93,99,105,95,97,109,106,103,101,92,92,87,102,99,101,96,94,109,99,105,105,101,108,106,94,100,98,97,102,104,103,105,99,87,100,112,89,86,100,96,102,111,92,96,92,94,97,101,112,87,91,108,110,105,116,96,112,86,117,95,98,103,123,98,95,90,105,82,116,104,92,96,104,98,101,101,66,105,99,93,106,76,97,89,107,93,87,104,106,103,93,90,99,91,83,95,105,97,101,93,103,90,96,105,98,81,95,91,91,109,102,85,98,82,98,96,99,87,82,94,101,92,95,95,98, +398.25842,104,99,88,101,96,105,98,102,118,101,96,92,101,97,89,112,106,102,96,90,103,108,98,100,99,98,92,102,114,108,83,100,104,99,100,127,89,91,105,103,83,92,102,97,95,92,90,100,107,102,100,104,102,97,103,110,101,89,108,83,101,90,103,96,113,98,94,86,101,87,105,82,98,108,97,102,102,93,114,85,95,96,87,92,96,94,112,98,94,99,106,104,104,98,89,92,101,97,108,102,103,108,90,94,95,95,82,106,101,104,86,94,102,96,108,92,100,95,103,96,108,86,109,105,116,106,108,85,103,95,93,86,94,104,99,100,94,110,109,105,95,97,94,108,90,101,92,108,102,100,88,100,96,90,96,93,98,95,96,97,96,101,97,102,96,121,96,95,96,93,70,97,98,100,101,102,100,95,105,99,91,110,104,96,89,98,111,106,95,94,104,116,117,96,104,95,104,104,99,96,102,102,93,100,102,102,100,99,92,109,90,107,104,100,95,81,95,91,94,103,111,99,102,99,94,109,102,108,88,98,94,99,86,111,90,100,103,110,101,100,108,103,95,103,90,100,98,98,97,112,98,108,136,101,98,92,100,106,84,94,101,101,89,99,93,97,89,91,96,100,111,100,82,100,98,79,102,99,96,93,100,101,96,103,105,100,95,94,108,101,89,99,98,97,113,97,101,107,101,107,90,92,92,98,73,98,97,109,80,106,88,99,94,91,111,100,103,91,106,102,97,103,95,114,101,91,95,82,91,100,103,95,101,98,110,102,99,87,90,103,122,95,108,113,82,95,103,103,98,91,98,91,96,116,100,102,99,106,110,106,94,94,93,85,103,110,87,110,97,103,105,98,94,110,93,103,91,103,95,96,107,97,88,75,92,95,92,92,102,95,103,97,107,99,101,102,102,90,71,103,106,101,101,103,101,89,88,102,97,95,100,101,135,98,117,98,83,84,105,87,95,93,97,104,102,104,109,87,97,96,89,96,97,105,109,112,96,96,97,101,99,88,101,113,95,83,101,98,97,108,100,101,106,100,103,113,97,105,95,102,96,112,92,104,103,105,98,102,90,109,97,103,84,101,104,93,84,89,95,106,81,84,91,113,75,100,100,77,101,102,108,102,122,96,80,108,110,99,109,119,101,101,91,101,101,94,91,99,108,92,101,102,100,84,105,97,94,101,101,96,112,99,106,103,96,98,95,103,125,100,103,99,82,94,91,104,124,113,99,110,87,102,102,105,90,95,99,98,97,116,106,97,104,95,94,97,103,94,97,90,114,101,91,98,106,102,96,107,100,98,97,106,82,93,111,98,105,100,90,104,102,89,93,100,95,106,94,103,106,101,104,102,99,97,100,111,89,104,107,96,106,99,87,97,75,99,107,100,96,103,96,102,98,99,103,95,107,101,103,98,107,99,102,106,94,105,75,91,95,111,97,95,103,103,105,89,101,97,101,99,88,97,103,114,94,94,99,97,98,95,112,96,114,98,87,98,103,97,92,74,105,98,101,94,91,94,98,105,104,96,103,101,108,87,81,102,88,104,108,90,107,98,100,86,88,100,106,117,102,102,101,108,101,101,97,91,94,109,101,93,92,86,66,96,93,105,97,95,98,95,106,86,87,92,78,101,107,94,98,101,104,97,87,113,93,101,106,108,110,106,94,94,78,115,104,102,95,94,105,91,120,87,99,106,99,98,99,104,93,104,99,94,93,91,108,94,103,104,104,105,103,108,104,99,99,90,100,101,99,103,103,104,95,97,89,102,96,93,95,99,105,110,107,93,101,100,92,91,96,102,99,105,88,103,103,90,100,107,93,99,101,100,107,107,108,97,102,101,107,98,98,90,98,113,96,101,94,101,113,86,99,109,99,71,101,115,96,93,104,84,100,101,97,108,100,95,85,106,109,101,101,108,97,102,88,102,98,101,118,97,87,101,99,90,110,98,110,94,89,103,93,104,104,104,114,95,103,100,115,97,101,98,117,105,87,106,104,100,97,117,100,83,97,92,92,123,97,101,92,98,92,102,98,109,99,92,100,104,100,105,92,101,107,95,106,98,98,107,100,90,107,95,107,100,93,90,98,92,99,87,90,99,111,99,100,100,91,103,97,100,104,106,108,101,92,98,74,96,96,83,87,103,110,92,116,96,118,99,90,101,106,98,89,98,99,92,91,105,89,99,88,105,86,103,105,99,98,106,98,110,100,92,88,103,104,94,92,92,108,110,90,100,101,101,101,89,90,96,81,93,100,110,102,94,100,99,86,106,89,97,101,97,100,99,97,102,102,92,89,104,100,92,126,99,94,94,92,94,86,95,92,88,108,105,91,105,111,105,106,84,102,99,112,99,101,96,98,105,101,98,102,112,94,97,88,98,90,87,90,102,103,104,79,77,104,90,81,88,99,104,100,100,90,104,98,98,83,99,100,100,101,107,87,115,101,95,95,104,88,93,93,88,97,102,103,102,101,92,117,100,99,101,94,101,96,96,90,73,103,97,107,104,91,102,92,102,95,100,102,105,87,101,101,71,94,98,91,86,91,89,96,112,95,105,120,91,103,93,78,103,103,106,101,99,93,97,101,101,91,100,93,102,88,97,105,96,105,106,116,94,101,96,103,99,110,102,87,92,102,92,103,85,95,91,107,102,95,94,95,99,100,102,102,101,91,95,110,93,93,93,83,104,96,95,97,102,94,103,85,100,117,91,102,106,100,109,95,76,104,102,96,102,87,104,99,103,104,102,108,110,109,103,100,103,108,107,103,104,99,82,109,102,101,96,88,122,99,110,101,103,102,98,98,103,96,97,99,105,104,107,103,93,99,91,115,94,101,102,103,121,86,97,108,112,100,96,86,93,102,102,99,97,97,95,96,101,94,98,92,96,100,106,81,102,109,96,105,99,98,98,104,96,98,107,95,100,109,99,103,100,94,106,97,93,97,91,105,95,98,109,100,106,83,83,102,103,94,103,98,91,102,107,89,97,90,102,100,99,97,102,75,98,117,109,120,102,110,94,98,96,99,94,104,109,105,97,114,87,95,117,102,97,106,95,93,101,97,94,99,103,94,96,98,105,101,104,105,94,101,104,98,101,109,107,95,89,98,105,106,107,94,83,105,96,99,93,96,101,98,97,91,96,90,98,105,103,100,102,94,104,102,94,85,92,98,101,92,105,106,98,95,100,93,96,89,104,96,102,107,101,89,102,96,107,96,98,87,102,96,103,98,88,101,85,102,94,105,105,112,104,97,92,99,108,109,85,88,104,97,102,90,96,98,101,93,93,104,95,74,101,100,94,99,97,102,109,110,103,100,65,96,105,98,98,98,98,100,97,105,101,105,131,88,95,94,101,109,102,113,103,105,120,100,104,111,97,108,94,104,98,105,108,89,106,117,102,101,101,72,84,90,103,99,86,96,101,93,98,92,90,99,95,99,96,93,93,71,101,111,109,95,100,97,98,104,88,107,96,101,83,104,101,99,92,116,114,106,100,105,93,92,98,94,99,112,96,94,120,90,91,108,97,98,102,120,97,96,96,102,109,105,94,107,88,88,102,95,112,94,99,119,109,103,88,96,102,105,91,109,84,99,102,103,104,97,81,102,97,96,107,100,99,94,99,96,97,102,111,112,91,99,96,94,108,102,104,110,115,104,96,100,75,108,101,100,89,87,101,108,98,98,99,84,106,93,110,106,98,103,93,96,94,98,113,94,91,108,107,104,93,96,93,94,84,82,120,97,79,100,93,105,97,99,106,94,106,94,94,88,102,99,88,105,97,105,84,93,93,96,87,85,97,99,106,109,101,103,106,108,92,103,102,102,96,92,96,104,80,86,106,95,103,99,100,99,102,94,105,101,96,112,105,94,106,99,103,133,106,98,128,105,95,105,102,95,88,106,89,110,96,92,96,107,106,100,96,107,87,95,107,100,98,113,95,94,99,93,93,89,99,118,103,93,98,103,113,85,96,86,99,106,103,90,95,96,97,101,94,108,103,107,111,107,96,108,93,87,103,82,98,99,95,103,98,100,93,106,104,98,98,100,105,105,92,100,107,100,84,96,92,99,97,103,99,89,102,95,106,101,101,103,109,102,97,99,121,93,113,92,103,101,100,103,109,103,96,103,105,108,98,95,89,98,103,111,94,102,107,105,100,109,92,85,89,87,99,97,102,109,98,97,95,95,99,109,109,106,95,128,102,97,93,111,103,101,89,104,83,102,95,108,97,104,93,94,90,97,109,94,96,89,92,112,97,75,119,104,99,94,108,101,96,111,113,101,100,95,95,98,121,99,99,110,110,89,96,90,98,89,100,102,93,96,97,101,85,98,98,95,98,106,94,102,104,101,93,83,98,98,105,96,100,104,98,95,89,96,85,102,104,103,92,92,102,94,105,79,100,92,97,87,108,97,101,94,106,106,113,121,99,105,97,85,88,100,92,90,95,99,110,114,108,110,106,94,93,102,105,101,97,103,88,108,110,112,96,104,102,95,100,106,105,88,108,101,104,96,102,103,98,91,106,102,80,102,103,92,91,94,101,106,98,94,104,94,80,87,93,93,92,105,101,102,96,94,88,97,94,98,96,106,102,106,111,111,93,96,104,101,109,102,106,95,102,107,109,97,106,109,92,121,108,105,95,92,91,101,95,100,97,97,100,90,101,95,92,91,91,113,95,98,107,98,109,96,114,90,95,91,91,95,92,94,99,102,73,100,86,98,106,103,94,93,105,121,105,107,87,97,103,65,88,98,106,114,104,90,112,97,104,91,92,91,100,100,84,104,95,104,106,101,103,106,98,104,77,95,100,92,106,103,106,99,91,103,91,108,97,92,96,98,97,100,104,87,104,95,92,93,89,95,89,101,98,92,96,84,99,57,89,103,106,91,98,105,86,108,97,97,91, +398.39856,100,95,120,91,87,89,78,99,92,107,100,101,104,102,102,92,105,107,96,102,94,105,82,104,97,92,97,101,91,102,99,106,91,91,100,95,98,107,102,108,95,93,94,100,89,83,101,93,100,106,96,99,67,104,101,101,94,98,80,109,98,75,100,99,87,89,106,99,114,81,104,100,99,107,92,103,94,91,109,109,98,95,113,106,97,93,96,91,88,91,105,96,98,90,99,108,96,88,104,101,88,100,90,97,98,102,96,101,96,111,103,103,93,107,98,97,86,101,101,92,92,106,99,112,93,104,105,96,93,107,101,103,96,98,98,99,97,104,93,94,107,98,113,105,96,101,81,105,93,107,103,97,94,98,94,96,96,87,101,96,99,106,98,106,101,97,104,94,110,100,91,112,90,77,101,96,124,99,87,95,98,112,99,113,102,103,84,94,92,98,105,86,98,102,100,99,101,116,103,99,97,88,99,92,112,103,100,89,100,105,116,97,101,95,101,103,96,103,92,95,96,113,95,106,105,112,99,98,95,101,86,103,83,97,109,100,104,96,89,98,106,105,95,98,95,95,99,89,91,88,89,112,93,107,103,95,100,105,83,106,94,90,85,106,101,100,100,100,96,91,103,96,103,87,94,89,88,97,93,102,84,105,95,111,91,102,105,102,94,111,94,99,105,113,100,103,103,102,95,106,108,98,99,94,93,104,102,100,102,106,101,98,86,99,98,101,101,99,96,100,96,94,98,100,102,91,96,90,96,107,88,100,95,104,96,99,105,88,94,97,102,97,104,106,97,101,109,99,118,99,86,99,93,101,90,111,80,105,96,102,105,92,97,83,104,97,104,107,95,104,100,96,101,102,93,94,100,100,110,87,96,95,110,104,102,97,95,92,110,98,101,85,98,116,97,92,96,97,99,106,95,100,90,105,99,98,99,102,90,96,89,103,85,103,99,85,83,79,100,91,104,103,117,104,98,97,111,81,87,108,99,106,100,95,103,96,94,99,107,95,100,103,88,102,99,102,102,87,91,102,83,107,105,102,96,93,95,108,99,100,93,96,109,101,97,96,98,103,96,109,79,91,102,95,109,94,102,87,100,91,95,102,99,101,103,101,106,104,86,97,93,90,95,95,95,97,100,91,95,96,113,100,105,97,104,101,90,112,109,109,106,96,94,105,88,79,105,95,86,83,110,94,94,106,100,95,103,104,101,106,97,102,87,101,69,65,90,97,99,111,98,103,97,92,102,89,103,100,90,100,90,98,103,106,97,107,104,100,98,98,97,94,79,102,105,105,107,96,95,100,98,97,101,105,108,100,101,100,96,104,106,94,94,84,99,96,102,103,97,94,101,103,95,99,100,96,100,104,99,100,100,102,101,105,101,97,98,94,103,95,100,94,105,101,109,108,102,93,100,110,113,103,96,99,99,97,87,94,104,111,115,117,94,98,94,97,99,94,97,95,104,107,110,99,95,75,97,95,101,96,88,99,92,108,102,95,110,91,102,107,93,104,100,100,85,96,90,96,109,98,69,105,110,109,97,107,89,99,113,91,108,102,103,91,99,110,123,100,100,103,95,95,110,105,109,99,108,98,94,93,87,96,94,99,107,96,96,106,92,111,100,99,91,93,92,95,106,110,102,91,101,92,107,112,104,95,97,95,104,102,94,96,95,99,94,96,97,101,93,94,73,95,95,105,99,101,103,110,99,100,100,89,98,102,112,101,104,97,108,104,82,106,97,109,94,95,102,95,100,95,111,93,113,107,98,105,92,91,107,106,115,108,94,95,108,92,97,103,84,102,95,104,100,97,87,97,101,99,96,95,106,99,90,92,87,100,96,85,94,100,101,107,92,98,99,102,103,102,88,95,91,95,83,95,108,95,100,82,104,99,91,93,98,99,108,97,98,95,98,98,94,84,117,96,96,110,89,105,87,87,100,95,96,107,99,98,89,94,94,100,94,104,102,90,107,100,91,105,102,101,104,106,89,116,85,100,87,101,98,108,105,104,87,110,100,100,88,104,101,103,96,106,104,104,100,109,106,105,98,95,100,109,106,109,104,104,100,103,86,100,100,115,103,101,99,102,101,95,95,106,87,103,105,95,90,103,88,104,108,95,92,105,86,97,97,95,96,94,97,86,97,104,84,106,90,93,96,105,103,97,103,91,108,113,88,97,94,92,124,88,100,96,102,114,103,103,98,100,106,99,93,106,107,87,97,106,103,96,93,92,99,99,87,92,97,94,102,90,99,108,89,99,102,96,118,94,86,114,97,96,105,102,103,97,99,95,121,95,85,99,94,108,105,77,96,100,97,95,92,91,110,99,98,101,102,94,94,85,100,102,102,113,104,102,117,96,102,96,100,78,89,98,97,101,90,94,93,87,78,90,126,91,104,97,89,97,96,90,90,106,100,90,96,106,103,88,98,95,102,87,91,106,94,102,102,101,105,93,104,101,90,98,88,106,96,98,105,84,105,100,113,103,97,101,100,92,76,101,114,105,93,93,99,88,91,101,102,97,109,103,94,108,101,96,120,74,120,96,104,99,93,99,85,100,104,137,87,103,94,110,92,113,79,93,105,105,98,109,109,117,93,99,98,92,102,100,102,96,106,103,91,86,97,105,98,94,111,106,101,101,109,94,100,87,95,106,94,103,124,91,108,104,107,110,97,58,75,99,105,105,110,112,97,110,110,104,99,109,105,99,92,106,122,113,100,105,109,87,102,107,111,105,100,104,140,91,102,92,107,100,90,98,107,100,91,91,110,103,94,94,105,101,114,98,107,112,88,94,92,90,97,96,106,105,101,104,110,95,97,101,94,105,98,100,100,91,96,103,109,88,98,101,91,103,104,104,93,99,91,96,108,103,98,105,93,88,101,101,99,97,94,92,83,105,89,93,97,86,102,100,99,97,109,101,98,87,96,109,104,97,112,102,100,112,105,101,105,95,95,109,82,104,89,95,96,98,108,98,109,106,91,87,83,95,95,95,108,110,102,98,109,113,99,101,110,107,116,112,97,94,93,92,96,109,106,102,97,103,99,104,103,92,100,99,110,104,99,102,107,92,100,111,97,100,89,89,112,99,95,92,99,107,97,92,90,90,101,97,94,97,97,92,106,104,94,112,100,101,105,109,91,90,106,98,104,96,99,100,104,104,98,94,100,109,115,102,105,113,116,89,94,102,98,98,94,105,105,95,101,101,100,101,116,101,100,95,96,100,94,101,97,88,113,100,100,88,113,98,100,105,86,102,95,113,103,88,93,86,101,91,102,99,101,104,98,97,109,91,102,86,99,99,112,93,110,102,108,107,103,102,105,106,108,96,100,120,91,88,93,102,93,99,98,75,99,99,108,132,92,99,104,99,108,108,91,96,92,111,108,95,107,92,96,100,103,100,98,102,97,107,97,104,102,91,95,105,100,97,94,104,99,94,101,93,106,113,100,100,114,97,94,109,91,96,106,92,84,103,95,96,103,85,87,96,100,101,98,98,115,101,103,110,101,103,102,85,96,116,95,94,113,92,116,98,83,112,102,102,99,98,89,109,103,110,102,85,101,99,107,95,111,100,94,108,97,109,105,92,114,109,105,94,96,104,94,97,95,74,102,111,106,110,94,109,108,101,87,98,101,109,104,102,108,102,107,67,105,109,104,105,105,99,104,93,99,102,91,88,92,97,101,105,92,94,95,113,99,108,119,102,109,115,92,113,103,107,117,106,100,67,98,101,94,99,103,94,103,116,93,92,111,117,87,81,98,108,91,104,108,108,94,108,109,110,95,109,101,100,109,109,94,100,103,97,98,101,108,93,91,98,111,94,113,96,104,105,97,91,91,115,106,106,98,99,88,99,105,94,105,97,103,107,98,111,89,99,100,94,103,97,96,92,105,91,100,107,92,100,112,101,98,93,85,93,106,100,103,98,106,98,102,92,109,90,94,112,98,91,97,97,95,104,89,104,99,107,95,91,106,96,95,103,99,71,100,98,96,104,107,102,105,104,94,113,94,94,92,105,88,104,102,98,100,99,110,106,103,95,134,97,108,112,94,101,114,106,113,104,107,104,96,94,104,94,106,117,109,102,109,102,113,100,109,105,103,95,97,103,105,101,111,92,100,113,112,109,108,94,110,119,109,98,90,101,103,100,130,106,109,112,108,102,109,98,100,95,99,99,93,101,117,102,109,101,111,100,101,98,102,95,117,99,94,95,104,118,89,105,107,104,98,97,74,97,91,120,102,98,95,97,99,106,110,109,101,98,94,91,102,103,103,116,104,89,99,95,104,98,108,103,95,107,107,97,104,99,115,98,98,106,99,112,104,105,118,101,105,100,101,97,94,99,101,100,97,96,92,93,108,109,101,99,106,103,110,98,98,108,108,98,100,103,95,99,105,103,104,94,117,100,95,88,107,99,95,85,92,101,105,99,92,94,100,89,114,93,89,97,91,101,102,108,100,105,101,90,106,111,131,97,87,101,93,108,102,100,101,104,102,94,109,98,83,107,103,108,95,107,101,88,92,93,101,100,108,96,104,100,107,96,101,114,98,100,100,91,99,101,107,101,95,114,109,94,96,104,108,95,94,98,92,94,117,117,99,105,102,101,102,91,99,100,92,106,109,107,99,102,100,95,104,100,103,105,108,110,91,82,101,98,99,102,103,91,99,118,100,103,100,103,101,87,91,112,109,101,112,100,91,104,95,115,94,113,98,105,80,101,103,97,91,115,100,105,101,98,82,94,102,98,87,103,98,104,88,101,110,99,98,84,98,110,98,97,101,97,98,97,93,103,95,113,105,108,86,99,90,127,91,86,105,101,106,99,91,105,97,95,89,100,98,106,87,106,85,107,117,100,109,87,94,102,97,97,119,108,94,120,92,88,91,86,105,101,107,105,95,95,107,89, +398.53867,84,83,109,89,84,99,118,98,88,98,93,94,92,91,99,94,90,113,98,91,113,89,101,100,97,103,103,110,90,97,89,94,96,103,99,107,96,105,82,92,100,113,96,109,92,89,104,87,90,92,92,94,106,87,104,84,99,95,104,97,113,72,99,89,101,102,103,101,103,100,97,106,101,117,88,99,78,100,83,96,107,102,101,96,86,94,106,100,92,100,81,90,100,93,102,102,90,96,105,90,99,95,107,101,85,101,104,94,103,108,104,101,109,99,104,98,93,99,94,108,102,110,94,103,98,103,90,68,92,99,91,100,118,98,104,105,98,106,92,111,106,89,102,91,97,90,107,108,100,91,104,98,105,87,86,98,97,96,100,106,108,108,99,106,99,87,93,106,107,102,104,105,96,107,87,106,90,87,116,98,101,92,103,90,114,92,87,85,105,87,97,99,104,106,103,103,100,99,99,101,100,98,98,100,105,101,112,94,103,95,91,96,117,106,105,92,86,92,102,106,110,107,105,95,88,103,68,88,106,102,108,102,101,102,104,96,102,94,89,101,95,101,104,101,109,101,110,95,106,80,90,104,112,109,99,105,109,98,101,91,101,112,104,95,91,92,96,102,98,102,103,87,98,93,105,92,96,100,92,92,93,105,104,103,99,93,79,100,94,93,90,94,109,109,104,113,105,104,99,94,67,59,94,109,85,97,101,94,97,102,87,100,94,96,105,105,101,103,87,100,85,83,102,78,121,103,104,87,108,101,100,99,108,113,106,87,96,84,103,94,93,90,95,94,99,104,86,107,107,100,92,110,93,94,109,98,75,97,92,104,103,99,85,97,91,100,91,117,106,95,93,102,97,100,102,99,100,98,100,97,104,91,94,110,99,89,89,95,99,97,102,103,87,100,91,88,104,102,113,101,102,115,92,92,104,103,99,102,107,103,93,96,88,97,132,90,94,101,97,98,100,95,93,112,85,83,87,93,96,76,97,96,88,98,105,92,97,98,96,94,108,97,108,63,102,101,101,96,106,96,98,83,102,102,94,107,93,103,101,92,99,97,110,113,107,94,104,99,96,104,89,102,98,105,115,102,101,107,92,97,104,112,119,86,105,113,107,106,92,95,95,92,101,95,92,90,95,110,95,84,106,103,96,98,100,110,89,101,104,86,90,109,94,114,102,109,102,92,104,107,100,94,92,101,100,102,104,110,99,98,103,97,97,103,101,93,101,99,98,104,97,101,103,99,92,104,103,87,87,100,105,99,95,106,89,94,94,96,102,104,95,99,106,99,101,97,101,90,97,105,98,95,101,100,95,98,108,97,97,100,99,109,102,102,89,91,106,98,96,87,99,106,96,100,104,102,97,87,99,111,91,110,98,87,108,87,101,104,96,109,95,87,97,104,94,92,98,98,100,96,97,100,112,95,103,108,97,103,77,96,95,96,97,89,105,93,105,96,104,105,92,103,105,82,95,81,104,96,95,85,95,98,105,94,106,97,109,100,94,106,100,94,85,102,102,94,104,91,98,100,103,99,109,100,94,96,97,96,96,102,107,90,113,92,101,99,100,91,85,101,106,113,94,121,96,101,99,103,83,88,87,91,90,91,97,102,100,94,95,106,103,111,116,93,95,94,95,72,98,98,86,94,105,100,91,97,103,107,100,106,124,100,93,96,91,97,90,92,98,95,95,85,115,96,122,96,94,104,97,101,94,97,101,98,91,84,75,93,111,92,95,99,90,109,105,97,86,109,96,87,108,101,115,100,104,99,88,86,110,102,102,95,93,103,91,117,82,109,98,100,88,113,88,109,103,105,107,107,97,106,98,96,101,102,105,82,109,98,98,95,106,96,88,99,103,122,105,111,103,92,80,109,106,99,97,99,95,98,97,80,92,93,95,111,105,113,97,112,101,98,108,100,105,86,98,92,105,100,107,122,107,96,95,97,83,100,111,98,115,99,101,105,101,99,92,95,100,100,101,103,99,100,98,88,88,98,99,112,96,92,94,102,115,93,91,92,100,83,90,98,104,87,82,91,102,81,93,108,107,101,100,105,94,107,111,104,104,98,86,89,101,107,100,97,97,101,99,103,115,102,89,106,106,103,94,100,92,96,95,104,99,112,102,81,90,106,106,106,90,106,103,97,99,106,100,75,99,100,97,98,112,107,91,98,125,92,102,93,91,101,99,93,100,99,91,98,99,102,86,102,89,97,110,101,108,105,107,99,100,99,91,101,97,86,93,101,95,94,101,79,98,92,102,100,92,98,87,112,102,99,117,102,99,107,107,100,95,93,101,103,87,97,93,94,103,97,93,102,77,83,103,108,91,105,98,106,92,107,97,102,101,100,111,94,102,90,93,111,98,100,101,106,98,100,96,99,133,108,110,94,109,97,86,102,82,102,103,97,108,96,105,102,109,84,100,92,93,104,104,88,99,100,96,93,97,101,103,97,97,97,101,92,100,105,95,108,95,111,116,112,80,103,109,79,89,94,91,87,103,111,112,89,96,93,101,108,93,105,90,113,91,106,93,108,103,98,91,93,103,93,99,102,108,104,106,105,112,104,99,96,99,101,102,100,91,108,108,101,97,85,100,107,106,104,92,97,119,91,107,92,103,106,99,99,112,98,83,99,89,110,91,95,96,81,105,91,101,95,114,103,92,99,103,100,100,93,95,96,98,101,108,99,100,96,105,86,105,88,100,92,88,102,92,96,98,95,107,84,104,92,100,94,102,103,99,109,93,101,92,97,106,103,105,103,108,92,90,108,106,102,104,102,88,101,99,95,96,95,97,108,97,103,106,91,85,110,94,88,98,105,105,86,94,96,88,99,93,103,97,106,108,93,97,102,101,101,101,105,93,105,101,96,98,95,112,94,106,106,95,95,93,95,106,104,109,96,95,88,99,107,102,91,114,114,98,97,87,92,91,104,107,106,101,134,93,108,109,101,101,93,103,93,101,111,101,101,101,99,104,96,100,101,100,93,108,113,100,100,97,105,110,90,105,104,102,96,106,93,82,91,91,94,108,100,102,112,79,109,96,99,99,99,93,103,100,110,105,108,110,93,105,96,99,99,111,87,91,92,88,96,103,102,95,106,99,83,79,94,105,102,100,99,108,92,105,106,105,97,99,97,106,96,92,99,92,90,102,99,87,93,97,96,84,101,95,93,100,103,103,99,108,91,63,109,98,97,95,98,100,99,96,98,101,97,96,98,106,104,95,95,112,78,99,108,112,117,80,108,102,97,100,105,91,96,97,83,106,104,99,109,102,98,94,99,106,110,97,100,81,104,108,95,100,93,108,103,106,103,106,82,100,97,109,91,89,101,105,95,105,96,104,102,115,103,101,100,95,91,113,107,83,97,106,106,102,108,106,97,105,88,98,104,100,103,101,100,93,104,93,93,98,110,119,103,111,99,114,98,96,91,86,105,94,95,98,101,104,101,103,89,95,115,106,60,90,88,99,109,101,101,98,96,109,101,88,98,114,107,94,95,92,99,82,98,99,102,94,94,103,101,96,101,102,102,112,89,92,99,100,95,100,88,98,103,106,99,102,100,105,96,93,101,103,99,83,73,87,97,96,92,98,98,109,103,107,102,110,98,94,106,97,92,112,88,96,93,96,99,95,94,101,95,105,102,106,97,95,99,95,91,100,90,101,105,104,90,87,104,96,98,91,90,97,96,69,90,102,108,104,100,132,106,91,104,103,100,96,103,99,102,96,95,93,106,107,104,101,95,99,94,92,100,106,99,83,111,102,97,94,93,98,86,101,98,92,95,88,97,101,100,98,107,101,85,98,119,92,92,98,104,76,101,98,90,101,93,91,103,100,106,97,96,106,101,94,98,112,95,96,103,103,100,84,95,100,102,99,83,114,90,105,106,102,123,93,100,91,103,101,97,101,99,105,99,77,103,89,100,93,74,112,102,97,87,102,110,101,97,110,103,92,108,104,105,96,92,106,100,92,99,96,100,96,110,99,106,100,104,100,101,91,92,98,98,103,94,91,95,95,106,109,100,112,86,101,98,98,92,93,101,102,92,92,110,102,107,92,95,99,95,89,108,107,110,109,94,101,100,105,111,96,104,109,114,102,105,103,109,92,103,108,99,108,95,88,116,118,101,109,93,77,90,91,98,92,99,95,102,95,107,102,98,96,94,107,100,96,80,99,99,115,94,99,102,96,103,95,100,113,100,100,90,104,99,113,109,95,96,107,108,96,93,98,101,96,94,103,118,99,104,94,101,102,94,87,98,108,100,103,101,94,97,105,98,101,88,98,86,97,129,99,104,98,97,101,107,93,106,90,116,94,102,120,93,101,103,102,98,101,109,102,106,99,110,110,97,101,100,106,91,99,105,112,107,99,96,93,99,86,109,91,106,99,104,97,95,99,114,117,108,87,98,94,90,103,91,96,104,99,109,98,93,89,93,105,99,88,97,92,100,94,99,85,110,91,96,120,99,104,99,97,97,93,94,98,95,93,103,91,92,105,93,95,96,102,74,96,92,104,103,99,85,99,97,100,97,103,112,102,101,91,99,98,73,110,103,90,79,83,102,99,110,86,100,93,99,106,96,97,104,91,98,102,122,105,97,96,99,96,95,107,85,98,91,106,97,98,94,97,99,95,91,104,99,103,94,100,100,131,108,97,104,98,96,86,95,94,97,96,94,92,96,95,94,117,91,94,103,92,108,99,100,100,85,93,95,109,99,95,88,100,103,99,100,103,96,108,96,104,100,91,96,91,90,84,93,98,106,87,100,102,94,106,92,94,110,96,105,104,102,96,103,112,91,102,92,98,96,102,107,113,108,95,92,111,92,106,109,93,99,107,107,100,92,100,87,87,100,103,91,103,99,93,94,94,78,83,95,89,107,88,97,100,104,98,108,101,93,83,80, +398.67877,90,101,101,108,96,100,94,95,95,83,74,92,93,93,95,99,105,97,97,107,95,91,95,105,83,82,104,107,107,95,88,86,100,88,98,88,102,93,96,99,96,102,106,98,97,100,116,108,89,106,91,103,95,98,99,93,103,97,105,92,99,108,98,101,97,103,122,84,99,101,82,111,93,100,105,104,94,100,100,76,89,100,104,102,109,96,102,104,105,96,103,93,94,85,96,95,89,91,106,100,102,105,91,87,83,109,103,111,94,95,87,104,108,105,90,89,103,99,104,107,110,103,100,106,96,94,92,99,95,104,99,99,97,102,98,93,97,105,100,91,87,95,100,104,94,109,107,128,93,92,99,113,110,91,90,97,102,99,100,105,95,102,95,114,115,95,94,102,101,93,99,94,102,99,104,99,117,97,91,99,107,99,100,96,106,100,106,87,106,91,100,91,98,106,90,104,105,110,117,104,104,78,96,101,102,105,99,96,98,100,103,117,104,100,100,88,101,100,105,104,103,103,96,103,97,110,100,102,92,100,106,103,117,100,88,105,105,89,105,93,99,104,96,99,97,80,107,75,104,94,109,91,96,105,96,93,98,97,96,107,101,90,103,97,87,106,99,101,89,95,100,106,96,93,122,101,91,96,97,102,94,112,116,116,104,103,87,102,86,88,110,103,103,97,95,96,100,90,89,106,98,94,100,95,97,106,95,121,93,95,91,106,98,104,101,99,99,105,101,101,94,103,110,105,94,103,101,111,100,84,93,107,92,106,97,97,96,101,95,104,107,104,102,95,99,113,97,92,103,83,105,99,111,113,99,91,98,87,99,87,103,97,89,105,94,108,110,104,100,94,109,87,107,95,105,105,93,87,86,108,101,98,93,103,105,104,107,102,97,101,109,96,95,105,116,101,91,100,97,101,103,98,74,109,99,95,93,71,89,102,100,93,104,88,100,100,107,93,99,96,93,101,87,97,95,103,117,96,99,109,101,90,97,103,81,101,91,75,93,95,103,104,93,97,99,93,111,96,108,90,99,97,100,98,107,103,109,98,113,86,88,102,109,105,108,103,110,88,91,101,105,111,98,97,103,82,89,89,103,101,100,102,101,92,100,96,121,97,106,87,103,98,112,104,91,88,102,100,105,99,109,74,88,104,99,113,91,102,104,104,106,114,94,89,105,88,104,103,98,105,95,110,98,101,107,100,107,95,100,86,91,99,108,104,97,95,109,92,98,92,95,108,95,110,106,104,96,98,109,109,97,95,89,106,100,95,109,95,103,102,91,111,112,115,95,107,113,93,105,94,97,108,100,88,102,109,105,94,78,99,99,93,102,87,105,102,106,104,97,97,91,108,96,95,105,105,90,103,100,118,105,107,109,112,104,87,97,110,99,108,94,109,104,101,105,101,89,100,99,114,97,100,99,109,117,96,96,101,98,96,100,93,97,93,97,104,104,102,109,100,99,101,103,103,100,88,93,99,108,114,114,104,98,117,95,117,101,99,98,95,104,99,98,87,76,93,110,94,101,102,108,99,97,92,92,99,99,100,89,99,110,82,105,95,100,93,96,102,98,100,91,107,102,99,101,97,110,103,91,80,101,93,102,100,100,105,111,98,110,104,98,100,100,92,98,96,105,97,134,107,92,106,100,101,98,97,99,104,108,110,94,109,101,84,78,98,93,92,113,97,97,101,116,101,92,97,107,98,100,102,113,107,101,99,94,97,114,96,98,105,95,95,89,104,95,97,98,101,101,108,100,96,103,96,106,107,97,89,100,97,97,101,102,108,94,101,77,100,109,114,100,110,97,103,117,104,99,101,94,104,93,91,95,95,108,113,98,112,98,94,115,101,99,109,105,94,100,103,106,83,108,108,89,77,98,101,90,110,106,99,99,103,94,104,102,104,95,99,115,90,90,101,107,107,97,98,96,100,101,92,102,95,90,104,97,94,103,102,91,98,95,102,113,111,104,98,95,96,103,68,98,107,100,118,116,109,109,89,94,99,108,103,97,97,106,97,101,94,104,104,95,109,105,105,97,95,106,93,101,105,89,104,98,85,102,101,107,107,98,98,102,97,112,71,100,103,91,109,108,106,100,107,104,97,90,104,85,101,99,108,86,92,102,81,104,99,99,101,109,98,91,110,106,102,94,96,86,84,109,104,65,105,94,101,94,77,106,110,86,109,94,105,98,105,104,104,99,105,106,99,95,119,104,101,96,93,97,94,97,106,96,97,104,89,104,89,97,82,105,98,85,88,110,101,98,98,95,102,97,106,72,106,93,100,101,100,112,97,95,93,75,98,92,101,110,93,108,100,87,99,109,100,121,88,98,118,98,95,110,98,95,100,118,90,105,99,89,102,97,99,91,86,100,92,98,95,103,108,106,110,109,113,101,96,97,108,94,91,94,98,110,100,98,98,112,93,87,108,110,104,92,90,98,101,101,84,99,103,86,96,108,117,94,101,91,110,97,105,108,93,101,96,107,116,97,109,103,91,111,103,85,100,93,112,96,100,83,111,97,116,118,103,99,101,84,95,103,109,113,101,107,100,107,82,109,103,104,105,91,98,108,108,95,102,100,111,82,100,100,102,106,92,89,113,94,105,109,114,98,108,114,98,96,104,94,95,109,90,96,97,108,91,110,99,115,98,102,101,100,103,91,94,93,87,104,98,99,100,104,100,95,103,104,106,110,106,110,101,100,104,94,111,93,102,97,100,108,92,90,108,93,93,91,95,89,96,98,98,100,98,101,97,85,107,99,89,110,108,91,109,96,93,108,103,104,103,108,94,113,102,101,101,98,101,105,87,100,100,95,96,98,113,98,101,102,91,98,97,93,97,87,101,96,101,90,102,91,103,100,105,102,101,94,97,99,101,104,80,112,100,105,87,98,92,98,100,108,97,110,107,95,92,104,91,87,92,94,105,107,100,98,103,98,98,92,109,94,96,104,96,97,102,95,100,97,105,98,103,100,94,104,103,98,88,99,114,95,95,103,99,104,98,100,104,102,111,100,111,111,97,92,109,101,98,96,91,104,97,99,102,93,102,106,96,106,105,100,95,102,101,103,89,108,98,95,104,115,103,111,86,108,105,96,62,93,94,108,100,94,96,104,98,99,98,104,92,94,95,93,97,102,101,100,101,98,105,111,87,91,99,86,102,113,109,87,97,96,97,111,94,101,106,89,101,98,97,104,103,104,93,97,78,103,85,91,92,109,99,109,100,103,106,93,90,98,94,94,102,118,93,111,105,96,101,108,109,96,101,99,100,95,70,100,94,95,89,89,98,95,112,104,92,100,100,91,99,103,105,108,102,107,106,102,105,97,103,115,101,96,102,100,103,106,101,93,103,95,107,97,104,103,97,99,102,95,97,102,90,95,99,92,97,113,91,96,109,103,98,103,105,87,109,99,104,93,100,94,96,87,102,100,102,105,96,94,100,105,102,107,91,99,101,103,98,94,102,83,97,104,75,93,91,107,93,107,93,102,105,101,77,100,99,108,112,90,107,91,106,96,82,129,101,114,94,91,103,98,95,93,105,92,86,108,100,103,109,77,108,98,108,105,110,95,91,88,112,103,101,104,112,119,102,98,106,101,100,104,92,90,86,94,102,89,101,96,85,108,107,99,104,98,95,95,102,93,91,104,94,98,100,93,93,84,100,89,83,98,82,101,100,104,115,90,98,93,94,103,99,102,92,102,106,89,94,96,104,106,117,98,98,94,105,110,89,108,97,93,99,104,105,104,101,95,94,106,91,114,95,79,100,101,99,109,87,93,86,103,90,109,96,102,118,97,100,101,93,95,95,92,106,120,90,105,97,103,92,103,100,92,102,87,111,113,101,104,95,104,87,96,80,97,108,90,108,73,107,102,98,103,96,101,102,96,104,98,109,94,98,94,107,95,104,72,95,95,98,101,87,99,90,95,97,100,100,87,100,103,103,97,99,104,79,81,98,103,96,92,107,105,83,112,100,107,106,102,106,99,98,93,99,96,106,113,97,106,109,113,104,110,106,101,102,113,104,77,106,93,112,94,108,95,87,75,95,80,111,93,102,102,94,116,94,95,101,94,89,89,98,101,102,97,102,105,100,97,111,96,105,97,104,101,116,90,108,98,115,99,105,100,90,98,105,101,101,94,106,82,91,108,103,102,87,92,90,91,99,104,104,103,111,121,94,101,105,97,107,96,101,94,100,101,96,94,103,103,99,96,96,96,105,110,92,104,100,107,97,87,102,115,95,85,102,99,97,88,102,105,92,106,101,96,103,99,103,92,104,99,102,96,105,95,94,96,91,99,92,90,90,105,117,99,80,102,89,105,104,103,95,95,81,102,89,100,82,99,102,98,103,106,109,105,111,91,97,99,94,114,95,83,91,97,109,99,115,92,104,90,87,101,101,83,100,96,108,108,110,100,104,94,96,105,89,94,95,96,100,95,97,95,101,98,106,102,95,97,93,109,94,92,100,102,101,96,103,110,94,78,94,91,94,105,102,95,77,90,98,103,100,96,90,94,104,96,91,92,87,102,97,100,98,99,115,83,91,91,87,92,88,101,92,100,95,98,87,94,95,91,112,90,87,94,98,94,109,88,92,113,101,109,110,101,105,79,99,100,109,96,99,98,112,98,94,97,96,95,98,103,101,104,95,97,102,89,92,100,110,102,101,99,93,92,107,95,102,109,103,75,102,103,98,104,101,101,104,99,97,103,100,96,118,95,94,94,92,84,102,100,90,113,102,106,93,99,98,87,96,103,84,98,90,93,98,94,104,111,100,94,112,96,108,95,97,105,99,100,99,101,91,88,109,109,93,99,101,107,105,92,103,92,102,94,94,111,107,88,97,102,83,105,102,99,78,95,84,104,98,110,99,113,116,108,108,108,92,90,81,100,104,93,97, +398.81891,94,99,80,86,90,104,95,95,89,96,94,123,91,99,91,114,98,92,94,101,107,100,90,92,98,94,96,94,119,90,107,105,107,99,81,95,98,101,102,91,101,96,105,90,114,94,94,102,97,101,92,96,91,102,101,110,88,96,81,93,96,106,91,94,95,101,100,101,98,97,103,109,103,102,100,100,98,99,90,112,99,103,101,105,97,86,90,94,99,108,100,96,92,109,99,85,108,108,87,99,96,91,101,107,102,105,103,97,99,92,92,102,105,97,112,94,91,108,100,98,96,94,106,108,108,99,106,97,105,92,103,100,97,97,97,113,80,105,90,98,96,114,109,86,94,120,107,111,88,98,100,97,99,102,98,85,91,101,132,92,94,103,91,111,102,97,95,87,96,85,90,93,95,72,90,92,100,104,122,100,106,91,91,100,101,84,94,89,91,100,102,100,87,95,92,103,109,91,104,87,121,100,85,94,93,103,101,98,109,102,99,99,106,108,97,76,83,97,95,101,105,100,107,106,101,104,108,100,98,107,86,103,97,99,102,90,102,103,103,97,100,102,108,105,101,90,95,92,101,98,100,108,96,99,94,98,80,102,101,106,96,102,98,95,91,90,98,107,111,106,84,92,117,111,104,98,99,100,98,117,102,89,92,87,90,93,96,113,100,113,93,96,96,95,103,115,100,104,96,88,108,90,95,88,91,103,112,104,98,99,93,105,97,91,102,94,96,111,103,99,97,80,111,98,100,94,97,96,95,91,100,98,85,106,74,100,94,100,92,100,120,86,102,102,96,111,92,97,99,104,105,99,116,110,75,91,95,101,97,106,100,98,95,109,100,98,99,107,98,97,90,93,96,90,102,102,105,109,92,104,107,94,99,103,91,100,102,99,102,98,100,88,95,97,97,101,101,94,100,99,106,90,89,105,99,95,102,98,101,117,102,94,95,102,120,98,96,93,106,94,102,99,93,96,104,96,94,102,95,97,67,102,96,97,97,94,100,102,96,98,95,91,104,99,70,97,92,98,97,99,91,97,102,97,107,104,106,97,104,100,94,105,86,98,103,112,95,104,94,99,97,113,97,102,110,89,89,101,92,98,92,105,108,106,95,95,100,109,105,95,101,105,112,108,80,92,91,104,95,104,103,97,98,97,90,95,99,102,99,106,113,99,95,85,97,95,98,90,98,101,85,102,98,97,111,105,89,110,93,107,102,97,96,95,98,106,99,95,102,105,101,84,104,84,102,102,104,96,118,101,87,88,98,105,99,103,96,96,101,102,96,109,103,104,114,100,95,118,100,100,109,84,104,89,117,99,91,96,94,97,93,96,93,86,95,101,101,104,112,97,103,93,92,86,97,101,98,94,95,104,98,98,106,92,94,115,92,106,94,94,101,98,112,92,104,101,102,93,90,93,98,96,100,102,96,106,94,95,106,82,101,101,89,101,97,107,98,96,105,98,99,102,101,103,96,97,110,103,113,109,104,81,117,102,94,93,103,111,95,95,105,101,101,105,87,99,108,94,107,95,100,107,100,97,99,104,83,106,99,103,103,108,98,93,94,97,103,98,99,100,103,94,88,98,102,93,101,117,103,84,111,98,97,90,97,100,104,102,100,105,104,103,95,96,96,84,99,93,98,103,101,102,94,106,93,88,106,95,103,101,97,92,91,104,92,105,90,90,106,94,114,100,94,93,88,92,95,96,101,98,104,97,103,101,101,95,103,96,100,103,96,99,105,92,112,105,91,98,106,99,109,96,98,89,109,103,95,87,104,98,94,106,104,100,108,83,104,105,83,81,94,98,114,90,99,100,102,98,79,94,94,87,103,91,98,98,99,91,94,101,93,99,109,96,100,93,96,97,97,100,87,95,102,83,110,99,106,105,92,93,108,91,90,97,105,93,112,87,107,85,90,100,102,105,100,96,91,81,84,113,105,90,96,91,97,100,96,82,96,92,93,95,91,96,95,79,92,100,82,107,78,102,108,90,98,86,104,107,105,99,104,98,95,106,103,107,102,96,108,73,105,96,89,98,103,93,94,98,101,80,102,105,105,102,101,99,89,96,93,93,106,111,73,97,100,78,100,90,103,106,94,115,78,104,100,103,135,106,106,89,99,100,103,94,97,96,103,91,101,108,99,95,101,105,109,97,92,103,89,91,101,92,118,91,113,94,102,96,98,109,105,83,103,105,93,87,88,97,97,79,92,86,102,107,95,99,105,79,87,79,91,98,102,96,88,96,93,92,94,105,91,95,97,102,90,96,103,111,97,106,92,97,102,92,108,97,100,96,102,107,101,105,89,100,98,103,105,88,90,73,108,103,94,92,105,95,98,99,99,99,103,101,101,93,120,92,87,132,99,94,107,87,108,96,83,106,99,106,84,110,100,105,90,102,95,102,100,89,101,104,74,100,102,90,87,91,100,98,101,99,75,106,97,93,97,106,100,105,90,101,87,109,101,106,84,112,91,115,110,114,106,105,106,94,101,114,94,106,99,107,93,87,105,93,94,97,94,108,99,104,84,102,105,81,90,91,95,100,97,104,103,105,98,93,112,107,88,103,104,90,105,104,99,99,96,93,94,83,95,94,108,96,104,101,91,88,102,98,116,95,109,91,110,104,108,89,101,105,106,98,104,68,102,101,88,90,91,88,96,75,101,107,98,81,105,94,96,103,118,92,108,100,103,101,98,106,105,103,110,121,99,92,102,108,124,103,104,106,98,109,103,99,99,93,110,113,101,94,102,98,108,102,87,105,93,83,112,104,93,103,99,100,106,109,100,99,105,96,108,99,79,101,105,101,98,87,106,98,90,93,97,93,97,98,97,105,108,99,106,98,100,98,106,111,95,97,98,93,96,105,100,72,112,102,99,104,98,93,106,104,97,104,90,116,98,99,109,106,95,106,104,98,110,99,136,98,98,112,95,98,104,104,95,108,101,98,105,94,88,94,105,102,95,114,100,96,95,104,92,96,99,111,105,103,110,106,103,102,94,98,103,108,105,103,97,93,115,90,107,102,96,84,87,90,109,98,106,103,104,97,105,99,104,100,97,86,111,98,83,102,97,103,104,105,83,96,93,100,93,94,115,102,109,97,107,92,105,102,100,94,103,100,96,105,97,101,103,108,93,98,101,97,95,92,105,101,108,102,98,84,103,101,102,104,103,94,105,97,111,91,99,94,85,94,98,105,95,98,101,97,104,100,99,97,99,96,99,92,88,89,106,105,101,89,93,75,105,100,126,99,93,95,106,100,104,105,110,99,106,99,85,94,115,114,106,102,102,97,95,108,81,99,92,99,102,90,87,98,97,96,105,94,88,92,107,98,112,105,96,113,102,109,100,102,92,97,103,101,108,103,105,106,79,73,95,111,97,83,102,101,86,100,89,105,103,100,104,100,110,116,90,101,102,100,87,100,75,98,109,114,82,98,77,100,99,91,114,97,93,103,102,101,103,99,85,103,100,86,98,102,95,120,91,93,113,95,96,91,109,103,102,117,106,108,111,94,102,109,98,99,98,104,97,103,103,112,91,113,107,110,94,99,95,98,112,98,98,99,98,115,108,98,102,101,94,90,102,94,90,89,116,98,100,108,104,102,101,95,100,99,93,104,105,105,98,93,108,93,99,107,105,94,102,104,120,103,105,100,110,100,101,123,94,101,93,97,112,94,101,103,106,102,115,110,98,102,114,95,103,97,79,103,108,104,111,99,120,111,93,101,110,102,102,106,105,66,97,110,102,101,93,107,101,101,113,100,109,103,98,99,121,100,107,101,98,98,114,99,106,108,95,109,98,91,98,97,99,106,119,100,111,102,100,103,91,95,102,99,104,99,94,102,106,105,91,97,109,94,96,100,102,105,110,100,109,101,94,113,106,104,102,97,117,96,104,105,104,95,99,92,102,107,93,90,98,95,99,99,98,109,104,92,109,109,111,104,112,100,106,96,93,106,107,105,97,105,96,99,103,93,97,105,90,95,108,105,83,100,107,97,103,101,109,107,95,109,101,106,98,111,110,106,102,107,109,100,98,101,106,113,107,105,109,115,104,108,108,107,92,103,99,99,107,99,107,92,102,94,91,109,105,122,83,103,93,126,107,115,99,100,97,106,103,128,105,113,109,100,106,98,111,95,92,105,105,93,102,109,102,99,100,101,112,92,97,111,110,109,97,106,107,103,108,101,105,98,105,115,105,100,110,106,104,104,102,90,82,104,98,98,106,84,134,111,107,104,103,115,97,106,101,96,117,105,98,109,84,95,96,98,109,104,89,112,97,101,96,107,98,112,101,101,103,90,96,101,104,106,104,97,103,103,109,101,120,90,106,98,88,93,109,104,101,112,101,96,104,101,110,86,91,105,101,110,97,94,113,92,103,87,96,95,109,99,105,96,87,108,100,110,92,99,90,112,91,99,85,104,108,109,103,110,92,102,105,84,98,99,80,104,98,111,104,96,103,90,85,99,97,105,103,95,97,102,101,96,91,104,93,100,94,97,105,106,88,99,109,84,98,101,87,98,99,94,91,106,101,97,77,96,100,102,95,94,106,110,111,95,110,94,95,99,107,105,108,114,102,107,105,109,90,97,106,97,113,101,107,141,103,91,91,103,112,98,103,104,107,104,103,102,102,107,109,108,131,93,91,100,99,98,93,91,117,104,80,92,97,122,105,93,80,105,95,101,88,90,103,106,77,105,106,113,92,100,100,83,106,110,85,106,75,114,103,117,107,105,117,99,104,96,99,88,101,101,95,102,103,103,112,101,96,92,102,104,102,102,81,107,95,93,120,100,109,106,110,106,101,96,111,78,101,101,115,110,94,96,102,95,100,94,100,103,71,100,90,99,123,114,100,111,99,104,103,100,107,97,95,118,131,102,113,99,107,94,100,87,87,104,111,131, +398.95901,97,88,96,97,83,105,83,86,94,101,87,97,99,94,110,69,97,90,116,100,108,109,96,105,95,104,80,109,104,109,102,81,105,104,104,97,103,90,97,90,97,109,82,98,101,101,104,100,93,95,99,93,95,91,82,94,104,85,92,95,88,104,100,101,97,105,98,91,110,90,112,100,96,109,96,106,95,109,97,103,95,83,98,101,92,89,92,86,101,104,101,98,105,106,102,113,97,95,105,105,99,98,96,92,92,102,102,98,98,93,106,108,126,97,105,93,97,97,107,96,94,91,107,117,100,94,102,96,102,107,99,92,91,103,102,94,96,104,98,72,93,101,89,95,101,91,117,95,94,93,94,95,101,89,94,98,95,106,91,94,98,110,98,89,103,103,106,89,105,104,107,92,97,109,91,96,97,103,118,90,101,108,101,95,97,102,97,100,93,95,96,96,101,107,108,101,103,92,99,100,100,110,87,104,111,106,105,98,102,102,101,95,108,109,110,109,105,95,105,91,109,109,102,102,102,93,117,97,112,104,103,104,99,108,95,110,111,98,114,105,103,104,93,101,102,85,103,74,100,100,107,100,92,103,101,96,97,105,98,102,101,98,100,95,106,96,109,92,98,91,99,99,99,97,102,97,97,112,94,90,98,101,101,95,100,93,93,108,100,101,120,101,98,95,110,97,99,99,102,97,92,103,95,98,101,64,103,109,99,106,74,99,117,101,96,107,96,99,101,102,95,87,101,95,102,113,94,91,97,96,96,95,88,97,95,99,65,94,99,94,99,97,101,87,98,91,106,90,103,89,95,93,94,101,101,100,102,96,103,108,101,101,97,101,101,98,104,103,95,98,104,92,97,100,105,98,108,100,97,114,96,106,94,98,108,98,109,98,91,95,99,97,101,94,99,105,96,102,94,109,96,95,109,88,89,107,97,102,99,91,94,106,99,91,101,101,104,91,102,83,100,106,101,102,99,93,97,117,101,99,102,100,109,100,95,104,95,108,92,104,103,101,108,82,99,107,99,104,90,88,96,103,101,100,110,109,94,90,103,113,98,102,109,102,103,100,105,106,98,96,105,113,104,93,102,104,96,108,98,105,117,114,107,101,114,98,101,96,99,118,91,99,110,79,98,99,98,101,101,90,100,90,98,90,100,112,105,94,97,94,104,99,99,98,93,99,96,124,111,94,105,118,102,106,98,97,101,114,104,96,99,95,110,102,94,91,95,103,92,103,109,110,122,99,103,108,95,95,95,116,102,95,100,106,91,109,100,79,102,102,93,103,97,94,100,104,95,96,103,73,101,105,109,98,99,92,106,97,104,106,94,96,95,93,96,90,87,98,100,93,113,96,105,98,115,107,108,95,102,107,96,107,104,97,101,112,114,109,107,84,75,111,102,98,106,101,100,83,112,101,107,94,110,105,108,105,99,97,98,110,104,99,101,104,100,99,97,99,100,97,107,109,97,96,79,76,84,113,103,117,90,105,94,91,91,95,121,102,86,106,100,99,109,104,93,99,86,94,80,108,98,105,110,99,98,100,95,99,105,101,102,106,101,97,104,99,91,113,91,108,95,98,96,107,102,109,98,108,92,102,91,101,99,104,112,100,111,96,100,126,113,101,98,93,77,105,101,108,105,98,108,96,78,100,87,83,82,102,102,106,99,101,102,97,101,101,97,89,98,98,103,91,101,91,109,100,97,103,103,110,109,104,99,87,101,88,104,108,93,96,107,104,94,113,100,94,88,101,96,121,106,101,104,96,94,106,99,106,105,97,95,108,94,98,75,100,103,86,92,114,96,105,91,99,84,105,108,106,108,90,93,98,95,92,102,104,103,101,99,101,94,91,84,105,99,62,110,109,101,97,114,112,99,93,100,104,104,105,99,98,98,119,88,101,108,105,107,92,91,97,106,105,95,83,101,93,89,86,99,98,94,91,99,103,87,93,101,100,95,104,108,105,94,107,101,104,109,87,108,105,101,95,95,100,102,106,91,101,86,104,92,100,80,92,91,98,107,110,107,104,117,101,104,100,102,108,96,97,105,67,92,111,106,100,94,56,100,93,92,97,107,104,102,97,87,98,97,101,84,106,100,99,88,90,97,109,101,99,99,104,96,100,98,92,94,104,112,109,106,101,100,98,105,107,99,89,103,98,97,108,108,107,96,108,110,93,105,104,96,102,106,102,107,90,95,118,78,98,95,102,98,104,100,97,96,107,104,96,96,100,103,100,113,96,96,105,96,96,113,90,106,92,106,99,104,96,92,109,104,101,88,98,113,105,98,98,109,106,82,99,89,101,101,102,125,106,95,121,90,99,124,107,104,94,102,101,98,94,78,101,116,93,92,107,99,92,96,104,108,91,99,94,86,87,98,109,96,103,105,90,101,92,100,109,95,113,95,100,97,96,94,87,97,96,99,109,95,100,94,99,84,99,61,98,108,99,96,103,99,105,92,98,89,100,89,102,101,106,117,95,119,99,102,93,97,98,85,107,109,89,98,100,112,100,101,112,100,86,107,102,102,92,91,109,100,101,97,95,99,99,100,112,98,102,110,92,98,97,103,110,98,101,105,103,104,106,94,104,100,94,103,85,103,97,103,101,108,106,102,92,112,105,103,98,105,101,94,92,112,110,93,82,101,102,87,102,102,85,104,100,100,94,105,101,105,100,102,101,101,109,107,113,99,106,105,106,93,117,104,110,96,97,111,110,104,104,98,96,95,100,94,109,102,106,98,100,92,110,114,105,103,91,96,105,98,104,90,106,105,94,118,109,104,120,102,91,96,105,111,103,97,108,91,97,116,101,114,90,98,97,101,104,84,117,98,94,108,102,109,106,109,93,104,93,103,101,99,110,114,99,97,107,105,107,105,98,109,99,94,101,101,120,135,106,107,97,104,94,98,93,97,104,106,101,108,100,95,109,105,83,101,97,105,102,98,109,101,93,103,81,104,101,79,103,111,105,84,102,102,91,95,100,104,87,102,108,99,104,97,105,90,112,108,108,102,109,95,102,108,102,105,115,109,108,103,104,108,106,104,104,101,111,90,104,110,104,103,102,116,100,97,100,104,117,109,96,95,85,102,91,108,105,102,85,101,100,94,108,110,96,103,104,105,110,103,79,106,116,100,106,110,94,101,100,91,97,97,103,105,97,103,114,98,98,108,107,93,96,113,113,107,95,75,106,90,96,96,92,96,108,101,99,97,96,97,97,98,99,120,98,101,97,91,105,103,111,103,89,100,84,103,107,111,112,99,110,102,107,88,98,104,89,73,109,92,111,90,103,115,99,105,96,114,109,97,120,108,106,102,102,112,102,100,109,101,106,96,106,116,109,93,103,95,99,103,97,95,103,108,101,112,105,114,99,95,96,87,100,103,103,85,93,103,104,101,112,95,104,112,102,104,112,110,100,104,101,113,94,107,86,76,97,83,101,96,99,104,102,96,95,100,102,101,94,110,93,90,91,101,98,106,105,101,87,101,96,93,98,100,102,100,105,92,97,124,100,100,98,98,101,71,99,108,101,100,86,98,121,105,104,96,80,99,98,98,95,86,100,101,97,88,83,104,97,94,94,100,102,124,99,95,111,96,102,94,96,93,96,102,111,98,96,104,104,96,100,105,89,104,96,95,101,111,103,90,98,101,98,105,96,105,109,106,85,94,113,91,110,95,99,114,97,106,103,100,88,105,99,97,93,105,95,111,101,87,79,102,111,126,93,110,99,102,100,86,110,108,75,110,101,99,97,72,101,105,104,92,84,99,97,109,104,98,95,101,108,98,90,100,106,94,109,97,100,109,85,105,108,101,92,102,107,114,91,83,90,106,86,109,109,100,100,98,119,109,101,108,96,98,100,102,102,96,107,90,99,95,89,108,91,98,106,106,120,107,99,95,107,98,93,96,97,96,104,103,105,102,111,105,102,99,100,117,104,97,94,99,98,104,92,97,108,103,97,93,100,106,103,109,99,105,102,94,96,85,101,98,95,104,112,105,110,89,99,113,95,101,102,105,99,111,102,113,104,105,88,102,95,112,83,109,95,104,90,100,103,95,108,98,95,115,103,96,107,96,106,98,109,106,94,96,104,100,99,116,115,94,106,93,109,109,105,113,99,110,110,104,98,93,95,98,87,91,97,101,90,98,108,104,101,83,91,106,102,116,97,104,91,105,95,104,81,120,96,104,114,103,107,112,90,105,116,91,102,102,91,96,107,102,101,103,101,98,101,105,103,109,107,97,102,104,94,109,102,101,97,99,104,95,116,97,90,99,102,106,95,98,95,88,98,96,106,104,102,104,103,99,95,101,104,102,99,101,99,101,98,105,93,101,100,105,90,94,97,104,99,109,102,101,105,98,103,104,115,97,98,109,109,101,105,97,124,96,101,105,95,101,98,101,91,84,101,98,118,105,107,101,101,101,96,104,105,96,87,103,86,94,100,101,99,120,108,98,111,107,78,101,107,108,96,101,93,91,106,93,104,100,105,94,101,95,106,109,89,105,96,102,113,78,108,88,102,96,87,82,99,93,110,92,105,113,102,87,101,97,101,105,103,91,98,90,111,113,99,105,118,104,92,91,95,110,97,106,93,92,112,99,95,99,106,101,97,102,105,106,95,97,101,94,106,100,87,95,82,100,100,102,103,111,98,102,88,111,101,90,94,116,100,105,104,103,103,111,101,91,103,105,107,89,99,102,99,107,87,88,97,88,94,64,90,92,94,99,106,96,88,112,90,100,103,106,105,86,98,84,102,105,103,127,102,102,104,87,90,94,106,101,90,104,90,101,93,100,92,95,107,110,96,89,114,104,104,104,89,91,96,100,102,94,96,116,92,95,75,109,88,107,94,105,96,92,97,109,99,92,87,92,104,114,102,95,94,91,96,98,94,101,103,85,91, +399.09912,118,133,95,89,101,106,96,111,104,90,95,108,108,92,115,97,101,105,90,93,100,94,110,98,91,109,93,99,117,101,97,100,97,100,104,104,99,104,87,91,87,98,105,110,93,99,94,103,95,103,98,110,112,99,101,110,91,106,104,92,99,94,83,97,107,108,105,107,101,100,96,109,92,101,101,113,99,93,109,106,100,100,89,93,89,99,102,98,97,105,95,95,71,109,91,96,98,106,93,104,117,108,97,103,86,108,111,97,104,98,95,82,101,124,98,102,88,102,102,102,101,91,97,106,99,104,110,95,105,90,96,125,100,99,96,104,83,99,98,94,94,118,104,103,89,102,117,105,105,107,99,107,108,97,102,101,96,97,110,95,99,99,103,104,97,104,108,101,98,96,103,104,101,86,95,95,106,98,82,111,94,92,96,110,89,103,99,97,108,98,110,99,108,113,117,92,103,96,102,108,93,95,100,106,103,107,88,102,97,94,93,97,107,98,93,106,81,100,89,96,92,106,87,102,96,122,87,94,94,100,97,91,103,100,99,110,105,96,103,99,94,102,94,92,96,101,95,95,92,106,86,103,95,109,98,106,98,109,104,98,94,98,90,92,100,94,100,99,96,103,98,102,100,92,77,103,92,107,98,89,78,107,110,100,94,96,94,101,105,112,100,94,95,108,115,100,98,102,98,90,75,93,108,117,99,104,109,101,105,100,91,109,111,113,98,97,109,105,101,100,95,102,108,115,95,105,117,94,97,104,105,91,112,87,109,110,101,103,102,89,107,95,105,95,91,109,109,100,109,94,95,109,99,110,100,111,107,116,103,94,98,106,96,96,82,110,100,105,90,103,106,93,102,90,95,90,108,97,77,105,97,109,99,95,95,91,99,95,97,115,106,106,96,97,112,131,97,94,97,121,78,99,93,97,101,97,103,102,100,104,86,90,89,87,106,97,109,91,95,107,98,95,87,99,98,86,102,106,97,104,99,103,98,108,95,102,106,103,105,100,105,108,105,112,105,96,98,102,105,99,99,91,125,109,99,110,98,112,106,106,90,97,97,98,108,103,93,94,106,100,92,107,104,99,102,109,112,101,97,101,102,104,110,105,107,100,95,100,103,96,104,113,105,98,103,102,108,99,88,109,100,97,94,104,90,100,92,94,104,95,109,101,100,96,103,97,102,102,103,88,104,106,98,97,99,87,103,102,91,96,97,99,105,100,98,97,96,100,98,117,104,113,91,98,103,98,106,106,101,107,100,106,99,96,71,105,101,90,96,98,102,107,97,97,103,97,109,118,98,78,97,94,102,96,101,107,91,94,94,115,108,102,100,97,104,100,103,99,95,95,100,104,106,94,100,105,98,95,99,98,98,95,114,94,111,89,99,110,125,110,112,105,87,109,101,91,106,103,98,108,87,99,97,105,103,121,107,101,98,118,101,107,84,104,100,92,107,94,73,99,97,101,92,95,122,97,94,105,105,93,95,103,104,105,95,99,105,116,91,100,109,95,100,105,100,68,99,98,100,112,107,93,107,91,75,89,104,91,92,93,95,103,99,95,101,108,100,107,96,103,100,134,91,101,102,88,116,101,96,105,105,91,95,102,101,97,118,102,99,96,98,100,92,98,106,99,97,93,109,104,105,102,98,98,87,106,98,95,100,108,96,106,91,98,98,103,101,99,98,102,103,102,117,95,86,103,93,98,95,107,106,100,96,100,95,96,93,101,106,99,102,96,92,94,95,100,103,99,110,103,116,86,113,111,71,100,96,103,110,103,103,106,107,113,98,102,110,108,113,111,110,107,101,107,93,110,97,98,103,99,95,116,97,108,90,98,104,108,93,99,105,100,101,98,110,84,102,96,92,106,100,112,109,104,99,100,103,96,97,100,99,108,90,132,104,99,107,103,100,99,86,98,103,107,98,91,105,96,105,105,96,87,90,101,99,98,75,105,102,99,109,96,92,82,97,79,102,122,102,105,93,99,110,94,86,102,102,92,97,104,99,98,104,98,89,100,101,99,99,96,116,94,92,98,104,80,78,99,107,94,98,88,105,106,81,99,97,106,100,103,106,112,101,95,102,98,90,114,104,91,98,104,102,105,70,93,101,113,95,100,87,95,104,114,92,105,105,105,96,102,95,108,100,107,108,96,106,95,88,104,96,107,91,100,105,109,97,105,97,101,100,104,96,101,99,104,105,105,107,104,91,106,114,100,100,96,125,111,100,116,97,98,93,101,97,95,96,101,83,104,87,95,100,99,94,105,104,112,69,113,109,105,111,106,101,85,110,97,102,97,96,99,103,93,94,92,85,102,86,100,105,100,121,95,89,108,94,96,120,101,92,104,101,107,110,91,115,97,95,122,112,100,94,90,108,97,91,99,90,98,106,101,98,98,97,107,110,105,103,115,94,94,93,90,88,92,102,114,107,96,96,103,99,101,96,109,89,92,89,87,103,101,108,98,105,123,106,105,111,106,106,111,102,113,96,111,94,96,99,94,95,103,100,102,109,101,98,102,104,87,90,99,97,106,97,91,76,113,99,98,104,100,106,95,99,105,98,90,106,98,100,113,101,89,95,115,113,103,99,97,98,94,84,99,100,109,102,102,99,96,112,100,107,98,106,91,101,105,94,106,91,92,105,92,90,108,92,102,101,98,96,97,101,94,104,101,109,97,108,98,103,98,81,104,101,98,108,100,109,99,84,109,105,107,88,109,94,98,102,98,105,104,107,100,95,113,111,106,102,91,109,102,92,97,96,109,103,99,102,100,100,105,103,97,116,100,104,102,103,100,99,104,100,107,116,107,102,101,106,111,95,100,108,101,106,107,95,95,111,102,107,87,114,97,88,89,103,104,106,107,94,92,94,106,105,91,94,100,105,113,104,86,97,111,101,92,104,79,103,98,98,101,103,104,93,102,91,83,92,99,106,102,95,91,101,105,96,98,98,112,96,109,99,95,114,105,93,105,105,98,104,108,92,109,106,107,93,98,113,105,97,98,100,98,97,96,86,100,105,109,101,88,108,110,101,106,99,109,92,100,105,103,117,86,103,96,108,98,111,94,97,108,94,101,99,99,100,97,103,96,101,99,106,100,112,101,88,99,99,93,101,98,102,100,104,92,93,113,100,98,97,100,87,105,108,93,107,91,95,102,108,100,102,106,109,109,104,88,104,112,104,101,96,129,113,104,107,117,105,108,107,87,105,103,104,90,103,98,98,91,102,104,115,99,99,97,105,94,112,91,107,107,94,117,102,92,129,105,102,99,104,99,104,112,109,105,98,100,107,103,98,88,94,103,95,101,111,94,101,101,104,98,112,90,104,103,98,103,98,105,102,104,98,91,94,99,107,104,80,92,88,79,102,106,107,101,88,106,95,100,105,113,111,112,107,105,110,87,98,99,97,104,110,105,98,98,105,98,109,100,100,95,94,98,100,103,92,98,87,107,90,92,105,92,95,101,90,116,101,103,91,104,92,107,108,104,102,100,96,96,103,100,102,110,104,125,94,104,102,104,105,105,100,89,100,98,108,101,101,105,98,104,96,117,99,91,98,111,99,105,95,110,102,103,106,102,102,102,98,103,81,94,95,99,106,102,96,108,99,97,103,95,116,111,98,115,106,96,107,108,101,87,103,106,72,97,89,102,129,116,108,94,98,107,91,100,96,97,86,97,114,106,102,96,86,102,108,112,109,102,107,105,102,110,101,100,92,109,100,100,87,110,92,106,89,99,100,98,91,99,100,92,108,95,97,97,105,88,101,104,106,106,93,108,95,109,100,100,103,99,100,105,109,116,106,104,107,95,98,98,94,83,102,101,110,92,95,103,95,107,93,99,99,97,92,95,105,95,105,97,98,99,94,114,101,108,99,93,106,109,106,100,106,109,110,101,88,96,104,98,94,101,95,86,113,84,97,92,90,120,106,113,103,92,110,109,99,97,102,95,107,102,101,104,96,93,110,96,95,108,95,101,102,112,107,104,99,101,113,108,101,93,104,109,107,107,107,96,109,106,99,113,98,93,101,110,110,97,106,104,96,108,88,93,113,109,96,98,98,92,95,96,100,104,97,117,91,86,103,105,97,85,94,84,95,112,100,117,101,107,103,107,101,108,89,106,109,95,98,103,98,95,113,93,84,103,101,108,113,89,94,96,96,93,99,98,106,101,99,106,108,109,102,93,103,110,89,93,88,91,104,103,98,111,102,105,101,102,110,79,111,97,98,102,101,95,115,97,104,102,103,109,101,100,95,108,105,87,108,103,109,95,103,111,77,90,97,93,98,99,116,97,109,98,94,108,98,88,109,107,104,116,100,92,89,105,110,94,113,100,109,95,109,92,96,98,110,88,114,109,98,97,111,102,89,106,109,98,115,83,117,100,105,101,105,101,107,95,109,99,86,89,93,103,100,114,103,110,88,93,113,96,89,95,89,96,97,96,93,99,101,93,109,112,101,104,103,101,111,96,80,64,92,95,116,109,96,102,104,98,91,97,101,118,108,112,105,104,97,93,84,86,99,58,88,109,96,112,101,91,94,107,114,105,103,99,116,108,100,105,84,112,119,92,113,87,98,108,66,96,91,97,125,119,121,112,98,99,97,99,99,101,95,95,101,113,101,122,92,103,107,105,108,83,110,92,100,91,103,101,103,115,113,95,108,105,103,119,89,96,92,104,93,103,101,98,96,105,102,96,90,112,106,105,99,106,109,92,100,106,98,100,88,101,97,101,96,108,107,97,95,97,112,97,100,90,93,96,104,109,102,113,102,113,99,99,109,112,119,95,103,109,105,106,99,94,99,106,106,97,105,73,102,107,94,98,98,95,87,86,106,101,98,91,94,95,99,88,106,94,96,94,104,103,89,104,100,111,98,103,97,92,124,121,103,111,102,105,97,88, +399.23926,109,106,100,92,93,106,107,86,105,84,100,89,92,95,84,105,89,98,101,109,96,95,80,111,104,101,94,100,112,102,102,106,95,100,113,112,102,96,109,95,97,94,112,104,96,100,105,79,95,108,95,112,102,91,105,95,99,104,95,93,104,105,114,72,98,103,90,101,109,101,97,91,108,102,102,110,100,94,99,104,107,105,105,102,100,88,101,113,86,110,90,97,93,106,104,113,104,109,96,106,87,105,108,92,102,110,114,106,91,89,93,95,102,84,92,98,92,110,94,94,104,93,112,113,101,109,103,102,87,97,99,101,113,95,98,102,94,73,104,89,98,104,91,92,88,96,106,111,91,93,103,88,103,93,105,101,93,81,106,100,94,80,103,96,101,96,99,95,101,96,82,104,99,100,94,98,92,86,102,118,100,104,99,114,95,107,91,86,114,91,93,100,103,116,91,94,96,97,95,85,95,91,97,87,95,100,95,97,109,100,106,95,94,101,102,113,95,109,96,109,104,107,77,96,109,104,98,102,96,95,98,101,111,105,105,94,104,115,105,96,102,109,93,109,97,96,98,110,91,92,105,86,98,110,102,65,78,103,93,105,99,94,97,100,111,99,110,99,99,96,96,87,110,89,75,89,111,107,105,92,100,99,98,102,96,83,104,106,94,101,97,106,101,104,96,108,102,91,104,99,101,96,101,85,97,98,110,114,103,111,97,123,107,107,98,94,105,87,120,96,102,112,99,118,110,99,96,90,100,100,99,88,104,102,101,113,100,95,93,99,85,93,97,104,86,83,99,110,90,95,104,106,105,96,114,103,97,110,100,105,109,100,98,95,92,99,99,77,102,94,106,106,107,99,106,93,119,106,109,98,111,98,95,91,103,106,98,99,97,79,104,83,100,102,100,95,102,101,101,96,99,90,86,104,93,91,77,93,110,92,92,98,90,105,112,91,102,90,102,95,95,94,100,121,93,99,96,83,99,109,90,99,104,103,104,101,110,94,105,99,107,95,92,100,99,92,93,97,117,98,108,99,112,108,111,111,98,105,103,95,95,101,110,113,105,106,110,102,101,96,112,102,95,90,89,93,105,98,90,106,87,91,108,98,95,110,102,95,108,105,109,102,97,98,100,89,93,98,100,108,105,111,96,96,98,102,95,101,105,107,114,113,87,104,105,99,100,96,95,104,94,101,110,109,102,96,108,96,94,102,94,99,103,85,107,108,97,93,103,98,92,114,96,97,105,110,86,95,96,106,83,108,109,101,103,90,102,89,110,90,105,100,102,94,94,97,75,101,93,95,103,96,106,107,104,90,100,95,110,98,96,92,109,98,81,94,105,98,109,101,110,107,86,111,114,98,92,98,104,94,98,101,90,94,86,96,69,95,117,100,129,108,96,92,95,101,91,92,114,103,100,98,96,102,103,96,100,111,110,126,96,98,97,111,103,92,92,94,95,92,77,98,95,95,104,83,97,89,99,102,99,100,95,92,103,115,90,100,100,106,104,102,90,100,94,96,102,91,107,105,104,87,97,100,72,100,98,95,101,101,121,107,102,92,94,107,97,88,100,106,111,103,95,100,103,107,101,99,92,91,96,97,96,98,102,98,97,109,96,102,101,108,106,97,105,122,91,96,101,96,92,93,93,103,103,107,102,100,106,103,98,106,93,99,92,96,99,96,76,105,99,84,82,94,99,93,98,88,105,109,113,78,104,86,103,94,101,95,89,101,100,89,101,115,97,100,100,111,103,110,106,86,114,102,99,109,102,84,99,104,90,102,103,96,91,98,98,104,99,101,100,102,109,107,106,102,98,98,99,106,95,110,87,97,100,87,101,105,109,99,102,101,85,96,93,114,90,101,110,97,100,100,114,105,95,103,74,102,101,106,101,96,98,107,97,104,97,100,94,105,95,104,100,95,95,81,115,91,94,91,98,101,105,110,105,99,118,101,108,106,99,98,106,100,98,85,84,105,141,101,95,96,80,112,93,94,101,99,106,102,100,110,102,97,104,105,99,116,109,108,101,104,95,83,106,107,111,102,96,101,89,108,97,103,101,102,97,99,87,104,100,91,107,99,90,105,92,104,96,90,93,100,94,92,99,91,71,119,99,84,101,102,101,102,98,95,91,92,91,96,101,95,109,106,90,120,107,98,95,88,114,89,124,103,107,98,113,118,86,98,108,105,110,97,107,93,106,87,91,105,93,103,72,81,102,99,101,99,79,97,88,92,97,102,86,102,107,80,96,97,96,99,108,117,94,88,96,95,94,105,102,88,95,103,110,99,102,98,92,118,92,110,96,88,98,100,101,101,87,102,101,102,99,96,102,101,100,104,100,83,96,88,76,106,100,96,100,109,97,99,97,99,94,99,77,107,83,95,93,99,104,100,90,99,101,85,99,99,98,105,101,103,92,109,84,90,93,101,90,95,91,101,103,102,110,103,101,109,90,95,94,100,89,99,92,99,101,92,119,113,102,92,105,101,121,102,99,104,100,96,98,74,109,107,92,104,97,98,100,106,96,102,105,100,109,89,119,102,105,99,93,98,99,102,100,113,98,107,100,108,111,108,102,95,107,94,95,99,93,92,96,92,102,101,100,96,103,108,109,114,106,98,107,97,97,79,117,102,111,89,119,100,93,85,103,96,90,99,109,110,94,99,96,96,97,92,99,96,129,98,109,99,99,91,110,105,113,81,106,105,96,93,99,102,104,100,100,100,106,95,100,88,108,98,117,95,94,107,102,95,98,98,90,102,105,109,117,75,102,104,100,105,94,105,102,99,104,102,105,95,88,103,93,100,106,91,109,104,94,109,103,103,101,93,93,95,94,104,84,93,105,114,82,100,102,98,100,117,94,109,107,102,99,77,104,97,100,99,103,96,116,107,109,106,100,112,105,95,108,109,88,96,100,98,96,105,105,93,94,100,104,112,109,118,90,95,113,95,95,95,112,99,93,103,98,98,99,106,88,98,88,95,102,100,104,103,98,93,106,93,105,97,97,86,102,96,95,96,100,87,94,94,103,99,105,96,96,96,101,80,99,107,101,103,95,104,111,97,98,89,102,108,91,104,87,99,87,104,105,101,104,96,104,81,99,98,103,108,103,99,96,91,101,101,92,102,101,97,96,107,102,94,101,108,109,90,102,87,95,95,98,98,96,100,93,102,96,108,111,100,104,87,98,98,95,104,77,99,78,97,107,90,98,95,92,95,101,110,103,101,98,106,99,99,96,100,102,105,111,98,110,110,102,104,100,106,101,109,101,109,117,94,102,66,87,103,103,102,98,91,111,98,98,95,97,101,103,106,104,85,111,94,98,83,94,119,104,105,92,103,101,99,109,93,93,89,96,109,98,100,100,108,101,89,97,109,110,109,105,98,101,90,98,115,95,100,89,96,121,95,90,102,104,74,101,103,99,102,93,104,95,95,103,95,117,95,99,100,105,106,95,101,110,85,97,107,105,103,106,87,103,95,95,127,91,104,102,98,97,101,91,102,105,101,99,95,101,109,102,97,101,107,92,97,108,99,102,92,98,98,107,92,101,103,106,83,98,96,99,100,94,94,94,108,95,102,102,97,101,98,100,93,100,102,110,103,97,95,107,99,103,101,99,106,95,101,98,104,99,102,99,95,91,96,92,96,103,107,92,110,97,96,103,115,109,91,95,97,110,96,101,107,84,96,99,107,103,99,108,101,97,108,99,95,100,117,103,102,77,89,98,108,89,104,102,109,64,105,91,102,109,99,91,92,93,102,94,106,100,100,96,102,99,96,95,93,99,84,104,110,89,95,85,97,108,103,98,109,80,93,111,105,94,95,97,100,103,95,95,97,98,103,104,90,87,96,98,105,108,99,117,100,84,106,109,95,99,106,101,95,101,105,105,102,97,93,107,91,102,97,99,109,109,109,103,97,121,98,107,104,105,92,102,101,117,98,105,68,116,99,101,110,89,106,101,106,103,100,93,114,99,106,104,91,112,105,92,96,107,93,105,96,96,110,107,94,97,97,105,99,110,106,110,106,95,100,101,102,114,111,101,117,102,100,102,97,101,100,109,107,97,98,114,101,94,102,116,95,89,99,104,104,100,107,103,107,105,109,96,105,108,109,104,78,105,104,103,100,103,105,105,105,112,115,98,101,102,103,102,104,105,101,113,105,102,105,91,98,96,98,99,103,108,100,98,125,98,88,93,93,104,102,102,109,71,96,105,104,112,92,103,90,102,87,95,90,91,117,104,90,102,100,102,101,112,98,99,105,97,120,105,95,100,104,99,94,101,103,90,108,109,115,108,91,101,93,105,95,108,115,106,87,92,106,73,103,87,97,95,103,99,91,105,88,95,97,96,79,97,105,109,100,102,104,96,98,127,92,98,100,103,100,108,109,92,101,97,99,97,92,85,89,107,102,106,95,99,98,98,91,101,101,105,109,90,95,104,91,97,106,100,102,113,104,89,92,117,96,94,102,92,117,101,100,106,98,96,102,96,104,108,94,94,100,74,82,93,106,95,100,106,102,92,70,101,101,100,96,98,93,101,109,106,111,96,109,105,88,107,114,91,93,103,99,98,96,90,102,94,95,92,94,105,105,106,105,91,97,98,98,98,101,97,102,107,106,108,110,94,95,99,109,104,78,101,91,100,106,100,100,110,100,99,88,98,109,101,102,115,98,91,100,96,89,100,102,107,121,90,93,102,103,101,110,100,105,93,99,88,109,94,89,84,105,82,91,100,93,90,90,106,97,105,104,93,102,106,121,111,83,101,100,103,109,102,106,104,91,104,101,96,100,104,82,106,99,99,102,103,93,113,102,99,101,97,98,103,87,111,102,113,91,106,93,88,99,110,77,91,100,96,83,96,79,101,117,106,100,100,75,106,93,103,97,81,94,102,103,92,103, +399.37936,104,99,90,89,88,102,104,94,104,99,103,93,91,106,97,107,92,107,95,96,97,96,105,109,83,98,106,91,101,120,107,106,91,105,109,91,90,90,95,92,98,84,103,96,93,99,100,107,87,104,118,86,94,99,94,92,102,114,95,88,100,93,71,104,104,102,94,116,96,95,104,105,89,103,91,108,103,100,109,104,93,100,103,90,95,100,100,105,85,104,99,99,98,109,120,96,109,105,99,93,102,99,108,93,91,93,88,108,100,86,112,93,101,101,93,93,98,103,100,83,101,92,105,99,102,113,108,93,84,90,113,103,99,101,103,109,92,94,95,103,94,94,99,104,104,96,101,101,93,104,92,105,110,87,95,98,98,95,113,103,97,105,111,99,103,106,100,101,102,103,96,102,107,97,105,105,101,96,100,105,98,94,95,98,122,101,93,89,105,110,99,95,113,99,97,110,102,112,112,105,101,109,105,108,102,84,98,94,110,108,93,93,94,112,101,98,72,98,106,118,93,112,96,87,99,95,83,119,98,99,112,99,107,100,105,90,89,87,101,102,103,105,107,101,90,98,100,110,113,99,103,98,113,109,96,91,82,96,87,104,95,104,111,102,102,96,85,104,106,94,100,95,82,98,112,108,98,103,116,111,89,112,103,94,101,105,89,93,94,95,86,99,94,108,102,95,106,111,94,107,94,109,103,107,104,104,113,108,102,108,89,100,98,103,105,95,108,110,96,96,110,103,107,102,101,112,91,89,107,116,105,99,102,104,94,115,101,101,97,110,84,99,98,95,97,88,97,102,106,96,101,102,84,98,100,107,102,104,96,108,91,94,100,102,93,97,117,108,96,100,115,101,104,107,109,109,114,98,113,100,114,104,94,95,103,90,109,100,111,98,108,87,100,96,105,101,94,110,98,111,100,109,104,102,93,105,105,113,100,93,101,90,109,105,112,102,95,107,111,104,85,107,102,103,101,95,110,95,94,98,96,99,95,107,100,104,94,95,99,103,95,112,92,104,97,106,98,101,112,104,90,99,102,103,109,98,100,95,106,113,89,102,98,103,85,98,105,96,63,102,105,92,98,104,109,90,94,114,106,107,99,107,111,99,106,103,106,98,100,100,78,102,108,92,95,105,103,94,111,92,99,93,101,110,111,100,100,104,125,91,96,109,112,95,95,99,97,108,94,98,111,90,98,94,108,94,104,99,87,103,112,118,87,99,92,101,111,100,106,107,102,110,71,109,104,107,122,101,113,100,99,109,118,105,74,100,92,103,102,99,93,101,98,96,107,103,106,98,99,113,92,96,100,101,98,99,98,105,96,104,95,78,103,98,98,93,99,104,98,78,103,96,108,99,100,98,96,101,113,95,108,97,90,90,93,101,104,102,104,96,93,106,99,97,97,88,102,101,103,97,84,61,125,103,102,101,99,92,109,102,99,92,95,98,90,95,87,86,112,100,86,108,99,89,103,106,98,98,97,99,106,101,98,98,110,108,110,101,101,103,116,96,103,98,101,103,106,105,97,122,102,100,105,101,100,108,98,99,93,91,101,103,105,101,93,104,94,95,98,94,101,106,94,105,99,99,94,103,113,101,107,100,97,99,109,106,103,115,95,102,90,108,91,94,95,107,103,108,120,110,108,78,109,105,98,94,116,113,99,108,99,97,104,90,94,89,95,95,120,90,112,96,107,103,110,106,97,105,106,107,101,97,107,99,101,99,90,97,103,84,87,90,105,110,102,100,92,99,92,103,112,93,104,100,106,88,113,102,101,91,93,86,108,101,95,92,110,104,99,112,94,90,94,102,105,81,96,91,102,95,96,92,101,102,105,101,95,108,95,102,114,94,103,97,89,98,108,109,100,96,100,105,116,95,99,106,82,103,97,113,103,104,99,97,98,104,107,109,100,105,90,101,102,96,106,94,104,100,106,101,97,95,97,97,97,102,96,97,97,97,100,97,91,97,101,101,99,106,110,102,101,91,112,118,93,98,97,85,92,84,94,112,96,102,95,94,93,108,102,96,100,101,93,98,104,108,106,101,97,96,103,102,113,92,96,96,103,108,87,100,99,91,93,97,95,93,108,94,94,102,92,90,99,93,99,92,105,105,102,82,107,98,101,105,86,95,94,100,104,107,96,98,106,108,95,105,100,103,102,93,101,95,105,126,109,98,92,95,108,91,103,116,101,95,93,104,92,98,101,112,117,105,100,95,99,112,103,93,98,90,104,101,94,95,91,91,102,98,103,93,88,104,103,71,106,93,96,104,88,101,99,91,93,113,103,110,93,99,90,109,97,112,92,98,103,98,110,94,101,100,97,118,106,102,105,102,87,98,89,89,97,109,106,88,107,99,109,115,100,99,97,106,100,95,105,89,98,87,113,101,63,95,105,99,108,101,101,102,104,119,101,84,101,99,98,92,94,94,96,98,102,97,92,102,101,99,108,103,86,110,103,96,95,102,116,96,91,97,111,93,94,101,116,85,95,91,92,98,125,100,96,98,99,90,101,87,102,102,107,98,101,107,96,100,109,73,95,94,112,105,105,86,90,101,97,109,104,106,87,113,106,102,94,90,98,98,73,102,113,89,104,106,103,114,99,88,99,92,92,94,103,105,118,100,101,95,90,87,100,107,104,96,110,91,92,104,88,98,103,92,116,99,101,100,93,98,104,95,124,95,94,86,92,120,95,95,96,105,107,113,109,103,102,96,95,98,101,102,102,105,114,101,101,112,103,109,97,106,98,96,98,92,93,118,106,104,96,93,108,84,102,91,95,99,98,96,91,103,90,113,91,113,94,99,114,108,112,105,109,107,92,105,100,89,104,101,104,97,99,104,101,108,120,101,105,91,111,108,97,112,102,98,107,98,110,108,102,107,100,95,95,100,95,96,105,95,93,110,109,99,103,103,111,100,92,110,94,97,87,87,108,106,100,111,97,123,103,98,98,90,95,99,96,69,101,93,105,93,98,88,99,109,109,98,103,102,96,79,95,77,108,75,106,98,109,90,100,108,94,85,104,101,102,100,113,92,84,93,104,75,91,98,106,98,99,95,99,98,112,100,97,120,112,99,90,104,102,97,100,93,101,107,111,102,95,119,92,95,115,96,87,101,99,106,105,112,104,98,103,98,100,97,103,93,91,94,107,100,73,101,98,99,101,109,101,85,91,98,103,124,105,101,97,103,105,95,118,113,100,83,104,92,97,111,103,94,116,102,99,106,104,105,100,98,96,75,103,96,104,106,111,102,91,101,106,90,96,96,91,99,108,100,100,102,93,95,100,88,103,107,106,87,101,99,96,114,94,86,110,101,96,87,92,103,102,106,108,87,99,86,99,86,94,106,104,100,111,99,105,103,98,99,95,96,108,98,130,103,94,88,101,98,107,103,97,112,91,99,100,92,97,108,107,110,91,94,113,102,96,103,102,98,89,95,98,100,102,106,98,101,106,101,94,97,113,95,99,104,102,109,96,90,101,98,95,109,93,106,100,91,107,111,105,99,96,100,105,101,95,101,106,103,112,97,93,107,90,113,108,93,112,94,100,108,98,97,79,101,96,108,85,104,98,101,101,102,98,107,97,72,99,110,99,104,108,105,97,106,94,115,101,87,96,92,113,93,99,101,101,100,97,97,100,92,95,97,100,98,98,106,95,97,94,98,88,101,87,112,98,91,112,88,97,111,106,95,99,105,100,91,100,99,100,105,98,95,103,98,85,105,101,111,97,88,102,88,103,102,100,96,100,94,96,93,96,87,100,103,108,103,95,94,104,96,105,100,91,97,105,107,104,94,92,113,102,107,105,109,93,98,98,110,110,102,82,105,99,99,92,102,96,105,98,112,93,98,101,87,116,102,96,99,100,113,95,95,113,100,90,105,95,91,108,99,113,101,105,105,97,91,103,102,89,104,95,95,95,101,108,99,102,94,97,95,96,95,104,95,102,111,102,104,95,97,102,113,90,96,83,98,101,98,101,105,108,100,86,108,102,114,109,100,109,103,95,108,102,107,95,107,103,98,98,87,106,108,100,88,105,101,102,77,102,109,100,95,100,87,95,107,98,100,102,98,102,97,102,94,95,78,110,97,105,98,99,111,102,107,99,104,108,134,103,102,97,112,94,95,94,94,91,92,100,104,100,95,104,103,94,99,91,93,87,96,98,108,99,101,105,92,113,94,103,88,92,100,88,98,108,87,104,110,91,98,100,99,93,104,94,100,98,97,104,99,104,91,102,99,101,101,91,109,103,99,99,97,100,89,102,104,110,105,112,96,99,95,115,113,99,95,109,98,116,111,98,103,98,109,95,103,91,113,101,103,113,106,97,105,109,99,99,83,105,97,98,100,99,78,95,98,103,97,112,91,106,102,105,96,106,98,109,112,100,116,97,93,97,96,97,102,96,95,101,88,105,111,96,104,95,103,104,104,88,112,115,111,92,100,104,102,94,111,115,115,100,89,88,80,113,102,103,87,101,85,85,106,104,101,111,91,91,104,94,107,79,90,91,108,90,95,97,91,105,91,102,102,98,86,100,98,97,100,90,101,96,97,87,97,84,106,90,103,108,102,101,99,102,88,101,106,89,80,86,114,99,96,85,108,97,91,94,91,97,101,105,96,106,106,107,99,99,110,96,98,96,98,98,94,104,95,97,104,105,106,99,100,100,107,93,84,103,93,110,104,109,99,103,93,106,102,119,99,83,92,114,87,92,99,100,97,90,114,95,87,93,98,90,101,109,105,106,95,75,110,98,99,85,116,99,113,91,98,103,83,99,86,104,102,97,96,105,94,88,78,98,101,67,112,91,87,116,100,90,110,101,98,107,107,99,96,95,96,100,88,94,98,92,89,103,94,104,109,100,98,104,94,117,106,84,99,92,91,112,103,88,95,90,90,98,102, +399.5195,103,97,89,106,83,90,105,110,105,114,101,88,94,104,95,104,92,102,91,101,106,92,104,100,109,112,67,102,101,94,87,94,81,94,109,94,102,101,99,83,99,97,98,94,102,98,95,87,96,113,104,97,106,105,103,116,95,81,113,96,103,108,105,97,98,100,98,104,121,99,108,108,90,110,103,102,90,99,97,97,92,93,91,98,94,99,87,111,95,114,114,95,108,101,91,95,106,96,98,113,91,108,95,97,99,95,102,106,103,108,101,97,114,98,86,95,97,99,102,86,98,101,94,125,100,99,111,89,112,101,100,112,100,113,103,95,90,93,98,84,90,109,96,91,98,93,105,93,81,105,88,109,107,80,96,96,92,87,109,102,103,98,100,106,108,87,95,104,108,97,98,101,93,110,102,97,105,98,98,89,101,107,100,111,99,116,111,99,107,95,99,102,112,115,97,109,107,104,87,103,100,100,95,96,100,94,96,101,100,110,91,96,106,100,101,93,92,105,105,105,106,72,96,83,87,102,107,97,109,96,94,101,112,100,92,98,78,100,87,99,97,84,112,103,88,99,94,94,92,106,88,91,99,105,102,100,98,99,95,101,113,106,92,105,100,95,101,95,100,113,103,92,90,92,113,97,93,97,100,90,101,95,97,98,101,97,94,97,106,104,88,101,100,102,91,122,95,100,101,96,104,90,99,116,97,94,103,102,100,104,108,103,104,105,99,99,96,107,99,98,94,102,101,98,105,115,110,109,98,102,116,114,93,98,101,88,98,95,96,108,100,87,89,90,85,108,109,106,102,99,102,94,100,109,94,100,99,105,101,101,104,97,102,112,98,124,101,91,102,106,105,99,120,104,105,99,101,94,112,98,108,102,88,104,104,102,99,107,104,92,107,96,99,102,94,97,114,101,105,102,103,101,102,113,88,100,92,84,102,90,98,98,99,96,99,88,103,99,93,100,123,97,99,91,108,92,97,85,107,92,98,120,94,105,105,97,102,95,96,89,109,100,105,113,108,111,89,100,77,118,107,100,99,98,97,107,98,87,68,97,105,104,110,96,112,110,97,102,99,95,98,105,99,98,99,104,100,110,86,113,97,105,106,105,104,97,102,91,97,100,105,98,104,90,98,88,88,90,102,101,108,96,106,113,94,106,92,92,96,103,94,92,100,93,104,89,94,91,95,105,103,105,102,96,102,103,101,118,93,82,90,116,96,84,103,94,103,93,95,107,131,102,98,108,100,97,102,109,102,110,95,102,100,96,99,106,110,99,106,117,103,102,98,106,95,104,96,112,112,105,95,101,101,96,95,105,99,99,90,94,94,98,100,90,107,93,108,98,104,105,111,100,109,100,113,110,93,105,106,99,106,97,102,98,118,106,97,101,100,101,104,95,110,106,116,104,104,102,105,93,107,69,102,93,99,94,95,103,111,94,98,98,92,111,91,94,89,90,108,95,100,110,112,93,94,95,108,96,109,99,99,102,99,91,107,107,98,106,99,97,91,106,91,105,95,102,102,93,97,101,109,100,108,102,97,109,98,105,112,95,91,105,103,102,94,95,100,93,105,106,100,103,91,106,93,100,96,105,102,93,90,104,99,101,103,98,99,103,82,102,81,87,93,100,95,99,105,103,103,91,87,97,91,108,100,100,102,98,93,104,107,97,104,99,91,110,100,90,111,92,108,91,69,77,96,96,109,86,101,99,99,108,102,93,101,91,109,101,99,100,94,96,85,100,92,102,105,97,99,101,90,105,102,110,91,96,101,103,99,90,93,102,92,98,84,106,90,107,106,106,105,95,100,87,107,103,98,93,112,107,112,106,100,97,98,96,95,93,96,92,105,104,103,102,112,102,102,111,94,93,109,106,97,103,119,104,70,93,104,101,99,95,115,113,100,109,119,110,94,99,104,99,110,95,88,100,96,96,114,96,95,95,91,109,103,116,109,105,98,115,96,115,105,102,113,95,102,92,99,104,105,106,99,95,95,98,99,84,110,99,105,78,102,64,110,101,101,94,116,95,100,98,88,104,105,92,108,105,110,97,87,102,80,100,97,110,91,100,97,93,90,96,112,93,113,92,97,86,87,106,112,109,111,106,112,104,100,105,95,97,96,110,91,103,90,100,79,95,112,102,104,104,109,98,99,83,96,107,96,110,101,91,102,108,104,110,96,99,94,87,99,104,93,107,101,84,102,115,105,84,104,105,111,99,101,96,99,93,92,101,95,106,101,99,97,91,103,107,110,100,97,92,90,103,83,102,109,100,90,103,111,102,104,96,113,103,101,113,95,99,90,109,101,107,101,99,101,97,97,110,99,90,107,86,113,100,102,103,118,108,106,102,113,102,98,90,94,100,96,105,112,88,94,104,95,101,104,93,95,109,103,98,93,101,105,92,100,111,102,107,96,101,90,84,93,90,92,99,90,107,89,112,95,102,87,100,92,108,102,104,93,101,99,112,90,101,115,106,104,92,94,87,105,100,93,95,99,98,103,101,120,89,90,96,83,94,85,87,99,90,83,110,105,87,105,91,97,111,100,106,114,105,97,93,98,98,103,104,122,102,93,105,99,107,109,94,108,100,95,90,105,90,99,120,95,94,100,95,90,92,124,91,109,100,96,99,98,95,113,107,101,87,100,91,103,113,105,99,94,83,94,105,101,98,91,105,112,87,109,104,96,105,100,100,110,100,105,102,103,109,98,95,135,110,102,95,87,94,76,92,98,109,99,93,101,108,102,100,102,100,94,98,100,101,96,97,98,106,98,91,106,100,99,97,90,101,90,105,92,65,112,101,96,98,98,95,88,102,109,94,67,96,108,96,91,103,98,105,90,100,109,99,98,109,98,101,87,110,105,104,99,102,95,109,113,96,117,92,89,105,96,96,89,105,83,99,105,100,102,108,105,94,99,91,102,101,93,99,94,101,99,99,107,108,101,93,86,92,92,88,88,100,91,104,94,109,100,107,108,87,101,93,90,91,95,104,102,104,106,100,101,108,89,101,106,83,92,90,95,87,104,97,108,92,97,97,90,106,100,92,107,100,97,104,101,102,112,111,98,88,114,79,71,86,77,100,100,95,105,99,99,113,99,92,101,98,101,119,89,99,98,107,99,108,95,95,104,96,109,93,102,99,80,106,108,106,94,102,108,100,98,94,94,91,110,106,102,88,101,98,106,84,80,86,96,95,102,99,100,107,116,97,105,108,94,107,104,99,100,111,110,91,103,100,109,95,106,100,105,94,104,95,107,94,95,110,101,116,100,105,101,110,94,109,106,93,113,105,102,107,104,87,106,99,104,93,104,107,90,103,101,105,98,107,98,105,99,93,102,108,104,101,101,92,102,108,91,97,99,94,95,102,116,99,104,97,102,82,93,106,100,98,106,97,99,101,103,90,94,100,109,103,99,104,105,100,104,102,96,95,112,96,84,104,86,96,104,94,104,100,87,104,94,99,99,84,105,101,98,89,104,96,114,95,99,98,99,98,116,92,96,105,97,96,100,103,91,97,90,100,108,105,101,100,102,96,98,101,101,103,97,101,97,116,92,110,106,91,104,94,101,79,98,91,104,90,96,99,100,93,98,95,95,99,98,101,116,99,78,100,105,96,108,102,85,89,94,88,97,90,100,107,91,87,113,94,93,108,93,99,97,98,104,98,98,104,99,97,114,106,108,104,96,89,118,89,103,96,91,96,81,95,103,93,94,108,104,94,109,98,97,117,98,98,99,97,87,101,96,103,104,103,98,112,100,98,106,105,98,95,125,92,95,94,100,103,111,94,103,84,107,101,103,110,92,100,99,109,88,99,105,99,102,104,95,98,96,100,100,78,83,97,99,102,99,99,94,108,106,104,98,82,93,98,105,104,96,106,109,96,99,92,108,99,99,106,96,107,91,96,88,104,92,96,97,99,97,97,124,98,104,101,91,99,105,105,103,104,107,104,112,98,92,107,104,102,100,103,91,104,101,98,94,103,103,103,101,94,108,100,104,106,110,104,108,85,100,104,104,89,110,88,94,91,89,98,107,94,107,93,100,101,99,91,109,91,77,102,90,93,110,86,108,89,109,95,83,92,102,80,98,98,91,97,92,93,97,105,87,92,102,93,103,101,100,86,104,98,101,113,97,89,110,105,98,107,99,96,97,98,104,92,100,92,110,97,107,91,93,86,105,97,99,102,110,98,94,105,99,104,118,98,102,105,101,94,89,86,92,93,105,98,90,92,96,91,99,90,94,105,86,106,97,95,84,103,100,112,92,100,101,92,109,110,102,114,108,112,109,106,94,101,107,100,128,92,93,84,94,97,99,104,109,92,102,105,88,111,81,108,96,92,113,109,92,97,98,96,92,97,100,106,102,102,80,105,110,109,98,101,92,105,91,104,93,105,100,108,89,98,99,102,93,97,96,80,96,97,103,104,107,96,101,96,98,103,91,95,99,98,95,99,66,106,91,98,109,112,90,95,94,102,100,86,94,106,101,95,97,94,98,102,94,83,100,101,96,103,108,106,114,103,106,111,96,96,114,98,98,87,100,96,102,94,91,105,80,102,100,99,97,99,112,89,97,98,91,98,101,99,102,90,105,103,111,97,96,116,91,106,98,96,100,107,82,102,100,103,100,92,100,100,97,90,93,87,102,94,94,103,91,93,107,112,87,94,103,91,98,105,106,98,98,80,95,97,104,99,90,101,104,100,109,107,94,96,106,100,85,104,94,96,102,99,92,119,107,79,93,97,87,103,101,121,108,91,91,105,102,102,93,105,100,93,87,90,102,111,95,100,90,91,91,82,99,84,97,102,86,100,108,88,108,100,96,82,108,88,100,103,97,111,102,94,93,85,92,94,99,87,101,99,120,83,92,101,91,95,110,110,106,88,109,68,106,93,113,103,97,92, +399.65961,95,96,101,95,83,108,110,99,97,95,106,96,99,97,110,109,90,134,99,99,116,113,106,110,91,98,94,92,102,95,121,83,97,114,107,116,89,102,97,96,102,102,96,108,108,108,125,117,101,101,84,94,101,105,110,105,98,88,100,82,93,102,101,105,107,106,87,92,98,106,112,116,98,88,87,114,98,97,113,114,98,98,98,113,80,100,105,112,98,108,107,75,104,100,107,81,109,93,100,100,111,103,100,98,103,107,116,112,99,96,107,97,100,99,101,104,104,101,107,95,122,108,99,105,102,97,109,92,100,95,97,95,100,92,107,95,109,102,102,100,96,101,107,102,95,106,95,94,77,104,92,90,105,91,96,102,124,89,104,95,101,102,96,108,92,108,93,105,121,94,112,100,88,99,98,93,105,102,103,94,102,104,94,106,91,100,94,94,106,103,93,95,95,96,106,102,95,107,85,99,100,100,104,94,109,106,100,104,98,100,98,108,105,104,99,104,95,103,93,91,89,102,102,102,101,104,101,100,109,107,87,98,105,104,101,113,104,106,83,101,118,100,107,99,87,102,91,108,102,107,92,107,102,101,94,108,104,100,99,103,109,116,95,104,89,105,108,95,95,94,104,91,91,92,107,104,90,108,96,103,90,105,96,96,112,103,85,91,109,98,94,108,102,114,106,113,98,96,105,99,128,99,100,118,93,102,103,105,114,114,110,111,91,115,101,114,92,117,95,96,111,104,92,101,101,95,120,102,108,119,102,113,103,124,102,96,101,97,103,100,91,123,75,93,104,96,108,114,110,95,108,94,107,110,100,112,110,110,106,108,99,101,96,102,105,111,99,113,101,108,121,99,106,103,108,102,116,97,103,113,115,103,118,106,109,95,108,107,94,106,107,103,102,118,114,103,94,104,109,105,104,108,102,97,108,82,115,110,104,105,89,99,107,99,91,85,104,91,96,107,91,101,96,96,70,110,101,96,90,114,107,117,97,102,99,100,106,64,102,104,112,93,91,102,111,113,114,120,108,106,96,104,106,101,100,105,113,96,105,99,107,111,98,110,104,109,101,106,99,106,93,90,98,93,112,111,92,109,97,104,104,100,106,102,91,87,116,108,104,83,106,104,108,99,99,104,79,108,100,95,105,101,91,118,106,91,91,94,97,90,98,99,104,102,104,100,103,101,92,96,93,97,108,96,105,96,116,101,110,107,87,111,102,110,98,108,102,91,99,106,102,107,108,112,113,95,96,110,108,111,102,105,111,102,91,97,92,95,93,101,115,101,110,106,95,98,102,93,98,108,109,93,98,93,99,99,88,117,101,97,94,123,108,104,106,91,95,104,109,103,107,99,103,110,94,112,97,103,108,106,95,98,101,102,87,103,96,98,126,104,97,111,86,99,102,87,98,100,91,108,101,100,100,91,102,102,106,89,86,108,103,105,108,114,95,86,110,104,107,96,104,113,113,114,96,88,110,90,110,96,116,95,109,107,101,99,119,99,94,91,96,117,107,105,105,103,105,101,111,100,105,101,100,103,98,125,90,105,100,98,105,107,109,78,96,99,104,94,107,100,90,103,103,86,95,83,112,98,95,99,104,86,108,99,99,116,99,101,103,102,101,100,96,102,89,93,82,108,105,101,105,99,99,112,94,104,90,81,103,111,97,112,121,101,99,97,94,101,102,106,103,112,108,94,103,107,120,88,106,103,113,92,114,116,116,92,101,96,90,96,102,94,98,104,99,102,95,110,68,100,104,101,93,101,107,97,103,91,105,91,90,105,111,103,108,111,96,110,107,105,98,106,110,118,106,106,93,117,109,92,107,101,81,102,117,128,100,91,102,95,106,105,105,92,101,97,109,96,104,97,102,121,110,107,99,99,107,108,100,109,114,102,101,98,95,103,114,116,107,104,94,101,100,86,99,99,94,101,105,114,102,104,105,95,110,110,114,107,103,116,102,101,105,105,99,98,98,101,114,95,110,108,90,98,116,99,111,100,101,99,85,89,95,102,96,106,104,108,100,106,104,109,102,98,98,107,97,103,108,106,106,102,109,96,107,118,103,109,96,99,116,107,101,109,96,93,110,82,100,87,112,104,101,100,102,99,91,101,101,100,92,99,110,90,109,88,84,99,113,94,110,94,100,111,95,97,102,97,111,92,95,110,108,119,121,93,104,110,102,78,91,100,95,94,110,91,100,102,112,87,101,105,93,97,100,111,97,106,88,104,112,95,98,99,92,79,100,99,101,107,98,78,100,105,85,100,98,96,104,100,110,97,107,96,101,113,101,97,100,106,91,110,101,86,99,100,110,117,96,106,111,104,103,94,96,93,99,94,109,94,95,101,90,101,110,90,110,113,98,111,100,96,82,89,83,87,104,91,101,87,93,107,104,101,99,107,94,99,100,99,90,94,104,101,97,108,109,97,105,91,86,97,83,99,108,96,100,93,104,87,90,98,94,101,108,95,116,104,106,125,114,100,105,109,87,102,115,86,92,108,96,100,98,104,95,97,87,88,105,105,84,110,104,96,100,99,95,94,98,106,109,87,116,99,111,101,108,102,102,98,100,94,102,104,123,100,99,101,86,100,105,98,101,114,109,92,103,113,108,98,105,103,99,106,109,97,99,105,101,109,102,98,98,95,102,101,94,86,97,69,104,93,112,90,98,100,101,87,104,96,111,110,111,103,97,98,114,109,98,100,88,90,104,105,87,106,101,81,98,104,91,75,102,109,101,112,101,117,95,99,100,91,89,108,98,99,101,112,89,108,103,92,87,100,100,95,98,109,98,102,101,100,99,99,105,104,101,101,94,116,97,105,101,93,99,106,109,80,104,102,95,100,105,115,114,105,112,89,95,104,75,95,108,101,94,92,94,99,114,112,96,95,115,103,58,92,107,100,108,112,96,110,110,109,107,99,94,113,99,105,104,78,92,107,94,85,98,91,98,106,94,99,82,108,94,93,102,98,117,99,105,97,92,95,108,109,106,109,101,100,98,101,95,105,79,102,102,103,110,103,102,101,108,101,108,88,99,92,103,124,100,99,101,103,107,95,98,94,102,116,106,94,91,102,99,109,92,103,102,98,100,109,119,113,113,112,104,93,112,98,100,98,108,98,101,94,97,99,125,94,98,102,112,111,101,104,96,77,106,91,96,93,106,102,82,92,107,99,106,98,97,110,83,109,97,104,91,88,106,89,99,99,102,100,110,104,105,97,96,92,104,98,91,94,110,82,79,103,104,103,90,104,106,108,110,105,100,100,93,108,109,109,89,109,95,97,92,94,99,85,103,99,95,102,100,94,99,93,103,109,97,100,84,102,98,101,101,83,105,105,101,92,104,102,106,85,102,108,99,102,91,97,96,100,99,92,103,111,95,94,112,117,99,103,101,111,91,119,104,99,102,107,102,93,99,109,102,102,93,92,105,98,92,104,87,99,101,117,109,102,98,102,105,102,78,108,96,101,91,99,109,88,104,84,98,104,102,100,107,95,101,100,98,87,102,94,103,97,101,100,106,100,96,105,91,101,106,98,85,96,100,102,91,98,105,90,93,101,99,95,115,105,100,104,87,64,102,109,100,103,117,94,94,101,104,100,86,108,101,109,99,106,109,101,103,90,104,99,107,87,100,107,103,109,96,107,108,106,103,105,113,98,95,98,82,101,102,94,101,97,92,104,91,97,87,108,91,101,103,89,100,103,107,94,108,93,99,105,65,108,91,100,99,98,105,100,110,105,102,90,96,99,106,105,99,99,102,109,105,102,99,100,88,101,86,111,129,96,102,104,100,122,103,93,103,110,92,119,102,99,108,112,101,100,97,106,100,86,98,103,100,105,89,99,102,99,103,107,109,96,95,107,97,116,105,101,109,112,109,109,96,97,103,89,98,98,86,101,101,101,102,96,106,99,101,97,100,91,91,93,99,104,104,96,99,112,102,100,106,106,103,104,97,95,105,109,102,103,102,102,103,106,84,100,104,99,96,106,119,117,112,103,92,106,97,91,79,96,104,103,113,92,89,96,99,113,99,94,108,93,95,99,104,105,103,103,108,97,105,100,111,102,111,112,93,87,107,97,98,87,99,99,94,108,103,102,114,107,97,98,107,97,103,103,89,91,106,98,113,103,100,109,103,95,90,103,100,117,103,107,102,104,108,98,92,97,95,107,97,91,97,99,75,107,113,103,100,97,109,103,102,109,105,101,97,95,103,95,96,109,103,97,93,97,115,104,93,97,106,103,97,92,99,103,105,104,102,95,97,79,100,94,106,89,102,112,103,98,84,109,85,94,108,93,97,92,97,101,95,109,105,109,99,109,97,112,92,104,108,85,99,97,113,98,93,83,99,103,108,99,96,124,99,103,104,94,90,102,103,109,107,100,109,98,97,100,106,104,104,91,100,99,109,99,94,104,94,128,96,105,104,102,95,108,102,102,94,96,90,102,101,98,92,97,98,100,98,92,102,107,95,105,103,90,95,104,113,96,101,102,94,104,100,108,108,93,98,115,98,101,101,102,112,104,100,87,93,117,103,96,93,89,81,92,93,108,93,92,111,98,109,106,112,105,103,99,104,103,95,100,108,98,79,109,103,89,100,76,104,89,110,93,91,108,76,95,125,100,109,101,120,98,112,107,104,97,112,99,101,102,104,100,105,113,92,110,94,90,100,94,95,96,102,85,97,99,108,115,108,103,75,103,97,106,104,94,106,99,95,99,90,102,92,124,113,94,101,98,101,101,109,100,99,104,113,105,99,109,99,93,100,101,99,105,87,107,102,107,97,110,105,97,98,96,103,100,106,106,100,88,108,88,105,90,120,98,105,104,98,79,109,114,101,93,99,109,90,82,108,78,104,85,100,84,107,106,99,103,71,93,98,94,114,106,99,103,92,94,78,91, +399.79974,95,97,96,95,73,91,103,99,94,104,100,100,96,107,94,92,105,100,104,103,97,94,104,101,110,106,95,107,108,91,93,109,100,101,118,104,101,87,88,92,110,109,97,102,95,106,90,67,96,107,96,104,103,112,85,96,86,100,115,89,95,102,117,88,99,108,96,98,98,108,95,95,102,106,98,102,102,94,98,100,110,100,112,99,104,106,102,100,100,108,106,100,115,106,94,94,108,91,109,98,101,98,108,105,82,96,84,96,96,87,107,101,102,90,97,103,85,104,117,95,98,99,104,99,109,95,111,104,118,105,98,106,109,106,94,100,93,97,113,88,89,98,111,110,98,95,102,96,91,104,101,105,112,94,105,101,103,95,114,107,93,98,100,95,100,92,98,96,88,118,101,97,99,96,101,94,96,93,111,103,107,103,94,102,91,107,98,101,101,96,106,98,97,106,98,101,106,105,75,107,91,99,102,91,98,104,104,92,116,111,83,83,88,106,95,103,100,117,101,90,94,102,105,91,62,103,104,101,96,99,114,107,103,102,100,98,108,98,107,103,108,86,103,105,98,92,105,92,104,106,100,117,101,102,98,106,105,98,99,95,97,105,89,89,95,113,96,102,110,80,95,97,103,106,91,103,98,107,108,108,88,104,104,92,109,107,94,106,95,100,101,102,100,100,101,93,99,99,107,95,95,90,109,99,101,101,82,105,100,105,95,117,102,94,105,109,98,107,107,98,111,104,103,98,96,74,115,95,100,106,106,90,98,113,105,97,110,94,98,109,92,92,111,98,101,109,100,109,106,98,103,92,103,102,102,86,106,97,94,107,96,113,105,103,98,94,101,105,113,104,102,94,112,96,96,107,98,99,95,113,95,108,104,105,100,86,99,100,99,104,99,97,98,100,98,88,105,83,101,106,89,104,94,104,100,101,94,108,107,91,105,95,104,105,101,113,106,100,101,107,92,95,91,93,95,93,99,99,86,100,100,103,100,105,101,103,93,99,116,98,104,102,109,103,98,89,101,97,98,81,95,108,122,93,99,104,100,101,100,101,109,104,99,108,93,109,104,98,122,112,109,112,99,96,105,97,107,120,114,97,111,100,104,91,107,93,100,93,100,99,98,101,98,106,109,96,96,89,109,96,91,94,102,99,99,111,95,105,104,101,95,105,109,97,96,106,80,110,109,96,96,110,101,118,69,99,101,103,103,110,97,107,89,99,96,111,99,99,101,110,101,97,84,96,106,103,104,101,105,93,85,112,109,99,109,116,92,102,108,104,105,96,104,102,106,88,104,108,95,94,65,95,100,99,99,104,83,71,88,101,98,94,104,97,109,100,115,73,117,103,113,113,97,109,110,88,98,98,108,101,101,107,103,94,104,105,103,110,102,102,71,105,112,97,94,108,87,101,100,99,101,101,92,104,115,103,100,98,109,108,95,95,98,107,91,99,109,113,117,98,104,96,107,100,113,89,96,97,110,94,101,122,112,103,87,107,102,107,95,99,107,100,94,94,104,97,99,88,105,112,104,107,97,100,83,103,104,96,105,108,107,103,109,90,94,102,95,94,85,103,96,95,107,135,108,100,99,110,100,100,85,110,93,104,98,109,104,111,94,104,102,80,93,104,91,107,97,98,98,115,102,88,117,103,103,101,101,99,104,107,109,101,111,95,95,101,78,100,105,102,104,74,105,103,107,88,98,120,117,97,95,95,91,93,95,87,83,98,102,103,95,94,102,98,92,108,100,106,102,97,108,94,107,101,104,104,107,94,106,86,95,99,97,108,100,114,104,105,93,103,102,95,112,100,106,101,105,102,90,110,97,102,99,108,106,100,106,95,92,104,105,79,103,103,111,109,103,105,103,100,94,103,112,106,106,106,100,113,114,105,99,104,102,97,104,103,111,95,107,101,91,101,98,95,110,107,73,94,98,108,110,109,107,99,95,107,121,107,111,95,108,97,94,103,108,91,87,110,96,105,98,105,93,101,101,122,104,103,96,103,131,107,111,102,111,98,87,109,112,100,92,112,102,95,97,95,82,93,92,109,108,100,109,93,113,101,98,108,108,117,99,95,112,99,93,106,94,95,99,97,102,98,108,104,118,94,92,95,85,108,92,100,99,96,105,102,106,107,109,97,102,83,92,116,98,109,74,101,93,101,100,91,103,112,129,100,106,97,90,101,108,103,99,107,98,112,107,99,95,100,76,93,105,98,94,103,97,98,108,80,104,89,101,93,89,102,93,99,89,96,102,106,103,96,111,96,103,100,105,109,84,93,109,95,107,103,95,100,87,80,97,104,104,108,100,107,97,109,90,97,114,111,102,91,101,79,106,105,93,90,106,91,107,95,102,88,96,91,97,107,101,105,105,99,99,99,97,101,101,83,105,109,105,104,85,104,101,99,92,106,107,110,94,101,113,98,101,95,99,92,80,102,97,113,103,94,103,104,97,97,113,105,91,115,94,106,93,103,113,116,106,108,109,94,99,102,116,91,103,109,99,106,114,103,102,124,102,112,98,97,89,97,105,99,109,109,96,106,100,95,98,92,102,101,96,97,99,104,110,104,112,108,95,87,104,109,101,90,89,113,107,107,92,96,94,109,101,94,101,103,107,105,113,98,100,111,97,95,94,108,108,96,102,98,98,99,96,103,99,104,78,94,100,96,95,102,110,100,113,103,106,106,101,111,93,100,100,99,94,92,100,107,116,88,94,105,102,94,91,99,106,116,106,94,101,107,112,107,107,113,94,101,106,109,123,103,91,105,100,88,106,116,105,108,108,101,93,110,100,110,106,108,104,102,108,95,104,96,104,116,104,100,123,108,101,97,100,94,103,106,99,103,106,103,93,97,95,119,106,107,95,100,101,95,100,93,94,92,106,104,104,96,105,96,91,100,103,101,117,116,91,88,108,102,96,107,110,99,98,94,107,102,99,99,107,105,96,99,101,118,104,106,89,101,107,100,100,98,119,103,94,102,97,105,101,115,100,108,102,94,102,94,95,112,109,98,102,101,110,109,93,108,102,109,122,110,88,102,91,110,95,102,102,111,113,101,90,101,107,109,96,110,101,95,86,99,116,103,117,92,104,104,99,98,98,87,114,101,104,91,103,97,93,114,102,101,97,98,94,102,101,94,89,114,102,101,105,100,107,103,99,89,102,99,77,101,100,97,113,93,110,117,102,121,99,113,101,120,104,110,95,109,99,102,96,93,104,102,107,99,95,117,108,81,107,112,112,102,109,96,109,113,109,77,118,104,114,91,95,102,100,98,100,97,105,102,101,93,95,106,102,81,104,105,102,113,108,105,102,85,109,99,100,103,103,110,100,105,120,99,106,91,115,104,108,104,99,101,101,95,109,116,100,100,92,98,93,93,106,98,110,114,115,101,105,112,72,87,68,95,92,102,98,112,80,95,99,105,99,104,104,97,99,118,102,105,102,123,102,102,106,119,105,107,80,96,112,112,103,90,109,106,109,104,89,101,112,92,102,92,106,104,87,115,107,98,99,108,105,98,96,106,101,103,111,104,103,108,100,100,89,103,125,106,108,98,108,105,100,101,110,105,108,109,91,100,102,105,100,99,95,105,107,102,104,102,110,103,98,95,105,105,100,110,92,106,93,105,92,115,102,95,95,92,98,99,101,101,100,100,81,78,106,104,95,99,106,104,106,96,108,105,100,106,94,84,111,97,95,104,111,100,104,96,97,101,111,106,99,102,100,108,105,103,106,85,98,95,111,86,110,90,99,90,96,94,90,102,112,95,113,89,107,99,98,84,97,91,106,107,102,107,96,102,105,106,103,96,78,99,117,93,116,117,86,104,100,104,89,112,89,102,101,93,98,108,95,95,113,100,107,105,103,98,93,122,100,107,96,102,90,107,95,111,105,85,94,101,104,105,94,103,110,107,112,66,102,114,122,99,102,93,102,98,122,101,112,91,106,106,105,105,101,110,70,108,89,99,97,95,94,97,118,103,109,109,99,104,96,102,109,101,109,94,107,94,100,98,113,102,108,101,92,91,109,107,111,104,102,99,111,103,104,100,98,98,103,100,114,99,102,97,109,111,104,105,104,77,106,94,83,103,104,105,96,112,93,107,91,91,111,83,109,103,109,107,109,99,101,101,95,93,113,104,108,102,96,69,104,99,106,95,97,97,109,106,108,95,118,92,106,90,106,106,101,112,96,104,96,93,111,108,102,102,97,100,100,103,111,100,105,102,107,106,102,82,109,107,98,110,96,103,104,106,99,99,100,113,106,95,110,104,105,106,105,93,98,83,101,99,94,103,111,92,95,94,112,94,95,105,93,104,98,108,119,94,92,109,92,106,104,98,107,108,104,96,96,95,102,107,101,109,107,109,95,101,109,99,95,106,84,93,108,118,101,96,100,101,112,100,91,97,98,97,77,103,93,99,107,100,114,109,95,109,109,99,98,93,109,104,105,112,93,103,101,110,116,87,111,102,91,97,103,106,115,101,94,103,102,93,104,91,85,101,96,90,88,100,100,87,100,86,101,101,96,106,107,92,94,95,100,102,91,95,98,86,95,95,93,98,103,113,104,106,117,96,102,101,99,107,104,89,95,107,102,103,105,105,111,100,109,103,99,103,113,114,100,106,108,102,104,92,101,98,95,95,105,109,106,91,91,97,104,103,110,105,100,97,85,77,94,96,103,108,110,88,99,107,100,99,92,96,102,88,99,94,96,101,90,90,93,88,91,85,95,114,101,104,101,97,99,100,103,97,98,95,100,102,103,87,106,108,103,95,101,113,90,93,105,98,115,100,92,109,101,103,99,96,97,96,90,98,92,104,114,105,102,117,104,91,107,107,87,83,96,95,90,99,103,93,90,110,104,103,94,114,102,92,96,90,106,86,95,95,86,100,100,93,111,110, +399.93985,100,102,92,84,96,110,87,104,104,96,90,89,100,92,110,108,106,98,99,100,102,109,102,97,87,110,70,95,94,124,93,107,108,99,93,97,100,95,92,89,101,125,90,105,103,99,93,104,97,84,101,101,99,97,89,100,106,93,90,93,103,94,95,108,104,106,91,113,74,106,63,98,111,101,99,118,94,104,100,118,102,90,106,109,95,102,101,101,106,99,91,107,102,103,91,100,97,100,94,86,108,104,87,97,105,104,83,93,95,98,105,100,117,110,117,117,62,97,108,101,110,90,104,116,99,104,116,97,111,104,96,112,98,101,89,100,103,95,97,93,102,97,109,106,101,105,100,106,91,91,94,99,100,88,106,79,106,88,107,97,81,94,99,90,89,103,105,101,97,86,90,110,102,91,95,69,105,123,101,99,103,102,90,102,108,102,106,109,113,99,91,100,96,71,106,95,103,84,104,112,86,102,99,103,105,98,97,107,95,110,101,93,100,101,100,114,99,100,103,99,109,118,113,105,97,106,93,106,112,105,99,103,99,106,108,121,91,110,103,103,103,111,99,100,103,98,117,107,87,99,101,88,101,105,90,99,102,98,100,108,112,86,109,99,100,95,97,116,120,98,102,112,99,101,104,106,110,102,98,112,94,92,113,101,95,100,96,112,85,106,87,95,102,114,99,108,99,114,88,105,114,100,90,99,93,109,91,99,110,105,105,105,96,104,92,97,105,104,101,97,92,103,82,112,104,96,94,101,113,101,91,88,92,99,103,94,105,105,100,102,100,93,101,93,90,103,87,99,106,92,90,98,84,102,99,101,110,93,102,90,103,95,83,98,103,83,100,100,108,93,93,96,102,116,113,93,107,103,100,113,95,111,86,113,109,87,106,99,101,106,109,104,98,102,66,96,99,94,100,109,110,97,105,92,109,87,96,94,110,104,84,92,108,113,108,91,97,100,98,100,120,100,98,106,107,95,104,94,102,106,104,95,92,109,93,102,93,98,98,97,103,105,105,105,83,112,97,102,93,101,110,91,110,116,90,95,104,110,112,100,100,100,97,98,110,105,92,94,100,106,108,106,97,115,98,87,106,101,104,106,106,103,103,113,92,104,101,102,109,101,94,106,117,88,96,109,115,98,111,95,104,100,99,109,101,105,108,93,108,99,103,97,82,95,105,105,103,88,106,85,93,100,106,101,112,94,118,87,97,95,104,100,89,105,106,102,107,125,109,106,113,101,107,93,112,100,105,103,98,101,101,99,104,99,101,100,95,104,101,96,104,97,110,98,95,110,102,105,91,105,95,88,94,103,101,99,93,97,87,96,94,105,89,98,97,99,112,102,104,105,108,101,96,107,115,109,101,104,101,95,96,103,104,98,92,108,90,102,98,99,96,96,110,105,74,112,103,90,99,94,96,102,97,103,113,103,94,127,97,103,101,99,99,110,88,107,105,86,105,105,103,109,87,87,90,98,106,107,110,113,106,103,100,97,93,104,99,93,87,96,106,103,99,100,93,98,99,101,111,95,103,96,86,108,98,121,90,105,110,98,100,101,108,90,101,96,98,90,101,111,98,92,104,103,72,96,102,110,107,108,90,102,98,119,99,95,99,100,104,98,100,106,98,90,104,99,75,109,105,95,88,104,109,106,85,94,83,104,119,100,116,102,87,96,89,76,90,100,103,98,87,101,110,107,92,104,103,97,113,105,96,106,115,102,110,93,96,105,90,94,109,102,98,99,96,98,95,107,93,102,97,97,96,91,83,101,88,99,104,76,93,96,109,95,91,103,105,105,87,107,114,103,106,102,102,113,99,88,93,101,101,92,91,94,97,111,99,97,99,103,99,103,100,114,104,93,108,114,114,101,102,103,94,96,99,92,87,102,99,99,93,102,104,99,85,104,103,102,108,98,103,104,113,99,96,100,104,101,100,94,102,90,108,112,89,99,91,103,101,106,102,100,93,96,91,97,101,101,118,112,98,94,103,103,74,108,99,102,104,95,104,91,97,102,102,107,77,106,103,106,103,109,106,113,106,88,77,105,97,109,98,102,103,106,108,97,92,104,95,105,107,125,109,103,117,91,98,109,82,101,101,119,97,91,110,96,96,95,91,105,93,108,105,106,99,105,95,103,103,99,94,111,91,100,95,111,94,100,93,102,99,97,102,105,125,108,101,90,102,101,91,94,104,89,98,104,102,101,99,100,92,100,96,97,115,96,107,98,98,111,99,105,97,104,94,99,94,109,92,109,106,102,78,108,97,111,97,105,94,94,98,99,88,90,100,105,92,104,94,107,96,102,96,97,107,94,109,96,105,103,100,110,96,91,106,107,108,87,96,98,99,103,109,99,102,94,82,112,103,89,98,110,95,103,92,104,90,100,95,105,92,101,102,101,88,99,95,104,90,96,87,106,99,103,91,91,100,100,105,99,105,113,93,99,94,109,105,112,86,93,105,107,91,104,107,103,107,106,103,109,96,95,101,100,88,103,98,96,113,83,106,93,94,99,103,93,103,90,101,96,97,103,113,102,106,84,103,95,105,99,98,104,76,97,93,94,86,113,91,98,106,106,107,86,105,95,97,62,96,87,101,124,97,94,101,93,96,98,94,93,112,88,104,109,100,91,100,92,108,109,95,85,98,85,111,96,87,101,104,101,95,96,99,90,102,110,112,92,87,79,105,98,98,104,104,102,104,108,109,113,101,109,88,96,102,68,92,94,95,98,99,106,110,98,107,114,73,106,103,93,94,104,91,99,102,89,101,95,91,98,93,109,96,105,98,99,91,86,102,99,99,99,100,104,108,98,100,97,98,104,96,100,97,107,100,96,92,104,88,94,96,102,108,105,87,100,102,96,114,118,99,95,102,100,102,105,106,108,97,110,98,92,109,108,102,94,100,94,91,111,105,99,95,100,108,123,94,109,108,105,110,104,102,97,94,106,98,100,97,100,97,99,92,99,106,103,98,102,125,92,100,108,97,95,105,100,88,104,103,101,117,96,103,112,88,102,110,97,103,96,103,95,95,92,95,109,107,113,101,104,102,93,89,99,100,103,101,90,109,96,83,106,95,98,96,98,106,99,117,87,90,108,109,108,113,92,94,88,107,102,102,97,87,114,108,99,104,99,106,97,95,95,102,98,108,102,106,117,98,112,98,107,106,103,105,101,74,96,94,83,99,102,94,108,91,95,100,98,90,104,100,104,103,103,99,99,97,104,102,117,103,97,95,90,113,101,83,101,103,100,116,102,106,91,99,108,90,101,96,106,105,85,110,112,101,88,116,98,105,111,93,99,104,105,89,106,95,111,118,100,99,95,100,101,95,97,96,106,105,89,93,82,87,99,110,95,105,106,107,98,95,89,97,130,100,97,111,102,103,109,102,93,100,103,116,109,91,102,107,65,94,92,102,99,89,100,97,102,99,97,92,109,94,86,103,112,89,102,109,114,102,106,109,101,103,99,101,100,100,100,117,100,82,93,95,107,102,99,102,91,107,109,87,104,99,98,104,88,107,99,103,109,101,112,108,96,99,99,102,102,86,101,103,91,88,98,103,80,108,107,102,101,109,103,98,111,102,101,102,84,112,102,94,80,110,109,104,83,112,104,93,94,107,107,100,93,111,100,104,91,98,98,104,96,101,96,98,109,101,97,106,97,114,102,101,88,102,110,105,99,101,98,111,103,83,99,100,101,109,95,98,105,101,102,98,92,99,96,97,99,92,94,97,102,107,109,88,62,95,90,97,91,98,96,104,100,102,97,96,99,100,98,92,112,102,97,103,102,103,102,90,105,85,99,103,99,93,99,95,101,110,92,101,95,108,102,95,93,106,107,102,96,100,97,97,104,113,113,109,93,99,88,96,103,104,99,101,94,104,88,95,96,108,91,97,98,110,95,100,93,99,100,99,102,81,96,99,87,99,99,92,95,110,79,93,103,125,98,98,87,100,94,100,107,97,97,98,93,110,101,104,95,97,140,98,84,97,106,101,105,87,104,97,94,107,92,99,95,95,97,116,110,110,102,101,109,89,104,103,103,104,101,106,92,109,108,94,112,94,106,101,101,75,107,104,103,100,95,99,100,111,100,98,91,101,94,96,100,112,98,104,104,105,97,102,96,94,99,97,105,94,100,96,99,110,116,94,105,82,93,106,106,96,99,100,119,91,93,96,99,100,100,102,104,93,105,95,107,92,97,98,108,96,107,104,96,105,96,101,100,101,95,95,92,96,102,110,100,117,93,92,106,95,100,104,95,94,96,104,99,90,102,96,87,93,102,97,99,89,85,102,91,96,95,96,102,100,104,95,101,112,88,114,96,100,98,104,64,91,103,73,122,104,93,119,98,97,89,106,101,90,101,107,115,98,98,113,97,104,101,101,105,93,102,93,99,76,95,113,92,102,97,101,120,97,102,85,103,106,92,109,99,92,118,101,86,90,102,98,98,97,95,94,120,114,94,87,105,102,104,99,100,103,98,104,95,86,106,104,103,91,103,101,111,80,95,105,105,67,92,97,98,96,102,94,99,88,121,101,98,130,92,98,93,99,87,92,94,109,94,105,110,96,101,101,97,95,84,99,98,83,95,87,109,92,107,94,96,95,96,104,95,99,110,96,104,98,109,94,100,108,101,95,96,102,93,115,105,97,91,111,109,96,86,79,80,98,94,83,102,95,95,90,96,99,92,95,105,99,88,92,116,107,98,95,98,91,84,120,96,90,109,94,100,96,91,100,94,92,95,108,111,108,103,102,96,81,101,112,84,102,103,104,111,103,100,95,94,91,103,93,108,99,87,92,113,82,99,98,101,110,97,101,85,103,102,104,106,87,98,113,96,100,89,88,120,101,112,98,103,98,94,98,92,101,76,92,97,106,96,102,108,103,99,100,104,81,87,94,94, +400.07999,96,111,91,88,97,86,93,105,96,101,92,104,100,96,96,108,90,97,95,98,94,88,100,101,99,100,97,92,122,104,104,102,90,92,94,110,105,92,96,88,90,113,95,106,109,102,98,108,109,83,97,94,95,111,97,97,99,97,108,96,110,113,87,91,100,95,106,101,97,106,81,91,101,105,90,97,74,108,104,97,103,85,92,106,96,96,91,101,99,91,96,99,93,94,101,94,97,111,106,100,86,88,101,96,90,97,100,107,121,100,96,92,106,92,106,95,94,88,94,97,93,91,104,88,99,99,100,105,97,104,105,101,100,100,107,105,97,102,113,94,101,100,96,109,102,98,99,103,100,90,95,98,93,90,88,94,90,94,120,87,99,101,105,95,95,101,91,101,107,98,91,105,92,104,107,98,109,100,105,93,95,104,92,78,113,108,93,97,109,91,98,86,98,99,104,100,95,96,91,105,109,104,108,98,101,103,97,97,97,103,94,99,102,112,103,100,98,113,88,93,98,104,104,97,105,98,107,103,91,103,86,110,95,104,94,98,100,101,90,99,112,98,109,94,101,109,109,101,94,107,100,106,93,96,91,99,101,96,100,94,88,104,99,98,100,111,100,84,104,94,106,99,114,97,99,109,90,97,100,96,92,105,108,94,102,102,106,101,105,95,99,91,103,112,106,99,96,100,91,100,94,93,105,116,94,101,103,108,100,118,85,96,100,106,99,100,102,108,108,103,95,98,99,92,116,94,88,96,97,102,78,101,101,97,82,98,102,97,111,92,98,99,95,103,109,101,97,89,100,88,100,110,88,98,118,104,101,101,97,101,100,95,105,96,138,112,104,103,99,90,100,102,100,95,103,95,92,96,95,104,102,96,91,102,100,95,98,100,104,91,108,87,84,102,100,91,109,75,112,84,102,94,102,109,104,92,78,98,102,100,92,102,99,96,122,108,88,97,98,106,107,96,109,96,104,91,99,97,94,114,94,101,100,87,105,88,96,108,97,85,96,91,104,103,110,95,104,96,96,113,88,98,85,103,96,93,87,106,83,104,116,102,98,103,105,135,97,96,116,99,83,105,105,98,90,93,90,107,107,102,101,112,109,93,97,86,102,100,108,111,105,115,110,97,101,92,109,108,86,113,97,94,100,89,118,96,99,100,104,94,106,98,96,106,108,98,98,80,92,102,92,101,104,98,99,100,99,96,100,102,104,104,112,97,103,109,89,98,100,102,97,109,101,87,111,86,101,96,86,107,91,98,88,98,98,99,105,101,92,101,102,105,105,104,107,88,103,97,100,101,101,93,100,100,110,98,93,95,90,108,103,101,95,85,91,87,105,108,97,97,107,101,98,98,111,108,88,99,102,96,100,102,102,100,91,95,106,98,103,103,81,109,104,104,90,91,93,89,105,100,92,84,100,97,108,103,95,98,88,103,98,93,106,108,93,99,108,100,99,86,112,103,90,105,102,93,87,98,100,98,95,85,105,115,91,105,100,101,93,97,105,102,107,110,93,102,100,103,102,95,93,105,98,96,110,102,84,102,91,82,104,88,108,101,101,93,89,97,105,94,94,96,97,99,115,93,98,105,91,95,95,91,96,105,120,84,101,101,87,106,98,98,107,103,91,99,104,96,87,95,104,89,96,100,84,98,96,99,102,105,102,99,102,102,104,100,102,93,102,101,108,89,91,98,105,91,96,104,91,109,97,93,97,93,97,95,106,95,92,109,96,100,98,98,90,100,91,104,88,95,100,116,100,95,89,109,86,96,94,106,93,92,108,105,78,100,96,99,106,96,110,95,94,104,112,81,129,107,103,101,100,99,101,101,86,96,86,87,90,96,111,92,98,98,100,98,107,97,109,91,81,99,98,102,93,98,109,120,89,96,115,100,105,101,106,95,103,104,83,113,94,94,102,97,80,100,106,98,82,90,96,108,109,105,100,95,95,94,102,94,97,100,84,96,98,104,94,97,72,92,112,96,98,94,111,92,117,97,104,97,89,91,102,96,99,94,96,99,105,98,99,95,106,121,107,104,109,92,110,107,98,92,100,102,92,101,104,107,101,102,98,106,103,90,94,97,91,108,102,88,98,96,106,103,97,96,100,84,101,108,97,112,98,100,108,100,116,91,97,102,96,100,94,98,98,104,95,102,101,96,89,116,106,103,107,77,88,104,101,104,99,105,99,100,103,108,86,98,99,105,98,97,99,104,96,92,99,104,87,97,98,106,103,94,103,105,94,95,112,98,87,75,100,104,103,96,100,97,100,94,87,88,116,90,104,98,84,94,98,89,60,89,89,102,92,101,92,87,102,93,102,97,105,100,97,76,105,104,87,98,99,109,96,99,93,89,97,131,87,101,94,96,94,92,95,90,102,94,108,75,104,105,88,102,94,99,95,88,97,97,100,98,98,116,92,100,89,103,98,90,92,101,96,93,98,87,86,98,101,99,96,96,82,100,102,103,100,94,98,105,93,94,95,97,95,104,94,101,105,99,102,95,100,83,97,90,88,103,107,111,106,104,103,89,99,90,99,92,89,96,106,101,117,76,114,96,90,101,84,90,102,107,102,104,107,101,99,108,100,92,99,94,94,98,94,92,117,89,103,95,104,98,108,104,93,101,84,80,97,105,96,97,105,91,104,107,111,90,100,85,98,95,110,113,99,94,105,106,97,98,103,93,92,107,121,107,103,104,105,105,109,94,103,109,94,103,105,103,91,104,102,116,98,114,109,111,96,111,106,87,100,100,103,100,103,116,99,107,89,107,114,103,102,102,121,96,109,105,104,99,100,102,101,105,109,100,94,104,97,101,99,118,106,93,104,81,109,108,112,105,94,101,103,96,111,101,98,94,108,95,112,104,108,108,127,104,95,106,105,101,115,97,100,103,103,92,106,110,102,104,93,87,88,93,89,101,104,96,107,104,105,99,113,101,105,96,103,101,111,90,112,111,105,96,108,90,119,104,98,82,104,99,103,93,99,99,113,109,102,91,112,78,105,102,106,101,102,98,107,99,111,88,116,104,107,111,102,101,100,104,102,105,104,102,98,103,111,120,101,100,90,108,99,101,105,90,101,101,95,90,109,100,99,99,107,108,104,97,95,92,97,99,99,98,105,83,96,115,112,96,107,87,91,101,96,86,97,102,90,91,106,104,111,92,100,104,111,111,108,104,89,94,98,96,107,90,98,101,95,109,91,99,115,98,101,93,108,114,121,98,97,100,91,91,89,105,112,85,119,93,102,107,103,102,101,105,103,92,102,87,106,96,100,91,98,117,102,99,109,101,101,97,87,102,110,101,95,95,105,113,97,110,112,98,110,105,98,96,105,107,90,105,96,97,89,95,104,101,109,101,91,97,106,109,105,103,95,110,100,99,102,117,102,113,107,95,92,93,105,95,95,103,94,95,102,109,112,87,100,110,95,95,99,90,97,95,104,95,96,95,69,98,87,101,87,98,87,99,104,102,111,112,106,97,78,96,98,99,111,102,104,95,111,97,96,98,109,111,96,97,97,97,100,113,99,102,98,99,103,118,100,103,136,101,107,107,106,103,102,105,110,100,87,102,95,89,98,85,95,103,98,103,104,98,94,103,91,93,95,115,84,98,93,99,95,93,107,98,107,106,101,114,92,96,120,99,97,88,102,104,102,129,99,112,106,103,101,102,101,112,102,108,94,101,74,103,108,95,105,119,103,106,105,83,113,100,101,104,113,96,105,109,106,95,110,100,101,109,100,95,116,95,109,98,101,117,99,105,91,98,103,97,98,102,95,109,95,91,109,93,96,108,101,101,91,114,66,96,110,105,99,99,106,83,89,70,123,99,105,103,110,107,75,105,96,97,107,90,106,91,78,105,107,106,96,107,103,108,99,105,98,116,92,100,108,102,107,99,114,97,95,106,90,100,117,102,104,102,99,102,96,100,104,102,103,112,103,94,109,101,90,106,97,96,106,103,117,105,113,105,93,102,97,95,103,105,93,93,109,104,109,108,105,106,102,87,107,105,102,108,103,77,102,103,105,95,111,99,106,97,105,108,103,97,104,113,112,95,97,102,99,98,100,101,102,106,98,96,97,97,99,111,91,97,95,104,100,106,96,100,99,88,96,95,102,102,101,104,100,117,101,92,114,103,91,109,109,100,102,95,97,100,97,98,98,103,101,101,102,100,104,99,105,95,98,106,90,104,99,89,114,115,91,91,64,108,73,104,100,105,99,93,105,105,97,108,106,120,103,89,95,94,96,95,109,107,98,93,109,105,124,104,113,96,106,96,104,78,95,101,101,98,107,98,98,95,108,105,105,92,99,102,99,117,106,94,99,100,106,101,112,100,89,113,106,103,106,100,107,99,95,99,107,113,95,113,101,101,112,81,103,92,112,105,94,95,111,105,109,103,95,85,103,105,103,102,99,102,90,106,114,91,111,102,95,105,107,103,94,102,102,77,110,97,107,96,97,103,104,99,96,98,98,98,97,91,86,105,94,105,89,81,91,102,97,91,91,97,91,97,99,101,113,82,93,105,102,93,97,99,101,95,100,96,100,110,108,96,95,91,96,107,107,106,103,96,96,100,94,108,106,94,113,96,105,97,99,104,99,97,100,100,108,105,99,92,106,93,104,102,107,104,99,95,93,79,99,119,104,99,95,96,103,103,112,95,101,108,99,94,75,99,104,114,96,104,107,106,107,91,93,107,104,105,101,109,101,92,82,94,89,93,98,102,105,107,102,101,103,100,82,110,102,108,104,106,101,100,100,104,100,101,99,97,99,108,95,87,97,94,94,92,98,105,110,101,117,117,89,98,97,99,97,103,110,99,108,75,115,97,104,121,81,98,79,109,102,99,102,89,109,136,102,98,93,118,95,111,82,102,109,98,106,103,111,108,117,96,82,102, +400.22012,100,79,101,95,88,102,100,93,83,96,97,97,88,105,93,90,100,101,103,96,109,91,100,98,102,87,100,95,108,110,97,104,100,88,108,92,111,92,98,98,100,92,95,91,100,96,93,101,93,100,113,88,90,107,85,103,94,102,109,97,107,107,111,106,95,94,95,95,95,98,110,101,98,110,95,100,90,90,103,96,103,107,104,102,99,106,94,101,91,96,93,99,104,97,90,96,89,108,105,102,94,121,101,101,91,91,94,96,84,99,99,112,110,102,96,84,89,95,93,103,102,100,109,113,98,101,93,113,112,96,108,92,93,105,118,99,97,112,90,103,103,99,86,114,87,99,95,104,90,100,101,97,101,91,105,105,90,98,108,108,97,86,85,69,100,92,96,101,90,85,88,105,106,101,99,109,97,104,110,97,108,96,94,90,97,99,99,96,104,98,98,66,105,115,83,99,104,103,110,106,65,94,99,101,94,112,108,108,98,105,112,98,102,106,99,87,102,116,98,95,96,113,101,108,104,117,102,92,91,107,91,110,100,103,90,106,92,97,104,91,100,98,102,92,101,92,78,105,100,104,100,110,103,91,96,98,112,106,92,88,97,105,84,86,100,113,114,96,89,97,110,107,110,106,107,108,88,109,98,96,105,101,98,95,103,111,93,100,98,100,106,104,85,105,105,101,96,104,92,110,85,83,86,99,108,105,102,106,99,114,104,107,113,101,98,97,103,104,94,101,99,102,105,100,95,122,93,93,104,107,95,88,96,101,113,102,90,93,92,109,106,101,102,109,90,106,98,98,104,106,101,107,106,107,105,101,103,112,103,105,113,115,91,98,104,108,83,102,104,98,99,84,111,95,85,94,95,104,117,112,96,114,90,103,103,101,95,97,100,96,95,92,91,102,88,105,101,101,92,102,97,107,96,95,98,103,88,101,98,104,110,129,98,108,113,90,109,103,97,90,98,97,86,102,95,104,93,82,88,102,100,97,103,99,100,97,105,104,97,116,95,96,98,93,111,106,93,80,109,111,96,105,89,95,109,94,110,91,105,103,75,95,131,99,111,104,103,87,118,96,97,106,110,96,103,102,99,112,104,113,91,106,110,86,111,104,104,102,105,105,102,103,103,99,113,100,88,95,102,87,111,93,104,103,99,103,96,104,111,92,93,89,113,97,113,95,95,83,103,103,91,114,103,99,94,97,109,101,94,99,99,99,112,100,87,103,98,120,124,104,92,100,105,92,103,106,103,107,95,100,105,111,103,114,105,92,103,104,84,106,107,96,98,112,102,103,111,108,92,94,96,92,93,105,109,105,104,103,97,100,98,86,129,99,102,90,100,103,87,89,96,99,105,98,108,104,99,104,72,91,90,106,80,85,109,96,95,100,101,110,101,94,91,91,104,109,77,97,102,107,96,93,101,88,104,110,101,100,118,105,101,93,88,102,83,99,101,96,96,100,103,112,100,107,94,97,99,105,96,95,83,98,96,99,85,134,106,107,101,109,92,98,101,104,97,97,106,91,105,91,98,96,101,88,88,99,92,101,100,89,98,102,105,102,86,83,94,99,104,90,103,102,112,111,93,94,97,99,110,94,100,90,96,96,90,94,103,99,104,97,88,104,113,101,109,90,99,97,98,113,99,88,96,97,105,109,79,105,119,108,107,111,95,99,86,97,101,91,108,93,85,75,99,97,97,106,98,105,101,104,90,98,102,93,109,102,94,83,110,101,109,108,98,97,94,97,76,102,100,99,101,103,109,109,99,99,101,102,96,96,95,110,94,101,94,93,88,110,92,106,91,104,94,112,123,104,107,109,95,101,103,96,111,83,109,104,112,96,87,94,95,101,99,93,100,86,95,90,101,94,98,96,107,92,101,87,93,95,108,93,71,108,105,103,100,115,103,92,103,85,101,96,94,100,101,97,101,106,89,79,100,89,97,94,100,102,88,101,108,97,95,94,94,97,100,96,91,92,97,98,87,112,85,105,89,104,105,100,100,91,107,105,106,97,89,107,88,107,98,100,104,104,113,104,102,90,95,110,104,102,90,88,94,75,96,91,102,88,83,89,102,106,101,108,102,97,109,101,114,95,100,95,133,113,97,110,89,105,95,94,92,108,100,100,90,101,103,96,112,96,104,99,101,101,106,98,125,76,93,101,110,100,98,98,106,87,106,105,101,113,102,100,113,84,84,106,97,99,106,100,85,100,104,102,92,96,107,111,99,104,97,101,97,104,102,96,87,92,105,86,107,105,108,68,87,103,101,92,98,103,113,97,103,106,96,82,106,109,99,98,74,112,89,94,65,104,109,95,102,92,100,94,95,90,109,105,68,102,109,105,99,94,101,90,88,87,97,101,105,102,97,86,101,105,109,108,85,102,86,95,97,101,105,109,93,103,95,86,100,69,90,106,105,105,100,91,97,92,102,111,100,112,98,101,107,108,100,94,65,106,96,97,89,95,98,116,105,92,106,99,109,94,96,91,90,102,95,86,105,99,100,84,113,100,103,111,105,109,94,92,86,95,93,117,117,90,103,96,95,108,98,97,94,100,105,109,98,109,108,110,117,117,105,100,102,112,92,96,109,109,100,91,92,105,112,102,105,76,108,96,94,107,99,103,102,99,116,106,101,108,101,91,110,89,108,113,89,90,105,101,99,79,108,108,110,74,101,92,104,96,80,99,107,108,109,99,103,105,97,108,95,112,106,110,122,96,108,106,112,96,95,104,97,113,95,104,96,102,91,100,101,96,95,101,117,102,97,105,110,97,88,106,106,98,103,95,101,83,108,103,98,104,97,87,94,101,94,102,106,101,113,102,113,106,95,99,104,107,102,104,108,120,100,87,116,101,95,110,96,108,91,105,96,97,109,97,99,97,102,93,98,104,103,108,80,87,98,127,104,105,113,99,103,97,104,91,105,109,111,100,113,102,95,113,94,107,106,99,108,112,106,117,92,85,103,93,75,96,110,92,107,103,114,97,98,99,95,115,103,99,106,102,99,100,109,119,91,116,95,93,102,101,110,108,115,107,99,91,95,89,98,99,96,92,100,103,108,112,100,105,110,112,96,93,93,91,114,83,98,109,108,118,104,98,65,75,110,93,102,98,112,88,101,108,102,105,97,105,88,114,97,96,99,93,104,101,83,115,104,95,107,77,87,87,100,99,97,88,95,99,105,104,102,99,109,89,106,94,72,101,106,106,87,93,94,88,99,96,98,108,108,113,94,95,100,112,104,100,91,107,107,109,98,109,95,102,100,102,90,96,109,102,115,96,105,104,94,104,106,104,112,101,105,100,91,114,98,99,76,96,102,104,113,88,98,102,101,103,104,103,70,97,107,98,104,100,109,95,102,89,96,101,102,111,97,97,103,98,91,93,94,116,92,105,97,104,95,92,112,102,98,103,97,113,101,105,98,82,101,111,103,91,99,100,100,101,100,111,92,83,111,102,106,96,86,85,104,96,88,93,86,117,103,91,93,105,104,96,95,106,99,111,95,97,98,107,97,99,89,103,106,99,107,106,103,113,100,100,104,108,98,140,96,96,110,102,99,96,106,112,98,113,103,110,109,109,103,105,113,101,99,90,92,108,100,72,102,96,108,97,94,104,106,106,109,87,101,95,109,102,103,100,107,102,109,99,108,94,99,92,101,102,113,103,95,98,100,117,74,96,65,90,110,112,92,103,100,124,105,94,101,88,103,111,106,108,103,110,106,67,110,103,98,93,100,99,108,100,104,87,100,91,99,96,97,94,107,113,97,108,97,106,110,103,100,97,104,106,110,101,102,99,102,109,90,95,87,110,108,102,108,94,113,101,93,113,95,108,121,106,106,76,99,112,117,102,113,104,95,80,108,96,94,108,103,108,99,101,103,91,93,108,94,98,101,86,104,115,94,112,101,98,97,109,99,100,95,124,100,100,115,102,99,92,107,105,82,102,109,102,112,110,106,105,96,95,98,102,89,108,116,106,94,97,95,94,107,98,100,99,110,92,95,108,113,86,95,100,103,97,108,89,100,109,98,101,99,93,96,110,104,84,87,102,102,114,105,111,104,94,102,96,108,106,114,93,95,102,110,104,111,99,113,83,100,101,129,103,93,97,113,97,98,101,96,110,90,88,108,100,102,100,101,87,103,96,92,95,106,98,95,108,103,89,104,96,103,94,113,93,99,109,89,98,106,102,108,115,98,98,103,98,107,101,95,101,94,119,96,97,91,89,87,79,131,132,100,97,100,109,103,115,97,105,106,94,104,102,93,99,79,103,99,103,100,108,90,104,97,98,90,105,95,95,102,113,105,118,110,108,103,92,105,100,106,95,111,98,100,102,104,94,97,109,100,90,104,100,98,107,88,130,108,85,106,99,92,89,95,95,102,97,103,102,73,105,97,96,120,108,97,99,90,89,93,98,98,96,96,118,123,103,83,98,100,112,95,103,100,102,106,99,109,103,109,105,113,105,95,99,90,92,109,99,109,103,98,109,98,106,85,105,103,95,110,97,100,96,99,105,103,93,107,100,102,106,97,112,96,95,98,109,106,103,98,100,97,114,90,99,93,100,109,109,91,97,87,100,94,85,101,92,97,101,92,98,105,103,92,95,95,106,84,97,105,91,75,112,95,100,107,101,98,103,102,102,112,96,104,97,100,95,103,103,92,92,108,97,103,92,96,107,120,100,100,115,107,90,110,105,98,101,105,116,106,101,102,102,91,101,95,100,102,87,89,101,104,101,102,104,100,100,100,112,103,99,92,113,102,97,91,100,103,86,102,91,99,90,112,110,100,75,86,87,87,98,95,99,99,103,105,107,96,95,111,115,106,93,101,105,105,111,87,106,96,107,63,96,82,81,103,86,96,86,99,103,102,98,98,93,114,88,101,99,97,116,110,105,102,110, +400.36023,108,99,104,98,97,99,97,100,110,96,98,98,93,102,126,97,102,103,107,102,99,98,106,101,96,102,92,101,102,121,109,94,122,99,114,102,100,87,93,95,102,84,105,109,103,110,97,106,112,99,99,94,128,108,91,91,92,105,95,83,97,105,95,75,90,95,97,100,99,98,100,105,96,105,95,92,98,101,102,105,93,104,95,91,90,101,95,95,100,88,105,108,104,91,97,94,100,115,101,95,90,98,92,94,99,108,93,103,84,98,86,114,102,83,90,100,102,94,111,107,92,97,99,102,104,101,110,91,97,99,101,104,90,95,92,112,111,102,93,95,99,98,101,88,95,101,100,103,94,102,101,99,100,99,82,97,94,98,99,104,104,100,105,101,111,109,88,96,93,94,109,96,79,98,108,99,108,95,108,96,104,95,91,106,104,98,99,92,108,92,106,94,101,101,93,102,99,106,100,104,96,109,98,99,96,112,96,113,104,104,94,97,102,95,97,86,87,101,91,92,98,94,98,112,97,105,91,116,101,105,110,94,83,106,102,106,103,92,98,96,97,90,97,106,68,92,96,104,106,115,101,98,108,102,96,91,92,95,103,83,90,94,96,110,92,97,99,89,118,107,102,101,102,101,101,108,94,99,93,97,94,96,103,101,106,83,93,104,105,100,115,77,113,99,105,117,99,95,113,101,91,104,100,106,106,87,96,119,98,99,100,106,109,101,104,99,106,109,109,89,105,114,93,91,102,99,102,98,100,109,103,93,96,96,115,98,101,104,87,94,98,101,87,104,97,88,108,108,106,95,94,74,101,115,85,90,107,100,100,87,98,100,99,97,98,97,102,108,95,74,90,106,90,100,112,92,102,90,91,109,98,99,99,99,98,93,91,98,105,105,109,100,94,110,101,85,92,79,101,109,105,105,106,103,99,98,90,91,102,97,94,79,108,83,101,106,87,108,87,102,100,106,105,105,94,92,81,121,110,110,98,99,94,100,97,110,87,97,92,88,106,116,73,97,97,100,95,101,110,97,97,123,108,103,110,93,95,113,108,90,98,94,106,97,92,111,87,98,103,91,97,97,93,90,105,97,102,108,103,109,103,106,104,89,91,90,102,95,106,95,104,97,109,104,89,109,92,114,99,100,101,87,93,104,91,102,77,125,99,98,101,99,110,91,106,109,107,58,98,86,102,116,106,109,95,98,101,94,87,97,90,117,97,96,109,100,103,99,95,107,124,101,88,83,100,95,104,90,110,96,93,113,86,94,103,100,95,87,91,92,91,103,101,99,96,94,101,101,99,97,96,88,98,90,106,98,120,96,103,109,108,97,96,103,92,88,89,94,108,104,108,95,109,110,107,109,90,95,86,106,97,106,106,106,109,88,103,109,104,95,103,96,98,102,111,97,100,95,97,102,97,106,118,96,101,103,100,102,106,103,93,95,90,97,107,105,102,117,92,98,106,100,78,101,94,85,96,89,95,111,100,113,109,101,92,96,110,99,108,92,96,90,104,94,88,107,99,101,95,105,109,80,97,101,101,107,101,97,108,94,99,109,109,93,97,96,80,91,93,102,97,97,85,109,93,105,99,91,100,96,95,100,91,104,99,115,100,121,95,91,106,98,97,108,97,113,103,98,99,93,90,96,99,102,102,106,106,85,89,105,105,108,91,91,90,121,105,103,106,99,91,96,92,103,108,112,98,106,108,105,113,85,112,99,104,116,109,103,87,99,98,97,98,101,94,102,91,119,101,92,67,95,98,101,96,99,107,99,90,98,100,103,101,107,74,102,101,116,98,103,81,96,106,103,109,96,105,103,109,87,98,88,112,101,103,111,103,112,94,91,109,98,106,101,121,94,96,109,100,99,112,103,105,106,107,105,103,106,97,90,96,101,100,111,102,104,105,83,109,88,95,94,102,105,101,78,105,98,95,90,103,93,91,104,93,103,100,101,99,103,103,110,105,106,102,105,91,89,110,113,98,97,95,90,95,93,95,96,91,96,89,101,106,94,108,95,85,112,96,94,96,96,101,100,107,105,103,101,110,108,117,101,106,101,95,108,87,108,111,97,98,102,100,94,98,100,97,106,98,90,94,114,109,103,100,59,114,102,100,99,93,113,117,117,98,95,98,104,103,106,103,94,101,88,82,107,100,102,92,86,101,105,98,104,112,95,95,95,91,94,100,108,100,105,89,95,91,101,104,104,89,108,107,105,91,103,104,98,101,101,107,109,101,106,103,104,95,104,86,98,96,104,101,99,104,98,94,100,107,110,105,98,106,99,101,98,107,95,89,103,89,92,104,106,97,100,94,72,94,101,98,103,100,101,111,106,104,97,97,97,96,95,95,88,109,84,95,105,104,104,95,110,87,94,91,102,107,98,83,97,98,108,82,101,103,104,100,101,100,95,89,102,105,90,101,99,107,99,110,93,97,105,97,95,91,99,98,102,105,95,95,109,98,105,107,105,103,97,103,93,106,94,108,84,95,110,95,88,101,88,113,99,110,115,103,90,112,107,97,104,94,106,100,95,108,108,96,104,100,106,102,97,110,96,107,102,106,100,89,106,98,101,97,99,93,97,104,80,106,106,92,72,93,109,97,113,98,106,109,107,103,98,113,102,107,96,107,112,116,112,116,103,108,95,99,104,106,108,106,103,106,107,106,104,95,94,103,106,88,106,103,103,105,97,113,109,111,117,97,103,90,94,78,108,110,116,96,100,99,95,103,100,101,100,109,101,98,98,109,94,94,106,97,105,108,103,107,120,103,120,99,104,94,103,105,98,98,101,101,103,103,98,95,116,105,110,75,105,104,81,107,107,109,104,102,94,101,94,102,112,98,100,108,109,106,96,90,98,91,95,99,94,107,111,102,90,104,103,97,134,116,104,102,113,103,86,107,103,98,114,103,114,101,96,100,109,95,102,96,103,105,118,108,97,100,94,113,92,109,110,80,109,97,97,125,102,93,110,102,101,110,108,105,88,107,116,89,109,102,111,107,99,99,117,106,92,106,106,113,82,105,106,103,117,101,108,83,93,110,102,101,100,99,102,101,111,98,92,96,99,93,107,108,99,112,108,93,109,99,113,100,91,96,91,116,92,109,105,111,104,95,85,109,114,104,100,101,104,87,106,88,99,102,104,105,109,107,97,94,96,92,107,106,98,94,102,101,108,94,98,98,97,113,105,93,102,98,92,119,100,111,100,109,113,108,121,102,95,105,91,92,91,108,106,95,101,99,109,102,118,97,104,101,110,108,100,89,116,102,91,105,105,103,104,95,93,87,99,100,111,103,99,100,113,133,95,108,104,104,97,99,117,107,106,99,111,103,94,96,104,97,111,106,104,103,108,94,100,101,100,104,97,102,97,99,108,101,95,102,100,99,94,103,100,97,96,90,95,96,107,107,104,99,88,90,101,102,92,98,92,120,103,104,102,101,91,102,100,97,93,125,106,103,107,89,94,107,101,106,95,97,91,106,100,104,91,102,112,103,99,98,92,102,104,99,114,97,109,109,103,124,100,87,97,107,105,102,104,104,107,90,104,101,100,120,94,98,105,95,104,110,91,102,102,100,91,91,98,99,100,98,96,91,106,102,101,107,95,104,106,94,110,99,114,99,99,97,106,104,106,100,114,105,94,99,97,108,101,99,102,113,95,100,98,103,96,97,110,89,110,107,99,90,103,101,88,115,104,108,105,108,103,97,100,106,94,104,102,102,105,93,96,103,99,98,102,108,93,93,99,99,95,100,106,104,105,96,104,99,102,109,104,98,128,100,104,100,95,107,111,101,98,89,99,115,96,99,105,102,92,114,100,102,96,99,113,94,104,104,121,91,101,99,104,97,107,104,106,101,95,104,113,108,99,98,109,101,105,96,111,102,92,94,113,109,113,105,88,92,100,97,103,108,106,101,102,91,99,100,91,101,87,103,106,96,99,100,83,104,104,96,65,96,112,90,113,89,103,96,111,104,102,96,99,96,101,103,100,104,98,101,106,88,103,113,111,111,100,86,98,109,106,109,101,101,99,109,88,113,104,111,103,101,116,95,112,95,104,88,83,104,101,109,96,91,99,109,105,104,81,107,106,99,104,104,94,97,101,102,106,97,94,105,100,99,109,107,101,109,112,100,97,95,96,91,109,98,95,102,92,104,97,95,91,121,100,95,96,90,101,102,95,115,112,105,102,109,102,115,106,100,108,107,99,91,95,112,82,110,101,101,100,92,97,107,98,105,99,96,91,100,86,98,104,105,104,105,103,85,103,101,107,113,105,99,94,110,82,76,108,112,106,97,113,109,88,103,103,103,98,104,103,104,101,111,101,104,78,102,101,103,97,119,89,98,115,98,95,93,100,99,107,106,101,95,105,100,103,103,80,105,108,137,108,105,96,105,100,108,109,99,87,112,101,93,98,91,102,106,118,104,103,98,102,73,96,98,105,114,102,76,98,111,100,104,105,99,100,103,103,94,110,95,103,100,103,102,101,113,99,103,98,96,102,95,95,95,111,100,104,78,107,90,109,106,119,97,96,100,100,105,103,79,110,93,106,87,87,97,96,109,109,103,98,105,100,113,95,106,88,99,102,105,106,109,106,96,91,101,101,110,91,88,101,103,105,99,104,107,102,101,107,111,95,100,103,105,101,99,100,103,94,112,96,96,97,100,92,100,97,84,108,110,90,93,86,96,109,97,103,99,115,95,105,89,112,112,105,113,105,96,88,102,94,108,100,102,102,96,105,107,102,102,101,94,105,111,100,90,107,102,100,104,92,92,102,107,95,100,101,98,94,105,108,106,84,94,105,95,94,99,81,110,109,91,108,92,110,89,107,102,101,102,103,98,101,87,100,120,92,90,89,125,94,108,93,124,108,92,106,113,98,99,105,93,109,108,98,97,110, +400.50037,103,109,93,90,91,111,90,90,95,102,90,77,86,89,105,98,100,96,93,106,113,94,88,100,95,100,100,102,105,117,111,99,97,99,101,91,104,88,95,104,92,97,88,98,66,95,101,108,97,103,99,95,106,103,97,104,101,80,96,98,91,86,98,80,106,92,85,108,99,93,95,100,99,91,95,104,87,105,99,95,105,84,96,101,105,95,71,96,100,91,94,102,104,102,98,108,95,87,88,95,99,104,105,112,98,114,101,78,100,98,103,100,99,82,112,99,96,98,97,100,100,99,102,109,106,105,120,96,106,99,99,101,98,110,94,109,107,95,90,99,91,95,99,86,97,76,112,100,97,99,97,96,91,100,105,98,97,102,102,113,95,102,94,101,109,93,96,88,90,94,106,93,103,97,99,101,71,95,100,110,104,100,98,103,106,104,105,84,111,98,90,117,112,113,87,95,100,88,93,103,84,108,106,101,81,105,98,114,101,103,105,94,98,99,68,107,101,105,107,93,96,99,109,99,98,105,79,114,108,96,92,91,99,104,89,102,103,98,101,108,101,98,104,104,108,99,99,110,106,106,101,94,99,110,97,102,107,107,93,98,91,93,100,84,88,99,109,96,97,100,100,93,105,108,104,98,112,111,84,91,100,97,99,87,99,107,96,93,102,87,98,98,108,102,107,101,97,102,79,98,101,91,98,104,93,103,98,117,97,101,96,101,98,99,112,94,106,101,98,108,99,101,105,109,107,93,113,90,103,91,107,105,101,109,104,103,104,95,107,89,91,94,105,100,106,110,108,108,110,94,106,92,105,105,100,100,96,100,101,99,97,102,83,91,97,96,105,105,93,98,113,105,101,91,110,104,108,96,85,96,107,107,93,114,108,92,92,108,98,87,102,93,103,109,94,99,105,118,104,102,109,105,92,100,86,101,101,110,100,87,96,114,98,109,96,103,109,109,95,100,108,89,108,105,102,93,96,92,87,100,95,103,106,103,97,108,110,112,97,109,97,101,99,100,103,99,98,108,92,111,97,96,95,102,96,100,106,101,101,82,100,102,111,116,96,106,107,80,112,101,90,96,97,100,101,105,95,99,94,96,126,100,114,107,107,102,108,116,110,109,105,98,114,96,98,86,91,102,89,106,98,83,100,101,99,100,97,91,98,102,105,88,98,90,107,95,99,92,94,90,101,88,104,98,105,95,106,101,85,99,102,106,91,103,95,108,90,97,95,105,101,82,103,95,106,90,103,106,100,87,96,95,97,109,88,102,101,105,84,80,101,82,87,100,97,104,74,111,95,95,94,110,105,96,100,105,96,98,109,96,96,96,107,94,89,100,112,100,106,92,116,97,96,126,107,121,104,97,99,106,99,100,102,102,107,96,93,99,93,107,88,83,107,96,102,98,109,106,98,101,111,97,104,91,96,105,96,101,99,113,101,89,99,104,101,110,94,94,100,101,106,93,101,102,108,86,98,108,95,105,105,89,113,105,95,101,94,92,94,99,105,83,94,94,99,96,87,111,105,113,107,91,99,94,90,103,81,92,102,108,95,92,94,80,101,92,98,101,107,97,104,109,99,105,100,92,115,104,89,92,80,106,89,92,93,105,109,94,110,99,97,105,109,95,95,95,86,100,105,101,100,96,101,95,102,92,103,104,94,101,101,99,105,99,97,90,99,82,97,104,98,85,97,103,87,88,102,99,94,100,100,97,66,93,73,100,106,106,110,88,98,104,83,100,89,101,109,106,92,102,101,110,104,103,93,87,93,107,95,100,88,104,100,105,108,95,114,96,99,91,102,103,92,114,106,110,99,98,93,105,105,109,96,106,119,95,117,98,108,113,103,102,98,100,102,99,105,101,104,107,98,102,100,111,99,111,103,114,99,111,94,105,113,98,101,95,100,91,114,114,98,100,108,109,89,101,103,106,100,97,88,87,98,103,95,117,109,98,108,106,104,98,108,107,84,77,112,105,103,98,115,107,92,85,98,96,102,87,93,94,114,104,102,96,89,110,105,94,96,93,103,97,98,105,113,96,105,99,101,95,98,102,104,91,96,94,92,94,88,96,105,83,102,100,99,87,89,97,82,108,101,94,102,106,99,87,89,102,125,104,99,113,86,117,100,85,93,101,109,107,91,99,84,102,103,106,74,106,108,92,98,101,106,112,92,102,94,117,96,105,104,103,100,92,107,92,94,93,95,91,95,97,81,105,96,86,95,100,96,91,96,105,109,75,99,81,106,99,86,99,105,97,107,101,111,97,99,95,105,84,96,96,94,84,96,107,110,106,105,98,99,78,97,90,101,95,106,104,106,101,114,94,110,89,97,101,103,100,116,103,112,101,105,94,104,91,103,107,98,113,113,103,90,102,101,105,102,100,95,91,102,93,104,91,92,96,94,99,94,104,96,104,96,83,94,110,101,101,98,100,97,104,90,101,98,100,98,100,96,99,99,94,76,111,102,92,98,98,108,94,89,103,101,95,80,88,95,91,91,94,99,109,98,113,99,101,77,89,94,94,91,104,96,122,103,104,112,102,113,83,94,109,109,100,107,95,92,102,110,91,90,117,103,68,101,100,92,111,107,94,97,92,105,116,100,83,105,100,106,101,98,100,102,103,109,97,114,94,90,103,90,94,99,91,98,102,101,88,104,104,90,92,105,96,103,101,90,108,87,92,106,95,98,107,95,99,111,104,101,94,95,92,106,98,114,99,104,100,107,103,101,107,103,90,97,105,93,107,79,115,98,109,105,114,88,95,95,108,94,102,101,111,91,84,94,98,102,108,108,108,98,107,104,113,97,86,99,113,99,104,103,99,100,101,95,111,95,96,106,94,109,113,102,107,95,97,104,103,105,104,103,99,103,96,113,78,113,84,106,96,110,102,109,106,109,101,98,107,99,113,97,91,102,111,105,102,94,116,117,98,92,103,87,91,93,99,99,101,103,114,104,102,104,106,101,100,106,97,101,101,67,88,96,81,113,104,100,106,103,89,110,97,97,94,99,93,98,107,96,92,98,95,100,100,98,106,96,102,101,107,107,110,104,93,94,98,105,107,102,120,90,96,98,112,101,99,96,105,102,96,112,117,101,98,98,89,108,102,101,98,94,98,102,88,101,95,104,103,100,107,99,103,95,98,98,103,94,104,100,107,108,98,100,95,100,101,98,100,106,103,103,105,86,96,96,106,108,96,95,102,72,102,102,90,77,101,99,108,104,113,101,97,91,107,106,103,99,100,108,73,100,108,100,102,101,92,93,109,94,105,98,102,100,93,101,98,106,107,100,93,87,96,98,94,91,102,101,105,105,101,102,98,84,96,109,101,101,103,98,100,90,98,105,117,93,91,95,73,113,98,102,100,99,101,94,99,99,102,103,99,107,97,95,102,101,100,106,104,120,93,114,81,103,117,101,101,106,109,94,85,102,103,90,96,90,96,99,105,131,86,100,101,89,96,98,95,110,98,99,94,97,105,100,97,93,108,111,113,111,94,89,103,88,100,107,110,106,107,99,95,99,108,101,111,94,103,101,109,94,105,100,97,115,102,108,90,94,97,100,113,101,89,94,95,103,92,91,104,97,92,93,108,92,106,104,92,98,107,77,91,104,98,96,103,95,85,102,100,105,101,102,104,109,95,100,99,109,96,98,97,92,108,103,104,101,96,93,113,92,91,100,109,99,102,95,113,104,96,107,106,112,93,107,93,102,89,105,109,112,98,106,108,90,109,97,126,106,106,102,92,113,105,102,104,105,102,110,100,93,108,105,99,101,93,103,99,104,82,103,105,104,101,99,103,117,100,95,114,93,90,92,90,131,98,96,95,104,104,99,97,110,108,101,102,105,101,88,95,101,95,100,98,112,103,106,91,102,91,96,117,113,96,104,107,111,100,102,101,100,101,107,101,90,111,102,103,111,93,90,98,94,90,100,74,110,116,94,102,109,99,104,103,95,100,87,108,95,106,102,102,78,109,97,105,115,97,107,104,100,102,91,97,109,88,88,94,100,100,104,109,104,104,106,88,92,108,99,88,108,100,98,112,95,110,108,112,98,94,112,100,100,99,108,95,109,95,105,97,110,98,106,100,95,107,106,95,104,102,102,105,110,109,117,88,106,102,96,107,100,104,109,106,100,107,115,103,96,109,98,104,98,95,105,98,104,106,101,96,112,94,97,98,105,96,108,104,108,91,115,103,104,90,108,107,90,89,107,90,117,104,105,100,101,96,98,117,104,107,98,92,83,109,109,100,93,100,93,106,88,98,96,115,112,96,110,97,104,117,100,121,109,107,92,102,94,76,110,99,90,108,106,104,106,100,111,101,95,95,100,105,114,93,93,105,102,99,102,100,102,105,90,104,114,98,92,74,106,106,96,109,103,108,100,114,99,101,118,107,105,106,104,94,90,85,101,98,92,104,92,100,111,97,104,97,95,88,92,93,100,112,100,101,91,95,105,95,97,104,104,99,101,101,114,90,110,91,87,105,110,102,86,113,104,107,102,101,110,115,88,82,97,97,103,98,106,83,112,99,97,96,112,102,95,99,99,108,98,97,97,101,92,102,101,97,95,88,100,108,93,90,90,97,102,111,102,96,94,90,98,103,94,102,62,112,98,91,95,105,88,98,108,89,102,92,88,96,93,103,92,103,103,103,108,99,100,99,98,100,110,93,94,102,106,103,100,105,94,99,95,91,103,106,98,109,99,96,103,104,102,83,107,94,100,106,105,92,108,102,100,94,103,100,103,100,94,102,90,115,100,85,90,87,96,105,101,106,119,85,94,100,111,85,113,99,104,96,98,98,117,119,104,94,107,95,118,95,100,109,105,102,101,115,109,109,99,91,97,97,100,93,99,85,101,104,99,88,97,101,101,102,105,103,99,109,85,97,100,101,101,95, +400.6405,101,95,108,95,88,101,104,80,88,98,99,89,91,103,91,103,98,105,83,103,121,98,94,83,108,105,100,103,101,92,94,99,105,100,97,91,110,100,104,95,93,109,91,100,104,94,98,96,89,105,99,98,100,81,105,96,80,92,80,88,104,99,99,106,103,97,87,98,97,92,103,90,88,115,93,94,102,98,91,88,97,97,92,90,101,88,91,98,87,98,93,106,91,100,105,101,90,97,96,102,101,84,94,93,101,100,101,91,95,99,97,98,91,97,86,95,101,90,110,101,87,107,103,100,102,108,109,97,106,97,100,102,95,108,86,98,97,110,85,97,88,102,100,102,91,97,103,90,100,97,90,106,101,92,104,105,105,90,105,97,88,84,94,124,97,91,97,97,110,79,79,107,101,101,110,101,105,85,96,91,101,102,93,105,100,77,90,95,98,95,117,95,105,96,101,91,93,96,106,104,91,98,104,104,93,96,85,110,102,106,101,108,93,114,100,96,74,110,105,97,101,101,107,103,82,108,102,95,100,108,113,109,98,92,95,98,102,106,94,98,103,104,99,97,86,98,106,91,113,99,103,96,111,93,91,114,106,105,102,92,93,103,92,109,98,103,93,105,91,99,112,96,106,110,98,97,91,106,94,94,90,97,97,100,106,100,93,95,102,100,98,99,115,94,95,100,113,97,96,95,92,101,93,103,95,102,103,101,89,108,102,104,104,110,114,98,96,98,91,99,97,98,108,101,101,98,93,100,93,107,106,90,110,104,100,93,105,99,105,76,101,97,109,91,92,97,95,103,92,97,100,94,100,96,101,92,105,103,92,105,88,98,95,95,94,109,91,95,97,115,81,97,91,105,100,85,114,94,100,92,103,92,94,102,96,83,90,116,103,94,109,103,96,101,99,102,86,97,100,103,91,100,104,109,120,97,91,102,96,95,90,97,68,97,77,98,126,101,113,88,106,102,91,108,112,95,96,96,100,100,93,86,103,93,107,105,96,109,87,102,104,91,105,103,105,107,114,106,101,96,104,103,85,101,95,95,100,95,103,107,94,95,115,99,101,92,95,99,95,102,100,96,97,105,98,108,97,101,98,104,103,71,114,95,101,107,108,91,104,94,96,110,84,110,102,99,87,95,86,88,110,114,120,107,105,108,95,97,95,95,98,99,102,105,101,98,110,100,104,107,95,95,99,99,87,106,102,90,104,104,98,104,98,99,95,109,121,87,96,70,92,118,100,97,96,98,102,101,102,109,100,105,103,93,91,100,109,91,103,84,99,97,96,96,112,109,109,101,113,104,101,110,108,98,110,107,94,103,105,97,108,92,104,106,108,109,119,104,106,105,105,109,70,113,98,107,106,93,106,106,110,103,106,106,98,97,109,105,91,95,98,109,86,90,83,112,98,104,90,106,112,95,122,109,102,96,87,96,104,106,83,99,98,101,92,105,128,99,108,114,110,91,106,114,104,96,93,104,102,106,89,99,101,97,84,104,100,105,99,116,122,106,109,92,105,115,100,96,105,94,109,97,99,119,100,106,110,87,104,105,103,105,112,99,104,101,105,111,103,90,109,100,97,113,100,100,105,113,120,101,97,108,121,96,99,106,97,102,103,87,97,105,98,109,97,97,90,111,104,99,85,91,91,109,100,94,91,99,93,116,120,111,97,104,102,108,98,99,103,89,103,101,106,95,101,113,111,91,98,104,106,101,101,99,100,93,105,96,114,89,91,101,83,101,99,101,90,94,97,109,112,107,113,108,94,105,95,68,109,96,94,103,109,100,95,95,99,112,100,100,112,103,93,89,117,93,103,91,100,109,99,93,93,90,98,104,94,96,109,105,104,92,101,109,99,95,101,99,97,105,96,92,104,99,94,95,98,76,100,96,98,95,107,104,104,103,108,106,97,101,104,96,96,98,109,102,114,106,101,98,99,92,107,110,99,88,68,83,95,109,101,96,109,71,94,108,63,98,96,99,95,100,95,114,96,100,103,90,99,75,102,107,97,96,96,94,98,94,87,100,99,98,92,99,102,100,88,95,111,99,109,87,110,96,103,94,96,98,105,106,107,109,92,99,115,95,109,98,96,92,101,98,127,104,106,85,101,87,96,100,92,100,100,104,106,106,104,95,89,102,96,109,97,111,98,105,82,97,106,97,101,109,108,98,109,98,100,90,93,104,100,112,91,88,102,106,93,102,75,108,95,107,99,95,99,109,93,99,103,117,104,98,100,104,104,104,96,105,117,103,101,92,104,100,101,92,97,97,95,94,95,101,96,89,116,99,101,97,94,100,91,94,100,105,104,108,91,92,99,82,97,108,99,93,100,116,95,86,103,97,106,89,90,86,96,100,81,95,85,92,99,104,97,86,78,96,101,100,90,88,97,107,109,104,115,90,104,101,98,100,82,101,101,88,99,95,87,95,103,93,96,91,86,100,108,101,91,80,95,89,99,109,108,105,95,111,92,90,100,96,100,97,97,99,85,99,93,107,92,104,90,107,94,102,103,85,102,108,92,97,106,104,107,99,111,96,95,96,90,108,88,92,94,98,96,110,98,103,102,99,79,105,97,109,89,100,101,110,116,97,96,92,91,112,99,95,103,96,107,104,102,98,113,111,90,91,113,110,90,100,105,98,103,90,109,91,98,92,104,100,92,101,70,98,98,106,84,107,104,95,103,92,102,105,98,103,111,91,95,115,92,88,103,94,105,101,108,105,106,96,104,102,107,89,110,100,90,94,103,96,109,87,109,108,100,100,102,91,94,98,101,98,101,98,103,94,99,99,104,108,98,101,90,121,101,97,107,98,83,105,109,88,103,91,98,102,106,89,108,97,87,105,102,101,107,105,86,104,101,108,96,94,101,108,108,83,110,95,104,109,94,98,95,96,100,107,80,103,109,117,108,89,112,104,94,87,94,97,106,102,105,109,96,110,95,106,96,100,103,92,94,101,92,106,103,102,111,105,97,93,105,103,94,108,95,107,104,102,96,72,103,118,111,104,91,93,75,111,105,84,104,103,97,114,99,102,88,104,102,110,98,103,100,97,112,93,110,111,113,106,105,105,106,89,89,80,113,97,96,99,102,107,109,87,107,93,95,98,102,107,98,80,85,103,89,102,99,101,101,83,91,99,103,100,90,90,84,94,104,87,94,101,94,80,98,95,104,100,92,109,105,105,86,103,99,108,108,98,106,95,86,99,103,103,103,91,101,101,92,99,97,95,91,94,93,96,109,95,106,91,112,91,112,103,96,99,100,94,97,106,91,99,103,93,101,97,97,106,87,95,113,104,103,101,94,107,104,97,88,97,92,112,98,95,99,119,102,120,94,95,92,96,96,102,102,110,104,105,93,101,103,107,84,90,104,88,101,83,106,103,95,103,98,96,101,104,101,95,96,95,88,99,103,96,91,108,98,102,103,111,93,92,97,93,101,104,100,101,96,91,109,101,91,98,95,96,96,100,92,107,102,97,98,90,94,90,105,115,105,100,96,103,99,70,94,97,119,100,98,84,103,97,110,103,96,92,99,115,106,101,101,95,97,69,94,93,107,104,95,100,106,105,101,96,101,98,101,104,81,99,102,99,95,111,93,89,103,96,89,92,86,85,101,96,96,102,105,94,112,93,100,101,102,93,103,96,109,102,96,116,109,88,97,94,98,113,96,97,106,93,101,102,101,115,92,99,103,99,102,75,96,100,100,103,87,104,106,97,102,91,63,124,96,105,112,109,113,102,98,99,109,102,96,93,105,102,100,84,106,97,102,100,104,104,103,94,101,97,91,95,109,103,107,93,99,99,95,99,95,104,108,100,99,96,109,76,115,105,90,108,106,107,97,108,101,101,81,107,94,90,95,102,101,98,95,111,102,89,104,101,95,97,98,94,103,94,106,100,102,112,107,103,108,108,92,88,106,99,96,94,103,104,101,96,95,101,103,107,104,96,113,109,98,102,104,101,109,101,91,103,81,113,106,99,98,99,97,84,107,103,115,96,91,96,104,96,99,106,106,102,101,103,104,95,97,99,97,91,107,113,97,95,115,102,77,93,87,106,93,95,109,90,89,118,95,115,95,96,109,91,109,103,99,98,92,100,101,96,90,99,94,95,107,107,95,95,102,94,102,103,98,95,103,98,103,101,88,114,100,101,104,107,100,96,107,107,101,88,102,87,99,114,104,99,81,97,90,105,112,96,88,123,97,103,86,81,96,96,96,109,96,85,94,99,104,99,102,102,110,83,110,88,117,100,100,95,73,108,99,104,99,109,105,95,106,103,98,109,96,108,89,109,101,103,92,96,90,90,110,99,102,113,96,111,113,103,107,101,80,119,101,102,92,81,101,110,93,103,96,95,98,106,99,109,101,99,89,98,100,91,95,96,109,96,92,99,106,103,112,98,95,106,94,88,97,101,94,88,100,97,105,116,111,87,98,95,91,92,116,103,95,104,101,109,106,90,93,100,98,94,95,95,102,109,111,105,94,108,75,107,99,95,104,95,100,84,107,99,95,95,93,97,99,85,90,116,106,99,94,95,91,104,102,103,100,107,102,87,106,101,95,103,115,107,87,103,97,87,97,95,92,92,102,92,90,103,98,105,97,97,106,97,97,105,100,98,95,111,102,96,102,108,122,110,102,104,103,101,95,109,99,103,103,88,91,99,101,112,95,102,84,104,100,98,97,103,105,106,106,92,103,106,86,98,112,98,103,97,95,103,92,97,103,106,102,103,72,95,102,107,99,95,103,109,104,92,93,99,97,115,85,102,99,93,107,98,91,117,93,91,116,93,99,99,101,106,102,99,99,101,92,98,90,104,99,109,97,88,98,98,104,106,98,100,97,106,92,105,100,87,99,102,94,96,103,90,76,128,106,99,106,107,90,91,115,87,111,91,97,83, +400.78061,112,104,117,99,92,89,86,87,104,118,101,96,89,99,91,93,87,102,96,107,101,98,105,98,99,75,91,105,92,100,112,112,99,108,112,101,95,95,107,98,93,81,93,102,102,100,89,93,87,97,108,108,102,96,95,89,96,95,55,90,103,97,93,99,99,130,85,87,101,101,100,109,104,101,92,93,104,109,88,100,100,106,115,88,111,80,99,99,98,116,91,102,102,106,99,90,97,101,97,99,101,91,108,98,95,94,95,95,98,94,97,98,88,117,93,96,106,102,104,98,102,96,103,97,106,107,106,110,109,111,100,108,97,102,102,105,101,108,103,92,83,92,95,94,91,114,91,106,96,105,115,113,101,95,91,106,107,98,105,95,88,94,94,105,99,103,94,98,94,97,95,104,100,108,103,120,109,88,111,103,102,97,95,109,105,102,93,98,95,103,87,100,94,105,97,112,94,102,108,104,98,95,102,101,104,112,97,110,96,103,84,106,103,95,108,95,92,112,100,91,102,108,95,101,94,103,108,105,95,102,90,108,100,98,95,110,95,98,101,93,96,98,98,101,98,99,99,99,101,113,112,98,100,113,108,110,108,76,96,106,92,119,109,106,101,97,96,102,99,90,99,105,92,114,89,101,98,96,95,104,107,103,100,99,95,89,102,99,106,107,90,93,99,90,104,101,108,99,95,93,97,109,103,106,87,104,99,104,100,101,97,112,102,100,107,114,90,104,101,94,107,100,97,112,109,107,92,102,104,108,87,112,96,100,91,107,110,102,96,100,93,91,115,102,102,99,90,122,98,95,98,105,108,93,98,89,102,106,104,105,109,102,100,108,99,106,107,116,99,138,115,112,108,116,110,82,98,97,92,109,92,72,101,94,103,86,93,95,89,107,111,100,103,100,95,91,97,103,109,101,101,96,101,98,98,92,99,99,95,91,103,95,86,104,98,91,96,95,112,107,95,96,94,99,98,100,95,99,100,105,100,120,105,99,91,102,98,94,96,92,113,104,97,98,105,96,82,99,95,111,92,98,89,103,98,90,98,96,99,99,101,78,97,98,109,101,96,102,101,97,102,95,104,102,89,97,88,109,102,74,109,102,102,89,105,109,91,102,106,101,101,106,102,115,98,99,101,101,100,94,106,95,98,104,100,95,100,101,91,109,113,98,87,115,104,100,103,91,98,101,104,71,94,105,113,95,119,92,112,91,90,94,96,97,101,98,111,99,100,108,108,110,103,105,102,94,88,93,95,109,99,105,96,96,106,98,103,120,99,99,99,101,100,103,99,102,105,72,108,116,99,99,109,103,109,104,93,103,96,98,97,107,99,98,100,110,115,102,98,90,102,83,103,98,104,100,104,114,95,106,100,111,106,110,91,93,101,100,103,100,99,99,96,101,103,102,97,98,106,97,107,99,91,96,103,84,74,80,112,101,100,101,96,102,92,90,111,97,105,108,106,92,107,91,93,90,83,93,99,84,92,99,104,104,112,97,83,102,83,107,108,104,95,87,93,103,100,92,104,96,128,111,104,107,90,107,97,102,110,98,104,98,82,82,96,98,83,100,97,105,98,100,107,100,87,91,100,94,96,106,107,106,112,91,100,100,111,110,81,101,103,91,92,116,92,92,90,78,100,91,102,99,111,105,102,89,101,106,91,104,99,92,108,104,109,90,104,81,101,98,109,103,96,97,93,98,106,92,94,99,109,104,95,88,103,94,107,106,98,98,93,87,96,90,92,95,101,106,106,106,132,98,97,96,108,93,99,104,105,99,106,95,90,104,94,89,101,101,99,92,99,112,102,109,109,89,100,105,103,99,89,71,98,102,103,89,92,98,94,101,104,99,91,114,91,96,104,111,106,101,102,106,101,101,112,100,100,105,100,112,94,96,100,102,121,104,103,97,97,105,94,103,105,104,84,96,96,98,110,93,90,107,99,99,96,100,117,102,122,105,90,98,98,104,97,60,102,104,112,105,104,95,106,109,102,101,111,115,95,102,106,102,103,113,91,98,93,114,110,101,96,89,102,91,112,105,104,112,87,92,110,103,107,88,90,102,103,91,95,99,104,96,98,110,109,108,96,96,91,105,108,94,113,98,108,100,96,95,104,91,107,100,82,108,107,96,88,104,99,104,104,105,94,101,104,105,102,99,95,102,93,115,98,103,106,102,86,96,94,97,113,112,90,105,103,101,99,105,88,88,100,91,96,84,110,103,108,94,98,100,79,105,101,91,95,101,98,109,99,88,85,101,101,113,104,88,97,108,87,117,113,98,106,94,97,112,97,99,101,86,88,106,108,105,105,104,94,99,107,100,117,106,107,95,92,97,109,103,102,89,99,104,104,86,103,91,100,97,94,69,96,96,83,110,89,96,113,95,87,108,107,104,82,95,102,97,106,89,102,121,99,99,106,108,101,103,100,96,103,102,92,106,95,92,102,98,107,95,98,117,104,101,88,109,95,94,97,86,99,102,103,101,97,96,101,112,95,95,100,109,107,101,102,97,92,108,98,107,101,120,95,107,124,108,100,99,107,98,101,110,109,109,93,99,104,99,104,102,102,84,117,95,101,95,95,110,106,109,101,104,104,85,96,111,102,98,109,101,96,88,102,97,98,107,112,104,107,113,109,103,108,102,101,92,102,99,107,94,99,98,102,83,107,101,97,104,113,98,114,98,101,104,86,101,93,104,108,90,88,102,104,113,109,116,85,105,106,94,94,104,112,105,100,98,104,100,95,109,101,97,106,104,101,95,94,108,114,103,98,105,99,104,103,100,108,113,105,110,96,92,106,101,94,113,104,97,84,101,99,102,104,92,94,96,100,109,103,102,91,105,101,104,87,101,100,103,107,113,97,109,96,96,104,105,108,103,113,112,87,106,98,109,109,111,100,93,99,96,95,102,105,91,107,113,103,102,97,96,110,106,87,100,94,98,95,104,99,104,107,104,102,106,91,102,99,91,83,108,104,111,109,98,97,92,100,107,117,102,104,107,111,77,100,101,95,100,116,116,102,98,106,88,106,102,105,109,112,102,109,97,93,96,107,92,108,106,100,101,99,99,105,101,106,99,96,115,75,96,98,98,103,120,72,102,101,95,98,106,96,93,91,95,95,117,100,91,92,107,102,105,97,92,97,102,102,92,101,99,109,98,95,98,116,100,90,88,106,94,103,108,112,112,94,101,90,103,107,101,107,105,108,93,98,105,102,104,108,106,117,104,108,111,95,98,94,108,88,97,92,113,94,107,124,76,120,106,111,109,99,96,101,106,113,99,100,103,94,112,109,89,92,113,95,99,99,99,104,101,101,100,98,101,108,102,105,97,99,88,90,102,97,113,97,102,112,114,99,99,100,72,95,114,99,107,106,116,100,95,107,93,100,112,108,97,112,102,103,102,110,77,100,117,93,107,89,88,111,100,99,95,95,104,98,98,102,99,93,115,103,104,98,96,87,101,107,107,95,98,99,102,107,112,109,91,98,102,108,109,112,97,110,116,94,89,100,103,102,111,97,95,97,98,97,104,106,105,104,113,101,108,113,97,108,94,102,102,94,100,110,113,109,92,95,97,116,106,75,95,104,94,96,99,101,110,111,94,106,97,99,96,91,97,106,97,112,103,98,113,108,100,106,102,107,106,98,112,105,95,101,111,87,87,85,102,92,109,103,113,106,96,113,101,101,99,100,105,97,94,100,94,102,99,97,99,87,95,100,105,103,99,95,90,102,102,115,100,113,110,106,117,101,119,98,94,108,110,114,90,107,99,100,104,104,111,104,77,106,127,105,93,99,100,108,116,104,113,103,100,95,106,105,89,110,110,106,104,105,95,96,103,87,111,112,102,108,96,104,99,105,96,109,113,91,101,98,107,99,87,109,97,101,102,99,112,108,117,91,107,103,112,108,99,102,102,103,104,108,95,110,102,104,82,105,101,92,107,106,95,98,107,79,97,89,109,115,113,107,103,111,109,119,105,92,99,105,92,101,102,94,94,108,106,108,101,105,87,90,101,109,100,98,103,91,90,105,94,103,109,98,106,106,95,92,88,106,96,105,110,99,113,103,101,100,101,105,100,89,92,109,99,103,106,103,112,103,95,91,105,102,103,111,104,109,97,100,103,98,101,109,102,88,96,106,109,82,96,89,100,106,106,105,103,97,98,106,107,107,118,79,87,103,103,105,101,106,86,92,103,105,108,91,98,88,101,101,96,108,98,112,110,97,94,103,97,95,101,117,112,106,101,117,105,98,97,91,101,91,98,101,117,108,101,103,98,102,100,103,97,91,99,85,107,98,109,105,99,94,99,92,113,94,91,106,87,101,93,108,97,91,104,99,102,115,103,98,103,87,102,99,77,102,103,110,95,97,104,110,103,93,123,85,102,91,92,104,103,80,116,104,102,83,94,117,99,96,106,85,98,101,114,101,93,95,96,100,98,97,106,106,80,91,103,100,116,96,99,97,91,110,84,104,99,95,101,121,102,91,100,98,113,96,109,91,120,103,95,88,106,98,94,96,92,107,101,107,104,99,100,80,90,92,102,103,100,103,99,102,96,92,97,102,105,105,111,103,108,97,98,100,117,106,91,99,108,108,98,106,100,109,100,108,102,86,95,110,107,103,101,101,113,111,88,102,90,101,93,111,100,124,104,104,87,106,112,105,93,86,101,87,96,109,94,72,108,109,101,105,95,87,101,101,98,106,86,99,91,99,88,101,87,96,106,98,110,107,110,117,76,103,90,99,105,105,106,105,105,102,110,101,88,86,90,97,95,81,99,97,106,98,105,98,113,93,104,90,98,87,99,112,98,102,91,105,99,110,100,95,101,96,98,101,104,105,101,92,111,101,112,93,88,84,99,116,91,103,98,93,105,108,101,97,101,84,100,91,96,98,85,105,75, +400.92075,102,91,89,100,99,80,95,62,103,101,117,112,113,99,101,104,100,106,101,99,100,101,97,99,96,77,97,104,89,109,90,102,95,98,92,97,96,101,100,104,96,101,105,105,96,114,116,101,94,107,90,91,94,93,96,100,95,101,98,101,82,91,108,104,98,84,101,104,87,92,106,101,93,100,99,92,93,92,105,103,104,95,93,96,97,93,95,106,102,97,108,96,99,104,109,119,86,107,90,101,89,105,98,106,96,100,83,102,92,94,116,110,99,100,90,95,101,99,88,99,102,83,91,101,94,106,99,77,102,94,102,101,96,95,92,105,111,100,96,108,99,103,92,115,102,88,102,102,91,84,103,115,108,89,101,90,92,99,108,102,102,104,97,105,90,76,91,97,103,104,103,98,81,107,99,79,101,102,92,105,97,100,93,101,90,102,96,85,100,78,91,91,102,104,97,114,88,76,94,99,103,94,107,98,106,101,100,90,97,107,101,100,90,99,110,98,96,92,99,96,93,94,108,106,101,110,102,99,100,86,107,100,102,96,105,113,95,93,89,101,100,96,91,94,108,101,99,130,96,105,100,96,100,115,71,96,103,98,97,89,113,100,99,96,108,92,92,96,112,108,96,103,97,100,111,109,91,97,93,94,97,108,88,107,117,98,90,102,93,103,90,92,108,98,105,109,99,92,95,108,97,101,96,115,101,105,80,106,103,108,94,103,101,106,97,103,98,102,90,97,79,89,99,99,105,107,101,96,101,116,108,97,104,88,109,101,101,106,90,91,107,96,100,101,100,102,106,103,106,101,96,105,94,106,107,98,109,104,96,103,104,106,106,93,102,93,90,102,95,102,110,93,95,109,101,87,96,100,102,104,62,103,99,103,99,95,99,108,88,98,102,95,102,106,100,96,102,103,108,111,98,90,108,108,91,107,98,96,95,93,102,94,108,96,108,97,85,93,96,91,106,99,99,101,99,95,108,102,97,107,98,110,103,100,92,88,90,97,113,102,103,103,108,108,118,106,86,98,97,101,96,105,92,104,98,99,105,96,103,97,121,97,120,110,98,98,97,104,94,71,96,103,90,99,96,105,87,101,91,97,83,98,105,105,84,95,100,107,105,105,101,94,98,108,103,99,106,106,102,101,100,108,103,93,93,99,94,100,100,108,101,97,114,71,96,98,97,95,90,90,104,100,96,114,90,106,115,97,95,99,103,109,110,91,76,90,96,104,93,89,102,102,103,98,107,104,103,87,87,111,93,118,89,92,88,101,99,101,95,102,89,85,96,92,97,101,99,98,108,110,93,91,98,103,112,116,100,97,106,103,106,93,104,98,100,89,102,100,95,89,98,104,96,84,116,121,92,97,101,100,96,102,101,90,103,103,93,98,88,95,102,105,110,106,97,90,122,91,95,92,102,99,118,108,103,95,97,110,94,91,100,90,91,101,83,108,96,105,85,103,105,99,106,97,93,86,95,100,109,101,90,102,94,99,104,99,117,107,116,108,104,105,96,110,74,101,109,93,96,109,111,86,104,103,90,111,106,94,101,105,110,99,95,90,94,104,98,95,100,95,94,95,105,111,99,98,95,90,111,97,106,103,107,107,105,92,93,103,96,116,101,92,103,91,96,112,93,104,98,87,91,89,101,94,98,101,104,99,93,106,98,96,126,100,87,120,106,95,106,101,83,103,103,98,92,72,108,89,90,110,103,96,108,95,94,78,106,97,104,92,99,105,92,92,97,107,90,99,96,100,93,96,96,88,95,111,102,97,77,98,102,97,107,103,97,100,86,109,97,103,114,93,101,107,93,105,86,88,95,93,95,99,89,103,104,102,90,89,77,91,92,98,107,107,116,89,118,106,103,95,91,104,101,95,93,105,107,107,107,97,105,95,104,95,97,98,94,99,102,117,97,107,106,95,102,109,117,114,100,95,97,92,91,108,92,92,107,79,101,100,104,95,102,96,89,110,89,94,109,106,101,64,100,99,100,112,92,100,100,98,106,96,97,104,93,109,100,107,99,102,98,113,95,99,110,97,111,96,99,111,87,106,102,93,105,90,105,114,95,109,93,93,113,106,102,103,102,105,114,96,89,110,101,100,106,117,91,100,104,97,96,92,95,101,105,91,94,95,107,98,100,92,88,99,95,87,105,107,99,97,99,98,95,99,101,99,96,105,96,104,98,96,107,95,97,108,101,94,105,99,95,91,90,96,98,101,100,90,87,91,91,103,113,91,92,101,101,97,96,88,106,108,94,104,94,101,91,94,104,103,94,99,96,98,114,106,112,108,102,104,96,99,97,107,100,72,90,108,89,96,92,105,93,103,99,98,89,111,110,97,101,105,101,106,110,100,94,107,102,104,102,93,93,105,101,90,107,87,104,98,97,103,102,93,101,103,97,85,102,98,93,101,105,111,110,111,94,100,91,72,95,98,94,96,83,114,94,110,103,108,87,102,99,96,104,97,100,105,103,101,104,98,98,91,105,103,97,95,90,98,95,105,103,92,105,105,99,105,91,98,73,105,106,100,97,100,89,105,117,93,100,107,106,95,98,101,95,72,103,105,91,99,105,93,100,112,88,100,96,97,101,96,90,97,94,93,100,108,101,92,100,102,112,98,108,96,106,86,98,110,113,101,91,95,95,98,107,99,94,101,103,94,103,92,95,97,94,102,108,118,106,108,83,101,107,95,104,76,102,99,101,101,106,101,101,108,101,108,96,97,94,95,88,102,103,98,78,96,98,108,87,100,97,93,100,96,98,112,109,99,113,106,92,98,101,87,97,117,101,87,96,97,100,111,99,108,87,101,98,114,111,109,105,98,97,102,102,102,100,105,100,100,100,91,94,103,96,97,95,107,98,99,102,96,96,87,105,109,90,98,95,107,109,105,100,93,95,109,96,96,92,104,105,106,99,109,77,96,98,94,103,102,110,104,103,97,97,104,104,97,89,92,99,109,103,94,100,104,83,112,96,92,102,88,93,99,100,103,125,93,83,102,108,97,111,103,104,108,98,85,105,81,104,112,102,103,97,82,82,101,105,109,98,91,104,104,107,107,91,108,108,75,107,102,102,97,108,108,98,86,101,100,95,99,104,99,109,89,103,113,85,95,99,99,100,99,97,103,118,96,93,95,64,109,103,84,99,100,100,94,100,84,98,99,105,112,98,96,108,98,99,96,93,98,110,104,95,97,91,136,85,96,72,98,109,95,103,97,105,105,73,102,86,90,94,100,107,107,116,92,95,96,103,104,101,115,104,110,95,130,109,114,119,101,105,108,101,104,101,96,106,96,104,118,106,91,108,103,105,100,105,105,89,105,98,98,106,95,88,92,93,111,105,90,106,99,100,99,93,93,94,106,88,96,105,104,103,105,100,97,103,94,99,99,85,91,96,99,96,125,97,89,96,94,94,98,109,106,107,109,94,98,104,102,98,95,116,101,104,99,109,97,96,99,90,108,108,98,110,102,94,118,90,88,98,128,99,102,111,85,99,106,91,110,113,106,93,95,98,100,102,91,98,106,101,101,105,95,97,100,99,97,96,102,72,99,86,94,97,101,105,103,94,98,100,100,117,99,85,94,103,99,98,105,95,105,100,87,108,105,105,105,81,89,98,102,96,114,88,101,88,106,96,101,91,97,109,91,117,106,101,98,105,85,95,106,101,104,95,99,95,91,109,97,94,88,94,91,101,95,93,105,100,106,101,102,94,102,102,108,96,102,111,103,106,93,111,90,105,97,98,101,98,98,101,74,94,102,109,97,91,93,103,112,100,113,106,93,113,96,89,93,91,108,101,109,111,101,95,109,131,112,100,113,107,112,116,98,100,96,106,106,94,94,96,95,100,106,104,98,103,89,107,115,97,100,100,98,119,99,93,97,89,91,105,97,101,96,116,113,128,97,91,84,93,94,101,98,98,107,98,105,107,104,98,103,98,100,91,86,93,99,107,98,94,115,107,102,102,95,102,95,102,93,91,97,102,104,99,92,103,104,95,101,105,99,114,98,98,107,109,100,105,95,104,108,87,97,102,110,91,100,103,100,95,109,106,96,95,98,119,95,107,88,98,87,103,91,96,96,107,106,89,115,104,97,101,114,92,102,100,98,100,108,107,107,101,97,106,107,108,95,96,88,96,107,93,96,88,105,101,91,93,98,92,106,91,98,102,98,106,93,101,101,119,100,103,99,95,99,100,106,112,99,110,90,87,97,94,100,90,88,103,98,97,101,108,97,104,105,97,83,92,98,94,114,108,97,77,105,142,93,97,105,100,106,116,99,95,109,107,98,106,103,117,96,95,98,95,105,101,91,96,95,105,109,97,98,98,99,100,103,103,99,84,102,103,98,107,90,100,117,91,107,101,98,100,110,96,105,108,101,95,98,105,104,100,100,102,103,97,89,92,110,87,112,94,89,91,106,99,82,95,97,101,105,96,96,92,105,103,105,93,98,91,96,94,87,98,97,107,95,104,101,90,83,102,98,96,112,89,117,96,98,91,87,92,96,95,100,100,106,96,97,91,111,103,108,100,95,105,109,109,123,100,95,79,102,91,98,104,100,98,99,104,95,107,93,96,123,100,95,93,110,101,89,94,94,101,94,98,99,103,105,92,95,113,105,98,88,83,90,94,97,103,88,87,106,96,107,100,97,107,93,79,100,91,94,96,103,112,96,93,98,109,95,99,95,86,95,116,92,94,103,99,101,105,91,84,102,90,107,91,101,98,99,95,101,102,119,77,102,80,100,105,112,96,94,110,99,98,102,94,105,105,110,104,100,96,104,109,74,99,93,119,105,119,95,106,94,98,98,101,94,88,126,110,95,106,59,93,100,98,104,102,110,94,109,102,91,99,106,105,108,91,101,87,98,108,101,105,107,102,94,94,89,99,107,102,100, +401.06088,97,97,97,104,97,88,104,84,90,86,92,90,93,113,99,94,91,100,97,93,109,87,102,95,113,112,94,129,101,98,79,105,99,111,97,109,98,83,101,96,103,94,105,102,104,92,104,93,87,99,101,122,89,95,106,94,87,91,104,81,99,103,97,103,97,100,102,100,80,100,104,99,91,100,100,104,95,96,106,102,101,96,108,104,95,87,103,93,100,93,98,104,95,98,117,93,102,93,104,88,99,112,102,101,95,100,98,100,96,99,99,104,103,104,95,91,104,93,102,98,96,97,95,106,105,111,98,85,108,104,99,101,102,95,100,102,98,73,90,94,103,98,101,94,103,95,103,100,93,111,104,95,95,100,94,100,97,94,93,99,95,90,109,90,92,104,94,97,95,97,106,104,90,94,101,98,105,93,99,90,108,97,108,114,104,106,99,94,109,102,95,97,105,87,100,117,99,106,102,120,100,101,101,101,100,94,91,102,95,116,104,99,102,100,103,90,99,103,110,102,112,114,106,98,86,91,103,105,103,97,97,123,99,89,110,100,102,96,90,101,92,101,125,92,106,98,111,98,105,96,102,97,66,100,103,97,101,105,100,96,87,106,87,90,101,99,97,101,97,95,95,100,90,102,106,99,95,99,105,94,89,101,103,107,102,91,97,91,96,98,99,105,95,100,105,103,104,88,88,92,116,105,106,117,108,108,102,108,104,102,86,98,102,100,109,97,90,105,98,99,101,104,111,100,89,104,91,95,99,95,110,104,107,107,95,98,96,78,96,88,99,98,105,92,90,101,102,85,100,101,108,92,98,98,92,103,91,106,103,111,112,89,92,100,98,97,107,111,101,112,100,112,100,98,96,101,106,89,94,102,109,102,105,108,110,97,104,99,109,95,109,89,100,79,104,105,108,97,117,114,103,108,102,101,101,97,104,96,119,98,93,105,112,106,105,102,100,79,99,91,101,97,94,90,98,97,92,100,97,109,98,103,105,95,94,103,104,103,101,97,99,96,98,109,105,101,91,109,106,106,91,96,100,110,90,113,93,94,109,91,106,87,95,101,100,100,91,111,104,102,105,112,102,100,95,93,81,95,100,102,102,110,107,112,104,89,99,97,105,100,120,101,102,99,97,100,101,104,96,100,108,97,101,111,106,91,94,98,98,93,104,98,100,108,98,103,97,91,100,106,102,100,102,99,107,115,103,100,95,105,102,103,88,93,108,92,91,85,92,97,91,89,102,96,104,101,101,105,102,96,101,105,106,105,109,105,110,104,101,96,98,98,105,102,91,95,107,88,107,95,93,104,92,89,105,100,101,100,84,104,103,100,105,103,98,104,100,94,99,101,96,97,87,102,110,106,100,104,108,91,114,98,100,94,102,110,99,101,94,105,102,94,111,96,92,86,101,100,103,103,112,107,120,100,87,65,84,98,87,105,101,106,88,102,103,107,99,82,92,99,104,111,101,95,94,96,102,109,104,96,95,100,99,104,105,93,94,93,91,97,111,112,98,96,100,97,101,90,101,94,106,90,98,91,94,104,104,97,107,95,94,92,113,98,106,97,101,101,90,113,93,103,87,118,101,109,109,99,97,99,91,98,101,97,98,87,91,110,101,99,105,100,102,98,103,99,97,107,102,96,106,94,86,94,89,96,107,104,102,105,112,99,107,105,125,89,96,93,103,107,104,94,103,118,104,105,94,99,99,105,112,96,104,105,89,103,97,105,100,103,102,103,92,111,102,89,98,96,96,94,95,110,95,97,101,86,102,104,100,100,97,110,97,74,116,95,100,92,100,105,102,108,92,104,96,104,96,92,102,107,107,106,100,91,109,99,93,84,99,100,106,102,103,105,99,97,87,100,106,112,100,108,96,109,98,97,106,121,99,106,106,91,101,103,100,101,106,69,79,96,99,107,108,79,95,82,100,97,108,76,98,93,99,105,115,126,103,99,107,109,112,105,106,96,99,102,96,106,100,111,91,102,107,106,101,89,95,101,94,91,94,108,88,89,96,89,99,108,111,110,97,91,92,102,103,89,95,103,79,102,103,101,97,94,88,88,93,100,92,99,105,102,108,98,97,96,103,110,87,101,103,85,104,96,100,93,98,96,94,99,97,99,110,113,91,117,95,104,85,103,101,88,113,103,103,109,99,111,100,101,106,95,106,108,97,107,71,105,91,103,110,120,100,100,104,112,88,101,102,102,92,107,91,109,101,96,98,95,109,101,91,104,97,101,118,71,106,94,90,98,99,86,98,103,100,104,115,117,106,95,104,91,94,102,103,106,88,99,104,109,98,102,107,103,103,101,107,103,98,106,106,111,101,80,98,94,97,106,128,93,97,108,90,87,117,105,96,109,108,103,96,108,101,101,86,101,95,98,97,88,93,85,109,96,100,96,94,94,81,103,92,110,97,106,96,98,96,101,101,108,103,99,100,86,98,94,105,101,98,91,101,96,90,92,99,102,99,100,105,105,107,90,110,85,102,98,105,100,100,83,104,99,103,95,102,87,96,100,88,99,92,105,101,100,98,102,92,107,94,107,103,103,102,94,87,93,97,105,112,97,99,96,102,89,102,99,132,94,88,102,98,95,86,91,104,106,112,96,112,95,102,106,99,104,106,105,103,95,100,108,99,83,105,100,91,109,106,102,112,98,99,94,105,103,113,102,94,109,98,101,99,95,133,97,108,117,92,100,98,100,64,99,108,93,91,99,94,106,97,114,97,107,99,91,105,101,87,97,99,116,80,106,109,99,100,96,102,106,107,97,95,95,102,104,94,107,108,94,100,94,103,97,101,106,103,93,112,95,92,111,100,97,100,98,112,103,95,106,106,106,114,109,84,97,109,99,96,98,101,92,102,114,101,96,107,88,104,96,104,94,109,90,100,96,103,104,101,101,98,99,83,92,101,113,107,97,102,101,105,114,96,114,96,97,103,104,105,99,95,100,108,94,94,92,100,104,106,109,92,87,95,97,94,108,112,109,106,99,105,93,102,103,78,105,109,86,82,112,112,106,97,110,111,99,99,103,100,102,93,104,91,105,102,91,106,104,109,87,121,98,101,112,94,104,102,99,108,97,105,95,94,121,109,117,108,82,108,102,91,94,92,88,100,105,104,109,98,94,95,101,80,104,100,102,100,94,105,96,105,103,99,95,95,107,110,104,107,97,100,112,105,105,104,104,96,105,107,109,99,103,95,105,99,106,102,83,98,98,103,95,105,96,95,98,95,94,92,100,96,91,103,101,107,106,117,97,92,106,97,97,101,101,104,108,104,100,95,105,106,96,96,92,87,88,104,119,103,91,104,105,98,104,105,110,103,108,96,98,95,89,101,103,97,101,88,97,101,103,104,100,101,113,108,106,100,99,92,89,97,99,104,95,84,105,94,107,95,90,103,95,94,95,99,106,107,101,99,112,101,105,92,96,94,102,97,111,105,109,91,88,98,109,97,96,100,105,105,103,100,102,104,95,102,99,100,109,102,112,91,104,105,109,88,104,102,94,96,95,83,90,104,104,101,119,106,104,99,103,97,113,111,99,102,107,104,116,102,112,112,102,104,109,100,100,103,113,101,96,96,100,85,94,98,110,102,100,99,101,93,104,104,97,97,90,101,102,91,110,88,94,87,98,107,91,101,95,92,105,120,104,99,96,113,105,98,79,104,109,103,95,102,112,108,104,100,100,102,103,108,96,108,98,98,110,99,105,106,109,96,91,97,87,106,107,99,84,103,106,106,103,111,99,93,98,106,105,98,102,100,107,109,108,109,98,103,100,110,85,102,96,107,104,102,115,98,105,99,108,103,88,116,92,108,104,103,111,95,99,96,98,85,107,122,94,113,103,109,106,103,81,96,103,93,109,121,101,109,101,101,102,93,99,98,102,120,95,104,94,95,109,108,89,90,94,97,100,98,106,96,108,103,101,100,107,100,95,104,97,109,103,96,100,105,100,99,107,104,102,105,105,97,111,118,76,92,92,105,101,94,90,99,117,92,112,95,95,105,93,104,108,117,105,103,109,99,101,97,106,100,101,112,136,89,90,95,106,102,93,103,104,102,104,100,99,104,99,105,97,103,95,104,110,102,105,101,109,100,103,103,99,96,96,90,118,100,110,95,99,107,88,100,106,95,110,96,96,95,108,111,99,109,101,91,101,114,86,107,99,93,101,119,95,102,104,102,91,88,98,109,113,98,100,109,99,104,103,95,94,93,104,105,73,91,102,97,102,104,91,87,98,94,97,103,99,104,104,99,89,102,106,106,92,112,104,102,80,100,88,106,98,105,105,102,106,111,105,103,105,98,105,102,110,105,100,82,94,102,108,91,103,100,96,105,102,99,96,99,106,112,103,109,98,89,96,98,91,97,103,100,106,106,104,101,106,94,101,119,99,109,87,103,102,101,102,91,96,92,94,103,103,107,98,105,102,92,87,92,91,97,94,82,102,99,103,100,93,92,113,112,95,98,98,85,99,105,110,100,92,99,89,102,87,96,113,98,96,123,103,95,105,94,100,95,95,108,95,111,96,95,102,94,108,103,107,98,96,92,95,103,106,73,101,107,94,106,112,97,106,89,93,100,103,79,104,95,124,112,100,97,100,104,109,97,104,105,107,113,114,110,109,111,95,108,98,102,86,106,94,97,107,91,100,113,101,93,95,111,95,99,83,106,85,88,100,91,125,99,94,98,85,96,101,91,98,102,92,102,99,80,102,108,88,86,114,88,98,98,110,101,102,99,97,117,102,98,104,93,90,92,103,79,100,100,104,116,103,103,91,109,101,96,99,87,110,99,103,91,89,104,110,100,107,110,103,103,90,94,92,89,99,102,82,89,103,85,102,87,87,109,95,94,106,105,92,90,99,125,91,99,101,100,98,102,88,96,92,102,100,87,93, +401.20102,106,97,92,95,97,107,111,99,92,104,100,95,83,96,88,99,95,106,99,96,102,104,97,112,86,116,96,82,91,120,119,97,103,118,110,108,97,96,98,102,102,73,92,96,97,109,111,91,87,105,109,104,91,95,91,111,105,99,107,80,105,113,102,94,91,95,92,103,100,95,99,104,108,103,88,121,100,103,100,92,102,104,105,107,104,100,101,101,114,87,105,91,113,103,109,100,111,92,110,103,87,108,79,97,94,99,96,90,107,93,106,102,97,101,91,112,100,97,105,112,117,96,109,120,105,113,104,100,102,98,105,117,111,97,101,104,101,101,101,93,92,100,91,80,97,98,107,90,96,105,100,96,114,96,93,74,90,100,130,101,95,102,95,88,106,93,92,92,104,94,103,102,96,88,109,96,104,105,105,104,107,94,109,108,103,102,90,93,94,109,100,93,97,106,100,93,94,91,90,107,103,99,105,95,103,92,104,113,99,105,97,114,103,71,89,118,106,90,99,111,97,106,99,102,100,105,91,112,102,95,113,107,105,102,101,85,108,108,104,95,101,110,104,94,75,105,104,98,114,112,103,98,113,85,104,106,109,101,97,101,92,95,100,83,87,102,106,98,98,106,105,104,100,98,100,101,93,100,92,94,96,98,79,100,107,101,95,91,101,100,87,102,102,106,100,99,91,107,95,117,101,100,105,108,92,108,93,98,91,101,102,111,108,106,96,101,90,103,102,100,96,104,109,95,92,100,100,86,115,114,95,89,98,98,119,89,101,98,94,132,109,109,98,101,95,129,94,112,102,89,107,104,102,94,100,105,87,106,99,101,103,101,106,101,90,92,103,107,108,106,99,104,91,104,108,108,99,94,98,107,110,96,100,96,99,101,103,98,110,113,106,93,102,97,107,94,102,100,102,100,99,98,91,115,97,101,102,101,105,104,97,95,95,102,122,93,93,96,102,113,99,108,92,109,96,97,99,99,91,77,98,101,101,95,94,70,94,96,119,107,109,111,101,106,81,97,111,101,100,101,102,105,90,101,102,85,100,103,113,95,93,101,106,107,106,94,95,98,98,107,106,80,98,88,90,96,91,107,95,89,100,106,107,105,99,93,98,97,100,77,108,101,86,98,105,104,91,102,106,104,113,94,99,100,100,109,90,109,105,97,109,105,102,100,109,113,83,85,94,97,99,83,101,105,107,93,100,105,81,105,91,92,94,96,91,103,102,86,111,105,98,101,104,86,99,99,101,109,107,104,100,105,105,94,98,96,92,104,105,98,105,99,95,105,105,101,111,102,102,93,96,99,102,104,114,101,107,93,94,100,101,105,98,95,97,97,109,105,96,99,94,94,95,97,99,101,103,100,104,94,99,94,113,98,96,99,104,79,103,103,106,101,105,98,97,90,103,104,105,118,106,104,102,91,109,92,100,98,99,92,110,90,100,104,93,94,94,89,88,101,117,107,103,95,97,90,103,102,112,105,103,126,99,103,94,104,104,100,110,102,110,116,93,99,98,76,103,97,98,92,99,102,101,89,94,99,98,101,95,96,98,99,93,90,90,94,95,101,105,104,105,117,88,112,104,95,96,103,96,97,95,92,109,84,109,86,96,112,114,106,111,105,99,99,102,98,92,103,94,93,100,104,97,110,91,100,98,87,100,111,110,67,113,94,92,98,109,113,119,93,96,96,107,106,99,110,105,103,119,121,103,105,95,101,99,94,103,103,99,101,132,100,83,94,88,93,86,104,101,94,111,122,105,105,92,105,106,92,103,100,103,104,105,96,104,94,102,100,96,96,110,105,100,115,96,104,106,97,92,89,96,96,101,96,102,97,101,105,92,111,79,110,101,96,98,104,97,106,100,88,115,99,108,99,109,113,100,109,92,97,96,104,98,104,101,91,106,95,97,100,100,104,103,96,111,100,96,103,101,96,101,94,97,102,102,109,96,100,104,106,105,104,90,107,112,102,93,110,100,98,103,94,102,107,98,82,114,98,99,93,94,103,109,102,97,104,98,108,97,103,95,99,100,92,99,111,93,98,96,95,101,93,93,120,104,110,97,110,99,107,91,104,108,98,89,96,109,68,101,102,96,113,112,121,90,101,92,95,101,103,98,106,88,92,96,104,87,95,108,99,106,91,102,111,108,80,96,104,96,100,100,101,104,96,96,100,98,116,102,94,110,113,95,95,100,101,97,99,116,100,104,115,107,106,105,97,117,103,97,104,89,104,100,89,103,107,101,100,89,93,101,101,106,94,91,92,101,101,114,104,90,92,109,98,89,110,97,110,103,94,89,99,95,100,94,94,94,102,104,101,99,104,109,91,83,102,108,89,106,93,92,96,111,93,97,94,98,108,106,98,106,103,96,96,80,103,108,95,94,109,100,101,101,104,96,107,107,104,99,99,101,100,108,107,106,83,102,102,104,99,93,105,98,97,96,98,99,97,97,94,92,102,119,98,94,97,110,88,103,112,102,97,89,87,89,88,108,92,108,99,99,97,101,102,108,107,97,111,96,99,95,105,98,99,112,94,91,94,89,96,95,109,102,99,106,104,99,107,105,97,91,104,100,92,99,111,101,110,118,97,96,97,98,108,86,106,110,96,111,98,113,110,111,91,103,94,109,93,93,102,101,101,99,104,95,99,109,100,102,105,100,106,104,101,103,104,114,109,99,85,105,91,99,93,102,96,114,103,79,112,99,104,106,101,96,107,96,95,102,100,101,103,131,99,108,95,95,90,105,100,100,101,106,95,106,109,90,103,97,96,94,114,94,102,97,112,88,94,107,103,102,101,94,105,100,103,98,99,98,99,108,109,100,109,100,106,99,103,102,78,102,106,103,106,98,92,109,110,96,101,102,116,105,101,110,110,101,105,98,87,108,111,96,109,94,92,69,96,122,106,109,126,101,103,112,101,102,106,105,98,109,106,95,99,103,88,92,102,110,97,92,105,111,106,96,94,101,103,99,92,98,105,109,104,88,101,113,103,102,95,99,113,98,93,105,96,102,110,95,102,104,92,98,92,101,85,101,111,97,88,131,93,110,98,105,99,93,105,94,95,107,109,109,103,95,112,107,92,97,96,105,99,85,96,94,104,116,103,80,94,105,100,93,96,105,101,99,92,99,91,68,104,102,100,97,101,93,106,102,113,94,93,95,104,93,96,109,91,111,128,100,101,92,105,95,90,96,103,110,97,98,85,104,103,102,91,94,104,90,112,95,109,97,101,101,106,100,101,100,98,104,102,92,109,104,106,91,113,76,86,104,96,99,96,103,103,97,106,111,97,98,97,67,108,107,111,109,103,104,91,109,105,94,107,113,105,98,88,90,89,98,97,97,90,92,100,113,100,107,106,94,101,98,106,101,105,100,108,98,95,100,98,65,108,99,92,102,104,94,106,100,79,102,106,117,102,96,98,100,98,106,94,98,98,95,123,99,107,99,108,101,107,102,96,82,94,91,102,107,103,102,107,129,109,102,108,88,99,113,99,107,109,95,99,94,102,102,100,116,97,87,107,109,103,96,107,108,112,101,114,96,104,97,103,100,112,97,91,101,99,112,105,94,94,99,98,118,93,95,104,109,89,113,111,89,108,102,88,118,93,107,101,102,94,94,102,86,107,98,100,102,98,109,99,107,100,102,103,101,102,86,102,105,94,100,113,108,106,101,101,99,106,93,99,105,93,105,103,99,96,95,74,114,95,91,105,95,90,101,99,94,76,101,97,121,106,102,102,100,103,105,95,89,117,92,109,102,98,92,104,92,108,104,104,79,97,103,99,102,109,99,95,108,107,101,113,131,112,96,90,110,102,102,105,104,91,96,102,102,99,94,110,99,109,95,96,102,90,107,98,105,99,109,110,110,83,99,109,109,108,88,100,100,95,97,92,112,101,88,97,96,103,69,104,111,102,97,106,105,105,105,93,108,90,110,104,94,75,99,105,88,100,105,113,102,91,100,106,101,107,106,107,109,104,100,96,102,102,93,98,100,109,104,111,105,96,100,87,94,101,101,98,93,104,102,98,100,95,95,95,103,98,101,110,93,104,102,102,111,105,109,100,100,105,107,103,100,99,98,98,100,102,100,97,99,99,96,107,93,109,113,97,99,110,97,97,101,100,105,96,103,92,98,104,91,93,99,106,112,108,105,91,99,101,91,111,100,109,91,91,103,103,104,108,101,109,85,107,103,84,109,106,110,97,102,105,106,88,89,105,101,89,97,106,100,105,100,97,97,104,91,96,108,103,97,95,106,96,98,104,109,99,100,112,102,102,96,92,99,104,101,103,99,104,89,105,91,106,100,109,103,99,109,96,94,101,103,95,87,104,99,97,100,95,107,102,93,98,94,101,102,97,103,97,92,97,102,99,94,93,103,88,97,113,101,99,101,88,97,96,91,95,94,99,95,91,102,98,99,87,101,97,100,100,92,92,94,97,97,107,97,112,106,105,104,97,102,100,99,116,92,97,109,100,105,118,91,105,94,104,103,94,94,101,95,92,90,102,92,102,118,102,91,111,99,102,97,103,90,100,112,105,97,98,103,96,108,101,95,98,105,106,99,108,111,106,101,110,101,107,132,104,85,107,101,106,129,104,92,94,114,119,107,112,101,99,105,111,95,104,98,96,110,97,100,108,95,103,86,89,117,104,97,99,91,102,98,99,106,97,83,113,99,102,100,112,101,108,86,91,95,102,91,104,104,88,101,92,96,99,112,105,103,92,82,96,104,96,101,86,101,99,100,107,93,103,90,106,111,104,98,124,105,115,96,98,103,101,108,117,98,92,96,95,98,86,87,110,94,89,121,82,105,118,104,97,102,100,94,101,100,106,91,102,91,102,89,108,110,76,99,102,94,102,96,104,99,114,109,80,128,74,87,97,87,99,96,93,94,86, +401.34113,89,97,97,99,94,105,80,100,103,91,112,109,96,110,97,92,90,89,99,104,115,101,81,109,108,115,83,107,105,103,101,100,102,115,120,93,98,102,84,100,91,91,96,101,103,98,100,117,98,86,94,96,96,80,102,97,107,93,97,95,96,92,130,92,89,99,94,100,93,80,93,99,88,96,105,95,101,88,112,117,93,92,95,111,94,104,92,98,94,91,108,96,106,100,95,126,87,100,100,98,80,102,97,100,95,96,97,103,99,92,102,97,100,95,100,94,98,87,98,89,94,105,113,98,120,109,103,97,105,105,101,94,99,99,99,99,111,94,102,99,95,115,94,105,109,90,105,106,88,93,105,95,101,106,88,104,98,106,117,99,95,97,104,91,113,97,96,89,94,108,97,108,114,109,91,108,117,121,101,90,93,93,101,101,97,96,104,99,114,98,84,104,103,112,94,101,96,94,95,100,104,99,101,104,99,104,99,111,114,111,96,107,94,107,108,88,100,83,100,115,106,106,95,88,101,108,111,98,72,109,105,97,112,105,109,101,96,111,107,109,104,105,110,93,91,98,77,103,95,99,97,101,102,103,106,92,99,103,96,96,102,90,96,110,98,110,120,77,85,97,98,97,105,96,109,107,104,108,96,90,98,107,108,103,110,114,95,110,101,96,96,92,108,101,100,134,76,98,92,113,96,99,98,103,97,103,100,97,106,109,84,116,94,95,96,113,95,103,105,114,97,110,101,110,94,96,96,98,109,108,96,98,96,99,101,95,97,102,105,106,100,99,91,109,103,103,97,98,102,102,99,104,100,98,116,102,99,94,105,82,96,96,101,86,98,95,96,99,114,99,115,104,105,108,100,100,103,98,100,99,100,116,106,94,102,101,77,108,127,95,103,105,90,106,88,95,83,108,99,100,92,90,99,97,87,91,94,109,115,102,96,88,99,86,109,96,101,99,105,110,105,107,102,104,103,95,101,97,96,99,98,93,100,102,106,89,108,107,103,98,97,98,105,103,95,81,108,104,113,95,118,99,108,99,104,110,93,99,99,98,103,102,106,101,105,105,72,103,102,103,91,100,92,99,91,114,104,104,112,109,107,98,98,103,95,102,101,102,101,100,107,97,102,95,94,100,93,84,100,90,106,100,110,99,98,106,96,77,87,98,104,100,99,99,111,106,103,99,101,97,92,113,95,98,103,100,117,105,101,96,93,103,103,101,95,97,111,95,79,107,96,96,77,99,107,91,99,111,97,110,100,100,104,89,101,101,96,91,107,111,94,96,101,100,103,98,106,90,95,114,96,107,110,112,110,96,102,106,102,111,102,101,103,96,109,95,112,98,107,95,96,102,98,99,116,110,96,98,101,94,90,103,109,106,100,89,83,91,99,117,96,96,102,95,109,77,107,102,92,98,101,101,106,95,118,99,106,130,100,101,102,95,105,108,90,94,103,91,102,99,107,106,99,100,91,100,95,91,99,102,96,103,102,108,97,100,106,97,103,107,101,106,104,102,106,95,110,106,102,99,84,84,106,100,80,104,102,97,106,98,96,100,94,103,90,105,88,105,98,99,105,105,92,99,74,98,103,102,69,90,104,91,111,106,102,66,114,118,93,113,105,96,89,99,119,102,94,93,109,106,104,103,99,95,112,101,106,104,92,105,96,105,104,69,120,95,98,92,104,110,82,91,100,100,107,91,88,109,97,108,91,97,93,98,108,133,99,92,105,94,101,73,104,95,98,108,90,108,107,94,109,112,102,86,102,108,88,108,97,94,108,117,98,114,66,108,109,82,107,102,91,105,105,101,104,106,95,92,108,133,89,95,124,106,101,111,98,108,102,106,106,103,106,119,99,96,104,91,91,100,94,94,104,97,90,94,97,103,86,89,98,95,125,94,99,96,120,119,100,102,101,107,106,102,89,92,104,102,88,96,115,102,91,75,105,98,91,98,96,114,96,99,103,90,94,95,104,106,105,104,103,98,94,104,107,105,93,99,109,103,92,102,87,95,80,103,99,105,96,90,102,92,101,105,104,90,103,91,95,100,97,102,97,92,82,104,90,98,98,103,117,99,100,95,92,104,94,102,92,102,105,94,105,112,106,103,73,97,99,101,112,101,109,89,90,107,90,100,98,100,100,93,103,101,93,98,105,95,113,104,100,103,87,104,104,102,102,106,111,103,110,93,113,104,108,92,100,100,109,101,100,111,103,97,111,104,110,101,102,102,105,101,100,97,97,104,95,98,103,95,106,105,116,93,101,98,101,106,107,100,97,88,109,97,101,107,122,96,101,99,90,98,92,95,104,103,104,97,104,107,120,101,102,91,108,104,95,94,101,98,103,106,111,92,102,95,91,104,104,94,101,75,101,98,103,109,112,92,107,91,104,109,103,80,103,105,102,95,105,94,85,97,94,111,100,110,124,101,108,99,94,98,87,105,105,87,111,109,94,95,103,92,84,108,100,91,94,101,120,95,96,108,92,83,88,98,91,99,108,100,100,74,107,106,102,74,89,98,96,61,101,108,101,106,91,97,104,112,94,104,108,98,109,100,93,102,100,105,92,101,93,107,105,97,108,100,98,108,106,103,91,110,94,107,94,91,109,99,99,94,106,109,106,109,100,99,104,104,97,106,110,94,99,106,113,99,96,93,100,96,88,118,105,101,107,102,100,87,99,100,89,118,88,106,103,102,111,96,91,99,100,90,108,91,89,86,96,87,94,97,102,94,94,109,102,103,96,107,99,102,104,97,100,102,100,102,103,109,95,97,113,103,97,101,101,106,98,96,93,97,91,110,88,104,103,99,103,92,98,110,103,82,108,102,102,100,106,92,95,102,121,99,93,101,101,94,105,98,83,110,101,100,92,114,104,105,109,96,95,105,102,82,109,103,106,90,108,91,91,106,96,96,112,94,108,91,68,99,106,98,98,95,108,95,94,96,100,82,103,103,101,96,102,96,90,87,104,96,101,100,96,103,103,112,94,103,112,99,107,96,109,90,93,97,109,92,115,97,96,95,104,106,91,113,108,96,91,97,96,106,85,98,106,101,98,104,113,102,100,105,97,102,87,98,97,95,98,103,107,110,93,104,98,88,105,103,112,98,110,102,117,92,98,91,88,95,97,101,102,97,110,85,104,82,103,99,107,100,92,79,106,103,94,95,96,102,87,109,107,115,104,97,88,102,103,100,90,86,102,98,105,96,87,105,99,95,104,102,108,100,109,96,98,136,106,96,98,103,111,113,88,96,106,108,113,100,113,105,94,108,101,83,99,93,87,108,91,104,99,103,98,101,93,105,94,98,108,103,104,101,102,104,104,103,100,90,94,117,94,91,97,107,87,97,106,105,87,108,108,101,108,93,99,97,106,103,109,101,109,96,109,106,86,106,105,83,98,69,102,96,92,99,107,90,96,95,99,100,104,101,110,88,93,103,88,113,93,107,96,105,107,99,109,93,93,100,109,95,104,100,116,102,102,100,97,93,103,113,106,96,99,97,103,104,106,106,95,95,101,97,113,102,92,103,104,85,89,91,103,107,94,108,97,102,95,89,100,96,106,106,107,101,87,97,104,107,91,102,100,72,102,95,95,93,89,100,107,101,104,101,102,99,73,93,96,102,102,94,105,126,119,104,105,116,91,111,91,90,105,102,106,99,98,96,100,100,106,108,95,108,106,105,98,113,94,90,94,98,103,105,95,98,112,98,106,100,109,102,108,95,95,102,101,96,121,97,103,97,95,93,92,91,95,94,110,86,140,102,93,101,67,94,104,105,107,95,100,99,107,94,94,98,104,113,107,90,113,87,98,115,110,96,100,87,99,96,87,91,85,98,96,106,107,96,99,90,105,96,95,113,105,87,99,108,101,98,93,92,84,96,103,105,98,98,100,103,101,102,97,97,110,106,98,105,105,99,98,100,93,91,106,81,108,95,89,103,83,106,101,105,106,102,91,98,102,97,104,111,93,102,105,96,107,108,105,96,104,100,107,112,100,101,97,104,72,85,97,101,101,104,96,102,103,104,87,103,100,96,92,103,113,98,92,105,103,99,103,92,105,104,107,89,98,100,101,101,113,110,103,80,93,108,84,125,98,120,83,101,94,110,112,93,95,105,97,116,95,108,95,105,102,84,91,116,96,104,108,123,100,115,94,89,100,104,92,87,111,111,110,94,99,103,93,98,106,103,100,98,107,110,100,100,109,87,97,102,99,100,92,95,99,89,100,97,91,100,98,112,104,91,100,104,78,97,101,99,96,111,99,102,100,104,106,95,103,103,108,92,89,105,102,84,102,94,93,101,96,97,83,92,98,103,89,104,97,100,106,113,93,114,100,81,91,91,92,98,112,104,73,88,98,111,96,113,109,103,113,86,105,101,110,96,99,99,101,107,104,106,108,104,101,95,105,93,85,94,97,101,98,99,102,99,97,94,91,91,92,95,100,99,117,108,90,96,107,95,95,96,102,75,91,99,113,105,99,107,114,104,99,110,108,99,104,112,105,105,109,100,99,109,101,88,113,101,104,103,84,103,96,93,93,97,108,98,100,96,93,108,106,114,98,96,102,65,98,97,108,87,76,98,116,96,102,101,102,94,92,111,107,103,100,96,96,121,90,101,103,108,98,103,95,99,96,91,95,100,92,96,96,99,83,94,103,114,90,90,105,106,104,99,115,89,97,94,90,97,99,109,98,77,95,99,92,97,102,99,102,93,97,112,99,105,87,112,66,95,107,88,104,106,94,101,98,113,95,109,97,107,96,87,101,93,115,102,99,107,95,99,89,97,99,108,101,94,99,112,90,109,93,97,114,96,105,91,95,104,99,113,87,105,110,103,106,103,109,100,100,104,96,99,108,108,105,99,110,84,94,112,100,89,102,87,108,93,117,84,108,62,100,97, +401.48126,96,100,94,113,97,93,105,98,101,100,101,95,85,91,98,92,84,97,126,91,106,95,105,90,103,99,90,82,86,101,95,92,96,87,100,106,86,110,103,106,105,104,97,98,99,108,99,98,100,113,96,106,94,97,104,90,96,117,99,105,117,95,109,74,106,104,94,92,88,102,98,65,97,115,104,125,103,100,96,104,106,108,101,93,102,101,90,96,102,102,110,103,105,106,108,104,87,111,99,112,77,103,94,101,99,103,97,103,100,93,109,95,107,101,99,105,97,95,100,95,105,103,95,105,118,84,111,90,103,121,110,103,102,96,100,103,103,108,99,106,84,102,94,103,107,118,100,98,94,95,94,100,104,90,90,105,98,102,106,94,94,101,97,110,96,96,100,102,125,91,104,99,104,100,105,109,102,93,108,105,103,103,117,98,95,96,104,104,97,100,102,112,105,104,102,121,116,109,101,93,94,99,100,106,108,99,102,98,103,103,99,108,103,107,96,108,108,99,93,107,93,105,94,102,95,98,109,101,101,70,106,105,113,103,93,104,81,96,98,95,102,111,106,100,104,133,102,98,103,103,99,101,107,118,94,111,122,101,99,106,92,116,100,102,96,100,102,87,95,99,100,99,113,91,103,101,91,105,105,94,100,96,114,105,102,96,98,109,98,101,90,100,94,101,110,100,108,102,93,95,103,96,106,107,104,114,86,99,95,111,102,105,116,104,98,105,96,112,105,103,114,96,101,106,107,97,101,101,116,103,110,89,105,101,94,99,101,101,99,108,104,93,95,105,109,100,127,93,105,91,102,96,107,106,98,100,106,100,98,109,106,101,95,93,109,103,112,100,93,96,104,95,107,111,99,99,107,112,102,114,106,110,93,99,106,87,92,99,111,100,103,96,99,99,107,101,109,98,114,112,94,106,104,98,108,105,101,100,114,105,98,91,104,101,117,95,89,96,98,101,97,102,99,108,92,105,101,94,105,107,97,112,103,102,100,97,102,113,118,96,98,118,95,87,84,100,95,93,103,99,105,102,105,112,94,101,86,105,112,102,95,86,114,100,105,101,81,105,100,115,86,116,105,101,92,94,92,113,100,139,100,113,111,99,101,105,101,113,102,98,100,109,102,100,93,101,101,96,104,97,110,74,102,102,105,98,93,94,106,104,103,98,120,99,97,99,106,99,90,108,108,94,96,95,110,109,107,95,113,96,100,106,100,95,91,111,109,95,113,107,75,100,94,95,104,103,91,117,105,115,101,109,99,98,105,99,109,100,103,96,105,100,102,105,106,106,103,107,105,99,110,97,91,94,95,121,107,110,101,95,92,96,92,99,94,106,102,102,99,95,87,106,95,99,115,105,92,94,110,107,101,109,110,101,102,109,94,109,100,98,99,102,106,95,108,106,96,96,100,105,103,99,107,104,93,104,92,117,99,100,95,117,105,103,102,109,85,100,109,83,109,101,95,97,91,85,104,106,103,110,104,101,106,105,108,123,104,106,106,103,113,110,106,99,103,97,116,102,97,99,104,111,110,107,105,105,107,102,107,87,101,109,120,104,98,100,99,98,104,99,103,103,89,100,105,90,98,102,113,96,108,105,101,105,96,114,106,108,98,95,104,102,108,115,82,92,106,107,101,107,96,111,99,108,99,128,95,89,103,99,108,103,101,103,112,90,116,87,103,104,100,98,105,103,110,117,105,108,95,101,114,87,100,101,102,110,98,109,107,101,106,98,96,109,70,106,97,98,129,107,104,95,112,100,102,100,94,106,95,86,100,112,114,117,92,93,101,104,94,115,112,106,106,99,87,114,102,101,104,94,110,98,96,100,104,100,103,91,104,120,98,105,93,112,114,100,97,103,103,113,94,102,104,106,96,98,118,97,101,99,108,98,96,102,101,88,108,98,104,92,104,104,86,100,105,106,95,104,101,108,97,105,90,104,81,96,103,100,101,102,113,101,104,93,102,96,99,101,103,99,94,104,104,97,110,95,103,95,98,112,100,105,100,96,99,100,104,103,108,82,98,109,88,98,98,104,99,104,101,102,111,104,100,103,121,95,99,94,95,107,99,114,103,98,105,94,104,104,98,105,119,110,107,102,92,115,106,89,108,104,99,95,103,94,108,102,110,109,96,86,123,104,101,106,108,108,91,100,86,117,109,101,91,109,109,101,107,112,92,99,80,94,108,109,107,106,99,112,108,108,109,68,91,101,104,99,94,104,101,97,99,94,105,93,109,109,99,101,103,98,99,100,118,109,94,101,85,100,102,100,99,102,103,91,100,95,107,102,98,105,107,99,110,101,107,103,82,103,104,111,107,93,106,90,106,91,103,110,91,91,99,100,98,110,107,95,95,110,99,98,107,112,84,100,102,91,94,102,93,94,110,101,93,103,98,87,98,109,103,105,98,98,99,109,119,91,99,102,104,95,101,116,99,100,103,100,112,86,103,107,82,91,95,94,110,113,83,102,91,98,108,113,103,78,97,92,94,94,95,108,113,96,102,108,87,110,104,90,95,91,93,109,104,109,111,93,99,97,96,105,103,97,108,105,96,107,88,97,101,103,119,113,101,95,103,112,105,97,103,92,85,98,96,99,116,105,93,99,98,93,108,112,100,96,101,101,98,102,112,105,102,92,97,81,109,96,108,103,106,101,115,87,97,95,111,104,101,98,106,100,114,109,100,96,107,102,107,101,87,101,97,95,93,116,87,95,88,104,92,105,94,119,100,101,108,106,109,101,88,104,95,95,95,104,94,91,103,101,108,106,106,113,102,99,104,96,101,110,91,95,109,102,105,105,92,103,102,98,96,110,105,96,103,98,97,110,121,93,105,102,109,103,110,102,98,89,91,108,102,117,98,98,109,91,98,101,116,114,100,110,105,101,116,122,90,102,99,102,105,111,113,102,113,108,137,101,104,103,100,106,102,88,101,69,99,107,100,96,91,100,98,106,87,103,107,114,101,99,98,99,99,113,83,102,113,88,102,99,107,103,95,107,110,105,105,93,90,97,102,96,97,88,109,102,98,114,101,98,103,96,115,94,106,106,117,114,113,100,121,98,102,97,94,110,94,98,108,100,107,103,105,104,95,101,102,100,107,108,105,99,98,108,102,100,116,90,108,98,98,97,96,93,109,109,103,102,93,93,105,103,106,102,100,74,104,97,103,102,103,106,94,99,104,113,93,96,102,102,97,104,105,88,101,105,105,94,108,102,102,113,94,106,106,104,102,99,102,101,99,104,103,111,102,114,102,106,100,112,93,76,106,101,99,107,87,103,119,107,90,91,108,66,106,95,110,96,103,99,99,102,96,106,101,105,106,104,97,80,99,107,98,103,105,97,100,97,114,107,102,114,105,100,99,99,90,104,102,97,107,89,96,107,99,96,108,98,93,92,102,106,106,102,86,103,93,105,97,108,98,102,105,103,83,109,100,104,109,100,96,100,98,113,100,100,95,89,94,104,109,90,92,101,102,96,106,98,113,90,105,103,93,110,113,105,113,83,102,105,99,112,104,96,100,105,99,103,112,111,101,101,113,105,101,107,113,103,100,112,93,100,122,105,115,92,92,101,93,104,110,100,91,90,93,106,104,96,104,108,101,108,132,103,103,102,110,90,102,104,102,95,91,95,104,101,105,106,100,103,103,79,95,115,95,100,92,99,95,120,96,96,102,108,105,104,94,94,96,100,107,95,103,86,108,97,100,102,107,110,93,86,105,89,102,92,100,99,101,101,103,100,116,101,99,113,103,98,117,106,99,96,100,96,84,96,102,107,92,88,90,90,104,85,89,105,115,95,104,101,93,104,113,113,102,108,111,106,98,101,105,101,105,107,107,101,98,102,104,101,104,104,100,91,103,83,102,96,94,110,103,108,103,89,97,103,105,92,97,102,81,109,115,92,107,105,104,83,108,89,110,110,100,94,105,96,86,110,102,98,94,95,108,87,89,112,98,93,103,102,100,93,112,102,97,105,106,110,102,104,88,105,107,106,95,112,99,106,100,100,109,105,103,113,106,118,106,101,96,102,104,96,109,98,109,92,111,105,96,110,85,91,111,87,102,88,95,83,104,106,101,99,105,105,106,106,91,107,105,99,96,107,100,103,97,97,87,111,94,109,100,102,98,101,84,105,113,105,97,103,104,108,106,99,97,94,100,101,103,104,98,97,108,99,119,99,102,98,99,110,107,122,92,103,102,100,106,99,102,98,95,107,109,109,111,95,95,90,116,112,112,102,96,111,102,97,102,97,88,93,107,102,91,99,95,107,113,91,99,93,113,96,106,102,104,103,100,100,91,89,102,113,96,104,110,70,107,107,101,111,101,105,102,101,100,91,103,99,106,97,103,113,102,106,107,100,109,99,105,96,106,110,97,99,95,104,87,94,113,103,109,94,101,93,108,112,96,113,97,110,106,95,104,97,95,89,101,90,106,103,96,100,102,104,106,97,103,94,115,98,106,108,108,98,96,99,107,87,96,99,96,94,83,101,105,109,95,105,106,105,94,100,83,102,83,106,99,117,99,98,98,114,103,104,85,109,91,100,99,97,105,110,94,98,101,105,94,87,94,110,96,95,102,131,98,99,77,102,102,99,102,90,105,102,102,104,85,63,102,110,99,109,88,101,97,101,96,108,110,105,108,102,105,98,95,106,104,95,101,94,104,110,83,98,100,103,105,104,94,98,97,95,73,93,98,112,99,88,106,102,104,102,75,108,104,113,90,80,113,81,106,99,100,104,108,101,108,99,94,96,105,108,91,96,99,96,113,103,90,88,99,95,99,109,104,98,125,113,109,104,96,104,100,95,96,101,108,107,92,101,95,94,108,106,97,93,104,96,91,113,97,100,120,122,112,102,97,102,100,112,92,112,94,94,102,98,98,103,104,93,113,93, +401.6214,98,96,85,100,97,100,102,107,96,108,94,99,114,99,101,107,98,104,104,90,95,96,100,100,94,109,95,89,92,127,99,114,98,101,107,100,114,114,102,99,89,96,90,104,107,102,102,105,118,95,98,103,105,106,98,92,100,103,107,101,87,110,99,103,104,100,94,95,103,105,100,93,90,103,92,109,110,111,106,96,104,101,92,104,102,90,105,106,102,100,103,102,109,105,107,98,96,94,94,110,97,95,97,106,105,102,107,95,96,94,94,91,110,97,86,95,97,105,102,108,103,99,103,109,99,96,108,101,109,99,105,95,95,100,105,101,100,98,97,100,97,104,94,108,92,98,105,98,90,95,112,100,100,86,93,105,102,98,96,104,99,95,114,87,108,100,89,69,119,98,96,102,110,100,108,102,113,99,105,113,72,97,101,104,103,91,101,92,97,94,99,99,101,101,110,107,105,107,101,110,83,97,96,101,95,102,99,99,93,108,75,112,111,100,89,109,95,112,102,109,109,97,99,109,107,99,76,91,94,108,100,108,94,104,85,104,94,104,111,108,87,99,110,100,96,94,100,99,105,93,99,96,101,108,106,98,103,105,106,113,98,110,91,102,102,106,101,107,99,87,110,92,101,110,100,101,110,105,102,105,106,104,95,92,125,95,99,101,96,106,101,91,95,96,95,110,93,105,102,96,114,95,106,101,97,103,107,103,102,108,103,102,102,108,95,72,103,100,99,106,96,90,100,98,97,98,90,109,108,110,101,101,114,105,109,105,112,105,112,98,103,105,108,93,100,99,104,99,107,103,91,99,114,110,107,106,108,98,104,105,101,86,104,99,97,96,99,104,95,107,107,102,100,106,102,98,101,110,89,107,109,103,109,109,102,103,95,98,104,91,108,97,99,103,98,109,101,90,103,105,94,106,104,108,104,104,111,100,95,109,91,87,100,87,108,94,92,111,101,105,100,97,109,95,91,112,96,92,98,109,95,108,86,106,90,104,103,85,89,110,108,102,88,116,95,104,78,94,111,101,89,95,117,91,103,95,117,104,104,102,97,98,110,101,103,111,106,96,109,103,103,105,98,81,103,94,91,126,97,103,99,87,101,97,96,101,106,109,93,101,119,103,106,97,109,94,100,103,109,107,126,99,109,96,107,94,98,97,100,90,102,97,108,104,104,93,108,97,104,85,95,108,95,97,99,109,111,107,100,103,91,100,100,99,105,96,100,104,100,100,94,110,99,92,99,76,108,104,107,109,102,103,126,109,104,100,98,96,109,95,95,99,112,102,111,102,117,103,112,101,91,85,103,101,111,106,111,98,105,92,98,109,112,90,109,99,105,94,97,104,98,94,111,104,98,97,99,95,112,97,95,109,92,93,99,103,92,132,104,108,106,102,90,120,101,89,100,98,99,99,107,99,103,92,105,100,110,101,94,100,103,108,108,102,102,91,96,84,103,105,104,95,97,102,101,98,99,99,109,114,99,108,107,98,100,103,102,108,99,104,112,110,111,107,99,108,105,94,101,105,109,106,103,101,71,106,103,105,109,95,106,98,102,91,94,107,98,96,94,105,104,105,118,103,101,98,101,94,76,98,103,93,96,105,98,112,102,119,84,103,96,99,105,120,99,102,110,103,92,95,90,96,109,100,98,104,93,98,110,99,95,108,98,68,107,87,98,98,101,102,98,104,95,98,103,101,106,104,95,98,116,108,109,97,97,105,91,98,95,121,97,101,99,97,90,105,91,99,121,105,96,110,102,98,118,105,99,93,107,98,103,108,106,101,94,102,104,82,95,103,99,108,92,104,106,111,104,106,105,93,96,100,91,99,100,95,95,106,99,110,106,97,99,100,71,97,103,101,108,110,106,106,99,104,102,106,99,96,105,107,103,95,108,102,96,111,95,96,101,86,100,99,106,102,96,105,94,94,102,105,112,97,103,95,100,98,97,94,106,109,98,107,99,101,98,104,94,98,115,110,104,110,101,90,107,103,103,111,84,95,117,89,96,104,102,95,104,104,99,110,102,94,100,109,101,99,93,107,100,107,107,110,95,94,91,94,103,110,97,104,104,111,106,104,102,91,94,106,95,106,104,102,99,87,94,99,95,96,111,100,106,103,104,109,98,95,114,94,102,97,95,105,101,97,97,98,105,99,105,98,106,93,104,102,106,111,95,106,100,100,102,109,92,107,106,103,102,106,104,104,86,88,113,99,103,90,94,97,103,89,95,105,106,104,108,94,97,99,104,104,93,87,103,99,92,103,100,102,99,103,99,97,112,91,100,113,103,95,96,96,93,103,107,95,94,92,105,92,99,96,94,111,102,92,103,106,96,98,103,79,100,102,95,103,102,97,107,109,106,98,99,95,96,110,84,95,93,91,91,100,99,92,105,103,95,104,110,104,103,109,108,108,91,81,102,101,94,100,103,97,93,114,89,108,96,99,100,105,95,96,88,90,100,102,94,103,97,89,96,104,106,91,94,92,116,98,96,101,103,99,102,97,98,95,94,81,100,97,91,89,99,110,92,107,97,92,102,102,101,83,106,101,104,98,111,94,103,120,94,116,80,109,97,96,107,94,101,102,82,108,103,98,106,111,85,92,104,89,114,93,102,104,95,101,98,115,105,91,104,94,106,101,84,90,104,104,94,100,105,105,104,91,97,92,112,102,109,111,99,95,100,108,94,87,93,98,105,94,99,104,87,99,109,103,69,112,91,87,98,95,87,98,99,81,99,109,102,96,92,94,94,108,71,98,105,105,100,97,95,91,100,99,104,95,112,99,109,98,103,100,92,91,113,102,97,100,93,121,101,107,101,98,107,94,91,102,91,94,92,88,98,103,100,96,104,98,93,97,95,111,115,83,93,84,99,96,105,124,91,101,102,98,97,103,102,90,110,104,92,106,105,98,94,94,103,103,100,88,107,109,99,96,91,88,100,98,97,101,100,100,111,114,87,98,97,95,102,106,97,90,105,100,89,99,109,101,108,97,101,106,104,100,77,95,104,86,98,100,117,85,111,90,100,105,99,106,96,92,101,102,100,90,109,92,93,98,98,102,99,97,88,101,95,99,88,92,91,101,89,85,97,91,98,83,107,93,99,102,99,99,108,109,105,108,97,96,92,101,102,88,94,99,83,89,100,103,96,102,93,88,94,96,85,95,98,95,96,102,112,89,98,99,100,106,89,102,102,102,95,98,101,98,111,100,103,100,105,94,95,95,105,97,95,97,102,106,106,85,104,89,101,90,106,98,94,102,101,104,83,88,105,91,101,95,80,99,93,87,107,92,102,104,103,100,106,93,98,97,90,99,103,94,94,96,95,109,86,90,110,88,103,111,92,92,90,93,99,95,94,77,94,115,93,92,88,89,96,105,101,102,100,102,90,83,104,91,99,74,99,87,101,89,97,98,106,88,97,94,105,104,98,101,89,89,93,98,99,105,101,96,92,101,86,100,95,82,111,103,98,95,100,97,91,91,96,99,104,109,103,102,107,100,92,99,99,113,99,92,107,107,109,111,98,89,98,102,111,103,111,109,98,106,95,83,108,106,95,109,103,102,105,104,118,107,98,101,99,98,109,97,125,91,103,107,100,99,116,104,98,115,95,100,93,91,94,94,110,101,89,101,98,103,105,96,99,93,108,94,100,98,95,93,95,101,103,98,84,94,108,103,102,96,95,98,94,102,98,106,103,100,96,94,91,107,118,99,104,98,102,108,93,103,101,83,67,100,81,104,100,91,94,92,101,86,96,87,105,106,99,96,94,105,94,104,89,96,110,92,96,101,97,103,95,112,112,110,101,100,91,105,101,102,109,94,96,90,102,100,95,110,105,95,89,90,103,108,88,93,99,101,100,106,104,91,100,98,103,105,93,105,112,92,91,90,87,92,120,95,92,95,84,102,106,109,101,100,103,94,100,91,98,91,98,92,92,97,87,102,93,112,94,95,110,106,80,99,95,113,100,102,96,94,105,103,111,106,98,101,96,98,95,100,112,99,100,95,89,100,99,106,125,94,104,107,103,97,91,91,120,108,104,98,102,124,104,96,97,101,104,103,104,74,105,91,100,92,112,113,100,88,91,106,97,94,95,103,84,104,94,98,107,98,92,108,89,95,88,102,100,99,94,86,95,99,98,103,111,102,105,102,98,102,87,95,94,100,109,93,99,90,111,92,106,80,98,96,98,95,100,92,86,91,92,96,100,99,107,97,97,100,100,84,95,104,96,98,118,96,99,92,106,102,103,104,92,90,110,105,96,106,98,101,94,95,104,109,90,86,99,70,87,113,103,109,99,100,97,92,98,85,97,98,111,94,105,106,91,94,95,102,120,99,100,96,102,95,96,91,99,123,94,96,98,106,97,101,105,96,85,96,95,98,109,107,104,105,103,91,99,87,104,95,96,88,100,93,104,100,97,101,118,100,92,79,99,84,81,115,98,89,102,95,108,91,96,108,108,98,109,99,99,96,106,96,92,97,104,84,100,106,92,101,88,98,89,100,96,103,88,88,84,82,96,93,84,111,94,105,101,104,95,100,92,106,102,76,96,102,96,71,86,106,95,97,102,99,107,102,92,72,95,94,105,103,99,97,101,108,97,100,99,101,101,91,92,107,103,92,105,97,96,97,106,95,95,102,98,90,90,95,88,109,93,94,82,102,100,95,95,100,102,98,103,118,104,92,104,97,95,106,104,108,93,112,97,92,102,100,101,87,96,108,93,95,80,100,104,97,99,102,109,104,113,96,76,105,95,107,102,102,96,104,94,106,96,102,93,92,95,104,103,106,92,90,104,94,117,105,99,93,93,97,89,96,99,91,103,100,103,89,102,112,95,100,78,110,105,87,109,96,98,98,96,99,100,74,79,100,80,96,98,87,107,80,108,96,99,102,87,93, +401.76154,120,90,96,109,97,103,111,105,86,92,107,89,80,96,113,96,105,100,96,96,88,99,104,101,103,98,94,94,95,91,104,124,111,105,92,102,104,91,95,104,95,100,99,111,103,98,94,99,100,98,96,96,104,91,91,101,113,105,112,98,106,101,105,111,107,85,116,90,101,96,110,106,100,105,97,131,101,96,98,104,107,119,114,100,101,97,96,89,103,96,105,97,110,98,75,90,92,96,103,98,104,108,101,94,99,98,97,101,95,99,100,130,96,92,105,109,101,109,105,96,91,100,105,100,107,107,104,89,97,107,102,107,88,70,96,111,107,94,89,99,99,101,103,94,96,103,104,105,105,105,87,99,94,91,105,94,99,98,100,101,93,96,105,97,94,101,88,96,87,102,100,98,94,121,104,99,120,99,98,101,107,98,98,101,105,102,103,92,118,101,91,113,94,82,99,95,108,100,101,116,105,107,94,103,98,112,98,107,105,105,105,97,105,105,93,101,105,99,92,99,106,101,103,84,105,98,101,106,102,103,104,110,104,97,106,103,104,106,90,103,96,96,109,101,106,94,105,119,93,100,101,90,116,95,106,112,108,120,104,103,100,103,107,113,102,80,101,93,97,101,105,107,110,95,100,100,93,106,96,98,99,99,104,88,100,103,104,105,105,103,92,104,114,105,111,104,101,106,91,105,89,100,102,106,95,103,103,104,96,100,73,110,103,94,104,81,103,139,92,100,82,90,107,105,104,113,93,107,108,101,94,94,91,86,96,96,96,108,103,95,108,98,94,100,98,107,106,103,94,98,100,95,100,105,95,104,111,99,101,100,110,111,97,91,97,94,102,105,97,103,104,100,107,102,111,99,102,101,93,86,100,116,99,105,108,91,89,101,79,96,98,95,88,110,101,94,95,94,102,104,102,104,103,98,93,99,110,109,109,109,99,98,101,101,103,108,94,107,104,98,107,98,106,96,100,101,103,109,99,111,97,97,101,100,94,95,103,83,103,107,129,114,94,105,100,96,102,104,94,118,98,99,95,117,102,94,127,97,94,88,94,96,95,100,122,116,106,98,110,102,85,96,116,99,97,98,102,111,96,98,96,103,101,104,95,105,108,99,100,93,90,107,96,90,99,103,101,99,103,116,105,98,94,103,100,108,100,109,114,103,98,95,101,103,98,103,95,103,106,103,99,104,92,104,102,95,102,105,90,107,101,106,108,73,90,110,103,108,101,96,101,96,85,93,112,105,98,99,108,103,110,106,89,99,104,103,97,98,93,82,99,99,88,99,105,109,124,95,97,101,100,99,100,109,81,101,98,107,109,102,95,97,84,90,99,102,124,112,102,95,100,97,104,105,100,118,103,98,100,112,99,97,91,104,91,92,86,106,110,103,89,108,100,90,103,104,102,97,104,101,116,109,101,95,106,104,116,109,104,110,96,94,97,107,101,96,100,95,117,101,99,102,105,91,103,63,97,108,109,101,91,103,103,98,99,105,106,101,92,128,114,101,103,102,95,102,102,95,109,105,95,88,105,101,103,106,102,101,98,91,104,104,99,91,86,98,107,114,105,96,112,105,95,105,108,102,98,101,95,101,99,106,94,109,105,102,104,100,88,97,92,97,95,100,92,113,104,110,98,104,101,96,100,93,99,82,101,102,101,105,86,102,89,97,108,104,97,103,115,100,95,103,110,94,108,108,112,91,108,104,100,101,105,101,102,95,110,102,112,96,104,97,92,102,95,109,94,99,83,95,94,93,112,101,92,98,89,108,93,106,117,110,106,105,113,103,105,109,99,106,96,104,100,94,106,106,98,109,106,108,94,101,101,89,101,121,95,96,98,127,109,125,107,106,98,104,102,103,103,100,99,103,99,98,92,105,102,88,101,94,101,103,101,107,101,103,90,97,90,111,109,105,102,98,95,94,95,110,99,98,106,97,95,87,106,93,105,108,103,104,97,97,107,100,101,95,98,98,117,112,97,103,96,102,101,100,105,95,104,104,109,107,100,105,83,100,91,112,104,110,99,108,99,98,93,94,86,94,105,99,96,109,102,97,109,99,105,91,105,116,98,114,102,105,109,101,115,96,99,96,103,108,103,90,99,106,106,101,111,108,105,105,90,101,91,98,104,107,107,92,108,99,101,116,113,117,90,94,105,106,100,95,102,104,104,116,102,95,103,95,103,105,98,105,101,108,106,98,94,113,101,100,104,117,101,100,100,105,88,125,101,99,102,101,111,103,99,97,107,95,103,98,105,76,99,109,103,106,114,95,113,105,88,107,100,99,101,106,95,103,89,111,110,113,94,103,109,104,108,91,108,101,103,95,89,90,103,98,95,101,101,83,106,103,94,90,103,93,95,85,113,101,97,92,102,108,95,96,93,94,105,109,101,106,92,111,95,106,108,104,93,104,105,98,104,104,97,90,100,98,90,114,88,106,101,106,87,103,99,109,98,95,72,105,93,98,87,105,96,106,97,104,105,99,93,95,99,99,98,102,96,103,101,105,104,103,98,87,100,117,97,109,99,101,94,85,71,103,98,100,101,104,95,92,103,104,100,104,107,120,93,109,107,80,88,88,98,103,92,95,101,96,98,108,105,91,92,105,91,94,101,91,103,100,101,94,109,89,108,108,112,93,91,85,93,89,94,86,108,94,95,78,94,94,100,100,103,98,106,99,94,95,83,87,94,101,101,110,107,98,94,94,97,104,101,98,98,113,97,107,91,83,108,99,93,96,95,98,101,91,90,79,94,97,105,94,104,107,103,88,91,98,94,96,99,107,104,88,97,94,64,95,99,104,103,95,99,96,109,103,89,102,103,105,104,99,91,102,90,107,101,98,115,108,84,107,92,109,90,105,94,94,88,111,106,82,103,113,98,101,106,113,104,95,87,98,107,108,121,100,97,98,125,99,92,91,86,95,108,80,108,128,86,100,105,101,92,104,98,95,90,94,87,101,96,95,108,108,106,98,94,101,96,90,106,78,105,98,104,99,104,100,96,99,105,107,100,101,91,101,93,85,87,104,70,101,96,117,98,105,110,95,99,103,109,98,83,83,89,106,97,96,97,99,86,94,104,100,102,90,98,103,110,100,88,95,105,105,125,109,101,104,93,102,107,97,91,115,107,132,100,99,98,108,106,89,100,87,95,104,103,97,74,96,95,100,96,95,101,101,106,89,97,105,105,100,105,110,100,85,106,103,99,118,95,94,109,110,95,101,102,101,90,97,90,104,94,102,103,95,101,87,101,100,105,80,106,106,101,96,92,80,97,96,100,100,105,96,99,107,102,94,92,95,100,101,85,102,95,89,103,108,98,110,107,102,89,89,95,108,102,98,99,100,95,94,104,90,118,101,87,107,107,112,103,98,96,90,97,102,99,100,110,88,95,105,99,101,102,107,96,101,95,95,98,105,101,101,105,92,91,101,108,104,96,97,92,97,98,103,92,101,96,105,96,104,103,97,87,59,95,110,101,101,98,98,99,106,102,102,88,99,87,105,94,96,99,77,97,94,106,96,105,103,97,99,104,105,98,99,87,108,95,83,96,109,98,96,104,119,88,100,99,106,96,98,100,89,82,93,96,108,98,104,100,97,112,80,104,95,110,96,94,88,108,101,104,120,103,100,95,101,92,94,97,109,85,94,104,107,108,91,101,101,109,96,80,85,103,104,98,103,94,96,96,86,94,97,100,109,105,99,102,109,102,94,101,115,97,96,111,104,95,94,101,104,96,101,98,94,88,94,95,110,87,95,99,98,94,104,104,94,81,103,88,100,115,104,95,104,109,104,89,97,108,100,101,91,98,100,121,99,111,97,96,97,108,90,96,83,101,101,98,98,105,102,114,107,97,89,105,102,109,98,95,78,79,99,93,96,77,90,94,101,94,102,90,98,96,93,104,102,91,100,103,100,115,91,103,109,106,76,106,101,92,106,86,110,105,96,100,90,88,97,99,93,93,100,90,122,124,96,95,101,80,96,121,84,96,99,97,102,100,88,96,99,99,89,103,94,93,96,97,102,93,91,101,91,89,106,113,105,89,94,92,84,98,100,105,96,101,88,101,104,108,101,96,109,94,88,99,105,100,101,101,99,95,95,96,104,98,98,110,103,99,97,103,110,102,97,79,88,92,95,98,92,100,109,88,100,110,104,111,70,104,102,95,92,101,94,99,82,93,97,106,99,85,98,97,98,93,98,94,102,109,105,108,103,112,105,94,78,89,96,91,97,109,105,100,90,92,95,105,91,101,94,92,87,111,89,115,90,112,93,117,84,84,88,97,86,105,102,98,107,104,98,94,93,91,106,111,97,98,108,110,102,94,98,107,87,100,93,98,103,96,94,103,99,97,89,98,108,112,105,87,105,90,104,93,96,91,94,109,71,111,98,86,110,106,78,105,104,96,112,102,99,91,91,94,92,112,96,105,90,98,91,75,97,108,101,109,110,92,94,81,91,113,86,101,104,83,109,96,96,103,109,94,95,97,112,90,98,94,98,104,85,87,100,89,113,87,87,96,105,96,110,91,95,95,88,108,106,90,100,92,104,109,101,109,89,97,100,102,82,95,91,108,102,94,103,90,89,99,94,104,79,97,135,105,100,106,100,102,93,103,102,105,100,104,96,104,121,101,96,106,96,102,100,108,89,98,89,109,100,90,101,106,115,103,97,89,99,95,94,102,85,96,98,76,94,93,112,91,90,97,106,105,93,92,107,87,101,108,88,105,96,105,113,92,102,106,94,102,104,99,92,108,112,93,111,113,81,105,112,98,103,116,101,105,104,110,97,95,99,95,100,96,100,95,92,96,93,84,98,102,103,111,90,97,108,96,106,96,107,90,95,96,91,97,100,102,94,85,97,100,90,91,91,89,96,111,101,94,95,92,99,93,94,112,111, +401.90167,99,105,102,82,99,91,100,96,98,105,92,106,91,95,106,92,97,98,93,105,105,110,94,74,94,93,102,91,100,114,118,127,91,94,94,91,105,82,103,103,104,69,96,93,102,115,102,100,101,97,120,99,101,91,101,97,96,97,100,86,106,116,96,100,109,96,93,93,94,98,81,110,101,90,104,103,82,96,92,104,102,111,114,106,76,97,97,99,99,106,85,105,103,103,103,99,106,103,95,96,105,91,83,97,106,93,104,91,74,100,102,99,75,99,102,100,102,88,94,102,89,101,99,98,97,101,111,102,97,105,102,101,93,99,96,101,100,95,90,103,93,94,100,100,89,100,103,94,86,108,95,100,97,94,86,88,95,90,102,100,93,106,108,100,100,98,102,107,109,102,128,91,104,101,95,106,103,89,106,93,95,94,107,95,99,100,96,104,100,95,100,106,109,116,99,104,110,87,98,93,90,96,93,99,91,87,110,99,103,115,92,85,105,101,103,95,84,117,95,94,96,92,102,88,100,108,86,110,102,105,95,95,105,105,110,95,109,78,106,114,100,96,108,115,95,104,103,96,99,100,100,87,89,91,109,92,101,99,90,94,95,104,96,93,98,99,100,112,123,91,95,97,98,95,116,94,102,108,106,97,104,127,98,100,99,94,106,95,87,114,101,95,85,105,97,102,109,100,99,95,98,105,99,97,101,113,91,109,110,110,100,100,109,112,94,109,109,110,97,99,96,91,97,90,97,99,109,90,111,104,92,99,95,98,116,86,101,97,91,112,83,101,109,108,108,103,119,85,101,109,101,95,106,107,110,66,103,100,109,106,91,91,97,105,106,96,94,89,93,112,98,95,104,109,100,97,101,86,108,95,96,123,84,108,104,100,91,99,97,90,116,93,88,97,93,89,101,92,103,104,107,102,109,93,100,67,102,97,103,91,98,80,89,109,101,113,106,105,99,94,99,110,83,115,97,100,94,90,94,104,93,101,104,94,86,113,101,128,97,96,109,95,96,106,90,95,99,98,111,110,96,98,102,108,102,105,69,114,103,101,89,97,109,99,88,104,104,94,101,91,114,108,94,100,97,95,93,101,105,95,104,103,110,103,92,99,92,100,95,97,99,107,111,95,98,111,103,85,116,103,105,93,105,96,94,108,104,97,96,96,90,104,95,100,100,97,95,109,109,91,101,100,104,112,95,106,99,91,111,101,94,99,129,113,106,101,106,95,96,99,100,98,104,102,110,96,104,96,114,99,102,91,108,102,101,100,94,90,96,90,99,92,100,94,98,108,117,110,97,103,103,96,82,98,104,109,121,105,96,116,102,96,105,97,98,100,100,86,109,100,103,95,99,108,95,99,106,80,106,110,113,102,92,98,105,97,103,101,95,101,98,94,94,97,101,90,108,94,111,102,105,99,107,97,100,98,101,98,104,106,104,93,106,112,99,107,94,102,89,98,108,98,106,88,100,97,104,98,63,98,102,121,103,95,101,115,100,105,100,91,95,101,98,109,100,113,101,83,108,96,101,98,102,97,105,92,101,102,102,106,96,106,101,96,99,105,94,102,96,103,93,109,104,108,108,106,99,87,99,86,112,97,93,87,103,113,93,117,107,91,99,90,105,123,114,96,95,95,99,100,98,100,92,110,88,94,101,109,107,104,112,87,98,89,92,100,96,113,102,95,103,99,86,99,97,99,93,85,88,99,100,98,113,109,111,98,104,95,93,106,99,81,92,85,80,106,100,92,104,105,100,100,110,113,103,111,96,101,100,99,105,98,101,92,95,97,99,122,100,130,97,103,95,103,97,99,95,94,95,103,128,92,81,94,88,99,99,116,99,94,103,108,90,96,102,100,103,95,100,99,99,97,98,82,97,105,101,104,99,103,107,100,108,90,93,103,93,85,88,107,101,95,111,110,73,94,95,96,101,95,106,99,98,103,91,102,90,93,101,115,114,94,99,92,99,109,93,99,119,99,111,100,96,102,88,105,107,98,99,100,107,98,106,98,100,97,94,101,96,108,101,100,118,102,109,115,96,119,100,91,105,88,104,104,108,101,100,93,108,103,87,96,99,105,94,92,90,93,100,106,99,125,104,92,97,97,89,101,81,99,89,100,91,105,96,95,91,81,113,105,99,96,101,100,104,114,101,100,103,101,110,103,97,103,94,99,105,93,111,104,102,96,101,95,97,99,88,85,82,98,84,104,84,96,91,91,102,90,100,90,91,103,89,99,88,96,106,105,90,110,101,100,95,97,98,91,97,97,91,83,102,94,100,105,99,95,105,101,97,102,87,102,105,94,95,117,107,76,92,101,103,92,102,93,93,108,105,95,100,103,105,102,95,99,109,93,104,103,83,101,103,107,93,99,103,98,91,103,98,95,97,101,97,94,96,110,112,93,98,105,103,103,99,97,97,101,99,110,96,105,100,102,95,97,104,104,110,93,101,97,100,87,101,97,113,95,92,101,105,122,98,110,108,95,99,93,91,101,95,92,116,96,96,104,100,103,108,99,104,105,97,107,97,91,95,101,89,107,101,101,110,101,99,85,98,103,99,117,111,118,107,105,97,96,98,103,85,89,94,84,112,89,98,106,103,97,106,108,110,111,106,101,112,93,103,102,107,99,104,97,111,91,108,76,106,105,101,99,101,89,102,101,108,96,100,105,105,98,103,99,98,111,96,103,119,103,112,97,72,116,99,92,108,114,101,110,90,88,96,113,102,113,97,109,103,112,107,98,101,103,98,102,109,106,97,115,103,108,109,96,110,104,100,86,107,97,100,107,104,103,100,107,90,106,84,111,109,101,101,97,103,104,106,100,99,86,106,106,94,103,103,108,95,111,88,112,105,101,94,105,104,96,100,102,97,101,106,91,91,103,109,114,99,112,87,106,139,97,109,115,108,93,103,109,98,101,114,107,60,101,91,100,89,100,95,101,106,96,97,98,101,93,89,97,97,101,96,91,102,97,96,95,101,78,108,104,101,125,108,100,101,105,101,101,119,92,113,101,92,95,89,99,99,104,111,93,107,93,106,83,100,106,101,95,101,93,99,94,88,96,106,94,88,96,86,91,98,97,102,81,103,113,104,92,107,99,92,104,103,94,106,97,92,100,101,108,102,94,96,103,99,106,99,93,97,109,87,95,100,101,98,94,88,96,101,95,95,102,104,94,96,96,93,98,96,105,101,102,103,96,87,100,90,106,112,88,92,96,106,95,101,93,100,94,94,97,96,105,109,109,108,100,108,104,105,92,106,92,98,101,107,86,98,94,108,79,108,98,93,91,95,97,104,103,93,79,104,98,97,85,100,107,104,102,95,113,97,100,90,105,98,102,103,102,98,108,96,97,94,104,109,121,107,97,112,103,101,106,92,98,88,95,99,100,94,98,84,91,114,111,90,99,86,105,109,104,99,91,107,104,107,100,116,106,97,98,83,105,100,92,107,118,92,95,97,87,114,102,106,98,105,95,91,97,91,96,92,104,112,109,91,117,92,105,106,95,98,99,102,103,105,124,110,112,102,99,100,99,89,106,84,92,114,108,93,108,70,102,99,111,87,97,101,105,93,109,114,104,104,95,109,94,113,101,107,91,112,94,105,113,104,98,100,102,105,95,111,106,98,95,101,97,99,96,99,103,109,103,102,107,95,100,89,98,85,101,98,91,100,106,92,98,100,96,95,99,102,109,106,88,98,98,109,98,104,98,104,101,96,96,101,106,108,95,109,98,102,91,101,94,105,102,98,84,100,103,101,106,95,107,95,85,101,103,105,97,102,97,113,103,97,108,97,100,113,90,87,74,113,104,111,117,120,109,106,102,94,101,87,104,87,101,96,70,100,96,101,84,104,99,91,104,105,106,101,89,112,107,92,90,92,109,96,106,109,98,111,87,98,106,92,98,94,112,99,101,98,101,107,99,102,100,104,87,103,107,100,91,106,109,97,105,100,112,96,98,99,87,98,98,105,98,82,104,86,99,100,106,96,111,102,102,101,109,99,95,99,110,93,96,110,105,105,106,91,104,108,101,101,98,96,91,89,109,109,96,111,100,97,96,96,97,93,92,100,87,103,109,89,102,103,99,90,95,102,107,98,98,105,100,96,107,97,102,103,100,120,106,98,97,100,103,99,100,96,105,108,92,102,110,103,108,86,113,94,105,102,98,100,91,98,108,108,98,98,90,109,103,93,100,106,103,106,92,105,95,105,85,88,98,106,93,91,104,98,99,104,78,96,95,95,104,91,91,94,102,94,103,96,102,99,93,98,101,77,100,81,98,93,97,105,99,91,85,103,91,90,92,102,101,97,96,95,99,89,87,96,94,90,108,86,104,95,111,99,97,98,98,90,104,89,106,105,101,91,100,123,95,93,101,94,95,90,91,95,106,101,101,97,79,93,92,90,94,102,91,88,88,108,94,112,94,93,84,113,100,103,101,100,101,87,110,104,98,96,89,101,91,88,99,100,96,92,106,92,98,94,107,96,91,84,94,91,99,97,97,107,107,96,93,94,99,92,101,120,105,99,104,102,100,96,98,92,99,103,87,95,80,107,100,96,92,108,91,100,107,96,92,78,107,101,90,94,99,99,93,89,92,98,97,94,98,93,102,109,107,95,98,86,95,108,116,98,102,100,92,103,111,98,100,98,111,93,93,94,82,88,101,99,89,94,84,101,104,96,87,95,100,101,106,93,88,90,87,101,107,90,87,92,97,95,90,94,98,91,104,89,88,102,97,95,112,90,98,101,104,92,92,89,109,93,103,108,99,103,124,99,109,89,103,106,100,105,83,117,94,79,102,97,104,116,96,97,89,98,89,101,84,92,98,116,100,83,102,93,90,95,88,105,89,69,100,100,99,99,95,97,100,99,92,102,75,101,93,84,96,101,96,90,82, +402.04181,99,87,89,88,92,96,96,85,90,94,95,109,106,101,80,86,100,87,98,83,106,96,98,108,100,105,110,101,92,101,91,98,84,100,101,110,106,104,101,94,84,86,107,104,95,99,98,92,90,97,95,82,102,104,100,100,104,107,105,90,94,97,101,104,111,116,98,109,101,83,102,90,98,120,93,93,101,99,83,87,95,104,110,102,96,91,94,97,105,91,96,92,105,99,67,95,105,86,92,106,94,98,128,97,103,91,100,100,96,91,89,85,106,98,104,101,101,97,100,106,100,90,104,99,95,112,102,95,100,97,98,107,94,101,103,100,96,99,85,92,108,92,95,86,90,88,102,93,93,87,109,107,105,92,93,90,100,94,97,104,95,91,93,92,102,92,95,95,104,90,99,89,98,100,102,103,98,97,106,95,104,86,91,95,96,82,91,85,94,96,100,92,97,106,116,103,111,102,104,110,104,100,101,100,95,90,99,100,104,91,88,99,104,100,104,105,105,107,94,95,98,111,100,105,88,106,101,106,98,100,94,99,98,103,102,100,102,98,98,96,99,98,105,103,95,98,107,101,91,102,99,99,95,88,95,97,98,91,100,100,87,97,92,96,90,105,112,96,88,92,101,93,106,101,93,101,92,94,95,89,96,92,93,103,82,92,103,96,103,108,126,114,103,99,92,117,100,102,89,104,105,102,99,103,104,101,105,98,91,91,95,98,101,106,113,71,101,92,95,90,110,93,101,101,102,112,92,96,99,105,67,94,105,91,99,101,101,91,96,100,90,93,105,89,98,104,121,108,105,86,90,99,101,95,99,109,100,91,108,99,99,92,95,96,104,90,102,111,100,103,103,102,101,89,96,100,105,84,96,110,113,102,95,108,101,91,92,101,104,62,82,84,91,105,91,97,87,94,95,105,109,103,101,109,96,100,94,88,104,92,91,94,107,92,97,110,102,101,103,98,92,86,93,82,110,93,96,104,104,100,100,104,105,99,98,97,96,108,123,99,100,101,94,103,95,98,97,97,103,102,106,100,99,100,102,99,91,104,97,86,99,106,92,94,98,101,113,94,91,86,99,101,99,96,87,87,81,97,98,95,101,129,101,102,89,104,101,87,102,99,99,100,102,87,96,89,104,88,103,90,107,109,105,115,93,95,101,109,115,95,106,99,112,112,94,101,100,108,97,101,100,99,101,97,97,95,91,108,95,116,104,99,106,103,106,105,95,94,97,110,104,113,89,101,95,113,94,104,99,92,102,103,101,115,102,95,101,98,87,90,101,96,99,104,117,96,110,87,100,92,106,104,105,101,101,103,95,100,108,98,99,85,110,91,99,102,105,95,95,97,78,95,102,100,106,101,95,94,97,111,111,96,104,95,103,102,91,109,109,96,100,109,99,106,100,97,95,100,90,100,94,104,83,97,113,95,79,97,97,98,99,95,97,92,68,90,113,88,92,96,112,118,92,99,96,91,108,91,103,88,91,112,96,99,108,99,102,100,105,110,97,105,95,99,100,87,103,97,104,101,81,91,88,95,93,105,139,96,102,99,107,95,105,99,103,89,89,98,105,102,101,96,80,104,89,101,95,95,96,97,100,94,105,100,104,99,102,98,98,100,98,99,92,90,99,100,102,105,95,95,85,93,99,105,96,102,99,78,95,108,94,110,93,111,83,94,104,96,108,95,101,92,94,89,98,103,102,104,101,114,101,101,100,91,107,95,106,91,102,95,106,108,95,105,87,85,93,84,96,85,106,101,99,103,91,95,101,98,100,101,117,94,105,96,104,88,96,101,91,109,94,106,98,99,109,99,93,95,85,82,103,92,104,100,108,100,93,99,95,91,101,104,105,106,90,93,103,101,100,110,96,116,99,98,106,95,109,107,96,101,99,103,101,112,100,113,91,99,98,104,104,100,91,94,105,98,96,106,108,97,106,88,112,120,89,97,100,94,96,98,93,97,88,97,88,93,95,101,109,98,92,96,91,110,96,107,96,99,109,101,108,92,95,89,99,110,96,114,91,110,108,97,104,110,107,91,94,98,101,81,98,105,98,105,101,96,97,100,96,95,97,118,107,95,104,85,65,101,96,97,80,106,99,102,101,97,105,79,97,82,97,108,99,100,100,94,82,97,89,94,90,96,88,107,100,101,71,90,83,109,95,100,93,102,99,106,101,115,88,100,91,93,95,95,112,102,82,95,102,100,77,105,103,87,88,102,90,104,99,101,97,101,101,84,99,100,91,96,97,96,93,90,111,102,91,95,101,105,97,81,96,97,89,105,98,105,100,105,92,95,96,91,93,93,79,108,100,101,103,92,106,92,88,89,100,90,96,99,95,95,104,99,105,89,103,103,100,100,96,108,93,97,104,98,105,95,92,98,97,105,96,103,108,98,101,100,100,106,103,103,99,102,99,87,90,110,100,94,95,93,94,98,110,105,100,110,100,80,88,108,101,95,104,92,102,102,90,96,102,96,104,91,104,93,99,103,111,92,98,94,101,95,96,109,102,107,84,104,82,101,111,97,100,100,105,84,113,92,101,128,107,106,100,109,108,113,90,117,93,93,110,109,93,85,93,102,94,105,94,103,97,91,87,103,109,95,97,93,98,90,108,91,112,105,108,106,105,106,103,95,91,92,91,75,102,102,102,96,95,98,107,96,94,102,100,106,104,102,100,97,91,115,94,96,102,92,104,95,98,99,102,94,99,106,104,106,116,98,99,120,85,102,99,108,91,98,96,90,72,91,94,90,101,96,104,109,103,109,89,100,91,98,106,66,104,82,71,101,111,99,105,104,84,103,100,100,93,87,101,97,95,99,97,97,98,96,95,95,66,108,100,110,105,102,82,102,89,97,93,104,89,95,104,100,94,111,101,98,106,107,107,89,110,95,111,102,97,103,101,102,111,106,123,108,102,92,78,112,95,96,102,112,92,95,82,97,100,110,107,100,105,95,95,103,102,107,99,99,80,94,91,100,98,112,95,112,105,102,95,95,95,102,87,93,103,96,106,95,96,89,95,98,107,103,114,104,97,97,98,88,98,97,119,100,104,101,101,98,98,95,103,79,97,85,101,118,98,109,105,105,98,96,106,110,101,100,108,100,94,98,107,122,98,99,104,103,108,105,97,101,102,97,105,95,102,99,98,87,96,92,88,106,110,106,88,105,97,91,97,89,102,92,96,107,105,94,81,102,94,99,95,98,104,93,99,94,90,90,91,115,97,88,105,100,97,92,106,99,103,96,100,99,100,101,104,93,103,103,108,114,101,100,104,90,94,107,100,90,100,105,103,89,109,95,98,96,113,105,99,88,101,98,98,98,109,101,107,96,103,98,90,98,108,83,108,106,99,97,105,104,100,108,97,103,90,97,102,94,96,98,82,94,95,101,81,101,96,104,91,101,102,112,92,107,98,92,92,92,101,98,92,112,98,101,98,81,97,103,105,97,102,111,110,96,105,98,101,88,95,92,100,100,104,97,101,98,93,103,91,102,108,100,99,108,116,95,100,102,84,104,121,101,97,105,92,103,99,100,101,103,92,91,107,113,97,108,84,105,98,99,98,105,93,105,120,101,109,87,100,93,87,102,98,87,98,99,96,104,102,96,91,117,94,94,94,99,90,100,97,116,95,100,104,102,89,101,87,105,103,100,87,91,108,101,105,101,100,98,93,101,102,105,106,99,93,96,110,103,105,63,100,95,95,104,88,94,107,102,83,113,98,94,95,101,104,102,94,97,102,98,101,98,88,98,94,103,104,106,97,98,102,101,102,104,94,98,94,98,108,103,92,99,87,96,110,102,103,103,102,106,94,80,98,95,101,96,106,96,99,94,96,103,90,95,108,87,95,105,103,111,96,91,100,102,119,97,98,88,91,97,105,97,91,93,102,106,90,93,78,103,99,92,91,102,106,94,101,96,101,109,102,96,117,97,98,100,105,102,104,90,87,101,104,118,103,103,88,101,98,100,120,99,100,97,115,105,94,108,86,115,115,91,98,101,114,92,85,96,102,108,99,98,95,91,99,87,100,103,98,99,94,100,99,97,98,85,105,95,109,93,107,102,81,79,110,100,101,113,106,90,107,113,102,107,96,103,99,127,102,95,95,98,104,97,111,103,115,91,98,95,74,93,102,95,101,90,98,97,119,95,111,95,101,96,87,106,99,104,103,104,96,108,96,100,114,101,110,109,96,112,112,106,106,107,97,92,94,94,87,101,109,100,77,97,95,89,108,112,101,100,101,87,112,99,96,98,98,103,121,92,127,91,102,95,93,101,100,86,89,101,105,110,95,101,94,98,102,96,108,99,93,103,99,106,98,98,97,97,96,110,105,92,99,108,90,112,105,108,115,99,91,106,95,93,99,101,94,99,96,98,77,98,113,95,90,102,108,99,109,104,92,99,101,92,99,107,92,99,100,105,112,105,104,113,86,88,97,95,107,118,107,107,100,108,95,87,105,96,93,98,88,93,87,87,96,109,132,103,92,96,86,98,98,113,88,95,107,87,106,93,91,84,94,97,109,107,99,99,104,98,99,95,90,94,108,105,104,100,96,96,96,99,114,100,111,103,95,105,108,101,109,102,96,113,99,99,103,91,93,102,94,76,91,106,97,109,96,110,95,102,96,94,104,90,72,98,113,96,98,96,98,99,101,98,102,107,94,101,97,88,80,100,96,106,98,100,106,102,104,83,110,95,103,100,103,88,111,73,93,88,98,93,98,113,108,114,93,94,105,103,114,99,105,95,108,98,83,102,85,97,100,98,104,96,97,92,96,93,111,91,103,92,104,89,108,94,90,101,103,100,102,91,111,99,98,85,98,105,103,96,106,101,94,105,98,107,86,77,97,113,103,90,95,92,102,90,99,102,95,99,56,104,101,111,93,114,122,97,106,95, +402.18195,95,91,96,114,90,105,99,107,125,84,85,112,94,98,102,102,98,107,94,102,109,96,92,103,85,103,93,124,103,90,103,101,99,100,95,89,85,110,89,90,101,94,97,101,95,110,98,91,94,99,99,111,103,100,98,89,93,104,100,90,93,105,92,96,95,105,90,95,88,96,107,98,96,103,107,108,95,100,113,103,104,100,102,103,94,88,86,96,102,100,97,95,97,95,107,115,101,95,107,83,102,105,94,80,95,98,97,93,103,97,105,90,106,91,104,99,104,85,109,90,96,106,89,108,109,104,110,81,106,113,90,110,98,95,112,107,106,105,89,105,93,102,98,71,97,102,90,103,109,98,103,110,108,104,96,100,104,134,101,114,108,97,106,97,95,101,102,102,118,101,98,92,103,92,100,108,106,94,94,106,108,98,99,102,106,92,87,85,110,88,99,62,104,106,97,88,98,97,98,103,95,105,102,110,91,93,101,101,98,99,100,96,101,103,107,94,101,102,83,112,92,114,102,94,111,103,98,103,105,93,90,113,100,110,111,113,92,103,94,99,105,111,100,98,105,87,91,87,102,106,97,86,87,96,92,108,96,110,104,109,98,91,92,108,98,105,94,107,105,100,98,112,95,94,99,90,94,110,103,102,92,103,101,104,95,108,97,105,107,105,116,105,105,96,100,104,114,99,105,96,109,110,96,99,103,113,99,91,101,105,93,105,96,106,101,113,103,116,102,97,100,89,88,104,98,97,92,100,110,119,101,93,104,102,91,95,94,106,92,107,91,92,97,98,95,100,92,100,113,101,100,99,99,93,100,88,103,100,94,99,94,89,95,84,90,96,96,110,97,91,110,114,95,95,98,90,111,100,76,98,109,105,94,84,96,109,102,102,104,95,99,72,119,104,117,99,86,124,95,109,75,88,95,91,100,106,97,95,83,88,90,100,103,101,93,93,99,90,98,106,101,98,92,101,96,96,112,107,105,92,96,95,96,95,95,94,102,90,103,111,98,108,99,102,94,113,106,109,94,111,102,91,105,109,100,100,102,109,112,105,106,98,108,119,109,101,91,104,99,93,104,104,106,114,112,94,92,109,96,106,93,103,83,98,105,92,117,117,96,97,98,101,92,101,91,63,100,101,99,100,105,83,101,95,77,104,90,107,107,100,102,80,105,115,104,93,94,93,101,97,91,87,91,106,103,99,110,106,91,105,98,99,104,90,104,105,95,111,87,91,98,92,95,104,108,102,101,94,96,108,99,92,121,99,102,109,105,92,106,94,102,113,108,93,92,102,105,101,99,119,93,101,107,99,101,103,94,112,105,107,99,98,96,94,95,96,105,97,102,102,99,109,99,86,96,104,110,100,101,100,93,101,117,96,82,91,92,92,93,109,86,101,112,90,92,84,110,96,103,100,99,104,107,102,98,88,94,105,105,107,102,93,90,99,101,95,95,101,89,117,117,105,124,96,91,101,93,101,108,108,88,96,104,91,93,100,101,108,94,108,114,106,103,102,110,101,106,97,110,98,101,101,111,105,91,98,99,105,110,92,103,106,95,93,111,96,90,101,100,95,110,105,92,113,92,98,112,99,95,97,99,86,61,95,100,99,111,104,101,92,93,105,99,98,114,103,121,100,75,102,95,98,101,83,82,93,95,100,98,108,103,100,89,95,89,104,99,104,114,98,106,91,106,100,110,102,103,104,92,97,99,100,100,98,94,96,92,95,96,81,105,100,103,104,99,100,97,84,105,108,87,110,103,96,88,109,109,100,99,111,106,77,100,109,105,133,99,109,98,107,100,101,103,113,108,104,92,106,104,93,97,105,97,97,102,107,104,108,101,108,113,111,98,101,104,93,100,98,109,99,111,109,103,93,96,110,99,91,102,94,103,88,100,108,101,105,109,100,88,113,106,103,87,106,98,107,105,90,69,89,107,103,99,102,96,109,98,99,120,106,103,97,101,109,101,100,104,109,102,106,92,118,94,105,105,89,101,94,91,99,101,99,101,102,98,100,103,109,101,125,121,104,110,108,102,94,90,112,105,105,94,116,105,94,96,90,83,90,105,103,108,107,99,99,91,99,94,95,104,107,103,100,105,98,105,99,105,98,95,105,99,105,106,90,96,106,113,99,95,93,93,101,104,99,102,104,103,108,99,96,91,106,106,112,105,100,110,94,104,103,102,94,96,96,102,95,105,99,93,100,79,94,97,93,101,101,106,103,94,95,94,92,110,99,102,91,94,91,102,97,103,95,112,100,99,116,102,99,93,100,98,95,97,111,112,110,96,117,98,111,103,122,109,104,103,105,95,104,97,103,95,96,90,79,109,106,105,102,104,95,98,95,117,104,85,106,90,108,113,102,101,106,84,87,110,100,108,100,99,98,96,98,101,101,97,104,84,100,95,97,96,103,93,101,98,106,93,92,98,92,98,99,91,114,97,100,107,122,92,95,100,104,101,98,105,98,102,107,92,113,96,94,97,97,108,101,100,101,105,102,105,93,96,90,95,99,107,92,97,114,105,99,104,92,102,99,102,102,107,92,96,99,93,92,106,91,91,92,91,107,89,104,94,102,102,97,66,100,98,111,94,87,93,102,104,99,102,113,101,83,94,103,109,110,90,100,107,110,101,103,98,104,101,83,87,106,98,103,107,95,99,88,105,99,106,106,100,100,102,102,96,100,83,108,106,102,96,104,95,109,97,98,107,88,88,93,105,95,108,104,104,99,102,107,109,111,109,98,91,102,106,102,92,105,100,106,103,99,92,105,96,106,96,101,110,119,86,106,109,102,99,97,100,92,87,105,109,100,110,113,102,97,110,93,108,99,90,107,101,105,105,88,103,87,105,98,106,101,104,108,96,101,102,99,105,101,100,97,95,102,99,102,113,117,102,89,118,98,103,104,100,95,107,110,104,101,105,95,107,105,106,102,93,93,104,110,108,92,101,102,88,97,101,96,86,94,103,109,111,94,97,107,94,97,115,104,101,102,99,104,95,98,98,88,99,106,92,100,98,96,76,98,103,117,102,113,101,106,109,93,98,102,101,92,109,104,112,99,111,119,99,98,97,118,94,112,109,98,98,107,112,120,104,100,113,107,112,102,101,95,112,89,105,100,110,115,98,106,101,102,90,90,107,99,110,91,109,105,103,100,90,99,113,106,114,95,103,102,110,92,103,102,91,102,92,100,100,117,107,102,78,113,109,117,88,97,103,103,95,101,112,102,113,97,107,99,96,95,107,100,99,103,98,98,105,105,94,110,112,109,107,91,97,99,83,94,95,100,111,99,109,102,98,96,108,103,104,103,100,105,108,120,98,108,117,106,101,106,113,110,92,105,107,107,133,96,107,81,106,102,98,98,105,105,112,107,102,99,88,100,117,83,78,90,95,104,99,98,117,94,95,104,116,106,100,97,92,100,100,105,96,111,103,109,94,96,93,101,95,108,102,94,106,96,103,104,100,101,102,77,95,92,117,87,108,88,106,105,105,95,101,101,97,109,104,101,101,105,96,108,99,101,105,112,95,91,106,113,105,73,100,106,89,106,101,97,100,92,94,96,115,79,102,114,105,103,91,111,93,93,98,98,111,69,98,94,105,100,102,106,86,92,112,119,105,91,95,97,106,118,101,109,103,109,100,94,113,98,104,106,106,97,92,111,109,101,98,79,99,102,97,109,100,99,98,96,85,99,104,109,98,103,91,105,103,110,102,94,101,106,108,102,105,102,104,103,96,103,103,100,101,79,113,96,92,109,93,120,101,109,104,102,92,96,99,97,106,102,103,109,102,103,92,91,106,98,110,112,104,99,103,95,102,105,96,100,104,97,87,99,93,97,91,109,101,99,105,101,116,100,108,105,95,90,87,106,113,103,109,98,117,103,94,98,111,94,105,94,101,97,102,84,99,95,93,106,108,99,97,102,107,99,101,97,106,99,97,109,107,99,105,88,108,104,97,102,100,99,104,89,109,114,110,100,98,95,104,98,109,108,100,109,101,103,112,103,90,106,99,104,125,106,116,96,106,104,99,89,98,101,104,104,99,91,115,106,106,108,100,91,91,97,101,95,106,91,100,106,94,111,92,107,101,100,94,102,97,117,101,117,102,113,101,98,108,109,99,102,94,95,106,97,102,106,107,98,102,100,108,102,99,99,92,99,111,77,99,94,91,93,99,93,101,95,106,114,85,96,100,96,114,107,91,96,107,94,99,104,104,95,101,104,97,117,96,114,101,106,102,101,111,101,102,107,92,94,88,78,105,96,98,108,103,110,105,110,106,109,87,108,93,108,99,97,100,102,102,111,91,84,97,103,102,116,108,104,100,103,110,99,114,103,106,103,110,103,98,105,103,82,87,107,113,101,85,124,109,99,100,90,93,101,104,105,97,93,103,116,105,108,105,93,109,103,96,100,105,93,105,94,107,90,95,93,106,95,73,111,87,96,95,115,109,107,104,94,98,95,84,95,88,97,96,98,105,93,98,98,104,95,96,107,101,92,107,98,105,117,114,92,88,92,97,97,97,108,94,100,103,113,98,98,72,90,89,98,104,100,104,98,102,98,97,105,100,108,108,104,93,93,98,80,117,107,95,85,104,94,84,106,99,94,107,114,95,102,93,93,105,124,109,107,94,96,102,101,104,112,112,103,111,95,103,100,103,106,88,84,110,93,106,106,97,109,116,102,99,94,100,97,95,97,107,94,103,100,96,90,102,99,93,89,94,70,98,98,80,82,93,98,124,91,97,110,95,98,93,94,93,96,86,100,103,110,104,109,95,98,70,85,100,94,96,90,95,96,89,102,84,113,103,89,99,102,104,89,102,107,96,104,96,110,89,95,100,96,92,99,94,83,93,106,89,91,98,94,91,104,93,63,100,84,98,117,101,98,107,106,99,106, +402.32208,113,96,76,81,103,86,98,105,94,96,96,99,113,92,110,108,94,85,104,96,105,112,101,93,92,101,111,97,99,98,103,97,107,99,99,110,96,94,107,105,107,97,96,100,91,102,94,118,85,106,106,105,97,112,116,110,90,92,102,96,83,102,94,89,92,104,91,104,91,92,106,102,92,105,103,110,105,104,106,120,105,111,102,103,102,108,92,117,106,106,93,104,105,102,108,96,94,91,97,102,106,107,102,94,109,94,93,100,104,93,95,95,106,99,108,95,102,101,94,100,100,99,101,112,94,107,103,98,107,85,97,100,103,104,115,97,103,105,106,94,100,104,112,110,99,94,109,102,101,93,107,90,100,90,100,105,82,95,102,102,92,87,93,70,94,97,92,108,109,100,109,105,95,114,121,93,103,97,97,99,99,99,100,112,99,101,96,91,104,98,96,97,94,101,95,102,105,85,98,110,93,100,88,104,99,101,94,101,103,109,99,96,108,100,100,102,108,93,99,93,99,108,99,104,91,118,97,104,99,97,95,102,100,87,106,93,111,95,94,101,97,102,103,96,107,89,114,111,79,108,86,96,92,88,115,101,91,115,108,108,98,107,96,97,101,108,109,90,116,97,98,95,104,109,101,95,69,107,100,96,110,103,99,95,105,101,101,101,101,96,101,101,96,105,95,104,110,106,98,105,105,101,103,92,90,103,113,113,88,110,94,113,91,109,100,100,99,97,114,92,94,98,103,100,105,107,105,97,90,95,98,90,103,94,99,96,92,103,99,90,84,93,108,91,99,90,108,99,59,108,100,108,97,100,100,96,103,102,111,113,101,105,95,115,96,109,100,107,104,93,98,100,96,102,100,84,105,95,99,112,102,107,107,103,98,92,91,70,63,103,105,98,99,97,95,91,100,91,98,94,106,95,104,93,99,90,94,103,108,105,95,99,106,100,109,94,103,105,106,107,97,103,105,111,106,95,93,103,100,113,97,100,106,89,105,109,97,107,100,103,103,105,95,100,88,105,95,108,116,109,106,91,117,120,95,95,93,101,110,99,97,102,92,102,103,108,98,100,100,102,103,105,100,102,105,88,93,104,113,97,98,114,109,101,86,101,105,88,103,96,104,113,87,100,85,93,101,114,111,95,100,107,104,98,99,107,96,110,94,98,107,113,103,100,117,102,109,108,99,96,88,103,132,95,93,107,98,104,101,109,104,93,104,94,95,96,98,86,102,92,114,106,106,102,108,101,98,112,98,100,106,111,102,101,107,86,123,101,101,92,97,98,98,105,104,100,100,92,105,112,94,105,101,94,101,116,112,98,104,102,100,96,97,93,112,99,104,100,109,80,100,98,110,98,113,110,95,95,104,95,106,104,92,94,107,106,95,97,100,91,104,109,91,125,94,113,99,87,118,100,102,77,117,102,113,95,96,113,105,99,97,102,96,96,101,114,112,91,102,98,112,98,107,104,98,97,93,99,101,95,96,107,87,111,105,114,112,102,106,103,111,123,98,106,96,105,101,98,101,98,109,101,105,99,103,117,102,93,99,97,99,105,108,105,95,101,97,95,91,104,104,99,109,109,114,100,119,96,98,103,100,104,100,99,101,137,93,98,109,96,122,98,90,95,101,105,79,97,94,97,108,97,108,116,92,87,92,103,103,103,106,101,94,101,87,86,103,87,103,90,102,96,95,105,106,82,106,92,100,107,106,95,97,95,88,101,99,94,96,104,93,104,97,105,101,99,101,105,106,88,96,97,109,113,111,102,94,101,105,95,107,87,113,95,100,106,106,121,104,78,104,113,103,98,117,112,105,108,94,115,86,88,104,94,99,92,118,98,94,101,107,113,110,83,88,102,103,105,98,116,105,104,111,100,100,102,107,110,102,98,98,104,99,105,90,93,117,109,111,99,99,96,109,90,101,108,105,98,91,95,103,103,84,109,100,104,101,102,108,99,104,93,102,99,103,94,86,111,111,106,100,96,94,101,111,99,101,96,94,110,95,92,97,109,100,99,84,106,92,89,111,108,106,103,95,96,78,101,98,96,97,103,106,93,106,101,100,97,100,76,110,95,102,104,102,99,102,102,100,89,91,95,96,99,110,97,92,95,103,90,98,98,92,100,89,95,107,96,106,90,103,79,101,97,102,94,105,100,98,102,101,110,108,108,102,99,107,100,91,106,102,116,92,89,107,92,87,106,97,94,87,106,112,105,124,110,101,89,100,88,98,103,96,103,92,77,86,102,82,87,101,104,105,95,100,89,101,97,92,99,93,95,97,102,101,93,93,101,92,103,90,104,95,83,101,105,102,101,108,105,111,96,102,101,100,121,111,98,97,95,99,97,99,103,97,97,112,97,98,95,93,103,98,104,103,103,104,99,106,94,94,95,104,90,106,100,93,97,83,111,97,102,106,103,98,88,101,105,109,101,110,99,119,95,107,95,103,105,107,98,94,92,97,100,99,97,95,98,108,94,99,81,97,105,108,99,94,100,93,110,79,104,91,102,105,93,103,95,95,105,92,95,87,90,94,102,94,116,85,103,107,86,96,99,106,110,87,101,100,97,84,105,108,105,74,102,90,97,103,99,91,101,105,88,102,98,96,102,106,98,105,109,106,96,95,93,105,106,108,108,107,96,102,94,105,104,89,97,94,102,92,102,90,111,100,103,96,92,108,104,105,90,105,118,102,116,111,100,97,100,101,98,107,102,93,107,95,96,103,108,85,96,104,96,93,106,98,106,96,104,79,102,112,103,111,91,109,96,104,101,107,93,104,98,101,104,108,109,116,93,89,99,102,107,98,98,83,109,107,96,94,99,115,100,112,94,109,108,91,98,84,109,105,103,94,101,94,98,106,117,102,102,96,101,103,84,105,101,96,104,94,104,101,96,88,95,95,103,99,104,96,98,102,97,101,102,95,95,98,102,107,98,102,95,101,95,106,101,94,100,101,99,94,101,92,102,103,106,108,99,68,86,101,95,101,106,97,105,106,89,99,92,92,103,107,91,102,112,95,97,98,96,111,83,101,106,105,90,105,95,92,103,113,91,103,93,104,99,108,97,103,104,105,103,84,91,94,96,97,99,93,99,103,80,109,96,99,96,101,115,91,102,92,113,112,105,99,107,95,107,94,91,101,105,119,92,97,108,101,116,91,91,98,101,109,102,94,95,100,121,115,85,106,94,91,101,97,101,96,93,91,106,105,99,94,114,99,100,96,112,94,111,102,110,95,109,110,102,106,95,102,94,96,106,107,105,94,107,95,83,80,104,73,99,96,100,97,90,103,94,112,92,102,107,96,107,102,106,107,93,102,113,103,96,89,100,92,94,95,103,102,102,97,94,95,94,107,82,111,109,87,105,95,85,102,86,94,88,102,106,85,93,70,83,125,84,119,82,111,97,104,112,91,113,96,99,108,99,102,96,100,98,111,95,92,99,97,93,92,99,104,106,100,85,103,114,107,100,88,90,98,95,88,98,107,101,104,105,97,100,99,110,93,107,102,106,93,98,99,97,100,108,94,101,99,102,121,98,97,93,87,98,87,98,106,102,103,100,92,103,98,89,106,93,104,101,106,110,111,93,94,103,106,100,100,106,91,84,102,102,89,97,105,105,88,101,94,100,103,113,100,104,111,102,114,106,102,96,91,98,100,110,117,90,93,97,94,102,84,99,107,104,71,96,86,101,101,103,117,95,131,97,96,96,108,102,103,104,93,92,99,103,96,104,116,90,109,109,97,100,104,100,97,84,108,94,104,111,104,99,98,106,92,112,96,101,103,96,108,108,91,109,101,109,103,96,97,106,88,95,99,96,103,94,105,104,103,93,101,109,105,118,109,101,93,106,101,91,101,100,96,95,94,98,93,100,102,102,97,101,100,86,87,93,104,86,100,89,108,89,96,97,96,117,99,95,98,95,99,92,104,109,118,100,109,99,87,94,106,102,108,102,98,109,95,113,93,99,87,102,94,105,98,111,100,102,94,115,103,104,103,107,103,100,93,94,120,97,95,111,101,92,94,101,96,99,121,92,117,98,103,110,90,107,104,102,88,99,105,99,99,93,106,90,101,98,106,107,87,93,99,108,99,101,91,119,102,92,98,104,88,102,95,107,109,117,93,102,102,107,102,101,93,110,96,102,107,103,109,98,98,107,103,96,113,94,98,103,84,100,92,100,98,90,91,109,97,94,125,83,104,109,108,105,96,103,102,105,105,107,108,105,98,100,104,94,105,100,98,114,94,104,97,105,91,100,96,94,84,111,113,93,107,100,101,102,98,91,90,108,89,99,100,110,98,88,106,98,99,98,102,80,123,100,110,103,95,87,104,107,109,91,108,82,107,96,106,103,100,103,100,115,104,101,107,95,105,106,103,99,103,104,101,99,103,99,92,111,106,99,83,99,109,100,100,103,93,102,99,90,112,98,90,93,95,98,89,102,102,97,109,93,99,94,100,92,98,99,101,94,101,95,97,93,110,111,98,100,87,109,86,107,87,105,105,99,102,98,101,111,117,95,91,87,105,101,102,105,98,100,92,108,101,102,103,112,113,97,101,112,98,77,95,116,104,117,96,101,98,97,111,65,102,101,98,99,101,99,107,82,107,98,97,107,92,93,106,103,102,104,104,90,101,102,110,115,113,99,100,101,87,94,96,116,98,96,87,95,113,85,105,102,93,112,84,89,110,104,98,100,107,95,109,131,97,92,99,106,90,112,93,98,87,86,101,93,104,97,104,112,108,119,71,102,104,96,98,109,111,103,98,93,92,104,94,103,102,94,99,118,101,115,99,80,105,113,101,89,103,80,100,90,101,102,108,102,97,113,99,96,106,93,97,109,102,102,97,99,99,87,92,94,99,79,117,95,109,97,98,93,102,85,102,96,91,98,111,98,97,98, +402.46222,87,92,110,97,99,100,108,88,100,95,80,99,109,102,98,90,94,100,94,121,116,101,86,92,100,101,108,102,92,82,89,100,97,94,112,99,103,94,123,95,84,111,88,97,99,106,98,97,107,104,111,121,105,103,91,97,92,89,103,94,96,96,105,94,104,132,101,103,90,95,105,90,101,108,101,97,96,95,88,108,106,102,95,109,98,97,105,94,105,97,95,111,91,99,100,96,105,96,96,87,90,103,106,95,96,85,92,104,103,95,100,101,98,84,95,97,97,104,92,98,99,91,91,95,97,106,103,105,99,93,91,86,103,91,98,100,93,92,96,100,89,110,94,87,100,102,91,103,104,99,81,106,105,99,95,90,105,103,109,114,93,95,105,96,100,96,102,102,100,96,105,98,101,95,98,90,91,93,103,105,94,91,88,99,99,102,95,100,90,95,91,97,91,98,95,114,110,112,94,108,96,84,98,98,93,107,84,100,105,109,102,101,100,103,95,58,101,91,99,98,106,98,103,94,101,104,107,104,96,108,99,112,99,115,100,102,94,100,94,93,108,101,98,110,95,100,88,100,103,106,93,106,91,102,101,106,107,99,94,100,82,100,97,98,97,113,97,79,104,94,98,94,111,87,97,97,106,113,100,107,95,88,108,94,109,91,92,88,105,108,94,100,129,94,94,105,90,100,96,86,96,117,102,92,109,95,136,107,101,113,96,116,110,99,96,92,109,102,102,97,74,113,102,95,117,96,86,90,98,112,105,93,110,94,105,99,98,91,94,108,95,106,120,103,96,93,101,99,92,75,105,100,113,100,93,101,93,103,105,104,95,96,104,86,102,98,95,105,107,113,105,102,103,104,118,98,113,103,114,86,101,95,103,86,107,96,101,110,99,101,105,105,93,106,105,68,98,98,103,105,100,94,100,93,95,99,100,104,99,90,94,106,104,96,108,96,96,75,94,101,92,95,98,92,101,82,94,96,92,106,102,103,97,104,109,99,85,97,104,96,109,87,105,122,90,108,101,92,101,108,102,103,87,117,98,98,97,104,126,96,99,98,95,103,107,116,104,97,96,101,94,90,105,98,91,102,106,105,106,107,101,103,120,101,116,106,99,104,94,100,94,100,106,97,117,96,106,96,112,98,104,88,100,76,112,102,95,104,104,95,103,90,101,88,98,100,121,97,88,101,104,105,99,85,112,97,106,110,96,88,86,100,95,99,86,112,100,99,99,92,74,107,99,93,99,105,105,102,101,99,103,110,100,105,79,81,103,102,93,86,99,97,97,103,99,95,109,104,112,103,89,95,93,107,100,94,94,97,113,100,99,90,110,95,91,94,104,97,99,90,107,97,104,94,98,102,101,90,108,110,105,101,104,89,85,95,90,90,96,95,90,99,102,115,105,97,103,90,92,103,92,95,93,94,103,70,82,97,111,96,85,88,75,111,91,100,111,96,109,123,96,108,99,101,88,92,96,76,122,98,109,106,98,113,96,103,101,99,98,95,113,95,104,102,90,88,105,96,101,106,96,104,92,101,105,99,95,92,93,94,113,95,104,99,97,102,103,91,90,100,106,104,98,97,87,90,98,107,107,91,103,90,100,92,114,100,88,87,112,105,109,101,107,95,95,92,91,102,95,105,96,95,105,104,110,99,91,110,101,98,69,99,100,93,99,101,93,94,101,90,98,100,95,106,93,95,108,91,93,107,104,90,102,114,90,90,106,99,103,97,104,109,104,98,96,99,92,94,101,87,103,99,100,102,99,92,96,102,104,100,107,104,106,111,104,104,104,108,98,107,93,112,100,76,98,106,102,94,111,100,96,88,96,100,107,87,101,105,100,102,95,92,98,87,97,97,102,107,105,88,96,104,111,108,95,99,96,99,86,98,92,101,87,98,89,108,96,86,102,107,101,99,104,98,99,103,96,95,91,96,97,96,91,85,89,97,87,100,95,107,104,104,100,92,100,117,101,105,91,110,101,86,102,104,99,99,99,98,95,100,125,107,108,97,110,82,101,104,101,112,99,101,94,94,97,90,90,91,100,96,91,102,101,95,109,83,98,87,85,105,95,105,99,95,103,89,78,92,101,93,97,102,104,99,102,101,108,97,97,96,95,92,102,106,90,98,96,95,99,100,87,100,102,96,106,97,108,87,92,99,91,90,102,101,101,114,113,102,102,92,90,94,99,110,107,96,103,91,95,101,105,98,109,89,112,117,95,92,102,104,94,98,98,104,110,100,102,100,94,85,100,99,110,94,100,87,90,105,88,110,105,105,103,95,106,109,102,107,86,100,84,97,100,98,88,104,104,99,97,111,99,115,111,88,100,93,91,98,102,100,95,101,100,94,92,93,94,98,112,93,95,99,95,96,105,106,95,90,91,90,99,98,100,97,81,89,86,102,124,100,102,100,101,91,102,94,91,90,97,98,102,97,93,109,95,106,112,109,110,92,101,99,108,108,90,99,110,101,102,101,102,94,99,93,96,99,93,77,104,106,104,88,106,102,100,111,105,117,100,85,97,108,103,97,98,104,98,118,105,116,105,116,99,98,121,111,81,108,100,105,106,106,93,113,98,96,102,98,105,99,101,96,85,90,100,111,102,105,89,98,103,92,119,110,100,110,108,109,92,90,93,99,103,110,99,90,95,105,101,108,99,92,113,105,98,105,99,102,98,102,113,91,96,99,99,87,101,95,103,100,88,94,108,97,101,91,100,100,106,103,98,103,99,104,100,112,102,106,103,102,102,98,102,117,106,115,96,108,101,97,105,103,109,104,111,95,98,103,105,98,104,99,99,93,87,105,101,95,107,97,98,83,129,107,94,96,94,96,104,107,105,106,108,100,109,95,99,100,109,98,113,89,102,105,101,105,99,107,92,118,99,98,109,116,115,98,95,103,104,105,99,96,109,87,110,105,104,108,101,97,79,113,88,99,90,102,95,102,103,110,81,108,101,114,97,109,105,101,101,100,93,74,101,92,112,111,99,106,107,98,112,82,98,96,100,91,109,98,95,110,108,93,97,109,103,98,108,92,101,107,101,106,101,102,101,76,111,105,105,117,115,102,99,96,102,100,109,114,102,105,115,103,79,98,97,85,107,99,95,93,99,96,113,110,102,97,103,109,108,105,98,89,74,100,90,97,112,105,101,103,104,120,112,103,104,99,112,99,106,105,104,75,91,103,105,117,95,101,109,99,100,101,98,98,101,101,81,101,96,101,99,105,102,104,97,93,109,103,113,109,100,101,105,106,120,89,106,96,95,108,89,104,108,103,106,104,118,110,101,87,104,110,110,102,95,109,109,100,102,100,110,103,98,103,97,102,120,115,104,102,105,89,105,105,91,109,116,102,102,117,103,101,103,107,95,108,109,107,105,98,104,99,101,105,103,110,111,101,109,106,107,103,103,102,95,96,97,102,95,100,101,92,104,113,98,105,108,98,99,109,103,97,102,95,96,107,113,103,101,94,99,94,101,90,102,94,101,89,99,107,95,105,95,109,105,108,95,107,121,99,104,104,101,111,112,87,113,106,116,97,86,110,100,87,104,101,95,117,110,102,109,98,103,99,112,105,95,98,99,104,109,102,101,105,101,93,100,95,115,98,96,102,99,106,108,102,100,103,107,96,105,116,101,100,102,102,109,98,94,98,103,88,109,105,100,92,105,91,95,101,111,104,110,108,105,98,106,99,107,93,106,97,96,109,112,107,98,97,85,99,103,105,101,106,98,100,102,99,96,103,104,91,97,110,105,105,104,98,104,100,97,118,100,101,95,97,101,94,105,93,87,100,112,104,101,90,100,95,91,105,111,111,102,96,82,101,91,84,104,105,97,104,96,105,92,100,105,107,103,105,106,105,93,101,98,102,97,101,115,97,94,108,104,106,108,98,96,109,111,103,102,102,104,107,99,96,98,89,99,98,101,104,111,93,94,109,95,101,105,104,74,100,107,107,96,113,113,108,88,99,97,96,110,95,107,95,110,117,78,103,102,105,95,100,102,104,98,94,107,98,100,98,100,93,103,88,101,95,110,101,106,106,101,96,101,125,98,83,102,91,104,104,88,104,107,102,109,110,108,88,136,105,108,90,103,109,103,105,92,101,102,109,99,105,99,106,96,102,102,107,94,100,110,107,98,101,113,102,98,106,99,100,93,93,120,94,108,105,100,108,99,95,104,88,105,106,98,101,118,113,114,100,100,98,97,101,120,106,103,104,104,98,100,102,109,100,116,103,98,104,105,100,99,96,109,101,124,101,116,105,102,102,112,102,101,106,90,81,73,103,92,102,104,104,103,109,106,105,103,132,100,93,106,102,106,99,94,105,107,99,102,112,102,105,115,108,98,116,108,104,91,108,113,95,99,108,101,100,94,66,99,104,102,97,102,92,103,110,104,91,104,95,101,112,105,106,101,95,105,94,94,94,103,95,114,108,105,92,107,97,95,109,86,92,106,110,97,104,97,66,90,107,102,114,104,111,102,94,105,91,79,97,104,106,104,101,89,105,95,104,93,106,108,104,93,107,106,102,100,102,109,110,92,90,90,107,91,110,95,95,91,102,111,108,105,103,103,110,103,93,106,97,110,108,112,87,98,105,100,105,92,101,105,108,104,100,110,95,104,81,115,112,108,94,95,107,102,99,104,100,94,80,108,94,93,95,94,101,92,107,103,95,93,96,110,95,104,105,113,100,111,114,103,94,105,98,102,85,109,108,88,92,101,98,98,98,97,92,100,97,107,96,97,103,85,90,103,95,106,109,93,98,108,94,80,101,108,102,88,103,102,93,106,109,96,110,102,106,93,67,119,111,92,106,91,91,95,100,102,95,98,98,88,96,95,94,93,97,105,94,96,107,102,102,113,101,99,107,95,98,113,97,102,110,92,76,100,86,92,83, +402.60236,109,101,86,98,88,79,89,102,98,96,92,108,96,93,112,97,93,121,104,123,108,102,100,92,105,123,97,94,106,114,110,104,109,102,115,86,105,97,118,97,99,75,97,102,94,103,101,98,92,102,101,97,95,97,94,90,102,99,113,95,99,102,107,95,90,95,89,117,104,92,99,93,90,106,97,116,95,91,100,109,94,93,91,105,113,71,103,98,98,106,101,93,63,109,109,101,103,93,81,99,100,102,101,95,102,94,103,101,109,91,93,94,91,82,98,90,91,112,97,94,95,105,58,97,99,106,105,93,91,114,108,113,98,100,97,111,89,96,89,104,95,89,100,98,99,92,115,95,91,100,101,92,101,89,93,96,102,97,101,99,98,102,100,101,97,94,101,96,105,93,99,108,91,104,97,101,108,100,88,97,109,93,107,98,103,104,101,86,112,99,101,96,99,104,98,94,92,95,106,96,102,101,96,100,97,101,95,86,97,96,92,91,87,109,92,98,81,100,106,96,88,106,90,99,104,62,104,98,96,92,100,100,98,97,103,109,96,91,94,102,109,102,95,93,95,87,106,90,99,94,102,104,91,97,94,94,94,101,85,84,91,77,97,93,95,104,101,79,109,106,91,96,110,107,105,80,99,109,99,90,106,110,88,98,88,90,101,106,107,95,98,93,96,96,110,103,98,100,103,88,101,76,107,105,99,97,111,102,90,97,88,102,95,109,93,103,99,98,91,97,99,98,106,96,100,99,93,86,103,94,99,93,98,100,102,98,102,82,101,85,101,101,103,90,93,101,95,94,118,106,96,92,108,95,104,109,83,92,99,113,94,95,102,97,98,91,97,100,98,95,98,98,106,99,99,93,105,94,95,102,90,95,108,92,96,83,99,84,95,86,104,94,96,95,95,101,98,98,100,98,99,112,85,112,82,97,87,102,112,101,92,77,101,103,101,81,91,103,109,100,100,104,88,85,97,75,95,90,73,125,109,85,93,95,97,92,109,97,95,99,92,83,79,100,93,99,100,94,90,102,100,90,87,102,103,107,96,115,95,89,79,93,113,80,108,96,102,98,104,95,109,103,70,105,83,99,103,112,96,94,98,98,104,101,103,90,82,95,110,92,95,87,96,99,89,98,103,107,106,101,104,92,100,98,105,101,94,95,108,93,110,109,95,106,101,95,96,100,86,97,112,96,98,88,91,107,111,94,93,103,93,108,95,105,96,102,106,101,99,118,101,95,97,108,92,88,112,87,109,92,96,102,104,90,100,97,99,96,95,106,99,95,101,101,101,89,86,141,106,97,105,95,103,105,83,102,96,72,115,100,105,102,95,104,95,109,112,102,92,92,94,97,99,91,108,92,95,93,100,97,99,97,105,92,103,98,103,94,103,84,121,100,101,93,92,83,96,96,113,97,105,94,95,98,120,110,97,98,106,92,100,97,101,91,99,94,97,98,101,94,112,99,105,95,100,101,107,98,92,112,103,97,86,92,104,99,114,111,92,99,100,107,95,94,98,92,105,89,96,86,115,95,110,87,104,101,95,95,104,101,107,93,102,89,91,99,100,95,104,105,100,95,101,107,99,91,94,92,89,112,88,91,90,96,89,104,88,107,109,102,100,105,102,110,111,91,96,95,105,97,96,97,98,112,113,99,104,100,102,113,109,98,107,98,98,103,96,111,96,96,99,96,117,96,94,108,83,117,99,94,105,100,103,104,107,90,102,92,103,95,99,102,90,106,102,106,90,96,106,104,116,91,104,95,98,112,96,104,102,88,103,90,105,94,96,99,117,105,106,106,116,101,90,84,92,100,96,103,103,109,98,98,97,106,97,104,97,111,118,99,112,67,85,99,107,108,114,105,102,98,97,102,106,100,105,93,105,100,109,94,98,102,98,103,98,72,95,96,105,97,84,106,97,93,99,94,102,91,100,86,92,99,108,115,90,104,92,98,97,109,107,96,97,98,104,109,99,103,103,111,98,98,111,103,90,105,101,92,94,97,105,102,101,93,102,105,99,99,103,95,94,103,90,108,96,96,96,103,99,94,108,102,99,99,92,105,93,98,98,90,97,107,102,91,104,89,100,99,114,107,107,103,116,102,104,102,99,99,112,106,96,97,98,112,89,96,92,98,72,97,101,102,82,102,105,101,95,111,109,97,101,97,99,101,104,102,102,100,107,109,103,98,95,103,102,103,84,104,96,100,96,100,101,92,98,114,111,104,61,102,88,96,101,97,103,79,95,99,99,110,97,103,97,93,106,97,96,85,103,101,110,101,97,101,90,103,99,98,99,104,87,102,92,110,103,91,100,94,78,94,106,98,109,97,106,86,94,93,96,93,95,102,97,86,107,97,106,106,95,92,99,106,94,86,110,97,86,91,100,101,106,103,114,106,93,93,109,96,102,94,76,111,96,99,102,87,99,97,103,104,84,109,96,110,103,100,95,92,63,93,98,96,87,104,105,102,101,106,105,100,94,104,108,97,106,96,103,102,78,111,96,105,98,108,94,107,78,92,92,83,95,116,103,97,99,95,91,100,92,87,97,86,105,99,105,99,96,94,81,110,101,103,109,93,90,101,98,101,95,88,106,104,95,104,104,101,96,97,112,96,95,111,105,98,100,90,102,70,105,108,107,92,105,86,103,100,87,74,91,92,100,95,107,94,96,101,92,92,98,97,98,94,101,97,92,97,93,100,99,94,110,99,107,99,103,101,96,89,91,98,94,109,100,87,107,98,101,104,96,94,97,102,100,95,97,103,99,117,113,91,101,95,100,95,99,84,93,102,94,105,100,100,98,95,108,97,105,101,90,101,86,87,105,100,103,110,96,108,90,100,108,102,106,96,88,100,106,102,101,91,100,91,88,115,92,102,104,89,98,98,100,101,101,104,106,105,101,107,90,113,101,97,98,112,106,98,92,97,101,91,95,118,100,93,103,102,94,79,87,101,81,86,94,111,91,94,100,95,108,109,104,100,99,107,100,106,113,104,103,87,102,73,111,110,94,86,98,90,96,100,99,96,105,89,96,97,106,106,97,78,108,95,106,88,94,98,103,92,88,112,102,106,104,105,91,93,113,92,93,95,105,96,95,65,116,93,101,96,110,95,104,103,106,109,103,102,105,110,108,88,88,99,100,96,110,102,92,96,109,98,101,92,106,97,100,95,109,92,102,92,109,96,95,103,93,98,106,103,91,100,101,103,92,97,108,110,107,103,97,116,118,95,88,93,102,81,97,98,104,90,86,95,92,107,102,92,78,109,91,103,106,98,99,95,91,121,95,88,103,102,86,102,100,108,88,106,118,109,100,106,91,112,92,92,103,102,98,105,114,91,94,111,92,98,73,105,94,95,102,103,104,73,102,105,97,91,95,98,113,98,114,104,102,100,102,95,96,96,101,103,95,99,106,113,87,101,103,104,98,99,93,102,94,90,92,101,98,101,95,100,95,85,96,95,106,91,95,101,91,97,94,99,109,88,97,102,106,108,106,97,99,103,92,91,105,95,84,99,100,89,94,103,100,99,92,75,96,105,102,105,93,105,97,98,111,99,100,100,95,99,118,93,106,94,91,93,103,104,99,85,102,95,105,95,94,105,96,98,88,96,97,97,117,93,102,108,103,78,91,103,108,110,101,113,91,103,95,109,98,109,104,96,106,106,100,99,97,116,104,100,103,104,93,98,109,111,97,109,106,95,107,104,106,105,102,82,116,113,103,107,107,97,101,100,98,97,95,105,92,99,91,96,102,92,91,87,87,100,108,120,101,102,109,103,105,90,97,92,108,105,90,116,93,102,97,95,104,100,102,109,95,96,92,92,95,108,105,97,96,104,86,99,99,103,99,73,115,108,93,89,104,100,96,103,105,101,94,104,106,95,98,114,94,95,98,97,97,102,94,91,99,95,94,104,89,99,105,103,98,109,93,87,107,96,108,101,97,95,97,101,101,100,105,104,101,111,107,106,103,106,106,97,109,90,105,95,95,111,99,98,101,102,88,98,99,100,93,94,98,112,110,96,91,98,108,107,102,101,102,105,101,106,91,106,101,99,99,109,92,98,98,95,114,105,102,97,90,104,108,101,112,96,97,101,100,107,96,106,102,99,102,105,107,81,95,108,90,108,112,89,95,87,93,83,101,102,97,97,92,103,112,108,98,94,90,98,105,96,87,98,97,110,112,96,94,99,83,104,104,96,110,98,94,106,108,95,99,100,93,106,77,85,114,86,91,92,105,99,102,102,101,103,93,100,100,99,98,92,108,103,105,107,102,89,98,94,95,91,90,104,106,98,85,107,104,88,103,105,101,98,109,112,100,103,102,93,100,95,98,100,98,97,96,97,97,103,100,98,110,104,108,102,97,103,89,93,104,100,100,96,116,104,105,101,123,100,95,102,95,96,91,92,100,104,92,108,95,87,87,96,101,84,92,100,106,107,98,96,100,100,108,107,111,97,96,97,101,101,83,92,97,91,100,92,106,96,102,102,95,98,88,65,92,109,103,92,109,88,104,90,104,93,96,100,93,106,81,103,102,95,97,98,70,96,111,105,91,94,102,94,102,101,109,91,90,105,99,102,97,89,90,105,87,102,107,109,103,102,107,90,98,96,101,96,98,101,95,116,93,87,112,102,94,91,90,96,113,104,89,100,76,95,105,91,102,97,100,87,92,89,94,99,106,97,116,90,106,102,93,94,105,95,99,120,112,92,107,84,99,85,102,99,107,97,96,105,110,101,95,102,110,94,103,83,90,93,100,118,115,98,91,105,107,101,108,114,91,91,87,97,85,85,104,93,101,95,98,99,108,110,98,85,83,92,79,106,102,110,89,87,103,85,90,102,97,85,91,87,90,88,100,94,117,90,88,89,98,97,105,111,104,84,103,94,100,82,97,99,98,98, +402.74249,97,94,97,96,95,82,100,101,92,116,100,96,102,83,104,103,97,101,111,95,106,110,90,95,84,95,90,97,102,95,105,89,101,105,103,86,106,89,87,95,121,93,101,98,105,102,99,109,90,72,97,107,105,85,104,105,97,95,108,113,97,93,99,111,102,105,97,91,83,102,108,95,91,106,99,65,99,103,92,104,105,107,103,99,110,87,94,94,88,87,100,95,103,103,107,106,101,94,116,103,115,111,100,90,98,97,87,94,95,103,100,114,99,100,102,89,101,108,90,99,92,90,108,99,100,93,108,94,105,96,105,100,97,97,100,109,111,94,94,107,99,86,124,99,98,93,104,104,98,92,94,101,102,108,98,98,91,96,94,112,99,99,114,95,104,106,90,100,114,100,91,96,108,98,97,99,107,101,107,102,103,86,97,86,115,100,104,95,121,108,102,112,98,98,95,104,110,95,101,102,109,96,107,113,86,113,98,107,109,95,97,103,103,95,102,67,98,100,93,104,110,100,97,97,107,78,94,96,105,105,100,98,100,106,97,102,101,137,99,113,90,98,107,117,98,94,99,97,99,94,101,101,100,96,105,109,103,107,88,100,102,97,99,95,102,99,81,98,104,95,105,96,110,111,98,109,103,104,115,94,110,102,97,105,99,102,96,100,99,100,83,97,102,125,108,111,100,102,107,103,75,97,99,103,97,108,105,114,105,106,87,95,100,104,105,94,103,105,103,98,81,109,109,114,101,111,94,100,105,109,109,105,109,98,101,98,107,93,97,101,97,108,113,92,97,103,98,111,123,113,114,112,104,104,102,83,94,98,112,115,110,101,113,100,100,97,100,113,108,107,113,106,107,106,104,109,94,102,102,104,105,101,103,100,102,101,99,100,100,106,104,100,103,108,104,91,99,98,89,100,100,105,121,116,98,103,110,106,102,96,86,99,97,104,96,106,102,91,105,93,106,96,116,106,93,99,93,94,105,112,91,96,103,95,99,78,95,96,103,108,96,86,119,101,97,101,101,96,98,117,95,96,87,114,104,107,109,87,109,97,81,85,109,97,110,103,103,88,100,97,106,105,93,94,88,86,97,107,100,101,105,104,95,107,103,101,103,98,91,96,94,93,105,96,97,109,98,95,110,96,116,111,99,111,106,117,95,100,97,93,101,93,96,95,100,101,106,99,100,101,97,96,98,108,103,117,87,94,111,98,110,94,99,94,104,102,107,101,103,87,94,118,114,103,107,93,103,88,104,95,93,111,104,106,90,98,85,99,102,98,102,113,101,100,99,94,97,106,95,101,99,97,92,97,94,117,104,105,94,105,105,99,101,103,100,108,100,102,100,92,99,103,104,100,128,102,103,91,100,108,102,113,106,102,94,108,94,116,95,112,107,101,100,92,109,102,114,100,99,97,101,98,107,109,103,90,105,99,107,99,104,99,102,104,115,111,97,87,93,97,123,94,115,103,104,90,104,112,107,110,100,99,88,99,97,90,97,101,109,120,98,90,97,109,98,102,101,103,98,101,91,88,105,102,102,101,108,102,113,99,116,101,108,101,91,93,111,104,99,111,97,109,94,108,102,109,94,97,102,94,96,98,96,95,104,108,71,99,97,110,111,108,104,86,100,102,98,105,98,95,106,93,93,105,102,118,101,103,103,95,101,98,94,106,102,99,123,100,97,92,110,98,109,96,108,99,89,109,104,103,104,93,97,94,108,98,80,93,99,108,108,74,106,107,102,114,95,101,109,96,97,95,102,106,91,99,99,86,94,99,95,100,101,107,103,110,100,86,105,83,92,107,97,99,111,102,106,99,100,113,101,119,86,114,96,101,99,106,102,90,105,98,92,92,95,95,109,88,105,116,96,104,101,103,99,106,113,98,104,106,105,84,103,114,101,101,111,113,101,92,98,107,100,96,108,104,99,113,102,99,94,100,98,100,103,103,96,96,105,98,133,85,98,95,97,97,98,110,93,109,103,104,95,99,92,87,103,103,99,91,102,92,95,109,102,95,104,99,95,104,104,103,100,108,117,100,105,104,106,111,116,106,112,101,101,96,85,109,109,90,92,104,106,99,102,95,101,81,92,98,109,104,108,100,98,102,100,95,99,101,96,108,103,104,95,90,94,103,102,88,106,99,105,102,100,94,107,95,105,97,98,96,113,108,107,101,99,96,101,75,100,110,104,113,105,109,101,88,94,101,95,105,98,90,97,114,97,90,93,108,85,112,94,95,102,107,104,82,108,100,90,103,100,97,102,95,98,104,84,100,107,112,101,99,115,104,103,111,98,78,82,109,98,89,99,110,101,102,114,89,110,101,94,89,104,94,107,100,92,100,95,101,110,97,108,93,98,106,103,94,106,92,101,114,96,107,105,89,109,104,105,66,104,98,108,113,99,102,94,113,95,96,96,93,91,105,102,108,110,108,98,100,96,96,102,87,107,100,92,95,96,95,98,98,112,102,97,89,102,103,109,106,109,89,92,104,99,98,87,90,94,106,96,91,104,99,102,101,108,103,109,99,107,100,103,113,89,103,100,102,100,95,109,97,93,94,103,97,101,93,93,116,98,85,110,101,104,101,98,95,96,99,102,112,92,95,99,104,101,89,103,106,104,123,90,113,106,95,68,98,109,84,114,107,107,96,106,91,101,86,101,113,98,96,101,102,88,116,107,101,94,96,98,102,96,100,94,121,105,97,104,98,105,98,79,104,92,96,100,109,100,100,102,93,101,98,91,99,101,103,105,94,92,110,99,105,109,124,106,121,100,100,89,96,102,103,104,95,107,103,87,113,100,111,101,94,112,94,94,103,106,96,111,107,102,106,103,110,94,99,102,101,102,95,100,103,96,108,101,99,109,98,104,106,101,99,99,102,106,98,102,96,94,103,101,108,102,123,101,102,108,89,126,113,102,94,97,98,99,98,105,102,90,95,113,89,105,104,105,93,95,95,90,104,100,108,91,93,89,91,105,98,97,99,98,110,114,99,94,90,86,104,92,80,129,101,91,104,103,108,110,88,97,98,99,112,103,109,106,107,94,103,95,96,107,105,86,103,101,103,105,99,98,103,98,106,116,93,101,109,104,112,109,101,101,101,109,100,111,96,104,99,102,113,103,88,93,116,102,103,103,111,106,104,103,96,97,102,89,94,108,106,93,95,94,99,88,90,114,97,103,101,111,103,103,104,99,111,95,103,89,88,100,93,100,94,102,109,119,103,105,104,122,87,106,92,98,91,104,96,102,101,113,116,107,101,102,109,88,88,104,102,109,78,99,105,105,111,107,102,92,93,108,100,95,93,101,99,113,94,101,102,98,91,108,93,87,96,105,109,95,104,106,92,94,94,103,100,108,112,103,108,99,99,99,98,105,97,99,96,102,100,100,95,115,107,116,108,104,98,96,96,102,104,98,102,103,90,101,109,98,105,114,96,100,98,97,96,86,96,102,107,74,92,93,95,102,87,95,100,110,98,103,96,107,97,104,106,107,91,92,111,97,84,115,105,101,102,95,100,99,109,102,109,107,98,96,95,92,109,113,102,87,107,110,107,88,98,99,117,102,113,84,102,104,101,98,100,99,100,117,100,108,105,100,100,109,106,112,100,95,112,96,101,98,95,104,105,102,106,96,108,120,101,104,89,98,114,102,104,105,95,102,104,111,96,93,95,105,104,105,115,87,83,96,95,103,108,102,96,100,105,102,102,95,108,107,100,102,97,92,113,96,96,106,92,99,102,87,103,100,93,96,89,88,94,99,105,100,85,105,110,103,101,96,111,116,123,105,91,102,109,72,101,106,107,102,106,100,90,112,98,107,106,106,105,104,102,99,99,102,107,96,90,77,117,109,99,102,102,109,113,99,105,106,97,97,105,102,95,98,91,98,94,96,87,95,102,108,109,75,94,113,110,109,101,100,96,104,85,89,98,104,95,93,104,93,95,105,103,106,109,97,101,100,100,107,98,99,100,136,110,93,94,110,123,96,106,99,100,89,95,102,99,107,92,100,94,104,108,109,122,108,106,89,96,106,101,111,110,110,109,92,101,114,103,101,106,113,101,112,93,104,102,90,97,94,99,106,102,106,109,95,101,95,113,99,92,104,103,105,89,101,98,98,95,104,107,99,109,105,99,100,101,91,96,104,99,90,101,105,111,81,106,102,107,107,97,96,105,106,113,104,104,72,98,110,105,107,97,95,96,111,100,120,105,92,105,87,102,105,97,98,103,97,97,98,71,99,98,89,108,100,95,97,102,95,99,101,106,102,96,90,106,106,99,97,103,92,109,109,99,93,105,100,98,93,102,89,114,94,108,117,100,124,102,102,98,103,106,100,106,105,106,101,102,105,92,100,101,97,92,94,98,95,108,106,105,94,113,99,100,112,106,96,95,94,98,104,97,72,105,90,105,105,91,98,105,96,96,113,99,94,101,93,105,100,93,101,104,81,108,75,95,99,82,96,102,96,89,90,91,99,102,104,109,88,98,101,99,80,100,104,109,96,109,108,111,88,100,96,98,93,98,98,103,99,100,98,105,108,101,102,91,108,94,88,106,92,97,92,100,101,95,110,111,105,95,90,97,101,85,92,112,112,102,86,107,99,96,100,97,104,116,102,97,100,87,96,99,102,99,94,96,108,68,103,93,111,95,98,91,103,97,90,101,103,100,110,98,99,107,104,91,95,108,100,93,97,90,102,99,113,104,98,94,106,97,88,102,98,110,107,106,98,87,111,93,102,98,111,107,105,92,95,102,95,116,104,74,86,97,112,102,103,100,103,115,100,91,103,91,108,98,99,95,96,105,102,123,111,95,83,95,98,89,104,115,101,109,98,94,105,106,86,105,94,94,96,104,102,84,99,100,93,112,103,86,103,94,108,94,92,87,109,107,101,113,73,96, +402.88263,112,93,103,78,90,109,108,101,86,103,95,85,99,108,99,108,95,116,106,93,107,102,87,99,89,101,93,105,98,99,107,94,73,87,93,102,108,100,105,95,105,100,96,94,91,111,104,107,101,106,91,95,96,96,106,103,107,100,109,89,105,87,96,88,90,100,91,97,102,98,99,103,87,98,80,101,97,105,87,96,78,103,103,99,100,95,100,94,90,103,96,96,112,104,93,89,96,92,105,88,102,101,89,95,90,103,100,88,88,100,92,90,93,74,114,109,101,93,108,93,108,92,95,95,96,101,109,96,107,106,95,107,101,98,92,100,100,115,104,94,97,101,131,101,104,106,116,91,104,95,96,98,105,77,96,101,101,105,104,104,99,107,87,103,104,97,101,99,99,97,96,105,88,109,100,103,106,98,106,113,88,100,97,106,93,91,96,101,114,96,93,101,107,113,105,118,89,100,97,106,101,101,94,101,88,103,99,99,103,94,90,111,120,96,107,99,108,87,105,111,103,106,105,100,94,116,105,102,102,98,95,97,94,104,101,101,102,96,107,91,97,90,108,108,88,80,97,93,105,98,95,102,103,104,93,91,95,99,99,107,96,100,96,103,96,98,91,108,101,105,101,87,99,93,108,101,97,108,108,94,102,90,98,105,94,102,104,118,101,100,94,97,117,113,105,112,106,99,100,102,96,95,101,104,101,92,99,94,131,100,98,111,96,105,96,87,101,99,108,100,100,97,97,102,98,108,113,94,101,95,76,88,105,111,114,102,103,101,95,95,95,87,100,98,96,92,96,103,103,107,91,97,107,100,111,101,91,93,103,103,106,93,111,104,106,100,100,98,90,101,103,98,81,108,95,95,96,82,104,94,99,109,95,102,98,100,104,105,99,86,99,98,83,99,95,99,87,102,106,106,99,94,103,95,98,91,89,103,103,92,97,96,111,116,112,92,95,113,99,94,83,91,95,108,95,100,109,94,97,105,88,88,104,105,123,109,105,104,92,100,117,88,101,102,99,109,91,110,106,103,106,102,104,106,96,100,126,112,96,91,92,99,105,106,99,106,99,102,97,92,100,101,101,101,95,100,92,106,102,103,95,102,102,92,96,109,107,95,93,103,104,101,98,104,92,97,95,105,107,96,103,102,102,95,101,105,91,108,114,100,95,103,95,101,103,100,103,98,99,104,94,87,98,101,104,92,116,102,99,96,101,101,97,92,91,98,95,71,116,109,88,83,101,105,98,94,114,92,108,110,101,99,95,98,101,96,101,98,96,94,99,99,95,96,107,96,91,108,87,111,79,97,89,95,88,105,101,90,87,94,107,102,96,81,103,88,99,106,95,99,101,99,91,103,103,79,91,88,103,101,99,88,104,107,103,106,107,94,113,97,105,94,101,93,86,100,102,103,96,100,111,94,103,103,98,102,92,103,101,94,105,99,95,99,100,99,99,97,108,95,94,103,100,88,101,97,99,102,106,103,111,103,86,110,94,96,121,87,101,95,95,99,97,99,90,118,99,111,114,90,100,99,91,108,101,96,95,100,107,104,100,104,102,99,105,95,86,99,102,100,102,97,101,99,87,105,98,98,107,99,97,99,102,98,104,95,98,109,103,106,67,96,106,106,100,105,95,100,105,96,122,95,106,94,96,95,98,106,109,104,83,90,99,110,94,96,70,95,86,105,120,91,96,95,110,110,97,100,99,99,108,90,93,97,101,98,110,102,108,100,95,102,110,95,98,90,91,98,97,95,106,105,97,103,107,106,94,106,102,106,109,98,105,103,94,99,104,105,105,97,93,104,103,106,117,103,93,124,100,111,91,95,112,95,99,98,108,100,102,104,102,103,76,99,108,110,117,93,99,110,97,118,91,110,103,92,108,107,104,94,97,106,83,96,101,98,111,102,100,108,103,101,97,96,92,99,101,93,99,83,93,108,91,93,87,86,95,94,104,96,121,98,104,95,98,95,100,99,104,112,95,110,117,108,102,108,100,98,101,97,109,106,97,99,98,92,103,100,97,111,94,100,98,97,106,77,91,103,103,103,95,94,88,100,106,109,88,109,99,98,109,96,102,104,95,95,90,105,94,103,100,103,107,83,89,102,84,92,94,101,101,97,105,111,88,61,91,110,95,105,80,95,97,110,100,109,101,97,99,100,101,107,104,96,94,97,105,109,80,100,72,102,100,101,103,101,99,109,95,111,98,90,108,113,95,102,99,85,72,126,94,107,99,103,103,100,91,100,87,106,100,92,80,96,106,87,97,105,104,120,109,93,92,96,111,107,104,103,100,109,96,83,87,109,97,104,94,97,94,111,102,105,96,96,106,98,73,109,105,103,105,95,116,101,109,87,114,98,89,99,96,86,97,98,102,92,103,97,114,96,97,105,94,90,100,99,103,91,94,93,102,109,103,97,85,100,100,101,96,97,97,101,103,110,100,94,101,105,105,104,109,98,87,109,107,99,99,91,100,98,109,106,110,88,102,105,108,103,100,97,105,112,101,99,102,102,103,103,117,99,97,107,103,88,119,116,91,98,94,103,83,93,96,105,108,104,94,106,105,99,108,116,109,99,93,112,102,100,100,102,98,95,85,111,98,100,102,97,108,102,112,82,101,105,91,105,106,102,107,106,104,106,97,90,96,91,111,92,103,90,99,92,108,97,102,101,102,97,105,99,98,105,82,110,109,96,100,109,119,98,102,96,97,104,116,112,91,100,92,105,89,104,91,102,105,87,99,90,94,87,111,102,99,96,112,100,104,101,100,100,109,77,101,124,95,108,100,105,100,108,101,110,98,89,102,100,96,105,108,107,101,107,105,102,78,102,94,106,105,91,118,102,94,98,109,98,107,102,101,104,98,111,93,102,105,106,106,100,87,94,110,96,93,106,108,100,73,104,96,104,109,92,106,106,94,101,110,92,100,99,88,106,94,93,112,114,105,113,104,108,102,101,91,117,103,105,109,107,95,96,95,105,105,108,94,102,108,98,112,103,113,109,120,96,97,100,97,98,113,99,92,83,92,92,98,99,90,106,108,105,91,112,99,108,109,119,107,108,109,103,110,103,91,135,107,102,104,105,88,92,108,109,108,116,83,99,92,109,100,97,103,102,102,117,88,105,96,103,91,100,85,103,101,109,130,102,113,98,108,98,96,101,98,99,97,92,109,101,110,106,104,95,96,100,95,95,87,104,103,102,108,109,112,108,98,96,105,108,77,119,96,103,93,92,110,102,111,91,105,94,104,105,105,109,113,95,101,112,103,104,107,85,104,95,103,102,103,101,104,102,106,98,97,99,109,109,87,108,102,94,108,108,86,113,104,98,95,101,112,88,100,109,101,106,107,97,112,88,99,100,98,109,105,116,99,106,95,98,96,106,99,106,95,109,110,101,109,113,104,92,99,104,99,100,95,116,104,103,102,103,103,98,97,94,105,100,90,107,120,98,103,111,113,93,92,92,92,85,100,107,99,95,105,97,87,114,110,91,113,112,111,100,101,104,119,96,101,88,94,88,99,115,105,101,104,94,102,108,117,104,96,96,92,101,109,105,95,120,111,119,112,87,99,94,106,112,109,99,102,106,98,108,92,108,98,112,94,105,110,102,103,104,105,100,102,102,105,112,119,104,99,107,108,101,98,101,104,100,102,98,102,106,106,106,97,107,95,102,98,113,108,102,99,102,109,101,99,100,94,99,109,90,109,122,95,104,104,86,97,97,111,110,93,91,102,103,99,101,98,97,89,85,109,67,99,115,88,71,103,104,95,102,109,97,111,97,95,97,98,97,89,108,103,105,100,105,107,99,106,109,104,103,101,105,104,114,105,85,118,107,105,103,111,100,100,95,104,103,96,87,95,95,106,105,100,107,99,99,106,107,102,103,112,108,109,100,107,102,102,96,104,100,102,95,114,107,100,88,95,93,96,107,100,97,88,101,88,105,99,112,116,102,100,102,96,104,89,113,103,102,109,104,96,105,92,95,108,97,97,102,97,109,96,114,111,107,104,112,106,100,115,106,95,106,115,107,109,100,102,92,105,106,93,101,104,108,88,104,97,103,91,100,111,92,110,96,101,99,95,103,99,113,100,101,102,104,90,88,94,109,109,105,97,103,112,106,102,106,89,110,99,104,110,101,105,87,115,97,105,97,98,113,91,93,105,105,96,108,96,90,127,98,102,113,100,103,87,106,98,98,91,101,97,118,102,96,115,95,103,110,106,90,100,105,104,105,124,112,106,90,91,97,99,105,109,107,98,102,106,105,100,97,110,104,95,97,111,92,102,114,103,98,99,104,110,101,97,97,101,101,102,81,110,108,114,100,93,104,99,95,105,99,94,96,88,100,87,109,103,106,94,109,103,96,114,99,106,107,106,95,102,99,116,104,99,101,99,113,93,105,99,104,110,107,108,107,103,107,91,117,105,92,94,87,98,101,98,97,103,109,107,105,100,72,105,96,97,104,106,94,96,107,90,98,106,93,109,102,100,103,101,93,102,97,109,101,101,108,102,102,95,96,101,110,102,106,102,105,98,95,103,101,99,113,120,103,103,133,94,99,103,100,97,91,110,116,107,109,92,111,97,84,84,99,105,98,108,103,104,105,102,101,89,109,101,108,104,104,106,83,92,99,101,96,101,109,105,106,75,94,111,107,101,95,88,99,83,98,105,99,96,96,106,100,88,113,113,99,92,98,116,104,115,100,100,94,120,105,104,103,90,95,112,104,97,96,109,88,103,110,106,102,104,98,132,100,102,110,93,109,96,109,105,103,102,99,108,103,107,104,94,102,106,91,107,99,109,93,107,98,101,106,99,90,107,87,107,110,98,110,101,99,104,99,97,110,104,111,106,98,101,96,99,90,102,84,113,99,117,101,98,100,81,94,87,97,96,122,102,98, +403.02277,87,102,95,89,78,95,110,99,93,99,118,86,105,93,85,98,99,109,104,102,103,95,102,93,111,93,95,94,102,100,103,91,105,116,113,117,105,94,97,99,102,78,99,114,128,99,103,99,104,104,115,100,99,91,106,95,110,92,109,105,99,96,104,93,98,121,112,99,89,96,106,103,105,103,98,102,87,92,103,96,94,92,97,95,108,93,103,98,93,105,100,109,109,106,106,93,89,105,107,102,97,92,97,95,101,87,100,88,102,97,96,83,94,92,108,105,101,102,99,108,107,98,88,107,97,106,104,93,103,104,72,105,99,96,99,80,119,96,91,103,109,99,96,108,91,97,96,102,99,97,96,99,94,113,105,87,98,93,97,109,109,95,102,104,96,106,97,104,97,91,94,105,92,95,100,102,88,98,104,111,96,94,102,127,94,108,96,83,102,92,95,105,105,112,117,100,108,95,92,95,91,104,99,95,107,109,93,102,91,89,99,89,102,96,96,90,100,90,104,99,110,100,98,98,99,106,97,97,106,112,101,95,96,93,106,120,110,102,98,99,98,96,97,90,108,109,113,98,101,108,95,91,93,108,99,100,110,99,105,101,105,97,103,103,93,97,105,106,96,105,96,81,97,106,114,102,99,102,96,98,99,105,100,95,96,98,96,104,100,101,98,103,80,102,98,106,98,107,94,102,100,91,115,104,96,115,105,104,96,105,83,101,99,107,103,115,97,97,92,104,91,101,105,115,103,97,97,91,104,104,92,95,104,99,94,89,95,100,98,100,100,91,100,97,95,99,87,104,123,99,95,92,109,105,108,99,117,104,94,103,101,101,107,93,108,97,98,108,103,109,117,80,105,99,97,99,107,94,95,110,95,97,98,98,96,79,100,93,101,87,110,97,85,100,96,99,101,94,97,107,103,97,92,84,110,95,107,106,107,115,84,116,105,102,102,107,104,97,97,101,105,109,90,106,103,100,114,95,92,108,102,108,97,84,97,99,99,98,100,79,103,88,103,99,92,115,102,95,100,100,110,98,104,110,108,99,109,108,101,104,96,100,107,99,97,94,97,95,97,114,98,116,111,100,102,99,98,98,96,104,98,108,102,103,101,112,108,100,105,88,93,99,97,88,100,116,95,108,94,97,105,95,100,97,109,90,100,99,109,89,108,116,77,124,90,104,95,93,98,94,100,101,106,97,110,114,107,93,98,97,108,105,100,98,102,93,96,110,96,108,102,108,102,116,109,91,105,93,70,105,94,104,98,97,102,102,110,97,93,98,103,98,100,99,104,112,101,97,101,99,92,90,99,113,98,103,94,101,97,110,108,90,97,91,102,92,105,97,95,98,96,103,96,100,106,98,97,90,104,95,95,103,113,98,93,112,106,89,89,103,111,89,133,104,111,100,89,108,102,88,106,99,102,113,106,102,102,100,108,113,107,98,105,119,97,91,102,95,108,96,114,100,103,101,93,72,102,107,110,112,101,103,110,98,100,102,101,102,113,97,102,97,116,108,100,95,100,96,94,96,102,108,83,106,102,104,99,103,90,105,111,96,110,99,99,101,99,110,100,111,93,99,92,106,104,89,103,100,89,97,104,89,109,98,108,109,96,104,93,95,89,114,94,103,96,99,104,90,100,104,104,104,92,104,91,96,90,106,92,104,103,115,92,96,89,101,97,108,105,100,122,99,105,103,106,98,106,93,95,111,100,102,103,110,95,91,103,106,99,105,102,102,95,100,102,114,95,108,123,99,96,102,111,94,102,101,99,100,109,92,104,105,98,88,113,124,101,110,106,105,105,97,107,99,106,104,88,107,111,112,94,98,100,88,104,99,93,95,94,104,117,97,94,101,105,101,104,100,104,88,101,105,101,95,97,108,102,103,95,99,79,102,106,95,103,104,117,108,105,101,105,99,105,89,87,94,104,80,77,87,101,105,100,104,100,105,94,97,96,101,90,89,99,97,101,104,98,101,104,108,102,98,105,99,95,100,108,98,102,94,105,95,106,115,88,95,102,110,104,90,103,116,110,100,96,108,106,105,100,110,98,98,103,91,99,104,114,95,108,105,93,104,96,105,102,100,87,103,94,98,108,111,106,110,108,85,104,99,92,110,98,100,97,100,86,89,100,108,96,102,75,103,108,110,101,94,100,92,97,97,92,98,108,121,102,104,101,105,102,91,98,110,99,104,96,97,94,108,109,109,86,99,99,99,105,100,102,104,110,104,105,89,101,101,108,96,80,90,101,95,114,79,104,97,90,110,87,95,88,103,105,105,98,101,99,104,98,109,111,98,101,96,99,91,97,101,84,99,91,88,96,97,93,94,101,93,96,93,94,101,102,97,98,90,102,86,100,110,93,100,98,95,97,105,91,96,99,105,89,91,91,98,89,108,99,106,100,98,91,96,83,103,105,98,87,97,98,100,92,94,90,99,111,105,91,81,92,95,91,96,95,106,85,101,89,90,93,102,101,99,96,95,102,95,107,93,94,100,94,109,106,100,101,90,113,91,101,98,90,101,106,113,95,100,97,90,119,94,107,101,95,107,96,105,101,92,101,89,110,100,98,109,92,98,93,100,105,99,85,101,105,91,86,90,105,111,101,91,83,84,107,95,99,92,95,95,106,96,105,90,98,108,99,90,110,104,100,98,99,91,98,98,95,100,88,109,101,79,102,92,92,103,94,100,96,107,87,103,103,86,97,95,110,99,100,104,95,100,105,112,97,89,101,92,103,110,99,99,103,106,102,95,102,105,101,101,105,96,107,101,93,104,103,99,98,97,92,104,116,104,105,104,107,98,103,99,98,111,105,99,95,117,101,104,87,104,100,91,87,100,102,92,102,96,84,89,85,91,108,93,97,94,94,98,92,96,93,97,102,90,109,95,98,105,96,95,99,112,104,103,93,98,112,92,88,100,96,99,95,94,108,120,101,92,110,96,109,102,97,110,95,99,100,113,105,97,94,111,100,89,113,100,96,98,101,97,106,94,97,89,108,118,95,72,112,85,103,96,88,104,84,107,87,112,103,98,92,87,99,102,108,99,105,95,102,80,108,93,112,110,117,92,93,104,102,92,120,91,98,100,97,96,84,118,108,97,104,93,98,102,89,102,110,99,98,114,93,98,88,102,104,91,109,102,112,91,113,109,111,105,103,89,102,109,103,103,103,105,104,112,109,90,94,105,106,104,102,109,76,104,92,101,101,90,99,105,96,100,103,103,114,107,102,116,109,118,100,108,109,99,103,112,97,102,106,97,105,96,98,91,87,93,97,102,94,76,98,97,97,89,102,98,91,98,100,106,104,96,105,103,105,105,99,84,116,102,100,88,95,98,94,97,109,97,85,105,100,113,96,100,98,96,107,100,103,102,110,101,103,100,95,99,101,104,97,108,91,102,107,105,99,105,100,98,96,125,109,110,98,103,88,96,93,103,109,88,104,97,99,89,93,87,104,103,95,96,111,104,97,104,94,100,109,105,82,106,108,114,103,97,97,110,96,86,96,93,89,101,87,95,98,101,107,108,114,96,104,94,91,104,78,97,105,93,105,112,100,72,107,105,109,105,101,103,96,99,87,108,80,96,93,96,102,102,102,71,92,113,98,104,105,111,100,106,98,100,110,97,83,102,105,92,105,101,93,93,98,107,100,103,97,113,93,106,93,105,91,113,99,100,103,108,98,101,91,96,101,93,123,95,105,93,91,98,105,103,109,101,110,108,105,94,102,103,110,86,97,112,94,96,101,93,96,98,93,99,109,92,105,112,107,98,100,100,95,84,99,97,97,93,94,100,113,97,95,84,105,106,92,101,100,96,103,103,97,104,102,96,94,113,95,94,89,94,90,105,103,87,98,89,105,110,101,96,90,96,90,96,104,94,83,106,97,86,92,102,97,101,90,86,109,113,108,99,97,94,117,94,97,94,89,101,101,104,101,110,106,96,62,82,86,82,89,107,92,98,89,97,87,91,105,97,96,95,93,88,87,99,89,112,94,101,95,100,88,102,104,94,108,101,104,91,102,97,94,96,99,99,98,94,103,91,94,98,114,101,101,95,92,100,98,103,110,96,86,98,102,92,86,91,97,106,101,98,92,99,95,96,91,93,94,100,101,101,102,101,100,90,94,86,98,77,87,96,100,88,109,86,107,95,77,97,104,91,93,99,104,96,98,92,126,107,99,102,101,102,97,108,90,95,98,85,105,94,112,98,98,97,95,98,104,97,102,97,104,107,108,103,100,95,88,97,105,106,88,101,101,97,95,104,98,95,95,96,93,110,108,96,91,100,105,93,95,77,103,99,103,108,90,103,103,104,109,102,97,86,91,101,107,113,105,91,118,99,105,87,96,111,106,104,93,98,106,109,113,102,106,109,94,106,98,91,88,106,93,107,94,104,100,70,96,95,109,101,91,102,100,104,103,97,112,105,97,97,99,101,95,109,98,100,103,108,100,94,109,92,107,89,105,80,96,93,96,91,94,109,92,92,101,94,91,94,98,103,98,102,112,104,91,105,88,98,87,97,110,92,94,95,95,114,91,108,102,95,91,95,96,103,99,56,99,88,109,93,91,93,95,101,94,93,103,85,100,99,99,110,88,108,109,95,100,88,96,103,92,104,104,105,94,101,107,104,101,99,99,91,102,98,104,96,92,94,104,102,91,108,94,102,101,100,112,108,102,90,109,98,126,87,93,92,95,105,104,101,99,99,96,99,100,107,106,95,89,91,97,96,91,103,86,93,102,99,105,100,79,90,103,97,98,98,87,93,94,107,95,112,125,100,100,94,109,99,100,100,96,104,87,115,107,105,102,125,95,79,100,102,79,100,101,102,92,104,101,97,102,96,79,89,112,89,71,115,87,99,106,80,87,108,87,88,109,88,102,87,108,83,89,99,89,101, +403.1629,113,105,97,89,82,96,94,95,111,92,101,104,108,97,100,94,89,96,113,85,102,101,74,102,96,77,101,90,86,103,108,105,95,92,94,98,95,95,105,114,106,105,102,93,95,96,102,113,89,91,102,88,102,98,93,98,101,82,111,101,97,98,78,85,103,101,94,103,91,86,99,107,91,97,91,110,105,92,98,96,96,97,95,96,91,79,93,101,91,93,106,92,86,91,102,108,98,92,95,93,92,109,100,93,104,100,86,87,95,102,91,94,97,101,96,92,84,104,91,102,91,105,100,104,112,100,87,87,98,99,95,98,83,92,101,91,102,100,97,98,101,93,100,97,99,98,100,90,86,89,100,110,109,89,102,91,95,100,94,96,97,100,101,109,103,106,101,92,106,91,97,87,100,105,92,84,95,97,114,112,97,113,94,104,81,94,96,91,106,88,97,101,96,96,99,96,97,95,100,98,100,91,108,102,103,107,103,98,100,108,91,90,92,117,104,97,102,116,97,93,97,102,107,104,94,106,117,91,98,102,94,108,114,101,110,92,113,110,106,100,89,109,101,107,129,101,103,95,100,97,96,89,96,91,103,99,101,108,87,99,101,102,115,97,88,94,116,103,104,81,95,109,98,89,93,102,85,105,91,103,109,99,96,98,100,96,86,95,91,95,104,106,114,104,100,95,95,96,90,93,96,86,99,101,94,104,107,99,91,96,98,102,109,97,96,97,87,93,98,95,98,99,96,111,95,84,102,108,103,110,74,102,97,110,89,109,88,89,87,92,96,98,87,96,113,100,108,86,120,108,96,109,112,105,86,92,107,88,91,103,96,104,98,113,95,111,96,125,105,106,108,80,100,95,109,103,110,95,101,113,102,94,90,120,98,103,95,95,96,90,106,89,99,101,90,111,99,94,88,99,92,112,105,99,112,92,91,91,95,97,94,96,93,107,105,98,108,91,108,100,96,94,97,98,97,99,96,92,89,87,92,103,96,94,101,91,94,105,103,102,105,104,89,104,101,103,106,94,100,91,94,104,98,98,94,104,100,92,104,110,95,110,107,115,76,100,94,93,96,102,96,115,105,107,92,102,93,95,106,99,101,108,114,100,114,116,91,101,95,99,100,93,118,96,93,101,98,95,98,92,87,101,102,100,106,98,99,85,86,79,104,93,91,96,108,95,95,101,99,95,93,86,96,94,98,80,97,94,99,88,104,100,87,93,100,113,115,112,103,108,100,100,80,89,99,91,89,99,93,100,96,111,97,93,99,86,102,94,99,93,102,98,109,101,108,95,94,105,99,92,88,98,117,93,95,105,99,99,100,99,97,84,109,106,99,115,95,92,110,93,97,98,100,90,74,89,90,103,96,104,105,106,106,96,106,87,95,96,98,101,102,91,105,86,100,100,94,103,98,105,100,94,109,109,102,120,88,104,97,99,112,87,95,104,104,111,104,91,106,104,94,109,98,86,115,87,116,98,98,107,102,91,87,110,102,118,95,96,95,105,102,94,91,86,84,106,93,100,104,110,108,106,111,96,92,112,105,102,94,108,108,101,94,102,103,101,97,95,95,96,94,96,96,104,110,87,100,108,104,98,93,88,104,86,96,99,102,95,100,102,101,98,109,95,98,101,111,98,96,97,103,104,103,92,106,100,95,112,97,110,97,106,101,103,99,89,104,105,100,93,113,111,93,97,100,90,97,102,97,95,106,99,100,92,102,71,113,106,106,102,86,99,97,107,102,102,92,104,102,102,86,114,105,95,98,97,97,94,107,107,103,90,103,103,104,77,112,94,86,96,104,107,121,109,100,99,101,103,102,97,112,93,102,108,106,113,93,104,105,106,66,96,96,111,88,104,109,99,100,112,108,94,97,97,92,107,103,105,89,86,109,105,106,105,101,108,86,99,103,106,99,96,108,98,103,74,88,99,89,101,98,91,94,105,95,105,93,97,102,98,98,106,95,95,101,101,111,99,83,115,106,98,98,120,106,106,89,93,95,99,96,116,91,98,95,111,108,108,104,102,102,99,91,101,106,97,91,103,110,109,101,96,109,100,110,95,84,103,107,97,90,101,105,93,98,97,94,104,97,91,111,111,102,108,105,99,102,103,95,103,95,107,112,99,106,109,95,95,91,101,112,89,93,110,99,94,98,108,92,96,98,85,103,96,107,93,96,88,90,102,96,91,105,96,102,87,86,106,108,90,92,101,101,87,84,96,100,100,82,95,95,90,74,99,88,71,102,84,109,90,104,102,107,112,105,95,99,90,89,97,105,100,92,92,93,70,112,101,93,92,87,102,108,92,100,106,93,101,97,103,104,92,99,107,102,93,101,100,98,84,105,97,105,82,103,99,95,94,112,98,110,104,94,83,101,102,101,102,98,103,107,103,106,100,99,108,112,104,101,109,99,102,100,105,93,99,99,100,93,91,103,94,105,101,103,110,123,85,98,97,107,98,113,128,104,87,98,100,105,87,90,82,96,105,114,93,98,98,116,93,100,100,97,96,103,109,89,121,96,77,92,106,94,95,95,116,87,79,90,100,92,104,97,89,110,86,98,102,109,103,101,99,105,99,96,109,90,97,98,98,102,90,104,98,103,103,102,103,107,84,108,101,109,98,105,96,106,116,94,100,98,101,96,102,92,102,108,85,106,102,99,107,94,100,104,109,98,101,101,102,90,105,93,104,97,88,106,95,126,97,100,103,109,105,93,100,109,96,83,99,101,91,102,113,105,95,104,106,98,116,104,121,90,104,98,94,103,94,92,100,104,109,101,106,98,103,108,97,113,105,109,99,105,107,111,101,103,98,101,113,103,100,107,97,100,91,100,108,100,108,101,102,98,111,106,102,101,103,98,107,100,83,107,101,103,106,101,107,99,106,101,93,117,109,107,100,94,104,105,103,105,96,99,99,113,105,108,101,103,100,107,100,106,104,103,102,91,98,99,104,92,106,93,98,89,95,98,92,109,96,102,109,103,97,106,98,96,109,114,109,95,99,102,100,102,101,98,104,101,91,104,96,98,106,132,106,87,98,105,90,103,108,101,93,92,99,93,103,104,87,104,95,100,112,100,103,108,96,106,96,108,83,112,105,105,83,101,102,101,100,97,92,102,121,100,98,94,97,99,95,107,108,99,96,104,94,98,107,108,86,98,113,103,84,103,88,112,104,105,96,87,90,102,112,91,118,105,104,115,96,102,97,110,117,102,99,96,107,123,108,98,99,84,105,96,102,115,71,102,99,109,94,102,88,100,103,94,90,105,120,102,107,98,110,90,96,90,87,102,97,86,94,107,104,110,103,107,109,110,101,97,96,99,80,97,92,99,97,92,109,93,108,115,91,99,101,97,103,92,98,79,90,75,94,101,99,100,112,101,105,96,96,98,104,95,87,104,95,107,106,91,100,117,104,97,112,110,113,108,91,95,98,97,76,93,95,106,111,107,74,87,100,95,97,92,103,102,92,102,99,100,101,95,100,93,108,112,107,102,94,79,108,92,109,99,91,99,93,98,90,104,108,116,103,105,93,109,106,92,102,91,99,103,98,96,99,98,96,99,93,111,89,91,98,118,101,106,91,95,91,93,106,86,102,127,102,108,86,101,102,98,95,118,100,94,89,103,99,101,99,109,108,107,101,99,75,101,94,101,101,91,105,114,110,89,112,99,138,109,105,108,109,94,95,105,95,101,103,95,94,99,95,100,107,95,94,100,112,79,88,105,94,97,109,115,101,106,87,105,107,87,84,105,98,100,94,94,99,97,100,96,104,97,110,96,95,109,75,103,91,101,109,100,102,88,79,93,89,105,90,98,90,104,97,99,101,109,106,87,98,99,107,102,100,101,96,103,98,103,100,98,104,101,91,110,109,108,101,99,104,106,100,99,106,99,97,91,104,102,107,99,97,99,114,102,102,104,99,105,98,102,102,107,96,89,94,104,95,101,104,105,102,101,100,111,106,96,102,104,95,102,103,95,95,95,96,104,113,99,105,97,105,107,94,105,78,112,114,101,105,111,95,96,96,107,99,106,103,109,96,99,105,111,69,103,114,96,98,87,91,97,94,107,95,108,103,102,113,96,97,99,102,98,98,72,88,106,105,95,106,111,107,101,101,94,106,110,106,90,102,98,103,98,109,107,108,101,108,118,97,97,101,98,93,120,100,102,90,109,100,92,100,106,111,107,100,96,109,93,95,108,106,112,111,112,87,105,89,109,103,100,95,106,102,95,100,99,106,87,67,102,98,100,104,109,96,93,101,109,117,101,95,99,102,114,108,117,99,102,99,98,95,102,99,111,100,117,92,97,110,100,103,107,102,108,93,91,99,106,105,109,96,109,105,91,95,98,98,111,130,102,100,100,104,106,104,108,102,100,96,92,93,100,100,100,96,104,99,121,111,98,89,101,102,92,98,88,103,103,91,99,114,96,94,101,90,89,97,99,106,119,106,96,94,98,93,86,98,103,105,99,103,108,96,108,102,105,96,108,106,93,98,93,106,106,102,115,105,76,97,99,100,115,109,103,98,98,110,103,104,108,108,99,98,104,103,100,92,78,102,88,103,97,61,102,63,108,99,89,95,95,99,111,103,74,95,98,101,104,94,112,101,96,108,99,90,128,97,100,91,98,87,91,100,105,102,99,102,121,97,97,102,101,98,104,94,107,107,94,110,104,102,106,101,95,92,99,117,108,110,91,98,117,116,102,102,101,105,88,83,96,102,87,109,108,92,100,121,103,126,110,94,93,76,110,96,102,114,104,103,100,95,95,96,102,112,100,113,98,99,101,95,87,86,112,91,93,95,100,100,110,109,91,114,105,102,101,108,83,109,101,87,112,107,88,101,98,116,103,96,95,92,101,109,110,99,103,103,104,95,95,96,105,99,97,103,94,105,89,71, +403.30307,99,81,83,95,94,91,102,95,92,76,71,103,101,84,99,95,73,96,98,109,81,93,101,96,81,104,112,94,98,94,96,100,96,107,100,112,107,83,103,92,102,77,92,93,110,99,96,88,98,103,96,101,95,128,105,87,97,69,103,84,92,101,101,97,95,100,99,88,93,101,91,104,98,100,93,98,96,95,109,103,106,94,99,107,94,99,97,95,100,97,81,84,96,113,94,85,96,109,93,91,96,94,73,105,116,96,101,101,103,104,94,104,99,110,99,92,105,102,101,99,96,105,97,96,92,110,110,100,91,106,98,81,100,85,100,98,108,107,100,92,117,103,107,98,80,88,113,94,96,96,95,96,101,100,100,104,101,89,108,96,96,100,109,98,94,102,92,95,105,97,99,96,101,97,101,106,110,98,103,96,102,130,106,103,87,69,99,92,106,93,96,99,104,97,97,113,98,101,109,99,103,98,100,100,101,108,108,114,127,101,96,93,98,94,107,103,93,98,90,99,95,89,87,102,111,103,99,87,106,90,92,87,103,100,118,99,109,102,106,96,95,94,100,93,90,91,100,95,105,106,100,100,92,102,96,106,97,95,92,103,87,109,95,96,100,104,96,99,103,91,106,96,96,95,101,106,100,101,94,103,108,100,67,100,105,101,97,97,109,112,98,92,103,102,110,101,106,92,106,83,105,101,105,117,94,96,100,75,98,96,96,96,101,104,91,104,99,104,101,105,95,96,100,97,100,95,95,96,109,89,93,96,99,99,99,91,96,98,109,105,105,95,90,92,97,99,95,101,96,100,100,90,97,107,93,91,97,101,87,100,101,113,101,92,98,95,82,102,93,100,104,91,76,92,95,104,95,89,97,87,95,92,102,102,97,93,102,100,100,91,99,112,104,118,107,100,127,94,95,104,95,108,106,103,98,103,100,95,97,100,99,93,97,103,101,95,105,95,119,93,109,104,103,94,105,98,102,103,98,102,110,98,104,101,91,104,95,107,94,104,89,94,104,107,86,109,86,92,107,98,91,114,105,103,103,96,96,111,101,95,94,99,112,100,105,102,100,100,104,94,102,113,93,94,98,100,81,91,97,106,89,99,98,93,104,93,102,98,96,102,103,101,96,97,70,99,92,107,94,93,103,105,101,97,100,102,98,113,92,116,103,94,104,97,98,98,101,112,103,93,106,108,98,113,106,110,104,96,97,96,91,99,98,89,106,96,98,87,106,109,98,97,98,95,95,131,112,104,113,109,102,110,101,92,107,98,110,92,96,91,96,82,86,84,101,106,88,108,103,87,97,94,95,107,114,113,99,91,96,102,98,102,92,99,102,94,95,104,99,115,94,108,101,95,110,99,101,109,111,92,97,108,104,106,101,110,105,111,96,105,104,100,113,113,104,101,96,94,94,110,110,100,99,100,102,114,94,99,102,93,103,107,89,97,105,117,107,92,107,99,98,98,112,92,96,86,106,103,118,106,108,112,109,102,97,94,108,102,95,107,110,109,95,93,91,95,102,101,110,97,106,107,105,102,98,93,97,100,102,100,99,102,109,100,89,92,96,95,102,105,105,108,95,106,79,91,95,95,117,88,94,96,108,102,99,91,61,106,91,80,107,106,113,81,95,93,90,102,99,90,103,102,114,109,84,109,95,106,98,103,97,96,98,98,120,92,104,94,108,94,98,89,107,92,106,86,93,105,97,105,101,101,120,70,100,104,116,106,99,89,106,99,92,94,87,106,96,99,100,95,101,95,101,99,98,95,105,101,95,97,82,96,107,98,99,110,101,106,94,100,104,108,124,100,98,106,90,101,100,103,90,109,73,89,79,92,107,99,107,111,100,100,105,104,101,100,114,90,103,91,97,113,97,115,104,106,99,104,104,81,99,99,83,117,89,117,105,94,108,96,99,87,93,104,87,86,97,98,96,95,97,96,89,110,102,87,106,88,99,92,106,100,105,107,95,102,87,107,102,105,102,102,88,104,95,99,98,109,93,103,109,92,95,104,106,108,102,118,107,106,107,91,103,102,103,94,95,104,91,114,101,102,109,112,99,102,102,96,98,99,104,106,110,112,106,110,96,104,107,113,106,108,70,114,106,87,86,100,98,109,99,94,107,94,102,91,102,97,102,109,103,104,102,101,91,110,105,99,92,92,101,107,106,97,97,102,100,92,90,108,125,107,89,99,113,100,94,107,101,104,94,113,100,96,109,107,102,105,98,102,100,112,101,108,97,94,91,75,87,87,94,99,106,92,97,97,84,107,98,96,107,105,102,103,104,114,98,116,105,106,84,101,100,111,105,101,83,97,112,90,99,112,103,91,124,103,102,101,94,93,93,108,103,102,99,74,106,110,117,113,102,95,101,100,104,95,76,100,100,105,96,103,95,79,84,110,97,106,89,102,89,96,109,93,93,99,96,91,94,94,101,107,96,100,96,100,106,101,80,109,92,98,95,105,119,89,103,94,104,100,98,76,94,84,102,92,98,99,101,88,86,97,100,87,97,107,100,113,106,96,87,110,99,94,100,87,105,94,86,108,105,89,90,100,97,102,88,95,107,105,95,108,82,90,96,95,101,101,98,127,92,85,103,102,94,100,93,104,107,96,93,104,107,97,103,103,102,105,101,106,98,83,92,91,88,94,101,105,107,107,91,87,107,106,98,109,93,97,95,108,104,111,89,114,94,104,103,107,100,108,91,103,100,100,94,99,88,102,81,107,96,108,115,97,96,104,99,104,101,99,103,100,94,107,109,107,105,93,104,99,91,102,108,115,129,114,98,95,91,110,103,106,97,102,107,96,95,98,108,105,104,90,99,98,103,91,93,95,107,94,91,105,98,105,100,103,110,103,102,110,92,101,93,95,110,97,99,110,101,91,97,96,109,113,94,93,87,100,102,95,100,113,117,98,78,102,90,111,99,102,98,92,101,101,99,113,100,94,88,98,104,95,98,93,107,99,98,93,103,107,97,98,95,109,89,110,106,97,92,99,106,107,99,93,103,102,105,98,111,94,101,104,91,111,100,108,98,88,97,110,98,100,104,95,109,96,114,99,99,106,93,94,96,99,86,120,103,89,99,94,97,79,101,89,110,84,106,103,102,95,88,98,98,104,98,99,99,102,101,94,103,116,100,102,81,84,102,94,90,101,94,99,105,89,104,97,109,107,91,106,88,101,89,97,92,95,94,96,93,94,109,116,93,112,103,92,94,102,108,105,99,107,87,92,93,99,95,92,108,96,100,103,103,94,94,100,101,110,91,98,94,91,100,102,101,93,74,100,105,91,94,101,110,105,101,101,106,93,105,97,100,120,92,96,99,94,87,94,104,113,91,103,97,76,79,97,87,98,105,97,91,90,104,103,81,94,96,107,97,102,99,97,92,98,99,94,99,101,105,108,92,101,91,102,105,83,107,98,99,97,97,97,92,101,100,93,91,99,97,87,96,99,113,97,108,105,97,107,96,98,87,94,100,103,109,106,95,115,105,91,92,106,102,94,98,108,103,76,111,109,106,100,90,98,103,102,103,102,104,106,80,112,108,95,80,98,101,103,100,112,105,100,97,88,113,101,102,109,113,82,85,95,90,110,111,95,109,97,98,91,93,97,109,99,97,105,95,100,91,101,89,105,105,103,100,115,90,89,109,96,96,93,99,113,104,100,84,105,105,117,94,87,109,109,73,102,107,95,90,97,97,103,91,98,105,94,100,100,106,102,86,110,97,96,102,97,111,100,117,98,97,95,97,94,61,96,93,94,89,91,109,98,102,98,97,96,104,91,99,96,108,102,113,106,100,105,88,94,93,89,99,97,100,97,97,110,101,105,104,101,97,113,99,98,94,92,115,94,102,95,104,98,104,98,101,105,106,98,102,98,99,83,99,104,102,95,104,97,102,97,105,93,90,115,92,93,109,95,107,102,104,108,109,99,99,106,94,89,103,103,104,97,103,96,85,103,95,100,91,91,105,103,102,100,95,109,102,93,106,87,91,99,104,101,110,102,99,121,98,100,110,91,105,99,82,95,99,100,105,87,108,103,109,102,104,104,105,100,101,101,113,113,88,113,97,101,106,93,94,107,100,105,101,102,104,97,103,109,110,96,94,102,93,108,98,104,102,83,98,101,89,102,106,117,110,98,85,100,101,111,94,104,102,95,108,100,110,90,98,101,100,104,99,91,93,105,103,91,104,96,99,111,111,105,103,102,101,96,96,101,114,103,94,96,95,97,106,105,97,84,89,95,109,92,101,92,92,99,104,98,98,100,100,101,96,110,107,98,84,110,97,104,100,98,105,103,100,94,96,93,100,103,140,98,104,100,103,89,101,117,101,90,100,100,100,102,98,105,101,98,92,102,102,104,83,98,103,96,98,102,98,99,100,95,99,93,106,98,106,103,105,95,108,100,97,118,98,102,103,100,106,92,111,100,93,107,91,100,99,103,93,114,101,98,94,86,113,104,101,84,101,92,99,102,101,100,105,98,97,98,95,93,99,97,103,103,114,98,96,89,98,95,100,84,98,117,113,108,92,104,95,103,93,104,95,100,117,97,100,95,107,102,88,87,102,100,95,100,75,96,96,88,106,109,100,104,100,99,97,111,97,90,83,108,87,113,91,101,79,81,109,95,88,103,104,106,113,94,106,89,98,105,102,95,103,99,97,90,92,97,107,92,110,93,96,109,97,103,85,86,96,104,95,105,99,85,91,104,109,90,88,104,99,100,92,94,104,93,85,106,106,91,100,94,87,102,93,96,102,105,94,96,91,101,93,98,101,102,99,105,97,96,117,95,106,95,92,79,89,89,99,109,80,110,94,94,94,106,96,99,102,94,69,114,121,98,87,84,102,96,86,94,88,96,102,89,84,102,76,98,85,90,109,106,91,73,99,101,107,86, +403.44321,106,96,90,100,95,112,107,74,94,91,105,103,105,98,113,90,102,111,101,103,102,96,92,93,93,88,86,113,103,92,97,103,103,100,96,88,109,85,91,94,94,105,96,99,100,104,107,106,95,102,93,94,109,98,107,91,77,90,105,90,94,104,107,95,96,110,87,108,102,89,105,101,95,91,95,99,86,103,90,96,106,98,100,104,101,98,90,104,103,122,90,102,83,100,100,97,105,95,93,97,101,102,98,105,99,102,83,110,89,96,92,97,104,98,105,96,106,106,96,100,104,92,94,94,100,96,102,98,100,98,87,95,97,101,98,98,93,89,95,90,87,106,87,91,108,96,95,103,95,97,95,101,103,99,93,87,100,82,97,108,97,100,102,95,96,109,95,99,103,96,105,99,96,99,102,90,98,104,107,94,99,102,100,103,95,100,104,87,99,87,102,104,99,100,95,109,101,99,103,93,107,96,93,105,95,84,104,99,103,104,86,105,104,103,101,101,84,92,94,93,98,88,105,98,103,99,104,88,93,103,107,88,106,97,110,95,104,106,106,84,117,95,101,97,93,104,93,91,97,104,94,99,97,101,103,101,104,99,89,103,105,102,94,118,95,95,92,102,98,97,93,108,109,89,89,118,94,101,104,85,105,95,104,109,98,106,101,90,106,103,111,107,101,103,108,109,95,71,100,103,92,99,111,106,106,101,96,105,95,106,92,107,98,114,103,106,102,110,106,98,103,103,94,99,103,106,101,89,102,123,99,93,86,93,114,108,82,94,99,97,90,105,98,72,95,97,100,97,101,101,93,107,102,110,100,118,104,113,96,109,97,96,94,96,99,93,94,99,103,99,98,99,96,96,95,100,112,93,100,92,99,101,102,94,100,96,90,88,94,101,99,91,99,102,93,112,95,98,110,95,96,104,85,98,105,98,97,99,90,95,95,96,103,104,100,103,100,106,105,106,103,113,101,109,98,92,102,95,100,105,93,101,100,96,105,100,100,102,102,97,107,106,110,103,92,95,92,83,113,99,102,95,101,110,87,98,106,101,103,99,118,106,92,110,91,110,94,111,89,96,97,100,92,97,105,95,95,112,113,106,90,103,105,98,107,91,88,103,116,101,105,96,93,99,57,94,94,98,106,109,98,94,90,95,105,98,81,98,99,94,100,92,120,105,103,106,106,96,88,104,102,99,109,105,95,105,104,113,108,98,97,105,97,92,101,99,108,96,93,107,99,100,95,96,96,91,106,99,98,144,105,103,110,107,93,103,106,97,78,95,102,102,88,105,100,108,97,100,106,96,97,74,102,104,98,91,92,103,84,106,84,87,95,99,98,108,97,98,99,102,94,94,122,93,96,104,86,94,104,101,104,100,99,94,90,101,100,98,106,110,100,105,102,98,97,87,99,96,104,101,112,83,96,91,97,91,91,100,112,105,102,107,102,112,108,117,94,101,94,93,98,100,104,103,87,101,105,106,100,83,99,105,96,96,105,93,99,108,100,97,112,88,103,107,92,108,103,102,103,92,116,107,111,97,91,109,91,92,103,92,105,104,115,84,83,104,90,102,97,103,100,111,100,105,100,104,116,98,111,97,99,103,95,87,110,97,99,95,101,102,98,107,96,101,92,95,97,100,102,91,97,92,105,95,98,92,88,99,109,93,95,92,88,102,106,108,97,97,103,94,104,105,105,100,100,100,92,92,96,75,115,98,95,101,95,110,97,96,95,102,104,91,97,114,106,106,99,108,105,101,104,98,105,100,111,106,103,86,109,102,103,93,101,105,101,97,96,94,97,116,95,101,109,96,105,107,103,95,105,94,99,65,82,99,101,134,90,105,99,103,111,100,110,99,101,113,114,101,96,87,107,104,98,102,105,102,117,105,88,106,104,94,99,113,115,98,104,109,94,106,101,108,100,101,105,98,105,101,111,96,98,96,105,103,85,105,98,99,99,103,97,109,98,93,105,93,92,91,101,106,85,101,104,105,98,99,90,99,97,87,109,100,109,95,89,111,110,112,99,110,92,104,93,100,105,102,98,94,100,96,117,98,108,84,98,98,101,101,81,93,107,103,70,105,102,91,107,96,109,113,106,91,87,90,106,94,94,86,107,92,103,113,110,105,94,115,97,75,107,108,95,105,103,106,110,85,94,100,105,103,96,105,86,91,93,93,91,99,100,92,102,90,102,97,103,94,110,86,106,117,93,116,102,92,109,91,110,108,94,95,92,122,99,108,89,97,96,103,100,93,93,87,95,110,99,93,89,108,94,104,100,98,86,94,108,94,107,99,93,90,96,85,65,94,117,92,97,99,106,86,106,104,104,112,109,87,105,108,101,97,109,103,104,105,91,95,104,101,104,94,100,100,93,100,93,99,92,101,108,98,107,103,102,93,83,99,97,95,97,101,99,97,116,93,105,86,100,96,99,92,98,106,92,103,79,104,103,94,85,103,84,97,91,106,106,105,104,99,107,100,96,94,119,86,91,91,100,102,109,116,88,97,109,98,95,93,109,100,94,94,103,108,100,95,107,92,108,100,101,106,99,94,99,101,103,101,107,110,96,122,109,111,93,84,98,87,101,103,108,95,97,101,114,99,92,103,95,110,106,103,99,99,104,103,84,106,91,98,96,107,97,101,98,81,105,116,102,104,111,91,94,99,105,96,96,103,88,94,100,102,115,109,102,110,92,99,117,92,110,109,101,106,105,111,114,105,114,92,98,103,106,105,101,94,98,107,93,103,103,92,95,99,103,109,98,87,104,111,98,62,102,103,95,108,124,99,100,106,101,106,92,98,104,98,98,105,102,117,100,101,99,90,103,107,101,99,95,100,99,105,66,88,108,113,101,97,101,104,97,105,108,102,110,102,91,80,105,104,108,103,88,98,104,109,92,93,110,98,113,97,102,101,117,99,113,89,109,102,110,91,94,102,110,85,101,101,106,95,102,94,102,102,95,104,91,96,94,94,88,95,91,94,94,89,87,100,100,106,103,107,98,97,92,90,97,95,96,90,102,91,113,99,96,100,86,97,94,102,97,87,89,104,92,100,96,97,95,88,94,94,85,111,105,96,104,100,101,106,94,89,103,91,100,98,110,99,107,105,107,93,96,95,100,109,112,102,99,102,105,100,94,112,92,111,97,90,100,101,97,104,108,100,99,102,108,94,96,95,104,105,98,105,116,67,106,91,100,91,101,92,91,101,111,102,111,99,100,93,97,103,108,96,98,89,98,92,107,101,95,101,91,103,109,98,107,92,94,111,95,104,97,99,108,105,97,100,102,101,96,105,96,74,103,105,91,105,82,94,96,96,101,103,98,97,99,104,90,96,102,92,97,100,99,95,95,100,107,96,100,96,101,98,101,97,99,99,80,104,107,101,109,98,98,104,106,100,101,101,115,104,101,101,110,111,89,87,101,97,96,107,100,107,117,65,102,99,96,100,109,91,103,84,100,107,92,102,93,105,100,69,108,102,101,83,98,98,95,106,92,92,99,106,103,96,103,100,92,116,101,100,101,107,98,116,99,110,100,103,95,111,99,102,85,97,110,106,106,94,102,95,101,97,103,106,102,102,103,100,107,90,88,99,102,112,104,88,103,103,101,103,98,103,92,98,100,87,116,94,95,94,77,99,91,97,105,102,96,104,108,102,76,89,98,86,105,99,100,100,111,104,96,104,102,102,97,91,105,113,104,109,94,99,125,98,98,97,102,97,105,101,100,102,101,102,104,98,108,100,104,100,91,104,98,98,93,106,103,100,91,99,102,103,103,97,109,91,95,101,100,106,96,108,100,96,100,109,105,103,108,104,108,100,97,97,97,105,103,106,91,105,100,109,92,99,90,112,64,89,103,106,93,117,100,96,103,92,102,102,101,104,106,105,93,92,103,109,107,109,105,97,87,110,111,104,101,103,97,93,102,96,108,102,109,104,86,100,106,100,97,103,97,103,92,102,104,101,98,104,109,86,109,103,103,110,99,107,103,108,96,99,94,85,96,113,107,111,87,105,88,105,111,105,87,119,104,101,108,108,103,109,97,95,96,99,97,104,96,96,102,95,102,94,103,104,99,108,115,97,106,107,92,99,96,107,95,104,116,93,107,96,105,94,100,68,113,103,98,96,87,105,97,98,101,92,105,98,101,101,96,99,110,97,95,102,96,112,92,104,105,106,102,99,106,107,102,103,94,111,105,91,99,97,105,103,94,107,96,89,97,101,108,113,121,87,99,103,97,95,91,99,98,105,109,111,95,111,87,100,99,92,96,102,101,97,105,105,98,96,91,98,87,92,110,100,121,87,99,92,94,102,109,108,112,111,109,100,91,102,108,105,108,94,99,102,107,84,116,100,109,97,90,105,101,86,91,94,90,93,98,96,88,102,106,94,106,105,78,105,98,101,102,98,103,101,97,100,101,104,99,102,105,100,92,99,90,103,93,93,106,98,111,107,92,95,91,92,106,113,104,97,97,97,106,106,94,112,110,113,101,98,89,95,91,102,96,77,99,103,101,101,100,102,95,98,92,97,93,108,120,103,94,89,84,99,93,106,107,95,95,99,103,104,110,101,98,84,97,107,104,95,82,91,95,105,95,107,94,94,109,96,84,89,93,93,91,107,106,106,97,101,110,101,100,107,101,105,96,107,99,111,93,94,99,97,95,106,83,103,106,91,97,87,93,94,99,97,101,102,91,99,88,107,98,98,103,98,100,90,106,63,106,114,87,95,104,93,96,94,105,105,101,92,107,100,97,98,94,87,90,96,115,111,103,102,105,105,108,106,105,87,102,110,101,112,90,98,95,99,97,87,112,103,111,99,93,110,109,106,91,99,99,104,101,104,97,121,95,95,109,104,87,89,98,96,104,109,99,101,108,93,102,95,95,100,91,78,98,110,99,100, +403.58334,106,105,88,94,89,101,101,96,99,92,97,100,91,104,111,96,101,104,96,98,95,99,109,91,96,81,97,84,105,104,105,96,98,108,84,95,91,127,92,95,101,100,90,89,104,97,102,105,98,99,104,88,92,115,97,90,83,103,112,95,105,100,98,106,104,100,105,104,95,97,100,113,99,98,83,99,92,83,88,91,100,102,93,104,96,94,102,102,105,86,99,98,110,102,92,98,102,95,97,97,93,107,97,93,100,99,97,100,92,94,91,103,106,90,106,92,102,93,103,102,92,88,99,110,107,95,106,98,92,95,109,92,130,87,109,95,93,101,85,99,105,92,95,97,96,106,103,95,93,102,93,97,93,99,94,94,92,92,106,99,92,101,103,91,98,101,107,89,92,98,101,105,97,110,100,92,94,98,96,94,112,109,96,102,99,85,91,97,106,95,98,110,101,102,94,96,99,98,105,120,103,99,86,90,97,105,105,103,118,107,85,99,93,105,100,90,97,102,110,110,98,108,108,94,100,115,94,104,100,110,97,96,98,97,109,106,101,109,98,106,101,93,107,81,103,101,108,105,94,113,94,96,100,108,99,100,105,117,107,101,91,90,92,104,84,110,99,96,93,90,100,88,114,87,90,106,96,99,92,102,112,114,108,100,100,104,88,100,88,94,96,111,105,97,105,98,98,97,113,96,101,102,101,101,95,103,109,94,101,98,89,107,94,113,91,100,106,95,106,108,111,94,101,99,104,86,82,96,109,94,102,99,94,95,98,97,103,93,102,96,99,100,95,84,91,97,94,99,87,102,98,100,97,108,106,103,96,108,107,101,103,106,102,104,96,96,111,105,118,108,107,105,96,111,99,99,94,107,103,98,104,108,103,98,97,79,97,104,61,95,99,98,88,105,92,76,111,87,109,113,98,95,96,99,100,99,100,79,101,96,83,101,101,94,101,98,88,91,95,94,94,98,99,105,101,97,91,100,95,99,99,99,104,110,108,87,102,101,90,101,109,104,118,99,111,114,109,97,109,105,100,109,88,91,107,102,93,99,108,93,100,101,96,96,101,109,104,98,96,99,107,101,95,102,95,99,97,111,98,104,91,90,105,87,95,83,98,101,109,98,98,103,112,95,91,103,87,78,91,98,88,114,92,94,114,99,85,105,104,91,92,97,105,89,95,106,105,124,96,93,86,99,108,100,96,119,94,104,98,100,91,98,103,89,83,105,109,93,96,108,87,97,95,105,112,106,99,88,106,103,102,109,99,91,96,105,94,95,99,105,96,105,100,94,104,106,106,99,92,92,87,104,108,98,120,105,90,92,99,96,68,103,89,97,98,96,108,95,117,94,106,94,68,92,102,103,93,102,107,104,100,108,104,87,105,98,89,96,102,102,109,94,110,103,91,105,95,103,102,101,94,87,102,77,98,73,91,103,98,103,100,99,100,113,87,97,98,92,90,98,104,104,92,84,99,98,109,107,91,91,86,98,96,100,98,107,99,113,82,99,99,99,105,91,91,97,94,87,107,101,106,87,100,102,99,120,109,93,100,98,99,107,110,106,89,93,113,110,105,100,103,100,90,101,99,100,92,102,104,94,98,105,94,94,89,94,99,99,94,103,98,106,97,96,110,96,106,106,89,93,94,98,107,102,90,108,99,65,95,102,116,97,105,95,90,101,110,96,111,103,94,96,89,103,107,88,97,99,102,93,105,111,103,62,91,129,96,83,118,96,93,108,105,103,100,90,96,78,93,97,108,103,103,114,101,107,115,100,88,109,112,132,99,101,102,100,103,101,95,102,106,100,98,99,96,101,95,104,106,94,106,94,111,98,100,98,106,91,99,100,113,91,106,100,105,102,103,85,103,97,104,104,110,100,92,95,98,101,99,79,102,101,100,91,113,100,107,98,110,97,99,108,103,106,91,86,102,87,88,104,76,101,97,91,93,92,108,97,105,93,92,91,90,105,99,108,95,100,96,108,95,107,110,96,98,95,108,92,108,106,98,97,105,97,90,91,94,96,108,100,97,101,87,100,96,96,101,104,100,102,97,110,119,97,110,87,81,103,92,98,98,94,108,109,97,95,100,105,85,82,98,103,106,102,106,99,100,110,112,101,98,97,90,91,100,100,96,90,103,105,101,104,102,92,91,92,95,95,66,113,94,92,106,104,89,99,109,110,103,110,97,102,109,105,112,102,99,97,97,106,104,95,97,91,71,105,100,97,96,99,96,85,99,105,109,91,95,101,101,103,96,96,110,102,75,96,103,94,91,76,106,105,97,100,91,107,93,117,85,89,90,101,95,102,91,100,98,92,109,99,105,108,104,91,98,101,92,103,98,118,104,91,100,113,100,88,92,83,99,87,106,105,71,105,102,103,100,92,111,106,108,107,97,102,105,102,96,107,98,99,94,94,104,113,96,78,90,99,93,94,99,107,87,106,97,95,94,105,85,90,93,94,94,105,101,93,92,90,109,98,97,94,84,95,102,106,95,98,109,98,99,100,103,97,110,106,100,114,102,100,98,101,94,113,104,101,108,98,94,102,92,98,100,101,98,83,101,108,111,125,112,101,93,94,89,99,109,94,93,90,99,96,96,109,101,103,109,84,98,113,109,113,112,112,107,99,97,91,88,100,101,93,113,94,101,99,100,99,109,99,98,100,93,99,98,106,103,102,99,96,101,101,89,105,97,111,106,99,97,105,95,97,100,106,90,96,116,76,102,117,99,90,106,109,105,83,94,90,98,72,100,86,105,107,109,97,90,99,101,91,101,109,96,123,96,100,87,114,110,100,97,96,99,116,95,92,94,98,108,105,105,102,79,99,100,99,111,103,88,110,103,116,95,104,98,97,93,110,101,111,107,90,102,105,95,103,89,107,101,100,105,96,99,104,108,93,117,100,85,112,103,105,121,103,105,94,92,105,113,136,110,102,98,112,70,103,109,96,107,115,103,110,102,107,96,89,99,109,98,93,98,110,107,86,96,104,106,95,96,101,103,102,101,99,93,94,101,104,98,106,100,102,105,113,93,84,97,91,103,84,93,101,120,92,104,106,95,96,100,96,98,116,94,96,99,99,101,95,97,112,103,97,93,101,102,109,95,93,102,91,124,109,105,109,104,92,103,101,95,105,109,112,109,101,101,91,99,104,89,96,100,95,107,95,107,93,112,88,122,87,106,97,97,101,89,95,106,99,128,91,96,95,94,91,102,86,97,98,101,92,104,114,91,113,98,113,107,98,103,95,104,108,95,108,112,113,98,100,105,101,93,107,92,104,66,102,103,99,99,91,105,90,117,106,87,107,103,105,96,98,114,106,93,89,99,99,91,114,94,93,114,101,96,102,102,109,96,98,102,93,96,94,95,101,92,101,88,101,103,95,100,104,93,106,102,99,104,98,99,97,94,79,97,101,98,108,105,104,99,100,107,97,98,103,113,103,98,85,105,104,109,112,99,94,92,101,103,101,96,83,106,94,93,101,98,101,102,91,98,95,105,107,92,116,111,97,105,95,99,99,110,101,98,109,101,103,105,105,94,102,101,91,113,97,105,110,88,103,96,112,105,98,98,100,107,101,104,104,98,104,97,105,100,92,101,96,105,87,104,105,105,106,101,91,96,106,115,92,109,98,94,103,83,98,89,105,106,109,117,94,106,109,96,112,95,106,107,108,103,97,109,105,109,114,103,109,97,103,102,87,98,105,115,102,107,96,105,96,102,105,97,101,96,96,99,106,91,103,98,104,103,92,113,89,95,83,113,104,107,97,104,92,105,99,106,100,98,85,104,106,105,105,113,95,108,106,104,105,90,108,115,101,107,96,91,75,84,87,98,105,102,110,107,94,98,99,110,113,103,101,104,89,113,101,100,98,100,90,101,87,96,96,101,99,98,92,105,97,90,100,99,106,100,105,104,95,85,100,108,95,99,99,106,96,91,99,106,99,101,109,93,94,105,95,100,89,105,111,103,101,102,101,90,98,99,92,103,71,105,101,108,109,103,99,95,94,102,97,103,91,109,87,101,107,101,103,105,99,139,99,87,100,95,99,106,102,99,109,92,98,99,103,96,103,102,101,95,104,104,94,90,100,106,127,105,108,100,96,95,102,100,102,89,111,106,102,104,105,106,102,116,97,95,104,105,100,103,129,113,107,95,93,97,97,101,105,102,101,95,99,106,106,90,103,96,96,97,104,104,97,99,108,110,88,100,106,82,95,107,91,118,91,104,103,98,107,106,103,90,96,84,101,113,97,102,104,98,108,103,113,110,97,116,102,100,112,100,87,76,99,100,97,100,94,105,94,98,82,90,94,99,124,86,85,92,100,97,111,97,103,100,105,103,86,98,98,101,94,88,103,102,99,105,109,98,94,105,104,112,111,99,98,104,102,98,97,102,99,101,98,96,96,105,102,104,86,98,103,103,111,110,88,99,113,117,92,64,89,93,101,100,106,109,103,101,95,122,117,110,95,87,101,100,104,86,98,98,88,107,97,95,100,97,100,98,109,111,109,90,103,97,108,97,102,102,97,103,102,94,106,97,109,99,92,97,100,101,98,100,111,96,107,98,102,96,90,99,97,101,105,98,95,102,101,104,91,108,95,102,105,89,95,102,101,92,98,96,80,76,93,99,73,134,108,115,89,105,96,132,96,98,89,91,93,80,86,100,99,100,118,96,90,99,108,103,101,89,106,109,92,103,106,104,101,105,107,109,98,104,95,95,102,87,95,94,98,115,102,106,106,97,102,94,108,106,117,96,111,100,103,104,82,101,97,95,114,95,105,87,96,95,96,103,91,104,91,117,106,103,97,84,86,95,92,100,93,97,109,98,113,97,106,131,103,104,113,111,100,92,100,99,100,94,91,130,108,100,89,112,88,106,99,102,96,88,110,102,104,92,88, +403.72348,88,94,94,91,92,102,95,102,101,95,84,103,91,86,103,102,103,100,101,77,91,86,105,103,112,94,87,84,104,105,107,108,100,107,114,106,100,107,99,99,103,108,95,105,101,98,84,97,91,103,104,98,103,97,105,88,96,107,100,90,107,97,104,95,111,114,92,99,101,99,113,100,100,103,92,109,94,97,103,98,102,94,94,101,116,109,102,97,113,102,95,110,103,107,81,92,96,109,96,108,108,93,105,97,100,99,89,98,97,97,98,96,105,98,104,110,74,105,102,97,95,101,107,106,90,101,114,90,105,95,105,104,92,92,106,95,91,116,100,100,113,102,101,109,91,102,96,96,100,97,96,103,97,104,102,127,105,113,108,106,108,94,106,113,107,92,108,88,108,97,96,109,103,99,98,86,94,87,112,66,91,91,99,100,101,98,114,92,103,87,86,99,107,103,96,108,99,99,113,104,100,106,92,113,104,106,102,108,116,99,99,95,102,112,105,92,106,95,94,97,114,90,89,106,87,100,91,105,93,107,104,105,94,103,97,91,82,98,106,83,76,104,104,99,92,98,104,108,104,106,102,108,101,89,113,100,98,108,101,113,100,106,110,94,104,107,90,102,105,89,89,117,100,87,112,102,94,108,105,120,100,88,99,99,106,98,104,94,102,99,104,100,96,101,111,113,91,101,102,104,98,91,100,103,85,104,110,113,101,102,86,120,106,97,103,106,102,99,102,70,103,104,107,101,108,118,124,83,99,104,92,92,94,104,106,102,99,111,100,96,105,111,99,91,105,111,99,104,108,97,85,99,105,118,111,87,109,104,102,96,107,93,90,97,104,92,97,104,103,108,99,100,91,98,104,102,103,112,126,109,115,105,102,102,110,102,107,93,95,100,100,100,95,105,113,103,92,113,105,103,95,98,97,107,105,97,89,93,99,100,93,94,99,105,101,100,105,95,104,94,101,96,111,103,99,94,98,95,94,107,99,100,103,102,96,98,95,102,102,111,100,94,102,100,94,75,90,105,112,113,98,112,92,99,101,98,105,111,104,104,94,111,114,102,112,105,94,95,104,90,100,110,94,96,99,92,100,86,105,94,97,103,104,83,109,96,99,105,103,93,105,102,113,116,127,99,103,110,101,92,102,114,98,99,108,105,91,57,100,95,91,101,99,99,104,94,109,102,103,102,101,97,105,101,100,104,121,101,103,94,95,97,89,98,96,117,98,98,104,99,100,106,92,110,93,91,113,111,94,106,101,92,113,84,87,100,110,92,111,112,94,99,105,105,101,99,117,103,110,89,92,106,102,99,110,103,93,111,102,102,67,104,100,105,86,103,112,103,101,105,98,98,98,101,105,110,103,102,102,91,99,102,128,97,107,105,94,98,95,114,106,93,98,103,92,93,101,98,119,91,97,100,105,97,121,96,93,106,113,104,121,109,86,103,94,104,98,101,102,92,106,95,101,108,91,105,96,93,106,109,95,108,101,93,93,91,104,114,106,116,102,113,117,112,90,101,107,105,112,102,107,100,104,84,101,120,95,106,103,97,104,98,116,99,104,100,99,98,100,99,98,111,105,104,98,102,97,97,96,100,100,100,99,100,109,101,100,104,109,107,102,112,110,109,113,92,100,99,105,101,100,101,119,104,105,101,98,96,100,111,96,106,90,110,110,90,108,89,97,101,109,101,95,102,106,97,114,106,101,112,105,97,104,104,104,73,97,98,104,102,106,88,100,103,102,94,89,101,99,107,101,107,111,113,96,85,101,102,111,94,111,103,107,99,105,101,102,101,92,101,107,112,111,110,104,104,100,96,101,94,92,109,99,92,113,106,102,96,109,108,112,94,102,99,96,96,105,116,114,99,100,105,102,114,105,109,100,96,98,105,101,105,95,103,111,106,98,101,106,103,104,89,99,108,91,87,101,103,93,91,99,102,87,108,84,108,110,105,100,100,104,107,106,91,104,77,110,99,121,83,107,72,97,96,78,105,110,91,92,95,108,102,100,125,112,101,91,97,100,114,94,115,103,102,105,106,95,106,103,101,104,102,106,98,98,95,96,107,96,105,95,112,113,103,121,113,93,98,96,105,110,101,87,110,102,99,90,110,95,102,95,83,109,97,99,103,101,96,104,106,108,105,91,94,113,109,107,102,97,107,119,113,102,108,95,92,100,95,102,119,95,103,99,104,99,98,97,93,101,104,101,86,105,110,95,104,106,98,86,101,101,103,101,98,95,95,94,97,102,100,92,111,91,110,107,92,99,102,82,103,103,110,101,102,102,99,105,105,100,111,95,111,96,102,95,109,97,104,97,103,87,103,93,95,108,101,109,90,89,104,103,116,103,103,108,88,87,103,106,102,95,102,95,98,71,109,111,101,106,98,104,93,93,108,100,103,104,100,96,108,95,108,91,107,85,106,99,102,97,97,87,105,102,104,99,114,104,101,103,99,105,104,107,105,95,108,95,105,108,102,110,112,98,99,91,90,98,91,105,108,106,115,104,109,99,95,108,113,102,98,108,122,95,99,109,109,82,91,93,113,101,97,99,103,105,112,92,95,106,99,100,101,93,97,117,94,116,93,125,92,93,88,96,97,94,102,104,99,102,104,104,99,95,117,101,96,99,99,98,98,99,95,106,98,100,108,102,102,105,100,105,104,108,101,93,100,113,102,102,110,106,78,102,104,101,112,121,109,106,105,103,88,100,109,103,108,96,85,98,104,106,107,104,109,94,105,106,108,104,101,103,96,97,113,117,122,102,90,101,95,98,116,104,99,111,99,102,107,107,75,102,97,102,99,105,93,98,105,113,100,96,104,104,90,96,96,112,109,103,108,125,101,99,108,101,112,100,98,95,113,106,106,102,99,106,99,104,103,83,105,102,102,90,111,101,99,94,116,108,100,105,109,98,103,101,100,101,94,110,103,94,98,98,107,107,108,92,97,101,101,125,110,99,87,99,94,109,91,86,96,106,112,98,95,115,99,101,99,88,100,113,103,79,109,99,104,106,67,121,99,87,95,102,109,111,103,94,91,103,99,107,115,102,99,95,99,100,105,94,109,103,132,108,109,75,101,99,91,97,103,104,107,98,129,99,96,94,101,105,96,98,88,103,120,119,99,100,95,104,98,105,96,110,102,108,100,87,100,88,102,107,98,99,91,99,110,112,101,107,92,102,100,96,104,103,100,91,104,97,93,103,131,101,106,96,93,99,99,107,112,112,113,76,110,90,105,108,97,85,104,102,93,108,105,116,104,98,101,103,103,95,99,102,97,104,110,98,103,97,101,104,100,115,104,106,101,96,97,95,113,108,105,99,93,103,106,100,101,98,105,85,98,107,108,92,94,101,98,98,112,97,105,85,112,100,105,108,103,101,100,100,110,94,106,95,106,108,97,121,113,111,96,103,93,103,99,108,93,106,105,87,97,102,97,101,105,97,105,94,103,100,101,91,93,105,95,93,104,102,86,95,98,103,91,98,86,96,103,116,98,107,101,96,102,101,90,108,100,112,102,104,97,98,107,104,107,109,112,101,105,111,110,98,95,69,98,99,103,90,100,103,87,97,102,99,105,95,95,104,98,94,100,95,110,102,104,107,100,103,107,94,101,112,114,94,95,100,105,100,100,99,73,112,104,103,79,95,87,107,98,100,91,109,109,96,95,98,101,79,102,91,103,113,102,103,103,85,109,98,85,109,101,105,109,91,96,102,96,101,103,91,104,111,106,102,103,101,98,95,105,100,103,101,103,111,114,97,94,96,96,107,96,100,103,100,104,108,93,105,106,102,106,101,102,99,104,103,108,100,99,87,94,85,99,104,105,96,95,92,108,112,92,113,105,101,103,103,91,108,94,106,104,87,106,100,105,107,98,93,99,103,100,87,102,104,113,108,112,109,100,106,106,98,94,101,62,100,110,107,106,103,99,94,91,97,102,102,98,111,96,92,97,81,114,103,104,105,91,101,105,96,105,116,92,115,92,100,92,98,104,106,102,98,100,115,109,107,96,78,100,106,111,96,106,102,112,110,113,109,93,103,116,98,93,107,102,120,79,109,89,105,99,104,90,103,107,108,116,107,94,81,112,98,94,103,102,104,129,102,97,89,98,116,111,105,105,94,105,102,100,96,94,96,101,97,102,104,100,106,85,110,107,104,87,97,114,82,86,101,83,109,108,102,108,101,104,98,101,111,87,105,104,108,85,106,97,98,99,102,88,102,112,101,100,100,92,107,126,104,97,105,104,97,101,96,108,99,105,116,106,113,94,101,108,103,97,91,113,95,102,104,98,103,106,116,106,93,98,94,106,120,95,83,109,113,99,99,101,95,97,107,106,107,101,93,104,95,106,97,104,105,101,107,96,112,102,101,100,116,109,105,103,106,106,94,96,100,108,99,88,95,97,112,111,100,102,105,122,105,105,105,99,87,92,94,100,92,100,83,113,100,105,98,81,96,105,98,102,106,99,99,88,106,113,99,100,79,121,100,105,110,103,100,109,121,106,108,108,97,101,113,95,100,98,101,92,99,99,97,104,100,91,96,96,99,87,105,95,100,88,104,98,109,103,106,97,95,97,98,104,103,88,73,109,100,105,98,98,102,109,101,111,99,103,99,97,94,111,100,108,100,96,106,109,97,108,114,104,99,85,96,91,97,92,107,90,95,93,91,88,92,92,111,102,107,97,96,122,96,104,108,121,106,90,86,136,91,98,109,105,110,96,90,99,106,95,109,97,93,109,135,93,85,79,96,102,113,100,93,101,109,101,96,111,104,100,75,100,92,103,99,94,112,113,100,87,103,99,96,96,110,88,79,96,110,102,104,88,71,108,107,95,100,103,100,110,96,111,101,99,103,92,98,94,67,101,96,108,98,94,106,100,104,117,107,108,94,93,116,101, +403.86365,111,96,91,99,102,92,81,97,101,93,69,99,95,101,99,101,107,102,107,104,100,105,106,98,100,101,92,117,104,104,71,94,97,93,90,99,86,95,96,107,87,97,101,111,98,101,115,103,91,106,92,104,114,111,92,92,97,87,108,98,111,104,124,112,87,113,93,99,92,95,110,99,98,108,95,100,96,97,106,104,101,92,108,102,99,106,99,98,100,95,99,107,111,95,104,99,84,110,124,95,103,93,94,87,100,93,75,91,102,94,94,96,97,104,108,110,97,101,103,91,92,95,92,99,99,110,101,94,98,108,126,100,114,94,83,100,91,105,90,105,100,87,101,108,93,84,95,93,102,100,113,92,99,102,108,88,108,100,97,91,92,102,96,100,104,109,94,109,106,103,96,97,98,101,112,123,108,99,110,104,108,103,99,97,91,110,97,96,103,94,95,83,109,95,102,99,100,108,92,99,108,101,102,97,109,99,100,102,101,98,105,120,100,102,94,89,92,97,87,113,103,99,96,97,108,101,94,108,96,95,88,104,98,106,115,99,94,104,98,103,93,98,95,99,105,98,91,92,97,112,91,91,99,92,97,90,98,98,95,96,85,103,118,104,98,98,102,102,101,96,105,98,103,101,103,99,101,99,112,95,98,104,113,101,68,100,101,107,100,91,118,103,110,101,98,98,110,113,104,98,94,105,100,102,97,96,114,108,92,99,108,90,93,93,98,102,85,99,102,94,110,99,104,105,105,109,104,86,106,114,104,93,100,102,95,96,98,91,94,95,99,94,102,106,94,97,97,101,104,101,105,102,111,106,92,90,105,99,101,108,98,103,104,93,92,98,95,112,91,102,105,93,99,99,99,101,94,105,98,111,114,93,89,116,105,104,81,96,116,95,113,91,97,92,104,111,99,104,106,98,87,105,99,104,109,97,94,97,113,102,100,95,105,104,102,88,110,100,102,99,110,98,109,109,106,90,100,102,89,101,93,102,93,94,111,98,90,100,89,95,104,100,103,94,105,92,97,115,113,109,94,89,101,98,110,104,96,102,105,95,112,99,107,106,100,101,97,91,82,107,104,113,100,104,105,99,98,100,103,104,105,101,99,96,98,95,98,103,110,98,97,105,99,94,99,93,99,90,100,98,105,79,122,103,97,112,87,87,89,101,110,114,102,108,104,83,100,91,97,96,94,101,87,100,104,96,112,107,115,76,104,103,102,93,93,96,101,97,103,109,101,100,106,105,112,105,101,89,94,100,99,93,85,97,98,107,108,106,103,105,88,103,100,108,101,105,94,91,95,97,93,100,104,99,99,106,100,98,93,98,95,83,90,103,86,103,104,106,87,98,105,90,107,105,114,115,97,101,101,105,105,103,104,106,103,102,105,99,99,96,95,92,116,99,110,112,111,107,104,100,104,99,93,96,108,105,105,95,103,92,107,96,105,111,98,102,97,97,102,105,113,116,115,96,97,105,96,117,97,109,98,105,95,110,96,95,71,104,100,93,102,110,96,94,88,98,105,105,105,88,117,94,109,94,102,117,105,91,105,105,92,93,97,97,96,99,104,92,98,101,105,92,81,104,92,108,102,98,100,89,109,105,99,102,91,104,101,109,89,99,98,95,85,88,86,101,113,94,99,101,103,95,101,101,94,98,105,103,99,106,100,102,96,100,104,93,91,103,97,98,109,95,110,94,91,103,97,101,95,99,117,111,112,100,95,92,112,104,124,95,95,100,96,108,95,84,90,102,97,100,116,116,111,107,87,101,104,101,98,92,107,102,93,81,102,97,96,116,95,109,94,97,114,96,102,96,100,103,83,108,103,96,95,103,108,113,106,98,104,97,95,82,117,99,102,97,100,96,103,97,106,95,96,90,102,101,94,98,99,106,101,102,95,91,103,100,101,107,100,95,91,89,94,92,101,90,89,91,91,93,101,86,96,92,98,105,103,97,82,96,98,98,105,94,105,101,99,94,101,85,104,98,101,94,99,98,97,114,120,105,93,99,105,101,107,102,90,112,100,97,93,105,96,98,95,98,115,100,104,107,110,104,103,106,99,95,106,102,88,98,98,109,106,115,103,89,99,93,101,96,99,101,98,104,102,112,98,105,92,105,109,100,90,102,95,106,93,108,106,105,106,77,87,109,90,98,100,100,83,106,107,98,101,103,100,93,97,103,99,100,102,99,94,95,111,99,97,94,97,97,99,87,102,95,73,95,108,94,75,105,95,92,105,99,96,96,96,100,100,97,90,105,96,96,82,96,84,74,98,110,98,92,93,69,102,85,98,99,89,96,87,104,93,104,79,95,95,103,90,100,95,111,95,90,116,82,108,96,99,86,113,104,98,105,98,101,92,101,104,108,113,98,88,107,95,106,100,83,96,97,80,104,98,101,95,103,93,100,104,100,96,90,92,97,98,105,94,98,90,94,101,104,114,101,84,99,101,95,98,101,103,95,100,105,100,109,105,98,106,111,106,98,105,86,100,100,99,102,105,101,92,110,120,98,108,95,99,99,112,97,106,106,109,109,100,104,120,109,102,95,105,103,110,114,93,99,109,101,87,81,106,116,109,97,102,98,102,102,99,93,107,95,95,109,108,102,97,106,118,84,99,101,108,104,106,103,119,117,108,105,95,92,99,70,104,114,100,98,117,106,110,93,100,93,99,113,108,104,112,105,102,99,97,119,101,111,100,104,108,105,105,99,109,99,110,94,102,101,96,110,107,100,110,103,101,103,100,102,102,103,98,87,103,103,103,108,111,105,113,95,96,90,96,81,103,101,89,94,102,101,106,108,100,101,109,94,105,123,116,105,98,94,109,97,98,108,105,119,87,98,98,90,110,95,111,92,99,99,101,92,100,93,113,100,97,104,123,100,99,100,104,130,109,93,104,91,99,93,100,112,110,110,109,110,111,100,100,103,94,98,104,98,94,98,95,97,98,98,106,87,99,96,85,98,105,107,103,106,107,103,96,108,88,97,100,113,76,113,109,94,103,94,103,99,107,94,115,99,100,95,112,122,79,108,113,108,100,100,99,96,99,100,101,113,110,97,106,101,95,120,106,107,96,112,93,106,105,106,106,102,102,118,102,103,108,101,99,95,79,100,109,94,106,109,112,93,98,101,105,111,114,90,109,108,105,99,82,100,83,102,90,98,98,107,106,105,108,110,108,104,105,106,91,110,85,92,110,104,105,102,95,102,108,100,95,111,94,108,111,103,92,105,101,101,100,94,110,126,96,102,105,102,96,116,94,114,106,109,96,108,100,105,101,110,109,101,88,99,117,106,100,91,99,101,90,100,104,102,99,91,102,112,101,106,106,112,103,100,104,98,101,109,108,103,108,115,104,102,98,89,100,111,112,104,77,100,98,106,88,109,96,103,94,103,105,104,106,100,109,98,99,116,99,104,99,107,98,100,104,107,104,90,95,109,102,109,103,106,94,126,113,92,104,101,106,111,111,104,91,107,100,107,99,90,96,109,89,100,102,93,111,109,95,99,107,103,91,101,131,90,117,119,102,109,104,117,100,107,91,110,96,102,108,101,103,105,98,122,98,111,104,101,108,120,118,96,115,94,112,83,96,102,91,109,107,99,107,102,103,105,105,94,92,100,105,96,103,110,104,98,108,94,105,96,107,102,103,97,106,109,100,100,103,109,106,100,95,110,85,99,106,105,99,97,95,100,113,103,97,100,101,96,99,101,99,107,104,105,98,115,121,100,116,95,110,93,106,107,95,88,96,107,96,104,96,108,98,106,111,107,99,98,117,100,94,95,101,125,99,111,101,101,113,107,102,98,137,98,95,94,87,107,100,112,99,105,117,92,115,107,94,117,107,105,93,103,97,97,102,90,110,107,106,97,107,107,110,98,98,107,105,85,94,117,108,94,108,105,97,97,102,95,121,97,104,101,107,122,115,96,109,101,110,97,95,117,108,103,93,97,101,93,99,103,102,102,112,91,81,110,112,98,104,109,104,94,105,100,87,103,100,113,94,98,97,101,98,99,116,108,109,107,110,98,99,100,105,82,95,101,94,97,103,102,108,100,104,114,104,103,115,68,102,99,108,97,107,103,96,97,113,88,95,102,96,111,102,103,103,88,114,98,118,97,97,101,108,112,114,107,91,108,98,103,105,132,92,98,106,115,113,102,96,83,82,108,100,107,99,91,95,104,95,101,107,110,108,108,95,102,128,111,110,101,102,102,105,102,91,90,109,91,101,87,98,109,110,105,103,91,106,97,108,98,100,92,90,96,99,91,100,100,106,102,102,83,113,99,97,84,103,91,101,101,103,105,99,93,103,98,109,103,112,104,94,94,111,86,103,99,106,100,99,84,93,113,112,109,91,104,94,106,99,97,96,91,104,99,96,105,93,102,100,96,91,106,106,106,103,101,69,97,101,107,92,105,94,103,98,102,109,112,103,108,89,108,97,106,117,105,85,95,84,108,101,97,102,88,99,107,105,101,111,104,102,105,109,102,116,110,92,105,96,96,101,107,103,100,104,94,90,88,92,104,95,106,103,106,95,89,105,100,93,105,106,72,124,101,113,103,101,97,109,102,105,101,108,94,101,102,103,99,95,95,97,102,100,104,110,113,106,94,94,104,105,98,71,102,105,112,110,119,113,91,115,97,101,110,90,102,90,105,116,102,81,102,95,94,104,88,107,101,100,98,98,98,110,113,84,108,100,98,81,98,105,99,97,107,76,87,95,99,91,92,88,116,104,104,97,113,104,108,100,101,107,102,91,99,99,97,92,91,90,117,98,95,95,99,105,111,99,98,107,109,107,100,115,99,84,112,115,118,98,104,107,109,97,101,105,93,100,100,100,107,87,105,72,100,100,93,103,107,107,92,91,103,96,97,97,108,109,79,115,81,111,113,103,104,105,82, +404.00378,96,96,89,124,82,101,98,96,106,107,111,109,95,100,98,92,114,104,109,97,74,97,101,98,99,100,87,109,99,104,107,99,102,101,97,93,98,89,84,92,88,89,91,100,84,107,104,98,98,106,106,95,92,95,107,97,102,105,98,93,100,113,88,93,91,117,87,103,101,101,121,96,93,110,105,82,89,102,98,99,103,96,104,99,95,110,104,103,119,108,100,97,86,95,93,95,99,98,97,104,92,97,115,103,93,105,97,96,89,110,104,108,97,106,90,96,89,100,95,106,87,108,99,105,99,92,103,94,99,95,109,113,109,95,96,103,96,100,105,95,91,108,98,92,116,102,99,104,96,104,102,94,99,93,99,96,92,92,98,102,100,107,106,103,110,93,109,96,115,109,100,93,98,99,95,96,108,98,94,105,93,91,100,101,109,85,99,83,103,66,85,102,98,87,102,108,96,100,99,108,95,92,90,101,98,106,98,90,98,102,91,97,115,102,104,102,91,112,97,102,96,107,95,94,89,108,102,109,103,101,99,108,100,95,95,118,87,98,102,98,97,97,90,101,100,89,107,103,96,111,95,97,109,98,101,95,87,94,105,103,90,100,102,92,96,106,95,92,94,91,105,98,107,95,103,92,103,101,97,103,91,101,97,98,99,81,97,102,105,92,87,112,107,93,110,114,96,95,89,98,97,96,111,110,90,106,97,103,106,104,93,106,90,104,104,91,93,79,98,94,101,101,102,95,94,98,83,101,96,104,109,102,113,80,96,108,97,96,104,96,95,104,92,101,101,113,95,105,101,101,113,104,100,98,127,100,110,107,100,92,112,99,102,94,92,94,103,103,79,99,105,105,99,97,97,92,121,102,101,106,115,99,93,100,108,94,98,109,107,89,106,98,109,108,95,105,97,88,91,96,99,109,94,100,94,81,100,97,93,104,92,92,98,100,100,100,104,95,96,108,91,94,103,103,88,78,98,91,92,98,91,107,96,100,109,91,101,86,91,108,107,95,95,113,96,97,99,100,102,105,101,95,100,100,121,101,93,95,100,119,103,114,92,104,86,107,103,112,104,108,108,97,106,103,119,94,100,105,95,109,102,99,110,104,93,92,102,100,114,102,101,102,112,97,91,91,104,98,113,96,100,99,110,103,88,110,86,95,106,81,105,101,98,112,99,103,109,95,100,94,96,108,89,94,105,101,113,102,101,109,97,95,98,95,105,94,102,99,107,99,88,99,110,96,109,100,91,95,99,108,94,71,107,99,102,101,103,107,99,93,99,98,101,99,100,100,101,101,109,88,99,101,101,96,97,101,93,99,76,100,100,105,92,105,109,102,108,100,93,105,111,114,105,100,98,103,102,108,109,110,99,106,96,88,102,97,94,113,108,99,107,87,97,108,88,86,85,109,99,97,94,103,107,107,100,90,83,92,104,104,104,99,102,90,107,102,90,94,101,95,100,99,100,108,97,90,97,101,91,101,94,100,119,103,99,93,106,99,94,81,101,108,107,109,95,96,96,99,107,95,100,102,102,105,98,101,87,98,100,95,100,98,101,97,92,102,91,92,107,95,108,105,99,104,105,90,99,96,98,89,96,101,99,103,89,103,102,100,99,105,98,93,90,91,98,99,93,108,84,100,100,87,112,108,101,95,103,83,110,97,96,89,90,90,100,101,105,99,97,108,84,105,104,95,97,108,107,107,98,111,111,93,95,95,102,96,103,105,101,96,86,92,93,96,97,100,105,120,100,100,106,95,100,95,107,99,103,106,96,95,118,98,90,107,106,105,105,105,107,109,103,92,110,99,106,99,115,110,105,109,105,108,105,101,100,98,106,92,102,98,100,87,101,110,103,98,114,109,92,92,108,101,110,102,97,101,92,95,104,103,104,95,106,103,98,111,107,108,109,112,117,101,107,99,91,91,98,93,88,100,98,90,97,108,87,102,110,94,97,90,80,96,96,99,88,97,100,99,107,106,97,91,93,110,106,89,106,99,99,107,104,94,97,97,100,102,94,104,108,110,91,102,101,100,92,101,94,100,95,96,102,95,103,104,95,100,88,84,99,106,104,111,101,110,99,100,105,95,95,102,116,104,106,99,94,99,106,93,109,96,82,117,98,98,103,103,99,89,97,96,106,92,101,96,94,96,108,108,110,88,111,85,110,97,101,96,98,95,106,103,93,108,94,93,97,106,96,99,92,103,87,96,111,83,96,98,99,78,91,98,105,99,102,108,93,92,91,95,109,89,105,99,114,87,108,95,92,96,101,109,113,83,96,103,98,94,77,109,90,108,100,105,112,105,92,91,110,104,96,87,108,100,96,91,107,106,100,100,100,109,95,107,106,94,107,98,98,106,99,102,93,100,97,98,97,90,106,100,85,93,98,100,100,99,122,103,104,91,91,115,104,100,104,90,90,98,97,88,105,100,96,105,106,103,90,101,99,105,95,103,96,107,97,103,95,93,95,109,105,109,103,109,110,94,93,92,99,102,91,95,83,106,108,110,96,108,96,107,99,95,103,106,92,113,100,114,91,96,97,115,104,93,115,99,106,98,98,100,107,101,96,105,98,93,96,106,99,107,92,96,106,101,102,102,106,102,104,95,99,90,105,93,102,94,94,100,102,98,123,102,118,96,102,93,109,100,101,87,101,97,94,90,97,101,94,99,94,94,108,116,113,87,103,91,106,101,113,96,106,106,99,98,100,100,95,108,104,118,105,101,95,95,110,96,81,99,102,102,105,96,87,94,101,109,103,84,92,108,99,105,95,108,97,105,98,103,103,108,104,92,102,107,104,102,98,112,109,106,112,107,112,97,112,94,98,114,93,111,99,107,109,100,99,99,98,101,100,107,112,99,95,104,95,101,108,97,91,100,105,98,107,95,98,111,109,99,106,106,94,95,99,107,98,104,112,110,102,92,106,108,99,106,110,107,102,108,100,88,111,91,103,97,105,84,110,101,113,98,86,84,95,91,88,91,107,87,112,96,104,100,93,108,102,111,86,99,109,113,96,102,104,103,99,113,121,99,105,103,92,100,103,92,89,100,101,95,98,99,103,96,96,110,91,100,95,100,104,104,96,96,110,107,110,106,107,100,113,94,110,115,106,94,98,104,106,106,92,108,104,102,100,96,104,95,106,103,102,100,110,91,94,93,99,99,108,96,113,97,108,99,107,111,88,104,100,106,98,89,111,98,95,99,112,98,109,105,94,103,104,107,100,100,96,101,98,97,105,109,98,120,99,107,105,108,106,98,96,102,99,112,104,91,96,88,102,102,91,79,105,101,98,100,94,100,95,120,109,102,102,96,90,101,100,97,108,91,104,108,99,83,91,125,96,98,93,101,97,84,100,103,96,106,97,101,97,96,101,91,92,93,91,109,98,107,108,96,106,95,101,104,91,106,117,99,92,100,99,106,93,106,106,101,104,104,108,92,105,104,97,106,100,93,109,124,103,107,97,109,97,110,91,105,100,108,108,93,105,98,112,98,107,110,95,119,100,97,105,95,101,94,110,110,104,113,96,113,96,100,90,96,84,102,108,98,105,103,99,99,95,102,121,91,97,91,106,101,105,113,101,92,101,105,95,104,113,80,107,103,100,99,95,99,107,102,102,99,91,107,103,100,104,98,110,101,100,100,104,95,113,104,98,117,110,112,96,112,99,107,114,95,107,102,100,95,107,92,108,99,100,93,105,98,101,108,109,87,106,95,106,105,65,98,122,98,94,98,92,102,101,109,96,90,101,96,101,87,112,96,115,96,103,92,96,79,99,104,98,110,96,102,112,89,99,107,101,95,105,103,107,108,108,105,93,96,111,101,108,95,113,105,98,105,102,98,96,101,103,108,94,107,102,100,93,128,108,109,91,110,96,128,95,103,99,107,109,85,99,91,97,107,96,107,91,99,107,97,116,94,112,92,100,103,106,101,96,105,87,95,100,99,100,102,96,106,90,98,109,102,97,91,95,98,89,105,102,100,96,106,106,92,102,106,104,110,102,102,99,102,108,108,105,99,106,103,109,101,90,91,110,106,101,100,92,105,93,111,107,100,98,99,105,94,97,100,93,109,111,101,89,103,80,97,112,108,103,104,95,113,95,109,102,97,95,108,99,103,102,94,104,110,99,93,92,95,91,106,101,97,100,119,93,96,96,98,98,101,105,107,104,113,101,106,92,101,100,107,82,112,96,116,114,108,107,98,102,111,106,106,98,110,94,103,116,101,100,101,110,106,105,105,96,109,109,85,116,97,94,100,98,92,98,105,124,100,93,110,102,101,97,96,93,107,98,112,100,103,109,98,105,94,92,94,114,109,92,107,95,102,105,96,81,99,97,97,102,98,94,96,111,106,101,102,98,115,109,107,89,99,106,105,100,95,107,100,109,95,117,103,90,97,89,87,108,100,103,95,101,93,102,92,108,108,101,101,103,106,93,95,90,94,113,105,111,119,93,91,100,103,106,105,91,95,102,100,102,97,108,110,110,102,96,98,98,95,116,99,111,100,92,87,109,106,98,91,99,98,96,100,111,113,87,112,96,97,84,94,106,93,103,103,100,100,101,99,100,123,100,102,118,106,96,98,98,113,94,112,102,101,105,108,104,107,108,85,91,104,105,103,103,105,109,95,99,103,111,83,112,102,98,111,90,99,102,101,95,90,106,119,109,98,110,99,102,100,107,111,103,102,113,85,96,112,94,94,112,94,99,94,109,95,98,101,84,105,96,87,105,92,108,97,105,94,112,98,95,84,105,84,98,105,101,98,93,90,108,108,110,101,93,96,84,106,101,90,89,103,94,107,102,125,107,101,91,112,98,81,97,110,92,101,106,102,92,100,103,98,89,98,104,96,97,95,83,99,88,88,101,94,89,106,97,100,90,109,120,107,100,98,94,93, +404.14392,85,105,88,100,82,94,109,83,85,97,93,117,100,105,92,109,115,110,100,118,105,95,117,102,98,89,102,108,94,121,107,99,101,100,99,105,98,93,109,97,85,104,83,104,102,111,101,98,92,118,93,109,94,100,102,98,105,108,105,98,96,90,109,79,109,96,91,105,106,92,114,87,83,99,92,105,94,100,94,98,107,105,79,101,101,106,92,103,98,95,100,104,104,89,98,73,98,106,86,99,99,87,95,96,74,108,99,95,99,102,102,97,67,111,93,90,76,88,105,93,102,103,102,100,105,94,91,110,99,110,99,90,97,83,100,98,91,100,99,104,98,103,120,99,88,97,109,105,94,91,100,99,109,97,102,105,105,86,92,96,103,101,101,101,89,99,91,101,81,105,97,92,75,104,90,105,107,91,106,90,107,97,100,95,108,91,95,93,92,78,103,91,96,101,94,100,105,93,91,104,94,104,98,96,88,107,91,102,105,98,91,94,114,138,106,80,94,97,85,108,108,105,94,101,98,97,106,66,114,93,106,89,98,101,84,96,91,105,94,95,91,90,104,77,88,97,101,98,97,98,104,97,92,101,104,89,97,98,101,98,101,88,106,101,86,102,95,102,97,98,108,106,97,100,97,96,88,117,99,105,99,98,100,97,98,105,92,116,95,91,109,96,109,108,106,118,106,95,102,102,107,100,102,110,109,99,109,106,97,111,95,106,108,100,106,103,95,112,110,86,97,113,101,92,93,96,106,99,114,110,102,93,98,89,96,105,95,92,110,96,108,98,90,93,105,103,99,115,94,112,96,122,109,98,98,99,109,97,97,105,105,72,99,93,69,93,107,111,100,101,96,96,101,93,100,96,90,95,113,108,99,99,111,97,103,99,104,102,102,101,92,92,95,121,102,96,92,97,83,94,93,104,99,99,84,95,97,100,96,106,95,95,97,105,90,101,90,102,102,88,95,94,92,96,78,94,89,101,87,81,96,91,87,87,112,81,91,97,92,92,90,78,97,94,96,110,91,100,101,104,95,95,105,102,99,98,110,101,100,88,86,91,100,110,101,96,100,108,78,92,93,101,91,103,108,87,94,102,92,106,105,101,104,95,95,96,98,96,86,106,96,105,120,103,84,83,96,98,98,98,104,97,98,113,101,99,92,100,95,104,101,77,106,101,102,99,98,105,89,97,102,108,115,97,98,106,103,95,112,97,98,97,102,108,99,101,104,95,97,108,93,94,86,104,98,92,112,97,107,95,107,84,108,107,94,96,98,97,107,100,98,95,102,102,111,105,97,96,96,88,92,82,95,100,113,93,90,99,104,94,96,100,94,108,95,107,95,86,99,103,96,106,96,92,122,104,96,103,83,125,99,105,101,110,107,111,89,101,87,94,89,94,102,96,106,96,104,99,94,85,99,101,104,94,107,100,95,95,99,99,88,98,88,100,101,102,85,104,105,103,109,98,87,109,96,104,82,87,88,105,114,109,96,105,102,97,111,98,103,95,101,106,106,101,94,86,104,88,91,98,101,102,105,105,98,109,96,91,104,104,105,105,99,92,91,95,102,87,97,96,100,106,92,89,98,101,109,110,115,85,100,113,103,81,93,114,104,105,99,100,98,93,100,82,106,100,93,90,95,105,104,92,104,104,95,107,95,113,96,107,100,115,91,97,93,103,100,89,104,102,108,95,98,93,109,103,106,99,96,105,99,97,95,102,99,85,90,97,107,107,96,105,86,99,100,93,95,98,111,81,107,98,103,88,104,92,102,100,90,102,92,102,101,108,102,96,98,94,96,103,106,105,107,94,114,102,102,100,92,110,105,107,104,97,87,93,94,106,105,93,104,95,112,92,93,100,106,99,108,93,94,101,107,103,95,99,94,91,104,98,100,105,100,104,119,90,108,96,94,108,89,99,110,94,100,93,64,101,92,97,88,102,98,102,85,103,88,104,109,106,98,94,77,105,103,100,88,99,115,128,102,102,87,122,116,103,96,93,82,96,97,104,91,108,100,102,106,117,97,100,132,96,102,102,104,109,95,95,90,107,98,110,101,98,96,96,102,98,94,106,98,101,99,96,108,105,97,91,104,105,100,101,94,94,98,94,107,95,106,100,101,87,110,106,97,94,91,102,109,104,98,95,113,88,93,101,103,106,99,118,97,101,113,101,103,96,104,100,99,98,107,95,102,105,97,95,92,91,96,99,89,92,101,101,92,95,102,98,96,100,101,98,96,115,110,105,94,94,86,99,95,96,91,102,86,114,97,102,99,101,95,101,88,88,98,100,111,80,77,95,96,105,108,102,107,96,99,95,94,94,112,88,91,107,98,94,95,90,112,95,100,90,94,101,119,93,109,105,102,95,97,98,98,100,96,94,97,92,109,96,103,79,98,103,91,96,101,102,102,98,93,102,99,93,94,93,105,106,113,102,93,106,94,108,97,96,96,93,85,100,98,108,97,100,102,127,111,101,92,106,105,105,108,93,105,83,105,99,100,111,113,102,104,102,91,115,93,108,99,104,105,117,109,86,97,95,99,97,105,108,112,103,106,100,99,99,108,104,104,113,102,108,89,100,107,85,91,95,104,80,116,95,95,101,107,106,93,100,102,97,108,103,106,99,103,100,99,109,99,101,103,94,108,91,107,107,117,87,105,101,107,91,110,116,101,97,115,91,88,104,102,96,100,109,122,98,110,91,99,109,101,107,98,116,95,98,91,99,98,106,97,97,95,112,108,108,102,98,105,97,103,96,104,101,104,102,100,108,101,99,105,104,98,111,103,96,102,101,103,116,113,114,113,96,116,89,117,102,99,97,114,97,100,96,109,91,104,98,95,101,109,98,103,97,101,94,96,96,108,98,94,100,108,102,96,95,110,93,108,102,95,100,90,114,99,91,96,88,113,100,107,106,105,98,101,103,102,104,106,110,98,98,102,98,84,96,106,86,102,110,101,86,106,99,100,90,108,99,102,108,94,102,100,100,95,117,99,116,104,98,97,98,97,103,100,91,110,104,114,96,96,99,95,107,109,107,98,106,99,82,96,105,116,108,103,89,103,104,96,107,102,113,129,103,95,102,104,98,106,94,102,127,110,90,117,96,95,95,98,98,93,94,90,107,100,92,102,73,100,102,103,97,101,92,104,96,105,72,99,86,105,105,103,108,103,101,88,115,95,91,101,102,96,103,95,105,106,99,101,110,87,97,107,87,101,102,94,95,102,108,97,108,101,99,94,93,107,104,109,101,101,105,110,104,114,114,111,108,121,98,113,108,100,100,115,96,70,108,105,107,93,104,99,100,90,98,106,90,107,107,111,95,93,95,99,102,101,99,91,87,89,112,103,112,102,98,110,86,110,94,102,101,94,102,102,87,94,103,108,98,98,100,97,112,97,102,95,105,105,102,97,93,103,103,100,101,113,101,94,101,91,93,99,101,102,97,105,87,98,89,105,105,107,88,106,94,112,94,111,105,105,101,107,94,87,104,103,113,99,119,70,100,96,103,92,105,92,100,102,97,114,98,95,101,99,94,106,101,92,86,105,106,103,92,96,104,112,116,106,121,106,99,98,103,111,109,100,125,96,80,98,82,96,119,105,100,108,90,104,93,93,95,98,101,104,106,101,100,103,102,91,102,93,113,96,98,108,96,103,100,106,95,113,97,102,98,99,107,99,100,94,103,95,104,96,109,101,103,111,97,112,93,108,108,92,97,101,99,106,93,101,98,99,96,106,104,103,89,95,102,109,101,106,91,98,95,103,82,94,104,103,105,105,99,102,95,105,89,108,102,96,108,90,100,103,94,106,107,89,91,99,97,91,106,100,108,87,101,94,111,94,102,104,113,99,109,107,96,102,105,96,97,92,116,113,101,91,99,94,104,104,94,105,102,103,91,105,81,99,103,95,108,104,111,87,100,102,89,109,106,104,103,91,91,77,109,92,97,111,93,109,110,95,97,101,102,87,103,98,102,103,110,105,97,102,104,93,102,100,104,97,94,102,102,115,92,99,108,104,121,97,105,103,103,101,99,97,107,112,100,102,92,92,97,107,113,98,107,117,100,100,103,95,99,90,107,81,100,112,108,108,98,106,110,117,112,94,111,101,104,88,94,99,96,99,107,110,103,95,98,103,91,105,100,104,116,101,103,102,97,112,99,106,94,107,79,110,108,99,92,104,103,99,100,105,123,91,94,104,106,100,102,99,107,95,109,107,106,100,94,116,108,100,91,98,98,102,112,104,108,98,91,107,109,109,102,83,117,103,103,98,99,110,107,106,106,116,100,93,96,108,103,112,107,96,93,101,102,101,114,117,105,110,113,106,109,93,101,112,96,102,109,68,101,103,101,106,116,107,103,108,122,81,100,106,88,106,104,101,104,91,106,102,109,100,94,111,107,96,108,97,95,104,100,86,101,97,97,98,98,101,110,105,102,91,99,95,106,101,108,95,101,115,99,104,92,106,101,103,109,93,89,104,107,99,104,97,110,91,90,98,92,101,106,104,104,123,99,99,87,98,102,101,98,99,102,93,94,88,107,112,102,87,104,107,96,96,88,109,104,105,104,100,105,101,111,100,106,107,92,100,110,100,124,107,91,102,95,92,97,102,110,106,105,108,121,103,101,113,106,106,98,94,96,79,111,105,99,98,105,105,113,103,109,110,95,104,106,98,101,98,100,114,93,109,105,99,101,101,106,118,106,99,105,105,105,100,101,108,103,95,97,95,102,108,104,98,110,104,100,106,98,110,100,105,105,88,111,100,96,105,96,109,114,91,107,104,100,100,112,101,87,101,105,105,95,98,111,69,103,112,77,95,91,116,109,85,108,100,108,105,103,102,109,99,113,98,106,101,98,88,98,101,89,103,92,90,109,105,102,108,98,93,102,106,97,104,91,101,113, +404.28409,92,100,99,92,104,97,110,94,102,114,98,92,110,97,108,96,92,112,97,98,96,105,71,105,105,83,99,108,92,91,100,107,101,92,93,93,103,94,106,99,97,100,98,93,105,103,103,83,104,90,102,98,108,96,96,102,108,89,111,100,106,106,102,90,95,108,114,106,110,98,102,107,99,103,94,118,91,99,106,97,97,79,105,96,84,105,96,101,109,80,87,95,110,99,103,99,95,101,103,109,104,103,90,101,93,101,85,95,99,105,90,92,94,105,108,96,95,113,99,89,105,98,108,107,113,108,116,93,100,100,113,99,111,100,99,103,100,96,98,103,98,110,104,110,98,98,100,103,97,99,100,90,115,94,99,95,106,112,104,105,77,100,93,106,103,101,110,91,97,92,106,109,101,106,113,99,101,96,101,97,98,79,97,113,104,122,100,102,99,95,90,91,90,104,96,91,99,94,98,105,99,100,103,110,109,96,103,95,105,104,103,103,101,105,101,101,104,95,101,115,113,104,99,95,105,101,94,111,102,105,93,91,107,105,97,103,108,125,97,99,112,102,98,95,99,103,105,103,99,95,103,102,98,95,96,100,105,104,82,105,99,103,105,79,94,84,107,99,93,106,104,105,94,104,104,93,96,108,102,103,105,101,105,88,110,103,101,96,98,93,100,107,106,108,109,103,98,107,107,91,103,113,93,97,88,104,95,100,91,110,99,83,96,88,103,102,103,102,96,94,92,113,98,102,103,94,96,93,97,108,102,100,110,94,103,95,100,102,97,107,87,98,101,105,105,106,96,105,109,112,103,102,113,106,104,93,110,96,115,106,90,101,98,98,117,103,94,107,95,100,104,107,89,104,102,93,94,108,111,104,116,110,109,100,101,90,103,96,109,100,107,101,106,108,97,91,104,100,96,110,101,100,99,91,88,97,114,103,110,98,92,88,96,109,111,104,102,102,101,119,96,99,87,104,92,100,113,94,90,86,92,95,102,97,108,97,107,104,112,106,105,95,94,100,97,101,84,103,115,96,92,96,95,93,97,110,93,103,90,106,91,92,110,105,97,108,104,110,90,106,91,103,91,97,94,110,89,94,106,106,96,102,95,97,101,106,93,96,104,103,111,96,111,97,96,103,101,104,104,103,110,105,85,109,105,99,102,106,98,93,81,101,101,117,108,109,96,103,99,102,96,114,118,100,103,101,94,109,100,97,96,103,104,98,95,100,106,93,98,108,105,88,97,97,114,103,109,90,111,114,100,93,82,91,93,94,106,100,99,94,104,104,107,92,93,106,97,90,96,97,101,106,110,102,100,76,83,104,92,112,107,99,101,108,102,95,99,98,101,90,107,112,97,94,105,101,96,101,100,102,95,99,107,98,94,86,94,100,101,97,94,95,104,104,101,101,99,114,103,98,101,103,112,109,98,76,97,104,100,97,96,98,102,113,95,96,97,94,104,98,99,116,100,101,109,113,95,104,105,98,101,113,98,108,105,107,121,106,110,108,103,101,102,104,96,106,105,105,99,95,107,105,101,102,106,105,107,102,109,93,113,108,103,97,107,96,99,104,108,96,90,97,101,101,105,109,105,92,99,102,109,87,106,96,100,93,102,107,90,103,89,106,87,99,110,110,106,109,71,93,92,115,108,106,98,106,103,102,129,104,101,94,103,100,103,102,100,97,104,106,106,105,108,98,108,109,107,105,97,95,116,102,94,92,94,88,97,106,110,101,101,96,93,101,87,92,68,100,94,100,113,113,90,89,94,96,117,102,98,119,101,98,92,104,91,107,95,120,100,99,102,113,107,103,97,100,108,117,101,107,107,97,91,101,101,99,88,95,93,99,110,110,102,96,95,110,102,105,94,99,98,104,105,103,107,100,103,98,103,110,102,107,103,110,100,106,98,111,98,96,96,98,90,81,90,94,102,106,110,93,97,102,104,96,96,102,105,103,84,91,104,88,105,97,94,101,100,109,99,99,109,98,103,100,112,96,101,76,110,100,105,96,106,93,96,113,109,101,98,103,98,106,104,87,102,90,99,107,107,108,99,107,88,108,112,95,105,99,89,105,114,94,123,114,118,101,101,106,98,93,109,99,97,101,105,96,106,95,98,103,102,108,104,105,86,90,115,103,95,108,91,102,102,107,98,89,95,95,108,104,100,122,108,104,98,95,99,99,104,95,101,99,103,93,115,77,105,98,104,92,102,105,106,96,110,101,94,113,98,100,106,109,114,107,112,98,93,87,99,96,86,95,100,110,94,95,87,107,102,93,100,100,102,97,104,108,101,92,58,116,97,110,103,105,89,105,96,99,99,113,101,97,94,95,117,97,99,108,108,97,107,97,97,100,103,93,97,107,106,92,87,102,98,96,106,96,102,89,94,109,99,97,101,95,72,88,76,88,100,99,107,107,103,95,99,96,102,114,114,94,101,103,86,95,97,111,95,96,103,93,104,103,92,97,90,102,106,104,106,98,104,102,108,90,105,100,86,120,98,103,96,101,97,99,100,108,94,97,108,94,95,107,96,101,97,94,90,95,93,135,103,91,100,97,94,101,98,104,102,102,122,95,88,96,107,100,91,88,109,98,97,100,94,116,102,101,96,98,103,83,98,104,104,93,101,109,104,103,106,104,109,101,92,94,84,101,104,91,104,108,107,126,101,101,97,101,102,106,104,101,109,108,101,104,101,104,108,105,95,106,94,109,116,121,97,102,105,104,99,87,84,95,117,92,102,103,106,104,100,98,104,96,98,112,103,95,120,111,104,105,103,91,88,95,97,111,98,114,103,104,121,96,100,115,69,93,108,99,105,112,99,98,93,99,97,96,95,88,97,88,94,94,105,102,103,103,98,111,105,101,106,94,95,100,103,90,105,99,104,108,100,102,91,124,91,98,99,99,99,102,99,103,106,113,104,102,83,99,105,112,102,105,98,93,102,98,115,98,99,102,110,107,97,94,107,88,96,108,95,106,106,88,93,96,97,113,103,108,99,94,112,102,98,104,107,92,101,110,109,105,103,97,96,104,119,117,107,102,100,93,110,105,100,96,104,95,110,110,97,110,94,91,103,109,100,117,120,99,108,99,99,107,109,105,103,94,122,103,112,113,96,108,106,100,106,91,111,115,106,100,97,92,105,113,110,117,108,89,108,105,101,97,81,106,102,103,106,102,104,109,96,103,98,93,98,110,104,91,108,111,111,84,95,108,111,101,103,106,96,102,109,95,111,117,108,95,95,107,100,94,108,95,98,105,105,100,95,104,98,95,123,90,98,106,105,113,103,101,102,102,88,94,94,102,108,106,105,99,96,99,100,108,106,108,105,110,91,106,100,100,102,101,108,108,105,104,110,91,104,90,106,106,103,94,113,93,100,98,102,98,103,93,100,107,103,91,100,104,113,101,97,104,98,97,82,99,95,116,102,102,104,102,96,110,98,101,93,110,108,125,89,98,98,104,108,110,104,104,89,96,106,100,105,87,103,100,97,104,109,105,113,104,89,108,111,77,105,94,109,94,100,113,102,104,99,90,102,102,106,100,96,101,98,91,95,103,102,100,108,78,111,100,95,111,92,99,100,91,98,97,116,98,106,100,99,96,113,90,103,100,89,84,112,110,95,106,103,107,103,105,91,98,108,102,111,96,98,94,99,75,95,98,93,106,102,101,88,100,133,95,102,106,107,113,98,97,92,98,96,100,101,90,100,100,98,103,71,105,98,109,92,101,108,101,95,88,100,103,107,106,92,102,95,87,103,119,104,108,120,100,103,105,100,99,79,92,104,97,95,106,105,105,97,97,92,104,99,106,96,100,102,97,102,101,97,100,102,77,91,113,102,107,104,95,87,109,106,109,99,95,102,98,91,95,98,102,111,99,99,82,110,102,102,92,91,94,103,91,88,115,102,102,91,115,95,102,103,102,110,108,104,84,102,91,102,98,113,102,129,105,105,106,94,106,98,105,99,101,98,106,99,98,92,103,115,110,92,95,90,104,111,108,103,92,92,98,87,88,105,111,91,97,98,86,114,102,110,102,101,98,99,109,97,92,117,113,99,104,101,126,102,101,98,99,96,101,111,91,97,82,104,105,115,105,107,109,108,109,96,94,101,105,104,119,100,117,112,103,103,109,101,87,107,101,90,113,103,100,81,113,92,99,108,101,101,103,113,97,89,100,119,103,105,101,106,102,101,90,99,100,101,96,113,104,104,91,106,97,92,95,101,102,92,104,105,101,98,100,91,102,96,73,104,106,107,108,95,105,105,103,105,93,95,118,99,100,108,97,113,96,97,105,97,102,101,105,103,96,107,110,103,96,102,107,95,98,104,103,87,102,102,99,93,104,113,99,99,102,102,102,93,113,99,107,94,94,100,121,101,103,99,106,104,95,106,101,105,113,109,103,94,91,102,108,95,104,102,94,98,102,124,106,113,105,100,98,80,98,112,105,104,99,90,106,107,94,101,92,94,102,93,96,99,109,111,91,96,98,99,96,101,92,95,107,97,100,107,107,95,98,68,96,95,99,105,110,105,110,99,102,102,98,105,95,87,88,99,105,99,110,103,116,109,97,101,109,102,111,93,100,102,87,105,95,105,98,95,104,104,102,106,106,91,118,97,112,105,101,87,97,94,99,90,105,105,104,111,99,97,96,87,101,106,116,100,96,113,99,90,85,94,96,112,98,105,91,98,104,88,101,113,109,92,109,101,109,97,100,106,90,108,101,93,101,107,102,107,106,98,91,84,79,105,115,113,114,97,104,109,99,97,97,97,106,100,109,117,105,94,102,83,100,94,99,91,98,76,108,99,95,102,95,102,99,120,112,96,91,106,82,107,100,98,99,92,88,105,95,131,97,91,106,110,96,103,103,110,103,108,83,116,90,86,108,105,88,114,96,106,100, +404.42422,94,105,85,85,93,89,93,101,90,102,91,99,97,75,101,100,97,107,102,87,101,112,91,91,101,96,96,93,105,92,95,96,94,109,92,94,108,97,108,102,86,97,76,100,102,106,103,98,101,101,95,108,100,102,111,96,95,90,108,86,103,97,91,95,115,101,96,110,100,98,97,102,99,104,90,96,91,93,95,89,106,95,104,101,103,90,98,97,105,109,102,96,91,105,96,92,92,85,99,100,98,99,112,97,100,97,103,92,87,93,90,101,91,95,121,94,105,110,111,87,86,99,95,107,99,109,105,92,103,104,96,105,94,88,101,104,93,103,100,97,105,95,107,100,94,98,103,105,102,96,96,100,108,92,119,94,91,98,100,96,93,105,96,104,102,100,96,89,105,99,108,91,106,96,94,96,100,101,84,105,107,92,82,97,95,98,101,77,76,106,88,107,96,90,85,97,105,103,107,102,96,108,98,105,106,108,103,97,106,109,104,118,105,107,95,101,95,102,101,80,96,100,96,100,110,93,97,92,100,105,98,110,107,102,95,94,102,122,95,106,98,88,104,97,96,103,92,96,96,88,99,100,97,84,100,105,100,108,101,102,102,100,98,95,104,112,100,117,100,97,100,94,93,97,94,83,101,110,106,91,93,89,101,102,93,98,91,97,110,107,100,95,104,94,94,101,110,110,102,105,88,109,108,107,103,104,104,108,96,95,111,110,118,91,90,117,104,103,113,90,105,92,68,102,107,97,91,100,109,96,106,79,101,96,111,113,111,104,102,99,92,95,101,90,100,107,96,103,99,101,104,86,100,100,100,98,105,102,113,102,104,99,90,105,101,102,100,107,98,104,102,100,105,96,97,108,100,101,91,94,110,92,99,110,104,97,101,107,91,91,112,104,86,98,99,99,95,104,95,114,106,97,89,111,92,82,98,96,112,97,91,100,95,97,99,101,116,98,103,95,89,89,95,101,97,105,106,99,100,98,97,101,105,106,102,99,94,101,104,76,92,97,138,97,105,100,103,101,105,97,104,93,103,102,101,98,101,98,108,111,100,81,95,102,112,108,105,100,103,96,113,110,102,94,90,96,100,106,102,89,87,98,111,93,98,100,98,102,105,93,95,106,104,101,94,95,92,109,107,99,101,101,106,100,128,109,106,97,98,101,105,96,87,98,106,98,100,110,125,90,110,85,97,104,115,125,115,95,99,99,81,108,93,100,101,102,101,107,102,105,97,101,101,103,103,101,96,98,90,113,101,104,99,97,100,104,99,97,94,95,89,101,106,110,86,102,109,104,99,108,96,89,99,91,108,97,99,103,102,103,99,100,96,101,106,84,107,96,97,105,105,97,97,108,98,113,87,103,112,102,101,99,98,96,99,102,101,90,105,116,105,104,90,112,102,104,95,102,101,96,92,92,113,94,109,96,99,92,118,95,100,101,106,112,105,100,98,109,110,95,99,105,105,83,87,86,102,93,104,106,107,98,116,96,103,105,108,95,101,105,88,99,90,93,96,96,97,100,113,86,100,114,94,98,90,108,95,104,104,104,105,103,117,92,101,105,102,123,109,109,101,92,91,105,95,95,103,108,108,100,99,103,84,100,91,102,106,95,108,98,100,105,104,94,92,92,98,103,92,107,93,100,103,94,92,85,92,106,94,102,105,96,104,101,101,95,95,95,109,97,104,99,83,102,103,93,91,103,92,121,97,94,106,91,99,108,99,100,95,95,100,104,95,88,97,96,95,108,104,102,100,97,107,100,76,97,101,106,91,93,107,105,111,113,88,111,96,98,96,111,104,102,101,122,103,104,106,87,109,106,110,101,109,99,109,100,101,89,104,98,112,105,95,93,109,104,108,94,106,94,93,99,109,105,100,109,101,105,105,92,104,91,107,105,86,95,94,96,125,96,104,94,96,97,102,102,96,94,105,99,94,99,104,114,101,100,108,104,102,99,102,98,100,101,100,96,101,97,108,99,102,101,96,107,106,94,105,102,101,100,101,89,102,96,105,102,103,98,107,99,103,117,91,95,100,96,98,103,101,101,102,99,99,101,106,102,98,107,103,105,114,103,102,100,101,103,93,102,91,97,91,105,94,113,93,104,100,88,111,97,102,100,106,111,101,104,102,102,96,99,106,97,97,104,102,88,101,113,109,91,99,96,111,102,102,98,102,106,90,101,108,104,94,100,93,101,92,100,86,96,106,94,112,103,101,91,99,93,92,103,94,98,106,104,108,99,95,99,93,97,104,105,92,112,92,93,118,83,101,96,103,96,106,100,105,98,103,106,104,92,104,105,99,104,104,96,90,95,98,103,101,94,94,87,85,113,106,98,104,101,105,98,101,95,113,106,97,102,101,91,104,102,98,96,97,87,103,103,97,103,97,98,105,94,92,103,111,101,98,95,92,75,108,96,96,91,110,102,107,98,92,108,104,103,101,87,114,94,101,98,101,90,97,103,102,94,92,98,92,91,90,95,91,93,89,98,98,104,104,97,103,106,95,94,105,101,127,95,93,99,96,104,97,100,104,95,99,103,81,109,109,89,91,106,106,98,104,103,95,108,107,98,106,116,105,91,101,111,97,94,97,94,109,102,93,97,91,112,99,85,105,102,103,98,94,95,102,95,99,102,96,91,100,60,92,106,80,92,101,104,102,92,104,99,93,106,105,97,85,100,97,98,90,109,100,110,86,91,97,101,102,96,96,103,105,102,98,78,98,108,105,102,100,93,113,103,101,102,105,95,95,101,79,99,101,96,101,105,97,107,108,94,115,106,110,105,102,107,105,99,105,100,90,99,99,89,97,99,104,96,94,112,95,98,108,96,100,101,106,93,106,95,109,104,93,103,98,109,101,96,99,94,104,98,97,99,101,98,104,105,109,102,106,105,101,105,93,107,91,98,98,107,113,103,89,114,108,104,106,110,98,109,98,96,76,100,91,99,84,109,89,101,105,109,98,106,97,105,113,90,100,94,99,109,103,93,98,99,100,86,98,96,100,105,113,98,101,100,97,97,92,83,107,135,91,91,90,92,93,99,109,110,107,83,100,108,104,109,106,102,104,94,95,90,89,96,112,98,96,99,98,97,101,102,103,98,105,92,119,91,99,104,90,117,94,99,105,109,107,94,97,104,96,96,95,96,91,96,112,91,100,97,96,104,95,96,104,98,102,84,105,103,99,94,105,100,95,94,101,77,107,105,102,106,104,106,103,88,91,94,91,101,95,96,105,98,101,99,108,99,108,99,113,114,94,97,99,95,97,103,109,99,97,103,105,95,111,103,101,93,108,99,94,92,97,102,100,86,105,96,102,101,98,96,105,102,96,87,96,99,100,97,104,97,98,98,103,100,112,94,101,100,99,96,103,110,105,100,100,92,96,105,100,91,105,97,108,92,99,103,90,89,88,98,100,101,105,100,96,107,91,104,96,104,109,104,97,104,116,103,103,102,96,97,99,102,107,101,103,108,104,95,100,72,92,96,87,101,119,101,102,97,98,98,98,100,104,93,95,101,112,102,99,115,102,101,102,92,98,99,95,98,99,102,94,129,102,95,93,90,103,104,105,93,108,105,97,97,103,91,95,93,97,103,95,97,94,92,103,101,98,105,101,100,94,97,94,99,95,96,100,96,94,94,93,86,100,101,102,112,109,100,132,101,93,96,84,105,107,94,106,97,89,111,103,103,118,104,95,106,103,98,103,100,100,100,92,100,104,81,101,108,100,89,100,90,108,105,94,95,101,99,103,104,86,97,99,100,104,100,107,79,98,101,101,101,110,89,100,105,100,104,93,118,103,81,115,101,113,121,94,94,98,110,97,116,101,114,96,98,100,101,109,98,106,93,98,87,102,105,84,107,100,102,94,102,95,100,93,95,104,97,103,103,98,77,97,94,97,89,92,100,109,93,102,102,96,90,102,102,103,108,115,100,99,104,115,90,93,123,97,78,100,103,88,99,100,107,99,89,123,100,99,106,76,98,102,100,91,101,101,102,94,97,102,110,94,101,98,115,106,85,94,86,97,98,92,103,96,102,105,101,95,96,103,101,64,93,95,99,100,93,90,115,92,89,100,100,99,91,105,105,99,101,75,114,97,101,100,99,101,95,99,98,97,99,84,97,100,110,96,92,88,118,95,101,102,114,101,100,89,101,92,97,99,102,111,92,94,90,110,114,98,95,98,106,100,93,102,101,101,106,108,95,95,101,112,99,97,100,102,92,105,92,97,91,102,106,123,101,84,99,97,109,104,64,111,98,108,103,100,102,108,92,92,100,99,87,81,101,96,123,107,97,95,99,98,101,103,119,105,95,106,117,101,102,103,105,104,101,102,124,106,93,104,92,98,115,107,105,97,106,97,107,126,90,103,110,110,100,109,104,105,100,90,99,99,109,101,98,106,87,99,120,96,98,91,108,82,102,100,105,101,98,106,105,93,100,98,101,96,96,93,98,111,100,96,99,98,109,99,90,103,93,101,94,106,97,106,97,98,103,103,107,96,107,98,106,108,111,90,91,98,99,102,105,114,111,104,102,97,101,104,88,97,102,103,99,95,88,101,91,104,97,100,94,98,83,110,93,96,94,99,105,105,108,119,97,92,97,101,102,102,121,106,105,90,106,99,91,105,109,118,107,112,100,107,105,89,89,83,89,116,94,96,105,99,100,87,98,100,97,100,97,108,91,107,99,98,83,85,102,111,93,101,104,87,102,97,102,97,84,93,93,100,105,98,96,98,96,105,111,90,99,98,92,84,106,104,106,78,108,99,105,88,101,85,101,89,91,98,105,89,105,83,108,105,107,102,88,109,112,109,77,113,84,98,100,85,100,92,95,123,88,91,104,87,107,105,102,79,106,100,95,96,83,103,107,118,86,97,87,88,97,101,114,96,98,93,107, +404.56436,104,90,103,94,90,111,97,103,98,110,95,98,109,107,98,95,101,90,88,91,94,84,100,100,107,116,92,129,102,107,102,108,108,94,103,96,107,95,94,95,100,102,90,88,88,96,100,99,94,95,99,106,87,97,98,91,94,92,105,91,82,110,101,95,101,105,101,102,99,86,87,104,101,100,90,102,100,84,89,119,97,108,97,106,118,96,91,104,99,98,92,104,101,100,103,100,91,93,97,88,83,100,82,100,108,103,91,99,93,95,98,98,107,103,74,99,93,104,101,101,103,107,102,109,99,78,98,93,94,95,101,96,96,106,97,91,102,102,86,93,69,107,102,98,94,90,114,104,104,84,107,98,100,94,93,104,97,95,95,100,104,98,119,98,100,104,102,91,107,106,94,96,101,98,93,107,93,94,104,135,110,108,93,99,102,98,94,98,96,107,90,96,102,97,98,93,105,101,95,112,103,95,100,102,111,109,101,93,96,110,91,92,100,95,76,100,98,91,104,100,104,95,103,84,97,97,109,89,101,105,100,104,104,89,79,112,110,108,95,100,83,94,106,88,100,68,97,99,92,108,93,71,78,109,105,91,100,113,99,100,103,103,112,103,94,125,107,100,97,105,105,97,99,106,105,97,102,97,90,101,100,99,99,101,113,108,93,102,90,97,101,92,102,99,101,108,110,104,73,89,108,100,105,103,98,99,91,105,95,107,92,104,94,98,100,89,103,95,110,102,98,105,110,110,109,107,102,89,96,99,106,94,101,94,108,100,102,106,100,100,92,107,91,93,104,97,101,96,105,119,95,101,72,98,97,100,91,113,92,98,90,91,90,93,91,104,98,100,95,109,95,99,104,99,105,101,90,102,108,103,101,91,96,83,97,91,108,102,111,98,104,92,90,87,95,97,62,97,98,102,92,98,101,93,87,108,94,95,107,89,86,94,103,99,100,102,90,98,92,96,96,96,88,90,110,79,97,101,94,114,98,104,109,92,101,96,95,102,101,106,103,109,101,118,100,97,94,93,112,94,111,102,101,105,97,102,93,92,78,99,99,106,101,107,104,93,102,98,95,102,97,80,99,100,102,98,96,98,90,107,110,95,112,84,112,114,96,95,98,84,100,97,83,89,109,108,92,102,103,100,91,108,104,96,101,88,102,105,118,103,103,92,100,89,91,104,106,99,92,90,83,95,91,101,92,104,103,97,98,107,86,100,90,90,93,123,106,100,94,110,100,98,92,111,97,112,96,114,99,97,106,105,91,97,89,98,107,98,96,103,110,106,95,95,101,98,91,82,106,101,100,105,103,95,99,101,97,86,93,109,108,92,92,97,102,91,104,106,105,101,105,106,96,94,101,100,106,96,85,101,93,92,100,94,93,86,103,117,95,96,89,91,105,109,104,100,101,94,96,94,105,100,102,105,106,91,88,97,103,96,109,91,114,104,93,105,92,87,103,105,101,113,106,100,96,88,92,90,96,106,89,104,83,97,104,105,115,99,91,106,108,104,106,106,101,101,104,88,93,96,104,113,100,110,106,104,96,98,105,100,99,98,117,92,84,94,91,98,90,111,102,112,96,107,103,109,105,101,100,91,99,96,70,109,114,104,106,109,94,99,96,99,96,89,102,98,98,93,96,95,86,100,110,103,94,93,99,98,101,97,92,94,108,98,96,95,98,95,106,105,102,96,98,103,94,103,104,108,112,100,107,94,90,94,87,97,87,94,99,100,97,93,91,105,100,98,102,99,95,91,109,108,107,113,90,106,105,102,86,96,100,107,102,102,88,108,96,95,83,76,98,88,109,107,95,101,101,88,101,99,95,100,107,95,96,96,98,100,100,107,107,96,98,110,101,90,102,92,98,100,97,110,108,101,96,114,96,89,93,105,94,96,100,101,103,99,98,107,95,109,67,82,98,99,98,74,94,98,109,87,104,89,95,102,95,110,88,96,79,105,87,95,101,95,102,68,91,96,83,100,105,95,87,90,95,97,100,107,106,97,104,110,86,104,87,100,88,109,105,105,99,107,133,76,90,98,92,93,89,94,99,105,106,90,93,100,68,97,92,96,102,95,103,102,113,88,100,94,83,87,96,100,112,95,100,97,101,99,97,96,90,91,109,108,95,102,96,104,107,111,100,105,101,108,90,104,96,95,106,98,106,98,102,93,82,79,95,103,103,95,100,91,99,100,107,99,105,90,101,97,90,113,110,94,90,108,111,93,90,114,94,92,106,89,86,97,95,104,92,102,106,101,91,102,106,100,88,108,77,93,102,94,94,108,94,101,103,101,98,91,91,114,101,97,96,97,91,112,103,92,99,113,82,89,95,108,95,105,109,96,101,109,100,98,100,84,99,99,93,94,83,109,90,105,109,90,103,88,87,92,108,104,96,116,101,110,99,98,93,100,99,112,112,96,85,113,102,94,95,102,97,112,86,108,91,97,92,98,101,95,99,107,101,104,101,106,109,91,106,95,90,103,113,104,103,98,101,92,110,116,106,99,99,85,103,102,83,120,95,102,92,113,110,97,96,99,89,112,99,118,104,95,102,99,102,108,105,102,107,91,107,104,82,90,93,99,111,89,100,98,96,94,113,100,80,108,94,103,108,95,94,110,107,100,101,105,109,94,98,99,109,105,113,90,105,104,102,100,106,104,112,97,108,100,85,116,99,98,105,111,109,114,93,103,100,98,103,96,95,109,110,94,96,102,93,95,105,106,96,129,105,96,105,109,109,101,110,91,106,103,94,112,101,111,115,103,103,106,99,101,109,111,100,103,108,96,105,100,108,111,94,112,98,105,105,93,96,116,108,100,84,95,108,99,108,90,96,109,92,94,99,100,101,110,93,92,101,96,97,112,111,90,107,116,108,94,108,104,98,106,121,103,88,109,103,91,97,108,115,109,99,109,100,104,102,87,102,100,111,104,98,104,98,100,101,97,102,95,97,103,103,89,99,95,97,98,105,107,103,99,95,120,93,90,107,108,104,99,95,105,100,103,102,115,96,109,95,89,96,99,81,100,105,107,113,98,100,102,110,93,90,100,98,97,103,103,102,100,107,98,106,104,96,105,109,101,93,96,103,93,107,112,116,101,104,94,101,108,104,97,98,109,102,121,99,107,102,104,92,91,107,105,105,114,102,98,107,99,106,108,93,100,102,103,110,105,87,95,122,101,102,101,90,106,113,103,99,99,102,101,96,105,93,107,104,100,100,99,98,111,93,111,101,98,103,99,91,102,113,90,100,104,106,104,105,95,92,95,97,107,106,96,102,99,113,92,100,97,102,98,101,97,94,102,95,102,105,89,102,104,103,99,98,102,101,110,92,83,101,107,106,104,102,88,100,99,102,99,105,106,99,99,104,105,102,100,102,98,106,102,113,99,95,101,107,104,102,105,97,100,103,106,109,95,100,93,96,101,106,105,94,103,98,106,101,101,115,91,91,113,103,110,108,105,98,106,91,121,114,97,102,113,96,95,100,95,103,110,112,77,106,105,88,91,88,107,92,83,101,97,113,101,102,101,99,100,99,103,98,102,98,108,97,99,107,108,94,98,87,105,113,109,104,106,98,95,109,103,101,96,102,87,87,109,112,90,101,102,96,90,98,107,107,92,92,97,104,116,65,97,100,102,100,101,93,91,109,90,91,98,96,98,102,99,94,100,110,106,119,103,95,98,101,109,102,100,102,95,121,87,77,98,106,102,107,97,106,100,105,105,109,96,96,96,111,105,109,104,101,110,98,105,81,98,89,98,95,99,96,94,104,103,90,103,95,102,107,92,118,95,104,92,103,99,97,84,104,109,109,87,93,107,106,107,92,87,97,94,95,106,103,96,103,104,96,109,102,97,96,88,101,105,96,77,87,103,124,104,100,84,99,98,78,108,124,94,104,95,101,105,109,90,100,78,104,110,98,98,107,95,118,93,105,99,102,98,93,109,101,92,116,103,94,118,86,96,103,100,102,91,99,97,112,97,108,99,101,100,100,121,112,99,88,101,105,95,108,97,101,108,116,101,91,102,91,87,96,86,115,97,107,100,92,94,101,109,103,75,108,105,94,107,102,103,102,104,93,104,99,97,102,113,102,103,104,104,98,104,101,104,103,116,91,105,109,100,118,100,101,100,97,107,96,99,101,100,105,109,92,98,106,104,119,93,96,93,105,103,99,107,114,101,108,97,102,102,104,100,99,94,112,102,96,113,103,103,98,95,93,118,100,95,102,107,92,101,105,117,103,101,94,106,98,98,100,92,103,109,101,92,92,107,99,103,112,99,113,100,91,98,99,99,99,103,100,101,109,79,115,107,108,117,110,108,104,105,94,96,107,101,99,119,95,113,105,88,92,91,105,113,88,109,116,108,90,97,114,106,104,101,111,106,107,103,102,100,105,102,111,100,94,106,102,98,92,102,99,105,103,109,104,100,94,100,95,95,90,94,92,104,102,93,98,94,100,102,101,109,87,107,89,98,88,104,98,100,113,101,103,101,101,97,96,115,95,102,108,94,99,94,84,101,108,127,104,103,99,112,95,105,109,94,101,108,95,104,96,96,104,108,108,100,104,95,97,104,107,98,92,93,97,94,109,100,104,95,108,98,98,102,105,115,87,100,104,110,105,93,99,93,106,84,98,97,103,99,101,105,111,98,103,96,106,95,97,106,101,92,102,95,102,109,103,101,103,95,109,99,67,100,116,111,108,105,100,108,108,97,94,98,94,99,88,100,104,105,100,94,94,103,102,113,93,105,94,110,103,109,116,93,89,88,100,117,94,105,110,93,98,91,103,87,83,74,95,101,101,99,89,100,94,104,98,84,107,103,102,107,114,92,108,98,94,88,90,105,85,92,110,103,100,103,102,94,100,100,92,107,106,104,103,105,109,72,97,96,104,113,109,105, +404.70453,107,94,109,103,76,108,99,100,92,93,99,92,94,101,100,105,106,112,101,109,93,95,96,106,107,102,97,103,108,85,88,97,94,91,109,96,108,91,116,98,106,78,94,102,95,101,86,104,91,88,102,86,107,92,103,102,98,96,103,101,91,99,105,95,98,83,102,91,95,90,83,94,95,113,88,95,109,93,113,103,106,89,97,108,97,114,90,89,102,117,104,96,102,93,95,103,94,98,93,98,105,104,98,95,105,112,120,104,90,101,103,92,104,86,107,97,103,103,102,119,102,105,89,114,109,103,106,98,120,110,107,114,102,120,118,117,108,97,116,97,91,100,96,100,93,114,101,103,98,95,100,102,106,93,88,101,99,96,105,108,101,108,103,91,106,99,107,106,108,93,97,120,97,95,97,106,97,95,107,88,104,95,99,99,106,93,104,92,104,98,93,104,90,104,99,99,99,99,83,100,105,98,105,106,106,103,103,96,99,104,89,99,105,110,106,96,95,102,103,100,110,105,96,103,103,66,101,94,94,102,97,105,102,97,99,105,110,95,95,93,97,99,108,105,94,107,101,84,95,109,96,100,109,102,94,106,99,108,100,109,100,107,100,109,82,96,100,103,94,97,102,104,99,107,106,95,106,102,100,90,104,102,100,100,105,96,101,101,87,102,105,106,102,92,114,89,108,104,104,111,100,80,100,102,96,116,92,113,105,107,97,99,106,99,105,91,99,107,105,103,100,88,121,111,101,97,99,99,106,113,105,103,104,105,108,74,101,97,86,107,95,101,95,106,98,103,105,101,98,103,105,96,104,95,108,99,113,104,99,109,110,96,105,101,98,98,71,104,100,112,101,105,113,95,104,108,109,118,100,114,100,98,110,108,102,92,96,99,101,83,108,106,99,114,104,110,74,95,100,104,92,92,110,95,92,90,99,103,108,108,100,100,102,105,92,104,103,96,98,99,94,114,100,109,101,94,106,114,92,100,95,104,97,109,95,100,102,111,122,90,82,99,91,108,97,104,99,80,102,114,109,99,99,107,106,109,106,100,103,106,100,100,103,102,100,108,92,96,99,111,108,104,97,109,110,99,98,103,106,103,90,106,113,106,105,101,110,102,102,104,100,93,98,94,86,91,98,98,117,99,87,99,113,84,102,122,97,92,106,106,104,111,113,121,108,103,94,84,96,97,118,94,98,100,110,86,108,110,89,101,99,102,99,108,100,105,108,95,87,95,101,91,93,98,100,105,93,95,104,117,111,104,108,98,88,97,105,105,94,100,96,93,101,99,118,99,102,91,115,110,97,95,100,103,98,118,111,95,107,118,107,99,98,104,105,99,102,101,98,93,101,113,101,97,110,108,127,96,116,102,105,102,103,95,97,95,100,104,113,99,95,103,93,107,91,104,99,101,86,105,106,92,102,96,99,111,102,89,101,97,105,112,84,113,92,90,107,101,107,123,96,106,105,109,100,98,97,105,95,111,110,110,105,96,101,94,110,98,95,103,90,102,108,116,92,98,108,101,87,104,104,99,106,106,103,109,104,95,97,97,108,98,114,95,100,99,97,103,99,101,94,94,91,99,104,100,98,109,104,98,103,99,110,104,93,110,109,109,101,106,105,86,98,97,86,99,123,94,110,95,99,106,98,102,97,126,111,115,108,113,88,105,110,91,94,100,109,105,104,103,101,99,101,97,100,97,108,102,106,100,104,92,101,100,109,81,102,98,101,98,93,106,98,107,86,104,100,108,106,95,114,103,92,89,101,91,103,102,101,109,99,99,103,107,98,99,111,104,109,99,98,101,102,113,100,99,114,92,106,99,91,95,98,100,106,100,94,90,105,101,91,102,94,101,111,99,105,109,118,121,97,103,84,113,96,107,98,107,109,106,80,92,105,100,103,106,106,100,99,104,109,110,98,100,95,86,102,96,97,106,96,92,100,94,94,95,77,98,104,91,96,89,91,106,107,101,102,97,99,94,95,103,107,80,92,96,96,99,92,94,101,108,99,116,102,87,98,101,98,96,105,103,95,107,95,103,95,95,88,97,97,105,103,111,96,109,95,106,100,108,102,100,88,100,94,98,102,105,103,110,109,105,110,99,101,90,78,94,104,88,104,99,91,112,107,92,87,100,116,91,109,111,97,113,101,107,102,110,87,104,92,105,102,91,108,112,103,91,99,93,110,103,112,90,102,104,114,105,104,103,94,116,91,98,98,107,107,98,97,99,89,101,113,74,100,100,91,111,90,97,87,105,101,109,103,101,102,101,96,100,97,92,98,97,117,102,109,99,97,107,105,102,105,103,109,98,99,100,112,95,91,102,104,90,101,93,99,108,111,93,93,100,72,91,103,93,93,109,101,99,90,99,110,90,91,104,93,102,95,95,97,105,98,96,102,97,109,96,106,103,100,93,99,105,97,98,92,99,100,95,96,104,92,104,91,87,105,106,100,101,104,109,93,121,109,96,95,96,107,102,97,98,96,100,98,101,99,102,102,96,105,93,101,101,87,105,83,98,99,94,111,103,97,108,98,98,94,100,101,101,108,106,87,109,101,88,93,88,105,103,92,106,98,95,103,98,118,94,96,98,102,104,113,101,93,114,107,105,101,105,105,99,104,100,103,98,103,107,105,89,102,96,112,87,94,97,94,84,96,107,102,103,119,102,100,107,95,93,106,107,99,95,106,103,102,113,100,103,108,97,105,96,102,96,104,105,100,96,98,100,103,100,108,93,103,105,97,91,101,96,108,104,99,113,95,91,99,105,91,107,105,116,98,101,113,91,93,110,100,87,93,110,105,96,108,100,109,96,106,99,100,98,89,100,90,94,107,98,111,104,92,106,102,92,112,105,101,99,92,104,95,106,112,108,101,105,100,100,106,104,105,101,113,111,108,94,105,115,103,110,103,97,118,95,109,96,106,64,98,102,104,106,140,108,95,113,95,105,106,102,113,112,93,106,73,98,111,98,97,103,91,97,96,94,101,105,104,114,81,100,95,107,102,95,87,98,108,98,92,90,87,96,107,81,104,105,103,98,102,101,95,110,105,91,96,101,100,103,99,97,102,108,100,105,93,91,112,96,86,98,102,101,124,104,101,87,91,98,104,102,105,104,95,117,102,94,100,91,93,93,96,100,96,98,99,91,95,94,100,90,98,91,87,97,101,109,91,110,115,99,113,107,98,81,100,99,99,107,102,89,92,95,103,98,105,98,110,96,96,106,90,101,100,85,100,97,106,95,103,99,102,99,113,107,116,97,97,103,93,106,74,97,107,106,88,99,105,105,91,101,104,97,108,117,96,108,100,97,96,100,98,109,103,106,96,109,104,103,113,94,113,104,107,117,103,83,115,102,101,99,91,110,109,106,99,102,103,95,93,93,93,98,101,110,99,104,99,75,95,108,87,96,110,104,99,99,111,91,99,113,106,102,105,85,101,100,114,95,122,85,96,106,93,95,97,101,107,103,93,95,99,98,105,90,99,104,94,99,105,91,105,111,96,94,106,101,98,103,102,94,118,92,91,101,97,103,107,103,99,98,96,106,96,117,105,102,99,104,110,105,106,98,96,93,102,93,103,73,120,100,136,110,93,87,104,98,100,99,108,100,81,127,108,113,97,97,100,99,95,111,107,101,98,97,68,89,107,91,103,108,100,92,97,98,101,93,109,95,104,104,95,105,104,95,95,100,109,108,103,100,108,104,100,98,93,96,91,97,102,103,105,91,102,99,105,109,107,107,102,104,104,103,116,95,107,101,98,110,112,104,100,100,103,103,98,102,92,95,88,107,97,102,100,111,98,101,102,113,124,92,110,104,121,99,105,113,99,84,98,98,96,109,111,92,104,97,93,98,103,94,97,83,103,94,96,100,104,105,91,108,98,105,93,108,101,91,100,114,97,98,103,99,104,101,104,99,95,97,103,95,97,102,95,117,96,99,106,84,97,97,78,102,96,117,92,100,106,105,99,84,102,101,97,101,110,98,100,101,100,98,102,109,93,123,102,75,101,108,89,99,105,104,97,103,96,97,117,103,98,106,105,99,110,104,107,105,102,96,112,107,104,96,98,99,101,103,92,105,116,99,97,110,103,112,108,95,97,112,98,109,99,101,113,99,111,109,99,102,100,90,101,92,98,95,124,100,101,99,112,92,83,99,95,93,98,82,83,108,98,97,101,108,95,106,104,95,97,109,100,91,101,107,98,117,97,99,109,104,98,101,100,96,100,101,101,106,103,111,87,103,88,103,100,98,100,97,91,101,91,104,81,110,104,102,90,103,80,110,98,106,105,113,96,104,96,87,116,106,117,98,94,87,108,84,95,85,113,103,137,107,100,101,103,101,92,103,100,95,104,95,109,102,107,107,94,101,109,109,95,101,98,108,107,97,103,99,102,99,95,108,99,99,88,104,94,105,91,97,108,116,111,98,109,97,98,95,95,103,98,102,103,104,102,109,108,120,101,88,100,96,91,90,109,98,99,100,106,101,95,108,104,107,95,74,102,96,112,106,94,104,105,101,97,94,100,91,98,93,96,110,97,108,104,69,97,102,104,88,105,105,86,105,100,84,106,113,100,102,101,99,95,92,100,93,103,93,110,91,112,109,105,103,116,93,99,102,107,104,99,90,107,96,97,91,102,101,105,100,111,101,92,88,88,92,104,97,95,102,110,89,96,104,101,92,98,94,111,95,95,106,99,105,93,125,99,87,81,85,98,98,103,100,101,103,110,102,119,79,96,100,100,98,81,105,97,98,107,104,95,100,98,106,108,99,103,104,117,91,97,104,89,83,110,89,96,109,97,93,93,92,97,108,97,92,102,96,94,67,92,90,95,106,89,82,93,94,101,137,106,97,108,99,97,102,97,101,78,97,100,99,116,90,88,105,101,96,102,101,101,64, +404.84467,90,113,104,85,90,121,91,87,108,99,84,104,103,107,98,86,101,89,98,87,97,101,95,87,109,95,82,81,103,116,103,102,97,102,90,96,96,95,100,95,96,97,88,96,90,108,97,94,105,95,97,102,92,101,99,100,94,88,99,88,82,98,90,90,97,101,96,99,98,95,96,104,86,90,101,98,99,104,99,78,106,94,99,81,93,94,96,101,103,92,100,105,127,95,103,102,98,111,105,93,103,92,99,89,94,96,91,101,96,81,89,88,90,96,98,98,100,104,98,89,97,87,101,101,105,102,112,101,89,89,96,129,91,101,101,105,95,83,102,106,97,111,100,98,93,90,105,93,100,96,90,96,100,94,103,98,101,95,94,80,92,121,105,90,60,100,94,97,101,88,103,102,93,100,100,84,91,100,99,100,99,91,109,93,95,97,92,94,94,94,92,98,91,85,119,104,101,97,98,94,99,98,101,93,104,95,98,84,108,99,92,90,102,116,103,97,88,91,102,101,105,87,97,106,93,98,92,95,104,95,79,100,133,87,89,100,104,98,97,92,105,81,96,95,91,100,95,85,98,102,96,97,94,95,91,95,94,94,103,101,100,92,91,99,86,109,100,96,96,89,87,91,93,89,111,114,97,99,86,101,93,92,96,98,99,94,94,94,93,100,97,106,122,95,105,118,91,90,97,101,93,93,110,112,95,99,105,107,96,95,93,110,96,95,101,97,98,99,97,97,104,103,93,99,92,101,105,94,104,103,105,96,97,119,106,104,98,91,104,94,94,97,84,98,93,111,104,103,98,110,87,116,79,106,97,95,91,105,96,108,98,105,100,88,79,79,88,98,78,96,104,102,99,97,97,103,102,98,108,102,97,103,95,96,101,100,90,98,104,94,101,105,106,93,101,98,97,102,99,106,94,99,94,109,102,82,88,98,98,96,100,86,103,95,91,99,111,92,107,98,83,101,95,100,97,95,98,94,92,100,96,96,110,107,71,96,96,125,99,92,76,103,101,104,89,74,100,87,101,103,90,101,96,89,110,103,96,97,107,97,101,95,110,96,99,98,93,86,102,97,87,109,101,96,95,77,100,106,90,96,98,100,113,87,90,100,100,96,100,104,95,95,103,99,90,83,103,107,98,97,91,97,106,99,98,101,92,109,102,95,104,102,88,97,100,97,92,89,91,100,105,105,97,105,110,95,96,104,97,108,98,110,100,98,99,97,102,95,104,103,103,100,79,108,122,99,112,102,97,99,99,99,92,112,84,82,105,101,106,82,104,91,104,95,101,92,91,98,101,102,90,99,87,100,97,105,109,93,86,104,95,90,101,102,87,98,100,98,83,92,96,106,103,94,101,105,96,100,109,108,96,97,102,100,94,95,111,89,68,90,103,106,99,94,99,99,103,90,100,96,97,97,109,87,93,100,90,93,100,101,93,91,88,90,99,96,99,87,92,92,111,101,87,99,101,93,85,94,103,94,96,97,103,101,95,110,103,104,100,113,114,107,121,105,97,104,102,86,91,101,105,101,97,91,93,107,103,94,100,82,100,99,93,100,99,110,108,98,95,106,97,105,88,97,100,81,79,96,104,94,91,102,91,117,95,106,96,96,98,91,80,96,104,102,97,95,85,100,115,91,102,102,105,103,88,98,86,110,103,101,92,102,96,96,90,98,101,94,99,98,91,85,94,98,108,92,107,87,105,103,98,91,99,88,100,94,87,95,101,100,97,102,83,91,105,100,99,99,112,108,109,92,96,94,110,97,106,90,116,91,102,105,105,107,98,100,102,94,98,121,103,105,94,89,105,103,107,108,66,102,91,94,101,102,103,97,101,94,116,110,99,83,101,95,112,92,97,101,99,97,91,83,100,89,113,84,90,105,96,89,108,98,108,96,102,113,90,97,87,97,92,96,106,97,117,106,90,100,96,99,95,86,95,97,92,101,105,95,102,104,94,94,100,96,98,121,99,93,101,96,93,97,100,107,95,89,116,94,94,107,103,101,97,98,91,97,91,97,90,91,97,96,89,111,102,103,99,101,96,98,80,91,92,97,105,95,92,90,85,105,93,95,101,107,106,87,95,98,80,100,100,98,112,97,100,66,100,119,100,107,91,94,112,92,105,104,95,97,105,111,96,93,108,102,94,99,101,102,105,94,94,91,110,98,106,93,107,99,99,102,96,105,102,88,105,102,86,106,89,90,76,91,104,102,99,99,89,96,86,93,87,95,96,95,94,101,97,98,88,98,79,98,108,97,87,91,91,93,100,107,98,102,88,95,104,103,108,107,90,96,94,96,94,105,86,86,97,104,110,90,105,90,93,109,117,96,97,100,106,95,89,108,105,103,95,112,91,99,91,91,95,110,106,91,94,108,102,100,105,97,74,88,91,93,103,95,100,99,99,87,102,96,94,86,98,93,102,101,99,105,99,93,89,90,95,103,90,100,83,97,104,110,72,87,101,112,98,91,94,113,102,104,115,93,84,107,107,92,109,99,98,93,87,96,110,104,80,105,101,96,101,113,95,99,69,92,96,87,101,118,104,113,98,90,100,91,93,93,117,108,98,108,100,95,100,87,94,99,113,86,103,98,103,141,95,108,96,104,102,97,106,102,112,99,92,91,104,117,103,69,101,103,108,61,90,114,106,90,99,111,95,90,105,107,90,94,93,101,117,95,103,94,82,124,102,97,102,113,91,94,99,120,104,106,102,102,101,81,90,102,97,100,103,93,97,104,108,104,101,102,104,92,94,111,105,95,103,100,122,96,96,100,107,105,108,88,77,111,123,110,121,95,103,107,108,93,107,99,101,117,91,102,104,96,96,98,92,86,87,102,95,100,106,107,98,90,95,104,113,99,93,99,105,95,102,99,98,105,100,98,105,112,107,104,99,97,87,97,100,106,94,103,92,94,109,95,91,96,86,102,112,96,101,99,80,108,100,89,101,102,109,114,104,101,97,92,102,103,103,95,96,103,96,109,108,110,101,106,92,95,93,100,105,102,110,96,108,107,89,103,87,109,90,108,109,92,103,89,98,95,96,103,102,100,110,95,100,103,104,93,94,91,95,87,89,98,98,97,97,97,94,103,98,94,110,106,109,116,99,109,102,102,95,113,114,106,100,98,93,100,101,102,99,90,106,105,102,104,102,106,97,100,101,94,108,94,103,92,88,96,87,107,107,95,87,90,96,104,91,98,96,108,97,110,96,101,94,98,103,102,108,102,93,87,91,95,109,109,106,105,108,107,95,80,116,98,92,103,102,104,97,97,113,93,108,107,102,99,101,89,109,103,105,90,94,99,99,93,101,107,102,98,98,102,109,110,101,103,91,91,108,106,97,106,109,100,98,99,107,92,88,92,100,98,103,100,110,101,97,100,104,76,107,96,99,102,90,99,90,109,93,99,104,91,101,99,108,92,102,106,98,83,92,83,102,95,92,113,111,91,111,100,98,100,83,99,93,90,90,84,99,94,71,104,105,106,98,102,94,104,98,107,80,104,110,105,98,109,108,102,103,99,97,106,96,105,105,96,98,97,94,102,79,115,92,96,96,104,103,90,109,100,100,94,107,100,89,103,98,98,98,103,105,94,122,116,91,96,99,95,110,103,106,99,94,83,94,94,100,104,92,94,108,113,87,102,106,87,102,104,94,107,95,94,103,99,89,95,107,94,80,104,101,105,92,132,102,94,101,91,101,101,97,105,98,101,99,93,94,87,112,88,94,94,106,91,109,100,88,98,97,88,99,94,95,98,99,100,96,102,96,93,99,107,109,98,101,87,105,99,93,110,100,96,117,108,99,100,89,109,96,99,103,100,103,100,98,99,102,99,94,116,102,85,97,72,103,100,103,105,91,103,88,102,100,105,101,103,100,106,95,90,119,107,102,96,102,103,103,108,102,111,72,95,97,92,105,87,110,99,95,100,94,103,107,93,95,92,104,87,89,97,91,115,104,105,92,99,78,100,96,103,89,98,105,98,92,103,93,105,98,108,92,96,107,96,93,110,104,92,109,96,98,90,103,120,105,112,104,106,114,110,92,93,109,104,101,99,106,98,113,94,91,90,89,100,93,102,97,95,106,103,99,108,103,106,90,93,98,99,105,85,98,107,109,95,109,94,97,110,116,105,104,111,106,98,90,106,108,103,113,90,88,100,111,108,112,99,100,95,93,111,117,87,100,121,87,89,105,110,109,103,102,96,100,102,93,86,94,108,99,97,99,104,94,117,108,99,95,96,88,98,110,93,94,97,98,95,85,118,102,102,99,115,96,98,98,86,88,102,98,98,104,95,109,102,104,92,98,121,104,98,102,101,109,92,97,107,107,96,80,97,91,93,99,105,109,103,100,103,111,117,106,101,92,85,102,97,111,89,98,95,98,99,109,88,102,107,88,90,100,104,77,108,102,92,85,95,96,92,114,101,95,91,96,89,86,99,101,91,105,101,107,98,102,98,93,100,109,97,101,90,91,103,96,104,100,92,102,91,65,110,100,93,106,105,97,103,100,96,91,102,91,82,95,98,110,112,94,105,97,96,91,97,101,92,105,93,98,93,73,100,107,97,102,98,96,109,93,103,90,96,93,106,102,100,108,97,106,100,90,105,96,105,102,101,110,106,105,81,121,98,106,95,112,122,97,104,100,108,99,98,98,100,90,91,98,96,91,86,105,101,100,97,99,96,97,98,99,82,88,98,93,96,99,104,102,101,107,99,96,101,99,102,68,96,105,97,93,98,103,96,98,109,94,102,98,99,94,101,94,96,96,92,89,105,113,72,103,97,113,99,109,95,94,106,104,101,93,105,102,94,98,94,94,93,104,91,107,93,87,105,95,103,92,93,91,100,96,90,100,91,104,102,105,106,93,109,103,84,106,101,88,80,93,109,105,99,99,78, +404.98483,99,109,100,103,99,102,100,94,99,96,92,103,109,101,96,104,97,110,93,95,99,108,86,93,97,103,105,97,107,96,95,80,93,96,104,99,113,81,95,86,98,105,86,94,103,80,105,103,92,102,82,87,120,102,100,82,90,71,92,117,97,107,97,92,123,95,98,101,112,95,108,114,100,120,98,104,91,93,104,100,105,96,95,110,89,102,102,99,102,113,105,102,98,99,111,104,90,105,96,105,99,95,99,116,100,109,111,98,74,99,96,95,94,95,100,112,100,108,101,100,99,119,103,117,99,96,98,89,106,111,104,111,97,98,105,107,98,107,99,96,109,98,106,87,99,106,99,100,98,91,105,98,110,95,90,93,97,90,108,106,100,82,104,100,102,104,96,101,98,101,111,95,100,100,97,106,87,92,97,97,98,92,104,101,93,96,97,101,103,102,104,105,87,98,104,104,100,73,103,129,96,113,95,102,94,100,103,107,100,102,88,108,97,106,99,94,104,103,100,90,85,103,118,120,100,94,92,106,110,83,99,92,117,95,109,96,102,95,113,111,100,109,95,79,93,96,111,97,100,109,99,102,93,99,93,91,119,99,110,92,93,100,98,103,98,106,105,92,98,95,95,98,104,116,97,88,89,105,87,103,106,109,105,107,101,99,89,101,105,117,95,114,111,78,97,92,86,106,102,100,106,102,101,106,114,105,109,108,111,113,104,100,105,100,95,93,104,109,99,101,99,98,105,101,105,96,100,87,122,107,96,97,102,96,109,75,100,123,102,103,96,108,103,94,95,104,92,104,94,96,100,105,111,108,106,101,99,98,113,104,98,98,113,104,89,95,119,105,95,89,105,97,109,100,102,114,105,98,111,102,94,99,101,87,109,91,105,91,108,100,111,117,85,105,98,109,99,89,95,95,97,101,115,100,98,106,96,112,103,101,94,109,99,108,86,106,104,95,105,112,109,95,94,108,92,103,106,90,97,115,93,115,108,95,96,101,105,95,89,106,114,105,105,105,91,95,108,110,89,99,96,113,104,100,98,108,110,86,91,93,90,91,100,102,110,99,99,105,127,104,98,98,103,109,105,92,90,100,110,96,98,102,108,97,100,105,98,98,98,95,114,104,99,125,78,105,98,101,107,100,105,109,111,98,106,99,96,94,105,105,105,107,88,80,111,108,94,113,106,104,101,100,93,114,105,101,111,110,89,108,108,98,99,93,109,104,101,100,108,105,104,104,96,98,95,99,97,92,114,100,109,90,106,99,99,113,93,100,102,101,107,99,92,101,101,104,105,80,100,103,88,104,94,96,109,101,100,107,100,102,109,85,105,99,95,100,110,108,107,104,105,104,88,101,107,90,100,105,103,102,108,105,104,99,109,101,94,98,120,115,104,108,104,100,116,98,77,96,82,108,83,62,106,98,124,85,102,95,105,111,87,78,95,99,97,114,105,99,104,99,106,99,95,104,82,102,96,100,101,108,102,106,103,106,92,94,93,98,104,104,106,109,102,103,91,118,103,104,105,109,106,104,91,105,92,99,110,99,120,92,97,113,105,88,94,103,108,99,104,100,95,107,91,116,105,95,102,104,101,98,116,99,111,102,111,106,105,101,96,105,101,110,106,105,103,89,105,94,106,88,104,102,107,107,92,97,100,91,114,99,105,101,94,103,98,97,107,93,98,96,112,101,101,96,99,100,98,105,95,90,102,110,104,91,97,109,107,105,101,118,88,98,91,97,87,113,99,106,98,100,101,95,107,100,89,108,108,98,108,91,96,100,104,92,106,108,104,113,92,115,107,100,110,99,111,96,109,105,94,108,100,84,103,111,122,82,95,94,109,108,112,97,85,108,88,99,115,108,101,100,96,101,97,92,94,99,98,93,101,107,109,117,97,97,103,99,98,118,101,106,117,102,106,90,92,94,90,91,100,97,90,99,102,95,110,101,100,103,97,100,97,104,88,98,96,100,105,103,120,102,108,96,95,102,106,98,105,92,113,91,100,94,93,101,82,100,111,108,98,98,108,108,72,109,103,101,96,116,91,96,100,107,103,100,102,96,96,114,98,98,117,98,106,98,95,105,107,101,100,87,104,100,106,113,104,114,98,101,117,103,94,99,99,121,108,99,84,98,107,100,108,105,108,103,107,84,115,102,103,99,93,103,110,104,95,98,96,92,93,113,106,121,99,94,119,99,106,113,90,116,94,110,116,102,105,96,100,110,93,104,95,91,101,103,91,98,88,103,98,96,108,104,100,80,97,87,93,101,97,106,108,97,94,107,109,101,108,100,83,96,105,106,116,112,96,102,92,95,99,104,109,110,102,83,95,100,89,86,104,108,112,87,94,64,93,89,108,100,96,89,107,99,106,103,104,94,96,118,100,109,92,113,83,106,94,107,112,106,101,97,103,105,108,97,113,95,103,100,106,100,86,106,94,101,88,108,89,98,98,104,102,108,99,89,96,94,73,94,105,105,105,93,76,105,90,115,99,88,86,102,92,96,100,92,98,105,111,95,93,94,93,104,111,98,110,87,98,98,99,95,99,106,91,97,97,98,104,102,100,93,109,102,102,85,100,91,95,105,94,86,94,95,93,103,111,103,97,104,104,108,97,99,105,98,105,98,111,96,109,106,109,93,99,96,97,89,93,81,102,112,103,92,113,103,98,90,107,95,107,89,103,95,71,105,111,112,109,88,99,101,96,102,98,113,103,105,94,98,94,82,107,113,99,100,105,108,104,108,104,105,99,106,93,109,96,111,111,97,99,100,104,111,97,108,106,92,99,103,99,102,99,95,97,110,87,117,98,97,101,107,94,98,85,105,110,118,109,103,109,90,101,106,98,94,85,105,99,99,112,98,118,95,102,99,104,100,72,114,98,103,108,100,109,102,106,109,100,98,100,114,93,114,96,97,124,113,102,105,89,91,94,109,89,99,111,112,96,104,99,106,105,104,92,103,105,98,108,118,100,119,104,108,109,105,105,102,91,83,109,95,103,109,92,104,103,98,111,99,90,105,95,98,94,111,107,93,104,95,98,100,104,103,112,96,98,100,102,100,100,101,98,96,90,92,99,112,99,98,96,97,106,114,97,94,96,87,99,109,98,98,101,101,104,112,114,105,99,107,111,88,106,87,98,90,99,111,112,94,101,89,93,91,96,100,107,97,96,88,93,95,104,100,106,91,105,100,111,105,95,98,109,110,109,94,104,93,92,99,95,99,98,111,93,91,132,104,121,92,112,85,106,93,104,111,100,105,99,96,114,94,92,107,115,101,94,108,115,90,123,95,102,89,102,106,91,90,109,96,94,99,106,96,101,110,94,104,106,93,108,79,82,99,100,93,107,98,109,98,66,96,96,91,101,103,97,102,112,93,91,106,107,95,91,95,116,98,103,94,96,91,91,105,106,98,92,116,105,96,93,105,98,91,100,107,97,94,99,104,104,109,106,106,88,100,99,103,109,101,100,107,96,102,97,106,93,105,108,104,97,91,97,86,93,129,98,97,101,108,99,83,104,102,96,112,96,100,100,100,99,105,117,98,99,101,111,101,99,91,123,105,117,102,105,119,94,96,94,98,101,106,105,98,103,107,86,95,102,112,99,102,91,103,102,104,103,100,103,104,104,97,92,104,103,99,99,87,113,91,112,103,97,98,100,116,104,99,112,103,107,99,92,107,98,104,104,91,93,100,92,94,103,110,95,102,115,102,100,112,102,101,93,108,80,91,104,100,92,113,105,95,92,92,95,103,105,104,87,98,99,102,97,91,100,108,98,95,94,87,127,101,89,111,109,109,90,111,102,102,93,98,99,103,101,103,108,101,100,93,99,110,94,109,97,93,99,108,104,102,96,117,112,114,92,93,92,94,105,93,92,91,109,93,88,106,97,88,109,107,95,94,100,101,95,96,98,103,100,92,100,101,108,88,96,101,112,107,91,97,96,99,96,99,94,113,97,103,102,101,96,85,103,91,88,97,96,102,105,93,102,109,103,104,102,105,97,109,92,99,99,111,105,91,108,100,102,65,100,93,106,109,108,96,115,87,100,108,103,98,112,97,94,83,90,89,100,100,94,116,99,89,120,107,97,88,105,104,105,95,110,85,105,65,97,103,108,112,105,95,101,97,104,109,97,100,99,91,113,108,96,106,102,99,97,96,106,103,102,98,99,96,104,106,100,110,94,108,111,100,104,110,114,100,98,108,115,115,88,95,98,103,110,105,91,97,93,102,104,85,95,105,113,120,109,98,95,99,99,95,99,98,98,103,107,107,102,101,109,98,94,102,100,97,101,103,93,98,88,100,94,102,97,111,106,101,115,114,97,109,100,86,102,100,101,100,91,120,99,111,109,101,98,113,105,105,94,101,105,100,103,107,113,98,96,112,107,104,106,116,111,91,99,92,104,99,89,115,106,96,99,95,106,76,100,103,98,103,88,107,93,99,96,107,113,106,99,84,105,104,99,102,104,93,93,109,100,113,117,109,81,76,91,101,100,112,106,82,95,109,105,99,99,84,89,97,105,99,98,108,95,107,96,92,102,98,96,114,110,86,96,104,105,81,94,116,113,104,109,103,88,92,96,98,102,99,97,103,106,87,110,106,97,92,107,104,100,109,96,102,92,102,100,105,96,99,102,92,113,91,112,104,105,101,104,100,98,84,93,101,118,95,108,98,101,110,101,98,113,104,111,102,105,100,100,98,111,107,94,88,105,94,93,102,97,96,99,105,95,91,86,102,87,95,95,97,100,110,100,106,99,94,116,83,92,100,101,98,94,106,85,107,95,91,106,92,101,100,96,100,99,102,127,102,92,97,94,106,90,104,97,104,103,95,92,105,102,106,100,96,111,84,99,92,92,94,91,101,88,91,87,89,95,94,116,93,88,95,105,81,93,94, +405.12497,106,104,76,109,95,105,98,105,102,102,95,92,96,90,115,99,88,108,102,99,117,96,94,100,96,88,97,104,102,100,98,102,90,97,99,98,102,103,100,104,92,89,95,101,91,101,91,99,105,103,106,97,107,95,108,95,104,106,91,93,98,102,106,94,98,118,97,81,97,111,115,105,101,102,101,104,100,95,87,99,102,93,93,100,97,105,105,100,108,105,102,97,79,107,103,91,99,96,96,101,109,110,89,98,103,99,94,100,99,100,98,93,96,90,91,107,101,97,109,102,98,92,105,99,114,94,110,87,103,100,98,101,129,105,107,106,98,109,94,107,102,100,94,94,104,91,99,104,97,95,89,105,103,102,100,95,96,96,100,90,96,101,98,110,102,91,101,95,100,118,110,94,105,77,95,94,99,101,93,115,97,95,101,105,99,89,90,90,96,80,92,100,101,104,98,95,103,105,93,100,88,91,94,98,93,100,96,95,93,106,114,98,112,95,106,105,110,101,84,96,99,90,104,100,98,121,96,102,110,98,103,92,99,110,106,107,104,110,105,107,93,101,113,101,100,87,101,106,108,112,92,103,98,99,96,103,100,91,101,96,106,98,96,109,98,92,113,96,96,100,98,105,103,100,101,98,109,109,100,98,95,102,105,101,83,96,94,97,103,105,103,92,99,98,108,105,99,98,121,98,103,101,94,109,114,106,102,101,102,115,96,104,98,101,95,91,96,99,85,111,97,95,104,90,95,83,90,87,112,91,90,102,108,97,109,88,97,101,97,103,86,97,107,103,96,104,92,117,96,111,109,89,103,105,105,103,97,108,106,110,99,89,102,77,119,95,104,105,100,100,100,100,102,104,114,97,103,100,114,113,100,90,96,100,100,95,99,114,105,94,118,91,104,87,99,102,96,94,78,102,92,98,98,96,100,85,99,97,105,104,90,101,105,110,101,103,91,94,104,98,105,107,99,106,105,92,99,89,113,105,99,105,94,111,95,97,94,114,109,100,97,93,96,102,90,104,101,95,100,108,92,98,104,107,117,102,99,93,109,92,100,106,101,103,98,106,105,92,102,96,91,98,98,94,89,124,93,106,103,103,96,107,112,97,82,103,105,85,104,96,108,108,95,96,100,102,94,106,114,90,101,96,103,95,93,104,97,122,110,93,93,109,101,105,99,107,117,99,105,106,95,96,105,103,94,109,108,105,98,104,98,107,92,101,82,96,106,95,103,124,104,107,92,99,84,116,99,100,92,93,96,102,90,109,87,91,94,109,91,101,92,97,104,92,94,92,102,103,110,107,105,103,101,93,106,113,98,98,106,95,109,93,91,91,100,113,103,85,109,84,106,105,98,105,71,106,110,99,114,111,94,97,104,101,105,100,99,112,95,101,88,107,97,91,99,99,106,90,106,101,90,98,102,106,99,94,96,99,102,114,100,109,92,101,102,105,96,93,105,110,100,101,100,102,109,94,97,106,98,105,98,122,100,88,101,116,112,104,94,99,88,105,110,90,98,107,95,91,102,90,85,106,102,97,105,104,95,104,102,101,111,103,98,104,103,96,105,101,96,100,93,102,103,94,110,101,114,76,85,91,101,104,98,92,90,97,112,100,89,104,109,105,104,113,95,101,92,98,99,101,103,74,95,102,91,98,107,101,103,105,96,96,95,98,102,89,113,102,106,109,117,96,100,98,98,96,106,104,95,94,98,97,100,96,103,104,111,96,98,102,104,101,103,98,101,104,98,104,93,99,94,107,98,92,99,101,114,102,109,100,109,98,108,112,102,103,101,98,102,110,118,122,101,98,108,108,100,101,99,103,102,103,92,99,98,105,94,120,104,103,117,100,94,91,99,102,107,101,97,104,107,96,91,105,107,97,102,98,104,104,108,106,99,94,93,102,109,105,107,98,96,109,103,100,94,91,86,106,104,107,101,106,102,101,100,100,101,100,101,105,111,94,105,97,99,101,105,95,115,102,84,76,99,97,96,95,104,110,115,89,122,94,106,94,93,85,110,110,109,100,100,96,103,113,102,89,95,105,103,96,104,96,108,114,96,105,99,113,83,100,95,92,103,90,97,108,111,101,103,98,100,99,74,109,99,87,78,109,97,98,91,108,95,109,98,91,107,96,94,104,104,88,95,117,99,83,83,100,82,103,100,109,105,108,113,114,104,101,94,103,112,109,89,92,98,87,84,96,98,120,91,99,101,101,109,105,101,84,105,101,108,113,103,112,94,94,86,101,109,93,95,100,102,79,97,121,100,102,98,112,103,101,112,92,107,97,106,108,102,98,99,96,101,83,101,101,90,111,98,98,123,102,88,92,104,95,91,98,116,113,96,103,95,86,96,91,99,100,100,100,101,100,108,92,99,106,99,97,93,105,103,103,108,99,96,91,92,101,118,92,92,110,108,100,93,87,99,84,102,103,103,99,98,96,87,102,107,91,89,86,111,93,111,111,104,91,110,106,121,76,100,113,106,83,90,103,100,113,103,107,117,92,101,94,103,105,98,88,97,99,101,114,91,95,132,96,112,93,93,69,83,109,105,105,86,103,100,91,103,109,103,100,100,97,107,108,96,109,90,84,105,104,99,103,105,78,102,110,101,91,111,102,110,96,102,89,100,98,95,105,112,87,101,100,108,112,105,93,102,98,97,93,95,105,101,96,103,89,100,97,95,93,97,98,97,113,92,96,100,103,96,102,103,88,100,102,109,98,103,109,96,107,94,91,97,100,102,100,104,103,100,88,98,92,102,88,101,105,93,105,107,106,84,100,105,109,98,85,113,94,105,98,104,113,102,96,91,96,102,103,114,105,110,94,84,93,98,115,101,118,94,97,103,97,100,93,98,111,98,105,109,98,108,96,100,98,97,98,92,104,101,101,100,115,93,104,101,88,100,98,105,110,101,101,107,92,93,91,102,119,100,94,98,102,95,97,100,91,100,97,103,104,102,100,99,87,113,103,106,105,101,102,97,103,111,105,89,99,94,106,116,100,105,98,101,95,91,94,93,94,87,104,98,93,108,106,101,92,100,91,102,111,82,98,112,102,90,99,95,99,98,98,96,116,101,102,101,106,97,108,109,99,103,108,106,108,101,105,107,127,108,101,95,104,103,103,99,104,104,95,105,94,94,92,95,111,109,91,96,92,100,99,105,109,105,113,101,96,94,102,102,99,89,97,87,109,101,113,100,104,108,100,111,103,73,110,95,103,98,108,94,109,103,94,99,99,111,102,109,104,99,105,90,95,98,100,100,107,102,99,97,107,100,97,92,102,104,112,104,100,98,101,109,95,101,105,98,96,100,101,112,97,95,98,98,104,98,103,83,87,101,106,93,91,109,112,100,105,104,101,99,102,116,103,85,108,94,95,87,104,89,98,106,100,94,98,102,105,99,109,75,103,100,106,111,89,98,92,113,93,99,96,103,83,99,98,98,71,98,96,95,105,102,97,116,93,91,102,95,103,105,102,105,104,93,106,99,99,103,88,104,101,108,104,104,106,107,79,100,89,106,110,107,94,98,95,91,109,89,107,94,93,102,95,78,115,94,79,103,103,105,101,96,111,112,94,89,98,102,93,98,99,91,93,98,89,98,93,104,111,98,105,95,97,93,97,100,96,109,107,98,96,98,111,83,98,104,98,99,91,108,103,102,105,108,99,95,98,94,102,116,107,101,103,91,92,105,98,99,99,86,101,110,98,109,100,98,113,101,91,88,104,86,91,103,104,95,102,94,88,100,97,99,104,99,90,101,110,99,87,100,98,100,87,101,105,123,104,98,110,100,103,107,94,110,98,102,99,101,115,109,99,104,98,113,105,104,99,101,115,97,102,105,101,104,93,104,99,98,88,88,107,93,62,106,105,96,86,99,107,99,101,95,105,99,110,105,76,80,113,95,76,104,113,100,105,113,99,120,87,94,107,99,99,96,95,102,98,90,100,104,98,94,112,108,94,111,102,85,94,110,99,98,96,97,97,101,70,105,107,103,99,95,102,99,113,102,106,106,111,112,108,99,105,98,94,105,94,87,104,101,105,101,95,102,112,100,102,109,104,103,113,90,105,99,106,99,113,99,95,99,106,110,113,113,107,108,99,91,86,100,88,106,106,99,109,103,93,96,109,104,101,89,102,87,105,96,107,107,97,97,88,98,109,104,90,98,98,97,109,91,96,110,105,109,102,85,104,99,103,102,106,101,107,97,105,117,98,100,102,98,84,104,84,100,103,108,100,105,94,94,110,106,104,95,92,97,93,101,91,107,102,108,96,94,115,103,93,101,107,100,92,124,102,106,102,104,108,98,106,105,107,111,103,128,111,108,117,95,105,116,102,105,100,100,98,90,100,101,110,106,92,98,102,102,109,107,92,106,99,96,96,93,109,106,104,98,94,107,93,105,95,94,108,102,98,87,105,99,95,111,109,96,99,102,86,92,104,94,116,90,108,96,92,99,99,96,100,92,94,94,63,101,75,99,80,90,91,107,98,94,102,97,91,90,98,102,92,105,103,94,90,107,98,92,102,92,103,95,113,109,91,97,95,101,98,106,97,111,103,103,115,104,102,102,112,110,105,90,100,99,98,97,98,101,105,101,99,95,115,109,102,99,97,100,111,120,112,80,100,97,100,107,107,106,93,97,103,101,103,95,95,101,104,103,92,97,103,91,91,84,105,96,88,91,107,118,100,102,91,92,102,100,100,116,96,101,97,99,88,98,108,97,110,94,106,85,91,104,108,94,102,91,108,101,71,119,101,102,95,109,99,98,98,99,104,103,115,94,99,113,98,95,97,99,98,106,106,102,101,88,94,87,89,98,103,99,95,103,104,97,99,89,112,101,106,107,102,108,85,110,110,92,99,102,98,84,104,87,94,107,100,97,100,115,82,99,115,90,103, +405.26514,110,93,54,90,91,105,98,88,101,90,92,90,97,67,99,96,98,116,118,109,103,111,99,109,99,98,110,106,91,103,87,94,90,102,96,100,92,102,102,105,96,98,95,93,88,92,75,102,94,102,99,95,97,96,100,86,92,105,105,99,82,111,104,100,94,109,97,86,90,98,109,106,107,96,102,108,74,103,88,116,93,111,99,103,107,77,99,101,107,96,106,95,100,102,94,106,104,101,98,97,99,96,90,93,108,95,95,99,103,97,87,89,94,95,94,104,92,106,90,96,98,81,103,99,103,103,101,99,95,107,104,109,98,103,92,107,99,90,96,105,102,97,109,105,93,98,108,95,96,96,95,91,111,85,95,106,94,109,95,104,100,104,110,103,105,103,90,97,104,93,104,96,101,109,117,109,102,104,104,105,107,87,104,99,97,102,94,75,99,105,90,98,124,96,94,106,104,103,101,96,96,88,95,100,97,98,110,99,109,97,106,103,100,108,98,101,98,101,105,101,83,107,91,108,94,104,94,96,102,101,104,95,87,99,94,96,107,99,103,100,108,105,109,94,98,99,113,110,97,104,92,105,97,105,101,102,93,91,93,104,94,110,103,96,99,108,91,100,101,85,100,109,101,91,95,99,87,100,99,100,105,100,100,104,96,95,81,121,98,117,102,103,106,99,105,91,102,85,109,106,94,103,107,95,102,108,100,107,93,99,93,105,105,107,91,103,105,105,101,99,93,97,101,100,97,92,97,99,103,114,99,94,98,93,93,102,97,99,103,108,103,94,97,94,95,102,103,96,101,97,94,105,103,96,106,98,97,99,106,93,102,109,105,94,99,110,113,99,95,117,99,98,98,107,107,101,122,93,101,101,104,101,93,91,101,101,96,103,104,87,106,95,106,101,91,96,91,108,98,104,109,100,95,99,92,98,101,102,117,89,111,107,108,108,98,101,105,102,105,95,107,90,105,102,84,96,109,87,86,92,92,100,102,121,104,103,96,115,99,100,89,102,104,108,95,98,103,100,93,111,102,106,97,104,120,100,104,107,110,100,100,100,105,116,98,101,94,121,99,95,106,112,99,98,109,91,96,96,108,101,101,101,110,101,100,87,110,97,91,99,106,100,105,93,100,105,97,91,100,94,115,80,100,114,97,95,104,96,100,104,92,100,112,112,101,101,96,85,91,98,95,99,106,115,104,96,107,96,87,99,95,92,77,91,100,100,106,99,94,104,105,92,105,88,103,108,103,105,105,101,126,100,101,102,104,88,102,99,110,102,111,86,99,95,96,86,100,87,117,107,96,106,108,101,108,100,116,102,108,104,90,94,105,98,109,100,112,101,99,102,106,106,106,113,113,118,102,105,107,102,93,101,98,89,103,62,108,102,95,107,107,98,94,100,105,92,109,105,103,101,92,106,97,90,105,95,105,111,106,104,100,104,107,102,94,98,95,97,104,90,91,104,109,95,94,101,113,102,110,102,89,102,101,99,99,117,105,100,112,100,107,92,98,99,83,101,88,93,110,109,103,98,102,102,103,102,101,109,112,94,107,106,91,94,92,101,112,111,99,95,107,101,108,104,112,109,105,94,114,95,97,98,118,104,95,104,95,102,90,98,96,110,92,88,85,71,81,100,99,99,102,96,104,109,78,90,100,105,98,120,106,111,96,87,87,110,104,98,109,95,110,106,104,100,104,108,99,81,97,98,65,109,96,100,104,102,106,101,99,94,110,98,92,97,97,109,99,95,103,99,112,94,106,80,103,94,95,97,99,96,100,97,103,99,87,97,102,104,98,106,106,104,101,107,99,100,104,100,107,113,101,106,82,96,101,109,97,120,110,96,82,96,103,99,120,98,99,100,113,98,100,94,97,95,96,100,95,113,108,100,100,99,110,102,92,102,93,93,104,105,103,105,100,97,94,100,94,101,96,91,126,93,104,74,104,102,106,96,102,99,105,102,84,94,107,102,101,102,107,100,94,99,111,96,90,103,109,101,104,108,92,101,94,84,87,111,102,104,94,100,116,101,96,119,98,91,100,104,107,100,103,100,104,100,109,93,107,94,99,98,96,100,101,112,102,97,106,98,100,102,95,122,99,106,92,102,98,98,96,87,94,121,107,103,86,99,101,103,94,95,102,119,96,103,109,98,99,112,104,99,97,112,88,106,117,100,120,104,104,105,105,98,101,105,101,100,102,83,109,96,92,105,83,98,96,95,108,91,92,102,90,99,103,96,89,112,86,77,88,105,102,99,79,108,105,109,98,99,95,103,106,97,98,93,99,109,68,107,110,110,101,101,101,110,92,100,100,87,105,98,97,105,111,114,101,101,111,92,100,106,109,109,109,90,104,97,92,113,101,86,93,105,95,91,105,88,107,92,103,107,112,95,104,93,106,110,95,104,103,99,86,93,105,96,105,89,100,92,106,93,86,83,104,93,99,96,105,104,79,98,107,87,94,107,105,96,109,106,113,117,99,97,116,88,85,102,96,104,112,107,106,103,104,101,98,98,81,95,98,104,79,132,98,117,105,96,88,100,100,96,100,93,110,102,101,104,100,107,103,93,101,94,100,99,109,98,98,99,105,106,112,92,92,117,99,95,92,109,91,87,94,107,109,102,98,105,94,102,98,99,101,91,104,96,102,109,109,91,95,105,112,97,110,100,96,94,96,94,107,118,85,102,95,112,104,104,107,95,102,115,101,101,114,94,110,105,101,99,99,94,103,116,104,102,89,108,96,105,109,103,110,109,101,97,107,91,104,110,100,97,106,106,103,98,105,99,98,89,109,108,105,108,101,103,112,102,116,110,96,117,99,109,99,94,99,105,91,99,95,97,100,99,96,112,92,98,103,112,104,102,104,86,101,105,80,99,96,92,83,111,97,110,102,103,109,113,103,91,108,106,111,110,108,98,105,107,79,105,103,96,100,97,99,99,105,95,97,105,96,104,102,110,87,103,105,95,100,102,107,90,89,111,105,82,106,98,93,105,106,91,110,89,104,99,106,101,97,100,107,108,94,100,99,104,103,111,99,95,104,97,92,104,83,88,95,83,112,97,109,113,113,107,107,112,95,88,101,108,105,101,99,100,99,105,94,106,104,91,99,99,87,93,107,95,101,97,102,97,102,98,100,96,96,101,113,95,114,100,97,104,105,109,96,89,106,105,98,90,112,106,107,100,90,87,111,72,105,110,99,93,97,99,104,103,98,103,98,84,96,106,102,120,92,95,109,92,96,100,103,93,107,98,109,113,99,90,92,101,109,97,97,131,111,95,99,94,95,106,118,98,112,99,105,122,97,112,108,97,101,98,89,102,99,99,110,105,91,100,101,105,91,105,92,104,96,104,101,103,109,87,102,98,95,105,91,101,103,94,87,87,96,97,85,111,96,101,91,95,92,97,101,97,90,106,101,91,97,93,106,107,108,91,102,98,99,97,91,112,101,99,99,97,89,100,89,106,95,98,104,97,119,95,109,93,94,92,90,104,101,98,96,96,96,94,109,107,94,96,94,89,97,100,109,104,105,122,117,105,98,100,84,95,106,104,91,112,99,98,109,97,96,99,97,96,106,100,102,99,102,100,97,92,94,99,87,106,95,97,108,102,97,98,112,120,103,102,107,100,99,101,102,72,95,96,101,97,101,77,82,92,98,107,102,112,97,117,99,101,102,93,104,99,100,104,98,91,101,101,102,98,100,92,102,115,97,110,106,103,105,99,96,94,90,99,106,105,107,77,89,95,89,95,92,96,86,102,110,98,104,101,93,107,103,89,95,87,100,95,89,109,93,71,100,96,123,91,108,101,97,74,106,95,102,92,95,93,105,97,101,100,85,97,104,106,101,100,105,92,88,92,107,105,101,99,100,104,94,91,69,102,104,96,101,112,106,88,107,99,84,104,95,105,108,91,95,104,100,96,104,109,97,96,105,90,95,96,102,116,101,96,99,100,98,113,100,104,102,110,95,111,106,115,91,102,98,104,94,99,82,94,106,102,82,88,106,96,96,96,108,112,99,104,108,91,102,102,112,91,96,100,106,104,105,96,103,104,96,95,109,97,107,107,97,95,96,95,88,98,97,103,109,88,115,105,107,116,96,101,98,104,117,92,98,108,105,102,102,108,93,95,101,97,104,104,102,94,86,105,96,100,99,94,111,105,95,104,108,95,110,89,106,108,109,100,98,125,94,107,111,106,100,80,109,106,102,99,96,99,98,114,96,102,102,92,98,107,117,100,108,98,99,98,107,98,100,104,87,105,103,102,98,99,113,100,95,101,105,91,104,93,98,95,93,103,109,100,98,107,91,102,102,101,103,100,109,76,101,104,100,102,105,91,97,120,101,94,104,96,91,102,100,103,106,108,93,100,98,78,93,91,95,112,112,87,96,107,106,93,100,100,91,94,106,97,98,101,85,97,104,101,75,104,90,94,96,101,87,91,91,107,100,113,99,107,113,93,95,90,98,92,94,92,104,98,99,101,96,95,88,98,104,107,103,101,101,97,91,106,97,109,106,95,92,106,103,95,99,103,105,114,96,102,104,103,108,90,102,99,95,69,110,72,112,103,77,99,137,96,100,92,98,96,95,110,108,101,97,102,100,83,100,100,92,104,94,105,98,87,103,80,102,93,99,90,98,98,94,109,101,105,88,98,99,97,96,97,100,101,98,96,103,98,114,104,103,92,98,108,105,98,98,105,107,99,99,75,103,89,99,92,99,110,99,88,78,94,103,89,112,98,96,88,103,97,91,108,106,98,95,99,94,108,89,102,109,113,106,103,96,97,92,93,107,97,92,106,91,92,104,92,95,104,74,100,109,95,91,70,95,104,96,96,113,94,88,107,94,84,94,91,104,105,95,71,92,102,90,103,96,113,102,95,94,78,101,103,100,91,90,93, +405.40527,105,90,87,96,101,108,114,92,94,110,91,97,106,91,104,96,99,93,105,109,104,98,111,98,90,101,100,89,102,90,89,86,98,103,108,94,107,83,101,98,89,97,112,87,99,93,100,95,88,115,101,100,93,99,91,99,105,113,107,99,91,99,90,102,98,109,88,100,109,81,109,100,99,98,105,95,95,97,95,99,91,111,108,102,140,89,104,98,106,105,106,83,90,104,103,92,103,98,99,91,93,98,96,95,100,100,103,118,104,90,106,100,101,103,100,100,92,93,112,90,106,102,96,100,117,103,95,87,105,106,110,96,89,100,107,105,101,105,94,88,98,110,95,95,106,104,91,102,104,111,100,95,109,90,98,95,77,98,99,102,101,97,106,105,99,100,93,113,101,93,110,94,91,98,100,97,104,88,95,93,99,101,97,99,101,103,98,97,106,105,97,103,97,99,94,96,96,91,99,105,101,100,105,110,103,109,83,109,99,106,102,99,103,108,99,99,98,112,93,86,91,105,98,97,93,100,101,94,94,109,103,102,104,109,98,104,118,97,107,92,104,100,108,97,91,100,99,98,98,103,106,105,97,107,106,103,94,105,96,97,94,102,114,96,93,91,101,105,98,91,102,71,104,118,100,85,108,107,90,91,104,86,92,105,95,98,105,104,69,95,100,90,104,111,102,103,108,99,100,98,99,99,105,123,94,106,110,100,107,93,94,110,110,107,100,89,102,104,103,105,104,105,94,109,112,79,115,76,106,112,99,102,103,115,119,103,92,108,101,95,105,105,97,79,106,117,93,96,106,116,85,103,99,92,96,103,115,106,83,93,100,95,97,92,108,95,106,96,98,98,111,97,102,99,91,104,91,102,101,100,109,99,110,90,98,95,123,91,109,99,94,100,99,105,105,86,90,110,102,86,98,82,99,94,101,99,97,101,104,98,89,81,100,106,101,97,104,106,98,105,92,99,96,98,104,95,92,100,97,97,95,69,102,97,103,104,94,114,108,101,87,96,95,94,83,91,88,99,102,94,93,102,98,100,104,94,108,100,105,89,97,114,107,107,102,103,104,102,115,98,103,98,103,106,99,91,100,106,103,97,98,104,103,95,86,101,97,91,99,98,97,101,96,110,101,95,91,109,98,91,103,99,104,108,92,106,96,101,98,100,100,104,101,104,104,100,92,96,107,102,103,94,93,105,94,100,102,96,99,95,103,99,102,104,94,97,98,112,104,107,94,111,86,88,94,90,109,106,90,87,93,103,95,104,100,96,106,93,100,97,102,109,98,125,102,91,122,108,93,100,93,91,96,103,102,119,102,102,106,99,100,125,97,99,94,92,99,96,87,93,98,100,103,100,92,106,94,105,107,108,107,99,99,99,95,97,103,93,97,96,94,108,109,99,108,111,97,101,105,108,98,90,99,90,100,97,102,107,110,106,97,105,106,101,90,96,102,99,92,114,106,116,98,94,105,95,104,91,94,101,99,95,102,106,88,106,106,101,101,116,94,100,106,91,101,101,112,104,106,111,91,110,114,101,95,111,96,118,106,101,104,100,99,79,87,102,121,96,106,105,107,93,91,102,106,113,111,101,79,104,100,91,106,95,91,101,106,101,96,99,101,97,99,101,92,104,89,106,101,103,100,99,92,105,85,98,99,91,91,100,115,98,120,93,99,61,96,102,113,100,101,93,95,91,102,75,97,110,99,86,107,92,97,103,116,125,100,110,95,109,91,101,100,95,92,102,87,94,111,100,114,100,98,95,97,96,97,95,107,81,100,109,94,101,99,109,105,106,74,115,98,102,97,86,99,102,109,104,96,97,97,96,90,92,103,107,103,107,106,99,108,101,107,92,107,94,100,104,99,103,99,109,97,108,108,100,99,99,107,99,110,97,91,98,92,110,103,91,104,107,98,109,105,107,90,99,94,101,107,96,100,99,114,111,95,106,97,95,109,104,101,98,68,108,100,85,83,100,109,103,109,101,104,92,113,96,94,98,101,93,106,97,107,102,101,99,94,114,105,91,93,102,92,103,102,91,100,101,109,95,102,105,93,94,98,95,103,92,93,95,95,109,101,102,103,106,111,92,103,94,106,83,101,87,92,92,102,101,104,99,100,110,100,100,82,69,88,86,95,118,90,97,104,107,104,99,101,107,98,93,74,92,109,99,112,114,107,105,90,108,106,96,104,97,105,76,89,97,93,101,95,96,104,104,100,99,101,102,101,104,111,100,101,95,105,98,90,99,96,96,103,130,107,75,100,95,95,91,95,107,99,111,99,94,77,99,90,86,114,82,100,98,100,95,96,105,94,105,107,94,100,91,105,110,98,87,105,102,93,101,98,100,101,94,111,100,99,90,110,97,104,102,98,94,97,102,125,93,103,95,100,89,95,95,93,100,94,97,85,102,109,109,106,95,100,96,96,103,95,96,91,108,102,94,109,106,92,108,96,106,96,92,93,104,94,104,87,95,109,112,106,104,100,126,94,104,90,105,105,104,117,98,104,99,104,96,95,105,111,111,96,103,94,108,100,97,99,96,96,90,110,108,88,100,115,104,113,100,97,104,101,107,99,99,97,98,106,96,94,100,111,98,95,104,100,95,102,95,104,87,94,90,111,68,105,106,105,95,104,100,106,102,100,91,99,98,104,100,107,97,112,96,95,100,107,98,116,103,110,103,93,106,104,82,99,102,108,93,95,101,87,109,100,104,102,109,101,97,96,66,101,109,105,91,97,110,103,122,106,89,90,105,109,109,109,110,97,107,102,65,109,99,104,99,105,94,109,105,109,94,116,99,113,104,91,105,110,94,98,112,110,100,103,90,104,95,109,110,100,99,102,111,101,99,103,99,93,86,98,108,101,101,107,110,106,83,99,102,105,106,96,103,106,108,103,98,99,102,97,102,109,98,107,101,116,108,103,104,110,102,102,91,91,101,103,99,102,92,91,99,107,95,95,110,115,100,105,97,113,103,108,105,103,104,106,97,95,93,108,95,99,102,100,109,109,100,110,98,91,98,99,102,97,111,107,84,99,109,99,92,95,100,103,94,98,106,110,100,93,100,109,97,98,104,66,106,100,98,103,99,104,99,97,88,94,96,93,112,105,103,94,103,93,103,100,100,95,113,87,99,100,93,106,114,96,117,98,99,106,98,102,104,105,101,112,102,104,95,102,110,101,103,104,100,88,97,101,100,98,99,102,94,105,88,109,96,96,101,90,107,87,100,107,103,100,96,97,94,113,113,103,104,109,115,101,105,95,119,106,93,97,97,94,108,101,98,106,91,99,87,97,89,120,103,91,108,110,94,94,92,100,103,115,110,110,95,101,92,111,107,96,107,103,98,90,92,98,109,91,92,97,106,114,101,95,110,94,104,102,99,99,98,103,109,94,114,91,81,96,97,99,96,102,102,92,99,103,101,112,99,104,106,93,95,105,101,99,113,105,102,107,116,95,88,99,108,108,95,74,101,108,83,88,106,127,106,103,114,97,100,101,97,102,110,95,109,101,103,113,95,106,95,100,114,107,103,104,109,99,94,105,107,107,111,103,105,97,109,103,101,111,104,102,104,99,98,102,115,103,110,97,93,108,106,110,104,98,95,95,104,103,100,99,111,107,92,118,106,97,112,102,102,98,100,99,101,102,89,105,104,110,96,106,108,94,97,101,103,94,91,95,109,93,97,89,97,98,95,111,99,104,101,106,90,92,102,106,105,101,99,101,98,98,96,100,87,115,105,90,98,102,100,108,113,103,109,96,106,112,107,102,91,114,102,115,112,106,105,107,100,98,101,101,101,102,94,106,100,100,94,101,104,103,101,109,112,106,115,100,104,95,105,100,89,95,107,102,85,109,97,88,104,89,107,106,96,98,93,103,105,95,105,99,97,95,109,96,101,100,93,96,108,107,116,117,100,90,97,100,96,105,101,96,101,106,112,113,103,113,97,94,102,83,102,100,89,117,107,95,101,90,104,102,109,108,111,101,104,93,108,104,108,108,114,104,97,114,113,94,109,99,102,100,104,110,105,107,94,111,111,111,100,103,104,99,110,102,106,109,130,96,105,112,100,88,91,95,97,116,116,100,106,94,105,105,99,122,109,96,105,86,100,90,110,100,101,113,99,101,116,95,100,95,103,109,100,105,97,104,101,92,100,117,101,109,106,102,91,100,100,103,106,92,104,101,105,99,102,109,101,111,99,96,109,135,104,101,105,105,113,109,104,114,108,97,104,103,95,88,105,101,96,98,95,104,105,104,99,99,102,101,99,103,101,110,109,108,114,104,101,103,112,107,114,109,95,101,98,91,86,100,101,104,112,100,105,98,120,96,100,91,106,112,105,94,105,100,102,96,107,102,101,103,102,91,93,105,102,106,104,106,93,95,105,105,106,103,91,108,100,93,96,93,95,98,99,98,96,102,110,105,104,97,104,93,89,89,94,90,99,96,118,110,108,103,104,116,94,105,106,102,103,112,98,92,104,110,103,104,102,90,91,85,96,86,101,91,109,93,92,97,100,101,102,97,107,98,115,100,104,101,111,104,111,95,97,102,96,101,101,90,113,105,99,98,92,115,100,89,90,96,102,114,107,100,73,96,84,104,113,97,115,100,112,98,112,87,92,109,98,99,105,101,88,110,106,91,99,95,88,100,85,104,102,103,102,88,97,96,88,97,92,98,106,99,105,108,97,78,99,89,105,110,109,103,99,108,96,100,97,99,103,100,102,102,100,102,95,102,103,106,102,108,95,96,70,106,96,91,95,97,112,94,95,104,122,101,98,98,105,109,110,108,104,100,105,118,76,94,101,89,87,107,108,102,101,96,95,90,101,107,104,90,107,96,105,89,94,99,90,102,111,105,104,103,98,101,99,90,93,105,101,99,106,97,90,99,100,102,91, +405.54544,106,99,102,90,80,100,94,105,94,89,92,109,103,102,109,91,92,108,83,105,109,90,105,101,105,107,94,103,104,117,100,88,106,125,90,88,95,96,104,111,96,104,96,95,97,109,98,100,74,118,113,92,112,97,114,88,100,102,102,100,106,103,98,100,103,101,94,91,111,93,100,99,101,113,86,104,94,91,94,100,79,100,102,117,103,106,95,89,97,95,101,99,102,102,105,94,97,96,101,100,119,112,97,109,106,99,103,104,88,97,90,102,86,101,103,84,94,102,98,110,100,100,100,85,100,99,99,102,106,90,101,104,96,100,122,104,94,97,96,96,96,108,98,110,87,100,100,105,104,113,105,103,102,96,107,102,100,99,97,94,103,103,106,89,99,96,101,96,99,95,102,111,96,105,104,97,96,95,101,106,94,118,99,106,82,97,99,92,118,96,98,92,106,103,109,96,100,100,105,100,94,108,106,104,88,100,96,103,109,102,100,100,102,89,102,96,91,102,105,104,105,100,110,107,95,108,100,116,116,104,95,105,103,108,84,108,98,102,123,97,98,109,99,92,104,96,95,104,103,109,94,102,107,94,99,109,106,95,100,106,99,91,104,96,103,100,100,89,96,90,95,96,108,99,108,90,92,106,94,105,100,97,97,100,111,93,104,103,98,101,94,109,109,100,97,104,113,100,107,114,111,104,112,99,93,101,116,99,103,105,102,104,102,104,107,114,86,106,96,95,92,93,104,105,110,103,95,100,109,113,104,86,102,80,88,100,105,87,90,113,108,89,96,117,98,103,110,100,105,111,104,91,110,96,95,104,84,117,106,105,100,94,95,105,103,100,110,104,109,75,110,99,100,91,93,106,95,99,103,95,114,100,99,104,103,93,95,99,113,84,98,97,98,91,107,96,90,105,96,98,94,111,102,104,103,105,99,100,104,108,95,94,105,94,101,96,98,96,108,103,89,94,108,104,113,85,95,95,97,109,95,104,113,98,97,95,100,101,92,97,110,99,102,97,91,94,105,90,105,110,95,101,95,96,106,116,95,100,109,101,93,94,115,89,94,107,93,99,98,88,102,109,98,107,94,96,92,104,86,94,108,96,99,100,107,117,107,99,124,92,91,103,110,99,102,108,94,117,92,95,100,98,113,110,105,96,102,92,109,109,95,91,110,113,104,108,97,104,96,89,86,97,99,100,96,97,114,102,100,87,101,104,101,105,100,96,99,102,101,101,91,109,100,108,103,92,83,99,98,100,100,98,95,101,101,113,104,104,95,116,106,99,93,101,105,100,92,89,96,90,105,103,113,96,104,102,95,93,106,110,92,87,64,97,99,99,105,94,102,103,108,113,105,110,106,101,98,94,104,99,104,104,97,96,104,99,102,109,104,100,125,109,108,114,105,107,104,93,105,112,109,101,107,109,105,109,93,101,99,102,109,100,107,106,95,101,88,97,95,107,120,107,100,94,93,83,116,99,104,104,87,87,98,105,107,110,105,106,106,103,111,117,108,104,84,100,96,103,92,104,108,105,98,96,103,94,110,93,87,101,99,115,104,102,97,100,96,99,106,110,93,104,119,94,96,117,108,88,104,96,106,99,104,102,93,101,99,99,98,102,90,103,100,99,102,109,106,107,109,93,101,105,95,98,102,97,95,99,101,101,97,102,101,94,91,101,98,103,109,111,97,105,96,105,109,103,104,93,101,93,111,111,94,101,101,103,99,91,116,87,87,106,91,73,95,103,92,108,97,95,95,111,106,103,102,98,92,111,104,99,91,95,99,110,97,102,104,103,103,99,104,90,106,109,99,94,87,95,96,98,95,100,98,105,101,100,102,99,96,102,100,91,104,101,108,98,93,108,104,105,105,101,100,101,103,110,98,107,91,102,92,103,102,101,104,96,106,116,98,113,94,100,110,98,91,100,98,96,99,107,102,95,112,118,102,104,102,100,87,108,112,94,109,95,107,105,91,90,103,102,93,106,95,100,100,75,101,100,102,88,102,98,99,100,106,107,97,94,101,96,107,96,86,109,78,103,101,107,113,100,103,99,118,91,110,92,93,96,90,111,101,85,95,102,102,100,105,105,84,102,85,98,117,98,113,97,99,101,110,90,103,101,110,106,99,105,115,114,105,97,108,108,101,105,115,111,101,104,118,101,103,91,102,99,101,110,100,107,121,96,106,99,106,105,115,104,95,94,94,98,109,109,99,94,100,111,95,100,87,105,118,117,100,100,100,114,96,103,95,105,87,99,109,104,98,98,101,106,107,102,96,108,105,106,107,93,107,98,89,101,89,111,89,103,98,104,105,105,109,105,109,118,89,98,103,97,85,117,105,108,101,96,101,87,94,95,99,105,102,108,108,104,90,91,102,110,132,99,114,109,97,116,104,105,100,101,96,95,101,94,83,106,108,105,114,98,102,104,101,109,87,104,95,105,99,104,104,102,112,108,95,100,92,103,102,102,93,100,104,98,97,103,87,91,83,125,94,85,102,102,93,92,108,94,98,65,104,97,94,103,100,99,105,103,101,98,98,108,91,104,95,99,99,91,102,92,99,104,100,98,92,101,97,97,101,96,102,93,103,100,91,106,104,107,98,88,75,89,101,93,105,101,109,107,99,103,100,109,106,101,109,87,103,94,105,95,97,70,105,104,95,99,103,105,99,102,103,100,94,105,97,96,97,128,117,84,113,108,103,95,99,95,102,105,102,106,101,97,97,123,96,115,104,105,98,91,126,101,105,100,72,100,99,101,111,79,102,102,94,91,99,95,69,110,95,97,88,84,90,98,110,100,99,86,103,100,97,99,89,103,92,94,106,98,101,91,102,102,102,101,93,96,110,114,104,95,102,97,95,101,103,85,125,109,100,89,105,109,97,114,109,103,92,104,100,83,104,100,99,107,88,96,104,102,107,91,100,93,106,97,98,102,121,85,105,116,103,104,99,120,100,93,97,105,95,100,91,90,124,94,96,108,95,87,105,95,99,95,100,95,106,108,92,95,97,107,116,93,110,83,95,103,100,94,103,96,103,98,107,99,96,95,89,105,97,101,105,103,98,105,97,124,90,102,105,91,110,105,88,104,108,117,94,93,96,94,97,99,115,104,123,93,95,104,95,104,99,102,105,101,98,100,102,97,121,105,98,90,104,105,97,88,104,107,106,103,116,98,103,116,104,79,92,102,102,105,94,107,121,93,105,105,110,102,97,107,95,103,101,98,106,79,102,88,99,96,90,81,101,98,101,115,100,114,116,124,92,91,100,94,105,102,104,106,96,90,99,107,96,98,105,99,110,98,99,89,105,96,97,99,102,106,91,103,103,118,90,99,99,104,105,99,103,113,108,102,109,126,104,95,90,110,110,102,102,99,100,97,105,99,113,94,95,101,103,102,102,106,101,86,104,111,96,96,97,96,108,100,104,93,101,106,106,102,108,98,104,91,105,92,99,98,90,97,96,116,105,96,90,96,96,81,100,84,99,113,102,107,98,104,98,115,103,99,108,100,105,102,109,93,106,102,90,105,105,109,97,112,91,100,99,103,96,107,110,99,95,95,79,107,105,109,105,99,107,103,111,104,107,111,100,93,98,96,108,96,106,99,100,95,96,105,101,89,108,86,104,95,89,108,91,76,106,107,109,109,100,98,101,100,104,93,102,106,100,103,99,90,104,104,107,96,110,106,98,100,102,96,99,103,94,117,112,102,92,103,108,101,98,96,105,119,107,101,103,81,94,99,103,102,107,97,101,86,97,104,117,109,99,113,106,95,104,106,93,95,104,96,101,96,72,95,106,107,96,90,104,107,102,95,108,105,83,99,91,112,108,97,103,115,93,103,95,104,99,102,79,102,102,101,106,101,114,106,117,98,98,104,113,101,106,112,93,106,99,100,108,103,88,101,102,97,89,101,98,113,88,102,98,100,109,94,96,107,93,109,101,100,113,94,104,106,104,101,83,102,94,105,87,100,100,109,96,97,102,104,110,104,98,97,111,104,102,91,95,97,99,99,103,107,95,98,104,94,112,101,98,92,94,110,94,112,96,96,111,106,95,113,94,95,115,95,93,95,99,97,100,111,94,95,76,100,103,113,97,95,97,105,96,114,97,90,112,110,99,100,108,93,104,97,105,104,95,116,100,101,113,104,111,95,98,112,95,102,115,120,108,97,103,79,97,108,110,101,106,88,87,102,101,115,102,99,107,100,71,95,109,105,86,109,101,100,101,91,111,94,80,93,94,88,94,98,108,104,94,94,93,85,119,105,105,105,117,104,96,96,96,79,100,108,105,108,112,102,106,95,97,103,97,106,100,102,103,94,102,105,99,94,96,100,89,107,102,107,97,99,107,110,110,102,100,100,101,98,97,94,98,99,95,103,104,103,102,102,88,94,117,95,110,98,102,95,100,99,96,111,85,99,101,113,111,79,97,103,88,98,106,98,90,104,91,111,116,104,125,92,101,95,104,97,100,94,106,113,109,91,91,113,109,110,94,114,94,101,93,108,105,108,106,102,90,100,96,108,98,93,101,99,105,94,101,92,102,91,103,91,113,109,102,96,99,103,102,101,98,96,102,104,98,69,108,83,123,104,92,105,103,99,98,103,99,103,91,102,109,91,105,118,109,91,105,107,117,102,97,93,101,105,104,104,98,120,105,105,109,89,103,103,112,91,87,98,76,96,105,101,102,92,91,103,94,104,107,100,109,102,93,110,104,94,97,106,91,80,99,63,64,89,103,101,107,99,99,93,99,99,95,72,97,103,104,104,104,102,98,101,92,91,97,107,103,110,102,89,102,95,92,108,91,105,97,100,103,101,102,105,111,96,96,110,101,101,87,78,112,103,85,98,104,101,100,92,102,97,93,95,97,110,98,95,98,107,96,93,114,107,105,94,118,96, +405.68558,117,96,103,91,98,105,109,99,88,97,89,95,95,93,101,114,94,97,109,108,94,102,102,104,101,102,98,91,106,105,93,80,94,101,110,89,92,98,100,107,105,99,97,93,95,103,97,114,104,100,107,106,106,97,113,97,88,102,100,94,103,112,98,108,103,108,99,102,103,97,107,108,87,115,89,104,100,104,106,110,99,73,103,105,104,94,87,114,97,110,110,96,115,116,113,87,97,87,80,105,111,100,101,95,104,108,99,104,103,104,105,92,114,96,101,97,93,106,109,103,100,96,89,98,104,114,116,89,97,113,95,102,94,101,104,104,95,100,105,94,103,116,101,97,105,96,105,104,92,95,91,105,98,101,97,95,100,88,94,96,100,100,77,92,110,102,107,90,104,102,78,100,105,95,104,111,98,103,91,117,102,98,105,112,98,105,81,93,106,103,100,99,105,109,97,98,105,117,99,102,91,100,96,96,97,106,91,104,109,100,88,107,97,105,98,102,101,108,101,93,94,88,106,90,98,99,110,105,105,93,102,96,105,108,107,106,97,107,110,96,113,108,100,94,100,104,99,91,119,100,101,89,105,96,86,100,95,104,93,98,83,81,92,100,99,103,97,100,102,95,109,101,99,98,104,94,94,101,99,98,94,100,109,90,97,96,109,107,98,96,112,106,103,94,97,113,112,106,101,93,106,94,105,97,92,111,109,109,93,98,97,106,113,113,101,88,99,106,98,99,105,93,101,101,101,91,91,90,104,105,102,90,105,93,96,99,97,92,94,111,92,96,98,89,95,108,100,102,88,106,92,97,96,90,90,104,110,100,91,107,102,98,103,91,90,102,95,105,105,107,108,104,110,103,107,88,101,102,94,103,98,111,125,98,97,102,95,95,102,92,94,101,106,112,101,105,90,101,100,102,98,117,89,104,102,100,100,100,101,101,100,99,100,109,104,102,97,115,96,104,102,100,99,103,99,91,69,94,105,101,101,95,98,85,101,106,93,94,94,101,103,106,100,97,106,97,101,96,104,104,100,95,99,92,93,103,107,105,101,101,107,104,106,103,91,112,105,90,105,100,110,104,89,93,71,92,99,90,111,104,97,104,99,113,106,98,105,101,103,105,108,98,106,94,95,111,101,94,96,96,98,84,109,102,94,101,94,102,98,101,106,98,110,94,99,95,100,95,122,96,104,108,104,106,97,101,99,94,104,88,87,109,92,101,109,109,103,105,90,105,94,104,95,88,104,94,106,96,100,105,110,91,95,109,100,94,93,85,95,84,93,102,102,105,102,95,98,103,100,108,87,97,112,104,103,104,110,108,102,111,99,95,90,113,98,91,107,111,108,95,103,107,91,100,97,108,106,101,90,101,90,89,107,105,88,95,103,99,107,112,97,103,100,104,104,91,92,92,112,90,98,105,108,105,105,107,103,106,98,102,100,103,104,114,96,95,91,89,90,94,93,103,105,105,94,101,113,97,103,71,105,92,99,109,100,101,103,99,100,103,112,96,103,123,100,95,105,100,107,103,113,104,102,107,93,92,102,90,99,97,114,102,106,93,86,115,91,112,97,104,108,102,101,95,108,104,112,96,95,100,99,97,98,102,90,106,108,122,98,108,93,110,100,100,97,96,106,96,94,105,100,117,106,104,103,99,102,99,99,108,107,100,97,100,90,102,101,95,108,87,105,93,111,111,101,100,101,83,106,108,107,101,98,96,117,105,107,110,107,105,102,101,96,89,97,96,83,96,104,102,106,63,105,110,101,101,98,90,113,103,91,99,91,100,85,105,96,104,95,114,99,86,103,108,106,100,88,103,95,96,101,94,103,91,101,93,100,104,102,111,99,99,59,93,98,91,109,103,104,91,90,119,91,98,108,105,100,104,100,120,94,114,103,100,102,99,99,100,99,105,90,101,103,95,106,93,91,89,102,101,91,93,100,112,92,102,102,108,96,101,98,85,111,102,102,87,101,95,113,102,99,84,95,107,110,103,100,102,99,99,117,99,90,131,99,102,99,98,104,100,100,110,110,97,95,100,104,105,101,106,117,84,95,103,94,105,99,95,106,102,98,107,102,101,92,99,84,100,104,99,104,106,103,112,92,110,100,94,97,100,101,90,122,107,100,104,96,99,106,108,106,111,94,101,102,91,99,98,100,90,60,93,94,97,117,101,107,96,82,98,102,99,99,105,93,114,101,96,99,99,100,96,106,97,111,100,92,101,104,115,92,101,94,98,93,105,116,96,102,84,109,102,96,105,91,100,103,101,100,92,100,94,115,104,96,117,105,98,97,99,97,110,91,101,92,102,102,94,97,81,101,106,102,89,103,94,95,102,96,103,94,96,91,104,109,97,95,112,88,105,92,105,104,101,81,93,103,105,104,91,100,100,102,95,94,79,101,103,105,98,106,99,112,102,102,97,87,94,98,85,99,99,106,99,96,105,94,91,93,109,116,105,94,112,100,121,106,88,100,108,98,108,105,103,103,100,100,103,113,105,91,96,88,100,96,100,110,98,101,96,103,102,112,79,109,94,96,100,91,94,103,105,103,89,99,105,109,108,107,105,110,93,91,98,93,105,88,93,100,94,100,88,105,102,98,101,100,91,97,102,113,103,103,103,96,108,105,112,93,98,94,105,114,103,98,102,108,87,91,104,99,100,90,100,90,95,103,87,85,94,93,98,97,105,111,98,111,103,106,96,104,104,104,100,94,95,108,104,95,95,98,97,107,102,96,105,108,108,101,100,86,95,105,111,97,98,98,104,92,102,104,99,103,98,100,100,69,95,104,109,106,107,101,95,90,97,94,94,95,107,98,96,105,91,97,99,102,113,102,102,97,101,107,103,95,104,100,96,95,101,95,97,96,96,113,94,101,101,96,107,87,105,95,107,83,104,101,103,106,99,97,108,106,113,102,97,98,104,102,97,101,88,101,78,99,102,105,100,103,79,99,106,91,101,101,95,106,116,95,93,114,108,98,99,102,109,97,92,100,105,104,95,103,95,104,96,104,101,103,100,96,88,93,104,104,100,99,109,98,101,83,117,97,89,99,101,110,87,84,105,99,96,102,94,93,128,111,98,102,89,111,92,96,97,103,99,104,90,75,93,103,100,95,112,117,103,103,102,100,75,104,87,90,102,98,94,95,107,99,99,105,96,100,98,92,85,95,104,101,108,101,92,84,102,88,95,106,99,105,81,99,116,108,98,99,88,102,117,102,97,72,96,97,95,109,105,94,94,98,102,93,103,109,113,95,115,91,93,91,97,121,94,98,117,98,102,92,95,85,104,105,100,98,100,99,108,91,97,103,99,83,100,86,99,115,107,98,96,96,91,97,106,88,100,96,93,104,102,88,101,89,103,100,98,106,79,106,91,97,88,100,100,100,91,103,101,90,96,102,95,100,106,95,101,101,102,122,93,103,104,108,92,100,110,95,111,103,106,109,96,109,107,110,93,104,77,98,106,103,94,103,100,102,91,99,100,107,99,108,105,100,99,101,109,112,95,93,103,87,93,100,115,100,96,98,93,101,87,102,90,90,94,111,96,96,96,94,88,104,112,103,89,105,110,95,90,100,112,104,96,86,98,102,98,98,83,91,103,96,91,90,112,99,105,88,106,107,104,101,103,93,110,91,92,93,91,100,94,108,104,94,92,95,115,109,103,101,105,100,107,100,98,113,106,102,108,103,88,123,99,100,91,92,114,101,96,95,93,103,92,102,105,97,93,106,90,98,98,104,94,94,99,98,95,96,111,103,92,101,97,98,93,105,107,101,91,100,87,97,94,90,109,92,120,104,94,112,113,97,119,95,98,98,96,106,83,97,92,90,105,93,88,96,94,74,105,99,90,103,104,105,96,98,92,93,108,84,97,103,95,95,99,104,89,105,88,106,87,92,99,93,97,90,104,101,102,106,103,117,84,91,87,96,97,95,87,91,99,106,103,86,96,97,86,98,106,98,92,96,109,99,89,99,102,98,103,102,109,94,109,109,101,90,95,86,73,109,109,89,101,99,100,101,105,102,110,104,102,101,98,94,95,97,80,73,113,112,96,94,104,96,98,106,103,107,89,105,104,100,97,104,95,104,109,100,105,103,109,104,101,104,87,110,113,99,104,108,100,98,99,98,97,101,95,115,72,98,101,101,117,107,100,109,95,99,86,97,97,106,91,96,104,106,108,87,104,117,104,97,101,103,115,68,95,102,102,89,112,85,99,115,113,97,87,101,103,91,98,110,102,95,99,69,99,98,89,87,103,104,99,102,104,113,97,107,92,97,102,84,91,99,99,100,100,97,94,99,111,87,102,106,106,94,91,96,81,104,105,97,101,103,113,96,96,110,102,103,105,106,88,95,87,97,102,101,101,83,107,93,87,103,90,103,98,96,98,104,104,104,105,102,104,104,113,99,95,93,105,102,94,112,90,101,75,93,106,84,96,99,114,98,117,82,103,83,91,102,100,117,106,93,101,98,87,97,108,92,105,108,106,102,100,96,102,102,118,102,100,98,82,100,101,98,82,97,108,101,78,104,96,105,97,112,101,65,96,98,99,120,92,94,109,104,97,91,98,105,95,87,108,89,90,98,99,106,112,96,101,96,90,98,101,98,101,107,100,82,105,94,111,98,103,99,105,112,97,91,102,98,103,103,87,98,94,96,96,103,95,97,96,97,97,98,106,100,99,94,100,86,90,92,97,89,94,100,100,104,101,91,108,108,89,87,103,95,85,87,94,105,97,94,95,95,120,94,91,90,86,91,96,100,94,116,94,104,105,97,92,105,102,90,94,104,105,101,102,95,105,105,89,112,109,94,100,112,91,100,103,101,100,89,101,92,98,81,100,95,85,110,82,98,94,113,106,97,105,93,94,92,99,99,90,103,101,106,101,88,123,99,97, +405.82574,92,104,63,99,89,101,93,99,94,107,86,88,92,99,108,96,97,110,104,113,89,113,96,95,100,100,105,103,79,99,98,97,102,77,102,98,91,107,85,96,102,91,102,89,104,111,83,114,102,114,92,83,105,111,98,98,101,102,102,87,109,108,90,83,105,100,89,107,93,95,94,104,96,105,95,95,99,104,118,91,105,98,99,101,113,90,100,113,112,107,112,99,77,98,115,105,95,94,93,122,100,93,108,99,90,104,105,91,93,92,103,118,98,101,105,82,105,102,107,101,95,97,103,100,89,103,108,98,99,103,95,110,105,86,106,97,95,97,98,101,103,105,95,109,100,101,111,104,95,108,93,105,110,94,92,75,93,108,108,114,100,96,97,88,115,105,111,100,102,100,106,101,78,105,99,104,103,76,91,105,102,110,104,110,106,100,97,94,101,106,106,102,97,100,112,87,106,99,96,103,97,101,98,113,98,103,110,100,103,110,99,90,105,107,110,99,88,106,84,118,105,109,109,88,96,111,103,107,99,106,100,100,88,73,109,115,67,97,96,127,97,104,127,97,95,86,104,106,93,113,95,109,89,94,95,100,95,108,106,98,104,108,97,99,100,94,114,112,99,94,105,98,102,95,109,90,107,95,109,103,101,100,100,106,105,92,98,104,94,105,98,104,116,105,103,102,100,105,101,105,88,103,99,96,101,104,95,109,100,92,95,107,107,94,111,98,99,98,107,89,102,84,86,97,103,96,100,97,116,99,113,98,101,98,113,103,87,95,106,105,105,105,105,95,99,91,106,102,105,115,87,101,78,109,95,109,103,89,95,104,95,90,96,87,95,107,86,111,105,96,122,99,103,99,95,94,101,103,104,100,98,106,100,107,105,85,100,109,108,99,107,100,102,112,96,86,102,96,101,94,98,101,73,107,100,109,96,107,94,122,99,95,109,113,105,97,97,110,101,107,95,90,110,98,91,111,96,116,96,104,89,103,101,95,95,96,94,109,99,95,99,87,98,104,111,109,107,94,103,86,91,87,101,117,105,110,100,106,100,99,105,106,100,100,103,108,116,100,91,99,83,100,101,91,109,93,98,114,101,102,98,107,97,113,100,100,116,101,87,105,99,124,102,91,109,94,109,105,97,91,99,94,103,105,93,98,114,113,105,120,111,103,114,88,98,114,101,106,99,109,102,108,104,109,98,100,101,86,103,103,103,106,108,99,102,94,96,103,101,104,101,100,94,101,107,105,99,95,102,106,95,103,109,108,104,101,98,102,92,107,109,99,81,93,96,102,101,95,109,98,95,101,105,109,106,102,100,91,106,105,126,101,105,91,95,109,96,117,118,88,79,91,95,102,95,120,102,107,97,97,90,102,95,110,97,92,91,100,102,102,97,100,99,122,105,104,105,100,104,99,109,111,100,91,104,100,84,97,91,110,96,94,116,107,92,99,90,92,87,100,75,100,94,103,96,88,97,101,106,94,92,91,99,104,105,105,103,97,98,108,71,91,98,98,102,102,97,96,106,98,94,93,110,102,93,106,98,100,111,100,99,100,105,105,109,98,86,95,97,94,100,87,100,111,111,105,99,106,98,99,109,96,89,83,92,104,112,96,102,98,97,101,107,101,95,112,94,95,96,103,104,91,100,102,103,95,96,80,104,113,115,106,99,94,99,96,115,90,108,96,100,80,102,92,103,100,90,116,97,96,100,93,102,93,103,105,93,91,102,100,91,74,87,96,105,108,90,91,96,103,103,100,87,95,101,97,99,87,98,96,105,96,112,106,109,103,103,100,117,108,102,106,95,108,100,94,99,73,98,98,109,99,94,104,100,102,106,92,97,99,106,100,94,96,99,111,100,110,97,91,101,92,94,105,103,105,114,96,104,107,101,100,105,103,109,109,105,113,99,100,106,98,99,103,80,98,99,102,91,96,97,100,95,94,102,105,95,99,96,90,97,103,103,99,95,111,105,75,104,83,112,106,105,105,95,97,104,93,87,106,105,103,100,126,91,92,97,102,105,115,119,99,102,119,109,95,96,112,104,93,101,95,105,104,94,98,116,98,102,101,109,108,99,91,102,98,100,97,97,103,111,103,100,106,104,85,107,92,95,102,113,108,98,109,92,97,100,87,100,99,93,98,105,103,99,92,103,113,98,103,107,104,110,104,111,105,86,108,93,105,107,101,99,96,109,91,97,98,105,71,88,113,96,99,102,121,97,102,100,124,90,91,105,121,94,106,101,107,91,100,109,99,100,94,113,102,95,95,112,87,101,91,103,94,108,127,104,94,93,104,96,103,112,101,94,105,97,116,112,95,88,106,96,95,92,105,103,92,100,90,109,111,103,107,109,92,96,108,106,102,109,106,105,113,109,99,110,100,102,100,104,95,109,93,91,104,94,96,99,106,96,97,101,112,90,91,105,113,100,96,96,106,107,104,96,98,93,109,94,98,89,113,90,92,114,98,96,102,106,108,104,93,106,111,102,105,105,98,118,134,104,97,91,98,94,108,92,104,109,105,113,103,73,101,101,117,101,83,95,91,100,104,111,99,103,83,97,109,103,124,116,112,108,93,96,102,109,99,104,106,100,105,106,100,101,97,101,99,95,96,108,99,116,128,115,105,106,124,99,93,101,91,90,101,105,81,107,111,80,117,96,107,97,105,65,98,92,93,113,105,103,105,103,104,113,100,117,99,86,104,103,103,110,108,103,113,103,88,103,96,101,109,102,104,113,107,102,103,85,105,95,102,97,101,120,109,107,113,98,102,104,103,109,98,95,107,97,97,102,113,79,106,111,102,108,105,111,107,107,103,105,106,102,103,104,96,98,105,102,96,99,98,111,95,111,95,103,100,96,108,105,99,105,109,99,103,101,104,108,100,97,99,102,102,101,87,106,83,104,104,94,94,105,98,105,92,97,110,109,103,99,98,93,98,97,114,112,95,89,108,106,102,103,109,100,109,99,111,95,98,101,103,100,83,100,103,105,104,103,103,107,102,101,100,115,104,96,95,100,102,111,104,94,102,109,105,104,98,82,100,110,96,95,109,104,93,88,94,105,109,112,100,90,98,96,104,98,101,100,105,111,102,102,95,106,101,115,96,120,107,106,96,104,99,103,94,96,92,100,101,95,94,98,100,87,92,97,101,102,105,95,88,103,109,114,92,107,98,101,95,102,82,106,99,98,101,106,100,97,96,109,100,102,94,92,85,97,111,108,98,98,109,83,105,97,94,101,91,109,102,100,102,103,104,100,119,102,96,102,97,105,98,103,110,105,104,93,98,94,94,101,99,102,94,92,96,103,110,95,112,103,102,99,93,100,114,98,95,108,94,112,103,89,110,99,98,108,93,114,111,89,103,103,98,137,104,98,99,107,96,102,109,92,108,104,105,101,98,115,101,110,109,66,101,108,102,111,105,94,102,107,103,88,99,99,94,102,95,112,105,108,101,105,100,105,100,103,95,105,101,102,95,101,101,108,101,101,115,98,105,113,102,100,105,113,106,104,102,112,100,102,103,89,107,97,105,112,108,88,98,92,89,105,96,115,108,96,104,94,120,97,108,105,107,101,101,81,113,101,101,90,106,97,87,100,105,105,111,105,103,105,104,92,98,103,105,111,118,102,94,103,82,101,111,104,101,109,113,131,102,94,99,107,105,94,104,96,100,95,91,112,97,103,110,102,97,97,95,103,100,101,98,110,95,108,93,92,100,102,95,101,103,104,100,104,102,109,103,90,98,98,104,96,96,103,110,109,116,93,104,98,87,111,109,119,114,103,109,112,105,103,103,98,108,117,97,109,105,98,116,129,100,110,95,102,99,102,91,81,106,92,111,108,109,108,99,109,94,90,100,106,97,96,113,93,114,105,88,102,85,102,99,99,110,101,106,102,97,100,103,95,101,110,107,97,106,112,98,97,102,104,87,101,100,88,92,115,106,116,106,103,105,95,103,92,94,110,101,115,99,101,81,82,97,109,113,110,98,110,103,102,94,105,100,104,103,93,95,117,96,103,98,95,101,111,104,99,100,104,106,97,95,93,102,93,109,91,102,106,103,102,95,99,107,99,104,117,109,93,100,116,110,105,105,100,100,99,109,105,87,104,104,103,94,100,103,111,115,107,85,97,88,104,92,114,96,102,107,113,104,98,100,101,95,112,99,111,103,101,107,88,114,121,97,102,108,99,106,105,112,106,97,105,101,110,99,100,107,103,120,101,98,96,98,101,100,105,108,102,101,106,101,114,110,95,91,93,91,106,101,101,93,109,87,110,76,113,102,91,91,86,98,103,98,100,108,112,96,111,102,101,98,122,104,94,93,95,101,94,117,106,116,109,88,115,97,100,92,102,102,106,109,100,95,99,106,71,108,106,113,98,104,95,102,100,117,101,119,106,101,98,95,91,97,98,106,96,93,93,101,105,103,96,103,97,91,95,102,101,101,98,100,104,91,106,94,65,95,106,95,105,93,95,97,112,91,88,94,100,99,94,92,90,103,108,110,120,106,107,95,110,102,90,94,99,93,99,100,97,102,92,105,102,99,92,100,105,101,113,99,101,104,106,100,95,98,84,113,79,90,103,102,100,114,101,96,103,89,105,101,103,108,108,105,101,111,93,100,113,99,108,104,109,105,92,99,88,97,99,110,105,97,97,105,88,98,105,105,103,104,110,90,108,109,96,97,98,120,104,100,94,103,117,98,96,98,88,110,94,95,92,91,91,116,78,98,99,103,103,100,105,105,96,103,126,108,100,111,92,108,94,99,98,105,99,112,114,96,97,90,105,103,102,98,99,91,98,90,69,116,89,98,94,101,102,131,104,112,90,90,101,103,92,92,103,100,98,99,109,85,95,97,95,108,95,103,100,106,89,87,95,100,110,108,103,101,101,105,95,86, +405.96591,96,99,93,99,105,86,95,110,106,104,94,101,89,87,103,104,110,103,98,100,100,101,102,117,101,112,102,98,102,100,98,108,115,96,93,89,109,98,112,94,101,98,99,103,105,103,120,103,87,104,88,100,100,93,96,91,114,100,111,99,107,91,92,94,98,106,91,106,80,93,122,93,100,102,95,111,89,98,100,97,91,99,90,100,102,99,97,97,96,99,90,74,100,99,91,99,87,94,95,95,98,105,89,102,97,107,100,92,94,98,94,100,108,101,97,97,95,98,100,97,100,95,90,99,91,97,98,102,104,102,100,90,92,99,112,109,96,77,95,102,99,103,108,105,86,96,114,103,101,98,106,96,107,87,104,106,105,106,100,97,91,97,94,109,109,100,97,91,101,87,90,98,88,99,104,86,109,98,96,100,93,95,86,104,99,87,105,97,90,108,105,94,94,98,103,103,97,102,105,104,99,97,94,101,120,105,101,97,109,103,91,99,108,97,107,102,94,86,108,104,106,109,106,92,100,106,102,105,104,101,100,91,108,100,91,104,98,113,99,103,95,124,101,97,88,98,99,96,96,99,108,105,101,91,95,101,102,103,90,107,97,105,96,97,91,105,103,115,97,88,100,96,134,100,80,99,110,102,101,102,95,106,93,98,89,99,98,112,90,101,94,98,106,109,97,97,107,116,100,103,104,105,97,110,96,107,107,99,106,105,93,91,106,94,89,105,102,96,107,103,106,93,104,107,128,100,94,99,110,100,100,100,104,103,106,102,113,97,94,92,97,104,102,101,90,96,94,104,108,99,99,106,95,96,98,100,109,106,104,106,96,95,89,95,104,103,82,95,103,98,82,98,106,101,115,97,108,101,110,101,98,105,91,103,99,104,101,110,110,98,106,102,101,100,99,102,83,110,98,107,106,102,99,103,109,96,100,96,99,101,97,95,101,93,100,98,102,132,103,101,102,103,102,111,105,97,107,102,101,107,93,102,103,107,80,90,101,96,100,99,98,100,105,99,95,105,97,96,98,108,74,95,102,95,83,87,103,104,97,102,115,88,98,101,87,99,100,108,96,99,97,96,103,98,101,101,96,104,86,104,98,81,106,90,100,91,103,113,102,106,93,99,106,99,85,102,90,108,105,117,102,112,100,102,109,102,103,101,99,96,103,95,108,105,103,92,99,96,98,102,97,105,98,107,107,101,117,104,98,100,91,99,99,104,89,105,90,103,107,112,74,102,61,91,105,93,102,99,91,110,105,110,98,92,101,102,97,105,98,102,100,111,90,94,101,107,99,105,103,99,96,90,92,86,125,80,106,109,117,105,110,96,95,105,97,117,96,102,91,101,79,105,109,105,114,109,87,107,104,96,90,103,104,96,98,126,103,98,101,100,103,95,105,93,105,94,101,95,94,105,106,91,94,97,100,103,92,109,98,104,97,102,97,98,94,101,100,102,101,101,98,94,102,96,89,95,93,103,100,108,79,103,99,98,94,103,90,100,100,98,108,114,112,99,104,105,106,96,103,103,99,110,94,107,88,99,105,100,106,106,95,102,102,105,100,97,95,108,92,109,105,93,98,108,106,95,83,100,101,96,108,97,96,98,101,108,93,105,102,93,105,98,100,105,101,94,122,107,92,97,99,100,106,98,99,106,97,98,98,105,98,110,91,100,90,105,101,79,98,100,110,102,93,102,93,110,103,105,81,94,103,96,99,101,102,95,91,94,99,95,99,97,91,90,89,104,94,96,108,97,107,108,95,99,101,89,99,109,106,96,94,91,102,108,90,100,95,109,104,105,100,101,108,87,102,107,95,94,107,102,109,121,100,92,104,84,99,102,91,93,100,103,108,100,103,66,110,95,107,94,119,112,97,91,102,104,101,106,109,121,100,97,95,102,96,102,118,105,112,98,93,105,106,95,95,100,90,104,97,108,97,105,108,90,105,96,106,103,97,95,108,105,92,100,91,96,98,100,101,117,102,112,121,102,104,99,106,108,118,101,104,104,112,108,109,91,96,106,100,103,104,110,87,107,111,102,100,100,99,94,88,101,100,96,98,92,101,97,89,90,95,112,106,102,113,95,94,106,98,68,126,93,118,104,121,98,106,100,101,105,101,103,101,117,107,107,92,101,91,103,96,103,103,116,105,104,103,91,101,110,100,114,96,102,96,107,104,109,95,97,106,105,109,110,97,105,103,99,105,103,108,94,92,92,94,103,103,94,100,110,90,112,104,91,107,100,98,113,100,101,99,89,102,84,99,95,91,113,114,106,101,101,108,97,107,101,102,95,94,95,100,95,107,100,90,100,103,94,94,98,117,117,101,101,95,100,104,100,108,102,99,112,97,108,108,86,112,108,96,101,96,101,90,100,91,96,99,99,96,92,94,101,91,107,92,97,93,114,101,96,96,87,101,107,106,99,101,101,74,106,98,104,82,103,99,99,108,102,102,93,99,93,109,107,99,106,96,88,115,108,120,91,100,100,96,83,99,105,94,89,105,95,86,106,108,91,85,104,104,98,97,110,98,92,104,100,93,99,96,88,104,98,112,88,102,105,95,106,113,96,101,104,112,107,102,94,107,84,106,100,91,90,117,119,93,107,96,86,95,94,99,103,93,108,110,90,108,102,100,114,113,95,84,98,117,114,102,99,109,100,98,104,102,93,92,101,99,99,100,109,95,100,112,97,98,103,95,85,91,113,98,97,110,98,96,101,98,102,100,90,99,104,100,138,92,101,102,107,105,94,107,106,102,96,97,106,92,100,100,85,80,105,96,116,103,88,126,104,119,100,89,97,99,103,108,91,105,108,104,106,105,101,91,102,102,91,102,105,102,105,90,101,108,99,99,97,91,111,108,109,97,101,95,98,126,95,120,107,97,88,108,110,110,110,95,104,102,108,101,109,104,90,109,104,87,95,103,108,93,113,98,96,98,103,107,108,106,101,109,103,101,94,100,100,102,102,102,117,92,94,101,128,98,100,107,92,104,110,107,103,110,100,100,107,111,103,109,100,110,109,102,90,91,99,108,105,90,91,72,99,119,106,102,94,95,112,99,108,109,98,103,106,88,98,82,96,92,106,104,106,92,100,96,92,105,90,102,104,111,105,101,102,111,108,97,95,103,104,102,100,108,89,86,107,100,81,97,98,101,108,93,98,100,99,98,88,116,121,101,102,98,91,83,105,99,98,104,101,119,97,95,104,98,93,60,96,101,94,109,113,98,99,106,105,89,93,115,97,109,88,97,101,108,110,98,94,105,99,91,107,96,104,117,107,94,106,102,95,98,97,98,110,98,94,115,104,113,102,95,102,116,106,102,93,97,90,99,88,95,91,99,96,89,112,100,106,117,96,96,95,105,101,89,99,101,99,94,101,112,93,102,100,94,105,105,96,97,117,114,100,93,95,112,93,94,99,96,96,93,102,105,101,116,92,99,101,97,102,93,105,102,97,98,96,94,99,95,106,99,111,96,98,95,86,81,95,97,97,106,95,94,109,87,104,101,97,102,102,98,94,99,87,116,112,103,89,103,102,90,102,94,100,98,110,94,113,88,91,104,104,95,109,103,95,96,100,104,87,102,87,99,108,102,109,99,99,105,109,117,96,97,92,106,88,92,80,92,108,114,101,86,109,102,101,117,84,93,99,110,99,106,88,93,114,113,103,91,99,99,103,104,111,94,97,99,83,107,86,108,101,93,102,99,94,94,100,97,100,87,93,107,93,95,97,100,100,94,106,103,87,98,96,102,83,94,94,100,110,92,97,98,87,104,92,93,100,113,102,114,102,91,103,96,110,106,108,105,105,97,98,95,93,109,99,103,98,97,105,97,100,104,108,105,97,104,112,117,84,103,102,107,107,96,102,101,101,105,95,96,100,84,95,90,116,116,92,94,104,93,104,97,95,99,83,107,102,104,102,102,104,106,91,109,106,109,106,106,111,88,110,94,92,99,100,100,92,109,112,96,102,92,113,113,95,103,103,101,100,95,105,101,108,99,106,103,101,109,101,96,98,102,102,104,99,109,100,112,94,94,98,104,101,103,104,109,113,104,112,96,100,101,100,111,97,100,113,100,100,116,75,109,95,91,108,102,106,87,108,107,100,97,112,91,109,102,102,97,99,97,101,101,99,93,101,94,101,98,117,91,121,108,98,99,92,95,103,107,107,97,101,105,83,109,100,98,104,98,104,106,113,107,102,96,79,96,89,102,94,110,91,94,104,104,101,87,71,101,113,98,98,93,96,109,95,117,99,99,93,107,95,105,93,105,81,109,104,91,99,101,91,99,109,98,111,111,109,105,97,92,113,101,101,114,110,95,109,96,108,104,94,105,98,114,107,112,101,102,101,97,99,105,100,100,109,99,94,93,98,99,104,95,104,96,99,93,108,96,92,108,98,94,91,98,102,97,103,90,88,100,98,99,109,91,94,81,103,91,106,98,97,106,97,95,104,109,100,105,107,109,108,64,99,105,101,96,113,110,107,99,93,98,104,100,102,98,113,99,85,96,94,85,83,100,95,98,134,86,108,102,101,103,105,95,113,92,109,121,105,95,87,90,104,122,105,94,108,98,95,116,88,98,102,102,90,99,98,109,113,99,111,97,97,104,95,116,107,107,87,100,84,108,120,111,107,104,96,102,107,104,110,104,101,109,102,112,105,98,96,97,96,102,94,104,110,98,101,72,106,88,96,95,100,104,102,94,107,116,110,121,106,95,103,95,92,93,100,117,111,106,114,98,100,99,107,97,97,95,104,104,93,94,97,102,103,108,99,104,97,94,99,96,101,119,98,96,95,102,95,98,110,95,108,108,103,101,97,97,97,91,107,91,102,97,104,105,102,91,105,98,79,95,92,98,91,103,109,102,109,89,85,107,99,74,107,84,97,111,94,104,88, +406.10605,114,87,105,100,83,104,90,107,107,117,91,93,90,91,109,82,100,99,114,96,94,97,93,95,108,97,85,100,106,81,103,105,91,89,87,105,78,106,105,105,96,103,105,88,94,101,87,96,101,104,98,88,97,100,103,95,103,96,96,96,100,99,89,101,101,101,91,91,103,112,91,101,93,102,94,108,94,92,105,113,96,100,99,93,103,103,85,107,109,105,104,96,96,103,94,95,94,103,88,92,90,95,103,100,96,107,92,90,93,105,100,100,108,102,93,94,102,106,99,90,95,96,107,90,83,100,103,108,95,69,101,104,109,87,86,112,95,102,100,99,99,96,95,98,100,93,107,106,114,82,98,99,105,92,100,98,78,106,107,100,99,94,100,115,99,104,96,103,103,95,93,107,110,100,95,94,92,90,113,98,95,105,92,99,103,95,93,98,112,96,105,102,107,112,102,105,113,99,100,92,104,96,73,112,105,98,97,99,109,105,92,105,113,91,105,105,94,101,98,109,101,112,96,106,97,106,96,98,116,100,84,111,107,104,98,98,109,98,107,92,95,95,102,107,95,105,101,91,103,101,88,102,96,108,108,108,104,105,109,111,81,104,96,100,109,108,97,97,99,94,103,113,104,109,112,96,78,93,98,100,103,98,100,101,100,108,103,100,114,98,101,104,103,109,104,96,95,102,99,101,106,101,86,94,100,92,107,127,101,104,95,100,109,106,110,104,101,100,118,92,109,91,109,88,115,98,96,97,118,112,106,109,105,107,111,107,95,95,91,93,100,91,98,96,108,117,91,104,110,101,92,101,108,105,103,104,108,101,100,108,96,101,97,95,100,99,109,100,103,112,110,103,113,102,107,88,103,101,105,101,103,108,99,99,100,104,90,96,101,104,108,96,101,102,100,95,101,104,106,99,94,93,105,106,105,96,97,106,77,101,96,95,94,105,95,106,99,92,108,100,98,98,98,107,94,95,102,103,98,104,101,118,76,105,109,91,94,111,92,104,104,97,100,105,101,99,103,103,104,103,103,103,102,101,102,99,91,87,111,100,95,108,96,102,105,97,105,93,94,96,102,94,103,108,95,96,94,102,95,116,98,106,97,101,96,100,106,115,82,121,109,113,101,98,111,110,99,95,109,104,98,101,105,98,101,101,91,98,102,109,101,123,95,106,106,98,98,97,101,85,94,101,103,105,119,101,97,104,105,105,99,78,97,104,104,103,86,95,113,89,94,106,95,92,96,91,99,84,110,106,100,93,97,101,90,78,94,93,106,94,105,101,88,94,111,110,100,100,99,99,93,98,112,102,103,70,100,97,101,100,102,91,97,96,103,95,109,102,99,95,103,99,95,100,106,113,98,100,97,107,92,91,97,91,99,106,99,104,110,106,102,103,104,97,112,97,99,107,110,99,97,105,103,105,96,104,93,105,100,115,99,99,97,94,111,109,103,102,99,99,90,107,93,107,112,98,107,105,101,86,91,95,103,92,94,102,95,109,104,98,94,113,106,99,90,99,112,100,108,97,101,97,105,107,99,104,89,102,102,87,105,111,111,87,95,94,109,93,108,107,117,107,114,102,109,92,97,102,107,95,101,95,108,91,92,111,104,98,105,95,102,103,111,113,97,105,101,114,95,99,94,93,103,105,98,108,96,101,103,93,96,108,63,99,99,104,99,105,94,99,99,107,84,98,115,95,100,105,97,108,99,104,96,90,100,99,105,98,126,91,91,91,98,92,117,105,105,103,100,99,99,99,115,96,95,108,113,102,71,92,104,100,96,109,85,108,100,109,103,106,105,97,95,98,107,96,108,108,104,108,106,105,94,94,105,101,97,92,101,96,100,99,107,104,105,105,108,104,102,99,103,105,106,100,100,96,107,108,90,85,101,95,93,100,98,92,107,96,107,104,98,97,101,100,101,97,101,92,92,95,91,87,103,100,109,109,99,87,116,96,113,88,101,96,92,102,86,102,97,100,104,101,94,93,95,104,105,102,104,105,89,95,97,121,86,125,96,109,134,109,120,110,113,100,107,92,71,111,94,94,95,104,100,91,114,100,99,101,95,87,102,109,96,106,97,105,98,98,100,107,105,86,96,113,89,104,108,99,95,101,98,96,100,104,99,101,97,101,102,118,121,95,102,93,111,79,91,103,87,92,92,116,99,100,98,99,100,105,101,105,99,95,105,96,93,112,108,96,90,98,106,106,97,94,122,96,106,97,92,98,67,105,101,98,91,110,99,104,106,104,103,101,104,109,92,107,90,107,96,90,87,100,101,92,107,101,99,108,88,100,101,97,98,114,108,113,110,97,111,100,108,101,99,95,98,103,97,91,99,99,108,92,102,100,108,92,107,103,91,103,105,95,100,103,101,92,101,91,95,98,125,99,116,86,104,93,98,98,105,91,90,121,108,68,99,96,86,104,102,79,85,103,102,98,104,120,101,99,98,95,102,95,99,99,103,110,90,106,98,99,94,103,72,106,99,105,103,95,107,109,112,99,100,100,100,107,93,99,113,126,103,106,96,99,111,100,106,97,105,96,100,104,101,92,97,104,103,107,112,101,108,108,102,95,89,103,98,106,99,106,98,84,109,112,96,95,104,96,99,100,103,97,102,103,102,99,94,105,108,112,101,86,85,96,100,100,106,98,114,91,109,102,104,100,93,106,99,105,95,93,101,117,93,104,105,95,105,107,96,95,106,106,110,112,78,107,92,102,100,110,95,96,132,103,100,99,98,84,97,102,107,102,101,100,108,101,98,103,93,97,97,93,104,99,106,87,84,107,93,100,95,112,101,102,106,102,97,108,110,105,103,91,106,101,104,101,98,104,105,107,91,99,107,103,104,103,104,95,105,126,97,101,103,115,105,105,113,96,98,95,99,100,109,118,96,99,87,114,99,117,95,103,111,107,99,99,100,84,112,99,116,104,102,107,117,92,94,97,101,97,98,105,89,105,96,98,103,115,100,96,106,97,103,98,106,108,106,105,102,93,114,103,84,100,103,99,105,104,103,98,111,100,108,105,105,99,102,106,91,103,91,102,98,98,104,113,103,89,103,107,111,85,110,106,106,92,91,95,106,103,99,87,100,105,104,91,108,99,108,96,104,102,115,104,99,117,103,94,104,102,101,101,103,111,105,106,102,99,103,94,103,98,94,108,99,106,112,92,98,98,100,110,109,104,105,95,108,109,104,95,130,102,106,92,99,98,98,105,100,103,106,99,106,102,104,106,103,98,109,92,95,93,110,106,106,101,77,99,95,100,102,101,117,97,98,102,102,101,97,103,94,98,103,98,106,106,98,113,99,105,101,74,103,103,102,94,102,98,102,108,98,101,103,98,95,111,105,93,117,109,100,99,117,105,99,101,103,104,95,99,107,107,84,107,106,96,104,105,108,106,103,123,107,108,98,113,105,99,109,105,102,91,102,92,104,96,95,92,106,101,109,114,100,90,98,107,98,89,96,99,109,105,100,100,99,105,108,107,102,105,100,99,94,106,106,99,110,112,92,97,113,92,114,102,107,100,111,100,92,99,98,101,107,113,100,119,113,113,105,116,113,113,92,98,100,115,112,105,95,98,104,102,105,94,109,107,99,68,103,107,110,100,100,105,93,99,105,91,98,112,89,98,115,114,91,102,97,102,99,100,107,99,98,101,106,96,103,106,98,101,109,113,99,104,97,103,109,95,105,92,95,109,106,108,116,108,112,107,100,95,96,111,96,114,109,97,105,127,96,92,98,100,112,83,101,103,105,99,99,110,98,96,74,107,98,100,97,92,94,95,107,96,96,107,104,111,104,107,105,115,115,102,100,106,111,101,97,96,116,101,100,96,100,106,99,112,107,96,98,100,114,102,117,105,108,98,102,113,99,109,97,96,92,98,98,105,109,105,95,97,95,97,101,113,107,94,110,101,99,119,98,90,106,102,112,110,101,106,103,124,105,106,98,112,92,103,95,102,90,102,109,99,93,113,104,104,105,104,94,105,104,106,90,123,113,93,86,104,108,109,106,91,94,96,119,107,102,88,102,105,106,102,100,113,86,104,103,88,93,101,96,105,107,98,90,99,101,109,118,97,103,100,104,115,97,110,110,106,92,103,101,93,109,100,104,110,106,105,99,108,105,93,99,104,104,102,112,104,102,106,107,100,99,91,108,102,77,108,102,89,82,108,112,102,117,102,94,107,99,96,91,104,97,92,95,103,115,115,109,111,104,101,89,102,101,79,105,98,107,90,98,97,99,97,96,100,97,115,98,106,96,101,104,104,108,114,104,92,101,97,104,107,102,102,90,76,87,94,95,103,98,95,104,108,96,100,105,100,104,101,104,97,108,107,108,85,101,104,93,113,95,110,97,87,100,112,105,105,95,112,96,97,114,93,113,102,87,105,98,99,94,94,105,120,94,76,98,95,80,95,111,93,71,112,103,94,88,98,98,107,96,97,110,101,96,96,96,108,119,97,99,109,103,106,113,94,103,104,107,96,91,94,96,96,87,101,98,96,108,98,97,98,105,107,101,101,96,99,100,95,97,108,100,101,102,112,98,100,99,82,105,108,100,97,96,120,102,109,95,99,103,104,100,110,103,98,95,104,105,83,82,95,89,105,100,92,85,89,99,102,103,98,112,103,103,100,82,91,92,100,97,104,101,94,95,72,90,100,108,95,95,106,105,96,102,96,96,110,108,85,103,101,101,95,105,106,101,108,98,92,97,105,96,97,92,94,105,91,94,104,98,111,104,103,99,95,81,106,98,100,112,89,96,101,99,101,105,96,103,107,107,102,103,102,91,123,83,94,106,100,108,105,90,67,102,101,104,103,104,95,112,104,99,107,87,83,97,112,98,98,105,101,99,102,109,118,100,102,98,92,111,109,106,116,109,99,105,89,96,105, +406.24622,108,92,96,100,85,94,96,85,101,90,89,91,88,93,105,98,102,116,94,103,105,92,111,104,107,110,106,86,94,106,105,102,100,102,108,107,101,94,102,110,96,106,101,100,97,101,99,116,97,123,95,95,102,96,106,93,97,93,103,96,107,104,86,105,105,105,96,109,99,95,105,103,102,110,91,120,100,106,106,105,96,95,111,106,95,104,100,103,114,109,98,94,109,97,96,96,96,117,92,85,94,100,96,94,109,111,103,101,97,105,106,99,109,96,112,104,104,105,98,101,102,99,107,107,112,96,101,113,102,101,102,94,98,104,101,100,114,108,116,94,108,107,98,101,102,105,107,104,99,106,98,102,95,97,91,98,105,102,102,101,100,109,113,95,116,93,96,104,99,92,99,99,91,119,90,90,107,91,107,95,104,104,106,98,109,100,96,88,102,109,96,110,101,102,108,100,100,103,115,99,99,100,90,76,107,104,108,104,115,104,96,89,98,109,112,101,102,99,95,102,113,95,98,103,110,114,114,100,98,101,101,104,102,97,107,93,95,101,104,100,104,83,96,100,98,91,88,98,110,100,99,97,97,103,91,101,94,105,99,104,100,105,101,93,96,116,101,92,91,113,109,98,102,114,109,108,113,99,112,94,131,102,116,105,85,96,113,103,95,96,101,102,107,103,96,113,101,107,118,101,95,88,104,102,99,107,112,105,109,101,107,104,111,110,109,100,109,106,87,104,115,100,94,95,98,101,102,97,113,109,111,99,106,93,89,106,112,108,99,118,108,95,102,100,98,102,99,103,106,101,97,105,103,118,95,109,93,89,99,114,95,105,104,107,109,101,95,101,104,106,99,82,102,97,104,101,110,99,105,121,111,111,97,105,96,91,96,102,113,98,110,102,97,106,104,107,97,102,90,116,94,71,93,103,99,103,90,101,93,112,100,101,108,103,102,102,105,109,99,112,102,93,94,115,101,104,119,97,93,107,100,102,112,96,114,118,108,110,87,106,102,98,80,113,97,104,93,94,106,102,109,100,98,105,100,93,97,98,108,110,96,113,94,105,104,113,102,94,93,100,100,109,108,114,104,100,99,109,133,117,82,96,105,107,109,108,107,103,110,110,99,116,107,120,96,98,105,106,99,111,110,93,94,110,128,109,88,73,103,94,97,108,110,111,116,97,107,102,107,117,105,108,95,105,112,107,103,109,93,94,88,104,108,105,97,103,96,101,111,110,74,113,101,95,96,108,111,92,111,106,105,107,99,102,88,94,105,96,102,102,102,92,106,106,107,104,103,100,116,96,94,106,111,110,99,102,106,116,104,112,98,98,93,92,100,99,106,106,104,99,104,100,92,105,95,104,96,92,102,94,94,84,110,102,97,102,105,106,109,109,116,104,103,96,105,103,104,101,111,99,93,97,103,87,111,111,102,92,106,106,95,121,99,90,89,99,98,94,120,93,110,99,111,94,100,99,103,116,106,101,101,104,112,102,90,108,105,103,109,90,99,102,109,104,99,103,102,93,95,108,105,101,105,101,98,103,99,109,103,105,97,113,114,97,102,97,101,122,90,104,108,99,106,97,105,104,108,109,95,98,110,103,105,103,101,114,92,117,99,92,109,99,106,99,104,95,97,108,106,104,107,93,115,110,95,83,108,105,105,112,126,113,80,98,89,105,107,100,78,98,113,94,101,102,108,103,99,103,104,99,103,111,99,100,102,105,120,102,107,101,104,108,116,113,96,102,91,106,103,96,104,110,97,103,100,104,95,89,107,95,98,100,114,102,95,110,104,103,95,113,102,100,106,105,91,111,115,102,119,113,111,116,101,91,110,106,105,102,101,89,103,97,94,101,108,95,94,100,100,107,85,94,101,96,98,117,100,98,109,100,106,100,101,102,111,102,133,103,94,114,109,103,102,85,105,106,107,99,60,118,76,119,101,110,99,106,99,104,99,95,106,105,110,97,92,99,102,105,116,88,106,110,104,103,102,108,113,103,97,103,106,87,105,110,108,113,103,105,110,112,106,98,105,99,112,97,94,94,96,98,90,95,117,115,107,103,100,105,107,111,103,102,90,102,107,88,90,106,118,98,121,108,106,110,96,102,110,102,103,68,96,104,105,92,104,108,94,100,93,104,95,104,92,113,112,110,104,104,103,102,109,113,90,102,107,112,105,95,100,111,91,103,104,106,108,96,108,107,101,99,113,110,106,109,90,103,99,99,113,113,93,90,99,108,104,93,91,104,91,101,105,103,98,102,103,100,89,99,110,106,100,109,106,105,111,107,95,103,90,103,102,105,104,97,103,94,111,103,115,102,103,109,103,96,101,91,105,98,106,101,96,111,113,97,97,98,90,105,113,80,102,75,98,98,105,98,104,101,90,110,91,87,99,103,99,103,89,94,111,102,87,97,88,101,101,100,105,96,90,95,99,98,103,104,99,87,106,101,102,103,99,111,113,101,111,103,90,100,105,98,88,100,102,90,101,103,136,93,109,98,105,92,97,106,80,107,99,95,102,122,99,91,105,101,103,102,96,103,98,101,103,95,99,108,105,96,100,106,101,91,97,105,100,101,99,98,113,93,95,94,102,105,90,105,110,109,99,94,112,94,112,101,103,102,110,100,118,90,106,107,108,100,105,105,97,114,98,92,116,117,106,99,98,110,97,108,100,100,111,93,103,83,103,115,101,88,106,90,107,100,94,114,95,99,112,97,94,76,97,89,104,110,106,85,108,99,99,101,100,113,106,98,101,102,96,103,104,106,105,107,108,89,99,99,100,98,112,99,102,95,94,96,107,100,103,95,100,99,102,103,92,103,111,90,102,102,103,104,106,109,104,89,99,97,99,111,95,98,98,94,104,96,100,105,103,84,95,100,84,102,103,106,103,107,103,91,94,99,104,93,106,97,112,118,103,104,105,106,104,109,106,95,91,101,97,102,106,93,101,96,93,99,98,103,94,103,103,109,93,120,103,119,102,98,109,113,111,100,113,92,111,102,102,96,105,89,113,105,101,100,75,83,99,108,117,113,109,103,91,93,108,102,106,86,95,87,107,107,109,102,104,91,105,105,107,102,94,99,95,117,101,98,113,63,93,101,68,94,101,115,101,102,85,92,108,99,109,110,102,101,101,102,101,100,94,101,99,99,108,87,95,98,98,97,102,100,103,101,103,64,97,96,98,108,100,110,101,104,101,103,100,103,101,103,115,101,112,93,105,97,109,105,99,92,102,104,94,104,101,89,97,108,105,94,93,102,85,93,87,115,116,105,113,101,105,102,102,95,98,96,116,100,80,102,98,101,109,101,106,102,96,115,98,99,116,114,103,89,96,103,95,109,91,96,102,125,102,106,114,104,101,96,106,111,104,97,102,88,106,96,99,87,109,93,107,105,100,98,87,91,91,99,102,95,104,92,105,106,99,106,116,100,107,104,107,105,104,121,92,103,102,104,105,102,94,104,99,68,91,109,106,99,99,102,98,100,103,103,106,108,110,89,92,95,107,103,106,98,86,87,112,103,114,104,96,100,96,107,105,110,106,102,94,102,101,101,104,104,106,113,96,101,100,104,98,102,102,103,105,84,95,107,101,101,107,100,109,105,100,102,108,97,109,104,110,93,112,95,98,104,97,96,94,103,101,101,111,104,108,112,98,98,100,107,102,105,104,100,104,105,91,104,99,107,100,95,96,89,94,97,103,82,107,98,114,109,107,91,98,72,104,114,104,93,91,98,105,102,94,96,89,94,95,95,95,101,98,106,102,101,101,112,106,110,95,110,105,95,115,102,91,111,98,107,98,79,88,105,106,106,107,84,112,108,93,94,104,89,96,98,94,102,112,96,110,107,100,105,100,110,105,90,98,91,97,105,89,92,94,103,111,111,102,100,96,106,102,94,104,99,111,99,100,96,100,109,106,91,99,109,98,84,97,109,93,99,95,104,108,100,94,105,108,105,102,98,112,92,97,98,98,112,96,100,104,116,97,120,101,113,92,103,96,102,104,97,105,99,113,105,102,95,98,104,105,98,103,98,105,113,94,108,96,95,109,121,95,106,93,94,103,106,108,101,95,101,102,94,110,107,109,84,103,102,95,114,102,103,89,109,104,104,99,101,95,121,108,99,84,111,96,89,94,104,102,104,109,102,103,109,110,87,105,101,106,105,101,105,95,97,120,103,108,105,109,99,94,83,95,101,116,103,105,90,111,98,106,106,99,92,116,98,95,116,102,97,111,117,109,109,91,98,100,108,98,100,101,110,101,97,116,92,107,101,108,98,111,92,99,106,99,108,105,104,113,105,105,96,98,101,93,107,98,106,104,108,97,98,105,104,105,105,95,96,91,123,124,105,104,104,104,105,109,108,99,102,103,139,101,117,96,95,113,92,95,111,106,83,103,87,98,81,98,105,96,103,97,97,91,98,101,115,108,95,99,109,93,106,105,100,94,100,96,98,101,103,100,97,107,102,104,100,100,111,110,101,99,101,104,103,91,129,101,94,110,105,91,103,106,101,92,94,106,104,106,108,102,110,102,112,97,112,95,101,93,108,103,104,105,103,109,90,115,97,98,99,109,103,88,101,103,106,98,106,104,102,104,106,105,94,96,99,102,104,103,111,90,106,75,112,111,100,113,101,99,97,107,101,103,113,98,116,88,102,103,97,101,102,99,95,95,93,106,113,105,100,108,95,98,98,95,91,95,97,105,112,102,102,106,94,93,108,108,105,99,94,93,109,114,98,98,110,104,88,89,107,93,117,99,100,91,97,94,88,114,97,113,91,105,104,94,96,98,140,117,84,91,104,93,102,103,102,91,103,104,96,96,103,99,104,102,102,93,102,104,99,95,104,98,90,96,102,102,108,101,97,94,104,96,99,104,105,92,105,104,87,97,97,99,104, +406.38638,102,84,110,104,91,104,94,75,102,109,91,103,110,90,104,104,96,93,98,102,107,92,108,103,102,106,106,105,100,115,103,89,108,84,105,107,106,99,92,96,89,104,100,96,99,115,106,97,92,113,94,105,99,87,105,108,102,101,109,99,102,101,101,91,109,97,66,100,91,105,107,99,109,103,112,109,106,89,109,95,88,94,95,95,92,89,98,86,103,91,103,104,105,99,93,93,99,99,95,109,85,95,92,95,101,90,98,91,82,97,97,91,91,87,91,97,97,106,96,103,97,92,95,92,84,112,99,91,109,116,100,99,102,112,81,106,97,94,93,90,105,104,100,95,88,92,100,104,96,102,94,96,101,88,97,105,100,83,95,75,102,97,103,95,94,77,95,100,91,91,95,98,102,93,101,98,98,102,71,101,113,101,101,110,86,95,94,97,106,96,85,98,105,92,118,105,91,92,96,109,104,104,95,97,101,99,98,118,111,98,88,100,96,95,99,115,97,99,95,105,99,98,115,95,89,99,82,109,108,116,102,108,107,126,105,104,105,98,97,95,83,83,90,100,94,109,107,90,99,103,95,107,101,91,104,101,97,61,100,100,102,104,94,100,98,101,95,90,88,95,98,87,104,114,98,98,96,92,94,96,96,102,97,91,100,100,94,100,109,100,100,97,105,103,87,98,93,100,98,117,101,105,105,106,94,96,106,103,98,104,94,105,113,109,105,98,115,95,92,94,105,95,102,105,97,99,96,105,130,110,101,97,105,95,106,91,98,92,95,96,95,106,110,84,103,102,82,106,108,100,103,106,87,104,92,97,96,109,103,93,92,102,93,94,89,99,109,91,97,98,99,101,107,104,101,105,107,101,107,110,92,106,114,100,97,108,92,122,101,93,124,95,82,103,110,97,110,102,92,113,94,99,113,109,116,97,87,100,104,101,101,95,118,109,97,88,96,121,101,108,100,98,101,94,97,108,114,97,90,106,90,109,114,99,94,90,96,111,78,92,107,102,99,91,91,69,86,98,108,87,94,93,99,113,100,95,104,99,94,99,101,101,98,109,105,97,105,100,96,101,101,99,99,106,95,102,105,112,98,101,103,100,92,96,92,104,90,100,98,99,106,98,112,106,101,95,109,94,125,103,116,113,116,80,95,97,102,101,110,90,99,102,101,117,97,106,98,103,96,93,96,100,104,102,102,103,112,100,91,91,102,87,94,103,100,94,89,97,93,98,91,107,77,98,112,97,103,101,116,92,100,104,106,91,111,93,96,96,117,106,103,110,99,105,95,101,101,100,104,77,89,100,99,94,111,106,104,92,87,101,108,96,102,87,97,87,96,99,102,105,103,106,92,89,103,107,104,104,98,108,93,117,96,89,102,99,89,105,89,97,89,98,102,102,100,104,88,104,94,89,108,101,100,102,106,109,93,105,106,97,86,100,103,103,92,91,113,89,103,94,104,99,91,99,104,83,96,91,102,98,72,103,110,109,96,107,103,96,96,82,100,112,102,91,105,97,110,100,121,94,103,99,97,101,115,116,95,85,98,101,108,91,95,94,106,127,100,101,98,101,112,102,98,101,105,108,95,100,105,100,103,88,107,100,109,100,100,98,99,99,117,91,104,81,93,104,97,108,101,96,94,92,108,91,91,91,88,99,101,104,113,105,92,109,98,101,110,91,104,100,96,99,101,98,103,99,104,111,93,96,114,82,92,88,93,92,107,113,96,101,99,98,79,103,100,95,100,103,108,86,93,108,120,102,106,98,109,90,99,102,102,106,104,122,126,99,97,101,109,111,125,101,92,107,101,88,96,90,99,95,102,98,98,100,114,105,91,98,108,92,115,102,95,111,110,106,104,95,101,96,106,95,98,99,101,101,93,103,109,76,83,93,112,102,95,87,109,98,109,101,93,100,98,90,104,96,102,91,84,101,115,95,102,93,87,101,92,102,97,101,89,94,88,112,102,102,100,94,96,105,95,102,103,109,103,89,114,103,94,98,97,106,101,84,99,102,113,112,115,95,94,94,109,105,109,100,106,103,101,103,105,109,104,90,124,94,98,102,106,104,100,106,96,115,98,108,104,98,93,100,98,93,97,102,97,109,90,110,101,97,99,117,123,101,92,93,90,85,98,100,100,104,95,96,101,97,99,109,95,106,100,96,92,98,99,100,97,98,104,104,130,110,98,114,96,87,96,90,105,94,92,89,108,96,92,108,92,94,104,99,105,109,97,98,98,105,113,127,105,102,89,97,107,95,93,94,97,90,97,100,98,101,115,96,102,115,110,96,95,110,101,103,100,106,106,104,101,94,102,99,106,115,102,85,87,97,106,100,99,96,107,96,95,105,102,79,87,98,98,100,101,92,94,99,96,92,111,89,95,90,94,116,100,112,87,97,110,88,99,97,96,103,95,115,102,95,91,94,100,92,95,98,93,111,105,96,113,99,107,94,115,98,108,92,111,103,117,105,109,110,89,106,104,69,93,99,97,92,107,113,109,83,101,102,100,103,91,102,114,95,91,104,93,113,103,107,103,102,95,110,100,94,112,99,98,101,98,109,101,92,98,99,107,102,97,117,112,101,100,86,108,91,96,95,98,87,100,97,96,101,104,93,109,105,104,106,108,95,91,93,103,95,99,99,105,103,98,104,107,109,128,91,103,95,102,113,105,110,102,111,104,111,101,99,91,94,99,98,108,109,108,102,98,92,97,109,108,91,100,94,105,97,95,98,94,104,111,104,98,99,112,104,104,102,114,85,98,116,99,102,88,105,99,97,93,105,96,100,99,101,96,105,100,98,103,103,98,99,98,109,107,92,104,113,113,91,91,98,104,113,112,98,104,113,87,91,100,104,99,104,104,98,81,89,98,111,96,108,92,111,109,105,102,111,108,95,113,102,98,86,100,96,94,99,97,95,107,85,111,108,100,95,101,95,101,100,98,109,101,98,94,99,107,109,99,99,106,109,94,99,94,109,98,82,99,111,106,102,107,84,100,90,99,104,110,111,113,94,104,100,104,96,95,102,105,99,103,88,106,79,100,100,90,99,92,108,109,103,122,99,101,107,91,108,109,95,111,108,102,88,100,106,99,108,94,108,115,98,95,103,113,109,98,105,93,98,112,107,103,96,94,93,95,97,92,98,100,106,110,101,98,102,86,94,95,96,110,99,110,113,97,100,94,96,98,109,98,97,110,106,102,110,98,104,110,101,99,106,111,108,113,100,90,109,91,89,107,111,110,97,112,88,99,108,108,106,72,109,97,103,95,94,88,101,108,95,106,92,116,92,108,87,111,98,109,110,104,101,104,103,99,75,101,76,103,107,89,86,134,104,79,89,102,89,95,105,102,94,102,93,106,102,81,109,130,123,75,106,98,90,103,102,104,106,98,95,92,123,105,95,109,108,101,102,99,97,87,97,92,110,95,100,100,95,106,108,99,103,91,105,96,99,97,92,99,98,106,101,103,92,99,106,106,94,98,95,108,96,100,78,120,99,93,116,104,101,105,101,93,95,113,104,107,104,102,104,108,108,103,99,103,100,114,99,100,92,92,94,98,101,105,86,94,99,109,97,96,104,101,86,99,92,93,89,101,96,115,98,93,117,87,93,102,103,97,102,89,102,109,109,96,105,117,88,89,105,93,91,98,111,106,98,114,95,92,91,92,109,105,101,110,111,103,130,108,94,99,98,105,102,106,100,99,96,95,103,102,102,106,93,102,107,93,99,105,94,76,106,97,125,101,85,96,98,95,94,86,114,104,110,116,91,95,86,104,93,108,95,112,105,103,97,93,103,99,97,101,103,92,100,106,102,99,108,87,106,99,100,102,113,101,104,114,95,90,101,108,104,113,93,95,102,103,94,110,96,101,99,93,100,104,99,106,101,116,111,94,94,89,103,100,104,84,107,104,106,91,91,102,109,110,97,106,111,104,112,99,106,100,91,93,91,93,102,100,95,98,110,91,106,96,116,93,102,94,107,101,102,99,107,95,98,108,114,109,98,97,94,93,106,109,93,101,89,103,105,113,101,109,117,107,106,71,98,95,113,101,106,106,100,99,97,106,99,104,99,106,108,98,108,101,101,104,108,112,109,110,105,99,95,96,97,125,102,113,73,111,98,97,101,101,94,104,95,109,102,101,97,99,89,100,98,101,96,101,108,106,106,67,98,105,100,107,111,102,103,96,116,97,101,98,98,113,95,96,95,97,88,98,96,101,80,91,94,99,95,107,96,101,101,100,93,97,96,102,103,82,89,95,90,100,99,98,97,101,91,95,105,91,90,95,94,97,106,102,101,98,91,115,106,105,107,105,108,109,103,101,113,113,97,100,97,96,100,99,95,107,119,105,96,88,112,103,108,110,102,96,101,101,76,98,99,89,107,99,103,104,99,107,101,91,89,98,101,97,110,97,103,96,102,102,90,110,100,96,99,90,112,124,104,99,116,104,112,94,100,93,96,107,113,102,99,94,102,107,113,102,105,106,113,102,101,93,106,105,96,107,99,100,87,98,103,100,112,107,105,91,120,106,91,103,105,92,96,87,102,96,101,96,102,94,103,113,94,105,104,102,110,104,121,101,113,97,111,109,102,95,107,105,101,101,92,88,99,111,104,123,100,102,97,98,104,103,102,108,102,97,97,107,101,101,105,118,101,95,97,102,95,101,94,108,97,85,96,99,112,102,97,97,98,105,93,101,99,95,93,100,107,104,84,96,99,99,96,97,96,102,91,102,116,97,101,93,99,98,99,86,98,100,87,91,102,102,105,93,98,101,98,96,106,102,90,105,101,99,95,111,110,96,100,95,62,104,101,94,100,105,89,97,107,96,104,96,105,100,107,95,91,82,102,90,83,95,96,99,101,88,83,102,90,104,112,99,61,95,110,113,104,83,88, +406.52655,74,111,103,109,97,93,100,101,103,95,96,110,94,102,100,85,90,115,95,85,112,92,88,101,109,95,101,105,84,99,102,111,100,91,114,101,101,84,81,98,75,91,83,101,97,110,106,100,88,108,109,102,85,97,104,103,96,100,104,98,102,104,72,92,100,92,92,104,106,99,115,106,100,111,93,103,101,96,107,108,110,94,99,97,111,97,103,100,98,96,100,100,100,110,118,101,102,109,99,102,102,111,105,87,88,101,106,100,107,88,107,96,100,99,75,94,112,93,116,104,102,105,107,109,111,99,115,95,107,89,96,101,106,100,102,98,96,78,96,96,83,102,103,90,73,93,111,109,93,91,102,100,108,93,104,109,91,96,95,102,109,99,100,102,95,97,99,95,95,98,103,105,97,98,104,104,105,104,104,99,101,106,104,114,78,100,95,94,99,105,91,101,92,104,104,101,110,96,106,99,105,107,94,105,107,93,103,104,109,111,105,104,113,107,103,89,107,104,116,101,102,99,98,92,101,103,106,93,95,111,90,88,112,96,104,100,100,113,94,98,104,99,103,105,114,104,106,103,101,105,107,112,97,101,106,107,94,102,94,98,91,102,91,103,97,112,103,109,106,95,100,99,114,122,99,106,96,99,108,101,98,106,95,75,87,109,92,99,86,94,102,99,101,100,114,106,105,98,104,101,101,101,106,103,93,97,104,109,100,103,100,100,105,109,94,105,99,98,105,91,97,105,90,104,96,96,98,90,97,107,96,98,105,106,100,106,96,97,93,88,95,107,96,98,94,98,105,93,102,107,101,100,98,103,86,86,103,96,102,105,103,105,110,105,99,98,109,108,104,111,88,99,91,95,106,95,100,108,99,99,95,109,113,116,82,98,96,95,106,99,100,107,103,106,86,93,98,101,104,109,103,100,102,101,114,91,109,101,107,94,94,103,113,99,100,106,101,100,100,95,99,87,99,104,99,93,96,95,92,112,83,94,101,100,99,105,94,114,97,102,91,98,81,99,93,98,102,106,98,109,91,75,106,108,93,97,104,100,102,104,99,102,96,112,102,107,106,110,105,103,101,107,83,103,105,85,99,105,103,100,87,98,114,107,100,80,98,114,95,109,101,95,90,112,94,100,92,106,88,102,107,104,101,98,107,93,92,99,108,103,104,93,92,106,100,108,103,110,103,102,99,89,92,100,105,95,96,102,93,95,110,106,101,104,95,96,96,88,109,94,89,117,72,91,107,104,105,101,114,99,103,96,105,105,115,100,107,109,97,98,100,102,100,101,100,92,105,111,103,96,92,98,94,104,100,104,98,94,92,102,123,81,82,96,85,105,103,107,101,105,98,107,93,97,113,90,93,101,121,110,101,111,111,103,99,99,108,94,96,105,91,97,106,106,90,100,101,98,91,102,105,92,90,92,122,95,96,105,101,99,110,102,81,90,93,102,96,99,95,94,96,108,100,109,96,94,94,97,103,101,99,108,104,114,100,101,113,91,101,107,99,102,103,103,87,100,95,101,104,96,109,97,104,92,96,113,111,102,103,91,103,93,103,87,98,86,94,86,95,107,109,92,91,110,99,98,103,112,100,99,95,81,103,102,87,109,96,102,117,101,105,103,100,92,96,67,102,106,110,96,80,96,95,104,88,95,107,107,96,109,81,108,109,90,103,100,104,102,123,92,97,99,108,105,103,105,89,103,100,104,105,101,85,91,93,99,108,108,109,95,100,99,104,105,98,103,91,109,95,82,102,99,99,102,99,101,99,96,97,105,96,104,101,98,110,128,113,113,103,100,98,101,101,100,84,97,98,99,100,102,108,91,94,99,96,101,114,89,107,100,121,101,100,96,110,106,104,107,106,94,105,104,97,104,98,104,99,108,100,93,104,95,94,96,100,113,102,100,100,87,100,93,104,112,100,113,89,96,100,96,100,101,106,98,106,92,95,89,97,91,104,109,101,97,101,102,90,103,100,98,95,102,103,103,101,95,104,102,97,100,91,103,101,105,101,106,101,109,95,103,110,116,100,101,104,96,94,119,97,88,101,98,86,95,95,101,94,110,95,99,93,111,110,99,103,95,103,106,95,108,95,99,100,106,111,101,118,98,104,99,98,100,105,106,103,104,87,109,106,100,104,108,98,92,90,101,95,112,95,103,89,95,104,92,104,104,110,103,91,98,104,108,107,86,110,100,97,114,95,104,96,95,112,98,94,97,90,97,101,110,100,103,106,106,105,99,104,94,95,105,97,101,113,97,104,96,86,110,88,108,100,133,100,67,104,99,104,97,93,83,100,95,101,92,107,103,100,102,105,93,96,107,95,95,87,100,94,101,89,105,79,118,120,97,95,87,105,96,108,88,98,101,95,101,107,97,105,103,88,97,77,105,96,98,99,106,98,97,108,112,83,108,100,103,84,99,93,97,107,99,92,106,82,105,97,94,112,92,87,91,112,96,98,99,104,95,102,107,107,103,100,87,99,102,99,100,95,89,107,102,101,85,64,109,111,109,118,99,109,89,100,103,102,93,114,98,99,106,98,94,102,96,97,92,100,95,110,102,104,97,121,100,99,86,104,98,89,99,90,106,98,98,84,114,89,100,103,116,106,91,102,96,108,93,102,92,100,100,117,106,105,97,94,98,96,105,110,94,109,98,106,106,105,100,105,98,91,96,98,99,107,88,97,113,110,96,103,95,101,99,112,90,108,100,106,110,112,107,112,103,102,104,105,106,94,112,100,99,97,102,103,98,97,102,106,100,92,101,111,87,103,98,90,98,100,91,88,87,109,94,101,102,95,95,96,108,104,120,101,98,102,109,100,91,102,106,108,104,76,100,105,98,96,105,98,84,92,107,107,98,113,100,107,106,97,103,107,88,99,117,106,104,107,95,109,99,104,88,95,102,100,98,114,106,76,101,89,99,96,97,104,103,98,101,95,94,103,103,105,96,97,93,101,100,101,107,125,98,98,86,100,95,92,87,105,109,99,102,104,92,83,97,113,101,105,103,104,103,95,91,98,96,100,108,106,102,107,98,109,108,104,97,106,101,109,89,102,92,96,113,97,99,97,95,99,94,105,98,97,91,114,112,94,102,113,101,108,87,104,92,98,97,112,116,115,96,99,106,105,101,100,95,90,99,107,99,114,101,88,98,92,96,91,99,103,105,106,96,112,114,98,117,108,103,97,125,110,110,102,103,102,98,101,104,105,91,94,98,99,85,100,91,91,88,93,96,110,103,118,86,97,99,100,109,98,105,105,101,89,105,90,104,98,112,108,104,109,103,97,98,102,104,98,102,90,100,99,112,99,97,107,112,106,98,99,108,101,96,101,98,84,103,94,99,102,105,114,114,104,100,93,92,96,102,113,94,93,97,99,110,105,101,66,99,108,99,92,102,79,92,92,101,77,112,100,102,106,106,91,104,105,86,103,108,95,99,100,100,77,99,103,99,108,104,94,97,102,92,100,99,114,86,107,103,90,105,117,96,95,101,104,105,90,102,103,83,96,95,103,106,111,105,103,111,98,95,107,94,105,106,102,100,97,95,79,91,93,94,99,97,104,103,69,98,100,102,102,106,102,130,92,87,102,110,98,102,112,99,109,101,87,97,104,103,102,102,111,106,99,88,106,102,104,110,98,112,96,118,109,98,100,105,98,113,95,99,88,90,109,102,91,107,102,106,95,110,113,94,109,111,92,105,98,122,106,86,106,99,100,90,95,94,101,97,95,103,103,106,89,105,99,93,107,105,104,91,103,109,104,110,97,104,100,101,95,98,97,101,102,104,92,101,100,109,117,114,98,111,107,98,111,102,104,93,78,111,99,113,100,103,89,110,100,96,98,106,104,93,105,96,97,77,103,93,101,98,97,115,106,102,81,95,95,93,103,113,97,91,89,101,88,99,102,95,91,102,106,101,97,94,107,101,108,88,103,96,111,107,109,107,95,99,91,96,102,105,94,93,90,101,108,97,94,105,130,101,99,98,94,113,111,104,108,96,104,94,93,107,105,96,113,91,113,88,104,103,113,108,93,87,123,98,100,105,104,83,102,97,108,106,101,104,98,101,96,104,106,90,103,110,106,103,102,108,106,101,94,105,100,104,116,117,112,101,95,111,95,104,102,110,104,101,93,107,95,97,97,106,96,96,104,103,94,101,108,116,92,111,104,94,97,88,78,103,99,109,101,101,94,94,125,104,94,104,98,101,70,103,99,107,110,100,106,98,112,101,97,122,100,108,104,108,87,98,101,88,92,104,100,107,92,108,100,102,107,100,95,100,84,100,100,111,93,104,104,95,100,97,95,111,92,97,103,97,100,109,105,100,92,99,110,101,103,102,103,98,107,91,98,95,98,112,113,99,111,99,98,93,97,97,110,95,113,107,95,74,103,111,101,106,97,94,93,104,91,117,91,94,95,107,113,105,91,90,101,99,87,101,87,101,111,117,98,83,100,99,104,87,96,100,110,90,102,105,113,109,108,95,98,110,92,89,124,99,101,97,102,107,91,97,103,98,93,107,99,91,116,99,96,101,98,95,105,92,106,94,109,100,99,98,103,107,112,95,102,97,94,100,109,105,101,83,100,100,101,106,107,109,106,91,96,104,103,117,92,107,103,99,98,101,110,96,115,109,93,103,108,103,95,70,102,94,89,110,84,96,107,94,95,92,94,94,92,102,107,99,98,93,98,95,96,93,102,100,107,106,113,101,82,105,99,95,97,100,97,101,92,114,107,73,105,89,89,100,103,67,89,74,91,113,97,105,109,103,104,101,114,96,101,115,100,90,103,105,99,91,107,101,92,97,107,92,90,106,93,101,98,95,87,94,80,107,106,98,93,109,104,93,95,87,85,95,112,89,98,98,97,92,85,104,97,96,96,88,109,98,102,73,105,90, +406.66669,128,94,97,86,100,93,114,89,83,92,91,92,83,102,99,94,109,103,99,97,103,101,83,85,95,73,95,91,95,89,96,93,99,90,108,101,102,104,101,105,88,90,105,109,96,101,90,108,91,100,91,92,101,100,116,94,102,103,100,96,106,101,96,95,112,108,86,105,88,100,92,100,105,100,90,117,85,101,104,95,99,86,89,108,98,96,97,110,104,100,95,87,108,84,104,105,96,101,96,105,84,96,98,100,93,99,106,107,97,96,100,88,103,97,99,92,92,95,109,100,101,102,93,98,98,90,104,97,96,90,105,89,98,111,92,98,121,102,104,90,95,95,107,95,102,110,114,94,99,97,98,107,101,90,101,96,94,96,109,95,83,95,100,100,99,99,101,78,100,91,101,93,93,89,100,102,99,102,103,91,99,92,100,102,89,108,105,100,97,98,88,105,100,97,106,101,112,95,97,99,94,98,108,96,96,92,99,95,105,99,94,115,110,91,116,97,81,108,96,96,96,101,92,96,100,100,94,92,110,98,98,82,103,95,92,101,105,99,100,104,108,96,119,98,93,97,105,87,97,96,101,104,92,93,115,95,89,96,97,101,86,113,94,98,91,104,141,93,107,96,94,131,109,94,105,106,89,94,99,98,101,95,99,92,114,102,98,102,100,97,99,88,109,91,103,98,100,101,98,93,96,99,96,105,93,102,94,108,102,106,102,107,96,99,107,107,104,99,98,113,100,93,101,92,92,111,95,100,99,103,101,104,104,91,102,95,106,106,128,103,105,117,106,93,112,106,91,101,97,106,88,106,100,90,106,93,102,107,88,108,86,85,101,91,92,111,104,99,105,87,95,100,101,113,108,91,120,136,104,99,90,93,93,99,101,93,103,89,109,136,103,101,87,103,94,92,91,95,105,104,99,96,96,99,99,95,113,98,98,101,96,93,105,100,105,99,134,96,80,102,105,99,99,86,91,90,94,100,89,90,101,93,95,92,107,99,101,108,95,101,108,102,108,105,116,104,82,94,91,100,105,99,95,104,113,104,91,103,114,100,95,104,98,97,108,99,104,91,98,100,105,96,100,111,113,103,103,106,101,100,100,113,99,90,98,93,90,99,105,96,105,103,105,106,93,96,100,106,92,95,110,93,114,105,112,91,94,115,106,91,108,125,108,109,104,102,99,103,98,97,90,98,103,111,109,91,105,95,100,93,106,108,89,101,94,94,105,101,88,106,101,104,96,101,106,92,96,104,99,94,114,115,101,100,101,105,110,98,97,106,97,94,91,99,99,108,91,98,110,101,88,97,99,102,95,106,101,91,91,92,110,101,101,100,100,93,98,88,95,99,119,105,106,100,97,120,98,98,95,95,88,103,102,91,109,101,93,96,113,95,96,101,78,98,93,91,117,101,102,99,103,105,109,99,107,108,96,103,125,100,101,99,104,104,110,104,85,103,108,98,97,92,92,92,113,101,99,103,91,98,91,100,90,100,109,112,105,98,106,101,106,101,103,85,92,92,109,114,108,110,100,105,96,97,95,98,92,107,99,97,110,101,101,119,94,95,97,104,109,96,94,118,101,101,89,115,96,97,96,102,100,110,108,98,100,102,103,106,92,101,108,96,99,92,96,103,93,99,100,93,98,105,98,96,95,104,106,92,92,111,104,109,94,107,93,105,102,88,102,101,102,89,105,101,120,100,102,112,104,107,101,105,62,106,105,102,100,96,102,99,100,105,84,97,95,104,90,96,106,94,104,106,102,94,109,99,104,98,108,89,102,94,110,110,99,100,103,103,87,96,101,83,106,95,101,98,103,91,107,103,90,107,94,98,98,100,107,95,90,107,100,93,107,99,106,98,103,96,109,105,95,103,97,95,100,84,96,120,101,90,104,96,105,103,108,105,97,86,113,83,93,101,102,114,99,94,87,100,103,101,101,113,113,104,96,97,102,83,75,112,100,113,110,106,122,98,103,123,113,92,102,98,109,103,108,96,106,99,101,102,93,94,101,98,96,110,104,102,97,101,95,102,93,103,101,109,90,92,87,107,91,105,103,99,99,93,98,94,89,99,86,106,105,93,89,94,102,114,100,95,101,99,105,114,104,105,102,102,112,92,99,96,92,108,86,93,91,107,106,105,99,114,100,99,101,105,105,97,104,105,90,90,110,101,116,103,108,103,94,95,102,103,103,105,107,91,94,102,103,102,109,99,89,106,99,106,95,98,94,96,96,104,96,100,97,104,101,101,111,97,104,91,104,104,96,82,97,78,77,97,98,92,100,98,103,104,98,98,87,113,88,112,98,97,99,98,100,102,97,100,102,112,97,100,108,96,102,98,105,86,84,93,116,91,101,96,100,102,102,113,93,106,97,96,86,98,96,107,91,95,91,98,113,75,89,101,106,98,103,97,102,104,96,109,94,84,104,95,130,90,88,106,100,97,95,111,100,99,97,101,98,101,95,98,108,112,108,96,105,104,95,103,106,97,98,100,107,117,112,116,103,91,95,97,110,111,96,105,87,107,99,76,100,100,97,97,112,107,95,99,101,94,95,104,98,124,110,119,105,102,101,104,101,106,108,93,111,104,94,93,99,104,97,99,101,103,106,104,102,100,98,99,104,100,91,106,64,99,99,96,101,91,103,100,97,105,87,91,108,97,96,111,97,96,105,112,107,98,98,108,99,93,92,107,100,102,109,98,94,97,102,101,103,120,96,128,102,96,94,112,107,104,116,106,97,99,109,99,82,100,95,68,102,111,102,95,106,106,103,91,101,108,100,104,107,100,102,97,108,107,93,101,91,86,104,97,94,107,103,112,108,101,98,100,94,84,99,112,98,108,87,113,110,120,95,81,105,98,96,106,95,98,95,88,106,109,112,110,98,104,105,105,101,106,91,81,105,113,102,110,101,98,102,108,91,99,101,91,113,99,101,108,104,103,112,106,109,113,107,91,102,104,92,93,101,95,102,96,95,73,94,116,110,104,108,108,103,111,109,101,109,115,112,95,99,102,106,110,94,101,99,90,96,94,108,112,97,104,90,99,91,114,110,92,112,100,112,81,104,95,96,108,100,99,101,92,101,96,113,97,105,99,66,103,105,88,94,79,99,104,75,98,108,103,103,98,91,105,97,98,117,103,104,87,102,97,98,99,109,93,82,102,105,95,112,97,90,96,102,101,103,98,87,98,110,113,112,100,106,91,95,106,94,99,92,89,107,110,98,96,93,109,98,101,102,99,104,93,113,95,99,101,104,99,92,92,99,108,104,109,104,94,100,101,95,100,98,118,103,109,96,103,101,110,108,106,95,96,91,96,100,102,100,104,112,117,110,109,102,98,72,99,98,110,93,100,122,106,109,99,83,88,111,108,115,82,95,94,117,125,123,105,113,102,110,115,104,105,104,104,98,113,96,91,97,108,111,88,106,107,87,86,103,112,102,99,103,108,94,108,110,100,108,105,104,95,91,103,99,91,103,99,103,106,90,115,106,101,115,112,108,101,88,99,106,104,109,100,95,95,98,103,96,106,99,109,106,99,99,99,102,110,91,97,102,109,110,113,103,108,108,73,98,104,109,103,101,82,93,97,96,106,95,110,92,106,97,99,103,101,99,95,102,111,81,88,95,98,101,109,98,96,101,100,107,100,96,95,120,100,102,98,98,99,98,103,101,108,97,103,103,97,93,109,94,102,108,93,101,91,94,91,100,94,103,100,103,109,105,83,95,101,111,104,104,102,99,109,92,98,92,88,102,98,116,116,93,99,102,103,104,99,99,77,94,104,110,92,95,103,92,116,92,111,99,92,112,92,98,109,113,90,96,90,104,102,108,94,90,101,93,106,104,91,101,116,96,107,106,104,100,94,96,106,99,105,100,107,96,102,87,96,99,116,110,104,91,91,107,78,105,99,97,101,101,111,107,99,109,89,100,100,121,97,102,106,93,106,102,100,92,87,97,86,106,104,94,106,98,99,124,107,102,99,132,97,104,106,99,97,92,105,103,99,117,116,99,101,95,94,117,104,95,99,105,104,108,97,112,87,97,87,98,86,111,117,108,99,99,103,104,104,103,92,110,107,98,114,90,88,104,97,106,111,111,105,91,105,93,110,116,104,110,118,108,106,109,106,110,96,100,104,91,69,97,99,104,105,92,95,93,98,88,89,112,109,113,98,105,101,111,102,105,100,98,96,97,95,107,92,91,105,92,92,87,100,100,101,94,94,107,100,99,98,111,118,86,98,100,97,83,96,81,109,91,100,91,100,111,97,99,111,105,87,112,104,103,93,100,94,87,101,96,95,102,101,105,99,98,109,105,101,101,107,109,96,96,113,105,112,97,92,114,78,100,99,100,102,108,106,104,103,115,114,102,102,106,107,100,91,94,107,99,101,105,103,102,96,96,99,103,95,99,119,103,103,99,105,101,102,110,109,68,105,87,107,97,95,100,98,100,99,110,88,106,94,106,91,108,101,94,116,105,106,97,101,102,104,109,98,94,91,91,111,105,102,85,101,74,91,94,89,91,91,93,104,99,104,113,91,101,108,93,98,91,95,105,93,101,91,112,116,108,86,97,99,102,110,102,98,108,95,122,105,93,95,100,113,119,92,107,109,102,99,100,110,102,102,98,91,94,94,100,88,95,100,104,95,105,89,92,89,103,105,92,95,99,92,89,82,107,96,102,113,93,99,91,93,93,103,100,100,100,107,116,103,102,93,91,92,75,96,96,129,104,97,107,99,118,111,103,99,95,92,101,108,100,95,105,100,102,118,105,109,84,105,92,89,106,108,92,101,101,96,105,87,104,107,102,106,92,95,75,109,106,109,107,99,123,93,108,99,76,113,82,92,100,99,112,98,100,95,91,102,108,81,90,99,95,102,111,110,100,96,115,102,109,91,119,92, +406.80685,105,105,96,93,96,107,106,100,100,106,106,103,93,112,95,95,108,89,97,96,103,113,101,106,88,97,103,100,97,122,101,113,108,103,86,80,115,104,107,102,121,112,98,90,98,100,108,100,105,98,100,109,102,106,94,92,89,118,95,110,99,93,93,97,104,110,91,104,104,89,101,111,108,110,105,103,106,104,99,106,106,111,98,123,95,96,100,115,95,100,102,102,116,105,82,118,100,107,98,101,94,106,93,98,103,96,96,75,96,94,101,103,102,102,109,103,104,106,108,100,99,102,91,95,105,102,95,102,88,105,112,103,102,106,98,95,84,125,97,96,103,86,102,88,103,101,105,95,89,87,104,102,91,99,108,99,95,93,100,90,106,104,109,109,104,107,99,102,107,108,101,106,101,88,106,80,98,98,102,107,81,99,108,103,100,100,94,94,92,98,93,98,113,104,90,106,116,97,103,93,112,89,89,117,94,83,94,124,106,96,100,129,123,101,101,94,81,99,97,104,132,103,103,112,108,106,102,114,103,95,106,113,77,104,100,100,100,108,105,101,108,91,99,97,111,104,110,101,98,114,117,85,96,101,105,108,99,95,99,103,86,101,100,101,97,102,97,102,107,100,71,88,109,109,101,95,98,104,93,99,102,130,100,95,96,99,104,97,96,103,84,101,98,99,108,104,99,106,101,98,87,98,103,92,98,103,99,100,100,106,105,98,109,114,99,97,92,104,99,103,100,97,95,109,83,93,102,91,97,98,93,97,102,99,104,102,92,89,96,103,102,138,103,109,93,103,99,109,114,95,103,96,107,104,104,99,97,97,117,107,104,96,100,103,95,106,95,111,92,112,104,102,104,110,102,109,101,102,96,103,105,108,105,99,91,105,92,108,101,96,108,102,85,96,97,110,88,102,96,109,100,92,98,101,101,96,106,112,106,95,90,114,102,83,101,99,89,99,110,101,98,109,99,102,108,95,104,100,109,114,94,105,95,106,97,95,100,93,88,123,99,98,97,109,87,94,96,87,103,116,105,99,108,102,103,110,99,108,102,87,97,82,100,94,105,109,108,86,102,105,94,94,102,101,94,104,104,111,95,102,124,97,92,110,96,106,99,110,99,112,101,103,101,109,89,115,110,100,101,101,111,95,108,104,103,107,111,100,109,107,103,102,97,102,94,84,110,108,99,90,98,103,105,101,105,94,117,101,106,91,89,112,99,98,104,93,93,92,99,97,106,98,105,95,110,106,100,95,107,122,108,104,100,102,97,87,99,91,99,106,98,103,100,103,97,96,104,113,91,103,105,108,102,108,118,94,108,96,97,104,104,83,99,96,98,91,101,92,115,96,105,109,105,97,105,108,88,105,104,111,93,102,115,82,100,100,103,93,115,106,105,102,98,96,101,96,110,110,100,102,101,106,94,86,104,95,94,100,107,111,101,100,98,92,97,92,112,102,99,94,109,96,97,103,104,107,97,97,102,109,94,108,96,105,91,103,107,100,91,99,106,107,101,122,92,90,135,94,95,95,100,105,111,86,99,96,98,106,102,98,98,108,103,101,99,103,100,106,104,96,109,104,94,105,106,112,90,79,83,101,99,100,94,92,70,100,105,105,98,113,113,94,76,96,87,101,99,104,99,79,90,109,101,105,98,97,100,107,104,117,99,96,92,95,104,89,90,98,98,83,96,99,95,113,98,105,98,96,88,97,108,105,95,101,107,87,113,106,102,108,105,98,89,94,105,90,102,83,103,88,104,111,111,98,100,103,107,92,96,101,110,95,105,103,99,102,105,100,100,109,111,111,85,113,105,104,113,102,88,96,97,102,102,136,109,132,99,98,95,96,119,109,87,92,99,106,102,115,109,121,97,95,96,99,100,104,69,103,99,96,98,104,104,98,99,93,104,96,90,98,95,105,103,92,100,83,110,98,104,115,102,103,94,101,97,92,75,97,104,81,102,107,103,96,92,102,94,109,97,103,100,85,109,105,103,95,111,118,101,94,102,95,106,100,92,100,71,112,103,100,98,109,98,102,102,94,98,102,107,105,95,118,84,102,111,100,97,94,112,95,99,102,101,100,106,93,107,109,119,100,100,99,103,90,99,102,102,98,117,97,106,109,112,101,91,99,96,87,111,85,117,110,109,101,95,94,113,99,94,108,110,112,112,90,103,116,98,107,97,106,103,95,79,88,107,113,101,99,115,101,97,94,103,108,105,86,105,96,99,100,99,101,86,98,108,103,97,106,121,104,103,98,106,90,97,99,102,108,81,98,102,108,96,103,109,100,102,106,89,113,90,98,94,98,110,97,108,96,97,98,105,100,104,100,101,112,112,108,99,96,100,101,113,97,95,93,89,97,97,112,104,106,91,100,98,99,88,96,112,115,102,118,104,93,95,95,107,103,97,101,99,109,89,108,85,93,105,106,107,111,93,116,100,98,94,97,99,113,98,102,120,96,103,109,109,104,99,104,107,93,106,100,98,85,104,104,104,96,103,115,113,104,112,104,96,103,96,100,91,109,99,110,104,98,98,91,96,94,107,118,92,104,101,107,109,106,102,107,103,103,111,104,93,97,106,100,114,112,101,99,104,104,101,109,101,111,112,100,111,106,115,96,102,91,99,103,104,100,89,98,113,96,102,105,104,101,96,104,113,103,109,100,108,96,98,104,95,102,116,102,107,108,103,99,115,98,105,100,93,107,102,111,93,94,101,99,102,101,94,93,98,96,96,106,97,99,97,106,104,93,101,102,101,124,97,105,105,109,117,103,102,110,101,87,102,102,95,102,104,95,94,116,97,108,99,103,107,84,90,98,106,99,98,116,95,95,103,112,99,106,105,92,112,100,113,105,105,108,91,101,101,96,101,109,104,99,81,100,103,113,100,105,108,113,96,104,89,108,106,102,101,100,110,99,106,104,89,114,103,91,100,92,102,97,98,101,107,103,115,103,112,100,88,102,109,105,95,93,109,96,99,107,111,95,99,107,107,115,100,99,106,102,111,94,102,98,101,110,119,103,92,96,70,110,109,116,110,94,106,108,99,115,103,101,105,99,106,112,97,89,99,109,107,93,100,91,118,111,100,87,106,109,113,101,91,105,108,95,96,106,105,101,96,113,106,92,99,103,100,101,99,96,108,102,103,104,113,94,100,94,103,103,105,99,98,108,110,109,118,105,98,99,98,99,101,85,100,92,100,99,96,108,86,114,99,95,102,105,104,112,102,91,93,97,109,88,105,81,108,98,111,111,105,111,99,106,102,115,118,113,103,99,113,104,106,101,93,115,113,97,105,100,113,97,97,100,100,104,109,88,111,96,103,114,107,110,93,110,109,102,102,110,109,97,97,105,111,93,110,108,94,106,94,103,95,98,105,97,105,100,90,97,100,106,102,111,106,102,100,110,101,106,96,98,102,105,100,89,96,105,109,106,105,105,108,103,104,95,96,95,102,104,113,103,106,107,101,107,105,97,99,103,99,92,94,113,92,100,114,94,105,96,103,98,106,113,105,114,89,100,119,103,108,93,96,95,80,102,101,99,97,102,98,105,102,111,95,102,104,113,101,93,104,102,98,96,100,106,106,94,101,96,92,113,98,111,103,104,113,102,99,93,100,96,104,100,95,98,108,107,109,98,103,100,97,106,110,106,104,108,98,99,106,111,110,97,98,108,102,105,101,118,107,95,107,97,82,89,91,100,101,92,102,96,92,104,98,111,103,116,106,109,101,108,114,99,102,95,112,104,106,109,101,98,89,99,104,106,115,104,103,99,100,109,95,106,111,94,105,99,87,92,120,115,106,99,94,93,101,103,105,115,108,106,93,100,108,112,97,102,85,107,106,83,97,93,106,100,100,108,92,105,111,96,102,92,100,107,100,104,104,106,103,87,112,97,107,97,95,107,102,98,110,106,102,98,114,94,117,108,105,109,101,110,102,92,97,85,102,119,108,118,113,95,96,111,95,118,108,100,104,94,109,98,94,100,101,100,96,112,98,106,110,113,106,94,96,110,112,92,100,103,107,100,95,101,109,97,111,109,106,94,100,107,103,114,103,91,110,98,100,102,103,108,96,119,103,110,107,94,96,106,104,110,87,108,101,100,104,109,108,92,109,109,117,116,107,108,108,105,91,105,96,102,107,103,111,100,106,105,106,98,94,106,108,99,99,109,98,93,113,105,109,96,106,101,93,106,95,85,105,108,93,103,101,102,98,135,90,106,101,93,109,95,102,109,109,112,102,94,99,91,106,108,113,96,106,91,103,109,97,104,84,115,101,91,94,97,98,106,99,107,108,99,95,98,109,100,91,86,105,116,103,99,100,101,114,109,106,100,108,101,105,95,115,93,111,96,106,95,93,110,114,96,97,106,104,103,124,100,85,94,106,91,100,91,102,107,113,96,99,92,106,113,96,107,78,103,84,100,114,97,104,113,103,100,94,105,95,99,106,119,110,95,109,90,110,110,103,103,102,89,104,103,110,99,102,108,99,106,106,95,113,119,100,95,96,99,107,112,101,99,102,112,109,105,105,96,103,91,88,110,92,90,108,92,116,112,105,112,106,103,102,106,105,101,96,90,100,100,103,98,105,102,94,103,92,115,103,104,119,104,97,83,102,106,103,107,97,91,107,112,106,93,93,89,115,96,103,107,95,102,103,97,106,98,83,89,98,102,90,104,87,102,112,108,104,102,103,92,116,102,110,96,87,115,102,114,110,85,102,111,107,99,90,97,93,103,99,103,103,100,100,98,90,100,88,102,99,99,105,94,105,93,98,91,116,88,92,108,100,97,102,97,101,101,98,101,95,100,120,105,94,98,104,102,91,109,100,114,96,107,98,95,98,102,94,113,72,84,102,100,111,97,113,87,94,107,94,105,100,93,93,107,104,93,118,99,68,102, +406.94702,109,107,97,87,96,102,116,95,90,108,104,106,93,95,106,105,101,100,99,101,94,99,108,109,102,98,106,105,111,101,106,106,108,105,98,110,109,94,85,91,108,99,88,100,102,96,106,98,95,102,100,104,126,97,100,93,97,96,98,79,108,90,78,95,107,106,102,121,104,102,98,106,100,112,104,123,95,111,96,104,94,105,97,100,102,96,117,111,103,101,94,98,96,94,108,102,114,101,97,99,92,98,116,106,97,96,96,102,108,92,108,72,102,112,105,82,103,108,125,104,105,109,102,104,105,112,99,92,105,98,105,94,100,101,98,108,103,105,91,95,94,104,96,93,90,91,99,95,98,100,96,97,92,92,103,96,100,103,104,94,106,105,105,106,102,96,103,100,101,102,95,104,100,103,97,103,103,90,99,103,103,102,103,110,105,90,100,104,102,93,95,110,111,110,96,99,102,105,112,100,103,103,107,98,92,102,94,101,104,102,92,104,109,102,104,104,82,100,98,97,105,97,103,117,97,101,103,96,96,95,100,102,100,113,95,106,91,96,92,96,93,96,95,97,100,91,102,100,101,113,99,94,105,113,93,113,99,97,91,106,99,100,98,101,90,105,93,100,106,112,99,98,99,103,108,91,107,106,114,93,99,99,90,110,95,111,78,95,112,107,103,109,106,110,106,107,95,98,99,90,107,100,94,110,95,99,111,110,99,106,86,104,100,100,102,103,98,102,97,110,110,93,101,107,102,95,102,97,107,117,98,102,107,109,115,103,95,103,80,99,85,104,87,92,107,101,104,102,99,111,105,107,111,97,98,118,102,106,123,106,109,105,103,93,97,100,69,110,99,132,101,115,94,101,102,99,104,73,99,107,109,105,104,93,108,109,99,101,100,97,108,101,97,97,96,100,104,93,89,99,104,93,105,87,103,109,106,109,103,116,97,90,104,99,89,97,93,111,102,112,96,104,96,107,101,98,102,110,93,97,103,108,101,108,101,104,89,99,102,101,108,103,97,95,100,96,97,97,94,104,102,106,100,96,96,106,95,97,103,101,101,91,97,101,106,99,111,100,100,105,94,112,92,97,101,98,105,114,104,112,91,91,107,100,98,111,99,97,104,91,103,98,86,103,96,116,89,99,95,95,106,106,105,105,99,95,98,105,80,94,97,104,107,106,97,107,110,109,105,114,105,103,106,106,119,76,115,116,94,97,102,114,109,87,110,105,100,106,88,98,93,105,104,87,102,102,95,106,109,104,90,111,105,100,95,105,104,103,96,98,131,115,109,107,87,99,104,100,87,100,94,94,111,99,103,111,113,87,90,107,107,90,106,94,109,99,102,107,103,101,95,103,99,121,101,112,101,113,103,112,105,112,94,94,102,107,97,98,99,96,96,102,98,103,98,95,105,104,110,101,114,105,90,115,106,110,101,104,103,103,97,104,98,97,90,84,112,92,118,111,102,104,102,104,104,94,113,98,114,85,104,113,105,97,103,106,101,109,109,96,114,98,92,109,77,101,111,106,99,118,98,103,104,102,105,99,110,90,105,100,97,103,101,105,101,106,92,110,98,94,90,102,103,100,78,79,102,101,103,100,99,99,90,103,106,107,96,101,96,103,106,97,91,96,86,111,108,96,93,99,100,104,95,99,98,96,103,107,99,95,100,95,101,93,106,112,105,95,95,92,106,100,109,129,112,108,91,112,99,111,105,104,91,99,94,80,87,113,103,105,100,83,99,96,93,86,105,99,102,106,94,98,117,96,97,126,105,101,94,95,110,99,99,109,88,104,109,100,96,96,109,113,112,100,99,105,102,117,89,101,100,101,94,100,106,110,105,102,101,95,113,95,98,90,97,110,122,117,111,101,100,96,96,122,111,107,100,104,109,93,98,105,105,99,106,104,100,100,97,108,87,101,104,96,91,105,101,100,98,84,94,102,109,107,100,100,108,108,93,104,101,91,99,98,102,98,103,112,110,107,95,99,92,101,122,102,108,103,99,98,103,99,91,96,100,103,99,109,112,116,94,96,93,88,98,102,96,104,87,103,95,114,104,109,100,94,103,98,97,98,106,109,94,99,108,103,105,101,103,100,89,101,107,105,103,98,98,98,95,104,92,104,95,120,102,100,96,100,102,110,96,105,101,113,108,94,108,109,105,112,102,94,94,96,91,98,102,97,101,77,97,96,99,105,118,94,92,101,100,108,100,103,103,114,102,104,106,98,99,104,104,108,97,99,97,103,101,98,100,93,107,96,115,105,100,106,89,101,102,106,96,102,93,96,102,106,91,94,94,103,108,107,97,100,114,93,96,99,108,104,100,98,92,94,82,102,91,88,100,85,108,110,103,101,99,87,100,104,109,93,107,101,106,95,103,105,100,98,108,99,97,127,105,104,104,97,96,111,96,91,100,99,98,104,98,95,104,106,77,95,97,117,94,102,98,107,105,87,100,100,100,107,97,105,110,100,90,101,103,106,102,104,103,105,105,101,105,107,104,105,94,103,109,98,100,90,103,100,102,105,104,107,92,91,94,109,99,98,92,107,116,114,99,96,91,91,109,106,103,111,129,102,111,91,103,102,104,108,97,102,96,100,99,97,94,101,96,100,107,94,110,91,102,104,101,110,111,100,102,104,98,87,100,107,101,112,91,97,102,105,99,108,103,89,103,103,112,95,112,112,102,101,92,103,103,114,94,94,103,106,98,90,111,100,101,107,101,104,95,99,93,103,103,88,102,90,98,95,98,113,101,104,101,96,108,97,93,102,91,99,112,105,95,104,108,109,106,100,119,96,102,104,95,97,92,98,119,94,109,101,108,101,115,99,96,106,115,122,104,109,114,105,105,97,95,89,99,102,101,112,98,94,95,75,84,97,99,98,98,114,103,97,104,113,102,96,114,101,102,114,98,102,105,101,106,107,110,98,107,83,83,104,101,99,124,87,87,111,109,113,105,87,99,97,93,104,102,106,95,101,107,105,97,105,115,101,102,105,108,90,105,102,99,98,89,102,97,106,100,94,95,90,104,103,124,108,101,102,102,95,96,105,78,89,99,107,102,98,104,113,90,108,100,106,105,99,117,100,102,103,108,119,92,105,108,96,102,99,101,112,98,108,103,107,94,95,109,103,99,110,99,98,100,102,98,101,94,93,89,100,108,91,81,105,108,104,100,109,95,106,100,102,97,109,120,92,106,109,101,100,109,76,100,94,97,94,103,96,107,100,113,98,98,114,106,96,105,78,117,105,93,103,95,110,101,102,106,109,96,105,97,107,88,96,90,120,98,108,106,94,108,93,110,105,87,93,86,107,92,101,99,76,109,107,98,101,110,73,113,99,95,115,99,97,89,90,97,96,105,91,104,107,102,92,100,104,92,108,98,104,101,95,85,101,91,94,97,108,108,107,98,98,107,108,107,113,100,102,122,108,97,87,98,93,97,103,119,109,101,109,105,99,91,103,106,102,104,98,99,96,104,110,88,88,106,112,107,116,95,99,109,95,96,116,104,102,109,108,115,104,115,110,111,116,101,113,99,105,102,99,88,105,100,102,101,117,99,100,92,119,106,96,101,103,109,103,105,104,102,91,103,88,83,101,110,106,98,99,136,96,98,102,101,102,99,108,103,100,97,103,108,109,84,105,109,101,98,104,93,113,101,103,106,106,99,98,95,95,106,99,95,112,97,102,99,112,100,96,106,112,112,99,106,101,105,95,102,93,92,91,101,95,104,103,100,88,99,105,91,102,95,95,100,92,117,109,113,105,115,101,109,90,67,99,123,106,98,83,97,96,80,105,90,103,103,125,108,110,104,100,107,103,109,111,96,99,106,106,99,99,102,105,102,90,87,97,104,108,103,102,107,96,114,91,116,120,104,98,91,102,99,97,99,107,105,93,94,101,92,92,100,111,92,81,100,95,92,98,102,107,102,92,102,100,105,103,97,110,110,104,101,98,100,111,103,104,115,111,104,107,100,107,92,101,114,91,106,109,94,111,113,102,97,99,105,89,97,99,80,109,100,95,117,106,115,107,120,101,98,102,105,98,107,107,106,109,103,101,108,109,100,116,105,110,95,116,102,102,102,104,103,140,103,109,102,106,99,101,98,74,97,107,80,101,101,96,95,95,103,97,97,93,93,106,101,105,97,98,100,108,103,96,100,106,100,108,103,90,93,112,95,111,109,97,111,95,87,114,106,87,103,94,83,116,100,98,102,93,92,98,100,96,101,109,89,102,98,98,106,106,86,95,88,108,116,98,98,102,113,111,96,108,99,76,93,100,89,79,93,106,111,115,105,105,86,118,100,96,94,107,108,101,97,102,103,99,98,98,91,117,105,104,103,100,103,79,111,103,110,106,105,79,106,109,97,106,101,97,100,96,108,97,106,96,104,104,98,95,97,98,94,91,93,104,104,100,105,111,117,103,102,106,99,117,107,96,99,90,86,106,102,102,92,101,107,71,112,97,107,90,97,97,103,97,104,101,98,75,96,98,94,90,99,107,93,111,108,101,109,109,67,95,106,99,105,97,102,97,115,94,93,113,95,119,91,101,107,100,100,97,103,110,109,91,108,110,110,113,91,106,99,98,109,104,95,90,91,95,95,133,69,125,95,106,103,100,101,102,109,103,106,97,109,90,113,92,102,108,96,92,92,94,94,99,100,94,101,105,100,98,96,107,100,104,103,97,99,111,106,93,103,117,106,112,100,87,100,100,102,115,98,95,79,111,102,105,93,72,115,98,100,100,108,99,100,107,88,112,109,95,123,105,114,108,96,107,107,92,112,103,110,95,91,113,93,97,112,104,111,98,108,104,105,101,97,102,98,95,84,107,107,98,93,100,106,102,103,93,97,101,103,96,108,95,109,100,97,99,105,89,113,103,101,103,106,96,109,109,89,105, +407.08719,116,88,94,92,103,95,94,82,89,98,106,112,91,98,95,101,94,88,103,102,104,92,97,97,85,112,103,98,91,101,105,117,111,93,94,101,107,99,93,89,96,102,90,86,102,109,107,101,95,118,95,100,102,105,74,102,96,86,99,95,95,108,104,108,114,103,100,106,105,101,119,88,99,91,104,103,83,94,103,106,98,101,99,100,103,105,99,101,104,106,118,98,111,96,106,94,99,104,105,95,95,99,96,98,88,87,99,108,113,98,92,91,98,86,96,97,102,102,118,105,92,101,107,87,104,74,97,94,106,101,94,103,95,105,106,96,113,93,103,94,96,94,98,98,95,91,103,100,96,91,89,97,112,60,98,91,108,92,103,98,102,106,100,97,101,103,100,91,92,95,87,106,111,94,107,102,103,102,101,92,93,99,98,100,98,87,94,94,99,102,92,94,99,95,94,111,95,96,111,100,90,91,104,101,102,103,98,110,118,97,87,93,105,101,97,102,92,92,97,98,102,97,88,102,98,87,99,106,92,108,102,101,96,91,110,103,102,91,100,104,102,104,109,95,103,94,102,101,103,101,95,101,98,104,96,94,105,87,96,100,97,107,99,99,92,107,96,102,91,99,103,101,100,99,108,105,99,91,96,100,105,99,99,99,110,116,101,104,99,108,98,103,106,100,91,90,104,98,99,91,96,102,99,111,91,97,92,117,94,106,99,90,92,110,99,95,105,103,95,92,103,96,101,91,95,96,90,96,111,113,112,92,99,101,102,113,102,100,103,101,105,106,101,100,96,99,104,101,107,92,96,94,96,98,113,87,104,101,100,108,102,102,102,96,89,106,100,101,107,99,98,113,97,87,94,104,107,105,98,93,103,94,108,107,100,99,98,98,105,90,103,101,100,102,104,106,83,93,102,116,95,97,105,92,99,86,101,102,102,100,83,102,110,104,104,104,96,97,99,100,75,101,99,101,114,104,94,101,100,97,104,97,100,134,108,96,102,100,81,85,105,103,73,87,100,82,94,100,103,107,76,104,93,110,88,110,101,98,103,109,99,86,102,111,100,108,102,102,102,95,90,98,94,100,107,101,98,108,107,110,110,104,110,110,93,105,108,93,95,99,112,107,100,107,85,107,101,102,111,92,103,99,106,86,97,104,84,98,85,103,97,98,91,102,111,98,103,94,103,99,105,104,104,96,101,98,88,97,98,92,92,102,105,95,91,112,109,109,91,97,103,105,105,104,102,94,106,104,100,98,93,101,98,110,95,108,104,100,103,98,99,88,90,100,96,102,93,109,91,100,100,103,99,102,101,111,74,102,89,106,110,100,88,99,105,97,112,89,101,102,100,96,96,103,96,106,94,120,114,100,95,114,92,109,103,118,96,100,109,102,96,98,102,104,101,94,101,102,103,101,88,113,98,95,107,92,99,109,76,100,100,103,102,106,88,101,95,102,107,87,105,105,105,92,113,95,100,105,102,119,98,91,106,100,96,99,104,94,105,95,106,96,101,99,94,103,100,134,101,100,105,103,100,94,101,102,98,98,103,98,101,98,100,99,96,96,101,105,103,111,93,109,111,105,110,110,94,109,85,97,109,106,98,98,106,102,93,104,106,103,101,91,97,99,95,83,108,95,96,96,102,96,99,100,102,101,102,97,102,91,107,114,105,104,99,101,105,93,82,91,103,100,96,106,90,93,87,107,106,103,102,96,97,99,71,100,100,109,101,94,100,90,97,90,92,90,91,93,99,103,101,108,101,102,90,95,109,102,109,88,102,105,100,109,100,110,107,97,100,104,92,105,105,96,91,94,108,99,102,103,92,101,102,99,115,107,105,114,95,106,100,100,88,91,103,114,107,100,107,111,109,103,105,96,102,110,108,76,108,102,90,106,95,87,84,107,106,106,99,102,97,100,99,107,98,101,107,94,97,92,98,101,95,103,96,103,92,89,90,104,99,92,92,99,101,94,87,101,109,109,106,99,101,103,87,100,104,101,104,94,103,112,87,105,91,90,92,106,100,99,98,100,99,98,126,98,106,98,84,100,100,102,99,99,99,99,120,106,102,96,104,99,105,98,98,92,101,108,100,95,94,100,109,97,100,98,94,114,107,108,102,101,94,105,96,112,103,91,100,97,105,107,99,104,100,102,93,103,91,105,97,103,97,106,104,109,102,100,95,95,101,99,93,106,99,97,100,97,87,97,84,114,104,91,96,98,104,109,97,93,108,120,99,105,102,104,88,90,76,95,104,98,91,93,105,92,99,98,92,98,106,99,91,107,112,105,107,94,93,108,94,103,95,110,91,103,99,110,100,90,112,101,73,87,100,90,98,105,100,106,91,100,100,95,108,95,105,104,83,110,102,101,100,103,103,105,95,95,101,109,93,102,94,97,104,100,100,101,104,95,88,96,97,107,100,95,113,106,95,92,107,106,97,102,94,115,100,92,98,98,100,91,81,104,100,91,103,79,100,96,98,94,103,99,91,92,88,106,97,98,90,102,117,91,109,104,109,102,96,98,103,104,98,103,98,112,106,98,85,96,101,107,92,100,104,99,122,101,101,100,112,103,118,100,100,98,99,104,92,96,106,95,99,100,104,109,98,97,108,102,106,86,102,111,104,97,106,102,103,93,106,93,103,93,91,92,109,99,106,81,97,109,103,94,101,98,103,98,103,95,101,107,92,96,94,110,111,87,87,116,94,100,91,110,105,108,101,96,112,108,99,102,101,103,96,109,91,110,99,99,100,91,89,100,96,82,112,100,109,101,114,111,92,91,107,95,100,95,94,112,110,102,97,91,100,104,100,117,102,103,114,100,102,96,85,104,104,103,96,94,107,97,110,98,100,89,104,110,107,104,96,113,104,101,130,100,94,113,105,112,110,100,96,109,106,106,80,107,96,110,97,103,110,97,98,103,96,91,111,110,103,101,101,96,99,101,101,105,104,104,95,105,101,106,89,103,92,95,109,101,92,104,102,103,103,106,109,94,101,96,91,113,105,91,113,98,100,95,114,100,98,94,96,110,108,111,92,108,99,102,100,101,104,93,101,108,102,96,105,106,92,100,70,91,95,96,104,100,99,106,87,108,106,100,99,93,106,100,94,102,100,104,90,102,99,105,104,104,95,111,115,98,96,94,104,110,102,112,102,97,93,97,104,96,111,87,95,104,99,101,106,108,95,115,108,102,113,106,102,104,102,106,100,80,96,89,94,92,107,100,102,106,95,103,104,108,99,94,102,97,106,97,104,97,103,103,90,101,88,104,111,91,75,95,100,95,96,113,101,99,96,97,100,103,96,102,102,98,113,92,98,101,97,99,96,107,99,99,109,90,83,111,97,95,111,101,105,100,111,94,102,111,98,96,111,105,101,107,101,94,108,104,94,99,98,101,94,107,101,96,96,113,116,110,109,105,105,91,106,112,113,102,100,107,98,92,109,100,94,108,82,101,113,96,95,94,99,109,104,100,104,120,103,89,91,93,97,102,106,106,104,97,93,102,98,106,93,99,118,102,98,108,94,100,102,107,115,99,97,108,100,101,106,96,103,135,104,95,91,106,119,96,106,101,91,98,94,87,95,87,88,102,106,108,98,102,89,113,90,99,108,114,104,101,109,105,97,106,106,93,96,98,112,94,100,103,118,110,113,107,95,97,113,96,99,115,93,87,83,101,93,106,93,104,100,100,97,95,102,113,108,87,102,98,106,98,106,102,101,93,91,85,107,91,102,104,98,103,95,86,94,100,101,101,103,111,98,100,100,98,100,104,95,105,104,106,96,90,104,100,95,106,107,94,103,100,116,96,92,107,124,81,103,119,84,106,103,104,92,110,107,104,94,98,95,108,99,109,98,96,98,107,94,93,105,98,98,101,98,94,105,96,93,94,98,99,105,96,107,96,90,99,108,113,94,107,108,98,112,106,100,97,105,109,118,90,103,107,106,105,102,92,98,100,87,116,87,100,106,102,102,103,101,106,97,106,104,98,106,107,101,103,91,108,107,108,97,96,98,97,110,96,100,107,99,66,112,92,105,97,102,102,91,109,108,111,104,88,114,102,106,95,105,106,97,94,99,107,101,98,101,102,98,92,107,99,100,102,99,104,109,104,101,97,103,102,109,103,98,111,91,96,98,102,84,104,101,101,117,107,111,86,79,110,99,93,111,101,89,88,116,101,101,102,117,105,95,110,103,87,105,96,100,101,115,94,105,108,86,109,100,96,100,100,91,102,92,111,102,98,84,106,92,91,101,101,98,106,108,97,64,98,103,102,99,99,97,104,84,91,95,98,99,104,103,103,101,99,92,101,105,100,120,112,106,95,104,105,99,107,99,96,105,107,93,103,106,98,106,112,103,98,110,106,96,91,103,100,88,95,96,91,106,104,99,93,103,105,82,91,107,97,87,93,113,113,91,92,92,95,111,100,87,93,100,95,90,101,100,97,102,109,106,100,124,98,110,103,100,115,94,91,99,107,106,89,94,79,104,110,87,100,90,99,105,108,97,100,97,99,89,96,94,91,101,105,111,101,85,103,100,99,105,106,106,98,92,83,88,106,109,98,105,100,93,105,109,109,94,105,107,97,101,103,100,101,96,102,101,98,83,99,95,103,94,96,108,113,103,107,92,84,96,102,103,102,98,109,88,101,99,98,100,99,110,94,95,102,83,95,94,102,95,91,95,99,103,113,94,105,98,111,99,97,94,97,106,85,106,102,92,97,105,97,98,112,103,101,108,101,109,105,109,99,102,110,104,102,92,124,100,116,108,111,102,111,91,74,109,99,91,103,102,107,115,96,95,104,85,90,108,88,76,105,105,113,92,96,95,100,118,97,80,99,95,105,98,93,99,102,101,83,93,88,97,95,105,106,101,73,98,95,80,100,106,103,104,107,96,81, +407.22736,98,90,97,105,100,124,105,91,99,104,87,95,94,102,104,104,96,103,96,96,108,93,97,133,102,107,102,102,104,112,88,93,92,110,103,93,97,99,99,107,102,105,100,97,100,90,129,108,109,110,101,90,106,109,105,99,105,97,99,98,100,96,104,98,121,94,98,109,102,108,114,101,109,117,89,97,91,108,98,107,99,97,101,102,98,84,102,107,103,88,103,107,103,94,96,92,102,104,113,101,101,99,97,103,101,95,90,109,102,95,105,97,102,106,103,102,99,98,107,98,102,105,95,99,114,101,105,100,103,108,109,113,91,104,101,99,90,102,93,120,97,103,96,110,101,108,105,99,96,104,97,107,92,97,107,96,115,88,104,106,107,104,103,118,97,94,102,98,89,95,92,105,90,85,97,95,101,87,109,109,94,102,94,93,113,105,100,92,95,100,87,96,103,106,103,94,94,101,95,104,101,93,94,105,91,82,84,108,103,116,60,99,97,100,101,105,106,106,97,114,112,123,94,100,101,96,98,107,107,95,91,97,98,105,101,108,110,98,98,105,97,91,100,105,97,92,100,101,96,113,106,115,106,77,91,111,103,113,92,95,91,102,97,104,107,101,99,98,114,91,97,105,104,107,112,103,93,102,95,106,109,103,102,109,94,111,105,96,100,91,108,101,107,99,109,114,95,106,107,97,105,99,114,99,90,102,111,109,107,101,86,101,109,108,98,120,111,92,121,93,101,101,101,110,100,95,107,90,100,96,109,92,101,90,108,104,105,106,104,106,102,94,104,98,89,106,95,115,107,105,97,102,103,105,104,98,102,113,104,107,101,100,105,99,97,71,95,107,98,98,103,82,109,93,100,103,110,99,100,106,105,118,95,105,98,108,97,95,102,104,109,104,99,104,103,96,104,96,95,117,104,106,99,103,99,96,98,104,92,95,101,92,94,109,110,98,99,109,94,94,93,102,99,88,89,86,106,96,105,112,112,105,94,96,100,104,94,97,97,98,106,101,110,98,109,100,95,110,103,107,102,115,102,107,98,101,105,102,108,98,94,90,112,112,93,110,113,102,96,75,99,102,105,115,108,96,107,94,105,118,110,94,94,97,105,105,117,108,103,99,86,106,90,103,95,95,88,103,93,94,90,103,87,104,103,95,103,100,89,99,120,114,99,97,100,103,91,102,105,95,65,106,116,108,99,108,107,101,93,101,101,98,103,96,94,93,92,106,94,113,99,101,96,98,107,98,104,108,102,104,113,98,95,107,112,111,102,103,108,95,100,109,89,96,106,106,103,108,102,103,90,98,98,101,104,107,108,101,107,126,106,97,100,109,106,105,102,110,108,95,109,104,92,103,97,99,100,93,99,97,112,100,103,104,100,97,107,101,102,101,98,99,103,95,109,101,98,102,116,91,101,104,109,99,114,102,100,100,106,97,102,99,98,108,91,99,134,105,106,114,105,101,100,99,87,93,103,92,95,106,96,99,98,109,78,112,92,118,95,105,111,104,99,96,99,96,104,107,105,101,102,113,93,97,101,96,105,102,92,100,94,92,111,83,94,94,110,106,95,105,106,109,101,109,93,97,102,98,99,95,101,95,101,95,105,95,82,86,101,108,95,95,109,100,96,88,93,92,103,104,102,93,100,102,84,101,100,102,98,109,104,104,98,106,91,94,109,97,107,112,114,110,103,104,103,102,116,110,104,109,99,99,115,93,100,98,96,94,117,94,95,92,86,95,99,101,103,81,82,99,104,101,99,90,106,109,97,121,102,96,107,77,104,108,112,109,99,108,102,95,96,93,96,105,107,96,91,105,98,105,99,103,97,93,105,102,91,106,98,87,111,91,95,89,101,104,107,96,96,113,98,95,101,104,101,103,96,117,113,103,99,92,102,98,83,97,115,100,96,96,108,108,99,98,107,98,103,108,101,97,108,96,106,96,100,101,97,107,100,107,106,96,98,100,108,97,100,109,104,104,98,101,99,122,105,101,108,90,100,87,112,98,101,125,109,103,91,100,91,120,86,108,110,116,95,97,94,101,100,106,113,103,103,117,99,106,89,96,88,104,104,68,94,101,101,92,100,105,106,102,99,94,99,94,94,111,99,106,102,92,100,109,100,103,96,100,92,100,95,100,97,108,100,89,100,96,101,86,98,108,102,95,108,100,120,93,104,105,92,98,109,105,94,102,113,98,74,103,121,101,101,102,93,98,103,93,98,99,88,99,112,106,102,97,114,98,98,109,108,97,96,103,99,92,100,96,96,103,107,118,94,95,102,105,100,99,109,98,93,84,92,98,103,102,111,104,93,107,94,107,105,96,111,97,95,108,86,95,92,99,81,94,100,107,100,91,99,113,104,105,108,96,108,106,97,98,97,90,104,99,110,105,97,121,92,115,90,100,106,100,97,104,109,100,104,109,95,114,110,104,79,102,104,113,105,107,99,111,96,84,106,109,99,99,102,97,99,91,94,104,101,92,92,91,109,104,96,109,111,108,103,93,99,66,85,121,106,95,105,101,91,113,105,105,98,92,104,106,101,94,113,98,106,99,105,101,96,100,104,109,109,105,97,96,99,101,94,93,92,105,111,91,97,91,97,102,104,99,88,93,99,90,104,100,98,100,84,100,97,113,109,91,87,92,100,106,87,105,111,91,99,101,98,100,90,94,109,105,95,98,96,105,106,95,100,101,96,103,97,124,102,104,96,113,102,121,90,101,101,127,107,110,105,98,92,110,97,98,105,97,101,97,96,108,91,87,99,95,105,107,105,101,105,86,113,91,105,101,101,101,89,95,99,105,104,94,102,105,108,108,99,105,104,112,99,109,105,103,109,108,90,94,110,102,93,96,114,104,104,101,102,99,100,132,107,95,98,99,111,104,104,129,106,119,103,100,97,101,101,101,93,108,125,93,106,106,100,109,105,96,109,112,91,113,101,98,108,96,101,104,110,93,94,104,95,109,105,97,93,108,104,98,101,104,102,108,105,95,96,105,113,104,109,108,110,101,110,96,92,89,89,99,84,106,94,108,92,94,99,94,101,119,95,97,101,110,101,97,99,103,94,109,96,100,101,100,97,106,104,87,98,106,102,100,107,96,100,100,105,88,109,112,97,97,105,99,97,94,93,97,110,101,107,107,99,96,107,100,99,99,112,104,99,102,106,103,104,102,108,66,108,102,104,100,106,103,103,103,97,96,99,98,100,109,111,109,94,94,101,100,92,105,94,99,96,91,104,101,100,99,111,106,99,120,95,99,112,97,108,98,98,95,102,104,95,93,91,114,104,116,95,108,105,97,95,111,96,99,96,81,106,100,96,116,98,98,103,101,99,101,95,97,92,91,96,98,92,118,100,95,97,105,91,96,102,110,101,110,106,105,105,99,93,96,101,105,120,109,104,101,92,109,90,100,89,87,102,101,78,106,101,120,92,97,105,98,113,92,96,87,107,90,106,79,109,92,105,85,103,98,100,101,87,98,100,102,74,95,98,95,100,106,90,104,93,100,113,99,102,100,100,101,104,100,105,105,100,119,101,93,88,107,113,94,104,113,98,108,97,109,102,88,97,94,110,102,99,111,87,105,103,95,100,100,109,96,101,105,113,122,91,101,98,94,83,92,95,105,102,106,102,104,109,102,101,83,110,85,99,101,98,105,105,100,88,96,96,109,102,100,110,95,93,96,90,109,96,99,87,101,90,100,94,108,101,97,105,115,99,100,99,91,83,94,102,117,110,105,116,111,82,112,78,97,108,100,98,100,105,87,107,87,105,102,95,105,104,103,102,98,102,112,92,95,107,111,101,108,100,109,92,100,107,101,109,111,101,94,84,93,86,104,105,90,99,106,112,96,112,105,110,108,96,104,106,111,109,87,109,98,98,92,93,105,102,102,97,97,94,94,101,102,93,91,101,102,101,99,96,102,106,89,105,103,91,84,97,91,105,98,93,106,100,91,95,101,90,95,100,96,107,115,104,99,114,106,87,102,112,104,97,99,82,115,113,102,101,102,93,109,105,103,121,83,123,94,93,99,86,102,95,108,97,98,109,104,88,109,87,99,102,106,101,108,96,106,97,99,92,97,105,92,104,91,107,103,101,102,105,97,99,95,113,102,100,99,99,105,80,113,102,109,101,95,90,100,104,110,108,94,105,94,97,89,91,93,114,101,97,91,137,87,87,107,98,102,103,109,100,94,104,106,104,103,107,91,105,119,102,88,104,83,112,102,101,97,97,112,105,98,90,105,100,95,94,94,89,90,98,96,100,96,86,98,105,105,86,93,101,109,100,109,90,91,101,106,93,106,80,109,98,110,101,96,97,113,105,99,108,109,92,99,99,105,90,92,105,99,105,100,98,99,99,131,108,107,97,100,94,85,91,106,89,108,88,101,106,104,118,95,71,104,97,96,110,105,105,112,103,102,104,98,97,84,89,90,100,94,101,102,99,100,104,116,113,104,99,94,98,103,90,87,93,91,96,96,91,95,110,105,114,74,64,89,87,102,96,90,97,117,98,93,95,106,108,105,105,90,96,94,106,101,96,112,102,87,92,90,102,100,100,101,109,98,93,100,97,93,92,95,99,101,110,103,117,107,90,95,98,106,99,98,88,93,108,105,79,106,96,90,103,94,108,84,105,117,111,92,98,101,93,87,99,110,109,96,104,83,88,104,98,94,106,110,105,105,107,98,93,96,104,104,111,100,114,96,104,95,92,89,96,78,98,100,92,102,102,103,113,103,103,98,98,108,99,83,93,100,100,104,106,99,111,98,99,104,107,109,95,105,95,111,109,105,105,91,108,92,108,107,98,87,113,94,103,91,105,88,101,103,109,87,94,87,99,91,93,100,89,95,87,104,101,105,89,101,94,103,125,94,101,96,124,94,104,91,96,99,92,101, +407.36752,87,98,94,109,84,92,84,109,106,115,95,99,94,84,113,95,93,113,100,99,120,102,101,105,103,110,108,79,109,102,103,101,104,97,104,90,104,100,88,93,96,104,102,97,100,95,112,93,96,95,101,90,97,104,103,105,75,86,100,94,101,95,91,95,105,103,103,102,99,91,104,93,105,98,84,103,103,104,102,110,87,108,102,100,90,92,95,91,96,95,95,93,102,110,105,69,101,92,95,95,79,104,116,86,105,95,105,97,100,91,109,95,99,102,101,106,107,100,113,107,94,103,113,103,111,102,110,93,101,99,90,94,99,108,107,101,93,99,87,99,99,104,108,106,104,105,91,98,99,108,107,102,129,110,96,105,94,93,116,112,97,96,90,82,109,79,92,94,112,91,101,104,96,88,104,105,104,97,104,71,99,91,91,105,98,100,90,96,88,102,87,101,104,120,93,101,109,105,97,111,104,104,95,97,104,99,107,112,113,89,91,96,93,124,85,102,93,108,103,109,86,100,97,103,102,103,97,117,103,108,102,80,105,99,116,99,104,101,102,98,100,100,104,89,103,103,94,94,104,102,95,103,89,95,104,100,86,101,102,86,105,112,95,105,98,87,105,101,95,103,102,94,92,109,103,103,113,105,93,86,95,90,97,98,103,113,95,100,108,101,99,100,106,97,109,116,97,111,96,107,101,114,91,115,105,109,96,99,111,113,95,107,109,99,103,118,99,103,87,75,105,112,97,102,92,110,88,92,106,110,99,99,115,93,105,109,95,94,104,105,92,98,107,93,108,100,102,101,101,97,96,99,113,92,105,95,100,105,113,107,90,106,97,103,103,105,91,109,98,104,105,100,104,96,104,99,101,87,112,105,97,83,101,103,99,93,108,91,101,93,98,93,95,101,94,95,95,97,87,99,100,93,89,95,97,91,100,104,86,95,93,100,122,99,115,93,90,101,110,100,86,101,97,104,107,94,108,99,101,101,91,98,81,95,94,97,97,111,97,108,94,97,100,107,92,89,97,102,99,99,94,88,96,99,96,90,88,105,71,101,106,100,100,103,113,103,98,96,100,102,98,110,93,97,96,100,103,110,101,71,98,94,109,87,100,91,107,96,110,95,91,96,76,97,87,93,96,107,100,103,100,107,114,102,95,92,94,105,93,101,87,89,98,100,99,101,95,107,90,95,107,108,99,103,99,93,117,97,102,109,104,96,92,98,101,109,106,98,95,107,101,102,103,109,110,106,104,101,105,103,92,96,71,97,101,109,87,100,110,94,103,100,108,104,79,101,98,103,104,98,89,104,97,101,89,105,100,115,86,105,92,91,93,93,92,96,109,94,104,100,101,109,101,113,112,96,90,113,96,99,93,99,87,100,92,100,91,104,94,98,96,98,105,99,97,101,103,106,91,108,99,102,103,100,101,98,103,113,106,96,107,97,104,104,99,111,112,97,99,102,98,105,107,96,93,92,102,102,100,103,99,102,103,97,109,110,115,99,108,105,98,102,92,104,97,99,114,98,104,90,115,104,108,98,108,109,109,90,111,96,99,108,109,98,77,87,96,100,98,94,113,101,92,98,98,101,104,105,105,113,113,92,93,112,101,103,102,92,90,97,103,105,98,110,105,110,96,106,93,99,107,109,100,107,105,98,105,109,101,112,92,103,96,106,103,93,97,104,102,105,129,90,104,106,101,101,100,93,110,104,102,97,103,97,100,99,97,106,96,102,99,99,107,96,93,106,88,98,94,88,101,107,97,93,102,100,99,78,99,104,104,120,117,106,93,102,138,102,99,103,103,102,108,98,104,91,99,99,106,94,89,99,91,109,102,108,104,117,104,98,87,102,104,105,102,87,110,91,106,99,102,97,111,100,82,99,100,91,92,110,91,108,95,104,85,105,101,110,99,100,91,101,105,110,101,101,94,108,96,83,97,89,105,109,91,91,105,97,81,97,108,94,104,102,105,87,91,106,102,114,105,100,111,100,87,103,109,96,106,92,115,105,97,106,120,105,101,79,104,98,108,106,100,108,95,95,110,109,94,91,110,98,118,90,104,110,93,101,68,92,105,98,97,78,93,106,102,106,85,102,97,94,101,108,88,107,93,102,95,95,87,108,105,104,101,105,86,93,117,100,104,104,97,96,97,62,98,105,106,105,100,106,105,109,98,95,98,97,102,92,90,101,104,102,100,100,105,91,101,111,90,96,97,98,93,116,96,99,107,105,100,109,104,102,98,114,95,82,86,87,104,106,98,97,107,101,98,105,91,99,102,112,100,94,95,111,100,90,90,109,89,113,108,93,104,110,99,87,98,102,101,102,109,80,101,95,100,98,104,96,102,102,97,101,103,87,103,98,100,96,82,105,85,102,95,117,137,109,101,101,120,103,105,101,109,96,99,96,97,100,100,105,109,92,104,95,99,97,100,103,103,103,97,91,103,100,110,118,97,100,112,118,90,113,96,96,97,80,106,97,108,103,99,100,99,112,104,92,94,103,107,97,109,98,97,117,106,109,112,110,102,104,112,98,102,98,105,92,101,112,106,111,107,100,113,99,90,108,96,91,102,109,106,104,102,110,104,101,100,95,99,101,98,107,75,102,105,107,108,98,118,104,94,101,108,104,111,102,97,101,113,95,110,77,103,102,86,96,102,93,97,104,110,91,97,102,100,98,109,104,105,100,80,104,111,100,114,106,90,108,85,109,140,112,99,108,85,103,104,105,98,98,94,87,110,102,104,93,105,98,101,107,109,98,110,95,99,104,101,94,97,87,97,95,109,100,96,101,104,109,94,102,100,102,100,108,93,87,95,119,104,100,103,83,100,102,101,99,96,91,107,94,102,92,89,90,107,92,100,112,106,95,104,105,109,98,106,104,117,100,107,98,107,107,114,106,91,87,91,108,106,81,104,106,104,107,107,103,105,99,93,113,98,115,99,97,101,95,94,109,98,106,100,117,97,107,111,102,98,107,101,89,91,99,107,99,107,103,101,96,105,108,97,101,98,97,115,117,111,101,102,92,101,116,104,113,88,112,112,102,89,100,117,98,89,103,102,79,99,116,98,106,105,114,114,100,100,95,106,97,106,109,113,98,105,108,99,92,97,105,109,92,104,114,103,102,122,125,93,96,90,112,101,98,120,101,121,110,116,92,105,100,78,105,110,92,101,103,99,110,104,96,94,102,97,105,98,99,105,93,103,100,92,95,107,84,101,116,87,104,102,64,105,109,88,96,108,96,113,100,103,117,113,108,103,88,96,112,104,107,74,95,113,103,101,113,105,80,92,92,94,90,103,76,90,95,90,96,97,111,71,111,100,93,104,110,104,95,98,104,102,101,112,86,92,105,98,96,114,102,108,99,105,109,98,98,97,104,90,89,95,88,101,91,120,102,102,98,108,108,95,89,104,97,100,102,99,88,101,98,105,95,98,102,99,102,107,104,90,100,101,96,111,107,102,96,108,102,123,105,107,91,102,104,105,111,109,108,105,108,102,102,94,105,103,96,96,90,117,114,109,112,101,100,93,108,114,111,82,98,110,103,102,100,95,96,109,106,104,109,112,103,100,100,98,106,98,98,92,92,92,109,60,97,117,95,102,102,107,109,86,97,91,104,104,102,102,98,110,98,101,102,97,100,93,93,99,96,90,96,123,102,113,106,102,91,95,106,111,105,110,102,102,108,101,99,98,101,111,102,107,101,96,101,101,102,106,111,106,101,101,97,97,99,111,96,107,99,94,103,95,105,101,97,95,92,99,100,103,89,108,98,101,112,65,98,94,115,100,113,102,108,99,109,94,110,98,102,92,95,104,103,106,106,90,109,98,103,101,110,101,100,89,110,107,103,107,108,110,104,113,100,106,99,96,107,103,102,102,100,97,95,99,98,102,91,102,104,99,96,102,90,105,99,105,109,93,90,91,101,106,98,112,88,98,101,100,113,100,126,103,106,107,107,96,108,110,113,98,105,110,110,104,105,97,97,106,97,98,101,117,101,100,105,107,89,97,97,89,97,112,105,112,106,108,96,97,84,106,102,109,116,105,105,114,109,103,97,107,90,102,104,102,87,107,100,112,111,100,106,91,113,116,105,99,103,97,113,108,93,107,109,77,95,99,100,96,108,105,110,100,108,100,99,105,106,99,84,103,96,99,95,93,103,94,105,103,91,104,96,126,107,110,111,100,99,102,103,94,99,101,96,91,95,99,94,98,109,109,92,99,102,85,105,104,100,102,95,120,102,100,100,105,103,102,98,99,102,112,105,96,83,104,99,94,107,115,94,99,101,90,95,73,100,108,102,106,105,97,118,104,89,89,97,94,92,104,109,96,101,112,86,103,99,96,106,108,99,101,110,102,109,103,101,105,105,102,99,100,99,104,84,103,98,106,104,110,106,117,101,91,99,97,109,125,119,100,96,102,79,108,108,95,92,95,94,101,100,110,107,100,110,72,102,110,100,100,97,69,119,102,98,98,101,103,106,101,98,110,90,94,91,117,103,88,98,101,105,99,97,109,102,118,104,102,104,99,94,112,102,98,97,112,99,106,99,105,92,106,101,106,116,92,104,95,102,101,103,100,92,92,99,94,113,111,98,95,92,105,100,101,101,93,103,93,103,89,100,95,106,105,98,103,99,98,104,102,102,102,126,96,91,101,98,108,76,107,102,109,108,98,94,100,127,104,98,96,108,85,80,109,109,103,100,96,93,91,103,98,74,101,99,93,111,94,88,96,95,110,97,102,99,92,99,97,133,99,105,102,102,90,72,99,108,106,94,103,102,97,120,108,105,107,78,108,84,92,101,94,94,121,102,116,95,118,107,89,102,102,101,116,103,100,115,103,128,97,86,103,78,100,95,100,101,113,99,90,99,84,111,111,93,118,99,109,109,107,107,107,100, +407.50769,107,90,109,103,107,94,92,108,92,91,101,100,102,105,110,103,86,88,101,118,101,109,108,103,99,103,118,99,118,107,98,104,114,97,99,109,97,92,104,113,90,108,99,103,99,91,97,94,92,101,101,98,82,104,104,92,100,101,99,94,94,94,98,91,105,99,101,103,101,90,95,108,104,104,96,100,85,107,107,91,105,109,101,94,114,97,115,97,104,106,104,100,99,98,106,99,105,95,96,109,99,127,93,96,100,101,91,83,102,104,96,100,99,90,105,106,100,117,88,105,106,104,100,108,81,97,100,98,108,106,101,105,96,105,104,109,99,101,93,98,88,107,103,106,96,95,96,96,102,101,100,112,99,93,95,94,96,106,111,74,72,105,104,90,95,91,94,86,101,97,94,101,94,89,105,112,104,104,104,115,105,106,103,103,100,89,101,100,76,77,108,114,91,90,97,105,93,103,97,61,89,100,87,104,88,97,87,89,101,106,94,92,108,95,108,97,99,102,99,105,95,116,105,106,91,98,105,100,108,96,103,108,87,107,104,114,98,103,98,100,101,93,99,87,104,98,99,100,102,128,105,105,94,100,92,96,99,100,105,108,97,94,99,102,95,103,101,101,93,97,100,89,105,97,106,109,96,101,103,99,92,99,93,97,95,116,92,109,107,88,114,100,96,97,112,110,112,99,107,99,108,99,101,93,95,99,108,100,96,104,89,109,124,106,101,95,100,106,97,97,100,92,108,98,86,100,96,86,99,107,111,98,95,103,102,106,96,102,95,101,94,98,98,97,104,102,92,108,100,104,109,95,92,104,90,95,98,100,98,111,96,102,96,97,95,91,100,108,98,94,93,107,104,105,99,100,87,100,93,97,111,105,100,100,105,99,93,96,117,94,92,90,100,106,104,89,98,102,97,108,99,101,97,92,96,98,98,93,105,80,88,99,94,91,113,99,100,100,106,90,97,103,101,109,100,110,94,118,91,99,98,92,95,102,107,98,103,108,99,94,99,88,86,110,103,106,80,94,100,124,102,91,98,96,98,100,97,99,94,59,86,86,111,106,92,99,97,98,103,100,100,98,103,105,91,94,108,94,103,94,102,98,101,88,100,105,103,105,100,92,99,98,102,93,97,97,85,105,96,102,102,88,91,107,100,96,84,102,97,105,107,99,97,113,98,104,103,91,101,92,100,94,102,103,109,106,101,104,101,104,109,98,96,93,89,95,101,118,103,107,104,144,106,91,99,86,81,103,97,94,100,102,100,97,90,103,101,104,103,99,98,96,104,107,93,105,108,106,111,100,113,102,91,107,86,115,99,91,103,109,98,108,110,88,91,97,109,98,103,103,107,98,102,101,104,120,99,103,108,92,91,98,112,107,99,100,101,109,102,116,98,100,100,104,100,101,101,106,102,103,99,106,100,104,105,102,97,109,101,105,89,96,98,103,101,100,97,100,105,106,112,107,102,95,108,88,72,101,104,117,102,104,105,95,106,95,102,107,104,107,107,95,95,103,88,109,117,91,104,97,98,107,104,100,101,98,108,98,102,99,103,109,108,98,95,97,110,90,103,104,109,111,101,116,105,91,114,95,112,108,108,87,96,101,104,101,101,99,93,98,113,96,100,105,101,95,112,109,108,122,103,100,101,99,94,100,90,101,99,96,105,94,87,102,97,97,103,100,107,114,110,90,92,111,88,103,127,105,97,104,100,96,93,95,101,101,102,86,104,90,105,106,115,101,88,113,100,96,106,105,118,92,100,79,98,96,91,96,101,101,104,101,102,113,98,104,120,91,93,101,94,103,99,92,101,106,101,103,98,108,100,96,104,109,101,86,92,87,106,91,105,104,103,89,105,98,112,106,91,92,114,105,104,105,100,96,99,88,89,87,96,103,91,102,105,108,103,109,105,95,114,109,116,98,105,105,93,103,104,96,86,94,98,102,91,111,99,108,98,104,94,101,86,97,106,91,106,100,105,105,111,100,105,102,92,93,110,98,99,88,102,87,96,105,101,114,100,106,93,101,102,89,98,107,97,88,94,95,89,105,111,103,103,108,107,102,91,110,99,97,102,101,107,104,108,103,97,113,107,94,113,102,104,114,94,103,104,106,97,98,98,109,106,112,98,118,97,98,108,103,104,95,98,111,98,98,96,99,94,126,94,103,102,99,93,112,103,100,111,102,100,103,90,103,108,90,107,85,99,99,104,98,104,98,111,96,106,104,94,105,101,105,94,93,98,102,93,93,105,95,102,107,107,94,106,98,93,104,105,97,98,108,102,105,126,104,105,94,100,94,106,89,88,107,99,99,107,105,98,108,96,99,100,85,104,102,114,100,101,103,96,86,102,105,106,112,77,104,105,89,99,102,83,98,103,87,120,83,102,111,110,100,95,97,86,100,93,99,89,97,96,114,88,91,103,108,85,97,102,98,104,113,130,107,100,95,99,96,86,107,83,90,88,104,99,87,69,103,106,95,97,93,90,95,101,102,105,101,96,95,96,95,116,96,102,106,99,97,92,100,104,108,104,103,95,112,102,94,96,101,100,95,91,99,109,103,98,100,102,97,109,100,108,95,88,108,93,119,97,104,108,99,89,102,100,102,94,103,98,96,109,91,95,83,97,105,100,105,101,109,105,103,95,98,98,114,102,96,104,95,97,100,99,106,98,106,97,85,96,98,102,96,99,108,106,108,109,93,100,107,99,106,95,96,103,101,94,95,111,106,88,106,105,102,106,98,92,114,101,84,99,99,97,96,103,104,100,95,104,101,123,101,93,97,105,103,105,103,103,111,96,95,97,103,95,98,94,100,111,110,115,93,98,106,96,105,113,96,100,103,78,105,98,105,95,95,96,87,110,101,95,104,101,100,105,92,103,103,100,113,103,95,94,98,101,109,101,108,108,115,100,106,95,100,91,107,94,90,104,105,94,90,88,93,107,91,95,98,93,98,114,99,83,99,104,90,100,95,99,98,96,98,100,102,99,98,97,92,98,111,102,91,101,94,102,91,109,109,101,92,96,103,96,95,109,96,90,98,100,98,107,91,103,89,91,100,107,103,101,107,114,97,95,101,100,106,89,101,98,91,102,114,121,91,116,94,110,99,99,97,108,98,101,107,105,92,104,97,108,91,92,96,104,108,104,98,109,86,100,97,98,95,107,110,98,104,117,101,99,100,106,105,97,101,94,104,105,111,97,97,95,102,91,100,87,90,102,98,103,106,106,104,101,88,85,95,103,97,99,96,104,103,96,99,97,103,95,108,96,109,91,88,107,90,107,106,99,100,98,95,100,72,96,103,100,105,95,106,102,103,95,75,106,103,132,102,104,101,99,96,96,96,101,89,98,105,93,108,94,95,104,105,96,95,110,95,108,102,106,98,108,92,80,113,103,101,99,90,105,92,98,108,101,98,95,99,91,109,100,95,99,100,105,96,82,101,100,101,94,115,101,108,94,100,94,121,100,99,101,91,98,107,102,86,90,106,93,103,110,93,109,98,108,102,95,109,113,105,102,93,95,99,102,103,104,84,98,97,99,104,109,111,105,98,115,113,105,91,65,104,91,101,108,102,107,110,104,93,99,100,103,96,94,93,101,97,100,92,101,108,89,100,102,86,87,93,103,108,102,95,101,98,108,99,84,95,92,104,85,100,95,104,100,106,94,97,81,97,102,90,99,103,111,90,90,94,105,100,106,105,104,106,94,91,135,99,103,101,103,98,96,91,103,90,102,98,109,101,110,90,113,80,104,96,95,99,95,103,97,95,109,108,96,99,100,96,102,80,113,95,98,91,93,104,104,93,101,103,98,92,113,86,105,101,98,99,93,87,101,111,90,106,104,94,103,95,91,121,95,96,89,103,91,102,106,105,113,107,100,106,106,101,111,88,102,87,103,100,104,98,95,84,135,103,114,93,100,95,98,105,94,99,105,89,99,92,104,103,100,106,99,113,90,111,99,107,106,100,98,97,98,105,90,103,95,98,95,105,95,113,99,92,107,101,109,98,100,82,100,101,89,80,95,102,101,105,91,88,86,99,96,103,91,97,97,111,102,104,107,99,91,102,103,100,102,95,100,107,101,103,92,98,99,107,104,104,95,101,97,99,104,87,121,114,91,104,95,104,88,105,98,69,97,103,108,98,99,110,114,98,96,102,99,99,99,103,100,103,96,102,108,122,99,97,102,103,92,109,98,106,102,87,94,100,97,120,100,71,109,105,95,88,96,99,108,106,99,102,101,102,83,100,98,96,82,91,87,131,106,101,102,93,104,106,124,77,109,92,92,101,106,119,93,96,99,129,107,96,107,100,101,103,112,105,115,111,100,97,87,97,109,99,96,97,110,97,104,92,108,91,94,96,96,99,99,93,114,98,104,99,103,98,91,106,105,96,114,91,100,104,100,95,96,105,94,101,97,79,108,83,109,98,97,104,92,106,98,101,104,97,103,112,95,103,108,97,96,101,75,104,108,88,92,100,106,106,95,107,102,104,106,95,97,106,99,99,105,113,103,96,94,88,95,95,103,107,97,109,98,102,88,96,97,91,106,92,106,87,106,102,90,104,90,106,107,101,96,103,86,84,97,88,102,100,101,97,115,96,121,107,100,102,109,95,94,101,113,102,106,97,115,98,110,101,92,117,97,108,109,96,100,91,112,102,99,101,94,91,89,99,98,86,105,96,104,105,109,105,104,98,87,113,100,105,100,94,99,96,110,99,94,103,99,102,90,98,98,97,101,108,93,90,109,106,92,109,92,102,105,107,94,103,102,99,100,98,115,102,91,97,87,90,93,74,96,99,99,93,125,97,109,141,95,97,74,100,104,100,93,100,104,103,85,99,89,107,77,99,95,96,106,102,96,97,102,104,101,105,90,97,112,98,100,102,105,80,90,107,90,96, +407.64786,99,92,89,91,96,100,99,104,98,102,98,111,114,104,98,98,87,104,96,85,103,76,100,86,98,104,100,95,96,93,109,107,91,96,95,104,97,104,105,96,110,98,91,108,100,105,101,96,126,107,82,93,104,116,101,89,99,97,102,103,104,93,95,85,100,112,96,106,108,93,97,113,105,93,86,103,100,96,97,108,101,107,102,93,107,101,84,94,105,99,91,97,95,101,93,90,99,99,102,102,103,100,100,96,94,113,93,96,100,93,106,95,115,90,114,99,97,99,105,109,123,95,103,106,100,109,110,99,104,94,103,105,97,93,109,100,100,105,94,102,92,117,94,101,93,97,97,106,99,103,105,107,129,94,98,88,100,97,93,89,117,96,106,100,102,102,98,93,109,93,106,108,101,102,92,98,94,91,101,95,112,87,102,99,95,95,126,107,112,99,99,108,89,106,101,103,89,113,95,101,87,101,98,106,100,110,101,103,107,93,89,109,104,95,90,100,103,120,99,92,103,94,94,119,93,96,118,110,104,99,98,102,96,100,98,107,93,95,105,100,95,114,101,65,101,105,114,99,94,99,106,104,102,95,98,79,98,99,94,113,95,106,108,96,109,104,98,111,93,104,106,103,93,107,104,102,96,100,94,75,103,98,109,96,87,89,95,100,109,99,98,100,110,99,105,109,97,102,104,103,82,103,113,104,93,114,110,104,97,102,93,94,89,107,94,96,92,96,107,90,96,98,105,101,105,104,92,100,99,113,100,111,117,101,110,98,97,104,98,96,98,107,67,102,97,116,91,102,100,99,104,108,109,97,90,90,94,91,100,101,104,98,85,101,101,117,107,97,97,90,109,109,84,94,99,103,107,115,105,91,110,115,109,119,98,99,102,90,116,91,103,107,100,104,110,99,87,107,99,116,100,108,85,78,102,81,104,100,102,75,110,95,93,118,96,91,90,101,113,98,90,107,81,102,93,96,95,98,97,104,90,112,105,82,86,106,86,115,103,103,103,99,94,95,106,102,100,104,102,94,92,92,87,89,99,94,103,96,103,125,89,82,107,112,96,108,101,103,104,93,100,103,99,75,105,96,106,114,99,106,94,94,100,94,96,95,99,127,92,98,95,91,96,101,83,112,106,115,102,106,111,101,96,91,94,101,109,116,103,105,102,105,106,100,92,107,94,91,97,93,114,100,91,111,113,106,103,89,92,100,96,101,106,111,98,98,100,100,107,99,107,106,110,105,79,104,98,110,115,104,96,91,120,94,128,98,102,95,100,97,86,94,101,85,100,106,104,100,101,106,91,93,105,108,109,105,91,109,108,105,105,95,106,101,95,100,89,106,95,104,115,102,94,91,103,98,100,100,110,96,95,109,103,70,110,102,97,99,94,116,106,102,94,104,114,93,101,103,100,88,107,106,93,87,98,101,105,102,106,104,109,105,100,104,110,103,97,103,105,103,109,101,105,100,106,107,98,98,101,106,102,105,111,91,98,99,101,105,95,112,105,103,105,94,91,95,99,90,102,96,103,110,99,95,101,100,100,106,111,106,109,109,106,90,100,109,99,108,95,93,108,105,94,113,99,91,104,99,104,108,99,99,94,102,117,109,102,99,105,109,103,103,101,95,102,105,103,120,99,102,109,98,98,100,100,107,108,115,108,105,92,100,102,100,101,98,98,99,97,94,100,101,95,108,94,108,99,104,94,102,87,98,97,97,112,99,110,99,100,100,97,94,93,93,95,100,71,118,110,98,99,93,105,102,108,85,100,104,100,113,108,107,111,106,106,91,105,97,95,116,102,105,106,104,107,101,104,101,102,104,79,104,90,110,104,100,106,101,97,95,101,109,105,94,104,129,101,105,100,81,103,113,105,101,107,110,98,94,101,111,88,98,109,126,101,105,112,100,110,100,108,106,106,98,97,91,90,100,104,77,97,102,88,104,98,109,101,100,107,102,101,100,108,108,91,112,99,104,103,107,93,117,103,105,108,106,94,94,100,110,103,101,103,112,105,97,98,106,111,114,105,105,84,107,110,100,96,95,96,102,98,92,115,101,92,107,102,93,105,95,101,98,105,118,104,95,100,111,103,116,101,99,137,112,100,98,97,100,105,93,100,103,91,96,91,109,98,98,96,105,94,99,95,91,106,106,99,93,100,99,91,99,86,105,92,100,96,101,99,95,93,105,99,94,113,99,98,93,105,96,96,97,75,106,98,114,105,100,121,93,98,103,109,94,99,98,105,109,89,97,106,108,103,99,97,75,120,107,101,98,92,111,93,105,106,99,101,101,104,107,101,107,112,105,113,106,100,99,105,112,109,91,94,104,118,91,100,98,98,97,116,102,105,91,100,103,102,106,95,96,91,98,105,103,99,93,103,116,98,105,104,96,103,99,92,106,110,108,100,98,95,85,101,103,106,94,100,98,105,95,95,88,89,100,102,102,100,102,97,109,106,90,112,94,93,110,95,90,103,99,94,89,98,98,111,94,102,89,100,87,102,91,107,107,88,100,92,105,103,101,122,112,97,99,102,98,108,103,93,115,95,107,95,104,96,105,95,108,104,111,113,112,97,94,107,95,97,99,98,86,88,101,98,103,92,105,80,105,101,111,102,96,107,106,90,91,121,89,99,97,105,96,103,101,124,110,75,100,106,100,97,99,102,96,93,93,107,92,102,91,107,103,102,103,102,103,102,101,107,105,90,103,102,97,100,101,94,91,89,117,97,109,100,97,97,105,103,104,113,93,105,93,102,103,115,111,97,100,113,107,104,102,99,101,94,99,96,111,103,115,95,92,102,122,104,102,101,103,103,80,108,112,104,95,105,116,106,90,88,106,108,115,90,92,91,90,98,98,95,95,92,88,97,93,105,105,87,100,95,94,94,106,103,106,96,87,95,85,112,102,114,102,112,105,103,93,101,104,100,101,125,103,94,92,95,112,100,94,87,90,106,105,96,103,99,98,108,116,93,101,97,111,120,96,106,128,96,93,105,99,107,99,107,104,95,110,96,100,99,97,97,95,101,109,93,83,99,94,100,101,87,104,103,102,103,96,104,101,117,80,97,101,117,81,102,110,99,93,105,98,101,107,105,91,95,75,104,106,96,96,97,96,111,114,100,98,103,102,97,74,85,101,104,90,95,96,96,90,122,102,103,105,99,102,96,112,98,103,100,100,100,102,89,103,93,96,96,103,102,106,93,95,100,98,102,102,102,97,93,110,80,100,87,98,101,106,87,113,99,101,106,106,104,108,84,88,97,103,86,107,106,107,112,94,99,96,113,104,105,106,95,99,89,100,99,122,108,100,105,115,104,98,91,105,102,98,89,99,94,105,97,99,102,92,90,98,106,109,103,97,106,97,98,88,107,108,106,106,92,98,108,110,91,101,97,109,96,99,107,103,105,99,96,92,89,97,95,93,95,99,93,105,97,96,106,94,100,104,100,102,104,100,90,89,106,94,115,97,104,100,106,105,109,102,106,107,100,99,99,98,103,108,108,120,101,99,102,104,106,110,100,96,105,105,99,89,105,100,101,105,100,103,99,101,96,113,98,95,99,105,94,102,95,97,106,101,102,110,101,96,90,95,106,91,95,101,108,94,96,107,84,101,117,91,88,82,93,101,105,99,97,98,99,96,107,94,92,100,104,98,89,97,108,102,96,95,100,99,103,94,104,104,105,96,91,101,105,92,108,101,108,109,114,99,97,102,101,110,110,99,106,102,98,90,99,103,103,98,96,90,109,108,108,117,101,106,112,105,96,102,100,102,99,111,94,100,87,94,110,99,100,95,94,121,105,106,97,102,95,98,112,93,95,106,95,113,97,91,91,106,100,91,93,95,92,95,102,103,102,89,114,117,95,106,109,92,98,105,94,102,101,101,101,100,101,92,90,103,105,92,97,100,107,97,95,99,110,88,99,102,110,99,106,100,98,112,109,101,110,96,91,101,103,111,96,103,99,80,98,96,106,110,102,105,106,109,103,113,99,93,109,102,91,99,114,100,103,104,112,110,99,98,101,108,117,87,90,94,106,92,108,97,107,103,108,103,101,91,102,116,95,112,98,96,88,108,105,96,105,101,110,99,100,100,115,110,101,76,104,110,98,110,112,99,101,116,113,100,95,112,115,99,96,98,102,114,85,105,95,105,95,107,95,101,100,100,98,101,94,113,101,99,107,102,92,98,107,95,94,98,104,99,94,103,102,101,99,107,95,98,120,100,105,75,101,120,94,95,84,98,97,101,90,108,95,128,103,98,95,89,100,95,133,87,109,92,98,94,93,100,100,100,97,85,93,96,105,102,96,114,105,84,109,107,111,96,95,107,104,100,92,82,96,84,81,96,107,94,98,99,111,80,100,97,100,99,109,110,95,98,89,104,92,98,89,97,103,102,118,88,94,99,98,105,95,100,98,106,97,103,113,95,98,87,98,94,96,98,101,100,102,104,111,113,87,93,103,102,113,103,96,86,117,99,98,111,101,106,93,100,105,102,95,100,115,100,101,98,102,102,97,93,101,112,102,95,110,99,99,99,104,90,104,94,90,102,100,95,101,100,113,106,95,100,92,91,101,115,99,105,121,89,102,96,103,105,109,95,107,99,90,88,91,95,100,119,100,100,102,95,91,99,101,105,109,101,101,97,110,95,87,94,106,102,105,97,91,98,75,87,88,94,103,113,100,102,97,85,97,98,95,93,106,97,106,92,95,103,93,88,98,95,93,114,99,107,103,96,106,96,107,88,102,98,107,85,103,101,104,105,100,90,88,105,110,106,103,91,100,98,93,106,111,95,102,93,71,113,100,95,91,95,109,98,107,111,109,100,116,109,109,93,89,88,90,103,90,105,105,83,85,98,105,103,102,104,97,100,98,94,98,109,89,103,94,103,114,87,112,98, +407.78802,93,76,74,109,75,90,107,95,87,102,106,88,87,105,114,95,94,92,92,99,70,95,109,107,96,109,95,102,88,100,73,100,101,101,113,91,97,69,102,100,100,105,109,97,83,110,110,93,97,99,99,99,101,91,100,86,98,113,96,94,100,125,91,98,105,103,104,96,94,95,98,101,100,94,95,104,86,106,94,93,99,97,118,99,84,106,99,97,90,100,113,100,103,92,87,79,99,106,98,70,98,96,95,105,102,109,93,109,103,103,91,104,93,94,105,96,105,98,87,95,103,87,100,113,100,104,113,102,88,95,108,101,102,95,119,94,106,94,99,86,108,108,98,89,95,103,101,92,94,94,103,96,93,93,88,91,96,110,96,101,95,100,102,111,111,96,106,97,102,93,105,99,98,101,98,101,92,93,100,104,110,95,102,116,102,87,90,98,108,89,111,91,88,95,102,101,112,99,95,79,110,90,104,100,101,100,99,100,102,94,91,103,101,101,94,98,89,92,110,102,117,98,96,100,94,103,95,68,91,106,94,92,80,101,99,100,95,98,105,106,107,102,92,98,112,98,101,105,108,96,90,95,100,99,100,117,98,102,90,115,109,100,93,87,93,98,109,105,96,103,101,99,113,106,117,105,101,89,96,91,106,137,87,95,105,105,90,89,92,133,95,100,91,105,98,113,103,102,109,103,99,89,115,103,97,113,96,109,102,95,89,115,106,103,91,103,68,103,102,94,98,116,104,102,102,100,105,109,96,98,101,102,102,99,98,108,93,97,97,105,90,91,99,103,115,102,107,105,95,102,110,100,104,92,115,105,106,113,101,90,103,104,101,93,101,95,110,100,96,102,90,101,99,102,93,101,99,94,95,110,95,91,95,86,82,90,102,105,96,95,107,90,88,103,94,94,95,105,112,120,96,101,88,101,100,98,106,109,95,95,95,101,113,99,102,97,96,102,98,106,109,93,94,92,107,97,90,90,108,100,103,96,90,102,101,92,89,109,97,94,96,106,89,99,100,103,108,99,100,108,101,101,105,83,106,96,99,96,101,92,105,102,112,98,93,104,102,104,107,120,101,112,96,99,101,94,90,102,104,112,98,102,97,95,99,87,110,103,96,93,111,93,96,102,93,104,120,98,97,108,109,71,70,107,86,110,98,105,96,100,110,95,96,96,89,101,114,96,98,86,115,97,105,99,117,101,114,106,102,101,98,94,92,97,103,99,98,86,96,104,102,96,101,96,100,95,99,87,105,100,104,106,106,112,97,114,99,103,98,102,95,102,94,99,109,95,94,89,102,96,97,99,109,101,95,94,99,94,100,103,95,89,105,95,105,99,109,102,90,105,95,119,104,92,104,91,94,121,95,93,105,104,79,106,101,82,121,137,93,99,95,96,109,103,103,105,100,103,108,101,107,96,105,92,100,95,94,84,104,103,81,103,103,107,97,104,103,92,105,107,115,103,83,109,100,96,103,100,107,108,110,95,93,110,112,92,97,80,105,97,99,107,94,101,97,98,102,91,108,104,108,96,110,106,95,113,101,113,104,101,98,98,98,91,74,90,87,92,100,96,102,87,106,106,87,97,95,106,94,79,106,81,87,102,95,101,110,107,99,102,84,96,100,95,92,100,109,94,111,102,92,88,106,99,100,111,103,94,107,112,106,90,103,104,96,96,99,94,111,95,94,95,101,102,86,98,96,113,103,102,103,97,95,104,106,109,102,99,86,103,89,101,100,106,102,104,88,105,95,97,92,105,114,98,100,91,104,107,94,100,108,105,100,107,92,99,108,101,92,99,108,94,100,108,111,95,111,108,99,102,110,83,103,98,103,97,88,109,105,108,103,90,105,99,102,106,117,94,83,105,104,96,106,101,103,102,94,94,105,101,99,106,90,102,98,102,100,120,112,83,94,104,106,101,100,97,87,103,112,84,102,96,98,108,104,98,95,99,90,106,108,97,110,97,124,101,82,88,103,102,96,113,99,114,106,106,110,92,107,94,100,98,109,98,101,105,109,110,108,99,107,108,102,87,105,105,101,104,98,99,116,100,115,80,84,90,103,104,84,72,107,115,96,97,101,85,101,114,101,100,88,100,109,95,108,97,97,99,96,99,94,114,92,96,100,93,95,108,100,101,106,101,97,109,107,104,109,103,116,91,91,104,111,98,105,100,112,85,105,101,113,103,98,109,101,90,89,94,97,104,112,99,89,105,88,68,87,98,104,101,104,102,95,101,88,102,96,92,93,104,112,105,99,106,91,91,117,115,95,108,100,97,102,88,105,107,95,98,94,102,101,110,106,109,99,114,96,83,103,86,102,105,94,92,100,94,94,100,88,100,91,95,101,108,77,85,92,113,95,107,105,120,98,105,100,103,101,104,78,102,99,98,101,103,92,90,100,103,85,103,95,108,118,93,105,102,98,92,99,101,83,89,95,109,95,96,90,103,98,92,104,106,91,103,105,117,97,86,114,127,121,108,97,99,88,98,103,88,101,91,98,100,99,96,106,102,102,107,92,104,100,100,106,98,99,93,90,98,113,102,111,109,96,86,104,111,109,101,101,96,108,101,110,96,81,102,97,96,98,99,98,97,97,109,98,93,108,98,99,99,109,105,88,100,101,98,98,99,86,101,112,84,96,87,105,107,94,94,95,98,95,104,81,100,94,88,99,91,100,96,101,91,100,109,100,104,114,103,100,102,92,92,96,109,111,114,105,90,99,99,100,104,116,103,107,102,103,96,106,95,95,95,101,96,77,95,112,110,103,110,100,114,94,105,107,90,96,102,105,100,90,104,99,120,96,108,98,99,105,102,112,103,112,78,106,103,87,96,99,113,102,96,114,97,109,92,94,105,139,111,74,87,99,95,120,101,98,101,101,103,104,96,105,110,95,97,98,105,105,97,94,100,95,89,81,98,93,101,105,105,96,108,98,109,94,95,94,96,107,97,103,109,101,103,100,101,106,100,114,101,108,102,93,87,114,96,86,99,100,90,99,109,96,104,109,96,103,99,93,89,102,102,93,112,107,108,106,96,102,108,96,99,113,93,101,111,114,102,102,96,93,110,98,105,105,100,96,89,112,93,93,100,91,94,107,104,105,101,96,103,87,105,103,111,109,103,90,102,91,87,101,81,103,107,109,101,98,100,95,95,96,87,97,106,108,102,101,98,115,96,95,100,73,94,102,106,104,111,99,102,70,105,99,98,105,99,102,128,94,115,87,108,94,96,110,83,103,106,101,98,100,75,103,117,103,104,100,115,88,65,98,110,106,99,105,99,98,99,108,86,112,95,105,100,97,102,103,118,99,101,89,91,105,91,98,105,110,97,104,104,95,98,94,116,111,100,103,103,84,102,92,105,107,95,101,121,104,101,99,99,96,103,103,100,96,105,85,100,107,103,93,98,102,104,90,94,104,91,96,101,102,100,101,108,87,100,97,101,98,94,104,88,109,99,87,90,95,95,90,91,106,98,107,91,106,94,106,109,103,111,105,99,95,95,102,104,104,103,101,99,110,93,103,102,92,87,81,80,85,108,106,103,98,91,109,100,95,102,105,112,87,98,96,98,96,100,109,97,101,95,95,83,107,102,94,92,97,101,98,99,93,98,94,109,112,96,105,89,100,113,95,99,86,93,92,89,98,114,103,108,100,97,107,108,97,101,99,128,96,102,106,113,77,95,102,92,89,99,95,104,116,109,104,106,92,73,103,102,94,98,102,106,105,79,103,99,107,102,99,108,92,111,97,69,99,109,102,113,97,98,105,98,106,82,96,102,89,91,90,102,92,98,97,106,109,103,115,97,113,102,97,91,102,102,107,66,111,93,97,98,102,105,119,94,101,96,105,98,95,103,118,109,101,100,105,106,102,111,96,107,105,94,97,115,100,107,105,105,89,89,97,108,105,100,101,92,96,101,113,91,102,106,93,101,110,91,97,87,100,92,100,108,100,105,102,107,106,94,130,103,100,100,81,104,105,102,102,103,94,93,104,102,107,91,108,104,101,116,103,103,118,93,104,105,106,109,106,94,107,105,103,109,89,88,91,101,104,106,105,98,96,103,96,103,113,98,101,111,102,100,97,102,101,103,95,100,108,95,99,111,103,94,99,98,101,112,98,110,102,96,93,98,102,93,103,100,108,112,110,107,97,101,104,99,101,113,107,85,95,113,102,107,96,108,101,98,94,109,95,97,108,120,90,90,116,83,100,94,96,100,104,85,104,100,105,87,83,86,115,101,87,86,95,111,106,106,96,103,105,106,132,96,109,96,102,94,91,81,91,102,89,101,97,101,97,103,102,102,87,109,101,97,111,88,107,107,94,107,97,105,99,131,103,100,89,101,104,97,103,101,105,98,105,108,100,107,97,108,100,104,99,92,88,100,97,93,125,100,102,87,93,97,103,85,81,101,96,93,112,88,106,103,105,100,94,96,89,90,60,98,118,95,101,103,87,93,104,96,102,99,105,92,108,110,87,98,100,111,96,98,100,87,100,105,109,98,95,101,103,87,89,99,91,97,105,113,99,107,91,95,101,108,98,95,111,108,99,92,112,100,103,102,103,104,98,92,104,96,111,96,96,93,92,113,109,108,98,94,97,98,96,98,105,110,87,94,92,107,113,106,104,92,112,109,97,104,112,87,97,91,97,108,93,104,102,104,100,104,93,98,106,98,117,88,103,106,101,99,110,92,90,97,102,99,98,88,99,106,93,89,92,83,95,98,105,94,103,87,101,102,104,105,95,98,95,95,99,102,90,85,98,89,87,93,108,92,103,102,103,100,96,90,94,95,84,99,90,105,93,96,97,110,92,112,95,107,99,90,107,98,108,91,100,101,92,104,104,91,106,78,108,110,90,92,102,101,101,98,92,95,103,102,99,105,102,95,83,109,91,89, +407.92819,96,99,96,89,95,101,105,110,85,102,102,104,79,98,106,99,108,83,101,99,92,86,98,94,98,98,102,91,99,89,100,93,104,102,108,107,88,90,101,95,91,91,100,102,95,108,116,102,96,108,99,100,106,83,104,104,96,92,94,91,93,100,107,104,102,98,102,122,91,76,92,112,112,96,83,111,89,101,100,98,95,104,90,79,101,101,106,115,97,95,92,96,103,88,99,95,100,91,94,94,100,101,95,98,105,96,100,90,106,103,105,103,96,86,99,103,100,99,99,100,101,100,107,101,97,105,107,100,99,99,100,108,100,104,108,93,105,93,99,102,101,109,102,88,99,87,99,102,103,92,104,91,116,97,90,110,113,96,101,96,99,109,98,94,97,102,102,99,108,104,103,102,97,87,93,107,102,99,105,93,99,97,103,107,99,101,90,96,105,105,101,98,92,99,100,105,96,73,101,104,107,96,102,98,78,110,108,99,107,112,91,100,94,92,98,101,96,95,96,99,95,98,102,93,97,110,97,98,94,104,94,90,99,90,95,104,107,99,103,101,101,94,109,101,87,101,107,92,94,100,102,106,98,100,102,108,82,96,94,108,92,107,114,106,100,91,118,105,96,122,105,97,91,99,90,109,98,99,82,100,92,102,100,98,119,104,96,91,97,92,99,87,99,100,104,109,99,94,94,92,103,112,84,114,88,105,102,106,96,117,91,107,87,96,114,102,107,98,107,94,107,90,104,97,97,101,98,98,108,100,102,104,93,95,102,114,103,106,109,110,82,97,117,98,91,102,100,89,102,96,101,99,108,101,101,99,102,105,102,105,110,106,75,96,111,99,97,113,100,82,104,95,110,98,108,88,105,105,88,104,105,108,91,108,98,104,94,95,105,97,93,92,95,106,114,99,104,85,104,97,99,94,105,113,102,92,95,106,105,117,97,96,104,105,103,111,114,97,97,90,99,92,108,98,112,102,96,106,88,109,105,91,83,98,87,102,91,109,89,96,115,100,113,117,86,122,95,90,86,114,98,94,103,103,95,94,105,95,104,100,99,98,104,109,101,99,108,96,110,95,102,107,103,100,92,101,98,103,103,106,94,102,94,105,90,96,108,104,109,105,101,104,105,100,96,99,102,107,93,98,104,95,110,113,94,105,97,94,107,105,102,99,138,95,94,104,98,92,92,92,105,106,108,140,117,107,95,112,101,106,105,101,118,101,105,105,107,103,96,99,87,102,101,85,107,86,103,115,96,109,99,104,105,102,94,101,96,104,101,105,103,98,100,103,94,102,103,102,104,106,81,84,105,102,97,105,97,97,97,100,77,101,97,100,101,99,103,110,103,102,104,105,110,104,104,103,97,105,107,102,101,97,121,94,103,110,92,100,105,99,97,94,101,114,105,95,115,113,101,94,108,114,103,103,114,96,105,94,94,110,107,107,94,94,93,112,107,103,107,101,103,104,93,94,98,96,91,106,96,106,90,92,105,100,82,100,100,109,101,111,104,113,88,99,92,95,100,99,106,105,104,98,79,115,105,106,107,109,105,103,104,101,106,101,105,97,93,93,111,77,99,97,90,88,101,109,98,95,97,93,108,105,109,90,92,104,115,120,99,101,100,116,97,100,94,97,104,99,101,103,97,106,98,98,103,97,109,112,106,104,99,99,82,99,97,94,73,99,112,95,101,108,89,94,106,105,92,98,103,86,103,105,95,103,99,108,106,96,105,97,101,95,101,93,107,95,99,105,105,99,103,103,104,90,110,95,101,94,119,96,97,108,100,97,90,105,100,116,103,94,99,101,98,115,112,99,98,111,97,105,91,102,97,110,106,94,105,88,87,95,87,105,99,101,117,101,99,104,106,107,104,93,109,111,109,83,102,110,104,109,66,114,100,102,96,109,91,102,110,98,93,110,99,111,109,109,91,94,99,96,105,102,93,97,97,105,100,98,107,102,100,102,95,106,96,106,100,95,96,112,97,108,93,96,99,102,110,98,94,90,95,100,109,101,108,88,97,99,91,101,99,112,99,104,105,98,70,91,87,97,98,105,104,105,109,95,97,109,109,87,95,105,109,95,106,96,98,95,116,103,97,95,104,106,105,109,100,86,104,84,105,99,92,89,91,96,101,102,105,96,102,96,101,100,93,94,100,103,87,105,108,95,103,96,102,105,99,99,108,105,100,104,124,101,116,96,97,104,99,105,94,109,97,81,102,110,101,89,100,109,98,104,104,107,108,110,104,97,99,96,90,106,112,99,103,116,90,105,99,102,105,109,108,81,97,101,99,101,97,92,100,104,99,99,108,70,102,92,99,106,109,100,98,99,99,99,103,106,102,84,102,109,103,112,90,84,110,113,96,98,104,102,96,109,95,99,105,111,98,97,94,95,121,108,85,74,106,98,98,87,97,105,92,100,95,90,93,102,98,80,101,93,100,106,99,94,103,101,80,89,117,101,99,101,95,106,107,82,95,88,86,104,87,103,101,105,105,102,102,102,95,92,112,85,108,105,97,109,104,100,95,110,92,95,109,106,75,86,95,101,84,108,112,98,105,105,100,98,114,96,100,114,111,95,105,96,97,99,94,89,101,96,95,104,101,101,109,97,89,105,106,94,108,110,109,91,102,104,103,107,100,91,104,104,84,75,102,101,107,94,104,116,102,110,95,91,109,93,111,88,96,105,102,120,99,108,110,104,104,104,83,100,106,111,106,111,94,89,94,97,106,100,102,97,103,127,103,138,104,99,96,99,101,104,109,98,120,99,93,98,101,94,92,99,114,100,98,92,111,97,107,94,93,100,99,106,101,130,93,108,94,99,98,103,101,103,98,102,82,114,110,93,104,106,96,101,113,109,99,108,108,79,104,100,96,115,94,98,100,109,86,102,100,113,98,110,87,98,98,95,107,91,100,96,120,110,103,98,99,100,106,97,90,101,104,103,102,113,104,113,100,97,97,104,100,95,95,110,104,104,96,100,112,98,103,100,95,92,100,100,105,111,100,105,108,99,109,101,107,103,96,95,100,104,114,98,104,124,105,111,107,107,100,91,105,83,98,100,105,100,104,103,97,95,98,95,93,99,84,105,96,108,101,96,108,94,91,83,110,93,101,106,100,102,118,105,104,106,99,103,109,108,98,101,92,98,95,83,101,105,96,104,107,98,106,95,99,97,94,106,106,102,104,100,95,109,120,97,94,106,84,107,106,106,97,90,96,99,95,102,113,128,106,79,103,95,77,94,100,93,94,98,98,106,108,93,108,92,102,92,103,90,103,87,100,101,97,71,104,99,73,97,99,110,103,103,102,105,100,98,94,106,99,108,98,105,91,100,106,86,100,92,94,101,105,94,103,100,103,100,94,107,101,105,78,117,90,94,105,98,103,94,100,101,100,102,99,103,104,101,93,107,94,90,100,100,116,96,107,97,91,100,92,97,94,105,106,92,99,98,91,102,97,103,99,93,105,103,98,94,106,116,105,91,110,109,83,93,116,106,97,99,86,101,103,99,90,102,99,99,106,113,109,103,97,104,108,68,100,96,90,108,80,96,102,109,104,103,107,100,101,98,96,108,103,100,99,100,99,60,92,108,109,104,100,105,105,99,99,96,102,112,105,104,109,109,88,97,97,112,108,105,99,101,88,87,97,98,98,102,91,92,91,102,98,108,94,96,100,106,94,110,109,105,108,103,107,101,90,101,91,105,91,77,103,102,93,109,98,95,109,102,94,105,105,97,112,107,87,127,97,75,96,86,105,106,96,105,94,99,102,98,100,104,101,94,71,104,92,95,91,95,94,112,101,90,87,103,97,94,110,103,108,95,108,97,99,103,103,91,99,103,102,97,87,97,105,101,91,94,99,108,106,106,104,102,102,101,89,101,103,100,96,98,104,94,90,100,104,106,108,86,100,107,107,108,111,100,95,101,82,91,113,94,87,117,97,104,106,95,95,101,93,104,102,96,96,112,105,106,98,106,91,108,109,108,104,93,111,108,108,110,92,112,106,101,97,95,111,103,108,99,100,99,89,104,100,105,99,102,102,106,90,85,109,93,101,99,103,95,85,72,95,90,104,96,96,106,104,101,92,104,90,102,121,125,103,104,106,102,99,102,98,107,92,103,98,98,91,99,102,101,109,103,113,96,100,101,96,109,97,92,97,91,102,110,95,107,134,109,119,109,108,87,98,109,105,104,108,99,107,104,98,88,94,108,96,100,96,105,107,109,97,91,100,92,97,95,96,101,85,96,109,99,92,108,92,99,108,96,110,96,90,102,100,87,98,110,96,106,105,91,104,64,99,106,92,95,102,104,97,109,109,89,105,102,99,101,94,98,108,104,98,97,94,102,105,110,94,107,97,70,113,99,97,97,108,102,100,90,111,106,110,110,98,84,104,95,130,94,106,93,103,100,80,102,112,84,88,99,105,92,102,99,101,105,116,101,88,99,97,111,97,112,102,91,94,98,106,100,102,94,97,107,107,101,127,99,96,97,104,95,93,98,102,91,99,99,90,79,91,111,99,110,90,100,88,100,105,107,102,109,83,87,93,95,110,103,72,91,86,109,115,86,98,88,115,97,100,96,90,95,105,109,101,96,98,99,113,93,106,116,100,95,106,100,101,103,98,103,95,103,107,101,97,78,104,100,91,65,91,106,95,103,100,96,95,79,95,98,92,90,104,105,117,106,103,106,96,90,101,104,110,104,98,91,107,107,96,102,89,99,95,98,93,105,108,94,98,101,101,104,83,102,112,110,92,105,102,107,99,102,94,101,94,102,101,84,94,107,102,103,104,80,97,112,102,109,94,100,95,81,92,114,109,97,82,106,95,104,97,115,92,91,87,93,93,103,111,92,108,98,93,108,95,92,108,93,106,110,110,102,96,96,104,94,95,92,90,98, +408.06836,109,98,95,94,82,99,108,111,96,108,95,96,97,104,94,104,103,105,99,114,109,100,99,100,96,102,106,92,99,107,91,98,106,102,102,90,86,92,98,100,116,80,92,99,87,88,80,100,94,104,92,102,101,102,96,99,101,86,113,102,104,117,94,100,116,104,96,103,95,105,110,98,113,110,109,92,109,103,106,111,116,111,101,107,103,96,102,97,110,94,97,106,98,104,97,85,97,100,93,110,95,98,86,87,102,100,87,100,101,101,96,98,105,105,103,95,102,111,108,98,104,95,100,100,102,104,100,102,97,121,95,108,101,98,112,109,91,91,99,103,102,110,95,91,102,97,113,96,94,109,94,90,94,97,106,93,95,99,99,87,90,99,102,107,104,104,93,99,91,95,92,102,95,107,112,109,97,102,106,102,97,99,82,103,100,85,100,91,110,91,95,95,92,98,111,102,95,95,96,110,96,105,98,100,85,100,100,98,116,97,101,98,94,106,97,105,103,119,105,101,97,105,111,97,100,98,102,104,95,89,95,94,95,103,102,111,100,96,100,100,96,96,109,96,102,98,99,92,93,102,100,96,101,105,95,91,95,99,95,98,93,95,97,101,102,101,107,97,99,101,102,93,109,101,102,95,91,98,95,100,91,102,96,105,91,95,96,106,106,106,106,102,101,105,102,94,106,97,119,104,95,87,105,101,84,104,102,114,99,104,103,118,110,102,98,97,98,72,104,105,102,96,94,106,93,105,97,96,102,102,100,100,96,99,106,103,103,101,99,104,92,97,92,106,95,104,80,104,107,121,102,100,90,120,101,99,97,98,97,100,118,108,96,105,102,100,99,99,109,111,108,105,101,109,102,80,101,103,104,107,103,108,99,101,103,91,90,96,100,103,100,89,89,95,101,99,104,94,96,98,113,107,109,105,105,105,90,101,99,96,98,97,103,93,100,97,96,101,105,108,91,100,97,105,92,98,102,104,93,96,95,92,101,105,99,112,99,109,99,116,104,111,95,109,100,105,108,88,94,105,98,102,97,100,108,105,113,107,99,90,106,111,99,107,107,113,100,101,91,93,97,109,104,98,84,94,97,104,88,114,101,98,108,95,101,99,95,94,101,107,93,107,104,87,102,99,101,94,105,93,100,104,98,107,108,105,81,105,109,101,105,99,101,108,92,94,112,92,106,96,104,102,98,108,100,100,103,106,101,99,96,95,95,96,91,90,96,97,106,126,93,105,105,108,107,113,117,95,101,121,93,113,106,104,94,110,112,113,93,91,107,90,96,105,91,94,90,106,111,101,96,93,110,100,91,109,103,103,97,85,108,108,87,95,88,98,113,100,99,87,102,100,91,91,101,101,105,82,92,88,99,96,101,101,104,97,94,90,93,86,92,115,98,99,106,103,99,95,103,93,102,90,100,97,95,104,101,104,104,99,109,100,87,103,92,100,97,96,107,99,113,94,114,126,95,102,105,99,88,107,95,71,108,96,103,90,76,100,97,98,113,96,90,61,96,111,98,100,110,100,101,104,95,99,102,90,91,103,67,100,89,95,107,85,93,95,100,103,101,105,115,110,91,97,110,92,105,106,92,94,97,95,107,96,94,112,98,101,87,107,106,105,107,98,102,98,94,91,107,90,94,110,104,104,104,98,102,85,92,82,103,89,103,92,103,102,90,78,111,91,97,96,100,102,96,98,101,103,98,111,100,96,106,109,108,94,98,98,101,98,95,108,79,104,94,95,88,108,97,95,106,115,107,101,91,105,99,89,102,99,92,114,121,102,96,113,102,105,99,88,98,108,96,103,95,95,103,101,91,97,106,99,106,100,100,106,98,100,114,93,103,107,103,103,93,115,103,91,100,109,94,103,100,99,99,118,100,93,90,101,97,113,85,106,100,95,108,104,99,95,95,93,103,94,90,101,100,104,92,104,106,111,101,95,90,105,96,109,100,96,109,105,113,97,110,108,100,109,99,111,92,99,109,94,98,99,99,97,98,98,72,96,102,110,80,87,104,116,100,108,103,120,97,106,106,91,97,101,98,107,88,100,102,105,106,85,109,109,96,103,91,112,98,104,102,96,98,101,92,99,95,111,117,116,99,99,103,104,100,113,85,94,94,111,89,98,93,100,104,97,121,93,97,114,85,103,105,100,98,118,99,96,91,100,99,104,109,101,92,89,101,103,99,111,99,96,87,96,97,96,92,100,96,107,97,97,106,101,102,99,106,103,90,115,122,93,97,98,94,99,107,95,102,112,104,91,125,103,101,105,105,87,111,91,117,109,101,99,93,97,101,112,105,112,105,95,111,102,107,98,106,105,105,113,109,99,95,72,103,102,109,106,107,90,99,85,105,101,102,101,91,96,90,102,101,95,98,105,106,93,97,102,99,90,97,87,99,105,99,94,102,107,106,117,114,97,97,101,96,109,93,123,97,98,100,95,92,95,98,80,102,109,96,116,107,105,98,108,116,96,99,114,93,98,101,106,89,90,107,118,104,112,90,90,109,110,105,92,87,105,101,125,100,103,101,87,102,108,92,100,106,97,113,95,100,95,95,104,112,94,92,111,95,102,99,103,113,103,106,98,97,96,100,103,103,106,106,104,96,100,113,88,117,105,106,117,107,103,102,97,110,94,108,103,104,103,96,105,101,109,106,101,112,103,91,82,111,107,106,108,105,112,92,101,93,99,112,102,122,108,104,98,120,103,97,100,100,100,100,112,100,104,94,109,104,105,110,102,103,107,102,107,104,108,99,104,102,103,99,104,113,107,96,112,106,111,106,104,108,100,105,92,99,104,103,101,97,105,114,111,101,129,85,107,102,99,105,106,95,102,130,107,127,132,107,103,113,95,96,114,108,93,103,127,96,113,100,107,94,110,113,94,105,100,111,112,102,98,102,87,102,105,101,102,98,101,103,101,108,105,109,120,103,98,104,113,107,87,118,102,110,107,105,104,105,105,99,109,89,83,116,102,90,91,109,111,106,100,104,88,102,106,113,98,102,108,104,117,103,100,109,95,98,108,97,94,102,102,105,98,105,107,95,97,105,96,107,111,107,108,102,102,103,105,111,105,109,112,106,102,94,98,99,102,101,108,104,98,99,94,103,106,107,112,104,102,111,102,110,109,104,100,104,112,108,106,113,103,108,106,90,104,102,104,95,110,98,106,112,106,107,104,97,114,101,96,103,110,113,111,111,101,87,109,104,101,102,104,98,92,104,122,99,102,100,94,116,106,110,110,107,100,100,107,107,101,94,95,101,97,108,111,111,95,74,97,99,105,94,102,107,93,93,104,91,106,102,99,104,98,109,104,103,106,115,97,103,96,112,97,83,91,106,101,106,96,105,110,109,104,109,107,99,108,108,104,88,105,94,102,98,100,101,116,109,107,106,100,117,108,99,107,96,106,96,96,109,117,92,98,97,91,111,116,91,101,100,100,97,76,113,118,108,105,97,101,100,104,95,105,108,93,102,96,94,105,111,99,103,112,96,106,100,106,102,92,102,99,94,90,104,94,95,98,109,98,107,107,90,102,103,104,106,99,90,109,100,112,100,109,106,88,95,95,98,100,90,100,104,98,96,95,98,107,108,93,103,100,99,112,108,88,113,97,100,90,111,94,103,104,105,103,94,104,102,106,92,79,114,113,91,98,108,94,90,98,104,103,98,97,103,122,111,118,97,103,99,96,99,84,104,106,113,102,95,96,104,99,113,96,112,106,101,92,111,104,108,78,108,106,104,109,95,88,95,99,109,89,100,105,95,94,104,99,100,103,116,87,125,91,103,81,97,123,94,101,96,101,106,106,99,107,109,104,109,103,107,103,98,105,90,109,103,101,81,99,102,94,105,105,112,106,97,108,93,103,101,95,101,105,99,106,101,105,99,100,104,110,105,94,101,102,100,124,104,109,105,87,104,101,107,92,101,111,99,100,95,99,108,99,107,112,91,110,107,100,107,103,110,116,113,100,93,113,104,111,102,101,102,111,100,109,115,100,105,123,106,98,104,114,109,99,128,107,109,106,117,109,106,108,105,104,100,113,104,108,93,96,98,95,97,105,98,102,116,87,98,96,102,109,102,106,108,104,111,97,104,116,100,108,102,98,104,112,112,100,103,93,121,113,103,99,98,109,97,118,109,110,108,103,108,98,103,91,96,101,121,99,102,100,109,106,105,120,102,106,94,91,105,87,108,104,99,105,112,106,102,105,93,101,106,93,116,105,103,106,95,102,85,102,95,89,104,108,88,80,98,96,105,113,95,105,110,97,105,88,103,94,92,120,96,83,112,96,104,94,93,97,87,120,105,109,99,103,100,87,107,93,100,102,87,98,109,95,102,112,102,85,105,112,105,110,101,95,100,110,107,109,99,105,95,113,99,112,125,114,106,97,108,106,96,108,100,110,99,104,92,95,108,86,108,97,92,99,104,104,98,103,104,91,125,107,106,105,95,110,100,98,119,98,104,117,113,96,106,117,87,107,108,104,95,107,113,103,97,105,108,93,94,99,87,96,82,103,115,87,100,106,100,99,109,102,110,91,97,101,106,103,103,108,108,115,102,109,108,116,88,108,94,100,99,100,99,108,110,95,92,99,107,107,102,92,95,106,100,109,106,113,109,99,110,104,99,99,82,100,112,105,107,100,107,104,113,102,96,95,99,95,118,89,99,103,94,93,113,97,109,94,97,93,131,109,101,106,107,111,101,100,94,101,89,73,106,102,137,110,96,98,92,107,106,102,107,103,97,114,99,104,101,103,104,118,113,95,117,96,115,102,102,112,103,79,105,100,100,104,110,109,92,106,105,98,99,98,107,101,106,105,105,112,99,99,103,106,99,102,107,106,100,83,105,91,105,116,119,108,97,83,116,106,103,99,103,112,91,107,78,97,98,97, +408.20853,101,82,98,98,94,95,107,88,77,100,97,106,101,92,92,71,85,97,96,91,116,101,93,90,96,94,92,101,103,100,88,102,110,103,102,102,103,101,105,92,104,107,91,94,103,95,107,102,94,99,95,84,93,95,91,102,100,94,105,99,108,87,89,115,114,102,98,99,92,89,97,111,94,106,95,109,107,106,110,106,105,106,100,112,107,80,77,104,109,100,100,92,93,95,111,98,105,114,96,102,97,88,95,90,97,113,103,105,93,92,102,99,116,96,112,64,95,109,102,91,102,96,102,108,103,79,104,92,105,94,109,97,90,99,97,101,94,114,81,105,82,132,103,95,88,103,99,95,99,87,102,100,107,101,98,91,100,91,95,100,96,103,104,100,101,100,97,92,114,99,100,94,88,101,117,108,101,77,117,106,96,92,98,99,110,107,93,93,96,86,93,104,100,100,90,98,96,103,111,101,96,92,103,104,102,102,98,87,102,104,107,95,101,114,104,90,79,91,101,97,106,96,101,100,115,73,103,112,110,111,92,102,96,97,85,105,97,96,106,98,91,105,90,98,101,102,101,102,100,100,97,100,99,103,94,99,96,97,112,96,106,107,104,93,102,103,102,104,104,104,95,104,93,91,111,108,99,95,102,102,102,101,110,101,91,94,97,99,106,108,94,105,106,101,108,94,80,104,96,112,107,113,106,109,100,105,110,102,103,106,97,100,105,102,100,91,101,93,117,96,81,94,92,106,108,93,99,102,74,105,103,100,104,105,95,105,74,88,98,100,86,96,92,80,126,99,107,93,95,99,107,83,98,98,105,113,105,101,94,91,93,74,93,88,108,100,95,114,82,118,86,111,96,95,108,95,103,113,100,100,109,99,95,100,92,101,105,103,100,102,96,94,97,101,105,90,107,69,105,109,112,105,101,93,103,101,112,113,102,107,92,103,94,101,83,102,91,124,89,93,104,90,92,108,90,97,102,99,102,110,101,99,94,99,100,100,102,102,97,93,109,90,101,116,101,98,83,97,112,109,102,104,94,118,96,88,94,98,93,100,96,102,105,101,110,100,100,100,108,106,96,100,102,108,113,98,103,103,113,103,97,102,100,78,99,101,102,93,107,102,108,100,104,95,90,99,97,111,103,95,94,98,96,108,85,98,93,78,110,95,102,100,96,99,98,118,99,98,97,83,102,101,106,99,109,64,116,96,93,95,101,110,104,103,113,99,107,90,102,102,98,112,94,99,105,88,106,128,93,111,92,117,100,98,90,109,93,102,99,106,117,98,102,95,110,93,105,100,97,92,103,94,106,108,104,108,106,97,89,103,89,94,101,103,106,98,111,103,102,98,98,108,99,103,106,89,98,108,103,104,106,108,116,98,95,105,92,105,99,107,98,99,95,99,95,98,94,99,109,107,98,67,93,83,90,98,101,109,105,101,104,80,94,101,97,98,101,100,99,87,101,115,86,102,99,96,113,109,106,104,103,103,98,105,100,108,109,102,105,90,104,90,105,99,106,95,95,98,98,105,115,101,103,95,99,105,103,95,111,103,105,107,104,104,100,97,98,97,92,103,105,92,103,99,102,88,94,102,100,92,95,101,105,100,104,101,102,97,83,71,100,94,97,97,91,95,93,111,96,106,96,117,100,100,110,109,109,103,109,106,109,98,94,103,100,113,99,87,98,70,102,96,98,100,106,98,95,92,97,113,91,100,99,91,99,106,109,92,91,100,114,104,96,98,92,99,97,96,132,106,100,99,94,96,110,98,111,90,101,97,98,114,107,64,100,94,105,92,93,83,106,95,105,108,101,103,86,98,103,108,99,98,75,104,96,108,104,118,104,99,115,99,97,107,104,94,101,94,103,100,95,109,98,121,95,102,95,99,108,77,102,106,131,99,82,99,104,102,95,105,94,102,104,110,105,93,94,84,79,80,98,88,92,106,104,80,101,106,109,107,102,88,96,97,106,95,104,101,93,102,104,100,97,105,100,97,114,115,106,96,105,99,102,100,96,96,97,107,93,88,106,99,102,98,108,87,99,96,98,100,96,97,106,99,98,104,95,104,86,109,103,102,108,120,102,104,94,98,103,103,112,105,103,105,108,90,99,113,104,96,105,107,103,105,96,103,101,108,113,99,102,89,99,101,99,91,111,106,104,105,84,114,103,102,122,113,124,94,107,99,90,96,100,101,99,81,113,99,103,117,106,97,103,93,83,105,97,89,94,107,102,95,106,93,108,94,106,106,108,106,106,97,94,106,90,101,96,104,93,108,104,98,108,99,109,100,105,87,93,99,102,109,105,101,92,91,115,106,95,100,97,98,92,85,102,96,95,94,99,108,92,99,102,95,96,100,104,102,104,108,105,99,96,98,97,99,102,113,104,90,98,99,100,89,99,91,109,107,109,93,97,117,104,86,106,97,94,103,110,86,106,113,95,105,103,101,99,104,104,103,112,96,101,102,101,133,89,95,102,105,109,103,100,94,98,119,104,106,105,113,109,110,112,91,87,111,99,105,96,101,87,102,100,104,106,102,102,98,107,97,103,96,88,103,113,109,96,94,94,110,112,97,109,103,116,97,98,86,99,92,97,93,100,110,104,113,114,96,105,87,106,108,94,102,91,103,109,107,96,98,105,99,109,97,111,106,100,90,115,102,113,108,104,107,101,91,98,102,106,109,89,91,97,110,104,102,109,107,88,105,101,103,106,117,95,104,98,94,105,109,107,89,104,99,100,110,105,102,100,101,103,109,102,101,109,99,102,105,96,92,106,111,90,98,112,101,96,127,97,93,100,104,109,110,103,101,66,98,100,108,102,87,99,95,101,93,96,106,98,91,107,107,104,98,93,90,104,88,114,104,100,98,104,101,109,111,107,112,90,105,97,109,118,99,108,94,107,95,107,105,123,96,109,102,110,104,93,103,98,104,101,93,107,109,104,94,98,88,96,107,108,108,112,120,90,101,108,87,104,91,94,102,94,103,104,102,111,86,103,92,94,103,96,93,113,105,103,100,88,106,87,99,96,98,110,127,100,112,97,109,99,107,106,93,110,105,98,93,100,102,86,102,95,102,98,102,103,97,98,90,100,95,105,96,103,91,103,104,100,97,101,101,100,110,107,100,107,111,115,99,110,99,97,109,110,91,100,109,98,100,92,91,102,99,98,108,105,100,105,112,110,94,105,95,112,101,121,109,100,100,110,95,88,107,97,96,99,102,99,101,101,105,103,106,98,107,116,106,100,97,101,105,126,99,104,98,113,95,98,95,106,104,110,101,104,99,105,101,103,93,60,95,97,103,101,114,109,98,100,101,95,95,100,101,104,112,98,104,107,77,108,111,107,102,100,112,105,104,111,110,100,102,99,103,104,101,101,102,100,111,104,103,95,95,98,110,113,105,112,108,94,97,119,108,99,99,100,101,96,96,101,86,100,98,96,110,104,105,99,109,101,104,82,103,91,98,79,93,102,101,117,102,106,100,83,102,107,107,105,102,95,106,103,117,108,104,99,98,104,101,108,97,102,115,104,101,95,97,83,111,100,95,95,94,98,94,100,105,103,108,102,108,67,105,104,107,93,110,98,100,96,88,97,88,97,100,96,114,96,92,88,95,100,94,100,92,106,102,94,105,117,98,83,107,101,95,105,92,107,107,119,95,105,103,106,106,94,105,103,98,103,107,105,108,95,107,90,107,104,104,93,103,106,103,96,99,106,100,99,97,96,102,100,99,102,96,100,108,101,98,101,107,98,99,95,94,108,83,108,90,109,85,102,105,115,108,109,93,73,103,99,101,110,99,110,105,111,98,92,100,104,100,108,101,103,101,105,101,98,104,105,91,95,93,109,100,116,103,89,101,106,104,100,100,113,103,95,95,108,101,90,109,99,92,92,93,101,100,100,93,99,102,96,101,108,100,108,93,108,95,103,98,129,96,101,103,102,100,105,100,97,95,87,102,111,88,113,90,108,99,109,104,97,97,95,95,107,102,96,113,90,98,90,96,104,97,86,87,104,94,135,114,93,104,105,108,109,105,113,112,93,114,97,90,99,99,108,97,109,104,92,93,92,94,97,92,102,112,98,97,101,99,98,98,98,98,109,111,99,102,98,95,101,97,105,112,105,96,102,101,102,109,107,96,98,99,109,110,101,105,91,113,107,92,99,100,101,104,108,85,107,117,98,109,98,100,104,105,114,86,113,99,100,105,104,105,100,102,101,99,119,102,99,98,97,96,103,104,108,96,95,113,97,103,104,102,119,99,108,108,106,83,117,114,93,106,98,98,98,103,109,103,96,112,101,96,108,96,105,83,102,109,109,103,104,108,105,106,100,104,96,93,96,106,103,91,95,110,95,99,99,105,102,102,94,109,108,109,103,94,117,92,105,102,95,101,103,109,113,101,98,98,98,100,97,107,95,97,102,107,99,102,103,84,108,91,91,113,103,119,107,102,105,98,109,100,109,96,91,104,103,93,93,105,98,98,98,97,106,109,90,105,88,100,93,100,108,106,94,109,100,111,91,105,106,112,102,97,96,100,70,105,105,97,114,102,94,94,99,103,109,107,93,91,109,100,102,94,105,99,113,98,103,103,116,111,99,98,112,100,103,108,99,102,96,102,100,92,116,90,115,106,103,103,92,106,102,108,94,98,95,85,117,111,99,76,109,102,102,108,99,107,93,80,105,95,76,95,103,90,99,110,105,91,100,104,102,101,104,96,95,104,96,92,101,100,107,97,103,104,100,98,95,105,100,100,94,103,98,101,106,94,79,104,94,95,95,95,84,87,123,93,107,98,82,105,92,89,100,98,101,108,100,81,104,110,92,103,113,100,95,88,94,75,96,100,101,119,126,90,100,110,83,95,98,121,96,98,88,98,96,97,99,102,93,98,93,92,64,101, +408.34869,104,106,91,90,94,96,90,103,94,97,96,95,84,99,102,94,101,93,87,99,104,98,112,101,101,94,106,98,93,96,91,106,106,91,102,102,91,106,101,106,106,97,97,103,107,102,90,102,98,102,101,106,101,103,98,91,104,97,109,93,109,88,91,102,105,111,101,100,97,91,95,83,100,99,103,98,104,96,102,96,118,87,100,107,108,98,97,93,87,98,81,94,99,106,95,92,96,95,96,94,112,105,99,100,85,98,103,94,77,96,107,93,125,100,88,95,93,109,91,99,81,100,91,113,99,102,91,90,112,96,89,94,92,107,98,107,96,103,96,100,99,98,77,112,110,104,100,94,109,101,97,102,105,103,98,112,103,93,93,95,94,108,102,101,90,89,107,99,103,91,91,102,92,84,98,97,103,101,103,82,89,104,98,100,95,91,94,101,105,88,96,95,95,91,89,90,88,100,90,101,93,101,97,103,100,93,103,98,99,93,100,95,101,102,100,109,93,101,95,88,113,108,88,92,91,105,109,101,96,96,84,98,96,101,99,101,91,105,99,99,95,98,108,105,95,94,107,93,92,98,98,95,95,103,111,96,95,100,91,98,92,96,92,104,94,99,93,93,85,81,101,101,96,84,106,99,108,103,88,105,96,99,83,89,97,100,90,94,98,95,106,113,92,108,94,102,101,101,101,95,105,91,101,109,101,99,106,102,85,103,96,98,105,94,102,96,95,105,110,96,89,109,98,110,100,99,95,87,90,85,113,97,103,101,89,92,120,101,84,90,101,105,103,110,112,102,105,97,105,92,110,86,90,97,107,99,107,114,100,106,93,99,91,96,94,89,100,107,116,96,101,96,97,103,98,90,99,109,109,99,105,103,92,108,95,112,91,102,110,103,107,97,88,105,100,84,106,94,98,95,105,105,101,107,112,92,102,100,100,98,90,97,104,103,106,93,94,89,108,102,104,105,101,101,99,105,102,102,99,99,100,102,97,105,108,99,91,104,107,110,99,100,108,101,106,113,102,89,98,95,94,106,93,111,97,88,103,101,104,94,102,96,97,105,108,109,103,112,99,105,101,104,103,94,110,94,107,98,102,87,91,102,87,92,92,88,108,93,100,100,97,108,109,93,99,101,96,74,120,92,97,107,102,100,106,96,96,105,97,95,97,99,105,98,97,106,98,106,109,94,95,106,90,98,109,90,99,102,95,84,90,95,104,90,125,107,102,92,106,94,95,108,101,118,105,84,88,92,112,108,93,92,110,103,78,97,98,96,96,99,84,110,97,96,104,95,113,102,112,97,90,109,94,85,99,97,97,100,115,100,102,89,101,116,97,102,100,118,100,103,110,81,105,92,113,100,97,98,106,99,103,95,108,104,102,107,98,99,104,105,99,97,111,89,101,92,99,105,93,95,102,103,106,104,99,91,96,102,91,80,96,105,84,97,94,103,99,93,108,108,79,87,98,102,92,94,96,92,91,104,97,108,101,101,84,90,98,97,96,98,112,105,109,111,97,104,105,97,102,106,108,98,87,100,91,99,95,112,103,98,96,97,104,96,96,103,97,97,96,99,104,99,100,123,98,95,108,99,93,94,88,100,105,133,86,114,105,100,107,100,103,105,104,95,99,91,95,105,100,90,118,101,89,107,90,97,91,100,98,114,120,100,89,98,96,105,103,105,100,116,105,86,97,98,95,101,100,103,95,104,98,94,65,108,99,98,103,106,100,102,99,107,103,105,94,97,98,94,104,91,103,108,115,93,91,100,104,99,99,100,91,102,109,94,89,100,97,96,89,98,111,119,98,108,104,108,100,69,96,108,102,91,97,93,87,102,102,99,102,104,108,93,117,92,104,103,101,99,94,108,106,112,89,105,105,102,102,96,114,88,100,99,91,97,105,93,99,109,104,100,88,79,87,102,111,104,105,103,106,91,98,104,104,96,86,101,94,101,106,103,107,101,113,108,98,90,97,108,100,100,95,107,100,117,98,101,96,108,90,98,94,106,102,114,101,99,99,102,102,105,108,98,107,98,109,101,99,92,106,95,105,114,106,99,94,112,84,97,105,101,96,91,101,99,130,79,95,93,98,97,100,81,113,98,84,104,104,106,95,100,95,106,85,109,108,101,107,101,102,104,99,96,111,77,84,101,107,90,98,109,100,95,73,117,112,102,101,101,94,107,109,111,99,104,108,90,97,111,100,103,91,106,90,113,100,95,95,99,94,103,102,111,109,96,110,96,91,98,114,103,100,100,106,99,95,95,100,88,99,105,96,95,100,97,103,117,107,101,99,104,89,98,96,106,100,112,105,94,100,98,125,112,104,101,112,95,108,101,93,102,121,101,108,95,107,95,100,109,90,100,96,102,94,94,111,88,98,100,98,92,105,95,93,93,92,108,96,104,97,95,91,104,99,100,106,103,105,99,111,96,99,109,100,97,110,112,94,99,86,97,117,108,105,99,89,109,98,98,104,102,103,96,99,86,97,102,96,116,97,112,87,106,102,97,101,94,104,93,92,90,96,105,106,105,104,92,106,106,110,102,102,98,101,92,102,92,108,95,92,98,102,102,104,98,100,105,108,89,95,98,99,101,99,105,97,96,98,94,106,101,111,97,102,100,95,104,108,104,94,91,92,94,107,96,99,109,94,97,97,93,102,96,106,100,95,104,97,81,99,88,105,103,90,107,122,96,102,109,92,106,98,101,96,89,103,99,106,95,98,95,106,99,104,89,95,108,99,98,100,105,95,104,99,110,97,107,99,96,88,86,97,96,91,95,94,101,102,101,99,105,92,101,100,103,109,100,93,96,102,98,103,99,109,101,95,105,101,94,96,95,104,97,109,93,97,93,97,104,98,106,95,104,93,117,95,102,106,109,94,95,112,101,103,102,105,100,95,83,94,99,103,104,100,103,110,105,107,101,103,111,113,111,104,99,102,98,58,92,104,105,79,101,108,113,97,100,104,92,102,99,115,103,97,92,112,109,105,98,87,98,111,91,109,95,103,99,102,91,93,110,108,100,102,96,107,98,98,95,104,113,100,96,107,115,88,102,86,97,108,110,93,111,101,112,101,104,105,103,99,109,79,106,69,98,105,100,106,91,100,105,100,101,101,111,98,92,104,107,95,97,102,90,102,98,107,91,113,101,100,98,101,98,99,90,107,107,107,117,102,91,97,87,96,110,104,98,111,95,102,94,98,104,99,98,102,77,101,99,90,101,102,104,108,98,98,93,96,103,98,106,90,103,87,109,119,97,105,114,92,103,106,101,109,103,89,99,100,105,117,106,101,88,103,107,100,100,104,108,101,97,105,110,116,107,100,100,88,114,102,97,107,99,96,101,102,101,105,110,109,102,97,93,104,102,95,98,97,93,101,110,102,109,103,103,96,79,103,105,102,95,80,108,101,98,101,106,107,78,101,87,104,107,101,103,104,100,90,94,99,89,93,99,94,93,99,100,101,99,96,93,99,123,102,101,102,105,117,93,100,104,117,79,117,99,107,136,91,104,100,101,102,91,104,106,103,97,101,102,102,107,96,94,95,108,101,101,95,98,87,101,90,86,108,104,109,106,110,101,110,105,93,103,87,96,98,68,104,102,108,103,87,98,108,104,90,83,97,98,113,110,97,105,118,103,101,91,106,94,100,105,96,98,113,117,91,102,102,100,105,100,93,119,105,89,100,89,103,108,99,93,113,96,112,109,96,79,95,100,96,87,98,100,100,94,105,110,95,104,107,98,103,97,86,98,95,92,108,91,105,101,92,98,114,81,83,100,103,91,113,96,104,102,108,106,106,104,121,100,98,96,103,105,107,95,105,88,111,96,98,111,97,97,89,99,87,104,102,99,109,99,107,106,118,87,91,73,99,91,93,96,100,99,104,93,108,82,110,98,101,105,111,114,98,112,105,97,101,118,99,89,101,93,97,109,89,103,88,99,102,89,105,103,98,109,105,104,96,100,103,100,100,97,103,85,105,86,133,105,102,100,101,89,97,99,108,105,103,106,98,99,104,124,96,116,98,95,101,100,100,95,104,109,94,106,102,121,102,101,113,96,91,96,98,94,111,100,110,90,106,93,99,109,115,102,109,99,95,106,98,99,95,95,107,102,107,113,104,95,101,97,101,99,94,112,112,100,109,98,110,101,102,105,107,92,87,101,99,95,102,86,109,109,105,104,95,95,89,103,104,100,102,101,103,104,92,122,88,82,99,107,110,103,102,93,104,94,108,103,90,90,81,102,99,98,102,100,98,97,100,101,93,93,99,96,100,89,104,83,101,133,94,91,88,106,94,101,85,94,99,92,93,108,101,92,95,99,109,103,92,90,89,98,101,96,109,88,97,98,101,103,99,100,107,122,99,103,105,105,107,96,97,98,108,100,98,100,99,99,103,88,99,88,109,102,101,94,94,99,110,96,118,92,97,107,109,102,91,96,91,102,99,108,94,105,100,99,91,98,89,91,90,91,104,105,98,101,107,124,106,91,99,93,90,92,93,105,113,103,97,84,91,94,97,108,101,106,109,98,102,104,100,109,100,107,108,93,94,104,104,84,102,108,98,108,95,106,102,103,98,83,97,87,100,90,100,97,105,100,105,101,96,106,104,102,102,100,105,97,89,104,100,107,100,100,100,102,104,104,100,94,112,92,101,99,94,95,93,99,99,92,101,96,97,92,105,96,109,101,99,83,102,108,112,92,96,101,103,94,116,93,91,95,95,113,110,102,98,95,97,93,87,103,97,69,104,80,96,92,97,96,99,109,94,100,101,97,105,94,99,100,89,100,105,94,94,84,111,108,86,83,104,102,100,98,102,100,105,104,88,102,105,99,97,79,88,102,92,98,106,92,116,70,96,88,95,106,100,98,88,103,112,103,92,104,106,90,104,96,103,92, +408.48886,104,103,96,104,69,81,93,84,101,100,106,99,109,107,94,98,102,93,103,91,100,110,83,102,95,99,91,90,95,97,106,86,91,108,106,106,91,96,103,111,108,103,99,106,102,105,83,92,97,111,108,93,94,108,101,108,93,102,106,105,101,105,99,91,98,88,96,107,103,92,110,90,112,100,88,103,100,99,102,104,129,97,101,105,101,97,96,100,104,88,97,97,101,95,97,96,90,87,95,107,94,74,91,95,87,104,97,96,105,89,101,107,101,101,102,98,112,92,105,82,93,89,112,96,100,109,102,101,104,109,114,105,99,89,93,92,98,105,100,100,106,94,101,91,94,100,108,77,106,94,89,91,98,91,88,99,98,94,84,94,99,101,98,88,100,96,94,101,88,90,106,86,99,95,102,120,102,79,104,105,105,100,100,93,102,92,111,91,106,94,100,87,90,98,96,96,100,107,96,106,90,96,97,96,94,112,108,92,96,98,99,99,108,102,109,98,100,108,93,101,104,106,100,113,102,100,97,101,98,103,102,94,103,92,96,105,98,92,109,93,94,91,103,91,85,92,94,104,106,104,109,101,101,89,92,100,89,106,105,91,94,106,92,101,98,110,91,99,96,103,101,97,114,93,99,104,90,113,88,106,97,100,95,99,109,89,100,103,103,108,92,105,105,98,105,101,100,97,98,93,98,97,98,102,102,94,104,102,101,100,102,107,109,97,95,104,91,97,97,95,95,94,100,104,103,102,124,90,91,104,107,95,109,98,107,121,102,84,96,98,110,91,99,101,103,97,96,99,91,92,99,78,92,105,93,105,108,98,93,91,96,103,102,95,100,101,110,108,101,105,97,84,105,102,114,95,101,86,110,109,90,98,95,100,101,94,96,94,92,93,95,99,96,109,109,96,101,100,103,100,94,101,107,93,105,100,109,107,108,101,105,99,85,110,106,91,109,91,95,95,100,99,103,104,103,99,106,100,93,110,90,72,91,106,95,100,88,105,95,90,107,106,83,104,88,106,101,98,102,99,91,103,89,100,96,103,99,87,95,93,100,95,107,99,104,104,115,88,85,109,101,105,101,99,103,99,103,99,99,94,107,91,102,101,93,97,98,99,91,87,108,108,95,99,98,97,96,105,96,88,93,92,103,98,95,103,94,96,109,99,95,110,97,88,95,105,88,98,99,104,106,100,110,99,115,88,104,94,88,100,109,105,98,94,88,96,105,100,106,102,110,91,98,102,140,99,110,93,104,103,105,98,92,88,99,92,96,107,110,102,84,97,93,92,99,100,105,102,101,94,99,102,104,109,105,101,90,87,96,97,105,104,92,102,101,104,98,90,101,93,112,98,99,99,97,104,112,108,99,112,112,103,98,109,95,105,96,107,95,98,108,103,113,110,118,99,101,105,108,102,101,92,101,109,94,115,117,95,102,108,93,96,76,95,104,97,100,100,106,102,109,106,90,103,106,95,108,94,111,110,88,103,113,74,109,99,118,110,100,105,108,104,70,106,95,95,92,117,100,112,105,97,101,101,95,109,106,105,95,76,104,93,97,106,107,97,84,104,87,104,91,103,102,105,101,99,96,101,85,99,103,101,93,106,98,101,105,100,106,94,94,93,93,102,102,99,106,89,97,96,98,113,98,109,104,90,104,99,97,99,93,105,99,107,93,102,104,108,107,98,114,88,98,93,112,94,100,98,91,108,106,100,91,108,99,102,87,109,87,112,95,103,101,92,92,108,90,98,103,101,103,89,100,106,95,90,97,98,94,92,103,96,101,99,101,99,100,101,95,104,105,91,104,104,91,92,103,104,97,112,94,108,101,97,105,106,97,95,104,100,113,98,92,106,100,97,101,105,115,110,94,109,112,104,99,102,109,102,107,100,109,109,101,100,97,104,104,103,95,105,110,105,109,99,92,95,90,96,96,88,89,92,106,98,91,102,100,102,94,100,101,95,104,102,102,100,103,117,98,114,101,100,102,105,89,93,106,87,96,87,101,97,93,114,97,129,95,106,107,96,96,96,93,110,87,112,125,96,104,95,105,93,94,102,109,92,101,97,102,108,98,110,106,91,98,105,93,97,98,100,105,96,107,110,101,99,102,104,105,92,92,98,96,92,87,91,99,108,97,97,101,100,94,92,95,108,93,102,103,109,108,108,107,103,105,92,110,95,97,105,107,110,116,94,106,97,95,102,98,104,89,98,97,96,99,107,102,100,104,102,94,90,101,65,92,102,97,101,86,102,97,98,92,95,93,97,93,98,105,102,125,97,101,104,117,110,98,95,101,93,101,109,105,115,115,94,92,101,98,82,101,105,96,99,105,87,94,91,100,100,102,97,91,104,96,86,92,106,88,109,96,106,94,84,98,104,95,79,98,94,99,115,90,102,79,105,105,95,108,96,106,95,91,100,101,90,110,99,102,99,89,110,93,90,103,91,90,96,94,101,110,104,105,101,106,101,100,102,94,109,90,104,106,96,115,96,109,112,92,72,104,90,100,98,97,103,116,119,102,100,99,91,102,79,101,106,112,108,116,106,87,105,101,98,82,110,102,101,91,106,93,105,110,101,93,77,104,107,103,114,99,97,98,110,95,97,101,97,103,96,102,103,103,92,97,98,108,96,110,104,105,93,80,85,96,110,95,96,97,103,111,108,105,98,105,101,106,105,104,98,113,98,91,103,101,94,123,96,106,108,93,110,94,105,98,106,98,105,113,110,102,98,92,102,97,95,102,104,104,97,96,98,89,112,99,106,104,111,83,120,104,101,120,97,103,108,102,109,98,104,103,112,100,98,109,108,104,101,98,107,107,108,108,102,82,101,111,96,97,98,98,90,102,99,106,87,85,100,103,109,108,100,103,104,106,100,98,103,87,103,95,104,109,107,99,95,107,103,91,102,99,96,116,112,98,108,102,101,110,93,95,104,89,103,107,103,95,93,98,95,80,92,92,95,96,96,104,109,94,97,103,97,78,99,107,110,102,102,100,76,108,102,92,99,95,104,105,106,105,107,97,101,95,97,116,109,96,102,93,107,103,109,92,109,99,99,96,103,107,100,106,99,100,87,97,103,126,95,94,93,110,102,105,104,95,94,95,101,98,102,94,105,98,95,111,96,101,116,97,102,90,95,100,108,108,89,95,100,95,101,87,94,87,102,104,83,109,93,101,102,107,108,97,112,102,96,106,104,96,93,109,96,87,103,98,88,99,104,102,115,82,111,94,98,97,99,104,96,120,97,87,95,112,107,93,110,98,119,96,93,102,104,104,94,96,106,91,105,98,101,100,82,109,103,83,104,96,105,94,88,112,106,90,93,102,109,101,96,115,91,92,104,104,97,96,100,107,113,99,102,99,119,102,100,107,92,95,100,97,117,96,103,116,109,112,84,83,102,87,99,99,101,106,95,89,99,100,110,98,111,111,98,88,101,104,92,100,104,102,94,99,108,90,114,95,108,103,78,91,94,99,99,102,90,101,101,117,112,107,101,111,93,97,102,102,100,96,97,94,97,137,117,106,103,94,106,94,102,107,92,107,106,102,119,112,110,99,107,117,106,106,107,106,82,77,102,100,104,100,106,98,105,99,96,104,97,116,94,101,100,99,95,106,101,95,87,113,91,118,103,94,116,108,110,100,108,108,103,104,110,107,92,104,102,88,94,116,108,109,136,109,103,103,97,88,99,110,120,106,95,98,101,102,99,95,91,111,87,115,101,113,97,97,109,99,100,106,94,102,99,91,105,105,106,98,100,91,103,104,108,106,101,91,104,80,97,103,71,89,97,98,95,97,117,112,81,106,108,97,109,104,93,103,100,99,108,100,107,96,105,99,104,92,108,105,110,93,102,85,102,106,105,108,102,87,110,101,93,101,90,106,108,99,106,110,102,104,107,102,100,95,104,105,93,107,69,100,94,112,101,92,109,109,120,103,105,96,103,108,107,95,95,102,110,105,111,104,117,102,99,92,117,83,97,95,98,106,112,91,91,98,95,100,109,102,103,105,105,109,112,102,97,96,113,125,103,97,100,110,116,97,99,99,100,84,111,106,106,91,96,107,104,104,100,106,98,105,104,106,110,100,105,98,87,111,108,98,106,95,105,107,97,103,98,97,108,107,97,99,105,102,87,104,109,111,105,96,109,100,95,97,90,102,90,104,99,104,102,94,99,115,107,111,92,105,100,97,98,102,93,114,103,102,121,105,102,95,116,69,96,101,100,90,84,96,102,111,110,96,106,89,93,96,102,100,111,106,107,96,96,104,104,113,95,104,108,103,99,91,105,99,98,123,101,97,96,105,100,85,107,105,104,109,109,98,107,81,98,100,106,107,106,108,108,88,103,104,98,102,92,105,103,107,108,98,101,99,95,106,107,97,103,108,99,102,101,98,99,70,113,107,103,110,101,88,104,103,109,88,101,103,92,98,94,94,101,93,92,98,113,99,99,110,100,97,91,106,99,101,100,109,102,106,105,95,88,98,104,93,96,97,101,96,98,105,123,106,102,92,106,95,97,105,103,102,97,99,119,87,101,98,99,86,102,93,99,100,105,104,110,80,107,104,84,93,105,100,104,96,92,105,100,108,100,99,113,91,105,102,101,105,104,114,101,110,94,103,105,83,112,113,110,104,101,111,101,98,96,104,84,96,101,72,103,100,94,106,97,95,97,103,104,105,99,99,121,104,98,104,102,105,95,90,94,99,92,95,103,71,96,108,91,96,107,102,93,93,101,105,99,88,99,100,95,83,92,94,104,92,70,100,106,91,107,90,109,91,89,91,96,97,114,101,97,102,105,87,105,100,106,106,94,99,96,91,97,84,100,98,98,106,90,90,106,99,133,116,96,120,92,94,96,95,104,102,132,91,107,91,100,98,99,115,100,106,96,100,110,104,89, +408.62903,110,102,97,91,99,97,116,105,96,93,86,99,97,109,112,122,101,94,97,91,106,99,88,108,106,92,97,94,102,102,98,91,86,103,98,106,108,104,98,94,91,98,105,107,114,97,129,102,118,107,99,102,95,84,97,105,96,98,102,92,100,99,81,93,112,111,101,135,102,105,100,89,90,112,98,98,97,96,93,94,94,88,88,99,92,96,105,103,96,96,96,98,97,93,96,123,110,93,93,102,105,101,106,101,89,88,86,95,95,90,91,100,104,106,95,98,92,103,101,105,98,107,102,93,99,101,101,97,98,94,110,94,80,96,97,129,95,101,103,95,106,98,90,96,110,98,105,101,95,91,104,100,95,90,91,103,108,108,104,102,106,103,99,105,98,97,107,87,106,94,105,108,93,100,102,95,92,91,103,100,94,93,101,105,106,108,94,92,97,103,87,95,90,96,105,103,106,100,83,99,103,103,108,103,102,117,111,110,95,97,112,109,97,94,103,118,98,92,100,88,98,105,67,88,91,109,96,104,94,98,100,103,109,92,98,102,118,94,92,102,108,97,105,99,108,96,100,100,98,103,87,110,94,95,100,95,102,100,85,102,104,98,91,104,101,103,111,98,89,101,101,100,100,76,109,97,104,97,93,104,91,102,100,92,84,98,101,109,97,87,100,84,107,110,102,113,101,100,90,112,93,101,93,110,95,83,99,114,104,90,95,104,98,95,97,106,97,94,98,99,87,99,94,107,95,96,92,84,101,113,76,106,84,105,105,103,107,92,97,100,103,106,101,109,107,114,111,109,106,109,96,110,98,102,104,115,106,104,97,102,101,113,100,101,99,100,106,114,100,92,100,104,101,92,107,93,104,86,96,104,104,106,102,103,95,100,94,102,102,96,107,112,85,105,98,97,102,102,109,99,109,105,97,99,104,97,98,113,100,94,95,90,100,102,95,100,106,108,88,104,100,101,102,94,101,96,110,104,94,108,94,109,88,102,103,106,93,112,106,102,107,99,97,100,97,113,94,101,104,106,106,97,96,100,113,91,102,99,91,92,100,91,109,102,97,104,125,104,90,115,105,110,87,97,105,95,108,122,93,101,108,102,97,104,106,90,107,97,103,100,100,113,109,106,98,99,105,97,98,109,109,87,113,104,104,97,95,110,97,97,107,100,103,104,96,103,92,109,96,104,101,98,106,111,110,106,105,91,101,99,112,106,103,109,99,98,105,96,99,102,109,101,94,101,95,104,106,108,93,100,89,96,103,99,97,93,104,98,95,96,115,100,94,104,104,102,95,106,95,96,96,102,101,110,100,107,106,92,98,100,102,89,79,105,95,110,111,109,91,105,95,87,106,104,115,105,94,101,97,99,112,103,94,90,110,102,99,94,105,98,95,96,101,107,104,95,97,95,100,102,100,99,89,89,103,87,105,96,99,103,92,114,96,93,97,98,108,98,105,92,97,100,90,101,108,110,98,97,107,106,96,100,107,100,96,102,102,95,104,98,102,94,95,107,95,95,104,92,121,92,99,98,106,104,99,115,101,105,95,104,96,93,78,93,98,99,92,95,104,104,82,99,100,105,96,98,104,106,106,99,97,90,99,100,104,103,109,105,93,96,106,95,83,94,117,100,97,98,90,109,90,94,103,100,94,95,99,105,126,105,89,104,103,83,121,92,103,97,107,89,68,105,95,107,103,85,101,96,99,102,99,98,110,98,105,99,103,105,113,101,84,67,98,97,95,106,97,99,95,103,99,84,106,104,97,92,94,106,69,71,95,94,108,99,96,103,102,99,103,113,110,96,95,100,108,95,118,96,82,110,100,93,107,96,92,100,113,104,106,110,98,100,96,117,95,95,103,104,98,94,96,97,104,96,93,109,97,94,100,110,98,110,107,106,96,107,130,100,99,104,83,97,98,102,87,97,94,91,102,87,109,98,105,111,108,101,105,105,101,98,82,103,94,80,109,104,96,99,101,99,101,97,107,97,95,106,101,110,97,101,107,105,91,106,112,112,99,99,93,109,100,109,102,99,113,95,109,107,102,106,123,103,92,103,103,82,100,97,94,107,109,118,101,101,104,105,90,106,101,99,106,96,109,106,112,102,105,99,88,108,108,92,105,107,100,103,98,106,103,99,97,93,103,98,87,102,109,92,101,90,98,90,100,113,103,101,97,83,95,118,103,100,90,92,105,92,96,94,115,92,110,100,113,99,90,89,100,93,95,89,114,100,103,86,107,104,91,96,102,87,103,89,99,94,94,106,100,103,105,98,106,102,95,100,100,89,88,87,113,100,93,78,101,104,95,95,92,98,104,107,106,83,99,107,107,104,100,89,99,105,93,97,115,106,105,109,100,110,105,105,103,95,92,104,95,99,110,95,89,104,91,109,100,84,107,110,92,102,99,102,97,98,99,95,100,99,106,89,96,93,103,110,102,98,111,99,103,101,103,110,104,103,93,104,106,102,94,83,98,109,102,95,113,97,95,108,105,104,102,105,97,101,110,97,104,119,106,94,82,104,99,107,102,104,95,103,89,101,101,114,112,98,112,107,96,102,101,108,94,99,96,91,98,95,107,104,107,110,110,93,106,102,92,111,94,100,108,93,117,98,109,103,107,94,87,100,94,99,117,95,94,80,98,92,107,100,98,99,104,98,104,99,107,102,105,97,99,103,102,101,101,92,102,94,106,99,105,67,95,103,95,108,104,104,91,100,93,95,88,96,111,93,96,100,100,100,100,107,98,92,102,108,97,98,96,98,112,95,95,95,103,106,93,102,109,102,108,100,107,90,96,98,100,90,106,108,94,106,103,97,103,106,111,78,116,79,109,100,116,102,104,98,101,98,95,106,104,109,100,105,115,96,95,109,88,98,87,110,96,101,104,97,103,98,101,96,89,99,97,102,104,103,100,107,106,86,112,103,104,110,88,95,91,99,93,99,109,105,100,94,104,101,92,115,99,113,94,101,104,102,98,95,102,88,105,98,96,105,94,101,105,102,97,109,111,102,103,103,98,91,85,102,87,105,110,108,103,98,93,99,99,106,121,108,102,106,98,105,108,106,104,98,95,101,128,89,92,106,91,84,106,113,108,91,106,104,94,102,100,103,108,91,99,107,109,93,108,106,101,92,97,92,98,109,97,110,101,99,100,100,91,98,95,95,105,98,90,104,110,109,105,91,97,103,108,120,98,105,103,93,80,100,109,101,106,91,103,103,92,99,95,112,113,91,109,103,102,82,108,101,113,99,103,102,99,101,98,92,106,102,104,93,99,96,101,96,102,91,117,106,109,100,107,93,105,106,98,103,96,94,104,102,106,105,108,105,110,95,105,100,105,113,101,95,104,108,107,98,103,102,102,97,105,111,102,97,103,104,93,101,104,105,100,106,103,95,102,105,99,115,109,95,96,99,109,92,100,103,110,84,113,89,100,81,96,114,106,102,106,94,101,88,106,104,106,111,99,104,110,102,101,101,103,98,107,106,101,110,103,97,99,106,100,106,105,89,99,93,93,82,102,107,96,111,120,95,100,108,80,101,101,96,104,101,96,79,79,97,108,102,109,99,106,112,88,87,106,97,106,90,98,108,103,102,99,97,101,109,103,102,101,98,102,94,111,96,92,97,99,115,86,101,105,96,94,84,100,95,117,94,103,98,100,96,100,90,105,96,91,96,106,89,116,109,97,96,98,107,106,90,93,97,92,103,107,101,106,106,85,102,115,101,102,97,110,129,104,98,96,105,96,104,105,97,100,105,105,98,105,92,100,127,88,107,99,108,98,101,104,95,93,105,103,105,98,110,99,107,104,107,109,91,99,97,99,110,106,91,84,103,73,106,91,101,95,83,98,98,91,96,94,108,95,112,101,102,108,95,102,88,99,105,98,94,96,101,117,105,89,106,111,93,102,107,100,91,102,102,86,96,91,118,98,97,98,97,108,103,107,97,101,99,103,109,97,102,112,97,106,97,82,106,99,100,115,97,80,99,104,95,104,98,98,101,98,92,97,104,98,104,112,116,104,102,96,94,95,105,105,98,92,107,95,94,100,101,105,120,108,106,94,88,110,97,100,106,101,104,103,92,107,106,92,104,101,114,111,111,101,90,96,96,107,96,104,113,119,101,92,101,103,91,99,108,106,102,100,113,104,103,83,95,100,89,103,102,96,108,118,90,102,107,99,101,98,105,99,97,112,95,110,107,95,123,94,108,104,95,105,100,104,99,96,100,102,101,99,91,103,100,99,89,109,96,94,100,97,91,97,98,93,92,123,109,113,105,86,100,105,105,105,105,98,100,106,103,114,102,100,105,101,116,93,109,94,97,103,99,104,113,114,104,99,105,109,82,105,98,113,105,91,102,108,102,113,102,94,109,104,95,97,111,90,96,95,97,110,119,95,98,99,93,103,107,79,109,94,98,100,78,105,99,106,91,99,99,94,90,106,96,103,102,97,99,95,111,106,101,90,105,91,111,97,97,104,99,96,95,106,106,79,99,75,99,99,102,96,106,92,107,88,103,84,107,100,109,94,98,96,104,120,103,96,106,104,103,101,105,87,88,98,126,93,98,92,95,106,106,91,99,102,105,111,99,92,88,101,91,103,103,96,107,83,94,106,87,92,104,111,101,109,113,111,93,95,100,106,103,99,104,103,104,103,106,111,100,104,101,95,106,88,104,99,103,104,95,109,91,88,93,112,113,102,100,86,98,96,113,109,94,97,101,116,92,105,107,110,83,102,105,80,104,108,96,93,93,96,113,103,106,106,98,88,105,107,96,108,102,107,102,116,88,106,96,96,100,94,105,91,84,104,101,92,98,117,110,103,98,97,108,109,113,104,112,94,109,95,107,91,86,119,101,107,95,112,95,101,98,96,100,122,96,87,110,103,105,81,100,104,96, +408.7692,114,100,62,98,96,96,112,114,100,79,86,93,91,112,110,74,105,109,109,101,113,97,96,98,116,92,88,102,83,104,86,75,100,94,102,106,88,87,96,91,109,87,93,87,86,95,85,101,91,77,102,96,99,102,92,106,97,102,86,112,100,100,100,84,94,102,90,105,93,103,90,101,93,105,99,100,95,107,107,99,92,96,93,96,93,96,87,94,103,99,93,93,101,100,100,114,99,100,84,108,91,107,87,85,105,101,89,102,88,92,91,87,101,100,99,94,105,102,96,87,97,92,113,98,102,95,110,92,95,88,106,76,105,103,95,98,95,111,102,98,106,90,100,100,95,95,102,101,97,91,109,92,87,100,102,92,98,94,95,98,91,107,107,98,87,91,91,89,99,98,125,106,97,96,71,106,102,88,98,95,88,98,90,76,106,98,96,92,107,101,98,108,106,102,90,91,102,100,102,105,103,94,103,102,98,99,102,89,106,97,103,104,98,101,95,98,93,95,99,104,105,103,102,101,93,102,100,96,122,96,94,95,117,91,101,88,75,107,101,104,106,101,92,84,97,91,102,101,105,98,104,96,93,96,109,114,103,106,99,103,94,95,90,100,97,129,92,103,90,100,103,101,90,92,96,98,98,96,101,113,96,85,100,107,105,97,87,93,100,82,95,104,95,95,105,119,98,109,98,89,97,96,95,94,99,95,110,102,93,97,94,99,101,100,100,91,84,100,92,89,88,103,99,103,104,109,101,98,109,98,113,104,97,101,105,95,105,95,86,94,105,91,100,92,92,92,102,105,103,98,92,98,103,105,92,72,103,94,104,92,86,103,102,84,106,88,106,111,109,96,110,113,112,110,117,100,96,102,86,104,106,102,91,106,100,102,101,102,101,92,109,88,94,92,101,98,96,101,96,109,99,104,97,97,96,94,97,93,90,92,91,96,108,90,113,100,101,92,95,96,117,97,83,81,96,83,106,101,101,98,94,86,100,102,112,89,122,101,99,95,95,91,108,103,114,125,85,89,99,112,104,104,108,95,106,93,95,116,117,104,87,96,100,100,98,99,104,103,100,91,104,96,99,97,96,84,95,104,112,99,83,100,89,91,97,104,97,97,96,95,103,102,109,95,94,99,102,95,107,114,103,98,101,94,103,92,95,97,104,97,89,110,95,110,95,99,97,95,95,105,103,101,98,89,104,111,114,107,110,98,100,109,81,95,98,101,95,87,97,106,101,100,98,105,98,104,95,92,102,99,92,98,110,102,105,94,105,100,83,98,94,92,93,97,99,109,105,102,92,86,104,79,113,105,111,107,106,93,95,96,101,90,94,101,104,107,110,93,92,91,91,99,111,104,115,98,101,98,104,90,105,101,102,108,88,93,94,99,93,94,79,100,108,107,98,96,99,107,87,95,97,98,95,99,102,105,95,100,107,102,105,99,97,108,90,100,98,103,98,90,99,102,94,100,98,95,95,102,113,102,99,92,100,86,96,103,106,105,93,101,89,103,97,105,88,97,97,96,99,95,100,97,105,93,96,99,97,108,97,83,97,108,97,101,99,96,93,98,96,101,95,100,86,103,97,95,99,95,93,100,100,108,91,90,78,100,101,102,103,94,94,99,100,102,89,88,74,96,89,106,98,89,87,97,101,101,71,101,113,105,108,101,72,104,83,102,98,94,104,109,94,91,97,107,94,93,98,106,89,113,107,109,92,95,105,109,100,91,109,98,91,108,88,98,107,106,99,105,97,80,104,113,95,78,93,94,100,106,99,93,101,101,112,101,120,101,95,95,97,102,96,103,106,109,92,102,96,99,76,102,90,102,84,96,97,94,91,88,97,103,104,94,95,97,102,96,99,95,99,106,98,100,105,102,100,110,107,78,88,99,100,104,108,99,96,94,93,103,116,101,97,100,109,103,98,105,94,98,93,105,96,99,85,95,91,99,90,85,113,95,97,97,93,107,101,101,87,100,99,101,96,110,117,99,96,88,101,100,98,92,100,92,95,102,96,88,100,105,113,98,105,106,97,113,104,86,99,102,102,100,104,95,94,97,101,97,96,112,94,86,105,98,113,100,98,85,104,100,101,98,93,103,105,125,112,96,101,110,97,99,97,102,98,98,96,100,92,95,79,100,100,102,106,107,96,97,95,90,113,105,99,101,88,109,104,98,109,109,101,97,101,102,99,98,101,100,112,90,91,107,92,102,104,78,97,101,94,90,86,98,95,110,95,96,86,98,108,97,98,89,105,117,102,99,100,97,93,103,95,98,80,92,93,99,95,98,86,101,95,96,85,105,103,100,105,103,83,92,102,99,105,103,98,92,95,105,102,97,106,83,95,99,104,97,99,94,87,102,114,92,102,99,90,99,101,94,95,88,101,90,109,92,110,110,108,100,97,96,101,93,90,85,96,102,93,93,98,81,90,96,96,106,105,90,85,101,91,98,103,96,87,106,96,108,102,100,79,94,109,108,101,98,106,94,98,101,104,92,120,107,106,93,110,99,112,96,99,82,101,105,108,112,103,95,100,94,100,103,93,103,99,92,99,101,103,83,105,111,104,90,95,96,98,96,111,105,98,109,105,96,85,99,97,88,89,92,103,107,101,102,105,84,100,101,95,102,100,113,80,102,85,85,104,71,97,99,123,91,104,97,104,88,109,117,116,108,96,93,117,109,90,102,104,104,108,102,95,94,105,106,96,102,110,81,79,98,95,88,102,98,102,95,100,99,95,104,98,110,110,95,105,99,100,100,112,110,101,102,96,104,106,96,100,100,89,92,110,104,102,99,104,114,97,113,102,105,105,111,121,111,93,92,102,102,101,96,105,105,93,102,99,93,114,104,91,103,99,121,103,100,102,91,92,107,109,101,98,66,104,112,103,103,97,108,103,100,105,108,96,99,88,113,104,84,95,103,91,104,94,100,112,114,91,109,92,111,100,99,105,95,105,106,94,104,102,91,102,101,87,104,97,107,92,88,96,98,105,98,95,108,106,98,102,92,107,107,78,105,103,90,103,92,103,97,104,109,101,91,92,113,92,111,95,89,99,97,91,100,105,113,103,93,107,107,92,105,100,108,108,79,98,99,96,106,106,113,85,96,94,98,94,115,99,116,100,102,120,118,103,90,101,96,105,99,106,91,103,109,100,101,95,102,95,110,98,105,105,95,119,99,105,109,96,83,102,102,102,103,106,88,93,113,96,92,106,101,100,102,103,102,104,105,97,99,107,99,107,97,103,99,100,103,110,105,100,104,91,102,105,119,106,94,91,101,93,102,103,104,109,89,102,84,104,98,96,105,103,105,102,92,88,94,104,93,106,112,104,97,97,100,89,103,95,103,98,109,116,105,97,113,84,90,105,87,94,97,112,102,89,101,93,89,96,112,98,102,87,103,81,104,92,111,102,96,100,95,107,96,106,88,100,103,86,97,64,94,101,118,87,94,112,102,95,99,100,102,103,107,106,89,115,107,105,101,92,104,101,100,92,127,105,95,103,99,109,98,106,104,91,92,99,94,98,99,108,96,101,103,96,106,96,107,94,97,95,98,88,124,100,103,113,70,95,101,91,106,83,109,98,86,102,107,112,105,98,104,96,91,108,94,97,97,102,100,96,96,102,99,107,108,82,96,99,107,99,102,91,107,105,107,104,91,99,114,94,79,114,95,92,91,117,104,101,110,98,76,94,95,98,81,102,88,82,96,84,95,105,91,94,105,98,85,99,97,108,98,99,94,105,89,103,100,108,97,101,102,108,104,102,91,100,88,101,102,89,99,101,99,91,103,87,103,96,101,106,109,113,95,104,105,103,96,97,90,108,99,109,82,87,109,104,102,105,103,101,79,107,92,92,102,107,108,98,103,88,102,99,92,92,106,99,91,96,102,104,95,106,97,91,105,99,102,105,93,100,94,97,101,106,92,105,120,101,103,96,123,102,108,95,90,91,103,105,100,108,101,103,101,75,105,110,102,102,103,100,98,103,107,104,96,105,103,105,100,98,108,92,103,105,100,94,100,105,90,94,89,99,87,87,99,107,104,100,105,101,101,87,98,106,91,105,87,106,97,92,102,93,102,92,105,103,97,102,106,102,83,87,105,97,108,113,96,96,101,101,79,101,104,96,99,91,95,94,104,101,104,101,117,105,96,104,86,94,97,98,65,106,118,83,96,93,104,98,94,112,102,95,107,95,104,99,100,106,94,115,98,103,95,101,113,97,102,87,100,101,103,109,64,110,91,95,84,106,101,101,93,103,109,98,98,90,99,106,104,94,98,104,107,83,100,101,91,105,101,99,98,104,110,107,104,97,94,93,105,106,109,83,103,113,115,115,94,102,94,93,100,84,105,107,105,93,96,104,99,113,97,99,104,98,125,92,99,100,97,101,96,102,99,91,89,89,84,98,95,98,102,85,96,89,107,104,94,98,87,100,91,99,101,102,97,99,112,99,105,108,96,102,97,100,102,94,98,87,112,91,102,110,107,96,83,97,95,105,109,105,105,108,95,104,94,96,97,93,92,105,103,111,110,119,115,101,96,87,102,100,105,94,89,102,100,100,104,106,104,95,100,109,98,67,97,89,98,95,102,93,105,102,100,94,116,96,98,95,100,103,110,112,101,95,102,97,102,95,108,98,89,102,98,94,97,91,99,104,96,94,89,91,99,100,88,101,92,101,103,104,98,99,95,102,95,93,103,95,90,112,93,97,104,90,97,94,91,90,101,88,95,92,103,88,93,104,103,105,97,94,101,93,102,116,85,91,98,95,112,102,74,106,102,88,97,96,111,96,92,110,108,118,101,68,100,105,105,111,91,100,104,108,91,102,95,101,117,90,103,89,99,99,98,104,98,79,98,111,98,102,88,80,100,92,98,109,74,105,98,101,102,98,107,103,102, +408.90936,90,104,120,86,102,100,109,101,99,98,88,97,97,92,100,80,100,116,103,71,99,106,91,97,91,106,97,104,95,106,92,87,97,90,102,98,91,92,101,93,96,79,101,100,95,94,95,102,93,94,91,97,101,101,98,101,112,98,105,92,99,101,97,100,101,103,95,99,93,94,91,101,94,95,97,102,94,99,99,99,87,96,86,95,97,97,110,85,108,94,95,96,102,110,89,106,97,101,96,98,108,98,83,89,99,102,92,105,102,102,93,104,97,97,101,63,113,108,100,108,94,92,120,95,81,113,106,95,103,107,101,101,122,101,93,94,96,91,90,94,97,85,96,89,102,91,98,99,105,99,101,92,101,107,93,91,95,96,99,106,96,92,105,104,105,102,90,102,104,92,101,102,100,96,98,98,97,105,101,97,95,79,70,101,102,103,108,116,105,97,98,87,95,98,114,110,98,98,95,92,83,97,97,94,102,99,105,99,63,104,79,101,110,90,106,78,102,92,93,95,92,117,98,99,97,113,91,106,108,96,98,91,98,101,103,106,102,94,94,97,93,96,102,100,93,91,86,112,102,99,92,94,103,96,97,101,108,111,92,97,93,107,95,102,111,101,89,104,98,96,108,110,114,94,112,98,91,95,97,86,104,101,97,98,101,100,97,99,106,114,102,100,96,97,105,99,109,104,109,101,89,91,112,85,95,95,116,100,88,94,96,104,97,108,105,96,92,97,80,98,95,87,98,101,91,102,93,107,121,105,103,97,92,109,113,90,93,100,91,100,94,121,92,103,118,96,99,117,109,91,100,105,107,102,114,109,120,95,99,108,104,98,104,105,87,98,96,91,106,101,96,105,101,98,106,93,105,104,106,102,103,108,100,95,111,108,96,92,105,98,103,85,91,97,96,109,91,106,104,95,89,99,109,99,98,106,106,111,108,95,85,93,95,103,100,115,107,95,94,99,131,99,97,96,107,99,87,91,96,96,89,101,90,100,97,93,110,108,96,103,102,99,101,107,100,99,92,94,96,106,100,98,71,111,68,99,94,104,106,98,97,95,109,100,102,105,95,99,98,87,90,109,101,102,98,100,100,103,103,108,95,99,75,102,94,90,100,84,102,88,110,107,95,97,97,111,92,98,104,106,112,89,100,98,110,93,94,101,100,101,103,109,99,100,97,83,111,100,99,109,104,88,97,105,97,109,97,100,101,102,92,102,98,99,102,99,97,101,108,108,104,90,92,101,92,100,86,101,97,105,102,105,102,103,102,105,102,102,98,115,98,106,102,105,97,89,103,107,94,66,90,106,99,96,102,112,102,90,92,99,86,101,94,104,119,100,104,98,103,103,102,97,96,86,109,103,92,94,110,95,98,99,100,92,97,100,94,94,105,91,109,97,104,100,96,101,95,96,102,90,101,96,93,100,104,96,97,94,105,113,99,99,92,102,83,103,104,101,92,97,108,107,85,101,89,107,87,118,101,100,98,105,108,100,109,97,96,105,113,96,105,104,102,102,105,98,95,83,109,101,102,97,101,101,94,103,100,99,105,95,99,97,100,102,91,91,93,96,101,95,101,96,83,100,110,80,99,109,103,97,90,99,89,113,100,95,106,108,98,101,97,95,108,93,89,100,98,105,96,96,91,97,95,93,106,94,101,101,100,107,89,100,94,105,95,88,101,100,102,100,101,108,95,95,103,96,96,88,96,111,97,89,97,101,107,87,103,105,107,93,97,114,102,92,91,104,97,97,112,64,101,101,99,91,97,91,105,101,96,96,104,87,114,107,106,99,104,104,105,107,103,92,112,103,100,102,93,105,100,108,96,94,81,98,102,106,91,98,115,96,95,102,95,96,95,104,115,105,113,92,97,115,98,100,95,106,108,95,99,96,99,102,100,104,95,102,95,98,110,99,93,108,100,110,82,102,91,92,111,94,104,91,91,104,92,95,99,103,101,107,106,92,99,94,108,86,97,113,107,101,104,107,107,95,113,74,100,108,101,106,111,96,106,97,105,91,96,108,112,88,92,104,102,90,105,99,105,106,92,105,101,115,94,105,102,97,106,101,101,108,88,78,101,94,84,79,97,104,96,92,99,96,102,114,85,94,99,88,99,99,91,103,91,97,81,95,95,89,88,102,96,120,112,100,92,97,105,107,105,104,92,104,93,104,101,109,107,102,95,109,103,109,92,91,97,101,98,104,95,98,96,105,100,108,91,104,95,74,101,96,107,113,85,100,107,110,87,101,102,93,102,86,104,104,93,95,97,108,95,100,97,94,110,88,109,100,110,108,85,95,93,96,115,114,96,109,90,92,94,94,109,96,119,99,107,95,95,101,92,103,94,96,104,93,103,84,99,97,99,101,92,109,99,100,96,93,108,96,100,89,93,87,100,88,89,100,99,92,98,99,98,94,87,96,99,101,88,109,99,92,99,99,100,92,86,96,105,104,92,96,105,91,73,106,109,96,106,96,98,108,105,94,101,103,105,102,101,105,112,107,106,93,103,87,111,100,100,100,98,110,109,111,94,99,94,91,106,96,105,106,99,90,86,99,102,99,88,108,104,97,96,109,98,95,107,99,97,95,99,99,102,101,102,99,99,72,102,96,111,92,111,102,113,109,105,101,106,107,102,94,99,111,91,115,113,106,84,100,109,98,97,93,112,103,106,95,98,98,116,109,105,102,103,113,91,95,101,104,113,116,98,105,112,101,111,94,102,97,98,103,103,102,79,94,94,112,105,105,91,89,102,105,103,105,105,96,101,104,103,109,101,97,108,99,98,99,104,101,102,90,103,96,112,95,103,103,98,102,96,104,101,105,106,110,106,109,110,102,116,94,96,102,80,110,84,115,103,88,94,109,92,114,95,113,103,101,112,100,98,91,105,104,103,114,108,102,92,95,95,118,110,104,110,112,110,92,85,107,115,95,93,95,99,102,107,96,110,98,102,99,104,100,89,101,103,99,106,103,101,105,110,112,127,103,105,109,119,103,102,103,93,102,96,97,99,106,102,99,94,95,105,91,93,121,106,116,105,98,91,103,99,104,98,90,96,105,104,106,106,86,94,103,109,99,97,100,96,86,94,101,109,111,95,96,109,102,102,103,113,103,103,103,95,102,105,101,104,110,101,91,98,98,90,100,101,98,95,106,90,107,100,106,112,107,93,102,101,83,106,107,91,97,89,104,97,102,110,102,105,100,99,105,102,100,104,94,99,97,100,108,94,103,91,93,99,97,98,95,103,92,108,106,95,107,104,105,109,112,106,100,100,98,127,103,93,98,98,114,107,99,102,96,105,101,105,103,104,99,103,103,99,107,95,100,105,102,110,100,116,92,89,93,93,88,88,104,103,102,101,90,103,106,99,96,100,108,88,100,98,97,106,109,101,97,109,134,97,100,104,92,80,97,101,101,111,103,106,99,111,109,102,92,96,93,103,96,94,98,78,107,109,100,106,85,95,96,110,104,106,101,109,100,97,113,105,100,112,99,99,95,92,100,97,112,118,96,93,103,98,81,97,108,99,109,101,98,97,100,96,112,94,97,99,104,97,113,93,97,105,99,109,105,91,109,103,105,83,97,108,94,101,104,96,107,103,107,94,98,107,112,112,99,102,96,102,90,99,102,106,109,96,102,97,90,98,106,102,99,105,102,92,101,93,106,92,103,99,97,94,96,104,104,88,113,113,128,98,102,125,92,96,101,106,107,72,99,91,85,104,92,95,89,94,95,104,103,109,105,99,103,104,92,101,104,92,92,98,102,110,110,101,94,102,100,106,112,108,94,103,109,105,101,103,98,102,89,94,104,95,101,100,93,96,107,102,103,111,90,110,100,101,112,107,97,84,96,115,96,105,105,102,106,104,116,105,97,91,92,100,105,95,91,94,106,97,88,92,91,100,107,98,104,96,104,99,106,99,106,101,103,100,103,109,103,97,111,95,98,101,103,108,102,111,100,79,102,109,118,102,105,100,107,95,107,95,100,102,106,108,95,102,106,104,107,109,115,98,91,106,110,111,99,107,103,109,94,98,91,106,88,107,102,88,101,95,99,107,101,96,103,115,100,100,91,116,99,113,99,95,91,104,91,104,100,102,109,101,103,65,108,108,107,100,101,96,107,96,105,92,93,98,99,97,99,90,102,106,98,102,104,105,104,77,102,107,100,115,104,88,105,98,103,114,91,102,113,85,104,101,101,97,107,102,100,83,98,99,107,106,113,112,96,94,95,99,124,103,104,101,98,96,100,117,91,93,99,100,95,98,98,103,105,101,91,93,109,100,87,99,111,97,107,96,102,79,95,93,102,95,110,94,100,100,89,109,115,104,89,109,93,104,95,117,95,103,100,109,96,107,108,101,98,106,106,108,104,102,105,106,99,102,109,89,105,121,104,98,80,110,97,111,107,104,91,107,103,103,99,97,97,118,88,94,105,102,92,87,95,99,104,117,107,111,114,90,95,95,97,103,107,88,99,99,107,108,103,101,103,100,96,87,92,94,103,87,101,97,113,95,105,93,105,100,75,103,92,96,99,98,104,107,98,98,93,103,97,98,93,99,96,91,92,114,99,101,112,99,102,99,104,104,98,93,99,102,110,106,92,95,106,102,98,92,109,96,112,107,95,107,105,99,113,95,103,103,91,105,103,95,99,97,98,96,95,92,68,108,96,77,102,107,97,106,113,110,109,92,106,101,105,92,99,116,90,113,99,103,101,96,98,109,104,110,94,93,95,102,87,85,98,117,96,101,91,69,101,104,99,99,106,106,100,103,83,106,109,93,107,106,107,94,83,96,98,65,102,109,108,91,108,95,87,98,101,120,99,118,115,98,104,94,101,94,102,102,101,104,88,98,94,103,90,102,102,106,86,75,98,108,105,114,103,91,98,113,106,117,105,106,105, +409.04956,82,97,97,108,82,89,94,92,99,99,90,92,93,99,91,104,81,91,106,101,121,99,103,90,95,77,108,95,102,108,85,96,85,95,96,98,97,102,109,97,76,103,91,114,81,111,95,92,96,102,100,112,103,97,90,96,99,97,114,106,96,96,102,95,104,101,131,92,82,106,110,94,95,110,116,90,90,107,91,104,97,95,94,100,77,98,111,93,87,89,92,90,82,92,112,91,102,105,114,115,122,113,100,111,101,104,99,90,110,101,103,100,95,90,99,86,118,91,96,104,100,101,109,107,101,108,108,89,109,101,112,95,118,89,107,104,95,92,88,112,95,107,90,105,94,87,98,100,100,106,102,101,101,77,98,107,82,100,96,100,85,98,119,88,96,92,105,88,108,98,100,113,119,109,102,91,113,91,96,86,102,114,108,109,105,91,88,81,109,86,94,99,94,98,106,99,108,102,108,105,97,105,106,99,96,108,92,94,107,101,93,104,110,88,79,100,99,99,102,94,106,88,86,104,97,103,113,98,95,94,93,102,105,105,92,106,99,109,105,86,92,95,109,95,99,97,108,81,96,99,96,101,103,101,93,103,99,101,105,119,96,100,102,82,91,104,91,82,95,100,102,94,105,108,95,94,101,109,101,109,98,97,99,106,103,98,131,100,113,103,97,104,112,107,106,101,116,87,102,90,101,91,100,109,96,100,104,95,95,110,94,101,103,93,98,103,100,108,107,98,76,99,93,98,85,98,108,99,102,106,130,94,96,108,100,98,98,95,109,102,103,103,111,114,109,91,98,109,113,114,100,114,98,93,97,104,96,113,93,105,93,98,111,86,94,102,107,114,105,110,103,113,99,101,119,99,92,99,110,88,102,97,97,97,104,97,97,82,106,98,107,90,91,97,94,102,109,96,100,118,112,105,113,97,108,87,105,102,113,93,87,96,104,94,113,99,93,88,98,106,97,102,93,104,92,87,102,95,99,120,101,105,102,93,101,95,104,111,109,88,110,100,109,103,86,114,91,94,95,108,97,101,96,121,97,100,110,99,104,113,95,105,96,103,110,108,101,91,106,97,99,90,95,102,101,95,102,114,101,98,100,106,113,99,114,93,94,99,97,110,94,109,96,101,108,112,95,99,103,92,101,96,107,100,95,112,90,102,104,93,101,102,102,107,104,99,103,95,96,95,99,105,99,104,94,89,109,91,97,91,92,98,98,102,106,64,108,83,113,96,97,100,95,96,96,93,90,92,100,100,115,113,90,103,109,118,95,85,110,105,86,98,114,101,96,87,118,100,107,95,100,74,94,115,100,100,95,101,106,109,106,94,96,101,107,108,102,95,99,89,95,102,93,91,105,102,93,92,102,114,108,118,93,94,104,88,97,99,95,100,93,101,97,96,100,99,95,112,136,104,102,108,102,84,99,111,109,103,105,105,100,101,101,109,103,101,95,89,110,99,105,110,109,109,96,96,91,93,102,105,109,105,101,113,97,103,119,108,104,95,104,103,100,111,99,116,97,95,99,102,102,113,101,105,109,107,110,99,101,98,96,111,110,86,98,102,105,90,101,117,96,99,91,101,106,97,103,110,99,102,104,96,99,104,92,105,98,112,109,109,129,100,95,108,88,106,95,103,107,82,97,90,109,102,98,95,103,101,100,102,106,98,105,96,91,95,107,98,106,92,107,97,95,98,102,93,100,94,103,113,100,90,99,105,104,97,107,109,91,86,80,100,93,107,95,91,92,102,103,101,98,99,97,101,102,104,105,104,95,105,115,105,114,107,93,115,102,109,102,120,93,96,104,102,108,113,103,93,100,106,98,102,93,97,98,101,98,99,101,107,109,99,96,93,95,96,93,99,107,95,90,85,106,106,109,95,109,102,113,102,101,83,105,96,105,107,100,99,100,101,97,102,110,100,91,101,96,104,94,104,100,94,100,103,93,115,105,110,116,102,101,90,101,111,100,99,108,99,109,102,106,103,98,98,104,105,78,101,82,98,102,105,87,112,95,98,99,104,99,109,101,101,101,98,91,98,92,107,98,99,106,101,103,98,95,100,102,96,106,105,101,105,104,92,103,99,107,107,106,96,108,108,101,101,95,107,97,96,108,101,92,99,109,111,99,88,114,101,101,95,113,97,106,115,96,91,100,102,98,104,112,97,111,104,102,98,136,99,110,93,98,106,95,81,114,99,75,109,107,97,92,92,102,89,96,106,104,86,105,110,100,100,97,95,106,104,101,97,81,124,99,103,128,105,88,91,101,112,108,99,107,95,98,95,90,91,106,107,101,98,92,114,101,107,100,73,113,100,95,101,102,101,102,97,95,87,103,94,93,97,113,101,107,99,99,90,102,93,99,91,101,98,97,91,97,103,97,99,100,107,102,100,99,107,99,103,91,105,108,94,87,93,103,91,106,93,99,88,100,106,106,92,103,113,85,104,89,88,94,98,100,106,104,107,113,106,104,93,102,102,112,101,110,77,108,93,91,98,102,96,91,105,101,97,116,105,91,93,107,103,98,110,94,107,92,100,104,93,85,112,95,101,102,111,92,106,105,99,99,106,103,102,104,92,101,99,90,103,98,99,91,93,97,120,102,92,98,104,99,90,117,100,112,95,96,100,96,106,102,95,103,105,96,86,105,91,102,105,98,86,99,101,105,104,100,100,93,99,97,76,100,102,92,109,110,101,116,113,76,110,106,107,109,97,94,94,98,97,96,88,107,106,104,102,98,108,94,95,112,102,92,104,74,106,112,109,106,99,99,103,98,92,103,113,113,100,106,97,112,109,100,106,93,107,101,114,107,109,110,103,110,97,108,100,93,95,98,115,103,105,95,97,116,107,98,93,96,105,106,107,97,108,116,106,110,100,99,106,78,94,101,97,99,111,112,104,90,105,107,103,88,92,110,102,107,94,95,116,112,101,110,107,106,98,81,110,100,95,109,70,108,103,98,108,103,113,111,96,106,105,91,100,99,97,108,112,97,99,102,101,110,93,88,108,99,94,115,84,97,99,100,102,103,107,107,101,101,94,117,111,95,91,108,112,109,76,105,94,96,95,84,109,94,106,109,109,96,98,121,94,97,87,109,97,102,91,96,100,93,107,104,117,101,112,98,98,84,105,98,104,103,92,99,99,104,68,106,109,106,90,104,105,91,104,104,100,97,109,110,101,105,99,100,103,101,113,95,100,99,103,99,100,105,95,99,89,89,93,97,76,98,103,102,103,100,110,102,96,104,100,103,117,119,107,96,106,104,101,107,111,108,94,105,96,101,101,88,102,111,95,90,88,100,97,115,98,110,92,107,99,111,95,107,109,109,102,96,87,100,104,92,104,94,108,91,102,89,101,108,94,106,91,96,104,90,95,93,102,102,108,103,98,81,112,102,94,70,105,91,102,107,109,112,99,99,85,109,105,88,97,96,102,101,88,94,106,93,112,103,97,116,97,92,94,90,98,98,95,100,102,106,102,110,108,98,99,106,96,104,105,104,106,106,106,105,95,95,96,102,101,99,107,103,107,99,105,110,108,95,112,98,101,98,91,108,104,101,95,94,105,118,108,98,107,96,101,102,101,99,103,99,102,95,101,96,100,85,111,109,105,99,97,100,94,106,104,113,109,105,81,104,99,99,110,102,96,101,101,106,103,99,100,106,107,109,92,96,126,91,97,100,117,71,104,101,96,91,96,99,101,94,97,99,99,104,103,101,98,107,88,100,102,100,99,105,94,108,112,105,103,93,103,93,109,99,112,102,101,106,107,105,100,106,94,101,89,98,100,115,98,95,101,101,98,94,93,96,107,96,104,103,100,102,93,102,107,99,93,95,101,87,95,102,96,107,112,106,100,89,112,95,112,112,98,94,101,96,104,103,81,110,107,95,92,108,92,100,88,91,97,91,84,103,113,111,100,96,102,102,105,98,109,105,101,95,113,96,113,119,100,103,105,101,99,85,110,111,103,98,112,117,94,100,102,102,105,101,96,100,103,109,91,89,100,102,90,109,102,109,108,94,101,103,103,125,104,98,98,101,100,105,103,88,95,109,105,98,98,95,96,105,107,98,106,96,96,104,109,97,106,91,108,97,101,98,101,95,111,95,96,104,99,99,103,114,101,101,103,109,101,104,96,104,96,98,109,95,96,103,104,101,94,96,86,101,101,103,101,111,93,118,113,108,107,113,106,109,103,101,97,106,105,98,109,104,107,107,99,98,100,99,104,116,107,98,104,105,109,105,103,94,92,100,106,81,102,87,93,97,80,99,94,108,107,101,96,100,95,88,93,97,94,97,94,96,94,100,100,82,103,98,93,97,97,102,99,102,102,98,96,103,102,71,103,111,108,105,110,90,99,125,103,108,104,105,99,81,76,100,105,102,106,114,89,103,102,113,102,96,99,91,88,95,99,99,103,100,100,104,97,103,101,93,91,96,98,85,92,81,101,107,117,98,113,102,106,94,93,96,106,98,98,121,112,111,94,103,102,96,87,94,97,83,90,87,108,99,89,97,87,87,69,101,103,98,107,111,103,98,93,103,92,99,100,99,105,85,102,96,99,102,105,111,92,97,100,111,100,98,103,104,98,94,105,113,104,113,105,103,110,112,95,101,96,96,100,105,117,109,104,100,102,106,96,107,90,105,104,94,100,102,98,99,102,98,103,96,94,103,98,92,89,99,99,105,103,103,112,112,102,97,109,92,91,96,101,93,87,101,103,92,80,90,99,96,96,106,112,84,97,94,113,91,98,105,98,96,94,100,93,104,95,98,89,108,85,108,92,98,98,113,91,97,105,113,105,87,105,82,111,113,95,73,85,103,87,100,94,108,93,102,107,102,98,96,97,94,98,102,98,118,87,83,84,103,112,83,91,105,99,98,96,97,89,103,94,99,104,90,92, +409.18973,92,85,98,90,90,98,104,97,97,97,97,101,111,123,102,77,114,102,89,96,109,73,88,108,92,97,97,106,112,102,106,108,92,95,114,94,89,97,103,99,101,103,91,109,100,113,105,94,83,98,95,115,99,88,97,97,98,101,100,93,95,96,108,102,68,112,96,100,105,98,104,121,103,96,109,106,86,96,101,92,104,102,110,91,100,108,105,104,106,107,100,105,122,106,89,89,96,100,102,109,105,117,99,95,104,102,102,93,86,103,104,97,99,100,107,87,109,99,109,95,91,98,107,104,104,104,106,105,104,100,100,96,114,91,96,105,98,95,97,106,91,116,105,100,86,101,106,103,104,103,96,94,108,93,104,105,91,89,84,106,94,111,103,99,97,106,95,102,95,97,88,114,102,105,106,95,92,103,112,109,95,108,93,103,117,89,109,94,112,85,110,105,95,110,98,99,110,98,91,94,99,95,105,109,94,103,105,100,96,102,108,109,99,106,93,97,103,110,97,103,107,105,94,104,103,100,100,103,106,99,99,99,99,104,87,106,113,109,109,104,109,98,73,102,99,100,102,106,102,109,101,91,101,106,103,107,98,97,94,96,104,111,95,102,92,104,111,99,95,91,95,102,105,98,82,107,97,105,84,99,103,95,108,106,103,97,97,104,105,95,99,99,105,99,120,69,93,106,97,100,99,104,103,99,96,104,95,95,98,114,95,98,107,106,112,101,107,101,90,94,100,93,109,112,100,95,104,92,108,104,115,93,95,103,93,86,107,94,101,101,103,93,106,84,99,106,100,101,95,99,85,112,103,105,99,96,103,121,105,98,98,101,70,95,87,94,102,103,105,92,114,108,104,101,99,99,113,102,106,106,108,99,90,111,93,70,94,95,93,106,101,105,103,99,105,93,96,94,95,123,89,109,88,93,86,97,93,93,98,100,104,104,96,88,110,92,104,99,102,100,97,95,91,109,85,88,99,99,102,94,103,99,106,94,104,72,94,102,101,108,106,100,104,93,97,104,96,90,114,110,110,101,98,96,97,104,102,102,102,105,95,92,97,110,91,97,91,101,106,93,99,104,100,94,105,98,103,112,100,105,103,108,109,109,94,87,103,102,109,91,94,113,100,99,88,103,98,107,107,102,106,93,98,103,105,101,102,93,101,92,104,104,108,110,96,88,112,110,107,96,110,94,103,97,109,100,108,110,99,106,91,102,102,103,90,107,108,103,102,109,110,102,102,100,109,95,106,109,105,96,105,105,118,108,97,108,109,102,98,96,98,98,102,95,100,76,103,100,109,101,94,98,103,94,99,105,85,99,109,100,114,109,98,102,108,99,109,95,104,84,105,111,86,93,95,108,90,102,106,103,102,91,102,101,112,99,101,91,107,99,95,103,98,103,91,119,100,97,102,106,100,98,85,93,98,98,99,95,96,99,100,112,94,102,91,100,106,93,113,96,106,112,103,104,100,87,108,107,100,110,101,91,102,106,96,104,138,100,96,91,95,118,103,99,99,98,97,93,99,88,110,108,108,104,95,92,111,92,100,105,107,104,101,94,96,96,99,99,95,97,100,102,99,110,102,101,105,105,101,100,106,104,104,102,105,108,98,105,107,95,87,99,118,105,92,87,102,103,101,97,101,100,88,92,90,93,108,97,95,105,113,105,95,101,96,110,100,101,102,101,112,98,80,100,96,98,105,109,98,105,109,105,92,92,108,97,96,87,113,84,100,102,113,102,91,78,97,101,106,94,80,84,100,101,92,95,96,101,102,90,78,105,106,93,74,101,101,105,105,103,108,101,86,112,109,95,92,100,99,110,91,90,91,102,102,101,116,79,101,106,112,93,100,102,117,101,101,100,104,94,104,109,106,107,96,107,102,104,89,105,100,111,98,99,88,109,103,95,98,100,99,99,109,98,95,101,103,91,100,90,101,104,99,98,98,109,112,104,104,103,97,105,93,107,81,95,96,101,96,109,107,104,92,108,104,99,95,91,104,94,96,98,106,97,103,99,90,133,98,90,94,111,105,102,91,95,88,113,105,108,109,105,109,113,103,100,90,92,101,115,102,110,100,102,110,91,103,134,95,109,100,107,93,91,95,99,97,93,108,119,99,100,104,107,104,100,96,104,98,107,106,106,109,98,91,100,96,104,92,99,103,94,104,91,105,93,107,95,91,108,105,96,90,81,105,87,95,102,92,109,99,93,107,118,100,109,95,98,96,99,99,104,90,90,104,94,97,100,101,96,99,99,105,102,101,97,100,107,99,110,95,107,90,98,113,110,114,118,91,111,96,93,93,95,91,88,97,95,97,97,100,101,96,92,96,104,104,96,102,109,103,102,98,96,92,97,91,84,89,104,98,108,84,118,94,88,102,110,97,84,112,112,106,97,103,98,97,94,106,88,105,103,69,110,99,95,105,97,91,105,104,108,105,105,107,103,108,95,102,109,108,94,101,95,116,101,87,93,106,111,92,97,107,109,100,98,96,96,114,102,91,98,92,95,105,91,105,90,105,110,102,104,98,96,94,100,98,109,88,95,97,85,96,96,90,104,102,99,90,100,106,104,101,100,97,100,111,88,104,85,101,100,94,109,100,96,99,105,104,110,101,94,116,104,100,105,95,109,107,91,96,98,107,95,105,102,112,98,98,110,116,84,103,113,94,84,79,98,99,105,103,106,96,101,93,108,99,91,116,100,97,93,111,93,89,106,109,89,112,112,101,107,113,94,113,92,103,104,99,96,99,109,97,103,96,102,105,68,101,101,105,103,101,88,106,100,92,108,102,90,93,93,98,100,108,101,113,117,102,103,96,103,113,94,102,100,110,110,108,97,98,99,84,106,97,102,101,112,101,109,106,106,88,102,105,100,92,102,97,104,100,98,96,108,80,98,93,99,104,103,100,102,113,96,102,113,103,101,98,97,111,100,100,97,100,105,102,98,105,101,98,114,87,88,103,108,102,99,104,104,100,92,91,101,105,73,102,104,95,104,96,95,101,104,100,98,107,97,102,92,107,92,99,102,107,108,104,98,93,100,93,94,94,113,105,101,95,102,105,93,99,100,98,126,95,87,97,101,93,101,104,100,104,102,103,102,105,115,104,93,97,97,100,118,101,96,98,84,85,99,91,83,81,98,100,99,103,107,100,100,99,100,106,108,118,106,100,92,110,110,97,99,100,103,92,94,88,115,105,110,88,104,98,109,113,93,104,96,102,98,109,111,85,102,84,97,102,104,112,101,102,102,103,92,98,100,92,107,88,98,98,90,106,97,100,99,98,100,104,100,101,105,89,107,88,102,102,103,100,107,108,105,80,102,109,84,92,109,99,94,91,108,96,94,106,107,101,91,93,100,97,95,95,113,109,102,98,105,98,103,106,94,101,107,101,105,93,98,110,97,96,99,109,107,98,101,105,103,86,96,91,101,101,91,88,113,102,96,107,92,108,102,106,87,96,94,96,94,106,108,111,102,100,97,100,109,95,104,111,92,100,90,104,127,115,105,96,101,105,98,100,91,109,105,101,83,107,99,97,77,98,95,96,90,108,110,87,103,97,97,104,93,95,104,109,108,99,96,107,86,116,94,93,97,100,93,110,91,105,107,83,100,94,101,99,97,115,107,109,104,97,90,91,97,109,113,106,96,100,106,98,96,96,102,106,104,95,103,102,102,103,99,108,109,96,96,106,95,116,101,101,100,96,92,98,105,111,68,91,110,97,99,90,97,102,96,101,96,88,104,103,90,111,95,98,101,110,101,99,98,123,95,95,98,101,103,87,97,66,93,101,101,97,94,95,106,93,98,112,99,95,92,97,101,102,107,113,91,96,102,99,102,104,100,92,113,105,105,108,101,97,114,67,96,105,99,88,105,106,108,99,111,87,95,100,108,89,97,93,117,95,94,94,87,111,107,103,88,112,88,103,96,104,105,93,96,93,102,96,92,98,109,109,122,95,94,104,96,105,93,102,101,100,101,99,98,97,99,73,96,107,90,98,105,108,97,97,99,102,103,100,97,100,92,94,109,106,93,103,108,92,87,96,96,115,88,105,108,106,100,102,113,124,97,103,105,106,104,100,103,94,108,98,95,98,112,96,97,82,99,92,116,108,103,101,121,98,93,95,99,90,104,95,104,98,102,96,106,99,101,97,87,101,99,94,106,116,98,89,100,101,104,95,96,94,105,98,103,107,108,111,109,106,98,110,90,103,96,98,113,98,102,85,107,93,97,96,106,92,98,98,102,112,93,96,92,106,92,91,94,104,92,100,111,106,90,99,84,93,108,104,97,105,103,106,108,91,83,92,95,86,117,111,130,106,101,91,92,89,100,98,118,71,96,104,98,108,89,104,95,101,109,102,98,83,102,98,101,111,100,98,104,102,100,113,106,109,100,100,100,74,97,94,100,102,107,104,108,108,99,104,110,100,104,94,101,87,100,91,117,101,108,98,103,106,88,99,100,112,108,89,100,95,101,99,100,99,100,98,106,87,101,94,86,106,100,104,104,110,88,88,94,106,98,99,106,91,113,102,95,88,102,87,95,107,104,114,100,104,97,97,113,88,112,100,99,107,90,97,98,102,101,115,101,101,98,99,112,96,103,86,105,110,101,97,92,93,104,101,84,99,102,99,93,108,103,101,93,101,103,111,93,98,108,98,108,95,94,110,102,93,84,88,101,92,90,98,91,99,96,113,112,100,94,109,107,92,112,112,95,79,113,81,109,92,89,110,87,98,102,94,87,96,96,90,103,99,88,100,101,95,94,97,83,99,112,95,100,83,97,78,87,102,99,100,99,104,102,96,102,107,103,98,96,87,108,96,109,99,92,101,89,87,105,113,99,76,81,106,105,103,79,90,84,98,73,91,101,68,97,100,108,99,98,109,94,94,100,106,104, +409.3299,101,110,84,92,108,88,87,71,93,94,89,91,106,105,91,95,97,113,95,83,97,72,97,108,101,104,100,104,89,99,99,96,88,100,91,104,98,106,93,108,104,100,75,87,99,93,88,97,90,92,103,110,89,89,98,89,96,96,103,93,94,109,99,92,110,100,92,111,95,92,99,108,91,95,100,117,94,98,104,105,83,87,105,71,98,89,96,104,95,109,94,91,96,90,106,105,86,86,95,94,97,94,103,91,95,120,97,103,96,83,99,108,98,104,105,101,101,95,99,105,93,102,100,92,70,117,95,109,98,92,90,98,97,118,105,93,103,91,97,105,96,90,97,102,103,90,101,98,96,93,82,103,97,97,91,106,90,104,108,97,105,101,104,102,83,90,103,92,96,107,106,96,111,102,99,99,102,106,104,118,102,94,94,107,95,97,103,89,101,92,87,97,98,104,110,88,86,108,96,97,105,92,114,98,91,94,97,104,117,101,102,104,88,121,86,113,96,100,107,110,95,106,97,95,97,109,97,103,99,92,110,107,98,95,99,95,105,94,101,109,88,91,106,87,97,103,104,90,103,97,92,96,105,99,100,104,100,104,100,101,94,93,104,84,94,104,108,98,110,98,94,100,109,105,98,101,90,107,101,100,107,96,101,96,107,91,103,102,102,100,99,107,106,98,104,102,88,96,107,94,101,96,98,101,98,109,108,105,100,104,94,98,96,95,107,98,103,95,100,101,96,92,98,109,95,95,101,96,104,96,100,98,104,81,106,109,98,102,114,90,105,100,86,97,100,107,105,111,98,109,100,99,96,89,108,101,97,102,99,88,106,97,97,93,96,92,99,102,117,101,100,102,105,90,120,91,111,111,113,93,106,98,106,97,92,97,93,105,110,95,117,83,78,83,97,107,97,105,95,112,94,93,89,97,99,101,94,106,107,96,103,98,98,101,105,110,74,99,90,103,91,101,104,72,95,95,88,94,93,100,90,96,95,93,93,91,108,90,98,98,99,92,100,101,87,97,105,76,93,105,86,107,97,92,109,108,96,88,100,105,101,103,90,99,106,114,90,109,88,82,100,104,98,107,101,107,104,94,106,96,106,99,107,75,91,96,103,101,106,91,100,101,92,109,95,97,108,97,95,101,106,92,100,113,97,101,86,108,89,85,102,101,105,105,90,104,97,92,94,98,105,94,102,91,96,92,87,99,97,96,104,109,109,92,109,104,104,100,91,104,109,99,90,96,92,62,99,101,96,85,95,98,102,98,96,112,92,95,94,90,100,106,122,102,99,97,98,101,94,86,107,96,116,106,105,88,91,91,100,95,96,96,103,101,92,98,99,117,101,94,95,106,95,83,95,106,96,103,93,95,93,99,94,100,114,89,96,108,91,96,95,88,101,97,102,101,103,105,99,77,102,104,92,101,105,98,89,94,98,110,98,87,94,104,92,97,95,91,106,96,97,102,94,93,101,101,94,89,97,119,111,82,105,101,105,103,113,88,92,86,113,105,106,99,87,106,105,95,105,96,98,106,103,95,96,107,110,100,106,94,94,106,105,104,95,104,102,104,96,71,111,101,105,109,100,97,95,95,104,98,106,98,92,101,118,107,67,105,92,112,108,109,105,103,97,113,103,95,98,95,92,107,110,105,102,100,100,102,103,99,103,105,97,98,98,108,96,100,105,102,101,93,88,103,96,104,100,102,94,92,100,92,100,88,100,92,102,103,103,102,100,91,89,99,97,96,99,108,98,106,103,105,107,97,99,100,105,104,100,100,96,98,98,109,94,105,107,98,102,107,97,96,96,101,98,112,95,96,95,108,92,111,91,98,112,113,96,96,106,93,112,105,103,95,95,107,99,113,104,101,102,112,107,98,96,98,96,100,103,102,107,126,101,105,91,93,98,95,110,92,100,108,96,101,91,108,103,106,97,79,88,90,99,105,91,107,95,118,99,109,105,102,104,108,109,88,108,107,105,90,96,102,89,84,99,94,95,101,91,97,100,104,104,97,94,108,98,95,97,99,102,109,103,101,95,92,97,95,109,104,105,119,95,93,99,96,92,77,106,72,98,100,105,91,98,105,99,83,98,104,108,104,120,92,100,65,102,102,104,87,91,117,109,120,98,91,105,93,103,104,85,109,102,103,90,90,114,118,103,118,98,99,97,100,99,77,102,91,100,91,94,106,107,94,108,91,104,101,106,106,91,95,103,81,88,103,98,98,110,107,101,96,102,106,105,94,100,97,101,101,98,91,105,105,112,93,92,103,104,100,93,109,98,101,87,126,105,91,93,117,101,100,100,108,102,90,109,87,100,118,105,106,100,102,104,105,97,104,103,119,112,70,106,86,113,93,94,99,105,104,110,99,91,94,91,100,110,113,99,97,100,97,103,98,101,108,92,107,108,83,103,99,98,91,100,100,95,95,91,89,69,108,94,118,92,99,106,83,111,103,99,94,91,112,85,112,81,108,106,104,106,104,94,107,113,101,99,83,110,103,105,95,100,86,82,108,85,99,102,102,91,96,99,101,100,91,96,92,95,102,101,100,99,97,91,106,97,114,107,101,101,114,97,95,98,102,94,90,91,103,102,81,101,94,127,85,94,92,95,95,108,100,87,106,110,94,105,95,97,103,99,91,113,108,103,105,103,96,103,94,117,103,104,100,90,94,99,105,99,103,98,96,98,96,100,109,100,105,103,100,105,110,99,101,96,106,108,111,100,116,104,98,96,96,95,94,87,99,99,90,100,104,101,103,100,105,98,99,106,102,105,115,103,92,92,77,93,94,94,101,97,103,91,97,109,82,110,103,102,96,101,90,107,104,102,112,94,102,89,102,92,101,96,100,93,103,95,104,96,102,94,96,96,92,91,94,96,106,99,104,98,96,96,105,95,95,112,93,113,91,97,101,105,98,113,101,105,102,105,99,92,95,95,122,104,110,96,97,95,109,90,98,98,107,109,102,106,94,101,100,110,100,102,106,108,120,86,91,98,98,94,105,108,98,104,102,95,98,96,96,115,90,97,117,132,82,95,98,88,104,77,95,100,98,101,84,109,99,107,102,102,107,91,104,103,97,96,104,97,113,96,89,100,105,99,98,95,91,103,93,99,106,94,110,102,95,95,87,97,61,99,94,111,105,107,97,108,91,95,101,96,91,98,104,92,113,105,93,105,97,115,93,81,107,106,117,106,104,96,100,99,100,92,99,95,95,100,94,98,96,97,94,95,96,92,102,91,104,105,88,119,109,91,105,101,96,96,107,86,97,104,103,104,106,100,108,90,99,104,95,103,75,102,84,95,101,110,95,98,95,115,98,96,97,103,93,101,90,100,103,101,114,108,96,85,101,99,100,95,113,101,88,108,97,101,99,100,102,93,99,98,100,96,101,106,93,103,107,105,97,100,100,102,94,104,99,110,94,93,100,105,96,98,89,99,107,97,101,88,87,98,107,92,97,94,96,89,95,96,94,92,96,88,93,101,107,100,108,100,109,105,102,94,104,110,104,89,87,96,97,89,98,101,98,98,106,104,98,87,98,99,99,105,103,96,90,101,100,95,107,105,101,98,94,97,109,103,95,106,89,100,101,112,104,94,95,97,103,101,94,102,87,95,78,94,86,103,87,117,99,94,99,111,107,95,90,110,92,95,95,100,106,91,101,90,98,104,95,98,100,109,102,99,97,102,97,87,77,96,88,98,100,98,94,80,104,92,103,116,99,100,100,84,100,102,91,99,98,100,92,103,94,114,96,101,91,95,100,96,99,104,94,105,117,98,101,104,90,100,114,98,98,121,95,96,102,118,113,101,104,86,94,100,96,95,102,108,100,107,105,108,107,116,99,104,105,105,95,108,100,108,107,95,103,100,117,101,97,112,84,103,103,103,96,109,89,97,90,88,98,96,78,95,99,90,93,100,93,98,105,99,82,95,101,98,99,96,101,105,105,89,109,111,91,102,104,96,96,106,96,104,91,115,88,105,101,99,95,92,102,102,124,97,109,100,92,96,99,108,104,102,102,104,107,106,95,96,95,92,102,95,102,99,104,103,108,96,99,94,104,99,101,103,90,103,107,101,101,104,103,98,104,64,91,99,113,90,106,91,100,101,96,96,69,99,106,104,108,105,104,99,94,93,98,100,103,98,98,94,109,103,87,92,81,103,101,87,91,95,88,100,104,102,92,100,104,82,102,94,101,113,102,96,109,106,94,105,98,106,106,97,92,93,106,98,96,91,107,100,111,93,109,103,104,111,87,101,107,109,98,116,96,102,102,97,100,89,83,110,104,105,102,102,89,100,106,94,110,100,110,105,102,110,100,85,101,103,99,99,102,109,95,100,106,95,94,93,79,109,102,99,95,92,97,108,101,105,95,102,117,93,114,98,113,92,104,99,100,98,110,88,94,98,99,69,111,95,101,94,96,99,102,93,87,95,92,79,98,98,96,103,87,125,95,104,107,84,106,96,101,87,98,103,97,105,110,96,97,104,103,110,101,98,116,100,103,101,104,81,97,97,93,93,107,106,106,106,102,104,99,92,102,109,94,103,90,97,99,99,108,101,89,116,107,108,95,106,95,90,104,88,92,95,102,111,102,102,97,92,101,102,90,67,96,87,92,96,106,82,115,101,104,103,105,94,90,101,98,99,112,90,90,94,85,108,98,107,103,102,101,100,101,92,107,103,68,97,97,100,99,102,99,107,95,107,81,96,83,96,92,94,95,99,93,102,92,108,95,102,75,105,95,85,109,98,95,98,99,102,94,109,85,105,87,98,98,110,93,100,118,106,108,100,100,102,100,98,98,89,99,92,113,83,97,97,85,104,105,109,100,106,112,88,85,86,95,89,87,102,88,96,95,79,89,87,100,111,97,103,101,103,94,96,116,98,99,109,90,92,95, +409.47006,105,93,114,98,92,93,105,107,85,100,96,102,96,111,105,96,103,91,96,103,103,89,95,102,102,96,111,109,109,96,97,92,91,56,97,93,101,100,92,100,110,87,108,111,103,107,83,102,92,103,114,103,102,107,86,97,109,89,99,105,111,96,98,95,98,107,91,98,105,97,105,108,101,77,92,106,94,96,102,94,104,103,101,102,111,102,98,105,95,96,92,101,102,90,89,105,100,95,100,99,100,99,90,103,102,91,99,100,97,96,105,105,95,99,99,103,102,105,95,92,94,102,93,103,99,106,118,106,117,107,89,100,88,103,100,105,92,103,87,86,105,103,89,98,98,93,94,99,95,95,104,106,113,97,104,98,94,92,88,94,106,102,89,104,108,97,106,96,95,96,102,103,99,100,103,104,104,96,111,98,104,95,105,90,95,108,97,91,91,94,84,96,126,99,102,103,98,97,117,96,94,102,110,102,91,107,91,93,105,104,90,112,89,92,106,108,96,84,94,100,91,113,98,93,105,100,102,99,102,103,105,96,98,101,105,102,100,95,96,99,99,96,95,91,96,113,99,106,87,94,101,107,98,100,97,104,91,95,101,93,93,99,86,107,92,95,102,96,101,105,101,102,104,87,94,90,101,113,90,96,92,93,92,101,100,111,90,108,108,99,96,100,92,87,103,102,100,100,96,105,99,99,94,102,95,98,94,98,99,98,97,96,101,98,105,98,94,96,109,93,98,96,96,91,98,79,76,83,99,103,100,96,108,106,125,94,117,96,93,80,88,101,102,95,98,97,95,101,107,99,104,103,100,95,95,97,107,101,101,105,92,93,98,102,96,99,103,111,95,103,103,102,112,106,123,96,95,100,103,111,100,90,107,98,100,91,87,100,81,88,100,109,80,103,98,98,90,100,96,117,100,97,94,101,104,98,91,127,91,92,102,105,107,94,98,102,96,107,107,105,101,109,106,98,97,104,102,101,92,98,107,96,114,85,93,96,105,102,105,101,102,114,101,105,89,111,82,118,105,97,90,114,107,102,103,89,97,95,98,106,95,94,108,100,95,108,89,95,105,97,94,86,87,80,92,99,95,106,101,100,91,110,109,97,95,107,88,109,103,98,100,100,101,101,102,95,99,112,116,96,98,99,97,98,94,104,93,103,113,103,109,112,96,94,98,99,92,95,99,103,97,100,91,91,114,101,103,100,92,95,91,100,99,109,104,97,99,104,98,105,91,107,106,100,106,95,106,94,94,98,103,111,98,96,92,91,106,103,86,92,103,98,98,99,98,108,96,95,84,95,95,92,93,99,94,88,98,94,105,107,91,86,92,99,108,102,112,80,105,92,85,100,90,96,110,91,109,101,104,98,96,92,111,93,101,103,97,87,100,92,95,96,112,96,105,106,117,107,103,100,104,87,95,97,103,104,89,96,96,104,103,104,99,102,83,97,106,98,102,108,94,98,102,100,102,90,96,101,93,94,92,103,96,103,83,96,102,84,90,103,98,128,103,99,88,87,78,97,105,95,99,103,104,100,108,94,94,88,95,110,99,95,105,94,89,93,86,103,101,103,96,100,92,101,122,100,93,97,102,101,91,88,85,97,110,98,112,94,91,109,104,99,100,92,98,95,86,98,106,97,106,100,94,112,91,97,98,98,98,100,102,93,92,89,105,95,92,97,99,95,87,90,96,102,101,105,93,91,100,99,108,94,105,97,105,88,97,99,91,85,87,102,86,111,96,108,94,98,93,92,103,95,98,99,92,108,95,94,93,106,102,105,109,96,108,96,97,104,108,110,96,108,94,101,100,95,101,89,93,102,99,97,92,108,96,92,98,94,105,98,111,99,103,92,92,101,106,90,93,90,94,94,100,105,96,106,108,92,105,96,87,98,116,82,101,111,99,111,98,98,90,99,97,103,94,97,102,94,93,92,97,94,107,100,70,104,96,107,104,95,99,87,103,94,98,71,78,95,103,104,104,106,98,101,104,104,112,94,105,100,106,101,90,92,96,104,99,108,99,91,80,94,96,99,100,92,96,91,108,96,97,118,105,104,105,98,99,107,102,93,103,102,107,102,102,102,104,74,93,97,104,98,117,107,97,99,109,104,104,96,95,112,104,118,103,96,94,102,96,99,101,101,111,95,97,98,101,99,96,92,109,89,93,104,99,101,104,91,97,101,98,118,102,97,100,101,91,105,98,92,110,100,101,97,120,105,99,95,104,86,78,103,99,96,105,81,70,98,105,103,92,104,94,95,107,108,105,109,105,92,92,103,98,93,108,109,107,107,100,87,100,106,87,94,93,94,89,102,89,95,107,106,101,93,107,100,112,95,98,100,98,98,100,102,102,95,103,70,89,101,109,91,90,91,101,121,101,99,98,87,105,108,100,117,105,103,107,96,106,99,97,106,89,108,93,98,91,101,105,99,103,97,105,104,107,112,98,97,110,106,102,113,102,92,103,108,113,87,104,102,95,105,95,99,99,98,101,97,100,96,104,112,115,90,106,113,113,95,96,102,93,106,107,97,112,92,90,101,84,116,102,104,107,79,99,100,102,95,106,98,98,107,112,104,100,113,94,102,105,101,108,94,105,108,116,97,102,100,113,92,105,109,93,104,112,110,91,105,93,112,90,88,79,100,96,103,94,105,109,90,96,101,110,94,104,95,99,95,102,92,96,91,93,108,94,101,102,80,111,94,105,106,113,88,101,103,101,111,102,97,100,98,99,108,121,111,98,103,98,89,100,99,104,108,99,99,101,109,109,139,112,112,97,105,107,106,97,103,102,114,98,125,96,100,108,102,96,119,98,105,103,95,102,92,102,101,108,110,94,102,111,110,98,103,104,92,107,96,100,106,102,91,106,107,114,98,108,108,104,94,94,109,96,104,103,98,98,112,111,88,108,104,109,103,100,89,124,98,94,98,100,117,98,101,94,120,113,105,105,104,100,107,96,105,95,104,101,111,99,109,89,95,95,100,111,102,93,102,98,99,101,99,106,97,95,90,110,104,120,98,106,95,90,112,111,107,103,106,101,108,80,104,110,106,96,101,114,105,105,103,102,117,107,97,99,91,94,107,100,108,105,109,116,90,103,107,121,103,101,101,105,102,120,106,93,116,106,90,81,96,103,91,105,128,108,104,101,127,98,90,99,90,99,109,103,96,105,102,89,105,102,86,92,96,99,101,112,102,116,103,105,95,99,111,99,104,97,97,108,98,112,104,109,109,105,96,96,98,102,105,106,97,98,116,102,103,107,104,107,107,99,95,100,102,85,107,102,95,105,103,100,100,109,104,109,106,78,103,96,96,102,105,99,97,100,103,104,95,99,95,97,98,102,106,91,93,115,106,101,106,97,87,113,114,92,103,98,107,105,80,104,101,99,110,106,97,102,93,101,87,101,110,105,96,103,98,112,93,99,112,102,97,96,113,101,96,117,101,112,90,104,105,102,95,94,101,100,110,102,97,91,114,100,101,102,99,91,96,106,108,95,105,98,115,106,106,112,111,99,98,93,98,117,85,103,106,117,108,84,109,106,96,99,102,89,109,95,97,99,98,106,109,90,96,116,110,109,94,104,90,98,93,99,108,101,106,118,85,98,114,111,97,107,95,99,104,116,103,118,92,98,102,106,96,104,102,102,91,106,101,104,98,106,104,94,98,106,96,99,103,104,97,100,111,100,86,96,101,120,95,108,104,101,108,102,100,96,95,102,94,112,106,102,103,123,105,91,104,99,102,107,108,106,100,108,92,107,105,99,97,113,94,105,106,92,95,99,93,109,109,98,99,100,108,101,99,104,107,97,108,99,102,109,99,100,100,95,98,91,100,105,98,97,100,95,106,115,98,119,98,81,104,113,91,106,107,99,103,102,100,105,107,111,101,99,105,94,86,86,100,95,108,94,101,102,98,109,109,104,98,111,98,105,97,106,103,97,102,122,106,107,107,99,110,96,101,98,99,94,99,112,80,93,94,119,112,107,113,95,99,98,103,112,95,103,94,70,94,92,99,111,105,97,104,99,101,108,86,118,104,107,100,109,101,103,97,96,102,118,97,103,101,106,103,107,99,102,95,102,91,103,101,101,110,102,104,103,98,89,110,106,99,105,105,107,108,110,101,102,112,98,100,101,110,101,97,100,99,98,102,105,98,93,60,101,122,106,105,110,93,101,103,110,102,70,95,105,106,95,104,111,109,117,109,111,98,107,96,102,109,99,98,102,109,100,100,100,111,116,95,91,103,115,101,96,103,75,107,97,98,95,91,99,109,100,99,99,109,93,96,87,98,108,108,95,103,105,88,94,106,102,97,118,112,95,108,102,105,111,105,108,95,96,97,110,105,103,102,107,102,96,104,116,103,107,104,106,102,99,100,99,91,101,106,102,103,100,110,101,85,101,99,97,103,111,95,113,94,113,104,107,92,97,88,96,106,96,104,87,123,99,99,104,95,99,90,103,96,101,94,63,97,95,95,116,78,102,77,101,106,87,95,89,100,106,95,104,105,111,93,99,94,95,98,87,103,97,101,113,100,103,95,90,109,78,99,96,97,115,96,95,98,108,117,109,98,97,91,115,97,102,87,100,110,109,109,99,95,97,105,102,98,90,95,106,96,114,116,102,104,118,113,98,103,98,94,107,103,98,97,105,101,102,109,101,94,102,89,104,93,102,97,99,100,61,101,91,110,105,90,106,105,100,110,117,91,99,97,102,91,95,105,99,95,96,99,74,96,106,105,96,109,93,107,95,101,97,97,91,103,103,85,99,101,101,104,105,93,109,109,112,91,111,91,107,98,101,112,100,92,108,98,102,93,110,97,93,103,92,105,105,105,101,112,98,102,95,102,111,101,108,91,106,113,94,90,101,103,102,104,115,109,91,101,98,99,97,112,95,103, +409.61026,96,90,91,97,89,95,112,97,100,106,96,76,106,89,97,95,123,80,108,93,99,105,83,106,91,93,110,94,99,91,100,93,102,103,95,109,95,94,115,97,103,102,91,100,108,100,102,100,98,102,100,102,105,112,102,100,106,98,96,95,91,97,99,102,98,114,102,96,104,102,105,111,104,101,95,105,94,90,105,97,96,91,100,112,93,111,91,103,100,93,106,93,99,94,103,95,94,95,100,94,100,117,88,100,91,106,108,84,74,92,97,95,95,106,108,93,96,93,104,105,92,83,106,94,109,115,108,96,109,102,102,110,101,105,103,104,89,103,91,109,90,106,115,102,100,95,96,85,98,96,113,112,99,92,100,98,94,109,97,96,96,92,106,102,81,101,95,95,94,87,125,106,93,102,92,96,98,86,94,102,98,97,110,97,104,89,97,99,100,105,100,101,98,102,106,106,102,107,87,100,97,111,86,94,116,101,91,86,97,104,86,107,105,92,125,105,91,99,103,94,113,105,101,105,95,100,100,100,107,98,95,95,106,101,121,115,96,95,104,107,93,92,101,89,96,95,102,102,103,104,105,110,96,107,94,97,102,86,86,91,87,96,99,98,94,121,89,102,103,117,103,93,88,108,98,104,103,112,100,99,88,102,100,110,111,92,87,99,106,94,84,100,99,103,110,110,95,106,104,99,108,102,110,109,95,113,93,109,106,107,109,106,102,100,108,106,89,100,117,100,103,95,102,115,103,104,97,102,114,94,109,78,99,109,98,101,105,98,101,98,105,90,113,96,101,108,96,101,89,108,109,93,105,108,102,100,95,109,107,94,102,105,109,93,93,98,105,99,108,95,102,90,100,102,110,107,85,88,95,96,125,102,97,69,105,91,95,93,105,100,109,92,98,104,95,99,96,100,104,106,94,100,105,92,83,101,95,99,100,99,92,95,103,101,88,98,101,76,95,120,104,95,99,95,87,88,99,102,95,93,75,97,100,91,95,99,94,94,102,101,111,99,106,104,93,88,100,99,99,120,102,96,104,113,91,102,106,91,95,101,113,95,98,96,87,94,95,111,90,95,97,117,75,100,100,97,102,98,101,109,103,112,104,85,89,94,108,100,109,95,101,116,102,99,99,108,94,93,107,105,106,90,106,100,105,109,101,106,107,104,114,112,100,96,122,86,97,98,95,93,105,94,87,101,109,98,107,108,100,114,86,96,92,110,100,102,106,97,96,106,99,103,94,95,95,87,104,135,113,100,112,91,98,98,113,91,110,93,98,102,90,98,94,101,103,100,102,117,94,87,93,93,98,91,100,106,76,99,106,101,98,106,85,112,95,106,107,101,104,94,85,102,96,103,108,111,94,109,95,104,104,95,91,94,98,99,98,87,103,101,100,113,93,89,103,101,99,100,96,103,106,118,90,103,107,98,92,102,94,102,103,100,95,78,94,108,91,103,102,105,113,90,98,96,96,108,102,96,112,100,95,105,97,107,80,99,105,103,111,101,97,117,103,97,95,97,100,96,107,110,105,114,95,91,95,101,110,95,113,94,95,105,111,103,97,102,94,91,121,108,104,85,101,99,86,97,100,96,93,101,101,102,106,108,94,99,111,105,102,90,97,108,107,88,104,87,105,100,94,100,105,88,103,108,93,106,99,102,107,99,84,95,89,107,87,94,109,99,95,103,104,97,99,100,110,94,95,101,98,106,103,105,94,106,98,103,105,92,97,94,102,96,101,97,93,110,111,97,109,102,113,84,103,111,100,105,101,105,105,94,99,101,99,112,94,105,93,106,86,100,97,99,91,99,102,106,93,98,100,117,90,97,95,102,103,108,95,121,95,100,101,100,88,91,112,109,99,100,102,97,98,74,91,97,99,102,107,93,60,82,109,90,99,92,108,104,89,105,102,113,91,99,106,95,91,102,100,102,103,99,110,109,111,108,97,100,96,105,96,100,100,107,90,101,97,94,93,88,111,114,103,102,101,106,100,106,89,100,100,97,99,102,109,105,90,101,87,103,99,96,106,103,87,85,103,97,97,104,112,113,92,105,109,121,96,101,94,103,102,113,101,105,103,100,102,108,107,76,99,98,105,90,94,114,114,95,99,102,109,108,96,113,105,107,106,99,105,105,104,94,103,92,109,92,103,118,114,103,92,98,99,101,103,103,104,104,102,89,94,96,98,118,100,97,95,105,103,107,94,109,103,108,100,80,97,89,99,95,94,104,97,102,97,98,87,99,82,97,99,107,94,104,85,91,98,96,66,100,102,102,108,107,98,99,100,105,99,109,104,108,97,103,106,109,93,110,103,99,90,103,111,110,102,101,102,89,81,106,89,77,65,98,98,94,96,96,87,112,88,110,101,97,91,99,101,103,97,103,92,104,91,92,107,109,91,98,86,103,101,108,97,103,99,103,106,91,93,92,101,93,100,118,103,86,106,104,98,108,105,85,99,105,95,96,107,105,103,103,103,109,114,103,97,85,93,93,101,87,110,112,93,103,102,98,100,117,106,100,107,95,100,110,96,104,112,111,106,110,89,98,104,102,103,96,103,102,92,110,92,98,101,104,93,91,102,98,98,105,104,88,106,95,95,97,98,98,102,109,95,95,106,95,99,95,91,98,116,85,97,96,105,92,112,96,111,104,82,102,101,90,105,101,103,102,94,94,93,97,100,111,98,94,98,97,91,101,102,105,111,99,108,91,92,103,102,96,109,96,105,104,102,102,102,112,104,105,99,95,92,104,112,107,96,115,106,97,120,93,109,98,97,99,105,98,102,102,95,110,101,109,103,97,92,107,104,92,106,101,87,102,108,104,108,95,92,104,101,98,106,98,105,103,105,102,100,98,92,114,99,102,124,90,116,98,110,121,112,94,76,111,101,94,95,108,119,116,107,99,97,108,101,100,112,97,101,104,96,102,96,107,93,103,104,93,103,110,95,92,107,89,125,95,106,113,93,102,107,105,97,95,99,105,101,84,98,104,101,103,106,113,113,109,100,97,98,103,104,109,98,97,105,85,103,120,101,105,96,101,93,102,99,91,102,105,97,109,112,93,100,99,92,109,99,98,97,100,109,106,96,104,98,106,98,96,105,101,108,100,81,108,105,88,105,106,106,107,66,111,108,112,104,98,101,105,109,103,102,104,100,92,93,103,103,103,101,102,66,104,103,108,102,87,106,105,91,120,114,99,105,102,96,105,101,89,96,96,90,97,93,110,100,98,97,94,106,109,96,99,93,108,99,96,96,97,100,112,98,97,100,96,99,103,107,88,113,84,89,96,98,96,101,97,97,109,99,92,107,95,90,108,108,103,101,100,96,98,108,73,94,101,93,106,100,102,103,88,111,102,110,107,92,113,102,108,86,107,101,82,95,107,94,92,109,100,102,80,99,98,104,104,94,113,101,102,102,89,98,79,95,109,97,87,98,110,100,97,99,104,97,88,102,113,109,92,83,87,95,88,91,100,91,102,93,97,92,102,86,95,106,101,97,110,98,98,114,107,96,107,98,89,95,82,109,90,75,107,106,98,107,79,96,99,93,96,105,105,81,98,101,105,104,96,108,105,95,108,108,96,105,83,95,99,91,95,97,100,103,101,100,95,101,96,100,97,99,106,108,100,104,69,102,96,108,101,100,102,92,94,112,96,95,98,95,100,94,121,106,100,97,91,101,99,100,110,95,92,106,98,113,102,98,94,99,108,112,99,85,108,104,97,95,101,109,98,114,104,101,110,91,98,107,101,98,105,89,98,100,98,102,96,102,109,93,108,101,101,101,113,114,92,102,106,112,122,95,102,92,104,107,103,93,97,103,102,99,106,102,102,101,104,98,96,95,96,90,100,82,104,106,101,107,101,96,108,87,97,100,96,103,96,93,108,104,102,93,89,108,97,104,98,98,96,93,104,101,91,95,95,110,96,101,97,104,104,97,103,98,92,115,108,98,101,93,110,101,99,101,94,111,102,105,104,102,97,108,96,103,92,106,103,94,108,92,101,98,98,97,96,98,91,110,104,102,100,107,108,109,97,105,98,96,94,97,94,80,107,113,107,100,65,99,104,104,112,81,101,92,99,98,103,106,107,99,103,104,98,98,105,99,102,108,85,86,101,96,98,91,103,101,91,96,113,103,91,98,100,110,107,97,97,96,84,94,90,111,103,103,114,88,102,103,84,113,97,101,98,105,99,104,103,106,113,94,100,96,97,97,105,92,117,104,109,96,95,94,95,103,109,113,94,104,102,100,102,104,95,96,97,100,105,111,94,103,114,96,109,98,88,91,110,89,106,98,100,102,100,104,98,117,121,100,109,133,105,109,101,97,92,97,99,101,105,114,106,100,106,104,91,104,102,101,120,109,107,98,92,96,110,105,97,102,96,105,98,105,113,103,99,113,87,105,89,91,101,79,101,89,101,105,109,108,95,91,99,100,98,95,102,94,102,100,81,105,89,94,85,96,83,98,97,111,94,100,99,104,88,102,92,95,105,91,95,103,93,101,93,111,95,95,100,96,95,93,90,90,91,114,105,98,92,98,103,105,101,100,109,99,97,107,103,104,96,104,108,106,108,104,107,102,95,113,94,76,98,93,94,94,91,102,93,98,97,102,106,98,123,97,109,103,97,104,99,100,109,93,98,97,95,95,103,90,101,108,99,91,113,117,93,98,89,87,92,95,105,100,91,100,73,94,122,83,107,93,100,92,111,106,94,97,86,98,96,86,93,98,101,102,96,98,112,100,107,107,75,110,104,91,96,105,105,96,90,100,111,105,99,111,99,91,118,91,98,91,94,109,109,99,101,92,89,102,94,98,97,103,99,88,104,86,102,98,106,102,102,109,104,103,110,95,90,106,99,98,64,92,99,101,93,100,88,103,105,86,80,112,104,104,98,98,100, +409.75043,110,98,103,108,79,102,104,117,108,90,98,101,96,98,100,97,95,105,113,99,109,102,106,100,110,96,108,94,110,113,105,103,108,97,103,100,100,92,98,96,113,97,94,93,106,108,94,134,98,99,101,94,100,108,91,99,99,92,108,95,98,105,99,95,93,119,92,101,105,91,95,101,99,105,93,103,104,115,97,99,87,109,98,108,111,102,114,105,106,99,98,96,101,107,95,96,99,94,95,90,90,99,95,90,96,94,98,91,90,100,108,98,98,89,90,78,106,106,102,101,97,94,96,100,100,102,109,91,112,111,100,100,97,113,94,105,96,105,95,95,101,106,99,108,92,104,105,92,106,92,89,92,102,97,116,109,105,97,98,103,98,94,100,91,102,98,99,95,91,96,99,103,104,100,104,107,105,99,97,105,102,102,95,102,101,105,109,90,106,93,97,107,105,104,65,103,98,103,114,103,106,100,96,93,110,106,95,91,95,105,91,98,117,95,98,105,103,91,100,100,76,94,88,104,90,99,99,95,108,99,93,87,91,101,103,97,101,114,96,104,122,101,102,100,82,97,94,101,110,104,110,101,110,100,92,86,97,107,83,112,98,95,104,102,98,99,95,99,102,89,92,100,110,93,100,96,109,103,94,92,101,102,99,105,101,101,104,107,111,109,97,101,102,103,101,105,99,100,100,93,91,105,105,112,99,113,109,107,98,108,91,102,110,92,106,108,94,109,98,97,95,97,89,95,112,100,65,100,100,99,99,87,111,91,103,108,98,94,102,106,105,99,90,103,105,99,99,88,111,108,105,99,103,109,105,70,110,108,102,98,84,102,84,97,105,104,102,113,94,99,104,93,97,107,105,84,94,101,101,106,107,100,100,105,109,90,105,99,105,96,103,102,92,109,98,109,105,96,106,106,107,87,104,92,95,100,95,103,101,98,89,92,110,109,106,97,100,106,99,90,106,100,69,97,109,89,104,104,94,112,109,101,88,102,96,93,112,103,108,101,95,95,97,101,85,113,98,110,112,109,102,92,105,101,105,96,104,93,110,106,94,98,101,110,101,90,106,84,91,106,100,99,101,107,109,99,102,112,84,102,116,99,98,97,103,107,105,108,85,98,100,115,95,90,109,103,109,99,103,97,102,100,96,95,99,97,89,103,109,101,107,118,101,95,113,107,103,96,113,100,102,105,98,94,107,95,97,99,106,105,103,106,91,93,95,106,93,91,100,112,100,95,91,94,94,98,107,95,107,98,99,107,103,113,108,94,110,99,109,105,90,105,102,109,102,129,100,106,95,102,98,103,92,110,111,100,96,104,87,99,99,88,109,112,89,81,95,104,67,109,97,103,106,109,95,112,93,99,105,117,99,97,103,109,100,118,103,98,92,89,110,101,100,115,96,110,102,103,101,102,90,103,107,86,100,102,105,107,100,103,91,95,101,97,99,102,91,95,101,109,92,100,102,96,95,95,96,91,111,96,101,96,109,106,94,90,113,96,108,101,105,105,104,106,74,100,98,95,96,106,100,99,102,96,102,95,69,99,112,92,95,104,103,100,87,97,95,99,96,91,113,107,84,106,96,91,102,100,80,102,105,99,82,101,86,104,103,101,98,103,108,97,106,94,94,89,95,105,90,98,96,105,114,102,101,102,101,91,92,107,100,104,66,96,90,90,103,94,108,104,110,105,96,105,97,100,102,95,92,98,110,99,107,98,106,93,108,98,98,98,104,100,112,103,87,111,108,92,94,93,113,96,102,92,109,99,95,105,106,102,104,91,96,86,106,101,81,103,117,106,104,106,93,96,96,114,96,112,85,108,98,104,101,110,103,104,81,116,101,109,114,112,105,92,99,100,101,94,85,94,104,105,110,92,95,105,106,107,114,96,88,97,114,103,83,99,90,108,104,105,100,104,95,128,92,107,96,102,102,89,96,102,106,88,99,92,93,94,107,96,104,91,97,103,103,106,99,95,107,102,111,106,109,102,100,104,106,98,111,94,99,106,88,99,90,101,108,104,103,127,91,63,104,106,114,97,96,98,100,108,81,102,104,100,94,96,94,101,105,105,99,109,105,102,107,108,96,107,100,102,108,113,107,102,99,88,97,104,109,104,87,105,104,95,98,100,97,109,106,98,101,101,89,105,99,112,103,102,111,92,98,109,102,93,97,96,110,96,99,94,107,91,100,99,107,94,94,97,107,91,102,109,95,95,94,95,108,91,103,89,102,102,106,103,103,102,99,87,111,92,102,110,91,103,95,94,99,102,103,92,100,111,102,91,110,102,98,94,86,101,93,103,106,91,98,109,99,93,106,98,114,82,87,95,107,99,96,95,101,92,95,100,111,92,108,87,99,107,105,99,99,97,102,94,98,98,83,102,113,90,91,109,113,108,94,105,99,112,93,103,102,112,106,74,104,101,99,111,93,97,96,102,100,105,111,101,100,105,100,101,104,109,108,100,100,97,108,99,102,97,94,95,95,93,86,105,103,92,104,98,88,99,89,101,108,103,102,104,96,97,104,99,117,90,94,94,101,113,95,92,105,104,97,108,101,99,106,93,111,91,93,102,84,97,101,101,106,104,99,90,96,96,104,113,91,116,107,101,112,99,109,112,110,106,103,81,104,112,114,104,100,82,101,95,93,101,104,104,103,102,107,100,125,103,99,97,96,103,140,102,91,107,100,108,105,102,99,95,98,102,93,101,103,103,94,98,89,98,105,92,91,102,104,103,98,113,98,102,101,103,98,106,94,100,110,104,102,121,87,98,105,99,102,113,89,94,104,94,105,105,93,119,94,83,95,106,94,111,87,114,97,100,110,109,92,107,69,109,95,92,101,96,80,88,104,77,107,107,98,113,114,96,95,95,109,103,110,91,106,106,102,105,117,122,87,91,80,97,99,103,91,105,101,108,109,109,110,96,105,111,105,102,90,95,101,106,76,96,100,87,98,102,98,114,86,100,94,113,102,105,91,103,94,94,98,100,88,96,97,88,98,101,102,108,111,127,121,91,109,104,102,96,123,109,97,110,109,97,100,101,101,97,91,98,101,101,109,92,106,98,100,108,101,109,103,102,107,94,86,102,104,117,101,103,106,110,104,104,97,95,117,93,101,102,112,86,90,113,98,94,102,96,94,99,102,101,99,108,95,95,102,99,98,99,100,112,108,95,106,101,99,100,117,91,96,111,113,91,92,93,107,95,102,92,103,95,91,99,100,110,104,94,102,100,97,107,99,92,106,92,113,93,112,104,102,100,95,99,109,116,111,101,106,100,91,101,99,97,92,111,99,104,116,102,101,107,109,98,98,106,105,92,105,109,109,116,87,99,109,99,125,113,96,100,109,104,104,100,105,101,96,112,95,89,98,116,109,109,100,101,94,103,114,94,105,102,93,99,97,95,90,102,101,109,102,93,114,104,104,92,100,98,106,114,104,100,98,101,98,101,108,99,102,96,92,97,112,96,103,101,96,96,95,97,97,100,114,104,95,106,109,106,100,103,92,100,97,104,85,95,92,113,102,106,102,104,110,103,87,106,89,97,102,98,107,107,99,90,99,99,102,81,96,111,111,93,100,100,98,104,101,100,105,102,111,116,107,110,103,121,104,100,104,113,95,98,116,105,106,105,95,103,100,107,97,97,95,111,97,109,92,109,99,106,106,106,99,100,103,116,103,104,141,100,100,92,98,94,108,101,97,97,108,114,108,82,105,104,105,106,121,100,103,102,102,101,101,97,109,100,88,101,98,95,100,94,111,108,100,99,99,90,90,108,90,102,103,100,107,97,105,99,97,99,101,91,104,98,92,115,107,105,104,94,93,105,102,87,104,117,90,103,98,98,99,102,113,103,100,103,109,108,110,101,115,95,104,104,112,98,100,102,110,102,102,93,88,93,96,87,91,109,92,103,96,108,109,97,111,70,106,99,91,101,84,110,89,92,93,102,98,104,96,113,104,99,104,103,92,103,94,103,91,110,93,102,101,103,105,128,102,113,94,95,109,110,104,96,108,95,101,101,87,100,97,101,88,103,110,108,106,97,94,89,101,107,100,101,102,103,78,101,89,105,95,85,105,101,104,95,111,102,113,106,99,106,103,119,100,99,114,103,95,114,109,114,95,96,94,109,107,98,92,106,97,104,105,71,96,108,110,93,98,109,111,112,104,94,91,91,102,92,105,95,91,100,94,112,106,102,96,103,92,108,91,101,102,101,96,100,99,108,111,107,104,111,109,105,98,74,100,107,114,99,98,113,100,98,90,98,103,104,105,95,101,119,118,107,112,87,111,123,106,105,113,99,109,105,109,112,101,100,96,109,101,99,110,95,97,109,121,96,105,98,106,100,107,88,117,96,106,97,107,105,96,98,109,104,100,105,104,110,111,98,103,79,108,106,102,97,101,109,103,86,91,98,94,108,98,94,106,94,87,109,103,87,91,99,104,104,93,98,91,127,91,104,94,95,90,102,97,93,98,95,117,94,99,76,98,116,94,106,104,102,102,91,98,98,112,79,91,100,105,97,128,103,92,109,88,117,105,105,92,97,94,97,104,102,101,113,103,102,104,87,101,90,100,106,95,109,96,91,101,108,101,106,101,95,96,109,125,93,99,96,98,98,104,110,94,124,96,109,101,92,94,104,113,107,100,97,96,105,100,84,98,103,109,100,95,104,110,115,105,95,90,103,107,110,99,90,100,102,94,109,113,108,111,96,96,107,97,105,97,111,100,93,95,79,104,109,101,105,89,100,95,109,109,107,101,103,89,102,101,109,104,104,100,97,90,106,94,90,102,92,101,97,86,97,89,107,102,106,101,102,106,105,96,105,105,96,127,103,94,97,87,81,94,105,89,81,99,117,98,104,98,103,95,94,91,103,109,96,113,101,98,103,117,111,79,82, +409.89059,114,104,100,81,93,87,99,102,101,97,88,107,99,103,99,105,95,111,112,101,129,102,110,107,83,96,107,80,91,99,100,92,103,104,105,108,99,100,112,86,104,97,95,100,104,101,105,94,107,97,103,69,107,101,92,87,96,94,107,99,108,94,101,102,111,96,90,91,105,94,98,105,109,95,97,68,93,113,92,98,92,105,100,113,105,96,104,114,98,97,101,103,113,101,104,93,101,101,97,100,100,95,95,101,98,95,94,120,101,96,119,78,100,93,94,98,108,94,105,114,86,87,96,70,93,112,104,100,106,99,106,103,100,93,96,96,101,101,88,99,106,89,88,103,86,102,105,94,101,92,93,97,102,96,105,102,99,82,95,91,99,113,99,107,104,100,94,95,101,101,94,95,91,105,98,114,106,95,107,93,106,95,90,96,101,99,97,90,99,97,91,101,106,101,97,96,96,100,91,109,94,96,94,99,97,96,106,102,100,107,106,97,105,92,110,101,105,97,117,103,91,112,91,94,95,102,106,110,98,89,108,104,94,117,109,97,108,92,98,96,110,94,108,99,109,99,111,85,100,99,106,98,98,104,99,95,99,99,93,105,104,101,96,96,96,105,94,95,93,94,107,80,106,100,89,82,95,102,97,112,96,105,87,100,96,104,94,99,102,111,105,98,122,99,109,93,102,106,100,97,113,98,105,103,109,82,101,102,101,107,108,110,118,116,113,95,91,115,101,99,105,98,101,102,96,103,103,97,106,115,100,107,100,104,112,99,98,102,103,102,104,104,100,91,113,103,114,110,105,102,101,98,105,103,98,98,88,106,96,91,106,99,91,97,97,86,109,113,104,97,99,91,99,102,97,105,104,94,105,99,108,117,101,100,101,107,107,103,105,102,113,97,103,95,102,94,100,99,99,105,99,105,102,85,101,99,101,108,93,102,93,94,101,94,101,96,99,109,107,85,105,106,79,86,94,91,98,98,111,118,108,110,96,90,104,99,107,103,89,108,102,103,101,95,93,98,101,100,113,108,105,90,94,105,100,95,94,94,108,105,94,99,100,107,93,98,109,97,98,97,101,106,104,85,101,115,109,114,109,91,99,101,113,99,89,100,101,109,89,99,104,98,100,83,71,106,94,100,101,95,105,96,98,95,103,89,93,95,112,104,113,105,98,114,104,104,96,109,94,85,95,103,109,89,101,92,102,102,101,104,103,102,108,98,97,95,97,106,96,105,101,98,91,101,109,109,105,96,99,106,102,91,105,111,104,95,112,100,102,110,98,105,106,96,99,96,103,111,84,102,93,109,98,85,106,107,100,105,109,102,100,94,115,97,100,97,106,95,100,90,98,100,104,105,98,110,101,92,89,97,96,99,99,105,90,95,102,108,113,111,90,103,119,106,72,97,100,98,86,106,112,101,107,102,100,103,97,98,100,95,126,97,101,98,103,94,105,107,108,98,115,108,98,90,94,99,101,101,100,97,97,108,104,92,95,100,107,92,93,103,108,105,96,104,86,92,92,86,102,99,117,111,103,90,101,104,91,110,101,80,116,105,94,91,108,98,99,104,111,98,102,93,91,104,106,101,97,91,104,99,88,91,94,95,102,105,107,91,85,87,105,91,93,103,101,106,99,103,113,104,108,95,110,100,97,98,100,101,109,99,94,94,101,96,109,98,92,111,100,111,116,89,100,88,94,118,103,104,100,126,105,108,99,99,100,86,105,100,104,104,96,105,88,94,85,97,97,104,99,95,98,101,116,90,100,113,106,100,104,99,119,104,99,92,93,112,105,100,97,100,96,119,112,105,99,106,103,97,95,104,100,103,100,111,96,104,99,109,92,101,106,97,106,90,106,108,89,92,118,105,97,98,107,112,98,101,102,116,94,95,103,102,115,106,106,102,110,103,109,102,83,105,102,101,100,102,96,105,103,79,107,92,100,95,87,105,102,112,103,109,97,109,105,96,106,97,102,107,99,95,100,100,94,113,96,113,111,97,90,96,105,116,101,98,113,108,99,109,95,110,102,112,100,103,111,107,87,100,95,110,95,98,111,96,100,100,88,96,84,96,97,92,96,104,100,82,100,110,94,98,101,115,91,108,93,101,103,128,100,116,100,99,106,101,105,105,95,101,100,109,100,96,97,95,99,109,112,89,89,105,101,94,106,103,104,105,105,103,100,98,108,109,110,93,122,105,82,107,109,105,95,103,100,118,102,102,98,96,89,91,104,105,99,87,98,104,109,110,113,96,91,104,89,89,102,94,96,102,98,106,96,96,103,108,103,112,107,94,93,96,97,109,76,108,95,107,92,111,91,101,104,112,103,94,107,78,94,104,99,105,101,110,101,112,94,95,93,105,98,100,106,108,110,106,97,102,95,107,100,90,101,97,111,112,91,108,95,109,91,111,92,97,98,96,95,81,100,100,103,82,101,109,95,89,121,91,102,97,96,95,109,95,103,98,93,99,87,105,108,95,108,104,103,99,92,105,94,102,104,103,105,101,108,97,99,110,88,92,113,105,110,103,98,103,98,106,100,105,94,109,105,102,100,99,110,94,108,106,101,111,109,104,93,111,74,102,102,99,107,98,115,99,89,102,89,95,99,106,108,84,85,110,108,104,107,92,106,98,104,105,122,89,91,85,103,107,98,124,103,104,98,106,106,102,98,102,91,97,108,105,110,101,102,101,100,111,106,104,99,109,104,106,101,111,99,110,107,98,99,108,101,111,109,103,98,95,95,105,101,102,102,91,110,109,103,97,107,92,97,94,100,105,93,91,102,105,101,104,102,108,96,100,101,106,112,96,108,87,95,109,106,101,103,101,89,105,110,93,113,109,90,95,95,123,92,95,98,110,93,107,101,95,94,103,90,109,103,96,88,121,109,101,115,111,101,102,103,106,88,103,101,91,116,108,108,91,98,99,95,100,99,106,103,101,97,104,77,101,107,100,101,110,91,105,99,105,98,114,107,91,97,116,91,88,119,100,88,109,100,105,80,96,108,117,112,85,107,88,102,101,100,97,88,109,93,103,99,103,114,102,97,102,96,120,93,78,98,110,97,106,105,99,97,100,115,93,106,96,106,104,93,104,109,99,106,104,99,102,104,98,108,89,107,105,99,109,108,101,104,102,106,116,105,93,103,92,86,107,98,88,102,96,102,100,98,107,94,100,97,104,100,95,92,100,110,97,87,123,105,109,113,106,104,84,104,102,96,104,72,101,101,110,103,101,128,94,111,106,109,106,120,108,109,103,115,90,107,107,99,101,90,102,87,104,105,100,85,102,99,97,105,99,104,99,100,105,103,102,110,100,98,110,98,105,95,112,114,92,128,98,109,121,102,95,104,99,99,103,100,97,95,106,103,97,102,95,102,111,107,102,99,98,102,98,100,103,87,98,106,100,113,95,95,109,98,87,100,101,105,103,103,101,95,92,96,108,92,104,121,100,104,97,99,100,105,112,106,101,107,97,97,98,98,103,98,102,97,102,104,105,104,105,107,104,97,109,99,99,108,92,109,109,102,113,94,97,103,105,96,109,102,105,95,107,96,109,99,113,98,105,121,93,94,92,102,92,106,116,101,91,98,104,96,109,101,101,111,91,103,95,101,99,99,91,94,72,106,101,122,98,95,94,97,98,91,102,98,85,99,113,88,104,102,115,105,106,90,73,96,111,108,111,104,94,108,99,107,94,105,106,102,89,95,93,93,101,116,100,109,102,98,109,98,89,103,100,102,87,110,102,103,106,97,87,111,110,91,99,102,105,88,105,98,99,95,107,90,98,100,111,104,65,110,116,108,112,97,103,90,89,92,100,96,111,94,93,102,93,109,98,85,96,106,107,104,90,98,92,101,103,104,94,90,102,106,100,94,97,111,106,92,109,96,96,104,106,102,101,94,96,105,104,99,109,108,100,106,106,105,93,113,101,92,98,87,96,103,107,130,95,86,97,114,93,93,102,117,103,109,94,104,127,101,102,107,88,99,102,98,112,102,107,89,91,91,115,84,100,105,86,97,95,102,77,105,112,108,102,96,110,103,106,100,91,108,107,98,96,104,112,91,115,86,94,96,107,97,110,95,95,99,104,111,93,86,116,87,88,99,101,109,102,89,106,105,95,104,101,90,86,104,101,94,104,112,103,104,101,97,110,100,97,106,101,99,98,100,90,89,98,91,88,104,99,102,95,103,105,108,101,114,103,100,112,97,103,87,108,105,111,88,105,89,98,97,107,110,98,112,95,89,100,95,104,106,109,94,106,101,98,94,95,112,85,101,106,99,90,100,107,104,101,98,97,103,97,80,105,93,107,99,60,96,102,103,106,106,92,91,97,89,100,100,103,96,90,101,101,111,112,97,102,97,108,105,102,100,95,108,89,120,105,97,98,99,99,108,105,119,95,94,91,113,110,88,109,87,111,95,103,106,102,103,103,90,105,87,94,93,112,101,101,113,106,92,97,105,91,90,109,98,95,92,99,103,101,99,101,99,117,96,96,99,85,106,102,102,95,106,87,96,96,97,108,92,102,100,98,96,98,100,98,112,115,93,99,107,101,104,102,89,97,99,91,110,110,106,98,90,103,105,103,106,92,100,101,100,98,95,110,102,106,108,108,107,109,111,77,92,92,89,100,103,101,96,101,107,113,101,101,99,97,95,93,96,63,94,88,93,94,105,101,103,92,98,95,105,112,98,98,111,104,87,94,94,106,99,106,109,109,94,93,80,101,101,94,100,94,82,88,110,99,94,95,90,97,100,94,95,92,102,113,99,96,104,96,106,106,92,97,109,102,120,102,102,96,93,98,107,103,85,104,87,103,100,99,96,108,101,97,102,120,89,91,96,94,98,92,117,103,107,113,117,101,125,95,104,98,103,100,106,96,108,101,109,110,116,83,86,99, +410.03079,91,98,104,94,96,103,102,103,82,109,94,92,86,115,114,99,100,112,103,116,103,98,90,94,91,109,99,98,111,112,101,105,103,97,96,101,94,91,102,91,97,108,99,89,102,90,117,102,109,108,108,95,110,106,104,104,104,95,99,72,98,96,105,103,99,105,93,104,109,95,99,108,92,99,96,104,94,104,104,99,99,124,98,94,105,74,98,92,102,76,101,110,104,93,100,102,100,97,105,98,110,108,104,101,95,95,98,95,107,97,103,106,90,95,98,102,90,102,105,99,104,105,107,103,106,106,104,116,95,105,79,103,105,115,110,92,102,104,95,97,97,97,99,94,107,82,100,95,114,105,100,98,102,108,102,92,100,101,105,97,95,99,98,108,106,102,120,89,101,98,115,109,102,90,105,104,119,81,112,96,94,91,103,90,81,95,100,102,99,91,88,96,93,99,96,93,98,107,101,92,130,99,93,104,95,106,104,104,111,95,96,113,113,80,98,92,107,99,109,118,110,86,106,113,90,75,103,95,103,107,93,111,103,104,103,103,101,98,97,97,98,97,106,102,97,104,95,100,106,114,106,104,102,105,98,97,95,100,108,98,98,97,95,102,102,104,100,96,105,93,114,98,105,108,110,101,95,105,106,95,99,99,105,101,96,89,95,112,91,88,91,101,98,97,103,96,91,105,109,120,113,105,100,110,96,112,107,99,89,110,95,109,118,105,103,106,119,100,107,104,88,100,96,96,97,110,91,98,109,116,95,104,100,104,96,109,90,106,103,106,97,104,98,96,99,109,116,109,105,95,103,115,105,108,105,98,110,103,102,99,109,107,106,104,91,99,105,104,106,101,94,107,103,92,107,114,94,109,95,111,104,97,90,97,95,95,96,101,103,83,108,103,110,103,94,109,97,98,103,107,104,104,97,106,97,99,96,104,104,106,99,101,97,104,107,101,106,95,101,91,97,99,91,92,101,117,97,105,105,99,101,105,113,106,97,92,94,104,106,92,100,101,112,108,68,101,95,94,102,96,85,99,101,91,107,98,103,108,103,113,90,93,103,106,96,98,101,102,88,99,106,104,101,97,97,97,95,115,102,95,106,113,117,91,104,99,99,114,103,101,97,101,96,107,104,100,93,104,113,95,109,105,105,101,105,112,99,117,104,108,104,95,84,95,100,93,96,105,104,102,99,88,97,103,97,104,113,124,93,97,96,102,95,89,100,98,92,112,109,110,66,103,103,109,103,95,105,104,92,102,95,101,108,104,114,95,106,104,104,96,102,93,106,112,105,97,102,103,101,91,99,97,91,99,93,94,89,103,99,103,91,97,96,98,103,100,108,99,103,105,100,95,102,95,112,101,83,112,108,95,98,96,113,95,105,93,92,98,98,88,106,100,98,113,107,115,98,88,100,102,98,108,104,89,105,101,104,116,103,97,102,97,100,101,96,106,93,88,100,109,102,106,106,78,91,91,98,109,111,102,79,105,77,114,95,102,111,102,98,112,101,100,95,99,78,97,118,103,118,113,110,105,97,99,98,103,107,95,102,97,108,118,108,107,92,100,100,103,98,99,104,100,101,98,95,99,111,102,101,93,92,93,102,96,97,102,116,91,101,100,102,104,111,103,85,104,100,92,95,94,101,84,110,114,95,102,97,97,90,108,107,107,94,95,109,98,103,107,109,99,98,88,99,103,104,102,94,95,89,106,115,95,88,90,102,103,102,110,106,98,109,99,83,81,96,104,106,101,109,104,96,130,94,99,100,93,100,96,90,93,90,95,98,99,101,97,104,99,95,94,95,87,97,110,106,114,98,102,99,117,94,98,115,99,104,95,95,90,113,104,110,102,96,95,108,91,95,86,101,101,98,93,99,82,103,104,103,99,86,106,98,100,93,99,99,108,106,102,90,101,94,105,104,102,105,103,93,103,93,92,102,102,98,106,97,105,101,110,108,118,110,96,107,99,87,97,92,105,100,101,92,102,103,105,85,74,102,93,83,90,116,102,110,111,93,96,102,118,96,103,99,103,109,105,98,108,91,99,106,95,100,102,106,106,99,101,90,108,97,101,105,96,104,100,95,97,109,96,105,106,98,101,92,110,101,102,91,102,100,101,104,111,89,108,99,98,95,92,99,95,108,96,107,99,105,99,92,101,101,102,102,100,102,99,107,102,105,102,95,94,99,104,111,97,103,109,98,104,100,112,93,101,108,108,94,103,129,96,104,119,98,105,97,105,104,102,92,83,97,98,97,102,96,97,88,94,100,110,99,103,107,93,101,115,111,118,101,106,97,96,112,112,102,103,105,88,107,100,103,99,103,105,101,92,101,99,101,88,104,98,97,99,116,97,109,99,96,101,100,100,100,105,94,98,103,98,92,101,92,105,108,84,100,97,93,105,96,94,92,93,90,83,98,95,102,93,96,93,99,97,90,117,106,99,100,100,98,124,97,100,99,104,102,97,101,97,107,103,109,100,101,99,92,95,90,108,105,101,88,106,110,97,96,89,96,108,102,99,99,103,125,112,108,105,106,102,92,104,99,102,97,113,96,106,111,100,110,103,97,99,100,111,102,95,99,97,105,98,111,86,98,106,109,109,96,103,107,105,103,107,115,111,107,103,97,91,102,100,98,102,107,98,92,95,100,97,98,98,100,107,100,102,98,96,104,105,94,100,103,97,99,108,99,110,93,115,107,107,93,109,99,105,101,96,94,105,91,106,108,113,92,90,95,99,102,119,101,106,96,100,94,102,83,106,96,102,99,101,103,98,105,103,101,96,91,99,105,94,100,96,106,104,101,110,100,110,109,109,106,103,104,106,107,93,102,100,101,98,107,105,101,108,100,108,111,98,96,109,87,106,108,89,112,115,107,107,99,111,103,125,109,109,112,104,103,108,100,104,96,62,96,96,100,84,109,100,95,105,96,101,93,98,109,96,115,103,104,98,98,102,105,95,95,104,92,102,109,116,95,108,106,119,98,101,100,103,93,97,100,106,106,100,102,102,113,102,105,103,94,102,110,105,99,113,103,106,94,76,93,104,101,104,104,94,104,108,116,109,105,94,106,95,96,96,92,113,100,102,87,103,102,94,108,109,94,106,107,98,89,104,100,107,104,113,91,101,106,97,95,102,95,94,102,97,99,97,89,95,100,100,102,100,98,99,107,84,102,96,110,92,108,98,98,99,98,101,119,104,98,95,96,95,95,83,108,97,103,96,102,103,103,101,105,91,104,100,108,113,105,101,115,103,95,99,99,101,91,103,104,91,108,95,102,98,95,85,93,92,98,101,108,91,103,110,100,92,102,98,118,98,128,105,100,113,96,111,94,111,97,93,95,100,78,94,92,102,102,129,104,108,94,91,107,103,102,114,92,97,91,93,106,94,103,98,105,94,96,99,108,96,97,105,101,102,98,85,107,95,91,102,102,97,96,92,99,124,101,99,94,127,103,100,98,105,106,107,103,98,97,99,102,109,108,99,103,106,114,105,122,94,107,103,95,116,94,103,104,102,96,85,105,102,91,105,95,102,102,112,111,111,87,107,101,98,113,108,96,105,99,105,103,102,101,97,104,107,113,105,99,83,92,102,117,102,87,99,104,100,89,101,102,111,98,101,104,94,100,101,97,100,95,108,113,104,100,92,108,101,97,109,105,96,108,98,101,102,76,122,97,102,104,103,110,105,98,102,98,98,91,92,103,96,102,80,98,96,99,99,109,102,102,103,108,87,99,105,115,100,92,101,89,99,90,95,98,112,105,90,99,85,97,109,98,98,102,99,92,97,101,103,107,96,96,109,96,106,102,109,93,94,104,105,91,110,115,107,94,99,90,113,97,105,94,95,92,102,98,96,95,103,88,103,106,103,109,99,103,106,106,118,72,101,102,91,107,91,97,85,93,107,108,96,104,100,95,106,92,100,93,100,98,107,107,101,94,109,110,101,100,91,116,110,113,119,102,104,99,92,102,95,94,101,95,88,106,106,85,92,103,105,91,98,99,103,100,103,98,98,110,116,100,99,103,97,116,96,105,107,86,103,92,104,105,96,102,104,87,103,106,97,104,113,98,101,107,99,105,108,106,105,93,99,110,101,93,110,93,105,106,100,99,101,107,103,109,106,112,102,109,94,113,95,97,102,88,103,100,116,102,109,107,91,91,93,97,64,105,98,99,95,99,94,116,95,96,107,93,98,113,91,86,105,105,107,99,95,87,108,105,94,107,107,90,88,103,96,100,107,99,103,93,93,107,107,90,97,93,98,98,113,128,98,78,116,100,99,100,99,92,108,100,94,106,100,101,104,105,113,107,107,99,99,102,112,103,111,98,93,69,112,95,99,107,106,98,101,105,113,105,98,103,104,101,101,101,102,98,103,102,97,113,100,105,101,101,103,98,94,107,97,96,104,92,100,88,97,89,95,83,95,122,91,115,93,96,106,91,99,93,107,118,101,103,105,95,95,97,99,94,101,104,92,98,100,102,95,101,100,105,106,109,95,95,103,102,100,102,97,107,83,69,103,96,99,101,99,104,97,97,108,96,107,106,96,98,96,102,121,103,94,100,103,113,99,96,102,109,106,100,77,83,92,104,121,93,99,100,100,106,119,101,103,100,97,98,79,102,98,112,103,106,98,105,97,108,90,109,96,90,95,98,108,113,101,94,97,93,98,83,95,111,98,109,111,105,97,105,99,89,93,98,91,109,97,101,91,94,91,102,96,91,96,103,98,94,92,111,87,94,121,103,100,95,94,99,108,119,101,108,89,99,113,104,109,101,106,109,95,101,91,94,71,87,86,107,96,97,101,95,89,107,98,92,117,94,100,98,103,93,105,98,105,97,99,102,95,106,94,83,91,103,101,114,99,78,97,89,104,92,93,108,94,97,111,102,97,117,93,96,105, +410.17096,100,97,110,95,86,96,89,97,104,103,85,95,105,105,108,113,72,98,102,100,104,96,101,104,77,109,94,94,109,102,89,98,90,91,106,92,104,100,98,79,102,95,100,93,93,103,99,102,93,93,99,87,91,95,102,91,87,100,97,95,102,105,94,97,104,79,94,88,86,95,103,87,102,81,90,112,94,102,105,105,107,102,94,113,91,99,101,105,90,105,109,95,100,105,80,99,98,103,105,90,96,108,97,96,95,95,106,116,91,100,109,94,102,92,111,90,94,93,97,94,96,92,100,106,94,99,97,90,108,99,100,101,99,102,103,101,98,101,95,94,99,107,91,104,100,96,116,99,100,90,97,116,95,88,102,99,102,97,94,104,109,99,111,95,99,91,91,91,96,93,97,89,99,91,96,89,103,90,96,104,106,96,92,108,106,98,86,94,75,95,101,109,94,107,97,106,90,102,104,100,112,107,103,108,95,100,95,108,97,99,93,95,105,76,101,99,94,98,91,92,96,101,102,87,81,112,75,107,95,105,90,91,96,106,91,100,98,101,100,99,94,88,107,110,118,99,99,106,105,95,105,113,101,98,93,108,103,99,94,117,99,101,85,109,99,113,102,109,96,104,74,112,98,109,109,114,97,107,96,99,97,94,97,87,101,98,99,92,104,103,91,94,120,102,109,93,107,108,99,93,93,96,96,111,95,109,105,93,101,107,90,103,98,102,107,80,101,94,99,99,93,97,102,96,106,101,89,96,110,107,104,97,111,101,97,106,104,99,100,107,96,96,92,96,87,107,101,106,92,105,104,101,101,97,97,108,99,100,96,94,101,97,100,100,110,97,114,95,90,100,101,97,113,109,114,97,95,98,76,90,102,95,89,104,98,94,98,92,101,93,104,102,98,93,109,100,89,96,101,95,100,105,118,95,99,78,99,106,104,102,102,100,98,105,101,94,103,85,105,89,93,103,96,100,95,102,93,95,102,100,98,96,93,63,97,109,93,95,92,99,98,95,100,99,96,96,99,113,91,95,95,99,102,91,99,97,108,103,113,101,97,100,102,104,112,109,84,100,94,96,95,100,100,97,103,97,101,107,113,104,100,108,103,102,87,91,99,101,90,99,105,105,102,97,106,99,85,91,104,98,100,110,94,92,104,96,106,95,110,103,104,94,97,108,102,110,96,106,99,92,104,98,106,112,113,94,113,103,107,92,102,102,100,105,97,105,100,84,98,92,97,77,90,92,108,94,109,100,91,99,115,109,111,91,94,92,98,102,98,98,96,98,101,105,103,105,107,97,106,106,98,85,109,94,88,102,95,98,97,99,103,97,104,98,93,110,92,118,88,100,90,104,103,87,106,94,105,98,100,102,98,100,68,101,104,106,103,102,98,101,103,103,113,99,96,93,104,111,83,93,106,113,100,101,105,107,96,120,117,98,102,105,97,100,105,98,102,102,108,106,105,112,91,101,98,82,92,99,97,121,100,104,100,94,91,79,103,102,96,105,105,103,95,97,101,93,111,95,115,106,93,95,106,96,96,103,95,96,102,80,104,102,112,98,101,94,91,108,92,102,90,101,100,104,96,101,122,111,103,87,102,99,93,111,105,93,104,107,93,98,97,105,91,106,100,95,105,102,107,97,88,105,96,106,96,104,88,101,84,108,102,89,96,95,88,101,116,95,97,102,97,104,107,105,95,90,104,118,101,99,103,91,109,95,111,94,99,103,97,100,129,94,89,99,99,104,95,106,79,100,98,100,118,100,75,103,100,99,103,81,98,98,109,101,97,104,99,95,91,96,108,106,109,99,101,105,108,111,109,95,107,106,101,110,103,96,105,107,106,103,106,103,111,98,98,105,101,99,98,86,107,112,95,117,101,99,103,103,99,88,100,98,96,106,99,94,99,92,103,106,94,106,96,97,90,101,100,96,101,92,105,102,97,87,104,98,96,99,105,96,96,100,96,97,92,109,92,95,103,92,95,101,86,112,98,96,96,102,95,97,96,84,105,117,109,113,105,103,96,100,107,97,96,95,91,89,97,97,103,108,101,104,100,94,105,96,103,97,94,92,97,103,95,103,105,105,111,104,102,100,101,91,112,103,92,109,90,94,92,108,96,100,95,119,94,94,80,98,95,99,109,91,100,88,106,113,98,90,101,124,95,97,98,115,101,101,95,95,70,102,100,109,107,91,116,101,93,74,103,94,97,98,71,101,99,100,100,109,95,108,102,121,105,88,93,87,84,99,97,106,99,87,101,101,104,95,95,93,87,95,89,99,103,86,99,99,98,83,97,101,89,110,96,114,100,96,114,98,99,87,99,116,93,93,107,94,100,101,96,94,87,105,100,96,102,97,93,97,108,91,97,96,105,103,92,93,89,96,94,106,105,111,95,101,87,101,98,92,121,96,92,100,104,95,101,95,96,94,121,95,89,95,87,97,108,99,105,101,90,97,96,105,98,103,107,90,96,99,96,109,109,103,90,95,104,89,110,99,97,85,98,83,103,101,102,105,106,104,91,101,105,104,95,98,96,99,93,93,107,98,97,95,106,101,109,110,93,104,117,101,92,100,104,82,109,106,103,107,102,84,104,95,127,102,89,97,103,85,106,104,100,102,104,99,102,100,111,110,102,110,82,101,103,93,99,102,101,99,102,90,63,118,104,103,114,100,113,92,87,104,104,112,99,117,92,107,116,103,88,111,90,106,103,100,109,113,105,105,99,93,102,100,115,105,106,99,102,103,95,96,99,99,95,101,109,105,102,97,100,104,107,114,101,101,98,118,110,110,113,102,99,108,98,110,104,101,109,99,104,104,103,101,101,90,107,92,102,105,103,108,104,96,99,117,94,84,89,98,124,108,116,97,105,117,100,95,125,93,100,106,105,101,111,100,97,113,100,104,101,113,109,109,108,107,102,109,92,95,101,91,103,100,100,116,103,108,104,94,104,98,109,91,105,101,95,113,115,92,84,102,103,103,105,91,86,89,102,104,107,90,107,103,103,103,108,112,99,109,102,89,96,84,109,104,102,94,107,107,103,102,103,112,109,94,103,99,111,81,105,106,96,104,105,110,98,94,104,94,107,81,104,98,100,97,109,98,107,100,95,104,98,94,93,103,111,123,102,98,109,101,104,94,110,101,111,93,109,93,101,104,105,104,105,91,113,107,98,101,99,105,98,94,89,117,108,102,101,99,99,97,108,99,101,94,104,105,93,104,104,103,104,102,107,101,93,96,109,105,109,91,96,98,101,112,104,101,102,120,94,98,114,108,104,99,89,60,104,113,130,87,102,92,105,94,107,98,106,99,105,99,113,101,109,104,103,102,92,100,103,89,97,90,101,102,98,105,107,99,107,83,104,98,104,118,95,102,94,87,97,99,99,97,87,104,96,104,104,106,103,102,104,105,110,69,94,95,106,103,109,105,103,96,106,103,100,99,104,98,101,100,91,100,97,93,93,95,110,88,91,97,105,109,101,94,83,100,97,99,109,97,98,105,96,99,104,105,101,113,104,91,108,95,113,118,130,102,106,102,108,116,99,96,76,103,112,115,105,100,72,100,101,121,100,105,113,91,108,94,111,98,100,104,99,83,94,105,98,99,106,106,86,106,111,98,104,97,100,104,105,94,101,95,97,106,102,95,101,106,105,98,98,100,96,102,90,102,88,95,110,100,104,100,97,109,102,108,105,123,104,104,90,104,94,101,113,101,109,97,135,98,101,109,102,99,102,101,106,104,102,101,96,89,74,119,93,99,101,114,98,100,108,110,109,97,100,80,88,94,112,94,100,114,102,102,95,90,98,95,104,98,106,108,106,86,94,97,99,88,98,115,96,98,111,103,96,94,98,82,109,98,96,93,92,98,99,102,102,102,97,110,94,100,94,99,97,102,96,96,94,91,94,94,103,103,99,102,89,108,106,94,98,91,103,112,105,120,105,105,111,99,101,78,97,107,99,103,97,104,108,101,93,100,100,91,107,101,100,95,103,107,78,95,87,115,113,106,105,100,112,84,97,98,100,92,105,106,102,101,112,95,102,100,107,101,104,108,110,106,103,93,97,106,128,101,98,106,96,107,102,100,100,106,94,124,109,103,97,96,95,103,68,111,94,118,101,100,92,106,98,116,106,92,98,99,104,101,108,103,103,105,95,91,106,94,109,103,100,94,76,96,106,113,104,89,99,94,104,97,109,99,99,119,92,98,87,104,113,89,101,100,95,99,108,98,100,94,109,104,101,96,95,107,99,100,87,106,102,104,93,102,101,93,102,100,96,99,108,94,109,102,98,94,95,106,104,101,109,106,97,126,101,102,94,107,99,104,101,102,104,79,97,103,97,100,99,97,104,105,106,102,104,102,107,116,112,99,103,103,104,100,95,117,100,109,105,107,108,110,99,98,94,96,97,97,92,107,96,108,106,99,112,105,90,98,99,104,98,92,107,102,107,99,103,87,91,103,103,100,102,96,85,91,100,100,111,95,109,99,109,101,105,96,91,97,101,103,91,109,102,117,104,102,105,96,103,102,90,91,93,112,98,91,104,99,107,107,105,104,113,104,100,101,90,108,107,120,107,101,98,103,109,93,107,102,103,97,93,95,97,107,94,110,105,103,90,99,107,105,91,83,101,91,106,104,85,91,110,104,98,93,97,98,105,104,115,96,100,86,105,103,97,95,88,109,114,101,112,100,102,97,97,117,105,105,94,91,116,104,116,80,97,108,106,92,97,107,100,91,97,103,102,102,97,105,91,103,108,104,100,100,92,95,95,84,109,116,95,119,99,95,90,101,103,100,101,100,102,111,92,98,113,93,107,73,134,104,108,96,97,103,102,99,97,132,105,95,92,92,109,98,110,103,101,91,102,107,101,99,100,91,77,89,93,102,104,98,105,104,98,105, +410.31116,78,90,92,96,106,114,101,110,107,110,99,93,102,90,108,108,91,115,97,83,126,103,103,100,100,110,91,111,105,96,97,98,91,95,97,89,107,99,100,104,93,96,64,82,98,101,114,114,108,91,102,90,117,111,98,96,98,94,102,93,99,105,102,105,102,111,111,104,106,94,95,110,105,58,103,97,97,114,100,103,91,95,101,99,104,88,101,81,95,101,107,103,108,93,105,104,102,121,96,85,96,98,116,88,94,113,102,89,71,97,96,96,102,105,97,102,98,96,84,99,99,106,99,109,112,101,105,91,102,84,110,114,76,108,113,105,107,97,101,96,105,117,100,107,102,101,108,121,90,95,95,109,97,106,99,101,95,77,114,107,93,104,97,99,98,91,91,97,84,102,100,103,96,105,97,99,92,102,101,101,101,87,101,103,106,99,95,102,100,96,88,90,98,89,96,98,100,103,100,103,103,110,104,96,101,108,99,113,105,103,88,109,104,106,106,99,105,122,105,110,98,103,102,102,129,129,103,107,107,94,104,101,102,112,101,106,105,86,105,110,100,103,108,106,83,103,93,104,102,109,103,99,92,107,94,105,98,98,108,106,95,102,109,101,95,91,95,101,96,103,94,94,93,87,104,91,108,102,116,100,106,104,94,105,94,106,93,112,106,101,105,110,105,105,109,108,101,104,94,103,93,96,97,111,99,108,99,111,111,111,110,114,102,110,106,108,98,104,109,101,110,96,87,105,96,95,96,91,103,119,114,100,106,114,114,101,102,85,95,109,99,101,105,90,95,95,110,108,99,113,105,99,99,94,109,97,97,111,105,109,102,100,100,96,84,99,92,111,105,95,110,104,103,104,98,104,103,93,93,104,105,109,99,115,96,92,92,106,97,91,116,114,102,102,96,115,97,97,98,92,102,112,100,103,104,98,98,103,85,109,87,94,103,107,103,109,100,100,102,97,94,98,101,95,99,126,100,113,99,95,89,94,101,99,102,107,102,101,99,99,111,101,113,104,101,102,77,97,113,103,103,106,105,101,106,112,95,109,99,98,103,93,96,95,102,102,113,108,90,86,101,100,100,96,105,96,109,108,105,87,104,107,105,103,98,91,99,96,103,103,104,108,103,93,100,100,100,100,100,106,106,115,91,107,84,112,92,95,101,102,107,102,89,108,104,94,96,105,99,87,95,108,110,95,94,101,103,108,97,99,101,107,90,99,98,106,106,89,107,102,65,108,106,105,99,77,94,108,108,102,90,111,104,98,101,95,102,100,109,95,105,104,101,103,99,88,108,96,101,102,90,90,112,109,93,108,114,95,107,103,111,95,88,113,100,90,101,110,100,83,101,120,102,82,107,104,100,107,101,72,111,93,102,109,94,111,99,97,94,99,104,115,102,100,103,102,108,99,92,100,102,95,103,107,108,109,102,97,101,109,94,95,98,102,102,95,93,93,91,90,106,102,87,110,95,110,104,98,105,104,109,106,107,105,110,109,106,108,90,95,109,108,105,90,81,90,91,104,107,104,115,96,104,99,82,102,107,104,111,105,108,105,112,98,96,97,90,106,103,91,112,114,104,111,111,102,102,97,94,102,100,103,102,87,89,114,104,111,110,100,108,101,101,97,108,91,98,99,101,97,109,107,97,110,101,91,99,101,117,115,98,94,98,98,109,99,100,103,106,103,88,102,97,102,98,108,102,107,99,107,100,100,96,102,99,96,106,105,109,104,104,99,87,100,103,95,98,107,90,106,117,107,96,99,101,103,93,100,102,94,110,115,104,78,94,107,112,101,95,111,99,108,110,108,91,126,92,109,106,108,103,102,102,96,109,106,98,106,97,108,117,71,91,112,98,113,102,86,113,98,95,91,93,110,100,110,105,95,102,100,102,106,106,91,99,99,107,96,99,101,105,112,108,94,99,100,108,99,90,102,102,104,101,105,99,96,95,76,99,103,114,96,98,107,106,103,90,109,116,96,95,102,96,110,99,102,110,103,98,112,106,103,87,102,91,99,104,103,96,118,99,104,101,98,111,102,98,98,101,95,97,105,109,85,98,89,103,101,126,106,101,116,106,110,103,103,98,76,104,106,113,100,107,114,111,106,114,104,96,106,108,109,103,111,102,98,77,107,62,99,109,110,104,108,114,97,103,92,92,101,88,103,99,115,103,100,106,99,95,95,109,112,107,100,113,91,99,88,96,101,95,111,95,98,96,101,112,95,80,98,99,102,112,91,106,96,102,99,99,100,98,107,103,103,101,100,101,98,114,103,98,92,106,95,103,97,91,95,96,103,108,105,87,95,104,102,96,103,97,100,112,123,112,90,101,110,100,95,109,101,114,113,108,92,103,92,105,103,96,104,86,100,98,109,99,89,105,108,108,106,94,102,116,113,86,100,89,107,102,94,97,101,103,114,92,96,101,102,97,99,94,100,87,116,83,94,102,117,98,95,109,104,102,111,102,118,82,90,89,106,105,113,100,95,109,101,98,98,100,87,106,98,107,85,88,96,101,87,112,98,104,99,101,102,96,101,103,96,98,110,112,88,102,93,96,98,97,105,105,104,95,97,103,93,91,90,92,95,91,108,89,109,90,104,90,105,105,103,104,95,99,98,99,100,100,102,95,106,103,102,98,83,100,91,97,110,104,99,98,94,100,94,98,105,98,104,109,99,107,100,107,108,103,105,107,105,113,107,108,107,95,94,98,101,92,108,98,93,99,101,109,103,102,95,98,111,102,92,88,105,77,107,104,97,94,100,105,102,100,88,99,116,103,103,108,101,93,99,97,91,101,101,103,105,102,94,100,104,102,105,105,98,102,99,92,112,96,107,82,99,104,98,111,97,106,97,112,100,108,100,110,102,87,101,91,109,98,112,117,105,100,93,95,90,109,96,97,101,94,85,104,123,111,104,102,94,100,102,104,95,98,81,105,68,106,127,96,101,113,92,110,86,96,101,102,94,98,99,97,96,101,98,95,91,104,87,101,115,108,97,106,98,102,105,105,103,109,103,99,97,121,97,96,113,103,108,97,105,99,113,95,106,112,80,103,100,106,101,111,94,104,101,110,98,83,84,117,109,104,105,92,93,102,105,98,98,102,95,106,97,90,111,104,100,93,94,105,99,91,93,101,91,109,102,102,98,97,97,93,97,94,98,91,87,102,97,92,102,103,97,102,101,95,99,95,104,95,100,96,90,100,103,104,98,105,98,105,102,96,95,102,90,89,99,86,101,101,99,103,91,96,100,92,106,116,95,103,109,103,90,100,97,80,99,97,104,101,113,94,96,90,97,102,104,106,99,109,99,102,101,85,97,86,98,95,108,102,86,100,105,109,100,101,100,110,95,109,105,100,100,112,101,108,99,102,107,103,94,87,96,97,91,99,103,99,108,105,100,105,96,92,108,99,103,98,99,107,92,99,120,99,101,100,87,90,96,92,111,75,106,109,95,95,100,107,99,98,99,94,105,104,95,103,79,120,91,98,98,97,106,95,110,107,92,87,97,104,75,115,95,96,120,95,101,102,106,105,97,97,102,99,105,96,95,112,112,105,93,78,103,112,91,78,99,102,100,109,100,99,95,123,102,90,105,83,106,114,100,93,100,109,99,99,99,99,100,98,106,96,100,83,108,91,106,104,101,108,100,99,98,100,93,98,103,94,94,98,99,105,98,97,100,101,112,100,106,99,119,105,97,87,92,104,108,102,97,103,91,94,101,102,82,106,100,109,94,92,92,102,89,99,97,94,88,93,103,104,107,105,108,110,96,103,115,106,96,105,89,101,104,84,102,101,110,96,100,91,107,91,104,102,91,109,93,100,87,105,107,95,94,99,106,99,96,86,95,94,97,112,110,103,99,102,95,95,68,98,89,98,96,90,97,91,107,113,94,97,89,98,95,115,104,95,104,122,89,108,91,102,91,94,104,107,95,93,99,91,101,97,109,106,91,97,89,107,97,97,104,99,100,96,101,95,108,107,85,98,92,104,103,102,94,106,106,99,100,100,102,94,96,110,103,104,108,95,107,106,106,111,113,109,114,95,106,99,99,98,101,110,90,106,94,107,97,104,102,97,107,109,103,104,91,72,102,104,106,87,104,108,94,103,92,100,108,95,99,101,105,97,93,95,87,92,103,101,103,108,103,96,102,95,96,96,88,105,94,97,100,98,94,101,106,111,92,93,106,94,99,101,106,101,103,90,91,85,97,95,106,108,97,105,95,94,101,102,107,101,99,102,97,88,104,100,98,95,111,102,103,92,90,93,94,110,70,112,101,100,97,104,99,86,101,103,107,97,99,87,103,95,108,103,104,111,103,105,108,112,93,97,95,104,81,98,99,95,93,99,91,104,102,106,101,102,104,93,108,105,98,91,91,92,113,120,100,81,108,95,100,106,111,112,91,95,96,85,112,99,104,96,96,90,100,97,99,92,87,93,93,92,107,96,107,102,86,99,103,99,92,98,108,99,87,105,102,107,103,91,77,91,95,101,97,96,103,93,101,97,100,96,99,105,105,91,100,111,84,95,90,97,99,97,110,99,95,102,105,106,101,92,99,94,105,102,102,106,108,88,95,85,98,94,84,91,100,108,88,93,95,98,104,97,104,100,94,100,110,96,97,102,123,93,100,106,95,104,96,108,110,102,90,97,98,100,103,74,99,92,102,90,108,100,102,106,88,113,93,100,106,100,107,110,107,109,100,94,102,112,87,97,85,93,104,100,103,79,103,112,106,105,94,104,95,88,93,99,109,90,117,96,110,102,88,103,123,108,98,103,91,104,106,95,95,88,105,104,92,98,94,97,94,101,104,94,92,95,132,105,99,104,103,107,109,91,111,88,115,113,105,103,107,90,120,99,103,109,98,91,94,111,113,108,81,92,96,114,106,99,105,96,107, +410.45132,114,109,98,95,82,93,91,93,102,92,100,101,109,108,99,88,102,113,103,106,107,110,108,103,97,89,103,105,117,106,88,98,103,108,103,97,99,106,106,92,101,99,107,96,113,92,81,90,96,103,92,96,116,96,110,96,96,97,104,96,99,104,98,111,87,88,105,97,94,68,108,100,99,95,87,94,102,98,101,92,112,101,129,96,100,103,99,92,129,92,96,81,97,108,98,87,94,89,105,99,109,105,97,101,95,91,98,102,105,98,97,102,106,98,88,94,110,107,96,101,94,106,98,111,102,105,100,103,109,100,105,96,96,98,104,100,101,95,101,106,96,100,95,114,98,90,109,84,93,103,108,90,105,101,101,100,107,96,106,94,104,96,84,109,95,137,108,80,95,100,100,99,95,105,98,96,96,98,98,98,105,102,98,91,103,113,95,97,96,99,96,88,98,105,96,102,106,101,89,99,98,87,95,101,96,83,92,106,99,100,80,85,104,95,88,104,99,98,95,103,105,91,98,104,99,110,104,100,97,97,86,81,95,94,91,99,98,97,98,100,106,102,112,106,105,100,92,106,85,100,103,103,101,99,99,87,96,103,98,104,100,108,108,108,101,103,97,109,97,94,97,82,102,103,113,101,104,96,95,100,101,102,112,100,100,110,92,99,95,108,105,102,106,91,107,92,117,94,120,100,76,103,102,108,105,97,96,116,84,105,107,107,98,103,100,93,96,106,100,89,104,93,115,102,98,95,108,106,101,97,95,101,96,105,97,111,107,100,98,108,102,98,98,93,104,104,101,106,98,108,98,104,103,97,100,94,100,94,105,109,109,101,95,93,85,91,99,104,93,110,100,100,108,103,98,101,100,103,105,98,101,93,91,102,102,94,106,93,103,87,102,110,102,113,97,106,96,114,104,96,97,102,98,96,100,102,99,105,94,105,81,95,105,99,95,99,100,97,104,100,97,95,94,98,93,94,92,112,105,98,101,109,95,100,109,100,101,108,90,109,87,92,98,95,90,101,92,99,92,113,116,95,101,105,99,100,94,112,99,105,92,102,94,102,91,81,110,94,98,93,104,129,115,100,105,105,100,116,96,98,107,106,109,93,95,100,104,101,95,92,100,100,105,104,102,103,95,99,103,90,99,91,121,94,95,110,81,113,101,103,106,102,104,101,98,98,97,107,97,98,101,106,138,102,100,105,107,99,96,98,95,107,94,95,100,108,95,95,94,103,80,108,98,94,102,113,108,98,104,95,108,111,96,108,109,98,94,102,113,115,110,101,101,99,92,105,104,105,99,102,90,96,108,115,102,98,104,107,88,112,100,96,93,101,89,82,98,102,105,95,103,105,99,104,99,114,103,99,90,90,103,110,93,91,99,97,100,103,106,100,116,104,97,103,106,104,103,100,92,97,110,88,98,103,103,100,87,86,96,105,102,103,113,97,92,91,99,99,110,102,105,109,92,97,103,102,107,99,103,96,98,99,87,109,95,96,108,78,125,108,104,99,96,104,88,97,104,107,120,91,100,96,90,106,93,96,108,85,107,90,101,107,89,98,100,85,91,107,102,103,98,92,105,111,90,93,102,95,112,96,90,93,100,92,96,113,95,112,91,106,108,111,100,101,110,96,84,97,96,87,110,100,90,106,102,102,93,96,102,107,98,96,89,87,102,81,102,101,101,99,105,95,100,100,92,114,81,113,92,104,100,91,97,103,101,98,97,101,103,79,104,103,95,103,85,110,95,105,96,99,103,106,110,90,100,101,106,100,112,101,114,99,100,104,97,106,119,97,96,106,102,106,107,81,99,95,101,105,108,103,100,102,93,102,109,105,101,100,97,99,93,101,93,74,98,92,113,124,107,94,105,98,100,109,96,104,109,104,111,101,113,90,107,113,88,105,103,95,108,97,97,98,117,100,117,100,89,106,105,99,105,110,87,96,102,103,110,96,91,98,99,99,103,104,107,108,107,102,104,101,112,100,75,95,95,99,105,71,104,92,105,102,108,113,108,99,93,107,95,99,96,108,102,104,109,95,117,108,104,113,99,102,95,95,108,98,104,96,110,113,112,108,95,103,100,108,100,105,101,103,99,99,107,95,121,100,107,98,99,91,93,107,92,112,102,94,102,103,97,101,96,99,113,101,101,99,103,94,101,110,107,95,105,111,100,93,104,93,95,95,102,109,105,104,103,89,100,106,111,109,92,99,88,109,95,102,93,100,92,99,97,113,96,98,105,99,97,120,99,106,108,93,111,103,102,107,104,104,104,121,104,95,88,101,109,104,95,101,100,95,88,99,98,97,93,99,94,97,92,108,111,107,120,97,100,106,89,104,102,89,99,108,103,81,109,97,100,95,99,99,109,119,93,100,98,103,100,101,102,106,100,108,103,123,100,101,95,94,92,105,94,90,106,100,96,100,94,89,95,109,105,96,100,104,94,116,101,95,102,100,108,92,101,103,108,104,89,111,101,93,96,85,108,96,107,95,102,116,107,102,106,88,104,100,106,111,99,102,95,104,104,106,100,102,136,96,107,84,104,99,107,104,94,93,100,99,100,110,106,96,106,105,102,101,89,102,96,105,110,109,98,97,105,106,114,115,107,88,99,98,109,99,103,91,102,97,101,110,101,103,107,97,97,91,109,102,104,96,102,94,101,99,110,101,108,95,105,101,92,101,98,104,112,112,110,101,107,111,101,108,94,106,105,105,101,97,101,96,103,107,94,94,100,97,107,104,102,104,100,106,103,108,100,107,78,88,102,100,106,91,109,95,108,95,106,99,96,96,104,103,108,99,106,102,95,107,112,100,91,110,104,97,109,86,108,101,105,101,104,103,99,101,97,101,117,109,91,113,93,106,103,111,105,109,109,111,129,100,102,103,88,96,98,106,96,102,102,102,104,89,97,74,106,105,105,111,97,99,85,100,96,75,113,95,104,107,94,91,99,106,97,104,100,104,104,105,112,98,100,106,104,105,104,95,106,95,82,99,89,93,105,109,120,93,106,99,77,101,91,103,104,106,101,106,109,102,105,100,100,105,93,127,92,102,92,103,109,115,105,90,93,117,93,96,76,102,103,91,105,83,95,98,99,104,108,106,100,98,107,102,105,113,107,104,101,94,102,110,100,88,91,114,102,96,101,89,104,123,99,106,92,99,111,108,109,94,94,93,131,100,99,106,119,105,95,102,96,99,95,107,99,100,100,102,99,97,99,95,98,101,99,98,100,108,95,87,97,104,105,102,113,98,101,107,105,104,102,99,97,112,108,95,95,93,92,98,94,105,104,103,107,106,101,98,97,110,106,108,123,92,116,96,109,110,104,118,93,98,101,95,104,113,99,94,106,117,93,112,100,99,102,103,110,111,89,95,95,98,97,100,107,108,95,94,102,111,91,109,108,109,109,100,95,97,106,100,82,96,109,104,100,94,102,97,105,103,95,110,104,101,99,98,108,100,99,91,111,105,91,99,101,101,104,82,99,102,106,92,108,108,105,96,105,99,118,104,92,116,110,95,107,103,96,107,89,99,95,103,92,91,97,98,89,97,108,101,101,105,96,114,103,91,94,100,78,96,87,94,102,98,91,109,89,99,102,100,102,92,106,109,109,95,106,98,103,100,124,103,100,113,103,103,100,117,95,91,100,90,89,114,93,102,106,111,97,90,104,116,103,118,107,97,100,108,94,107,105,105,111,106,100,102,104,105,106,95,109,99,114,106,100,99,110,99,113,100,98,106,103,103,95,96,107,95,111,81,99,92,110,99,103,102,116,106,101,104,101,100,102,112,83,107,94,117,112,102,102,95,98,98,113,111,119,116,110,96,92,92,94,101,94,106,96,96,98,114,98,100,104,101,94,99,101,101,104,110,109,94,100,110,74,98,104,96,95,109,102,97,106,99,105,104,86,104,97,99,102,90,102,97,93,87,107,103,99,95,104,101,109,108,96,108,108,105,104,109,97,95,98,107,107,98,110,103,104,112,95,103,89,97,97,104,95,101,105,98,96,117,91,108,108,109,101,113,93,96,110,107,98,96,111,98,108,119,110,106,106,100,112,92,101,98,100,105,102,113,98,104,101,102,91,110,102,105,101,113,115,95,107,104,104,74,105,111,97,102,120,95,102,92,83,98,102,103,98,114,102,103,97,107,99,100,102,102,96,101,102,90,104,110,106,93,106,106,97,90,95,104,108,99,100,102,101,95,94,94,109,111,100,98,104,111,107,132,99,95,105,102,92,102,96,101,112,110,106,113,102,99,111,109,97,115,95,109,98,96,102,101,108,99,105,114,104,109,103,95,98,106,95,113,97,94,106,108,108,101,100,91,111,95,110,93,104,102,112,92,102,92,106,109,113,95,105,106,92,95,100,97,98,98,104,117,105,90,101,100,98,110,112,94,99,89,92,101,101,113,75,99,102,100,98,111,108,90,99,101,86,87,97,99,98,96,96,103,76,88,108,95,102,106,107,95,94,101,101,97,111,104,96,104,101,97,108,99,96,104,99,100,91,101,98,109,105,101,108,113,97,104,99,102,114,107,102,101,108,112,105,110,90,102,103,119,102,96,93,108,101,107,87,100,97,99,105,118,89,103,100,95,96,97,100,114,104,101,98,107,108,112,99,98,116,98,99,102,99,100,106,99,99,104,104,90,116,114,101,117,99,101,100,89,91,107,97,105,96,108,95,105,106,107,108,113,116,89,91,95,96,102,92,97,66,107,102,102,96,101,116,106,103,99,94,91,99,92,103,100,92,99,97,113,120,103,100,104,111,99,107,94,91,95,97,96,96,98,115,91,102,89,97,98,104,103,101,104,97,84,99,101,104,108,109,100,104,94,93,100,97,106,104,105,100,105,104,92,105,86,104,100,113,119,98,107,102,102,106,99,101,91,78,82, +410.59152,96,104,103,114,90,101,93,110,110,101,105,84,104,94,110,96,98,108,95,106,102,101,103,100,99,92,91,88,102,98,92,113,99,90,121,96,98,92,101,103,90,95,94,96,107,117,102,98,101,104,105,102,96,100,94,87,97,102,118,99,106,94,97,78,105,104,92,109,99,87,78,103,92,111,90,101,94,104,112,106,105,108,110,103,79,86,91,109,109,80,99,112,99,101,99,101,106,82,92,104,96,94,83,94,97,98,109,93,99,102,100,102,100,104,90,87,90,125,96,99,105,98,110,101,108,104,113,92,97,97,87,126,97,109,95,113,93,91,99,99,104,112,83,93,101,95,104,94,96,105,98,109,107,90,105,101,118,94,101,100,92,100,107,121,98,105,99,101,99,96,80,100,96,94,104,97,103,93,103,108,95,104,111,106,89,84,87,93,99,90,96,110,102,97,95,111,94,105,85,110,95,96,91,101,110,107,103,88,114,104,88,103,79,101,91,95,103,88,94,83,96,105,93,96,93,114,96,109,106,95,96,101,101,95,110,111,96,104,102,104,83,103,109,97,97,97,89,84,105,101,100,109,87,100,98,102,90,117,101,93,107,84,98,99,97,97,108,110,102,97,107,113,92,92,116,109,98,96,102,90,99,104,97,99,97,93,86,103,98,74,107,94,95,104,92,103,95,102,108,105,104,95,103,102,84,87,103,96,104,108,89,108,112,104,99,102,91,109,109,101,99,103,104,93,100,87,96,89,106,108,100,98,104,104,101,91,107,92,98,91,103,99,106,92,95,94,79,99,105,90,103,113,91,99,96,99,102,98,102,99,104,101,99,87,78,99,108,101,104,107,106,100,109,106,103,105,98,103,101,107,109,103,90,71,109,116,92,93,89,96,122,109,101,101,93,91,100,99,107,81,99,117,100,93,91,88,100,105,114,95,101,104,95,107,109,105,110,111,101,94,100,106,99,104,110,96,88,110,95,109,100,106,93,100,105,100,101,93,94,122,109,101,103,105,113,108,99,96,104,105,99,100,97,101,109,98,99,99,108,75,100,109,87,95,100,106,117,110,95,93,99,96,97,102,125,84,83,108,100,99,96,115,106,99,102,104,109,97,104,101,104,106,99,92,98,98,102,100,126,98,106,94,92,113,90,104,106,104,102,91,94,105,115,102,111,105,101,100,109,98,102,97,108,100,96,100,118,100,94,105,105,110,109,100,84,94,96,102,104,100,97,109,96,95,96,96,97,104,108,98,110,94,125,93,107,87,104,99,98,104,100,98,114,102,95,105,96,95,100,93,95,93,114,96,95,87,98,100,122,97,113,102,105,91,100,101,108,103,133,86,97,96,125,98,108,103,102,106,112,98,99,104,122,121,113,103,101,87,104,99,107,95,105,98,96,102,102,103,99,99,98,98,96,101,101,98,101,98,97,97,101,103,95,76,114,89,95,105,107,113,108,93,103,105,83,91,95,100,104,103,97,89,102,96,99,92,102,103,100,92,100,95,101,93,109,98,101,100,94,98,106,111,93,101,95,101,101,101,96,105,100,112,104,103,104,87,99,91,102,97,98,101,99,106,99,95,135,94,94,96,111,101,102,99,110,104,88,107,122,103,113,103,100,101,103,106,92,96,101,100,94,109,105,103,89,85,90,112,104,101,101,109,83,98,90,97,93,95,103,91,105,103,112,98,114,113,100,106,100,101,99,102,105,92,104,100,106,99,74,101,96,70,99,96,86,96,106,97,99,105,94,91,108,98,99,97,110,96,109,92,99,108,104,115,99,106,94,106,98,104,99,109,110,97,105,101,95,91,91,108,97,98,101,92,109,106,95,107,99,95,100,101,96,84,105,102,116,99,100,113,98,102,91,102,111,98,107,102,120,92,85,97,99,103,93,112,122,98,107,96,101,109,108,99,88,94,104,101,99,84,106,95,95,80,90,101,98,101,93,111,98,97,98,101,104,117,88,96,106,99,102,112,102,103,94,102,104,101,95,99,100,95,102,97,88,99,91,82,118,94,92,120,105,83,103,100,102,118,91,103,105,99,106,94,109,104,90,106,101,106,92,96,82,107,103,104,99,102,94,100,96,113,95,120,107,90,97,90,107,98,104,102,108,106,93,109,108,104,90,107,108,103,88,86,94,106,106,103,93,96,105,99,88,109,105,85,88,103,97,79,101,110,113,105,105,109,96,95,98,100,111,99,101,101,94,97,96,101,91,96,115,97,98,97,126,90,101,99,75,97,107,95,101,93,96,93,98,95,93,111,98,95,103,87,92,103,82,99,106,95,100,86,94,96,113,106,100,102,101,110,106,103,102,96,105,97,98,113,105,99,99,95,95,103,99,93,95,98,102,104,100,100,95,97,102,97,93,102,99,85,101,105,93,99,86,96,108,106,106,92,103,106,97,101,99,86,83,94,87,75,91,110,98,94,98,109,100,107,95,94,111,103,110,117,91,101,92,97,107,101,104,101,81,106,106,109,96,99,99,94,101,92,113,109,107,106,106,94,101,109,95,96,95,93,98,98,104,100,96,100,114,102,101,104,97,105,113,109,100,106,101,107,108,84,100,103,100,108,112,98,98,102,113,93,87,100,101,85,101,98,115,98,108,96,114,100,99,93,105,111,119,99,108,87,106,110,100,123,87,94,105,96,111,92,106,99,108,101,111,101,100,102,97,96,108,102,101,97,97,95,109,88,102,94,94,117,107,108,102,99,123,103,100,90,98,108,98,98,92,97,101,107,101,101,98,102,98,101,110,95,103,109,96,115,105,105,100,104,102,100,93,116,108,107,121,83,96,96,100,117,90,108,105,91,95,107,109,102,99,106,98,106,109,99,106,98,106,104,94,118,105,90,99,90,99,95,107,106,95,105,101,99,105,110,97,105,117,101,99,96,96,107,107,106,90,97,110,97,90,104,107,109,93,106,116,105,109,91,107,107,109,106,103,105,100,96,89,105,99,92,104,100,100,84,98,108,100,103,104,99,99,103,97,85,103,92,105,99,95,99,72,101,104,111,106,111,95,103,98,91,94,102,104,92,108,93,113,108,103,99,98,101,97,109,94,95,100,106,96,97,109,103,99,104,108,101,115,97,106,94,113,106,98,106,92,100,96,111,110,92,105,98,95,109,103,102,110,87,98,109,88,90,95,101,98,73,91,98,88,100,112,95,88,104,97,106,99,102,104,81,100,110,96,84,99,98,99,97,106,105,100,100,100,96,92,102,99,95,106,99,105,106,110,98,104,109,134,102,87,101,95,97,105,105,102,88,98,99,85,97,85,94,102,92,92,109,84,106,96,101,94,110,92,95,108,99,98,93,89,94,107,107,96,95,93,97,104,99,81,90,104,111,84,95,99,93,107,90,106,99,103,106,103,93,97,93,93,103,103,114,93,103,102,110,128,98,95,101,107,104,98,112,111,102,98,106,109,109,95,98,94,110,90,91,111,104,89,110,102,100,98,108,100,97,91,91,96,89,114,92,94,104,96,102,103,103,79,102,93,93,98,93,99,97,113,96,99,106,92,101,65,110,106,94,125,104,107,106,100,98,86,90,112,82,97,110,104,96,103,97,102,103,90,93,128,88,86,103,100,85,99,100,104,102,99,92,104,100,106,99,96,104,101,94,101,98,101,96,104,96,101,80,104,82,97,91,97,99,106,75,107,93,88,101,99,96,104,105,110,90,101,98,122,100,97,99,111,103,103,100,99,94,101,96,103,104,109,97,101,99,105,105,101,98,101,98,89,119,107,105,120,105,93,89,95,98,100,101,111,113,95,116,111,102,96,81,108,100,96,105,111,102,106,107,105,92,114,85,100,109,94,100,105,88,102,98,102,102,105,98,98,112,95,109,97,103,99,102,102,101,129,103,100,94,102,103,103,96,91,91,132,103,101,101,108,105,99,99,94,104,98,101,107,110,101,104,95,94,95,94,109,107,108,106,96,107,105,83,96,108,106,97,89,118,102,107,110,90,107,93,103,109,84,107,94,84,98,96,96,94,103,103,90,105,105,113,98,100,117,97,108,106,104,105,103,115,101,110,106,88,88,92,109,83,109,99,100,97,111,96,102,102,111,109,97,98,102,102,100,94,104,105,104,111,105,105,117,100,104,105,94,100,93,98,93,108,87,99,91,101,112,101,95,104,93,94,87,107,64,93,99,96,113,102,102,99,98,101,93,99,100,106,109,107,91,106,99,98,87,100,104,92,102,92,102,98,111,111,109,95,97,101,107,107,87,95,100,95,108,92,107,101,100,87,101,102,107,95,103,104,105,91,103,99,107,100,98,99,102,114,117,100,116,106,104,110,96,102,92,98,105,101,103,98,108,105,105,97,94,93,115,90,104,104,98,103,101,98,105,91,120,105,102,95,87,92,106,102,102,99,106,109,98,107,110,105,77,100,105,99,102,103,97,104,109,90,86,100,96,104,105,109,88,104,87,101,98,109,109,104,95,97,96,98,108,90,98,97,96,116,87,98,102,91,105,92,103,105,95,98,86,107,88,104,113,100,110,104,100,109,93,95,99,104,109,99,96,86,110,90,104,112,105,98,103,106,105,101,98,109,104,89,107,100,102,111,110,97,96,99,94,108,97,107,106,95,109,111,104,106,106,94,109,104,107,97,119,112,108,130,102,98,104,111,102,93,100,103,102,101,107,88,113,92,102,90,103,102,116,108,99,95,101,86,97,104,95,99,103,94,97,102,100,102,105,98,107,104,95,97,100,109,105,110,93,99,107,102,85,105,88,98,94,103,105,105,109,104,91,112,94,104,103,106,99,102,97,102,93,110,91,102,96,104,112,92,115,103,102,106,102,103,94,64,98,99,100,105,105,91,97,96,97,102,95,106,95,105,100,99,108,83,98,78,102,82,96,104,102,102, +410.73169,106,112,88,95,91,102,100,97,97,103,94,98,92,109,104,108,99,113,106,94,109,113,100,104,100,110,105,105,111,106,106,86,116,93,109,109,95,99,91,95,104,106,106,100,99,102,103,97,91,104,100,77,103,99,91,89,94,88,113,90,114,96,117,95,83,104,96,104,99,105,89,114,94,100,101,97,101,100,107,100,102,96,95,76,88,94,91,104,97,97,108,98,105,111,104,108,95,69,104,96,97,99,106,90,96,102,97,117,112,97,103,101,100,101,106,96,90,113,108,103,95,113,108,90,100,99,111,104,110,99,97,106,100,98,115,106,105,97,84,108,94,119,103,100,114,107,105,97,108,104,104,101,102,108,99,107,106,84,102,104,104,94,95,99,114,99,96,92,99,104,111,100,104,104,121,105,92,98,111,106,96,100,105,96,94,97,90,106,92,96,131,102,87,96,100,118,98,110,84,79,106,109,99,103,106,103,113,107,86,132,95,103,104,107,73,110,83,88,100,99,109,104,92,98,101,108,100,104,104,97,105,110,105,113,113,104,102,99,93,96,96,101,107,102,108,103,100,103,100,98,98,99,99,104,105,104,70,101,104,101,102,95,99,108,101,113,94,99,107,91,102,97,102,113,91,69,96,99,94,98,101,97,117,98,96,100,96,99,77,98,97,101,99,111,97,101,95,112,100,102,97,109,97,102,92,113,104,105,101,110,105,117,103,107,117,108,95,100,95,103,100,87,104,105,106,98,99,104,79,115,98,105,109,100,112,97,96,88,107,97,102,99,92,97,95,108,109,112,99,98,108,103,105,99,101,103,102,107,97,105,107,93,105,100,100,98,92,112,92,124,106,103,100,97,102,90,136,83,102,108,102,101,86,98,105,104,100,84,96,104,108,97,99,102,105,108,104,88,99,88,105,98,104,99,102,90,101,99,98,102,108,95,104,102,103,95,100,97,94,107,90,104,98,118,93,101,98,95,101,115,93,95,104,99,106,109,105,110,99,97,105,93,110,100,92,97,95,102,107,99,88,98,99,112,101,100,116,103,106,111,105,105,107,117,99,101,105,95,103,94,95,100,84,98,97,108,104,109,113,104,95,93,105,113,95,103,88,79,96,105,91,94,107,106,93,107,85,109,102,96,105,97,105,91,105,98,104,95,108,86,107,109,95,102,91,93,98,99,98,101,100,103,100,101,119,106,99,100,104,94,96,105,93,101,112,99,112,112,94,107,92,82,114,103,106,97,103,103,96,98,99,110,112,102,97,99,86,117,95,107,104,108,95,99,121,95,93,105,96,108,89,95,99,104,101,91,108,98,96,94,92,87,113,98,103,102,101,105,98,95,95,101,100,99,114,101,96,88,108,96,106,84,107,100,95,112,99,99,104,95,104,104,91,100,115,106,104,93,106,122,109,95,99,104,111,91,89,96,117,97,99,100,107,97,81,99,108,90,103,95,107,105,99,95,113,105,114,105,102,106,100,108,108,97,105,103,95,104,93,100,109,105,96,108,91,94,94,90,100,102,103,100,86,99,100,103,105,95,107,101,117,95,113,95,94,95,106,87,104,102,106,101,91,107,106,92,100,96,111,93,104,110,101,106,107,110,112,89,102,101,109,108,103,94,107,86,95,110,103,106,84,95,113,99,97,97,96,108,105,110,97,91,99,91,95,105,94,100,105,101,106,89,100,104,92,96,105,99,93,102,114,94,83,93,99,77,112,101,102,96,104,96,108,104,104,89,91,103,91,93,109,97,110,102,93,95,97,104,98,104,92,103,98,118,91,113,103,104,105,95,107,113,112,104,93,115,107,106,104,104,104,107,102,101,98,96,98,108,101,110,112,104,100,97,113,100,94,108,102,109,109,92,105,104,97,103,113,97,106,96,112,99,106,100,103,96,95,102,113,104,100,91,101,103,94,92,98,99,98,96,109,100,94,103,94,110,110,105,101,109,101,102,109,109,115,100,100,104,115,109,94,91,115,108,97,105,101,92,97,100,86,103,82,101,109,109,103,113,102,109,96,110,100,108,114,94,101,93,98,106,96,96,91,108,101,103,102,99,101,95,112,105,102,103,102,105,100,104,92,99,104,95,99,100,102,110,110,90,96,113,97,103,99,108,87,99,104,95,105,113,101,113,108,99,112,87,112,105,88,109,86,99,106,99,103,101,101,109,101,112,128,105,97,114,101,112,105,111,107,92,91,109,101,99,96,108,105,103,96,98,100,92,113,104,114,108,107,99,91,104,103,97,105,103,99,85,96,104,100,93,89,96,98,101,115,108,106,101,101,100,99,104,110,97,104,104,98,91,115,103,102,99,87,82,98,100,98,99,101,98,98,106,113,88,102,96,96,112,100,97,99,108,108,114,94,118,108,98,91,96,120,100,93,103,103,112,100,98,102,105,99,104,117,95,96,103,100,101,105,107,105,128,92,101,95,101,96,97,102,96,102,88,90,104,98,102,94,93,100,103,94,112,100,97,98,106,101,98,107,89,106,102,99,101,95,78,112,95,102,108,91,109,105,104,98,90,106,103,88,95,100,99,102,102,102,91,104,107,106,99,108,113,102,103,98,96,94,103,104,94,95,79,96,117,103,101,99,98,103,98,90,102,106,104,106,101,98,110,100,104,106,91,108,95,113,100,109,99,114,98,102,113,107,100,97,95,90,108,108,99,105,98,101,93,93,98,97,108,99,102,100,95,91,111,89,104,98,93,97,99,99,97,124,87,96,99,99,101,100,104,102,102,94,109,113,108,89,97,100,89,106,97,109,113,111,105,91,99,103,100,89,106,95,88,102,101,134,101,106,100,98,126,78,94,96,94,112,110,88,98,112,104,107,105,109,104,102,95,104,117,102,95,99,114,103,110,92,115,101,91,100,106,100,99,105,101,98,106,111,103,102,95,104,115,104,99,114,88,108,99,102,103,95,102,88,116,97,83,96,98,104,111,104,108,105,86,102,114,99,91,95,104,127,101,114,101,109,105,112,109,100,102,87,97,103,108,108,101,105,100,96,95,99,135,103,104,98,100,90,98,104,101,103,102,95,98,107,104,99,103,91,110,110,103,102,105,95,97,97,102,126,88,111,104,102,104,102,102,91,99,98,104,112,110,101,98,102,103,104,101,111,93,81,101,95,98,106,111,96,100,103,97,101,100,116,87,107,105,91,112,80,85,105,78,95,100,97,96,99,103,93,105,87,94,103,94,97,99,92,101,106,95,94,101,94,103,100,107,98,102,102,96,91,104,95,95,94,97,96,100,119,93,103,113,101,98,102,92,109,101,113,95,117,108,93,96,123,106,101,98,96,104,110,94,104,99,104,105,90,96,85,117,98,94,100,81,99,109,97,98,103,95,100,105,98,93,96,91,100,73,100,108,101,105,91,85,91,102,107,97,104,107,89,105,103,93,102,95,89,105,78,100,109,88,96,107,96,116,104,104,103,103,110,101,97,103,97,94,103,94,94,124,102,109,101,116,99,92,104,106,102,98,94,106,92,96,100,113,100,91,94,98,97,90,99,110,104,101,113,99,81,108,98,100,97,94,105,95,96,117,99,119,101,105,105,92,98,101,109,102,109,102,99,97,96,91,99,113,101,107,103,103,96,84,94,111,102,99,109,106,98,95,108,93,106,97,112,95,102,105,98,100,106,114,99,92,102,105,98,86,93,98,112,98,87,101,101,85,99,100,106,113,80,110,95,100,107,113,102,106,103,109,91,101,100,91,104,87,98,104,99,98,111,96,98,103,86,103,99,104,98,96,102,107,100,118,130,102,109,98,101,106,101,109,102,105,109,94,99,102,114,99,113,102,90,94,100,105,98,98,119,110,109,98,111,124,106,107,71,98,105,100,103,103,95,99,82,106,96,104,72,108,97,107,113,94,100,90,95,104,87,98,104,125,103,100,104,105,105,87,98,103,94,107,91,112,103,106,115,98,93,107,93,110,96,98,95,97,97,100,79,77,99,83,112,97,101,95,102,111,97,95,88,96,99,99,104,106,99,98,113,108,108,80,99,96,107,102,103,116,105,102,111,113,106,105,105,100,99,96,111,97,103,90,102,107,104,100,100,96,105,111,100,98,97,114,98,93,97,100,102,95,99,101,99,110,113,106,104,101,112,108,110,107,104,93,92,101,100,112,106,104,102,96,102,106,103,94,103,97,98,95,102,93,116,96,109,108,113,101,103,99,105,87,98,106,96,96,87,112,100,102,98,102,106,93,89,104,79,102,104,99,104,98,101,112,70,96,115,83,99,102,104,72,89,98,107,96,95,92,94,97,106,98,106,96,114,105,88,92,95,101,100,95,107,81,99,97,101,96,97,97,105,97,95,101,103,103,99,100,76,100,116,114,98,105,96,95,117,92,116,75,118,73,101,97,100,100,103,97,94,95,94,99,102,107,103,95,112,99,100,105,112,93,103,99,99,104,105,99,98,109,98,97,94,101,96,100,103,88,95,91,88,107,95,102,101,100,109,101,94,96,97,95,95,95,102,97,113,98,103,98,99,104,102,100,99,110,102,103,90,100,98,107,106,113,96,106,103,94,102,93,102,90,95,106,85,97,99,100,126,85,110,102,107,98,95,96,102,99,95,103,108,95,88,104,107,105,96,98,105,98,97,104,106,108,109,98,103,106,102,101,99,78,98,110,95,100,101,100,98,112,103,105,107,96,101,88,95,88,104,100,97,89,106,117,105,103,100,98,87,115,80,98,112,102,97,95,100,98,117,101,105,98,115,90,107,104,90,99,109,76,92,98,98,110,87,99,110,90,89,93,100,89,107,103,105,102,111,89,99,88,103,89,100,98,112,107,93,106,100,103,97,107,95,84,104,98,106,96,95,89,99,92,105,95,98,87,107,69,94,91,122,116,91,104,93,99,80,91, +410.87189,81,98,92,93,103,101,96,90,89,104,105,97,107,91,110,99,93,106,95,94,99,108,109,95,100,109,92,98,95,102,111,109,96,99,104,98,103,102,99,104,98,112,98,95,97,100,101,99,95,101,111,93,94,109,87,97,101,106,102,83,106,94,109,93,95,95,89,115,96,97,97,108,105,96,103,107,99,99,102,95,84,93,107,92,99,98,92,104,95,107,91,109,101,100,92,100,99,91,87,99,94,109,119,87,100,114,91,111,112,95,94,89,105,99,106,103,106,101,103,104,92,103,102,116,106,106,105,95,109,96,113,94,96,104,108,93,111,104,93,99,97,98,88,108,97,88,102,106,97,101,106,93,111,110,97,95,106,106,101,103,93,98,104,95,98,103,96,89,101,87,98,101,105,98,98,111,103,96,105,103,103,101,93,113,100,102,103,96,67,98,98,99,81,100,104,96,94,105,88,106,96,102,96,108,102,113,112,94,103,110,98,97,96,91,100,95,93,103,110,105,90,96,97,99,92,114,111,105,98,96,102,88,100,113,101,104,101,105,105,89,103,92,100,96,100,91,97,94,109,100,99,100,101,115,109,114,90,99,104,92,95,106,103,95,88,95,99,91,99,103,107,83,95,110,105,95,98,102,98,98,100,102,112,87,108,101,94,105,95,102,100,99,101,98,98,115,109,110,101,109,98,96,105,106,91,111,107,106,94,97,96,110,106,98,105,102,97,93,95,99,104,105,95,103,93,104,106,97,109,102,125,105,106,95,96,107,100,91,115,96,91,104,102,86,105,102,80,96,100,106,108,88,97,109,102,104,102,107,97,101,98,96,100,95,130,89,105,105,93,105,86,102,96,94,104,100,103,113,104,115,116,107,94,116,100,101,99,100,96,93,82,112,96,103,92,96,109,100,97,104,101,119,87,95,108,90,95,112,110,96,100,110,99,100,96,99,90,112,104,95,97,102,99,127,101,98,93,111,93,128,98,106,104,102,107,102,104,108,87,105,104,108,95,108,100,94,109,95,98,99,84,95,100,109,99,98,108,109,99,97,102,105,103,108,78,109,109,105,112,105,97,109,101,94,100,95,99,90,98,104,102,101,109,93,125,106,113,111,106,104,117,103,108,99,97,109,94,138,109,106,97,107,94,112,99,109,94,109,98,100,111,93,96,114,96,99,105,98,104,91,94,103,109,107,107,99,113,105,94,96,101,109,95,118,94,91,95,94,101,106,99,119,102,101,107,98,107,90,113,106,113,94,96,101,109,105,95,96,91,94,111,102,99,93,99,107,94,108,99,99,100,103,103,103,108,92,106,97,98,103,109,109,95,116,90,97,103,109,121,99,103,102,104,101,109,104,106,90,95,98,99,111,105,96,103,95,99,101,103,104,99,100,119,102,110,98,106,104,112,100,113,113,94,104,96,95,104,106,111,107,100,99,97,103,90,108,108,97,101,99,98,99,113,103,96,100,83,102,107,107,89,121,106,94,92,114,97,99,110,101,98,105,101,97,96,102,104,103,110,101,97,103,100,104,103,100,109,100,110,91,102,102,101,104,105,96,96,101,102,103,110,100,100,103,88,104,89,90,105,106,95,92,105,111,105,109,99,96,102,85,92,105,114,88,113,98,106,103,91,100,105,100,113,107,91,100,91,109,98,96,104,103,104,95,99,95,105,108,104,96,104,92,115,94,94,87,90,105,99,104,104,98,107,101,99,98,98,100,98,99,95,106,91,109,86,99,91,100,100,96,103,104,99,102,104,99,103,105,105,99,96,90,101,119,117,105,99,98,105,94,100,96,90,112,99,92,96,103,112,113,105,95,108,106,96,86,99,103,104,92,101,109,95,86,111,102,117,107,117,103,106,95,120,106,99,103,104,105,99,113,105,107,99,107,99,97,109,102,103,105,108,100,102,101,103,106,103,87,95,75,113,104,96,102,99,92,98,75,107,112,95,108,99,71,99,99,91,95,89,113,106,114,101,104,91,101,102,97,101,88,99,104,102,112,106,97,85,95,106,107,111,106,101,113,100,97,97,99,83,83,108,101,111,110,100,94,90,101,93,91,97,94,102,116,100,102,101,129,106,106,102,92,96,101,87,102,111,98,84,107,102,99,82,102,108,92,99,98,91,100,106,97,101,93,98,97,106,112,108,110,97,92,111,101,105,96,102,108,92,96,107,117,96,113,99,104,102,104,117,101,96,104,96,103,102,96,102,88,92,105,103,101,103,101,99,110,96,97,104,93,92,96,103,96,98,92,90,96,100,100,105,101,100,105,114,112,106,102,94,105,106,110,98,102,100,105,93,103,87,85,110,88,99,99,104,100,97,96,101,96,108,104,100,91,112,97,107,102,98,106,87,99,96,112,95,85,100,94,100,91,103,100,91,104,87,99,102,98,90,95,100,110,104,92,112,103,103,101,101,97,108,106,98,101,105,103,103,89,96,102,109,97,67,102,119,105,97,95,109,104,102,93,99,87,83,92,93,74,100,93,80,93,109,101,94,106,98,102,100,100,110,117,108,96,105,90,99,106,93,101,103,99,92,106,104,104,86,101,97,109,101,100,107,92,90,99,103,107,96,97,109,103,102,103,104,102,108,80,107,91,90,103,103,97,103,98,100,95,88,105,98,85,95,87,98,103,105,94,99,102,96,101,101,104,94,93,98,97,96,104,91,110,100,113,102,105,108,79,108,96,98,101,107,98,94,104,97,94,99,100,106,112,99,97,105,94,118,99,104,104,105,119,97,91,106,91,110,92,102,95,101,116,93,101,113,97,97,113,105,99,96,106,87,105,111,96,108,75,101,106,121,99,100,95,108,97,90,107,100,110,102,103,104,104,101,97,98,106,101,107,89,96,108,94,93,87,94,80,111,93,97,115,116,100,91,94,94,96,101,97,101,101,105,103,106,103,100,100,109,110,104,90,91,103,96,108,112,91,100,97,108,92,100,100,95,97,103,103,105,90,99,86,90,108,106,102,103,103,88,92,112,100,93,102,96,106,111,112,107,95,89,89,102,106,107,109,92,101,105,91,108,105,91,102,103,102,119,77,104,97,99,103,89,102,105,103,106,110,109,95,109,106,100,107,123,112,99,96,106,91,101,96,98,111,104,95,101,106,109,97,101,106,104,100,92,102,103,92,102,105,105,102,96,104,106,101,100,110,105,101,107,104,94,110,96,105,101,102,103,98,94,96,94,100,103,94,109,107,94,112,101,105,91,117,93,101,92,100,90,95,104,106,103,102,121,104,96,109,103,97,95,107,101,97,101,100,94,95,99,99,99,87,113,102,83,108,112,112,94,65,110,94,102,76,106,93,110,91,83,101,102,100,102,89,91,104,102,107,113,98,95,94,100,88,104,103,101,102,98,96,85,91,107,115,105,108,107,93,103,102,100,108,102,95,96,98,99,80,97,99,102,96,101,105,117,106,96,112,96,105,102,91,102,95,97,103,102,96,99,95,129,107,106,89,96,96,109,103,95,105,110,103,113,117,104,97,90,105,91,100,101,104,97,103,97,97,116,94,94,115,104,114,94,87,105,76,92,103,101,106,120,98,99,111,112,103,105,105,104,99,101,109,92,103,115,97,101,93,102,91,93,113,102,97,66,83,114,106,96,100,91,103,92,101,100,101,92,109,103,102,100,100,102,112,103,97,91,104,91,98,98,103,97,100,100,102,110,100,106,109,100,97,119,105,104,92,90,100,104,98,92,87,85,60,105,91,89,96,100,91,109,97,103,106,105,100,107,102,101,112,93,109,95,91,99,98,107,104,106,109,100,111,98,101,102,102,99,98,79,96,97,109,111,104,101,105,107,109,87,101,94,106,100,96,107,99,102,102,103,106,109,104,107,113,95,93,92,98,98,97,91,98,91,106,105,93,101,94,92,96,92,109,89,89,95,96,100,78,100,86,94,100,101,100,116,124,99,102,93,102,105,101,94,106,117,108,97,107,93,107,99,104,92,99,106,102,104,85,108,110,100,111,111,98,113,89,98,102,110,98,100,100,108,101,108,109,87,98,101,103,95,92,106,105,96,101,100,95,98,108,105,102,113,98,98,113,109,107,93,124,95,102,100,104,77,106,98,110,105,97,105,96,79,109,90,101,105,105,88,100,102,102,88,105,107,98,102,96,95,92,95,108,95,95,102,106,104,112,102,120,105,109,104,91,105,99,113,88,106,101,75,91,90,113,102,106,99,98,95,109,107,106,102,105,91,107,98,90,101,89,99,96,105,109,87,92,101,99,91,102,90,96,101,91,104,86,120,100,97,106,100,100,101,87,100,98,91,104,103,111,97,106,99,111,99,102,97,102,90,94,109,92,77,105,106,97,117,91,101,99,97,97,105,113,98,97,101,101,96,92,107,103,99,108,114,106,111,113,132,93,99,81,105,101,83,97,84,94,96,96,103,100,100,92,113,100,93,105,102,94,104,105,104,103,98,96,105,96,102,91,95,91,95,94,91,93,89,107,98,94,90,112,86,103,100,101,97,119,93,101,100,71,101,92,106,113,99,103,99,105,100,103,92,90,97,104,106,112,80,98,98,107,101,109,96,88,96,99,105,98,91,87,101,106,82,105,101,99,105,96,100,99,85,109,95,99,97,121,79,95,102,104,101,95,109,99,106,83,107,101,95,94,105,94,101,104,109,77,95,96,105,101,101,93,101,106,107,103,103,87,66,116,101,66,93,102,100,100,105,98,89,98,106,106,104,106,105,102,103,99,110,105,98,102,99,93,123,98,98,105,88,91,97,108,101,99,97,101,103,107,110,117,111,91,109,79,100,99,79,91,107,94,97,105,99,109,90,93,94,103,98,107,93,108,95,108,88,92,96,73,92,86,97,105,80,88,95,100,102,69,100,91,97,100,106,101,117,106,91,97, +411.01205,96,106,101,98,99,121,106,88,89,91,113,105,96,97,105,95,96,101,113,89,103,99,106,117,101,102,103,102,92,95,91,98,99,97,107,103,96,92,101,99,99,95,90,87,110,102,88,95,92,95,95,95,99,94,117,98,112,99,115,95,104,98,90,85,107,102,87,95,84,102,103,104,90,101,89,112,90,83,100,86,104,107,92,93,96,90,101,112,104,97,109,97,88,93,99,90,106,95,99,91,92,87,94,105,104,96,98,96,90,109,102,132,98,102,103,104,90,100,91,99,102,95,116,94,106,104,106,96,103,112,80,102,97,107,107,97,91,106,115,94,105,102,99,100,100,95,105,104,86,88,98,110,103,96,94,103,105,106,101,92,111,100,98,104,106,99,113,95,97,92,91,107,102,107,98,100,101,96,98,96,105,101,99,102,94,96,85,101,96,90,96,94,105,102,109,101,99,105,110,106,95,97,94,110,91,93,103,98,93,85,96,112,109,101,91,95,101,96,94,105,87,107,106,107,93,98,100,119,101,104,91,135,106,97,103,100,95,86,114,94,109,97,111,106,92,96,99,100,99,109,98,97,96,103,104,102,100,99,91,105,99,103,93,104,98,102,105,106,99,91,108,104,109,98,91,92,95,106,97,97,97,111,105,103,102,96,101,97,101,97,101,94,109,106,119,109,105,97,101,104,101,104,101,103,86,99,103,97,102,108,100,108,98,95,102,106,108,103,98,97,117,100,115,101,100,89,92,71,105,110,103,98,104,89,94,74,110,92,97,105,99,100,99,101,103,104,88,94,80,96,95,100,100,99,102,102,121,108,116,113,93,84,98,99,86,98,106,104,98,99,117,104,104,102,114,99,101,117,110,100,116,99,93,107,109,102,105,104,99,116,95,99,107,114,79,92,83,100,112,106,91,105,105,93,93,96,98,93,99,104,99,102,104,103,105,107,97,97,101,97,89,101,106,107,87,100,96,93,98,113,105,106,108,106,105,107,100,109,89,96,103,103,99,105,91,98,103,100,106,97,105,104,109,113,114,87,102,112,100,91,99,103,106,109,95,110,105,101,101,109,100,91,100,97,110,83,96,89,97,99,90,108,95,97,87,94,99,110,102,98,103,98,100,102,91,109,99,107,102,98,102,84,95,97,111,100,96,91,101,83,116,94,94,102,97,107,114,106,90,97,109,96,103,94,105,98,99,101,99,93,99,97,98,109,100,113,106,117,97,119,97,99,92,96,108,94,108,100,87,99,96,96,100,102,103,111,104,96,102,105,102,102,97,100,98,100,103,96,95,101,92,96,105,106,103,104,102,93,97,102,99,93,99,98,97,99,107,107,88,107,99,100,95,95,105,75,81,101,107,106,99,95,104,98,104,92,91,106,100,99,92,115,100,98,97,97,89,108,102,101,113,101,94,98,97,87,106,106,95,96,89,98,102,97,92,106,97,95,104,105,100,85,83,120,103,108,99,75,105,109,90,104,94,101,94,93,98,110,92,102,112,99,84,111,83,87,109,90,95,100,104,110,100,98,98,109,98,99,82,101,102,101,106,98,105,83,99,83,93,102,110,98,90,103,103,100,105,108,101,98,101,100,108,99,105,105,96,99,104,85,93,102,100,94,100,101,96,96,104,98,106,95,98,94,95,101,101,92,109,103,102,106,99,83,103,91,102,111,107,100,101,99,99,106,100,94,101,99,76,99,121,103,101,94,106,103,104,113,105,95,94,110,83,101,95,98,102,110,109,94,104,96,91,87,109,104,105,96,96,100,113,115,111,98,112,102,96,94,101,108,115,102,97,97,100,109,109,96,106,83,104,84,92,104,103,105,102,99,94,104,106,100,103,99,96,96,105,106,93,101,94,99,113,121,106,106,101,97,107,116,103,99,104,95,99,83,91,103,102,104,103,105,86,107,100,91,99,92,104,83,92,104,101,116,101,96,110,95,76,102,104,109,117,92,101,101,93,98,104,100,98,95,102,107,97,93,100,90,97,100,104,100,98,106,104,99,59,105,103,104,111,111,106,94,110,84,114,108,91,99,93,110,108,86,99,87,101,105,86,100,89,96,99,109,87,96,70,99,104,98,96,113,101,105,105,100,114,105,107,105,98,94,105,102,101,130,96,115,105,100,106,99,94,87,100,93,108,108,102,107,108,105,110,107,110,100,100,100,103,100,89,107,107,112,111,107,110,98,98,97,110,97,99,106,101,94,102,93,110,93,106,101,92,106,107,104,92,100,95,101,98,109,100,101,98,102,99,106,90,108,85,98,96,107,105,97,93,112,101,106,100,114,116,101,107,82,86,109,110,100,104,105,108,105,106,124,98,92,110,116,104,100,106,83,107,104,99,111,92,95,87,106,109,105,93,97,98,95,93,78,109,108,104,96,99,110,106,118,102,91,80,103,112,103,99,105,96,92,93,103,99,104,92,109,105,95,104,90,100,98,97,101,101,98,95,131,97,101,104,105,94,101,99,97,96,108,110,99,96,103,98,97,103,98,92,100,108,97,100,102,89,104,83,97,106,91,99,90,94,103,87,95,96,104,106,91,101,93,97,105,101,115,105,87,111,109,92,97,98,96,106,82,85,92,106,95,105,119,108,102,105,90,109,112,111,97,96,113,104,100,105,96,101,98,110,99,86,91,101,106,92,98,99,97,133,105,99,98,96,96,112,103,106,99,120,126,103,91,102,106,100,92,105,117,101,102,87,99,98,107,104,103,87,98,95,110,97,88,94,105,98,102,93,96,111,104,97,99,105,98,115,102,97,110,107,95,94,106,113,70,87,99,93,85,98,104,89,102,104,112,96,98,94,90,97,106,110,113,90,91,90,95,102,86,93,100,86,104,95,102,113,92,92,108,94,101,105,103,109,102,112,107,98,102,103,91,102,98,98,108,96,103,94,105,106,93,103,104,137,104,97,106,88,100,96,109,102,92,98,99,99,99,107,102,109,107,90,103,106,91,101,99,105,106,101,101,97,90,97,104,98,101,101,99,101,96,99,88,104,91,90,102,91,104,105,94,109,96,99,107,94,104,103,104,97,94,116,102,100,87,101,91,94,103,104,110,95,105,91,109,92,107,95,108,102,92,76,91,101,118,107,89,104,102,98,97,104,107,97,96,107,95,98,100,102,99,92,104,99,101,105,96,103,97,94,86,111,92,107,98,117,105,106,105,89,95,100,102,108,93,112,103,106,105,108,103,105,98,101,106,91,103,100,105,102,84,105,94,98,100,117,92,109,83,88,103,105,105,88,108,69,95,95,110,105,89,95,100,98,92,100,98,104,99,97,96,100,98,100,99,94,100,102,98,95,98,109,101,106,105,95,96,89,87,132,108,105,103,102,95,101,111,97,99,94,94,95,104,99,98,107,100,100,104,93,102,107,99,107,115,93,103,96,117,93,105,114,100,91,98,102,105,103,98,107,99,96,109,106,102,106,107,102,95,96,102,99,98,102,102,92,94,104,93,91,104,99,100,110,96,97,102,100,100,97,110,97,92,87,104,104,82,106,99,100,97,97,102,111,96,93,109,104,101,105,110,98,96,90,99,113,92,89,107,101,111,101,104,109,99,99,91,92,99,99,93,105,100,104,97,86,102,94,111,99,89,87,109,99,106,96,100,106,107,87,94,114,99,61,82,96,93,107,102,103,101,96,100,112,91,111,109,108,92,93,93,101,95,98,101,99,132,91,111,99,94,93,93,108,94,96,91,98,90,89,94,92,99,91,100,96,101,99,98,105,95,99,109,98,94,110,105,110,120,101,112,94,80,102,107,117,105,107,102,99,106,104,109,94,98,98,110,105,109,93,111,97,104,104,105,84,95,108,100,97,99,101,103,94,97,101,101,123,96,99,64,91,96,90,98,108,105,98,104,99,98,95,97,97,103,94,95,107,107,96,91,112,97,109,95,100,110,97,99,106,101,88,98,98,105,96,117,79,115,94,95,94,86,104,101,96,94,113,97,94,95,102,90,83,105,99,105,102,109,95,92,108,103,101,93,101,98,98,99,100,95,110,97,117,95,104,109,98,89,104,99,97,101,121,107,116,95,83,92,95,105,96,101,110,98,100,100,91,113,91,101,107,101,95,104,76,100,90,105,99,113,98,102,116,112,94,88,90,104,90,105,103,88,109,104,107,110,81,79,106,96,105,87,95,96,79,87,87,99,109,133,88,102,101,111,109,90,111,91,100,102,96,91,105,89,105,96,97,95,91,102,106,109,119,91,67,110,89,105,105,96,96,89,105,100,113,90,106,96,98,105,113,101,96,111,119,99,96,98,102,94,100,97,99,109,86,97,101,103,102,112,107,92,94,111,105,94,108,101,92,89,97,96,108,100,117,103,103,108,77,114,89,101,98,101,84,102,97,109,99,106,109,106,115,96,97,94,93,109,96,96,72,100,100,91,104,105,109,96,107,93,94,112,104,116,91,95,97,106,100,95,104,97,107,96,93,94,98,100,113,84,98,108,101,104,88,93,97,94,109,119,92,104,108,104,100,89,90,105,104,87,88,99,125,102,90,111,104,79,91,89,92,88,110,87,96,105,90,108,107,108,95,94,87,103,100,76,95,104,88,105,108,98,87,99,106,104,98,97,102,108,103,98,74,102,91,91,98,91,96,105,105,109,96,99,94,73,115,102,99,97,92,93,90,97,104,94,95,96,96,107,107,107,107,99,93,121,107,95,100,109,98,111,80,80,98,88,94,89,101,96,109,101,102,64,112,95,97,105,98,102,100,100,90,106,99,103,116,100,111,98,99,105,105,102,96,109,94,92,101,98,104,97,97,112,92,95,100,95,101,95,90,99,98,104,91,101,85,79,90,97,90,96,110,91,97,103,97,122,117,90,92,113,111,88,100,93,108,89,90,88,95,100,100,91, +411.15225,90,108,89,100,110,90,97,95,96,99,101,97,99,98,97,107,97,103,94,100,96,105,106,104,101,105,103,102,99,113,98,97,100,101,97,76,91,96,88,102,94,87,101,110,113,105,98,105,93,99,95,99,115,84,104,85,104,112,99,106,83,126,79,100,86,104,100,95,79,96,97,90,96,107,101,105,96,100,102,103,99,103,91,97,102,83,101,99,108,95,94,99,87,102,96,101,88,100,100,117,110,106,87,92,94,99,95,100,103,97,86,97,95,107,94,101,99,109,110,101,107,105,84,104,100,106,98,88,104,109,110,97,95,98,106,103,101,99,93,94,99,100,91,95,110,103,100,106,95,79,97,95,106,91,103,102,100,94,96,92,104,102,106,113,95,92,104,89,105,106,97,104,83,95,90,97,95,87,110,110,98,95,102,101,96,103,64,100,100,107,100,95,103,108,84,102,104,98,101,104,97,106,94,103,108,100,104,91,94,101,78,103,94,97,98,103,107,98,112,102,100,105,98,97,97,93,103,92,106,94,98,103,95,101,117,98,97,108,91,95,100,100,102,113,87,124,119,101,96,106,104,105,94,102,121,110,100,112,102,100,101,98,104,93,111,88,95,101,108,96,100,106,111,88,100,113,98,94,85,107,105,110,107,105,96,98,91,102,101,105,89,102,94,105,107,94,99,98,104,83,102,104,94,108,101,97,95,108,96,109,104,101,100,101,121,97,95,97,104,95,104,100,94,98,102,111,105,100,105,110,106,107,104,90,106,101,103,106,102,101,111,103,86,91,104,97,74,107,105,101,109,101,118,101,100,94,110,95,100,112,118,88,85,91,103,112,75,99,90,106,106,88,100,108,96,96,127,86,97,96,99,106,88,93,110,102,100,104,110,98,103,97,96,105,103,114,121,88,96,109,107,109,106,90,72,101,103,97,100,98,91,91,125,110,102,85,88,103,92,99,94,95,91,103,104,104,93,100,97,102,98,113,98,99,94,89,101,90,102,101,99,104,97,104,98,99,92,102,100,114,108,94,101,105,96,110,92,96,102,100,104,104,104,112,114,95,104,108,107,107,90,89,95,106,100,101,97,100,109,100,93,107,101,96,101,110,106,92,92,102,112,99,99,98,96,100,99,107,100,102,99,95,113,99,105,97,106,101,99,103,102,108,97,95,113,95,122,105,106,95,105,113,103,99,95,89,100,100,111,97,99,109,111,100,98,94,97,108,116,111,102,106,103,99,94,88,105,99,102,95,105,100,90,102,98,97,102,96,102,93,105,108,101,113,103,94,101,104,99,114,91,98,99,109,101,111,106,100,103,96,87,93,94,91,102,106,101,103,104,93,96,99,99,91,104,95,89,101,104,104,92,107,97,100,96,100,99,98,98,93,98,97,105,104,99,105,91,90,99,121,103,100,102,102,100,97,96,97,106,104,84,84,108,101,103,99,96,81,106,93,99,100,95,97,89,99,91,102,108,106,88,102,109,91,102,94,103,99,99,87,102,96,92,98,112,88,103,100,97,97,101,103,91,99,92,107,98,99,97,100,115,85,92,98,95,103,102,101,90,99,91,108,101,107,101,97,98,97,98,90,96,95,106,109,75,108,107,101,87,104,102,110,106,90,90,102,95,87,113,104,109,100,98,100,99,104,86,101,111,99,103,111,106,91,96,100,98,92,100,99,104,94,99,92,104,100,116,106,91,97,104,100,104,98,102,82,86,103,108,108,104,108,104,115,99,101,89,104,98,115,104,98,99,97,89,106,95,105,103,96,100,104,112,111,99,104,107,114,102,100,97,99,106,97,104,108,102,102,95,105,99,104,98,95,107,92,115,107,96,109,104,95,105,97,105,115,104,103,99,100,112,104,100,92,105,97,97,111,102,109,109,110,100,99,95,91,106,107,104,104,107,104,101,98,98,93,100,97,88,103,105,93,98,109,102,110,91,100,100,107,90,93,95,113,99,94,107,105,109,95,93,103,103,103,97,86,104,105,93,101,102,104,95,96,101,96,101,105,104,95,96,111,102,90,94,88,95,103,100,99,92,118,112,90,109,96,91,100,99,95,86,114,109,101,98,97,98,102,104,94,106,95,102,87,100,111,107,107,97,97,86,109,109,104,89,95,88,90,104,94,90,110,104,102,100,114,104,98,97,108,103,102,118,104,99,110,117,100,90,105,101,99,111,102,93,102,99,90,88,100,98,100,98,96,92,100,119,105,104,99,107,103,100,92,101,99,102,98,96,103,101,108,94,104,77,102,98,108,101,111,94,95,92,101,102,103,98,111,94,95,98,107,97,101,81,106,106,108,92,102,96,113,99,90,106,91,102,93,94,106,101,93,105,91,110,96,105,110,108,101,107,96,101,93,99,110,88,94,93,94,94,99,96,99,99,109,92,96,94,96,107,110,102,100,96,97,101,100,100,97,76,103,96,106,96,94,95,93,101,101,100,87,94,94,118,111,100,108,86,103,94,112,109,95,111,95,102,101,89,105,92,100,101,99,107,98,97,97,117,106,92,108,106,100,94,88,94,92,86,109,110,99,102,106,106,102,101,85,108,107,104,109,101,106,101,106,102,102,94,98,87,96,95,61,98,93,106,96,89,88,94,96,105,105,99,100,97,94,92,98,111,92,108,85,93,98,95,92,113,87,106,106,105,98,96,92,104,94,121,105,103,101,100,103,103,102,115,101,98,111,84,102,108,102,101,105,106,99,101,91,103,102,99,71,100,98,108,96,100,109,98,96,96,101,99,107,100,101,98,105,104,98,97,101,101,110,84,108,95,99,106,101,109,72,110,103,87,104,105,95,104,105,114,94,105,89,96,105,97,102,110,96,107,102,99,95,87,92,106,101,97,105,98,97,124,112,101,94,104,96,108,93,108,116,91,96,106,103,102,100,97,109,100,97,107,101,78,103,106,101,108,112,117,99,102,97,96,98,92,97,105,105,98,101,99,100,97,101,109,77,106,118,84,79,104,99,98,110,105,88,99,90,102,101,96,103,103,103,108,95,100,97,110,102,97,99,102,96,102,105,104,89,100,98,89,89,108,105,103,93,131,108,99,104,99,104,106,109,86,97,106,103,118,109,98,107,86,101,87,96,97,105,93,98,112,105,94,92,101,102,105,102,100,97,105,102,91,117,98,97,108,101,94,104,108,91,119,99,104,100,108,93,88,94,97,107,95,89,110,104,94,94,106,95,101,98,108,87,100,99,126,102,99,93,102,109,99,89,102,98,104,105,117,106,109,97,90,106,90,99,109,92,96,110,108,98,88,94,98,97,110,93,105,99,87,95,101,109,102,103,103,84,98,95,107,101,106,91,111,94,100,100,101,83,101,111,100,107,106,91,108,106,79,111,91,102,96,97,105,91,102,101,98,109,101,105,108,107,96,91,82,107,112,105,89,103,92,106,111,96,93,97,103,101,95,109,102,108,97,98,106,100,106,100,89,103,106,94,102,105,110,103,91,81,93,99,106,99,104,116,109,105,101,98,109,100,98,95,90,96,110,99,102,104,90,92,91,100,92,109,100,105,92,91,94,90,87,94,91,107,111,93,101,112,115,94,91,99,109,95,104,99,92,94,105,106,107,84,105,94,94,96,89,93,95,101,109,97,103,99,101,97,103,117,100,106,99,92,110,101,95,100,87,105,93,96,87,88,93,101,103,100,97,107,116,97,94,105,97,98,108,93,96,109,94,92,115,91,116,73,99,99,96,90,105,87,99,96,101,112,92,92,97,96,89,105,100,103,97,106,101,85,109,98,98,101,105,88,97,106,81,93,83,100,98,96,105,92,103,106,121,100,99,84,100,91,101,95,90,105,93,107,89,117,97,103,108,109,100,97,93,106,99,100,90,105,115,99,91,97,88,98,84,87,99,95,106,102,103,94,94,103,104,94,115,102,105,100,110,88,98,103,105,101,99,105,107,98,105,98,99,112,92,94,94,102,95,94,95,101,101,115,92,95,98,101,106,100,92,108,109,104,106,114,109,91,66,103,116,102,112,103,97,91,102,107,98,98,103,105,104,95,99,74,109,105,98,102,102,95,107,104,104,100,90,108,109,96,100,96,95,92,99,101,95,106,86,103,94,103,96,100,98,101,105,104,94,118,89,93,102,84,102,90,108,97,88,86,100,101,89,103,100,93,108,93,97,104,105,94,94,100,90,101,98,75,92,96,103,92,87,96,93,103,106,102,98,103,98,100,104,94,102,99,103,102,109,99,88,88,97,102,101,99,89,87,93,112,93,102,100,94,99,91,84,97,89,98,90,95,100,98,108,91,92,107,95,108,95,112,99,94,96,97,102,89,99,93,98,109,106,88,111,102,77,98,104,103,97,92,94,105,104,95,94,101,108,104,112,109,107,94,95,104,95,102,102,102,91,99,93,85,98,119,101,116,82,114,104,112,102,116,93,89,107,102,94,100,102,93,98,104,98,94,103,88,106,91,99,99,91,92,100,105,103,100,87,84,100,110,78,79,101,104,107,98,97,100,101,107,90,97,104,108,103,99,95,100,92,100,89,116,90,91,96,95,99,88,100,94,114,108,94,93,95,117,101,96,84,96,111,93,84,91,95,97,98,94,85,96,107,92,102,89,98,98,115,105,96,100,103,104,98,102,106,93,103,103,101,96,100,89,99,100,98,95,95,91,97,93,102,100,113,87,105,92,102,103,99,113,89,98,113,100,94,95,94,108,82,88,84,92,94,106,91,99,97,98,91,94,106,88,96,87,90,97,101,105,75,100,88,102,102,101,113,107,99,95,90,97,105,98,87,95,98,119,82,103,104,98,110,98,103,97,104,89,100,106,92,99,101,95,99,92,93,104,90,100,106,88,82,92,99,107,107,105,105,108,102,113,91,91,97,102,98,99,119,87,101,109, +411.29242,99,114,79,102,87,112,99,98,104,96,92,92,94,104,107,92,86,96,105,100,104,97,102,101,99,109,97,103,106,96,95,105,99,104,113,96,105,91,100,95,99,100,91,99,113,97,106,91,106,108,104,100,116,98,105,95,91,108,97,104,110,118,79,88,108,122,103,108,98,95,93,91,106,112,88,110,94,100,85,115,94,88,106,100,99,99,104,110,105,99,97,112,94,109,99,105,98,97,96,99,97,96,101,96,105,105,105,113,103,100,102,94,110,95,104,94,99,110,103,112,97,96,99,98,106,97,99,99,96,102,93,75,95,103,99,111,101,103,88,98,104,94,101,98,95,97,112,97,99,102,97,103,100,90,103,100,93,86,105,99,103,103,106,119,101,103,96,104,108,101,109,95,97,100,94,98,96,102,118,97,105,100,96,107,94,98,108,101,105,95,103,103,108,110,104,97,103,104,99,82,117,92,106,97,88,117,100,99,115,91,93,106,97,107,107,96,99,101,106,103,99,92,102,100,91,109,94,96,101,93,95,101,87,108,113,111,117,134,97,99,100,101,112,99,102,85,108,110,100,104,98,107,97,93,90,110,105,91,95,88,97,87,97,86,89,98,107,107,100,99,113,103,95,102,112,95,96,98,92,104,116,103,116,97,94,105,85,107,104,107,88,102,96,103,96,105,95,116,100,94,101,103,95,103,97,111,108,96,86,110,101,106,109,97,89,95,94,92,118,92,111,95,101,116,103,100,102,104,115,82,80,109,73,104,102,103,113,93,100,100,103,102,103,108,104,98,93,109,106,94,101,102,113,96,107,90,112,90,106,109,92,89,91,92,99,110,102,106,106,115,112,97,95,98,98,104,99,100,101,105,98,103,104,113,109,94,101,99,111,107,96,100,95,99,91,98,105,101,103,113,113,100,100,97,103,94,102,99,96,111,88,90,101,100,101,97,101,91,116,99,101,95,105,109,99,94,98,101,111,100,105,103,97,78,97,96,75,100,95,114,112,95,93,101,103,97,96,101,94,101,88,97,95,96,110,104,105,111,113,108,99,99,118,97,107,117,100,104,107,91,97,109,94,101,113,108,105,92,116,109,103,98,101,109,105,102,107,98,98,90,100,99,98,126,95,92,101,101,98,98,103,98,108,92,104,98,99,100,99,107,109,102,107,87,104,104,98,109,98,95,99,98,104,99,111,103,123,104,96,112,101,99,105,101,91,92,109,100,92,92,97,115,105,102,101,106,118,102,104,104,103,113,101,110,109,104,109,103,102,95,99,106,109,94,109,115,92,99,109,89,94,87,107,97,100,102,95,92,107,106,113,95,108,95,96,103,101,112,103,100,99,98,93,92,111,105,100,95,100,98,88,97,106,94,93,94,88,90,105,108,99,104,111,93,108,96,100,105,101,97,104,100,94,102,100,92,98,109,104,101,116,110,102,107,82,97,96,100,101,91,102,84,89,107,115,102,92,91,100,109,98,105,105,102,106,108,105,105,102,109,115,112,95,105,103,104,107,87,124,107,102,101,106,91,98,101,98,96,105,104,97,100,90,98,100,97,84,100,104,98,105,98,91,101,101,102,97,74,97,98,104,102,95,96,108,107,110,104,106,97,89,98,99,102,101,112,105,98,98,102,101,107,114,102,96,92,93,102,115,113,91,102,95,101,108,103,113,99,120,105,112,99,109,106,95,98,108,108,102,104,120,95,99,86,94,96,101,95,112,87,102,98,99,108,100,105,97,110,96,97,107,113,109,97,108,95,103,106,94,103,95,99,111,103,95,102,98,102,101,101,108,113,93,108,101,100,104,106,93,105,98,102,101,98,85,97,82,92,94,94,109,98,100,109,102,98,104,99,116,107,98,111,105,100,105,109,108,104,103,90,104,88,109,100,100,100,104,112,102,97,93,108,89,91,101,121,100,102,101,109,106,103,97,102,100,97,97,103,85,99,101,95,103,106,95,93,95,87,102,98,99,105,105,72,96,101,105,101,104,86,101,95,103,102,98,92,96,108,111,94,112,105,99,98,106,89,93,106,83,104,97,110,106,94,101,104,99,100,95,98,97,115,112,100,88,94,93,115,101,102,93,100,107,96,100,98,97,113,105,69,106,91,119,114,108,95,119,101,104,105,103,107,98,104,109,97,109,101,102,100,102,96,94,103,103,95,86,95,92,98,107,104,104,97,89,87,105,90,94,100,106,105,112,102,97,94,97,103,90,116,99,111,110,87,97,98,99,97,88,103,103,101,103,104,101,106,100,94,89,90,112,99,101,96,92,104,92,86,101,106,103,106,95,115,104,98,106,105,95,103,113,92,109,109,90,110,98,98,94,107,98,110,101,88,96,103,109,107,101,104,99,98,95,105,103,84,103,97,104,106,101,91,93,102,101,113,99,102,106,103,94,107,110,103,107,116,106,85,97,96,104,106,105,105,100,100,95,109,114,95,104,97,84,106,115,84,99,103,95,108,101,99,88,100,95,84,94,88,102,108,106,103,97,103,101,99,99,91,113,107,91,99,106,101,102,108,107,102,97,109,91,97,93,98,90,83,100,76,111,101,93,106,116,98,104,112,101,92,87,105,102,101,102,87,110,95,108,99,117,86,97,105,105,102,106,95,105,90,91,99,101,95,92,90,100,108,100,100,104,98,90,94,111,78,105,105,103,97,106,102,95,101,94,104,107,104,111,104,106,98,102,98,96,102,99,95,102,92,99,101,102,116,99,98,108,106,105,104,110,86,106,103,99,105,90,110,88,108,101,93,109,99,96,100,97,87,99,94,105,98,87,96,92,94,91,90,99,99,106,103,97,97,102,97,112,95,95,90,100,99,90,103,97,96,100,94,97,95,103,103,91,98,101,102,95,112,92,88,93,98,100,101,98,103,104,104,94,117,102,114,101,104,98,100,106,94,103,102,109,106,91,102,104,87,97,104,103,100,105,101,107,93,89,105,105,92,93,107,102,95,93,108,86,98,111,95,88,101,91,95,105,112,93,105,96,87,105,105,103,100,94,105,93,101,111,100,102,105,96,96,94,107,105,101,96,98,103,91,98,102,96,118,95,100,116,110,103,107,92,97,101,105,103,95,92,97,92,92,95,100,105,99,106,109,91,70,102,92,100,113,112,95,106,106,103,99,109,98,99,112,104,90,94,101,110,88,100,101,109,106,108,103,111,96,107,104,109,99,106,100,87,97,107,96,95,111,112,75,105,99,99,104,102,104,107,116,105,101,106,91,98,105,105,121,104,93,104,100,104,87,78,100,104,110,100,91,96,94,90,105,107,91,98,97,103,94,106,105,98,82,101,99,110,95,101,105,96,108,90,90,96,101,91,94,89,99,112,109,87,81,99,101,96,100,94,102,93,90,119,109,108,98,90,99,99,90,101,100,104,97,104,101,110,109,100,105,107,110,100,124,99,93,97,107,82,91,105,119,91,68,107,74,98,77,105,99,100,105,94,86,109,125,107,96,95,105,99,102,106,102,99,105,102,103,104,98,100,97,95,87,87,107,98,100,64,100,108,105,97,109,92,97,99,108,101,76,91,78,108,100,98,102,110,97,107,97,100,102,90,97,95,99,82,104,103,91,101,113,113,100,101,107,102,106,96,98,102,104,109,109,95,98,122,101,103,102,119,96,102,96,93,96,101,105,97,107,86,103,100,92,105,104,98,108,92,106,107,107,98,92,107,108,84,100,95,98,102,108,98,101,101,84,98,97,91,99,108,107,99,101,101,82,101,105,108,96,111,97,117,97,104,92,107,111,96,92,93,85,109,112,90,112,98,110,99,106,94,109,106,112,102,94,112,105,106,101,111,102,118,93,102,104,92,110,103,105,92,92,102,93,108,107,98,70,93,94,104,106,92,95,102,97,96,90,101,95,104,99,87,100,97,92,94,101,95,114,114,103,108,104,106,98,107,97,98,99,98,91,102,104,102,119,103,104,97,111,93,103,96,104,105,98,104,95,102,84,106,102,99,104,100,100,99,92,108,94,87,92,108,110,96,101,97,103,110,96,114,93,101,100,101,100,95,94,114,111,93,97,101,88,107,99,98,109,88,104,124,101,111,97,106,95,92,105,76,105,104,115,81,98,108,97,97,109,109,101,95,95,96,96,97,89,85,110,90,97,80,101,104,83,105,80,95,101,106,105,100,87,99,99,102,98,103,100,97,108,101,97,105,104,104,101,105,103,110,102,91,100,97,102,104,82,103,95,102,105,96,105,98,103,93,102,114,109,97,105,101,107,96,105,106,102,100,98,94,101,101,89,97,109,99,88,105,106,101,109,110,100,100,108,132,109,105,100,102,119,102,106,98,97,108,97,102,104,109,91,115,95,94,102,94,96,97,107,110,95,99,99,106,99,100,95,92,104,101,94,101,99,89,94,99,101,99,105,110,98,96,98,105,114,106,113,105,101,88,87,98,107,99,108,103,108,91,94,106,77,67,85,109,98,92,103,102,102,108,92,114,103,97,99,85,107,107,102,109,105,97,101,94,83,91,92,98,92,98,103,106,99,102,95,106,109,99,95,96,100,97,100,90,88,112,104,94,73,101,95,92,102,96,97,98,91,95,102,105,108,103,93,99,104,101,99,95,97,91,95,97,109,105,106,100,64,95,107,109,108,90,109,102,115,108,109,101,91,97,91,106,100,104,85,99,87,97,110,105,101,78,88,96,112,91,97,115,95,101,104,110,83,89,96,94,100,83,99,99,102,108,97,83,98,88,95,100,104,97,105,102,106,87,103,100,90,92,102,116,116,97,93,100,101,86,94,89,82,100,102,110,107,103,107,93,99,98,99,108,92,83,98,98,91,103,99,84,103,108,96,102,95,99,92,91,100,93,108,105,98,106,89,93,89,113,92,94,110,78,113,104,106,98,101, +411.43262,102,101,99,100,86,114,109,87,94,100,102,86,105,102,109,102,103,93,105,98,114,104,111,105,94,91,99,94,99,99,95,93,99,106,105,104,94,96,104,109,99,96,107,102,97,109,107,97,122,104,102,103,98,100,130,102,99,109,92,93,100,105,100,104,94,103,91,102,99,98,105,97,103,112,92,88,99,118,87,109,112,91,104,92,99,66,106,99,99,98,103,100,101,99,102,96,93,106,93,101,104,109,99,94,92,98,94,93,100,106,97,101,102,91,107,108,110,76,105,100,97,93,107,102,101,108,118,99,105,103,96,101,92,116,99,112,110,100,85,101,102,108,97,94,108,95,102,100,93,93,100,96,95,88,97,91,104,98,104,99,108,106,103,99,99,86,100,100,87,94,112,109,96,117,98,100,101,101,113,94,107,96,98,106,97,111,102,102,110,100,110,101,106,100,105,110,102,96,109,85,101,95,101,81,91,103,100,109,100,105,100,111,99,91,101,100,95,111,97,106,112,101,96,106,104,103,92,92,103,109,86,104,97,106,101,97,103,103,105,91,104,110,104,96,98,91,95,106,100,102,106,100,104,103,99,104,102,97,108,101,99,101,94,104,103,99,99,105,98,90,97,105,100,93,111,93,94,111,106,107,100,103,107,92,107,92,99,102,86,106,97,98,109,109,96,97,99,104,104,102,111,99,93,112,96,106,100,104,96,101,92,105,102,104,95,96,95,87,108,108,94,93,107,103,104,113,97,90,105,116,88,91,109,95,106,91,105,101,90,102,106,96,94,107,103,103,108,106,106,105,95,105,98,111,103,102,100,115,92,112,97,95,104,116,99,103,107,113,102,100,97,99,105,110,108,91,97,104,92,86,105,82,105,115,104,104,101,107,124,99,108,98,97,115,98,101,107,102,97,120,101,108,109,95,94,110,92,91,98,100,102,90,94,111,100,96,104,94,103,106,103,99,88,100,98,101,100,102,88,102,93,103,104,98,85,99,98,99,81,108,106,100,106,112,103,109,111,99,93,105,90,104,113,101,102,103,98,108,107,117,86,104,106,106,99,109,94,95,96,97,107,92,104,99,111,105,91,107,109,94,92,114,98,92,97,114,99,96,120,93,123,105,96,121,99,72,99,104,100,108,92,97,103,111,109,103,93,92,100,103,77,101,107,110,102,94,103,105,106,90,85,86,116,95,103,109,127,104,116,102,101,105,103,74,99,115,100,91,101,84,105,110,99,107,107,97,110,97,113,101,96,110,94,97,110,91,112,100,93,98,102,104,106,103,99,104,102,101,94,95,101,94,100,100,106,111,98,101,104,106,105,109,98,112,96,107,113,111,108,99,103,100,100,99,92,87,102,103,78,105,102,98,107,95,100,98,102,107,98,103,91,102,106,102,107,120,103,101,102,110,91,102,96,90,101,116,100,106,100,142,107,92,96,108,113,102,98,100,108,113,97,94,120,101,89,87,95,96,98,112,84,108,102,99,100,104,112,110,113,104,88,98,112,107,98,91,97,102,105,102,105,95,106,97,91,110,100,109,100,92,95,96,101,92,103,104,101,101,89,86,101,91,91,113,100,105,112,97,86,99,97,113,104,94,105,106,109,103,102,103,104,96,106,107,93,110,106,86,98,103,93,91,102,98,96,88,102,110,102,110,113,131,106,93,101,98,103,99,99,98,103,103,92,105,96,114,106,108,108,111,97,97,104,95,101,103,114,97,108,113,90,100,102,106,97,104,93,110,102,100,116,99,100,104,101,95,108,112,92,98,109,113,117,95,87,101,109,90,105,101,70,101,101,108,102,111,103,110,99,112,92,114,95,82,108,99,97,97,102,103,102,101,103,97,109,105,114,102,106,94,95,103,105,105,107,105,95,99,102,106,114,96,102,102,97,97,103,95,112,100,91,98,95,91,92,96,112,98,98,95,107,105,102,105,99,95,98,98,101,92,97,96,86,99,104,99,123,113,118,105,113,117,94,105,110,100,101,91,103,95,110,112,113,103,98,103,99,103,99,111,100,99,102,101,99,102,91,105,108,93,101,106,107,102,98,100,96,108,102,101,107,116,95,101,96,104,109,114,112,99,105,104,94,94,114,114,100,98,92,97,113,99,96,108,104,108,102,103,91,102,114,95,100,107,110,108,97,102,96,98,95,100,105,111,111,102,101,105,101,100,108,104,105,77,104,105,97,100,107,106,100,96,100,94,113,117,105,103,92,76,99,91,106,97,97,100,98,108,105,89,97,90,111,99,99,94,96,98,103,88,110,79,105,106,109,94,102,107,103,91,106,111,91,100,96,96,97,117,103,106,112,109,101,91,107,112,105,84,107,102,101,101,103,102,99,93,98,101,88,102,102,114,104,95,98,100,117,110,101,97,112,97,107,108,98,94,100,104,100,92,97,100,95,105,104,98,96,100,96,98,98,95,99,100,94,94,114,112,91,100,101,116,102,109,110,109,105,103,104,108,109,88,111,94,110,109,113,98,91,117,92,94,99,99,102,103,104,100,104,101,105,98,97,96,102,100,106,104,102,105,96,102,115,106,93,88,102,113,103,84,105,104,97,109,117,101,101,106,98,98,112,104,116,107,106,99,107,93,96,92,124,86,101,103,94,108,99,88,112,98,102,103,109,110,96,102,117,101,107,102,98,108,102,98,88,105,107,104,111,105,101,98,102,103,101,101,109,98,101,99,90,92,107,109,99,106,93,94,92,107,95,93,96,95,104,105,100,85,101,95,109,103,98,109,89,106,105,111,100,102,107,97,99,91,93,84,103,90,105,105,109,101,95,111,102,100,108,88,93,104,107,95,101,108,108,109,99,115,99,100,98,112,111,94,98,90,106,116,92,113,108,106,93,91,106,103,109,108,94,109,96,105,102,102,111,101,106,105,99,106,117,100,106,101,91,108,101,95,104,96,91,98,98,102,111,129,97,102,99,92,112,104,96,107,101,103,104,98,96,99,112,105,92,107,105,96,106,111,112,106,104,117,101,91,112,102,101,108,89,96,98,113,100,109,109,101,107,95,103,108,110,112,89,105,102,95,104,102,102,98,88,92,99,76,104,104,105,115,95,102,102,115,99,118,97,101,95,104,97,97,98,117,110,99,108,92,108,100,105,103,131,78,108,117,104,95,98,95,94,98,99,92,96,99,101,101,112,93,98,99,87,106,97,111,101,106,110,94,71,106,95,108,91,103,103,86,94,105,105,96,111,88,97,92,99,116,103,105,100,81,99,114,103,105,106,107,103,102,95,102,109,113,105,111,96,104,97,105,103,88,102,70,122,102,101,99,111,99,95,100,98,96,101,100,95,106,93,87,95,91,104,107,97,107,109,99,107,105,106,96,95,81,96,103,98,96,102,95,93,97,95,112,104,100,101,103,102,102,94,100,88,109,106,102,83,97,113,98,100,108,100,103,109,101,105,91,96,117,94,99,99,102,100,95,102,107,107,104,76,93,110,90,91,93,98,118,102,106,97,98,86,110,100,105,101,101,105,117,106,103,75,85,98,104,100,106,105,84,93,104,99,128,103,94,101,102,93,105,99,116,102,113,100,100,103,99,101,98,104,90,83,95,97,99,101,103,91,113,99,91,100,107,99,106,127,105,102,92,101,102,105,105,107,101,98,102,109,107,102,96,94,98,93,102,113,91,104,88,108,115,101,95,104,99,79,105,103,106,97,101,100,98,99,102,104,96,105,87,109,87,107,97,99,97,98,91,102,102,95,96,94,100,101,96,92,102,99,104,102,104,101,95,114,113,100,101,99,104,106,104,95,98,103,104,102,104,106,99,92,97,103,106,102,98,115,95,105,109,94,117,111,107,108,105,108,111,66,96,86,94,109,100,107,95,96,98,104,94,105,99,92,111,99,100,104,97,99,105,97,97,103,102,109,98,92,110,101,93,107,106,115,96,111,99,94,103,98,93,103,105,107,100,95,110,100,117,102,87,109,102,103,107,104,126,109,101,104,93,95,102,106,98,99,103,95,93,95,102,104,99,104,85,106,110,102,102,102,106,106,95,106,93,87,112,89,100,91,105,105,101,106,101,108,104,94,98,101,108,88,88,106,100,103,103,108,105,105,111,97,87,104,95,104,110,101,93,105,95,96,106,98,91,95,100,107,87,83,105,106,102,100,104,98,92,93,97,101,109,105,91,107,102,110,96,106,110,109,107,106,91,109,99,107,104,98,103,108,98,104,102,107,94,93,101,103,114,90,101,101,104,113,101,106,95,105,110,95,99,95,104,108,93,106,92,97,98,100,96,103,105,100,104,100,100,100,103,110,103,110,104,105,98,88,95,100,99,103,99,103,106,100,94,97,102,101,100,95,102,88,113,100,106,109,97,98,102,107,94,95,99,100,100,116,102,105,104,116,113,104,98,97,90,99,109,104,105,92,101,88,100,111,94,100,98,90,94,99,88,101,97,99,109,96,103,97,88,90,98,115,99,120,107,95,102,124,99,100,106,92,95,103,95,90,91,94,105,112,94,93,105,96,85,95,113,98,90,108,102,106,99,98,96,109,98,99,90,110,113,97,102,97,109,88,109,99,92,102,83,104,102,91,97,99,104,107,106,97,99,107,106,106,100,102,117,94,98,81,110,92,102,106,101,101,96,100,94,114,95,110,94,105,88,106,108,98,102,96,100,100,83,99,96,98,93,115,94,109,95,101,84,94,109,109,106,86,103,84,104,96,106,87,87,101,98,97,96,102,93,105,103,108,96,100,93,98,97,96,108,92,119,109,105,98,99,103,103,104,95,102,100,105,99,112,88,109,98,96,105,109,110,103,87,110,97,106,111,102,102,100,101,95,93,99,92,86,103,90,102,109,108,114,92,98,83,94,99,88,90,108,94,110,97,100,90,99,99,113,96,82,110, +411.57281,104,92,98,91,99,88,99,97,106,95,115,96,100,102,114,87,100,97,101,101,95,116,92,94,96,107,93,86,102,107,91,103,106,111,105,109,113,95,104,102,79,91,95,84,111,112,94,98,107,104,92,92,108,113,101,96,100,109,111,90,85,101,119,90,99,112,104,96,100,100,98,97,90,106,113,105,94,96,98,92,92,95,91,88,97,105,104,107,102,111,88,101,90,96,100,112,123,92,102,109,105,95,113,104,106,104,99,96,99,92,90,101,97,92,89,86,97,100,104,99,99,95,103,104,93,97,91,95,101,103,105,104,97,104,91,94,109,102,101,96,84,117,90,97,99,96,101,98,108,97,113,103,97,97,86,89,100,101,103,105,97,102,117,116,91,91,103,111,94,114,87,104,100,99,103,112,99,97,95,95,94,101,96,109,101,109,102,98,98,87,101,98,92,101,97,106,100,103,103,89,102,104,108,100,95,101,109,109,102,95,90,103,101,105,91,91,115,103,91,92,104,88,87,92,118,103,100,105,101,117,103,95,97,92,93,101,100,88,94,106,98,102,101,102,98,100,98,101,100,97,107,101,97,97,99,90,99,100,86,84,99,113,96,97,100,123,106,95,104,98,95,104,101,112,103,105,95,92,100,96,82,97,98,90,108,97,102,105,103,104,104,105,99,110,110,99,101,107,107,99,83,108,98,100,88,104,103,91,99,91,105,107,108,103,105,95,105,111,107,106,101,95,124,98,96,92,98,82,109,99,106,89,92,111,111,104,102,88,105,103,113,111,82,90,112,104,105,103,94,103,90,102,99,99,99,95,102,94,94,95,106,103,99,94,95,93,103,103,96,113,108,103,96,96,92,111,101,99,94,99,107,99,99,95,92,100,86,109,103,99,100,88,93,103,97,93,104,96,104,97,92,97,102,99,85,99,94,102,91,98,94,100,94,108,108,94,92,108,115,108,107,93,102,107,91,95,109,109,104,104,85,101,109,103,120,104,90,118,99,103,98,94,80,100,101,95,95,97,103,84,97,106,92,108,93,87,97,111,96,95,94,98,99,105,93,99,108,102,100,99,99,107,109,96,96,99,102,103,112,118,95,98,109,88,100,89,94,99,104,69,109,101,100,91,102,91,99,84,93,100,107,97,105,110,98,110,89,104,98,94,111,99,110,97,100,109,98,100,102,99,95,91,100,99,100,95,104,103,91,91,97,97,107,100,109,105,106,107,102,107,95,104,106,103,104,99,94,103,63,73,107,99,87,107,103,91,100,103,89,103,92,88,99,103,110,107,106,101,101,109,98,97,101,110,100,102,99,104,96,111,106,97,103,90,91,104,107,113,110,105,135,107,99,84,103,115,101,100,99,98,107,104,100,105,93,99,114,102,99,99,99,90,102,98,104,89,100,101,103,99,103,105,103,102,106,99,103,106,110,103,103,99,97,101,100,99,108,91,112,100,100,114,103,109,91,90,91,86,80,106,93,109,103,95,89,90,114,99,103,97,99,102,102,100,91,106,101,95,103,102,100,102,114,108,93,99,96,89,108,99,103,90,110,84,95,94,95,77,96,111,94,103,86,94,100,102,111,94,97,104,95,96,99,87,98,109,104,91,103,100,106,97,93,109,98,66,90,101,92,111,94,94,107,94,90,83,102,105,103,98,97,101,103,87,98,106,110,94,118,89,118,105,91,102,99,100,109,109,105,81,104,99,98,109,107,97,96,96,87,91,95,108,111,91,90,100,92,98,108,102,103,100,99,120,102,105,93,103,102,105,98,83,106,99,100,88,103,104,98,105,94,106,96,109,98,103,102,100,96,99,109,101,100,100,111,89,109,111,115,97,96,91,105,103,102,103,86,100,96,101,94,104,99,110,103,96,95,96,104,87,98,105,115,102,96,112,102,101,97,109,102,97,103,102,104,92,97,105,95,94,108,98,93,94,93,95,103,111,95,99,94,100,96,98,101,92,85,103,122,101,96,110,100,131,111,90,93,121,99,96,91,91,98,105,122,104,100,106,101,105,93,113,103,104,105,99,98,95,93,84,103,85,106,92,101,85,101,99,104,105,103,108,96,106,113,93,97,92,88,99,102,112,97,83,101,99,97,99,115,102,106,108,109,107,98,107,81,96,110,106,99,92,99,115,100,99,93,95,110,96,104,127,104,106,95,97,93,108,109,113,109,95,108,95,99,104,111,96,101,104,91,104,109,97,92,94,98,98,91,110,97,96,100,90,90,89,105,101,95,93,111,105,101,93,95,110,106,97,107,104,86,61,98,90,84,99,101,102,96,101,97,90,82,96,103,99,99,94,105,102,97,99,89,101,100,100,109,104,105,101,105,99,106,104,102,81,109,101,92,98,114,98,105,95,95,119,103,108,94,101,87,110,104,94,97,108,91,92,92,101,88,109,99,90,70,99,101,97,103,96,95,104,104,111,97,107,94,94,87,95,104,112,108,93,104,110,94,102,99,97,108,109,103,108,100,87,108,104,102,113,103,100,91,87,108,102,86,100,105,73,97,116,97,102,105,94,87,96,110,104,102,93,109,96,95,107,96,103,105,91,104,89,97,102,109,95,82,98,103,106,94,105,91,113,96,96,101,134,98,109,100,97,108,108,97,99,104,103,105,112,111,99,117,98,98,111,106,98,106,84,91,95,108,104,96,93,101,89,108,108,104,97,101,95,128,104,109,89,104,109,95,110,100,106,96,119,108,78,103,108,103,108,102,97,113,114,102,105,102,110,109,117,98,78,102,107,98,99,100,91,99,116,109,101,87,94,104,106,90,99,111,101,106,101,100,107,108,96,108,109,103,117,110,137,105,98,115,108,103,104,102,101,112,100,99,101,102,107,97,105,97,91,98,99,112,105,107,88,104,110,97,97,111,113,106,85,117,100,99,102,101,116,115,93,104,105,106,102,95,99,83,108,107,98,96,109,99,100,109,99,97,103,101,105,92,107,101,105,91,110,99,98,108,103,102,104,102,99,100,96,105,104,101,102,99,99,105,89,108,99,95,98,98,107,109,108,77,91,104,105,92,105,101,107,113,79,109,108,102,103,105,90,103,109,103,94,98,106,102,112,95,103,111,91,118,99,96,106,109,100,97,100,100,107,99,101,93,88,107,92,103,104,103,102,106,96,106,105,102,112,108,97,105,101,106,97,104,103,108,99,101,104,99,110,110,87,93,93,98,102,98,109,99,102,98,99,89,110,94,104,104,109,75,100,105,87,105,92,104,97,105,124,106,106,101,108,96,106,100,94,98,109,112,95,110,102,94,96,98,99,95,110,109,102,97,109,82,107,96,99,104,107,97,99,112,104,99,87,100,95,106,105,102,90,107,101,119,82,114,114,107,109,73,96,96,108,105,96,107,91,99,105,86,99,102,98,114,102,74,100,93,97,100,104,99,116,126,109,104,102,104,101,105,112,98,102,92,102,104,96,99,99,105,101,93,91,105,77,104,97,110,96,98,95,92,112,95,98,106,106,116,104,85,106,108,102,93,102,102,103,101,105,104,106,102,101,108,103,104,114,88,108,101,110,105,96,85,98,102,106,102,94,90,98,99,99,98,110,109,108,94,103,91,94,105,80,96,106,99,98,94,101,96,106,92,96,105,101,105,104,91,105,99,102,84,106,112,102,105,108,82,101,98,107,104,104,102,103,92,99,106,116,97,96,105,84,113,98,85,105,100,96,90,100,101,95,95,102,105,104,99,104,97,120,110,101,101,83,96,101,107,92,97,88,98,116,91,108,87,99,106,87,105,104,107,110,99,98,103,105,88,101,88,102,107,103,110,102,99,116,108,102,99,103,103,88,92,99,89,107,88,104,93,107,105,99,104,103,97,112,95,97,98,123,92,82,102,96,106,94,96,92,101,96,99,100,90,101,87,97,113,96,60,80,99,92,97,102,108,96,94,87,106,96,100,117,112,102,107,93,99,97,125,104,92,104,112,97,91,103,107,107,88,90,107,89,92,106,103,115,97,100,97,98,100,98,99,98,109,101,101,82,103,92,102,87,98,111,98,103,107,103,101,105,110,104,108,112,101,117,102,106,101,105,102,100,97,104,97,85,113,99,101,100,115,98,87,102,106,95,116,101,99,102,100,100,91,96,106,110,94,100,94,96,97,97,108,103,90,103,86,91,97,93,107,98,91,98,105,108,101,98,103,99,104,108,111,132,103,103,120,103,96,106,89,90,112,93,93,98,100,98,108,87,100,90,104,95,107,97,99,102,103,103,104,94,98,99,113,102,98,100,120,122,95,99,95,99,110,95,106,97,105,126,108,92,106,104,105,99,108,99,103,101,114,99,96,103,105,112,111,87,106,94,105,102,105,91,94,100,94,112,103,120,112,105,92,118,94,107,103,106,101,91,97,90,83,100,99,93,85,82,97,101,104,124,93,98,102,103,107,113,91,102,90,102,120,98,102,104,90,111,113,113,100,95,106,102,99,95,100,104,83,98,101,103,121,107,96,93,104,107,103,109,98,92,107,92,98,94,101,108,99,85,96,108,108,114,103,104,106,105,92,108,97,101,98,75,98,92,99,109,99,91,99,106,106,105,91,93,92,94,81,115,113,105,99,100,86,96,104,99,104,103,91,116,101,100,99,109,103,74,101,109,96,86,99,103,94,102,91,104,94,109,103,98,99,85,98,100,101,105,100,90,95,108,95,95,100,110,87,136,110,107,107,98,108,92,98,101,102,99,94,99,114,103,106,83,95,93,103,96,106,97,98,104,92,102,98,105,85,106,98,98,100,78,95,82,108,87,100,100,87,98,101,116,88,106,94,105,114,106,102,97,104,90,95,96,103,102,97,113,107,100,96,115,90,110,98,109,111,107,95,88,107,92,100,117,113,98,117,100,99,85,96,92,99,102,108,82, +411.71298,93,101,92,98,93,101,120,123,106,106,97,110,77,102,120,103,103,91,96,107,111,115,87,108,102,101,96,94,91,105,104,96,100,109,108,102,83,90,107,100,92,110,81,99,92,100,95,104,91,107,98,104,114,90,103,91,92,95,115,101,98,104,106,89,111,91,103,98,95,102,100,112,113,99,87,106,65,102,97,85,95,101,98,101,100,87,106,104,100,99,109,102,93,100,102,85,88,102,105,84,82,108,101,106,99,102,97,95,98,102,105,99,95,96,97,102,95,103,96,106,108,71,97,102,103,102,103,105,99,107,90,105,98,109,108,103,106,93,92,100,114,114,96,107,98,104,100,99,93,91,106,90,113,98,92,105,99,101,106,88,110,97,101,107,112,97,94,102,108,90,94,103,90,99,95,103,112,105,99,111,91,94,106,106,99,104,122,102,102,98,118,100,98,106,92,106,114,94,95,103,108,96,101,104,112,100,98,108,109,108,99,80,100,117,96,106,108,104,111,98,81,93,102,98,103,96,93,95,108,95,83,91,92,102,108,112,108,103,101,91,89,110,98,109,94,103,99,95,105,105,101,98,95,108,88,113,99,112,95,101,93,103,102,110,95,108,100,103,102,110,96,109,106,77,111,103,102,111,102,95,98,89,108,98,99,98,95,99,99,110,100,89,103,99,109,107,105,102,98,93,96,91,101,101,101,98,106,101,98,112,90,111,94,117,101,90,100,105,90,103,95,95,99,99,103,95,121,98,99,102,99,101,104,101,109,104,105,100,102,99,103,94,95,104,111,91,98,101,110,87,95,100,89,105,108,99,109,108,109,94,96,104,110,97,93,104,117,104,98,98,101,96,113,98,119,100,99,98,99,99,87,99,89,105,95,102,88,92,102,93,107,90,99,97,93,99,96,102,117,90,97,86,100,101,119,109,97,96,91,101,98,90,98,105,107,85,99,98,101,106,97,105,103,106,98,104,95,93,99,95,104,100,82,97,105,107,106,95,100,98,94,107,90,87,89,96,88,88,99,117,99,91,108,104,97,104,99,98,103,96,94,95,90,99,109,96,94,103,97,92,104,106,102,104,100,103,63,109,104,94,86,98,105,99,104,91,93,102,93,99,101,100,103,115,96,90,101,99,90,99,102,103,104,96,96,99,100,95,107,103,88,103,87,109,102,107,111,104,98,93,104,105,103,97,103,95,107,98,102,93,104,83,108,101,100,132,99,92,104,106,91,106,87,104,99,103,106,95,96,109,102,97,105,107,87,93,101,86,112,89,86,99,103,93,104,98,94,96,105,96,89,107,106,95,102,107,103,101,101,105,103,103,99,97,105,109,103,96,101,100,100,94,94,100,106,113,97,101,99,104,105,102,111,93,102,89,94,107,91,101,101,98,98,90,103,106,99,103,105,95,104,95,98,94,91,90,94,91,111,102,101,98,105,98,101,109,90,94,101,139,105,114,101,103,100,99,105,107,102,97,101,98,101,104,98,117,103,110,104,98,98,106,105,103,99,68,115,105,107,102,101,108,98,101,96,99,101,100,113,103,104,99,105,107,116,90,105,101,93,105,101,105,87,112,102,104,102,121,109,100,103,101,98,94,97,91,97,101,99,100,97,86,97,105,85,110,106,87,98,100,97,112,107,102,101,94,114,105,91,102,100,96,101,111,105,86,95,96,104,99,103,89,107,104,102,102,103,94,110,104,116,100,103,95,108,105,106,100,102,92,99,99,97,101,92,97,96,114,98,95,95,99,82,95,93,96,110,110,99,91,105,96,99,97,87,109,108,86,84,107,102,100,105,102,98,101,99,102,99,90,106,99,99,94,94,112,107,91,115,120,106,104,96,99,108,111,90,94,110,95,100,111,107,96,104,104,80,99,98,110,102,106,109,106,97,101,96,100,94,110,91,85,95,112,97,94,102,87,97,99,103,96,89,97,116,96,101,97,104,102,101,105,94,92,102,101,93,103,102,104,97,96,102,107,105,97,91,105,116,96,82,106,96,88,102,97,96,112,100,105,99,109,99,104,104,99,112,100,102,101,95,109,99,102,87,98,103,102,95,103,100,111,104,97,94,102,97,106,97,100,93,93,115,111,103,97,94,99,110,101,93,96,114,110,95,91,101,91,103,82,103,104,98,104,102,90,107,97,103,98,99,95,113,116,109,109,108,113,99,98,102,103,89,104,102,99,76,105,108,102,98,113,122,99,84,109,97,100,102,79,92,111,90,108,104,98,87,102,112,103,99,95,104,100,92,106,95,106,99,105,90,100,89,94,113,99,95,104,92,112,97,105,108,109,102,98,96,84,97,106,94,100,104,100,100,109,112,101,85,97,108,99,104,78,104,89,97,107,97,89,110,90,98,132,101,106,91,114,93,101,114,101,96,99,105,106,106,91,89,94,104,98,97,101,99,109,106,102,114,95,93,103,91,106,103,99,102,103,97,109,104,96,91,108,106,98,93,96,95,102,108,97,110,89,91,89,105,98,87,109,94,95,101,93,91,109,94,98,103,97,97,122,96,102,121,95,102,98,87,105,97,99,112,98,99,102,106,90,99,88,124,102,103,97,91,101,95,98,105,105,110,98,93,105,102,108,93,114,105,108,116,104,99,101,108,102,103,104,88,102,107,97,97,104,105,109,105,100,98,63,93,95,101,94,97,93,109,113,109,97,103,109,99,88,126,103,105,108,104,104,108,105,105,132,103,102,95,100,120,113,104,95,101,100,87,100,102,98,100,95,105,100,102,117,104,100,109,116,95,98,104,111,111,99,99,120,104,102,105,108,98,100,100,106,109,99,111,94,96,102,92,96,120,92,90,74,99,98,96,91,102,106,113,106,95,97,103,103,102,109,103,106,102,100,102,97,109,95,87,108,108,100,99,105,93,104,95,96,101,99,105,109,111,104,106,95,97,103,122,90,99,102,106,87,92,102,104,102,109,106,99,99,98,112,96,100,98,103,98,100,114,100,105,101,99,109,92,105,103,98,106,105,100,64,103,86,105,83,103,95,107,89,95,113,117,92,108,103,94,94,96,98,99,97,98,100,102,75,106,105,101,101,93,116,103,102,101,93,87,98,94,106,104,103,108,91,108,90,99,111,95,116,102,111,102,93,110,107,109,100,98,96,75,106,102,103,110,97,104,98,95,98,102,99,104,123,100,103,114,100,106,102,96,98,96,106,99,104,102,106,100,106,99,104,101,89,98,93,100,110,104,89,100,93,104,88,97,105,99,88,101,108,93,108,119,109,93,107,95,102,102,109,108,109,97,103,120,100,113,101,103,88,103,72,84,112,97,107,112,106,106,110,100,102,110,102,91,107,108,95,95,101,95,101,102,104,104,119,98,102,107,99,94,103,105,94,95,99,107,69,85,98,102,113,96,97,103,98,110,91,98,123,103,80,96,95,101,98,102,103,83,101,104,104,85,102,98,105,87,107,96,113,98,93,75,90,105,99,100,85,95,109,96,108,98,107,95,99,107,94,105,103,98,107,96,105,93,106,91,101,103,90,105,91,94,103,96,111,112,103,97,92,96,91,93,102,88,101,107,104,107,106,91,102,101,89,66,93,106,70,95,89,93,99,103,89,107,102,96,104,95,135,101,98,99,96,102,105,108,86,104,93,98,85,95,99,104,100,99,109,104,97,99,105,97,100,95,106,103,102,107,111,86,92,101,109,104,95,88,108,90,86,112,98,103,95,111,106,105,91,94,104,73,93,101,99,95,98,108,86,97,95,100,106,93,95,104,105,99,113,96,81,99,101,102,96,111,103,98,95,99,110,93,114,99,98,110,100,101,104,100,94,114,91,98,99,96,105,99,91,97,109,103,109,113,104,115,95,104,99,104,109,93,103,105,106,95,92,94,104,100,100,96,102,94,96,101,97,96,119,104,102,92,109,98,109,99,92,108,95,94,97,104,97,98,104,108,102,85,100,102,97,97,113,99,106,91,103,96,91,108,96,95,104,97,104,106,100,88,109,106,114,93,108,107,100,96,94,83,96,134,103,106,102,98,110,102,106,98,115,102,100,96,103,107,114,98,100,115,92,106,100,107,102,94,98,85,102,105,94,113,109,96,109,94,111,100,120,107,103,103,108,94,110,97,99,108,96,105,107,102,91,92,103,105,103,103,104,102,109,91,106,94,91,98,104,101,97,105,96,105,102,99,106,110,111,109,100,106,104,101,105,81,105,105,101,95,95,109,107,116,98,100,99,93,92,98,104,112,110,78,93,99,85,97,91,96,104,107,106,99,107,95,98,103,95,98,93,94,100,102,105,105,102,117,101,98,101,106,95,80,99,106,103,102,92,100,100,97,103,99,95,97,98,95,95,104,98,101,117,91,102,101,99,94,95,100,101,123,103,94,103,95,91,100,94,107,98,103,91,108,98,111,105,94,108,93,96,100,102,116,101,113,106,98,98,101,94,95,103,97,93,101,97,87,97,104,102,106,100,95,97,95,90,103,103,102,96,116,103,100,112,93,104,97,96,102,102,106,103,109,106,92,104,101,105,95,114,106,92,99,113,101,91,112,109,102,101,100,109,88,105,105,98,105,113,94,99,95,98,107,107,103,94,96,98,99,99,115,98,98,110,90,98,78,101,98,103,109,105,100,104,99,102,105,94,107,97,106,117,107,104,103,98,94,102,110,105,102,96,104,97,117,96,102,106,113,105,108,112,102,105,111,100,108,103,94,107,99,98,91,98,111,113,104,98,91,88,111,100,111,109,102,112,87,73,97,80,97,98,101,96,109,89,104,112,94,100,99,99,97,91,96,113,98,97,91,104,97,107,111,99,92,93,103,82,91,92,83,100,104,106,93,90,93,88,94,88,111,91,88,95,101,96,98,93,113,93,110,93,107,108,94,81,99,100,89,97,100,93, +411.85318,102,97,92,105,58,86,106,103,84,104,100,79,93,102,115,91,100,103,97,112,94,94,108,84,101,98,95,93,96,120,91,102,95,91,108,95,108,107,100,94,109,68,96,102,114,102,101,102,99,94,90,106,104,90,106,83,105,93,101,91,101,89,96,83,90,112,96,106,95,87,98,94,90,108,90,109,107,95,84,108,95,102,107,95,98,94,96,83,101,92,102,99,110,91,93,109,97,91,105,96,103,105,100,94,103,95,93,86,105,105,105,103,102,102,92,92,86,103,104,117,123,107,90,105,83,117,112,94,109,97,97,106,96,104,98,102,100,87,100,109,100,106,103,97,91,101,110,87,94,86,98,102,98,96,91,106,97,88,115,79,99,90,89,105,113,95,94,99,109,95,97,97,96,110,105,106,102,98,110,109,100,106,100,99,102,100,104,94,105,104,106,97,101,106,101,90,98,106,105,101,95,109,87,101,88,97,106,97,102,104,93,100,95,92,105,98,95,97,91,94,96,108,100,118,99,100,97,102,100,100,102,95,134,110,108,103,100,102,113,106,100,96,104,96,104,92,96,106,92,91,101,101,93,110,106,97,97,87,97,102,101,93,107,95,101,102,109,86,105,103,98,113,103,88,110,107,101,108,103,106,93,103,104,98,98,100,105,106,102,99,102,95,106,101,103,101,106,92,91,108,91,96,103,101,109,95,91,94,102,96,97,104,102,91,96,92,95,109,111,78,102,100,112,108,95,101,106,100,99,93,108,91,103,91,102,107,107,91,100,100,95,86,101,96,97,92,105,95,99,106,104,105,116,108,103,91,109,113,106,95,104,95,100,91,104,83,105,108,103,129,106,110,97,102,104,91,95,102,98,102,99,112,97,105,92,92,107,99,106,107,64,98,92,103,106,101,106,109,105,112,98,107,99,102,97,97,93,101,108,101,96,63,83,98,109,114,100,105,92,101,108,100,89,105,96,98,92,99,91,101,99,106,99,91,101,103,98,100,103,102,109,103,103,99,98,117,117,90,98,103,104,95,103,110,103,102,99,94,100,110,92,98,106,107,93,105,104,91,104,113,109,113,103,102,101,97,88,104,114,87,96,108,100,107,106,100,90,88,99,102,99,105,95,105,101,101,96,96,107,105,103,97,96,90,95,96,90,103,95,101,115,98,92,93,114,95,107,97,100,97,104,102,100,106,98,103,108,92,107,96,96,102,92,109,86,92,99,96,92,103,105,82,102,88,108,95,109,110,102,106,96,108,102,103,93,94,103,100,92,93,100,91,101,98,101,108,102,98,101,110,62,99,107,101,95,99,102,97,102,99,98,97,98,101,103,103,98,99,100,95,108,105,91,85,98,128,94,86,108,100,108,100,103,98,93,99,99,107,106,102,96,92,94,99,95,105,101,95,111,99,105,95,79,109,106,111,95,97,90,103,104,91,95,108,98,105,100,102,103,99,106,102,105,89,105,94,101,104,99,100,90,113,99,97,108,102,108,102,106,101,106,102,105,102,80,111,98,67,110,102,101,92,94,98,106,102,101,105,90,98,107,98,86,88,99,101,95,106,104,101,109,107,94,101,102,92,99,99,102,89,97,99,115,112,113,103,123,101,93,92,91,98,95,97,84,99,94,96,101,104,97,95,112,94,93,90,93,105,108,103,127,94,97,91,95,100,100,98,100,108,102,97,94,100,95,113,103,98,122,96,102,99,100,97,75,112,98,98,110,86,103,118,92,90,94,91,103,112,93,91,102,108,109,94,99,113,103,113,108,98,98,104,84,99,86,112,107,99,90,121,100,107,97,96,99,102,106,105,95,92,83,98,96,93,114,87,100,112,109,105,109,87,101,92,116,105,101,101,96,95,86,101,103,108,99,104,108,104,103,95,110,97,102,95,96,100,96,82,98,89,101,113,102,99,106,96,112,100,93,101,99,96,112,104,93,112,96,98,92,86,95,101,102,99,105,103,96,102,114,106,100,113,101,99,100,109,101,102,117,103,98,102,102,95,92,90,104,97,106,93,102,95,104,132,100,98,107,105,105,96,102,84,103,92,91,95,98,98,106,108,98,108,109,103,113,94,87,106,101,90,101,93,108,106,107,93,101,110,104,95,101,103,99,113,100,93,92,95,104,101,95,113,93,87,102,89,105,103,96,96,102,98,95,108,99,94,99,112,102,90,109,104,107,83,109,105,93,96,94,113,91,86,103,98,91,107,97,91,101,108,84,87,98,101,104,103,94,98,93,99,104,97,104,92,92,95,95,95,102,89,107,89,106,95,100,92,99,102,96,103,97,98,89,102,100,107,102,90,102,98,83,97,100,90,106,111,109,94,110,99,87,94,109,103,94,93,101,109,92,94,90,93,76,99,92,105,101,101,105,98,95,99,98,106,103,106,85,102,99,104,95,101,103,99,88,103,98,108,102,101,105,101,96,109,93,106,90,98,103,98,96,108,94,102,97,108,92,94,104,105,97,113,92,99,90,106,101,105,126,108,96,113,97,99,98,111,110,113,101,113,93,119,96,111,109,99,96,97,93,112,94,101,105,76,108,107,101,99,102,96,97,107,95,113,110,98,103,115,97,105,108,101,93,96,91,99,89,113,106,94,104,102,102,89,109,95,98,101,91,98,95,102,109,87,113,90,98,95,107,102,101,99,109,101,86,99,70,94,109,97,100,112,96,111,110,95,110,108,97,108,95,104,99,108,98,98,96,97,101,98,110,103,97,77,99,91,104,103,107,93,110,112,79,105,116,102,108,107,100,102,102,102,87,100,89,103,105,96,112,108,91,104,104,101,110,100,104,108,111,101,102,88,105,102,103,98,118,105,109,102,83,101,104,91,109,100,95,92,103,117,105,87,100,112,103,93,98,101,109,114,100,97,107,107,110,95,88,101,111,106,105,99,101,98,105,100,113,94,116,113,97,110,104,107,109,110,99,88,93,120,109,103,92,102,103,100,108,100,94,104,98,100,95,99,108,118,109,104,103,120,109,105,110,105,99,97,118,102,109,113,105,97,100,107,96,101,98,101,105,104,89,97,105,91,99,108,96,95,127,95,100,103,91,104,105,92,99,102,91,105,101,104,93,99,109,103,97,94,104,99,98,117,106,121,93,98,101,97,89,110,99,94,109,97,92,106,99,95,96,127,99,89,104,109,98,115,97,97,97,96,103,104,100,98,103,87,115,83,113,110,94,98,114,99,99,97,104,91,95,114,101,100,92,95,99,90,106,100,103,113,96,117,105,113,104,98,102,101,81,102,103,101,119,105,99,89,95,95,108,89,109,80,106,103,104,102,99,108,90,102,109,112,106,96,97,93,88,100,103,101,98,100,105,103,95,104,102,104,98,100,92,102,100,108,91,105,85,87,79,94,108,93,106,97,110,95,98,106,97,84,92,101,103,97,101,91,107,99,102,101,90,102,101,83,97,105,105,94,101,99,101,115,105,99,103,91,96,82,105,98,102,104,111,101,108,104,102,85,100,101,96,96,101,99,101,98,108,105,113,91,109,95,96,103,96,99,116,102,105,103,98,102,100,105,94,98,87,90,94,105,103,104,95,110,95,104,95,101,105,94,113,102,99,102,104,103,106,114,94,101,96,98,107,100,105,104,110,112,101,105,96,89,110,106,99,95,106,104,96,92,94,108,91,114,101,104,92,101,100,111,101,95,99,103,102,105,104,95,86,105,90,99,100,118,73,113,106,104,104,86,107,100,102,106,100,106,86,105,71,98,103,101,102,96,95,98,111,97,92,108,102,109,96,102,96,102,97,98,103,108,90,107,94,103,105,108,109,112,99,95,115,82,104,95,101,108,100,110,95,91,90,99,106,91,113,102,112,117,85,114,101,103,100,108,101,100,88,105,91,117,94,105,91,88,107,98,113,101,93,97,99,106,99,98,102,105,99,103,112,98,97,95,116,91,74,106,104,95,98,88,95,88,102,102,88,101,92,98,96,110,107,91,102,97,103,85,111,102,106,92,106,104,93,111,112,104,91,98,108,102,108,103,94,98,104,105,102,98,112,101,106,108,89,93,106,102,94,111,99,93,97,116,101,90,75,89,99,95,102,102,106,107,96,115,104,104,81,101,103,108,102,103,89,110,93,103,91,99,103,98,104,95,98,107,102,88,102,103,111,97,113,105,109,96,106,104,99,93,102,104,108,91,100,104,100,99,99,103,111,109,111,105,101,98,106,105,102,90,95,86,98,112,107,92,132,91,109,115,127,109,95,105,87,83,93,117,103,99,98,95,112,101,106,102,105,108,100,84,99,113,100,90,109,101,94,87,101,95,92,115,101,94,116,97,102,107,95,99,102,100,107,98,94,92,110,89,112,105,108,102,105,107,101,107,103,102,102,103,102,97,100,104,97,102,98,85,107,101,95,97,101,96,98,105,107,97,94,92,93,93,101,102,72,100,87,98,97,106,97,97,103,96,101,100,109,98,104,91,107,92,102,95,92,94,102,109,105,105,98,103,104,101,108,110,112,106,113,90,85,80,102,101,96,105,96,100,95,112,91,104,99,108,96,93,101,115,102,100,114,104,103,100,103,94,100,111,97,103,100,102,99,92,96,105,116,98,109,96,99,110,93,105,109,96,101,90,115,99,99,117,110,94,106,98,108,110,106,98,101,113,98,97,90,106,100,96,97,91,93,94,105,97,98,102,95,101,106,100,106,96,87,103,116,102,102,98,99,101,85,90,91,100,96,100,97,102,106,101,109,110,96,84,108,106,91,96,103,100,92,96,117,75,95,108,104,100,101,107,79,99,83,88,111,103,105,104,96,97,92,87,108,99,85,98,116,97,92,108,97,98,93,107,62,81,99,98,92,99,109,99,112,97,93,102,106,107,96,107,96,122,118,90,90,91,73,98,96,93,104,100, +411.99338,93,100,89,98,91,76,100,90,87,100,93,111,92,101,107,101,105,103,96,100,101,101,93,99,97,99,92,100,89,99,92,91,111,105,102,84,95,89,103,102,90,91,111,98,91,109,91,104,109,77,108,96,105,82,93,96,109,89,107,92,102,93,85,84,108,137,109,99,96,106,112,91,102,99,104,105,90,93,111,96,101,113,100,104,110,106,104,91,106,102,105,104,105,100,90,100,99,100,100,97,96,99,90,108,104,77,106,104,116,107,92,85,108,96,96,97,105,108,100,104,100,101,106,94,82,100,114,97,105,99,108,101,108,98,121,98,98,95,104,102,99,102,95,107,89,99,111,109,105,108,107,96,101,97,93,98,101,85,111,107,102,96,116,101,72,96,94,95,97,100,97,110,94,127,103,85,86,98,99,99,101,103,98,107,95,87,91,90,114,108,107,99,100,102,87,109,102,102,104,99,102,116,109,106,83,100,99,101,102,104,104,104,114,104,98,97,103,104,103,88,113,107,108,100,100,96,99,107,99,114,88,104,103,109,106,107,101,114,91,104,100,99,116,101,98,109,113,117,105,114,100,91,94,106,97,106,92,98,107,105,89,113,98,90,92,108,86,98,92,96,92,105,104,95,108,87,92,97,98,95,96,96,97,131,95,103,104,102,93,109,92,91,107,99,111,100,102,105,109,109,95,102,100,97,95,99,105,108,93,112,94,97,96,105,98,105,113,103,104,105,97,93,104,102,99,102,98,93,116,108,107,80,100,95,112,107,93,97,95,91,104,98,90,105,101,86,100,83,87,103,100,108,102,99,88,91,106,103,92,107,100,94,99,122,103,100,107,104,100,107,109,65,91,101,107,109,111,88,97,97,108,95,106,108,98,102,99,106,98,102,98,84,89,111,88,91,99,106,100,113,98,100,103,90,97,102,72,95,98,95,94,93,107,99,96,104,103,97,111,98,91,100,97,113,98,100,100,100,94,102,69,105,98,106,104,109,99,105,101,105,103,98,109,96,93,94,94,92,94,103,96,96,105,110,99,96,99,83,105,111,97,101,105,96,71,106,101,100,108,107,94,88,93,98,102,85,96,115,101,106,104,106,113,98,94,104,108,129,88,99,99,110,101,102,108,102,103,102,105,102,105,98,99,99,100,92,84,93,101,86,106,89,104,107,102,102,108,104,95,96,102,102,99,101,94,95,96,92,99,109,94,103,107,102,101,103,103,92,99,98,110,96,95,99,106,107,100,95,103,102,96,86,99,102,103,101,113,103,100,93,104,96,90,85,106,97,112,104,109,100,104,97,105,108,97,108,98,106,94,106,108,91,92,102,102,114,111,102,100,95,107,108,109,105,101,103,100,95,107,102,102,120,100,88,91,102,99,118,110,108,104,105,94,94,94,100,94,103,99,110,113,95,105,95,95,102,90,106,109,102,91,93,118,117,97,97,104,106,92,99,102,97,100,101,108,88,75,90,101,113,92,95,98,99,107,107,103,105,96,90,108,96,94,87,91,113,106,95,104,99,102,109,105,91,93,98,98,115,106,95,98,98,101,92,97,95,102,98,103,97,84,102,106,104,92,104,90,116,87,110,105,83,96,102,94,101,101,93,97,97,101,84,102,84,104,96,94,91,100,106,111,108,94,98,98,108,107,88,95,89,99,105,95,98,99,101,109,95,109,90,104,91,98,91,102,101,98,94,100,96,120,96,120,90,102,114,101,100,103,102,101,89,101,95,100,103,91,95,103,88,100,89,96,93,104,91,110,103,99,97,93,97,103,100,98,111,104,108,100,107,99,111,109,97,105,93,98,112,111,103,107,97,100,87,114,97,74,104,99,101,100,109,110,102,99,99,104,103,100,102,100,89,103,99,106,99,115,106,109,114,102,92,100,99,107,98,117,109,99,97,108,103,103,98,108,113,98,95,98,103,99,95,102,107,110,107,104,115,86,105,110,97,104,107,110,102,92,94,111,104,94,98,100,110,106,96,100,91,94,90,92,102,106,110,119,99,84,106,97,99,98,103,94,102,99,110,89,94,105,103,92,102,98,88,98,105,79,91,96,105,99,102,89,97,94,96,96,102,100,106,79,97,103,101,104,102,99,101,104,82,109,108,100,136,95,98,85,105,98,112,107,109,92,97,102,91,90,103,95,102,131,110,108,109,105,96,99,82,100,99,109,106,111,112,102,98,108,93,94,104,97,104,95,109,97,106,101,100,102,95,104,99,91,105,95,122,101,91,101,101,92,95,102,79,103,94,118,113,93,110,99,105,88,100,103,112,92,96,97,100,95,79,107,107,106,101,98,117,106,101,112,97,97,97,107,105,87,94,110,101,95,100,100,96,100,98,101,103,94,100,90,95,97,96,96,87,90,112,92,102,91,94,100,94,112,102,83,93,100,94,97,100,90,93,92,92,98,110,100,94,94,95,102,112,102,113,98,101,96,105,97,117,89,105,95,107,91,96,102,103,89,105,109,103,95,101,82,87,115,92,104,96,98,94,85,116,92,99,112,97,101,111,93,96,95,98,105,108,98,114,106,104,106,127,105,90,93,99,99,91,102,100,99,94,90,112,101,99,100,73,96,100,91,109,108,95,92,100,88,99,115,104,104,98,103,92,99,104,80,96,104,99,124,104,104,99,100,89,95,91,92,105,111,109,103,97,120,88,99,91,106,97,92,98,103,109,107,95,98,92,94,97,109,107,100,107,105,89,105,108,102,99,90,119,107,101,103,103,101,91,97,98,108,100,110,109,103,106,95,100,97,109,87,75,105,95,95,101,90,101,84,98,101,110,104,95,104,102,99,108,110,98,90,93,110,101,100,107,98,106,108,93,109,103,98,127,94,107,87,104,103,105,120,103,99,91,104,99,100,105,102,114,105,92,84,102,105,108,95,102,91,103,100,95,102,116,105,92,109,101,101,94,104,93,97,110,92,89,98,102,96,104,95,117,100,88,95,110,95,85,98,103,95,102,112,103,100,95,102,112,102,109,96,109,103,90,107,98,110,107,102,83,100,106,118,102,99,105,94,107,96,100,98,104,118,106,105,98,101,101,103,109,109,104,100,116,107,91,103,100,105,109,109,103,107,97,108,97,106,97,116,112,93,107,104,94,102,73,86,96,96,109,88,93,99,91,103,108,85,89,88,99,110,94,100,97,94,95,102,94,107,100,102,98,108,109,100,105,106,98,101,110,108,105,98,83,112,116,101,104,116,100,100,107,117,98,98,108,105,95,103,101,99,106,109,75,98,108,101,107,109,104,95,89,105,70,103,97,109,96,112,108,109,103,94,99,101,105,96,108,93,99,90,101,60,111,110,103,97,105,94,100,108,96,101,95,107,101,102,73,80,109,109,93,105,89,99,100,98,102,79,116,84,93,98,103,104,97,95,103,106,91,101,94,104,95,96,103,106,102,96,105,113,96,106,107,106,100,95,96,96,100,103,100,91,101,107,97,112,94,104,97,103,90,101,102,102,105,113,93,102,109,99,95,118,102,109,105,99,101,101,105,111,97,109,96,104,95,98,104,98,105,88,100,103,105,104,109,104,104,104,92,102,100,107,115,105,89,75,97,83,105,105,108,105,76,110,94,100,108,88,95,86,109,105,100,120,102,79,105,94,105,103,94,105,104,100,101,106,116,99,101,105,100,100,105,102,97,102,97,106,113,94,108,96,100,99,88,104,93,117,109,99,115,109,99,98,112,97,95,105,104,97,85,110,109,109,97,105,105,102,87,79,98,96,96,94,95,87,111,106,93,100,101,108,94,98,98,98,107,98,111,88,106,106,92,108,94,101,97,109,102,99,111,101,109,110,99,98,115,100,120,106,107,117,117,109,103,103,104,93,88,92,116,99,110,96,102,95,105,103,90,107,88,109,106,116,98,102,99,99,115,101,102,102,91,110,102,100,98,107,109,118,105,95,92,107,90,102,93,103,102,105,107,100,105,108,105,105,98,97,100,102,104,97,98,105,102,96,108,105,101,83,101,116,107,98,110,111,106,125,100,96,83,100,99,98,98,109,112,106,106,102,98,109,104,100,105,103,102,108,102,106,100,93,103,94,109,101,88,100,95,95,104,102,107,107,104,111,99,100,99,101,88,98,113,104,96,105,95,103,113,108,107,93,91,101,109,104,112,95,105,95,96,100,115,95,105,102,94,103,96,86,95,102,88,102,103,113,104,116,104,98,105,99,104,91,111,109,116,103,97,110,97,104,100,100,101,105,101,94,112,104,112,95,94,97,98,129,115,106,114,108,102,98,99,104,113,102,109,91,112,95,103,96,106,98,95,99,101,80,85,107,104,102,98,94,104,97,95,115,100,107,109,100,95,104,87,107,112,87,113,106,75,105,109,104,105,104,109,107,110,98,112,100,105,113,85,106,103,104,95,100,99,95,110,94,115,89,60,106,107,111,98,86,102,96,100,100,103,107,109,108,111,100,97,101,92,107,99,94,92,83,114,107,106,93,102,96,108,103,102,93,100,104,89,103,93,103,94,109,87,100,75,102,102,101,102,104,97,96,100,91,104,102,90,79,87,112,106,98,98,103,95,107,97,117,111,97,99,115,103,100,96,105,93,91,100,105,96,92,114,101,99,100,102,104,101,82,103,92,88,103,107,97,104,97,70,106,98,99,104,71,99,86,89,100,102,98,98,108,110,120,97,94,93,102,106,101,105,107,98,99,98,91,100,121,97,112,103,102,91,102,98,94,101,110,96,106,98,106,111,106,106,102,106,95,106,92,112,109,96,96,67,97,103,106,107,117,100,97,105,99,99,115,99,101,96,84,115,103,99,101,108,96,106,110,93,104,94,110,107,97,97,98,92,112,109,96,98,92,112,105,130,98,95,105,117,104,103,106,92,100,110,97,93,120,93,108,105, +412.13358,70,101,94,92,89,93,94,95,94,101,86,77,101,101,111,120,94,92,104,91,105,97,98,98,105,94,96,108,106,103,96,101,95,93,99,104,102,100,102,86,92,94,98,98,105,106,100,90,112,97,94,98,75,102,95,96,103,91,111,96,97,95,78,99,105,110,99,91,103,103,102,107,98,98,102,100,87,103,102,99,88,113,99,99,82,94,107,104,97,101,95,95,105,99,84,92,108,104,109,106,92,124,100,91,100,93,109,98,88,83,109,93,82,90,99,82,95,104,95,105,89,93,98,116,100,109,106,103,99,112,88,109,106,94,110,94,93,91,97,104,106,102,101,91,96,96,102,95,97,94,97,94,105,94,84,94,104,102,105,113,95,110,89,103,105,101,113,100,107,99,99,109,91,111,79,105,94,98,105,99,102,99,101,109,97,86,94,102,92,91,97,99,109,102,116,77,102,102,104,96,99,104,104,112,90,97,99,103,122,97,99,91,96,99,97,105,105,109,119,109,98,94,94,101,92,107,96,79,86,91,106,107,103,105,87,99,102,98,87,106,113,95,105,102,91,94,103,110,102,100,96,104,96,95,97,100,97,101,115,97,96,87,108,100,112,106,97,98,105,101,86,92,104,126,83,92,98,98,103,97,95,96,102,98,106,98,96,102,109,103,86,100,105,124,92,112,106,102,113,106,100,89,92,103,78,112,104,94,90,101,89,98,113,96,90,106,100,99,103,87,95,106,105,107,101,97,114,98,91,113,106,100,108,101,110,100,104,103,102,106,100,106,96,89,83,119,96,99,120,97,93,105,99,98,100,97,105,96,94,128,91,107,94,100,102,96,99,106,104,104,85,99,99,105,102,132,88,97,99,103,111,95,104,100,101,101,101,103,103,91,109,90,98,105,98,93,87,104,101,110,101,92,105,98,108,105,100,96,109,105,103,92,113,99,105,103,106,100,102,108,98,103,96,104,99,98,99,99,91,96,93,111,99,96,125,109,99,98,80,97,99,99,101,100,82,77,100,102,86,101,95,100,104,107,96,94,101,90,110,101,110,101,103,73,100,113,90,87,97,96,107,100,97,90,109,91,101,123,105,104,95,91,106,107,86,99,98,114,95,103,97,109,100,100,100,100,94,109,117,96,113,97,98,101,96,109,94,104,95,121,100,101,98,104,102,95,99,93,90,104,99,110,102,105,102,104,109,102,104,94,95,102,102,91,99,102,109,91,102,108,93,113,93,114,103,100,101,105,107,98,93,90,107,108,103,91,105,99,97,103,105,100,100,71,97,102,103,94,115,94,102,100,104,100,109,107,102,100,91,96,110,104,98,93,100,104,107,107,93,101,94,100,97,103,102,94,94,107,102,117,95,101,107,90,104,96,109,104,90,107,95,114,98,100,104,104,109,92,96,91,104,105,71,95,109,92,101,92,109,97,117,91,104,95,93,101,97,102,103,100,102,97,97,103,96,102,99,97,117,106,86,107,108,111,98,101,114,99,102,109,98,106,125,99,93,89,102,96,106,101,96,98,91,94,99,114,109,108,102,99,99,94,101,106,91,96,103,110,110,95,97,109,106,97,102,87,92,104,94,91,87,97,88,91,104,108,103,104,112,105,105,90,97,109,107,104,102,86,103,113,103,103,105,98,105,86,99,92,98,104,112,107,88,92,81,117,90,89,106,101,111,103,94,98,108,104,123,114,114,99,106,95,107,89,100,109,99,86,129,102,96,101,98,99,66,100,77,105,112,100,102,110,100,87,100,96,99,95,106,95,107,98,107,100,102,99,103,96,94,100,102,104,96,110,105,99,110,104,103,118,100,107,99,103,94,88,93,105,103,104,104,109,108,99,102,100,133,104,103,91,110,99,84,102,99,98,106,106,99,99,102,87,87,109,102,105,94,93,95,104,92,96,118,93,94,95,97,109,101,109,96,98,107,106,92,114,101,95,99,97,91,111,106,100,92,99,95,98,105,98,101,96,101,100,95,100,107,99,109,96,94,110,106,83,98,103,105,109,101,99,90,97,101,93,106,106,105,109,77,102,106,103,112,98,91,100,95,101,70,98,102,97,107,104,109,102,91,98,88,98,99,103,66,101,100,101,100,91,107,107,92,103,99,104,98,88,98,80,107,96,104,108,88,92,115,100,113,96,110,89,109,102,104,102,108,82,96,117,102,97,104,103,112,103,101,105,100,95,102,100,92,98,112,103,95,101,92,111,100,98,95,100,95,104,94,92,103,94,75,101,105,95,93,97,101,95,91,107,97,109,104,104,98,96,98,99,100,110,90,116,96,107,92,102,91,93,94,95,118,87,121,107,94,87,101,97,104,102,75,101,104,94,108,99,106,89,95,109,103,114,82,108,99,99,97,108,105,101,97,86,101,123,90,102,99,133,88,87,107,99,100,97,99,97,99,95,98,107,98,96,101,105,95,92,84,97,94,97,96,91,101,107,95,103,104,103,90,75,83,100,103,108,94,96,108,106,96,105,103,98,97,86,107,97,89,102,101,90,101,109,96,102,97,104,86,99,108,103,96,115,102,93,92,80,95,104,93,105,105,94,103,116,99,98,111,99,97,90,100,105,95,100,100,101,107,104,103,96,99,100,80,107,109,95,104,100,99,89,88,102,114,105,96,84,105,105,93,91,113,109,97,97,101,95,102,88,104,98,97,89,101,103,87,97,107,99,104,109,104,98,96,99,108,106,94,102,98,96,100,106,102,96,84,104,93,84,102,96,104,103,103,102,110,115,95,103,111,93,97,98,110,98,95,117,87,104,104,95,107,106,104,95,98,96,98,87,102,87,104,104,102,104,105,102,85,105,110,96,105,102,110,118,102,100,105,105,104,116,97,98,82,100,87,95,105,108,99,104,105,95,101,104,105,109,95,103,105,101,109,102,100,89,92,97,97,102,105,94,106,94,89,95,99,93,100,95,103,86,103,96,104,94,106,99,100,102,106,86,106,99,98,98,103,88,107,115,100,107,101,85,100,105,99,97,107,103,91,107,100,112,100,100,106,101,108,92,103,104,97,95,104,88,100,99,104,87,102,97,99,96,94,100,92,106,115,112,103,95,91,100,103,111,103,89,113,93,103,99,98,81,106,84,94,101,115,101,100,101,87,104,92,89,101,112,89,91,93,95,99,105,92,87,99,101,91,98,103,99,96,101,93,99,83,90,93,100,97,107,97,83,85,87,91,89,92,97,106,103,95,91,95,106,93,107,103,114,105,99,111,85,101,94,109,109,118,94,103,102,87,106,96,96,102,96,101,96,97,103,102,83,108,95,95,107,103,95,92,103,102,99,97,96,87,90,84,110,97,91,97,93,98,93,100,100,84,103,101,98,101,103,93,113,94,107,99,108,109,99,102,95,103,107,102,112,94,103,101,111,115,89,101,93,101,99,101,96,111,97,95,100,94,94,100,92,100,97,108,102,96,103,93,101,93,92,94,103,106,100,107,101,102,105,100,82,106,101,109,106,64,97,102,89,100,120,112,98,102,97,100,91,104,103,94,100,94,104,108,106,94,101,105,101,102,100,98,109,110,102,94,105,105,91,107,98,108,106,100,108,101,97,97,99,96,106,99,104,113,99,102,101,89,98,96,94,101,102,95,96,93,93,95,114,96,99,96,100,113,91,109,101,89,99,99,95,101,102,101,66,102,97,105,103,92,97,101,107,107,96,101,96,87,89,94,107,102,93,106,106,102,100,104,116,87,91,97,100,120,65,99,95,100,124,91,100,107,112,116,96,94,103,102,96,97,107,109,102,107,94,109,98,104,101,102,105,108,100,100,106,111,111,106,88,106,100,95,106,94,96,92,88,94,101,102,92,105,118,84,90,91,98,93,103,101,99,104,110,97,104,102,104,101,93,85,105,101,90,100,85,100,104,97,103,108,98,102,99,108,80,89,102,97,104,104,96,104,103,95,88,87,109,93,93,92,95,115,104,97,109,97,104,97,112,90,103,116,106,102,106,98,105,103,107,96,98,103,98,80,99,99,87,106,101,102,102,99,96,110,94,91,93,95,114,92,102,96,91,113,93,99,107,101,96,96,101,95,108,101,92,94,98,98,101,112,93,95,103,98,92,96,92,84,100,102,109,96,107,112,95,97,114,98,93,101,93,105,101,109,109,100,108,96,96,105,94,101,91,101,96,98,95,91,95,102,98,87,111,107,92,113,96,105,105,93,95,90,101,95,98,115,88,105,83,94,113,96,100,108,101,102,97,93,97,110,97,103,108,105,92,106,93,108,107,106,83,97,91,99,100,108,105,98,98,98,103,91,87,100,99,109,90,96,96,87,93,98,115,93,100,106,97,112,98,102,102,107,76,91,92,110,99,112,108,105,104,93,101,98,111,91,95,95,106,100,99,83,98,104,104,112,99,89,90,96,96,97,108,94,104,100,88,96,98,118,91,96,90,105,102,96,93,105,108,115,98,85,101,90,89,97,89,106,95,113,94,99,66,107,97,94,97,105,101,106,107,107,83,98,89,91,96,94,88,105,101,109,101,88,100,104,94,101,95,113,91,96,97,86,86,91,102,100,99,93,98,98,105,99,111,98,93,99,90,101,92,118,110,101,109,100,99,99,100,108,101,97,102,98,97,100,109,94,90,94,105,95,94,106,102,104,98,101,96,106,99,98,101,107,112,84,109,108,99,80,91,93,104,91,98,96,90,96,100,92,103,94,90,99,89,105,108,104,98,94,95,91,101,103,89,100,119,95,85,103,98,115,98,112,97,93,102,101,91,89,106,94,99,104,97,98,85,109,112,109,92,101,102,105,99,112,94,91,97,90,98,106,96,113,98,96,79,107,109,103,103,96,120,109,96,74,89,107,92,106,97,92,98,97,89,101,92,111,101,97,92,105,102,98,84,94,86, +412.27374,99,96,76,111,84,105,106,110,102,95,108,95,83,97,98,97,94,108,88,109,100,117,103,97,103,95,105,86,94,96,101,102,97,94,109,102,102,91,99,88,108,103,99,102,100,111,87,96,92,101,98,95,105,99,103,98,93,104,96,101,107,103,105,101,97,104,93,90,128,96,101,105,90,100,97,104,91,110,107,88,95,105,119,104,99,106,99,102,101,97,90,107,104,103,96,96,101,99,95,96,106,84,97,106,95,104,96,96,102,78,115,101,103,97,104,103,106,114,96,99,102,103,98,109,101,100,99,93,96,97,114,107,87,96,72,106,110,97,105,99,88,105,101,97,91,99,103,110,89,114,90,99,106,100,100,100,99,92,83,100,94,85,98,106,106,98,82,94,99,109,87,114,96,98,106,93,101,90,96,91,99,102,101,100,106,113,107,89,111,100,96,111,107,102,103,74,110,106,105,117,102,101,88,121,99,103,108,83,111,113,93,102,97,97,103,90,93,91,94,96,98,104,104,94,91,108,98,107,105,106,99,95,107,100,111,101,101,95,107,113,101,86,91,89,89,102,97,119,111,100,99,101,94,106,104,99,101,106,101,92,83,98,94,106,81,99,102,100,101,94,110,112,108,119,101,96,106,98,97,101,102,98,98,102,107,105,96,108,101,102,97,96,96,100,109,112,108,104,99,100,100,85,101,109,99,104,109,101,97,108,92,106,111,96,102,107,96,124,104,99,102,94,104,109,107,99,103,103,109,105,103,105,105,100,121,101,101,102,99,99,93,100,104,102,114,104,99,105,102,110,100,100,107,113,105,92,99,80,99,97,78,104,110,101,96,85,116,104,96,104,106,100,104,104,112,111,104,84,99,114,103,111,96,98,98,95,96,98,99,91,96,109,97,103,101,90,119,100,103,103,103,104,108,85,99,80,94,105,77,91,92,96,105,105,105,99,104,104,107,106,108,120,98,107,99,96,108,108,96,105,110,100,99,106,108,101,107,89,102,103,98,116,104,96,102,104,102,94,97,94,76,85,91,99,104,98,101,100,104,115,98,103,104,110,105,99,106,101,85,105,110,108,111,119,105,99,100,102,104,104,105,102,97,105,93,82,113,105,101,99,91,91,117,102,90,102,107,67,104,99,106,96,109,104,103,95,111,112,102,94,99,111,106,117,95,99,107,97,99,102,101,99,97,104,89,105,97,101,99,105,101,107,113,93,108,103,96,111,108,97,100,109,117,102,92,96,120,109,103,94,101,104,94,103,126,89,101,110,103,106,100,104,118,97,86,109,100,103,107,99,116,100,108,106,105,97,103,101,98,107,99,107,96,98,95,100,104,102,80,91,106,110,95,94,106,106,101,87,108,115,108,112,101,98,101,93,95,105,106,100,99,103,107,113,114,103,94,105,105,104,103,97,91,108,100,107,91,95,112,94,98,101,102,101,107,109,100,107,116,98,113,101,100,98,99,92,107,111,96,101,107,100,109,102,95,116,114,97,104,101,107,103,97,115,95,112,91,105,90,105,102,107,90,99,109,92,76,100,108,99,96,128,105,99,103,107,110,101,108,101,106,102,100,113,105,95,109,108,112,94,112,99,97,112,99,110,106,103,99,101,87,91,86,96,103,105,101,100,109,116,105,100,101,112,105,92,100,104,110,111,116,103,95,107,99,98,112,95,102,110,102,91,106,89,113,109,95,97,103,104,102,107,110,99,122,82,97,101,105,108,101,101,104,102,86,84,90,106,100,91,121,118,99,102,102,113,107,96,100,109,102,110,93,97,100,99,108,99,112,103,110,107,102,111,102,100,97,104,97,89,103,99,95,103,98,97,84,96,98,106,93,80,91,98,118,102,113,122,108,92,100,99,96,113,116,103,103,98,105,107,113,94,106,105,118,91,103,95,104,114,101,105,96,98,90,100,88,90,99,98,101,104,96,109,94,100,111,108,106,110,107,100,99,104,108,80,99,106,108,115,93,114,88,104,105,99,95,110,92,88,98,99,114,99,102,105,73,108,102,114,109,106,79,103,99,97,97,92,106,104,101,108,106,100,100,100,94,104,99,113,106,109,113,100,102,87,98,95,101,100,102,81,105,102,104,91,76,111,95,104,103,111,100,113,99,102,99,106,113,99,94,112,93,104,103,95,97,105,101,107,102,103,104,103,116,96,113,93,105,102,100,91,82,98,105,97,106,104,108,97,104,97,115,103,94,84,100,99,100,100,100,99,99,82,100,104,108,97,99,99,106,102,99,90,94,94,91,122,109,96,101,106,101,106,102,108,77,109,114,100,116,99,114,83,96,95,106,91,100,92,100,98,102,90,109,108,109,92,104,109,106,111,106,101,107,97,103,87,100,99,108,87,103,97,103,105,109,93,87,105,98,98,104,99,107,111,103,99,107,90,96,78,111,96,95,100,115,102,92,94,79,110,104,91,107,100,101,92,108,109,107,107,109,101,91,112,103,85,123,112,98,109,108,90,99,99,111,104,109,116,114,102,98,98,104,111,107,90,109,108,105,105,109,100,106,109,85,98,91,100,102,105,105,103,101,90,101,93,94,102,112,97,105,87,91,106,105,101,113,106,95,106,91,104,105,88,110,79,99,105,116,111,106,100,108,95,105,105,122,98,110,88,112,92,102,102,113,96,99,105,101,113,96,95,96,116,103,102,106,97,108,108,113,106,107,100,115,100,102,88,93,106,94,115,105,106,112,91,105,108,100,106,106,99,96,111,99,103,101,85,106,99,98,105,103,104,100,99,95,104,110,116,96,94,95,104,98,98,95,103,106,100,90,110,105,98,102,95,122,110,106,104,100,114,98,88,106,104,110,90,98,99,105,104,103,99,92,95,103,104,105,87,94,104,113,102,89,103,103,99,104,103,103,113,96,100,104,104,93,108,98,96,106,103,98,98,103,110,96,111,91,109,98,87,101,99,104,96,99,112,92,108,101,106,102,99,103,111,97,103,103,97,95,100,100,108,104,100,107,100,114,102,95,100,102,90,102,96,113,98,109,104,102,87,89,93,120,98,103,111,100,99,106,100,98,107,102,103,98,92,95,111,104,99,106,94,108,99,99,100,103,104,81,91,106,100,130,98,103,103,105,98,113,105,102,99,97,103,104,100,93,85,110,100,93,101,110,109,111,96,93,93,98,113,103,102,95,105,108,76,112,103,95,95,102,106,98,113,106,115,109,100,95,97,105,94,102,96,117,108,96,85,89,95,100,105,99,79,107,102,88,106,93,109,105,96,119,103,96,110,93,90,105,96,101,88,103,109,118,102,98,92,120,96,102,95,116,104,95,106,102,99,104,97,103,102,112,94,102,105,112,104,111,104,105,93,112,106,100,112,86,105,103,99,93,117,105,110,80,105,103,92,104,97,105,98,97,106,99,95,92,104,111,109,105,110,101,98,102,109,96,101,96,102,108,100,94,104,92,109,108,98,109,99,84,107,102,94,106,95,101,99,109,101,94,98,108,100,105,102,107,108,101,123,100,103,103,95,103,95,96,114,102,110,98,114,103,93,104,110,83,112,111,100,107,95,105,104,106,105,98,104,92,108,91,88,95,92,104,94,104,95,103,92,108,95,92,93,105,106,105,93,113,102,102,118,106,101,107,113,106,106,98,94,108,90,112,93,112,102,93,107,94,87,85,104,92,100,107,111,104,121,103,107,106,98,100,84,112,82,103,103,105,102,108,99,92,104,108,105,97,107,100,85,108,115,105,94,90,98,102,75,96,101,106,104,98,104,102,104,101,105,100,105,95,99,115,109,114,107,95,96,105,101,110,95,101,103,96,96,106,95,103,108,85,101,101,107,104,95,79,105,92,101,102,107,104,91,100,98,111,95,101,87,101,105,101,95,99,136,104,90,99,104,104,99,102,100,96,106,104,98,102,106,95,109,89,104,109,103,98,103,101,105,97,106,102,110,90,108,100,109,104,99,99,100,87,114,101,105,101,104,105,105,99,109,97,103,72,101,101,100,91,104,87,105,102,94,121,101,99,111,95,104,105,102,100,102,102,112,115,107,99,106,90,97,104,108,97,100,103,110,98,113,101,103,96,102,105,113,100,105,108,111,117,108,99,116,98,108,111,102,102,100,87,110,109,90,102,100,101,89,100,93,102,110,102,109,100,98,101,96,101,101,98,104,102,111,117,101,105,96,101,113,106,116,100,104,105,123,110,108,103,107,105,94,98,94,96,97,99,105,100,95,103,102,94,103,96,103,93,97,117,105,106,111,96,102,97,98,105,89,105,100,109,111,102,97,104,102,111,97,105,99,98,103,94,105,104,103,112,100,103,107,105,97,90,104,100,104,101,97,107,106,93,91,106,91,109,105,99,104,100,106,96,88,102,97,95,107,94,107,106,116,104,110,102,102,108,106,98,91,97,103,104,111,100,98,98,102,106,107,106,106,100,100,100,98,94,97,103,100,103,102,98,97,92,107,108,112,105,99,96,116,100,113,98,102,111,109,113,105,102,101,90,105,109,104,92,103,92,112,103,89,101,99,92,105,97,103,99,103,92,102,100,106,102,103,109,118,90,97,103,110,109,112,101,113,95,106,102,104,92,99,96,90,78,108,100,100,109,91,104,97,99,113,105,103,102,101,111,94,103,110,120,107,116,93,124,105,93,94,95,95,105,95,101,105,97,102,97,97,97,97,102,105,108,100,96,98,113,94,100,96,105,92,106,102,92,93,87,101,98,104,97,102,93,74,91,98,119,85,99,98,96,98,112,103,101,91,95,107,95,96,101,98,100,102,105,89,98,109,105,126,100,106,106,101,105,97,94,108,95,99,110,108,103,107,118,95,96,102,120,103,95,103,97,84,100,96,105,127,109,95,105,83,108,96,98,112,91,104,107,84,100,87,91,98,97,98, +412.41394,127,87,101,118,94,100,97,107,95,88,86,92,93,101,104,96,95,92,102,95,105,104,107,95,106,108,103,97,91,105,100,108,107,92,113,94,117,107,98,106,106,110,113,104,101,106,109,97,102,99,110,95,91,73,92,92,101,92,108,96,97,105,84,96,111,97,94,112,101,94,100,97,98,100,102,114,93,98,105,99,101,103,94,98,109,98,98,113,95,93,104,92,92,98,91,99,92,112,89,97,98,101,101,95,102,96,96,100,105,104,95,97,64,96,91,105,105,100,98,100,94,102,101,95,104,96,100,104,109,100,97,103,99,91,98,106,99,100,102,99,87,103,108,85,98,102,88,95,91,98,99,87,99,108,96,91,103,93,96,100,106,100,97,100,110,98,104,104,107,83,91,126,108,104,100,98,99,86,105,106,90,121,98,95,104,99,113,93,91,96,97,109,99,113,87,90,102,110,107,100,100,92,95,104,98,100,96,104,98,90,96,108,109,101,92,98,92,101,89,84,94,106,94,93,103,94,95,105,113,101,93,96,95,125,98,98,96,97,116,100,96,95,99,118,98,96,90,86,79,120,88,100,97,87,97,99,101,90,100,102,95,96,95,105,100,110,109,101,86,102,100,102,101,92,94,90,107,98,98,107,104,95,97,108,114,105,100,102,104,92,89,98,108,98,102,106,99,104,96,99,100,102,107,105,91,103,92,112,105,117,92,105,118,103,91,101,100,102,108,99,105,102,97,96,104,105,96,95,108,111,104,99,98,112,102,107,112,94,105,95,105,97,90,102,102,75,101,119,100,108,96,87,85,105,111,104,109,109,107,103,98,105,103,101,93,89,101,95,104,93,98,95,113,113,100,97,95,108,98,85,96,107,103,102,94,102,87,98,103,91,100,95,87,108,98,103,98,106,91,108,106,106,100,110,99,102,109,112,61,102,100,100,99,120,98,101,99,96,96,106,95,99,98,92,109,90,99,100,98,108,102,90,92,95,100,104,102,97,102,100,103,84,103,120,96,99,97,95,113,101,98,109,100,107,99,99,94,101,119,94,98,106,99,100,81,103,105,108,99,103,89,99,91,104,86,101,106,123,106,110,97,109,101,92,100,93,101,103,90,103,101,109,102,92,89,110,98,92,107,100,122,104,98,113,103,101,99,102,114,105,112,93,104,111,108,106,103,91,88,98,87,89,101,101,83,89,103,102,93,116,106,90,95,106,99,101,103,94,102,103,92,104,85,106,91,116,95,93,90,114,102,102,117,121,102,111,98,102,99,103,98,100,109,107,101,98,102,95,106,102,93,98,95,96,101,93,102,95,107,117,108,97,105,97,100,101,106,105,112,94,101,106,91,86,112,94,93,102,100,78,91,97,92,103,85,100,109,100,89,103,100,105,97,105,99,96,102,94,104,94,109,101,96,110,106,107,109,105,118,99,72,108,108,109,96,91,109,111,105,88,106,92,103,96,102,95,98,84,107,98,103,93,100,94,98,101,113,112,104,104,104,95,108,105,93,92,108,97,103,94,108,106,97,101,88,104,102,97,109,92,109,95,100,93,105,94,100,92,107,100,106,90,106,106,90,96,113,97,101,86,105,95,90,102,109,106,106,109,100,105,105,108,112,100,101,105,98,104,110,106,112,92,99,109,102,104,94,95,103,97,107,95,97,108,101,97,126,92,98,95,99,103,99,101,109,106,93,100,97,83,112,104,110,88,104,100,100,105,102,96,105,99,100,97,90,94,93,109,108,92,98,86,103,100,96,101,104,106,103,89,97,106,106,109,101,111,116,98,109,101,97,107,103,108,94,106,113,94,103,100,105,95,88,97,106,97,107,101,91,99,98,107,92,112,96,98,101,100,96,108,95,102,115,96,105,106,107,93,94,95,108,93,92,98,105,106,92,108,103,92,90,112,109,100,93,99,101,108,102,90,107,95,102,101,106,87,86,99,89,104,106,94,98,98,87,96,91,96,105,99,96,102,95,113,93,105,114,100,101,98,105,83,102,102,95,102,86,99,94,99,103,89,101,98,95,101,88,96,90,96,109,103,98,109,101,99,98,72,115,87,93,102,100,107,92,92,95,110,103,91,103,103,112,91,102,101,93,97,92,97,106,93,102,99,96,90,94,94,105,105,95,93,106,95,103,102,85,102,100,104,95,91,102,107,108,91,103,99,103,103,102,97,102,102,95,93,105,104,99,95,103,116,114,91,109,97,100,93,99,103,99,101,95,92,101,101,98,105,88,88,92,99,84,100,92,99,103,110,98,103,91,91,94,104,105,99,105,98,90,112,93,105,100,104,107,116,100,100,96,95,104,103,99,113,102,87,102,89,101,95,101,94,96,107,114,96,101,103,95,113,112,99,93,103,100,99,97,101,98,102,101,114,88,99,98,110,95,109,100,102,96,100,81,115,95,81,106,118,98,93,99,110,103,105,110,114,111,105,110,97,97,96,99,105,112,104,94,106,92,108,101,104,112,98,101,97,105,90,100,100,103,104,112,106,96,104,107,110,104,104,103,118,101,89,104,88,107,102,106,103,99,87,98,96,100,94,102,113,108,109,112,112,101,109,108,102,102,98,110,94,93,95,96,101,96,106,109,102,109,103,103,93,109,87,100,111,105,106,93,95,100,88,94,98,94,110,92,100,105,99,92,101,109,102,110,102,110,109,102,102,109,108,103,103,99,125,103,95,98,106,97,98,110,101,74,75,89,113,100,107,115,108,117,108,104,100,98,99,93,98,105,107,89,70,104,108,109,84,102,95,79,102,92,98,99,111,122,98,113,106,90,102,107,105,99,98,112,101,104,109,105,110,107,101,100,101,109,98,100,109,102,98,111,92,104,92,100,113,97,109,114,95,106,103,105,93,102,105,88,113,105,102,114,104,103,109,83,92,100,97,100,98,101,103,85,106,94,98,95,106,99,106,101,96,99,101,99,107,99,99,103,94,91,114,107,103,98,106,94,92,102,97,101,90,109,103,99,85,92,100,100,94,98,95,100,102,104,105,100,91,104,95,100,111,96,104,95,96,90,105,103,106,109,104,108,102,107,84,79,111,110,111,95,118,95,101,101,115,102,91,93,115,96,95,103,103,119,109,105,99,89,101,98,119,100,80,99,107,101,103,98,95,114,109,97,97,104,105,104,102,100,100,105,105,116,94,105,95,111,111,96,102,101,92,106,109,107,101,101,93,100,92,111,98,109,104,101,102,93,104,97,91,97,88,109,89,109,106,101,100,133,100,108,108,94,90,101,98,101,97,108,96,112,104,105,100,87,105,104,100,110,101,106,103,121,101,108,113,98,88,99,103,101,103,99,93,101,94,102,102,97,109,112,94,113,105,105,105,111,111,97,110,104,98,106,112,100,106,94,103,102,84,99,98,125,108,95,93,102,103,94,100,94,101,105,93,97,112,98,104,97,102,91,104,95,98,96,101,105,115,103,110,91,107,105,107,99,102,107,99,99,97,83,99,109,107,91,116,94,97,108,99,102,114,101,88,100,92,88,101,116,101,99,98,99,111,105,104,93,99,100,97,116,103,114,102,91,107,106,100,102,102,101,88,95,109,105,90,102,83,80,97,79,107,103,100,97,105,100,97,97,101,109,91,100,94,115,101,99,98,102,108,102,98,95,111,106,95,97,116,99,101,103,107,107,104,117,104,103,99,96,108,88,108,100,100,100,105,99,102,113,94,102,114,92,100,104,100,106,83,91,100,106,101,105,92,106,115,89,93,111,117,105,93,103,87,95,100,109,102,108,83,106,96,105,99,102,100,106,84,100,110,95,108,109,112,100,105,100,91,99,117,113,101,105,115,99,111,109,103,91,98,102,97,94,106,105,92,95,96,101,105,99,99,104,109,118,101,97,96,93,89,100,96,100,92,104,90,97,83,98,102,100,92,109,87,100,97,104,106,96,100,106,87,100,102,102,93,112,96,112,106,113,103,86,105,106,102,108,97,102,97,114,103,92,97,108,103,101,108,93,113,94,99,95,100,99,94,105,101,110,120,92,108,98,98,120,98,100,104,94,99,97,104,118,104,100,102,101,91,99,107,99,93,87,97,106,109,106,98,104,94,104,97,108,110,97,104,99,116,100,96,96,94,120,94,99,106,96,95,101,101,103,104,100,103,103,116,112,94,96,90,101,93,100,99,101,104,102,94,102,101,100,96,97,91,86,118,95,104,90,111,98,116,106,100,106,94,98,100,107,106,101,101,99,87,105,103,105,107,102,92,101,108,104,103,95,97,104,101,101,111,96,100,98,101,96,112,109,105,95,102,98,109,107,107,104,110,100,111,112,89,100,107,106,109,103,112,124,124,95,98,103,109,100,92,100,98,105,100,97,98,100,104,93,105,98,110,99,96,99,87,102,110,85,106,106,108,109,103,91,100,94,94,94,104,124,97,109,94,110,104,106,101,92,99,87,101,96,97,102,100,104,88,94,112,99,100,111,88,118,98,99,117,94,99,101,94,101,103,103,92,101,96,102,91,94,90,93,90,99,83,99,96,97,82,92,97,112,107,96,95,105,101,115,102,104,95,89,104,98,109,96,96,102,103,120,102,84,107,92,99,106,107,100,89,106,96,96,124,98,102,101,97,117,95,94,109,101,95,100,113,111,91,103,97,112,89,109,85,93,108,106,96,95,109,100,108,120,93,93,104,99,101,96,90,103,108,92,95,98,112,102,96,95,68,107,96,92,95,92,102,93,91,87,104,92,94,100,96,107,100,92,100,102,96,103,109,110,100,69,102,102,110,89,96,108,98,87,98,88,100,94,99,100,94,96,116,105,94,109,95,100,94,103,111,99,99,101,109,83,106,120,116,91,67,104,104,88,78,86,112,103,107,99,102,95,100,92,96,109,96,110,93,99,108,98,99,106,82, +412.55414,90,110,98,88,95,97,109,101,99,91,107,104,100,103,106,97,99,95,106,111,98,108,101,111,107,108,100,93,105,66,112,102,97,98,108,106,103,97,91,118,101,100,93,102,106,92,105,98,78,100,117,101,104,101,108,98,103,101,113,88,96,97,97,96,103,106,96,103,98,99,108,109,90,95,99,106,93,102,107,98,108,96,100,95,103,94,91,100,123,99,97,103,105,104,94,94,100,95,100,98,90,106,99,95,96,99,91,110,103,102,121,96,111,87,114,97,79,98,93,104,98,107,99,103,108,107,112,93,94,100,110,104,102,103,109,106,83,89,93,97,98,111,89,91,103,96,112,101,88,106,95,93,95,93,95,94,96,102,104,99,90,108,106,98,102,98,106,86,108,100,116,106,114,91,107,95,96,94,118,100,92,103,97,98,114,100,77,93,92,115,106,112,105,105,103,98,102,114,99,96,106,97,98,101,104,104,103,103,88,109,89,111,103,100,100,106,93,100,99,89,82,114,97,90,88,109,94,112,95,110,101,99,104,109,103,116,100,97,103,97,108,102,92,107,108,114,115,101,105,129,96,100,87,101,98,104,100,102,96,95,112,106,91,97,101,108,107,98,104,98,102,95,102,103,100,109,99,98,105,96,98,95,95,86,107,103,95,118,104,106,100,101,105,103,104,110,101,97,104,102,87,100,108,119,96,103,97,100,115,110,102,109,96,99,87,101,91,102,97,101,101,98,94,97,112,100,108,93,116,103,120,108,101,101,96,107,93,106,119,104,99,94,105,98,90,91,96,100,114,98,100,102,108,100,104,95,76,106,92,103,106,98,95,103,106,103,103,114,101,98,98,102,90,99,97,120,110,101,107,117,103,108,90,119,74,84,98,98,100,96,109,95,104,104,92,107,87,109,105,108,100,91,99,96,112,105,103,112,107,95,91,95,103,104,92,97,94,93,88,94,106,101,98,107,100,113,102,90,103,109,86,101,99,101,111,104,93,107,86,108,101,97,111,98,98,106,99,93,99,99,109,99,108,111,118,103,104,102,103,80,102,104,94,110,97,105,105,100,92,88,103,106,89,99,96,81,111,103,95,103,100,103,112,96,100,101,108,108,105,101,107,92,104,90,83,115,92,84,102,100,102,99,101,102,108,100,100,93,106,99,107,92,102,88,104,89,108,103,92,106,92,101,103,110,120,100,112,111,104,96,96,93,92,89,99,84,98,105,85,112,95,96,92,106,102,103,99,99,91,102,97,103,102,109,102,91,100,94,104,95,107,105,101,103,99,101,113,109,92,104,87,101,97,106,104,103,107,95,105,109,111,97,94,87,87,110,97,90,105,99,95,102,105,106,102,110,108,95,95,120,86,98,92,95,96,100,96,104,95,102,108,105,101,100,101,84,98,96,105,103,96,100,96,99,107,92,92,116,103,95,90,105,102,100,87,109,99,100,94,102,104,100,98,94,88,106,88,96,102,100,100,102,108,114,100,90,106,93,95,101,104,109,97,107,99,95,99,93,111,105,102,96,107,92,93,111,98,98,106,92,98,98,84,103,104,100,94,96,103,96,98,94,103,108,101,112,99,98,86,105,98,101,97,85,104,91,114,97,87,108,92,95,106,103,104,99,100,105,101,75,100,97,112,99,96,94,98,95,97,108,106,97,101,91,88,103,95,99,106,97,106,96,113,87,91,109,105,108,96,98,86,92,106,100,91,90,101,92,121,105,96,100,97,91,90,105,90,87,101,79,116,106,105,90,98,101,97,95,94,97,113,102,108,103,106,107,101,112,110,101,101,113,113,84,99,97,95,101,108,100,88,97,87,104,98,108,105,94,87,114,104,97,92,98,110,98,100,95,99,102,110,92,90,100,102,115,104,91,97,88,108,97,102,103,99,104,100,91,94,94,92,88,102,98,95,90,106,90,95,102,99,102,94,96,98,118,100,102,97,107,104,83,96,109,98,85,101,90,102,112,100,106,97,86,80,100,91,94,106,99,95,101,106,92,103,112,97,110,79,101,113,99,89,104,100,88,109,75,87,101,108,110,91,90,102,74,94,94,93,104,107,105,100,101,87,96,94,103,95,82,94,92,93,105,103,100,90,112,96,110,100,109,99,93,96,110,88,106,104,107,95,102,88,102,104,100,100,84,96,115,93,93,99,103,103,110,115,104,87,103,95,112,90,78,95,84,91,101,86,99,78,96,93,97,97,102,113,89,86,101,94,112,105,98,110,103,105,103,95,100,106,102,92,98,94,95,100,94,105,110,92,105,89,110,106,102,111,104,98,97,94,96,106,88,102,104,99,88,83,90,110,91,97,91,109,102,89,106,98,95,97,87,102,104,99,100,89,100,98,105,99,100,97,103,95,93,100,96,101,105,103,94,94,101,92,95,92,100,95,98,87,102,97,102,93,106,95,99,113,86,93,90,90,108,99,103,108,98,87,88,102,97,74,113,106,102,97,99,114,92,114,96,99,94,100,104,112,105,98,100,99,98,102,79,114,108,96,97,89,103,109,113,116,102,109,97,107,91,95,102,97,84,100,101,103,102,101,108,113,109,96,111,96,92,98,109,96,100,102,90,107,102,107,107,78,105,106,102,93,109,122,109,103,110,103,99,108,104,91,107,99,94,103,101,111,68,93,95,103,105,101,108,78,104,106,99,97,105,91,95,99,100,101,103,108,118,106,102,106,104,107,91,114,94,96,118,99,107,100,103,102,118,102,108,103,93,107,112,123,102,92,112,103,104,105,109,99,104,112,111,107,89,91,97,96,99,113,112,84,97,106,101,113,104,105,118,106,111,100,100,109,102,107,115,106,101,78,102,85,98,110,104,94,99,101,104,93,104,101,114,97,96,102,99,101,105,103,116,100,103,105,103,117,102,98,98,107,95,108,102,109,101,105,92,105,112,109,102,113,101,100,101,109,95,100,105,98,98,109,106,63,110,84,118,94,99,97,90,98,96,96,99,96,103,103,114,102,105,104,98,111,98,92,99,94,98,106,102,106,87,109,98,106,95,110,103,88,113,105,105,98,103,107,101,106,97,117,100,98,102,103,97,109,105,98,104,111,112,108,93,101,128,109,129,105,98,112,102,100,97,96,101,101,96,90,100,80,105,102,103,106,103,102,107,108,92,110,108,93,90,100,111,102,101,94,98,111,104,106,100,98,101,99,103,106,105,94,104,107,117,101,87,100,111,97,98,101,102,94,99,102,111,99,104,99,96,104,103,104,98,113,106,96,116,105,97,102,112,106,106,96,105,97,93,108,100,97,112,108,106,87,101,95,106,98,110,100,114,100,103,101,103,102,87,120,102,103,98,102,105,103,99,106,110,108,98,84,106,110,106,113,92,90,108,96,101,108,83,92,108,105,113,98,110,105,98,92,99,116,99,97,105,109,100,101,95,97,91,102,102,98,108,94,90,113,99,116,109,104,102,103,102,93,92,97,101,114,94,113,92,104,96,106,103,97,101,118,109,127,109,77,106,85,109,105,108,113,92,96,104,112,106,107,96,91,100,111,106,98,99,106,115,101,99,94,107,93,95,102,112,106,106,98,106,119,98,92,97,105,98,106,96,101,110,83,100,86,102,100,95,85,106,104,95,95,92,98,100,112,98,103,121,114,90,94,98,96,100,102,106,104,105,104,111,107,102,94,109,112,110,102,117,104,109,90,79,94,107,111,96,108,85,107,106,100,103,105,110,103,108,96,105,90,103,117,104,100,105,94,98,106,101,94,104,107,103,95,101,105,105,92,92,95,101,103,100,94,108,106,108,100,101,96,111,99,91,96,107,99,109,107,100,108,99,95,97,103,89,106,107,91,96,105,85,111,116,103,108,91,98,97,106,100,99,100,105,112,115,115,106,107,116,114,91,99,103,94,98,95,103,94,102,102,111,81,101,80,111,93,89,105,96,97,96,120,103,106,100,111,110,101,105,111,104,96,106,102,96,97,101,99,98,103,78,93,108,104,100,96,112,100,114,96,98,107,93,106,98,105,108,111,98,96,103,86,98,106,102,99,104,101,112,100,102,108,100,99,94,107,102,93,106,75,97,108,101,101,113,100,98,120,104,102,93,112,100,97,95,99,111,105,102,99,109,94,107,105,102,94,113,99,88,91,100,110,91,97,109,105,109,104,95,92,119,110,102,109,98,105,105,107,106,104,113,99,123,99,110,112,97,102,67,101,107,120,101,105,114,101,108,100,97,102,100,101,99,113,109,98,96,95,95,105,97,106,108,105,105,107,91,109,91,104,89,96,101,102,99,86,80,101,114,101,104,113,107,112,103,102,111,99,102,108,97,108,96,97,106,102,106,97,100,105,110,100,85,98,98,113,108,97,121,103,99,98,101,117,107,100,88,101,105,113,103,79,110,94,95,114,94,102,92,103,104,109,101,102,99,98,91,103,96,107,105,102,102,102,94,95,96,109,91,108,113,102,99,101,97,95,99,96,100,101,102,110,97,95,98,109,101,94,97,101,100,94,107,105,107,98,88,94,103,107,91,103,100,93,104,108,99,96,97,82,95,91,106,99,108,97,96,102,108,104,94,106,83,104,95,80,111,105,91,96,93,105,98,108,88,109,107,109,98,110,100,96,104,101,111,98,92,117,109,112,107,100,93,107,99,104,97,88,90,108,85,108,96,101,96,104,101,96,90,95,95,102,101,91,99,105,91,112,105,102,101,93,93,101,106,104,77,96,96,91,102,92,99,102,100,103,125,108,95,103,108,91,98,87,101,97,111,114,92,108,98,100,97,102,106,100,91,105,97,108,93,105,109,110,116,94,104,106,98,99,97,112,91,96,92,111,97,98,109,99,105,91,104,92,109,91,114,96,91,97,92,101,96,94,105,98,103,119,99,101,85,111,107,108,114,107,103, +412.69434,104,84,106,110,87,78,97,117,99,99,102,98,99,108,99,106,80,102,84,105,79,99,99,97,72,98,96,94,93,110,99,64,94,108,91,94,103,93,94,95,84,101,102,98,102,113,97,97,102,104,103,101,104,64,104,85,99,93,109,91,100,105,108,93,107,96,99,97,102,97,91,103,97,101,105,86,99,94,94,95,95,99,87,105,101,88,103,104,116,109,114,99,109,108,105,99,100,109,109,103,99,97,98,90,95,97,98,100,92,92,96,108,91,98,99,110,107,96,109,105,104,100,106,108,104,97,101,99,100,103,74,100,98,104,96,105,92,89,100,100,94,109,103,114,93,105,112,94,104,91,100,98,97,93,86,107,111,92,100,108,102,108,98,112,107,93,98,104,100,98,101,91,87,101,103,114,97,92,96,104,100,100,98,109,93,100,108,93,118,98,103,106,99,102,102,98,103,102,110,112,92,93,104,107,92,92,104,104,107,108,93,92,92,93,108,112,105,102,106,100,94,103,96,104,104,105,96,101,96,70,97,101,98,87,105,102,98,87,109,105,109,102,105,106,91,113,102,95,104,103,100,94,102,117,118,106,102,97,60,101,108,99,103,88,92,120,96,99,107,94,102,107,98,101,100,99,101,98,97,104,96,102,115,113,103,93,97,100,90,103,109,80,111,93,103,104,110,103,100,107,97,118,104,119,96,99,95,113,96,105,104,116,112,102,101,106,105,102,112,103,114,105,101,102,116,123,106,100,106,100,85,100,97,100,100,105,99,110,90,96,103,106,104,97,101,83,111,107,112,73,102,110,99,95,107,104,95,98,90,101,97,103,100,99,102,96,96,109,103,89,91,89,107,105,104,82,103,99,105,113,99,105,105,105,102,95,96,106,101,97,109,94,94,107,102,97,96,100,100,89,93,105,85,104,111,97,101,105,87,97,99,75,105,106,105,102,96,107,100,97,64,90,100,100,97,108,99,100,105,114,94,106,94,96,104,102,98,109,123,90,103,113,102,104,94,110,93,109,95,114,104,109,90,107,112,81,103,91,101,109,106,108,96,105,106,109,106,101,97,96,79,98,113,94,100,94,97,106,98,97,97,100,103,105,111,95,95,99,113,116,97,100,101,118,94,99,106,97,101,101,105,103,107,129,100,102,137,109,101,104,95,97,112,100,95,90,109,99,89,97,114,102,106,98,93,96,103,108,100,109,99,95,96,105,99,103,98,111,103,104,96,102,102,96,91,100,105,113,101,109,105,100,118,121,111,103,112,110,105,99,102,96,143,102,109,102,125,104,109,104,94,104,94,104,87,114,101,112,100,100,97,98,105,84,91,96,110,111,108,73,98,104,97,104,102,101,102,99,111,101,101,99,103,94,98,97,100,106,95,102,108,104,87,105,117,95,117,101,103,91,106,117,104,92,105,104,101,106,100,106,98,102,98,108,99,100,104,92,97,99,117,100,97,109,102,99,101,106,105,104,107,97,99,111,95,92,104,108,107,111,92,104,115,94,102,99,104,94,100,109,100,110,112,96,94,127,104,107,113,100,111,106,100,89,100,106,98,98,89,88,96,93,105,99,99,99,105,105,104,123,95,107,99,101,128,103,104,105,109,113,106,103,99,96,99,104,111,103,100,112,103,92,105,104,99,108,108,94,116,101,103,96,96,77,101,102,111,105,103,97,103,97,95,103,96,98,107,103,84,102,109,98,91,96,94,95,105,106,110,113,105,111,101,120,93,101,96,106,112,101,104,105,105,100,96,98,106,94,101,95,93,109,112,109,94,101,101,100,92,103,99,105,102,111,110,96,105,104,100,98,104,129,98,98,104,106,97,103,98,79,108,94,105,92,112,104,70,103,110,100,92,105,112,108,101,105,96,88,102,117,92,95,106,102,93,106,105,84,97,97,86,100,105,94,106,110,91,103,95,93,103,95,92,88,110,84,109,109,114,99,111,101,102,94,94,91,87,101,102,103,98,100,101,103,93,110,87,97,91,101,98,97,105,108,88,96,107,113,106,112,98,107,113,100,98,98,104,111,94,97,113,104,98,105,109,93,93,79,91,108,103,91,102,110,110,90,102,113,88,112,94,116,109,113,92,84,98,112,102,106,100,79,109,111,79,93,96,111,106,94,106,84,91,95,95,100,105,93,100,101,100,108,92,109,110,91,105,98,107,100,102,112,89,90,111,102,96,100,96,105,91,96,112,100,98,95,98,99,93,102,86,107,89,97,102,90,89,109,133,106,113,99,101,102,97,98,101,103,104,106,106,104,97,103,99,87,85,103,89,102,97,114,108,99,103,105,94,99,100,88,100,104,112,87,83,94,87,102,104,92,104,107,105,87,106,94,97,114,101,105,113,103,94,102,100,110,96,103,102,95,115,113,109,121,97,105,108,97,103,119,95,114,105,113,100,90,101,103,112,89,105,100,101,103,107,111,101,106,113,105,107,99,90,98,104,95,106,93,103,94,102,105,82,103,82,104,97,106,108,94,128,110,112,108,91,104,103,101,97,94,122,106,102,95,102,102,99,109,96,106,108,94,108,114,99,111,97,96,105,73,112,106,112,102,101,100,89,96,105,98,98,105,89,99,117,94,93,97,94,96,100,92,101,106,105,97,109,97,97,113,100,97,98,88,105,113,101,95,103,105,101,95,101,104,97,97,105,99,104,98,107,102,103,98,94,115,113,87,97,100,102,88,103,112,93,84,108,85,117,93,102,98,100,93,96,101,98,81,107,91,109,104,97,107,98,105,113,104,91,98,111,110,94,107,97,102,104,98,105,113,91,105,97,105,109,96,91,109,106,103,113,103,101,106,96,92,98,114,106,105,98,108,103,100,64,106,103,109,93,113,117,101,98,106,123,93,109,106,104,106,110,101,111,108,110,95,88,102,102,100,111,116,98,94,97,96,93,104,103,91,92,101,94,99,98,96,89,95,94,106,92,95,96,104,100,102,106,110,100,97,103,110,88,96,101,94,100,92,106,93,85,106,103,98,98,96,100,102,99,93,102,106,117,103,85,113,96,101,89,104,92,100,103,88,103,104,100,106,100,97,88,93,99,100,96,102,106,103,101,103,111,98,86,96,106,98,70,127,100,101,102,106,96,106,99,92,99,106,91,105,102,92,102,101,97,83,97,111,104,107,106,102,98,113,111,107,93,95,109,95,105,103,109,99,92,83,112,100,104,103,94,88,93,98,96,93,94,95,106,109,101,115,101,98,100,95,100,76,96,105,104,97,106,113,100,100,112,106,101,107,88,104,111,94,101,96,93,96,96,108,96,91,101,97,89,96,92,95,90,77,103,94,112,105,98,96,81,91,110,104,96,104,105,104,112,100,93,100,107,102,100,104,110,102,95,109,103,112,100,99,89,107,88,100,106,101,92,104,102,89,94,102,101,100,93,104,102,101,108,110,103,92,94,105,98,100,98,91,87,102,111,105,102,106,90,99,90,102,99,97,86,97,108,98,116,101,91,103,103,89,108,99,111,120,94,107,95,97,86,113,108,100,106,117,98,107,99,107,100,104,106,101,104,101,115,105,98,100,105,92,97,101,82,93,91,97,103,102,102,89,104,88,92,99,111,108,103,98,95,90,96,108,116,97,100,93,108,93,109,100,100,96,103,83,97,113,106,95,109,103,95,104,101,112,91,96,89,96,100,102,91,105,101,101,111,108,108,101,108,100,93,110,95,85,96,97,93,101,105,91,98,99,104,101,101,95,96,129,92,101,106,109,106,86,91,99,105,109,107,107,92,102,102,98,95,96,105,95,93,93,88,99,94,96,101,98,101,100,96,107,109,97,105,110,92,106,121,106,96,104,99,100,91,88,99,109,105,81,109,93,111,103,92,103,100,95,103,89,107,96,103,106,96,94,114,96,114,97,67,98,113,108,90,106,105,105,102,92,94,96,102,105,108,95,103,115,100,98,101,101,106,100,103,108,105,105,106,103,108,105,94,100,107,104,108,111,99,102,101,113,102,89,97,103,105,116,93,122,85,95,107,91,104,95,99,109,112,99,104,100,88,99,99,97,91,106,97,107,105,98,100,101,102,98,92,111,79,105,91,107,98,107,94,113,112,85,83,93,101,91,93,107,110,109,97,103,105,119,98,112,97,96,93,102,105,102,111,105,91,103,108,102,104,99,95,98,96,92,108,94,101,104,103,100,102,102,112,109,111,93,95,97,95,95,121,101,100,100,101,91,98,106,98,98,91,86,104,113,102,105,90,101,108,104,102,107,107,102,93,98,117,80,107,98,92,94,110,81,101,100,97,96,106,99,103,102,89,106,98,99,106,90,107,105,103,100,104,102,104,109,105,83,98,105,101,92,98,101,104,96,105,102,100,100,108,102,98,94,95,105,103,108,101,109,98,101,106,109,98,103,91,96,96,107,94,106,93,96,113,88,90,103,98,101,106,99,96,109,82,105,93,108,104,102,104,103,92,96,74,91,100,97,96,98,102,95,99,100,107,94,103,101,89,108,104,93,96,89,112,121,106,105,99,105,109,87,87,99,105,105,103,88,92,100,103,101,100,101,91,100,100,117,104,97,92,92,90,101,112,100,88,101,101,103,103,114,98,91,104,121,100,101,104,101,91,90,105,106,101,91,104,89,103,101,98,104,101,107,105,107,93,88,94,96,99,91,97,98,101,97,95,102,88,97,123,97,108,102,79,97,101,105,106,96,94,100,106,96,94,104,83,81,102,107,102,92,109,97,100,110,96,100,99,97,80,96,105,105,74,106,85,99,104,94,100,92,87,82,97,94,103,109,101,98,103,94,105,114,101,97,101,73,88,98,104,107,103,109,105,94,110,108,102,108,96,87,99,100,98,99,100,91,96,102,92,105,110,92,87,94,98,94,102,81,94,96,101,98,94,94, +412.83453,96,83,96,94,95,113,97,100,106,85,101,114,92,94,105,97,92,105,98,85,98,105,87,97,92,95,101,90,100,117,95,107,95,104,117,114,112,106,90,99,109,111,113,101,110,104,87,106,111,92,80,104,93,102,97,94,106,98,95,95,103,70,92,98,100,99,103,110,110,102,97,107,111,105,98,100,104,105,104,90,111,110,96,105,98,99,114,99,102,95,98,105,95,96,94,95,100,90,112,102,111,104,83,100,101,101,97,98,99,88,99,105,109,102,101,101,98,100,112,91,97,105,101,105,83,106,112,101,101,101,100,94,92,102,89,95,95,94,94,102,101,104,106,92,95,99,109,108,102,104,91,100,125,98,104,93,85,103,100,98,104,94,96,112,95,99,98,89,110,99,94,94,106,90,100,110,105,97,100,108,109,98,93,114,101,90,98,98,113,98,97,102,93,96,96,99,101,94,95,115,102,112,97,112,101,105,94,105,110,100,80,100,105,108,113,101,90,85,98,112,104,102,101,86,98,95,102,113,98,104,98,101,108,97,96,104,105,103,101,95,98,96,101,102,113,100,96,99,103,109,88,109,96,102,114,98,99,70,98,107,88,126,102,109,79,101,98,109,95,103,98,104,108,98,103,95,108,106,102,93,101,113,104,101,96,102,87,67,86,102,101,94,105,100,105,103,104,102,96,104,106,90,101,109,83,115,107,115,108,104,98,134,109,110,87,101,109,105,105,98,104,99,101,77,97,92,95,96,109,108,100,101,101,100,100,103,99,93,92,103,91,83,97,95,99,112,98,106,105,108,96,99,93,86,100,100,109,103,118,97,104,95,103,88,95,101,108,96,98,95,103,97,101,94,101,101,106,94,120,99,114,100,100,102,94,93,101,100,101,88,103,95,107,108,105,106,105,104,120,102,106,101,102,108,106,99,104,105,108,99,91,97,106,107,90,110,117,115,92,102,95,93,98,109,108,108,99,106,104,109,93,103,87,104,103,106,90,112,106,117,113,112,87,107,100,98,100,102,110,104,97,92,87,119,103,104,98,110,94,97,113,98,101,109,107,88,101,103,108,101,97,106,101,90,103,90,97,97,105,102,77,96,105,78,98,103,107,109,101,98,109,102,89,99,101,96,95,97,100,97,110,98,104,110,100,104,105,103,107,95,120,112,91,102,107,102,105,95,108,90,103,94,106,99,105,109,100,104,100,104,110,99,108,97,101,106,111,92,106,104,100,94,100,107,107,95,110,107,127,100,98,104,100,102,92,100,91,107,101,95,101,113,113,111,103,85,105,103,102,101,98,102,104,118,105,112,103,121,105,119,101,88,114,106,108,87,95,99,101,100,109,116,116,101,110,125,96,109,103,109,114,107,101,108,104,98,99,104,117,106,97,104,105,110,101,107,98,99,111,97,106,98,81,102,94,108,100,103,102,105,106,117,113,102,101,112,103,104,100,101,97,99,73,103,99,98,103,97,108,107,94,112,109,106,101,113,106,107,97,96,102,103,97,105,102,100,97,91,104,98,117,104,94,102,93,97,94,95,109,96,112,108,116,87,95,99,93,92,99,100,102,95,101,105,103,96,105,116,98,80,103,102,101,105,103,103,111,108,101,95,109,111,102,95,97,98,109,95,95,104,97,106,95,104,93,99,98,103,101,103,106,95,100,112,100,106,108,98,106,104,106,101,100,106,100,98,106,112,91,94,105,95,90,86,94,102,100,104,81,112,99,104,105,103,105,106,102,101,101,92,99,109,108,93,100,102,123,92,105,94,113,103,90,103,115,98,83,100,105,107,101,112,116,99,102,100,108,102,100,101,99,99,94,88,105,87,93,100,113,108,98,102,90,113,96,108,116,97,106,102,106,109,101,100,112,107,111,83,113,114,103,103,114,100,99,92,105,106,96,97,96,111,104,96,94,90,109,90,96,96,92,98,110,112,105,95,83,98,103,102,110,133,102,100,108,98,98,98,102,114,105,103,100,96,97,97,107,100,97,104,101,90,106,102,98,98,95,106,100,93,99,106,102,97,113,103,86,97,100,90,107,93,108,113,105,95,123,119,102,113,101,101,97,95,92,92,96,103,102,99,95,86,93,97,107,100,103,104,103,97,96,109,105,116,91,98,106,100,92,101,110,104,83,78,97,102,98,98,111,99,104,91,102,102,98,105,102,99,101,87,101,96,96,86,96,107,92,100,100,92,102,104,106,99,100,99,103,98,98,84,104,95,91,110,102,99,98,100,103,100,110,106,93,103,105,105,97,86,103,93,94,110,84,108,114,109,112,125,96,103,103,114,103,103,96,101,98,106,110,97,94,103,105,106,105,93,106,101,102,101,94,105,100,109,100,88,105,105,100,125,105,113,108,98,100,99,101,103,94,110,109,105,101,109,94,101,99,97,107,102,102,92,98,118,87,109,104,103,100,110,94,101,97,101,115,111,97,105,104,101,96,106,81,103,107,104,88,92,105,90,62,93,112,95,108,99,95,92,84,108,106,99,97,107,94,101,103,95,97,96,103,99,103,92,100,95,90,103,97,91,101,100,68,103,99,98,102,90,105,91,106,125,119,105,97,115,87,92,97,98,104,89,63,95,98,102,91,106,97,97,115,102,104,99,102,95,99,94,99,101,109,87,96,92,101,98,91,105,97,103,96,100,93,104,94,97,116,75,111,101,101,102,99,96,96,110,101,91,89,125,98,90,103,120,97,109,102,69,97,102,112,119,111,110,102,104,102,107,109,109,98,103,101,116,102,103,96,111,102,102,108,112,95,111,102,106,109,96,91,103,103,102,99,106,95,104,115,105,108,100,95,105,102,94,103,95,104,94,102,109,102,102,105,96,100,98,105,109,102,104,105,106,102,88,106,116,99,117,97,102,109,104,96,114,113,99,105,104,98,109,106,97,95,96,106,94,93,99,93,92,99,103,91,102,96,106,95,99,109,88,94,105,97,106,85,96,115,111,91,91,105,102,99,99,95,108,98,106,94,106,108,95,101,94,104,99,95,110,101,81,90,94,104,103,81,98,108,96,96,99,101,105,92,104,99,101,99,88,109,105,97,95,97,99,94,103,100,95,95,97,102,103,99,99,109,102,99,101,98,106,105,107,99,104,98,91,103,106,101,85,104,97,99,97,104,73,92,94,79,94,79,114,100,98,103,111,82,94,94,94,97,100,100,108,88,101,112,98,103,116,104,103,104,101,113,107,106,95,84,92,107,105,99,99,86,97,107,92,110,85,93,99,93,140,106,102,109,106,102,95,101,110,102,98,87,97,100,97,86,98,108,93,101,108,106,92,101,90,79,93,104,80,111,104,101,109,97,98,101,99,101,106,97,102,93,97,98,79,104,101,97,103,103,102,106,105,87,107,101,98,97,99,102,99,96,103,101,99,108,101,108,107,107,92,105,115,108,110,97,98,98,95,94,95,102,91,101,96,109,101,102,96,103,92,100,105,66,98,101,99,111,94,118,95,98,104,105,111,103,102,105,100,92,120,100,100,113,100,93,96,99,102,109,104,102,109,100,91,95,110,95,108,98,100,98,116,92,103,97,106,95,105,89,102,105,106,95,88,100,102,100,103,93,99,98,101,103,84,101,108,92,106,105,107,101,94,103,110,109,105,97,99,100,94,100,99,104,91,102,105,105,94,102,94,99,118,121,105,100,103,101,97,102,102,80,97,109,92,117,103,108,90,100,95,98,102,99,96,94,107,93,95,95,97,104,91,97,117,104,94,90,104,101,91,93,130,99,94,102,96,97,96,92,109,85,110,91,98,107,100,98,109,105,95,102,90,97,111,88,106,108,112,103,87,89,102,96,90,91,104,95,110,99,108,98,103,93,104,116,105,91,95,93,105,95,95,84,98,83,107,110,102,90,86,104,101,109,100,96,97,94,105,94,104,100,99,100,100,121,97,109,107,103,108,107,101,103,100,112,99,107,103,94,119,98,102,103,90,92,89,99,103,99,98,99,104,100,93,100,104,91,99,98,105,100,87,108,101,97,107,94,91,73,103,107,87,107,103,109,107,103,101,96,89,109,112,99,98,100,104,92,102,106,96,94,102,100,103,99,104,99,99,108,109,104,98,102,101,94,111,98,96,100,95,109,107,110,119,121,105,96,100,95,98,101,102,116,96,96,113,91,107,113,102,113,94,82,99,99,114,107,95,103,95,102,108,77,112,104,97,111,105,92,73,97,97,106,112,90,102,89,107,98,94,109,97,70,104,104,90,102,98,94,103,102,95,105,103,99,81,98,100,103,141,92,98,107,98,96,99,102,102,97,104,113,103,91,92,104,105,91,92,104,106,105,109,116,105,113,105,95,90,102,102,110,92,106,105,93,103,97,92,114,108,107,83,101,103,105,100,93,100,99,114,96,105,110,110,102,101,96,90,106,111,104,108,99,102,106,90,94,97,106,103,113,70,102,107,76,105,102,99,112,103,92,100,99,109,115,101,92,96,109,97,88,100,102,92,95,100,99,100,97,99,91,110,99,104,97,102,91,90,90,93,102,99,105,109,98,95,102,105,99,106,104,112,95,91,105,105,94,111,101,87,88,108,83,94,86,98,104,99,90,113,113,103,105,93,98,87,91,95,109,101,85,89,89,104,99,92,105,88,98,101,104,94,98,104,108,91,91,94,100,95,86,73,104,81,96,101,95,101,121,110,107,97,96,116,97,120,98,104,109,101,91,94,107,85,103,101,100,103,99,113,87,93,108,92,97,94,99,102,93,87,105,110,87,109,106,100,82,101,108,92,100,94,97,101,87,89,95,89,102,98,94,104,99,93,93,106,93,96,101,92,97,94,139,93,96,80,92,99,99,109,95,101,100,86,96,94,101,105,97,96,112,88,99,102,112,97,103,105,108,92,98,100,108,106,101,105, +412.97473,110,82,82,106,105,105,95,96,95,94,98,86,104,114,100,83,99,113,101,104,100,96,101,95,101,105,110,94,108,94,105,106,95,105,97,105,92,92,94,108,90,96,84,103,118,100,103,96,97,105,92,101,106,109,109,100,100,99,105,93,98,91,106,112,105,110,73,115,94,92,108,108,104,105,101,106,93,103,98,115,105,88,99,104,113,90,104,102,95,104,102,89,108,105,108,100,95,100,97,95,96,135,91,102,113,100,103,89,93,99,94,109,97,94,101,97,101,91,104,100,94,102,106,98,98,107,99,100,117,96,98,89,90,101,106,107,90,112,97,89,95,96,105,122,92,97,102,105,107,100,106,95,104,97,105,97,112,98,101,105,102,93,94,95,101,100,106,87,101,82,95,99,95,100,95,106,92,90,111,105,102,97,107,117,108,99,101,101,111,114,97,102,108,106,98,103,104,98,97,98,98,97,98,108,106,102,105,98,92,91,104,95,110,100,94,94,96,107,122,102,98,107,106,95,97,108,107,108,111,98,96,103,90,111,92,98,91,101,99,107,124,90,96,110,104,92,94,100,98,105,101,97,98,97,98,102,101,97,89,95,99,99,107,82,98,94,109,92,97,90,102,100,106,121,110,131,97,98,112,86,110,97,100,95,99,103,87,105,110,100,100,83,100,85,107,114,94,112,113,99,100,98,98,105,106,100,112,116,105,105,91,94,99,102,103,103,84,107,98,107,102,104,95,101,98,96,93,107,105,97,100,90,104,103,102,104,61,105,102,114,84,97,86,87,88,103,99,96,94,95,103,105,104,96,111,95,88,107,94,103,105,101,110,99,77,110,117,105,108,99,124,87,101,100,94,106,103,92,84,96,112,97,96,108,94,96,94,98,88,93,100,95,91,99,109,87,110,117,94,117,101,112,100,106,111,92,89,100,97,100,101,103,105,95,104,106,106,99,97,92,113,98,103,98,101,89,88,93,97,101,77,95,99,97,90,94,82,88,100,107,109,100,83,94,94,98,117,109,108,94,106,100,95,100,94,93,105,104,104,95,103,99,110,96,99,105,98,95,100,106,104,98,85,110,90,102,100,99,101,108,103,99,109,108,103,104,100,100,104,101,112,97,93,97,101,103,105,95,84,103,104,103,96,89,103,94,105,104,107,102,107,101,94,103,99,97,97,107,100,100,109,94,102,93,99,67,103,107,114,105,99,100,121,92,97,107,103,99,100,109,111,90,114,106,101,98,97,100,108,104,96,95,103,104,95,103,106,113,100,97,101,90,92,97,103,95,95,91,93,102,98,99,90,103,109,118,104,83,107,106,99,90,108,106,87,98,93,96,106,108,98,114,105,90,110,115,78,101,109,107,100,100,104,98,102,108,86,102,92,102,99,111,112,105,95,92,104,87,93,100,102,101,91,93,112,103,113,105,101,99,104,107,101,107,93,105,106,103,116,97,108,102,109,103,105,103,88,105,108,103,107,104,108,104,97,102,97,113,84,108,98,107,92,103,98,100,98,97,95,100,98,105,101,117,102,100,97,104,120,137,111,106,115,88,110,97,99,94,103,91,110,100,97,100,101,91,103,97,87,103,108,91,104,103,113,108,106,101,103,105,99,100,83,110,108,95,103,96,102,79,100,87,100,103,104,102,107,106,98,91,91,98,95,95,117,110,108,97,99,104,103,112,105,104,97,101,93,108,94,99,100,89,107,79,94,107,105,98,110,95,104,107,99,114,87,93,91,89,98,92,102,108,101,102,107,107,103,105,96,95,103,96,89,96,105,97,104,97,98,108,113,109,106,96,86,101,96,95,105,87,90,107,90,110,94,102,96,103,95,84,93,114,97,94,95,105,101,109,102,105,107,103,102,99,101,112,114,101,95,100,106,100,113,98,99,114,97,95,104,108,98,66,101,102,95,94,97,101,103,92,87,100,82,101,93,101,112,107,97,104,112,93,94,98,94,104,83,104,110,95,105,106,101,107,99,99,104,96,96,97,103,112,104,106,93,97,97,101,98,110,103,99,100,90,109,101,101,100,102,109,100,106,110,107,104,99,95,109,79,102,96,111,95,89,98,110,98,93,103,98,109,99,112,95,110,103,103,95,101,103,97,96,104,103,104,100,99,99,102,103,110,99,101,108,96,89,61,100,98,92,97,110,101,105,110,109,105,111,104,95,113,103,104,82,99,103,95,106,99,100,92,103,99,98,102,105,97,91,88,110,94,85,99,96,106,95,107,96,104,82,84,103,108,111,99,97,104,95,102,109,114,99,93,84,95,104,108,103,97,95,95,106,98,96,91,103,110,100,101,117,105,114,110,107,95,85,91,105,103,118,95,100,100,93,109,86,104,113,108,101,100,104,90,102,77,93,110,91,86,91,100,103,99,101,101,103,102,93,111,99,99,110,107,84,90,95,88,104,105,103,92,94,103,92,100,100,99,101,101,99,100,103,102,95,94,96,107,107,104,101,106,104,100,92,108,105,88,106,107,118,108,95,99,99,107,115,104,103,108,102,104,103,99,104,102,99,96,101,102,102,83,102,94,100,85,104,100,106,97,93,95,103,108,99,111,99,96,94,93,94,91,100,95,104,98,98,107,96,95,93,102,116,96,99,85,112,109,103,103,117,102,89,101,93,99,106,96,92,104,89,99,95,112,113,115,96,103,93,98,117,98,107,104,101,94,105,108,96,100,102,94,104,104,103,115,78,99,95,101,88,103,109,91,95,101,96,94,80,80,107,104,99,96,97,90,97,97,106,100,110,101,98,104,100,96,102,102,112,88,101,103,101,99,115,100,101,96,101,94,112,96,96,100,92,90,113,107,103,110,100,110,121,104,121,95,107,101,102,92,100,113,100,103,111,103,100,97,106,102,94,99,96,105,103,125,100,113,106,110,106,105,104,109,94,103,101,99,95,101,103,100,95,95,93,101,105,104,88,90,111,100,95,102,126,106,101,110,109,98,108,96,98,94,93,104,86,109,97,105,127,107,114,85,110,116,86,98,95,81,68,94,106,109,103,115,101,105,101,119,91,113,113,115,90,96,102,111,92,106,105,102,103,99,102,102,109,113,93,97,97,108,109,112,102,100,90,116,98,97,99,117,96,86,103,104,101,96,90,99,101,99,105,113,105,103,96,99,93,102,101,98,95,106,104,89,96,89,100,108,96,92,103,97,95,108,115,96,103,107,96,106,94,103,101,99,108,101,101,113,120,112,102,100,95,113,92,98,103,106,108,110,99,95,109,105,90,79,106,104,109,97,98,97,94,104,95,95,106,102,92,116,91,108,96,99,94,101,108,94,95,109,109,98,97,109,106,102,108,92,98,105,99,96,99,99,102,104,97,109,87,106,103,103,86,89,100,109,99,106,96,99,104,105,105,103,116,95,99,106,103,102,98,113,128,91,102,95,97,107,110,108,99,101,92,110,98,94,100,99,91,108,105,113,102,94,96,112,106,111,103,97,111,102,97,91,100,100,100,100,95,95,92,89,99,98,101,101,115,109,97,107,105,101,104,113,101,120,116,113,109,102,108,99,105,97,101,94,91,104,117,101,86,104,114,111,104,101,101,102,106,107,97,93,100,89,107,96,102,115,107,97,83,103,106,110,95,95,102,104,91,98,98,90,110,103,97,94,114,105,101,108,105,104,103,103,102,99,102,101,107,83,104,99,96,100,114,106,96,99,91,100,96,108,88,97,96,89,120,105,110,114,100,87,100,97,107,105,87,98,89,105,120,97,100,99,96,105,93,92,104,113,90,117,101,103,94,100,103,110,100,96,104,105,110,104,98,104,114,97,101,97,89,105,98,90,113,110,105,105,103,93,120,92,101,112,101,104,87,100,96,94,105,97,115,109,104,100,107,90,98,100,102,112,102,130,105,115,100,93,101,105,103,110,88,93,73,102,86,109,98,102,101,103,99,89,105,110,106,101,99,95,102,89,98,100,103,103,100,114,111,97,102,97,110,94,101,99,102,97,93,114,111,104,107,108,100,106,96,100,107,104,99,87,100,104,100,103,100,114,102,105,100,97,108,95,103,88,97,104,105,106,104,95,106,113,105,102,90,100,96,107,104,98,113,110,100,102,100,107,115,103,100,107,108,103,92,97,101,106,98,100,97,91,98,101,103,82,101,104,97,107,97,102,92,104,102,106,97,106,95,95,102,105,102,103,103,99,104,97,103,96,72,111,104,87,96,101,109,116,103,110,113,105,102,85,96,105,105,107,105,102,96,110,98,98,105,97,101,95,98,108,105,115,98,116,87,107,83,97,109,100,105,101,111,100,105,118,106,129,92,92,116,116,101,107,98,107,109,102,104,108,106,98,96,99,102,91,95,98,98,104,102,106,98,102,107,87,109,111,104,112,103,99,109,110,112,94,108,94,97,96,101,101,89,87,110,88,106,101,108,98,105,106,97,103,108,90,94,85,112,110,113,107,98,109,92,100,101,108,129,106,92,98,110,106,107,92,102,105,102,105,101,96,103,98,102,101,99,104,98,114,112,96,100,105,95,104,107,108,104,100,104,87,97,81,89,102,107,100,94,98,106,106,92,105,109,94,97,98,64,86,93,111,96,128,108,99,110,95,99,90,93,107,99,91,98,108,98,104,115,99,110,93,108,98,90,102,105,111,101,92,100,105,94,88,99,99,94,92,88,100,105,108,112,106,116,99,110,109,104,96,104,96,98,100,101,94,97,101,79,109,113,109,107,98,109,111,106,90,107,98,94,88,103,103,94,104,105,78,98,106,104,102,101,121,94,100,104,99,98,94,101,88,110,93,98,93,102,95,95,124,101,109,94,117,109,111,100,85,105,86,103,78,106,98,110,85,95,105,105,95,104,94,97,86,105,99,101,110,91,99,97,95,98,87,117,97,102,101,86, +413.11493,105,104,98,96,89,94,97,95,93,86,100,97,83,112,74,100,111,76,94,106,90,98,109,93,100,91,86,91,104,100,105,102,97,117,95,104,111,102,106,94,83,108,109,106,116,108,100,100,104,113,108,103,99,106,98,103,105,113,103,84,102,105,94,96,107,112,124,105,109,96,95,104,102,114,92,96,86,93,101,111,108,93,105,105,104,97,97,101,100,97,91,85,89,105,91,106,106,106,101,107,100,102,101,86,97,97,96,100,94,100,104,114,99,90,101,99,98,108,112,89,97,106,100,100,106,117,105,96,107,110,109,108,92,92,95,104,103,100,107,107,101,105,107,101,85,94,98,94,104,94,91,97,103,96,105,101,106,94,99,106,105,109,96,99,110,108,100,91,100,105,86,111,99,101,96,91,106,94,105,99,89,102,97,98,96,95,96,95,111,100,89,99,85,112,100,102,109,100,109,113,100,94,95,107,91,97,102,94,104,97,98,103,99,99,106,94,103,85,108,99,95,103,102,113,96,104,84,97,107,107,105,97,99,98,113,103,109,97,109,100,116,106,99,110,90,102,93,108,101,106,102,111,105,118,87,102,109,105,93,97,102,96,103,107,109,107,100,99,105,98,104,99,97,90,110,111,106,109,100,107,109,103,104,105,109,106,96,95,93,96,90,103,106,104,102,99,108,114,90,105,108,102,101,91,92,103,90,98,99,92,103,118,105,103,103,116,99,108,118,101,104,104,107,95,104,102,114,120,112,106,87,93,101,99,106,102,104,90,101,99,99,104,105,96,82,118,108,98,113,101,106,109,101,106,109,110,103,106,90,107,106,101,106,106,100,98,98,96,112,110,103,99,103,107,95,112,107,94,103,109,103,104,105,103,102,106,100,96,96,96,82,91,103,100,104,106,99,96,108,111,101,100,97,98,120,103,93,99,106,93,92,97,94,103,104,101,111,101,125,103,98,104,83,98,109,90,102,97,95,97,93,100,95,89,108,106,106,116,98,96,97,87,110,96,108,104,100,96,99,95,95,99,102,103,111,103,94,117,95,101,98,99,118,109,96,109,102,107,96,102,92,105,96,97,92,97,99,112,105,101,97,101,102,99,96,100,113,96,113,106,108,102,107,105,98,103,96,111,103,100,103,96,117,103,85,110,93,107,107,99,112,109,108,102,109,97,106,98,112,94,100,83,109,120,103,98,105,110,98,103,99,100,101,105,93,105,102,112,99,106,97,114,91,106,100,102,99,88,104,106,103,98,97,101,107,96,101,92,92,97,102,96,114,95,111,97,108,105,107,86,87,102,95,107,91,87,100,104,101,109,93,103,109,92,106,97,108,97,109,103,96,99,103,92,103,111,104,104,95,120,103,99,97,89,104,98,103,106,92,101,111,97,95,98,103,96,100,109,102,103,93,113,97,104,106,94,91,101,113,109,97,95,89,107,107,106,92,82,108,103,105,108,99,102,92,94,103,90,93,97,108,101,104,122,95,96,100,110,103,110,103,105,107,110,96,104,98,95,100,96,112,106,105,103,108,104,96,103,106,82,101,103,100,102,102,110,103,109,124,102,107,96,94,102,105,106,103,118,99,101,102,90,100,100,99,107,109,99,102,99,95,116,112,86,111,99,113,100,109,106,99,99,109,96,95,110,112,96,105,120,112,102,106,97,94,102,112,111,110,97,97,99,106,100,98,98,98,97,107,97,118,108,98,103,95,104,102,110,103,102,105,94,91,109,105,114,104,106,95,99,97,99,92,100,97,101,87,137,103,95,112,109,101,104,110,113,108,121,104,114,120,104,114,105,102,105,107,97,108,100,94,101,109,98,110,112,96,95,115,98,111,113,84,93,97,95,98,96,98,98,96,112,114,105,99,97,105,88,109,97,116,99,110,109,100,97,106,103,107,105,101,102,123,105,99,109,106,99,113,104,101,99,106,107,99,105,104,110,104,95,100,97,105,103,100,106,97,110,121,111,105,103,102,91,99,110,96,100,108,98,108,117,100,114,112,111,108,103,103,114,100,108,101,108,111,109,101,103,108,101,96,109,102,87,105,102,101,106,90,99,106,102,106,101,103,103,87,106,104,105,114,104,101,102,109,98,97,106,100,99,100,126,91,107,97,96,86,109,111,110,100,107,106,109,101,94,100,94,103,94,105,101,91,115,95,93,100,103,98,102,104,109,104,99,108,91,106,103,94,96,98,101,106,106,101,100,102,93,105,90,97,105,105,104,113,108,102,91,101,92,117,100,111,96,107,99,95,111,91,106,102,91,102,100,94,108,113,97,94,100,131,89,111,99,100,115,99,95,94,96,102,102,102,93,118,85,107,109,111,101,93,110,95,99,94,96,107,108,113,107,111,110,101,109,97,103,93,109,102,104,100,112,104,75,104,99,97,119,98,92,103,108,98,100,99,109,113,104,101,93,99,111,100,104,100,102,105,95,96,94,94,110,104,102,116,108,110,104,114,97,100,119,100,83,94,103,105,105,103,105,107,103,99,93,100,89,98,108,87,102,105,103,111,102,108,105,96,99,113,106,108,107,106,103,91,94,91,103,95,105,105,111,94,91,93,105,82,115,99,109,112,101,94,116,102,109,95,98,99,86,100,114,102,102,105,112,102,102,113,100,103,100,105,100,104,104,108,99,107,99,105,103,113,99,103,100,122,99,112,100,95,101,100,107,96,115,111,110,94,103,99,99,96,104,100,134,109,106,103,110,104,108,96,110,111,112,114,110,95,104,102,111,94,113,102,111,105,110,97,106,117,129,110,104,109,98,100,113,105,100,102,112,88,105,102,108,103,106,94,103,100,113,98,91,106,100,105,122,112,103,105,99,103,108,108,97,101,106,109,110,104,104,108,112,106,95,95,95,96,99,100,109,116,114,117,98,96,99,93,104,102,102,99,104,100,95,105,103,107,101,113,101,105,99,107,101,106,106,100,95,98,100,84,106,111,103,111,100,102,99,110,106,89,102,109,105,112,105,87,76,102,94,95,99,101,93,99,109,94,110,99,98,91,109,112,106,112,104,101,98,99,116,106,90,102,108,106,95,112,108,98,137,112,98,95,96,99,100,83,100,115,107,102,109,99,100,95,101,92,105,104,98,88,117,110,102,103,79,104,95,108,99,99,102,121,101,106,117,104,107,106,95,97,91,107,99,102,92,100,112,128,105,101,115,94,99,113,101,105,99,89,83,101,103,110,101,105,103,94,106,98,117,97,95,101,99,102,111,108,83,74,102,109,104,114,103,99,99,104,104,89,94,107,97,98,113,89,103,93,122,95,123,103,114,90,103,102,109,112,91,112,99,101,103,112,115,106,94,105,110,104,106,110,103,107,94,103,91,99,108,83,108,106,99,108,109,94,100,103,90,90,96,97,102,105,102,98,100,109,99,99,104,106,101,106,109,101,95,99,103,101,102,96,94,101,107,117,104,90,94,106,115,103,84,96,104,107,94,97,108,104,98,95,96,104,99,98,102,106,103,105,109,114,108,107,100,102,107,110,88,106,107,105,107,109,98,104,108,96,86,100,102,95,109,94,102,102,108,110,107,106,106,99,103,104,99,96,102,111,100,97,86,92,113,102,90,117,103,97,97,101,105,95,108,99,101,94,87,101,108,102,106,114,103,109,100,107,98,97,107,103,106,103,114,68,92,100,106,104,93,99,115,94,114,97,95,109,84,104,106,97,96,113,100,99,115,108,93,103,76,92,111,99,96,102,99,95,107,101,93,111,100,101,95,103,107,107,101,99,114,96,94,115,113,104,110,107,82,99,94,69,103,98,103,102,95,95,104,105,103,91,102,101,103,101,102,110,103,102,111,102,119,103,101,87,99,100,106,108,105,103,91,92,113,103,107,94,96,61,103,97,102,97,106,100,118,109,90,106,108,104,100,103,108,101,91,115,92,110,107,94,101,103,104,97,104,96,113,110,113,100,105,105,104,104,95,95,98,101,94,95,98,96,100,113,98,101,103,98,103,99,112,103,110,98,101,102,99,109,104,98,103,106,91,94,102,104,99,112,105,100,95,94,101,125,106,104,110,109,102,108,104,103,92,101,107,74,118,101,99,105,106,104,98,106,100,97,99,101,103,94,100,108,109,97,105,109,104,103,100,107,97,106,125,96,103,95,100,92,121,102,97,106,97,105,106,101,111,106,102,99,111,104,98,106,109,95,106,106,98,108,103,105,98,104,99,109,83,96,90,106,117,101,100,105,99,91,100,99,112,103,97,107,101,98,99,104,97,103,102,110,124,96,108,94,93,95,85,102,88,67,95,109,95,102,99,84,105,103,104,104,116,94,100,112,106,88,104,106,97,103,95,104,101,105,91,93,102,98,108,103,105,102,114,89,100,109,113,94,106,102,115,119,108,92,92,98,106,100,87,104,93,94,105,108,107,92,108,106,102,125,120,95,102,106,104,94,109,89,96,99,109,101,96,113,101,98,104,104,104,95,69,102,98,96,105,100,107,102,115,93,99,75,111,104,105,106,92,94,90,92,120,102,101,102,91,105,119,101,98,91,99,88,106,105,92,100,97,102,102,113,115,102,91,94,107,111,97,94,97,100,93,96,96,85,113,92,94,99,102,104,88,103,100,102,101,92,102,104,105,103,94,110,104,109,120,112,109,103,100,102,105,94,98,91,99,86,101,114,100,108,107,97,94,94,102,106,109,105,87,105,98,94,114,104,101,101,97,102,98,102,98,102,97,96,110,103,101,95,101,99,92,95,100,99,96,84,109,88,95,104,91,97,106,101,113,99,99,98,101,96,95,97,109,105,91,103,107,104,107,107,102,108,72,110,109,103,94,111,93,107,88,93,100,101,101,87,100,102,90,102,108,110,95,101,95,91,113,100,93,102,94,107,97,102,105,104,105,93,109, +413.2551,102,106,104,108,100,92,95,102,103,95,98,103,101,94,106,98,104,101,103,110,95,101,106,108,105,125,94,95,86,95,100,105,104,94,102,104,104,101,103,109,112,101,98,78,108,99,116,103,110,84,104,90,96,87,92,91,96,97,104,99,92,106,100,92,95,107,91,104,95,90,94,95,103,102,115,101,92,97,93,104,95,82,97,107,90,110,93,102,99,113,100,100,110,113,99,102,98,102,109,93,107,110,98,102,106,94,101,104,104,91,106,97,98,105,104,93,103,91,92,104,94,96,98,100,104,98,111,103,102,94,108,101,98,105,95,97,102,116,99,90,92,101,107,106,102,106,106,108,87,106,104,98,89,94,101,97,101,111,135,99,103,100,102,111,105,101,105,92,114,95,100,108,99,104,104,94,103,100,108,92,111,111,96,97,101,93,101,98,113,96,104,96,113,91,104,101,109,95,92,103,94,106,112,104,100,101,99,100,100,105,102,101,109,94,99,100,93,99,96,103,119,84,95,98,105,96,100,108,105,105,109,91,102,97,97,106,113,94,108,100,103,95,109,113,108,104,98,98,89,105,100,106,103,101,92,106,100,108,113,104,88,113,103,102,95,103,117,103,87,96,96,105,110,92,97,103,99,98,106,106,109,106,110,93,103,102,97,95,95,114,98,97,94,96,104,126,106,103,100,92,99,99,97,111,105,97,96,105,99,107,101,104,110,97,104,103,105,104,102,106,107,110,97,95,100,98,92,91,105,99,95,104,103,101,105,94,102,96,95,113,83,96,103,105,99,104,94,99,98,88,100,94,103,95,117,98,109,110,98,112,94,108,108,87,96,106,111,103,101,90,114,107,107,92,94,94,110,95,96,112,100,104,98,110,103,101,105,98,78,98,92,89,104,101,100,99,98,97,101,100,113,105,98,100,105,106,101,104,102,103,98,101,108,109,94,100,92,102,103,95,98,97,96,104,117,90,102,107,118,105,88,111,88,98,102,96,90,102,95,98,102,112,108,104,94,103,95,91,104,96,101,83,104,101,92,120,106,95,112,103,108,100,104,97,107,106,93,118,103,91,96,136,105,99,96,91,95,100,102,107,95,99,105,92,93,99,112,102,111,98,100,94,102,81,95,110,96,102,102,112,106,100,111,97,84,92,94,103,105,82,105,95,108,107,110,103,86,100,87,82,98,99,103,105,106,103,106,94,108,100,97,99,95,99,101,101,98,97,98,104,104,104,101,98,115,93,114,101,105,101,106,96,98,97,100,102,100,105,94,97,104,108,90,101,106,111,113,99,100,101,83,113,101,104,104,101,106,92,90,101,92,102,89,99,87,108,105,107,92,105,107,106,104,105,101,100,99,111,85,105,102,94,104,96,107,92,106,76,98,108,104,99,109,92,113,99,106,107,102,108,96,98,106,101,101,96,96,101,96,128,105,100,102,102,104,100,113,93,116,95,106,101,96,100,105,95,94,98,103,110,85,104,95,103,101,101,113,96,91,103,123,106,97,118,92,70,109,102,92,108,106,97,104,102,94,98,96,103,103,106,96,109,123,94,101,87,94,89,93,100,110,100,102,100,107,102,95,98,105,102,108,94,79,98,107,104,100,88,104,103,114,74,98,103,105,107,94,91,97,101,85,91,109,92,101,94,107,102,91,109,108,99,93,110,98,105,110,109,104,100,107,102,102,108,104,100,95,111,100,98,108,89,99,107,109,97,96,109,99,95,100,96,99,88,104,98,92,96,107,91,100,102,134,97,94,98,100,91,104,101,102,116,109,92,94,104,89,93,98,90,104,100,109,99,107,98,99,103,117,107,98,106,91,106,98,86,118,101,99,96,109,87,87,95,94,120,104,107,89,103,95,113,96,94,100,90,100,103,97,113,103,95,102,95,97,96,95,102,93,100,82,86,104,98,100,96,113,105,89,95,99,102,100,106,102,100,101,97,114,91,113,106,110,97,96,96,97,92,92,114,91,111,106,101,99,100,122,106,111,108,112,100,115,96,73,109,95,101,96,106,107,101,108,99,106,92,100,111,103,88,105,97,108,106,92,96,99,102,90,98,106,106,97,102,111,95,103,103,88,104,95,115,108,100,103,89,98,101,89,109,105,106,102,109,80,106,100,98,102,102,96,110,105,102,97,111,92,105,102,98,109,99,98,98,120,100,108,97,109,98,126,109,112,106,117,103,97,102,99,103,102,93,93,100,97,99,100,103,108,91,109,110,101,99,104,83,105,97,104,101,101,100,102,100,100,103,91,105,102,99,113,110,105,85,102,119,104,99,96,96,92,100,100,105,98,107,94,105,92,107,100,100,104,100,117,110,114,99,121,89,108,106,100,103,105,81,109,97,87,103,99,105,104,105,94,98,99,110,103,109,103,102,100,95,111,101,108,110,105,102,80,99,96,87,98,98,105,99,87,96,105,106,109,92,99,109,113,91,99,104,91,102,92,98,116,109,102,87,102,107,104,117,94,93,95,107,97,108,63,73,101,105,104,106,112,105,99,89,87,101,102,99,111,104,120,94,109,101,99,101,93,105,110,90,104,87,88,98,100,104,108,96,104,96,105,102,98,90,92,109,106,101,80,100,102,99,92,99,98,95,90,96,106,116,98,101,98,104,99,113,104,101,101,90,105,99,103,102,99,98,97,101,115,103,103,111,90,95,105,94,103,97,99,116,112,105,108,85,91,109,93,109,89,105,120,99,85,108,103,96,107,111,103,100,101,96,105,104,98,103,108,105,99,101,92,101,100,105,108,92,86,92,105,100,113,108,89,78,102,94,92,99,105,99,107,93,100,96,113,103,108,103,104,102,103,94,100,92,112,106,100,102,108,101,101,102,103,108,103,107,89,99,102,97,105,70,99,99,103,99,101,100,98,103,73,96,103,95,105,100,91,67,88,104,109,107,112,104,108,131,96,105,111,105,101,119,94,114,104,109,108,106,97,110,107,106,112,100,106,75,100,104,105,105,90,100,108,114,101,103,116,97,108,96,98,104,104,96,97,95,117,98,124,107,99,106,104,92,98,103,97,116,106,95,105,107,99,106,104,109,104,83,95,102,98,110,103,114,93,102,93,98,106,98,103,107,103,102,97,100,98,92,99,108,104,96,103,94,107,100,96,101,102,99,99,87,102,105,97,96,81,110,108,101,91,84,88,105,103,95,89,99,87,113,100,104,93,95,106,101,97,102,98,92,106,93,86,94,100,103,107,106,95,97,98,107,110,109,111,110,104,99,111,92,102,102,99,105,98,106,103,100,102,102,92,98,87,94,102,82,95,95,116,100,92,109,101,109,96,123,109,117,106,88,101,104,92,79,109,102,91,87,99,101,93,96,107,95,102,103,91,101,102,98,98,102,98,95,93,102,63,96,91,108,95,111,106,101,108,102,94,96,95,88,99,96,110,93,101,105,101,95,90,111,100,91,99,109,90,106,104,97,107,88,89,94,94,86,109,102,98,100,102,94,92,105,106,101,89,95,106,94,102,120,109,105,102,111,102,94,92,107,99,99,113,135,108,107,97,104,98,100,113,90,98,98,116,107,106,100,117,95,99,94,100,94,75,104,99,111,94,105,105,94,100,98,99,79,106,104,94,91,102,110,117,94,104,78,105,97,103,103,100,103,97,109,108,105,106,94,105,100,94,97,94,103,83,88,109,104,99,120,100,114,90,103,100,107,99,104,103,99,99,93,103,100,101,89,106,93,100,79,91,96,102,105,86,95,87,103,96,95,104,95,101,98,97,96,104,105,101,85,97,94,99,105,104,92,95,98,105,90,93,108,94,96,91,97,90,101,102,88,112,100,102,93,110,95,91,110,93,113,92,103,98,101,105,101,100,108,107,102,99,94,100,84,100,99,106,80,97,101,85,93,95,109,112,104,94,101,103,104,109,109,99,88,109,101,100,104,89,102,105,99,106,111,109,100,89,100,100,104,90,113,105,92,98,100,105,102,99,75,91,110,104,104,104,103,104,95,97,98,88,107,96,106,96,105,112,95,104,91,101,101,104,95,111,86,104,101,99,108,88,97,108,101,105,103,106,98,104,107,93,92,100,98,106,106,84,94,105,104,101,98,98,111,93,115,90,108,90,108,94,103,96,95,99,89,99,104,103,102,91,92,97,98,94,107,105,98,98,106,98,93,107,115,86,100,100,84,111,95,111,104,106,113,104,110,94,114,99,103,91,112,109,94,106,100,99,100,105,98,96,97,97,110,84,99,97,83,92,95,106,89,99,115,91,97,90,96,109,93,108,113,112,102,110,92,90,88,109,103,92,94,104,109,98,100,104,102,102,99,102,96,98,102,105,91,102,108,107,98,84,87,99,98,98,96,96,102,96,113,98,96,94,112,102,98,99,108,98,99,97,82,112,101,98,107,89,93,97,84,96,95,98,104,109,91,102,100,108,107,108,123,80,114,92,88,98,124,109,112,85,107,104,85,100,96,92,96,96,84,107,93,100,92,102,103,97,101,98,101,77,108,91,100,109,98,98,94,95,102,88,89,98,101,105,102,93,106,88,101,74,115,107,89,101,69,102,83,104,90,106,109,102,109,96,110,83,106,93,99,101,88,99,105,114,105,88,108,92,104,94,100,104,105,101,98,98,100,103,84,92,104,94,100,109,94,111,113,109,93,105,106,98,91,90,104,104,73,92,97,86,102,113,94,97,102,98,84,98,102,93,83,101,105,107,100,100,94,96,90,107,99,103,102,103,87,92,100,98,113,96,106,94,89,88,94,91,62,84,91,94,100,104,111,84,98,96,99,101,98,102,93,100,104,86,113,93,96,88,106,110,84,117,91,95,100,102,101,99,94,98,107,97,96,85,91,101,97,98,103,102,88,100,94,75,95,105,101,98,104,101,92,92,98,114,90,100,99, +413.39529,90,119,110,95,77,90,97,99,100,99,101,92,105,105,98,98,92,98,99,102,103,85,91,103,99,104,102,88,101,101,97,99,105,117,107,95,99,97,93,103,111,95,96,106,111,99,93,102,99,104,81,100,92,109,94,97,92,100,95,98,107,109,102,95,100,107,94,99,105,93,95,102,105,98,98,114,74,108,103,95,115,89,95,97,93,89,95,104,86,99,100,109,105,91,93,103,102,78,96,105,90,102,84,98,72,105,95,114,90,98,105,102,103,87,104,113,95,118,103,112,101,122,101,97,98,97,92,94,91,110,88,102,99,98,100,114,92,107,100,100,105,108,104,88,99,98,94,102,98,102,91,100,101,93,96,112,105,95,95,85,103,104,79,108,97,98,102,91,91,85,126,101,108,97,117,99,97,101,97,99,99,97,97,99,98,100,102,103,84,111,97,87,104,106,93,109,92,106,104,104,97,95,108,121,99,96,113,106,101,96,86,96,93,100,101,98,96,103,91,105,100,99,91,96,86,105,107,103,96,105,104,96,92,117,92,104,81,96,99,101,90,73,113,109,94,90,104,93,100,109,98,100,96,106,100,110,96,93,107,96,94,114,112,95,99,107,118,113,95,102,105,105,108,89,101,105,87,113,97,92,108,100,95,107,92,98,98,100,107,111,113,116,106,91,103,107,103,110,102,88,102,101,107,104,102,100,106,93,96,110,100,106,103,93,119,95,105,107,94,105,98,102,125,108,105,98,102,98,102,102,85,97,100,100,103,98,97,98,92,104,109,77,92,90,99,94,99,109,104,101,98,105,99,97,99,106,103,110,94,91,98,92,99,107,105,101,105,98,94,94,115,100,100,96,100,101,100,81,104,92,99,99,92,79,97,99,90,101,103,97,95,92,96,110,93,101,92,90,83,96,104,94,92,82,78,104,100,91,110,93,93,88,95,100,101,93,93,93,96,101,102,94,104,106,101,102,110,92,88,99,88,98,96,105,103,98,94,101,87,101,104,100,90,103,87,83,90,98,95,107,96,81,102,93,91,100,98,104,100,96,98,89,114,99,91,100,97,96,102,93,111,104,106,105,91,99,100,95,97,83,96,99,101,108,97,110,97,103,85,94,113,102,103,99,102,100,89,100,91,105,99,109,93,92,95,102,89,100,97,92,114,95,102,107,112,99,94,102,94,91,95,109,92,110,96,93,109,118,95,65,93,106,104,96,100,95,94,90,100,106,109,98,92,106,102,91,99,106,106,105,99,86,100,100,101,87,92,83,95,88,106,97,86,101,108,111,70,97,100,90,103,89,97,92,100,99,103,75,96,100,92,96,100,102,103,88,94,99,96,88,102,104,96,102,97,107,98,105,96,99,99,91,104,104,99,102,89,106,93,104,103,95,111,98,101,106,98,92,98,108,100,104,93,87,106,94,93,91,92,105,92,108,93,103,88,102,87,91,99,101,109,110,84,102,99,89,100,98,123,99,106,97,102,101,104,102,98,103,101,101,95,96,96,102,99,99,99,69,86,103,102,94,100,92,87,109,97,93,117,102,100,95,94,95,97,101,95,87,110,102,109,93,94,102,95,102,100,98,107,84,90,94,98,95,97,104,104,96,86,92,107,101,87,99,92,97,89,94,88,94,88,85,107,87,96,91,98,109,104,110,101,107,95,92,94,89,95,96,106,101,104,112,102,109,101,94,95,112,92,108,106,87,93,101,105,94,94,93,101,93,103,110,104,89,92,110,83,91,104,89,97,95,105,97,104,104,88,100,87,88,87,100,91,113,90,101,90,103,91,106,99,107,93,95,87,105,105,95,82,110,98,97,93,82,98,97,99,105,97,106,105,103,98,101,100,95,102,98,103,99,102,98,105,104,88,84,101,102,104,104,98,89,111,92,98,101,91,95,92,104,89,102,96,101,95,92,91,100,87,102,108,112,94,96,88,109,94,91,103,100,98,93,101,104,101,109,107,105,105,92,96,81,99,101,76,94,109,101,102,98,91,104,90,86,86,104,94,108,112,106,98,94,101,74,96,96,96,105,106,101,90,105,94,100,104,98,104,90,86,99,106,106,105,97,97,97,93,111,74,100,93,102,91,102,113,87,100,93,106,103,114,69,100,101,109,98,90,88,88,91,95,103,97,101,97,101,99,103,97,106,95,95,112,95,104,105,111,104,107,110,83,95,95,100,98,97,78,89,91,94,95,85,103,98,104,90,90,101,89,97,107,123,99,106,109,94,93,91,96,98,104,100,96,75,99,92,100,97,95,109,110,95,93,94,110,106,97,100,98,83,87,101,93,100,103,96,104,101,102,90,102,110,102,104,102,101,84,92,95,100,105,98,104,93,103,93,85,103,119,100,104,95,84,119,93,96,104,97,83,74,102,95,105,92,98,89,97,91,99,103,96,98,95,106,84,96,96,90,96,97,96,100,98,94,94,102,99,80,110,114,114,98,87,99,95,99,98,113,107,91,109,89,101,84,98,104,92,97,96,116,97,96,95,99,113,103,95,99,99,101,99,109,100,107,90,97,89,112,93,99,99,101,110,111,98,97,92,104,111,93,99,105,93,98,112,96,97,115,100,105,92,100,105,103,92,100,96,91,100,96,94,96,102,87,111,98,102,102,100,99,109,87,104,98,95,94,103,103,109,93,104,89,105,104,85,79,91,101,117,106,101,108,98,105,117,106,98,99,105,100,105,93,90,103,97,97,112,75,96,106,115,106,87,91,98,77,96,107,92,109,91,112,103,108,103,117,105,103,99,111,97,100,99,99,105,97,112,113,104,95,101,95,93,104,99,107,109,101,102,92,90,105,97,91,91,101,116,99,107,94,108,111,74,94,110,95,92,103,94,95,95,91,119,110,90,92,111,97,93,100,98,97,91,106,101,91,86,96,99,106,94,98,88,105,94,96,104,101,100,108,90,103,97,97,104,107,106,103,97,92,98,109,100,95,83,93,98,99,102,99,103,91,99,105,109,97,96,97,106,96,99,98,103,95,100,108,103,102,72,102,100,90,104,109,110,90,99,102,96,94,89,97,106,96,102,106,95,99,92,106,105,103,95,91,93,105,97,109,100,105,109,93,110,102,101,98,107,97,102,92,95,98,102,108,106,94,85,88,106,103,99,103,100,91,97,104,109,94,106,104,95,100,107,68,101,108,101,98,91,99,105,104,99,113,83,104,112,103,100,107,112,110,89,92,103,103,104,101,98,87,106,102,89,96,97,132,95,92,102,106,101,87,101,110,95,96,100,81,94,94,106,98,92,80,94,97,103,101,106,100,104,98,97,107,105,96,105,109,84,88,99,108,100,108,123,113,90,87,97,88,94,98,99,92,94,105,112,100,108,109,87,109,99,95,95,93,102,106,97,106,90,98,104,106,103,97,105,113,97,92,89,99,99,88,91,105,107,87,101,104,104,99,79,105,93,105,117,99,98,109,106,93,112,97,93,98,104,97,100,83,103,98,127,94,95,103,91,105,98,94,104,93,100,95,104,102,88,112,98,89,113,92,97,108,97,105,98,114,97,102,91,106,104,101,98,95,94,90,95,100,107,91,100,108,87,112,113,106,89,98,96,94,109,102,102,94,93,103,103,100,88,100,110,88,97,100,90,99,95,113,98,98,103,111,97,87,94,101,111,101,103,106,99,84,84,102,94,109,95,92,101,97,113,106,96,100,97,101,99,94,95,118,97,111,100,90,106,108,109,100,93,86,96,106,106,101,95,96,93,95,89,86,111,103,100,93,94,89,95,96,70,98,86,105,102,96,94,94,97,102,91,104,99,105,98,108,100,98,97,101,99,99,95,97,97,98,109,97,95,97,109,109,77,100,88,105,103,104,102,92,70,108,94,97,113,89,85,86,109,96,103,102,93,87,87,103,96,101,110,99,106,83,105,121,92,88,98,102,98,101,99,97,104,103,96,102,94,102,99,106,101,92,109,94,95,96,103,98,96,101,96,98,110,86,93,87,104,93,107,93,101,91,97,109,98,92,102,104,104,114,106,101,98,103,97,101,95,100,111,93,94,100,100,93,91,128,94,96,102,114,113,107,105,94,108,100,99,103,87,96,97,103,102,112,88,103,101,96,92,105,101,91,106,97,99,108,113,95,104,91,105,87,91,93,106,100,107,106,75,93,98,87,94,88,105,111,99,100,99,102,96,98,94,95,103,109,104,94,106,102,102,88,93,121,106,101,87,98,102,110,102,89,105,94,104,104,96,94,109,91,100,95,108,97,97,101,94,105,104,101,102,107,113,98,99,108,108,76,101,104,98,103,101,104,106,109,108,108,97,105,98,95,106,106,100,99,106,98,103,103,115,77,99,115,115,89,123,103,108,103,97,109,98,106,95,110,94,89,97,98,98,93,90,95,101,104,109,107,113,87,98,99,90,93,92,101,98,90,107,99,103,93,107,102,102,99,98,93,110,114,104,104,100,87,85,92,102,95,91,91,108,99,97,99,102,105,95,101,94,94,96,84,102,101,101,100,109,101,110,86,91,88,106,112,102,103,92,98,112,95,99,96,106,96,93,106,94,87,103,95,105,113,104,100,94,97,100,96,108,103,102,97,93,106,107,113,101,101,104,103,99,101,112,94,87,115,104,97,106,92,88,96,96,101,105,96,99,101,74,99,106,84,72,102,114,103,94,96,102,86,98,97,99,97,93,111,107,123,108,84,104,95,114,99,111,95,99,88,94,98,95,113,86,88,98,99,101,103,103,107,107,89,97,91,96,101,109,102,94,112,98,118,107,102,104,101,108,100,102,97,98,115,104,101,105,91,100,92,94,101,77,102,91,92,96,94,101,102,101,111,101,100,91,98,92,105,102,117,109,100,102,98,87,99,92,92,95,104,95,95,93,91,85,96,113,97,98,101,104,81, +413.53549,68,93,88,100,91,74,98,106,95,87,101,92,104,114,108,113,93,111,102,103,108,88,105,101,109,102,90,110,77,98,107,100,106,115,106,99,124,104,105,107,87,95,103,117,99,113,115,93,102,107,112,106,102,102,108,97,98,93,115,92,102,108,104,91,103,95,83,101,99,97,98,103,98,92,104,106,90,96,94,105,99,95,103,107,85,111,103,103,108,93,106,103,88,99,103,106,104,101,110,93,97,97,93,102,104,99,104,92,95,95,103,100,111,114,110,105,103,108,104,108,90,71,113,107,102,109,108,94,104,100,105,105,93,113,102,104,96,105,103,87,108,111,101,106,98,99,99,101,98,94,112,100,110,94,92,99,101,100,96,100,115,100,109,102,106,103,93,93,86,103,104,96,102,105,106,101,117,86,107,79,87,108,97,108,98,112,71,105,100,99,95,91,109,108,87,91,111,96,96,117,97,102,102,99,97,109,105,100,112,105,105,117,101,94,97,95,105,84,98,110,103,100,87,92,99,112,113,113,100,105,105,99,99,107,107,100,99,104,101,108,100,104,104,87,97,109,102,85,90,107,106,99,97,95,102,105,93,106,110,107,91,103,106,104,96,99,93,103,97,109,97,91,91,99,101,101,109,95,93,105,101,100,109,100,105,99,99,106,103,94,106,97,109,98,109,95,103,96,103,98,101,106,111,98,99,100,109,105,98,105,99,108,110,106,97,99,98,101,110,105,105,86,107,98,101,99,115,77,111,94,102,95,95,105,118,101,105,97,100,101,101,91,101,113,92,107,96,114,106,99,98,101,107,100,99,104,114,108,101,100,95,95,96,102,109,94,101,105,107,111,104,104,110,105,109,102,105,107,95,122,105,90,92,104,101,103,102,112,84,104,102,101,102,111,100,91,111,104,113,110,100,96,99,94,103,104,101,91,102,106,93,112,96,112,108,95,94,108,104,108,105,119,102,105,106,97,107,103,106,104,95,114,93,99,100,100,104,117,93,101,110,101,100,103,102,89,100,107,102,112,97,101,104,105,105,103,104,106,103,108,80,114,109,103,104,104,108,112,108,104,100,104,113,113,116,109,99,114,103,107,98,99,96,96,99,108,95,87,118,96,113,99,92,104,110,95,102,108,104,100,109,96,103,112,103,105,97,109,98,100,93,110,104,112,110,107,106,114,99,102,99,99,104,102,100,99,109,103,120,102,100,101,96,92,112,98,100,84,114,118,109,114,97,100,107,109,91,110,114,106,102,109,101,110,110,105,99,98,97,105,106,105,99,106,104,98,99,115,95,102,98,96,117,112,97,117,71,105,108,98,109,106,105,95,101,107,102,104,108,92,99,102,118,106,114,109,104,102,99,112,105,91,110,101,101,98,94,90,89,102,97,103,95,105,101,108,100,116,107,100,102,99,103,97,104,105,106,93,107,118,94,102,107,122,105,113,104,106,115,106,99,106,96,97,108,99,103,99,95,105,104,104,100,100,101,102,106,111,105,102,101,96,91,100,95,95,102,98,100,102,115,96,93,110,109,104,99,99,106,104,100,93,102,102,108,101,98,108,105,107,96,107,111,102,108,102,105,111,78,98,100,108,100,108,119,101,109,94,105,65,100,108,100,86,105,97,103,106,90,67,115,81,109,109,107,111,107,103,112,113,98,92,99,91,95,101,95,104,96,109,99,103,99,97,118,92,117,98,90,108,117,107,107,96,96,104,99,101,105,106,102,96,93,101,97,100,99,112,98,116,107,99,108,102,115,104,105,98,100,110,109,99,108,96,95,97,104,108,100,115,82,106,112,113,108,105,104,101,67,113,96,97,94,100,106,105,100,111,107,105,104,106,104,106,110,108,106,103,101,102,96,114,103,98,105,113,107,108,102,95,103,104,110,99,105,105,100,92,108,105,106,116,103,91,94,96,98,100,69,90,96,95,106,99,96,108,115,108,111,96,84,100,113,109,104,102,99,102,115,104,105,100,106,73,90,98,100,94,103,98,107,102,88,106,94,106,100,111,110,109,107,103,97,107,101,87,102,107,99,91,108,99,109,102,99,104,108,87,85,96,104,110,109,84,104,92,92,85,97,110,97,93,109,104,94,99,101,104,104,105,103,98,108,99,96,107,92,90,86,87,99,96,89,112,94,105,100,105,98,103,111,104,97,105,102,99,95,95,102,97,121,117,99,93,100,107,98,106,113,93,109,98,100,112,100,87,113,102,101,105,95,99,93,101,99,92,116,118,101,109,101,94,100,93,104,105,113,98,101,105,103,99,97,100,95,104,107,99,108,107,92,108,90,98,115,104,107,107,98,101,101,100,104,97,104,116,106,109,106,95,116,109,99,108,97,100,79,102,96,103,97,99,121,95,98,103,113,93,99,105,89,100,112,98,104,100,73,91,110,99,92,97,118,102,97,111,94,108,98,97,86,110,97,104,96,100,104,116,104,97,83,94,93,108,112,103,107,97,105,109,100,102,90,101,105,95,90,102,81,130,100,94,68,99,88,101,102,99,106,96,102,121,107,101,83,99,98,95,90,110,92,99,99,94,97,94,102,121,101,97,110,112,81,94,103,121,99,106,104,98,99,89,104,100,100,84,106,92,101,97,103,90,99,113,93,95,107,87,103,116,100,91,101,100,104,105,101,84,95,113,105,97,119,118,100,99,104,112,110,106,114,140,86,91,102,104,102,104,109,104,97,103,93,91,100,106,104,113,99,105,107,102,84,101,98,95,106,93,100,103,108,105,100,94,99,104,112,102,96,105,101,101,103,99,96,92,102,103,108,117,106,91,102,109,110,95,108,106,92,102,92,110,98,92,102,105,91,107,104,100,95,92,105,103,93,105,104,100,105,99,99,100,101,91,111,106,107,90,96,88,97,102,99,110,105,94,106,95,95,108,119,99,113,97,112,123,104,112,109,96,80,96,87,96,103,92,100,99,96,119,106,100,99,113,100,112,102,113,93,95,87,97,103,83,116,100,109,101,95,96,99,101,109,102,111,102,107,106,106,97,95,95,90,105,121,97,102,98,100,85,92,101,105,91,103,92,105,108,98,121,89,104,106,117,110,106,104,95,92,107,110,102,100,91,90,99,99,104,90,84,104,103,98,99,109,123,69,98,98,97,99,103,106,100,100,112,103,97,100,110,94,94,95,110,104,97,102,93,105,104,107,95,95,94,91,113,103,106,100,102,94,107,97,97,96,108,112,98,112,102,107,103,107,97,83,88,101,113,106,93,107,108,100,108,105,96,86,98,98,98,103,93,99,113,92,105,91,95,88,100,111,112,112,101,103,110,107,105,97,97,109,94,105,106,97,104,98,100,104,99,102,98,99,97,102,77,101,111,99,101,116,100,105,107,92,98,96,89,100,95,102,93,71,100,98,88,105,98,96,108,96,93,101,100,98,96,83,112,132,100,98,93,101,103,101,105,102,115,103,99,98,96,103,70,88,94,101,100,73,95,101,103,102,77,94,95,94,104,109,100,106,103,99,102,110,101,89,97,105,95,116,108,111,100,100,104,103,109,94,106,95,103,101,93,97,93,101,100,113,88,106,93,109,94,96,93,106,97,111,99,93,96,113,114,109,108,98,102,104,104,87,96,101,106,106,99,109,102,96,98,102,92,117,101,92,92,104,107,100,99,99,108,105,113,75,98,107,97,105,95,107,97,91,91,107,106,93,97,105,109,100,80,89,95,100,97,100,78,98,99,109,95,99,97,101,94,105,100,97,94,112,98,112,108,94,92,95,108,99,101,105,95,115,115,101,107,111,86,107,108,97,108,106,92,103,103,103,73,95,98,101,110,103,97,93,96,100,97,97,93,90,98,103,96,102,108,101,93,96,93,95,98,96,116,98,102,91,99,102,96,99,98,98,100,98,80,93,106,102,102,105,100,102,108,100,104,108,102,103,92,119,102,99,102,108,91,88,107,91,81,89,99,99,100,108,102,102,105,99,104,116,99,103,137,115,97,101,96,101,96,104,113,91,113,111,97,79,107,102,100,117,100,129,98,110,104,108,99,109,93,88,104,110,98,105,105,103,100,102,110,99,94,99,108,112,102,90,97,102,105,105,108,91,105,102,107,72,106,107,103,102,102,102,106,104,99,98,99,112,94,98,103,83,108,106,100,100,94,99,109,115,105,92,85,107,105,95,106,90,95,102,100,110,97,117,99,100,112,106,118,97,99,102,108,90,99,99,98,86,101,96,104,109,103,97,112,104,99,102,114,93,97,108,98,101,96,99,109,108,103,95,96,104,104,110,101,105,99,87,116,89,87,96,103,95,97,100,97,91,109,94,105,105,97,127,112,96,93,95,100,94,94,103,101,110,99,99,103,93,106,103,107,106,105,99,116,71,111,98,104,97,106,96,109,100,95,103,102,104,108,103,90,93,104,91,114,89,93,106,91,111,98,103,103,96,91,94,91,104,102,104,107,105,101,94,110,99,103,98,118,104,92,100,91,103,104,92,114,94,96,95,106,96,112,97,102,111,98,100,92,92,97,82,113,109,94,111,103,99,89,100,98,98,98,101,94,112,105,115,94,95,97,100,112,112,101,105,96,92,98,103,93,100,100,101,108,101,94,100,117,91,95,83,129,114,104,99,96,106,95,99,92,113,101,84,104,97,102,100,103,96,101,106,100,117,67,99,106,101,96,85,95,105,113,106,88,96,101,99,101,100,93,99,102,106,96,96,100,99,85,101,89,109,103,107,93,102,97,100,81,105,101,95,88,86,104,98,72,104,97,106,90,111,102,105,110,104,94,106,91,90,97,94,96,100,107,102,113,91,92,95,108,118,95,109,101,89,104,104,105,95,94,101,113,90,100,94,112,98,91,109,104,97,96,100,98,93,102,70,100,103,83,107,88,100,94,113,93,93,93, +413.67572,84,90,90,99,96,93,91,99,98,97,94,100,98,100,98,102,95,96,97,113,107,97,99,103,103,102,97,81,107,108,106,104,104,94,104,99,97,76,80,105,100,99,117,96,98,106,99,106,97,101,94,98,103,104,100,94,105,80,109,103,106,103,108,92,101,95,94,86,99,104,99,110,103,100,96,112,96,102,115,95,99,91,97,103,104,98,77,118,91,97,99,93,98,109,92,87,91,91,100,97,90,95,87,107,94,107,92,106,95,89,110,102,100,110,108,101,98,104,114,104,102,100,96,106,92,100,113,94,109,103,99,100,100,101,106,115,96,113,109,106,104,100,101,101,96,85,97,107,94,100,97,95,110,96,96,100,97,99,101,104,102,103,99,118,96,95,107,96,102,98,92,105,98,99,83,92,99,108,94,105,92,90,92,104,86,104,91,94,123,99,92,109,87,101,96,110,115,93,96,100,109,95,91,109,88,99,101,100,105,99,98,105,95,105,99,99,122,102,88,117,104,110,103,92,94,109,96,102,115,102,94,116,92,105,99,93,109,107,99,109,105,97,107,101,103,105,101,93,90,103,102,99,102,101,100,106,99,94,96,94,94,105,122,98,90,114,100,96,89,104,100,98,104,107,105,100,105,103,97,91,102,97,105,93,104,103,127,118,95,104,97,106,108,105,98,100,99,118,99,108,108,103,102,107,92,108,100,94,100,116,101,103,104,102,101,107,110,97,100,98,98,97,92,105,107,111,93,79,101,105,101,101,100,110,102,97,102,95,106,98,95,97,111,97,95,109,87,104,100,95,113,104,105,98,109,99,93,103,107,101,101,95,96,105,98,96,104,107,121,117,101,95,108,118,106,100,99,101,99,101,111,106,92,104,99,90,106,93,107,97,107,96,119,107,105,101,99,101,94,102,97,113,97,107,105,104,102,101,103,100,89,104,112,94,104,94,110,99,109,102,94,112,94,102,95,111,109,95,100,137,90,103,93,89,100,110,100,98,88,98,114,100,105,100,77,98,86,102,107,102,100,91,105,102,104,109,109,111,100,85,101,96,94,110,111,104,106,109,109,101,95,104,108,103,100,98,98,114,104,105,107,113,113,109,97,95,110,105,92,92,102,111,93,94,96,101,100,96,109,108,104,92,102,111,111,105,108,94,100,101,114,106,103,95,101,101,95,114,101,103,107,104,105,101,108,101,104,104,95,116,100,102,88,105,109,112,95,104,82,105,104,105,95,95,104,102,116,91,108,101,108,108,105,107,98,96,93,107,94,77,113,100,103,101,101,106,110,100,95,104,108,104,100,105,106,97,104,94,96,99,102,114,90,104,100,98,99,109,103,111,114,91,88,97,114,101,99,100,99,98,111,111,100,94,103,100,100,97,104,102,91,91,98,100,106,97,118,108,104,102,105,114,91,91,122,95,96,105,98,98,84,99,97,100,95,102,103,100,112,85,113,101,112,94,95,88,88,100,100,99,91,95,104,113,99,95,112,109,106,88,103,95,118,107,94,101,101,92,101,101,98,90,101,91,105,97,101,90,100,104,102,103,107,96,101,88,99,109,95,105,105,98,95,106,101,99,101,106,100,108,113,93,107,118,92,98,101,103,106,99,118,92,95,97,101,118,117,109,114,88,87,91,112,103,105,95,90,102,88,105,107,111,100,105,80,108,94,116,95,96,100,88,100,98,100,100,97,96,104,87,112,102,99,107,116,97,105,106,104,100,96,107,91,99,98,87,94,113,108,104,101,101,108,96,103,91,100,109,100,96,93,97,108,106,103,98,113,93,95,97,105,93,105,115,115,98,98,109,98,105,102,98,83,108,106,94,95,96,108,102,103,102,103,110,113,100,103,109,104,101,96,92,106,112,104,109,95,81,98,92,108,103,106,94,94,101,104,101,115,100,102,93,105,113,96,111,97,91,118,100,100,92,101,103,97,92,104,103,104,100,95,91,104,102,104,92,94,114,98,105,102,106,98,111,105,99,113,92,99,96,96,94,105,92,102,106,101,101,95,102,95,107,97,92,99,96,98,99,100,108,97,92,107,100,104,103,102,103,91,109,95,110,100,119,98,100,104,112,105,98,101,99,102,107,106,98,89,106,88,110,102,108,114,105,104,104,98,85,100,111,99,105,107,103,98,104,99,90,100,92,100,96,108,97,99,101,89,101,98,101,105,98,91,97,97,103,100,87,100,101,86,112,100,92,98,100,107,99,88,101,109,82,107,95,84,101,113,108,100,96,99,94,112,109,109,96,104,104,97,103,103,94,99,108,97,96,110,104,105,96,105,103,98,110,99,100,94,109,89,107,113,88,97,105,111,95,100,102,100,102,102,98,113,100,97,89,106,102,104,102,108,83,89,96,102,100,106,105,105,97,101,99,97,101,91,99,108,109,114,96,108,96,92,98,93,96,99,101,98,89,101,83,98,118,98,98,97,103,103,106,102,98,112,97,105,120,113,96,116,101,114,98,100,89,91,103,121,94,101,109,103,105,103,99,107,112,104,92,119,93,103,105,98,112,110,104,108,105,98,97,93,107,96,101,104,97,88,102,93,91,104,98,99,98,94,103,103,92,109,81,103,98,112,107,108,98,96,107,101,96,98,87,109,103,105,106,101,98,113,100,101,95,104,101,112,104,96,92,105,95,102,89,113,96,92,100,105,99,108,100,92,109,104,113,103,95,99,103,102,99,91,97,117,102,106,109,93,98,99,79,106,104,109,94,106,98,99,120,105,113,98,94,94,96,109,92,103,93,86,99,91,110,95,108,96,99,110,102,95,100,96,109,86,98,78,96,102,104,103,104,107,96,100,93,90,91,109,105,99,106,109,105,119,107,93,96,97,95,87,105,100,104,87,105,102,89,110,116,96,104,108,94,93,108,106,98,94,101,126,106,97,92,112,95,105,107,110,106,105,83,109,113,92,103,105,96,87,94,96,108,92,112,96,102,100,91,107,108,104,102,107,117,96,96,115,99,95,104,97,87,99,81,101,92,106,99,105,109,110,112,101,104,105,106,98,95,103,92,103,102,91,102,109,103,73,108,94,90,104,85,99,119,111,107,89,104,95,108,107,108,108,102,91,97,104,92,94,95,102,101,103,97,98,115,124,91,106,98,99,98,96,105,103,98,101,102,92,97,104,106,105,96,100,93,97,99,96,91,114,100,99,104,121,98,96,96,94,96,118,106,97,98,98,94,106,117,104,94,95,106,100,97,91,94,104,87,89,97,118,101,110,96,89,115,94,97,105,123,92,100,95,97,103,105,110,100,101,111,95,107,95,99,99,104,102,99,101,104,95,106,90,122,102,103,89,102,92,100,101,109,99,104,96,104,98,99,104,96,117,98,102,92,96,107,96,101,101,100,103,104,102,101,91,109,105,97,108,90,111,101,105,105,98,102,89,105,112,103,91,104,98,88,104,100,96,93,96,115,101,90,102,87,109,85,101,103,103,103,94,105,102,105,103,94,88,101,102,97,99,112,109,99,92,90,99,102,93,95,98,95,104,95,96,99,96,87,104,97,97,104,85,98,95,99,103,109,91,104,92,105,102,100,101,93,99,85,103,111,102,96,88,129,93,97,106,116,103,103,105,103,94,95,110,96,113,100,104,101,90,108,73,88,122,100,104,100,117,94,95,103,103,99,103,94,100,91,94,99,110,94,95,104,112,94,98,102,99,116,97,100,99,90,109,94,96,91,125,101,106,99,107,109,96,93,101,104,101,103,95,91,97,97,104,95,97,100,113,96,97,96,106,88,112,107,106,97,100,85,99,97,85,107,98,101,103,101,104,99,102,104,112,99,115,90,99,97,99,93,97,115,107,96,90,101,100,99,104,100,115,100,95,94,109,97,110,94,105,107,93,80,88,92,97,104,110,94,100,98,90,99,89,99,101,97,97,100,111,99,99,108,107,97,100,106,111,100,101,102,106,108,108,95,99,115,89,110,90,104,101,102,98,106,93,107,96,90,93,91,108,108,103,100,100,87,108,101,99,102,89,97,103,105,111,104,97,105,103,101,108,104,105,97,96,107,103,113,96,96,94,90,99,97,84,113,115,95,86,95,100,81,110,100,91,94,111,111,96,105,99,95,100,98,93,104,80,100,106,94,99,86,97,87,101,108,102,85,93,107,98,105,104,105,102,72,99,84,99,103,94,98,103,103,99,106,109,93,102,109,87,88,89,86,91,102,97,107,104,83,86,105,115,91,97,96,110,97,93,107,98,98,96,93,96,94,97,95,81,98,101,105,102,90,105,109,97,104,104,84,84,113,94,104,104,107,104,98,97,92,102,111,104,104,111,116,96,91,104,95,91,94,95,92,91,95,95,100,92,104,99,96,130,94,106,91,103,105,116,87,95,100,93,105,97,100,101,109,105,112,87,102,82,93,104,102,101,114,86,97,102,96,107,70,105,102,95,90,89,91,99,100,100,113,98,112,98,68,86,103,101,97,105,91,101,101,96,97,99,88,119,100,105,90,88,104,95,106,95,102,102,93,100,100,104,108,94,104,102,100,106,111,97,100,99,98,103,117,110,93,104,94,105,100,100,90,99,100,101,95,111,101,98,97,98,105,98,105,100,88,109,93,92,104,102,111,95,105,103,109,102,90,94,100,92,95,102,99,95,90,110,83,106,99,104,100,106,104,90,91,102,89,105,103,112,78,110,79,99,97,107,95,106,99,100,101,100,100,108,111,106,88,106,103,112,105,113,98,116,108,112,91,91,88,97,98,95,100,99,95,96,99,77,92,102,107,93,99,99,83,105,114,94,108,96,84,98,62,89,109,83,90,113,109,103,94,97,106,114,117,101,100,99,98,109,96,90,98,86,100,118,84,113,97,91,97,84,91,101,89,100,97,123,94,95,100,102,93,106,78,99,82, +413.81592,100,112,93,94,100,105,91,93,96,92,96,89,70,82,99,97,96,99,103,104,110,102,105,104,99,94,99,102,84,102,91,95,107,81,98,93,98,89,96,91,83,100,91,104,91,84,96,95,103,96,83,102,93,98,93,96,58,104,113,86,103,83,90,104,100,104,96,101,88,88,99,99,101,89,95,94,86,107,102,100,96,93,93,96,104,91,89,99,98,120,110,100,109,105,105,90,102,100,106,100,96,103,99,105,105,101,91,97,80,100,104,99,111,102,91,92,97,115,86,99,102,92,112,92,78,109,106,105,102,98,91,89,101,104,98,106,93,73,92,104,91,119,100,93,74,113,108,92,102,114,90,98,118,90,105,87,107,102,98,101,92,110,95,110,94,93,99,96,94,95,105,94,97,91,94,100,96,97,105,97,84,87,97,111,98,91,95,85,106,97,96,69,101,102,91,96,88,98,95,100,103,103,93,109,92,101,91,97,98,84,97,88,107,89,96,101,83,99,98,101,96,107,77,93,89,106,101,93,98,99,85,111,91,96,104,102,93,95,96,95,103,95,94,85,100,95,99,99,102,96,86,107,105,103,86,103,103,94,90,99,88,108,94,95,95,107,96,92,95,97,100,107,104,109,103,85,95,101,91,104,105,98,92,94,100,104,101,98,105,94,101,96,112,97,116,95,108,101,97,98,113,113,88,87,99,99,108,97,94,108,96,106,102,98,95,108,110,96,114,100,97,91,96,97,84,100,100,92,97,111,103,96,87,104,98,91,101,111,103,104,91,105,104,101,98,104,98,103,114,101,101,101,105,107,112,98,110,98,92,98,87,88,95,93,93,98,96,104,105,93,102,102,98,97,93,102,104,97,72,101,96,106,95,101,100,79,94,90,106,86,95,93,101,99,106,108,96,98,84,106,86,102,108,93,96,93,101,97,87,114,95,101,87,101,101,95,98,102,94,109,104,97,90,100,95,100,100,104,106,99,91,105,107,92,91,93,101,97,89,109,114,100,86,124,95,104,93,92,91,99,97,103,82,112,99,88,82,90,107,98,98,82,107,100,99,102,95,99,102,98,98,91,109,104,95,101,95,106,100,101,103,101,99,99,89,95,103,100,103,93,105,100,90,95,90,97,93,101,95,93,104,101,100,107,105,104,97,104,94,86,104,123,106,101,99,105,101,86,104,95,105,100,94,93,101,109,93,92,98,90,99,100,121,94,98,94,106,93,90,95,105,97,103,86,101,92,99,91,110,111,103,108,104,95,90,101,91,105,88,95,97,92,100,99,98,106,108,107,100,98,86,97,93,98,109,96,92,96,94,99,100,91,97,96,85,97,109,90,82,90,99,91,101,103,99,99,83,102,97,91,88,100,110,100,95,98,98,99,96,102,96,72,115,144,108,98,101,109,100,103,101,103,109,97,109,100,102,103,95,102,110,111,100,98,93,100,90,95,112,89,92,109,97,92,90,87,96,107,103,104,90,94,98,110,99,103,82,93,100,106,101,106,83,98,99,95,107,102,106,103,109,99,108,95,100,98,112,111,98,93,97,100,87,94,98,96,93,99,105,101,102,100,92,102,102,89,92,99,94,102,102,99,103,98,104,105,97,95,96,99,99,105,98,103,92,95,100,93,94,94,105,95,103,107,88,88,95,117,109,69,113,98,108,91,96,108,95,107,102,101,99,95,91,93,102,101,101,110,94,110,101,100,96,106,95,90,109,109,109,94,102,102,103,95,84,102,99,106,90,87,100,93,101,102,93,90,104,93,105,98,96,96,93,103,108,108,110,106,95,101,101,119,94,101,99,92,89,95,96,104,95,92,94,101,98,97,94,100,132,108,106,106,90,91,103,97,107,104,97,97,103,106,100,102,92,109,101,109,106,103,100,90,94,100,101,105,95,94,102,105,86,114,101,92,110,106,90,101,103,93,97,91,107,100,98,103,92,110,100,99,90,94,92,96,101,102,84,110,101,94,101,101,86,91,109,107,102,102,100,110,108,78,94,98,94,94,102,108,97,100,105,100,105,104,96,96,95,97,75,96,109,83,100,102,104,94,99,112,100,94,91,98,108,98,117,83,95,96,72,106,91,76,101,102,107,95,100,91,97,93,99,106,99,124,87,104,87,99,90,100,100,102,100,106,90,100,94,112,106,91,103,97,108,83,101,100,96,108,106,107,105,97,101,91,106,96,98,99,97,95,111,94,91,99,99,104,119,95,89,95,88,99,96,101,112,98,94,98,101,101,104,86,89,108,102,93,101,94,91,108,109,92,92,109,101,103,95,103,90,100,82,91,98,106,93,91,104,120,75,100,104,109,99,108,106,101,95,97,110,96,98,101,117,103,88,94,103,94,98,91,109,93,84,97,89,87,101,104,108,99,92,98,90,94,90,102,95,97,102,96,91,96,98,98,103,96,107,98,102,96,107,101,100,107,97,87,94,90,98,87,103,98,87,106,91,109,104,103,112,105,97,91,98,93,105,96,113,102,91,101,102,101,103,100,102,93,103,99,90,109,97,106,105,93,102,107,70,88,116,92,102,104,99,100,96,95,91,101,99,103,98,95,102,97,97,94,97,99,86,94,111,71,88,110,98,100,105,105,92,97,104,108,84,108,96,100,112,106,120,95,102,91,107,94,110,112,104,101,107,92,105,93,89,96,91,99,102,95,103,90,112,105,105,93,86,103,101,98,97,99,99,107,104,107,99,103,82,105,96,107,108,98,105,96,102,108,103,126,103,88,95,111,97,113,97,98,87,95,99,104,107,100,97,99,113,113,94,108,111,102,99,112,102,97,96,99,114,94,101,106,110,95,104,93,102,112,103,101,94,103,99,97,101,107,100,101,113,103,97,107,107,109,112,143,117,87,98,102,99,85,112,105,103,111,100,101,98,92,100,88,98,101,94,96,106,95,98,106,98,102,108,106,111,102,80,112,105,104,101,94,99,98,97,106,102,96,94,93,104,104,96,95,107,100,104,106,108,107,100,97,93,84,101,99,106,83,112,88,95,84,101,99,100,104,102,96,97,101,99,102,106,101,109,100,115,101,107,83,116,97,106,110,103,101,106,102,106,114,93,93,129,115,105,104,104,111,135,119,101,104,103,97,102,116,105,101,109,102,91,92,85,96,109,101,101,99,104,96,101,102,104,86,96,90,109,112,106,96,100,91,86,95,93,105,99,105,107,94,87,99,100,96,84,96,106,107,96,91,99,91,100,96,92,92,102,109,104,96,99,100,98,99,106,114,111,97,97,106,94,98,100,104,103,104,105,101,114,92,106,103,100,98,102,96,103,96,100,96,99,100,105,114,108,111,111,103,87,101,109,100,79,90,92,108,95,117,119,96,104,96,99,99,84,100,100,105,102,99,79,95,90,91,90,102,74,102,89,105,102,102,94,120,100,101,94,98,98,99,111,90,89,95,99,103,97,85,106,102,109,96,109,98,104,95,105,97,100,91,102,92,111,93,86,106,90,104,102,109,104,102,109,109,72,106,106,100,88,109,100,114,107,103,109,103,97,98,97,101,105,99,96,90,103,100,77,98,100,101,101,101,100,96,100,108,101,88,113,99,98,100,91,95,82,101,104,103,106,113,107,98,95,109,96,104,102,100,108,88,110,101,98,101,101,105,101,105,98,100,91,107,100,98,109,102,95,106,94,107,104,104,105,103,103,95,93,99,95,77,111,101,102,93,106,104,106,104,99,91,102,104,109,104,101,108,104,112,99,90,99,105,95,83,104,125,104,86,96,102,97,97,103,103,109,98,97,92,93,94,105,98,103,107,102,109,104,104,116,106,108,109,103,100,97,95,95,94,107,104,104,95,105,101,96,102,105,107,112,99,101,91,95,101,98,98,102,107,111,97,98,93,96,102,95,99,102,84,97,102,94,109,93,105,105,94,100,94,94,88,107,98,94,80,95,94,98,95,105,78,95,110,100,101,103,109,98,110,98,111,105,94,104,103,105,84,98,97,92,97,96,105,94,96,104,111,101,104,101,94,106,109,105,102,97,98,110,99,98,92,104,111,110,107,98,102,100,112,109,95,103,102,101,101,99,95,95,103,117,107,107,100,113,104,98,113,102,97,93,99,102,96,106,103,95,118,83,89,102,100,102,102,97,97,95,102,98,101,107,102,108,105,109,105,97,92,107,101,92,91,90,99,94,102,111,100,105,103,99,102,106,100,107,88,105,113,102,100,99,102,106,123,105,109,104,104,89,102,110,99,97,98,107,103,103,101,87,102,95,101,82,101,107,98,114,99,95,104,104,61,100,114,96,110,109,85,99,115,106,103,106,105,121,108,105,107,106,103,114,84,99,107,104,101,101,116,91,103,112,90,111,94,104,104,94,104,104,100,95,113,110,101,88,106,105,101,113,103,97,98,90,94,100,81,108,99,95,107,95,96,103,104,116,99,97,111,101,104,112,99,102,98,95,104,84,101,102,99,104,92,103,99,99,109,98,96,100,98,102,96,106,101,92,103,98,108,115,102,113,107,107,98,101,103,93,105,94,98,108,104,103,95,98,70,91,97,105,101,103,93,105,98,80,104,101,96,90,101,101,117,97,95,104,91,94,117,93,99,101,102,106,96,89,99,95,102,108,102,108,116,99,88,91,97,120,96,96,99,99,101,70,109,97,92,102,83,113,98,111,65,97,98,95,92,109,86,98,112,106,112,93,104,102,119,104,82,107,105,90,94,96,87,96,114,104,115,100,96,95,92,101,87,108,101,104,97,101,105,109,107,95,100,103,105,94,101,104,96,90,93,95,99,102,100,112,109,97,108,90,98,87,102,96,86,99,99,100,96,98,94,83,96,104,104,120,125,110,94,75,100,90,88,101,95,88,98,102,91,88,110,87,106,100,109,109,112,109,85,101,91,107,88, +413.95612,110,89,95,103,92,102,96,92,103,86,98,105,106,101,92,102,88,101,103,100,94,104,75,96,95,102,107,105,99,92,95,95,109,92,104,96,94,102,95,105,91,97,100,94,111,106,101,110,98,104,99,96,101,103,105,95,88,105,103,96,117,87,100,96,107,108,87,104,109,100,106,92,69,101,101,114,101,91,100,108,109,90,100,109,96,97,101,105,95,98,94,97,103,96,103,100,105,94,91,100,105,101,101,96,101,100,96,103,95,97,114,105,101,99,108,103,98,108,135,104,105,92,102,102,103,98,100,102,102,100,101,111,88,91,82,103,95,105,106,94,101,104,102,109,97,97,125,103,104,107,97,109,93,90,93,109,107,102,87,92,96,100,101,98,103,104,93,108,104,99,109,89,94,90,109,104,109,93,102,104,102,102,98,111,94,101,105,97,121,104,105,108,99,106,101,99,98,100,105,100,100,94,108,104,91,99,99,100,69,101,97,100,90,104,99,104,105,102,103,105,104,100,87,95,105,92,106,111,101,109,99,106,104,114,110,109,95,98,98,96,105,106,101,100,105,99,102,100,104,102,99,102,97,117,112,110,113,101,102,106,98,101,96,103,109,97,97,102,113,106,113,105,105,112,109,106,106,99,97,113,77,105,109,111,91,98,89,113,118,98,97,101,100,99,101,96,106,95,96,104,98,105,107,112,112,130,108,94,108,97,104,102,110,104,102,92,111,99,102,90,103,95,98,102,91,97,93,99,104,100,122,91,107,108,105,98,82,95,110,99,109,114,97,98,99,115,98,104,98,97,98,112,105,105,106,109,88,106,98,97,97,96,94,96,100,108,101,101,84,99,104,105,112,94,85,95,100,88,102,103,95,107,99,103,101,98,101,105,101,115,102,101,93,102,97,94,106,77,91,110,96,101,110,113,97,100,100,96,92,103,99,104,93,107,95,97,93,97,95,96,98,91,103,108,109,90,101,104,94,108,85,81,99,100,107,99,91,108,101,103,99,93,102,114,101,97,99,93,92,102,114,102,107,107,105,90,100,107,102,92,101,94,102,101,106,102,106,97,106,106,98,90,99,102,108,107,106,104,96,92,100,102,105,109,99,94,88,100,91,109,104,113,105,101,76,97,102,97,98,100,103,96,100,102,118,100,92,93,86,103,99,113,100,94,102,117,92,100,109,98,91,101,106,99,98,95,116,124,99,109,108,108,103,88,102,92,106,103,99,91,98,97,98,87,91,107,104,111,123,99,106,96,105,108,106,101,106,109,94,101,75,97,104,91,91,103,119,97,101,95,108,108,116,95,92,112,100,106,94,77,108,101,101,99,107,90,98,102,92,103,92,102,96,99,99,108,113,106,105,100,97,125,102,101,69,117,80,95,109,92,103,109,116,109,103,107,100,107,96,104,95,95,108,111,113,96,103,99,105,92,110,104,93,108,102,98,91,97,90,102,102,101,98,83,103,104,93,108,100,86,98,99,100,96,92,97,95,108,83,97,94,102,106,98,92,102,86,100,85,86,108,96,109,96,106,96,82,97,96,101,105,100,111,95,98,103,95,80,99,104,109,111,86,110,105,99,116,99,97,101,95,91,97,92,89,95,98,100,92,101,110,96,105,89,103,98,107,93,98,101,120,101,89,108,99,104,104,109,98,103,109,110,93,109,106,109,109,99,115,91,111,96,104,101,88,100,103,106,87,110,95,92,109,92,96,91,99,92,105,110,84,95,97,105,104,96,98,83,99,91,107,105,110,99,101,106,104,83,90,111,111,110,108,105,104,108,100,93,110,114,103,100,102,99,103,92,103,93,94,109,99,111,114,105,103,97,110,109,83,105,100,104,104,102,106,100,100,105,102,109,95,102,110,103,101,95,97,106,103,96,99,111,106,103,108,106,91,91,93,107,106,99,107,110,96,94,108,96,88,98,102,101,103,104,96,85,73,98,97,100,87,107,98,97,95,95,106,106,102,95,98,97,89,95,108,100,104,103,104,102,95,104,100,90,100,102,109,104,105,98,90,115,84,92,100,87,90,101,110,99,98,97,105,107,99,102,96,66,116,105,98,105,105,101,111,92,90,118,110,99,99,105,105,98,101,112,91,99,96,88,110,101,111,112,76,93,100,102,104,101,114,90,101,113,104,96,106,104,93,102,108,113,103,100,103,101,104,104,100,110,103,120,104,97,102,94,89,95,109,98,83,101,104,102,91,94,97,105,93,106,98,105,91,98,99,94,104,95,102,96,102,116,109,129,111,96,88,105,96,109,92,81,101,101,83,93,100,95,108,115,102,102,102,107,105,100,101,98,106,95,112,94,98,89,99,102,98,101,95,95,98,99,112,97,102,95,101,97,85,105,102,101,108,98,86,99,93,100,90,100,93,107,99,96,96,91,94,110,110,108,108,108,84,104,107,98,89,120,103,102,108,105,98,94,100,100,102,90,91,113,107,108,95,109,104,100,107,109,107,105,102,102,127,105,103,82,96,106,103,103,97,102,102,101,96,110,93,99,102,111,91,103,107,100,94,100,85,106,114,105,102,99,106,98,97,98,91,97,119,107,101,119,98,103,111,102,104,94,92,98,93,112,92,113,96,111,102,100,115,88,108,108,106,103,100,96,91,99,106,97,96,98,100,94,105,108,109,104,105,95,93,104,113,121,110,111,108,102,92,103,107,106,108,104,99,107,104,102,91,115,109,99,113,105,105,109,87,107,83,111,105,99,101,130,102,105,106,99,104,97,95,103,87,112,96,108,107,97,95,97,107,112,102,102,97,97,104,88,98,102,95,99,98,115,93,110,117,92,105,92,98,98,91,105,95,100,90,108,109,100,97,112,111,105,105,104,95,118,103,110,95,105,113,114,117,97,95,100,103,93,102,106,90,110,113,107,100,97,108,99,111,107,108,103,100,85,115,104,96,111,113,112,100,96,111,109,94,93,102,105,105,108,99,105,102,110,95,109,99,116,98,102,100,105,108,105,117,96,96,103,100,105,103,95,115,113,95,104,103,108,99,105,105,110,103,102,93,94,96,102,89,87,106,94,91,103,107,115,98,100,96,91,100,92,103,112,97,97,105,99,107,118,104,95,102,103,105,112,92,93,74,102,91,107,106,101,98,104,107,100,105,95,113,101,83,105,102,102,100,100,98,94,91,100,95,113,99,93,102,106,98,106,90,98,111,114,108,96,109,104,102,100,107,104,94,101,106,107,99,111,102,103,92,96,102,100,107,106,93,113,99,123,107,104,104,90,107,113,100,96,107,98,102,106,102,114,112,100,100,92,103,103,95,113,101,100,102,115,96,98,107,101,97,106,99,101,103,92,116,100,107,99,99,92,95,106,102,100,105,107,98,105,96,108,102,102,107,90,103,96,87,99,95,104,111,99,112,112,111,107,113,109,89,99,108,99,99,81,100,104,108,104,94,101,104,95,109,101,121,90,108,107,103,99,117,107,100,104,96,100,117,110,83,105,100,97,92,99,113,113,98,105,102,106,103,103,100,103,98,97,102,109,110,121,95,101,109,103,104,99,99,107,112,102,119,94,108,97,98,104,99,96,109,88,101,116,100,91,108,95,121,91,102,108,115,115,96,107,139,102,112,110,109,100,103,93,103,99,94,109,105,105,121,98,90,109,96,87,98,110,94,95,92,107,99,95,94,109,87,97,82,111,112,99,100,110,108,87,98,113,96,105,104,98,96,94,108,108,107,102,110,96,103,102,112,107,113,105,97,107,115,94,93,90,111,106,104,100,109,108,98,100,108,96,99,112,111,91,107,99,92,104,97,122,106,106,123,99,97,108,117,92,94,94,110,100,105,95,87,107,104,113,94,95,87,107,106,91,94,100,97,105,117,113,114,100,96,98,108,108,91,98,98,103,102,101,98,109,93,112,109,107,98,107,105,102,108,90,110,104,105,94,106,98,112,102,101,110,102,84,100,107,95,105,101,96,98,107,107,102,109,92,100,97,109,100,108,101,107,99,112,98,104,105,106,93,97,97,116,83,114,94,88,96,100,96,109,99,102,105,109,106,100,91,110,101,105,105,108,100,113,99,98,109,109,109,106,114,107,96,102,112,106,92,113,100,105,101,107,103,106,95,106,91,105,112,108,92,116,105,97,94,109,103,94,95,114,102,102,96,107,103,98,97,99,103,108,76,98,96,109,101,107,96,100,94,88,106,107,111,108,100,101,113,99,103,102,94,86,113,105,91,103,92,100,109,101,97,103,109,96,103,110,94,103,105,95,100,107,99,108,98,109,93,95,111,105,98,91,110,103,106,108,102,100,108,84,109,110,104,100,113,99,103,116,101,110,105,66,86,112,105,109,95,103,100,103,95,106,109,97,91,91,95,102,100,101,106,104,101,98,113,97,112,96,97,108,102,102,88,96,90,99,107,98,103,102,85,100,120,114,109,105,105,108,105,108,93,112,101,100,112,111,111,102,88,98,104,109,98,89,108,95,105,105,103,102,101,97,105,98,95,98,100,107,105,103,97,98,113,98,101,95,103,108,105,102,104,94,103,111,98,100,101,110,98,105,84,103,90,121,97,112,107,115,111,97,107,96,101,106,102,108,95,113,116,113,105,96,105,100,110,108,100,97,81,103,116,105,96,95,96,103,97,106,94,105,93,102,107,99,85,109,107,101,109,95,100,101,109,90,109,104,101,113,92,105,106,101,90,100,109,97,102,103,101,109,116,101,109,94,97,100,102,100,95,101,89,93,104,107,83,108,107,95,108,103,112,98,110,87,87,105,102,108,106,100,102,91,102,95,97,90,105,99,100,99,98,119,124,109,98,98,100,102,95,98,95,97,96,103,95,108,109,96,101,90,108,103,97,104,96,98,92,105,86,114,88,99,88,113,110,92,97,114,106,115,94,96,92, +414.09631,114,80,103,108,93,116,91,104,104,109,100,97,99,103,103,101,133,91,95,94,91,78,102,110,109,111,108,101,97,113,104,91,91,89,95,111,109,91,103,87,107,108,102,108,97,100,90,106,101,94,111,102,100,95,100,91,106,87,103,93,78,100,111,100,92,95,106,104,106,106,108,101,99,104,96,92,89,100,106,82,98,116,92,101,95,103,99,96,90,90,112,105,104,95,109,105,105,102,104,110,90,86,103,110,88,99,102,108,107,100,99,109,102,110,111,89,98,111,107,91,101,98,105,107,100,109,105,89,97,98,98,95,94,92,113,108,112,99,101,99,81,101,87,97,95,82,109,94,101,101,99,97,107,94,116,100,99,79,105,101,104,114,94,95,113,95,97,103,102,106,103,99,104,95,95,102,100,97,98,107,97,98,101,81,112,93,98,78,101,99,98,116,93,110,108,106,101,95,108,96,92,96,81,115,104,107,110,114,111,103,117,105,100,98,99,94,109,92,113,86,94,102,96,97,99,121,101,106,111,94,99,84,98,92,109,92,100,102,99,104,106,104,105,107,106,101,96,109,103,100,94,104,99,98,95,108,99,112,106,107,99,85,95,78,106,98,104,107,101,102,94,106,103,88,108,102,104,107,97,100,109,102,105,105,115,111,104,114,116,107,90,107,99,99,111,108,96,101,99,109,97,101,95,102,101,110,108,110,109,117,87,111,96,108,107,91,110,107,105,92,103,93,96,96,107,102,100,110,98,98,97,102,119,107,104,103,102,105,104,109,103,106,102,94,99,103,95,101,99,106,92,115,77,105,110,86,110,102,102,94,106,99,110,89,91,101,101,104,98,109,105,105,106,105,109,104,102,102,105,96,99,104,110,84,91,120,100,101,109,103,109,94,105,99,104,102,109,104,101,95,96,103,114,99,103,104,91,102,103,109,94,110,88,100,102,100,88,101,105,110,101,95,99,106,103,104,94,95,114,95,94,103,98,83,99,108,102,111,105,74,104,91,123,102,101,105,107,95,98,105,105,108,126,125,95,95,105,98,103,99,114,100,104,108,98,116,105,102,116,96,104,101,96,104,108,108,112,111,102,104,102,93,105,90,100,98,116,107,99,103,111,94,112,90,89,106,109,100,103,106,95,106,96,102,110,117,90,106,107,101,107,103,104,104,96,102,101,100,117,94,101,102,105,102,111,114,104,97,88,105,91,112,107,106,100,90,110,110,99,104,97,101,91,110,112,103,117,91,109,110,116,107,108,108,86,94,108,115,104,107,107,107,107,107,97,111,97,109,96,102,92,93,95,100,99,109,101,101,96,98,110,99,106,100,101,94,103,102,106,105,105,98,101,110,116,110,99,112,106,98,101,106,102,101,107,100,95,102,101,115,91,98,102,88,110,106,101,105,104,102,100,110,111,109,105,100,92,106,103,111,102,94,109,103,90,116,110,94,100,100,108,103,91,103,98,77,92,94,114,107,109,107,98,106,105,103,117,107,108,104,107,114,99,111,105,102,105,84,107,101,117,99,101,112,112,97,98,101,111,104,107,108,113,121,106,107,99,99,96,103,98,104,101,103,97,88,110,105,116,105,101,99,107,74,107,109,110,99,94,99,108,105,99,92,97,88,94,107,110,99,105,104,111,104,106,103,102,95,108,106,104,98,95,97,96,105,110,99,113,100,97,118,101,83,93,117,121,110,103,94,114,102,97,107,107,101,108,108,112,105,96,105,100,103,103,86,91,106,87,100,101,99,108,91,86,104,100,103,103,103,113,69,108,112,96,94,91,119,99,90,109,99,102,108,110,92,111,92,87,106,105,105,103,106,103,114,109,99,100,104,115,106,100,106,106,101,103,97,112,97,98,96,112,112,113,107,116,109,87,105,105,112,96,101,92,102,114,105,109,102,105,107,106,93,91,110,98,109,99,97,110,116,95,94,99,104,93,113,87,118,93,101,102,98,111,107,100,113,103,103,114,105,98,111,110,103,104,103,102,106,103,105,64,104,104,98,97,108,122,104,114,108,113,117,109,96,94,103,94,110,101,120,103,100,107,117,103,94,93,102,108,85,95,108,110,91,97,90,104,98,100,104,97,101,112,105,105,109,101,99,96,100,100,100,99,105,102,117,108,102,116,113,103,101,98,94,111,104,96,107,98,111,103,104,103,107,115,107,115,99,87,91,102,97,79,98,94,106,98,96,98,108,115,100,105,98,105,99,94,116,107,113,106,106,99,101,106,89,101,90,88,97,90,91,104,99,90,102,109,96,102,102,94,101,106,97,101,99,99,96,89,103,95,101,100,102,101,97,102,109,105,102,99,92,108,108,87,103,96,95,100,114,98,101,102,104,104,104,106,84,112,113,84,102,100,94,95,105,101,94,96,100,103,98,100,94,101,101,93,114,90,112,103,104,96,103,89,96,103,80,100,98,96,88,101,107,100,96,109,106,127,115,100,104,100,109,100,120,108,85,107,95,107,100,87,110,96,109,104,111,110,103,108,104,95,83,104,112,103,109,98,111,79,97,98,101,91,104,104,72,102,96,102,80,67,96,100,103,101,104,89,103,104,92,114,104,83,83,99,100,99,100,101,99,102,112,108,99,101,102,109,115,115,90,105,101,101,107,101,108,113,116,98,100,99,107,98,106,100,102,97,105,113,105,106,97,103,106,115,105,103,104,95,109,117,105,102,117,121,113,87,102,104,102,101,102,102,109,108,103,104,107,98,100,103,97,117,115,95,102,111,105,99,99,106,105,101,110,108,101,90,111,106,102,95,99,90,109,98,96,96,106,97,99,91,103,102,101,117,124,94,100,105,97,104,99,100,107,98,106,106,103,105,103,99,94,108,103,107,104,99,99,103,100,115,105,113,121,92,97,101,95,100,113,101,115,101,105,99,99,102,100,117,109,104,102,98,110,79,99,103,113,104,99,91,118,97,106,103,95,108,99,98,110,94,102,107,116,104,105,113,110,96,108,106,104,102,99,107,97,99,108,111,106,119,93,104,108,103,113,99,116,99,103,104,107,117,110,103,112,101,114,91,92,117,109,103,106,101,106,89,105,105,104,94,96,114,94,110,113,103,104,108,96,116,116,104,106,103,95,110,98,100,113,103,96,108,110,103,98,104,103,103,92,100,104,110,101,106,92,96,105,107,101,101,114,100,98,109,97,113,71,104,101,94,102,106,118,106,101,96,97,100,88,97,91,93,102,96,96,107,100,99,106,99,93,96,103,111,96,111,114,98,117,111,98,105,106,100,104,102,107,120,95,98,106,96,102,103,106,102,91,101,110,103,103,104,108,108,110,100,102,106,100,111,114,105,101,103,104,98,109,103,108,105,99,110,109,94,96,93,106,104,111,104,104,107,89,97,101,103,104,102,104,102,103,107,108,116,109,97,110,106,111,102,94,83,105,103,110,99,96,94,99,91,96,98,99,113,93,103,95,103,87,93,101,109,100,97,111,100,106,101,103,91,110,111,95,110,109,89,93,94,110,96,110,99,111,89,99,104,106,95,103,96,95,99,109,108,113,94,109,96,91,109,110,93,105,112,110,100,102,108,102,104,108,99,106,103,95,90,120,97,108,109,101,99,111,110,108,97,106,110,100,98,106,105,93,103,109,94,98,100,96,102,111,105,98,106,106,100,96,105,103,109,103,102,119,103,99,114,110,102,96,100,99,109,99,107,98,108,113,109,117,101,102,104,100,105,116,100,99,97,105,104,106,100,96,93,99,105,92,105,88,103,98,100,98,109,96,100,96,103,106,100,91,100,96,98,99,101,91,120,103,109,100,108,103,105,103,104,95,112,94,104,98,108,96,111,101,101,100,101,125,93,113,99,101,105,102,106,98,98,103,105,109,118,91,105,110,96,103,113,115,100,97,100,101,108,96,93,100,99,100,97,107,109,98,109,111,110,96,100,103,109,103,110,119,68,107,88,95,92,114,95,102,98,106,103,115,102,104,108,100,107,95,101,97,101,111,109,102,101,94,115,87,93,96,98,105,100,86,98,108,105,101,111,101,108,106,108,99,110,98,107,109,104,96,89,99,100,86,101,90,102,102,83,107,112,99,106,108,100,112,105,110,91,109,105,95,99,100,102,115,100,116,109,105,105,105,112,91,92,101,100,103,95,104,97,109,96,102,83,104,94,104,103,88,98,94,103,84,94,95,117,116,99,104,105,101,97,103,102,113,99,101,102,91,86,107,112,101,100,113,97,87,113,100,96,87,90,112,102,106,86,104,99,100,92,102,105,95,113,106,101,101,94,95,96,117,117,103,109,102,110,110,102,104,96,113,115,105,103,113,103,102,104,102,103,97,116,97,104,124,105,97,105,94,99,85,102,110,105,114,96,101,121,109,98,91,99,111,106,100,97,98,111,107,83,113,88,97,96,109,93,95,83,97,100,104,108,105,102,93,103,91,100,96,104,105,107,112,96,99,101,94,99,93,101,97,105,105,99,102,103,100,104,93,98,104,90,95,99,104,100,112,95,104,101,97,99,108,100,95,104,103,103,113,90,99,93,98,104,95,94,87,107,103,104,108,100,100,113,111,98,107,108,99,103,97,108,106,106,103,113,92,105,101,107,93,74,98,106,103,91,108,103,107,74,95,99,100,109,105,107,90,103,102,103,98,94,92,115,100,104,91,103,99,114,97,100,98,107,101,103,97,106,106,105,113,91,100,108,80,109,103,103,98,86,93,98,100,96,102,108,96,103,94,82,103,108,90,110,100,102,105,98,99,98,106,104,109,100,99,105,97,103,102,109,101,105,103,75,104,93,84,108,125,92,104,106,103,98,94,104,100,105,99,112,126,103,105,101,105,81,98,103,114,99,103,91,109,105,102,97,100,100,113,111,95,113,102,91,106,105,125,91,110,93,85, +414.23651,100,105,112,96,99,114,122,118,96,101,98,103,97,119,98,97,122,106,105,85,115,97,104,127,97,101,104,115,117,102,95,89,80,94,111,106,103,97,109,100,108,101,83,102,101,94,96,110,91,101,101,105,104,93,108,89,91,91,109,94,111,103,102,93,104,102,88,91,96,110,94,94,100,107,105,102,95,92,117,103,100,90,91,113,106,108,107,95,99,106,106,84,113,102,104,82,99,94,108,107,104,108,108,91,104,110,97,99,105,93,105,116,105,115,102,117,102,106,93,101,104,95,97,99,107,99,110,101,105,103,113,105,101,95,105,89,99,104,91,105,104,106,109,119,100,104,97,96,102,104,100,112,111,98,116,96,108,109,97,106,93,106,109,113,104,98,99,106,110,84,104,103,98,109,105,105,108,96,94,102,93,110,93,100,94,101,92,100,97,122,105,107,109,102,104,100,109,86,89,103,105,110,114,102,96,92,104,115,107,108,108,98,102,99,104,93,95,90,101,105,95,101,100,93,96,110,101,105,93,105,89,102,95,106,113,120,108,102,91,87,88,102,88,106,93,93,90,106,98,102,99,106,103,100,102,106,104,85,98,105,93,105,102,91,112,116,97,91,95,98,112,96,105,87,107,102,98,109,103,100,104,105,99,104,105,107,103,100,87,107,93,95,110,104,107,101,86,101,114,90,95,99,96,101,98,102,103,114,106,100,98,91,102,99,101,94,91,96,101,98,93,100,102,98,104,96,101,104,117,109,105,93,96,102,97,105,98,101,94,96,105,102,113,94,97,101,103,110,103,96,106,114,100,92,94,112,99,98,102,101,101,106,106,90,118,98,92,108,93,108,110,104,103,107,96,108,99,101,94,109,104,100,119,99,96,98,100,83,96,96,111,96,99,93,103,102,101,108,120,109,91,115,98,96,111,97,94,105,97,116,92,87,105,107,100,104,104,103,101,98,114,103,104,101,111,94,107,98,87,102,89,96,100,110,93,91,96,110,100,105,104,91,101,106,100,92,96,96,109,109,101,110,100,112,108,103,98,105,109,98,91,98,102,100,102,114,99,100,114,98,102,107,100,99,99,100,98,102,103,103,105,91,88,104,100,102,109,106,80,108,94,104,100,96,101,100,99,100,106,91,117,103,121,102,114,102,101,100,82,108,101,103,99,98,105,104,101,105,92,102,99,108,99,100,67,103,111,110,111,72,102,99,115,91,114,109,130,108,96,104,103,103,93,100,95,113,105,93,96,103,95,106,116,103,98,92,99,100,118,96,92,87,102,105,112,84,96,103,109,95,101,102,118,104,106,106,106,93,114,108,97,103,108,91,108,94,97,102,95,101,110,106,98,119,99,91,117,106,96,109,83,104,107,92,100,97,109,103,100,102,96,104,106,97,99,100,94,104,101,101,111,92,107,111,107,105,108,108,96,90,106,115,96,102,95,94,96,104,114,102,90,108,95,101,104,98,101,103,119,109,97,104,121,99,94,107,104,110,104,101,107,110,99,107,98,105,105,91,116,99,109,114,99,91,98,114,98,91,98,92,109,109,112,96,98,93,100,90,95,110,100,117,97,103,100,103,107,109,108,99,104,95,99,97,100,100,114,98,89,96,118,94,99,109,85,93,115,100,118,108,106,96,81,105,103,94,91,109,110,104,100,106,92,112,98,85,112,101,101,96,105,99,115,99,102,110,120,86,109,98,107,98,101,106,102,93,112,91,100,97,101,104,92,96,90,106,115,87,100,112,100,119,102,96,96,95,87,100,99,104,100,99,113,121,99,106,110,103,99,106,97,102,98,103,100,102,100,108,99,105,100,96,97,101,112,108,105,100,100,105,114,95,103,95,110,98,102,96,106,95,111,110,106,103,77,103,109,99,112,102,104,91,106,105,99,98,115,101,108,107,89,105,103,97,86,114,91,106,94,97,102,104,105,109,98,97,103,91,100,97,81,109,98,100,88,100,106,106,103,96,113,99,99,99,99,110,107,84,97,103,100,114,99,94,105,90,95,115,108,98,102,92,117,111,82,83,90,99,98,92,91,108,101,96,100,91,102,98,106,101,106,108,111,93,100,94,91,106,106,96,95,112,108,105,117,94,96,96,98,102,98,103,116,111,109,111,97,111,103,107,102,111,100,101,95,109,113,99,97,105,111,100,125,105,96,107,98,117,110,101,104,106,117,95,101,94,88,95,76,102,91,116,106,103,103,110,99,95,92,106,119,103,104,94,100,95,103,97,99,113,99,106,109,100,96,98,117,120,102,108,105,97,105,103,107,100,102,96,98,97,87,95,105,108,97,109,99,101,102,105,106,106,115,112,100,102,107,111,104,100,102,99,133,100,90,104,84,100,117,100,98,104,102,94,98,104,95,102,91,91,96,96,104,97,97,89,103,105,95,115,113,91,90,109,103,91,92,99,104,98,99,109,94,94,90,94,102,98,73,101,113,96,96,108,97,110,90,93,119,88,106,102,91,93,105,100,101,82,113,108,100,105,121,104,87,80,99,88,102,111,93,108,113,110,101,91,95,95,94,100,83,100,98,101,107,95,107,99,97,101,112,114,83,81,105,114,102,106,98,98,107,92,94,109,101,101,103,113,113,98,98,95,102,104,98,98,100,95,102,112,109,95,97,101,96,113,115,106,107,100,97,87,100,113,98,106,117,99,109,111,111,105,94,102,108,104,107,109,91,136,93,103,104,103,109,101,96,100,102,102,111,107,107,127,101,108,114,111,111,101,124,96,92,107,113,106,120,107,93,111,104,98,98,98,97,103,79,104,113,113,99,100,87,109,96,103,98,97,103,110,102,102,110,104,99,102,98,103,100,102,104,103,112,101,109,101,97,107,93,110,96,93,100,99,117,99,111,103,100,99,120,107,98,102,112,97,94,112,105,92,112,108,102,101,99,107,120,94,109,108,104,114,103,94,101,105,106,104,105,101,103,102,95,104,99,106,96,101,95,102,109,110,87,101,105,104,102,106,110,105,114,80,107,100,110,105,114,103,104,91,104,84,113,107,96,105,95,91,106,110,112,118,102,83,93,104,104,108,93,101,98,99,94,98,99,91,104,92,107,97,100,111,94,97,94,93,112,102,93,100,114,102,99,112,109,105,95,110,104,97,100,100,96,96,98,97,102,101,102,100,102,109,88,106,104,115,96,99,106,106,109,95,87,103,116,99,99,98,100,106,90,90,104,98,98,92,107,89,103,105,109,100,94,94,105,98,98,115,107,110,96,102,101,106,110,113,105,116,107,109,101,90,102,105,98,84,91,105,106,106,105,111,116,105,100,102,118,97,93,95,100,112,119,102,96,111,93,98,107,93,105,100,96,113,104,114,110,91,109,104,106,77,110,106,91,102,93,101,101,106,106,99,96,99,116,101,106,103,109,116,85,92,107,96,103,92,96,95,98,94,94,68,108,96,95,84,97,100,112,101,94,109,105,97,86,101,110,99,93,99,97,114,103,96,97,122,102,101,104,93,102,101,106,99,100,101,98,100,94,99,99,112,96,98,100,95,96,108,126,104,100,101,103,102,94,109,99,100,102,109,84,101,100,109,100,107,106,97,113,84,98,103,109,91,93,89,110,105,98,106,98,99,101,101,88,91,96,108,95,97,89,92,106,97,98,109,95,98,98,95,95,95,98,101,108,97,104,107,110,104,96,105,92,99,101,99,99,102,109,105,105,97,94,98,110,79,99,102,89,106,102,117,96,101,115,94,109,101,107,112,105,102,108,105,115,114,105,94,113,102,113,105,110,99,104,119,101,104,104,104,98,99,119,105,106,106,109,99,103,95,102,91,104,75,98,101,97,96,95,104,98,112,99,99,107,112,103,100,109,109,108,104,97,94,106,98,117,113,95,100,104,107,101,93,94,89,98,105,111,96,105,96,105,113,108,94,106,105,115,102,103,108,107,110,91,106,100,106,102,104,87,101,97,119,99,102,118,113,101,102,109,93,101,96,100,98,110,89,105,112,99,106,91,97,130,104,99,100,99,100,102,109,108,98,103,98,97,92,94,108,101,106,94,91,94,104,103,90,117,106,104,92,97,109,104,107,106,111,117,94,109,102,98,110,113,121,97,104,103,101,95,92,109,107,104,95,102,108,91,100,96,91,105,100,95,118,99,110,103,97,104,89,106,92,103,101,103,109,102,95,104,100,104,105,110,102,101,113,105,104,110,102,112,98,100,93,98,95,106,105,100,95,113,106,90,105,108,84,101,97,105,109,115,106,105,101,95,94,108,99,95,99,103,96,103,97,107,99,100,132,100,101,102,109,106,98,105,101,98,102,101,120,100,100,103,116,110,104,107,105,103,93,100,111,115,90,104,101,91,105,99,104,106,92,96,113,101,100,99,97,102,98,108,79,117,105,107,107,94,94,101,91,99,100,99,117,83,99,95,104,110,96,92,99,103,97,95,99,111,108,98,99,96,108,109,93,90,110,116,109,106,99,96,108,109,103,98,88,107,92,102,103,99,95,116,97,109,101,109,104,97,105,89,86,111,100,105,102,98,97,108,113,99,88,98,110,120,97,100,87,102,112,95,93,100,100,99,93,121,92,94,83,91,100,113,99,101,105,98,96,98,117,107,98,103,111,100,95,96,90,103,101,108,87,99,103,116,106,110,100,89,100,97,108,93,108,107,106,111,97,74,101,95,96,104,93,119,115,104,109,106,100,111,94,104,100,105,99,103,96,102,103,79,99,106,104,103,106,95,134,101,102,80,97,99,103,92,111,106,98,109,96,96,101,106,91,106,88,100,102,103,99,102,96,62,102,95,116,91,119,97,99,93,95,110,111,105,100,100,105,93,92,83,97,101,105,97,107,103,99,103,113,99,108,112,105,111,100,93,101,113,99,101,108,95,111,82,101,110,95, +414.37671,106,92,79,109,91,84,113,100,94,103,81,96,83,91,103,104,92,104,100,95,105,97,81,101,87,99,99,116,107,101,117,102,106,104,106,96,101,89,104,100,89,89,91,88,109,99,117,105,92,104,96,103,98,99,102,99,96,104,102,91,91,100,96,95,92,98,101,105,92,104,92,98,85,102,106,114,91,86,107,100,95,106,99,92,87,96,95,105,101,92,101,91,98,96,95,82,104,91,103,96,103,98,84,108,79,110,95,86,98,95,101,96,104,94,94,98,107,112,99,98,104,95,95,104,108,99,99,103,109,99,102,92,91,94,100,90,93,102,111,101,92,99,103,91,97,94,112,116,105,102,99,100,106,97,105,107,84,103,100,84,108,100,106,102,97,99,105,102,108,101,93,103,98,105,94,89,102,93,101,105,92,90,105,102,108,94,101,88,100,104,111,96,102,102,101,114,103,96,95,107,95,95,91,101,105,103,107,101,104,102,88,100,112,108,96,97,93,99,101,96,116,100,89,100,97,97,103,94,99,93,91,85,104,99,101,93,102,104,107,98,100,101,100,104,95,104,90,90,101,96,99,109,100,92,99,98,111,93,98,101,90,102,100,96,97,91,113,96,95,112,105,98,94,132,113,100,82,100,97,99,101,96,95,98,92,113,102,104,106,113,101,115,103,99,103,107,107,105,100,91,94,100,108,113,95,104,99,125,103,117,100,101,91,96,84,101,108,108,112,109,93,95,96,111,97,80,91,88,98,99,113,102,95,100,103,105,95,97,99,112,99,111,104,100,83,108,101,92,92,104,97,106,103,95,109,104,102,111,102,97,109,110,101,96,93,90,97,105,100,107,102,93,99,94,107,104,108,96,102,106,114,119,86,99,94,95,98,92,97,74,107,93,97,107,98,99,104,100,92,97,100,97,97,87,103,95,108,103,91,99,86,93,110,99,103,95,95,104,99,108,104,90,93,97,101,101,102,96,98,110,103,100,99,96,102,110,95,108,86,102,109,109,100,96,98,91,102,117,97,98,101,106,103,90,107,99,89,104,102,105,93,106,97,97,107,98,102,109,101,103,107,106,102,102,98,93,101,113,90,113,79,117,103,93,101,100,105,112,95,110,109,100,100,99,98,95,105,101,98,98,99,96,108,103,103,99,102,102,100,116,101,105,90,106,90,105,102,106,93,105,108,106,111,110,104,88,107,107,105,101,100,98,103,90,100,105,112,104,102,103,89,104,91,91,101,98,95,91,107,99,95,104,106,113,102,112,97,92,100,99,97,115,103,106,103,104,110,90,102,91,96,100,112,105,99,111,110,95,97,101,107,109,92,100,109,73,96,107,99,79,105,94,103,101,107,98,91,107,102,103,97,111,101,98,95,93,105,90,103,103,99,96,102,106,107,106,104,90,106,105,94,95,98,95,116,108,100,101,109,98,109,99,99,112,101,110,98,104,109,91,111,95,91,106,97,109,104,95,105,107,94,106,101,104,113,102,111,99,85,95,108,103,100,103,92,110,93,103,82,107,103,105,109,85,101,106,95,103,110,100,95,97,106,84,100,101,103,101,100,100,98,111,95,104,99,101,98,99,99,96,104,102,91,99,100,125,93,105,83,96,92,102,112,95,105,102,98,95,115,107,102,95,117,101,109,95,100,107,99,91,99,96,99,100,98,98,95,92,100,108,100,93,109,108,104,105,104,102,101,105,91,94,99,92,104,108,88,100,102,93,102,114,77,101,105,100,85,108,100,103,107,108,81,101,96,92,106,91,111,105,98,100,112,96,95,96,70,101,105,103,109,108,106,104,99,100,99,100,110,109,93,104,97,109,93,100,96,91,95,107,115,100,113,97,91,95,93,92,109,100,105,96,111,110,109,106,113,96,115,93,94,85,95,104,105,70,96,93,97,103,97,97,106,101,104,97,87,93,93,102,97,104,87,103,95,91,98,98,91,100,96,103,95,100,102,97,95,99,114,105,100,106,101,101,102,102,118,107,93,98,96,105,105,110,100,95,103,108,110,108,100,88,107,101,97,93,86,95,106,99,112,97,95,103,99,99,93,60,92,100,107,96,106,99,100,89,101,109,107,107,116,104,105,105,104,96,98,102,98,102,97,118,86,100,106,105,89,97,107,105,113,105,99,90,99,96,85,92,91,101,104,97,100,107,106,95,112,102,99,108,93,104,103,97,103,108,96,104,70,81,94,102,92,101,110,97,95,92,80,113,118,115,110,95,89,95,107,95,104,88,90,116,112,104,107,111,83,95,105,103,104,87,97,95,101,95,91,106,101,103,96,102,84,108,98,78,105,95,90,101,108,95,107,96,94,104,102,95,101,99,102,106,112,92,101,95,94,103,102,94,99,103,95,99,86,98,98,95,102,99,83,114,99,113,95,99,104,93,100,95,100,108,96,87,97,99,110,95,111,103,92,103,100,100,98,105,97,103,100,96,97,103,101,97,100,96,100,97,100,104,98,103,108,88,98,113,103,90,98,100,98,81,100,106,92,108,111,104,107,93,98,107,98,99,102,94,111,100,85,101,105,103,104,100,106,102,106,107,98,102,93,100,113,83,99,90,103,104,101,87,100,100,101,103,97,84,106,99,106,98,114,97,101,95,104,98,93,106,99,92,109,88,92,91,106,88,100,98,103,102,101,104,97,104,98,92,104,108,105,93,96,95,90,99,99,104,109,103,99,89,97,106,94,98,97,96,102,86,103,91,113,105,108,101,94,112,98,95,84,118,96,92,88,103,100,108,99,80,105,93,96,100,94,97,86,99,94,99,102,96,94,99,92,106,106,99,95,101,95,99,107,87,99,92,89,103,104,95,100,96,102,92,106,103,95,101,97,97,98,97,93,105,100,106,110,104,93,92,90,101,91,98,102,112,99,90,87,105,103,111,95,92,99,122,90,108,91,98,99,96,104,98,112,99,102,102,91,73,99,91,90,98,92,98,96,97,99,91,96,105,87,90,87,95,103,102,102,92,103,106,104,105,77,99,100,91,104,96,100,98,99,105,87,121,99,106,93,87,97,97,96,99,108,102,98,95,99,94,99,95,90,100,103,106,97,76,98,98,96,98,98,112,101,95,108,85,100,87,99,90,94,100,103,90,106,97,93,91,110,99,98,87,104,94,103,75,97,100,110,81,99,87,98,97,108,103,91,115,98,97,94,71,94,86,110,104,97,99,110,98,91,87,94,99,90,94,106,102,101,97,103,107,72,94,106,90,98,105,109,97,106,101,92,100,97,101,94,109,100,99,98,98,103,94,81,89,92,102,95,104,92,80,98,89,100,102,104,94,99,88,103,100,106,109,97,87,94,105,95,95,105,103,107,108,102,96,87,89,105,102,89,105,106,96,98,100,96,99,113,93,100,100,95,105,93,95,91,94,97,83,94,91,102,118,94,100,100,93,106,96,91,91,99,100,107,96,100,103,79,93,96,98,96,96,94,105,93,105,105,90,99,102,100,103,100,86,95,98,100,98,97,91,86,110,99,95,107,103,95,93,96,102,101,103,93,106,102,101,96,94,92,95,95,90,97,117,107,88,91,103,106,101,102,96,84,90,98,109,105,97,103,104,98,106,106,99,101,100,102,97,98,104,97,105,105,88,97,101,100,96,104,87,101,94,113,92,100,92,102,108,101,95,97,99,97,91,114,106,98,88,93,103,106,96,97,88,94,110,99,92,96,95,84,103,97,107,105,100,96,84,89,110,92,90,101,96,108,98,109,96,104,99,115,93,91,92,105,100,110,99,105,89,108,102,102,94,87,98,98,92,92,102,95,113,109,97,91,112,95,97,113,97,99,98,102,97,106,85,94,101,110,109,96,106,101,106,100,93,93,94,94,108,92,99,110,106,94,94,113,87,82,105,96,93,101,89,98,94,104,99,102,96,106,93,94,104,108,102,98,94,98,84,92,95,99,108,98,90,102,91,92,94,105,115,95,92,100,101,93,101,99,95,90,88,93,105,96,100,99,100,96,92,97,95,102,102,99,99,104,116,109,100,93,98,98,105,106,101,89,93,103,89,93,95,100,93,98,98,103,100,91,102,108,98,93,100,102,100,93,93,108,95,93,106,98,111,95,100,91,101,97,100,99,99,111,107,102,107,92,104,105,87,97,98,101,90,103,102,82,105,99,105,96,92,101,103,98,102,100,97,108,93,105,102,100,107,101,108,100,99,91,105,87,107,102,98,87,91,94,107,100,93,88,85,97,123,96,101,89,101,85,88,82,89,90,96,93,94,99,87,97,98,103,104,105,97,103,104,103,108,102,93,109,98,95,97,87,110,98,110,98,97,98,88,98,103,96,91,107,104,98,101,80,87,100,75,98,103,100,101,83,101,96,92,93,112,111,101,103,106,80,91,113,94,96,92,99,104,102,101,96,73,83,101,87,100,100,98,101,71,113,115,101,97,96,103,100,102,90,105,92,109,102,78,98,104,92,98,101,93,92,105,100,101,94,94,99,92,87,108,107,98,96,106,110,96,101,95,101,95,101,90,96,88,120,101,103,110,103,76,112,88,95,97,113,91,96,103,97,100,97,94,103,99,94,92,97,80,87,98,105,84,98,96,100,102,104,81,100,101,94,99,105,102,98,108,91,92,113,120,96,97,96,97,101,106,102,93,102,99,104,95,95,103,96,91,109,104,93,108,85,107,99,93,101,96,92,100,107,93,99,106,110,104,99,98,113,92,96,97,94,94,91,109,96,84,97,107,97,104,95,110,102,107,101,93,94,102,105,101,95,102,98,99,104,98,102,85,108,93,94,93,101,99,97,108,123,104,101,98,98,103,105,100,111,95,96,98,98,120,85,103,87,106,98,100,83,103,91,103,109,87,101,98,98,84,69,91,88,88,93,111,104,100,99,99,103,95,98,93, +414.51691,98,98,97,96,91,111,99,98,98,92,91,89,87,106,122,109,88,110,107,109,100,102,91,101,96,109,103,105,107,94,120,100,101,91,95,103,93,90,95,93,94,91,93,85,102,120,97,96,107,108,95,97,110,95,89,87,90,97,94,92,109,92,103,94,96,101,87,105,104,99,118,98,125,101,99,113,102,95,97,103,117,99,84,93,83,100,97,83,103,107,123,81,106,110,97,99,109,94,97,94,105,107,101,95,101,99,92,127,128,101,93,106,102,100,107,93,96,96,118,100,100,89,92,99,105,107,117,106,104,113,97,102,105,103,100,99,96,103,93,94,94,127,102,102,92,97,106,113,98,110,102,105,112,92,91,110,111,104,95,85,97,98,101,106,99,106,104,99,106,111,98,97,99,98,107,112,98,108,110,97,109,106,104,104,103,107,99,107,106,108,100,100,101,105,99,103,97,104,104,109,96,99,97,99,107,112,102,109,109,103,101,109,98,103,104,95,96,106,102,108,92,97,99,104,86,110,104,83,102,105,102,102,107,105,102,103,99,105,116,105,100,108,106,101,96,98,108,102,105,106,100,100,89,103,98,104,89,101,101,98,115,103,116,97,100,91,97,116,100,95,99,99,102,95,98,99,102,107,89,110,100,102,101,99,96,97,101,100,107,121,90,105,102,97,107,103,103,102,109,101,105,101,91,102,103,94,106,105,103,95,105,94,93,103,109,103,89,107,100,99,110,100,107,103,95,99,99,97,104,118,103,95,95,99,114,101,99,112,96,94,98,100,107,93,105,112,100,108,111,106,104,98,96,100,106,110,133,97,102,98,104,109,95,112,73,100,83,106,94,99,107,109,89,97,113,105,106,97,107,107,110,106,106,95,103,96,100,112,108,109,115,85,91,107,108,106,105,99,95,103,99,94,108,99,101,95,106,96,118,95,99,97,101,101,118,104,106,96,103,93,102,120,104,127,104,108,108,115,95,99,96,109,100,101,105,102,102,105,98,110,111,109,98,100,96,104,73,95,105,107,96,102,107,113,98,105,101,97,95,99,78,99,109,101,106,102,105,109,108,83,103,102,104,98,94,93,90,103,101,102,100,104,105,98,104,97,90,99,99,99,90,104,103,114,90,104,91,101,104,85,100,114,97,111,105,107,99,102,114,115,103,109,108,112,97,102,102,100,95,93,103,100,97,100,94,113,107,101,98,87,93,109,105,106,90,108,95,118,81,106,109,105,107,99,101,96,109,98,96,99,103,99,102,99,92,94,127,101,97,97,102,99,106,113,96,99,100,98,106,105,104,103,110,105,100,105,104,92,115,105,107,100,103,100,108,100,97,107,102,96,110,104,83,96,115,110,116,103,100,95,96,102,103,92,100,109,101,102,94,112,103,99,100,109,105,99,101,98,92,95,103,114,98,110,110,109,112,110,110,106,113,102,94,109,98,102,108,108,96,99,88,101,113,97,79,86,95,105,106,104,91,100,95,103,109,103,98,98,99,105,104,113,107,104,96,100,116,98,102,85,105,107,108,103,113,114,99,96,99,108,95,108,110,95,99,108,88,104,101,107,106,111,110,95,104,91,94,100,92,84,103,102,104,119,108,98,96,101,112,96,117,86,109,95,97,105,99,114,92,103,113,103,100,101,112,110,103,100,95,111,100,107,103,109,105,103,111,98,108,104,96,105,94,113,127,107,100,105,84,102,118,91,112,92,102,115,92,102,110,97,83,106,100,104,90,94,96,105,103,94,100,106,112,103,95,104,102,105,99,89,96,98,101,99,113,106,104,108,107,109,108,101,100,105,94,109,113,99,96,106,106,103,103,104,94,103,110,71,112,101,116,103,95,106,113,95,91,96,94,101,115,103,87,103,99,105,91,100,106,100,106,105,109,95,113,100,105,103,102,105,95,116,94,103,96,101,102,105,91,103,107,98,107,117,99,100,108,100,97,97,103,113,104,102,98,88,98,98,101,105,100,103,103,90,98,80,105,109,87,107,99,84,94,92,105,103,120,107,98,105,96,98,105,96,105,92,83,100,91,101,114,109,103,99,96,91,97,102,96,103,104,98,96,115,109,94,104,101,105,99,105,95,108,105,103,89,82,101,99,108,101,100,103,106,109,101,102,100,96,110,115,105,97,102,98,101,103,103,108,105,99,105,106,105,102,95,95,96,91,105,107,99,106,112,103,96,90,96,108,112,95,120,109,94,109,105,95,104,91,100,94,104,95,100,105,103,88,96,90,105,103,95,99,121,100,92,100,114,94,105,110,93,109,97,99,102,104,114,100,112,91,105,109,103,104,102,104,99,94,100,105,89,104,100,103,93,93,116,96,104,110,119,96,104,90,97,97,110,110,93,110,105,96,99,102,84,98,90,113,104,97,95,104,107,90,98,94,106,103,100,89,103,102,106,108,95,100,93,109,102,99,112,93,105,86,105,99,107,103,100,116,103,99,103,106,116,109,95,124,86,119,88,97,92,95,102,107,96,103,108,101,90,108,108,112,108,84,104,103,101,99,109,101,103,113,102,105,95,97,116,99,109,86,105,100,107,103,107,102,108,95,104,105,92,105,96,94,106,101,100,105,96,96,113,100,94,133,124,108,95,115,87,108,107,109,107,103,99,99,97,105,91,116,98,100,113,96,104,109,87,98,101,108,105,105,95,94,102,102,96,103,109,98,103,96,101,78,91,90,106,91,107,112,104,102,103,104,95,100,109,113,91,91,97,103,105,109,106,96,103,102,92,95,99,106,114,104,107,108,109,137,113,101,102,92,109,108,104,104,105,107,113,106,109,106,110,109,104,100,109,90,98,98,101,107,101,106,113,111,110,102,109,109,90,103,104,107,109,93,118,102,103,109,107,105,103,92,95,95,89,107,100,103,107,103,105,101,106,103,99,102,108,111,92,101,100,99,100,113,84,108,110,98,97,109,111,102,101,107,103,96,122,101,92,100,89,109,105,97,96,107,106,106,119,107,86,105,108,105,96,94,114,111,102,101,115,108,101,96,106,104,105,88,126,102,92,103,100,97,98,105,113,112,98,104,105,109,95,101,110,100,99,105,103,92,103,95,112,103,94,105,110,107,86,101,106,104,101,96,105,96,95,98,119,99,89,138,108,98,94,94,95,116,105,102,97,106,105,102,100,98,106,89,120,103,94,100,94,108,101,102,95,98,101,108,97,98,113,98,98,91,102,106,104,92,97,98,107,97,83,117,115,101,100,103,105,84,92,113,112,111,101,102,122,102,104,108,113,96,108,103,107,105,110,104,101,99,96,103,94,98,92,97,107,101,90,106,96,109,87,101,105,85,108,118,103,117,91,99,103,88,107,106,107,106,106,87,97,105,104,94,97,108,109,81,115,102,112,101,94,99,97,105,105,97,101,96,98,98,98,106,100,108,106,102,104,110,100,130,94,91,112,96,101,101,108,100,96,102,108,108,105,96,104,100,100,108,94,101,97,96,105,95,93,105,100,94,101,101,102,95,112,91,96,109,113,92,109,99,98,81,103,106,107,104,107,107,94,110,103,101,109,96,100,105,101,82,112,109,124,110,107,105,113,100,100,104,91,106,96,90,99,91,117,116,113,95,80,119,112,102,99,98,97,104,92,92,102,110,101,110,104,116,112,102,105,88,93,98,117,96,100,96,96,95,90,97,112,100,106,102,103,106,112,110,91,101,93,109,99,99,102,112,109,93,101,105,117,97,98,107,75,99,87,103,90,95,100,102,103,100,100,101,108,115,82,83,100,100,106,101,112,105,109,102,90,95,109,108,99,91,102,99,105,110,95,101,93,92,95,112,99,107,113,106,104,109,109,102,100,102,94,104,108,104,100,110,101,102,103,109,107,95,84,106,98,89,111,99,105,108,112,101,105,110,110,102,98,103,102,94,97,96,108,99,105,107,101,96,99,102,92,128,107,88,91,116,100,110,108,98,105,98,116,90,106,102,110,88,106,95,106,115,111,104,102,105,101,119,108,102,109,97,107,108,91,113,102,91,100,93,100,102,103,95,96,115,95,100,97,84,107,104,95,107,114,103,94,119,102,103,97,99,93,103,115,88,101,103,95,102,102,105,110,104,95,90,97,97,95,93,113,105,98,95,104,119,100,101,109,98,100,87,104,93,97,96,106,98,94,117,98,106,91,99,115,106,86,101,97,109,109,98,110,95,116,98,98,102,105,87,107,98,96,108,104,100,96,87,113,117,119,100,105,97,95,113,102,106,95,109,86,104,95,93,96,92,95,109,98,113,93,106,99,99,98,119,91,97,98,93,99,121,89,102,112,104,94,109,106,99,103,113,106,98,88,104,124,97,102,103,96,107,105,87,106,106,105,95,98,107,92,110,98,113,115,103,94,103,101,105,102,101,104,95,87,109,104,106,106,95,109,100,111,106,104,83,92,103,98,113,97,94,99,100,88,107,104,106,96,89,98,99,104,108,102,94,98,102,109,104,90,104,102,102,103,102,106,109,87,106,97,91,101,108,103,108,109,105,103,101,96,97,98,100,89,103,117,107,101,100,101,109,100,99,107,104,114,95,101,105,109,105,100,102,101,101,99,96,83,105,93,105,104,97,105,101,96,100,113,103,94,98,96,106,111,95,94,95,96,91,95,100,97,94,107,107,80,112,101,97,100,99,99,112,107,96,95,104,94,99,95,101,99,104,94,100,116,105,97,99,109,98,99,118,102,102,96,100,85,91,101,112,102,108,93,101,113,83,108,111,107,115,96,100,90,99,106,104,125,90,91,96,107,107,116,102,101,99,95,62,113,104,99,89,105,93,103,106,106,109,113,106,96,97,96,111,100,107,112,92,96,99,96,99,107,102,98,102,111,103,82,120,99,102,87,93,102,108,109,95,102,103,101,113,96,108,86,97,117, +414.6571,105,97,75,97,96,82,84,101,94,97,96,98,104,96,100,98,97,101,93,89,101,89,100,104,100,105,104,87,113,100,88,106,101,106,91,126,97,105,98,101,92,95,100,101,104,103,92,93,102,106,106,101,118,105,74,101,105,106,114,87,104,109,94,108,97,103,100,104,95,102,103,98,99,94,102,101,72,91,89,98,88,97,100,94,109,113,97,100,100,90,92,101,94,91,88,95,102,100,88,101,92,95,94,91,92,93,87,107,90,84,95,99,101,98,103,97,91,99,108,102,89,104,111,106,90,97,96,112,112,99,101,105,97,111,109,99,92,113,92,104,103,100,100,104,104,94,91,115,112,110,92,94,102,101,99,103,98,105,114,94,98,95,105,98,95,87,92,97,109,104,97,101,93,101,99,96,114,100,97,99,102,98,96,110,94,99,91,94,103,101,92,95,101,95,83,111,93,109,104,96,99,104,92,107,96,104,100,104,106,111,90,98,93,86,103,100,104,100,104,103,90,106,100,99,81,101,99,99,95,96,97,92,102,101,97,99,107,102,116,97,95,101,107,98,100,93,95,94,104,79,95,104,94,98,100,114,93,100,93,96,90,87,101,98,113,101,104,91,99,94,103,91,82,110,101,98,106,102,91,107,100,105,97,99,103,96,97,99,109,93,96,101,108,108,96,104,116,100,102,97,99,98,98,100,100,101,115,104,97,104,102,104,104,110,106,92,110,114,109,100,100,96,90,105,71,110,105,78,98,104,117,99,101,90,95,103,93,105,107,105,108,104,106,89,95,91,108,99,114,101,101,106,101,107,101,97,102,117,106,100,100,97,111,89,104,98,104,96,103,105,95,107,100,103,105,98,109,98,101,99,114,100,94,92,117,92,98,105,88,110,105,92,96,96,106,100,106,107,94,116,102,97,101,108,100,96,99,99,96,97,93,84,97,109,100,108,99,109,105,102,101,82,101,80,92,101,90,98,91,99,104,102,99,94,109,94,100,102,102,102,112,91,95,81,93,111,99,73,107,117,100,118,100,113,100,92,103,110,101,108,101,113,103,104,108,98,105,112,97,105,109,99,102,98,98,99,92,108,107,100,103,117,105,100,92,94,105,95,109,93,101,103,98,111,98,100,95,120,98,113,116,105,98,92,96,109,85,98,107,103,107,99,102,106,103,96,98,106,100,97,114,99,108,102,109,102,109,93,97,109,102,103,104,118,97,92,91,103,105,112,100,102,96,92,107,98,105,95,100,92,108,98,102,99,102,97,95,97,106,105,96,100,92,105,116,106,114,94,102,101,101,95,99,95,111,105,106,99,100,100,116,112,98,105,101,96,102,97,99,104,112,102,105,96,104,110,87,117,78,100,100,111,103,98,91,96,96,94,116,84,101,102,98,101,109,105,98,94,94,97,99,96,98,95,103,107,93,105,105,89,88,100,108,102,92,102,102,96,101,85,121,105,96,95,89,87,98,100,108,111,91,86,104,98,108,99,99,103,100,108,95,112,98,96,103,98,100,91,86,100,108,95,100,107,108,98,91,99,97,95,104,104,114,94,94,89,92,92,110,98,106,100,100,98,87,96,118,100,104,89,102,110,99,88,109,104,108,91,103,73,102,102,98,85,100,91,109,104,100,100,101,101,108,103,96,91,98,100,100,104,100,105,108,102,89,99,108,93,111,94,119,96,92,98,94,103,97,99,105,96,108,103,99,105,105,102,114,109,98,107,103,74,89,96,97,105,93,102,106,84,104,107,89,95,98,101,93,95,101,104,98,105,105,102,83,105,94,108,107,92,96,94,82,98,108,98,100,106,106,92,104,106,100,101,96,114,99,108,91,96,108,102,88,96,100,109,111,109,109,98,88,114,109,110,105,114,103,99,105,100,98,95,95,98,112,94,102,95,105,105,100,113,94,92,97,92,95,92,99,101,108,85,101,101,96,92,90,94,121,91,98,108,91,97,91,96,91,95,105,100,105,109,95,101,106,106,111,96,92,107,110,104,100,98,106,112,95,95,102,98,107,103,105,93,108,92,91,107,105,101,97,96,108,108,100,101,96,91,103,106,104,111,106,101,102,100,93,112,88,104,99,110,108,99,106,94,94,101,107,110,96,110,91,101,97,99,95,101,96,101,105,101,105,90,95,94,101,98,100,95,98,115,109,101,105,112,110,86,88,106,99,94,100,96,108,105,101,109,105,97,93,106,110,104,97,91,103,93,98,97,95,103,103,95,104,113,100,96,105,109,111,106,90,94,103,95,119,99,96,96,99,107,100,97,104,100,108,102,88,99,98,105,102,111,98,110,104,88,106,93,98,89,96,93,103,86,105,91,100,92,107,93,93,105,101,93,89,119,98,99,100,101,96,67,98,94,106,92,103,100,104,95,112,96,96,103,97,113,90,96,94,110,105,92,104,89,98,96,100,95,102,104,94,103,94,100,87,97,106,75,107,97,100,111,97,113,94,100,98,107,102,104,99,112,114,113,103,106,103,98,93,87,109,99,109,94,104,102,101,100,101,115,103,104,105,97,98,91,103,70,103,105,102,98,98,113,96,96,102,94,106,106,112,107,97,108,107,102,84,98,98,102,82,112,96,108,110,115,110,90,104,96,115,88,106,98,107,96,108,112,104,86,109,99,94,104,99,110,104,99,93,102,118,99,113,97,95,100,108,103,98,111,102,111,96,113,85,93,93,99,97,105,113,102,91,102,90,86,130,104,109,115,102,104,106,106,113,100,108,93,101,108,90,111,121,107,108,100,100,99,105,106,104,100,102,93,98,104,95,90,101,108,98,104,98,107,91,127,108,97,108,100,84,101,95,107,115,89,106,98,111,105,98,101,110,100,96,108,106,108,99,105,98,106,99,102,99,112,106,99,104,98,103,110,107,97,103,100,89,97,108,110,107,104,96,91,96,113,112,121,102,101,100,116,117,106,96,97,112,110,113,101,94,97,101,80,105,115,97,111,96,109,103,112,104,103,101,109,93,88,103,101,98,104,121,92,103,98,102,102,96,111,88,105,100,109,98,95,103,100,109,104,92,90,102,107,107,108,112,99,94,105,100,113,92,105,110,114,98,102,101,99,100,103,106,111,95,96,120,98,95,105,112,98,95,97,99,119,98,97,102,91,98,106,112,103,97,102,92,91,99,107,110,100,103,100,103,101,99,107,97,100,102,101,75,103,110,100,94,105,103,121,90,107,98,93,95,105,99,108,104,108,95,94,94,105,105,92,109,112,115,110,97,110,100,100,101,105,95,80,94,105,111,116,101,87,108,99,96,98,97,93,106,95,98,117,106,75,97,94,93,117,103,104,103,100,102,107,99,108,109,116,109,98,92,117,102,91,109,91,68,100,91,105,105,95,113,100,96,104,113,110,108,101,103,119,103,108,103,99,100,99,126,103,106,102,86,96,98,109,100,95,108,106,112,136,109,92,109,96,109,109,106,91,106,82,96,77,109,100,104,105,94,97,99,103,108,93,117,98,93,99,93,100,112,101,100,100,99,106,113,97,107,109,100,103,102,107,102,102,106,104,104,98,115,101,105,101,100,108,107,108,109,102,97,113,112,96,88,101,100,98,104,115,105,100,100,94,111,108,94,109,96,96,107,85,114,103,109,98,129,95,108,93,101,98,114,97,106,114,92,96,100,112,97,104,104,103,95,101,96,100,105,105,97,90,101,99,100,101,101,97,113,97,91,93,105,109,101,78,114,102,93,96,103,99,99,97,108,105,102,92,97,107,104,94,101,95,103,115,96,104,99,106,102,105,92,102,105,109,98,107,95,100,108,81,96,111,107,99,115,100,96,109,117,111,96,94,98,109,87,109,91,95,100,109,117,112,104,95,102,83,105,104,87,98,116,101,100,104,108,89,98,95,111,102,109,97,99,99,94,106,106,88,96,95,106,101,83,91,97,105,108,97,114,98,94,108,103,107,94,101,97,110,97,102,103,105,98,115,101,103,101,116,100,93,89,107,96,105,101,112,91,103,117,94,93,103,92,110,107,99,106,102,99,97,126,95,104,104,78,106,99,118,110,118,121,113,104,99,111,103,95,87,103,106,113,114,112,95,103,99,89,102,106,101,95,121,95,99,100,90,99,100,98,105,101,100,98,126,96,95,92,103,100,97,108,110,113,104,103,97,101,101,96,105,110,105,83,103,103,87,103,103,102,89,107,107,106,96,102,101,102,96,94,106,107,108,91,104,106,122,106,110,108,117,110,103,102,96,92,96,100,102,104,110,91,108,107,110,95,91,105,110,92,107,108,95,93,119,95,100,109,79,107,104,102,103,113,113,109,104,106,112,117,93,98,99,105,99,101,103,96,114,105,83,94,100,109,104,106,130,113,109,95,95,98,104,109,101,100,102,93,102,105,98,112,113,72,93,98,94,99,101,113,109,91,97,99,87,108,108,100,77,105,104,95,99,101,92,94,108,110,99,106,99,108,98,96,91,101,96,95,119,110,97,111,77,92,98,105,98,105,98,99,94,104,107,95,104,91,101,91,97,96,96,104,129,100,95,102,109,103,99,101,100,113,106,97,102,99,106,107,108,97,113,99,108,103,98,90,97,101,102,97,103,98,103,71,112,78,112,94,102,105,102,99,101,104,105,112,96,101,100,112,99,113,106,91,105,87,104,115,104,109,99,105,91,96,87,86,113,97,97,107,109,81,97,89,99,97,94,95,98,119,97,91,68,109,100,97,109,68,104,106,113,99,96,100,109,104,100,103,104,96,110,102,102,109,104,104,109,112,103,95,103,110,90,106,112,106,99,101,92,104,98,102,99,101,101,94,100,100,87,101,88,82,106,109,93,99,100,103,107,106,95,91,108,107,104,100,102,103,105,97,97,82,108,94,112,107,97,91,102,104,91,101,80,101,75, +414.79733,94,101,105,102,86,96,104,100,101,94,97,101,88,115,104,104,88,94,94,104,96,80,92,100,84,100,102,119,91,102,92,103,97,91,105,100,91,100,90,114,91,97,107,101,103,92,106,100,88,108,80,106,98,113,102,109,92,102,106,91,101,116,108,89,102,104,107,100,103,96,100,111,91,94,80,109,104,100,98,97,103,109,99,103,103,87,95,93,100,101,94,108,99,110,88,98,108,92,95,98,95,114,105,101,99,97,98,99,94,92,88,112,96,101,91,96,79,102,101,99,96,98,95,105,103,111,107,94,111,101,109,98,92,103,109,100,96,99,97,86,88,94,101,100,107,98,107,105,99,101,100,96,96,93,86,96,98,103,104,103,94,105,107,101,99,96,97,99,93,104,105,100,99,109,95,104,108,85,98,103,106,96,105,99,98,101,106,91,94,96,100,112,92,108,100,97,106,94,100,99,103,101,97,96,98,110,101,117,107,116,93,105,98,103,98,98,98,98,103,78,106,103,112,96,99,93,106,87,104,99,114,90,111,106,96,96,100,101,94,122,99,95,107,101,96,87,90,94,102,107,101,104,98,98,121,86,80,101,105,93,102,95,97,101,92,93,100,107,108,104,109,101,98,105,99,94,93,91,109,97,101,96,112,104,106,98,89,95,108,106,101,110,88,110,104,105,101,108,103,103,84,106,102,94,97,109,98,103,97,104,86,103,106,102,99,97,109,97,107,97,98,97,99,94,97,92,104,79,104,103,99,99,94,107,104,104,99,91,107,101,97,100,98,102,112,107,94,103,104,103,103,110,102,109,97,93,100,113,99,100,110,109,102,99,89,109,99,102,86,99,105,95,100,102,101,104,100,95,95,99,95,104,103,101,96,95,96,100,87,98,105,92,95,113,114,98,93,98,99,98,97,91,98,94,102,102,102,105,103,107,98,100,101,101,100,96,102,96,99,91,108,96,94,99,102,98,101,103,101,103,91,91,93,109,95,105,95,100,95,110,106,99,104,92,94,98,91,93,95,95,74,104,106,88,112,106,92,102,103,88,97,86,95,109,96,107,92,99,100,105,100,106,100,96,91,110,95,102,95,93,100,116,109,91,88,90,98,99,110,94,97,108,96,108,92,108,101,90,101,109,140,107,103,100,93,100,106,95,99,96,105,101,99,104,103,93,101,94,96,98,108,105,104,96,109,91,107,104,108,102,98,112,100,92,106,102,103,98,103,100,121,104,100,133,103,107,101,105,102,111,93,101,105,102,109,101,105,102,105,99,95,99,87,127,108,118,108,109,99,105,106,102,110,104,97,94,98,98,94,100,90,108,102,95,96,105,101,103,102,98,109,94,89,102,108,103,99,102,100,96,100,97,100,101,94,98,103,93,87,104,93,102,108,97,105,95,105,103,103,110,99,91,95,100,99,109,100,108,101,109,100,100,88,105,107,110,103,91,87,101,107,103,94,98,90,98,99,111,105,103,91,114,95,106,100,100,108,91,103,89,111,95,95,105,92,110,101,101,101,101,100,112,104,100,98,106,98,104,92,100,103,88,104,103,95,95,96,94,101,104,105,90,91,100,96,98,99,104,94,103,96,81,99,97,101,107,92,103,109,113,97,107,104,95,92,88,93,99,104,103,104,97,102,107,87,113,107,110,90,103,111,98,95,105,107,96,97,101,112,104,109,98,85,96,101,97,95,96,94,109,113,92,96,97,106,99,104,110,108,103,90,99,112,105,90,125,83,108,101,105,104,100,114,106,96,91,98,106,101,100,97,104,130,92,103,107,108,109,104,115,94,100,104,117,118,96,104,99,100,105,104,100,92,117,105,96,100,96,88,82,102,98,98,92,95,105,101,99,100,97,105,97,101,110,110,95,104,98,107,102,103,103,101,87,96,113,109,96,107,104,97,93,125,82,101,101,87,95,102,104,100,101,88,100,106,91,97,100,93,94,102,107,99,105,90,90,91,99,105,99,94,95,103,91,103,94,95,88,99,83,112,118,111,101,110,98,104,111,110,104,93,94,103,104,99,89,102,108,88,96,102,104,102,105,103,96,107,103,101,87,112,100,100,108,99,107,95,98,100,108,107,105,98,96,101,102,103,88,100,103,116,101,94,105,109,90,101,82,100,107,102,102,97,103,100,86,103,101,109,105,98,93,96,100,106,94,104,92,100,117,100,91,100,99,88,85,101,87,104,96,93,104,103,99,100,98,93,109,92,87,107,95,99,96,102,97,97,101,95,90,100,97,95,95,93,100,100,100,98,101,99,101,87,97,97,95,112,101,97,101,92,102,99,98,102,97,96,100,103,96,100,103,100,103,105,105,99,107,100,90,106,109,93,105,104,104,91,91,100,100,106,103,96,87,102,103,96,91,96,102,107,106,103,112,99,105,96,95,109,97,87,97,107,105,99,95,97,101,100,99,90,108,94,94,95,106,102,106,90,80,113,107,127,99,103,106,104,116,109,104,95,113,116,98,96,99,94,118,105,113,95,95,100,96,91,101,91,110,102,61,97,104,106,115,115,88,117,98,97,101,102,98,100,109,103,94,105,94,95,102,78,104,109,98,106,108,102,111,92,92,93,98,122,104,99,102,108,107,105,98,112,100,98,98,93,96,100,99,102,100,97,87,98,101,96,107,97,94,92,102,109,102,102,96,100,113,96,99,103,98,105,106,108,91,99,98,109,94,90,106,99,111,103,100,104,116,112,83,109,105,100,107,98,98,108,100,114,112,109,90,99,101,110,99,108,96,99,78,101,96,107,99,108,91,99,100,110,102,94,100,103,95,113,95,96,103,107,98,100,101,95,109,103,112,109,110,108,93,116,96,98,101,102,113,103,92,89,104,97,105,97,104,109,100,94,98,106,106,100,114,112,106,113,109,95,113,97,96,114,120,101,112,105,99,108,99,107,95,109,108,115,85,95,90,99,102,98,101,100,101,106,117,75,119,110,134,107,102,97,95,109,107,99,102,109,106,97,102,102,104,106,105,101,108,108,113,100,103,98,97,96,97,93,103,103,94,105,101,96,103,98,103,111,99,107,97,107,94,115,96,90,87,92,93,94,88,96,110,98,113,97,106,89,94,98,110,98,99,106,86,109,108,94,99,98,106,99,108,96,110,95,104,100,123,94,96,98,98,105,99,104,117,94,109,105,97,104,97,109,104,113,112,100,100,102,88,104,102,106,108,94,106,113,112,103,96,103,101,103,101,118,105,88,105,109,99,109,102,100,99,87,96,106,109,110,98,92,96,96,115,100,83,98,98,104,104,99,102,109,101,93,91,104,99,99,99,110,107,104,93,100,105,100,110,94,79,95,104,108,101,96,100,102,95,92,100,104,103,99,114,101,97,101,97,98,100,100,103,95,105,88,110,94,98,98,100,103,108,112,109,94,98,92,95,100,91,103,110,92,112,95,103,94,91,103,106,101,110,106,100,100,99,102,98,101,105,99,105,93,99,69,102,104,105,102,102,98,103,107,95,106,95,98,110,97,106,98,105,106,89,119,114,94,121,96,102,111,123,102,98,100,106,109,108,104,99,105,106,111,105,102,102,99,106,104,87,97,95,102,103,95,110,103,106,105,94,101,107,100,94,94,99,110,105,99,96,103,105,99,110,101,105,102,100,92,98,104,102,102,104,87,78,108,102,110,105,108,98,105,108,107,105,79,98,109,101,90,100,103,104,100,97,94,106,98,107,99,106,95,105,108,97,105,100,111,106,104,111,78,106,107,104,90,98,100,116,90,108,109,108,103,108,108,91,112,104,110,91,107,103,114,101,99,102,105,133,108,105,100,99,106,95,102,98,106,93,101,94,92,116,96,73,91,96,100,100,105,96,95,99,95,111,105,105,110,101,106,108,100,101,109,101,103,101,99,106,109,93,88,107,104,100,104,117,105,99,98,112,86,102,97,100,104,95,117,96,112,98,99,117,104,98,100,106,95,105,96,109,98,93,121,105,104,100,106,113,103,110,110,107,102,108,102,109,110,105,92,108,108,102,104,101,98,103,87,104,113,103,100,97,109,100,87,97,112,106,111,111,108,100,106,97,96,101,100,99,96,109,93,99,109,100,103,90,109,105,91,102,106,112,102,96,101,109,89,80,103,99,110,92,91,94,101,93,97,114,116,116,104,108,102,98,101,103,107,120,100,107,88,88,104,105,103,100,103,115,103,112,100,99,109,96,100,103,112,108,103,107,100,101,115,105,100,97,108,100,115,107,94,101,95,91,95,79,103,91,98,107,110,105,105,107,96,103,105,108,105,101,113,99,106,88,95,109,95,101,105,95,120,110,105,100,103,102,103,102,98,100,89,109,102,94,105,99,110,101,110,113,107,102,113,94,119,111,96,101,115,112,106,110,102,109,90,98,100,99,98,106,108,86,101,84,101,101,109,103,98,100,103,102,101,103,95,87,104,99,84,109,98,95,105,112,95,106,97,112,118,110,103,107,97,107,98,94,101,100,102,101,93,98,92,104,101,110,99,112,102,98,93,89,91,98,96,99,103,91,98,124,98,99,80,102,101,96,104,106,106,101,102,121,100,90,100,109,95,98,106,99,102,98,100,94,107,122,102,105,91,103,104,104,94,111,99,113,105,105,108,113,103,101,109,100,97,113,100,106,106,104,82,101,116,84,103,105,104,105,103,109,104,93,101,103,102,101,98,93,105,99,111,98,99,93,95,95,92,108,104,108,96,88,102,90,92,109,106,95,94,100,88,104,113,98,85,94,100,108,102,102,97,91,109,101,109,106,105,93,89,93,89,100,96,95,102,91,102,100,97,126,76,93,103,94,82,98,121,105,101,80,109,100,95,104,101,108,92,120,87,99,108,88,98,99,102,87,124,101,100,108,93,102,102,97,87,104,98,110,94,101,93,96, +414.93753,93,97,104,93,93,103,96,105,99,99,95,78,100,102,105,105,89,91,92,103,108,102,101,113,109,96,109,107,91,101,103,86,94,95,92,92,106,98,93,96,103,95,94,99,104,100,103,102,101,106,94,97,97,100,104,108,109,92,96,98,92,100,106,89,92,99,97,101,105,102,103,109,104,104,96,100,102,94,97,102,99,103,99,104,96,97,121,102,109,98,102,94,100,105,76,102,100,96,109,96,103,98,97,94,97,91,95,91,106,86,98,95,105,87,102,93,70,90,97,96,93,110,99,100,109,104,116,99,108,91,107,95,95,98,95,103,95,103,115,100,100,86,94,97,100,92,108,94,101,104,114,101,90,89,100,108,99,96,103,107,96,98,108,91,100,96,104,95,104,100,97,102,105,100,101,86,103,99,122,109,95,98,95,106,102,98,100,94,101,101,104,90,93,87,97,83,101,100,88,100,91,96,108,114,87,100,106,102,96,99,101,97,99,103,101,94,93,107,92,96,97,117,93,115,96,101,100,107,113,101,102,110,106,101,88,97,99,97,90,104,113,100,93,97,96,105,107,103,108,97,102,107,91,104,113,109,95,98,105,79,100,100,94,95,95,104,109,101,89,99,120,103,102,101,96,105,103,103,100,95,100,102,103,94,93,102,85,102,97,103,91,122,109,101,103,100,108,95,110,100,91,102,100,110,98,91,107,114,105,101,98,107,110,103,113,101,109,91,102,103,105,96,108,109,101,99,95,100,102,111,105,106,105,100,105,103,95,85,105,107,103,109,97,100,91,104,90,109,98,102,98,105,107,112,107,113,102,106,108,106,107,109,95,91,95,102,101,105,100,108,89,96,103,94,114,97,105,76,108,102,101,102,96,101,100,99,97,101,95,100,102,93,100,118,111,96,98,103,98,94,102,96,101,97,100,97,106,86,106,93,104,98,101,80,113,105,102,112,114,100,97,90,109,108,101,98,98,101,100,104,105,100,102,96,96,103,101,97,113,114,112,97,91,105,96,107,99,106,114,95,92,83,100,108,98,109,102,95,107,98,101,94,106,100,97,115,97,99,90,105,108,102,91,108,113,91,98,111,97,101,104,83,101,104,87,107,109,85,102,104,104,104,101,117,96,110,93,107,98,98,94,113,103,104,100,107,100,107,106,101,111,99,102,100,98,93,104,102,106,98,96,110,98,103,120,103,104,100,100,106,94,103,102,95,87,110,96,96,112,110,90,97,88,104,95,98,110,105,107,88,100,104,105,103,104,104,96,98,90,106,100,98,118,117,98,97,110,101,101,100,88,95,112,101,87,96,109,95,99,93,105,107,111,92,99,98,108,102,98,95,101,95,102,93,95,106,102,104,109,94,99,99,118,108,99,95,104,98,105,109,108,96,106,102,100,101,99,105,101,99,94,101,104,113,107,86,97,95,112,93,109,93,97,114,95,111,97,99,101,105,93,114,105,106,105,97,102,97,104,96,92,102,105,101,108,108,97,99,94,94,131,109,99,117,94,96,109,91,108,105,111,98,107,100,99,93,96,106,108,96,101,103,103,95,95,92,109,97,100,110,105,108,98,105,85,95,104,110,94,93,106,101,114,104,103,95,99,100,91,99,103,95,100,102,105,108,106,99,97,112,100,104,101,96,106,91,98,107,108,104,94,113,91,100,100,91,100,95,103,98,108,106,114,71,103,104,99,99,93,102,100,102,105,91,83,95,98,103,105,96,104,97,91,102,98,93,90,105,105,110,109,94,109,100,111,114,100,100,95,101,94,97,100,110,97,108,106,109,96,106,116,109,98,95,98,97,100,114,106,105,99,99,100,109,78,99,99,88,110,108,91,101,102,83,110,91,104,107,111,98,105,94,97,96,95,106,89,100,108,98,106,100,99,114,96,105,103,101,91,102,94,97,106,96,105,99,93,118,108,98,109,105,99,108,97,66,102,104,86,98,103,113,99,99,95,100,93,107,103,99,114,106,118,99,104,110,106,94,102,105,100,74,106,104,106,94,106,99,99,104,100,101,100,100,96,98,96,101,96,99,104,96,101,96,106,104,108,95,90,89,109,102,102,95,108,97,83,92,95,95,95,108,106,96,100,112,87,89,103,101,110,110,101,78,103,103,87,93,113,109,106,95,100,100,101,79,96,103,113,109,95,102,110,99,97,80,95,110,142,108,97,102,117,100,99,99,95,102,95,98,81,108,93,99,102,111,87,91,98,104,97,99,103,101,103,113,94,102,89,100,111,101,105,97,90,94,97,105,104,102,91,98,94,105,106,104,93,98,99,90,103,99,99,107,103,101,98,99,98,103,93,100,101,94,100,97,100,90,91,107,110,95,108,99,99,86,97,106,91,107,112,101,89,96,107,97,108,101,106,92,104,106,105,101,92,101,96,106,98,109,108,101,94,95,88,95,90,99,91,95,95,113,105,99,102,96,100,90,109,87,98,95,101,113,111,101,98,112,98,109,94,92,101,99,101,101,108,87,109,79,105,109,105,95,101,80,121,101,90,97,97,103,106,95,112,91,105,106,95,96,103,102,109,101,103,117,95,104,117,102,102,98,102,97,104,104,93,95,97,99,99,96,100,101,96,102,98,107,108,91,114,76,99,101,100,110,107,101,89,111,91,98,96,97,99,103,105,104,106,102,94,97,99,108,99,93,98,109,107,108,97,95,107,100,109,112,103,94,106,98,84,96,104,107,99,108,106,79,99,96,103,95,113,87,99,91,104,113,90,112,109,103,97,99,110,103,109,101,97,93,103,96,108,96,100,95,88,96,106,103,106,96,92,99,99,102,92,108,112,98,116,93,95,106,89,101,106,116,94,98,91,91,101,93,102,102,97,105,96,97,102,102,99,102,88,103,101,97,101,111,103,102,101,124,97,103,103,109,103,111,98,94,108,102,97,94,116,99,111,105,102,118,93,117,116,113,99,99,101,101,102,102,94,111,98,99,103,105,91,96,95,98,102,103,106,94,99,91,106,105,102,109,106,93,117,94,98,97,96,93,110,105,99,112,99,101,99,98,105,109,102,97,107,94,117,99,99,104,102,114,98,105,107,103,100,111,105,103,102,97,116,109,108,103,99,105,127,101,107,88,99,109,110,96,98,101,89,112,109,93,101,91,104,106,104,102,108,101,116,111,93,109,106,105,99,101,108,99,108,105,98,101,86,101,102,102,95,102,100,97,100,95,90,109,105,106,109,95,94,104,119,101,88,97,102,99,104,108,99,99,112,103,104,102,113,102,87,98,92,97,104,95,107,100,89,98,103,106,96,95,103,101,116,103,97,100,102,114,91,98,99,106,102,101,100,105,94,91,110,104,96,91,108,103,85,100,109,103,99,98,100,108,72,98,108,99,95,107,109,94,102,91,102,94,115,107,99,99,107,98,96,119,122,96,96,121,102,94,102,108,114,103,96,100,92,92,103,102,95,94,102,101,94,97,108,100,104,110,106,107,101,103,108,98,106,106,91,109,115,99,104,105,101,100,104,109,105,104,94,97,109,120,100,125,116,108,95,95,104,108,107,106,103,105,109,99,104,111,108,117,113,111,103,94,93,104,104,73,97,107,108,106,103,100,91,100,108,91,97,111,109,99,113,102,109,95,98,98,107,111,106,100,123,98,98,105,106,117,111,93,105,95,103,106,94,91,99,98,112,105,100,102,94,103,99,86,91,99,106,91,104,94,111,113,98,84,105,99,98,92,103,101,104,104,98,85,112,103,95,91,102,93,112,83,103,97,113,104,98,105,98,94,95,97,101,97,96,94,126,100,95,110,111,111,91,99,106,104,107,95,110,103,111,107,109,110,102,99,101,98,92,100,98,97,87,110,93,100,96,98,109,81,98,110,102,104,100,109,105,98,112,104,103,120,105,104,105,101,105,104,103,97,106,100,104,97,99,105,101,79,87,94,111,109,91,99,117,105,97,105,97,107,95,124,106,87,106,109,83,96,110,104,101,91,109,106,102,106,87,101,103,95,106,91,99,102,99,101,109,104,111,95,108,98,109,97,107,92,111,97,116,102,104,95,101,109,91,103,98,102,106,78,105,99,105,94,105,103,109,97,110,108,98,98,102,102,98,95,120,86,99,105,106,99,87,109,105,107,104,116,98,103,93,110,101,107,102,109,109,95,102,97,97,98,100,101,107,109,97,105,96,96,109,108,98,99,69,84,99,111,112,97,92,109,113,101,115,106,82,93,95,91,87,104,108,89,109,101,97,128,101,103,96,99,88,101,97,104,84,96,97,97,112,107,109,99,108,109,98,100,99,101,103,106,103,83,106,107,91,109,108,105,120,115,92,105,101,99,95,104,104,88,106,99,101,97,98,108,100,105,100,96,109,98,103,100,105,100,113,92,100,104,103,94,108,99,105,107,103,110,95,101,94,107,101,111,83,106,98,96,106,102,92,95,105,105,95,102,93,108,93,118,109,97,104,80,96,108,99,105,102,99,100,98,95,101,69,76,120,95,94,67,98,100,105,96,102,105,106,96,95,106,104,100,107,79,103,106,104,107,100,109,104,88,97,103,105,106,98,106,93,100,95,91,94,105,95,99,102,87,97,99,98,98,100,108,95,113,106,96,95,103,105,98,96,94,94,106,117,105,81,97,108,103,98,97,101,88,98,102,91,93,100,97,92,100,98,95,107,91,104,94,96,117,105,110,107,113,96,117,103,110,106,90,91,95,104,89,94,107,98,102,96,116,100,104,99,106,115,99,102,96,98,127,102,102,97,102,102,100,83,99,123,101,70,98,104,96,110,104,93,96,101,104,95,101,108,106,115,101,96,93,100,96,109,89,99,107,98,105,113,105,101,113,99,93,100,109,101,91,84,103,95,95,104,97,99,97,98,83,91,100,110,103,90,99,114,89,107,74, +415.07773,95,115,97,99,87,98,101,111,103,103,96,109,107,112,106,98,102,117,106,94,106,97,98,106,102,103,101,100,84,94,110,100,109,93,113,111,107,93,121,106,97,92,111,91,100,97,101,113,105,101,103,101,107,97,102,105,101,102,114,89,105,113,107,95,98,118,97,94,92,97,105,113,87,110,99,112,103,105,107,104,101,104,108,91,100,97,107,80,82,113,90,101,103,97,99,106,99,101,100,102,97,90,95,100,100,100,97,109,82,101,103,103,102,107,99,98,108,106,107,111,102,109,103,100,113,108,100,97,104,100,96,99,102,93,101,110,109,104,91,106,103,106,101,106,100,98,125,100,100,93,103,102,89,101,114,105,99,99,95,80,94,108,91,96,103,105,93,104,104,101,100,97,101,97,124,97,105,107,106,97,105,109,103,104,110,104,95,100,99,94,101,105,102,98,94,99,103,102,113,92,96,105,97,107,103,107,97,97,96,117,95,104,101,108,107,102,103,103,108,86,99,105,107,99,88,112,102,109,78,102,106,106,92,101,86,117,107,111,90,110,107,96,112,108,101,109,99,99,102,100,108,94,97,110,107,110,106,101,99,99,94,100,93,87,98,96,102,104,102,90,100,107,98,99,108,93,99,101,100,104,101,99,102,109,105,102,103,103,102,103,115,106,106,97,110,116,113,118,100,96,97,98,102,101,100,104,107,108,108,102,97,109,99,87,113,99,93,99,96,108,103,88,115,97,115,106,66,95,97,112,105,87,99,103,118,99,97,108,93,104,100,106,91,102,102,104,94,104,117,116,119,121,95,108,95,99,103,112,87,109,91,107,101,100,108,113,97,107,102,112,120,95,114,102,108,98,98,96,107,103,100,111,99,104,109,96,102,98,101,102,108,98,99,88,107,102,100,99,104,114,97,100,100,99,102,85,106,101,104,108,106,107,95,101,102,98,102,97,107,99,94,95,107,103,99,94,97,88,97,104,105,107,101,108,99,104,101,98,93,98,118,109,103,106,90,82,105,101,100,104,98,98,114,109,95,101,87,113,107,107,104,98,104,100,110,111,122,104,129,104,99,98,98,109,104,86,99,107,92,104,105,107,120,100,106,109,105,109,102,102,109,91,97,114,98,103,103,99,97,101,107,109,104,111,105,95,98,113,103,102,96,96,96,103,107,116,101,106,123,102,93,104,125,86,104,112,112,103,103,98,110,114,101,74,103,121,109,102,107,99,113,102,99,93,107,100,112,111,105,104,101,96,108,105,105,104,107,98,100,103,108,99,100,120,111,107,95,72,108,96,98,103,102,110,116,106,91,105,121,82,99,106,105,95,82,96,105,99,98,65,113,105,111,77,102,115,108,126,110,113,105,112,99,105,101,93,99,109,109,110,103,95,111,117,109,97,100,101,104,99,103,101,115,86,101,68,106,106,104,104,102,94,98,104,93,105,104,104,88,92,105,107,105,106,103,87,108,100,97,105,101,98,93,109,93,115,102,120,88,108,101,111,115,107,93,106,104,104,116,116,110,103,98,113,99,113,94,99,105,102,108,114,110,101,92,80,90,101,101,107,108,122,100,106,106,113,100,103,105,97,107,100,96,105,112,101,102,101,100,104,103,108,87,111,102,99,93,120,90,104,109,105,105,113,99,100,115,99,90,89,108,107,101,108,103,90,108,104,110,105,105,102,108,102,107,92,104,110,103,100,100,105,106,96,105,100,105,113,103,95,102,96,94,100,98,107,99,102,104,100,106,101,113,102,98,100,98,106,91,98,105,102,118,103,100,101,103,100,105,99,98,106,109,108,118,102,107,101,99,112,106,94,101,108,100,110,98,91,71,105,101,99,98,94,91,107,91,96,102,105,91,101,113,102,79,87,110,94,115,102,112,103,100,103,101,105,92,114,105,85,93,100,105,110,95,104,103,104,94,95,103,99,90,91,97,100,104,121,100,106,97,100,96,104,107,90,101,108,108,100,98,112,120,101,100,102,111,105,108,108,103,106,99,109,110,114,95,104,101,103,105,103,77,107,99,84,98,106,105,102,102,109,99,113,96,99,96,93,88,109,111,113,101,105,103,104,105,102,90,106,108,97,110,101,105,94,100,106,98,100,111,105,101,97,101,105,95,97,110,104,118,95,101,107,98,99,103,100,115,103,109,89,95,106,87,82,102,103,105,104,106,108,107,100,110,108,101,96,78,101,99,105,116,101,95,109,100,112,91,96,105,108,108,102,109,100,97,93,93,110,110,103,105,101,101,95,99,111,98,96,85,113,104,96,117,103,106,108,95,104,98,109,109,111,109,95,93,102,99,110,118,108,102,93,93,99,111,112,106,103,98,93,116,109,110,93,93,108,98,110,102,104,102,100,91,96,113,89,89,98,108,94,97,102,103,111,97,99,108,99,107,108,108,104,100,97,88,103,106,96,103,115,102,95,100,106,114,82,91,98,120,108,86,116,100,90,99,95,105,110,100,102,103,106,98,100,102,103,105,105,104,103,102,102,104,118,99,107,99,98,107,107,110,105,101,90,105,106,100,107,102,106,98,100,100,105,97,112,103,98,112,113,100,95,102,99,106,101,98,90,108,109,96,94,123,99,100,116,100,105,95,94,107,118,100,86,110,111,98,91,89,98,98,85,106,103,108,102,101,94,104,97,103,105,102,108,109,100,101,103,97,118,105,110,108,103,96,110,100,102,104,108,101,99,83,100,96,99,97,112,102,103,109,98,102,102,103,107,101,91,112,100,102,101,102,112,112,108,101,105,104,103,111,96,108,113,107,94,87,106,96,104,98,116,102,93,104,98,106,109,100,98,100,91,96,107,102,107,98,101,103,95,110,123,93,109,100,91,103,104,99,103,108,90,99,99,114,101,102,88,106,106,103,78,96,101,95,109,99,99,104,107,107,115,98,104,104,107,94,87,97,106,91,106,101,102,86,111,106,93,102,86,94,110,98,101,116,94,119,100,96,76,97,109,105,102,104,106,84,99,106,109,108,99,106,117,113,97,113,89,95,95,98,101,96,106,100,107,91,99,109,92,97,100,100,95,106,91,105,105,94,88,116,123,110,97,94,104,98,81,108,84,103,98,110,92,98,104,98,98,100,121,108,103,109,95,96,107,106,99,110,83,102,113,102,101,91,98,100,104,109,105,83,100,111,107,103,97,105,102,109,106,102,90,109,112,103,106,103,102,113,107,83,102,84,103,97,100,100,100,99,116,101,95,109,93,100,102,113,96,99,108,102,115,102,95,98,116,103,102,105,103,86,102,99,95,92,102,108,100,104,107,94,100,108,122,118,109,105,108,106,111,102,118,106,107,84,99,103,100,89,113,107,92,98,101,103,107,108,73,100,95,116,107,99,98,101,89,108,100,129,115,98,97,109,106,96,110,95,97,91,102,105,99,102,92,97,98,98,111,104,101,113,107,92,113,109,86,99,101,99,96,107,95,108,112,111,100,99,100,102,109,105,105,106,99,99,108,101,88,109,84,91,103,107,96,101,93,110,99,87,108,94,106,102,103,108,90,102,99,83,106,105,95,106,107,108,102,109,105,106,102,108,103,94,91,104,99,106,93,99,107,104,113,93,94,101,93,102,116,93,97,106,108,96,109,97,93,115,110,111,112,95,113,93,101,110,97,88,99,100,100,106,95,107,96,102,106,103,106,109,111,99,103,97,101,94,98,101,99,102,104,105,107,102,104,101,106,99,94,102,108,116,94,112,110,102,108,111,106,101,128,106,98,102,104,120,99,120,103,108,107,111,107,107,94,110,103,113,97,92,104,108,109,100,99,104,108,117,119,102,111,103,105,102,111,89,99,93,107,95,109,95,117,102,101,111,113,103,108,104,113,113,116,94,107,94,99,99,96,108,107,92,89,100,94,101,108,105,101,110,97,113,98,115,104,105,102,106,95,85,101,99,103,91,102,118,137,112,98,117,101,71,105,118,131,109,82,89,103,106,100,86,109,105,106,101,106,106,108,94,102,106,116,99,109,98,99,99,90,99,96,103,101,111,102,109,92,125,104,108,101,95,96,103,106,90,108,102,105,102,104,106,88,94,108,91,104,107,97,104,97,100,90,100,107,102,99,118,106,102,109,105,105,100,108,108,100,99,106,88,105,104,92,108,107,95,102,106,107,107,106,118,108,105,107,94,111,101,110,98,105,104,101,107,102,104,106,106,105,115,106,113,108,102,95,96,100,102,100,112,96,101,89,99,113,104,108,95,65,101,99,92,109,96,111,88,100,106,103,105,97,109,100,97,98,100,88,98,104,101,101,104,104,111,108,97,96,100,109,111,106,104,102,103,87,95,102,111,89,111,98,93,101,115,112,91,100,112,109,97,106,106,119,109,102,108,110,98,94,102,104,98,116,94,96,109,106,121,81,127,105,108,107,105,101,99,110,108,97,103,97,104,95,103,103,86,96,103,103,104,102,84,98,96,98,108,99,100,104,99,101,102,93,86,106,105,97,107,95,113,110,107,98,104,100,102,102,91,98,88,102,94,100,100,107,95,104,106,116,108,109,99,97,106,104,106,88,103,104,106,102,113,101,100,109,106,104,71,95,106,91,96,107,103,115,91,96,99,98,98,113,74,105,97,101,103,104,123,112,108,109,111,112,94,111,92,102,104,107,103,105,108,93,98,104,99,96,99,103,115,93,87,112,99,83,89,97,101,106,97,104,104,115,97,92,98,99,105,93,102,114,91,88,91,99,114,95,112,113,113,101,95,101,94,96,91,110,107,103,96,104,109,91,108,100,99,95,96,101,106,100,113,91,98,117,97,87,112,104,96,102,101,110,109,111,93,111,105,103,102,103,104,94,105,122,94,101,103,102,94,108,109,92,101,99,110,117,111,92,102,96,98,113,113,96,112,107,89,98, +415.21796,109,92,98,100,94,98,107,86,96,88,106,97,92,97,93,112,94,99,92,102,98,95,91,114,94,105,100,90,98,98,96,96,108,104,99,91,100,88,94,97,105,108,98,104,109,103,103,105,94,102,80,99,88,102,102,93,105,95,97,98,96,98,93,88,100,106,88,92,100,96,98,100,97,94,91,104,101,100,97,117,110,108,101,96,91,92,105,106,101,105,100,101,98,104,99,101,99,115,114,108,80,105,98,91,99,103,94,104,92,97,96,104,99,102,96,99,100,102,102,101,96,74,102,104,99,104,105,110,123,108,88,103,97,103,103,98,103,107,87,94,103,114,105,102,88,96,102,93,91,98,111,94,100,91,82,89,136,112,107,95,99,94,100,106,98,113,100,90,112,96,105,106,112,104,114,100,98,93,105,101,95,101,93,101,103,100,107,91,108,98,100,110,103,102,107,104,92,104,101,100,99,73,100,103,102,100,97,109,91,94,113,97,112,101,103,105,107,90,103,96,98,105,98,101,93,104,110,108,99,118,95,95,108,107,103,118,102,101,95,99,102,105,103,99,94,91,100,83,95,109,98,106,102,103,95,98,95,106,99,100,94,110,91,103,103,106,103,114,95,96,100,100,102,83,98,106,101,106,110,105,97,99,110,91,98,93,83,101,94,86,95,93,99,103,91,94,100,99,105,96,95,92,99,108,92,110,91,103,89,107,95,109,94,106,102,102,95,98,105,97,103,93,97,112,102,105,91,96,109,119,94,101,102,87,104,109,103,95,101,89,104,90,100,89,99,109,92,101,100,105,109,145,96,107,96,105,101,99,108,101,101,91,91,97,94,113,103,108,109,110,108,107,101,105,109,99,106,92,96,128,104,103,105,114,98,94,97,101,111,100,113,92,97,100,105,95,90,101,103,107,93,103,96,108,101,97,102,104,114,98,92,96,100,106,91,101,95,117,109,95,77,89,106,110,99,104,100,97,98,84,92,105,105,86,105,109,96,108,99,95,103,96,106,99,99,93,104,99,107,114,94,103,96,104,105,103,95,99,106,106,109,98,107,75,106,105,100,98,93,100,103,90,105,99,110,93,101,110,101,99,106,110,102,100,95,96,110,105,94,98,113,95,106,97,92,102,100,102,101,105,100,91,94,110,107,98,93,96,102,87,101,108,99,101,96,103,104,102,99,95,101,91,103,107,100,112,79,92,90,94,99,95,95,91,101,99,106,99,103,106,102,114,101,99,106,91,99,105,111,99,99,97,89,97,125,105,87,100,105,100,102,106,110,103,105,98,103,96,112,102,98,95,102,71,97,96,102,97,102,97,98,103,98,93,101,104,91,111,97,96,110,101,78,100,108,96,102,99,98,128,98,96,100,110,101,102,102,109,96,117,101,97,103,102,97,101,101,100,98,110,104,89,109,101,103,106,95,98,98,95,100,102,105,99,94,114,97,92,97,91,105,105,113,102,88,94,114,90,102,106,103,96,98,103,106,105,99,108,99,139,102,79,98,99,100,101,100,95,106,109,99,100,106,103,105,104,101,99,128,100,99,95,94,92,95,87,87,99,101,111,105,101,94,100,101,95,107,96,114,95,97,93,100,96,107,100,102,83,101,92,115,91,86,92,91,93,99,93,100,96,99,92,109,94,101,91,118,98,86,114,126,100,89,94,101,93,106,95,106,91,87,97,104,100,109,96,104,100,105,109,88,104,79,101,102,105,109,101,100,93,98,96,95,98,101,106,89,95,97,91,106,106,101,98,98,109,107,105,108,100,100,106,107,103,100,104,105,97,86,93,101,107,110,100,96,100,97,92,91,97,108,64,87,109,93,104,102,108,98,102,109,87,104,104,96,88,105,100,117,107,91,102,98,102,103,100,102,99,103,111,108,101,94,94,88,95,99,98,103,83,87,108,108,119,95,109,100,100,90,104,109,92,98,102,104,96,107,95,99,110,88,97,96,102,91,98,101,102,102,109,102,99,92,107,97,105,99,96,101,98,99,105,115,102,106,106,95,100,115,96,99,108,110,116,104,104,110,106,104,105,101,101,100,110,108,93,93,96,106,94,110,104,107,106,94,85,101,101,105,100,95,81,110,102,108,97,100,108,104,107,99,102,98,104,98,102,91,92,104,96,101,99,97,107,101,94,112,98,99,104,99,109,104,102,109,101,98,90,104,94,105,103,98,94,107,94,102,83,96,99,105,104,98,109,100,95,100,104,104,90,92,110,102,86,99,104,100,105,92,87,99,93,115,107,96,108,93,101,112,93,106,103,106,97,96,106,100,80,97,98,93,116,112,101,108,103,96,103,108,107,94,104,102,95,92,98,109,99,97,93,98,110,94,87,105,99,108,100,108,99,101,105,95,100,85,93,102,99,106,93,107,105,101,105,93,115,96,65,114,91,101,105,100,93,107,96,98,125,112,87,103,119,106,106,103,98,103,107,104,122,99,96,98,102,102,102,103,111,106,102,100,106,99,110,101,93,105,102,107,112,99,104,98,113,111,100,96,106,95,95,95,115,98,110,99,81,105,112,98,98,104,107,100,89,114,101,106,113,99,108,95,108,100,103,124,107,105,120,98,89,96,95,95,99,98,86,103,110,105,102,103,92,105,99,109,101,122,99,101,103,95,104,102,86,102,99,106,101,112,104,105,100,100,94,104,102,114,95,120,97,106,100,108,102,98,100,95,108,106,108,98,105,92,98,96,90,94,89,104,109,84,107,100,86,103,99,88,106,102,109,105,117,110,97,99,98,97,112,106,110,102,98,87,105,95,102,83,106,88,97,108,105,95,100,106,93,109,98,94,109,109,97,110,107,91,110,99,111,106,108,101,99,112,102,87,111,102,117,108,106,102,74,112,104,113,91,107,101,100,113,97,101,104,109,98,90,96,105,105,113,99,102,108,118,97,102,100,98,110,105,100,107,101,104,105,106,113,99,92,101,101,109,99,107,98,94,104,125,101,93,96,106,109,99,94,111,104,95,112,104,115,105,96,96,109,88,109,108,91,96,95,96,102,103,109,103,107,98,95,105,92,102,102,105,101,96,104,77,104,103,100,82,97,104,104,112,102,106,104,106,108,105,104,88,99,105,105,103,109,107,104,109,116,98,100,112,100,108,113,87,102,102,94,107,105,93,94,94,104,103,102,102,101,121,102,101,100,105,105,108,104,138,101,112,94,104,98,109,100,96,95,105,102,101,98,115,95,97,95,107,105,100,109,101,98,92,106,99,107,92,99,113,109,110,101,104,113,99,108,100,98,100,96,92,96,112,102,104,86,102,108,105,98,102,104,97,104,100,140,94,107,104,108,117,100,102,91,112,97,91,98,112,109,107,104,105,105,109,105,91,95,107,98,106,116,98,68,108,97,103,104,99,95,97,103,101,91,103,121,95,104,112,100,106,97,96,104,104,103,106,103,97,109,106,99,78,106,107,100,101,108,106,112,98,96,104,103,96,110,100,112,92,97,99,90,112,102,102,103,99,106,93,94,114,109,99,109,96,98,117,105,94,95,100,99,100,113,88,97,109,99,101,109,101,106,100,108,94,93,134,113,110,106,110,102,103,95,107,95,89,101,105,99,105,108,92,102,92,105,95,91,98,109,106,90,93,99,102,105,95,100,92,104,100,114,102,106,95,111,103,100,107,105,105,101,105,108,131,109,90,102,111,103,109,94,102,124,93,99,86,110,88,99,113,101,91,104,107,103,95,102,100,96,91,95,91,80,91,109,105,98,98,99,97,108,112,103,91,95,100,102,95,109,104,100,94,91,106,87,105,87,107,101,93,106,89,96,103,111,103,107,92,100,99,96,102,102,84,102,99,98,107,97,103,93,106,113,100,109,98,100,100,107,108,100,92,96,99,97,106,96,97,96,107,95,101,98,99,101,114,108,106,94,97,105,107,107,105,107,103,109,103,111,95,101,108,98,98,101,102,99,103,90,113,95,109,104,102,104,108,105,106,99,105,113,106,91,104,72,106,99,101,102,98,103,113,121,97,104,107,103,86,97,100,110,99,99,97,116,100,97,98,101,109,109,110,107,108,96,100,108,102,100,96,99,110,104,104,99,99,109,104,103,99,107,102,82,95,111,87,102,89,92,106,102,109,108,113,100,100,120,105,89,98,102,102,113,102,93,114,96,101,96,91,113,98,109,103,107,97,109,95,104,103,101,102,104,99,104,100,109,105,109,95,77,100,97,103,104,97,101,106,103,91,102,113,99,102,101,104,92,103,99,102,99,95,98,98,105,110,91,98,112,102,105,105,112,92,100,104,102,92,96,104,102,99,100,94,105,111,101,101,116,104,105,95,102,91,90,106,103,98,107,92,99,106,113,106,102,98,104,94,95,98,97,85,100,86,105,102,77,101,96,121,98,102,115,106,110,102,111,96,120,103,89,101,101,109,94,99,90,91,113,97,95,94,92,98,97,109,98,96,91,97,103,96,97,82,100,94,93,95,100,106,106,109,107,91,95,102,105,100,91,117,87,107,95,103,99,110,91,95,88,92,113,94,102,103,98,105,97,102,94,103,99,100,96,88,111,98,94,103,108,109,93,93,102,95,92,107,100,104,92,89,87,100,106,109,99,110,106,100,100,102,100,107,95,111,106,91,95,99,118,97,104,92,104,110,104,115,104,110,104,95,96,100,116,91,97,90,94,92,104,103,118,99,101,115,90,84,98,113,112,97,112,97,100,95,104,104,101,112,101,94,105,106,92,95,72,106,104,104,99,106,95,101,108,89,92,100,108,98,105,96,97,99,113,93,97,107,93,100,106,81,97,102,97,104,98,96,112,100,94,109,113,101,101,116,93,96,96,96,101,88,111,116,104,111,113,86,106,95,98,104,93,102,94,88,107,92,89,80,91,89,116,71,97,102,89,102, +415.35815,102,106,90,104,93,110,100,99,104,87,96,89,100,104,90,74,100,112,108,94,101,100,99,92,92,86,93,104,104,96,116,97,112,90,105,101,113,96,111,103,90,89,108,110,108,113,98,100,100,91,99,108,95,104,101,96,93,112,101,96,88,102,100,101,103,110,95,101,115,100,96,99,109,107,108,124,95,97,100,101,98,97,94,106,98,84,89,104,98,77,101,114,99,100,94,105,106,104,94,111,102,83,91,102,94,98,106,99,105,98,95,101,106,97,108,98,92,105,99,107,107,100,112,115,99,101,106,116,103,101,109,109,109,104,118,97,102,103,103,111,88,76,94,101,84,101,107,97,98,88,117,116,101,98,93,104,107,101,95,106,98,100,108,103,96,103,95,93,103,94,99,98,99,104,100,100,104,96,100,92,97,104,108,104,100,114,92,98,106,102,109,103,95,100,117,109,103,104,96,104,96,107,110,105,97,97,103,112,108,109,104,104,105,123,95,105,104,105,109,97,101,106,110,103,101,97,98,99,96,106,96,97,74,105,114,105,94,99,110,101,91,111,92,106,106,110,102,104,109,103,104,105,99,95,98,108,105,106,101,104,95,116,97,97,106,78,112,110,98,98,100,100,99,96,103,112,91,102,105,100,97,105,100,92,115,103,92,103,99,101,108,116,95,110,103,114,94,108,111,105,98,102,105,104,102,99,65,105,86,104,94,104,90,102,105,87,95,95,116,106,97,105,95,108,99,100,87,97,99,91,108,97,98,96,103,80,104,92,87,110,93,97,103,105,109,107,97,101,104,99,109,103,103,94,112,99,87,93,96,103,100,96,99,107,99,93,110,98,101,95,117,93,100,93,111,110,112,108,102,134,103,107,102,107,90,102,92,85,106,105,113,71,92,115,95,101,88,95,97,104,102,112,105,100,85,98,102,99,96,117,91,83,100,98,92,99,95,94,100,95,100,102,116,100,99,96,102,98,108,117,88,108,95,105,99,95,90,85,107,96,105,103,98,106,93,86,99,97,104,89,99,81,110,109,100,96,106,108,107,109,97,110,105,88,99,98,107,98,95,84,101,108,113,100,106,107,103,113,101,102,86,111,111,109,100,101,107,96,101,102,116,97,97,102,90,89,93,104,98,109,92,88,101,98,100,104,96,99,102,98,103,101,92,97,116,98,98,97,106,97,102,111,107,99,100,107,98,106,93,88,97,103,102,88,86,105,111,103,112,102,93,97,100,104,109,98,111,95,95,87,101,90,104,101,100,70,118,99,95,116,103,98,91,81,113,97,96,105,108,108,105,98,98,109,99,109,105,94,99,111,101,89,99,95,108,84,91,101,112,101,95,97,112,118,104,101,95,104,102,109,100,100,108,97,93,111,99,95,94,106,108,102,116,89,113,101,98,106,101,94,101,103,101,108,100,101,102,100,98,100,117,104,97,107,102,100,103,91,104,98,109,97,107,102,95,101,92,105,100,90,90,105,113,105,103,92,97,96,102,104,102,104,94,104,90,103,94,96,89,92,107,99,96,100,99,105,99,92,109,98,109,110,108,91,96,102,100,104,87,97,105,90,108,117,97,106,103,94,105,102,105,109,101,100,100,114,96,132,99,101,113,106,106,89,102,116,76,106,111,100,121,99,104,91,100,102,100,98,102,104,106,102,110,101,99,104,94,92,105,102,94,114,98,99,100,99,103,95,100,105,103,110,103,97,106,103,103,91,99,102,95,86,90,98,96,103,83,86,87,96,105,111,103,98,110,103,104,97,117,87,95,101,99,104,92,100,100,113,90,104,96,97,95,100,101,81,94,105,111,109,105,98,74,91,94,95,84,91,97,101,113,106,108,92,117,94,107,103,96,88,105,106,94,102,110,109,99,109,108,94,98,105,95,104,92,98,99,109,98,97,90,109,98,96,94,100,98,105,105,83,106,97,87,109,105,109,100,103,95,103,109,91,115,91,109,94,106,105,111,106,103,105,105,101,94,98,106,100,91,109,99,97,114,96,101,102,98,104,100,103,96,108,100,102,117,91,99,90,97,99,107,108,95,109,105,105,97,88,113,106,94,106,101,92,111,96,99,86,103,102,103,103,97,103,107,94,98,107,106,109,103,101,102,107,91,103,98,102,100,92,92,87,98,105,104,97,105,99,93,96,103,104,88,88,106,105,106,97,101,105,108,100,86,99,100,110,102,95,105,95,108,109,101,95,98,104,106,93,100,102,100,113,92,96,112,102,98,105,98,116,97,108,99,113,104,96,94,98,109,101,106,97,92,110,102,116,91,91,95,107,102,97,104,103,101,102,102,79,93,114,104,116,109,106,100,100,91,106,98,108,110,92,97,99,95,96,99,77,105,101,97,107,94,104,89,125,96,102,92,103,95,106,100,98,104,99,106,104,100,97,107,115,101,102,112,92,101,99,87,91,91,108,96,105,105,105,95,99,103,105,113,106,104,109,109,102,77,104,113,101,104,85,102,100,97,100,100,97,112,103,107,101,103,101,111,102,96,98,104,94,91,104,108,102,106,103,103,107,92,97,114,103,104,101,93,95,91,104,117,107,92,108,100,94,101,103,114,102,93,87,96,96,80,104,71,101,102,113,113,102,116,106,108,108,101,83,99,101,116,100,92,78,98,101,92,113,87,101,97,99,99,102,99,102,99,113,98,103,106,104,97,96,100,115,115,102,101,101,96,105,97,98,97,89,109,102,111,103,101,96,101,109,100,117,107,103,105,98,104,103,117,98,97,102,115,105,94,100,106,91,106,102,99,95,109,108,102,121,108,101,93,97,102,110,96,108,113,106,109,105,98,95,115,95,106,101,103,90,107,101,108,88,107,104,102,109,102,103,91,102,96,107,108,93,103,90,104,98,93,98,108,106,97,111,104,91,103,105,89,117,96,101,118,99,90,117,87,102,113,103,101,115,90,100,100,116,104,90,106,110,98,98,108,100,103,101,104,111,103,108,109,96,99,101,100,97,100,120,116,101,107,120,106,116,103,97,98,111,112,102,105,81,107,107,102,99,113,101,98,94,99,97,107,94,101,106,99,98,120,117,102,105,95,74,112,90,81,98,109,92,110,102,113,103,113,97,108,98,106,92,102,101,99,100,115,73,102,102,96,101,109,98,116,102,95,104,108,94,95,88,104,104,95,107,100,103,108,100,105,104,102,81,93,95,104,110,110,96,109,103,88,113,94,108,106,103,104,102,103,104,91,104,92,101,105,94,101,98,101,99,99,114,117,108,108,111,98,79,99,110,103,95,112,69,101,133,106,101,102,111,109,102,106,106,96,100,94,112,100,102,98,107,95,112,115,107,103,98,76,95,94,99,104,98,99,103,108,102,119,98,107,104,102,104,95,106,107,88,98,100,99,99,95,102,92,95,94,110,92,104,104,100,95,102,88,109,104,106,99,102,103,100,91,95,98,98,95,99,95,95,99,102,97,113,109,87,109,106,97,107,104,106,100,102,99,105,105,104,97,88,106,103,98,108,102,109,106,110,105,95,107,106,96,111,103,102,102,105,113,117,111,112,100,103,115,111,102,109,93,105,113,94,114,107,99,121,97,105,77,98,120,97,105,106,79,93,97,101,102,106,91,89,94,103,92,99,101,94,106,91,86,76,96,104,98,96,113,107,117,107,99,102,101,108,101,100,95,102,99,92,95,103,100,101,100,94,115,95,100,96,104,119,100,110,119,89,107,102,101,90,117,104,94,96,98,88,101,106,97,93,102,100,103,93,105,96,95,106,127,92,106,104,106,99,109,104,99,100,109,103,103,95,100,110,112,110,110,99,104,94,107,101,113,94,103,103,91,109,93,104,104,110,93,94,99,100,98,94,104,100,91,108,102,106,104,90,95,106,95,109,107,102,72,98,101,104,94,111,89,104,105,107,107,117,109,103,109,91,102,98,112,103,91,112,108,112,105,97,98,108,91,102,109,95,102,108,95,107,99,104,74,99,104,99,99,90,95,94,80,104,105,110,100,100,105,95,94,85,103,120,111,102,107,116,103,98,90,87,112,107,104,98,104,107,106,108,108,96,114,97,98,103,97,97,102,102,105,101,105,96,95,101,100,101,96,103,110,69,100,95,105,100,91,102,108,100,101,105,98,103,97,114,113,115,103,112,109,104,105,99,108,70,101,107,96,107,115,107,100,91,107,109,110,108,96,95,105,100,98,107,120,108,107,109,109,89,122,102,109,112,101,94,99,98,107,108,102,109,108,117,103,95,113,103,92,107,102,81,102,105,114,100,106,117,99,106,103,66,103,106,100,103,93,97,123,105,100,104,103,96,106,110,115,103,107,107,101,101,102,102,113,91,101,94,96,97,95,100,102,115,102,106,107,114,94,99,106,93,104,90,104,105,91,104,105,114,104,102,106,102,107,91,104,101,94,108,104,97,102,98,100,118,95,101,100,91,89,102,87,101,93,108,101,103,103,101,93,89,79,100,93,96,105,97,98,105,106,106,104,104,98,99,101,112,107,96,98,107,96,96,90,94,103,89,106,98,105,113,99,102,98,119,99,99,96,88,99,105,96,104,97,99,105,99,91,106,99,100,105,92,104,102,101,105,76,95,93,104,103,100,100,107,103,100,95,95,97,95,96,128,104,107,106,111,97,103,99,110,88,92,92,103,100,117,101,96,99,98,100,94,91,98,109,92,97,96,97,91,107,107,85,105,100,105,110,108,110,102,106,95,95,95,97,102,98,100,96,104,93,101,95,95,93,97,92,104,114,112,106,108,103,91,93,100,100,102,102,95,94,92,87,96,103,101,110,102,91,103,100,105,101,98,105,102,113,92,100,91,100,111,104,110,119,101,88,97,103,95,102,96,99,95,96,99,91,96,99,102,114,93,112,87,113,88,99,89,99,105,112,106, +415.49835,77,99,90,103,93,90,99,91,101,107,90,88,91,99,116,102,98,95,117,98,99,87,104,102,102,107,102,110,94,98,105,95,87,105,100,96,90,101,97,100,92,90,94,103,96,105,92,100,98,97,94,95,94,91,113,97,104,91,99,90,95,90,89,102,102,98,102,82,103,97,102,102,88,103,96,95,95,98,97,100,82,106,100,126,92,95,99,98,105,101,106,101,95,105,119,88,95,103,94,102,102,108,109,99,107,108,110,90,82,93,94,105,80,102,93,71,105,87,101,100,90,90,98,102,93,105,105,102,100,98,98,112,87,103,111,101,96,93,92,93,100,102,96,109,89,94,98,97,91,87,100,94,98,84,101,96,98,98,92,99,95,94,113,121,114,100,106,91,106,111,104,90,94,106,99,97,98,84,101,109,97,104,88,100,91,93,93,96,101,102,94,109,104,102,105,106,79,99,136,101,104,103,101,92,95,90,91,96,95,91,88,116,95,91,85,83,92,101,101,90,105,100,98,99,99,98,105,110,103,98,119,96,87,93,91,105,90,93,104,100,93,109,108,65,98,99,113,100,88,98,94,97,101,85,96,94,100,99,85,117,89,90,96,85,76,98,104,106,95,87,91,105,97,91,119,98,93,98,101,120,96,104,98,99,105,88,99,104,103,99,95,101,101,88,108,95,117,104,104,98,105,103,112,97,89,103,104,105,97,104,96,105,102,110,99,98,84,109,96,105,100,100,92,109,81,101,100,90,92,109,106,75,102,99,98,105,104,96,103,97,94,97,98,95,104,96,94,100,101,96,95,96,86,93,89,104,99,104,97,104,93,107,100,95,105,104,109,105,99,102,94,101,100,112,103,84,106,95,75,99,102,97,112,105,102,90,92,92,99,98,100,98,92,102,103,100,94,95,113,103,104,111,102,99,99,97,98,106,99,85,90,102,106,105,108,91,96,101,92,108,104,76,95,99,97,91,102,96,98,98,91,99,107,99,104,92,117,106,92,95,108,106,90,92,101,109,98,108,107,101,103,96,103,106,97,91,99,99,97,98,99,97,101,108,109,105,106,98,96,105,104,106,103,107,90,92,93,98,100,116,98,103,95,106,99,98,91,97,95,98,97,100,97,104,95,91,90,98,88,104,95,88,105,102,112,110,81,94,94,99,104,106,107,92,102,96,105,97,95,93,105,109,100,100,103,82,132,105,99,110,84,97,104,104,92,96,95,112,111,110,101,97,109,96,107,96,100,92,100,104,104,108,88,99,89,108,103,98,95,97,105,94,93,104,96,95,108,109,98,102,101,95,86,112,96,90,85,105,103,104,103,96,89,101,96,103,101,109,100,102,103,84,90,110,97,106,109,107,106,86,106,93,107,97,91,94,97,95,85,92,109,100,96,101,92,88,101,97,97,106,110,107,103,104,100,105,92,102,102,102,86,94,88,101,90,98,91,94,97,100,96,95,104,98,106,97,98,109,110,94,91,106,95,109,99,117,97,107,100,96,98,92,106,95,87,115,99,99,127,100,112,109,106,99,98,109,100,100,94,99,120,95,110,82,100,88,97,91,98,108,79,105,94,102,96,104,100,97,105,97,92,87,98,95,95,109,103,103,88,102,89,103,98,106,87,89,92,96,102,101,97,110,103,79,88,88,106,118,94,106,109,93,100,89,96,104,102,115,109,96,107,100,105,101,112,106,106,102,93,112,94,99,104,95,114,87,104,97,102,93,103,97,95,94,97,105,84,107,104,91,101,101,105,110,94,104,103,99,79,98,90,121,104,92,87,101,97,99,102,112,100,88,105,101,102,107,92,110,97,107,106,113,96,96,108,86,78,94,99,105,107,95,99,97,106,95,92,98,112,96,109,118,98,106,99,102,103,97,95,99,91,99,93,94,89,104,92,101,103,105,87,94,109,96,84,96,105,98,95,98,96,98,93,111,94,99,100,104,105,97,110,99,99,89,108,94,96,105,105,103,95,92,102,88,108,115,116,89,92,97,97,100,104,106,97,110,91,115,109,98,96,95,102,117,86,102,94,86,90,99,88,104,114,99,98,96,127,95,97,98,94,95,96,110,111,105,88,100,108,97,105,95,97,103,106,97,101,106,99,100,113,97,94,102,86,83,96,99,97,91,104,84,104,101,104,99,98,101,101,97,92,113,107,110,100,99,94,95,98,114,117,101,98,103,99,94,98,96,98,107,100,111,118,87,113,95,99,87,115,106,87,97,94,95,103,95,105,100,113,75,100,100,109,104,111,95,92,84,97,104,110,96,95,109,105,102,86,101,92,75,101,98,106,100,94,92,99,92,106,99,106,113,107,99,107,94,104,92,96,93,90,118,91,88,104,87,110,106,102,89,92,103,95,113,104,92,97,91,106,103,108,96,97,100,92,80,91,96,110,89,104,109,110,97,99,91,93,92,90,105,97,111,86,97,93,111,105,105,94,104,111,94,103,107,105,103,96,94,101,97,113,110,104,94,92,95,96,105,132,106,99,99,110,104,105,103,109,105,103,99,95,105,105,106,100,99,90,102,106,87,94,108,97,107,102,99,91,101,93,87,103,107,97,92,103,116,111,111,95,92,97,93,107,95,98,104,101,110,109,102,109,94,93,81,96,102,96,100,100,123,112,94,98,104,113,100,109,89,96,107,107,95,110,101,80,103,98,97,107,96,99,114,99,121,106,98,93,110,105,106,87,97,97,105,97,94,105,95,98,89,109,96,97,90,112,103,98,105,95,100,111,104,92,127,99,105,101,114,95,91,107,79,96,108,112,106,107,84,109,95,95,90,99,117,111,103,101,103,94,101,96,111,106,92,103,99,105,100,109,98,109,107,76,91,106,108,94,90,100,106,115,107,107,80,93,99,100,101,97,105,100,111,109,100,90,104,102,94,103,98,100,95,102,87,96,110,102,113,100,108,102,96,119,91,101,107,104,100,102,108,116,103,100,97,101,95,106,106,97,100,98,101,105,112,105,109,90,96,94,110,110,100,106,108,97,101,116,95,91,91,96,94,101,96,105,93,101,103,97,108,106,110,117,101,101,114,102,91,106,108,103,104,99,102,71,111,95,90,91,106,103,108,103,106,107,96,100,101,116,97,103,90,96,105,101,98,105,91,105,99,94,106,95,120,95,96,93,112,95,101,95,102,96,121,113,93,101,104,104,98,82,97,108,99,98,87,110,109,110,87,100,109,102,103,109,97,112,97,115,119,85,97,89,103,102,93,109,77,108,97,101,104,96,91,108,98,108,104,106,105,117,106,105,94,98,111,102,98,96,92,98,92,91,98,103,96,107,101,94,98,112,95,113,78,106,105,107,110,89,87,83,99,101,116,90,101,112,101,109,115,112,93,101,95,103,91,99,114,93,104,102,101,91,107,112,96,96,96,98,100,102,107,106,91,96,94,105,107,109,110,97,95,107,86,108,92,106,104,102,108,98,94,103,117,97,109,105,102,83,91,108,105,104,104,97,95,98,118,111,100,99,95,98,107,102,103,92,102,101,113,101,102,99,107,90,109,104,105,95,90,93,96,100,100,98,103,103,105,96,108,105,110,100,113,110,108,95,89,101,92,100,101,89,100,102,110,95,94,92,104,83,109,100,111,102,103,112,99,104,99,102,97,95,102,96,90,99,103,100,111,106,96,101,101,85,105,94,103,97,101,113,112,101,101,98,98,107,104,99,96,98,104,100,98,103,91,99,101,97,101,105,90,98,97,95,107,100,95,98,116,80,106,100,103,107,91,107,107,93,103,102,93,96,95,102,105,111,99,103,100,96,98,115,103,95,84,113,105,102,108,101,94,103,107,101,109,99,104,91,97,102,105,104,99,103,122,75,99,107,97,102,101,104,109,101,125,113,104,95,96,93,111,106,96,107,104,89,104,89,110,103,99,101,106,108,105,108,104,101,104,93,115,106,100,96,92,102,107,104,103,105,108,105,97,108,108,109,98,94,99,108,103,96,72,105,106,106,110,92,103,105,100,102,102,92,92,97,115,103,116,104,108,99,86,103,99,100,91,111,95,100,94,112,108,104,106,109,102,93,98,107,113,102,98,100,102,102,95,108,85,108,114,97,101,115,106,105,108,100,87,106,102,94,98,98,112,117,107,99,106,100,100,99,109,99,106,102,110,104,103,98,92,102,87,98,102,105,101,124,99,105,104,107,93,107,106,107,103,101,102,113,97,97,103,98,106,100,108,94,95,100,109,103,103,106,109,99,105,96,106,89,109,116,117,96,92,117,106,103,118,100,101,104,102,119,97,95,101,98,95,105,106,105,125,113,100,99,98,101,100,95,103,106,98,117,93,101,107,106,106,101,114,101,101,100,102,101,94,102,106,102,104,108,106,104,107,98,96,123,114,74,116,105,116,94,98,101,124,113,106,86,113,103,116,107,105,100,97,106,108,106,100,108,81,107,97,97,86,92,97,110,98,108,108,108,86,103,104,105,98,77,100,94,106,106,121,96,110,112,110,101,102,92,108,107,92,123,100,93,106,104,88,97,105,108,98,105,109,101,119,124,98,109,105,95,107,97,110,97,94,98,92,109,105,103,100,102,95,90,100,95,94,101,91,111,113,98,96,101,106,102,95,110,95,94,86,87,89,113,108,99,100,99,100,92,101,102,95,103,110,90,96,105,96,102,103,92,89,99,108,106,87,75,92,111,85,107,75,94,92,102,82,96,99,95,92,110,95,99,87,96,89,88,98,105,92,93,97,105,95,103,106,92,105,100,85,84,115,101,109,106,103,100,102,81,99,108,103,97,100,95,116,113,98,101,102,100,99,91,105,102,102,87,97,101,101,92,100,96,99,83,102,111,94,81,103,87,117,91,93,109,107,109,95,99,90,109,113,96,93,104,101,97,107,88,98,98,102,108,101, +415.63858,98,97,91,95,88,93,108,79,97,98,93,92,95,97,95,102,100,122,85,107,111,95,101,91,95,102,87,95,97,104,101,90,112,114,123,96,106,86,103,108,86,92,94,104,103,99,104,103,95,109,94,86,105,101,109,92,106,99,111,88,96,94,105,87,93,101,88,99,105,95,107,102,101,102,99,108,101,107,102,95,98,95,91,106,94,85,89,103,98,106,99,104,95,105,97,99,95,95,99,92,108,106,92,106,99,98,103,85,87,94,110,98,104,89,110,105,92,104,125,89,109,122,101,103,112,106,116,103,109,104,108,96,100,113,108,109,65,95,95,92,107,105,98,100,102,96,112,110,95,101,108,100,105,109,105,101,93,103,93,88,91,105,104,99,99,96,93,101,99,100,85,96,92,98,109,100,111,89,98,95,101,103,102,102,101,93,95,96,110,96,109,87,101,99,100,101,106,106,92,104,76,105,99,99,90,94,96,86,103,103,93,87,68,116,102,93,102,106,97,112,99,113,106,103,97,109,99,95,114,90,104,105,99,95,97,109,105,110,111,102,93,90,99,109,103,96,100,97,91,96,98,101,105,96,105,95,92,111,97,102,99,111,97,89,96,111,103,101,103,95,97,107,95,106,99,99,94,99,113,97,97,98,120,94,92,128,82,101,91,107,82,109,105,105,111,102,92,93,100,94,95,101,92,112,109,109,105,113,108,118,89,112,101,95,96,105,105,112,106,102,101,103,111,97,95,97,90,100,101,104,100,100,108,103,109,107,112,97,97,91,105,111,95,101,100,107,101,112,98,101,99,93,105,95,99,97,99,107,100,101,65,103,93,119,100,100,102,103,93,100,98,107,79,97,102,93,102,100,102,105,101,112,95,94,101,107,113,109,111,102,112,95,106,101,97,119,109,96,106,117,100,104,96,105,97,102,99,95,102,100,96,103,112,102,96,85,107,101,106,104,104,106,97,107,94,96,96,106,102,94,89,97,104,108,116,102,93,103,98,90,105,103,100,103,87,104,98,103,99,116,88,105,99,93,108,84,96,107,92,95,106,102,103,104,110,97,97,105,103,108,82,116,103,97,103,107,90,103,103,100,103,103,103,97,117,97,98,101,108,116,116,102,121,105,90,110,91,103,113,110,95,105,98,102,100,117,85,95,104,100,99,93,105,106,87,100,114,98,95,81,92,96,107,101,110,99,100,102,97,104,101,101,89,101,100,79,122,101,108,107,105,93,100,100,101,90,88,112,105,109,77,101,112,100,110,89,104,91,77,87,95,100,104,104,95,89,114,106,104,98,97,107,103,109,103,113,99,96,99,102,95,104,97,79,94,117,94,100,103,113,104,92,91,103,100,105,95,106,102,105,107,112,101,100,109,98,68,107,103,114,99,101,101,106,103,91,104,105,102,110,103,100,69,103,98,106,92,90,100,116,100,94,96,105,93,94,95,96,106,88,97,106,97,115,104,96,102,98,97,109,96,106,94,93,96,105,101,97,101,100,105,104,101,103,98,104,70,81,95,105,110,86,93,110,104,98,97,91,99,93,112,103,109,102,101,97,101,92,104,95,108,102,91,101,105,112,98,105,98,74,96,98,70,117,104,117,98,108,102,97,95,105,100,103,105,90,104,94,103,99,99,100,105,94,100,94,102,99,101,79,109,101,98,96,87,86,95,104,112,92,101,102,117,94,110,102,107,115,99,99,104,90,100,103,103,99,90,102,105,95,103,93,98,100,96,109,96,106,95,94,123,101,102,95,118,103,118,103,102,101,95,88,98,107,104,95,84,110,91,112,110,104,101,101,93,98,95,100,103,101,98,94,105,105,106,100,96,99,109,109,101,97,107,102,105,121,120,101,104,102,96,83,101,103,99,98,98,98,89,104,99,104,75,95,109,104,106,92,99,108,97,106,96,101,93,87,92,90,92,98,120,104,103,95,106,109,90,103,98,102,106,94,100,110,101,109,100,100,117,98,97,102,109,106,102,98,105,110,109,82,109,100,80,111,101,98,111,107,95,92,109,100,105,105,94,101,90,96,100,100,97,100,101,109,102,97,90,109,116,102,105,113,102,127,102,89,90,96,75,97,108,97,92,96,105,103,97,103,102,112,81,90,101,108,92,95,91,105,108,101,96,110,98,102,99,94,118,107,100,102,106,101,107,97,98,101,91,95,102,112,100,106,95,95,104,98,94,101,97,105,104,93,100,106,103,94,110,110,93,102,110,108,117,99,104,101,96,92,110,90,105,109,99,107,107,98,112,108,94,81,113,94,103,104,105,101,109,101,92,111,97,109,97,100,91,111,101,100,104,105,105,100,100,102,103,105,96,103,119,99,97,95,103,100,94,102,105,104,96,99,105,98,104,112,105,95,94,109,104,95,111,108,103,105,100,104,106,95,95,97,105,102,93,110,106,94,96,111,106,101,112,94,102,101,101,92,105,104,95,103,95,104,101,106,109,104,92,75,110,101,102,100,98,99,104,101,104,87,103,116,106,99,94,102,113,111,104,106,107,97,98,101,104,108,103,98,108,105,97,118,99,96,107,94,83,96,94,105,97,77,106,99,112,102,115,102,105,104,105,104,103,111,91,112,98,98,98,104,109,102,109,112,114,108,100,103,100,101,113,91,109,91,99,98,97,101,109,106,123,103,101,102,106,103,92,92,105,110,101,102,104,95,105,108,107,101,104,109,94,98,104,106,96,112,101,99,103,107,108,112,99,67,111,98,109,111,108,98,103,109,106,76,93,105,103,111,104,112,106,107,108,116,105,98,87,100,106,104,103,106,104,95,103,106,106,95,103,112,106,119,100,91,104,104,103,107,116,114,105,117,86,99,103,101,93,88,106,105,98,90,104,106,105,107,110,132,101,95,108,112,98,106,104,111,99,99,101,104,105,112,116,105,98,93,107,97,99,101,98,103,105,97,104,90,95,112,105,110,101,103,109,98,101,103,102,106,115,105,98,98,120,102,98,104,108,103,106,101,110,93,109,121,109,104,111,100,104,97,105,103,100,106,95,117,110,116,77,107,102,108,109,102,105,101,106,102,113,96,113,107,101,112,98,104,108,88,111,110,81,103,106,102,108,93,110,103,101,96,111,100,100,102,99,103,105,85,103,108,102,102,97,97,107,96,105,108,98,96,99,98,101,101,99,91,99,108,93,99,112,103,121,95,101,113,113,103,107,100,109,113,103,103,97,103,106,100,105,103,102,99,108,89,112,110,104,91,109,97,121,101,96,105,104,102,102,92,95,99,109,99,105,94,102,102,93,69,78,93,99,115,108,95,97,110,113,101,112,108,107,112,108,90,107,110,91,112,104,98,108,91,102,99,84,113,103,92,109,103,101,108,104,99,106,92,104,102,104,108,99,95,102,104,109,103,105,108,112,107,98,102,98,101,96,104,103,105,105,106,106,93,105,96,93,104,99,103,108,106,106,88,109,104,102,100,109,110,123,109,100,95,96,100,106,106,113,113,103,92,96,94,114,85,117,103,95,98,107,109,102,97,106,100,100,106,105,106,121,102,101,99,104,100,97,105,87,108,101,100,104,98,106,117,98,95,103,91,100,101,106,102,106,108,94,97,87,101,100,98,103,101,100,86,89,99,110,92,94,112,105,108,93,103,100,103,92,99,102,110,91,90,105,108,88,98,106,100,92,101,112,105,78,108,99,102,94,96,100,105,117,100,95,102,109,106,102,98,99,110,108,103,102,106,113,90,110,87,109,103,105,104,112,98,104,91,100,100,106,116,102,96,110,92,104,103,99,109,102,108,97,99,95,114,106,99,106,100,95,108,102,90,108,110,97,117,112,106,95,101,102,102,96,104,83,101,108,117,104,106,107,98,99,107,96,109,98,113,110,105,102,99,97,98,101,105,110,101,110,105,105,105,85,90,111,100,85,109,100,97,97,113,97,114,92,99,101,111,110,109,105,97,97,113,98,113,103,108,107,106,106,88,102,106,99,112,112,99,96,98,110,97,105,109,99,96,101,101,108,101,92,113,104,95,115,100,100,104,105,98,100,101,104,103,101,99,102,111,91,108,106,87,70,107,110,93,96,95,108,108,107,103,95,103,104,106,106,107,109,103,105,104,95,95,88,117,106,105,109,115,110,106,100,116,100,111,102,99,104,110,104,104,101,99,98,94,103,95,101,105,96,104,104,107,109,95,111,114,106,109,109,107,108,104,120,109,102,109,97,114,104,100,105,101,98,93,108,94,111,101,104,102,103,103,104,98,101,99,97,98,102,102,103,89,101,105,94,96,112,102,97,107,96,106,102,116,110,114,109,93,110,103,104,105,117,111,100,104,102,98,108,104,110,107,102,114,105,96,106,95,107,90,91,95,102,112,96,105,100,92,99,105,102,116,99,106,108,102,102,98,109,102,97,96,100,106,93,102,87,70,97,94,99,104,102,100,92,94,101,94,105,100,104,99,106,99,112,96,98,101,102,100,95,108,99,117,104,95,96,100,92,103,87,121,96,110,106,95,113,104,101,93,105,91,93,107,112,108,103,95,109,94,107,111,110,100,83,98,109,91,127,95,101,110,100,103,103,106,101,120,94,90,103,100,104,125,108,89,112,103,90,112,103,98,96,101,95,107,101,105,86,106,104,100,101,107,103,99,110,94,106,119,107,91,128,98,99,109,94,110,97,111,95,101,94,87,111,102,108,100,104,105,107,101,108,103,111,117,105,97,105,98,97,98,95,111,105,98,110,94,93,107,104,85,99,101,112,98,100,113,104,91,112,105,102,110,114,95,111,107,103,97,99,91,106,74,103,114,95,93,93,110,104,98,94,95,101,75,87,110,101,110,106,95,110,109,88,108,109,91,95,97,78,104,118,88,97,105,102,93,99,103,103,97,120,109,113,90,105,106,90,90, +415.77878,106,102,102,98,89,95,89,103,94,103,80,102,105,98,94,92,94,79,99,95,96,96,96,98,107,100,106,97,101,115,108,83,95,100,95,103,106,103,102,102,89,103,92,103,89,103,93,92,90,102,94,95,104,94,94,99,112,109,91,95,99,104,106,92,103,95,104,109,86,100,99,94,94,84,105,98,91,102,133,92,105,95,91,104,94,101,90,98,97,94,91,99,97,106,92,93,105,99,102,108,90,98,98,99,99,99,107,104,91,97,101,104,104,94,95,96,100,94,98,102,102,100,105,109,99,108,115,96,99,95,102,103,106,107,98,111,98,101,100,100,87,106,104,102,91,102,98,95,98,100,94,99,102,98,103,95,100,107,104,106,115,88,113,98,103,98,90,94,109,99,97,105,93,105,94,108,99,93,106,98,97,108,90,114,115,95,118,96,96,106,93,96,103,98,107,102,95,108,96,110,88,101,107,84,106,102,97,103,105,107,109,94,104,108,108,105,99,108,84,101,104,99,95,100,103,104,98,111,103,103,101,104,107,100,109,99,99,108,104,101,91,99,103,94,96,97,108,99,100,118,99,98,100,91,95,100,94,103,95,104,94,99,95,107,109,100,105,98,98,99,98,100,94,99,107,101,107,107,104,111,100,101,103,99,104,110,100,107,104,100,108,99,117,98,105,94,100,103,109,101,98,105,140,108,95,104,113,107,108,108,94,111,98,109,103,96,101,104,104,106,102,98,120,129,98,108,101,87,99,102,117,105,103,98,108,104,97,110,93,95,98,92,99,104,103,106,94,93,98,111,101,100,94,108,94,95,109,102,108,103,101,109,104,91,114,101,98,106,96,111,114,90,116,108,102,92,85,107,100,102,105,103,113,114,104,89,99,100,105,91,101,96,98,96,108,106,96,93,101,109,95,92,99,112,94,110,104,99,95,100,96,101,106,100,130,105,98,95,97,103,99,106,103,100,88,94,98,98,107,110,98,98,100,99,101,94,104,111,101,98,104,106,110,113,113,96,97,99,103,104,95,112,103,109,95,101,102,91,136,99,79,102,102,113,108,136,110,97,115,113,109,103,102,107,106,91,102,103,107,105,95,104,100,93,90,100,113,94,104,104,102,101,95,103,104,89,89,95,101,103,109,105,96,106,102,98,88,100,102,97,98,102,102,103,92,112,100,107,106,99,104,98,104,92,122,117,109,100,84,108,114,99,90,105,103,90,94,93,102,98,84,100,95,105,105,92,97,109,110,104,96,104,99,100,98,106,108,102,96,99,98,100,97,103,94,108,100,93,94,91,98,106,100,109,98,109,106,95,105,96,105,94,91,103,96,95,113,108,96,108,95,102,98,92,113,119,102,95,111,109,105,89,100,105,99,100,109,110,103,106,127,106,108,96,107,88,102,97,107,114,104,101,95,94,103,108,102,93,132,109,103,96,98,101,94,94,106,79,114,105,106,100,108,112,100,101,105,95,107,113,81,87,101,94,94,98,93,97,97,101,106,102,110,118,104,97,108,94,99,105,95,105,99,99,95,112,95,88,100,94,112,99,104,102,77,94,101,86,95,103,106,101,100,111,97,105,89,95,99,91,100,88,79,98,101,119,99,106,95,98,96,93,115,91,96,108,101,93,102,92,106,93,90,96,90,83,105,103,103,97,100,101,98,94,87,101,106,101,104,98,105,92,101,96,110,95,101,97,92,100,105,109,104,111,102,108,95,102,103,104,105,94,91,103,99,97,94,100,110,100,112,92,95,99,102,91,100,91,115,97,111,105,92,94,98,100,99,104,109,110,102,91,102,112,99,95,98,103,94,93,72,95,111,102,89,107,102,101,104,86,103,99,95,100,103,104,89,90,100,106,104,112,91,93,102,95,105,101,113,110,111,117,96,107,92,100,101,100,106,99,109,107,109,107,102,92,98,100,91,102,120,90,106,114,90,110,90,96,88,100,94,103,103,107,99,96,94,94,96,112,95,101,106,106,96,105,96,92,107,90,104,97,113,103,102,90,94,99,92,98,101,106,101,88,108,103,103,104,97,109,111,91,96,96,94,97,92,119,101,126,95,97,109,104,105,98,96,103,106,99,95,92,98,95,116,100,109,99,105,104,102,112,99,108,98,104,105,113,105,100,100,91,109,102,100,92,110,96,119,96,106,107,113,105,100,99,98,96,83,102,111,107,103,104,101,95,98,109,96,94,87,95,106,75,91,111,118,100,98,88,113,105,95,100,106,101,101,104,98,99,104,96,95,96,87,101,112,95,106,94,97,108,99,103,101,99,99,97,101,101,102,102,105,100,112,104,101,104,119,108,92,101,95,84,99,89,78,100,103,99,102,97,110,94,107,92,100,114,90,95,94,96,80,112,99,100,98,100,107,102,110,95,103,98,111,87,102,109,114,98,94,102,87,101,92,90,101,91,93,99,104,98,99,90,84,90,94,96,96,101,99,92,100,100,91,92,117,105,108,97,99,91,96,88,101,114,108,99,99,99,95,96,104,96,101,98,105,104,113,98,98,102,99,92,101,90,109,103,105,102,105,91,93,99,104,109,80,87,108,90,105,118,98,98,106,107,117,95,95,124,107,85,96,102,103,96,98,103,100,86,96,106,102,105,101,105,104,112,100,110,102,93,111,100,89,95,102,87,110,81,103,89,100,107,109,104,104,97,97,95,100,92,102,99,99,104,95,91,112,90,91,93,95,104,104,88,109,98,91,95,96,102,108,104,100,108,91,104,106,103,105,95,91,89,96,96,99,96,104,96,101,100,97,99,100,94,101,101,100,95,88,126,140,105,99,115,99,99,94,112,103,91,113,102,95,88,102,104,106,95,101,101,92,91,101,105,97,100,96,107,97,101,87,77,111,84,103,101,101,111,108,102,118,99,98,105,94,97,96,95,98,109,102,83,91,100,95,99,108,102,94,103,99,93,100,100,97,102,94,100,105,101,97,105,89,98,96,93,99,96,93,108,106,99,92,100,100,103,91,102,112,102,100,95,101,95,100,98,90,100,100,98,98,99,102,100,96,98,104,100,87,100,98,100,110,102,101,91,132,100,105,97,107,107,103,88,97,107,105,106,97,99,104,97,102,98,102,94,100,90,102,107,99,107,108,102,103,107,107,94,91,98,96,104,100,103,102,91,97,94,97,93,105,115,95,94,105,92,97,107,99,102,103,103,95,96,117,97,99,104,105,100,107,96,113,91,102,109,104,113,105,97,92,104,99,95,107,98,117,99,100,101,88,88,101,97,92,100,83,117,96,94,96,103,90,97,92,105,101,100,96,90,110,106,101,114,99,109,88,88,106,109,94,102,97,116,95,94,101,94,95,88,97,91,96,101,108,79,101,109,89,75,100,91,97,115,113,104,96,96,97,99,93,102,104,109,102,106,106,92,101,97,98,113,98,93,92,99,102,98,104,98,100,106,80,96,106,101,104,92,78,114,103,103,81,100,103,94,102,96,100,102,105,99,102,94,87,111,95,91,94,102,96,106,106,104,102,101,99,96,110,100,74,117,105,116,117,117,104,100,106,101,90,100,100,99,87,105,91,95,109,94,104,99,92,104,95,98,105,97,110,86,100,100,100,105,99,106,101,116,106,102,106,90,106,102,98,89,104,102,93,100,98,106,93,105,92,103,113,113,100,105,97,103,100,106,134,97,102,104,101,107,93,81,94,96,110,112,107,107,102,96,75,92,92,93,92,100,111,93,74,76,92,91,102,92,92,99,103,103,92,99,94,95,92,103,101,110,103,94,96,101,105,86,98,86,97,102,105,101,96,105,94,117,103,101,107,103,100,98,106,104,106,91,107,100,109,108,75,96,105,109,98,87,94,92,96,98,89,98,88,109,96,90,108,99,104,99,106,94,99,105,99,104,98,104,102,102,92,105,95,102,104,103,100,109,100,91,109,103,92,100,95,84,108,96,100,97,112,95,110,94,82,116,99,104,85,103,75,106,98,97,98,101,98,92,103,97,83,101,102,102,92,95,99,100,94,99,104,105,108,101,109,87,110,97,103,94,99,99,108,106,94,111,111,105,82,90,103,99,86,102,109,95,104,100,97,101,99,97,105,105,98,109,93,111,95,107,90,101,96,96,101,100,90,105,108,102,106,84,100,100,96,106,94,96,96,106,102,107,106,95,88,101,89,98,110,104,97,95,113,111,94,103,107,104,88,103,99,103,98,91,108,107,87,124,99,96,94,105,108,97,100,102,103,104,97,99,103,95,100,101,99,93,87,90,90,102,120,91,90,99,114,96,107,95,96,92,95,95,95,106,116,95,104,91,113,102,83,96,97,95,104,97,98,95,96,96,103,95,108,87,120,100,95,97,105,96,93,94,109,110,100,105,94,106,99,104,100,90,99,95,100,102,105,98,102,96,98,106,96,109,91,93,97,97,92,93,95,105,96,106,76,120,94,103,74,93,99,105,92,97,106,106,94,103,87,98,106,106,99,94,103,89,131,103,90,102,101,96,97,93,88,97,105,102,106,105,94,90,102,107,99,93,99,97,90,103,107,100,107,92,91,87,91,98,93,104,101,107,90,96,87,102,117,95,98,87,106,94,90,87,95,98,92,114,113,101,101,98,91,103,86,110,97,113,88,102,98,88,97,98,101,102,108,103,116,100,105,101,98,101,106,98,98,93,110,96,101,111,101,105,96,106,104,88,101,124,95,110,99,106,107,108,104,95,96,89,86,92,100,91,101,117,94,96,104,95,103,94,109,91,99,106,109,101,104,95,86,109,103,93,100,97,102,98,102,105,99,87,99,96,108,114,115,107,95,104,98,86,106,100,109,93,108,102,100,110,103,92,105,101,97,100,96,89,96,96,98,75,101,103,102,98,118,104,91,92,92,109,122,98,103,101,102,88,94,102,116,99, +415.91898,106,96,101,95,90,104,90,101,76,119,105,95,96,97,95,106,85,97,112,96,100,103,85,87,97,98,104,109,115,107,96,91,123,95,97,98,103,105,112,99,91,110,94,98,112,105,105,100,104,105,106,95,92,96,112,106,103,93,100,94,98,98,100,72,107,99,85,105,104,103,108,94,101,94,97,101,112,104,109,111,101,97,93,98,102,105,101,96,91,82,89,94,88,97,107,92,105,104,103,105,101,110,99,105,100,101,103,115,104,101,97,98,109,96,117,100,105,114,109,99,97,94,99,104,110,103,110,96,107,106,111,103,95,104,119,68,99,100,100,109,84,112,94,99,91,111,113,99,84,104,97,102,116,101,96,107,109,107,107,95,100,100,102,104,105,99,101,92,96,106,95,90,103,95,100,106,104,100,114,97,116,100,107,111,116,108,96,101,101,103,99,139,107,115,102,104,103,106,103,95,105,123,96,100,102,106,90,95,101,85,96,103,85,113,109,119,95,106,85,102,103,107,101,103,108,101,112,109,119,95,98,109,125,84,99,104,108,106,115,101,92,95,104,109,99,90,93,108,104,107,93,101,96,114,93,103,109,112,115,102,104,101,107,123,82,95,100,104,100,101,112,103,108,93,97,96,99,120,104,103,88,114,90,97,109,99,94,113,104,112,79,99,112,109,108,114,105,108,106,113,95,124,103,109,101,117,96,111,94,99,97,111,101,104,114,119,100,105,106,102,104,104,115,103,116,105,99,94,108,109,102,107,102,88,108,100,106,109,91,105,109,107,96,96,102,100,105,111,114,104,109,100,101,95,104,104,109,103,109,108,100,101,97,87,99,99,118,116,107,114,94,95,100,112,114,95,90,98,99,112,100,102,100,106,97,104,111,92,109,103,107,92,102,109,100,87,96,87,98,107,106,105,98,97,113,106,100,113,111,93,101,101,105,102,103,91,103,119,111,102,106,103,83,95,94,97,109,98,97,110,84,109,113,87,89,102,104,104,106,98,109,111,99,105,104,103,101,109,96,105,94,96,105,112,98,93,111,108,101,105,117,110,109,101,101,105,101,104,96,103,102,110,104,100,99,104,102,116,100,102,92,104,104,95,105,104,99,112,107,95,106,107,100,99,106,99,96,100,96,95,116,91,106,110,110,92,89,104,107,102,104,101,97,105,108,113,89,101,96,91,102,101,96,113,110,105,115,106,93,115,95,111,105,101,98,111,102,104,114,103,100,96,110,94,104,106,102,106,108,109,97,101,90,101,98,104,117,91,100,100,100,77,98,95,100,103,102,110,95,102,93,100,104,104,92,113,96,110,96,102,96,105,72,103,106,103,105,107,104,109,114,97,104,104,110,111,104,101,99,67,109,98,93,102,97,98,90,112,100,106,97,104,100,114,108,99,97,103,105,114,101,102,112,92,103,90,103,107,105,102,91,102,99,100,108,102,96,98,99,102,105,110,108,96,105,86,102,103,112,107,94,107,99,108,105,96,116,108,99,102,96,99,108,96,113,106,98,101,117,100,103,107,103,113,106,114,104,92,99,104,95,112,104,98,91,89,95,95,106,109,103,98,96,112,103,90,109,88,105,91,109,105,97,115,114,92,99,99,105,89,112,99,91,113,100,110,90,105,100,87,99,94,101,106,93,99,99,109,96,108,116,79,102,103,96,99,100,102,109,95,99,102,111,106,86,101,113,93,96,107,114,103,70,107,100,99,95,110,96,88,119,113,95,94,106,99,95,102,88,102,81,100,107,97,98,103,117,100,93,100,91,102,90,104,105,115,114,98,104,101,103,82,96,104,99,103,107,110,99,103,97,101,92,85,107,102,103,104,104,105,109,96,97,91,95,105,107,105,111,103,91,103,96,112,108,99,95,103,107,103,105,110,96,112,96,105,105,97,116,115,111,106,114,92,97,104,95,106,98,98,103,110,108,95,110,100,94,104,90,110,110,95,94,105,111,96,97,107,112,102,87,95,108,78,94,99,104,106,84,94,109,110,94,99,105,110,80,97,103,99,107,109,108,100,102,99,93,109,103,98,100,110,101,109,106,95,106,103,98,110,108,109,106,115,109,104,102,94,103,107,98,115,111,102,103,96,103,100,99,103,103,106,96,99,103,108,101,100,102,101,83,103,113,106,104,102,102,119,102,110,110,95,104,108,110,100,120,104,106,113,109,110,104,108,106,111,106,112,104,105,102,99,89,105,92,107,102,98,92,98,113,106,96,99,115,118,94,105,94,87,93,109,101,96,93,99,103,102,106,105,109,106,100,91,107,99,100,97,98,112,88,117,100,133,96,105,104,107,98,112,116,106,102,95,108,108,91,103,100,101,97,104,103,97,105,94,84,97,111,108,101,98,105,105,104,99,94,108,90,104,91,106,93,100,98,106,98,103,108,92,93,94,108,109,110,102,110,108,101,102,103,106,95,113,113,105,96,102,99,112,96,94,105,95,100,106,97,72,106,88,114,90,117,92,106,99,110,100,104,96,103,92,110,109,96,101,102,87,100,99,98,124,98,99,112,106,122,127,104,103,119,102,112,95,94,98,109,111,112,102,104,73,95,98,102,95,109,102,122,90,104,101,100,110,99,102,102,95,115,102,112,105,107,98,110,104,103,108,93,103,109,91,104,102,95,103,96,106,107,109,97,106,98,100,108,105,111,102,107,95,110,104,108,110,108,115,102,104,102,117,105,99,97,76,92,111,100,97,102,87,108,98,101,98,104,104,98,87,100,105,87,101,92,120,105,101,109,91,106,108,102,92,93,113,111,109,101,117,109,110,94,108,108,99,103,104,96,114,110,98,103,87,109,105,97,100,104,104,108,112,101,101,104,99,103,97,95,111,94,113,102,113,112,113,104,90,101,115,107,110,110,107,113,116,104,104,101,110,101,102,95,116,87,111,105,112,97,96,102,116,101,103,106,87,100,99,104,106,104,109,97,106,92,97,90,103,104,108,106,98,74,95,95,94,106,108,98,103,99,84,92,90,105,102,105,102,106,93,73,97,99,95,97,105,103,104,99,116,102,106,108,117,105,105,98,99,100,98,123,101,100,115,90,106,107,101,105,114,107,94,106,114,103,92,110,89,103,102,94,117,105,91,104,100,111,99,99,121,99,95,104,100,92,105,115,95,106,105,101,102,92,96,97,100,105,102,99,105,100,104,98,108,100,117,105,108,101,98,104,102,100,109,108,107,98,93,104,127,98,108,109,95,102,98,94,107,113,103,113,107,91,105,113,105,99,113,92,122,104,100,101,98,102,105,95,102,101,99,115,97,107,92,103,102,97,108,114,94,92,107,102,97,109,95,77,102,99,98,84,96,68,107,100,94,100,98,109,97,100,102,106,97,98,98,106,97,98,103,104,65,103,87,100,109,108,102,111,109,110,98,91,97,128,106,97,101,113,99,105,88,97,97,95,99,100,92,107,106,99,104,101,102,103,106,101,110,102,100,114,108,103,106,109,91,112,109,97,102,101,109,106,107,101,116,84,83,104,113,109,92,83,98,79,106,101,99,102,98,96,95,95,110,104,104,115,94,101,99,99,110,118,109,98,95,119,103,101,104,92,98,95,103,101,96,98,100,109,98,100,104,94,96,92,92,99,85,105,111,116,107,96,115,105,113,105,93,105,100,96,140,107,107,108,109,80,105,108,108,106,109,103,117,97,98,98,105,105,100,109,98,97,98,93,109,98,102,108,122,98,100,103,103,97,100,98,96,97,96,108,94,99,95,94,103,109,103,100,106,116,105,94,108,117,104,108,97,91,91,99,100,107,99,106,99,117,98,77,79,91,106,99,107,111,104,99,110,103,96,98,106,98,113,105,92,95,105,95,99,107,109,93,112,117,100,106,105,98,96,83,111,107,105,107,100,110,92,102,96,105,101,98,101,97,98,92,108,102,101,111,85,110,110,106,101,104,112,102,105,112,88,100,104,99,104,100,95,112,101,102,102,102,106,100,99,114,104,102,101,106,104,111,104,108,112,118,93,114,103,101,105,109,96,105,113,105,98,105,98,102,103,102,104,100,88,103,113,115,106,111,108,100,105,87,84,105,107,99,113,93,96,104,120,103,96,109,112,101,104,97,102,104,104,97,102,102,112,112,100,103,106,99,104,99,109,99,104,95,102,110,110,104,97,113,102,107,99,119,92,112,95,110,107,98,107,97,94,99,100,112,100,114,102,107,101,102,108,96,99,95,106,100,103,102,102,91,97,109,112,103,109,92,101,125,110,92,100,107,94,98,101,105,96,111,104,101,105,95,103,95,102,109,106,98,103,114,104,104,108,99,104,99,112,106,116,102,102,102,113,102,98,114,113,103,106,100,91,102,100,101,125,108,107,107,102,97,112,94,109,99,97,95,120,112,103,95,90,99,102,106,113,101,109,102,98,104,97,95,88,100,106,95,121,86,91,104,97,126,102,101,106,95,100,102,108,103,102,95,100,98,99,101,91,103,102,107,100,102,94,108,115,95,98,105,106,103,100,116,113,105,107,96,100,103,105,98,90,100,103,97,102,97,108,95,102,98,109,105,95,102,107,108,106,102,108,115,99,109,96,91,90,113,97,94,102,106,98,99,108,100,104,97,75,101,100,103,108,108,96,104,100,103,100,97,101,105,104,110,104,105,101,97,100,108,94,99,89,106,92,97,96,100,107,106,106,115,98,118,95,95,69,97,120,107,90,98,108,101,105,120,98,68,103,89,112,119,102,102,93,80,109,102,117,93,108,80,105,97,100,103,100,103,104,110,92,106,116,104,97,108,108,88,92,102,96,96,108,88,107,104,100,102,109,95,98,81,102,87,91,92,98,103,103,100,97,105,114,90,91,95,73,99,95,107,100,108,116,95,100,98,105,104,87,89,104,102,101,105,99,100,95, +416.0592,97,109,91,90,94,117,78,79,99,91,105,91,124,98,94,101,108,106,104,97,103,90,93,99,108,112,106,99,94,101,96,82,95,96,94,94,94,101,103,101,94,99,96,74,103,101,106,111,109,104,103,100,100,99,95,94,102,98,110,72,95,109,94,97,101,109,107,91,99,76,93,106,109,100,89,102,91,99,99,99,116,97,96,100,97,82,100,91,108,101,110,95,91,106,98,98,111,102,104,100,102,108,99,103,101,91,110,98,95,88,105,101,104,107,84,102,96,105,87,92,94,99,115,104,102,97,94,93,97,103,75,93,98,101,104,97,96,100,90,115,102,96,90,95,90,98,104,105,95,103,92,99,90,101,92,95,91,102,102,102,100,96,101,96,95,96,98,90,99,95,109,109,98,94,105,96,106,94,93,106,108,100,106,103,95,88,91,98,98,104,92,105,103,96,99,102,97,106,95,102,104,98,112,98,105,101,100,116,106,91,92,107,108,102,94,102,98,115,93,104,93,103,92,94,105,101,104,107,105,91,101,106,97,97,117,105,100,99,118,92,83,95,101,105,106,97,108,109,115,96,99,105,90,97,99,110,105,99,99,93,99,107,97,109,88,113,102,103,101,103,106,100,99,99,104,91,102,90,102,100,92,98,102,108,101,101,100,90,101,94,98,99,98,84,105,105,109,97,94,99,99,95,103,95,99,114,107,110,114,108,97,96,107,109,98,113,93,102,75,100,97,113,109,99,102,92,100,94,106,101,103,98,105,109,99,98,95,94,111,95,99,102,102,102,98,101,96,95,99,110,80,99,102,98,99,105,100,101,100,97,96,101,104,98,94,97,108,111,107,93,101,111,110,93,92,98,110,106,105,93,110,104,107,109,101,106,92,104,103,104,106,86,97,108,105,89,93,102,100,110,97,91,100,87,96,107,116,104,101,101,109,95,102,96,95,96,97,96,105,90,100,98,96,112,98,100,103,85,97,108,92,103,117,102,98,103,96,96,102,102,105,103,91,79,102,108,96,97,111,109,104,110,105,108,100,110,105,96,105,99,110,107,98,98,106,109,103,96,82,95,96,115,93,101,110,104,98,106,91,117,101,107,105,101,102,102,118,113,102,107,107,105,107,95,102,106,88,100,98,88,109,92,108,95,99,91,115,108,104,102,106,92,101,98,91,103,100,94,103,94,102,106,97,103,118,101,106,96,101,95,109,101,99,90,79,94,96,103,103,101,117,103,97,95,101,89,114,97,107,99,100,96,96,103,102,89,103,105,105,108,99,98,109,106,97,101,101,99,95,108,93,103,99,101,92,111,104,93,99,100,101,96,88,95,90,100,108,99,109,83,83,107,97,104,107,100,97,71,103,99,103,113,92,92,99,100,87,100,110,103,93,102,108,104,105,108,105,105,119,95,102,97,101,98,102,95,92,94,100,104,94,102,99,101,89,113,100,101,106,90,102,107,102,75,95,96,104,104,106,99,102,98,99,105,103,110,102,91,118,101,103,106,91,105,98,99,111,122,92,108,112,103,104,108,105,114,95,98,104,108,94,91,104,87,95,102,103,97,106,109,100,108,96,108,83,102,95,107,94,91,101,94,90,102,100,97,107,94,103,105,99,97,98,90,98,99,98,91,100,89,100,94,98,100,96,105,95,93,84,113,90,110,88,102,96,99,102,88,108,101,132,107,104,95,104,93,116,87,104,106,128,100,99,99,95,109,99,94,98,99,95,106,103,101,88,101,93,100,91,90,113,103,102,91,97,106,106,105,96,100,106,97,99,106,102,102,109,113,99,106,94,94,102,98,100,104,84,99,83,97,102,105,100,93,91,111,100,96,102,104,106,100,96,98,115,103,106,74,100,89,57,97,95,101,94,100,95,102,96,101,91,102,114,102,98,112,111,106,104,110,109,104,89,101,105,99,100,103,87,80,98,100,85,113,105,104,90,103,100,108,99,104,92,106,103,92,104,88,103,103,92,93,97,101,109,98,113,104,100,100,109,91,100,97,101,107,100,99,110,114,112,108,108,113,99,100,100,105,98,101,113,101,103,100,117,107,88,95,103,92,107,106,109,92,108,100,93,113,105,103,106,109,113,98,105,90,101,92,95,91,105,89,96,116,70,98,96,105,108,102,91,101,128,102,104,92,105,112,104,97,107,106,103,83,93,99,99,108,104,97,98,108,105,107,75,90,90,94,133,106,98,93,99,114,101,108,103,98,94,101,98,92,96,106,102,127,88,108,103,95,97,108,105,97,96,93,95,99,113,100,98,105,108,99,97,96,106,98,99,106,101,103,100,98,96,107,109,103,103,88,99,101,97,98,94,104,91,97,103,108,103,97,107,108,102,75,106,112,104,106,95,95,93,98,101,102,102,104,102,97,97,95,116,98,87,103,97,94,110,107,95,100,98,94,98,95,96,96,96,104,94,106,99,97,109,94,98,90,80,101,104,97,96,88,113,105,113,100,97,101,102,104,93,71,97,100,102,91,102,101,104,89,110,104,100,102,99,88,102,90,100,96,109,102,98,87,102,101,93,103,81,87,94,103,113,106,99,102,98,104,97,104,102,103,110,106,96,96,105,95,100,93,103,107,95,84,107,121,100,104,96,109,115,98,90,102,69,115,103,104,97,95,100,99,95,119,91,99,102,99,105,100,108,106,85,102,95,106,108,87,105,105,95,109,92,109,105,112,102,104,92,101,107,96,90,111,105,113,128,103,104,105,106,99,102,108,84,102,106,107,102,97,102,107,100,102,97,100,97,95,91,91,112,101,109,101,98,107,92,104,105,109,92,116,109,97,105,120,106,100,106,108,108,105,100,97,113,97,96,100,90,101,102,103,94,96,96,97,103,128,90,100,100,104,109,111,102,108,104,82,89,106,99,115,109,95,96,90,99,113,105,97,94,92,87,102,93,112,109,106,112,96,88,112,113,88,94,89,96,126,101,108,97,119,91,110,105,104,100,94,91,105,98,93,104,108,104,100,104,96,95,113,100,100,105,101,104,95,95,101,92,88,109,111,94,110,99,95,93,100,99,103,113,66,109,100,103,95,103,98,101,109,96,90,101,94,88,85,106,100,97,105,105,106,104,92,99,98,100,102,95,102,109,95,94,97,98,100,87,100,94,92,99,102,111,94,105,106,96,102,106,90,96,104,97,107,96,103,102,98,109,103,113,107,95,99,108,109,109,103,101,100,109,102,95,98,102,101,100,95,89,102,98,90,102,105,104,92,106,102,102,108,96,81,95,95,111,102,104,109,103,99,97,98,112,105,103,99,104,107,95,89,100,105,108,104,107,95,85,98,87,108,102,98,92,102,104,94,102,100,97,85,98,96,74,112,113,98,100,88,105,83,99,94,107,95,113,80,91,109,88,98,98,113,90,117,99,107,105,99,102,98,102,96,92,99,101,91,103,108,107,94,89,106,104,107,97,97,95,103,109,103,101,100,106,102,93,112,102,98,103,98,103,108,82,97,105,107,106,102,111,109,98,104,101,67,106,103,105,102,106,101,104,119,101,112,104,110,106,88,98,109,107,115,106,99,107,100,111,112,107,119,101,105,99,105,85,109,106,105,100,102,94,100,104,103,103,100,101,98,100,98,100,100,99,98,110,79,109,102,97,106,111,95,103,87,99,89,111,111,93,96,103,97,91,94,97,117,105,98,110,101,108,91,100,91,102,102,107,102,97,79,101,99,92,93,106,90,97,95,117,90,100,97,96,101,101,114,106,101,107,98,98,96,105,102,91,98,95,109,116,104,90,91,96,95,100,88,105,98,101,111,93,107,101,113,100,93,93,93,113,100,107,107,103,98,106,103,98,113,97,105,98,95,104,102,108,100,96,104,104,101,109,92,113,101,107,99,96,108,85,108,102,91,102,68,102,89,89,102,107,80,93,104,109,93,103,95,99,101,100,86,102,105,103,102,100,94,107,102,115,103,103,105,92,110,104,94,88,88,97,99,90,102,101,91,102,112,97,113,108,92,102,85,120,107,95,104,99,106,107,102,89,105,114,95,106,96,97,98,102,104,72,92,104,104,90,115,101,98,111,95,101,102,103,97,95,101,106,95,104,93,105,105,113,109,99,101,101,113,106,98,97,102,103,106,103,111,93,89,101,104,93,99,98,102,100,93,95,93,103,96,102,106,96,91,109,106,101,100,102,104,106,101,94,104,106,109,116,97,109,94,105,114,87,102,99,102,97,105,103,100,95,103,110,107,101,105,111,93,99,100,100,101,104,108,107,105,97,105,93,101,104,111,104,100,96,88,91,100,99,108,109,104,79,103,102,103,97,120,99,108,85,108,108,109,93,100,117,92,108,104,105,104,100,105,94,106,96,95,71,106,118,105,93,92,102,103,101,96,96,106,103,106,97,112,100,110,97,91,108,101,101,109,99,116,88,103,101,107,99,109,113,90,95,107,95,99,101,104,98,91,100,108,107,95,93,107,99,102,99,96,105,99,111,96,84,104,100,105,88,105,101,108,94,106,100,105,93,98,97,95,106,102,108,100,100,102,104,107,105,97,109,104,93,110,105,95,101,100,97,88,98,104,85,92,101,95,102,94,109,91,95,113,101,96,106,99,101,105,102,95,98,107,106,98,104,109,89,99,103,106,94,87,99,102,109,102,104,101,95,106,103,99,92,106,101,96,105,93,99,97,100,103,95,102,103,120,107,94,125,106,103,103,105,105,93,107,101,98,92,97,95,100,99,94,96,102,100,102,72,101,96,108,97,91,102,97,108,94,90,130,98,105,101,106,115,99,95,94,95,97,87,103,99,94,91,102,104,87,99,100,91,98,111,117,94,68,114,100,102,109,84,98,94,110,102,101,95,91,97,96,100,94,117,105,93,100,102,98,99,92,108,112,107,98,109,94,91,103, +416.1994,105,95,99,91,91,109,94,59,105,101,118,105,100,100,100,96,109,103,105,103,98,102,103,93,99,85,103,101,102,99,92,100,88,100,104,93,115,95,91,97,97,105,98,106,105,107,101,100,98,112,96,83,102,98,111,93,95,96,105,91,95,105,92,84,97,103,103,98,100,112,96,118,98,113,90,108,106,104,101,98,104,100,96,93,101,104,82,112,98,105,101,108,95,64,97,99,101,93,102,104,103,127,98,80,103,104,107,106,97,96,96,91,97,95,106,96,90,107,98,112,101,100,106,107,102,98,106,101,113,102,109,102,101,109,104,109,96,100,87,93,98,103,91,104,105,93,101,108,101,96,102,103,106,101,93,113,99,105,106,108,92,99,100,116,109,98,97,101,106,102,100,108,95,104,93,99,106,95,93,107,100,101,106,99,106,101,96,96,104,107,93,103,99,112,98,102,106,102,108,105,93,91,107,96,114,99,100,99,109,117,105,101,92,107,108,103,88,117,100,101,102,99,102,103,107,113,101,105,97,96,101,81,120,106,89,100,117,109,99,104,92,97,101,91,108,100,97,103,116,94,100,112,97,108,110,108,91,115,91,108,91,109,97,103,95,105,104,96,100,101,109,104,98,109,103,88,114,121,101,92,103,104,90,105,100,104,98,111,83,99,94,107,107,98,106,104,90,103,105,106,106,98,93,100,106,104,104,96,96,113,99,120,104,94,107,94,100,94,103,88,102,76,105,99,95,100,96,102,102,117,87,92,105,99,108,107,108,97,93,103,101,112,116,97,111,97,96,109,106,104,110,100,106,104,114,94,102,109,96,111,105,105,104,84,94,102,101,113,100,96,99,102,99,93,86,100,108,110,90,73,99,105,105,100,98,117,102,103,99,102,116,95,94,99,98,87,88,103,106,95,96,102,102,103,106,96,114,104,108,98,99,93,108,110,103,109,103,106,115,94,94,103,98,80,107,101,102,91,100,100,90,99,101,107,98,108,102,107,102,94,106,105,95,112,101,99,93,96,104,111,110,106,101,101,109,105,101,104,103,102,92,99,107,100,104,104,98,101,105,103,107,108,105,94,88,91,95,113,100,96,98,106,102,97,117,105,100,109,104,97,110,116,105,105,103,101,78,107,111,88,104,98,103,95,110,101,99,109,114,104,106,100,97,102,107,97,104,99,99,90,104,96,111,109,101,104,98,91,92,97,90,103,107,87,99,91,99,99,101,110,92,102,100,95,113,101,94,95,99,107,102,90,97,80,108,95,107,64,92,103,98,88,107,103,108,101,97,102,100,102,120,96,100,104,113,105,106,114,103,95,99,76,112,113,98,97,105,117,105,97,104,110,95,105,104,117,100,113,110,100,103,106,95,100,104,100,109,104,105,106,108,101,95,106,95,94,107,84,95,103,99,99,95,64,102,105,103,104,101,94,100,104,92,109,98,100,90,94,103,99,101,100,108,95,97,98,94,95,100,113,95,101,112,101,103,102,103,108,104,104,111,108,89,88,105,99,105,101,98,101,112,108,117,98,95,115,109,104,110,111,104,109,107,94,104,102,121,99,104,113,98,90,106,105,105,99,96,99,102,106,106,108,91,108,95,111,105,105,100,96,96,105,103,101,105,114,94,104,114,93,110,103,113,116,101,88,96,98,97,98,88,92,107,86,104,95,104,97,105,100,109,102,97,113,104,100,99,101,109,94,103,91,108,109,110,97,111,102,96,104,108,96,101,97,98,96,67,94,91,97,104,91,100,97,94,104,106,103,104,102,93,112,97,131,88,99,112,101,107,112,103,119,94,97,100,111,85,106,103,106,97,101,90,101,113,85,107,104,112,90,102,102,90,94,95,91,116,94,108,98,93,94,101,106,91,110,100,101,101,95,104,105,114,96,97,102,114,103,100,106,99,108,97,105,105,100,98,101,105,94,105,102,99,113,100,98,111,109,105,103,103,99,104,95,114,99,98,103,101,98,93,103,97,84,123,109,113,95,94,97,98,92,98,94,95,104,106,97,110,102,97,106,100,106,98,85,122,104,103,100,99,102,104,110,110,100,103,106,98,98,91,102,103,77,112,103,108,111,94,100,107,106,107,96,102,103,105,99,107,100,98,108,106,95,100,98,88,118,113,105,105,106,101,106,114,93,109,97,87,94,107,95,110,102,98,105,108,117,105,98,116,106,93,102,112,109,102,104,86,98,101,104,107,103,91,95,89,94,104,100,95,104,101,88,102,110,108,101,95,108,94,102,97,86,96,97,104,97,101,107,98,103,106,99,103,108,99,94,103,102,100,103,97,102,108,101,111,101,101,104,102,104,107,99,84,101,93,102,106,108,97,102,111,108,99,95,104,110,95,94,101,108,92,95,103,104,103,106,99,109,97,98,99,97,102,109,101,108,111,84,99,97,96,94,102,95,96,104,100,116,109,100,100,102,101,94,102,112,117,108,99,60,92,105,73,102,97,94,104,105,108,104,102,94,96,101,96,97,104,101,99,97,102,96,117,90,88,101,96,105,102,102,102,105,86,92,109,108,90,105,106,118,113,106,102,90,115,104,99,97,111,106,113,102,109,105,101,96,102,98,96,102,108,117,97,101,100,92,111,95,99,106,112,110,101,98,107,88,104,115,87,109,106,86,94,96,87,128,100,99,99,89,107,95,92,111,95,104,101,85,97,112,97,97,95,105,111,103,107,107,92,97,89,103,98,101,96,107,98,88,101,86,106,107,105,112,107,107,96,109,109,98,113,88,87,92,99,102,101,92,100,98,104,82,99,68,103,96,105,103,98,113,102,97,109,108,96,100,111,103,95,107,104,88,95,94,113,104,105,94,94,96,117,107,95,95,106,112,94,110,91,102,99,108,102,100,95,91,106,99,98,108,109,103,98,94,92,110,103,113,102,104,106,98,88,90,97,104,99,88,100,104,98,98,103,90,91,130,106,99,103,111,81,92,111,88,96,105,100,95,101,102,82,92,99,108,105,105,99,71,102,94,95,101,101,106,102,100,105,97,91,97,103,109,96,104,97,96,110,99,100,107,100,97,106,94,109,96,100,102,103,119,95,102,93,75,90,114,104,102,109,94,109,117,111,105,100,74,97,92,109,91,100,106,90,99,87,107,99,105,108,105,100,89,95,84,105,91,103,97,95,96,92,104,96,97,85,92,105,91,119,95,98,111,91,99,111,106,106,100,91,104,114,88,117,103,102,91,103,111,113,87,103,89,98,104,93,103,104,111,115,112,112,109,109,97,100,102,99,127,86,92,102,79,99,85,98,102,103,104,99,95,102,103,105,101,105,102,100,110,108,93,102,95,103,99,101,89,95,103,104,109,85,109,105,116,105,106,100,105,74,98,96,113,109,100,103,105,99,102,99,98,98,98,109,96,103,106,97,90,98,108,95,106,93,101,108,109,120,103,103,98,95,97,100,106,112,95,96,106,92,94,95,95,106,109,114,77,93,95,113,97,87,87,98,104,112,99,111,99,96,101,105,101,116,104,100,97,119,96,100,95,102,94,97,107,108,110,91,101,109,101,99,103,99,111,100,104,93,107,108,107,95,105,105,101,104,109,110,103,95,108,102,97,117,109,100,98,97,96,110,101,99,100,92,103,97,95,98,92,91,103,109,113,102,102,105,103,106,105,99,100,96,110,99,103,103,113,102,94,100,100,99,108,115,99,99,102,110,98,99,101,100,96,108,97,103,106,100,94,113,109,97,94,97,97,95,108,99,97,95,100,87,111,102,91,103,107,111,108,91,102,102,110,105,98,84,96,98,98,101,99,88,110,87,107,103,112,94,104,103,96,99,103,101,108,99,94,94,106,110,109,104,103,104,85,92,100,60,91,79,102,96,99,107,102,116,98,101,101,101,117,96,84,109,88,113,99,102,87,104,103,108,105,114,100,109,107,109,108,100,98,98,113,120,95,99,90,103,111,111,118,105,108,91,106,104,111,99,103,113,107,100,113,99,104,96,101,107,115,110,107,96,107,104,95,93,97,92,108,111,102,99,91,139,114,100,81,116,98,108,105,123,93,109,107,102,91,98,92,95,107,95,95,99,104,103,111,106,100,110,99,85,106,99,116,97,106,102,98,98,106,107,108,100,107,110,101,109,99,103,104,102,104,95,115,106,112,110,102,96,98,104,94,114,99,104,114,108,103,97,96,95,109,81,105,103,115,109,102,96,97,89,103,98,104,103,104,96,101,118,97,109,96,96,111,105,98,105,102,92,88,97,114,86,104,96,104,95,114,100,104,99,107,101,114,91,93,88,103,94,99,95,101,99,110,99,111,104,116,99,100,105,87,105,105,95,104,90,105,102,97,100,92,106,91,109,104,109,99,116,107,107,115,101,104,113,98,104,96,107,111,103,110,113,114,114,110,96,98,99,93,102,107,99,105,98,103,96,105,115,108,111,95,100,105,102,113,87,99,104,94,99,106,100,98,90,95,102,98,92,94,106,84,113,99,95,116,103,112,107,106,96,109,101,100,107,109,103,100,126,90,111,106,90,94,106,106,104,92,94,98,116,100,110,97,108,105,100,103,102,101,106,97,116,98,102,101,103,98,106,94,99,104,93,105,112,104,95,98,98,115,105,108,109,111,96,95,111,87,88,103,94,94,105,109,112,120,101,104,94,109,113,103,113,108,98,94,103,101,111,106,118,108,105,100,102,95,93,95,105,113,105,92,96,91,93,98,97,74,91,83,97,105,96,97,116,101,100,92,103,105,103,97,100,99,99,107,96,98,98,99,109,106,104,105,105,98,109,93,113,89,106,105,119,90,103,109,96,83,103,98,113,109,109,110,102,104,106,105,105,101,98,108,102,106,113,106,107,93,114,93,100,103,102,97,96,98,103,105,109,102,101,94,106,95,108,100,98,96, +416.33963,109,87,104,99,87,99,105,108,96,100,104,104,107,98,114,107,94,101,111,100,108,106,99,85,91,102,98,96,94,111,102,102,103,97,110,91,99,100,100,112,91,100,99,98,100,106,99,105,101,91,96,98,101,111,97,86,95,78,109,98,100,108,98,104,95,104,96,84,116,97,101,103,100,90,88,114,91,103,104,100,105,101,103,98,99,90,93,99,97,99,99,115,88,94,99,107,100,105,107,101,97,99,103,99,95,73,97,110,104,101,127,116,106,97,107,102,111,103,107,99,109,92,108,98,111,108,106,103,103,116,107,100,95,91,99,107,95,91,101,101,98,106,89,96,87,109,94,101,93,100,103,104,102,96,94,112,113,99,114,107,107,110,105,101,104,97,109,91,95,99,96,93,99,90,116,106,110,97,109,111,89,98,98,100,112,90,107,98,94,98,102,96,100,101,95,102,91,94,108,135,118,99,114,110,96,96,95,106,107,96,102,105,117,97,98,97,90,104,100,106,105,100,103,97,97,100,94,108,92,104,91,101,100,109,111,88,114,116,105,101,112,104,100,111,102,108,106,104,107,109,103,85,103,109,115,106,100,101,104,101,96,108,102,104,98,108,106,104,96,100,113,101,108,97,114,129,98,103,97,101,90,98,102,102,100,97,73,91,107,105,98,104,107,101,116,100,93,104,101,100,100,108,92,111,100,97,103,102,102,106,99,102,80,96,87,117,112,106,92,99,95,100,99,104,107,99,94,86,102,107,104,117,100,100,104,95,107,101,109,97,100,106,94,105,113,103,115,101,104,98,97,92,98,106,108,101,113,99,105,112,98,100,115,87,98,96,105,105,108,105,119,96,117,93,102,94,98,98,108,97,99,102,100,100,101,102,91,110,117,109,99,95,92,110,104,88,101,109,105,109,101,104,103,104,101,96,99,75,108,73,93,99,106,103,100,113,100,107,111,98,109,99,103,113,107,94,108,87,112,121,101,113,95,106,90,103,97,90,103,90,104,105,93,108,101,121,94,109,96,108,99,102,100,102,106,101,92,107,112,87,94,101,103,106,106,101,109,110,107,96,114,113,111,98,94,102,107,95,108,104,97,96,113,95,98,99,98,108,102,107,97,109,69,97,105,89,109,101,109,107,116,95,110,105,103,108,101,98,97,102,98,95,100,98,100,104,102,103,108,78,106,99,108,96,118,97,106,106,105,107,100,112,97,102,89,83,110,96,100,100,109,99,105,100,119,81,98,103,109,113,97,101,105,103,94,87,104,96,105,98,104,102,99,99,100,104,100,111,100,109,101,103,120,116,86,109,111,112,105,94,99,97,105,92,94,94,107,111,107,96,104,104,100,106,103,102,100,93,87,107,97,100,94,102,103,101,100,97,105,107,100,117,106,102,107,111,100,112,108,117,119,91,100,106,118,104,94,103,106,99,122,106,100,103,100,93,110,104,107,83,85,100,110,111,93,95,97,94,98,101,105,99,100,112,104,106,103,99,109,105,101,106,104,100,99,101,104,103,101,101,103,100,106,99,88,110,105,105,103,98,106,112,102,104,95,114,81,99,90,105,105,113,99,110,105,117,103,100,106,99,105,94,95,98,98,104,104,105,99,97,111,115,109,97,93,100,102,99,111,91,99,107,105,110,102,105,60,96,106,104,102,118,98,99,95,101,106,82,102,97,102,108,102,100,107,108,106,112,106,102,110,118,100,108,104,99,113,114,102,103,88,106,96,107,97,104,95,93,104,103,76,105,102,103,104,106,115,103,113,111,95,100,109,106,114,111,112,108,100,110,99,87,102,99,113,111,102,95,107,67,106,107,91,100,100,100,106,95,102,105,114,103,101,102,112,100,102,94,95,96,101,108,97,100,101,117,104,82,98,103,96,99,98,94,93,99,120,103,101,110,104,106,111,95,100,99,97,101,96,95,105,105,104,91,104,113,109,109,94,95,105,94,99,97,104,90,99,102,116,100,102,107,104,89,108,93,104,102,107,98,112,104,107,105,99,92,99,112,94,102,106,111,109,112,104,98,99,104,106,105,96,105,108,93,97,111,98,112,104,109,108,94,104,106,109,95,81,108,104,103,105,105,103,98,101,95,91,98,93,104,109,101,99,103,99,102,87,93,102,105,95,64,98,101,99,94,99,98,98,99,93,101,107,100,113,101,107,106,94,109,94,107,104,104,107,103,98,82,103,110,101,100,108,105,103,101,112,106,94,97,103,97,95,106,102,113,97,94,100,112,104,97,104,93,99,92,96,97,100,110,102,108,93,96,100,109,111,106,89,102,89,97,114,102,89,101,100,104,101,99,103,85,111,99,90,94,108,97,104,99,108,104,112,129,125,77,90,107,114,94,104,100,104,97,104,106,99,93,97,95,103,99,90,105,104,101,100,98,109,92,85,118,105,102,110,93,101,115,85,105,99,114,92,104,92,94,110,102,110,101,98,96,102,97,97,105,101,101,115,100,98,122,103,97,96,113,98,107,98,115,99,100,107,103,99,90,96,97,109,96,93,101,116,106,97,103,101,92,87,85,102,95,109,97,87,102,103,98,103,105,114,117,98,105,114,103,98,98,101,92,107,100,105,101,80,107,109,103,106,98,98,100,105,99,104,98,109,100,109,99,96,111,109,84,97,98,103,100,103,108,108,110,110,107,99,121,97,102,102,106,101,103,107,109,106,105,101,106,101,99,101,108,109,106,102,104,108,94,100,107,107,92,107,104,99,106,96,102,113,105,103,100,105,97,87,117,99,90,96,100,95,92,100,99,97,100,116,109,106,102,101,109,100,107,106,100,120,100,102,110,114,99,99,101,106,112,113,111,102,106,102,101,105,107,100,108,101,96,104,101,96,117,113,115,106,101,103,103,95,105,100,111,107,98,104,77,95,101,99,102,106,107,109,101,104,99,108,92,101,102,103,106,97,99,94,105,106,99,105,111,112,103,96,132,87,95,109,106,107,102,102,97,105,99,75,99,102,98,99,105,118,105,109,113,105,92,113,93,118,104,109,101,93,105,105,91,107,95,99,110,104,116,101,104,101,98,100,96,105,110,93,94,98,117,104,106,109,102,99,87,95,101,109,106,107,93,108,106,106,93,100,99,109,96,113,107,97,91,95,99,102,109,84,102,116,94,119,122,102,114,100,98,108,105,87,101,105,112,109,99,102,100,97,100,91,108,99,107,112,100,99,113,100,109,111,95,103,108,98,96,88,99,94,93,98,101,98,102,103,97,102,113,113,114,111,107,105,102,110,111,108,93,97,109,106,96,100,89,91,109,97,94,95,105,87,90,105,112,110,90,106,103,94,102,102,103,98,108,94,87,100,98,98,98,108,104,101,91,94,102,112,115,99,102,97,107,97,108,99,94,112,110,86,109,105,97,105,109,112,96,99,99,106,98,102,115,95,107,111,99,105,98,94,103,95,100,95,107,103,100,94,119,104,98,95,109,108,95,106,94,101,103,117,98,100,104,103,107,107,105,109,101,105,98,103,96,98,105,92,98,102,108,95,113,100,91,118,102,100,120,105,112,105,94,95,99,104,95,94,103,104,99,108,101,112,104,109,101,95,100,102,95,105,106,102,101,93,114,108,101,106,113,106,120,96,113,102,109,105,106,112,95,101,116,100,88,89,91,108,112,107,101,108,104,91,104,104,109,115,105,98,97,98,95,95,99,101,86,106,106,100,102,104,123,97,110,113,102,100,96,106,98,98,95,110,100,115,91,105,105,98,98,93,108,100,95,88,105,118,107,103,94,104,107,105,101,91,89,115,110,107,85,99,96,100,108,99,96,100,95,101,109,125,109,112,131,97,92,116,106,96,104,98,107,107,107,102,94,98,94,102,112,98,101,101,97,105,101,67,102,99,99,105,87,113,88,101,96,102,91,101,104,103,107,101,100,130,104,97,100,91,100,102,82,100,98,96,105,111,94,87,109,96,104,91,110,103,98,93,97,114,92,94,102,95,93,111,98,96,102,107,97,118,107,103,93,103,105,104,102,112,90,103,111,106,111,103,98,91,93,98,99,96,105,107,95,106,109,97,105,105,111,107,101,119,104,100,108,99,97,113,111,77,97,100,101,92,111,96,97,94,101,114,103,101,109,117,102,107,106,106,118,103,107,118,109,90,104,95,100,104,97,102,96,105,103,101,99,108,97,109,99,95,108,102,94,96,105,98,100,96,104,104,104,99,121,107,102,111,100,116,105,93,108,109,108,108,108,112,99,104,103,114,103,98,100,96,108,108,101,103,103,110,97,107,106,105,98,92,113,104,107,104,110,101,109,109,107,95,104,100,104,110,96,90,93,96,109,102,101,107,98,112,91,102,112,106,94,101,108,108,126,111,107,102,101,101,96,103,94,110,121,115,106,87,83,98,106,99,106,98,100,108,78,92,99,100,104,104,100,107,100,113,96,104,101,100,93,120,102,106,108,102,87,108,97,103,109,100,113,85,98,97,108,102,95,113,117,95,99,101,97,101,110,113,110,103,109,90,95,100,96,100,94,106,105,98,102,109,98,104,93,96,91,99,100,100,92,92,95,111,109,106,107,102,94,104,103,90,91,116,100,96,98,107,97,99,93,108,107,102,103,97,104,91,101,106,119,102,99,104,106,100,106,112,95,100,87,95,97,96,120,104,89,100,94,101,98,101,87,104,99,90,109,123,102,115,111,109,81,109,103,101,104,97,93,108,97,96,102,91,115,95,99,100,112,109,106,102,95,104,104,113,109,99,99,102,85,106,91,106,101,109,142,100,91,102,92,88,105,111,97,114,101,103,101,100,102,75,99,109,101,107,75,97,108,102,103,100,106,94,98,93,87,94,76,109,105,112,88,89,86,109,101,112,112,79,86,98,93,115,109,92,102,113,79,112,98,100,111, +416.47983,94,106,99,103,95,107,86,82,95,100,101,91,103,86,100,94,89,103,108,95,97,99,83,106,98,123,100,93,93,99,102,98,95,101,91,94,106,82,113,102,92,96,99,80,121,108,105,96,88,108,97,111,95,110,97,98,104,90,101,96,99,102,101,101,104,97,101,100,98,95,100,96,104,100,91,113,98,103,106,112,106,104,103,95,104,96,97,98,93,101,106,91,97,93,113,90,89,101,103,96,95,95,100,91,107,87,83,99,98,108,95,109,98,111,92,88,95,104,100,95,104,96,109,108,97,104,106,99,104,106,100,97,93,104,112,101,109,106,96,84,90,95,90,107,101,101,108,102,101,92,116,100,98,98,92,95,111,101,96,104,91,108,99,90,94,96,98,100,95,99,97,90,96,98,103,99,105,97,98,88,97,96,87,105,95,96,90,83,96,98,96,109,101,113,105,96,102,109,103,109,94,110,97,98,105,102,100,107,101,104,99,99,110,103,104,97,88,104,106,107,104,105,106,95,90,97,104,108,99,100,93,103,139,104,99,107,98,122,98,97,98,89,111,94,105,94,102,105,114,97,86,105,96,90,107,104,92,104,103,113,91,97,96,101,86,106,107,102,101,108,109,102,92,107,117,89,93,100,89,98,112,110,89,109,99,94,78,105,110,96,96,85,107,93,118,108,110,100,106,97,92,100,102,95,79,104,115,103,96,91,91,110,85,106,97,109,106,107,109,102,109,80,96,104,103,98,94,66,90,111,92,103,108,95,87,125,108,116,93,103,95,100,92,101,109,95,97,102,100,102,113,89,97,98,91,104,97,97,92,101,105,93,99,97,104,97,110,83,108,99,106,105,91,98,103,100,109,113,104,102,100,104,98,101,106,87,102,102,89,103,106,91,111,92,98,110,101,101,97,118,101,76,97,102,99,93,108,105,110,104,94,94,96,96,82,78,93,104,104,98,105,101,98,96,96,96,95,90,100,100,102,104,101,98,99,91,101,119,97,102,108,102,95,97,110,109,103,98,108,104,104,95,98,103,101,95,87,111,102,106,104,108,105,98,109,106,94,99,98,108,108,103,94,98,103,90,97,96,98,113,102,111,116,103,96,108,97,103,105,101,112,107,105,111,95,98,106,114,86,104,106,91,121,104,98,100,89,118,108,109,96,98,94,93,93,102,106,90,93,94,98,103,113,97,109,100,113,116,119,98,90,104,92,96,94,77,101,103,113,102,97,111,106,102,95,95,102,102,110,104,115,103,98,97,94,92,99,100,90,104,81,86,99,104,111,101,103,103,102,99,87,95,111,102,110,107,101,99,106,99,97,83,102,110,89,109,97,105,112,92,106,109,101,105,109,92,80,107,105,111,106,106,99,100,93,105,102,107,111,99,98,101,96,100,109,94,93,102,100,98,93,107,90,99,111,94,95,101,91,93,88,107,91,104,91,99,107,95,89,79,100,92,100,98,102,97,100,111,105,96,107,103,86,100,110,99,100,104,103,73,113,104,104,105,110,93,99,115,100,94,109,105,107,101,97,107,88,98,108,89,100,100,114,113,105,103,89,90,105,90,102,91,96,113,91,99,94,109,106,96,98,92,106,102,99,104,101,113,91,100,99,99,95,94,97,108,95,108,102,100,97,78,104,99,85,92,88,102,100,103,98,92,106,94,103,102,101,101,106,101,99,92,96,106,97,116,105,84,91,95,108,104,105,95,106,98,95,100,103,102,83,92,92,96,108,106,100,95,99,91,105,95,100,129,105,98,107,92,103,105,98,105,111,94,91,90,108,105,110,111,102,91,102,95,96,98,103,97,98,102,92,106,89,109,102,108,95,92,114,100,104,106,108,96,97,86,105,119,95,92,96,105,102,99,104,97,109,102,92,100,117,101,108,97,101,99,102,104,101,95,110,104,100,88,97,99,89,108,94,95,87,98,100,91,87,104,94,104,88,101,106,95,102,100,95,104,94,101,103,110,96,112,78,108,102,90,103,99,96,81,107,105,96,110,99,113,96,104,101,115,75,93,96,95,105,96,101,107,98,101,91,81,107,99,99,98,124,97,100,114,111,102,110,105,100,98,99,99,94,111,108,105,99,109,109,99,99,98,117,105,103,109,99,105,93,97,102,99,98,95,78,93,100,102,99,114,104,94,106,105,110,86,101,105,104,100,105,100,100,109,100,104,109,96,97,107,93,91,94,93,101,101,104,115,99,98,95,96,105,102,108,93,106,100,99,83,91,108,100,91,102,99,104,104,104,94,100,128,101,99,100,102,101,91,118,97,101,94,98,97,100,109,103,103,101,87,101,121,101,109,112,98,102,93,90,99,98,94,106,102,103,113,103,93,107,100,96,107,113,108,113,110,101,99,96,99,103,89,94,103,100,117,102,96,116,103,109,101,113,91,96,98,86,96,99,109,92,101,83,106,112,108,83,98,90,89,103,97,107,88,91,107,94,113,99,117,87,83,105,105,109,99,90,89,98,82,91,92,93,96,73,98,116,109,102,115,117,94,102,112,98,106,91,103,101,95,123,98,98,99,116,101,88,83,108,102,92,102,98,100,117,119,108,91,98,102,91,117,96,91,101,94,102,102,94,96,107,101,101,107,106,113,106,100,113,105,113,101,107,100,104,87,92,91,105,106,100,93,103,101,102,98,105,95,106,97,92,112,106,99,105,121,100,109,111,104,109,104,108,96,102,79,111,106,112,102,108,112,94,106,103,106,104,113,99,94,105,95,111,100,112,101,96,105,108,108,103,61,96,94,104,94,105,92,118,104,94,112,100,117,95,99,100,98,115,95,111,109,111,104,108,95,98,96,109,95,71,116,105,108,95,108,97,86,117,100,99,104,104,108,100,97,102,97,112,102,92,99,110,106,106,107,104,117,103,97,107,103,106,103,115,101,110,112,103,120,110,106,114,107,116,98,91,96,92,112,108,113,91,111,106,108,106,105,90,97,107,117,94,110,103,102,94,91,100,97,98,102,104,99,105,100,95,98,107,97,100,105,97,101,108,106,88,111,96,115,84,99,91,103,93,105,99,106,104,90,98,96,115,95,113,115,98,101,116,108,97,112,91,106,101,95,105,93,105,86,96,108,102,95,103,96,105,104,111,94,95,113,105,98,92,98,121,107,97,102,104,93,101,97,115,102,96,95,101,99,102,102,110,108,91,104,97,102,109,116,94,100,102,102,101,107,101,103,106,94,100,98,103,103,104,105,104,100,98,96,103,112,115,84,104,102,104,112,109,96,96,107,104,94,111,99,104,97,109,94,112,100,100,95,106,91,102,106,109,108,92,112,109,120,96,104,99,103,108,97,108,100,108,105,104,113,99,106,104,112,103,109,98,93,105,107,91,106,102,101,105,120,106,106,98,96,106,98,103,115,101,102,102,95,107,121,105,108,95,105,100,105,104,104,102,108,97,101,99,105,98,100,107,103,91,102,90,105,96,97,103,108,110,81,113,125,100,103,104,95,102,112,108,92,112,110,109,107,100,91,96,107,80,95,93,94,100,112,117,102,94,109,94,94,95,106,109,99,101,108,99,100,111,102,116,96,106,110,105,97,107,114,103,95,109,108,103,103,106,91,107,119,108,115,103,96,100,102,98,96,106,109,96,98,108,103,106,104,111,97,101,125,105,122,98,99,91,106,101,102,96,102,105,100,102,113,100,104,102,105,108,95,103,97,118,107,118,104,99,98,96,115,92,92,104,93,88,101,97,93,106,104,101,98,95,97,101,100,107,107,108,104,98,100,103,96,106,77,110,102,96,89,109,105,99,111,100,105,101,119,116,104,106,94,100,97,101,89,93,112,97,76,107,106,91,96,105,100,98,96,101,84,101,91,91,106,103,96,106,98,97,114,93,96,112,105,99,102,96,102,103,109,106,102,94,92,93,93,109,98,100,105,97,99,101,100,113,96,98,101,109,97,101,95,97,109,88,115,100,113,98,100,123,89,111,110,93,80,106,124,86,101,89,103,79,102,98,102,94,99,111,99,98,114,109,101,113,89,102,107,116,93,110,106,104,96,91,92,94,98,97,98,106,101,107,88,103,100,97,92,81,97,103,102,106,101,98,100,104,105,98,109,93,103,111,93,100,101,111,110,101,95,100,105,99,94,90,92,95,96,109,103,107,105,101,95,112,94,103,99,112,93,94,110,105,110,105,98,121,94,90,107,101,95,100,105,108,100,93,100,109,99,98,105,101,88,104,104,105,91,104,111,96,105,93,117,103,87,103,126,106,107,99,90,98,99,109,117,105,105,99,102,106,100,93,98,94,113,95,93,109,86,106,106,110,104,105,111,99,100,94,107,103,98,103,92,89,103,102,102,106,108,108,94,98,98,113,111,106,104,87,112,99,93,89,105,98,114,105,113,99,106,102,97,92,103,101,77,89,99,87,105,108,77,114,90,98,100,122,100,92,111,100,94,101,74,95,83,102,98,99,99,113,103,89,95,109,100,99,102,101,106,121,74,96,87,109,115,99,102,112,111,96,89,115,106,123,91,107,100,97,125,103,113,111,96,104,83,110,89,113,91,99,104,101,104,106,110,94,94,106,93,94,104,97,91,102,102,95,103,103,90,107,87,105,107,100,93,94,109,104,96,99,108,104,103,93,100,92,120,103,104,108,94,102,109,100,92,98,99,106,94,103,90,90,100,101,99,91,102,103,90,100,116,88,113,97,98,96,100,104,102,101,96,96,89,101,95,100,87,102,100,72,88,109,98,88,111,109,92,95,98,100,110,94,110,113,105,104,98,114,98,104,109,95,98,96,83,101,101,95,97,99,96,112,99,95,101,109,93,100,108,95,112,99,112,102,93,112,99,99,100,95,91,95,104,102,87,98,108,99,99,86,102,106,92,93,105,115,104,105,102,87,95, +416.62006,103,104,110,75,96,112,94,100,92,103,97,102,95,100,107,104,88,82,95,105,104,103,108,114,90,98,98,103,100,103,104,104,100,111,95,94,113,96,94,87,96,98,83,113,93,102,91,101,96,120,93,100,112,79,99,88,91,90,102,88,109,111,102,97,108,104,102,110,103,101,95,116,106,99,103,96,95,87,104,117,80,103,97,105,105,107,92,107,107,96,100,104,100,88,101,93,116,87,102,109,93,98,88,99,99,95,102,99,108,80,96,68,97,98,98,101,104,109,96,99,97,90,94,105,82,102,103,96,120,95,98,93,91,97,103,102,103,97,101,95,97,103,95,103,101,102,100,113,97,101,102,96,110,92,101,100,101,101,104,91,100,83,102,98,62,96,99,103,108,103,108,102,108,98,101,104,95,100,95,103,94,118,97,89,98,109,98,110,100,98,98,95,106,95,92,99,87,95,101,97,98,109,97,104,105,110,100,102,108,102,102,94,96,98,104,106,92,98,96,104,103,106,102,96,71,102,101,100,134,89,97,107,95,98,101,98,115,114,108,104,98,108,110,108,108,100,107,117,111,111,87,107,104,96,97,103,98,102,104,91,101,108,118,100,97,106,110,88,97,99,103,95,104,89,98,107,86,107,98,107,106,102,105,101,97,86,90,104,96,102,104,89,107,86,121,95,102,109,86,102,101,117,101,103,106,116,101,94,92,105,91,108,105,109,107,102,101,98,101,106,98,107,100,95,99,105,93,88,110,100,107,106,102,103,100,101,101,112,96,105,108,107,100,94,100,117,103,97,109,109,100,107,90,98,107,92,100,96,94,103,98,109,93,94,100,95,102,97,101,109,80,124,97,107,103,86,89,105,94,107,100,108,98,108,102,112,90,108,101,109,131,95,90,103,106,95,109,97,96,95,104,93,93,94,93,95,106,111,110,102,98,95,99,107,98,101,99,100,104,99,102,96,105,105,99,88,96,110,103,118,79,103,100,96,97,98,103,99,98,118,86,106,125,102,100,104,112,105,101,81,108,105,100,108,99,98,103,97,94,92,99,107,101,106,113,105,102,91,89,102,99,114,99,106,96,90,80,108,120,101,94,108,112,109,107,95,108,97,90,97,105,110,101,109,105,103,99,104,103,91,98,101,105,91,110,115,103,108,109,107,104,105,110,102,69,100,100,101,101,103,102,96,119,98,87,103,98,104,102,97,100,101,110,97,105,101,101,97,88,108,93,105,100,105,91,107,114,99,106,112,97,114,88,100,103,97,114,99,98,101,61,105,90,99,94,100,108,105,103,93,98,101,98,109,95,112,101,101,102,112,106,99,99,94,96,113,102,98,102,107,99,106,90,89,104,95,99,107,105,95,68,129,110,106,93,107,102,96,106,106,108,125,104,98,112,88,113,97,99,100,101,104,107,100,103,93,91,102,101,104,102,103,103,97,89,99,97,101,103,100,105,102,109,93,101,89,101,99,93,83,101,122,100,109,105,106,103,101,109,104,109,93,102,108,92,94,92,95,105,100,104,101,103,90,105,96,103,101,115,113,102,94,106,95,105,102,104,90,104,95,99,114,95,105,106,97,107,100,91,101,108,101,101,98,97,104,110,95,110,91,105,99,107,95,104,102,103,101,98,105,95,93,89,99,107,95,97,121,106,99,99,108,106,103,103,85,82,99,100,105,108,108,97,114,105,96,104,111,106,115,109,98,103,68,107,110,99,85,105,107,94,101,98,90,98,101,104,96,95,103,101,103,105,101,108,107,96,102,99,96,105,109,71,97,91,98,110,113,97,106,98,104,98,100,105,103,90,70,110,109,90,107,95,108,109,103,106,103,108,105,118,93,97,94,101,104,91,91,106,104,98,111,94,108,98,108,107,108,108,105,100,97,96,95,94,110,102,98,98,99,100,105,109,108,100,109,95,99,101,99,100,87,104,113,66,98,99,95,97,106,101,104,109,105,103,101,93,105,103,119,109,97,91,98,100,94,99,96,103,105,103,104,106,101,97,100,94,116,112,93,111,104,113,111,96,105,98,97,104,102,108,113,112,101,122,96,95,102,97,80,95,99,100,106,97,91,99,100,97,100,100,104,97,108,104,97,96,107,105,102,101,101,101,98,98,97,101,92,105,106,100,96,91,108,106,92,105,99,96,98,102,108,103,91,100,106,101,99,102,101,101,108,105,97,105,103,105,93,104,96,96,103,119,108,106,106,96,99,106,101,104,98,95,91,95,95,110,106,104,102,105,103,104,90,92,94,97,103,94,100,102,96,101,91,107,109,87,98,97,90,95,109,92,105,102,102,90,102,99,105,105,100,112,87,90,109,102,112,96,89,113,108,106,99,106,99,97,108,97,98,101,99,89,103,106,100,102,98,91,102,116,75,99,105,90,97,110,106,90,107,92,116,89,108,97,104,113,84,104,91,95,108,103,105,111,98,93,99,89,103,92,108,94,105,109,108,94,99,111,104,94,100,95,94,96,104,61,94,97,94,104,103,107,101,108,97,89,89,105,94,98,108,110,109,98,128,108,96,107,100,102,108,93,91,102,102,98,110,105,104,96,94,95,102,103,109,105,103,95,96,108,98,108,111,100,106,100,108,96,94,108,113,107,106,104,109,96,102,94,106,123,98,97,95,96,107,103,93,111,104,99,105,104,113,94,104,102,109,94,113,98,92,111,99,96,101,104,95,116,103,97,109,107,102,98,109,92,89,112,98,95,113,122,93,107,106,102,102,110,103,101,93,102,134,94,105,102,106,97,86,106,100,108,112,96,94,106,119,105,105,110,100,113,102,103,95,102,98,106,99,102,100,96,97,103,100,106,103,112,106,94,102,93,100,95,98,93,108,109,100,105,109,104,97,91,106,103,107,100,100,100,93,98,99,111,95,103,92,96,86,103,97,102,89,103,109,105,104,99,107,95,97,100,99,110,108,105,98,100,103,107,111,106,109,102,106,104,94,96,108,92,108,83,94,106,108,107,96,109,103,127,104,96,112,110,103,110,91,116,108,106,108,109,106,101,108,102,103,107,106,108,117,117,104,98,95,94,105,86,96,96,100,86,91,102,95,112,106,118,94,98,104,108,114,113,97,108,98,102,107,103,113,95,128,98,84,103,117,102,97,90,102,90,99,110,92,75,100,93,98,102,102,91,116,108,96,92,102,100,99,105,106,91,100,101,93,102,108,102,100,101,111,91,103,107,90,105,108,110,113,110,106,101,105,105,102,107,98,116,100,108,98,98,109,102,107,89,103,104,102,91,120,112,108,110,106,109,105,90,111,109,88,105,127,94,114,118,112,93,101,99,97,94,107,96,96,96,103,100,95,100,115,101,102,105,110,103,110,106,103,114,101,99,99,89,105,95,106,102,98,105,101,98,102,105,99,101,101,106,105,99,106,97,107,103,90,90,95,103,98,94,105,100,104,88,108,113,96,96,109,105,107,108,114,101,95,99,88,100,109,106,89,108,107,92,102,92,103,113,108,96,113,100,112,124,109,103,114,92,106,105,97,104,101,94,95,97,108,104,100,105,107,105,88,110,94,101,98,95,110,104,98,106,98,108,87,103,85,102,102,94,97,105,119,100,115,101,102,101,102,109,87,85,103,102,100,105,95,88,106,98,105,112,97,101,108,99,106,96,105,110,99,106,101,91,100,97,98,107,109,105,100,97,105,90,98,101,92,111,105,95,101,105,105,98,106,103,100,83,91,103,104,99,97,112,95,107,91,110,103,99,99,85,91,108,101,97,99,106,106,104,110,98,100,109,94,97,105,101,99,107,96,95,93,98,101,111,108,102,97,97,100,103,107,92,104,104,103,105,102,95,98,98,94,106,97,100,98,102,103,89,97,108,118,107,119,93,98,87,102,110,98,70,117,101,89,108,88,100,97,98,77,93,107,101,97,99,107,88,100,91,88,99,97,96,104,93,102,102,98,99,105,85,106,93,105,107,103,91,92,83,91,106,100,100,104,102,119,109,107,100,102,72,102,117,122,100,98,113,110,94,98,103,107,99,110,113,99,95,102,97,105,91,105,104,108,105,104,101,93,115,91,99,106,87,102,95,72,97,103,101,97,99,102,101,105,101,93,99,95,101,102,123,94,97,92,108,92,105,107,105,93,98,108,107,89,100,104,105,104,100,105,95,103,100,107,91,104,92,98,96,98,98,92,110,94,106,104,95,86,103,93,106,118,113,103,92,117,89,104,120,90,89,101,83,103,112,102,95,104,108,102,101,94,94,109,110,94,104,105,97,106,107,105,101,112,110,96,109,111,95,94,99,94,92,96,95,92,102,102,105,103,108,107,106,97,92,95,107,112,107,95,103,105,112,90,109,100,102,97,103,112,116,91,103,113,101,105,107,102,90,105,111,110,94,108,99,100,94,104,95,100,79,117,103,99,106,105,102,91,103,88,98,98,103,92,100,105,92,110,109,118,102,105,110,90,92,80,118,109,71,107,98,91,92,92,105,104,104,117,103,97,86,112,107,98,99,97,100,90,90,100,91,102,112,94,99,90,91,107,95,103,101,90,108,100,77,91,92,91,95,103,99,96,92,99,105,95,94,104,94,104,105,113,109,92,106,100,101,108,100,98,100,105,94,103,107,127,113,101,84,95,95,101,98,105,109,100,101,117,93,95,105,93,90,107,70,95,96,95,98,106,93,106,98,93,95,117,76,91,92,89,91,105,89,109,101,90,85,103,100,96,87,101,97,94,106,87,100,105,112,95,101,102,108,101,103,104,84,85,98,93,111,88,99,97,116,109,91,98,102,96,92,97,101,103,104,102,102,108,110,101,99,95,112,104,100,86,94,98,125,100,95,102,97,103,101,99,115,92,102,101,111,109,115,109,98,115,99,91,104,85,85,99,120,109,87,101,95,85, +416.76028,116,110,87,89,69,103,106,103,92,106,89,83,105,98,95,94,101,108,102,100,104,95,107,106,94,112,109,107,96,115,98,106,103,112,104,109,101,90,96,117,107,113,89,101,96,95,99,98,94,103,87,107,103,99,99,102,94,98,109,105,92,97,97,88,93,115,96,99,105,101,90,111,109,97,93,109,109,92,110,102,101,106,100,93,98,94,92,94,100,104,98,103,105,108,109,93,104,108,91,102,104,96,97,108,104,100,96,109,102,101,97,80,109,107,113,97,108,94,97,105,98,95,97,110,100,97,101,95,109,95,97,100,102,114,103,101,111,91,90,106,91,109,113,96,96,101,97,97,92,106,97,107,95,94,102,92,96,100,95,102,88,97,99,94,106,101,97,70,127,96,109,106,83,94,97,104,95,88,103,102,109,95,97,104,104,94,105,99,113,94,101,104,108,96,100,106,101,93,105,96,94,99,87,102,96,99,99,105,109,105,99,103,98,108,101,105,97,109,102,100,102,108,106,103,95,111,94,103,96,114,99,100,116,101,101,119,101,94,106,100,114,93,108,106,109,90,101,103,94,100,99,99,107,99,97,106,103,93,96,99,99,97,91,104,97,106,112,106,101,90,96,103,109,100,104,108,100,110,105,103,95,98,103,107,100,78,94,97,103,111,101,104,101,109,110,110,114,102,86,107,94,110,97,100,104,107,109,103,81,108,95,106,119,89,103,108,103,80,96,98,97,106,105,86,121,101,91,90,106,119,102,103,99,107,99,108,102,101,93,108,100,90,97,93,92,132,95,101,102,103,100,96,96,106,104,99,107,112,99,96,105,91,124,92,102,99,106,100,106,104,106,96,105,95,105,99,111,107,101,107,99,106,98,101,103,96,99,110,97,97,111,97,101,97,98,99,116,115,100,105,101,94,100,106,89,100,105,100,102,101,94,77,106,90,98,103,116,103,106,105,109,113,105,114,94,79,109,106,98,106,101,98,91,102,96,92,88,112,108,106,113,106,100,109,98,113,95,89,102,98,83,105,98,112,107,112,96,104,74,110,102,102,112,106,107,106,98,100,91,109,102,96,107,106,96,102,109,108,122,105,98,95,103,97,110,102,124,113,105,109,98,107,104,96,101,91,91,94,86,110,103,100,96,102,106,102,83,99,106,99,105,101,102,105,100,98,99,105,104,99,90,95,93,108,96,106,101,103,95,107,106,102,101,94,107,112,92,104,104,102,96,97,94,95,108,108,90,109,98,99,97,108,114,96,106,98,87,113,102,94,95,95,93,107,101,100,99,120,109,97,91,93,112,113,93,96,104,111,102,95,105,96,97,98,100,95,96,101,95,102,105,105,101,105,96,110,101,105,107,96,90,105,96,93,100,100,106,97,100,108,110,91,113,117,112,134,107,115,102,98,108,99,107,108,109,102,91,92,100,108,105,109,100,107,95,101,92,104,99,100,117,99,106,113,95,100,94,96,100,106,101,115,102,114,99,79,98,110,99,105,96,94,97,101,91,88,112,101,102,102,101,99,95,104,99,112,98,95,110,100,95,105,95,96,103,99,93,98,93,95,103,112,98,104,103,105,97,101,99,94,94,102,109,102,104,105,100,88,88,95,97,96,99,99,96,99,95,98,118,106,100,103,106,101,99,86,94,101,102,101,113,91,102,107,108,93,96,96,110,101,104,105,102,90,116,107,105,97,91,100,107,113,100,100,105,110,108,94,112,97,108,98,97,107,99,102,93,104,92,105,128,97,94,105,96,93,92,99,108,93,103,108,113,99,89,103,105,96,99,99,107,96,98,100,94,99,96,101,98,97,97,105,91,99,95,102,107,110,98,102,99,117,98,95,104,106,96,97,95,91,110,107,98,96,95,104,124,102,101,114,96,89,99,100,105,107,106,93,101,104,102,98,102,109,108,105,112,98,101,101,103,91,101,105,99,111,97,94,98,100,105,103,119,94,96,102,99,104,117,105,102,86,95,105,99,102,104,116,98,100,105,88,105,105,109,96,97,103,100,108,105,109,98,97,104,86,92,91,106,104,103,96,103,97,87,98,82,104,62,101,97,99,102,125,86,86,112,99,95,105,105,101,113,105,101,108,71,97,105,101,104,100,100,104,92,103,97,96,105,112,102,85,102,94,87,106,110,101,118,97,102,106,125,109,107,101,103,102,91,109,98,104,99,99,87,109,95,108,102,88,96,95,110,89,116,106,92,90,100,95,91,117,99,102,105,99,96,99,95,104,105,100,101,105,95,98,110,99,101,104,103,102,87,101,101,103,122,98,82,116,98,96,111,100,97,107,112,100,103,104,102,94,110,103,94,88,106,94,63,108,100,97,119,88,100,98,94,112,108,95,100,101,101,104,95,96,99,112,101,104,109,104,87,90,103,108,96,109,101,104,99,107,94,93,104,108,109,101,115,93,102,99,100,77,107,97,104,100,100,98,104,109,93,105,101,109,110,106,107,103,101,100,93,99,94,97,96,101,104,98,109,91,99,105,110,101,100,98,99,103,94,114,99,100,116,96,109,109,93,104,108,105,113,106,99,98,102,95,105,91,104,109,88,103,103,113,100,117,102,92,104,106,87,105,109,101,116,107,103,101,110,113,105,106,110,116,105,105,112,102,103,103,105,95,101,113,102,100,103,97,105,97,93,107,98,88,121,98,106,101,105,109,98,104,109,114,107,95,106,98,105,119,108,99,99,99,99,96,102,87,96,103,103,81,101,102,105,99,101,102,103,109,87,101,110,87,96,110,97,95,103,109,105,105,100,103,94,115,110,104,91,112,83,106,98,96,105,108,102,102,104,111,117,94,108,96,102,107,112,95,108,103,111,94,105,94,108,113,98,103,106,115,98,104,114,111,106,103,102,111,110,97,87,122,104,96,97,108,106,92,85,92,100,111,105,110,104,90,92,104,102,110,103,102,101,100,107,101,103,108,101,91,95,108,102,91,117,113,93,94,92,107,94,99,117,104,97,98,94,96,105,109,101,102,116,111,106,96,104,100,99,94,97,113,105,101,109,103,111,119,91,113,108,119,109,104,106,102,108,96,98,108,102,99,92,106,97,96,91,94,80,99,111,104,120,94,109,106,102,95,108,105,112,110,108,105,105,104,92,105,89,102,101,108,115,83,118,103,99,107,97,95,105,107,108,95,117,88,117,118,103,103,88,107,135,108,133,99,107,99,99,104,93,100,105,98,94,97,104,100,109,126,109,95,93,113,96,99,98,105,101,106,98,114,116,98,109,108,107,102,109,88,102,100,101,98,102,90,98,111,95,88,103,95,117,107,102,121,108,104,106,106,92,116,95,108,95,87,111,100,118,105,93,102,114,100,103,104,109,107,119,105,104,110,95,99,97,96,102,106,95,113,94,102,104,105,96,103,107,107,88,94,99,107,103,120,102,100,102,110,102,87,103,101,96,107,86,121,117,104,114,98,106,101,86,97,123,107,106,95,89,101,102,100,107,103,105,102,106,101,107,104,84,113,113,103,102,94,104,97,107,110,114,114,113,113,106,104,95,102,114,115,108,103,115,102,108,105,105,107,104,70,98,99,97,97,100,106,89,108,124,106,95,117,98,96,109,105,95,105,100,105,97,107,94,101,92,100,112,110,102,92,99,117,110,107,103,95,96,96,98,104,107,113,103,102,110,106,105,95,98,124,105,102,105,100,106,120,105,103,111,104,107,106,104,95,113,101,98,87,106,115,108,104,104,108,102,99,93,102,89,99,97,97,101,119,86,107,102,82,109,102,102,101,99,103,90,95,109,97,99,112,101,111,113,95,79,102,99,106,106,100,103,114,103,102,99,96,97,121,92,98,113,105,106,94,92,101,99,96,110,94,96,109,113,112,99,99,104,95,92,92,99,95,86,94,97,101,94,107,112,109,103,103,109,95,102,113,103,100,103,118,105,98,98,104,108,92,111,99,92,93,96,112,98,97,109,102,94,114,109,102,100,101,95,104,106,92,95,115,94,98,95,109,108,97,93,95,102,110,92,100,94,102,105,109,99,96,91,113,106,106,102,101,109,98,96,105,100,104,112,105,96,107,111,106,102,99,101,109,102,100,106,101,102,108,106,120,96,108,109,100,110,100,102,102,92,100,102,109,93,91,93,97,101,94,100,113,101,108,104,105,95,86,113,101,107,99,102,98,101,96,104,102,109,102,97,90,104,96,106,92,88,106,114,95,90,92,114,96,89,85,90,98,100,92,94,94,97,108,95,106,97,108,100,108,95,100,111,100,99,107,113,101,96,101,108,102,98,114,108,102,95,101,88,92,97,101,90,102,110,117,97,105,100,110,98,100,100,91,108,86,94,100,99,94,103,95,106,109,113,99,93,117,98,94,104,103,100,87,99,100,105,91,105,100,100,109,97,108,89,101,88,91,95,107,91,101,98,98,111,101,102,103,96,95,98,94,114,108,93,107,126,99,98,101,108,103,78,105,91,107,101,89,111,109,90,107,105,105,109,92,100,109,99,94,118,102,90,92,124,109,110,80,109,102,103,90,93,109,97,105,90,92,99,95,104,91,100,99,105,98,100,99,105,105,98,99,89,109,100,95,97,107,100,93,105,94,100,91,93,96,98,99,90,108,98,99,93,102,106,101,100,90,112,95,104,110,102,90,103,92,95,98,101,96,106,97,107,97,90,94,108,92,92,95,92,99,90,108,96,106,99,94,101,103,102,102,100,98,109,95,96,100,97,104,94,94,85,102,105,105,106,98,93,98,104,106,99,102,94,106,106,105,95,102,104,98,98,92,92,110,64,99,84,99,92,115,95,98,91,97,95,85,112,95,94,83,92,88,108,100,75,107,65,104,103,98,103,92,93,107,93,104,93,94,92,99,93,99,113,105,100,101,95,95,96,90,96,106, +416.90048,101,103,106,101,105,102,119,95,107,94,95,103,88,101,112,106,110,108,100,99,109,101,92,99,109,95,106,97,92,99,86,93,106,90,97,100,89,102,90,116,100,91,112,100,105,107,96,104,100,110,89,101,104,91,95,109,105,94,101,101,102,101,105,92,106,103,95,98,83,96,116,98,95,86,84,95,97,105,102,99,100,97,91,101,109,93,102,98,114,90,103,95,105,97,103,109,103,95,102,98,90,96,86,98,97,109,95,99,92,92,95,110,107,103,108,96,100,102,102,107,95,101,110,105,107,115,102,94,105,104,97,111,98,111,104,103,99,100,106,109,97,93,90,89,94,104,97,111,103,95,106,96,105,91,98,107,107,99,103,103,100,99,98,101,107,98,95,105,96,101,105,106,83,106,110,96,108,96,90,105,103,100,95,101,96,96,113,98,108,99,97,104,106,102,98,102,92,126,96,105,97,107,104,100,92,76,102,95,114,98,94,111,100,119,98,96,105,109,100,102,99,100,101,95,91,118,125,113,97,112,92,104,101,109,108,109,105,104,95,94,96,100,104,102,97,109,105,111,104,96,91,103,94,89,113,112,94,108,93,109,105,102,95,91,95,106,92,94,114,100,90,107,97,94,105,82,90,103,95,99,106,100,99,100,104,108,85,97,95,106,112,101,109,103,107,104,97,91,95,90,101,101,95,114,103,105,106,105,96,114,94,94,104,83,98,100,101,118,101,113,96,97,91,100,106,102,100,100,103,108,97,108,103,85,116,102,100,100,104,102,114,87,95,96,83,106,94,96,99,84,101,105,98,113,90,98,109,107,105,93,101,103,108,97,90,105,97,106,95,98,112,102,107,96,94,112,104,104,112,105,102,106,105,104,102,96,86,104,90,93,92,106,99,114,101,96,74,94,103,103,101,96,65,101,94,97,113,86,110,109,100,96,105,91,106,115,95,104,92,99,97,105,97,92,97,96,95,91,105,98,102,93,109,99,100,114,93,105,100,102,101,97,90,106,103,97,111,88,88,101,97,106,94,103,97,97,94,105,101,103,93,108,88,105,103,102,121,97,99,100,99,101,92,95,100,105,96,104,101,110,98,106,110,110,133,107,105,111,100,90,99,101,111,94,89,104,87,106,101,97,98,101,99,128,102,112,97,111,105,100,107,99,105,105,108,110,99,104,99,96,98,100,108,78,102,106,111,104,96,102,93,82,104,99,106,99,102,92,102,105,111,109,99,106,107,101,106,97,83,110,106,112,107,93,90,101,101,99,101,99,94,94,98,106,103,106,109,106,91,100,73,105,108,99,101,103,104,86,108,99,100,101,92,95,120,108,99,99,112,94,124,105,101,102,109,94,133,100,109,100,90,93,92,106,90,101,87,106,100,96,103,100,96,93,110,95,104,110,114,106,103,111,115,99,89,96,102,96,99,106,106,96,95,99,97,101,103,104,104,93,98,97,106,103,104,84,100,89,106,111,100,93,104,106,104,91,106,107,101,94,99,104,100,91,69,95,85,96,110,95,102,110,97,108,105,98,94,109,94,94,99,112,114,95,87,101,102,97,121,104,95,99,101,100,99,97,99,109,108,97,99,107,83,101,97,104,99,102,99,98,102,98,93,107,100,93,109,105,92,91,114,93,83,103,85,95,103,107,95,104,102,92,101,104,94,106,101,94,99,102,100,107,108,95,110,111,91,117,122,104,103,96,100,99,94,108,102,95,112,89,99,96,88,104,93,103,98,90,94,100,104,105,111,103,91,101,101,98,104,101,92,103,101,105,101,90,120,106,102,102,103,98,96,99,102,96,103,108,107,109,94,125,99,97,110,99,94,103,112,106,109,103,80,113,105,101,101,102,94,95,106,112,101,104,92,111,105,83,93,112,99,105,111,102,101,102,105,101,95,101,106,106,100,96,99,107,129,105,84,97,106,103,109,99,97,95,106,122,99,95,92,91,103,94,92,93,98,107,109,94,85,109,100,105,94,98,97,99,110,96,97,102,100,106,101,119,96,116,100,112,97,95,96,103,110,106,95,95,109,93,108,102,91,106,105,116,101,114,106,86,100,109,103,101,105,94,98,78,103,116,109,100,109,108,104,110,95,76,102,96,101,91,98,101,100,97,87,100,102,116,107,94,99,80,79,92,110,91,107,105,103,106,98,102,112,103,109,118,106,99,101,100,92,113,96,111,89,108,97,86,117,92,99,95,104,102,100,103,106,115,99,103,91,112,108,105,95,93,97,109,99,98,101,106,84,102,93,105,99,107,104,100,95,103,94,111,109,96,91,113,88,83,103,86,76,114,110,98,93,102,95,95,104,107,118,109,100,105,99,102,102,106,83,91,111,93,103,102,112,103,97,101,102,86,66,110,90,106,86,99,106,101,95,105,85,108,102,97,109,77,102,101,109,108,114,98,93,108,107,100,98,104,95,108,100,97,109,99,93,114,108,95,85,98,98,89,105,87,100,99,117,99,95,100,99,106,98,93,86,109,104,100,106,96,108,112,97,105,105,99,107,106,99,107,94,95,106,91,94,110,105,99,107,107,106,103,93,102,100,102,107,94,97,108,99,103,94,105,113,88,102,101,95,103,105,91,99,111,99,112,112,93,102,100,108,98,115,103,103,109,96,92,96,96,104,84,113,103,106,112,105,114,108,102,112,95,91,110,107,98,100,87,93,106,97,108,95,102,103,109,89,94,117,108,102,106,99,117,103,95,92,104,104,98,105,100,101,102,101,95,97,106,103,109,96,109,103,101,95,108,107,98,103,98,102,102,107,115,108,105,99,71,100,107,100,96,97,106,100,99,108,96,102,113,108,103,104,103,99,99,99,107,105,88,101,105,108,79,100,112,103,100,107,113,117,105,104,91,102,106,94,123,113,106,96,90,102,101,105,109,97,105,96,106,80,111,102,106,97,79,99,105,95,96,107,94,97,102,95,102,113,112,94,102,105,101,112,110,107,106,87,105,97,96,111,113,91,95,102,102,101,103,95,96,109,98,119,100,108,114,103,92,94,101,108,102,105,103,105,115,110,98,105,110,105,103,100,100,99,98,91,91,112,113,101,100,99,109,97,95,101,107,115,101,98,93,115,112,99,104,101,101,109,107,103,99,104,106,106,100,105,91,112,103,113,94,112,105,97,99,99,98,102,105,106,107,94,91,104,112,110,104,90,107,102,99,117,99,101,96,95,104,105,91,98,103,100,98,104,98,99,101,100,94,99,95,105,107,109,109,109,114,101,109,109,106,103,117,102,113,105,107,95,109,96,115,100,97,96,101,100,107,107,95,95,106,107,111,97,95,108,99,102,92,100,88,107,103,117,101,97,73,108,91,110,106,95,102,101,96,87,88,90,99,103,115,95,106,109,93,99,106,118,121,97,106,111,104,110,102,103,95,98,101,103,112,104,105,94,107,103,100,109,99,88,97,99,105,101,96,96,105,100,94,98,101,112,98,97,91,106,105,91,98,98,101,103,101,94,100,107,106,103,89,116,105,106,94,97,105,102,94,107,111,104,101,103,103,63,116,105,84,102,88,92,111,98,94,99,94,88,93,81,106,97,122,99,96,101,100,100,98,112,103,102,91,91,106,101,104,99,107,99,101,110,106,101,102,100,113,91,112,102,99,93,91,103,98,107,100,101,116,93,105,101,94,101,103,100,104,115,104,76,105,79,104,108,102,108,89,106,105,90,102,103,100,119,88,109,95,103,100,119,103,102,102,99,103,107,106,95,93,103,90,110,102,91,115,102,100,107,97,105,95,101,103,87,81,133,93,98,98,107,105,117,109,108,102,100,101,106,107,103,103,95,106,113,104,106,98,94,97,98,108,112,103,107,100,116,99,92,113,100,98,108,113,110,101,105,91,107,96,119,93,95,91,100,72,100,102,91,89,98,100,104,100,102,104,89,81,93,102,108,110,95,113,113,109,100,96,95,98,97,98,101,109,101,117,98,92,95,104,96,106,109,108,103,96,92,102,108,108,97,95,100,100,101,98,108,108,103,96,123,109,104,101,108,97,103,118,84,104,106,106,100,105,77,92,114,95,112,89,103,98,100,96,110,98,94,99,99,105,106,109,110,101,89,106,83,100,102,96,110,116,96,118,113,104,100,95,104,95,91,93,95,102,103,112,106,104,105,92,94,97,116,106,93,98,89,100,115,105,109,97,109,100,101,112,116,105,106,93,114,99,102,98,96,125,105,105,112,97,98,104,103,102,98,105,99,107,99,101,105,102,102,94,98,97,106,98,97,106,117,94,98,125,96,99,89,115,110,108,95,97,106,104,95,94,92,105,107,99,106,109,109,106,112,105,117,99,106,91,91,99,102,124,106,111,96,102,97,103,98,111,109,109,106,109,98,104,105,112,102,106,119,107,106,118,98,103,97,103,130,102,92,106,103,104,111,110,107,103,104,98,105,102,100,97,105,103,115,102,108,103,104,89,99,114,98,100,93,94,100,91,91,106,102,99,106,105,92,99,99,103,105,103,103,95,108,92,98,95,98,98,92,108,96,105,109,102,96,100,87,85,98,95,95,100,119,104,95,98,99,100,89,104,103,98,96,89,88,103,104,103,109,110,96,104,101,106,102,96,113,101,103,109,94,102,104,101,108,108,102,104,106,102,98,101,103,111,100,107,100,93,89,110,92,98,110,105,108,101,111,92,97,94,100,114,108,96,106,85,100,93,94,94,110,107,104,109,95,117,109,79,96,113,101,108,97,98,104,97,98,102,106,111,91,105,92,101,92,95,108,106,105,106,107,96,103,92,102,87,84,112,96,96,100,92,92,106,102,106,96,90,97,95,115,100,90,99,101,99,94,102,107,102,91,102,102,95,105,90,99,99,104,100,93,103,104,87,98,111,103,95,105,101,99,104,94,110, +417.04071,92,97,91,87,90,98,94,98,102,101,98,93,107,98,99,88,101,93,93,105,112,103,102,101,91,101,100,88,115,106,87,108,99,95,102,96,100,94,104,110,115,100,92,80,98,93,97,111,106,101,102,91,106,99,108,100,103,96,94,109,102,103,100,61,102,103,106,100,108,99,101,113,108,96,91,97,113,103,99,109,92,95,89,99,102,99,102,104,108,101,94,104,99,94,111,96,91,104,100,103,102,93,100,90,96,92,94,101,101,101,94,69,99,106,104,88,89,101,95,98,100,90,97,102,97,103,103,91,99,107,90,104,96,109,109,91,105,95,94,93,116,106,104,95,99,90,97,98,91,112,99,103,94,117,114,104,92,102,101,93,105,97,103,100,101,107,114,99,109,96,83,109,98,84,97,113,93,99,100,85,92,108,96,102,93,105,105,96,108,95,106,100,101,91,105,99,93,99,103,98,114,96,109,99,86,120,97,100,106,82,103,107,99,91,100,99,108,91,109,103,104,116,104,102,95,97,97,108,101,93,109,103,100,91,103,105,91,112,97,104,95,99,101,101,108,86,102,106,107,106,97,104,108,102,90,101,105,117,103,109,99,109,101,109,91,106,114,109,103,104,102,109,94,106,108,99,109,102,104,105,101,98,86,100,111,107,95,94,105,102,105,103,101,101,100,108,97,116,86,113,93,75,98,104,94,97,109,109,104,110,102,114,101,87,91,97,102,100,106,105,95,83,108,98,101,100,91,100,96,105,104,93,99,102,106,99,101,101,95,93,103,100,96,91,108,99,114,102,103,107,93,100,101,108,96,98,102,102,99,105,97,101,103,124,96,98,108,104,110,86,107,108,103,98,101,98,105,96,102,96,89,112,97,115,101,102,98,95,99,100,102,101,105,100,91,99,108,104,117,111,100,105,105,98,101,94,97,94,99,98,94,89,99,109,112,96,117,100,106,98,96,105,93,108,101,95,96,103,105,117,104,103,90,106,98,99,98,110,95,99,114,95,100,108,88,104,101,100,116,113,100,105,101,107,113,108,97,100,116,113,103,98,104,102,96,108,101,101,99,117,99,97,102,93,98,102,87,105,106,111,114,114,117,113,110,103,94,103,100,98,103,100,109,109,95,98,72,94,102,107,108,101,98,113,108,108,96,100,96,93,103,114,95,102,109,106,107,104,96,96,102,90,108,104,103,113,86,108,104,110,105,106,93,99,105,101,108,95,80,102,105,109,100,97,106,100,110,100,111,102,109,101,100,97,100,113,98,102,99,99,87,92,92,106,111,94,118,88,105,91,105,107,113,105,112,71,109,97,91,102,103,98,108,99,107,96,102,91,112,100,97,108,97,102,107,107,97,96,112,99,99,106,90,84,110,92,100,103,100,113,100,101,109,99,94,106,113,104,110,104,105,109,103,101,108,129,105,106,106,104,106,107,92,99,99,99,92,91,110,96,105,100,100,104,103,81,109,96,103,132,95,108,99,110,95,92,103,105,106,96,100,113,94,98,102,105,104,92,112,99,109,116,107,103,91,115,105,96,102,98,93,105,111,94,109,107,108,102,94,100,100,105,74,108,109,103,109,104,100,105,101,101,106,99,105,112,107,103,92,106,106,97,104,111,94,107,110,104,106,103,103,99,117,106,97,86,93,104,95,103,112,107,112,95,93,100,95,91,104,103,114,89,117,105,104,109,100,113,106,103,111,94,104,108,112,104,109,100,127,103,103,93,101,99,106,110,103,114,112,96,93,113,108,108,91,117,103,102,100,95,108,101,113,105,98,106,100,106,100,112,103,91,105,105,101,107,105,100,108,96,103,103,98,99,96,101,99,106,107,98,100,96,100,94,117,94,105,98,118,91,97,109,108,118,90,97,104,107,108,95,103,104,113,94,101,104,108,94,106,102,102,114,102,105,103,103,79,94,105,100,102,99,98,102,109,119,88,106,107,105,102,101,103,90,108,96,105,101,105,100,111,93,99,102,91,95,113,118,93,96,105,113,90,95,100,100,94,115,116,107,99,101,105,104,109,107,105,110,100,97,108,103,113,108,101,107,99,102,93,104,91,85,97,99,78,101,101,102,99,109,91,107,112,100,70,97,95,96,99,103,98,110,93,108,95,99,111,102,100,106,103,93,108,106,96,107,110,106,99,108,92,90,103,107,103,100,108,91,93,104,95,100,109,95,105,95,93,107,104,113,102,104,106,88,104,89,94,100,106,93,100,96,105,96,99,104,109,105,98,101,117,104,107,103,99,92,105,86,112,104,94,98,102,87,108,102,116,94,91,95,95,116,94,108,96,96,104,97,111,99,108,107,124,90,107,97,99,103,100,91,105,116,105,98,108,90,91,118,113,93,105,89,99,104,106,94,106,116,102,92,104,111,97,109,98,108,92,113,93,106,110,102,108,101,98,92,93,104,101,96,122,103,105,96,111,102,102,102,94,95,101,117,84,95,100,100,102,115,110,94,94,96,98,88,105,93,116,99,113,95,101,103,90,101,111,98,102,94,109,88,101,106,100,95,97,107,96,98,95,103,105,107,104,95,101,113,101,105,104,109,104,106,100,103,100,90,89,103,107,101,96,94,88,107,104,106,106,103,109,121,101,103,108,87,102,102,99,114,102,110,102,101,111,99,108,99,90,104,82,106,104,103,118,108,80,103,100,95,98,101,111,118,99,94,116,113,109,95,105,98,101,104,107,105,104,105,100,87,102,100,114,102,98,103,116,109,94,100,95,116,104,86,101,109,104,105,112,102,90,99,104,109,102,95,102,110,93,90,102,89,99,119,110,86,119,103,106,109,99,95,104,108,103,87,101,100,105,96,96,97,92,96,99,105,98,100,99,107,94,98,94,93,98,105,93,89,104,102,99,104,107,112,96,108,112,94,106,102,110,111,72,109,106,99,111,102,114,105,99,96,96,94,100,107,106,109,110,111,106,100,104,99,96,103,98,101,105,81,99,101,99,105,85,90,100,117,114,111,102,102,106,108,113,97,107,102,103,116,101,111,109,97,96,106,107,100,99,92,97,94,94,102,110,99,103,98,105,107,106,109,102,107,102,99,99,87,113,98,106,97,95,108,99,104,91,104,99,102,98,105,100,95,105,113,100,93,103,93,108,110,96,104,90,94,105,108,99,98,91,105,107,103,117,100,101,89,103,88,111,99,120,102,95,100,111,96,105,106,98,113,96,92,111,84,88,95,104,128,105,82,121,104,107,100,96,99,106,91,104,99,99,99,105,102,109,109,79,113,94,97,104,100,98,106,102,116,101,105,113,98,90,96,99,104,102,107,102,102,91,100,124,90,106,101,98,88,109,109,98,112,73,105,103,108,111,106,98,99,89,101,106,98,101,103,88,105,92,104,97,95,103,102,94,106,93,113,97,115,104,105,102,113,107,103,94,103,104,104,97,99,98,104,102,99,90,112,117,75,103,108,98,106,93,97,116,99,98,94,104,106,105,97,92,106,102,110,109,118,109,101,107,99,104,109,110,104,102,97,95,98,106,92,96,105,106,104,109,105,87,101,94,94,107,105,114,94,98,104,98,96,98,106,101,98,98,102,107,105,103,97,107,101,96,100,96,110,116,95,108,109,99,104,105,108,94,95,100,96,102,98,102,123,113,105,99,95,104,92,98,110,112,112,98,103,115,96,95,109,101,103,118,110,107,102,96,103,95,109,107,108,113,93,98,114,115,71,127,110,80,84,105,103,95,86,96,96,104,98,99,101,108,97,95,98,104,102,99,112,88,96,113,99,102,99,88,95,99,105,111,100,103,112,101,108,109,102,98,104,97,112,98,113,108,82,108,101,106,99,100,116,81,104,101,108,87,107,91,109,112,90,99,102,90,109,87,108,123,107,100,116,101,99,108,109,109,99,109,90,92,101,104,108,103,115,98,111,102,94,96,104,120,96,97,101,99,104,100,107,111,108,90,98,90,94,90,95,105,102,96,106,111,102,102,103,100,106,102,98,100,99,109,96,102,101,76,98,102,110,103,99,102,99,90,107,90,108,103,101,109,116,103,106,97,101,100,97,110,94,101,106,105,96,100,102,101,99,99,98,102,93,98,101,89,87,107,105,96,97,100,113,101,95,97,111,99,110,101,107,107,106,103,98,89,97,105,97,99,121,98,96,102,103,102,98,104,102,82,108,101,96,112,99,104,108,108,81,102,104,103,110,91,111,113,98,124,104,97,95,119,105,115,97,104,99,92,98,107,92,109,104,113,101,104,97,95,109,79,104,99,96,103,111,99,95,103,98,105,84,92,104,94,93,88,98,96,99,88,95,99,106,100,90,106,101,91,98,99,95,104,107,107,97,114,109,102,94,77,95,98,103,104,102,101,104,99,103,106,101,102,102,95,104,97,98,112,107,108,102,91,96,105,90,111,104,101,121,95,101,115,95,109,100,100,109,106,105,94,102,104,100,109,103,107,108,101,102,108,104,95,102,108,102,112,103,107,98,99,94,94,97,98,96,109,111,93,105,100,113,105,84,98,97,106,110,100,102,101,100,112,104,99,104,100,96,98,104,92,96,107,112,99,113,111,109,99,101,107,103,88,112,122,97,108,105,99,109,101,91,102,109,108,109,96,100,105,104,102,101,93,87,99,92,105,91,98,91,107,97,105,94,95,105,115,112,111,108,92,97,111,103,105,94,96,105,105,105,103,99,104,100,123,105,109,113,107,96,100,94,106,97,98,127,105,98,97,121,96,103,64,101,103,100,109,99,98,104,98,114,99,100,93,92,104,102,87,100,102,80,95,100,96,100,107,91,105,100,115,99,74,102,91,105,63,88,101,113,102,102,94,104,93,84,108,109,89,110,104,109,110,102,110,110,84,103,107,100,111,114,100,102,95,101,111,103,103,98,105,102,81,94, +417.18091,104,95,101,91,113,102,99,100,108,83,95,101,91,96,98,100,102,98,98,100,116,96,99,119,100,101,105,103,98,96,103,95,101,85,103,89,100,98,94,91,91,103,94,106,109,100,113,106,91,102,101,100,87,93,103,93,112,82,92,95,94,92,101,98,98,108,91,102,99,106,106,95,91,98,98,100,103,119,95,104,90,96,88,99,92,95,98,90,102,95,100,72,99,92,100,100,104,103,114,99,102,102,105,98,105,97,96,100,106,106,95,105,107,80,98,90,98,99,105,95,95,108,101,109,96,112,121,113,92,98,81,93,97,104,114,101,97,99,94,100,93,112,98,103,97,101,111,100,84,104,98,102,108,84,94,113,96,104,72,97,99,101,95,100,100,95,100,92,106,132,99,105,103,102,91,82,111,98,95,107,108,99,112,101,94,94,101,114,73,100,93,109,95,103,103,105,114,102,114,109,89,104,98,102,103,67,97,87,111,110,87,96,98,108,106,102,107,97,103,110,103,111,97,104,101,105,96,109,95,110,98,98,113,96,90,103,108,109,100,90,106,106,102,99,105,101,105,104,106,87,96,103,106,108,108,102,103,98,92,103,107,99,96,92,96,106,103,95,107,101,98,100,100,86,113,99,99,104,92,88,97,109,96,101,90,98,88,88,109,110,106,112,108,84,104,93,100,109,108,97,112,99,108,98,104,100,109,99,117,105,98,102,114,96,97,102,87,102,113,101,114,105,95,103,101,106,94,99,93,106,104,94,97,101,95,109,106,90,98,99,105,107,99,94,95,91,102,99,105,105,92,100,99,108,106,102,109,103,99,107,112,109,94,97,90,101,109,102,91,102,98,98,93,113,95,97,109,114,91,101,109,107,96,98,105,91,102,102,91,105,105,99,101,102,91,102,94,98,103,107,105,114,103,97,107,109,103,90,101,101,111,98,128,101,109,92,105,107,97,96,105,100,92,85,100,98,95,92,95,110,95,100,101,100,105,78,97,100,98,101,113,99,94,102,100,109,97,101,101,104,89,101,103,119,127,100,85,89,108,92,108,113,97,89,107,94,115,108,97,110,100,107,105,100,91,104,102,106,104,95,98,100,109,93,108,100,97,105,99,94,120,96,104,107,99,101,104,94,97,88,106,96,104,102,109,99,84,109,100,102,100,112,100,108,98,109,91,109,92,111,102,106,101,98,103,109,111,103,86,110,99,106,94,100,83,109,105,94,98,97,97,96,87,89,113,101,95,96,101,103,109,86,91,104,106,95,101,96,91,97,103,82,102,106,104,102,100,106,97,102,95,103,102,97,100,104,98,99,106,108,95,92,105,101,103,97,107,101,95,98,102,109,104,94,107,121,105,99,103,106,99,117,95,98,94,92,104,107,93,118,95,114,103,109,114,100,98,98,102,102,93,97,117,97,107,94,93,93,99,102,98,86,92,96,96,95,104,113,103,128,91,97,98,111,90,89,114,107,97,96,110,103,94,98,102,99,103,101,101,98,103,82,86,99,89,104,104,95,103,100,103,110,104,106,96,99,87,105,94,94,104,94,95,100,101,104,98,89,88,106,104,101,96,113,109,99,97,85,99,91,109,112,100,104,92,125,101,87,107,98,114,93,105,113,105,103,109,103,109,97,95,79,100,99,71,92,101,99,97,102,114,86,80,82,107,98,107,99,112,99,103,105,99,105,98,104,104,104,102,98,104,99,97,103,109,113,99,103,95,92,104,106,90,94,92,101,107,94,98,99,98,112,99,99,96,111,97,94,115,92,95,93,108,104,108,110,97,109,94,99,92,101,98,95,99,117,109,87,88,96,102,101,100,96,98,104,99,95,99,110,109,99,101,112,107,109,96,106,94,101,95,113,93,103,109,92,108,96,96,91,113,112,104,106,96,110,84,97,95,104,99,106,99,91,105,97,113,97,98,105,98,101,105,103,91,101,87,102,107,108,103,92,105,90,99,104,99,101,96,102,100,112,102,93,115,107,100,88,103,97,100,101,107,109,105,108,95,98,107,94,103,104,110,96,105,101,100,103,92,96,85,105,121,94,95,87,92,98,101,98,86,96,103,105,101,91,91,102,97,102,97,102,108,103,109,95,92,109,99,94,96,100,95,97,86,100,100,103,114,103,111,99,104,115,99,98,106,104,105,109,100,70,103,99,118,107,80,121,91,91,104,105,111,101,110,97,83,90,100,99,88,101,96,91,93,91,99,91,98,96,92,100,92,99,90,92,105,100,96,79,101,86,108,101,98,102,83,100,100,99,101,117,100,97,102,100,93,99,92,92,94,97,97,98,99,106,102,91,104,115,100,84,91,92,109,92,94,96,88,101,110,98,105,104,99,92,108,122,106,104,99,103,82,98,90,83,102,102,82,100,114,88,112,99,100,95,98,100,84,100,106,104,111,102,109,102,92,99,105,90,105,110,116,101,98,92,96,108,104,95,91,116,98,83,101,87,104,100,105,99,109,99,100,95,105,103,91,96,113,101,95,110,90,94,91,107,101,101,101,104,108,106,103,113,94,103,102,100,99,92,113,105,100,113,105,74,80,102,105,84,100,106,100,92,97,96,95,100,104,102,90,101,77,104,109,114,96,97,114,103,110,99,102,106,111,103,110,101,113,100,98,94,105,102,105,108,102,93,99,111,103,95,94,103,102,100,96,96,108,106,95,98,100,102,103,107,108,101,93,90,91,110,105,99,90,95,112,97,100,99,109,106,107,106,104,102,100,113,95,95,104,98,92,105,102,116,93,103,104,102,104,105,93,91,105,102,97,98,96,107,78,120,113,108,99,101,96,102,98,115,103,116,106,98,107,96,102,111,97,96,108,93,73,104,93,103,95,117,95,123,105,102,104,104,108,105,91,114,99,99,87,109,108,107,109,97,102,93,96,120,104,101,102,94,97,116,98,102,111,102,99,107,99,102,100,105,99,91,104,106,113,106,98,106,109,93,102,106,102,105,96,108,96,98,101,101,96,100,75,98,107,108,114,106,106,110,109,93,98,96,115,112,105,100,94,102,89,96,93,96,94,102,100,96,100,96,86,107,99,98,103,100,104,105,104,102,95,111,99,80,111,109,102,108,102,111,108,103,97,91,105,104,98,112,108,97,71,107,99,106,97,95,96,109,109,93,102,107,105,103,96,91,107,108,103,101,110,122,98,92,92,103,89,113,97,119,109,95,115,102,100,87,97,103,98,89,105,117,102,109,91,104,106,98,80,108,100,97,112,97,97,111,99,76,90,113,104,102,91,104,97,96,103,92,94,74,84,100,110,120,95,92,93,99,95,101,112,105,100,92,109,101,106,109,105,100,107,93,97,103,106,102,98,107,119,95,95,101,100,108,106,101,105,97,116,106,127,98,101,104,100,98,104,98,97,111,101,110,111,105,97,103,97,114,92,103,102,88,101,117,101,109,100,100,106,99,100,112,112,109,101,101,101,95,105,108,111,98,108,108,102,100,70,98,110,100,103,112,106,106,104,110,92,106,111,92,111,102,100,101,94,86,93,105,105,115,103,116,93,91,97,101,94,108,102,108,90,102,104,97,93,91,99,94,100,113,107,94,94,98,110,113,107,105,102,92,95,101,100,95,112,105,100,107,103,91,104,98,109,100,95,99,106,111,95,106,101,97,101,98,104,104,91,104,101,97,115,101,110,94,97,109,108,111,91,107,109,99,103,99,96,93,110,102,112,90,103,89,105,96,108,99,105,92,95,107,89,108,104,103,95,92,97,94,98,102,95,106,116,84,100,95,92,99,84,107,103,94,112,96,105,113,93,100,106,97,100,107,98,104,106,92,101,104,110,114,101,102,95,103,87,96,70,80,107,116,120,103,96,96,108,93,103,95,99,74,106,96,109,95,96,113,101,91,103,88,94,108,105,101,106,99,99,98,99,110,95,98,106,96,99,102,102,83,96,116,100,102,98,105,104,102,103,105,84,108,107,106,91,102,99,107,117,107,107,106,104,109,128,99,102,103,108,104,109,97,97,90,94,90,105,94,106,108,102,111,102,99,104,104,97,118,95,95,106,109,99,97,103,77,94,103,108,90,94,106,92,97,98,93,99,108,95,97,108,107,99,107,111,98,103,109,98,99,98,100,108,102,102,100,98,105,95,72,99,99,101,95,103,114,92,89,94,103,100,84,99,106,96,124,121,101,101,101,112,94,100,115,96,100,99,95,115,112,99,102,102,105,100,104,108,100,110,88,101,103,106,109,112,101,104,100,116,101,97,93,94,104,107,101,95,95,112,106,97,102,110,99,99,97,94,98,85,115,106,98,100,102,104,108,108,103,99,112,112,110,102,107,112,109,106,95,115,96,106,97,121,109,105,101,111,111,107,100,113,100,106,112,91,98,96,111,99,107,105,96,95,107,91,115,85,101,104,94,105,96,101,105,104,96,100,94,101,109,101,94,93,92,97,100,94,98,111,96,107,92,92,81,101,113,85,97,97,103,99,115,91,100,107,100,89,93,97,120,108,107,109,93,102,116,98,95,121,95,98,95,98,101,97,106,102,99,95,99,110,96,100,106,109,107,97,101,97,99,95,107,108,98,101,99,101,101,105,93,101,96,112,103,103,102,99,102,98,105,112,109,112,104,99,96,96,106,82,98,84,110,102,93,105,98,83,120,107,100,106,94,93,107,67,105,102,89,105,94,95,102,109,103,103,97,99,110,106,110,102,101,102,93,105,104,96,101,105,103,94,98,100,95,100,102,98,96,102,105,96,104,99,104,110,92,97,85,103,95,100,98,98,90,93,109,96,99,112,112,98,105,94,102,105,92,107,102,90,102,104,100,109,106,110,96,92,104,98,105,94,106,89,95,95,96,89,114,92,100,76,94,95,103,101,92,102,98,93,103,97,96,103,83,98,70, +417.32114,103,106,85,99,91,96,120,86,104,92,99,93,106,80,111,101,103,98,114,96,106,86,104,105,107,100,94,90,106,110,103,90,96,102,90,99,91,88,101,95,98,116,101,103,103,109,95,97,96,94,95,88,76,80,106,93,103,95,106,109,96,91,113,104,111,98,86,105,91,100,99,82,103,102,90,103,102,96,105,93,109,91,97,92,100,93,101,109,108,103,106,93,95,108,103,96,100,100,95,91,94,104,98,95,97,92,96,110,106,101,109,101,98,99,106,100,108,116,105,105,91,104,104,112,109,100,104,106,92,110,83,101,94,95,101,95,100,86,98,98,100,93,101,111,92,93,97,106,62,103,106,106,102,91,96,98,100,93,81,101,90,99,104,92,104,90,95,93,98,116,110,100,91,92,99,103,95,102,106,104,102,100,109,91,99,110,103,90,113,102,109,93,88,102,115,97,97,98,88,95,93,107,95,105,88,89,84,107,108,97,91,101,97,103,102,97,101,103,92,92,98,102,95,96,91,106,107,88,114,109,93,96,91,103,101,101,97,101,118,97,95,102,91,106,98,92,105,103,81,120,92,103,94,105,100,107,98,98,105,99,88,104,92,96,96,102,102,102,106,97,87,97,94,107,96,108,91,102,96,99,101,98,89,98,104,83,90,106,98,98,104,112,100,98,110,99,93,102,99,99,99,94,93,103,102,109,105,102,116,114,98,101,93,104,108,101,117,93,97,106,107,102,90,102,107,118,109,90,95,104,99,109,95,111,96,95,110,104,102,101,113,94,108,105,113,98,98,98,95,98,92,117,90,78,109,108,100,110,69,105,101,109,88,95,97,110,101,105,103,100,100,94,101,96,105,104,110,110,109,102,105,112,84,103,106,103,103,108,97,89,98,93,101,95,104,103,105,99,102,108,113,107,98,94,115,94,95,88,105,105,88,93,93,96,98,95,116,97,103,101,108,91,94,100,89,99,98,97,103,110,99,110,93,107,106,101,105,102,104,94,113,107,98,97,98,99,105,110,101,105,100,109,96,111,91,111,103,96,101,112,79,117,107,96,102,98,104,93,101,102,74,87,92,95,99,103,104,103,75,101,99,108,110,93,101,103,101,96,100,94,90,110,94,88,84,91,97,92,101,96,119,92,100,101,94,104,96,104,95,93,102,127,105,86,91,94,102,105,126,98,110,116,100,75,98,104,107,103,100,90,102,99,104,100,99,93,98,97,62,114,92,101,91,92,102,115,91,101,103,98,97,111,97,110,101,100,114,110,100,110,101,106,108,104,93,103,95,96,101,101,97,92,104,103,99,100,100,80,98,101,110,100,99,91,69,103,113,105,96,93,101,98,99,97,95,112,90,103,105,101,97,97,100,104,95,97,98,97,105,93,105,101,97,99,91,92,92,107,97,103,100,91,99,104,109,95,95,94,106,93,97,101,105,103,90,95,93,86,104,99,90,94,94,110,101,106,101,105,124,95,103,93,98,105,99,98,103,110,124,104,107,112,116,109,82,92,101,97,109,100,103,77,100,102,96,107,107,106,102,90,105,102,98,87,95,101,88,94,102,98,113,104,111,107,103,90,122,108,95,97,107,98,98,109,96,98,95,77,108,94,95,101,100,97,115,93,91,98,104,104,105,95,95,95,88,102,95,97,98,103,113,97,95,100,101,92,99,92,95,117,98,91,113,79,102,97,106,100,105,100,103,106,96,109,103,93,104,102,122,82,109,101,82,93,98,95,97,99,97,99,111,89,111,100,93,99,95,103,103,105,102,98,97,99,117,106,101,110,101,91,97,91,97,107,112,103,104,101,101,110,110,96,91,101,104,104,98,92,100,101,116,91,109,95,105,102,96,113,93,94,109,99,108,95,100,103,93,102,110,100,102,98,112,109,98,94,98,90,94,93,100,88,103,98,99,96,95,101,109,105,113,90,99,102,92,103,106,107,86,109,95,90,103,100,114,100,94,101,101,101,104,92,103,102,111,99,110,100,96,104,101,105,107,90,97,100,92,117,100,99,97,99,95,108,110,97,105,99,93,117,102,99,100,106,104,106,94,96,100,109,115,116,86,94,108,103,106,93,98,98,103,113,102,83,95,101,103,105,108,116,102,85,104,98,88,110,77,114,100,108,101,103,94,100,97,101,121,104,99,111,100,117,100,95,109,131,100,115,95,103,102,107,102,103,126,99,105,106,100,98,93,111,100,108,101,108,111,89,98,105,102,109,103,99,87,94,105,105,89,105,99,91,103,94,98,89,95,99,97,102,101,79,97,87,93,107,96,91,98,108,95,91,103,114,107,101,88,102,99,95,95,101,114,93,107,100,112,94,98,88,111,85,109,96,88,96,106,106,116,106,100,100,102,78,104,93,102,86,108,93,91,100,85,96,91,106,98,107,103,93,109,101,101,94,90,93,95,95,98,106,98,103,99,104,104,104,96,105,99,97,114,107,96,113,116,99,99,110,99,110,108,99,117,111,98,96,106,103,107,116,97,105,105,84,106,97,103,113,94,97,100,106,104,100,77,91,95,103,88,101,103,109,94,98,109,94,98,98,107,93,82,100,92,88,101,103,105,107,100,105,99,86,94,101,97,101,107,103,102,103,101,85,121,102,109,97,100,107,107,109,111,94,113,101,106,102,97,102,88,108,105,102,104,101,94,99,92,103,106,107,91,106,94,104,91,97,108,112,100,102,93,95,121,103,88,98,114,91,95,116,96,107,105,102,106,100,107,94,107,104,105,115,114,109,107,109,102,107,105,93,101,109,91,100,122,106,109,113,105,117,118,115,101,116,109,102,96,114,99,107,117,106,104,83,99,105,108,113,102,103,109,94,115,103,100,102,102,97,96,95,110,105,100,105,107,107,106,105,103,115,76,100,100,100,101,103,102,108,98,116,95,104,103,98,108,103,112,111,111,105,106,96,100,112,112,94,109,100,103,99,112,105,101,111,94,106,96,103,99,98,102,125,117,113,96,94,98,98,97,110,102,105,102,110,88,100,100,99,97,109,113,97,95,102,103,101,83,123,95,108,99,99,101,106,117,109,122,90,115,94,95,115,96,97,100,98,118,101,109,95,108,110,116,94,99,100,88,88,107,115,71,110,103,127,111,89,101,84,113,107,106,92,88,99,109,96,96,100,96,102,104,96,108,102,112,93,100,112,112,102,105,103,89,89,103,105,100,95,101,99,100,93,100,98,106,92,96,95,96,91,111,109,98,95,103,94,107,100,103,100,102,93,103,99,100,93,100,110,98,79,107,100,106,111,104,98,98,101,107,86,66,96,102,98,100,109,107,94,111,102,100,106,91,112,109,105,99,105,104,118,104,103,113,106,112,97,99,109,93,101,107,94,98,109,109,99,108,87,110,95,87,104,91,99,117,95,111,98,115,99,95,94,105,107,103,96,113,97,95,107,95,88,95,109,106,104,98,97,102,108,102,99,89,108,101,99,94,101,103,100,110,95,104,109,102,101,102,111,99,98,99,105,107,111,104,112,105,97,99,105,104,113,109,112,110,98,97,104,96,96,107,106,105,112,128,97,103,107,87,100,106,104,105,103,107,110,121,101,96,106,105,85,97,112,99,104,103,120,102,108,107,103,100,99,86,106,100,95,104,98,96,99,113,106,104,97,113,91,116,103,100,112,103,104,102,109,106,104,109,100,102,102,101,116,75,100,100,95,107,101,109,75,98,97,103,107,115,108,103,100,102,97,105,107,126,97,107,101,114,95,90,92,92,104,106,89,108,108,103,100,97,90,101,108,92,96,115,97,106,100,99,111,97,114,104,104,106,104,106,99,107,101,96,104,107,109,95,101,106,101,97,97,106,102,103,121,104,111,107,78,108,118,97,102,108,107,102,100,101,109,92,106,102,90,98,100,89,103,106,99,131,104,102,101,105,102,102,104,102,98,100,111,110,69,98,106,112,108,97,99,100,106,98,113,95,91,103,104,101,107,98,106,96,111,100,109,105,113,103,104,93,108,117,112,102,103,76,84,104,107,118,103,102,97,101,103,109,116,104,111,116,111,95,105,107,104,99,108,105,102,104,105,112,101,99,112,103,93,95,117,101,107,101,98,93,110,108,104,102,105,101,105,112,110,96,107,98,108,99,93,120,103,98,100,113,110,112,100,97,88,93,113,89,94,99,113,116,115,107,106,104,107,101,100,103,99,96,109,101,106,85,109,104,94,96,93,105,95,102,105,120,93,102,103,106,110,95,104,95,98,102,111,92,101,93,98,102,95,98,100,104,108,125,103,104,99,100,94,98,99,99,108,92,98,109,114,103,99,91,107,106,103,99,88,107,111,104,101,107,105,101,102,115,97,104,92,115,105,107,105,90,101,98,106,102,81,100,94,101,101,94,105,100,105,103,102,96,102,109,109,105,101,95,100,95,101,93,114,95,99,101,96,90,99,100,95,72,93,103,100,99,107,111,105,101,99,103,72,117,105,100,88,101,92,92,96,102,84,100,94,94,97,109,108,105,116,104,87,104,91,101,89,108,108,105,113,105,104,107,102,106,100,96,86,97,100,101,92,90,94,95,106,98,111,104,109,95,102,92,97,99,92,102,107,95,97,105,98,105,98,104,94,100,113,105,110,117,103,108,110,97,95,112,134,91,101,114,117,105,102,95,83,78,75,108,97,96,101,104,91,98,100,108,100,104,108,102,98,102,102,105,112,110,105,102,101,102,96,90,99,92,112,96,117,107,98,101,93,87,91,114,86,104,97,102,94,90,113,111,102,94,104,123,74,83,65,101,91,102,84,109,108,103,102,80,104,94,93,99,112,106,91,95,93,100,98,96,96,107,92,109,95,96,105,84,96,92,102,117,99,97,92,101,113,110,111,101,103,86,108,101,100,110,111,98,98,95,88,88,91, +417.46136,103,97,99,98,95,77,105,115,101,106,100,107,110,103,122,101,102,87,100,104,96,100,104,94,94,106,112,96,99,98,109,109,101,103,100,91,123,99,107,92,104,93,108,109,92,106,90,111,95,105,109,93,107,120,102,91,96,100,124,91,63,95,105,101,109,109,98,104,103,95,107,113,96,103,94,101,102,92,107,101,104,105,98,102,99,95,104,103,104,110,100,101,99,111,98,99,87,98,101,94,114,88,108,107,87,98,101,109,99,101,96,99,96,102,104,102,110,99,98,107,99,103,98,115,94,110,108,99,114,97,102,101,104,103,102,110,108,90,91,108,106,98,108,74,114,96,100,95,77,94,100,106,102,98,103,102,108,102,97,103,82,111,102,106,99,102,93,106,105,99,92,102,98,107,102,105,103,95,96,113,107,90,93,105,94,100,96,98,104,106,95,97,107,117,108,90,103,93,100,114,85,108,100,105,91,87,93,101,106,104,100,109,100,121,102,95,94,99,103,98,99,106,104,105,93,96,91,94,120,103,109,110,100,96,110,106,96,97,94,104,105,92,115,105,109,110,101,96,106,106,108,103,99,109,95,110,97,98,89,105,80,99,98,95,91,102,122,105,109,98,107,121,108,108,95,100,112,100,105,92,103,99,91,100,102,105,82,109,102,113,100,105,97,105,107,97,103,98,110,97,103,92,104,96,112,106,97,111,110,96,98,118,109,108,108,107,98,108,108,110,103,106,96,109,100,106,103,101,112,106,97,100,110,97,104,105,102,98,96,106,83,107,94,104,102,97,98,93,100,97,108,110,104,113,98,104,111,104,106,95,96,105,109,100,90,97,105,106,92,95,112,112,102,105,96,101,100,107,100,109,105,95,121,104,99,106,101,93,94,106,102,108,106,112,105,94,93,99,103,103,99,104,103,106,101,101,117,111,92,112,100,108,107,98,105,107,96,116,108,99,100,96,104,102,107,112,99,96,107,100,100,107,97,112,96,111,100,109,87,107,104,93,95,89,96,101,97,112,99,103,106,109,103,118,95,106,115,107,106,83,94,97,106,111,108,103,109,112,93,109,106,111,102,103,91,97,99,103,105,99,109,104,101,104,95,90,111,118,94,100,109,101,107,98,109,107,103,101,78,101,107,102,105,98,101,107,112,102,103,112,114,102,94,97,114,113,112,75,110,102,100,89,109,103,109,105,106,95,98,100,111,98,113,103,103,98,112,95,100,97,98,91,101,108,103,110,109,108,103,126,107,103,96,107,98,101,101,100,102,101,108,106,92,104,109,102,111,93,106,102,100,104,91,110,96,99,95,110,102,109,102,99,95,102,93,99,104,103,102,109,99,105,108,102,104,102,111,117,70,107,98,90,104,102,103,107,103,109,114,91,104,100,102,116,107,106,97,113,109,101,87,117,93,96,108,97,100,103,103,104,121,105,101,104,95,105,112,101,103,113,108,97,101,111,108,89,86,108,101,103,100,98,103,105,107,107,103,113,104,104,104,107,110,82,100,105,90,107,110,90,103,108,110,125,76,101,104,101,118,106,97,95,109,101,109,98,109,113,101,100,97,104,100,119,90,110,106,104,97,82,107,101,103,114,113,98,102,101,99,99,105,108,99,109,93,108,91,105,110,91,104,92,102,107,102,103,105,101,108,104,101,106,102,105,102,104,102,103,113,101,105,100,105,100,121,107,103,105,106,72,103,102,93,100,102,85,95,108,106,102,90,116,111,105,86,99,124,93,103,104,106,111,109,106,104,91,111,107,98,102,104,109,102,100,114,107,98,92,95,116,96,108,111,100,114,109,99,112,113,93,124,97,103,90,109,102,106,117,110,108,115,101,99,99,103,106,117,109,99,109,101,105,99,105,105,103,96,91,101,100,113,85,103,112,96,97,96,114,100,124,100,99,110,108,96,108,105,109,102,101,102,101,109,112,114,95,114,106,100,96,103,106,101,109,105,104,104,98,110,109,114,113,103,118,105,100,108,101,102,109,103,117,110,108,96,109,110,113,111,105,102,106,110,104,100,96,107,111,104,112,106,106,119,104,113,99,86,109,101,95,105,100,113,100,102,97,97,105,109,109,94,95,98,90,112,108,86,103,99,108,106,104,102,105,125,90,98,106,98,115,94,107,92,98,98,104,105,106,105,105,117,110,115,120,125,105,99,103,98,104,104,105,107,95,102,102,109,95,100,100,105,111,108,101,119,95,132,98,115,109,99,94,96,95,101,98,113,98,94,102,107,104,109,102,110,95,86,102,108,94,99,102,99,89,106,103,104,101,106,101,108,110,98,104,96,109,104,105,109,105,105,104,114,97,105,106,105,102,108,104,110,101,98,101,109,107,122,103,108,110,102,100,108,118,92,95,94,102,97,105,94,102,102,94,94,108,100,105,96,98,88,99,106,108,96,107,97,94,109,96,104,111,103,120,102,111,99,112,115,107,104,99,101,100,102,113,100,104,105,110,99,102,108,95,97,110,105,124,115,108,87,101,95,100,103,96,99,101,102,94,100,104,101,80,106,111,109,103,102,108,96,100,102,105,107,104,98,104,113,93,92,113,106,97,104,111,93,105,101,97,102,100,104,96,106,91,105,113,98,96,98,94,111,94,102,107,92,94,102,113,110,93,99,111,104,106,102,106,95,101,95,100,104,104,94,105,110,103,116,98,104,100,92,109,103,95,115,87,99,97,103,105,98,109,98,113,112,101,100,82,107,99,102,116,96,101,109,112,86,103,97,102,100,106,103,110,102,92,108,98,95,111,103,102,109,109,93,108,96,95,95,97,96,107,108,105,101,100,99,107,106,108,103,95,96,99,104,102,96,100,72,90,109,92,100,97,99,93,99,94,113,106,100,106,98,95,105,103,100,109,99,104,107,104,102,105,105,99,104,102,101,106,103,95,95,105,109,100,97,96,100,107,108,104,109,97,99,112,102,104,92,102,89,95,104,110,108,113,105,91,100,103,88,92,113,104,100,112,106,98,118,104,102,103,110,100,111,106,117,102,112,99,93,104,113,105,110,103,101,116,92,105,106,90,126,84,94,112,97,114,98,106,95,102,105,105,102,104,91,90,102,107,99,110,90,94,103,102,100,93,113,100,104,94,112,103,98,99,94,96,97,66,110,99,76,87,62,103,99,104,103,103,101,108,100,102,102,109,100,102,106,92,85,89,98,96,108,109,108,98,111,136,97,95,98,99,113,105,96,96,106,96,100,90,105,89,101,108,119,101,107,103,95,105,113,89,98,109,110,107,102,101,106,113,101,85,91,92,98,97,104,100,112,106,109,99,103,100,100,100,111,106,88,96,91,99,96,99,92,97,87,120,105,83,102,109,107,110,109,101,102,98,107,104,98,96,107,102,101,100,104,113,105,100,96,121,96,100,97,98,95,99,103,117,94,109,108,98,107,107,86,125,99,97,92,120,95,96,87,100,107,100,81,99,102,103,98,100,84,94,93,95,98,91,98,102,102,98,105,102,96,104,97,121,111,115,99,100,101,101,108,125,111,107,108,98,95,111,92,105,88,87,99,95,98,102,100,98,107,111,102,95,98,97,98,107,103,92,98,109,100,109,99,117,103,83,114,102,85,106,104,97,92,107,110,109,98,102,101,117,104,107,101,100,98,84,106,82,96,111,96,104,117,97,98,81,96,110,98,106,100,119,99,105,96,97,107,114,99,102,103,96,97,91,120,105,103,108,97,91,93,101,109,100,103,109,105,102,90,100,106,86,99,90,110,100,107,100,102,103,85,102,114,99,98,111,95,96,98,95,103,104,113,104,122,110,97,99,101,103,106,97,108,96,98,105,97,98,96,109,93,116,103,111,108,94,89,102,124,103,103,105,100,108,97,103,109,79,97,102,98,102,107,96,94,103,95,96,92,117,99,93,108,106,100,96,96,93,100,102,104,102,94,98,104,95,114,99,91,107,100,119,105,116,93,83,105,103,95,101,103,90,93,103,102,100,99,103,105,99,101,106,83,94,102,90,98,101,97,105,100,107,105,105,98,97,104,96,126,114,106,98,81,101,111,113,105,101,104,100,94,94,108,102,107,106,95,99,100,104,104,102,98,109,98,107,103,94,104,99,100,94,105,103,114,69,99,105,98,97,94,94,96,109,107,102,106,102,95,99,96,102,90,97,101,95,102,98,109,98,95,102,100,91,106,115,103,99,104,85,122,86,93,103,110,104,102,88,92,100,98,93,105,113,98,98,114,98,99,100,105,106,106,101,96,106,102,91,109,100,103,120,107,117,85,107,97,97,90,81,99,123,108,101,93,102,103,99,101,105,123,100,107,109,98,108,100,104,103,108,98,102,106,97,99,99,104,102,105,103,104,110,90,100,103,98,109,107,83,98,98,118,100,107,98,109,103,115,106,89,88,97,97,105,101,108,103,85,106,100,104,100,99,105,91,115,99,96,95,101,100,113,106,104,105,98,112,98,107,104,96,87,101,103,104,105,94,97,97,89,95,103,98,93,94,99,100,102,101,92,95,99,96,99,106,108,104,103,106,105,110,114,93,94,97,94,94,98,101,102,99,107,96,98,104,95,95,107,95,93,92,109,107,100,117,99,95,98,110,104,107,106,113,108,97,120,108,86,105,101,99,102,98,99,95,96,103,104,89,92,99,101,108,94,105,105,110,104,92,106,94,103,104,102,105,91,91,96,105,100,104,96,103,90,93,91,105,102,104,98,67,100,98,104,100,104,110,91,94,82,114,106,99,100,103,99,90,100,87,102,106,96,102,87,96,111,93,92,101,105,96,102,101,101,110,105,96,103,98,96,105,71,95,114,102,109,100,114,97,101,94,106,105,94,84,106,105,106,106,97,103,104,105,108,98,106,108,97,91,93,112,111,71,107,91,97,117,107,93,106, +417.60156,104,107,80,96,97,93,106,97,98,101,107,95,98,66,92,100,91,102,102,111,95,95,103,109,96,101,107,86,105,98,112,97,98,99,130,80,93,98,100,104,102,118,92,106,93,92,95,103,98,107,95,90,107,100,90,95,91,92,110,100,110,96,96,114,109,103,94,96,103,94,108,107,99,103,114,104,107,81,95,120,96,109,100,102,90,100,105,108,99,99,106,99,104,106,95,102,106,62,103,103,102,103,103,117,94,105,106,109,99,112,96,116,94,97,102,99,101,117,105,77,96,114,99,118,96,110,113,95,103,109,107,87,110,104,100,111,95,98,97,106,97,104,101,96,99,84,108,99,97,108,102,102,110,95,86,95,97,109,109,103,106,93,109,97,102,98,101,105,97,98,102,91,100,94,111,100,103,97,114,106,99,105,95,112,112,102,88,90,112,98,111,76,98,101,116,101,100,95,91,103,96,103,103,89,110,104,90,100,103,112,100,104,112,108,103,104,101,84,102,109,101,106,96,102,100,106,100,109,110,105,96,103,104,95,93,105,104,91,102,104,100,86,112,99,95,101,100,87,104,110,103,112,107,112,110,100,103,94,99,105,97,95,103,106,101,107,103,107,105,109,108,108,110,96,110,103,100,102,110,104,96,123,92,98,95,93,98,99,110,103,97,103,106,106,105,101,100,106,99,97,96,106,100,107,98,105,103,109,103,110,102,112,95,107,89,104,97,101,109,106,124,103,102,90,103,110,108,103,103,99,112,104,103,108,99,127,106,103,102,104,105,89,99,80,104,97,98,97,104,99,109,92,98,99,116,107,110,106,91,92,88,100,90,112,105,95,104,105,88,98,117,113,107,105,105,102,102,101,101,105,103,106,101,124,109,95,113,107,104,104,110,113,88,103,106,104,100,97,97,106,99,96,107,102,107,95,109,106,96,109,99,116,100,113,107,92,95,104,107,92,111,95,102,95,108,100,99,97,104,74,87,109,108,91,102,105,109,119,118,97,105,117,113,103,102,112,100,102,105,108,105,83,98,97,116,99,100,98,100,102,96,103,100,98,118,111,102,96,104,87,110,104,107,101,105,112,98,124,112,99,96,103,107,100,111,107,103,113,109,118,107,109,95,113,90,108,108,102,92,94,112,107,102,100,90,114,99,99,105,97,110,112,121,99,104,101,98,104,102,106,102,99,82,104,93,98,100,97,105,98,101,116,103,115,113,100,103,96,98,103,101,109,101,105,103,79,113,97,101,98,133,97,88,105,93,102,106,114,99,94,104,94,95,101,96,99,108,110,100,96,100,97,110,99,100,98,98,94,110,99,90,82,100,95,103,100,108,111,105,108,108,101,99,101,99,107,95,95,100,109,88,104,102,109,109,83,107,92,89,107,96,88,107,111,96,103,98,113,95,108,99,96,112,95,92,109,99,100,103,112,95,115,107,112,101,105,100,103,110,96,118,99,117,109,100,101,88,109,98,108,103,101,109,100,93,95,109,103,103,106,103,102,105,109,90,82,112,107,104,105,101,103,107,101,105,116,100,95,97,98,104,99,103,97,92,93,98,95,103,94,107,103,100,96,107,90,102,103,104,109,117,93,105,97,98,94,99,116,90,103,112,96,106,92,105,108,105,95,107,78,104,103,99,96,115,103,88,107,106,99,96,108,102,98,84,67,108,95,121,92,113,96,100,104,111,95,105,106,117,107,105,102,94,96,111,100,90,103,106,94,96,100,110,100,102,107,97,100,96,108,97,116,113,106,109,100,108,105,103,93,102,101,113,111,96,117,97,110,84,107,101,105,88,104,101,104,106,112,99,105,110,98,100,101,102,93,102,106,103,113,114,101,108,101,108,106,110,109,92,99,96,100,106,104,86,105,93,91,105,101,105,105,106,100,102,97,98,106,90,109,105,98,91,102,100,91,96,100,109,93,105,91,116,106,95,101,98,107,106,121,101,106,92,102,105,95,110,108,109,109,99,98,96,115,96,109,126,102,105,86,100,91,99,103,105,102,93,104,114,97,101,103,107,109,105,91,107,104,101,100,110,112,106,107,106,97,98,106,110,100,104,101,111,98,117,100,101,99,99,99,104,100,106,100,103,101,105,104,114,111,102,104,105,107,98,106,96,114,77,98,105,97,110,117,97,104,96,95,108,104,94,100,106,100,99,110,98,100,107,107,98,105,99,88,118,95,95,101,107,87,104,104,105,103,124,106,104,89,103,100,113,105,92,93,101,98,104,105,100,108,105,75,104,102,94,83,108,107,96,94,108,108,104,92,100,72,103,104,98,98,88,100,95,103,116,96,85,97,101,104,117,112,102,107,113,99,106,98,94,101,111,107,108,102,107,106,115,99,99,114,107,105,94,110,99,104,102,90,95,104,99,99,100,95,76,98,102,109,91,116,105,111,100,117,94,96,105,96,109,98,94,97,101,105,95,99,102,104,112,99,103,104,94,109,103,111,85,103,112,110,98,96,93,105,105,116,109,105,77,112,108,104,74,101,98,110,109,100,98,95,95,107,106,118,102,88,95,100,90,100,109,93,93,91,121,85,106,113,96,96,101,98,128,93,111,112,96,97,91,105,104,101,98,124,96,97,108,108,106,97,104,111,114,110,85,99,99,100,112,105,113,91,113,87,98,99,104,103,106,98,104,110,95,108,91,92,100,104,106,109,100,106,106,114,111,107,106,92,106,99,104,93,105,100,96,113,98,100,111,99,98,102,112,99,102,110,100,104,112,107,119,109,87,108,108,104,114,101,104,88,112,113,99,95,104,106,105,110,88,104,101,112,92,102,108,97,94,100,101,108,106,107,117,94,99,66,111,105,87,100,94,105,106,111,91,99,101,108,98,100,109,100,109,101,105,101,104,100,100,117,108,83,90,106,107,105,98,98,103,102,115,107,108,109,106,105,99,100,94,105,103,90,97,103,99,118,98,86,123,103,114,104,120,101,108,102,94,108,119,94,106,101,106,101,106,106,94,121,100,113,113,96,110,103,101,105,110,96,95,89,105,92,95,102,108,93,103,113,96,102,103,111,95,103,98,113,103,100,113,93,104,114,94,118,107,97,99,105,104,92,103,115,107,106,100,98,109,97,104,98,113,99,100,110,98,99,104,105,106,112,109,97,102,96,97,102,101,111,113,102,113,74,71,100,110,88,93,87,100,102,100,101,111,103,100,109,105,119,105,100,99,100,98,101,103,94,97,96,101,99,104,101,105,99,101,98,113,91,117,95,102,99,96,118,106,100,99,99,109,92,101,83,98,108,107,98,99,100,92,94,99,102,106,98,99,104,100,109,101,78,102,103,111,99,101,104,96,88,99,95,95,105,104,103,99,103,123,104,110,104,109,104,105,85,101,99,95,99,102,95,111,102,110,103,94,101,98,105,109,115,91,99,104,88,92,79,106,97,100,104,89,89,101,100,99,106,103,99,102,96,113,111,95,98,97,96,95,97,88,106,110,104,106,100,106,103,99,104,100,98,108,104,101,105,109,110,100,103,105,112,113,98,105,106,106,102,104,99,95,97,108,106,105,83,104,100,111,84,100,103,98,98,100,93,101,107,110,104,113,102,97,114,103,99,100,98,93,97,102,107,100,108,113,92,104,102,105,108,106,101,105,89,96,102,83,103,105,92,107,108,91,88,88,99,94,97,103,113,100,106,96,106,100,103,101,87,98,99,101,101,104,91,94,108,108,97,102,103,108,95,102,104,101,100,103,95,108,97,111,89,94,91,104,106,94,103,94,102,104,94,99,83,93,111,120,125,109,95,98,102,107,113,96,96,105,98,107,99,96,101,112,100,113,129,109,101,103,104,109,105,99,104,92,101,97,113,102,101,104,96,91,107,106,103,102,112,101,106,96,97,105,95,88,105,124,102,98,105,86,112,91,98,94,104,97,94,113,99,113,93,94,96,106,90,114,101,103,106,96,92,109,99,101,113,95,99,101,98,104,119,99,102,94,108,102,101,104,109,108,106,107,107,102,107,91,97,92,105,103,104,107,115,91,103,101,108,112,92,98,98,95,101,91,101,92,102,99,98,109,102,98,92,95,100,101,92,89,95,104,112,99,115,101,106,96,103,99,100,99,104,101,100,98,100,105,105,113,102,97,103,111,96,105,94,112,105,96,105,97,108,103,98,90,97,96,100,107,104,108,106,95,108,108,109,97,93,97,112,107,102,107,117,86,101,94,99,112,92,94,108,107,96,105,96,105,95,99,102,111,86,102,108,94,103,100,95,98,96,99,101,106,94,101,108,105,104,97,116,86,103,96,99,105,105,112,106,116,109,99,113,96,108,96,100,109,105,99,104,101,112,111,84,97,97,106,102,109,104,105,105,87,108,94,98,102,80,94,109,105,112,105,104,109,100,103,110,105,95,98,96,101,127,111,98,96,119,95,95,103,97,108,101,113,96,102,93,99,76,105,94,92,105,108,103,95,92,120,96,105,100,86,98,103,121,96,106,94,105,95,98,98,93,101,102,100,108,109,95,94,104,100,98,95,94,93,101,100,91,105,105,114,102,109,109,104,95,113,97,109,98,101,106,101,101,109,100,105,102,94,103,112,89,105,101,104,107,107,95,97,105,98,106,101,108,96,104,104,103,94,107,100,96,71,104,103,96,108,106,100,102,100,101,96,91,98,108,98,104,102,107,98,94,99,95,110,94,99,85,101,88,104,103,113,103,95,100,105,102,102,96,106,107,93,106,109,94,84,99,98,104,91,105,114,88,105,78,90,101,104,102,106,90,109,115,110,92,104,104,101,97,92,99,108,93,104,83,93,111,100,111,102,103,107,95,106,102,93,110,93,97,93,106,98,93,85,132,101,90,98,93,83,90,100,97,106,93,104,92,96,76,88,95,103,104,105,106,95,127,93,84, +417.74179,104,95,99,95,71,94,88,87,106,106,70,99,94,120,93,90,95,109,99,112,106,95,106,99,94,110,97,93,105,104,101,109,104,94,90,88,90,102,104,95,97,98,103,94,98,110,72,88,100,101,106,98,109,109,108,95,100,95,104,103,90,91,110,91,107,100,105,100,97,109,103,91,99,99,90,97,95,100,98,90,101,92,107,106,118,98,109,107,76,96,64,103,104,101,96,111,83,82,105,87,89,102,106,89,90,99,87,95,104,98,113,97,100,94,102,96,108,106,103,86,97,92,100,97,106,100,95,92,102,91,99,108,95,100,132,112,107,98,68,99,97,110,107,100,97,95,95,94,96,92,98,103,102,107,102,93,97,100,106,98,101,90,99,91,115,93,105,92,110,92,85,112,94,88,100,96,110,88,99,101,98,97,101,112,106,87,94,87,109,100,98,105,101,126,104,95,96,107,99,104,104,103,104,102,95,94,99,94,113,103,94,100,97,92,99,99,97,105,97,99,102,99,92,95,104,100,105,97,101,98,92,87,98,98,109,97,98,92,96,101,100,93,96,83,110,92,96,103,104,108,96,107,111,106,116,105,96,101,91,103,86,102,107,118,94,78,95,98,97,96,101,102,105,106,98,92,93,113,106,107,108,95,94,87,104,95,99,91,96,100,96,82,90,98,101,104,101,96,104,105,98,87,110,105,111,101,99,99,116,99,108,95,107,89,103,77,93,101,100,97,98,102,96,103,95,103,91,99,103,102,96,98,99,92,91,92,91,90,108,94,95,98,92,95,99,96,105,108,100,105,96,95,102,101,102,100,96,101,108,101,98,101,96,90,87,95,112,96,102,105,107,102,94,110,112,99,103,97,97,109,107,109,97,100,102,106,97,90,99,116,94,105,93,100,97,102,105,105,98,118,105,97,101,103,102,94,101,109,110,98,87,90,103,97,101,75,98,110,95,106,96,92,99,100,93,71,89,97,98,98,103,104,100,95,99,90,101,100,95,98,113,93,99,95,96,97,107,102,98,104,101,105,102,91,95,100,104,96,98,95,100,106,114,92,109,95,105,91,81,100,100,106,94,99,100,107,91,107,101,96,91,107,98,101,96,100,100,99,103,104,99,101,92,89,95,96,102,105,115,95,110,104,102,103,102,102,90,94,83,95,94,132,136,107,102,87,90,88,87,94,106,95,102,100,92,103,100,91,91,96,101,111,94,101,94,102,93,95,103,102,96,103,96,110,104,96,105,96,109,96,118,96,106,99,109,109,100,102,100,88,95,97,106,106,93,95,96,104,99,100,100,100,105,102,98,103,87,100,100,103,95,84,91,96,96,92,112,100,99,100,103,90,99,100,102,110,102,96,110,94,102,100,94,95,100,97,97,106,96,103,84,99,107,88,118,100,98,95,114,96,91,99,104,91,102,109,101,107,87,100,100,100,92,110,98,96,87,98,115,95,93,98,101,97,94,91,101,107,92,100,112,101,106,112,97,105,98,105,99,104,93,113,106,110,96,82,107,93,96,111,96,100,110,99,98,94,110,89,98,96,102,108,95,93,98,90,106,100,110,101,108,105,101,83,104,105,103,95,103,94,100,102,117,110,97,111,112,103,96,98,97,97,93,96,93,103,99,93,91,98,94,103,108,104,102,86,89,108,103,95,110,95,96,96,95,94,105,94,94,97,101,88,96,92,109,96,92,94,96,100,98,109,96,103,105,105,109,102,111,93,92,92,108,108,98,98,101,82,99,95,91,88,104,97,102,94,117,102,94,90,104,101,104,114,96,100,97,104,95,118,97,98,117,103,103,87,106,98,114,99,93,103,94,103,102,114,97,104,109,110,103,100,105,100,112,111,96,103,107,95,99,86,102,99,102,103,95,88,96,86,90,113,108,88,88,106,113,108,114,101,102,89,84,92,107,96,103,103,108,98,104,99,100,104,100,95,100,100,117,94,97,108,85,98,103,103,114,117,99,90,103,118,94,98,96,106,113,105,100,94,113,99,97,95,105,100,96,108,107,92,96,82,103,108,106,98,88,95,109,101,95,91,101,86,117,87,76,112,97,105,97,92,100,101,108,103,97,113,98,110,110,101,84,97,99,89,110,100,94,92,97,89,100,110,95,111,88,105,98,79,103,100,97,89,91,94,97,103,104,100,90,87,103,108,109,105,109,91,96,87,110,97,108,113,103,99,92,99,104,102,103,98,109,98,101,85,101,91,107,98,97,97,107,92,104,83,94,100,102,94,108,102,102,103,91,86,89,97,93,107,102,99,105,101,101,99,98,127,109,100,96,121,109,91,95,100,90,99,105,98,117,96,93,98,99,93,113,99,115,101,105,88,103,92,94,105,98,106,102,101,103,96,95,101,102,102,100,98,99,105,107,95,119,102,109,93,104,112,101,112,99,94,94,97,101,111,92,102,113,102,95,109,104,103,97,101,103,100,106,93,111,102,99,104,94,79,98,90,117,92,108,97,108,93,106,94,117,101,104,98,105,104,101,105,94,100,105,96,101,94,105,108,112,110,102,105,104,85,93,100,117,96,100,103,113,101,98,110,104,97,106,101,104,95,103,106,105,111,108,87,100,104,98,113,106,103,96,102,105,87,113,108,101,96,97,99,102,101,108,102,99,96,101,95,102,106,105,101,104,99,104,100,114,88,97,97,102,100,104,104,101,97,96,106,101,99,102,102,102,105,84,96,108,102,100,115,106,97,84,114,102,100,133,105,93,110,102,102,96,106,106,99,100,92,96,108,111,110,106,106,110,95,99,121,100,96,104,109,106,97,107,112,99,98,102,101,107,107,104,96,101,107,108,96,104,98,98,110,88,102,106,101,98,109,98,101,109,104,96,114,108,104,103,104,101,103,92,94,93,95,99,103,99,121,104,110,106,115,101,103,98,90,95,110,106,104,109,106,95,83,98,104,115,99,96,106,94,93,103,104,110,94,100,97,95,101,105,99,90,93,92,105,99,102,97,107,100,108,101,105,105,102,103,103,109,99,75,97,105,105,101,94,97,105,98,86,97,93,88,102,94,109,112,103,86,99,98,94,99,93,107,105,98,96,109,106,104,97,118,106,99,108,107,109,73,102,104,96,97,91,106,118,99,100,78,90,100,106,97,100,106,105,105,107,107,90,102,101,109,109,102,100,99,107,103,100,103,91,103,95,100,102,81,103,98,103,109,103,108,112,105,112,98,95,113,110,96,92,106,108,114,93,107,92,93,95,95,98,97,94,102,122,106,104,99,95,108,98,120,102,109,95,122,111,94,103,98,107,108,105,95,98,106,101,113,85,101,99,112,106,113,96,99,113,123,104,95,97,110,105,104,94,97,108,102,109,100,113,100,108,102,99,110,105,92,113,98,101,107,95,100,116,98,110,91,96,102,92,103,112,121,103,106,91,97,107,111,98,101,98,94,104,95,67,97,100,92,109,102,96,106,117,100,101,99,101,107,98,98,97,102,96,93,95,101,102,104,105,101,101,103,104,101,106,114,93,110,106,99,94,107,99,107,111,105,111,103,88,94,106,113,119,104,102,98,118,106,105,96,110,98,104,106,102,106,99,96,107,93,101,104,100,100,94,96,105,112,95,104,92,97,112,94,100,104,103,114,105,105,102,95,91,96,101,95,107,95,87,99,100,102,100,104,112,111,128,103,94,102,98,109,98,103,107,107,101,101,105,102,95,96,88,98,95,104,106,109,101,100,94,105,92,108,100,107,106,91,104,97,90,112,103,91,95,111,102,96,102,97,112,101,107,106,103,103,107,105,107,109,96,96,120,95,113,106,110,113,112,110,101,97,105,98,113,98,105,104,114,95,102,113,108,102,92,93,106,106,99,103,107,99,95,115,101,98,99,106,110,108,100,108,90,85,101,92,90,118,106,129,95,96,111,101,102,109,102,107,99,96,105,108,96,106,101,93,105,110,100,103,117,90,97,107,112,96,71,102,105,96,97,102,91,96,103,118,99,99,103,99,109,112,103,94,100,96,102,93,106,95,84,108,101,80,100,106,108,102,93,102,103,109,103,101,109,112,110,94,106,109,113,109,99,113,103,102,112,113,105,108,99,113,106,112,110,105,102,99,104,92,102,109,112,107,106,103,108,110,106,102,102,99,101,85,111,100,99,101,99,114,103,103,101,107,91,106,107,100,102,99,99,99,109,108,98,99,101,97,104,125,79,96,104,103,107,93,88,113,102,106,101,106,92,99,100,118,90,103,116,100,91,96,96,102,108,95,98,87,110,99,123,116,107,111,104,87,129,103,108,92,88,101,94,106,107,96,102,109,112,101,103,101,126,103,95,113,98,101,108,99,96,108,100,104,102,104,96,117,107,106,92,107,107,114,106,98,108,105,98,97,97,103,106,101,109,102,104,109,110,91,107,101,112,98,106,112,117,88,100,106,113,107,106,95,107,97,101,94,103,103,102,101,113,105,107,107,97,100,92,110,106,108,102,89,101,109,95,107,101,91,99,89,102,116,109,95,99,97,105,94,106,109,103,102,96,114,97,103,115,106,86,106,103,94,98,95,110,94,108,109,109,91,105,101,91,102,97,104,116,98,97,92,104,107,108,103,106,101,101,90,113,100,90,98,103,95,108,106,98,95,98,107,95,112,103,101,100,106,105,123,98,105,96,87,94,97,109,95,100,99,109,106,100,101,108,101,97,113,105,97,99,104,91,111,94,104,101,100,88,89,105,98,105,110,101,97,103,119,93,98,109,105,101,102,106,99,110,104,109,96,106,106,98,113,121,105,106,113,92,111,109,107,93,98,88,100,104,99,99,116,103,100,94,98,87,94,106,92,104,96,99,96,139,112,102,107,102,104,99,103,97,101,100,113,111,106,98,99,106,88,106,110,81,100,75,98,99,87,112,100,60, +417.88202,107,99,101,96,97,121,106,108,110,103,107,107,99,113,93,94,101,96,113,95,104,92,110,108,76,96,108,113,98,124,109,87,100,101,106,102,108,109,92,100,106,82,115,85,108,109,112,102,95,104,105,90,98,109,101,96,96,86,109,97,97,107,107,104,94,106,97,110,95,104,101,91,100,107,102,101,107,93,107,107,90,107,100,104,104,74,97,96,96,104,103,110,95,112,93,98,115,113,86,95,100,101,92,98,117,94,124,100,91,108,102,100,113,88,97,103,97,104,106,90,103,103,106,109,106,115,114,111,101,104,106,102,101,102,103,108,95,96,109,92,104,102,103,97,97,105,114,100,101,110,105,99,110,106,99,90,110,99,78,107,91,121,101,114,107,89,104,100,86,96,121,99,94,97,101,103,102,101,115,107,105,94,104,103,100,92,103,86,111,95,115,107,100,103,106,101,109,105,100,101,110,113,98,107,100,114,98,102,109,101,107,97,98,107,103,94,101,106,100,108,103,99,94,95,104,103,103,106,107,110,106,109,98,102,95,120,105,104,99,111,75,104,102,107,97,108,100,97,107,95,95,113,91,88,97,117,90,97,92,99,96,103,107,116,89,107,103,106,94,99,98,91,102,104,109,99,105,98,106,100,97,89,96,92,99,96,108,108,108,95,96,103,119,109,114,111,98,101,117,99,101,110,104,99,98,104,105,103,107,97,96,95,97,123,96,99,113,117,106,79,109,98,111,91,106,102,91,97,108,106,96,88,105,99,111,113,98,98,114,96,95,115,99,77,114,106,103,105,86,109,105,91,103,101,109,108,98,110,99,117,85,108,105,94,113,105,105,110,84,108,100,104,96,102,100,104,111,94,100,105,119,103,101,105,108,87,103,102,102,103,103,98,82,100,112,90,106,101,104,106,108,100,113,93,108,106,118,98,106,102,97,102,100,105,104,78,106,98,97,107,104,100,106,91,88,96,93,98,101,103,100,104,106,105,90,95,100,80,105,99,104,109,101,106,99,107,90,105,107,114,97,92,95,107,107,102,103,99,102,102,101,94,95,109,113,106,105,101,104,104,104,108,106,108,92,104,106,107,108,122,93,107,97,113,96,96,118,71,94,111,114,106,107,102,95,112,95,94,105,94,106,98,96,93,95,102,105,105,104,101,113,110,100,109,104,109,110,98,107,94,106,118,99,92,112,92,128,113,101,118,110,111,114,103,113,101,103,97,92,90,101,102,98,96,107,105,107,104,105,93,100,130,117,111,112,98,110,110,91,90,103,98,105,104,95,105,103,107,95,107,99,90,107,95,103,104,105,102,106,103,102,101,101,118,109,107,110,108,119,96,100,102,106,99,104,110,97,89,92,94,100,83,104,100,103,96,103,96,98,109,91,114,90,108,112,114,104,108,106,99,106,91,103,91,110,105,105,107,96,87,89,108,96,99,96,111,108,80,101,99,100,105,106,100,100,99,103,95,97,100,102,103,102,110,105,105,101,101,100,102,109,112,101,105,97,98,109,99,103,115,99,98,105,100,91,102,99,101,109,97,100,100,104,90,101,100,101,99,109,105,105,119,104,100,106,100,93,102,105,96,102,100,88,104,110,109,117,105,101,101,101,92,88,84,93,112,107,105,104,108,98,109,102,95,102,109,101,102,93,116,91,112,81,100,99,96,109,98,98,98,101,94,89,100,97,101,93,101,99,112,117,106,104,93,103,100,104,95,102,95,98,103,94,106,97,104,87,97,94,100,105,104,106,97,105,105,128,112,98,96,101,106,111,100,87,106,96,101,109,112,95,102,91,96,93,95,103,102,108,107,99,65,114,107,101,99,99,100,106,109,104,103,102,94,97,68,116,116,103,97,97,105,95,105,107,100,109,88,100,95,108,104,112,96,99,115,107,100,106,96,102,110,93,111,95,94,101,110,98,98,95,97,98,111,95,104,109,97,116,117,101,121,93,103,100,106,104,109,107,106,106,96,98,114,111,111,98,83,101,92,111,105,99,95,99,113,101,116,104,107,100,116,107,100,108,96,96,118,103,102,106,101,106,95,104,100,92,84,99,63,106,100,107,97,97,111,99,107,100,101,112,98,97,97,99,87,90,104,105,99,97,119,94,100,93,119,86,104,115,99,100,98,106,104,106,101,104,105,108,99,103,113,102,109,101,104,99,83,98,103,95,118,98,105,106,106,98,99,95,96,105,113,103,103,96,101,107,109,113,92,101,112,100,88,108,112,100,90,101,95,102,98,112,108,101,91,104,105,104,110,112,104,98,94,112,110,106,97,96,92,88,106,105,98,94,109,110,94,108,105,99,105,98,91,107,97,101,119,97,100,104,102,106,91,119,100,99,98,105,105,102,81,95,101,97,106,133,102,88,96,93,99,121,96,94,100,96,106,89,107,95,108,99,89,78,97,98,105,95,106,96,94,88,101,100,102,89,104,102,93,104,104,92,110,112,98,95,106,104,98,97,108,96,89,100,99,103,112,112,101,112,101,89,104,70,91,109,116,102,101,98,101,88,103,105,98,102,114,102,119,106,103,95,97,98,100,83,106,98,104,95,110,109,94,111,103,101,103,97,100,102,107,101,96,104,99,95,101,112,85,93,111,116,100,102,109,96,101,101,105,91,90,98,90,99,92,100,99,100,103,105,109,92,115,106,101,99,93,109,105,99,102,103,105,104,103,104,106,105,108,113,98,115,115,93,113,106,102,99,96,107,102,113,95,111,102,102,108,97,102,106,107,102,101,113,101,101,101,105,106,106,104,90,109,100,118,102,105,96,108,71,104,115,107,106,101,95,108,92,108,106,94,111,87,101,111,97,113,104,100,107,92,109,108,109,94,98,102,93,105,107,95,95,107,93,86,103,104,96,111,92,98,101,116,100,90,104,103,108,104,95,101,115,92,109,95,97,79,104,104,96,107,136,92,97,108,98,108,104,101,78,106,105,101,97,106,102,102,101,110,108,102,107,99,103,117,97,93,97,89,112,93,102,100,110,105,104,108,97,93,104,96,99,108,100,94,111,95,88,99,113,96,113,100,103,99,107,96,104,95,84,98,108,95,95,96,103,110,100,100,111,100,107,108,110,107,99,105,95,103,100,106,125,106,93,119,85,98,110,102,96,92,110,107,85,98,100,104,97,106,98,107,96,98,96,96,107,88,105,113,106,106,97,108,87,101,108,104,103,101,109,104,107,107,99,98,95,108,107,104,98,96,91,101,87,92,101,106,113,91,96,100,102,109,111,113,91,101,92,104,103,122,105,121,106,98,105,94,107,91,102,101,104,105,97,93,83,94,104,93,99,101,92,102,101,117,103,108,104,102,109,109,98,96,93,98,96,107,92,108,94,128,110,100,94,96,102,106,104,104,106,93,101,100,109,106,100,99,96,108,109,108,107,92,93,96,109,105,98,115,110,109,109,109,91,111,110,101,100,98,103,96,102,100,98,98,88,97,101,100,109,102,112,105,104,111,108,96,105,93,105,101,108,104,100,109,102,105,103,102,103,118,113,99,97,103,103,101,93,105,105,103,108,102,106,102,92,116,99,102,96,92,110,110,104,107,99,106,121,95,99,97,108,100,104,91,103,101,105,90,104,107,100,104,89,80,103,91,98,108,103,98,105,98,107,108,126,100,107,99,98,104,80,110,101,102,90,118,105,108,91,107,101,98,103,95,101,100,112,109,105,105,98,99,102,109,95,100,99,98,96,101,101,102,103,102,102,107,98,92,102,100,107,104,101,117,101,105,97,109,106,105,103,101,99,118,109,98,97,99,95,102,92,100,112,100,112,113,82,91,98,98,102,103,95,95,99,104,100,106,88,104,93,104,100,116,109,104,103,98,109,98,118,102,98,107,104,109,105,102,97,100,105,95,91,97,91,106,100,95,105,97,97,108,101,109,95,94,83,93,104,93,115,87,90,106,108,106,93,103,103,92,100,96,103,105,93,106,108,98,106,101,108,100,101,113,100,96,103,110,104,105,91,102,112,96,97,109,95,107,89,115,103,101,98,110,96,102,111,106,104,103,112,98,121,103,98,99,98,109,87,94,118,102,102,108,102,112,104,117,115,103,107,101,101,106,99,99,104,99,105,98,110,110,105,107,115,109,106,91,106,93,88,116,105,84,99,107,109,98,110,112,96,111,100,102,107,102,105,96,104,108,107,102,98,99,100,104,105,104,109,105,107,109,104,99,110,104,107,112,106,103,95,106,120,91,107,104,107,106,99,117,103,104,102,96,97,93,103,111,105,94,109,95,110,106,105,99,104,102,100,100,104,102,103,93,100,104,97,109,112,105,111,106,111,96,120,108,99,101,98,100,104,90,101,102,108,103,106,109,104,109,104,109,95,88,100,112,104,112,111,99,101,103,103,111,104,102,109,99,93,98,93,110,100,100,100,110,88,111,105,110,113,115,87,95,105,98,103,107,94,99,103,103,104,99,96,115,97,100,83,92,108,100,99,111,90,100,102,113,101,100,93,105,110,119,108,108,103,83,101,102,97,101,111,108,104,108,107,99,90,103,93,104,99,113,101,97,111,99,120,106,112,106,100,103,94,106,109,96,103,92,113,100,105,102,95,92,100,97,93,92,94,102,96,96,100,108,125,102,105,103,105,100,97,102,102,109,110,98,102,96,99,64,115,99,69,100,101,118,90,116,98,110,116,106,104,102,97,102,91,102,114,108,106,101,110,103,102,99,84,90,96,110,104,111,105,95,111,101,104,110,113,114,103,83,108,83,109,122,106,94,103,121,116,103,105,91,93,96,108,102,106,101,94,98,92,106,100,96,106,100,98,92,81,108,93,114,99,97,109,115,104,121,91,104,88,88,109,97,116,94,99,110,112,114,102,101,98,93,110,110,93,96,111,113,100,99,85,101, +418.02225,88,97,76,99,92,87,115,95,86,117,91,108,109,107,111,69,81,108,104,90,102,99,106,92,107,106,101,119,101,105,104,104,109,95,98,105,98,91,101,99,88,102,97,102,110,113,93,115,106,97,101,97,100,95,102,95,97,92,106,93,105,93,97,92,95,109,87,97,103,104,92,101,103,97,90,104,113,94,99,107,100,105,116,90,90,98,104,91,99,110,98,104,102,92,110,111,104,91,108,108,104,97,98,92,95,104,108,111,94,102,91,96,94,97,95,94,102,102,107,90,83,98,110,100,90,102,108,102,109,107,104,115,104,89,121,101,109,106,98,109,88,118,97,114,96,104,103,94,106,91,103,97,110,100,99,104,105,98,102,97,105,87,121,72,104,100,105,103,98,125,96,98,98,102,94,114,102,106,105,104,87,101,92,98,106,112,97,99,119,106,105,106,113,101,107,96,90,100,108,106,108,101,95,105,92,102,92,86,104,108,95,98,100,102,104,104,100,96,112,111,97,109,99,95,99,122,95,96,99,103,107,112,98,94,115,84,103,117,106,111,102,108,113,101,97,86,113,101,102,106,101,104,109,106,90,103,97,107,103,105,94,99,100,98,86,111,104,114,101,98,92,105,97,102,110,118,99,108,110,109,106,96,102,92,98,112,91,104,99,98,102,95,109,111,105,106,97,98,110,111,101,103,102,112,103,108,101,100,102,101,91,96,93,103,99,96,112,108,105,113,115,90,98,93,116,107,104,96,111,106,119,90,117,114,97,110,107,115,101,94,101,102,94,91,95,107,100,110,111,108,110,105,101,105,115,99,97,91,102,95,107,96,102,102,100,96,101,109,102,104,91,82,94,106,86,96,104,101,105,103,101,105,101,114,110,101,91,98,103,106,105,95,112,101,104,102,113,96,106,110,96,108,104,92,110,110,96,104,106,106,91,86,99,95,101,101,102,98,109,93,107,94,103,94,95,95,104,92,107,99,99,105,99,101,99,95,101,99,88,97,105,92,101,100,98,103,92,101,107,103,95,112,101,112,80,91,106,102,102,100,95,94,111,94,104,103,87,108,132,99,87,102,98,112,99,92,103,113,97,99,103,113,95,108,105,113,87,104,96,111,99,105,102,113,96,95,101,101,100,108,106,105,102,116,97,98,91,103,112,104,86,99,99,108,110,105,102,95,96,94,98,108,101,99,85,105,105,108,101,103,109,108,102,103,109,105,91,93,104,107,110,103,93,110,118,106,111,86,108,98,106,109,113,68,89,89,97,86,106,113,96,105,105,91,100,97,106,102,101,94,86,95,115,95,101,103,100,101,103,111,96,103,104,99,99,94,94,105,108,97,111,98,116,87,110,114,99,98,106,102,98,90,106,75,102,99,103,102,97,109,106,95,107,113,106,97,86,100,102,106,107,105,122,101,94,104,91,109,108,113,101,101,89,103,106,118,96,98,112,113,108,109,101,96,98,92,95,109,106,103,99,95,94,103,100,104,103,104,108,101,112,104,103,109,98,98,104,104,98,108,106,97,119,103,111,121,101,112,95,94,105,103,112,92,101,94,109,94,109,103,94,95,99,96,107,84,108,91,112,102,93,98,96,101,97,121,102,120,102,99,96,109,85,93,100,96,121,92,96,110,102,101,103,98,102,107,96,66,100,103,109,111,94,91,101,94,95,98,102,101,103,91,106,106,108,110,83,110,94,103,105,96,101,100,116,93,93,103,107,100,105,110,94,83,93,102,99,115,104,99,104,97,105,100,101,107,113,98,90,94,98,101,126,98,98,107,105,110,92,113,103,111,100,99,96,109,107,106,102,104,92,104,106,99,97,105,107,109,119,109,133,98,93,105,105,100,113,107,104,104,105,107,111,100,111,104,104,95,90,79,106,96,109,107,98,103,104,91,106,97,98,95,114,110,108,101,80,100,106,90,98,100,105,106,98,104,90,110,100,107,108,98,80,111,103,91,98,96,97,106,95,110,110,94,102,105,120,100,98,98,112,101,100,116,103,114,98,109,108,114,99,126,108,105,110,106,105,99,95,112,92,109,115,99,100,99,93,103,99,108,104,97,102,99,106,105,80,101,94,101,102,97,102,116,104,107,102,105,105,102,108,108,94,97,104,108,97,93,99,96,84,101,116,96,87,99,100,108,99,114,99,104,100,87,99,101,112,97,99,100,95,100,101,112,111,108,99,104,102,98,105,95,104,83,100,81,100,96,104,118,95,113,99,103,103,103,106,97,103,115,105,98,102,99,92,109,79,103,105,112,110,103,109,95,109,111,102,91,84,111,113,97,95,100,92,98,98,104,101,101,103,110,100,81,105,104,100,76,100,100,104,111,107,106,107,101,103,106,97,104,99,102,100,99,97,98,114,102,99,104,109,101,108,98,105,107,103,110,99,102,105,114,103,109,101,101,101,97,104,102,109,100,90,93,93,92,109,99,83,91,97,98,99,105,106,99,90,94,102,105,111,103,118,92,102,95,105,89,105,105,115,102,95,107,94,117,86,105,112,97,73,109,104,106,99,97,110,102,89,109,102,110,113,92,100,112,101,98,98,97,100,104,83,100,112,99,105,105,94,99,99,99,97,112,83,97,97,105,108,99,105,94,112,101,96,109,110,95,106,99,108,87,105,96,105,103,101,96,106,100,107,94,104,100,104,104,105,110,110,106,89,107,116,106,107,96,102,98,101,108,97,105,118,111,102,97,98,96,115,108,105,98,109,99,106,106,110,98,98,113,91,96,95,101,98,104,110,106,105,95,103,112,99,101,102,83,94,117,98,100,109,106,100,98,102,99,105,105,107,95,104,104,114,118,102,109,87,98,109,109,109,120,105,115,90,111,97,110,110,108,106,92,100,102,107,100,112,108,104,111,100,113,105,106,99,98,91,105,104,104,98,100,96,117,113,102,108,110,95,99,105,91,104,104,113,98,97,103,109,103,98,106,94,108,92,100,101,103,101,112,105,101,97,95,108,108,114,95,96,89,111,102,100,96,104,112,112,99,104,117,100,86,122,107,109,101,99,91,93,103,112,101,95,90,97,105,90,98,108,101,107,127,98,102,92,95,106,92,103,90,101,106,107,109,102,109,110,116,108,99,88,100,108,109,81,108,106,121,107,95,102,101,104,116,113,109,102,104,105,77,102,98,103,112,108,99,99,104,100,108,109,102,99,109,95,74,96,105,107,106,100,91,105,99,109,107,98,106,105,107,96,103,101,108,103,95,96,95,110,106,98,95,103,106,104,107,103,103,106,91,112,104,116,104,106,96,105,109,109,104,130,87,113,95,105,96,103,99,104,98,104,110,108,105,102,114,107,99,110,92,94,106,105,99,105,104,106,105,95,99,110,99,102,105,105,106,102,92,104,99,110,84,106,95,111,113,106,91,104,104,98,100,102,103,99,105,97,91,104,121,93,102,112,94,100,98,106,124,110,86,111,101,103,105,111,104,101,107,107,107,102,101,96,96,97,105,109,109,116,104,112,121,74,98,98,106,94,106,109,97,104,100,112,102,104,97,107,116,110,124,105,105,102,101,110,106,94,112,105,106,110,103,106,87,106,105,93,101,110,103,109,102,102,87,110,116,106,92,94,110,103,91,106,101,106,104,91,104,103,106,91,99,117,106,112,105,112,95,104,106,106,95,98,72,100,100,101,100,113,106,104,102,108,112,123,104,93,101,106,104,106,113,108,104,113,92,111,107,104,91,97,93,103,95,100,94,102,114,100,105,123,97,92,99,112,90,101,103,95,75,97,108,109,112,108,111,105,97,92,97,104,112,101,108,102,98,116,106,96,103,108,93,87,94,113,105,95,110,104,107,101,107,87,109,96,102,95,103,104,93,120,95,101,108,98,104,110,107,95,101,99,93,110,103,97,105,103,99,102,107,87,108,104,106,119,98,109,89,98,104,99,94,111,101,95,105,94,102,101,109,93,107,101,100,91,105,95,100,105,100,98,107,97,100,99,84,107,104,100,96,96,103,90,94,113,105,99,99,111,104,111,93,97,110,94,111,110,96,97,117,115,111,101,101,103,115,101,106,90,105,112,92,92,88,102,99,109,111,100,100,106,99,95,96,115,103,100,94,101,101,104,100,93,106,116,102,110,105,111,102,103,96,103,102,99,100,92,107,103,109,101,96,97,96,98,116,91,102,104,103,115,85,106,106,96,100,99,113,103,91,106,107,101,104,107,110,106,102,106,104,107,94,115,99,64,104,119,119,99,99,101,106,102,111,99,98,92,129,108,109,126,109,112,99,107,95,105,102,81,112,97,106,95,115,94,98,93,95,119,107,104,96,108,104,124,94,112,99,105,109,107,97,105,103,105,101,106,101,106,116,105,116,100,110,101,94,119,106,101,104,96,119,111,112,98,95,104,102,103,104,91,99,102,99,91,112,93,95,103,97,111,125,119,96,107,104,100,101,105,103,101,104,116,100,105,97,109,117,106,106,114,97,96,109,104,103,101,93,98,104,107,102,89,113,116,115,103,100,106,98,97,99,99,101,108,100,91,117,103,117,102,109,94,98,96,104,94,111,105,108,99,111,104,98,106,112,94,100,102,65,81,95,101,119,99,110,104,101,105,108,90,94,109,96,99,130,99,87,99,66,100,103,95,92,96,99,103,96,102,90,99,97,100,105,95,104,104,101,104,92,84,90,97,114,108,84,135,100,103,92,98,103,109,117,92,108,110,101,111,67,102,88,88,99,104,100,114,100,112,85,104,103,109,114,88,103,113,103,90,92,102,97,120,94,108,92,132,98,97,97,96,99,91,104,87,102,88,112,92,108,109,98,98,107,98,99,102,110,90,100,101,102,103,101,101,110,79,95,100,100,93,105,108,124,121,95,107,103,81,87,103,99,90,109,94,107,103,91,87,87, +418.16248,107,108,96,97,82,98,99,93,107,113,103,105,103,107,92,106,84,103,108,94,97,98,95,104,94,99,97,106,110,89,89,79,108,104,105,105,108,98,104,105,100,105,105,100,89,102,94,101,101,99,85,97,96,117,113,101,105,104,96,83,91,97,118,95,94,104,101,104,104,106,100,105,98,98,104,114,97,87,106,103,96,102,109,92,93,80,102,111,110,96,112,105,92,104,105,109,92,95,106,105,100,99,102,98,101,106,90,92,101,93,94,104,109,110,95,94,103,95,87,93,83,95,100,104,114,99,113,101,110,107,91,101,86,98,106,91,95,105,114,91,94,104,105,107,120,90,103,89,95,101,102,69,105,96,96,96,99,101,94,96,102,99,97,80,105,98,100,99,98,89,101,96,110,101,85,93,109,95,106,96,107,106,102,102,102,106,102,97,100,108,106,104,101,101,96,96,98,97,102,102,96,111,97,75,99,109,104,95,110,110,94,100,95,99,99,87,101,101,104,97,100,104,96,81,102,103,97,94,99,100,102,92,101,98,103,98,104,96,104,101,95,96,116,100,106,111,98,111,105,98,102,103,109,105,106,110,93,101,97,86,101,95,109,90,97,90,97,87,100,102,102,100,109,99,107,103,85,115,101,98,97,98,100,103,103,101,90,103,104,87,104,96,108,95,102,102,67,98,104,104,104,75,109,115,106,102,113,110,117,94,93,91,114,94,96,98,108,103,98,87,111,105,109,90,113,105,96,101,99,99,95,110,105,93,108,98,97,107,108,128,97,96,97,91,107,107,97,102,109,97,95,114,106,98,92,99,106,101,95,105,94,101,105,111,101,100,97,114,85,106,101,94,105,96,111,101,107,97,141,110,115,102,102,103,90,110,103,106,100,98,108,82,96,103,95,95,101,104,102,99,97,111,97,98,109,100,101,104,109,98,102,93,100,111,102,98,89,97,102,103,92,88,109,102,97,101,105,97,109,106,100,97,121,107,97,102,117,107,99,97,113,91,101,112,101,93,109,91,108,114,108,91,99,110,102,100,101,103,109,100,90,107,87,109,93,99,104,104,101,109,94,106,108,68,108,113,106,101,103,103,93,101,105,99,110,98,101,104,95,98,104,106,93,95,101,98,100,101,109,102,111,105,97,97,105,104,99,102,102,99,101,103,105,99,92,104,90,103,90,81,102,96,99,104,107,103,99,106,101,113,106,93,102,99,108,105,78,110,88,106,99,109,92,100,106,103,96,110,114,84,100,105,106,98,105,104,113,109,100,95,107,113,102,103,94,104,85,91,94,99,95,106,108,112,108,106,94,138,88,101,103,114,108,103,101,102,108,111,106,109,109,110,99,102,109,99,92,114,103,105,94,98,110,107,97,105,104,105,105,96,96,100,107,96,99,100,100,103,104,97,104,100,98,100,108,94,98,99,105,99,107,98,101,104,99,106,101,92,119,89,106,95,100,102,107,96,107,86,102,101,90,100,106,105,93,103,96,103,100,95,102,110,98,101,99,99,101,99,101,99,101,91,117,95,103,99,109,112,104,103,98,108,97,94,96,105,94,91,98,101,101,100,105,102,88,91,104,91,100,93,112,92,98,98,119,115,104,86,101,92,99,104,96,94,97,96,128,108,112,109,100,94,109,125,101,100,103,107,106,109,108,98,96,97,102,104,104,103,99,112,102,100,101,104,109,96,101,104,104,102,104,97,95,98,91,93,100,104,108,99,93,95,92,104,95,109,96,120,122,101,102,98,109,100,112,96,98,97,101,94,115,92,94,105,102,104,94,103,106,102,103,106,122,110,90,103,109,118,95,105,102,113,92,94,112,105,99,103,91,104,96,103,99,105,90,100,99,93,118,101,101,96,98,113,70,95,83,95,100,100,94,105,116,101,103,101,114,100,101,96,105,98,93,92,103,117,99,102,106,100,100,107,108,99,79,104,107,102,95,98,87,104,96,96,104,100,104,108,105,104,100,100,103,94,104,90,110,98,105,107,95,108,97,105,99,96,104,100,108,111,94,101,89,105,91,101,96,105,88,100,113,111,91,93,100,97,101,109,97,94,102,87,105,109,105,103,92,98,115,101,102,101,94,105,110,91,98,105,103,99,84,106,102,114,106,100,101,91,100,93,103,103,110,112,93,94,97,92,107,100,101,109,102,102,108,102,102,106,84,100,111,100,95,104,95,94,109,100,101,113,104,100,99,103,100,99,103,109,88,108,91,98,103,98,106,104,95,105,105,118,101,120,98,95,105,93,94,92,102,104,102,102,97,98,99,99,100,86,97,101,95,100,103,100,95,105,87,95,104,101,109,108,95,88,92,88,99,110,105,93,107,89,121,95,101,97,108,99,101,103,95,94,108,103,91,113,108,99,100,96,111,95,115,97,98,106,105,100,97,109,104,101,95,98,108,96,102,101,111,107,94,107,110,102,100,101,110,113,101,103,104,91,87,94,100,68,117,100,109,108,97,73,100,94,105,95,108,82,103,99,93,113,111,99,95,102,89,103,104,102,108,111,99,104,102,98,100,116,92,108,103,93,91,95,98,101,77,104,98,95,98,102,101,90,91,109,96,101,106,90,98,97,96,96,102,104,107,102,104,98,105,104,99,113,107,106,95,96,105,100,89,96,102,95,95,105,104,102,102,95,106,98,107,109,99,92,104,98,108,97,105,94,110,93,108,104,83,97,100,108,101,106,100,107,92,99,91,98,106,97,103,112,97,90,110,101,98,105,106,95,80,99,92,107,102,106,101,104,101,99,90,88,94,101,114,103,96,98,120,93,104,107,89,98,96,106,99,115,101,102,100,93,96,102,102,95,106,112,99,98,99,97,120,104,104,74,96,104,101,106,110,98,99,97,105,98,114,103,105,109,91,99,100,100,107,93,100,97,106,104,104,110,108,97,107,103,110,98,108,77,100,113,93,95,111,107,102,91,100,94,108,97,93,104,94,98,105,106,105,103,104,100,103,97,102,100,102,100,101,100,101,72,113,108,114,102,97,98,105,89,107,98,95,105,100,105,85,95,94,105,93,105,95,112,109,100,102,92,109,96,106,96,98,99,94,96,97,97,103,91,96,107,99,97,106,84,105,109,101,102,108,107,100,90,104,100,103,101,105,102,88,97,97,110,96,106,101,110,93,104,105,96,111,90,104,100,103,97,121,98,106,112,102,100,100,106,103,108,101,99,100,107,92,102,111,102,94,96,106,98,102,105,79,96,87,96,117,102,102,102,90,102,97,103,130,95,100,89,88,94,107,101,104,106,121,84,95,98,95,90,106,90,93,91,103,105,106,115,82,99,107,102,106,99,92,97,109,95,99,101,91,107,96,100,104,101,102,111,115,97,99,104,105,97,91,97,103,108,127,90,109,95,90,91,116,99,101,101,116,105,92,85,101,102,107,95,100,65,105,102,118,106,102,97,107,101,92,94,102,101,99,107,112,94,88,105,110,116,98,97,98,96,98,89,106,97,112,87,102,104,99,105,74,98,100,111,96,95,109,87,110,107,101,106,102,90,95,102,99,94,97,98,79,102,102,108,95,90,103,101,110,100,113,98,98,104,97,107,108,100,104,94,104,106,99,98,105,99,110,93,87,101,103,109,101,84,113,90,102,98,101,119,110,96,99,83,102,83,99,99,97,95,96,106,94,99,98,98,99,101,102,91,98,103,106,105,108,100,100,107,95,101,92,93,105,92,105,104,107,88,96,111,98,89,94,97,109,98,112,104,110,87,100,94,113,99,109,107,96,113,101,91,102,104,106,113,100,94,88,117,96,111,81,98,102,108,94,88,105,104,99,101,119,111,94,102,97,108,106,98,88,106,91,100,99,107,99,103,94,109,103,104,101,109,102,103,108,109,100,120,105,98,100,108,95,98,102,97,91,100,97,95,95,92,96,108,98,94,93,95,110,97,108,97,100,125,88,91,103,102,81,91,131,103,106,100,96,105,99,95,101,91,103,111,97,114,103,111,103,100,104,101,109,101,99,99,88,105,113,102,104,102,109,95,96,101,94,93,108,105,113,112,105,100,112,94,108,95,96,105,110,101,107,67,96,90,96,106,110,92,108,102,109,106,103,99,104,116,99,99,100,89,101,106,79,100,101,103,111,112,93,113,89,96,102,95,101,99,100,96,107,107,90,67,94,113,105,110,82,110,112,104,128,106,88,98,89,107,107,101,106,97,118,105,95,90,96,107,95,106,103,91,103,98,98,88,99,108,89,92,93,92,107,94,93,97,88,82,116,102,94,108,97,94,104,103,101,92,104,101,97,117,92,114,97,102,100,68,94,106,117,102,111,98,98,103,95,95,106,102,99,99,113,101,99,98,100,101,93,90,117,99,119,82,97,118,106,98,87,87,100,103,99,101,99,105,103,109,96,92,99,101,98,86,102,99,94,98,92,96,100,101,95,98,104,98,104,90,93,98,89,115,74,106,92,90,93,102,104,104,88,95,94,106,102,106,101,103,97,96,94,104,104,97,97,105,103,95,110,102,100,104,88,89,115,104,111,115,101,103,103,97,89,93,107,97,97,94,95,100,91,101,107,97,90,92,104,87,101,97,107,96,98,103,93,101,106,83,107,104,103,98,78,98,91,102,93,102,102,93,87,97,105,99,96,94,105,100,94,102,94,99,102,108,81,90,91,95,106,94,99,100,100,92,102,98,126,97,101,102,97,106,87,104,100,106,110,88,89,97,103,103,107,99,89,89,97,101,103,108,101,102,104,109,91,103,101,99,103,90,83,108,102,99,96,95,100,96,102,92,112,104,105,106,93,110,109,110,91,102,94,100,93,95,110,105,106,102,99,99,93,115,101,99,110,86,91,104,103,91,95,90,107,93,105,93,119,109,98,92,110,85,96,107,103,102,110,99,90,120, +418.30267,102,99,96,88,92,106,100,90,98,104,98,105,100,106,104,98,98,108,95,106,109,95,102,106,110,106,100,96,106,105,99,111,101,99,116,98,110,105,105,104,111,104,92,105,92,106,83,116,101,110,109,99,82,99,87,98,99,104,101,100,101,84,100,103,102,108,92,105,112,105,103,99,106,96,101,103,97,108,101,96,98,106,98,101,107,96,100,93,98,94,78,89,101,100,92,108,91,107,101,94,107,115,110,92,95,100,105,86,96,121,100,99,112,100,102,98,105,101,100,96,107,106,106,96,93,99,103,98,103,102,102,101,90,92,100,106,106,98,102,106,101,114,96,96,105,101,95,100,93,96,101,98,98,90,86,95,103,106,100,117,107,94,106,112,105,99,106,89,88,114,103,101,92,93,105,110,115,99,122,101,98,117,117,111,100,100,96,103,98,99,91,102,97,101,99,112,87,100,99,101,100,101,109,112,91,94,98,107,100,105,94,104,107,106,101,66,106,90,95,102,112,95,91,98,98,101,90,107,97,107,105,108,108,102,96,107,104,100,123,96,102,96,98,95,96,91,95,98,106,104,96,103,83,90,110,103,102,120,111,104,94,106,105,95,69,109,109,106,99,85,94,114,100,96,110,105,104,102,104,103,91,106,103,99,104,97,106,110,106,102,98,91,105,102,93,109,106,101,106,97,94,105,100,101,96,120,101,105,96,105,97,105,85,102,104,92,89,100,90,98,121,105,101,105,94,109,95,100,111,106,102,96,110,102,99,108,92,107,104,102,90,109,109,101,99,103,97,101,112,109,100,110,92,111,95,116,96,108,98,106,108,109,112,91,101,91,103,108,103,88,99,103,105,100,90,105,104,91,101,108,107,95,107,107,104,95,110,95,89,87,101,108,95,103,103,102,90,105,105,107,99,110,96,109,104,80,102,103,116,98,92,100,113,115,106,98,99,103,113,101,107,94,104,111,98,103,107,106,103,101,105,103,108,92,101,102,90,117,101,95,100,104,105,109,106,96,100,97,107,121,101,102,95,99,112,91,101,99,101,122,110,110,100,105,105,113,110,87,100,103,101,104,104,106,94,117,94,111,101,93,110,103,113,113,98,95,104,96,98,94,108,108,102,104,118,102,97,88,98,99,104,102,95,106,99,104,96,97,116,96,110,110,98,101,103,91,69,102,106,94,110,110,109,95,104,98,77,106,91,93,105,102,99,104,110,108,99,106,108,102,106,104,104,103,110,107,109,108,110,109,90,104,103,108,103,98,109,87,96,96,91,99,90,102,68,98,94,99,101,104,89,109,93,83,97,95,96,104,107,98,98,78,99,91,79,100,102,106,78,99,108,99,97,106,100,103,91,106,105,89,98,102,112,108,100,110,96,104,116,95,105,101,103,100,96,101,91,111,117,113,109,99,101,111,105,96,100,99,106,109,102,103,107,99,93,98,99,89,94,95,109,107,99,109,98,86,99,98,101,104,97,109,95,109,101,107,116,97,101,97,98,102,108,102,107,103,97,102,102,109,108,100,100,108,119,101,104,94,96,105,100,91,97,93,102,103,94,91,103,95,103,105,103,99,106,97,111,107,95,104,105,91,96,102,102,91,97,94,98,91,101,122,102,86,79,105,100,108,97,98,108,105,97,89,103,91,105,101,98,117,108,107,99,104,101,97,105,101,109,111,101,99,101,98,105,89,110,110,104,105,105,99,103,94,90,109,98,100,97,105,109,91,94,122,96,99,85,91,96,105,84,104,95,116,109,99,97,86,101,94,101,99,101,95,90,99,105,96,102,109,78,107,104,104,100,85,93,102,101,99,99,90,91,107,106,100,110,101,95,106,117,92,100,105,112,96,105,108,104,92,107,114,109,101,102,101,108,107,98,107,95,105,114,108,94,104,112,96,104,99,114,113,97,106,105,103,103,91,92,94,92,99,92,103,101,101,108,100,97,100,105,97,105,104,97,105,91,94,101,113,93,103,96,114,104,91,96,103,90,97,117,98,95,82,91,99,94,105,104,100,105,113,111,107,107,109,101,92,105,99,100,105,92,87,102,95,99,100,102,95,101,103,123,108,104,106,105,94,104,106,102,100,77,103,101,91,99,90,102,92,93,104,100,101,93,83,103,106,108,104,102,113,110,99,106,94,93,99,111,102,100,93,103,102,104,102,104,106,90,100,107,102,95,108,94,107,101,100,108,105,107,110,109,105,106,91,95,90,99,95,94,98,101,114,101,93,106,100,104,101,98,110,86,96,92,103,100,104,94,97,113,111,95,101,107,101,99,104,96,103,104,111,109,111,102,98,99,97,96,104,103,103,103,102,95,101,104,113,104,92,102,103,110,98,108,86,112,113,116,99,105,99,96,95,103,103,92,99,89,91,103,109,116,92,93,109,99,102,100,108,99,102,102,96,102,94,96,99,91,108,99,103,96,113,100,102,106,105,102,100,106,99,100,95,105,107,103,89,86,105,100,104,95,102,94,102,105,92,100,109,95,103,109,102,98,98,105,103,103,95,99,102,95,95,113,93,104,104,104,108,115,97,103,99,104,120,106,108,110,102,101,122,90,94,94,101,104,108,104,94,109,98,97,114,109,95,101,103,107,105,110,104,100,79,107,113,115,98,89,99,114,91,97,96,105,107,103,100,112,113,99,104,119,102,105,93,112,102,113,101,110,93,98,98,95,99,130,97,101,110,104,108,107,97,92,106,97,99,113,100,104,77,106,99,112,97,117,106,98,109,100,93,102,107,104,100,95,91,106,94,105,113,98,91,121,105,90,99,107,109,79,95,108,96,108,92,96,109,112,101,108,97,113,105,96,100,106,107,107,108,99,100,89,95,106,102,99,100,93,106,110,102,105,100,102,103,101,97,106,95,109,109,99,102,96,108,95,106,117,105,105,107,97,102,111,100,106,102,109,105,93,87,97,109,113,103,105,105,102,107,99,83,97,109,78,89,112,108,106,103,101,107,98,112,108,121,95,100,100,94,106,98,100,89,109,111,107,100,96,105,111,98,102,110,95,112,104,116,109,120,94,101,105,97,99,94,111,96,111,101,103,95,95,101,102,108,100,138,93,105,99,106,105,103,109,91,99,101,98,100,86,98,97,103,100,106,97,97,95,100,95,100,102,117,113,108,106,128,101,103,100,100,105,100,97,90,109,100,108,103,100,103,103,102,91,101,96,106,96,101,108,94,109,95,100,96,87,102,104,108,103,105,92,88,98,108,100,110,101,101,98,104,109,107,104,96,90,95,104,96,109,102,96,105,111,98,101,95,126,98,96,98,96,117,92,99,102,100,96,106,105,101,106,114,108,94,102,76,106,105,98,117,99,96,105,95,108,113,111,114,102,101,108,110,98,110,111,95,108,102,109,97,74,100,106,105,95,106,105,101,99,94,102,103,111,96,111,110,108,114,124,105,106,87,99,102,98,99,94,104,95,112,99,94,109,108,106,97,113,101,108,97,102,99,116,105,108,102,95,106,111,102,91,105,100,96,101,100,98,116,100,100,97,102,94,105,100,97,92,98,104,104,108,104,98,99,101,104,104,114,113,103,100,106,104,99,130,94,95,85,99,100,91,103,107,95,106,109,109,106,105,103,104,112,99,89,120,108,78,95,101,97,105,107,104,93,110,102,113,103,108,98,82,105,102,69,102,91,107,102,109,97,108,93,93,80,109,102,100,83,106,93,91,94,95,95,100,95,80,97,109,99,98,103,94,98,95,97,104,106,104,84,91,94,100,112,104,98,101,107,97,108,93,106,109,93,100,107,96,112,96,104,98,97,93,101,101,89,87,94,99,81,97,116,106,91,95,98,85,105,89,108,100,101,96,98,100,103,111,95,109,89,107,101,95,105,98,103,109,105,116,102,104,105,122,96,96,106,103,94,100,103,105,102,109,105,93,106,90,98,111,102,89,103,104,109,104,109,110,104,99,105,98,95,114,132,95,108,107,69,104,81,104,104,108,112,115,106,96,102,103,102,95,104,113,102,102,106,102,104,108,109,89,108,102,106,99,93,102,108,109,107,95,98,104,102,91,105,85,108,103,98,110,100,111,103,103,103,90,107,91,102,113,97,110,101,87,85,100,109,86,98,93,103,105,105,112,99,106,100,105,108,95,94,102,118,105,82,106,96,106,100,98,92,110,104,93,100,97,95,102,99,106,104,101,90,96,106,99,93,102,98,108,110,107,97,110,113,98,107,105,91,105,102,104,112,104,116,107,104,99,102,95,89,80,96,106,89,102,108,93,101,103,98,96,103,99,116,89,83,103,109,117,98,98,99,87,105,102,105,89,106,86,102,101,89,105,101,105,104,103,88,103,96,90,103,125,98,110,108,100,98,105,94,104,104,110,113,105,111,98,126,103,115,103,102,103,98,117,106,99,110,108,105,93,108,87,103,100,112,106,93,98,98,91,102,101,94,111,110,103,109,101,111,94,99,105,103,91,101,103,73,104,106,104,92,99,105,95,94,98,106,106,82,102,101,99,106,108,98,105,98,106,98,89,97,105,103,104,100,111,97,101,82,98,108,95,103,95,98,98,101,99,102,102,105,101,94,100,91,95,95,105,96,103,104,100,106,103,98,118,100,97,92,103,113,98,101,101,98,108,101,104,94,109,90,108,98,108,100,92,99,98,102,104,114,107,98,113,100,94,93,115,97,103,84,99,110,95,91,109,95,98,102,97,95,98,96,116,102,109,102,97,103,103,65,112,101,110,109,106,94,98,121,100,103,98,95,106,102,103,87,110,99,91,108,97,104,92,92,97,70,107,89,105,77,106,102,103,99,105,98,96,94,99,105,101,103,105,109,95,97,91,111,83,108,83,127,100,104,104,98,89,101,107,111,109,94,92,98,100,106,103,98,99,99,99,103,104,101, +418.4429,95,106,99,99,105,102,108,97,99,92,107,104,93,100,98,109,113,96,102,99,112,101,80,99,98,79,100,102,94,107,92,91,91,98,111,97,107,89,102,100,102,97,97,110,111,99,91,113,100,103,99,100,97,100,97,109,112,105,110,104,97,97,118,100,114,100,100,111,93,107,90,99,94,90,94,106,100,75,111,100,97,106,101,90,103,109,86,101,98,93,103,111,102,107,97,96,110,97,95,96,98,100,98,90,107,98,105,99,104,92,114,90,113,90,83,94,89,105,103,104,111,76,105,101,93,105,100,100,113,104,92,120,98,113,102,96,91,100,102,103,89,110,101,103,103,106,108,100,84,105,95,108,124,102,101,113,101,109,106,98,87,103,104,102,113,105,101,104,118,97,96,110,98,95,108,107,111,105,99,102,100,103,99,101,114,98,94,89,107,98,93,91,92,103,91,99,99,91,101,95,101,108,84,123,92,108,106,95,106,103,118,87,109,108,100,112,97,100,94,96,97,86,105,97,102,117,109,95,105,107,105,99,108,98,103,111,107,114,95,104,100,103,106,102,94,105,85,107,108,98,82,109,87,104,118,87,95,107,96,102,96,107,100,103,107,109,104,103,102,89,114,95,97,100,99,108,100,103,108,99,103,106,102,92,103,91,90,104,105,117,97,110,105,107,103,101,103,85,95,98,111,100,108,113,102,102,108,105,96,89,104,103,110,114,109,93,98,91,106,99,96,99,103,109,105,103,102,105,104,115,99,114,100,120,94,99,92,108,109,107,100,94,99,88,104,116,107,113,105,95,104,103,110,99,90,112,103,108,104,105,102,112,105,100,100,102,107,106,87,98,108,99,107,107,107,95,108,107,104,94,108,119,99,105,102,103,100,97,106,95,94,106,94,100,104,104,84,102,93,105,95,103,104,99,100,99,103,102,105,102,102,104,106,112,110,98,95,108,99,97,102,97,100,99,101,92,101,100,107,105,102,120,97,100,99,94,96,100,96,96,109,119,104,102,96,108,96,93,90,113,102,111,108,113,110,109,92,100,100,115,98,104,108,99,107,105,103,95,93,99,103,110,99,102,93,99,98,123,112,100,108,107,108,105,102,105,113,99,108,74,101,106,108,108,96,102,98,117,108,105,107,97,111,107,108,101,100,113,102,100,108,96,92,100,106,94,95,99,110,108,110,99,105,98,103,103,101,114,111,92,109,108,107,95,95,92,105,98,102,102,103,104,101,75,110,100,110,114,102,106,97,112,105,98,119,109,99,87,113,95,100,95,94,104,105,109,104,96,105,87,93,107,102,95,110,105,106,110,106,93,104,114,98,109,80,102,105,100,110,96,108,110,89,98,113,133,90,94,109,95,98,102,110,103,96,97,105,101,104,106,106,94,92,109,108,106,103,96,110,111,106,103,91,86,110,102,106,97,101,101,104,105,93,114,92,102,96,98,93,103,109,100,102,99,97,101,100,94,107,105,83,106,101,109,103,99,107,109,106,93,114,103,98,101,97,112,92,84,109,104,108,99,125,111,100,108,108,91,99,100,86,110,95,105,95,96,109,97,97,97,113,122,100,107,113,96,106,108,106,88,94,87,98,102,89,105,102,98,88,98,117,101,105,82,100,102,107,102,74,108,117,99,104,108,95,102,105,100,102,115,117,113,102,105,85,99,98,108,100,106,113,111,96,107,103,106,92,89,105,111,106,103,96,102,100,112,105,95,98,100,99,108,93,101,95,100,106,111,102,95,110,110,117,105,103,94,103,105,79,94,104,106,85,107,98,106,101,100,91,107,112,125,106,110,86,104,104,102,104,115,97,104,98,97,111,80,100,100,112,99,107,91,100,99,110,97,113,108,101,109,103,105,117,100,101,93,92,105,105,101,102,100,103,93,105,101,106,95,100,106,109,97,104,110,108,96,93,86,102,99,107,97,101,112,97,99,87,106,108,106,113,98,99,111,90,103,98,107,104,110,94,111,105,86,91,101,110,91,101,101,93,97,97,104,92,106,103,110,97,103,111,112,99,100,104,99,98,104,87,106,104,112,96,95,77,96,96,105,93,111,103,116,99,104,109,103,114,110,109,85,94,113,105,120,103,96,97,101,108,116,101,109,102,97,103,86,108,95,95,104,104,101,94,98,104,98,112,94,97,105,109,104,113,102,101,98,102,106,97,103,109,105,104,93,117,93,96,91,100,108,94,101,113,108,85,104,96,92,106,94,80,118,109,105,91,102,95,96,97,105,105,99,94,91,101,104,102,101,97,86,110,105,95,99,101,105,102,98,97,111,111,114,101,90,108,100,104,124,95,103,101,106,109,87,94,105,99,99,101,109,99,99,109,92,96,96,99,100,104,96,113,107,95,104,112,108,87,100,78,102,105,104,92,100,106,115,99,101,100,97,86,96,99,102,101,105,94,93,104,96,103,109,106,101,115,104,98,84,96,99,107,104,95,108,126,96,104,105,113,98,100,105,107,133,105,103,102,101,108,108,95,101,106,88,100,102,110,93,94,102,95,98,108,102,95,80,102,96,93,114,104,99,88,93,91,112,97,98,120,92,107,113,97,83,96,104,105,116,91,97,98,88,98,106,94,94,112,101,114,98,101,97,119,106,101,102,95,91,97,105,112,97,86,95,100,109,87,98,121,100,96,97,97,108,81,94,95,90,99,108,104,114,94,107,99,113,103,114,106,102,96,110,117,117,106,99,84,98,96,116,90,103,107,105,102,108,98,100,94,108,92,105,101,108,102,90,99,102,93,135,109,93,110,100,99,108,101,94,104,100,102,98,84,113,101,103,116,105,112,110,91,96,106,102,82,92,99,106,109,98,105,101,107,95,125,92,105,99,108,67,99,101,103,115,112,106,104,96,96,108,96,85,98,113,100,89,114,107,119,117,110,117,106,100,105,109,94,93,95,103,82,112,91,96,93,92,102,95,102,102,106,92,91,103,102,98,108,121,104,96,103,110,93,100,121,109,94,117,107,101,104,96,105,114,100,103,111,102,96,95,100,105,93,108,113,104,99,87,101,108,96,111,103,98,104,109,98,101,113,117,109,106,82,96,106,101,111,103,105,99,105,117,103,99,115,101,116,101,101,102,87,108,102,105,109,109,100,100,107,95,105,93,96,102,105,83,104,72,88,111,97,93,98,98,109,109,92,97,101,105,106,99,105,87,90,95,104,99,105,93,103,104,98,93,105,90,99,109,98,110,103,104,92,102,95,94,101,98,113,91,110,102,95,101,112,93,103,115,104,98,97,103,98,92,103,89,101,106,96,102,102,106,95,112,96,97,107,105,97,93,108,109,113,99,90,104,93,88,104,100,112,109,101,95,102,103,87,113,114,97,100,102,115,103,95,99,109,115,104,106,109,107,83,103,95,99,99,111,88,109,106,99,111,105,100,89,83,101,115,90,110,94,106,100,104,108,109,117,102,104,101,128,102,109,101,97,102,92,105,100,106,113,113,91,102,88,111,108,99,91,113,100,104,105,97,100,108,104,100,100,114,104,101,106,90,112,104,98,103,108,96,97,106,125,106,102,103,100,108,103,110,98,100,117,98,109,95,101,106,90,113,106,95,100,104,102,97,100,103,87,115,92,96,88,95,97,104,106,99,105,89,102,107,94,80,91,88,91,100,107,100,92,101,99,94,108,90,105,73,96,99,100,110,107,94,101,98,97,91,101,95,93,106,92,108,108,101,94,93,87,90,98,91,88,110,88,96,109,87,99,98,73,101,94,94,85,108,101,90,105,93,103,103,105,90,93,105,99,105,100,95,102,86,101,110,99,118,102,101,106,101,93,105,94,87,99,100,103,94,100,90,113,102,98,101,93,99,108,102,89,104,107,92,113,109,97,103,97,95,99,96,106,98,90,100,101,98,91,99,94,88,100,96,90,97,91,97,108,111,99,106,99,100,95,95,109,94,100,97,102,102,102,83,108,98,118,98,89,100,85,93,98,101,101,116,107,104,100,100,98,90,104,96,111,112,93,100,104,102,91,99,121,96,103,90,99,109,100,99,96,102,102,99,97,110,116,84,103,113,96,96,96,100,102,98,101,91,98,92,90,98,91,105,100,93,97,106,104,96,108,103,100,85,103,106,106,112,116,100,104,98,105,92,112,99,95,114,107,95,105,100,98,94,107,91,98,96,98,77,84,107,113,99,83,105,97,95,113,101,96,102,100,97,101,104,104,91,96,99,90,108,103,104,90,87,101,92,111,103,113,99,101,101,94,96,100,94,100,107,99,108,94,108,98,105,88,99,90,99,109,95,113,108,104,103,105,106,100,87,106,101,103,113,116,99,97,110,100,98,106,89,92,101,92,107,98,91,107,101,93,98,96,113,103,108,91,98,101,87,99,95,108,96,81,96,93,119,101,98,86,96,88,91,94,97,112,83,95,94,98,103,96,81,93,98,91,91,90,102,102,95,94,91,92,93,97,107,105,102,103,81,107,102,98,103,94,93,88,89,89,98,98,99,92,103,113,100,111,98,83,98,84,90,100,109,106,101,94,96,101,112,104,102,103,97,108,108,109,107,103,100,112,120,101,94,85,95,117,101,96,101,97,113,100,104,96,102,94,101,83,96,94,104,102,84,105,107,109,113,88,103,99,92,87,106,98,89,101,110,76,105,88,98,99,87,118,103,100,105,89,111,90,94,112,106,109,108,100,119,91,96,99,111,102,106,91,104,97,92,101,99,109,101,96,102,98,104,122,98,91,100,111,95,98,95,78,101,108,81,108,106,88,87,93,102,106,109,82,103,106,102,95,101,99,89,113,93,115,96,118,110,102,99,93,95,97,88,110,100,100,103,94,97,111,91,112,87,79,97,64,92,98,94,95,109,98,98,113,91,101,103,99,98,85,97,98,111,96,94,83, +418.58313,126,90,98,97,94,102,100,91,102,109,105,91,94,100,102,98,94,69,103,109,106,89,109,103,99,100,86,98,92,94,101,98,99,97,93,94,112,99,91,95,85,91,107,100,101,101,95,97,95,99,96,101,113,104,98,105,100,97,100,102,100,112,110,109,90,101,91,109,84,108,98,97,97,106,102,100,92,95,95,102,103,96,92,101,109,91,90,88,87,98,100,108,102,105,95,105,105,104,97,125,100,99,99,97,104,101,94,95,99,101,86,110,95,97,95,93,90,95,101,96,93,91,94,99,111,85,96,94,92,99,100,97,101,107,112,94,77,110,97,115,93,95,91,83,99,98,104,96,96,94,88,89,96,90,100,107,108,95,99,94,96,104,101,104,99,101,101,111,96,89,100,102,90,103,93,102,105,98,102,103,94,98,82,97,107,103,95,106,96,97,94,104,97,118,98,102,101,94,108,95,100,102,103,107,97,104,110,97,91,99,108,103,106,105,89,94,108,102,103,98,108,105,67,119,103,109,96,103,102,94,96,103,116,103,100,99,110,103,98,96,86,93,106,118,97,92,106,105,89,106,97,109,101,96,97,100,102,91,97,108,105,92,99,108,91,87,99,115,103,90,102,103,114,92,102,108,101,101,106,112,95,113,107,103,104,99,95,99,106,100,102,98,90,89,102,97,95,105,95,105,93,94,99,103,86,92,99,81,89,107,91,98,97,109,94,103,105,93,102,96,112,92,104,95,104,111,97,91,119,108,99,92,98,92,95,105,101,84,93,101,99,95,100,96,96,102,105,99,116,110,102,98,104,107,101,105,90,104,90,96,104,95,100,98,98,91,105,97,91,98,99,103,103,108,100,100,102,108,110,102,97,99,107,98,96,102,92,87,97,98,109,99,98,99,106,101,99,95,107,105,117,100,101,94,101,101,97,103,95,106,101,97,102,92,99,97,95,90,107,93,96,75,86,98,101,100,94,94,105,104,92,80,93,108,101,104,97,103,92,107,101,91,93,99,91,104,75,103,116,92,99,113,112,111,84,96,100,110,98,99,95,99,96,100,112,103,101,70,99,102,109,112,112,106,96,81,95,103,99,104,94,115,102,85,95,104,105,103,105,87,101,99,110,110,94,109,87,94,93,112,118,97,99,101,94,97,100,90,118,95,96,110,101,99,90,104,109,91,101,96,109,95,103,92,92,116,109,98,106,106,93,109,97,104,102,99,95,103,103,107,104,121,99,90,109,94,84,95,109,100,110,98,99,104,100,91,105,112,95,105,102,97,102,111,99,101,106,91,100,99,82,96,103,98,104,107,88,100,110,114,107,99,109,102,102,93,97,113,90,99,114,106,94,95,109,97,95,102,102,90,95,102,111,90,92,102,105,104,97,110,107,113,106,97,129,96,98,99,105,100,109,98,117,94,111,104,103,108,107,96,104,103,102,106,87,108,103,101,100,117,108,106,104,93,122,90,103,90,116,102,104,103,119,102,114,105,94,102,104,107,106,99,109,102,84,103,122,92,84,105,117,105,97,99,98,95,101,93,109,95,101,98,93,99,103,113,93,92,98,94,102,86,81,107,101,99,98,103,92,98,105,96,98,112,106,99,99,119,100,100,100,106,91,100,106,105,97,100,104,103,99,100,111,115,110,95,117,102,105,115,104,99,109,83,101,100,106,94,110,103,120,94,110,107,108,101,95,75,103,100,94,92,95,103,104,109,98,100,107,98,102,100,101,98,94,114,86,104,109,75,115,100,94,101,102,110,105,102,95,95,101,98,104,94,109,99,114,96,106,114,106,107,107,107,100,116,103,97,97,104,100,94,91,104,104,83,94,102,102,104,97,93,107,116,87,120,111,123,106,91,102,103,98,95,106,113,104,104,103,82,104,102,115,102,94,91,106,96,114,87,95,106,103,103,108,95,84,102,99,100,105,110,103,106,90,106,93,99,97,93,101,105,94,97,99,93,114,90,109,108,106,110,95,95,98,100,100,90,97,104,103,114,95,118,114,108,100,130,104,101,111,95,102,114,109,91,113,103,97,102,100,84,110,85,111,116,96,101,100,99,103,100,99,104,94,99,99,103,101,96,95,112,113,95,91,92,104,105,103,107,99,110,100,93,96,95,104,102,107,94,96,115,102,100,86,107,123,104,102,95,91,99,101,100,105,94,110,91,98,108,122,95,103,97,99,91,116,107,92,93,91,107,112,106,100,95,117,100,100,103,101,90,101,98,112,95,97,97,94,101,100,88,99,104,101,95,92,108,114,112,98,101,95,100,113,100,112,98,94,106,104,101,77,108,97,103,99,74,97,101,99,106,99,96,113,106,93,99,86,100,83,104,103,94,102,97,98,107,101,100,106,104,94,99,93,102,108,95,113,101,96,103,94,97,90,102,96,103,106,102,100,88,80,112,89,103,112,102,97,99,93,110,96,97,103,96,101,83,97,103,106,100,96,98,104,101,113,104,118,124,111,104,94,109,96,99,99,100,108,105,87,104,102,86,98,99,93,103,110,109,99,111,100,98,98,102,95,90,98,110,108,103,109,79,100,103,94,113,96,98,109,109,101,107,82,99,88,96,92,100,99,93,103,105,102,84,100,96,91,94,102,108,103,108,94,105,99,93,105,111,106,99,113,76,94,92,103,98,111,104,92,97,102,96,97,95,96,100,102,104,91,91,112,97,97,103,113,95,113,108,96,82,94,91,89,104,102,97,94,110,98,65,84,101,96,92,105,95,100,114,104,116,102,97,105,107,112,108,72,106,98,109,102,98,102,108,90,90,100,96,103,93,101,104,109,105,106,93,112,100,95,104,117,98,96,86,104,107,86,108,97,99,125,115,92,101,94,96,94,102,100,89,102,117,102,110,86,96,101,98,102,99,100,103,101,100,85,112,102,110,113,104,97,99,98,99,68,112,101,108,85,93,92,100,97,109,103,94,95,110,93,100,88,98,94,74,107,109,96,116,118,102,110,96,102,89,104,121,111,100,113,112,94,106,129,103,109,101,102,88,100,103,89,109,121,102,103,101,101,83,97,91,91,102,108,104,101,86,102,110,125,102,102,101,103,102,88,108,99,97,99,107,111,93,106,103,96,106,100,95,96,106,97,98,109,94,92,95,103,98,108,83,105,101,105,95,95,107,108,103,88,106,101,110,99,109,103,98,96,112,95,99,100,96,101,109,106,100,98,97,102,81,95,91,97,91,110,113,97,97,90,106,92,108,98,109,104,109,105,100,93,104,106,111,94,94,100,104,93,93,92,92,106,84,99,98,107,100,105,95,103,111,114,89,102,103,109,107,104,92,103,99,98,95,104,99,107,105,107,98,100,98,102,84,80,77,98,117,113,107,87,96,95,110,98,106,102,74,100,107,99,102,101,106,98,101,100,106,107,99,92,104,122,104,101,98,103,106,80,81,99,101,102,99,101,97,101,102,99,101,88,111,89,96,98,100,102,110,104,99,109,107,98,100,86,100,106,102,103,95,113,109,98,98,106,100,100,100,83,95,91,99,110,96,98,101,100,115,99,108,106,102,93,105,112,103,103,94,100,104,101,100,98,94,106,115,100,102,109,79,97,104,100,106,111,92,93,97,114,92,97,96,98,101,100,103,97,101,99,101,94,103,101,106,104,99,91,93,107,97,98,111,100,100,108,99,97,104,95,92,95,115,102,100,93,97,101,112,100,102,109,98,96,104,102,100,95,107,98,110,101,97,81,95,105,100,106,106,102,95,103,88,120,99,79,101,108,114,91,95,98,95,99,106,106,104,98,84,109,90,110,100,102,98,101,85,90,103,108,100,114,107,92,97,100,114,110,110,71,108,88,103,93,99,99,105,93,98,106,87,105,96,100,97,101,100,118,104,96,97,95,100,99,85,90,107,100,99,98,101,98,102,95,92,104,110,98,100,117,96,96,100,110,96,106,100,76,102,94,103,95,87,92,111,110,109,90,94,98,117,91,102,123,124,93,103,105,99,96,91,107,109,108,94,98,100,92,105,95,115,100,104,87,103,97,97,104,97,103,110,107,107,98,84,104,111,107,91,106,99,108,96,97,98,97,100,106,98,105,98,99,111,86,94,98,107,89,98,120,103,109,99,100,105,99,110,120,94,98,103,94,94,90,95,98,103,99,105,103,108,103,98,80,100,98,99,96,90,104,98,102,97,109,113,96,104,104,91,102,70,99,104,105,103,102,107,95,104,91,93,111,100,97,96,100,93,108,95,104,92,102,99,99,108,103,83,104,106,102,97,106,96,100,96,105,102,99,91,104,102,100,96,116,108,95,100,94,96,105,110,106,112,100,108,110,100,92,103,105,112,89,88,100,94,90,90,93,106,92,92,102,109,95,96,99,88,95,105,95,87,101,113,95,134,95,100,102,95,105,97,92,91,93,101,89,120,89,99,90,98,106,100,99,96,92,94,62,99,97,102,95,107,98,94,110,97,103,107,109,101,106,94,94,100,95,91,100,106,102,96,99,100,92,100,97,99,98,97,97,89,100,98,108,102,108,104,99,108,93,93,99,84,100,92,104,95,95,102,97,110,100,91,97,103,100,102,102,100,84,106,102,88,102,119,92,95,111,96,106,103,98,96,91,109,97,64,93,112,101,93,103,95,102,99,104,110,101,102,100,99,104,97,95,106,98,110,93,86,110,107,92,100,104,102,96,106,107,113,98,91,100,108,112,103,102,102,105,102,104,101,86,103,95,102,101,95,108,88,107,109,99,92,92,103,90,93,106,111,98,104,110,103,117,129,91,101,92,102,101,108,92,104,107,102,103,117,94,102,100,90,111,107,101,105,107,92,94,90,103,105,104,103,90,97,103,97,97,93,104,101,110,102,90,106,103,97,92,107,94,101,98,98,101,116,106,98,97,109,91,74, +418.72336,100,99,89,106,86,113,98,105,120,108,99,98,106,100,104,108,99,111,104,98,100,109,103,91,100,90,108,85,103,103,104,96,99,96,104,106,104,84,91,99,104,118,83,101,118,114,104,98,96,97,106,96,97,100,98,108,77,93,113,86,88,100,101,95,99,98,99,99,97,99,102,98,91,94,86,98,106,113,103,104,101,107,103,90,102,92,108,99,101,87,103,105,91,94,104,102,92,99,116,105,99,103,90,87,101,100,99,110,101,104,94,98,92,102,108,104,105,113,109,87,103,102,100,110,98,112,109,101,102,111,105,102,94,109,96,108,97,104,100,98,103,115,106,97,103,96,102,119,107,92,96,97,107,100,113,86,84,105,112,114,91,81,108,103,98,100,108,84,99,104,93,105,100,94,100,96,103,94,98,106,98,98,105,98,107,103,95,95,103,104,99,95,96,103,107,101,102,109,105,117,97,106,106,113,92,99,104,102,110,102,104,106,105,102,97,107,96,108,90,94,105,99,94,94,92,104,96,101,109,102,94,106,100,86,97,95,93,106,79,84,103,89,105,100,101,87,96,107,92,95,117,102,109,111,112,95,101,101,92,77,101,108,102,100,92,99,83,117,110,99,70,106,105,117,102,83,100,111,96,100,100,112,72,113,110,103,98,105,104,103,108,104,108,112,94,106,98,95,106,109,100,98,104,107,97,104,97,101,95,99,95,105,116,109,98,106,99,94,71,101,91,114,108,92,103,93,100,98,113,102,103,79,108,107,106,110,104,91,107,100,101,106,109,103,106,104,93,95,99,100,99,98,95,106,93,105,94,107,111,96,113,109,102,101,103,128,100,104,90,95,117,97,104,99,97,94,103,105,111,113,103,99,100,97,109,105,101,101,107,105,101,113,102,113,92,98,96,102,92,108,89,108,96,100,105,95,94,117,88,93,99,97,95,108,106,103,100,91,109,98,93,111,98,108,98,109,90,100,114,106,92,93,101,101,97,103,99,90,99,98,109,101,107,96,103,95,98,87,77,109,99,96,99,112,108,97,104,101,103,101,101,117,109,117,100,103,113,100,104,104,95,104,99,97,101,96,102,104,98,123,108,97,99,105,104,105,100,105,101,104,102,115,105,104,105,92,100,113,102,82,107,103,97,99,103,101,104,100,98,99,109,111,104,110,99,106,92,104,96,94,104,102,84,101,101,102,115,101,103,115,109,103,106,97,97,101,99,91,115,111,101,96,106,95,104,96,95,107,101,107,103,106,103,96,89,99,108,92,68,96,104,109,103,93,97,108,106,102,100,110,108,90,97,107,103,110,108,100,102,98,116,100,101,97,109,108,104,111,113,99,109,108,101,108,110,101,92,108,109,98,110,110,109,107,103,98,105,103,62,115,93,97,98,87,106,99,99,102,108,101,100,99,95,106,109,98,91,103,113,90,105,93,99,114,91,103,99,106,93,100,94,104,99,108,84,112,103,94,103,104,104,105,98,95,107,107,106,109,113,96,101,94,108,101,90,100,107,97,100,102,104,99,111,105,104,108,96,91,102,97,104,110,102,95,110,101,101,102,96,91,95,110,99,101,90,111,99,105,103,94,92,95,99,104,102,118,107,97,102,107,99,100,110,102,92,102,106,98,102,101,103,95,101,112,96,102,109,97,104,100,106,114,91,96,113,100,100,102,113,106,103,82,87,110,105,104,91,99,90,111,75,101,98,94,106,102,82,95,93,94,90,91,107,104,87,99,90,105,100,90,102,96,95,104,95,103,106,88,105,110,93,107,109,68,100,103,87,98,102,102,104,101,87,119,96,98,102,86,97,98,98,104,94,101,99,105,103,93,112,98,106,102,106,93,105,97,110,96,98,102,72,103,107,103,97,124,88,100,105,108,106,100,101,105,98,94,101,99,94,100,90,106,95,101,100,94,98,100,99,91,114,97,101,98,96,90,99,102,99,104,98,62,103,103,101,98,92,105,105,105,108,111,100,103,101,101,108,97,94,94,105,104,106,105,106,103,90,100,85,108,99,105,96,99,102,95,108,107,99,96,104,107,75,101,103,96,101,101,94,113,100,102,95,103,118,97,106,87,94,103,100,95,105,99,101,94,92,100,104,101,97,120,104,102,95,81,92,84,107,102,97,105,101,104,94,92,91,105,105,101,98,100,113,100,98,104,110,99,87,99,105,101,99,107,121,101,102,101,96,104,88,102,139,93,92,95,104,91,101,99,105,101,104,105,107,101,96,100,106,101,99,104,89,113,99,100,97,101,96,104,105,94,102,103,98,100,97,100,101,108,96,112,109,97,109,100,114,92,101,106,103,98,103,86,101,108,96,103,105,82,101,110,103,108,104,110,96,113,104,91,108,94,97,105,100,103,88,101,100,89,99,112,111,109,96,105,89,95,106,106,97,108,104,111,100,102,103,110,107,98,89,116,109,90,106,104,108,99,118,88,105,96,87,111,100,98,95,113,115,100,88,106,107,96,105,90,113,95,101,87,98,94,105,104,103,103,86,92,96,107,111,106,118,112,95,102,100,98,117,110,115,103,99,89,105,101,98,108,103,108,105,102,104,97,108,102,96,91,105,91,96,95,106,108,92,99,107,101,109,73,112,105,108,109,101,102,121,96,101,92,82,95,99,98,96,113,105,100,89,106,102,99,106,103,98,99,101,91,106,97,103,105,81,102,102,102,110,88,92,99,96,90,110,112,117,112,102,94,99,104,102,103,104,105,104,94,105,103,101,116,112,107,100,95,98,100,101,95,117,92,101,104,108,88,92,103,96,107,105,97,98,105,96,110,112,96,104,111,100,104,100,104,111,97,108,76,98,107,105,105,106,113,104,100,103,100,98,98,106,105,107,98,108,100,110,116,82,99,100,100,96,117,101,103,99,97,97,100,106,103,100,98,114,101,98,101,99,98,98,106,94,107,97,99,110,101,99,86,104,104,108,104,101,111,92,93,105,105,102,94,95,103,100,100,109,108,109,110,92,121,105,108,112,106,114,95,113,108,104,100,107,97,105,98,105,106,105,98,98,103,94,114,97,134,97,97,107,104,119,109,93,106,111,110,95,114,103,110,88,92,117,102,92,98,105,97,100,94,103,96,88,71,94,104,100,88,92,109,111,107,101,105,95,104,100,88,109,105,104,104,99,106,103,107,113,103,99,93,106,112,111,113,94,99,93,108,100,90,97,104,94,103,91,88,104,98,94,106,105,105,97,96,101,108,103,94,99,101,93,111,93,97,98,100,110,98,102,104,92,94,102,92,111,106,103,100,97,98,108,95,94,91,117,89,101,100,103,100,107,101,101,112,86,98,104,96,100,87,106,102,105,103,104,95,113,101,96,113,100,88,100,109,86,117,110,100,109,112,99,106,98,97,93,96,109,98,94,99,109,88,99,106,90,102,107,112,98,100,100,97,105,106,121,99,87,102,108,103,111,95,103,101,121,101,85,119,101,103,97,95,106,94,112,93,100,101,109,106,106,100,109,93,99,110,126,89,100,100,117,110,107,102,105,107,95,104,105,105,107,99,116,102,108,108,111,112,101,89,105,109,104,96,106,101,102,103,99,101,106,96,91,98,98,117,106,98,106,98,95,103,92,113,114,94,104,92,99,113,98,102,95,108,109,118,97,99,100,100,109,101,99,94,103,106,104,121,98,106,107,108,101,114,113,98,106,104,110,101,103,100,104,92,105,100,102,109,101,85,105,96,105,95,113,100,96,102,110,106,109,101,109,94,102,92,102,98,88,98,111,107,106,106,111,105,95,99,114,107,106,103,109,95,107,99,99,90,89,101,103,100,115,104,96,99,106,107,81,105,97,102,100,69,97,105,98,117,101,93,91,101,98,102,112,105,108,110,100,98,92,98,101,103,107,91,102,100,96,100,108,91,105,91,100,97,96,102,121,87,104,108,103,99,109,97,108,101,96,102,103,107,96,112,77,107,104,103,103,106,105,97,101,106,101,103,107,97,73,110,97,105,107,109,98,101,103,93,101,90,107,103,113,107,95,101,103,96,105,101,117,101,129,100,90,98,103,107,101,113,113,99,95,106,100,101,103,101,113,95,107,91,105,105,99,104,99,105,98,106,95,109,112,86,95,99,95,114,93,101,102,107,88,94,96,111,100,115,100,106,99,105,123,96,92,90,104,97,102,101,102,109,109,101,108,108,95,88,96,115,100,104,105,110,93,105,100,109,105,65,95,111,99,106,97,103,99,98,104,119,111,103,102,96,99,105,74,78,102,109,94,103,104,93,116,101,102,113,107,94,108,102,111,105,105,112,107,98,98,103,66,111,104,100,100,107,101,101,110,102,102,111,95,111,108,127,106,99,99,90,103,99,97,107,102,111,103,97,99,110,101,104,100,102,111,102,99,93,96,101,106,82,99,91,103,94,108,102,94,96,106,95,107,96,111,93,96,97,97,94,112,84,100,109,100,106,108,98,94,107,79,96,99,90,122,111,98,75,102,100,100,106,100,88,99,104,95,88,108,106,112,101,100,100,97,105,102,95,110,105,96,102,105,101,101,101,102,98,111,110,103,113,96,102,78,97,101,101,110,99,95,107,102,105,115,102,112,93,103,104,93,98,98,113,101,101,99,102,99,117,108,87,89,111,106,106,100,99,102,95,109,96,96,87,106,111,108,100,109,100,104,95,101,92,113,98,102,109,99,97,110,94,98,110,109,96,96,101,104,118,101,95,91,104,105,109,104,94,92,116,98,98,116,100,111,110,91,98,94,118,110,92,86,95,99,101,101,93,112,103,92,112,105,93,84,90,105,98,104,96,85,112,108,96,98,104,106,97,100,109,105,105,113,109,109,113,92,106,91,100,95,102,92,110,75,95,96,91,78,102,102,104,107,102,104,95,101,100,99,96,102,90, +418.86359,97,87,83,105,102,97,99,80,98,93,84,84,98,121,94,102,95,100,119,108,114,103,101,105,101,110,102,101,105,101,111,110,100,97,96,94,95,87,100,117,97,95,93,105,108,104,96,104,107,81,83,100,99,101,106,93,98,99,115,94,95,102,105,107,115,105,89,95,94,94,110,109,89,78,70,109,95,105,101,98,97,99,86,112,96,87,90,110,95,107,106,85,93,84,100,92,109,98,104,104,110,97,103,92,102,105,91,99,92,84,89,90,100,105,88,108,102,80,99,102,104,96,98,88,100,105,114,95,95,104,98,105,97,96,101,97,91,101,97,108,88,109,91,109,96,102,113,98,102,98,95,104,102,94,98,92,98,96,108,102,110,94,109,106,108,120,96,89,106,97,94,93,94,96,96,102,100,94,98,99,102,94,105,105,105,101,105,87,102,88,93,98,95,98,105,99,100,101,98,95,98,105,100,101,101,102,102,93,103,119,95,103,101,109,109,109,91,95,96,90,87,103,100,95,104,101,111,108,95,74,95,91,87,96,98,109,101,113,99,98,91,108,99,102,96,102,98,113,101,93,95,96,99,98,97,106,101,108,96,106,80,105,84,103,95,104,100,100,99,93,98,99,105,86,106,106,101,100,94,103,99,105,109,104,95,112,92,85,102,102,94,90,106,96,106,101,100,108,99,112,101,102,96,105,99,121,105,115,99,100,88,118,96,107,97,116,100,101,99,96,98,99,109,108,110,97,105,91,103,95,88,94,98,110,104,108,92,102,84,85,92,120,98,98,98,98,91,100,114,102,107,94,114,99,115,99,106,106,91,99,106,113,109,107,105,100,100,101,100,113,105,100,103,99,98,103,95,111,99,101,99,105,108,103,82,93,97,97,112,99,103,97,102,108,106,101,100,100,83,105,103,105,97,102,96,92,89,108,108,101,96,96,105,107,107,96,103,107,96,104,90,103,90,102,96,98,94,102,84,99,101,103,96,70,87,134,95,103,94,104,108,105,117,100,101,102,99,105,82,79,97,96,74,105,101,110,97,107,74,112,109,101,110,107,101,97,112,102,104,102,103,102,94,87,102,92,104,103,99,102,98,101,103,97,103,106,113,103,103,99,109,100,111,103,101,113,89,93,96,99,109,107,101,100,99,99,109,113,98,92,102,101,93,103,95,105,113,83,92,89,108,99,108,98,106,103,99,95,93,107,99,95,103,94,110,100,108,97,93,112,106,113,87,107,105,94,94,108,95,107,105,106,103,93,102,104,104,101,104,100,94,99,97,109,105,92,106,99,109,100,90,85,104,103,106,100,101,91,110,103,103,95,103,109,77,97,96,96,107,104,111,110,91,103,108,100,103,110,99,98,100,106,104,93,106,94,103,102,100,77,109,92,102,100,102,82,99,95,104,102,105,95,107,98,108,113,93,94,96,105,109,97,91,106,97,94,92,105,110,100,99,98,102,97,98,94,101,103,102,107,87,84,92,107,101,92,114,113,98,108,107,93,92,99,73,104,93,94,103,108,113,96,99,97,94,96,97,99,96,104,116,98,97,104,99,103,92,97,106,107,103,106,100,100,100,109,95,116,98,102,105,99,69,95,103,100,120,100,98,101,102,78,104,103,102,93,104,89,99,100,112,102,117,103,102,80,93,125,96,111,103,108,104,104,95,105,98,82,109,99,106,102,95,112,102,97,105,100,108,98,110,122,95,99,99,117,94,90,97,90,78,98,108,98,95,105,105,102,109,96,120,95,103,100,106,105,100,91,109,92,112,103,90,105,109,93,101,103,94,109,98,113,109,105,105,109,88,105,92,95,103,98,96,94,106,100,103,97,102,105,112,113,100,95,103,114,115,100,102,109,102,96,109,108,89,101,106,91,89,110,99,94,96,125,94,99,113,102,91,96,115,98,108,104,99,100,105,110,97,98,112,93,101,106,87,110,104,103,99,100,104,104,95,99,101,88,98,103,103,102,110,106,91,113,93,106,105,109,92,97,108,106,95,91,103,98,102,110,102,100,97,105,98,95,104,96,109,101,95,102,107,106,101,99,104,101,94,100,113,100,108,101,112,102,98,97,87,96,101,98,100,106,107,100,120,105,101,117,107,104,97,90,101,113,98,108,105,105,93,86,74,112,103,97,86,104,96,98,105,109,95,103,103,101,109,134,110,97,103,102,109,101,105,100,107,93,103,112,107,108,92,100,94,101,97,101,101,102,105,104,99,99,108,83,102,115,104,93,86,99,102,99,101,110,95,79,106,110,90,109,103,112,96,87,104,99,86,102,87,94,101,104,101,94,103,92,99,90,96,109,100,102,98,97,96,114,104,101,111,101,113,91,101,106,86,84,86,104,100,90,98,101,97,107,100,89,99,96,100,104,90,92,109,105,94,101,102,108,98,110,110,99,93,106,100,112,99,99,95,100,108,107,94,105,107,107,97,119,104,109,98,114,106,101,99,101,101,95,96,95,109,99,102,94,106,77,107,110,87,109,102,79,113,107,105,107,99,104,80,102,96,113,106,103,99,109,96,98,90,106,98,92,97,98,90,104,94,102,102,106,102,108,105,98,108,100,100,90,97,91,104,92,100,100,105,105,90,101,108,101,114,103,113,102,95,104,108,96,109,100,106,103,109,89,94,101,96,101,101,117,82,92,98,98,107,99,102,106,111,122,103,100,95,107,104,104,103,99,116,96,101,117,106,102,106,102,105,105,101,117,98,104,113,103,101,104,101,103,94,103,105,107,113,104,96,101,91,106,99,99,118,101,99,105,102,92,94,97,106,102,107,115,100,106,108,103,106,102,102,91,104,103,109,99,99,105,95,108,101,79,100,96,102,117,109,96,109,105,91,105,98,104,106,112,102,96,89,109,97,99,103,92,102,122,100,94,102,103,92,103,98,101,100,111,109,105,104,104,85,96,110,81,101,102,96,105,105,101,100,107,110,109,85,109,94,95,101,105,102,107,96,109,99,97,109,115,91,105,97,99,106,107,102,117,106,96,109,96,98,109,106,101,103,105,93,99,107,108,101,92,92,103,102,107,103,99,99,100,94,110,98,102,105,99,94,95,97,88,99,104,92,104,108,99,99,105,105,94,94,97,102,94,100,106,100,93,132,108,98,97,102,103,100,101,101,95,108,108,90,105,93,94,103,92,100,121,101,94,109,103,104,104,91,98,96,105,98,109,105,96,102,91,99,99,107,100,103,104,103,99,109,106,101,107,102,97,102,97,115,102,103,102,94,116,112,93,97,105,100,100,90,100,105,101,107,109,100,97,93,103,96,101,99,99,97,112,105,98,94,98,115,101,102,108,98,108,105,96,93,101,87,106,102,105,101,102,97,106,105,119,91,98,96,87,113,103,102,99,106,104,100,98,88,107,98,101,99,102,112,100,97,98,103,114,107,95,105,99,105,99,99,100,102,84,96,103,118,97,105,88,109,93,103,106,101,91,101,107,103,100,112,111,98,97,101,106,107,110,105,99,102,124,95,102,99,98,103,106,94,107,104,104,100,102,87,98,117,133,103,103,95,106,110,92,103,109,96,106,98,84,97,109,110,97,113,105,98,105,107,95,92,99,95,96,112,106,107,104,100,100,91,95,91,84,101,100,100,120,99,97,83,105,108,95,102,108,100,92,97,95,109,105,99,105,96,97,107,106,99,98,96,97,102,116,100,96,119,95,98,99,97,106,98,103,99,86,84,105,97,95,97,99,91,99,94,101,95,106,103,95,109,101,93,96,102,96,114,106,104,115,102,92,93,107,113,110,102,94,108,93,100,105,98,105,96,95,98,107,106,102,97,98,104,99,94,104,117,91,101,99,104,103,95,111,107,104,92,97,95,102,108,99,105,122,107,106,104,106,95,104,100,102,93,130,98,105,94,96,91,97,94,99,108,116,98,102,117,97,95,101,91,94,111,105,94,106,101,102,109,92,108,106,97,104,90,100,102,113,106,102,100,120,110,101,100,124,101,108,94,91,100,106,98,102,95,113,102,108,104,102,121,109,101,108,104,107,106,103,107,104,109,101,101,108,98,104,101,92,103,105,98,102,100,95,93,102,106,82,109,106,101,121,100,94,105,107,100,94,108,100,93,103,102,104,105,106,99,108,101,108,105,105,94,108,108,108,133,108,101,98,101,109,108,101,102,100,91,116,95,95,113,100,92,120,109,106,102,92,98,100,100,105,100,77,107,104,104,83,100,106,105,97,100,102,83,100,111,81,94,102,103,96,92,95,93,106,95,109,92,95,107,109,99,102,93,98,100,108,98,117,102,110,103,102,93,102,98,101,100,100,99,106,114,98,103,105,87,101,93,91,100,100,97,98,104,100,106,103,102,105,109,101,111,101,93,105,99,111,96,99,100,98,104,113,107,109,103,104,100,108,101,103,99,101,103,99,83,104,108,97,106,83,112,105,93,108,92,108,99,106,99,115,109,105,98,104,93,92,98,92,95,90,106,95,104,99,102,94,94,116,99,95,106,105,99,99,94,110,100,88,91,104,102,106,105,103,95,106,99,99,107,100,109,102,103,99,99,94,95,110,102,119,104,96,105,106,102,113,101,106,86,93,90,103,110,103,105,101,99,105,94,98,106,101,103,95,118,99,107,103,113,104,118,97,103,107,104,95,122,103,94,95,95,98,91,109,98,106,99,102,112,90,95,109,93,96,109,109,99,92,109,103,113,112,98,95,104,90,91,103,89,94,96,102,104,108,122,93,112,101,96,94,104,101,92,96,100,113,97,118,103,97,101,110,114,108,105,116,100,92,105,102,100,103,105,109,101,103,94,97,108,100,104,103,94,113,90,106,101,116,110,104,109,126,89,127,101,91,87,93,111,99,97,91,104,97,105,113,102,100,87,102,100,108,107,102,114,104,95,114, +419.00381,106,100,99,111,99,105,103,108,96,109,95,99,99,101,102,104,106,114,106,100,109,107,103,96,96,116,103,97,97,102,90,88,105,101,97,100,95,100,106,108,99,91,100,94,99,100,105,109,100,106,101,99,96,100,115,93,92,88,108,99,98,94,100,102,117,109,96,105,103,113,104,97,90,100,90,101,100,95,91,93,96,94,104,107,98,104,114,103,97,98,104,90,99,98,105,106,103,116,102,95,87,120,106,95,109,98,84,100,96,101,106,92,99,99,90,104,94,112,100,101,95,95,94,99,104,112,107,88,115,108,96,100,97,101,100,86,99,106,100,100,89,100,94,109,98,102,100,98,95,94,103,94,112,98,98,94,88,95,110,93,103,99,102,95,105,111,95,91,102,95,104,103,101,90,91,104,116,95,101,96,92,102,97,100,104,92,88,89,93,90,96,109,93,100,98,95,101,108,112,97,99,102,96,95,116,91,104,102,102,103,99,100,105,108,98,97,100,105,102,99,103,100,109,101,94,103,103,103,102,113,102,97,95,105,104,95,102,90,97,101,113,106,104,96,108,111,105,131,113,109,87,95,89,101,99,92,96,98,113,105,101,106,92,101,96,101,101,98,117,97,103,83,93,104,123,96,95,103,100,99,96,104,102,98,91,96,83,107,79,105,101,103,80,101,104,112,103,105,94,99,92,101,91,100,97,108,99,106,88,99,93,111,97,100,102,107,101,97,95,105,105,112,96,90,88,88,104,88,106,99,100,109,110,94,109,103,106,108,86,85,94,94,109,104,124,108,100,108,108,101,107,98,105,96,100,100,107,104,97,114,88,99,106,101,101,91,98,100,96,99,108,102,71,103,92,93,98,91,102,96,102,102,101,121,102,103,97,99,97,91,104,71,99,105,109,94,91,101,101,109,110,100,112,101,103,98,87,99,100,106,99,96,97,100,92,111,106,107,101,113,99,105,83,97,113,95,99,90,103,108,96,106,101,100,96,109,97,96,99,101,105,97,99,115,92,99,104,96,103,106,95,106,101,99,102,101,98,92,117,101,93,91,121,106,104,103,104,98,107,97,107,98,103,93,98,91,94,105,104,99,112,109,104,98,95,92,104,94,104,97,93,93,103,103,100,104,102,95,96,94,99,87,106,109,107,106,96,90,99,98,108,98,93,103,102,117,99,84,96,88,96,99,110,103,101,85,104,96,97,99,91,104,105,87,108,106,72,90,96,103,105,102,87,86,101,97,98,91,107,105,104,99,102,93,100,92,92,92,106,88,95,96,103,92,87,87,100,103,104,96,91,84,99,94,76,113,98,89,101,103,107,100,111,91,113,104,105,109,95,104,103,97,102,91,112,94,95,87,103,101,91,91,101,101,102,101,94,101,108,100,100,101,101,95,95,112,113,112,101,97,108,100,107,110,86,106,104,90,103,112,102,103,100,107,101,99,95,93,109,99,105,115,90,91,102,99,108,98,98,109,95,99,86,104,100,108,111,105,100,98,101,114,91,98,92,101,114,97,105,104,108,110,103,98,99,106,103,102,100,107,93,99,105,101,100,104,117,102,105,107,103,103,95,105,94,104,109,101,110,101,108,100,108,112,105,95,106,94,98,98,95,97,111,97,104,113,118,107,88,96,100,112,96,101,83,87,107,89,109,101,114,98,93,87,93,120,86,92,100,111,106,94,95,101,95,88,109,107,103,93,104,100,97,95,95,102,96,100,112,103,82,109,102,104,98,104,89,98,96,100,112,105,113,100,102,96,98,89,93,104,101,108,105,111,97,105,94,92,99,103,110,108,91,84,103,98,93,108,96,95,101,95,106,104,98,95,110,112,105,96,102,103,103,98,102,121,117,102,101,102,64,105,100,109,108,104,111,101,106,107,107,100,109,113,105,108,101,104,102,95,106,109,109,101,99,109,110,121,108,107,100,96,89,98,109,97,110,122,100,104,115,108,97,99,102,99,93,95,104,105,102,111,110,97,104,92,100,91,88,91,99,96,110,94,99,94,100,101,101,103,99,84,110,119,96,99,97,97,93,109,108,99,96,95,108,101,84,97,94,99,102,107,99,109,97,97,93,104,101,97,105,98,101,96,101,104,99,104,116,118,105,111,100,108,101,91,92,106,100,104,97,100,86,120,95,103,103,108,99,97,101,103,99,100,100,100,96,97,85,104,102,105,103,96,90,108,101,104,112,108,110,101,100,88,94,95,127,107,94,107,99,98,107,92,94,99,113,106,98,106,114,96,94,104,112,100,92,97,99,112,104,70,111,102,100,110,107,108,99,104,105,99,95,108,96,94,110,105,99,96,109,103,84,91,104,89,105,99,93,100,104,117,115,97,100,101,98,108,94,100,102,92,97,102,98,97,104,99,97,105,92,104,114,102,101,105,92,113,107,102,95,93,111,116,88,98,110,89,99,113,101,104,106,110,110,103,111,106,108,95,98,110,106,99,100,103,102,111,100,113,94,115,102,104,102,100,85,106,99,105,100,94,96,112,110,105,95,102,102,110,113,108,99,101,102,110,93,108,102,103,97,103,106,100,94,95,87,98,94,101,107,100,101,91,100,96,104,99,105,102,93,101,93,105,101,104,110,105,104,95,102,100,93,100,94,66,109,95,95,97,101,79,88,95,95,89,92,104,98,98,98,105,105,108,104,93,112,108,106,108,105,98,107,90,102,91,99,103,93,90,95,103,106,113,99,105,91,92,106,107,108,110,96,113,92,103,107,106,104,100,99,109,109,112,98,99,104,105,91,99,95,106,96,83,107,107,101,102,96,98,97,99,85,97,98,102,99,99,95,98,97,88,108,99,95,108,104,111,94,103,107,91,100,105,89,102,104,102,108,104,96,97,105,105,83,98,95,103,99,112,104,105,102,109,105,101,97,105,100,106,91,101,103,97,100,113,102,96,126,79,103,116,92,108,98,97,101,94,100,97,95,102,99,102,87,85,103,103,99,99,102,107,102,97,111,100,97,94,100,103,115,108,106,108,98,98,95,99,105,108,100,103,90,86,106,76,119,101,103,101,92,89,111,106,95,103,100,100,99,100,105,104,97,95,111,105,98,101,100,92,105,94,103,107,97,103,109,103,100,97,99,102,96,102,113,103,104,94,102,95,109,105,105,92,96,99,98,106,98,96,95,104,99,95,97,109,96,104,96,97,99,98,97,117,98,111,102,116,102,103,101,101,97,77,104,91,97,102,97,96,91,113,92,99,96,90,101,104,104,90,105,98,115,100,107,109,105,106,96,99,100,70,106,105,92,95,111,92,88,97,101,85,98,104,106,102,99,101,104,92,97,97,98,89,102,103,93,98,101,97,105,107,96,99,92,93,103,104,110,99,102,97,93,106,101,90,103,106,86,93,94,97,105,97,99,104,81,95,98,98,106,102,103,96,92,98,92,91,101,91,105,102,99,106,96,101,105,103,104,104,94,93,101,102,102,103,104,98,99,92,101,89,86,96,90,109,98,94,101,94,106,116,100,98,95,97,98,96,107,103,108,107,98,103,98,107,105,102,90,91,97,108,110,101,101,91,102,97,110,92,98,87,99,104,75,105,95,94,93,121,96,90,110,109,109,108,103,104,99,94,92,102,95,100,110,94,109,98,95,102,87,105,89,99,108,102,102,100,103,98,107,88,83,103,93,99,88,96,98,93,98,111,97,98,96,95,105,94,105,98,97,102,102,105,97,109,107,91,103,95,117,109,94,117,100,105,98,114,96,90,101,110,84,82,87,100,94,98,120,93,99,73,95,107,105,98,96,104,95,96,101,107,98,106,104,98,92,107,106,95,112,98,103,112,100,109,93,99,87,99,87,99,99,96,91,94,99,98,99,95,97,98,104,101,91,94,101,96,94,108,114,106,92,89,94,91,105,96,109,91,95,104,92,95,100,94,95,91,98,100,97,95,99,100,99,102,99,101,116,98,95,105,98,101,93,96,103,103,103,97,96,109,109,99,93,103,100,100,97,108,96,98,93,94,94,89,105,104,99,91,107,90,96,98,94,83,104,93,100,100,99,107,96,89,92,120,104,101,103,97,102,104,102,106,92,109,100,97,102,99,98,101,105,100,101,101,101,101,83,102,105,91,110,102,104,100,103,112,115,99,106,98,90,70,93,92,106,94,107,110,96,102,101,101,104,103,103,99,102,102,108,99,109,121,95,104,102,111,87,109,114,98,94,104,99,98,85,96,99,109,100,88,100,104,103,112,101,89,116,104,105,116,103,101,91,100,91,100,99,104,131,91,110,101,96,91,98,95,82,98,102,99,97,101,100,107,100,105,86,102,93,99,98,99,99,99,78,103,77,94,100,97,103,103,95,104,109,95,95,102,91,105,102,97,100,108,103,103,99,107,104,107,99,83,94,100,101,109,94,104,101,91,99,88,87,124,106,110,91,98,95,97,90,100,99,91,136,107,90,96,102,107,98,97,100,87,96,106,95,101,87,94,91,106,85,97,103,88,88,92,106,90,92,94,75,104,95,95,106,92,93,99,115,92,111,97,119,106,97,110,116,100,87,101,113,101,99,102,106,105,99,93,105,91,99,96,104,93,94,101,107,97,99,108,105,104,91,99,104,88,100,97,106,94,101,107,100,94,99,103,103,106,104,102,97,101,88,106,105,97,101,102,104,101,92,89,97,92,102,91,92,113,98,87,106,95,114,98,93,93,84,116,99,115,97,87,103,93,103,100,99,104,92,114,93,88,105,91,85,115,102,111,87,96,104,91,102,111,106,93,103,103,124,95,102,95,88,99,83,80,96,97,106,104,97,77,96,103,73,97,112,98,94,105,97,98,91,93,98,92,99,113,92,74,106,98,107,108,99,68,94,103,109,95,109,102,115,106,97,116,106,91,99,95,97,96,92,99,96,106, +419.14404,104,83,96,105,108,104,93,108,87,100,100,92,104,98,104,92,97,104,100,119,108,90,103,95,104,97,109,106,88,92,108,83,95,87,106,102,102,97,104,88,105,105,92,104,103,111,84,101,92,96,89,97,88,94,91,98,81,93,103,97,101,105,113,91,107,98,94,109,98,89,110,102,106,96,98,98,95,108,105,102,110,87,95,94,101,100,95,101,100,101,92,108,106,104,88,109,75,109,102,112,96,87,98,94,90,109,96,109,107,100,94,101,117,97,96,103,108,91,122,104,88,84,101,111,101,112,108,91,100,104,91,103,104,98,104,112,106,102,90,113,102,94,75,99,113,103,101,104,87,88,100,86,101,84,98,102,109,105,87,98,103,83,109,96,95,100,98,95,96,108,101,104,103,96,107,99,102,84,107,105,95,94,92,103,102,100,108,104,105,94,93,91,106,107,103,110,97,106,92,110,114,100,98,101,96,100,102,109,104,99,95,105,99,103,98,100,87,98,100,104,116,124,100,97,95,109,105,101,98,113,101,98,103,101,109,95,100,107,100,97,94,96,72,104,106,88,99,91,100,101,98,98,107,103,96,101,109,104,96,100,91,98,92,81,97,112,96,100,109,111,107,98,103,108,109,104,98,92,93,76,105,107,94,106,99,92,110,101,105,103,105,96,109,101,103,103,104,98,100,118,106,86,109,100,100,113,102,102,100,106,100,103,93,96,106,104,94,105,113,117,97,95,97,98,103,107,104,101,94,108,104,104,92,98,105,96,107,97,102,101,113,91,102,102,94,110,93,95,107,95,98,98,105,97,102,96,114,100,120,105,94,110,88,96,106,99,97,106,101,93,91,97,103,107,103,104,109,92,132,101,103,106,94,101,94,100,92,89,94,105,105,91,100,93,84,97,100,98,101,99,100,106,111,102,117,100,95,104,101,108,83,109,105,95,93,106,100,99,113,96,106,110,102,95,105,98,97,82,93,108,113,115,100,105,101,104,108,104,102,95,102,105,101,103,104,96,129,99,104,100,96,109,104,118,107,83,91,95,98,103,95,109,94,95,106,98,97,101,99,94,106,96,101,90,106,113,107,105,105,110,98,90,110,104,105,95,103,89,98,103,103,102,107,88,100,91,102,110,107,120,108,102,94,102,105,108,98,100,103,104,103,116,100,101,102,102,102,109,103,90,105,89,99,92,101,104,112,107,98,110,100,108,107,106,94,104,107,93,112,100,92,101,101,113,106,98,102,93,99,107,113,95,116,99,102,84,91,106,101,103,102,97,99,103,101,100,95,70,100,92,92,97,103,110,96,95,108,96,85,102,103,90,107,103,100,99,106,108,109,102,103,113,105,100,103,99,89,118,118,101,117,100,77,103,106,103,99,103,100,98,99,90,105,107,108,104,98,105,100,100,99,104,100,95,105,112,99,113,99,100,112,94,90,97,88,96,90,95,102,93,107,109,102,100,101,95,83,98,103,94,96,101,103,110,105,102,100,104,96,102,109,116,96,104,101,99,96,91,94,104,103,96,85,106,92,108,113,96,95,90,108,114,102,106,102,89,92,102,87,102,96,113,99,110,112,94,129,117,99,89,99,96,89,103,130,105,101,108,112,108,103,97,107,105,110,92,105,103,99,104,107,95,99,100,106,95,105,92,103,103,102,98,94,100,97,102,104,96,101,110,91,88,100,85,98,99,93,92,102,106,106,107,104,111,103,97,105,92,99,104,98,97,94,113,97,116,92,101,99,105,101,93,106,98,88,97,96,95,102,93,94,100,108,100,108,109,100,99,101,101,94,99,93,96,105,95,99,96,109,123,98,113,92,105,96,105,110,109,107,85,106,91,92,98,107,114,100,115,94,114,95,99,88,103,88,103,108,76,101,116,112,94,99,102,103,97,103,108,104,109,102,104,101,100,95,117,100,99,91,100,100,98,108,97,91,97,88,92,110,103,110,99,111,96,106,100,96,110,117,100,104,103,99,88,104,108,105,97,75,95,103,99,99,106,116,95,86,103,99,101,91,112,97,106,110,106,99,96,97,96,103,97,109,98,111,91,102,109,90,83,99,97,103,108,105,92,89,103,83,90,109,101,104,99,96,108,102,95,109,108,107,96,103,103,78,105,100,96,111,109,97,84,106,109,67,105,104,99,90,104,109,95,103,102,103,112,116,92,89,108,95,96,89,97,116,107,81,88,99,88,95,102,109,97,107,114,101,92,93,91,103,96,113,100,94,90,104,110,97,111,96,111,97,105,101,96,108,102,99,93,87,105,100,90,107,88,101,106,102,104,104,99,103,96,89,103,94,92,89,118,107,102,92,96,112,102,93,107,97,97,99,100,100,94,108,101,99,110,96,109,96,101,95,108,96,101,103,89,100,108,105,101,108,103,95,106,100,88,98,106,103,104,108,102,100,102,94,95,96,96,90,112,102,89,100,91,100,101,99,95,89,98,93,104,99,100,91,98,103,106,109,110,116,105,98,116,101,99,101,94,108,98,106,102,99,103,103,68,109,106,91,111,111,109,93,105,109,105,102,104,112,109,84,101,117,100,111,125,106,101,107,103,112,96,95,113,97,84,94,94,92,89,93,102,109,91,104,105,112,113,128,101,102,105,120,105,100,96,99,98,91,108,100,92,104,90,93,92,110,99,111,97,99,109,96,91,111,106,99,102,91,108,103,110,114,104,100,104,106,104,103,106,113,99,96,78,96,99,102,108,108,105,90,96,97,113,109,104,103,99,89,108,93,98,97,111,98,112,102,96,103,101,93,109,99,106,111,102,111,100,92,106,90,108,113,94,106,111,101,112,108,94,109,101,107,105,111,92,115,104,105,109,99,104,87,98,99,95,90,109,92,96,112,116,109,96,106,84,113,100,120,100,106,98,114,105,99,112,108,102,90,116,108,98,103,89,105,87,114,104,113,105,94,101,94,63,108,100,90,109,108,100,94,107,107,105,111,109,105,105,90,104,103,103,98,106,102,90,110,98,72,99,100,115,102,116,113,107,106,101,102,100,96,105,91,90,103,100,107,95,102,95,100,105,96,100,104,96,90,107,95,100,93,105,106,90,108,101,104,99,106,115,109,95,114,89,99,88,107,99,88,115,106,107,93,95,95,95,105,99,109,104,96,111,98,97,104,93,91,105,101,97,92,90,97,106,103,101,105,104,103,95,93,115,106,102,124,108,111,103,98,105,94,109,114,95,112,100,96,104,107,102,91,100,114,100,91,101,110,107,102,111,98,106,105,101,97,112,114,94,110,95,92,104,111,106,102,108,100,96,100,80,87,94,92,122,109,103,105,105,107,106,116,102,92,113,104,109,108,96,98,90,93,101,99,98,102,73,105,91,98,88,103,92,95,111,90,103,99,105,97,104,101,102,105,99,104,97,108,101,89,112,103,99,97,103,105,106,95,95,99,108,104,93,95,106,99,95,95,89,102,96,112,92,113,105,97,108,91,107,102,94,96,109,89,99,102,121,113,103,98,100,92,91,107,110,96,102,94,102,110,109,108,111,104,105,110,107,94,107,110,111,106,79,110,100,106,96,98,101,117,98,99,109,102,93,101,103,107,95,105,100,92,106,99,97,98,95,106,100,102,131,116,102,95,102,111,106,109,115,97,95,107,120,104,106,110,106,107,98,99,91,118,107,108,99,104,95,102,96,102,116,103,79,96,108,89,56,55,99,99,94,110,108,113,102,107,94,109,98,115,96,96,98,100,104,104,91,105,101,106,100,104,75,102,109,97,104,97,110,115,105,124,107,91,113,98,100,109,112,87,108,96,103,113,106,105,106,83,93,97,101,78,101,95,99,106,98,112,105,106,100,95,99,99,100,101,102,104,96,101,104,109,119,105,104,106,94,126,100,110,102,103,97,100,99,103,104,101,97,107,118,120,98,94,100,97,95,96,93,90,94,98,100,103,102,100,102,93,111,105,105,100,102,94,102,111,97,103,101,94,104,109,98,102,90,104,116,102,102,102,114,108,109,124,96,110,103,96,96,105,93,95,104,98,101,110,94,104,99,109,98,103,91,107,110,92,100,96,99,88,102,109,108,113,98,106,108,103,106,101,98,102,105,113,103,89,100,99,104,98,109,95,98,102,113,103,100,94,104,100,91,90,110,87,94,98,107,98,96,105,104,106,91,98,114,122,100,109,105,108,103,98,109,92,106,101,108,103,101,102,111,102,103,107,100,99,118,105,100,110,94,92,93,101,103,99,134,110,91,108,97,106,105,100,98,104,95,113,98,107,105,110,92,95,107,100,94,83,108,98,109,101,93,104,117,95,100,97,110,108,88,104,109,98,109,114,109,108,102,119,100,105,103,101,105,110,101,99,109,100,104,107,91,111,100,110,87,109,99,95,109,90,97,100,100,100,108,112,78,101,92,95,103,101,99,88,91,101,98,109,108,109,96,101,101,104,103,106,95,99,109,101,97,101,96,102,97,113,95,100,98,92,93,102,105,99,95,100,101,87,102,94,120,95,100,95,92,93,97,95,100,101,106,95,104,104,103,90,104,106,99,106,95,96,102,99,106,100,112,79,108,106,101,117,95,116,96,89,87,107,105,101,99,108,91,105,98,106,104,109,101,105,98,114,92,109,100,101,108,111,90,102,103,112,101,95,111,101,102,91,91,111,95,96,100,87,97,105,105,99,92,93,100,99,99,94,95,95,97,104,108,121,107,95,98,109,101,98,100,96,108,85,105,106,99,97,100,89,109,96,93,105,109,96,97,98,104,102,111,97,112,103,113,109,108,85,106,104,94,95,91,110,98,99,109,99,105,103,91,86,75,97,87,121,96,76,96,104,109,105,106,82,76,106,120,88,85,90,96,85,99,102,109,105,92,83,92,110,95,89,101,114,107,90,118,117,92,104,103, +419.28427,79,82,92,87,100,104,75,95,94,101,95,87,91,81,114,93,97,94,102,98,97,88,100,98,103,102,97,105,101,102,102,86,95,99,112,94,99,94,102,91,92,62,101,98,109,90,96,105,93,98,88,100,109,103,96,72,114,94,99,101,105,103,114,93,103,104,101,111,92,104,114,96,94,125,94,113,94,100,108,104,98,94,114,99,99,101,107,100,104,109,91,102,104,102,96,97,101,102,90,107,92,86,98,100,97,101,95,106,98,105,102,106,109,104,106,102,98,101,95,93,97,95,107,104,114,99,100,94,100,95,98,102,100,100,105,106,93,98,85,86,101,101,94,103,105,99,102,102,100,102,100,94,94,98,78,98,98,104,101,96,109,96,105,88,116,104,103,101,99,92,110,107,100,94,96,102,75,88,104,98,90,102,104,94,97,87,99,96,92,98,99,92,93,106,103,91,92,95,105,77,91,102,110,96,95,96,115,106,98,112,141,106,100,114,98,100,98,88,102,87,91,97,100,95,97,116,96,100,110,111,85,105,97,103,102,96,106,99,105,88,96,106,103,107,103,96,127,103,101,103,92,103,92,105,88,105,86,98,97,93,100,90,113,104,113,109,97,94,99,92,105,116,104,97,101,103,91,103,110,100,98,103,106,102,101,99,84,104,103,108,96,97,95,100,98,105,99,113,106,116,101,101,109,107,96,106,99,106,101,99,100,101,104,101,105,107,89,100,84,102,104,98,90,102,90,102,99,101,109,100,95,96,106,98,79,104,95,106,86,100,107,97,103,95,109,103,102,106,94,103,103,110,91,98,95,105,104,99,113,109,101,99,90,97,97,96,105,106,98,108,102,109,111,104,98,97,75,107,102,106,101,102,101,116,102,91,105,107,104,100,102,105,95,100,104,99,99,101,99,107,90,95,95,93,109,98,101,103,114,98,96,90,103,98,98,96,105,109,100,101,96,89,107,92,96,84,109,98,97,99,94,110,100,98,102,101,104,101,103,100,93,96,113,100,95,103,102,91,95,110,108,94,117,96,109,99,85,98,101,99,99,100,96,103,103,107,114,101,104,96,108,102,105,104,102,88,111,107,103,107,138,104,109,110,97,94,106,99,95,100,99,100,109,99,89,106,90,96,103,98,103,100,98,105,96,95,91,90,117,94,98,98,101,93,106,93,87,109,118,99,99,89,105,103,100,105,98,103,101,111,103,97,108,92,98,102,106,106,91,96,112,101,103,107,120,97,98,104,108,103,102,97,114,104,107,99,110,95,102,102,100,94,100,110,92,104,106,93,97,105,95,90,105,94,99,100,98,101,104,104,96,103,116,96,116,102,116,92,108,93,109,103,101,103,114,107,101,103,99,99,97,95,104,100,110,88,109,97,95,107,106,101,105,115,112,101,100,94,101,105,102,99,83,101,95,102,98,115,109,109,94,107,97,100,104,103,100,107,101,92,107,113,102,100,101,93,98,98,103,92,96,104,109,109,94,99,104,100,101,106,104,110,100,86,106,108,106,100,104,99,125,99,104,102,91,109,96,106,102,99,92,100,120,92,99,91,104,98,103,95,108,100,100,112,98,101,96,100,87,100,106,95,102,110,100,93,113,98,102,90,124,96,108,89,89,77,99,92,94,87,106,94,102,95,99,104,93,100,91,108,94,98,101,96,115,99,82,113,106,100,111,98,104,100,95,106,108,108,92,100,114,95,104,88,112,113,102,99,90,99,94,107,94,106,97,106,97,89,102,94,102,104,92,97,106,102,102,103,104,90,93,107,99,103,105,104,98,106,93,116,106,90,100,103,93,109,112,91,107,105,96,105,102,94,110,100,106,98,108,106,82,105,103,102,99,92,108,97,115,91,87,107,93,95,101,98,100,109,97,95,92,97,107,96,104,106,92,109,113,105,106,108,116,105,109,87,117,95,102,99,99,102,101,111,92,107,94,102,103,98,99,94,95,91,98,92,97,103,102,97,106,101,105,101,97,97,94,100,95,100,100,106,105,110,99,107,93,87,96,100,89,91,99,107,105,95,95,96,95,109,106,105,86,104,94,96,103,99,102,101,101,77,105,100,96,77,87,106,95,105,111,99,104,102,109,105,100,102,97,97,103,91,110,102,97,96,97,98,106,98,103,107,102,102,100,93,100,110,108,109,99,104,92,111,95,118,99,97,96,99,109,93,96,98,105,99,88,99,101,107,103,105,94,98,87,103,108,100,94,105,100,98,99,83,87,108,97,102,93,93,93,106,101,82,110,97,98,111,96,110,98,99,103,98,106,106,93,117,79,99,92,109,92,85,102,95,102,100,97,97,108,91,97,107,93,97,100,105,88,106,94,96,108,104,101,73,105,117,98,109,86,114,93,114,82,95,83,104,97,100,106,103,106,95,96,101,97,99,111,114,105,116,99,95,111,111,90,95,115,88,101,103,91,93,102,93,84,95,98,100,90,99,95,107,114,108,94,81,110,110,105,109,99,90,105,101,111,106,116,109,113,93,109,115,103,113,107,91,102,92,98,95,92,96,97,96,99,91,90,104,122,100,109,113,98,100,95,110,113,93,105,105,96,108,104,110,110,111,105,102,111,111,111,97,95,90,118,109,98,101,99,106,99,110,99,96,104,119,103,103,84,98,109,96,92,104,94,91,110,105,98,96,116,107,103,107,95,103,95,107,104,105,105,97,95,111,112,93,76,106,92,96,124,108,104,96,102,98,110,109,95,91,101,97,98,119,109,102,106,106,84,112,100,102,95,111,95,108,110,88,104,107,97,107,108,89,108,106,114,90,99,100,103,97,106,103,100,108,99,122,107,105,102,103,104,98,110,104,102,94,92,107,109,100,69,94,94,95,110,117,98,95,108,101,105,98,97,104,103,114,113,109,114,108,109,101,107,104,98,98,100,100,109,107,94,112,101,102,101,99,100,99,90,102,101,103,105,94,83,96,96,110,103,98,77,95,78,105,111,96,103,109,97,89,108,103,96,105,97,109,105,122,106,99,106,102,95,100,105,106,103,99,105,101,106,104,102,101,112,104,98,103,112,101,111,113,98,102,97,99,123,103,96,104,93,96,103,95,101,113,104,113,96,105,112,97,109,92,103,104,115,102,105,101,96,103,102,104,106,99,105,88,101,101,109,97,86,101,103,98,99,90,80,103,93,104,102,90,113,103,108,108,85,102,106,109,98,115,105,96,105,103,96,102,102,95,91,94,102,90,104,109,79,100,113,108,112,98,102,78,116,101,109,95,107,100,88,110,112,95,113,96,98,100,104,99,98,109,109,95,104,99,106,103,107,95,112,92,99,101,99,96,103,99,102,103,106,94,115,95,62,105,105,108,102,96,81,113,112,111,83,115,104,103,116,105,99,98,116,95,97,104,96,92,107,113,103,95,126,101,102,110,108,101,94,116,102,99,100,110,108,94,123,91,94,104,108,107,113,92,90,102,100,102,97,100,110,98,96,106,111,100,107,98,121,100,97,102,97,95,103,119,95,102,100,104,101,105,104,93,113,112,109,116,102,111,108,102,97,104,99,102,95,108,115,99,102,100,106,109,101,91,100,109,98,89,95,101,91,97,76,98,117,132,112,118,100,102,111,91,105,95,103,105,100,102,98,94,100,90,103,97,110,111,102,88,110,90,97,106,100,98,102,115,96,93,97,102,87,98,94,109,110,106,109,106,104,90,96,103,95,94,98,120,111,101,101,95,100,100,109,102,106,93,105,92,97,98,94,75,100,98,101,92,99,105,94,106,104,99,104,101,108,97,104,94,102,99,95,98,111,93,101,106,107,101,101,109,99,99,111,110,101,95,98,108,100,99,95,107,87,104,107,98,96,94,108,98,102,119,100,102,90,116,96,108,108,101,106,103,107,95,90,99,101,99,101,101,100,91,104,102,97,104,95,102,100,91,105,94,110,101,108,90,100,98,85,96,100,97,96,108,94,105,96,95,104,109,112,99,101,114,105,104,114,105,110,110,103,102,90,110,80,99,105,106,96,90,95,107,97,97,124,106,101,106,114,115,102,109,103,112,94,100,87,100,95,111,100,103,103,105,113,102,105,105,109,92,102,99,95,104,112,102,101,114,97,105,88,103,108,99,95,98,105,113,111,88,97,95,90,91,98,115,107,114,98,94,113,99,91,102,88,77,130,105,105,95,107,84,114,100,111,110,96,109,103,113,106,97,103,98,106,94,100,101,109,93,103,115,101,112,98,98,104,91,104,95,96,107,97,85,104,104,96,97,100,97,93,103,95,96,107,101,102,100,83,104,111,91,84,97,107,104,101,101,97,112,101,114,104,96,107,97,96,92,107,116,94,108,103,92,108,104,104,106,109,115,110,109,113,96,109,99,91,114,101,93,99,104,102,97,97,99,112,106,100,112,114,102,100,85,107,100,95,107,106,98,104,102,99,95,105,118,92,100,109,85,102,113,101,104,102,101,94,95,100,94,114,99,91,98,102,121,99,111,93,97,101,98,87,98,97,102,118,105,103,104,96,105,103,97,94,105,93,111,94,95,107,95,101,106,99,103,97,108,104,99,111,101,92,103,105,99,99,105,107,91,102,88,101,104,120,87,96,97,81,93,106,101,99,114,75,101,105,105,99,94,100,97,119,98,106,97,93,96,109,101,109,97,93,79,98,116,109,107,115,101,101,96,106,98,109,95,95,112,103,98,102,104,109,100,104,104,96,95,101,99,104,105,97,92,94,99,99,105,100,88,98,97,90,105,96,105,105,95,99,113,96,106,88,90,109,96,105,106,93,93,106,111,108,96,90,87,95,105,102,108,98,104,98,101,101,96,103,98,107,118,89,82,92,114,93,103,90,109,89,95,109,96,94,101,85,103,100,120,90,109,99,65,110,92,77,103,96,102,100,78,99,101, +419.4245,96,98,93,93,94,109,97,83,83,119,91,104,96,97,96,84,103,114,107,106,99,92,105,104,108,95,99,116,101,106,103,99,101,109,100,100,98,103,107,103,83,105,110,103,109,95,108,115,102,99,71,86,84,105,104,88,100,93,102,102,107,96,94,103,99,96,83,129,98,97,91,99,98,105,95,109,86,97,95,109,100,92,108,102,114,92,108,101,98,105,103,102,94,99,93,95,101,94,91,96,99,107,94,95,108,94,103,111,121,126,98,92,102,94,104,98,84,88,116,90,102,97,99,108,104,101,113,94,105,100,103,115,102,93,91,99,102,94,95,111,102,105,100,107,92,104,100,99,92,102,99,140,104,110,100,98,108,108,109,98,106,99,108,85,112,103,102,97,102,99,98,93,109,99,107,98,96,102,104,101,102,109,97,97,103,96,94,94,102,99,91,89,101,94,97,104,91,91,112,104,98,93,95,100,107,117,104,98,100,109,102,102,97,101,100,100,106,100,93,86,96,97,99,104,95,105,104,96,100,110,99,108,104,97,90,90,105,95,101,94,91,101,104,106,98,98,97,89,89,98,98,116,103,98,91,98,104,103,94,104,87,104,93,113,95,108,100,109,84,109,108,101,105,105,103,105,108,103,104,100,106,106,98,99,109,100,101,118,106,115,100,90,98,105,103,98,102,97,95,99,110,91,112,101,94,111,105,97,105,109,86,105,104,106,94,103,96,100,94,112,93,103,111,96,96,107,102,106,102,100,104,92,112,96,103,106,97,104,87,102,100,109,102,86,100,102,106,106,103,113,92,101,99,105,105,96,96,97,119,97,94,94,92,89,92,97,96,98,100,103,113,98,98,101,96,87,92,107,102,107,99,99,92,100,93,100,101,98,98,97,90,99,98,102,89,102,91,104,107,104,101,96,102,107,104,94,96,106,104,94,101,101,92,106,104,96,106,100,112,96,112,100,102,95,92,92,111,99,86,105,99,98,104,101,105,96,101,108,101,107,105,112,93,102,98,104,108,106,100,103,103,102,88,100,111,103,104,98,107,103,101,107,105,105,114,93,99,91,114,104,93,99,105,103,106,105,110,103,109,105,79,95,111,101,108,96,103,105,99,101,107,96,94,110,101,101,104,107,98,102,91,95,106,96,105,91,98,103,105,88,102,110,102,101,106,92,110,101,97,92,109,101,72,106,94,112,99,87,103,110,95,93,97,99,90,100,119,68,107,97,125,99,90,102,109,103,104,101,100,107,103,111,100,99,96,105,104,100,100,91,101,112,106,96,95,106,98,117,98,105,117,96,99,113,99,106,95,93,95,104,105,90,100,105,104,105,110,104,96,100,108,101,99,111,112,113,98,109,103,100,99,109,106,95,107,106,88,106,108,102,121,99,94,94,103,115,95,99,106,100,100,110,104,108,119,92,101,101,113,91,91,107,100,103,102,99,109,104,107,105,96,98,99,95,90,97,106,80,103,100,97,95,101,105,86,105,102,102,104,99,106,98,103,104,91,97,99,108,106,106,102,94,94,95,103,95,105,104,109,112,106,108,95,104,90,97,91,95,107,96,102,103,96,96,98,96,112,91,116,98,95,100,108,108,108,106,103,105,104,108,120,94,98,106,98,99,104,103,104,116,107,99,107,93,105,104,94,99,104,102,91,101,97,102,99,113,99,100,109,104,96,103,99,88,107,106,106,116,73,103,110,101,108,100,86,102,95,101,99,100,94,103,95,100,99,91,96,101,100,95,109,105,121,95,96,107,99,112,100,92,100,108,101,101,101,71,110,105,109,106,104,99,95,103,106,95,100,96,108,84,113,82,102,101,104,121,104,95,93,101,98,101,94,98,91,96,116,103,98,105,103,101,107,106,103,108,129,95,101,107,101,99,113,102,88,101,105,101,102,112,91,100,93,100,77,101,96,98,84,110,106,86,110,100,103,95,96,123,108,106,108,98,105,108,107,112,95,99,102,94,121,85,98,105,86,98,100,102,98,95,98,111,96,95,91,103,101,105,90,109,113,100,105,115,100,94,92,94,98,106,104,102,100,102,96,98,104,108,107,90,106,96,103,90,105,104,102,109,89,103,99,110,113,98,95,106,100,96,109,100,106,104,104,100,99,97,92,103,87,95,112,112,97,119,98,106,100,107,93,104,102,108,97,106,94,96,93,99,99,103,108,97,94,99,102,99,102,99,110,107,101,105,97,82,94,84,96,106,96,105,99,101,106,103,102,93,98,106,101,89,101,111,102,108,101,90,104,101,91,92,101,105,95,102,105,94,97,110,94,103,72,107,111,109,113,92,98,92,95,98,102,96,96,89,109,96,96,105,112,99,104,94,96,102,107,85,97,109,104,103,102,106,99,104,93,108,105,103,98,89,101,86,104,91,102,101,97,98,96,104,101,107,107,110,105,109,90,103,96,96,98,108,94,104,94,100,117,93,99,111,95,87,98,95,97,93,104,99,112,105,89,98,101,95,102,98,102,109,87,92,107,103,98,105,99,107,93,99,98,112,101,109,99,104,100,106,111,106,88,107,112,93,97,109,99,103,102,106,94,102,105,95,100,104,96,101,105,93,96,82,88,80,83,110,88,101,110,115,103,95,108,98,93,116,95,111,105,110,95,106,106,106,108,94,96,108,92,97,94,100,96,82,87,103,108,109,98,97,97,105,103,101,101,87,91,100,103,107,98,94,105,88,98,103,103,108,98,103,104,117,98,102,101,85,96,98,101,91,98,92,99,94,106,103,98,100,94,101,100,101,98,97,109,112,101,101,104,100,112,109,96,101,91,99,102,88,102,92,109,98,108,112,107,109,94,83,98,108,97,116,113,99,102,97,88,105,99,113,105,109,98,101,95,100,108,101,106,104,94,103,119,98,104,101,94,91,94,99,95,94,113,101,108,68,103,111,93,99,89,101,106,98,97,103,105,104,94,102,100,105,100,102,93,116,101,101,107,93,101,85,87,96,91,93,99,102,93,104,106,126,95,82,98,95,105,78,110,104,108,113,101,94,101,105,97,103,78,110,105,98,100,82,108,102,111,109,90,100,104,109,98,104,89,98,96,107,97,96,104,93,92,90,104,92,103,112,99,104,110,106,102,91,97,98,104,75,111,95,107,128,110,108,106,97,96,100,99,105,100,93,105,98,82,89,110,102,102,103,113,107,99,95,104,105,107,98,82,104,103,89,108,99,102,103,105,121,99,107,95,96,106,99,99,105,102,95,103,101,115,104,105,117,97,108,93,103,102,134,127,106,102,96,103,94,103,101,117,107,98,98,91,98,101,105,100,99,88,103,104,80,97,113,101,76,84,106,92,100,112,101,99,105,95,90,98,97,105,106,102,96,102,104,105,118,98,87,121,93,94,88,107,89,109,95,109,103,81,109,94,101,93,105,105,96,95,95,106,100,106,99,94,85,106,93,76,96,108,101,104,108,115,99,87,98,110,106,98,107,107,97,101,96,100,105,95,103,97,80,104,107,115,101,98,110,99,110,113,100,97,104,105,105,111,98,97,104,95,103,101,97,87,90,107,90,92,92,99,89,95,100,102,101,105,100,117,108,97,101,103,100,93,95,104,105,94,94,104,110,96,105,85,101,105,104,95,91,112,88,92,99,84,94,109,107,103,96,89,100,88,100,105,115,100,101,88,111,78,91,105,105,94,83,98,112,101,96,101,90,100,97,106,104,94,104,128,111,111,98,98,115,103,107,103,91,104,95,98,101,112,96,108,94,101,107,108,101,100,89,104,110,99,96,102,109,89,88,91,90,96,106,103,106,103,106,117,105,100,106,94,107,96,106,104,98,101,96,110,103,109,100,101,99,103,97,99,114,105,98,95,104,96,124,98,98,98,110,99,104,93,108,100,103,102,101,102,108,107,97,105,93,102,99,98,103,109,103,104,98,105,99,101,99,109,111,113,102,99,102,108,95,99,109,109,101,87,87,98,111,100,108,104,108,101,100,109,100,104,111,99,115,92,98,91,98,113,76,105,107,92,116,98,120,90,108,98,95,96,108,106,100,106,102,104,97,118,98,89,101,108,99,73,97,101,90,93,93,101,102,98,92,102,109,98,98,73,103,103,103,102,108,101,103,102,101,98,122,101,81,104,102,106,99,95,106,82,95,95,111,89,102,101,88,89,87,108,104,123,98,100,106,103,106,107,109,100,94,105,106,111,90,112,103,99,107,107,108,107,92,91,105,104,105,98,101,102,101,102,109,94,92,107,99,104,98,96,95,101,96,113,105,104,87,102,105,100,100,116,102,72,109,103,108,103,83,106,102,91,95,70,112,94,93,105,105,102,91,104,97,106,112,96,100,99,102,98,96,102,109,110,96,102,98,103,107,94,106,106,103,110,92,96,101,99,100,91,64,96,125,101,79,97,85,103,102,97,96,98,100,94,101,104,108,99,95,87,100,108,100,92,108,105,107,104,91,95,96,104,109,99,100,98,108,107,98,109,111,103,99,95,120,111,106,83,104,102,98,92,107,103,100,83,97,106,106,96,109,108,108,103,104,98,98,114,108,103,103,109,103,96,101,96,112,90,95,91,95,116,89,102,108,90,106,120,104,94,99,103,102,116,110,94,111,90,102,94,101,90,80,107,100,109,106,99,102,85,94,99,109,94,111,104,72,97,105,93,101,98,115,99,98,91,94,105,99,99,106,94,101,117,90,106,107,106,92,102,100,89,94,102,102,99,101,89,107,92,102,81,72,101,99,83,100,105,112,90,96,106,100,97,103,106,96,91,102,97,85,98,94,106,110,97,102,98,99,104,102,97,111,96,117,86,113,98,114,104,99,104,102,95,101,108,105,110,98,98,120,90,96,113,96,97,104,106,106,115,112,101,108,91,94,113,76,96,97,108,95,108,99,96,82, +419.56473,104,106,99,101,96,81,91,99,93,96,109,86,97,91,109,97,94,102,103,98,102,105,105,91,95,109,119,96,116,93,96,98,89,91,111,95,118,98,111,104,97,99,80,103,94,104,100,107,103,87,105,109,100,104,104,106,99,95,95,102,109,103,102,88,114,103,95,96,95,94,101,101,103,98,103,110,101,99,128,108,111,110,88,102,110,101,107,101,100,97,106,88,108,67,93,95,108,76,103,97,105,100,100,97,88,102,98,105,113,102,97,107,102,105,107,102,106,101,103,105,98,108,111,102,95,100,105,97,103,106,101,105,94,102,75,87,104,97,103,95,101,113,106,100,118,95,108,99,102,102,103,101,119,88,88,86,101,87,106,104,102,108,104,102,101,120,106,99,94,110,105,104,99,96,95,109,103,91,101,98,100,105,99,100,114,95,85,59,96,98,92,100,121,105,112,97,109,101,97,95,124,96,103,100,91,109,102,97,100,111,104,109,99,93,110,90,95,100,104,99,102,107,103,92,107,99,103,83,103,111,99,99,98,93,115,94,98,98,98,88,106,88,103,104,101,98,97,119,110,100,103,109,98,102,103,117,94,101,93,98,112,97,98,99,100,99,98,98,93,96,98,110,110,101,109,113,101,95,103,104,113,95,103,97,96,98,109,97,110,109,93,102,99,100,115,100,99,95,100,95,100,98,94,116,98,100,108,116,102,96,88,101,113,94,76,102,107,117,97,98,96,88,99,102,112,101,105,97,101,102,102,104,99,97,96,95,113,100,103,100,107,98,96,96,93,103,100,96,78,110,96,108,96,108,92,101,96,101,88,109,87,99,95,108,98,94,104,106,100,100,90,103,100,92,91,106,100,112,99,93,110,79,99,105,94,99,111,104,104,94,114,136,98,103,94,96,88,91,105,104,104,111,112,104,94,93,107,106,99,104,99,100,97,108,106,104,101,127,101,86,97,92,100,110,97,105,101,96,101,109,97,113,102,92,103,103,62,98,104,102,105,93,113,105,98,105,88,91,104,102,103,120,103,101,89,98,102,106,114,101,103,102,100,91,105,106,110,102,96,99,100,108,106,112,99,117,90,104,99,102,111,101,111,95,91,121,101,94,96,89,101,99,102,86,99,103,102,105,102,99,107,110,101,103,91,99,94,101,106,105,118,104,93,97,109,91,104,107,87,99,98,103,97,103,99,90,104,107,111,96,99,103,103,100,100,102,97,98,104,101,97,103,84,98,105,99,113,105,103,119,106,100,105,109,100,102,98,107,98,99,99,109,103,115,99,107,81,95,96,95,88,103,110,90,102,102,112,100,104,93,89,94,100,108,107,100,114,103,103,108,99,104,91,94,107,104,101,101,99,114,88,105,107,108,100,98,102,107,107,104,101,110,106,112,102,110,99,98,105,94,105,101,97,100,106,116,95,106,106,109,103,104,92,99,96,109,92,94,103,110,106,97,96,101,96,96,105,90,100,98,112,92,99,108,96,116,86,109,102,99,112,97,107,113,101,91,96,102,109,100,97,98,104,109,98,110,107,99,102,101,96,113,119,87,96,90,105,114,104,120,91,108,95,107,107,105,108,112,100,96,100,103,106,102,103,110,109,99,104,92,98,103,109,103,98,102,88,90,107,99,106,99,101,106,95,87,113,116,120,115,108,107,106,92,107,107,117,97,102,100,110,97,103,117,101,103,102,109,102,100,100,98,108,103,100,88,107,108,105,93,99,80,102,92,106,103,103,97,96,101,105,103,94,83,98,93,99,101,103,99,95,108,110,71,103,116,97,103,109,105,95,99,111,99,97,113,102,112,101,104,104,102,97,99,106,111,111,99,95,109,96,100,102,99,96,94,91,103,96,99,100,103,111,103,107,107,103,113,93,106,106,105,100,107,109,110,101,105,108,103,88,114,73,98,101,81,99,90,103,91,102,97,101,100,101,97,99,99,91,88,109,95,106,104,114,106,93,97,99,113,106,102,100,104,102,99,110,90,106,82,100,96,93,115,82,107,94,112,107,98,91,114,105,104,92,95,102,95,104,102,109,105,105,90,113,102,104,104,114,105,92,95,97,101,112,102,104,104,92,103,89,96,113,103,96,91,104,97,105,92,104,100,103,114,96,102,96,111,109,99,101,103,120,111,110,92,117,96,109,96,96,99,112,106,108,110,104,100,96,113,97,96,97,102,100,110,107,97,97,102,94,110,82,100,113,109,103,87,93,98,96,103,105,100,108,97,104,97,108,108,116,92,103,100,109,103,102,90,102,107,94,104,100,103,105,92,106,96,71,103,88,103,76,99,111,107,102,102,99,92,118,104,104,104,83,103,93,105,113,112,114,94,113,105,99,87,101,92,102,105,96,90,106,100,97,89,111,101,104,102,100,99,103,118,108,97,101,108,113,107,104,93,101,102,82,98,102,92,100,95,98,96,116,117,106,99,102,93,109,103,106,96,98,96,112,105,97,101,113,109,100,99,111,101,104,106,110,69,58,93,96,98,95,111,98,104,110,92,98,86,72,110,109,99,106,100,99,115,105,94,108,92,95,105,95,101,98,99,106,96,105,112,108,79,112,90,89,89,96,106,98,93,98,113,90,104,99,111,115,98,101,99,94,110,97,101,98,102,84,109,101,107,105,105,106,99,102,100,108,112,96,101,103,113,99,91,100,91,103,105,97,101,101,105,101,89,109,98,95,108,102,102,112,114,96,105,98,97,109,106,103,108,95,104,116,110,103,100,113,83,107,112,104,109,82,91,106,108,73,97,108,97,94,104,95,102,92,100,108,101,95,93,103,107,101,106,107,105,116,105,105,94,107,98,107,111,104,109,98,100,107,111,107,103,100,104,91,104,109,135,95,92,111,106,97,107,103,97,90,88,101,105,104,102,98,95,107,107,96,100,104,104,110,103,98,107,101,103,99,104,96,102,94,111,101,115,97,101,103,104,105,110,102,111,102,108,96,107,100,87,103,104,102,102,107,110,110,94,103,121,102,104,95,100,104,91,100,99,95,105,96,98,103,104,107,90,98,106,97,97,106,108,116,103,105,99,95,113,112,93,98,96,77,99,93,84,95,101,98,99,100,102,106,104,102,101,90,106,106,87,100,94,104,107,109,109,99,117,109,86,105,95,110,97,109,92,96,90,92,100,117,99,98,128,108,111,98,95,89,111,103,97,101,113,104,94,99,107,103,99,110,109,94,102,101,96,96,113,111,98,106,110,99,91,105,106,98,95,109,113,96,91,108,103,96,110,103,109,98,106,98,104,103,104,103,93,114,109,115,104,98,96,103,109,108,103,97,100,99,96,101,102,103,100,102,111,99,97,91,106,104,116,94,113,99,111,127,103,117,95,95,102,95,97,107,106,99,111,95,102,103,95,96,107,107,102,95,110,105,102,95,97,102,100,89,102,105,99,104,117,100,97,100,90,101,108,101,94,92,108,103,98,98,105,95,115,106,105,98,108,102,99,95,108,99,101,108,100,110,97,120,104,99,100,82,98,97,83,103,90,98,106,101,108,98,95,98,104,97,94,126,96,105,100,101,108,98,106,110,107,116,103,112,99,93,102,100,91,109,117,95,101,100,112,87,95,96,102,108,108,105,108,101,97,96,109,112,104,109,96,90,104,114,94,110,101,104,100,88,105,70,92,102,112,95,107,102,112,100,108,105,110,103,99,102,95,97,94,97,107,100,113,101,110,106,95,98,98,103,101,101,107,120,93,108,99,100,98,109,94,106,96,104,92,99,102,117,96,102,109,107,100,101,88,105,103,109,95,101,110,109,103,94,98,86,105,102,111,108,104,116,104,108,103,96,112,112,97,105,98,100,113,100,104,101,95,102,101,106,105,105,98,98,109,104,104,96,93,99,107,97,115,106,102,94,115,89,104,72,103,104,96,98,109,105,98,102,98,94,85,100,92,105,104,102,110,109,105,95,114,99,90,97,100,101,123,106,90,104,108,86,105,98,109,105,105,103,101,105,95,98,108,104,100,110,102,98,105,112,102,112,95,109,97,97,105,105,103,97,102,102,96,109,88,102,121,96,121,107,95,115,95,91,106,98,111,104,105,93,97,105,108,110,117,99,97,99,102,104,102,99,94,101,102,110,111,106,103,106,99,109,98,90,103,107,109,101,116,108,87,104,97,94,72,115,105,103,102,109,98,108,101,103,93,110,101,100,97,103,96,111,105,114,104,82,99,104,99,100,108,110,107,103,95,87,105,98,113,91,105,99,92,109,91,97,113,91,109,110,97,116,90,113,91,120,108,94,103,96,99,103,103,108,103,102,99,98,105,116,107,96,105,105,102,101,102,102,100,92,99,111,108,76,101,100,101,109,76,98,93,109,104,107,109,92,97,107,102,114,107,107,110,109,102,101,101,96,113,98,91,89,94,103,108,97,128,93,96,108,108,109,94,99,98,101,95,99,95,109,111,107,107,98,124,107,102,112,96,102,109,95,97,90,100,92,100,99,97,109,95,99,90,99,102,101,87,103,93,100,100,95,104,105,99,99,86,102,103,102,102,104,112,99,106,96,98,87,95,116,99,105,98,86,101,81,113,104,99,100,94,105,86,105,101,98,88,122,95,113,104,104,108,127,93,98,104,108,116,90,104,105,106,98,115,117,90,90,103,95,91,90,105,98,99,89,96,91,102,120,96,87,101,104,105,96,104,102,95,107,98,113,103,106,101,105,100,87,106,99,96,100,105,105,103,97,101,116,90,103,98,107,105,96,107,107,114,73,104,100,99,90,112,105,107,99,99,100,94,92,88,99,97,108,102,89,105,102,95,93,106,90,105,98,99,92,113,87,132,104,93,112,93,101,106,104,100,93,98,97,93,90,99,105,87,106,105,96,95,102,99,103,91,87,102,99,98,93,94,102,91, +419.70496,91,89,108,100,106,97,100,109,109,100,93,107,103,107,110,102,96,133,89,106,99,94,101,98,110,105,104,103,100,105,105,96,108,108,90,106,99,91,104,124,108,99,98,84,112,95,107,92,95,96,120,103,113,101,103,74,86,95,107,98,105,106,102,95,104,130,104,64,99,97,92,100,93,117,92,100,93,104,96,101,98,95,99,99,102,90,94,108,94,95,95,94,106,103,100,96,97,95,88,98,104,99,98,77,95,91,103,97,104,95,97,97,115,101,98,110,103,106,122,101,94,100,97,109,114,109,107,102,104,97,97,89,106,100,104,112,98,107,91,100,97,107,95,103,95,106,115,96,89,91,96,98,99,90,93,94,95,123,104,110,90,104,109,115,98,111,94,95,106,104,111,96,101,100,112,103,98,94,98,109,102,100,95,105,104,110,99,106,98,108,107,96,116,81,105,102,104,108,98,106,106,100,100,103,117,107,97,103,115,99,94,107,100,85,99,97,105,115,89,101,115,104,101,109,100,95,106,101,106,97,84,98,97,99,105,90,104,99,100,106,83,116,102,95,95,98,95,99,104,102,103,107,104,110,80,103,95,105,95,101,91,110,101,100,100,106,113,101,106,108,101,109,105,107,103,104,102,100,106,105,103,99,101,100,97,97,99,101,110,97,98,102,107,100,100,102,103,107,104,104,102,111,101,104,90,112,104,100,97,104,98,100,102,86,90,104,107,110,95,107,116,104,112,101,105,97,87,89,107,99,105,107,102,109,99,107,117,99,80,106,103,101,114,98,102,102,114,106,93,113,97,104,91,101,101,106,109,92,100,107,86,99,94,101,85,96,101,109,101,116,100,105,106,101,98,99,111,99,95,108,116,112,93,106,105,98,91,103,90,116,115,96,90,105,103,98,83,87,117,109,93,98,102,112,97,91,110,110,102,106,91,104,106,105,109,101,107,106,105,105,98,107,110,104,110,94,100,95,95,116,97,107,105,97,103,102,104,87,108,116,100,102,104,105,102,98,98,99,101,104,108,114,102,90,113,108,103,102,87,105,104,99,100,103,105,121,107,100,94,90,100,107,104,96,101,104,102,103,83,105,89,112,104,79,94,98,113,100,112,99,101,110,110,106,104,99,99,101,98,97,103,108,111,110,108,100,98,93,104,110,102,110,99,96,103,106,94,95,96,106,97,95,105,93,105,109,116,119,89,114,100,100,104,88,90,91,96,95,96,115,101,100,102,102,108,105,102,104,106,115,92,88,102,113,99,116,97,89,105,97,100,86,99,98,101,109,103,96,94,97,92,98,99,104,103,98,104,101,99,98,105,102,99,97,102,109,102,106,98,101,106,103,112,104,98,101,107,103,108,99,77,95,101,107,92,97,91,75,102,115,108,99,102,102,105,101,97,92,101,101,117,95,106,97,103,99,108,100,108,109,100,99,101,97,90,109,113,103,93,100,103,118,95,100,102,97,99,99,100,89,100,108,104,107,98,112,102,101,99,112,114,101,96,98,96,112,104,91,99,102,109,102,110,99,100,99,103,102,112,114,90,110,104,94,98,100,100,104,103,113,117,108,102,113,105,90,105,95,111,106,104,86,105,103,107,114,105,100,99,109,101,105,107,101,90,91,103,101,98,98,101,104,104,105,80,98,106,100,109,119,112,108,104,106,92,103,105,98,103,101,101,108,108,106,105,91,106,82,105,108,106,100,91,90,107,114,93,105,113,110,107,107,88,91,100,93,90,95,85,101,104,100,92,92,107,112,108,90,102,90,94,106,109,96,103,119,109,104,93,109,118,105,101,97,97,97,99,87,109,95,105,102,107,108,109,127,106,77,104,101,106,101,86,95,108,101,106,112,98,111,107,108,100,103,108,111,108,104,95,96,104,105,104,106,98,113,111,95,102,114,111,97,104,105,104,99,106,100,98,95,98,103,105,99,105,109,106,105,98,94,98,99,97,109,107,111,84,109,103,101,105,108,102,101,98,93,99,90,98,103,94,95,110,113,104,105,109,104,102,100,111,105,100,99,105,99,99,99,110,122,106,105,102,102,102,98,95,102,104,103,102,102,96,109,112,105,106,101,96,109,105,110,104,97,104,102,105,114,97,103,98,121,106,99,104,108,101,108,96,104,118,103,100,101,98,102,98,91,103,111,102,102,101,106,106,113,105,100,95,100,118,109,119,99,106,109,99,100,113,109,104,108,105,102,107,90,102,109,102,108,104,103,97,104,106,104,90,93,104,96,109,100,101,105,104,97,79,109,99,102,99,89,99,103,111,102,96,98,95,109,91,101,100,100,103,110,98,93,101,98,114,105,105,100,104,114,94,104,110,104,91,94,102,105,104,104,103,104,111,104,110,102,92,97,95,102,113,104,106,100,97,99,102,107,94,108,103,105,102,98,97,104,109,110,100,104,94,95,97,102,98,99,106,102,97,98,97,92,103,105,107,95,98,99,96,99,87,101,110,100,104,95,101,96,95,110,99,94,103,97,97,100,114,104,103,94,103,101,94,102,116,108,104,94,95,90,89,106,105,101,107,95,92,109,107,104,94,72,102,94,112,95,109,94,94,93,104,100,101,108,97,97,92,106,97,101,99,94,78,99,103,106,107,107,99,85,103,106,104,106,103,82,106,98,106,113,98,108,102,98,98,100,100,100,99,104,94,97,91,105,99,96,92,100,100,98,100,112,99,89,96,97,106,96,88,109,101,92,102,97,102,106,96,110,106,105,99,95,94,105,108,94,91,104,103,101,106,107,106,115,102,112,100,92,91,97,103,99,96,96,106,103,104,93,101,96,82,102,104,94,102,107,107,97,97,96,94,88,107,104,113,103,106,99,101,105,101,104,75,100,117,105,96,105,111,104,109,102,98,101,109,105,99,96,99,99,101,105,112,94,102,116,83,112,97,104,95,81,90,61,102,94,91,96,101,102,101,86,98,103,98,102,87,102,103,92,119,103,107,106,100,94,100,107,107,102,100,95,110,100,100,111,101,100,104,100,107,109,76,97,101,97,99,99,108,101,96,107,104,105,102,108,127,98,108,104,101,103,111,116,114,103,95,99,98,85,99,90,103,99,101,102,107,109,111,92,108,111,110,87,113,99,88,109,99,110,94,99,100,117,107,103,102,104,109,91,95,93,87,96,93,91,101,95,67,95,101,103,108,108,105,107,94,120,105,101,105,99,96,99,88,89,107,97,104,89,107,92,96,97,94,103,101,93,95,107,101,101,114,95,105,102,88,106,106,108,105,104,96,106,111,109,100,98,101,96,105,108,105,97,98,102,105,105,102,105,105,108,111,100,104,101,99,100,105,101,97,94,103,99,93,103,92,105,95,99,100,106,109,83,91,109,107,100,94,106,109,93,91,100,104,103,104,115,98,96,94,96,101,101,96,97,115,99,95,108,105,94,110,111,109,106,94,102,100,78,94,103,106,104,110,95,102,105,99,117,99,108,101,104,101,91,87,97,100,104,104,108,101,100,110,109,94,102,105,104,104,110,97,102,103,100,97,101,100,122,100,104,97,88,92,94,86,106,105,101,99,107,108,103,91,108,104,106,95,98,106,101,92,99,100,97,91,101,102,89,91,103,106,96,102,105,101,113,108,99,100,101,112,111,101,102,101,96,97,98,100,103,117,98,104,98,95,104,109,93,108,106,116,96,100,106,99,98,97,102,96,106,83,107,107,95,106,105,108,97,113,110,109,102,101,101,101,103,103,105,98,108,103,101,99,97,100,89,99,101,103,103,95,96,93,103,105,97,106,116,110,108,90,103,100,96,104,103,101,101,93,106,97,112,110,102,102,95,108,97,99,94,105,97,96,104,100,108,107,91,104,110,103,103,98,97,98,101,106,94,103,97,88,94,83,104,91,112,94,106,102,96,112,87,98,99,101,88,96,93,99,102,100,93,108,100,105,116,98,95,120,105,98,103,96,116,109,97,103,102,102,101,101,103,99,110,93,103,108,117,102,101,112,102,100,112,91,94,104,99,104,92,102,107,110,101,104,110,106,111,102,98,102,117,114,105,98,99,108,106,95,97,98,96,105,104,111,104,96,102,92,102,91,102,102,112,99,113,94,112,104,105,103,87,103,100,101,106,105,107,101,102,99,83,103,95,88,98,112,92,104,98,104,110,100,93,91,95,107,102,98,102,95,98,96,103,98,101,106,102,101,96,102,109,106,100,109,109,100,99,96,106,96,89,106,93,90,99,103,92,118,112,94,89,108,95,110,105,95,104,93,99,97,100,105,96,98,107,106,87,95,98,104,98,92,91,97,103,106,113,100,96,95,110,102,98,104,88,109,107,103,88,90,98,102,95,89,128,79,87,97,100,106,105,82,91,92,104,110,99,103,81,95,106,94,100,115,97,107,102,95,110,85,91,95,102,100,106,93,94,93,101,108,92,95,103,104,103,104,102,110,94,106,95,101,111,113,95,97,90,105,101,112,84,101,88,101,90,101,101,101,97,93,99,90,96,95,103,97,108,106,101,96,90,99,100,99,94,91,101,110,106,109,107,99,113,99,87,104,94,108,101,102,99,105,95,98,100,107,111,115,103,94,91,106,88,100,106,102,104,93,105,103,102,93,102,94,107,94,100,120,139,105,105,90,99,107,99,95,99,95,101,87,102,106,84,112,89,103,66,114,109,112,102,91,93,108,93,101,103,95,100,104,83,102,101,103,98,89,97,95,102,99,94,107,99,84,102,98,121,109,89,108,84,111,102,98,88,106,102,99,113,96,97,107,93,108,90,100,98,106,89,107,76,107,90,101,118,105,105,100,98,91,87,97,97,106,96,95,101,105,102,100,108,103,100,91,98,93,104,93,105,117,102,103,109,98,103,70,99,92,107,93,77,97,101,90,91,106,108,84,96,94,96, +419.84518,90,104,91,96,98,94,95,104,92,80,113,109,97,108,104,101,96,94,105,97,99,98,103,108,96,104,92,76,98,105,94,98,97,93,97,104,113,92,108,107,107,96,86,113,104,107,110,95,107,113,82,104,80,92,99,104,102,109,101,71,101,108,98,88,103,100,95,96,90,97,93,100,121,105,109,100,92,99,95,99,107,108,101,101,103,103,109,112,62,100,97,96,83,102,106,90,109,100,96,101,94,101,91,108,105,102,100,113,97,95,101,89,90,105,96,93,99,105,101,78,93,96,87,112,107,99,110,98,103,96,92,103,95,96,110,101,103,99,106,101,103,106,101,89,110,94,102,99,101,86,96,101,105,102,92,91,95,85,98,116,100,112,91,97,109,109,94,99,110,103,96,105,91,107,107,83,91,100,108,104,91,120,78,107,88,101,105,101,67,107,97,96,93,97,108,100,94,98,98,94,105,102,98,104,102,113,108,93,107,93,94,90,99,102,99,108,94,96,103,88,101,105,104,107,110,95,108,98,115,108,101,112,95,105,107,104,104,100,97,113,106,90,108,101,106,105,99,104,100,101,114,111,98,99,113,99,107,95,92,104,102,96,100,100,103,107,103,95,105,87,108,91,101,103,93,99,91,106,101,99,96,130,96,105,98,98,97,111,110,101,100,95,95,100,102,96,113,95,97,99,95,110,104,96,97,103,110,99,114,110,75,99,99,99,94,98,94,91,106,119,95,106,111,105,99,99,96,105,104,99,104,112,96,95,93,107,110,107,91,99,96,99,100,108,98,101,109,99,96,100,105,99,109,108,108,92,112,109,104,101,98,91,97,119,98,110,103,98,98,100,110,96,96,98,100,100,91,104,103,105,106,91,94,115,90,89,100,112,109,109,101,79,100,100,90,106,99,91,102,126,88,96,125,91,99,93,87,108,117,110,100,104,97,107,105,91,84,99,94,106,99,97,109,95,112,102,108,95,103,107,85,107,112,103,102,103,64,98,95,102,105,108,104,92,106,95,100,97,121,97,92,110,118,99,91,116,109,96,107,108,109,106,106,102,104,112,106,101,103,111,102,97,96,97,98,92,98,103,99,107,96,107,100,99,96,83,87,111,101,105,103,108,65,93,110,111,110,107,102,96,110,103,112,87,98,95,102,105,99,99,107,107,95,107,96,79,97,99,112,92,95,107,102,111,110,109,101,93,98,105,101,98,104,114,107,104,100,107,98,105,95,94,107,113,99,89,102,89,115,95,111,100,107,103,97,116,91,106,115,104,108,89,101,103,106,98,103,111,99,98,90,94,104,101,92,105,91,103,95,113,103,94,99,107,107,87,110,107,107,99,121,109,112,103,100,103,96,88,100,110,99,105,103,98,111,106,100,90,93,97,107,99,105,98,110,111,107,101,103,102,94,100,99,106,97,99,86,94,96,122,106,104,101,87,96,129,104,99,99,102,98,104,95,94,111,97,96,107,98,103,102,98,92,94,91,102,113,104,99,100,71,102,98,109,92,103,95,104,94,105,113,97,106,106,106,109,104,99,106,90,79,98,98,95,102,97,99,122,93,121,95,107,98,106,114,102,102,109,106,101,95,90,83,104,109,85,113,121,100,107,106,86,115,105,92,80,99,102,103,84,99,99,94,112,108,102,104,106,83,96,99,104,106,97,97,99,106,109,106,95,94,103,108,104,99,96,74,108,94,115,112,101,94,92,102,112,100,111,97,85,100,112,95,93,105,91,95,85,100,91,117,99,102,110,114,96,96,101,98,96,99,98,103,64,99,104,104,91,102,105,104,102,108,100,102,101,109,97,106,97,91,122,92,103,89,89,111,109,92,110,109,98,101,103,111,111,107,103,94,108,100,102,109,107,97,87,110,101,104,98,112,103,107,114,97,106,99,96,103,107,102,97,98,92,108,98,105,101,97,101,87,92,101,107,98,99,109,100,115,109,106,104,109,105,117,103,100,113,96,112,112,102,101,117,89,100,116,95,94,88,101,103,109,103,77,103,103,106,102,108,101,99,94,103,97,80,102,94,103,111,99,111,96,107,100,99,106,100,92,104,100,106,99,105,97,112,109,113,105,99,116,91,99,104,103,104,101,96,95,103,109,113,104,98,110,78,95,110,105,100,104,98,102,113,93,105,87,97,99,120,97,105,107,110,106,105,95,104,102,105,110,102,96,95,97,106,84,101,105,90,94,116,107,91,99,106,105,102,105,103,105,97,96,100,97,100,105,97,117,103,114,104,106,93,97,93,84,102,106,102,105,95,111,111,106,96,106,105,99,102,104,110,101,104,91,100,96,109,108,105,103,94,102,91,105,101,103,100,103,104,116,111,108,87,98,86,107,107,105,100,109,120,92,114,102,94,99,101,93,101,95,112,96,90,92,108,114,106,95,104,91,106,105,106,109,100,106,104,97,105,109,111,105,102,90,95,95,100,98,105,105,100,99,107,100,103,90,95,108,104,97,91,105,98,101,117,114,102,109,105,103,97,111,100,97,111,95,106,100,104,104,100,112,99,96,99,93,101,81,99,98,98,98,111,94,102,99,111,106,95,104,124,92,93,101,108,100,105,96,93,101,99,89,112,105,108,108,109,106,94,112,106,103,104,112,124,91,89,96,105,83,105,94,64,99,109,98,102,106,94,102,93,94,92,106,111,107,110,103,93,102,89,95,95,96,87,113,99,84,101,102,101,96,92,97,100,96,101,96,117,95,98,97,91,107,96,88,96,91,113,93,104,79,90,98,115,100,117,108,94,98,103,89,93,103,99,112,106,101,105,92,113,102,104,106,104,99,102,109,101,100,105,100,108,90,102,110,95,87,115,111,110,107,113,102,96,105,103,104,103,89,98,96,99,124,89,88,98,106,106,104,99,106,108,105,91,96,88,120,135,116,91,107,103,97,108,104,95,91,102,105,107,113,93,100,95,104,101,96,98,101,103,94,94,105,92,106,107,101,107,107,86,107,93,94,106,102,104,98,103,108,91,103,110,100,102,113,100,101,93,108,100,96,117,108,100,99,92,103,100,103,102,102,96,95,98,110,104,123,108,105,109,91,105,96,103,108,107,93,100,103,103,114,107,97,116,98,102,94,101,91,102,98,114,100,98,91,108,108,105,102,100,98,106,105,100,96,104,101,109,102,99,112,104,92,102,96,113,98,74,108,99,98,106,91,104,98,103,110,95,113,98,97,98,109,92,96,99,84,103,104,103,108,100,103,99,100,87,94,101,102,105,107,101,88,97,106,107,110,102,100,92,107,96,101,123,92,99,99,101,94,99,102,98,102,109,100,88,108,97,100,100,111,101,107,82,100,102,88,97,93,97,83,106,85,102,104,104,103,99,105,98,105,95,86,92,108,104,103,99,102,87,104,105,95,109,106,94,104,100,92,102,116,94,86,106,106,99,116,108,104,106,106,86,104,96,116,95,99,93,97,98,101,96,89,94,109,102,98,98,106,105,107,95,95,98,94,93,94,103,102,109,108,103,107,106,103,101,102,109,107,98,96,104,97,105,105,104,91,109,95,95,106,99,97,98,101,104,101,109,125,92,93,104,102,103,104,92,106,101,101,96,82,103,105,102,97,101,100,96,97,104,112,95,95,94,98,100,103,104,97,97,94,109,97,102,99,108,99,107,104,108,102,93,91,89,87,103,102,102,97,104,80,95,111,98,100,102,100,105,96,102,107,103,113,94,103,100,104,106,91,99,96,96,108,95,93,107,103,93,101,95,97,99,101,99,104,101,125,85,98,100,96,93,98,100,98,101,100,100,105,115,92,97,78,108,98,104,105,93,102,99,80,115,101,106,108,107,90,106,106,99,96,105,96,98,92,101,106,100,94,104,88,100,93,97,95,107,92,107,96,110,96,120,103,99,103,96,93,97,97,109,104,87,92,87,101,90,120,109,103,92,98,68,90,100,75,92,96,95,97,74,87,111,112,105,89,94,106,94,89,101,105,104,97,115,109,107,105,106,90,104,96,98,91,106,102,106,105,109,103,91,104,130,102,100,102,98,106,100,101,111,101,108,105,95,102,99,117,103,109,105,103,95,98,98,97,115,113,106,92,87,97,107,104,113,91,96,98,103,100,118,90,113,101,105,93,102,96,102,92,103,92,105,104,95,91,105,115,102,115,107,81,106,102,96,94,102,101,92,100,91,106,91,106,102,98,102,110,108,92,91,120,103,106,112,101,110,108,99,99,93,107,103,111,91,121,108,100,98,95,110,93,94,101,99,97,96,101,100,95,86,108,105,96,95,109,107,91,102,113,91,101,97,94,88,99,97,100,113,105,101,101,101,100,102,98,99,100,116,102,98,109,98,105,102,91,104,109,99,125,105,107,107,102,102,79,84,100,104,91,102,93,100,105,107,103,101,115,100,99,94,98,104,111,111,98,113,94,105,102,101,100,100,100,102,87,88,95,105,104,97,101,98,98,106,94,103,107,101,106,95,99,98,95,59,95,104,96,106,96,99,102,102,95,104,94,104,100,95,92,96,90,105,101,89,95,116,103,108,104,101,104,105,95,92,94,106,102,100,83,93,107,83,103,131,109,100,101,109,100,98,95,108,99,103,97,98,102,109,98,103,91,98,93,100,110,97,114,107,94,69,107,87,113,95,106,86,99,93,106,112,94,108,99,109,105,94,77,102,105,102,96,105,95,97,101,113,100,119,94,98,101,108,99,106,91,94,114,99,90,93,89,93,99,104,96,106,105,117,103,92,96,100,98,98,95,90,103,107,103,100,107,95,89,109,101,100,102,108,103,104,73,99,97,110,97,107,95,95,108,106,94,101,94,105,98,97,115,111,98,99,90,97,105,108,106,102,98,138,96,104,98,80,113,83,79,115,105,105,109,74,102,100,93,90,102,100,103,84, +419.98544,95,83,91,86,85,99,115,98,100,100,100,104,94,89,107,107,104,120,81,90,106,95,84,116,94,103,108,94,94,101,99,106,100,96,90,90,100,105,99,110,100,90,112,91,99,120,90,97,91,109,96,86,101,96,101,90,112,93,103,109,92,101,96,89,106,93,89,95,89,102,110,91,99,104,102,95,98,95,92,105,92,91,91,98,105,99,95,88,98,101,103,99,83,115,99,105,95,116,102,96,90,89,102,71,93,116,97,107,102,97,111,88,102,87,92,101,98,93,99,99,95,98,111,89,103,76,104,84,121,109,91,97,116,102,102,96,118,102,97,97,104,95,103,94,94,96,105,101,91,103,115,97,98,100,93,103,104,99,126,69,100,102,97,100,113,108,83,96,103,97,98,116,95,99,104,87,105,94,107,87,92,82,100,91,93,102,100,97,97,95,97,107,97,101,95,101,86,105,95,96,101,100,91,98,104,105,113,100,108,110,95,101,105,98,102,81,107,107,92,101,99,97,94,105,98,111,95,100,99,105,99,99,110,108,99,96,90,100,88,96,103,104,105,98,93,93,92,112,103,104,98,108,103,100,113,103,100,96,94,97,91,107,91,109,80,100,108,106,94,97,98,98,113,89,103,106,104,110,100,111,103,105,112,99,96,106,100,99,102,96,109,97,108,102,83,97,105,100,104,107,94,103,96,108,90,101,109,98,94,101,98,105,108,107,94,96,106,114,109,100,101,99,92,91,94,106,106,91,111,108,109,111,83,98,108,99,100,101,105,114,107,104,93,101,94,101,103,87,107,96,104,107,114,139,90,105,98,103,109,73,112,100,113,103,98,98,95,112,95,100,101,102,104,109,97,101,103,101,99,97,103,101,101,95,101,98,101,99,97,93,103,97,90,101,100,103,100,88,98,116,104,100,101,99,105,104,97,102,97,96,97,95,108,106,96,98,87,93,92,95,107,94,89,99,93,100,88,91,107,93,97,98,101,102,100,98,92,92,105,123,106,109,89,97,102,103,86,98,110,112,91,106,106,95,100,101,113,110,110,103,90,103,96,108,106,111,100,95,103,109,102,110,95,97,96,86,105,114,103,95,98,84,111,99,111,83,100,116,93,101,95,101,101,103,100,93,96,104,88,105,107,98,94,101,102,102,98,104,108,86,97,97,114,109,108,101,95,102,99,102,102,101,106,89,99,104,99,101,109,98,99,107,93,103,113,83,112,103,98,105,95,116,95,88,99,97,113,99,88,111,102,101,100,96,105,92,103,96,98,99,104,102,98,109,109,104,102,109,119,99,108,111,85,108,96,108,105,94,101,108,111,102,102,100,108,118,109,100,101,100,110,94,99,102,101,96,96,101,103,98,96,109,99,99,106,100,95,108,101,102,109,97,104,98,100,109,101,106,105,107,112,87,101,95,100,107,94,97,99,102,97,82,91,117,101,94,112,101,96,113,112,98,118,104,105,93,104,100,110,105,94,103,105,101,86,109,106,105,86,108,114,107,108,104,100,106,92,90,109,101,106,99,102,93,84,109,102,98,102,90,99,90,106,100,104,101,102,99,101,87,109,107,93,108,111,94,99,104,102,89,103,97,110,95,87,97,92,102,88,108,107,107,98,94,96,101,103,116,107,82,110,91,96,100,97,93,94,107,89,95,101,101,97,104,95,103,98,94,99,95,103,103,99,87,94,90,106,109,105,104,93,109,104,101,104,92,99,101,113,102,99,109,101,105,85,101,104,98,110,98,94,104,97,102,102,92,102,100,96,106,103,101,104,109,101,100,108,92,102,100,100,109,131,100,96,100,101,83,97,89,112,97,87,105,101,108,94,97,89,106,95,105,94,108,113,97,99,101,103,101,96,103,90,107,93,103,91,90,98,107,97,93,100,96,105,97,101,100,94,113,103,99,125,90,104,108,104,111,94,69,97,87,98,113,93,101,106,95,96,113,78,110,91,97,96,99,88,95,98,112,95,109,104,104,90,101,107,89,98,101,96,100,116,103,87,97,97,105,100,94,95,111,106,104,111,91,105,97,93,99,99,102,108,105,89,89,101,110,92,102,100,130,103,99,95,102,107,100,94,103,108,96,105,109,87,109,98,106,88,94,105,96,113,101,102,97,91,106,96,95,107,106,103,113,98,99,62,80,91,99,101,110,100,117,98,96,109,101,98,96,91,105,100,92,128,100,98,105,87,107,102,103,107,96,98,83,105,103,103,105,96,105,108,106,102,102,63,90,103,98,102,101,92,96,103,97,99,105,100,103,94,91,89,72,108,99,100,100,94,105,83,105,86,93,101,111,106,94,99,114,115,95,92,91,96,90,101,105,88,116,102,105,101,100,112,87,97,114,91,96,92,92,100,92,87,103,100,95,92,109,107,112,96,106,99,110,103,102,96,110,103,109,79,97,71,103,103,97,103,95,99,106,93,106,100,87,114,101,101,95,104,113,82,106,99,97,103,100,113,105,106,104,102,101,104,113,100,98,109,106,113,98,102,110,102,100,95,98,105,101,97,109,98,106,103,105,106,106,95,116,95,99,98,92,89,93,104,107,98,98,110,115,93,128,116,91,105,110,98,95,101,102,96,111,108,111,77,102,105,106,109,104,110,114,99,106,96,103,101,94,99,95,105,89,98,112,85,98,109,94,99,87,105,98,102,103,108,81,109,109,95,100,100,105,110,95,110,98,102,106,100,100,106,102,98,88,107,94,99,109,93,98,93,104,98,99,101,116,99,98,107,109,103,96,98,101,110,95,95,91,102,105,102,99,93,103,92,104,106,108,105,94,95,96,100,109,90,87,102,109,100,98,100,99,94,107,105,102,105,95,99,100,95,117,88,92,100,101,139,95,105,112,105,101,108,96,100,106,91,105,100,101,109,108,91,100,108,99,98,105,109,89,89,100,98,97,108,99,92,98,113,108,94,96,104,94,128,104,104,98,103,109,94,115,106,88,99,110,118,115,103,102,104,97,94,114,107,103,97,109,112,96,95,96,82,103,107,99,108,105,99,91,93,114,112,94,96,108,98,108,103,102,94,99,103,113,102,96,112,115,102,97,89,106,92,100,105,104,102,102,99,103,104,92,96,90,107,94,96,102,90,122,100,107,92,104,98,93,95,106,89,102,104,76,112,93,105,106,98,90,90,97,106,100,109,100,88,92,110,101,96,100,87,100,99,107,102,98,105,91,103,105,101,80,110,87,86,105,105,101,110,98,99,104,94,88,100,102,109,89,101,106,110,100,110,104,109,103,88,99,90,100,100,105,110,104,86,111,94,92,98,101,103,99,98,105,108,100,112,108,112,71,101,100,105,96,95,92,124,99,104,112,99,89,99,105,104,99,111,103,100,98,104,105,91,100,93,102,109,97,94,99,96,102,102,107,105,106,102,99,109,91,95,104,91,88,109,95,114,99,107,98,104,106,103,112,98,109,106,96,104,99,108,97,96,94,109,104,96,98,106,98,101,107,104,104,72,101,109,103,106,101,101,99,102,109,98,114,100,105,103,91,106,96,94,106,92,101,98,125,90,103,98,99,94,104,92,105,104,105,111,105,105,93,96,109,83,134,92,101,108,87,101,108,98,119,100,102,104,107,97,107,108,95,95,98,96,98,101,105,95,113,105,91,99,108,95,103,109,109,97,105,85,105,84,103,101,105,105,100,100,100,108,104,115,120,108,105,100,102,101,109,94,99,102,110,97,94,97,94,110,101,85,91,101,107,98,102,101,98,104,95,95,95,97,103,96,106,108,100,115,94,105,96,94,108,90,96,102,91,101,99,98,101,103,104,95,99,89,105,103,117,105,95,106,94,107,127,104,114,106,103,108,101,99,106,94,87,104,102,93,107,97,97,119,97,107,92,100,105,110,117,95,98,123,102,91,95,100,103,97,99,100,96,60,94,96,96,91,108,94,105,115,87,104,103,112,105,100,98,104,99,94,99,96,108,112,105,100,91,103,98,105,96,100,105,109,111,109,98,83,96,105,103,116,104,100,96,90,112,105,112,109,97,105,95,118,96,103,109,100,93,95,102,97,107,105,100,106,97,99,99,109,95,89,104,114,95,95,102,117,107,104,104,116,117,101,101,100,111,104,105,106,110,102,110,110,97,122,108,109,96,95,103,90,92,94,91,103,120,87,95,105,97,97,105,92,100,97,87,106,115,94,102,97,105,105,108,102,95,111,101,95,109,105,102,89,96,105,101,105,105,84,98,100,113,94,98,97,82,105,95,100,101,94,96,91,98,95,105,96,81,99,87,91,102,99,98,107,111,103,95,108,101,106,105,103,105,98,111,105,95,101,98,102,93,106,105,110,95,97,105,109,96,103,83,88,114,97,103,108,106,117,94,100,101,104,109,106,88,103,94,83,100,96,98,99,101,102,112,96,76,94,105,105,97,94,102,137,98,111,87,96,106,103,86,80,106,95,110,101,107,99,108,108,97,100,117,99,101,100,94,103,101,103,104,86,100,108,90,91,99,98,113,100,91,93,107,97,90,91,95,97,95,95,105,94,108,98,108,91,98,99,90,100,101,105,106,77,97,113,108,106,104,95,94,100,100,96,99,94,100,90,101,94,109,96,104,104,110,101,96,99,109,93,98,102,116,104,102,108,98,103,111,102,97,104,110,98,96,95,85,93,105,94,105,102,113,115,104,94,92,94,89,105,101,108,88,109,93,102,108,89,104,110,99,99,103,92,101,103,102,87,108,91,87,99,98,102,100,111,99,111,100,96,106,102,126,88,68,96,77,100,82,109,94,105,96,92,94,122,102,114,86,98,99,95,110,101,86,98,98,95,101,102,101,92,103,106,93,96,105,97,101,83,98,94,106,111,95,107,91,95,98,92,102,98,104,100,91,83,96,93,106,101,91,110,88,85,103, +420.12567,91,110,80,102,105,111,96,97,107,98,103,104,104,102,110,99,73,107,104,96,108,103,107,97,105,102,102,109,98,103,102,98,97,100,105,97,105,86,90,100,92,103,93,107,106,97,101,100,105,104,98,109,97,102,96,93,102,92,83,96,104,90,106,102,88,102,104,109,98,96,120,102,108,97,124,102,99,108,107,100,104,102,100,112,111,105,99,97,97,94,104,98,101,109,105,87,91,95,109,104,106,99,99,98,80,110,98,103,93,93,100,97,102,100,109,100,103,112,99,105,104,97,113,109,104,108,114,102,101,107,106,92,91,101,111,104,95,103,97,108,105,101,95,97,98,94,95,96,100,99,106,96,96,94,98,96,99,99,102,98,103,106,97,105,104,104,102,95,109,97,101,100,107,100,104,93,88,95,95,94,100,103,106,105,110,96,101,95,88,92,103,106,92,95,102,90,86,97,103,94,120,98,123,109,97,103,87,93,108,105,97,105,101,82,99,98,97,114,96,95,102,107,105,109,94,119,102,110,104,102,107,102,96,100,108,109,101,109,113,113,97,106,106,100,93,99,99,105,102,105,107,111,95,103,96,97,92,96,105,93,87,94,98,114,95,115,107,103,104,104,91,115,100,101,100,108,112,98,104,103,106,113,102,95,98,102,104,112,106,101,102,101,104,105,95,106,101,103,80,100,107,101,113,109,93,113,109,83,110,103,100,105,112,104,102,109,102,100,131,100,100,91,112,96,100,99,77,108,106,112,106,98,109,96,104,101,110,92,108,103,102,116,102,99,110,100,107,105,98,95,119,105,100,103,109,101,98,96,98,99,98,108,111,104,98,102,111,106,95,117,109,103,109,99,102,102,113,102,97,92,105,108,99,116,66,109,98,99,87,108,99,97,94,102,86,85,111,104,102,106,102,98,100,111,100,97,108,99,99,102,94,102,89,104,96,96,94,104,110,89,80,100,104,104,94,98,107,96,100,109,92,105,105,95,106,104,99,102,104,99,105,102,103,103,90,117,87,112,113,100,102,83,102,127,92,110,92,105,108,95,105,102,106,106,103,110,106,105,111,100,98,120,118,100,114,103,105,104,104,85,105,100,98,104,94,104,92,108,108,103,85,98,108,96,98,97,90,108,95,118,109,100,109,96,106,99,91,93,99,96,109,112,107,113,99,108,95,100,98,102,99,109,105,101,107,104,104,120,91,112,87,105,110,114,107,102,106,101,106,103,104,106,99,103,100,108,107,100,112,125,92,114,99,100,96,91,104,90,104,106,98,109,100,109,93,106,107,105,104,99,94,105,90,113,109,104,97,96,109,100,95,82,107,104,96,99,125,101,101,123,91,105,98,92,102,116,111,110,106,110,108,107,104,101,76,102,86,99,103,100,109,101,104,94,94,104,104,104,97,99,102,125,92,109,107,116,106,99,98,106,109,99,92,103,94,104,95,104,108,98,110,101,108,98,91,97,111,96,114,105,94,103,98,87,96,103,105,106,107,107,115,111,102,108,111,96,103,109,103,107,109,92,106,105,98,99,111,96,102,101,100,98,122,115,98,104,99,97,111,116,84,116,107,122,109,94,101,107,106,100,84,95,96,94,116,104,117,105,103,95,101,105,99,97,101,94,101,99,104,97,104,105,106,107,110,105,99,114,101,114,113,94,91,105,95,100,110,96,95,108,105,105,105,106,115,97,102,107,101,103,102,104,122,93,114,99,98,96,116,88,122,102,108,108,107,96,91,101,111,91,108,103,107,99,114,110,110,104,114,101,100,107,96,98,101,109,109,104,106,104,101,101,107,110,98,105,112,92,113,96,104,101,102,101,107,96,108,101,106,102,100,95,105,112,109,97,108,96,99,106,93,109,100,101,92,107,115,108,102,102,102,100,104,102,111,105,105,113,100,100,91,80,94,99,105,101,117,108,104,93,104,98,109,111,121,103,100,94,95,104,114,106,112,111,104,93,99,103,105,106,102,91,97,93,93,102,114,105,90,94,96,103,104,100,101,100,84,107,98,113,96,108,98,97,112,98,109,103,104,105,101,108,94,105,99,97,97,109,97,113,107,110,109,108,91,102,99,101,92,97,99,107,112,119,104,114,105,99,99,103,104,108,103,106,106,109,96,117,101,106,110,99,91,108,96,108,112,92,108,111,100,104,108,109,110,84,107,102,102,109,103,109,99,99,108,110,101,104,108,106,102,102,109,100,115,106,97,105,96,92,104,108,98,107,115,111,89,125,95,91,94,94,98,92,88,111,94,105,110,99,113,117,89,109,91,110,90,104,103,99,97,113,89,94,109,98,103,117,91,100,105,107,105,97,108,101,97,87,112,97,97,101,107,95,114,89,105,103,103,91,104,91,99,102,107,93,119,111,108,104,109,111,95,95,94,107,98,110,104,107,96,107,99,91,99,98,105,102,96,87,107,79,108,114,90,97,111,90,95,79,100,106,92,104,106,113,105,104,102,107,100,98,99,95,100,113,108,83,117,107,103,97,86,105,96,109,95,79,106,99,103,106,107,91,105,97,103,111,106,84,110,105,110,108,106,94,95,108,102,96,102,110,98,99,116,105,117,115,99,96,111,100,96,114,104,102,99,108,111,102,114,94,109,98,103,111,104,107,105,107,110,96,94,79,99,89,87,99,78,98,94,104,102,100,106,108,109,95,101,103,90,92,92,103,109,91,110,104,105,127,102,92,86,97,87,98,106,104,97,105,107,106,116,98,105,106,105,109,110,112,110,117,107,108,110,109,91,105,126,102,109,108,107,104,90,97,95,95,104,103,110,108,91,95,113,110,101,78,100,103,97,96,99,88,102,109,103,100,103,98,109,83,105,121,107,91,104,107,92,107,84,97,102,97,100,92,100,90,96,106,91,105,88,106,94,96,98,109,101,98,103,99,111,104,101,114,95,108,99,98,109,113,109,102,105,96,90,96,105,105,116,105,109,98,97,98,103,90,97,97,105,123,109,104,101,99,109,99,95,97,102,96,100,108,98,107,105,98,100,95,110,90,108,100,92,113,100,105,96,103,108,109,91,94,100,101,98,102,113,100,93,101,76,104,91,105,103,111,103,109,108,96,107,100,73,99,102,98,109,108,100,105,116,107,106,87,91,106,90,104,98,95,93,115,97,102,102,111,101,112,98,88,104,95,101,95,105,110,109,104,99,108,103,88,79,102,91,104,111,107,104,113,107,116,109,90,97,100,110,101,111,100,107,102,100,91,109,84,105,97,109,97,113,112,102,92,102,119,115,113,91,97,98,99,96,106,98,103,100,93,105,92,103,114,107,113,106,106,107,96,110,105,93,100,104,105,98,72,106,100,96,115,99,110,106,105,102,109,112,101,101,116,92,96,96,101,102,103,96,70,97,100,94,108,103,101,103,121,110,98,90,94,99,110,96,114,99,105,92,103,94,98,102,100,95,113,99,104,104,91,104,95,100,106,98,98,97,103,106,102,113,105,101,101,91,110,104,110,118,93,84,97,111,108,98,109,112,101,102,97,109,99,101,99,107,100,107,98,104,111,99,107,85,99,100,86,100,107,111,106,113,97,106,98,98,100,105,93,111,93,103,101,96,108,93,102,99,96,102,116,93,98,111,101,91,91,109,106,107,103,96,110,110,100,107,91,132,99,93,108,95,102,110,111,100,98,100,107,99,98,92,106,112,95,100,101,112,109,105,88,106,98,101,105,110,98,101,107,98,109,103,104,101,98,94,108,115,106,101,91,96,108,96,89,99,112,99,107,106,95,105,101,102,96,99,105,98,101,125,105,100,90,100,107,100,100,95,95,104,102,107,108,104,90,100,95,102,109,90,110,109,97,102,117,91,117,105,96,103,95,105,106,102,113,98,103,115,104,94,104,109,98,97,111,104,107,109,105,92,103,100,101,101,113,100,102,104,97,96,96,107,106,109,95,94,102,103,101,105,96,89,96,95,109,91,96,95,99,100,99,95,119,105,102,111,106,104,102,105,103,104,99,109,106,106,102,102,111,111,108,101,91,102,110,87,105,114,98,109,90,105,105,89,103,99,115,101,89,97,100,112,100,93,99,102,98,104,98,96,91,121,104,95,106,98,109,92,112,97,108,109,103,100,104,96,111,96,109,102,103,98,100,98,100,103,99,100,111,101,129,101,116,102,91,90,116,105,106,113,109,110,96,114,107,104,103,87,99,99,95,110,103,103,97,109,106,100,96,95,104,107,88,100,104,94,104,97,103,102,91,104,98,100,93,124,96,104,97,101,106,108,108,106,96,109,99,105,113,88,102,109,104,111,116,114,79,100,99,95,101,104,104,103,107,99,90,98,100,102,100,102,95,98,98,104,94,95,95,112,97,117,100,113,104,103,109,111,100,82,99,92,94,100,105,108,105,101,112,113,105,99,105,98,91,104,98,101,95,93,92,117,103,91,102,90,95,96,98,103,100,106,95,96,105,110,91,94,93,111,97,95,92,101,99,110,100,92,106,106,79,98,93,98,97,76,117,90,94,106,93,98,97,94,101,85,102,111,112,96,100,88,104,91,101,112,93,102,102,118,113,98,96,105,94,107,103,93,112,108,108,63,98,100,90,101,101,107,98,98,109,102,93,96,109,99,109,106,104,106,89,106,89,92,104,105,137,91,97,107,95,96,95,106,94,101,109,105,89,98,95,90,87,109,96,103,104,84,94,87,94,90,91,112,106,100,103,95,101,100,100,90,106,84,104,100,109,101,95,104,98,119,95,93,101,89,110,91,97,97,89,93,97,94,89,99,105,96,104,90,91,104,99,113,93,95,102,95,100,104,97,111,118,100,108,102,101,98,103,95,98,105,107,95,99,100,115,87,102,105,97,108,109,113,92,97,98,111,109,100,101,98,84,98,105,89,115,87,98,105,92, +420.2659,77,86,95,85,87,100,101,101,108,92,105,114,101,112,116,105,99,108,98,105,109,104,108,97,98,99,92,98,100,99,102,99,123,101,98,101,103,92,93,97,88,108,90,114,108,103,98,90,101,100,101,100,82,100,115,100,93,101,92,95,130,104,100,101,98,104,88,107,96,89,96,112,96,97,101,100,96,108,96,109,106,98,106,100,91,101,109,107,104,93,97,105,101,110,94,103,100,94,102,102,107,103,97,103,104,109,97,96,103,100,101,93,105,102,101,89,95,119,102,96,96,97,92,112,98,99,113,104,97,86,102,119,99,113,102,110,99,91,105,87,122,115,99,107,103,102,99,104,95,99,96,110,99,89,98,102,104,99,110,96,105,106,115,100,91,101,102,92,96,108,110,100,98,101,107,100,91,95,101,107,100,104,100,96,99,95,111,90,104,104,99,109,94,103,93,98,91,112,100,111,72,113,109,97,101,109,101,118,104,103,90,114,113,95,100,110,103,105,97,101,109,93,96,100,102,102,92,108,100,113,88,99,100,95,108,97,101,95,108,100,105,108,103,99,80,106,117,97,100,103,99,99,99,104,110,109,101,109,87,90,96,105,95,95,97,100,96,104,94,97,103,93,103,105,97,107,100,93,97,97,92,98,95,94,102,105,100,108,71,104,100,115,108,91,109,101,107,111,104,106,90,113,89,109,104,107,127,99,104,108,110,103,108,87,102,99,92,103,108,82,107,102,103,104,103,101,108,95,109,112,111,101,95,101,87,127,109,105,100,99,94,108,90,98,95,98,102,118,82,104,89,99,100,103,103,98,100,109,101,104,87,102,109,102,100,95,102,98,102,105,111,91,68,100,111,105,103,95,114,108,121,113,94,103,100,104,106,106,93,101,98,98,84,101,91,101,101,97,99,114,105,108,97,90,98,88,91,95,100,92,85,106,99,112,99,102,101,99,117,97,93,104,94,102,97,100,120,108,106,100,105,90,106,101,104,91,105,106,88,102,101,102,94,96,96,105,103,91,99,110,97,98,72,102,83,106,105,98,105,98,103,103,108,108,104,109,101,75,102,101,104,123,109,102,88,92,91,108,94,94,87,101,98,103,100,99,95,109,109,107,103,102,108,110,91,100,91,106,90,100,111,95,106,107,104,107,95,102,104,98,111,98,111,108,105,111,104,109,100,92,102,97,102,109,111,108,101,104,92,117,97,100,97,104,106,102,98,117,104,103,96,106,106,94,107,98,100,103,99,104,105,101,117,95,96,95,107,102,94,108,108,100,106,106,99,106,110,101,96,105,98,109,106,112,102,107,91,102,109,103,101,99,111,113,109,98,113,98,87,113,118,113,97,97,112,114,104,111,102,85,92,113,112,100,83,98,89,101,104,103,110,103,95,107,99,101,100,86,120,108,94,103,95,97,102,99,96,99,98,97,101,107,93,106,94,103,98,103,106,106,101,112,109,95,98,106,95,109,96,102,91,100,100,116,110,96,94,106,89,103,104,102,78,101,97,101,97,101,105,100,114,92,76,92,102,99,105,94,107,104,114,102,86,88,95,92,99,105,103,105,111,102,107,120,101,99,109,90,100,95,106,87,106,101,98,102,100,84,108,108,100,90,110,90,97,96,99,98,109,113,105,103,108,107,99,103,83,112,104,101,108,89,96,91,98,103,107,97,109,109,100,96,94,111,104,104,108,103,99,99,105,105,101,97,75,92,100,103,103,89,96,103,102,105,106,112,103,101,100,93,114,110,103,102,104,99,88,110,104,105,91,103,102,99,95,98,98,106,122,100,100,99,103,102,109,105,95,93,104,99,104,110,96,102,106,91,110,107,99,107,110,87,94,103,104,107,98,93,114,105,104,91,110,98,96,110,115,107,118,95,108,106,106,96,100,115,101,90,100,106,90,106,99,102,108,106,101,99,90,91,102,91,103,90,97,90,93,99,108,102,109,119,102,109,103,95,108,89,103,94,109,101,110,104,100,102,112,98,95,112,103,99,88,94,99,89,88,102,109,104,100,109,99,94,105,86,110,96,96,101,96,109,114,99,90,99,95,94,103,109,104,101,105,92,107,94,100,107,97,106,96,104,94,106,104,105,105,92,105,92,95,105,105,94,97,108,98,103,100,107,103,97,107,118,97,98,97,101,92,91,98,95,111,106,110,105,93,90,103,113,108,112,107,96,96,100,97,88,95,103,99,104,94,113,94,105,106,93,88,101,97,89,91,97,99,98,98,97,99,100,104,103,104,98,101,99,94,112,110,103,105,100,108,103,106,104,100,102,99,102,92,102,108,102,95,93,96,102,97,96,106,109,100,92,102,106,96,94,98,103,114,96,106,97,98,93,108,109,105,106,92,101,98,100,99,100,98,107,108,93,93,103,90,105,101,94,104,103,96,92,98,101,96,93,100,95,100,105,109,103,97,104,103,106,89,113,94,98,94,96,98,100,94,94,124,99,91,84,91,100,87,109,93,93,97,103,104,104,96,93,95,98,101,95,96,100,88,99,103,107,92,75,107,103,83,100,99,100,92,111,124,96,96,103,116,93,106,95,89,105,115,101,100,97,101,104,88,99,102,101,92,114,107,109,99,99,102,92,129,108,124,96,96,107,109,104,105,104,102,118,102,96,107,90,95,107,98,95,105,75,105,100,114,113,95,94,98,107,93,105,110,98,101,107,91,105,106,94,103,106,101,94,104,99,96,106,92,104,110,106,106,112,106,86,104,103,105,121,104,89,101,95,98,120,98,99,95,97,103,102,105,100,99,102,101,103,100,97,91,102,101,108,106,102,109,108,111,87,99,107,97,92,106,101,94,104,105,109,97,110,111,77,105,110,95,93,83,98,100,104,106,109,96,103,107,91,102,101,94,111,99,94,101,99,108,99,91,124,110,113,89,106,103,98,99,102,106,95,110,106,84,98,103,87,110,97,98,76,108,104,102,104,99,106,97,97,101,109,103,70,102,100,97,105,104,110,99,104,105,105,109,88,103,101,108,116,106,109,97,105,97,88,104,113,94,93,94,84,73,98,92,109,91,95,103,97,111,97,96,103,110,102,96,105,94,95,106,102,114,104,94,109,108,101,123,108,98,90,101,110,101,97,101,110,109,89,97,108,97,100,100,95,106,98,109,77,97,98,95,117,91,98,97,106,109,105,113,95,109,97,103,93,105,96,99,104,113,107,104,111,106,99,109,91,105,97,112,104,108,102,98,109,98,100,98,99,105,105,105,96,108,100,97,118,107,89,106,96,95,102,93,96,94,100,91,100,98,102,98,89,92,93,98,115,108,109,106,96,102,102,109,105,92,95,107,92,102,95,100,101,98,100,94,107,106,100,99,103,100,104,95,107,95,105,103,93,101,113,96,116,99,94,93,106,102,90,101,104,102,93,91,92,103,102,97,121,110,102,112,105,99,97,97,95,97,99,124,120,113,101,111,85,100,113,93,113,96,112,100,88,106,96,88,115,97,101,94,101,102,101,113,104,102,88,102,125,104,100,103,71,117,109,105,100,97,110,106,109,102,105,103,109,105,111,96,109,102,101,99,105,102,92,89,117,94,101,91,109,102,102,106,104,107,108,110,107,108,96,106,121,91,96,109,99,102,93,97,95,101,97,105,108,118,93,86,89,105,101,98,103,94,109,96,108,106,110,95,100,102,100,106,97,101,106,110,102,91,80,102,99,104,106,98,115,101,98,105,109,101,102,99,108,108,105,103,111,109,96,92,93,99,96,102,87,105,88,96,100,101,99,108,97,103,91,107,98,95,89,107,98,100,95,101,102,101,91,94,91,107,100,117,98,86,102,106,102,100,98,99,105,95,94,106,107,100,105,98,97,100,94,105,108,100,93,100,101,93,98,100,96,106,101,101,109,109,94,92,100,98,97,106,93,108,99,110,99,103,94,106,85,108,106,107,99,94,98,97,97,113,98,121,109,109,104,88,90,107,98,96,110,95,92,100,106,97,105,82,96,104,107,107,73,90,106,103,104,96,106,100,88,109,92,90,105,100,104,105,99,92,113,92,99,93,98,101,113,103,104,91,89,99,100,103,103,103,104,114,106,69,104,109,99,106,107,102,107,102,104,108,89,98,101,95,104,98,96,97,104,95,109,102,97,100,103,89,101,98,78,102,112,108,104,83,98,97,109,117,96,91,94,96,110,106,107,111,106,109,98,95,100,103,103,104,102,106,99,107,101,99,96,88,100,106,94,94,104,85,102,65,92,111,105,97,87,104,99,103,101,99,105,90,82,109,105,96,97,104,97,88,106,98,112,104,112,98,93,106,99,97,118,104,99,111,99,98,107,97,79,106,88,107,98,117,98,100,100,108,91,92,93,112,103,104,101,97,100,99,103,109,100,107,95,104,106,108,94,104,108,95,90,112,88,104,104,91,112,92,105,110,114,108,106,98,98,101,87,96,101,99,100,99,100,102,101,102,91,97,113,105,117,76,99,95,105,102,92,93,99,119,91,93,92,101,105,107,92,90,107,100,99,101,88,100,102,100,101,109,99,100,107,100,99,94,104,104,108,110,94,107,104,90,103,98,97,100,110,102,106,96,99,116,97,102,112,102,107,105,90,107,105,87,98,103,100,102,112,104,99,105,99,114,79,109,105,102,104,102,105,106,95,91,94,102,106,88,98,92,97,90,108,92,94,112,100,87,84,106,104,101,105,99,111,119,103,112,100,111,104,99,64,105,104,92,102,79,97,104,98,94,103,108,97,86,103,100,102,100,94,107,104,97,95,98,91,101,102,112,107,106,112,112,106,124,108,101,101,93,108,99,103,111,102,102,85,102,85,94,107,102,90,110,109,97,70,87,115,139,105,104,92,104,98,106,91,103,100,92,100,88,98,104,100,107,107,84,95,100,104,91,88, +420.40613,128,93,91,92,87,107,97,95,99,86,109,106,78,95,95,92,99,103,109,106,92,102,101,95,95,64,106,99,106,72,108,93,99,95,106,108,90,93,105,99,93,98,97,104,99,106,100,112,103,101,94,101,112,98,113,92,106,97,100,98,96,101,94,95,102,105,96,106,94,97,95,99,96,97,94,103,99,88,102,96,103,109,86,95,102,99,85,131,115,98,93,90,97,92,95,102,97,92,100,98,110,96,87,98,96,94,95,93,91,114,94,101,94,107,109,99,101,106,116,102,117,89,111,108,105,110,102,96,102,98,111,105,111,95,79,104,101,103,103,95,90,126,102,91,96,98,114,98,98,101,92,102,94,92,98,102,106,87,103,104,92,97,136,104,100,102,104,113,104,107,92,100,97,85,102,108,108,111,98,109,97,98,90,99,120,105,99,92,103,95,95,100,106,100,104,100,111,105,107,105,94,106,93,106,87,107,107,97,113,93,98,95,96,100,109,91,100,95,101,105,83,98,110,91,93,100,119,102,98,108,101,98,101,111,111,103,103,102,99,78,101,104,117,91,102,107,91,107,106,111,101,95,99,101,87,105,102,82,89,96,91,97,93,101,94,106,98,101,96,106,95,102,106,105,98,104,97,102,99,103,95,95,111,111,107,105,90,99,86,115,93,104,105,110,96,101,108,102,99,91,98,103,108,95,111,106,105,106,103,99,100,97,113,108,103,105,92,101,106,116,104,106,101,93,100,105,100,98,110,97,100,101,98,107,104,103,102,107,111,103,119,106,105,91,102,104,104,110,101,107,102,91,97,101,103,108,110,105,94,105,98,100,113,107,89,109,96,87,105,106,106,110,109,99,125,107,102,101,98,137,105,103,106,102,108,103,113,103,119,100,112,98,97,101,107,98,111,108,94,106,95,110,103,109,104,104,112,107,105,99,99,100,100,105,103,99,86,103,104,98,95,103,103,97,100,98,107,113,112,104,94,110,96,104,99,95,101,104,94,98,110,89,67,108,87,104,102,93,115,105,104,99,107,88,98,105,95,78,99,94,95,104,96,104,99,108,87,99,103,92,95,127,89,106,106,95,96,114,93,88,97,95,105,91,99,103,98,90,109,92,107,104,105,96,92,103,108,92,94,99,110,91,104,95,95,102,99,100,117,106,105,101,103,95,105,109,90,104,105,98,99,99,108,120,109,98,116,109,96,104,107,110,103,98,91,99,101,93,97,107,91,114,105,109,121,99,104,105,100,112,106,102,108,102,105,101,105,103,108,93,110,107,100,110,101,102,95,107,101,97,98,98,114,107,98,107,95,89,103,108,91,114,98,99,98,106,107,107,106,113,110,105,106,101,109,106,106,101,108,81,98,109,87,92,99,105,107,106,101,109,102,109,108,102,105,91,91,104,102,98,95,101,95,91,104,95,101,112,98,109,108,106,93,108,95,101,100,101,95,96,79,101,107,108,93,105,85,97,101,113,97,103,108,99,100,106,105,105,96,107,101,125,98,105,95,101,113,87,100,105,105,101,109,109,110,102,103,98,116,93,104,111,102,109,97,62,97,99,98,100,96,101,91,105,106,103,104,96,99,99,101,87,108,102,102,107,86,106,100,97,104,103,99,100,105,106,104,91,100,95,99,93,101,104,101,100,102,94,99,106,103,114,95,89,108,102,90,107,107,105,96,91,97,91,93,104,106,96,107,105,120,97,94,90,112,99,94,107,106,102,107,107,98,90,96,95,91,95,116,98,100,104,99,108,103,110,106,110,91,108,119,115,104,92,92,112,115,110,103,102,102,105,117,105,113,104,96,102,98,103,105,103,100,101,110,106,99,93,99,99,108,97,101,92,100,113,109,108,110,141,89,98,100,110,117,97,99,98,100,97,108,106,103,105,97,103,112,96,96,97,102,100,96,98,105,96,100,104,109,91,89,99,104,100,127,100,104,118,101,103,101,67,106,107,102,95,75,102,91,96,103,104,93,106,98,105,110,97,108,97,101,95,99,99,101,98,99,110,108,101,108,102,102,107,95,109,103,107,102,107,96,102,108,110,98,87,94,99,98,91,99,101,104,109,89,100,97,108,114,110,98,109,84,98,99,104,97,104,98,85,109,98,95,133,93,77,92,122,103,96,99,90,96,100,94,91,98,100,103,95,99,100,108,100,102,103,103,107,101,106,100,104,106,105,103,95,96,104,92,113,105,104,101,94,102,108,84,97,102,94,112,96,100,96,93,92,101,93,89,108,87,100,114,100,108,101,91,113,97,106,90,90,100,105,102,99,102,113,97,102,101,107,95,109,106,90,91,105,106,100,106,105,101,87,117,110,94,94,111,105,95,103,82,99,107,86,103,109,109,108,108,107,93,98,102,97,103,107,103,108,97,98,101,106,101,97,94,99,106,110,94,105,105,107,93,110,97,95,109,113,103,112,98,105,95,102,82,75,89,105,107,97,98,95,98,110,106,111,96,112,102,103,105,91,108,111,94,105,105,99,121,100,101,109,96,102,110,105,89,97,100,111,113,104,86,91,104,111,91,99,104,101,100,105,105,93,100,106,117,109,95,83,106,89,112,97,94,105,93,97,105,103,96,99,100,109,112,104,96,92,90,117,93,99,110,107,104,105,105,100,107,97,107,87,115,106,102,103,103,113,89,102,113,96,103,97,101,99,106,108,100,104,103,107,105,97,110,101,108,109,93,104,102,105,87,104,101,103,102,115,112,104,111,98,116,115,105,108,103,98,106,113,110,118,105,99,110,100,98,103,90,98,107,99,101,105,102,102,85,105,116,107,113,105,104,95,104,93,103,98,105,103,116,106,103,109,107,103,93,114,102,117,114,96,105,112,91,105,106,103,80,102,93,100,111,83,103,98,93,103,104,109,112,122,113,111,108,99,110,102,128,108,110,103,97,105,106,103,110,99,108,106,94,98,108,112,99,105,106,103,106,103,101,109,104,98,106,110,102,108,97,112,105,95,79,109,105,99,110,91,98,120,100,100,103,108,117,103,115,95,112,98,99,98,116,110,110,105,104,98,107,91,102,113,111,99,108,105,98,99,94,102,96,104,112,100,91,118,88,99,102,96,110,108,110,99,108,102,102,96,109,106,96,101,112,94,104,103,102,104,101,100,101,112,107,97,97,75,107,97,104,93,100,104,101,101,99,103,106,105,120,101,97,113,88,101,96,101,101,95,103,102,103,95,104,104,88,108,102,102,98,104,91,95,109,91,122,108,110,103,101,107,104,105,96,104,100,98,106,103,103,109,99,109,86,95,107,107,104,96,95,106,102,104,93,87,113,102,95,102,93,103,95,96,103,113,106,110,96,102,113,100,96,104,102,101,117,106,103,92,101,106,112,114,102,108,99,104,104,76,117,100,97,114,92,103,99,95,98,105,95,113,111,92,105,100,110,87,97,103,102,85,99,94,96,81,100,108,107,109,85,107,102,100,102,103,105,92,88,99,109,106,95,93,108,116,112,102,112,95,97,101,96,99,97,103,102,107,111,95,108,104,94,103,104,99,97,100,98,100,100,105,104,102,95,104,100,99,105,108,109,100,97,120,96,99,98,83,98,92,111,102,104,113,97,108,107,104,104,101,101,105,106,99,106,96,98,105,106,113,85,100,108,101,106,103,98,101,102,113,102,108,95,97,95,111,113,99,106,104,93,103,97,102,100,100,99,94,99,96,87,89,106,111,110,98,108,104,97,93,102,114,106,94,103,107,97,95,122,104,109,95,109,110,101,96,102,107,102,100,109,96,107,94,95,99,99,94,104,108,97,103,95,106,100,105,108,96,103,124,110,112,105,106,102,91,92,97,99,105,101,104,101,94,108,108,95,96,104,102,94,101,106,87,121,102,95,104,99,104,92,88,89,105,89,102,96,107,97,95,91,109,108,102,104,96,87,87,104,115,99,110,110,98,102,106,87,98,100,102,96,104,99,103,106,118,104,96,100,98,104,107,106,101,102,112,99,101,105,101,102,96,105,117,115,104,96,88,110,87,108,94,102,101,106,97,108,94,103,102,107,96,106,116,95,110,108,98,109,102,102,98,110,95,96,108,101,116,104,105,106,115,102,98,118,102,96,103,108,113,105,104,105,117,105,99,102,113,111,104,106,96,99,116,111,110,104,104,117,101,112,126,92,97,106,108,104,107,91,91,103,98,106,99,106,117,113,120,104,109,105,101,98,101,101,110,112,99,107,99,114,109,95,98,100,108,111,108,103,95,106,100,106,88,99,107,98,89,105,110,87,117,111,94,95,104,101,108,80,106,87,107,121,116,94,107,94,122,95,111,113,103,105,71,108,105,96,104,113,97,105,97,106,102,106,97,98,99,107,97,120,105,101,114,97,100,105,90,100,103,109,118,109,110,103,91,99,108,92,89,100,100,104,97,111,110,102,110,111,97,117,96,100,105,101,106,84,95,95,110,106,101,110,108,101,98,108,115,113,91,113,98,113,105,94,98,114,103,87,114,107,91,95,108,113,111,99,108,98,98,98,98,109,105,105,106,102,109,109,100,100,111,98,105,105,103,100,90,110,96,100,107,87,106,98,106,105,102,96,100,105,94,111,102,98,116,105,101,100,106,102,88,100,100,92,121,95,107,101,103,92,92,113,104,87,76,119,107,130,95,105,90,96,125,92,104,99,101,102,93,104,102,112,100,101,109,96,103,91,97,103,96,109,98,108,102,92,97,99,96,99,111,100,103,85,99,92,91,112,96,91,135,105,93,88,97,99,108,104,115,102,101,103,102,101,105,113,98,105,111,100,102,108,99,93,96,105,108,82,97,111,95,107,101,90,93,124,106,104,101,108,99,104,105,94,95,93,110,112,87,111,100,107,88,105,108,90,104,99,102,104,106,98,105,104,92,101,105,88,103, +420.54636,105,99,93,88,91,98,88,96,106,101,97,86,100,94,95,108,100,102,99,104,84,89,106,104,93,100,101,109,103,99,102,100,98,92,106,95,99,102,100,96,102,101,109,110,98,100,98,110,87,110,117,98,90,91,96,105,103,88,105,95,102,102,89,100,102,106,103,107,87,109,106,102,101,112,104,110,94,103,95,97,113,99,102,90,107,103,107,104,98,105,103,93,101,94,99,99,102,102,95,110,96,103,96,103,97,93,92,94,93,97,101,100,97,82,95,104,93,104,90,103,91,111,106,103,109,100,115,97,108,114,97,96,92,120,99,110,105,108,92,96,98,120,112,105,96,98,99,105,100,100,91,106,95,96,98,110,99,84,105,103,93,95,104,99,95,100,90,98,101,102,98,101,99,97,100,107,100,93,100,105,95,105,89,101,99,92,105,90,102,102,96,109,102,105,109,86,96,110,94,112,95,101,105,97,113,97,103,101,102,108,86,91,101,111,102,106,95,96,95,99,101,101,99,102,99,102,106,99,85,112,98,108,107,100,102,100,109,104,98,101,103,109,96,105,95,101,100,104,91,100,105,104,104,110,101,100,93,113,97,110,94,95,113,101,93,99,95,95,98,104,105,97,92,100,113,91,99,104,83,104,102,105,97,99,113,91,93,94,95,110,101,108,106,101,101,99,103,104,98,95,102,100,104,113,98,101,105,108,110,98,114,104,110,108,103,88,105,109,101,106,96,106,109,102,99,95,97,91,100,107,111,104,108,92,96,105,108,103,98,100,107,111,110,103,96,110,110,102,107,110,120,101,106,105,100,94,107,103,117,106,104,98,99,95,102,100,118,103,97,117,112,103,102,110,100,95,103,111,115,106,103,99,102,93,105,94,109,103,108,104,114,94,94,96,104,97,101,101,103,106,104,109,96,103,98,107,99,105,106,102,104,62,104,102,100,99,92,93,108,105,103,106,103,95,104,97,94,96,98,103,93,110,98,116,102,112,100,98,101,82,116,97,95,105,102,101,105,108,105,99,92,91,106,106,112,103,104,98,108,98,97,112,117,103,106,96,111,103,101,105,106,100,101,90,90,98,91,111,105,90,101,104,99,97,114,101,100,97,105,101,105,103,103,95,104,106,95,98,102,98,104,96,121,117,110,104,96,102,122,113,112,101,111,115,108,100,107,96,102,105,99,95,103,105,113,109,124,102,99,100,104,107,108,105,105,114,107,97,102,99,98,103,105,105,103,109,99,105,107,99,93,96,104,96,86,68,104,91,94,98,97,98,95,90,101,106,105,99,94,104,87,109,106,102,90,97,101,113,99,104,100,107,116,105,93,102,112,95,99,111,106,113,109,99,106,86,121,109,93,108,95,107,106,97,104,103,100,96,106,103,102,105,104,121,104,107,106,74,105,109,102,108,105,100,98,101,98,96,94,84,100,99,87,114,91,92,110,92,101,94,96,106,104,108,105,91,96,111,107,111,95,94,111,110,110,109,107,97,100,105,106,113,98,104,91,95,95,100,101,106,110,110,106,90,90,108,103,86,95,78,106,111,86,82,87,111,109,96,100,100,95,97,97,115,97,117,96,90,102,96,103,101,102,96,102,111,117,113,95,106,97,103,97,98,91,91,100,94,101,104,100,80,118,108,105,95,103,109,101,108,94,108,106,107,106,123,103,79,87,100,101,102,95,80,110,105,95,95,92,104,112,115,93,88,107,106,105,101,104,100,98,88,94,101,106,102,100,103,99,93,106,94,101,107,98,111,113,106,98,100,109,105,106,103,96,106,113,110,87,105,91,104,107,107,96,105,99,120,99,100,98,106,101,105,74,95,91,109,89,104,106,96,99,99,95,96,97,101,102,103,114,104,98,102,114,103,109,105,110,119,103,110,105,110,102,124,101,118,101,97,114,122,96,95,102,90,97,103,83,97,87,103,68,110,96,102,101,100,122,105,101,101,110,100,99,97,97,101,112,102,103,105,107,97,93,93,99,109,111,99,104,96,114,107,108,100,94,110,103,110,101,108,95,103,96,93,89,98,117,95,102,105,94,87,106,92,85,103,88,101,106,96,97,90,124,94,102,105,84,98,101,74,106,102,102,100,97,107,109,107,104,104,99,107,99,106,98,95,98,104,96,88,96,102,100,103,96,105,86,100,99,103,99,109,110,95,92,118,93,96,90,106,103,98,106,101,96,101,91,108,92,101,105,117,94,100,110,99,99,100,101,104,100,117,119,102,93,100,113,117,102,109,97,86,112,97,105,98,106,107,112,105,87,96,106,98,99,87,105,102,94,105,102,97,95,92,114,101,105,79,106,112,110,102,105,102,97,94,103,97,97,106,102,104,111,85,106,107,95,86,95,107,95,93,103,102,97,108,102,100,100,101,91,112,99,99,105,121,91,113,98,104,110,99,98,96,98,92,115,101,104,105,116,101,100,104,102,99,95,102,102,113,85,105,107,104,104,100,111,102,99,98,108,84,104,96,111,106,106,103,99,98,95,89,105,111,106,111,113,98,101,97,111,93,96,110,100,90,105,108,104,98,113,97,102,103,99,104,98,89,105,100,86,108,103,110,104,104,102,107,85,99,96,117,104,111,91,104,113,96,113,101,102,108,82,106,104,111,113,89,117,93,104,92,92,135,97,92,104,106,96,91,107,102,96,91,87,94,88,100,103,100,96,105,92,116,102,97,86,109,97,102,102,104,98,109,97,99,102,98,110,108,109,97,106,96,101,133,110,104,81,97,97,103,82,101,95,110,89,97,92,101,108,99,95,103,109,92,83,99,93,106,100,105,96,83,93,103,104,97,103,97,98,93,109,102,105,109,91,99,117,99,100,90,92,100,106,106,102,98,100,98,102,112,104,95,99,104,95,89,104,109,103,104,117,92,99,99,95,108,102,98,105,101,104,109,95,89,98,95,86,99,100,107,95,111,87,104,99,95,106,94,108,105,89,116,111,93,99,96,73,90,88,97,101,134,107,90,92,92,107,97,112,104,110,107,107,104,99,96,92,104,106,108,95,99,93,89,113,94,97,96,96,92,97,95,90,111,101,108,94,91,94,100,83,91,99,106,93,98,90,105,95,109,109,99,68,98,96,95,107,100,105,106,104,100,96,103,92,109,98,100,98,103,105,102,108,103,97,108,98,106,89,98,113,96,108,92,109,95,100,95,93,98,97,92,113,97,110,113,94,100,101,100,101,99,98,102,100,99,95,107,94,102,94,88,104,84,123,102,103,117,96,103,97,96,106,101,100,102,96,75,101,103,96,102,121,91,98,102,90,88,102,104,98,96,103,86,95,92,97,109,79,96,105,105,94,99,102,92,95,97,102,100,98,98,111,101,102,99,84,101,95,108,96,99,99,108,95,88,101,102,104,90,90,108,93,102,88,92,100,104,99,109,93,116,103,104,96,104,96,104,92,101,84,88,97,95,86,108,112,95,90,89,91,102,106,94,106,101,109,109,109,90,104,107,95,112,114,92,104,105,101,97,99,109,106,91,104,103,109,96,105,102,140,99,95,108,106,108,101,94,96,105,105,108,87,107,96,108,101,109,102,100,95,115,99,108,98,90,94,91,101,91,111,93,106,95,98,109,88,109,101,105,110,96,103,115,100,103,92,99,91,100,104,99,96,107,102,100,95,116,105,102,99,103,104,98,98,106,106,99,96,98,113,98,99,112,95,112,94,106,107,94,92,98,105,100,115,102,104,98,96,100,96,112,101,102,110,104,103,101,94,102,96,101,97,106,99,112,106,96,107,100,102,95,100,88,100,94,94,100,96,91,100,99,114,103,97,105,116,102,98,99,102,113,110,91,92,105,92,108,99,89,98,93,103,96,113,101,101,102,101,111,91,93,93,101,100,101,101,103,97,105,104,90,113,91,94,99,106,80,92,96,102,99,113,67,98,102,94,95,113,99,102,102,96,107,110,109,110,90,109,106,90,97,97,94,99,126,91,98,99,99,108,105,104,102,102,112,104,95,90,105,100,95,93,103,102,108,104,105,106,100,102,94,108,92,116,94,87,100,93,102,92,96,90,103,119,104,104,98,109,101,112,99,106,105,93,106,101,101,98,105,98,108,106,99,99,90,106,96,100,98,114,90,100,91,104,101,98,95,98,105,103,108,101,105,94,98,102,98,99,91,97,97,110,112,103,110,90,106,106,96,106,113,105,97,99,99,108,104,99,98,91,103,111,96,96,91,102,99,99,93,98,98,103,118,102,90,97,100,105,100,102,103,104,95,96,100,102,71,101,89,98,108,94,84,101,110,87,91,94,100,105,99,98,92,88,103,95,103,93,95,98,89,103,91,99,97,108,105,116,102,95,102,98,100,100,100,106,104,95,100,91,97,100,100,105,106,96,110,105,96,98,114,91,113,100,98,100,94,105,103,92,100,97,100,102,106,114,94,98,80,100,106,102,100,93,90,93,102,110,100,94,91,95,98,113,105,105,102,92,92,113,113,116,97,90,88,84,98,100,92,104,91,101,105,105,84,100,96,99,99,90,101,105,104,87,100,101,104,81,87,87,99,106,102,100,94,91,119,98,91,101,102,98,106,79,103,95,87,102,92,111,107,100,119,120,97,99,109,96,109,97,106,95,100,97,103,95,102,113,105,111,98,103,105,113,108,100,90,106,106,96,103,105,96,108,94,101,71,108,109,106,100,98,106,104,96,92,104,105,104,103,97,100,109,92,100,96,106,98,99,95,100,118,106,102,97,73,100,105,97,98,90,87,102,109,91,97,101,105,96,104,101,102,97,94,102,91,106,108,94,84,107,91,126,88,92,100,98,94,91,105,92,87,96,102,108,91,113,77,87,119,98,85,108,106,90,95,103,105,104,100,98,98,101,93,109,105,98,97,111,97,103,83,91,99,84, +420.68661,101,91,105,86,93,97,102,83,94,103,99,85,96,100,97,108,100,80,105,97,100,112,103,99,106,93,89,101,100,105,94,100,99,62,101,94,109,119,93,107,90,114,101,98,110,109,103,112,96,96,112,102,103,103,112,104,101,89,102,101,101,103,94,96,112,108,93,104,95,87,104,104,95,97,101,100,94,104,98,102,101,111,101,104,100,92,97,104,97,99,103,78,102,102,99,108,110,91,83,115,96,93,94,82,100,103,95,110,103,95,95,96,104,95,99,105,88,104,94,96,93,108,102,114,96,100,91,95,103,98,100,93,100,106,107,110,101,121,94,101,102,95,108,103,101,105,95,104,97,94,95,101,99,94,98,98,111,96,96,104,91,104,94,96,108,88,110,90,104,109,97,101,100,98,100,105,93,104,106,102,94,100,99,94,98,105,105,89,109,96,95,105,98,110,104,101,92,112,108,95,115,110,94,100,98,98,99,108,108,124,93,91,105,99,101,98,88,110,95,104,103,93,104,110,105,117,98,106,96,130,113,100,98,94,95,98,98,99,96,103,105,116,98,97,100,86,96,96,100,106,100,110,110,99,103,108,112,109,106,102,87,101,95,95,100,100,109,101,99,101,98,95,107,93,104,94,88,111,97,106,101,104,96,97,100,87,100,103,112,115,94,100,98,91,108,106,109,115,105,105,98,110,102,99,97,103,100,100,112,103,97,105,103,108,109,101,100,99,102,105,99,97,101,105,101,95,100,97,102,107,101,105,108,105,111,104,110,113,100,107,91,99,98,106,91,94,91,95,92,99,110,104,98,111,110,127,95,112,114,102,100,94,91,94,93,112,101,117,104,96,90,108,102,101,99,96,104,74,111,95,102,108,97,94,99,92,106,108,106,94,100,99,92,113,98,93,110,101,99,116,103,101,96,99,101,95,105,93,98,93,88,87,103,103,102,109,115,106,110,106,95,100,97,107,93,92,103,91,97,107,87,100,102,97,94,99,110,105,97,105,124,108,104,101,105,103,94,95,97,105,106,108,105,110,98,92,83,100,114,104,94,105,99,109,103,106,114,109,92,93,116,107,115,110,92,103,96,106,103,109,105,109,115,105,103,98,109,108,102,106,115,94,103,105,91,106,90,67,104,129,101,102,107,100,99,105,94,98,98,102,101,101,102,103,94,82,99,99,102,92,105,103,105,114,98,97,98,106,109,110,107,104,101,109,102,99,103,117,112,105,105,105,104,97,102,109,112,110,121,94,115,106,100,94,101,98,96,102,103,105,100,115,105,108,101,98,105,103,100,109,101,93,95,100,102,98,96,94,105,105,96,98,98,99,101,100,106,115,100,92,104,93,100,91,106,111,101,100,102,112,115,108,98,91,102,99,103,94,99,101,108,94,110,101,105,100,108,96,104,111,96,101,101,104,88,109,91,98,104,102,113,89,108,96,94,97,97,100,101,91,104,102,109,106,104,96,100,96,105,102,110,102,98,104,101,97,113,109,101,111,106,94,109,110,102,93,108,97,97,96,96,104,101,105,98,112,98,102,108,96,103,106,118,97,85,99,99,105,131,87,109,104,101,113,114,92,106,107,107,99,103,101,109,94,109,112,101,95,100,96,110,100,88,112,100,105,70,104,105,107,100,97,102,102,104,101,96,100,98,102,103,100,92,113,96,94,103,100,121,94,98,93,101,108,96,90,97,101,105,103,115,108,110,90,105,90,111,108,105,91,100,116,98,109,99,101,91,91,74,95,112,108,104,102,113,108,100,105,104,98,107,108,97,106,99,97,98,107,108,105,104,102,97,102,99,92,99,100,118,104,105,104,101,95,105,96,102,102,111,99,95,97,106,91,102,107,101,96,90,106,105,114,103,104,99,76,109,95,96,106,111,105,97,93,102,100,101,102,93,111,98,98,99,102,102,95,102,103,99,89,93,94,99,97,100,100,94,100,105,111,94,105,101,111,98,101,99,103,97,102,100,99,108,112,87,98,83,99,99,95,108,103,106,97,105,93,100,109,114,109,98,103,96,102,106,74,105,97,95,101,106,107,111,94,117,102,104,108,103,99,106,111,104,103,99,103,75,99,106,113,82,110,111,101,97,108,95,99,87,92,98,95,105,105,96,105,111,99,87,105,103,96,105,93,102,101,96,103,104,99,99,96,108,99,99,98,98,103,106,95,102,120,93,99,101,102,102,96,97,105,100,104,107,104,104,100,104,91,112,95,91,93,98,111,102,93,97,103,97,102,100,111,110,100,97,99,99,117,96,107,97,103,100,107,105,85,94,95,97,102,91,107,102,102,99,101,104,98,92,96,109,103,103,89,110,106,90,100,103,102,99,97,98,94,103,101,102,101,101,103,95,101,105,100,90,103,115,92,101,108,69,106,97,97,101,106,92,108,104,100,72,122,104,100,103,94,92,97,99,95,77,85,96,103,91,102,102,91,95,102,98,116,96,79,106,66,89,109,89,104,112,97,97,113,102,106,109,98,93,91,104,97,104,98,109,106,109,96,107,104,102,84,104,96,101,83,97,118,111,104,102,97,109,103,119,108,105,111,96,108,93,109,107,95,109,90,99,102,101,96,95,107,103,106,91,95,102,106,101,102,99,98,105,110,108,101,108,111,115,97,102,92,96,92,102,91,108,102,98,99,105,105,104,89,105,73,109,95,110,102,92,98,107,107,103,102,105,98,94,109,104,109,103,102,97,97,115,97,97,110,107,101,104,105,90,102,107,98,106,102,99,107,108,107,108,101,109,102,110,95,98,110,101,101,99,97,107,109,108,105,95,104,95,101,87,108,97,105,103,87,113,103,115,83,91,121,107,106,107,102,97,108,99,105,95,99,95,111,84,106,99,106,103,103,109,98,98,100,106,112,105,106,105,95,102,93,111,96,115,98,109,103,77,105,101,105,119,110,119,99,108,104,107,100,99,108,102,135,107,110,106,104,119,106,100,100,102,99,102,95,99,114,95,62,108,99,111,68,104,92,100,95,104,99,100,108,109,107,100,97,94,100,96,107,99,130,108,103,83,103,110,106,116,89,104,105,100,102,112,93,116,109,89,110,94,95,99,92,99,91,112,104,103,98,103,105,97,97,100,96,77,102,120,106,105,99,101,104,101,95,104,119,109,112,94,106,109,108,98,77,100,96,102,101,98,101,105,105,105,116,100,104,108,100,114,101,104,111,102,101,98,95,98,116,101,113,117,100,103,103,116,111,103,100,112,106,113,94,132,113,97,109,105,116,101,105,103,108,101,98,104,109,110,100,89,99,102,110,94,114,91,109,105,96,103,108,109,107,105,96,102,97,101,104,100,104,102,104,93,94,107,115,104,109,100,104,101,103,99,114,107,103,98,99,91,102,96,92,103,101,98,102,113,107,107,100,90,113,104,95,91,106,116,107,100,107,119,109,109,108,110,101,91,100,109,119,104,103,108,89,89,103,110,95,99,103,110,112,87,109,105,99,99,102,113,106,110,95,110,116,102,103,103,98,90,105,112,97,108,101,116,102,96,113,107,105,107,114,106,107,91,94,103,99,106,99,75,100,91,97,103,103,95,104,105,96,103,99,100,84,95,115,96,108,104,117,110,114,106,113,102,102,100,92,104,92,106,102,113,119,99,104,101,103,118,103,108,97,104,102,97,108,107,103,117,96,109,87,108,91,98,100,93,99,98,100,114,103,100,102,114,112,113,108,108,105,96,95,99,105,102,108,116,108,99,99,102,95,103,102,94,108,94,102,113,96,96,108,101,105,99,87,92,94,99,94,109,77,97,100,92,104,92,104,111,106,108,110,98,114,100,96,94,99,112,97,96,98,96,119,94,110,96,90,113,97,100,107,108,94,116,95,102,108,110,98,96,113,118,97,90,107,95,104,108,88,105,97,96,94,98,87,99,100,106,106,101,101,117,109,99,101,101,102,89,98,100,100,105,107,105,112,79,104,111,99,108,107,95,107,103,101,113,117,98,109,95,109,96,102,100,101,100,106,109,92,91,105,104,100,85,98,100,106,103,102,89,91,104,97,100,97,104,99,111,108,108,105,100,117,101,104,100,103,97,108,106,120,102,97,100,119,97,102,113,118,102,108,94,96,98,139,98,112,102,98,98,100,91,110,105,101,92,110,105,107,105,103,102,100,97,104,89,88,102,116,104,105,112,91,100,104,113,101,96,105,105,97,103,106,110,98,103,100,100,106,111,107,89,105,111,96,91,101,99,105,105,112,99,87,103,102,123,95,100,106,105,93,116,75,111,104,105,105,98,99,99,96,103,110,98,91,104,106,110,93,105,79,87,104,106,105,102,101,112,105,105,110,118,104,106,109,100,99,79,93,104,104,98,96,100,107,110,101,103,108,111,100,102,106,96,86,105,107,97,113,104,111,92,93,93,100,105,106,98,109,101,94,107,110,107,103,100,98,96,97,108,115,100,110,105,112,100,113,108,95,93,104,102,101,85,100,109,103,108,94,96,111,103,92,102,111,93,92,98,100,100,101,105,106,109,97,97,91,102,105,82,114,100,117,92,95,103,105,105,93,93,100,104,89,86,103,114,109,100,101,93,105,97,108,87,89,115,102,100,108,103,106,90,112,98,104,103,107,99,104,104,99,100,98,112,106,102,100,88,95,115,100,107,96,99,92,98,111,88,105,99,96,119,98,102,90,93,108,100,106,94,102,103,108,102,115,104,105,112,104,113,106,102,91,100,105,111,107,92,92,105,110,110,98,100,104,91,82,96,100,100,109,105,119,107,103,103,102,103,108,107,96,98,96,102,112,103,92,132,106,98,99,104,100,117,94,103,101,95,112,85,108,91,95,109,105,90,94,90,102,122,106,90,105,104,86,101,97,91,91,100,108,91,90,99,94,113,101,100,105,108,75,97,97, +420.82684,98,90,106,105,90,100,98,92,109,110,94,94,94,95,97,95,103,103,104,113,115,102,99,97,82,103,95,91,83,90,99,82,102,98,100,99,107,102,103,108,105,99,83,110,90,95,92,105,105,91,99,97,107,92,104,96,108,97,106,96,112,105,115,88,105,101,106,101,95,93,93,98,94,99,90,97,96,103,93,101,93,110,100,88,97,98,111,111,104,88,109,99,94,102,106,93,111,105,100,102,106,93,99,108,72,106,87,93,94,97,102,109,98,84,118,100,98,93,121,103,106,105,92,93,101,109,103,95,99,111,105,95,95,115,93,110,118,109,95,86,122,97,113,93,102,106,98,116,91,97,95,105,102,100,97,110,98,104,108,95,96,100,104,102,109,91,95,82,89,103,99,108,115,77,105,100,101,100,97,94,110,94,106,112,99,88,91,98,107,94,99,95,105,91,103,98,98,103,102,105,91,101,102,107,86,87,102,114,112,100,100,100,90,109,112,93,89,99,101,100,95,104,80,96,98,105,94,109,105,107,92,108,110,99,96,106,90,107,93,104,100,106,97,95,98,92,102,97,104,102,92,105,96,100,92,98,98,105,110,104,89,96,95,105,112,100,110,102,101,101,102,105,116,86,94,96,107,103,99,103,106,113,83,101,120,110,106,111,97,110,100,100,117,102,100,92,107,106,114,88,102,96,109,107,91,100,107,112,105,113,89,95,110,100,101,85,76,102,116,103,99,106,116,98,104,103,110,96,100,113,99,103,97,102,96,108,105,99,99,111,95,108,88,93,105,109,103,107,99,101,82,98,101,86,101,95,104,101,110,105,104,97,98,108,101,104,88,109,97,91,100,89,107,105,87,110,124,90,104,98,103,104,92,99,102,87,99,115,100,101,115,95,100,101,105,99,70,100,109,99,91,109,99,93,93,96,94,98,109,99,88,100,107,104,94,93,86,106,93,94,93,99,100,108,105,106,99,97,108,96,88,105,98,113,95,89,99,109,84,83,107,114,107,98,103,118,98,87,95,105,81,96,97,111,115,86,105,105,108,105,93,90,97,112,101,98,100,107,105,96,105,101,104,94,103,111,97,98,92,103,102,102,89,98,100,109,106,96,102,79,94,94,107,87,86,97,107,110,104,97,113,101,110,95,96,117,89,103,110,105,102,99,104,115,95,97,91,105,99,109,100,104,99,109,108,98,98,99,90,102,96,96,97,105,95,90,124,94,104,114,96,94,93,104,104,99,111,101,105,113,108,101,95,99,94,106,95,106,105,99,97,95,98,108,88,101,104,110,95,99,94,102,100,100,96,101,120,96,111,104,105,92,103,101,96,105,112,117,105,98,95,96,87,101,103,101,94,107,104,110,113,106,95,96,114,107,105,97,110,114,95,96,103,94,93,94,99,106,101,102,102,93,95,85,105,98,92,98,105,96,102,95,70,103,94,101,104,94,103,103,90,101,95,88,92,95,90,106,95,113,97,106,93,102,99,108,96,110,91,103,97,100,103,96,100,91,108,104,97,105,74,100,101,99,100,106,94,91,113,91,107,121,106,93,106,99,104,110,104,108,99,96,104,109,94,106,113,106,109,91,99,102,94,100,104,91,98,106,107,83,107,95,93,92,90,91,90,97,110,104,93,98,87,102,100,93,102,76,96,106,74,108,99,97,88,95,99,98,103,91,94,107,88,86,91,103,104,106,100,106,108,92,102,101,103,90,104,95,101,104,91,111,79,94,84,111,97,91,92,88,105,96,99,83,76,109,96,95,103,98,103,100,94,95,106,98,91,111,107,114,107,110,109,110,101,98,97,107,93,104,104,106,112,102,99,97,101,101,97,92,114,95,106,104,110,109,103,99,93,103,111,86,92,100,107,103,102,101,110,105,116,101,104,95,104,92,99,97,96,113,106,106,103,102,99,97,101,97,103,94,101,97,109,98,98,105,105,101,102,106,91,100,110,103,104,91,97,98,107,106,101,84,88,104,98,99,90,92,102,91,95,98,105,96,113,100,95,107,99,100,107,111,96,102,100,90,88,79,96,92,100,96,104,103,100,73,92,86,97,105,110,100,94,92,102,88,101,110,101,92,95,100,111,101,97,100,99,102,108,104,106,96,103,99,97,108,91,104,102,99,100,107,108,98,92,99,79,107,109,101,99,109,109,86,95,111,107,105,97,64,92,98,96,98,103,104,94,106,112,100,95,104,98,99,93,106,111,94,107,97,99,106,99,113,93,108,102,87,109,108,78,96,95,94,97,99,117,99,98,110,96,91,95,97,100,109,93,101,90,105,99,106,102,99,106,92,99,95,103,104,96,111,96,95,103,102,95,110,92,105,113,99,104,112,117,90,105,92,95,101,96,83,91,80,91,102,94,103,100,92,100,98,96,109,111,96,97,107,106,101,109,100,105,105,102,102,97,101,105,83,102,97,100,101,92,101,111,108,96,102,97,96,103,98,100,108,97,94,102,95,112,99,105,103,91,93,98,104,116,114,96,100,117,103,107,91,100,99,93,103,107,113,103,112,104,99,97,100,94,99,109,108,91,102,109,93,99,98,105,101,105,113,111,90,100,104,91,105,96,105,103,95,86,100,92,88,102,96,98,85,99,100,106,102,110,94,96,104,99,117,96,87,104,85,103,105,100,96,130,88,99,99,100,95,99,95,101,82,117,110,105,103,105,94,115,100,106,107,106,108,95,102,84,95,94,102,106,81,104,98,104,101,118,100,105,110,100,98,102,102,95,102,104,94,109,100,101,109,91,78,92,107,103,97,104,103,100,113,99,94,93,105,90,95,99,98,108,109,117,97,101,96,97,97,106,102,106,103,109,108,106,103,101,108,103,104,109,107,100,96,109,90,103,108,102,90,106,110,103,94,114,107,95,115,111,104,95,89,93,108,116,99,105,92,107,102,88,78,97,80,104,110,97,101,103,103,100,89,95,96,96,122,84,116,103,114,101,110,104,82,100,104,103,92,105,95,99,95,100,107,80,95,104,94,105,100,106,113,92,87,107,94,113,107,101,96,108,99,92,107,112,113,112,101,99,101,103,106,106,95,102,102,101,106,102,100,103,92,105,101,95,102,105,109,96,100,99,104,106,100,91,87,109,100,100,98,91,103,98,103,99,93,103,107,95,82,106,96,97,101,109,97,109,102,94,111,104,98,118,108,111,98,100,105,103,105,103,99,91,92,95,92,104,99,95,104,107,102,103,93,104,98,106,104,95,100,107,109,104,101,100,127,100,103,103,94,98,116,103,101,110,110,103,115,100,113,99,90,95,104,107,90,96,102,107,101,103,127,104,101,112,101,102,93,96,104,100,103,100,98,101,124,84,100,109,105,94,96,96,97,116,104,96,97,76,102,112,84,93,95,102,85,105,102,78,94,98,99,105,109,105,108,105,93,105,102,93,104,99,112,111,90,100,98,97,104,103,97,105,105,101,106,119,102,101,110,109,87,109,109,94,91,98,104,114,107,92,101,109,101,106,100,98,103,89,98,103,102,104,93,106,108,87,113,102,102,77,108,101,91,95,100,111,104,100,102,87,90,109,104,99,92,99,101,98,132,104,125,105,101,99,84,101,109,107,107,96,112,104,98,96,102,95,98,101,83,90,113,100,96,101,95,114,97,107,105,92,106,110,108,100,94,92,111,93,97,100,117,91,106,92,121,99,105,98,96,98,90,98,101,108,113,109,104,96,100,91,100,96,90,100,94,96,99,102,113,103,95,95,110,93,103,100,98,99,103,105,114,98,104,103,98,99,85,87,104,93,87,100,109,97,112,105,105,94,97,112,96,112,112,99,100,94,117,107,100,99,104,90,62,92,104,104,100,96,130,88,95,102,112,97,103,99,108,112,97,97,93,96,93,100,102,103,97,118,106,94,94,94,96,111,103,109,107,98,95,107,108,109,102,105,98,102,95,92,83,98,111,108,99,99,103,102,99,98,98,128,107,96,101,111,96,109,110,139,112,104,98,94,106,108,116,109,87,103,94,96,100,107,91,100,110,102,119,119,108,95,100,110,106,104,97,89,94,97,109,97,104,104,93,96,105,136,105,95,101,96,98,110,103,99,106,91,102,103,80,92,101,100,105,108,105,99,75,101,106,102,100,96,116,110,94,93,111,112,104,93,98,113,96,105,106,101,69,93,101,108,98,89,96,100,106,106,97,95,110,100,100,109,94,94,105,95,102,107,96,99,106,113,96,94,95,93,98,96,104,104,98,101,93,106,98,98,99,107,95,96,106,95,112,108,93,112,96,109,106,92,107,88,95,106,96,106,98,110,100,104,93,95,108,105,110,104,97,104,110,101,100,123,100,109,83,99,111,106,101,113,100,104,108,105,96,106,104,97,102,96,101,108,98,95,106,94,80,108,100,116,121,104,82,86,94,92,103,103,98,85,94,103,102,100,101,101,97,97,100,104,89,98,104,95,102,91,96,101,113,102,91,102,96,103,97,101,106,101,95,115,90,116,103,98,101,96,111,99,98,105,100,115,99,108,93,93,93,91,124,101,104,105,94,113,106,86,98,71,98,94,96,106,94,100,94,102,101,97,114,104,95,101,109,96,91,102,104,100,106,98,100,106,107,119,107,99,109,109,107,100,102,108,100,102,117,99,91,97,99,109,104,107,83,100,95,94,100,98,105,120,116,90,97,103,96,99,98,103,88,113,102,104,98,105,110,107,70,94,98,99,105,94,102,93,106,94,110,123,97,86,100,87,103,109,115,103,96,113,105,100,105,85,107,88,106,97,111,105,101,112,94,84,92,86,108,111,101,106,105,103,90,99,99,118,100,88,106,111,91,99,109,92,94,94,98,112,95,90,80,104,100,109,95,102,95,91,95,108,104,102,113,98,98,95,118,107,105,108,92,99,99,99,95, +420.96707,97,101,108,109,100,108,94,95,109,100,95,89,93,117,100,106,90,106,97,104,114,99,100,99,102,95,88,97,106,113,103,97,103,98,121,89,100,99,96,107,109,105,105,98,102,104,103,107,94,118,114,109,115,100,99,93,93,88,102,96,100,96,93,113,102,103,96,114,97,103,106,105,100,100,92,114,86,102,107,101,95,95,99,105,122,91,100,94,96,108,97,106,102,102,87,98,91,104,95,99,87,103,109,106,93,112,88,101,99,89,99,90,101,96,100,108,85,105,103,102,112,106,117,99,98,95,112,100,104,97,102,107,98,113,100,106,96,101,89,92,103,108,114,96,89,100,100,97,100,109,93,100,112,94,93,102,103,103,105,98,96,115,98,97,105,98,101,86,98,83,99,96,106,103,94,96,107,91,69,98,102,103,104,106,95,81,95,104,104,109,105,111,105,95,90,105,105,98,110,108,109,101,98,94,98,95,100,95,109,91,104,100,108,101,104,99,106,93,97,89,80,97,107,114,96,112,98,95,110,102,105,101,90,99,95,102,102,104,94,99,100,91,110,111,93,95,103,106,111,111,99,97,94,91,95,99,81,104,93,103,92,104,105,104,83,99,92,104,105,84,102,100,99,97,105,98,90,113,92,87,97,106,94,100,106,96,95,100,94,95,106,109,111,107,91,98,104,108,100,89,98,102,103,104,89,103,110,106,94,101,100,99,99,105,100,104,109,103,110,103,104,96,105,116,100,100,91,96,106,93,100,101,106,105,95,99,97,96,98,101,113,87,98,101,113,111,97,101,102,100,99,97,107,91,101,99,100,113,101,105,105,91,104,94,91,67,100,101,94,114,103,103,99,100,105,99,113,97,95,103,95,101,105,99,104,103,109,90,102,103,102,109,105,95,95,107,98,101,97,98,96,99,97,96,95,104,104,84,103,107,97,108,96,111,114,96,101,106,109,102,105,98,89,100,108,95,84,92,96,108,100,114,86,108,97,112,85,105,104,103,115,107,98,97,95,107,94,95,95,104,99,96,95,106,110,101,97,98,101,102,91,113,105,97,113,86,102,95,110,101,114,116,109,98,109,88,86,113,103,100,108,109,100,116,115,97,101,99,95,95,103,98,104,100,104,111,127,87,101,99,107,113,99,106,91,111,109,99,90,93,100,104,82,104,103,99,101,104,109,94,105,99,107,99,94,108,114,105,96,102,111,91,111,99,101,99,116,73,101,101,104,108,106,92,106,96,106,109,99,106,100,95,114,99,96,102,102,98,100,96,87,88,96,119,101,95,104,84,106,104,89,104,96,109,94,103,99,114,105,103,98,105,109,97,105,102,114,76,98,111,106,108,102,89,105,101,101,98,99,119,100,106,113,95,102,97,101,99,108,97,78,91,105,109,109,99,106,95,118,96,107,108,95,102,102,96,91,98,94,102,103,112,103,102,83,116,100,109,100,101,115,105,100,102,97,86,101,103,89,107,97,106,107,113,103,88,105,97,107,101,111,106,96,102,70,96,109,104,104,110,113,101,100,91,86,95,102,97,94,95,100,97,94,91,101,101,100,101,95,92,112,105,97,107,98,97,101,108,92,93,105,100,108,90,96,98,109,108,114,97,109,94,101,97,94,91,90,98,104,91,102,96,99,98,95,95,111,97,102,102,96,107,102,101,111,101,92,95,104,95,82,91,105,101,122,101,113,106,101,108,104,105,101,99,103,98,103,102,105,100,102,101,87,104,92,100,108,104,102,100,102,99,106,106,108,106,97,99,117,94,133,95,104,109,88,100,95,105,90,117,106,102,95,114,105,105,105,102,102,103,92,101,108,96,108,90,94,107,108,104,111,95,110,103,102,100,100,106,105,101,105,102,99,103,109,90,108,109,123,105,108,96,112,104,110,87,108,89,100,100,94,106,104,90,99,113,95,97,105,92,112,97,105,96,91,102,99,106,96,108,95,109,108,104,110,95,101,107,102,95,110,113,99,98,96,109,95,107,100,100,114,104,105,97,116,125,98,107,105,105,105,109,105,106,102,94,100,104,99,108,110,104,104,101,100,103,95,101,105,105,94,101,105,92,87,99,96,99,93,101,103,102,108,107,103,107,100,99,104,99,106,104,100,95,94,113,100,103,99,112,108,82,98,100,110,91,97,109,102,88,109,102,83,103,121,105,103,104,111,92,106,97,100,107,107,106,98,99,96,105,110,105,112,110,106,89,105,96,91,100,113,100,95,104,107,108,105,96,96,101,95,99,105,107,112,105,93,112,109,100,97,92,118,100,104,103,99,107,96,99,105,100,89,97,104,109,106,101,102,87,112,104,112,103,105,98,99,95,120,99,97,112,114,102,92,96,105,108,107,97,100,101,99,106,95,99,108,103,100,99,100,110,97,120,100,90,106,102,97,102,99,106,102,110,96,94,102,95,101,109,89,107,97,89,112,95,105,96,100,94,99,87,98,110,110,88,98,109,122,106,100,108,99,106,102,91,102,94,119,110,101,76,87,99,109,114,97,97,109,91,101,104,95,101,107,106,111,92,98,98,101,97,94,107,90,106,97,104,102,99,108,109,96,99,106,105,91,109,100,102,104,93,108,105,104,100,98,106,103,110,111,101,104,114,99,108,107,105,106,103,109,102,109,94,105,92,110,94,113,100,99,103,95,79,109,105,98,100,98,107,101,103,101,94,104,102,108,117,87,98,98,116,96,102,92,99,98,96,100,102,74,108,109,101,109,110,97,109,110,102,105,101,122,105,110,105,104,78,94,101,110,100,100,96,99,100,101,98,88,113,103,102,100,100,96,98,91,93,109,110,104,104,90,106,87,98,100,91,96,90,108,125,104,108,100,100,100,108,97,106,92,114,89,105,97,98,102,101,90,107,108,67,109,108,114,91,101,83,105,98,125,103,106,97,111,104,95,110,102,104,110,113,105,91,111,117,98,108,105,110,109,106,102,99,105,105,103,112,102,104,76,108,110,107,88,108,98,95,103,98,102,100,90,96,105,103,112,100,95,101,99,94,106,105,107,108,72,109,113,96,99,105,96,95,103,92,106,95,95,83,104,96,111,98,97,92,100,108,120,106,103,113,100,105,100,85,99,103,94,97,94,95,89,95,100,95,108,111,101,104,107,86,78,106,101,94,96,99,95,109,102,95,99,93,116,101,96,103,103,110,102,110,96,102,96,103,110,121,94,109,101,108,102,99,107,98,109,82,112,97,88,74,104,107,103,87,109,95,108,109,100,105,111,112,101,109,104,117,89,91,102,101,103,94,95,99,98,99,102,92,107,98,97,102,107,107,98,105,112,106,102,107,104,111,107,102,95,98,103,106,104,98,92,102,110,103,105,109,92,79,92,109,105,105,99,102,109,97,107,104,102,99,104,108,96,103,102,85,98,108,114,102,84,109,84,101,101,97,115,100,99,101,103,101,96,94,95,96,106,103,95,105,95,92,96,105,106,99,106,101,96,113,100,106,104,113,98,95,107,89,103,104,97,113,100,105,106,104,103,89,104,72,98,86,105,108,116,99,101,102,102,79,107,112,90,87,100,102,111,100,107,112,100,99,105,98,101,100,102,94,104,94,102,95,99,97,99,106,106,97,102,103,102,105,110,94,95,95,102,126,100,103,104,101,92,97,98,104,87,125,92,96,108,92,95,87,109,103,88,95,90,98,108,112,94,99,84,78,109,107,103,91,97,99,103,108,98,107,107,101,98,107,107,110,115,104,98,101,100,98,95,99,106,86,109,105,116,106,112,100,103,100,102,104,103,108,96,102,111,110,102,101,102,102,101,94,95,103,102,107,106,102,105,92,106,92,95,102,97,105,94,117,99,98,102,104,106,109,95,102,104,97,98,107,94,113,102,112,91,95,106,97,101,99,99,104,105,91,95,105,101,111,107,98,107,109,104,122,102,108,108,96,104,110,104,110,101,102,108,93,104,106,103,102,105,103,95,96,96,94,104,100,95,108,98,108,107,116,102,98,110,93,91,99,104,97,99,104,102,114,94,102,107,106,104,87,98,99,92,96,105,107,110,104,112,98,91,105,110,85,108,98,106,92,104,103,106,104,110,107,106,109,96,99,101,100,92,102,102,101,106,96,99,98,83,98,90,87,108,107,97,97,101,84,101,93,108,82,101,101,100,102,110,81,118,100,91,100,85,104,114,106,98,127,117,103,96,103,104,102,68,94,105,113,94,99,98,104,92,96,105,98,91,96,116,100,93,104,92,95,100,117,99,97,86,95,105,87,89,125,102,102,107,113,101,95,93,89,108,98,109,103,109,109,94,95,108,102,100,113,109,108,106,103,111,111,92,102,103,109,105,100,106,93,107,104,102,103,106,105,106,112,106,115,104,103,113,109,106,106,93,110,101,105,108,109,107,109,113,94,100,95,101,95,95,105,100,101,108,95,97,97,107,93,109,99,110,101,86,99,100,100,106,106,99,104,118,106,95,96,94,98,105,108,107,106,101,105,93,93,109,101,95,102,103,98,101,100,105,99,101,107,100,95,91,97,104,99,114,87,101,99,107,97,100,96,85,106,99,98,102,109,103,101,90,95,96,85,92,102,104,99,109,106,101,106,100,99,102,94,102,102,100,97,104,98,102,88,105,98,110,111,95,98,97,87,99,98,101,102,97,94,98,105,89,108,96,101,101,94,101,90,99,99,106,117,102,98,101,102,99,112,103,101,91,118,89,75,71,89,94,85,94,117,112,97,124,117,110,98,111,98,92,93,102,91,90,97,92,83,100,101,108,93,104,99,105,91,93,121,95,92,92,90,97,96,105,104,90,117,98,117,85,93,96,99,90,103,99,108,108,97,79,98,89,106,85,99,94,88,106,100,112,103,83,106,80,91,98,100,105,101,100,105,101,107,110,95,85,67, +421.10733,97,101,102,100,87,98,99,104,112,104,93,114,97,86,98,86,91,107,95,95,100,98,96,107,107,107,98,94,105,91,95,113,98,96,100,97,100,86,103,98,92,109,86,95,110,114,98,103,98,117,99,104,102,95,108,95,100,106,99,96,91,88,81,85,109,102,99,112,99,105,101,118,97,97,94,100,104,99,101,93,98,93,99,95,97,105,97,101,100,90,104,106,101,107,95,90,106,94,97,84,95,104,99,99,101,104,106,88,87,100,97,98,96,101,117,111,92,102,96,86,100,100,95,111,102,113,114,107,114,94,106,98,88,110,101,109,108,92,101,94,65,98,101,98,94,86,105,106,109,98,101,96,96,83,97,110,95,103,87,100,93,100,105,125,98,93,106,96,97,88,105,116,105,90,98,109,102,97,108,106,97,101,98,103,106,93,94,80,102,101,84,113,104,108,93,103,101,91,118,104,109,94,97,96,96,107,103,105,104,113,92,114,98,98,99,102,106,103,100,102,102,105,95,101,94,105,99,103,90,96,104,98,99,103,92,98,106,109,113,105,88,109,103,98,99,98,90,106,101,98,94,108,97,107,96,106,92,100,94,106,89,101,103,107,91,102,112,104,102,89,94,110,103,96,101,97,89,90,100,103,93,105,105,103,95,104,93,108,96,97,105,104,96,106,99,117,104,87,71,91,105,95,106,104,98,82,109,104,108,95,101,110,96,96,97,95,98,109,108,95,95,100,95,101,100,104,102,95,103,109,105,98,109,98,98,94,100,99,98,116,108,94,98,97,101,103,109,108,103,68,99,116,101,103,101,104,103,106,102,101,94,112,98,87,100,97,112,123,103,105,102,103,102,106,117,92,104,102,103,93,106,109,100,104,103,86,96,101,113,115,99,100,96,118,102,100,102,105,105,116,99,95,100,106,100,106,114,108,101,96,87,104,87,104,98,98,98,97,109,102,97,101,99,100,108,99,104,105,105,102,109,90,91,98,109,97,105,98,101,120,85,102,94,103,103,100,93,90,109,102,104,99,93,112,111,101,100,93,106,114,100,106,96,92,113,103,99,99,100,104,103,98,103,106,101,107,108,114,103,106,94,107,113,101,107,88,104,112,98,99,96,101,101,110,87,104,102,104,116,90,108,91,91,107,87,107,111,104,106,108,108,98,96,112,115,79,105,119,105,101,113,111,107,108,105,103,110,101,102,98,108,110,97,88,103,106,105,111,109,92,106,102,104,91,99,95,105,100,110,104,120,97,102,101,92,105,99,97,90,107,105,100,100,102,111,100,105,102,101,100,93,98,105,99,94,107,99,105,98,98,101,94,106,100,100,99,102,109,102,97,105,134,97,104,107,100,96,97,105,95,108,103,107,86,103,105,104,111,94,104,105,94,93,105,102,99,109,96,105,107,105,105,90,104,89,107,100,98,105,108,98,98,100,97,94,115,105,104,96,104,103,106,111,107,97,100,99,100,107,111,89,105,107,108,105,108,114,107,95,98,113,105,99,107,91,92,97,103,109,111,94,107,97,106,97,99,111,108,109,98,103,108,113,99,98,103,97,111,110,111,100,109,100,106,112,90,106,96,109,101,116,102,128,98,102,100,99,106,97,107,98,118,110,102,80,100,102,109,91,100,105,87,109,114,98,81,101,104,99,104,104,105,95,82,111,100,112,110,101,107,98,103,99,94,95,92,117,103,105,104,116,103,106,96,96,106,108,105,87,99,90,104,85,100,77,112,97,108,110,106,114,101,104,89,104,105,102,106,106,97,97,103,116,104,103,107,105,110,99,99,106,104,103,100,105,106,108,85,104,87,100,104,94,98,109,101,108,88,100,94,94,96,93,111,103,94,103,106,110,101,98,108,116,106,98,98,114,102,101,103,104,112,109,113,103,92,97,100,101,106,98,110,114,102,95,102,96,105,99,98,90,104,97,99,102,121,112,90,99,101,96,105,105,110,99,103,94,105,105,97,97,91,100,104,107,95,98,103,103,106,101,105,103,108,99,108,103,109,112,105,105,104,99,98,98,88,120,109,102,108,99,114,113,106,94,114,99,102,96,103,106,102,90,101,106,99,93,103,97,104,108,98,108,103,96,100,103,100,98,104,118,91,76,103,91,94,90,112,100,95,107,90,94,107,102,96,103,100,94,94,101,91,101,105,109,98,103,101,98,110,116,108,94,109,104,110,104,99,115,114,99,103,96,105,98,102,106,105,94,115,101,110,105,97,114,105,102,97,102,121,100,101,104,96,101,89,100,97,109,97,100,106,104,120,101,100,110,114,101,121,105,117,98,109,99,112,103,90,98,100,114,108,99,92,104,91,88,106,86,109,93,105,99,107,105,89,116,105,100,122,100,103,103,100,100,92,98,94,100,113,100,95,93,91,87,92,107,108,95,103,93,107,90,101,104,87,101,100,107,99,103,107,96,99,106,127,105,107,73,64,99,99,99,106,102,101,98,99,106,110,96,97,100,111,91,95,104,98,108,100,105,92,109,106,83,102,97,109,107,106,104,114,98,103,103,90,114,101,105,111,100,96,101,105,110,101,101,106,104,88,97,108,94,93,100,105,111,101,108,98,95,92,85,91,85,95,105,110,106,98,104,101,105,105,102,92,102,102,97,92,84,102,110,104,102,103,94,101,98,95,101,109,102,99,100,108,106,106,104,104,91,103,98,106,93,104,118,95,111,98,103,122,99,96,96,113,108,88,102,98,106,97,107,87,97,109,102,98,106,94,101,96,88,106,113,102,106,104,93,94,99,104,94,104,103,98,97,110,98,108,100,95,94,111,109,104,98,109,98,104,95,96,106,110,93,110,104,115,96,102,106,98,103,102,102,88,94,112,98,101,97,87,104,99,104,104,103,102,98,98,99,115,95,108,102,98,86,106,92,114,109,98,104,99,99,102,101,93,106,106,100,100,104,91,104,100,100,103,93,109,103,100,92,105,95,84,109,112,101,95,101,91,109,96,96,107,114,105,94,107,107,103,113,106,118,101,94,102,90,91,99,101,102,106,99,102,108,85,85,108,111,109,104,100,92,97,101,94,133,90,62,102,92,103,101,102,98,86,104,100,96,96,99,101,100,102,100,109,97,99,108,97,106,100,94,95,103,99,95,109,103,99,98,105,103,95,103,112,101,99,89,106,79,110,109,106,94,99,101,114,106,106,103,90,103,100,105,110,100,101,93,112,99,107,109,105,98,105,112,96,103,104,101,109,109,101,105,87,101,95,104,110,105,105,98,102,100,105,105,95,103,106,102,89,110,104,101,98,97,76,110,102,100,103,101,103,115,109,96,104,103,96,108,107,100,95,97,94,101,95,109,110,102,91,101,119,106,105,102,92,100,103,88,97,105,94,101,95,103,98,99,91,94,100,90,92,103,106,94,96,96,101,96,104,98,92,77,100,114,98,93,97,102,105,100,95,118,99,98,89,98,100,94,96,96,100,100,102,95,90,104,102,105,118,99,107,100,98,111,99,100,99,105,108,111,92,105,100,105,108,101,103,94,113,96,106,105,105,98,99,104,94,104,95,92,95,98,97,105,98,102,90,99,103,102,109,93,100,112,101,102,95,95,93,109,96,113,80,120,101,92,106,102,99,95,85,91,107,97,107,91,108,108,94,105,98,96,86,105,96,101,83,109,114,92,94,113,115,120,103,112,113,89,95,91,102,104,100,106,98,106,72,99,102,101,91,103,106,108,104,99,98,96,102,104,102,102,96,99,106,91,96,105,99,109,96,97,82,99,110,90,98,102,95,96,90,99,88,106,94,97,105,101,116,90,108,112,97,106,98,98,104,100,110,100,73,98,101,109,110,95,112,95,101,92,96,116,91,104,111,113,103,117,87,88,101,100,104,95,99,107,102,103,101,103,93,89,100,90,91,91,105,89,110,96,101,108,103,113,95,111,99,99,103,103,99,109,99,95,109,92,108,93,97,87,102,93,104,91,95,141,104,83,79,107,103,111,107,99,107,116,101,104,98,113,97,98,104,102,88,88,103,98,96,80,92,106,101,104,100,106,94,94,90,85,108,100,109,103,91,109,109,98,114,105,115,103,110,99,103,91,110,90,108,108,100,100,101,92,93,92,92,104,89,98,108,90,113,97,111,90,106,109,108,108,108,104,83,98,110,101,103,97,91,109,99,99,112,91,96,92,102,99,109,104,105,100,99,102,106,101,104,105,88,107,111,104,105,95,100,77,102,105,124,89,105,102,105,102,97,102,98,110,88,99,93,97,107,81,104,114,89,111,90,112,95,105,100,100,100,103,103,89,97,106,79,98,101,96,93,98,96,100,116,99,106,95,98,109,109,102,95,105,105,102,103,99,101,106,107,101,96,104,107,92,93,89,101,100,97,97,89,111,96,98,107,95,108,95,100,104,87,95,95,103,104,97,98,99,94,105,96,114,95,98,109,91,83,102,98,96,94,104,97,95,102,94,109,113,103,97,71,99,100,90,98,94,105,96,95,101,105,116,96,105,105,102,103,99,106,97,109,101,108,89,100,91,115,101,92,98,112,85,102,91,108,112,114,118,90,96,101,105,96,77,104,104,101,95,105,106,91,95,104,104,108,93,89,98,97,97,105,99,98,100,96,103,101,103,91,103,109,98,108,115,96,93,102,99,102,113,106,97,110,99,109,106,100,102,101,89,107,92,94,97,97,102,108,106,97,102,94,93,96,106,101,97,110,89,89,101,108,93,98,113,100,100,103,100,99,111,102,99,101,88,102,100,90,105,113,105,103,96,103,111,110,97,97,103,109,85,96,91,104,92,101,93,104,83,96,109,111,104,92,110,95,100,92,97,94,93,97,92,90,98,110,88,98,104,86,100,117,92,92,98,104,96,102,90,90,102,98,108,102,91,107,102,93,114,102, +421.24756,105,113,98,78,87,101,98,105,108,102,109,108,105,104,106,99,101,105,96,112,101,81,108,107,106,112,99,98,87,96,101,102,103,103,106,105,105,92,113,96,108,100,103,95,102,95,100,99,99,105,95,105,116,94,110,92,103,104,109,94,102,99,126,100,103,95,102,103,106,101,96,107,99,106,93,103,86,93,104,110,99,91,99,108,99,112,97,98,88,107,96,97,103,109,110,111,97,117,101,102,111,97,115,99,100,104,101,96,106,95,97,111,113,107,90,100,102,72,99,110,96,106,98,110,106,98,98,100,120,112,94,87,99,99,107,104,102,94,124,112,95,101,94,102,92,97,100,104,95,102,96,116,101,100,110,98,106,111,96,102,105,106,101,100,100,95,107,104,101,93,103,103,96,96,94,101,104,103,93,105,99,97,94,92,109,98,100,99,102,101,99,97,110,91,100,100,97,99,105,104,94,96,103,100,86,115,101,105,101,96,100,99,97,106,100,89,106,104,83,100,110,99,101,101,100,95,110,80,94,114,103,94,91,104,101,99,106,97,88,98,95,99,98,107,95,99,98,100,98,108,89,109,95,104,106,110,97,104,86,103,92,108,99,104,95,116,96,87,102,110,117,108,99,103,93,103,95,113,97,105,94,102,97,92,96,112,113,108,107,104,116,109,103,96,107,109,106,103,100,103,106,101,106,102,75,96,112,90,102,99,94,96,96,96,115,96,98,100,111,102,98,99,99,114,95,103,98,101,106,106,98,102,99,101,100,102,105,107,109,71,96,98,99,94,96,102,98,92,112,101,103,100,104,120,83,103,105,101,96,104,99,99,100,92,97,99,100,95,95,103,106,139,112,108,105,98,89,100,102,110,101,110,99,100,101,98,98,95,97,110,101,91,93,115,88,101,87,98,97,113,101,111,102,105,94,99,105,119,87,105,111,100,96,98,103,84,102,103,112,102,92,102,106,109,93,113,104,108,92,103,98,97,107,104,89,95,103,107,99,100,126,112,104,100,93,108,96,101,97,99,88,100,98,95,91,104,99,102,104,114,99,93,102,104,108,100,101,90,107,103,96,106,104,108,92,96,115,112,102,107,105,103,98,104,100,112,107,112,100,100,105,108,97,103,104,86,105,105,92,99,96,95,102,102,111,103,99,119,110,97,107,99,109,102,87,104,98,96,103,99,113,109,79,107,97,109,93,108,100,115,97,110,94,104,99,107,119,101,97,115,96,98,83,103,102,101,98,101,95,99,94,105,102,94,75,100,99,103,100,94,98,92,87,104,100,108,100,106,98,100,97,101,104,121,104,98,100,105,103,104,104,100,107,95,104,96,100,95,95,101,109,110,88,95,93,95,100,102,110,100,92,110,106,95,98,92,104,106,112,104,98,88,98,100,94,98,89,103,101,108,101,97,115,99,107,99,104,107,109,98,104,95,108,100,95,98,90,110,104,90,98,108,107,96,100,98,115,103,88,98,94,115,96,109,92,107,110,102,101,114,105,112,109,108,95,102,97,99,112,92,99,113,91,120,103,88,109,93,91,100,109,100,107,104,98,106,102,101,100,109,109,101,119,116,99,95,99,109,109,99,100,105,103,91,101,101,112,108,94,106,107,94,100,115,94,97,99,105,100,96,104,101,111,102,101,98,115,105,83,120,94,93,102,98,109,97,103,102,112,109,98,100,95,110,107,105,100,102,97,101,101,90,100,99,105,99,101,92,100,80,97,103,89,114,85,105,94,110,111,108,109,108,102,98,94,104,99,103,110,106,80,102,104,98,103,104,118,104,100,100,109,98,100,83,100,100,99,102,106,100,100,106,109,99,98,106,94,107,94,91,114,94,100,78,106,100,114,105,107,100,103,112,97,105,101,101,106,102,97,92,114,109,110,100,96,103,90,102,103,99,97,102,108,91,108,69,98,101,105,93,95,81,104,104,100,105,99,98,97,104,102,110,98,98,106,110,102,105,116,87,97,111,90,98,93,93,115,95,106,105,104,129,101,103,108,122,100,108,98,104,101,103,105,108,106,104,94,104,100,107,98,104,74,116,112,68,84,112,103,105,105,107,99,103,94,95,92,99,95,99,100,98,102,103,104,99,89,94,99,106,112,113,105,94,106,101,101,106,114,113,92,93,90,106,99,101,103,95,93,110,83,112,98,106,95,104,102,97,114,104,97,101,122,103,98,99,88,106,101,110,100,102,104,98,96,119,108,83,86,114,87,109,99,101,106,97,98,114,103,113,87,102,100,103,81,97,100,98,93,103,80,93,107,95,100,108,104,117,101,103,98,102,101,100,103,112,104,111,106,106,98,125,98,93,109,107,107,101,90,105,102,106,108,99,103,92,102,103,104,102,97,117,101,111,95,89,103,106,99,99,108,106,110,92,100,105,98,114,92,99,98,102,110,99,96,108,101,97,111,89,101,121,121,101,105,103,102,103,102,101,107,96,97,80,87,109,96,110,113,81,92,96,96,91,113,100,107,106,113,103,79,107,107,101,93,106,106,104,113,99,109,103,94,99,111,97,100,114,99,99,109,95,93,95,126,101,95,103,101,105,81,109,104,110,107,104,101,87,91,95,111,101,99,116,99,102,90,102,104,107,117,106,83,104,95,95,111,92,99,106,106,98,112,99,104,91,108,97,95,103,101,87,112,97,98,99,104,100,91,95,93,102,98,104,107,113,97,100,100,106,90,98,100,90,98,91,95,89,100,105,102,103,103,102,112,98,110,96,102,102,96,105,103,113,108,113,108,105,95,90,108,102,103,105,101,101,112,112,95,105,92,124,98,102,87,103,95,100,98,102,94,105,100,97,105,101,113,110,109,111,109,97,99,100,105,106,90,97,94,90,110,95,103,109,99,97,94,95,103,96,103,96,106,110,114,106,105,81,98,107,102,96,84,102,102,118,102,98,110,94,113,106,111,114,107,95,64,94,112,114,95,103,109,106,86,117,108,106,106,99,101,90,108,102,104,103,101,89,105,101,105,78,106,82,106,104,110,111,97,100,109,108,96,106,107,103,105,98,103,99,99,110,103,116,115,95,104,96,113,104,96,110,105,106,106,104,104,110,100,102,101,110,107,95,105,109,108,99,105,101,103,96,104,117,95,101,102,117,96,98,99,88,104,106,103,84,99,88,98,109,102,103,97,116,101,106,92,102,114,108,85,112,113,112,96,101,104,100,106,98,108,95,110,98,103,104,95,73,99,113,107,98,91,97,87,88,102,105,101,107,106,125,91,100,117,91,113,102,106,105,96,97,108,104,105,101,95,103,104,128,90,102,103,109,98,107,103,108,111,97,105,98,108,94,99,97,98,106,102,102,108,106,106,102,99,109,105,89,113,107,91,104,99,100,108,99,90,105,108,97,96,106,84,97,105,107,105,103,94,100,94,101,109,94,104,120,80,104,104,101,91,95,108,95,104,104,106,109,95,94,100,101,103,98,91,104,103,110,97,91,99,102,91,100,101,92,104,101,121,98,100,97,106,102,104,102,98,107,95,96,106,108,91,130,92,106,108,101,106,103,106,106,102,98,105,107,100,95,94,100,70,100,104,91,113,106,109,92,102,99,106,107,101,106,98,113,103,99,96,100,93,100,106,96,103,98,107,111,108,100,101,106,111,94,104,100,109,94,105,110,93,106,93,111,103,95,98,109,106,96,107,102,101,100,104,98,101,106,102,96,97,96,100,99,103,88,96,103,106,99,92,104,107,107,120,107,101,99,92,106,100,101,100,103,97,99,111,83,110,105,91,100,95,100,97,92,96,104,106,103,101,95,95,102,99,109,105,103,126,86,102,87,107,104,94,107,95,105,104,102,96,105,92,93,88,113,103,92,99,105,112,99,96,100,90,94,92,109,97,122,86,111,90,105,100,96,107,104,104,103,99,111,109,103,116,114,102,98,108,99,94,104,103,93,91,98,102,99,104,85,101,107,102,108,96,99,109,111,94,112,102,106,93,105,101,101,94,100,86,113,100,99,101,97,61,97,107,103,91,101,98,103,90,102,99,101,102,94,105,107,103,87,100,106,110,120,101,105,101,100,101,99,115,90,98,109,102,101,105,96,109,100,106,102,101,118,98,108,101,94,91,82,96,99,101,105,102,101,101,92,104,98,96,101,91,97,112,94,99,114,99,94,81,98,101,105,109,100,106,98,94,105,112,100,97,94,103,94,106,105,87,109,104,101,96,108,99,102,88,96,98,104,100,108,104,97,102,106,117,97,92,101,94,96,96,86,94,109,97,105,105,103,95,109,112,102,99,96,100,101,105,98,92,102,102,102,102,98,110,102,108,103,101,113,94,106,99,101,103,111,104,91,105,87,106,102,117,98,96,101,99,112,98,114,95,93,101,110,99,100,93,106,102,83,90,95,102,113,105,98,93,94,104,102,107,108,103,102,96,110,119,96,110,96,100,101,97,96,103,112,117,105,103,99,110,99,112,93,104,102,100,81,109,102,94,96,102,103,95,101,91,93,74,109,94,93,92,101,95,106,102,91,89,100,97,89,103,109,100,109,101,105,99,100,97,103,111,108,101,96,98,100,81,74,96,97,99,97,101,100,102,91,92,106,101,103,102,97,91,97,101,99,90,112,116,105,79,100,104,111,104,91,98,96,95,91,104,103,90,93,95,96,112,106,106,87,101,97,111,68,108,96,98,100,105,106,106,100,99,113,116,100,105,93,101,98,93,101,96,110,90,107,89,108,102,103,92,100,100,90,94,107,97,99,120,96,94,103,98,104,99,109,107,74,111,102,90,101,88,104,103,90,97,91,103,108,111,95,95,102,107,115,72,108,115,99,103,99,102,96,96,89,89,90,81,71,101,90,96,107,103,102,91,97,107,100,95,96,106,85,110,100,102,94,103,130,88,102,127,94, +421.38779,100,99,98,99,104,103,104,94,85,99,107,106,91,94,102,97,101,112,100,111,106,99,67,99,100,99,91,98,104,96,112,100,95,94,94,95,87,82,96,105,82,96,99,104,70,111,102,108,101,96,88,102,106,100,129,91,102,94,120,101,99,102,96,96,95,99,103,102,95,95,125,105,92,97,107,110,95,96,104,97,113,104,97,95,103,101,99,93,95,87,107,111,104,104,112,95,103,99,91,91,101,118,100,93,104,105,89,97,92,99,115,99,110,96,109,100,103,102,98,86,91,102,108,111,114,96,66,92,98,110,90,107,110,105,111,116,93,99,100,110,99,107,104,110,94,103,104,94,92,110,101,94,98,99,97,110,108,97,103,95,103,101,112,96,110,99,93,85,91,102,120,106,109,101,102,99,98,95,98,110,96,101,114,103,109,96,110,82,107,107,90,99,99,102,103,104,95,108,95,99,103,98,104,107,99,104,101,100,94,97,107,107,105,110,96,94,106,107,94,90,98,103,104,108,110,104,112,104,98,97,98,102,104,104,94,99,98,100,96,97,98,95,113,97,100,91,94,102,107,102,121,90,108,99,103,114,94,105,90,103,97,97,101,100,117,107,99,118,106,101,101,94,104,91,99,107,96,105,98,92,96,101,96,97,96,101,84,99,86,96,100,118,110,95,112,96,95,107,88,101,97,104,103,105,105,110,104,101,95,100,97,106,101,105,104,103,102,96,94,84,103,110,97,92,106,106,102,103,120,104,93,94,104,101,98,110,106,96,109,106,110,103,103,97,97,109,100,90,99,104,92,101,105,115,116,106,101,107,83,96,94,102,114,115,94,107,95,116,108,111,110,108,98,110,84,97,98,110,116,99,102,117,98,106,93,90,103,92,104,87,115,90,101,103,98,98,109,103,104,102,104,104,107,102,99,106,105,106,103,86,96,105,96,103,99,98,90,103,104,98,105,108,99,98,106,92,106,97,97,99,105,71,96,102,111,99,92,107,115,97,108,110,106,96,101,105,100,99,107,103,95,104,105,102,113,96,91,100,106,94,106,91,105,104,108,107,104,100,98,94,104,114,109,94,105,100,106,102,100,105,99,97,104,93,109,105,106,107,94,96,102,104,100,105,95,101,101,114,97,91,105,96,104,111,103,100,96,114,98,98,99,111,110,97,89,108,100,104,104,88,105,109,100,103,99,125,103,96,98,97,102,114,97,109,108,105,101,100,99,110,95,103,102,101,92,105,113,90,105,130,111,104,106,104,97,120,101,87,94,92,109,95,98,106,92,95,100,91,100,105,100,107,112,97,90,103,124,100,103,106,104,94,99,118,123,100,78,103,95,104,104,114,93,82,105,106,107,93,108,92,95,87,108,105,103,104,59,73,110,107,113,98,109,105,106,99,112,98,96,105,112,88,110,102,107,105,97,107,115,117,98,95,111,96,103,112,100,99,109,105,109,99,100,108,100,95,99,102,99,99,96,100,92,102,108,98,114,109,109,102,116,107,109,108,101,99,103,97,96,100,109,108,100,110,97,108,105,106,104,106,100,93,96,99,102,105,89,100,102,116,102,107,83,114,114,99,105,107,101,95,103,97,98,101,107,110,100,115,104,100,101,122,102,105,99,102,93,91,108,97,108,112,103,114,97,105,99,102,92,103,99,100,101,95,100,90,103,98,119,104,114,107,100,98,96,98,113,113,100,106,106,97,106,110,94,105,114,100,96,95,99,102,104,105,104,110,96,110,103,94,91,101,97,95,113,108,101,103,110,96,85,101,103,107,100,112,119,107,103,116,101,99,103,110,109,106,102,104,99,116,99,114,106,87,105,101,105,110,101,105,106,99,93,112,111,94,116,93,105,92,99,113,114,102,109,103,98,110,108,99,103,106,111,100,104,106,89,119,103,107,95,98,110,99,104,99,101,104,96,113,95,87,97,96,90,104,102,106,88,100,109,100,100,107,103,112,102,95,105,107,103,96,101,105,113,109,105,92,100,105,96,103,117,102,103,105,96,100,99,97,115,106,93,106,110,97,100,104,94,106,104,113,113,98,94,94,104,103,94,100,103,103,97,96,98,100,93,108,100,106,99,90,86,104,109,103,112,111,101,101,114,109,122,109,84,93,99,95,103,96,99,95,114,99,109,98,100,110,103,114,107,103,108,109,103,102,95,104,102,118,106,94,114,108,99,105,95,103,96,106,104,108,69,100,98,109,110,100,98,79,95,117,95,108,114,84,106,92,105,97,110,101,105,106,95,96,95,116,99,100,99,99,98,105,97,113,106,105,96,107,84,129,107,104,92,111,104,101,102,110,106,107,112,71,103,101,98,105,98,112,112,105,100,93,103,81,95,95,105,101,98,104,93,102,94,98,101,106,110,99,99,104,108,103,91,102,112,99,103,120,104,101,98,111,105,99,99,94,101,120,112,109,99,99,105,101,113,92,97,94,108,97,85,102,102,104,108,100,99,106,110,107,95,90,103,100,106,83,99,110,112,89,109,110,92,107,92,69,101,99,111,84,106,96,97,94,88,104,96,104,117,94,95,101,95,104,119,96,94,102,107,118,98,106,102,101,113,93,103,97,85,101,94,107,95,100,100,110,98,101,101,96,107,104,109,97,103,99,99,109,109,94,98,92,91,104,97,100,103,111,103,108,110,112,98,94,113,106,109,114,95,67,103,98,104,98,121,104,101,102,84,107,114,106,109,89,110,97,99,109,95,104,100,107,84,113,106,98,102,102,105,105,113,101,96,125,103,91,100,99,111,113,101,102,104,90,103,102,105,99,106,103,117,112,111,106,99,96,102,111,116,94,107,106,111,104,99,109,85,107,99,101,105,102,107,93,101,106,108,107,99,107,95,86,83,106,104,103,97,94,105,108,103,113,106,98,98,95,95,107,105,102,106,104,100,103,105,96,106,106,101,109,121,102,106,106,106,116,108,104,105,102,101,92,96,100,97,115,104,73,99,108,104,105,109,112,110,104,109,124,104,111,108,109,107,97,102,99,97,112,100,103,90,98,104,98,99,91,111,103,89,97,99,101,109,97,116,143,113,102,91,99,97,108,72,102,102,85,103,86,113,110,116,104,110,101,105,100,103,100,99,105,106,104,98,97,104,97,104,100,100,81,98,112,108,100,100,95,111,100,102,102,102,65,108,106,98,99,100,94,95,95,96,112,101,114,101,114,106,100,84,99,95,100,97,97,99,104,95,105,97,103,96,104,97,109,105,103,119,103,95,110,88,107,106,95,103,100,104,96,100,86,110,100,102,105,112,109,100,120,106,99,98,111,116,107,109,100,87,106,101,98,92,105,99,103,104,98,89,131,97,99,98,103,100,106,86,103,94,101,97,105,106,112,96,102,105,103,104,91,93,89,97,94,101,109,105,102,116,97,101,115,106,99,101,94,102,91,107,95,100,111,110,104,105,108,95,99,107,100,110,106,107,95,106,105,95,111,95,108,118,102,101,103,100,96,113,116,109,93,103,89,101,111,101,109,104,99,100,88,100,101,93,128,97,102,100,100,101,108,72,110,98,97,106,115,98,97,109,106,107,110,112,96,102,86,98,101,100,99,95,99,97,111,100,102,105,120,99,112,109,99,114,103,100,75,110,96,96,108,111,102,102,106,99,102,110,106,105,99,96,99,96,104,101,94,101,112,107,97,102,108,118,107,88,101,109,107,102,101,105,100,103,109,111,104,104,95,114,95,104,102,94,101,94,101,95,105,100,99,100,94,105,97,104,94,99,104,95,87,100,105,95,96,116,98,103,100,113,90,100,101,99,107,109,99,110,104,95,101,110,105,106,107,102,103,101,96,100,100,69,99,96,104,116,106,106,91,109,112,100,105,102,102,112,101,109,103,97,104,104,98,88,95,105,84,103,99,102,96,99,66,99,99,102,104,99,101,101,100,101,100,105,107,97,104,105,100,108,96,113,114,119,99,84,99,107,95,119,114,121,106,98,99,102,101,104,109,99,108,107,104,98,91,106,91,91,113,101,109,109,107,109,105,107,95,98,100,106,102,103,95,109,90,111,108,106,101,100,97,92,109,102,91,97,101,104,110,100,99,100,95,98,96,102,107,114,100,108,103,105,112,95,107,99,103,106,97,103,104,102,94,101,119,111,98,106,106,109,106,112,88,89,103,104,109,108,99,103,102,97,114,105,82,110,101,98,92,103,102,115,106,105,116,107,102,106,104,100,102,110,102,101,112,100,105,106,88,103,100,98,91,99,104,110,104,100,100,92,106,88,95,116,94,103,92,109,95,110,106,92,104,102,103,79,91,110,108,94,116,114,102,101,94,103,95,103,105,105,112,94,100,105,104,98,104,104,96,113,100,111,109,110,101,108,104,94,107,106,106,93,100,106,101,117,105,104,95,111,91,107,107,91,107,100,105,103,117,95,79,105,103,95,92,101,100,103,91,94,101,120,110,105,92,85,103,112,100,108,109,108,98,104,103,94,106,93,113,106,96,104,104,92,109,107,103,106,111,92,88,127,96,96,103,99,90,100,120,103,101,99,107,94,110,107,98,102,106,95,98,101,104,97,90,105,106,106,115,108,101,94,96,96,103,102,114,104,95,99,103,104,112,104,118,105,94,101,100,90,96,104,104,98,99,102,97,114,105,111,107,100,92,104,99,107,97,102,97,113,97,96,97,94,102,100,99,99,99,99,91,103,98,104,114,103,100,111,111,91,110,111,106,92,114,116,110,102,100,101,100,120,90,104,99,113,82,95,108,107,104,108,101,94,105,108,98,99,99,96,96,102,101,106,87,90,102,108,99,103,101,90,101,94,105,86,107,106,121,101,113,129,100,102,93,97,107,93,102,120,105,113,117,112,105,105,84,94,102,116,89,94,113,99,117,102,93,121,100,98,85, +421.52805,89,98,96,103,112,95,110,96,100,97,100,99,100,99,104,109,104,115,100,94,124,92,83,99,119,104,99,94,102,95,87,94,87,89,112,97,97,107,91,90,109,95,94,91,109,98,91,109,92,112,86,93,99,94,110,94,101,109,99,102,98,83,90,94,107,97,108,95,94,104,118,97,100,93,91,79,108,108,110,108,94,100,108,98,103,95,98,86,100,101,98,97,115,97,102,108,99,94,96,101,99,106,98,98,94,100,95,106,100,106,93,94,109,105,109,103,104,99,99,88,94,111,93,105,97,111,114,87,100,108,103,96,100,110,87,92,92,92,95,99,100,105,89,97,97,105,105,108,104,104,109,95,104,94,101,103,104,99,90,102,104,96,100,105,95,100,108,97,98,101,105,101,99,92,113,103,112,95,107,84,79,106,93,96,104,89,85,105,109,91,106,101,108,106,105,114,93,96,84,99,109,109,100,108,98,98,112,101,112,102,87,109,112,106,104,96,101,104,108,109,103,102,99,103,89,107,99,100,120,113,102,104,109,99,99,86,102,102,101,102,102,89,103,106,105,99,115,110,98,109,98,96,104,106,102,96,96,104,95,103,97,107,105,105,96,113,95,103,109,96,94,73,120,87,109,100,94,98,95,106,101,99,96,110,100,99,93,103,107,100,107,97,93,98,110,112,111,109,103,100,99,101,103,120,106,111,106,108,112,102,95,103,105,106,105,98,106,100,106,97,101,95,104,110,99,91,105,94,102,105,111,100,110,98,114,91,100,112,107,104,110,106,103,101,101,90,106,90,104,101,104,97,104,115,94,117,101,107,97,93,106,96,97,110,109,100,98,107,98,109,105,97,90,104,112,102,99,107,106,109,103,100,93,106,98,83,110,101,112,99,124,98,106,119,94,102,103,90,110,96,108,96,94,100,99,94,119,108,105,99,96,105,100,100,82,103,108,103,96,100,108,97,92,106,105,102,99,95,96,100,97,99,92,114,103,104,122,99,102,107,105,96,104,99,93,110,99,102,116,102,106,101,99,98,108,98,102,96,102,100,95,105,100,108,98,103,105,98,101,95,108,105,106,91,94,96,107,106,122,107,111,109,102,95,94,102,105,112,109,103,114,107,101,101,105,89,97,108,104,84,105,110,107,108,118,105,97,105,106,96,106,108,96,102,104,105,109,101,100,92,102,109,102,99,109,95,108,85,103,105,101,100,80,101,102,100,98,97,104,113,73,107,107,120,105,99,96,101,95,98,104,120,101,100,95,99,105,101,125,106,100,104,100,112,106,104,74,100,96,107,93,96,93,95,95,111,109,104,100,102,102,93,101,96,104,101,100,96,109,115,114,122,104,100,102,109,96,107,106,105,104,112,106,103,102,102,95,95,101,100,99,83,105,97,101,108,103,95,96,102,113,106,92,98,97,94,95,100,79,100,100,118,98,110,100,99,99,94,100,102,71,114,101,95,102,89,101,84,98,108,102,116,99,98,115,98,105,102,100,94,87,106,103,108,100,112,96,99,102,106,98,103,117,95,102,107,93,93,97,103,97,100,101,106,99,102,103,93,100,111,105,94,106,117,102,113,96,100,99,102,94,96,108,92,95,107,104,110,108,101,95,103,101,93,100,101,91,95,96,100,95,96,108,94,100,96,99,107,100,106,118,109,98,98,116,102,96,101,106,96,93,100,118,100,101,101,102,126,100,104,109,99,103,94,95,99,101,95,106,102,107,90,102,98,102,105,103,92,97,95,115,98,94,100,116,83,93,95,95,109,103,110,104,106,104,99,80,120,95,103,102,107,97,108,107,110,101,104,94,106,100,106,88,116,101,113,89,99,99,102,116,102,102,96,105,105,78,107,117,106,110,109,108,108,113,96,100,106,107,103,102,101,99,92,98,99,107,104,112,116,95,116,101,98,95,101,92,110,99,97,108,111,110,116,92,111,103,104,97,93,92,106,100,104,95,98,102,110,110,110,105,106,95,115,91,99,111,100,99,95,93,103,119,113,102,97,89,101,109,106,102,109,100,114,104,90,98,106,104,98,105,102,105,99,104,104,102,94,113,111,110,110,96,104,96,101,97,110,106,101,104,114,101,103,105,98,103,99,95,101,109,100,97,107,84,111,92,95,105,94,109,103,116,103,97,105,92,105,93,108,110,104,108,107,107,93,129,95,106,106,109,105,102,107,108,115,76,100,104,104,104,110,110,91,98,94,100,99,88,112,112,100,102,106,90,91,102,113,124,98,108,107,101,92,105,109,79,111,99,101,104,109,102,90,115,98,99,101,91,102,104,103,99,101,108,114,105,110,103,107,108,103,110,90,101,111,102,104,93,102,101,99,102,80,101,95,87,104,95,98,99,106,97,101,102,103,107,100,97,113,106,109,95,96,100,96,90,95,109,101,108,115,113,114,103,101,103,97,103,95,100,101,105,109,105,101,95,105,101,93,98,101,108,114,115,102,111,92,108,104,96,96,108,91,102,105,104,93,99,101,95,96,110,103,103,114,78,91,101,96,106,108,102,113,113,96,99,98,92,112,101,113,101,107,99,102,103,106,108,113,99,100,111,99,90,107,105,105,103,104,103,100,85,101,100,108,95,90,93,90,108,101,100,99,101,108,107,100,99,100,99,104,105,108,98,100,102,99,104,90,91,116,85,97,108,109,116,100,102,103,108,84,94,112,93,101,110,117,103,103,101,95,110,116,108,103,109,99,105,92,92,90,95,94,104,100,104,102,108,106,111,109,101,113,103,97,99,99,108,107,99,101,86,101,103,119,103,107,101,116,98,103,100,96,103,99,105,96,107,102,107,100,113,92,100,103,103,96,119,116,92,109,105,100,102,98,93,102,104,102,101,110,103,102,104,88,106,110,96,92,109,97,109,108,100,99,93,91,112,104,124,92,106,104,108,100,93,91,102,102,78,99,99,98,97,88,102,99,109,101,106,110,102,111,72,129,104,116,100,95,95,98,98,87,99,110,93,106,104,98,95,109,103,91,122,98,113,100,98,100,103,100,96,111,95,102,99,89,96,113,110,91,107,91,98,97,109,96,97,113,104,101,106,107,95,109,111,102,112,106,103,105,119,76,104,104,110,109,100,98,98,99,102,105,112,102,96,118,99,94,91,82,102,95,99,98,103,94,108,87,99,100,99,98,96,105,98,91,114,108,105,106,96,106,94,102,102,105,95,103,101,104,104,109,99,93,100,100,98,113,99,92,123,100,100,98,113,102,111,98,103,101,108,119,111,91,94,103,91,105,105,98,94,102,94,95,101,94,94,99,95,100,106,99,117,101,104,106,98,104,110,100,95,103,98,108,105,98,108,99,109,126,104,84,99,102,98,113,115,101,99,107,120,94,109,110,97,98,94,96,98,101,107,101,95,121,85,98,106,106,105,105,117,89,98,104,98,106,107,103,92,103,105,123,89,100,105,112,94,111,97,97,106,86,105,99,87,100,106,102,107,98,104,94,98,100,95,99,106,105,105,102,96,95,72,109,99,89,106,94,102,110,113,106,104,112,105,101,96,119,100,88,98,101,104,101,102,98,101,92,102,108,94,95,106,107,101,89,95,109,96,107,98,99,104,95,102,108,96,111,95,97,107,96,105,93,94,97,104,102,103,88,98,105,78,84,94,103,92,95,104,92,113,114,104,92,96,101,101,104,93,94,95,105,100,100,107,95,98,94,70,104,94,107,95,105,94,97,82,96,105,112,90,104,121,91,95,91,82,101,111,91,105,90,102,94,111,108,103,98,99,82,104,99,89,102,102,88,97,105,81,108,91,109,100,104,102,108,107,96,116,86,99,100,105,82,96,97,97,95,98,99,91,104,105,96,105,96,100,96,101,101,109,100,98,112,101,91,99,109,107,95,101,116,104,107,101,106,101,102,96,100,92,102,104,105,100,95,100,106,93,113,116,99,80,113,112,101,103,96,103,101,108,116,101,103,106,110,97,96,112,99,108,109,103,106,99,102,101,104,93,102,105,104,112,99,98,104,94,89,106,96,88,94,99,109,107,100,103,106,87,103,109,102,105,95,113,87,98,121,98,112,105,111,101,103,104,96,111,103,99,108,103,117,108,91,94,110,99,103,103,100,97,105,105,104,103,100,105,106,108,101,101,90,115,111,105,103,115,99,106,89,95,107,99,70,90,88,109,101,108,101,105,110,102,112,101,111,83,95,99,102,96,104,94,119,96,113,95,106,110,111,102,91,89,103,109,101,96,98,100,75,102,86,90,100,89,99,112,94,106,100,117,109,102,102,115,100,102,107,97,117,100,101,101,107,97,105,112,96,108,95,113,112,94,110,106,107,101,116,104,107,96,99,104,107,109,97,101,105,96,107,89,104,100,88,96,88,100,96,103,97,100,107,105,103,113,105,102,97,69,96,103,100,102,110,87,94,84,102,115,119,102,97,97,99,108,102,98,98,105,96,99,86,108,103,102,91,111,102,95,105,109,97,111,98,98,106,97,99,90,99,95,105,107,109,92,108,100,97,90,85,104,81,105,90,98,102,103,103,115,96,105,104,94,110,99,109,98,100,105,129,117,95,109,101,100,104,88,97,105,98,101,113,97,95,94,88,102,91,105,103,105,109,99,93,96,117,104,94,95,114,99,99,103,99,115,108,109,102,122,98,109,120,112,106,76,100,107,102,98,104,93,107,99,102,103,95,120,98,106,104,100,111,109,105,93,108,96,98,87,111,101,118,111,97,106,93,99,90,94,99,108,100,108,102,90,112,106,96,110,104,100,105,98,102,113,97,109,104,109,112,92,94,107,101,96,92,100,94,109,96,98,94,98,112,96,94,95,104,95,98,88,104,105,106,93,106,121,95,102,97,105,100,107,96,115,113,113,93,109,102,96,96,99,91,102,106,94,91, +421.66827,92,84,95,106,84,103,96,93,93,108,93,98,101,105,96,96,103,93,113,98,99,87,96,97,98,97,111,102,96,96,112,108,89,101,102,92,103,94,107,93,96,95,104,93,106,104,98,83,96,94,89,96,105,100,104,87,100,105,91,104,79,103,98,97,108,99,101,86,99,94,105,101,90,125,97,105,95,100,100,90,94,102,98,95,87,91,100,106,96,98,97,110,89,106,115,98,100,85,89,95,88,93,94,104,101,106,98,91,96,94,99,84,101,113,109,96,86,101,97,102,105,102,107,109,96,110,95,86,101,107,99,107,100,91,94,103,102,107,105,110,94,107,97,104,99,97,112,91,86,81,78,92,106,98,99,100,94,97,102,106,105,106,96,98,110,105,89,100,91,104,114,102,96,102,98,96,111,110,106,94,99,98,95,105,108,63,108,95,118,104,87,98,107,96,90,111,105,107,91,100,98,100,98,103,136,94,100,102,113,117,109,110,97,106,106,101,105,105,87,110,87,99,102,106,102,105,96,105,117,106,100,98,97,110,112,113,106,100,98,114,93,100,103,111,95,103,117,102,104,96,99,88,93,104,98,110,100,109,99,100,102,98,97,102,107,100,104,101,97,95,98,107,110,95,95,100,99,98,95,114,108,107,105,90,100,109,87,101,101,100,106,104,103,107,104,113,109,106,106,96,117,106,103,108,103,99,104,102,95,106,97,131,104,103,95,100,83,98,103,117,109,102,99,93,98,105,101,100,107,104,99,101,108,106,106,103,104,104,80,104,97,100,96,106,97,94,102,108,105,104,79,107,103,101,95,110,109,98,101,97,100,96,99,95,104,97,96,117,100,97,103,97,91,104,98,102,107,109,100,113,102,103,98,105,105,88,101,101,101,97,103,103,101,114,102,102,92,104,107,109,96,83,94,106,106,97,101,100,102,113,80,102,100,94,101,93,92,100,103,95,107,98,100,99,101,102,103,96,102,104,90,97,106,102,106,108,95,105,112,103,99,97,92,99,104,104,80,96,97,104,101,97,101,97,111,105,95,104,87,104,99,96,97,107,106,97,108,107,106,99,101,102,103,103,97,101,96,108,100,101,98,106,105,103,98,99,107,103,101,103,96,101,100,109,95,95,99,96,101,99,102,106,94,101,102,105,96,108,100,100,102,99,100,99,95,102,105,96,105,101,106,104,109,107,103,95,110,105,110,102,91,66,103,109,94,96,87,95,114,103,94,92,102,99,102,109,100,102,96,102,102,105,98,106,91,102,105,105,107,92,100,96,114,102,100,98,98,116,98,103,103,108,104,99,100,116,95,93,100,106,113,106,121,92,95,105,105,105,87,106,111,101,103,113,105,90,95,96,105,104,86,97,92,97,103,104,113,104,107,91,96,100,100,124,110,101,89,96,72,98,95,107,95,86,100,105,97,99,116,110,105,105,109,102,96,101,100,96,97,95,94,87,96,106,97,103,94,99,99,110,88,109,96,101,103,103,109,106,95,89,99,112,99,109,96,90,101,111,109,103,100,102,102,104,107,99,112,102,103,104,103,100,127,96,98,91,102,98,103,104,110,95,103,113,94,96,116,107,96,107,96,101,100,97,101,105,100,94,87,92,105,99,103,94,99,93,90,110,87,92,103,107,98,99,93,107,109,110,96,98,109,105,102,91,107,99,93,96,95,95,100,101,96,105,97,100,101,98,96,101,113,98,108,94,109,92,95,109,107,102,99,98,86,110,98,108,91,91,97,101,110,101,102,95,101,98,101,106,101,91,99,110,103,105,108,106,81,99,96,118,120,117,102,115,102,101,103,107,100,98,98,97,98,103,98,104,105,99,96,103,104,105,89,105,93,92,107,105,84,104,96,98,106,98,96,115,100,102,103,97,102,105,103,87,91,100,104,92,97,107,104,100,106,93,101,97,97,98,94,91,99,92,110,105,101,117,92,110,109,100,98,94,87,108,95,99,101,103,110,100,107,103,109,102,110,102,105,91,102,109,71,108,107,110,119,103,95,113,99,105,96,100,111,100,100,102,95,98,99,94,99,77,108,100,96,85,92,106,100,105,98,105,97,106,109,93,79,113,87,105,83,104,98,95,99,99,114,95,108,104,103,111,102,114,97,101,91,88,114,102,101,99,92,106,95,87,92,112,94,100,103,104,79,107,113,108,99,106,105,86,103,105,112,107,108,104,99,97,91,71,98,102,100,107,99,98,116,90,93,101,101,117,95,99,105,103,105,87,94,119,104,104,105,106,110,100,93,112,105,112,111,98,94,105,113,106,103,102,91,116,99,99,101,105,103,106,73,104,103,99,106,87,116,98,91,100,92,105,95,100,102,99,100,108,100,95,97,101,80,100,99,114,91,118,80,107,100,104,97,98,96,117,104,100,98,99,106,99,90,96,99,119,103,103,95,104,99,80,74,96,91,103,97,110,91,108,105,98,95,102,98,94,88,89,112,92,94,93,101,95,107,104,102,100,87,107,90,89,113,98,100,83,107,102,102,103,104,106,116,114,101,108,91,97,96,97,100,99,101,106,100,109,93,103,90,108,100,111,112,112,99,104,105,96,104,107,108,110,109,94,99,92,90,102,97,92,103,112,102,94,104,92,115,99,104,103,106,97,99,69,98,99,106,90,99,106,107,100,96,100,99,111,101,106,97,97,102,100,98,105,94,120,116,104,98,106,105,104,90,103,109,88,103,127,101,108,113,110,100,108,99,96,111,102,109,103,107,102,104,113,102,112,98,103,119,102,109,96,100,101,96,107,99,95,100,113,109,109,90,103,104,97,87,102,111,98,102,102,102,109,108,93,90,95,93,103,107,105,111,97,103,91,123,109,105,108,96,97,99,112,106,102,107,113,105,94,102,90,101,112,102,98,105,92,110,98,100,98,96,100,91,108,110,93,97,106,98,101,99,102,83,105,99,88,101,105,108,92,67,110,94,108,101,104,106,107,107,98,95,110,99,106,67,106,90,113,108,116,101,104,105,97,110,111,113,104,102,117,103,105,96,102,107,104,109,100,109,110,81,87,102,97,105,119,96,107,93,114,101,113,99,102,104,101,88,93,100,105,96,104,107,101,103,93,100,96,106,103,100,91,106,92,105,95,108,105,97,117,105,93,106,100,122,101,96,102,96,83,96,106,95,83,102,101,109,94,87,96,106,105,105,97,102,97,95,107,106,102,100,105,91,100,104,103,90,101,92,98,103,101,97,106,101,101,94,95,104,96,102,97,103,108,91,103,106,103,93,101,95,102,103,103,98,96,104,109,83,94,112,99,104,94,109,95,108,106,103,113,103,102,117,101,86,99,98,107,93,99,106,96,90,97,107,98,106,98,89,99,99,104,113,102,105,87,84,112,98,88,103,94,111,94,93,103,92,96,111,116,106,103,92,96,103,106,93,108,100,109,108,103,90,90,100,83,93,93,105,109,109,98,104,95,105,105,97,113,103,96,102,104,101,104,99,92,96,81,109,109,107,110,116,136,108,100,107,92,105,96,106,89,94,103,95,98,107,110,99,108,102,95,98,97,102,103,105,106,107,108,101,104,98,101,103,100,109,95,95,97,96,87,93,99,108,84,107,102,96,103,114,104,100,104,103,105,104,104,109,112,106,102,107,91,96,97,99,98,90,101,116,102,105,105,104,106,100,113,109,96,101,101,105,106,109,95,109,112,88,110,104,96,101,102,106,96,98,100,121,101,101,93,108,109,110,82,109,106,113,105,95,101,97,96,105,104,105,108,95,104,100,94,101,97,111,97,100,96,92,94,98,104,94,105,98,106,113,103,96,101,86,101,99,102,95,101,89,106,109,99,83,106,94,103,95,101,112,94,110,97,107,99,94,101,98,104,96,100,97,99,99,97,106,101,110,98,98,92,103,101,112,107,92,93,96,108,96,106,103,104,100,97,95,114,123,111,108,106,122,110,110,101,100,104,92,102,95,103,105,96,105,94,107,107,106,105,113,113,105,108,89,107,104,106,101,106,104,106,100,96,103,80,104,99,108,95,99,97,101,90,117,104,101,118,114,97,134,109,105,104,108,80,105,110,107,100,102,98,108,106,106,99,106,108,117,107,107,106,108,105,95,104,103,96,104,106,104,109,109,108,92,99,101,105,110,111,104,102,93,103,105,117,100,98,94,86,105,96,113,95,98,102,97,96,106,101,106,95,106,97,105,111,113,90,103,112,97,95,106,102,115,107,78,105,108,104,102,99,106,102,104,108,87,102,104,111,87,99,99,110,106,100,106,98,94,102,91,107,109,119,100,112,92,95,109,106,108,98,100,91,112,85,105,109,89,110,121,111,106,101,104,105,105,98,104,99,101,113,109,100,100,110,102,111,98,117,99,108,101,116,95,95,92,106,106,106,103,68,106,105,91,105,101,92,103,113,96,105,106,108,98,103,112,103,111,97,91,88,104,100,100,96,104,102,99,104,100,87,100,96,106,91,109,91,107,105,109,71,116,110,99,105,97,99,96,109,100,106,103,102,102,109,89,95,95,91,94,104,98,108,104,91,91,97,89,94,97,87,101,100,109,96,112,105,102,104,103,99,90,92,95,88,101,104,97,87,120,99,99,105,112,108,92,111,98,104,101,106,105,94,102,90,98,105,108,102,97,96,95,109,103,105,105,100,126,96,101,123,97,93,102,99,104,102,71,109,67,92,112,88,126,97,108,92,102,105,102,104,99,107,107,108,101,98,90,105,101,77,104,97,101,106,95,90,91,90,91,108,95,105,101,107,96,106,105,132,105,91,109,91,94,95,104,101,91,91,105,97,87,101,91,102,99,91,97,100,104,99,107,100,94,89,84,95,85,107,85,108,106,96,102,90,71,91,108,104,105,96,101,120,112,85,101,113,99,101,103,85,111,92,89,88, +421.80853,103,98,102,95,91,97,94,106,94,101,98,96,98,92,99,100,110,100,102,94,98,102,100,96,100,91,97,90,106,99,92,98,112,87,109,112,107,93,96,99,88,105,102,99,108,118,95,95,101,107,95,92,113,106,117,87,104,92,104,94,99,95,82,83,105,95,98,95,95,87,102,107,95,100,87,100,102,95,102,101,94,91,93,86,96,88,102,102,103,96,117,100,97,108,81,113,96,105,98,99,88,91,106,98,101,95,92,95,101,106,100,94,99,99,100,95,105,105,100,111,97,105,92,107,116,93,121,89,106,103,101,110,99,109,84,102,99,94,96,92,94,103,96,101,104,101,108,94,107,98,100,108,111,93,95,88,91,96,98,98,102,99,101,112,100,94,79,104,99,97,100,101,100,97,101,99,110,88,88,109,108,118,116,94,101,103,97,88,96,95,93,93,87,102,93,99,95,86,101,108,97,97,99,99,91,94,99,105,114,113,84,108,118,114,99,110,103,102,110,107,117,109,112,112,97,101,95,90,106,105,98,99,100,104,99,99,102,110,103,90,105,92,102,105,99,129,104,114,98,85,115,105,91,98,102,101,105,102,92,104,100,105,100,97,91,84,104,105,112,110,90,108,105,100,100,97,95,102,105,94,101,109,102,102,105,105,104,112,105,103,107,116,95,87,98,98,104,108,120,99,96,104,104,101,109,113,74,99,102,94,96,108,100,129,112,106,95,109,105,99,75,111,106,109,112,101,108,102,105,108,97,110,113,90,106,109,101,103,105,101,103,102,92,92,108,102,106,102,109,101,94,108,102,109,93,105,101,109,115,108,114,99,83,105,100,102,106,100,114,103,107,104,111,95,110,102,104,105,102,133,105,97,97,99,101,103,101,88,102,97,110,91,101,105,90,102,111,94,99,106,95,98,102,93,95,99,110,101,105,104,103,100,105,97,103,116,97,87,102,106,101,72,89,103,96,94,109,108,105,83,96,116,101,95,108,109,99,108,99,97,108,102,107,108,99,98,101,98,90,110,97,79,96,97,98,101,113,99,101,103,97,97,102,98,98,101,109,109,111,108,103,104,103,108,95,94,95,98,102,109,95,100,109,97,98,101,107,114,92,92,111,104,112,103,109,104,105,89,102,98,121,102,104,99,98,116,97,104,110,87,103,111,91,85,90,97,117,96,106,94,110,97,101,100,112,109,109,104,92,101,100,97,97,103,90,97,99,103,99,97,95,99,87,94,97,100,95,109,95,106,102,107,105,105,124,91,104,99,105,102,111,99,105,107,106,97,110,107,101,100,100,95,96,101,111,103,101,102,103,106,107,81,113,87,102,103,98,98,95,97,111,109,98,105,105,96,106,100,91,104,105,101,113,105,93,102,84,99,99,98,112,104,113,104,105,98,104,116,101,94,113,114,102,98,112,106,105,98,107,103,99,105,105,98,99,101,96,94,106,109,108,103,113,104,97,99,113,98,99,103,90,94,91,103,105,101,96,101,94,99,104,94,117,117,99,101,98,101,101,99,106,88,105,104,95,112,99,100,104,92,111,101,96,82,87,103,91,112,102,100,100,99,105,108,94,105,94,102,107,101,94,94,101,102,107,96,101,102,94,100,105,105,108,113,106,104,104,104,98,101,108,90,95,113,66,98,105,104,99,110,95,103,86,103,98,111,110,105,109,98,108,122,102,94,88,100,125,94,105,110,108,99,95,106,105,103,104,96,111,98,97,98,82,102,89,101,97,86,97,104,107,103,98,98,114,95,103,107,96,95,101,106,118,99,111,100,103,103,91,112,98,111,105,102,103,101,104,111,94,98,101,95,97,98,100,100,99,104,107,105,109,97,93,102,107,100,118,117,96,102,98,105,111,109,100,102,102,106,103,96,114,96,101,102,95,103,92,111,102,111,96,95,108,101,105,104,90,97,115,104,86,107,98,106,103,97,104,107,96,97,107,106,94,109,96,109,103,105,118,110,100,111,93,96,88,95,97,95,104,101,95,105,101,100,95,96,96,109,95,101,94,89,90,99,107,103,101,110,94,106,100,111,117,96,101,95,74,106,104,96,110,101,110,95,98,96,99,107,101,97,98,98,101,97,108,107,115,101,111,108,95,110,92,95,125,117,98,108,96,98,103,109,79,104,96,92,103,100,96,99,105,101,110,109,101,93,101,108,113,86,108,104,102,104,95,75,94,98,110,106,103,93,102,97,97,105,105,109,110,94,99,95,109,95,97,103,101,95,103,87,101,108,91,99,101,108,92,100,97,88,95,100,94,105,119,94,104,109,104,102,98,101,96,116,86,110,83,106,101,97,91,96,98,94,99,108,83,94,104,106,111,125,115,95,103,97,92,114,96,106,113,94,96,92,98,108,95,93,91,101,110,107,108,101,91,94,114,97,97,101,98,108,95,97,100,96,104,105,107,92,86,111,104,105,104,97,92,92,87,101,94,97,95,95,105,82,98,98,107,98,98,95,103,84,87,109,98,104,99,96,104,101,102,107,97,103,93,103,100,97,105,95,99,100,106,94,99,97,87,107,96,100,92,100,103,86,99,102,96,93,93,97,100,93,106,100,77,78,108,99,104,95,94,100,90,92,108,127,104,101,103,100,102,109,103,102,105,94,119,98,93,95,104,95,101,101,101,76,95,104,84,104,98,107,94,100,92,101,87,101,115,106,101,99,102,101,102,113,89,100,108,103,104,100,91,120,93,112,104,105,98,102,88,102,87,98,90,98,91,113,102,112,84,101,104,91,96,100,115,100,111,112,97,85,108,105,104,96,112,98,98,104,106,106,111,97,111,101,100,105,104,98,101,101,98,102,109,90,102,107,97,108,108,114,93,98,95,101,91,99,100,103,104,117,114,97,110,110,94,105,111,101,100,95,110,100,92,81,111,103,99,98,98,103,106,109,108,84,98,106,105,104,77,98,107,85,103,97,74,107,102,99,105,89,95,101,83,104,102,103,96,99,109,102,108,107,104,103,99,97,111,109,100,104,112,102,112,98,101,99,77,83,102,101,120,98,104,99,106,81,98,100,108,96,94,100,120,97,115,109,90,104,95,109,96,101,97,103,91,92,115,100,94,94,103,99,103,93,106,110,102,101,90,92,100,99,105,100,96,101,95,104,95,93,115,82,96,106,95,95,101,90,95,86,97,108,94,92,104,102,101,101,109,102,106,102,113,112,100,103,100,101,109,105,109,100,95,101,98,112,107,113,103,91,109,98,97,106,108,91,96,109,103,94,100,93,117,103,103,100,86,102,102,91,75,100,108,102,110,105,103,98,96,105,94,96,106,106,94,105,99,87,100,97,98,107,115,86,96,103,97,101,94,108,93,101,95,113,113,101,109,93,107,102,105,102,108,102,93,98,90,105,101,97,103,101,91,95,107,106,86,103,97,100,97,98,109,102,109,101,97,93,78,95,111,101,116,102,98,86,104,85,87,82,108,100,91,109,101,99,101,93,94,106,87,98,120,104,103,89,96,105,102,107,100,113,111,95,98,102,103,96,108,102,102,108,111,88,105,120,97,97,93,96,110,101,106,99,96,109,105,96,98,104,110,109,128,98,116,96,101,92,94,100,98,93,99,90,109,97,100,77,85,102,97,92,114,104,109,107,100,105,109,96,101,92,106,104,102,103,99,101,101,99,107,98,102,97,100,94,99,110,101,108,87,105,81,122,109,101,92,103,98,109,112,100,105,89,101,98,103,95,102,98,106,100,99,96,100,89,101,80,105,96,105,105,102,103,105,94,101,100,83,101,87,95,84,104,100,81,91,107,104,119,91,102,98,99,96,98,104,93,115,113,92,107,110,103,100,110,105,103,106,106,104,101,100,106,102,91,112,96,107,101,105,95,107,91,112,98,104,99,84,95,103,101,95,99,96,98,97,105,98,103,95,104,106,100,106,103,100,100,103,100,101,104,106,104,104,98,89,108,99,108,81,105,98,106,91,94,106,105,91,101,100,99,107,128,92,99,100,106,105,109,114,89,106,99,105,113,106,93,105,103,101,100,101,67,97,90,104,101,92,90,105,96,100,106,98,105,105,106,104,105,111,113,101,105,101,96,100,99,99,113,117,103,94,100,108,108,107,98,96,101,102,102,96,98,101,95,94,80,92,94,105,104,93,107,102,103,102,96,100,97,100,100,90,113,96,111,98,97,81,99,98,106,97,106,105,93,105,97,98,104,90,110,91,94,137,99,110,101,83,103,107,92,105,92,90,97,102,103,91,97,98,102,94,88,106,101,102,95,102,111,86,114,104,91,87,112,99,132,87,109,105,89,84,96,96,86,117,104,98,91,101,100,105,98,88,110,110,98,105,92,94,97,101,97,97,103,91,100,95,98,95,94,106,117,98,98,97,100,109,97,74,93,100,116,95,100,105,98,103,103,97,99,95,105,100,99,109,94,94,96,99,99,103,99,113,93,100,113,103,92,103,82,102,99,98,102,88,100,102,96,97,102,87,94,97,104,93,101,88,93,104,112,91,84,98,91,97,91,87,103,93,109,106,114,104,93,93,106,97,91,93,106,89,98,101,106,96,98,106,100,109,95,106,87,89,87,97,95,97,106,100,95,95,89,87,103,88,103,104,96,96,87,106,98,102,102,93,100,104,103,124,107,94,98,74,86,97,102,105,95,87,94,100,102,112,95,98,91,103,101,101,98,105,124,100,105,91,91,106,94,105,97,96,87,97,95,92,97,101,96,93,76,95,92,101,109,101,101,110,106,98,83,89,95,99,97,103,101,94,109,105,91,105,92,104,110,97,94,109,91,89,104,87,108,95,112,109,113,91,91,94,92,91,91,103,98,93,98,96,91,92,99,99,95,105,96,102,96,101,91,101,100,93,100,82,85,105,106,94,112,104,95,98,98,108,97, +421.94876,97,84,98,98,95,114,105,101,90,98,87,104,88,98,105,108,81,107,95,99,108,100,109,99,102,102,98,96,103,102,83,92,100,96,112,98,96,103,107,107,101,91,108,98,109,102,91,96,99,101,94,97,107,94,135,91,92,101,66,91,91,107,86,99,104,86,99,97,98,98,103,94,109,113,94,100,106,108,106,96,108,102,76,88,97,90,101,103,91,92,76,97,102,91,108,93,93,106,88,112,101,97,96,105,113,107,90,96,117,103,102,108,108,88,113,95,97,104,106,95,94,94,96,103,99,108,106,96,108,113,106,111,94,104,107,108,90,105,95,102,104,116,94,112,110,98,103,103,96,105,99,113,100,102,103,97,100,88,105,91,87,93,116,111,105,84,89,93,98,101,91,105,91,99,91,106,100,105,100,114,95,86,90,82,108,94,91,102,106,100,100,101,99,97,97,103,99,98,109,109,95,101,95,101,113,93,106,87,102,103,106,113,96,102,91,98,96,94,102,105,110,110,94,98,104,104,101,92,116,98,100,107,101,100,109,91,93,115,98,105,105,85,116,100,95,94,99,88,105,114,100,109,98,92,99,102,99,96,96,95,94,111,92,100,84,106,108,100,109,91,92,102,101,103,110,101,104,86,87,97,100,105,111,87,89,99,77,105,109,97,100,102,106,101,70,107,74,98,99,109,107,97,111,93,91,104,104,111,97,116,105,110,106,91,108,99,99,105,101,99,92,101,94,72,100,99,97,109,109,103,92,102,106,104,107,97,103,105,103,102,92,92,99,94,98,105,103,113,99,104,107,100,105,109,99,113,98,110,81,97,97,91,97,92,90,97,87,100,105,108,100,94,108,106,102,99,97,98,102,112,98,110,99,95,93,87,96,110,93,95,113,85,100,106,104,90,100,98,102,104,105,100,109,87,106,106,87,106,96,111,89,94,101,102,105,88,108,105,105,104,94,102,99,96,106,93,105,97,103,100,112,107,76,74,98,106,96,109,83,69,106,105,70,107,90,113,100,100,94,99,113,105,100,105,100,124,97,104,108,104,106,107,103,97,104,98,104,97,86,99,99,111,105,97,99,94,101,103,103,96,109,109,104,89,92,104,107,104,104,94,100,109,101,92,95,100,98,109,92,97,106,103,96,98,92,103,100,89,92,112,117,99,98,108,101,99,102,101,109,100,99,105,101,98,106,104,111,104,92,108,108,113,102,109,92,98,108,101,90,106,98,92,100,90,95,97,111,107,114,111,107,97,102,113,103,108,103,98,95,95,112,114,103,108,100,105,104,106,87,91,130,104,98,97,94,89,100,110,105,102,111,110,94,103,116,93,114,110,112,99,97,96,99,94,99,108,100,109,105,105,100,102,111,100,103,88,100,111,103,103,104,101,107,91,100,109,106,88,103,91,110,107,98,101,97,108,93,105,106,110,113,103,109,117,105,98,104,104,106,103,95,96,105,88,111,102,107,93,101,110,95,102,105,103,97,106,96,116,97,89,100,106,96,110,85,103,110,103,110,112,111,109,93,107,101,101,106,104,98,99,109,107,109,99,94,98,72,113,99,99,108,101,104,100,106,104,103,104,100,96,104,98,116,96,97,120,104,103,89,106,99,103,104,101,93,94,108,96,108,107,103,99,94,110,70,105,88,96,97,109,108,108,103,87,104,105,104,96,113,97,96,106,95,102,96,101,107,101,109,97,105,99,95,98,98,101,106,101,106,90,98,108,70,98,101,104,97,98,87,95,87,126,109,80,107,89,116,101,108,92,102,96,100,105,99,105,106,104,100,103,102,98,98,101,100,109,103,108,106,97,109,93,100,99,104,82,98,100,112,104,113,95,105,108,92,107,96,108,107,99,93,126,96,112,102,102,90,105,98,102,94,103,113,91,93,96,103,96,127,110,97,104,102,94,109,101,103,90,107,103,97,96,107,88,98,103,96,108,97,104,99,96,100,99,102,83,95,109,103,98,104,95,98,100,92,100,113,102,105,95,86,131,107,114,113,106,96,110,102,104,110,105,112,96,110,105,104,115,95,109,95,107,94,96,107,94,100,108,96,104,104,105,87,97,101,85,102,105,105,98,115,109,109,103,84,103,88,101,102,96,104,104,102,96,87,99,96,109,98,94,107,99,108,101,109,104,112,112,103,94,100,105,101,108,108,108,93,115,103,98,95,92,113,100,102,104,93,108,113,91,94,110,99,108,106,105,105,91,101,96,77,97,79,99,96,102,96,102,90,98,105,96,105,93,102,98,92,94,88,99,105,96,106,104,94,101,109,105,93,95,101,101,103,107,104,101,102,100,100,104,108,110,109,104,103,109,118,97,109,99,106,86,106,98,97,95,103,99,102,94,97,101,118,100,102,84,104,101,106,94,100,108,106,99,109,98,97,101,103,105,123,107,91,100,97,100,100,93,95,129,98,113,86,108,100,97,98,101,97,107,96,101,100,101,104,102,101,107,111,98,99,98,86,96,107,107,101,88,99,105,89,99,116,113,107,99,116,100,113,94,105,110,112,98,105,102,105,100,93,103,100,105,108,100,112,96,117,103,102,105,113,111,104,111,116,84,108,107,100,109,100,102,99,107,99,91,98,107,106,101,106,99,136,105,101,94,111,94,113,104,105,90,106,98,110,105,102,109,98,87,98,100,109,96,118,100,106,103,99,87,107,100,104,110,106,102,106,100,104,102,90,106,86,104,104,104,103,104,95,116,97,101,90,94,109,105,103,109,109,101,107,107,112,62,101,99,106,102,111,115,106,102,87,100,114,85,92,100,116,105,93,116,91,110,98,101,103,118,113,111,104,99,105,103,99,109,101,106,98,109,92,107,116,88,106,98,96,108,107,108,111,102,100,102,107,108,101,98,80,98,107,111,108,95,106,100,101,106,99,105,109,108,110,87,98,94,98,108,90,103,93,110,94,91,92,107,96,98,103,110,101,103,100,116,102,101,112,104,95,88,96,115,101,111,103,93,107,112,108,106,106,105,97,112,109,87,87,105,103,101,106,104,97,107,106,91,126,113,96,105,103,114,104,98,92,93,100,98,105,92,107,108,97,138,100,99,94,104,95,96,94,125,108,107,101,100,103,102,89,110,94,102,106,101,108,94,110,110,107,109,111,98,108,114,101,101,102,105,91,81,100,99,95,109,117,96,96,104,103,97,99,116,94,108,101,99,107,106,106,111,115,104,109,95,109,85,103,99,98,106,94,107,97,98,104,97,109,105,99,115,100,104,110,107,112,96,106,102,98,107,100,99,103,101,97,100,99,96,113,101,121,85,117,108,100,101,107,117,97,97,98,102,104,108,108,103,114,108,94,96,85,115,104,97,112,111,105,109,90,102,97,104,105,99,95,103,113,101,106,113,111,101,96,117,98,101,106,93,98,80,104,106,122,98,100,95,102,99,72,99,100,107,93,110,96,74,109,104,104,95,102,106,103,105,107,100,100,97,102,108,93,100,99,97,111,99,110,100,107,90,127,101,99,109,96,96,94,99,110,99,114,88,102,89,108,106,112,108,96,95,95,104,100,104,105,101,99,99,118,114,111,109,100,103,82,106,141,101,95,104,112,98,106,106,99,101,101,108,95,109,98,109,107,64,105,97,106,103,99,121,92,104,105,96,108,87,106,91,109,105,108,99,104,100,109,103,101,108,95,104,97,103,102,97,104,104,106,105,101,103,98,97,107,105,96,111,133,89,97,99,107,109,107,120,111,123,108,104,107,96,109,97,107,99,101,96,107,103,102,110,105,98,95,102,105,100,100,95,103,112,105,104,102,109,97,98,101,114,100,106,109,97,109,108,107,129,103,108,99,101,96,102,103,100,109,90,109,96,112,92,107,108,108,95,98,100,105,117,91,113,108,92,104,98,93,95,105,97,103,100,92,110,116,97,95,106,104,105,100,101,107,100,108,101,103,101,100,104,105,112,100,99,103,106,96,107,110,106,103,108,92,98,103,99,106,118,100,115,98,115,114,109,92,107,96,101,106,99,108,110,112,111,103,104,95,106,107,102,109,102,101,105,109,108,101,107,101,105,108,90,110,99,92,103,88,103,98,106,103,103,103,102,101,105,106,105,106,96,101,101,99,112,102,100,108,117,102,105,92,95,97,96,110,113,101,107,113,110,92,105,112,98,105,106,96,109,101,98,102,97,117,113,105,108,115,92,95,109,113,96,108,111,104,75,101,96,98,111,92,104,111,109,100,102,96,91,87,109,95,85,92,106,110,92,96,108,114,92,99,109,90,99,107,101,96,103,114,100,97,108,97,100,93,105,109,104,99,102,97,108,104,102,105,99,98,86,99,103,111,116,105,109,107,83,96,99,111,104,103,87,102,100,106,117,109,103,105,108,82,106,105,105,107,97,92,104,108,96,105,94,87,97,99,90,91,106,102,109,108,80,97,96,86,93,102,96,102,104,86,100,102,98,92,109,99,93,108,102,86,93,104,98,95,116,109,99,95,108,98,108,102,90,91,102,89,100,105,109,115,100,90,100,99,98,99,120,102,105,117,97,103,103,98,103,102,105,98,98,114,95,89,100,106,89,98,103,106,105,98,100,104,109,110,109,95,100,107,91,91,91,100,101,108,89,104,107,110,107,106,103,104,105,102,94,104,105,120,87,99,95,97,91,98,100,96,88,100,99,84,88,83,107,97,99,125,117,101,106,90,96,108,111,110,101,104,105,99,109,94,93,84,109,100,102,110,113,109,108,99,102,105,96,110,102,97,100,92,107,102,112,83,97,95,102,109,104,107,104,96,98,102,108,99,100,102,105,99,103,90,111,102,106,105,108,112,108,103,106,106,95,103,108,103,99,109,104,100,100,104,87,87,102,107,95,98,112,90,105,88,99,104,109,103,102,100,109,104,111,91,107, +422.08902,108,100,102,103,88,101,106,90,100,109,100,108,113,106,101,92,100,95,114,87,109,106,95,92,91,106,99,105,109,103,102,90,102,106,106,94,100,92,99,95,101,95,109,97,105,99,100,106,92,104,101,113,99,101,95,106,106,104,117,106,106,108,102,92,105,99,90,102,102,89,102,87,91,105,97,107,94,83,104,101,106,105,93,98,89,92,83,103,94,104,78,103,110,128,98,104,103,108,104,101,116,105,96,91,94,110,94,94,106,95,104,113,105,100,100,117,99,95,109,103,104,103,112,117,106,110,64,103,105,106,105,100,101,97,111,105,113,113,107,111,93,109,95,94,104,102,107,104,91,97,103,108,94,101,105,92,102,100,100,89,115,112,101,99,104,101,82,101,92,98,96,101,88,105,106,108,91,87,109,100,103,99,108,98,105,91,103,88,105,88,92,92,105,120,92,101,96,95,109,102,105,125,105,102,98,105,89,100,113,110,88,81,103,104,110,104,97,95,100,102,106,100,111,99,104,110,109,99,110,85,101,100,101,103,105,107,101,101,108,96,96,99,115,96,86,106,100,95,95,105,108,102,71,87,103,99,106,110,96,106,105,99,92,94,96,110,101,96,102,92,106,103,117,95,91,105,95,98,101,94,99,105,108,101,98,113,90,110,103,112,109,96,108,99,106,101,102,104,108,77,97,100,106,103,98,107,109,103,97,110,101,95,101,107,102,103,90,102,103,98,108,107,99,101,105,81,94,110,110,107,112,97,100,93,105,108,97,104,96,107,103,92,95,97,95,98,113,103,89,103,112,96,110,97,101,96,94,95,104,104,98,104,94,106,100,108,103,110,104,105,100,91,104,97,105,105,109,104,93,106,102,108,106,101,94,102,104,107,107,104,91,92,105,99,102,102,86,99,101,96,104,90,103,102,103,94,101,103,103,104,97,94,101,103,112,94,85,88,112,98,104,106,95,107,108,97,100,102,97,87,96,114,68,99,111,96,115,101,99,108,99,85,100,93,102,105,99,105,102,105,98,99,87,110,104,101,104,103,97,111,101,101,104,99,102,113,104,108,104,114,99,98,103,105,76,110,94,106,99,103,109,112,106,84,109,125,106,107,104,93,98,112,104,104,103,106,90,100,102,105,118,104,106,102,91,107,86,102,103,103,110,100,96,93,111,112,94,103,92,98,93,98,105,92,107,102,93,100,105,104,93,101,100,96,91,103,115,96,100,104,104,112,94,103,116,102,107,100,96,102,63,104,102,97,99,106,109,96,99,111,103,109,104,107,106,100,113,101,104,91,95,96,102,113,102,98,100,106,108,100,96,101,102,102,102,100,95,107,117,103,84,89,95,100,114,103,99,103,97,112,106,104,126,103,93,108,98,107,99,110,93,98,121,112,98,90,98,97,93,107,100,104,110,103,99,91,100,94,83,98,98,96,96,107,109,105,105,109,98,104,103,102,106,97,93,107,99,102,98,101,101,110,90,107,102,100,114,100,99,98,102,110,95,93,100,104,104,106,108,95,105,95,103,96,97,101,102,100,95,100,89,103,107,68,107,106,101,100,106,109,99,107,97,114,93,114,108,98,93,96,100,106,105,105,110,99,104,103,104,102,103,97,105,101,94,102,97,73,109,92,106,96,105,100,110,95,91,116,109,125,103,101,97,92,80,96,96,103,100,91,104,103,109,118,97,106,111,103,102,107,103,101,95,99,133,101,91,98,114,106,81,105,98,114,97,103,113,101,106,97,107,106,97,111,91,94,106,99,95,98,101,105,107,104,88,105,106,112,96,98,97,111,104,102,101,111,111,88,100,121,98,104,89,111,104,99,96,107,102,132,96,94,96,92,97,94,107,111,100,98,101,105,104,109,105,115,105,105,100,104,105,95,105,112,90,109,98,106,102,103,104,94,118,98,96,90,108,104,98,110,94,81,106,104,92,84,105,106,101,94,97,106,100,104,110,104,106,102,87,114,106,105,117,97,101,97,103,102,112,93,94,95,110,101,95,100,113,98,111,110,105,104,101,105,110,106,101,99,99,103,103,101,109,109,105,95,95,92,106,99,95,112,111,112,105,99,108,103,90,103,107,99,108,110,93,101,93,95,98,107,97,115,94,68,114,106,93,105,97,99,104,99,87,101,94,97,103,104,110,108,105,104,99,107,112,116,96,107,93,78,107,105,106,98,110,97,112,82,107,111,101,81,100,103,92,104,113,98,102,102,102,106,96,106,97,92,92,103,92,105,98,100,105,99,105,73,111,95,88,100,103,104,95,97,100,108,109,111,86,102,99,105,96,106,93,117,115,99,91,104,86,94,98,96,116,108,98,108,97,96,100,102,102,118,90,87,108,94,106,99,106,102,91,99,103,103,110,95,107,102,101,109,107,97,100,88,105,96,105,101,84,91,95,90,99,91,99,114,109,91,101,104,95,90,105,97,105,100,95,99,112,113,96,102,101,92,97,111,101,111,94,101,98,96,88,108,111,112,109,100,108,105,95,103,104,99,95,100,100,94,111,102,102,104,90,98,90,108,91,109,107,100,98,99,113,95,103,105,97,97,112,105,112,93,102,103,101,94,98,97,108,110,93,109,102,105,99,109,108,101,101,113,103,97,116,108,102,104,90,99,102,91,99,98,103,104,130,95,113,99,93,106,116,103,94,93,96,95,107,97,92,99,103,113,105,109,113,108,87,101,99,109,100,110,99,105,94,94,107,109,109,101,111,99,101,97,95,115,105,112,95,97,94,113,99,99,99,113,106,107,103,107,94,94,103,104,97,108,111,98,105,99,95,85,98,110,107,99,107,94,106,107,117,94,111,96,105,104,104,102,99,109,108,93,100,98,95,97,92,102,101,104,80,98,104,94,99,106,95,103,92,107,97,113,105,92,104,110,105,103,98,103,95,96,104,95,105,99,98,96,102,100,98,98,94,103,106,100,117,112,85,125,96,98,98,95,111,104,102,93,99,99,106,97,101,101,117,107,105,109,112,95,102,109,98,103,105,95,107,99,110,102,97,110,102,108,99,90,103,95,96,100,99,105,100,98,105,102,96,103,89,103,106,101,100,82,110,103,100,108,108,118,101,102,112,81,111,123,103,92,102,101,96,111,91,112,109,106,110,102,105,104,88,81,116,95,108,94,102,105,107,101,103,103,112,104,89,98,117,98,110,104,114,102,97,92,116,99,96,100,94,97,122,98,112,90,105,104,96,103,108,108,100,99,105,94,102,90,111,110,95,106,100,109,105,109,84,116,110,110,102,103,107,106,97,102,113,97,98,113,94,96,102,122,101,105,94,89,116,104,110,114,92,110,105,92,107,97,100,112,95,98,101,93,101,94,103,98,98,102,85,97,112,97,101,100,105,93,106,91,102,104,94,106,100,95,101,98,101,108,101,81,103,104,106,96,104,113,105,94,84,94,104,105,101,102,103,124,94,102,94,111,105,102,111,105,110,91,96,99,106,100,104,95,100,98,106,97,117,100,105,109,102,87,110,81,92,103,104,96,104,91,107,93,96,94,106,107,113,105,94,99,96,97,106,105,105,92,101,107,109,96,99,103,98,109,94,98,111,101,101,105,102,111,96,97,112,99,94,103,102,105,103,111,98,91,100,109,103,97,94,100,98,106,105,99,100,89,91,108,102,95,104,104,105,105,105,91,115,97,105,124,101,98,103,97,82,101,102,106,107,99,101,102,108,103,106,105,101,99,111,107,113,93,121,98,97,110,102,105,109,104,93,99,109,91,100,102,104,108,116,91,109,120,104,101,109,90,103,103,95,103,106,94,100,108,105,100,84,110,95,101,106,95,95,98,102,94,97,118,108,96,111,96,110,94,102,99,98,109,96,86,91,111,108,111,87,100,112,96,79,106,93,104,110,142,97,95,105,108,99,97,106,102,100,102,96,97,102,95,101,109,80,97,97,106,92,92,96,83,100,113,113,106,94,110,96,105,98,98,99,105,98,104,104,87,107,95,108,100,95,98,93,99,110,97,103,92,113,101,99,99,105,99,105,101,111,107,95,105,106,102,90,98,100,103,102,104,109,110,107,105,111,97,103,96,77,87,100,92,102,106,103,103,113,108,94,98,87,106,103,93,98,106,108,98,98,90,110,109,105,116,109,108,93,100,102,89,99,97,111,100,100,97,112,98,97,100,105,106,99,97,106,102,108,104,96,109,104,106,103,105,108,102,112,108,101,105,98,109,92,106,91,104,103,94,98,99,103,107,96,103,119,100,92,92,84,97,96,93,97,98,95,99,102,101,108,113,106,94,81,97,76,97,108,109,100,98,99,105,103,102,104,111,109,106,106,103,103,106,108,95,105,98,103,113,112,99,102,100,100,104,98,100,96,98,106,83,95,112,91,109,106,102,97,99,101,101,117,100,96,106,101,98,104,98,105,94,97,98,100,102,105,106,100,96,94,104,107,107,100,71,99,108,87,98,103,95,107,98,109,100,108,109,105,111,104,101,84,102,112,105,102,111,101,101,101,112,99,99,97,97,105,98,114,104,113,99,92,96,97,103,101,105,108,91,101,105,91,109,100,106,102,102,100,98,112,102,101,91,109,76,116,101,122,111,100,105,96,96,106,102,99,91,107,103,100,106,102,91,102,98,107,98,99,104,103,107,119,103,104,101,91,99,105,105,94,109,100,98,91,88,91,96,105,89,93,128,97,90,107,119,89,108,107,120,119,87,101,101,98,95,100,104,98,101,94,105,103,108,104,95,83,108,89,121,105,101,104,98,102,103,99,100,92,103,100,99,95,97,98,112,103,102,93,83,105,100,95,103,98,98,96,101,101,109,109,96,107,102,89,117,109,84,90,100,94,100,106,100,105,107,103,97,101,101,105,83,102,96,97,102,112,101,104,105,104,108,93,103, +422.22925,106,99,110,91,105,109,100,108,86,89,116,93,98,110,116,99,93,97,103,104,103,97,96,128,86,90,101,106,92,90,92,94,89,91,107,98,101,100,100,101,88,105,102,105,96,101,99,99,88,93,99,96,109,95,101,103,105,80,106,95,99,104,98,104,105,111,100,101,102,97,93,82,99,103,91,114,99,86,98,90,103,113,94,103,92,90,96,101,83,91,106,95,98,104,95,108,100,98,105,106,96,108,91,92,85,96,94,101,93,88,94,98,98,105,104,105,96,110,97,97,103,91,117,105,103,99,101,102,98,107,109,99,87,106,92,94,95,104,97,101,94,90,79,101,91,94,104,96,98,132,93,108,97,93,93,92,105,91,116,92,97,109,98,97,104,98,80,88,102,100,107,104,91,112,103,78,98,92,110,101,105,99,98,105,90,87,109,91,103,101,101,105,105,101,105,103,103,101,97,113,100,92,92,96,104,107,101,96,109,112,95,101,106,102,103,90,102,109,86,101,106,102,105,97,107,113,95,94,99,101,98,108,103,106,95,105,95,104,94,105,100,91,94,97,112,86,104,106,96,99,95,117,83,102,97,95,108,99,95,100,109,92,113,105,63,98,94,99,97,88,110,94,99,109,105,107,94,102,99,92,94,104,99,108,89,103,93,96,91,100,102,86,98,99,106,108,102,98,91,96,107,100,91,100,96,106,90,112,100,106,104,109,105,96,99,100,103,97,89,88,105,108,87,94,103,104,104,89,109,100,87,87,102,109,104,96,93,97,95,97,98,99,100,101,99,113,92,112,100,102,100,81,105,101,109,97,98,99,104,88,93,100,97,103,98,101,108,101,108,106,109,95,99,113,103,97,100,90,95,107,94,98,91,100,92,108,97,101,109,100,116,89,106,91,83,90,86,87,109,110,101,105,111,95,99,98,100,105,102,71,100,94,99,109,101,105,97,88,100,101,102,106,92,98,102,97,85,113,85,106,111,91,101,95,125,98,94,88,92,109,97,101,101,108,98,108,94,98,94,109,97,101,102,104,97,102,80,106,102,102,113,100,96,115,110,103,115,111,102,103,104,95,95,108,105,90,101,111,105,102,103,97,103,101,102,110,104,102,105,95,107,105,101,89,100,99,94,104,107,104,103,84,99,106,110,104,101,100,98,110,108,111,102,106,100,108,98,107,101,99,117,108,107,94,105,97,109,113,94,103,102,107,86,116,118,103,110,99,102,127,110,101,99,107,100,112,101,96,114,87,109,100,106,95,97,91,100,110,92,93,102,103,87,121,93,108,107,105,99,104,97,103,94,93,110,115,117,94,101,102,100,103,106,95,97,104,93,110,98,92,97,102,89,102,100,107,110,92,104,96,95,98,100,98,101,113,97,96,92,104,103,101,96,95,97,97,110,98,105,96,121,100,98,95,76,94,104,100,107,90,100,99,96,112,113,97,102,106,102,103,112,105,96,90,97,89,93,101,100,121,105,106,101,89,100,102,103,103,99,92,101,95,102,107,105,91,106,95,126,94,100,107,99,103,92,64,94,110,99,79,103,104,104,88,105,94,86,105,92,92,106,99,98,103,97,94,92,95,110,113,101,90,78,99,105,102,101,100,99,102,109,104,102,108,105,98,94,86,114,99,91,91,95,95,82,111,106,102,112,100,98,102,104,104,107,113,99,126,103,88,87,101,113,94,103,111,96,100,93,115,104,97,100,95,115,91,125,100,102,94,95,102,102,102,100,98,96,95,95,99,100,118,99,103,96,105,99,120,94,103,110,106,91,109,76,103,110,105,109,108,99,113,102,112,114,100,100,91,106,103,109,133,102,96,111,99,110,102,107,109,108,100,100,85,106,107,106,113,112,104,91,102,107,110,110,89,99,96,98,98,95,104,100,95,100,98,104,101,97,95,92,101,94,94,97,93,100,98,97,100,101,98,95,113,117,100,109,101,99,109,92,81,99,99,102,109,99,113,109,94,110,104,99,118,106,103,123,102,100,108,94,100,103,93,107,110,90,110,97,111,106,113,86,98,105,100,102,109,93,115,112,96,111,106,105,95,102,101,97,98,110,108,109,101,104,96,94,99,93,107,105,103,109,101,113,104,98,107,98,102,113,90,102,93,95,95,94,115,97,105,99,100,109,91,101,94,103,95,95,102,114,96,107,98,107,99,91,108,104,109,103,110,109,89,102,114,92,101,91,108,87,101,96,98,98,97,95,123,100,90,100,92,115,99,98,98,105,97,101,95,105,105,102,103,101,95,94,113,91,92,99,95,93,102,110,96,116,92,96,99,92,105,100,116,102,108,93,114,105,103,101,110,96,93,107,112,106,88,95,108,94,114,90,106,89,97,108,103,106,91,96,104,101,102,105,101,111,100,107,98,106,106,99,101,101,110,92,101,103,96,104,101,108,83,87,98,98,103,97,93,87,104,95,101,98,100,107,109,92,101,94,103,95,111,106,114,96,111,109,101,108,106,120,90,101,105,100,101,112,101,100,93,99,97,105,112,103,99,83,110,109,111,108,102,102,106,93,94,100,96,113,96,77,102,110,106,94,119,95,108,112,105,109,102,103,107,109,101,105,100,106,110,101,138,104,107,91,108,91,100,103,95,105,109,107,105,104,102,109,114,96,98,110,101,99,119,105,105,105,102,95,109,108,97,100,107,102,107,100,99,120,117,98,96,95,105,100,91,109,109,113,102,104,113,105,106,108,91,85,95,68,116,101,114,117,85,107,113,116,92,105,101,115,87,88,134,80,105,102,98,100,109,94,95,99,107,102,121,88,112,100,99,95,95,102,97,104,96,116,108,107,111,105,101,95,109,97,99,90,101,97,100,104,102,84,102,87,98,101,100,109,117,110,103,116,98,103,102,116,109,112,101,102,107,99,91,112,99,112,107,101,121,100,99,109,101,102,84,101,101,111,99,117,107,100,112,90,94,96,103,104,123,94,111,94,104,106,95,96,113,106,105,96,102,104,95,92,103,94,94,99,100,95,117,116,103,106,108,111,100,102,90,100,104,99,95,100,98,109,104,96,129,107,105,112,99,91,102,104,106,105,107,107,96,101,104,110,106,100,117,108,113,106,82,108,109,104,106,103,113,110,102,98,116,87,98,96,98,113,96,104,102,106,110,95,99,99,96,84,109,99,93,99,120,109,95,113,94,100,107,112,103,91,95,107,108,96,113,91,96,85,107,105,108,97,98,108,103,94,118,113,94,107,97,95,99,103,97,100,101,101,107,110,104,103,98,101,102,86,116,99,97,105,96,95,101,93,102,98,119,98,104,101,118,98,96,100,100,108,100,91,114,99,96,79,103,102,95,110,86,99,101,90,95,102,108,100,105,102,99,100,105,108,101,92,101,100,101,103,104,94,108,90,104,113,107,92,104,113,108,98,94,100,121,106,101,75,95,104,99,95,103,118,96,94,107,89,110,105,91,103,95,115,100,104,91,105,104,102,98,104,99,115,99,97,112,99,105,105,104,95,95,96,104,105,101,101,101,98,108,103,106,98,102,99,102,112,102,99,108,104,110,99,98,109,105,100,100,105,104,97,101,106,100,98,103,107,100,108,98,99,98,106,117,96,103,107,102,108,112,109,105,105,107,97,107,110,109,112,93,108,103,123,95,95,100,107,95,111,104,106,82,103,95,101,109,104,87,95,109,100,105,103,116,103,94,103,108,107,109,94,95,97,108,109,96,98,102,107,116,93,105,101,103,94,99,99,110,97,102,97,99,101,100,84,110,100,117,107,102,112,97,123,105,96,98,99,100,108,94,103,109,99,82,99,102,100,100,98,99,115,108,96,98,101,95,104,84,107,95,98,106,105,102,100,94,109,109,95,104,112,87,103,107,110,98,104,106,95,94,106,97,98,91,119,97,107,91,105,103,106,95,99,100,97,98,99,99,97,100,97,98,110,99,101,97,99,106,107,100,120,100,92,114,94,105,98,98,93,107,106,101,101,103,106,104,102,110,95,105,95,120,102,104,109,92,103,108,125,105,99,90,105,113,107,109,109,106,108,102,115,103,97,99,107,100,105,101,103,105,102,80,104,101,101,96,98,101,108,101,93,102,97,104,102,112,91,94,99,112,96,100,102,90,101,102,102,92,89,99,95,106,103,104,108,90,112,110,94,96,91,95,92,104,109,112,107,105,101,108,105,97,104,96,106,109,100,101,91,106,107,101,105,98,99,101,114,109,94,103,108,104,97,99,106,111,95,113,126,87,93,91,108,94,101,99,96,102,104,101,101,91,116,103,91,107,99,94,111,107,104,102,93,101,104,117,104,95,96,99,103,102,100,81,113,100,88,109,97,103,96,105,93,102,94,95,108,102,105,98,106,87,106,98,105,105,99,99,99,95,108,113,102,100,101,117,113,91,86,105,104,99,104,94,99,107,94,123,94,97,103,106,89,95,106,98,90,109,97,110,107,102,93,89,92,91,95,101,108,99,98,106,108,106,104,99,104,99,106,100,102,104,102,101,98,102,113,100,90,101,105,98,104,101,108,96,109,96,98,99,101,119,97,100,107,97,102,107,103,95,103,109,102,91,102,104,102,104,105,105,102,102,106,105,107,99,100,87,95,99,102,89,117,94,106,101,110,109,95,97,103,105,109,94,111,107,110,103,111,108,101,84,99,102,105,104,109,107,97,98,83,93,100,104,103,84,108,115,94,106,106,108,95,104,102,85,68,101,109,104,82,101,103,80,108,96,115,75,97,107,81,102,94,94,96,102,97,108,98,100,98,104,108,103,96,102,86,118,109,109,91,98,95,95,106,112,100,108,94,104,98,109,112,99,103,102,104,102,96,107,97,102,112,99,90,103,102,94,95,84,103,101,101,100,101,87,82,101,101,87,99,90,101,113,90,85,91,101,103,94, +422.36951,111,100,89,76,86,102,113,98,75,118,96,99,108,107,106,111,103,105,90,120,107,92,100,99,102,96,98,110,108,93,111,96,104,104,113,92,98,94,94,100,104,105,103,95,99,105,98,102,108,109,108,95,85,105,109,98,96,102,102,106,103,122,108,95,106,100,95,104,99,97,98,102,95,105,106,103,102,103,101,98,117,95,104,77,97,101,117,98,98,103,82,108,105,96,108,119,97,103,117,97,91,97,107,90,89,86,109,110,99,109,103,106,92,112,107,103,101,101,116,101,86,103,97,99,105,111,106,102,123,103,100,103,99,98,113,109,106,107,77,106,105,105,96,97,102,98,105,103,90,83,101,110,104,90,105,103,96,104,112,100,97,111,96,107,106,98,91,99,105,101,103,106,95,98,113,108,101,86,110,106,96,89,107,101,113,98,106,98,115,112,93,92,101,112,96,110,95,108,94,104,101,91,86,109,100,97,99,92,110,100,95,74,95,104,103,96,98,103,107,105,107,118,102,94,112,103,109,113,110,107,99,108,104,110,124,95,105,96,105,110,97,95,107,103,100,106,104,103,106,103,99,91,103,104,104,109,95,97,105,105,107,86,101,101,108,94,101,81,95,99,112,100,103,111,98,107,101,96,103,97,88,104,103,110,104,102,82,106,93,106,115,103,117,107,89,109,108,89,95,102,90,94,91,71,99,101,103,98,96,103,89,105,94,110,106,102,98,98,106,103,110,101,103,109,101,100,98,105,105,109,106,101,101,104,110,94,117,84,99,108,102,108,99,104,92,109,97,103,101,98,109,103,112,98,109,108,101,103,92,107,110,99,95,104,103,102,106,101,106,137,100,100,86,96,100,105,97,101,101,103,107,102,99,92,94,99,106,103,86,87,106,91,99,120,102,91,108,86,108,99,95,98,101,97,103,95,90,101,105,100,102,89,115,95,101,94,99,99,99,88,100,104,82,112,97,94,88,96,91,97,84,108,96,92,104,95,110,108,90,109,105,101,96,94,96,95,99,99,103,110,92,94,101,122,108,100,107,98,107,98,108,90,114,105,106,98,95,101,103,107,100,112,96,98,101,112,97,110,105,114,101,106,107,110,96,101,112,97,99,96,99,114,103,102,110,102,91,108,105,101,87,102,100,111,96,111,97,98,104,115,108,116,98,106,105,103,104,91,95,83,107,99,101,103,101,97,108,106,104,105,99,108,99,101,93,113,88,110,98,103,98,104,101,102,103,110,110,105,105,94,97,106,100,106,103,96,94,94,109,106,99,89,99,104,103,94,117,107,107,98,106,100,110,106,113,105,96,114,96,90,103,97,97,100,108,102,91,99,102,106,93,99,95,104,106,106,96,116,112,103,111,87,98,97,100,98,98,99,105,99,94,98,89,99,101,99,92,96,91,94,91,95,117,102,97,100,90,105,101,103,101,104,96,101,102,105,95,100,99,112,97,93,114,91,99,99,92,99,83,104,101,119,101,100,106,113,100,101,109,99,107,90,103,97,98,107,94,111,96,105,99,112,105,92,106,103,94,95,109,96,99,104,114,99,98,107,104,106,104,89,114,117,92,73,95,99,97,104,117,102,106,95,101,77,102,106,107,106,102,105,105,111,86,93,92,100,105,105,112,101,104,95,103,111,103,106,99,108,101,107,104,99,98,100,100,107,111,99,105,101,96,104,96,103,115,99,103,106,97,99,102,104,110,87,95,92,99,78,113,85,99,106,99,98,93,95,96,109,103,102,92,95,106,77,107,101,112,101,110,92,87,104,105,99,92,101,95,109,101,108,108,97,92,102,98,109,113,102,101,95,98,93,107,98,106,105,103,105,106,116,119,98,95,137,97,121,99,94,113,97,102,102,99,103,104,109,99,91,97,105,109,107,106,99,96,95,106,102,107,97,100,112,124,82,101,100,103,104,102,100,104,102,105,112,102,95,102,106,105,96,95,88,111,101,107,90,105,102,108,109,115,104,102,91,101,106,100,102,88,104,101,97,92,109,101,97,93,103,100,108,96,112,111,109,102,101,104,103,104,109,95,113,122,106,95,108,104,107,106,99,103,104,96,99,99,95,95,103,103,103,106,117,115,106,102,102,106,92,106,104,111,108,97,102,109,99,98,96,87,105,102,94,99,105,98,85,121,102,112,105,106,115,100,99,94,115,105,100,102,102,94,109,106,101,101,103,95,100,105,95,99,97,84,106,105,101,102,105,105,94,103,104,96,92,119,107,100,107,100,106,98,105,106,96,104,96,90,104,100,105,105,98,92,106,111,105,101,98,96,116,99,106,104,105,97,113,101,102,102,96,110,108,100,91,101,104,75,104,104,94,92,100,89,103,100,88,117,118,96,100,104,104,120,101,100,105,112,105,103,91,99,96,98,102,72,102,100,96,111,103,104,96,95,102,100,104,103,97,94,91,87,97,102,93,91,108,100,106,107,100,98,103,83,108,92,106,90,115,112,84,100,107,106,104,103,91,99,96,95,108,105,107,94,100,93,108,108,106,86,100,111,105,105,94,101,119,105,89,94,105,102,81,102,99,102,87,96,105,101,109,101,120,110,104,111,106,100,102,111,96,99,105,98,98,105,101,106,97,95,98,108,91,105,98,90,106,100,106,97,107,86,100,103,112,106,100,110,106,118,101,103,103,99,105,101,98,104,112,101,96,94,102,103,107,98,113,110,111,115,106,97,99,110,103,109,113,102,105,98,100,120,108,101,103,107,99,102,95,98,103,105,103,95,110,107,118,111,104,99,99,103,103,96,105,109,109,107,93,105,107,92,125,105,99,101,112,122,107,109,100,109,86,104,95,114,99,95,103,95,113,115,88,107,99,113,103,96,99,100,103,98,98,106,110,96,97,100,105,97,106,112,123,102,120,94,103,103,104,103,108,92,102,96,104,104,101,111,106,103,108,80,103,107,91,102,103,107,108,105,98,106,104,109,105,103,117,86,91,101,101,116,100,105,111,102,106,102,113,96,104,89,96,104,101,108,98,103,106,94,94,104,90,107,100,108,113,96,95,100,107,102,104,104,112,94,105,106,99,96,97,107,101,105,110,96,106,116,93,97,102,104,104,110,102,110,103,110,101,112,105,107,91,104,106,101,94,96,104,103,103,103,102,111,105,112,107,107,96,92,103,95,94,100,113,109,95,111,89,94,107,101,107,110,102,100,102,107,102,102,107,90,94,95,68,104,107,104,110,115,110,98,96,107,106,97,78,106,104,110,113,107,105,101,107,106,101,98,103,104,118,100,107,97,108,99,93,74,97,103,104,102,96,113,103,103,104,100,71,108,91,98,111,98,101,103,101,107,106,103,104,114,110,99,85,94,99,101,101,103,92,99,114,105,101,109,103,101,111,108,102,104,95,98,99,99,92,99,105,108,100,98,91,107,98,111,103,104,95,104,106,95,106,111,99,87,97,101,105,109,109,92,99,98,90,82,101,104,99,104,102,116,98,124,120,99,98,106,106,102,95,101,100,113,117,110,84,103,108,109,99,98,89,105,113,98,113,110,105,87,102,104,104,106,99,105,98,90,113,97,104,101,103,94,99,83,104,114,94,99,102,98,104,100,106,117,103,100,105,101,113,105,98,105,106,96,104,102,97,100,103,113,116,104,98,111,108,108,99,105,100,97,111,88,98,100,101,105,104,104,100,96,110,107,114,100,107,75,103,101,106,97,95,125,100,85,96,105,103,100,107,97,102,99,87,104,100,111,101,101,104,97,94,97,110,103,101,97,110,106,94,98,103,112,97,99,114,113,102,92,91,98,111,96,109,93,105,96,100,100,100,88,104,105,95,105,102,105,99,91,100,100,118,105,100,98,100,99,99,104,88,107,102,103,99,95,90,95,111,105,93,100,92,107,95,90,109,116,92,106,98,113,120,107,99,105,104,120,117,108,90,110,108,101,105,111,113,104,102,112,99,91,106,107,109,108,104,104,107,108,107,105,98,94,106,94,92,111,87,106,104,100,101,94,91,102,97,101,107,99,100,106,100,100,108,105,109,109,105,108,95,115,105,85,99,99,104,89,101,103,113,110,108,109,112,106,107,98,109,87,103,109,95,109,100,107,104,105,132,97,111,99,102,103,109,90,95,102,107,105,108,104,98,97,106,97,96,108,99,83,104,109,106,105,100,102,108,99,109,97,107,98,94,104,105,102,87,107,117,101,99,112,105,102,114,95,93,108,105,111,112,103,109,91,91,119,102,103,113,101,101,97,101,101,101,94,105,99,100,99,102,105,103,115,93,98,105,106,106,111,108,121,92,100,113,99,108,102,94,99,120,104,101,112,98,117,112,100,108,93,101,91,93,99,94,96,100,116,101,110,97,96,99,113,113,99,97,105,82,86,117,107,98,107,107,96,105,102,89,98,99,87,96,104,108,91,100,97,116,99,108,108,98,101,103,100,101,98,103,105,90,119,110,102,99,92,99,96,108,112,100,106,103,106,103,112,103,103,100,92,102,102,103,105,108,105,105,99,108,94,102,98,103,106,93,96,107,97,107,114,92,113,98,96,102,99,109,99,98,109,115,111,111,101,99,111,107,95,109,100,102,103,93,110,101,90,102,101,101,106,123,104,96,105,99,103,109,97,101,94,96,100,102,108,107,118,113,101,110,104,98,95,96,105,97,105,99,86,113,100,102,93,92,105,105,103,102,109,109,109,95,113,108,105,96,115,106,103,108,106,103,94,105,108,104,109,99,101,95,103,113,109,109,108,102,95,114,103,103,91,109,98,102,101,104,115,113,100,95,109,106,103,106,109,98,102,87,128,105,104,94,104,99,92,110,107,98,98,102,98,112,103,120,99,105,102,102,103,115,94,96,107,109,100,92,117,103,83,100,97,94,103,104,91,99,107,101,76,95,96,96, +422.50974,113,95,100,95,100,108,111,87,100,103,102,97,94,105,100,101,104,113,102,91,103,90,112,92,100,100,97,100,104,106,123,105,105,103,106,98,95,110,88,112,100,97,84,112,95,77,107,90,100,110,100,117,109,101,98,90,112,102,104,104,99,83,93,97,105,95,101,96,128,89,111,99,98,103,100,93,79,94,95,102,104,108,96,94,97,94,93,114,106,107,93,101,88,110,90,105,104,92,108,103,87,104,109,106,97,100,92,90,106,102,106,98,102,101,99,99,91,102,101,96,82,99,98,98,113,95,108,110,103,105,110,109,99,102,104,92,97,105,97,104,95,105,107,102,103,95,113,90,93,100,105,113,106,103,104,84,114,111,108,99,102,97,101,92,109,95,101,102,100,101,88,107,97,104,97,119,103,86,101,104,107,101,105,96,106,93,101,98,103,93,99,95,97,96,110,101,107,104,95,107,94,106,85,88,91,103,87,94,104,113,91,101,100,114,103,99,98,106,91,108,100,114,103,99,83,103,100,99,141,100,99,84,105,103,97,99,105,107,108,97,110,92,106,100,96,101,102,115,98,89,104,104,105,100,95,97,101,105,106,101,101,104,95,95,91,108,105,98,96,104,98,95,106,99,100,94,100,98,103,101,95,108,97,96,96,112,80,113,103,111,104,99,104,110,111,105,83,102,112,115,97,100,105,62,100,106,103,110,101,105,101,121,111,96,98,102,86,100,106,99,104,99,105,117,102,104,108,97,93,102,118,82,96,97,114,104,101,96,93,104,102,99,109,104,96,98,90,110,102,107,109,105,123,102,92,100,102,108,106,94,102,108,101,92,105,97,101,95,102,95,109,99,109,105,95,90,90,106,133,104,105,102,104,99,96,92,100,106,95,103,109,107,88,99,109,93,109,113,105,106,108,98,96,103,100,105,112,111,103,97,103,102,100,103,116,90,94,107,102,106,101,92,108,91,102,95,107,98,106,106,103,109,92,99,105,111,102,116,93,99,108,87,111,105,95,99,92,111,101,97,104,114,103,94,109,102,97,107,101,108,105,96,107,105,108,101,100,98,113,108,99,102,101,111,97,101,98,104,111,108,104,102,113,97,105,109,104,94,114,103,88,101,102,98,102,106,101,106,111,93,105,91,106,105,96,111,95,121,107,107,104,108,87,90,97,104,105,100,99,101,112,108,87,102,102,100,83,104,113,102,105,105,98,101,96,112,112,99,99,104,111,101,88,105,109,105,102,86,102,107,99,109,103,107,95,110,102,101,103,104,96,78,92,103,102,106,106,112,106,100,100,91,104,104,94,113,101,104,107,113,107,93,97,105,108,110,99,107,106,110,107,92,94,101,100,110,115,104,105,107,109,101,100,98,107,100,95,103,104,114,102,86,102,107,103,98,109,108,102,89,98,87,102,67,111,95,110,98,102,105,91,104,95,100,90,96,103,110,105,101,112,99,102,106,108,101,99,105,105,110,96,120,106,106,105,100,107,114,102,110,99,115,102,108,109,105,99,100,119,95,113,106,103,100,95,115,109,106,102,97,107,115,119,96,108,99,100,113,101,101,102,100,103,108,104,91,99,102,101,91,119,87,73,102,101,105,102,110,98,109,116,92,102,95,100,113,101,109,106,98,110,103,95,100,90,91,98,110,99,104,97,109,110,105,102,100,105,105,106,100,100,97,99,104,92,110,98,103,101,101,99,98,113,107,96,93,115,88,104,87,112,98,93,90,101,114,96,96,108,114,102,94,115,95,109,99,96,92,101,107,102,112,122,120,97,101,98,106,107,112,98,107,108,109,101,99,106,102,105,110,106,105,108,98,106,102,105,111,101,125,91,91,104,110,103,104,106,100,103,102,102,112,104,109,98,108,106,105,114,109,93,82,95,93,79,102,94,84,102,96,94,118,109,98,106,102,100,101,103,93,100,105,104,128,112,107,97,103,96,98,95,104,90,104,106,95,96,108,114,98,118,100,106,105,111,99,100,99,114,95,108,101,102,99,111,104,87,105,97,115,102,107,104,107,108,99,99,106,100,100,102,108,110,94,112,102,104,110,95,99,109,104,99,113,104,92,100,98,99,113,89,97,95,106,104,94,99,101,103,104,106,99,95,106,104,99,95,101,103,96,99,92,105,104,106,90,102,109,109,108,98,105,116,98,101,109,102,99,104,101,104,108,117,101,115,103,95,118,100,114,103,102,110,85,95,116,100,99,92,96,101,103,100,110,113,103,105,110,108,113,101,97,107,104,90,103,94,89,107,96,97,104,101,97,111,101,112,104,87,116,98,94,94,102,102,106,117,106,88,91,104,98,106,95,96,111,110,102,96,95,109,103,107,113,99,86,110,102,115,103,102,99,102,111,93,112,99,109,105,113,99,102,101,101,108,105,98,102,101,106,97,104,104,102,105,95,95,94,98,97,106,109,100,106,91,93,108,112,108,94,104,103,100,104,102,111,108,107,103,102,103,102,104,101,102,93,107,102,113,96,98,99,102,109,116,117,108,104,105,104,89,111,115,108,119,104,86,97,118,94,99,111,102,110,108,104,101,95,92,112,112,116,108,95,95,90,99,95,98,100,113,101,85,105,107,97,102,108,122,99,103,100,118,95,103,109,105,111,111,116,102,109,100,95,104,103,107,99,111,87,115,86,113,108,94,94,107,99,100,99,100,97,103,113,106,106,108,99,98,107,104,105,97,108,103,95,98,109,102,102,106,108,101,109,101,111,101,110,106,103,112,105,103,108,112,105,103,112,107,103,113,108,100,98,106,105,102,106,116,100,107,111,103,111,97,98,104,104,103,106,116,90,112,107,103,106,99,101,102,108,102,92,113,111,108,117,100,105,101,111,110,93,106,110,104,106,112,100,108,104,95,115,104,100,110,115,104,115,101,112,111,97,107,106,103,101,99,107,107,108,95,100,96,121,103,105,109,99,110,94,112,93,100,100,113,107,102,105,112,102,106,107,97,110,113,106,95,97,101,110,114,109,104,104,122,108,111,104,100,103,109,102,89,121,105,105,98,103,107,112,100,109,94,113,103,112,104,109,110,104,106,112,98,102,104,98,100,103,87,109,107,97,105,107,98,100,109,87,103,100,112,100,115,106,114,103,102,111,107,89,107,107,100,102,109,120,96,95,81,86,99,98,102,107,105,117,114,86,98,111,108,107,93,113,108,110,103,109,103,102,90,94,107,99,100,108,111,107,108,105,102,97,103,103,114,106,109,102,104,99,102,100,104,105,117,108,100,104,107,99,95,111,104,104,101,109,111,98,134,98,107,98,113,120,98,131,105,90,102,110,97,104,101,114,78,114,88,99,102,112,103,99,96,112,104,102,106,97,108,98,102,104,99,105,105,104,99,106,104,108,109,113,91,102,104,113,106,100,102,105,101,107,98,99,100,96,113,100,106,99,88,128,103,89,94,104,108,109,115,108,97,107,108,96,106,112,97,113,97,102,107,116,105,101,95,113,99,106,107,87,102,85,110,104,111,109,113,118,98,99,106,118,99,105,108,97,91,106,105,102,105,101,109,93,113,106,112,111,115,108,106,101,102,111,103,121,103,100,104,109,103,95,91,101,103,99,100,96,116,94,105,94,112,98,104,95,84,98,116,113,108,101,96,108,105,96,110,111,104,99,102,104,102,112,109,108,94,112,105,103,107,113,94,104,96,97,98,102,98,103,114,106,102,115,104,77,98,104,109,92,107,100,99,91,102,110,101,96,79,113,105,130,109,101,107,104,102,109,114,107,105,98,98,102,99,107,104,94,105,111,102,107,108,106,100,93,110,109,105,105,105,109,110,106,82,102,99,107,109,113,91,111,102,102,114,109,105,99,103,100,108,115,117,109,99,106,96,108,101,92,99,101,103,105,120,85,93,104,102,106,115,112,108,109,104,109,101,87,100,94,106,101,102,106,103,106,107,116,88,98,99,102,99,104,105,101,111,126,109,109,116,107,95,103,107,106,103,107,100,97,107,102,105,106,120,100,103,109,111,79,107,103,107,102,96,102,108,110,117,101,89,103,109,109,97,103,110,101,93,98,105,105,84,76,109,100,106,102,103,101,106,115,104,113,111,106,102,106,112,107,107,94,106,106,112,103,113,102,100,101,105,112,89,108,102,110,119,113,98,96,103,96,109,91,98,95,117,102,101,107,106,79,95,106,108,111,100,115,118,107,106,132,104,99,101,109,99,137,97,102,111,97,91,106,111,102,107,110,87,81,101,97,112,102,107,104,101,103,98,115,119,102,104,96,112,110,117,98,105,114,110,105,105,98,103,120,102,90,98,111,100,104,106,106,109,103,104,110,100,93,110,105,95,101,100,108,110,110,110,106,108,107,101,110,95,112,96,91,110,99,97,94,107,104,94,102,104,98,113,104,91,94,100,103,102,102,99,95,106,101,103,104,120,90,102,89,100,103,95,117,101,114,70,109,97,99,101,105,105,107,96,113,88,102,112,90,94,105,103,100,95,101,90,105,114,105,114,95,100,100,91,88,102,104,110,97,112,103,104,107,101,97,93,100,122,103,101,113,109,113,99,114,118,110,106,95,100,128,102,110,99,109,97,102,96,98,104,74,108,109,107,100,101,99,101,105,110,104,99,104,106,100,100,108,103,99,119,105,102,108,89,104,113,104,105,101,111,110,100,96,102,101,101,104,107,98,116,102,103,94,96,109,109,101,93,98,90,110,101,107,94,103,92,97,88,102,102,102,107,112,104,104,121,114,105,105,111,101,101,105,80,100,98,98,107,99,102,102,106,96,105,94,96,98,89,66,98,107,94,93,105,97,99,104,115,103,98,105,87,105,116,125,92,112,95,113,101,117,114,69,103,106,99,100,99,116,88,95,89,99,96,72,91,106,103,118,124,100,91,88, +422.64999,106,98,88,114,91,102,103,99,84,83,95,137,111,101,94,80,89,100,102,98,96,127,93,107,102,93,107,95,103,108,84,102,102,98,92,97,91,98,106,107,98,100,83,95,104,103,85,102,95,99,99,93,104,100,96,94,69,94,98,103,108,105,106,101,107,94,97,95,104,92,91,105,84,85,110,108,95,99,95,110,105,107,109,100,99,93,96,102,79,89,95,106,93,95,101,104,100,108,100,103,105,96,104,98,84,98,92,109,95,112,95,98,95,98,93,97,81,121,106,93,90,109,97,112,111,97,111,110,100,100,107,100,105,94,83,104,91,105,88,90,108,104,90,108,99,91,108,100,95,97,108,93,103,93,105,100,103,98,103,90,99,104,94,100,101,101,92,87,104,108,97,89,101,98,91,114,108,86,109,98,94,104,103,104,113,91,91,94,97,102,93,102,112,95,93,107,108,93,103,106,92,100,91,105,90,116,104,95,118,95,84,95,92,115,103,110,90,108,101,105,112,90,103,99,102,119,96,97,103,103,93,101,95,101,106,97,95,102,96,102,104,101,100,103,93,107,103,103,98,104,92,100,100,103,106,116,125,104,96,99,89,98,92,97,98,102,99,104,100,103,93,97,104,93,98,108,100,103,108,92,110,101,97,102,91,102,94,99,104,103,100,100,111,108,113,100,114,104,115,101,95,98,117,104,87,112,104,118,114,104,95,111,99,98,106,94,110,102,102,108,106,96,92,103,104,102,102,92,104,104,106,96,103,106,106,110,100,103,105,97,105,110,96,89,90,108,100,100,104,111,103,89,106,98,89,103,117,112,101,99,90,103,104,115,93,99,99,120,102,101,102,98,97,98,102,116,89,105,105,100,113,122,99,106,102,107,94,100,95,112,93,93,96,109,101,97,99,95,106,103,104,102,108,103,104,104,98,100,112,106,105,97,99,92,105,74,116,93,103,91,103,107,102,102,95,99,106,101,97,100,102,98,82,94,105,117,102,105,99,99,99,91,98,103,94,108,100,104,100,107,103,98,108,102,95,99,100,105,97,94,94,90,97,103,110,99,116,105,108,99,74,103,107,114,100,94,92,110,139,95,104,110,107,97,98,104,117,100,104,106,104,101,113,98,106,98,97,105,103,111,97,105,97,97,103,97,96,106,106,100,95,109,95,94,103,95,106,103,104,108,100,104,96,100,105,116,114,106,99,116,101,110,124,112,101,109,107,111,107,99,95,98,100,107,125,105,106,105,111,101,107,105,102,109,105,105,106,91,99,118,107,96,95,94,112,98,103,103,100,106,106,102,102,102,105,97,106,90,102,109,115,96,96,94,101,118,112,100,102,102,115,100,107,102,106,102,98,113,102,99,104,105,110,100,98,106,93,101,112,96,98,102,100,92,100,99,106,99,95,101,103,100,100,97,112,94,83,104,87,100,99,109,102,108,94,104,101,111,109,106,97,112,102,112,92,93,98,100,107,107,101,107,96,113,101,97,102,88,101,103,104,111,99,105,91,93,103,87,102,100,116,95,100,101,113,103,97,103,104,86,108,98,109,99,98,121,105,97,94,109,95,96,98,105,111,100,100,109,108,101,101,100,99,111,101,97,100,98,102,100,89,100,99,100,101,109,99,108,91,109,95,96,100,111,107,113,96,110,100,95,98,116,94,102,105,92,108,101,101,103,99,98,98,87,107,95,99,97,100,109,107,109,101,101,104,98,108,94,97,104,96,102,93,98,97,91,81,95,103,98,113,103,105,83,96,99,99,103,109,102,117,101,119,112,94,103,104,113,109,109,101,108,105,103,109,68,115,98,96,92,106,104,92,102,98,100,112,112,79,94,97,99,100,99,91,104,111,98,84,89,102,102,100,105,105,100,111,81,109,99,109,101,113,109,114,116,94,106,92,105,93,95,95,102,104,101,99,94,102,102,91,105,108,121,98,100,99,93,100,99,101,101,100,100,103,95,112,98,109,104,95,95,102,107,95,91,109,97,105,94,116,104,75,104,97,97,92,97,106,98,101,110,80,95,102,87,102,111,91,95,91,88,98,98,104,101,99,104,97,96,100,107,101,108,111,87,96,88,109,96,95,99,93,102,90,106,103,106,97,95,96,99,103,103,104,92,99,98,100,100,117,98,97,96,122,97,96,95,74,104,94,100,93,104,95,99,108,98,102,111,106,108,109,111,95,105,105,95,96,135,113,81,95,95,91,105,102,104,97,86,112,90,101,107,107,76,94,108,109,101,103,103,95,93,103,98,90,90,98,95,95,98,102,94,124,100,100,102,94,109,100,114,103,105,100,116,95,98,102,110,103,99,97,72,96,98,104,113,101,115,110,107,100,100,106,101,109,106,106,98,97,94,99,104,102,96,98,99,100,96,105,103,115,99,103,97,91,89,115,85,106,107,104,118,98,106,92,97,98,81,99,104,90,80,100,91,107,107,103,69,99,101,79,99,98,107,108,102,110,108,106,101,107,95,92,114,89,99,99,106,96,89,98,99,100,107,88,90,108,101,94,120,101,105,105,98,88,99,100,100,107,99,107,93,114,102,95,113,111,97,100,97,113,103,105,95,98,109,108,101,104,104,97,98,101,97,98,104,88,71,103,99,100,102,97,113,94,107,99,101,102,79,104,104,110,102,96,106,104,119,100,92,103,108,112,102,102,103,100,97,94,106,96,108,121,97,102,109,82,98,103,107,103,104,101,96,102,97,106,109,108,107,107,111,105,119,103,114,99,111,104,101,101,102,105,99,101,117,112,92,104,113,101,116,89,109,116,99,104,108,98,117,99,100,103,92,107,112,109,94,100,108,109,106,102,99,110,100,103,100,109,100,112,100,104,103,117,104,91,104,106,103,98,76,109,95,82,97,101,102,110,91,111,110,106,104,116,91,109,107,108,79,132,106,111,92,108,109,105,107,112,101,117,108,105,104,112,91,96,106,110,98,102,105,101,102,108,102,103,103,92,98,105,86,107,102,102,112,109,101,94,105,95,115,102,106,105,114,90,101,110,97,94,98,122,98,109,103,103,105,107,102,102,103,106,105,102,93,98,101,104,97,104,107,101,105,100,99,92,102,98,96,106,105,107,104,110,111,110,100,105,104,103,108,112,90,94,102,105,97,103,99,104,104,102,109,109,117,109,107,99,102,74,90,104,103,109,95,106,104,111,96,106,101,105,95,96,103,103,100,101,98,127,104,107,98,107,88,101,99,106,109,101,96,97,100,100,95,121,92,100,100,97,107,102,97,102,109,99,114,94,100,95,98,97,99,96,88,107,105,105,98,110,113,108,99,106,112,100,99,102,108,105,112,108,105,97,91,100,106,95,100,104,98,105,103,97,112,104,108,96,96,108,100,98,109,89,90,99,103,103,92,91,103,108,108,111,100,110,102,99,107,98,95,92,104,94,96,102,96,108,81,101,103,107,104,99,105,94,112,98,104,105,106,104,111,106,96,98,94,110,95,111,95,100,94,103,107,109,103,96,117,104,112,103,96,108,106,96,100,94,102,97,102,93,96,77,105,95,91,94,98,99,105,97,87,90,98,99,113,105,104,105,105,107,98,96,94,99,87,91,106,98,107,109,104,86,109,103,86,77,106,93,98,105,99,109,119,98,92,100,116,95,106,102,102,99,101,100,106,92,100,78,107,79,109,74,110,109,91,105,102,113,99,95,105,105,115,88,111,103,89,113,99,99,97,97,93,98,101,91,79,90,98,103,94,109,101,100,106,95,98,110,98,100,101,112,110,99,106,72,101,111,100,96,92,104,83,102,103,89,110,109,115,95,108,83,91,95,106,108,98,100,100,113,106,94,108,91,106,106,100,96,97,118,125,100,105,98,81,109,107,88,107,91,110,100,98,113,95,102,98,104,97,104,96,92,101,98,118,112,105,100,103,100,95,105,93,95,113,102,98,111,104,101,104,99,106,87,99,104,102,98,100,99,102,99,112,79,100,115,109,99,83,110,105,94,96,102,90,109,96,113,103,95,104,100,100,111,90,101,102,79,107,93,105,105,92,95,100,102,81,99,107,100,94,103,104,105,98,100,98,105,91,100,100,95,101,111,100,104,111,102,91,108,109,101,105,92,97,99,93,100,93,94,119,98,105,104,99,107,105,85,79,96,102,98,107,106,103,101,102,62,102,103,90,105,102,99,92,106,102,84,100,106,99,101,101,100,100,111,101,106,100,103,91,109,100,90,96,104,98,103,102,98,99,115,120,111,100,88,93,108,73,93,93,92,106,111,125,107,96,113,126,91,97,106,91,100,121,99,75,95,91,108,102,110,102,104,114,109,105,84,95,109,130,97,99,106,96,99,91,92,91,101,98,95,96,93,107,109,108,100,106,105,104,100,93,96,101,105,98,104,93,98,100,110,95,97,123,96,98,118,98,89,95,93,111,100,87,117,103,111,111,94,100,110,109,100,112,87,95,99,100,97,93,109,95,99,95,98,101,102,101,111,104,93,91,106,106,98,101,89,106,104,93,108,118,97,98,98,81,103,106,116,101,103,107,92,94,97,117,93,94,77,97,107,94,94,102,89,82,103,95,101,103,99,108,99,114,100,91,96,112,102,90,99,97,126,107,98,109,101,100,89,101,104,100,91,98,113,107,100,94,99,97,105,100,102,98,92,110,94,73,93,100,109,110,109,105,95,108,105,107,92,98,104,108,96,88,98,107,104,109,113,102,97,88,87,100,83,109,98,102,108,96,100,112,112,104,96,108,102,102,101,100,93,100,95,100,109,94,100,102,98,90,109,107,102,71,92,99,73,106,99,95,100,105,83,91,113,96,98,90,109,97,102,110,120,99,105,80,100,103,99,105,108,91,99,86,104,101,102,108,104,104,92,109,96,83,104,90,99,104,101,100,111,103,106,108, +422.79025,101,109,98,100,89,100,99,96,87,97,110,99,109,95,90,97,102,108,121,96,99,86,96,113,95,109,96,101,114,94,101,97,98,105,110,103,109,95,105,99,112,109,88,104,97,95,103,111,110,117,98,98,117,111,109,98,101,102,105,95,113,107,105,103,100,99,104,93,93,94,90,112,103,105,104,88,114,104,96,101,100,107,109,103,109,86,104,102,109,90,101,99,92,99,108,107,93,86,90,104,114,94,96,101,106,98,86,102,94,113,92,96,103,94,95,112,91,85,101,109,101,102,107,110,104,99,102,91,102,101,95,102,87,92,110,96,90,97,101,98,100,108,103,87,99,95,106,100,88,100,105,101,107,91,97,100,100,97,100,95,101,103,95,111,110,93,97,111,97,101,98,95,104,87,100,110,90,96,96,105,107,116,106,94,100,107,102,101,106,94,87,105,106,99,95,101,100,101,108,100,98,105,104,94,92,94,97,102,108,100,101,95,98,100,97,117,125,100,99,111,104,113,104,95,85,104,104,115,83,103,106,99,82,111,98,95,93,90,100,98,101,111,116,97,101,92,103,101,102,101,98,101,99,95,99,98,97,105,101,97,99,95,103,110,94,101,115,103,101,94,97,91,93,95,101,95,104,99,86,112,111,99,99,95,95,97,96,102,99,99,91,91,114,97,91,105,108,98,110,100,103,101,105,104,100,100,114,110,108,102,112,100,98,114,108,105,98,90,97,113,99,96,109,108,103,66,102,91,99,113,97,89,101,105,106,105,103,83,102,110,102,107,99,88,100,96,112,97,99,93,107,103,104,98,105,107,103,99,99,106,80,111,93,103,82,95,102,107,107,109,101,93,94,116,110,96,95,93,118,100,100,95,100,100,108,99,103,87,108,85,107,101,105,106,106,97,70,82,107,97,109,96,96,100,105,87,93,95,104,106,95,105,106,109,109,101,95,87,102,99,97,93,110,98,105,101,100,99,87,102,96,102,94,121,102,102,97,98,92,116,97,90,96,113,100,99,107,107,102,100,87,102,110,100,99,101,100,109,104,106,109,103,101,107,107,94,110,103,106,109,108,104,101,98,106,96,99,129,107,100,105,112,106,101,95,101,94,95,97,105,101,94,98,100,99,122,105,102,109,97,103,91,101,100,117,98,100,103,103,99,102,103,96,106,99,101,113,109,86,99,102,113,96,103,116,86,106,101,108,71,94,93,111,93,100,104,103,105,103,92,99,104,100,100,101,96,114,88,90,81,87,104,91,110,100,107,100,91,116,105,95,88,92,101,101,86,106,92,95,99,120,89,93,99,101,102,100,103,99,106,90,90,102,109,100,70,94,94,101,94,78,101,102,98,104,100,96,95,140,101,113,97,102,98,91,109,94,104,107,108,103,99,101,83,110,106,103,101,112,101,111,104,104,104,104,94,102,101,101,107,96,95,109,114,99,92,99,100,99,96,105,103,107,96,96,96,97,103,98,99,126,95,104,99,90,96,116,113,103,106,124,99,108,98,104,93,100,96,109,94,97,103,109,105,95,102,100,99,101,99,100,97,84,98,95,92,95,103,96,107,115,93,93,111,107,90,108,104,96,104,102,97,91,103,92,97,96,86,94,115,100,100,98,91,96,94,102,93,99,94,112,112,102,98,100,97,99,106,104,102,112,107,99,100,86,101,103,109,100,90,105,91,101,102,96,104,91,113,96,109,107,85,101,105,89,99,88,86,94,103,95,108,86,95,106,119,96,89,108,95,98,114,105,103,99,104,98,97,103,91,99,95,103,105,103,100,102,108,90,105,102,107,97,104,121,107,98,101,107,104,102,95,104,93,98,97,99,107,95,82,107,101,103,100,104,104,109,109,115,97,96,106,106,92,102,98,85,97,96,103,107,98,106,104,101,105,99,83,107,93,98,88,97,96,100,87,98,85,96,94,81,100,101,100,79,100,99,101,90,72,99,95,96,95,101,102,92,103,104,98,100,99,113,90,100,97,113,107,89,99,96,105,87,77,82,101,95,112,101,104,99,102,105,109,90,96,108,94,99,101,101,74,110,101,99,107,104,101,99,104,98,109,106,99,99,97,99,97,103,107,102,84,103,104,102,92,108,104,99,96,105,106,97,101,100,104,95,72,106,108,102,96,97,107,100,92,102,105,91,99,103,113,107,108,108,106,94,89,98,109,93,101,95,94,104,106,104,96,95,105,93,91,108,98,100,103,98,104,97,105,96,94,107,93,97,104,104,103,138,107,104,104,98,105,97,114,94,105,122,113,100,107,94,104,98,110,109,100,93,99,104,119,110,110,90,98,103,104,105,91,114,102,80,95,100,101,97,102,103,104,101,105,102,97,99,95,103,100,104,107,95,99,94,93,101,103,97,113,92,92,101,108,98,114,83,108,95,96,98,102,96,97,105,105,107,105,99,109,91,105,105,107,105,94,97,99,85,109,99,101,113,97,92,103,96,103,102,108,111,108,101,95,105,73,105,110,105,107,105,88,85,102,92,98,87,105,100,95,99,110,101,107,101,103,111,99,111,116,101,106,93,102,92,98,107,104,93,103,109,112,105,109,109,88,113,106,94,108,95,79,98,103,100,108,112,98,102,103,102,100,104,100,109,99,84,95,96,98,106,106,110,104,103,102,101,117,111,96,95,100,103,103,107,107,107,96,100,97,88,116,109,99,103,101,92,104,104,116,92,94,102,105,90,106,110,104,104,102,105,90,102,105,96,97,106,110,96,106,106,113,102,97,95,104,118,101,108,110,99,99,101,107,102,87,92,107,98,97,111,100,106,96,99,108,101,99,96,99,113,105,111,107,101,108,111,100,109,115,93,102,110,109,121,111,113,101,103,110,92,114,109,92,108,104,105,121,105,96,107,113,98,111,81,109,105,100,105,103,109,106,107,113,105,100,104,124,103,110,92,101,107,103,102,111,111,104,116,87,105,105,127,106,107,94,105,98,101,99,100,106,105,107,104,111,102,112,111,106,93,102,107,109,101,98,111,105,111,97,100,121,102,96,97,112,104,112,110,117,102,102,101,105,125,101,102,101,109,100,113,99,85,104,100,113,100,98,104,105,98,99,98,113,131,112,109,105,98,101,87,94,90,115,100,109,106,99,93,99,132,96,112,89,111,109,99,100,109,112,107,105,113,99,98,97,108,106,103,96,107,103,105,103,96,101,103,84,107,102,102,96,108,111,105,94,102,107,97,80,109,101,101,97,102,95,106,98,106,99,107,95,125,99,114,102,110,105,105,96,109,105,108,97,96,100,102,105,97,102,106,101,105,105,101,109,96,98,102,109,95,107,97,79,102,100,95,108,92,90,95,101,96,105,98,96,96,103,90,108,104,101,96,100,135,104,93,98,101,101,104,97,103,113,101,116,105,109,104,98,99,101,95,92,101,109,99,105,95,94,108,103,98,95,108,107,106,94,94,103,93,94,100,108,105,105,101,104,102,109,99,87,102,94,104,88,92,110,94,104,105,91,75,105,97,105,102,103,92,105,102,102,102,101,100,107,96,102,110,112,99,104,104,108,91,116,96,105,94,98,108,103,96,100,102,105,132,97,104,110,99,103,109,100,99,99,93,108,113,99,103,102,92,98,97,117,105,98,112,87,100,102,95,99,99,113,110,93,106,99,96,92,94,97,99,117,90,98,100,125,112,104,102,93,91,98,88,98,104,95,111,95,103,97,102,95,109,97,107,106,108,91,103,101,121,100,98,101,110,85,91,101,100,104,100,92,106,108,122,107,113,111,95,104,102,102,109,103,110,105,112,109,104,105,94,94,102,102,99,117,98,105,103,104,110,101,103,109,96,99,90,84,105,111,107,106,100,104,98,101,106,109,110,101,101,95,102,102,107,98,99,110,107,103,100,102,113,105,84,93,110,105,101,103,104,107,97,109,95,108,104,100,110,96,107,96,92,103,108,109,99,100,104,102,99,113,111,105,108,113,107,97,110,97,91,103,111,105,103,107,95,98,116,121,96,107,106,97,97,95,108,109,113,110,103,108,99,123,116,89,98,93,110,101,93,109,100,98,105,104,109,106,106,98,99,100,99,109,105,105,101,105,106,102,99,113,75,94,102,113,95,103,102,104,100,108,111,107,110,105,94,103,100,98,101,111,101,98,110,95,97,113,108,99,97,104,104,114,105,102,102,104,102,103,106,94,119,106,82,121,108,99,105,104,102,101,96,94,105,106,115,103,112,109,83,103,112,108,105,94,103,92,96,105,99,106,102,94,91,106,96,85,98,106,109,107,103,102,84,93,101,110,109,127,110,107,94,85,103,94,107,105,115,100,117,104,99,99,95,106,87,109,106,100,100,99,111,89,106,104,116,98,95,119,112,113,98,106,110,101,89,102,100,99,98,99,98,98,102,107,102,89,99,105,104,99,108,97,101,107,108,100,113,113,100,100,103,106,103,101,96,117,102,96,88,103,101,91,118,94,105,105,120,108,110,101,101,111,100,98,101,116,86,96,104,86,97,96,96,98,95,97,98,100,110,95,99,94,102,104,99,95,104,105,98,103,107,96,100,101,97,100,122,103,97,96,96,95,104,94,107,87,97,95,112,110,92,112,105,101,122,106,98,114,91,102,106,88,104,108,102,105,116,102,92,100,108,105,94,93,103,115,96,88,89,94,95,98,108,87,105,99,96,88,107,104,102,105,106,106,104,90,108,126,109,113,97,99,102,83,94,93,64,100,116,104,96,104,107,105,108,104,95,104,99,99,98,109,109,99,107,105,104,92,98,102,109,98,112,101,114,102,95,85,98,104,96,102,112,112,105,94,102,120,110,108,105,95,104,91,97,104,89,109,102,116,102,100,90,96,95,86,110,103,106,105,138,104,93,112,97,90,97,104,113,107,95,96,124,95,89,109, +422.93048,118,95,90,105,106,96,106,99,101,97,93,92,105,108,89,99,111,113,94,104,119,102,93,104,98,104,95,120,74,106,102,96,120,101,106,103,100,93,107,96,102,99,85,98,96,99,88,103,106,102,104,89,98,104,110,103,102,100,95,100,104,92,103,80,102,113,87,97,97,109,104,113,99,102,93,98,114,109,117,100,103,93,103,91,99,102,97,109,91,113,101,93,111,93,117,103,92,99,90,92,110,109,91,104,100,101,104,102,100,96,96,92,102,100,104,96,109,101,98,97,98,93,89,108,106,95,110,102,108,77,107,94,105,101,93,96,112,94,106,89,110,113,104,98,89,96,104,105,90,89,91,97,109,84,88,101,98,101,111,105,98,98,98,100,104,104,91,87,112,92,102,102,103,88,97,107,94,89,105,95,93,100,105,108,87,101,97,97,97,97,106,95,102,109,88,104,90,95,95,112,102,100,102,101,101,106,106,110,114,107,102,123,104,98,94,100,101,110,105,105,101,102,91,108,97,101,99,103,106,112,100,109,99,111,102,110,109,107,104,96,105,95,104,109,107,99,96,102,107,97,87,102,84,103,109,102,105,98,98,99,103,104,105,106,102,99,110,102,92,102,87,98,95,101,98,111,108,109,98,113,100,102,98,96,108,109,96,105,97,105,101,100,106,101,113,102,97,102,100,72,98,93,98,104,101,91,110,103,96,110,90,116,96,106,100,107,102,90,85,101,106,106,82,98,105,104,96,89,104,94,108,111,103,92,104,103,101,109,101,100,116,95,91,116,109,96,111,104,104,103,96,99,109,131,102,105,92,112,101,103,99,102,108,87,105,110,105,105,100,100,103,101,103,104,116,96,111,97,106,110,103,92,101,95,102,87,98,95,102,97,108,92,98,113,99,120,94,92,105,112,103,93,102,108,104,131,104,97,105,101,110,92,104,108,103,98,105,105,102,119,82,90,100,98,94,87,92,106,114,102,83,100,103,91,108,102,102,102,103,109,107,108,104,96,82,105,98,92,104,102,96,100,104,101,92,103,104,99,103,105,107,113,102,106,110,105,104,113,108,105,115,94,95,109,76,105,101,116,102,119,105,111,100,99,127,107,106,99,96,98,110,104,103,110,105,106,100,108,108,99,103,101,96,99,112,97,97,76,95,99,94,96,103,79,100,103,120,98,104,100,107,94,101,108,108,104,71,101,103,101,114,110,96,94,106,90,101,106,135,113,111,100,103,96,106,97,110,99,117,106,98,74,103,95,95,109,117,96,105,99,115,107,108,104,109,113,103,100,102,104,108,91,101,99,100,118,104,101,109,103,104,91,107,95,97,112,100,104,98,102,91,100,90,107,106,104,96,102,102,102,104,99,105,104,106,85,99,119,109,113,96,105,107,106,95,104,110,100,89,91,106,95,107,106,109,93,95,112,103,106,106,75,95,94,90,98,107,102,92,109,109,104,100,106,97,96,98,103,110,116,97,101,75,103,87,111,105,100,103,100,87,103,101,100,100,98,102,85,96,98,114,95,109,101,114,103,100,94,104,102,108,88,105,103,94,103,105,113,104,96,110,104,96,110,109,104,105,101,100,105,91,107,95,102,106,108,82,97,106,87,94,101,94,102,89,108,95,68,101,93,92,108,104,106,98,99,99,96,96,96,99,106,100,104,99,91,108,87,104,104,95,93,69,95,106,90,99,111,106,97,102,106,103,100,102,96,104,94,79,100,96,101,101,104,92,97,92,92,113,106,99,87,99,102,102,106,96,102,95,103,90,102,111,96,96,113,95,104,98,96,107,110,109,107,94,99,93,104,99,101,97,83,109,102,106,107,114,102,105,102,96,105,97,106,113,95,110,108,109,97,101,110,112,111,96,98,87,99,96,105,95,103,107,95,110,106,104,101,107,96,94,95,110,97,86,91,99,100,98,102,96,73,99,106,103,106,95,98,88,107,104,101,92,116,103,98,90,118,101,110,96,103,105,100,114,91,106,102,96,95,76,96,97,101,98,112,96,94,98,98,100,96,99,101,95,97,111,103,95,94,91,104,97,103,103,97,99,109,97,95,108,105,109,104,99,106,101,86,105,100,106,109,107,109,110,96,95,104,106,107,105,94,103,91,94,103,91,88,94,95,95,104,86,100,107,99,117,103,97,99,82,109,112,107,94,101,97,102,96,101,101,105,99,99,104,98,104,90,105,107,99,109,92,104,105,95,113,106,93,102,98,107,96,100,98,91,95,92,111,94,103,97,116,78,108,96,104,101,92,98,112,82,90,102,100,99,90,95,107,108,92,108,105,101,105,95,101,95,107,105,111,102,93,83,103,100,106,88,118,91,105,98,114,110,102,106,106,101,105,105,100,103,105,101,90,93,84,96,99,99,103,98,105,113,96,105,101,93,72,100,105,102,109,102,91,83,103,103,80,88,93,114,94,105,90,99,107,102,96,99,108,102,94,103,98,95,103,97,109,101,102,102,112,101,95,125,98,95,110,111,104,94,113,109,109,114,109,105,82,94,83,110,108,110,95,104,95,102,100,116,95,101,101,111,106,104,95,61,100,100,102,112,94,102,98,94,107,117,115,88,102,98,94,108,93,99,113,91,109,97,107,108,119,113,108,107,108,98,102,111,103,96,100,101,116,113,95,91,105,101,96,84,103,98,94,97,100,89,115,116,102,94,98,100,115,99,101,102,97,103,96,106,104,111,103,105,105,107,106,98,109,95,104,103,105,106,111,107,94,97,103,109,109,101,101,108,99,97,106,96,100,116,99,98,106,115,102,104,92,105,107,106,102,100,109,102,108,102,96,104,123,90,101,95,88,90,109,105,108,112,102,95,110,105,109,102,96,117,97,111,106,95,104,103,95,100,104,103,91,113,106,110,104,117,101,87,98,113,97,102,88,104,112,98,116,110,111,104,103,104,107,101,92,104,105,110,106,98,118,104,118,95,102,108,104,97,104,101,101,101,103,102,101,99,99,104,115,111,101,111,123,107,101,106,109,105,110,112,96,99,102,95,93,117,101,103,110,108,101,100,100,104,107,94,120,95,117,114,104,102,105,96,102,104,135,104,114,102,98,121,98,106,114,100,99,99,102,92,102,106,102,108,94,102,108,107,104,111,121,117,100,98,98,117,102,101,95,107,102,88,102,101,99,99,90,101,97,99,97,101,109,106,98,102,95,110,109,106,113,105,100,89,105,112,98,83,100,113,99,104,104,103,125,96,91,105,106,111,105,98,100,104,106,108,106,106,98,116,96,102,108,87,102,102,102,101,89,101,121,87,103,100,122,96,104,98,103,90,93,104,104,100,92,110,100,96,102,98,106,106,99,112,100,99,95,105,104,105,90,87,105,101,112,113,97,91,103,109,99,101,102,95,85,109,115,102,93,96,105,98,89,91,102,104,109,106,107,102,103,99,97,96,99,108,107,111,111,95,104,100,104,107,106,91,116,111,99,98,105,99,101,108,121,93,103,110,108,117,107,102,99,105,106,101,104,102,101,110,86,110,95,99,97,103,99,107,112,110,105,120,96,113,89,91,109,122,90,102,111,110,107,95,97,100,131,97,111,99,111,103,105,100,92,125,103,107,106,98,102,102,109,106,102,106,125,87,106,112,103,90,102,100,109,107,101,102,97,108,101,105,98,96,101,108,98,98,102,105,122,106,109,102,83,100,100,105,104,100,107,102,107,96,109,102,102,98,95,103,95,98,102,85,98,102,101,97,112,114,104,94,70,87,103,98,104,95,108,117,105,100,104,112,98,95,106,98,101,98,111,104,103,109,104,110,108,106,90,104,96,101,116,101,101,93,97,106,101,92,106,115,93,103,110,111,106,96,110,99,108,103,93,100,104,107,109,102,101,101,98,102,105,117,96,96,106,106,93,105,112,106,98,98,113,96,104,91,107,87,104,95,102,123,113,103,106,101,96,102,81,101,91,98,107,109,108,96,109,113,98,104,96,97,109,100,100,110,99,101,106,102,99,94,102,117,113,112,108,107,108,103,103,113,80,115,122,98,108,113,104,96,99,101,92,98,99,106,98,99,105,97,104,103,104,111,105,99,105,94,102,100,96,100,105,99,102,105,94,108,112,103,114,100,109,107,124,102,106,106,102,89,103,94,94,102,101,108,100,109,89,109,109,103,109,101,116,95,105,116,99,99,102,123,111,95,116,115,91,104,113,88,113,94,109,99,102,105,104,113,91,105,116,111,92,107,101,102,120,107,101,107,93,92,107,100,94,108,97,106,105,99,108,99,107,99,86,105,100,95,105,133,94,104,91,79,116,107,99,102,101,112,110,103,96,107,109,102,115,103,104,114,112,100,103,111,112,99,110,99,104,102,88,108,101,90,112,117,102,97,109,98,99,104,101,105,111,109,111,115,107,102,92,106,107,97,108,116,101,101,108,97,105,104,101,88,97,117,106,94,97,101,97,95,104,95,99,105,112,104,102,102,97,91,108,97,105,111,104,90,96,110,98,99,104,113,87,97,105,106,107,98,87,99,98,115,111,96,99,115,117,103,86,96,91,107,102,85,110,95,81,104,103,97,104,104,104,96,109,103,101,101,93,99,107,108,108,107,103,100,113,113,115,100,113,104,108,109,103,115,108,87,99,95,103,98,100,103,102,107,107,97,90,80,112,107,95,85,111,106,110,113,96,100,101,91,99,79,103,92,98,96,118,106,108,112,91,99,105,91,107,109,95,112,95,106,95,90,103,105,120,105,103,67,109,109,101,101,103,100,91,92,97,103,108,100,112,107,104,100,101,102,88,108,108,99,103,86,104,98,99,101,106,96,90,91,104,109,108,111,129,111,94,104,106,109,104,97,100,109,101,91,102,116,93,95,109,101,104,99,104,96,89,95,112,97,101,82,109,99,96,92, +423.07074,105,88,78,106,96,67,108,95,85,112,99,108,100,96,99,87,101,102,109,95,105,90,94,92,99,96,110,95,113,98,119,100,102,100,110,100,101,107,101,120,125,92,105,95,113,103,96,100,99,108,102,93,105,96,100,93,99,94,104,91,93,101,96,104,93,104,102,96,99,97,98,102,96,101,98,113,94,90,91,105,102,97,112,105,120,110,75,93,96,99,108,96,102,88,94,101,89,91,101,101,101,97,98,88,114,85,98,102,94,97,105,98,95,94,100,99,100,92,113,89,105,99,92,98,107,105,138,91,102,108,109,102,96,94,101,99,87,104,101,101,95,98,88,99,108,96,106,94,97,98,100,95,107,95,101,94,97,104,106,97,97,88,99,93,109,88,103,88,109,96,94,104,102,99,98,93,102,90,98,92,104,109,119,86,85,112,105,99,90,91,80,104,102,104,99,101,101,104,102,107,86,116,89,99,106,102,108,106,97,106,101,97,110,93,108,120,100,115,88,88,98,87,94,100,83,110,94,100,103,99,94,97,111,100,110,103,99,93,99,110,92,100,97,99,108,94,96,105,95,113,117,109,92,109,117,98,108,105,96,104,101,103,92,102,98,99,100,91,108,98,96,100,104,100,108,104,95,104,102,102,88,104,103,95,92,84,93,97,93,96,101,104,114,107,105,111,102,86,90,101,91,99,115,110,95,118,115,107,103,106,110,109,110,106,95,100,86,95,95,100,103,99,92,95,107,86,110,81,111,100,105,99,112,101,90,108,101,104,101,90,86,105,105,93,83,99,90,108,108,107,99,100,102,114,96,104,96,107,104,99,86,100,105,61,90,105,97,109,92,92,96,100,101,101,98,107,105,96,86,91,103,107,98,95,99,91,107,88,101,100,117,101,101,107,109,105,98,102,100,108,81,90,109,97,96,92,96,97,106,93,104,101,102,101,95,93,101,96,106,104,96,96,106,94,85,95,114,100,100,114,78,102,97,103,98,103,100,103,110,94,104,86,103,93,98,100,104,100,90,105,112,114,106,110,107,99,106,100,106,83,100,109,121,108,112,109,102,104,107,99,110,102,100,103,106,98,104,112,108,91,96,102,110,96,105,104,106,105,112,100,112,98,103,99,88,70,97,106,96,92,113,101,108,90,96,100,106,96,105,97,102,99,102,98,95,100,111,101,94,100,105,117,90,99,107,91,105,100,102,96,102,88,113,85,93,105,116,96,100,94,93,99,98,103,112,89,109,74,107,107,100,99,101,93,98,101,99,96,102,97,99,98,109,108,91,99,105,105,100,99,95,96,100,101,101,98,113,97,100,113,102,97,98,97,94,86,114,98,100,106,101,92,94,103,93,105,91,96,99,105,97,99,95,90,96,96,87,102,104,98,111,96,107,103,105,114,107,96,102,100,100,94,101,99,111,109,103,101,104,107,107,120,87,106,96,105,97,105,100,98,101,103,84,107,94,95,100,93,94,96,101,109,102,100,93,102,105,103,113,118,106,109,102,94,95,104,121,94,108,98,104,101,103,87,108,105,109,92,101,96,95,96,94,105,103,90,93,60,101,99,108,109,101,103,89,94,94,103,105,79,102,91,100,95,95,100,103,107,102,92,105,102,94,96,95,90,103,104,100,101,87,99,83,102,91,96,92,102,101,105,106,99,103,91,101,100,96,103,99,107,99,89,100,103,107,91,100,72,111,96,101,97,97,101,101,107,99,95,91,103,99,102,95,111,94,105,93,109,102,107,95,99,100,72,111,91,98,89,100,97,100,104,101,96,107,106,99,99,98,100,113,115,107,86,105,100,99,85,96,94,99,112,106,104,106,107,107,84,100,90,112,88,105,101,97,82,100,108,101,104,106,106,98,107,106,102,104,99,102,97,108,99,109,102,100,104,103,108,116,79,94,98,112,109,101,115,95,104,93,94,101,75,99,99,104,105,105,109,94,103,108,101,97,104,100,106,101,104,114,94,121,101,88,98,95,99,105,100,96,92,115,116,92,103,102,93,91,97,108,102,103,110,100,99,109,78,98,99,108,105,72,78,109,108,105,105,86,95,101,111,106,104,101,108,104,99,104,113,112,100,110,102,113,98,94,103,106,103,104,94,99,102,104,111,109,94,101,95,114,98,104,101,108,108,110,109,103,111,100,101,104,88,105,109,109,101,95,101,94,105,107,80,100,97,93,117,95,93,104,104,99,96,103,95,98,105,114,99,96,101,109,107,91,113,97,86,94,97,98,108,118,102,98,109,97,98,106,111,106,93,101,92,98,105,100,93,100,98,96,95,101,91,109,109,95,99,97,118,92,96,95,106,94,89,98,80,108,94,88,110,103,96,94,80,111,100,103,106,95,105,107,112,103,99,97,108,105,96,102,102,103,101,99,109,92,98,111,102,89,102,102,104,99,104,101,103,105,103,104,101,99,96,97,103,96,96,95,92,91,104,105,92,98,92,101,93,121,102,108,99,107,104,93,114,100,98,96,90,104,112,103,106,102,101,100,100,95,104,104,102,88,112,112,105,105,97,93,108,101,71,115,105,105,101,117,91,100,99,102,84,103,107,109,96,102,110,106,106,100,113,102,100,98,99,92,106,79,88,110,94,110,102,97,104,109,101,109,116,90,103,111,87,105,93,105,102,101,105,95,105,92,96,115,100,101,105,107,104,108,108,96,99,78,116,106,106,98,104,105,113,106,100,105,110,90,114,106,105,101,101,102,104,105,104,107,113,109,95,113,100,101,96,69,110,92,96,99,103,107,100,120,93,101,104,109,97,95,96,108,102,107,113,108,107,99,92,97,104,105,107,113,109,111,110,104,98,102,97,99,106,102,97,105,113,105,111,105,96,106,96,100,98,106,75,104,116,96,106,105,113,102,113,113,109,100,99,82,105,109,102,104,106,105,116,109,97,105,98,98,95,104,97,97,97,108,91,103,106,116,105,91,102,101,112,96,103,108,107,98,103,93,100,110,112,99,115,100,94,103,113,111,101,104,106,106,93,109,108,110,95,109,102,107,99,98,98,107,93,109,103,104,92,109,100,95,96,101,113,109,96,110,110,101,90,94,106,107,103,106,100,98,109,110,100,113,97,114,97,104,110,98,101,98,100,117,96,104,104,117,109,96,95,104,105,116,94,120,99,108,111,100,96,95,107,106,99,109,79,105,104,97,99,98,101,105,109,101,98,105,89,91,102,108,108,121,93,101,103,96,111,103,107,92,93,101,87,103,97,108,97,107,108,98,114,114,107,93,110,105,104,102,108,109,93,99,96,99,95,95,92,105,92,111,135,102,98,109,89,99,105,96,94,98,106,111,95,97,102,123,100,102,100,97,98,90,97,110,102,95,109,106,109,113,106,111,102,97,99,110,104,108,97,96,102,113,93,95,90,111,92,91,93,112,101,97,101,96,105,98,109,102,66,95,100,96,113,102,104,100,105,98,95,84,101,100,102,113,97,99,92,101,110,98,101,94,95,118,99,112,92,110,101,100,108,99,100,98,111,98,95,103,91,102,112,109,95,106,107,88,103,99,99,99,104,101,116,98,108,106,116,106,101,80,101,108,92,95,99,115,108,109,102,80,100,96,88,100,104,108,102,98,93,100,108,101,102,99,98,98,110,96,107,119,106,100,87,95,104,102,102,101,96,105,105,95,105,105,94,96,106,105,107,91,101,108,94,99,88,100,95,111,104,95,114,112,110,108,96,95,84,109,93,102,99,97,108,102,94,107,97,110,98,90,93,102,107,99,111,120,104,89,109,101,106,111,100,88,100,80,96,107,97,110,117,114,102,96,113,98,93,97,91,104,111,104,104,106,108,98,97,104,112,105,107,103,103,102,92,95,92,110,100,113,100,109,102,104,103,93,103,97,104,95,91,97,100,101,110,94,100,103,97,98,100,101,101,103,94,91,97,106,101,104,112,101,103,99,96,112,94,106,107,97,98,97,105,98,90,97,96,103,107,96,81,100,97,100,96,115,106,111,110,99,104,113,100,100,107,99,104,116,102,103,107,93,105,112,123,106,95,107,103,103,85,106,103,101,134,104,103,102,103,103,106,96,101,85,111,96,104,91,98,103,104,102,95,103,100,103,105,106,101,99,99,90,109,99,93,113,116,107,109,88,116,104,122,106,115,108,101,94,108,91,98,109,103,97,118,113,98,99,100,103,106,102,99,104,106,99,122,101,99,109,107,87,98,92,98,104,104,100,94,91,105,99,103,108,97,101,94,93,107,88,95,83,97,103,95,102,102,102,91,105,97,120,103,100,112,93,99,107,102,103,108,97,91,107,94,97,124,105,110,109,103,115,108,111,99,109,107,94,91,95,97,105,99,95,106,100,94,96,109,102,78,105,105,103,104,91,98,102,107,106,93,105,102,105,104,118,99,96,112,102,101,91,97,76,89,100,91,108,105,94,98,101,105,96,103,82,100,109,102,100,97,99,96,99,93,104,96,73,102,110,104,107,104,98,94,97,102,89,102,106,101,96,98,102,110,66,93,97,102,113,112,103,98,91,117,100,95,106,103,114,111,113,109,91,100,107,78,100,82,104,94,105,116,103,109,104,95,96,92,102,106,94,110,94,96,104,94,90,107,89,102,102,105,103,94,91,108,107,118,90,103,100,116,108,107,113,105,98,105,102,105,96,106,109,103,116,104,94,93,97,103,83,100,107,107,102,90,102,96,96,112,104,107,102,91,93,96,87,102,93,101,106,102,96,100,98,106,84,90,103,97,99,94,90,96,103,97,103,108,94,98,123,109,103,105,100,98,103,103,97,102,102,97,104,99,85,95,98,99,107,95,104,100,98,81,108,102,91,109,95,103,102,113,101,106,114,112,103,104,101,96,79,91,96,102,88,94,93,125,101,97,108,86,92,107,83,104, +423.211,102,99,88,96,91,118,105,94,94,105,89,96,96,88,105,92,96,98,100,100,102,101,100,99,109,105,101,94,87,69,92,100,104,92,98,90,97,94,99,95,95,96,84,105,102,110,101,106,82,94,108,105,108,102,104,104,105,92,115,86,105,94,73,103,107,103,98,94,114,115,109,91,102,109,106,98,97,115,89,113,111,100,97,96,104,99,112,99,103,95,95,106,102,95,102,87,91,108,104,94,102,101,84,104,96,102,97,88,94,101,106,100,116,92,95,112,103,99,108,98,100,83,108,96,96,107,96,104,101,110,93,108,97,94,103,95,110,105,104,102,99,106,86,90,88,102,101,97,96,98,101,99,109,91,93,100,112,100,103,104,104,98,95,100,106,98,96,107,97,97,103,107,97,98,101,99,92,88,93,105,93,111,108,109,108,99,101,98,97,102,110,113,100,113,103,101,98,104,90,92,101,101,88,101,99,111,116,89,90,99,87,108,113,101,99,98,93,99,100,100,98,99,115,96,93,109,109,99,96,91,102,105,96,101,99,99,108,107,100,106,91,106,109,102,89,98,105,95,95,110,85,97,95,104,104,111,94,96,82,91,100,102,94,79,99,110,105,97,94,91,106,95,105,97,97,91,102,95,105,104,100,101,101,95,99,96,94,103,89,118,105,80,109,102,87,101,109,103,111,89,85,100,95,108,98,109,102,114,98,109,99,92,99,105,106,102,96,106,99,105,95,95,107,98,105,105,108,88,109,108,103,102,110,109,97,91,104,106,101,114,96,105,104,84,113,113,99,108,82,101,96,86,103,100,90,91,106,102,102,107,101,109,96,97,106,86,106,117,104,102,97,92,101,105,102,100,106,104,101,101,113,88,113,106,94,93,96,104,113,96,106,104,92,91,113,90,105,90,104,101,103,105,104,79,99,98,98,91,104,111,96,96,98,109,98,91,100,114,89,98,98,96,97,100,97,75,102,101,96,98,103,84,109,107,98,111,105,101,96,123,97,108,103,107,85,97,98,100,104,100,101,105,111,114,97,103,94,74,106,97,119,104,84,111,96,95,110,89,103,103,110,104,110,97,100,90,110,106,112,110,98,95,104,107,108,104,104,106,110,110,106,91,102,94,92,96,92,98,98,97,108,104,95,114,90,105,99,100,100,100,113,95,92,99,96,106,106,102,104,106,102,101,102,97,110,89,93,100,104,107,108,97,107,108,101,99,103,93,113,107,103,96,99,106,104,102,106,103,105,103,82,117,107,110,94,100,101,102,103,75,94,104,95,103,100,102,117,101,104,100,98,94,100,105,99,105,97,103,98,85,96,97,91,95,97,91,108,105,97,81,117,98,103,99,105,107,97,105,97,110,97,90,101,101,106,101,96,100,96,102,105,105,108,108,109,95,98,90,103,105,107,93,106,96,101,95,92,85,103,106,95,92,91,117,88,94,96,95,101,95,107,103,95,100,89,85,96,94,101,100,106,101,101,103,104,114,110,105,94,97,110,100,99,107,111,100,95,95,115,111,112,98,109,80,102,103,113,92,100,104,89,100,98,91,98,95,84,64,102,101,111,104,104,91,108,95,103,98,100,94,110,95,103,96,95,107,97,102,96,94,113,99,103,99,102,95,102,119,112,97,95,102,118,113,102,105,101,103,101,110,101,104,87,90,100,92,91,57,94,97,96,90,101,112,106,101,88,106,108,101,98,99,106,101,96,98,94,105,99,99,100,101,90,103,87,96,86,88,99,97,102,99,94,95,97,103,99,98,97,90,113,108,99,98,97,116,108,106,98,104,99,102,96,101,111,93,99,94,107,101,102,100,93,95,105,110,100,102,105,101,103,92,93,102,94,92,102,98,99,113,103,107,119,100,105,107,107,95,102,98,98,103,100,122,110,106,98,109,104,102,110,108,114,114,122,83,103,104,96,137,96,100,104,98,108,101,108,95,100,104,105,96,98,88,104,99,90,93,113,98,94,115,80,109,95,104,99,95,87,96,102,96,100,108,107,109,76,117,90,102,97,102,95,99,99,93,105,105,94,95,108,108,86,83,96,115,117,97,95,110,102,119,100,100,103,102,90,92,97,102,109,92,115,91,103,106,107,90,93,104,97,95,110,107,95,99,98,95,109,99,99,105,91,101,90,90,97,100,107,101,101,101,98,110,101,101,100,98,99,98,98,97,98,96,93,98,99,95,95,91,107,103,99,109,102,103,106,99,101,96,105,97,92,113,104,98,95,79,94,115,96,111,103,106,105,106,99,95,96,101,109,96,99,101,108,93,98,96,92,106,105,101,104,101,100,98,98,93,104,109,106,95,108,95,98,95,95,91,99,101,97,107,94,108,116,102,97,111,126,95,101,101,87,96,102,101,90,113,106,92,105,99,109,109,92,103,101,102,94,98,99,107,109,91,98,97,102,97,105,87,90,102,100,107,101,91,95,96,88,106,101,105,103,106,99,104,102,102,106,94,99,109,100,100,100,99,105,91,99,92,92,97,96,91,98,107,97,98,115,110,95,116,108,98,103,93,104,104,110,98,104,108,103,103,116,112,79,117,98,113,99,100,114,108,114,109,95,101,100,110,92,93,87,105,95,102,103,106,103,92,108,104,107,104,99,102,107,108,103,99,109,102,110,103,96,98,105,116,105,99,101,91,103,107,106,94,94,96,107,107,105,103,96,106,92,92,106,111,110,103,92,103,107,110,103,100,93,121,97,105,91,95,73,101,110,112,105,110,95,114,108,108,106,98,104,101,103,108,102,102,87,106,95,103,109,124,97,96,84,106,105,113,109,99,100,105,111,100,110,98,100,78,101,105,105,95,100,97,94,111,108,102,101,109,107,103,93,93,87,109,106,103,106,107,111,105,110,108,103,109,106,111,102,98,99,103,90,105,102,105,94,93,105,104,90,117,104,97,113,112,99,108,103,101,99,102,109,98,106,101,111,106,109,118,95,77,106,114,110,98,87,99,100,95,105,107,102,105,85,105,124,100,111,98,112,109,95,103,107,89,99,115,94,104,101,93,121,105,101,76,112,106,107,90,108,117,108,99,116,105,94,112,99,112,124,107,100,105,113,113,97,97,94,98,99,98,111,101,108,91,106,109,109,106,113,103,102,89,96,105,99,105,98,107,104,124,103,107,101,99,104,98,102,102,102,110,100,104,112,110,88,112,97,102,100,102,96,106,95,94,109,107,101,104,109,102,91,95,95,75,102,97,92,102,102,95,114,93,93,99,108,107,109,108,102,96,96,113,112,105,114,106,108,103,91,99,106,94,102,118,94,106,100,95,91,107,104,87,104,111,107,119,103,110,94,106,91,108,92,99,96,100,100,92,88,102,102,106,113,101,109,105,101,108,100,106,114,103,113,96,112,121,94,102,103,94,99,103,104,109,112,80,100,117,101,96,102,104,97,98,100,94,101,112,103,83,100,108,92,75,103,101,97,103,100,100,88,113,94,104,100,106,113,100,99,100,105,103,120,99,111,111,91,119,108,102,101,96,97,107,109,102,98,111,98,106,103,131,110,104,116,106,110,109,94,101,96,112,101,99,118,99,94,106,122,102,101,105,112,90,106,95,103,97,99,107,87,106,73,98,100,90,102,99,105,99,106,111,91,112,100,108,113,104,101,103,102,94,94,101,108,98,103,108,109,104,106,90,101,110,95,112,112,105,92,102,110,96,107,98,104,100,106,106,94,112,103,107,91,111,100,100,94,102,95,107,101,94,111,104,102,116,103,106,104,104,104,113,109,85,109,94,90,100,80,93,90,102,100,104,100,97,105,116,101,104,105,104,92,96,102,97,116,113,99,105,109,94,87,110,108,105,106,103,106,124,109,105,104,92,107,113,98,106,102,113,94,100,110,104,97,103,78,121,98,110,114,113,96,103,98,99,99,106,103,104,94,104,108,95,98,98,86,112,107,103,95,100,97,114,101,91,97,78,102,115,106,98,95,97,101,95,97,105,94,95,101,97,103,100,105,98,95,106,91,95,105,105,103,82,98,95,98,102,113,96,100,93,113,95,101,87,101,64,106,105,97,107,106,100,108,94,104,93,99,97,97,101,96,103,128,93,98,107,108,111,95,91,93,93,100,98,121,109,107,113,105,105,107,102,94,100,97,97,98,109,97,105,105,118,104,107,103,101,101,100,104,100,97,109,112,103,98,103,96,101,102,100,107,109,107,91,96,109,102,100,103,102,100,113,105,104,103,93,105,87,106,112,104,104,106,111,109,112,118,112,100,105,104,104,94,101,95,115,113,104,94,100,89,112,115,94,112,84,117,104,107,95,114,105,102,103,105,99,106,94,109,99,106,102,111,99,101,102,98,106,108,101,100,103,109,105,104,103,96,105,99,101,117,96,85,98,95,101,111,95,101,87,113,110,83,92,105,112,94,101,98,92,103,102,112,96,100,109,114,94,89,107,88,97,112,84,90,95,101,114,102,95,120,108,102,95,101,101,95,92,102,99,93,103,102,102,73,119,103,98,106,99,98,91,93,98,100,102,103,102,98,101,104,101,89,114,102,97,93,68,98,94,91,108,115,116,115,112,102,110,103,99,101,102,103,102,109,113,110,105,108,94,99,79,106,106,95,118,93,109,110,103,106,94,111,104,112,104,91,107,119,106,109,93,98,96,87,102,93,95,94,100,106,99,104,104,100,114,101,92,87,112,97,96,105,101,107,93,101,102,96,97,104,100,104,104,105,101,103,99,110,121,113,101,112,105,107,104,103,117,93,103,88,111,72,95,112,112,103,104,102,98,91,96,110,106,109,107,103,108,99,99,66,95,104,75,104,100,108,106,106,100,99,109,99,102,101,91,99,103,92,96,91,95,106,92,93,103,105,95,87,106,81,107,107,92,103,93,98,99,96,99,101,88, +423.35123,104,108,97,100,91,96,93,102,90,98,93,98,85,97,105,129,105,105,111,92,105,82,104,105,95,108,88,103,90,99,94,99,102,102,105,96,79,88,98,112,97,96,106,93,109,105,96,80,102,100,105,98,91,100,103,102,100,97,97,104,91,102,103,104,113,107,95,98,100,87,87,105,102,103,105,107,95,100,102,109,92,95,106,98,97,100,100,100,111,97,93,97,103,105,87,104,97,100,93,95,108,96,92,100,86,107,95,104,94,96,102,106,105,91,111,94,101,106,94,103,91,101,102,83,99,108,105,105,108,117,109,105,89,103,100,114,100,101,95,119,98,92,94,94,75,91,98,99,85,96,99,105,103,95,99,101,105,88,96,99,108,96,91,96,104,84,84,98,91,106,90,97,110,83,100,100,96,92,110,111,106,96,91,109,101,99,99,91,108,97,96,98,109,109,83,103,102,100,105,95,93,103,94,92,97,99,94,108,99,103,96,90,98,120,106,101,96,97,92,99,95,101,90,81,97,104,103,103,94,99,95,94,94,101,110,102,98,95,95,104,101,93,99,103,104,97,95,101,113,96,93,96,96,112,104,104,102,102,97,99,90,90,96,104,109,107,100,105,96,102,84,96,94,102,104,106,98,77,108,100,104,102,101,95,98,117,102,98,108,97,99,93,98,91,87,105,105,99,113,88,104,106,114,99,99,100,99,102,93,109,106,89,107,101,101,102,109,94,84,84,101,99,93,100,102,108,107,94,113,115,95,96,91,93,102,97,90,109,103,114,100,110,100,89,116,94,101,92,103,101,104,92,100,102,104,106,99,94,96,94,105,109,88,97,100,107,79,112,93,113,120,101,105,108,112,103,101,88,94,101,98,101,100,92,105,98,102,91,107,96,94,91,102,105,86,100,102,102,102,92,103,95,105,77,95,79,101,99,101,104,66,84,113,96,92,103,114,89,96,105,97,99,104,96,98,105,100,105,97,97,95,102,90,106,99,100,96,103,108,99,113,101,96,88,94,97,99,101,109,101,91,98,91,110,96,99,84,102,109,104,93,102,96,108,113,101,102,103,111,95,95,98,106,95,92,98,102,104,97,94,99,116,114,101,106,101,109,97,101,86,107,104,98,113,92,103,94,113,108,108,94,92,100,99,102,105,99,116,100,100,102,106,107,106,97,99,101,102,101,96,96,100,105,100,118,98,94,102,89,105,107,94,91,95,100,98,95,76,104,100,112,110,97,97,108,98,109,91,108,100,98,105,100,84,98,91,109,102,96,92,91,103,106,95,100,92,98,112,104,101,93,122,93,105,117,94,106,110,109,107,100,98,91,94,95,97,97,89,101,104,104,96,98,108,106,106,100,97,93,93,105,92,107,97,96,110,100,104,95,99,102,100,98,104,103,95,107,100,96,111,75,98,96,99,94,104,91,98,108,96,95,100,99,96,106,104,79,77,95,112,104,102,93,118,93,88,96,90,98,102,92,104,102,99,92,98,100,96,101,106,110,95,100,101,100,100,91,99,93,110,98,110,112,92,103,109,104,96,100,101,109,104,99,104,79,102,95,96,104,100,102,96,98,101,99,100,109,107,102,87,96,92,106,102,120,97,87,101,92,104,111,79,97,109,90,106,105,118,99,103,94,101,92,105,101,93,106,106,84,108,107,101,83,102,97,101,100,93,92,94,113,109,90,104,101,94,104,103,88,109,110,106,94,100,98,100,102,90,100,108,90,92,97,100,102,115,96,95,100,108,97,108,88,91,101,103,101,101,90,96,98,101,93,105,103,99,107,89,92,74,111,95,85,108,110,98,107,109,97,92,93,114,104,101,116,91,108,120,97,100,105,97,97,100,112,94,98,97,111,102,88,99,107,111,117,103,91,85,100,105,105,123,97,98,102,103,100,96,95,114,104,96,110,102,104,99,95,86,102,103,111,97,97,124,88,99,115,109,101,97,112,104,108,88,105,100,95,107,90,108,99,94,109,106,92,109,95,88,88,95,106,92,95,102,97,106,89,107,90,104,98,107,101,101,107,87,97,88,101,105,109,73,106,99,98,101,94,100,99,90,103,105,89,98,104,102,94,104,98,107,98,104,104,88,109,101,101,97,101,109,106,114,100,101,91,103,85,90,101,107,103,107,91,100,101,92,108,97,114,95,106,102,102,99,107,103,91,104,104,91,95,104,105,92,108,92,106,100,99,106,97,114,91,102,98,108,104,102,105,98,85,96,93,95,98,93,107,100,104,103,101,109,110,89,109,113,99,102,95,117,93,108,100,102,110,106,104,95,96,88,79,88,88,108,111,105,105,90,104,106,110,105,112,100,101,102,108,104,95,102,96,106,107,98,96,92,113,102,95,107,109,116,95,113,93,98,112,94,99,94,100,99,100,98,110,96,106,95,89,93,87,101,91,98,102,101,102,101,96,89,96,99,96,101,105,98,95,107,96,99,105,98,102,117,109,92,96,102,98,102,109,108,92,93,101,100,114,99,117,114,95,108,89,107,100,113,69,98,101,88,81,112,100,91,121,99,100,100,97,100,105,90,99,94,96,99,102,104,107,93,110,99,107,94,105,103,100,116,96,98,103,86,103,112,98,119,93,108,111,101,109,102,102,106,102,94,93,103,100,86,108,102,100,102,80,105,119,104,112,105,81,105,100,94,107,112,97,100,107,104,87,104,104,105,93,102,108,111,121,101,85,105,119,106,103,95,104,100,100,108,104,103,105,99,100,103,104,106,102,107,108,109,97,99,84,112,112,107,104,111,109,114,102,103,102,102,109,106,111,111,106,103,91,100,108,95,108,115,108,120,110,88,92,104,91,84,98,104,87,105,116,100,105,105,102,103,108,104,95,106,113,113,97,90,103,101,96,105,96,130,105,103,85,104,103,94,113,93,99,107,109,91,100,98,108,103,98,95,110,104,107,100,94,96,109,110,95,88,103,105,104,111,106,98,100,100,100,108,103,98,109,107,98,107,105,110,99,102,106,113,99,108,96,94,100,99,100,108,105,106,101,97,98,114,97,106,104,98,101,102,99,94,99,100,106,112,110,95,103,99,91,94,100,107,100,103,94,99,99,101,112,94,105,102,95,106,108,109,101,111,87,98,111,113,100,107,109,111,100,100,104,99,98,109,98,101,103,106,100,100,102,100,125,104,104,105,101,99,99,109,97,107,100,105,98,97,91,115,113,116,101,94,102,106,105,102,117,101,102,108,102,106,104,103,100,102,96,95,108,105,101,121,98,103,109,102,103,109,103,102,100,98,105,105,106,106,107,104,108,102,98,112,104,99,111,103,105,110,96,100,103,95,95,94,102,117,108,98,97,100,102,104,110,101,105,109,100,98,100,97,74,106,114,117,108,92,100,94,92,93,109,102,93,107,103,104,113,102,106,73,99,101,119,97,101,108,111,107,106,105,97,100,97,108,100,106,104,95,99,109,100,112,98,92,101,101,109,89,100,103,104,102,91,109,113,78,108,119,104,92,102,108,99,117,108,111,110,111,100,102,109,96,99,107,105,114,111,105,94,106,110,108,105,101,106,98,109,102,94,100,111,111,100,97,123,104,107,94,132,93,111,102,101,104,102,117,114,104,97,101,104,98,112,91,101,82,97,97,98,106,98,86,100,107,106,103,97,100,116,114,99,97,99,100,106,109,95,107,99,112,100,99,91,106,101,100,102,101,102,87,91,76,104,108,108,100,100,100,95,92,58,69,109,98,92,103,94,94,97,87,101,99,95,92,82,113,93,108,99,109,106,105,97,103,98,112,109,104,111,85,104,109,99,107,102,105,105,95,107,98,102,109,122,100,103,102,109,106,95,93,101,101,112,111,109,110,108,111,99,101,105,93,113,108,133,103,93,98,100,101,107,101,93,104,101,101,107,104,93,109,101,110,96,102,101,101,99,103,114,104,99,83,109,102,109,99,91,104,112,105,91,106,95,106,87,109,113,100,87,89,107,103,95,92,106,101,106,62,91,107,107,104,94,98,93,99,106,106,107,100,106,107,104,102,97,97,103,117,84,100,102,88,95,104,97,100,94,94,88,103,100,97,105,96,105,103,98,106,103,95,121,100,92,102,108,107,92,117,96,102,117,98,108,98,95,107,112,98,96,95,103,106,99,104,94,114,100,110,97,107,108,107,118,104,91,106,104,107,98,107,106,97,102,96,100,104,95,112,107,98,104,105,102,111,119,102,99,98,106,109,112,102,108,90,97,102,99,105,99,109,88,99,95,113,95,106,104,97,115,110,103,117,113,103,102,102,111,105,78,107,98,112,114,105,94,97,101,91,89,118,94,111,108,102,83,114,103,99,98,109,97,100,100,101,104,83,107,93,103,106,82,106,107,98,95,97,105,96,99,101,65,106,115,102,105,96,108,103,113,98,87,101,109,103,98,96,100,107,96,88,101,98,101,103,100,96,106,92,99,95,101,103,102,105,100,98,90,112,98,95,106,100,100,104,102,103,108,95,98,101,113,97,95,113,107,102,100,113,105,97,93,90,94,89,117,99,109,101,97,101,100,109,104,101,106,105,99,107,105,109,89,100,104,102,99,105,95,107,99,98,105,112,104,119,113,100,105,92,118,104,102,99,102,96,97,98,72,109,107,97,97,99,108,106,101,95,108,100,117,100,100,118,107,100,87,95,102,108,108,88,98,89,100,95,99,114,94,113,115,94,110,105,96,104,87,94,99,89,112,102,100,92,102,105,92,94,98,94,100,99,116,95,111,102,102,110,96,95,100,100,102,103,101,78,90,112,104,90,108,110,89,95,102,96,99,94,96,101,105,90,112,105,97,102,115,99,100,104,94,95,109,105,91,103,94,98,95,93,108,97,96,84,118,99,94,106,105,107,107,110,105,101,103,93,120,87,88,97,93,83, +423.49149,101,95,94,111,101,90,119,102,90,101,119,115,66,90,104,114,95,102,98,99,109,88,97,116,108,93,109,99,107,112,93,110,106,99,109,102,99,87,96,95,97,94,101,112,101,99,97,98,97,90,98,93,98,102,94,83,113,98,109,98,87,90,84,92,96,105,99,118,114,96,109,100,106,91,109,121,91,109,96,93,104,110,97,97,114,96,105,107,92,88,93,107,91,96,91,100,112,95,114,103,82,108,97,115,106,103,92,115,90,105,74,103,106,110,92,105,100,100,81,94,102,108,97,98,98,100,102,98,119,102,124,94,104,99,91,123,86,100,109,94,99,118,102,102,102,93,108,96,98,98,100,101,116,100,119,118,106,105,100,110,95,114,108,109,98,90,97,99,95,100,96,101,104,115,100,91,105,103,95,104,100,105,90,115,110,93,100,97,98,89,82,97,98,104,104,103,106,101,101,98,100,99,107,97,115,96,97,109,107,116,96,93,116,92,95,103,104,108,103,106,99,100,104,91,99,101,103,109,103,100,95,96,105,108,103,112,95,104,98,98,97,107,108,99,104,113,112,96,92,102,99,105,127,103,103,95,110,101,91,103,97,110,90,103,88,113,104,99,65,108,102,95,105,100,109,107,102,88,88,99,97,101,83,88,96,106,106,100,105,105,107,106,100,97,109,101,96,104,100,96,116,95,99,110,87,109,103,98,105,104,103,102,108,95,109,86,122,98,99,100,85,101,100,94,93,100,95,94,107,94,109,102,95,112,113,117,122,101,100,114,105,104,99,109,101,92,97,111,111,99,97,122,107,97,94,99,97,106,98,109,99,95,95,96,102,95,105,109,94,93,92,94,115,111,102,86,97,102,101,101,108,114,96,106,99,101,99,98,104,85,106,98,101,104,96,105,109,70,101,101,111,104,106,92,101,99,105,105,98,87,91,103,101,117,110,93,97,113,112,95,101,98,105,101,108,101,106,91,102,115,105,99,101,88,101,103,97,99,79,108,103,102,96,96,109,88,105,98,110,94,92,104,105,118,112,100,98,102,121,97,97,90,95,103,106,105,102,107,112,100,101,105,102,95,83,98,106,106,102,106,107,104,103,101,97,105,122,95,105,95,91,112,111,93,95,102,98,117,78,108,89,123,108,109,90,107,101,101,107,99,116,108,90,103,98,105,103,102,106,109,110,109,105,112,110,104,113,111,94,100,98,103,84,106,99,88,101,101,104,95,96,109,109,99,107,102,99,101,109,108,98,96,116,98,102,98,100,98,103,87,101,102,96,109,105,94,88,96,97,99,98,98,110,104,104,100,113,91,109,96,105,109,89,99,96,129,107,99,96,97,104,102,96,108,109,104,93,99,116,101,108,94,103,103,102,109,99,95,93,103,97,109,103,101,104,97,97,106,108,120,99,100,107,114,108,115,102,116,103,113,101,115,108,113,107,106,102,93,104,99,107,108,104,117,108,105,99,102,92,107,98,105,92,113,101,110,110,68,93,120,110,110,103,109,92,75,96,92,112,104,113,102,103,101,103,109,100,105,103,98,100,103,109,91,117,99,94,110,106,107,88,107,101,117,99,91,104,107,103,95,94,87,95,91,113,104,111,115,95,98,112,108,100,97,98,96,109,117,98,104,107,103,94,103,97,95,96,99,96,114,104,98,112,102,98,87,99,95,110,96,106,106,101,107,89,108,107,93,107,91,94,103,102,113,117,98,98,92,104,107,99,104,94,103,111,94,98,62,96,108,110,104,94,83,95,113,113,107,112,98,105,110,108,109,104,111,102,105,82,97,108,101,99,109,103,100,93,95,103,112,110,97,100,100,105,113,101,113,97,108,109,106,104,110,102,95,102,75,101,97,96,108,100,110,108,109,108,108,106,105,109,125,98,110,110,107,106,97,106,102,102,115,114,98,98,117,105,97,103,83,98,101,94,106,99,100,110,100,114,102,96,91,106,97,98,108,87,100,124,110,103,107,102,105,92,102,105,107,100,106,102,103,94,107,116,96,97,117,102,98,105,107,92,113,96,92,100,109,107,108,94,102,117,104,105,92,96,84,97,94,97,101,107,99,108,110,90,91,104,101,111,113,104,95,96,105,113,107,95,102,109,100,106,129,104,104,105,97,104,109,101,112,101,104,99,110,105,86,95,99,109,109,114,109,105,109,110,103,72,99,105,103,99,105,104,102,99,103,96,96,101,95,109,84,106,84,114,99,95,117,91,105,98,99,109,81,107,103,106,108,102,97,117,99,108,89,105,104,90,101,103,113,99,105,119,97,102,114,97,101,96,112,109,116,90,105,103,112,93,108,110,104,105,84,99,99,95,104,100,104,96,87,109,109,113,97,87,107,103,97,99,97,97,94,98,104,98,108,105,105,124,100,101,97,107,103,101,107,101,113,100,108,96,95,102,95,98,103,104,96,102,107,99,108,100,103,116,106,93,101,100,104,97,110,104,110,98,105,99,110,103,108,106,98,80,104,92,96,103,97,101,92,105,111,98,104,99,102,100,99,95,111,118,102,89,104,91,102,106,102,102,99,93,116,104,106,94,109,99,104,99,106,107,95,106,100,100,103,87,95,105,91,109,100,99,98,100,98,109,90,114,97,108,103,103,99,105,106,100,100,105,98,95,96,106,109,112,106,104,96,100,104,112,108,94,94,101,91,109,109,107,109,101,107,113,105,114,112,98,109,94,101,104,98,97,94,108,102,93,100,100,100,91,97,98,102,97,95,103,88,103,103,99,107,103,104,113,99,99,105,127,102,96,100,107,108,104,109,108,118,112,108,104,115,109,93,101,98,91,110,110,105,100,97,112,107,109,104,98,104,95,102,100,105,100,96,99,119,91,90,101,104,99,105,100,96,99,109,107,109,105,105,98,106,100,104,105,111,105,100,106,92,93,110,106,108,109,96,117,100,101,106,101,96,99,106,104,97,113,96,113,105,93,96,111,107,107,103,103,97,100,103,106,92,96,109,95,96,99,105,111,109,100,97,110,119,112,109,108,88,107,105,105,111,100,111,101,104,99,104,106,107,113,102,111,100,102,108,126,105,95,107,95,95,107,100,102,108,116,100,104,103,113,102,107,110,117,96,102,107,110,116,105,117,105,107,101,98,97,108,104,99,102,104,91,106,99,96,103,92,102,106,106,99,98,107,117,95,106,103,112,87,92,109,120,99,109,103,104,100,104,93,100,109,105,87,95,99,100,91,111,99,109,97,102,111,103,88,99,100,107,108,107,94,117,105,93,98,98,111,102,98,103,96,99,96,98,106,103,92,90,94,97,108,116,103,113,83,91,94,112,109,101,106,106,102,107,99,101,93,94,109,105,82,93,105,107,125,105,67,105,107,96,110,98,102,117,97,105,97,102,101,99,109,103,109,105,100,101,104,92,109,109,100,92,110,110,109,116,71,91,109,107,103,92,95,88,96,102,102,85,101,101,108,102,121,87,105,106,98,97,109,108,98,91,98,111,104,103,96,79,105,104,102,99,102,100,93,101,96,113,88,109,96,107,99,112,94,92,110,95,106,107,108,113,108,98,100,116,103,108,92,109,99,111,109,95,92,90,102,94,99,107,100,100,104,110,99,109,103,90,101,99,101,96,100,98,85,88,103,100,103,116,98,107,105,103,102,106,107,102,114,82,103,108,86,122,113,113,106,104,103,103,107,94,105,99,94,96,98,106,113,94,103,102,99,100,108,107,98,101,105,113,88,107,108,97,87,117,91,97,92,107,103,110,98,109,93,100,99,109,99,106,117,105,108,101,95,91,99,90,99,108,114,112,99,97,110,109,87,113,95,103,93,116,97,109,91,114,99,102,112,99,93,117,108,115,97,99,105,100,108,121,106,99,112,95,105,102,99,91,100,100,102,102,99,100,101,109,104,106,104,111,113,111,95,93,102,106,103,91,103,105,99,101,101,101,87,104,102,107,103,103,100,91,112,102,106,103,111,104,108,97,109,85,100,108,93,88,95,94,105,107,102,102,100,100,115,88,100,113,108,98,106,105,109,105,103,109,92,96,95,95,100,101,105,88,100,109,95,99,105,102,96,104,104,103,96,94,104,101,103,101,100,102,104,111,104,91,104,113,109,101,104,101,113,109,96,108,110,102,99,95,100,101,105,91,99,104,107,105,104,78,92,103,102,105,102,104,93,115,109,94,101,103,100,109,102,93,112,109,107,109,105,106,94,104,105,91,105,93,105,93,96,99,111,95,107,144,110,96,93,100,103,102,119,91,101,91,102,102,109,111,109,101,109,94,90,110,103,78,98,96,93,105,113,108,88,87,101,98,100,112,104,103,98,109,105,94,102,98,107,111,97,110,91,103,111,110,108,100,92,99,108,113,99,96,108,105,101,99,99,101,104,109,93,104,96,98,109,95,102,109,94,106,100,109,105,112,105,103,105,94,101,99,94,95,96,94,104,111,108,96,89,107,99,98,99,100,90,110,108,101,77,103,97,103,107,111,119,109,105,109,106,96,101,109,108,99,104,100,105,106,106,95,110,109,126,122,80,92,100,95,104,108,100,103,95,102,110,90,84,112,99,109,103,101,95,118,102,97,87,100,113,92,89,106,102,105,107,109,109,92,92,99,92,98,104,98,102,112,103,102,109,107,100,101,107,98,102,102,95,95,92,107,103,87,109,106,91,102,95,106,106,107,97,111,99,115,101,89,99,112,104,92,95,108,92,102,99,103,106,108,99,100,89,106,90,108,115,100,93,112,99,105,97,96,115,112,105,96,97,83,95,108,111,67,109,99,106,102,96,105,77,103,114,111,92,92,111,103,93,102,99,110,91,109,94,96,97,105,105,93,99,104,96,98,109,106,99,90,102,100,111,101,95,111,105,91,96,101,90,108,81,101,91,108,95,96,95, +423.63174,82,89,100,97,94,104,96,87,87,112,95,100,89,104,101,100,101,88,112,114,104,97,79,98,91,97,92,88,108,103,89,103,92,100,106,97,108,93,98,88,90,98,113,112,104,92,98,105,101,98,99,100,90,93,102,96,102,91,99,107,99,102,106,102,110,115,73,94,99,101,86,109,92,102,100,105,107,95,107,100,112,95,103,109,86,104,107,105,113,97,109,96,106,109,114,95,87,103,96,96,94,97,96,97,100,113,106,96,97,104,109,105,113,104,115,105,99,118,114,88,100,107,112,107,103,100,99,90,107,110,91,112,100,120,96,96,112,96,97,96,100,104,96,98,100,98,94,106,105,87,127,100,101,101,107,92,100,96,100,95,98,109,105,109,103,105,108,97,100,84,93,107,99,77,104,109,93,89,109,82,94,111,101,109,109,99,92,102,104,101,102,121,90,113,82,99,102,113,99,103,108,98,106,102,90,96,93,99,108,117,103,99,114,116,101,82,113,108,99,104,97,117,98,98,92,102,102,98,103,104,95,100,99,108,99,102,113,100,109,97,112,100,99,103,96,103,115,105,116,116,103,102,99,114,90,96,99,109,97,106,97,96,110,115,97,105,98,100,114,88,98,118,105,98,103,103,128,98,105,109,99,96,112,108,103,101,111,103,104,109,106,112,111,100,108,104,95,98,101,97,107,101,113,103,89,101,112,107,117,103,103,110,100,91,107,105,96,99,116,88,87,107,107,105,110,98,109,96,113,113,100,105,107,106,108,100,110,98,99,107,102,95,90,102,116,109,106,105,105,107,92,103,107,93,100,103,121,100,98,116,105,104,93,98,106,99,108,109,107,111,104,114,112,107,99,106,100,107,96,98,105,108,99,108,99,106,112,101,100,100,115,101,103,107,98,97,96,104,101,119,94,102,101,94,107,117,108,101,103,101,94,105,104,108,98,104,99,106,101,94,97,108,111,110,95,102,103,100,97,100,101,123,102,107,99,98,101,106,94,111,103,105,103,109,99,112,101,106,104,113,85,106,102,113,97,108,94,112,104,104,101,110,96,112,112,115,118,94,95,105,87,137,109,94,102,105,102,101,114,115,107,107,108,99,110,94,97,104,85,99,106,103,110,105,99,95,96,102,97,105,108,100,109,102,100,99,91,99,101,106,108,105,92,90,106,103,99,108,103,90,103,113,105,105,104,109,103,100,109,98,106,105,91,105,113,102,103,91,117,105,95,99,100,108,115,109,104,109,103,104,104,110,108,97,88,96,106,101,96,108,96,97,97,99,99,95,110,95,96,102,100,85,105,105,110,102,109,102,101,103,97,100,111,109,94,96,110,108,101,104,105,107,106,96,115,95,92,118,101,105,111,106,111,109,100,117,108,111,114,102,101,101,103,92,89,116,110,100,110,120,106,104,90,107,106,107,105,88,100,103,112,104,103,97,103,108,109,94,105,102,108,107,92,102,104,116,107,113,105,114,104,117,117,114,95,86,109,110,101,117,109,72,112,106,100,92,95,101,117,110,110,101,110,112,100,90,111,96,101,103,120,111,104,105,96,117,98,100,102,94,107,101,103,104,98,100,101,106,102,90,98,87,96,100,103,115,116,109,119,114,103,105,102,99,99,103,111,102,107,94,114,106,108,107,91,102,107,100,101,111,99,102,114,95,104,109,109,95,83,93,99,100,100,104,100,109,90,104,116,121,103,108,109,97,102,105,103,101,101,94,90,99,94,99,96,99,93,109,97,98,104,92,109,94,87,99,100,88,101,98,106,106,110,109,111,117,88,110,106,101,103,96,120,122,103,109,106,109,106,109,98,108,110,124,98,109,101,107,102,93,107,109,113,101,107,99,99,103,105,91,103,103,109,98,90,101,103,98,119,109,117,101,102,90,102,108,103,109,95,105,94,104,109,94,94,108,108,99,116,100,104,94,105,95,95,102,93,95,99,116,103,97,113,105,105,104,109,110,106,106,98,96,95,104,99,106,103,90,115,103,101,91,111,98,94,99,102,121,107,101,110,99,106,123,106,94,104,108,104,104,118,109,96,101,101,91,93,100,103,104,104,104,102,105,102,109,105,98,96,104,98,99,120,94,106,107,101,103,88,105,110,103,98,96,102,105,92,90,104,101,104,92,128,102,102,105,98,96,97,92,95,105,108,104,106,102,113,109,106,105,119,90,106,92,111,123,107,91,102,101,103,109,81,106,106,87,97,106,100,96,109,106,104,100,103,114,98,100,98,108,101,103,99,84,107,104,97,97,97,107,102,104,99,97,104,102,88,95,107,106,100,102,96,99,106,104,96,113,95,111,97,106,104,108,117,103,95,103,123,116,120,85,101,97,95,99,115,109,114,106,101,90,109,103,96,109,102,109,88,93,94,96,109,104,96,101,101,111,96,101,107,113,107,134,104,106,100,118,103,100,96,111,102,95,99,95,100,109,95,107,108,112,105,103,98,100,71,99,111,101,103,101,93,103,98,102,108,99,108,127,95,92,94,93,102,98,116,98,93,106,100,112,124,94,103,98,100,107,96,104,106,93,99,97,122,101,100,103,114,98,111,95,99,106,102,99,95,116,116,92,104,92,107,114,93,109,115,101,112,91,117,96,101,98,104,84,101,108,104,105,100,90,84,103,108,109,115,95,98,94,101,95,104,101,106,96,110,103,106,98,102,91,128,112,103,117,116,101,101,109,102,106,107,109,94,102,90,90,125,102,100,99,87,108,107,113,99,109,89,108,91,101,91,102,94,107,98,98,100,96,104,120,107,102,96,95,92,114,108,98,97,108,96,103,95,105,97,113,115,112,107,102,94,94,110,106,109,106,109,103,102,108,96,116,100,102,95,99,102,98,96,104,103,97,96,96,99,112,101,107,103,109,112,108,107,82,101,105,107,100,114,117,107,97,94,107,97,110,101,103,99,100,102,103,93,127,117,86,99,89,111,94,109,102,111,102,109,102,98,105,99,112,105,94,104,117,113,100,98,110,113,107,98,97,112,94,95,99,106,105,106,77,116,107,102,113,99,105,89,91,112,106,102,108,96,102,95,103,108,108,99,100,119,95,100,100,82,97,110,97,82,106,116,125,110,92,109,103,99,105,98,109,106,107,100,102,107,104,106,108,100,104,105,91,105,98,105,107,99,106,98,100,97,107,106,102,87,98,107,111,104,104,105,103,91,101,106,100,109,94,95,94,111,104,102,108,100,109,102,107,99,104,104,99,92,102,110,99,110,99,93,98,103,107,104,98,100,110,96,104,98,108,99,87,115,96,94,96,110,111,99,98,104,110,97,111,100,108,101,100,99,98,96,105,104,106,107,113,103,104,98,115,94,106,99,103,99,102,107,106,109,98,101,110,93,114,93,96,108,94,108,105,106,120,98,101,109,88,98,91,106,92,106,105,95,103,101,103,115,71,104,96,103,103,95,90,109,109,108,101,112,107,100,111,83,116,93,102,105,102,111,106,118,98,108,101,92,106,101,101,105,110,94,113,120,101,87,102,99,89,110,103,104,103,101,102,102,106,105,96,104,112,102,99,105,107,102,99,107,94,121,93,108,104,95,102,95,108,107,107,104,121,104,110,96,99,96,108,112,100,96,111,96,105,96,91,101,101,105,104,94,107,106,111,117,106,101,93,102,108,103,112,97,103,91,106,108,107,102,107,103,103,105,108,95,107,109,106,96,95,100,87,85,99,94,103,101,98,91,105,98,109,107,99,95,105,108,77,108,87,93,94,110,108,106,114,96,89,102,97,105,106,104,110,106,109,103,86,103,114,87,105,97,108,106,103,97,100,98,103,107,105,97,92,97,106,110,102,108,95,110,90,97,101,105,105,106,108,103,102,105,107,102,92,99,99,99,96,100,107,100,91,103,102,87,106,84,97,105,103,92,100,101,98,101,100,103,101,107,95,99,101,110,102,110,103,108,96,112,106,108,104,95,104,104,103,98,101,121,96,105,97,94,94,113,105,109,99,106,112,85,109,107,101,103,103,96,102,93,108,111,102,104,100,101,105,102,88,116,107,109,73,91,97,110,100,97,106,104,104,101,103,100,103,100,103,108,103,107,109,103,112,108,107,105,107,106,111,101,112,95,113,90,105,110,105,101,109,101,113,95,90,92,104,98,101,100,109,99,110,105,103,92,100,98,96,102,112,111,104,98,113,99,102,103,112,106,106,107,103,116,105,96,102,107,104,95,92,91,107,115,107,99,107,97,105,117,106,105,103,86,90,100,104,102,115,106,100,106,91,92,75,102,102,79,93,104,86,100,101,106,94,101,106,89,106,106,94,95,114,100,109,109,100,120,109,98,105,104,114,106,101,111,107,112,102,102,101,123,105,113,72,119,105,101,97,98,108,97,104,101,109,118,113,102,103,117,104,110,99,101,96,95,96,106,115,96,100,105,106,91,104,98,87,106,102,103,94,102,96,107,103,96,96,107,105,100,92,101,98,85,92,88,102,99,104,109,107,100,102,93,89,95,103,104,105,122,104,92,96,92,89,95,102,104,95,115,109,100,96,110,112,109,107,95,106,100,99,107,107,104,109,105,103,102,102,107,98,91,98,105,92,132,107,116,102,100,115,93,105,93,97,99,108,99,91,113,122,102,106,89,94,94,92,107,104,116,105,103,99,97,105,112,104,91,97,75,93,99,102,89,104,100,106,99,107,98,99,95,104,96,99,106,105,110,92,104,105,98,101,109,102,94,107,108,106,95,92,108,98,104,97,80,101,95,102,102,77,103,107,96,107,99,104,111,113,95,58,96,110,106,104,106,104,99,120,97,97,77,93,116,103,103,82,106,93,106,101,113,102,107,103,104,102,95,102,91,104,111,82,100,94,80,97,103,104,100,105,89,112,110,93,107,96,108,99,108,106,105,105, +423.772,109,91,95,100,101,113,93,97,97,99,117,83,113,110,101,101,86,106,93,105,109,91,99,106,102,112,106,104,121,105,113,87,74,107,84,83,93,95,104,101,80,100,107,104,101,91,100,98,97,102,105,87,101,99,98,95,101,100,106,93,90,91,107,108,100,113,97,106,89,87,119,102,107,99,98,104,94,99,103,110,101,100,100,97,100,96,93,100,92,96,99,86,97,101,102,113,100,103,102,99,94,113,94,108,86,97,104,104,100,103,110,77,105,102,101,99,91,87,80,102,96,99,104,99,101,109,104,104,117,100,109,101,109,96,109,109,107,102,93,113,105,103,104,94,96,83,100,95,90,93,97,102,114,90,91,91,102,89,96,88,97,105,107,99,107,93,109,100,90,95,100,109,112,103,94,115,111,92,98,87,89,95,134,100,100,102,97,86,100,102,98,104,113,103,93,87,83,98,102,107,96,104,92,109,93,99,103,98,100,96,94,109,106,107,102,94,89,107,87,102,100,105,95,94,108,102,96,98,106,100,95,110,91,72,109,107,101,104,100,113,103,114,101,105,94,103,99,106,99,103,106,102,97,106,97,73,90,100,100,105,98,102,94,108,96,103,108,104,102,105,101,103,103,101,95,109,103,96,92,127,104,91,97,95,106,94,83,101,96,92,91,91,99,94,103,105,124,105,104,108,102,99,98,114,96,102,100,101,104,111,93,103,100,99,95,95,108,91,101,103,95,109,92,104,101,97,103,102,96,104,103,102,98,92,102,98,104,103,95,100,103,99,88,93,92,110,102,101,102,112,102,99,108,103,113,91,103,100,102,101,100,100,99,70,97,110,105,108,92,98,99,99,121,110,102,98,109,99,83,90,107,111,99,103,94,101,96,100,100,97,107,93,84,115,92,105,98,97,94,110,109,107,98,102,101,97,97,104,116,98,94,94,101,99,97,99,93,95,103,100,82,104,96,102,112,106,104,101,96,111,90,102,105,104,105,99,87,104,80,97,99,100,92,94,101,97,97,98,102,97,111,93,102,102,95,91,106,93,105,103,93,104,103,101,115,102,101,95,109,104,104,108,87,99,104,105,106,95,102,105,104,113,102,108,96,104,103,111,110,102,106,105,102,79,90,117,122,107,99,105,114,95,101,104,96,108,87,101,112,97,104,104,73,101,108,96,110,96,111,100,99,116,101,107,91,99,111,100,85,94,99,122,82,100,106,95,85,101,98,114,90,101,107,102,96,85,107,102,117,105,105,108,97,98,71,92,98,90,105,94,108,91,109,101,109,99,105,101,102,103,87,91,117,113,97,116,97,96,107,107,97,83,86,89,100,98,98,116,100,98,102,102,104,101,105,132,104,96,112,105,95,93,102,95,103,100,84,104,101,109,98,93,85,105,107,102,104,116,108,105,100,99,91,117,102,100,88,108,96,102,107,91,97,99,93,118,95,97,102,108,102,110,97,104,96,106,109,101,107,76,98,113,94,118,101,108,103,113,105,99,104,104,97,88,93,106,97,104,120,107,100,99,91,102,91,109,100,102,108,101,109,101,109,95,84,87,91,98,100,108,107,97,120,107,102,92,104,110,105,105,90,104,98,103,104,108,102,103,100,104,105,106,104,101,100,101,101,107,95,106,100,98,104,98,95,99,98,112,104,118,101,93,94,98,92,86,110,99,98,105,114,98,103,88,105,99,108,109,103,102,114,105,80,86,94,111,91,99,108,94,106,101,92,96,106,98,99,103,93,105,103,106,102,87,99,111,104,106,97,103,93,109,110,95,87,98,102,103,106,104,99,104,103,109,93,92,102,101,93,117,112,89,94,111,108,101,108,105,95,99,99,94,107,97,88,104,97,96,110,101,100,100,104,103,106,93,100,100,100,98,108,96,101,96,98,95,105,104,112,103,94,103,113,110,102,103,100,97,103,89,95,100,103,103,96,106,98,101,106,118,85,103,101,112,91,88,101,88,101,103,105,89,98,107,96,97,110,98,102,100,109,102,97,101,82,100,102,110,104,103,117,105,81,109,81,87,97,98,100,106,107,113,107,98,103,103,89,103,103,109,109,99,102,107,98,102,91,113,108,102,92,115,120,86,88,105,104,90,105,99,105,108,109,103,105,100,104,111,112,97,108,96,98,97,108,101,109,101,98,110,103,101,109,109,103,107,103,110,104,101,101,108,100,105,103,102,96,91,96,102,89,109,99,101,91,101,110,111,102,85,92,93,105,93,103,95,100,102,99,106,104,92,105,94,101,101,116,106,102,102,104,98,84,95,108,97,101,117,94,100,98,105,106,107,91,101,119,100,111,103,108,96,100,112,101,104,103,114,108,103,103,106,103,104,106,106,102,107,102,101,109,102,113,96,94,103,103,97,102,92,98,99,99,102,96,102,107,105,109,96,103,98,102,96,99,91,95,111,110,95,95,118,93,101,94,113,107,108,96,110,109,110,104,100,101,105,105,107,113,88,109,100,102,98,110,122,93,98,106,96,98,104,90,104,107,107,101,100,105,99,109,110,102,108,113,98,107,114,99,108,98,102,96,102,100,100,102,105,102,104,101,110,105,102,97,105,96,101,110,97,91,102,102,100,99,96,110,112,102,93,116,113,103,110,92,99,110,97,105,102,103,78,117,94,98,99,103,105,94,108,100,106,120,94,101,112,89,109,89,97,107,99,99,100,109,91,109,102,94,127,96,109,97,106,96,88,102,102,93,104,94,111,68,116,100,106,103,95,109,103,91,76,97,113,101,104,95,103,104,104,106,116,109,117,114,102,105,98,96,106,99,109,105,103,101,103,101,103,111,81,111,115,104,86,104,104,99,109,98,105,98,103,125,105,94,109,95,113,97,106,109,98,94,110,108,112,98,99,96,96,99,100,105,109,102,116,102,111,99,113,105,108,107,106,102,101,105,98,100,110,99,106,105,92,110,104,96,90,103,121,107,112,97,108,107,106,106,93,101,98,100,97,100,106,116,110,100,110,108,108,107,111,94,106,108,105,127,101,106,104,110,104,96,105,114,104,99,95,95,99,98,95,109,110,105,102,113,104,105,109,101,110,104,111,107,111,96,101,98,98,102,109,117,101,108,91,98,103,109,98,103,102,114,99,103,93,104,104,103,95,117,109,95,97,116,88,98,105,100,72,97,102,103,110,103,109,105,95,102,113,106,113,102,107,95,92,102,112,100,104,115,102,108,101,99,99,97,105,111,90,100,102,110,98,96,111,107,96,112,101,109,103,104,102,90,111,99,108,85,103,103,105,111,107,98,105,101,97,111,90,107,98,97,102,98,115,107,91,108,94,90,105,114,102,91,113,106,106,104,89,105,102,99,115,102,97,102,106,101,99,108,95,87,112,97,103,104,95,96,91,102,94,101,106,95,95,97,101,103,90,96,91,103,99,100,109,108,98,103,102,112,98,102,98,103,97,101,102,118,106,98,105,102,98,100,116,113,105,105,102,106,108,107,106,94,101,91,99,116,110,107,93,113,104,118,89,104,102,101,101,112,98,96,107,105,105,104,100,90,107,104,110,101,116,117,99,109,99,99,104,104,102,107,100,96,106,117,96,106,94,100,107,95,112,105,94,106,97,103,91,97,102,107,110,104,85,110,100,97,110,108,101,105,108,90,98,104,100,98,97,101,98,98,113,96,93,106,112,106,100,92,111,91,115,110,94,99,94,123,84,100,100,102,95,95,100,89,106,100,95,95,103,94,98,103,92,102,104,96,102,86,99,102,106,109,92,109,92,104,96,105,97,112,91,111,106,107,99,103,112,96,100,112,100,104,98,100,105,101,106,101,86,102,104,101,109,106,106,99,115,109,106,100,87,110,106,110,109,105,94,93,102,105,99,96,109,105,112,103,102,108,102,94,86,110,116,106,99,104,113,110,102,108,129,101,106,99,99,106,95,107,99,105,91,102,97,100,110,107,112,97,103,104,99,99,109,109,114,90,98,104,98,84,83,100,106,100,103,104,104,113,100,90,115,103,95,102,102,98,102,117,108,113,119,100,100,100,103,102,111,105,112,122,104,103,107,91,117,99,92,106,103,108,105,95,113,115,101,106,105,109,115,94,99,98,100,106,102,101,100,102,109,104,102,103,99,100,102,93,105,108,90,85,96,110,101,92,98,103,112,110,104,109,96,92,107,108,106,107,82,105,98,111,108,106,107,115,102,100,101,108,100,104,99,104,105,103,108,105,123,95,88,113,96,95,103,102,96,100,95,98,104,116,103,97,98,89,116,101,97,102,91,104,102,94,101,107,98,94,98,77,98,101,102,100,97,110,87,108,108,105,108,95,117,105,99,99,100,109,103,93,93,107,103,103,97,104,103,107,108,98,111,109,92,110,104,103,107,100,103,104,102,127,105,110,109,105,107,102,109,99,92,106,104,111,102,91,99,102,100,98,109,108,97,99,107,92,98,109,89,105,96,97,102,104,99,107,92,108,98,90,105,105,104,113,91,93,91,95,106,87,115,103,99,119,99,108,102,102,95,102,101,102,105,101,107,89,96,96,104,94,103,104,113,100,107,98,100,100,107,97,104,101,106,100,111,92,99,88,104,100,102,112,114,114,112,108,101,98,97,111,70,115,101,84,106,101,97,105,86,102,95,108,110,87,99,106,104,102,83,97,91,112,102,96,95,98,107,107,107,104,89,99,108,107,99,106,111,97,109,108,105,87,98,87,93,103,97,96,112,87,101,102,101,103,96,104,101,110,96,99,96,106,97,95,106,108,91,106,128,100,105,107,105,99,91,94,107,103,98,107,98,102,106,76,131,92,104,94,92,110,95,96,77,100,75,101,108,105,100,102,105,87,107,98,101,99,106,91,93,100,106,100,94,104,80,101,99,95,100,109,102,96,101,116,94,101,110,112,90, +423.91226,123,93,94,89,101,98,94,92,80,102,93,99,92,107,99,110,100,97,109,111,106,91,92,110,96,96,101,91,94,84,107,92,113,98,99,100,98,107,110,99,102,102,97,97,107,94,103,128,71,94,100,130,97,103,102,110,105,116,123,95,100,101,94,98,98,104,104,106,96,91,121,96,98,101,103,116,100,112,112,95,95,83,100,91,102,97,97,100,89,97,95,105,109,108,82,93,100,73,109,93,106,104,99,93,105,97,102,95,92,106,105,101,100,91,104,100,113,113,106,99,99,97,101,100,96,95,95,102,104,98,109,106,87,115,90,99,110,103,100,90,98,94,101,106,95,89,106,103,93,101,105,97,109,96,100,106,83,95,113,95,111,92,108,108,104,111,98,92,103,107,92,112,104,103,109,100,112,89,117,107,95,100,99,108,101,99,102,86,113,101,102,101,101,108,91,96,105,101,100,112,109,129,94,89,99,106,104,103,99,100,92,105,98,114,92,98,96,106,109,97,105,112,93,98,105,114,110,98,109,111,109,113,104,105,97,101,112,103,108,100,102,101,109,100,109,108,112,112,110,98,100,106,109,106,95,106,107,104,105,113,93,103,94,103,105,108,94,93,97,102,99,89,99,103,101,101,98,102,121,107,95,94,101,98,96,100,80,100,95,103,89,98,97,107,106,101,111,99,101,105,103,107,105,95,80,104,102,96,108,104,109,115,107,96,100,100,91,104,106,94,97,100,112,104,99,91,91,97,104,105,98,100,107,94,117,105,90,101,100,92,95,101,98,97,95,112,102,124,104,103,95,104,107,104,115,99,100,105,106,110,96,93,115,91,109,91,110,105,100,104,107,105,118,107,104,90,94,101,102,102,107,114,101,114,99,107,95,104,113,103,112,91,91,109,94,104,101,106,97,91,111,97,93,94,112,112,102,77,107,105,98,100,98,102,97,102,105,81,103,90,84,105,96,98,101,94,95,90,117,114,96,97,93,83,96,101,103,102,106,104,104,93,117,117,100,114,103,90,99,104,96,103,70,104,99,106,107,91,110,102,100,102,102,94,98,95,99,101,111,93,105,92,99,93,106,96,90,100,98,109,88,113,117,108,110,106,107,98,116,112,106,93,110,100,107,109,105,121,108,100,115,94,103,102,101,95,93,109,101,107,135,112,94,107,110,108,99,102,105,98,97,101,120,99,114,91,109,75,108,106,99,97,107,100,105,83,92,104,96,96,100,105,102,105,108,100,106,100,104,98,98,118,110,96,101,113,106,105,94,99,97,100,91,104,93,92,95,111,111,99,106,96,103,99,103,98,104,106,108,92,111,90,97,88,102,109,106,97,96,101,104,100,110,94,100,111,103,98,106,103,92,105,100,100,106,101,95,111,101,112,104,108,104,94,112,93,110,97,101,102,106,106,105,96,110,89,80,99,97,99,102,101,100,99,100,101,104,97,109,110,83,100,102,97,105,101,108,104,107,98,101,109,104,90,101,102,100,103,95,99,109,93,118,98,93,101,104,105,105,101,106,99,105,99,106,99,104,111,113,101,107,100,86,97,97,89,103,101,90,106,95,96,95,102,94,101,105,106,97,99,98,91,103,105,112,108,103,99,108,122,101,104,98,96,87,113,121,107,100,90,106,98,99,96,104,105,91,109,97,104,109,113,102,103,101,100,105,104,116,112,104,117,101,95,98,95,98,98,98,89,108,102,92,104,98,107,105,103,100,98,110,107,102,103,107,103,87,100,103,101,104,107,96,105,92,113,99,93,104,101,87,105,118,96,96,117,101,97,98,92,89,105,102,109,109,105,102,100,105,108,98,90,106,102,102,99,108,92,127,99,105,104,96,97,97,96,113,96,104,104,103,112,105,99,106,100,112,98,107,101,88,113,107,106,102,106,104,88,100,95,106,90,104,110,106,98,103,101,102,101,110,94,99,108,96,106,93,116,99,103,80,103,96,108,99,97,92,106,103,97,105,110,103,98,87,95,95,98,100,99,100,107,117,91,106,108,106,105,96,108,99,104,107,104,105,101,94,97,95,113,95,112,106,88,108,113,105,102,105,98,106,106,94,103,94,100,88,101,103,95,86,96,105,102,102,93,93,101,106,89,101,107,103,110,109,101,105,99,73,96,111,110,105,93,106,107,91,102,105,99,113,88,110,106,103,103,100,104,102,104,102,122,98,102,117,100,83,104,98,105,108,103,99,93,105,105,96,105,87,99,96,110,98,94,96,101,94,103,103,97,100,108,112,97,101,99,105,109,100,103,106,99,104,103,94,101,98,112,104,86,103,91,95,97,113,102,102,96,108,89,109,98,101,97,100,91,92,84,100,98,106,96,104,100,104,108,108,88,94,103,107,94,104,99,97,99,105,104,75,96,102,82,99,109,103,109,99,95,110,104,108,108,116,98,98,105,82,93,107,98,102,99,93,95,104,105,106,104,103,96,91,111,81,103,106,106,96,97,93,107,110,105,103,97,99,102,95,88,99,109,96,98,106,100,95,113,112,98,100,100,80,113,107,106,112,93,95,105,113,107,106,104,100,104,104,97,91,104,111,106,97,106,104,75,99,105,95,99,99,94,91,101,97,106,96,92,105,108,100,99,101,98,116,106,105,92,103,94,95,120,95,109,89,89,92,105,94,96,102,102,97,95,110,105,99,97,99,111,98,122,120,115,113,107,96,101,103,92,92,112,94,96,113,115,105,99,106,101,99,95,95,108,103,104,100,106,108,108,110,98,100,99,114,109,94,112,98,95,109,101,91,100,93,78,102,107,98,110,98,102,87,106,98,111,108,100,99,97,106,96,115,99,102,90,103,102,96,107,100,101,102,106,118,103,99,97,100,111,95,102,106,68,97,108,109,102,112,98,96,101,104,93,91,99,97,112,108,101,108,103,108,112,109,104,98,97,95,109,112,107,112,105,90,104,104,103,109,102,97,103,104,102,101,102,104,109,104,105,94,96,91,111,92,90,102,102,101,105,102,99,120,104,105,103,106,98,99,97,98,105,80,105,98,128,99,109,108,100,85,102,88,99,111,106,106,95,104,89,99,68,92,109,97,104,95,98,96,92,98,95,107,122,99,102,102,101,97,105,93,101,114,104,95,108,102,91,109,94,111,106,102,92,109,99,108,94,97,96,92,91,103,103,107,96,95,97,107,99,108,92,99,106,82,104,99,109,106,98,112,98,91,110,109,91,105,95,102,102,90,105,111,114,98,89,101,117,104,84,106,100,110,102,108,104,102,102,102,106,101,91,94,107,104,87,105,101,106,97,111,100,99,102,117,103,116,112,98,106,99,94,103,95,98,104,94,96,93,98,77,98,99,100,105,91,103,108,108,110,100,111,104,105,96,102,70,92,95,102,95,95,99,97,103,108,101,107,104,98,101,96,102,110,94,100,99,96,112,100,97,102,113,105,100,95,91,108,113,89,98,95,102,96,109,101,91,104,106,105,136,102,108,94,104,93,96,96,109,99,99,100,100,102,106,96,103,104,87,102,100,102,95,97,109,96,100,109,95,99,93,108,102,103,105,93,97,105,90,93,97,98,101,102,92,91,103,99,112,114,104,104,87,93,102,102,110,100,97,98,106,98,94,100,106,100,94,91,92,101,94,83,102,105,82,94,105,102,100,87,99,102,108,111,88,101,100,101,105,101,114,105,96,100,100,102,96,98,105,115,90,99,84,87,103,107,71,96,92,101,108,85,97,109,96,69,88,101,103,106,103,95,107,101,84,99,113,102,98,106,99,91,105,92,99,102,115,102,100,97,112,95,95,112,92,106,98,116,100,113,97,97,93,113,100,108,108,92,98,102,94,100,104,116,99,108,88,115,107,103,100,102,82,100,101,106,103,104,100,98,126,100,101,99,97,109,99,94,93,107,96,92,109,97,108,99,100,95,115,104,109,99,108,107,115,90,98,107,103,105,95,110,102,103,99,106,84,117,106,104,89,113,96,103,105,94,105,88,104,109,103,100,95,113,105,77,108,93,94,114,104,98,85,103,117,103,96,101,106,97,106,92,90,101,96,96,106,106,104,103,94,87,101,88,109,96,106,104,103,107,97,97,107,102,94,107,111,109,94,108,108,110,100,109,92,104,100,113,112,100,104,112,100,98,86,94,102,104,79,104,105,95,127,97,93,94,98,102,102,76,100,90,106,102,99,99,97,99,96,117,101,108,118,100,101,120,117,98,97,105,95,91,106,93,93,89,96,100,109,103,101,100,101,94,103,103,95,101,110,98,111,103,105,110,98,111,91,103,92,94,102,100,88,107,85,98,106,105,106,98,96,107,105,108,109,106,95,93,95,97,87,100,96,104,106,100,98,97,99,93,76,111,89,103,100,96,92,88,102,95,103,110,96,104,106,98,110,103,109,90,107,108,100,91,93,101,94,105,98,117,101,105,112,110,106,106,113,91,100,94,99,109,112,101,109,105,100,89,102,114,108,96,88,101,108,107,108,111,96,101,94,95,100,92,104,107,87,103,74,94,101,93,97,95,99,99,92,85,98,101,97,90,92,94,92,93,95,95,105,104,97,100,98,105,92,101,95,105,109,99,104,101,97,89,100,105,111,102,98,101,103,104,106,100,88,103,100,95,94,93,91,91,96,91,94,101,101,94,85,107,92,91,108,92,90,107,92,99,98,95,96,99,96,98,110,113,88,92,110,104,100,95,109,104,99,105,88,97,99,96,93,101,96,103,87,101,98,91,91,109,117,98,95,96,101,99,100,72,103,109,127,112,90,111,95,129,101,91,104,110,106,106,105,101,103,95,104,119,103,108,102,91,118,92,116,97,102,96,96,104,75,98,109,93,106,110,112,105,114,90,90,94,102,102,82,100,120,91,94,116,102,99,92,104,101,98,103,100,95,95,89,104, +424.05249,109,95,81,99,93,100,110,102,98,103,96,98,106,99,104,89,95,99,99,104,110,96,95,99,100,105,106,100,99,98,98,100,93,90,98,98,105,92,101,91,95,100,118,101,106,106,97,98,99,79,109,102,96,109,117,91,106,104,106,102,102,99,91,79,104,96,103,117,89,100,104,102,95,100,92,99,102,90,98,96,101,89,99,120,103,112,99,103,94,103,106,103,102,95,94,97,104,112,111,98,108,110,103,106,94,99,106,100,98,95,99,110,107,95,108,103,96,102,107,104,101,110,99,98,90,102,101,103,105,101,89,105,94,104,99,97,118,94,93,104,110,114,103,95,113,96,108,110,105,103,99,106,103,79,103,96,108,102,104,113,91,103,102,106,105,95,109,99,93,102,100,100,110,109,95,96,100,101,100,95,99,119,99,92,94,96,99,87,105,96,99,100,105,99,95,100,100,85,99,111,99,102,104,113,88,91,104,110,111,114,92,95,98,108,102,91,107,96,106,87,99,106,112,104,97,102,98,103,106,108,94,99,99,109,103,111,100,99,88,105,103,103,108,106,100,99,105,104,104,107,105,98,101,102,100,103,101,105,106,105,88,100,99,104,93,99,104,104,94,92,106,105,107,108,101,100,104,106,94,110,104,101,105,112,101,95,99,94,113,97,103,110,104,104,93,110,113,115,91,96,91,100,103,98,94,105,102,103,101,88,94,123,102,103,109,94,104,111,117,97,100,95,78,98,110,102,112,95,114,110,124,100,123,108,101,103,92,102,104,67,105,98,100,101,95,104,101,103,101,96,106,92,104,102,128,93,106,108,99,77,96,100,98,94,108,95,95,116,100,97,82,93,110,109,102,91,105,95,102,106,99,96,96,106,94,98,91,90,98,94,100,95,97,106,100,103,98,106,104,118,110,105,105,92,97,107,103,88,99,85,87,97,107,97,110,111,100,111,95,86,94,97,92,104,74,117,107,101,106,103,94,107,106,99,98,103,103,105,100,104,96,101,102,116,89,90,80,100,106,105,95,107,100,109,105,103,105,103,109,97,96,109,110,106,116,108,110,97,94,102,94,99,100,104,104,111,98,95,108,102,100,100,106,85,109,88,100,100,95,95,102,117,103,114,102,113,102,109,104,108,111,105,105,104,101,105,101,96,100,96,99,96,106,110,104,106,100,95,98,96,101,103,102,92,100,101,98,100,90,102,100,105,110,109,110,99,101,100,101,98,107,99,112,99,113,92,100,112,99,102,114,88,101,103,102,103,103,109,105,97,100,113,75,104,105,102,119,118,103,102,92,100,111,112,102,109,91,94,104,113,83,94,107,96,94,109,108,113,103,100,106,113,110,102,114,87,106,109,106,119,104,115,104,101,105,91,103,97,113,107,117,98,106,114,112,109,108,93,102,106,94,102,106,105,100,98,95,101,99,109,99,111,95,100,99,100,96,98,100,103,112,98,109,98,101,98,91,83,86,101,96,134,117,101,109,103,103,99,108,104,99,90,101,115,99,98,103,98,100,97,103,99,100,104,93,113,102,108,110,105,106,88,106,107,105,103,103,93,108,117,98,102,99,109,106,109,112,98,105,92,105,112,122,103,101,122,104,104,109,109,92,95,110,104,95,86,107,104,105,102,99,103,102,101,109,92,110,96,120,108,99,91,102,99,112,87,99,101,111,117,108,102,98,104,91,88,106,114,98,107,106,116,103,91,121,107,110,128,104,99,103,98,97,103,94,97,96,94,99,95,103,108,95,96,101,106,100,106,100,104,103,105,106,99,105,121,105,105,111,101,111,99,100,136,98,112,102,99,97,103,117,99,94,104,106,100,103,106,96,91,110,114,102,98,106,112,108,104,98,110,103,115,99,112,94,114,104,108,107,93,110,106,96,109,89,111,99,106,96,105,105,107,98,106,102,95,104,98,101,94,97,92,104,99,91,100,93,105,107,103,100,104,114,101,115,111,93,105,111,77,106,104,97,98,100,103,67,97,99,100,109,107,100,108,105,111,93,104,95,104,95,104,94,96,105,97,109,104,96,99,105,110,112,96,102,88,95,104,102,99,109,113,108,99,98,96,79,98,91,106,111,104,109,111,94,109,100,86,123,99,98,91,115,95,106,104,94,96,101,101,103,112,106,109,97,104,102,103,96,100,119,100,99,105,112,103,110,94,97,88,95,107,105,111,95,101,101,101,98,98,97,100,88,96,109,104,107,92,108,101,99,112,107,105,110,104,100,103,98,89,106,98,99,84,108,94,86,104,98,100,104,116,83,96,102,120,99,94,106,103,99,106,111,103,102,105,94,99,90,94,99,97,112,98,101,87,101,99,96,102,103,90,100,90,102,104,100,113,91,104,84,104,99,107,101,105,112,100,95,91,80,100,105,107,104,99,95,91,91,84,96,108,109,114,89,100,90,122,97,102,95,108,109,106,106,103,93,110,105,95,105,110,96,113,92,106,89,101,101,99,109,105,106,95,86,103,99,109,107,104,96,102,99,111,102,103,100,113,89,102,106,109,97,101,108,100,100,106,110,101,91,92,105,103,110,95,91,100,99,104,100,123,109,100,104,101,101,99,92,96,98,107,87,97,95,106,96,98,99,104,106,100,104,108,105,102,103,103,108,125,104,96,89,96,88,116,79,99,105,118,95,93,108,116,87,73,104,96,116,104,112,99,107,98,109,105,108,99,92,96,98,109,106,99,103,92,102,89,103,99,105,102,95,92,102,115,114,103,97,97,99,107,85,101,108,124,92,107,101,101,98,104,96,99,95,94,93,103,97,98,95,107,98,105,75,105,95,95,106,105,90,106,110,97,99,102,100,110,102,107,99,112,100,76,93,102,102,104,109,101,108,105,104,102,104,101,99,108,108,104,103,95,107,100,104,87,72,102,112,114,108,99,109,99,96,106,102,108,100,102,106,103,102,112,96,102,100,96,110,123,114,89,102,121,101,95,108,100,101,108,107,122,99,103,104,99,97,102,108,99,115,108,106,109,94,98,100,94,106,100,96,96,112,109,103,91,115,113,102,99,96,101,104,92,117,94,105,102,101,104,109,111,106,94,101,99,70,96,91,94,99,100,107,96,105,97,103,107,101,112,110,100,106,102,102,97,92,105,105,105,103,96,111,102,96,94,101,106,104,97,99,99,109,108,100,115,106,98,107,102,100,107,94,112,103,97,109,112,85,105,106,91,105,98,107,97,103,111,102,105,79,102,97,109,107,98,104,101,102,92,107,98,96,113,100,98,108,113,109,109,92,103,109,103,113,92,123,107,105,103,100,94,104,109,110,95,99,96,101,97,98,113,91,108,103,103,106,87,104,102,104,102,103,104,114,104,108,104,105,106,103,91,100,108,95,102,110,103,100,102,98,99,90,98,98,99,98,91,106,94,96,102,98,97,102,109,107,100,95,108,98,105,109,101,98,102,108,100,98,89,90,100,103,99,94,102,110,91,108,113,119,99,104,101,110,98,105,105,114,89,104,100,97,101,106,102,101,104,94,95,98,106,106,110,90,104,100,118,108,111,95,106,108,109,103,103,106,113,104,109,97,83,100,94,96,100,98,100,112,99,105,92,102,112,98,100,92,103,102,92,102,103,96,116,96,92,92,124,93,99,103,87,102,103,100,99,103,103,96,102,86,99,116,95,101,106,99,102,92,101,108,117,102,105,97,98,109,105,119,97,110,106,107,105,107,99,104,110,106,100,98,87,107,100,121,93,102,104,101,101,98,79,109,84,96,98,101,106,100,106,104,110,93,107,92,87,98,90,99,105,99,108,102,112,98,94,88,105,99,102,100,96,97,101,100,110,112,107,103,108,95,92,97,108,104,101,108,95,98,102,109,77,80,100,104,95,90,95,98,108,110,93,109,99,88,93,91,97,87,98,103,103,91,96,102,99,100,102,97,101,105,110,114,93,96,106,119,95,88,106,98,104,88,101,98,109,103,92,98,98,106,95,104,96,93,97,99,105,97,105,102,109,105,107,98,95,102,101,107,100,117,107,106,101,96,110,109,96,111,97,111,102,102,104,104,114,110,107,110,99,91,116,101,102,106,97,101,99,109,103,98,99,107,104,104,95,110,92,101,99,104,95,99,105,99,100,101,101,89,97,96,94,96,89,101,95,99,99,107,101,96,104,95,98,98,106,112,95,98,95,98,96,107,95,100,92,91,110,106,98,108,110,96,103,101,97,95,96,109,91,96,105,109,95,100,104,95,99,104,87,89,100,99,101,105,96,99,102,101,113,111,101,90,99,107,93,115,98,99,103,92,106,105,98,102,96,109,102,108,90,95,93,104,101,108,105,103,105,104,94,107,94,105,111,97,69,118,94,103,105,102,106,102,103,95,100,117,98,101,101,96,105,101,109,110,91,101,111,101,101,91,85,93,90,98,109,86,110,110,95,99,101,92,100,105,99,96,88,91,107,106,107,98,102,101,104,63,92,106,92,103,106,94,103,86,71,102,102,98,91,95,87,103,107,106,97,112,98,111,103,97,90,105,102,96,102,98,99,105,105,108,98,93,92,101,93,93,109,109,101,95,105,98,100,94,107,101,100,105,108,111,102,84,107,101,109,103,99,99,106,107,104,100,99,89,99,101,108,100,91,101,106,98,92,85,91,107,87,70,87,91,100,105,117,99,99,105,94,106,108,92,101,98,94,113,101,103,95,95,103,100,141,103,96,99,96,102,86,106,92,97,105,93,102,119,94,91,100,105,112,93,100,104,78,92,100,102,91,93,99,106,110,106,100,91,96,99,86,103,90,103,97,79,95,106,109,105,111,103,94,102,96,106,99,129,71,106,97,96,113,100,100,112,101,87,99,92,128,98,94,103,93,79,88,106,97,103,112,109,109,100,109,87,81,106,98,109,94,109,89, +424.19275,106,97,111,100,89,112,100,102,109,118,91,86,91,113,97,124,107,103,106,99,95,105,110,102,78,94,102,107,113,94,82,99,107,104,83,95,102,101,100,94,106,104,87,100,107,107,90,112,93,106,97,107,85,103,112,103,91,102,102,86,100,101,103,95,96,102,102,94,97,102,93,104,98,97,91,113,95,97,92,90,74,102,110,101,106,113,98,96,106,102,104,91,103,91,101,108,105,128,93,96,98,79,109,113,90,102,89,103,90,88,94,82,103,101,108,102,102,92,95,107,94,101,109,106,96,90,95,90,99,96,82,110,103,111,101,106,92,97,85,97,96,96,96,95,93,97,104,93,90,94,97,88,118,85,98,95,94,104,101,104,87,105,100,107,94,99,100,115,107,104,104,99,107,89,99,92,109,89,94,89,100,87,95,107,102,101,102,87,86,119,104,99,97,99,105,94,96,92,100,105,109,100,100,98,91,105,92,100,111,102,101,101,85,96,94,96,103,105,105,97,106,84,97,96,94,96,94,95,103,95,101,105,95,99,102,105,94,97,102,112,96,102,103,109,96,99,96,103,91,103,81,101,104,97,103,101,92,88,98,97,83,120,85,101,87,100,93,97,108,96,101,98,102,103,102,96,97,107,93,96,96,100,101,125,93,96,106,96,109,98,95,98,83,94,105,108,96,99,101,102,97,98,91,104,88,98,112,109,100,91,96,102,101,93,104,71,112,93,92,97,91,100,107,93,104,105,101,91,106,114,93,88,96,111,100,105,99,87,91,102,105,97,109,90,98,96,108,107,98,100,106,104,110,103,104,94,87,109,87,100,95,98,99,91,89,102,110,99,105,94,98,114,101,104,103,96,97,104,108,112,104,103,91,105,111,82,96,106,102,91,103,99,91,104,93,129,90,104,95,116,106,94,88,93,93,106,104,83,105,99,104,91,98,109,107,95,111,97,106,99,93,97,96,109,105,94,86,104,105,104,94,95,107,110,104,97,98,108,96,90,103,95,98,124,98,95,85,95,98,109,100,97,108,106,99,110,94,96,96,95,100,81,94,104,106,109,98,98,98,112,94,103,96,90,100,97,97,99,113,101,97,104,96,99,102,104,98,91,102,100,113,108,104,104,92,95,84,95,106,93,109,97,100,103,92,108,104,100,96,100,96,96,75,97,100,107,110,95,101,93,102,105,92,104,99,88,117,90,102,97,99,98,92,96,102,97,97,95,100,107,96,97,97,91,103,89,101,108,98,87,92,98,99,89,102,93,95,90,102,94,93,91,101,99,102,101,103,93,96,93,92,92,97,100,100,105,109,97,90,114,95,75,104,100,89,96,94,98,91,98,101,96,101,102,106,111,102,97,104,104,103,96,106,98,97,78,109,90,98,91,98,87,105,99,101,101,95,92,96,106,96,110,103,103,95,99,87,103,88,96,102,94,103,102,90,92,84,98,99,104,95,110,110,76,96,87,99,98,96,111,97,110,102,108,116,104,97,105,93,100,95,102,123,99,109,95,107,84,102,109,99,110,110,95,97,112,100,94,109,105,106,119,91,96,96,106,102,102,102,89,101,100,73,100,104,98,99,89,104,91,92,93,98,96,102,94,110,109,100,94,83,96,99,110,111,96,89,90,97,95,97,95,102,97,105,84,103,104,107,121,109,93,90,86,88,103,95,90,114,98,109,92,88,99,97,97,103,102,104,111,108,93,113,110,99,100,94,97,95,90,93,124,89,96,98,94,98,103,101,103,111,99,113,110,91,104,94,100,104,93,106,98,102,107,98,103,109,95,107,103,99,101,106,105,96,88,93,91,101,107,86,105,100,96,104,109,97,95,102,104,102,85,95,94,91,96,108,96,109,106,99,118,109,104,94,108,101,97,100,103,109,94,100,100,124,84,101,108,105,101,88,104,110,105,106,99,95,93,86,108,91,106,101,114,98,105,82,114,103,103,108,110,83,106,104,99,103,97,94,94,103,104,98,99,101,103,100,92,89,97,99,101,99,86,97,113,94,95,104,101,89,102,114,74,103,88,111,93,99,100,104,112,113,100,91,98,93,89,105,120,101,99,102,95,83,90,95,90,94,97,109,106,95,95,98,98,108,102,95,100,103,114,95,101,95,107,78,95,98,95,101,106,87,99,95,101,100,77,103,96,96,101,104,99,79,100,100,101,104,102,100,107,93,101,102,94,89,96,99,105,86,110,104,106,100,99,100,86,103,102,101,111,107,99,118,96,96,88,97,86,110,79,104,92,91,106,106,114,93,100,107,99,101,92,108,93,99,106,95,96,96,109,88,104,84,91,104,94,101,116,93,122,101,95,107,97,108,98,101,85,95,98,97,101,107,89,105,98,96,103,93,99,95,105,87,108,102,94,97,93,107,92,102,103,99,96,89,110,98,99,83,99,104,101,95,89,97,103,107,99,93,97,99,108,99,89,90,98,103,98,97,101,99,99,95,110,89,97,114,115,95,101,96,107,104,104,100,91,99,97,108,96,92,106,97,109,113,101,102,105,110,101,96,119,102,96,100,100,100,104,109,94,104,121,100,105,97,104,107,103,99,114,101,80,111,91,104,99,92,103,83,99,106,102,94,97,102,105,110,95,101,97,105,101,102,102,99,106,108,105,108,97,105,97,96,98,105,72,100,88,78,62,100,99,116,97,95,106,103,103,110,104,97,104,95,107,107,93,107,88,101,88,109,95,99,101,95,98,105,104,88,102,104,102,102,105,88,105,91,105,115,103,99,94,100,109,105,96,98,92,103,96,99,93,103,116,108,105,101,100,96,109,88,106,100,102,105,103,102,108,110,102,83,119,106,105,106,103,112,106,96,100,106,108,91,96,100,102,108,101,111,104,93,105,99,102,98,113,96,94,113,101,112,116,105,101,100,98,114,98,104,102,105,120,105,112,98,99,102,104,98,105,107,102,101,120,91,108,93,102,102,98,86,105,99,98,103,125,100,95,100,115,106,113,96,111,90,102,102,107,96,99,90,107,104,100,109,100,85,87,105,77,90,105,106,97,106,105,102,109,114,118,97,111,111,105,105,103,101,107,102,108,117,109,96,105,115,104,102,94,99,112,96,98,110,94,113,106,106,100,101,98,103,101,105,108,104,73,100,93,101,101,96,106,105,94,116,104,97,105,100,100,102,101,91,108,108,102,105,101,106,103,98,110,95,102,102,103,99,102,88,91,90,103,111,95,97,94,102,100,103,109,101,99,101,96,103,100,110,90,91,101,101,106,101,101,101,112,104,100,97,101,114,103,102,99,98,101,96,98,89,95,104,100,112,100,111,98,97,102,103,106,98,104,113,105,114,93,94,105,103,100,109,104,100,106,112,98,101,98,98,103,90,101,105,105,98,102,95,96,105,96,112,108,102,113,83,96,97,103,92,110,84,109,107,108,106,94,109,97,98,88,99,101,102,108,113,99,93,96,104,96,93,109,91,103,86,104,104,90,106,107,129,99,101,100,85,108,115,104,105,97,107,102,102,106,106,100,93,103,93,96,92,98,103,101,80,92,103,110,101,103,102,115,109,107,88,108,100,98,104,120,93,104,105,105,92,109,97,82,105,101,101,102,91,100,104,111,100,102,100,116,101,103,79,122,97,108,104,90,97,94,93,91,99,104,91,94,101,110,106,100,88,95,95,103,92,104,80,102,96,112,107,90,105,103,95,95,100,100,90,96,100,106,80,101,97,90,88,93,94,107,92,93,113,99,96,87,93,106,97,119,99,107,102,106,99,100,105,98,101,104,94,101,98,113,104,99,111,93,92,99,96,103,115,101,100,100,94,103,107,101,95,100,97,89,97,101,100,116,96,102,100,104,95,102,99,104,103,101,100,94,117,112,112,109,101,98,103,104,103,92,99,97,109,99,107,96,99,108,104,105,117,107,100,94,104,99,97,104,70,99,113,99,95,104,111,104,103,107,110,101,100,92,91,105,110,109,87,91,98,79,94,104,94,98,92,101,85,108,103,97,116,104,102,94,92,100,102,99,95,94,98,98,104,98,93,91,102,88,108,103,94,114,94,121,110,100,99,98,84,75,102,102,106,97,124,109,95,94,112,84,93,104,102,103,107,113,94,105,105,101,111,113,102,93,104,98,103,97,105,92,99,109,100,103,97,108,95,104,93,93,102,100,100,110,102,107,95,107,101,123,94,99,108,103,101,109,103,106,98,109,94,90,100,99,94,93,104,99,111,95,90,101,112,101,126,98,103,104,118,97,101,104,98,93,102,90,102,109,97,96,110,100,103,113,89,100,110,109,81,94,108,105,114,105,113,94,98,105,105,91,101,107,97,100,101,95,89,90,104,100,104,99,100,109,94,96,109,95,113,104,96,104,102,110,93,109,98,85,100,90,95,106,105,96,95,108,106,97,110,88,104,111,85,108,93,104,109,92,111,89,82,97,102,105,89,117,100,104,109,101,116,80,107,101,102,97,106,90,92,98,105,95,112,71,91,90,104,103,102,105,95,104,102,98,104,101,102,98,91,87,87,102,101,99,101,106,89,99,92,91,92,92,93,105,80,99,94,91,100,105,104,102,76,104,92,103,97,95,94,106,96,107,112,95,101,102,100,99,105,96,99,107,111,102,103,99,95,138,104,103,98,101,96,100,104,85,103,84,102,96,113,93,92,95,96,97,101,106,84,93,102,100,99,116,99,97,96,88,101,101,106,97,105,92,114,95,109,71,102,76,89,89,112,92,84,98,91,87,126,77,106,96,88,98,109,98,97,101,100,86,111,96,90,109,101,97,109,92,101,104,99,96,83,94,91,108,78,100,101,100,93,93,101,108,90,119,76,95,120,107,95,102,76,113,96,95,100,91,125,105,99,88,114,98,105,112,98,98,92,104,92,103,102,99,106,99,102,74, +424.33301,99,104,84,100,91,97,118,106,101,95,94,106,103,100,114,105,93,108,104,102,102,90,91,107,99,101,82,106,117,110,106,90,96,106,103,81,89,106,105,100,100,91,95,92,122,105,108,99,69,100,104,99,90,85,109,105,110,95,102,106,102,97,105,85,93,97,100,101,108,95,107,102,100,94,90,96,99,97,102,97,100,89,88,95,108,102,99,100,110,101,106,100,93,96,101,113,102,99,117,98,107,102,108,101,78,103,97,82,94,100,75,94,100,100,99,96,109,106,101,74,108,97,121,102,98,98,104,128,103,108,108,103,107,99,101,96,98,95,99,106,101,98,103,104,97,94,97,101,100,105,124,94,108,79,95,98,106,106,86,112,97,97,110,115,123,92,97,93,99,98,107,110,93,99,96,113,90,88,109,124,100,101,104,110,106,101,95,100,105,98,88,85,107,108,108,97,93,105,103,104,109,94,93,101,90,116,101,106,113,98,110,96,99,101,106,104,100,98,101,109,103,99,95,97,89,102,98,101,103,102,113,97,105,104,95,109,99,104,107,100,92,100,106,93,97,109,113,110,82,104,99,90,97,103,106,100,88,89,102,107,106,107,89,102,99,103,102,94,98,93,95,105,96,107,104,110,78,118,103,110,105,104,97,102,91,100,99,94,112,101,116,93,102,93,112,110,92,101,87,113,101,95,101,102,106,108,102,96,100,102,94,97,101,92,96,109,103,108,104,96,106,92,101,101,114,97,94,92,114,114,102,99,105,102,104,92,99,99,99,108,104,99,106,97,95,111,113,100,104,97,105,95,103,109,91,105,105,103,104,103,101,87,103,93,110,96,91,110,106,113,110,99,102,100,105,103,107,96,107,102,99,102,102,111,95,90,96,102,102,91,102,104,96,106,98,105,102,94,90,106,106,105,105,110,96,96,92,94,101,99,100,87,92,100,121,93,94,97,108,109,107,87,101,94,99,92,100,108,101,116,94,95,101,96,98,93,96,109,97,105,101,95,102,106,100,95,102,98,107,107,99,108,107,95,100,88,100,99,113,103,89,97,98,110,107,102,113,109,105,70,106,97,101,95,93,113,101,100,102,75,114,95,114,92,100,101,90,94,107,107,103,97,103,98,90,91,102,109,91,90,112,100,92,110,100,108,102,95,103,99,112,95,109,95,103,105,95,93,109,90,104,88,98,97,110,96,98,105,94,93,94,104,110,93,106,100,104,102,93,95,95,104,90,99,104,98,98,95,111,107,94,109,96,92,102,113,96,92,117,108,98,100,97,102,103,105,101,93,92,103,91,101,101,109,70,99,93,109,99,100,104,93,91,97,117,96,107,117,109,103,114,96,95,106,98,108,102,108,106,97,98,101,107,93,97,99,124,100,109,120,104,111,115,107,111,99,95,104,98,106,90,98,105,111,98,95,101,103,95,100,99,96,109,111,95,109,101,82,94,92,94,102,96,90,108,89,97,96,110,121,110,107,100,109,89,111,100,104,98,105,101,98,107,104,100,109,93,98,105,103,101,96,91,94,84,113,102,81,118,92,98,94,103,75,96,96,91,96,95,95,97,114,101,116,98,105,94,105,104,90,95,94,106,96,105,101,93,94,100,96,102,100,101,89,100,106,100,101,96,103,96,101,103,107,97,101,109,105,102,110,104,101,102,100,109,105,97,132,112,93,90,94,106,94,109,94,97,98,118,100,95,94,104,111,105,91,106,95,94,92,104,106,84,111,98,101,91,62,105,112,109,89,104,107,103,94,117,111,109,103,99,109,106,104,100,95,103,109,97,107,105,109,111,98,101,103,113,100,91,100,101,100,94,101,106,102,99,103,105,99,106,109,95,102,91,101,111,110,105,107,84,108,108,103,119,102,98,103,103,95,115,98,99,91,107,109,96,106,114,79,101,101,94,105,98,93,102,101,80,102,99,99,95,95,96,94,96,100,84,96,107,99,107,100,105,104,100,121,99,105,107,93,93,107,90,76,99,92,105,103,101,97,99,101,99,97,104,102,111,102,100,113,106,97,104,104,108,94,102,103,89,102,106,99,95,97,96,106,109,95,100,104,66,103,105,105,79,98,99,87,97,101,108,96,82,112,111,102,108,103,95,96,105,104,105,102,98,106,101,108,96,101,101,109,100,94,90,104,106,107,100,110,104,103,114,100,114,95,97,103,104,108,91,88,115,96,83,93,91,107,96,111,101,103,96,106,96,91,102,108,91,102,109,87,102,93,113,96,103,109,94,119,96,101,94,103,106,97,107,93,110,106,104,101,94,82,113,90,81,116,100,111,92,100,102,104,94,102,91,94,112,100,90,89,104,97,97,96,98,95,104,94,98,95,95,102,94,113,96,90,106,110,100,109,100,107,91,103,88,96,110,97,101,116,98,100,97,95,103,97,102,106,96,103,100,106,98,105,101,99,101,106,96,90,109,96,108,114,96,92,97,96,94,112,108,102,103,104,101,96,101,97,110,88,97,100,99,100,97,94,113,105,100,101,114,104,87,105,99,114,98,104,100,101,102,110,95,111,90,100,108,101,96,100,95,96,96,91,96,91,109,116,89,91,98,104,111,100,94,102,99,69,89,95,89,95,95,105,91,88,103,109,114,113,105,113,100,100,94,94,95,94,95,98,96,103,90,105,108,112,95,102,99,102,103,105,98,90,108,98,92,112,113,98,96,112,106,96,67,101,98,101,92,105,112,124,103,100,107,118,111,98,100,98,107,102,111,115,97,112,101,103,95,108,100,95,98,104,112,97,91,98,109,112,93,131,111,97,111,106,96,96,102,93,102,108,101,108,98,104,110,102,106,95,96,99,114,113,98,109,99,103,106,101,103,99,94,99,107,99,95,101,102,109,98,103,103,98,110,110,107,104,102,109,110,103,95,98,99,113,95,100,100,88,98,110,106,117,109,106,109,97,105,106,106,103,105,105,103,105,87,102,118,98,84,95,92,99,100,99,105,104,88,108,99,107,100,102,114,103,105,103,103,105,102,86,102,102,99,94,105,98,99,113,101,100,102,98,103,77,105,115,94,108,106,110,96,105,107,92,101,105,100,98,92,104,99,101,100,90,103,101,112,101,108,122,103,90,116,91,119,109,109,102,91,116,98,97,96,96,104,102,92,111,109,94,101,103,94,112,104,89,92,99,94,105,94,102,109,97,106,96,113,104,109,104,108,118,98,85,103,103,93,102,100,97,104,98,102,108,110,102,92,92,100,125,99,89,103,105,108,110,105,108,95,95,80,112,107,105,98,100,104,101,101,91,101,101,100,108,99,110,103,100,102,91,103,109,100,103,106,102,98,103,100,100,98,83,110,99,94,102,112,98,92,99,98,117,104,102,93,107,103,117,101,99,98,105,109,102,105,103,98,102,75,96,103,96,110,98,114,102,105,110,94,109,96,87,107,110,89,97,96,103,98,106,107,114,105,88,94,102,101,96,103,97,108,95,84,102,99,103,101,107,99,99,104,111,99,104,95,98,114,103,103,99,116,103,102,110,110,113,105,102,90,107,98,103,99,101,99,99,99,116,97,97,109,97,102,111,101,100,102,102,109,107,105,98,107,84,104,94,109,99,75,99,105,104,98,101,94,105,94,95,113,98,97,104,99,99,93,100,95,108,90,100,111,92,125,99,98,100,102,92,93,109,97,110,105,104,107,116,101,101,92,106,105,105,90,100,102,90,115,101,105,97,103,117,99,86,106,91,92,94,97,103,121,94,108,96,113,91,97,108,101,110,108,102,110,113,110,102,106,96,94,96,102,101,115,112,92,107,94,99,113,102,104,97,104,95,110,93,103,100,102,99,100,100,101,80,104,104,99,95,98,100,103,111,95,95,115,106,108,94,125,104,109,91,110,76,102,96,105,101,100,100,102,92,95,95,97,108,107,102,110,85,106,109,107,97,100,96,111,96,93,106,97,99,98,98,94,102,101,96,105,94,109,105,94,99,105,99,95,82,111,96,86,108,104,116,136,116,96,100,107,74,133,108,113,101,112,98,94,104,91,125,105,105,109,110,109,103,98,102,101,110,106,109,106,97,96,104,112,79,106,107,97,123,101,105,94,97,101,103,113,96,96,108,101,100,95,97,104,111,107,117,112,104,90,96,102,102,93,95,108,100,111,104,101,96,105,91,103,98,102,121,95,92,106,92,110,95,100,112,109,106,96,103,99,75,106,103,99,96,103,103,88,93,92,96,91,111,101,100,102,91,100,116,103,87,95,102,108,100,77,102,99,102,108,105,94,97,110,99,96,103,113,93,91,107,86,101,99,97,103,98,94,102,99,112,103,112,111,112,98,100,96,104,102,94,108,112,105,105,115,95,104,105,101,112,98,102,106,100,103,102,95,78,108,105,101,84,103,97,94,114,104,109,96,96,100,87,99,109,94,104,94,102,103,100,103,104,101,91,101,99,105,102,111,98,88,107,107,105,104,98,105,105,94,106,92,79,105,103,98,98,103,94,90,95,93,99,97,100,109,101,103,91,100,100,77,102,108,102,91,102,95,108,88,97,92,95,95,97,95,103,93,93,97,105,99,109,110,91,106,105,92,106,96,96,90,94,98,104,100,101,111,103,97,99,100,99,90,96,94,95,104,106,101,107,105,98,94,79,94,91,101,110,85,96,89,99,101,97,102,103,101,93,100,91,94,104,91,97,101,101,131,99,100,112,94,103,109,113,100,101,87,93,94,101,96,99,88,91,102,109,96,102,111,103,104,103,91,111,87,87,102,87,103,107,102,98,96,102,99,83,108,100,124,105,104,104,106,97,102,101,103,104,103,102,102,91,91,88,98,91,103,112,105,104,110,106,96,99,96,104,83,104,110,101,103,92,87,97,115,95,108,141,101,82,102,101,100,91,91,99,94,94,92,102, +424.47327,102,98,105,87,93,93,102,100,96,107,86,114,95,125,95,96,97,91,103,97,112,92,105,91,84,102,96,96,104,95,102,108,106,88,113,96,101,94,108,88,100,81,81,104,75,92,102,105,93,100,97,88,97,95,105,105,90,88,115,107,94,100,107,104,87,98,105,104,84,95,97,103,106,98,102,99,102,92,101,92,102,95,102,106,98,93,97,90,98,102,97,97,96,96,104,104,111,97,94,99,107,104,61,101,97,100,101,104,86,115,98,101,101,109,99,93,90,109,92,102,100,104,94,102,109,105,94,98,92,100,95,112,109,99,94,115,93,102,88,90,82,71,98,101,103,92,104,95,112,95,95,100,98,86,99,102,92,93,93,95,71,96,106,95,100,102,109,97,101,133,88,111,92,103,104,97,100,97,106,99,82,95,107,101,105,93,97,104,109,85,97,106,97,96,101,107,95,100,95,97,93,95,96,100,93,95,112,90,100,88,101,104,106,100,115,103,99,112,103,113,101,103,95,92,92,104,104,101,93,96,90,97,99,96,110,97,101,108,99,108,90,105,108,88,102,91,91,91,122,99,103,102,98,100,94,107,89,102,86,102,105,104,102,84,100,96,80,101,111,88,104,98,103,90,112,94,103,100,99,104,109,107,103,100,100,94,94,97,107,104,93,99,99,95,100,101,101,103,105,96,100,93,99,101,96,117,106,100,102,100,98,104,102,82,94,97,92,95,105,97,96,100,110,98,105,97,96,108,99,98,95,105,95,92,104,98,98,101,91,105,105,108,94,98,86,99,99,71,100,99,94,99,98,99,92,103,106,103,96,102,98,111,78,100,106,96,100,98,95,102,108,86,103,109,87,95,107,98,98,99,102,108,99,101,102,99,100,96,102,99,101,95,98,104,94,95,99,102,110,109,99,96,105,103,105,96,108,83,102,86,77,101,109,105,108,92,91,106,100,91,95,104,96,104,94,101,113,91,95,112,89,102,96,91,99,97,112,100,98,102,106,101,109,105,92,133,92,97,86,100,93,105,103,109,98,99,95,112,100,102,95,103,98,99,91,101,106,96,98,104,93,102,91,97,104,99,103,98,100,96,103,101,105,88,114,95,108,105,94,95,87,98,99,95,83,99,85,102,76,82,104,95,101,101,102,99,99,99,102,87,105,104,104,107,103,88,112,103,106,104,107,103,100,101,101,102,108,106,96,100,100,104,101,101,110,78,107,99,95,112,104,109,86,101,101,101,101,97,104,102,95,101,100,101,96,109,102,92,91,102,99,88,104,100,82,112,117,110,96,93,91,87,87,102,99,108,99,95,99,107,99,100,86,97,87,93,105,98,111,112,100,105,86,112,110,114,99,91,101,112,100,99,105,106,78,103,100,109,95,93,104,97,95,98,99,92,104,96,111,96,97,96,97,103,107,101,90,93,88,92,113,101,103,92,93,104,106,91,104,109,111,102,96,74,101,95,100,101,98,102,86,109,101,111,119,111,102,106,94,92,111,104,107,95,101,109,96,104,104,97,95,105,89,98,98,104,114,89,98,99,117,113,105,88,108,94,81,94,100,88,103,98,104,107,100,97,105,96,109,110,101,97,100,100,91,105,97,102,99,102,112,101,102,105,87,102,92,88,112,104,101,93,94,104,103,98,99,93,96,107,100,101,90,104,102,95,108,98,125,100,97,88,92,99,96,93,95,100,91,103,98,97,104,107,109,98,87,102,105,97,98,97,97,105,95,92,100,98,98,98,98,94,99,87,92,102,96,110,97,82,97,102,103,102,112,101,113,103,108,105,102,104,109,110,105,95,104,90,107,96,101,97,101,104,90,121,105,94,97,70,103,97,96,90,95,105,93,100,99,103,96,95,102,103,98,99,109,94,101,99,97,100,106,101,101,99,102,105,90,96,110,102,103,116,102,101,94,90,105,98,100,74,102,101,101,68,99,104,91,98,92,98,94,96,95,102,102,102,107,98,95,113,108,83,100,110,98,100,103,110,95,108,94,103,97,115,95,116,102,100,102,115,97,102,120,74,93,101,101,110,93,86,90,101,101,97,95,99,107,95,89,106,102,105,100,101,97,102,124,106,97,98,108,101,102,96,98,90,93,104,111,95,99,103,97,110,96,96,99,100,97,100,94,102,104,113,103,96,86,98,93,98,104,104,92,101,97,95,97,95,74,95,103,92,99,102,95,98,92,99,93,94,100,109,91,101,97,96,98,108,99,95,96,105,101,83,94,108,97,102,99,96,99,99,108,98,95,110,101,96,112,95,87,108,99,114,103,117,105,86,83,101,110,89,101,92,99,100,99,101,100,94,102,95,112,100,104,92,97,108,96,98,101,90,106,100,97,96,115,95,103,113,99,106,101,110,101,93,96,100,94,107,80,93,100,97,96,105,107,97,95,103,106,94,95,101,100,101,110,103,91,105,105,100,101,101,109,101,91,99,101,102,91,106,104,100,99,97,126,95,94,106,113,105,127,100,102,102,111,99,89,102,101,109,97,96,103,91,114,106,104,103,101,110,99,104,106,104,98,109,121,109,113,85,107,101,104,99,103,93,103,99,96,96,107,97,109,112,101,101,101,101,88,113,103,81,99,100,99,104,108,95,110,105,100,99,106,88,109,106,102,96,105,70,103,107,96,101,117,95,97,107,102,99,95,102,101,118,96,109,108,97,88,111,103,96,98,103,95,105,106,105,109,104,100,96,100,107,95,103,96,99,107,98,105,89,101,101,98,92,101,103,99,99,102,104,102,90,99,106,118,101,98,104,103,95,106,103,102,96,106,107,102,109,104,102,111,129,102,104,110,98,111,102,108,101,103,92,103,100,106,106,103,102,95,104,95,107,103,96,100,111,107,111,111,105,96,114,108,98,109,104,106,101,113,105,110,129,106,98,106,101,98,94,95,96,101,104,98,108,99,97,103,100,113,107,107,99,115,96,112,108,114,97,101,111,100,90,103,100,95,102,100,109,97,106,96,94,94,101,101,98,119,97,107,100,97,103,94,68,104,98,109,99,102,95,95,102,100,124,96,97,99,99,109,104,107,100,95,107,92,104,107,91,104,115,105,102,100,95,110,103,99,92,100,102,99,100,95,81,103,96,102,99,94,102,99,103,90,102,96,90,106,108,101,96,108,107,108,109,93,105,113,113,100,102,95,100,105,99,103,102,95,112,110,102,107,104,99,103,106,92,101,103,105,98,96,106,120,97,121,91,91,91,97,77,84,95,100,97,96,105,116,123,97,94,108,105,105,110,92,106,105,88,95,109,91,75,96,102,90,102,109,108,99,114,116,113,109,93,98,107,101,109,124,102,101,103,95,98,99,97,92,117,105,107,108,117,100,102,102,99,106,105,91,103,96,98,98,97,106,88,110,112,93,84,100,107,108,98,105,101,101,100,103,105,108,100,97,106,105,87,104,99,96,110,95,101,105,101,92,107,99,107,96,100,104,103,111,88,122,97,109,89,97,90,110,103,111,96,102,105,98,105,100,106,109,104,94,109,103,97,115,119,112,107,105,111,107,99,105,113,109,102,101,99,90,94,118,112,96,102,110,87,91,94,99,97,108,100,91,104,100,99,99,109,106,106,99,105,108,115,108,101,107,106,96,101,113,113,104,98,120,105,102,116,99,109,102,100,98,103,103,107,109,88,104,100,106,95,102,102,101,109,107,104,100,79,105,111,104,102,110,103,96,112,94,104,99,104,103,95,112,89,103,109,109,106,114,109,104,99,66,104,96,89,99,103,117,117,107,103,99,102,104,101,120,94,105,105,96,103,105,107,105,95,106,110,92,111,101,98,106,119,109,100,93,104,111,102,98,90,101,102,99,98,103,104,111,88,109,105,103,110,108,88,122,91,95,96,100,110,95,108,104,98,103,96,94,95,104,107,97,92,105,105,99,100,103,113,91,98,98,91,111,104,93,98,108,93,96,104,113,99,102,95,106,85,95,103,106,107,95,111,99,92,121,104,103,99,101,110,110,96,97,95,99,110,102,102,77,100,104,103,98,97,97,96,99,108,95,108,95,92,94,104,90,91,96,87,84,86,114,103,100,102,97,106,105,96,79,112,108,101,100,96,97,110,93,97,96,103,98,107,96,96,96,93,95,100,105,100,104,103,112,110,90,109,103,107,105,94,86,93,107,120,110,98,93,100,95,92,104,114,106,101,107,95,98,99,91,113,92,98,91,92,115,81,111,100,109,90,105,105,87,108,98,105,110,97,89,96,102,83,105,92,97,103,112,104,103,115,94,104,101,98,104,96,96,111,100,102,109,103,103,91,88,102,110,116,106,107,103,97,109,96,96,113,100,103,99,99,103,105,109,105,98,99,119,109,99,102,103,117,98,102,102,101,100,97,102,95,109,103,103,109,99,104,103,102,100,97,98,96,92,105,99,100,103,105,111,102,101,106,82,75,85,104,98,98,109,111,102,105,100,105,104,96,95,89,94,109,89,106,76,93,99,102,94,105,88,107,97,113,101,111,95,87,94,92,98,96,106,95,100,106,103,117,107,95,106,94,98,113,108,89,105,89,109,105,98,96,109,104,106,90,96,94,92,106,95,100,109,107,109,95,104,103,98,113,113,103,99,103,120,98,116,105,95,102,116,116,96,104,112,101,111,100,88,108,88,97,111,104,103,114,100,110,102,107,97,95,100,74,112,98,101,101,102,100,102,109,103,98,100,98,108,98,107,106,90,116,109,106,87,92,109,74,113,101,102,116,102,87,94,102,103,116,110,100,111,111,98,101,104,98,107,101,97,91,116,98,83,91,96,108,94,116,99,104,106,115,98,111,97,97,103,109,107,103,105,100,89,97,103,106,89,103,100,101,109,110,108,98,99,102,107,102,109,105,113,84,110,99,112,137,109,107,102,93, +424.61353,102,90,94,100,109,109,100,92,97,106,95,96,104,109,110,95,108,104,102,98,102,88,96,115,103,93,77,104,99,108,110,105,118,105,94,97,104,93,95,101,93,89,94,98,100,113,96,99,94,108,110,84,100,103,104,101,104,91,105,101,106,91,97,108,105,115,91,108,101,97,91,105,92,97,100,101,90,89,99,101,90,99,96,106,103,102,96,91,90,103,103,95,108,87,108,95,96,101,101,96,96,86,87,87,91,101,83,108,96,117,78,112,105,100,95,85,108,87,95,96,96,110,96,109,87,113,100,92,106,99,90,95,99,96,106,108,92,102,93,96,116,95,123,96,92,92,113,109,103,95,95,103,107,114,92,95,98,91,114,97,103,104,112,106,94,102,111,93,101,96,99,97,97,101,99,110,98,97,98,95,107,97,99,100,101,100,97,95,122,102,101,109,100,111,96,108,133,99,105,100,103,100,93,99,94,105,96,104,111,101,97,107,94,101,96,105,104,99,102,108,113,99,95,94,99,109,104,104,132,104,95,112,113,101,112,107,101,104,107,124,106,102,101,97,95,102,109,116,100,107,103,104,101,104,106,109,96,106,101,107,100,103,89,105,93,104,103,102,107,113,91,105,104,98,103,112,97,110,94,104,108,103,99,100,93,115,94,96,89,94,98,106,112,88,108,114,93,99,101,97,91,125,108,98,96,109,99,106,104,113,104,101,107,100,100,105,107,101,104,92,89,105,104,95,99,94,104,92,110,110,103,96,96,102,111,106,102,87,92,108,90,111,94,97,104,115,112,113,103,103,100,110,97,108,123,100,98,110,95,102,100,86,97,105,90,100,97,103,97,109,105,101,110,107,95,91,67,99,118,102,91,95,103,102,101,93,102,101,110,100,113,93,95,101,102,100,112,90,86,109,99,95,113,92,110,89,93,96,101,110,108,97,92,102,109,107,96,101,113,101,98,105,109,105,101,69,100,92,99,110,94,100,104,87,96,106,96,100,102,91,96,100,107,105,96,95,92,99,102,106,99,104,99,110,87,88,100,81,99,100,103,78,82,99,104,97,112,87,114,100,113,101,93,92,109,97,97,84,99,102,101,100,101,102,85,99,102,113,107,99,103,97,109,94,99,98,96,110,95,108,96,102,98,104,106,102,102,108,105,101,105,102,109,110,92,101,95,96,96,100,105,106,107,104,103,102,99,99,110,113,92,96,104,112,101,104,110,100,106,100,109,108,95,106,107,101,91,104,117,94,93,112,104,106,103,92,105,95,103,101,102,101,94,105,106,106,120,104,113,97,96,104,90,96,103,109,99,105,113,113,114,96,107,99,102,99,99,113,90,106,102,99,104,96,106,112,110,95,122,109,78,100,104,113,98,110,103,108,91,102,103,75,100,105,116,100,100,107,114,101,102,104,96,106,102,86,93,101,104,99,99,103,97,94,94,104,95,95,108,118,108,68,90,103,101,95,87,106,101,95,90,104,100,103,102,97,92,97,99,101,97,105,100,98,100,83,99,93,97,96,103,98,113,100,94,82,109,88,99,99,86,97,98,109,103,107,105,96,108,96,107,114,95,100,99,108,90,97,99,91,86,99,94,98,105,101,97,112,103,102,107,95,100,96,95,99,102,104,96,108,104,95,106,122,103,91,106,100,109,109,108,95,101,102,119,110,96,97,108,96,98,98,96,105,99,98,106,104,109,107,106,92,112,107,103,87,102,115,103,97,109,96,101,99,90,103,104,100,121,109,104,101,99,103,109,99,113,103,95,111,103,108,112,77,95,103,103,99,103,105,110,104,96,100,97,105,97,100,99,100,118,98,100,101,104,99,94,106,98,103,110,92,95,94,100,106,112,102,106,102,99,106,113,95,112,105,83,116,98,99,107,96,110,106,107,96,98,100,106,93,110,90,99,109,102,104,105,99,103,95,109,108,100,106,95,109,93,95,98,88,102,105,105,102,103,102,99,102,114,112,105,90,99,109,96,106,98,91,103,94,103,103,98,91,100,103,100,107,107,103,106,104,111,99,100,97,96,102,93,107,111,89,106,92,106,94,99,102,110,94,111,104,108,98,104,100,104,118,101,105,98,108,104,106,107,102,100,100,113,102,99,109,97,108,95,102,98,100,102,109,98,108,95,95,110,102,105,110,107,109,97,105,108,113,87,115,114,98,93,101,110,72,99,95,111,84,101,98,96,104,129,112,105,92,105,92,103,98,100,84,106,102,91,97,88,111,95,100,105,97,104,103,93,94,106,92,97,99,96,105,114,105,109,96,111,98,100,90,104,103,94,97,88,98,94,110,103,92,100,93,98,92,109,86,110,90,100,101,86,95,98,91,89,101,93,92,103,111,100,96,81,101,99,96,98,105,99,94,92,94,114,102,115,106,83,94,88,97,99,95,100,106,110,97,97,94,94,104,91,90,97,106,99,97,102,99,104,116,99,100,102,112,91,102,106,101,96,92,114,107,104,84,109,102,95,97,102,103,94,100,101,96,95,91,98,102,103,100,102,101,100,92,83,98,89,87,112,112,95,109,99,107,109,103,95,96,102,111,116,108,98,102,96,108,101,100,106,95,99,91,89,116,102,97,96,102,104,98,113,98,122,97,103,104,111,111,120,98,102,100,106,86,102,89,104,98,98,93,105,110,105,96,97,97,90,98,103,94,108,110,107,104,90,103,101,105,106,94,103,105,108,108,103,107,100,108,98,95,109,95,87,113,90,93,112,111,104,116,93,101,101,100,103,111,108,106,107,102,101,102,102,105,109,100,105,105,92,103,106,103,118,105,101,104,116,93,102,108,106,103,108,98,111,105,104,93,99,106,104,105,114,102,98,104,95,96,106,92,93,112,103,92,105,79,103,108,85,95,82,108,110,122,109,99,100,91,88,87,104,108,94,105,102,105,98,103,101,119,108,99,95,112,113,99,112,102,117,113,103,104,103,109,112,114,92,81,102,108,97,96,92,98,114,99,105,109,91,107,105,106,95,99,96,110,104,103,95,120,101,109,103,88,108,88,103,96,113,95,95,108,100,112,109,84,98,102,105,93,121,112,99,104,104,108,91,95,101,104,96,105,104,100,90,109,112,105,110,97,105,84,101,93,103,117,128,101,100,101,108,102,95,95,90,106,91,109,103,109,107,110,109,94,97,64,90,100,107,103,108,101,106,102,105,103,121,105,99,88,105,100,100,99,110,101,105,99,98,100,99,106,108,97,107,96,94,95,113,103,100,83,118,104,98,104,106,105,97,104,106,113,104,90,109,94,97,106,111,100,103,95,98,100,97,108,113,107,109,99,105,99,93,109,99,101,104,101,91,109,108,93,97,103,95,96,104,103,114,99,108,105,114,92,102,97,102,95,88,102,111,106,102,94,104,112,109,101,94,105,101,94,91,105,100,111,106,104,109,94,107,102,101,98,98,105,99,109,102,100,114,103,110,111,111,108,102,108,106,99,99,102,106,102,107,104,95,101,108,100,113,99,103,109,104,106,116,105,106,92,92,97,104,100,88,99,100,124,111,116,99,103,89,113,105,97,112,124,104,92,86,100,95,108,106,99,101,112,108,99,105,96,90,97,90,94,105,98,100,113,90,108,102,101,109,91,87,97,99,102,100,95,103,90,108,98,108,101,92,100,102,110,91,109,107,113,91,100,76,109,109,106,108,109,101,120,109,95,99,103,108,88,99,117,103,97,102,88,83,103,106,88,107,104,101,99,110,96,100,106,117,98,113,98,100,99,109,99,99,115,106,112,104,98,103,98,90,87,96,87,126,88,105,107,104,106,96,102,96,109,97,102,104,97,98,96,100,102,97,103,93,99,110,106,86,104,93,98,109,104,111,100,89,99,104,100,95,108,109,102,105,91,102,100,103,95,101,102,97,102,104,104,112,112,101,95,93,87,115,105,101,102,100,97,117,78,98,101,94,106,107,118,108,103,95,95,98,104,106,103,92,107,113,102,99,101,107,95,102,97,96,104,116,99,99,105,116,112,96,108,106,104,100,101,102,94,108,101,100,96,109,99,92,103,93,99,104,114,94,102,103,97,104,90,102,104,103,108,108,93,99,84,92,106,100,97,98,84,97,112,88,106,110,111,93,91,108,104,111,98,98,107,95,68,87,83,108,116,100,107,97,96,93,110,95,92,74,103,106,102,117,101,92,115,104,101,97,106,95,103,102,101,98,106,119,98,100,104,100,91,92,99,108,98,109,87,94,106,102,98,102,87,132,141,113,108,102,99,108,105,102,115,91,95,110,109,116,98,109,95,94,99,120,115,103,107,106,91,98,109,102,112,101,94,105,100,113,91,99,96,91,88,101,105,83,93,94,103,102,101,99,102,100,109,104,100,102,106,104,102,99,93,102,103,102,99,115,99,94,101,99,91,113,101,94,95,97,105,98,108,103,103,96,95,97,94,109,100,99,105,102,97,108,91,113,98,113,101,99,110,100,105,110,94,104,108,103,109,107,106,106,109,93,91,102,75,125,91,116,100,92,101,98,89,96,92,97,108,100,107,111,91,81,100,97,90,104,91,101,97,97,85,96,112,105,95,112,106,103,119,85,100,99,90,91,108,105,99,106,95,103,101,89,99,97,105,97,97,104,109,94,99,107,97,104,107,113,106,108,95,113,90,102,105,100,91,105,97,97,114,96,107,101,98,100,102,101,108,97,108,100,100,96,113,108,92,104,107,103,100,76,106,109,110,99,104,98,94,99,96,102,103,114,96,93,101,95,112,98,110,107,96,88,95,100,100,101,91,96,98,109,108,95,93,93,97,97,112,92,89,96,99,109,111,100,110,95,99,88,115,100,112,109,113,92,106,98,108,93,81,97,94,99,102,96,100,100,109,115,98,102,101,102,100,104,107,76,104,95,97,96,100, +424.75378,115,82,105,103,99,87,90,109,94,116,99,110,96,92,107,114,96,96,104,96,106,99,100,104,93,94,106,99,102,99,90,103,94,78,113,86,101,93,94,82,90,80,72,101,106,106,102,99,104,118,97,95,107,99,85,104,106,90,109,96,102,110,100,103,105,101,92,107,110,108,108,101,98,106,86,104,110,102,108,106,98,97,103,102,99,104,96,101,96,99,107,107,105,103,97,94,104,101,101,99,112,97,107,100,92,102,88,101,93,105,94,100,100,101,109,99,74,99,122,95,95,91,113,111,72,99,110,90,99,102,95,102,99,95,110,96,89,107,90,93,90,101,97,99,109,109,102,100,99,84,116,74,113,98,87,103,97,111,92,96,97,103,107,99,85,103,95,96,103,101,110,101,102,104,90,108,99,87,94,101,98,117,93,96,104,117,103,90,111,97,103,99,108,102,105,105,92,102,109,97,103,103,106,90,89,100,93,98,98,98,99,99,106,106,96,97,104,102,108,113,107,100,112,83,102,102,107,109,100,107,105,109,80,109,105,99,104,111,93,91,99,97,94,110,95,99,116,96,114,109,104,106,107,95,106,108,97,106,109,113,93,98,97,110,86,105,98,95,111,98,110,91,99,110,90,110,101,113,95,95,92,105,96,105,106,95,102,108,109,97,108,91,117,91,109,101,96,105,100,110,94,104,100,116,97,104,105,101,110,110,98,126,109,110,98,95,102,104,100,100,110,95,110,103,100,113,97,91,107,106,105,101,103,95,111,87,98,103,87,104,93,99,67,97,98,113,100,95,102,104,114,99,103,103,102,96,102,108,106,94,97,109,103,98,101,101,107,114,105,105,106,93,101,107,116,93,100,95,90,99,97,110,92,104,109,96,111,98,102,100,107,100,85,110,94,100,103,102,98,108,93,102,96,100,108,90,94,107,101,98,100,107,104,101,103,106,95,101,94,105,107,90,103,99,103,96,92,104,92,107,108,94,97,104,103,100,110,103,90,105,94,108,101,103,95,99,95,91,103,91,104,105,97,113,99,99,92,101,99,94,96,84,117,104,100,120,102,110,90,105,107,106,101,101,78,99,113,102,106,106,100,100,108,107,99,92,103,104,103,108,104,103,109,87,109,92,97,107,102,118,99,100,100,101,106,103,64,104,107,95,99,117,98,115,140,90,98,100,106,105,108,99,94,100,95,102,94,115,99,106,101,107,105,109,101,94,100,84,103,103,102,109,103,105,109,105,99,89,118,110,100,92,113,104,102,101,113,94,101,99,96,103,93,90,105,107,101,110,91,104,96,103,103,98,96,94,113,113,99,108,95,101,105,100,96,95,103,109,93,101,105,115,98,119,114,102,95,96,105,94,91,107,113,101,98,116,102,84,105,112,94,87,92,101,99,117,101,102,96,103,88,103,104,100,112,104,103,99,105,110,104,101,108,109,97,97,105,100,103,96,123,90,101,93,100,92,102,97,95,103,98,96,113,101,113,101,98,97,103,94,107,98,87,111,104,88,110,98,110,104,69,101,92,106,102,109,101,100,113,92,105,99,108,98,118,99,103,106,99,102,108,102,102,108,102,97,105,98,115,109,97,101,109,99,108,108,91,110,97,99,98,101,98,91,101,99,109,101,105,99,96,83,94,99,92,103,104,104,99,101,99,103,103,91,102,107,95,93,104,103,117,105,93,100,98,100,108,105,96,96,102,104,99,104,108,101,95,101,105,103,105,116,92,96,95,102,103,99,95,97,70,103,117,117,98,97,102,103,80,107,104,102,100,102,102,100,96,100,98,79,102,111,112,106,109,96,94,82,108,94,79,96,96,98,114,92,101,106,97,91,107,108,110,102,104,101,113,105,100,104,110,108,101,105,98,104,84,102,101,100,103,95,99,100,103,103,106,96,122,106,90,82,108,106,85,93,100,105,91,105,106,102,110,93,109,98,104,114,103,98,113,99,99,102,100,82,85,102,100,102,112,85,102,112,87,103,102,94,101,102,96,106,114,100,112,97,96,102,75,94,98,105,107,99,113,83,92,101,100,119,107,117,114,97,116,85,97,99,104,100,97,114,114,97,93,100,97,102,98,102,112,102,109,104,79,101,102,106,100,99,109,113,108,100,96,110,107,95,99,102,104,117,93,103,103,109,89,105,99,107,103,90,101,103,106,104,108,111,87,96,110,112,96,94,108,106,113,98,107,100,96,106,110,105,100,109,96,93,106,99,103,103,102,103,97,107,89,101,108,95,104,98,85,101,83,102,92,111,105,98,99,105,104,105,96,98,104,104,96,109,92,76,90,97,108,95,108,113,100,99,109,114,109,96,99,105,103,106,112,90,109,95,107,99,101,67,99,106,103,95,93,104,97,94,97,99,75,96,86,106,95,104,98,104,110,100,103,111,116,107,103,101,102,98,73,93,93,96,107,91,103,108,108,98,93,107,105,105,88,95,97,102,91,106,105,98,99,88,101,103,113,95,102,103,88,98,98,94,97,99,102,106,99,112,99,105,101,99,115,118,102,103,84,110,104,98,95,98,95,108,103,98,102,102,88,101,105,105,107,96,94,108,105,98,97,103,108,106,85,91,108,88,96,108,100,97,112,97,100,87,107,100,103,101,102,100,102,104,103,98,103,97,96,96,109,105,105,89,105,99,100,96,106,101,115,88,107,108,105,97,99,104,104,92,89,106,120,107,95,105,102,92,93,107,106,106,101,101,103,104,106,108,104,106,112,99,100,109,102,109,100,96,100,97,107,111,106,110,104,94,111,111,113,95,107,100,102,108,102,106,117,108,106,112,86,80,101,105,111,107,102,79,104,94,96,107,108,113,101,102,99,105,97,98,103,100,99,112,103,105,103,108,102,90,93,92,82,103,103,110,104,90,103,107,104,93,100,99,99,120,92,84,105,106,107,102,103,99,95,107,66,93,105,102,96,113,107,81,109,90,99,103,91,93,97,109,107,98,92,101,104,105,99,105,112,92,105,94,101,101,104,87,101,100,109,107,111,101,109,130,94,102,109,115,102,104,99,105,91,104,101,107,112,104,92,95,97,103,89,105,93,111,109,103,103,101,100,99,105,112,98,113,107,97,98,118,103,101,107,80,100,117,101,99,113,99,104,104,102,95,97,100,86,91,92,97,98,93,94,96,102,93,97,100,103,98,104,103,101,101,99,94,101,107,98,98,101,102,105,127,106,101,100,100,96,101,105,109,107,99,110,104,96,92,100,90,104,101,103,89,106,100,107,106,104,106,98,115,96,106,109,98,116,105,111,97,99,106,108,95,102,102,101,110,100,103,110,108,86,103,99,88,92,93,103,109,89,92,100,114,104,115,98,109,103,100,98,101,101,97,103,112,110,101,107,97,91,87,94,107,110,104,114,99,115,112,98,105,102,105,100,100,96,102,109,104,98,95,103,95,101,87,107,108,98,109,108,108,105,118,100,100,84,86,101,98,103,107,94,90,107,100,104,100,95,86,94,107,104,117,105,112,112,101,124,98,100,106,102,101,104,99,82,112,108,100,113,98,104,108,108,97,94,94,108,103,129,101,100,110,116,95,103,88,119,97,103,97,117,91,108,106,98,99,89,101,103,102,107,108,95,98,76,100,97,79,106,101,105,93,111,117,104,111,99,103,112,93,95,109,94,97,92,108,98,100,109,106,107,95,95,102,99,97,85,71,110,99,111,104,102,113,100,96,109,99,98,113,89,91,103,104,100,91,104,105,101,121,111,96,76,100,90,90,97,118,119,100,110,95,109,101,116,79,87,86,100,97,113,93,93,100,108,108,101,103,102,100,98,109,107,93,102,98,97,90,108,87,105,103,102,101,115,99,124,98,112,101,101,104,100,92,100,94,95,82,101,112,98,112,109,106,100,106,105,101,104,105,98,104,109,67,110,108,104,99,113,94,108,86,111,91,114,96,101,110,100,98,94,92,109,99,101,112,121,96,103,94,99,104,115,97,108,106,101,94,106,102,107,103,103,91,107,98,96,99,91,106,102,102,124,107,103,90,102,96,84,97,112,109,103,109,96,108,102,103,106,95,102,95,105,90,106,96,94,103,107,95,100,94,107,92,99,96,105,116,93,102,99,104,102,112,101,102,101,105,110,96,100,107,94,105,98,105,92,114,101,105,89,90,108,102,97,91,101,95,95,102,98,95,97,100,95,107,99,99,101,100,105,107,107,97,112,98,104,101,105,95,96,90,108,102,108,100,103,99,90,109,87,111,94,110,117,91,104,98,101,101,100,93,97,102,108,98,97,113,102,110,101,102,101,98,105,107,104,99,109,106,99,107,106,93,101,107,113,105,94,101,102,104,112,104,117,112,90,109,98,104,98,97,108,113,105,101,94,99,102,101,98,100,106,112,96,101,104,104,101,122,101,99,98,89,104,98,94,104,112,99,107,97,104,98,104,98,94,102,107,102,110,102,104,98,102,105,114,116,98,101,103,91,110,96,123,106,103,103,119,106,102,94,97,98,100,93,107,94,110,94,102,94,124,98,98,100,97,106,108,98,112,100,102,98,101,97,99,103,111,91,81,104,94,113,105,94,103,104,97,104,112,94,107,91,105,101,113,103,95,107,93,104,108,105,101,100,115,102,103,97,100,95,103,92,109,95,106,103,109,98,112,103,77,91,105,102,88,100,109,99,110,103,100,95,91,104,111,93,115,108,102,99,103,105,109,98,105,101,90,90,92,91,102,96,85,98,91,105,101,103,97,100,102,95,95,96,101,91,90,108,111,98,102,101,87,111,94,99,108,104,103,103,92,97,95,99,94,110,86,103,100,106,99,104,94,117,108,108,99,102,108,116,101,91,107,104,111,102,90,100,98,97,109,92,103,95,100,83,96,98,105,100,101,96,99,104,84,85,98,102,102,101, +424.89404,99,97,109,102,95,97,103,96,93,100,108,99,99,100,91,102,106,108,94,99,102,97,104,104,102,110,103,101,95,100,90,99,95,88,111,111,116,97,96,87,101,101,97,126,100,103,99,100,100,96,96,104,101,113,89,83,106,101,105,102,100,111,91,95,94,95,96,100,91,96,97,106,102,101,92,105,96,95,109,98,102,97,106,102,95,88,108,103,98,97,99,109,107,94,103,101,117,99,101,99,99,103,101,90,96,93,93,101,102,76,103,100,101,92,109,105,96,91,108,102,98,106,98,100,96,107,112,91,112,106,104,110,93,97,91,84,99,103,90,98,101,101,98,101,78,98,104,122,98,99,98,99,104,99,91,107,105,85,98,117,97,96,101,103,108,98,104,98,110,106,104,102,112,90,112,74,100,112,99,98,86,100,107,94,93,84,102,97,81,95,88,106,101,110,99,106,100,104,86,100,94,96,92,108,99,101,104,99,111,103,104,108,105,99,110,106,96,99,101,92,98,108,97,98,102,104,105,99,95,99,112,101,102,99,102,103,94,83,114,100,97,97,117,98,102,96,104,102,104,101,103,94,106,111,102,109,110,98,97,101,101,103,102,100,97,102,96,105,103,104,117,77,114,90,101,106,105,118,94,91,112,103,99,109,88,100,106,100,99,106,94,100,100,89,109,100,112,113,116,127,104,98,108,105,91,105,117,101,100,107,106,102,95,100,108,104,106,99,106,97,97,90,104,99,102,105,93,97,108,108,101,103,99,94,109,109,98,95,100,104,94,100,102,95,94,108,101,109,99,107,102,103,118,107,97,105,96,103,104,113,105,102,105,107,102,98,98,110,102,103,111,103,102,97,99,104,100,123,94,108,105,97,107,104,100,90,107,94,115,103,117,96,109,94,95,99,86,94,102,102,97,90,96,92,108,101,101,101,104,93,96,96,95,106,99,109,110,108,103,102,101,90,97,105,98,103,97,90,83,106,103,113,104,114,100,100,112,113,98,104,108,109,95,103,89,105,102,93,105,106,97,85,105,103,103,108,103,107,94,101,93,103,102,115,99,100,113,99,96,78,98,90,97,100,104,105,109,99,110,100,103,98,103,99,106,95,98,97,104,93,102,101,105,97,97,109,96,100,109,101,100,89,99,91,102,107,98,100,105,102,92,104,99,117,109,111,106,105,97,93,98,87,102,108,96,105,107,97,94,105,102,97,87,104,101,89,102,88,94,99,103,106,88,105,94,102,118,91,107,102,98,93,116,95,103,87,105,91,100,113,102,102,104,103,98,104,98,114,104,105,104,102,108,108,85,109,103,92,97,100,91,100,107,112,99,114,109,108,102,111,95,101,109,107,109,121,107,104,117,110,105,109,101,93,101,103,77,107,101,106,104,117,109,110,103,101,101,104,89,89,90,108,100,102,108,99,101,108,112,105,100,94,93,100,95,97,95,104,110,94,114,99,101,102,100,106,104,99,107,102,99,105,86,105,95,108,95,105,96,109,109,98,113,100,94,103,110,95,109,115,103,91,104,102,92,73,105,109,91,101,101,95,111,103,101,97,122,99,99,100,114,99,99,109,86,103,104,93,104,100,117,102,101,104,108,79,114,91,101,98,103,104,99,90,87,109,109,107,102,86,102,106,105,105,104,99,83,103,101,99,105,97,97,95,96,102,103,96,113,109,103,89,103,106,98,100,105,102,102,108,106,96,109,91,102,90,106,101,102,111,95,97,97,103,86,119,108,109,114,93,101,105,109,108,106,95,102,96,90,95,102,108,102,104,103,100,88,113,92,105,92,99,90,110,94,98,91,107,104,105,101,100,88,97,103,107,101,95,96,91,96,89,102,98,103,111,113,106,109,96,105,105,91,101,113,117,111,103,97,109,95,94,116,106,103,96,103,101,99,96,94,105,97,100,86,84,108,101,99,96,101,87,108,105,102,105,104,102,92,109,108,105,106,100,99,103,93,100,120,103,96,114,97,103,95,100,113,104,108,108,113,100,108,97,104,103,89,102,101,113,101,106,90,101,101,100,105,106,100,112,99,104,114,104,113,95,100,98,102,112,103,87,119,94,105,99,102,101,101,108,105,97,105,103,101,97,104,100,100,103,107,100,98,106,96,91,87,105,100,114,99,103,102,71,106,94,100,110,101,103,104,98,104,114,101,104,106,100,106,100,113,95,99,105,103,98,89,91,99,105,96,101,102,110,110,106,106,105,89,112,96,103,98,101,122,100,80,101,109,100,106,107,117,99,101,100,101,102,97,99,101,99,106,100,98,102,103,90,88,91,87,109,105,109,102,102,98,99,101,97,112,104,101,100,101,104,100,91,91,96,103,105,103,110,101,107,101,103,108,100,102,105,101,100,98,95,100,96,94,100,102,102,104,104,91,98,96,74,96,111,100,113,77,109,85,108,89,102,110,96,98,105,98,110,92,120,91,99,106,104,93,99,109,106,113,95,101,100,108,102,106,99,99,98,93,95,99,104,109,98,97,95,100,117,97,108,96,106,112,102,107,91,111,94,104,94,94,99,92,113,108,91,99,103,107,120,107,111,103,97,100,109,101,97,102,109,94,113,98,107,99,99,104,117,96,99,97,103,97,97,88,110,113,97,96,93,108,113,95,109,95,93,111,87,90,136,114,99,104,93,106,116,105,101,98,103,104,93,102,100,100,100,96,121,106,104,105,109,102,96,117,98,99,114,106,114,114,99,102,100,108,105,114,100,106,99,108,117,113,83,101,104,87,117,101,112,109,103,101,101,112,104,87,99,95,100,104,100,104,97,98,99,92,110,99,107,104,109,107,108,94,93,103,98,94,92,111,107,107,112,107,114,106,100,94,101,104,103,99,111,106,112,102,109,123,113,119,108,111,112,98,102,102,116,103,111,109,99,104,108,111,104,113,99,110,106,93,112,110,104,117,110,113,96,98,118,99,113,105,98,105,100,106,98,102,97,109,111,104,84,102,106,102,106,108,102,102,109,94,96,115,95,113,113,112,105,102,107,103,102,118,94,117,99,95,106,102,109,101,110,98,99,102,92,109,107,104,106,95,102,99,101,89,108,92,83,115,103,105,95,106,119,101,101,136,92,99,104,97,99,99,107,103,102,113,104,110,101,95,102,108,94,105,87,111,109,109,115,96,98,105,101,118,103,81,99,104,113,103,97,108,105,102,102,94,101,105,103,117,96,108,130,98,110,95,93,97,108,91,109,101,84,104,104,111,111,108,99,100,99,101,94,109,110,99,91,98,110,99,97,103,103,112,101,111,102,106,98,105,97,98,94,105,103,101,104,113,105,99,94,104,96,99,90,128,103,95,94,101,113,111,104,100,97,106,104,112,109,105,95,92,91,89,95,107,104,104,109,83,112,104,96,100,95,104,99,102,104,108,105,99,85,109,94,103,106,104,98,116,120,104,93,105,107,101,105,93,104,97,87,97,104,94,105,82,106,106,110,96,106,106,113,112,94,92,104,117,102,98,101,113,112,107,111,104,102,112,113,124,91,108,107,109,104,109,114,126,106,110,101,97,101,105,108,103,94,100,101,110,99,109,105,102,111,113,106,107,109,98,96,93,108,102,98,112,107,107,102,92,101,89,101,105,99,103,100,106,103,103,116,103,108,104,102,115,91,133,110,115,106,100,83,104,117,93,107,98,103,100,103,106,100,109,86,112,105,78,99,107,107,102,112,106,105,107,100,98,104,97,100,99,99,96,96,104,103,105,113,95,109,106,90,109,97,108,98,110,99,105,112,108,110,107,112,101,105,106,90,110,102,100,102,97,104,108,99,100,105,106,104,108,103,117,108,95,103,96,96,95,104,107,93,108,100,105,95,102,102,99,101,92,109,105,120,95,107,102,111,94,114,102,104,103,104,106,96,89,115,93,102,98,90,110,103,96,109,102,110,98,102,61,103,95,98,102,103,99,102,104,109,103,105,92,111,101,119,128,101,96,99,72,106,103,106,111,99,101,115,105,108,103,83,105,105,97,108,95,92,108,133,111,110,112,123,93,99,108,103,105,101,106,108,107,101,104,93,98,100,104,117,106,95,96,107,103,104,104,110,119,98,110,108,98,98,113,112,99,117,99,112,110,111,87,111,99,105,112,97,101,109,127,97,102,103,97,98,102,112,104,117,105,101,102,105,95,105,100,97,97,106,103,97,108,108,102,96,102,103,99,106,103,129,88,96,107,92,94,121,109,95,104,103,102,89,92,99,99,105,108,103,103,101,112,105,101,100,99,101,111,112,112,99,95,109,101,117,100,106,117,105,99,103,109,104,95,104,94,97,99,116,102,106,107,99,99,117,114,111,103,107,117,102,107,100,104,112,107,106,109,106,106,105,102,102,100,107,103,101,86,107,105,102,104,100,105,108,107,102,122,109,97,93,111,83,88,105,119,102,109,107,110,106,97,94,80,94,92,88,95,103,101,109,108,104,112,83,104,95,91,110,111,96,112,107,105,102,98,104,106,108,101,102,117,111,106,96,98,108,100,102,81,90,98,99,103,111,102,93,103,99,98,101,94,105,105,107,97,109,108,91,105,109,106,103,97,91,107,99,83,90,101,106,94,101,103,83,103,91,103,108,99,101,100,109,94,106,112,103,104,107,110,113,104,109,91,99,96,81,112,107,101,98,100,104,99,100,107,100,110,93,104,115,99,116,105,109,110,102,109,104,111,100,101,107,100,87,106,105,106,101,99,95,92,100,100,109,109,87,102,108,99,113,112,103,109,103,96,88,102,101,118,109,115,105,113,104,96,103,108,93,115,107,105,109,98,105,84,110,95,114,104,105,108,86,100,100,113,110,94,95,95,99,101,102,94,101,102,102,98,85,110,107,101,89,79,101,96,108,88,99,103,95,97,107,103,105,104,100,103,86, +425.0343,95,123,102,84,95,115,101,105,103,120,98,105,95,97,101,99,94,101,98,119,93,98,104,99,104,100,95,100,97,101,103,100,98,108,106,87,95,97,112,97,101,107,94,99,106,97,107,101,107,110,107,96,102,115,107,96,105,107,101,101,99,99,95,95,121,109,106,103,109,92,104,106,105,103,102,115,103,99,103,117,108,100,102,99,100,90,103,103,92,115,104,106,95,107,99,99,99,97,97,90,106,97,100,91,101,90,109,101,108,79,96,90,80,98,101,81,95,110,103,107,106,113,97,112,97,105,99,91,99,112,113,107,90,84,110,102,101,105,91,97,106,94,100,92,98,107,106,98,90,106,92,104,105,87,98,103,91,92,95,102,102,102,106,104,96,99,94,91,104,102,97,109,97,106,109,98,100,89,114,113,112,115,101,101,100,90,108,96,108,91,113,112,133,115,100,94,104,105,97,100,100,104,103,98,100,98,108,91,109,107,97,103,109,83,106,92,97,108,101,96,96,95,104,102,108,90,108,88,92,109,97,104,97,106,100,110,99,105,93,106,95,110,106,104,105,105,95,103,97,110,100,107,105,104,100,97,92,93,108,96,88,104,103,100,105,115,106,98,98,95,95,96,112,103,113,107,90,104,99,103,104,103,120,95,99,95,91,98,95,104,106,104,108,116,107,87,101,93,109,111,114,98,101,101,87,91,109,112,98,109,104,102,110,96,97,109,95,121,100,114,104,111,95,90,100,97,93,100,116,107,100,97,89,106,82,106,114,88,104,107,102,104,92,97,110,103,110,113,77,95,99,100,106,108,108,109,109,117,97,105,96,95,100,105,112,103,115,104,93,101,88,106,111,104,102,112,95,103,90,105,99,103,109,99,94,104,107,100,101,97,101,103,99,90,99,101,102,79,90,84,89,105,100,105,93,98,105,104,96,107,90,96,98,102,105,100,99,100,115,114,101,95,106,114,97,105,98,102,100,102,89,99,101,94,78,103,95,104,100,101,104,97,99,130,103,106,100,98,103,105,97,105,105,109,97,105,105,105,111,100,99,102,120,95,100,101,102,105,110,106,91,96,102,100,108,106,115,100,106,118,103,104,104,101,85,106,98,101,100,108,104,105,102,97,107,98,112,92,108,105,103,105,107,107,125,114,95,97,105,113,105,113,103,106,105,100,96,105,90,96,98,83,111,96,104,108,103,85,109,108,99,108,100,106,105,103,108,97,102,107,105,109,104,94,106,107,115,91,104,89,104,108,102,95,106,96,109,95,107,93,104,102,110,99,101,108,109,97,95,100,101,90,98,107,118,104,100,108,97,115,99,88,106,102,103,98,111,110,107,98,114,104,107,107,113,103,92,95,115,101,100,102,95,101,91,105,102,110,97,93,99,108,104,104,90,103,79,102,117,109,110,100,100,87,101,100,99,97,105,107,112,98,99,116,94,93,110,99,122,98,104,98,100,103,106,109,103,102,105,109,97,95,114,97,97,111,104,102,95,104,74,99,98,106,100,108,101,91,105,103,99,97,109,101,104,110,104,107,95,99,107,97,106,94,101,96,92,110,96,102,114,106,99,99,113,98,98,91,97,118,92,94,104,103,104,106,104,94,94,102,110,104,92,92,103,97,98,102,103,96,106,96,99,121,96,99,109,104,107,112,105,110,103,104,94,99,115,97,107,95,100,105,94,106,99,100,104,103,102,103,111,98,103,105,107,98,107,79,115,106,107,91,104,96,92,118,111,107,105,103,103,93,102,76,89,110,102,95,108,81,108,105,108,109,101,104,113,98,107,108,95,94,94,101,103,96,103,105,106,100,98,99,91,108,107,113,101,104,115,101,105,100,99,104,101,97,117,102,107,97,94,106,97,98,106,103,98,100,108,98,107,92,109,100,93,104,102,95,78,96,100,91,109,95,96,135,112,94,98,94,115,105,96,104,90,91,96,95,105,136,97,100,105,105,99,106,92,104,109,104,102,104,90,105,107,105,100,91,107,109,101,103,94,109,103,99,98,129,108,101,105,103,107,107,106,95,85,114,109,107,108,110,105,91,114,111,102,106,99,93,109,103,88,105,109,95,94,94,101,94,103,104,104,71,95,90,106,111,98,101,100,96,101,111,97,104,106,98,105,119,109,103,110,114,105,105,94,116,108,104,97,112,105,107,104,112,105,96,102,82,104,109,100,100,105,87,94,112,102,105,97,94,102,105,109,100,112,101,99,107,104,103,99,106,122,80,104,104,99,108,112,108,109,105,97,110,95,94,86,96,88,100,97,100,110,99,101,97,99,103,99,94,93,108,109,108,106,105,100,97,102,113,102,94,101,101,111,109,101,91,98,96,100,104,98,106,94,94,105,102,108,90,89,89,101,109,109,111,100,90,95,107,121,100,110,98,100,106,99,95,96,103,99,95,94,108,93,98,100,105,118,116,95,109,107,113,115,86,93,106,103,90,97,87,94,103,98,99,113,103,113,117,105,91,103,94,117,93,96,103,100,105,98,95,80,105,99,110,109,101,104,116,91,93,98,109,100,109,76,104,107,105,95,97,101,99,104,95,111,93,110,95,107,91,102,105,94,75,113,98,99,96,94,98,97,101,84,101,110,93,104,105,117,106,101,101,98,111,103,103,107,99,107,95,102,107,109,102,101,95,100,113,105,107,113,99,102,100,107,103,100,85,92,120,96,93,113,91,94,112,109,104,107,109,96,105,100,106,103,114,107,99,105,91,104,101,104,102,102,91,128,101,95,108,105,101,96,104,116,108,109,117,99,106,113,106,103,129,101,103,95,88,106,120,107,103,104,115,102,109,96,105,109,88,103,104,103,101,117,99,95,93,106,90,94,100,99,105,88,104,110,96,97,107,92,109,102,91,106,118,104,105,102,109,103,121,98,99,93,95,105,79,105,109,105,109,97,99,104,113,98,109,93,109,110,96,88,95,90,104,97,97,89,97,102,108,116,109,98,112,113,98,90,96,109,89,102,103,99,99,97,113,110,95,109,100,110,94,109,108,91,97,108,113,119,104,114,99,91,113,106,107,106,78,98,96,106,106,95,103,105,105,94,118,97,113,104,105,103,105,104,105,112,99,96,99,96,100,96,92,86,108,109,115,103,95,108,110,107,104,114,105,108,102,108,109,106,107,97,94,106,109,94,96,111,105,94,109,100,104,104,96,101,98,108,100,104,94,97,97,98,87,101,106,102,86,100,95,98,99,95,98,102,102,95,109,101,97,110,96,98,94,106,131,104,101,98,105,109,89,91,107,102,104,95,104,115,95,113,104,106,98,110,105,105,101,102,112,111,91,107,98,113,94,96,111,92,107,95,97,94,109,91,95,100,99,115,95,112,98,92,100,98,103,105,108,99,98,94,105,110,82,94,107,108,92,107,99,113,94,101,98,106,99,96,121,101,103,106,110,104,99,97,104,98,102,113,111,93,94,108,93,98,91,95,100,95,94,91,100,83,100,93,109,104,105,109,103,108,102,103,105,110,110,101,100,103,104,105,87,117,102,109,115,101,110,98,109,98,100,106,97,115,104,96,101,110,104,112,107,109,101,104,95,108,106,116,103,105,90,93,98,103,99,87,109,113,113,90,104,99,112,104,101,111,98,94,115,100,121,101,109,103,98,108,92,95,98,101,113,102,105,97,112,87,99,93,110,107,99,117,111,80,117,112,106,108,100,98,103,97,106,104,108,104,87,96,111,102,105,97,125,108,97,112,105,100,99,102,104,116,87,96,103,103,110,98,106,98,102,97,98,82,105,105,101,104,98,106,103,76,120,102,105,88,109,84,99,106,98,96,107,106,97,96,104,100,112,96,103,84,95,105,123,87,100,101,104,105,106,101,103,96,102,102,103,109,93,93,103,104,102,106,99,100,91,110,116,90,100,101,107,107,107,108,107,105,85,98,93,102,115,100,95,104,111,113,103,105,102,88,92,113,107,102,94,108,108,101,109,100,107,105,107,107,104,112,103,100,94,99,104,97,108,105,103,115,103,116,121,112,106,106,105,98,94,106,95,118,106,118,103,103,99,113,105,112,111,111,112,109,102,96,93,127,112,114,93,112,113,95,99,93,106,98,99,113,91,107,96,108,107,88,107,94,103,105,103,112,109,101,100,89,98,104,108,104,116,103,104,84,90,100,98,96,115,104,115,86,96,103,98,105,111,106,116,101,108,106,97,107,100,102,105,109,94,99,91,104,111,100,102,103,102,100,103,101,106,101,92,102,93,99,95,101,99,90,105,100,100,111,96,100,98,113,105,104,107,101,110,110,88,94,107,98,102,110,87,113,109,112,115,109,107,107,104,100,96,100,95,116,101,96,92,108,93,108,105,102,113,104,113,102,111,97,100,105,108,101,93,94,120,105,94,102,105,110,114,111,97,101,97,98,113,106,106,113,102,106,100,107,100,102,110,97,98,83,98,101,103,97,104,106,106,104,100,100,103,95,88,102,90,103,113,101,108,95,101,106,97,92,104,82,95,101,102,93,104,100,98,99,105,96,103,101,114,100,98,95,100,95,78,98,93,96,96,99,92,112,100,82,116,89,108,94,97,102,105,98,108,103,90,113,108,121,104,110,109,100,105,96,105,108,113,100,108,105,103,102,98,111,103,102,115,104,109,114,95,107,138,104,102,102,103,95,106,104,99,110,102,104,109,92,88,110,98,119,107,113,92,85,95,108,115,112,100,109,102,107,93,109,103,98,109,105,75,115,100,106,117,105,90,114,102,95,105,93,100,88,104,101,109,105,101,96,106,105,101,105,100,101,76,114,109,102,93,102,108,91,103,105,77,98,112,115,101,111,114,111,97,105,113,95,106,88,108,91,102,116,99,95,103,112,91,111,94,102,82,99,95,90,104,108,94,99,104,97,96,99,105, +425.17456,100,100,95,86,91,119,105,110,103,101,93,88,96,102,97,103,98,106,105,88,98,88,114,110,75,98,93,97,117,106,87,99,108,103,108,105,90,91,105,93,96,100,100,96,103,100,104,94,98,106,98,106,89,100,103,103,101,96,105,89,86,97,97,101,101,105,95,67,93,95,105,102,95,96,97,103,102,105,96,97,106,97,86,107,104,105,106,88,102,103,107,124,104,103,96,103,100,104,99,108,112,113,104,95,106,109,107,107,86,110,91,93,108,85,108,96,110,96,102,95,102,95,105,103,73,109,106,93,110,110,106,115,133,109,103,107,135,105,103,109,93,115,102,101,102,101,103,102,98,99,90,111,106,93,84,101,117,103,99,88,91,93,104,107,109,103,103,91,118,106,102,97,98,98,110,78,103,90,112,99,94,106,104,113,88,105,106,93,100,97,105,102,96,105,96,106,109,98,105,91,94,109,106,107,100,104,105,108,104,92,98,91,104,105,110,102,102,107,103,99,102,94,89,102,106,109,101,100,115,108,102,113,95,95,106,112,107,92,105,109,100,96,113,74,103,90,110,105,98,108,96,111,109,108,106,104,106,97,96,108,101,108,101,105,96,105,107,105,99,98,99,105,99,107,107,102,107,98,106,101,103,101,108,108,87,86,94,105,93,110,106,93,105,100,100,98,102,108,110,108,103,98,106,109,103,93,107,112,111,116,94,102,104,97,95,94,93,92,90,104,93,87,98,103,102,100,99,89,121,118,101,104,97,105,104,96,94,99,97,98,98,99,110,102,113,98,101,104,100,105,115,115,102,103,100,107,94,101,106,104,104,95,101,100,94,99,99,106,95,109,93,96,111,116,107,105,111,113,110,102,108,100,96,106,103,94,109,102,105,109,103,95,104,94,100,97,98,99,106,98,100,107,109,98,98,101,92,104,105,104,93,101,99,110,109,101,95,97,109,87,107,110,100,108,103,93,104,91,108,110,100,105,102,101,107,98,105,97,90,102,105,88,84,116,95,109,94,108,107,109,99,100,108,104,108,102,92,105,111,101,103,100,95,104,107,110,97,124,103,97,107,110,108,99,110,105,99,111,102,108,105,106,107,96,91,93,106,111,107,104,110,100,92,107,99,93,95,99,111,92,102,99,100,101,101,104,105,106,112,101,102,107,112,97,97,103,109,91,96,100,110,103,103,99,109,109,93,105,113,116,101,101,108,113,103,96,102,98,102,101,97,109,99,100,114,95,97,97,112,102,94,120,91,69,85,100,91,105,106,96,110,94,91,104,109,99,105,93,106,103,94,94,103,106,91,112,104,99,99,106,100,97,96,103,103,106,92,103,103,96,108,108,105,112,112,104,108,106,111,108,113,97,123,103,100,97,108,99,104,105,94,96,108,106,100,104,105,95,111,96,98,107,103,95,110,104,99,94,99,103,105,94,103,101,95,103,108,87,114,102,98,107,100,101,87,75,94,87,108,117,91,107,110,96,109,94,103,109,110,99,109,95,81,91,90,103,105,88,112,113,109,120,90,89,105,101,117,107,108,99,107,101,119,96,96,97,99,104,100,93,110,91,105,108,99,87,101,105,114,95,105,94,108,98,91,104,105,100,92,90,107,93,104,94,93,92,93,96,105,113,94,78,105,105,91,97,109,64,111,128,104,109,95,100,97,93,113,90,103,95,100,99,96,90,91,91,104,94,98,98,103,109,99,92,97,110,105,104,95,96,96,103,100,103,102,99,86,108,105,101,100,109,92,99,99,112,105,106,106,112,102,126,101,106,96,101,98,104,98,116,106,107,94,89,91,98,95,105,97,112,97,98,102,116,104,105,100,100,102,96,98,93,97,106,105,104,112,106,104,98,108,92,101,97,76,99,100,96,109,104,104,102,114,94,109,113,99,99,108,99,114,96,96,94,94,114,91,105,92,95,100,93,107,101,94,108,103,111,94,100,106,97,97,102,116,107,92,105,101,99,105,102,109,100,97,109,104,103,98,98,108,98,91,104,98,101,101,107,104,95,104,107,111,71,105,98,80,94,114,103,103,111,110,102,100,93,97,94,93,110,93,105,93,95,95,105,98,105,103,105,111,97,108,73,95,109,91,95,114,100,96,99,105,105,106,112,99,96,106,95,100,96,100,83,113,105,105,98,105,96,102,102,94,111,101,101,99,101,97,109,104,109,108,108,100,87,100,107,91,103,98,109,94,105,111,94,91,99,103,90,102,100,99,109,98,103,102,100,100,111,98,107,101,92,100,101,91,98,64,100,101,104,93,101,101,99,109,113,106,100,100,109,105,105,103,90,102,112,113,99,99,103,109,103,108,94,110,97,96,102,100,109,99,94,101,99,108,112,110,103,98,105,100,94,107,104,106,94,114,109,103,101,102,99,100,106,91,101,98,100,101,112,95,96,100,99,91,106,94,98,106,112,107,109,98,113,89,101,99,95,95,107,98,106,112,108,101,110,133,106,111,95,111,94,100,104,85,110,100,102,107,105,91,102,107,102,102,106,95,102,96,103,94,104,110,102,108,92,102,96,110,111,109,105,96,88,112,106,112,97,83,108,113,107,99,108,98,101,118,112,104,99,102,109,98,104,100,105,120,100,109,107,113,106,102,99,106,106,92,101,99,103,108,95,102,97,104,107,119,91,113,98,108,115,109,107,103,111,106,87,102,106,97,98,106,106,113,100,102,98,105,106,111,96,98,103,91,96,99,113,94,104,104,109,103,96,99,110,108,91,95,106,100,90,108,98,89,113,100,111,95,95,92,115,107,109,98,71,110,103,97,92,101,122,104,90,105,101,100,111,117,80,104,90,86,113,101,93,100,107,99,104,104,114,97,105,106,108,104,101,122,107,95,71,106,105,106,117,101,95,103,105,122,103,97,97,104,109,110,107,109,103,102,103,95,111,96,99,110,95,98,107,104,94,106,104,109,90,111,106,97,109,87,118,106,100,101,109,105,105,94,99,103,103,95,114,91,105,99,106,102,104,104,108,103,89,114,101,101,110,107,100,101,101,108,103,94,112,104,106,106,93,103,102,97,105,103,114,102,105,96,107,95,133,110,94,94,97,120,88,118,117,100,95,102,98,107,98,100,93,88,113,108,117,108,95,121,105,99,99,111,94,93,99,98,105,111,98,79,102,97,116,95,100,99,109,101,102,120,108,103,100,99,114,97,92,89,116,105,102,96,106,109,103,108,99,96,103,112,108,101,109,101,95,102,104,111,100,113,100,104,114,104,106,108,100,94,104,99,93,112,107,100,107,108,110,98,106,107,108,98,102,101,111,99,103,109,103,100,98,107,105,97,106,109,96,100,109,97,104,97,95,102,103,102,110,94,101,100,104,106,87,108,107,97,105,106,100,110,94,103,105,105,103,101,81,102,75,117,93,94,87,107,113,99,99,113,113,88,104,106,104,113,112,100,103,106,107,96,104,111,121,102,93,120,102,107,103,106,106,95,94,109,95,105,107,98,105,98,104,105,103,105,109,103,98,122,102,100,99,111,94,94,126,97,99,101,109,98,108,115,107,107,100,100,95,94,104,99,105,98,92,107,113,97,102,97,113,109,91,99,103,105,110,103,101,108,103,108,109,92,108,108,111,111,107,106,96,100,83,104,103,118,103,105,100,110,111,97,107,103,99,103,109,96,104,99,104,107,103,109,99,105,113,108,100,112,108,113,105,106,111,110,108,93,110,110,110,92,91,96,97,110,106,107,101,82,94,104,101,102,98,125,99,102,98,103,116,107,104,106,99,105,98,99,109,91,98,102,118,110,109,111,102,107,101,98,118,95,98,107,127,104,107,112,97,105,102,103,102,89,112,90,103,100,103,110,121,92,97,106,101,103,96,100,96,99,105,95,95,106,91,101,106,98,94,104,93,95,109,102,101,106,104,102,113,105,111,110,114,104,93,112,98,94,107,81,101,107,101,104,108,91,113,104,95,112,96,106,108,100,105,85,107,119,114,104,101,96,103,92,106,89,111,103,103,107,93,107,94,102,87,99,98,114,97,107,70,101,100,103,106,101,99,110,98,86,117,110,93,96,104,102,97,99,106,113,110,78,109,106,117,98,114,94,110,100,108,108,83,106,93,98,108,97,124,99,103,111,104,63,92,98,108,107,98,103,99,106,102,104,101,105,105,99,108,113,100,103,102,100,108,107,106,98,110,102,104,111,106,115,113,97,106,112,104,109,99,111,96,99,104,98,100,90,116,105,107,109,96,100,93,107,92,96,98,91,100,112,104,103,99,104,108,109,105,101,79,93,104,100,100,101,99,100,101,108,99,108,107,106,106,104,104,103,108,99,112,93,108,98,105,124,101,99,103,121,99,104,107,122,107,107,98,113,100,107,123,105,109,112,99,109,109,104,110,105,94,104,100,103,107,101,98,89,100,83,106,97,97,115,105,110,97,104,94,112,100,104,100,73,104,115,109,106,99,101,96,106,100,92,101,94,112,117,103,95,91,117,102,108,94,94,105,110,109,104,103,103,102,91,121,83,88,100,90,102,107,103,100,114,103,101,100,93,105,104,101,103,118,101,111,106,101,104,103,97,107,102,102,95,110,109,115,100,98,104,95,109,103,99,93,102,109,89,106,98,123,95,113,95,131,106,105,83,96,113,99,98,93,104,87,103,92,105,86,113,90,87,96,98,66,89,99,104,98,95,111,101,90,109,99,107,104,98,94,102,107,100,104,100,92,87,102,107,120,93,90,106,98,115,98,104,101,93,96,105,109,105,107,101,105,90,93,97,102,85,96,98,91,98,97,101,105,95,108,93,87,103,111,109,105,100,96,105,110,117,110,113,105,100,103,115,102,98,103,110,102,106,98,102,115,104,100,110,123,99,106,107,107,101,91,85,97,123,104,114,106,96,86, +425.31482,86,100,90,114,105,95,94,101,110,95,98,91,88,112,95,100,90,112,102,103,108,101,94,107,106,104,108,111,101,93,104,100,99,105,105,95,95,93,96,95,97,103,90,91,106,104,104,101,90,104,95,70,119,84,103,104,92,99,102,97,112,93,104,92,102,97,97,89,94,97,115,114,96,95,92,97,95,106,108,110,97,94,97,107,99,87,107,111,98,104,100,102,93,111,89,95,94,89,92,102,92,91,91,102,97,122,107,104,99,99,106,109,110,108,96,98,105,93,105,109,119,96,109,79,110,99,101,96,107,97,110,100,105,113,117,91,100,81,80,108,108,101,105,97,93,104,100,88,102,92,97,79,117,91,85,99,103,98,102,112,105,95,102,100,117,100,94,98,107,95,91,103,92,91,100,103,106,96,100,124,100,106,76,97,109,96,89,93,105,91,124,103,103,105,111,100,105,112,107,107,109,105,96,98,90,114,103,106,105,120,96,110,110,105,109,93,115,105,95,97,113,101,111,102,106,97,95,100,86,101,106,106,92,103,105,106,88,113,101,98,94,100,108,99,99,90,101,114,121,103,93,97,96,104,101,100,93,113,97,99,102,88,98,97,97,93,104,98,102,98,93,87,87,83,106,96,102,93,99,98,96,110,113,100,103,100,96,94,100,109,108,106,102,95,105,105,99,92,99,104,104,95,100,103,94,98,103,91,105,88,105,100,108,98,90,102,91,105,105,97,95,69,96,98,112,104,102,106,107,108,95,102,101,98,105,100,106,96,97,105,109,99,105,90,98,95,103,100,110,105,105,104,107,99,96,112,94,111,104,97,105,106,97,98,97,106,103,102,106,113,99,105,104,104,109,96,98,106,92,105,109,100,97,107,104,95,97,101,112,107,90,98,94,111,98,94,114,95,110,95,104,108,108,100,93,108,96,101,100,97,97,99,105,120,113,104,96,101,95,114,100,106,96,108,97,97,107,101,95,113,94,105,90,98,111,101,102,103,102,102,106,97,102,99,90,95,96,86,115,96,98,97,99,94,100,98,90,103,96,93,118,101,104,96,104,104,100,113,103,98,123,98,105,106,100,96,87,104,102,109,116,108,111,105,106,104,96,102,97,106,101,99,109,101,104,91,88,106,117,101,116,105,94,108,98,108,91,98,113,101,100,105,100,101,102,142,107,91,99,92,92,106,99,98,87,108,97,103,85,107,109,101,96,95,101,109,91,102,95,106,96,119,99,100,94,103,88,108,101,104,101,106,103,99,97,96,113,111,99,102,126,107,98,108,96,107,108,105,108,97,101,91,106,106,105,104,106,72,101,109,91,97,104,97,97,98,114,100,102,103,104,111,99,103,108,103,102,108,109,104,108,112,103,109,109,112,103,104,99,113,95,110,118,108,102,101,94,100,96,121,105,114,94,105,108,100,104,99,109,108,95,99,95,95,105,104,110,98,109,101,99,106,97,99,100,90,102,92,104,101,98,108,97,107,101,96,104,105,105,109,110,103,101,92,103,91,108,102,114,97,120,95,102,99,90,112,102,95,103,99,93,94,105,93,97,96,99,107,100,99,109,103,112,100,87,91,108,99,102,101,94,93,112,97,108,101,102,103,107,106,92,96,104,100,101,100,100,106,111,101,93,95,103,102,99,102,100,68,100,109,100,108,103,101,103,90,104,103,96,105,105,105,90,106,104,118,100,104,103,103,101,101,101,99,105,100,100,100,111,99,98,103,96,93,99,106,99,110,92,92,96,114,109,102,105,110,98,95,93,73,96,114,102,113,92,104,92,103,103,104,101,102,101,104,104,110,98,102,114,102,106,105,95,99,110,102,109,96,98,107,106,106,105,107,104,114,99,97,110,94,103,94,108,104,101,109,120,96,103,109,99,98,115,67,105,118,105,100,101,109,106,87,84,108,106,103,108,107,99,93,117,100,101,103,101,94,104,109,108,104,101,96,89,111,107,98,101,104,107,101,105,108,98,101,97,98,103,105,95,103,80,108,94,109,99,104,99,115,103,106,109,104,103,106,95,98,104,106,116,105,100,114,100,103,98,98,103,96,96,98,95,111,107,104,112,111,105,100,83,108,113,103,101,99,97,99,92,109,98,104,114,116,100,113,102,100,94,105,104,96,101,104,103,105,117,101,94,124,109,104,103,111,111,104,121,106,92,100,94,106,110,99,96,98,96,110,91,97,95,104,101,108,96,96,108,109,107,95,96,95,96,102,103,93,103,107,108,91,89,100,97,98,100,98,103,94,105,81,97,105,99,88,90,94,102,96,102,107,108,103,97,113,102,112,96,101,117,98,98,94,97,109,102,103,105,100,89,100,102,95,105,100,95,94,102,94,94,123,113,101,91,102,100,116,98,100,94,110,110,96,93,108,109,109,93,95,90,103,93,103,93,101,95,90,102,94,97,100,105,90,104,111,104,92,100,98,107,103,89,91,107,95,97,113,97,105,97,102,100,95,92,91,104,101,85,99,107,101,99,110,103,99,100,98,109,107,102,110,101,88,96,107,110,95,103,98,98,95,83,93,96,95,104,88,94,89,112,91,104,101,99,101,99,99,100,103,98,81,100,95,103,75,70,105,101,95,105,103,105,100,118,101,100,104,104,91,113,104,103,125,105,95,112,66,102,111,95,89,97,105,120,93,108,112,93,71,106,99,88,113,110,98,106,102,101,110,110,104,109,103,98,105,100,99,91,102,106,107,92,100,103,121,109,103,94,103,92,97,77,100,83,105,98,96,99,96,94,98,113,101,105,101,100,104,111,99,103,88,114,89,96,97,93,109,110,106,102,95,103,97,95,99,103,95,95,101,103,96,100,102,88,107,117,98,102,100,79,104,96,95,104,96,102,109,93,96,95,105,99,116,93,97,104,109,99,107,94,106,106,104,102,113,100,102,103,104,101,111,98,109,107,110,92,100,99,92,100,90,94,106,91,111,106,113,108,100,98,89,98,87,94,103,99,91,109,95,99,109,106,93,106,97,106,111,88,102,98,101,100,106,109,106,100,109,95,101,101,98,100,100,98,94,101,81,114,102,106,102,107,91,105,100,108,93,99,92,92,95,101,110,91,104,103,107,101,90,106,93,99,99,99,115,107,103,93,101,97,105,98,108,95,100,100,107,102,94,73,95,99,103,97,98,101,109,102,105,110,104,104,96,102,103,94,101,93,97,90,102,105,88,99,92,102,99,105,98,102,103,108,109,98,97,102,104,86,101,110,93,100,97,99,104,100,106,117,103,101,105,91,102,113,111,100,97,107,92,89,110,96,102,109,98,108,113,104,111,104,109,98,98,95,114,101,91,108,100,97,91,87,93,98,104,116,89,98,98,99,100,106,102,89,112,101,102,106,98,101,110,105,89,96,102,98,106,105,99,89,97,103,87,107,106,91,96,109,97,99,90,102,112,100,82,102,97,102,105,87,101,109,94,99,109,99,94,106,100,105,92,98,83,105,102,102,114,92,113,96,105,107,105,93,108,100,99,89,103,88,94,103,104,98,104,109,110,92,108,87,91,110,111,110,101,99,102,100,99,83,91,93,109,106,103,111,100,110,117,97,103,125,102,104,102,100,106,106,98,107,104,102,108,68,114,92,121,100,98,111,99,94,107,103,109,92,107,100,113,96,97,105,116,103,118,112,94,95,97,92,111,102,103,106,95,100,111,110,97,92,108,99,104,97,104,94,102,94,97,105,92,102,101,97,102,105,105,98,114,97,101,100,97,117,93,87,92,107,102,112,98,95,87,113,105,106,100,100,126,112,93,124,95,93,109,98,103,101,102,104,113,104,120,103,92,109,111,98,117,99,93,101,100,97,109,95,93,93,107,107,100,86,79,102,98,106,91,109,109,100,99,107,106,98,103,96,95,106,106,100,91,98,84,95,109,106,102,98,94,99,107,106,91,106,103,113,100,99,104,120,97,107,113,93,101,100,105,102,110,97,106,98,103,100,106,101,106,111,94,102,113,105,101,100,95,99,105,111,93,96,90,108,99,104,111,106,107,97,99,99,106,99,102,101,116,94,105,95,102,101,88,106,115,102,109,100,102,101,93,97,116,105,103,92,104,93,116,98,97,91,102,99,100,98,102,81,100,86,99,104,101,89,97,96,103,92,102,110,111,98,96,105,97,100,86,95,94,110,104,115,103,92,111,126,141,103,98,101,100,88,104,98,105,96,106,108,111,111,114,99,102,100,93,110,93,102,98,95,102,104,99,104,105,99,101,106,91,100,99,110,103,105,105,101,100,111,107,98,105,98,94,95,112,108,109,108,96,93,102,99,103,101,117,103,97,108,79,91,104,92,99,98,97,104,94,98,102,113,99,112,104,101,92,95,111,108,110,100,107,99,106,104,122,100,91,103,121,95,109,105,97,98,92,98,88,100,105,89,109,98,99,86,104,110,102,96,109,101,96,96,96,107,104,81,100,102,115,111,100,94,108,95,101,103,94,99,108,76,103,99,104,95,112,92,105,96,90,109,95,102,106,101,105,103,92,101,111,94,93,105,91,99,95,94,99,90,102,95,101,101,90,103,97,96,108,114,100,99,97,104,103,89,106,100,94,101,102,68,106,100,104,103,90,86,101,95,92,92,109,87,100,98,92,98,102,100,113,115,96,110,105,107,100,94,84,102,100,106,102,99,108,104,96,104,95,99,107,87,107,103,120,84,92,80,102,94,89,104,91,104,94,95,102,98,96,109,94,79,125,98,96,97,100,100,97,108,95,104,98,95,94,90,102,92,99,107,100,107,95,96,98,106,93,92,99,95,106,94,109,96,95,98,96,108,99,94,96,104,97,92,95,99,96,111,108,75,113,99,106,88,98,103,90,94,97,109,101,113,98,98,110,97,84,97,98,109,102,95,104,98,112,103,91, +425.45508,101,109,109,100,83,107,110,102,107,107,115,107,99,103,122,102,83,109,109,112,101,97,96,117,104,88,102,105,97,110,95,117,98,89,109,97,108,110,106,109,102,104,105,98,106,104,111,100,96,86,111,97,108,109,105,100,96,84,114,104,116,105,96,80,96,108,97,98,113,101,108,97,95,109,105,100,114,101,117,102,107,101,98,108,101,109,99,105,99,89,104,95,106,95,101,103,107,102,106,91,97,117,104,104,109,93,97,100,98,90,95,95,113,102,100,100,96,107,110,84,109,99,110,110,113,105,102,103,108,97,102,99,94,97,88,95,104,106,98,97,103,97,88,104,126,105,87,105,94,97,96,84,96,87,91,109,97,102,104,90,91,99,110,100,95,99,101,93,101,87,103,106,100,97,101,101,93,94,104,102,96,110,103,99,99,114,99,80,110,91,112,92,113,109,99,105,98,106,108,86,113,100,90,113,71,97,103,98,108,103,91,103,119,105,94,99,105,92,87,103,108,95,108,93,102,140,106,105,106,104,91,101,108,116,108,92,90,113,107,99,106,103,107,100,106,94,105,103,103,101,92,101,101,102,98,102,86,110,95,94,110,109,107,88,103,109,107,101,100,99,94,103,113,99,104,95,100,120,106,109,110,101,106,109,101,107,90,94,103,86,91,103,103,115,104,110,105,105,104,108,90,101,101,112,96,99,113,94,95,116,100,108,110,111,123,95,104,107,100,105,99,96,104,86,99,106,112,98,101,110,103,109,107,101,99,95,103,89,91,115,122,94,109,94,108,99,106,101,105,99,101,97,117,110,87,108,107,108,101,105,94,100,94,93,100,105,104,110,109,102,109,98,110,110,95,96,103,90,109,101,109,105,106,126,95,93,110,102,99,105,98,87,94,100,85,92,92,116,98,81,102,104,89,106,105,103,101,98,126,99,97,94,92,95,104,96,96,94,118,98,110,100,90,107,99,90,108,99,105,102,88,99,102,108,94,101,128,98,101,86,99,107,113,110,94,107,105,117,85,102,99,104,103,101,99,103,102,101,106,98,100,100,110,94,102,95,99,90,115,105,101,110,101,100,118,95,97,104,95,110,99,101,100,84,110,101,99,103,95,94,106,117,106,103,104,92,100,120,102,112,113,98,91,104,108,102,109,102,107,109,112,106,108,90,102,99,110,102,94,115,99,100,103,97,96,95,100,101,97,95,101,112,109,93,112,100,100,122,107,93,96,101,90,92,99,112,101,95,102,101,97,109,101,100,90,101,101,99,92,94,101,100,97,104,108,102,105,104,112,102,95,101,101,100,98,103,91,98,98,96,99,99,104,81,106,95,104,104,132,97,89,108,103,107,117,111,104,115,104,110,95,102,101,99,96,94,100,108,106,101,95,118,106,103,95,102,98,99,105,104,98,105,97,98,104,112,97,106,98,105,103,103,104,111,96,110,111,102,88,103,93,103,96,107,95,100,106,101,103,74,92,114,108,99,109,105,101,103,90,102,98,85,110,108,93,108,104,96,99,97,116,100,99,96,99,111,94,114,102,107,107,106,105,64,82,102,81,110,101,105,103,102,99,109,114,104,112,94,109,96,105,102,62,88,99,101,105,99,96,99,97,100,96,105,94,108,110,104,101,112,106,93,95,99,110,97,112,109,113,116,109,110,101,108,101,95,95,80,101,103,100,101,91,101,103,101,100,106,103,99,104,106,100,98,103,92,109,110,105,105,105,111,91,94,94,103,106,94,114,95,105,110,99,96,90,100,113,95,99,95,107,106,112,103,104,104,106,101,102,108,100,107,112,105,103,98,97,101,104,102,114,98,97,96,101,92,98,89,109,99,115,105,97,87,103,97,98,98,104,105,103,95,98,100,94,103,104,97,113,98,114,95,109,103,94,108,112,106,112,109,96,105,97,93,100,109,107,100,108,93,105,102,105,92,90,104,108,86,104,107,100,103,105,103,102,110,92,102,113,109,99,114,113,126,103,89,103,95,101,109,109,109,101,105,108,95,93,121,113,100,100,104,92,96,95,105,100,93,100,90,97,106,98,115,110,90,109,106,101,102,106,105,109,107,105,95,110,95,101,126,144,83,102,103,101,99,120,90,84,100,91,94,109,96,97,100,74,104,107,107,93,103,114,101,119,96,91,95,100,93,100,109,101,103,110,106,103,109,92,103,102,99,109,82,103,90,86,99,108,110,88,91,100,109,103,113,108,99,100,102,98,94,111,102,104,106,102,99,108,87,108,99,96,104,94,102,88,104,106,96,97,93,103,103,100,111,97,101,100,105,92,95,98,103,108,97,109,105,108,95,103,106,97,100,96,97,101,107,101,106,91,100,113,79,113,88,116,80,110,100,93,105,105,101,101,102,83,92,104,89,96,93,107,98,108,104,93,96,98,97,99,99,105,99,101,104,86,103,107,94,106,95,100,108,100,110,97,105,108,100,93,86,95,103,98,118,104,105,106,97,101,99,118,106,102,103,101,83,92,112,87,87,120,101,109,105,111,92,105,106,98,126,98,98,101,101,93,101,109,103,115,117,110,105,106,106,104,100,101,113,97,78,96,106,104,105,102,114,104,70,113,98,96,105,102,100,110,106,106,97,107,100,99,95,87,91,99,102,107,107,95,99,100,97,114,109,111,105,102,103,97,91,86,94,98,96,106,86,103,106,97,108,105,100,111,91,115,99,89,111,112,91,94,102,88,98,108,94,98,104,99,106,94,100,96,110,103,105,102,112,115,103,98,117,94,101,101,98,103,98,111,98,96,102,72,106,91,98,107,98,105,114,102,100,104,105,100,110,103,105,115,98,103,104,106,112,105,111,104,113,110,107,98,109,100,99,101,103,97,109,95,98,112,98,91,90,98,112,110,100,110,94,95,97,92,109,98,110,104,85,102,101,94,93,103,90,116,96,108,99,110,97,94,101,86,101,100,100,112,103,109,104,118,98,108,98,109,97,104,109,100,110,96,96,102,108,104,84,105,100,95,88,81,101,98,90,102,102,95,104,94,100,106,116,121,97,104,103,97,105,98,101,105,88,106,103,103,92,111,105,95,102,99,104,95,90,103,98,91,103,107,99,107,100,108,106,106,87,99,95,96,100,92,105,113,94,101,119,108,105,99,98,99,113,113,108,99,110,98,105,94,94,103,101,102,117,104,99,106,105,73,98,89,101,94,106,110,118,98,107,95,106,88,102,107,87,102,104,108,94,98,115,108,91,93,99,75,119,100,103,94,105,102,111,92,100,85,109,99,108,108,96,102,102,107,101,107,90,102,106,102,94,90,108,102,96,103,114,114,92,102,103,99,96,105,87,100,110,106,106,94,103,101,96,107,110,101,109,112,99,90,102,112,106,108,92,99,113,95,101,112,102,96,107,99,102,102,106,109,92,104,80,113,106,92,102,101,100,74,99,95,95,94,106,105,102,100,102,87,91,100,104,107,96,87,100,113,101,103,96,105,102,110,97,101,104,94,100,100,116,106,103,113,109,115,105,109,103,94,103,105,105,111,105,109,92,97,105,98,87,111,95,117,98,103,88,98,100,111,106,115,99,105,111,86,98,98,101,95,113,105,94,102,101,104,109,108,93,95,107,108,103,102,108,99,102,109,117,106,94,92,101,116,100,96,109,99,101,99,108,99,89,86,98,81,94,107,98,106,93,106,109,101,122,103,94,103,97,109,88,104,105,99,97,102,99,99,107,102,87,92,95,106,99,99,103,96,108,98,96,102,93,105,102,90,92,109,96,100,99,101,89,109,106,112,99,103,100,95,107,92,103,99,102,110,113,101,94,107,97,117,95,92,94,110,102,120,95,85,95,99,101,106,98,96,100,96,96,114,108,113,93,104,98,100,105,110,98,91,101,94,107,116,107,100,102,107,95,100,102,102,95,102,112,97,104,99,106,87,96,100,113,98,101,101,103,96,95,98,105,102,106,104,97,102,96,116,96,100,100,108,107,99,95,102,87,96,97,117,106,104,110,98,98,112,110,97,96,108,105,92,102,111,109,102,108,100,98,105,89,103,124,101,104,121,100,101,97,105,100,112,87,105,109,97,95,99,110,98,101,107,100,98,109,98,108,113,104,104,102,107,111,102,102,91,105,96,95,108,96,101,113,110,103,107,106,105,109,108,99,102,93,92,100,104,99,100,99,97,95,95,109,93,99,105,119,83,109,98,100,98,102,108,96,104,97,105,79,106,95,117,108,109,97,114,102,104,108,87,89,90,110,107,110,101,103,99,102,101,109,102,108,113,98,98,100,103,96,87,99,100,90,95,109,108,100,102,90,104,109,109,92,106,95,100,95,86,109,110,92,105,94,99,88,99,90,109,103,101,96,96,110,79,102,97,104,92,100,105,103,103,105,97,88,109,101,99,121,105,112,92,89,98,96,98,114,94,109,103,116,98,106,95,101,83,107,98,74,105,105,105,94,107,103,106,97,103,108,103,89,102,100,92,101,105,106,115,101,101,96,107,105,99,89,112,105,113,81,95,93,93,98,103,98,97,106,106,104,87,102,116,88,106,97,99,92,103,98,106,99,108,103,106,97,107,102,97,96,89,106,101,96,104,115,91,76,83,102,116,92,98,115,101,113,91,98,102,96,106,116,103,96,96,90,104,117,102,93,117,97,97,106,101,108,98,104,98,103,106,94,99,106,89,102,95,104,106,102,96,104,94,102,110,72,99,103,88,118,109,91,105,103,100,101,102,94,114,92,107,93,107,99,103,122,96,100,98,95,104,97,84,105,96,78,110,111,111,105,95,110,105,104,101,95,91,92,97,92,97,105,103,113,104,99,110,109,91,106,97,83,108,97,93,95,94,85,109,87,81,91,107,74,107,94,112,100,100,100,96,99,95,99,92,102,96,91,99,87,105,82, +425.59534,114,110,103,97,95,112,102,80,91,104,101,116,109,78,103,93,94,99,113,91,94,92,114,93,102,103,90,112,92,120,106,86,68,93,108,84,99,93,95,95,100,91,95,91,102,99,106,108,106,101,104,95,108,118,93,93,89,108,86,96,97,109,118,99,110,105,104,108,97,96,100,109,98,109,99,96,108,109,114,102,104,107,108,104,93,93,100,104,95,102,93,97,103,101,100,96,99,96,102,99,106,100,100,98,119,101,105,97,96,76,107,88,106,107,105,110,105,112,100,97,88,102,101,112,97,115,108,90,99,104,98,102,104,99,116,97,79,99,101,105,114,103,104,101,101,102,102,101,90,90,96,103,116,92,93,92,108,95,106,101,88,108,117,93,104,106,109,95,68,97,97,112,101,105,99,109,101,93,109,105,87,102,109,108,95,102,99,105,96,101,95,99,116,99,104,90,109,91,103,95,92,108,95,107,102,113,107,106,113,122,106,99,107,104,96,100,104,104,104,107,104,116,92,105,102,92,111,110,106,117,99,97,107,95,96,106,113,100,92,107,114,90,101,104,99,102,100,109,104,108,96,104,90,95,104,111,101,101,103,103,94,102,98,104,100,95,106,113,106,99,101,109,97,109,103,106,106,108,87,107,101,105,109,102,105,110,91,105,102,128,93,103,101,101,92,85,105,107,96,113,105,97,95,111,98,113,101,99,103,106,104,107,110,110,103,105,103,107,88,96,101,95,99,103,110,103,98,70,104,107,104,99,103,103,91,98,101,106,96,107,91,91,104,102,110,101,87,106,103,91,96,106,107,108,102,101,101,84,102,107,100,111,104,87,100,97,100,106,85,112,104,109,121,105,108,105,111,98,102,103,107,102,100,95,102,93,112,100,102,92,110,93,94,112,98,98,103,104,94,112,99,95,102,99,108,102,94,104,106,92,87,100,100,102,105,95,103,105,99,102,99,90,101,98,91,100,100,95,101,100,98,104,102,94,99,100,90,99,93,106,109,104,79,108,90,105,98,115,101,103,105,104,107,99,86,99,106,100,117,88,106,103,105,109,103,79,94,112,109,89,100,94,112,111,109,102,101,105,91,101,98,102,103,105,98,102,99,105,91,110,109,101,100,108,97,101,103,99,101,104,102,101,95,99,106,95,93,102,104,95,105,104,90,116,102,97,103,112,91,90,102,75,105,101,107,94,112,100,91,104,99,93,102,97,100,100,100,102,100,111,99,93,111,95,97,108,97,102,97,106,111,99,108,96,97,98,99,77,99,98,121,101,93,107,105,95,110,92,109,105,93,97,101,102,105,106,99,97,93,117,105,108,101,92,93,103,106,103,107,97,110,108,100,108,106,107,106,106,104,87,110,97,105,100,104,105,92,105,96,99,101,102,115,106,120,109,102,102,118,92,97,93,123,100,111,105,107,112,100,102,96,100,107,96,92,103,103,98,105,102,112,93,101,100,98,87,98,114,106,108,90,95,109,96,96,110,102,99,113,101,118,108,100,102,93,111,113,102,101,100,111,104,79,111,99,98,94,96,107,100,92,81,103,101,113,81,97,100,106,105,95,92,95,102,100,83,89,87,97,109,97,101,97,101,73,99,95,96,104,101,106,97,105,94,104,106,97,99,89,97,97,100,95,107,99,93,99,98,111,123,102,101,97,96,101,101,98,95,102,104,104,99,102,99,110,109,95,106,113,101,109,97,100,95,92,101,106,103,108,97,109,100,94,100,88,109,99,98,91,94,98,90,107,98,96,106,110,101,107,123,110,98,106,92,103,113,107,104,100,103,109,107,104,106,94,103,81,103,98,98,98,97,113,104,107,90,101,110,107,97,103,97,99,101,102,105,100,85,106,101,109,99,97,107,104,88,108,94,88,100,107,95,105,112,100,102,104,99,104,96,102,109,114,102,106,88,102,108,99,96,87,97,92,104,97,102,107,104,95,109,105,94,111,113,95,102,101,90,107,105,100,99,95,124,103,111,102,107,101,109,99,110,103,95,108,86,108,104,95,110,104,95,104,99,109,113,105,113,101,104,106,113,101,97,114,102,97,103,110,101,95,108,89,106,102,109,88,102,101,103,100,105,104,105,99,101,99,108,103,99,105,109,114,108,98,101,98,97,98,105,92,106,96,99,100,92,102,111,93,102,107,100,108,106,104,74,98,101,86,115,106,105,106,93,98,126,93,99,99,107,117,102,106,106,94,95,99,104,109,104,89,102,109,92,104,95,93,105,104,111,96,113,117,114,96,98,96,109,103,104,108,98,94,111,114,102,103,109,93,100,93,111,98,106,103,95,99,91,114,111,103,112,97,99,107,102,108,102,113,99,108,87,117,99,103,102,106,95,108,101,93,95,86,102,91,97,99,81,106,98,113,110,108,120,91,111,109,100,97,96,92,96,105,103,103,106,101,102,92,102,89,104,103,102,93,101,88,81,105,108,102,107,100,112,107,100,107,97,105,99,90,96,109,112,95,103,104,104,101,102,109,89,117,102,105,113,102,94,113,101,91,100,95,111,111,95,107,110,91,103,102,92,107,93,109,95,103,96,103,96,96,115,115,97,105,104,101,107,98,99,100,91,104,109,101,104,97,97,108,95,115,100,106,103,106,99,105,101,96,109,97,107,107,108,106,113,100,103,103,101,108,100,107,92,114,87,109,100,109,104,114,99,105,102,108,98,103,103,108,93,91,96,132,100,80,109,107,100,98,103,84,98,107,101,97,112,97,112,94,94,99,78,121,114,101,117,109,95,100,103,101,103,99,83,106,103,100,113,104,100,90,95,92,66,98,102,102,89,111,116,103,104,97,91,95,104,99,99,102,106,102,93,102,105,107,102,98,106,106,101,102,97,106,112,112,98,107,104,104,100,103,101,106,124,100,109,98,106,99,106,101,104,113,102,104,103,89,105,97,96,97,106,93,106,89,97,110,110,102,105,91,104,96,117,99,117,106,108,121,112,90,112,92,92,102,103,107,93,96,95,107,107,102,106,66,98,105,105,95,95,105,102,101,108,103,112,115,102,102,106,87,102,104,99,112,103,103,113,112,103,105,91,95,104,100,101,105,107,100,105,100,106,109,90,105,106,110,104,97,93,93,109,101,112,99,109,100,112,102,103,115,99,102,105,92,118,95,93,101,116,107,95,104,104,102,97,117,103,95,98,105,103,98,84,92,115,110,98,97,70,101,102,101,89,105,106,103,113,107,105,110,107,102,67,104,92,102,110,105,100,104,105,113,105,102,85,96,104,107,106,100,104,94,96,93,102,103,103,105,103,97,106,100,94,103,94,106,117,106,102,104,100,100,88,109,103,101,95,99,103,98,102,77,88,105,98,101,106,106,95,102,103,104,95,110,109,103,106,94,95,98,105,98,99,97,99,108,100,105,111,94,101,96,106,97,99,99,98,106,90,102,104,98,95,93,112,110,108,104,95,104,97,103,102,94,98,105,110,95,102,116,102,110,91,98,112,109,104,105,97,87,98,98,108,107,92,98,101,112,107,97,106,101,111,106,95,103,110,102,98,98,100,100,91,96,82,94,92,110,104,106,104,108,114,92,97,103,101,103,99,109,84,95,99,84,94,105,107,109,99,102,99,101,107,98,98,97,101,93,101,108,100,105,105,101,90,109,96,115,96,74,87,110,98,111,107,116,105,109,103,107,103,94,85,100,100,101,102,101,94,108,125,116,106,98,91,99,102,98,89,99,113,100,96,110,97,106,107,99,95,93,99,104,100,104,113,102,101,104,95,101,111,103,95,102,92,102,95,104,104,99,124,97,89,103,105,98,105,76,96,115,94,105,101,103,97,97,88,92,110,96,109,104,100,95,97,112,87,109,98,117,106,106,99,100,109,99,88,98,105,98,100,90,111,98,94,99,107,101,105,99,85,99,103,91,94,105,100,99,89,113,100,100,98,100,111,97,92,108,109,104,103,94,112,94,122,99,109,93,109,113,98,99,103,104,90,97,96,109,103,102,91,93,107,113,91,109,102,76,100,122,109,107,92,96,96,112,98,96,95,115,99,93,103,104,109,93,117,110,104,103,94,98,97,103,95,84,72,103,97,106,102,95,111,102,111,100,137,88,105,113,98,100,109,81,116,94,107,102,100,106,92,108,105,104,97,97,106,97,99,99,96,100,97,110,103,104,97,105,106,100,127,101,109,96,116,101,99,113,111,120,99,102,96,100,111,105,95,82,100,102,126,95,102,96,103,91,100,102,92,100,108,105,95,102,104,91,89,110,105,103,98,127,108,98,100,106,109,114,99,96,109,84,109,100,71,99,109,100,97,109,107,103,109,104,111,97,108,89,99,106,109,99,94,99,95,103,71,112,82,100,109,99,98,102,109,100,94,99,102,102,107,104,105,96,98,105,99,99,94,109,82,99,101,84,105,89,97,105,99,109,95,98,86,81,87,87,98,104,109,121,101,98,98,101,94,97,100,101,96,96,94,96,111,104,104,112,99,101,103,98,101,105,116,92,92,95,98,99,81,89,67,93,97,94,84,99,95,103,104,100,95,98,87,100,104,108,91,100,100,90,107,108,102,101,92,109,93,96,94,87,89,96,109,87,103,98,95,105,101,97,105,77,90,98,101,94,103,102,91,83,82,106,109,91,105,99,100,104,95,93,96,120,90,101,95,108,103,95,101,101,95,92,105,94,96,104,99,101,113,94,107,108,91,94,96,99,101,99,71,83,98,92,97,103,113,110,98,107,109,107,104,122,88,98,94,99,101,102,91,101,112,86,111,128,104,129,109,91,100,97,112,103,87,104,82,95,92,97,98,72,108,98,90,102,141,101,114,123,102,101,95,105,101,104,102,97,106,104,98,94,119,94,96,108,87,87,113,99,109,112,99,101,132,112,105,98,58,107,88, +425.73563,100,97,92,94,114,103,106,97,109,93,111,100,98,95,104,92,73,107,79,103,97,105,98,113,102,104,76,91,103,117,104,107,110,109,106,100,99,93,104,105,94,126,115,107,104,103,111,98,100,109,99,95,114,103,95,102,105,98,102,104,100,99,91,79,101,101,91,109,92,91,100,110,92,106,94,111,83,103,103,99,102,87,102,99,112,91,94,101,106,93,104,99,102,102,92,106,99,104,98,106,80,94,98,104,96,95,105,110,104,102,98,102,103,99,104,114,101,107,98,103,106,102,95,114,105,90,105,95,112,117,105,111,106,97,99,72,100,105,99,102,101,105,94,108,84,82,96,98,99,101,103,105,104,94,87,97,108,102,105,104,108,101,95,94,109,113,106,96,108,97,92,101,106,91,106,95,99,94,99,102,100,101,101,96,99,106,104,103,97,86,103,108,86,106,88,109,114,104,109,104,95,105,97,106,109,112,86,95,104,99,87,101,111,106,105,110,97,109,76,91,106,103,107,114,102,105,105,102,95,105,116,96,103,100,104,96,117,100,91,99,95,108,106,109,98,105,106,97,100,77,105,113,103,109,99,98,98,101,111,108,96,96,104,102,89,99,110,104,106,99,105,108,124,103,102,100,108,106,95,106,96,90,104,102,99,97,112,110,101,104,106,101,104,100,110,106,88,106,94,99,98,104,106,113,86,105,100,109,96,118,92,97,98,96,118,120,106,99,92,101,109,96,114,101,105,102,104,91,112,104,94,101,112,105,104,103,104,117,93,99,105,100,99,102,105,97,110,98,102,104,106,100,105,118,101,107,103,103,99,92,107,78,101,97,101,91,96,96,96,112,95,106,105,103,104,100,108,107,104,128,112,121,103,92,103,84,95,96,108,91,109,92,104,103,100,101,99,95,100,89,80,109,88,93,81,88,107,99,114,101,91,90,71,110,107,99,114,99,102,109,113,95,104,103,101,92,101,105,102,107,102,103,99,109,95,103,105,99,101,102,105,96,91,106,91,90,102,92,109,101,95,102,101,103,95,101,102,101,96,102,97,102,104,103,112,110,87,104,110,102,102,101,102,109,112,95,102,110,100,109,101,115,113,109,98,95,94,108,103,106,97,108,107,106,105,99,96,93,98,83,105,100,103,110,97,108,99,94,107,95,108,103,98,105,101,104,102,109,112,94,100,104,105,110,95,105,82,94,96,96,111,110,108,95,95,102,98,105,98,103,107,106,97,91,96,83,98,101,107,109,104,98,108,110,99,102,102,99,94,102,112,90,103,95,99,105,98,127,96,100,102,104,103,114,109,93,105,81,107,117,105,112,121,113,108,103,95,96,101,105,105,107,107,109,100,117,115,105,108,101,97,107,116,97,90,100,97,99,96,94,107,105,103,115,99,101,92,96,111,99,110,102,100,93,110,103,102,102,103,108,110,93,100,109,88,105,114,98,117,99,97,105,114,102,89,109,101,104,109,111,96,95,102,94,106,104,113,110,107,97,99,102,109,98,94,101,105,95,109,108,99,101,113,104,103,109,98,95,104,96,110,103,102,91,97,97,96,104,101,107,94,101,110,104,102,103,105,113,109,88,97,96,101,91,103,109,90,92,103,110,133,100,102,104,75,92,98,102,110,88,107,105,110,103,100,101,103,107,98,119,97,106,100,75,107,91,94,102,100,89,106,108,102,119,94,104,99,104,108,104,119,96,98,93,103,97,105,109,108,101,103,102,137,102,102,97,101,104,99,97,111,95,107,102,105,85,87,105,101,101,95,109,113,95,100,103,81,96,94,113,107,92,96,109,100,98,108,108,96,99,102,96,100,100,109,101,98,101,94,141,117,112,98,107,102,94,100,108,99,106,97,101,105,104,100,110,102,105,102,101,100,98,105,124,100,97,110,101,107,117,118,104,96,117,102,101,95,105,98,82,106,100,92,96,95,91,96,104,94,102,107,64,101,111,98,101,93,103,105,112,97,100,98,97,105,109,97,101,106,99,94,109,88,104,106,107,87,104,110,76,110,105,97,110,98,110,102,79,94,99,100,98,110,112,81,106,109,109,109,102,103,108,85,105,103,99,106,112,104,109,111,103,110,102,105,107,96,96,93,99,88,117,91,103,92,91,111,101,115,106,108,111,113,90,93,102,114,106,103,100,109,98,106,107,118,106,100,94,87,118,107,121,98,83,92,85,98,105,96,106,102,96,104,97,100,109,105,89,93,100,106,97,105,110,101,102,100,112,106,109,110,77,105,91,110,99,100,106,102,96,96,94,100,107,98,98,104,113,98,102,102,122,101,104,112,117,108,98,112,99,87,104,104,103,89,97,97,100,116,123,107,108,106,100,107,108,115,103,100,95,101,95,94,109,104,100,93,95,91,106,104,103,97,98,97,93,92,96,107,109,99,104,112,100,91,101,102,98,103,104,77,107,106,103,102,95,106,101,92,84,106,93,99,119,114,108,105,108,111,109,98,104,96,103,100,97,105,105,113,115,108,108,106,110,124,109,110,103,87,102,104,110,113,103,100,98,105,109,87,100,99,114,108,113,106,106,107,109,122,112,115,120,102,105,87,100,93,91,104,107,96,101,84,99,96,102,110,101,106,97,106,109,117,109,104,109,104,112,103,106,83,89,115,97,101,104,102,114,101,106,108,114,76,102,106,103,100,106,91,92,107,113,101,106,112,108,100,107,103,105,96,103,104,101,104,103,107,91,102,112,103,98,100,106,104,94,96,104,80,102,101,100,96,104,107,105,111,116,117,125,104,104,98,95,97,106,96,101,111,100,95,100,114,105,105,99,104,106,105,102,107,107,99,109,105,100,112,111,111,118,104,112,97,97,95,104,109,115,100,114,105,92,108,106,115,109,105,95,100,110,103,107,105,104,104,100,133,106,103,96,102,87,113,120,107,113,106,102,112,106,97,112,106,97,110,106,97,101,107,105,99,102,107,107,102,100,108,106,102,99,110,113,101,113,106,111,110,113,102,99,103,109,106,102,110,95,100,113,101,92,100,102,101,100,110,111,106,115,113,109,106,95,107,99,108,107,111,104,99,111,97,104,100,102,83,109,96,91,106,99,108,109,109,111,108,109,119,110,119,104,97,107,102,103,112,102,108,119,102,96,100,110,105,108,105,105,104,124,103,114,99,94,102,96,117,105,109,103,106,105,113,94,108,70,114,119,105,101,104,104,104,102,113,110,103,92,112,88,107,110,104,115,111,103,103,106,108,97,118,105,105,99,106,113,111,99,113,128,98,102,95,92,91,96,96,118,101,100,104,113,101,92,115,105,96,104,104,105,110,103,103,102,113,113,116,102,107,96,109,117,96,116,107,89,99,111,106,108,99,90,101,103,102,107,93,104,99,101,116,99,74,106,102,99,110,121,101,110,100,112,105,64,108,103,102,100,105,101,112,102,88,96,108,105,91,110,107,113,88,99,107,99,106,95,103,105,99,100,98,72,110,90,106,111,107,112,102,109,108,93,99,106,103,102,111,118,100,122,96,90,100,103,99,109,98,109,105,109,100,103,93,100,102,99,91,113,104,92,107,108,97,116,98,92,92,102,106,110,115,104,91,112,103,105,99,83,103,102,110,108,97,99,101,105,103,97,109,106,112,78,101,100,111,113,98,90,101,104,106,101,103,109,102,96,95,92,106,107,104,94,95,107,94,103,107,96,106,102,103,100,102,104,106,99,93,110,113,107,98,97,104,92,98,97,104,98,119,101,116,112,99,107,100,105,108,98,101,110,95,109,104,100,105,107,113,98,82,106,106,110,104,112,83,103,99,97,84,109,107,101,96,106,100,104,103,112,100,98,92,117,94,113,104,107,98,110,95,107,108,115,101,109,101,102,98,110,106,113,103,109,109,88,114,93,106,96,109,103,104,102,106,98,113,102,102,108,101,98,107,99,101,93,106,120,97,96,111,99,99,102,108,105,100,101,105,97,104,115,105,94,108,98,103,106,111,106,107,100,93,105,98,105,106,107,103,91,96,95,104,106,105,111,106,107,99,105,113,97,110,102,104,124,87,105,107,117,98,99,107,110,105,101,109,99,105,98,124,98,91,87,93,102,102,92,114,99,112,109,102,90,108,107,106,104,99,111,108,108,91,108,113,106,106,98,114,113,95,119,105,106,98,97,112,103,102,99,101,104,96,104,115,113,93,99,104,106,90,108,111,100,108,109,112,113,99,103,108,105,96,104,95,109,79,101,111,104,103,104,110,102,95,108,118,99,101,94,101,96,104,91,102,104,115,98,109,96,106,102,98,99,100,103,105,106,107,107,109,104,118,97,109,105,105,116,87,101,109,104,85,100,115,105,99,100,106,104,96,101,103,90,86,115,89,102,97,102,103,100,115,106,108,114,100,105,101,109,97,96,98,99,94,97,105,102,93,67,109,100,102,103,111,107,98,85,101,107,102,105,106,106,104,105,108,106,106,106,105,106,107,104,96,106,104,106,107,107,99,104,107,97,80,100,105,114,95,102,87,108,103,102,90,97,93,89,98,109,101,121,87,98,120,103,106,108,111,104,116,111,99,109,104,102,109,105,99,97,111,102,102,95,93,117,105,103,95,112,109,108,104,108,107,94,101,106,97,110,96,113,101,111,102,111,112,108,102,114,94,113,106,102,95,97,107,111,83,104,121,91,110,96,106,95,104,103,97,107,105,101,100,79,98,94,110,117,96,91,117,92,102,97,99,95,90,105,104,91,97,109,101,99,86,98,92,95,112,102,102,109,107,97,108,96,106,94,104,105,106,108,100,100,121,88,122,109,106,99,113,113,100,111,94,104,95,87,110,112,96,106,92,102,106,98,106,89,93,116,94,118,103,100,106,104,104,106,115,113,112,108,100,103,115,95,108,104,98,106,105,98,56,79, +425.87589,97,106,87,101,84,98,102,91,95,77,92,99,93,103,93,104,98,100,95,62,84,101,98,98,117,111,98,115,94,106,91,91,98,98,96,107,95,103,104,94,100,96,87,104,103,106,90,106,79,108,95,99,100,92,96,96,95,106,107,110,98,117,98,89,97,108,92,98,90,99,105,103,96,117,98,102,107,101,91,103,108,105,93,104,96,89,105,100,98,101,117,114,108,106,97,101,111,102,133,101,100,98,99,105,85,95,104,116,96,94,98,104,104,94,109,104,104,104,101,99,105,103,112,96,95,104,92,90,109,111,93,115,106,114,98,99,110,91,99,108,103,112,97,98,98,97,90,109,104,89,93,99,107,87,109,62,103,94,112,97,76,110,114,99,99,93,87,99,102,99,116,106,84,106,94,111,97,83,110,103,115,109,104,116,105,96,97,99,98,102,102,101,104,94,79,104,93,92,106,102,109,102,91,113,101,101,80,114,115,112,99,110,100,96,102,103,114,104,95,95,95,100,92,104,90,99,99,95,109,98,96,105,102,93,79,95,108,96,119,101,101,92,101,110,90,100,100,109,106,110,104,96,100,104,113,100,97,105,97,104,83,120,98,112,104,105,91,93,105,110,90,102,100,101,102,111,106,105,97,90,97,99,99,129,110,94,103,105,98,100,106,105,108,91,109,102,94,98,95,101,99,111,126,107,103,102,103,113,94,100,100,114,108,98,110,97,115,95,91,108,85,102,105,94,98,85,102,95,114,102,106,105,113,99,113,105,101,99,97,105,99,104,94,97,91,110,102,103,105,97,95,101,102,99,110,110,110,103,108,105,106,87,109,91,89,87,106,105,97,107,118,104,105,106,100,109,95,105,108,105,104,111,97,121,94,99,100,103,102,107,100,97,92,113,105,105,92,102,105,113,103,102,98,100,101,97,98,105,100,89,101,95,88,99,96,109,105,104,96,100,97,117,101,111,94,95,96,89,102,100,99,105,120,99,92,114,98,111,95,102,104,102,82,108,92,105,97,99,102,97,96,100,111,95,109,100,102,101,104,86,88,96,106,101,99,96,101,104,106,96,104,104,100,98,105,92,101,108,99,98,98,105,98,115,105,95,99,98,94,95,98,106,100,79,77,106,102,102,101,77,116,99,105,93,89,103,96,97,103,97,106,103,92,98,99,113,91,91,101,95,102,118,110,84,109,88,102,125,90,99,95,110,97,100,96,110,99,102,96,99,108,113,101,95,109,111,113,99,94,102,89,120,102,99,85,105,103,103,94,111,105,95,110,110,68,100,103,101,98,115,102,99,105,110,100,110,106,90,114,93,97,97,109,91,94,93,109,103,98,118,102,112,108,116,111,104,98,99,104,91,103,118,99,86,109,114,103,109,104,98,101,90,110,106,107,99,101,97,102,99,102,98,95,100,120,100,91,91,96,99,94,108,94,112,91,95,97,94,98,96,102,107,124,97,104,94,101,96,106,100,93,104,117,105,107,105,113,99,103,101,108,108,108,80,101,105,103,95,98,98,93,101,101,105,99,97,96,105,101,111,103,112,127,103,92,105,99,97,102,102,90,112,94,111,98,95,95,108,95,91,113,103,109,114,100,100,112,98,102,100,99,105,95,110,101,99,99,107,108,100,98,94,102,108,101,95,106,106,95,110,104,99,95,104,107,109,106,103,116,106,109,88,104,100,94,105,105,110,99,96,105,106,105,99,106,101,103,108,112,107,105,104,96,98,88,95,103,107,98,101,99,105,124,99,89,96,102,102,108,103,106,97,99,105,104,104,108,104,87,121,120,84,90,104,118,92,97,96,100,107,106,91,106,109,105,101,105,110,105,102,97,101,107,79,81,99,114,112,96,99,100,97,106,95,108,94,109,100,126,108,100,94,112,87,95,100,100,99,101,100,97,99,101,101,92,111,106,95,106,91,100,102,120,101,101,104,107,108,96,109,105,93,86,103,98,108,94,109,90,106,108,116,97,105,103,103,110,105,105,105,102,100,95,101,107,104,105,115,98,104,104,107,109,98,96,104,107,94,87,111,91,88,114,103,106,102,100,97,101,92,106,107,107,102,119,64,101,106,99,100,101,87,101,102,101,95,98,96,114,96,97,100,91,109,103,87,95,102,100,76,108,112,107,102,100,105,104,96,107,93,98,96,113,98,122,103,104,108,107,101,109,104,97,102,104,101,111,92,108,118,105,89,106,119,110,102,87,100,103,108,92,103,104,109,104,98,108,96,97,103,90,109,100,91,100,112,102,82,96,95,99,99,82,110,86,102,106,98,112,102,88,100,95,107,99,98,108,92,112,106,92,115,110,105,106,108,87,97,109,85,118,100,109,94,120,100,104,104,99,99,101,102,114,109,99,97,100,101,95,98,107,104,95,109,99,95,96,106,105,82,90,109,94,127,96,97,93,105,104,105,106,91,110,94,103,106,100,103,104,109,116,100,94,113,101,95,106,105,103,108,110,107,107,100,103,106,115,108,98,101,116,107,92,93,95,104,112,87,114,99,99,102,106,99,107,102,93,105,104,98,117,109,94,105,104,94,113,95,107,92,95,113,107,98,107,108,100,85,72,99,110,100,87,91,83,119,101,124,109,91,106,98,103,98,95,100,104,106,107,98,114,107,114,104,98,100,107,115,103,96,94,107,117,106,108,113,92,100,113,104,113,105,102,98,98,105,109,92,92,108,105,94,108,95,97,104,105,109,107,99,105,99,94,103,99,98,103,108,103,97,112,100,100,89,111,102,98,95,107,101,109,112,108,105,89,106,91,102,103,99,106,116,106,101,105,102,112,96,117,103,101,98,105,108,97,87,118,99,87,95,104,118,98,104,94,96,103,108,106,109,102,102,109,97,109,87,94,113,101,107,97,111,102,97,105,96,97,98,98,107,104,99,71,106,106,106,109,94,103,108,112,105,103,98,94,105,105,101,104,98,105,96,107,100,99,102,103,95,109,95,100,96,90,96,102,107,92,103,107,99,101,98,92,87,100,105,110,108,110,93,104,98,108,104,108,106,104,107,95,105,111,88,97,98,105,102,107,101,99,100,95,107,97,110,101,95,111,106,96,104,102,100,117,101,96,86,103,100,71,100,102,97,96,94,108,97,101,94,113,103,104,98,108,88,97,112,109,100,101,97,104,99,100,105,101,89,113,83,104,116,108,95,104,101,90,103,100,102,93,103,108,93,103,103,113,104,105,104,96,102,97,94,106,101,108,92,101,105,103,103,94,110,107,95,107,103,86,112,97,99,105,105,105,89,98,84,117,116,108,100,98,93,98,97,99,105,107,122,105,109,95,109,99,100,95,106,122,89,102,113,101,96,108,86,92,100,101,101,101,98,89,109,110,109,89,103,110,112,119,98,92,89,106,98,111,107,100,95,129,93,107,96,91,95,84,103,83,100,105,98,102,104,97,101,96,92,108,112,107,109,101,113,105,98,100,94,113,96,101,101,95,107,83,92,97,99,102,102,110,103,101,104,97,94,104,99,109,96,103,81,105,123,100,107,99,96,98,105,104,107,99,106,100,107,107,105,101,109,117,104,104,99,104,113,101,104,108,94,102,90,101,97,99,106,107,102,114,95,103,99,104,110,102,96,101,103,104,97,104,97,95,93,103,99,111,108,104,101,100,99,88,101,98,94,102,99,98,109,114,100,118,111,99,92,96,91,102,100,96,97,94,109,107,106,108,107,122,98,96,102,92,97,108,91,99,108,102,98,99,98,104,93,107,91,97,105,99,96,103,93,112,87,102,107,104,98,108,112,98,104,94,97,95,103,115,117,69,105,105,103,84,87,105,91,95,102,98,83,99,95,94,102,109,92,104,88,109,102,109,108,106,103,105,107,108,99,109,95,105,99,99,101,103,92,98,97,105,105,99,98,103,96,96,109,93,101,102,87,102,113,102,95,116,102,107,125,107,111,107,97,99,106,95,99,90,106,101,103,108,94,103,100,106,105,98,96,97,105,101,103,100,110,93,104,107,91,56,91,98,103,101,94,95,98,100,89,106,98,100,113,120,99,99,99,103,116,103,111,91,96,113,91,110,96,99,95,102,108,93,102,93,112,105,112,109,104,111,108,100,95,107,99,108,99,102,98,109,100,97,107,100,98,107,105,99,102,101,92,98,92,100,101,97,105,101,90,104,88,101,106,107,112,87,117,109,110,107,76,101,94,109,104,100,94,71,104,91,97,104,104,107,99,96,108,98,98,111,97,101,106,91,107,100,113,108,106,101,105,90,100,103,99,100,101,96,102,108,102,113,96,103,103,92,98,96,114,103,99,92,100,108,101,102,117,99,112,105,108,115,104,113,101,93,97,98,97,107,101,108,106,90,103,97,99,100,103,100,101,109,96,104,117,99,110,84,103,100,115,100,93,97,100,93,104,96,109,89,106,78,90,99,102,91,101,91,94,108,105,98,102,103,103,103,98,93,104,114,116,107,97,94,97,95,99,88,97,98,105,111,101,101,98,100,97,107,97,111,107,94,95,106,94,89,93,105,116,106,99,100,107,106,101,109,68,110,106,104,105,101,98,97,99,104,94,94,101,91,94,113,94,101,94,94,107,117,101,99,87,97,99,98,91,107,99,105,110,108,98,97,112,108,101,99,97,101,100,107,96,106,94,96,90,98,103,97,118,111,98,104,97,93,95,99,100,102,105,87,101,97,107,95,89,108,98,109,105,106,101,103,95,113,105,98,100,103,109,99,94,100,100,100,102,105,113,87,96,95,99,104,105,94,108,96,84,98,103,96,82,92,102,102,108,100,97,100,88,102,106,100,100,107,101,92,90,116,98,97,95,91,94,104,110,113,93,106,100,107,96,121,86,101,110,101,93,114,91,89,80,84,98,97,94,101,92,101,101,103,96,88,90, +426.01614,89,92,110,99,94,87,99,95,95,100,101,106,91,88,102,101,91,99,96,100,108,107,109,84,103,90,97,105,88,104,102,96,94,97,114,102,104,103,102,101,110,90,89,107,98,103,97,98,70,124,93,117,102,95,112,98,101,86,103,101,99,116,95,67,108,101,95,92,95,100,94,118,101,109,98,95,95,108,116,84,110,108,111,83,99,84,105,89,110,99,118,112,94,102,98,99,101,85,102,99,107,106,93,106,87,96,93,114,109,109,94,98,112,91,98,94,108,107,95,101,99,71,88,110,100,106,113,84,106,93,113,97,94,100,108,105,93,101,96,94,103,105,99,105,109,93,103,101,99,87,88,104,102,87,100,97,98,102,95,102,101,108,107,103,100,105,113,102,113,103,99,109,102,95,98,92,85,91,89,111,98,112,89,114,93,102,102,85,104,102,101,94,110,98,98,100,117,103,101,107,92,104,95,107,95,118,110,103,129,104,92,108,104,102,100,99,96,97,90,104,83,107,87,102,94,95,96,99,101,100,102,102,91,102,110,101,104,93,103,92,100,97,117,97,102,100,102,103,87,100,101,100,96,101,92,106,105,104,97,101,90,105,94,90,104,113,101,98,106,99,92,97,95,96,106,94,91,107,89,86,106,105,102,101,103,100,94,105,105,95,94,104,114,94,101,102,109,86,103,101,101,94,106,108,95,109,98,115,103,106,104,103,103,105,103,106,101,88,98,108,100,101,95,108,95,90,101,93,99,105,106,100,94,103,106,92,98,92,91,105,100,93,116,85,104,104,98,95,107,106,95,106,113,97,92,100,116,96,103,98,87,101,120,76,84,100,107,102,114,107,115,98,95,80,109,95,94,100,109,118,113,93,96,105,95,98,100,102,102,109,116,106,97,109,102,103,91,92,98,100,101,92,97,109,103,98,97,108,90,103,113,99,100,105,104,116,87,104,106,100,85,97,106,100,105,90,116,107,74,108,121,101,104,100,103,112,97,103,92,114,104,107,96,106,103,95,99,106,104,116,95,98,104,109,80,104,102,104,101,101,101,98,91,100,102,114,97,95,90,102,98,100,106,101,106,104,105,110,114,104,101,113,105,99,93,105,107,91,104,105,103,105,112,103,103,99,105,104,95,95,108,106,104,97,96,110,108,99,100,93,83,105,90,97,97,86,97,113,99,102,97,103,104,102,108,112,98,103,103,90,96,110,106,100,104,103,91,104,102,93,88,98,95,109,110,104,111,99,107,113,98,106,97,105,84,101,95,112,102,99,98,91,88,107,107,119,102,112,99,102,95,86,105,102,113,109,107,105,84,100,108,82,99,96,93,104,100,102,104,92,108,121,100,105,102,112,107,100,103,95,100,116,106,101,99,95,96,113,109,106,104,100,100,107,109,107,94,131,109,101,98,102,98,104,110,111,95,103,100,105,98,97,103,109,94,107,103,98,104,99,100,100,109,103,116,96,79,103,99,105,110,104,109,95,89,102,92,107,104,104,108,98,97,98,101,99,100,100,97,103,108,95,112,102,101,107,126,109,91,110,105,104,93,92,93,107,87,106,108,107,86,108,94,94,102,100,96,115,116,98,99,94,127,99,100,104,94,101,108,109,104,94,97,107,96,102,97,99,90,107,109,100,106,112,82,112,99,109,107,107,100,113,90,100,101,101,78,103,108,100,99,101,102,112,86,78,107,109,106,107,108,93,103,108,104,99,99,97,95,91,101,102,112,94,74,100,89,98,95,100,107,96,107,101,100,109,103,100,95,96,108,96,112,97,99,115,105,107,101,108,96,107,105,105,111,98,110,106,99,105,102,102,97,101,104,107,99,93,119,104,116,94,105,97,111,97,91,99,104,83,93,104,97,102,87,107,111,93,110,105,105,105,116,110,105,108,106,99,104,108,97,110,98,100,102,103,103,108,86,97,110,99,105,74,116,104,102,99,94,109,103,90,97,109,114,96,115,88,108,103,96,107,103,108,96,103,100,107,102,104,102,101,98,98,103,95,96,110,114,99,114,103,99,90,98,90,103,100,95,124,102,102,115,82,108,110,113,104,104,106,112,106,103,100,104,96,97,110,94,96,108,101,109,114,91,109,89,99,99,100,102,96,88,100,102,95,104,100,100,82,105,100,112,110,108,90,130,103,104,110,97,134,93,103,98,97,99,95,92,109,120,132,99,105,113,104,103,92,105,109,113,94,101,103,103,105,108,105,96,101,101,103,105,81,104,110,93,98,105,103,90,91,104,88,102,103,105,110,102,102,94,107,105,87,106,98,104,100,102,98,98,106,105,103,98,101,97,98,99,103,95,102,91,91,108,105,96,126,106,108,92,123,117,93,108,87,97,99,102,97,72,109,102,92,110,101,97,91,97,94,98,100,100,99,92,112,109,87,96,96,88,102,121,105,108,87,91,93,105,86,109,109,114,113,117,104,98,107,106,98,114,111,100,102,106,94,104,91,108,101,98,84,102,109,99,101,89,101,98,94,98,91,99,114,108,101,95,112,103,87,86,106,106,96,102,90,98,113,99,99,96,100,106,102,103,95,100,104,100,106,98,103,99,89,102,101,103,91,102,109,113,92,97,104,102,95,100,103,95,97,106,105,117,109,94,104,105,103,112,111,107,95,90,89,109,114,102,103,107,99,95,88,97,107,106,93,107,98,114,101,96,101,85,102,95,110,102,92,97,108,102,89,103,104,88,105,112,112,105,114,103,103,101,96,87,87,102,86,104,94,85,101,105,107,104,100,112,100,98,99,102,94,98,103,81,106,90,108,108,109,97,117,95,104,94,107,95,98,105,101,108,100,119,96,97,105,104,97,101,103,95,102,111,107,96,102,97,109,101,99,104,108,87,91,98,97,101,108,94,104,105,104,104,110,103,99,103,113,89,98,106,96,106,107,97,102,109,102,110,103,107,76,94,100,111,127,108,96,113,105,99,102,96,105,101,103,84,103,105,96,107,102,109,93,103,106,115,117,94,101,126,102,102,102,104,99,109,108,105,98,105,90,104,105,91,108,102,98,100,108,84,96,105,100,107,101,116,102,108,100,93,87,86,107,102,96,95,106,94,97,99,104,113,101,106,101,75,106,105,99,104,105,109,111,104,101,102,101,101,106,91,102,100,94,99,107,102,103,92,92,89,98,102,98,113,100,113,100,102,116,98,98,92,91,103,106,101,92,110,102,95,84,101,115,100,101,91,109,97,102,125,101,108,100,105,111,102,84,99,100,103,107,98,116,108,107,109,107,102,99,101,91,106,109,101,95,104,106,105,93,104,98,113,108,110,98,103,97,107,92,96,105,94,102,95,99,101,102,113,98,101,107,101,96,103,105,114,102,70,105,103,96,107,104,100,103,81,89,92,104,89,106,106,103,106,109,101,103,109,107,100,102,103,101,95,106,85,100,103,102,105,101,94,97,103,92,106,100,101,96,97,100,103,103,94,101,96,113,99,104,103,100,102,96,92,87,98,98,102,104,104,102,89,98,108,103,102,103,109,96,102,105,92,109,91,90,123,90,102,112,99,99,106,100,102,113,102,93,101,110,120,111,102,102,117,102,95,94,101,94,107,96,89,112,100,103,116,99,100,102,104,76,108,109,103,111,105,107,110,99,104,98,104,101,93,91,104,105,109,100,108,100,91,109,97,94,102,112,103,95,100,108,95,104,104,102,106,99,108,106,98,102,107,111,92,107,104,92,94,92,102,106,102,100,107,99,94,116,103,92,104,93,102,97,110,95,100,103,111,104,102,91,115,81,104,106,96,99,102,95,101,90,95,115,112,106,82,105,97,85,110,103,117,102,97,104,109,98,106,105,94,106,99,100,98,103,92,97,98,113,108,93,99,103,105,100,107,100,99,82,96,105,95,87,99,105,97,107,103,102,99,98,106,105,113,92,100,105,102,97,96,103,106,93,106,102,97,103,99,99,99,89,106,115,97,96,98,106,104,102,103,118,93,99,100,111,109,103,92,109,102,104,95,100,111,83,86,107,106,99,112,97,103,100,96,100,101,107,95,98,94,116,88,101,99,106,87,108,109,113,96,97,96,115,105,86,101,91,100,106,110,99,99,98,100,111,106,96,96,93,103,113,110,102,103,101,110,103,102,102,104,94,90,95,96,89,101,105,97,94,102,95,102,96,98,104,100,76,97,87,101,104,99,109,103,121,97,102,93,105,103,109,99,102,104,89,99,96,124,109,104,98,90,103,101,91,104,99,99,109,103,99,100,103,99,94,93,93,102,88,105,106,109,105,100,97,114,79,94,107,102,107,97,109,108,121,98,99,100,104,97,100,116,103,92,111,102,102,103,106,101,97,100,105,92,106,112,100,116,94,105,110,104,105,99,86,98,98,87,94,95,100,109,108,105,100,111,98,103,100,102,100,109,95,95,90,96,105,91,89,113,100,99,94,92,81,99,96,102,99,99,109,99,102,98,94,92,95,109,98,91,99,92,103,104,105,96,107,97,100,97,87,116,119,91,102,96,110,96,91,94,99,95,111,103,108,100,109,96,101,105,101,95,83,93,98,104,102,101,97,91,99,104,100,95,99,102,99,101,93,91,101,100,111,107,98,104,98,106,95,105,102,99,99,93,99,117,97,100,102,103,82,94,91,99,92,99,116,99,98,92,76,104,97,94,98,102,87,102,90,106,111,98,113,99,89,105,116,102,113,113,109,102,89,101,96,102,98,101,85,92,111,102,96,95,73,104,97,105,99,108,102,101,95,96,98,109,112,105,107,92,99,109,95,99,104,96,95,95,97,106,94,108,85,109,92,96,105,101,113,105,95,111,94,95,104,94,95,86,72,98,110,113,96,103,92,102,103,89,106,104,99,73,83,101,97,99,110,90,101,101,104,105,117,99,95,124,91,103,91, +426.1564,95,100,104,97,92,94,103,105,125,94,98,92,101,96,100,94,109,109,105,107,91,92,98,102,105,102,107,96,105,103,104,80,82,101,99,113,103,99,102,95,96,112,104,90,109,124,96,95,99,102,99,100,93,106,87,105,86,111,100,101,108,106,108,102,95,104,91,100,94,108,109,116,97,99,97,96,94,106,111,103,103,109,106,107,94,107,101,96,102,110,93,110,99,100,103,104,97,107,96,98,95,97,89,101,102,116,105,102,101,91,106,110,107,94,102,91,90,115,111,69,97,102,99,101,96,96,102,84,93,95,102,93,109,99,122,101,100,99,101,102,96,111,116,112,107,106,91,99,99,87,100,115,110,105,97,105,100,97,102,109,110,72,104,102,106,106,117,89,107,101,102,103,107,106,101,98,112,100,103,95,126,91,120,95,102,103,99,99,102,109,94,106,95,104,93,88,103,99,99,104,98,99,101,97,108,113,107,95,115,113,95,100,105,117,102,97,107,107,96,107,115,104,76,99,95,98,98,99,98,107,98,108,109,99,97,106,98,96,125,101,92,92,87,104,96,88,100,103,109,95,103,109,98,107,86,109,105,103,101,106,112,99,114,100,101,115,107,113,108,103,105,99,88,103,101,101,94,102,105,102,99,99,98,106,99,105,100,98,108,100,101,95,115,105,102,114,110,104,95,98,95,97,98,106,99,109,114,97,105,107,91,113,105,108,106,95,107,100,113,96,93,90,101,77,105,94,112,92,124,100,108,114,100,104,111,102,100,105,99,99,97,97,104,95,99,102,94,107,95,102,114,108,100,86,102,105,100,102,96,112,113,105,108,98,102,86,110,118,97,106,104,101,116,102,106,98,97,103,112,108,110,87,100,112,101,86,105,103,100,104,106,97,94,111,96,100,97,115,112,101,97,98,99,99,102,101,99,114,109,108,95,96,115,98,103,99,106,102,101,102,95,113,93,114,105,105,112,104,92,104,94,104,108,104,98,95,104,102,101,103,109,97,108,100,94,87,102,103,102,102,95,74,99,112,99,90,97,110,90,98,100,101,103,106,105,113,112,97,93,94,108,109,92,101,94,102,100,102,98,98,99,96,116,103,100,117,105,94,94,91,98,107,109,97,95,113,96,110,105,106,110,108,103,105,99,104,97,105,108,106,109,95,92,106,106,106,107,94,99,94,101,100,95,105,103,99,111,95,95,82,103,103,99,104,101,102,102,123,114,105,93,102,109,99,99,100,103,100,96,110,110,107,104,110,97,93,100,114,104,103,88,96,103,100,99,100,110,109,103,98,86,96,108,102,112,84,106,103,102,107,99,91,94,97,117,103,104,110,100,92,112,103,88,99,96,128,113,75,112,101,82,112,100,87,103,103,113,108,102,103,90,98,101,113,101,97,104,98,104,104,105,97,109,98,93,103,107,95,95,114,109,104,103,102,91,125,101,101,100,100,96,106,101,112,101,87,113,105,97,99,109,104,106,100,97,110,105,108,102,96,112,104,102,113,93,106,101,105,105,112,104,108,113,112,91,113,108,96,102,97,102,115,126,97,101,102,89,112,107,100,101,108,107,120,97,102,98,102,97,98,105,109,101,109,101,109,111,100,97,98,92,109,107,112,100,103,98,103,90,99,91,98,101,100,95,85,106,104,97,88,98,101,97,89,96,96,94,100,113,126,119,96,107,106,108,105,105,116,91,106,111,96,121,91,95,78,100,99,95,93,106,95,101,95,95,108,94,101,92,99,75,94,97,104,96,104,103,105,93,101,107,105,103,100,105,96,100,107,108,104,96,108,91,95,91,100,106,104,106,102,101,111,103,106,101,114,106,103,99,113,110,99,95,100,97,93,76,113,109,97,109,107,100,102,96,105,115,119,106,100,106,106,107,87,102,107,113,104,123,113,111,103,107,117,97,100,104,99,104,100,111,104,88,96,96,106,99,114,94,110,86,87,112,96,96,92,99,115,98,100,111,105,97,108,107,95,108,109,96,90,113,77,99,107,90,108,106,119,109,95,114,108,113,91,110,100,99,107,100,94,98,108,110,113,104,97,96,102,95,93,110,97,101,100,119,107,98,103,95,106,94,101,106,110,98,99,91,96,97,97,99,107,96,105,87,105,97,104,101,96,96,112,104,104,108,110,101,91,86,98,96,100,101,107,100,101,100,102,92,108,98,98,104,98,106,105,96,104,88,86,117,103,98,93,94,114,100,93,95,101,102,111,107,105,105,99,101,100,100,110,101,91,87,92,111,110,97,117,98,113,115,101,97,94,113,98,108,92,93,99,97,96,106,112,104,110,97,119,99,112,107,97,106,85,94,101,99,106,96,102,100,77,108,90,113,84,94,105,104,108,100,90,100,118,99,98,96,90,93,105,92,92,96,103,107,92,97,93,96,105,105,108,104,99,113,101,98,93,102,97,88,100,105,106,94,111,107,108,98,111,98,105,95,108,114,102,98,97,95,95,105,101,115,99,98,95,101,100,98,69,109,96,100,118,98,113,85,93,97,107,97,108,109,109,92,105,112,85,103,106,102,109,99,100,100,99,104,103,112,101,92,88,95,90,99,105,98,97,95,98,99,94,100,88,96,95,105,96,105,106,115,104,105,113,105,91,107,99,92,98,125,91,92,98,106,112,105,91,87,107,102,94,98,97,97,105,105,90,110,100,106,112,111,103,102,113,96,108,94,111,100,84,94,109,95,104,107,92,118,102,107,109,113,96,105,117,108,96,100,104,101,116,102,110,117,102,109,109,107,91,103,111,104,98,96,119,96,100,111,98,100,101,104,106,101,95,108,108,95,101,108,111,98,95,74,102,111,107,92,99,110,119,112,100,95,93,93,105,109,110,101,112,105,98,102,98,101,95,112,106,95,103,99,113,97,101,105,108,100,104,109,107,110,102,108,101,101,109,97,115,103,97,92,106,107,104,99,95,106,108,101,108,99,103,99,92,111,114,92,98,119,83,98,96,80,110,107,96,107,104,92,111,106,111,99,101,103,107,92,94,102,106,101,104,100,106,98,102,100,108,91,103,131,98,96,112,105,102,106,103,92,109,96,107,107,99,101,98,98,102,108,104,95,109,108,123,103,101,101,100,99,96,103,109,95,81,100,104,109,92,102,93,103,108,109,87,113,99,96,100,117,109,103,109,110,104,100,89,99,103,128,101,94,109,105,98,103,99,113,108,96,105,101,104,98,106,100,104,99,90,92,106,101,109,96,85,108,98,116,105,144,100,109,114,111,99,96,104,106,102,106,100,91,104,94,114,104,92,98,85,109,100,102,99,100,111,100,100,102,108,104,103,97,99,101,112,106,89,95,101,71,109,95,95,106,116,108,102,99,103,98,108,90,98,95,108,127,100,101,91,108,105,104,111,92,96,113,100,113,105,93,100,123,102,102,97,107,91,103,91,86,111,100,95,99,98,100,101,109,114,93,105,113,95,92,108,99,98,104,96,102,106,104,95,103,114,109,114,114,101,105,111,100,106,107,105,89,105,85,96,108,100,112,88,114,103,102,112,99,102,120,102,92,101,107,107,100,103,113,81,126,98,101,98,101,99,105,104,102,95,109,113,96,106,109,104,93,105,109,108,94,92,102,105,106,93,107,95,111,105,97,86,111,98,102,96,95,92,113,108,100,100,101,101,97,108,93,117,106,109,111,105,99,99,109,110,97,103,107,99,115,104,105,112,100,113,101,99,106,87,102,96,99,95,107,104,81,99,103,93,105,108,108,100,109,115,96,109,101,94,110,106,98,104,115,102,101,91,108,104,113,114,94,97,99,104,104,107,94,105,121,112,101,97,107,102,114,93,104,115,103,110,105,106,112,103,104,107,107,108,104,100,96,97,108,110,100,94,102,97,100,111,101,106,107,111,91,102,104,102,107,106,104,138,97,98,87,103,112,93,107,93,105,98,96,98,99,94,120,126,92,94,94,107,113,87,113,101,102,109,114,105,102,97,102,101,104,101,96,114,96,105,101,113,99,96,104,107,116,94,113,102,105,103,100,94,117,98,113,104,103,104,101,88,95,95,98,95,95,97,112,107,108,102,103,106,98,88,100,100,92,106,102,114,100,112,108,97,101,109,111,117,108,110,95,107,99,101,106,107,103,98,97,87,100,101,100,102,99,102,111,96,105,108,109,112,107,108,105,106,98,103,110,98,109,107,107,117,104,106,104,102,99,101,104,104,104,105,104,107,103,109,107,101,104,104,111,112,106,96,111,102,97,87,100,107,90,97,115,98,92,109,91,95,93,108,100,101,92,107,108,95,107,95,104,110,105,95,89,109,112,106,103,108,119,114,96,107,117,98,105,88,98,95,89,98,111,84,106,99,91,107,112,99,104,92,108,97,113,95,96,108,102,96,94,100,98,106,105,107,90,94,102,103,97,93,91,90,117,109,116,101,96,116,85,101,103,96,113,103,104,100,80,109,101,104,95,103,101,95,100,98,104,110,106,95,90,104,103,96,94,89,105,110,110,88,107,128,101,100,94,94,100,107,104,105,103,98,109,100,98,103,101,106,95,106,106,121,102,77,96,102,107,102,103,100,101,98,90,93,98,99,101,102,100,87,97,105,103,101,102,104,110,104,121,99,110,99,106,90,96,103,116,107,71,95,99,112,104,106,101,106,103,91,92,102,117,84,106,109,111,105,108,92,98,111,104,92,108,99,106,109,109,98,111,102,96,107,99,108,98,108,119,116,101,99,103,101,105,107,116,101,98,101,107,100,82,89,104,98,102,90,105,102,102,108,109,108,106,87,108,99,103,102,96,106,115,101,97,98,94,103,105,91,111,105,91,106,85,95,108,113,95,102,100,92,96,71,102,92,93,99,100,107,89,95,103,108,107,99,95,121,114,105,100,98,120,107,91,96, +426.29666,111,84,94,108,92,99,111,110,99,111,86,79,108,98,99,91,92,110,108,94,92,108,106,93,91,130,108,68,102,100,91,91,99,106,124,115,101,83,108,100,105,101,99,71,68,105,96,107,95,98,103,96,118,103,102,90,91,99,103,94,99,90,97,113,125,114,113,99,104,116,104,94,108,105,99,101,101,97,105,92,106,95,102,104,110,97,103,115,97,95,83,98,92,92,91,91,98,93,98,105,120,97,96,103,100,96,90,97,76,105,102,94,99,94,95,114,97,109,91,106,105,109,105,98,114,101,105,89,106,102,95,96,106,99,100,99,93,106,98,91,109,84,104,100,98,99,114,104,98,92,95,118,110,96,97,92,91,99,103,100,95,103,92,102,100,90,104,91,100,92,92,108,116,111,96,81,92,90,93,101,106,104,94,100,102,100,85,102,93,96,95,96,111,97,101,108,99,102,100,92,98,96,95,95,101,104,107,108,110,103,100,91,100,106,104,99,110,99,105,105,99,113,101,90,91,119,91,113,97,100,96,102,112,102,99,96,106,106,108,100,99,108,110,107,101,98,87,106,91,93,103,98,91,105,101,100,98,99,101,108,102,108,99,94,101,103,105,91,98,106,96,75,103,97,116,105,93,93,86,97,99,98,106,107,106,100,78,103,99,136,97,107,108,99,99,113,106,106,100,113,105,91,112,116,93,98,81,100,95,109,92,98,103,104,107,98,102,107,104,96,96,86,96,93,99,92,97,99,94,105,113,100,105,101,106,98,101,101,97,107,106,105,120,94,99,101,107,96,104,106,97,104,107,102,96,104,109,101,102,107,96,91,106,100,111,101,102,104,89,103,96,100,101,91,92,95,88,103,104,99,103,106,107,100,100,87,113,100,90,91,89,112,99,98,101,101,99,98,101,102,105,85,95,90,104,92,102,105,100,97,95,90,109,108,107,96,98,116,106,104,103,100,94,110,95,94,104,104,107,110,103,107,97,101,96,94,92,104,91,104,107,99,100,99,79,99,105,101,102,110,105,95,93,106,104,100,82,104,90,92,103,98,104,114,102,102,107,101,101,114,108,105,110,100,97,102,108,98,98,102,87,94,104,105,94,100,109,109,106,97,96,103,103,113,100,103,100,94,107,105,109,105,93,99,99,113,93,105,98,93,101,104,101,105,98,114,106,95,98,112,102,95,97,100,95,108,94,104,100,104,81,102,103,100,102,94,106,94,103,94,82,104,99,107,104,96,99,93,112,108,105,99,101,99,107,79,99,97,105,103,96,99,77,97,111,127,96,105,95,96,104,104,95,100,79,83,101,103,96,106,104,100,91,104,93,103,103,103,92,99,99,95,100,105,109,112,134,98,104,102,111,121,105,103,105,108,109,98,100,103,105,105,112,97,111,105,103,111,114,95,90,99,101,114,106,88,107,100,97,105,91,107,81,93,96,96,107,88,90,100,103,107,97,108,100,90,99,95,102,99,99,108,96,103,82,102,107,108,100,109,105,117,105,102,86,99,88,102,99,104,100,102,104,109,100,93,111,103,102,104,99,99,112,91,87,84,99,94,103,104,104,98,98,104,90,96,99,101,100,101,104,96,96,111,99,97,102,97,103,109,102,94,100,103,104,98,107,110,82,100,96,98,104,102,96,93,108,112,96,101,104,109,91,93,96,100,104,95,96,106,101,81,99,100,101,97,110,104,95,101,105,92,108,97,104,94,104,103,105,98,98,96,65,98,109,106,90,107,97,90,117,100,97,96,106,94,97,104,99,104,92,102,100,94,109,101,103,117,101,113,109,98,92,106,101,102,110,102,101,105,106,95,90,104,95,100,104,77,97,93,99,100,98,99,97,98,103,94,109,101,106,88,98,101,91,111,100,81,105,91,115,92,99,108,104,110,102,101,110,92,95,99,99,105,106,97,96,98,97,93,95,95,97,106,103,99,92,101,100,94,100,102,99,67,105,102,98,98,104,104,101,99,98,109,96,89,107,111,103,104,121,94,100,95,93,105,116,106,123,114,100,105,103,110,94,92,98,97,98,109,109,114,113,113,111,92,91,96,104,106,100,110,100,107,106,98,96,103,99,98,81,99,108,114,99,103,101,107,98,100,107,101,103,100,94,116,97,91,89,101,105,104,113,105,114,112,105,116,100,109,103,105,106,110,119,100,103,100,90,100,108,108,112,92,104,95,92,82,98,104,104,111,99,104,104,101,97,101,96,101,100,106,99,101,95,106,90,114,101,91,103,96,98,103,106,103,99,103,98,75,113,102,106,103,108,102,90,107,100,107,87,120,99,103,94,106,113,99,120,97,107,104,117,90,104,105,116,109,98,82,101,97,113,105,107,98,100,104,103,103,96,102,98,104,104,96,99,104,95,102,68,101,105,109,101,101,105,100,92,80,92,121,113,109,67,97,100,94,91,103,87,110,94,107,95,99,116,105,100,93,112,101,87,98,97,114,106,115,92,105,98,105,101,96,116,112,101,98,113,108,101,102,120,88,105,93,100,98,116,96,104,113,94,101,107,95,93,100,105,98,98,101,91,98,111,100,103,102,102,100,102,110,101,106,108,93,100,75,94,100,106,94,96,103,103,83,92,106,110,96,105,101,104,104,109,102,96,103,103,106,113,96,103,90,98,108,97,96,95,104,90,106,108,108,108,106,108,104,100,100,98,91,84,92,106,101,94,88,108,112,116,96,98,92,97,106,100,89,109,110,103,98,83,111,100,92,101,114,112,101,105,106,95,95,99,109,100,98,123,102,108,113,93,97,101,103,96,96,98,74,103,102,99,104,105,94,98,107,106,100,103,101,101,102,112,99,96,98,105,84,102,105,100,99,99,94,101,108,103,95,104,93,109,104,95,86,93,108,101,94,105,109,105,95,103,106,102,100,102,101,103,90,83,105,109,107,96,91,105,105,115,99,91,100,104,99,102,96,86,88,92,103,107,101,109,99,93,94,100,92,106,105,91,87,109,107,105,104,107,95,100,107,94,104,105,93,105,100,98,101,99,100,99,106,99,100,101,106,89,109,101,98,104,101,106,105,103,97,110,106,93,102,110,102,100,101,106,88,106,88,105,88,111,88,101,97,100,97,100,103,100,95,97,99,109,93,100,101,107,104,116,101,111,97,106,94,95,109,103,106,80,100,92,99,103,95,102,86,107,109,98,87,104,95,98,99,84,104,109,102,99,102,102,107,96,112,98,105,78,71,99,99,99,97,93,108,99,102,95,103,105,120,83,115,91,104,97,103,100,97,101,101,105,89,103,99,110,102,115,111,91,114,99,90,105,109,108,105,92,99,99,93,100,103,91,90,104,100,97,93,92,108,92,92,98,110,83,95,100,101,84,92,110,108,100,102,101,103,94,102,104,106,96,106,111,95,104,108,102,85,108,101,101,109,98,108,103,101,100,98,102,109,99,106,109,96,103,99,93,100,91,109,102,108,108,99,104,96,95,102,110,104,105,94,88,95,107,128,102,108,94,95,99,104,101,105,97,106,95,104,101,101,96,104,109,97,100,102,105,109,101,108,114,99,107,108,96,100,96,122,107,104,107,106,101,99,101,100,106,103,98,96,88,109,102,98,107,104,89,96,102,101,96,101,93,98,99,93,99,98,108,113,104,84,103,96,101,100,112,87,102,97,98,94,99,110,95,108,106,103,71,112,107,101,87,93,103,121,105,88,101,111,96,113,101,99,103,103,97,104,104,97,101,105,109,114,97,109,109,103,116,100,97,105,101,95,82,96,98,99,115,99,95,106,89,98,102,100,108,101,114,99,105,105,106,102,93,113,92,98,110,102,108,109,102,98,76,102,89,90,96,98,90,102,105,100,106,96,103,94,88,97,113,95,99,101,98,100,104,99,105,94,97,109,97,89,98,104,110,103,96,98,104,99,108,107,109,114,97,92,96,95,99,97,100,104,96,102,106,103,105,91,101,108,90,99,106,109,113,95,103,99,103,105,92,105,99,104,108,107,104,93,91,96,73,91,96,103,108,109,108,98,100,97,101,105,114,97,111,107,104,101,98,93,102,119,105,89,105,95,106,102,89,107,92,87,108,101,102,95,104,85,93,97,108,105,96,100,91,95,101,98,105,105,106,104,99,102,100,100,96,109,100,102,106,99,102,100,102,94,108,98,107,103,99,102,115,103,105,106,113,109,104,102,101,105,101,102,103,92,103,105,105,97,98,120,101,95,109,92,108,100,96,105,105,107,104,101,100,108,103,105,97,102,102,101,100,105,101,94,104,105,110,94,99,106,90,105,97,117,104,109,112,123,98,101,107,109,92,113,108,96,110,112,96,103,87,101,100,93,93,90,96,110,89,107,115,101,98,99,105,104,115,91,92,109,112,102,96,97,113,99,106,120,90,102,116,103,102,102,100,86,94,116,88,109,92,106,96,108,106,99,94,101,89,108,98,93,105,98,94,121,101,112,110,109,109,105,98,85,110,97,109,109,104,108,98,106,99,97,85,113,94,97,99,103,102,100,97,110,87,98,93,100,99,101,111,110,103,104,96,125,101,99,123,116,94,108,102,104,97,100,102,98,97,102,115,91,110,105,90,88,103,117,102,103,105,101,91,107,96,113,107,118,88,105,106,94,96,121,103,101,94,113,94,103,92,110,100,95,109,102,108,93,105,94,113,104,102,90,90,98,96,90,100,96,107,101,97,88,103,104,97,104,102,101,103,116,111,106,96,87,103,110,99,105,98,105,112,105,106,94,105,120,102,101,98,102,109,110,102,97,105,102,105,112,96,100,92,103,103,95,120,101,95,76,101,101,101,92,112,94,95,111,104,97,110,105,108,102,77,94,70,111,112,107,99,118,108,89,119,107,101,98,106,101,132,114,105,107,109,98,102,103,118,93,91,119,92,110, +426.43695,105,95,106,97,95,97,104,87,88,99,106,107,93,105,102,101,93,105,105,88,104,97,89,99,115,102,87,106,109,104,86,101,103,100,108,96,88,100,98,100,98,91,102,86,100,106,101,111,101,114,109,103,108,85,116,96,79,101,94,93,94,90,83,94,85,109,101,98,98,91,100,105,108,100,100,111,102,95,96,96,111,107,98,107,106,96,108,102,101,97,93,94,107,99,105,89,100,121,107,97,92,104,100,92,90,95,91,93,96,100,106,102,104,90,107,97,91,97,97,96,112,105,105,116,110,98,111,102,108,92,95,113,100,116,106,99,97,103,100,95,94,109,91,98,100,97,107,99,92,104,106,108,97,93,104,109,98,91,101,97,101,105,109,97,110,98,104,92,99,100,94,113,92,90,100,106,95,93,101,101,98,101,109,108,107,95,92,99,109,93,103,114,92,95,95,103,88,115,104,99,107,104,84,95,102,89,71,107,91,104,104,118,108,96,106,87,97,105,93,96,117,102,103,103,93,100,103,92,107,104,98,101,92,99,111,98,90,103,104,101,106,93,112,106,98,97,105,108,99,100,97,96,103,96,103,108,101,88,108,102,99,103,101,95,100,101,105,112,97,108,101,104,106,100,104,95,103,99,108,103,101,100,106,105,108,105,90,85,114,83,96,112,104,95,113,98,103,103,108,95,93,104,98,102,108,112,113,100,95,101,88,121,107,102,103,91,104,95,96,107,104,98,105,92,104,98,106,90,109,114,107,106,110,94,112,94,86,103,109,97,101,95,113,101,76,95,105,104,112,106,103,95,106,102,98,96,102,113,99,102,96,108,107,94,95,99,106,106,100,99,113,92,102,95,102,107,93,105,105,107,105,104,99,101,100,95,99,95,113,98,117,101,105,99,102,110,88,104,94,107,100,121,111,91,118,102,95,113,100,90,117,109,109,114,104,112,110,106,96,94,104,101,96,110,95,97,111,109,94,99,98,106,101,90,94,108,99,106,97,96,99,111,103,90,85,97,85,100,106,95,101,95,101,105,96,98,105,102,110,102,102,109,100,102,96,95,98,108,104,114,117,112,110,97,113,106,105,98,98,114,97,105,119,113,99,97,112,101,94,97,106,112,108,100,103,96,109,101,95,109,91,94,84,104,108,110,99,100,117,94,108,104,98,95,106,98,100,127,104,90,109,98,88,109,111,92,100,108,96,102,100,107,93,93,81,106,106,97,93,88,105,98,101,113,107,91,101,94,105,110,93,112,98,101,99,96,102,103,98,92,103,122,93,103,108,102,98,104,105,102,102,95,102,103,106,113,103,97,106,96,103,100,103,96,107,97,110,103,103,106,98,104,101,100,102,107,100,112,103,77,103,102,102,120,108,96,103,97,114,104,103,101,108,103,111,95,110,91,111,98,104,104,103,90,105,103,100,104,97,95,91,102,104,101,100,108,107,99,105,113,114,111,96,103,92,87,92,91,101,100,91,109,110,98,93,98,72,111,95,102,106,115,103,112,101,101,100,100,103,99,119,107,96,110,96,83,98,110,106,105,97,104,110,103,99,102,89,97,109,97,100,101,100,99,103,70,109,103,108,109,108,105,104,108,101,105,100,130,108,107,95,93,108,110,103,95,105,108,110,96,103,98,101,103,91,83,106,101,101,102,102,91,100,99,111,99,67,94,107,102,104,98,100,101,98,99,105,113,108,115,108,113,101,101,99,98,101,105,92,97,102,95,96,100,84,95,102,109,98,88,107,106,107,101,99,105,109,101,96,104,107,109,119,114,104,94,95,100,106,111,102,97,115,103,108,93,98,95,114,105,92,97,112,86,104,106,98,107,104,100,103,88,108,110,96,81,114,104,103,108,112,111,89,101,94,116,104,103,105,98,98,90,100,108,98,87,105,98,107,100,92,108,104,107,101,102,93,92,98,110,105,98,94,103,111,105,111,99,98,105,98,107,102,109,94,93,103,99,114,103,120,107,100,125,103,92,102,106,98,102,92,104,108,96,107,98,105,103,103,103,106,98,112,96,94,91,91,93,101,91,99,107,109,103,107,97,98,99,91,97,102,91,104,102,103,92,102,101,108,102,95,115,110,114,97,101,97,98,113,108,107,100,94,105,91,92,92,102,100,98,98,122,106,110,113,102,99,103,98,95,106,106,109,108,102,104,106,110,101,105,102,106,99,98,102,112,91,101,111,94,104,101,121,96,94,101,94,100,99,95,98,113,120,103,71,100,109,103,111,113,97,91,107,106,95,105,108,115,98,104,93,108,97,103,104,102,118,110,101,97,92,99,107,102,101,99,99,108,108,110,104,100,99,92,90,80,95,101,99,102,134,100,102,103,100,97,107,104,106,86,102,98,99,102,104,74,98,83,103,104,93,99,98,88,109,98,103,109,95,89,100,98,94,108,94,87,86,109,99,99,98,101,120,95,113,104,103,110,102,105,118,92,103,102,99,110,94,107,69,115,104,101,109,92,116,108,85,105,75,97,112,99,110,93,114,100,95,81,112,96,106,102,102,89,102,92,100,100,104,105,91,109,97,105,94,92,106,112,103,100,105,98,103,100,104,100,105,104,65,102,100,102,87,101,102,99,101,110,93,71,105,106,107,97,101,107,99,85,105,106,109,91,102,94,98,106,100,95,104,101,94,93,106,130,92,107,100,102,107,109,105,92,110,104,99,100,99,107,102,109,102,100,118,104,101,91,101,102,103,109,109,110,108,120,88,106,95,105,101,110,100,106,97,110,83,101,92,109,104,103,104,101,99,101,93,99,95,120,109,107,100,96,98,98,95,88,103,106,99,96,106,98,97,96,91,95,113,105,101,97,110,102,99,102,91,94,102,96,120,99,97,100,104,114,102,105,96,99,95,102,74,88,107,97,111,104,96,102,91,110,102,109,99,97,98,107,104,104,99,110,104,103,97,79,101,98,97,95,102,98,106,95,100,108,66,110,117,99,117,90,102,96,99,98,108,106,94,98,104,105,108,98,110,97,101,97,107,94,94,94,109,102,88,87,106,86,87,98,101,106,95,93,107,105,102,103,108,102,106,104,102,101,101,109,100,105,105,102,98,102,103,102,107,108,94,87,113,100,104,98,112,105,97,113,108,84,105,98,97,94,103,100,92,102,128,92,98,96,94,98,90,94,108,104,111,107,98,91,96,97,105,97,94,105,89,106,104,103,97,96,106,100,97,103,68,90,103,106,103,104,113,109,93,97,105,100,122,83,127,97,91,101,104,106,102,112,93,99,87,109,99,98,99,94,93,126,109,94,98,102,92,113,101,99,102,97,109,103,113,102,109,101,104,97,108,103,106,91,99,104,101,108,99,97,95,92,106,94,112,105,105,94,114,91,93,103,99,79,104,103,107,97,103,104,102,101,89,99,104,100,96,98,102,94,98,96,104,99,101,100,101,100,95,104,100,89,106,100,96,96,95,101,106,103,90,106,103,102,106,101,110,137,94,101,104,95,94,104,107,84,100,94,98,107,97,100,96,97,98,97,102,102,92,97,107,107,110,102,107,109,92,106,94,95,101,105,98,108,102,102,112,102,101,110,100,92,101,99,103,92,105,97,112,107,115,99,118,108,88,104,90,108,94,100,95,99,101,95,112,101,100,113,89,109,95,105,95,100,91,102,109,105,105,101,93,103,96,101,64,82,105,124,93,97,96,91,99,93,96,103,97,95,100,110,99,100,97,96,99,91,98,101,97,101,108,99,106,107,101,94,96,95,71,98,106,105,97,102,89,94,81,99,118,113,105,93,96,87,99,106,104,115,95,104,100,90,98,108,85,97,116,100,99,100,85,90,100,91,99,102,82,106,105,95,102,107,103,113,100,102,87,102,104,100,103,99,110,110,102,112,106,93,92,98,109,105,81,98,91,105,104,98,91,97,100,90,103,97,103,98,96,96,116,87,106,103,108,94,103,112,102,106,117,109,71,104,101,104,103,93,107,97,102,88,105,95,110,101,98,96,97,104,88,94,104,101,95,93,104,102,102,91,109,109,113,109,106,99,109,103,82,103,88,105,103,97,98,91,103,103,102,101,90,98,105,107,97,98,113,102,109,103,109,92,97,99,100,107,104,101,108,94,98,104,107,109,112,107,106,104,97,90,92,96,101,99,97,98,104,98,116,91,101,80,108,95,100,95,101,98,98,103,113,98,108,105,102,105,98,102,117,109,100,104,106,110,103,100,99,97,101,98,94,94,83,94,112,103,98,95,94,101,96,110,99,100,109,93,90,101,105,98,96,96,95,106,107,103,98,89,100,111,101,101,95,87,94,104,100,109,104,99,98,99,106,100,106,97,101,95,105,93,98,95,96,102,92,102,98,104,100,101,99,107,98,102,92,83,98,97,94,114,99,101,98,103,114,98,107,97,100,96,106,89,103,110,88,109,101,106,100,112,101,103,106,107,86,108,101,108,99,126,108,101,100,103,112,100,104,83,102,102,102,122,95,87,109,95,108,90,100,79,86,118,100,108,105,85,99,90,102,90,98,98,107,103,103,106,109,101,97,105,103,91,111,90,94,93,107,99,101,98,101,99,101,99,105,99,93,103,87,92,88,111,91,99,99,105,103,98,96,95,111,99,94,89,88,100,100,79,113,119,106,97,97,88,97,92,102,102,108,90,100,96,79,102,93,97,94,71,89,97,102,96,105,89,106,106,110,92,102,82,94,105,97,109,110,117,118,95,106,102,102,107,92,92,100,93,112,101,103,104,99,103,100,90,97,103,115,102,95,102,96,103,94,99,106,88,102,96,103,109,97,101,106,107,106,81,96,105,94,93,104,99,96,104,89,99,95,95,100,101,88,90,124,98,98,101,117,98,118,82,105,108,103,103,101,114,101,107,92,109,99,98,117,94,105,105,95,86, +426.57721,113,89,99,115,91,88,113,98,97,91,90,91,95,114,99,100,101,92,121,104,92,99,94,100,108,109,112,101,119,99,98,104,105,119,125,96,101,108,75,110,98,109,103,108,96,117,102,126,106,101,101,100,104,112,95,83,97,106,99,99,110,104,107,120,93,114,100,101,100,99,96,104,98,94,93,113,92,100,104,106,106,104,110,95,91,90,91,106,102,97,102,108,72,102,106,94,102,102,101,95,100,100,105,97,103,96,105,88,109,102,98,102,98,94,107,102,92,101,91,106,74,113,109,115,98,93,100,94,115,97,100,105,81,99,114,87,106,97,109,85,117,111,92,100,104,95,106,99,95,98,105,97,107,104,87,100,87,113,100,109,105,108,107,106,102,103,104,81,106,80,99,106,105,110,98,110,103,87,100,91,94,102,110,102,98,99,105,99,101,96,108,94,112,107,104,97,95,100,114,104,110,103,96,99,103,114,118,108,108,99,103,110,110,99,102,96,107,104,94,98,105,103,109,105,97,106,103,113,114,110,100,104,102,97,104,102,112,107,111,98,99,115,104,101,102,114,110,105,106,103,105,98,105,105,106,97,94,105,94,101,96,101,92,96,93,105,96,105,101,121,104,90,108,103,105,107,86,106,97,101,89,113,94,89,99,100,99,90,102,108,114,98,107,116,100,99,100,110,102,93,101,97,103,95,109,133,108,113,100,106,100,95,99,108,108,108,109,102,92,105,112,95,97,99,111,108,103,92,115,103,85,107,106,101,87,103,101,104,99,99,99,107,100,99,102,91,109,115,105,108,111,91,99,102,106,101,101,95,119,102,92,97,112,100,99,91,108,102,92,100,97,115,106,102,91,99,97,101,99,102,108,83,102,107,99,102,99,109,113,99,104,92,121,117,106,105,101,99,92,96,101,116,98,100,104,109,95,97,105,98,99,71,104,102,109,91,97,94,102,110,100,97,97,109,102,95,100,91,101,116,112,102,106,97,94,99,105,105,102,87,113,105,102,107,96,100,106,98,100,100,102,96,102,110,101,96,102,99,100,98,99,99,110,108,100,105,108,104,103,110,90,113,103,103,97,114,98,114,106,102,105,91,112,106,109,102,107,104,113,90,107,104,110,96,99,102,101,106,118,104,100,87,106,107,97,92,90,105,106,92,99,124,111,90,117,103,100,96,87,107,106,106,111,102,94,111,105,112,113,101,105,99,105,99,96,104,107,106,106,122,95,103,98,112,106,102,106,103,104,103,113,98,112,99,103,102,113,105,110,90,104,100,104,102,100,108,108,99,109,97,92,108,99,109,103,107,105,97,109,123,109,99,105,96,96,103,110,113,98,95,115,95,93,114,107,113,90,103,109,103,103,97,110,102,99,114,101,104,113,101,116,101,113,106,104,105,109,101,110,114,112,111,103,103,129,98,102,105,84,104,108,104,111,113,88,102,100,101,116,95,105,101,110,107,110,95,95,91,95,117,99,103,86,101,103,103,103,113,125,91,100,106,102,123,97,106,110,95,105,94,106,115,99,93,103,105,105,110,100,97,101,117,103,87,101,85,98,101,108,103,107,104,89,113,113,101,101,107,105,95,93,98,105,97,110,94,109,105,93,99,103,102,102,97,110,92,109,113,117,91,106,103,96,99,101,107,100,101,104,108,103,104,117,95,104,102,105,98,113,107,113,103,98,99,113,96,110,93,102,99,96,96,116,117,109,102,121,107,103,102,91,107,85,108,106,112,99,106,109,83,108,109,108,104,109,104,100,100,95,98,97,105,118,109,100,111,94,111,98,117,106,120,106,108,100,96,112,103,102,117,109,98,101,95,99,111,104,106,123,91,92,87,101,93,100,104,105,100,105,101,113,104,109,101,103,106,93,101,105,107,100,102,100,103,112,87,98,113,97,106,118,106,103,99,110,101,104,104,121,109,103,91,107,109,101,104,109,99,104,109,104,111,114,99,75,100,90,115,105,103,107,100,80,110,113,106,108,110,110,108,109,99,109,91,95,106,110,108,96,96,104,109,97,99,91,106,112,104,106,121,106,103,94,89,97,103,95,102,100,105,111,110,104,106,108,90,102,92,111,114,103,108,101,111,109,104,104,101,99,110,109,105,74,107,71,98,99,99,110,110,113,106,105,101,102,104,104,101,98,114,98,100,100,107,116,92,118,101,97,95,103,105,103,97,103,108,104,103,96,95,93,107,118,98,107,105,100,113,95,103,91,110,103,89,108,93,104,104,106,95,102,98,112,102,100,105,112,95,113,107,108,75,103,103,112,111,113,99,103,97,84,96,113,101,107,110,104,112,99,78,126,112,98,102,104,103,111,104,95,107,100,105,112,78,106,97,98,104,110,103,104,91,106,104,99,104,102,101,108,104,103,106,105,102,105,96,104,110,103,107,105,106,102,90,93,99,95,106,107,91,107,103,98,97,96,109,108,117,103,105,111,88,104,101,114,104,98,109,112,107,106,98,101,101,112,92,115,121,105,106,128,103,105,99,116,96,99,104,98,104,104,114,96,98,111,109,108,102,98,102,109,96,105,103,99,111,96,109,103,100,104,102,105,101,109,128,79,112,91,101,106,87,83,111,99,105,101,103,116,104,111,104,96,106,112,103,98,100,104,100,114,103,104,101,110,110,110,113,103,97,106,96,107,104,95,102,95,113,98,105,106,107,109,109,102,111,107,105,98,110,101,107,116,103,103,124,104,104,100,112,101,109,111,103,109,108,111,112,103,108,104,107,99,110,99,100,112,106,106,102,109,100,110,91,105,109,106,95,79,109,92,98,111,105,118,102,109,105,101,88,117,91,99,108,87,106,109,105,104,103,97,101,105,107,108,105,109,99,103,118,109,93,101,100,105,100,103,95,105,115,106,108,112,94,110,100,104,110,95,106,100,105,124,100,96,108,100,105,103,109,90,110,107,100,108,108,97,108,102,101,101,101,95,102,96,108,103,89,107,103,99,109,109,108,108,107,100,86,99,98,89,106,113,98,106,109,110,111,102,117,93,100,104,102,105,97,102,116,98,108,110,98,117,104,106,116,143,107,85,104,108,100,101,106,116,93,108,95,111,106,111,113,110,97,108,94,116,113,101,105,113,99,77,115,103,98,104,97,106,105,100,99,110,104,112,102,105,97,102,104,98,95,107,107,106,107,96,96,113,102,108,116,96,117,113,103,107,94,100,94,104,106,107,99,105,108,104,113,105,101,114,106,108,94,94,99,113,108,110,98,102,104,109,107,112,112,103,114,98,105,96,110,102,103,99,99,100,98,94,78,100,92,109,101,103,114,116,105,110,90,106,107,103,111,96,106,112,103,97,109,106,106,99,106,110,107,109,96,111,108,96,113,101,108,106,112,86,101,100,108,67,107,100,108,108,102,91,110,107,102,99,109,104,107,113,103,91,86,92,100,104,110,106,104,119,108,96,106,100,108,108,104,106,103,113,108,104,91,113,107,104,110,113,102,100,105,99,104,110,104,106,111,104,102,98,113,102,94,113,103,101,93,91,112,97,104,109,103,101,109,109,99,111,108,98,110,98,100,108,113,97,78,102,111,117,106,103,95,112,105,105,93,101,103,105,106,100,98,106,101,88,95,102,99,104,95,99,101,101,95,106,118,102,102,102,109,104,98,96,103,112,121,111,113,100,98,97,107,109,108,109,106,101,112,89,99,108,112,108,108,102,105,108,108,120,105,106,117,96,97,101,101,106,99,107,117,111,112,103,96,97,97,96,98,115,103,104,110,117,108,99,97,103,101,102,103,98,98,100,98,93,101,107,107,112,113,114,110,104,100,109,106,105,101,108,110,102,98,100,117,108,103,100,109,108,105,102,112,98,93,109,96,103,113,99,104,103,99,104,108,104,119,101,88,111,83,111,91,99,106,95,108,105,117,105,110,109,108,112,105,101,100,110,99,65,93,110,108,109,99,106,98,96,110,99,74,108,104,99,103,106,100,111,88,107,111,102,126,92,110,97,105,102,97,99,108,92,86,104,114,119,122,112,109,105,107,106,100,113,119,87,106,99,95,108,98,102,104,102,104,98,96,91,104,113,112,116,99,106,91,106,108,109,102,103,114,110,108,102,109,104,102,103,104,75,109,113,96,117,103,109,106,104,113,115,105,110,104,110,98,110,108,91,104,102,108,110,112,104,97,103,102,104,111,106,105,101,102,100,109,106,113,110,99,95,101,102,97,89,110,112,106,93,97,105,109,101,97,99,103,103,96,102,99,98,102,94,96,104,109,120,129,127,111,98,102,74,104,98,103,107,108,100,110,92,110,121,103,111,110,108,113,109,111,106,107,112,100,103,104,105,109,106,99,101,106,115,94,103,105,101,107,105,99,101,99,103,101,103,100,108,106,108,111,95,102,114,90,106,91,110,101,117,109,99,102,81,102,101,90,106,102,112,120,105,115,100,104,96,108,101,109,117,104,95,88,103,102,109,97,95,91,106,109,97,117,104,106,95,98,105,104,95,112,111,110,111,106,100,108,104,108,122,113,91,120,109,102,115,105,81,94,109,110,100,75,116,100,123,107,106,68,119,106,84,113,109,100,98,97,92,97,106,111,103,110,99,103,102,87,102,94,90,107,105,111,108,113,109,98,108,99,111,107,104,97,102,106,102,98,98,101,104,95,91,103,106,110,110,76,114,103,114,104,116,104,111,107,105,120,119,113,108,108,102,113,103,110,93,102,107,110,83,121,101,99,98,94,99,93,91,99,84,96,106,97,96,100,115,102,77,101,107,107,94,101,108,94,92,109,107,98,99,95,99,107,100,109,113,103,103,109,105,103,96,100,100,103,103,109,115,95,106,63,105,104,103,109,111,94,74,94,98,103,103,87,112,94,98,101,107,106,95,97,106,102,96,101,97,102, +426.71747,98,105,86,102,89,109,115,102,105,105,102,96,87,114,95,101,100,114,97,109,109,98,108,115,101,111,113,120,107,116,101,111,100,102,104,93,110,95,103,96,93,89,94,110,106,104,119,99,102,98,112,98,100,106,103,84,107,108,108,92,97,102,107,87,116,120,103,74,98,72,108,102,94,99,98,110,106,63,94,99,98,90,104,102,114,100,102,113,99,112,91,100,114,93,93,116,110,98,101,88,106,105,102,108,100,103,106,98,99,99,109,114,120,107,108,105,98,102,101,97,103,105,92,104,104,93,99,98,101,104,110,91,106,114,94,114,110,108,108,91,112,108,94,106,100,97,99,103,106,109,96,105,97,99,96,90,100,112,86,92,101,71,109,104,98,92,98,100,100,103,102,112,94,96,108,100,104,84,99,109,105,103,91,99,90,92,96,91,99,103,96,94,110,103,104,99,105,106,111,102,104,117,89,97,98,109,109,98,101,109,96,105,102,106,107,93,91,99,104,98,99,104,102,106,107,104,98,101,118,116,113,101,106,103,106,107,100,118,101,110,100,110,108,98,96,103,100,99,102,106,103,109,99,104,98,112,106,102,91,101,103,114,96,103,100,105,100,82,109,104,100,112,99,111,108,112,100,113,97,91,98,102,105,104,107,104,100,111,110,91,102,105,106,97,110,119,111,101,102,101,82,106,100,99,99,108,106,115,112,117,112,113,117,103,103,93,95,110,115,110,108,102,94,96,108,109,98,103,107,95,102,94,118,103,104,104,105,101,91,105,105,109,102,101,105,103,95,103,98,113,96,112,121,108,98,89,108,110,106,100,104,100,92,94,122,100,104,110,102,100,102,91,111,101,105,102,94,112,101,103,114,91,94,88,95,100,100,111,95,91,113,103,105,103,103,101,95,104,109,105,104,105,104,106,103,100,105,99,111,103,127,109,95,112,111,102,98,94,108,107,102,103,98,116,103,95,96,92,107,115,106,106,108,103,100,91,77,97,103,103,117,103,96,121,94,107,96,92,99,103,108,90,117,96,99,105,101,84,92,106,105,106,96,93,106,91,111,104,116,97,111,107,112,106,105,105,103,104,106,106,100,97,107,105,101,97,108,97,111,101,100,102,83,93,93,103,97,108,103,94,119,105,102,106,98,99,106,96,114,106,117,105,108,105,113,105,110,110,117,108,97,101,107,100,105,94,86,105,114,106,95,111,91,121,103,108,105,107,103,112,103,108,107,103,102,118,105,104,117,99,102,100,99,102,110,103,94,94,102,90,106,98,103,94,111,103,118,117,109,94,107,91,105,114,105,82,104,110,102,115,93,110,101,102,104,99,105,104,109,89,101,97,107,90,114,116,94,104,117,100,105,93,100,98,92,103,109,110,107,102,107,106,103,96,112,103,100,92,113,108,104,95,113,94,98,104,100,90,107,98,101,107,95,103,98,101,104,91,110,110,99,104,120,117,102,97,106,98,91,102,68,107,116,95,100,100,99,100,106,105,106,96,105,97,113,106,104,106,107,108,117,101,109,120,100,101,112,100,78,94,116,115,102,106,95,96,103,108,111,101,99,114,103,109,102,99,98,109,109,99,99,98,94,96,102,119,106,102,110,105,104,105,88,88,101,117,103,115,108,109,90,98,99,101,102,95,105,108,91,112,98,105,96,93,99,97,102,90,98,110,105,98,118,110,95,97,106,105,102,111,102,69,111,109,101,91,98,102,92,89,108,106,107,109,101,107,109,112,105,96,110,105,121,113,100,101,103,92,104,89,99,99,104,99,108,104,103,106,107,118,104,109,107,113,99,108,95,106,81,98,107,110,90,100,105,104,104,117,98,98,119,95,90,102,108,110,102,104,99,96,106,108,95,107,95,102,116,97,98,103,114,102,98,98,97,103,100,102,106,100,113,112,116,99,98,90,101,100,106,103,82,96,97,94,94,105,91,103,96,108,109,100,103,100,107,93,91,103,104,112,105,102,103,78,93,108,101,98,101,110,105,110,96,107,115,98,109,109,110,100,111,106,93,100,104,105,101,103,116,100,89,112,100,99,99,88,108,103,106,111,104,112,99,103,105,116,101,103,92,107,104,93,100,107,124,107,96,102,94,105,107,104,99,112,105,112,104,104,122,95,113,111,103,99,103,102,105,103,99,97,98,106,99,100,109,107,103,109,104,98,99,97,104,105,103,94,103,104,103,109,101,115,96,100,106,98,112,97,109,99,106,104,101,101,112,108,103,96,104,100,111,111,102,119,109,87,110,109,100,107,102,112,107,105,94,114,98,119,72,113,105,96,106,101,100,91,106,91,110,101,110,118,109,113,109,97,105,100,86,109,96,106,113,97,104,93,111,95,107,105,98,99,101,102,87,101,106,110,105,99,95,103,104,106,91,89,109,106,93,96,91,107,104,102,102,101,102,113,101,100,98,116,102,107,109,91,110,92,101,106,94,105,100,104,109,112,90,98,112,107,116,102,104,89,95,90,101,75,99,107,99,97,105,98,108,109,98,92,102,113,102,116,109,103,105,102,103,110,95,109,103,105,108,97,99,89,103,106,111,99,110,104,104,93,108,94,98,98,98,100,96,97,94,111,96,114,79,97,112,101,98,103,103,106,93,109,119,103,100,93,97,106,88,95,90,98,95,94,110,99,96,99,108,101,117,113,99,94,99,103,108,111,94,102,106,102,113,106,96,105,91,100,101,98,103,101,105,87,99,96,100,98,106,98,97,110,106,109,105,83,93,109,96,102,104,97,103,102,104,98,103,107,98,92,108,112,104,107,103,92,109,105,106,110,113,101,66,104,104,98,89,112,86,98,87,112,83,92,107,109,118,100,104,101,102,101,107,101,99,102,106,98,104,103,100,97,99,109,108,97,105,101,103,112,108,107,103,112,105,100,106,112,100,108,108,97,107,104,101,89,102,91,96,106,89,110,106,105,99,105,109,95,101,97,93,101,98,97,96,96,100,95,98,100,107,114,107,107,98,101,91,96,105,99,113,98,105,135,103,111,96,104,101,104,101,102,110,107,102,102,105,115,105,105,109,98,108,117,108,98,102,118,104,108,83,103,104,111,108,98,113,115,105,83,112,69,97,95,102,96,99,109,107,132,115,102,109,101,103,96,103,101,108,114,84,104,91,103,110,102,95,99,95,104,96,107,87,95,98,100,100,112,101,102,108,101,113,94,96,107,95,106,99,101,115,96,130,108,94,100,113,100,102,106,103,96,99,98,96,90,94,97,106,101,100,99,101,103,103,98,95,94,105,97,102,94,115,93,103,87,88,91,114,111,102,106,83,93,100,90,104,110,103,99,112,105,95,96,95,112,71,104,101,108,98,102,105,98,97,104,86,99,101,111,104,101,107,110,96,114,101,108,96,112,97,105,101,105,111,101,102,97,106,94,91,94,102,109,108,100,123,108,94,108,105,115,104,98,101,98,97,98,101,102,103,109,109,109,98,98,99,106,98,106,108,101,100,106,107,106,86,106,98,106,115,95,107,90,110,92,103,114,109,98,93,103,104,107,95,99,99,98,116,115,109,108,99,104,102,106,106,94,99,96,111,105,100,113,106,101,95,104,108,104,100,108,93,91,92,100,102,108,100,94,84,96,104,105,102,101,101,95,99,104,106,110,99,92,101,107,105,96,103,108,93,97,106,99,95,109,96,105,89,96,104,105,105,116,109,101,93,105,92,99,102,97,106,103,107,89,101,98,101,101,105,98,106,104,107,101,111,95,105,101,90,99,88,104,100,116,103,97,96,98,112,106,119,104,109,88,105,98,107,109,101,111,111,106,92,95,108,101,103,112,101,109,97,110,101,115,94,107,108,103,109,102,98,90,105,100,103,105,100,106,101,103,123,109,92,106,92,109,104,103,99,99,112,100,107,92,99,101,101,105,109,107,107,87,101,103,105,101,94,90,104,118,111,113,113,96,100,105,97,106,96,105,106,101,105,104,104,96,99,102,103,102,92,96,107,106,99,107,119,92,80,104,95,112,105,112,104,116,87,97,110,125,102,91,95,95,96,99,102,114,100,111,115,103,101,101,127,89,99,98,104,99,102,104,103,103,96,103,68,108,123,110,98,103,98,94,103,108,97,111,98,102,113,99,108,88,98,88,91,102,89,115,95,103,95,97,102,109,107,92,83,100,102,120,94,99,109,104,126,95,105,108,94,104,97,97,98,95,100,94,101,101,95,108,103,100,100,119,108,117,114,104,114,109,105,96,101,105,107,105,105,91,97,113,109,113,108,104,113,109,102,96,110,104,104,112,103,99,108,94,98,104,102,99,104,103,106,95,95,110,101,101,107,107,94,96,83,100,104,107,123,93,116,101,95,101,96,104,100,120,104,105,98,75,110,99,116,96,124,115,96,98,120,95,104,103,102,93,101,104,115,91,96,99,110,90,116,95,97,89,96,99,102,92,90,98,97,106,102,111,108,98,99,116,112,83,92,93,102,102,100,101,104,102,96,97,91,89,96,111,95,104,101,109,104,102,105,105,96,91,107,84,99,110,108,108,107,102,104,112,97,107,107,83,101,107,109,104,105,106,104,104,109,100,73,92,113,105,91,104,111,101,111,99,96,109,91,86,98,95,100,102,97,107,101,102,96,107,91,104,107,95,104,113,93,92,96,97,110,96,99,105,130,102,99,102,93,112,113,124,100,93,102,97,101,100,99,106,85,103,98,96,92,100,104,94,87,106,91,83,107,105,99,106,92,108,102,92,109,109,99,102,92,108,108,112,74,100,109,113,106,122,91,104,106,95,115,113,105,82,107,111,91,91,88,103,104,96,98,101,63,97,101,114,104,114,106,111,92,99,100,113,91,114,104,87,94,93,101,104,92,102,110,87,106,101,105,93,98,103,90,99,107,97,104,89, +426.85776,112,84,101,115,88,98,91,102,91,100,86,91,104,94,108,106,85,105,108,94,110,93,98,98,94,129,98,96,104,103,103,102,100,93,116,114,108,110,115,106,99,101,105,95,93,101,103,103,98,108,101,109,103,87,104,92,99,91,103,100,101,110,91,133,101,102,118,104,106,100,103,103,102,103,97,109,97,102,109,85,102,111,109,104,91,90,108,97,109,100,107,105,102,102,93,103,110,98,104,95,87,102,100,108,92,94,105,95,91,99,111,98,102,99,112,139,101,112,96,97,87,95,105,108,94,108,106,94,92,96,97,108,104,99,107,76,105,99,101,99,79,96,89,117,109,97,105,128,100,101,100,99,105,102,91,93,84,100,99,105,99,114,105,114,102,109,97,92,98,106,92,102,97,86,110,90,89,87,106,100,99,87,97,104,102,96,93,96,100,114,99,98,97,92,93,107,100,95,81,101,98,109,102,85,96,113,95,91,111,104,95,107,106,99,101,106,120,102,95,106,107,99,100,93,99,102,91,104,110,102,106,106,94,124,99,109,99,103,84,98,96,100,97,108,98,105,102,96,102,99,103,113,99,100,94,104,102,108,93,105,90,105,101,98,103,104,83,97,87,96,111,99,102,93,89,105,102,89,104,95,96,113,107,104,104,103,100,109,98,102,98,95,100,107,119,89,98,105,102,108,96,105,108,117,91,117,107,111,93,117,98,96,93,94,105,90,117,106,110,111,99,92,96,87,107,106,100,99,107,112,100,97,110,95,113,99,99,118,97,104,100,93,111,103,105,105,97,100,125,98,100,100,117,114,94,96,113,104,99,98,99,96,107,97,107,108,103,114,95,115,105,93,109,99,104,95,100,100,109,95,99,108,106,108,96,102,115,100,104,104,110,82,91,109,99,100,96,103,98,106,92,91,82,95,102,93,105,104,111,101,92,101,94,91,111,96,92,110,94,101,105,99,96,117,101,97,111,107,95,98,101,102,102,95,94,96,104,108,87,104,103,104,90,117,102,110,102,90,106,134,103,101,99,114,100,98,102,100,97,90,100,103,99,114,101,108,102,97,111,85,103,88,100,87,103,94,71,110,106,106,109,101,106,97,100,101,99,115,100,91,107,113,105,98,93,101,95,98,97,103,111,108,110,100,96,106,99,100,98,95,113,98,91,99,103,100,111,89,93,95,103,97,109,98,103,108,105,102,101,100,103,107,103,121,114,98,108,95,105,110,105,104,83,114,102,86,97,99,114,104,117,118,102,104,96,99,101,103,102,94,117,109,94,102,106,102,103,116,100,100,93,70,97,88,111,100,97,108,116,67,107,108,96,101,97,97,99,97,105,109,117,104,104,110,103,105,90,99,100,104,100,99,102,67,100,121,91,95,103,95,105,101,115,105,105,108,89,105,105,106,103,103,108,108,96,102,98,101,103,105,94,114,93,104,99,97,113,88,99,112,107,101,102,108,106,101,96,85,101,108,96,104,98,96,112,100,92,107,96,88,115,122,99,111,100,90,102,91,92,102,99,107,108,105,101,107,97,94,119,104,111,99,95,96,104,105,95,112,106,105,77,99,96,80,113,105,101,99,108,100,111,106,96,120,110,111,103,84,112,104,100,90,102,103,110,106,96,93,88,89,98,103,94,96,105,108,110,108,102,122,105,98,108,97,99,103,104,106,105,112,104,95,98,99,108,98,113,107,102,105,93,97,94,100,88,79,105,103,112,110,109,92,101,102,93,105,101,98,97,105,105,107,86,91,101,102,90,95,95,87,112,99,118,108,101,100,99,111,119,100,114,106,99,107,94,97,103,99,103,108,99,102,105,107,100,108,97,105,93,112,91,81,101,100,97,105,96,111,120,88,108,113,100,117,101,106,104,96,105,97,103,94,93,108,102,99,102,101,109,106,99,90,92,100,102,109,110,97,92,111,103,111,96,96,100,94,97,101,103,105,110,99,107,103,104,110,99,96,112,108,108,103,94,110,95,90,102,86,109,107,96,99,104,96,105,102,93,117,99,101,94,108,91,99,107,89,82,111,102,101,101,104,99,93,95,104,100,91,99,87,112,106,94,105,102,93,107,102,104,99,92,106,117,105,100,122,99,108,99,95,108,117,103,104,101,102,83,96,106,101,108,97,111,99,97,107,102,104,103,101,102,109,106,115,102,103,97,104,96,104,120,107,104,92,101,103,107,95,106,105,129,109,110,94,100,109,97,95,93,108,112,106,88,95,101,96,95,103,106,115,99,113,99,95,94,108,99,113,101,100,109,104,101,96,105,76,109,92,88,100,106,107,84,103,111,103,99,79,100,71,106,114,102,103,106,93,101,101,99,93,115,116,114,91,106,103,95,110,97,101,109,100,109,89,104,106,98,100,90,102,96,99,109,98,87,94,86,101,104,96,108,109,98,98,101,97,104,107,92,99,96,75,106,99,94,79,107,108,105,80,109,101,103,103,129,103,102,94,111,108,90,98,109,96,111,102,102,102,101,102,104,108,104,107,104,116,100,102,95,91,105,107,108,105,110,105,95,107,99,114,108,102,93,101,100,117,98,96,96,102,99,110,104,96,104,109,110,100,107,104,90,95,91,108,99,104,96,100,103,90,104,111,109,94,107,100,109,114,106,94,96,131,106,103,102,107,118,109,109,100,110,117,82,94,119,111,95,105,101,100,121,88,97,92,106,96,108,115,110,123,111,101,106,113,112,108,102,92,109,103,104,107,98,113,109,117,104,107,96,95,130,104,107,115,112,98,103,106,111,106,109,103,98,100,89,108,99,103,109,101,105,106,98,99,96,110,97,104,93,97,116,110,104,103,98,98,101,109,98,115,108,104,112,109,100,96,102,107,100,111,88,88,100,103,122,102,108,112,111,116,106,95,106,106,103,94,98,110,107,106,101,104,105,117,105,125,102,111,108,108,110,115,104,103,102,103,100,99,102,114,108,104,123,98,109,106,105,108,113,108,102,97,117,106,102,101,87,105,99,107,96,103,100,99,111,93,125,113,109,90,119,117,106,117,112,99,119,91,99,103,99,86,100,102,76,108,99,107,103,102,111,106,103,106,96,91,95,96,93,112,104,109,107,111,109,101,118,108,107,116,104,108,94,101,111,102,99,99,103,107,102,70,106,110,87,90,70,107,103,101,105,105,113,94,105,92,98,113,120,102,99,100,98,105,109,100,101,106,101,105,102,102,105,101,94,103,98,110,97,105,110,129,87,102,103,112,109,100,98,87,111,102,108,108,99,96,108,99,113,93,98,110,110,96,104,107,110,91,101,100,95,90,98,109,99,103,108,108,103,105,110,104,108,108,102,103,88,100,100,100,83,107,93,94,91,108,121,99,116,91,101,104,119,98,94,103,100,103,106,103,109,96,91,103,106,105,100,107,108,99,99,104,99,101,93,117,103,112,109,105,99,107,94,100,94,99,106,102,102,98,92,126,94,108,85,99,113,84,109,96,114,113,106,111,105,93,96,99,107,103,96,97,90,114,102,104,98,113,93,96,111,106,111,106,100,114,108,112,101,108,112,104,117,115,106,99,101,86,111,106,104,100,103,121,105,91,105,111,104,100,92,100,104,104,104,98,98,103,103,100,108,95,114,100,114,112,108,104,107,107,99,104,103,98,99,112,102,90,87,108,106,102,102,100,83,110,100,112,112,110,111,107,108,91,91,107,106,107,98,95,98,104,114,99,96,103,102,109,101,99,103,84,96,107,84,95,113,92,103,113,99,99,105,94,105,105,102,103,85,103,100,116,104,101,102,112,101,101,106,109,103,84,101,112,114,106,92,113,87,97,93,99,100,96,102,106,106,98,113,70,95,107,106,108,76,128,98,102,102,100,90,108,112,108,116,107,108,108,107,106,106,94,107,83,105,101,94,92,104,91,97,94,105,109,128,103,97,103,92,109,114,94,110,111,100,100,102,106,97,108,95,102,109,103,96,104,76,106,97,98,102,109,104,85,96,100,113,104,100,98,104,108,105,101,103,107,113,109,105,98,114,101,107,115,88,93,102,102,108,110,99,106,92,100,107,109,102,102,109,94,94,90,100,67,104,106,104,108,101,100,107,90,104,98,101,110,107,99,91,102,102,64,101,103,110,108,102,82,101,92,97,102,107,108,97,107,100,107,84,102,91,114,107,95,98,107,110,95,103,100,104,106,117,109,103,100,96,102,113,93,110,101,91,104,108,92,103,92,110,122,88,98,104,118,96,96,116,103,104,100,101,94,105,108,113,102,99,106,106,109,111,94,106,106,98,94,107,102,97,109,100,102,101,96,94,95,116,104,108,111,103,92,112,102,91,107,98,113,107,91,112,105,95,95,109,87,112,99,111,116,97,109,108,103,108,105,100,95,105,90,98,98,102,109,104,97,106,97,102,104,98,96,105,105,96,117,91,99,104,115,114,111,99,96,101,109,95,102,97,95,96,96,98,91,91,100,101,105,105,96,85,95,102,93,103,101,106,118,89,107,93,98,88,114,109,98,89,121,90,91,91,90,104,98,99,108,104,102,106,92,102,110,92,106,98,102,95,106,97,101,98,107,113,99,101,105,105,106,102,99,109,93,107,109,104,103,99,100,102,107,90,117,108,100,105,109,107,109,90,106,107,109,105,93,102,96,98,109,110,102,105,82,99,104,107,101,102,90,111,102,95,105,111,99,106,102,82,85,104,107,105,96,111,110,102,101,101,103,104,94,97,102,103,97,93,99,98,101,103,77,102,93,103,94,87,96,110,110,113,102,90,100,104,101,97,97,106,102,102,117,104,90,105,100,112,105,113,96,94,104,117,98,101,92,116,106,106,105,104,92,116,84,110,104,96,110,97,75,86,94,100,109,99,94,104,110,92,98,90,92,100,110,97,93,113,109,102,103,100,102, +426.99802,107,97,106,98,92,98,96,105,98,84,109,100,86,112,97,97,86,110,104,104,97,103,102,90,99,79,81,103,114,102,103,102,94,102,122,101,107,112,105,103,106,94,94,96,92,103,97,95,95,117,91,98,104,94,100,99,104,108,99,91,122,95,93,100,114,102,93,92,102,98,92,102,104,92,93,105,105,107,99,118,96,106,110,108,101,105,98,107,97,86,102,105,96,76,97,100,96,102,103,99,98,101,115,100,90,95,99,104,101,104,99,104,97,93,91,105,92,102,87,105,84,99,106,100,104,103,115,100,105,105,112,86,100,100,99,114,102,106,102,110,113,102,111,95,91,103,107,88,95,103,97,103,91,97,102,105,109,94,97,110,102,97,100,107,108,114,102,110,100,106,113,106,81,95,104,108,94,106,109,107,126,106,96,100,96,113,101,90,118,98,96,106,101,91,105,114,95,111,99,109,93,96,105,107,100,71,84,95,109,110,104,99,96,99,113,97,108,101,101,112,106,108,112,107,103,93,94,107,106,106,101,109,102,119,116,123,104,116,112,100,100,105,98,95,106,101,96,104,120,104,116,108,94,98,106,107,98,113,104,106,88,91,109,108,101,97,99,103,107,101,104,105,102,106,115,98,103,97,99,102,92,91,107,97,96,102,109,94,99,99,100,107,110,102,109,99,83,96,105,90,105,99,106,96,101,103,107,104,103,90,95,110,105,101,90,107,95,112,124,97,98,93,99,92,112,108,106,95,117,109,100,103,89,102,71,109,99,117,91,99,96,105,113,93,105,97,91,101,109,117,98,103,108,106,76,110,100,96,105,100,88,108,101,99,94,110,104,93,99,113,91,104,114,107,108,99,101,106,93,100,106,104,106,105,102,92,95,102,108,97,97,101,93,107,103,110,99,110,101,97,87,107,107,91,118,99,101,93,107,100,103,104,100,105,104,117,111,105,97,109,97,105,96,95,105,96,100,96,115,116,91,100,97,104,98,88,98,111,96,101,111,113,88,113,92,113,109,96,98,99,105,100,113,100,96,109,94,106,107,95,109,99,103,97,108,92,98,99,93,108,104,110,99,98,100,116,100,94,100,94,100,101,101,106,99,101,119,103,101,95,106,85,109,105,99,103,103,91,117,104,110,103,112,104,95,95,109,104,111,82,103,104,109,95,96,100,84,104,100,93,107,113,97,104,102,98,116,106,132,102,97,107,91,114,104,112,114,107,112,112,105,89,97,104,108,95,109,127,97,100,109,96,102,97,100,100,109,106,98,98,105,115,103,106,109,103,98,111,105,93,110,103,113,107,118,110,104,101,100,107,111,98,89,98,107,99,101,94,97,94,119,106,107,99,111,106,97,100,109,104,95,100,96,96,95,94,99,97,96,105,102,99,107,103,106,105,101,87,97,106,100,93,102,108,107,105,91,94,108,99,87,109,112,100,92,99,102,97,96,98,102,99,110,117,101,90,104,111,99,106,107,109,102,99,107,97,103,110,108,103,107,112,107,106,87,86,98,95,107,96,109,106,100,90,98,110,106,101,103,103,97,104,100,102,101,109,104,88,106,113,115,111,101,116,108,94,101,102,107,98,99,93,101,100,103,111,98,115,94,105,90,102,102,98,102,107,85,114,94,107,102,108,95,111,102,101,116,106,110,112,99,100,103,111,98,108,113,110,117,103,101,111,112,99,103,106,98,102,100,101,103,107,96,94,102,98,105,98,118,104,106,110,95,109,95,97,100,98,94,102,114,97,98,93,110,100,90,98,108,95,103,111,109,108,101,100,105,112,102,104,113,109,102,110,85,99,90,100,110,90,99,109,96,98,90,100,91,123,102,97,113,102,100,94,107,98,111,100,102,90,99,103,105,106,108,109,97,97,112,108,108,95,105,101,92,101,94,86,105,76,98,105,110,91,102,108,89,108,99,101,104,107,102,107,96,83,103,108,84,111,87,101,95,104,109,109,106,109,108,102,87,107,82,101,110,107,102,107,100,103,113,107,97,98,112,100,92,105,93,104,104,102,99,101,104,100,95,102,113,101,113,104,102,96,107,113,89,105,86,92,101,100,98,104,98,99,91,103,97,113,99,99,98,93,98,101,108,104,115,90,103,117,104,99,100,91,95,87,105,97,108,105,103,101,96,108,102,120,95,96,105,97,99,100,109,109,104,104,97,98,98,103,106,104,97,104,105,100,112,104,101,89,105,96,98,104,101,98,99,90,99,94,89,104,104,111,102,98,93,106,95,100,100,94,100,105,100,103,112,90,97,101,96,95,112,105,108,101,95,100,87,97,96,117,109,107,110,106,101,96,104,115,96,86,111,103,99,106,89,112,105,102,114,96,116,95,102,120,102,100,118,99,100,86,99,93,123,100,107,106,87,99,117,98,114,95,101,110,106,98,94,108,107,108,105,92,88,104,96,91,99,112,111,106,116,94,74,107,111,103,103,92,93,105,98,100,99,104,109,102,100,101,97,102,84,99,94,99,111,83,110,108,95,99,99,101,105,103,101,101,112,109,105,114,106,104,94,108,102,107,123,98,112,105,109,100,100,102,114,102,102,103,106,75,105,95,98,112,103,94,111,95,95,105,98,100,112,95,108,98,106,100,110,105,105,110,107,116,91,115,108,98,104,105,105,118,89,112,112,96,100,110,102,100,105,118,102,119,131,108,115,107,107,99,100,99,113,105,109,108,104,114,116,100,89,104,127,96,104,96,88,105,111,107,102,103,93,113,98,102,104,108,106,120,113,110,95,101,103,94,115,112,106,93,101,106,100,110,115,101,97,111,95,112,93,100,117,103,96,114,95,101,102,93,99,102,110,114,97,107,105,103,106,93,99,93,100,108,107,108,109,104,100,105,113,101,98,90,103,103,100,108,113,112,98,98,99,113,105,108,105,102,106,111,109,104,100,97,103,93,113,102,105,106,105,106,110,111,102,99,97,103,105,109,103,96,104,110,96,106,107,103,88,99,103,99,104,65,102,106,99,109,101,73,100,98,103,107,99,98,117,96,116,103,95,109,96,95,105,109,106,112,96,111,98,98,109,100,107,95,80,99,105,103,95,95,102,104,111,94,105,119,100,100,104,94,105,93,102,99,110,100,115,121,113,102,98,109,105,96,97,104,100,110,111,101,93,99,97,78,109,104,98,102,87,120,100,106,106,111,91,98,103,100,86,98,101,118,105,111,102,112,105,112,81,96,107,109,105,120,109,106,104,103,99,102,113,102,105,96,119,110,105,112,111,98,100,111,100,101,97,102,107,111,102,89,96,110,113,104,104,111,113,98,98,103,101,103,103,95,109,106,103,104,102,100,104,97,109,95,102,118,102,99,97,107,111,99,103,105,105,97,96,100,101,84,101,103,90,101,104,104,100,109,101,103,106,100,113,105,102,98,99,104,103,108,105,102,99,90,109,111,106,107,105,105,103,99,104,117,100,97,111,104,109,93,112,105,108,100,106,105,106,103,91,113,98,131,103,94,109,105,102,109,106,102,103,103,104,102,118,106,96,92,95,97,114,83,107,104,98,107,109,103,104,96,101,108,92,109,106,83,112,109,102,102,88,112,98,95,98,91,102,100,103,105,118,88,96,108,101,103,99,102,105,101,105,104,101,87,106,92,103,106,102,98,102,116,113,113,106,103,98,110,104,87,107,107,95,133,103,109,87,107,110,99,110,99,94,91,95,99,107,105,100,93,111,100,104,93,111,99,95,100,111,113,108,98,107,95,105,109,102,102,93,100,91,109,95,113,100,105,112,103,115,109,103,106,105,110,87,99,98,108,92,92,101,102,98,102,104,93,99,110,106,106,97,108,88,111,101,100,100,105,103,106,114,103,107,101,115,100,107,107,92,79,101,97,86,91,89,103,87,97,92,98,116,70,107,98,101,97,106,105,105,110,111,103,101,84,95,98,110,100,105,101,105,109,106,104,98,103,87,108,97,109,106,114,91,99,100,105,99,109,105,99,99,103,98,101,99,108,99,120,110,106,114,109,112,105,103,95,99,102,105,109,102,96,99,94,108,84,89,100,107,110,107,105,100,107,111,98,112,97,102,109,102,101,113,101,96,100,102,100,104,104,100,112,113,98,100,105,100,117,113,111,103,99,95,98,97,99,99,95,101,111,104,106,102,88,109,105,109,105,106,105,106,95,104,105,109,105,106,113,107,94,101,113,111,113,94,109,111,94,98,95,97,92,93,104,115,95,86,101,99,102,114,107,71,85,93,89,106,99,95,94,95,111,109,99,109,95,111,101,106,106,101,107,92,102,111,99,83,101,126,94,106,120,107,103,103,110,119,105,109,107,106,95,99,103,95,105,111,97,104,101,108,96,96,90,104,98,104,114,105,119,109,112,118,94,99,100,102,109,106,103,108,98,111,107,83,97,91,100,104,109,96,105,100,96,113,117,99,99,98,113,103,102,101,112,89,101,90,98,104,98,95,98,104,106,108,97,108,108,129,107,102,104,102,109,96,94,101,112,99,100,101,102,102,109,101,105,95,90,99,102,100,103,104,96,63,102,100,91,98,98,79,107,100,99,102,103,108,104,109,100,93,95,116,100,98,94,98,97,122,105,99,105,91,102,90,99,107,101,105,111,116,103,106,100,109,102,100,121,104,97,113,109,101,97,99,98,95,90,90,102,106,107,109,114,95,90,101,120,93,107,134,96,101,93,99,102,105,98,93,111,93,105,104,108,91,108,94,93,89,110,113,98,110,113,105,102,95,102,98,107,95,95,96,95,98,103,99,99,97,98,102,73,122,109,101,83,105,100,95,108,102,109,91,93,97,102,101,105,105,108,100,89,90,109,83,114,110,111,91,116,96,109,112,114,104,100,89,88,104,106,100,102,99,106,94,96,106,101,103,116,110,101,91,91, +427.13828,109,105,98,87,95,87,93,92,103,99,96,105,100,117,101,80,105,106,100,93,105,106,112,102,101,123,99,97,103,98,103,98,94,106,110,96,91,99,108,101,98,101,98,95,93,105,93,86,97,103,99,95,103,93,104,98,105,99,64,94,100,94,98,99,90,113,99,104,96,98,110,101,106,95,94,105,101,91,112,107,88,114,109,97,101,108,104,105,112,72,100,98,110,90,104,91,92,134,103,101,110,109,95,87,94,96,112,96,104,111,104,96,102,109,93,97,97,102,114,83,95,100,78,105,89,109,104,110,109,104,94,101,91,108,95,103,101,103,98,104,91,103,101,94,102,98,109,99,98,97,111,100,103,102,91,99,95,93,99,101,104,104,107,108,108,110,103,98,99,98,95,101,92,112,108,97,96,82,104,101,102,97,97,106,109,97,103,93,111,113,99,104,98,99,103,103,98,107,96,104,107,107,86,102,105,101,91,92,102,102,109,95,124,106,107,99,96,108,98,104,99,100,103,103,97,92,107,106,113,102,110,113,104,103,104,104,103,120,103,107,102,78,100,103,103,90,104,93,117,101,98,89,95,103,101,99,97,107,90,107,100,100,101,98,90,100,113,96,105,100,108,110,114,97,109,98,95,94,91,104,95,99,97,109,99,110,97,100,111,107,94,103,96,110,95,92,104,97,111,104,102,131,112,104,93,107,97,97,108,100,103,114,99,98,100,99,104,104,97,106,104,101,100,104,106,87,114,91,114,104,111,99,107,99,103,112,99,108,102,100,103,103,105,86,99,100,105,102,99,98,90,102,108,105,108,96,98,93,105,99,103,100,95,104,91,95,90,105,102,102,92,102,108,114,98,87,120,107,93,106,101,84,103,65,116,93,100,91,101,106,104,101,104,119,106,92,120,108,104,109,103,96,94,88,96,96,93,98,121,110,91,100,101,102,109,100,100,92,107,106,100,100,103,107,101,91,95,89,111,115,102,111,103,97,95,90,95,112,92,100,99,100,101,110,105,105,103,100,98,109,98,101,96,108,94,94,97,104,93,107,97,103,107,108,105,104,109,98,108,100,91,100,104,74,94,103,107,110,100,106,103,124,110,103,99,101,106,107,112,97,96,103,111,99,92,101,98,106,102,99,104,109,103,114,100,106,102,102,102,101,112,97,110,99,93,95,111,105,103,93,103,110,96,81,89,100,104,101,111,96,95,106,95,102,113,94,114,102,109,108,86,98,101,108,102,97,104,114,116,100,106,113,110,101,105,90,98,109,99,98,98,94,84,100,113,93,109,104,94,86,78,124,113,104,94,99,92,102,99,110,99,99,94,86,98,106,121,113,105,88,97,101,98,124,98,100,106,109,99,105,87,106,95,89,101,100,106,95,105,99,114,105,81,99,107,107,105,110,100,89,99,102,112,101,92,92,96,113,100,92,103,113,95,100,96,100,95,98,92,94,98,103,109,103,92,93,105,97,101,109,102,100,95,101,100,106,111,106,112,102,103,94,98,101,97,98,106,92,106,109,109,109,110,100,102,111,114,106,104,105,103,124,112,92,98,97,76,98,111,109,93,102,93,105,94,98,108,104,102,97,99,108,99,99,110,108,97,105,99,94,95,100,110,96,92,109,99,102,100,87,100,89,109,91,89,98,103,98,95,102,102,105,117,107,98,99,108,95,86,104,94,101,95,110,106,101,104,99,99,108,109,94,102,106,104,104,106,92,103,97,96,110,97,95,96,104,88,104,99,95,111,104,99,106,93,109,96,93,101,91,93,101,112,102,97,92,109,105,105,98,108,103,109,97,97,106,99,92,106,97,113,108,103,96,104,105,113,106,111,91,105,113,80,104,115,95,78,108,90,101,98,87,103,102,103,111,107,100,118,106,102,97,98,95,101,110,107,105,105,105,105,101,108,99,102,107,102,97,103,91,100,95,108,120,95,98,104,111,98,112,104,100,79,121,104,100,109,121,99,99,92,111,100,113,95,106,110,101,101,98,109,105,108,114,112,101,97,104,101,109,105,102,105,95,98,108,107,99,92,104,105,110,106,100,98,104,90,101,105,109,100,109,102,101,110,106,106,113,103,97,113,104,105,108,93,116,107,100,108,102,109,105,80,105,108,120,76,102,102,100,114,117,102,95,90,87,100,93,105,105,103,106,95,117,112,94,97,105,94,91,114,87,103,101,109,94,102,109,95,99,94,105,98,100,108,92,108,103,95,105,106,97,107,110,93,103,95,113,109,103,107,101,92,97,100,99,96,116,104,104,99,107,96,100,100,99,100,98,110,97,96,116,100,99,103,107,105,96,97,86,100,107,106,93,105,98,97,96,96,107,109,106,105,83,108,98,116,100,115,91,108,99,100,107,107,100,105,106,98,104,101,107,102,101,99,98,97,104,100,107,101,114,103,100,106,86,93,90,106,95,102,109,102,115,103,91,100,97,103,96,99,84,104,117,100,128,117,97,99,103,98,116,102,100,100,109,101,103,109,90,81,98,106,113,94,101,109,107,87,112,117,119,98,108,110,99,106,89,105,112,105,109,107,93,105,99,100,110,107,104,101,109,112,92,113,95,94,95,93,96,110,102,115,103,98,103,111,106,121,112,110,106,98,91,103,103,98,92,104,101,107,95,97,90,115,110,112,106,104,85,97,98,97,106,98,107,94,93,108,102,105,102,108,103,93,109,101,96,104,110,106,99,106,113,95,112,97,97,91,110,104,110,106,106,107,99,106,105,94,109,89,99,103,109,107,105,106,112,90,103,101,92,100,97,118,100,100,88,104,92,93,106,116,112,92,106,108,96,98,106,109,106,103,105,90,106,112,102,107,109,96,111,123,101,104,95,99,110,114,110,104,88,103,99,114,108,102,112,108,99,102,105,104,117,94,106,98,88,109,96,104,109,102,100,99,110,117,80,99,104,101,100,97,106,108,106,110,113,104,108,96,107,106,108,97,98,109,117,110,98,110,113,100,109,109,107,95,101,99,109,113,100,107,103,113,104,112,101,98,106,111,90,94,109,113,107,92,88,95,117,108,108,110,101,106,108,91,107,99,116,97,102,102,98,98,104,81,97,105,109,130,113,106,71,110,108,106,93,101,91,92,98,116,117,97,102,109,102,102,111,116,103,106,98,105,108,102,97,110,117,88,99,104,108,104,95,118,112,110,108,104,110,111,103,112,120,99,104,106,109,102,102,100,104,97,96,105,101,96,112,109,110,99,109,107,97,100,96,100,100,90,113,95,102,103,98,94,106,93,104,94,122,103,102,103,105,99,96,110,98,103,98,99,87,107,111,96,99,105,94,106,100,94,92,104,95,97,100,90,99,105,98,96,104,105,109,113,102,111,105,113,110,86,112,101,110,115,109,100,98,113,101,98,110,95,115,108,99,95,113,92,96,109,97,104,116,108,100,107,107,104,93,87,98,100,100,110,107,116,100,109,95,102,102,98,107,116,93,95,102,98,104,110,110,102,110,82,106,98,106,98,107,100,108,106,101,111,111,103,100,107,100,100,107,93,100,102,99,101,109,106,96,106,99,118,111,98,100,103,108,103,78,95,106,104,102,105,108,104,95,96,103,100,109,90,98,101,103,105,110,89,94,104,88,101,101,98,97,94,113,110,87,95,98,100,96,101,102,91,110,92,113,102,110,93,109,109,98,101,101,103,99,105,105,93,105,99,109,112,106,86,109,109,98,103,102,102,108,103,93,96,109,117,106,99,104,130,90,100,102,106,106,105,97,104,107,104,94,93,104,103,99,109,109,108,100,97,91,106,107,109,113,90,104,105,94,102,125,98,104,100,103,97,93,111,105,105,96,92,106,95,100,95,102,97,105,104,89,98,102,95,106,108,105,95,95,96,96,97,81,95,101,78,104,111,84,100,100,113,102,115,108,103,92,96,104,104,102,99,107,106,96,111,113,95,105,100,114,107,102,106,115,105,110,101,122,103,109,100,111,104,108,105,106,109,113,109,103,106,98,107,128,111,104,104,94,96,103,100,107,107,107,103,99,106,100,89,93,111,95,105,115,105,99,106,114,107,95,109,104,109,102,107,91,94,112,106,100,115,107,113,103,106,108,97,107,117,105,99,102,96,116,112,108,108,102,104,103,102,120,95,85,94,110,101,95,91,99,90,103,97,105,83,100,96,109,100,92,103,112,106,100,114,117,104,107,102,111,101,103,109,104,108,65,109,110,107,95,99,112,118,98,105,106,97,95,104,105,103,108,100,90,103,99,98,99,92,100,108,113,115,102,100,101,95,98,109,99,95,102,104,100,104,108,108,96,104,102,117,115,103,114,105,105,108,102,103,105,113,99,134,89,105,94,91,106,137,117,125,91,94,98,107,108,108,99,97,113,96,119,99,94,106,107,102,104,99,112,112,94,98,95,95,95,93,103,92,95,114,102,107,105,108,109,109,93,94,92,101,112,101,114,99,105,101,96,97,108,110,104,108,112,108,98,97,103,98,97,107,105,90,82,108,112,103,98,98,93,99,100,94,101,110,96,98,104,117,109,96,103,103,84,102,113,102,101,86,110,95,109,88,98,115,102,98,80,93,98,105,95,97,98,124,103,105,101,108,100,106,100,103,76,83,102,99,84,112,103,99,92,101,109,104,110,102,111,111,106,107,100,103,99,102,102,105,104,97,104,108,95,100,95,97,109,99,94,105,103,102,90,103,105,99,100,98,109,104,112,99,106,91,114,100,87,105,107,95,100,73,107,106,101,104,99,105,110,106,105,95,84,98,105,103,116,106,110,102,94,105,91,91,98,93,101,105,96,92,109,96,95,79,85,100,91,106,95,113,94,103,117,118,103,95,86,101,106,101,122,108,88,94,86,115,100,96,94,90,92,94,91,114,98,92,102,107,104,109,93,94,99, +427.27856,112,99,90,99,94,103,98,109,85,86,88,98,110,106,116,92,73,98,105,106,108,103,91,98,101,111,112,100,107,98,97,90,94,98,106,109,93,73,93,108,119,95,94,98,98,99,99,107,100,103,97,94,106,103,91,96,103,87,111,96,98,111,104,102,79,109,96,95,90,90,101,99,105,110,96,96,91,96,99,101,113,93,89,90,87,92,90,105,92,86,102,101,107,105,96,90,95,78,91,100,94,104,97,94,91,91,100,99,106,103,92,91,100,101,101,100,106,101,95,88,94,99,102,94,102,93,116,87,96,109,99,98,94,93,100,101,99,101,98,110,104,103,105,100,100,95,97,95,100,89,103,109,101,92,95,96,96,93,83,89,98,89,106,99,99,91,93,94,86,106,96,107,97,96,113,95,98,98,108,103,102,101,102,107,102,100,96,91,97,109,102,102,97,101,92,99,99,93,107,96,87,102,92,95,82,93,86,104,104,102,79,101,111,104,108,92,87,68,100,99,101,101,110,105,97,105,97,136,101,94,104,100,94,104,99,103,106,106,102,94,99,97,98,109,101,113,105,93,98,94,95,103,97,106,101,100,101,91,91,107,89,108,95,83,89,96,96,96,105,96,99,104,102,101,95,118,92,89,108,98,102,101,92,100,102,98,103,98,101,105,99,96,102,102,115,104,99,106,100,110,103,85,91,107,91,109,104,106,100,102,97,110,99,96,98,96,107,101,99,101,86,95,108,113,99,106,102,93,101,101,98,96,111,109,100,100,104,125,111,112,98,107,96,101,96,105,96,104,107,101,98,97,91,111,113,97,89,90,111,110,98,102,99,91,115,101,113,104,119,108,104,93,106,103,97,104,97,99,108,105,97,99,83,104,106,102,95,101,94,96,104,96,88,92,99,98,103,102,92,108,97,101,104,108,102,108,80,105,101,115,88,99,94,104,94,104,108,101,112,109,96,104,94,101,119,102,105,110,108,110,96,107,84,86,105,97,89,107,95,100,107,96,98,96,94,96,99,97,74,109,100,102,101,103,115,113,99,94,101,96,96,84,96,100,98,101,97,104,88,105,102,122,95,98,99,98,78,98,91,106,106,92,108,109,96,111,92,104,112,92,103,104,101,88,96,89,96,104,109,102,102,96,98,103,100,108,104,101,108,101,92,98,109,89,94,95,105,110,98,95,97,105,101,98,109,110,95,137,98,99,96,103,108,86,94,101,98,98,106,93,96,101,92,99,110,80,96,96,112,99,95,106,90,95,98,101,96,99,105,90,97,100,112,102,103,101,103,100,89,92,106,99,97,104,99,113,107,104,106,95,100,111,101,102,96,103,108,75,103,97,96,105,92,108,104,102,97,94,105,90,100,99,106,97,93,102,96,99,122,104,114,103,109,96,101,100,100,109,99,106,98,104,107,102,100,101,101,99,99,103,96,104,94,102,103,91,103,100,99,102,102,97,109,107,100,106,98,84,100,113,99,105,95,108,99,97,108,110,99,71,109,105,107,97,97,85,106,95,104,110,101,101,105,110,90,99,110,105,104,112,108,101,101,97,93,88,83,97,97,105,111,101,99,98,105,98,105,98,96,91,102,109,103,90,100,104,105,100,103,92,101,102,102,98,98,92,96,101,98,117,91,86,95,105,102,92,102,94,97,105,107,102,92,89,94,103,100,89,107,103,101,93,98,100,96,109,114,109,102,112,113,100,103,98,98,94,104,106,117,102,98,101,101,112,99,113,99,95,95,91,113,88,101,100,97,102,98,103,106,89,105,117,109,95,103,93,104,102,90,113,101,96,91,109,96,92,99,105,113,95,101,105,102,94,102,98,105,104,95,100,104,101,103,103,104,97,103,103,98,103,87,104,88,98,102,100,99,104,105,101,97,93,109,100,98,113,111,99,100,106,105,103,106,92,83,90,101,102,101,100,105,92,102,100,102,96,95,114,101,100,108,100,89,94,97,100,99,84,106,103,104,101,106,96,93,100,94,92,106,95,99,105,109,95,99,102,98,113,96,94,95,106,109,104,111,97,93,95,93,117,103,107,106,89,108,100,93,100,77,102,96,102,98,102,106,104,103,104,96,96,97,103,101,100,101,105,102,107,101,106,109,104,99,97,103,103,95,108,100,112,95,111,76,100,103,94,98,103,104,106,104,117,100,110,100,88,94,91,104,95,97,108,99,86,96,109,104,106,94,90,109,124,108,101,101,99,107,107,101,118,100,123,87,106,91,97,95,95,100,101,113,98,98,103,87,108,99,96,91,91,104,96,99,100,97,100,95,96,96,102,88,105,91,104,96,109,90,102,95,105,111,97,103,105,95,91,104,118,100,103,104,90,101,98,107,128,94,99,101,102,110,93,97,103,69,104,109,101,112,98,104,97,100,101,81,96,100,106,82,101,97,87,117,101,104,89,98,93,105,92,104,95,103,89,86,107,90,100,97,112,88,102,100,105,94,98,96,87,109,102,94,107,100,102,90,96,93,92,98,115,102,111,100,101,100,104,101,86,100,99,110,120,104,99,102,94,97,110,113,104,101,90,98,111,113,98,87,102,111,111,95,105,95,107,96,103,102,103,113,85,105,91,95,101,98,106,90,92,87,101,117,95,109,111,97,99,104,102,103,93,107,97,102,109,97,96,103,107,96,90,94,104,98,110,109,96,105,106,96,103,102,101,105,96,102,101,117,97,93,111,95,96,107,105,98,98,106,83,113,101,104,104,106,93,90,101,96,112,91,97,113,102,107,99,90,99,110,105,96,106,113,94,98,104,96,99,95,95,101,112,104,101,100,104,103,101,110,103,98,83,103,112,105,96,109,98,99,102,112,96,81,116,111,104,93,100,102,111,98,106,101,94,106,111,97,97,113,98,97,105,109,98,105,95,113,102,101,105,105,102,92,102,114,96,101,107,102,107,116,99,101,98,97,110,100,99,99,97,98,107,96,107,119,100,100,99,106,109,102,106,104,108,100,87,97,99,98,98,97,106,97,109,105,110,106,98,107,102,112,99,75,106,103,108,101,94,101,112,100,113,106,110,145,98,108,105,85,95,105,103,107,104,108,100,93,99,103,111,97,102,109,112,95,110,113,98,108,95,106,131,103,105,106,105,101,99,97,104,105,106,108,98,86,106,101,97,99,97,91,104,93,106,99,94,102,107,98,79,95,98,108,98,108,106,104,95,107,103,112,115,82,99,101,106,109,87,93,74,101,92,120,94,94,86,89,99,106,98,112,89,98,111,115,103,97,94,105,116,101,93,108,105,104,97,94,103,101,102,101,106,103,86,113,99,101,108,101,97,93,95,115,109,100,99,103,109,98,96,105,106,97,108,102,103,103,108,104,95,112,104,105,93,110,110,112,104,103,101,110,101,95,103,101,93,101,84,94,105,113,96,115,110,100,102,101,111,97,94,89,101,105,86,99,101,97,101,101,107,95,113,102,99,101,106,113,95,108,111,95,110,121,101,106,93,99,108,110,106,107,106,105,113,106,101,98,110,85,89,75,94,108,102,91,105,111,104,106,99,104,98,98,100,92,93,113,106,97,100,101,108,107,95,126,104,94,103,113,100,116,95,102,99,119,98,104,100,115,102,98,110,96,109,103,106,96,99,105,106,96,107,98,109,105,102,99,90,101,96,104,98,103,104,102,102,106,83,105,109,103,98,89,112,104,104,91,96,99,127,108,91,96,101,104,100,98,104,96,117,106,99,101,103,99,98,101,104,103,102,93,100,103,112,105,95,101,98,95,96,103,102,114,94,98,100,113,101,108,91,100,107,108,103,94,95,102,120,95,103,124,99,109,91,99,95,105,99,103,103,97,112,97,106,106,104,97,109,96,109,109,95,82,101,117,96,101,98,100,91,104,99,104,97,108,100,102,75,103,103,108,102,101,104,99,92,103,102,109,102,97,96,108,105,96,98,105,105,101,89,69,107,98,104,100,109,85,94,98,112,93,111,107,107,99,100,101,112,104,115,105,107,96,106,96,104,95,102,103,97,107,108,104,111,93,107,96,111,110,82,116,101,106,104,102,106,105,100,104,112,98,105,97,87,103,112,94,97,110,107,113,111,95,106,99,109,102,117,94,99,109,98,107,108,105,105,100,109,112,93,107,114,107,85,112,91,91,101,98,107,111,112,98,94,105,96,102,116,94,96,103,99,103,104,106,109,100,105,103,109,106,100,97,104,97,105,97,96,107,97,99,98,113,100,104,96,84,91,99,120,91,113,99,98,96,104,123,97,92,97,108,85,101,96,104,108,100,94,100,109,87,98,94,107,95,92,105,97,107,96,97,108,100,91,106,120,97,78,107,101,115,108,108,100,101,99,103,85,100,101,93,101,101,106,106,110,104,105,101,87,107,90,92,101,102,113,105,97,106,103,102,101,95,103,61,109,90,121,95,104,93,103,96,97,95,72,98,85,101,102,109,104,107,103,101,109,94,102,96,90,110,90,96,104,99,107,103,92,99,90,97,89,97,105,100,92,103,103,92,110,118,97,100,92,65,98,99,109,102,111,95,97,105,98,97,93,90,110,101,90,98,92,113,100,98,113,97,95,107,103,100,87,113,97,95,112,103,104,103,105,99,111,100,97,113,104,92,100,111,84,99,71,120,98,105,101,113,76,94,101,112,103,74,95,92,102,85,95,114,97,104,91,100,88,111,103,99,78,102,102,101,107,97,105,100,101,91,86,119,100,102,101,95,103,95,99,94,106,108,105,110,101,97,91,108,103,99,90,100,99,105,81,98,108,105,115,100,94,98,110,104,86,91,95,89,98,73,99,95,102,92,92,112,98,93,104,99,104,91,98,96,109,111,100,103,97,87,111,106,101,100,88,117,91,102,75,90,87,80,66,104,94,102,98,98,97,100,108,102,115,103,93, +427.41882,109,92,95,111,80,105,108,108,109,101,108,78,107,102,93,113,99,101,109,101,93,99,87,106,90,97,94,97,98,102,106,92,114,102,103,132,109,102,107,98,103,110,97,92,87,113,104,97,104,108,98,88,100,82,95,93,86,96,100,95,118,102,102,89,100,97,87,97,94,97,117,113,104,95,96,110,98,100,108,112,109,91,97,100,104,95,100,112,99,99,100,98,88,112,102,94,102,101,94,82,91,91,101,99,97,116,99,104,104,94,105,96,94,90,85,97,71,98,103,91,101,112,107,104,102,99,100,104,109,112,75,88,96,91,82,95,103,113,99,110,104,107,98,100,108,96,109,98,101,95,102,71,111,110,81,110,100,94,110,96,90,101,102,100,106,109,108,103,111,109,99,107,106,100,103,98,96,104,104,116,88,113,99,101,93,109,102,97,89,90,99,105,97,103,100,103,100,105,98,104,88,128,102,95,95,95,84,113,113,114,99,107,100,105,97,108,104,104,107,106,100,101,105,104,100,100,97,99,95,102,103,108,101,108,106,100,97,96,97,87,98,102,103,104,90,101,93,87,61,108,93,101,99,99,104,106,108,109,94,102,101,116,97,109,106,102,100,106,100,91,113,104,110,100,98,105,105,101,109,99,97,105,103,103,104,113,94,100,100,92,100,90,109,96,103,105,102,105,105,99,98,102,98,110,101,99,95,99,106,98,109,97,110,100,102,96,108,85,94,98,116,112,102,83,109,98,97,97,111,113,99,99,99,88,109,104,96,101,103,102,110,113,86,88,100,109,90,101,109,107,108,109,92,109,100,98,105,91,104,102,99,102,93,100,99,108,113,108,99,97,97,103,100,106,92,95,120,96,102,102,106,103,101,102,97,102,113,100,101,91,100,93,93,112,104,100,102,95,106,93,85,87,108,104,97,99,108,108,104,105,100,98,95,107,107,91,91,99,95,109,102,110,102,82,101,101,79,98,98,96,105,86,110,93,95,105,106,109,102,94,106,108,97,103,99,100,98,95,103,98,103,100,92,103,91,106,91,92,96,114,98,106,93,104,110,128,87,108,95,100,96,105,110,98,113,97,91,106,101,109,95,139,101,112,101,107,98,106,92,96,95,106,94,108,99,100,104,108,92,105,109,97,98,86,94,93,91,103,101,95,108,91,98,96,99,114,98,103,106,93,95,103,109,100,95,98,100,108,92,97,99,106,104,87,96,96,97,106,99,114,95,99,100,103,91,108,89,90,103,117,105,104,95,107,97,114,110,113,109,104,97,99,102,111,99,111,100,94,103,110,105,95,104,112,94,109,104,112,107,96,108,99,113,96,103,97,103,108,108,98,98,109,80,96,105,107,90,105,91,101,102,108,109,107,107,102,103,106,104,97,95,98,117,90,96,96,108,98,101,104,104,100,97,91,92,99,114,96,111,108,101,74,108,96,101,96,95,106,100,110,98,114,106,97,104,94,99,110,112,105,103,94,108,118,117,85,103,101,110,100,112,112,106,113,97,108,104,108,107,101,99,97,98,96,97,107,119,108,122,95,99,104,102,95,105,100,103,111,109,98,102,108,93,113,100,100,105,102,99,100,108,105,106,111,104,104,114,90,102,103,108,103,95,105,98,108,99,108,106,105,90,105,117,101,92,101,103,105,105,105,106,106,100,97,100,99,102,104,106,96,109,96,100,105,108,107,113,105,106,99,105,100,101,99,107,104,105,101,106,113,100,105,91,97,102,112,122,109,110,95,108,106,111,94,104,91,106,103,95,99,100,91,108,103,112,100,113,116,100,98,103,107,99,113,107,104,104,101,110,100,113,88,99,105,104,123,99,120,108,106,104,85,103,105,104,104,106,95,98,91,99,112,114,120,104,110,105,108,112,115,99,104,104,88,105,101,91,111,103,103,91,102,96,103,98,107,99,101,103,100,97,90,98,90,95,112,109,112,107,97,113,118,103,106,106,97,98,107,107,105,107,112,109,96,113,95,99,90,97,105,104,91,120,96,106,107,97,104,99,104,101,103,102,105,108,84,99,105,109,96,102,105,103,113,100,111,106,100,97,99,107,110,107,96,104,100,113,100,103,104,97,117,108,103,101,104,91,96,106,102,89,101,99,114,93,124,108,95,95,100,89,104,94,101,96,102,101,111,104,103,109,97,101,112,99,118,103,105,95,93,100,106,115,104,105,94,98,96,100,111,91,104,113,95,102,92,109,102,98,106,96,96,108,106,109,103,97,113,111,104,92,123,108,101,99,102,108,101,100,105,99,100,108,105,107,101,120,108,101,97,100,103,111,94,112,92,102,106,107,104,112,114,111,94,94,107,104,96,94,104,106,109,100,99,108,101,115,91,104,106,97,112,107,108,98,106,99,90,101,98,101,101,98,108,97,107,97,97,109,109,94,107,95,107,99,103,98,102,99,83,99,98,105,117,106,109,102,100,97,101,122,101,106,107,104,98,102,112,103,110,101,108,106,105,101,115,94,98,108,105,116,91,109,107,108,105,116,105,113,109,90,113,116,112,123,103,111,109,114,100,104,103,111,102,101,103,98,107,89,104,111,105,103,99,100,99,87,109,130,108,99,102,95,100,115,104,91,104,107,102,117,95,111,97,108,114,102,104,97,112,113,104,105,101,109,104,114,95,105,97,112,114,105,110,106,93,102,107,111,116,105,98,103,109,108,118,103,119,103,113,79,104,121,102,94,115,108,93,101,98,105,98,84,116,103,111,111,104,113,106,99,96,95,117,102,99,102,105,108,103,104,100,105,119,94,107,102,92,94,100,95,98,107,105,91,85,104,102,101,97,100,102,92,104,97,87,103,101,98,101,91,97,94,105,100,108,105,112,88,100,94,100,107,98,111,90,102,105,104,116,99,99,105,122,102,105,91,101,106,99,108,119,106,96,98,87,106,97,109,103,104,109,94,90,106,97,92,98,99,91,96,93,104,92,112,92,106,115,106,92,108,98,94,94,97,101,104,99,99,95,101,98,87,92,103,99,100,110,100,100,102,95,97,99,122,91,86,95,109,104,104,111,98,116,112,109,99,101,109,82,103,109,112,106,107,97,101,96,103,118,101,100,106,98,101,104,99,95,102,105,102,97,107,106,109,104,100,104,99,113,110,107,106,100,102,105,107,103,98,103,98,102,113,101,106,104,99,98,114,122,96,96,95,87,83,104,112,100,100,87,94,102,99,99,98,89,109,105,107,102,97,110,100,105,96,109,93,96,110,106,100,109,99,106,86,96,98,107,90,115,107,91,103,76,109,103,107,74,97,96,109,91,105,114,104,104,99,97,104,101,111,107,112,92,109,106,114,103,103,112,96,112,95,99,103,107,103,101,105,104,93,96,113,105,109,100,91,88,91,91,96,105,104,106,106,105,106,84,106,100,103,102,100,102,104,110,90,102,126,98,109,91,111,97,99,100,98,103,99,92,106,106,99,108,102,96,98,101,94,106,99,93,109,104,93,103,91,115,105,112,111,106,99,101,105,107,98,108,83,101,105,110,99,113,114,98,109,100,101,114,88,97,104,102,106,99,99,91,99,106,110,88,100,99,96,99,99,107,110,96,91,99,89,105,100,91,113,110,95,113,102,100,102,106,88,117,125,98,103,103,96,102,104,100,100,91,105,98,102,100,100,87,102,94,97,96,109,98,95,97,113,81,72,102,98,107,110,101,106,104,103,99,109,106,132,90,102,93,104,109,100,116,91,106,106,94,101,101,95,100,91,99,107,96,101,113,108,96,97,96,105,93,101,100,106,83,96,100,132,109,103,112,104,102,107,100,105,93,104,99,109,101,105,103,90,118,92,101,105,90,101,116,88,137,96,102,96,95,109,108,104,94,110,98,96,120,115,97,91,97,89,114,102,94,96,105,98,106,106,102,101,105,101,100,118,111,100,104,98,116,103,89,98,97,103,106,92,110,106,109,107,102,104,102,92,97,107,107,104,106,102,108,109,98,106,100,91,82,97,110,106,109,98,95,104,100,91,107,102,109,99,94,110,109,100,115,102,107,96,103,102,95,91,105,98,103,94,104,98,89,106,110,94,102,114,107,106,108,92,107,94,102,96,95,112,105,95,108,102,107,105,103,103,100,95,103,101,100,106,106,96,112,105,107,99,107,114,99,119,108,106,101,100,95,104,110,98,94,110,97,95,111,84,100,108,102,90,108,113,105,102,108,100,106,91,93,105,99,112,104,89,97,101,75,99,102,96,98,111,93,97,96,98,109,98,105,103,101,96,92,103,91,111,100,94,98,102,99,87,102,113,105,100,104,100,104,116,109,109,111,99,111,127,99,104,94,101,98,105,97,113,88,105,93,100,107,95,103,107,98,101,104,112,93,95,93,106,76,104,98,100,113,104,109,88,95,104,101,95,102,98,104,106,92,99,104,105,97,87,104,97,90,99,89,96,91,99,108,95,103,106,99,100,102,92,91,96,123,75,101,106,101,102,99,93,103,104,91,107,104,101,103,104,99,82,113,103,93,102,89,89,91,95,96,98,96,109,112,103,102,102,111,101,90,99,103,90,91,107,103,85,99,100,92,106,113,94,97,95,108,104,85,91,107,109,91,95,97,93,96,98,100,110,98,105,105,90,96,96,108,93,116,110,92,101,96,100,90,127,93,90,97,96,97,90,104,98,96,101,96,96,105,105,108,100,117,89,94,88,71,98,106,84,120,91,93,92,99,94,90,97,110,90,108,95,104,97,90,105,110,86,91,102,101,95,92,71,92,104,88,87,101,105,92,98,77,95,102,100,109,95,92,90,92,102,107,85,95,99,104,114,96,98,93,109,100,91,94,97,94,98,102,101,110,119,108,84,95,98,92,97,108,109,96,94,99,94,95,93,109,91,97,97,109,102,128,104,97,109,86, +427.55911,104,101,97,100,80,84,104,99,100,99,108,103,101,90,109,98,103,81,110,103,110,97,99,87,105,109,91,110,102,98,109,89,102,98,105,99,77,93,102,81,91,106,104,100,111,86,110,95,95,102,105,105,112,88,104,94,94,100,112,110,113,107,104,75,93,99,103,104,108,97,106,104,109,103,84,110,92,95,98,104,80,113,88,112,97,102,99,111,112,106,101,109,104,97,105,107,105,101,120,96,101,99,97,96,98,101,74,102,94,99,100,98,94,98,96,94,104,100,110,110,94,93,98,104,100,96,105,94,105,110,93,95,104,104,114,112,118,102,95,98,98,101,101,101,101,97,107,90,100,105,102,103,110,89,95,96,101,94,95,106,101,124,97,101,98,94,101,99,95,99,99,101,89,101,97,95,99,100,98,103,99,108,103,104,105,91,108,91,102,99,95,95,96,98,93,101,101,103,106,99,100,87,102,92,102,110,101,113,105,115,96,99,98,105,94,105,96,104,106,100,105,108,95,103,96,104,93,103,105,106,95,97,106,102,102,105,100,98,95,91,109,101,112,103,96,96,101,98,94,110,102,102,108,106,117,96,108,99,92,97,94,108,105,99,101,97,107,107,104,92,103,100,103,97,128,100,113,103,98,114,99,101,92,114,109,113,99,95,103,92,94,102,118,96,104,104,102,104,109,119,100,98,110,106,102,103,112,102,102,99,90,102,99,107,99,102,98,107,95,102,105,105,107,113,100,108,93,92,109,109,104,103,99,98,107,99,111,95,101,99,97,96,99,94,105,113,105,96,87,99,105,102,108,106,101,92,96,107,105,99,113,105,78,100,96,105,84,104,101,104,96,97,103,99,96,99,91,96,100,98,99,98,94,96,94,86,102,104,103,101,95,92,98,107,110,103,99,98,100,108,109,113,112,101,106,99,109,106,94,105,96,114,105,105,102,101,103,101,104,105,109,106,103,113,101,100,114,96,94,103,91,106,95,102,104,96,87,103,94,98,97,99,108,107,102,113,92,99,107,109,96,91,91,105,121,101,97,96,106,105,103,105,104,119,107,113,105,110,100,98,98,105,99,99,97,93,111,112,97,108,91,104,102,106,95,99,99,105,107,99,91,99,98,106,96,96,96,101,100,114,105,103,107,105,102,106,76,99,107,89,102,84,105,98,104,104,105,116,112,102,111,101,101,113,108,106,79,97,96,118,97,96,99,118,96,105,95,94,107,103,95,103,129,101,105,108,104,83,80,95,106,103,107,92,104,91,102,103,98,96,102,104,97,114,106,107,106,100,105,97,92,110,104,98,110,95,95,92,102,101,99,95,86,101,105,109,109,104,101,105,113,95,102,93,102,100,101,102,104,99,94,110,101,94,102,97,99,98,95,107,100,120,103,93,100,106,101,86,96,103,120,96,95,93,96,109,98,95,120,105,100,99,97,98,89,109,107,104,108,100,106,109,96,99,71,96,89,90,123,107,98,104,96,104,77,107,104,74,106,101,95,109,111,107,124,104,112,85,101,110,114,104,95,134,93,104,93,103,88,100,102,101,107,94,96,97,105,108,95,95,108,104,88,95,93,106,98,101,99,98,106,103,108,98,101,105,104,112,102,90,106,103,103,91,97,94,75,105,114,94,106,92,106,99,101,97,106,101,92,112,107,103,108,114,101,80,95,93,104,104,107,102,109,105,97,101,79,110,98,94,101,120,113,93,101,108,97,104,99,103,90,124,98,102,84,111,93,98,101,100,101,96,103,112,106,99,104,106,109,106,100,97,112,101,105,102,99,109,106,103,106,112,89,102,103,105,106,90,116,99,90,108,108,103,120,93,106,109,102,96,121,109,113,102,102,104,107,99,108,96,104,99,103,97,96,102,107,99,102,109,106,88,92,97,78,105,109,92,105,104,98,99,107,107,110,98,106,86,104,109,105,102,111,104,92,101,97,107,102,107,94,105,107,104,97,98,96,105,104,116,97,116,90,106,109,75,100,105,102,100,102,103,108,104,101,97,85,111,112,97,90,113,105,94,104,105,86,109,98,94,100,91,109,70,96,104,110,109,105,103,95,106,117,101,106,102,105,103,122,109,113,109,112,111,113,103,104,91,108,92,96,70,97,113,108,101,106,101,108,107,99,97,103,98,108,108,97,122,107,118,99,97,106,107,107,106,102,102,101,99,112,104,99,100,103,98,102,134,106,109,92,113,102,107,104,95,102,88,97,92,114,114,101,100,94,104,93,91,85,101,107,105,98,98,100,98,104,97,118,90,93,97,100,96,105,103,100,104,108,98,92,117,97,110,105,102,108,121,98,106,107,101,102,72,108,87,107,111,104,112,115,98,105,88,103,101,103,108,101,110,99,107,101,99,93,109,87,100,115,109,107,103,105,102,100,103,90,106,105,98,91,102,92,113,111,95,92,99,102,99,102,114,103,107,106,112,98,62,103,94,107,116,91,102,101,110,98,102,117,105,101,105,102,97,100,100,102,116,114,108,103,100,112,113,124,106,109,100,109,102,103,105,106,99,108,96,107,105,104,106,100,117,100,87,112,89,109,101,105,101,103,110,102,100,110,102,109,99,99,103,108,102,72,108,104,100,103,108,111,97,109,106,87,106,109,125,105,109,90,98,97,105,107,109,131,101,103,113,106,109,99,98,96,107,117,106,110,103,107,114,104,95,109,117,99,113,105,107,106,111,65,111,106,108,96,102,106,75,102,104,99,109,102,103,105,106,108,105,110,107,107,113,113,117,111,109,120,117,94,102,134,106,101,117,103,100,113,108,106,115,96,113,107,108,114,109,99,88,91,105,113,96,104,98,78,104,107,120,100,106,116,101,106,99,113,105,105,116,110,106,101,108,117,117,107,104,97,102,103,103,97,115,117,120,108,114,112,89,99,102,108,99,113,110,88,102,108,102,109,102,97,103,101,109,107,104,104,108,108,104,114,102,111,99,103,103,104,102,98,98,98,86,107,94,99,116,99,99,96,103,104,97,99,111,101,105,117,117,104,106,87,100,95,108,113,70,104,102,93,110,95,96,105,101,99,97,104,125,109,101,102,95,100,100,109,105,106,105,99,105,124,110,106,100,116,102,105,105,96,98,106,107,95,111,104,99,104,91,99,101,98,97,107,109,89,98,86,108,106,88,71,102,104,101,120,117,105,100,100,113,112,113,109,111,106,104,93,100,103,111,93,107,115,116,101,97,117,102,118,100,109,109,116,105,101,93,108,100,124,102,106,90,94,108,121,101,106,117,85,107,101,104,99,94,99,113,107,98,112,100,102,96,96,105,98,87,106,93,84,100,121,111,99,99,102,113,111,94,91,103,100,113,111,111,99,103,101,108,107,109,101,110,102,116,106,94,100,111,119,105,96,102,109,105,106,92,99,113,95,94,105,91,98,99,109,107,109,93,107,104,104,104,106,102,117,106,87,103,103,103,113,95,103,99,109,111,79,99,107,109,105,94,105,98,101,105,101,108,103,99,110,79,103,116,98,107,104,111,108,95,102,95,104,116,100,120,101,103,104,110,105,101,106,113,112,107,104,116,111,109,108,103,117,111,108,107,110,80,113,100,109,106,101,100,111,104,98,106,122,112,106,98,103,99,105,111,102,109,99,112,107,102,107,101,101,91,90,103,103,112,98,100,100,106,100,106,106,96,115,99,100,112,100,101,102,98,109,101,104,104,105,105,105,104,98,94,115,106,91,89,105,100,107,106,112,106,118,112,102,92,100,103,107,114,104,103,109,106,99,96,99,113,114,103,113,104,87,98,119,100,94,105,103,86,113,117,104,107,108,113,99,89,105,94,110,102,97,103,105,98,98,111,101,110,106,108,102,113,96,92,103,100,100,113,108,106,98,102,98,100,104,110,93,96,105,105,112,98,103,107,102,110,99,107,106,106,112,92,106,102,106,104,104,112,111,103,103,107,107,102,109,112,100,106,93,112,107,107,105,87,113,100,99,108,110,125,105,113,102,108,98,112,102,109,108,108,106,108,108,104,100,113,89,101,110,111,104,105,112,101,105,102,88,108,104,107,100,97,106,105,109,104,109,102,104,103,109,99,110,86,112,119,101,109,99,75,95,113,100,104,101,108,100,115,88,104,103,100,106,109,93,96,94,98,100,115,107,101,94,107,108,108,99,97,106,99,117,107,103,95,113,103,110,108,113,100,92,110,113,118,110,95,106,104,99,102,101,100,92,91,103,110,102,100,98,98,109,108,102,111,96,101,106,115,108,106,100,102,101,105,101,92,108,131,109,99,107,100,95,104,90,100,109,99,102,107,104,100,100,101,107,99,108,111,107,110,100,101,109,99,110,101,105,93,97,103,101,107,102,99,104,98,120,98,101,108,108,102,104,110,98,95,99,89,111,99,98,106,105,91,99,98,98,103,107,98,102,107,95,99,101,94,109,113,115,99,94,110,99,103,104,113,113,110,99,99,98,99,114,102,100,97,107,102,103,102,94,98,94,94,101,121,91,106,106,113,116,103,105,98,98,102,101,96,103,103,99,103,95,113,100,103,112,107,111,96,91,114,92,109,103,103,96,98,117,114,106,110,98,97,109,87,109,101,88,78,98,99,104,97,107,102,93,109,106,104,101,103,103,104,113,100,90,92,74,103,95,85,113,92,97,108,101,108,96,103,101,108,106,88,109,105,102,110,101,109,109,103,96,101,125,104,95,93,101,93,99,102,93,100,89,92,96,109,105,98,113,93,105,99,104,109,108,97,92,104,99,98,101,96,102,97,99,100,70,105,105,98,104,102,102,104,108,92,94,91,108,106,101,101,107,109,108,114,99,103,77,96,101,114,104,100,93,108,98,97,101,84,123,91,106,95,104,94,103,95,86,108,110,91,98,121,84,108,104,101,99,95,87,114, +427.69937,98,98,104,112,91,105,95,106,107,89,87,109,89,94,95,92,92,104,101,91,112,101,88,95,91,95,101,96,110,106,114,86,94,110,100,94,100,103,111,87,100,114,99,107,92,105,127,112,94,111,94,106,95,93,104,87,86,93,105,96,99,97,102,97,90,112,96,91,98,95,97,105,106,104,95,103,98,94,106,105,96,100,104,97,98,87,102,105,108,100,95,103,91,94,102,101,99,92,94,94,99,92,96,99,108,118,96,109,89,95,104,97,114,98,93,97,92,106,104,108,93,98,99,117,81,96,98,105,107,101,96,109,101,103,106,109,95,108,117,106,95,88,95,102,86,99,95,110,100,108,86,100,99,93,95,98,98,82,113,99,114,93,98,106,98,100,110,97,101,107,60,100,103,94,93,99,102,89,101,102,102,100,105,101,96,100,102,95,101,111,93,115,93,109,106,96,98,103,102,110,93,98,94,101,107,107,98,67,109,109,103,100,105,99,113,98,103,99,107,106,102,112,111,90,91,99,91,108,93,98,92,102,109,105,110,98,116,121,103,107,95,101,108,117,94,101,95,99,100,102,108,92,95,103,94,102,97,105,102,103,105,101,107,91,105,103,94,101,107,104,95,91,101,102,106,96,96,104,96,99,104,101,100,108,102,104,101,110,98,114,101,98,112,101,111,96,106,102,99,108,110,94,98,98,93,105,112,95,106,103,88,84,117,94,97,97,107,96,99,102,110,102,103,108,97,102,104,97,100,92,108,101,112,103,87,106,102,103,93,105,95,96,110,97,98,100,87,108,104,109,106,68,114,100,94,106,108,108,102,113,105,99,93,113,93,109,108,113,109,105,92,105,95,93,101,105,111,95,98,98,105,111,100,114,101,94,101,109,112,92,86,104,104,110,95,70,105,95,102,100,96,105,109,106,92,84,102,105,105,104,107,106,109,100,92,104,99,96,111,104,103,99,101,105,103,109,104,94,110,98,88,98,103,65,96,108,93,109,98,106,103,118,101,105,80,95,106,100,100,95,112,105,98,108,75,105,100,99,82,101,97,103,104,82,113,110,108,111,108,107,103,100,109,95,93,84,100,110,109,96,109,105,108,106,95,108,107,97,102,102,104,97,98,99,107,127,106,106,95,85,104,95,95,103,98,105,96,100,104,97,115,95,101,97,99,106,105,107,102,101,97,100,96,106,103,102,98,94,105,112,93,102,110,95,97,74,99,106,113,105,121,113,94,108,99,103,97,95,104,111,101,102,116,91,97,97,106,111,101,113,100,103,109,91,104,89,101,110,108,95,97,96,109,107,102,100,102,99,96,110,110,101,116,110,105,103,120,103,106,106,95,96,99,98,101,107,95,108,99,104,102,109,100,96,103,99,104,94,102,104,112,102,95,101,109,99,102,98,112,98,105,99,107,92,97,100,94,86,104,102,101,109,94,81,97,102,101,114,103,114,110,99,106,105,102,110,104,98,106,104,96,102,99,103,99,107,71,88,99,98,127,109,99,100,97,114,102,110,92,104,104,104,86,99,111,104,100,102,103,100,104,103,105,92,89,102,108,99,113,99,106,109,112,105,90,95,104,109,95,101,113,107,106,96,95,106,101,102,102,93,103,109,93,96,99,101,100,102,106,100,87,100,105,103,98,108,104,104,76,104,79,110,87,103,102,103,99,103,118,109,111,89,98,111,98,101,100,101,106,119,112,102,104,89,112,109,104,113,111,93,109,105,105,93,110,99,100,108,113,92,102,98,92,98,103,101,102,103,76,103,99,96,103,112,106,99,108,110,109,99,103,107,108,108,100,102,101,105,102,102,100,102,96,103,105,104,99,94,105,94,110,99,103,104,97,113,113,97,98,104,119,102,101,106,95,110,108,98,99,108,104,98,106,106,97,81,104,112,105,104,104,113,110,108,114,103,107,88,92,102,107,106,99,106,95,99,71,102,92,108,101,93,105,107,105,100,94,97,120,109,105,103,100,106,99,92,115,111,104,100,95,109,99,95,101,109,100,102,91,90,104,121,103,108,99,94,99,104,108,101,106,99,105,97,109,108,106,98,103,105,89,109,113,103,101,103,99,106,96,94,100,99,101,108,107,106,100,113,99,86,105,105,100,113,100,106,99,88,100,98,99,118,107,109,111,98,108,104,94,99,84,104,112,102,121,99,104,108,96,99,110,94,101,99,96,102,106,102,107,89,92,98,104,104,98,98,109,94,115,102,95,105,94,102,100,108,107,107,105,91,106,99,103,96,96,98,99,99,109,92,113,98,95,95,105,112,91,99,100,100,97,100,108,106,90,113,102,102,108,91,86,105,93,91,102,104,102,86,94,101,103,97,106,105,98,91,107,108,106,114,95,98,109,102,87,97,117,106,104,91,111,91,105,107,100,104,109,93,87,89,103,99,104,101,109,100,102,113,100,101,89,102,100,108,98,101,102,101,103,97,104,108,94,98,101,83,90,96,108,107,99,94,103,89,96,97,112,99,109,104,98,98,107,107,108,105,91,105,101,92,93,109,100,103,102,93,93,105,98,106,107,105,105,94,76,97,99,101,106,99,116,111,105,103,109,99,107,105,104,95,96,103,104,101,101,107,103,109,104,101,113,99,109,103,102,99,107,98,100,107,104,91,100,97,104,113,96,99,93,87,99,106,88,100,94,104,99,101,108,103,96,101,100,109,94,118,101,102,109,98,94,95,117,98,105,109,107,103,103,106,112,101,94,115,105,102,101,106,105,105,96,102,96,109,92,99,101,115,110,97,110,95,93,106,98,101,105,105,97,102,95,98,101,101,99,102,111,101,108,99,102,91,97,91,116,103,100,99,98,103,98,104,91,94,95,121,109,100,102,105,113,105,89,105,97,108,101,100,105,114,101,104,109,92,103,100,91,91,95,111,99,102,102,95,113,102,102,100,101,101,102,100,110,101,107,99,104,103,103,111,109,96,106,106,94,89,94,101,99,105,106,105,105,98,95,107,91,103,111,112,104,99,84,98,109,101,113,88,109,101,102,100,88,112,96,91,96,99,105,106,98,104,107,77,98,108,99,97,109,92,109,113,95,88,100,100,104,110,112,95,107,102,102,98,100,99,97,97,87,100,110,100,96,111,100,110,109,103,112,94,92,86,103,110,99,97,96,85,98,97,94,102,101,99,111,95,104,105,107,103,109,98,101,95,106,87,102,105,122,107,99,105,93,100,101,98,97,101,86,95,95,109,105,105,90,93,79,97,114,91,87,93,100,114,98,98,97,108,94,87,97,97,103,100,97,96,101,92,104,87,100,103,109,73,102,91,99,104,91,80,100,108,103,86,104,88,100,100,96,87,102,99,92,103,111,89,96,99,101,117,95,102,97,100,100,102,96,101,95,99,91,100,102,92,106,86,102,96,105,103,104,106,101,122,106,99,102,98,100,113,112,104,98,120,92,82,94,101,100,106,106,95,96,102,90,106,110,104,101,106,109,107,101,95,92,100,92,93,93,98,109,102,101,116,108,100,98,103,103,107,99,107,106,109,108,94,101,110,104,103,97,97,102,109,95,73,89,106,101,103,107,85,102,101,113,107,92,105,102,91,100,103,94,103,95,91,123,91,96,97,98,99,99,95,97,98,109,105,109,105,110,110,102,94,110,110,97,93,102,106,106,94,103,86,95,113,96,102,97,100,97,109,119,94,98,89,113,108,121,99,101,96,98,95,104,102,95,104,103,100,91,88,115,103,102,98,80,100,95,113,108,101,100,90,108,94,94,106,103,106,96,102,104,106,84,91,102,105,109,94,100,103,98,88,105,102,107,95,106,96,97,124,109,112,97,103,110,103,101,105,105,99,101,102,101,107,106,101,109,96,98,110,98,102,93,103,86,99,98,107,92,102,105,106,105,104,102,80,91,99,100,96,96,102,88,93,86,94,93,96,100,103,103,104,92,103,102,91,90,105,86,103,100,107,109,103,97,84,109,102,102,99,104,98,108,107,96,105,88,103,107,123,102,104,110,95,104,105,98,111,111,79,90,104,105,98,110,86,98,96,98,103,95,100,102,97,94,102,120,95,99,95,97,95,96,102,105,103,109,108,90,113,110,96,107,103,103,96,95,101,101,96,100,98,103,96,108,103,95,78,110,111,97,97,99,108,103,104,106,99,113,100,102,91,109,95,67,98,100,93,103,113,97,98,103,105,98,102,106,92,102,95,114,98,103,99,85,107,104,90,103,92,97,109,96,94,106,98,97,99,93,105,101,101,95,104,84,93,98,110,108,104,102,94,99,102,90,89,100,105,105,100,107,90,95,102,99,104,100,106,119,97,96,99,102,91,82,103,98,103,112,106,108,100,98,81,99,100,96,94,103,114,103,103,99,108,106,96,95,99,101,104,103,107,101,99,99,103,111,98,95,99,96,94,100,98,96,87,100,98,99,98,96,95,98,100,90,107,95,111,86,107,95,99,108,96,105,102,106,99,98,96,98,103,99,97,95,99,104,103,100,93,99,95,81,102,96,107,101,88,92,95,97,94,101,72,100,95,97,94,98,97,104,100,96,104,101,102,100,108,94,96,95,82,103,100,116,100,89,98,102,83,88,108,105,112,101,103,99,98,93,105,91,90,104,103,97,98,101,104,102,100,96,112,99,98,94,97,102,95,105,92,98,111,102,99,97,94,93,87,101,101,115,107,98,98,110,98,104,91,102,102,104,97,111,104,105,130,108,95,93,95,90,102,92,98,106,104,109,95,105,103,109,104,93,98,100,113,98,104,87,108,107,97,102,94,108,95,99,108,85,98,87,100,106,93,105,95,97,99,114,90,95,100,111,95,91,98,107,106,94,94,85,103,97,94,92,99,94,90,104,90,94,109,101,100,101,99,95,100,99,93,88,89,88,100,121,92,96,87, +427.83966,126,95,102,100,104,101,107,99,105,117,124,92,100,87,107,99,107,110,117,99,106,88,110,99,111,112,103,102,101,109,99,94,107,106,105,107,104,108,103,102,107,95,102,105,107,109,96,101,98,100,100,104,93,99,104,97,95,93,109,88,108,105,98,90,114,105,93,102,93,99,90,113,103,110,102,105,99,101,118,84,99,91,87,108,113,93,103,110,81,97,102,90,103,107,108,97,99,95,101,93,106,111,102,95,68,99,102,98,103,109,96,92,100,94,105,96,102,100,114,104,85,82,105,100,102,99,90,106,109,104,91,100,91,105,107,102,101,106,96,93,95,100,94,95,105,94,96,106,92,88,97,101,120,105,98,101,101,103,100,108,88,120,95,105,102,97,108,102,108,93,91,97,90,98,95,100,108,103,114,107,103,104,103,95,99,95,95,103,107,99,87,101,107,94,106,110,102,96,102,104,111,112,109,98,101,107,98,104,99,105,102,110,107,109,114,109,93,98,100,105,106,103,108,107,94,98,101,112,106,98,102,121,98,105,105,99,103,104,101,111,95,101,116,106,101,93,110,105,113,94,103,112,100,108,91,107,108,107,100,98,134,97,90,116,100,112,114,100,104,105,89,98,88,102,99,97,101,110,116,103,95,98,104,105,97,101,93,110,94,100,99,104,102,99,97,96,99,92,104,98,100,96,97,107,104,100,105,122,96,112,96,124,100,109,88,85,104,116,99,95,99,100,94,98,108,106,92,92,90,119,112,96,103,102,100,108,111,101,106,107,91,101,114,93,99,101,104,98,95,100,98,107,98,100,112,95,101,120,104,99,108,108,102,105,111,98,99,104,103,116,105,107,106,100,109,99,105,102,101,100,92,121,109,105,97,80,101,125,113,101,102,92,91,103,114,94,92,102,109,97,93,105,102,97,112,102,116,110,87,104,95,93,109,113,114,97,106,109,111,110,104,91,97,102,102,102,104,103,100,107,94,104,107,101,102,104,91,114,103,105,111,107,111,117,93,106,112,101,109,107,90,94,99,107,110,97,106,103,92,114,117,95,106,107,118,121,110,101,102,108,109,109,105,95,100,99,106,106,94,103,101,111,103,106,116,107,107,104,103,99,103,108,112,109,97,102,100,105,101,91,104,98,89,87,97,105,91,103,118,100,105,97,104,98,94,107,114,99,95,113,100,99,95,103,105,95,116,115,96,99,106,106,98,106,96,104,120,101,105,110,100,112,95,104,106,115,103,112,92,116,111,122,107,108,105,105,95,102,111,105,91,104,92,83,102,99,103,104,97,94,94,100,110,85,123,102,101,86,101,101,97,100,114,116,103,106,114,93,111,100,100,95,108,109,112,114,99,98,106,101,100,109,112,92,105,106,100,110,96,76,87,96,92,108,102,117,102,91,104,101,107,89,109,95,88,102,97,108,101,98,100,97,114,106,87,96,78,97,100,109,112,103,112,98,105,110,100,108,92,96,95,107,103,105,104,112,96,112,108,103,110,102,107,110,109,103,104,104,106,106,109,103,114,114,96,102,107,102,98,103,97,102,99,95,96,80,104,103,100,107,106,96,95,103,101,97,95,108,110,97,103,101,105,107,102,105,102,96,108,94,104,95,96,104,95,104,109,105,99,116,110,76,98,111,107,100,100,105,121,110,94,99,106,93,99,101,103,102,107,84,98,107,99,108,93,103,101,105,99,99,107,79,101,101,122,103,109,84,108,102,108,99,102,99,87,99,99,97,104,92,98,103,104,90,103,103,88,99,100,95,91,103,103,107,99,101,105,106,102,117,108,111,101,102,109,105,100,95,108,90,96,102,101,101,103,110,103,115,98,112,121,88,89,93,111,87,111,108,109,95,106,104,110,122,93,97,99,117,102,90,116,104,106,95,94,102,86,114,96,108,101,99,94,103,102,92,103,102,115,94,98,96,100,115,94,91,108,113,89,109,105,106,113,102,100,96,106,113,108,79,101,113,112,106,104,104,100,103,105,96,105,103,96,98,100,122,105,120,108,112,99,110,107,98,84,92,105,115,101,107,101,103,106,104,120,96,105,87,100,107,100,94,116,114,100,104,112,97,101,104,101,110,104,118,103,109,97,106,94,118,106,104,109,97,111,107,105,102,108,103,101,108,96,105,92,113,108,112,100,104,103,100,105,115,114,102,106,99,91,104,112,95,109,75,98,92,99,95,104,107,104,103,119,99,91,98,107,100,110,104,100,108,95,107,113,81,105,100,114,106,105,105,99,107,105,104,98,105,108,102,98,100,105,105,99,101,112,106,100,107,87,98,100,109,113,108,97,103,100,97,113,110,114,102,106,116,112,103,122,112,100,113,102,99,102,89,117,111,99,100,98,108,100,105,97,113,105,113,100,91,104,93,108,103,99,92,105,113,107,110,103,104,113,104,103,91,94,105,103,99,101,99,102,104,99,96,113,93,101,95,102,102,103,101,98,80,90,100,113,112,97,98,112,117,101,96,100,76,110,100,109,102,109,104,102,100,96,117,93,107,98,106,112,89,102,102,96,98,101,99,113,113,98,107,106,104,100,97,108,101,103,106,95,91,104,95,107,82,101,105,108,101,101,93,113,105,95,96,99,113,109,95,119,112,94,113,113,125,111,108,106,104,104,90,111,119,106,102,107,104,108,90,116,95,106,108,92,100,108,104,102,101,99,122,100,96,108,93,103,104,103,104,109,102,92,105,108,93,105,109,99,110,99,115,88,101,98,108,113,107,107,104,104,123,99,89,93,81,107,108,92,114,101,107,107,101,110,96,109,98,112,98,67,103,103,103,107,100,100,108,106,99,109,96,101,119,99,89,108,133,109,99,121,108,101,105,99,97,90,106,98,99,110,100,103,100,104,95,103,112,98,124,103,113,106,109,107,109,106,104,107,111,112,106,100,103,102,113,100,110,99,116,95,101,98,114,101,97,102,104,89,115,82,91,111,113,101,109,98,104,108,102,109,96,106,113,109,99,104,90,107,108,105,108,109,99,94,98,100,117,100,95,98,105,103,90,93,116,101,107,106,104,109,119,96,94,103,97,102,95,106,117,89,104,105,88,97,111,111,97,101,97,96,98,115,99,103,87,99,101,106,106,112,108,104,106,104,106,109,98,99,95,101,106,102,98,101,109,104,110,104,107,111,106,96,109,98,87,109,100,96,108,95,112,102,102,111,104,102,111,107,101,112,103,101,92,106,96,112,102,114,100,106,107,99,101,107,95,100,108,102,102,83,104,104,96,109,106,99,106,106,97,103,117,107,95,111,102,119,95,123,100,119,105,103,110,101,106,99,94,98,104,112,102,106,110,92,94,100,105,88,117,105,97,105,102,114,104,99,106,98,113,99,104,114,105,98,108,98,99,95,100,99,109,112,119,106,113,93,112,111,100,101,94,108,103,103,109,94,106,82,92,94,99,98,115,116,94,103,104,104,104,105,92,106,114,106,119,112,99,109,107,104,95,100,98,105,109,91,109,111,112,106,107,107,137,105,108,109,96,113,116,99,102,100,104,101,107,94,104,91,109,107,101,115,103,107,117,105,99,106,105,106,111,102,97,93,108,112,110,95,99,98,111,104,102,117,100,100,106,101,102,110,111,98,91,99,113,82,111,97,109,108,107,109,102,105,102,99,112,93,103,103,94,105,107,110,105,100,104,97,107,109,111,106,95,108,99,101,118,121,106,105,105,106,119,100,108,105,100,108,106,108,93,108,108,105,98,108,105,115,104,105,91,102,108,113,105,112,106,79,117,104,104,65,101,103,99,112,115,99,98,98,104,112,108,114,100,96,107,101,117,105,98,95,98,94,100,89,119,86,108,105,91,105,105,107,103,99,98,117,104,104,108,98,101,92,105,121,101,90,98,101,93,107,89,105,106,109,100,108,108,95,105,87,105,101,98,116,95,113,105,105,97,97,111,104,95,118,111,105,111,98,110,92,98,107,95,100,103,103,106,98,88,116,113,100,112,98,104,102,94,95,109,115,106,97,113,118,97,109,110,102,99,102,114,106,107,117,110,109,110,95,109,105,105,100,103,108,98,109,114,104,105,107,102,109,113,92,101,103,100,106,105,116,105,106,104,92,101,103,104,98,110,96,107,88,85,102,103,100,99,98,101,106,102,106,113,99,104,105,94,109,86,91,117,99,105,104,98,113,125,97,105,113,111,100,115,96,107,104,106,106,84,105,102,108,99,96,101,97,110,105,91,102,100,107,102,96,104,107,105,93,112,90,102,102,108,105,112,107,98,100,108,100,106,103,99,107,102,109,102,108,112,104,110,83,102,93,113,103,108,116,113,108,112,105,112,82,105,99,102,105,110,103,99,105,96,111,107,102,108,96,106,108,99,109,105,103,101,101,104,107,104,99,93,90,103,99,109,99,102,97,106,103,105,100,108,91,100,116,111,99,97,106,95,98,102,104,113,99,113,107,98,110,84,101,110,101,105,98,101,104,109,93,114,77,101,105,101,93,113,94,104,103,95,98,123,100,93,92,93,98,100,96,101,94,112,102,106,98,111,98,112,98,103,99,99,101,101,98,99,120,104,94,98,93,81,99,101,100,97,103,97,102,107,83,129,94,111,114,101,105,104,110,98,99,107,105,101,105,103,109,113,104,105,103,105,104,108,100,91,100,103,104,96,115,103,120,100,102,96,87,99,104,98,107,115,99,90,112,113,97,105,98,107,101,94,94,105,102,115,100,120,87,102,111,105,116,100,109,95,100,100,108,98,101,108,94,110,101,113,117,108,100,107,102,87,92,83,110,106,118,90,97,101,87,107,110,98,102,104,104,101,106,105,106,100,95,99,102,116,103,93,96,103,94,97,98,98,97,105,97,97,109,97,88,103,111,91,113,102,99,99,107,77,103,105,98,123, +427.97992,105,89,90,93,102,104,97,101,110,92,104,105,99,108,104,90,102,115,109,97,103,102,105,99,112,93,103,84,93,95,104,94,101,98,105,106,100,104,88,106,90,102,99,103,93,111,108,100,93,114,91,104,106,88,97,105,105,94,87,100,98,102,88,101,109,95,106,102,97,102,62,101,88,98,110,98,93,99,101,97,95,103,96,98,91,96,102,104,107,94,98,104,96,81,90,97,106,105,94,101,89,94,103,101,91,106,94,104,106,100,106,110,113,86,106,98,96,101,103,97,104,129,104,104,96,103,105,95,100,98,95,104,94,96,102,103,104,100,94,74,90,100,86,93,99,95,108,103,102,95,100,105,98,95,91,100,110,89,113,103,102,87,96,95,100,95,99,98,104,104,98,104,94,98,84,114,92,90,103,99,97,96,103,101,104,100,84,94,95,93,93,101,103,98,96,102,95,105,103,111,98,103,99,103,96,91,99,109,107,104,87,116,97,104,106,106,110,101,105,100,94,101,96,98,93,97,102,103,92,101,96,104,97,89,99,87,95,98,100,102,91,95,110,101,115,104,108,123,100,88,105,95,100,98,101,87,93,94,88,109,85,105,91,104,102,95,98,74,87,88,113,104,105,98,115,97,100,104,103,96,106,98,110,94,98,95,85,102,100,95,112,102,98,103,108,99,114,98,112,95,109,96,99,97,91,106,102,94,103,107,86,95,114,91,109,96,103,85,101,109,95,114,105,97,104,105,98,90,117,102,101,100,108,102,85,99,99,98,102,97,98,109,100,94,87,93,108,76,108,102,105,111,104,88,99,99,117,115,103,102,115,98,97,101,98,105,99,102,101,108,126,99,106,102,104,106,121,100,101,100,105,92,100,100,76,121,90,101,95,102,107,88,102,102,97,92,105,91,100,101,92,113,96,103,91,90,91,103,118,100,97,105,88,109,103,101,98,105,103,95,96,92,99,95,103,102,101,103,100,104,94,109,100,106,104,99,107,107,92,99,92,97,102,101,106,102,91,87,104,103,108,97,103,105,102,98,112,103,106,95,100,109,97,100,103,103,94,105,102,94,90,108,113,102,113,95,101,110,95,103,105,117,107,104,89,106,103,93,103,99,105,100,108,105,86,94,110,103,100,96,113,95,91,96,109,98,88,100,111,110,113,94,108,91,103,102,99,102,110,92,106,88,118,100,112,102,108,101,105,123,102,97,102,107,100,110,109,100,96,108,103,102,88,104,122,96,100,96,101,109,103,101,95,106,103,97,95,103,95,97,107,104,104,98,107,97,105,107,95,106,93,89,92,96,97,92,94,93,101,98,107,99,113,99,98,102,103,117,97,94,95,101,96,104,107,108,103,109,108,107,93,94,104,97,93,110,94,91,100,96,104,97,97,105,103,100,104,101,106,104,106,76,98,114,100,110,92,96,75,97,103,96,106,95,94,104,102,90,103,100,96,96,92,111,99,92,94,91,91,120,92,100,100,98,89,92,100,107,96,98,71,102,102,104,93,101,106,106,114,108,108,92,96,101,105,99,104,102,91,102,98,98,95,95,92,96,92,87,100,114,102,105,95,107,91,90,109,98,96,95,98,100,104,107,94,112,104,112,112,102,103,108,100,104,101,102,103,114,99,90,95,94,98,93,94,109,101,98,102,114,104,112,101,106,109,106,99,96,110,109,107,95,99,101,104,110,98,101,100,110,102,96,107,117,105,96,99,98,100,104,101,97,94,110,92,106,98,100,106,81,113,95,98,99,96,96,93,108,91,95,103,105,107,105,90,108,109,105,75,104,93,103,96,116,118,112,105,113,117,102,96,100,93,101,111,102,111,110,99,91,99,93,103,100,95,98,94,103,110,99,106,103,103,102,100,109,99,106,105,94,117,89,97,93,109,102,104,83,108,104,98,97,110,83,103,101,99,100,104,109,107,95,87,105,91,119,104,103,101,94,97,86,96,106,112,95,95,110,109,110,105,117,104,104,101,103,102,95,97,99,115,104,102,109,93,92,118,105,101,95,103,94,102,116,84,97,98,106,94,107,99,94,102,104,104,104,102,100,101,87,92,104,103,98,94,107,105,96,95,89,109,104,102,85,103,104,99,105,95,91,101,94,111,99,99,104,88,106,109,104,106,103,107,95,112,97,94,101,101,101,114,93,102,102,97,118,76,100,98,114,99,123,94,98,106,93,105,95,107,104,93,92,101,106,87,94,92,101,97,104,87,109,99,89,101,92,109,104,102,102,92,108,108,85,96,97,97,102,106,101,94,97,98,110,107,71,108,109,100,102,91,106,99,100,101,101,107,107,102,93,101,99,103,83,103,106,111,99,108,101,99,91,113,110,113,96,95,106,104,78,63,99,103,86,92,102,100,90,102,109,105,103,98,109,105,107,106,113,101,110,109,105,111,111,109,92,99,106,99,97,98,104,96,105,83,99,98,98,108,95,100,109,106,106,100,91,102,102,120,109,94,100,112,104,95,106,96,93,106,127,95,103,101,91,106,103,97,94,97,107,94,103,103,79,100,100,96,107,114,96,95,97,108,84,88,106,103,98,113,94,111,113,99,91,96,102,107,103,107,96,109,97,97,102,95,100,120,107,94,104,108,105,112,115,96,102,98,98,98,111,110,101,112,98,103,105,102,90,106,115,104,104,102,99,100,91,108,99,100,112,107,105,103,101,100,101,110,91,110,95,104,103,108,106,76,89,104,103,87,107,90,94,115,104,102,106,104,83,94,104,88,102,100,103,106,117,95,107,94,94,95,104,105,113,95,97,112,111,99,117,101,95,105,113,109,96,101,113,109,103,100,109,103,94,97,97,102,101,99,93,99,109,98,109,87,112,106,114,104,100,107,103,106,111,98,101,97,103,100,111,90,101,100,108,107,103,86,101,113,113,99,106,102,94,87,103,96,109,102,118,99,108,105,98,96,98,97,101,104,106,92,108,98,107,98,101,102,100,107,104,106,104,100,119,115,107,95,90,98,104,101,104,105,104,101,117,108,99,104,111,109,101,101,108,103,102,108,95,91,105,111,97,112,93,101,98,101,68,102,103,94,99,95,97,88,94,110,110,115,101,108,112,125,91,113,98,100,101,92,101,103,92,98,117,99,99,87,87,102,100,90,121,97,102,89,108,106,99,120,101,97,97,99,104,100,115,98,97,107,86,100,105,92,105,99,98,101,101,103,100,111,102,107,96,106,100,103,91,89,111,99,99,102,90,111,102,109,100,103,97,101,97,108,106,104,97,105,104,104,87,119,106,92,108,86,103,101,97,95,101,77,93,92,111,98,99,103,103,105,98,114,89,101,102,101,106,103,112,87,97,136,104,110,101,92,93,111,83,95,106,118,104,102,105,111,106,75,81,72,107,107,100,86,98,96,101,105,93,87,107,104,102,110,108,97,105,101,97,85,110,97,109,97,98,104,100,94,101,104,91,83,107,104,91,107,98,108,102,94,98,106,96,98,109,97,95,101,114,90,95,106,102,105,105,106,104,102,103,94,97,118,103,97,115,102,113,102,112,106,92,108,98,100,99,107,106,102,108,98,100,109,87,100,107,112,104,94,99,110,86,101,95,99,101,91,100,105,85,103,99,105,94,108,104,97,108,99,89,135,109,94,106,112,109,100,86,98,102,109,104,94,105,100,95,94,91,98,116,95,93,93,104,104,104,102,102,103,92,86,96,113,101,95,95,97,93,109,110,87,92,102,101,91,102,104,103,102,91,107,95,96,96,106,96,98,108,105,91,112,100,98,98,101,107,100,92,113,102,106,107,91,106,103,105,103,109,101,104,103,108,106,97,101,107,106,104,103,101,105,99,89,100,101,100,94,104,100,88,109,108,104,102,101,103,102,108,97,92,95,101,106,113,100,107,101,95,87,92,109,101,95,80,99,101,99,92,102,99,107,120,108,113,102,116,102,103,88,106,109,95,108,106,111,106,100,87,96,88,91,88,109,106,98,105,112,94,92,110,107,95,104,96,102,97,107,101,85,96,99,109,102,103,90,98,113,99,92,120,99,105,102,105,99,99,102,110,105,117,115,106,98,99,108,95,90,101,107,95,103,95,96,96,102,112,109,107,102,99,112,95,109,109,94,111,116,94,101,92,108,105,104,101,102,97,99,100,98,104,107,101,108,127,100,93,97,85,101,104,95,103,100,107,116,102,100,75,108,107,87,95,101,100,100,105,101,105,108,97,95,100,100,91,105,100,91,95,104,109,101,95,104,97,96,93,102,105,100,91,97,102,100,112,107,87,87,105,97,99,96,117,89,74,103,123,79,96,89,98,102,108,100,100,97,91,84,94,90,96,95,103,103,101,99,96,96,102,105,98,109,101,100,110,108,106,103,105,105,111,103,95,106,100,109,103,88,89,101,132,106,103,90,105,110,99,94,106,96,103,105,107,108,94,98,97,73,97,91,88,95,93,90,95,99,101,101,111,110,107,105,95,88,105,99,88,105,103,87,91,103,109,101,101,64,96,98,100,108,98,105,91,84,87,101,112,98,107,90,96,101,96,105,106,90,93,107,121,94,97,93,96,102,105,93,97,99,92,108,101,100,106,94,86,99,106,139,114,98,106,104,97,96,96,104,100,68,108,99,100,90,101,99,109,106,103,101,92,107,97,104,94,93,96,101,101,91,103,86,96,99,103,97,109,103,105,106,89,97,94,88,105,92,102,106,88,97,98,108,79,85,95,89,97,89,91,94,84,99,104,93,99,98,74,99,106,98,93,106,105,108,102,82,85,103,108,105,97,94,88,99,106,88,96,103,88,94,96,97,103,93,106,119,100,95,104,76,87,100,123,102,102,79,89,75,96,93,103,87,101,95,94,94,101,87,93,111,87,93,75,69,103,111,100,101,88,105,92,111,97,91,95, +428.12021,102,105,102,98,89,112,96,97,113,100,91,98,114,107,99,99,95,109,104,89,99,105,109,113,88,102,76,82,101,96,124,94,105,94,112,95,101,95,99,98,105,103,101,107,104,95,95,103,97,98,105,105,108,96,86,87,96,97,89,97,77,109,101,87,101,102,88,102,96,96,74,92,108,122,102,96,104,100,115,98,113,111,96,103,95,104,107,106,104,93,102,98,108,109,93,116,91,93,105,99,113,85,81,89,102,104,94,114,100,109,109,95,115,98,108,125,103,98,122,110,99,117,100,101,102,96,99,93,123,111,109,109,100,104,103,87,104,98,105,96,103,111,102,96,91,99,101,101,97,94,104,104,103,88,97,97,96,93,102,102,105,97,92,99,106,91,106,87,99,95,107,104,94,90,88,105,103,88,105,108,104,91,101,84,95,95,96,96,97,96,107,99,109,86,102,106,103,94,109,123,92,99,71,103,96,96,103,106,104,108,109,102,109,116,118,101,92,91,110,108,102,100,101,96,107,103,101,114,98,103,94,108,105,107,119,117,105,99,104,91,105,97,99,106,99,105,98,100,109,102,100,106,109,107,111,96,94,104,101,113,87,111,83,97,83,126,98,110,94,103,111,106,102,110,103,100,88,106,102,93,116,90,83,105,92,96,99,98,98,102,91,107,101,112,100,118,104,105,105,99,102,91,112,112,106,97,117,98,90,102,97,126,103,100,94,100,94,107,100,100,109,111,115,99,103,113,99,85,119,96,98,107,96,106,94,114,104,101,102,105,103,108,90,101,100,111,95,103,99,101,91,93,90,103,114,108,106,98,98,104,94,97,103,87,99,99,105,103,91,107,104,101,106,107,100,103,103,106,100,105,110,101,109,109,97,106,100,83,108,88,99,95,99,104,87,102,102,97,104,104,108,116,102,95,97,103,98,109,112,97,104,96,101,105,109,89,102,92,111,105,111,99,112,91,101,102,102,99,95,113,94,98,92,92,114,98,96,99,101,104,104,104,111,108,93,106,110,99,101,105,102,103,100,96,106,101,98,101,105,109,96,95,103,112,105,100,98,112,94,97,96,103,107,99,106,104,99,103,99,104,108,117,101,94,106,111,109,104,105,100,108,109,109,105,97,102,93,103,117,108,110,102,95,100,103,100,99,104,109,97,108,101,105,103,95,95,103,104,95,100,113,96,96,104,100,99,105,105,102,97,82,95,114,107,97,99,98,101,105,106,106,111,99,111,110,100,72,99,105,107,105,105,105,115,91,103,113,97,97,95,113,97,105,112,101,92,97,111,99,110,87,102,102,101,105,117,109,99,103,100,107,94,97,110,91,102,99,108,89,105,98,105,99,88,98,114,97,91,114,93,98,101,113,122,95,98,97,103,103,113,99,110,102,103,110,101,106,97,77,121,104,93,105,95,105,106,112,103,96,99,106,111,102,105,99,104,95,100,98,108,109,100,103,111,96,94,109,94,97,97,99,91,112,120,110,93,105,102,101,95,111,110,113,106,96,111,105,99,86,101,80,116,110,97,106,99,104,103,103,112,109,94,108,100,107,98,99,96,102,95,106,98,105,108,112,104,100,95,98,100,96,101,109,108,90,101,98,105,87,95,102,96,103,98,101,103,104,100,112,93,97,97,110,113,96,107,98,105,100,103,94,104,97,101,96,101,97,99,96,106,95,100,104,94,101,107,109,100,92,100,116,96,100,104,101,105,100,101,103,114,103,107,106,103,96,108,107,100,103,99,102,92,105,99,100,96,98,103,98,100,108,108,101,104,87,117,119,117,101,109,110,100,101,102,112,104,98,99,122,106,99,102,95,103,112,102,106,103,105,103,108,106,104,105,112,112,96,106,116,108,102,110,109,110,101,100,100,109,99,110,102,110,95,105,93,86,98,97,99,110,109,113,94,93,99,71,104,94,95,99,91,98,110,115,109,104,101,109,91,109,108,94,101,110,109,111,105,103,110,100,112,116,107,94,106,98,111,97,112,106,99,100,97,91,98,109,77,114,102,102,109,106,109,115,111,97,97,112,83,112,99,120,102,103,95,101,96,109,98,105,99,94,102,90,103,94,106,101,128,94,107,106,103,106,108,93,108,95,107,95,99,97,100,104,88,96,105,98,110,99,102,114,101,120,78,104,99,98,90,98,96,102,108,108,97,102,121,100,99,99,106,108,112,97,106,114,88,101,102,104,98,95,112,95,99,94,108,106,101,95,90,106,92,113,112,104,103,97,101,106,101,109,96,104,104,94,101,109,91,106,102,106,96,97,93,101,99,103,95,115,108,102,106,96,99,102,107,93,95,108,108,105,95,87,103,101,90,100,106,110,130,96,101,103,115,92,102,104,107,97,109,110,106,104,105,93,101,96,106,104,94,112,103,87,100,94,99,96,97,102,100,106,105,87,104,108,115,105,92,96,105,99,103,98,108,106,89,109,96,109,99,105,108,108,102,104,86,86,112,111,107,101,123,98,104,99,106,103,114,110,109,90,104,98,111,102,97,105,111,104,94,110,103,104,106,103,105,101,104,104,112,101,106,96,92,103,98,104,106,103,112,109,107,95,98,107,77,108,111,100,107,108,96,119,101,101,115,110,111,98,103,112,117,104,79,101,102,91,108,94,107,102,99,102,96,102,102,102,104,103,102,97,99,87,105,115,105,99,102,103,91,99,111,83,101,113,111,100,104,99,105,100,100,117,109,111,96,104,104,105,101,94,108,132,109,135,102,102,97,116,100,109,99,98,108,99,108,126,116,94,117,111,107,111,113,96,106,101,108,97,98,95,106,100,101,104,102,91,118,103,106,109,102,90,95,93,108,99,98,106,109,112,116,106,100,100,100,107,104,102,136,105,107,91,105,109,118,107,92,102,97,109,109,102,88,93,104,101,124,106,97,105,107,103,105,103,95,100,106,95,92,103,111,100,98,110,92,104,103,103,106,113,117,103,97,78,100,115,99,105,106,99,96,97,111,104,105,108,102,98,119,103,105,92,113,103,121,106,101,105,110,101,105,111,112,98,96,100,108,99,109,99,108,101,106,98,104,99,83,111,98,101,106,109,105,96,111,108,104,100,96,97,72,106,101,92,104,107,114,116,109,98,103,99,106,105,97,99,102,98,108,107,108,102,103,99,96,121,98,95,98,100,105,102,101,113,102,95,105,106,101,103,104,107,102,97,105,102,102,94,108,104,98,104,85,101,80,113,92,114,100,102,103,96,120,96,100,99,106,107,109,109,99,105,103,101,106,118,99,98,95,85,104,110,97,104,111,109,120,107,103,93,105,105,103,107,97,102,108,100,99,113,114,102,101,111,98,104,137,96,97,89,89,106,105,91,100,110,111,98,103,112,111,102,111,101,102,95,106,104,112,99,96,108,107,113,99,104,108,98,112,101,104,93,107,99,96,104,98,95,85,94,106,80,102,105,99,102,108,101,96,102,104,94,97,115,109,94,84,92,96,96,95,99,109,103,105,94,107,89,101,110,106,104,109,99,104,87,104,125,108,111,101,102,103,110,116,113,94,107,87,104,112,107,98,109,97,104,100,112,102,88,99,92,110,92,107,91,111,103,107,100,102,108,107,98,93,93,106,113,97,95,99,104,110,103,101,104,101,109,95,119,99,101,105,91,100,106,103,95,99,104,92,110,90,105,106,120,94,109,96,100,96,97,105,99,103,107,112,108,105,105,104,73,99,105,118,113,104,83,123,92,110,102,103,99,113,102,107,101,109,103,101,96,113,99,109,115,92,102,94,105,88,95,102,92,92,108,99,105,100,110,97,114,103,94,96,117,98,105,101,104,96,99,111,106,102,109,103,110,100,102,97,99,109,109,112,108,105,98,89,87,103,99,103,101,87,96,97,113,98,97,104,108,88,104,93,99,102,94,110,106,107,90,110,101,96,129,117,103,104,96,111,92,100,112,118,99,111,101,101,97,98,79,101,103,104,104,98,100,111,103,106,102,107,101,95,100,113,103,99,101,100,108,109,99,95,98,107,97,108,99,102,101,98,100,105,104,90,98,104,112,96,101,109,103,106,100,113,81,120,100,101,97,93,103,105,105,121,104,103,110,98,108,107,108,88,102,90,104,104,103,101,107,109,89,110,95,110,111,101,100,94,115,106,106,106,109,101,117,101,98,101,93,96,100,99,96,95,113,102,102,103,103,108,101,101,96,101,88,117,99,106,109,124,101,119,120,102,104,115,99,108,100,105,98,109,116,106,90,112,104,102,104,105,110,98,99,97,102,100,105,106,96,109,101,107,96,96,103,108,95,72,96,105,113,99,114,100,108,105,99,107,108,98,99,107,102,104,109,101,101,100,107,115,75,100,105,108,112,106,103,109,111,99,101,105,113,93,104,101,117,97,106,97,100,109,96,114,96,92,105,105,99,100,100,97,99,96,98,104,96,93,104,94,104,99,91,95,96,95,109,108,99,99,85,100,100,104,101,101,100,102,105,99,96,106,93,105,100,103,93,79,98,81,112,90,110,110,95,90,76,95,98,98,112,98,99,97,98,109,117,101,100,106,100,108,100,108,105,106,111,81,98,110,98,116,98,96,104,95,89,97,92,95,92,100,98,102,105,111,96,101,106,96,99,96,105,97,107,86,104,96,105,111,97,107,109,121,96,110,92,113,100,94,94,90,112,104,87,101,105,111,97,106,94,113,105,119,100,95,110,99,109,114,97,99,95,82,101,102,112,113,97,94,102,113,103,107,98,96,103,94,99,98,91,96,99,102,99,85,94,121,115,91,92,106,107,104,94,88,102,104,98,84,104,95,109,84,98,110,99,98,104,110,93,105,103,89,108,102,95,104,103,106,115,87,95,99,98,102,105,99,107,105,103,101,93,111,99,105,87,85,78,108,109,112,81,83,114, +428.26047,109,95,87,100,86,109,103,109,92,102,101,92,93,102,100,96,91,101,108,93,97,105,101,105,101,103,96,106,102,106,103,100,102,95,110,99,100,105,100,114,98,90,97,87,87,104,94,97,95,107,91,91,103,101,95,84,102,100,98,93,102,110,97,96,93,123,98,109,95,96,102,95,104,101,98,97,99,99,107,94,103,105,99,104,104,100,105,101,99,85,108,102,110,96,102,94,97,112,104,95,131,106,102,92,97,97,79,99,107,108,102,108,109,72,100,99,98,97,100,106,97,92,109,112,103,108,103,93,110,108,95,91,104,107,105,102,100,99,104,118,88,111,93,98,88,105,105,99,89,87,93,109,103,105,90,105,87,84,101,96,99,106,105,97,109,92,100,86,107,101,97,98,110,101,99,91,96,101,115,100,98,97,102,107,103,100,91,93,111,95,98,100,103,104,98,100,104,100,103,100,101,94,105,101,100,108,103,100,94,112,91,104,101,107,116,100,102,117,103,115,103,65,111,100,104,114,110,97,122,113,105,109,115,110,112,102,96,107,119,101,97,103,116,110,92,99,106,100,89,113,104,94,107,113,85,100,100,96,98,103,108,100,102,109,90,106,114,105,110,109,108,95,102,104,106,110,109,108,101,103,104,103,102,110,94,90,99,104,113,99,98,102,108,99,108,109,101,102,107,100,93,109,106,117,107,91,115,108,97,119,91,103,114,105,94,111,109,101,104,96,101,76,106,114,103,100,99,96,105,110,100,101,109,89,99,101,99,93,99,121,113,103,81,98,101,99,112,101,110,101,97,105,108,111,111,99,110,104,107,108,101,107,97,108,101,98,101,88,105,107,100,114,100,102,111,93,96,103,107,98,105,103,105,100,108,107,107,97,125,106,105,98,108,113,100,80,97,99,102,101,105,97,114,99,102,86,98,104,95,102,94,99,104,105,113,94,106,107,98,104,108,96,109,111,104,99,100,97,110,103,107,96,104,137,97,106,103,103,94,96,111,91,91,107,108,100,108,109,103,113,101,99,100,105,112,100,104,93,107,102,98,101,106,106,106,112,104,98,105,93,102,113,108,93,103,94,95,95,114,109,110,105,103,104,107,101,112,102,103,91,97,111,102,99,72,91,94,113,99,100,107,108,107,105,97,103,92,111,134,101,108,96,109,100,87,100,102,107,89,82,98,97,90,92,98,101,92,103,104,99,101,92,116,108,97,105,121,100,108,117,102,100,96,106,105,108,117,104,98,106,103,106,105,103,112,93,103,102,100,105,99,91,102,108,95,100,113,118,101,109,104,102,112,105,105,110,105,107,116,115,113,111,100,103,106,101,111,74,97,102,103,98,105,90,112,109,92,101,116,98,94,108,105,96,100,112,106,101,106,99,97,101,102,109,98,117,102,96,110,99,100,108,100,102,104,98,85,101,90,91,102,113,108,101,105,93,98,97,111,94,98,96,100,97,110,99,105,95,98,115,101,108,107,106,99,116,105,101,107,101,106,103,98,108,108,130,100,104,91,111,106,114,100,97,99,104,87,98,114,107,108,108,105,101,106,100,101,107,105,113,105,108,103,103,102,106,95,103,99,95,99,107,98,94,98,113,117,120,97,101,100,101,100,88,102,89,101,98,103,101,101,105,97,109,84,86,98,105,122,104,97,114,102,92,91,100,100,102,91,105,100,105,101,112,96,96,106,96,88,97,100,104,112,112,105,110,109,101,108,93,83,81,113,112,98,105,101,90,111,97,98,96,113,105,99,101,99,101,112,96,106,99,101,107,99,98,102,99,105,101,100,112,101,113,77,100,110,101,107,99,82,106,96,116,112,103,110,104,113,99,114,106,101,93,102,103,124,109,114,107,102,117,112,103,100,90,118,105,99,89,108,100,94,109,99,105,106,101,104,111,100,104,94,105,113,97,96,98,95,91,110,108,91,99,105,105,117,111,103,110,104,105,109,101,109,102,104,110,108,126,99,103,111,102,107,100,98,99,112,104,105,105,103,97,106,110,103,106,109,96,113,109,98,105,103,94,96,99,107,87,99,105,102,99,101,104,87,107,112,103,96,97,114,108,109,101,94,108,103,109,100,112,104,119,98,105,99,103,86,107,103,108,110,98,101,103,95,97,104,101,93,94,106,110,98,102,103,94,102,97,111,100,111,105,103,105,88,101,98,103,109,111,100,95,104,104,98,97,102,101,102,101,117,99,98,110,103,110,91,91,103,107,100,102,113,105,96,104,98,105,97,96,92,107,97,106,99,112,100,111,102,100,99,107,104,79,96,97,99,104,96,94,99,102,103,94,112,102,96,105,99,101,103,95,103,109,107,103,99,102,97,106,104,83,106,109,109,107,97,109,105,102,103,97,111,92,101,105,90,100,90,101,100,101,124,98,113,110,109,106,94,98,107,112,103,110,101,105,105,78,98,114,103,105,98,94,106,97,102,99,102,104,85,104,104,104,98,105,113,96,93,121,105,84,101,114,110,103,109,109,104,95,112,92,108,102,102,79,90,112,98,95,110,110,111,99,105,94,96,103,98,108,110,93,120,86,93,106,95,107,116,106,98,84,101,101,101,102,92,89,103,93,91,102,114,86,106,91,115,108,110,91,110,95,99,98,111,105,105,102,105,89,98,87,109,108,91,117,107,101,107,88,98,104,99,95,114,94,113,113,110,110,112,103,100,85,110,112,97,102,103,104,108,105,105,102,106,101,104,94,100,106,110,107,109,106,105,99,106,89,95,105,85,96,124,136,112,111,101,96,101,113,112,112,107,117,95,112,111,105,102,111,95,100,101,103,102,105,97,109,101,104,102,89,85,95,111,94,105,112,101,108,108,105,105,104,104,102,92,113,101,100,94,103,126,94,98,92,107,103,112,112,102,107,100,96,108,86,93,119,103,96,105,103,107,99,96,105,110,118,101,130,89,98,104,116,94,97,107,102,102,114,103,106,106,80,104,104,102,113,104,102,111,104,109,109,106,104,103,96,104,111,104,102,91,102,100,95,101,91,112,99,99,108,87,109,103,106,116,110,112,111,93,101,105,110,110,110,113,101,98,96,105,100,100,104,91,105,85,104,95,104,107,99,118,94,117,99,103,105,108,99,106,118,113,102,112,103,110,110,103,108,105,96,100,102,109,96,101,102,102,97,106,104,143,111,104,99,124,104,112,98,102,101,90,104,113,112,106,70,95,107,106,109,92,112,120,100,89,94,109,108,109,96,107,107,93,91,112,109,107,105,115,105,112,110,99,111,100,106,108,98,95,92,89,109,113,67,94,103,88,102,109,103,105,86,129,80,117,98,103,108,91,104,109,107,95,99,103,102,100,103,96,127,102,113,98,96,104,99,112,109,99,102,105,112,100,105,110,110,105,107,97,112,98,109,109,114,110,98,104,99,110,101,110,98,96,105,103,106,102,92,98,95,93,105,109,95,110,99,117,107,110,96,89,105,104,109,104,101,117,116,100,109,99,100,119,105,104,98,105,100,87,111,111,102,96,95,116,99,100,111,94,102,100,113,113,112,99,105,105,106,110,97,107,99,90,101,97,105,109,97,88,99,105,101,101,92,108,100,92,96,92,101,108,101,116,110,101,109,94,103,106,113,86,106,101,98,110,113,97,106,105,103,91,95,121,113,100,95,95,103,112,111,100,98,104,104,107,98,97,127,105,112,94,104,106,95,108,102,98,97,91,108,95,99,104,86,103,105,101,106,106,94,103,104,96,106,117,95,105,105,111,102,102,91,104,102,108,115,104,97,111,112,96,107,92,94,110,110,99,102,104,121,102,114,112,107,100,115,108,108,102,94,100,112,102,100,109,101,92,103,104,107,104,105,104,109,108,95,106,95,96,104,101,109,108,103,99,79,101,112,100,105,108,95,101,110,110,142,105,106,112,108,96,104,94,100,113,105,105,97,120,102,95,104,111,101,104,93,103,102,104,92,105,104,110,94,99,91,105,107,120,100,118,95,99,102,86,111,107,100,104,98,109,93,104,108,97,109,106,91,102,102,102,105,99,112,97,99,110,102,90,100,105,98,103,116,95,107,101,101,101,101,100,103,101,94,102,105,102,106,101,112,108,108,110,103,99,101,95,93,102,102,100,103,101,109,101,108,103,117,92,117,113,106,112,105,101,98,104,105,98,107,98,106,106,97,100,81,111,102,110,110,103,110,91,100,99,111,96,112,106,116,84,97,125,96,116,91,109,106,106,104,102,101,106,99,97,97,105,96,110,94,100,99,96,111,120,80,114,110,107,113,104,102,102,92,99,106,106,96,108,106,95,74,99,101,100,103,110,105,113,105,109,106,107,98,95,94,111,102,99,109,99,98,111,98,113,103,106,104,92,105,100,102,96,101,108,102,99,105,110,100,102,100,104,102,103,99,102,90,96,107,101,91,93,105,99,95,112,106,103,101,101,97,102,100,95,98,103,105,108,101,109,94,104,116,109,104,98,100,111,109,104,112,92,102,102,85,98,97,105,113,104,96,112,103,109,104,88,97,104,98,109,101,92,109,115,94,99,96,106,97,104,91,109,104,111,100,112,105,101,102,91,110,95,104,101,100,102,97,82,93,85,100,105,109,98,97,101,100,102,99,95,111,92,105,103,82,107,112,103,106,99,106,110,103,99,103,103,100,92,106,99,95,103,107,96,97,96,105,105,98,105,108,112,102,92,106,99,93,94,93,102,110,101,105,106,94,114,109,98,109,88,99,110,89,111,102,100,105,98,98,117,95,99,103,103,106,95,98,99,98,106,93,104,98,102,108,108,99,101,102,94,103,100,106,105,116,110,107,96,100,112,93,99,104,97,100,110,99,99,90,92,117,98,95,102,94,106,104,102,96,107,99,111,84,96,99,110,111,101,103,108,110,114,109,94,90, +428.40076,95,98,80,96,95,83,108,99,88,117,111,97,89,91,110,94,87,103,106,97,94,90,91,104,106,96,104,99,113,112,112,101,97,96,108,105,104,84,97,98,103,103,95,110,98,110,104,98,95,99,90,106,115,116,80,105,107,92,114,88,99,106,97,107,102,111,97,108,87,105,125,107,109,102,98,103,94,106,101,102,100,105,117,106,97,103,99,104,93,105,113,90,112,104,104,81,103,103,100,93,95,103,107,95,102,91,104,109,91,100,102,103,111,93,98,95,99,100,82,138,100,105,95,110,103,94,107,94,108,99,104,113,96,96,99,102,106,90,97,106,96,116,97,100,106,87,98,110,100,95,116,108,109,97,98,108,100,94,110,110,103,104,95,85,103,137,91,83,99,90,107,108,101,95,101,109,99,97,121,103,100,97,109,104,95,98,85,90,89,100,98,101,83,101,90,88,107,96,106,95,97,90,95,99,98,103,95,104,94,103,99,112,106,112,95,95,97,103,89,103,102,101,96,112,104,109,101,98,104,89,101,93,107,99,112,118,100,102,101,107,115,101,104,96,93,91,105,98,105,94,102,107,104,100,98,99,91,96,104,102,91,109,96,86,88,104,96,113,104,98,104,90,98,98,104,99,110,102,99,104,100,108,101,97,105,103,113,103,99,113,99,110,109,107,103,104,95,100,102,103,101,94,98,106,102,102,98,73,109,105,100,115,97,101,98,101,96,96,103,103,95,94,105,117,84,101,97,89,104,108,113,94,105,94,99,99,103,99,96,108,105,98,98,97,98,83,103,102,104,103,96,98,97,103,110,107,111,109,101,69,102,102,100,101,103,98,114,114,98,99,108,98,117,105,105,91,86,101,101,94,99,114,108,94,98,96,95,87,100,93,111,89,105,111,98,112,95,104,84,104,106,96,109,106,102,90,95,105,95,104,94,98,110,105,104,91,106,99,109,108,107,105,99,97,97,99,108,102,106,108,99,104,96,109,104,94,95,99,105,97,100,96,111,102,98,101,104,92,91,101,98,114,102,113,115,103,101,106,109,99,100,103,93,108,112,81,105,88,102,106,106,103,100,103,102,126,103,112,106,105,87,105,109,109,97,100,111,97,106,96,104,108,107,110,95,100,99,104,87,89,108,98,106,104,97,118,92,110,96,96,92,94,101,95,96,105,105,97,109,104,94,99,110,109,105,91,92,106,97,100,90,99,96,103,98,88,101,99,114,97,90,99,97,102,116,106,114,94,109,102,103,96,92,98,105,95,103,120,95,101,111,97,95,108,110,99,107,98,103,108,91,102,98,104,101,97,92,101,101,109,95,94,101,103,99,104,108,104,109,88,107,97,105,94,113,109,95,97,108,99,106,107,93,98,101,95,103,104,97,100,108,100,104,106,105,94,97,99,104,98,117,104,106,96,104,96,91,99,110,109,106,106,91,108,103,95,94,88,82,114,102,88,102,103,92,104,100,100,101,117,96,86,105,113,98,97,87,111,102,100,106,113,95,95,98,101,104,87,113,105,104,99,101,102,87,111,105,94,94,101,108,92,101,104,114,98,84,105,115,96,104,100,118,104,103,97,118,95,125,101,104,108,94,101,91,110,102,117,108,74,104,103,98,111,94,93,84,97,106,95,103,96,99,92,97,86,107,117,105,100,104,116,100,91,104,112,102,102,98,94,95,97,96,83,95,97,108,101,105,94,89,101,101,101,105,95,99,93,103,93,98,103,100,113,95,98,101,96,97,94,97,98,103,92,109,102,104,102,99,83,92,96,107,92,99,104,108,95,96,120,93,112,103,102,93,99,95,94,106,95,105,100,89,104,111,98,100,102,99,106,107,93,95,93,109,106,105,102,102,90,91,113,97,103,103,100,105,103,105,105,104,102,101,98,101,99,94,90,111,98,91,102,121,100,109,101,92,86,108,83,105,96,83,97,83,99,106,106,94,114,105,94,98,102,94,99,102,100,103,110,102,112,97,112,105,98,101,80,101,101,102,92,97,112,94,105,98,105,83,98,105,110,99,108,104,101,92,64,108,102,71,108,105,94,98,98,99,103,107,106,102,105,106,106,101,97,100,103,100,110,105,107,107,102,100,99,96,113,97,116,112,105,114,95,106,86,93,78,100,108,95,109,108,106,112,98,101,104,92,97,96,109,101,104,113,103,109,107,86,99,97,103,111,99,106,104,106,107,108,115,109,100,104,99,102,110,89,113,106,110,109,101,100,88,86,106,104,102,100,103,102,114,101,111,109,99,92,103,100,114,102,96,93,91,106,101,104,110,84,105,103,102,87,106,92,95,105,114,106,101,119,101,106,108,112,91,103,101,106,102,99,106,102,118,106,97,100,100,101,107,103,98,99,112,99,90,121,98,100,100,106,105,96,110,99,95,98,99,97,97,100,103,96,99,85,91,93,98,102,100,92,108,102,99,114,101,98,113,113,95,118,104,105,107,112,110,95,90,98,108,99,101,110,98,97,108,100,97,93,109,105,115,106,120,105,105,113,104,103,99,102,107,108,95,105,96,91,100,106,100,98,117,101,99,110,105,116,106,102,94,97,103,100,111,101,98,112,111,101,103,112,100,100,104,98,96,108,91,109,107,104,99,103,107,102,101,107,99,109,102,113,96,99,98,97,99,95,106,121,112,94,88,108,107,101,102,103,99,112,102,108,88,107,99,101,95,106,107,108,106,96,115,108,98,104,105,106,100,109,106,110,96,109,101,103,98,107,100,100,98,96,110,87,105,97,112,108,94,100,105,97,100,109,103,108,102,102,94,97,101,97,99,100,95,99,97,108,108,94,110,101,99,101,93,100,99,108,113,112,106,110,103,100,97,106,101,101,98,96,106,94,107,98,103,104,100,95,103,110,115,105,104,95,107,90,97,103,102,104,104,96,93,104,104,96,99,98,88,105,97,105,130,103,104,97,100,99,119,109,106,104,111,102,104,97,105,106,103,96,98,95,95,99,102,104,107,71,103,103,113,108,99,105,103,95,96,107,110,98,102,107,104,93,99,110,94,111,111,78,100,92,102,112,101,94,119,105,110,96,109,99,101,103,94,95,101,111,93,109,109,100,102,117,101,108,93,99,100,95,95,78,99,124,116,120,91,108,93,105,113,103,93,116,95,95,101,101,98,103,105,95,92,113,103,108,113,92,100,118,103,105,93,71,101,100,105,108,97,101,87,102,105,93,102,101,97,100,99,104,92,108,103,93,93,90,105,106,99,107,131,122,104,102,110,95,104,113,113,106,103,105,96,100,94,91,94,93,102,92,96,111,92,103,109,96,98,115,105,112,104,109,108,99,110,100,109,102,110,92,90,94,109,95,104,105,98,100,106,108,90,110,102,109,91,110,99,108,109,96,101,114,102,93,100,108,97,100,105,107,94,101,105,113,97,100,104,98,100,106,111,88,108,108,104,92,93,108,112,100,88,79,113,98,101,109,96,99,100,91,102,96,100,102,95,117,103,101,112,103,96,101,103,101,102,104,110,91,113,104,98,108,105,102,104,103,104,109,101,111,98,94,97,100,101,136,80,99,117,102,104,110,99,100,102,97,104,102,97,126,100,83,106,91,105,106,92,117,94,95,95,122,102,105,115,101,93,110,101,104,101,97,94,103,111,93,94,89,99,101,92,97,88,112,103,112,103,107,102,104,100,114,105,101,110,92,99,104,98,99,96,107,92,115,105,97,82,97,101,104,102,94,94,103,97,93,110,101,94,109,81,97,96,96,111,91,101,107,103,107,98,108,98,105,91,98,99,95,80,90,98,104,103,93,105,99,90,92,97,103,113,107,101,111,89,105,103,117,92,100,104,100,121,101,105,99,104,109,87,100,104,101,109,101,99,98,106,112,105,110,95,91,97,103,104,91,106,93,92,109,97,112,103,102,101,103,97,104,102,99,102,97,100,114,102,100,101,95,98,105,99,101,106,114,97,94,95,108,98,96,101,108,91,96,103,95,107,98,106,94,113,112,106,97,98,124,104,101,99,106,84,111,94,98,109,104,101,113,106,91,92,111,100,98,85,108,97,106,103,99,100,97,87,106,91,98,98,98,99,121,81,107,113,97,102,102,104,103,109,140,95,96,105,101,111,99,108,106,100,89,102,112,94,103,111,108,98,97,87,93,101,95,94,105,79,93,100,101,100,100,98,107,102,108,90,111,106,113,108,101,99,76,108,107,102,97,108,107,92,102,106,91,108,100,117,107,107,103,113,98,99,91,93,117,98,102,97,96,106,102,109,102,96,100,94,95,107,100,91,106,94,92,92,109,107,107,103,102,105,91,118,98,96,110,108,106,105,101,112,92,91,114,100,95,104,102,102,109,102,99,101,96,105,87,104,102,98,105,119,103,105,95,104,102,93,101,93,101,108,107,102,96,91,84,101,93,102,97,96,97,99,107,99,98,98,94,99,94,97,103,107,67,118,95,104,113,96,109,94,103,101,91,98,111,103,99,104,99,98,95,94,95,85,94,94,104,89,109,107,95,93,98,106,91,110,100,109,105,105,109,105,99,99,122,99,102,103,105,106,94,94,111,97,112,118,97,95,98,97,98,91,93,85,105,101,99,91,89,100,98,102,104,103,94,105,97,99,98,95,98,96,122,95,110,83,102,106,112,112,103,103,94,107,107,117,98,95,98,100,97,92,105,96,97,93,98,94,97,96,99,95,97,97,103,109,101,96,94,94,106,93,97,102,88,110,109,109,109,93,96,103,107,102,102,93,88,101,93,105,109,100,102,90,118,116,95,92,111,93,108,97,105,94,95,106,85,118,96,94,104,97,94,100,91,100,96,106,92,95,104,101,84,92,96,89,98,110,91,92,104,91,94,105,115,84,114,109,96,92,90,99,93,93,109,120,77,104,98,78,85,97, +428.54105,81,91,103,91,93,88,96,111,99,107,79,101,100,87,103,99,96,104,107,84,101,97,101,89,105,99,95,103,99,103,99,94,91,99,102,93,90,97,102,95,99,91,92,96,91,103,94,112,96,104,100,100,113,104,103,98,103,91,106,100,101,88,95,102,101,92,95,69,103,94,107,96,98,100,102,103,103,112,112,106,112,92,109,101,105,102,116,100,101,92,114,98,106,99,110,98,96,79,95,97,96,103,105,98,88,88,99,112,104,103,90,106,92,93,105,100,91,108,117,110,101,98,99,103,104,105,97,101,90,107,88,101,97,112,92,94,97,100,110,105,97,101,100,106,91,91,105,104,108,104,87,104,104,99,102,89,111,85,108,95,95,110,104,127,93,102,118,103,105,93,104,106,97,108,97,101,110,99,113,103,98,100,109,104,100,95,96,89,100,108,98,90,105,114,106,95,98,95,100,102,103,94,96,99,97,106,133,107,98,94,96,109,104,96,102,98,99,103,100,101,76,108,101,105,93,97,99,105,114,101,95,88,100,101,99,94,107,109,92,88,103,104,115,91,90,101,105,135,112,105,97,111,99,105,101,106,94,77,106,100,106,94,102,109,105,98,102,99,110,97,109,108,106,113,98,109,91,114,92,99,105,111,109,101,103,95,89,102,104,104,99,114,106,109,110,101,100,98,108,102,103,104,98,92,87,108,107,110,107,113,95,108,103,107,97,96,100,100,98,102,99,97,99,97,100,98,99,102,109,114,114,84,111,92,109,103,101,99,104,113,103,132,93,99,104,92,103,112,99,100,101,96,110,96,109,109,105,110,101,99,104,96,101,102,92,102,100,109,93,113,107,90,94,97,100,96,99,104,105,110,95,124,93,101,101,104,105,96,100,99,95,85,94,113,101,99,96,99,94,100,100,116,97,96,110,98,99,106,100,98,94,92,98,99,112,95,102,119,103,101,106,102,101,108,110,97,101,105,102,99,108,95,101,97,97,110,97,105,99,106,103,108,92,108,109,101,103,104,109,108,100,87,97,97,86,110,117,112,109,97,98,116,94,106,122,111,90,105,105,117,110,100,105,108,99,98,109,107,106,96,101,104,108,102,100,108,111,107,95,96,97,105,97,104,94,104,107,92,105,98,115,97,104,112,107,107,101,108,90,100,101,101,99,106,125,98,98,101,107,94,94,112,101,106,97,116,105,99,94,88,100,102,95,90,105,109,96,106,97,93,110,114,97,101,96,99,105,97,109,106,105,102,101,113,98,104,97,90,106,135,97,97,101,109,93,99,103,86,104,97,94,110,101,93,100,95,101,111,98,99,120,104,106,97,87,108,100,106,96,102,104,117,96,110,110,104,114,108,95,103,110,106,103,103,102,106,115,105,113,107,108,92,110,100,107,88,105,98,102,111,138,103,105,118,113,110,111,111,98,104,98,97,106,112,101,105,98,89,99,106,90,105,109,100,106,108,108,88,105,105,104,111,100,101,100,98,105,99,96,104,118,104,103,99,91,99,101,90,101,97,105,91,94,101,97,106,105,98,94,101,99,102,104,93,99,101,109,111,104,96,108,103,95,100,105,95,103,101,109,109,99,96,106,103,99,112,105,98,105,88,111,100,101,101,95,96,95,106,103,104,105,104,99,101,106,94,109,97,87,105,96,110,102,106,103,103,105,102,116,96,110,104,105,90,102,93,110,102,98,109,110,98,98,106,111,103,104,103,102,100,112,104,96,110,97,109,95,102,100,108,99,101,104,109,93,113,103,101,98,89,102,100,111,112,84,110,98,100,108,101,86,103,103,97,104,98,105,97,95,112,113,102,94,101,102,103,114,118,104,96,111,101,104,104,99,108,106,115,94,71,95,111,98,93,94,111,99,103,108,111,107,107,99,100,109,108,102,89,102,109,98,101,103,101,96,103,99,91,111,100,105,107,108,100,100,91,84,100,92,106,94,105,96,93,97,99,103,118,114,94,104,99,92,102,124,99,107,100,102,74,109,104,93,101,102,101,101,101,99,103,109,104,107,105,84,101,99,95,104,111,96,108,103,87,100,103,109,100,95,87,113,96,106,95,101,100,94,98,99,105,110,110,102,97,102,107,87,96,101,108,108,102,97,99,96,112,96,113,99,104,111,109,122,102,90,98,104,86,98,116,105,102,116,108,89,100,102,104,98,105,96,109,102,92,103,99,94,99,107,100,103,104,101,100,98,102,116,91,100,107,109,97,95,91,108,108,101,95,102,104,112,109,102,96,97,101,103,102,107,105,98,105,104,97,109,112,107,108,104,109,78,107,101,106,97,109,106,97,105,103,103,107,103,96,108,93,100,100,91,98,91,102,111,104,102,96,88,103,103,120,101,106,96,103,101,105,104,112,90,107,103,95,107,105,94,95,97,99,109,103,102,99,99,102,104,109,120,96,96,97,106,98,99,104,98,99,103,100,99,109,98,98,103,118,113,117,103,105,129,109,111,105,104,96,93,102,110,100,100,105,98,108,99,106,113,103,97,103,113,106,107,119,107,95,106,111,112,91,99,103,109,102,98,99,99,94,104,113,96,104,100,110,98,86,99,103,115,98,85,98,105,103,92,119,98,101,103,107,117,91,106,99,109,112,104,95,89,70,100,110,102,95,106,100,116,94,103,94,120,104,97,106,113,99,111,100,104,99,102,108,94,99,95,105,117,118,99,91,100,110,92,105,117,101,89,105,72,92,91,98,106,103,102,105,101,109,94,104,107,99,100,116,94,108,103,104,111,120,103,102,104,112,87,98,89,98,100,107,109,97,94,98,108,109,103,100,103,108,92,107,104,105,110,100,103,104,98,98,109,102,105,98,106,105,73,102,87,110,97,104,105,102,94,108,114,90,99,106,104,119,98,100,110,108,109,109,107,100,111,109,112,97,107,97,109,101,103,97,100,107,112,96,94,110,109,99,109,103,101,105,106,119,104,110,98,105,107,106,98,108,99,87,106,99,92,109,102,107,97,116,109,112,117,116,108,98,102,107,100,104,98,96,93,99,107,104,103,99,98,121,102,104,103,108,100,96,99,98,117,100,106,113,100,97,94,98,104,104,102,110,111,101,115,105,106,98,94,100,103,97,95,97,94,106,108,109,103,109,96,109,92,91,101,109,102,101,108,102,96,99,102,91,95,107,100,100,101,104,108,102,106,101,95,88,106,117,101,125,102,101,99,100,105,104,117,95,103,75,104,98,112,106,104,93,131,94,107,100,102,104,107,104,112,116,110,99,104,108,110,102,114,90,107,94,92,101,105,104,93,112,105,103,105,108,112,98,117,100,96,95,111,102,99,94,100,104,95,103,100,109,102,88,101,110,97,105,109,117,106,95,98,100,105,99,101,103,117,93,106,102,112,101,111,99,110,101,88,92,92,101,95,101,107,96,98,98,113,108,112,92,102,109,103,107,110,115,105,110,83,107,109,112,83,113,102,105,98,104,98,97,101,108,105,89,96,105,98,103,107,98,107,113,103,117,109,110,106,127,103,104,114,105,109,99,102,110,105,107,104,101,96,107,107,107,104,99,108,109,96,119,107,96,105,104,104,100,103,106,106,97,90,105,105,108,95,109,102,114,107,105,83,108,105,110,104,94,104,105,94,108,96,96,112,105,107,95,100,113,98,82,103,104,99,97,102,87,103,113,120,106,112,98,101,99,102,98,111,107,95,99,78,103,100,102,111,100,99,104,93,97,109,92,103,102,115,92,113,107,101,108,107,109,96,102,106,103,106,101,98,108,103,127,109,99,105,108,106,101,106,102,108,95,113,136,103,112,76,105,99,93,106,98,94,100,102,98,103,102,108,108,97,104,105,104,99,104,102,109,103,107,72,104,105,95,100,111,106,100,104,99,89,98,95,100,111,112,104,110,103,97,112,103,96,98,98,98,102,99,116,96,104,92,111,103,107,105,93,104,94,95,100,110,99,116,97,113,107,97,107,100,104,92,96,110,99,100,107,98,102,92,109,107,106,97,100,81,94,121,107,101,99,104,98,99,99,100,107,99,104,108,111,99,105,101,105,122,108,103,103,100,112,96,104,108,100,109,112,102,109,90,124,125,81,103,107,103,109,99,100,100,103,108,105,98,102,120,103,97,96,103,101,101,98,105,94,98,107,96,104,83,90,97,99,101,103,106,107,97,97,107,101,95,114,95,105,102,100,98,97,108,106,96,99,107,105,100,113,97,127,95,81,95,102,105,109,100,99,103,96,99,89,94,108,95,98,115,102,104,76,99,117,102,105,108,110,101,102,102,93,106,90,106,106,91,96,95,103,103,101,105,94,109,105,107,93,95,100,114,108,106,98,106,104,98,104,110,108,106,100,107,91,110,113,123,103,109,101,103,106,98,85,111,107,106,109,102,103,98,107,92,90,104,106,111,108,112,103,109,103,87,107,103,104,108,97,99,114,98,96,99,97,81,94,104,94,110,102,92,113,99,110,99,104,109,106,102,102,107,98,110,94,100,97,105,106,113,106,104,96,102,100,105,122,95,94,99,98,113,102,106,97,108,98,107,106,111,105,94,108,94,95,115,108,105,99,94,108,102,93,102,94,115,74,103,111,97,108,92,102,100,107,106,106,100,104,101,90,104,108,113,119,103,93,102,104,90,118,113,104,97,112,99,94,113,103,100,112,93,94,91,102,109,120,102,96,106,102,101,101,98,123,123,105,91,99,90,109,93,98,95,80,96,90,108,90,96,109,96,90,101,95,111,110,76,109,95,101,93,104,99,108,101,109,106,105,103,98,95,106,102,91,111,95,103,95,112,102,103,104,103,98,112,109,105,99,100,81,102,103,113,103,99,112,96,101,106,76,99,102,87,102,106,116,98,107,100,100,94,105,93,115,101,111,100,95,102,99,94,83,104, +428.6813,101,76,99,98,100,104,107,88,94,101,108,106,109,108,118,105,104,106,96,109,102,87,102,81,97,102,102,101,103,102,112,105,94,99,87,92,98,84,99,93,102,107,94,103,101,103,91,106,101,110,97,88,91,114,113,96,104,94,114,100,95,102,88,97,103,101,95,102,90,97,98,120,101,103,97,114,100,102,98,109,64,96,105,114,98,96,102,98,99,101,103,95,103,96,105,95,103,95,106,102,98,111,100,102,102,98,98,105,96,110,106,76,110,106,106,103,103,96,108,105,116,96,108,106,88,101,116,99,100,112,93,104,98,104,96,99,94,105,97,94,91,107,100,97,87,112,99,99,103,120,102,92,88,92,99,101,99,101,106,122,97,98,103,99,99,101,97,97,86,107,104,100,97,99,96,91,93,97,95,90,81,127,104,108,99,110,90,104,117,98,97,107,99,111,95,117,95,114,101,96,89,107,102,103,95,99,110,103,113,115,111,109,103,105,94,106,109,124,95,93,109,105,94,102,101,110,103,94,103,102,110,109,102,104,73,94,99,95,103,99,103,103,111,105,98,91,106,107,113,112,101,109,108,116,96,110,103,103,86,99,112,103,99,102,105,114,99,115,100,101,101,104,107,101,100,101,98,116,96,102,97,109,100,85,84,102,94,93,127,97,114,91,108,103,106,103,99,103,103,101,81,91,99,104,96,102,101,103,103,99,101,113,95,100,102,109,102,101,106,100,97,99,105,93,104,103,89,106,106,98,113,103,97,87,102,89,102,97,89,103,110,94,100,95,109,99,95,100,108,102,105,97,87,106,107,112,114,102,103,106,99,101,96,100,100,111,109,107,95,108,108,97,100,95,98,103,104,106,95,111,111,109,104,110,99,101,104,96,98,94,104,89,107,103,113,100,118,74,106,121,95,100,99,104,102,105,95,101,104,115,103,92,110,105,107,94,107,106,103,96,109,104,91,92,103,111,95,96,95,107,93,102,103,99,100,122,89,112,105,95,113,91,107,103,106,106,109,72,96,108,97,112,96,115,100,96,94,99,114,83,100,99,99,102,107,112,105,102,101,101,103,91,97,101,114,104,101,106,111,103,112,108,110,98,92,101,107,89,106,110,95,106,107,103,89,89,97,104,103,103,117,105,97,115,108,113,100,104,94,98,104,102,101,109,97,99,104,101,98,103,104,106,105,106,99,99,116,101,98,110,102,99,98,107,107,105,103,96,83,110,98,95,102,102,107,95,98,109,102,109,86,101,105,90,98,105,108,105,90,105,91,100,107,101,111,90,117,109,102,105,108,106,101,123,111,96,106,98,98,105,107,95,100,95,101,107,102,109,100,110,113,107,103,101,112,109,95,104,107,97,75,100,101,97,109,117,97,105,109,107,104,94,112,110,97,101,96,99,93,113,102,109,99,116,109,103,96,85,106,101,105,109,106,82,83,102,96,93,116,103,106,109,85,94,97,103,102,112,100,109,95,105,98,99,100,112,99,111,97,103,104,106,106,95,102,98,100,100,104,99,103,120,109,102,103,110,92,103,111,113,121,92,105,96,94,94,99,102,95,98,99,113,108,118,110,103,99,101,100,87,97,99,109,112,102,107,99,122,92,109,98,98,84,103,90,59,98,106,99,95,98,98,96,107,95,99,100,98,112,108,99,116,95,94,94,98,107,84,91,99,104,96,108,116,99,102,103,102,98,109,114,113,109,108,104,90,102,103,101,92,96,109,106,114,95,101,107,99,100,105,109,120,112,105,93,108,106,109,109,94,100,110,113,113,95,102,96,109,100,102,103,101,105,111,100,112,100,105,110,108,96,110,93,92,112,100,113,107,101,103,104,104,111,104,116,106,109,103,109,99,110,103,98,91,94,106,99,104,95,92,105,110,103,89,106,89,100,73,133,103,107,95,85,90,103,106,97,105,92,98,98,95,99,109,95,99,114,99,100,94,104,102,102,107,89,99,86,95,111,113,104,105,101,112,109,103,94,106,90,105,96,82,95,108,101,100,90,106,105,98,99,101,109,109,116,102,115,88,107,90,92,112,110,95,106,108,107,98,95,92,96,76,98,111,110,107,105,102,96,100,78,101,99,103,96,100,96,105,109,96,101,94,102,108,104,85,85,102,104,96,92,104,105,92,105,109,105,96,103,104,102,104,108,125,103,109,66,102,122,102,100,105,98,103,106,97,93,106,93,107,99,101,104,106,107,113,110,92,94,105,105,107,109,110,98,102,103,97,103,107,94,95,99,102,103,97,98,96,96,99,92,106,98,109,95,99,103,108,93,106,101,98,105,109,94,100,98,94,110,101,117,127,101,101,105,87,105,97,103,116,98,109,103,98,110,87,93,85,107,97,106,103,102,110,106,107,92,105,114,111,105,99,105,107,90,97,93,107,102,100,93,114,104,105,107,101,108,101,100,95,109,96,110,111,96,99,95,95,100,101,111,105,90,109,103,113,105,101,126,106,94,100,104,105,105,109,108,101,109,107,119,99,103,93,108,104,107,92,97,109,108,99,102,111,108,97,113,100,103,109,111,106,96,90,102,96,103,105,108,102,105,111,111,93,101,106,102,104,104,104,91,95,93,120,98,89,100,113,104,104,113,105,110,104,101,88,98,108,108,100,107,94,116,96,109,108,122,95,102,101,106,111,90,103,99,109,101,96,102,98,100,95,101,105,114,106,101,120,116,130,101,105,108,114,100,108,107,101,98,99,108,106,111,105,99,103,101,103,109,106,102,107,82,104,98,112,102,111,84,106,89,111,107,117,106,102,100,103,107,113,104,103,101,119,101,83,102,106,105,104,102,111,105,101,99,103,106,99,97,103,98,109,107,108,99,86,102,111,94,110,105,102,112,110,106,106,94,93,101,116,112,118,106,112,113,107,102,106,102,112,103,104,111,112,105,103,92,102,101,117,111,102,101,102,99,109,108,98,107,98,102,113,91,106,104,97,106,103,106,102,111,104,93,108,110,110,92,106,117,96,106,100,91,106,104,98,94,100,90,110,104,108,97,102,112,107,99,104,101,96,105,108,118,97,105,106,103,105,100,97,85,104,97,93,95,88,98,94,101,108,105,97,103,104,107,97,105,99,103,103,122,111,104,127,99,93,98,102,102,108,98,103,98,95,99,100,99,103,108,103,108,113,107,100,96,102,102,96,103,97,111,113,109,110,99,99,100,111,98,102,102,108,86,103,105,102,110,102,100,99,103,100,91,101,113,83,111,99,105,97,116,107,98,109,94,95,99,104,136,102,116,95,109,85,96,96,100,95,101,119,104,91,92,103,92,115,98,97,107,109,100,111,101,108,102,106,101,110,105,97,102,109,103,107,104,111,114,105,111,104,106,97,94,103,105,107,96,107,113,99,106,101,105,116,101,110,105,110,104,97,96,92,112,107,102,96,111,106,96,112,102,99,115,95,104,108,106,108,96,102,108,99,106,104,116,110,109,104,109,83,105,105,104,99,109,95,94,99,111,105,108,117,101,123,99,104,97,101,97,105,102,111,95,96,102,105,98,109,100,100,85,108,106,99,114,116,98,109,95,108,110,97,100,104,105,103,106,96,104,103,104,94,100,104,99,106,99,103,102,104,91,111,98,90,100,89,104,77,102,106,102,98,103,104,116,99,107,104,116,107,109,102,101,103,102,100,99,108,117,108,103,109,106,110,103,94,111,97,104,111,102,98,104,97,108,104,103,101,98,96,101,102,94,103,100,93,114,101,109,97,97,109,100,97,110,96,108,109,105,101,94,95,106,102,99,96,95,89,103,95,85,101,112,102,100,96,105,110,102,105,108,92,104,92,102,106,100,99,99,106,94,109,98,98,106,106,96,98,96,100,107,103,102,98,104,96,100,102,104,107,90,94,102,112,95,97,113,105,102,96,93,98,104,107,108,96,99,95,116,98,106,101,110,97,96,109,99,102,99,100,106,101,99,118,100,109,90,106,102,101,106,98,100,108,112,105,104,89,102,99,109,114,95,105,104,95,88,102,112,108,98,90,105,107,102,98,103,112,98,107,103,104,100,95,89,104,98,101,112,103,100,97,110,108,104,80,103,114,110,95,98,99,99,102,105,116,100,106,101,109,98,101,108,110,109,114,107,92,106,106,99,98,115,108,92,100,99,102,102,104,98,107,103,100,98,108,98,95,102,105,103,98,95,100,104,92,99,113,99,99,117,104,102,103,110,103,114,115,98,103,105,109,104,101,100,93,113,112,101,66,94,105,102,101,105,99,107,101,105,109,108,95,109,93,105,109,100,103,90,99,102,103,99,98,111,108,115,100,100,100,112,101,111,95,106,99,96,109,98,104,119,89,101,87,114,99,111,106,121,108,103,101,105,110,108,92,109,95,105,109,90,97,105,98,83,88,95,95,100,111,102,104,109,103,92,85,98,98,110,103,102,105,109,110,98,105,105,111,97,96,102,94,109,103,104,102,98,115,104,103,106,106,98,106,101,110,103,92,112,98,92,90,83,113,97,135,104,102,105,92,100,104,96,90,106,95,113,91,100,100,97,108,110,107,88,107,96,88,105,117,108,102,115,93,106,108,110,105,108,105,89,100,101,109,92,95,102,105,103,96,97,90,108,102,104,101,126,100,102,92,97,99,105,95,95,110,111,100,102,96,94,93,99,105,95,96,98,107,106,94,88,98,93,86,120,102,113,95,96,102,70,92,93,100,94,89,105,101,108,99,96,113,94,93,98,79,96,97,108,103,100,86,101,110,97,106,97,99,92,108,103,103,101,92,101,89,99,102,101,83,106,98,104,115,105,105,92,76,98,110,103,95,107,107,105,100,105,103,105,105,112,116,94,96,87,101,104,108,102,101,79,108,99,97,114,88,90,101,91,94,99,100,107,110,107,105,105,105,124,91, +428.82159,108,101,95,114,101,101,112,125,84,98,93,105,87,100,101,98,88,87,111,116,62,98,86,104,106,92,94,90,112,104,102,96,97,92,110,91,88,95,96,112,102,92,100,92,93,107,93,117,71,108,83,105,101,93,103,95,95,113,104,94,103,103,106,88,106,90,103,105,93,112,105,102,84,105,96,95,88,107,109,104,105,101,97,64,100,102,106,101,103,90,112,99,101,99,113,107,95,93,108,93,105,95,97,102,110,107,104,104,95,110,104,96,110,110,96,111,99,106,106,107,99,105,97,108,100,106,87,105,105,109,96,100,112,103,105,104,103,107,90,100,107,102,105,94,96,89,99,100,104,95,106,92,103,90,117,106,105,91,106,100,102,99,105,105,107,95,105,104,101,117,105,93,102,95,90,105,86,100,87,98,107,105,101,110,96,98,94,96,110,91,98,96,92,92,97,89,101,101,101,113,94,114,100,101,91,107,93,98,105,95,95,107,107,104,97,104,92,101,101,111,102,98,114,103,95,103,107,108,104,111,99,100,97,96,100,96,106,104,103,114,113,114,103,102,90,100,100,106,97,98,97,96,105,99,106,109,99,104,88,99,97,105,101,93,109,109,111,102,95,93,105,100,100,98,102,94,104,95,109,92,99,108,96,100,115,89,105,106,100,94,102,113,112,104,109,110,100,108,115,102,92,94,99,106,92,107,113,89,95,107,101,108,107,97,101,102,104,98,107,94,100,123,104,90,106,123,94,99,117,105,107,105,91,94,125,109,98,105,100,73,104,111,104,113,101,102,107,103,96,99,121,102,110,102,105,103,108,102,110,94,106,104,111,92,93,96,103,99,102,70,114,97,104,108,92,98,96,102,97,96,100,104,104,106,98,103,92,109,85,100,105,101,111,106,100,119,106,104,111,113,98,71,111,98,109,95,108,105,104,102,99,94,100,120,110,88,97,85,95,109,106,122,102,95,102,98,101,103,104,102,96,98,96,98,99,109,108,100,100,101,112,106,112,110,96,108,96,96,107,101,98,96,112,102,109,98,104,95,106,97,72,109,96,106,99,103,100,92,96,109,96,107,105,103,104,119,92,102,118,103,109,98,113,99,100,96,104,103,104,99,101,106,106,92,98,95,105,110,91,96,102,115,103,96,108,103,100,92,93,92,106,99,100,108,103,96,98,108,98,106,113,108,101,113,98,99,113,92,103,102,113,102,105,81,108,97,108,109,108,107,114,107,104,120,111,101,109,89,99,127,109,98,100,114,104,115,102,94,114,88,103,108,97,100,106,110,103,87,88,105,93,116,110,106,104,112,100,109,95,86,110,96,74,92,97,94,95,98,102,93,103,108,103,94,100,107,112,100,117,94,97,112,106,103,101,103,108,102,109,110,103,106,107,109,103,92,106,95,107,103,103,94,104,107,108,107,101,103,95,89,100,102,89,102,99,103,112,106,105,103,106,110,99,102,100,95,118,79,100,96,100,95,98,97,102,105,103,110,100,100,111,112,110,108,96,101,109,99,95,101,93,99,89,97,78,101,107,112,109,104,109,106,107,102,105,103,102,113,106,109,106,103,104,108,104,98,100,107,104,89,89,102,98,95,109,114,111,109,95,98,104,115,109,102,91,110,104,96,104,114,98,96,100,96,88,87,113,127,99,113,91,107,99,102,103,102,104,106,105,112,111,100,94,97,97,109,100,98,100,105,117,115,103,106,93,92,100,117,120,96,98,118,101,99,92,116,105,94,110,96,95,89,96,85,109,100,104,99,98,105,97,108,109,112,104,111,108,111,107,110,100,112,102,111,109,107,117,100,108,107,112,110,95,105,106,113,100,104,109,123,102,101,111,101,100,100,102,111,96,106,106,112,107,116,101,99,91,97,97,106,103,97,109,101,118,94,109,86,106,105,95,108,108,93,96,96,111,102,97,104,88,110,105,108,82,109,83,100,113,105,92,101,109,99,113,89,93,85,113,99,110,77,100,99,103,111,105,100,105,111,103,104,103,92,98,101,95,111,99,100,112,107,91,110,105,107,106,109,98,110,95,103,108,100,96,108,96,92,91,96,104,88,105,90,84,91,98,90,105,99,117,103,99,104,94,105,84,108,111,102,114,117,104,99,90,108,101,88,132,100,108,106,99,100,103,101,101,103,95,102,90,114,104,100,99,107,105,114,95,109,105,101,101,91,130,102,109,107,103,109,93,101,114,101,106,99,97,98,80,109,95,113,105,100,101,97,119,108,101,105,105,103,119,98,109,105,99,95,99,104,87,86,102,107,105,99,107,112,108,121,95,99,103,94,91,102,106,104,99,104,87,107,83,95,106,117,94,112,115,111,115,112,98,98,109,79,94,95,103,96,94,111,96,98,93,101,108,114,99,92,106,108,103,96,101,116,98,106,91,96,97,113,101,108,89,111,78,106,91,103,90,115,95,102,109,104,108,102,96,94,101,102,85,110,102,99,108,91,100,114,103,106,107,93,102,98,107,76,96,95,104,107,106,112,91,110,97,111,110,99,90,105,113,115,100,112,99,113,115,98,96,113,98,91,100,87,107,113,110,101,96,110,93,98,101,102,103,97,107,93,103,99,103,94,110,98,108,105,108,102,103,109,120,106,95,87,107,105,90,107,102,104,106,97,110,109,109,106,109,102,83,107,109,106,105,103,117,103,102,109,105,107,96,105,108,118,99,93,107,117,101,102,110,106,103,120,113,88,107,105,100,110,111,106,109,107,112,107,102,98,106,105,109,107,102,100,103,111,104,95,116,102,101,107,96,104,106,100,122,102,105,115,110,113,89,94,117,124,98,103,102,96,108,97,110,111,112,107,90,105,101,120,102,113,96,90,107,105,97,86,105,101,114,112,102,99,109,104,93,106,96,105,116,108,87,98,95,103,105,109,96,107,100,109,92,105,102,96,106,113,101,101,100,96,97,112,101,104,99,97,114,99,105,84,112,98,94,75,100,109,109,91,92,99,101,111,104,80,113,104,111,99,88,88,118,91,102,108,89,92,98,97,96,102,99,98,106,106,96,102,102,101,103,104,102,113,103,112,109,113,100,115,91,109,95,105,98,101,96,91,123,110,103,95,114,102,112,95,100,108,105,103,101,112,117,85,100,106,97,91,108,95,94,100,103,113,103,101,108,101,105,105,112,102,88,100,107,104,109,102,101,101,98,80,94,105,110,104,93,105,100,107,95,99,105,102,102,95,92,106,94,105,96,97,101,106,111,98,108,96,111,99,106,113,109,91,98,109,108,101,105,100,107,96,94,110,95,100,105,97,103,87,104,103,101,107,110,106,94,94,94,99,91,104,102,102,97,99,103,94,94,102,112,91,101,118,108,108,95,105,99,107,102,106,102,90,95,113,105,110,101,101,96,103,106,108,91,102,105,68,94,96,108,98,105,116,120,98,105,93,99,98,103,104,104,92,106,92,85,92,103,104,96,96,106,100,99,111,100,106,108,118,110,101,108,102,100,95,100,107,109,100,93,104,94,106,96,99,101,108,106,107,97,99,110,89,102,96,95,116,99,95,96,92,91,105,95,101,101,107,106,83,95,112,86,103,104,91,106,96,95,100,99,100,86,101,105,97,100,109,98,116,86,102,110,97,99,102,113,99,81,105,113,90,108,104,113,112,99,100,97,100,101,95,89,103,100,95,99,109,113,98,107,140,113,90,101,90,101,108,90,100,95,104,111,99,103,97,102,96,100,108,109,96,98,98,117,98,99,102,97,98,113,98,102,97,107,107,99,109,110,102,102,98,99,103,108,97,112,105,94,105,104,89,111,101,101,108,110,100,113,90,113,112,94,111,109,111,96,100,109,106,102,98,102,110,105,109,108,85,99,102,90,95,115,103,99,94,95,103,92,97,79,92,102,104,102,101,88,108,91,97,103,99,106,90,103,107,97,109,103,86,106,110,101,110,117,105,102,105,109,108,96,103,92,109,108,104,96,104,104,108,95,114,106,93,106,100,94,105,92,103,113,105,113,76,97,97,96,105,111,108,100,103,107,99,74,109,107,98,111,109,96,99,96,104,96,101,106,97,105,102,106,105,101,109,105,116,105,87,108,99,95,92,103,91,103,99,111,132,103,115,105,109,99,103,107,107,100,100,99,92,104,105,108,97,103,109,103,100,87,100,82,105,104,112,117,104,106,100,104,95,107,102,126,101,94,100,105,101,108,104,104,110,106,100,99,95,93,104,89,99,96,102,90,106,107,109,96,95,94,98,102,100,91,103,99,108,97,102,119,101,108,103,101,114,131,113,103,107,102,126,109,108,93,101,92,98,98,115,105,98,95,101,98,97,110,108,103,97,107,95,99,109,99,96,109,111,107,94,103,108,116,106,102,98,93,100,104,99,96,112,99,99,107,111,110,113,102,98,105,102,109,95,98,98,87,128,104,106,105,102,108,104,91,103,85,100,111,111,124,102,105,104,108,98,102,91,86,101,100,97,83,100,134,112,113,101,100,105,106,97,90,112,97,107,113,110,109,91,100,96,101,73,97,106,108,113,92,94,104,119,111,109,106,91,108,92,99,103,91,106,113,108,102,112,101,110,103,105,102,82,96,103,104,99,98,98,102,98,95,112,99,108,95,91,120,100,103,86,95,95,89,107,105,93,99,97,102,100,98,93,97,105,94,103,104,85,97,104,109,105,104,99,97,108,74,113,95,100,103,98,108,95,110,103,104,77,93,96,87,100,96,110,117,94,95,99,102,101,103,98,99,107,104,98,95,105,105,108,105,101,96,101,114,95,113,96,93,91,111,83,109,104,70,110,94,105,97,96,98,101,94,98,100,108,116,96,83,104,116,113,112,97,98,103,111,105,103,82,106,104,91,95,105,98,98,106,102,89,111,100,115,94,99,112,99,87,103,119, +428.96188,109,110,116,106,94,111,95,107,102,84,94,106,101,87,65,116,102,97,91,115,82,99,87,97,109,106,94,96,96,95,91,100,95,87,111,106,110,98,104,88,102,81,94,99,95,101,97,99,92,102,93,94,92,90,100,79,98,101,106,78,88,101,99,93,95,108,101,107,95,100,102,93,92,100,100,105,105,97,77,108,105,110,96,90,98,87,101,106,101,97,104,100,96,98,92,93,88,108,102,101,101,105,121,98,94,107,106,109,98,106,102,107,106,98,102,97,97,101,95,111,122,109,106,98,95,104,110,96,109,98,104,91,102,97,106,104,83,100,107,102,103,111,94,105,92,106,112,103,73,94,106,99,94,87,88,100,101,100,102,94,73,95,112,105,104,96,104,105,99,104,94,106,85,112,93,100,108,100,97,94,101,105,95,115,120,102,102,91,92,97,100,97,96,91,97,101,105,107,95,106,101,100,102,105,100,96,101,97,108,109,101,108,97,108,95,94,101,94,103,63,101,117,98,105,101,101,94,91,116,95,105,103,106,101,112,98,107,111,104,92,97,99,101,88,90,104,98,103,99,97,107,101,94,99,113,105,100,99,90,84,86,105,105,99,88,105,109,104,102,105,111,97,103,101,103,89,98,98,93,117,96,96,97,88,98,113,99,112,81,100,94,111,109,88,95,103,99,96,100,100,100,103,101,101,97,105,95,123,95,105,95,105,101,110,102,96,86,92,101,105,92,92,101,105,95,95,93,99,145,121,100,84,100,103,102,107,98,88,112,104,106,103,107,84,104,99,104,102,101,77,100,104,92,106,101,102,98,110,103,102,111,96,99,94,95,104,95,107,99,113,105,104,97,107,98,100,107,98,92,91,111,100,103,95,100,96,95,86,95,82,102,87,97,100,104,102,98,102,95,104,83,114,96,103,99,88,108,103,95,99,89,87,106,72,107,98,96,98,101,102,87,101,92,87,91,99,101,94,96,100,97,110,103,100,98,105,93,95,100,96,108,96,100,100,86,98,89,103,109,109,88,93,101,99,106,101,90,101,110,97,105,93,100,114,97,102,116,110,101,88,92,108,99,108,98,110,97,98,95,92,99,99,107,103,107,101,101,99,103,93,96,102,104,100,115,96,88,101,117,95,105,92,96,84,105,108,101,101,99,94,118,105,100,93,104,96,101,93,98,112,99,94,104,101,100,96,111,104,99,110,97,108,99,109,96,100,107,90,91,101,102,101,78,94,112,100,105,103,101,120,95,108,101,94,106,104,105,92,102,96,101,107,101,96,95,110,100,109,94,108,106,90,85,103,103,83,95,103,107,113,104,103,122,96,100,109,95,104,91,89,95,97,104,109,107,108,104,93,96,100,104,101,113,79,92,95,97,104,99,104,106,103,98,90,99,96,99,101,103,101,91,88,99,107,108,116,87,108,109,96,100,100,93,110,92,99,97,88,94,95,90,93,101,114,97,88,89,94,89,109,92,99,102,97,87,86,103,108,100,96,102,98,102,99,90,103,98,95,98,96,93,102,111,93,101,99,94,95,100,97,96,93,96,101,97,95,91,87,100,95,99,99,86,109,121,99,91,79,99,115,111,92,92,94,101,105,101,113,102,108,94,118,103,104,103,92,94,90,107,76,98,90,93,101,100,96,106,99,106,114,112,98,105,102,95,100,103,107,105,100,106,97,109,106,97,109,99,90,98,93,97,88,107,106,106,102,98,93,93,89,98,97,99,101,99,109,97,88,105,97,95,98,109,104,104,103,90,99,101,101,98,106,99,108,96,103,99,111,106,106,92,105,105,113,94,106,118,113,102,102,101,89,104,94,99,94,104,100,99,99,113,98,96,90,103,106,103,105,109,100,90,103,101,104,103,103,105,98,107,91,103,91,83,96,102,93,106,88,109,99,84,95,105,99,107,86,91,88,82,94,94,103,104,97,88,93,103,103,106,87,109,109,103,109,104,96,89,97,124,95,102,115,113,98,107,105,91,94,103,91,106,107,109,103,97,102,79,109,105,98,95,99,111,100,102,102,95,102,96,94,102,113,102,99,98,107,100,92,100,101,101,90,101,99,115,100,93,94,102,107,109,103,104,91,103,98,109,97,104,95,109,95,98,98,93,104,97,98,103,99,105,99,104,99,112,95,92,98,121,103,98,99,103,77,97,85,97,110,91,91,98,96,99,106,106,84,100,97,91,93,100,108,110,95,91,96,107,101,94,111,99,100,96,110,95,95,116,105,97,121,95,92,96,98,104,111,117,102,106,91,87,99,102,99,109,113,97,63,104,99,107,107,99,104,103,100,109,98,99,100,108,104,100,105,97,84,100,93,92,102,105,93,87,94,95,80,92,104,96,88,106,97,86,94,93,113,98,100,97,80,96,95,95,100,101,105,104,108,110,95,99,105,102,100,100,112,79,92,110,93,97,95,105,96,106,96,91,104,103,100,102,101,93,92,101,109,101,100,104,107,114,111,107,96,101,101,114,92,108,115,105,104,113,104,88,98,109,94,101,100,96,113,94,108,106,92,82,98,93,116,101,99,101,105,106,82,100,109,87,93,105,102,101,96,103,103,107,103,125,98,96,108,100,103,87,96,106,113,114,108,117,97,111,113,97,94,102,86,110,99,105,98,107,113,97,106,92,95,99,89,106,73,112,100,95,101,116,101,118,99,94,111,100,97,103,95,99,96,110,105,108,96,95,108,102,107,108,97,74,108,95,99,112,96,101,108,106,104,98,109,118,106,97,102,102,100,108,120,104,109,111,109,105,101,103,94,106,104,102,108,99,97,100,108,107,99,106,114,104,98,99,104,120,96,99,101,95,104,100,123,101,109,102,102,104,97,105,105,91,104,108,109,102,106,87,106,105,88,99,107,123,107,114,119,100,108,118,106,75,106,101,114,112,95,101,99,113,103,95,90,105,103,104,106,111,104,102,106,105,107,109,101,100,107,87,100,95,112,98,99,97,107,99,106,100,96,132,99,109,95,110,95,103,92,99,110,90,98,106,99,87,84,95,106,111,109,107,99,92,109,93,103,104,100,107,99,97,92,117,109,103,102,96,107,77,97,94,97,101,96,104,104,97,95,116,104,96,111,119,90,92,101,98,103,104,99,106,102,99,106,102,100,102,104,107,106,96,100,99,104,99,109,98,99,106,103,94,101,108,97,108,109,93,99,100,92,110,113,114,95,98,110,112,111,101,106,99,101,103,96,108,94,96,104,105,115,105,103,115,110,110,106,103,109,105,95,100,102,97,110,103,103,109,103,107,110,102,99,116,102,107,110,109,112,100,104,109,103,100,97,109,124,100,106,106,106,103,107,101,103,99,108,109,102,110,94,108,92,129,101,103,103,113,109,108,105,102,100,109,88,107,107,100,111,100,110,108,99,99,99,89,104,103,108,93,120,113,95,106,103,95,104,117,91,96,99,102,102,102,105,107,92,99,99,99,99,97,99,104,99,112,92,99,103,125,92,114,101,66,113,98,109,101,117,104,106,99,100,100,96,110,108,91,102,102,97,103,113,110,101,107,103,103,92,106,95,90,112,95,98,118,100,100,105,105,99,105,110,99,99,99,102,113,106,104,86,100,112,103,95,99,101,103,109,95,99,107,99,98,96,107,99,100,101,104,92,108,103,93,108,100,110,91,105,95,98,99,102,96,102,116,105,115,95,101,102,94,95,103,90,103,98,117,104,95,106,101,107,98,98,115,102,105,104,93,99,104,105,100,103,99,109,98,100,107,94,91,105,127,103,106,72,86,98,108,106,99,91,109,115,99,100,102,106,102,105,108,111,103,96,95,112,113,101,98,105,106,104,89,103,106,105,99,110,98,106,113,101,99,117,97,116,111,99,95,106,94,106,102,105,106,105,91,98,103,100,109,97,105,105,100,87,102,94,103,101,103,104,107,99,110,96,92,103,90,100,104,121,100,117,107,127,111,104,102,105,101,103,113,97,106,95,105,99,115,92,114,115,98,108,109,76,96,101,94,99,106,100,108,99,105,105,108,92,103,93,105,103,102,105,112,114,94,103,102,99,102,112,104,109,109,96,103,91,99,104,115,107,92,91,98,112,100,105,116,108,110,140,101,97,98,109,111,109,100,99,108,97,107,105,104,90,101,91,109,91,96,76,95,107,102,104,96,98,101,96,109,91,91,93,96,102,96,107,107,106,97,98,103,104,103,72,83,109,110,100,100,106,101,113,93,113,99,100,101,102,86,99,101,100,99,97,110,115,105,108,89,99,104,108,100,104,108,95,101,97,105,100,96,96,75,104,101,106,108,118,109,99,110,106,94,100,97,95,117,107,93,92,102,106,107,84,103,103,100,95,108,99,86,111,111,104,100,102,107,93,101,112,101,97,93,111,104,99,99,112,107,104,105,97,87,95,93,82,97,106,91,109,99,102,109,104,100,102,102,97,109,105,103,109,68,101,113,113,99,98,102,105,110,100,90,98,98,113,96,102,105,109,104,101,109,110,98,96,88,103,106,106,94,105,113,99,101,117,92,97,93,108,101,98,101,118,98,104,98,93,101,112,100,98,90,98,109,107,107,107,106,104,94,105,102,91,96,106,98,108,103,96,108,113,104,109,92,106,113,107,109,101,111,100,107,111,107,96,112,103,98,109,107,91,93,96,108,104,96,106,94,98,91,93,109,105,107,93,112,106,108,112,98,125,95,104,107,106,101,98,108,108,98,100,113,97,101,99,103,98,102,99,102,96,94,101,112,108,118,84,100,107,102,99,112,112,105,106,97,102,105,94,91,83,109,112,103,90,92,96,101,100,110,109,108,89,93,104,101,99,111,107,97,128,96,99,94,98,102,107,106,102,137,103,94,84,100,97,96,100,113,85,100,116,112,93,97,99,108,96,105,112,104,97, +429.10214,99,106,130,95,76,101,109,87,95,93,95,96,100,100,88,93,98,96,104,101,103,104,113,97,106,97,103,73,105,99,98,103,106,99,104,91,101,105,85,109,84,92,101,94,107,103,88,131,97,118,94,114,106,101,91,81,92,98,102,105,103,103,92,110,103,113,110,113,94,105,90,92,106,96,94,109,93,95,102,93,95,101,93,105,95,99,103,107,105,95,86,103,101,98,82,101,95,98,103,109,93,78,106,94,98,100,99,101,95,105,98,112,105,98,114,104,92,99,96,108,104,90,101,103,103,110,97,99,99,84,107,97,105,101,101,112,105,110,90,102,94,100,103,100,99,98,99,106,95,103,113,99,103,90,94,95,102,93,107,97,90,111,98,107,110,106,104,88,96,100,102,105,96,97,105,99,93,92,111,96,96,88,94,93,94,105,105,74,104,100,98,99,104,110,86,91,85,104,96,109,101,110,94,100,102,105,100,102,108,97,92,96,100,122,102,97,102,92,97,96,95,105,104,100,98,98,109,97,110,105,92,90,102,96,91,107,99,107,114,105,95,101,113,117,94,103,109,98,104,96,105,102,104,112,87,106,94,124,94,104,97,99,95,96,103,100,98,101,85,95,106,104,105,105,92,98,104,103,99,98,100,102,96,107,94,104,88,101,99,95,101,98,100,108,109,95,103,95,103,104,96,109,105,105,91,99,99,121,98,98,109,102,69,99,104,93,106,105,116,124,94,100,101,100,88,101,105,91,120,105,95,101,91,102,96,102,104,98,91,100,108,115,106,91,91,107,96,109,99,99,104,93,105,99,106,100,101,107,95,117,88,93,105,96,90,94,125,107,96,104,103,88,110,97,102,98,105,102,97,95,104,104,89,102,99,113,100,96,108,93,102,97,99,105,99,89,108,103,103,110,99,106,91,106,102,111,95,93,109,96,97,104,108,126,93,109,100,105,101,98,105,96,101,106,100,95,104,84,89,101,100,98,99,103,113,102,104,103,94,102,109,94,104,105,106,108,94,103,102,106,103,95,130,113,107,102,100,101,109,97,102,99,108,105,113,95,106,109,110,99,104,115,103,101,127,81,99,109,112,92,99,101,94,110,102,95,102,90,104,92,108,109,103,110,80,102,100,102,100,102,112,92,100,99,107,101,93,102,92,97,83,95,106,94,99,98,93,99,97,99,94,96,112,97,104,98,99,99,102,98,100,104,108,97,96,100,103,96,105,123,99,113,92,140,104,106,105,90,91,104,99,105,103,113,94,111,97,106,93,93,103,100,102,95,101,101,114,98,95,100,79,102,97,106,99,110,105,118,102,113,103,101,113,98,108,98,101,95,98,103,110,103,102,101,108,102,111,107,106,113,106,104,100,96,102,98,99,129,101,98,101,102,95,108,100,114,103,91,97,100,103,104,104,91,84,104,101,105,94,80,105,99,112,102,94,99,105,91,99,93,102,97,106,123,104,102,100,88,115,104,100,93,106,118,105,106,109,103,99,107,102,108,104,111,94,106,95,95,115,95,109,104,109,87,82,101,106,108,109,98,99,106,100,97,110,92,100,94,102,100,99,104,100,115,95,102,107,107,106,95,88,90,95,99,96,106,84,94,104,112,94,108,95,90,108,99,90,100,83,79,95,94,88,91,121,91,104,100,113,104,95,106,108,105,92,95,103,110,103,112,86,99,98,90,106,95,115,106,95,94,100,102,93,106,93,95,105,92,100,102,100,102,99,97,86,105,93,88,106,91,106,92,94,93,103,99,109,111,99,90,96,108,131,111,98,109,102,93,96,105,112,95,96,104,95,109,96,102,102,118,91,86,71,101,97,105,99,94,108,117,101,94,110,101,113,97,98,114,99,100,102,111,92,103,113,114,98,95,105,119,100,109,106,95,110,92,102,103,99,106,101,108,105,100,103,75,99,96,83,95,100,98,96,102,96,99,104,108,96,100,104,99,124,113,104,102,105,93,102,96,94,96,98,96,93,98,89,100,99,84,103,101,101,100,103,118,92,104,94,96,103,91,113,96,103,96,90,107,92,95,105,110,88,103,102,99,113,101,87,105,114,105,107,103,91,105,89,100,104,90,104,105,87,104,114,102,100,96,103,100,102,111,105,110,95,94,103,101,99,102,87,101,101,104,114,99,109,96,110,103,91,106,109,99,113,95,106,102,84,95,91,109,104,109,105,101,110,120,107,106,102,99,110,100,99,87,95,104,96,99,96,107,99,86,99,106,87,101,97,102,104,104,101,102,101,108,91,109,100,102,99,93,91,110,98,99,96,88,96,98,96,105,107,96,105,95,94,105,98,88,109,105,98,98,105,113,113,99,94,109,104,90,119,93,107,88,92,106,113,104,95,98,104,96,101,93,106,91,88,95,98,100,79,89,106,100,97,99,96,104,101,103,108,95,96,91,96,103,111,90,95,96,116,99,93,100,94,107,105,112,107,94,109,86,91,117,98,105,101,101,111,102,104,104,94,97,100,94,95,110,97,92,99,104,98,100,94,96,95,104,106,110,102,91,111,104,99,106,107,111,108,112,103,117,104,104,102,111,103,106,111,103,103,99,109,101,102,106,94,107,113,106,73,108,114,100,94,108,110,95,111,98,113,83,110,93,104,106,104,108,95,89,113,102,108,109,117,98,103,98,100,97,106,100,97,86,79,98,100,103,95,105,92,103,112,109,106,105,97,105,94,103,103,93,108,116,102,93,108,100,97,116,98,109,110,99,106,108,102,103,101,116,103,107,109,107,107,119,117,110,114,100,94,102,109,98,107,110,94,107,115,99,96,100,99,109,96,112,105,111,105,99,103,106,99,108,97,111,104,106,101,105,99,99,116,89,103,100,103,111,115,112,99,102,112,107,104,102,100,111,95,104,116,99,106,103,104,107,103,99,112,105,108,100,106,113,100,102,95,109,101,111,93,88,116,102,104,103,74,97,100,109,99,108,99,102,102,103,94,106,101,98,94,100,111,127,109,105,103,102,105,105,108,108,118,97,98,104,103,102,101,108,104,106,114,99,98,95,91,104,96,107,102,109,102,92,104,105,117,105,105,106,94,95,96,106,99,107,111,98,108,128,123,112,107,110,106,104,103,103,107,103,99,100,111,102,103,89,104,102,98,96,106,100,87,105,104,101,104,85,100,111,103,113,106,97,95,97,106,98,96,96,96,110,91,105,106,100,100,102,104,98,96,97,92,108,96,101,112,101,99,109,100,104,97,88,108,90,109,97,107,104,117,112,102,108,103,101,97,112,100,105,103,98,104,99,97,106,86,96,97,94,101,110,102,107,109,102,93,93,101,96,113,117,113,108,95,100,107,98,88,117,101,101,91,101,101,109,101,94,100,109,113,102,106,121,105,109,106,107,109,104,87,100,96,97,97,120,114,111,98,99,104,106,95,98,101,101,98,100,110,70,95,102,100,97,97,102,95,96,91,104,100,98,91,101,98,100,118,99,95,97,98,101,100,113,108,105,111,99,105,109,103,103,103,101,92,110,100,94,107,110,93,94,110,106,108,100,97,99,98,101,104,105,103,106,111,108,112,106,104,95,101,105,96,114,99,79,100,90,83,98,94,92,98,101,94,97,108,98,97,101,111,108,99,107,100,110,111,98,100,99,106,106,100,103,107,98,112,102,100,98,107,107,93,84,106,112,100,98,99,97,106,93,97,95,97,105,109,100,101,101,102,104,104,96,104,101,99,97,98,105,103,89,99,96,90,104,104,97,92,96,103,95,103,110,106,104,116,111,103,104,100,101,113,101,100,93,104,106,99,104,99,106,106,113,101,115,107,100,109,103,114,95,107,107,98,110,109,98,98,103,92,98,98,111,104,107,91,100,99,103,91,113,101,107,104,101,80,112,105,95,65,93,96,105,114,102,109,97,113,118,103,102,115,108,103,103,97,98,98,96,111,104,95,112,91,98,108,89,93,105,109,101,112,108,108,104,108,97,97,101,99,105,115,114,99,95,95,79,102,99,99,118,100,98,92,89,101,101,99,94,105,98,90,107,96,105,102,97,116,104,96,100,97,98,105,100,112,106,105,103,97,105,100,110,101,108,96,110,102,116,95,110,100,100,90,105,94,105,103,102,107,108,103,106,98,100,94,99,112,91,104,97,100,102,105,108,106,109,113,92,103,102,100,102,95,104,108,100,119,104,113,110,104,103,99,95,90,96,106,106,102,92,104,104,103,96,102,94,100,93,96,98,101,123,100,104,129,91,95,84,113,105,106,103,65,101,112,103,102,108,113,98,104,74,105,98,91,106,91,107,100,100,97,98,104,101,89,113,107,107,122,101,112,110,107,102,100,105,116,105,105,104,92,97,102,101,106,102,91,104,105,102,117,95,102,96,95,108,113,110,105,110,100,106,113,103,102,116,96,95,106,109,101,104,107,107,92,100,108,112,106,98,104,92,101,102,101,98,109,87,110,106,110,96,113,105,96,94,95,98,101,103,100,110,101,89,96,103,106,104,108,103,106,107,102,99,100,92,84,101,102,103,104,105,100,81,110,101,95,107,70,95,97,104,111,106,100,103,98,89,113,109,93,112,94,109,91,96,103,106,99,115,105,113,108,105,105,106,92,105,114,98,99,109,98,110,101,113,98,110,107,101,110,100,98,96,109,107,103,92,101,113,85,112,96,110,115,101,105,96,90,105,100,101,99,100,101,97,115,112,83,102,95,109,107,102,95,103,111,102,96,103,102,98,107,94,94,102,96,103,98,107,88,88,101,99,99,106,98,107,109,108,102,101,121,87,95,107,114,74,104,100,92,102,99,84,105,108,106,99,95,92,112,99,104,97,101,109,105,108,96,103,110,68,95,103,102,87,107,105,89,105,108,98,88,110,106,104,108,95,99,102,85,88,112,112,96,92, +429.24243,106,81,102,86,100,98,78,107,98,101,106,106,91,96,101,99,112,97,103,94,114,101,92,106,90,95,99,99,96,102,106,81,104,108,102,105,103,95,97,93,106,90,90,95,99,99,104,86,105,107,97,133,102,103,95,110,98,87,94,92,95,108,103,109,97,96,90,104,113,97,104,97,106,103,92,113,100,106,91,103,103,90,106,101,104,100,101,112,102,113,92,104,108,111,98,97,112,100,100,94,112,92,105,100,102,99,109,96,108,107,102,99,100,98,94,107,104,125,107,97,103,104,99,111,116,106,110,105,98,106,105,119,116,100,99,100,101,104,109,107,101,109,101,95,100,97,106,110,102,100,105,106,105,93,90,104,102,94,107,99,101,105,97,93,113,115,113,114,104,114,103,109,107,94,99,103,108,91,103,97,101,103,94,103,90,98,91,97,108,106,100,111,108,110,116,101,112,102,117,103,101,104,93,99,93,104,104,103,104,101,104,112,110,85,104,73,113,101,90,110,91,105,109,109,91,99,103,94,104,105,113,104,100,97,111,102,100,87,100,94,105,105,95,113,95,105,98,95,110,105,100,90,101,102,99,111,100,110,95,106,112,112,105,106,77,117,96,90,106,102,104,113,88,103,104,97,101,113,102,104,98,109,102,103,111,117,91,100,103,107,104,104,108,100,97,108,95,118,104,103,107,95,103,108,113,114,106,107,98,101,93,114,112,100,106,103,103,105,106,100,121,103,99,90,96,98,91,93,101,100,103,102,98,100,99,107,111,83,102,103,103,98,101,109,106,105,119,108,84,110,102,98,96,80,105,97,77,107,102,100,97,100,99,102,103,107,77,114,106,88,106,84,74,112,103,84,93,96,105,111,106,103,107,104,97,90,92,106,107,101,94,110,108,106,104,104,106,97,94,101,105,107,105,98,101,109,104,85,95,105,99,130,87,104,103,88,94,89,94,80,104,97,87,98,104,103,95,105,105,98,100,105,102,102,90,103,95,113,98,109,104,111,101,102,109,112,89,101,93,97,103,107,99,108,106,103,106,106,114,92,100,102,105,110,124,104,82,102,97,108,113,100,107,100,104,95,96,106,101,83,63,95,104,97,97,108,98,99,104,92,111,104,101,105,107,87,109,106,99,102,123,101,109,107,117,95,97,103,99,105,96,100,112,98,100,104,99,110,98,81,94,107,78,117,110,105,111,94,100,102,81,98,110,98,101,109,105,99,100,96,96,96,93,113,118,96,111,99,103,114,105,97,91,102,98,105,101,102,96,107,99,98,97,100,99,96,111,98,103,102,100,104,100,104,103,106,102,101,101,106,104,97,104,106,101,98,100,98,104,100,79,99,110,87,108,110,104,109,98,96,98,112,111,101,99,108,111,98,111,91,114,114,105,98,105,107,101,100,101,106,110,106,93,99,107,107,92,101,98,114,94,106,106,98,96,99,118,103,94,106,91,102,102,107,95,93,100,96,100,99,105,89,95,105,101,104,98,102,104,111,109,114,95,106,95,101,101,99,110,105,107,105,102,103,103,104,106,101,104,100,104,110,104,85,95,99,85,98,100,90,108,110,99,114,103,103,95,103,120,93,106,91,108,102,105,111,103,120,92,108,103,93,92,103,106,97,97,96,116,98,104,118,117,106,86,104,111,102,105,114,114,113,103,102,99,101,106,90,104,97,101,102,95,100,106,97,98,107,109,103,112,107,91,108,101,99,104,94,104,98,94,109,105,110,99,103,105,105,104,106,100,87,111,99,104,101,105,110,107,94,92,90,114,114,91,105,101,110,103,111,110,105,98,106,112,109,90,97,93,110,104,96,107,102,94,104,99,103,105,95,99,100,110,104,106,108,116,118,109,101,105,110,96,103,105,117,105,100,90,107,105,99,109,113,103,107,93,99,107,92,100,110,99,100,100,106,114,107,114,101,104,99,107,104,93,113,102,97,95,110,101,106,103,98,101,97,99,104,117,102,108,109,98,93,118,110,112,100,114,101,93,98,94,110,96,97,99,105,107,100,112,103,99,107,102,106,103,106,108,108,108,112,106,111,95,100,105,86,96,111,95,99,105,110,107,112,99,109,112,99,106,99,106,90,97,100,105,103,104,108,105,109,105,90,104,102,95,111,104,117,100,112,113,96,102,97,108,101,117,98,105,97,105,104,105,97,94,102,91,100,109,107,108,110,110,99,103,89,102,114,105,94,105,99,96,102,117,101,83,98,108,110,106,97,106,113,90,103,101,101,102,98,96,103,101,102,99,79,82,99,95,95,105,91,102,93,96,82,100,104,93,95,104,99,82,101,113,103,101,98,124,102,99,102,104,102,108,111,105,116,81,92,109,116,100,98,103,99,94,99,102,101,109,103,61,96,108,103,106,99,105,108,115,112,115,99,106,110,115,107,98,99,92,101,103,98,96,93,110,97,81,100,125,115,106,96,98,110,93,108,106,105,101,98,92,115,104,110,104,105,115,113,116,99,98,104,104,106,99,104,114,100,94,108,100,103,116,106,100,101,105,113,106,105,114,96,95,102,104,105,112,108,100,103,77,97,107,104,98,104,91,107,117,103,103,99,105,108,96,95,83,89,124,100,93,102,100,120,109,124,95,95,108,113,106,124,110,113,121,98,100,98,116,106,108,113,121,110,96,105,97,109,103,109,101,106,107,96,109,100,97,108,99,107,96,105,119,99,110,104,91,100,82,104,98,112,107,100,104,110,104,118,97,112,98,113,97,99,102,113,110,107,117,112,100,98,95,106,102,100,109,109,100,112,111,111,92,106,97,104,113,103,97,94,84,110,111,115,100,102,102,105,113,100,98,103,116,106,106,117,106,96,95,99,111,95,88,106,122,106,106,108,109,108,101,111,108,107,89,115,113,107,97,117,111,100,90,108,115,107,97,100,112,106,92,88,112,91,103,116,100,102,93,95,102,108,105,109,87,104,108,104,103,101,103,102,111,109,101,110,106,125,104,95,95,102,114,108,109,109,101,106,112,98,111,110,102,104,107,111,111,116,99,111,111,103,110,103,97,106,96,113,110,113,94,100,107,108,108,108,102,104,98,105,96,104,108,105,99,100,115,81,98,112,111,121,101,103,102,105,104,105,107,116,122,91,113,111,95,94,107,98,98,102,103,108,92,108,113,103,110,99,103,93,100,102,105,93,102,100,106,97,99,108,109,109,102,106,102,97,112,94,112,102,108,99,101,111,111,100,109,98,112,101,108,98,110,106,115,110,113,102,108,110,114,96,105,106,99,103,105,91,108,96,95,103,101,95,99,105,98,100,75,105,108,101,102,99,100,96,104,103,97,112,101,107,104,111,108,111,112,108,101,99,99,112,110,101,104,100,103,113,108,106,86,98,94,106,120,109,102,101,98,97,99,95,97,99,100,100,105,97,89,103,105,95,114,116,103,105,104,101,110,91,99,91,104,106,108,93,113,100,109,105,108,95,103,100,100,105,113,114,100,91,111,103,96,94,101,90,99,101,98,108,112,104,110,110,105,92,109,101,112,121,111,100,107,108,106,103,87,107,112,81,111,104,96,98,96,98,105,102,102,102,107,111,113,102,102,102,103,103,102,94,109,102,104,106,108,105,98,107,106,104,94,89,104,104,95,100,102,107,107,107,104,109,105,94,69,100,97,98,110,126,108,105,91,96,104,98,111,107,96,109,84,104,107,100,106,109,102,100,118,104,102,91,95,97,105,101,98,117,103,102,97,99,110,96,105,96,104,106,97,105,89,99,104,109,105,101,102,105,119,110,105,112,97,96,105,105,107,97,101,115,117,101,106,90,99,95,107,107,107,105,103,109,98,110,98,98,99,113,103,102,102,100,107,110,121,102,106,109,106,98,112,117,98,95,95,91,102,106,88,104,97,108,110,110,96,104,99,86,101,104,91,113,103,94,105,104,89,91,100,102,101,108,111,112,106,98,104,112,95,119,96,113,99,100,92,104,98,105,109,100,99,95,109,113,106,112,108,102,101,136,100,90,111,99,121,106,100,104,102,106,106,104,103,108,116,98,111,102,101,110,101,105,101,87,106,98,118,95,102,104,97,107,105,95,99,102,98,102,100,98,106,109,105,118,99,108,111,99,102,106,103,104,108,88,102,109,99,95,93,105,113,84,107,102,105,113,100,101,107,86,107,100,99,99,97,98,94,109,139,106,108,105,100,116,103,103,107,98,108,109,110,94,103,99,103,91,99,104,95,106,93,103,106,107,105,104,101,108,113,106,90,102,104,97,96,110,101,104,116,88,113,100,100,90,106,107,99,105,111,98,87,94,102,93,91,100,124,101,107,112,96,112,108,109,99,99,110,106,99,104,106,94,108,116,113,100,113,103,104,117,103,103,106,97,98,101,96,104,112,105,78,93,101,113,96,91,94,92,92,104,110,105,109,109,107,81,131,91,102,100,97,97,89,91,108,105,101,104,102,99,118,99,113,104,102,95,104,114,114,105,106,105,106,114,95,99,103,113,92,115,107,108,116,105,89,99,106,81,105,109,99,103,107,105,103,99,94,113,97,95,102,103,105,105,105,100,113,117,102,104,95,121,104,112,102,109,98,100,105,103,108,90,117,108,104,107,104,112,108,111,105,100,102,100,100,115,114,102,99,106,100,106,110,102,100,95,107,86,105,83,101,102,106,117,106,81,108,105,107,104,101,98,109,98,106,87,106,100,117,107,103,102,103,104,92,93,98,98,98,97,111,98,104,98,104,118,101,92,102,92,90,105,104,114,117,99,99,120,107,104,113,98,109,101,109,117,101,93,88,101,111,102,91,103,104,103,107,101,105,105,111,116,92,106,107,104,98,99,90,98,99,104,90,101,101,108,94,113,101,106,102,92,90,99,100,84,90,105,102,79,110,104,97,105,105,101, +429.38272,92,93,98,99,97,108,93,104,92,100,100,101,101,95,110,107,110,94,78,101,100,78,100,92,79,99,117,99,104,114,98,103,83,103,107,111,99,84,95,109,90,107,100,109,104,108,91,97,92,101,95,109,98,100,108,101,93,113,106,92,101,113,94,97,89,101,102,108,105,104,98,106,86,102,98,103,104,100,107,103,101,100,96,113,101,104,109,100,100,96,103,120,89,111,106,112,100,94,103,109,103,97,95,90,98,82,96,93,100,103,114,98,112,102,102,106,115,97,106,118,106,78,99,100,116,110,101,96,103,103,112,103,100,96,111,109,104,98,99,105,109,110,95,98,95,95,103,102,92,111,108,103,109,91,98,104,98,93,108,104,103,108,103,108,101,105,102,121,99,109,91,96,114,124,120,97,116,94,93,102,106,102,82,107,102,108,88,89,107,103,114,108,105,98,110,89,105,105,106,105,97,111,95,94,105,109,101,111,105,108,91,78,113,114,90,95,94,110,101,99,101,104,106,102,95,79,100,111,98,96,90,98,90,102,113,96,111,104,110,101,96,115,99,105,101,93,96,117,111,103,104,98,98,114,100,101,102,99,99,105,100,104,96,109,89,103,101,101,104,95,102,103,100,87,102,109,106,104,112,102,99,107,95,101,97,102,98,104,96,112,105,102,109,109,96,107,100,100,116,122,86,100,104,100,104,120,107,104,90,115,95,106,104,103,101,99,109,112,103,100,110,90,111,105,95,113,107,96,114,96,108,100,96,110,106,105,118,93,111,98,94,95,97,91,104,97,106,92,99,96,119,88,92,111,99,98,104,109,96,104,98,93,91,105,103,95,99,111,107,109,100,97,102,104,99,102,108,102,96,107,99,94,91,110,101,97,95,109,94,95,118,100,92,105,96,97,107,100,95,102,101,95,92,106,99,93,87,119,99,106,99,101,101,98,116,100,101,96,96,99,93,110,96,106,97,100,107,98,99,105,91,97,100,104,100,101,98,112,90,95,93,95,106,93,99,109,107,116,109,99,101,96,113,103,103,97,99,108,92,101,98,103,86,104,109,99,98,109,87,127,90,100,100,92,104,100,96,113,90,102,100,103,107,101,101,108,98,103,105,105,103,112,113,101,94,95,98,106,98,90,103,90,90,91,100,100,99,97,102,111,100,115,102,98,99,110,96,107,96,109,90,102,95,99,95,105,96,95,94,110,94,111,105,100,114,114,97,94,116,105,93,109,102,87,113,97,104,89,100,107,104,100,105,105,94,97,99,114,97,95,105,105,101,92,88,112,114,106,97,99,84,94,105,106,88,122,108,109,109,96,103,91,92,106,98,102,109,89,98,111,117,92,106,91,91,114,99,117,113,101,103,89,106,113,91,106,109,108,112,103,104,103,107,114,102,107,96,92,115,111,111,101,109,108,98,102,92,99,106,103,104,107,107,102,94,113,105,109,108,97,99,100,110,105,98,95,105,101,99,102,98,111,109,111,116,110,105,92,104,95,91,103,91,116,107,97,100,91,104,108,111,110,105,104,95,109,94,94,105,86,99,94,105,95,97,94,106,98,98,101,99,99,106,104,105,97,100,104,110,92,107,99,96,100,94,107,110,114,101,102,109,99,107,91,97,93,103,97,103,100,95,90,106,127,100,100,106,118,99,113,107,115,98,104,94,104,117,106,112,82,95,108,113,86,79,105,96,111,100,99,120,97,100,106,104,96,103,110,99,94,99,101,92,100,93,87,100,106,101,107,110,102,97,104,107,128,96,96,113,90,109,109,108,99,103,108,97,109,98,99,99,96,97,133,99,100,103,113,109,102,124,106,96,113,100,104,105,99,107,96,116,102,106,104,107,100,106,110,91,90,111,116,114,92,108,101,87,99,93,93,113,99,113,97,105,102,89,109,101,106,105,91,99,115,103,87,96,98,104,105,99,109,110,106,106,96,101,118,98,106,105,92,94,92,98,99,92,113,117,95,94,106,101,106,105,98,100,95,95,102,100,92,100,109,104,101,94,101,103,105,111,100,104,106,100,101,105,95,97,111,91,110,83,107,103,104,99,105,100,100,109,117,104,100,92,105,99,106,103,103,99,101,95,99,122,106,102,94,103,107,105,87,99,106,91,113,103,96,96,91,99,109,115,95,106,105,100,102,97,89,93,101,108,116,96,104,110,98,98,100,104,116,83,100,96,103,91,103,96,106,109,108,101,98,99,104,112,102,87,100,101,119,108,113,119,105,89,95,96,96,109,101,101,103,89,95,104,96,105,99,104,99,71,97,106,103,99,97,95,94,82,99,111,102,115,113,99,100,105,97,120,112,101,94,105,100,105,97,91,88,98,101,109,92,104,97,101,107,92,106,96,107,94,95,80,101,114,105,99,96,105,89,108,100,102,98,100,103,106,102,101,100,101,104,90,96,99,108,100,97,100,107,102,96,92,105,90,100,100,103,100,101,92,92,92,113,97,92,119,93,100,101,117,91,94,89,95,101,112,87,108,101,108,109,101,98,87,72,96,94,102,106,114,106,78,106,107,109,101,96,107,100,105,101,101,110,89,90,76,99,106,108,93,93,85,100,105,103,97,107,97,94,102,99,95,101,67,98,99,95,105,103,90,99,95,95,103,98,99,100,84,95,108,94,106,109,94,98,81,95,105,89,90,102,107,89,99,97,91,69,96,96,106,92,102,101,103,97,107,103,105,99,97,115,103,104,102,91,111,102,104,123,99,109,94,107,105,94,95,104,96,95,93,101,98,101,113,113,97,102,104,110,102,106,101,95,108,94,106,93,101,101,98,109,97,127,102,106,100,112,96,101,104,91,108,99,104,113,105,95,108,103,89,100,99,99,100,113,93,117,97,72,99,99,99,100,109,105,109,109,95,94,111,104,99,107,109,104,108,108,98,97,111,101,84,128,105,99,104,109,107,109,108,113,99,110,113,101,107,104,102,96,92,107,84,99,101,105,106,103,108,102,90,101,101,102,108,96,96,99,108,104,94,114,100,107,118,95,96,103,96,98,95,98,107,92,103,108,103,106,101,85,106,105,99,97,103,96,97,116,104,107,102,104,91,102,91,102,102,102,98,107,109,95,104,95,103,98,112,101,98,100,103,109,108,98,92,103,98,95,98,109,88,95,92,100,99,89,95,95,102,92,104,101,106,103,103,104,94,95,105,101,106,106,104,113,103,105,94,101,95,98,93,96,101,91,90,96,98,99,100,92,101,102,99,88,107,91,109,96,101,101,93,100,98,83,86,115,108,91,117,108,113,94,94,93,96,110,94,90,96,102,97,113,106,104,92,101,88,95,111,95,93,106,100,94,103,98,101,94,101,94,99,99,115,97,92,105,105,95,109,101,89,99,105,90,107,92,110,100,98,75,92,101,98,111,100,99,103,105,94,100,95,102,108,106,103,96,95,113,98,96,103,87,102,92,96,99,91,98,108,117,103,98,103,101,101,103,89,89,100,100,95,101,83,94,100,92,93,81,100,113,97,112,105,111,98,102,98,106,100,95,100,118,102,98,103,102,104,103,99,100,97,105,97,111,96,99,103,98,106,100,96,100,106,113,99,94,102,101,92,113,87,105,102,104,98,99,96,102,89,99,109,103,99,102,105,106,113,94,99,104,106,106,97,101,104,98,88,96,102,93,96,104,96,96,95,102,105,97,115,99,98,122,103,99,95,101,115,94,107,103,98,103,99,93,102,103,96,95,102,101,89,99,101,90,87,83,94,107,102,94,90,92,105,95,90,95,103,101,96,98,98,104,89,100,106,104,95,106,97,103,100,102,106,113,105,105,104,97,98,115,102,104,92,104,102,103,112,110,99,112,106,106,94,100,103,100,99,105,99,101,103,109,107,105,109,103,97,114,119,91,106,96,102,93,110,106,100,88,104,77,111,91,82,98,89,97,114,90,105,101,105,76,104,103,103,103,95,96,92,105,89,101,100,106,106,95,99,97,97,97,92,96,102,95,96,104,93,106,103,99,101,108,94,97,95,96,100,99,99,101,92,103,67,97,102,81,91,97,104,94,90,94,99,110,96,99,100,110,96,93,99,96,94,95,95,79,105,98,98,104,100,103,87,106,101,109,91,105,100,95,108,102,92,98,106,102,102,92,103,99,94,114,91,110,70,106,102,90,102,105,96,87,98,86,96,91,103,96,90,102,96,110,98,112,93,107,113,87,107,94,102,102,99,99,96,94,94,106,98,88,98,98,103,121,101,113,86,107,92,86,105,96,98,93,95,96,111,94,87,94,112,105,91,96,92,98,96,102,102,104,103,105,108,102,114,97,100,106,105,108,107,112,95,98,113,109,98,104,107,101,108,101,106,87,98,84,107,102,95,113,108,97,109,96,99,110,100,88,113,106,100,100,106,98,104,97,105,96,101,85,107,89,112,98,89,96,94,91,100,107,103,101,92,102,105,102,105,113,89,95,94,91,95,90,102,97,109,98,92,89,104,107,99,96,104,100,105,103,87,99,99,111,102,105,102,82,106,93,97,101,105,116,103,97,99,94,113,99,99,107,100,96,100,102,89,92,105,96,106,95,97,111,96,99,110,108,104,91,92,90,100,110,104,109,102,97,100,98,94,100,94,101,104,111,94,113,92,98,106,88,102,104,98,97,98,86,100,101,89,98,93,108,87,100,91,107,94,103,96,109,105,103,98,109,101,106,107,92,96,96,94,78,104,93,115,103,92,90,89,92,93,104,95,98,97,101,87,91,102,89,91,96,105,105,97,103,91,103,91,96,106,98,101,101,113,91,93,96,100,89,95,110,112,99,100,112,96,99,100,108,100,109,84,100,91,108,95,112,96,107,93,100,92,92,100,97,99,99,104,101,107,101,92,90,124,100,99,87,94,97,99,94,107,98,103,110,98,99, +429.52301,94,111,98,103,100,99,91,69,103,105,108,98,98,92,103,100,94,94,98,87,118,108,87,110,102,107,102,93,108,99,99,90,105,103,118,113,100,90,111,103,103,100,111,100,112,98,92,102,104,97,103,105,102,101,101,93,97,98,111,93,95,91,96,104,109,112,98,95,113,91,105,115,82,100,98,104,107,90,112,95,106,110,86,94,98,88,104,104,98,91,107,99,123,81,98,98,100,92,87,108,102,106,96,97,80,104,103,98,100,101,105,100,94,113,106,119,92,102,101,102,105,96,108,103,95,96,109,97,99,99,100,100,106,97,92,111,89,106,99,109,98,100,93,102,96,99,106,97,95,104,106,103,100,96,101,103,93,92,91,92,95,104,106,95,93,101,93,88,92,102,93,114,100,97,94,104,103,92,114,91,97,101,92,103,102,116,91,90,99,106,95,96,105,99,106,109,96,106,103,135,94,115,103,103,106,100,94,100,101,105,95,104,114,98,101,112,70,95,100,108,111,104,99,93,84,107,102,110,109,92,107,111,96,99,91,93,81,97,94,86,93,100,108,104,89,108,107,100,100,101,99,104,99,101,106,107,92,95,102,105,102,98,91,88,92,102,94,100,102,100,112,104,99,104,106,100,83,106,118,95,103,102,111,107,98,101,102,75,98,98,99,109,116,102,97,95,97,99,112,94,103,106,104,106,94,104,100,97,95,112,96,96,103,103,105,97,92,104,99,111,100,96,97,99,108,111,103,99,103,87,100,100,105,102,105,104,102,106,94,102,103,104,105,94,98,103,97,106,105,95,105,103,96,101,79,102,108,101,109,99,106,90,102,91,101,95,106,109,103,100,108,102,87,104,106,99,100,94,100,102,102,97,113,86,100,116,100,99,106,97,107,104,93,91,91,111,99,104,111,104,100,104,101,96,96,93,109,99,92,96,94,103,111,104,103,90,100,102,99,93,106,84,100,96,105,98,99,123,104,114,100,92,96,96,67,96,98,111,105,95,118,100,104,104,87,104,104,100,129,100,97,103,104,110,105,105,112,103,108,99,102,102,91,91,107,99,98,101,95,86,105,102,103,104,98,96,99,119,101,113,99,115,109,97,97,108,100,99,105,105,98,108,99,95,91,101,105,99,100,94,111,91,98,109,94,101,95,95,110,101,122,94,98,112,103,107,100,106,106,100,102,108,104,92,104,91,110,104,105,97,100,97,96,102,104,101,99,96,96,76,115,99,88,92,104,91,102,98,101,102,100,103,105,115,104,106,94,104,100,106,98,88,98,104,104,110,80,100,102,100,94,80,106,102,101,99,105,96,117,97,104,111,103,103,96,87,109,98,104,103,96,104,110,106,110,102,100,110,94,100,107,108,96,102,104,107,104,110,114,99,104,93,112,111,110,106,105,102,97,97,101,112,103,102,93,99,88,115,95,98,91,96,91,92,105,101,95,111,113,108,107,116,102,94,102,97,96,90,101,85,107,112,99,107,107,98,105,103,100,117,111,119,97,105,96,96,102,110,103,94,112,111,102,105,103,105,101,108,116,101,103,106,105,98,87,121,91,96,102,97,102,110,105,125,99,110,105,101,102,96,99,110,99,113,112,106,105,121,105,97,100,91,89,111,69,104,92,104,109,87,112,98,108,109,106,110,103,100,93,108,98,98,94,100,107,99,94,102,96,86,92,110,75,76,91,101,104,100,121,106,103,99,112,100,99,102,90,103,96,106,114,114,122,98,102,91,102,103,90,98,100,106,110,92,110,90,99,112,107,96,101,101,109,101,106,110,101,104,94,113,102,96,111,107,110,102,107,91,101,106,96,103,96,109,98,102,101,105,99,101,108,104,92,93,95,94,97,100,106,102,110,102,102,98,114,97,104,99,113,100,102,83,100,97,95,99,106,105,100,105,81,103,100,102,100,96,106,108,101,87,101,104,102,108,94,92,100,111,106,96,94,96,96,104,100,108,103,93,105,107,87,91,94,99,104,103,103,99,100,98,98,99,104,99,105,102,91,78,108,101,97,101,114,109,101,94,94,94,96,101,106,106,87,113,87,95,104,102,99,100,98,102,103,108,102,81,110,100,97,113,106,103,106,91,92,110,101,98,108,102,100,106,88,95,88,107,94,86,95,97,95,85,106,113,114,94,103,93,107,98,96,107,97,109,104,106,93,91,104,97,107,111,104,100,96,101,97,103,114,102,101,100,115,104,96,91,98,103,94,97,102,101,94,95,95,101,122,113,98,90,100,95,95,88,98,107,100,110,89,105,109,103,99,101,107,102,99,106,108,98,90,100,92,105,101,106,100,87,94,102,90,107,104,100,105,105,103,109,89,109,102,105,97,99,98,95,98,105,92,108,101,112,94,101,104,106,102,92,92,100,100,106,106,108,96,102,106,91,94,99,103,113,113,118,102,97,109,107,94,91,82,103,95,112,108,103,99,83,109,95,93,95,87,97,95,119,101,74,100,109,108,102,92,93,93,103,99,107,111,128,103,104,106,102,94,106,93,111,106,102,91,112,103,92,100,92,95,99,114,109,100,91,100,95,108,101,99,107,101,103,108,112,109,99,84,108,95,95,89,95,104,88,95,117,97,96,100,98,105,106,100,101,110,99,99,97,96,105,99,99,100,94,101,109,91,108,106,106,104,109,106,97,112,105,104,105,95,105,108,98,107,105,94,103,101,108,107,98,96,113,102,106,102,92,99,111,102,90,105,113,107,105,108,105,102,98,117,107,101,109,103,104,108,113,110,105,94,113,106,95,110,105,99,100,105,95,103,108,88,100,91,103,95,106,101,104,109,103,106,108,103,68,98,103,106,98,106,102,98,98,103,95,107,99,102,101,101,110,95,95,105,94,101,106,100,94,106,103,109,94,112,102,104,96,108,100,101,105,109,109,114,113,102,104,102,104,105,115,101,112,103,102,111,91,112,102,107,95,72,87,99,100,92,99,104,89,113,108,96,99,109,90,87,88,100,102,103,98,93,91,99,91,102,105,100,114,109,98,118,100,88,90,118,101,109,113,103,87,107,111,104,103,107,100,114,107,106,109,113,107,101,101,97,98,96,94,103,104,97,89,105,108,104,105,108,100,109,102,89,107,98,87,95,112,95,100,95,109,96,117,99,101,98,95,94,105,81,103,106,106,102,96,94,95,90,102,106,94,104,101,108,100,101,112,99,95,85,109,98,105,99,101,102,95,95,100,111,116,101,109,108,113,91,93,102,91,102,86,101,102,109,106,114,105,86,93,94,103,102,93,88,100,101,103,106,105,100,108,100,102,103,120,101,103,97,100,94,100,106,108,109,105,104,97,88,111,100,93,95,99,100,103,104,100,87,109,103,98,104,105,87,106,110,104,95,98,93,95,99,106,102,96,94,123,100,109,98,113,119,113,98,106,96,98,95,100,99,89,110,108,103,88,107,94,108,109,98,99,102,91,113,109,101,100,96,102,98,85,101,93,100,103,106,91,105,108,98,95,113,104,94,102,94,113,115,95,81,96,85,107,99,88,107,109,91,103,108,111,113,113,99,102,108,116,109,106,101,110,109,110,112,103,99,106,104,101,102,112,103,95,89,100,100,105,104,87,108,104,105,108,96,96,118,123,100,91,109,99,96,100,107,107,105,107,101,102,104,91,104,101,100,91,97,99,96,106,98,116,106,100,99,115,105,116,100,100,94,111,105,99,107,83,99,109,105,99,99,105,98,102,95,100,109,92,103,105,93,94,92,105,100,93,91,106,103,104,99,105,105,111,111,92,102,98,112,120,97,99,109,111,101,108,89,92,107,96,108,103,103,103,121,103,105,103,90,101,100,103,90,96,95,105,98,94,98,107,100,108,101,77,94,101,107,110,113,99,106,97,113,106,97,108,108,105,109,100,102,112,92,99,97,97,92,97,99,99,103,105,94,99,105,83,107,105,98,110,109,95,111,95,100,102,102,113,93,102,101,100,102,111,103,98,102,101,102,97,101,92,102,111,106,102,101,103,102,112,101,98,106,105,103,104,105,124,106,101,104,100,112,110,100,104,95,101,105,117,107,99,107,94,93,106,101,97,101,100,102,98,113,101,101,111,101,117,107,110,99,93,114,109,115,105,99,101,103,102,100,111,102,93,116,112,108,109,106,106,106,104,100,101,106,107,104,94,87,97,105,89,101,91,103,109,93,98,80,100,100,120,101,98,115,102,106,102,91,83,110,102,104,99,108,98,98,109,91,101,99,114,104,107,101,99,110,102,109,98,100,105,95,108,98,94,114,97,116,107,102,107,97,87,106,102,101,106,98,113,101,102,109,113,100,109,107,108,103,110,69,94,99,96,94,96,100,97,97,107,92,100,101,89,106,99,106,95,93,101,104,94,104,100,102,102,106,108,91,95,95,78,98,93,89,78,102,101,96,109,99,106,114,98,100,100,104,105,103,105,96,90,101,105,91,100,101,99,107,100,97,100,102,100,108,108,96,89,107,112,94,104,98,95,96,94,97,99,95,112,122,101,101,95,101,89,112,90,106,97,73,96,96,98,90,111,99,110,104,103,105,97,103,103,93,110,113,98,97,100,96,107,93,93,98,100,112,118,92,88,95,98,93,96,97,109,101,114,101,105,100,106,102,103,104,93,106,100,104,92,112,101,102,103,101,99,104,103,97,107,102,66,99,101,96,94,103,110,109,109,100,104,91,101,105,95,99,108,95,95,99,109,95,95,99,112,96,107,95,106,95,96,104,108,97,90,100,113,90,102,96,96,110,98,107,97,92,103,88,96,102,100,113,104,105,94,95,88,95,83,104,106,105,105,106,94,100,110,101,106,99,98,107,95,97,109,102,105,96,112,76,103,103,91,107,84,98,106,110,116,88,109,81,102,107,84,97,112,99,96,102,93,102,104, +429.66327,106,105,98,98,108,99,99,98,106,106,93,87,108,87,100,105,91,98,104,92,100,97,105,98,103,104,98,101,99,98,105,73,100,108,98,102,94,87,97,95,99,99,101,110,99,104,98,96,96,105,98,102,98,99,89,91,101,99,115,103,107,97,110,97,112,104,93,111,93,83,98,117,104,92,104,109,89,99,106,116,98,105,99,114,99,100,104,72,101,106,103,90,93,108,102,124,97,97,96,87,97,102,104,96,112,108,101,96,89,121,96,96,102,93,98,103,95,105,98,100,107,98,101,101,114,101,106,94,103,99,108,106,71,110,104,91,99,97,102,98,99,108,86,95,85,95,108,104,105,93,103,97,103,94,101,97,114,94,100,81,101,94,114,102,95,112,95,101,103,96,120,100,97,96,107,98,109,81,113,108,105,99,114,96,80,90,103,106,102,101,105,94,103,91,106,90,92,74,95,100,95,106,95,97,99,115,102,87,102,99,101,110,91,107,99,93,104,117,107,92,104,89,100,103,91,112,100,109,96,102,95,95,105,109,102,94,93,112,103,97,94,110,96,102,92,95,96,102,103,106,105,103,111,103,98,108,100,104,89,102,94,95,104,104,91,102,114,98,113,76,115,87,113,100,100,101,83,114,111,100,104,101,108,96,112,103,92,98,97,96,109,98,97,99,111,97,104,102,101,93,115,94,97,101,99,101,109,94,112,103,105,111,99,97,103,108,110,101,101,93,99,100,94,99,91,104,113,86,66,111,83,95,105,105,107,105,105,99,95,103,101,105,95,88,99,109,94,110,99,102,113,101,111,94,103,102,109,117,102,104,103,97,96,91,104,100,100,99,99,113,100,92,111,106,92,97,110,97,118,101,118,109,100,100,91,88,96,92,96,104,106,110,96,129,96,97,101,88,103,99,90,98,101,95,99,98,97,103,96,91,103,101,102,82,101,101,106,101,110,99,109,105,105,101,94,86,107,110,113,102,100,113,89,105,108,118,114,103,100,100,105,92,100,95,101,113,103,87,107,107,106,104,96,100,99,91,103,105,99,99,101,107,98,95,103,97,99,102,105,92,96,106,100,95,95,101,104,105,102,89,111,107,103,98,100,94,101,96,79,107,103,103,103,105,95,96,105,93,97,108,108,106,96,102,88,94,105,99,110,108,107,98,107,112,98,114,102,87,108,110,96,96,95,101,95,84,112,114,96,101,96,104,97,98,99,119,98,93,95,98,101,105,97,117,102,90,104,90,99,102,108,106,101,97,101,105,102,95,95,92,102,93,103,109,101,101,95,88,109,102,94,101,105,97,103,102,99,106,104,107,104,103,110,118,96,95,106,102,102,100,96,99,90,99,116,104,97,112,105,95,109,112,94,105,90,97,99,105,99,81,102,95,97,103,112,93,105,95,101,99,102,112,98,106,92,97,104,96,106,85,101,104,95,102,87,98,105,98,111,92,105,102,95,105,105,96,105,83,100,100,101,113,103,102,97,113,96,108,101,101,108,108,94,108,103,93,104,114,105,113,86,109,105,106,99,106,98,100,95,98,104,95,98,95,103,91,97,98,106,96,95,114,105,111,101,116,111,108,95,86,107,97,105,86,105,117,117,113,96,96,97,97,107,95,106,99,106,109,104,102,105,103,108,96,104,96,88,98,96,102,95,102,94,104,94,105,99,97,110,105,107,100,93,112,108,107,105,102,97,114,102,99,90,109,105,93,98,98,115,96,93,104,100,80,90,98,95,96,96,91,99,106,99,114,108,92,102,109,97,101,110,87,99,101,102,100,101,103,97,116,100,96,96,106,103,99,105,96,112,94,106,92,90,103,97,83,105,109,100,101,101,101,104,99,82,99,102,104,112,103,109,112,108,98,103,105,103,104,103,86,97,95,98,84,105,112,99,96,108,102,104,101,105,100,97,102,99,109,101,89,113,97,97,110,102,116,100,99,88,98,100,96,114,108,103,107,97,109,105,90,109,101,96,99,99,104,103,101,117,95,110,96,87,103,107,96,107,116,119,94,92,64,91,102,93,104,91,111,104,108,110,104,100,111,99,97,93,109,112,101,98,99,107,105,105,111,100,99,104,106,101,104,111,99,106,102,90,100,105,118,105,116,106,110,93,106,96,91,108,97,104,95,100,95,92,105,108,100,106,99,111,109,111,108,101,109,92,105,104,97,96,106,100,92,111,102,87,96,79,97,92,118,105,88,97,102,105,98,99,108,104,104,103,105,110,95,91,112,111,89,104,117,98,92,108,113,100,103,105,116,105,95,110,111,103,100,103,100,99,96,86,113,104,88,90,106,98,93,90,111,114,114,114,92,114,98,107,101,113,105,115,93,105,96,111,89,98,108,94,99,103,102,102,98,104,106,109,95,94,88,100,95,102,87,99,106,90,96,107,101,96,106,111,110,99,109,104,105,95,97,100,111,101,96,106,103,91,109,86,97,108,101,103,106,110,104,108,102,103,96,117,96,95,102,85,99,101,108,95,116,97,101,94,104,100,110,71,100,102,104,97,104,98,92,105,106,113,106,106,106,106,109,102,109,108,114,110,82,104,111,103,102,106,105,101,101,92,102,106,104,103,97,109,108,106,97,109,106,102,98,128,100,102,104,99,125,93,89,98,113,100,94,108,71,106,105,98,98,110,109,116,95,112,95,105,100,94,91,120,90,100,108,104,111,116,101,117,103,109,91,98,112,96,100,109,103,108,93,102,108,104,94,95,110,109,104,110,112,94,101,98,104,93,107,115,112,112,93,90,104,114,108,93,105,102,82,116,109,111,108,105,93,105,91,114,97,102,109,90,109,111,102,113,99,96,98,103,90,108,99,113,108,103,100,113,102,104,97,98,109,99,98,114,109,109,103,97,106,104,115,104,103,104,103,108,98,95,103,98,98,100,109,112,109,83,100,100,107,101,106,114,106,92,118,112,111,113,98,111,99,105,107,103,103,92,113,91,95,95,111,104,99,98,101,103,104,93,101,99,99,102,100,101,104,104,95,115,97,97,136,114,93,100,104,88,116,91,93,92,91,90,105,91,101,109,100,80,80,102,106,98,102,97,105,101,88,96,103,91,106,95,107,110,100,103,90,109,98,105,97,96,82,95,99,94,101,109,89,113,107,94,108,110,99,98,105,91,96,97,100,105,108,97,105,97,108,98,104,102,102,89,103,103,110,107,101,99,106,100,103,109,97,99,107,107,102,105,101,94,113,111,100,99,103,102,95,98,103,98,111,117,108,102,114,107,93,101,96,95,100,97,112,120,84,90,105,97,92,100,109,103,93,100,112,99,117,112,106,100,83,87,99,101,103,94,108,97,104,100,99,105,115,98,104,113,84,100,102,99,98,105,103,103,100,109,102,95,95,101,100,105,108,106,104,105,106,91,111,112,107,96,100,106,100,93,106,107,111,108,107,99,105,98,98,96,100,103,98,102,114,87,100,92,114,103,104,106,96,97,100,108,100,103,101,106,94,100,106,113,101,102,110,99,107,109,103,95,98,116,94,114,117,101,121,105,111,103,98,99,84,99,107,105,99,108,110,104,117,94,115,103,131,100,99,98,105,107,99,111,109,98,104,96,110,95,118,105,101,99,103,99,105,88,99,93,98,72,107,105,102,107,104,109,115,104,94,105,84,106,110,107,94,90,113,112,89,98,101,100,99,100,71,101,91,108,100,102,111,98,102,101,102,117,101,94,99,107,102,91,110,113,93,119,98,100,95,102,117,105,90,87,99,102,102,116,99,113,103,106,100,105,94,100,98,109,75,112,103,99,98,74,97,118,99,96,116,106,95,105,109,111,99,110,88,101,112,103,102,100,112,100,108,95,92,102,101,113,104,97,104,103,91,94,105,99,99,104,100,98,108,100,91,104,106,96,103,109,102,98,94,108,98,102,100,101,111,100,95,102,106,102,95,90,96,106,109,118,95,96,97,95,106,104,105,94,107,109,99,70,77,118,110,89,97,114,102,97,95,99,104,109,96,91,109,100,103,98,94,108,99,108,103,102,95,98,106,95,100,119,108,112,109,92,97,100,104,113,105,109,97,99,102,108,99,108,102,100,104,89,87,99,117,112,98,111,104,92,108,105,106,113,105,105,98,103,106,116,100,96,94,90,95,104,97,115,101,100,103,102,116,109,106,97,102,103,101,102,85,94,94,98,96,109,113,122,112,101,105,102,105,107,109,110,106,99,111,98,84,105,101,108,94,115,103,92,108,94,92,109,105,102,110,108,99,104,110,91,95,105,109,96,98,107,97,107,105,106,99,98,101,102,97,112,104,90,107,105,97,129,112,106,116,87,99,101,111,101,112,111,97,97,95,105,109,99,99,101,105,95,104,111,102,106,99,104,87,106,91,92,106,105,113,112,103,106,97,105,101,97,98,66,95,90,107,91,102,84,105,99,97,104,104,95,91,97,96,103,98,118,101,115,96,100,100,96,96,91,106,102,128,101,76,86,94,92,88,100,103,110,92,99,105,102,78,113,100,80,90,94,102,91,96,100,89,106,109,103,124,87,99,96,91,98,112,99,109,109,104,90,108,90,106,105,112,108,103,93,98,109,109,94,95,99,102,86,99,109,93,94,110,100,103,113,106,99,120,102,106,100,86,105,94,113,112,93,108,98,102,105,103,98,92,108,106,95,101,93,104,102,85,105,97,109,92,126,140,98,113,101,103,108,107,113,108,96,117,100,98,98,101,94,101,93,99,95,90,110,96,108,105,109,83,101,97,99,104,99,105,107,98,100,112,99,102,98,110,98,111,123,109,98,108,109,97,103,110,110,108,93,99,117,108,99,94,104,101,87,102,86,103,102,95,105,109,83,113,86,105,106,88,106,90,99,109,101,90,103,105,98,121,132,103,104,89,119,99,102,103,96,109, +429.80356,117,105,85,100,97,97,97,100,84,113,82,98,98,106,109,98,101,106,98,100,103,102,108,95,101,103,102,99,86,112,100,102,92,103,102,97,75,99,93,112,89,102,100,99,91,102,97,103,121,103,95,104,102,96,100,99,103,77,105,91,97,121,91,82,109,99,89,96,103,104,113,96,90,105,109,98,103,87,97,115,102,97,99,98,107,93,91,86,89,99,88,100,100,107,94,94,102,102,95,99,99,98,99,103,91,105,92,98,98,99,101,97,102,101,106,109,98,101,100,90,99,99,102,99,100,118,111,100,100,100,107,102,95,108,113,104,100,97,107,101,99,101,109,95,102,89,91,116,93,103,105,97,99,97,91,101,96,106,99,98,96,105,98,97,104,100,88,98,102,107,105,98,98,95,99,97,96,98,121,99,93,103,99,111,105,89,99,86,103,107,97,98,96,108,94,88,95,94,104,107,111,96,105,96,105,106,98,106,97,108,104,113,101,97,100,98,106,104,98,99,96,109,100,87,94,100,106,111,121,119,108,96,99,100,99,108,99,89,91,99,92,99,105,111,100,102,104,99,102,104,96,106,109,91,106,101,97,104,95,101,102,95,104,97,98,102,94,97,103,93,90,98,104,105,98,98,101,98,101,95,100,83,104,96,94,96,94,78,95,98,104,105,106,89,104,97,101,100,110,103,96,98,94,103,95,98,98,93,92,118,86,110,88,104,96,92,95,107,100,100,94,97,101,100,110,104,101,87,115,109,98,98,108,99,104,102,102,97,109,91,101,94,100,106,117,104,104,106,108,92,108,100,106,92,93,94,91,100,93,92,105,105,106,104,105,96,103,104,93,106,113,101,100,97,106,96,91,105,103,99,106,112,100,101,94,95,95,95,114,100,104,105,104,100,103,108,92,110,92,98,94,109,104,90,94,88,99,104,109,110,95,100,96,87,101,91,87,94,103,107,107,98,95,98,97,102,108,100,106,118,91,102,99,98,108,95,106,101,92,100,103,95,99,126,100,98,110,77,104,102,96,92,89,106,96,96,98,100,98,105,94,109,103,105,109,97,99,108,100,99,88,106,84,106,107,94,91,112,96,104,97,112,115,105,112,87,119,104,97,109,91,106,97,97,105,84,91,97,103,110,103,96,110,101,98,101,93,100,110,116,110,102,107,95,104,95,99,102,102,105,91,107,110,101,99,91,98,99,112,123,99,105,102,106,106,107,91,94,103,103,99,108,98,98,107,91,103,102,83,114,95,104,100,91,90,91,94,102,89,102,82,117,101,119,114,91,110,101,99,101,94,98,99,105,107,107,99,99,112,107,105,92,123,96,95,108,96,90,99,95,109,87,95,101,106,110,90,106,103,110,97,89,99,113,89,92,98,97,95,100,93,95,106,85,114,103,100,97,107,95,109,105,104,102,108,101,95,97,108,109,107,105,101,101,92,104,92,93,105,83,100,113,105,103,95,101,94,101,108,111,109,102,96,103,97,105,97,99,102,100,104,112,100,107,109,110,98,106,101,113,99,92,101,112,105,112,113,95,106,105,83,111,97,99,100,100,93,105,106,96,107,98,88,100,100,102,103,105,99,69,89,95,93,93,102,111,91,104,100,105,94,116,84,93,97,94,93,98,108,100,99,99,111,104,90,103,107,113,104,103,95,102,94,99,96,100,101,95,103,99,114,98,105,85,99,103,98,97,104,90,117,80,99,106,117,107,102,109,101,98,97,91,94,90,98,112,99,100,90,101,94,106,97,111,98,97,96,110,108,106,105,97,104,95,90,110,115,102,97,100,82,107,101,96,111,105,92,91,108,102,95,95,109,103,107,103,96,104,99,96,106,98,99,103,115,99,113,103,94,99,91,110,98,114,101,91,106,95,99,97,103,99,99,101,105,93,105,105,107,104,105,104,106,106,98,91,93,90,99,96,100,94,90,99,94,95,113,108,94,109,98,101,98,99,94,105,97,100,112,99,101,100,98,105,106,96,116,100,114,95,102,108,94,96,108,90,105,94,98,97,104,105,101,101,91,98,93,109,105,104,98,94,124,101,109,97,95,102,95,106,82,103,96,99,69,107,98,114,105,92,113,103,121,105,109,114,96,106,94,93,102,102,91,96,98,103,90,97,99,112,107,99,110,91,106,99,96,109,96,95,74,97,107,84,98,91,104,92,93,91,100,100,95,103,106,92,119,87,91,103,100,103,113,109,98,112,113,107,111,100,70,100,93,113,96,108,115,88,103,91,101,104,91,95,114,84,103,97,99,101,100,100,99,100,101,94,109,99,94,74,86,110,97,104,97,114,105,101,102,99,110,99,107,97,100,100,101,100,100,100,97,101,96,88,111,93,98,101,97,101,96,97,98,96,95,102,105,94,113,103,97,99,110,102,113,106,94,93,103,97,96,104,100,106,91,95,100,107,117,97,102,105,105,95,98,100,100,88,97,116,99,101,100,107,99,90,97,77,94,111,118,102,93,87,97,100,104,108,101,85,105,99,122,106,98,98,99,92,110,99,102,91,96,112,102,113,100,107,103,102,102,107,103,100,111,103,99,93,100,104,94,123,112,96,102,102,100,97,107,95,111,102,104,108,115,109,107,90,101,94,75,105,106,107,92,107,90,105,111,104,113,90,111,97,107,87,109,106,102,100,103,100,114,97,106,100,111,92,109,94,100,104,93,108,92,102,112,105,108,120,102,98,114,104,107,113,106,94,105,101,113,111,111,108,102,110,104,101,96,108,93,103,107,113,106,92,98,91,111,108,115,108,101,103,105,99,105,102,108,113,103,100,111,101,108,98,108,105,102,102,100,109,113,107,98,106,106,106,94,103,104,103,112,116,106,101,100,110,112,115,112,98,112,102,102,91,99,112,96,116,100,99,107,116,103,106,96,96,101,89,99,117,94,99,106,117,107,106,108,103,113,102,94,93,104,90,84,95,104,107,96,95,98,100,94,102,104,106,93,103,101,97,94,106,94,107,101,103,96,104,89,99,117,127,95,103,105,105,76,95,113,89,103,101,113,109,112,103,104,97,102,92,105,105,104,101,106,93,113,105,108,95,103,91,90,109,96,95,103,103,108,103,106,96,110,75,106,118,91,111,117,86,92,106,99,90,101,100,101,105,107,100,91,104,98,90,103,108,107,90,118,102,98,100,100,102,103,104,102,108,106,94,107,99,92,93,102,108,90,109,99,100,103,101,100,95,101,99,101,105,87,101,107,99,99,95,106,109,103,102,86,102,103,115,105,91,97,100,99,103,105,107,111,104,94,94,90,111,113,105,97,101,105,100,100,90,104,99,102,95,101,97,95,112,116,113,83,96,107,108,98,96,98,105,95,109,99,94,106,104,107,98,100,95,103,106,107,103,104,113,95,117,108,97,95,101,99,117,94,104,79,98,102,106,95,101,99,98,91,99,92,108,104,94,102,92,95,116,105,98,98,109,93,93,102,107,106,98,99,95,106,96,94,95,97,106,102,103,117,102,120,106,99,106,112,116,109,95,103,105,103,98,106,97,96,105,106,90,100,98,97,102,103,102,96,106,101,110,123,110,103,105,104,107,101,104,117,98,97,80,104,109,98,108,91,88,106,94,104,102,109,101,104,102,105,107,117,107,117,110,96,98,108,90,115,99,94,92,101,112,91,100,103,96,94,91,113,99,107,98,95,105,100,98,98,98,105,108,100,100,96,99,108,101,105,96,104,105,99,110,108,106,108,109,108,104,99,93,97,103,116,99,100,103,97,102,96,100,100,104,102,91,109,106,94,100,101,116,109,78,108,103,72,110,116,110,106,120,104,105,105,100,119,96,105,108,91,96,94,79,96,100,110,109,98,104,98,96,103,105,114,107,112,96,117,112,106,103,102,107,95,99,88,101,105,102,125,104,128,95,100,115,106,104,96,107,96,108,106,112,101,110,112,93,95,90,97,108,100,96,98,110,88,108,100,101,104,98,91,104,109,121,98,101,105,96,108,94,101,105,101,91,99,100,109,95,104,98,106,108,117,103,96,103,98,105,107,93,103,95,98,99,96,97,92,102,97,108,107,97,99,129,111,112,93,113,95,112,98,99,112,101,104,98,101,117,92,111,103,108,98,104,97,107,97,111,113,104,102,106,126,95,99,108,110,95,109,91,109,111,113,94,105,110,99,108,107,96,101,99,104,98,95,101,109,109,102,104,101,102,97,103,94,121,103,94,114,92,95,107,103,86,97,102,92,97,96,104,95,112,89,95,106,94,105,95,94,104,96,103,97,98,112,99,108,100,95,98,87,106,95,99,100,99,113,101,120,97,100,101,98,101,105,99,107,113,102,98,109,101,95,97,110,95,126,106,101,98,93,92,99,99,109,107,88,91,110,91,103,99,106,105,110,98,83,101,101,85,103,95,88,93,91,99,97,101,92,109,91,99,102,109,91,92,105,89,87,104,100,99,88,99,111,100,104,99,115,94,102,95,91,95,98,107,93,84,108,102,102,93,105,98,100,111,103,100,100,92,88,95,97,91,103,101,91,103,114,101,94,95,94,98,93,103,102,104,105,107,96,97,96,95,90,95,107,87,93,97,102,102,97,102,92,99,129,98,99,101,92,109,100,108,113,99,107,108,113,106,91,100,107,91,111,101,102,106,122,101,102,109,85,99,111,101,89,92,95,95,99,93,97,85,101,98,94,109,97,87,100,89,107,104,97,94,88,92,80,98,96,101,103,88,109,97,100,99,110,98,98,95,107,87,98,93,85,94,98,93,111,113,104,89,82,109,100,102,106,98,106,102,101,83,96,93,100,94,106,94,86,92,92,116,98,95,97,88,101,91,112,103,92,96,98,94,98,103,81,100,113,103,108,108,109,105,99,83,90,98,95,109,108,104,80,88,88,98,95,95,94,93, +429.94385,100,80,98,92,98,107,92,106,97,100,93,92,96,95,100,93,99,108,103,103,98,101,104,107,105,105,95,106,101,105,90,113,101,109,103,96,104,90,90,98,94,94,103,111,64,102,92,98,93,106,105,98,111,102,100,97,93,103,96,93,98,104,97,86,86,111,84,78,91,92,105,105,77,92,98,109,101,94,97,94,103,97,112,94,103,93,105,79,99,103,100,103,106,103,98,91,96,98,89,107,93,100,107,97,97,95,102,93,114,100,110,94,107,104,94,97,110,102,113,102,100,102,98,110,97,108,91,100,95,98,104,98,98,92,99,114,102,110,99,94,107,85,100,107,100,99,94,104,99,102,111,104,110,95,93,103,95,96,94,96,102,103,100,106,108,94,89,101,97,86,101,102,110,97,97,97,107,102,103,95,98,106,94,97,100,97,105,98,108,106,97,78,72,105,106,104,102,102,101,96,99,103,91,99,109,110,72,104,95,96,93,96,106,110,104,97,95,116,127,98,109,86,92,100,96,97,113,111,94,103,86,95,95,100,107,106,103,69,112,99,101,90,100,109,95,73,105,104,110,100,95,103,96,101,97,102,98,104,97,102,91,108,103,107,100,106,107,102,97,96,104,91,99,104,103,102,95,93,101,106,95,81,102,117,93,108,83,100,91,101,96,98,100,103,104,92,104,100,105,104,108,106,88,110,94,104,113,108,103,99,91,101,99,94,105,94,105,109,104,92,99,111,108,85,104,93,100,105,103,109,107,92,102,98,103,109,116,101,94,95,93,77,101,96,101,97,97,105,107,103,105,106,90,90,96,108,103,109,100,99,118,98,110,109,101,100,94,110,96,99,84,98,113,105,104,96,99,102,107,102,100,103,101,106,103,104,102,108,106,109,98,102,82,108,95,93,108,103,103,105,96,107,104,96,95,104,97,112,101,117,89,97,103,113,99,91,103,104,115,104,101,103,90,105,88,91,94,103,105,90,103,103,97,105,95,96,87,101,94,86,101,111,82,103,87,103,101,115,120,105,92,89,103,103,107,96,94,103,106,98,82,109,102,105,104,112,108,72,94,107,96,91,91,94,93,100,85,101,102,100,101,95,103,103,106,117,122,98,99,86,99,109,105,96,95,111,94,99,98,96,106,95,102,109,108,86,88,102,95,105,102,98,99,110,97,97,111,104,92,104,94,94,107,98,106,96,110,87,95,96,93,103,112,100,87,101,100,98,109,102,93,100,115,105,97,93,99,102,103,97,95,109,105,102,90,96,101,96,94,89,95,101,91,104,89,100,111,79,96,100,92,97,86,93,106,104,104,94,87,107,95,102,108,102,105,103,108,98,106,109,109,102,120,113,104,112,93,103,107,103,108,122,93,103,102,95,95,86,104,105,107,105,103,95,105,99,107,129,99,92,103,113,88,98,97,107,101,103,104,103,102,100,106,99,88,98,95,112,95,92,99,100,98,99,102,86,99,107,98,111,107,109,102,96,113,91,88,103,100,101,108,93,106,93,96,94,107,100,101,108,107,98,99,116,102,114,99,100,99,103,110,95,101,95,105,106,96,90,93,93,94,107,91,99,109,104,107,95,100,105,104,109,89,104,105,118,92,105,89,114,100,102,101,72,107,93,79,98,95,98,90,94,102,108,83,67,100,101,114,121,94,103,105,94,105,97,109,95,103,111,115,97,96,102,97,123,104,110,100,94,106,99,102,113,91,104,104,98,102,105,106,103,94,109,89,95,88,95,100,105,101,97,109,100,100,93,100,96,108,94,110,102,96,103,96,106,99,109,110,109,99,95,118,100,100,104,92,103,108,104,106,97,101,105,125,98,102,91,95,100,114,105,93,101,108,114,101,104,102,97,107,104,112,103,93,103,106,108,107,111,105,110,118,110,101,95,98,85,99,96,95,98,102,99,91,109,107,101,108,96,107,100,112,95,99,106,110,98,111,105,116,100,108,97,104,94,92,105,110,105,101,110,97,101,99,105,99,109,99,92,98,91,95,103,94,103,92,108,115,99,102,106,109,109,111,96,98,102,97,95,104,114,111,99,108,108,106,104,103,96,99,111,101,100,111,105,109,106,99,89,104,91,92,108,95,96,99,99,98,106,88,115,111,106,100,105,101,114,110,101,107,99,101,99,97,99,98,91,84,88,97,106,98,84,97,108,93,96,91,102,102,109,93,106,111,102,95,92,99,95,105,105,99,110,105,100,99,107,98,116,88,106,83,96,88,97,95,100,82,111,100,88,100,103,97,89,103,104,99,90,91,86,108,95,92,116,93,98,116,109,100,100,106,99,102,107,82,104,107,95,99,95,91,104,107,80,102,108,99,99,109,90,111,96,101,98,95,98,94,90,116,104,98,88,90,105,105,95,95,104,103,100,99,103,110,101,102,106,108,102,92,130,106,99,92,82,97,90,97,88,103,121,108,97,96,99,69,106,108,81,96,99,94,96,111,84,112,105,99,100,102,119,111,80,85,106,97,109,103,100,101,98,97,85,100,100,95,98,96,100,107,107,108,107,106,97,99,103,98,103,106,105,99,110,99,103,100,108,107,100,101,113,105,93,91,93,102,94,94,93,100,111,102,94,101,96,117,96,101,92,119,92,97,112,101,98,100,100,99,111,96,90,109,95,103,102,96,106,102,93,91,95,95,101,102,99,131,90,104,99,68,111,92,97,105,105,102,92,104,109,114,102,115,106,87,75,106,90,89,105,90,95,101,103,99,105,103,112,103,91,96,117,101,104,107,90,95,104,95,102,103,98,113,110,109,110,101,104,113,102,93,96,106,113,112,109,96,96,106,112,106,109,113,94,102,97,99,106,102,105,115,131,90,70,89,96,95,102,102,104,98,96,79,103,100,91,99,102,103,99,102,90,106,75,108,97,108,73,116,105,98,103,102,100,102,101,95,97,92,106,95,104,105,96,102,114,104,99,109,105,105,99,99,91,97,94,116,102,99,94,97,93,100,81,104,109,108,100,96,101,103,97,107,96,91,107,103,106,94,88,113,102,100,101,101,101,109,89,87,97,87,94,111,98,107,102,108,106,84,79,102,109,109,102,94,107,113,116,109,93,98,100,102,91,109,102,103,97,95,100,108,103,94,116,88,106,107,104,117,125,105,105,106,98,104,100,98,105,95,108,99,99,102,92,101,93,95,94,95,103,94,89,108,89,87,106,100,126,107,98,98,99,100,102,111,106,99,102,98,109,101,114,87,103,89,99,94,96,106,109,107,117,90,121,100,111,99,108,97,102,102,106,111,100,106,111,88,105,107,90,109,99,115,108,100,100,99,103,96,89,111,94,113,104,100,105,135,99,113,101,92,106,101,104,105,105,98,98,112,106,109,105,93,106,91,104,117,93,105,92,95,108,96,120,101,102,99,103,101,97,100,100,95,99,102,92,110,101,106,99,95,90,95,91,95,93,98,98,87,97,94,95,101,87,91,112,112,112,105,104,92,100,94,99,110,109,107,110,100,103,108,115,99,117,104,106,98,104,100,100,107,109,104,104,105,101,102,99,92,99,100,101,107,98,87,105,93,102,105,101,104,102,111,109,101,96,101,109,101,90,105,103,75,104,96,106,104,100,93,102,100,92,109,108,98,97,97,93,104,105,102,98,105,94,102,97,106,93,101,88,94,112,97,100,95,96,81,113,109,74,96,105,107,96,88,102,117,100,105,109,105,95,98,99,88,97,113,105,107,98,95,108,96,94,109,109,83,102,101,107,110,89,105,94,110,101,99,91,94,101,102,100,100,107,108,87,118,93,102,105,91,110,98,103,103,93,105,107,92,104,107,104,100,95,100,92,107,93,106,103,107,111,100,99,107,94,109,105,96,112,100,106,103,95,97,100,101,102,96,103,98,105,90,110,101,92,108,87,93,87,101,102,96,106,96,81,103,87,96,99,104,91,96,104,105,98,98,104,105,103,102,101,95,98,78,96,108,103,97,106,103,100,102,102,104,98,98,107,106,108,102,118,91,102,104,109,99,104,111,103,135,102,96,93,94,112,103,103,98,105,98,104,104,109,105,111,97,102,111,102,98,113,94,101,93,88,98,97,105,104,102,104,98,103,98,105,98,104,97,101,95,116,113,95,110,110,92,100,105,105,112,88,102,95,102,99,100,100,91,102,92,99,106,87,88,113,102,96,94,102,101,113,99,95,109,103,100,112,100,107,113,106,100,106,108,98,104,100,97,101,108,94,94,99,94,101,123,98,97,98,100,103,112,105,90,112,100,106,98,92,106,98,115,108,135,101,103,87,100,98,95,94,103,88,110,93,91,93,116,103,107,106,107,101,106,104,106,99,93,107,108,105,99,108,96,100,104,104,104,114,97,108,96,118,100,107,83,106,109,106,96,105,105,98,93,102,91,109,97,95,107,105,104,102,95,87,99,94,96,88,99,91,95,100,133,100,88,99,102,97,104,114,105,94,109,92,97,92,100,98,102,104,87,95,106,100,99,104,100,96,89,75,89,99,95,98,96,96,92,96,98,93,90,102,101,105,102,105,106,98,96,98,113,92,91,105,111,94,97,92,69,111,105,104,101,108,105,95,96,98,98,109,101,111,96,103,106,94,97,115,102,93,83,100,99,92,103,104,97,98,98,109,109,111,93,89,97,113,107,105,99,98,99,93,99,97,93,103,96,102,101,101,90,102,105,91,102,107,104,95,98,98,105,97,102,97,103,94,111,87,101,93,93,87,103,97,94,97,96,106,115,95,108,93,95,100,94,117,109,99,96,96,120,99,116,101,96,112,105,106,118,105,96,93,104,108,89,116,98,94,103,102,111,95,98,121,93,100,98,103,111,98,84,101,88,107,90,105,103,83,114,103,96,99,96,95,105,117,106,103,101,111,100,106,97,104,101,76,101,60, +430.08414,113,111,97,98,100,81,96,113,104,112,94,98,96,86,95,82,110,104,94,107,98,96,100,111,130,99,106,103,103,105,97,100,105,91,102,95,100,108,101,97,96,101,91,103,101,103,97,103,107,123,95,108,92,104,99,99,91,95,119,101,102,100,104,80,97,113,105,100,103,111,99,102,100,105,100,103,102,102,98,103,102,104,83,102,104,102,100,98,86,98,123,106,109,91,100,93,87,104,102,99,95,104,106,94,103,96,86,100,102,101,118,98,99,97,110,96,109,91,103,103,101,104,104,102,95,105,109,83,114,100,98,105,105,106,103,102,99,98,114,100,97,98,111,93,104,90,98,103,107,98,119,99,110,91,104,107,100,83,111,99,102,104,87,111,100,113,68,106,105,103,107,93,110,104,102,82,99,106,114,114,119,100,96,98,100,104,92,90,89,113,114,96,96,98,107,102,108,100,97,98,91,101,101,96,103,98,106,104,102,109,98,104,108,95,90,102,117,98,95,105,121,113,100,105,99,99,106,102,93,109,94,100,99,99,107,100,113,102,104,100,105,100,109,104,101,120,103,114,112,108,102,98,119,104,100,111,111,112,89,105,108,103,97,97,90,112,97,83,100,89,114,109,101,120,111,98,100,102,100,87,110,105,108,130,102,114,95,104,104,105,98,104,89,106,102,94,104,101,98,91,106,99,117,113,93,108,82,99,88,108,85,101,107,92,94,97,111,94,96,91,106,102,111,102,95,90,104,93,99,107,108,98,102,108,101,106,110,92,99,102,85,98,91,105,106,111,112,112,95,96,106,101,95,102,102,101,103,100,102,104,92,95,110,95,99,97,82,99,102,100,121,104,107,107,114,94,95,108,106,89,88,107,102,110,104,99,93,105,95,109,95,100,106,103,107,92,99,99,121,100,90,110,92,105,105,100,86,103,103,107,88,105,114,93,112,94,100,94,106,106,91,101,103,104,107,92,104,110,94,100,102,101,94,113,108,106,110,100,93,99,105,104,105,105,89,102,87,98,108,110,92,104,97,99,93,101,102,97,103,97,120,100,99,107,108,112,106,102,94,103,103,106,109,97,100,104,100,112,100,101,89,108,99,107,109,99,116,114,97,94,94,117,105,92,109,101,100,95,110,103,99,110,105,104,101,105,78,105,118,107,104,110,104,113,97,97,95,94,92,105,107,114,98,100,99,108,107,108,93,104,99,96,101,98,95,100,108,95,102,92,98,91,94,99,116,86,99,95,100,108,106,113,102,109,122,105,109,92,60,107,103,100,105,95,97,95,89,102,103,93,98,101,97,102,95,104,114,92,105,104,79,94,122,91,93,101,107,99,105,98,119,111,108,87,104,92,106,117,101,113,103,100,128,104,95,107,110,115,99,105,116,112,106,96,102,106,101,101,110,100,107,101,104,101,99,103,101,108,92,113,100,108,106,125,104,105,110,100,110,88,113,108,103,110,105,93,88,94,104,118,95,98,110,110,103,109,107,101,103,110,97,102,105,99,110,108,107,104,112,69,102,94,101,99,98,101,111,112,105,96,100,103,102,85,93,99,102,104,99,107,104,105,103,88,90,107,102,99,104,90,99,105,102,104,102,109,97,108,102,102,105,102,98,106,101,106,100,96,103,91,98,88,93,92,110,112,106,99,106,103,105,109,95,101,109,113,107,106,108,109,117,95,87,104,104,103,103,99,96,105,111,95,98,109,98,98,112,102,92,99,107,90,103,101,89,121,98,69,101,78,95,105,104,107,98,104,97,105,108,102,89,110,102,97,95,106,62,104,103,115,98,100,92,100,106,105,99,107,99,130,118,98,99,92,99,97,120,100,97,99,95,109,100,98,120,110,98,112,108,101,96,100,111,111,108,113,107,101,108,95,104,101,109,97,105,121,108,80,109,92,111,101,102,103,101,96,96,87,101,104,98,97,110,106,109,109,104,114,114,100,102,109,102,94,106,109,91,102,108,103,107,97,108,106,84,105,115,104,114,111,106,97,112,109,103,104,91,117,109,94,117,106,77,100,102,91,107,103,104,63,103,110,103,109,102,88,98,99,102,103,111,112,109,115,106,103,116,102,98,102,110,110,104,111,109,95,91,104,102,104,104,94,104,110,101,110,104,98,103,91,105,99,84,106,96,98,104,105,105,114,97,113,106,103,124,111,105,107,104,103,111,98,117,101,113,98,97,100,103,104,97,103,112,96,107,104,113,102,106,102,115,108,91,111,97,98,117,98,88,88,97,108,105,103,97,95,99,101,101,106,104,105,102,110,98,105,98,102,99,99,96,116,99,99,102,108,103,115,108,92,101,102,107,93,95,111,102,105,108,120,105,107,111,109,125,105,88,97,94,108,104,97,94,106,100,101,104,99,102,99,116,103,97,123,112,103,106,123,103,109,97,117,99,108,115,108,92,129,71,95,100,114,124,108,110,99,112,112,104,106,110,95,97,99,100,104,99,94,106,100,107,106,106,83,97,105,112,99,113,100,101,102,95,107,116,103,90,102,105,101,99,107,120,113,105,79,95,99,86,109,113,110,107,98,96,112,96,103,100,99,97,113,116,94,117,106,98,90,102,95,105,103,106,112,106,95,93,105,102,84,99,111,106,97,112,106,109,99,109,95,120,100,99,88,109,99,110,106,110,105,78,110,109,112,109,103,84,96,99,95,82,117,106,101,117,107,94,113,110,98,103,98,108,107,102,114,107,87,99,81,102,107,110,103,104,99,97,89,99,102,105,101,110,114,104,101,117,105,96,107,96,111,109,110,121,104,99,105,94,101,93,107,94,94,109,105,95,98,107,128,98,94,100,100,103,120,103,110,98,86,105,106,106,110,102,95,101,112,112,113,98,101,92,107,120,101,104,107,119,107,108,112,105,97,108,107,101,105,105,104,100,96,109,99,100,106,99,116,112,103,103,109,94,104,109,107,106,99,103,109,104,95,109,101,108,101,105,74,110,103,95,112,96,96,106,106,101,103,105,117,102,112,108,107,105,109,108,106,104,103,97,102,104,110,112,104,116,97,104,100,92,98,108,100,104,100,103,107,96,99,94,106,91,108,83,87,103,100,98,103,107,107,104,105,91,105,110,106,96,103,95,99,112,123,112,99,96,102,105,108,106,104,112,105,101,101,99,108,111,95,98,92,107,102,102,107,92,92,119,108,105,106,92,106,113,104,112,100,112,106,95,102,92,93,108,106,96,110,113,120,102,107,93,103,83,119,98,105,100,108,95,117,111,104,106,94,96,102,101,128,93,102,108,111,102,109,103,93,110,108,104,105,95,105,101,112,102,105,99,105,107,110,91,97,98,95,99,92,103,112,95,106,96,101,120,91,111,95,96,110,94,99,111,110,105,103,99,95,104,103,102,101,96,100,93,97,109,101,104,103,105,101,103,101,109,104,103,104,100,115,93,100,85,105,94,119,96,108,101,103,106,109,97,94,84,102,93,105,114,91,98,104,96,90,108,102,94,107,111,99,99,108,107,100,98,105,89,106,112,102,95,110,107,104,102,102,96,107,100,100,106,110,110,103,94,106,102,105,102,104,99,88,104,105,98,101,109,103,105,102,100,99,111,111,101,109,114,102,116,105,93,99,117,103,127,93,111,107,111,108,106,94,105,106,101,102,105,97,103,96,94,112,124,101,90,103,96,107,99,104,101,95,108,105,94,87,104,106,109,108,105,107,88,101,114,110,104,102,97,83,98,102,103,102,99,117,112,100,100,100,107,100,119,97,99,99,111,109,105,104,89,140,106,104,85,94,99,97,104,100,98,104,99,109,92,110,106,98,99,103,105,103,110,106,85,106,108,101,92,117,93,112,100,78,93,105,104,116,112,109,110,115,107,99,110,114,91,104,103,106,109,94,91,113,101,104,101,96,101,107,104,106,91,113,103,106,106,109,108,109,111,97,101,96,98,94,107,94,118,88,110,93,102,107,110,98,78,111,97,108,97,109,98,101,108,100,87,101,95,85,115,109,103,102,99,114,107,108,103,109,112,103,107,99,88,90,74,88,112,114,98,105,99,95,102,121,98,94,114,104,100,89,107,100,101,96,99,99,106,101,99,89,117,102,101,106,95,110,91,89,106,105,109,104,106,102,108,112,102,110,102,89,100,104,105,102,115,107,108,102,106,99,93,91,100,88,100,95,106,100,99,97,110,99,108,101,99,122,106,100,97,94,119,113,91,102,105,101,104,98,113,109,110,96,95,99,101,105,100,102,100,105,104,94,100,112,92,102,104,99,117,106,109,112,96,106,107,94,129,104,96,106,101,121,105,96,107,115,99,115,104,103,126,97,113,91,110,99,94,101,99,87,111,74,104,103,111,105,97,105,114,94,107,108,106,104,100,108,112,112,98,108,103,102,109,97,97,95,103,104,93,92,101,107,103,106,92,104,111,108,107,104,107,115,110,143,93,88,116,99,95,98,110,91,110,98,114,91,102,101,92,105,117,101,106,98,101,101,101,102,103,104,87,114,103,104,76,110,91,108,100,96,87,102,106,113,108,101,100,96,97,105,102,98,93,87,105,103,103,108,107,104,114,103,97,102,113,113,101,103,105,102,94,104,99,103,102,95,103,95,102,81,91,103,104,103,100,99,102,92,110,103,94,92,99,114,108,101,104,85,101,92,99,98,101,102,100,103,108,92,105,87,93,100,94,91,110,122,81,97,105,106,102,106,102,100,111,99,105,105,101,105,98,101,100,90,86,93,94,106,108,105,105,101,100,82,106,101,105,110,94,97,105,101,103,102,98,101,97,102,98,103,98,91,101,98,92,90,87,99,102,108,108,106,104,101,102,113,101,102,98,95,92,104,95,106,91,113,108,87,109,113,101,80,103,108,101,103,102,83,93,97,97,94,99,99,97,108,92,93, +430.22443,116,91,99,103,86,103,95,85,88,99,81,97,97,100,90,84,96,101,92,96,86,96,95,107,100,101,91,101,105,87,93,92,96,92,103,94,99,103,103,94,90,91,97,89,102,97,98,103,100,87,97,86,120,106,102,80,88,84,98,91,102,99,88,102,97,96,86,90,92,106,107,92,100,102,98,112,97,98,89,99,107,104,98,95,100,73,101,117,96,100,106,108,97,109,102,96,104,98,109,108,91,95,99,104,103,95,90,100,90,102,113,106,108,114,106,101,99,101,99,101,102,98,102,109,97,98,104,86,111,98,109,87,103,105,120,114,97,98,104,102,104,108,94,100,103,87,106,98,85,90,104,102,98,92,92,105,100,106,99,82,102,105,99,111,97,103,100,101,100,95,99,97,106,93,68,101,101,99,108,92,105,110,94,97,93,100,105,102,98,98,100,94,105,108,91,97,98,102,104,95,101,97,96,96,96,98,103,103,99,102,96,105,105,103,95,105,109,101,95,87,95,106,101,103,94,96,104,111,107,84,98,100,108,106,92,102,101,105,115,92,96,110,106,113,107,85,108,97,106,95,103,99,90,103,77,95,97,100,96,103,102,98,105,97,95,106,116,103,101,110,111,101,84,109,100,90,124,96,96,97,92,96,102,97,100,95,100,97,100,95,109,102,121,100,91,105,99,94,100,98,73,115,95,103,97,99,99,102,107,107,97,104,113,102,89,95,111,100,106,114,95,85,94,104,102,96,107,87,104,103,95,93,106,94,101,93,105,112,91,107,99,96,104,122,109,91,101,97,76,99,109,95,107,94,97,110,103,100,93,99,102,95,110,99,95,90,90,113,101,103,102,98,103,104,99,93,97,111,95,111,103,112,88,102,100,98,91,94,103,100,111,90,110,106,84,109,98,105,104,92,109,92,93,98,105,91,92,102,104,103,93,92,96,104,100,105,96,105,112,95,103,96,99,97,102,96,102,100,100,102,103,109,92,100,97,109,93,105,101,95,117,104,91,101,100,95,99,96,90,93,91,96,105,104,100,102,109,92,103,101,102,96,97,111,90,107,101,105,91,104,126,100,93,95,105,99,96,113,106,102,92,104,104,97,107,95,98,98,104,98,107,99,113,99,100,92,106,81,102,106,97,100,95,97,106,103,97,101,99,99,94,106,112,101,95,91,113,101,97,98,111,106,93,94,103,109,103,100,100,109,95,104,102,97,81,104,101,91,104,103,101,98,91,99,109,93,92,91,99,109,91,111,109,95,91,109,119,91,98,95,97,101,101,94,104,106,104,108,98,101,95,131,95,101,65,105,103,102,108,113,104,110,99,101,100,96,82,97,93,93,108,99,113,108,97,103,96,97,113,104,110,102,117,103,103,101,91,113,94,104,101,112,96,108,108,95,97,87,100,101,97,99,101,103,107,101,104,103,73,105,98,101,107,101,105,103,91,93,95,95,116,113,109,83,101,99,89,100,102,107,97,100,94,99,99,105,94,105,98,108,106,101,89,108,87,90,100,83,101,101,107,106,97,95,106,101,97,103,113,88,102,105,108,96,100,101,93,106,95,95,102,100,88,99,92,102,104,101,103,101,102,88,96,94,85,103,98,96,112,94,98,94,109,101,92,100,103,90,97,95,98,98,105,95,96,91,99,92,106,111,99,100,104,101,91,105,100,87,92,99,104,103,106,98,108,100,110,93,105,101,107,93,102,100,95,93,95,107,106,99,95,104,107,107,99,105,97,113,98,93,100,96,100,94,101,97,102,106,95,103,89,94,99,101,98,102,104,77,113,107,73,104,107,109,97,110,99,100,106,97,103,100,104,96,107,93,106,103,92,102,113,92,93,93,109,97,104,99,70,93,96,107,97,109,100,108,109,102,108,104,113,101,97,105,103,104,98,93,123,103,105,95,99,88,100,100,87,100,98,102,104,90,101,75,97,101,99,98,91,104,91,102,107,92,105,86,98,97,110,108,95,101,104,100,95,99,104,89,87,138,110,109,103,106,101,108,106,102,116,103,91,102,103,97,113,98,99,87,92,101,94,102,84,104,89,95,90,94,92,90,104,116,100,102,108,101,101,106,99,100,107,112,113,106,105,107,104,96,94,102,101,97,100,94,98,89,92,109,101,101,113,92,85,108,101,107,114,96,90,89,99,109,94,102,113,106,96,98,121,103,91,105,96,95,97,110,101,93,116,100,96,95,96,94,103,97,105,112,110,89,93,94,68,106,109,109,96,89,102,96,102,94,95,89,108,119,101,106,100,86,95,103,111,96,101,102,116,98,79,95,93,103,105,105,102,108,103,106,103,100,96,96,105,94,105,114,98,102,103,107,95,99,100,98,108,103,103,103,98,98,93,95,103,81,78,96,100,113,96,110,107,110,100,105,106,103,98,91,102,99,102,105,99,100,94,91,92,82,100,78,103,100,95,88,105,89,101,98,95,120,102,101,113,102,78,98,102,104,100,95,109,97,117,97,107,91,108,97,101,125,93,110,108,83,109,99,91,102,110,87,101,104,111,100,99,92,101,103,105,107,107,104,70,102,115,109,109,111,104,90,84,102,100,104,99,87,102,97,102,95,90,106,98,102,88,94,101,109,107,93,109,106,93,106,105,114,102,95,105,106,113,98,109,92,116,110,109,110,103,99,99,100,101,107,105,109,90,89,113,100,112,100,113,104,113,105,106,101,113,97,100,106,109,98,94,106,105,136,106,96,110,108,104,89,104,108,101,118,97,103,106,96,93,102,101,108,108,110,88,97,108,109,104,95,86,113,95,102,102,106,108,106,90,109,103,101,102,116,99,118,90,111,96,102,99,118,92,102,106,101,105,101,104,108,107,106,107,102,102,117,132,114,94,104,120,87,112,110,100,107,102,106,101,101,96,95,103,83,104,116,106,109,105,102,95,104,105,112,109,113,108,107,97,105,93,88,114,80,109,116,92,97,101,104,104,99,99,90,104,106,95,96,105,84,102,100,109,109,105,107,77,91,113,117,111,100,105,103,98,93,104,111,91,104,103,109,104,104,94,99,99,105,101,106,105,109,106,113,104,99,94,96,96,102,94,101,113,100,113,104,110,99,107,96,101,106,101,100,103,87,110,89,91,100,114,118,108,101,96,99,91,105,106,107,98,98,109,111,115,94,95,97,121,105,104,116,92,106,108,113,113,106,95,104,96,94,82,112,98,108,93,104,110,107,97,98,96,106,94,108,108,119,99,111,107,97,110,110,110,108,112,117,109,105,95,108,92,107,96,101,109,91,113,94,103,106,104,116,109,94,108,96,99,106,106,99,103,104,97,94,101,102,104,130,109,115,99,93,100,101,94,106,111,95,103,108,105,106,107,88,100,115,99,102,107,94,97,95,100,94,107,105,102,107,105,101,107,100,112,100,94,95,108,105,101,102,106,96,121,100,84,102,100,99,88,99,102,103,95,116,110,100,108,95,96,115,99,99,109,108,117,105,101,107,99,108,105,95,102,89,94,90,104,109,109,107,103,102,109,107,124,112,95,114,104,103,111,103,109,100,98,104,89,105,98,109,103,101,115,112,106,103,82,108,100,102,103,96,105,102,116,115,90,114,105,76,90,102,103,97,106,98,109,106,106,100,100,99,106,108,98,108,105,110,113,92,107,119,104,97,105,99,89,106,103,109,103,113,105,96,106,108,105,110,101,94,102,75,105,111,101,111,105,112,98,100,124,80,100,95,101,96,102,98,104,112,106,107,105,100,100,92,100,95,107,107,109,97,99,111,114,99,105,105,99,100,109,108,110,107,103,113,101,112,95,107,96,108,97,95,86,107,106,91,109,102,105,107,96,111,97,106,100,92,97,106,106,115,113,95,113,107,92,104,96,102,108,98,102,97,102,93,104,94,108,102,114,100,99,99,105,99,105,102,118,113,104,96,102,97,103,103,109,107,104,102,102,105,89,102,103,127,93,116,103,106,91,104,104,106,101,99,94,110,103,91,103,108,105,111,97,116,96,103,98,100,100,109,108,120,107,102,102,96,96,100,113,96,105,100,110,106,102,97,107,108,100,105,94,102,106,97,109,107,89,108,114,103,108,98,106,111,106,104,103,119,101,98,96,112,108,95,108,96,98,110,113,98,107,112,100,98,98,108,94,99,102,110,99,102,90,97,102,96,108,98,113,91,106,106,109,110,112,104,109,101,99,96,113,89,112,102,102,98,110,102,103,95,103,86,103,102,83,101,105,91,102,109,96,98,99,105,107,109,97,95,79,111,94,105,109,105,116,114,103,107,103,103,102,103,111,102,112,112,95,104,102,104,95,113,104,98,112,104,107,110,106,115,100,101,109,111,103,109,109,102,118,83,107,122,112,103,106,102,94,109,98,110,98,106,105,108,97,98,92,103,111,112,99,104,105,92,106,107,104,95,95,121,91,73,116,103,95,91,110,110,106,89,99,104,110,110,105,106,112,101,108,110,106,109,98,114,100,108,98,101,108,94,120,106,107,110,91,103,88,97,110,106,98,93,87,106,97,125,97,113,110,109,113,97,98,109,100,101,100,100,108,97,100,109,104,109,108,102,88,92,101,100,87,102,93,97,89,101,91,109,107,104,95,102,113,107,71,102,103,108,104,103,100,102,106,105,109,86,99,96,108,101,100,104,111,109,115,107,107,108,119,96,105,110,104,101,100,95,101,106,106,100,103,96,91,103,105,96,106,124,100,99,97,73,95,110,83,111,93,103,109,92,86,99,105,100,91,99,107,98,102,116,105,111,95,113,89,101,100,96,99,92,96,102,119,100,105,103,109,83,91,110,105,105,111,102,112,99,102,91,103,102,99,94,109,99,89,108,112,109,87,109,109,79,100,104,101,104,106,93,115,105,73,97,104,105,87,92,108,98,116,115,97,89, +430.36472,105,85,93,95,96,98,95,100,101,85,107,101,91,102,102,112,97,102,110,104,115,96,97,107,110,98,98,97,98,103,107,108,81,95,102,103,100,89,102,89,101,94,117,100,98,107,106,96,106,107,98,108,98,108,107,96,104,93,104,105,96,102,98,102,102,110,98,99,100,89,122,88,104,113,91,111,109,99,96,95,96,101,90,102,103,87,109,102,105,104,105,101,107,101,97,105,103,95,89,101,91,102,104,98,99,96,107,113,95,113,106,109,125,88,102,96,92,93,95,112,73,91,100,101,86,101,108,90,96,113,112,101,106,96,103,99,101,104,103,99,88,102,105,99,87,104,105,100,108,92,101,116,104,105,100,115,113,102,109,101,93,106,98,109,101,100,121,98,112,100,98,96,110,100,61,107,96,94,98,100,91,103,96,106,113,99,94,105,101,96,93,105,113,103,101,109,96,104,92,99,103,104,102,102,92,107,118,117,108,102,95,103,99,115,98,114,119,98,93,103,108,106,108,98,101,96,106,100,98,96,105,99,99,81,99,78,97,106,107,97,108,105,90,102,98,98,95,112,113,100,104,103,94,105,98,104,104,97,93,108,94,99,102,103,105,103,97,106,113,95,113,103,90,92,102,98,91,102,100,107,111,101,98,97,102,86,86,83,100,100,113,100,110,108,101,104,104,103,103,108,99,105,99,98,73,99,109,103,96,104,86,109,113,108,110,107,100,88,102,108,98,110,112,112,99,98,104,93,104,111,96,101,101,105,101,104,85,98,82,112,110,109,106,98,104,112,95,112,106,104,109,111,106,102,97,99,109,108,104,102,103,103,91,90,101,95,111,96,101,110,109,103,80,98,108,92,116,110,92,102,107,91,100,101,100,94,69,107,100,94,104,87,99,119,111,105,103,104,105,113,108,105,110,97,103,97,94,109,106,107,99,90,112,113,108,99,97,99,113,109,124,99,98,105,116,105,104,106,103,106,95,105,95,110,102,106,99,119,101,96,110,112,97,105,114,95,88,105,106,112,96,104,107,86,94,100,110,97,70,112,102,102,103,95,102,106,99,103,94,72,104,113,95,104,102,99,92,106,101,106,105,104,107,106,101,108,110,103,105,93,112,104,107,107,103,96,92,100,108,104,98,87,108,98,115,104,96,110,99,108,99,93,107,110,110,100,95,95,87,100,108,103,102,96,106,97,112,95,107,83,98,101,97,94,100,110,92,88,104,113,114,102,90,100,83,104,105,107,100,105,104,112,106,103,103,103,109,101,102,100,102,103,97,108,98,111,99,110,101,98,101,104,98,70,106,101,105,99,100,108,114,107,103,95,104,106,102,106,82,108,100,107,105,97,109,121,70,96,103,98,106,105,97,103,99,102,94,97,113,102,98,103,110,104,102,104,88,102,110,82,103,101,104,112,92,102,100,107,125,103,107,108,105,101,90,112,106,100,73,115,99,104,107,114,109,108,102,97,99,111,97,102,101,103,136,114,109,112,112,98,113,97,98,95,96,95,100,106,103,101,109,125,106,98,101,101,121,120,78,96,109,104,110,103,99,117,89,105,115,109,101,100,104,112,100,103,108,107,96,99,113,94,117,102,103,103,94,103,99,109,99,95,113,101,99,102,106,110,109,93,106,98,101,103,97,105,98,97,115,118,105,108,91,102,94,107,107,90,114,97,103,92,88,93,94,100,108,102,101,107,100,98,105,103,95,104,104,105,110,104,97,103,108,91,96,91,98,104,104,106,96,112,117,102,99,111,96,106,109,97,100,105,105,115,113,105,116,112,105,104,109,100,98,101,109,110,98,103,104,106,98,102,92,98,104,100,102,118,98,101,122,76,96,96,113,94,101,114,89,102,96,104,98,108,85,106,95,106,110,105,105,97,109,89,99,106,104,109,106,99,82,113,95,92,105,102,107,102,106,108,109,109,98,114,101,99,103,123,95,97,65,109,117,111,91,92,90,95,103,108,119,108,117,95,96,103,110,111,119,103,96,94,113,105,101,103,102,107,80,107,106,88,98,114,101,101,109,99,100,111,102,109,106,101,108,108,106,108,109,104,111,99,100,112,104,95,101,110,119,109,98,110,114,105,104,94,103,111,109,101,104,107,108,108,105,98,98,90,102,114,112,130,81,88,112,108,104,101,94,108,105,107,109,89,119,103,116,108,111,100,99,101,100,96,113,87,90,90,99,101,104,102,97,93,99,115,107,100,94,102,102,100,96,96,94,84,93,100,92,98,98,102,110,99,96,94,106,99,82,86,95,95,103,94,106,107,107,114,101,106,95,133,108,104,93,108,109,101,100,87,107,114,107,78,99,107,101,91,105,104,95,102,109,93,109,88,95,107,113,90,108,102,105,108,96,99,101,95,105,93,98,112,95,105,104,100,97,92,96,101,91,99,112,107,95,108,96,102,103,110,82,116,106,98,102,96,95,101,87,100,98,107,98,99,99,94,104,116,97,109,108,101,117,88,97,98,95,104,81,106,105,101,110,101,114,109,104,105,120,121,103,90,93,96,106,112,94,111,106,90,99,102,107,108,95,92,109,106,105,99,97,111,102,101,107,99,99,101,100,103,103,93,89,105,97,84,110,93,122,101,104,95,107,105,101,90,103,117,101,109,88,87,109,85,95,100,94,112,103,100,98,106,99,99,103,90,106,95,103,99,98,106,96,100,116,97,103,98,97,102,87,112,106,113,92,103,103,82,106,96,101,106,111,100,105,92,111,87,111,105,105,108,100,94,91,120,108,117,97,107,103,110,104,101,103,110,99,107,99,103,105,113,101,111,96,102,100,99,122,107,99,115,112,99,102,99,98,108,90,92,90,110,109,107,95,100,90,105,93,106,108,94,98,110,107,100,98,105,106,103,98,104,105,105,121,104,97,98,112,106,102,78,87,107,97,98,100,91,106,94,104,106,102,93,99,94,99,102,115,97,106,105,81,98,109,94,92,110,104,111,95,105,93,113,106,114,104,97,96,99,97,110,97,108,111,96,96,111,106,105,104,95,95,104,113,113,102,99,98,104,111,104,105,114,100,94,106,116,106,93,103,107,100,108,104,98,90,90,98,100,110,109,101,115,101,99,100,96,106,97,72,109,104,101,109,100,92,107,104,97,104,103,94,101,94,101,91,102,87,110,92,113,97,101,103,112,102,102,102,111,114,91,93,102,106,108,106,102,94,108,98,95,113,105,106,101,104,92,107,114,104,122,97,100,103,105,104,89,99,91,105,112,124,101,107,110,113,110,105,104,93,97,101,100,103,108,102,103,102,100,106,95,111,76,109,102,105,104,93,108,103,104,136,92,112,86,113,102,107,109,96,105,108,98,95,105,98,106,109,104,101,106,107,109,102,98,104,87,106,100,111,106,108,109,94,101,106,108,113,93,102,98,98,104,111,99,104,96,111,99,107,93,107,102,106,103,114,105,105,96,108,97,102,94,113,100,101,100,98,92,103,99,94,98,98,102,119,97,105,102,102,104,80,85,116,99,110,103,102,90,103,107,101,102,96,109,100,108,105,103,94,106,101,92,104,105,102,100,109,95,96,96,105,120,101,103,111,85,106,93,105,91,96,105,98,93,91,98,100,91,90,102,96,107,98,93,105,95,107,103,109,97,106,117,93,95,102,113,105,104,108,96,101,114,100,102,111,115,108,98,101,105,104,104,105,94,96,99,102,89,99,90,103,100,93,102,111,102,99,105,91,99,107,98,109,98,105,110,108,112,87,104,95,94,102,106,113,105,88,109,118,99,111,95,98,77,112,84,90,102,101,112,102,100,112,99,105,101,99,128,106,98,115,102,100,112,94,118,105,105,100,108,101,99,107,100,120,98,104,71,109,106,117,94,96,105,94,94,114,101,106,96,108,91,103,103,112,100,99,102,97,99,110,104,92,100,109,105,114,99,86,99,116,97,107,100,95,101,110,99,101,102,93,99,98,106,105,106,105,113,111,97,88,95,100,87,102,107,102,94,95,103,105,100,106,98,91,110,107,108,102,94,104,94,110,94,106,98,101,109,117,108,100,112,98,105,76,104,111,89,112,109,101,90,101,108,109,106,95,101,102,99,96,108,123,105,104,102,100,105,104,106,85,100,108,109,94,98,99,98,102,96,95,110,102,103,95,103,104,118,96,108,100,100,95,97,99,97,97,98,91,106,110,94,112,105,98,114,104,109,99,105,112,101,103,94,99,102,103,106,112,111,105,102,102,101,103,110,108,103,67,102,103,98,113,76,87,84,100,108,106,100,111,106,95,99,106,93,87,101,99,91,97,99,108,98,90,96,96,117,105,98,104,98,116,98,101,102,96,102,101,102,103,100,105,97,103,99,104,102,96,104,106,121,107,103,107,102,109,89,100,121,101,104,104,97,107,98,96,108,94,103,101,101,98,104,110,99,109,85,90,94,99,89,101,106,92,107,97,80,109,105,100,103,109,101,95,102,96,99,110,110,107,105,112,95,101,106,90,95,97,101,99,100,104,112,108,104,103,91,95,107,91,95,92,106,109,106,102,101,111,106,91,97,99,103,96,99,108,97,91,103,113,101,94,98,100,98,118,100,98,96,105,105,100,109,97,90,103,104,97,112,103,112,108,102,113,104,102,111,107,108,90,93,106,97,103,97,89,110,98,96,112,121,113,86,96,98,87,95,92,96,104,99,108,103,115,116,94,108,103,117,89,98,101,96,98,84,102,106,104,120,112,97,101,96,103,106,112,105,109,104,90,100,94,96,95,100,112,99,103,109,109,105,97,102,106,92,93,90,100,101,101,105,100,97,97,106,109,117,79,101,94,109,91,86,92,80,94,100,95,101,92,105,88,102,93,96,102,96,103,86,105,110,91,116,104,97,98,96,99,92,91,97,95,94,80,103,77,102, +430.505,96,110,103,100,94,107,111,101,83,103,108,93,106,98,107,108,96,96,110,103,91,106,107,89,103,90,99,87,103,106,111,95,96,103,100,86,107,91,97,102,103,109,94,100,89,114,94,106,80,97,100,117,108,109,101,108,105,90,99,96,107,102,102,105,83,100,75,101,98,93,102,103,111,96,99,101,97,96,103,101,93,104,95,96,101,97,97,106,107,113,94,99,101,104,102,91,126,104,92,90,91,104,97,104,105,108,90,103,86,104,88,95,102,95,100,107,100,90,102,98,99,58,92,104,98,103,108,91,113,108,89,112,105,133,99,90,100,88,109,100,94,100,90,93,95,105,104,92,87,109,97,87,110,105,95,103,107,113,100,109,121,91,107,99,94,91,97,118,109,100,88,110,94,99,110,95,98,98,95,105,105,103,96,113,105,103,110,98,117,110,83,104,112,99,99,98,106,107,102,113,104,108,105,107,97,112,102,106,105,95,93,103,106,102,105,101,102,96,96,100,105,108,93,107,104,100,109,100,106,102,112,105,104,100,109,99,114,104,102,101,101,98,114,101,101,92,100,109,103,99,113,95,99,98,102,104,89,100,95,108,100,96,101,101,109,98,99,98,98,104,96,104,109,100,106,99,105,101,99,103,99,102,97,108,105,96,94,109,100,105,105,97,98,106,101,109,107,97,105,107,98,92,104,108,90,106,90,106,113,122,104,110,113,105,101,109,97,95,104,94,107,99,109,112,114,102,96,106,111,111,96,99,103,95,102,100,113,106,96,117,110,97,95,97,95,105,99,122,97,110,111,105,117,98,110,107,102,107,114,107,106,94,97,95,99,101,101,117,104,103,108,121,105,107,108,105,99,106,114,101,100,105,95,104,94,93,80,97,107,92,104,101,87,96,113,103,96,103,112,104,102,99,96,91,110,93,102,86,110,93,95,100,105,104,105,93,103,97,95,93,97,106,102,90,97,109,113,103,84,107,96,99,100,103,98,103,106,102,113,111,96,109,105,98,93,95,106,96,96,99,104,88,107,101,92,89,109,102,122,112,102,104,95,106,100,101,96,102,107,95,95,95,97,102,77,101,92,110,90,90,109,105,103,96,117,101,112,104,105,96,105,113,91,106,89,103,91,102,113,92,103,127,102,101,100,99,97,99,106,98,87,109,93,104,95,112,96,101,102,103,107,105,111,106,101,78,111,105,104,128,103,96,109,71,103,89,102,95,106,107,101,117,99,94,119,98,102,107,109,68,101,110,105,109,100,102,104,111,96,93,101,105,109,105,94,104,103,103,102,100,92,105,96,109,94,100,100,105,98,96,106,106,106,104,102,109,106,103,99,99,101,101,98,107,105,104,98,110,109,96,79,105,112,101,107,101,90,103,91,102,98,91,107,105,97,108,83,86,103,108,118,113,106,107,105,98,105,94,99,102,104,113,100,111,100,107,100,104,104,99,101,108,106,107,95,87,96,110,104,100,107,105,112,110,97,98,102,103,105,106,114,113,98,99,100,105,90,102,108,105,85,100,97,102,96,88,104,114,105,113,110,99,101,102,94,117,84,107,98,95,103,110,95,114,103,105,105,117,114,100,106,94,110,100,100,109,106,101,106,104,95,95,90,105,95,92,92,107,94,101,106,98,102,113,93,105,106,101,104,91,103,86,86,98,103,107,91,104,87,101,106,102,99,107,92,99,115,107,96,110,103,97,114,95,97,100,99,102,106,97,95,101,82,112,104,95,100,99,101,109,101,105,98,103,96,102,105,100,98,106,105,99,105,124,94,110,110,103,112,98,116,101,110,103,103,108,103,106,111,108,99,100,97,109,108,102,81,99,104,110,111,106,90,106,101,116,115,112,101,103,106,110,97,96,117,107,109,106,110,104,103,109,108,96,87,109,95,100,97,119,104,105,96,107,96,104,109,95,129,94,97,102,107,91,91,117,98,113,110,96,95,105,108,113,107,106,90,100,104,94,101,106,107,98,88,95,115,89,105,106,90,101,109,96,103,95,105,111,96,99,98,112,107,102,105,94,92,108,110,95,109,99,92,104,108,107,100,108,99,101,113,110,109,105,109,81,100,97,98,96,104,102,104,103,91,94,106,106,106,106,101,113,113,113,105,97,97,106,102,107,99,105,103,109,100,101,91,99,95,109,96,103,99,101,100,104,100,105,96,99,108,114,105,100,106,100,93,96,110,98,105,108,100,98,98,107,102,105,101,103,96,102,106,99,100,91,102,104,94,100,105,111,107,95,101,102,113,100,86,101,110,95,104,110,108,111,109,107,93,98,99,96,101,79,91,102,93,97,97,102,96,119,109,80,100,92,101,103,100,94,95,96,97,96,101,96,104,99,109,98,89,111,99,101,97,97,102,99,106,106,95,99,107,91,97,101,88,83,104,100,97,114,111,105,100,97,91,100,109,97,90,111,92,94,110,99,97,102,92,96,101,108,96,103,102,99,98,96,100,120,109,108,100,79,100,104,101,101,103,119,103,102,100,98,100,108,97,89,97,100,111,114,109,99,98,101,82,119,102,112,111,100,95,93,105,117,96,111,111,111,92,113,100,98,96,103,109,106,104,92,102,105,106,106,109,87,106,97,104,104,84,104,111,106,94,97,93,103,97,106,102,103,110,107,117,98,114,99,110,109,96,104,113,111,95,108,127,104,111,99,104,101,96,108,101,96,100,89,102,113,85,102,110,92,100,100,93,100,101,104,98,105,105,106,102,109,98,102,103,120,104,109,94,113,75,106,97,102,95,104,107,96,102,94,109,98,102,98,71,111,101,108,106,95,100,92,100,88,106,99,106,106,99,98,94,100,110,121,102,101,96,108,113,103,105,99,108,112,107,98,99,109,100,99,109,95,96,106,103,73,106,112,98,112,107,104,95,99,97,107,128,112,108,112,106,112,106,117,98,100,103,106,82,93,102,112,107,106,104,109,111,101,96,101,108,104,109,103,109,102,107,103,109,73,101,116,95,122,103,96,89,102,106,107,99,114,100,99,102,94,104,101,130,115,102,105,112,88,101,95,97,91,104,107,116,96,102,99,107,112,113,95,101,109,97,106,99,108,102,93,101,109,98,106,102,98,101,108,107,123,97,101,113,112,104,110,101,113,101,103,94,92,102,113,102,109,113,116,106,100,109,99,110,108,100,113,103,103,104,101,106,105,95,91,88,96,94,106,105,107,106,99,101,110,104,90,106,109,105,99,110,108,101,94,95,104,101,100,107,105,108,125,100,116,113,95,101,106,101,101,96,95,98,98,114,100,98,105,102,94,109,97,100,103,97,106,118,95,102,117,103,105,100,101,113,90,106,102,97,101,97,112,102,91,97,100,110,102,105,97,89,95,98,104,112,99,101,109,99,105,101,102,102,110,105,101,104,103,108,112,94,99,107,104,97,99,102,106,95,107,73,93,102,94,88,107,104,105,109,109,105,101,89,106,105,99,103,104,105,117,96,90,108,103,102,93,98,104,108,105,108,94,108,94,96,107,102,101,97,93,92,108,83,109,104,99,104,98,95,92,93,117,104,113,104,117,101,75,88,114,97,105,87,103,106,94,97,104,102,91,102,101,100,107,101,108,95,105,105,103,83,98,113,104,111,116,100,109,109,100,102,102,94,102,85,107,100,103,100,89,107,86,100,105,93,109,95,105,101,109,100,110,109,103,99,103,104,100,100,80,95,77,104,99,102,106,103,107,102,100,112,100,90,100,96,64,103,96,114,105,107,102,98,89,93,100,109,110,94,108,96,88,113,101,99,107,91,101,109,96,106,99,95,107,101,95,95,100,94,101,102,102,107,102,104,99,100,83,95,104,100,114,108,101,112,107,115,108,110,116,101,102,111,104,112,101,102,103,82,99,124,87,105,103,111,107,86,100,95,100,98,105,109,79,100,98,102,97,106,113,108,101,106,112,100,105,105,100,105,123,112,104,94,94,100,97,106,94,105,109,110,108,113,100,105,101,101,97,96,104,103,99,101,106,99,98,104,112,108,100,106,119,112,106,102,92,102,109,99,102,106,107,98,105,112,108,92,102,99,106,96,100,101,96,108,109,120,96,99,102,112,100,103,106,106,106,102,105,96,101,113,102,112,105,94,110,110,99,99,102,112,95,88,84,103,105,88,101,112,105,103,103,93,114,109,94,107,91,101,90,99,102,92,109,102,104,91,95,101,107,109,107,109,101,112,103,76,103,94,110,111,87,99,101,96,105,106,107,99,94,101,93,112,106,97,101,101,93,99,91,96,103,95,106,94,98,106,98,105,112,96,106,116,105,108,104,112,95,104,117,102,107,107,109,106,107,97,108,103,109,98,79,120,107,115,114,111,94,112,104,93,107,104,100,101,94,92,101,94,103,104,109,104,105,86,95,106,100,96,104,116,84,104,100,100,110,99,125,99,105,125,110,96,93,101,94,98,97,124,109,98,105,95,97,98,97,105,112,75,88,109,110,100,101,84,118,99,97,95,113,83,104,104,119,103,72,89,102,99,111,84,73,84,104,106,106,102,106,102,89,108,100,99,97,99,106,106,109,94,101,102,116,110,90,94,100,105,96,99,106,102,99,104,101,113,101,108,88,101,106,102,95,106,108,101,108,98,101,87,107,108,108,100,93,99,99,95,108,109,105,82,99,99,98,102,89,107,95,93,107,98,90,101,101,99,105,104,112,98,97,94,120,94,104,104,106,108,107,97,93,102,103,87,98,95,90,98,91,102,108,98,104,106,112,99,107,99,112,92,117,107,112,106,105,94,105,104,101,104,97,98,94,109,89,103,98,98,104,101,106,115,108,103,89,117,82,109,101,89,112,109,108,105,101,84,104,98,109,103,99,120,101,106,101,100,101,105,105,92,100,90,104,106,118,102,75,92,74,107,105, +430.64529,100,101,79,88,125,93,109,82,115,107,100,99,104,98,99,103,96,102,110,82,111,105,107,112,97,98,105,108,103,100,104,103,96,91,117,107,102,104,101,101,92,105,92,102,115,104,102,98,102,100,110,94,110,86,108,93,94,88,106,96,98,95,98,93,107,93,103,109,105,96,125,110,102,93,104,100,89,96,98,108,90,89,101,102,113,100,100,98,113,98,100,92,101,101,96,103,96,104,97,96,100,102,102,94,97,101,107,87,108,107,102,96,108,102,98,102,91,113,104,111,68,101,107,97,110,100,99,95,102,100,110,113,101,102,105,91,96,109,105,103,105,102,97,136,101,93,100,99,106,98,92,102,111,104,98,89,113,107,105,99,108,95,95,107,89,110,96,106,106,103,107,107,102,90,104,105,101,94,77,90,97,105,93,95,99,93,114,101,99,93,95,93,104,101,107,85,95,103,103,112,100,99,93,109,106,108,91,104,102,99,112,112,108,99,105,105,105,114,97,104,106,102,118,99,109,101,95,113,126,101,88,109,104,108,100,107,96,107,95,107,98,101,114,105,99,98,99,99,95,102,98,100,91,101,102,103,102,108,92,103,94,108,101,100,80,105,107,102,116,92,93,104,109,101,110,111,84,109,94,108,104,113,117,101,107,90,98,97,93,107,107,111,97,103,81,98,106,105,112,90,104,105,107,118,105,96,104,84,98,99,98,101,96,98,107,88,90,95,94,101,95,97,114,107,104,94,91,101,94,104,101,104,95,100,100,102,95,106,86,110,94,88,99,85,94,97,109,109,99,95,99,100,101,98,97,88,117,118,95,95,99,99,96,109,100,96,101,102,100,110,104,105,114,95,95,90,98,98,83,106,104,120,106,109,95,94,109,100,102,106,107,100,93,109,108,99,124,102,100,113,95,100,106,127,103,96,98,93,94,101,97,95,98,97,94,109,100,117,96,100,98,87,102,112,106,95,94,102,88,66,111,99,84,103,106,93,104,91,99,98,106,102,108,96,97,95,99,92,102,110,95,99,101,101,114,94,105,96,106,102,93,98,96,96,102,99,103,96,107,106,94,108,100,101,111,96,91,94,105,102,95,94,100,106,92,90,105,97,116,88,90,99,104,95,100,106,90,94,82,95,101,88,109,95,108,86,101,105,92,99,113,95,105,102,97,113,109,101,100,87,66,100,99,91,101,97,110,101,96,101,95,104,102,105,102,109,103,98,93,103,107,113,87,95,101,93,108,93,110,95,93,115,102,91,99,111,92,99,102,102,94,100,108,94,106,92,117,74,88,106,88,102,110,95,90,104,113,97,109,125,101,83,107,103,87,103,99,121,103,98,102,104,97,100,99,109,115,105,105,90,99,96,101,97,89,103,90,96,104,102,102,92,107,102,109,101,99,98,99,102,99,115,99,114,94,102,86,101,96,91,99,90,76,107,102,94,87,81,112,113,88,101,104,105,96,102,106,101,91,103,119,97,101,99,98,106,88,98,102,106,93,105,94,104,95,101,101,102,96,100,95,100,90,102,125,104,105,101,105,110,108,98,109,103,92,91,100,103,116,100,105,109,93,107,106,108,107,80,101,88,105,94,112,94,104,100,98,92,103,105,101,96,112,87,101,110,102,95,100,88,98,98,101,99,91,99,94,95,104,105,111,105,88,102,105,68,108,110,109,100,109,103,110,95,90,90,94,113,100,96,98,103,104,104,93,105,94,88,98,82,91,121,93,103,101,113,98,94,106,101,94,86,100,81,95,95,94,101,96,104,102,108,109,100,100,103,99,107,95,104,108,106,114,96,89,102,103,103,106,123,99,82,94,99,101,99,102,109,90,104,105,107,109,105,107,98,103,106,108,95,95,101,89,99,89,103,109,98,114,105,132,91,100,92,100,91,94,109,99,121,97,96,99,98,101,94,81,105,97,99,95,92,93,91,91,105,100,99,96,105,111,116,101,87,92,99,98,104,100,107,93,99,107,103,97,100,95,100,105,107,103,95,103,85,104,108,103,112,103,100,106,99,101,106,104,96,117,112,93,121,95,115,102,109,101,106,102,99,104,94,104,100,106,106,103,93,93,113,104,109,102,106,130,103,94,118,95,108,96,112,110,107,94,102,95,93,99,98,78,99,110,109,103,98,99,113,90,95,107,110,96,96,104,103,100,92,109,102,87,102,104,116,102,103,100,91,91,102,95,112,106,106,87,96,96,96,99,106,67,95,98,111,109,94,86,106,92,97,107,94,90,105,95,93,98,105,102,99,94,107,92,97,92,86,98,108,96,97,83,97,88,101,98,98,96,91,100,87,102,104,116,105,96,83,108,103,104,109,88,103,96,94,92,88,79,87,95,93,103,98,102,107,99,98,103,109,104,105,105,104,99,102,105,99,94,106,93,90,110,89,100,96,94,93,103,106,102,98,113,101,95,106,94,90,102,98,100,92,100,91,106,100,94,105,104,109,87,103,111,108,98,92,90,93,100,90,91,103,98,117,104,97,102,97,107,82,94,100,111,113,104,108,99,110,102,106,102,104,87,91,104,98,105,110,101,101,109,106,107,111,91,120,105,103,105,108,101,107,109,88,108,97,99,104,100,102,111,104,104,96,110,95,104,108,93,97,109,98,93,104,108,88,101,95,112,101,97,91,102,99,102,102,108,81,100,93,115,96,112,101,106,109,89,82,99,100,101,103,104,99,107,107,103,94,105,89,100,81,109,89,112,106,98,101,97,114,113,91,93,104,92,95,97,117,100,112,95,114,100,94,115,90,95,109,100,102,96,112,104,100,108,101,103,94,103,99,113,99,122,81,108,105,102,100,105,103,103,110,98,109,105,110,109,105,110,102,104,107,91,110,106,101,98,100,100,110,113,123,107,108,110,107,109,103,105,105,96,90,111,111,105,123,102,101,104,114,105,107,94,106,103,106,101,103,81,98,111,99,105,99,96,89,106,105,108,102,102,111,80,105,107,108,99,74,95,104,109,95,90,108,104,102,103,95,116,105,90,106,102,81,106,97,101,95,112,109,95,111,117,98,98,107,111,104,90,87,106,96,111,100,107,104,98,110,95,97,101,110,102,94,115,101,111,89,104,96,113,105,105,107,105,97,102,108,97,113,124,96,106,103,94,97,85,105,98,97,104,98,107,99,90,105,103,108,105,110,109,99,105,112,108,99,104,98,109,107,98,102,102,110,98,108,93,119,113,96,102,98,100,100,101,111,93,109,96,104,98,83,111,118,108,108,100,105,103,98,101,102,96,99,107,104,109,99,92,102,95,107,102,103,95,107,101,96,93,103,108,102,92,102,96,94,109,105,107,109,96,102,109,97,102,101,92,101,96,104,90,107,109,109,105,95,101,108,98,83,102,108,106,106,98,96,106,101,104,99,98,109,104,96,101,95,110,95,101,101,105,105,105,107,100,104,113,79,99,97,117,97,113,97,121,108,98,101,112,86,96,97,98,101,96,112,102,86,105,114,101,99,111,101,107,109,101,84,111,105,102,96,106,101,96,105,105,102,106,104,109,110,104,105,103,106,104,105,109,107,91,106,109,101,109,98,97,108,103,108,102,100,87,100,100,99,97,112,113,96,106,106,98,108,89,102,102,105,109,112,104,101,104,100,97,103,95,98,100,115,113,97,96,111,106,86,96,100,105,99,109,102,91,99,120,112,99,107,97,101,101,96,111,107,111,98,109,110,119,117,86,110,103,92,95,108,100,98,106,75,108,99,99,98,96,113,111,87,101,95,109,97,101,104,102,93,113,108,91,83,99,94,109,102,104,75,95,125,103,111,100,100,96,115,102,87,117,126,105,95,106,110,116,109,97,95,105,111,101,102,99,95,95,93,92,99,124,98,102,97,110,105,96,100,102,113,94,100,103,104,103,99,107,117,108,86,107,107,93,101,100,105,103,91,104,92,115,100,104,113,120,96,102,99,97,121,102,97,102,106,104,102,96,113,109,96,97,104,98,108,105,113,105,102,107,104,109,99,102,94,88,99,105,95,102,102,95,90,98,98,109,94,99,96,109,103,99,91,102,111,108,106,120,99,99,104,103,98,115,106,100,103,108,101,122,99,113,106,109,104,95,109,101,108,106,102,100,106,96,112,101,93,97,103,99,102,92,94,106,108,104,105,102,103,101,106,98,101,97,92,101,100,104,102,103,107,109,93,103,108,106,91,99,108,96,123,99,104,97,101,103,105,107,94,99,101,108,102,106,100,96,107,118,104,105,113,104,102,92,100,99,98,94,109,98,98,113,102,119,114,95,95,92,100,107,103,104,100,92,97,98,120,113,105,108,94,117,105,108,110,104,106,105,102,104,94,105,102,109,88,119,97,106,98,105,99,110,109,134,104,104,109,93,106,94,94,84,110,105,99,116,106,106,99,97,97,104,108,101,106,100,103,100,95,105,90,97,99,104,95,97,97,100,101,93,108,109,103,96,92,107,101,109,103,98,90,97,97,110,91,100,95,93,96,104,100,96,109,106,103,106,109,127,103,104,96,108,100,102,102,113,99,113,105,100,98,104,99,93,97,101,81,103,114,92,70,100,105,114,109,99,94,107,94,99,102,96,103,95,101,108,110,97,113,103,95,96,107,102,98,104,114,99,104,97,102,82,92,110,97,112,103,110,104,87,98,96,113,93,89,102,103,99,65,100,86,90,108,91,100,108,89,125,99,94,113,92,114,104,113,107,85,95,98,95,99,104,97,109,109,109,113,106,97,105,97,110,101,108,110,107,109,111,104,97,93,104,104,97,99,114,86,96,109,106,97,107,103,98,99,107,95,101,102,113,96,102,89,95,109,87,81,95,113,96,105,101,97,101,95,91,94,99,98,97,113,107,107,103,88,98,91,97,94,115,112,99,81,65,101,100,105,107,110, +430.78558,96,96,91,109,95,106,76,103,108,101,97,105,106,106,92,113,92,104,103,107,105,101,101,91,105,100,112,93,107,99,106,107,96,93,115,102,107,102,108,100,96,98,101,98,93,114,102,95,97,109,104,118,98,101,96,100,93,103,87,96,101,102,105,96,88,82,102,102,106,90,110,101,87,99,90,106,105,108,110,95,106,102,105,103,100,78,95,109,110,110,83,98,80,104,113,105,97,104,91,101,95,102,99,95,109,90,97,104,121,105,98,103,116,92,106,103,96,99,99,109,109,104,105,103,109,102,116,97,108,95,109,100,93,95,106,94,93,96,103,117,93,100,106,101,97,94,115,97,99,103,104,104,106,97,99,120,91,95,87,106,105,100,103,99,115,106,111,98,103,93,112,98,100,99,98,98,99,97,96,106,99,115,91,104,108,103,105,96,131,92,89,95,97,103,101,103,104,105,98,96,114,104,100,105,98,107,94,101,112,124,97,112,103,97,101,113,102,101,93,96,115,103,103,108,93,106,116,96,106,87,118,99,96,106,104,102,95,93,95,112,101,100,103,96,104,105,91,119,96,87,108,98,107,101,107,95,92,103,93,100,85,102,112,106,99,102,101,126,97,97,95,108,94,102,102,104,98,103,96,95,97,105,98,96,100,105,97,98,102,94,96,109,106,104,113,104,105,112,94,110,109,96,95,102,106,110,110,83,93,93,99,98,100,104,102,112,94,102,106,104,105,108,109,97,105,99,102,91,105,103,105,97,107,106,110,102,105,92,101,98,100,87,104,88,96,102,115,99,109,99,112,103,105,109,97,109,116,104,96,102,92,103,108,117,104,99,103,105,99,110,100,107,108,102,106,95,102,98,101,107,100,91,106,95,107,94,98,102,95,93,104,91,93,99,94,96,109,107,101,103,99,97,95,107,104,87,93,101,104,106,91,98,117,102,101,99,97,96,97,96,99,101,96,109,100,98,110,112,95,110,101,103,105,101,98,112,103,97,100,105,101,105,105,113,96,98,106,95,108,101,86,98,114,130,101,86,115,108,105,95,94,109,100,119,107,106,122,111,104,104,99,110,101,96,105,100,107,105,100,92,103,110,106,100,107,104,102,114,93,105,102,109,104,100,100,107,103,96,107,101,108,109,101,105,98,102,94,95,99,97,114,111,99,102,102,101,99,88,100,90,104,107,102,101,103,116,106,100,116,103,104,100,102,101,97,116,103,101,87,105,85,101,84,74,107,99,94,106,99,100,106,97,84,94,87,100,117,96,97,109,100,102,99,104,95,103,112,98,102,106,94,91,103,110,117,100,102,101,106,95,102,95,99,95,114,102,107,109,95,104,107,112,102,100,115,102,105,113,104,107,86,62,92,101,99,101,89,106,100,104,102,110,109,100,103,90,98,98,103,99,106,104,113,101,107,104,99,90,101,102,103,108,95,104,97,94,94,105,107,91,111,116,104,111,100,85,97,105,110,104,95,97,104,103,95,102,109,111,99,99,113,70,97,117,94,114,106,93,108,104,110,103,94,105,105,97,114,98,90,103,107,104,106,115,98,90,103,88,105,113,98,117,94,104,85,97,110,108,100,101,95,92,108,110,98,115,105,101,95,106,105,63,96,109,91,96,108,95,92,102,121,106,101,106,100,104,104,118,102,110,95,107,113,107,104,100,137,99,102,108,98,96,101,101,102,114,111,108,102,98,116,101,109,103,102,102,105,102,110,105,96,102,102,86,97,111,93,113,91,95,104,94,103,112,105,92,99,98,90,80,104,105,104,108,98,109,106,109,101,98,99,109,107,102,94,92,102,108,102,106,109,98,90,102,112,93,112,105,108,97,104,108,100,107,117,115,76,106,111,104,110,100,113,111,104,108,102,86,106,100,110,101,103,110,88,103,102,107,100,81,106,87,115,88,107,101,97,103,102,103,104,95,104,95,95,106,104,104,117,104,110,98,108,98,108,98,91,79,101,96,95,101,100,120,92,106,91,89,109,89,111,102,116,102,95,105,103,115,102,103,103,95,104,111,91,93,99,100,91,100,113,100,110,94,94,97,105,96,94,97,108,114,109,89,102,95,108,121,92,108,97,113,99,99,107,102,104,106,95,110,110,105,99,108,88,99,108,96,93,99,100,102,101,95,97,106,92,97,105,105,103,96,106,111,90,101,95,97,105,112,101,110,99,101,116,96,103,96,118,94,102,70,110,95,97,102,104,91,96,110,90,107,104,91,106,102,96,103,93,100,103,97,119,102,98,94,99,103,82,107,102,99,97,96,99,109,101,105,103,106,93,109,104,105,110,102,113,102,97,96,104,102,101,103,107,102,94,93,110,93,116,102,99,109,104,96,96,110,101,95,100,112,91,107,85,103,95,94,99,98,109,105,114,101,103,100,94,104,90,107,86,90,100,106,109,100,93,112,105,99,96,80,100,109,102,97,99,102,103,104,98,106,101,92,97,92,93,105,96,101,92,95,111,98,91,99,105,96,101,105,93,101,114,97,102,97,103,107,92,88,107,110,107,105,105,96,100,96,98,116,103,102,81,91,103,99,107,83,111,93,102,105,110,98,106,95,96,92,96,101,110,94,94,102,92,95,95,95,104,105,105,88,115,99,106,101,106,102,98,104,105,98,89,96,108,102,99,96,105,105,130,89,108,113,91,89,103,99,101,104,108,101,98,102,102,95,97,96,93,100,95,96,112,110,104,96,99,90,93,110,96,99,95,98,103,113,109,108,94,96,102,100,104,74,97,101,105,107,106,104,117,106,108,102,112,96,93,108,107,104,96,104,106,96,111,88,109,105,115,109,99,106,110,104,102,107,103,104,107,100,115,113,99,97,101,103,102,110,93,105,100,96,113,103,98,109,112,98,110,95,105,102,109,95,99,93,97,102,95,90,123,108,111,100,115,97,100,99,86,117,100,105,105,109,98,99,111,104,111,117,101,105,95,100,104,101,98,97,117,92,98,105,112,98,100,100,102,109,111,104,105,107,102,96,106,110,107,104,116,96,100,99,95,115,98,99,111,81,100,111,92,95,105,100,108,95,104,105,103,98,110,107,101,93,98,94,94,104,97,92,100,105,104,91,96,106,99,113,98,94,96,119,100,100,84,92,96,109,95,109,92,91,106,117,70,106,115,95,98,100,96,99,102,100,104,97,103,99,107,104,104,100,121,94,95,102,130,98,107,102,102,109,113,108,120,102,94,102,108,112,109,106,94,94,95,104,106,93,95,92,96,89,104,102,110,101,104,106,102,103,91,101,97,100,103,106,107,81,109,109,98,98,115,106,94,100,106,117,109,95,102,95,96,107,101,100,95,99,99,101,95,105,102,93,101,113,95,104,105,99,96,104,102,97,109,101,105,94,96,100,101,97,103,106,111,98,87,103,102,105,95,100,107,106,109,106,79,88,94,99,84,102,100,120,103,113,101,87,97,105,105,97,98,106,100,103,100,97,94,109,94,99,114,105,103,104,108,101,103,95,107,105,84,103,119,99,101,102,105,90,108,106,96,102,92,106,104,70,105,97,104,112,101,103,98,103,101,92,95,96,95,104,109,96,102,109,93,88,111,98,94,105,96,101,94,102,94,103,99,106,94,73,100,104,106,104,93,99,104,104,95,110,121,103,101,104,99,105,105,111,102,101,99,108,106,112,106,107,93,79,91,99,88,107,93,94,101,92,109,95,106,98,119,100,110,109,105,101,98,105,90,106,101,94,107,107,109,102,103,99,106,95,102,101,109,103,106,104,108,100,105,94,87,94,92,93,121,100,103,101,103,101,97,112,101,96,105,110,104,93,104,97,112,101,97,102,102,101,102,112,102,98,64,95,88,100,119,102,103,94,110,108,93,109,95,103,94,101,101,95,99,110,114,98,107,95,111,101,91,95,97,106,101,104,103,105,111,94,103,95,88,98,100,110,100,102,102,98,97,99,94,101,93,107,110,101,97,105,101,105,103,103,90,107,106,102,107,105,91,96,92,109,96,91,95,98,100,103,107,105,98,102,104,95,106,98,108,101,113,104,100,108,102,106,111,109,102,107,103,100,112,107,113,91,101,106,112,99,106,91,99,99,100,107,112,103,84,115,106,94,92,111,104,109,99,114,97,106,108,93,103,103,96,102,92,95,103,112,101,109,93,106,95,81,113,99,106,96,100,102,100,104,104,102,105,94,94,103,95,105,108,94,96,101,98,90,106,96,104,104,106,102,88,103,100,99,119,100,103,86,92,89,119,105,84,94,102,99,104,100,93,98,122,104,96,107,111,95,101,98,103,100,102,91,104,106,113,100,88,106,107,92,106,98,110,114,102,94,99,116,112,105,98,97,104,99,95,98,109,95,109,105,109,108,93,105,117,103,101,90,96,106,108,90,98,105,99,100,99,97,90,89,91,97,106,99,104,96,91,99,102,104,83,101,97,103,100,99,105,97,100,112,99,103,113,101,117,101,103,102,95,102,102,99,92,101,87,95,107,97,94,87,96,117,112,86,92,98,111,97,86,99,101,90,98,97,107,96,91,115,96,108,103,103,114,101,102,108,101,96,101,112,101,105,111,87,104,99,86,105,101,81,96,113,112,106,103,102,92,101,97,82,97,90,98,103,106,103,98,99,111,112,112,102,106,102,92,101,97,104,102,94,105,105,92,97,107,105,103,96,102,98,103,95,102,99,106,100,98,98,104,98,108,108,95,99,94,105,105,78,91,104,104,99,98,82,114,98,89,102,115,78,91,113,97,105,87,96,92,110,99,104,99,100,96,103,101,95,99,95,91,102,103,95,90,100,99,108,101,97,115,98,104,108,109,104,104,87,96,107,100,97,93,103,101,105,95,105,107,93,104,103,105,99,110,101,101,95,95,108,108,98,109,106,91,104,110,89,87,100, +430.92587,114,94,81,96,97,91,91,96,109,99,96,101,99,105,99,113,92,95,107,103,104,102,100,117,115,108,101,102,105,97,105,99,99,102,98,107,106,98,90,111,97,94,107,108,106,112,109,99,103,103,103,82,108,103,104,104,90,77,110,100,104,99,96,105,107,106,97,105,100,106,114,98,113,104,101,108,94,105,101,99,111,117,93,111,99,105,102,110,96,97,95,107,86,100,106,99,100,97,105,94,98,107,97,111,98,92,100,93,104,105,104,97,101,101,116,105,107,104,108,109,105,98,101,116,102,112,108,102,100,107,116,111,112,107,94,90,88,102,98,97,111,98,93,98,90,120,103,111,89,97,101,125,105,97,92,99,113,113,109,96,100,104,100,104,123,97,100,101,92,98,105,106,94,91,110,110,109,102,97,106,106,93,97,107,109,87,98,95,101,94,96,115,106,115,89,95,96,94,104,112,107,102,89,104,98,104,102,108,115,99,101,107,106,101,103,116,91,111,108,105,115,105,89,95,110,110,111,113,96,95,106,115,109,101,99,110,106,119,84,126,92,99,100,109,99,116,96,99,100,106,98,106,95,102,100,110,106,103,100,96,97,95,100,100,90,94,100,100,99,88,101,105,96,95,104,107,105,105,96,98,108,95,106,103,88,84,101,101,104,99,99,106,113,100,97,101,121,99,101,114,95,111,97,115,93,112,104,104,106,100,101,101,105,109,93,98,99,104,100,109,88,105,103,106,101,104,89,96,110,101,103,95,109,103,101,100,106,99,99,102,98,95,112,97,92,109,97,105,112,108,109,110,107,91,106,110,95,101,95,113,93,99,95,95,98,92,93,102,99,116,102,95,113,101,105,97,108,108,105,106,106,112,102,98,101,105,105,105,114,79,111,89,91,117,98,106,104,100,105,117,97,105,96,106,104,102,110,102,97,97,105,102,96,113,98,104,98,98,98,101,71,104,95,95,99,95,103,86,103,96,95,107,100,113,98,101,99,117,105,99,109,99,101,102,98,100,106,113,111,103,97,97,93,108,103,102,108,103,112,99,104,103,110,130,111,121,104,110,110,100,99,110,102,96,96,86,107,117,99,113,108,111,102,117,105,105,97,98,107,102,115,106,96,94,119,110,95,102,103,102,105,95,95,100,100,101,100,106,95,121,108,102,107,101,107,104,110,112,96,98,99,103,110,93,112,91,101,99,77,117,95,102,92,94,99,101,97,101,102,104,103,110,99,97,100,97,106,102,104,105,106,112,106,96,99,94,96,100,100,103,106,93,94,109,101,101,112,104,88,103,105,96,107,105,105,98,122,101,104,98,104,102,115,87,114,97,100,95,94,108,107,108,104,97,101,114,94,110,107,68,101,104,102,81,101,101,89,100,105,113,98,101,105,92,106,99,99,95,84,113,107,102,107,101,115,114,103,106,98,108,103,107,111,104,96,110,95,95,91,112,112,104,100,97,98,130,105,96,108,117,99,106,95,121,102,104,95,82,105,105,110,98,107,117,98,105,92,95,110,109,120,102,121,101,94,110,98,110,103,103,103,91,111,94,111,102,102,84,100,106,110,104,96,91,101,103,114,99,92,79,97,105,102,91,108,96,104,105,99,104,101,104,99,111,107,97,91,114,98,103,98,98,102,96,98,100,103,99,103,112,106,103,99,96,105,115,112,102,99,98,110,103,93,108,103,102,113,109,104,103,93,106,101,98,100,104,107,98,103,101,101,94,84,107,95,98,94,99,93,104,104,104,109,98,103,110,106,100,96,99,99,95,106,102,101,99,92,106,102,99,108,108,107,104,114,96,101,109,107,100,101,94,98,101,89,108,106,104,100,105,126,103,105,118,108,102,101,95,105,104,105,109,103,117,117,91,81,105,102,103,112,95,126,122,103,123,106,104,96,98,112,107,109,111,102,102,106,89,103,78,109,129,110,105,96,102,112,109,103,112,104,103,98,109,103,129,97,101,102,98,108,101,101,104,92,102,115,101,123,101,103,105,113,113,100,110,99,106,98,93,110,106,101,95,103,90,107,101,105,103,108,113,103,117,102,99,102,111,94,86,112,111,102,103,103,99,108,120,113,108,114,101,105,102,102,116,109,111,108,91,97,104,98,106,93,103,95,104,99,104,108,103,95,102,90,97,105,98,95,124,93,103,99,113,103,98,97,99,100,103,103,109,118,102,100,100,92,96,99,100,97,96,112,106,92,113,110,105,99,97,98,80,109,103,100,98,92,83,100,118,90,102,102,101,105,92,103,102,91,96,104,101,98,97,93,99,100,99,106,106,90,95,88,101,106,100,109,100,108,100,117,92,111,99,110,94,103,109,105,103,112,107,101,98,100,95,97,108,97,98,96,107,100,106,90,100,108,102,101,109,111,112,101,101,98,104,105,105,105,96,101,111,101,105,105,111,103,94,98,109,84,108,98,105,110,109,101,84,100,102,65,88,98,102,114,101,103,102,104,112,105,101,94,100,107,102,101,101,108,110,102,105,96,108,111,99,104,111,97,95,107,117,105,103,105,108,90,106,98,104,98,102,108,96,100,105,97,109,102,87,121,112,86,104,95,102,100,96,102,108,102,94,100,103,101,107,99,102,109,97,102,101,102,109,91,108,99,85,95,99,112,101,91,97,104,92,105,120,119,101,105,107,106,95,96,106,109,109,102,107,101,110,99,103,99,117,113,99,104,104,107,103,118,91,101,96,100,74,108,103,96,105,113,103,98,109,99,105,101,97,107,108,102,111,117,98,102,105,96,112,109,106,99,105,98,99,98,116,105,101,116,102,84,107,110,112,87,92,111,97,102,100,126,89,109,102,126,108,101,100,92,100,111,104,116,105,106,115,103,101,108,101,87,94,120,102,102,93,106,106,108,115,94,97,107,100,103,98,102,114,112,106,102,108,103,99,101,107,97,98,98,116,96,107,114,96,98,102,108,111,110,111,109,116,87,102,110,107,117,105,103,107,115,97,104,110,106,100,102,105,98,102,101,93,113,112,104,99,106,106,110,98,105,102,110,107,102,98,108,104,98,102,103,95,95,103,104,107,113,103,105,106,93,105,95,102,102,104,96,93,103,102,103,99,96,111,109,103,96,108,103,93,108,97,102,88,99,97,110,79,97,100,101,98,114,100,101,100,109,105,99,98,104,103,117,113,79,98,101,110,108,105,93,107,97,119,110,110,111,102,107,97,114,102,104,100,93,96,96,99,99,103,103,106,111,95,111,98,113,91,116,110,107,133,112,108,109,102,107,108,102,104,109,104,101,85,101,106,108,101,104,109,112,98,114,107,92,113,104,105,106,104,98,95,97,102,111,104,107,106,127,102,92,102,107,97,102,109,99,84,95,108,108,92,91,97,104,90,98,100,83,112,95,93,96,107,98,113,109,98,111,111,96,101,90,101,101,110,89,95,102,101,110,110,94,92,98,106,104,93,106,102,94,97,101,107,112,108,108,104,101,106,107,102,103,95,104,119,113,103,94,110,113,103,114,92,102,108,108,105,105,101,103,109,100,98,105,123,104,109,95,104,99,103,119,107,103,104,100,91,101,99,102,101,101,74,98,111,109,96,101,99,101,99,94,107,104,100,101,106,99,97,105,113,100,106,106,107,108,112,101,112,110,97,99,103,106,100,114,100,107,101,104,103,110,100,102,110,98,97,105,100,98,100,98,91,104,100,113,80,102,103,101,99,117,81,108,106,114,100,96,111,102,93,103,100,92,96,99,109,98,105,103,112,113,109,113,103,108,104,110,96,96,98,75,101,106,95,117,99,94,86,91,108,104,99,99,109,99,110,114,99,107,108,91,99,99,94,92,105,102,103,107,105,97,106,95,100,96,93,92,104,102,110,94,117,98,100,95,94,105,101,95,94,119,98,102,98,105,99,101,106,97,109,103,107,108,98,98,99,109,105,106,99,98,109,110,104,106,84,99,105,91,107,96,116,116,103,86,99,103,93,105,101,103,94,113,115,101,97,98,97,89,109,108,102,105,92,112,100,100,102,86,101,98,106,119,100,111,99,110,96,97,92,109,105,99,110,107,106,106,77,119,109,97,103,93,101,104,116,105,115,103,99,105,108,98,98,114,103,105,117,113,72,105,103,116,103,103,101,96,90,111,98,107,103,101,100,102,100,103,96,109,121,95,100,106,104,101,94,107,101,107,99,115,99,106,100,104,100,94,81,90,96,87,104,91,112,103,111,98,100,104,109,96,111,89,105,88,104,105,127,113,102,95,112,109,101,102,106,95,98,110,98,113,107,96,103,98,112,112,105,89,101,98,113,106,105,98,112,118,111,117,99,119,94,104,102,105,106,106,104,102,98,113,101,109,104,98,111,110,104,120,107,83,103,97,100,107,98,68,89,95,104,88,112,103,102,100,102,96,98,109,106,94,105,100,83,101,105,109,97,120,108,104,94,108,113,95,105,100,113,88,107,108,91,91,107,99,102,109,79,106,98,89,102,92,101,93,94,104,83,90,103,107,96,110,103,107,102,89,102,110,94,109,83,109,95,109,99,97,105,87,95,107,102,100,95,104,104,110,103,102,109,120,105,99,113,109,102,108,104,100,96,95,107,99,113,102,83,108,87,100,106,96,111,101,97,115,97,105,103,103,100,104,100,94,97,99,96,91,91,98,100,99,112,101,94,104,95,108,96,99,100,102,105,114,105,109,118,102,107,107,110,104,96,104,94,101,114,79,101,99,107,98,73,94,99,95,93,110,66,99,102,103,98,101,107,103,95,109,116,126,98,94,124,97,101,91,99,102,105,109,105,108,83,90,103,94,103,97,96,103,98,106,105,96,98,106,90,112,111,93,101,104,97,96,104,106,92,107,101,118,105,103,107,96,102,118,112,93,84,97,104,80,88,108,88,94,93, +431.06616,111,97,93,112,97,93,114,111,114,96,76,103,87,91,106,101,95,94,109,109,105,93,104,99,100,93,102,91,108,97,109,100,98,108,107,101,103,98,83,106,86,94,103,87,96,110,99,93,99,103,86,102,98,112,107,93,107,96,100,99,109,99,92,90,110,102,93,95,98,102,90,109,89,92,99,106,93,106,111,105,99,105,115,105,98,97,100,101,106,105,89,95,101,99,100,88,100,102,96,96,95,95,96,100,100,98,88,95,100,88,110,93,94,102,109,112,106,96,99,100,88,105,100,108,101,114,107,104,111,109,97,98,91,65,111,90,89,95,103,107,112,99,91,92,99,107,101,95,105,97,115,98,99,87,92,102,96,104,103,94,96,99,104,103,93,94,101,101,101,108,118,101,105,105,114,110,89,99,86,94,95,104,93,110,90,109,92,106,113,99,104,105,104,101,107,101,115,100,95,99,109,93,90,104,110,109,110,97,106,101,100,110,100,115,96,96,99,103,105,94,103,100,100,86,112,94,98,109,106,107,102,101,102,101,90,102,117,95,99,123,105,90,122,102,98,103,99,108,97,108,105,106,109,104,96,119,97,105,100,99,108,97,105,94,100,122,100,101,123,92,108,94,106,95,98,90,91,105,117,100,97,95,110,98,95,99,71,106,106,103,99,108,101,103,99,102,100,86,129,103,100,95,109,99,103,114,106,99,88,116,101,107,102,98,99,105,95,98,102,94,101,98,104,104,95,111,97,96,109,104,112,112,105,99,99,110,109,106,100,102,101,104,99,98,105,97,107,109,109,68,102,99,108,96,92,100,95,109,106,99,98,108,106,92,91,99,104,96,97,106,101,97,110,91,109,97,102,137,109,105,115,100,95,111,112,107,103,83,103,103,106,108,91,117,102,99,104,91,107,96,100,111,96,100,105,96,105,100,110,103,84,102,112,97,93,100,97,70,105,98,96,84,101,111,102,111,105,93,92,110,101,104,100,96,110,110,108,107,107,97,100,96,83,108,95,110,98,107,102,116,107,99,101,106,104,114,111,95,105,121,102,100,109,104,111,105,103,108,113,107,104,102,108,117,101,97,117,108,102,101,107,109,106,98,97,102,101,102,100,111,105,111,106,87,110,91,104,101,104,100,110,107,100,101,102,99,98,104,108,100,107,104,101,111,103,96,103,103,102,98,94,97,106,105,103,114,109,102,98,101,98,109,106,113,104,98,95,100,108,108,107,117,110,105,100,105,94,106,111,106,93,100,105,106,100,107,105,97,89,104,105,90,104,86,109,97,107,98,74,105,95,104,100,97,103,97,106,112,98,104,106,112,108,96,98,99,107,108,116,111,116,91,98,98,105,94,105,85,90,99,105,102,105,100,104,104,111,102,98,110,94,99,100,103,92,95,99,109,108,104,101,95,103,96,116,113,97,99,100,106,104,86,101,101,97,98,103,96,105,91,104,109,97,113,95,77,100,97,114,95,96,87,102,105,103,94,111,96,101,105,112,102,89,104,102,105,98,95,99,98,105,99,114,103,139,104,110,110,105,97,117,102,97,104,101,98,91,105,100,109,106,100,98,110,92,96,102,102,105,100,104,106,97,109,98,108,104,112,96,106,104,96,102,96,85,78,99,95,97,103,105,90,104,98,91,89,98,93,91,106,100,100,96,91,98,103,105,91,107,111,106,102,92,108,97,102,93,102,106,111,114,92,104,107,106,98,103,90,109,95,106,97,114,111,81,99,100,104,105,107,105,105,124,95,101,103,95,98,114,102,106,104,98,107,93,108,110,116,117,95,96,97,103,106,98,109,109,102,95,114,101,102,98,99,102,109,97,104,101,92,103,98,106,104,116,96,106,105,113,99,101,106,81,87,86,95,103,111,110,106,94,100,103,91,102,105,102,104,95,104,118,100,100,98,99,108,96,97,103,103,114,107,87,103,99,106,98,103,93,107,98,99,109,107,102,102,105,109,105,113,100,100,110,97,85,101,113,96,95,91,125,95,94,98,95,108,101,105,102,92,95,107,90,97,108,104,105,102,105,98,104,102,97,95,110,131,119,102,102,101,103,113,111,103,103,93,95,103,95,107,89,107,108,92,104,102,98,93,104,91,101,104,99,99,98,100,98,103,92,84,103,97,109,100,96,109,102,101,99,107,104,90,109,105,99,97,105,111,104,102,104,109,104,104,114,113,105,107,113,98,99,94,86,107,96,109,110,99,86,109,90,96,94,100,110,98,95,100,101,101,103,104,115,119,99,86,105,112,103,96,110,100,108,98,96,103,89,112,96,106,92,83,98,96,98,98,99,106,101,105,106,110,95,80,108,106,101,100,101,95,106,107,113,104,109,103,94,102,91,104,103,98,91,96,100,92,80,90,100,107,111,99,105,91,104,94,101,114,91,100,95,117,102,89,107,98,92,99,100,97,94,118,106,91,126,107,108,98,99,105,110,109,103,113,104,108,94,100,106,100,90,96,108,102,101,97,105,102,109,107,91,116,108,97,90,107,112,97,105,106,96,104,116,109,93,105,117,106,94,115,101,99,102,96,100,92,101,99,101,104,121,119,106,106,104,111,87,100,98,92,104,97,98,106,102,104,95,100,102,105,99,113,96,108,110,111,102,102,99,80,100,113,103,93,103,102,99,85,107,100,101,87,111,109,92,92,97,108,101,99,90,116,91,97,102,111,106,106,108,101,96,109,103,95,98,101,115,87,99,110,91,100,107,109,96,105,109,99,106,105,94,109,103,101,87,113,93,101,105,105,109,111,102,105,96,106,106,106,104,109,102,94,102,113,101,94,100,100,97,96,104,109,108,91,97,108,97,103,104,99,94,97,82,97,100,100,99,102,95,108,109,102,108,94,98,100,99,102,99,97,108,103,98,106,104,104,104,98,108,100,105,107,104,94,116,95,102,101,100,114,106,109,100,105,102,99,113,91,105,97,112,116,88,83,102,104,106,103,90,94,99,109,106,101,110,109,103,111,104,103,101,123,82,105,105,87,108,103,102,94,101,103,107,89,98,104,104,99,109,109,86,95,120,95,94,84,103,101,111,98,99,102,104,116,99,113,98,105,99,101,99,116,111,107,90,101,96,105,98,94,101,101,101,103,101,108,102,109,103,100,89,92,103,95,104,98,98,103,113,94,91,104,110,98,102,99,101,95,96,105,117,99,82,101,77,106,112,106,108,98,102,104,105,100,105,95,94,117,95,109,100,99,90,98,101,113,105,111,107,101,105,92,106,106,106,92,113,113,101,121,103,100,112,110,100,102,94,117,111,97,87,105,94,113,113,106,102,109,107,96,110,107,94,101,108,113,107,108,93,104,85,93,109,91,99,101,96,137,100,101,98,106,103,102,108,97,99,94,101,87,103,107,108,98,104,105,96,104,107,100,100,95,104,113,109,100,111,93,110,105,97,113,102,95,100,110,100,103,100,105,111,108,97,95,102,100,109,91,90,101,101,100,99,109,105,94,109,100,103,104,104,108,96,108,98,105,100,95,92,95,98,99,102,107,100,106,107,116,76,103,106,110,103,109,110,97,99,112,99,106,107,92,112,102,106,100,107,105,108,102,99,92,106,116,94,93,94,104,96,106,97,106,111,98,94,95,107,101,98,106,104,95,101,104,88,98,114,93,96,109,97,97,108,98,95,96,96,100,104,99,95,111,78,117,95,91,100,113,106,108,99,99,102,91,94,93,108,108,105,101,106,98,109,95,105,101,101,109,92,96,71,99,99,104,101,96,103,117,107,78,108,98,103,102,96,103,101,98,108,104,93,105,96,110,96,102,109,95,86,95,102,108,99,104,104,102,105,97,98,108,95,106,81,107,105,99,98,106,104,109,95,99,96,89,92,112,102,92,99,104,100,96,100,110,112,89,105,96,103,99,100,106,96,95,104,109,86,94,96,92,96,99,110,130,106,99,113,97,92,100,101,78,104,100,99,111,100,113,93,104,124,105,104,94,111,94,104,105,95,105,98,104,93,119,110,98,106,97,102,97,106,83,106,115,102,113,99,85,105,102,91,110,95,102,108,104,103,109,108,93,108,97,109,104,104,113,95,97,90,100,104,91,98,102,102,101,92,109,114,100,110,104,109,101,100,111,97,98,98,100,104,88,93,111,101,103,92,106,104,107,107,99,85,98,104,89,110,106,106,105,98,98,98,103,101,95,97,112,110,100,107,102,116,100,94,83,98,101,99,79,99,99,101,96,102,100,102,103,92,96,93,100,106,96,100,103,106,107,102,116,103,106,104,99,83,107,108,97,97,110,105,99,102,91,99,94,105,110,93,98,109,108,113,101,96,96,102,105,100,103,92,97,103,110,110,100,103,94,104,88,96,92,112,105,92,116,105,120,113,93,94,98,95,112,101,92,119,99,88,104,98,100,123,92,102,92,91,102,100,101,102,102,99,95,88,101,101,104,97,100,118,102,108,116,112,100,100,85,112,91,99,106,106,96,109,100,94,92,105,103,104,87,94,109,103,96,110,90,81,83,97,116,101,89,106,95,104,94,115,102,90,98,101,96,104,108,75,91,104,102,97,111,101,100,98,100,98,109,101,105,101,95,97,105,122,99,111,101,113,100,111,108,119,106,93,138,95,109,94,101,104,91,133,94,98,90,105,88,107,99,102,91,105,97,94,100,98,100,104,93,94,98,96,96,94,88,113,102,109,90,95,105,107,103,106,89,97,104,108,97,92,102,102,105,91,96,96,93,98,105,101,107,96,93,108,101,100,98,82,99,104,94,104,91,97,96,103,92,93,100,99,104,112,99,97,102,92,103,112,100,113,90,105,95,105,94,82,94,98,100,109,103,96,101,93,85,93,96,98,95,110,101,109,96,115,115,97,110,119,104,111,93,85,87,107,107,114,103,95,99, +431.20645,88,102,108,95,111,103,98,90,96,117,90,96,106,95,94,96,103,96,108,92,99,88,94,113,95,97,101,101,96,93,103,86,109,94,110,105,101,96,99,105,103,99,103,109,113,101,91,93,105,109,99,117,105,103,100,95,101,92,106,101,111,92,116,101,104,106,108,108,96,99,102,104,100,96,93,109,98,109,86,93,101,104,102,111,87,98,108,100,95,102,97,121,105,92,100,106,98,101,98,105,100,98,101,96,96,105,90,105,103,109,117,96,112,101,102,101,103,101,102,90,98,112,112,108,111,107,104,96,86,102,103,100,105,103,98,101,105,95,97,104,117,112,94,105,97,97,113,109,102,91,94,109,100,104,94,103,83,108,102,96,98,101,113,102,98,90,102,99,110,111,112,102,102,104,105,102,93,101,97,114,107,112,101,109,99,99,102,100,100,105,99,103,110,114,105,91,100,96,93,103,92,77,103,119,104,94,103,101,103,106,96,103,105,102,101,98,90,107,99,104,105,102,106,106,102,106,112,102,99,114,99,105,106,99,104,93,106,101,115,106,106,112,115,93,100,97,105,97,101,108,102,105,89,94,97,102,96,108,98,117,102,109,97,91,94,111,88,90,98,104,100,102,112,102,110,110,101,109,94,98,102,94,110,84,100,101,92,102,108,91,106,108,100,103,109,105,101,96,100,111,103,100,106,100,103,100,104,100,104,103,113,112,102,93,104,104,101,99,87,110,96,107,105,106,101,105,100,96,103,101,107,92,104,107,103,113,102,102,88,104,103,95,106,100,94,103,94,113,100,88,94,101,107,96,98,120,101,108,115,101,98,96,104,88,108,109,105,105,110,112,108,100,95,106,113,97,94,103,106,110,108,106,90,91,100,110,90,114,107,97,99,103,100,106,94,103,99,113,103,108,96,104,94,90,106,92,96,102,100,104,92,93,100,95,96,99,111,81,107,121,94,110,102,105,96,77,104,97,91,63,91,101,96,93,103,108,106,99,89,99,108,107,99,79,98,107,69,102,99,112,99,110,109,102,104,108,104,111,103,69,104,103,113,105,109,108,103,95,110,92,99,102,100,107,108,98,104,104,107,102,101,108,104,96,91,121,99,113,114,110,104,114,110,98,109,98,92,113,103,108,103,100,98,97,102,103,85,106,118,106,107,107,111,101,110,100,97,99,100,99,100,104,101,105,99,108,110,100,100,103,109,107,96,102,100,109,101,99,96,103,96,111,105,100,116,100,106,102,107,108,110,99,82,104,100,102,102,94,104,91,105,96,114,109,99,103,97,101,100,125,95,102,103,96,113,92,97,99,102,103,103,110,105,105,103,100,91,110,110,99,103,106,90,94,107,102,96,101,101,108,108,102,105,108,102,107,98,104,97,105,103,111,99,99,109,108,91,92,87,107,105,112,104,102,114,102,88,114,106,107,97,109,98,99,108,110,96,106,112,96,109,95,90,123,97,102,96,92,114,76,100,102,105,100,89,101,104,101,99,111,107,106,106,112,102,105,102,95,118,101,103,102,105,88,103,112,93,97,108,104,116,94,122,99,99,104,100,100,103,106,100,88,107,103,108,95,96,104,95,105,97,95,106,98,95,91,98,113,106,106,95,100,98,100,96,102,97,108,108,105,109,100,96,109,104,96,105,106,99,99,107,106,102,98,100,86,107,91,106,110,107,100,100,101,107,100,98,104,99,113,105,99,98,91,105,96,99,90,109,87,105,106,94,107,98,110,101,98,92,97,105,106,97,95,99,112,89,105,112,94,112,100,112,102,99,103,120,105,95,103,107,99,90,111,100,109,103,96,102,103,94,113,98,99,99,100,98,98,100,109,95,106,115,106,107,98,100,111,92,85,96,112,103,118,114,118,101,110,88,107,113,100,110,99,102,98,88,99,112,112,105,109,102,96,112,94,98,102,107,92,99,93,103,101,107,95,99,106,115,96,101,99,105,105,95,97,105,107,108,101,101,120,99,94,101,98,105,88,102,105,107,113,102,96,99,104,110,91,112,90,99,107,90,103,107,96,98,107,119,96,106,108,107,103,105,99,109,99,98,113,100,112,110,109,97,94,104,109,113,101,95,99,104,118,124,98,105,111,95,81,100,116,97,111,109,98,85,90,102,115,100,96,102,103,107,100,100,98,107,117,104,94,108,108,100,97,107,102,104,86,94,110,117,83,98,91,99,100,96,100,101,105,121,87,105,103,111,93,115,106,105,99,99,92,107,96,106,103,105,106,98,102,114,118,106,109,105,97,100,111,109,101,106,101,112,100,103,118,95,106,101,97,120,113,101,105,108,96,101,110,113,110,99,99,91,103,100,104,97,110,98,101,102,99,99,94,104,111,112,110,97,100,98,111,95,97,98,105,94,106,100,97,95,98,94,106,102,91,104,98,101,105,93,103,98,98,101,106,99,110,92,106,94,92,99,111,100,101,115,101,97,111,98,104,102,123,100,116,114,104,109,102,109,94,91,113,103,104,102,98,83,93,108,99,106,103,101,97,107,100,99,109,108,115,100,94,109,108,115,96,112,98,108,102,91,103,85,101,96,107,103,102,102,101,96,100,99,128,98,102,102,104,95,99,108,102,109,96,100,99,113,108,96,121,105,103,102,106,109,99,100,99,109,109,111,107,113,104,103,105,93,113,109,112,107,89,102,92,104,104,107,105,106,96,122,96,99,109,100,102,106,100,105,113,100,109,103,89,108,102,104,103,88,109,90,113,105,108,102,99,94,112,94,106,112,105,101,119,106,92,108,95,102,108,104,99,91,105,106,99,97,109,101,113,118,102,105,106,103,96,96,110,108,99,95,107,95,104,92,109,103,108,105,106,99,98,118,96,103,106,94,112,101,108,116,109,105,109,103,98,109,92,106,115,111,96,105,104,103,98,104,94,109,108,95,108,96,95,109,111,100,109,109,99,102,104,113,108,96,104,103,98,97,110,105,106,104,117,109,96,110,100,104,112,102,118,95,105,98,102,107,112,95,115,114,100,110,98,106,104,110,83,96,96,108,103,109,93,104,125,101,109,106,105,99,95,98,104,102,109,95,103,113,101,93,103,97,109,109,99,113,113,119,106,105,94,102,93,96,93,101,108,90,102,104,97,106,112,89,103,102,96,99,101,98,111,105,94,107,107,98,101,103,102,95,97,104,98,100,106,98,91,102,101,93,97,83,99,95,104,103,108,97,110,111,101,101,97,115,107,96,107,92,104,102,102,106,110,99,101,108,111,107,113,104,101,105,106,89,108,105,101,97,107,118,113,95,101,102,95,115,117,99,102,97,96,109,110,97,95,102,100,109,102,96,106,103,103,100,104,102,92,91,108,104,103,100,93,101,103,95,106,93,95,99,106,94,103,101,111,101,116,96,110,100,110,111,102,106,120,102,101,85,117,93,94,106,98,99,97,97,103,102,104,78,95,101,101,100,106,105,95,101,83,106,102,103,87,103,106,104,100,108,104,103,106,107,99,101,112,99,105,103,80,95,90,121,98,109,102,98,102,102,110,102,108,106,113,114,119,94,104,105,113,101,96,93,108,102,112,101,112,102,117,106,105,102,102,109,94,87,104,96,116,108,119,104,94,114,100,93,117,87,109,103,95,99,106,114,120,98,117,117,104,85,99,108,102,105,114,107,106,104,106,108,101,105,104,107,104,105,114,102,106,109,95,100,105,107,97,93,117,104,91,101,104,107,101,108,98,94,108,94,83,109,99,102,107,108,92,102,99,113,100,102,95,108,99,105,100,96,99,102,91,82,112,109,109,105,101,103,104,95,98,127,94,104,106,98,98,117,107,104,103,103,95,104,91,98,96,101,114,110,105,111,102,108,101,106,90,103,106,93,103,78,105,102,108,107,89,94,96,107,91,103,128,110,106,99,106,98,101,113,104,112,100,108,95,115,113,99,107,107,98,89,102,100,108,95,101,92,114,95,99,90,103,108,93,97,103,104,99,97,111,101,98,98,96,93,104,105,126,102,101,109,101,101,76,98,104,90,103,116,102,102,98,102,85,99,113,114,102,101,100,108,97,97,101,109,103,102,93,105,106,90,104,118,95,102,100,108,106,105,96,106,127,106,111,101,102,101,106,117,113,104,117,102,101,112,100,100,91,101,102,101,107,97,103,104,100,103,104,90,92,112,114,112,111,100,95,115,107,121,97,104,110,97,114,106,108,91,105,108,107,99,98,98,97,98,111,111,99,86,117,107,95,108,98,104,100,92,103,124,91,91,107,93,110,119,119,101,117,123,101,98,108,105,102,110,107,101,105,103,90,91,107,104,109,107,99,107,113,112,105,104,101,102,101,109,96,101,103,104,109,113,110,93,93,109,102,115,110,99,109,105,108,102,98,89,99,101,104,100,96,105,114,100,102,106,95,96,93,110,113,105,98,96,87,94,95,106,107,104,104,87,107,110,107,105,93,107,115,102,108,103,99,104,89,103,97,104,93,112,111,106,92,97,97,108,99,99,100,93,119,88,100,94,106,100,96,106,100,97,105,103,95,97,95,99,95,91,121,100,95,94,103,99,97,113,80,105,99,80,104,103,106,98,98,92,100,109,91,91,106,103,107,98,88,88,106,96,109,94,95,108,102,99,89,102,116,107,98,95,86,100,93,97,101,107,87,93,101,101,97,95,88,103,103,93,111,89,100,97,99,100,93,113,109,110,105,100,106,103,105,104,114,99,105,106,96,98,95,93,105,96,88,102,80,105,104,110,93,112,105,100,105,101,106,125,105,101,102,93,112,100,99,104,108,105,107,104,97,105,93,94,99,99,96,111,104,98,103,110,81,102,102,102,107,98,107,100,105,75,93,100,95,100,108,95,96,96,86,88,105,123,101,101,104,101,81,102,110,100,117,106,94,96,109,114,97, +431.34674,100,95,95,92,95,101,94,107,107,94,113,112,100,84,98,101,98,98,95,112,101,110,93,99,106,105,107,104,96,95,105,112,100,86,108,95,107,95,114,113,103,105,84,99,97,108,110,94,93,95,102,105,99,81,104,112,100,100,103,105,104,112,98,108,106,103,113,91,108,87,110,95,102,105,105,108,109,86,105,102,105,97,95,95,105,95,106,87,104,111,92,93,102,95,104,110,101,100,106,108,100,94,85,103,95,92,100,107,97,112,109,94,101,105,92,91,90,107,98,107,100,102,112,101,105,112,103,112,96,105,97,105,98,99,106,104,106,93,102,102,100,96,97,101,95,107,90,108,102,97,86,100,103,97,95,104,70,103,90,100,100,95,105,98,116,112,79,102,107,99,95,104,107,111,102,110,108,89,101,96,110,99,103,106,99,92,97,95,103,100,101,107,101,110,93,95,98,96,99,100,97,96,95,101,99,99,95,114,104,108,104,112,107,110,76,105,104,100,91,101,98,108,105,98,102,103,104,100,99,101,97,100,101,110,116,97,99,112,104,110,105,89,98,103,102,86,107,96,103,92,96,99,88,101,100,102,96,99,97,99,102,97,108,103,100,108,106,94,92,99,95,110,98,98,110,106,98,102,112,102,100,104,115,104,83,102,92,96,112,106,112,119,94,109,118,100,106,101,109,110,106,108,109,114,96,108,100,104,95,115,101,106,91,105,103,101,92,109,103,106,111,104,95,125,99,87,104,110,109,102,102,97,94,98,104,101,113,101,96,117,94,103,98,94,103,106,108,99,108,109,117,104,105,97,113,91,95,106,107,100,86,104,107,104,88,106,108,92,118,109,105,99,112,85,98,100,109,115,111,103,107,102,102,103,103,90,109,105,116,110,109,97,106,101,101,102,93,99,95,107,99,106,87,94,96,96,100,89,107,107,94,104,114,115,99,104,133,97,122,94,114,97,91,102,103,100,101,92,115,106,95,103,99,96,102,108,106,107,107,80,98,108,93,98,100,109,104,104,102,112,101,97,98,110,110,89,97,95,107,97,97,97,93,99,109,108,94,98,108,99,97,107,102,99,103,94,91,113,96,104,104,100,120,133,102,90,98,103,108,97,102,104,85,89,125,95,99,103,107,91,110,101,99,101,105,102,109,100,109,95,101,114,85,121,109,94,91,99,106,103,112,107,98,104,102,99,107,96,86,102,106,110,102,97,89,102,106,113,105,100,96,108,94,97,113,100,104,102,106,107,100,95,94,110,102,110,105,94,99,92,105,98,107,98,102,109,101,105,108,90,102,104,108,96,107,110,103,107,105,103,104,96,105,92,114,95,96,87,104,95,105,102,104,102,108,105,115,101,102,109,108,102,92,108,101,98,100,99,107,105,99,112,101,101,113,102,104,113,91,100,115,115,104,99,97,99,95,98,84,96,99,88,97,121,103,105,83,100,106,96,90,109,107,98,101,101,101,106,105,59,84,110,101,103,100,104,105,112,109,97,108,111,96,109,97,104,98,90,112,101,108,107,112,93,137,103,88,95,93,103,104,96,99,103,93,100,109,112,107,102,105,102,102,109,116,92,105,102,108,95,82,102,95,103,99,99,101,112,93,91,105,97,105,116,98,108,90,109,96,108,102,121,98,116,99,93,107,87,106,105,95,109,103,92,99,95,112,97,114,109,102,100,84,98,107,108,101,121,97,97,112,93,103,105,100,92,102,112,108,98,108,112,114,102,96,92,92,103,110,101,99,104,71,107,104,119,90,112,85,98,106,104,109,114,96,103,93,109,103,101,109,121,101,110,104,86,98,104,97,101,99,103,98,104,113,95,106,110,106,95,117,104,105,102,104,95,101,115,103,105,121,104,100,107,103,96,102,113,108,99,99,98,100,107,103,101,109,93,90,104,100,119,104,85,101,100,109,98,106,85,106,108,107,102,91,110,107,103,99,111,108,98,102,104,113,107,100,97,112,93,83,105,104,103,91,96,104,132,108,103,95,101,98,102,114,91,98,89,87,108,99,131,95,104,108,103,102,120,92,101,102,101,104,102,109,104,99,110,100,106,100,97,96,111,107,97,102,94,103,102,96,101,111,111,109,113,107,100,99,105,113,87,115,107,105,106,96,97,102,104,102,109,99,107,96,110,108,105,101,103,95,118,101,103,110,102,98,98,95,95,102,78,114,107,96,100,102,98,105,96,94,119,97,104,112,107,106,94,98,75,95,105,104,96,114,108,97,109,102,90,95,96,112,102,89,97,94,90,82,109,98,91,96,94,104,106,95,116,112,113,99,99,99,99,89,107,93,95,96,94,107,88,98,102,118,116,105,110,113,103,92,94,105,108,107,95,103,91,93,103,101,94,91,110,88,92,106,74,100,86,109,103,99,107,99,105,83,95,111,96,109,110,91,92,99,95,106,112,89,106,101,109,101,93,102,104,99,96,107,99,107,92,89,95,102,98,101,111,112,100,108,113,101,97,99,110,94,108,117,108,112,97,109,109,105,106,112,92,97,106,107,108,95,97,102,94,103,103,97,110,106,108,96,90,102,103,91,112,108,104,100,107,96,97,98,98,99,97,97,94,106,100,104,106,101,98,105,97,113,88,103,99,104,109,77,98,112,106,105,111,103,103,92,102,96,110,114,95,104,97,109,93,102,98,99,108,109,139,115,104,101,101,105,108,113,109,111,112,93,98,94,103,100,107,100,95,104,94,101,96,97,97,110,99,95,103,108,107,108,93,112,104,112,108,107,109,108,110,116,106,110,102,110,94,103,98,93,108,102,114,103,115,95,106,93,104,103,101,107,105,105,112,103,103,107,97,105,108,103,108,101,101,100,97,104,101,107,107,113,80,110,121,97,101,98,112,102,111,103,107,94,120,105,122,110,99,100,105,109,113,97,107,100,94,106,108,95,110,120,98,101,113,98,99,94,109,110,107,101,111,98,102,110,102,97,117,97,113,108,100,116,101,99,101,109,115,103,104,106,94,99,102,97,99,112,103,108,102,108,97,119,91,99,108,98,109,98,101,105,107,103,100,96,98,105,109,109,101,99,103,98,105,102,96,107,109,99,98,92,104,104,102,94,102,95,96,107,103,96,120,102,111,104,103,109,95,96,109,103,102,102,101,84,93,115,103,103,90,104,104,100,97,123,98,105,95,97,103,110,102,116,99,109,104,84,96,103,107,94,101,90,110,101,104,114,95,105,103,99,98,104,101,93,99,105,105,110,108,125,99,100,108,102,105,99,89,96,112,108,104,100,96,96,105,89,93,105,106,137,88,88,106,103,100,100,99,112,102,103,91,115,117,99,100,104,109,111,102,100,93,88,105,103,95,104,99,113,97,101,102,100,105,106,111,111,95,99,109,98,103,102,111,91,115,105,96,99,105,95,104,106,104,105,111,100,96,102,104,100,109,110,94,102,101,96,103,101,106,106,109,110,83,105,90,98,106,98,106,109,101,112,105,105,103,98,111,106,103,103,107,102,102,115,98,115,109,93,114,97,93,106,112,110,105,103,101,100,102,100,116,96,99,98,102,102,99,112,104,102,107,108,101,103,98,97,97,113,109,94,97,106,90,91,99,97,108,108,92,107,110,85,109,110,115,101,100,109,109,101,114,106,106,106,111,94,105,93,100,95,103,98,103,102,103,105,115,106,107,102,106,105,104,92,96,104,97,98,117,95,97,110,98,104,110,112,99,98,106,102,92,117,100,100,97,91,86,100,103,91,110,100,96,93,98,102,104,116,109,97,105,96,81,95,99,106,108,117,86,110,102,106,102,100,104,100,92,113,109,106,97,105,104,104,108,102,105,101,107,105,98,91,100,108,101,104,110,99,118,103,96,102,106,92,103,121,111,109,95,96,104,105,99,106,99,105,102,111,109,98,106,96,101,88,99,108,112,108,95,113,105,98,98,104,116,93,109,104,118,100,98,108,110,99,119,102,96,108,105,105,100,106,101,103,100,104,99,105,100,111,108,103,113,71,96,102,93,109,103,104,103,109,112,105,110,96,98,109,73,103,110,105,104,94,104,99,118,100,106,114,124,102,108,114,103,106,101,105,88,96,94,106,103,96,102,107,109,105,108,112,111,97,94,107,107,99,110,111,98,107,100,113,107,95,110,107,111,97,111,111,95,112,92,104,105,112,103,106,107,109,96,108,117,107,106,104,109,106,100,94,107,102,103,102,115,106,102,102,96,118,109,108,107,107,102,103,93,103,102,99,95,91,104,99,97,94,99,111,108,103,109,123,108,106,101,112,103,123,96,97,105,102,104,93,109,96,95,91,101,100,107,105,106,110,100,99,96,107,104,102,113,114,103,107,105,127,102,109,100,109,102,95,102,107,108,104,109,114,95,72,102,93,113,101,107,124,108,103,102,94,94,89,112,106,108,93,100,99,93,102,101,108,107,99,99,109,99,104,100,98,97,109,109,71,111,82,104,101,94,98,101,82,92,91,109,100,95,100,91,106,104,103,104,104,102,98,96,116,118,99,91,109,101,88,108,97,96,104,106,101,110,114,104,97,99,104,82,100,95,106,104,106,109,111,82,130,90,106,98,105,103,101,109,104,100,102,100,92,92,107,106,91,100,105,113,94,120,110,95,104,102,90,102,109,101,100,111,96,120,96,96,105,99,114,108,88,97,69,99,116,94,98,96,99,94,105,105,110,102,106,96,95,108,106,106,103,100,113,106,106,94,100,109,106,105,101,106,102,101,106,97,100,96,119,110,105,101,98,99,101,97,85,117,100,100,97,103,109,103,110,111,106,99,108,116,101,96,80,106,96,105,113,91,105,99,101,105,99,107,94,99,104,104,117,108,92,104,109,78,100,102,97,105,116,99,99,100,99,96,112,114,102,103,94,101,91,98,101,109,100,71, +431.48703,96,114,98,108,97,105,94,99,90,104,99,101,98,100,102,114,95,109,86,102,104,105,98,100,100,103,95,113,95,115,109,94,104,82,113,100,85,106,107,92,108,104,99,93,88,105,107,104,95,104,108,100,100,101,95,95,93,95,105,108,92,107,93,105,103,98,94,98,103,101,110,106,93,97,112,103,90,101,103,108,100,122,113,101,99,101,115,95,100,91,101,104,97,102,103,99,95,89,118,101,101,105,100,118,98,89,98,95,131,108,105,106,110,92,98,95,103,104,98,105,110,99,113,98,104,100,114,111,95,105,100,94,101,97,118,100,100,100,108,99,108,107,99,96,100,91,100,99,106,103,106,109,106,98,107,107,112,94,114,107,94,103,99,102,98,102,95,96,103,105,98,106,99,122,100,106,101,104,100,102,96,126,91,108,107,100,94,106,90,104,100,105,94,110,107,93,101,99,103,108,98,104,96,104,98,107,100,112,104,110,109,108,100,98,112,99,106,107,100,98,113,98,113,111,102,105,95,98,96,109,100,112,103,100,110,100,99,108,105,94,109,114,97,115,103,109,116,105,108,101,113,107,105,113,96,98,109,98,105,103,110,115,104,96,110,103,105,98,106,90,98,103,97,127,102,90,96,104,98,102,106,114,105,111,98,105,105,102,107,99,103,110,107,115,108,105,108,110,102,120,92,99,113,113,100,111,101,103,98,105,96,105,106,100,106,121,113,116,93,102,98,100,84,115,100,100,101,95,112,108,100,102,101,93,108,103,107,113,101,102,109,105,110,97,105,108,106,103,95,106,103,96,104,110,103,98,112,103,117,105,98,99,102,101,99,101,105,105,98,106,114,98,111,95,105,97,107,105,107,103,98,126,110,112,106,102,101,101,103,99,120,116,95,110,95,67,96,120,96,110,114,119,115,93,106,101,103,107,110,109,109,100,101,104,102,103,104,111,103,93,102,109,101,105,110,101,118,124,101,107,107,95,102,88,97,103,106,111,103,111,99,103,104,99,98,121,103,102,107,101,100,101,109,113,114,110,114,108,108,104,102,112,107,116,111,97,100,100,102,94,108,107,117,104,110,94,94,110,100,94,96,85,113,95,88,100,100,104,106,103,103,98,106,107,92,103,106,104,121,98,120,114,103,100,105,111,111,106,113,105,105,112,112,104,97,113,100,117,101,96,99,102,112,104,96,94,109,101,97,95,104,100,107,106,102,101,105,104,94,96,73,97,93,102,95,99,95,102,100,70,110,104,106,103,101,102,105,102,102,103,103,83,110,104,107,104,100,100,97,109,103,110,104,105,117,107,107,104,105,92,83,102,113,105,103,102,111,109,106,97,112,94,98,98,116,111,98,108,105,106,105,117,116,97,99,85,102,106,104,104,108,104,113,104,103,101,108,114,100,104,108,98,102,103,107,108,102,94,102,120,115,120,105,109,98,105,98,98,109,99,101,109,105,107,104,85,102,101,89,94,107,110,112,86,107,104,98,104,104,108,108,125,110,106,109,100,110,96,98,100,106,101,115,102,91,106,105,112,114,102,115,107,105,96,97,105,98,113,113,98,114,97,108,96,97,87,102,103,99,85,100,99,93,101,101,96,109,128,79,91,105,98,99,101,105,99,92,98,113,101,96,94,101,73,106,98,87,101,99,104,96,105,93,102,94,107,105,101,126,105,101,87,109,108,107,105,99,110,101,105,111,92,99,113,108,87,104,97,108,100,93,110,106,99,86,106,101,107,105,95,96,102,107,101,95,126,113,100,103,98,105,101,106,109,103,100,102,104,97,112,105,104,99,103,101,109,112,105,99,96,99,108,98,104,108,102,102,110,95,108,112,98,109,102,104,95,98,91,114,100,98,105,107,101,107,110,104,101,103,105,103,106,110,104,103,105,106,105,105,107,97,111,102,110,94,98,103,86,101,98,107,84,97,109,108,111,105,99,100,94,108,107,116,105,100,99,101,119,115,95,104,110,109,122,101,98,101,106,122,100,97,100,66,105,88,98,102,109,107,107,92,104,83,96,100,105,98,107,104,106,102,114,107,95,103,103,109,104,98,112,102,102,102,116,103,91,105,109,107,92,72,105,118,105,98,99,96,115,88,96,102,99,100,113,108,106,96,106,110,91,101,110,103,100,92,103,105,101,101,104,67,99,102,114,105,92,109,114,98,105,110,110,103,96,98,99,91,117,98,105,109,104,95,95,101,100,103,108,103,85,100,109,115,95,87,101,105,103,99,98,107,98,122,98,105,88,96,105,89,113,116,91,102,101,103,95,101,111,95,99,99,104,110,104,93,96,110,98,93,102,111,106,112,107,113,115,118,95,95,105,114,100,107,96,96,95,94,104,102,111,100,101,103,96,92,96,89,100,90,110,102,104,108,93,99,111,103,101,109,106,96,109,104,103,105,101,101,98,96,110,98,110,111,102,104,107,94,104,103,100,80,97,94,109,115,113,102,95,106,99,108,110,94,91,100,101,101,94,124,106,98,119,102,100,94,112,96,99,109,99,97,101,103,109,99,110,97,102,105,105,91,109,106,117,104,108,107,107,109,98,108,101,117,107,101,103,104,95,99,121,95,95,93,95,103,75,104,101,98,111,90,94,113,105,104,105,106,102,113,107,98,103,105,106,104,117,103,91,108,96,93,127,105,99,100,107,102,117,103,87,101,105,100,102,103,102,101,104,101,87,109,98,119,101,114,105,101,91,102,94,107,107,109,104,105,112,103,98,91,111,106,104,97,99,102,101,96,109,114,112,102,112,87,110,103,93,106,100,121,103,103,94,91,106,95,102,108,106,97,121,106,83,111,103,112,109,115,115,81,92,101,83,105,107,107,106,100,106,104,106,102,118,103,103,107,96,92,105,92,109,109,112,115,102,105,90,108,94,101,101,95,106,107,103,107,111,110,95,98,108,107,105,92,111,107,102,93,98,113,102,105,117,107,103,108,107,75,101,81,109,87,113,98,91,96,76,106,105,103,94,108,103,101,108,102,110,104,98,110,102,106,103,102,105,91,101,97,108,87,109,90,101,114,97,93,100,98,106,101,112,96,111,109,104,103,92,116,105,109,99,108,91,128,95,100,94,117,108,101,95,103,99,102,110,103,100,92,98,95,101,106,102,104,108,106,104,100,108,101,105,98,95,99,94,99,108,106,87,98,95,102,95,102,107,99,96,106,99,108,79,111,95,103,98,105,104,95,103,94,97,97,96,105,105,87,103,109,94,111,99,106,112,100,104,110,88,105,106,88,111,107,93,108,100,100,104,96,88,110,100,110,124,120,98,100,102,100,103,101,91,107,102,96,98,97,102,112,97,95,102,96,102,104,98,113,97,102,100,80,101,99,99,104,100,104,102,97,92,105,106,93,95,112,117,91,117,107,105,111,105,103,108,99,106,103,98,106,98,99,107,97,105,92,113,100,96,104,107,105,90,108,114,100,92,102,94,101,103,108,99,107,99,99,103,105,99,105,89,108,102,97,105,92,134,99,109,101,109,100,95,94,110,110,104,101,106,103,109,102,117,105,113,112,109,100,106,99,96,106,117,101,106,114,101,114,96,95,102,108,106,91,102,110,85,106,106,105,109,100,98,104,106,103,101,112,116,103,106,103,107,106,98,112,103,99,108,106,75,108,100,104,106,103,103,104,101,100,113,101,103,97,103,98,106,97,99,101,91,96,104,106,109,104,91,97,102,113,108,87,101,120,106,112,107,111,105,102,101,107,100,95,100,121,97,94,95,99,103,104,99,102,108,105,99,116,96,90,98,104,105,97,103,107,102,102,101,91,115,114,110,108,101,103,100,109,96,98,110,102,87,105,108,84,112,98,99,94,99,111,105,100,102,102,105,108,97,95,95,97,107,109,113,105,110,93,97,109,90,111,113,98,105,105,107,106,101,111,104,116,109,108,98,120,95,119,102,99,106,95,88,109,99,88,99,98,100,100,111,103,107,105,112,100,96,100,99,91,110,106,117,97,103,79,111,113,99,107,108,110,98,105,109,107,110,103,117,113,102,111,97,102,109,107,95,86,116,95,104,127,89,105,88,92,100,97,107,108,108,103,94,94,100,100,105,115,98,98,109,108,102,90,95,106,105,103,98,98,105,99,82,121,127,99,102,107,104,85,105,110,110,105,101,98,86,99,107,104,97,95,96,101,116,124,115,121,115,104,107,117,106,103,124,130,104,100,79,112,92,106,100,106,96,93,98,105,96,102,103,95,98,89,100,95,100,99,112,87,102,109,129,111,89,102,104,102,95,116,91,107,113,84,108,97,101,104,97,101,94,113,103,96,104,111,92,99,108,94,112,100,106,108,112,99,105,94,98,95,100,100,111,105,95,118,66,99,95,106,102,91,103,103,103,102,104,103,102,106,98,106,108,105,85,103,104,105,102,97,103,102,92,111,109,94,98,99,116,90,94,97,98,107,105,98,103,107,91,91,91,101,89,102,102,106,109,113,102,101,111,107,116,105,103,99,105,108,102,93,105,102,101,86,90,103,96,107,104,114,110,104,103,96,117,102,104,102,104,108,100,94,112,100,105,97,87,104,102,87,117,105,133,100,103,107,102,116,113,112,101,104,102,102,100,110,108,100,106,112,108,111,104,115,98,104,104,109,99,104,100,97,102,92,100,103,104,93,109,100,97,111,97,114,103,111,112,102,106,123,105,104,103,114,107,104,99,91,102,92,96,103,98,106,99,103,97,98,94,107,116,100,106,102,88,95,92,87,100,119,87,97,104,104,103,115,103,102,104,110,91,103,108,99,100,101,115,94,104,101,91,101,98,109,100,88,109,109,105,109,104,101,112,105,97,98,108,83,130,98,121,100,109,97,97,105,97,98,104,96,102,104,113,107,100,95,109,113,109,109,101,106,114, +431.62735,98,88,113,101,116,104,130,108,101,98,99,92,87,114,112,105,121,92,107,106,95,100,82,95,106,94,100,83,103,105,94,91,125,95,99,112,90,93,104,95,98,102,113,115,96,88,103,97,93,105,103,117,99,104,113,108,104,103,92,96,100,96,94,99,103,88,98,108,98,94,93,99,95,98,101,110,90,102,99,93,98,103,91,100,101,97,104,109,109,105,101,95,96,106,108,101,103,102,117,100,106,102,103,95,98,99,105,112,91,109,91,99,103,97,109,104,100,107,104,112,107,108,104,117,104,106,115,98,118,82,110,103,104,96,104,108,102,91,94,100,95,109,105,95,95,103,96,97,104,110,101,101,103,95,94,108,105,99,105,95,102,108,109,99,98,104,99,103,104,110,102,104,98,101,100,113,100,95,110,109,106,109,97,96,103,111,106,103,107,106,94,105,94,106,98,95,103,96,105,105,103,107,112,109,95,97,117,104,105,108,96,112,108,116,100,102,97,107,102,98,92,108,105,107,108,101,104,106,100,100,110,102,108,114,106,97,104,115,108,98,101,99,110,97,106,106,100,101,106,97,102,103,99,109,112,95,109,104,104,105,105,91,111,104,87,102,105,101,106,85,103,97,101,102,113,98,104,96,101,99,105,100,102,88,100,106,97,103,99,100,99,97,98,109,98,109,110,98,108,102,92,109,84,98,105,135,99,85,96,104,96,90,104,106,103,98,108,98,101,81,111,92,112,111,99,100,97,105,96,113,93,100,104,103,105,97,102,101,90,105,96,100,101,94,113,103,107,116,106,95,102,105,98,100,106,106,102,112,99,99,105,105,95,95,93,95,109,107,98,119,77,100,108,103,102,105,112,109,105,91,112,104,86,109,100,101,113,105,103,106,122,102,103,108,100,95,96,95,105,117,96,116,102,105,99,101,101,101,103,98,87,102,96,103,108,98,101,96,109,102,116,88,97,97,102,95,99,91,95,94,118,107,108,106,106,112,101,102,99,104,114,105,98,113,97,113,109,98,99,108,110,117,100,115,99,93,104,100,94,120,96,103,102,117,103,104,96,100,90,94,107,110,105,103,105,102,105,108,104,104,97,112,109,94,94,122,105,101,103,99,91,119,112,102,99,100,96,100,116,98,117,113,100,106,101,107,104,100,98,101,120,96,106,95,100,106,100,92,91,99,106,99,104,100,102,100,104,101,106,110,105,113,93,102,106,121,85,99,92,114,99,107,87,101,113,117,101,100,92,112,102,104,98,102,104,97,105,105,105,100,99,108,100,86,100,108,107,91,98,112,98,96,107,103,95,100,100,107,108,106,104,111,98,96,99,106,104,112,103,101,107,96,106,100,99,105,103,108,96,102,98,102,117,108,100,98,98,78,111,104,106,107,100,102,116,100,97,98,102,99,108,109,100,96,79,103,97,110,98,130,101,96,99,109,100,116,96,97,117,96,111,100,103,102,99,100,112,100,109,112,110,105,103,104,93,103,106,107,108,100,98,90,99,105,103,109,108,96,107,99,105,109,98,106,97,106,87,91,98,97,104,97,97,97,102,110,100,108,99,109,103,110,101,113,92,97,116,98,93,114,102,104,97,94,104,107,108,104,106,98,91,104,102,96,85,86,100,100,102,96,89,84,106,95,104,107,92,104,110,112,100,100,105,91,97,121,106,96,102,97,109,97,95,103,111,109,116,98,103,99,98,112,102,94,95,105,109,104,113,102,104,109,104,99,96,111,101,104,105,85,105,104,108,102,98,105,95,102,111,103,101,99,104,99,107,105,104,109,109,107,89,102,98,107,96,100,99,98,104,96,106,102,96,99,111,102,66,95,99,101,113,104,108,110,123,105,109,105,112,104,108,108,105,112,107,99,98,104,103,110,105,106,116,93,99,100,104,99,98,96,99,98,101,98,109,99,102,112,106,99,97,97,103,111,89,92,109,89,97,105,90,107,90,93,98,96,107,106,103,109,89,113,111,106,102,104,98,107,102,108,108,88,109,109,89,97,109,105,102,86,96,121,95,111,93,90,97,107,107,95,95,112,109,104,108,109,98,107,104,106,94,111,99,79,103,92,116,111,103,96,125,104,112,100,114,108,103,110,109,106,107,106,102,104,104,109,101,98,109,108,101,99,102,97,111,96,112,99,113,105,109,101,97,121,99,94,87,108,93,104,108,98,110,98,116,95,104,92,103,108,96,96,91,117,101,106,104,106,102,105,108,104,109,130,100,100,87,98,104,109,99,98,109,115,109,98,99,99,109,108,103,105,101,94,104,118,115,110,108,95,104,102,94,100,114,91,105,109,106,105,107,100,102,93,102,105,100,101,108,99,92,109,101,114,107,95,96,99,89,98,102,102,101,99,96,106,102,102,102,108,108,104,101,100,103,103,106,106,91,97,108,104,96,106,104,98,109,92,100,104,100,98,106,99,100,100,93,104,97,98,103,109,92,99,91,96,95,93,117,111,130,102,116,106,111,101,92,102,103,83,103,92,105,104,97,93,107,105,113,98,102,118,121,106,70,103,111,106,104,102,108,106,103,101,108,104,112,101,112,102,100,113,100,85,112,96,95,77,98,93,96,105,93,106,97,103,125,105,100,94,115,94,118,103,112,100,104,101,88,88,101,84,103,92,108,94,102,103,101,102,128,106,104,93,104,91,96,92,101,106,106,99,110,102,97,114,111,100,83,110,95,107,100,95,77,104,108,93,113,103,104,104,99,96,90,74,106,102,105,100,109,105,102,103,105,100,118,102,94,110,105,109,84,105,100,97,100,111,109,95,108,108,91,109,105,97,103,103,97,110,96,110,112,95,106,98,113,119,99,104,97,112,109,102,99,95,103,101,101,107,114,90,92,96,112,93,91,98,105,96,105,100,97,114,102,98,98,105,95,96,115,110,92,110,107,100,101,110,105,97,113,99,108,106,96,102,101,109,122,102,103,93,91,97,113,111,95,111,103,83,100,99,93,99,120,103,99,105,108,98,97,106,95,91,108,98,109,103,110,98,107,105,96,107,105,95,100,104,96,106,94,101,106,101,92,106,96,107,103,104,90,104,96,97,101,95,103,109,90,103,108,101,94,105,95,104,105,108,116,90,87,106,109,110,94,105,106,105,98,91,93,92,88,102,96,91,100,105,116,109,90,95,86,94,95,105,95,91,104,110,112,105,95,113,107,96,84,110,98,112,104,99,108,99,101,95,96,108,103,106,141,109,95,90,108,102,109,115,106,93,102,104,113,109,123,98,104,101,120,114,99,94,93,92,104,105,92,112,105,87,105,103,100,100,109,106,102,112,102,104,108,101,101,131,96,91,102,105,117,92,109,108,107,114,107,102,114,98,96,108,94,99,113,109,101,96,108,107,104,105,114,97,98,101,116,92,116,92,102,108,92,117,115,111,102,99,112,102,109,100,103,100,105,110,103,97,101,90,99,108,97,105,129,102,97,106,98,107,103,100,112,93,96,107,103,98,93,104,111,98,113,104,98,101,91,96,112,112,97,94,108,103,97,109,97,101,117,106,102,101,100,111,99,91,101,108,105,110,95,108,103,104,110,112,99,103,95,104,84,99,110,87,93,111,105,108,98,86,107,99,93,104,104,100,108,100,107,108,104,100,101,102,96,99,106,102,97,87,113,110,92,100,90,105,100,96,99,109,91,101,100,111,102,100,97,123,96,96,104,105,99,103,114,105,93,107,107,106,94,90,96,104,115,98,109,102,114,108,105,116,93,111,90,79,104,103,110,101,101,89,110,108,109,99,105,102,100,101,103,101,97,111,97,105,99,108,109,113,101,103,115,90,113,105,99,99,95,92,99,102,106,106,97,111,95,101,104,105,103,99,95,98,87,105,98,96,95,100,103,91,95,107,67,96,98,100,99,107,103,104,98,98,101,103,113,99,107,81,106,72,116,106,109,101,73,102,99,92,110,108,95,108,101,112,91,109,100,103,100,113,105,100,105,91,109,90,99,99,95,103,103,105,101,100,73,106,100,91,101,114,116,94,94,91,100,102,115,99,95,113,107,104,91,94,107,102,104,103,100,96,98,104,102,87,112,99,102,103,102,109,98,103,96,104,103,105,96,102,112,102,106,99,92,98,99,109,102,109,81,110,100,94,101,102,91,109,103,101,107,103,91,98,99,94,96,105,96,110,96,97,101,79,102,102,115,89,109,111,102,97,98,109,94,105,109,103,116,95,87,96,101,106,98,110,105,103,102,131,105,92,92,105,108,99,107,104,100,106,108,99,103,94,87,104,109,108,80,109,100,110,99,91,101,99,104,99,94,102,98,109,109,91,98,104,100,115,92,99,97,106,101,104,119,108,98,111,106,103,105,99,95,113,100,105,102,108,106,95,99,107,97,112,102,114,97,99,106,105,101,89,99,97,92,102,100,113,89,93,97,101,98,105,95,103,105,97,97,97,104,97,108,112,106,109,110,107,97,98,100,111,96,90,103,113,110,96,99,106,93,105,104,100,105,97,90,104,91,105,90,103,98,100,120,102,91,106,103,101,105,91,104,95,101,72,100,96,106,100,108,88,96,92,99,95,110,105,96,104,109,101,100,106,99,102,106,82,112,94,99,112,103,97,94,102,91,108,101,98,107,92,91,97,103,101,102,101,108,91,108,107,103,91,117,98,100,84,92,102,94,92,101,89,97,108,104,106,101,91,85,99,109,108,91,90,99,105,89,94,97,101,93,102,84,99,100,96,98,98,101,101,106,103,102,109,118,93,89,101,100,95,95,111,113,95,102,103,88,90,105,108,96,101,105,83,103,98,104,100,101,102,102,94,101,95,117,97,108,104,85,111,99,96,97,106,91,104,101,101,96,79,85,115,101,107,94,83,98,106,87,99,98,108,102,110,93,99,119,110,83,90, +431.76764,109,93,107,101,92,92,112,103,112,86,97,101,91,104,85,81,102,104,103,97,113,81,100,117,104,98,104,96,101,86,98,104,105,110,109,106,90,99,101,102,105,112,97,104,98,106,97,100,91,100,96,94,100,98,101,69,83,109,97,101,101,106,104,110,113,82,90,102,101,105,94,99,114,104,103,104,96,89,97,109,87,108,110,91,105,102,99,98,97,85,94,92,98,101,99,94,104,97,101,106,98,96,95,100,100,98,94,89,90,100,103,111,99,105,82,105,92,102,105,101,95,95,105,101,100,103,104,93,104,98,96,110,99,106,105,90,90,98,88,108,97,103,106,105,108,105,99,102,99,100,112,94,80,95,89,101,88,106,95,110,100,97,99,110,94,92,110,89,94,105,97,114,101,97,96,100,95,92,96,98,108,98,104,115,106,106,100,91,95,102,101,107,88,106,95,91,101,111,102,104,96,97,91,96,98,92,101,87,100,113,105,92,97,105,90,96,97,100,108,105,95,113,94,90,99,104,103,104,98,96,100,88,96,112,104,95,96,102,118,108,100,103,111,92,100,77,113,109,128,93,96,110,116,105,95,114,90,106,89,107,99,100,106,103,90,103,111,91,118,91,105,102,106,87,112,98,106,103,96,103,107,100,114,99,102,98,89,99,108,105,99,100,109,110,108,109,104,109,102,110,97,109,101,87,91,106,100,104,99,103,104,102,86,100,108,104,91,104,91,102,96,85,113,97,109,105,97,88,108,104,108,93,101,105,103,105,104,90,103,99,99,106,106,95,99,95,100,105,128,105,101,105,107,101,101,102,110,112,104,109,98,101,101,112,96,96,109,98,105,112,89,110,105,104,109,109,108,102,93,112,104,98,106,97,99,91,112,116,98,106,106,97,103,102,91,88,103,106,90,104,94,91,101,98,100,112,96,106,113,84,110,98,102,99,103,95,100,98,103,96,85,97,100,100,101,102,96,99,75,102,106,104,119,98,106,96,97,108,103,112,98,106,100,97,100,106,104,108,96,104,102,91,99,112,102,97,98,100,100,101,101,104,114,104,101,102,112,101,101,98,95,110,90,107,100,100,101,98,100,113,97,102,111,87,103,97,96,98,96,106,104,117,109,101,97,104,96,108,106,93,103,106,103,104,101,98,98,103,99,80,107,101,97,110,101,103,76,98,93,96,102,93,100,95,79,109,97,100,99,95,92,108,105,89,102,109,117,104,97,118,105,106,101,94,86,86,98,92,102,97,107,98,91,105,93,103,84,103,101,97,99,103,98,120,96,107,114,92,106,95,96,95,95,101,106,103,97,98,128,96,106,109,99,95,105,83,109,92,91,91,100,107,110,92,117,105,109,112,114,105,99,104,95,102,103,100,101,98,100,101,113,98,96,109,110,101,91,101,106,106,113,94,94,103,112,93,102,108,106,104,101,103,107,112,97,109,104,93,104,95,100,94,109,111,110,105,104,93,99,104,89,109,103,101,94,110,111,117,95,95,95,104,91,107,96,103,103,94,119,101,98,102,104,99,98,99,112,96,113,87,107,94,98,95,104,96,94,93,98,102,99,95,111,101,96,76,107,103,91,99,109,96,103,103,95,100,100,107,108,105,105,97,89,101,92,83,95,95,95,127,98,103,107,106,101,94,105,98,76,107,103,108,96,87,103,98,105,104,117,96,104,93,96,87,102,107,95,110,104,101,111,119,98,105,104,95,104,92,106,95,104,98,100,98,95,95,96,96,94,92,104,97,109,105,102,96,100,89,92,94,98,102,107,118,98,108,99,99,97,112,99,105,94,92,96,99,100,104,95,114,106,96,93,93,108,103,108,105,102,101,110,111,83,100,109,105,109,102,103,104,105,113,96,108,94,125,104,106,113,97,120,100,110,91,91,105,108,100,108,127,108,100,103,102,97,91,105,100,90,87,106,96,95,105,94,114,103,105,101,108,94,97,72,101,101,106,95,77,111,102,108,97,100,100,91,112,113,104,96,98,98,101,102,90,95,94,110,108,98,107,106,108,107,105,98,125,83,106,94,100,109,108,104,110,101,95,103,100,97,104,104,105,109,93,105,99,92,102,93,79,112,104,109,89,98,99,109,112,108,107,96,107,119,86,105,101,107,92,109,105,123,115,97,113,106,102,113,109,112,102,122,126,97,109,102,100,95,110,101,101,104,102,101,106,109,103,102,100,103,101,87,109,97,103,103,108,98,99,96,107,106,102,101,94,105,108,106,100,98,95,96,86,100,95,96,95,98,95,93,99,104,107,103,101,104,100,104,110,98,95,93,91,105,132,109,115,102,109,94,106,96,109,108,97,95,97,91,128,105,95,100,101,95,96,100,87,96,107,100,97,104,98,100,97,85,90,106,101,103,96,100,101,98,100,90,104,105,101,101,107,114,98,97,100,104,99,100,101,102,79,96,117,97,121,112,113,104,107,95,111,113,98,97,105,95,112,96,102,100,96,108,93,112,90,114,103,94,96,121,109,100,105,111,96,95,113,103,99,101,94,117,101,107,105,93,101,97,109,111,96,95,105,105,101,106,105,101,95,98,103,104,107,112,101,105,107,104,104,108,100,103,94,101,106,102,105,107,105,93,102,119,105,106,106,99,113,105,93,109,98,100,97,120,103,106,105,107,117,108,113,89,96,106,104,108,99,95,91,104,97,101,116,104,98,112,99,115,89,102,99,101,112,107,103,103,105,100,98,107,105,101,95,113,104,102,109,109,99,98,114,112,105,110,109,104,113,99,113,108,115,102,102,94,93,109,85,94,116,105,102,109,98,105,108,102,105,82,113,102,108,121,109,109,109,112,101,110,110,103,108,109,105,101,104,103,107,79,100,101,98,102,101,108,100,110,93,96,102,107,104,115,106,104,110,100,92,102,108,106,100,109,108,114,113,112,105,100,106,110,113,98,99,103,102,106,110,105,97,91,100,96,106,92,99,100,105,105,106,107,102,114,109,94,113,98,107,103,98,111,110,108,102,115,97,109,98,101,104,106,90,105,94,100,94,108,104,100,94,112,107,99,112,109,108,98,109,103,100,111,94,111,118,99,106,91,109,109,108,108,105,106,114,97,101,125,97,102,117,97,99,102,100,105,117,105,108,103,104,111,100,91,99,100,101,106,111,101,97,97,99,115,110,95,95,111,97,113,97,104,106,96,113,105,95,100,103,102,91,108,93,107,88,97,100,83,94,109,99,97,104,109,109,102,95,95,113,114,112,107,105,96,112,106,110,105,117,102,102,124,102,102,94,102,99,99,112,99,110,104,100,100,96,106,105,97,103,102,104,108,87,109,92,109,101,105,99,93,95,105,94,104,107,97,103,102,102,104,100,97,102,114,103,108,96,102,97,101,103,111,120,110,118,101,98,99,98,102,96,112,99,94,104,92,95,100,102,88,110,99,118,103,102,101,102,111,95,107,111,103,106,87,99,104,101,85,98,116,95,109,102,109,110,104,96,107,99,103,99,108,105,95,111,119,96,103,119,119,100,102,90,112,103,74,109,106,118,114,98,117,96,95,104,98,81,95,106,104,98,106,105,100,116,105,110,109,109,98,96,106,99,100,91,101,112,90,106,103,89,103,96,96,102,103,112,103,112,103,84,107,109,104,98,99,113,115,91,106,103,101,102,98,98,97,106,107,99,104,105,93,104,105,101,95,107,112,92,116,103,100,103,101,106,117,114,110,100,102,98,108,109,102,69,108,101,112,121,96,117,101,104,109,109,111,95,107,102,119,106,65,99,96,105,103,102,87,97,103,97,111,108,97,130,98,101,103,109,103,106,104,96,113,110,104,93,109,107,106,99,93,75,97,108,97,109,100,110,108,104,105,94,87,112,102,89,101,110,101,97,99,95,107,88,100,100,93,100,73,84,98,96,102,95,62,113,96,100,96,99,104,101,113,100,111,109,109,99,100,110,91,99,103,107,104,117,103,109,91,108,83,102,95,103,98,100,105,100,115,107,89,106,102,111,104,106,99,87,92,106,112,117,105,103,103,102,101,99,105,102,105,95,105,104,97,104,102,125,111,108,109,106,102,103,110,102,99,97,99,105,106,91,104,111,102,106,107,104,104,106,99,101,99,102,111,106,98,112,113,104,108,100,102,94,101,111,100,108,86,105,106,101,115,96,80,106,101,91,103,102,98,106,114,117,101,89,91,116,104,104,106,104,110,103,100,104,87,107,98,89,95,93,106,106,103,100,104,104,106,102,104,94,91,102,101,109,103,103,87,107,90,111,113,106,101,93,113,103,108,91,87,117,91,102,105,105,98,101,100,107,99,112,104,110,97,99,89,99,105,100,91,104,105,106,102,101,101,112,111,98,104,94,94,116,113,107,100,99,108,100,115,100,121,107,104,96,108,113,106,101,102,109,98,95,113,104,102,102,102,101,112,93,114,102,104,95,106,91,87,104,103,110,107,110,108,101,97,103,100,96,105,112,93,103,101,109,97,103,101,104,80,104,92,98,95,113,103,105,103,62,102,102,96,108,102,98,105,95,90,102,116,99,103,110,103,100,101,102,99,105,93,105,101,94,109,96,106,106,107,100,92,102,96,108,99,99,100,100,103,106,109,98,96,100,100,96,100,102,98,113,100,103,109,100,109,98,94,112,111,90,94,111,94,111,97,99,101,105,100,107,113,91,108,102,98,100,113,100,113,100,98,100,103,131,121,106,101,104,114,96,110,106,99,95,103,111,100,101,112,108,106,94,105,98,95,102,102,81,102,102,108,115,111,105,104,113,103,107,102,100,94,108,91,89,128,96,98,119,100,106,100,107,111,108,97,102,95,100,108,107,102,102,109,107,114,115,94,85,89,101,116,93,107,101,100,86,95,106,96,100,95,96,95,99,102,92,96,103,103,119,98,99, +431.90793,81,91,108,91,87,95,103,102,95,90,100,106,100,94,94,107,89,109,108,111,100,105,117,97,95,98,101,101,115,85,98,99,77,108,96,99,94,104,98,100,99,86,99,113,99,93,89,109,104,96,95,105,99,93,112,94,83,84,106,111,102,101,103,95,100,105,102,99,99,90,84,97,104,106,100,102,94,95,92,100,99,108,108,90,108,97,106,100,91,108,108,103,101,101,106,100,112,91,97,110,102,106,100,112,110,99,77,94,103,108,100,100,96,95,95,86,101,88,98,110,109,66,110,107,107,105,103,95,110,129,94,107,98,109,98,113,103,99,90,99,104,103,92,97,87,105,94,104,102,102,100,100,120,100,103,98,101,99,99,99,102,98,96,112,86,95,95,105,97,107,95,99,101,103,111,113,114,91,99,97,106,100,84,126,107,100,93,97,108,102,99,91,98,106,97,109,97,102,105,108,107,100,86,109,99,97,96,102,112,94,110,97,102,102,94,90,103,103,122,99,102,102,105,92,98,108,106,110,109,85,106,98,75,94,106,100,111,113,95,94,104,105,113,100,102,117,102,104,103,103,98,96,112,115,103,104,89,83,98,93,101,103,103,102,99,105,96,103,90,100,97,96,109,99,100,98,109,102,97,101,92,103,107,102,101,95,95,100,112,125,108,108,106,105,106,104,103,113,103,114,106,96,98,111,100,121,107,108,98,102,94,106,91,110,100,90,98,91,95,104,105,99,114,92,105,98,91,101,103,113,108,94,95,103,100,99,106,97,107,95,98,113,104,115,105,92,103,110,106,97,95,108,103,94,106,102,106,103,92,100,96,109,101,75,105,96,92,109,101,93,108,110,98,101,103,96,103,104,96,96,95,95,98,104,94,95,104,108,116,102,118,109,105,101,98,99,106,96,104,112,85,106,115,104,92,80,101,100,107,110,96,105,99,105,98,103,109,103,108,98,110,106,100,105,101,95,100,97,101,98,94,103,94,98,102,99,96,106,100,97,109,93,106,95,92,111,100,106,107,105,105,104,102,92,99,108,95,95,102,106,98,112,106,112,105,103,101,106,111,98,93,106,105,97,120,98,107,117,105,102,104,115,101,91,95,97,100,93,108,99,100,105,103,101,97,99,103,97,109,99,108,100,98,106,103,100,87,106,107,84,114,101,105,104,103,95,93,101,101,101,102,109,91,98,107,102,102,100,93,99,105,88,108,99,94,101,100,103,90,102,108,99,92,96,108,96,88,94,103,111,106,101,115,101,94,99,100,104,99,102,112,91,101,98,101,106,104,111,114,110,98,102,100,93,112,98,110,103,113,94,107,99,107,102,101,107,102,101,105,98,92,114,106,109,105,96,100,101,97,105,81,98,103,106,114,102,99,78,105,106,99,104,95,109,103,99,104,91,110,100,102,105,101,106,108,105,101,106,98,102,99,98,112,113,98,87,105,81,104,98,88,81,101,97,92,87,101,102,101,105,91,108,108,110,97,99,105,108,102,98,97,118,97,100,103,99,90,107,99,100,105,109,98,89,109,103,104,103,101,95,110,104,117,99,106,82,103,91,107,116,101,89,104,101,101,104,102,111,100,97,95,93,100,114,106,108,109,107,102,97,95,86,99,90,81,87,110,98,101,98,96,102,101,107,94,105,106,107,105,106,121,101,96,101,104,100,91,91,103,104,93,100,99,108,87,96,118,106,104,113,101,106,102,104,104,99,103,107,116,99,111,105,107,104,90,93,101,103,97,96,112,94,102,110,90,100,112,115,105,116,97,92,115,108,104,97,98,100,96,116,95,121,110,103,109,94,103,90,98,117,98,102,98,109,112,99,110,116,103,91,100,98,102,95,108,104,111,105,110,93,110,98,100,101,115,104,98,95,99,101,99,98,97,119,101,117,101,104,98,102,96,102,105,98,88,115,101,87,103,92,97,97,89,104,96,99,115,96,100,124,102,93,98,128,95,95,109,95,121,105,88,105,97,113,91,105,107,96,102,99,109,101,101,117,104,96,95,113,110,101,97,105,93,105,105,95,99,112,100,107,120,111,72,103,83,92,101,99,87,106,106,105,97,109,109,107,102,107,113,94,108,91,110,102,94,134,101,114,97,105,92,107,91,93,114,97,103,90,95,94,80,128,107,96,92,105,106,104,101,109,101,96,99,96,112,98,111,95,115,102,105,102,97,90,90,99,99,101,84,98,102,94,101,92,103,103,95,90,102,100,99,105,107,102,102,101,88,86,103,105,116,98,103,105,92,105,99,97,95,98,96,96,105,99,103,103,108,90,99,101,90,83,97,113,110,100,101,116,103,104,103,105,98,95,105,103,106,105,98,100,101,104,99,102,100,109,99,101,104,99,122,90,97,105,110,97,114,119,113,99,113,107,96,113,99,100,101,99,79,91,106,97,102,102,105,87,93,102,101,90,85,107,117,111,93,107,100,107,84,101,97,113,90,104,99,113,100,100,113,108,116,105,104,80,101,99,105,102,104,109,97,94,113,110,96,110,104,99,113,98,105,103,102,102,104,89,102,105,98,102,110,101,119,108,91,106,103,100,107,109,86,105,109,98,110,109,106,103,102,99,94,101,92,98,114,104,90,100,102,105,109,101,119,100,118,114,107,99,98,108,107,88,117,93,106,87,113,100,103,97,96,88,101,95,95,100,106,89,104,87,105,101,86,84,104,106,108,98,102,111,108,109,122,100,102,98,84,87,102,105,102,106,99,101,102,103,99,98,103,105,96,108,90,109,119,102,107,110,101,94,103,108,101,84,109,96,86,108,117,104,99,103,108,89,104,103,104,104,92,103,102,95,102,99,102,107,113,102,93,105,104,94,120,114,100,108,109,100,103,109,98,97,106,90,111,103,107,98,105,105,105,101,99,102,107,94,98,112,99,126,105,94,113,107,117,103,105,110,100,103,94,108,103,95,91,106,88,105,96,105,111,99,99,103,110,116,107,89,104,102,98,107,106,85,108,104,108,111,102,102,108,106,104,92,98,98,100,109,102,106,97,86,102,112,112,108,106,110,94,103,106,101,109,97,105,105,106,105,99,95,98,110,98,103,99,100,100,100,92,112,107,105,99,103,100,102,97,110,103,99,118,95,104,103,113,126,90,107,87,103,99,101,105,109,94,107,98,100,107,124,98,104,116,102,104,100,104,95,95,99,100,93,88,113,109,94,109,105,106,98,103,101,105,100,107,103,101,99,109,107,108,105,84,94,94,105,105,124,103,95,94,107,116,108,106,106,109,101,108,99,111,102,111,102,94,104,102,95,105,98,104,96,105,98,96,105,98,103,103,95,98,107,95,110,94,100,95,101,96,82,92,102,109,92,113,99,84,109,110,99,99,112,104,96,101,106,102,100,103,94,99,104,109,104,117,109,111,101,94,103,97,105,105,98,94,97,95,102,105,102,97,105,92,103,93,104,97,109,108,88,99,99,102,91,96,102,102,117,108,98,98,111,106,109,104,83,112,95,106,101,104,106,106,89,107,98,107,100,95,93,114,100,92,108,100,100,108,111,121,100,91,104,111,108,107,109,104,119,97,110,104,102,103,111,103,101,108,91,109,92,95,99,116,105,117,99,101,94,92,99,76,106,110,109,113,101,96,106,113,90,105,117,98,97,94,98,100,111,97,91,100,105,105,101,95,94,103,97,102,104,99,112,110,103,101,102,109,98,103,109,100,109,95,96,96,104,77,109,95,90,113,99,96,99,101,110,107,100,103,103,103,96,102,102,111,116,100,104,105,103,106,103,102,96,104,95,102,77,111,104,99,106,104,96,96,113,100,109,103,119,105,98,101,107,104,97,91,121,96,118,98,111,93,93,104,98,110,104,103,103,107,95,103,101,82,95,99,106,107,89,103,93,91,108,91,106,112,112,97,87,109,95,100,96,98,103,108,102,110,97,99,102,108,104,106,102,100,105,99,98,100,113,96,110,102,85,105,109,103,93,108,106,97,111,93,98,108,104,91,109,108,97,100,113,109,75,105,110,120,102,102,99,99,100,102,99,117,103,104,105,115,99,91,110,105,103,106,104,94,105,95,107,103,107,99,101,103,96,102,104,106,97,102,91,104,115,101,103,106,113,103,89,98,107,112,105,106,105,102,107,110,98,103,113,99,104,92,104,109,108,99,94,104,106,106,97,114,102,97,93,108,111,103,102,109,96,101,105,99,91,103,93,98,104,101,99,104,91,102,105,107,94,101,96,101,93,110,107,107,97,98,108,103,92,96,114,101,98,103,99,104,94,92,103,101,106,108,93,94,103,101,118,108,97,103,112,106,101,99,107,113,104,106,102,105,97,82,96,108,95,84,101,109,102,113,101,99,99,111,112,107,104,98,109,109,103,103,97,99,101,83,115,102,92,95,104,102,108,92,104,107,92,97,102,109,104,102,92,99,108,121,107,91,96,105,99,92,96,98,116,95,99,99,109,96,104,104,102,106,97,106,94,101,101,99,113,80,102,100,115,103,101,104,103,100,102,100,103,98,104,105,94,100,95,99,105,109,104,96,100,106,114,100,96,102,113,101,90,109,123,113,105,103,99,102,104,106,113,116,104,97,95,100,106,109,94,114,106,95,104,105,133,91,106,108,69,104,105,105,98,107,92,104,89,110,93,91,111,106,104,66,107,114,95,75,104,98,107,109,101,85,92,104,123,95,106,111,104,103,104,101,113,116,105,97,70,99,101,92,104,99,105,101,103,90,102,109,110,93,112,106,94,105,101,100,88,88,111,109,119,88,97,97,103,106,104,101,106,93,107,90,99,108,102,104,117,95,109,100,114,103,102,120,84,105,92,96,103,115,112,105,110,108,113,88,105,107,97,112,103,87,101,93,97,90,95,102,102,98,93,91,102,106,88,100,97,108,110,113,103, +432.04822,99,100,109,91,113,82,97,98,101,95,93,95,114,95,105,112,98,105,114,99,100,83,100,97,109,94,105,99,111,78,91,103,110,92,110,95,103,106,94,103,100,97,100,100,97,100,96,100,87,106,89,85,98,105,104,107,94,87,94,93,94,96,106,97,92,104,89,95,94,93,105,106,81,99,99,99,100,102,95,91,112,103,97,101,96,100,97,96,97,113,105,100,109,106,99,102,105,97,97,103,96,102,104,99,92,103,98,93,101,106,98,102,87,103,94,93,100,88,93,101,99,91,107,105,97,104,109,95,100,101,112,99,102,95,95,104,102,99,97,99,95,104,84,94,101,102,96,94,106,104,97,99,101,103,99,102,98,95,100,92,100,109,101,119,107,102,108,97,102,105,106,103,94,98,97,119,95,94,108,101,107,94,84,114,96,94,94,104,103,94,103,108,97,95,105,112,100,85,95,98,105,105,102,99,99,98,103,99,110,94,97,106,105,109,102,96,96,105,98,106,102,104,88,91,100,104,102,89,105,99,95,93,103,109,95,100,96,99,108,103,113,95,110,98,95,97,100,93,99,91,103,98,75,93,80,101,100,100,98,111,98,98,92,102,100,101,100,95,101,107,96,111,103,99,96,95,97,123,83,97,108,100,97,93,99,98,93,104,107,98,102,100,106,106,104,99,99,104,99,103,104,105,88,98,102,109,110,112,102,103,92,83,118,107,95,100,110,105,100,88,95,90,93,78,113,100,108,102,111,103,105,110,122,98,101,111,103,98,103,91,107,107,98,97,100,80,92,117,111,101,100,95,108,109,102,101,98,121,89,95,90,98,109,97,97,88,96,98,114,98,109,99,113,95,113,99,95,92,106,112,104,115,111,110,100,101,108,99,98,106,109,100,101,107,91,112,100,97,99,100,100,94,105,105,93,98,110,105,95,101,90,90,78,107,95,101,109,95,85,96,103,97,103,98,97,99,94,96,108,112,95,95,100,105,102,99,104,105,92,105,102,100,101,112,99,106,94,98,102,109,98,107,86,113,110,103,103,105,98,91,97,111,104,100,103,109,100,97,104,100,93,113,100,100,102,104,95,100,119,104,97,107,111,87,99,96,104,110,103,74,94,108,102,95,93,89,90,114,118,117,107,102,108,97,91,98,113,93,97,104,105,102,91,100,94,90,105,86,96,91,89,93,109,103,105,105,110,111,103,91,105,105,101,100,101,96,91,71,125,103,106,109,100,94,106,100,96,98,102,86,100,101,101,100,96,92,116,105,95,97,98,103,103,100,104,100,105,113,98,101,101,101,103,98,104,96,100,105,96,107,107,101,98,108,112,108,104,98,71,107,105,95,97,94,107,105,74,108,102,97,97,104,104,94,105,89,111,92,90,104,106,110,89,112,107,97,113,107,104,96,101,112,105,94,101,104,112,91,100,99,99,102,95,101,96,98,96,93,101,97,101,107,96,103,103,90,117,104,91,125,96,115,94,92,96,102,97,97,106,84,110,95,104,112,106,107,116,92,105,102,116,109,100,97,97,115,91,98,76,102,108,98,99,95,110,92,96,106,101,101,106,102,88,114,102,87,106,101,102,98,103,92,101,103,108,109,107,102,106,101,68,98,90,95,95,111,88,106,98,109,96,124,98,114,103,99,97,97,107,110,94,95,83,99,96,106,109,95,117,101,106,103,99,98,102,99,106,108,91,100,99,105,105,104,106,89,101,93,108,109,106,99,108,93,100,114,99,95,87,82,103,101,97,92,105,104,86,105,100,88,108,99,98,105,92,104,104,98,100,112,93,100,114,103,117,104,88,95,110,103,100,74,98,91,92,117,103,101,107,104,97,107,100,102,94,93,110,82,89,91,97,100,103,96,105,108,97,103,93,101,117,115,104,101,102,94,114,111,101,114,101,105,114,104,98,94,120,107,125,93,93,109,105,99,93,98,96,110,103,113,103,94,106,99,104,83,95,105,97,107,91,107,94,94,87,101,104,102,104,91,112,94,104,77,112,102,101,103,101,112,105,103,97,96,104,107,96,109,104,108,106,117,108,101,101,93,94,106,115,105,101,105,103,95,79,94,84,117,101,104,108,101,107,98,92,99,96,102,97,109,103,101,95,101,110,99,106,110,96,98,93,117,96,103,108,102,99,102,100,107,113,94,113,105,116,94,106,106,104,102,100,103,116,93,101,105,102,108,94,109,102,99,107,97,103,100,99,115,100,108,96,104,101,109,104,106,108,103,99,107,103,100,106,114,98,95,122,101,109,102,97,100,106,103,111,97,110,100,102,99,103,98,104,102,95,105,101,96,107,90,110,100,95,87,107,87,94,95,107,82,105,113,106,109,79,96,96,98,102,134,112,112,109,93,105,99,94,100,97,108,103,94,91,107,109,106,102,100,118,100,102,104,103,108,101,108,97,111,98,103,79,108,97,94,100,94,99,121,90,94,100,98,100,104,106,113,109,108,101,103,94,98,101,90,103,82,95,112,114,110,110,104,106,111,79,100,79,97,108,105,99,106,100,103,87,109,89,94,100,97,106,102,102,103,99,105,102,105,93,102,116,106,105,97,108,112,109,97,103,68,103,96,94,80,109,87,91,100,104,102,97,109,108,115,90,98,112,92,105,100,118,85,103,95,103,98,97,103,103,106,108,101,109,96,102,107,96,100,110,100,101,98,110,99,109,106,111,106,95,97,98,100,98,114,105,107,103,101,107,115,92,106,111,92,103,94,113,101,94,99,102,109,105,105,91,109,100,98,109,105,106,133,101,89,101,99,97,100,103,104,105,105,106,104,99,103,99,102,120,105,103,91,102,101,97,105,104,95,76,110,101,104,95,92,100,94,103,109,100,108,108,104,107,94,94,101,109,110,107,101,112,102,105,102,111,94,97,104,99,107,109,106,108,98,111,94,102,104,102,100,99,109,99,100,92,102,106,110,102,102,94,102,101,99,105,100,97,117,101,95,108,99,96,99,104,105,98,113,102,102,109,109,89,95,91,103,121,94,102,98,102,111,102,123,100,96,111,99,97,103,103,101,105,100,67,90,111,110,105,102,123,106,95,105,97,79,113,101,103,97,106,95,110,104,102,105,96,108,104,106,112,105,107,107,105,98,100,110,100,106,91,109,99,111,92,95,119,112,106,99,92,104,113,110,92,104,104,88,88,112,103,106,98,97,105,97,92,113,96,102,101,109,114,100,99,106,101,98,106,108,111,114,99,101,94,102,104,101,101,106,96,104,90,101,113,103,98,99,104,103,99,108,108,99,111,99,100,102,113,98,105,95,99,95,101,108,101,102,100,95,114,103,92,105,116,87,99,87,104,102,102,117,103,101,105,102,95,95,94,98,98,110,107,108,106,101,101,106,121,115,91,102,91,101,107,103,112,107,80,93,102,100,98,93,96,102,101,101,101,106,96,111,108,113,97,96,90,95,97,68,90,105,101,106,78,99,99,100,104,106,118,108,96,102,102,111,102,105,107,95,111,97,101,71,106,101,107,106,104,105,103,102,101,101,87,96,109,117,89,105,94,112,110,94,104,104,90,105,109,94,106,102,104,101,110,93,95,104,96,96,99,107,102,106,99,94,100,100,96,94,94,96,110,104,93,94,107,83,107,99,102,102,111,85,99,97,107,95,98,99,102,109,101,104,90,96,92,104,101,113,101,110,107,117,99,106,103,108,92,104,104,92,102,105,85,82,101,102,97,113,106,100,104,97,110,109,92,108,101,95,111,95,98,102,99,116,113,106,105,102,101,99,108,109,109,85,83,106,108,98,102,105,106,105,102,99,112,105,95,110,104,99,112,94,107,103,110,91,99,110,101,114,98,109,104,102,111,97,116,76,100,96,102,105,101,103,101,87,104,106,95,98,89,94,108,99,116,97,101,96,93,100,100,98,87,95,94,99,129,97,101,103,108,104,108,107,106,103,109,100,103,100,107,107,95,102,103,99,102,107,104,101,95,102,100,113,104,105,105,104,97,92,83,100,106,94,105,100,110,90,101,99,99,99,96,102,104,105,119,90,97,103,106,97,108,98,103,104,106,104,94,96,92,103,108,102,111,105,101,102,100,101,91,100,103,109,96,94,124,108,100,103,104,116,96,93,105,107,110,107,106,96,110,103,105,108,85,99,98,104,105,122,112,87,100,109,105,105,91,102,100,113,113,101,91,106,110,106,92,106,105,106,100,113,98,106,96,108,108,101,103,90,105,95,99,100,101,96,105,97,95,95,115,101,85,107,99,93,102,103,94,108,102,108,103,100,100,99,97,106,97,113,98,113,101,118,106,101,95,115,102,108,103,98,110,110,95,100,109,109,69,104,95,103,103,83,101,108,101,103,108,110,96,102,103,103,104,106,113,105,101,104,98,99,101,106,99,109,99,96,88,100,100,110,104,110,102,102,109,112,102,108,89,100,101,99,93,100,98,103,97,105,103,104,94,100,100,96,101,100,97,102,96,111,108,103,96,104,115,102,104,99,91,108,105,98,102,120,104,104,99,105,88,102,103,94,101,113,110,94,96,98,103,99,99,100,113,98,93,99,97,105,99,99,102,104,103,100,89,97,106,96,96,103,106,96,74,94,100,98,106,109,98,100,103,101,96,96,98,104,98,105,84,104,96,101,106,104,92,93,98,101,107,121,105,91,110,94,101,90,111,112,107,95,105,96,111,102,104,102,106,109,100,104,96,116,113,107,94,95,96,85,104,128,101,100,102,100,98,105,106,111,102,105,83,98,91,105,108,106,100,102,96,107,97,110,99,99,109,110,100,108,105,105,99,94,85,99,109,94,108,94,95,88,94,83,99,92,97,103,104,108,99,107,93,118,88,109,106,92,91,90,119,101,98,103,100,103,89,95,101,119,112,99,108,96,104,96,100,92, +432.18851,101,93,96,89,91,96,86,102,114,93,109,110,90,106,107,101,102,109,102,99,98,96,115,112,109,83,90,98,108,104,96,102,91,109,105,95,89,108,101,116,98,120,89,98,96,105,95,104,100,97,99,95,104,99,96,96,103,106,107,82,100,105,107,78,107,96,95,106,101,98,103,90,114,104,109,96,92,101,94,106,96,109,102,90,96,90,91,116,87,104,102,96,95,103,103,98,104,73,94,103,102,74,90,106,101,103,92,98,102,100,105,116,112,99,102,110,85,96,98,107,98,104,109,102,114,105,107,91,108,108,105,96,95,100,107,97,95,95,96,96,93,110,91,102,101,88,97,94,97,106,77,94,108,88,83,90,113,101,98,104,103,103,105,108,100,97,101,95,104,84,109,84,104,95,95,92,108,91,106,91,100,108,91,103,101,95,101,87,100,103,102,93,96,91,96,107,108,78,94,105,99,108,99,104,93,104,96,96,102,99,97,91,99,91,91,102,97,99,107,113,98,106,99,96,93,107,99,97,100,106,99,89,108,81,107,94,95,100,107,105,105,83,116,104,130,94,100,93,105,99,98,104,101,109,104,124,104,104,100,112,99,99,102,91,101,103,102,93,108,95,94,88,103,101,106,98,102,123,100,105,105,112,98,80,104,103,94,99,77,89,98,103,100,105,113,105,101,104,106,97,96,106,93,113,104,113,115,111,99,109,90,103,105,98,99,89,102,102,97,95,95,99,108,106,111,101,97,102,105,104,94,95,104,98,110,93,106,109,105,104,106,108,94,95,117,107,106,116,109,102,122,101,112,100,105,97,102,113,105,115,96,106,112,97,95,101,101,98,103,115,111,101,105,106,101,105,93,104,103,109,106,105,93,104,93,94,83,98,99,105,91,113,92,101,107,105,107,106,104,107,106,100,104,101,100,93,106,98,110,108,100,101,106,100,104,102,98,105,109,113,105,107,99,118,101,102,95,104,100,97,97,106,103,99,106,98,114,114,106,111,104,103,101,101,106,102,115,109,103,95,96,95,101,99,90,114,97,110,100,105,95,100,101,118,107,105,101,107,95,96,96,102,99,102,101,86,98,106,93,102,105,97,112,98,104,101,103,102,104,98,111,100,102,87,104,105,105,96,103,96,113,109,103,107,102,99,101,105,100,98,120,100,86,106,94,108,94,95,103,97,98,100,101,109,102,105,112,105,95,106,98,98,100,103,92,109,107,101,104,93,97,105,95,100,109,99,91,88,93,108,90,109,92,101,96,101,107,104,101,108,106,103,99,98,113,99,122,109,103,97,105,99,105,92,97,105,74,108,92,103,108,111,98,100,115,98,108,103,106,97,107,108,101,87,98,98,89,112,103,95,108,88,114,100,109,99,106,108,99,102,105,96,97,105,106,102,112,97,104,102,102,103,97,96,103,104,96,100,104,109,102,95,105,115,85,96,101,103,98,104,99,101,99,97,103,106,98,86,100,108,103,97,113,103,115,100,107,99,111,102,107,99,115,113,104,103,99,103,106,84,96,105,109,98,100,101,101,102,108,103,107,98,103,97,95,92,107,96,94,104,90,96,114,98,103,103,99,110,100,86,94,85,103,97,104,95,109,99,87,98,99,114,101,101,102,102,104,88,95,95,104,102,111,107,98,94,106,100,104,106,104,102,103,87,105,101,99,100,119,105,114,88,113,96,106,94,105,98,93,100,109,99,101,103,108,101,91,95,104,99,105,92,96,108,89,109,97,113,96,93,110,92,98,90,95,98,107,101,97,92,104,112,90,120,113,96,92,98,105,105,101,102,110,114,99,110,113,98,102,106,99,102,102,114,101,113,93,95,111,111,113,90,94,86,92,98,100,106,106,112,99,98,109,110,100,103,108,104,102,103,95,102,109,104,93,97,95,100,118,82,103,102,102,96,88,109,112,98,106,101,95,97,89,96,104,108,97,83,88,106,106,93,112,109,108,100,96,93,98,109,97,99,95,104,94,94,111,88,113,100,105,108,103,108,113,97,103,115,94,101,104,98,101,108,104,101,89,92,101,105,108,133,96,107,82,101,94,107,87,105,101,90,105,117,105,111,95,104,103,101,104,91,105,100,98,107,95,96,68,97,87,105,108,94,104,102,103,95,97,83,101,110,103,101,93,128,95,118,100,94,97,101,99,96,113,109,84,110,97,95,102,103,105,103,97,90,98,105,101,92,96,105,92,98,97,103,100,97,104,90,100,105,104,103,89,103,92,96,108,100,103,101,113,97,101,119,95,95,97,107,101,97,126,106,96,110,100,105,109,116,88,113,109,103,107,113,99,101,101,104,108,104,99,82,107,102,99,104,100,102,95,87,112,92,87,88,106,105,113,100,100,108,110,101,98,98,98,95,98,91,92,87,106,99,96,95,96,99,101,97,96,97,107,102,100,103,82,112,111,99,100,103,98,80,104,95,102,99,94,82,99,104,104,107,110,102,105,99,112,91,106,92,110,95,96,115,92,99,99,101,95,109,96,99,114,100,95,89,105,99,101,104,95,99,80,85,94,112,74,109,98,99,108,109,90,85,99,104,96,92,104,108,97,98,87,112,91,101,94,96,66,90,99,98,98,102,105,113,103,94,120,104,98,105,110,112,106,97,108,100,111,95,108,102,95,104,95,107,100,88,99,99,118,68,104,101,87,92,120,100,102,104,96,100,96,104,109,105,99,105,85,112,104,101,104,105,94,91,102,106,97,100,97,119,102,101,104,98,92,118,106,89,90,104,96,103,103,99,106,90,100,99,97,104,100,99,106,119,105,113,112,110,102,96,104,94,99,101,112,91,69,97,102,90,92,105,104,102,104,101,110,105,103,88,98,85,90,113,104,113,98,101,103,95,91,99,95,99,97,108,95,98,104,108,101,99,107,99,97,103,116,104,112,110,100,100,105,88,92,111,101,108,91,96,99,97,104,107,96,109,95,90,94,111,92,118,104,103,109,110,107,99,95,88,88,102,104,116,96,100,126,105,102,96,106,98,100,102,96,110,93,101,98,105,103,101,94,101,116,112,95,98,108,99,106,88,108,104,104,105,98,109,103,106,110,102,103,106,100,109,106,107,116,109,107,79,119,96,97,104,105,104,90,105,99,95,103,108,103,95,92,102,97,102,115,84,103,99,103,99,100,107,102,101,109,101,101,102,111,98,106,91,92,87,108,94,102,103,92,90,87,109,101,97,96,98,68,94,109,101,109,108,106,106,90,107,99,104,100,98,101,105,101,97,101,103,102,105,93,113,107,96,102,98,98,102,101,105,97,102,93,83,86,96,93,97,100,98,108,84,121,101,100,100,102,87,92,93,97,98,98,103,100,96,103,103,107,113,102,89,89,104,112,106,98,106,97,106,102,93,105,96,102,103,90,107,100,99,99,105,94,112,91,106,94,92,101,93,108,102,99,109,92,99,87,112,98,99,99,99,95,103,96,98,101,102,100,97,96,100,103,101,107,103,109,99,104,106,102,109,107,92,100,108,101,103,103,98,103,105,97,95,97,104,100,98,116,92,92,99,99,109,102,99,112,103,102,102,88,94,91,108,110,104,98,95,97,101,98,95,95,92,102,106,109,99,105,104,98,94,101,98,107,102,102,93,104,111,90,101,105,97,99,103,100,93,94,102,111,113,107,103,99,99,98,94,101,104,103,101,102,106,98,109,96,109,102,91,110,101,103,100,110,115,91,96,94,113,95,90,95,103,112,93,112,109,114,99,95,105,97,103,101,98,104,96,105,99,101,100,108,98,95,103,104,79,109,106,118,99,92,104,98,91,103,107,108,105,97,99,104,100,110,96,103,113,102,90,91,115,95,109,111,105,101,105,95,96,99,92,134,103,107,110,96,105,95,95,96,97,111,104,97,93,104,104,97,88,106,109,97,91,102,95,92,107,88,100,104,98,97,94,117,97,97,113,96,97,100,108,95,95,100,101,97,100,103,83,103,92,101,98,96,107,96,99,107,94,97,97,103,97,88,102,100,99,96,106,96,102,101,89,104,97,101,109,108,100,99,99,107,95,88,105,101,103,103,97,111,98,81,101,100,88,98,105,110,97,104,96,109,114,101,99,96,105,106,100,97,101,96,116,98,102,101,92,97,91,105,108,98,105,96,84,99,101,98,125,102,77,100,96,103,91,96,91,109,102,87,102,86,103,109,89,94,98,102,98,99,101,102,104,101,105,106,85,91,101,97,98,104,93,96,92,86,93,82,98,91,102,103,107,105,103,95,103,96,99,108,97,89,91,104,106,109,135,105,97,89,99,95,97,111,101,85,119,96,106,102,98,102,109,106,102,96,86,101,100,105,99,109,71,101,103,102,83,88,102,100,95,93,112,112,100,92,102,83,96,102,110,96,89,96,103,108,99,104,111,100,101,105,102,106,100,105,109,93,106,96,92,105,95,83,106,99,97,92,95,88,96,69,91,92,112,111,87,91,99,91,101,87,108,106,105,88,86,91,99,90,93,91,100,86,100,100,102,98,109,87,102,101,108,92,107,103,110,108,102,106,93,103,95,98,84,92,101,107,105,95,110,95,107,111,99,103,94,106,102,84,106,103,87,95,103,116,107,103,103,101,108,95,112,104,100,80,101,99,106,99,91,95,100,99,104,112,102,105,97,96,107,97,97,92,97,112,88,104,112,105,93,104,102,107,93,103,90,98,99,94,91,104,102,104,103,98,104,96,99,84,103,97,102,95,95,91,90,117,103,104,105,109,93,99,92,88,94,98,95,103,98,106,96,111,97,87,95,101,83,100,93,102,96,112,101,99,105,99,100,91,94,106,91,101,82,106,98,94,97,103,122,96,105,88,92,83,94,84,89,94,87,95,105,104,93,97,102,99,108,101,82,82,108,87,113,95,103,119,109,111,86, +432.32883,101,114,84,97,91,107,76,98,93,84,92,79,94,115,104,106,94,103,110,93,105,97,98,108,95,114,97,95,100,102,112,100,93,106,109,109,101,90,105,105,105,91,122,95,101,114,91,95,103,99,108,111,94,104,101,100,99,103,119,100,110,94,99,107,102,105,91,103,95,109,115,106,105,95,116,104,101,109,109,88,99,93,109,96,93,117,109,99,96,108,127,89,100,101,109,102,104,100,101,89,103,98,101,100,102,103,114,112,117,90,91,98,100,100,94,101,86,97,104,99,91,99,97,96,100,78,105,105,115,97,102,99,103,99,104,94,106,96,92,100,119,103,102,106,95,86,102,86,97,107,100,103,108,108,113,98,97,97,103,97,78,100,95,99,103,101,102,79,106,105,113,112,111,101,99,104,104,111,103,103,100,94,110,101,114,93,114,98,124,95,108,114,113,117,104,118,107,132,103,95,108,101,107,120,105,106,107,104,106,105,96,109,99,107,105,107,102,104,87,101,102,109,102,103,98,107,105,108,120,100,100,111,100,108,113,103,99,103,118,97,108,105,102,98,92,105,97,111,101,104,100,106,100,99,93,100,95,114,106,99,95,105,95,91,98,108,99,101,93,108,105,108,105,100,109,104,105,104,100,100,106,103,80,95,103,107,99,98,96,119,110,106,102,95,114,113,101,97,103,89,95,96,134,111,114,103,99,110,97,97,101,108,109,105,100,94,102,96,94,86,124,99,117,98,103,106,102,98,100,96,100,97,110,98,109,105,108,99,116,111,116,103,100,99,106,103,94,92,109,112,105,109,91,103,99,107,102,109,103,88,110,110,97,95,91,110,106,102,97,99,96,96,116,115,108,105,100,99,95,110,105,99,85,109,106,97,86,91,103,95,104,102,97,109,104,106,94,100,108,102,79,102,101,88,96,101,98,100,103,92,106,99,107,100,107,100,100,92,95,114,92,111,113,114,103,92,89,99,91,102,104,96,106,87,94,103,86,109,97,96,106,106,98,106,99,99,99,101,113,100,94,104,105,112,98,104,104,104,118,100,103,113,102,109,97,100,94,99,98,99,101,100,110,101,97,98,100,95,96,115,103,112,119,99,104,94,107,102,87,94,101,107,119,104,109,108,95,103,121,93,89,99,102,103,96,103,96,100,113,105,113,110,100,103,102,102,104,113,94,104,92,105,112,109,100,99,110,104,96,99,100,92,100,99,103,106,108,100,100,101,91,99,106,106,107,98,102,107,111,98,101,104,113,98,101,94,102,100,97,110,110,100,100,103,102,103,112,123,90,107,100,96,104,98,110,106,97,108,105,124,112,89,106,91,98,93,99,97,99,91,112,95,100,103,103,104,99,101,113,117,108,81,102,94,104,99,111,99,99,99,107,110,116,94,115,116,107,100,95,103,112,102,103,86,100,107,86,108,105,92,104,105,104,103,98,106,94,96,92,105,112,105,94,109,104,90,99,99,103,120,106,101,99,106,90,102,96,103,107,105,105,101,106,105,97,108,106,78,116,98,111,108,106,101,93,107,105,98,117,109,114,102,97,97,109,103,98,90,105,101,110,114,91,98,103,109,97,104,106,90,103,106,104,112,103,100,109,103,101,97,115,94,95,108,96,91,91,91,101,104,103,102,101,113,103,99,104,109,103,109,94,104,109,105,98,95,103,88,112,104,110,87,96,106,106,108,105,127,93,99,109,100,100,94,114,111,92,99,111,103,93,96,87,107,90,93,95,100,100,107,103,104,99,117,96,101,91,100,110,117,99,95,98,104,110,111,114,90,102,102,107,103,102,112,136,107,94,99,98,84,107,94,102,107,110,108,91,107,100,99,103,88,97,103,102,113,106,98,105,103,99,111,112,119,108,106,108,104,105,108,113,104,102,100,98,107,105,109,112,102,112,104,107,105,101,99,101,103,96,104,99,96,96,108,97,106,102,103,99,108,100,103,91,109,99,92,92,100,100,100,95,108,107,102,95,97,118,94,98,100,98,110,110,100,102,103,104,109,97,106,96,111,112,99,99,100,94,104,106,99,102,100,103,75,108,95,114,101,101,107,111,104,100,112,112,94,90,120,103,106,115,95,113,106,105,129,102,95,105,103,108,112,96,109,102,93,93,109,98,105,103,96,97,101,102,94,100,74,99,109,104,119,104,115,98,99,106,114,94,96,106,108,114,92,99,113,90,94,106,116,102,109,108,93,101,83,108,105,87,91,99,90,112,110,97,101,109,91,104,99,104,98,97,105,109,108,105,103,103,93,107,106,90,107,108,104,110,94,101,104,91,111,106,107,104,100,119,98,113,102,106,109,113,96,96,116,97,104,96,106,104,112,114,89,100,83,93,105,105,98,107,93,116,104,96,84,110,110,97,114,107,99,103,92,88,97,98,94,89,110,90,106,104,97,96,98,100,100,105,100,99,114,97,110,113,115,111,79,102,86,121,103,109,103,110,108,105,109,116,130,105,102,103,108,109,107,96,111,103,126,84,83,103,98,98,110,102,103,87,100,108,110,94,89,111,100,100,102,113,100,114,101,102,104,108,100,103,111,95,95,104,110,100,99,100,104,108,115,104,89,108,110,101,96,90,95,95,102,110,97,103,106,102,110,87,94,108,109,97,105,108,98,105,92,105,110,112,115,108,100,95,100,104,117,103,88,106,98,107,110,104,124,91,95,101,110,124,95,100,108,116,97,105,111,104,116,100,103,101,101,98,106,110,109,92,105,110,101,106,119,98,111,97,112,108,120,106,107,103,109,102,99,107,96,97,120,103,98,105,95,93,108,83,107,111,97,97,101,105,103,108,107,106,101,107,101,95,103,108,107,100,102,111,114,105,106,93,109,97,103,122,98,112,109,99,97,100,99,102,115,95,106,80,87,98,102,95,86,105,112,98,99,121,106,121,93,113,122,98,99,101,104,96,101,108,110,103,111,102,91,105,109,101,104,93,102,103,124,101,99,95,120,120,104,95,107,114,98,98,98,113,109,99,112,84,104,105,110,104,106,106,108,107,103,107,110,105,108,77,108,104,96,107,102,102,109,105,95,104,109,97,117,107,116,100,96,105,109,92,108,102,108,107,94,95,100,106,106,102,94,102,100,101,108,100,105,106,98,105,105,104,113,101,104,116,97,94,123,90,115,113,90,112,96,116,109,98,117,100,104,116,96,102,104,107,107,105,101,117,102,100,113,99,93,93,99,99,98,98,96,100,106,93,104,94,82,110,99,115,102,105,98,106,112,113,111,66,99,102,97,100,94,96,108,105,99,98,103,63,112,112,110,108,85,103,72,113,105,98,108,108,85,109,105,115,102,112,91,106,102,105,113,96,100,104,106,100,107,109,112,103,103,113,100,102,93,96,102,94,98,104,94,98,99,100,111,100,111,104,98,98,99,102,103,99,106,104,104,108,106,102,105,103,108,111,102,98,104,107,92,108,104,109,99,73,104,116,113,110,102,104,109,113,94,98,97,113,97,117,85,100,99,108,112,99,108,116,99,99,109,101,99,103,111,99,114,120,106,98,107,105,107,102,109,103,110,98,100,101,110,102,102,98,92,103,103,107,98,105,101,115,89,106,106,112,105,103,109,98,95,94,105,92,86,107,87,105,111,100,101,105,105,101,102,103,103,109,95,101,101,101,105,101,98,104,93,100,105,108,104,107,106,105,117,108,107,97,107,106,102,92,105,106,78,106,96,116,79,89,109,99,106,107,100,103,105,100,106,115,96,101,95,99,99,118,104,105,97,104,102,112,100,102,94,97,119,111,109,106,101,102,109,98,112,102,99,107,104,103,103,107,95,107,102,101,100,98,99,101,103,108,112,101,96,105,106,109,103,104,108,102,112,103,112,96,107,93,102,103,114,108,98,110,95,126,100,107,79,93,110,96,110,101,99,107,80,90,91,117,103,112,101,106,91,102,104,113,105,101,99,97,98,101,108,95,102,108,104,129,108,98,93,100,106,105,104,102,97,104,109,97,93,94,106,110,90,96,106,110,109,118,91,100,101,98,95,106,104,106,96,111,109,102,107,110,106,93,103,119,83,112,98,113,104,118,109,101,100,96,102,106,100,95,113,108,109,91,101,99,98,98,109,75,111,97,114,117,109,100,94,121,93,95,108,101,106,106,100,102,102,107,97,91,87,122,92,109,119,103,92,102,109,109,99,100,98,102,98,113,105,108,106,94,96,110,102,94,103,111,100,116,81,104,104,100,106,112,113,108,103,104,108,116,100,102,107,111,95,110,105,105,91,118,102,111,109,99,100,95,110,103,92,106,100,100,96,103,108,99,105,98,117,105,106,122,111,103,109,101,101,102,103,115,108,117,103,107,99,105,101,99,110,105,107,89,100,107,106,94,100,97,90,109,103,99,114,111,102,107,98,108,100,109,107,102,99,107,103,98,96,116,111,99,109,99,112,94,114,121,112,110,108,105,113,102,94,94,90,104,110,99,114,113,101,98,103,97,106,102,68,103,103,99,99,103,109,125,114,106,99,101,103,97,117,96,104,100,98,103,87,98,95,100,107,95,110,105,102,99,111,100,105,108,107,99,105,104,98,110,88,111,102,105,105,115,101,92,98,110,120,111,97,98,99,111,95,98,102,114,99,103,101,112,99,109,107,103,117,108,106,106,99,124,117,99,100,106,112,106,101,105,103,105,103,94,117,93,122,101,102,105,113,105,130,82,110,102,93,98,97,101,103,106,87,100,99,101,95,107,104,111,102,109,93,103,102,92,108,98,109,99,98,102,101,97,123,97,95,127,99,114,96,130,90,107,103,94,99,108,94,114,106,102,97,104,102,103,105,89,104,95,102,96,108,92,111,97,100,117,64,106,113,87,92,103,104,91,105,99,101,112,114,96,89,102,93,110,75,107,85, +432.46912,94,104,99,68,90,113,101,106,89,103,95,99,104,79,87,106,106,102,104,97,103,95,104,98,94,106,97,110,113,100,98,101,95,109,99,105,96,90,83,98,98,113,109,105,102,116,102,106,100,119,103,99,105,112,93,100,105,108,98,100,101,97,114,78,101,99,98,104,102,94,84,105,100,106,94,104,99,99,94,101,97,94,92,94,95,90,103,96,94,86,91,99,97,106,96,93,101,101,96,100,100,107,89,101,92,98,94,102,89,96,98,101,106,87,95,100,85,108,111,89,96,99,110,107,104,111,107,104,111,103,107,105,91,112,101,109,98,97,96,91,87,111,110,105,106,99,102,107,96,110,113,87,93,94,112,104,112,86,109,76,108,110,87,69,112,92,99,102,113,97,97,92,110,100,99,109,97,97,106,92,101,100,98,104,110,103,99,95,97,105,103,95,94,97,102,117,108,96,96,90,95,101,92,111,100,95,91,99,105,109,124,105,103,105,116,104,102,113,99,104,117,105,107,101,97,101,108,92,89,98,102,99,110,108,105,112,109,100,104,100,105,113,125,108,102,112,112,102,111,118,99,106,101,108,100,99,101,98,93,102,95,100,112,98,104,85,100,107,100,102,113,97,112,91,104,105,92,117,103,96,91,105,104,93,105,95,102,114,109,87,92,99,100,106,118,102,107,110,101,97,105,94,110,104,96,103,98,100,98,108,98,115,100,94,95,93,103,108,103,110,107,95,105,110,114,79,105,99,94,114,105,104,111,108,105,100,92,108,92,111,107,97,99,106,100,98,102,99,95,103,99,100,105,89,98,116,91,108,101,94,108,105,113,74,104,87,109,103,100,95,102,93,103,111,107,105,102,95,101,101,104,109,105,110,94,100,97,100,122,103,107,98,104,89,102,104,108,90,99,99,106,95,94,103,109,103,106,105,107,101,96,110,106,98,98,96,104,107,100,105,102,100,94,109,98,98,95,88,87,107,104,110,100,101,109,83,97,105,109,108,92,119,106,96,89,99,106,112,97,100,100,112,108,111,104,111,106,113,105,113,96,99,108,104,108,80,104,104,104,104,103,109,100,83,106,99,105,105,102,109,92,108,99,112,102,106,126,105,107,102,100,100,110,97,113,91,92,95,104,113,113,96,103,129,113,100,119,75,96,110,115,105,106,113,107,102,102,106,109,99,105,91,99,101,95,97,112,109,116,104,113,116,116,89,101,113,114,86,103,111,111,112,94,100,121,98,91,102,105,104,101,118,102,107,114,105,100,104,107,108,100,118,105,102,109,114,106,95,98,107,97,99,101,109,99,112,108,118,100,122,103,107,83,94,99,107,96,104,98,114,111,102,101,100,96,106,99,104,108,106,98,104,108,91,87,98,96,99,97,106,98,108,92,96,109,101,101,104,107,102,107,99,113,103,107,108,90,105,95,118,114,95,89,120,68,98,101,105,102,95,106,112,100,109,106,94,110,101,101,104,97,116,108,106,95,113,108,99,104,97,109,104,102,102,102,109,96,106,95,104,107,98,107,108,105,98,105,107,109,99,105,109,113,96,99,104,103,101,101,101,102,94,104,95,103,110,106,94,101,115,112,95,85,93,99,110,112,111,112,97,105,102,103,104,98,116,103,106,105,100,85,96,114,126,98,87,109,103,99,99,109,106,103,116,94,112,100,109,106,98,110,103,102,106,101,91,99,115,111,105,106,105,100,96,93,103,97,103,86,105,108,100,100,105,98,107,102,100,98,101,95,106,103,72,119,97,109,98,91,110,122,88,126,100,105,85,96,103,108,114,104,100,112,100,86,104,85,97,96,112,98,97,106,95,95,97,102,96,111,106,97,97,106,105,102,94,107,99,96,106,95,102,116,99,107,117,118,102,107,96,106,115,101,103,104,100,101,101,111,105,111,102,109,101,98,110,100,117,98,106,106,90,95,92,95,101,107,100,104,108,97,100,95,110,93,105,105,100,117,103,106,104,95,114,83,98,98,101,97,114,103,99,102,110,104,106,119,100,95,102,107,101,99,107,106,87,106,119,117,106,95,111,115,117,104,97,103,96,100,97,100,103,110,92,104,105,108,98,96,91,105,113,110,114,109,92,107,81,98,110,108,102,108,105,96,106,99,94,109,107,111,107,114,104,108,100,105,98,113,114,96,96,107,94,106,106,101,100,99,107,105,108,108,109,103,106,99,100,112,97,92,96,100,99,104,106,109,100,101,126,109,103,103,101,112,102,101,93,103,106,93,109,107,97,109,102,100,103,109,107,103,113,95,112,98,94,109,97,91,108,86,103,115,104,89,106,102,107,103,95,108,105,111,101,105,103,103,75,109,105,111,96,107,101,106,98,95,94,101,101,99,106,99,106,97,101,82,88,95,101,92,99,108,100,104,103,99,101,104,92,103,110,100,109,110,97,86,105,106,97,96,100,111,96,124,108,100,96,110,102,108,98,92,109,101,96,95,99,110,98,108,118,88,87,93,92,108,99,102,88,94,102,101,89,102,98,110,103,116,97,101,109,106,105,114,106,93,109,100,101,105,101,103,90,105,95,93,107,104,96,100,99,105,101,87,110,95,84,91,96,104,92,95,103,95,86,95,92,105,91,105,99,107,97,99,106,94,111,108,98,100,91,102,93,103,101,98,105,111,91,87,106,108,128,97,88,95,114,107,88,107,105,99,100,112,109,101,100,103,102,100,102,89,106,97,119,106,108,107,102,103,115,102,105,106,92,104,102,107,111,95,93,118,100,108,102,108,105,100,104,109,121,102,95,94,90,96,102,113,101,105,101,105,101,104,102,106,102,108,102,105,105,105,112,106,103,99,107,113,113,96,98,97,112,99,108,93,91,98,98,109,93,99,117,99,75,96,106,96,96,106,102,111,107,94,110,83,103,89,103,106,107,115,96,101,96,112,103,97,104,98,113,94,97,99,93,99,94,102,91,105,96,96,109,97,92,101,107,98,100,121,105,100,97,100,97,90,94,90,97,92,83,68,102,116,95,106,92,74,118,107,109,97,100,116,96,89,104,101,101,99,102,97,109,104,111,101,97,100,104,91,108,98,101,100,102,109,109,113,94,101,102,107,98,102,100,103,102,96,99,102,107,96,99,109,106,106,104,110,113,97,102,109,107,107,112,91,90,95,105,112,98,90,109,108,105,104,93,109,109,95,84,102,95,95,104,100,82,116,107,100,97,103,104,96,98,100,102,72,109,87,96,94,98,95,109,102,105,103,104,113,96,100,95,104,94,104,110,94,111,94,97,105,101,98,98,95,100,82,108,100,93,106,102,106,100,100,95,99,106,95,102,92,89,98,98,98,97,110,92,103,89,105,96,120,99,90,96,104,100,108,105,106,111,97,107,100,98,106,107,102,99,101,103,89,104,104,96,117,112,96,83,106,106,98,96,104,91,97,107,103,98,103,97,84,96,87,95,89,87,109,100,117,99,91,100,100,98,81,101,108,119,105,101,107,101,105,109,97,105,98,99,94,104,104,107,107,83,100,97,105,107,99,102,105,97,104,98,93,109,93,103,107,104,103,105,112,95,98,100,103,88,95,100,99,100,99,110,96,100,103,98,101,88,99,111,108,96,86,92,96,91,88,109,101,86,100,108,87,99,99,108,98,99,104,99,112,94,105,104,96,103,110,106,87,96,101,105,105,104,106,101,113,98,97,99,100,105,100,99,88,107,104,105,100,97,110,99,99,97,99,104,109,101,100,101,104,101,103,106,100,96,107,102,107,111,95,108,104,109,113,104,108,113,105,113,103,96,103,100,88,101,102,99,103,96,99,105,104,113,105,111,104,97,92,107,109,89,104,111,109,106,103,112,76,81,103,107,98,85,100,100,98,98,95,105,87,107,94,102,94,108,109,94,99,101,108,101,103,98,93,108,114,98,92,108,98,102,99,94,95,83,104,91,97,106,106,100,112,99,113,99,95,102,91,100,103,105,88,95,110,105,95,97,101,97,99,117,96,107,101,111,106,103,111,105,110,109,101,101,107,125,106,104,108,98,111,93,94,111,99,106,97,99,105,111,98,97,105,97,102,100,108,94,106,96,102,100,112,104,94,107,97,106,93,113,87,106,110,71,109,98,100,91,98,112,127,95,99,102,94,101,97,101,96,98,99,101,87,97,101,97,106,97,94,102,98,102,101,104,106,96,111,117,108,115,102,113,100,105,112,101,102,90,113,102,110,93,101,106,105,91,93,104,105,87,104,110,96,100,96,99,97,97,98,103,101,99,121,92,108,92,102,95,100,101,102,104,85,98,106,102,94,119,95,96,102,104,98,100,100,111,104,93,108,97,102,92,88,86,97,101,106,109,97,101,100,101,105,97,105,103,110,105,90,105,98,101,92,98,105,95,108,102,99,106,100,106,101,105,88,92,113,110,104,116,94,109,110,106,118,98,101,72,97,94,108,88,100,106,104,99,104,109,106,99,91,102,100,98,81,98,95,119,115,99,93,118,98,87,108,96,100,107,109,87,92,99,98,111,99,91,99,102,103,114,91,100,104,107,90,101,96,97,93,97,99,107,102,92,98,116,115,99,103,101,101,94,91,116,91,92,99,96,99,93,104,107,109,109,95,101,98,100,106,103,113,98,114,102,108,93,105,96,107,107,102,91,99,96,98,96,107,106,105,98,105,97,96,94,84,99,106,105,109,108,105,100,101,100,118,107,95,109,106,96,101,88,93,100,108,93,67,100,98,104,106,99,112,104,110,99,114,109,99,95,77,103,102,89,102,103,111,94,109,108,87,98,107,104,91,87,102,99,90,107,102,104,102,108,105,98,92,90,97,96,100,103,97,97,93,111,90,128,112,111,93,109,107,112,100,85,106,94,104,91,96,99,98,92,117,95,105,93,112,92,107,111,93,104, +432.60941,102,93,73,99,106,99,105,87,94,104,102,97,71,106,125,105,85,111,91,104,109,102,86,102,112,92,106,92,105,117,100,106,100,87,96,96,92,104,103,111,88,92,95,102,113,108,100,105,109,103,93,101,96,86,105,80,109,77,109,90,100,106,109,97,105,102,95,80,94,97,97,104,99,64,92,109,109,102,95,111,89,109,112,97,99,99,106,96,90,105,102,103,103,102,103,102,106,112,102,95,90,97,106,103,89,94,103,105,85,101,105,89,111,92,110,91,94,105,111,91,100,95,104,108,107,106,108,103,98,96,104,100,107,105,108,104,97,105,91,95,111,91,100,101,103,106,102,113,105,106,109,89,108,83,100,117,105,92,112,117,113,118,113,107,106,108,99,99,108,92,97,102,90,100,90,104,102,93,101,128,108,97,98,105,94,110,102,93,103,105,97,100,101,108,93,104,103,104,96,102,97,85,96,113,100,108,100,102,106,104,109,105,117,87,102,107,116,81,109,97,111,102,103,105,92,106,109,97,102,106,97,111,99,97,93,102,102,112,99,99,106,89,106,104,104,100,100,87,103,101,102,97,99,114,110,111,95,108,109,91,91,105,95,97,96,95,100,104,108,97,95,87,104,104,108,87,96,102,102,101,111,108,100,102,95,99,97,108,97,106,104,83,106,105,105,98,101,100,108,107,112,98,97,107,100,106,108,112,103,103,100,103,108,107,99,104,101,106,94,76,113,99,98,105,99,94,101,92,100,99,101,94,95,100,90,86,101,98,102,103,114,101,106,103,99,95,112,113,107,100,71,88,104,94,104,101,109,109,99,99,97,97,98,96,96,102,93,95,93,102,108,94,122,105,110,93,105,95,98,101,117,108,102,97,98,95,98,113,106,104,113,97,107,104,117,99,106,106,104,104,101,101,101,96,94,87,106,95,104,112,95,102,108,107,102,103,99,98,98,136,106,98,105,102,95,91,97,99,85,101,92,107,105,102,100,102,108,110,112,72,109,109,100,102,98,95,106,113,108,113,97,126,116,111,101,113,97,104,104,103,98,95,106,109,107,97,109,105,99,91,100,90,110,98,107,111,91,101,98,101,105,99,107,98,111,101,99,112,106,103,97,107,92,97,95,104,108,108,108,100,105,102,101,96,96,106,100,104,98,114,98,98,80,113,101,102,81,86,95,89,112,99,100,101,96,103,103,107,95,102,88,115,95,99,94,100,106,92,104,119,94,101,96,98,101,114,93,100,97,100,112,102,106,108,87,91,106,100,95,100,109,100,112,106,101,99,99,101,100,116,100,96,94,108,101,102,105,94,102,101,106,105,112,102,97,96,99,105,111,98,101,100,87,104,117,100,97,113,110,103,104,106,98,117,101,96,104,92,98,109,101,96,98,105,98,96,99,95,95,109,109,118,98,102,101,108,104,89,113,102,103,97,99,98,103,93,107,93,105,91,112,98,93,109,97,95,121,94,102,103,104,103,94,95,105,101,98,105,107,98,103,103,93,108,92,79,107,92,102,101,108,102,100,99,97,97,103,100,98,94,102,114,100,104,101,131,101,101,100,97,93,110,95,117,96,105,104,100,100,140,78,101,95,102,95,98,102,106,101,104,94,107,139,98,67,101,99,96,102,102,96,110,103,99,83,91,100,107,93,102,103,100,101,96,97,95,101,100,109,107,93,102,116,100,113,105,105,106,96,109,109,98,93,105,125,102,100,97,96,106,102,101,90,98,91,108,88,83,99,105,108,100,105,105,96,97,84,100,100,99,100,105,95,106,96,104,102,107,113,100,97,107,94,98,102,104,97,108,91,106,102,96,102,94,117,103,105,106,109,118,106,103,107,104,106,109,104,107,83,96,103,108,104,91,109,108,126,95,113,105,106,107,94,107,103,103,90,104,99,97,107,113,107,98,92,102,97,104,92,91,104,95,108,105,105,106,101,91,81,99,97,86,112,100,93,97,90,105,98,102,110,106,103,98,96,104,93,107,95,106,96,109,98,90,109,101,97,122,101,105,99,111,110,101,113,101,107,105,108,99,106,109,97,87,107,106,98,97,91,112,96,121,114,99,99,104,88,102,81,94,102,102,94,101,96,95,108,102,101,88,99,103,109,105,113,104,93,99,103,92,106,114,110,100,101,94,114,106,113,100,108,108,109,105,107,101,117,88,91,118,95,108,83,95,109,102,104,92,94,107,103,91,98,93,102,94,104,92,104,101,90,113,101,104,103,96,104,108,98,90,104,104,96,112,104,116,92,106,111,99,106,92,91,105,103,105,100,99,88,102,102,99,133,95,101,103,104,106,112,96,104,96,109,82,97,106,109,107,102,102,103,113,100,100,101,118,92,99,108,91,115,112,99,107,94,100,101,100,92,98,93,104,101,91,99,107,91,91,109,100,94,102,104,99,106,88,106,112,100,95,102,107,110,101,105,99,101,101,95,90,100,93,101,112,108,91,111,84,113,108,114,96,102,106,105,101,103,95,98,91,101,97,94,96,96,101,104,84,103,104,102,108,114,105,96,103,102,103,101,99,105,100,100,100,97,106,100,106,102,108,80,106,93,99,101,103,92,101,106,112,103,97,96,107,94,80,107,104,101,106,88,109,111,104,103,98,116,95,103,98,100,96,104,96,112,104,101,106,117,100,107,107,86,97,100,94,95,98,109,88,100,104,97,105,95,102,117,102,114,107,98,106,111,104,104,99,101,94,92,73,99,102,106,95,105,104,92,97,108,98,102,91,107,103,90,130,88,110,106,102,87,97,104,98,102,97,98,111,105,101,108,117,99,109,104,100,101,92,107,107,100,89,108,110,112,99,106,105,115,101,105,101,108,96,92,109,94,101,95,77,94,93,90,104,105,96,94,105,96,84,91,100,98,98,102,86,97,102,87,101,100,105,99,95,106,95,97,128,105,107,101,106,93,91,105,101,104,100,87,104,91,107,102,91,102,92,108,103,114,96,109,90,108,95,87,96,95,98,72,88,107,99,102,102,116,104,105,93,109,91,104,87,104,105,110,109,109,103,83,113,103,101,95,89,110,113,100,96,103,95,95,103,93,103,109,107,99,100,92,95,106,116,104,87,105,87,109,93,87,103,98,113,107,116,102,102,109,94,94,95,103,90,100,101,105,100,104,106,88,95,102,104,93,98,102,94,90,113,114,105,99,99,91,105,97,103,101,107,112,111,106,109,99,108,96,94,98,96,94,87,107,98,84,106,111,93,109,100,113,106,104,105,98,111,108,96,110,108,91,107,101,96,102,108,88,99,82,99,106,103,101,100,112,105,88,104,102,105,103,71,106,113,100,92,108,100,81,101,94,105,101,100,95,99,97,101,105,98,99,102,111,109,109,95,104,95,101,101,102,81,94,100,105,77,100,97,99,91,100,93,98,106,92,96,104,110,113,100,98,102,100,90,96,100,105,106,99,112,105,98,95,105,105,97,86,94,93,109,102,93,99,103,95,99,95,93,102,100,112,103,105,102,87,102,123,109,98,98,102,109,96,102,96,113,99,96,105,128,106,98,105,105,109,97,102,81,106,107,98,115,88,111,93,100,105,102,94,99,109,99,104,104,95,108,101,105,92,105,107,114,98,95,99,110,123,99,97,104,108,105,101,100,116,100,101,99,109,103,87,99,97,92,102,113,71,98,98,107,95,97,100,103,106,99,98,111,104,100,106,95,112,99,110,102,101,96,113,97,105,105,105,100,100,100,103,98,109,94,100,92,77,103,107,104,103,80,103,115,109,121,100,105,110,103,93,108,94,99,112,117,99,104,94,99,98,93,96,104,92,97,105,104,110,97,95,100,100,94,107,96,99,115,98,102,100,91,105,110,98,109,92,107,102,99,109,99,104,105,105,92,100,94,102,101,96,108,101,100,96,95,109,101,92,100,105,113,99,107,102,93,87,94,91,104,109,102,105,99,104,101,86,108,92,113,98,108,107,102,98,101,100,98,96,113,108,87,96,97,97,111,110,90,100,100,109,117,104,104,106,120,109,100,92,103,116,101,92,92,116,100,75,105,106,94,112,106,116,97,103,89,101,108,109,78,91,98,99,100,102,110,109,107,110,101,118,107,105,101,108,115,84,97,120,113,102,101,97,107,103,106,93,97,97,100,100,94,103,105,96,97,117,102,107,107,109,94,102,103,99,109,103,98,111,84,103,126,94,99,103,99,91,112,110,99,105,106,94,96,95,113,93,98,102,92,97,99,105,75,88,92,96,117,96,95,117,107,112,99,99,105,107,97,123,100,92,91,114,92,90,108,88,106,101,102,100,98,102,110,100,108,106,104,105,105,109,101,113,120,102,104,107,94,114,86,99,104,98,95,113,97,97,98,105,112,96,110,98,104,104,92,105,108,91,120,111,96,109,105,95,89,100,101,100,99,92,104,86,101,113,100,110,84,103,92,100,105,97,105,105,115,94,100,105,96,99,105,135,104,100,106,109,99,105,126,105,113,99,96,97,97,86,119,102,115,110,105,93,96,100,102,104,104,103,104,111,98,112,91,91,100,87,94,113,105,102,104,103,107,103,104,96,102,103,104,95,95,103,80,95,96,102,99,102,99,96,110,89,100,106,113,97,95,105,99,93,95,96,105,112,119,95,106,97,83,114,103,98,117,87,98,111,101,92,100,95,99,94,93,97,105,104,91,106,97,102,104,114,106,87,109,98,99,110,100,104,95,104,83,102,102,100,108,85,110,80,107,104,98,95,97,93,102,106,100,113,99,90,105,90,102,98,89,115,97,94,102,104,95,96,96,92,109,106,95,104,91,95,97,103,93,105,89,92,106,102,101,100,92,87,94,104,97,90,102,101,108,95,105,106,92,102,101,117,91,92,89,97,100,95,107,114,101,110,96,106,95,102,101,98,97, +432.74973,108,110,96,81,122,95,104,101,111,103,101,109,94,100,108,109,90,101,106,101,101,112,103,106,94,102,96,102,109,98,102,113,93,96,115,101,103,95,83,118,93,100,105,96,105,110,101,99,98,101,101,113,105,75,83,101,100,94,106,109,105,108,103,109,96,104,95,97,94,107,109,101,126,102,102,114,105,120,95,96,100,109,95,107,100,105,107,115,102,95,111,104,100,94,102,96,95,100,129,109,77,89,101,96,90,113,103,99,104,102,101,92,98,84,95,90,97,87,97,65,97,100,106,113,118,100,103,106,113,112,100,100,101,102,101,88,99,84,106,103,104,93,106,92,109,112,118,101,98,95,103,101,113,83,99,106,102,105,96,94,111,98,101,116,107,105,117,95,101,93,95,107,98,97,108,108,101,104,109,102,96,98,94,98,98,96,91,104,116,100,93,99,105,100,105,113,102,111,105,98,89,96,107,101,99,95,107,96,80,104,95,99,100,112,99,98,102,103,112,106,100,125,104,94,119,104,126,103,96,103,105,107,107,106,102,101,112,118,98,94,97,112,104,101,101,107,95,75,101,105,100,103,99,114,103,101,103,99,96,101,101,102,90,95,99,104,99,100,103,91,96,88,95,104,105,96,95,104,104,106,104,112,99,92,104,97,101,98,99,101,107,101,103,101,103,115,100,114,100,99,92,90,109,102,103,104,98,110,89,106,98,105,93,103,89,104,97,98,108,102,108,97,112,97,109,96,92,94,98,105,101,95,109,105,104,113,105,101,109,104,108,103,99,101,122,115,94,108,105,104,100,106,96,105,98,94,112,98,117,99,90,103,100,106,105,96,96,111,90,119,110,103,112,97,104,96,101,101,104,107,110,101,92,95,102,98,117,106,109,104,101,101,90,104,113,102,99,90,99,111,103,117,99,107,96,100,110,107,101,105,94,111,103,105,98,90,106,107,95,101,110,107,98,104,109,103,89,98,99,109,91,101,94,109,101,104,84,104,91,113,98,100,106,111,101,112,109,102,100,107,98,109,93,100,106,97,105,113,101,95,106,100,107,90,106,102,106,98,98,105,104,108,114,108,101,97,108,108,110,100,102,98,104,91,101,99,115,109,112,115,114,102,106,112,95,99,95,107,109,105,112,101,112,108,96,113,98,99,109,102,99,100,94,96,105,106,115,106,124,104,97,105,107,88,108,96,102,103,110,107,93,102,98,91,101,109,102,94,100,89,105,102,105,99,113,114,93,106,113,95,108,110,102,104,105,91,106,103,105,99,109,102,101,106,108,103,111,104,106,103,108,107,100,104,104,95,102,110,99,114,104,108,100,103,101,103,102,102,105,114,105,106,85,107,118,94,96,110,108,103,90,99,99,112,97,109,109,108,100,105,87,99,95,106,113,109,96,106,105,111,105,100,101,104,113,111,99,99,117,113,109,77,103,102,98,94,104,95,103,85,103,109,110,103,97,87,97,88,101,114,101,98,101,106,101,100,99,109,104,105,109,110,103,98,90,95,102,87,103,102,100,110,88,98,92,99,107,119,101,96,106,103,105,91,73,106,101,104,101,120,105,110,94,105,116,91,110,110,108,97,98,99,84,96,89,106,109,109,98,113,101,106,100,97,109,95,101,114,105,111,115,105,105,103,101,104,117,105,117,87,100,106,100,107,95,106,98,96,97,103,113,104,98,107,107,101,89,99,104,96,105,105,106,106,108,116,108,109,106,101,95,107,97,101,89,99,90,98,117,100,119,102,104,114,101,99,97,98,112,89,109,113,115,97,105,109,105,96,103,122,106,107,113,103,105,107,96,116,98,95,98,97,102,100,111,96,103,95,91,114,109,101,94,113,98,115,100,109,105,98,100,130,111,105,104,109,106,87,100,102,103,100,104,97,94,102,105,100,105,113,88,111,103,109,98,103,102,104,101,107,113,99,107,114,104,112,100,98,98,118,100,93,107,90,108,103,101,106,104,111,82,105,105,94,103,94,89,95,100,98,103,112,102,94,114,103,105,101,100,93,105,112,108,96,95,112,99,92,100,99,104,105,104,109,106,100,108,106,110,103,109,107,99,102,105,80,99,110,97,108,112,109,118,111,112,98,87,104,107,102,90,109,94,100,98,105,105,107,113,99,104,95,106,103,102,105,95,99,113,95,101,107,97,95,109,67,107,99,101,96,104,103,98,100,97,102,108,97,109,99,94,105,98,104,105,90,112,91,104,111,108,105,96,100,110,94,91,84,100,94,97,104,107,100,104,102,89,108,108,96,108,113,107,102,105,97,97,100,92,95,66,85,88,121,104,81,98,108,92,115,99,104,103,97,105,76,101,108,101,100,104,90,108,101,111,102,103,101,107,92,76,91,97,103,100,116,102,93,92,97,114,129,98,106,105,104,93,100,94,97,112,114,107,100,110,101,98,104,102,103,102,110,107,106,98,98,102,99,109,114,91,97,105,101,100,113,97,112,103,107,103,108,112,106,99,101,106,107,99,112,105,70,93,103,109,89,94,99,114,103,107,111,102,101,100,105,111,97,94,93,109,100,94,101,86,100,99,101,99,94,110,108,108,107,107,95,88,100,106,102,95,71,99,108,104,97,96,104,96,104,109,92,112,108,100,110,112,94,106,91,105,95,84,88,101,105,106,100,108,108,103,103,106,93,97,97,107,101,100,105,108,108,97,95,111,105,130,109,109,109,113,102,98,99,112,109,109,83,96,94,111,98,98,98,94,120,125,103,105,105,76,99,100,109,98,109,110,103,109,114,108,105,95,92,102,92,109,113,105,104,115,92,97,101,98,113,107,106,114,117,115,100,111,92,87,100,99,113,105,100,105,109,104,111,103,110,96,110,91,97,104,88,95,90,103,113,98,111,99,101,98,98,101,104,94,72,105,105,98,107,113,100,102,83,101,98,92,103,112,94,105,105,106,108,99,100,107,101,103,111,100,89,113,104,96,108,104,107,106,98,113,105,64,101,101,110,105,105,96,103,105,107,103,102,93,103,122,101,104,110,85,92,99,107,91,101,102,102,116,107,109,109,104,105,99,102,100,103,113,128,107,111,114,107,98,109,104,97,102,113,101,110,100,103,102,94,108,110,98,96,110,104,112,107,112,98,98,102,104,98,103,107,97,105,108,106,107,94,73,99,108,75,112,119,99,88,106,102,100,105,115,100,99,93,99,80,114,97,119,115,90,99,91,113,113,98,99,113,96,94,102,101,106,89,112,96,102,104,115,105,97,110,105,103,107,102,99,117,83,104,98,123,97,115,102,102,103,109,108,110,106,95,95,109,111,105,107,100,101,102,96,101,90,79,102,105,105,100,102,108,92,96,101,113,104,96,104,102,102,102,99,94,100,105,104,98,106,120,110,101,113,111,103,96,96,84,110,102,97,96,105,95,98,99,86,97,99,96,111,102,101,105,104,108,108,98,107,95,84,92,105,106,100,116,100,98,106,103,102,96,99,90,103,105,101,104,111,116,96,108,109,110,98,113,99,116,109,106,104,103,116,101,107,99,85,111,122,93,100,105,99,108,108,98,81,112,99,103,110,117,116,104,107,101,101,106,96,103,102,106,104,98,104,109,101,104,102,98,97,110,101,99,101,104,100,97,102,73,98,81,101,107,113,107,102,96,99,99,100,117,108,104,99,117,103,101,96,109,104,95,102,109,97,101,99,96,109,100,106,107,98,96,113,108,109,99,106,100,82,104,96,95,92,96,91,108,95,115,101,86,109,94,97,99,96,117,100,100,106,101,108,106,107,109,101,121,96,102,113,98,101,97,109,107,100,90,111,92,99,109,105,98,109,97,109,97,112,129,92,104,101,99,108,99,104,105,100,102,102,107,106,106,87,97,95,104,106,104,101,102,102,98,94,95,93,99,99,95,97,104,95,102,99,101,102,99,99,115,95,102,107,98,113,94,104,99,99,105,110,100,105,95,92,113,110,95,103,97,98,95,95,101,114,104,104,104,96,104,91,100,104,109,114,108,105,101,102,70,103,104,101,98,102,106,98,95,116,91,108,93,108,113,96,108,128,109,91,107,116,107,105,98,94,102,98,101,95,109,107,98,106,101,103,100,104,113,99,105,110,105,109,113,98,96,102,104,98,93,101,107,106,85,103,105,105,105,103,99,107,103,101,103,99,87,109,102,98,97,91,106,102,105,116,105,106,110,98,92,106,113,107,112,106,96,112,102,102,100,100,111,104,100,100,106,97,99,99,98,101,95,99,93,114,99,86,97,101,92,101,110,98,102,109,104,95,108,110,79,102,94,84,110,105,99,111,98,98,99,98,124,107,113,87,106,106,103,113,105,100,88,104,107,102,113,92,109,105,80,113,108,96,100,123,104,90,104,102,116,105,101,104,108,94,99,96,113,94,99,109,88,96,98,113,106,102,100,94,109,88,102,100,101,100,96,100,106,94,101,98,111,113,93,96,105,104,92,102,87,105,108,110,101,115,102,98,100,107,84,110,99,94,101,103,104,101,121,105,111,105,86,104,97,89,94,107,119,107,121,98,100,106,111,97,111,103,107,96,104,75,74,101,99,113,108,108,104,100,105,107,103,99,102,108,94,116,115,98,104,93,101,118,107,109,114,96,104,116,99,103,103,99,115,104,109,109,93,103,103,91,101,98,98,104,110,101,95,104,105,109,113,112,97,102,96,97,80,104,105,101,99,100,82,99,109,103,113,93,98,88,98,91,104,92,95,117,110,111,103,62,97,106,103,108,93,85,106,91,104,93,103,111,101,115,105,97,100,106,98,97,106,108,107,99,100,83,116,98,106,97,106,101,95,104,92,101,117,103,124,89,69,96,101,106,93,103,109,76,101,112,87,110,94,99,95,95,102,102,99,102,97,112,85,116,103,107,113,97,101,96,101, +432.89001,111,102,113,97,80,91,82,101,90,104,96,107,96,101,104,91,97,101,102,95,93,96,89,107,95,108,93,70,102,101,112,97,103,101,110,105,95,97,98,99,104,102,87,94,92,111,103,103,115,99,92,87,88,95,100,97,97,96,108,98,103,102,103,101,107,88,104,105,94,96,97,104,95,97,120,95,91,104,96,102,108,101,111,97,96,100,102,103,94,119,94,104,102,104,104,106,77,96,92,103,71,96,100,100,97,101,95,103,99,99,99,106,100,103,106,91,99,109,99,92,96,106,114,106,103,108,109,84,107,101,105,109,99,95,114,81,94,111,99,93,87,112,85,92,105,83,111,102,109,105,96,103,96,96,121,112,101,100,91,100,109,91,110,101,108,100,99,113,109,104,110,93,99,113,115,95,106,96,101,99,107,98,91,97,112,96,93,96,99,92,109,105,100,103,101,112,95,96,99,94,101,105,99,106,101,104,100,107,103,104,97,108,94,105,104,98,105,115,112,106,101,113,109,92,103,95,99,105,95,81,92,102,111,112,93,110,114,100,100,91,103,100,125,95,98,100,113,106,118,98,100,100,100,98,101,107,85,105,95,104,104,98,104,89,99,102,92,101,92,105,99,128,92,101,99,113,108,108,97,101,111,83,103,98,108,88,98,102,99,104,96,110,103,91,106,103,92,108,110,112,98,93,100,115,92,109,103,111,108,106,109,104,103,112,98,114,95,82,97,102,93,113,102,92,101,99,105,93,105,109,98,95,107,123,95,103,98,94,103,99,111,98,101,97,102,93,98,108,105,97,99,101,106,100,108,101,98,105,99,103,101,104,99,101,109,92,97,98,100,105,92,102,101,107,104,97,89,117,106,97,110,113,101,101,100,100,111,110,106,84,108,103,96,94,109,100,98,107,96,104,95,109,104,90,104,91,103,118,103,100,87,102,99,100,112,104,103,96,99,106,102,95,108,101,100,99,98,92,105,101,109,92,109,90,109,108,99,119,113,104,97,102,101,103,110,97,107,107,83,117,101,98,99,110,108,91,103,96,108,94,102,104,106,110,106,104,101,109,101,102,101,125,116,109,103,104,104,112,113,78,107,104,95,98,107,111,118,97,100,112,112,124,101,100,102,100,102,131,109,96,99,90,103,105,95,108,93,110,97,100,108,106,103,112,97,99,103,93,98,101,94,93,98,106,112,112,102,109,112,108,94,104,83,105,95,105,106,105,106,100,92,103,98,99,107,109,98,87,98,107,100,92,98,104,90,87,98,101,106,100,72,97,102,106,107,109,95,102,95,99,104,105,100,112,84,107,102,100,94,104,112,98,110,94,97,101,92,99,103,83,93,106,98,108,103,99,104,102,116,112,98,99,105,95,95,102,93,107,98,116,96,95,106,113,96,113,99,101,97,77,96,122,104,103,103,101,105,112,111,107,105,104,86,98,101,100,115,103,94,101,102,109,107,103,105,104,96,88,96,106,95,104,103,100,94,93,111,103,106,95,110,106,105,93,101,108,103,106,107,103,104,92,111,103,70,104,104,76,100,95,94,102,111,83,98,96,94,113,84,102,108,106,100,102,108,105,104,103,106,98,113,114,103,98,106,104,101,115,94,100,96,95,91,107,102,111,103,109,97,104,101,91,98,103,96,96,105,101,100,109,107,95,101,92,101,91,111,107,91,104,92,96,99,95,95,99,107,101,98,96,105,104,129,101,97,96,107,99,102,90,100,105,108,107,98,110,66,99,110,92,111,102,96,102,100,106,102,90,107,98,86,111,104,113,95,108,94,119,119,104,114,106,111,112,94,92,102,105,106,94,111,97,102,100,97,95,99,103,97,112,104,106,103,105,113,95,106,104,94,97,89,106,103,98,103,102,110,112,109,98,95,113,100,110,98,107,111,94,91,99,102,107,104,103,92,99,95,95,106,100,99,91,104,109,108,102,101,123,91,105,106,100,98,94,111,106,102,106,95,104,92,110,104,104,112,82,105,109,98,96,108,94,91,102,100,92,101,106,91,97,125,104,103,106,102,91,106,101,94,116,91,107,94,94,101,86,111,121,133,105,100,113,103,87,106,94,93,97,102,92,99,107,99,100,101,98,68,112,97,104,105,108,109,102,99,94,96,92,98,94,107,100,104,99,95,92,101,105,104,99,109,101,94,116,105,103,100,105,98,101,105,104,95,98,104,102,96,95,118,101,92,90,98,94,104,104,92,89,82,100,101,98,102,110,108,113,86,103,91,99,105,101,97,96,102,95,100,100,93,105,99,117,98,121,95,94,68,102,94,102,103,90,99,102,92,120,99,103,68,98,110,100,101,82,94,112,83,110,105,86,107,97,122,95,104,88,99,96,102,113,107,98,102,109,108,104,98,100,88,99,98,107,95,93,102,87,94,88,89,96,95,102,106,94,95,96,74,101,108,99,94,118,104,99,105,97,102,113,107,100,113,88,91,100,106,99,105,100,106,106,81,105,101,92,95,92,91,103,97,108,102,89,112,102,104,106,98,102,91,101,87,96,107,107,93,98,91,100,98,105,102,101,104,110,106,97,97,102,109,88,97,105,98,98,95,98,104,102,103,108,101,99,98,105,98,97,95,101,108,92,107,99,108,104,106,129,117,103,95,110,101,97,100,98,93,119,104,109,93,96,88,96,97,95,92,90,94,114,109,105,97,96,94,112,111,99,102,87,95,109,105,108,89,101,110,93,94,87,104,106,107,105,112,109,95,110,112,101,99,102,91,104,91,104,95,80,109,112,80,73,93,83,103,97,77,103,94,97,106,99,106,91,89,106,95,91,107,104,98,101,91,93,106,95,104,100,89,95,107,120,101,111,104,99,105,106,95,108,94,89,105,91,107,100,98,112,103,104,96,109,106,107,101,105,103,103,97,106,80,103,108,103,96,88,102,109,101,97,95,96,135,108,95,96,98,99,95,100,100,104,102,107,87,113,78,101,109,108,96,93,96,105,99,69,97,108,108,109,104,93,102,105,96,101,106,108,105,104,90,104,96,105,74,89,96,106,96,98,99,91,94,106,99,101,103,90,96,91,113,106,97,99,102,92,99,107,100,109,94,102,101,114,102,97,88,100,101,96,107,88,95,101,93,103,90,100,91,99,100,105,91,104,102,107,102,96,100,98,103,97,94,92,98,109,109,104,98,90,108,113,113,87,97,91,111,100,95,106,109,104,109,108,94,111,102,114,102,95,97,97,99,101,101,101,95,90,92,101,105,103,95,100,108,103,91,95,108,105,95,103,86,101,110,91,92,87,104,95,99,102,103,101,109,94,75,105,101,98,95,93,112,99,94,116,105,109,92,87,113,103,102,117,95,90,102,92,99,99,106,96,96,96,94,101,87,103,95,103,102,95,91,104,95,109,100,100,94,99,103,112,77,98,99,98,102,92,100,94,92,96,103,99,97,102,99,105,111,99,92,86,109,101,93,101,92,96,105,88,107,97,98,87,101,104,100,99,112,107,98,101,94,106,97,109,96,102,121,124,94,93,109,106,98,112,88,91,103,91,91,109,108,98,100,105,107,104,106,103,110,113,107,98,103,103,102,105,101,106,108,98,108,108,93,83,99,103,104,95,110,102,91,109,106,100,91,95,102,96,107,100,108,95,110,96,100,90,106,102,106,113,96,91,97,110,95,96,102,104,108,113,96,102,98,94,92,106,92,99,105,96,100,98,89,106,100,86,109,106,93,97,106,99,85,95,108,103,96,114,95,106,105,93,89,90,98,104,88,100,93,102,108,100,103,100,101,102,94,91,110,97,88,103,104,102,97,91,104,88,101,96,93,103,112,83,103,97,101,90,96,101,94,109,98,109,98,87,92,95,108,111,103,107,90,112,102,103,98,96,93,98,103,109,99,95,106,104,100,96,93,91,96,94,78,101,107,105,102,104,112,97,98,102,108,108,104,107,106,103,100,103,97,111,104,106,90,102,99,97,105,90,99,88,103,100,104,101,99,107,96,102,111,108,91,103,108,104,92,102,98,107,82,110,85,96,99,98,102,96,103,98,106,98,97,97,100,95,94,96,101,94,107,99,97,92,106,106,105,97,95,96,108,105,101,103,99,107,106,101,94,106,95,102,96,104,100,114,104,103,100,110,97,106,94,113,106,94,102,103,101,95,109,104,91,87,112,113,102,111,91,99,98,97,104,102,97,96,97,95,100,96,84,99,102,99,98,94,106,97,89,102,105,100,117,88,99,104,110,103,98,94,91,89,109,84,94,98,91,95,107,90,100,100,94,99,100,98,91,85,75,96,87,88,92,102,101,105,99,95,86,101,98,103,104,108,102,101,107,96,97,99,105,98,94,104,103,109,102,89,100,107,102,98,109,109,103,102,96,105,106,94,96,108,95,105,92,102,94,117,101,98,106,94,94,99,93,97,100,97,102,101,119,92,97,93,100,100,103,99,96,97,97,90,101,103,101,94,86,101,96,85,101,95,100,102,107,89,96,103,99,102,91,92,98,103,110,95,99,116,101,103,97,101,108,105,101,97,110,91,99,104,104,88,106,98,97,99,109,90,94,51,58,95,105,93,100,83,115,84,93,94,100,91,104,108,93,101,104,96,104,98,92,104,108,100,95,100,96,99,102,87,91,96,102,94,95,108,83,95,87,100,93,97,95,101,95,118,119,96,103,88,97,89,105,106,107,98,101,93,87,100,104,112,112,105,96,112,96,103,94,92,100,102,102,84,88,96,96,100,109,106,84,87,109,100,90,96,85,102,99,105,96,89,92,109,104,83,98,101,94,103,112,103,106,92,129,101,100,97,91,102,76,104,106,101,107,102,97,101,97,102,89,96,106,89,92,97,98,85,112,94,102,113,97,116,98,105,74,101,111,91,114,101,94,91,102,95,106,104,91,102, +433.0303,99,99,96,102,97,108,91,77,100,104,91,102,105,101,93,101,103,106,106,102,97,105,109,113,97,108,89,128,106,111,102,100,106,98,107,99,89,98,109,100,105,96,103,100,122,107,88,106,105,106,108,81,108,105,97,90,103,109,86,111,106,104,105,98,99,101,98,106,92,111,94,112,104,103,124,101,102,109,106,108,109,117,98,86,106,97,95,107,100,100,112,107,111,101,84,102,99,99,106,101,122,103,92,97,82,101,105,108,109,104,106,95,111,95,98,106,102,98,108,101,97,106,99,108,111,105,120,103,99,95,94,101,87,96,105,98,100,117,112,108,97,112,98,102,97,99,100,89,110,112,105,103,104,104,101,105,109,99,116,101,98,109,85,94,104,97,105,101,102,98,104,87,81,102,100,92,110,105,105,87,107,103,117,109,110,106,105,87,98,94,109,105,77,107,97,103,100,99,104,104,112,102,105,101,97,105,106,98,108,107,95,104,91,94,96,104,93,102,99,98,95,109,98,107,99,102,118,106,105,103,97,96,107,96,106,98,102,99,106,105,104,93,102,87,112,95,110,104,101,104,109,106,93,96,110,100,105,99,93,97,103,93,106,86,96,98,96,100,98,102,105,94,96,100,101,103,96,112,108,90,92,97,97,98,109,102,88,102,106,117,107,101,98,104,104,99,107,103,100,112,103,98,101,107,87,120,96,104,105,118,95,103,105,103,97,105,99,112,103,109,103,110,105,106,96,95,94,106,101,106,95,106,104,101,99,111,104,103,102,107,102,114,99,95,106,100,102,106,95,106,100,100,90,98,105,90,102,122,102,102,105,89,113,108,100,100,98,109,95,104,103,116,104,109,105,102,105,100,105,114,107,105,102,103,92,65,108,101,104,94,104,93,100,114,101,96,109,109,101,109,103,94,98,96,103,90,110,107,103,91,100,103,111,104,104,100,107,105,96,101,101,102,90,103,102,98,97,117,98,98,108,109,103,97,89,109,100,106,99,94,107,94,108,107,97,110,94,103,91,107,108,103,117,110,95,102,97,107,110,100,100,108,106,100,107,102,107,103,103,100,107,105,103,99,101,95,89,113,106,107,115,102,101,102,100,106,113,106,109,86,96,102,105,102,88,104,86,105,99,91,108,98,103,104,106,106,107,107,99,114,93,100,96,106,97,96,100,124,107,94,100,101,98,115,105,105,113,96,103,107,105,101,105,110,99,105,109,103,104,104,101,103,89,101,76,99,105,101,99,110,104,102,106,102,107,102,104,110,117,94,109,95,113,113,99,96,104,93,96,104,99,91,95,95,95,107,104,106,98,98,117,101,95,82,103,97,111,107,100,95,96,101,103,103,117,97,102,114,100,106,90,104,110,132,93,73,88,113,105,78,111,80,97,105,111,93,108,110,113,81,102,107,100,100,97,105,98,109,95,105,104,107,95,104,105,94,105,109,96,110,86,87,95,104,96,91,100,91,111,97,98,109,104,94,109,98,109,104,102,95,106,106,96,108,93,109,109,96,104,98,108,105,105,108,98,108,105,88,103,104,113,111,103,101,101,97,101,102,102,108,109,109,100,101,93,105,108,104,133,79,94,102,106,97,102,109,106,109,96,91,106,96,95,105,111,109,95,98,100,92,86,92,95,98,97,91,102,101,104,112,102,104,99,103,102,113,95,105,115,91,108,102,111,88,99,103,101,105,107,109,105,119,91,109,83,109,107,99,104,101,104,98,117,101,90,119,95,97,103,102,89,107,106,107,105,103,106,97,95,100,100,112,87,110,109,102,95,83,99,103,98,99,95,103,109,112,118,98,99,101,101,102,105,114,97,109,113,104,106,95,102,94,111,100,118,104,120,104,104,103,87,103,100,109,88,112,105,103,108,99,109,97,99,110,112,119,104,109,99,101,93,103,81,111,117,100,110,111,98,112,97,102,97,104,96,116,94,106,103,101,102,102,107,103,109,104,90,109,107,100,107,99,95,113,97,115,106,95,103,105,97,108,104,98,104,87,90,120,127,103,104,109,104,109,110,94,102,97,104,112,105,109,113,116,102,82,76,106,95,68,98,100,103,106,104,110,95,116,99,100,108,103,104,107,104,107,109,103,95,88,106,117,107,112,98,104,87,98,120,107,109,105,99,110,97,113,100,91,112,102,103,112,97,98,111,98,109,99,93,101,94,104,109,102,102,101,98,105,99,108,103,112,108,98,96,121,114,95,98,96,109,118,97,104,105,81,104,98,103,104,98,74,95,95,90,98,109,100,94,98,94,104,100,100,108,103,107,104,100,110,97,97,108,121,100,116,107,107,97,94,110,104,95,96,98,118,105,109,95,101,82,104,98,78,76,92,106,104,100,100,104,98,96,93,98,103,104,97,96,94,105,118,96,109,92,95,100,101,78,89,101,100,101,90,92,99,93,111,95,98,92,104,97,102,115,110,99,98,104,80,101,96,100,111,100,111,99,100,106,94,105,96,94,110,104,111,96,90,98,99,100,89,99,112,110,99,98,114,95,99,109,107,106,101,105,103,89,114,98,118,94,114,102,108,95,113,97,108,104,107,106,91,110,96,102,106,90,100,91,104,97,97,98,100,89,98,100,102,112,90,97,99,112,101,97,103,104,103,107,100,106,108,113,103,102,111,92,100,119,109,100,99,104,107,103,95,96,85,109,110,91,97,108,108,131,96,135,111,102,111,81,102,116,98,101,108,92,94,88,102,106,95,103,97,107,102,109,114,105,99,91,106,86,95,103,109,106,103,99,103,101,106,106,109,103,99,102,91,106,99,96,105,82,103,115,107,102,103,106,106,96,104,111,102,99,106,109,109,106,102,101,101,110,98,103,94,105,106,101,106,114,102,105,111,114,88,91,107,95,109,104,107,108,118,107,100,102,103,99,105,95,111,109,102,98,91,102,95,105,101,105,107,82,97,103,86,94,87,88,105,107,94,101,102,102,100,113,99,99,108,109,96,105,77,112,114,101,108,101,103,109,101,97,93,100,96,105,78,99,96,101,86,106,114,101,105,82,100,107,112,110,100,107,85,105,97,99,106,108,77,112,108,96,101,101,98,106,93,97,99,104,105,119,97,96,105,99,98,93,99,102,105,95,115,112,101,98,106,104,83,109,92,108,111,106,103,104,99,98,105,95,86,101,106,102,88,100,96,89,110,104,104,108,101,102,93,98,107,100,91,106,114,100,79,111,99,101,104,99,83,105,106,99,96,104,98,102,99,99,102,121,108,101,111,107,98,94,112,102,109,107,111,106,101,106,102,105,98,117,89,99,94,102,94,112,106,96,106,105,95,98,109,118,121,105,96,98,107,106,97,101,100,107,106,102,103,113,117,111,98,102,97,108,103,97,100,103,92,113,106,103,105,95,91,99,104,100,103,104,102,102,99,103,99,103,116,110,98,91,102,109,102,102,97,107,95,99,103,105,87,103,99,105,93,97,90,97,102,107,101,100,105,110,102,107,109,102,95,107,96,94,98,95,91,95,105,100,98,105,106,105,91,103,106,105,101,100,107,99,109,96,102,97,98,100,100,96,105,114,102,100,106,96,104,102,97,106,98,97,100,101,109,101,95,98,93,116,101,111,102,106,112,85,101,89,95,109,111,106,98,99,104,106,109,103,98,102,104,88,101,99,97,105,105,117,89,105,102,98,91,98,102,96,102,96,98,101,99,116,103,107,102,99,102,99,104,108,104,95,87,97,95,115,94,114,100,104,109,91,96,104,103,99,91,119,91,92,106,99,104,103,108,105,102,96,101,99,99,111,94,103,105,89,96,100,102,96,122,91,101,112,111,99,102,92,110,101,99,97,100,100,95,100,101,106,97,107,117,98,110,102,105,96,97,117,71,112,87,99,102,103,99,101,107,92,101,108,96,104,94,105,96,100,107,104,98,97,109,94,104,105,94,96,99,110,105,106,105,110,90,106,105,98,113,94,106,101,99,97,104,108,104,90,99,114,116,96,117,74,113,112,101,99,102,115,111,100,105,96,103,104,115,100,91,105,97,111,94,100,106,102,97,122,97,111,108,97,101,116,105,107,115,117,94,102,102,100,91,88,95,95,108,108,105,125,104,95,103,98,110,115,102,100,96,103,107,109,111,104,102,104,105,92,109,110,112,100,114,110,111,109,100,100,81,102,95,102,101,102,102,105,95,115,108,99,101,101,91,96,109,90,107,116,99,94,113,106,106,96,100,116,95,108,102,107,96,103,109,106,104,101,97,109,96,98,104,105,105,108,102,102,94,100,110,98,91,98,108,86,109,96,92,104,105,102,104,105,96,92,108,107,99,106,102,88,113,102,103,89,96,108,93,99,90,107,101,91,81,102,103,92,95,105,108,110,105,105,102,103,112,109,113,107,90,94,99,98,102,103,89,99,86,100,79,93,103,95,104,112,97,114,112,98,94,106,110,100,88,105,98,95,107,90,107,103,100,100,86,105,103,109,94,103,102,101,100,102,100,92,116,91,82,100,123,113,100,103,97,107,100,91,98,107,106,95,104,94,116,107,101,97,121,109,91,107,109,106,100,111,96,103,116,105,91,103,97,101,107,91,113,101,106,101,113,112,101,95,108,101,102,99,116,98,100,109,99,93,109,93,104,99,92,99,90,102,96,98,96,103,100,99,99,103,102,102,94,95,95,100,98,102,96,98,95,106,116,97,112,102,100,92,102,112,106,97,96,100,88,109,99,97,98,88,82,102,91,104,102,100,117,91,100,107,103,89,117,101,98,105,103,92,106,101,111,118,97,95,101,112,114,116,103,107,91,91,102,97,103,106,90,121,96,100,101,111,97,100,107,103,101,103,103,77,94,97,117,95,94,101,97,101,105,112,104,109,112,102,98,103,97,101,98,104,104,117,94,111,92,96,97, +433.17062,99,91,95,107,98,99,111,103,86,101,95,109,102,91,110,104,100,109,86,99,108,102,104,97,100,97,104,97,99,116,101,101,105,105,129,91,100,96,93,104,109,86,84,98,95,97,94,107,88,99,95,107,107,104,102,95,96,98,109,99,99,91,104,93,108,110,97,101,110,98,104,102,92,99,93,104,87,90,101,98,94,95,99,80,105,105,93,65,106,96,99,94,113,102,103,98,92,98,106,116,104,90,87,94,109,101,107,96,93,96,108,77,98,96,102,95,95,97,104,106,111,102,99,114,103,111,115,98,104,96,105,105,101,99,97,92,98,97,92,85,93,115,100,82,99,100,119,103,92,96,87,93,103,95,101,105,100,106,103,110,104,73,111,97,103,98,99,92,120,97,98,103,89,97,105,104,106,94,123,113,101,109,97,103,105,99,103,98,96,90,96,99,97,104,99,98,96,102,111,82,97,101,104,66,100,102,99,104,108,98,103,102,95,97,91,114,92,108,98,103,100,104,112,98,93,107,108,84,100,99,102,102,101,103,108,94,94,114,103,93,108,98,104,100,102,106,97,106,99,110,99,109,90,110,100,100,99,95,97,87,94,95,95,100,88,98,95,99,97,100,97,98,95,95,93,92,103,122,88,100,105,108,100,102,98,109,90,102,100,111,114,101,105,107,98,104,106,90,102,109,95,93,110,105,102,107,99,108,98,102,91,110,117,114,99,97,101,106,100,95,102,99,101,99,115,96,113,93,107,97,95,103,104,101,109,100,71,93,88,109,92,106,104,96,113,109,98,113,107,105,104,96,90,89,101,98,102,108,104,107,95,110,91,93,108,101,97,95,106,104,98,110,108,96,113,101,111,97,105,88,109,93,100,91,110,105,108,93,102,99,103,97,109,102,103,105,107,105,94,99,97,100,105,91,94,95,115,121,108,94,104,91,100,113,101,99,104,114,89,93,97,107,101,99,94,95,99,86,96,104,104,102,108,89,104,102,100,99,84,107,95,106,96,108,105,104,91,89,97,99,92,93,100,98,102,103,97,98,89,98,82,99,106,106,110,105,95,95,103,90,92,117,110,96,97,90,101,110,97,82,112,103,108,106,103,91,105,100,98,109,111,87,100,87,98,97,98,102,104,102,99,102,116,105,107,87,103,101,112,99,102,138,108,107,96,91,104,103,102,100,110,120,102,105,94,106,117,100,122,101,97,102,101,73,97,100,105,100,106,95,105,108,97,103,103,112,99,99,99,111,99,110,94,99,106,96,102,100,97,97,106,88,99,109,84,99,120,99,95,99,98,96,102,94,98,109,98,113,107,113,87,89,93,98,95,99,114,100,99,100,105,103,91,98,117,101,109,99,113,101,98,104,104,100,108,95,104,95,97,107,74,100,103,100,98,100,103,105,117,100,109,109,99,99,96,96,96,94,101,99,68,106,94,102,88,103,101,97,102,104,102,92,108,99,88,98,102,119,105,101,107,94,103,95,91,101,100,104,98,105,98,98,113,111,95,90,108,102,119,99,105,102,101,95,102,103,94,93,99,95,91,105,105,88,97,94,97,105,101,99,99,110,101,109,106,104,107,93,87,102,95,97,96,103,110,110,113,105,98,94,101,96,100,104,105,112,108,100,105,91,96,95,97,99,98,111,83,112,95,107,64,88,99,97,96,107,104,104,104,106,114,95,103,87,100,97,96,103,105,114,99,102,93,100,108,94,104,109,91,99,103,104,102,115,82,101,87,104,97,107,97,95,109,95,98,103,102,97,104,110,101,100,106,101,108,105,110,105,88,102,110,111,108,118,101,95,82,96,97,110,97,88,101,95,107,96,92,104,101,94,106,106,97,101,101,104,102,107,95,95,95,107,100,101,108,98,85,106,104,107,112,100,110,98,99,96,104,91,105,104,99,113,110,89,82,91,103,109,98,87,96,95,102,104,67,102,100,99,96,100,106,103,103,107,105,82,106,105,113,117,98,91,102,102,91,111,97,93,95,102,106,94,95,106,107,110,104,102,97,112,105,102,99,101,98,97,98,100,106,103,117,92,85,86,93,90,103,132,95,88,95,104,96,107,90,90,95,104,103,90,100,89,120,106,104,101,102,110,103,99,96,98,100,103,71,90,98,105,106,110,100,111,94,131,105,94,88,99,98,116,108,101,97,113,113,111,110,91,97,105,113,99,101,106,101,99,87,105,105,96,94,110,102,106,105,111,93,103,91,95,100,102,101,94,94,108,94,103,99,95,92,100,104,106,95,100,86,101,105,104,104,103,91,100,99,107,102,99,94,110,97,95,108,107,105,91,109,92,90,98,106,107,100,98,106,103,96,97,99,95,103,96,98,100,107,95,92,98,86,92,111,102,98,112,101,90,98,106,101,104,89,99,87,104,94,105,98,102,97,98,107,99,105,98,108,113,101,107,98,104,98,106,90,99,107,95,104,96,103,105,97,93,93,121,111,104,100,99,110,98,98,103,101,109,99,97,107,104,99,95,102,96,113,91,86,107,98,105,88,93,96,110,96,102,103,98,102,102,102,112,114,111,99,90,99,91,104,76,111,98,103,96,101,98,103,121,87,98,113,95,104,97,101,105,95,127,107,108,106,102,116,96,106,113,103,95,107,108,100,109,101,103,106,106,110,106,106,108,111,106,108,120,107,92,106,102,108,87,113,92,93,98,97,104,121,101,107,107,96,105,92,99,111,111,83,108,110,99,99,95,94,96,103,100,108,95,107,100,100,101,95,91,99,98,100,117,104,91,100,94,107,94,112,103,98,107,102,103,107,100,105,103,103,95,112,107,97,90,98,107,98,88,75,92,107,105,106,96,93,114,108,120,99,95,100,98,100,115,113,100,115,91,104,106,113,102,100,103,105,109,98,112,115,104,107,89,104,106,85,104,94,119,94,101,99,104,105,104,108,106,102,113,100,101,117,112,97,111,99,106,101,113,95,102,112,107,93,114,113,99,114,100,99,128,103,110,102,105,106,87,113,108,110,103,109,103,109,113,108,83,113,101,119,107,113,109,106,102,104,114,106,106,108,97,100,112,109,95,108,91,93,91,105,98,104,101,99,100,117,91,101,107,106,104,96,105,100,105,90,104,68,116,99,112,102,105,111,103,99,100,100,98,90,112,117,93,94,91,101,103,102,106,106,119,104,102,102,98,111,94,90,106,92,107,105,106,92,107,90,102,104,110,98,101,101,88,97,99,99,112,99,108,95,101,95,105,109,99,108,99,111,105,106,112,100,104,71,105,88,105,105,99,106,103,105,111,94,99,107,121,84,100,104,101,94,85,97,98,96,100,110,93,99,95,100,112,105,88,93,106,98,105,100,109,106,106,108,108,98,109,105,113,106,107,107,108,84,103,98,95,111,102,107,120,106,93,112,92,96,104,87,99,91,120,79,102,98,104,98,101,100,104,95,97,109,100,109,101,98,100,104,108,111,104,94,98,104,102,104,99,106,96,109,95,113,103,96,101,94,103,106,105,88,120,117,121,106,99,78,92,109,102,102,95,96,110,97,104,104,104,102,114,113,96,105,91,106,103,99,89,113,97,104,86,107,108,108,105,96,106,103,95,96,100,95,96,83,101,99,102,96,116,99,109,106,96,105,97,100,94,99,116,106,82,102,83,102,103,102,101,106,107,100,96,108,101,94,95,91,105,97,103,108,106,98,87,108,93,124,97,102,106,117,106,105,101,100,110,103,93,99,101,110,95,107,112,103,103,104,102,115,91,96,102,109,106,120,105,111,99,102,94,100,103,101,105,113,110,103,91,108,103,88,87,93,95,103,109,103,106,123,93,103,99,120,93,113,113,106,111,98,109,91,100,106,95,108,99,95,117,93,89,105,102,95,93,94,94,100,98,93,96,89,104,109,103,109,109,96,111,97,105,104,115,106,96,103,106,110,96,105,106,99,115,91,101,102,107,121,100,100,104,91,107,109,103,100,99,96,97,99,94,116,113,102,104,96,111,102,98,94,99,95,96,99,87,98,91,106,101,112,103,107,98,105,99,113,105,108,106,103,103,103,104,99,112,104,102,111,95,111,100,95,105,90,103,105,101,105,105,103,97,99,99,104,104,101,100,117,106,81,99,94,91,98,107,102,108,106,102,100,91,90,105,98,94,98,104,112,104,121,95,95,99,107,108,87,109,96,96,99,120,121,106,104,89,100,107,99,110,104,108,105,115,87,102,98,107,92,102,105,98,89,112,108,95,103,100,101,93,99,99,104,93,91,97,103,107,101,101,106,97,98,111,90,102,96,99,99,108,95,97,113,99,97,100,97,99,105,104,114,108,111,100,106,107,101,97,113,104,104,110,82,87,111,85,102,107,103,115,102,102,109,105,96,103,105,100,95,113,99,114,99,96,101,95,98,101,108,117,103,99,87,95,95,99,102,115,90,96,105,86,95,107,106,98,105,96,98,101,96,93,103,107,99,93,88,103,94,102,94,112,99,103,97,91,106,74,101,109,98,95,89,100,107,97,89,104,88,104,104,109,106,100,115,104,106,96,80,84,106,105,106,98,99,103,108,87,113,88,98,103,123,100,103,111,98,104,92,102,102,91,99,110,111,99,110,97,98,98,114,102,87,105,131,94,90,115,109,99,104,110,110,106,104,106,102,108,108,109,95,88,108,108,99,103,101,101,93,85,91,99,96,111,113,91,104,107,96,91,91,111,111,88,113,98,93,96,106,94,101,91,92,96,105,67,102,91,112,90,97,99,97,107,96,97,99,98,101,113,86,88,102,105,98,103,98,88,102,105,99,104,107,98,99,103,106,103,100,94,108,94,102,113,101,105,104,104,93,114,94,109,99,92,101,103,91,99,106,81,99,100,107,88,105,96,104,105,108,107,100,96,110,80,103,104,99,114,96,106, +433.31091,107,95,90,93,95,109,99,78,111,108,102,95,103,96,117,99,89,97,99,87,95,99,121,101,90,104,93,100,100,110,101,99,102,99,83,79,91,93,100,92,90,103,92,98,95,107,100,95,112,111,103,91,107,99,99,105,101,85,106,93,96,103,62,90,113,77,104,107,92,98,116,98,97,117,91,106,103,91,114,97,97,104,105,101,99,87,103,104,97,103,102,112,98,98,105,85,107,93,94,106,104,96,94,91,102,98,82,114,108,96,101,95,110,95,98,92,95,110,106,94,102,84,72,103,98,107,108,102,101,101,97,94,89,102,104,88,94,97,108,103,101,113,100,110,92,104,100,95,105,80,97,95,108,102,100,101,97,100,128,92,107,90,76,94,96,99,101,95,109,95,97,91,102,96,105,88,105,92,108,103,116,102,96,118,85,88,96,93,101,96,97,106,96,94,95,105,105,86,94,102,98,100,105,101,95,99,101,106,100,99,101,100,108,113,100,93,100,108,96,100,79,100,101,87,106,110,94,103,111,92,100,103,105,100,102,108,103,107,96,91,92,103,103,99,94,98,103,96,98,104,68,108,103,103,97,109,101,116,102,98,101,97,87,79,93,96,109,97,104,86,94,104,105,101,111,89,104,106,116,115,91,106,96,105,73,100,105,103,92,101,109,106,102,102,106,108,92,95,98,96,100,97,114,115,91,121,109,107,99,68,98,100,100,101,93,105,105,121,100,99,92,105,96,103,111,96,97,93,103,102,107,96,106,77,107,95,86,101,95,103,113,103,98,84,95,100,109,109,105,111,99,102,103,90,94,103,98,100,101,113,96,118,101,98,97,96,100,103,102,104,102,98,113,92,115,104,92,102,89,103,106,94,97,101,86,103,92,98,101,107,109,106,90,119,118,100,108,101,96,117,95,98,99,98,100,98,103,97,101,93,105,93,97,117,101,105,99,96,107,106,97,95,104,97,98,97,118,94,99,120,98,100,89,78,103,100,98,98,107,100,92,93,105,98,102,97,92,97,92,109,98,93,99,102,104,104,104,101,103,97,108,95,109,106,103,101,101,105,101,73,95,102,99,111,100,97,86,108,106,103,91,100,112,96,99,96,105,105,99,92,96,102,97,111,108,109,106,95,101,97,100,98,106,107,91,95,88,108,112,100,98,115,98,104,97,103,111,96,104,86,102,99,101,104,105,101,95,100,101,102,94,103,102,96,103,92,100,87,99,100,98,102,100,98,99,106,107,98,98,100,91,92,103,107,96,95,99,97,96,102,103,97,91,109,98,94,97,105,99,104,92,100,94,103,99,98,105,93,90,100,104,99,97,92,99,101,110,107,100,98,95,100,102,97,102,103,102,94,96,90,100,107,109,97,103,106,97,101,109,99,94,93,117,95,108,98,99,97,98,99,98,89,104,116,101,99,97,95,99,101,97,109,92,102,99,107,99,87,103,101,98,102,101,88,108,98,100,86,110,106,79,107,105,114,90,94,93,114,96,90,100,91,96,106,100,94,102,94,110,104,112,100,119,109,106,94,99,100,102,100,95,113,108,95,105,100,99,104,85,98,103,112,94,103,99,97,103,110,100,97,106,102,131,96,104,100,118,95,103,114,99,109,95,94,99,103,99,110,99,99,92,100,92,114,103,102,101,94,91,105,102,96,100,102,94,99,104,105,88,97,96,93,97,96,109,98,103,100,103,98,106,101,87,96,103,105,86,104,106,95,99,120,103,105,109,104,91,97,85,112,103,104,113,89,105,82,99,97,90,99,105,112,102,114,118,96,100,106,95,100,105,108,101,108,106,95,102,104,108,99,105,107,100,95,96,110,98,94,91,105,104,108,90,91,112,99,109,96,109,104,101,109,91,98,104,108,109,92,102,92,114,113,99,101,104,100,99,122,105,111,106,101,103,99,98,97,100,89,101,99,95,115,94,99,85,110,105,103,100,98,98,106,86,99,94,90,99,105,97,103,88,109,101,103,102,98,97,98,119,100,104,107,95,106,102,107,106,105,92,100,97,111,97,100,102,98,92,99,101,107,106,102,97,101,94,96,108,108,97,104,109,111,92,108,101,96,102,62,104,101,104,108,97,107,102,105,106,105,105,106,126,109,116,108,100,101,99,91,108,103,95,94,78,104,104,92,111,96,108,100,101,109,109,106,103,118,98,104,104,104,109,116,110,91,113,97,103,99,99,98,93,100,97,96,94,101,104,105,106,97,102,102,105,109,99,105,109,103,86,104,108,108,102,106,98,110,109,110,104,90,97,97,109,117,89,91,104,94,99,99,89,100,102,102,100,94,99,107,96,107,99,91,94,92,96,94,112,101,105,112,95,89,103,97,91,90,101,102,107,93,101,90,106,95,98,99,106,91,90,94,101,95,95,102,105,77,96,95,100,101,105,107,100,97,107,102,98,105,88,97,79,100,98,117,88,101,83,128,92,109,95,97,83,99,111,95,104,112,106,99,115,107,106,101,98,87,102,109,103,92,113,90,101,101,95,101,106,93,104,105,106,106,108,101,105,107,96,103,100,95,100,91,102,96,109,104,101,92,111,109,89,113,90,107,113,100,96,99,104,111,95,97,112,105,94,102,110,104,121,108,110,113,104,104,100,128,106,106,111,102,109,95,101,93,104,98,110,98,120,97,92,108,116,113,96,104,97,112,101,105,107,106,97,118,107,102,109,107,91,99,98,112,104,99,101,103,105,105,103,109,97,88,99,73,103,112,129,103,110,113,114,109,98,106,95,101,111,104,103,100,112,103,107,101,110,114,83,106,101,109,76,102,103,102,102,99,112,110,105,121,109,105,100,94,93,107,107,101,105,101,93,113,102,104,95,88,102,104,100,101,104,97,117,100,104,109,113,112,105,98,102,96,105,120,102,103,91,114,113,105,102,91,105,112,106,94,113,100,106,120,104,101,88,93,106,126,95,102,98,107,110,101,109,108,99,98,110,107,105,112,94,99,109,94,101,105,103,102,107,101,115,103,108,95,104,96,111,99,97,100,98,99,99,111,111,94,107,104,99,116,108,106,112,102,102,118,109,94,106,101,102,103,111,109,98,102,96,93,97,96,97,98,104,93,100,94,113,101,94,95,101,110,102,93,100,103,110,106,92,98,95,106,99,94,112,105,106,111,106,106,102,93,100,101,95,101,94,97,99,107,102,101,107,100,104,95,98,108,98,102,98,102,105,97,105,108,111,99,95,102,113,106,88,107,84,104,88,112,106,90,114,106,108,114,107,95,108,105,107,112,91,103,105,108,99,91,94,105,103,101,102,92,100,99,96,103,105,98,124,105,102,103,92,109,105,96,98,102,108,103,86,111,95,99,117,115,104,102,108,101,98,103,107,112,122,105,91,100,103,104,109,105,89,105,105,99,104,83,103,121,91,95,112,100,91,112,108,110,105,102,93,96,94,110,86,102,94,100,102,93,100,96,99,105,103,104,108,103,109,101,104,99,108,100,120,107,90,117,104,110,103,103,91,101,102,109,109,108,95,108,104,97,103,109,110,115,107,106,117,105,110,110,104,103,110,105,97,105,102,101,108,100,102,88,101,91,111,99,113,100,103,98,101,114,96,92,98,111,101,110,100,100,96,87,107,96,102,97,101,102,105,97,101,97,100,101,102,100,108,110,92,91,103,110,106,109,90,99,101,105,101,109,97,105,101,94,102,103,91,101,110,101,84,120,99,102,114,105,104,103,99,93,107,100,112,101,107,110,92,95,105,107,98,104,108,108,105,106,109,103,123,102,102,99,106,97,105,91,115,102,102,107,100,99,117,108,98,107,101,95,107,103,104,100,109,104,110,105,98,107,88,95,107,99,90,99,105,94,99,92,101,110,102,106,109,112,105,98,103,107,105,100,92,104,108,107,108,94,92,119,108,103,101,96,104,107,108,98,97,99,95,101,98,105,102,103,102,87,95,107,99,103,105,128,100,99,88,97,97,102,119,94,81,127,110,70,109,101,106,114,100,110,106,99,101,102,88,104,108,111,100,99,98,99,105,111,108,101,105,104,100,106,111,96,112,108,103,100,76,87,100,98,103,96,97,96,101,103,100,106,105,107,98,109,109,104,102,108,107,115,102,97,98,113,99,103,119,100,107,83,92,98,96,103,105,98,104,100,102,105,99,110,101,110,109,97,106,112,103,88,100,102,113,101,104,103,105,117,109,96,102,110,94,102,91,88,94,129,96,107,117,104,118,104,96,107,100,114,100,97,100,100,97,108,108,101,95,94,104,102,102,108,112,115,109,93,116,100,94,101,97,94,98,109,94,106,103,112,97,109,98,101,113,106,116,113,99,127,99,96,94,113,113,98,106,109,105,103,101,100,99,114,96,100,104,123,103,99,106,98,91,113,101,104,95,101,102,97,108,107,102,99,108,99,85,101,92,106,103,101,116,110,109,95,100,110,103,100,102,108,106,100,99,112,103,92,89,96,101,112,93,97,102,101,106,90,75,104,103,113,94,97,79,104,103,113,81,113,100,101,101,97,104,107,101,92,121,110,100,95,102,108,93,90,103,99,111,96,100,106,98,103,91,99,100,91,87,102,104,98,103,107,99,94,104,111,105,99,108,103,108,115,101,108,125,87,99,105,101,95,105,116,105,91,107,89,106,101,101,101,110,94,99,102,86,111,100,108,113,90,101,105,104,102,109,105,112,115,105,96,110,105,98,105,102,100,110,96,97,107,90,97,104,105,96,107,100,101,100,102,140,125,107,104,106,106,105,107,98,96,120,83,108,106,110,109,101,76,98,88,101,102,110,100,94,107,84,108,93,98,100,96,94,106,117,102,97,93,100,103,102,98,75,108,67,101,76,98,93,97,108,99,116,99,87,103,99,116,107,93,103,94,105,109,99,105,101,97,97,105, +433.45123,109,100,101,86,106,90,95,96,98,109,95,99,87,101,120,94,94,109,112,98,90,88,91,105,101,108,103,98,96,112,97,89,110,110,100,102,114,96,102,95,97,99,110,107,108,104,85,100,111,91,99,97,95,97,110,92,101,89,107,92,109,107,100,92,98,112,101,97,93,98,108,128,97,105,99,94,91,110,111,106,115,101,91,112,107,102,98,99,94,95,106,103,107,102,100,101,99,110,101,102,89,97,97,101,101,94,100,103,96,96,98,97,106,91,95,113,83,104,112,98,95,111,107,101,91,111,108,95,97,106,105,102,104,106,112,95,91,98,85,97,101,93,88,96,105,103,94,83,101,91,87,96,102,101,105,88,106,121,97,99,99,130,106,93,108,97,102,102,94,91,107,106,102,100,104,104,106,96,105,107,96,108,91,86,114,99,94,96,95,113,97,111,98,105,95,100,95,109,103,107,89,98,94,99,103,108,100,98,97,104,94,99,95,102,104,100,98,105,97,101,102,109,106,94,97,102,107,100,102,94,95,99,90,106,98,101,101,103,99,100,113,96,117,102,95,102,96,105,105,120,87,105,103,97,105,104,109,104,98,102,80,104,100,105,104,97,113,94,102,97,98,93,110,106,107,106,100,93,96,106,91,98,107,100,93,101,99,91,94,105,105,115,107,99,99,102,99,115,108,93,95,95,101,86,89,104,87,110,104,106,95,119,95,98,100,94,92,94,102,85,105,107,106,94,105,103,114,101,105,118,113,109,103,104,105,104,95,106,103,113,94,108,96,101,96,99,98,94,100,91,100,101,102,98,96,103,110,78,96,101,102,104,96,104,82,98,99,105,106,100,95,99,93,103,106,91,105,122,101,95,102,107,95,103,104,108,100,96,103,92,106,93,84,99,100,102,99,98,93,102,108,105,95,99,91,103,107,71,107,96,109,97,105,111,95,100,85,99,110,100,104,109,100,108,96,106,114,94,93,99,99,113,101,94,111,109,110,90,102,104,100,104,99,114,96,99,108,95,104,104,99,105,91,101,108,101,111,102,118,95,92,108,109,102,103,96,108,107,111,119,105,110,103,92,102,110,100,114,101,88,107,94,100,103,102,110,99,111,98,109,99,105,101,121,98,88,100,119,103,98,105,107,101,97,101,95,85,118,101,119,92,105,104,102,109,101,106,105,99,92,99,109,106,105,99,97,106,103,104,96,91,103,94,104,102,101,117,103,96,107,97,101,96,104,99,95,101,101,109,109,103,98,111,110,98,99,96,97,106,103,111,105,105,102,96,106,105,101,104,106,123,92,97,87,105,105,102,116,107,96,107,100,108,96,108,95,119,101,106,108,101,104,97,121,105,117,112,91,108,103,94,105,113,96,96,106,97,95,95,106,100,105,113,93,101,86,105,83,98,99,98,99,107,97,116,98,86,102,108,109,112,104,110,90,69,101,104,105,112,105,99,112,102,106,103,103,102,91,98,112,86,110,88,110,77,117,110,107,89,93,101,101,115,100,88,99,94,101,99,106,112,110,116,109,95,109,101,101,103,100,99,102,103,100,95,96,96,87,113,95,103,103,111,94,99,119,109,116,107,101,101,105,100,98,104,104,113,108,100,106,88,111,120,113,109,87,97,117,95,101,100,100,92,103,94,111,115,111,105,98,99,101,101,102,101,102,103,96,103,96,102,104,98,94,96,96,104,110,99,102,95,100,106,105,96,102,90,96,98,91,92,112,102,102,92,105,82,101,99,99,112,102,111,104,101,101,109,100,104,94,96,117,109,70,96,120,106,113,100,103,99,111,104,95,127,118,96,110,106,113,102,100,106,106,97,99,105,95,93,106,98,94,101,89,106,92,90,111,111,97,95,107,113,96,94,97,102,96,106,76,112,102,112,91,95,98,98,109,110,108,94,98,108,104,113,92,89,95,106,102,105,111,87,97,103,100,101,104,95,91,109,106,101,92,105,101,103,104,112,101,98,110,112,101,104,89,98,86,98,96,118,105,104,107,113,98,94,104,103,97,101,108,96,112,106,103,91,95,94,104,113,105,103,99,109,93,105,95,103,91,107,101,107,102,104,104,83,91,104,114,104,100,90,112,110,101,98,95,96,84,114,102,101,104,113,100,109,98,111,99,99,102,103,101,103,81,105,104,103,105,106,101,113,99,110,104,107,97,110,99,109,104,105,100,98,100,100,96,101,116,104,110,113,96,103,104,105,96,87,105,135,101,96,111,101,107,90,96,98,97,99,115,110,77,91,99,106,111,95,117,108,97,94,97,111,119,96,99,90,107,108,106,108,106,104,107,107,104,99,107,101,114,90,105,101,97,104,103,95,103,108,100,106,101,103,101,105,96,95,81,103,107,90,101,98,99,104,97,95,102,103,82,103,103,98,106,93,97,95,90,90,115,96,99,101,101,103,83,95,95,96,120,98,104,90,103,110,107,96,99,98,102,102,115,109,94,105,107,73,113,116,113,109,104,99,100,98,85,88,104,108,116,104,104,101,108,93,100,106,99,107,110,85,91,100,94,97,119,102,114,97,97,92,112,109,109,108,128,110,108,100,107,105,92,103,107,116,98,105,95,100,89,100,104,94,97,111,118,117,98,111,97,107,106,118,105,109,107,104,113,104,101,102,104,95,111,93,98,109,89,108,96,100,114,99,110,102,111,95,111,115,97,110,115,104,106,108,114,117,113,104,99,108,121,103,120,101,91,111,102,102,104,105,99,103,108,101,101,102,99,109,112,102,95,121,106,100,111,105,103,97,105,121,105,108,101,106,115,95,97,113,99,95,93,105,111,106,111,93,99,99,97,114,99,105,103,106,102,107,116,108,105,110,104,102,103,93,102,101,95,107,102,108,113,113,95,102,115,78,104,102,99,90,104,100,105,90,101,101,108,95,117,108,113,103,100,105,109,88,106,117,109,111,102,101,99,105,114,104,109,107,104,112,108,99,101,99,100,105,97,122,101,103,99,93,104,88,101,108,102,105,103,112,98,106,107,109,111,91,96,109,101,96,117,106,97,108,98,99,105,104,110,99,107,101,102,105,102,104,98,105,105,104,106,94,104,91,97,101,99,106,101,118,106,113,97,114,112,111,106,108,81,103,104,105,105,117,95,107,95,107,104,103,111,109,104,108,99,104,102,104,100,91,97,95,102,107,92,110,109,117,97,109,100,100,103,110,108,95,102,94,105,106,100,107,107,112,98,103,95,115,100,105,111,109,104,103,100,110,92,103,106,102,100,115,106,109,109,105,110,97,102,96,107,113,99,103,106,95,106,100,91,95,107,104,101,105,110,97,100,108,104,95,116,93,98,87,95,103,105,98,99,104,94,90,100,108,90,99,104,112,114,105,105,101,111,103,106,101,103,93,85,103,95,120,114,107,104,102,105,96,101,105,86,109,104,106,106,105,108,106,93,93,92,96,101,110,115,100,97,105,98,101,104,100,102,105,100,99,101,107,103,100,104,112,99,100,113,102,93,90,101,107,101,101,99,105,95,104,114,113,103,115,101,94,98,104,98,96,107,94,111,107,84,95,100,108,99,113,98,112,103,96,105,92,102,102,115,114,99,109,103,101,120,106,72,87,107,131,105,86,100,100,101,103,83,117,93,102,100,96,104,102,100,74,101,110,99,108,114,104,109,106,105,99,111,100,117,102,94,101,104,106,106,93,115,97,112,113,104,104,112,96,120,103,106,96,109,97,107,101,95,94,104,109,108,106,109,99,102,105,81,91,112,113,101,109,104,108,104,103,108,94,107,97,104,96,117,109,109,102,103,106,98,116,107,117,106,100,113,120,107,112,100,92,109,102,100,113,103,106,80,100,105,87,103,102,110,103,90,103,109,116,113,100,103,114,115,104,111,104,93,106,112,98,98,105,84,103,107,102,104,102,104,103,99,114,102,106,105,103,114,113,98,100,104,101,104,110,107,102,111,86,94,95,102,99,102,99,109,120,106,100,98,103,115,110,108,98,99,104,102,108,105,105,93,102,110,96,106,112,109,98,109,113,98,104,104,107,101,105,98,105,99,102,112,113,97,109,97,110,108,98,109,99,95,106,95,102,89,100,99,85,103,111,109,107,105,119,95,97,101,94,115,101,105,99,123,98,107,91,97,107,103,95,106,105,106,99,94,106,102,98,100,102,108,116,111,100,105,102,101,106,105,106,106,87,97,102,105,110,98,96,100,99,113,102,111,95,106,104,101,107,109,101,102,104,90,115,100,115,93,104,94,109,106,104,110,108,104,102,97,113,98,99,105,105,110,96,110,104,96,104,97,104,97,99,104,99,98,104,89,110,105,108,108,109,107,113,100,120,104,98,113,110,95,94,102,106,92,110,98,108,106,105,102,109,111,107,94,100,96,106,91,107,100,110,102,105,101,101,104,104,100,98,107,102,106,94,112,110,101,108,97,106,93,102,102,100,106,91,113,98,96,99,107,102,100,115,110,94,75,94,103,104,97,104,116,105,100,97,93,109,101,100,99,115,109,104,104,97,93,104,119,110,103,124,112,95,95,99,113,95,99,84,109,109,105,92,93,103,105,125,96,92,93,103,98,105,108,103,95,96,103,93,104,89,106,99,92,108,109,94,109,105,98,129,81,99,94,100,100,106,102,98,98,100,97,104,102,107,95,104,113,99,59,104,96,110,90,93,91,104,106,95,108,112,112,110,88,112,98,99,94,113,101,103,100,98,95,108,98,101,96,104,103,90,97,97,109,99,118,130,96,98,102,100,109,101,105,104,95,103,104,110,104,94,98,100,101,93,99,107,88,100,102,109,102,112,105,106,113,101,102,104,96,107,100,98,109,106,105,94,103,98,101,93,93,102,101,92,101,98,102,91,103,96,101,83,97,102,100,84,101,111,92,109,96,89,94, +433.59152,103,96,105,97,96,125,101,103,92,106,103,92,88,102,105,99,100,84,92,108,92,100,92,120,101,105,100,93,95,102,99,87,98,103,116,108,87,97,99,103,79,112,86,103,104,100,98,95,102,104,104,108,121,100,103,108,99,101,117,109,86,100,105,98,112,136,83,99,106,90,99,94,103,107,100,110,84,107,113,95,104,106,96,105,116,68,112,98,92,104,98,98,101,117,101,120,103,97,87,94,98,78,103,93,109,106,98,97,103,102,101,89,86,101,91,98,96,102,95,95,87,110,106,100,101,96,113,89,103,97,104,102,105,106,97,99,101,96,94,100,100,104,95,98,106,86,99,93,96,94,91,100,101,103,98,93,105,106,102,98,100,98,101,99,99,109,93,92,100,88,95,100,98,95,115,109,104,97,98,97,91,98,94,102,103,86,97,97,116,110,107,122,99,98,91,113,88,99,99,95,91,109,104,96,100,104,105,111,106,107,101,106,94,100,103,100,91,98,94,122,100,98,104,104,105,86,109,104,99,111,90,100,108,97,86,94,108,93,98,108,98,91,104,99,103,106,96,106,101,107,98,98,100,113,96,100,103,105,98,118,109,101,112,92,104,91,101,109,95,114,110,102,96,101,105,97,91,107,91,87,108,110,98,108,91,94,99,109,103,108,100,101,95,99,99,101,102,104,110,106,102,96,113,71,103,108,104,104,111,113,105,106,98,100,93,101,105,116,111,116,106,104,87,103,104,106,111,104,113,118,92,98,121,103,104,112,103,109,96,100,108,99,102,90,108,105,109,97,111,105,103,113,112,113,106,104,106,89,100,103,99,105,108,98,96,86,102,108,94,103,101,106,84,98,95,94,105,106,115,112,102,99,99,104,106,99,81,97,104,92,92,85,106,112,107,103,90,104,110,100,96,105,100,99,102,95,104,112,99,104,99,104,104,104,105,85,100,94,107,90,96,116,97,104,94,97,110,106,96,102,91,98,91,98,96,102,106,98,104,91,106,97,99,83,110,111,97,75,122,111,102,95,100,103,105,110,107,104,112,95,97,128,96,110,113,96,92,100,96,101,101,102,105,97,109,116,94,99,101,104,96,105,95,102,100,87,104,95,104,102,98,83,95,92,101,96,102,101,96,105,98,99,107,100,105,101,114,111,111,95,106,105,121,97,95,85,100,107,102,98,101,105,85,98,108,116,100,115,105,106,93,97,107,103,109,98,103,88,96,106,97,117,97,90,104,93,100,81,113,102,97,113,99,95,97,96,99,96,103,99,104,111,116,105,102,98,107,104,99,83,86,109,101,95,105,105,112,100,99,101,110,99,92,101,115,112,101,108,95,98,96,111,85,103,101,112,110,95,93,93,99,81,105,108,104,102,96,96,108,107,110,95,104,101,122,102,105,95,102,100,82,113,102,110,105,104,96,112,96,104,100,68,107,110,85,100,104,92,95,100,109,102,116,103,102,109,97,99,114,106,96,107,100,94,99,111,100,117,90,103,110,100,114,102,97,97,102,103,101,99,105,103,88,95,94,105,97,98,95,101,93,105,106,92,100,101,103,102,107,95,100,110,95,104,117,104,116,111,114,95,101,89,103,109,107,109,109,103,95,102,99,100,108,98,117,104,108,101,101,104,107,117,97,117,95,99,92,103,108,108,99,102,111,98,105,95,114,113,82,100,97,101,105,79,109,98,100,99,104,102,115,97,107,102,107,105,114,95,86,101,88,95,96,117,92,98,103,104,116,90,108,101,101,93,111,103,108,100,98,107,109,106,111,115,98,113,119,90,113,102,103,106,96,106,117,99,102,109,99,91,100,100,103,95,106,99,105,113,108,100,97,103,95,100,109,95,104,106,100,98,100,111,101,102,91,98,101,105,102,107,107,96,108,99,106,105,104,92,96,92,102,104,107,92,99,100,95,95,108,99,88,100,91,104,99,106,112,105,126,89,105,95,95,104,99,103,109,100,113,97,103,104,107,101,94,91,108,82,99,103,103,101,99,99,65,109,110,105,94,97,120,100,112,97,101,103,95,104,97,96,106,93,108,92,99,106,98,94,96,98,99,100,98,103,100,103,93,107,103,121,113,107,109,103,106,99,94,99,108,106,102,89,99,99,102,92,92,100,107,101,100,94,105,102,99,114,100,105,94,105,97,76,95,103,107,102,103,106,107,98,108,107,105,91,109,101,100,104,77,102,101,99,83,95,95,105,94,92,105,109,98,93,100,100,100,104,101,116,98,106,94,98,99,109,95,105,96,109,102,99,100,116,92,100,104,109,103,111,95,109,105,101,118,98,101,95,97,96,86,96,100,99,94,106,115,97,95,96,101,91,95,113,96,96,105,103,99,110,104,112,84,82,86,97,94,88,106,104,105,102,104,104,100,105,101,108,98,108,94,97,101,116,97,108,113,99,101,97,102,96,92,103,94,104,99,100,112,102,89,104,100,103,89,107,109,100,125,103,121,108,105,100,117,96,91,98,102,97,105,109,97,87,108,101,103,108,100,96,103,109,83,102,107,96,101,97,109,104,94,77,94,99,102,105,105,101,96,101,109,97,104,106,108,96,117,91,101,112,94,102,97,93,99,104,74,106,98,99,113,99,104,109,106,107,117,105,107,100,100,99,100,110,99,96,105,102,106,106,107,101,101,103,107,100,98,91,100,102,108,101,97,101,100,99,112,103,116,93,97,93,90,103,109,103,103,93,105,101,101,92,101,113,101,102,93,104,109,107,99,104,111,124,97,99,108,104,105,110,73,106,107,100,101,100,106,108,107,107,95,100,115,113,97,107,107,100,108,104,104,105,112,104,109,109,99,77,117,104,97,100,88,108,102,90,119,104,87,106,91,95,106,99,95,110,110,100,83,99,97,102,106,102,105,115,106,108,100,96,100,93,99,100,115,102,102,102,96,110,96,104,95,116,89,111,110,104,100,102,102,97,119,96,105,110,100,99,104,101,109,104,101,104,104,89,99,97,96,101,109,96,90,108,106,100,109,102,102,105,104,99,109,105,123,120,117,98,109,90,88,112,102,113,96,101,99,108,104,106,90,101,95,63,98,112,98,109,98,95,111,95,115,107,98,91,106,106,104,95,106,99,85,102,113,111,106,104,106,100,97,79,103,117,92,117,100,101,95,109,68,102,102,91,102,93,106,112,109,99,104,100,98,103,104,103,94,100,102,95,99,102,94,93,103,100,97,99,93,96,112,114,109,110,105,93,108,109,104,96,106,105,100,95,102,96,108,108,110,109,105,111,91,85,105,94,96,107,102,101,100,100,110,109,98,116,98,97,112,97,108,101,102,100,105,105,99,117,106,95,91,100,104,106,111,103,102,105,95,105,98,92,102,107,104,122,99,113,108,114,103,94,104,96,83,109,105,93,106,103,108,97,98,103,107,95,84,87,107,88,109,102,104,90,97,107,105,105,106,95,99,103,98,110,104,104,96,95,95,104,93,99,110,100,91,91,100,93,108,106,115,106,116,100,107,89,105,109,98,102,80,99,102,104,96,101,102,109,98,101,101,109,111,98,99,105,119,105,108,94,102,108,111,95,99,104,100,112,117,97,113,94,104,101,99,106,99,102,106,96,107,111,87,107,102,103,105,101,103,100,112,105,92,111,103,97,98,104,102,106,95,95,101,112,89,110,105,105,102,103,96,101,111,135,96,93,107,98,79,96,100,108,107,112,113,104,101,114,91,108,95,97,100,100,124,113,95,96,97,107,102,95,100,97,99,102,111,106,101,106,100,113,102,91,98,105,94,99,107,96,110,106,98,96,99,100,99,99,105,93,115,108,111,101,95,105,101,106,114,100,82,105,105,111,101,108,105,100,104,102,104,98,112,108,103,102,96,107,81,97,105,108,112,98,101,101,103,100,103,101,97,83,103,95,107,109,106,105,92,114,111,100,100,97,105,105,102,97,103,102,114,97,97,92,93,105,102,100,98,95,104,102,105,108,90,107,103,107,92,97,92,100,103,95,102,105,100,103,101,98,99,106,113,104,102,101,117,105,99,96,104,106,98,105,94,102,99,107,115,98,100,98,101,102,105,87,103,106,119,109,101,84,100,104,110,93,116,113,105,103,119,106,106,96,97,101,101,104,98,101,101,106,105,94,87,109,93,91,107,101,113,107,126,95,104,95,105,96,106,107,109,106,98,103,104,100,106,113,93,114,113,105,98,100,90,102,95,100,117,101,95,102,104,94,89,94,109,94,101,104,114,100,95,102,92,95,98,96,95,106,98,102,115,106,103,90,100,103,100,95,102,100,92,83,103,104,102,68,105,95,92,107,106,100,102,115,104,121,96,102,97,105,105,106,112,109,113,105,82,97,111,106,99,111,102,94,90,94,100,105,94,94,92,110,101,113,103,105,106,100,102,98,97,112,103,99,103,122,101,106,93,100,95,104,108,92,102,98,97,105,103,96,98,99,104,102,111,100,104,90,101,95,95,91,94,95,107,96,95,94,92,98,89,88,93,117,100,105,95,94,90,103,102,104,102,95,115,97,109,102,113,100,97,102,122,104,92,80,108,109,95,98,94,100,108,92,91,100,95,106,91,101,85,94,111,101,90,94,116,85,95,103,103,70,100,110,98,103,116,103,100,108,108,100,100,98,93,87,106,104,101,81,95,91,103,105,84,98,105,91,105,112,93,111,114,101,119,101,115,101,97,97,87,101,102,73,102,94,99,101,107,101,94,106,98,93,97,92,105,97,105,97,95,99,109,117,95,94,103,88,110,120,100,102,102,106,98,101,105,104,90,102,96,71,100,106,97,97,108,107,103,110,87,95,100,99,112,98,91,100,98,104,83,109,114,79,90,92,91,98,92,88,106,109,107,111,107,100,107,97,109,96,105,93,124,97,111,90,92,100,88,104, +433.73184,127,106,102,100,99,104,100,98,91,105,92,113,93,100,104,99,98,92,104,98,104,96,100,104,105,106,109,97,108,105,99,101,113,88,109,101,97,94,107,81,110,96,97,101,99,105,95,93,108,116,106,95,109,103,87,94,102,95,105,105,104,100,105,93,101,116,114,101,95,87,110,94,100,108,92,95,98,108,105,95,98,106,85,101,102,103,108,81,86,107,98,93,116,99,100,91,94,97,103,97,100,100,114,97,103,105,106,93,96,92,100,100,102,105,101,97,92,98,99,95,106,96,107,103,105,93,105,91,99,110,96,97,101,89,85,94,100,94,96,98,99,103,95,110,83,104,98,103,116,104,85,89,95,105,110,110,100,98,101,92,94,93,102,101,107,98,96,107,107,67,87,93,106,95,101,108,99,95,101,99,100,97,106,96,106,93,98,84,114,101,108,100,100,88,98,105,107,91,102,103,99,108,98,106,97,95,99,117,116,101,101,86,98,114,106,102,115,102,106,105,84,100,99,97,95,109,100,107,94,99,97,115,100,103,108,92,110,105,98,101,98,101,105,99,106,98,99,90,103,99,103,91,96,98,93,101,104,104,98,97,93,100,92,99,97,106,95,88,108,104,102,88,103,103,104,119,100,105,107,104,100,83,103,110,96,106,88,110,103,109,91,89,111,107,63,113,103,95,95,106,93,102,108,111,98,109,101,99,105,105,94,94,111,96,111,96,105,89,110,104,98,97,84,109,100,90,105,94,101,106,102,98,95,108,103,98,97,105,97,97,102,106,103,101,102,98,103,113,102,107,94,100,96,108,92,100,102,101,106,100,104,94,101,83,101,82,114,111,105,98,112,99,108,108,100,106,106,102,106,112,98,103,103,98,92,99,105,98,104,99,114,92,90,101,112,106,113,98,103,99,97,110,74,103,109,97,109,106,103,104,96,105,91,111,94,73,98,90,100,104,102,94,90,107,95,94,95,105,101,102,93,92,106,99,109,108,91,102,87,101,103,104,106,101,103,111,103,94,110,113,94,91,104,108,100,97,98,104,105,98,107,104,100,102,117,98,91,93,96,110,112,99,106,95,102,102,90,103,95,97,103,105,104,95,100,101,101,95,97,108,101,105,104,112,96,98,103,105,112,101,106,96,103,104,109,107,94,101,97,101,113,104,102,101,97,111,112,90,101,96,110,76,108,114,121,108,96,114,95,109,109,100,102,95,107,94,94,96,103,99,112,105,94,111,104,100,112,101,105,104,107,103,101,108,104,107,92,102,95,95,93,91,112,102,100,100,106,105,87,102,94,95,119,98,114,99,104,104,90,101,101,102,96,104,93,113,106,101,115,103,108,103,96,102,103,98,104,99,105,107,96,103,103,96,94,105,95,107,100,106,102,103,93,105,101,99,94,98,110,109,102,100,105,104,100,64,91,101,104,112,107,88,91,103,94,106,102,119,107,98,108,103,102,98,113,126,89,109,103,106,99,112,105,88,108,106,105,108,105,102,98,112,99,101,93,95,100,95,113,108,100,105,102,101,94,108,105,100,102,105,103,103,106,105,128,105,97,100,89,106,97,112,109,99,107,92,97,99,100,97,103,93,87,121,104,115,115,115,100,98,108,102,95,104,89,98,105,85,101,103,103,95,86,99,98,102,94,99,101,102,111,128,94,96,101,99,111,103,103,102,108,91,108,96,114,101,82,112,108,107,108,105,95,98,105,109,100,110,102,94,105,96,85,100,102,65,93,95,91,101,97,99,107,109,106,102,116,109,107,111,90,96,110,99,100,113,101,106,110,99,93,103,86,108,88,102,120,109,96,93,101,101,100,101,103,100,120,109,117,106,105,104,94,104,100,110,108,95,128,103,96,91,102,102,92,102,110,105,99,98,89,102,87,101,95,103,101,97,113,101,93,101,100,111,97,101,89,120,100,107,116,100,95,105,100,101,108,90,108,110,106,99,106,106,101,102,105,98,118,101,101,103,105,95,86,107,109,94,96,83,98,95,105,99,96,94,101,112,87,98,101,104,106,104,98,104,95,95,89,99,110,97,99,88,99,99,104,101,95,97,101,99,106,106,103,89,124,107,110,111,125,105,107,102,90,99,92,102,108,95,109,109,103,104,88,99,104,106,94,102,95,102,96,106,110,107,96,111,100,111,104,116,102,106,100,116,95,100,101,113,100,111,104,103,100,97,92,109,104,107,98,99,100,96,101,101,100,107,111,106,105,100,97,105,81,91,117,98,111,112,101,87,113,92,112,92,78,100,105,93,97,105,101,98,107,88,100,101,96,97,87,110,101,100,101,103,110,109,99,103,101,99,81,108,86,99,99,98,90,99,96,112,112,93,101,93,104,104,105,110,99,103,94,98,103,97,99,105,101,99,95,103,110,104,101,106,99,100,90,103,105,109,105,93,100,100,101,86,74,107,98,118,101,101,105,117,114,103,119,101,99,97,98,110,112,111,97,101,109,112,103,98,104,86,98,98,108,85,97,114,100,101,110,107,106,94,98,94,100,112,107,106,102,106,103,98,91,104,99,103,100,93,98,105,99,105,102,103,101,106,109,125,110,96,102,120,103,95,101,105,109,100,95,102,96,103,108,122,100,99,113,102,104,98,104,94,87,107,111,98,102,96,92,106,103,97,99,104,107,96,110,94,101,89,109,94,103,106,95,113,108,102,110,109,103,94,111,98,109,99,99,104,115,109,104,90,80,93,108,109,99,105,99,108,102,100,100,106,95,107,98,113,104,106,109,118,116,105,103,98,116,98,91,101,113,112,102,100,114,102,99,105,96,113,98,98,100,101,102,104,102,100,107,109,77,100,92,114,98,100,98,108,109,105,100,100,92,107,93,123,95,109,104,102,117,104,104,121,89,98,111,107,102,112,92,95,90,108,99,104,112,105,101,109,102,102,111,108,101,88,106,101,101,93,97,103,113,101,90,105,101,96,110,107,103,107,107,109,95,98,103,104,99,106,111,113,102,115,107,99,95,93,89,106,110,95,111,99,96,108,104,113,90,106,105,108,104,105,99,109,95,101,98,97,103,110,109,101,114,102,103,105,98,117,108,103,110,105,92,71,112,105,118,98,110,106,115,88,103,102,103,102,96,102,113,93,92,117,102,96,104,99,104,106,106,99,100,106,97,105,90,91,96,119,100,105,99,104,112,81,103,87,99,105,103,102,95,99,101,98,94,111,102,108,103,87,99,100,98,107,103,100,97,106,104,102,99,98,110,110,97,108,99,102,113,109,108,103,98,106,101,113,104,96,103,106,99,97,116,109,100,95,99,94,79,102,97,92,108,96,78,106,103,121,101,120,89,99,102,83,102,113,98,106,96,106,114,95,92,116,103,104,106,96,113,109,83,100,101,94,98,112,81,100,102,97,100,109,102,96,101,98,104,113,101,107,101,103,109,101,111,98,93,95,93,105,110,110,96,91,75,113,114,99,102,107,104,98,100,103,105,103,113,98,106,105,91,102,97,113,98,113,115,109,101,101,99,97,100,91,106,108,106,125,109,101,106,106,115,101,101,96,100,109,107,101,99,108,107,112,105,98,104,106,103,106,106,116,106,94,116,103,91,106,103,71,101,96,104,93,103,97,102,99,95,103,95,86,96,115,105,95,95,103,104,104,105,107,102,101,113,94,98,107,105,103,100,114,101,116,105,102,101,107,99,104,102,103,100,99,99,102,102,109,101,102,114,112,86,110,114,101,99,94,105,103,104,103,95,74,98,98,108,96,103,96,103,108,116,96,108,121,116,101,102,90,99,97,106,104,105,95,111,110,119,95,100,106,102,102,105,97,108,105,114,109,99,96,88,90,95,113,101,95,93,118,98,98,110,102,97,89,98,96,112,107,100,100,93,115,103,99,106,86,99,105,113,95,92,99,101,102,104,122,101,108,101,98,103,95,107,109,110,96,100,94,97,108,106,101,97,101,105,103,94,108,105,108,93,103,97,113,97,99,102,106,91,105,96,104,110,112,87,105,105,89,92,109,108,92,98,95,98,109,103,106,115,85,105,109,94,111,96,106,113,108,112,106,110,93,88,100,112,99,100,99,104,106,103,94,105,99,101,104,98,117,91,104,106,99,109,107,115,113,105,113,102,95,102,97,101,93,107,106,104,104,106,104,94,110,92,87,101,92,102,106,98,109,106,101,117,105,91,108,99,108,72,91,93,101,102,97,108,88,102,105,100,89,97,111,106,95,100,102,97,105,114,88,97,94,99,96,118,94,98,95,93,93,96,99,102,98,112,92,96,104,105,95,92,120,109,107,90,101,99,78,101,101,103,108,105,111,113,94,98,101,103,105,102,110,107,94,106,91,102,113,128,105,116,106,100,111,102,104,106,112,99,105,113,100,99,101,117,102,119,105,105,103,103,97,95,97,97,101,109,100,95,104,100,98,130,110,108,106,95,96,102,106,101,104,82,104,103,104,88,98,102,99,100,98,79,101,99,95,108,103,85,110,101,92,96,99,95,100,106,109,104,100,98,99,90,105,99,98,102,111,113,105,95,99,111,109,100,98,109,100,90,93,105,102,86,116,102,112,106,106,98,102,102,102,101,83,102,100,125,102,96,100,102,95,103,99,88,103,96,107,105,99,93,99,100,101,102,98,102,85,103,97,103,99,107,103,100,96,98,103,104,97,114,90,100,101,94,73,99,105,99,98,105,107,89,102,91,103,101,107,98,94,107,90,96,91,106,98,94,106,105,87,104,81,100,95,97,108,102,106,88,102,103,105,95,98,112,96,104,111,100,106,99,103,107,106,84,106,84,106,101,103,101,98,107,91,93,116,105,86,111,115,98,97,105,92,90,120,89,99,78,90,101,97,97,98,88,103,104,105,96,102,94,100,117,102,97,98,107,111,111,95,115,90, +433.87213,96,96,96,103,88,108,106,106,94,90,103,97,100,111,107,93,96,105,101,94,89,93,109,105,97,63,99,97,99,105,94,99,104,113,95,98,113,108,101,87,105,102,99,84,101,110,96,98,91,83,112,104,107,96,95,92,100,95,108,80,105,100,91,106,93,107,91,102,113,103,101,100,81,96,103,106,69,118,115,102,107,101,95,105,93,94,97,94,114,102,95,93,101,103,91,100,97,95,97,113,92,110,89,98,109,99,98,94,95,94,99,98,101,92,97,97,100,102,104,103,89,104,99,97,103,91,106,98,106,102,93,110,82,98,94,91,94,96,107,98,90,108,93,92,101,98,113,96,101,105,94,100,105,96,94,101,102,101,99,94,93,102,106,96,104,105,96,92,100,98,99,108,101,102,79,102,95,91,99,102,102,109,78,94,97,108,88,95,108,94,89,99,107,106,100,95,92,97,109,100,100,105,94,103,86,106,105,94,111,108,99,97,92,102,120,106,105,100,104,93,84,98,109,100,97,91,105,107,94,91,105,99,79,103,106,100,98,95,101,103,101,104,104,103,102,90,117,105,114,102,109,101,108,96,98,102,96,102,100,103,106,102,105,96,92,99,108,83,104,71,98,104,109,99,98,113,100,106,100,93,87,102,111,102,100,95,89,102,102,93,96,105,106,88,108,102,95,105,102,114,102,106,94,94,106,101,112,96,97,107,95,106,103,100,99,102,93,94,92,96,102,101,119,98,111,111,106,95,117,112,108,103,100,99,105,99,109,82,102,108,96,96,106,87,98,109,102,105,112,103,102,100,98,100,104,106,103,110,102,100,99,105,94,98,97,108,105,105,96,105,101,103,102,105,105,99,105,97,99,103,110,108,104,99,97,100,111,96,114,96,117,102,94,110,98,105,93,62,90,97,88,96,92,103,121,98,112,99,101,91,92,104,96,100,98,100,97,103,113,95,100,107,104,107,102,89,92,99,109,103,86,108,99,106,105,79,107,98,109,101,90,99,104,107,97,106,92,99,96,114,108,100,111,99,93,99,99,99,116,94,91,96,97,109,116,109,106,96,105,102,75,112,101,89,99,102,103,100,104,110,100,107,103,93,101,102,109,105,100,101,89,104,113,107,112,106,98,94,128,73,113,103,100,94,75,105,93,104,98,110,104,99,112,100,104,107,97,106,100,102,98,103,100,113,110,117,109,102,99,98,74,103,102,103,100,96,103,95,98,104,105,108,95,103,110,108,95,102,92,104,96,101,104,100,104,92,114,107,97,109,81,99,91,108,109,100,103,88,101,114,136,100,94,96,100,105,99,91,112,94,99,102,103,102,92,95,102,103,103,105,98,99,93,87,103,100,103,110,103,94,91,80,105,95,95,94,87,96,105,100,95,102,120,113,98,91,93,98,99,85,91,109,95,94,99,101,100,104,105,85,104,106,105,93,97,109,107,100,103,99,117,103,96,100,113,87,92,104,113,106,95,109,104,99,103,113,105,106,91,105,106,100,102,103,100,102,100,96,98,103,101,100,98,101,92,124,104,105,97,98,102,89,101,99,101,97,104,91,104,100,113,107,92,101,109,97,98,103,95,100,111,92,98,103,111,104,110,110,90,107,97,99,92,101,98,97,96,103,96,88,87,92,111,106,95,105,96,105,97,112,105,88,102,95,93,98,106,106,108,102,102,98,82,100,97,94,108,102,96,102,107,94,101,95,114,119,101,93,100,121,90,94,101,92,97,96,96,102,104,114,109,97,102,93,100,104,98,96,106,96,88,120,105,100,99,92,96,125,104,104,102,98,82,105,66,99,103,92,99,90,92,92,110,95,110,95,101,112,95,104,113,99,105,86,104,115,103,70,108,102,77,101,106,105,103,100,121,97,107,97,98,105,96,109,94,96,103,90,102,88,102,99,108,98,93,89,103,101,99,84,99,99,87,101,102,88,98,98,91,99,95,102,114,100,97,109,90,101,114,109,113,105,95,95,101,110,105,87,109,95,97,104,85,99,97,99,95,91,96,100,99,77,93,98,112,83,92,98,95,100,100,104,103,101,101,85,86,105,92,90,86,122,91,105,109,103,97,105,117,100,97,104,116,100,103,88,107,107,95,94,113,94,105,107,98,99,99,99,90,90,96,103,93,102,99,98,100,108,103,110,107,105,111,96,97,91,98,104,100,81,108,101,109,105,107,105,105,98,96,104,105,105,105,103,102,98,101,113,119,103,99,105,99,104,98,110,128,80,102,104,105,99,94,105,107,97,100,102,95,86,105,96,106,99,104,98,110,106,97,103,89,114,107,104,106,99,112,94,96,93,77,119,100,92,106,99,102,98,102,130,96,95,101,106,105,89,121,107,99,99,104,97,118,105,100,105,98,99,99,91,107,88,101,96,108,109,98,104,102,104,101,102,95,95,90,98,95,87,126,96,104,110,105,91,111,93,100,113,94,99,96,101,97,92,95,112,102,96,112,110,100,109,95,99,96,114,109,91,108,108,107,106,101,102,101,100,101,97,108,105,99,109,119,109,95,95,113,96,101,96,107,96,103,113,117,108,73,95,98,110,102,108,107,101,107,95,111,106,102,95,106,86,105,110,94,105,107,113,102,105,114,92,108,102,103,114,100,110,106,102,104,104,105,99,96,95,113,97,102,95,95,108,98,93,102,101,101,93,100,102,107,96,103,88,94,110,113,94,107,94,104,113,99,112,102,94,113,99,99,97,92,97,109,97,105,104,105,104,99,102,100,110,95,101,105,113,112,100,94,106,107,95,105,102,124,118,106,105,99,114,105,99,91,104,109,108,109,121,111,116,99,109,107,118,103,96,95,94,106,109,100,112,98,113,108,105,117,73,98,120,105,94,107,110,111,105,109,98,105,109,107,111,130,110,110,91,101,102,86,106,92,89,116,107,112,110,109,101,106,103,104,112,105,104,107,117,97,100,106,106,101,95,102,105,105,107,106,106,102,88,111,99,106,98,106,113,101,112,96,99,121,107,95,113,106,103,105,92,116,100,97,104,90,104,102,125,105,111,118,107,97,93,107,98,101,100,106,102,102,89,97,102,104,107,97,94,102,93,96,96,103,110,102,105,108,116,109,113,102,96,98,105,95,116,130,92,103,104,108,105,105,109,95,106,104,107,111,105,120,112,110,107,98,104,107,106,104,95,108,101,123,107,99,124,106,98,118,92,115,106,102,97,103,92,99,109,96,119,113,111,105,104,94,105,100,112,102,105,100,86,99,113,107,110,113,98,105,100,100,94,110,104,107,100,105,106,92,95,79,103,97,109,95,101,112,106,98,102,97,110,102,96,101,106,103,102,101,107,107,102,104,112,104,92,107,102,95,107,111,100,102,102,100,109,94,103,95,94,106,99,90,98,102,101,99,102,105,102,115,105,80,105,105,126,106,99,100,92,110,99,97,105,99,97,114,112,75,106,108,96,96,100,96,85,91,102,116,95,109,94,108,111,121,89,98,108,105,109,110,92,96,109,72,103,97,100,99,104,97,103,108,97,103,111,107,106,92,104,95,105,99,103,103,113,104,95,96,101,107,106,114,99,97,96,111,103,104,114,92,78,99,101,105,108,96,104,108,101,112,99,99,91,104,109,102,121,99,96,114,115,97,106,106,99,112,101,120,100,97,106,102,109,111,98,121,99,108,103,108,110,103,105,91,99,101,91,109,95,114,102,105,103,110,110,93,102,115,122,106,96,111,104,92,108,108,113,106,111,106,100,115,87,95,104,103,110,113,115,104,102,105,100,103,100,100,103,117,87,103,94,110,109,109,106,106,96,105,99,113,102,117,102,101,109,105,98,107,106,106,108,101,108,110,105,96,111,101,80,101,92,101,91,106,108,95,104,99,98,108,104,101,100,103,104,103,104,105,104,103,104,94,96,104,84,103,99,100,103,106,109,118,91,106,103,104,100,101,127,115,106,102,101,99,110,95,112,106,129,93,100,112,110,112,107,109,102,114,105,97,103,106,110,94,113,114,92,108,96,103,106,104,90,112,108,113,99,95,107,116,102,100,106,93,107,102,110,103,110,102,100,108,90,93,96,105,109,100,103,113,96,104,103,87,110,102,102,96,107,98,104,98,109,94,104,104,101,91,96,103,103,104,94,100,117,93,108,96,106,103,112,93,92,108,104,102,122,104,100,104,103,107,112,112,109,109,109,101,109,111,100,100,109,99,116,105,104,118,112,110,102,109,100,104,107,97,99,108,100,97,94,105,113,109,95,88,120,103,100,111,111,96,106,98,101,100,100,108,101,105,112,110,121,98,104,110,98,87,104,96,103,103,109,90,100,108,106,94,100,97,104,113,103,105,100,121,100,96,108,112,100,112,103,106,106,107,105,103,95,100,100,105,110,96,113,99,102,114,98,83,93,98,113,97,103,98,108,111,103,98,98,120,98,84,104,102,86,107,100,112,103,99,120,100,105,97,100,97,99,103,109,100,110,105,96,107,109,107,98,102,107,110,105,96,104,94,100,99,113,107,99,97,102,101,105,87,98,100,95,105,111,97,107,132,91,107,113,99,106,93,123,94,110,111,93,102,97,98,91,104,98,97,101,102,92,117,107,99,93,102,102,99,107,100,117,98,102,92,103,112,100,96,95,102,103,109,93,102,94,98,100,101,111,116,93,92,105,105,113,103,93,101,98,131,104,113,97,100,86,103,98,101,101,112,91,108,104,94,95,107,109,94,100,96,113,83,113,110,113,97,108,99,111,98,109,92,91,106,121,106,102,88,100,100,98,84,102,98,96,111,109,95,100,86,115,96,95,95,111,99,115,104,100,93,96,106,97,87,99,95,96,108,101,99,88,102,107,104,91,103,91,99,109,108,97,80,93,102,111,102,108,106,113,101,103,102,108,105,94,108,97, +434.01245,108,106,94,90,115,103,101,78,88,96,102,104,97,94,98,121,94,82,95,109,118,110,98,102,91,99,108,95,102,92,104,92,100,94,93,117,107,94,96,96,99,93,104,93,101,109,99,109,90,117,86,108,99,96,100,82,86,96,108,93,110,99,103,97,104,94,85,97,103,108,109,106,94,105,102,115,94,99,100,100,103,89,116,104,95,100,98,104,102,87,95,103,98,97,102,91,103,99,92,103,99,114,91,104,101,104,94,101,94,101,98,89,99,105,96,92,103,107,143,100,105,95,104,96,116,103,112,88,104,109,94,101,107,97,101,114,115,94,98,110,96,80,104,94,92,107,102,100,94,94,105,96,105,101,102,93,89,109,99,99,105,96,107,97,112,101,95,87,96,103,96,100,95,119,112,103,81,96,99,99,109,108,106,95,97,92,102,78,75,105,96,90,141,109,106,107,99,116,101,100,100,98,101,107,108,100,104,93,99,104,111,105,98,110,102,98,100,102,94,104,101,98,104,104,93,96,110,104,98,101,104,105,109,104,99,115,98,103,119,108,99,100,105,88,98,102,105,111,116,103,109,101,103,114,105,104,97,111,102,100,96,97,98,96,97,89,95,98,99,89,98,101,100,101,105,96,103,108,104,94,110,99,105,114,101,97,90,98,101,99,91,107,99,112,112,109,108,96,103,106,103,110,95,104,102,96,112,99,103,96,69,110,100,115,109,97,92,100,91,91,107,103,99,113,106,91,101,91,104,107,98,91,107,106,100,105,100,96,96,105,86,102,103,96,110,111,111,108,99,105,98,105,99,111,114,97,107,133,98,101,103,113,100,104,81,102,102,112,96,105,98,97,99,106,102,83,101,107,101,106,107,104,99,107,98,103,100,98,95,103,105,95,106,111,95,106,96,102,104,108,104,102,102,101,95,100,100,101,105,94,93,96,103,99,106,109,103,103,106,110,106,99,102,81,92,87,108,112,92,103,92,99,91,100,112,102,100,106,120,100,105,86,98,99,96,88,116,99,94,97,70,103,91,97,105,111,107,86,112,114,96,93,114,113,105,101,103,108,110,102,106,107,99,101,97,98,101,92,103,87,96,108,106,97,99,104,103,101,108,83,104,97,94,106,93,105,100,104,110,108,109,110,100,97,115,96,99,109,100,104,100,102,99,108,96,97,106,82,93,87,93,98,95,105,104,94,102,98,97,93,105,94,102,97,115,94,99,94,136,99,98,104,106,108,105,113,103,92,108,101,100,113,108,97,105,109,95,93,92,91,96,107,94,94,110,103,97,103,101,98,94,103,100,98,98,85,95,90,98,104,95,95,102,99,108,101,106,99,105,89,74,129,94,93,104,102,94,111,100,100,106,88,97,99,95,100,96,95,106,106,94,108,100,108,96,100,103,115,105,108,103,110,108,105,94,98,96,104,110,106,95,101,96,97,95,101,101,100,96,97,111,109,98,94,88,105,100,109,111,106,96,95,101,106,94,101,108,115,104,110,94,103,107,107,92,104,101,88,109,134,106,109,98,101,102,90,105,102,95,89,99,104,109,116,106,95,100,106,92,94,96,106,113,101,96,106,104,100,98,92,104,100,92,92,102,95,112,100,99,99,102,101,99,90,92,101,125,108,101,92,93,99,101,108,101,106,94,112,100,102,104,103,99,90,92,104,107,107,104,98,99,103,109,99,109,105,106,101,103,119,102,92,109,95,105,107,98,93,98,114,104,105,91,103,99,101,96,112,111,105,111,93,95,96,106,98,113,105,112,103,94,106,126,103,110,96,105,103,106,103,101,96,106,106,110,105,98,100,106,113,97,104,101,97,103,94,101,112,99,90,99,102,99,101,113,91,106,92,107,88,103,105,105,95,82,102,105,115,108,97,96,107,95,103,100,91,100,97,104,100,104,95,109,100,88,100,103,106,106,109,102,106,105,100,95,101,95,110,95,105,103,96,106,94,96,105,104,109,110,100,96,104,104,105,99,79,116,89,106,97,103,92,103,97,102,99,95,102,108,102,108,106,101,99,102,102,95,95,95,103,106,103,104,90,108,92,95,88,93,93,93,103,79,107,104,103,98,103,101,112,107,105,112,78,115,103,98,105,110,100,99,116,97,99,97,105,86,97,102,110,96,87,102,101,95,100,115,113,91,117,98,98,118,102,98,95,99,103,97,100,105,104,118,104,123,100,106,97,107,107,103,100,106,95,100,100,94,100,92,91,92,106,87,100,92,104,96,106,111,93,104,100,108,94,106,90,94,103,92,96,108,104,100,87,111,109,109,108,94,103,100,102,99,109,101,106,103,105,111,108,112,108,104,87,111,92,103,106,106,104,105,91,98,97,100,100,98,118,95,101,123,104,102,87,107,100,99,91,92,101,104,99,97,105,101,87,108,111,103,100,92,108,104,104,97,105,105,95,102,101,78,102,104,95,99,107,98,91,100,104,99,97,101,110,91,101,107,101,100,96,97,101,106,113,98,102,99,96,108,110,94,101,95,113,95,106,91,97,109,95,104,110,99,99,108,106,104,98,112,101,98,96,87,106,105,111,105,93,96,99,96,102,98,98,121,108,92,99,111,92,96,110,100,98,101,100,99,81,103,92,102,109,105,97,106,109,102,102,100,94,102,91,98,87,100,99,103,92,94,101,102,93,104,103,97,102,100,64,104,91,98,94,104,98,100,106,108,87,100,104,91,98,106,100,87,102,97,92,110,109,105,99,107,106,90,109,103,113,107,104,113,104,110,107,112,93,118,97,100,95,107,99,100,104,97,96,106,98,108,95,108,104,106,66,105,91,113,107,101,114,99,99,100,86,98,99,94,111,95,91,106,107,124,112,97,113,106,100,100,129,100,97,107,98,82,103,110,105,94,102,101,105,101,122,109,96,90,94,93,109,99,88,108,105,95,105,89,106,112,102,98,103,104,107,99,97,97,104,110,88,99,91,98,134,96,97,101,100,112,101,92,107,112,90,108,94,110,109,120,105,100,110,91,106,103,96,93,100,102,103,90,105,105,106,108,99,90,93,105,101,100,92,101,99,96,106,101,112,102,99,88,100,102,96,113,100,98,100,71,86,99,111,95,95,98,95,105,93,104,99,100,101,101,98,101,103,102,98,102,98,95,92,107,111,91,82,99,92,85,122,106,104,90,109,110,107,104,90,77,98,107,95,89,96,101,106,106,99,106,102,102,113,97,102,111,96,92,105,90,108,103,97,104,92,99,94,119,98,95,104,99,110,104,91,101,101,91,103,108,98,88,98,95,105,81,98,112,104,96,97,90,92,107,101,99,99,108,117,102,105,108,109,101,105,109,95,103,104,107,99,102,101,108,95,87,103,106,92,113,95,100,98,102,106,105,100,104,109,112,106,110,107,115,94,95,91,110,96,106,105,89,112,102,101,109,97,101,101,112,104,97,105,100,97,99,107,106,107,102,100,109,106,92,104,95,94,94,103,109,97,108,97,106,71,102,97,96,109,107,117,98,105,98,94,107,107,127,101,109,100,106,88,107,109,100,109,98,106,98,99,92,133,75,101,100,111,99,99,105,99,104,93,102,90,100,99,121,96,98,98,100,101,100,87,104,93,105,116,103,100,101,92,99,92,103,108,99,98,105,100,91,88,95,97,109,99,97,105,106,108,97,90,109,105,101,89,101,107,105,106,109,106,100,89,97,98,99,97,94,100,104,109,106,100,104,91,108,99,97,92,112,104,103,90,81,88,99,93,99,104,106,102,98,99,105,105,104,91,108,114,95,106,110,97,106,90,84,96,99,71,104,108,98,106,101,97,98,99,98,99,97,103,107,95,104,109,107,105,90,101,87,104,108,77,99,92,97,105,106,91,110,96,102,99,96,109,91,106,100,101,92,108,105,102,101,96,104,103,98,72,105,98,99,88,103,98,88,93,105,99,105,109,110,83,113,105,100,99,99,95,101,99,93,109,97,103,107,102,96,96,108,97,91,104,126,98,101,93,97,102,98,73,95,96,101,99,109,98,102,101,106,107,103,104,97,103,113,103,104,101,109,109,97,98,101,96,102,99,106,104,113,95,106,92,102,100,110,127,81,101,100,112,104,102,98,109,98,106,106,72,107,101,105,96,96,105,95,99,101,103,96,99,92,113,105,109,99,95,105,94,105,104,101,101,99,105,105,101,103,102,101,101,95,106,115,109,96,100,106,104,95,100,86,86,101,104,106,96,100,105,110,97,94,92,108,101,94,109,97,95,88,101,104,94,105,107,95,99,89,103,95,91,104,110,105,68,99,88,97,112,104,104,97,100,100,82,104,99,105,106,113,105,101,102,110,101,99,100,109,106,100,93,106,93,106,100,112,111,92,94,94,92,99,95,107,95,93,96,102,117,89,111,101,109,109,92,93,105,100,97,85,99,95,100,98,102,96,91,102,109,111,110,103,91,107,83,102,105,84,110,109,107,108,106,100,91,98,92,91,92,87,96,97,103,95,101,95,91,105,106,91,101,96,109,94,109,98,94,91,104,93,100,96,99,110,113,106,93,92,93,101,93,113,91,94,91,93,100,101,113,109,99,101,103,102,111,102,98,88,90,92,83,107,86,101,98,98,98,91,95,104,89,104,112,113,104,82,92,108,103,107,100,99,98,95,102,101,95,109,103,96,108,98,109,93,96,98,103,108,100,94,88,95,105,108,97,99,98,100,90,96,99,103,101,101,109,101,104,97,106,87,85,117,113,98,105,112,99,92,103,114,100,112,99,102,106,101,95,78,108,104,68,102,99,103,98,97,103,107,96,105,98,101,103,108,94,97,100,100,87,112,98,95,110,119,97,104,98,105,103,100,106,93,91,122,103,99,108,73,85,103,116,96,90,109,89,106,97,98,105,106,99,99,106,96,90,112,95,82,99, +434.15274,117,100,99,98,94,114,103,88,103,99,96,100,96,92,107,102,103,106,110,98,106,105,117,96,100,118,122,95,113,104,92,101,94,98,107,109,84,91,92,97,101,112,96,101,113,108,110,105,101,82,116,110,109,109,83,91,92,105,112,98,107,109,93,87,104,116,96,121,102,84,108,90,105,100,96,112,97,111,113,103,92,92,107,104,104,102,109,99,101,99,98,103,98,103,82,107,87,108,99,92,117,98,106,97,102,113,104,97,93,103,111,95,109,94,87,110,88,113,116,102,102,103,87,109,107,103,110,103,104,106,108,114,102,111,117,79,106,107,99,105,112,105,93,108,105,107,98,110,98,101,112,98,107,104,109,104,98,101,105,110,99,101,101,93,96,98,99,100,103,90,104,108,102,103,102,100,91,91,107,100,100,104,106,95,107,103,105,110,92,89,102,97,103,118,125,104,107,105,109,108,89,98,99,112,104,101,110,94,108,104,100,104,97,108,109,101,101,104,103,104,94,117,104,77,99,105,105,102,102,110,88,97,102,115,98,109,105,110,93,103,107,113,110,94,82,105,98,100,102,101,101,103,105,102,94,106,107,101,91,99,106,119,91,98,91,105,118,112,104,95,93,98,130,121,107,119,99,100,109,102,105,102,109,105,102,111,106,106,90,101,93,107,101,94,101,111,105,101,107,104,102,109,95,106,102,67,109,117,95,121,98,111,102,106,102,91,96,105,110,103,97,103,105,103,94,109,97,103,106,108,113,114,108,101,107,109,112,109,108,103,93,108,94,99,96,95,95,111,109,105,104,85,113,93,104,106,109,101,115,110,114,108,101,93,93,105,104,105,109,107,100,103,104,97,117,116,96,104,101,101,117,111,102,103,100,97,98,104,107,109,115,95,104,106,102,104,107,102,105,102,101,108,104,105,97,103,102,101,108,100,103,103,101,108,90,109,92,106,108,100,106,97,95,100,109,100,98,88,100,100,92,98,85,107,105,96,103,102,102,113,94,111,105,99,103,110,109,95,106,110,116,99,105,110,98,106,105,89,108,95,97,101,93,107,104,97,107,105,110,103,100,98,103,97,103,99,101,115,122,106,106,116,110,108,106,89,106,107,107,102,101,96,104,102,103,98,88,107,108,97,108,119,101,95,109,95,98,98,109,104,98,107,105,121,110,95,102,91,101,99,102,110,104,100,103,109,106,99,98,91,93,98,96,102,86,90,98,113,97,101,109,115,94,109,105,103,98,106,106,112,96,100,107,100,102,103,100,103,89,98,95,102,113,110,111,105,108,126,99,94,102,118,107,123,112,105,102,111,90,98,103,105,100,108,99,75,112,115,118,100,106,108,99,99,97,90,98,96,106,107,100,93,104,106,105,104,99,104,101,100,89,97,107,101,113,99,99,101,108,104,108,108,97,97,95,103,90,102,105,101,105,105,95,97,96,113,105,103,119,100,99,111,104,101,115,105,102,114,94,104,102,107,110,111,119,100,103,103,97,99,109,106,112,108,92,94,114,108,111,101,103,106,113,111,95,99,108,100,122,98,106,104,109,95,102,102,87,98,104,95,107,104,79,101,98,107,107,99,97,92,108,108,98,97,110,106,103,100,109,94,109,103,106,101,95,84,104,99,109,104,100,98,100,87,103,95,102,105,119,121,96,99,97,108,98,98,108,103,110,105,111,113,100,104,100,92,107,105,100,108,106,100,106,104,105,99,88,95,106,103,111,113,109,109,105,98,101,114,109,121,120,103,105,103,94,103,96,95,104,113,98,91,116,123,89,116,106,112,88,110,109,107,107,112,100,111,105,104,113,107,113,101,108,99,122,103,102,107,92,106,112,105,105,116,103,100,120,105,101,93,106,115,102,96,94,81,106,106,108,96,96,97,115,103,98,109,109,105,106,108,91,77,99,100,101,103,102,100,108,103,105,98,104,96,95,82,107,103,95,100,107,99,106,106,96,109,105,92,106,107,99,106,99,116,105,99,99,100,109,103,101,118,101,115,94,104,106,120,105,96,103,109,95,99,111,94,100,104,116,104,107,106,100,105,108,100,103,97,110,100,105,106,114,115,96,100,103,105,97,96,105,94,108,93,95,96,88,110,109,97,102,111,110,102,87,104,99,108,104,119,120,101,96,98,112,91,105,107,98,109,100,103,96,108,102,118,108,107,95,95,106,114,102,98,82,98,104,106,96,112,99,104,94,90,112,104,104,102,104,107,110,110,114,96,103,105,97,118,102,100,105,98,104,108,92,108,99,123,109,102,94,109,99,105,92,105,95,90,95,96,103,105,111,107,100,106,105,102,102,97,110,122,108,105,121,93,104,101,98,99,114,106,107,94,112,103,104,109,97,100,106,90,105,99,99,94,111,96,102,108,91,96,100,98,100,84,106,101,101,99,92,73,106,108,105,99,107,103,111,98,94,99,111,98,101,101,116,110,105,105,121,117,89,94,105,95,107,99,99,106,91,90,104,108,100,104,110,95,110,116,98,95,103,107,113,101,105,91,98,101,99,98,103,104,101,104,103,98,99,110,95,100,102,107,113,95,103,96,106,103,105,109,85,105,96,100,98,108,109,97,98,94,106,116,101,103,99,105,117,101,105,99,105,100,105,102,111,95,97,114,106,107,111,98,92,104,111,104,100,104,89,97,100,95,102,99,92,101,106,69,104,101,101,102,99,99,95,91,106,112,99,108,109,98,97,100,113,80,109,105,113,105,109,94,106,99,110,107,96,103,102,100,94,99,95,100,102,98,106,102,102,112,97,98,94,98,98,103,81,99,110,105,113,111,104,113,110,111,116,103,106,106,102,102,105,102,103,92,105,102,103,94,113,105,101,89,62,102,117,100,100,89,99,102,103,103,82,111,107,100,117,100,113,99,104,95,107,99,109,106,100,102,84,105,106,120,102,101,96,121,104,104,101,98,100,107,106,101,103,96,86,101,105,106,104,101,107,104,102,99,116,103,105,103,84,87,100,96,99,93,109,109,107,94,114,100,87,111,98,109,107,98,105,105,101,94,74,107,104,102,101,103,108,93,109,108,113,97,104,99,100,113,94,104,105,98,100,101,93,95,96,101,101,107,108,91,109,110,88,104,107,103,101,123,98,96,103,106,101,98,102,94,104,111,101,89,96,95,98,98,95,99,103,95,105,93,105,95,94,109,100,104,90,100,102,108,108,88,110,108,106,100,88,101,118,92,98,105,91,113,103,92,95,95,92,105,109,93,101,107,112,106,111,100,112,109,132,109,101,98,106,90,104,96,102,100,93,98,108,100,94,94,104,103,100,91,94,104,118,108,103,95,107,92,106,112,105,106,67,100,97,132,108,96,101,108,99,109,101,98,108,102,104,106,102,104,97,109,99,80,98,104,101,107,102,113,98,95,105,96,97,87,104,99,90,107,103,89,109,104,103,115,99,92,87,101,104,99,102,106,103,99,101,117,93,105,106,104,97,102,108,97,105,89,93,106,102,93,101,93,99,98,92,102,103,99,103,103,89,94,98,100,101,110,96,101,111,97,95,116,96,114,111,104,104,108,100,91,107,101,94,98,106,110,90,105,72,108,103,103,99,81,100,118,102,100,123,94,98,101,100,109,97,100,91,102,107,102,100,109,100,99,91,97,95,91,87,102,100,105,107,99,101,108,106,103,92,101,85,99,87,99,97,102,96,93,98,100,98,101,95,99,100,102,96,105,97,103,95,91,98,95,95,98,102,95,96,91,94,102,86,100,93,108,98,102,120,81,110,80,105,96,104,99,106,106,98,91,99,94,96,104,117,112,121,105,106,102,95,104,107,109,101,101,94,98,91,85,102,102,96,98,92,102,92,104,104,105,95,95,95,102,101,106,136,103,104,98,103,96,106,105,98,100,101,102,112,103,92,95,108,96,99,110,99,95,98,107,105,106,99,98,102,108,94,90,100,102,105,99,92,99,103,109,95,107,103,104,93,102,103,107,96,115,90,104,97,94,101,105,108,105,109,103,111,100,100,103,110,103,112,110,106,106,93,103,104,96,104,113,103,105,99,79,117,127,113,100,96,97,101,101,112,102,104,96,101,110,95,104,102,105,102,106,111,99,101,94,86,104,100,113,98,92,102,108,104,100,92,103,100,89,98,94,111,97,112,106,121,107,115,94,105,94,85,105,105,96,96,103,97,101,104,87,93,98,90,95,99,107,103,105,104,106,107,99,108,104,101,101,102,94,107,101,105,104,100,101,97,109,109,97,109,101,96,97,93,87,106,107,93,92,96,95,100,94,120,100,93,109,91,99,103,99,85,111,97,105,74,104,104,100,111,105,108,94,97,102,103,94,91,105,107,106,108,104,102,102,95,107,110,98,116,116,106,101,103,89,101,105,103,92,111,108,105,105,103,120,109,94,92,97,104,97,76,96,90,95,113,113,89,105,102,101,83,95,96,99,102,105,105,91,98,99,104,93,101,98,105,103,92,98,106,108,107,106,93,106,101,109,98,95,102,93,76,114,93,92,102,102,103,95,109,136,101,109,104,108,101,101,107,101,105,104,95,108,87,94,118,98,90,107,100,95,100,94,104,97,104,106,99,104,102,109,102,97,97,95,95,85,104,91,94,90,94,105,103,107,102,109,106,104,103,101,95,87,108,104,104,94,109,113,103,100,84,87,104,97,106,100,96,110,109,114,107,101,88,110,87,104,96,104,103,92,106,98,96,92,100,93,96,98,101,102,94,91,84,102,104,91,102,112,99,108,103,96,109,117,98,102,101,100,99,98,112,100,99,110,104,113,105,100,82,93,101,104,83,106,104,96,98,101,99,97,104,93,100,104,100,93,96,105,101,89,94,106,102,91,99,95,99,108,100,103,89,99,91,110,100,117,99,108,89,98,107,109,115,97,96,109, +434.29306,95,95,95,86,91,102,108,94,97,104,95,104,94,97,74,90,96,114,100,101,101,103,110,102,105,96,123,69,100,100,94,90,101,95,100,100,93,90,98,104,91,104,112,97,101,108,104,91,102,101,97,92,109,104,119,91,100,95,106,98,88,104,102,91,105,113,90,96,108,111,108,106,87,93,101,113,100,96,97,92,102,97,95,101,96,96,102,99,96,102,114,100,91,104,101,99,103,97,109,102,95,108,105,97,94,102,97,110,110,96,95,108,104,101,92,92,99,110,105,104,104,106,97,108,102,101,115,100,109,101,96,113,101,103,109,101,101,109,109,99,82,117,96,107,87,107,112,104,101,91,103,89,103,96,94,101,103,95,107,88,100,99,87,90,105,107,106,105,110,98,111,99,92,96,92,92,92,88,103,108,100,96,97,110,100,103,94,90,105,107,105,99,103,96,98,105,92,100,95,102,98,93,100,83,90,104,101,100,104,104,100,106,99,96,106,93,101,103,95,102,106,121,96,100,95,98,109,98,103,109,97,101,108,99,106,106,101,103,107,101,101,101,110,105,106,99,105,98,100,101,99,97,93,104,105,101,99,100,105,105,97,99,99,106,101,101,111,107,102,96,103,95,102,110,105,99,87,108,96,101,99,95,91,82,103,102,102,104,99,104,107,103,99,103,106,117,98,96,115,99,99,108,106,106,89,107,106,106,103,96,98,103,108,106,113,101,100,94,103,104,98,104,99,108,97,100,94,89,100,104,108,89,105,116,105,95,102,98,99,95,102,108,91,102,101,100,88,94,119,94,105,102,104,102,98,103,100,90,92,103,99,106,91,104,90,102,104,90,100,111,100,104,102,101,99,115,89,95,102,91,102,109,98,95,96,96,111,105,104,114,112,98,98,103,96,98,107,105,106,109,100,106,104,90,101,102,91,77,103,101,96,107,99,102,95,98,84,97,96,118,92,97,89,95,110,98,100,101,97,103,94,116,83,97,90,93,101,107,97,102,94,107,97,114,94,99,109,99,98,101,109,88,96,105,116,103,103,104,107,102,97,99,103,110,99,101,105,104,95,85,104,106,99,98,105,103,96,103,94,102,102,101,105,103,94,88,100,103,80,87,105,106,105,108,92,112,102,103,107,95,109,91,99,101,96,109,106,104,94,95,126,92,104,105,98,91,113,95,94,93,109,109,107,105,99,102,96,97,97,93,97,97,94,113,98,107,105,109,105,101,104,113,96,77,103,106,111,95,105,110,104,96,104,110,91,102,106,96,107,94,97,105,92,104,93,92,101,96,103,97,94,106,102,116,105,98,102,90,104,113,73,91,112,79,109,103,108,104,106,108,88,111,92,104,107,107,94,105,116,104,89,101,100,106,107,102,106,106,96,102,107,93,107,108,98,110,99,97,105,94,100,112,106,105,127,101,98,101,112,99,96,107,91,99,78,106,104,111,112,100,102,107,101,97,93,101,96,110,125,111,92,95,102,116,95,105,103,97,105,105,107,105,101,106,91,106,100,80,105,106,109,105,110,104,98,97,103,104,97,97,96,99,107,107,109,91,98,103,88,98,109,97,96,105,101,94,107,110,100,100,103,99,91,106,101,111,106,109,93,105,113,104,99,96,93,94,99,108,97,105,112,90,108,107,94,95,106,99,98,110,94,107,98,100,98,95,93,95,99,94,110,102,96,95,101,115,102,104,99,105,103,100,106,130,106,109,103,102,110,106,101,101,92,99,94,108,102,106,93,95,101,103,105,102,101,100,105,98,117,117,99,117,111,96,108,115,98,100,104,103,99,100,104,100,106,103,95,100,116,86,109,110,102,78,112,94,108,95,108,115,101,104,104,109,110,107,116,91,109,105,110,107,109,103,102,117,110,95,95,96,95,95,108,103,103,105,107,97,109,111,94,103,107,88,102,96,100,107,98,107,95,99,87,108,105,101,97,113,88,118,101,105,109,110,114,105,95,98,101,99,108,117,82,86,105,104,118,97,119,100,105,104,89,95,101,107,104,103,99,97,109,102,123,98,97,102,89,94,98,108,114,104,103,104,107,110,99,109,86,103,93,100,106,104,102,106,97,94,95,98,101,109,113,110,110,101,88,95,95,97,98,102,106,106,95,119,108,97,104,109,102,101,104,100,95,109,93,96,103,104,93,97,90,104,118,96,105,107,96,112,110,102,106,102,102,99,105,105,96,89,92,90,94,99,99,99,106,118,91,103,100,97,99,99,106,108,106,129,103,104,95,105,95,99,98,90,91,100,97,93,95,98,102,111,109,103,98,86,102,113,106,108,107,91,103,113,100,101,100,104,96,113,99,91,98,108,102,104,98,109,115,103,110,113,117,96,101,105,112,106,87,104,96,104,100,91,89,114,103,102,96,110,100,95,92,104,104,109,102,101,101,110,91,105,109,106,90,113,109,111,100,111,107,100,99,95,91,107,103,94,103,99,101,113,91,100,88,99,107,107,95,123,93,101,104,101,107,102,118,100,100,104,113,97,104,104,109,97,102,112,100,106,115,98,99,101,109,96,94,101,104,107,97,95,106,88,92,99,89,108,96,103,103,95,68,109,103,102,108,106,95,101,106,93,98,95,107,120,105,87,100,97,108,99,105,95,96,109,91,96,94,100,105,97,101,108,100,98,109,103,97,98,102,104,102,105,110,100,103,105,103,110,95,102,99,96,113,100,100,110,103,96,109,102,95,106,104,100,93,95,100,108,99,114,107,96,102,102,102,90,108,110,98,107,98,113,102,109,93,94,109,98,101,104,118,92,104,112,100,111,104,118,101,100,108,86,106,103,106,101,96,101,102,100,103,109,124,105,100,117,71,100,102,116,116,72,94,94,101,102,104,111,105,99,117,117,115,98,100,102,112,123,104,113,106,103,97,96,83,107,95,98,102,108,113,105,97,106,103,105,110,109,104,103,92,96,106,106,98,106,83,96,95,108,99,102,113,104,107,90,99,103,104,100,113,116,107,100,117,88,98,97,97,93,98,95,104,116,105,100,86,98,108,110,112,112,112,90,106,104,99,102,101,111,102,111,116,116,112,103,102,100,100,110,101,110,103,102,106,101,115,110,107,92,100,98,95,109,105,101,86,98,100,105,106,99,109,84,105,87,96,87,109,108,96,102,94,109,93,92,90,98,98,102,104,100,108,103,102,104,89,94,89,101,91,110,99,109,103,101,102,100,90,99,113,90,105,95,102,100,108,112,111,102,95,105,111,91,107,106,102,100,111,109,102,108,91,98,107,106,100,85,103,95,102,95,98,105,111,90,105,102,106,108,88,100,108,97,103,105,98,111,91,93,91,103,91,83,90,106,89,114,110,93,112,102,104,108,102,108,85,100,105,106,105,109,91,99,102,101,110,87,106,98,101,109,100,105,97,102,91,98,100,92,100,79,101,101,103,113,91,101,103,94,87,95,95,98,94,90,112,99,99,90,105,106,100,91,107,98,119,97,94,95,108,103,109,122,107,98,107,103,96,107,105,98,107,112,110,102,114,105,107,98,106,109,108,105,105,108,112,94,101,101,105,112,112,103,96,108,107,94,98,99,107,112,101,109,107,95,91,94,108,107,100,101,94,93,102,108,87,101,99,114,107,96,94,106,105,106,105,103,99,110,108,110,103,87,99,101,111,104,112,116,109,91,97,100,95,113,123,111,110,98,100,98,106,104,100,95,97,109,96,103,109,94,105,103,88,96,102,113,105,99,112,97,99,107,114,77,101,100,103,91,105,104,106,105,106,101,98,98,107,104,109,95,96,102,109,102,96,110,96,109,98,99,100,101,93,107,108,103,103,99,106,100,112,68,100,102,96,100,98,115,99,105,104,96,105,104,96,106,85,113,95,95,109,93,101,83,105,103,84,112,94,105,100,105,96,87,99,97,103,116,99,90,98,95,96,87,113,103,108,100,100,108,94,103,99,107,107,112,92,100,94,109,98,103,97,103,98,114,86,103,106,111,99,103,105,102,118,95,99,113,111,96,98,95,105,98,109,107,98,97,108,94,100,91,100,98,100,104,98,92,104,97,98,112,99,91,108,96,108,98,99,112,108,113,102,100,108,112,97,104,101,109,99,106,100,97,107,98,100,104,96,112,99,97,100,109,99,83,106,96,99,106,100,102,100,108,105,102,91,94,96,103,85,106,105,107,109,112,96,110,100,99,94,107,112,115,101,88,105,107,98,103,105,107,104,97,91,103,101,100,92,97,104,101,103,94,105,110,105,99,95,91,98,100,93,104,102,99,98,98,98,104,71,92,95,102,96,92,98,111,94,109,95,102,113,117,101,91,109,110,97,93,97,102,99,98,91,90,101,96,94,79,102,104,94,98,105,106,106,109,109,108,100,127,100,96,94,111,99,112,96,104,107,112,91,83,97,105,104,104,92,99,102,103,100,93,102,100,94,106,85,107,98,99,108,104,99,94,103,76,104,100,106,96,104,101,99,112,102,108,99,102,108,104,102,98,93,92,97,106,107,105,122,101,97,101,101,104,94,102,112,94,99,106,98,106,105,95,101,83,105,103,111,96,114,105,104,109,113,105,125,112,103,99,94,90,99,100,113,98,123,108,118,101,101,101,107,104,102,106,107,99,105,107,98,87,109,96,100,99,98,102,113,111,86,95,96,99,103,98,94,99,105,94,106,89,101,105,95,109,100,102,101,103,96,93,96,103,98,93,109,87,99,101,102,102,85,94,98,102,107,101,107,104,98,98,99,93,113,119,87,104,90,96,91,98,100,71,100,89,98,95,106,103,98,104,102,105,79,104,94,105,96,100,97,101,80,94,102,110,115,106,105,101,82,107,108,116,95,96,79,102,90,108,105,103,98,105,90,98,99,98,93,111,92,98,107,101,105,100,89,115,100,93,93,92, +434.43338,105,110,101,98,99,89,99,111,101,100,106,101,105,101,113,101,95,98,106,101,105,119,99,110,106,110,102,101,97,105,94,101,107,109,92,97,93,92,93,108,111,102,117,92,108,103,98,99,120,109,78,98,99,96,96,107,83,103,98,94,112,105,105,101,98,110,102,101,78,94,101,109,92,106,87,106,104,104,95,103,97,90,96,102,99,106,100,101,113,104,94,115,101,112,103,99,105,86,124,103,107,91,131,108,102,97,90,104,105,103,84,103,105,95,103,94,99,108,102,126,110,99,92,104,108,107,107,103,94,99,109,105,95,93,112,100,105,105,88,95,91,107,105,102,107,113,99,98,99,99,102,91,85,99,105,94,99,105,89,98,95,95,99,88,110,110,103,98,108,110,102,97,82,95,102,79,100,92,100,101,117,113,109,115,103,96,109,98,114,99,101,103,100,87,103,98,101,109,104,103,101,103,98,98,97,96,117,110,103,103,101,99,100,103,120,103,100,106,105,107,118,107,107,105,89,109,105,98,99,99,94,92,95,93,90,104,100,109,99,113,100,104,102,71,99,96,91,105,98,107,95,104,96,106,107,99,100,105,105,93,103,112,96,98,120,107,97,102,106,99,103,99,98,119,101,101,97,103,100,99,107,107,103,100,107,80,106,106,103,96,112,96,120,105,105,112,100,97,123,94,109,97,103,94,103,104,108,96,100,100,90,108,94,102,109,101,101,108,97,96,96,95,95,104,101,105,104,107,110,115,103,97,106,104,104,96,103,104,102,97,89,103,109,108,102,108,103,108,103,104,114,89,105,104,117,109,121,104,96,99,103,103,135,104,101,101,111,103,101,100,97,112,109,100,119,98,97,98,109,100,96,97,98,109,103,96,101,106,104,113,109,99,97,97,86,105,100,97,95,97,109,102,109,96,75,99,103,95,94,90,99,133,100,95,107,104,99,97,115,91,114,109,112,106,109,101,102,90,94,111,105,94,96,101,109,118,100,107,79,101,98,116,104,96,103,113,93,109,110,103,98,95,96,109,99,99,107,103,103,104,108,108,103,104,114,127,104,101,101,109,111,107,105,96,109,101,92,108,98,106,82,106,97,102,94,108,106,109,100,109,103,101,106,97,107,82,99,100,106,104,111,93,128,109,92,95,106,103,100,90,95,88,101,92,95,105,95,108,100,84,93,101,110,90,88,101,110,109,95,100,96,109,95,91,94,103,97,115,91,91,96,104,94,104,100,100,99,99,99,95,105,95,96,99,69,99,109,103,95,102,101,111,100,106,108,93,102,90,105,87,110,105,108,95,95,100,107,92,118,99,109,99,107,102,108,96,118,95,102,103,122,106,107,111,107,107,90,114,94,103,106,107,103,106,103,101,99,95,112,97,108,103,104,112,104,91,109,95,106,95,107,95,100,99,120,112,82,101,105,95,108,96,101,99,105,93,103,104,104,97,96,97,106,103,101,95,94,102,103,98,94,100,98,100,104,94,104,108,95,112,107,109,110,103,86,107,110,101,112,108,105,105,101,103,100,100,86,102,103,103,82,102,108,92,101,95,99,101,99,108,109,98,100,104,101,103,101,83,100,99,90,102,103,101,105,111,112,114,104,99,103,99,113,107,96,87,94,103,104,82,107,90,121,100,108,109,98,95,100,109,97,93,104,94,98,95,91,100,105,108,99,96,101,102,90,106,92,96,106,101,91,99,106,109,100,109,98,84,98,99,87,91,100,95,104,95,120,107,63,91,97,93,103,96,109,105,110,99,90,95,106,104,113,71,100,103,106,99,99,101,99,95,107,83,99,103,100,99,101,99,100,96,111,95,106,103,102,101,101,109,110,101,101,102,104,98,107,88,112,95,106,101,111,102,106,100,103,89,106,105,107,111,103,100,99,95,101,100,115,118,99,104,116,109,101,95,98,106,103,95,99,102,98,106,80,109,104,101,99,111,103,105,107,90,107,99,111,110,102,100,103,111,108,105,104,99,96,103,96,96,100,110,103,105,103,106,99,110,108,94,101,101,103,99,93,66,106,103,111,101,91,110,98,96,99,102,93,87,86,98,108,114,102,104,105,71,96,101,112,99,99,102,90,96,111,98,110,101,96,95,86,107,94,110,92,106,103,110,101,104,103,92,95,98,122,101,100,99,101,104,110,113,109,109,94,114,102,109,100,99,90,110,91,102,106,87,102,105,95,98,101,109,103,99,94,106,106,106,98,101,110,113,103,98,95,112,101,129,101,101,100,95,114,93,107,97,108,108,99,107,99,100,95,115,106,104,104,98,104,86,99,100,107,96,94,93,101,83,106,101,106,95,114,87,92,104,78,100,98,97,102,95,96,105,110,95,98,104,104,91,101,113,120,100,91,101,109,119,99,105,92,91,105,111,110,99,86,108,104,97,98,108,87,102,99,100,103,96,100,63,90,101,108,109,112,96,106,109,85,97,109,105,103,82,100,103,97,78,107,117,104,106,97,106,97,99,111,107,87,95,106,89,100,105,101,103,109,103,110,97,104,102,108,103,111,90,104,109,96,100,99,87,98,105,98,108,100,98,105,109,112,105,95,100,90,106,106,106,105,104,99,105,94,100,101,101,105,107,108,105,111,107,111,98,105,94,105,100,96,103,90,92,101,95,93,110,113,99,103,106,106,103,109,99,106,96,101,92,113,95,114,96,92,99,100,103,104,95,113,111,96,96,93,114,103,97,97,104,101,105,109,99,104,95,95,104,110,115,101,112,99,102,97,109,97,110,102,98,106,106,101,100,96,106,94,105,105,116,107,101,110,104,93,105,91,113,98,109,114,96,113,113,98,94,108,110,89,110,103,132,97,114,109,92,107,115,91,102,67,109,117,114,109,101,107,108,112,104,101,109,108,99,110,104,102,105,97,108,93,117,106,110,109,111,103,107,95,104,98,101,102,106,100,102,101,115,99,108,108,90,96,105,99,95,90,99,109,109,92,104,110,107,104,99,108,114,90,121,95,87,101,108,101,93,119,87,87,102,87,120,101,94,99,104,104,106,104,104,98,102,91,108,111,91,112,106,104,104,86,104,94,81,108,99,89,98,106,107,106,104,133,101,109,100,106,107,108,107,98,88,100,104,120,117,105,106,97,109,107,106,94,93,106,90,103,84,116,100,95,94,100,89,101,108,112,106,104,103,93,109,100,95,106,98,106,111,102,90,95,103,113,99,93,104,96,89,101,100,104,105,104,105,101,99,85,104,117,96,100,101,103,98,104,110,107,92,97,105,88,108,103,112,102,105,102,106,99,101,106,99,90,98,105,105,110,99,121,92,107,91,107,104,109,101,110,95,100,106,109,107,96,109,94,105,100,111,100,100,96,101,107,102,103,106,94,106,107,66,119,104,98,113,96,100,99,94,102,108,97,105,93,102,109,115,93,101,111,99,112,106,94,101,115,101,106,112,114,104,99,98,109,93,84,105,100,101,94,94,125,99,95,127,100,102,99,106,102,108,101,95,105,103,101,113,96,103,105,105,95,110,99,98,104,92,95,116,109,103,107,104,109,108,97,102,106,95,97,108,97,107,106,75,109,96,109,104,84,106,100,101,100,101,105,111,98,98,113,100,102,92,97,121,96,86,107,97,101,106,109,93,110,103,111,103,107,95,96,106,109,100,97,100,108,115,88,105,101,119,95,92,111,116,92,98,91,92,110,94,94,96,104,97,98,113,106,97,108,96,108,103,93,107,103,91,95,91,109,100,94,87,105,116,99,90,97,99,100,106,94,100,104,93,102,104,101,91,109,92,108,108,97,109,83,103,109,112,107,91,104,106,102,94,96,103,102,99,94,100,91,111,95,110,105,109,85,113,109,126,99,95,92,95,104,107,112,115,91,95,111,106,98,101,98,124,96,94,115,104,87,103,95,94,112,100,100,104,116,100,107,91,99,101,105,95,91,102,99,105,108,92,116,101,115,111,96,116,88,109,89,95,107,101,101,93,102,102,115,105,100,96,92,111,90,109,108,95,109,107,100,97,111,96,109,91,104,112,99,113,110,110,104,96,112,102,108,106,97,102,91,92,112,97,100,117,91,105,93,119,104,99,99,108,101,102,112,104,96,106,98,102,106,102,106,105,99,88,98,94,97,108,91,92,102,102,97,103,107,109,111,101,102,109,92,87,107,116,101,101,105,104,103,105,114,98,103,95,101,113,116,100,112,105,106,99,100,104,98,91,100,99,110,105,108,103,97,88,101,102,100,101,96,99,109,104,108,99,91,91,105,100,99,101,93,97,98,101,101,83,92,108,107,99,116,108,98,97,99,100,95,99,87,94,101,108,111,99,103,106,100,105,103,93,100,106,130,92,102,98,92,112,96,102,102,103,107,96,104,103,86,115,103,116,82,95,97,103,104,99,108,97,83,85,86,111,104,101,102,96,106,94,111,100,97,96,107,104,97,105,98,104,101,104,122,91,110,96,105,91,96,104,102,95,102,96,111,94,85,106,88,93,99,104,109,104,100,115,104,101,106,99,100,114,96,98,107,101,126,110,107,103,101,100,86,98,103,98,111,90,93,113,101,105,87,112,98,102,110,108,87,99,104,91,109,108,98,104,104,104,104,91,110,106,97,86,105,104,105,100,101,104,113,99,101,104,107,95,102,106,98,95,112,105,99,98,81,92,106,96,98,102,102,100,98,104,105,116,97,106,98,95,113,95,105,93,103,110,117,98,97,111,93,94,96,110,77,100,111,102,110,107,105,103,104,99,105,101,101,101,101,94,100,114,96,106,104,97,104,83,95,108,88,106,103,111,104,101,102,107,98,106,105,100,100,99,99,102,103,106,98,106,99,104,104,87,93,99,83,108,105,106,101,87,99,97,95,92,96,111,94,97,77,91,106,117,112,102,105,99,101,95, +434.57367,103,114,104,97,104,103,91,102,87,96,98,95,82,102,102,91,103,110,102,102,101,105,113,106,93,99,104,100,100,122,104,98,115,113,105,97,105,96,94,95,98,104,102,109,95,103,105,107,111,98,96,104,107,107,106,97,117,105,104,89,104,91,115,96,91,117,100,105,114,98,127,98,103,105,93,109,95,91,97,109,109,74,106,85,105,109,102,98,103,104,98,95,104,99,73,118,71,102,105,99,100,100,102,92,90,104,110,91,87,98,93,100,113,104,91,103,103,96,107,107,112,106,96,102,108,107,104,96,100,104,104,99,104,97,108,106,105,109,118,104,94,84,98,100,105,106,101,104,99,104,91,97,97,100,102,110,92,96,94,92,99,95,101,108,99,104,102,95,119,95,100,94,100,103,98,99,105,133,103,97,101,105,95,115,107,101,117,80,112,94,112,109,111,108,106,94,108,104,99,108,102,99,85,102,103,98,99,97,103,75,103,97,105,104,110,115,105,104,102,107,107,102,105,95,105,107,94,118,100,95,95,93,108,101,109,101,102,108,91,90,102,115,106,96,119,99,87,104,100,103,104,115,111,98,91,98,96,101,97,95,96,104,117,102,109,112,107,97,104,98,91,108,103,90,110,99,100,100,92,102,104,97,118,96,105,103,98,105,105,103,101,113,102,102,109,97,101,107,94,97,104,105,111,81,111,108,108,102,97,104,91,118,108,100,89,98,106,107,104,99,110,103,107,117,102,104,105,95,108,96,105,99,108,95,112,103,104,95,111,106,103,116,92,99,97,96,90,103,113,104,99,102,105,81,111,94,105,101,105,109,95,94,104,104,90,109,100,121,99,90,101,104,115,104,98,96,90,104,103,104,106,102,99,98,100,100,107,106,111,107,89,101,96,106,112,88,107,96,103,99,100,119,95,99,109,101,102,118,101,99,93,90,100,108,106,100,90,108,99,114,96,106,94,99,107,93,116,98,104,101,95,100,97,106,112,98,110,98,95,98,116,101,94,108,97,101,94,105,92,99,107,97,112,111,96,98,103,97,108,97,109,99,103,113,109,109,102,100,105,100,101,101,98,122,114,95,106,108,98,119,109,104,95,100,106,80,92,108,97,106,107,100,106,102,102,102,95,98,110,96,107,107,96,100,103,97,96,104,97,95,105,103,107,107,103,104,113,96,72,95,97,105,115,99,100,101,107,100,96,104,99,112,103,90,89,115,96,109,104,108,99,100,113,111,107,103,104,91,123,99,108,109,101,100,102,110,108,102,95,97,105,103,101,108,113,102,112,107,109,93,92,101,91,108,107,91,98,99,98,95,105,98,98,104,99,104,101,97,95,103,81,105,108,104,111,108,102,100,103,103,101,88,109,98,99,95,98,99,103,96,96,103,122,110,87,88,112,105,105,105,113,102,90,103,104,90,91,104,100,110,96,109,100,93,87,95,103,104,107,95,96,107,95,108,107,90,103,104,108,98,98,108,119,112,95,105,104,105,92,104,100,99,99,109,106,101,103,101,98,94,100,99,100,106,99,90,98,96,108,94,104,106,104,117,88,112,104,101,96,105,103,109,100,100,100,87,112,118,101,105,111,96,105,101,94,112,99,85,105,100,96,109,112,98,96,107,101,102,109,92,97,102,109,106,106,95,93,102,101,96,97,104,90,98,101,100,99,100,111,82,104,98,105,101,107,101,93,101,101,102,100,102,105,98,110,110,113,129,102,103,106,124,115,100,96,105,85,105,99,108,100,107,113,102,103,102,101,105,98,104,106,93,99,110,108,109,105,107,102,104,99,100,96,106,106,113,101,100,107,99,107,101,90,105,104,98,105,109,99,107,109,105,112,103,107,105,100,106,100,86,115,110,105,106,102,102,108,112,105,103,110,109,108,69,95,114,103,96,100,114,100,103,113,101,104,106,99,106,108,109,111,102,102,108,106,101,106,105,105,114,93,105,92,108,95,108,100,114,111,98,100,99,106,98,108,99,107,98,101,95,96,121,103,115,93,99,98,120,92,101,111,104,94,104,97,91,93,109,105,104,101,93,106,96,105,108,96,105,99,92,98,102,107,100,103,100,78,100,104,96,100,88,100,99,112,98,94,104,116,111,107,104,104,113,101,105,100,97,104,94,99,113,103,114,106,110,105,99,95,111,106,103,106,111,115,91,102,103,105,94,98,99,112,82,114,107,104,111,99,92,91,111,98,106,101,99,92,97,103,96,101,98,108,109,104,109,98,106,97,109,101,99,107,98,96,104,91,111,100,94,102,103,108,96,103,97,107,110,96,101,101,86,101,109,97,100,104,100,104,105,101,105,103,97,104,86,103,91,103,102,102,106,107,91,112,105,104,109,109,105,95,101,105,94,70,100,108,113,91,105,97,104,92,96,101,90,97,104,109,98,105,111,97,89,100,94,97,116,108,106,94,109,107,102,104,108,102,94,98,105,107,98,107,96,103,90,87,112,110,99,108,110,100,97,100,75,105,97,109,109,94,99,99,102,104,106,91,100,105,108,104,108,113,102,104,95,107,102,102,104,99,106,102,104,100,108,107,108,102,98,96,108,104,98,93,104,107,96,105,87,99,96,94,105,110,107,112,101,105,107,91,100,105,105,104,105,120,106,103,98,114,103,100,107,105,98,104,101,109,106,103,103,99,101,104,102,96,113,107,97,101,109,101,107,81,108,102,104,83,102,102,123,97,117,98,95,99,92,103,97,105,106,102,87,104,110,97,107,102,101,111,107,95,109,101,104,103,107,92,104,101,97,95,109,85,108,113,87,98,102,97,102,102,98,98,100,110,109,100,94,106,98,109,99,108,103,70,101,111,103,110,116,104,103,109,111,110,107,96,99,99,105,98,111,108,113,100,92,109,98,95,95,93,99,116,111,115,103,96,103,102,104,117,116,105,97,110,116,107,104,106,106,103,107,105,98,108,113,112,110,96,90,102,105,99,97,113,110,101,117,117,102,104,97,102,115,87,100,105,96,95,119,97,101,108,101,112,99,111,95,105,96,98,105,112,113,111,108,112,93,115,112,110,105,103,105,107,95,99,100,95,95,100,110,91,102,100,105,102,90,96,87,102,99,115,100,101,106,102,87,110,103,100,107,102,109,94,98,95,107,103,105,104,108,103,106,103,84,97,97,103,107,103,104,100,106,100,93,101,93,109,104,103,103,99,102,103,99,87,110,88,98,97,98,105,102,111,91,95,100,112,92,95,91,101,104,100,100,108,104,104,111,90,103,107,87,96,105,65,95,94,103,108,95,97,96,102,102,115,102,107,94,103,99,93,104,102,100,100,97,117,113,102,88,103,104,93,98,94,109,99,113,102,112,99,110,97,96,95,109,110,104,111,111,85,104,103,91,106,92,105,98,88,95,107,103,109,105,98,95,91,104,124,101,97,94,95,100,108,109,100,104,109,105,108,98,121,105,108,108,102,87,95,97,108,103,100,103,100,96,92,106,93,103,94,115,102,96,98,104,111,101,95,106,87,108,108,119,98,105,92,105,104,113,107,104,107,98,108,105,96,115,95,104,93,96,112,106,102,112,106,98,118,94,102,100,106,96,98,93,99,105,102,105,103,110,105,100,94,100,96,113,105,103,118,102,89,104,127,93,105,98,101,106,101,102,101,103,100,107,94,94,105,99,128,111,104,103,103,95,103,102,93,113,95,112,108,101,110,99,108,101,110,75,93,101,104,102,106,94,101,105,102,102,95,117,89,109,100,110,98,83,86,96,90,100,107,98,76,101,105,99,99,104,102,108,88,111,113,106,108,98,104,104,113,108,106,105,115,102,96,76,108,92,98,103,101,88,104,103,76,101,104,100,100,110,109,99,93,107,101,112,94,103,102,120,117,106,92,96,103,101,103,97,99,93,112,96,73,105,99,104,100,88,107,107,100,124,96,106,88,105,112,113,98,104,111,92,112,97,106,108,109,111,105,101,101,110,98,106,97,111,92,95,100,104,102,111,97,101,97,101,100,105,119,107,95,99,113,94,90,109,103,92,103,102,108,100,111,116,108,86,102,110,117,100,109,105,112,101,96,100,99,102,96,99,101,98,109,101,92,105,116,113,101,109,111,108,99,109,105,108,117,105,93,118,102,99,104,103,100,109,101,91,107,104,100,107,73,109,112,87,102,101,81,109,97,98,104,105,102,98,103,106,109,105,105,105,100,98,116,107,109,109,110,105,104,121,100,107,109,92,104,91,103,95,97,124,101,109,115,94,100,103,92,116,98,96,109,119,103,99,103,97,96,105,111,94,101,107,98,100,109,102,97,91,94,102,108,105,113,105,104,109,115,94,96,111,102,99,110,93,97,119,110,101,109,113,109,113,101,104,102,109,113,101,98,104,98,105,109,109,100,97,102,113,103,104,108,97,94,97,99,99,98,104,101,94,98,109,108,104,99,104,96,90,107,104,96,91,112,99,107,100,106,93,113,84,109,104,106,110,100,102,104,95,103,98,106,103,87,94,86,99,97,109,103,97,107,109,115,91,104,105,94,98,99,90,83,101,86,109,94,107,111,102,104,95,105,98,88,97,105,94,105,96,67,106,101,94,85,109,100,100,100,117,105,96,99,115,93,104,113,109,114,112,96,94,103,103,95,87,102,109,102,101,104,86,114,102,97,85,102,97,90,90,101,99,105,93,101,106,109,101,103,96,107,100,99,103,100,113,118,103,120,89,104,99,108,110,91,103,100,85,106,108,88,102,115,113,101,118,100,103,99,107,100,97,115,103,105,90,98,105,109,106,105,107,106,102,94,87,111,93,106,104,96,106,89,89,106,90,105,94,109,106,109,113,94,106,91,103,99,112,107,129,108,85,108,96,106,113,105,107,98,80,96,106,94,85,97,101,108,103,97,95,101,91,100,82, +434.71399,106,101,95,86,83,89,114,98,76,117,93,90,95,96,98,109,94,91,97,107,80,95,107,108,105,135,92,99,104,87,114,101,105,106,99,107,112,105,104,102,104,95,111,95,104,101,93,102,88,106,104,102,98,118,103,81,93,98,107,99,114,105,94,91,112,105,102,109,101,98,94,104,63,94,94,97,99,99,93,95,103,100,110,104,94,97,100,62,101,97,101,106,104,96,93,101,105,92,90,95,93,111,101,101,101,95,109,95,99,108,104,122,99,112,112,94,94,107,110,104,96,103,103,104,97,105,110,101,103,95,93,102,95,98,101,101,131,92,105,102,96,105,114,101,94,94,101,104,98,105,101,90,90,106,108,97,95,105,99,100,104,103,99,103,102,98,95,102,112,92,104,100,90,111,107,96,97,74,108,99,103,95,102,98,99,100,123,101,108,95,86,107,125,114,117,100,89,75,100,100,113,109,93,106,96,110,103,111,112,101,101,108,109,100,98,101,116,105,97,94,93,86,102,96,101,109,110,106,95,96,101,119,92,106,110,99,99,109,102,90,97,106,105,99,108,106,109,105,99,106,104,133,106,101,86,109,90,107,97,105,106,94,100,99,97,102,107,99,110,91,91,103,109,103,106,109,100,118,104,104,97,103,100,99,102,77,105,99,101,106,92,102,103,94,100,98,100,103,109,96,101,100,97,108,107,94,99,103,106,106,106,101,101,92,100,96,92,103,94,95,101,104,103,96,103,99,98,102,99,107,94,99,112,101,87,110,116,105,102,105,101,88,101,99,98,100,102,98,101,108,106,90,108,102,103,103,104,98,108,113,104,101,109,107,106,93,100,110,103,113,103,100,129,112,104,107,92,114,103,101,101,110,96,109,98,112,111,102,108,109,105,92,88,99,100,101,95,100,114,112,99,108,106,103,104,103,110,100,104,103,94,104,89,111,93,98,104,97,109,97,106,91,92,98,106,101,99,102,98,102,100,102,97,94,96,101,94,114,108,101,105,85,99,101,101,111,95,100,109,107,109,100,95,111,95,101,100,103,103,101,110,100,90,104,98,100,103,92,100,99,101,98,101,105,106,93,101,99,99,109,87,111,110,84,104,102,103,107,102,111,106,110,108,100,95,103,96,106,113,104,109,95,97,98,92,111,103,103,97,102,102,105,105,108,105,103,101,110,95,106,114,108,95,115,104,102,120,107,98,110,102,101,106,89,101,108,105,99,112,112,122,111,100,82,104,100,94,96,100,96,105,100,105,94,104,95,120,99,88,112,104,106,97,110,103,112,97,105,98,93,100,116,99,77,95,102,95,93,101,106,102,94,104,102,99,91,107,104,110,82,101,95,97,117,115,99,98,96,103,100,104,97,95,100,104,111,91,103,109,106,104,101,107,109,118,88,103,105,100,92,102,105,102,89,103,112,92,97,99,104,103,92,94,97,99,102,101,91,114,101,100,109,104,97,88,90,102,96,107,106,92,102,106,110,100,89,111,108,98,115,110,103,95,100,108,86,105,100,102,108,102,81,95,96,78,101,95,102,115,101,96,82,104,98,96,99,105,107,107,104,113,106,108,97,97,109,111,98,96,114,101,98,100,98,106,107,93,98,91,92,101,95,80,100,103,95,93,107,107,105,110,104,110,125,104,105,102,107,104,104,104,91,97,100,105,103,100,95,100,96,104,96,101,107,91,101,118,117,112,108,103,105,124,103,106,102,94,95,113,110,98,97,109,104,88,95,93,107,96,96,106,105,105,99,101,95,99,116,111,101,112,89,110,103,95,99,116,102,97,101,101,100,102,101,105,79,99,96,96,97,102,102,100,98,107,107,108,102,113,110,115,93,98,88,96,102,103,106,109,84,102,105,105,98,104,104,96,108,91,96,103,99,112,92,103,104,103,110,100,94,93,114,102,106,95,104,98,102,99,95,99,91,102,106,94,95,104,99,81,98,90,107,106,100,106,101,100,104,102,96,102,115,104,104,100,117,98,98,108,107,101,113,114,111,105,93,91,115,108,98,104,108,96,94,99,100,100,100,102,105,108,116,86,96,79,98,99,97,90,101,114,93,111,114,105,99,98,104,93,103,104,91,116,105,100,91,96,109,105,101,106,117,107,102,101,104,97,96,105,109,107,101,105,92,94,101,106,97,92,94,107,96,100,102,107,109,86,106,94,98,107,109,99,98,102,100,100,98,98,114,102,109,107,94,93,113,106,87,111,99,94,99,103,81,105,112,74,102,100,104,99,93,97,100,99,93,99,110,97,108,101,98,104,110,113,97,108,93,98,106,96,112,95,100,108,101,103,96,104,100,94,109,97,104,103,106,109,101,118,105,97,102,101,109,112,90,99,87,106,95,104,108,98,99,102,100,119,101,105,90,107,102,101,91,113,85,101,110,118,106,98,103,111,105,97,115,101,99,91,102,102,106,92,106,122,89,109,103,91,96,104,99,106,103,103,104,115,96,102,102,103,99,105,105,101,95,103,105,101,105,100,97,127,109,99,108,88,103,81,102,90,113,105,102,108,98,103,108,110,103,103,102,104,93,95,102,96,99,95,111,103,120,115,87,109,103,98,99,136,100,101,86,109,99,106,91,92,108,81,106,108,114,100,119,109,108,100,105,106,104,99,94,103,91,102,110,109,104,114,96,90,113,91,100,96,104,112,98,95,110,114,98,95,112,107,113,108,101,102,99,109,99,108,109,99,103,109,101,105,101,104,112,108,101,101,108,116,116,111,99,98,107,88,96,98,97,105,113,99,100,108,99,99,102,116,97,108,102,104,101,97,101,91,110,95,103,117,116,98,114,100,94,103,109,109,97,106,95,103,107,103,109,100,95,96,115,100,105,89,99,106,112,105,105,114,99,103,101,111,95,109,97,116,115,94,92,105,105,105,100,86,102,106,104,110,98,104,112,106,105,98,100,109,106,106,113,106,96,108,111,116,97,96,92,105,100,102,100,81,96,102,98,99,102,104,102,95,98,116,99,92,109,101,106,113,110,106,109,110,105,105,90,96,112,105,98,101,109,87,91,110,104,110,96,96,75,119,111,107,89,98,109,102,109,96,98,100,90,104,106,109,107,106,92,110,101,100,102,106,87,103,113,96,100,101,102,97,112,117,102,101,93,108,113,103,94,103,92,100,103,95,86,101,101,96,105,104,95,110,104,75,99,105,109,95,107,113,109,108,111,109,105,101,87,98,111,97,99,111,100,109,121,109,102,114,93,108,102,105,112,110,105,100,107,98,91,102,101,128,96,104,99,101,100,95,93,85,100,108,97,95,90,91,113,105,105,107,109,107,96,102,107,105,103,98,104,100,107,90,105,101,106,105,95,96,102,97,105,100,105,100,103,99,101,101,92,121,91,111,95,104,87,96,96,102,106,102,114,100,104,106,105,110,92,99,91,99,94,112,106,97,99,101,110,102,103,105,99,109,92,99,106,104,106,97,91,93,105,91,101,103,114,102,79,94,84,117,105,98,96,112,120,108,88,92,93,103,108,98,88,95,108,97,111,92,105,100,118,92,96,102,108,101,97,94,116,102,101,96,116,100,114,101,104,102,102,112,103,102,100,96,99,104,108,113,113,91,96,98,94,106,92,99,103,103,97,100,98,103,106,83,94,104,103,106,105,97,103,115,100,105,94,109,106,91,112,103,100,116,109,103,104,101,104,102,100,99,102,103,98,94,102,107,96,99,90,101,112,100,91,107,94,102,109,100,105,110,91,78,102,102,95,92,102,95,111,97,102,113,101,104,99,103,112,111,95,108,107,109,93,97,103,95,103,101,97,96,115,106,95,102,94,106,101,103,96,116,94,101,119,88,110,101,95,106,101,91,103,103,76,112,106,108,97,112,110,110,112,106,103,98,104,103,108,107,113,110,95,109,106,111,99,100,107,91,94,100,102,99,104,109,107,104,104,92,105,103,106,113,102,96,111,101,125,106,107,104,113,98,100,108,116,103,94,97,105,91,100,106,94,99,103,90,104,92,94,100,103,108,91,93,106,98,99,113,87,95,98,106,89,98,109,99,107,101,105,101,105,102,87,122,87,100,94,100,107,107,109,103,93,108,103,93,110,110,101,83,109,109,106,109,102,106,112,96,111,103,109,94,100,105,94,103,109,114,89,95,95,110,106,99,100,87,92,102,104,105,102,92,93,106,109,109,115,101,110,91,105,103,98,96,101,98,116,102,105,107,96,100,96,108,93,95,96,111,102,102,107,106,97,109,96,98,96,98,97,96,101,79,102,102,81,105,110,97,101,98,102,90,111,96,102,104,101,104,100,110,91,115,106,104,105,88,114,101,112,93,107,120,113,116,103,98,95,89,99,92,106,91,92,101,107,106,98,106,104,110,105,98,110,99,115,107,100,105,119,111,101,108,101,87,93,100,103,99,111,95,100,102,98,110,95,99,95,104,100,105,92,117,101,108,103,94,97,105,73,110,97,112,99,102,115,100,99,92,98,103,105,104,95,93,104,103,107,106,104,75,94,87,93,114,99,84,74,111,102,97,112,93,106,86,106,98,103,107,103,101,95,102,100,91,104,116,106,102,106,102,79,106,110,103,106,101,103,104,97,104,114,97,101,97,94,93,105,108,98,106,109,112,92,96,98,88,110,100,92,112,82,103,124,91,104,103,89,94,98,100,101,107,69,102,102,110,103,104,92,91,106,105,106,94,96,104,98,96,104,93,101,105,101,91,103,98,99,104,94,125,98,103,91,103,94,99,99,104,113,99,100,106,111,99,80,94,101,101,99,99,94,105,105,112,98,63,95,103,109,98,111,111,99,127,104,104,98,104,101,102,108,100,103,101,100,96,119,88,100,95,106,115,87,116,97,87,115,106,92,95,95,110,107,106,100,102,105,102,112,112,118,83,95, +434.85431,99,103,102,104,86,100,100,106,100,113,95,97,105,110,103,97,104,107,100,103,112,97,100,102,100,100,111,98,103,114,99,93,107,108,101,95,104,110,98,103,70,78,105,112,99,100,104,100,97,106,101,97,104,80,99,97,109,101,118,95,95,96,93,101,111,104,99,101,93,94,104,90,96,113,100,104,109,95,103,108,92,98,94,96,100,96,98,98,103,106,111,100,101,100,100,113,115,91,101,101,106,99,105,105,101,106,97,105,93,102,97,103,99,94,99,103,96,98,104,93,99,97,102,106,98,116,101,90,118,106,105,108,98,108,110,103,100,105,101,99,94,110,113,106,97,110,96,103,103,102,104,104,104,89,108,109,118,94,103,101,103,104,96,79,100,125,105,95,101,95,103,106,87,99,99,104,99,105,104,96,97,109,104,96,88,93,92,94,111,95,95,105,107,103,86,102,98,94,111,95,101,92,99,102,99,102,96,93,104,111,103,109,116,107,106,101,104,118,109,105,101,101,96,104,112,96,102,106,98,100,88,108,103,100,104,103,103,99,108,98,97,92,97,110,91,100,104,106,107,116,101,103,104,105,99,66,105,119,96,92,101,101,105,91,104,103,104,108,97,99,96,99,84,109,98,100,95,109,107,102,98,115,111,98,107,109,103,96,113,109,100,104,105,102,101,104,105,109,111,108,90,105,97,112,100,109,109,107,100,98,104,115,90,99,104,97,98,97,75,112,93,97,112,92,98,106,104,87,98,102,109,108,101,96,102,108,99,100,104,101,100,91,98,104,104,109,102,104,108,99,104,101,100,100,107,101,105,104,112,104,112,105,102,98,94,80,99,97,101,99,100,93,101,101,117,102,110,91,96,102,99,102,95,111,105,99,100,102,93,100,115,100,101,105,97,98,97,109,95,107,102,108,96,109,104,100,102,111,101,96,97,90,109,99,111,109,94,86,95,91,109,99,102,103,95,91,95,98,91,104,95,99,96,98,107,101,102,102,104,103,109,108,101,106,91,96,103,93,114,104,96,100,106,104,102,97,95,96,107,99,105,99,97,112,104,96,95,103,103,106,100,104,107,101,106,107,89,110,107,108,100,103,108,97,105,101,101,101,105,98,108,99,98,98,93,95,116,94,107,105,105,101,105,101,104,96,86,102,100,100,100,121,108,111,104,103,108,101,101,95,112,100,101,124,91,107,96,106,97,105,103,95,111,99,103,96,98,105,97,105,107,106,96,113,103,99,105,100,84,104,102,101,111,97,83,93,101,127,104,101,97,101,108,98,99,102,102,97,100,104,91,116,92,87,100,95,105,105,99,115,96,94,106,97,109,102,100,115,107,87,108,104,98,95,116,99,94,99,96,99,108,102,107,98,95,104,107,105,92,103,93,105,107,113,111,113,91,107,101,101,100,87,110,97,102,87,103,114,102,98,98,104,105,99,76,99,115,98,108,101,105,116,99,102,112,86,100,99,114,106,78,97,111,103,84,112,103,109,103,106,103,100,104,89,90,96,104,92,94,110,105,105,110,98,104,97,99,113,94,97,107,98,101,108,97,106,90,100,98,95,100,100,105,106,99,96,99,106,105,95,105,93,109,112,118,102,105,108,104,99,94,100,101,110,86,93,108,107,105,106,100,110,101,106,98,104,100,101,115,111,99,98,105,98,96,90,99,94,105,110,101,94,107,107,104,96,104,105,109,98,113,97,104,103,106,110,80,88,107,85,117,90,95,105,94,99,88,95,103,101,82,107,107,102,97,99,95,116,118,118,98,100,115,91,90,103,104,95,99,106,100,94,103,110,107,120,101,107,112,101,96,96,98,97,102,97,100,100,93,104,100,101,109,100,105,96,94,90,94,98,108,103,96,106,94,102,115,106,104,99,107,104,97,101,97,103,100,103,103,98,102,112,96,96,91,110,103,102,90,105,100,97,90,109,102,100,106,111,103,106,105,99,109,107,111,110,97,102,97,102,99,101,110,110,93,101,112,102,96,99,110,109,92,101,104,88,95,110,101,105,96,103,98,91,107,87,95,113,108,94,111,104,102,107,99,109,102,111,104,107,98,109,109,99,101,106,102,91,94,103,121,102,109,76,105,91,102,90,99,109,96,90,106,104,80,96,98,100,87,106,117,99,112,94,94,105,109,105,101,113,113,104,106,104,100,116,106,95,93,114,110,104,94,94,102,92,99,108,103,117,95,109,107,102,99,101,101,95,89,114,96,111,102,107,102,101,94,94,100,92,112,100,112,94,106,98,101,104,111,98,97,97,105,107,100,99,111,91,115,88,84,105,108,97,100,98,110,103,99,109,97,109,107,100,91,103,124,104,104,103,95,111,97,97,97,97,94,104,100,99,103,113,108,99,94,93,102,104,111,105,88,97,98,102,91,90,96,106,96,110,80,117,99,103,90,95,99,102,101,98,75,100,96,103,103,110,101,109,95,113,100,103,96,114,107,109,94,91,106,99,111,107,125,107,106,99,100,99,109,102,98,101,108,95,102,106,96,106,99,103,98,114,116,94,109,108,96,114,105,117,100,109,94,113,84,95,96,106,105,106,102,99,98,95,111,94,113,98,113,111,107,102,98,99,102,116,95,107,107,94,103,102,89,101,91,100,103,98,104,105,114,93,83,97,96,102,91,93,73,102,93,100,104,101,106,110,113,98,102,100,103,105,108,105,102,114,114,107,99,102,91,105,100,113,101,104,111,98,92,107,103,90,100,100,90,125,108,105,90,100,105,100,95,112,101,98,97,115,90,99,104,107,91,105,88,98,105,118,66,97,108,106,102,106,102,113,98,97,124,94,99,105,104,104,91,104,104,104,78,100,95,103,103,103,98,97,102,93,102,104,97,105,109,101,110,105,114,98,106,101,103,134,81,111,100,98,97,107,113,108,102,106,101,103,96,103,102,108,96,98,103,102,104,102,101,109,99,112,115,109,105,112,98,105,104,100,90,94,126,98,94,107,102,108,102,117,106,90,111,93,97,106,93,112,122,103,106,107,105,91,100,101,101,96,102,113,97,98,103,111,89,111,102,113,104,108,100,95,99,97,108,107,101,84,111,102,105,105,94,106,102,123,106,100,109,105,108,99,91,110,114,104,95,109,101,105,109,106,112,108,112,100,110,98,101,103,100,100,104,95,92,100,107,98,107,100,99,100,107,104,123,107,113,100,100,95,100,101,103,111,100,94,84,97,88,97,116,96,103,107,94,101,92,98,107,94,103,95,106,103,106,116,102,111,100,99,94,108,101,74,117,103,117,107,107,105,99,95,124,99,97,102,101,108,99,102,114,94,110,100,101,109,106,102,97,99,99,101,83,97,107,106,94,98,104,99,100,102,99,100,106,106,98,109,102,105,119,99,78,110,123,105,90,99,105,108,94,99,98,104,99,105,101,96,103,98,104,99,115,112,98,98,101,100,99,98,97,108,95,98,99,103,104,88,110,97,117,100,98,98,104,110,88,104,116,98,103,105,102,94,108,104,103,102,92,99,95,102,110,109,106,103,103,102,101,111,104,106,118,108,95,105,104,106,96,106,91,102,102,103,87,98,100,102,99,99,95,101,102,103,108,108,110,104,103,140,113,105,82,101,91,97,113,104,108,90,100,114,114,104,97,112,112,111,88,101,100,105,91,82,100,112,101,115,92,113,102,104,116,99,104,106,103,105,84,95,99,112,111,97,100,96,98,98,96,97,106,102,91,94,99,100,113,101,85,98,96,112,106,98,113,99,97,93,101,102,112,97,97,108,101,96,100,99,102,91,102,100,82,95,99,105,99,98,113,114,102,97,101,95,101,89,107,97,101,96,95,97,98,103,93,100,106,99,106,95,105,112,101,108,93,99,94,97,102,92,110,103,105,97,105,100,97,104,116,103,99,105,102,103,99,109,101,104,98,100,99,100,125,98,94,96,107,109,94,107,104,105,110,100,98,106,97,109,85,99,99,105,98,110,92,97,102,103,94,95,102,100,103,107,111,96,99,100,110,101,91,97,85,101,104,101,107,102,112,106,110,120,113,100,110,101,95,103,102,105,109,109,110,105,105,90,107,101,105,99,97,110,101,116,109,116,107,112,126,105,74,106,92,108,100,96,106,100,103,111,101,105,102,101,98,101,112,85,102,99,91,106,104,116,103,91,113,101,105,96,100,95,98,94,106,105,103,94,109,115,100,113,98,104,99,109,105,108,89,113,106,101,99,97,102,98,98,100,100,104,99,91,100,100,87,106,106,100,101,99,102,109,112,107,113,104,112,108,102,105,101,101,97,97,98,103,79,94,84,96,98,99,99,107,106,100,106,104,124,98,102,98,102,95,98,107,104,98,102,100,101,110,101,105,90,98,103,88,101,116,103,103,102,107,96,116,95,103,109,102,93,95,92,97,93,99,104,108,99,80,96,98,107,101,107,102,107,99,109,102,109,98,98,102,107,100,94,90,90,91,102,106,100,98,99,98,103,117,106,103,100,101,98,109,100,117,94,107,96,108,96,98,97,109,97,92,98,112,98,98,112,102,100,92,121,93,87,101,89,103,102,95,96,106,106,100,100,98,111,102,79,110,109,112,110,106,102,113,105,104,69,97,96,94,85,95,99,104,100,99,109,109,97,119,92,95,103,108,102,100,107,96,103,99,104,99,105,100,94,97,100,92,105,99,92,106,85,99,97,121,128,74,104,108,99,113,99,96,104,88,107,101,106,94,96,100,101,111,102,96,109,107,102,101,112,96,106,97,88,85,118,104,97,100,99,105,98,97,92,103,112,94,117,94,98,96,108,89,95,94,113,105,91,96,87,114,104,98,94,103,108,110,102,98,106,108,114,91,115,106,91,114,110,116,99,116,96,104,94,101,98,104,100,95,107,104,107,101,92,99,104,110,99,79, +434.99463,98,106,74,96,87,91,102,74,92,94,100,102,107,68,99,61,96,104,93,98,100,95,104,104,111,110,122,96,112,106,113,99,110,90,110,107,90,99,74,98,104,102,98,108,98,97,103,96,91,100,105,90,97,108,110,94,97,100,114,93,70,116,92,99,94,98,99,99,89,102,96,95,108,97,90,95,97,101,111,97,92,100,108,128,95,114,109,100,102,102,106,102,102,98,94,104,88,95,109,92,106,102,96,105,87,95,102,93,92,109,97,91,96,102,96,100,102,88,105,91,113,96,102,104,94,100,84,95,102,104,102,84,100,96,96,100,91,93,101,111,92,103,94,107,100,95,99,103,100,98,98,91,112,91,101,86,91,98,100,101,89,105,102,105,105,102,105,98,104,109,110,94,111,93,103,99,81,102,103,96,102,114,107,104,110,109,102,88,105,93,102,106,94,95,111,106,101,98,108,98,80,70,96,103,100,99,94,98,87,105,99,105,110,101,106,114,99,101,95,94,92,99,97,101,100,98,109,103,100,93,95,99,104,104,104,97,77,95,98,110,97,100,111,96,100,107,109,99,98,101,110,113,110,111,99,105,102,97,102,106,88,99,103,108,110,95,100,102,116,101,109,107,95,89,103,94,107,118,92,118,98,104,96,93,97,106,100,87,94,106,106,99,96,104,101,77,95,105,105,93,102,105,101,103,110,119,110,105,103,104,101,104,102,97,108,110,94,100,96,104,103,94,106,132,96,106,98,100,94,107,95,85,101,98,106,88,105,111,106,95,98,95,107,100,116,107,99,107,117,103,105,107,95,113,95,96,109,101,104,109,88,110,99,104,97,107,103,115,100,93,99,96,107,102,98,94,104,91,106,107,106,116,107,99,104,100,95,103,75,102,104,103,100,99,105,105,91,95,85,107,104,97,97,99,88,96,91,99,108,110,101,104,95,129,105,100,104,94,105,98,108,101,90,95,99,85,108,97,87,95,104,106,105,82,103,96,106,114,104,101,103,101,101,101,96,105,103,97,76,102,103,97,97,111,109,104,107,98,103,97,82,94,110,107,94,108,102,94,105,97,123,101,109,101,114,98,109,116,97,109,95,108,101,110,102,73,102,102,103,99,107,93,107,108,105,83,99,80,111,108,103,107,106,102,101,100,109,115,102,96,115,106,110,95,90,98,94,102,94,87,99,90,107,107,102,101,101,94,99,107,101,102,109,106,104,102,102,103,113,106,109,110,100,111,101,104,105,113,101,101,107,94,110,104,110,104,101,104,97,101,88,102,100,103,105,102,103,106,103,94,103,108,96,111,100,100,101,108,104,90,117,106,94,104,100,106,104,94,101,95,107,103,110,93,108,119,110,114,103,108,96,113,106,97,110,101,99,106,99,99,96,95,116,108,99,104,102,105,114,107,109,101,101,94,112,102,103,100,113,105,97,104,124,97,96,112,110,94,101,99,102,110,91,88,99,96,95,97,99,118,99,109,106,103,98,110,105,99,99,102,102,92,102,111,102,98,103,89,104,101,100,92,101,101,103,95,116,121,94,106,107,97,106,95,99,112,103,100,97,101,104,121,103,105,114,110,110,106,101,106,114,94,95,101,114,117,106,107,90,89,107,93,101,95,98,106,96,96,92,106,103,105,101,99,105,108,89,104,104,105,105,109,96,97,91,108,100,109,103,107,96,103,96,100,99,94,103,102,104,101,103,94,115,100,107,82,93,106,111,106,102,96,89,100,100,121,106,102,104,109,110,110,100,98,106,104,102,108,90,100,91,115,99,102,96,105,122,99,106,106,106,106,105,91,104,86,106,108,113,96,96,95,106,110,101,96,102,91,106,96,113,98,90,109,111,119,100,108,101,96,95,108,99,101,111,107,108,80,113,102,107,94,120,84,85,98,109,98,105,106,96,96,103,106,105,113,110,92,95,91,101,96,104,90,97,103,108,92,105,96,92,87,87,104,108,103,106,107,108,104,103,111,93,99,93,107,104,87,100,101,100,103,96,91,100,102,94,97,107,100,107,100,81,108,104,104,110,99,101,95,99,103,111,94,113,95,91,97,82,102,103,108,97,96,99,105,88,106,103,101,104,101,91,110,111,80,99,101,109,99,96,100,98,98,100,101,101,115,102,116,101,105,96,104,100,104,112,104,103,99,102,107,105,107,110,113,100,99,102,108,99,93,106,98,110,95,92,101,101,108,110,101,104,103,102,115,106,101,86,95,108,105,97,105,97,108,102,89,104,107,101,109,104,97,91,103,107,105,90,87,105,106,87,105,102,102,97,107,87,107,96,102,107,121,93,98,101,92,110,95,104,102,110,97,114,93,109,100,110,116,106,91,89,95,102,96,97,110,102,101,104,108,101,109,102,93,105,100,104,110,104,93,107,89,89,102,99,95,91,101,97,106,105,97,97,104,102,101,90,109,101,100,101,106,99,114,107,97,91,93,104,101,103,105,103,114,100,95,106,108,100,81,108,97,110,94,106,108,100,101,102,96,111,106,106,86,105,101,98,99,99,113,97,113,103,103,100,113,86,102,96,99,106,113,95,98,91,106,104,91,93,109,94,109,95,113,95,107,104,110,82,83,87,106,98,106,115,105,114,96,109,94,115,105,105,95,79,108,100,98,114,91,101,95,106,105,117,102,105,101,92,109,107,105,83,106,100,106,111,100,106,96,100,97,112,104,115,92,97,120,106,102,102,103,101,131,100,102,104,108,106,98,101,100,102,107,111,113,95,112,120,101,90,104,107,117,110,106,95,98,89,100,93,101,119,94,115,105,105,108,91,100,116,99,99,116,120,104,79,89,104,108,105,105,96,100,98,115,117,111,103,86,109,106,99,97,99,97,109,114,109,104,105,101,110,112,96,99,100,71,109,119,115,118,104,107,102,105,122,107,105,106,98,98,109,116,69,115,108,108,105,104,112,102,106,111,99,106,105,100,113,109,105,95,101,109,100,113,98,103,97,96,103,100,100,100,100,113,106,96,109,106,101,107,121,103,106,104,110,101,99,101,92,102,106,105,96,104,110,101,101,99,99,88,103,95,125,98,95,103,110,93,115,107,103,99,106,104,108,100,116,102,108,105,105,102,100,107,114,102,114,93,107,84,99,104,106,100,106,107,109,110,103,115,103,110,100,102,94,93,103,105,111,102,117,106,107,110,103,122,97,97,110,106,100,116,107,99,103,99,107,92,105,106,102,96,104,102,100,106,99,103,101,97,99,104,95,112,117,100,109,123,91,113,113,114,97,104,105,103,97,91,100,97,87,103,96,99,109,92,111,104,101,101,105,105,104,108,106,97,94,98,114,102,106,112,104,92,103,92,98,115,93,100,93,106,113,101,109,113,105,98,114,109,93,113,113,110,99,106,106,110,97,108,109,99,99,113,121,109,102,95,92,114,100,109,110,103,118,117,121,98,100,107,112,100,71,103,103,105,105,108,94,104,95,108,102,113,106,98,99,108,107,97,120,102,102,101,118,112,104,104,100,100,105,91,104,106,114,105,100,109,100,119,92,108,102,101,97,99,99,104,106,106,111,104,128,119,113,116,99,104,101,101,95,107,114,105,96,105,101,85,96,109,109,104,112,105,116,101,92,102,102,108,87,119,103,97,105,98,105,105,109,114,72,104,107,105,103,79,109,111,102,111,107,104,93,108,107,105,111,102,104,110,107,99,97,99,97,114,107,101,109,103,111,98,111,102,97,85,95,104,109,93,104,94,108,96,113,115,109,107,113,98,90,109,109,96,96,105,92,98,101,114,84,113,115,110,107,93,108,107,111,114,108,100,96,104,103,109,109,101,105,99,88,107,101,115,112,101,98,109,100,102,96,97,105,100,104,105,89,106,80,108,99,109,82,104,92,96,92,113,92,113,99,100,115,94,99,95,96,100,107,105,102,101,116,108,108,97,102,104,106,110,98,118,98,111,108,106,94,107,104,111,96,95,124,97,104,124,95,106,108,103,110,108,95,115,96,103,118,116,97,107,109,95,94,98,103,112,116,103,110,87,113,87,104,107,94,100,91,122,112,100,103,76,92,101,103,102,100,96,95,104,102,97,109,122,101,100,99,111,91,82,102,104,108,108,94,99,108,106,105,108,99,100,103,104,100,104,100,105,106,101,106,105,113,104,109,109,107,94,109,102,112,102,105,113,101,100,98,116,102,104,121,112,96,104,107,99,108,105,95,101,102,103,115,103,99,99,107,95,104,97,115,107,101,111,91,108,96,100,108,104,101,108,91,105,96,100,108,101,104,67,98,95,110,114,105,115,109,92,103,98,97,98,104,99,102,104,97,93,104,103,107,110,98,105,108,106,116,100,108,111,102,88,120,109,109,114,110,92,108,109,96,105,89,99,119,97,95,94,116,97,100,117,108,108,95,101,100,96,95,104,97,102,66,102,90,109,111,91,103,95,87,103,101,112,99,110,96,108,105,99,100,95,109,96,109,85,105,103,108,85,97,111,100,107,93,116,102,96,115,89,96,96,92,117,103,102,98,60,92,99,101,107,105,99,96,92,99,100,92,106,89,89,96,104,96,97,102,103,106,94,84,110,99,106,105,97,94,89,92,97,113,105,97,93,103,106,104,91,98,99,112,111,112,98,94,106,99,110,103,105,95,98,107,97,91,92,86,97,91,110,115,66,108,112,82,92,101,98,103,103,99,93,99,99,103,109,109,102,111,95,88,110,103,95,104,96,98,105,101,116,105,106,107,110,102,95,119,91,108,105,98,111,96,106,90,101,97,104,92,109,103,110,102,104,102,112,98,99,94,99,99,108,96,105,109,98,109,108,97,95,98,105,113,109,92,92,99,109,90,98,105,108,101,91,105,102,82,115,105,101,100,94,101,107,86,98,100,96,114,98,107,112,101,121,125,86, +435.13492,108,90,94,104,94,101,87,101,98,101,91,112,105,100,100,103,97,102,105,102,98,99,86,97,101,101,102,102,107,104,81,96,92,77,98,102,103,100,104,99,87,114,105,106,111,112,94,101,89,121,98,91,103,109,110,92,101,103,101,96,104,108,100,98,111,103,65,100,100,102,106,104,98,91,93,99,93,101,96,96,97,101,96,102,106,103,90,108,104,83,105,112,100,78,103,85,103,92,103,94,105,99,110,92,97,99,91,100,92,102,112,117,93,92,97,98,103,105,105,97,101,93,105,106,94,108,100,103,104,98,96,112,97,103,99,103,105,93,105,98,89,101,92,99,95,88,99,101,81,103,102,108,75,87,91,100,91,100,103,98,100,92,99,102,101,96,99,103,108,96,102,104,102,106,91,97,97,90,96,105,102,99,107,105,105,95,88,91,104,90,109,96,103,95,98,114,107,104,97,102,93,100,94,86,101,125,92,99,112,93,88,103,108,99,100,101,92,100,114,107,107,105,91,92,101,109,92,101,104,113,135,98,108,100,99,91,107,108,99,113,112,102,113,112,105,106,113,106,115,116,100,92,99,105,102,103,99,80,95,101,104,98,114,92,100,101,100,103,109,88,97,107,122,103,99,104,95,104,103,92,98,105,96,100,102,102,86,97,102,107,90,102,106,96,102,102,95,101,101,97,91,105,109,104,103,101,96,100,86,103,87,102,94,94,100,102,105,103,98,96,104,99,102,95,99,98,90,120,83,97,112,102,103,94,99,93,105,97,107,101,92,99,105,104,111,103,103,101,102,97,101,93,99,102,102,100,108,106,103,100,97,100,103,110,105,91,109,104,94,109,105,97,94,104,104,98,110,76,90,96,105,100,98,107,97,111,89,110,111,110,118,86,102,101,72,103,110,109,108,99,91,95,102,109,101,101,100,110,103,109,99,93,109,108,122,101,98,102,110,98,101,100,106,108,95,102,108,88,110,113,92,106,97,113,98,105,101,114,102,105,105,87,105,111,97,104,109,90,101,106,96,100,104,103,104,93,109,95,117,107,106,116,96,96,106,99,128,97,106,92,96,90,95,94,98,92,107,108,94,101,98,104,100,108,96,100,96,96,114,92,107,109,105,101,110,106,93,101,95,105,102,101,93,99,103,97,94,101,98,121,103,94,93,103,96,86,95,98,100,99,110,97,99,88,106,110,96,101,94,110,95,90,91,98,117,95,105,110,112,111,96,103,100,115,101,98,99,107,102,90,104,101,96,102,103,104,92,95,101,99,94,94,96,100,92,107,85,114,96,95,93,104,111,115,103,98,99,107,90,104,108,95,106,105,108,105,108,93,87,103,110,104,97,96,104,103,103,101,101,98,103,108,95,96,95,104,87,105,108,95,97,101,98,105,106,104,107,111,118,98,94,118,97,117,97,100,96,103,99,103,95,108,106,100,99,114,110,98,93,97,96,102,99,95,94,109,81,97,97,100,121,100,103,99,98,101,107,112,105,92,117,100,108,97,101,104,106,92,91,107,105,91,94,95,79,97,111,98,96,103,98,97,107,91,99,102,101,97,102,102,99,104,99,95,87,107,86,99,94,96,102,104,102,134,103,105,97,116,107,116,113,97,101,95,90,97,101,104,108,90,103,104,104,108,95,94,100,94,100,103,102,91,109,95,105,105,89,76,96,95,113,87,97,104,78,107,112,90,99,106,105,103,103,92,97,106,103,107,105,100,105,96,94,96,110,90,95,96,88,99,120,104,118,88,97,102,100,91,96,100,99,101,105,106,92,104,111,109,94,114,102,108,104,102,95,108,122,103,96,96,108,72,91,93,119,81,104,98,110,97,114,102,107,103,101,107,99,102,101,122,95,102,109,94,93,103,91,98,95,96,111,104,97,99,108,102,100,102,114,104,104,104,100,103,90,93,91,99,119,102,98,96,92,102,83,103,97,97,95,99,95,113,99,103,81,102,99,107,97,106,100,88,71,103,100,97,105,96,106,87,87,110,114,109,101,97,98,109,96,99,100,106,109,103,96,96,102,104,106,106,89,102,102,97,94,107,95,102,99,94,114,105,108,98,96,98,110,105,113,98,94,95,94,98,100,91,89,103,102,104,109,97,111,106,105,102,96,99,95,106,104,101,119,115,100,105,103,102,89,101,103,103,98,91,109,96,103,106,104,109,100,101,107,100,106,101,114,97,101,92,95,107,98,97,103,115,96,104,93,132,108,102,101,106,112,107,101,95,102,86,96,94,110,104,97,91,104,94,98,102,102,95,102,92,102,94,99,99,108,109,91,98,96,97,94,95,109,91,101,108,106,95,104,96,95,102,120,99,107,102,113,96,127,93,112,83,94,90,101,99,92,99,90,103,98,94,91,100,96,108,109,97,99,93,112,92,97,97,109,104,99,118,109,99,100,110,108,104,100,95,99,102,112,102,103,92,96,104,106,94,105,78,101,110,107,109,100,100,119,94,98,107,96,96,100,93,111,100,110,93,109,91,97,94,103,109,91,81,98,102,106,107,109,109,103,93,105,105,91,113,103,113,94,110,91,115,102,96,113,101,112,110,103,107,107,112,110,107,109,109,108,90,108,103,112,99,106,98,102,117,100,98,104,116,95,105,98,106,102,85,117,101,101,104,90,111,113,78,102,100,102,101,106,110,97,107,109,112,87,108,101,103,93,109,95,110,86,94,107,112,103,102,98,103,104,95,102,95,104,106,117,109,112,95,102,105,101,108,104,90,93,103,98,110,98,122,107,105,106,109,100,77,99,98,105,100,103,91,110,108,103,92,100,107,100,100,102,99,110,106,125,103,113,98,103,100,104,99,106,119,103,101,98,105,102,104,95,71,98,117,106,100,108,108,102,113,95,101,94,99,96,103,94,105,95,102,105,101,98,104,102,94,113,112,104,100,101,109,109,109,98,111,102,106,109,102,109,101,94,102,104,99,109,99,114,116,118,109,100,110,105,101,101,97,89,101,106,106,102,99,106,107,101,110,106,97,97,104,117,100,105,112,93,104,103,101,98,113,101,110,100,103,109,105,111,109,108,106,109,105,102,112,123,99,107,113,99,115,97,108,109,114,120,78,106,108,114,109,96,98,104,116,103,98,110,99,98,99,104,101,101,104,105,78,84,98,95,97,109,106,101,85,95,102,100,101,111,110,101,80,117,102,102,105,106,113,109,105,114,96,106,101,99,98,108,102,107,97,98,105,109,103,105,96,107,103,95,95,108,109,115,115,97,107,100,106,106,104,101,105,106,110,103,100,103,115,106,100,95,95,93,95,108,110,101,104,102,139,96,107,102,98,113,114,115,100,99,109,104,97,116,114,116,100,93,98,108,104,112,88,109,102,103,105,87,91,109,114,105,102,102,106,97,116,103,82,96,99,103,76,90,98,99,135,100,84,116,95,105,98,91,103,109,92,100,94,102,107,117,111,102,93,103,105,94,98,108,106,102,104,98,97,110,97,103,105,99,114,111,105,105,101,96,108,106,107,92,100,111,94,108,117,92,99,102,93,107,120,104,111,105,105,109,110,98,95,93,114,76,113,121,101,105,104,107,99,112,110,109,101,101,101,105,89,99,103,108,93,99,97,95,92,103,103,100,97,103,99,94,102,105,104,101,104,107,106,103,101,94,111,91,90,102,102,102,93,109,101,78,104,107,99,113,109,86,96,106,103,91,96,104,99,119,104,101,102,96,105,101,97,107,126,81,100,102,103,107,107,102,105,87,90,91,91,96,107,105,123,102,95,106,101,100,99,99,91,102,94,104,95,97,122,106,109,105,108,110,106,109,108,102,87,109,96,121,103,109,103,95,108,85,105,99,106,95,112,102,107,97,102,118,109,101,83,104,112,100,134,89,107,105,105,99,101,99,98,81,102,96,117,112,99,113,108,109,103,105,100,106,94,110,109,105,98,97,114,103,101,103,97,103,107,105,111,104,98,87,110,107,95,109,98,113,105,110,105,109,90,102,120,99,101,100,97,103,103,106,115,109,108,109,106,104,107,117,108,115,113,104,104,103,108,107,97,92,109,102,104,102,97,106,101,99,108,95,104,103,105,95,98,103,102,113,100,105,113,98,102,106,94,98,103,96,114,102,107,104,99,105,101,101,90,114,110,110,104,95,90,103,110,105,96,90,99,100,140,120,94,105,94,105,104,112,107,106,103,103,113,104,111,104,105,112,91,95,98,104,115,109,100,99,101,106,106,111,102,105,93,99,94,97,102,126,108,91,100,113,102,104,108,101,80,107,98,87,111,114,90,105,114,102,99,105,106,95,99,120,100,109,115,108,94,109,111,95,104,106,89,106,100,104,101,107,106,115,105,105,101,104,103,91,100,93,100,103,104,100,104,99,102,99,113,107,98,103,109,95,112,105,100,99,97,99,107,93,109,100,103,113,98,113,109,105,87,99,88,102,101,113,105,112,111,95,99,102,98,93,107,95,116,106,101,99,105,103,97,91,97,106,106,73,99,95,110,118,99,101,100,102,92,99,99,95,106,89,95,97,104,106,106,107,99,108,108,92,97,100,99,110,104,110,104,111,100,102,104,93,110,83,101,113,110,104,112,104,99,94,113,111,95,108,105,120,101,94,98,105,95,126,98,106,75,103,111,111,89,104,100,74,103,97,99,99,108,90,108,106,103,102,95,94,100,91,78,99,102,107,109,84,91,97,113,116,102,111,109,104,107,113,98,104,116,106,92,104,101,103,110,103,103,105,84,90,105,98,113,98,98,102,95,101,102,100,80,92,101,107,97,130,104,117,111,101,98,105,109,109,103,95,110,111,97,101,98,110,105,93,108,99,95,98,100,91,102,97,106,95,101,122,88,77,101,94,96,120,102,95,103,99,90,107,99,113,106,115,110,104,96,101,96, +435.27524,107,98,86,95,104,112,85,103,95,95,90,110,93,101,103,91,102,94,96,102,113,96,91,98,101,91,94,97,105,106,97,99,90,98,102,92,83,100,102,105,102,98,105,107,114,105,116,110,92,102,105,93,100,103,94,70,95,102,101,104,98,103,105,108,95,117,100,107,100,110,99,107,105,99,75,111,96,84,107,108,98,114,95,95,95,107,105,95,98,95,99,98,102,106,74,95,90,107,91,109,99,107,103,101,101,101,101,101,99,100,101,104,118,86,98,99,101,106,99,116,108,106,100,95,106,91,109,88,106,109,106,102,94,99,102,98,105,104,107,103,93,96,86,89,98,92,104,104,94,103,94,100,93,96,96,98,97,90,110,97,96,113,121,101,99,94,97,105,105,100,94,102,112,97,113,97,99,110,107,102,90,95,100,94,105,103,98,94,117,92,97,103,93,97,97,106,108,102,102,105,86,102,75,112,94,103,102,101,103,112,99,107,110,103,102,103,96,109,108,107,90,105,87,96,102,115,104,104,77,95,112,112,103,99,106,108,95,95,107,99,96,99,109,101,90,104,105,99,115,88,102,100,113,105,96,108,107,100,95,111,109,104,99,91,102,108,99,109,107,93,108,96,103,96,113,102,113,103,114,106,106,98,117,104,109,98,85,109,94,103,94,103,103,93,108,100,93,96,100,100,93,85,88,104,95,108,106,108,105,110,92,113,98,104,106,98,105,106,101,99,101,99,110,98,93,90,90,105,99,105,100,108,112,110,103,87,100,104,101,113,82,105,109,111,98,100,100,104,101,100,95,109,104,88,103,105,109,104,114,96,110,106,97,99,92,119,112,100,93,104,117,99,99,110,98,98,103,104,102,103,99,99,88,97,105,106,116,103,99,110,111,87,78,104,100,107,111,109,108,100,102,100,101,88,102,106,112,92,100,107,91,90,104,93,104,98,107,86,105,102,102,105,90,103,88,111,97,109,99,96,105,105,95,101,95,102,90,102,95,100,108,96,111,108,106,104,100,80,98,114,100,93,97,101,108,98,96,93,109,106,102,98,94,108,103,98,98,105,89,105,117,100,95,105,110,102,108,133,104,88,104,103,127,102,110,108,98,106,103,108,108,104,105,95,101,111,97,98,100,98,107,100,99,101,92,106,105,117,106,94,100,102,129,95,102,110,99,106,98,67,100,107,109,108,90,101,92,99,100,96,108,86,100,110,102,106,103,100,104,105,107,106,95,97,123,91,100,104,105,109,96,105,114,111,99,89,108,106,96,103,97,102,109,100,104,97,100,107,100,103,92,99,102,108,110,95,104,110,109,103,101,97,102,106,114,99,105,99,92,100,116,99,97,89,103,111,101,105,111,95,98,101,103,105,97,113,105,103,65,113,78,103,109,109,120,97,103,104,106,93,108,107,99,103,94,98,99,102,99,99,104,107,78,104,94,103,98,90,99,108,94,114,79,94,95,94,97,96,113,90,102,100,99,117,106,105,99,108,100,102,103,103,102,104,97,102,99,89,106,108,114,90,112,91,111,104,106,109,102,113,87,100,103,93,96,111,93,99,81,101,98,101,112,107,115,99,98,105,103,94,114,114,107,96,109,107,109,108,95,95,105,103,99,104,102,105,102,103,94,101,109,97,109,100,96,97,105,99,102,107,105,113,106,92,93,106,110,92,103,96,110,104,102,105,91,101,103,98,90,109,128,93,104,103,96,110,99,95,104,106,103,101,105,101,91,101,99,102,101,92,110,110,111,98,103,101,103,94,98,111,115,89,117,102,99,92,95,101,89,98,106,110,109,121,102,103,94,98,95,107,98,92,101,95,109,90,110,107,114,118,121,90,103,108,105,101,102,99,99,93,116,105,109,105,108,105,102,133,108,98,121,106,99,114,112,98,105,106,112,118,103,117,112,99,101,92,105,94,101,91,100,101,117,113,99,104,98,106,96,90,98,101,100,102,114,103,93,96,110,99,92,100,104,105,96,115,106,95,101,112,106,116,115,100,109,99,98,115,95,106,119,105,100,102,106,101,98,108,92,104,100,111,112,113,101,96,84,97,95,90,100,98,109,109,112,108,94,105,109,104,105,103,100,106,105,102,104,100,92,100,98,94,106,98,102,116,101,101,90,117,97,99,98,102,113,110,106,105,96,105,101,96,104,108,101,97,94,100,102,98,100,108,91,110,110,105,105,107,115,101,107,103,109,100,97,109,98,91,102,103,95,99,107,97,109,110,105,100,97,103,96,112,114,112,104,108,96,101,94,100,109,95,116,105,106,102,88,117,104,104,98,110,99,104,96,97,96,98,95,96,113,102,98,105,113,96,104,102,85,109,93,107,107,96,102,82,101,98,111,108,101,103,100,111,106,97,107,101,91,95,102,103,104,104,100,106,97,100,92,104,99,98,107,108,101,110,103,101,94,87,96,105,104,98,113,106,99,96,91,108,79,96,89,107,93,91,101,92,117,106,110,104,106,89,106,99,94,91,105,108,109,106,101,106,102,93,96,96,105,107,112,109,103,105,105,97,110,108,105,109,105,95,106,106,103,102,102,103,91,99,111,101,89,106,107,101,96,92,91,96,101,103,114,109,109,80,113,93,96,103,113,83,100,111,139,104,122,102,106,99,111,95,100,91,109,101,109,97,92,93,98,101,106,107,103,102,114,94,116,93,118,93,90,84,84,109,97,91,112,107,99,95,109,100,96,103,106,99,107,110,106,113,129,113,107,112,93,100,103,106,99,108,90,103,93,104,104,98,110,102,91,109,107,104,113,105,98,104,111,99,100,107,103,100,93,122,96,109,106,118,98,95,110,96,105,99,112,102,102,104,112,105,92,103,99,108,104,111,92,103,97,91,96,86,102,103,91,116,105,103,105,121,116,110,79,97,105,99,96,109,84,99,109,103,96,95,101,108,102,98,109,106,96,99,109,113,99,90,100,106,104,108,93,99,91,101,105,106,98,108,99,102,92,105,110,110,107,105,102,112,97,111,91,97,104,108,102,106,103,112,101,89,97,99,94,101,105,98,96,119,119,108,97,106,112,92,111,102,119,104,92,99,103,89,96,103,111,83,113,87,107,102,102,100,116,106,98,101,104,105,116,120,105,106,100,102,98,106,98,94,113,102,92,109,108,98,129,75,101,103,100,97,94,114,104,100,93,94,93,114,88,104,98,94,94,106,108,104,105,95,96,104,120,94,95,95,110,105,99,102,105,104,65,100,99,102,99,114,121,102,116,106,99,113,97,106,112,94,112,107,96,100,110,96,104,96,106,91,104,98,90,103,105,108,108,104,105,88,109,106,113,98,99,87,91,111,107,87,109,110,75,102,104,94,95,106,105,108,100,124,101,106,100,101,96,97,102,102,107,106,102,102,122,103,100,96,104,109,109,109,83,103,98,80,97,109,102,101,104,113,105,94,102,77,99,101,111,100,104,113,92,102,105,95,92,102,106,102,102,87,107,94,74,92,103,113,103,107,107,107,99,102,99,106,96,103,90,102,109,103,102,105,97,106,98,103,95,112,96,92,96,102,102,95,108,102,104,117,108,102,104,99,96,100,92,116,103,111,98,93,103,114,106,116,104,98,100,103,102,96,102,99,103,103,110,101,104,111,96,95,93,112,100,95,104,95,96,100,116,99,108,109,102,108,100,99,107,95,93,100,102,118,114,109,109,93,112,105,104,106,116,96,101,93,97,98,98,95,95,91,96,98,108,100,103,98,111,105,97,97,107,96,96,106,117,100,101,87,97,97,101,99,101,100,102,108,105,86,93,112,71,111,96,108,94,97,94,98,102,101,112,93,104,96,101,111,95,105,88,115,98,113,106,95,98,108,101,106,105,104,96,103,101,103,91,108,108,94,90,106,105,98,101,105,105,97,105,82,91,108,97,94,100,98,110,108,108,110,109,103,102,99,114,110,101,108,103,101,110,100,105,100,106,112,101,101,112,96,95,115,105,94,87,92,103,106,100,108,109,100,103,102,103,103,105,107,103,102,115,119,95,101,102,91,113,103,107,100,94,94,96,107,98,98,108,100,112,100,107,105,93,97,99,105,95,107,97,100,104,87,112,104,112,103,95,102,87,103,106,100,102,102,85,88,107,110,109,106,106,91,103,97,106,103,107,104,101,94,104,109,101,93,93,95,96,102,108,109,99,98,102,96,106,106,103,103,94,110,109,108,106,105,99,99,99,108,117,104,96,111,104,104,95,100,100,108,104,105,99,102,110,98,98,99,96,96,104,100,99,106,106,96,110,101,97,99,103,111,88,101,108,90,109,93,103,95,114,104,98,91,97,91,110,96,109,107,94,104,99,96,107,98,98,100,121,97,104,105,100,99,95,109,102,101,105,112,91,95,106,92,103,102,98,104,102,94,106,103,88,108,90,101,95,107,96,109,102,125,105,96,105,104,88,115,92,100,92,102,108,103,113,102,103,108,109,83,100,109,100,110,104,103,83,102,96,102,94,101,89,107,108,90,93,111,102,124,114,94,96,109,95,104,110,99,99,108,104,99,97,104,112,102,101,103,102,115,99,106,105,93,100,97,99,101,101,106,93,102,96,115,101,92,101,108,102,102,107,95,112,114,107,104,91,101,94,101,106,109,102,121,108,113,115,93,104,94,105,96,114,93,104,108,100,110,85,113,114,94,96,110,104,97,107,100,92,91,107,92,104,105,108,101,105,96,108,111,97,93,110,101,94,104,96,107,89,102,94,103,106,100,102,111,98,105,102,108,102,106,102,81,111,107,101,101,96,91,113,111,105,84,98,96,109,89,100,103,98,116,93,101,120,95,100,93,106,101,96,105,101,116,107,117,104,105,96,92,100,91,96,99,82,109,107,100,91,105,115,105,82,109,110,90,103,117,112,103,108,117,121,96, +435.41556,63,95,93,101,101,114,113,107,103,94,75,97,96,106,105,91,100,98,104,98,94,95,90,101,95,108,112,98,98,105,94,91,106,108,116,107,104,103,108,101,105,101,105,100,92,113,104,100,104,102,106,94,100,97,84,98,91,105,110,105,91,95,99,92,104,108,100,107,108,112,94,93,109,93,117,110,106,91,75,96,106,101,109,93,92,90,93,100,102,101,99,92,103,95,109,107,106,104,95,99,90,110,94,102,93,95,98,97,95,92,108,102,95,91,107,97,103,101,96,108,91,96,104,95,107,114,95,114,103,97,108,104,96,89,96,102,100,109,98,105,105,118,105,113,103,109,103,101,95,104,102,83,103,91,94,95,88,108,115,95,102,90,101,113,99,112,102,94,101,91,92,94,99,103,108,104,106,84,103,104,99,103,97,112,83,106,94,98,107,101,96,107,100,96,111,104,95,103,106,102,84,95,103,110,88,105,101,97,106,106,87,99,109,95,101,111,98,103,104,104,101,102,114,96,109,88,101,108,108,102,118,105,97,102,99,110,95,104,111,103,97,97,103,98,101,103,95,95,102,103,108,114,95,108,92,105,111,104,106,91,96,104,88,95,93,101,95,92,95,102,103,102,116,95,84,100,97,106,100,109,104,104,106,99,106,111,91,116,99,107,99,111,103,108,103,92,98,108,103,99,105,90,103,96,105,106,107,94,102,70,108,100,112,92,102,93,129,95,91,88,103,104,103,103,98,112,90,94,112,102,104,106,102,107,112,99,105,102,105,104,95,113,104,97,96,107,117,102,112,101,116,91,110,116,100,104,100,101,103,108,106,92,104,100,101,90,93,113,107,104,105,90,117,96,96,92,103,90,96,104,103,103,109,119,98,101,103,103,98,107,103,101,99,102,95,83,96,100,103,108,105,94,109,93,103,96,102,109,102,109,96,104,94,102,109,100,101,95,105,103,91,104,105,92,105,102,100,108,88,100,100,102,102,95,99,94,88,102,103,97,98,99,99,105,110,91,100,93,104,103,107,107,100,105,110,106,102,115,108,101,95,118,103,106,122,94,102,101,76,113,98,99,101,95,99,117,103,113,83,98,108,109,97,108,108,97,95,100,99,110,99,98,93,106,102,106,93,92,98,98,93,96,106,101,96,106,92,104,95,113,118,101,105,106,94,105,103,94,94,102,103,108,109,89,97,104,102,90,94,104,101,96,114,103,100,106,107,86,95,103,102,102,94,102,105,97,109,108,97,101,106,104,102,100,102,97,107,105,88,102,107,100,101,104,106,103,97,91,114,97,97,91,91,115,101,102,97,102,95,102,101,97,100,100,100,89,104,104,99,81,99,104,104,100,126,107,108,114,90,95,93,99,116,109,101,94,105,105,90,112,95,105,104,98,92,90,104,98,99,114,102,97,101,94,102,100,102,109,109,93,98,96,98,103,102,90,108,101,91,100,140,108,106,105,96,90,95,85,109,102,93,109,110,98,100,96,106,109,103,104,111,95,102,100,93,101,95,94,99,100,94,96,100,101,103,94,92,111,116,93,133,107,104,94,91,82,87,86,102,105,113,103,114,103,101,103,98,100,114,113,103,118,94,101,108,107,95,96,97,102,110,94,108,100,90,100,107,105,88,102,109,95,92,104,104,104,95,95,103,108,75,114,93,105,108,105,109,99,109,105,92,102,117,104,97,109,97,114,92,103,117,97,105,106,99,96,102,105,109,100,95,108,84,101,97,94,91,87,105,97,120,104,99,107,106,108,102,105,98,107,99,114,95,111,103,96,98,102,106,101,90,103,113,106,107,93,113,105,109,93,104,88,90,107,95,81,103,103,104,103,108,104,95,106,100,87,106,104,112,92,87,105,100,96,109,93,111,87,116,103,108,113,103,122,102,105,113,102,97,109,104,122,100,93,105,108,113,101,93,82,101,95,110,104,103,99,100,100,105,98,114,96,98,104,98,93,97,105,100,93,106,105,105,98,114,89,103,109,97,108,117,101,97,128,95,100,104,118,93,97,104,105,96,96,100,102,102,96,94,105,98,103,98,67,92,105,97,109,95,102,99,101,108,98,109,101,114,95,105,91,103,109,101,106,102,105,107,99,102,97,102,100,96,116,100,119,95,85,90,121,103,98,105,95,79,93,109,107,79,105,103,100,100,106,108,96,108,100,95,95,104,104,88,103,100,106,98,101,104,88,104,91,103,91,93,108,101,94,92,103,102,109,109,102,105,108,100,99,105,110,89,99,92,98,100,124,91,111,104,95,104,99,103,104,109,98,94,92,105,107,94,105,107,106,101,100,112,103,105,98,91,108,90,98,105,98,103,107,98,105,105,91,103,111,96,93,103,104,99,95,105,94,100,93,98,101,111,95,105,105,101,92,104,98,105,127,105,98,92,94,94,105,110,97,97,99,90,97,101,104,102,108,106,103,102,97,74,100,89,81,99,97,97,99,110,102,96,115,97,93,105,108,102,111,102,99,81,92,95,98,100,92,102,99,99,113,102,100,106,98,105,110,91,95,113,92,104,109,88,99,113,106,100,102,108,98,93,112,101,98,85,110,106,103,98,108,123,113,105,106,112,96,93,101,101,112,108,102,117,103,117,86,107,104,105,108,107,106,100,95,99,98,103,103,137,109,102,97,112,103,92,106,103,113,103,104,102,87,101,96,108,97,79,115,96,92,104,92,93,102,101,100,123,106,100,107,94,102,98,91,103,109,113,94,105,98,99,101,104,111,111,105,88,110,91,87,102,106,104,99,115,99,118,100,102,108,104,103,102,101,108,117,105,102,109,92,109,100,93,86,110,88,111,103,102,96,99,115,94,89,112,106,97,106,103,101,112,115,100,111,106,96,105,113,78,105,110,98,102,90,107,113,109,104,99,105,96,105,113,111,103,115,113,119,97,105,90,95,104,102,98,109,101,107,100,103,102,101,101,100,113,105,98,104,95,88,95,116,109,106,110,71,101,111,104,101,101,90,99,101,99,106,99,100,114,105,109,95,115,102,120,94,97,106,101,98,98,95,93,103,102,102,105,89,102,109,110,94,107,103,112,104,97,99,99,85,110,97,100,98,104,103,93,97,106,115,106,105,98,99,104,104,109,115,109,74,112,116,109,117,99,105,107,108,104,100,100,96,109,109,103,102,99,95,102,106,104,89,110,100,100,95,99,105,103,104,98,105,107,87,99,107,99,92,112,91,105,109,91,100,105,96,100,99,109,96,101,102,113,106,112,115,112,113,109,109,108,101,109,98,113,109,108,102,104,105,100,83,102,101,102,95,103,103,81,106,99,97,104,92,105,97,104,97,100,96,96,80,104,116,99,102,100,104,94,103,105,103,105,107,110,106,94,107,108,93,88,98,98,104,113,79,98,95,97,98,109,113,98,99,92,100,98,120,96,111,95,96,103,104,92,107,109,104,113,102,117,116,102,99,98,107,118,99,91,104,107,104,107,101,99,110,100,90,108,96,104,106,111,99,96,109,109,95,97,95,105,107,97,98,104,100,97,108,94,116,94,110,98,102,91,95,100,96,109,99,99,102,111,101,102,98,97,86,97,110,105,112,103,95,98,101,101,105,103,99,93,95,106,117,94,95,95,106,102,97,103,101,100,109,98,99,102,104,100,90,93,102,98,102,109,116,104,107,96,98,112,100,99,76,105,109,101,103,105,114,103,103,102,105,94,100,97,94,102,102,101,104,96,100,105,108,95,93,93,100,107,117,99,100,107,102,101,105,96,104,98,102,91,106,112,98,98,102,108,107,104,93,114,101,101,93,99,81,112,89,98,94,104,96,96,104,96,96,89,121,106,107,102,104,103,113,99,97,100,102,96,94,114,103,113,106,112,99,107,102,100,111,100,108,94,102,90,102,124,103,83,102,103,117,100,89,97,94,100,107,108,114,103,100,99,95,98,96,112,100,111,106,101,103,97,91,114,99,99,99,117,104,105,94,96,102,105,112,106,108,96,110,102,119,113,112,105,91,89,98,99,98,100,108,104,108,93,106,100,99,129,108,95,92,106,99,101,107,115,99,106,103,93,101,94,92,100,101,100,100,87,97,83,104,94,113,104,80,106,99,101,103,109,104,100,84,109,94,100,102,102,104,106,106,116,95,97,103,107,105,99,101,111,109,96,92,82,91,115,100,112,110,96,98,92,101,103,98,97,95,95,98,104,96,107,77,104,100,101,102,98,111,107,110,109,78,96,91,118,105,105,107,96,97,94,103,118,102,106,114,95,103,106,106,103,100,112,99,105,102,68,96,95,110,106,118,121,100,107,112,108,94,109,99,99,103,109,103,95,95,91,94,91,101,100,106,106,104,91,92,97,112,104,94,95,101,101,108,93,100,114,100,104,109,104,98,104,107,106,101,115,97,97,98,100,93,96,102,90,101,103,112,106,104,113,104,105,100,101,109,100,107,95,100,98,109,98,105,120,94,99,109,111,94,96,106,102,99,104,105,105,95,101,94,101,106,105,105,104,100,102,107,87,92,91,95,99,100,97,107,106,92,97,93,104,94,114,92,95,98,99,96,95,95,98,102,105,104,108,89,105,99,96,106,101,94,95,101,109,103,98,102,115,105,91,89,106,105,92,89,95,106,87,91,100,106,101,96,103,96,100,107,110,101,96,95,101,91,102,101,98,91,90,105,99,90,95,114,102,90,94,114,111,102,104,97,109,104,100,94,104,76,99,99,97,83,102,110,98,109,99,105,95,111,91,101,101,103,86,92,92,92,94,109,99,104,100,94,113,92,101,99,91,98,96,94,111,104,105,108,102,95,123,97,102,95,101,100,99,111,91,104,93,108,98,108,100,107,102,95,98,95,105,100,104,101,99,92,102,98,88,106,94,75,112,96,104,92,123,104,106,98,101,83, +435.55588,105,85,99,105,84,97,103,106,84,101,105,99,107,96,92,103,107,103,104,89,107,99,106,93,94,102,116,102,100,107,111,98,95,101,105,97,110,93,101,102,103,105,92,83,102,108,113,101,107,99,105,102,98,97,99,90,126,112,87,91,102,112,100,88,98,113,87,103,99,99,102,110,87,112,99,105,104,100,113,99,111,93,104,122,104,98,90,96,100,109,100,100,99,95,96,106,107,93,91,103,92,101,97,93,101,101,92,100,117,104,111,101,102,95,105,104,96,103,105,91,90,101,102,98,109,93,112,98,102,104,106,93,94,106,98,109,99,118,100,99,99,97,100,110,104,101,104,112,102,91,95,105,108,97,99,92,107,105,101,110,97,106,113,104,113,91,99,103,96,99,95,94,95,109,110,104,106,91,106,111,111,104,97,91,106,95,100,94,102,98,114,101,88,103,101,107,99,108,90,108,100,101,96,98,105,98,112,106,103,103,93,107,96,110,92,98,100,97,109,98,101,101,90,87,100,103,93,111,100,99,115,102,113,93,89,94,101,100,99,92,93,103,104,96,95,104,105,106,102,114,107,104,99,99,97,94,101,98,108,112,101,100,101,95,105,106,107,97,105,98,108,101,102,106,118,113,86,106,83,106,108,84,79,111,98,108,95,103,104,104,109,94,103,113,115,107,86,105,104,100,89,99,99,109,81,101,104,97,90,96,100,85,110,94,108,101,108,99,86,103,96,95,109,107,112,107,106,110,91,113,105,105,107,92,95,76,100,89,103,103,104,106,112,100,106,91,100,96,100,90,98,103,105,103,104,96,95,106,106,88,99,122,99,90,101,97,108,103,109,104,97,114,99,99,92,88,98,94,105,109,95,108,105,109,101,99,87,99,98,101,122,86,99,106,96,96,100,101,96,95,100,94,105,94,90,102,90,110,78,95,101,103,106,100,110,95,104,101,94,100,103,103,94,109,88,94,113,95,101,107,96,96,95,99,114,99,94,110,98,105,117,110,97,100,105,103,115,92,107,107,105,89,110,105,101,103,102,105,103,94,92,102,108,108,98,99,108,98,103,101,114,107,99,87,88,99,89,113,107,107,97,101,102,99,116,101,102,101,100,107,104,107,109,102,102,104,91,105,98,105,104,95,98,118,106,105,99,110,108,109,106,106,104,84,99,89,116,111,98,101,105,98,98,106,78,99,97,104,96,101,106,109,104,108,112,101,84,104,104,99,100,100,93,109,109,83,93,109,109,101,112,104,106,91,109,98,107,88,104,108,103,94,94,108,106,111,107,111,103,97,89,115,113,101,92,117,93,105,102,99,103,97,96,96,110,106,116,111,113,102,106,109,104,107,109,105,96,91,108,107,117,110,104,98,105,92,109,113,108,108,96,102,104,96,104,120,103,92,100,103,94,99,103,96,94,98,103,104,114,95,99,92,109,97,91,109,102,103,104,103,103,103,108,100,105,99,84,94,105,109,99,104,112,113,105,117,107,108,92,95,122,104,104,94,91,91,100,96,108,112,101,98,91,95,102,116,105,96,113,102,107,90,112,100,88,98,96,106,90,93,98,116,105,103,103,104,94,109,116,100,95,106,99,96,110,106,107,106,101,93,105,110,100,99,94,97,119,92,102,104,100,105,98,109,93,93,110,101,73,117,99,98,107,105,110,102,99,91,99,108,111,110,104,97,104,95,103,91,108,102,106,103,99,102,93,103,95,95,109,99,114,97,95,96,100,109,113,93,117,99,109,105,108,105,101,105,107,96,112,96,97,92,97,97,98,108,96,109,101,91,90,109,88,114,87,94,105,109,98,103,106,100,96,102,113,106,117,108,107,99,99,109,112,100,106,105,93,111,113,94,111,91,115,104,102,99,108,96,96,100,103,102,102,95,102,94,114,101,111,96,107,104,100,101,102,105,105,91,105,98,108,95,95,99,101,94,107,106,109,105,92,99,105,99,104,108,95,103,99,108,110,106,93,102,105,107,110,100,99,108,114,109,105,108,98,103,104,107,87,104,101,111,100,93,98,99,88,102,109,116,101,95,103,101,99,102,108,103,101,102,105,106,103,102,103,97,104,104,100,104,91,104,112,97,99,99,91,98,113,112,97,106,110,100,101,97,95,109,112,108,106,92,111,101,116,99,103,138,99,87,101,91,91,114,104,99,101,105,84,109,112,105,96,97,108,101,104,104,104,110,95,92,107,115,99,103,106,96,99,118,102,98,107,106,97,121,101,103,105,99,96,114,111,102,99,91,98,113,97,97,100,109,113,112,98,102,104,98,98,100,87,105,106,111,94,102,106,100,96,88,101,102,106,97,101,96,115,100,115,108,119,94,99,94,99,90,100,117,112,117,109,107,95,99,135,108,109,107,112,106,102,105,132,99,98,110,106,105,107,104,92,96,107,116,101,112,87,107,94,93,95,101,106,98,109,98,95,95,99,92,98,93,112,100,98,102,100,92,106,99,121,101,96,92,101,114,77,92,100,106,99,107,97,99,104,107,103,107,102,100,103,101,109,96,108,97,87,95,98,115,120,102,111,94,118,106,97,105,96,106,105,109,106,103,95,95,97,105,93,98,104,109,96,110,104,96,104,102,104,99,101,102,109,97,108,90,107,106,95,93,111,98,101,113,113,96,91,104,110,99,88,103,107,100,105,99,106,87,98,97,103,106,104,101,108,103,95,97,105,105,106,94,107,96,99,97,96,97,101,101,98,100,103,106,106,89,101,91,100,111,97,96,105,107,111,98,92,104,99,100,104,92,99,99,113,100,104,111,112,106,99,113,91,126,98,94,102,99,102,109,100,105,113,101,102,94,104,101,101,113,103,108,99,106,95,96,95,99,95,108,104,96,87,98,110,105,100,101,92,108,112,109,102,98,112,110,101,103,107,115,96,108,91,103,100,99,97,113,105,100,117,106,114,104,107,115,99,95,107,87,109,100,102,115,104,119,104,110,102,103,110,119,102,96,110,106,100,97,88,100,101,123,99,125,101,106,112,96,97,96,108,83,101,111,98,99,95,84,104,94,108,106,106,102,110,81,72,99,109,98,97,117,105,109,100,113,94,104,106,95,108,98,101,105,107,105,106,94,90,75,106,101,101,109,91,114,106,97,109,102,98,95,102,99,108,101,100,98,94,115,105,100,107,99,100,101,95,105,116,95,102,99,100,104,103,99,102,121,108,91,90,113,86,76,99,108,116,111,113,102,97,101,97,113,106,99,93,96,106,106,99,112,113,98,108,105,72,112,95,105,93,93,102,75,107,93,111,95,92,97,89,87,107,102,105,103,111,108,95,99,93,106,105,116,101,95,108,98,98,103,103,106,107,106,107,106,106,87,102,111,95,102,89,97,110,106,99,98,115,88,106,102,114,113,108,103,107,111,95,111,104,113,107,106,101,102,98,93,103,91,95,96,103,100,106,100,112,101,93,105,100,106,115,102,103,101,105,107,94,92,103,103,98,113,95,97,95,104,104,72,96,104,112,101,102,105,110,99,107,104,103,99,97,106,100,104,96,111,80,107,107,110,106,99,116,94,90,95,89,106,98,98,100,98,99,116,105,85,110,92,96,96,99,95,103,87,103,98,114,90,100,99,103,96,107,98,97,101,92,72,100,100,104,107,98,109,100,95,90,103,103,101,102,101,105,94,95,116,107,107,100,104,97,102,104,105,105,110,93,95,111,93,101,106,98,100,98,99,113,104,103,100,100,110,102,98,106,105,101,102,107,106,97,91,109,102,106,106,104,121,108,108,104,116,103,104,101,114,87,99,94,107,98,105,101,97,107,108,91,84,106,101,105,109,107,105,103,96,93,91,104,110,99,100,96,106,102,105,108,99,95,102,99,104,93,96,106,104,94,82,101,89,104,108,104,97,100,100,102,104,108,102,101,100,95,109,113,105,110,99,105,96,104,100,100,109,98,99,98,99,106,103,96,111,105,102,102,94,87,106,98,92,101,96,94,96,100,109,88,92,102,101,100,97,103,99,99,98,94,98,122,101,110,94,116,105,106,97,107,120,109,99,92,121,96,96,107,100,110,91,103,103,98,102,103,102,103,103,104,96,98,98,113,100,100,104,87,97,89,110,109,98,100,104,104,110,104,107,95,100,106,96,99,96,96,85,115,112,108,108,106,101,96,105,102,91,102,106,97,103,87,110,94,102,98,104,106,105,116,112,106,117,103,94,95,93,100,100,92,95,104,100,113,99,100,102,98,103,103,108,101,103,99,97,102,101,110,100,108,112,116,105,107,100,104,96,111,105,98,71,98,102,94,100,101,95,93,106,100,109,119,109,93,104,98,106,95,100,109,91,103,95,96,101,105,99,87,101,103,104,92,102,103,115,112,97,105,116,99,100,99,114,105,96,105,95,95,112,110,112,102,96,102,117,91,112,105,101,103,91,117,108,98,106,104,96,95,109,107,98,98,100,98,86,99,91,79,112,104,101,95,78,95,109,101,121,95,110,91,112,85,107,98,108,99,99,100,86,107,105,105,101,100,105,105,107,120,105,99,107,101,97,93,91,100,98,94,106,109,113,109,95,119,91,101,102,98,96,90,102,105,95,92,110,102,101,89,104,96,104,104,99,98,98,93,101,103,104,98,101,113,88,112,100,76,109,101,111,89,102,93,88,129,91,96,110,99,113,98,98,96,97,101,97,105,102,94,109,98,92,105,109,100,104,101,83,92,117,88,105,101,109,108,105,133,98,75,108,108,105,92,98,104,92,95,105,90,105,102,104,109,99,109,100,95,107,102,102,92,104,99,93,100,102,86,113,111,103,98,109,106,106,96,90,96,97,115,110,101,96,91,107,97,101,103,98,91,94,101,100,106,108,96,95,122,117,97,102,96,100,104,101,89,103,106,105,91,106,94,93, +435.6962,81,108,92,105,95,109,112,108,89,115,88,99,98,106,103,103,110,97,109,105,103,104,114,96,103,109,107,95,98,107,95,104,107,107,107,97,101,124,98,85,96,100,104,106,105,101,94,102,103,99,105,102,103,97,106,94,96,105,109,95,104,68,103,89,109,101,99,108,106,94,103,128,104,103,99,109,90,103,97,102,109,104,113,105,105,105,112,95,110,105,112,99,133,97,96,104,93,102,96,108,105,105,113,105,108,88,94,113,100,103,97,95,107,100,104,104,111,104,106,102,104,106,113,115,101,89,107,94,111,100,103,110,103,123,105,98,98,109,102,100,99,101,92,100,99,99,116,101,99,110,102,105,107,100,93,100,109,98,100,103,107,110,111,97,105,106,91,95,104,113,105,106,103,100,97,83,110,82,100,106,100,108,108,114,104,101,105,106,99,100,130,112,105,102,109,107,100,100,110,102,109,105,120,98,106,101,100,105,117,109,113,112,105,104,97,95,110,108,110,105,87,101,110,94,97,106,108,94,105,107,91,105,108,99,97,102,108,101,105,96,100,107,108,114,107,117,97,104,113,113,113,110,92,98,101,109,96,101,90,104,102,105,87,101,96,99,105,94,96,106,103,99,111,104,105,94,96,98,86,99,101,103,113,93,110,100,99,122,107,96,108,100,97,98,109,102,110,102,107,107,95,102,108,126,92,103,103,91,98,106,105,111,99,101,102,96,68,97,100,102,87,106,100,101,98,99,82,87,110,99,106,105,99,100,90,103,108,102,96,94,99,104,102,92,109,105,101,106,114,100,122,109,121,106,101,109,114,104,108,95,105,97,101,97,95,106,101,109,97,113,104,114,112,94,109,103,103,102,90,106,113,104,99,104,95,99,93,100,94,96,111,97,101,98,108,101,101,107,104,94,100,98,104,96,107,99,94,97,98,91,90,90,102,98,92,98,97,89,92,96,105,98,97,106,113,102,106,95,93,118,85,94,97,120,104,99,105,106,91,107,114,116,108,100,93,101,94,105,94,112,100,104,101,100,101,101,90,89,102,93,96,106,97,101,106,122,98,105,94,100,98,81,92,89,108,96,109,99,105,107,90,112,85,110,97,100,96,111,95,113,108,101,112,98,98,110,91,90,102,103,112,102,110,97,103,105,94,105,107,99,102,104,104,102,95,103,104,106,94,93,105,105,104,105,100,110,103,106,94,102,97,114,98,96,97,95,104,94,92,104,94,94,97,105,99,83,95,102,100,100,110,77,101,90,91,112,101,105,93,98,104,75,105,93,101,103,111,100,93,104,92,97,97,100,96,91,103,101,88,99,95,95,129,95,99,92,102,98,101,100,108,95,105,98,104,100,109,103,114,113,104,99,103,92,103,89,92,96,98,107,91,93,93,94,101,101,102,118,96,95,102,100,104,98,102,105,101,103,101,100,99,111,95,104,89,103,105,92,111,106,114,105,94,108,94,103,108,101,116,111,95,109,102,107,102,102,105,92,104,86,95,132,86,105,104,104,97,78,100,101,101,99,99,120,103,98,98,96,105,105,109,108,103,103,93,122,96,102,98,96,109,104,103,100,99,100,106,102,114,101,105,102,97,105,107,112,108,127,100,113,109,90,113,86,99,110,109,109,113,106,97,100,109,114,98,91,111,104,105,102,109,94,104,99,105,112,107,101,100,101,98,110,100,102,104,108,101,103,107,103,104,92,103,114,107,98,101,119,96,98,99,114,94,91,97,121,96,108,108,104,110,111,136,105,97,106,107,104,114,112,108,106,108,111,103,91,110,107,91,104,86,120,104,122,100,104,103,95,105,99,113,105,98,111,103,108,105,103,106,97,90,113,96,102,113,104,107,114,105,99,105,108,102,99,104,103,103,95,109,96,109,84,112,101,90,109,104,105,111,105,86,103,105,104,100,102,103,112,109,102,97,108,105,102,105,115,94,106,103,105,110,98,109,110,106,96,104,99,106,105,106,105,101,110,101,100,107,88,84,109,117,99,108,103,103,98,83,109,96,107,102,124,117,106,105,109,102,111,97,108,105,103,93,101,106,88,101,99,84,98,113,104,110,102,104,97,102,95,113,104,112,96,104,95,103,107,105,100,95,108,106,107,101,101,99,112,101,80,110,100,107,98,105,109,91,107,91,108,105,107,97,83,98,99,113,114,113,103,91,96,109,110,99,96,101,107,106,96,109,99,110,103,96,100,100,98,96,90,102,108,98,113,120,102,76,106,106,104,99,102,105,103,106,110,90,94,104,104,94,105,103,96,101,95,105,82,114,109,101,99,95,112,104,117,107,99,111,108,116,90,109,87,106,95,99,98,103,88,101,111,117,104,104,99,98,88,100,102,100,105,83,102,102,108,109,103,101,108,97,92,102,98,90,70,92,96,100,97,114,106,102,109,97,106,100,100,99,91,101,94,87,103,90,108,91,112,97,94,80,101,100,106,89,104,90,106,105,101,103,100,107,109,98,93,90,92,110,90,107,109,105,105,106,96,104,106,102,106,113,98,101,102,112,96,105,101,107,104,102,97,85,98,98,110,98,98,99,102,103,101,110,105,98,101,90,103,90,105,104,110,95,101,100,112,78,102,106,118,102,105,109,97,108,99,100,100,107,107,105,99,91,104,105,93,103,115,102,88,107,109,93,101,101,81,111,106,98,107,111,109,90,115,92,109,101,109,98,98,103,95,104,99,106,110,94,97,94,91,109,99,101,100,97,98,92,99,103,112,99,85,105,96,98,107,100,107,99,102,98,100,108,91,103,106,110,106,98,108,99,104,102,106,108,102,105,101,104,94,103,105,110,102,112,96,106,105,100,105,89,102,103,98,107,95,104,116,98,102,87,93,102,102,101,98,105,101,102,97,94,89,105,113,112,105,103,89,101,93,104,113,104,109,104,95,100,138,101,100,106,98,97,105,101,109,98,124,103,108,92,106,109,100,109,114,88,97,85,107,96,102,98,113,93,98,103,103,93,105,93,66,96,102,88,95,111,100,107,100,117,87,100,101,96,107,89,91,118,96,88,100,99,95,105,92,91,105,100,91,116,96,126,95,106,111,104,91,102,99,128,91,113,108,99,99,99,109,110,105,101,95,106,117,97,112,108,100,99,107,104,110,100,102,101,107,100,87,99,87,101,101,103,95,100,95,98,103,95,90,99,97,113,103,100,123,97,109,98,101,116,103,96,104,101,101,98,97,104,101,103,101,104,102,88,107,93,110,101,107,116,98,91,113,92,108,101,94,105,103,100,87,112,96,103,90,94,97,98,99,101,93,95,103,112,105,94,103,100,104,110,106,104,100,95,100,102,106,97,100,98,99,100,94,118,99,99,116,111,113,100,100,102,105,91,109,107,99,82,102,95,90,94,113,98,99,111,98,109,105,114,112,113,110,102,96,106,104,99,86,101,102,90,100,89,99,106,69,101,96,102,116,98,100,107,104,91,102,108,107,97,103,99,91,83,105,107,98,106,95,98,96,98,97,120,103,93,96,104,100,95,87,117,91,103,115,95,96,94,121,102,106,100,107,109,98,108,99,103,102,109,101,87,106,107,92,100,94,96,104,93,99,90,101,101,100,107,108,95,99,90,101,93,99,104,91,94,100,103,95,98,101,105,92,107,95,105,106,102,94,91,95,94,92,99,104,98,102,99,106,104,93,101,104,99,97,97,107,103,109,98,101,117,102,89,102,99,99,97,106,98,90,100,103,104,100,99,86,104,102,107,86,100,103,89,101,106,103,102,99,99,99,118,112,95,103,106,97,91,92,99,104,109,110,104,113,98,95,90,101,94,99,105,98,106,98,91,109,100,93,105,102,100,105,108,104,102,99,113,101,98,93,108,92,95,89,105,97,98,98,101,95,93,99,104,106,93,97,90,102,100,112,101,107,114,86,106,105,110,100,101,98,101,107,106,99,111,103,105,76,100,93,104,111,95,100,101,96,93,102,109,114,105,111,97,95,102,99,109,96,102,108,98,92,84,118,108,97,97,98,98,95,126,102,103,99,105,112,98,99,99,98,101,107,104,101,104,104,105,104,104,96,95,95,105,101,102,101,96,107,102,95,110,109,113,100,98,100,100,111,89,106,98,105,101,102,98,99,103,110,119,98,88,88,100,103,86,93,96,100,113,104,101,101,89,96,120,105,107,98,97,97,120,111,112,106,96,111,108,106,98,86,98,98,106,102,99,95,98,105,77,92,105,93,106,91,95,108,108,108,105,99,100,105,104,106,94,110,107,100,110,130,93,99,103,108,96,110,101,109,96,102,90,100,101,102,120,99,99,102,98,103,108,96,112,109,104,106,110,109,107,102,102,94,105,99,99,86,124,99,107,98,108,101,95,91,108,109,104,102,91,96,111,87,126,96,105,99,112,104,100,93,95,91,105,109,98,95,96,102,99,99,102,98,97,102,97,101,94,100,100,105,94,98,94,100,96,99,100,123,102,101,93,95,103,101,91,109,99,100,131,102,104,99,94,92,110,98,107,105,103,89,95,95,103,94,99,101,107,112,100,96,98,99,102,98,104,106,107,94,108,88,113,110,100,99,96,91,111,92,99,103,88,97,100,108,108,89,102,94,104,104,103,106,102,104,102,102,107,107,111,92,102,96,108,86,100,114,106,101,98,104,98,99,104,91,109,92,118,100,102,101,104,96,106,98,101,98,105,85,119,102,110,111,93,113,109,94,97,96,91,94,106,95,88,91,102,105,111,104,104,97,107,116,92,107,104,101,83,97,94,83,101,107,113,79,109,105,93,104,92,87,102,79,113,133,101,99,97,103,91,96,106,108,88,102,103,94,111,94,89,106,106,110,101,104,117,126,91,119,108,82,99,104,100,90,109,97,105,109,102,93,95,101,109,94,91,95,95,93,86,90, +435.83649,105,116,99,98,81,107,103,106,109,109,100,92,104,97,102,100,108,114,97,103,92,98,97,99,107,104,104,117,98,104,105,107,100,99,108,103,110,104,100,102,100,96,101,114,107,111,96,106,109,113,104,97,117,99,109,117,84,104,113,79,113,112,94,89,101,106,102,95,104,90,98,98,100,102,96,96,102,90,102,97,86,96,96,104,101,90,105,98,109,98,124,100,106,100,106,90,91,98,86,101,105,101,105,97,99,94,88,97,74,103,102,105,99,92,105,78,107,94,98,96,101,97,106,110,101,87,99,99,103,105,101,105,101,107,103,100,106,95,107,96,99,108,97,99,96,75,126,107,99,103,84,114,113,109,105,95,102,79,108,107,106,104,122,110,101,109,109,87,92,107,110,113,90,109,107,104,118,100,109,108,111,91,112,96,89,103,101,90,99,113,106,98,94,109,104,110,107,107,105,109,100,99,100,112,101,98,110,98,110,102,96,106,105,104,116,107,92,105,106,96,85,111,97,113,91,123,108,104,103,104,103,97,104,100,105,103,98,106,99,117,100,106,105,73,107,99,111,100,90,102,98,104,100,100,106,108,101,100,112,110,98,98,110,107,108,106,102,95,94,106,119,107,95,94,102,99,103,118,105,97,99,86,92,100,101,104,105,113,108,99,95,110,103,106,111,102,93,103,101,112,99,102,97,101,113,112,111,111,117,102,100,90,104,88,112,99,101,92,105,93,90,88,107,105,100,108,94,100,120,109,99,115,112,103,99,100,108,102,76,82,102,96,102,98,106,100,107,89,119,104,102,107,114,111,91,106,100,108,97,101,104,105,114,107,113,90,95,109,104,102,105,117,110,101,99,105,112,105,105,110,107,105,101,104,106,108,94,107,107,110,111,86,108,108,103,95,102,98,113,107,104,99,102,105,84,95,107,97,92,91,123,101,105,109,105,104,99,105,95,113,108,103,95,85,105,98,111,98,109,101,91,111,105,105,87,108,113,112,103,100,106,98,103,99,99,105,103,103,115,88,102,134,100,100,104,101,92,114,109,99,119,97,102,102,115,79,99,97,110,100,101,126,104,116,137,96,104,102,103,109,97,124,100,106,95,109,112,94,105,96,107,102,100,94,107,114,99,99,95,99,109,113,109,100,100,111,96,111,106,107,111,116,96,107,106,99,94,100,94,96,101,114,110,107,110,104,101,101,96,114,96,118,110,107,107,116,98,105,107,99,106,108,105,105,109,96,105,114,105,99,110,105,118,104,81,98,96,103,110,94,113,102,94,109,107,106,95,111,104,104,95,109,104,106,101,106,100,103,104,112,119,97,116,105,106,107,112,105,104,99,109,86,104,97,103,112,75,108,114,97,104,99,115,96,97,110,95,103,114,104,132,100,105,103,104,106,66,89,107,113,103,103,108,100,116,105,109,102,110,108,107,102,89,100,101,103,100,104,102,97,111,110,112,113,97,96,99,119,104,100,104,115,109,110,106,105,99,86,102,111,108,126,97,101,100,108,106,90,86,91,103,111,97,110,98,109,98,106,102,88,82,99,101,97,94,113,104,112,103,103,104,106,109,107,91,97,104,100,103,98,113,93,105,93,107,110,110,110,93,97,105,93,97,108,117,92,95,103,94,108,102,98,92,103,105,82,105,104,113,108,95,112,98,107,100,94,105,98,100,109,100,109,101,110,103,109,102,91,106,100,105,90,83,101,102,98,104,95,110,100,100,107,100,101,82,93,94,76,101,93,109,102,106,108,95,99,92,96,112,95,99,105,116,126,99,115,98,101,94,103,104,105,86,97,101,108,97,108,110,103,99,87,86,106,114,106,104,113,105,106,111,104,100,109,113,115,106,103,102,109,107,88,101,102,112,105,92,100,117,104,106,110,121,111,108,109,114,104,105,107,104,108,105,93,101,99,104,101,102,105,101,102,104,101,109,113,98,102,108,107,89,90,100,108,94,109,105,103,103,103,113,113,102,106,105,111,102,105,93,109,104,99,101,119,108,111,92,108,100,90,101,105,105,113,110,101,100,103,106,101,99,102,92,112,125,106,107,102,115,101,102,99,99,118,102,90,101,91,105,96,91,96,111,106,114,103,102,105,104,105,102,99,108,111,110,116,113,100,110,106,105,100,98,104,109,99,89,105,103,101,110,102,100,106,108,108,106,102,93,101,107,104,109,99,104,112,100,106,104,105,105,94,117,122,104,94,102,102,103,109,102,104,104,103,115,103,96,92,103,94,101,92,99,113,103,104,117,101,103,107,101,99,109,73,111,108,107,101,95,111,101,106,96,115,106,102,101,102,99,94,100,97,103,103,92,111,90,99,106,102,95,107,78,104,98,94,95,106,100,89,102,94,109,98,94,86,118,102,101,97,114,96,104,100,106,97,103,104,107,96,104,113,125,94,105,104,109,103,99,113,90,103,100,112,96,97,108,106,107,97,104,102,101,96,105,105,113,94,115,106,98,96,103,98,98,99,111,115,112,99,99,112,108,96,91,112,103,117,105,98,98,106,106,105,112,101,102,102,104,101,95,101,116,109,107,102,91,105,107,110,112,103,101,98,113,103,95,95,89,103,105,98,95,98,101,95,118,107,112,100,117,115,115,98,102,102,99,100,110,109,114,99,113,91,101,121,106,96,111,106,101,113,100,98,97,106,109,113,107,106,112,106,111,108,105,89,99,76,100,94,107,112,114,106,110,103,95,105,97,116,100,109,109,92,104,97,115,113,108,105,106,103,105,105,105,104,99,99,93,97,121,113,95,97,105,95,80,115,113,107,101,109,100,106,109,108,95,109,104,110,102,106,107,94,119,98,103,98,105,99,93,120,88,107,96,93,107,88,99,99,99,91,111,99,107,90,113,95,113,101,99,106,114,101,95,99,104,103,93,108,99,96,101,113,102,106,104,129,141,92,95,104,105,105,104,109,90,110,99,96,104,108,99,116,96,94,105,120,102,88,103,111,98,93,102,117,92,101,108,107,110,104,101,110,97,101,127,106,110,103,99,96,96,99,108,99,91,109,110,112,100,117,109,95,109,96,98,107,106,102,100,116,97,113,90,103,100,102,119,109,101,96,106,104,101,93,95,119,109,99,115,113,113,113,105,94,102,119,101,109,112,101,108,105,96,93,93,98,106,87,113,108,102,113,98,113,108,95,110,96,95,105,96,109,96,83,100,100,102,100,107,94,105,107,102,104,108,112,109,88,118,103,102,101,99,101,103,99,112,102,103,96,107,111,105,105,111,109,108,103,98,93,102,105,103,99,107,116,111,87,78,113,106,103,99,101,95,90,98,99,106,110,105,114,109,105,95,100,112,123,114,98,102,110,102,107,88,91,106,106,92,103,90,115,106,90,99,93,105,94,109,106,101,82,109,96,110,99,125,102,92,104,91,96,104,107,108,99,122,106,92,109,96,85,105,103,104,102,105,101,110,102,104,111,100,105,95,109,112,91,101,96,101,111,109,103,98,104,105,102,105,108,96,104,102,90,103,105,106,91,99,103,105,107,102,97,99,108,99,102,103,105,105,99,102,95,99,97,105,112,104,83,104,99,98,100,103,126,104,101,107,101,114,102,102,101,100,92,109,101,101,104,102,98,100,94,106,108,125,96,96,109,104,102,95,101,99,92,103,103,111,103,112,111,113,91,91,100,106,94,103,100,102,104,106,79,104,103,102,101,103,102,109,90,112,103,97,105,95,85,86,102,102,102,105,103,105,94,98,88,97,102,102,97,102,109,99,93,99,97,93,110,112,102,90,99,102,92,108,102,97,96,116,97,93,98,99,107,110,106,106,95,106,102,101,104,102,102,94,104,93,116,103,99,95,107,111,98,101,101,100,98,100,101,88,107,97,90,102,92,99,100,98,90,97,105,99,97,98,89,110,98,88,104,98,96,111,97,100,102,104,97,110,111,104,97,104,78,101,102,104,112,104,99,93,101,121,124,101,100,113,98,96,103,93,102,91,106,100,108,97,105,95,102,103,98,81,104,101,100,104,99,96,96,103,100,114,102,113,100,106,94,96,103,100,101,94,95,104,100,118,108,99,91,102,99,103,95,109,99,98,101,109,100,108,106,109,87,90,99,94,100,106,106,101,108,112,95,91,126,117,96,82,98,109,96,98,104,100,101,98,104,104,98,96,109,101,113,100,103,101,105,101,99,100,100,99,107,102,85,105,99,109,103,108,93,96,97,111,103,105,72,87,106,96,97,97,95,102,93,101,89,112,103,101,88,109,99,100,98,105,110,101,104,100,94,104,95,94,99,99,93,107,95,117,98,101,103,103,102,98,114,111,110,102,103,95,103,97,106,98,102,107,107,94,95,95,103,115,86,106,126,103,103,90,99,98,91,104,108,96,98,103,94,102,109,106,105,105,109,99,102,91,102,105,110,105,102,102,91,117,92,99,84,99,92,95,105,104,103,108,91,100,88,106,95,99,101,110,99,98,83,102,106,102,91,102,105,128,99,90,93,96,113,98,99,92,109,99,94,97,102,106,96,101,91,107,97,90,92,102,96,97,95,97,100,97,100,105,116,113,119,88,84,97,104,103,111,101,94,83,103,93,102,113,96,103,112,94,104,92,97,124,101,111,106,112,108,112,81,103,109,117,94,106,109,105,102,111,93,92,105,96,104,103,94,112,100,114,105,99,100,112,93,101,110,119,110,105,92,108,111,106,111,104,99,101,93,99,109,101,102,95,99,108,104,112,102,100,112,108,101,110,109,94,88,92,99,95,111,96,98,103,76,117,105,99,99,98,110,99,108,108,117,106,91,95,98,94,97,109,103,103,83,101,104,106,116,88,103,98,104,106,102,101,105,94,101,111,102,87,91,104,99,108,91,82,114,94,101,80,98,89,89,98,92,98,109,101,100, +435.97681,99,94,98,98,99,99,79,108,107,105,94,98,103,103,84,95,71,107,96,109,99,89,90,95,81,96,99,98,106,109,99,97,102,112,96,103,92,91,93,97,101,125,102,107,116,102,109,100,114,94,101,91,89,100,106,110,110,100,97,98,92,109,90,91,99,108,95,106,99,100,107,108,101,109,96,110,109,95,108,106,99,94,102,110,101,104,99,88,93,91,102,98,101,116,105,91,105,102,102,104,95,97,104,92,99,101,103,96,97,99,105,105,88,103,100,96,125,111,113,106,97,94,103,103,99,105,102,102,102,104,99,105,108,101,95,106,106,100,92,102,101,98,87,102,108,103,99,101,93,106,102,109,89,100,103,103,97,95,108,95,102,96,99,106,105,90,104,96,98,119,89,107,88,92,96,111,92,100,95,97,101,114,101,101,97,109,108,97,106,104,104,102,96,103,103,98,110,114,94,99,105,100,97,105,97,85,109,102,102,99,91,105,103,101,100,105,95,102,99,89,100,95,95,109,108,108,96,109,100,91,100,98,109,100,98,96,97,108,110,98,121,108,108,98,102,95,98,101,93,107,96,114,94,91,104,95,102,101,102,96,89,99,91,99,93,100,106,104,70,101,106,95,96,98,104,115,101,107,105,98,103,116,97,91,114,106,93,101,105,102,100,103,109,104,112,100,109,103,84,110,103,100,101,100,89,127,100,107,109,102,89,99,91,97,101,97,114,103,98,102,103,115,99,111,105,89,108,103,92,112,105,94,103,105,108,117,95,96,97,77,99,99,104,102,102,87,101,98,108,104,88,108,112,99,94,95,106,104,104,93,100,116,96,98,96,100,113,101,103,100,95,98,92,94,100,92,105,96,109,104,100,102,105,111,106,101,98,100,102,84,107,92,102,105,89,89,103,91,104,112,104,98,96,98,96,91,97,106,105,92,94,105,99,107,101,99,98,105,120,92,88,92,108,110,97,97,108,100,97,98,98,87,94,111,102,110,102,103,102,102,104,100,105,112,95,100,100,72,100,111,100,97,92,108,97,100,116,113,102,106,104,106,95,104,104,104,101,100,97,96,94,93,105,98,87,97,90,106,111,101,97,105,98,101,86,103,101,110,95,104,103,112,106,106,97,102,114,94,89,100,77,108,91,107,100,120,92,100,103,103,110,98,95,114,117,108,103,97,98,109,80,96,98,115,93,103,104,101,100,90,95,97,108,95,109,95,100,90,91,92,99,97,86,96,99,96,91,103,97,104,109,104,100,104,102,105,110,105,106,108,103,98,93,97,102,92,103,110,100,106,103,101,96,93,68,100,93,91,106,102,100,107,110,104,92,97,91,99,107,104,108,98,98,83,99,99,100,95,102,98,93,101,95,104,99,106,100,108,101,95,100,87,108,91,105,100,106,99,99,81,105,103,105,101,105,102,91,116,110,105,117,109,90,98,87,110,89,100,104,96,109,105,101,105,104,91,101,101,105,107,101,95,114,109,102,109,106,104,99,104,97,103,110,104,104,93,103,99,108,105,102,102,86,94,96,96,98,90,105,103,106,99,105,98,100,106,106,97,109,111,110,88,101,102,99,72,109,104,99,105,97,106,104,84,109,114,109,106,92,109,104,99,110,102,94,100,90,109,98,110,101,97,100,111,101,95,91,87,99,105,115,109,107,109,94,97,99,102,113,73,121,109,91,95,101,100,98,102,101,101,108,99,97,92,92,87,105,106,91,101,101,110,106,90,102,97,100,95,100,84,97,95,95,104,109,101,99,106,107,91,100,104,110,86,104,111,116,109,89,101,97,105,124,106,105,91,83,108,102,105,91,110,96,91,106,109,94,93,104,81,100,98,100,102,112,99,94,109,108,100,112,97,106,113,108,95,84,94,115,100,105,102,96,101,108,102,109,110,91,95,97,93,87,91,98,102,101,104,82,99,98,105,108,103,97,97,95,109,105,103,95,94,97,100,104,101,84,105,106,96,86,102,90,102,100,87,112,92,96,97,107,129,100,109,105,106,87,105,97,97,100,115,105,99,123,95,104,108,108,111,107,88,104,99,98,94,107,104,98,104,93,96,102,96,104,86,83,100,95,101,88,118,110,100,93,116,90,102,74,101,104,120,101,93,91,99,94,97,105,100,95,91,94,99,93,99,75,104,109,113,102,98,103,111,92,95,100,103,99,100,108,95,104,105,92,95,104,104,102,104,101,87,88,108,97,109,102,95,93,99,93,99,97,103,103,100,106,108,79,80,102,105,90,83,108,110,95,105,98,102,93,89,95,97,104,97,109,92,98,96,89,92,97,109,92,100,98,134,137,101,91,105,97,92,97,90,109,77,100,88,91,95,101,106,103,98,112,109,104,104,98,104,85,98,82,100,98,97,87,98,91,104,94,101,96,100,96,98,99,86,91,104,105,108,112,85,93,100,103,98,81,104,103,98,98,105,102,106,96,93,105,106,85,105,110,99,98,107,107,95,93,110,107,104,96,109,96,101,108,102,111,88,105,91,98,106,95,106,97,90,102,106,104,109,106,104,106,99,97,99,109,102,97,93,108,103,96,107,105,90,108,102,99,97,115,102,105,107,103,102,105,74,92,98,81,90,89,89,119,95,111,99,95,98,105,117,117,106,98,104,111,102,120,97,108,115,96,102,108,94,91,92,95,97,95,103,93,100,99,113,106,102,108,107,115,80,103,86,101,100,109,100,111,107,105,102,99,94,94,103,108,98,100,105,94,102,106,100,100,97,97,107,108,123,100,110,99,106,91,93,102,90,103,104,97,113,102,100,112,94,90,105,95,109,83,97,102,101,106,107,83,106,116,94,95,106,103,109,95,105,106,97,113,100,95,102,89,121,88,88,103,104,96,100,95,98,102,102,113,108,104,85,103,112,107,94,102,116,113,97,98,113,114,106,98,107,105,108,106,106,91,110,101,104,113,101,104,108,113,103,110,110,102,105,108,112,102,105,103,96,100,93,96,108,99,103,95,116,113,105,93,91,91,83,102,104,111,95,102,103,94,98,101,113,118,109,100,89,94,108,98,112,102,101,85,91,112,103,108,112,110,99,79,94,103,117,91,107,102,89,106,104,94,96,106,99,111,93,115,98,107,105,102,101,110,93,97,97,104,101,113,102,109,127,106,90,110,97,120,114,103,96,103,101,94,101,109,98,105,101,105,104,109,98,95,104,98,112,103,103,101,101,110,102,96,109,109,101,92,115,98,107,95,99,105,90,107,97,106,113,96,94,103,103,104,108,107,104,104,109,105,110,113,104,100,111,101,106,101,95,91,113,104,116,107,94,102,101,104,103,110,104,106,139,111,116,106,92,98,101,90,114,101,97,108,112,104,80,106,94,107,109,103,112,91,108,108,95,102,91,101,83,96,115,112,80,99,99,113,101,101,102,109,110,95,100,101,90,102,96,106,95,101,92,104,113,95,96,110,98,127,104,86,102,102,101,96,101,104,103,103,119,93,94,87,102,103,101,107,94,102,95,118,104,112,104,117,98,90,112,109,103,102,100,96,109,106,111,92,113,101,101,98,103,98,109,99,100,106,103,89,102,102,109,99,93,101,103,105,101,96,111,108,95,103,103,100,104,106,96,93,104,100,98,108,96,86,102,99,109,96,95,102,101,111,91,113,86,104,103,101,102,95,111,102,99,104,110,113,98,105,106,88,105,105,120,103,104,103,96,103,98,91,102,105,122,99,117,99,90,99,93,91,101,110,103,95,105,97,100,106,83,99,97,109,108,101,113,107,106,101,94,96,109,94,104,106,108,95,111,109,111,116,102,106,107,107,100,90,108,104,96,100,107,94,90,104,100,134,100,116,103,98,112,101,116,104,111,103,94,108,107,94,104,109,102,115,100,111,91,100,96,108,101,104,108,96,93,96,103,102,111,101,95,106,91,97,80,112,96,114,93,91,104,96,106,101,100,93,117,112,106,98,105,88,104,104,98,109,104,110,95,104,102,74,98,96,83,88,99,98,99,98,113,106,102,95,101,94,95,108,86,97,96,98,100,101,91,110,107,108,104,95,88,104,98,100,107,105,105,97,101,103,79,101,106,96,95,107,107,88,94,109,104,101,107,105,106,85,101,104,97,101,109,104,95,97,99,109,94,97,100,92,111,99,107,93,106,109,95,102,99,104,93,100,96,120,96,96,101,115,93,116,88,98,116,109,102,102,101,115,103,104,101,101,95,96,85,100,96,99,98,105,97,109,99,104,100,109,104,108,101,99,95,101,92,101,101,105,109,102,98,110,93,101,101,102,111,106,104,94,98,109,109,105,102,95,102,113,103,111,100,109,102,98,87,107,105,110,100,109,72,107,106,96,97,109,66,104,99,100,105,109,86,94,104,94,106,102,115,93,99,103,103,107,92,105,105,104,101,97,104,103,103,103,107,95,80,97,104,89,84,98,103,90,98,92,103,101,101,98,109,100,102,76,101,97,102,103,98,96,87,106,93,98,111,107,96,102,101,101,95,108,96,100,103,105,99,111,97,116,102,100,99,96,108,104,103,94,105,113,102,104,101,103,97,67,100,106,109,103,111,91,93,98,103,101,116,95,96,115,92,95,103,97,106,106,108,96,101,94,96,97,99,94,115,103,98,109,91,107,102,103,106,102,104,105,102,93,112,87,100,107,102,105,93,87,97,69,87,104,86,100,97,102,105,95,104,113,107,103,104,113,108,95,92,102,92,111,92,94,104,84,99,104,99,95,104,93,103,97,103,89,95,95,94,105,80,104,98,95,95,102,113,109,103,105,92,101,95,94,94,112,92,119,109,100,92,94,85,117,94,96,99,102,95,106,95,100,98,92,89,92,98,102,95,90,104,106,87,91,99,105,88,105,107,115,104,109,100,113,86,102,94,101,86,96,87,89,91, +436.11713,95,109,92,94,93,108,104,98,97,104,77,103,98,111,106,106,66,97,107,96,102,103,96,111,108,94,110,112,98,94,83,101,105,103,97,105,118,98,106,97,106,98,92,109,103,107,110,101,111,104,102,116,105,92,96,91,99,103,103,100,104,102,114,108,105,118,87,107,106,90,119,98,98,99,85,115,90,97,98,108,101,99,109,101,99,94,95,106,100,103,91,113,97,107,89,95,89,98,106,101,99,115,104,108,92,95,90,105,99,113,105,100,103,98,97,102,109,109,97,95,91,88,105,107,107,117,108,103,120,101,99,104,117,108,108,99,94,104,88,107,125,115,103,99,93,100,111,104,113,107,99,114,119,101,100,96,95,100,107,104,102,107,113,102,108,100,109,92,105,97,99,95,102,97,105,102,110,99,108,86,108,104,102,118,103,73,105,105,108,97,94,94,114,95,94,94,111,100,100,104,102,87,106,98,91,101,107,94,102,99,86,89,111,94,107,97,86,103,91,102,100,104,96,107,100,112,105,106,103,106,104,116,98,119,100,103,107,98,95,97,106,93,115,100,96,100,103,109,111,107,102,99,105,102,82,86,100,101,91,110,95,97,95,109,94,98,98,91,102,107,100,109,96,102,98,104,96,105,107,101,100,109,90,106,112,95,88,95,110,120,88,97,108,111,100,103,85,121,100,95,104,86,100,80,91,103,103,96,91,106,94,107,83,106,103,113,112,105,101,88,107,94,109,103,94,94,101,82,99,109,104,96,106,117,107,110,94,102,113,109,99,114,94,110,102,106,104,84,104,103,106,108,106,105,104,105,103,99,108,88,98,92,90,100,92,90,107,91,102,102,99,93,114,101,95,109,102,116,103,103,100,101,95,114,86,86,98,108,111,79,108,102,97,102,105,97,109,103,108,95,107,80,98,100,101,105,101,116,106,99,96,116,115,108,116,102,103,100,104,92,107,115,104,113,101,105,85,93,89,120,104,96,97,99,108,97,101,111,100,111,110,106,104,108,96,101,103,100,112,101,98,93,105,117,115,92,101,95,100,99,119,104,99,94,85,100,108,109,105,105,113,111,102,101,97,98,97,106,93,104,96,115,105,77,104,104,106,138,100,109,120,110,99,117,92,98,96,104,113,96,120,101,107,110,107,103,101,107,91,108,104,93,94,100,89,111,95,102,94,94,109,102,106,105,91,110,101,107,107,98,110,93,90,100,104,114,94,96,100,104,115,107,93,115,109,105,100,109,99,119,113,108,110,109,100,107,113,104,110,102,99,98,105,107,100,106,104,107,105,99,95,92,95,97,105,106,110,68,99,81,99,100,111,105,103,100,114,103,90,116,112,94,107,107,109,102,101,102,102,108,102,129,117,95,84,102,103,99,105,106,110,103,103,112,102,90,102,103,100,104,108,100,102,98,115,113,101,106,106,114,100,97,92,117,92,99,102,101,106,100,102,105,82,108,124,102,109,104,86,115,94,117,109,101,102,104,104,106,99,99,110,109,112,92,93,102,102,99,102,97,108,103,100,110,94,111,98,106,99,102,102,108,100,80,98,100,95,102,96,96,105,115,96,113,104,100,94,99,120,95,100,96,100,97,100,98,117,110,103,99,112,112,101,103,96,102,99,96,90,103,95,107,125,96,100,103,104,106,107,102,108,110,94,109,91,102,108,98,98,104,102,104,108,101,100,100,110,107,113,98,113,87,88,101,102,99,110,112,111,106,78,99,95,109,110,108,90,110,101,100,101,95,107,111,93,113,106,117,101,100,108,96,93,102,99,104,110,109,101,137,114,96,98,101,104,110,112,101,105,105,96,104,98,105,102,99,97,111,100,113,115,109,117,84,96,105,130,107,114,101,104,106,109,103,91,96,109,87,112,93,99,106,108,105,101,104,103,103,113,109,94,106,100,96,104,96,110,100,90,96,108,91,101,104,105,95,99,107,98,100,96,106,90,109,109,96,96,105,112,108,105,104,86,110,92,100,110,101,96,99,94,109,104,104,106,103,110,98,111,91,105,88,103,99,101,97,105,108,103,103,108,98,113,98,108,102,109,98,95,104,95,92,104,110,114,98,104,103,79,106,108,106,115,118,109,99,110,93,97,108,106,96,118,112,107,110,103,98,101,106,100,102,79,106,103,96,112,104,104,111,98,98,110,111,105,107,102,107,81,93,109,115,105,108,113,118,87,98,107,105,100,107,113,94,94,93,110,105,100,100,103,110,98,96,108,96,102,107,104,98,108,81,95,103,105,101,88,101,103,107,100,96,95,112,100,97,96,92,99,95,88,114,98,113,106,98,104,102,96,101,110,84,113,104,94,104,105,101,98,102,96,104,105,103,115,90,103,107,101,99,106,106,99,102,94,94,102,101,91,92,105,119,103,102,90,112,100,107,121,75,99,101,119,82,84,94,104,99,116,97,95,115,94,115,109,104,107,102,109,96,94,102,134,102,115,112,97,109,108,99,102,98,104,105,94,100,93,93,109,99,97,94,98,94,104,92,89,104,96,106,83,111,109,109,88,96,98,102,91,108,104,108,99,104,90,109,107,113,119,106,102,116,100,110,113,89,96,103,99,112,113,90,93,121,100,100,114,109,102,98,113,110,97,106,111,107,105,99,103,112,107,95,108,92,92,105,110,109,97,105,97,98,110,113,92,87,100,95,113,94,111,102,105,110,105,111,96,112,110,106,101,84,102,105,100,131,115,101,101,110,102,128,104,102,105,111,105,102,102,96,99,101,93,108,97,106,96,107,108,111,109,110,120,111,108,122,101,109,120,109,97,100,102,107,100,103,99,105,102,107,105,94,109,101,106,103,100,106,96,108,108,88,104,109,106,103,102,101,96,103,108,96,112,108,113,98,98,95,102,116,104,98,107,103,112,104,113,105,95,111,96,97,104,101,114,102,103,98,107,98,91,109,85,107,106,109,108,102,108,109,103,99,100,99,102,90,97,107,106,108,101,113,109,96,99,108,101,118,99,104,118,117,99,106,112,109,90,103,95,100,100,101,110,108,107,107,104,108,114,107,101,117,104,110,97,94,99,105,95,105,99,99,104,101,105,101,105,98,103,93,101,105,106,109,104,95,96,98,104,96,101,100,104,112,108,102,110,117,107,93,95,109,103,103,110,106,96,106,109,98,97,96,109,108,98,97,94,96,110,105,116,108,101,109,101,110,106,110,87,98,101,105,99,100,99,91,113,111,101,109,103,97,95,100,108,97,112,108,107,113,116,101,112,112,108,99,104,104,107,100,103,100,111,97,105,104,94,100,106,103,120,101,103,116,96,101,85,101,108,96,87,95,105,100,101,112,100,105,106,109,88,99,94,99,103,112,104,103,113,92,93,103,108,102,99,106,108,88,104,102,108,98,111,109,101,109,114,108,111,107,89,103,102,105,101,101,99,84,103,107,101,108,110,103,100,100,87,107,105,107,103,113,99,100,98,115,104,100,103,92,108,108,107,101,98,112,94,106,85,102,112,95,97,95,107,102,100,103,113,102,100,111,108,105,105,96,85,114,109,99,101,112,104,100,98,112,108,104,105,118,109,98,101,111,91,109,112,99,106,99,97,97,94,106,109,107,99,102,93,105,62,102,107,102,105,106,107,95,101,102,101,98,99,106,107,91,99,90,101,104,105,93,99,104,100,111,99,94,107,93,96,109,113,103,103,95,113,101,101,107,101,109,104,112,102,100,107,109,115,98,96,99,91,101,108,108,112,87,106,94,104,102,110,99,109,116,109,118,96,103,103,102,99,105,98,92,103,94,103,110,108,106,96,100,95,109,107,109,98,99,107,104,105,98,103,98,98,102,98,113,99,99,97,100,104,102,101,101,96,100,109,113,106,107,97,100,100,94,105,102,99,102,80,98,89,96,103,99,98,99,122,97,105,94,102,106,102,99,109,98,106,92,87,100,99,103,98,105,112,117,102,103,106,127,106,111,98,101,128,109,105,102,109,103,112,111,88,102,106,109,111,109,92,115,108,102,90,110,112,106,105,93,106,109,107,105,118,94,108,98,98,106,105,105,124,108,102,107,113,94,115,95,111,92,113,93,108,100,105,100,106,126,101,105,98,109,101,107,87,104,117,110,99,105,108,117,110,107,111,95,114,101,97,109,93,95,106,109,103,108,94,91,102,99,101,94,111,105,97,97,103,103,100,107,109,113,93,109,110,102,105,104,102,108,102,103,102,111,97,108,111,120,100,99,121,92,108,95,110,104,100,111,92,93,99,100,98,109,94,128,108,98,103,99,102,101,102,95,98,111,100,103,104,95,98,95,93,104,100,109,97,111,104,102,99,109,100,111,107,102,105,105,97,112,98,100,88,105,101,113,102,104,101,108,102,108,109,103,110,106,109,101,92,114,98,109,117,109,107,108,96,94,96,120,112,122,93,106,102,107,116,101,104,97,91,97,93,112,110,112,95,100,93,105,72,100,120,112,104,108,101,98,109,106,94,111,101,111,101,92,92,88,109,109,93,111,113,104,101,98,99,98,107,95,101,108,108,103,105,106,109,125,107,100,89,106,93,105,97,84,97,95,109,94,97,111,103,94,97,101,107,96,107,109,112,101,105,103,106,98,97,100,100,99,100,98,106,102,99,106,105,104,105,87,98,96,97,111,110,100,109,100,98,103,107,117,99,93,107,107,95,98,103,103,112,102,102,72,101,91,106,113,101,108,95,96,101,88,96,100,100,99,103,97,110,83,100,95,98,110,103,103,103,104,101,86,98,104,107,96,105,98,89,101,101,110,96,99,94,103,100,99,98,97,111,130,99,93,98,84,109,93,81,105,105,98,106,104,105,104,113,95,103,105,96,90,125,112,108,94,91,106,110,84,95,79,93,95,106,86,107,121,104,114,87,105,109,92,108,99, +436.25745,112,95,89,79,84,96,121,111,74,108,86,88,105,105,106,110,83,108,98,91,104,97,113,99,98,114,101,106,98,105,104,98,102,98,109,99,101,109,95,91,92,110,107,100,98,100,91,94,110,100,104,97,102,104,101,101,94,93,105,86,99,101,95,102,98,104,106,88,106,94,98,110,98,98,96,101,100,97,104,97,96,100,104,95,105,91,88,102,99,96,98,108,102,79,96,96,110,106,94,108,94,113,95,87,100,99,102,103,104,97,102,91,99,96,95,93,101,95,102,99,100,95,112,107,95,102,96,85,109,108,98,102,96,114,104,90,95,107,97,108,91,101,88,108,88,141,115,101,97,101,95,98,104,102,95,101,103,84,102,103,95,91,104,99,111,101,103,96,111,108,97,100,102,94,102,105,109,96,102,97,96,106,101,97,98,95,100,101,104,100,97,97,91,107,107,114,96,98,95,94,98,97,99,112,96,99,112,100,125,103,96,110,113,95,101,106,108,109,89,101,91,100,98,107,94,121,107,104,105,112,105,101,95,105,112,96,103,108,114,102,102,90,118,107,89,106,100,103,112,106,110,95,100,107,98,102,100,115,105,92,99,113,103,94,102,106,107,99,98,91,102,87,101,96,103,105,93,109,107,110,105,101,104,109,102,94,105,110,97,107,96,110,105,115,91,94,98,89,102,113,92,102,95,109,107,112,112,98,105,103,92,96,114,99,117,91,95,106,103,94,113,101,98,109,103,106,93,96,110,103,94,94,104,102,101,100,101,100,101,107,88,104,92,93,94,108,107,98,110,100,98,106,105,104,109,99,100,101,100,97,104,119,107,106,75,91,94,108,105,109,92,105,111,97,110,105,107,99,104,100,103,107,99,102,97,104,108,96,130,105,112,90,100,103,99,95,103,91,108,121,102,105,102,114,111,101,92,107,104,101,95,105,110,98,96,95,122,91,96,98,105,104,99,107,102,93,90,98,94,108,97,106,105,103,101,102,99,127,109,105,103,100,109,102,95,101,96,87,109,96,96,105,114,106,110,107,92,88,109,96,103,92,117,98,100,112,107,90,101,98,100,107,99,110,95,102,98,104,98,104,106,104,112,113,96,109,105,103,106,101,110,99,100,110,105,100,104,116,107,104,116,100,102,120,108,100,97,113,107,101,91,98,99,89,103,99,99,93,95,92,104,102,107,89,97,99,87,98,93,97,100,100,101,104,86,105,105,94,107,115,105,99,90,90,127,97,105,102,91,89,104,104,99,108,91,105,96,103,101,106,104,109,101,109,98,95,92,100,76,109,101,106,99,80,100,101,102,100,98,104,110,106,96,106,100,84,106,105,103,108,118,103,106,96,126,94,95,104,96,100,104,111,107,100,98,83,99,104,96,104,100,87,105,108,108,95,104,114,99,98,98,108,85,89,106,110,90,104,116,104,96,105,97,103,92,98,95,102,106,98,107,99,100,109,100,99,104,110,98,113,96,107,103,94,101,110,100,95,106,104,108,99,114,100,96,96,104,102,103,100,108,97,97,110,107,102,107,102,99,94,110,105,106,89,97,98,98,110,88,96,109,98,98,98,95,96,110,105,99,91,111,105,96,110,102,101,100,106,90,104,91,105,101,80,103,98,104,112,101,109,102,118,96,106,102,104,106,101,93,103,102,99,100,100,97,100,95,99,111,109,103,89,106,104,93,105,99,100,97,103,108,96,106,100,102,93,105,98,104,100,109,101,103,110,83,106,91,99,103,97,91,96,107,98,86,95,95,95,98,95,107,118,104,105,107,114,117,98,109,94,105,105,101,98,104,103,96,97,102,105,102,99,91,109,99,108,104,117,103,103,95,101,91,107,104,119,109,102,109,102,92,98,96,103,119,78,104,105,113,101,108,112,105,103,102,87,121,87,107,100,98,105,105,88,90,109,81,88,103,98,90,93,96,101,110,106,102,103,91,106,90,96,104,96,110,108,93,103,92,100,99,118,106,103,101,92,99,93,101,104,94,101,99,104,103,97,99,115,101,102,98,95,91,104,96,82,97,100,102,107,103,94,100,104,102,109,105,101,102,105,94,102,105,102,107,96,106,98,91,99,102,106,106,109,101,95,103,104,109,100,101,114,103,98,92,105,97,84,115,101,103,109,113,108,101,108,110,86,108,96,100,97,100,109,121,98,126,98,98,105,110,110,111,102,108,97,96,118,99,114,107,108,97,109,83,91,102,97,97,91,99,111,103,94,99,99,92,105,103,102,93,114,101,100,99,98,104,106,99,107,91,106,96,102,104,102,106,121,101,115,94,98,109,87,102,97,109,94,105,101,95,96,121,92,103,110,103,93,94,76,104,105,100,99,98,106,108,103,108,109,106,102,100,87,110,102,96,109,105,104,92,100,98,110,103,109,90,100,95,104,101,115,94,111,93,102,105,103,106,107,103,114,104,100,116,104,107,104,86,101,104,111,92,106,114,106,105,94,104,105,107,110,103,106,107,118,103,93,105,93,101,122,103,89,97,107,83,96,104,105,104,119,108,106,98,87,98,111,91,97,112,110,96,109,102,106,102,100,100,100,91,102,111,87,100,99,104,104,103,101,111,101,104,101,83,94,113,103,100,92,104,110,111,100,108,99,95,103,105,106,103,104,106,87,85,110,90,96,115,106,107,91,113,109,99,95,102,98,103,104,101,101,98,108,104,107,95,106,97,99,97,105,105,107,93,105,109,92,104,105,111,102,120,109,113,112,95,108,107,121,98,109,95,120,102,99,131,112,138,92,125,111,98,93,108,99,104,103,101,109,100,92,95,103,105,101,93,101,107,106,106,110,106,99,111,93,102,103,111,97,117,102,96,102,97,112,104,102,103,104,101,103,94,117,94,93,122,108,99,111,108,104,103,99,111,101,110,100,97,108,109,108,101,101,96,105,104,103,109,105,101,100,107,102,104,68,72,102,108,109,109,109,108,110,94,103,98,107,117,99,92,112,104,98,98,110,103,93,78,104,110,102,109,113,100,105,100,85,103,103,106,106,99,111,106,114,102,104,98,106,104,113,97,105,106,107,101,105,120,101,110,107,92,103,98,109,99,98,112,105,96,105,110,109,109,98,103,115,123,95,91,107,106,112,111,95,108,107,96,99,102,79,103,103,105,96,87,101,97,93,108,102,108,108,117,104,107,106,107,107,111,100,97,107,105,97,111,105,104,104,96,103,109,95,99,99,105,110,99,109,108,98,101,117,91,112,106,104,102,104,102,105,104,127,104,121,99,113,102,100,98,105,103,90,94,104,98,119,92,100,106,90,100,101,98,105,102,99,100,102,98,112,89,116,109,97,96,94,104,93,109,106,104,100,113,105,100,95,99,99,93,107,107,102,108,98,86,105,110,69,106,113,85,106,101,91,101,110,98,102,89,109,98,100,102,103,106,97,95,103,86,100,102,113,90,93,102,100,89,91,96,103,103,87,90,101,98,96,98,94,111,100,108,96,109,99,114,102,101,95,103,101,103,108,93,104,99,103,109,98,105,96,108,101,111,108,104,97,103,106,112,105,115,101,95,110,109,100,98,105,119,107,113,102,98,96,95,108,101,100,104,100,102,114,103,95,98,100,101,105,102,91,105,93,101,103,102,92,102,97,95,94,104,107,95,103,100,102,104,96,98,111,106,105,117,102,104,100,91,90,101,103,85,100,94,106,122,92,111,102,99,116,103,105,124,97,99,100,102,101,89,99,113,100,99,112,105,110,101,115,105,96,94,100,100,107,105,92,116,98,101,100,106,108,89,123,103,105,102,98,96,103,97,106,102,103,102,113,99,107,110,101,102,92,90,107,95,120,97,116,94,93,87,123,92,106,106,91,97,91,96,106,100,91,107,100,95,76,98,110,102,109,97,113,96,91,99,95,100,96,98,97,95,108,101,107,99,108,99,95,106,105,106,111,111,97,107,105,106,105,103,115,98,98,74,97,107,102,94,99,111,110,105,97,95,92,114,99,107,115,114,116,109,91,105,103,93,103,98,102,106,103,97,105,105,103,108,113,104,105,102,101,99,88,102,112,107,108,108,100,100,112,97,100,101,108,114,99,100,95,105,110,108,110,100,92,100,99,105,96,104,105,101,97,104,97,103,108,100,95,105,88,103,107,100,113,97,99,100,108,108,100,94,101,104,114,109,102,107,105,107,95,114,109,109,99,104,106,116,97,103,97,95,100,113,95,106,108,100,104,108,95,99,114,91,115,94,107,103,97,99,100,107,102,105,83,109,113,108,103,101,105,103,105,94,95,103,102,106,112,101,107,99,105,105,109,106,83,102,113,94,99,113,106,108,100,113,107,100,105,101,112,104,109,91,100,110,97,98,91,107,105,105,100,87,122,116,107,99,105,99,103,105,99,103,102,107,113,101,109,87,96,98,107,111,106,101,103,111,95,101,105,113,99,102,96,89,104,105,102,101,100,96,117,109,70,97,92,110,101,100,97,91,100,112,101,96,98,110,120,91,103,81,107,97,91,104,105,104,92,120,100,107,93,95,108,101,104,103,86,95,99,109,104,95,113,104,102,105,92,112,101,106,91,97,92,99,100,105,97,103,94,99,104,112,94,111,101,104,83,102,99,101,113,101,102,104,91,93,97,100,110,102,100,99,101,112,111,102,97,95,98,101,93,95,105,112,102,101,100,100,104,101,105,98,99,103,102,96,104,103,107,90,96,112,87,101,95,96,100,95,112,95,110,111,100,106,98,94,97,105,92,97,103,98,97,99,110,90,94,99,104,103,103,116,102,103,103,88,96,113,96,113,104,99,97,95,92,92,90,110,100,96,98,98,105,101,103,108,110,96,99,105,95,95,110,84,80,119,99,88,99,108,105,105,98,97,108,96,81,110,89,97,102,102,110,91,97,94,103, +436.39777,93,95,79,100,85,99,104,86,91,98,82,91,105,108,103,102,93,97,112,99,97,106,84,98,96,104,95,102,103,85,93,94,104,107,103,102,106,110,105,112,92,104,101,106,91,109,94,108,100,99,99,111,98,98,105,118,108,94,94,103,108,108,95,100,86,120,101,109,91,100,105,98,94,101,105,96,98,104,116,105,106,111,93,109,104,98,93,107,89,92,101,113,115,102,85,95,89,109,94,87,108,95,106,98,91,97,98,100,92,98,104,95,97,103,102,94,98,105,111,102,93,98,90,98,104,102,116,97,111,96,100,103,94,109,99,114,89,93,98,106,92,109,109,92,96,102,107,101,95,104,99,101,109,94,80,86,91,98,102,109,94,102,103,103,107,106,111,101,77,103,108,109,95,97,106,99,99,102,102,94,96,99,98,100,95,91,88,97,113,88,102,113,109,106,98,100,105,103,96,103,105,92,102,106,101,103,91,104,106,115,92,95,99,98,98,105,101,110,91,93,109,107,103,105,95,106,89,103,96,91,95,97,106,102,104,104,107,104,103,108,109,100,116,102,112,93,102,105,99,105,102,104,93,111,104,106,84,107,104,98,110,122,102,97,93,116,103,102,103,92,108,117,94,109,97,115,104,107,102,102,90,107,101,97,102,96,97,108,112,108,105,104,79,107,98,90,99,101,101,87,96,114,109,98,104,103,108,96,97,114,96,106,96,106,110,100,100,110,105,97,99,93,101,105,105,104,109,101,93,108,109,95,109,105,105,103,103,102,90,117,107,80,106,97,98,101,109,108,104,106,108,104,98,99,102,109,95,102,104,116,101,105,94,96,96,106,93,113,100,103,94,101,100,104,100,95,100,95,100,103,115,97,101,111,109,100,94,106,98,88,102,91,109,92,100,105,97,106,106,95,98,108,121,92,95,102,100,112,103,108,106,90,108,91,97,107,95,106,101,77,95,101,106,97,94,96,103,100,103,115,88,101,99,117,104,112,110,105,104,89,105,96,99,95,100,95,93,106,98,108,101,106,111,103,99,110,98,103,105,96,103,107,87,102,93,100,108,104,101,111,107,105,101,99,125,101,91,110,113,105,96,108,110,103,102,94,106,109,116,101,106,114,99,113,98,103,102,109,101,97,105,98,100,115,99,97,103,92,99,109,110,100,99,121,109,94,103,117,105,96,103,101,103,104,109,97,102,96,95,105,104,101,103,110,93,106,95,92,98,106,97,84,94,105,103,100,103,102,114,107,100,107,114,109,123,107,105,103,108,118,117,96,96,95,119,104,94,94,96,96,98,95,97,85,111,102,94,92,98,101,91,95,104,105,96,102,106,112,110,97,109,110,89,105,110,101,106,103,106,102,99,110,101,94,98,108,106,102,104,108,114,107,99,103,107,83,104,95,102,103,105,103,100,89,99,102,94,100,92,108,92,110,107,99,100,104,98,99,96,96,107,97,100,105,90,116,111,93,106,110,113,104,109,106,119,104,105,100,117,101,111,110,104,99,106,101,106,106,113,99,112,97,104,99,105,104,98,114,108,98,108,113,115,94,96,100,100,92,100,87,95,99,107,98,87,87,99,102,101,95,89,82,95,102,97,112,109,98,95,108,102,104,121,96,97,96,105,99,92,105,105,109,117,113,83,100,100,105,112,94,94,108,86,67,101,98,99,96,107,103,104,99,108,102,99,116,98,117,91,103,107,104,100,112,98,109,85,110,106,100,102,92,87,109,100,91,82,105,106,94,103,99,120,97,93,105,101,102,108,107,106,113,98,107,102,104,94,115,92,108,110,107,102,113,101,96,108,101,104,96,97,106,96,102,107,103,104,100,105,71,110,107,106,107,99,91,126,100,96,97,105,97,111,109,120,102,113,104,109,113,99,96,103,103,112,99,99,100,112,99,105,99,103,109,105,96,110,91,102,108,117,100,101,107,90,107,92,100,105,106,99,113,117,121,104,114,98,99,109,109,101,105,107,97,95,103,102,100,110,100,95,105,96,99,102,80,113,107,98,85,105,112,101,104,102,91,100,96,106,115,106,95,89,99,114,108,92,110,95,96,88,108,98,105,107,112,92,120,99,98,90,105,99,100,102,98,106,103,101,100,102,96,92,110,90,97,102,95,106,111,113,106,98,100,96,99,107,105,99,102,107,99,111,100,106,107,99,109,100,105,114,111,99,101,96,95,103,96,112,101,100,100,110,94,97,110,110,96,95,98,113,105,95,86,100,98,102,102,109,95,93,94,120,102,103,103,100,98,98,111,106,97,110,99,105,105,82,104,91,99,95,101,102,112,96,109,121,103,101,103,95,108,109,97,104,110,101,116,112,100,98,120,104,90,101,90,97,107,101,100,104,94,97,98,110,102,92,100,103,95,106,107,104,92,97,101,99,102,76,102,111,104,104,106,93,99,93,101,100,101,97,112,95,95,101,96,101,94,103,95,105,105,90,107,105,110,93,98,110,104,108,101,103,106,111,99,101,104,106,104,99,108,109,113,110,115,113,112,105,82,107,113,107,99,99,95,98,100,107,108,102,108,101,104,87,112,99,104,106,111,113,100,104,98,108,111,116,108,107,100,105,104,105,110,111,112,98,105,113,117,106,98,113,105,117,88,99,99,98,112,105,105,100,97,110,121,102,85,105,85,99,107,102,107,99,109,107,98,74,103,99,112,87,113,109,101,113,108,110,115,98,112,112,107,106,80,109,93,106,106,117,104,114,104,107,112,92,109,96,114,104,110,101,114,110,105,108,110,101,98,109,116,85,105,108,101,96,113,99,109,96,94,103,107,97,102,95,76,103,106,109,102,110,98,108,102,100,101,112,106,108,110,101,107,107,108,99,91,76,102,100,98,106,102,105,109,101,99,105,106,105,109,106,103,92,106,126,99,93,116,103,99,106,105,108,105,111,113,109,102,104,104,101,103,110,104,103,94,106,118,96,110,85,114,108,114,108,105,100,93,101,103,103,100,104,107,106,108,95,108,110,114,86,116,102,112,108,94,104,95,99,88,99,105,98,98,110,82,101,126,105,107,111,110,112,111,116,102,101,106,102,97,99,95,98,100,102,92,95,113,106,97,119,94,107,106,105,111,111,95,105,105,119,113,102,101,105,101,114,107,94,113,105,113,85,106,97,99,98,99,113,104,95,117,94,116,104,102,106,101,108,103,104,113,96,104,108,101,106,100,99,101,103,105,99,111,96,114,107,111,104,103,101,100,103,107,108,104,102,109,99,96,103,111,120,111,103,105,106,103,106,97,100,112,102,108,105,87,137,99,107,87,107,98,90,99,107,105,95,97,83,109,99,102,99,117,98,103,105,101,100,102,120,99,113,106,104,107,106,106,106,111,106,101,102,98,100,101,95,108,92,97,99,107,100,108,97,104,102,109,91,124,101,108,100,98,110,103,103,99,95,104,90,104,91,117,110,104,103,104,112,98,110,106,96,104,118,105,100,95,109,98,97,98,99,107,108,102,114,100,107,109,123,118,102,96,107,107,104,98,102,106,99,108,113,105,109,101,105,94,103,91,98,95,99,109,97,99,109,106,109,103,98,103,109,104,106,97,96,93,105,107,94,106,105,113,85,95,122,109,108,101,106,104,98,115,100,111,119,107,96,100,107,102,94,99,112,106,109,104,105,108,102,104,101,98,98,103,99,115,87,104,110,103,91,105,116,102,105,96,111,95,111,97,94,107,103,102,96,97,109,109,97,97,103,98,92,105,97,105,106,105,98,86,107,99,101,113,100,110,106,91,106,101,103,120,92,91,103,112,110,113,87,109,108,110,99,99,103,100,104,100,113,95,108,110,101,93,103,104,99,99,104,99,106,106,99,105,98,105,110,108,95,105,107,108,96,106,102,102,99,104,114,102,99,111,117,103,91,95,100,98,111,114,114,104,101,98,108,107,102,102,104,109,117,110,105,101,100,101,99,99,104,110,97,106,102,78,91,103,103,105,102,93,113,113,107,98,108,90,106,98,95,107,111,103,104,103,105,120,116,100,94,103,96,93,103,95,109,106,103,101,101,107,108,111,108,114,107,98,111,110,95,113,103,105,109,104,97,115,121,112,102,114,113,102,95,98,104,102,107,114,98,103,110,108,99,100,98,103,100,101,105,107,102,102,94,105,103,120,93,108,97,83,112,107,101,106,102,108,100,102,121,110,110,102,104,111,113,101,107,110,117,106,95,114,100,96,94,100,105,111,99,102,98,112,103,101,96,101,117,100,104,113,108,110,100,108,105,107,110,91,103,99,100,106,103,87,99,109,73,95,100,101,103,91,103,88,94,110,103,103,98,107,109,93,99,92,98,103,98,100,91,102,119,98,95,95,100,105,99,114,102,120,107,117,106,106,107,102,111,113,111,107,116,99,99,112,103,93,89,91,99,104,102,115,99,97,100,96,103,108,102,94,110,108,95,97,105,106,105,108,100,103,100,104,95,101,100,102,92,95,105,103,100,101,112,112,98,98,87,107,102,113,100,108,107,99,98,90,105,99,106,100,69,109,110,109,103,102,100,115,97,99,90,102,97,98,103,101,96,94,115,109,106,113,102,108,99,101,101,92,114,113,105,102,106,104,107,113,98,92,104,103,96,101,99,93,95,104,107,97,98,115,101,103,104,105,110,105,107,90,96,93,109,112,121,105,116,99,100,99,97,91,98,100,111,106,104,104,109,106,108,109,97,102,99,101,91,99,102,110,108,104,102,102,102,103,98,98,114,104,99,105,102,119,92,94,94,119,110,106,94,101,108,93,99,99,92,99,104,103,104,72,90,90,103,100,99,95,109,102,97,100,111,94,105,91,108,98,103,98,95,105,103,113,99,107,94,96,104,104,112,102,100,109,98,104,111,83,112,103,110,112,105,101,107,108,114,101, +436.53809,65,96,104,95,102,95,101,91,87,103,102,106,96,108,101,102,97,98,102,99,98,107,100,95,98,106,111,90,93,95,74,121,106,91,112,92,104,100,101,103,105,109,112,114,105,107,95,122,82,106,106,100,94,91,117,100,98,92,109,95,104,101,107,98,118,101,93,98,99,106,105,94,99,103,102,105,105,96,97,92,95,83,90,100,104,100,98,85,101,91,105,102,105,83,102,102,103,91,98,98,106,100,99,99,94,97,94,92,95,104,110,104,104,94,107,93,92,109,103,99,98,99,99,103,115,106,102,91,113,91,94,95,105,115,102,98,109,105,105,97,92,104,102,105,97,109,105,92,88,103,101,103,102,94,99,108,101,93,98,107,99,103,118,101,111,92,109,98,109,98,100,110,97,91,98,99,103,102,102,105,99,85,100,103,107,97,79,107,103,99,105,103,104,96,88,113,106,105,104,99,101,104,95,103,94,80,94,107,100,120,95,105,97,108,112,113,102,97,95,103,108,106,105,113,95,109,109,99,108,102,104,105,104,100,114,105,112,115,113,90,101,98,106,103,100,101,95,107,110,101,110,92,90,112,106,110,95,108,101,101,103,100,99,111,99,94,105,96,91,100,106,108,104,90,100,99,101,104,100,98,88,107,98,84,110,106,119,102,97,109,98,94,107,107,104,98,109,108,105,99,106,103,101,104,89,103,106,118,87,116,91,110,91,100,92,100,112,98,96,111,95,99,109,95,104,109,97,82,107,100,103,97,102,105,91,98,95,91,112,105,98,103,91,83,98,107,108,102,103,117,122,110,92,118,117,101,94,120,106,100,106,96,96,94,108,96,105,102,101,95,102,104,104,101,106,107,108,89,97,98,104,108,109,109,84,93,97,103,102,92,109,103,102,100,112,100,109,99,109,108,98,99,99,106,104,83,101,100,109,120,112,93,110,99,90,100,95,92,98,101,87,98,96,108,90,104,102,98,99,99,100,109,107,109,108,106,99,101,108,108,105,123,107,109,104,99,109,100,101,99,110,101,103,109,99,103,111,106,100,93,104,110,107,106,106,101,100,102,107,106,98,112,96,97,99,105,105,95,103,98,101,105,95,101,99,105,101,101,98,103,114,119,102,105,96,98,111,98,96,98,102,105,98,102,101,101,116,112,97,92,104,102,116,103,105,128,101,103,105,91,102,101,93,113,92,100,123,102,99,96,85,106,100,105,102,108,111,94,111,112,96,103,98,107,112,96,92,102,104,108,109,107,104,110,105,103,118,101,104,98,102,109,96,105,99,95,109,103,117,105,105,101,92,94,102,105,98,107,110,118,91,89,99,101,103,97,115,108,96,103,109,108,105,86,109,107,100,103,102,109,100,115,100,101,98,104,104,103,97,101,105,103,96,94,106,100,95,93,103,97,99,117,96,96,99,110,90,101,103,105,99,104,103,104,101,98,95,97,102,114,109,105,113,99,105,88,106,93,99,108,105,104,104,94,104,106,102,111,101,106,102,100,106,98,95,107,101,103,100,98,105,103,101,89,104,102,96,98,108,110,109,100,113,100,97,94,94,94,79,98,112,103,101,98,101,106,101,83,119,77,105,96,66,118,95,104,110,113,105,97,107,108,116,99,104,102,106,118,100,101,99,97,106,117,97,95,106,109,96,100,94,111,89,98,108,117,104,96,113,104,104,104,110,103,103,105,108,110,108,101,94,106,107,99,105,101,99,102,97,103,99,104,113,105,100,101,92,108,131,100,96,106,104,105,109,100,95,96,98,101,112,105,95,103,100,102,104,107,108,105,100,104,105,95,102,104,93,111,90,97,101,100,103,113,97,90,110,104,91,104,116,112,96,117,98,97,96,106,92,95,98,99,98,115,112,114,107,93,91,99,98,99,103,105,98,97,107,100,95,98,91,99,104,114,74,88,100,97,116,110,114,95,94,104,98,109,94,108,100,110,93,114,103,98,94,95,108,109,106,110,104,71,105,100,95,98,103,104,80,105,89,101,112,98,99,104,103,96,100,99,99,95,97,97,91,91,104,109,94,100,103,123,106,111,102,101,101,108,93,101,102,106,105,111,109,101,101,106,112,128,98,111,103,100,93,112,99,102,99,109,117,98,103,110,101,99,113,102,96,100,105,109,111,102,100,98,105,99,98,99,74,92,95,97,101,95,109,113,106,104,110,103,104,95,105,99,110,98,100,109,119,103,104,101,100,100,113,100,99,104,96,112,100,94,100,108,97,96,104,99,92,106,99,99,84,109,97,102,104,104,88,111,107,111,106,99,98,117,88,108,97,97,100,104,119,103,104,101,104,104,101,117,108,106,107,94,85,93,111,101,109,93,105,95,107,86,102,105,106,93,106,106,98,88,78,98,99,96,97,110,99,106,107,106,97,96,95,101,104,69,100,104,106,108,108,93,95,101,86,84,92,119,90,106,90,105,104,105,99,89,106,112,98,113,111,107,100,87,98,108,104,111,108,95,112,103,108,102,111,115,99,95,116,98,112,104,106,102,94,113,102,117,114,103,109,95,97,108,95,111,115,106,101,96,102,110,101,105,91,102,111,111,113,104,106,100,83,99,100,96,108,107,99,107,100,106,102,103,99,109,115,117,96,91,102,107,104,93,116,110,108,107,121,91,99,109,105,106,112,98,102,108,110,105,111,119,106,101,92,88,107,97,95,103,102,100,107,102,111,103,100,100,92,105,95,113,86,109,102,104,105,106,107,108,90,107,92,107,88,93,106,108,96,134,110,107,95,102,104,112,109,117,103,103,107,108,98,85,108,104,83,102,92,105,101,104,96,104,97,99,103,102,106,96,105,111,110,104,105,100,108,95,91,109,95,100,106,121,97,91,101,119,97,116,106,118,107,98,92,117,106,95,109,96,97,97,109,98,96,113,112,107,104,89,102,111,102,109,82,105,105,99,101,94,111,99,104,105,102,108,108,108,96,102,108,96,102,101,113,93,97,103,98,98,106,106,109,99,95,99,98,102,109,82,105,100,83,96,108,93,98,102,115,100,110,111,109,102,101,101,99,113,95,111,99,97,108,111,100,93,119,105,98,105,102,96,104,109,102,94,113,103,115,116,112,89,111,98,97,103,123,94,107,110,113,103,99,92,97,100,99,101,97,103,104,113,100,103,101,96,106,106,105,103,109,110,105,106,105,92,105,99,92,105,108,96,100,104,117,103,98,101,97,103,92,100,109,95,96,100,92,101,104,94,96,103,99,91,110,103,106,82,98,102,117,94,108,109,99,106,94,104,105,94,94,113,103,97,109,94,109,102,106,104,101,111,111,82,102,122,103,102,118,107,104,103,95,102,99,112,96,106,102,91,101,104,106,96,103,104,99,104,104,101,102,106,105,101,110,106,109,97,96,100,105,116,97,103,106,98,96,119,103,105,94,108,106,77,100,108,112,105,105,97,102,102,102,105,110,91,105,99,93,91,98,103,106,106,109,99,106,105,103,103,105,100,91,90,119,104,103,101,107,109,111,102,107,108,101,98,107,82,107,96,119,110,106,100,140,118,80,108,109,108,107,110,105,105,106,108,113,107,112,114,113,102,103,103,96,98,80,95,101,88,96,100,94,101,100,100,95,108,108,103,109,100,103,97,95,108,104,98,106,82,100,100,113,87,102,121,95,97,94,104,101,95,91,98,99,98,108,109,99,98,101,94,107,108,100,90,101,108,103,100,97,99,103,107,98,96,107,100,101,102,100,104,78,104,92,102,112,98,98,98,98,109,96,106,99,102,107,101,103,94,100,91,101,85,102,97,95,104,93,103,102,105,121,96,96,112,103,97,103,97,94,112,89,95,95,104,87,107,92,116,78,107,113,104,99,106,98,98,102,103,97,105,89,81,108,102,103,96,92,89,102,107,100,100,102,106,106,100,97,99,107,101,112,111,107,96,106,89,106,93,105,108,96,109,111,101,105,97,98,114,93,112,104,99,106,101,102,103,101,100,115,116,100,99,109,94,109,106,93,96,97,96,99,103,97,105,110,109,92,101,92,101,117,101,91,97,109,95,96,98,107,106,104,95,110,102,99,95,104,106,100,99,107,108,97,96,111,114,102,102,99,105,99,104,92,90,94,96,109,100,76,101,107,95,102,96,111,106,96,108,95,105,100,103,105,84,110,103,99,104,106,108,108,102,105,89,93,103,99,104,108,115,113,109,95,103,96,95,95,102,77,114,102,99,106,101,103,96,100,98,98,106,95,104,101,96,103,101,109,113,96,99,102,97,102,103,99,97,99,85,97,108,112,72,95,94,105,97,104,103,112,93,94,96,94,108,110,88,105,99,106,105,100,104,110,101,112,100,113,108,111,101,96,99,106,100,104,107,103,94,96,100,92,104,108,104,92,100,113,108,103,95,101,96,103,107,95,90,105,113,107,105,101,104,104,99,103,96,105,107,102,94,85,94,105,107,77,106,113,105,105,108,103,102,111,105,106,97,104,106,103,104,93,110,94,111,100,99,99,108,120,106,113,104,101,102,95,102,97,100,115,106,101,99,104,104,107,116,115,106,120,124,99,98,108,99,92,109,107,104,93,108,107,101,89,104,101,97,111,95,106,102,112,96,110,121,80,104,96,98,115,114,98,80,119,100,106,100,102,105,108,103,119,97,99,103,100,98,108,111,99,108,95,98,103,98,101,94,104,108,82,93,116,95,98,105,104,101,110,99,103,103,99,95,98,109,103,103,95,102,101,93,102,94,90,115,116,98,99,93,87,104,88,94,98,105,103,95,101,100,102,113,112,103,101,102,92,105,89,94,97,95,100,98,97,101,105,101,101,109,101,97,108,107,91,90,98,93,100,96,88,106,97,100,91,92,104,97,107,93,103,80,100,114,95,102,107,104,103,106,103,96,100,93,110,91, +436.67841,112,106,94,98,76,106,111,91,102,102,91,100,92,101,91,100,90,100,95,102,101,99,114,95,101,69,115,109,97,99,109,78,98,99,102,106,129,106,92,105,93,102,101,107,102,104,93,105,101,102,92,104,104,109,99,95,108,105,107,103,103,107,98,110,107,109,95,104,102,75,98,105,94,99,99,108,94,114,104,89,103,102,95,110,99,110,96,103,96,101,96,96,99,114,86,82,81,102,92,95,97,104,86,99,98,102,96,95,92,85,97,101,102,96,96,94,91,102,103,104,91,93,115,109,107,107,95,86,103,104,89,111,97,101,111,93,93,95,100,97,101,116,99,90,105,102,97,112,106,105,91,113,106,92,87,112,102,84,93,102,95,95,106,87,99,108,98,91,103,92,90,112,91,87,109,95,97,99,110,101,100,104,98,93,108,110,88,77,113,105,99,111,108,106,112,110,101,107,99,97,100,108,97,99,105,106,109,98,106,99,100,100,98,99,103,112,100,110,99,105,100,98,100,100,96,101,92,102,104,102,90,106,96,99,102,106,110,100,108,104,97,109,116,95,101,111,91,121,99,114,109,99,107,100,99,104,106,103,105,110,86,106,98,102,106,109,97,101,100,99,97,97,94,105,108,112,103,103,103,106,97,97,100,105,113,113,92,112,113,102,97,110,107,99,103,103,104,100,89,102,102,89,94,111,95,67,96,103,88,98,105,103,98,95,103,109,117,101,106,102,84,113,95,102,106,102,98,107,100,78,109,101,101,111,110,97,109,102,95,98,92,94,106,92,95,99,96,105,95,101,108,111,106,104,102,107,100,104,102,112,97,94,94,98,107,105,107,108,102,106,106,109,100,111,94,107,113,100,123,104,107,113,97,111,88,98,102,104,111,104,104,94,112,102,99,99,93,101,92,108,99,102,114,101,104,112,95,101,94,110,90,97,91,102,101,90,113,91,80,99,106,100,100,98,97,100,102,90,102,79,96,99,106,98,99,120,102,101,103,105,101,101,90,100,99,101,106,104,104,104,91,106,107,108,95,100,103,105,107,106,106,120,109,109,100,110,104,100,104,94,101,99,108,105,101,105,105,96,98,99,98,101,101,95,88,102,105,100,106,87,100,107,98,100,101,91,86,109,106,103,125,106,112,110,102,106,93,86,107,108,108,94,93,107,115,100,107,105,91,105,95,112,105,107,106,94,111,104,103,110,94,108,105,108,104,101,105,101,91,118,93,99,99,104,107,92,93,92,99,93,109,102,97,105,103,109,112,91,102,99,100,98,97,103,83,92,93,112,68,100,100,102,105,90,101,103,92,102,105,100,106,96,104,108,91,99,106,101,94,102,103,108,99,119,102,116,102,102,106,68,94,106,104,108,104,99,105,133,96,114,105,105,106,101,119,107,74,104,113,113,95,103,98,93,100,111,105,101,101,95,97,94,91,99,105,102,102,101,104,96,97,104,106,102,96,101,103,100,88,100,106,116,111,85,106,91,109,117,119,108,102,108,95,102,102,109,96,94,100,99,98,98,90,93,93,105,102,103,103,96,107,100,113,106,99,105,113,112,88,96,104,99,108,100,110,91,110,98,103,101,116,103,99,105,108,97,117,110,97,105,101,78,101,99,99,101,95,109,98,99,108,105,103,110,89,96,109,94,97,102,99,100,109,98,108,102,95,95,112,100,102,104,103,92,120,107,104,104,97,100,114,104,113,99,111,106,102,103,105,104,109,104,99,98,80,102,95,106,91,90,107,97,97,110,97,102,98,98,111,97,109,87,87,100,105,103,101,117,100,106,109,110,105,107,98,98,103,110,107,98,112,96,105,112,112,118,112,111,101,104,111,113,103,95,110,110,113,106,117,102,102,94,106,95,106,112,119,106,110,96,101,104,109,106,97,104,113,105,102,112,105,100,106,105,102,105,95,114,113,98,74,108,104,101,96,104,108,102,99,112,97,102,102,102,107,99,115,106,102,109,106,110,101,109,100,95,104,102,105,103,99,102,96,111,100,109,89,112,88,97,118,103,110,106,105,87,120,104,115,137,100,110,116,102,101,96,107,105,104,105,109,108,101,99,101,92,86,103,97,103,111,111,106,111,98,99,101,111,105,100,112,103,98,98,109,113,94,114,97,101,96,116,102,98,96,102,100,99,122,118,105,103,100,107,104,71,108,98,78,88,113,111,106,109,104,98,92,109,107,122,87,102,96,99,101,98,102,97,112,105,102,104,96,98,111,97,122,94,103,98,110,105,106,97,108,92,113,111,99,102,107,100,103,98,109,102,104,120,99,109,111,102,107,103,98,103,97,120,96,99,108,99,105,87,97,86,106,112,108,100,102,95,114,93,106,89,101,95,102,92,106,119,97,102,99,94,106,80,95,105,106,98,113,88,108,89,104,109,85,91,102,101,109,99,109,105,103,95,106,100,96,99,113,100,99,104,98,107,105,106,98,106,90,105,108,106,117,101,112,107,100,95,104,83,108,111,140,96,108,104,96,96,102,92,108,99,105,88,100,106,100,119,109,101,100,95,101,95,94,104,87,106,101,95,103,102,105,108,102,95,115,114,113,90,107,103,108,114,104,96,111,76,97,103,102,111,112,102,107,104,97,94,112,113,113,97,113,106,103,100,108,109,107,94,103,103,104,102,103,102,91,113,112,97,108,97,100,109,101,100,109,107,85,86,106,102,108,105,97,106,96,102,110,113,101,108,106,98,112,110,97,112,116,107,120,87,119,102,98,99,104,109,72,113,105,98,103,102,102,114,110,115,96,96,91,115,106,103,90,115,91,111,94,108,99,106,100,100,111,105,104,93,112,99,94,103,116,101,105,103,92,108,93,100,92,123,105,98,96,103,109,100,100,101,87,95,100,95,95,99,99,109,100,95,102,99,95,120,106,114,105,111,115,100,95,102,95,121,107,96,101,99,79,90,95,104,101,100,99,106,100,101,106,107,105,102,103,116,99,101,106,113,110,94,103,100,101,108,111,102,109,116,101,101,76,107,95,76,101,103,100,108,93,107,112,100,113,106,91,105,104,110,107,105,101,98,99,97,110,107,98,99,93,102,104,103,98,115,109,112,114,120,93,105,108,105,105,95,98,93,104,102,97,85,100,96,108,100,101,107,104,97,101,108,75,107,92,96,99,104,109,103,103,107,113,102,113,99,105,115,107,109,87,101,112,99,108,104,107,107,115,109,92,102,108,101,116,112,97,111,91,110,108,102,94,109,111,102,106,105,95,96,113,102,100,94,96,102,99,102,97,91,87,95,85,101,104,101,110,106,104,107,100,108,89,102,111,98,97,105,128,116,100,108,106,100,102,107,108,89,101,104,84,104,135,97,104,92,101,105,106,101,101,107,99,100,103,102,93,112,87,114,90,110,112,104,87,104,93,110,104,110,108,110,103,125,100,98,105,109,102,104,107,104,97,104,107,105,110,101,96,108,105,104,106,94,110,89,102,95,119,109,108,101,110,116,107,104,99,87,99,93,110,89,98,98,99,114,103,98,102,104,101,113,102,101,110,112,108,105,95,111,108,98,101,111,94,103,101,104,101,99,104,91,103,99,88,112,99,94,109,106,108,99,108,121,103,104,96,104,103,109,105,104,94,109,100,106,98,102,106,93,109,114,90,101,105,96,104,104,104,100,95,100,103,99,99,106,112,98,105,99,106,91,99,95,102,106,111,102,112,113,95,109,96,98,95,102,96,86,111,100,97,80,106,96,104,101,96,94,101,105,95,101,105,106,107,100,108,105,112,95,102,95,128,109,107,110,99,105,99,104,94,94,112,104,102,108,86,95,113,97,103,93,112,110,103,106,89,108,87,114,100,94,98,106,113,103,109,91,122,116,125,99,101,102,103,101,89,107,100,84,102,115,109,98,102,106,108,95,97,106,101,104,97,103,99,91,96,94,95,97,104,101,90,103,102,99,99,104,105,108,104,104,106,100,99,100,108,110,99,99,102,106,91,111,94,100,92,109,108,106,99,89,119,98,102,103,115,116,117,92,103,112,102,100,108,110,100,98,103,88,100,110,116,106,101,104,88,98,112,104,112,104,93,104,112,94,99,94,111,109,107,110,109,104,94,99,95,100,107,94,113,104,111,103,98,98,118,104,92,105,100,103,96,106,102,95,99,124,98,95,98,101,111,106,121,121,98,104,104,90,95,103,112,106,98,110,104,107,113,99,96,102,98,101,106,114,98,108,106,96,91,101,97,112,104,102,99,100,99,104,105,98,98,110,99,105,111,86,107,112,113,117,105,96,95,97,95,108,102,101,105,108,116,93,110,94,92,107,107,124,108,98,105,100,97,103,92,95,120,95,109,106,113,101,103,103,109,95,95,104,109,96,93,94,111,101,99,105,103,107,95,115,103,94,102,102,100,100,83,102,116,101,101,107,95,104,98,117,107,95,111,101,101,101,90,101,107,95,111,84,107,111,105,110,98,94,104,104,96,95,112,102,105,108,94,103,104,120,112,101,107,91,119,100,102,102,112,91,98,93,93,103,98,99,117,99,103,99,102,94,105,98,85,100,103,99,86,103,99,106,110,107,113,100,104,103,101,93,97,93,98,117,112,92,99,99,101,101,103,98,101,104,110,94,113,105,116,91,96,95,89,98,98,104,108,99,100,99,95,97,96,93,101,90,117,107,106,94,95,85,88,96,95,97,104,101,101,105,103,94,116,95,107,105,100,101,98,104,95,112,92,98,111,111,100,101,111,104,122,97,98,113,102,88,96,102,102,105,84,92,99,94,99,108,101,103,90,89,98,90,100,104,109,105,96,116,91,98,92,106,101,90,105,96,96,106,99,104,111,100,79,102,66,102,98,95,112,113,114,90,108,98,114,94,90,98,83,107,94,88,95,105,94,96,96,94,97,84, +436.81873,103,105,95,104,95,99,87,97,102,101,97,96,100,98,103,92,105,85,109,105,105,141,111,93,100,100,94,100,104,125,100,100,90,90,104,100,108,111,110,89,91,100,91,103,108,115,110,92,105,102,106,92,101,101,108,111,105,105,111,97,97,105,109,86,104,98,102,108,113,113,107,95,134,88,93,87,102,94,106,107,101,96,93,102,96,95,109,91,99,97,93,104,112,103,95,104,98,93,108,95,103,98,104,95,99,101,105,93,98,100,96,115,108,101,101,96,105,106,106,105,101,100,111,106,99,110,91,107,115,103,113,114,106,100,109,99,104,113,100,104,107,109,100,103,123,96,108,105,108,99,103,105,110,90,110,115,110,109,107,100,107,103,99,96,104,103,106,108,96,109,102,105,104,98,109,107,99,103,108,114,100,97,100,99,111,109,110,94,91,102,92,109,87,99,101,101,107,104,107,101,109,99,110,111,109,102,104,97,115,100,102,101,99,111,104,106,104,105,105,75,95,99,97,103,106,118,98,102,99,111,98,98,98,104,104,104,102,110,109,108,110,103,117,104,104,107,106,110,110,103,103,97,96,104,106,116,105,109,99,106,95,108,112,102,101,109,106,94,102,97,98,95,112,114,112,106,87,108,92,101,99,106,103,103,105,103,97,103,96,110,99,108,102,106,114,108,113,98,125,95,96,106,97,112,103,99,99,107,109,107,101,94,107,98,108,100,98,110,112,106,93,107,95,107,115,109,91,99,91,128,105,102,95,104,103,108,122,96,97,110,105,97,101,93,114,100,103,100,100,107,111,103,92,119,106,98,109,104,92,112,108,98,103,117,107,106,85,108,105,96,96,97,105,109,109,106,92,111,97,107,95,88,103,109,86,94,95,99,109,102,118,96,104,114,94,96,103,105,104,108,96,107,108,125,106,110,107,97,97,114,99,108,104,102,109,102,109,93,96,108,91,99,96,109,92,90,104,78,93,120,91,99,99,98,92,103,99,115,104,108,109,113,102,106,95,101,90,101,100,104,101,89,113,109,106,105,91,109,104,98,90,107,104,107,96,99,106,121,113,76,97,81,91,95,95,107,88,103,112,101,112,108,108,100,107,105,93,102,105,94,99,106,103,109,99,98,101,97,94,102,103,107,107,106,104,108,99,89,107,105,113,97,99,99,107,97,93,97,103,113,89,101,104,109,100,105,107,75,98,95,90,106,105,105,102,109,107,95,100,107,106,109,78,95,94,107,108,97,109,102,105,123,108,102,110,101,99,106,101,106,97,109,94,103,98,105,99,99,109,111,102,78,107,99,93,106,101,97,105,104,105,105,99,117,106,112,99,108,115,102,99,106,101,95,104,103,108,102,92,105,108,107,99,104,118,105,90,101,101,99,95,108,100,98,105,101,106,105,103,99,102,101,110,96,100,109,103,98,68,92,100,110,97,94,99,100,99,95,112,113,98,100,104,107,98,95,96,105,91,110,102,105,100,100,108,104,95,106,112,112,100,109,116,86,101,98,93,91,99,102,112,103,102,93,95,104,100,96,109,97,109,98,109,104,103,118,101,107,103,94,112,105,101,116,117,93,103,104,114,91,100,96,102,113,107,117,100,100,104,116,96,104,116,113,101,108,89,95,110,83,103,98,91,104,96,103,92,111,99,110,100,109,91,92,100,98,99,98,112,97,100,101,96,103,104,107,101,109,93,98,100,109,86,92,104,106,111,110,114,103,98,99,99,96,98,96,99,101,95,104,106,96,97,100,96,108,90,108,108,94,94,113,106,101,100,108,109,103,110,114,90,103,85,105,98,110,101,103,114,113,117,102,93,107,102,100,94,99,107,107,106,102,104,93,112,105,109,103,93,96,102,109,102,105,107,101,96,98,96,104,104,103,107,113,90,91,93,100,110,131,108,101,107,98,97,109,106,102,106,105,102,113,115,103,105,113,108,100,100,99,96,94,99,107,101,100,101,98,101,99,98,106,86,103,94,109,105,104,102,131,118,103,106,100,101,104,95,103,103,95,109,112,100,104,104,101,86,110,111,117,118,105,104,99,112,111,82,119,110,104,94,104,120,109,102,73,92,99,95,110,104,104,109,102,114,104,121,106,92,113,103,104,103,107,94,108,102,105,111,90,90,96,104,104,96,95,101,114,86,109,109,100,88,92,106,109,105,95,102,102,98,96,101,105,109,95,99,99,99,116,113,126,100,95,98,103,101,95,100,100,101,110,107,95,121,94,104,94,106,94,104,105,107,103,100,108,100,107,109,117,114,106,92,101,109,105,104,95,100,106,96,107,87,100,94,95,108,105,106,107,102,105,103,96,100,111,109,108,112,108,107,106,110,104,98,101,93,111,109,103,101,104,97,102,108,106,101,104,103,103,93,88,94,96,99,98,88,98,103,101,98,108,106,103,90,105,110,103,104,106,103,107,112,98,107,97,98,116,92,108,113,110,100,111,114,113,92,98,107,104,101,100,99,87,95,104,97,95,111,107,93,100,104,109,105,103,98,107,137,103,104,105,119,90,97,94,106,100,106,118,106,95,71,104,102,87,98,108,99,90,116,96,103,94,99,101,107,95,103,118,103,88,103,109,109,99,100,108,103,97,108,112,110,101,108,100,96,93,105,112,102,97,101,101,108,106,87,109,104,100,105,95,98,104,91,104,107,104,98,102,95,107,104,109,100,79,105,104,101,125,91,99,107,112,104,109,103,95,99,102,108,113,101,103,101,112,107,125,91,117,108,97,67,112,104,96,107,97,102,101,108,107,106,109,78,103,100,104,110,109,98,113,102,104,113,104,109,109,102,101,113,111,95,97,100,103,112,106,95,104,118,111,104,98,98,107,108,103,88,118,74,101,100,104,97,104,104,106,98,106,107,107,101,118,112,105,104,99,94,104,114,113,115,93,111,109,106,98,109,122,104,113,108,108,113,104,100,100,111,106,99,104,112,109,106,116,107,106,107,106,109,91,106,105,93,96,93,116,104,104,108,110,98,66,111,104,115,107,104,105,102,103,99,117,113,109,114,102,117,115,92,104,113,103,107,111,105,106,102,94,115,109,106,101,105,102,114,101,103,113,87,108,115,95,101,101,117,99,98,108,108,98,104,108,109,107,109,111,118,104,102,103,96,108,104,96,126,106,95,97,109,80,101,99,109,113,95,107,121,99,100,104,91,120,115,100,101,120,107,95,113,105,113,99,107,97,102,100,112,99,102,110,94,105,95,94,112,102,112,97,112,108,106,105,110,100,106,107,113,122,101,103,102,99,108,106,95,98,97,97,103,77,105,100,110,103,104,85,102,96,101,108,109,107,110,104,108,98,99,104,91,110,122,79,109,107,118,104,98,107,90,115,106,101,99,102,109,103,103,84,108,99,103,109,99,94,105,104,100,105,103,99,104,109,107,115,94,108,110,104,103,105,102,95,102,101,120,106,95,99,101,108,107,106,97,97,100,96,100,98,111,111,112,99,108,95,103,107,99,104,115,106,104,92,98,104,101,102,101,105,103,122,108,114,103,108,96,109,86,107,96,103,101,105,106,96,98,103,106,110,108,95,64,109,101,117,93,109,105,108,112,100,121,105,110,107,100,101,104,109,97,108,96,110,109,94,113,104,106,111,92,94,106,92,99,101,106,107,104,105,103,101,103,106,99,90,107,100,110,98,109,115,99,102,100,107,100,114,112,96,98,105,110,111,98,96,101,102,101,101,108,92,114,95,109,110,106,99,110,131,99,101,103,89,105,112,108,101,110,101,99,99,106,91,97,106,103,109,105,95,97,111,89,104,112,105,107,113,102,110,102,95,105,95,101,103,101,91,95,96,112,104,96,85,105,99,107,103,108,104,113,109,94,98,99,101,112,94,107,119,114,72,98,114,105,91,104,103,95,99,98,108,93,101,110,95,98,92,120,96,95,98,116,98,100,109,96,105,113,104,100,104,105,101,88,106,104,102,97,108,100,105,93,101,103,109,105,106,104,96,103,106,100,103,96,88,98,97,104,104,106,101,103,106,100,113,99,110,104,105,108,109,103,106,110,125,89,97,102,108,98,104,105,100,108,103,100,103,97,105,106,95,111,101,113,109,93,105,100,106,99,106,105,103,101,107,101,102,104,111,87,100,100,113,79,105,101,113,102,100,108,99,96,97,95,102,103,109,102,92,117,98,103,117,113,111,96,108,99,104,103,103,96,113,102,106,91,107,101,97,107,92,108,102,95,107,102,108,101,97,98,108,115,104,110,127,101,119,104,106,95,106,111,115,105,105,109,101,108,112,105,104,83,116,104,101,92,107,100,107,94,108,99,104,108,105,107,103,102,115,112,101,100,106,115,95,95,107,111,107,109,97,103,107,104,104,111,108,109,97,100,113,109,106,111,102,104,97,108,119,97,95,98,100,104,110,106,95,107,110,123,103,98,102,96,102,87,97,117,105,109,113,115,109,108,96,96,104,101,106,104,108,102,110,110,100,98,111,107,99,104,108,96,110,104,100,91,94,97,103,104,105,99,103,106,96,101,105,107,93,92,112,97,91,109,96,97,105,96,113,107,117,104,109,106,110,104,112,99,109,97,92,108,110,110,116,94,103,108,95,94,99,105,106,97,119,95,98,104,102,105,98,100,102,109,110,107,99,98,111,106,90,102,87,95,100,103,98,103,100,102,109,107,102,100,98,100,108,98,84,109,96,102,103,101,103,109,107,94,83,106,109,108,103,101,98,103,96,89,98,107,85,91,109,104,110,107,114,106,109,101,103,104,113,103,109,104,88,95,105,94,105,89,116,98,93,104,99,101,100,111,99,92,112,104,83,105,105,107,91,112,101,87,111,103,99,97,104,112,113,98,98,93,98,127,100,108,100,101,98,112,97,101,99,97,94,99,103,96,96, +436.95905,109,93,109,110,90,99,101,109,93,105,109,107,101,112,112,101,107,106,109,105,99,100,95,109,108,103,100,101,96,104,113,102,102,99,114,102,105,103,113,107,116,102,99,97,99,98,97,131,99,98,97,105,102,105,111,88,106,96,121,84,97,108,103,103,105,109,100,93,99,116,111,104,90,100,96,94,94,98,111,108,120,110,97,102,104,91,102,111,102,104,94,105,99,109,103,98,100,97,107,93,95,82,102,108,107,109,98,109,94,95,105,91,106,98,102,98,107,106,101,94,103,92,105,105,100,107,101,95,116,102,100,103,100,101,104,99,101,107,95,103,92,110,88,114,105,94,120,110,97,104,113,108,102,105,96,102,102,93,119,102,112,112,107,100,104,122,102,99,116,106,94,110,103,75,103,111,116,92,106,112,90,90,114,108,95,91,109,92,95,112,100,105,98,121,106,99,116,103,96,104,94,107,96,105,104,102,112,99,106,107,101,94,91,100,108,99,97,117,113,100,94,103,94,102,105,112,105,102,102,100,94,94,103,100,102,103,107,97,102,113,105,92,115,99,101,112,99,100,95,109,96,105,95,111,99,113,101,95,103,102,87,102,106,86,101,99,104,93,109,105,124,107,98,112,107,99,105,107,91,91,99,104,102,112,101,100,102,102,105,106,99,98,121,107,112,107,110,103,95,105,98,100,99,96,104,103,98,112,94,118,96,113,95,104,108,92,113,104,94,106,90,104,108,105,115,95,103,101,118,74,104,109,92,108,101,121,101,98,100,106,98,106,99,102,104,103,106,100,99,100,103,101,118,126,95,101,102,95,94,103,101,110,105,111,96,105,101,101,113,98,102,103,106,104,101,104,108,103,97,111,113,113,91,97,95,94,101,102,101,101,111,101,99,114,104,96,107,95,113,113,108,97,102,107,117,99,101,107,99,102,99,103,108,99,99,90,121,101,94,99,109,106,97,109,100,89,98,98,105,95,126,112,109,106,88,102,93,107,108,112,108,104,105,111,108,119,98,110,103,103,89,105,104,110,107,94,97,108,109,114,106,106,100,109,107,109,105,102,103,106,99,104,106,96,97,100,87,114,103,112,102,112,105,99,102,97,116,117,103,108,98,96,99,110,91,108,103,92,98,99,87,97,103,98,102,106,112,103,109,110,102,99,95,92,109,102,104,111,101,88,97,90,101,108,95,103,96,106,112,103,94,99,107,107,99,100,108,101,95,137,93,113,99,118,105,98,100,106,93,101,99,82,112,108,99,91,118,99,109,124,95,109,96,100,99,98,104,98,102,103,101,90,95,103,109,103,110,105,96,97,111,98,106,90,111,103,107,109,95,94,108,95,105,93,110,98,110,110,94,94,102,115,114,97,95,105,97,88,102,113,105,93,106,101,101,100,98,70,125,88,99,120,106,104,107,96,96,97,109,103,101,98,105,103,100,98,101,96,105,111,100,103,94,99,107,100,95,98,95,97,110,110,92,108,98,116,112,105,101,109,106,87,103,94,91,100,102,99,114,99,122,103,102,132,99,104,98,103,96,118,100,99,103,86,85,97,107,103,106,97,113,92,114,113,95,95,93,102,95,95,103,96,96,104,106,100,109,98,100,112,96,105,112,96,76,104,100,95,106,91,90,109,105,102,96,98,92,103,107,95,107,102,104,102,109,110,101,88,99,106,91,110,116,98,102,97,114,102,95,113,99,99,108,100,108,110,97,104,105,106,109,106,101,106,83,110,92,105,103,113,99,104,107,106,100,102,114,106,99,96,113,105,103,102,92,115,108,111,101,106,104,83,104,115,102,106,97,103,92,95,103,115,103,99,101,111,101,109,96,102,112,109,99,104,111,109,125,105,112,98,106,122,106,100,122,94,115,110,110,101,85,102,105,106,92,106,99,88,98,94,97,94,103,113,103,100,91,118,101,103,103,102,98,108,106,106,109,109,104,98,108,102,95,81,97,104,84,106,111,91,110,94,109,103,103,96,122,94,104,111,92,103,99,91,94,105,96,114,118,99,117,107,98,110,105,111,97,91,96,100,107,110,99,99,101,94,85,128,91,93,93,91,109,100,96,97,98,105,111,116,115,96,105,101,110,107,111,95,104,103,107,104,101,107,93,100,102,101,116,101,105,99,99,102,95,97,94,111,94,111,108,113,107,104,105,108,106,103,102,107,105,100,107,100,122,103,110,107,104,106,100,106,95,97,100,105,103,91,101,104,105,66,106,107,105,69,102,106,83,106,102,101,101,95,91,105,92,104,96,109,104,101,100,87,91,95,107,106,95,108,101,95,96,99,102,104,104,107,95,95,105,109,100,104,100,99,103,87,103,90,97,99,106,108,102,95,111,112,91,110,97,113,99,98,107,94,101,91,103,104,95,98,100,99,98,97,99,121,104,101,106,92,104,91,105,103,108,101,95,109,82,112,102,97,104,102,106,113,105,98,113,107,106,109,103,102,117,112,114,105,91,96,103,102,91,100,104,101,110,106,101,105,98,102,107,107,111,116,103,103,113,108,105,111,102,107,100,107,109,113,103,101,103,93,97,102,109,100,91,104,109,112,116,102,97,103,98,99,102,102,93,89,103,111,95,105,103,98,89,94,100,109,99,104,98,99,116,75,100,109,104,92,112,105,96,120,105,94,97,95,96,96,100,100,99,97,106,97,100,110,100,101,103,90,113,102,118,100,108,92,109,99,103,97,92,103,99,99,99,95,99,103,102,104,107,94,98,110,98,104,90,97,92,112,93,106,109,95,91,104,107,101,75,98,115,101,98,105,112,106,104,105,94,107,100,95,102,102,105,116,110,102,106,101,86,97,101,103,96,104,105,106,107,94,89,102,97,97,98,105,105,114,95,112,103,89,91,91,100,111,88,109,106,104,94,100,116,100,102,108,100,105,89,94,100,106,103,105,105,113,85,103,99,98,100,121,108,105,104,106,110,111,102,108,100,107,112,108,99,100,107,94,96,108,113,126,100,103,86,98,131,115,96,119,116,94,103,105,104,105,107,103,103,112,106,110,120,109,100,100,98,107,116,100,111,106,104,111,107,109,98,99,99,109,102,101,103,89,100,95,106,100,98,107,98,93,104,99,105,104,96,114,111,100,106,101,110,106,111,108,106,100,116,115,102,104,109,99,112,106,97,92,111,94,109,101,101,92,105,101,109,97,95,108,102,99,106,113,108,109,108,93,97,97,102,97,115,99,96,105,107,107,99,97,98,98,102,98,117,124,103,105,104,114,97,94,105,102,89,95,93,88,102,100,95,93,98,104,103,98,103,105,76,106,106,109,98,102,111,101,101,107,106,98,103,103,102,90,102,107,107,102,108,110,95,99,113,105,94,97,94,115,109,97,97,103,111,99,110,87,98,99,105,96,103,98,88,102,107,111,107,103,107,100,92,102,105,109,100,93,117,107,100,106,104,76,108,101,102,107,106,103,105,105,100,102,106,87,95,95,106,101,88,103,107,107,105,110,96,95,104,107,106,114,90,106,100,104,100,98,113,114,108,100,95,128,117,99,95,104,107,116,103,98,103,104,116,108,122,113,107,105,92,103,104,99,117,110,103,100,97,102,102,112,98,94,99,106,101,94,108,108,105,104,98,84,110,102,98,105,103,104,100,99,97,109,104,106,107,95,106,105,112,109,104,85,97,110,107,106,112,96,95,115,81,100,98,94,106,103,100,94,115,105,113,106,103,109,105,93,97,102,100,93,106,106,91,111,106,105,92,97,103,111,100,98,97,106,96,102,111,107,106,99,111,97,100,100,107,100,107,99,102,106,100,98,120,103,103,104,117,111,113,99,94,105,115,98,88,102,91,84,101,114,99,99,104,100,112,99,107,99,98,104,103,107,90,101,99,108,106,113,107,116,117,103,94,105,106,92,108,75,111,99,104,100,103,100,78,108,95,107,109,100,102,99,103,108,108,105,105,102,98,99,102,94,95,109,103,99,107,115,98,126,107,108,101,106,113,109,107,103,103,118,86,109,109,115,82,104,97,117,93,106,102,110,92,103,102,116,104,104,117,95,100,114,91,92,104,99,96,95,103,103,99,99,95,94,105,113,113,101,104,103,117,106,101,101,104,106,104,106,93,102,97,104,99,98,99,118,106,101,101,108,105,105,103,99,99,100,105,103,79,96,90,113,105,105,122,113,106,98,115,100,102,119,98,106,113,102,104,100,90,96,94,88,98,104,95,79,110,110,95,88,100,95,102,107,107,98,97,98,97,106,105,106,96,93,98,101,100,99,116,101,100,91,100,92,93,99,97,96,101,111,96,95,104,101,86,108,100,108,96,106,96,106,104,99,121,111,109,99,116,99,102,100,108,88,105,107,100,95,100,106,111,94,100,100,88,98,128,96,97,117,100,87,95,121,109,102,102,110,98,107,109,105,99,103,101,98,104,110,109,96,96,105,104,105,89,108,96,100,95,127,101,100,98,83,113,95,99,100,96,107,109,107,94,107,84,107,92,99,104,103,103,91,98,98,107,96,83,96,104,92,99,92,97,102,108,111,102,98,101,113,107,91,109,96,105,109,104,94,106,100,93,105,111,101,89,87,104,102,114,94,92,101,101,100,112,111,104,101,101,98,102,110,114,100,104,103,106,104,111,101,105,83,95,112,97,99,87,100,98,108,92,101,109,105,109,105,93,84,108,105,112,106,99,96,70,89,118,109,106,96,105,100,99,95,98,94,87,107,90,99,98,108,103,100,109,117,112,92,102,109,114,109,98,103,98,88,112,101,112,101,101,98,97,89,100,95,94,97,105,102,86,104,99,100,103,98,108,91,86,94,97,113,94,102,100,106,105,111,90,105,91,91,102,89,104,101,96,101,95,102,103,102,108,98,99,109,108,101,108,97,109,101,109,94,95,100, +437.09937,82,104,85,95,97,97,94,104,98,101,101,97,99,95,106,105,96,102,95,99,106,104,98,94,103,101,101,100,105,94,93,97,96,99,116,88,93,80,113,117,105,96,88,102,102,117,103,106,92,99,94,99,117,103,119,101,92,109,113,87,105,90,70,91,100,108,126,110,100,92,106,102,100,91,95,106,106,95,95,116,113,96,92,95,103,109,101,105,104,92,92,92,105,100,95,107,110,100,99,114,97,94,100,101,80,100,100,99,110,100,95,106,109,98,109,99,106,112,94,107,109,94,91,103,113,104,105,97,121,105,106,103,82,113,98,92,84,94,103,97,101,113,100,98,90,100,106,107,102,108,112,100,101,109,105,97,101,93,101,106,92,101,107,111,101,94,116,91,103,95,111,100,121,104,100,97,106,95,90,110,106,99,91,91,99,100,100,99,95,100,105,108,100,112,102,96,83,102,69,114,91,94,102,108,104,110,109,110,141,112,101,95,102,109,103,104,104,107,89,113,105,105,101,89,99,102,83,108,101,96,100,102,106,74,96,95,100,104,91,92,92,100,119,125,109,98,96,98,90,101,100,123,105,118,100,100,131,98,100,105,91,98,108,107,105,106,107,99,97,88,95,101,109,102,104,98,95,102,108,95,96,106,102,100,106,95,97,101,110,109,111,102,106,101,105,108,106,101,100,99,108,97,97,106,91,103,96,99,101,106,94,110,109,95,104,110,106,102,98,96,100,112,113,108,107,103,106,86,106,113,100,104,112,102,104,90,105,96,96,100,100,114,106,103,104,100,101,104,101,105,95,110,104,127,98,96,107,109,118,99,103,98,109,95,96,105,104,106,103,94,103,100,109,100,97,104,107,113,102,106,110,103,110,90,101,99,108,102,96,98,96,106,115,105,108,100,104,117,112,102,96,98,100,100,85,108,99,113,106,100,100,102,89,102,100,95,106,101,96,94,108,102,107,103,96,100,96,105,104,95,105,115,100,87,104,102,106,99,97,94,109,99,108,100,100,115,112,91,97,102,98,107,102,107,101,90,103,100,98,99,103,104,96,103,104,100,101,108,102,99,92,104,107,108,106,100,98,98,105,100,105,101,126,99,93,104,107,98,93,98,105,89,104,85,92,109,92,99,109,99,104,100,99,101,101,113,95,107,105,106,104,98,100,107,98,98,118,96,99,108,97,92,102,110,115,111,108,105,101,108,114,98,104,108,104,101,103,78,110,112,109,108,105,106,111,102,110,97,95,104,111,106,100,107,104,104,114,90,93,88,106,87,105,103,88,94,105,106,99,78,95,112,115,116,106,99,111,107,103,94,104,91,92,99,101,111,79,101,100,78,101,94,99,111,112,94,101,84,102,102,115,98,104,95,97,103,116,104,104,103,94,117,106,105,100,82,104,108,107,116,110,100,100,105,109,107,107,117,117,96,96,109,102,105,91,100,97,100,101,110,103,110,109,99,106,97,106,121,106,99,105,107,112,110,108,107,124,105,109,98,118,99,109,94,95,105,107,87,116,110,109,106,95,98,96,120,116,110,114,104,108,99,108,107,113,107,111,116,103,111,107,110,103,110,104,110,109,100,103,84,106,93,97,101,108,110,108,113,105,107,91,102,97,92,96,101,112,96,109,86,101,99,119,108,93,94,98,76,99,124,104,93,93,100,96,103,90,101,97,100,97,92,108,99,100,107,99,106,96,109,114,103,105,105,105,96,108,107,100,102,95,89,105,121,108,115,97,112,98,105,95,101,103,104,98,99,104,106,106,124,115,108,101,103,95,109,101,114,91,101,113,97,110,102,105,110,98,100,115,112,96,101,100,96,111,110,105,88,104,110,105,104,102,101,103,92,129,105,112,113,109,107,101,113,105,93,109,107,98,125,108,95,95,111,97,108,133,95,107,100,103,108,114,97,95,103,87,96,100,99,102,98,93,84,106,101,110,102,99,111,108,104,108,92,100,104,103,108,108,116,105,110,104,103,98,106,97,135,105,103,95,112,106,101,96,100,91,110,110,105,108,111,106,104,97,100,100,104,112,110,103,104,102,109,101,111,107,94,106,114,111,96,111,110,109,114,99,97,101,101,112,91,110,106,97,99,107,105,101,101,102,105,110,95,93,94,104,105,99,97,101,108,97,97,95,116,105,94,97,99,103,102,109,113,99,107,105,100,91,99,102,99,101,103,115,120,104,109,103,95,99,90,95,114,133,100,107,104,107,103,103,95,106,101,90,108,99,84,111,100,106,98,105,83,102,95,103,108,106,107,108,102,113,101,108,110,95,104,98,112,99,104,101,108,102,113,112,100,88,97,113,108,101,95,110,102,107,99,110,104,103,110,120,104,104,98,100,102,101,102,100,102,98,99,104,98,104,119,99,102,103,100,102,106,104,99,104,107,104,88,102,105,91,95,105,111,82,91,106,113,94,80,108,100,103,101,100,106,100,86,98,103,96,102,99,101,110,113,112,95,108,94,93,90,103,105,107,113,100,126,106,109,107,86,100,101,108,113,107,105,90,103,102,94,104,109,109,96,102,108,106,109,94,105,101,95,93,102,110,92,112,102,102,95,94,99,106,82,108,104,104,74,104,114,91,97,119,113,97,102,103,102,103,93,102,112,107,109,119,106,111,91,97,99,108,107,110,106,106,82,101,91,106,96,96,99,92,95,105,75,112,107,103,96,106,92,103,102,105,103,91,109,96,94,109,112,95,99,95,104,97,104,110,99,105,95,98,117,105,105,102,109,96,98,107,97,116,101,105,101,106,124,102,99,105,108,97,101,104,105,108,108,95,102,103,103,112,102,112,96,111,109,107,102,95,100,107,113,101,108,104,111,97,97,105,104,95,101,110,107,109,96,97,106,106,106,103,109,93,114,96,99,105,111,104,96,98,96,100,107,108,100,118,99,102,109,96,100,113,105,103,102,91,110,106,102,104,102,91,101,100,108,94,113,103,105,101,102,96,100,99,97,107,101,114,109,104,106,112,107,95,99,102,102,104,95,96,108,98,99,101,101,105,105,93,102,101,99,100,114,98,104,107,117,115,101,108,97,108,97,97,109,99,87,96,89,105,106,109,105,94,111,94,109,111,97,105,97,108,99,99,95,101,118,109,99,103,117,98,108,103,93,109,98,107,94,85,100,95,95,114,90,109,99,109,82,97,93,120,103,99,100,97,121,95,108,89,97,111,87,100,115,94,96,90,91,102,110,110,95,106,100,102,87,109,99,99,114,117,95,115,103,109,114,92,104,99,108,103,100,102,102,106,97,99,106,98,102,105,105,100,107,102,66,95,106,109,95,105,99,116,102,98,89,89,106,109,101,107,74,95,92,96,96,102,96,108,103,133,104,100,115,137,107,103,107,104,94,93,98,106,105,111,117,100,91,104,103,97,100,108,101,109,110,92,99,109,97,94,103,105,103,98,97,99,99,95,108,99,99,96,111,91,105,88,101,104,95,94,99,111,108,94,100,100,95,113,107,103,108,84,104,101,105,105,120,104,113,113,109,101,106,106,97,103,94,105,107,92,109,98,90,93,104,102,108,107,107,97,104,101,103,108,95,92,91,106,105,98,102,111,109,101,98,97,105,109,104,94,108,111,100,107,95,99,97,106,96,100,104,94,100,95,102,94,90,99,94,105,102,105,90,102,109,103,95,91,97,98,106,94,110,103,111,96,105,112,113,98,105,100,96,95,117,97,100,118,100,97,90,98,135,102,100,101,99,104,92,114,102,95,90,94,100,101,101,104,104,103,102,90,99,107,111,95,113,91,118,104,97,99,103,98,108,114,101,99,104,99,117,103,106,106,94,103,100,112,93,99,117,90,103,105,107,109,106,113,101,117,97,111,95,92,105,108,104,100,96,96,105,99,102,102,97,98,100,102,101,96,107,109,94,101,103,89,108,100,102,96,112,81,103,123,96,97,102,103,106,104,109,104,95,80,104,96,105,98,97,105,98,95,101,105,98,113,101,101,103,104,99,99,107,103,107,91,103,95,114,107,111,97,98,102,111,99,99,104,107,99,100,104,109,108,89,96,109,106,96,110,100,86,105,100,108,109,101,98,100,92,91,103,98,99,120,105,119,102,116,88,119,104,102,106,100,107,95,109,112,96,95,96,95,90,102,100,102,116,99,107,101,102,112,91,111,107,89,101,102,104,82,100,88,109,114,100,101,106,100,110,107,105,108,101,105,112,102,94,103,116,106,102,105,90,93,98,116,92,105,107,99,83,94,103,107,105,107,104,94,99,100,101,94,106,102,97,108,100,103,127,108,91,107,111,111,102,94,98,98,105,102,109,111,113,101,106,98,120,94,109,114,97,96,87,96,96,96,107,95,108,102,97,108,108,102,87,91,102,113,100,116,98,111,80,105,109,101,108,105,102,100,98,101,104,107,113,110,90,99,116,96,94,103,90,94,108,98,85,94,108,108,104,105,91,107,100,96,106,103,103,83,102,101,102,97,97,102,99,97,106,101,89,103,96,99,94,98,94,102,99,93,95,100,99,95,97,104,92,109,95,99,96,115,105,101,114,97,102,100,91,109,97,105,106,99,104,97,108,116,97,94,93,95,101,108,105,102,99,107,99,106,105,103,87,99,96,112,89,88,110,93,104,94,109,98,103,110,110,98,111,83,107,111,104,106,102,101,97,108,109,94,104,93,98,99,105,100,109,114,107,90,102,100,100,106,110,109,89,80,94,121,101,105,96,92,104,103,110,100,119,98,112,101,94,103,103,93,99,101,102,111,98,91,105,110,101,91,94,96,100,108,111,102,107,101,99,99,107,102,86,108,111,101,91,97,94,101,91,106,73,104,95,106,98,84,102,101,115,110,113,94,83,97,107,115,96,112,107,94,101,84,106,109,95,107,94,91,125,106,104,98, +437.23969,94,96,96,87,111,102,88,100,92,108,104,105,96,103,98,99,103,83,92,89,95,103,114,105,108,95,97,92,98,107,100,86,100,102,103,95,104,92,102,88,104,101,105,101,106,104,92,105,88,102,86,102,107,102,86,92,99,99,105,88,91,109,106,108,100,103,76,104,103,102,118,100,97,101,100,119,104,93,90,105,106,107,95,96,97,93,93,102,95,84,105,93,100,108,98,93,100,94,101,97,101,104,94,103,91,97,104,115,116,99,100,100,103,98,97,95,105,100,90,83,101,100,103,101,102,114,103,97,105,92,94,93,100,97,101,90,99,105,111,75,96,101,96,116,95,96,105,112,112,98,94,89,102,98,99,90,95,84,106,103,94,100,115,105,102,101,95,90,102,96,101,92,92,102,101,99,99,92,109,96,96,113,101,97,101,95,93,94,117,95,100,100,85,105,98,99,93,100,100,107,104,95,99,86,97,101,87,112,105,109,99,99,101,109,98,114,97,101,100,114,106,102,101,85,102,102,99,102,109,97,100,98,105,106,101,71,110,96,116,97,103,93,113,91,99,101,102,96,112,107,102,98,97,102,88,116,94,96,106,123,96,94,104,95,100,103,110,87,105,99,108,83,99,101,108,100,104,106,98,103,101,103,85,100,106,99,90,109,102,106,96,107,104,89,103,109,103,104,117,107,96,97,99,96,100,107,96,103,104,101,84,102,100,93,109,97,102,97,99,92,100,109,90,105,118,108,93,101,109,107,98,94,105,91,100,99,88,109,98,95,96,101,93,105,100,105,112,112,102,99,109,86,101,105,107,88,112,106,100,104,100,81,96,102,94,99,102,116,102,106,112,90,99,96,106,98,108,95,105,110,106,109,108,106,105,97,97,110,95,112,107,93,101,113,122,97,113,99,113,115,92,112,137,101,109,99,96,81,104,104,95,101,97,102,102,89,112,85,89,94,100,102,94,102,95,114,109,97,97,98,96,101,92,95,114,97,95,102,96,102,104,96,98,104,100,115,91,111,104,109,105,105,104,110,104,95,108,97,98,99,97,96,96,99,87,109,100,102,95,101,117,87,98,108,102,86,93,99,90,98,97,137,118,101,92,105,99,106,100,100,98,95,106,105,89,100,86,105,110,102,98,110,110,100,103,109,97,97,106,101,102,105,117,101,108,97,106,82,95,97,109,97,101,105,99,99,114,100,101,102,106,122,105,100,103,112,100,94,107,100,100,110,89,103,108,100,106,96,106,104,93,112,102,102,104,102,104,103,111,110,98,95,107,102,102,99,101,109,111,116,100,98,100,103,108,93,110,122,99,98,107,97,102,101,98,99,111,98,100,98,109,102,100,97,105,110,97,96,102,98,101,101,88,110,96,116,104,101,101,100,95,108,105,92,94,105,99,104,104,106,100,111,95,99,107,109,94,109,92,101,91,98,93,105,102,105,94,106,117,99,102,88,65,102,113,93,108,100,104,100,99,95,92,97,99,111,105,97,105,99,108,102,99,99,88,81,114,97,104,110,104,101,101,99,96,99,111,103,100,105,112,107,113,102,102,89,97,99,105,112,102,106,102,103,91,101,102,96,104,98,104,93,106,102,101,94,102,102,105,102,118,106,98,99,94,104,95,102,100,92,96,104,102,109,97,111,110,100,108,95,97,100,109,93,113,103,101,102,109,98,100,87,96,120,102,102,108,108,97,102,107,91,105,104,106,97,93,103,112,89,110,102,105,90,87,86,95,96,108,99,101,104,136,91,100,102,96,102,95,99,91,102,101,98,91,91,95,108,99,95,74,75,100,97,108,86,101,98,105,110,97,103,113,108,95,111,103,111,109,105,95,100,108,100,103,104,116,100,102,90,113,108,105,105,107,107,106,106,98,96,119,100,106,96,95,99,109,98,106,97,96,93,121,90,105,89,105,107,103,105,100,91,97,104,93,95,107,100,115,100,92,103,95,104,79,97,112,111,111,113,100,110,95,109,80,98,102,95,105,102,102,106,101,102,99,103,100,109,108,92,102,110,103,108,96,96,109,107,104,103,101,106,102,94,98,96,102,78,96,89,98,108,96,101,108,98,100,106,113,96,105,94,100,95,95,102,99,95,112,91,104,97,104,110,102,105,103,96,107,89,113,103,86,120,107,93,107,106,88,112,101,94,96,117,105,99,114,99,101,118,105,108,105,101,96,99,80,92,102,90,107,109,102,105,101,114,97,93,87,103,95,95,92,104,93,96,100,95,98,107,106,106,112,102,112,104,80,91,92,97,102,91,99,97,105,104,104,86,95,99,95,99,93,114,95,93,103,96,95,98,103,119,106,92,109,104,104,88,93,114,98,107,100,94,103,87,100,107,85,106,85,95,107,86,97,99,97,106,101,95,109,92,100,104,94,102,104,108,101,94,105,95,106,110,95,97,91,105,90,87,80,107,91,94,91,108,106,99,104,105,110,109,92,106,102,112,106,100,115,100,106,94,109,103,115,104,109,97,102,105,96,111,107,102,101,95,110,113,98,106,103,94,108,104,103,108,112,100,95,104,106,103,96,97,110,107,90,108,93,101,102,106,95,100,93,115,99,94,108,94,103,95,97,105,95,99,94,104,106,100,101,98,109,89,90,107,100,98,98,98,91,95,101,101,102,98,89,95,107,100,96,106,108,103,100,103,101,96,106,93,97,98,110,93,105,93,111,102,116,109,102,97,113,99,100,103,101,96,100,104,105,107,100,96,104,94,106,109,102,97,98,91,94,108,98,91,98,101,97,93,110,110,107,107,110,91,102,89,103,98,103,102,96,113,105,99,104,107,113,108,97,103,124,90,93,106,101,100,99,104,96,102,98,113,107,97,103,101,98,121,96,112,102,106,105,95,98,102,101,107,91,133,106,115,105,102,111,93,108,105,105,90,101,107,106,106,107,112,108,106,104,97,95,99,92,119,103,98,117,91,96,107,93,115,100,99,102,109,104,103,117,100,105,98,110,123,104,117,98,103,101,107,112,106,98,94,108,100,105,95,101,102,114,104,97,88,105,96,98,115,99,109,98,94,94,96,95,100,110,98,107,103,95,107,89,94,104,108,102,91,101,106,103,113,102,108,94,95,112,96,111,105,108,110,103,103,98,104,90,96,102,116,97,100,102,84,111,98,81,96,111,96,120,102,91,100,96,95,106,102,93,96,106,100,97,105,104,112,108,93,95,105,135,97,102,102,96,96,98,104,110,83,98,112,100,88,99,77,113,110,107,90,110,105,112,117,105,99,92,90,107,101,91,105,95,109,97,106,106,108,113,92,103,107,97,96,104,103,112,103,112,103,96,117,98,105,101,100,107,106,90,99,107,102,108,105,118,102,96,105,92,98,106,91,93,98,104,90,120,97,104,105,104,103,109,101,104,111,102,107,98,103,97,101,99,109,93,103,108,95,105,103,91,109,90,97,80,92,97,100,99,91,95,96,99,104,112,92,96,100,107,113,96,97,92,107,94,91,105,98,101,108,96,99,93,99,94,114,97,95,116,102,106,100,120,107,105,114,100,100,134,85,97,110,99,89,105,98,93,99,116,103,108,121,103,99,102,104,102,104,95,113,99,102,102,99,111,107,122,105,100,107,114,111,107,103,100,97,101,112,107,103,102,111,103,94,96,90,100,111,101,100,106,110,99,98,105,106,112,99,100,109,91,109,105,87,97,98,109,104,103,102,105,87,100,91,109,95,104,98,102,109,94,94,110,103,95,97,108,101,100,90,100,95,96,106,97,99,103,106,119,102,103,119,104,102,104,104,103,100,102,95,104,92,97,108,106,107,94,97,107,100,109,102,102,90,110,100,107,100,96,103,107,103,98,113,85,90,111,96,91,103,109,97,98,110,101,107,115,108,103,92,95,107,115,95,106,94,100,101,107,102,101,100,108,94,106,111,101,96,107,102,102,99,104,99,107,108,108,103,107,116,90,105,87,100,99,114,112,104,96,96,104,109,97,101,110,105,105,98,94,108,96,107,99,102,77,100,100,92,116,97,102,98,113,115,105,112,92,109,113,106,97,106,102,99,107,104,114,90,93,99,109,103,98,99,108,101,107,97,115,88,95,97,106,112,98,108,104,94,92,95,111,105,111,105,108,100,92,100,102,98,91,98,100,96,99,96,92,104,106,104,95,109,107,110,116,95,92,91,105,86,116,102,101,102,109,100,94,102,114,98,106,100,107,99,103,90,101,102,101,97,103,97,99,100,98,100,102,113,102,104,105,100,94,119,102,97,92,111,106,98,100,103,105,113,96,90,94,93,92,103,98,97,102,88,102,100,104,121,96,110,92,115,96,95,140,103,95,80,106,108,104,105,103,98,106,96,106,116,131,106,112,113,106,102,100,105,103,106,99,108,109,79,99,102,103,110,95,106,103,105,93,105,94,98,100,104,102,96,105,99,95,109,95,109,105,94,98,105,108,105,103,109,107,97,109,89,105,98,100,93,101,99,98,104,102,85,106,98,92,100,92,107,97,104,111,98,107,103,110,102,107,104,116,101,66,100,105,92,103,81,94,100,105,95,109,101,105,97,110,110,102,103,96,108,108,117,103,98,109,101,110,108,114,102,109,105,105,111,104,101,99,103,102,93,101,106,106,104,111,117,96,104,108,98,119,120,97,99,99,95,102,109,106,109,97,100,99,92,94,105,87,98,103,94,106,110,102,91,107,99,84,102,105,91,100,108,111,94,96,109,101,107,104,108,110,107,94,103,95,97,108,116,102,106,99,98,83,98,94,90,98,100,96,111,105,105,101,103,105,96,107,83,90,84,94,102,115,95,102,93,94,89,116,114,92,101,95,91,110,99,102,96,98,100,92,104,97,90,112,100,109,95,114,100,109,98,109,108,105,97,105,101,106,91,104,91,103,115, +437.38004,88,109,104,105,100,103,99,95,107,108,113,100,95,100,99,84,98,98,104,105,105,110,102,103,112,103,99,107,100,99,95,105,103,116,106,97,105,91,101,100,107,82,98,106,94,76,100,99,89,104,101,96,123,100,100,97,67,100,104,108,99,93,106,95,97,106,103,109,106,109,114,110,102,108,100,95,106,92,95,99,104,110,102,91,100,92,92,101,98,101,98,114,100,109,103,100,94,99,95,105,95,102,101,103,101,105,94,100,110,102,104,114,105,102,97,96,113,110,107,112,97,109,117,104,104,126,103,104,108,104,106,108,98,104,99,114,101,99,93,97,103,93,85,105,95,113,111,100,90,99,105,105,61,93,96,108,95,105,98,89,101,105,97,105,105,103,99,100,112,107,85,99,104,103,111,73,97,103,103,94,94,101,101,117,101,99,102,99,105,102,104,95,94,98,110,110,113,109,105,101,104,103,103,105,94,109,107,102,91,98,120,112,107,100,100,113,98,104,89,101,97,107,87,100,96,105,107,99,103,102,97,110,101,102,102,91,99,101,104,102,91,98,105,96,99,91,99,122,106,100,103,105,95,102,102,117,100,106,95,105,112,106,91,105,88,121,111,105,99,98,104,100,101,91,110,99,104,110,99,113,110,99,101,97,98,96,101,88,103,97,92,97,102,103,113,111,110,112,94,100,101,104,95,118,92,109,103,101,108,99,102,98,113,105,106,101,102,107,109,95,89,107,104,97,103,96,101,95,103,99,102,93,94,110,101,95,97,102,109,102,105,107,105,107,97,95,96,83,100,109,105,106,90,108,103,109,88,96,106,108,104,93,104,92,101,95,113,106,96,106,113,98,97,95,100,99,96,111,113,102,106,100,94,118,100,101,98,109,94,110,94,101,103,108,95,102,107,100,99,105,101,109,101,94,95,94,96,95,98,122,102,89,119,106,111,100,78,100,102,97,101,105,100,104,99,87,99,91,98,104,104,92,97,101,107,114,97,100,104,105,104,95,101,107,102,100,106,93,116,103,97,109,98,103,108,110,108,129,98,100,96,113,111,111,102,114,100,99,102,113,98,106,103,97,102,107,99,109,104,105,100,112,110,105,104,98,124,106,97,98,100,96,105,99,94,104,101,101,97,104,107,91,116,101,104,103,93,100,96,103,103,91,90,107,114,99,122,87,105,98,104,106,97,103,96,132,105,116,99,101,114,109,98,101,111,91,103,102,97,105,101,113,107,110,103,98,110,105,103,99,89,114,105,107,101,107,109,103,104,99,98,100,103,103,115,106,103,113,88,98,99,99,99,95,106,105,119,112,104,106,106,72,111,105,97,96,112,100,99,102,108,98,100,108,106,98,96,101,102,94,105,101,99,100,105,108,91,98,102,99,95,105,101,97,105,97,102,109,107,111,106,102,98,99,107,100,96,108,96,109,99,101,103,103,100,106,105,95,107,106,99,110,104,99,105,95,114,131,110,95,95,105,109,101,126,100,106,108,107,109,98,104,112,99,92,88,100,99,107,119,112,101,100,113,113,110,102,113,114,102,103,109,109,108,96,112,101,107,93,99,100,94,99,85,102,109,109,105,103,103,98,99,101,109,118,106,89,101,100,103,99,110,100,98,82,101,110,95,105,102,96,104,113,98,96,117,110,111,95,107,98,100,99,106,122,108,103,97,108,101,108,106,113,99,121,91,111,98,102,107,114,108,104,100,101,98,110,108,99,105,107,112,105,104,86,109,95,109,106,103,121,109,101,110,90,108,99,98,105,98,97,105,107,99,105,108,97,102,88,95,99,99,90,103,104,106,99,93,101,105,90,103,102,109,96,99,104,106,98,113,92,91,122,101,103,105,104,100,111,101,95,96,103,100,112,108,93,103,98,92,130,120,103,96,115,110,92,111,104,95,100,94,107,108,96,101,97,98,106,104,99,107,100,117,101,103,101,106,108,107,103,98,98,110,102,109,100,98,106,90,105,106,102,109,98,102,104,96,96,99,96,117,101,105,118,110,91,121,90,116,107,112,103,95,101,95,106,106,107,109,108,113,103,88,100,124,100,105,94,105,101,107,108,103,101,102,95,100,95,100,119,104,117,91,79,112,96,96,105,99,110,107,110,103,104,99,113,104,112,100,99,98,96,115,96,90,92,117,100,104,97,114,93,103,105,105,95,105,92,95,101,107,104,97,104,109,99,88,115,91,104,95,107,97,109,99,107,98,100,100,100,104,98,97,103,91,100,101,104,98,106,107,104,92,98,95,100,98,110,97,103,114,100,108,102,106,104,109,99,110,104,110,100,103,102,104,106,105,107,117,112,114,109,99,105,98,108,112,103,101,96,101,107,105,105,105,101,122,108,110,98,106,114,100,102,107,106,99,104,97,104,99,106,94,97,107,91,96,98,113,115,99,103,103,103,93,99,100,110,96,90,109,98,103,101,84,101,107,90,97,99,104,91,103,112,101,102,97,114,103,99,102,103,105,103,100,92,104,105,105,96,78,104,102,109,108,110,102,105,97,112,103,91,94,102,100,101,101,118,107,110,116,102,108,105,103,84,110,106,105,100,113,101,104,108,100,95,100,96,101,98,108,114,122,100,122,101,110,103,107,111,109,103,111,101,117,104,97,97,107,97,99,108,97,91,104,98,101,99,96,101,104,99,94,105,116,109,104,104,98,92,101,101,106,117,112,103,115,111,104,111,100,102,109,109,103,106,104,88,101,80,92,98,115,107,96,98,116,100,112,111,108,97,106,94,104,119,96,115,112,117,100,103,111,105,103,92,104,102,101,99,115,95,105,103,96,92,94,106,116,117,101,112,93,106,94,92,113,104,111,99,112,104,114,112,98,92,115,109,100,105,105,107,102,106,113,105,111,104,111,117,103,96,112,98,109,101,87,98,97,121,105,100,107,102,115,94,94,97,107,120,95,104,110,113,109,98,95,107,100,109,96,91,102,100,99,104,105,105,109,114,111,101,108,102,109,110,95,102,96,108,107,99,95,101,108,98,107,109,101,96,96,101,115,114,106,91,111,91,111,109,98,96,105,105,105,111,97,103,101,99,121,101,122,120,87,97,91,101,86,99,109,101,101,108,95,103,103,102,108,103,104,108,95,105,96,101,109,105,103,101,111,93,98,108,102,106,113,100,103,95,106,93,107,105,103,103,95,103,101,97,102,101,102,100,109,111,108,120,114,94,101,97,101,102,107,117,98,102,108,95,113,102,103,100,108,127,94,106,103,98,96,104,104,105,110,92,99,115,101,102,99,91,112,88,102,105,106,103,103,95,107,95,103,106,103,111,104,104,97,111,105,101,106,111,109,93,104,100,108,92,98,102,101,98,113,106,108,108,106,101,101,106,105,103,101,103,102,107,99,98,97,105,109,103,111,91,97,101,98,99,99,105,100,102,99,119,107,98,112,107,108,103,73,107,101,101,106,100,95,109,108,107,104,97,104,107,96,109,103,116,102,110,105,109,96,105,101,96,106,123,114,93,100,104,104,98,105,112,108,107,94,110,111,104,113,105,96,90,130,102,102,103,110,101,100,96,97,99,113,100,93,103,103,94,100,88,112,104,98,101,101,104,91,100,109,124,95,109,106,104,103,109,103,108,107,91,105,95,102,105,110,99,109,101,106,100,101,111,101,116,106,94,96,105,97,96,108,102,105,105,91,97,120,102,105,106,112,109,92,106,95,104,100,96,102,103,109,97,116,106,103,98,94,108,105,105,117,102,105,99,98,98,100,100,109,113,103,105,103,102,103,105,100,91,109,99,100,109,97,91,120,94,95,106,101,108,83,96,100,99,92,102,91,100,109,103,96,92,102,106,107,108,104,97,109,106,84,101,99,97,108,112,97,106,103,94,98,99,99,111,107,95,103,106,98,98,97,113,108,113,97,108,101,104,100,95,101,97,98,106,116,113,108,104,113,100,94,117,90,95,111,101,106,98,96,95,104,96,106,72,101,104,113,105,100,92,96,106,115,100,105,100,100,108,92,101,110,105,139,126,113,114,97,108,96,105,98,108,98,95,86,102,107,109,105,118,109,99,101,100,107,102,99,97,114,99,102,90,103,108,105,100,100,105,109,97,112,102,109,103,106,105,110,116,100,108,106,106,116,105,91,102,102,105,116,91,118,100,105,113,95,102,93,112,103,100,102,98,89,110,120,104,116,106,109,96,105,87,117,74,103,112,103,110,109,101,108,100,95,110,95,106,100,95,110,101,104,97,103,80,102,104,105,97,117,109,98,104,94,104,102,99,106,99,106,91,93,106,95,92,104,98,105,111,94,102,105,96,98,97,104,117,109,110,109,111,86,119,95,103,95,106,116,98,95,101,100,76,99,101,106,107,113,102,112,105,101,91,92,106,120,100,111,112,103,98,108,99,114,98,91,99,100,106,102,93,103,110,97,116,105,101,121,98,106,94,98,95,102,98,97,111,104,99,101,92,101,100,103,86,107,105,107,104,103,112,100,102,101,95,93,106,112,109,103,102,113,95,114,99,106,96,103,100,102,109,108,103,100,90,105,101,100,92,99,101,102,99,104,100,107,98,100,107,103,111,103,97,101,95,107,100,83,111,98,100,78,108,94,103,97,106,104,103,99,95,105,110,95,91,106,112,106,96,84,106,109,93,95,101,101,105,98,95,89,103,100,105,89,94,93,102,108,104,101,104,102,109,91,109,95,106,114,102,100,84,113,97,85,116,109,98,106,106,105,87,94,95,101,98,96,106,107,89,97,104,92,98,109,106,100,108,94,97,111,113,94,125,87,93,109,96,96,100,111,100,98,109,98,94,100,106,95,95,83,100,106,94,109,97,102,121,100,106,112,96,129,105,102,103,99,89,102,102,80,93,89,97,113,92,100,80,105,102,99,102,113,95,90, +437.52036,94,103,99,95,104,102,117,95,101,105,114,95,95,98,110,100,94,104,103,104,96,109,97,100,94,97,113,93,104,93,102,99,92,93,100,102,103,103,103,106,110,93,96,96,105,116,91,113,108,108,104,67,94,101,108,96,96,102,112,88,97,112,106,99,105,108,92,99,94,103,97,114,94,106,88,109,95,105,111,132,107,87,104,94,106,105,106,102,113,103,105,92,99,96,101,104,101,99,109,109,109,95,92,109,102,94,110,104,101,90,93,109,94,92,102,102,104,111,105,105,101,97,97,107,101,118,112,102,103,101,107,118,99,99,96,83,95,97,97,107,102,103,106,106,95,89,112,98,104,87,104,78,96,93,100,90,97,95,105,104,97,103,97,104,108,111,108,101,100,104,106,109,100,109,89,109,98,106,107,105,105,105,115,103,103,98,104,93,109,100,96,97,103,102,112,103,104,98,97,97,111,109,95,97,90,99,86,105,112,113,101,93,99,103,108,98,99,98,108,111,101,102,97,101,100,110,110,102,100,106,100,103,104,101,113,109,114,108,110,81,106,95,99,113,91,96,111,99,104,100,104,112,105,120,111,98,108,99,107,106,119,108,102,94,98,91,106,105,105,94,105,96,94,107,111,129,114,128,122,107,102,110,104,106,99,97,97,104,91,98,106,100,99,107,107,103,109,103,103,94,105,89,114,109,95,104,108,110,106,106,100,107,113,113,105,99,106,96,97,100,114,106,95,99,105,114,110,104,110,108,106,112,107,108,101,108,101,99,106,103,99,100,105,90,96,102,103,105,102,110,108,106,115,100,114,105,102,96,109,91,101,102,105,101,100,103,103,77,115,90,102,108,107,108,102,97,78,105,96,105,103,94,100,107,99,97,105,86,112,105,122,102,94,119,111,101,98,109,100,107,101,102,105,108,105,93,109,109,95,107,95,104,109,103,102,98,94,92,100,114,93,102,100,92,102,106,101,96,109,111,99,104,96,111,116,110,97,123,99,107,101,109,105,100,110,91,76,96,104,112,105,97,107,103,105,102,95,98,111,101,101,100,109,107,109,107,99,97,103,112,104,110,100,116,103,102,94,117,94,95,90,109,113,105,103,94,116,102,89,106,102,102,109,101,94,103,96,104,99,104,101,113,98,104,91,115,103,98,105,121,111,110,106,97,101,102,104,99,99,90,89,100,103,100,107,102,107,106,100,120,104,100,107,110,94,105,101,102,116,109,88,106,101,90,108,106,112,100,103,95,114,107,104,98,112,121,117,96,106,108,107,101,107,116,95,102,86,111,102,103,86,98,105,107,101,108,109,94,106,106,112,107,107,103,112,101,94,106,106,94,114,113,100,95,114,107,98,102,95,94,94,107,111,93,108,116,100,103,109,105,111,101,105,92,106,102,92,107,121,106,115,106,103,105,101,107,110,117,107,113,74,103,103,116,90,125,108,92,100,94,108,105,103,103,101,101,124,86,96,110,87,110,107,99,99,103,96,101,102,115,108,106,101,99,107,112,116,92,103,101,120,103,106,101,89,116,100,106,100,102,109,102,102,104,99,95,109,90,102,101,91,102,103,113,106,114,104,116,109,106,87,100,98,109,106,95,105,115,92,99,91,108,105,87,100,110,96,98,110,109,113,98,107,99,89,89,104,98,112,111,111,115,108,97,113,114,103,106,108,98,118,98,99,97,105,102,99,103,106,97,114,102,104,101,102,109,109,114,110,96,111,102,110,101,107,119,101,95,99,92,102,96,98,97,100,106,101,109,89,98,88,103,101,109,101,112,98,99,105,107,105,93,113,110,85,107,111,112,104,114,103,108,96,106,102,103,102,101,112,99,111,100,109,105,110,105,107,114,109,113,95,102,105,97,107,112,109,94,108,101,110,93,102,122,109,96,106,101,106,102,90,114,104,113,107,93,95,104,112,91,103,99,114,102,99,110,108,116,116,108,110,100,95,108,101,102,100,103,111,107,106,102,107,108,95,117,116,99,94,107,90,114,101,104,109,123,96,112,105,105,116,106,100,110,123,103,104,101,104,128,109,104,102,105,104,105,117,106,97,109,98,104,113,101,102,98,95,120,101,107,104,102,118,103,99,117,109,110,101,102,105,127,112,106,105,101,99,114,100,106,78,109,106,101,98,103,101,101,106,111,108,95,105,110,107,87,126,122,95,107,105,99,110,117,116,94,108,100,97,99,96,99,102,109,113,95,101,102,96,102,103,102,104,106,108,91,105,100,105,116,113,100,84,94,103,103,102,103,106,105,101,107,100,104,108,99,110,95,109,108,95,104,100,111,91,114,103,95,98,111,92,105,103,94,100,101,98,109,81,84,105,111,102,100,106,110,117,108,114,105,105,98,103,103,100,134,108,105,108,97,109,115,102,101,112,98,95,105,79,108,94,104,104,103,108,106,103,101,109,114,104,113,102,104,119,106,92,101,89,96,116,99,104,101,111,108,102,96,106,104,117,99,114,95,105,100,96,99,113,100,101,92,97,87,97,101,109,97,98,106,108,109,98,89,114,94,106,91,96,102,101,94,73,97,102,83,108,108,101,97,111,120,105,107,103,96,93,100,105,97,80,99,96,113,100,91,99,108,102,103,109,108,102,100,103,92,116,106,101,98,101,97,98,86,97,99,83,105,103,119,102,96,103,110,102,95,98,100,102,109,104,93,84,107,96,95,112,108,109,92,105,110,104,126,88,107,104,110,110,105,94,107,101,103,112,98,95,106,103,100,95,103,96,95,108,110,114,110,102,105,90,108,101,96,116,88,104,100,121,103,100,105,88,107,102,111,111,104,113,116,104,98,104,99,92,99,103,104,104,94,120,118,99,108,108,98,106,108,88,116,111,109,103,109,110,97,97,110,102,110,104,98,99,103,106,96,105,106,93,99,105,109,111,99,94,107,107,111,100,101,99,104,100,96,106,111,101,94,104,101,103,110,102,97,106,108,100,108,110,104,95,105,96,100,115,101,103,111,111,93,110,104,99,106,112,91,110,105,100,98,104,101,92,106,109,100,95,98,103,102,102,98,111,112,103,108,102,88,102,99,107,100,92,102,90,100,98,96,98,105,103,107,113,101,99,102,102,97,104,110,100,110,97,111,101,99,80,104,105,95,104,112,97,113,99,94,100,79,101,87,104,98,110,99,109,102,91,107,124,84,96,96,95,111,97,102,99,105,102,96,117,94,108,109,102,92,108,107,97,103,105,112,97,88,96,111,108,96,104,108,116,83,103,97,91,101,93,100,95,105,97,91,102,102,87,95,93,113,109,101,101,97,96,102,101,110,104,100,102,93,101,87,101,103,103,100,99,101,104,97,106,99,99,91,97,102,108,105,113,108,94,105,108,91,95,100,104,109,102,102,104,102,92,107,100,102,113,102,110,101,94,100,104,113,102,114,94,103,109,105,105,102,115,107,92,85,99,96,99,114,96,100,103,96,96,109,107,94,89,98,110,99,91,88,94,86,110,95,95,80,98,98,106,102,100,103,93,102,91,88,106,104,106,108,100,96,98,100,106,122,104,111,104,109,106,110,96,100,97,109,125,107,97,105,83,111,100,110,111,104,100,102,95,115,107,104,106,113,100,108,87,100,99,110,107,100,98,97,94,101,99,102,128,106,106,100,97,103,108,91,104,109,108,99,88,101,90,105,98,94,99,106,93,93,109,100,101,98,111,101,105,100,83,105,106,113,103,106,99,96,104,94,92,98,102,94,95,94,103,98,103,106,102,100,107,113,102,114,102,109,99,98,101,101,106,110,95,99,106,106,96,112,112,119,98,106,119,96,99,105,113,97,99,97,103,109,101,108,93,91,81,105,98,108,96,112,110,98,96,93,106,100,93,109,99,100,104,96,94,101,105,100,99,99,98,105,102,105,108,98,105,105,89,106,84,91,102,102,100,96,102,95,106,119,87,97,101,98,110,98,97,91,101,120,97,98,87,90,91,99,91,104,101,110,101,99,87,109,79,106,107,113,98,98,109,99,95,104,92,110,102,87,107,92,77,100,98,106,99,91,108,102,94,110,114,109,109,105,108,78,92,94,103,92,65,99,97,94,101,90,93,106,104,129,107,104,99,114,99,113,96,101,107,106,103,99,99,87,103,100,107,98,105,103,102,99,109,104,101,97,109,87,102,94,104,104,81,106,93,103,100,99,113,108,100,113,106,107,107,105,107,98,91,94,106,93,94,104,109,113,99,92,92,93,104,102,110,106,94,94,107,112,99,109,116,105,94,104,90,103,104,105,118,107,109,101,101,101,104,108,96,117,97,104,93,109,107,95,102,104,96,96,106,101,105,98,91,108,97,107,114,102,105,101,104,98,108,86,108,108,102,91,103,99,98,100,98,110,107,102,91,109,117,109,102,102,107,99,103,113,103,95,104,96,85,101,101,96,102,104,109,93,101,103,96,97,103,99,109,93,105,80,110,95,105,94,101,107,98,106,110,112,107,105,100,105,90,101,105,104,113,95,66,121,114,119,85,96,96,89,123,107,117,100,98,96,104,93,102,102,95,95,100,98,106,98,104,95,115,109,101,106,97,94,102,109,118,104,97,101,96,100,94,102,94,101,110,87,94,85,110,107,100,102,80,107,96,108,101,102,98,90,104,75,112,94,104,118,105,96,98,107,94,97,100,106,117,95,99,105,96,112,94,102,97,101,106,82,109,104,96,105,107,106,103,99,97,96,95,97,116,97,92,101,96,102,107,97,94,110,105,94,107,115,86,101,101,104,102,98,101,102,110,92,94,92,104,107,109,105,90,87,99,101,105,102,90,113,103,97,103,100,98,84,106,97,90,80,96,99,104,107,95,104,89,107,115,93,98,98,99,106,98,101,103,101,99,96,114,111,101,99,91,97,100,99,106,109,97,85, +437.66068,118,98,91,103,97,109,111,104,102,101,103,92,101,100,102,118,97,118,105,123,97,111,101,119,92,105,99,95,108,95,117,112,96,89,97,109,101,101,88,101,106,100,98,102,119,106,95,105,93,104,104,92,74,96,97,92,100,102,105,85,101,98,105,98,103,106,109,102,106,106,107,110,90,106,101,105,97,99,99,94,117,102,98,99,76,94,96,102,106,104,103,114,97,102,100,91,112,76,90,107,99,114,105,132,89,105,103,112,94,94,95,94,99,92,104,113,100,110,102,101,115,120,109,108,104,104,97,99,104,98,94,113,96,113,119,92,108,109,86,105,105,99,99,96,106,94,99,104,93,96,97,100,99,89,105,101,115,107,98,97,108,94,109,100,100,97,109,92,105,113,104,97,100,99,90,101,102,92,103,73,97,102,109,117,105,102,99,100,103,101,103,103,101,96,106,107,99,108,100,109,103,105,104,102,96,98,87,103,109,103,89,106,111,93,101,92,103,94,100,98,113,109,103,108,97,113,100,110,105,91,97,95,89,87,109,94,106,117,101,92,104,109,112,102,93,103,92,101,96,118,100,105,100,95,107,107,108,104,104,108,103,97,109,101,105,99,103,91,105,99,109,109,106,106,116,106,108,105,109,92,100,101,97,111,103,109,99,101,101,104,108,112,103,94,111,106,95,111,108,102,99,95,120,96,91,104,110,101,105,108,92,100,98,101,94,98,102,107,86,99,104,107,110,103,100,103,88,95,109,117,104,101,95,94,104,107,106,100,95,107,80,103,102,96,104,115,106,115,98,86,103,101,104,100,110,98,106,79,108,99,102,108,103,106,108,104,99,103,107,101,103,106,103,111,102,92,106,117,94,103,113,96,107,119,107,97,102,92,100,101,114,107,100,122,105,97,107,104,96,92,108,108,100,102,102,97,107,109,102,112,93,109,99,110,105,98,113,110,113,105,105,100,102,101,106,104,98,101,100,108,92,107,108,110,114,113,91,107,104,87,119,99,87,95,97,97,107,111,101,100,98,104,100,116,96,104,101,97,111,105,100,96,96,97,104,93,109,99,106,103,97,115,113,92,95,101,101,98,100,103,106,108,109,100,100,107,100,99,134,101,96,111,109,116,100,99,94,99,97,106,101,106,102,108,96,105,103,113,100,111,108,105,106,102,100,109,96,106,108,105,99,101,104,115,102,93,105,102,96,110,106,113,99,103,107,103,95,111,101,108,95,102,104,88,109,103,100,99,101,111,101,96,101,103,104,96,105,100,92,116,105,105,115,100,99,105,100,95,104,102,95,98,106,99,104,87,109,95,121,115,100,103,103,108,100,90,104,105,124,96,88,113,94,100,103,101,104,102,107,110,101,101,106,109,96,101,106,97,109,68,103,79,108,107,101,99,100,92,100,98,102,98,99,106,103,110,103,94,96,109,106,107,81,93,107,94,99,96,96,88,117,112,101,105,103,95,103,92,95,103,103,98,105,110,99,115,91,99,100,111,108,92,98,109,97,93,105,94,104,94,98,95,108,95,104,102,102,107,104,90,98,105,112,100,96,106,103,98,114,101,98,89,98,99,109,91,99,105,104,90,101,109,101,101,105,99,98,106,113,105,115,99,87,94,94,98,105,101,105,94,97,103,101,103,109,101,100,105,101,103,110,109,108,104,91,114,111,101,121,102,94,107,100,108,91,115,107,102,114,104,113,101,105,114,118,94,73,122,130,101,117,92,102,103,98,100,96,99,99,93,101,88,94,83,110,88,93,117,100,106,99,101,100,111,99,109,110,95,111,95,91,99,104,110,105,94,104,109,99,108,83,89,99,107,110,107,96,98,98,102,111,92,104,100,97,91,103,98,87,97,109,99,69,104,100,121,101,100,103,99,95,105,102,99,109,95,102,103,99,110,103,117,103,93,102,91,93,81,102,87,103,103,96,94,98,103,102,96,102,102,105,102,111,102,111,96,88,112,105,105,117,117,99,103,112,105,126,90,119,109,91,100,99,99,94,97,85,104,115,113,115,98,86,109,104,105,118,107,103,101,99,104,91,112,103,104,102,109,91,94,99,99,105,105,93,97,106,107,103,129,100,103,105,106,112,104,93,99,101,104,108,102,99,103,92,91,97,106,95,103,96,108,106,91,103,112,121,105,101,107,100,76,106,100,95,113,90,110,91,111,95,106,103,89,116,101,99,96,102,91,107,99,100,95,116,109,90,95,100,108,104,104,121,97,96,96,105,103,98,101,105,107,110,95,100,92,100,104,104,102,93,118,94,97,113,117,108,105,108,96,91,95,100,109,97,96,96,98,95,107,105,102,124,96,104,107,96,114,101,97,95,109,108,102,104,87,116,107,100,90,109,109,92,109,97,97,100,92,95,111,99,111,104,101,97,111,99,109,96,109,104,105,100,103,102,85,102,93,100,100,101,102,105,107,116,105,102,112,105,89,84,97,98,110,97,107,113,102,105,108,105,101,103,96,103,103,107,106,110,107,104,100,110,102,77,106,101,91,102,113,109,115,113,116,113,106,98,91,103,109,106,96,101,112,75,100,88,95,108,106,104,108,112,95,109,116,97,87,95,117,118,92,97,110,110,111,111,107,108,123,108,88,112,113,92,100,124,105,101,107,95,108,100,97,74,108,100,75,109,75,102,104,98,106,115,109,108,93,101,95,109,117,109,119,98,99,100,109,89,91,89,100,101,111,95,113,87,100,106,103,104,97,112,91,120,99,104,104,103,101,113,109,98,104,108,105,105,114,107,115,101,106,99,106,118,101,96,99,103,100,96,110,104,108,100,99,99,102,114,105,130,104,99,101,99,105,99,103,106,101,103,115,98,107,93,98,102,97,95,106,105,100,107,95,103,102,108,113,99,101,107,110,102,104,92,109,103,109,106,110,91,107,111,111,99,90,102,94,107,110,103,107,95,103,105,103,106,96,109,104,111,96,100,100,95,97,99,102,91,99,91,108,95,96,100,102,97,101,111,88,96,101,103,93,108,100,107,108,93,115,104,106,107,97,99,106,102,95,102,98,104,113,108,107,110,104,115,103,104,103,93,113,107,114,87,105,101,115,97,105,101,101,115,100,108,102,106,99,95,106,106,104,100,101,99,103,109,95,108,89,106,104,104,117,103,97,103,111,99,102,102,103,112,105,95,100,110,108,99,103,103,94,103,107,106,98,114,104,91,99,98,101,85,100,104,98,107,116,108,109,85,92,87,113,83,99,107,97,76,103,93,109,110,106,106,108,100,102,105,99,103,110,113,108,113,98,97,113,111,99,103,111,95,100,106,104,110,103,115,128,104,103,104,105,112,109,103,98,107,99,108,105,103,111,99,106,102,99,101,114,115,119,107,102,99,104,103,97,95,100,104,110,92,113,107,91,101,113,105,91,97,104,94,104,110,91,96,108,99,110,104,107,102,102,97,107,109,87,109,95,99,92,100,106,88,105,108,99,98,95,100,115,105,93,84,113,98,103,107,99,98,102,102,104,117,100,101,95,87,103,112,103,106,102,103,103,102,113,103,103,95,97,101,100,115,115,107,96,92,96,106,84,112,103,109,103,109,93,110,104,93,99,103,97,106,110,99,106,117,99,102,102,107,99,98,93,95,94,106,108,98,102,116,101,99,104,93,100,95,107,117,110,103,103,94,102,97,116,107,102,103,86,91,100,106,95,98,105,92,99,96,91,98,106,105,112,99,99,107,106,101,105,113,98,102,98,112,108,115,98,98,106,98,106,102,106,105,106,117,101,101,88,87,114,102,98,102,102,105,102,97,103,102,118,100,101,109,109,101,108,102,109,105,106,101,96,115,99,102,111,104,103,99,98,81,104,105,116,106,99,100,103,100,102,113,112,99,106,105,91,87,90,88,92,104,99,111,102,85,121,95,112,113,94,99,102,104,100,99,105,93,104,100,103,97,101,107,102,105,104,99,117,95,106,95,102,104,88,109,98,107,99,94,103,100,107,104,107,95,117,101,111,102,100,108,113,86,101,105,109,97,99,67,96,99,108,108,95,117,104,113,113,102,97,107,103,107,91,99,98,104,111,102,93,96,101,110,98,101,96,98,104,91,103,98,104,109,103,100,115,68,102,116,98,112,107,106,113,105,97,124,95,104,101,103,102,95,112,108,95,101,94,107,90,105,105,111,108,89,107,104,96,110,105,105,94,104,115,92,98,96,78,99,97,91,94,64,87,106,98,103,101,95,106,103,97,100,125,102,95,107,92,95,100,84,112,92,105,88,107,100,104,106,96,101,93,104,101,101,109,103,104,99,118,89,137,96,82,100,103,110,109,105,108,102,102,117,99,113,90,104,96,102,106,109,109,105,99,105,95,97,97,105,103,106,110,109,110,115,103,94,110,105,81,99,112,94,100,90,105,102,94,104,96,111,95,94,90,102,109,99,93,97,92,104,105,104,101,78,97,102,106,96,98,101,101,101,104,109,106,98,105,95,103,103,99,92,102,97,102,95,107,98,98,92,99,104,108,99,93,105,96,98,105,103,105,98,103,97,103,100,104,99,97,103,90,102,103,118,93,104,105,104,89,98,110,105,103,97,97,93,103,97,70,102,108,100,117,98,103,104,91,110,97,98,108,96,102,108,94,101,97,106,101,110,102,103,99,104,113,101,101,96,103,95,105,107,98,99,96,101,101,117,101,95,97,105,111,90,98,97,95,97,103,92,101,103,106,87,96,97,101,104,97,114,111,104,93,112,104,110,94,98,94,95,98,90,102,107,91,95,96,66,88,108,109,123,100,93,96,109,101,76,105,96,97,108,89,90,99,102,97,94,103,104,97,105,111,97,96,105,94,105,102,94,95,101,102,102,98,102,98,113,91,122,102,95,107,91,92,100,102,112,95,102,88,98,106,84,108, +437.80099,98,105,97,109,110,103,95,96,104,120,102,91,89,102,94,100,97,87,105,142,101,100,92,102,98,99,104,95,99,119,121,112,115,91,102,97,96,100,104,87,111,97,99,101,100,97,107,112,94,93,91,87,98,116,106,107,102,102,102,102,111,103,114,81,100,99,102,99,94,108,99,114,94,111,89,100,92,99,88,107,107,116,105,99,98,97,102,98,105,108,95,102,108,99,96,98,96,100,105,108,97,96,98,88,106,103,105,105,104,86,104,100,111,97,110,107,101,103,108,92,119,104,108,96,117,110,110,103,119,112,92,95,107,100,107,108,104,104,100,96,95,115,99,98,99,104,106,102,106,124,106,98,102,100,98,95,104,109,101,102,108,103,120,103,110,115,98,104,110,111,102,96,103,95,104,103,122,113,97,103,83,107,104,84,96,102,106,100,103,110,103,87,113,98,97,105,98,107,101,103,108,116,104,113,98,104,101,109,106,85,115,104,85,105,98,82,120,94,91,121,104,107,112,103,98,102,102,94,110,113,98,108,102,120,99,113,106,102,110,100,110,101,116,105,93,103,104,97,119,99,111,98,96,102,101,117,105,111,92,103,100,110,81,109,101,100,117,111,95,105,99,102,102,103,104,100,98,114,105,96,75,91,106,107,104,104,91,106,101,110,102,105,101,96,116,104,117,108,100,102,104,104,98,105,116,99,101,109,105,102,99,113,100,96,104,112,98,106,113,110,91,107,107,104,100,101,102,94,105,102,82,102,116,105,112,106,96,104,85,104,107,102,112,98,105,103,103,99,94,98,110,103,105,103,102,97,90,114,116,116,101,102,99,100,113,104,108,115,96,95,103,99,115,94,114,99,102,103,107,100,120,110,106,109,112,104,100,106,113,108,114,97,94,116,104,104,103,112,91,103,104,98,100,99,112,100,108,111,104,100,121,102,109,100,113,98,107,107,130,97,91,94,103,110,94,94,100,98,97,109,104,94,101,87,101,107,93,104,96,100,99,96,96,114,107,104,102,106,108,103,113,105,95,99,105,106,105,103,96,104,101,101,113,100,100,109,108,95,117,98,114,118,98,113,100,97,122,105,98,100,113,108,113,105,96,109,95,107,100,105,110,99,99,104,97,109,95,111,97,95,104,100,102,107,103,104,101,97,105,99,104,103,102,113,100,101,99,91,104,103,120,102,107,102,113,114,101,110,105,95,103,114,105,101,107,104,112,99,110,96,102,106,104,110,98,107,95,98,113,113,117,103,110,119,97,105,113,99,102,103,105,112,108,93,105,107,107,112,106,99,101,102,109,104,105,106,95,113,109,103,103,101,113,100,95,96,102,105,106,102,114,101,103,112,95,108,102,98,108,102,111,105,115,95,95,94,81,101,100,96,101,104,103,94,102,109,105,99,104,134,105,98,95,97,96,91,101,101,95,96,106,105,96,106,107,104,106,99,114,102,102,96,101,97,104,97,114,90,110,101,96,102,105,92,97,102,102,104,102,108,117,106,97,100,101,98,106,97,96,112,113,112,110,92,96,115,101,121,113,102,104,97,99,113,112,95,99,102,102,103,104,103,104,108,106,105,110,103,104,94,101,94,98,100,93,107,85,99,94,105,104,94,99,96,109,103,117,107,93,105,96,99,105,100,87,95,105,105,110,124,112,108,97,93,95,102,105,103,106,94,110,97,91,112,104,95,104,111,110,117,95,79,102,108,98,101,92,110,106,106,104,102,94,103,92,103,112,108,104,98,114,110,106,103,99,106,92,96,100,106,114,109,104,100,99,106,102,112,79,104,108,96,105,107,96,112,88,114,94,98,104,106,98,101,114,109,114,109,105,108,100,95,100,101,103,88,101,119,111,105,97,103,95,119,115,94,104,94,102,103,109,99,106,97,99,102,110,100,109,102,95,111,106,100,95,99,96,98,109,105,108,108,98,106,104,113,111,113,105,103,102,93,120,101,111,98,101,103,104,105,101,97,105,98,111,99,117,99,101,105,109,106,105,98,105,105,110,117,88,104,99,106,105,105,104,104,105,99,114,98,111,109,119,109,106,96,97,103,104,109,114,106,111,116,95,109,100,102,92,107,105,107,107,79,107,104,109,101,104,106,101,108,110,105,81,103,100,102,98,105,110,109,114,100,103,103,107,108,95,111,103,111,104,110,113,104,110,107,113,115,116,100,97,104,106,103,98,95,108,108,94,105,111,100,100,107,100,114,107,106,104,110,106,106,103,104,111,107,101,94,96,102,113,99,99,103,94,99,98,111,104,105,99,102,114,89,117,101,97,95,109,110,101,108,115,102,96,116,107,97,102,93,100,102,117,112,98,97,104,106,120,117,110,103,94,101,100,110,102,105,83,106,108,105,106,95,99,104,98,108,107,109,106,111,110,103,116,99,87,102,101,106,109,108,99,106,105,104,100,102,94,104,103,106,84,105,115,105,95,102,95,97,87,107,74,103,103,90,104,102,105,97,95,100,105,110,98,104,106,110,99,101,99,87,103,100,105,115,106,111,94,106,102,107,111,94,110,95,94,98,104,106,106,108,117,110,106,103,103,92,96,104,92,100,123,98,96,101,100,110,104,104,101,120,94,100,100,99,133,105,105,91,106,106,81,109,99,100,103,106,107,104,113,104,104,104,107,105,96,97,110,110,113,118,103,95,95,109,105,101,98,95,100,96,94,107,107,107,93,93,103,106,105,103,108,100,91,94,98,112,105,109,105,88,99,122,103,102,99,98,101,104,101,99,102,99,95,107,94,103,93,103,99,90,95,93,102,106,117,92,103,108,94,101,110,98,94,105,104,102,107,83,102,112,87,103,105,90,114,102,115,103,103,110,103,90,83,107,117,110,101,103,97,90,92,94,92,102,87,106,90,103,112,99,99,98,105,105,99,103,111,105,101,92,99,113,97,101,106,111,96,106,101,101,84,89,100,102,95,101,103,101,98,99,84,107,102,95,102,88,99,105,97,106,117,107,103,102,101,99,98,99,97,101,111,88,98,105,94,105,113,88,97,110,98,105,108,95,98,102,98,102,105,114,109,110,98,116,106,93,97,122,102,106,104,95,78,99,99,104,119,113,109,120,103,106,99,100,106,117,99,102,91,109,104,100,100,103,97,95,99,107,111,97,96,110,102,99,97,106,99,91,106,109,100,98,107,109,100,100,98,102,100,93,103,115,97,100,94,94,102,105,91,96,110,104,87,109,103,105,100,102,96,100,94,97,106,110,95,94,103,88,108,103,99,104,87,110,96,104,95,103,98,94,99,95,92,82,113,100,97,87,97,111,95,107,102,98,113,100,99,107,112,107,100,99,107,100,98,96,102,103,96,99,115,94,92,100,97,98,101,97,95,103,93,105,102,104,109,90,106,95,89,100,102,102,100,97,111,81,102,94,99,106,95,103,120,74,97,96,107,99,109,97,101,107,96,101,96,111,106,98,100,102,101,101,101,95,100,105,94,95,100,94,113,105,103,103,101,97,98,113,98,107,102,107,99,101,79,96,106,102,106,107,94,117,95,103,106,101,105,105,110,93,109,98,86,101,103,105,102,101,95,97,88,109,87,106,94,101,98,90,104,90,101,99,102,100,98,91,87,109,103,110,100,99,105,107,106,112,93,121,101,100,110,94,104,93,107,115,103,112,107,103,101,101,89,105,97,101,108,107,108,99,96,94,93,101,100,111,93,98,94,112,95,93,109,99,92,113,101,116,105,93,94,106,103,94,96,101,100,106,94,94,94,109,109,87,109,96,96,98,103,101,94,99,93,112,106,103,93,107,107,102,94,102,98,95,107,97,85,91,111,96,105,113,96,110,81,99,103,109,97,107,113,100,109,102,102,91,103,106,102,112,100,98,102,95,106,97,96,99,104,95,112,100,98,100,92,117,100,97,98,106,104,111,98,95,102,94,102,107,102,102,100,138,99,114,104,95,104,108,95,96,107,102,95,102,106,104,99,95,111,103,88,111,115,105,95,106,121,94,102,108,112,104,88,102,110,92,101,92,108,94,102,98,103,94,103,99,96,105,97,96,104,101,105,100,94,112,117,101,112,102,116,89,122,114,93,105,96,98,103,105,98,111,100,100,96,105,98,108,111,102,93,108,104,111,105,103,108,99,104,96,103,96,93,98,101,103,109,103,94,91,98,95,98,95,95,92,106,89,97,106,106,101,102,101,104,109,97,95,103,102,98,98,114,106,97,93,108,106,106,91,107,101,95,103,98,102,111,95,96,117,94,84,113,99,102,115,111,93,112,93,109,92,105,99,87,106,98,104,104,126,99,93,105,104,98,98,113,90,121,97,105,82,112,117,99,92,103,102,111,100,90,99,106,104,95,95,91,92,100,104,94,95,99,99,109,102,104,108,98,97,91,114,93,112,100,101,101,93,109,87,98,104,92,86,98,87,112,108,100,93,97,97,97,108,101,92,92,108,98,104,112,90,96,105,101,110,95,106,104,105,114,103,102,93,109,109,101,107,107,97,110,94,102,109,98,103,98,97,112,110,97,117,98,129,99,109,92,84,98,99,99,102,114,101,117,96,102,99,97,91,109,112,92,88,92,93,89,98,101,110,116,97,106,95,110,87,98,109,101,95,94,94,101,95,109,94,106,96,98,101,106,102,102,107,97,105,95,89,94,95,98,110,109,107,111,89,79,111,109,99,104,88,106,97,89,103,102,108,105,105,92,112,99,97,104,105,92,103,109,120,105,114,108,103,99,115,123,89,108,113,98,97,92,98,67,93,99,95,94,97,97,89,94,109,100,97,90,87,100,91,96,117,105,100,77,108,100,109,108,111,106,92,108,101,90,111,95,94,65,103,115,117,87,100,103,102,112,98,101,100,92,93,105,103,102,97,119,77,110,95,93,108,94,89,81,93, +437.94131,92,90,107,92,94,108,104,109,114,94,106,111,94,107,105,107,84,115,91,97,106,101,100,108,105,95,101,111,98,109,104,104,116,101,98,95,98,99,94,105,99,98,103,92,96,97,105,98,91,106,93,88,102,92,117,82,100,91,108,86,100,97,100,88,101,100,85,113,108,104,86,101,106,107,95,113,86,100,103,102,101,106,102,101,102,94,91,99,96,86,115,102,100,95,115,101,98,94,91,112,94,99,101,84,96,108,97,97,64,93,95,102,109,105,106,99,108,105,105,102,106,98,107,100,87,101,91,92,104,100,97,120,102,94,101,97,113,100,93,87,94,103,99,106,99,106,106,97,93,98,95,103,126,90,100,118,111,104,83,106,92,93,111,99,98,99,91,103,97,90,103,99,91,101,104,97,95,96,120,97,116,99,99,104,104,109,100,90,88,107,109,89,94,110,106,104,99,109,102,110,96,98,108,107,116,94,95,98,109,99,99,107,118,112,108,104,105,106,102,91,104,112,99,98,110,106,101,100,99,103,97,108,100,113,103,110,107,96,104,105,96,100,116,103,96,106,101,108,97,98,105,99,103,105,100,126,105,109,99,94,101,117,91,89,97,102,104,99,113,111,107,101,115,108,109,98,113,105,99,100,102,103,87,96,121,110,98,103,87,114,92,113,107,101,106,99,107,119,97,109,91,96,103,105,102,114,111,106,105,129,99,103,99,98,105,101,82,104,103,101,92,103,100,104,100,111,111,109,108,108,111,98,108,101,106,109,102,101,98,105,100,104,107,104,96,108,104,108,105,114,93,105,108,109,117,108,75,107,106,102,93,103,91,102,101,99,104,99,99,71,102,94,97,105,102,113,102,87,108,105,97,133,98,98,91,102,101,106,112,101,109,105,84,106,97,107,112,100,109,116,100,95,89,97,99,91,107,95,94,104,93,116,91,99,91,93,95,103,105,99,98,91,95,97,103,98,105,92,104,110,108,99,95,89,108,105,98,101,99,99,115,102,112,110,105,96,118,99,103,99,87,105,99,104,101,105,97,96,104,106,96,98,100,98,105,91,98,112,107,90,103,108,110,102,102,111,100,102,120,104,102,97,111,108,92,110,100,101,111,108,104,98,99,103,102,97,96,110,101,105,117,101,106,105,108,110,71,106,100,102,101,97,105,101,102,107,103,104,106,97,99,98,113,93,103,100,85,106,90,97,105,105,99,110,91,98,100,79,96,107,98,110,80,111,106,94,94,104,92,95,106,103,104,104,105,92,97,103,105,84,98,113,98,101,95,97,107,78,106,99,101,103,104,101,101,103,117,111,102,104,98,102,100,101,112,100,110,85,97,100,107,110,87,110,105,102,102,112,97,98,107,109,101,104,109,108,104,100,97,109,103,118,117,109,104,100,97,109,100,96,110,101,98,109,108,90,105,97,106,98,101,98,107,106,102,104,107,86,100,99,98,99,107,99,93,94,110,104,103,106,101,75,105,104,107,108,99,102,103,101,101,98,105,113,101,101,108,84,97,105,99,103,94,103,98,101,104,106,105,139,88,92,108,96,92,102,108,93,103,90,94,100,90,105,107,105,98,109,91,92,105,88,92,99,97,98,93,114,102,107,114,113,89,105,94,98,91,104,117,96,108,104,98,98,87,92,108,99,91,106,103,98,96,104,102,105,105,105,103,107,99,97,98,104,105,103,109,100,112,100,112,106,99,99,109,104,108,98,110,112,106,95,109,91,105,105,88,104,109,97,112,102,114,103,106,104,104,111,109,104,100,109,99,113,111,108,99,110,97,103,102,96,97,107,107,104,92,102,104,113,97,96,109,102,87,97,105,101,101,101,98,106,98,96,68,123,104,106,112,120,105,103,107,107,101,105,93,98,105,113,112,95,95,112,99,101,105,95,106,100,103,95,99,123,99,96,91,102,104,92,103,98,93,100,99,111,92,96,98,112,80,94,107,105,101,102,96,113,122,107,99,113,109,106,108,107,112,86,101,100,95,83,106,98,99,104,101,110,105,108,106,105,101,109,108,99,100,113,96,107,104,107,100,105,96,104,106,119,95,93,99,100,105,109,104,89,104,105,103,110,100,112,91,102,103,104,99,105,96,102,105,112,93,113,97,102,103,100,116,108,107,109,114,99,99,104,111,113,104,114,110,100,112,101,96,107,89,108,97,107,102,103,103,96,103,112,107,100,102,97,92,104,106,102,106,105,106,95,94,102,94,112,98,102,99,101,101,101,99,105,108,92,111,105,116,92,98,103,75,98,98,82,92,102,109,103,90,112,100,99,98,107,95,106,110,112,103,121,104,102,107,106,103,104,109,105,95,89,96,79,93,104,91,107,103,89,106,113,105,105,111,98,106,112,100,98,91,92,97,103,111,106,105,95,101,92,71,101,101,97,97,104,108,106,98,80,91,104,101,104,98,111,97,103,97,102,103,106,98,98,102,98,108,106,106,109,100,99,118,106,106,105,101,105,115,106,103,97,102,93,105,100,91,104,102,102,90,109,104,104,98,111,99,106,108,104,106,109,100,109,108,97,106,109,105,106,106,101,105,103,105,114,112,96,105,95,93,102,107,100,96,99,100,117,105,96,97,103,109,92,108,65,113,107,108,112,110,108,93,106,106,94,105,108,103,100,106,108,117,96,100,111,108,100,100,100,106,104,107,97,113,101,110,102,97,109,111,101,98,116,101,99,103,105,102,94,90,105,103,113,105,107,93,91,103,102,100,103,105,105,103,115,94,106,96,112,106,109,103,91,76,105,97,103,120,113,104,103,100,83,100,99,101,109,110,99,106,113,111,113,96,102,99,96,111,99,97,102,113,106,108,103,112,107,105,102,104,79,105,111,95,99,92,102,72,91,95,111,100,103,113,101,96,108,97,124,99,103,102,103,101,108,111,92,99,97,105,94,103,97,95,85,103,108,103,104,104,99,105,109,91,108,98,119,95,91,105,102,102,99,101,82,109,103,107,111,106,102,102,111,102,104,107,106,113,110,112,101,111,98,114,107,102,105,105,105,109,100,109,108,91,111,110,105,99,115,101,107,105,92,104,109,90,116,113,100,95,102,105,96,98,110,103,101,99,106,100,103,102,120,106,115,99,117,86,97,94,102,103,96,118,99,99,106,100,92,106,96,102,104,98,98,111,112,109,96,83,100,101,93,112,103,102,113,101,81,89,90,103,100,100,108,99,90,104,98,108,95,94,107,101,91,101,97,101,100,107,99,116,103,105,115,109,107,107,117,103,114,94,110,95,127,105,94,99,95,101,107,93,97,98,89,102,102,87,104,108,110,100,108,113,104,106,114,107,103,100,100,107,109,94,102,108,108,99,98,94,94,86,111,103,106,103,85,106,96,100,111,112,100,99,101,91,97,100,109,113,93,102,94,95,95,109,96,99,106,108,94,118,106,105,94,101,95,99,110,110,100,103,100,97,103,104,110,100,98,106,107,96,108,107,106,98,109,103,103,107,102,102,104,104,102,91,118,105,101,103,107,87,86,103,95,108,102,88,103,120,105,103,107,98,111,112,102,112,100,106,95,107,106,102,105,124,105,102,104,103,103,96,94,104,92,104,112,109,100,102,94,105,83,102,105,102,103,103,129,99,102,94,116,108,106,104,106,98,78,113,87,106,114,102,98,108,114,101,95,98,108,112,101,107,106,101,106,96,99,107,106,104,104,107,99,73,108,114,102,116,101,107,99,106,103,98,112,122,106,92,98,111,104,102,96,98,94,102,108,101,120,95,99,106,93,99,95,107,92,117,104,107,102,101,110,89,103,116,106,106,113,97,94,110,104,105,103,111,110,106,102,102,114,94,100,106,102,103,111,115,101,114,113,111,112,83,107,105,83,108,92,102,102,104,97,95,98,108,99,95,102,101,104,99,94,104,103,98,110,97,106,104,103,98,102,106,94,103,116,92,100,109,97,92,108,100,116,109,90,109,81,99,110,97,103,96,106,100,104,112,106,102,113,104,102,96,123,111,108,105,95,101,105,120,110,99,102,100,107,104,105,117,118,111,112,96,97,107,107,98,97,105,106,104,98,95,93,99,93,106,113,106,104,112,113,111,108,108,112,98,121,95,106,98,98,110,100,106,123,105,98,108,98,103,100,103,100,98,103,101,101,100,102,100,88,104,99,114,98,105,102,100,114,107,108,99,113,109,118,102,112,102,105,105,100,106,103,105,93,106,100,106,97,118,106,113,100,101,112,103,100,97,99,105,109,110,110,105,109,103,104,115,83,102,103,108,104,102,99,107,98,94,97,93,107,107,109,105,97,97,106,108,118,98,99,110,117,115,101,102,109,111,116,95,106,116,104,95,110,102,101,107,92,100,103,115,88,102,106,98,106,105,103,109,106,107,119,100,107,102,108,103,105,106,101,110,108,97,71,94,106,102,111,104,112,102,98,111,120,102,95,107,103,106,108,103,106,101,97,105,104,106,109,116,112,97,107,101,109,101,101,91,99,99,94,106,99,106,112,107,122,112,95,97,106,107,112,114,117,104,109,105,105,98,104,108,108,109,94,102,107,102,111,101,106,106,105,100,100,98,100,101,101,101,96,95,113,110,109,109,110,100,111,121,97,96,101,111,98,117,109,102,101,104,96,107,102,103,107,112,105,116,87,98,105,106,103,95,94,99,106,108,82,107,95,125,106,98,96,104,105,101,104,132,101,103,114,110,106,109,99,78,104,99,109,100,97,103,113,109,95,106,91,113,105,99,98,98,101,110,96,109,105,103,105,127,94,99,101,113,86,93,84,104,89,107,95,110,110,108,101,92,88,97,103,100,113,110,89,101,97,98,94,114,112,107,96,99,92,114,103,82,87,112,102,116,104,95,104,88,107,113,102,113,98,96,96,114,97,100,112,96,65, +438.08167,94,96,93,108,88,107,113,100,101,107,97,106,100,100,93,101,109,102,100,109,101,98,109,117,109,86,108,97,100,110,102,101,94,94,111,104,96,107,99,101,104,100,97,101,104,101,100,100,92,103,100,93,107,94,96,108,114,91,105,92,97,103,94,110,90,96,89,88,95,126,106,100,110,110,98,111,69,98,94,106,102,103,92,104,94,93,88,103,103,100,103,116,120,91,89,108,86,91,86,113,106,111,94,99,75,103,94,108,103,100,95,101,95,98,96,90,101,104,92,87,104,103,100,113,97,98,105,95,105,99,104,90,88,108,113,109,102,105,94,70,94,98,91,90,100,96,113,99,95,90,112,93,106,90,105,101,105,110,93,109,115,99,122,105,101,97,103,101,100,103,102,105,93,90,103,107,106,97,103,105,100,90,122,95,99,96,96,98,108,110,106,106,86,101,132,99,104,114,108,108,103,91,101,101,97,112,93,115,99,100,106,94,102,92,113,110,99,95,109,108,116,104,93,101,107,89,101,104,119,102,99,104,95,99,113,98,100,100,110,115,91,115,125,101,102,98,104,108,104,105,106,109,105,104,95,104,92,104,98,98,92,104,104,88,96,112,96,98,99,103,110,96,95,117,95,109,96,111,100,102,110,99,105,111,105,103,92,113,108,96,104,100,106,98,109,110,109,119,110,102,95,101,103,132,93,106,88,111,108,103,92,108,103,103,94,100,93,100,100,94,97,103,93,107,103,99,95,79,105,108,85,94,104,99,114,104,90,104,96,95,98,107,102,89,97,111,109,101,99,98,100,104,97,104,109,95,80,91,106,97,107,100,118,99,105,95,103,111,106,123,97,93,94,92,100,105,108,112,103,105,98,108,90,105,104,103,94,103,93,107,101,96,92,112,97,98,112,94,99,105,103,102,97,99,101,95,96,97,103,105,100,97,100,99,105,83,96,92,105,98,103,106,104,109,103,82,101,95,95,98,88,100,112,112,96,108,113,102,102,104,103,103,97,97,100,106,99,109,97,111,112,105,97,114,99,102,98,106,102,99,98,102,103,100,104,107,101,102,99,100,111,102,110,111,106,100,103,108,105,94,114,103,103,95,109,92,103,94,102,110,103,97,96,106,110,101,98,100,101,105,109,98,103,105,105,104,101,100,103,100,112,97,101,98,105,91,102,101,95,89,93,101,108,108,92,110,98,105,95,100,98,109,102,100,106,100,105,97,100,99,103,100,86,110,102,93,117,106,103,109,104,102,91,99,107,103,100,110,101,95,101,98,93,95,98,97,96,100,103,108,103,95,95,98,111,104,112,103,103,107,97,101,100,94,98,104,95,98,99,96,99,95,102,106,109,113,105,108,97,95,96,119,105,97,103,105,97,111,106,102,107,109,91,92,106,89,104,92,103,103,107,99,100,91,101,104,99,100,100,95,106,101,96,99,93,94,98,65,102,103,106,78,95,97,102,94,106,106,109,99,95,110,112,101,97,116,100,94,96,95,95,92,96,90,95,94,110,93,111,105,99,103,99,109,105,99,105,91,112,99,106,106,95,93,112,106,102,115,101,107,103,86,100,110,96,96,110,104,98,87,96,101,90,107,101,88,95,100,107,100,97,96,102,88,100,91,98,103,115,91,101,103,108,109,99,96,106,97,95,110,102,93,100,103,88,104,92,97,106,109,101,100,91,91,104,105,101,94,107,115,104,93,101,103,100,99,105,105,90,112,90,112,89,100,116,101,103,107,104,100,106,98,100,96,92,106,94,92,94,99,104,98,92,104,97,75,75,121,101,106,99,113,77,113,110,105,93,105,98,97,95,103,106,79,103,104,102,92,109,95,105,106,94,102,128,93,102,94,94,106,104,106,104,110,99,104,101,101,99,106,102,101,118,97,98,100,111,95,102,96,92,112,105,108,97,102,110,107,97,107,104,104,102,104,105,117,95,101,99,107,102,99,107,99,96,103,105,104,104,105,101,100,100,100,105,103,114,99,99,99,97,87,107,106,106,98,90,103,99,113,100,111,90,103,98,100,108,100,83,91,109,111,91,102,109,108,102,97,101,101,117,96,102,96,100,106,106,102,108,88,104,95,108,96,115,95,107,108,102,113,88,113,94,99,100,104,102,103,92,101,107,100,97,95,101,117,99,92,104,101,109,101,99,100,103,104,108,109,99,104,111,100,101,110,100,95,97,87,90,102,87,87,94,99,109,103,104,97,93,88,96,105,102,101,116,93,97,99,100,102,105,97,96,92,101,90,99,100,90,96,95,102,99,104,109,114,101,99,96,101,97,104,88,118,98,108,107,94,98,97,128,97,100,90,108,95,104,100,105,91,95,90,96,96,117,86,108,104,103,104,93,88,100,104,105,101,100,104,104,100,101,98,106,106,92,95,113,105,95,88,97,113,101,109,106,102,107,96,102,99,106,95,99,113,107,100,102,97,60,103,96,97,109,105,113,104,105,103,107,102,93,108,104,96,93,98,99,101,111,105,94,102,103,91,86,117,98,103,103,97,99,98,95,103,111,95,110,106,100,95,99,73,102,95,94,106,110,112,95,102,104,97,106,103,100,110,101,125,108,96,96,106,88,94,105,99,108,99,103,85,96,97,103,115,104,102,99,92,106,81,84,99,101,102,103,86,106,87,111,104,91,108,101,101,90,105,105,104,109,96,103,98,94,109,75,100,102,110,101,104,89,86,94,97,100,102,106,92,100,107,109,104,91,100,95,111,97,105,88,96,107,108,111,107,92,100,105,113,113,93,107,103,103,103,96,105,101,101,109,103,86,104,101,95,107,98,108,97,100,102,105,88,109,95,93,94,103,100,105,89,109,100,98,107,98,94,104,107,108,106,111,92,95,108,111,98,105,103,122,100,98,98,101,116,98,85,111,103,107,100,96,102,99,104,111,106,95,88,99,88,106,95,98,96,96,103,97,111,103,101,108,95,113,107,97,95,103,109,116,104,99,102,93,91,75,99,106,106,113,95,96,97,96,100,130,99,102,116,101,94,104,91,90,112,102,108,91,94,110,105,105,107,106,85,108,99,116,99,110,110,108,104,101,102,88,100,96,98,106,109,116,113,109,108,105,107,128,101,98,102,110,101,92,105,106,98,96,106,96,88,88,97,94,103,108,87,95,105,92,97,90,104,92,102,94,105,103,104,126,102,100,101,90,98,97,104,114,105,102,107,110,109,94,98,104,108,97,88,99,92,114,109,102,89,91,88,94,105,83,105,98,111,99,103,100,100,97,93,102,98,94,92,107,102,94,88,100,102,104,105,102,96,97,94,96,104,115,107,105,101,103,99,106,97,95,114,96,102,102,98,100,99,91,113,99,92,115,99,98,115,98,99,102,99,104,101,99,100,108,89,96,110,93,106,109,100,96,105,104,93,93,97,108,109,100,94,102,94,106,104,103,100,102,105,102,99,117,100,99,106,120,105,108,105,95,92,91,103,102,102,96,100,112,95,102,99,102,106,104,96,101,94,101,102,112,106,95,115,106,93,103,82,99,103,105,94,102,101,106,95,93,106,121,97,108,104,98,111,92,113,101,100,101,100,103,103,102,97,93,108,95,106,103,99,103,99,97,111,98,119,84,94,103,92,101,98,103,104,103,106,94,109,106,101,106,94,95,102,114,102,106,109,112,105,95,94,95,99,101,92,94,102,104,100,111,102,96,102,109,112,103,107,113,102,90,101,97,112,105,101,108,94,100,108,115,98,95,85,106,95,100,106,102,106,100,106,100,92,101,103,120,95,105,103,101,113,111,105,114,104,95,106,80,110,101,117,102,107,103,97,104,107,98,105,98,97,97,103,102,90,97,101,80,92,91,103,91,106,103,96,101,112,109,104,102,106,99,99,97,89,97,96,96,95,99,100,111,100,99,95,95,101,101,105,97,95,115,100,88,103,97,92,99,90,98,98,100,110,97,100,109,90,102,107,110,96,95,123,98,100,105,107,99,106,95,99,113,109,102,106,84,108,91,114,110,97,94,106,93,96,122,123,102,103,102,110,106,102,103,107,99,110,95,106,102,89,99,102,101,110,93,93,107,94,113,96,102,107,103,94,98,93,106,106,104,96,103,124,90,104,82,102,94,103,99,112,98,97,118,114,92,95,98,99,102,105,94,109,103,100,109,98,88,102,105,99,99,88,101,95,109,112,94,110,103,111,106,100,105,95,108,91,109,100,106,99,105,111,98,97,104,96,101,99,95,105,101,102,96,107,97,108,98,98,103,106,99,92,106,99,102,88,105,105,96,111,102,104,92,97,102,103,107,102,94,108,97,109,104,105,112,103,101,105,106,104,104,102,95,100,99,95,101,103,113,97,98,105,105,100,107,94,114,99,98,98,132,109,94,107,93,108,96,106,104,104,108,109,96,102,107,95,92,105,101,98,109,106,104,104,93,113,93,110,90,91,110,98,113,107,100,112,115,111,106,101,95,90,93,94,102,101,107,100,110,102,104,100,106,103,94,104,102,112,106,99,105,111,98,97,108,87,97,100,104,106,106,115,106,98,99,105,100,106,101,98,105,92,97,81,117,96,116,91,103,106,107,102,103,100,89,101,92,114,109,105,106,111,96,100,107,98,105,104,108,104,95,100,70,104,111,101,92,103,102,101,97,87,91,94,96,98,115,121,98,97,107,91,107,95,108,79,109,101,93,109,103,104,89,108,112,105,106,93,95,104,128,104,95,96,100,92,105,103,107,103,115,95,104,96,65,93,100,104,99,89,101,103,111,108,105,92,97,96,113,105,104,111,99,110,112,103,91,88,106,95,91,102,107,90,97,113,103,96,99,94,104,105,89,102,88,109,84,107,93,95,99,90,95,97,102,105,100,87,94,110,94,98,73,105,120,110,90,105,103,99,86,60,86,95, +438.22198,91,114,96,87,87,102,98,108,89,67,101,108,98,95,103,101,93,99,104,116,105,101,122,102,100,112,96,113,102,112,111,107,101,101,105,99,86,102,109,104,103,82,96,106,109,115,97,102,104,105,93,114,103,101,97,101,101,96,111,110,102,107,101,107,109,111,84,108,94,102,106,109,102,100,95,112,87,103,99,106,93,97,98,101,98,91,92,77,94,106,100,94,99,97,108,97,106,95,108,102,98,100,96,97,90,94,105,96,109,101,104,91,115,93,110,103,106,100,105,99,94,99,111,102,92,93,96,102,110,106,100,101,95,94,108,111,101,102,108,99,98,109,105,94,75,98,109,99,108,98,99,97,86,94,98,99,101,109,100,101,69,108,92,112,115,104,111,100,104,99,112,97,100,100,98,100,88,86,102,95,101,84,95,109,101,96,99,110,105,96,104,97,102,99,108,102,103,92,107,106,110,101,102,104,102,109,105,99,96,107,100,99,102,99,102,101,95,103,117,103,101,123,105,107,97,91,95,107,97,96,88,103,114,88,109,113,96,101,101,107,102,94,113,104,101,94,100,107,76,67,100,105,104,100,86,102,96,100,108,106,109,104,107,100,96,94,97,104,104,108,104,105,104,102,117,93,105,96,95,134,102,101,92,98,92,105,98,100,104,95,111,104,99,108,93,108,101,116,105,100,96,102,104,109,99,106,115,109,100,100,108,111,93,95,108,104,91,105,100,101,106,105,98,106,105,96,105,88,98,101,105,106,87,108,98,117,114,96,98,107,99,90,91,102,102,114,90,103,121,94,107,109,102,117,112,94,104,101,95,95,95,100,108,75,103,101,98,112,87,109,105,101,101,96,106,105,106,99,103,107,104,84,102,109,104,105,100,105,110,100,69,100,101,109,105,92,95,105,95,102,102,108,100,96,108,91,103,100,99,102,99,102,99,100,108,104,108,124,96,100,101,100,100,104,107,98,100,106,102,102,97,111,103,96,101,105,99,100,100,104,115,103,98,101,93,105,91,97,92,113,100,92,105,103,99,105,108,101,101,109,97,98,103,103,101,109,97,91,104,98,96,105,94,109,102,109,102,95,114,105,95,103,108,98,110,114,102,108,97,95,100,109,103,99,94,112,89,102,97,80,123,104,101,85,110,98,112,98,110,90,103,104,108,96,103,96,107,106,97,112,101,109,104,104,115,103,100,111,107,105,96,112,99,106,103,102,102,108,115,105,105,110,105,112,102,99,109,97,114,111,106,104,102,110,105,90,99,99,104,86,109,93,99,108,103,100,99,113,99,95,104,97,106,104,115,104,100,100,103,106,109,89,110,101,97,95,109,105,98,103,109,111,107,106,120,103,103,101,104,103,104,100,99,103,83,105,106,98,97,92,113,110,104,93,111,126,96,92,106,101,99,107,102,99,98,114,104,117,102,105,101,106,100,95,95,105,116,95,105,100,110,104,97,96,97,90,94,95,108,121,107,107,100,98,104,103,103,106,100,107,128,98,101,112,99,100,103,91,104,109,96,85,115,112,99,99,102,101,92,96,97,99,102,106,93,122,111,105,100,97,99,105,114,93,96,108,102,108,95,98,93,102,109,96,111,102,107,110,95,92,101,104,105,76,102,106,99,113,105,102,98,91,99,109,103,101,95,108,101,106,96,109,93,98,114,73,113,96,106,104,92,100,105,102,96,108,100,107,98,98,107,97,111,89,97,102,98,101,110,97,90,91,64,99,100,111,106,94,101,96,101,99,98,103,106,117,135,95,96,94,109,105,112,108,89,102,76,103,99,99,97,106,104,109,104,118,102,115,107,100,99,102,95,97,109,89,96,97,72,88,109,110,94,109,95,109,105,110,95,107,109,105,103,103,96,107,99,93,100,97,103,100,104,106,80,113,103,100,106,89,100,104,104,101,97,91,103,91,98,95,96,98,108,109,85,105,94,98,97,102,101,103,97,96,107,101,106,104,106,104,105,108,97,99,106,104,91,107,100,94,97,113,119,98,107,117,100,97,108,90,110,109,109,109,99,92,93,108,98,96,110,104,110,104,102,107,94,103,85,100,96,107,108,96,103,105,99,100,101,97,105,102,108,95,72,106,104,108,95,99,109,102,96,97,101,106,99,102,105,102,101,108,109,95,104,102,96,96,99,109,97,102,106,105,102,96,96,98,103,104,101,99,97,103,104,102,108,118,106,108,98,98,91,85,91,100,110,108,101,110,94,106,78,135,100,91,91,99,112,101,107,114,107,101,102,107,118,99,95,102,103,102,102,110,112,103,99,102,95,100,101,107,111,106,106,95,96,105,85,99,99,105,99,84,112,100,100,101,106,92,108,105,99,92,109,105,94,101,99,105,109,94,106,107,94,107,104,103,97,89,108,98,96,104,93,121,103,99,112,96,105,114,94,110,106,85,99,101,92,98,106,105,99,104,100,89,119,105,102,81,94,93,102,115,113,104,83,104,120,107,106,101,88,105,101,109,107,95,107,107,97,99,110,99,109,95,94,109,84,98,102,109,108,113,102,110,98,100,95,90,99,108,102,104,101,98,106,111,108,115,92,100,108,98,112,103,107,110,113,84,99,100,103,116,97,101,108,107,105,106,106,136,113,108,106,104,99,94,106,110,95,99,101,99,103,102,98,118,103,101,99,109,110,95,98,110,109,94,112,92,108,100,102,101,104,109,116,111,109,104,99,104,108,108,90,112,110,120,105,109,104,112,106,99,104,98,106,111,109,103,112,109,107,95,125,111,109,98,100,102,107,105,100,108,96,109,110,112,102,100,98,108,111,105,88,108,106,121,113,105,110,97,111,98,106,111,88,111,106,95,110,109,99,104,112,98,106,95,97,109,112,104,105,121,111,96,99,105,98,112,106,104,105,107,114,96,88,108,105,105,108,95,113,93,108,97,112,94,111,107,111,106,100,106,104,103,102,100,62,101,99,111,109,106,100,100,93,95,87,95,107,111,119,101,109,108,103,122,103,94,125,102,101,102,113,99,104,108,102,101,100,112,106,112,128,100,108,97,101,99,115,109,103,97,119,106,112,98,115,98,106,92,104,106,102,103,115,99,108,101,99,103,104,97,116,99,110,108,97,96,95,101,89,113,105,96,102,102,104,106,104,103,99,104,113,93,114,109,113,102,109,95,104,112,97,102,111,94,108,119,107,81,90,109,107,105,119,109,104,103,95,106,107,102,107,110,95,92,91,101,97,108,104,100,100,94,105,105,107,97,93,102,109,112,105,106,104,111,93,81,112,101,108,105,99,95,116,109,104,103,98,87,105,110,92,109,106,100,95,91,98,106,99,107,113,101,103,94,93,101,109,121,106,103,96,101,109,99,102,105,102,95,100,103,103,101,99,113,103,101,100,96,95,104,114,106,98,107,102,91,100,104,100,97,103,94,115,110,81,100,104,98,104,92,108,99,103,109,97,98,104,108,110,102,106,110,106,102,113,95,94,103,109,92,85,101,100,113,103,99,98,125,104,108,100,109,104,104,103,112,99,92,99,101,96,101,119,86,109,86,107,93,103,101,99,109,102,107,93,106,109,105,103,96,121,99,101,105,75,94,95,108,107,83,97,106,99,98,112,109,98,109,99,101,89,102,92,98,101,96,94,118,102,99,98,105,100,98,99,99,106,109,110,103,100,99,102,94,111,109,109,106,97,106,102,93,100,102,99,88,108,104,95,107,100,103,104,108,112,108,98,104,101,102,112,94,98,99,97,99,111,98,102,93,114,95,100,110,103,104,106,100,100,116,105,106,105,106,113,95,99,106,102,112,97,99,102,109,103,98,103,107,112,96,105,107,114,98,102,100,101,91,99,98,92,100,102,104,96,98,102,107,95,100,100,95,103,90,95,99,94,95,112,98,88,95,123,98,108,98,107,108,102,135,99,102,126,99,95,107,106,107,102,102,100,87,101,99,112,96,101,92,91,98,89,105,123,103,95,117,99,100,110,103,102,98,102,111,107,106,118,110,101,105,101,83,105,110,100,104,104,102,104,98,99,101,113,101,113,107,129,99,98,112,98,105,95,99,109,107,111,102,107,100,95,91,102,101,105,101,96,105,104,99,107,115,102,97,100,105,109,83,99,106,107,113,112,105,99,102,104,101,101,90,102,105,93,105,98,102,110,100,87,99,107,103,120,98,98,99,105,103,104,108,105,92,117,104,98,107,126,98,105,100,108,104,122,102,107,123,111,95,104,109,104,79,127,107,111,104,96,108,104,111,104,97,92,102,101,105,102,104,106,100,98,92,101,98,93,112,106,69,111,93,109,119,99,94,111,104,95,111,103,103,109,108,95,104,98,103,111,95,93,94,93,91,106,107,93,109,103,109,105,101,80,95,118,105,112,96,97,102,104,113,103,104,109,117,108,100,106,97,75,91,108,110,99,121,106,105,107,102,87,109,101,112,94,95,97,100,98,111,92,113,105,99,101,99,91,94,112,99,107,109,108,97,101,108,98,101,87,98,109,111,94,100,102,99,91,100,112,107,107,99,95,105,102,102,103,108,105,99,107,100,109,95,117,100,99,105,100,106,107,101,103,106,98,103,100,100,93,91,108,104,110,104,108,107,91,105,98,107,93,101,98,98,105,109,109,96,102,112,116,90,107,112,103,107,92,95,93,108,95,94,88,100,105,94,106,103,97,103,96,88,99,89,106,112,97,95,85,100,97,99,107,103,92,107,100,95,92,102,95,100,89,95,112,103,102,95,101,96,99,113,105,101,95,105,101,112,97,105,103,109,104,104,98,113,100,120,95,102,93,107,103,100,125,92,110,89,103,92,98,102,118,98,100,108,103,102,100,107,97,112,96,102,103,92,92,103,106,106,100,95,107,92,105,109,102,99,105,110,109,90,100,97,98,107,86,83, +438.3623,103,95,93,95,81,103,99,95,99,80,92,104,107,103,103,95,95,121,98,100,104,108,97,117,105,100,107,107,99,98,104,105,100,103,102,110,98,95,94,88,91,82,96,114,112,102,110,114,119,106,101,99,100,101,95,96,94,95,95,92,98,83,95,92,102,100,94,101,102,102,87,101,94,120,93,107,91,91,93,104,100,98,95,81,101,103,102,104,90,97,109,90,87,98,99,98,98,100,105,102,111,97,96,102,90,103,99,94,95,99,98,100,108,103,96,103,99,107,102,100,95,99,88,93,100,90,89,95,103,101,86,104,102,102,99,102,90,98,103,96,100,102,104,100,100,70,109,97,90,108,100,102,99,90,100,92,93,106,83,101,109,96,103,117,102,107,110,101,102,92,99,95,98,98,113,94,95,93,105,113,112,89,111,70,94,106,97,85,98,100,99,103,103,108,101,102,92,108,97,104,93,100,93,92,99,98,100,108,98,98,107,96,72,103,91,108,105,105,100,99,125,93,98,100,97,103,96,101,114,101,105,96,95,106,108,94,104,71,114,105,96,90,106,102,116,96,100,97,98,108,109,102,94,98,104,113,94,103,98,91,89,109,105,100,86,107,100,88,105,105,103,100,110,89,99,102,100,102,98,94,103,114,99,99,96,97,91,99,100,110,102,100,113,90,94,96,99,106,105,106,91,113,90,95,104,104,99,112,94,109,87,106,110,105,111,96,86,108,92,95,102,95,99,113,98,103,94,92,105,112,91,87,106,94,103,100,106,97,96,103,98,98,88,91,97,101,95,101,103,100,113,95,103,100,103,91,105,96,90,102,100,109,101,100,99,99,95,103,104,105,114,89,96,110,100,90,90,102,103,105,95,108,95,100,108,106,110,104,102,109,102,101,92,94,98,96,97,99,101,108,89,109,105,102,99,102,92,110,107,100,85,95,101,113,94,105,95,93,104,100,91,111,100,100,82,98,102,91,95,102,93,89,108,92,100,100,104,105,101,96,99,99,101,99,96,110,93,102,106,101,109,92,105,113,108,103,98,103,107,98,97,100,112,105,110,113,114,99,92,94,96,105,101,101,91,94,112,105,103,102,94,96,107,100,99,96,113,92,95,92,113,82,107,88,100,95,94,101,110,103,98,91,73,90,103,95,108,104,98,97,102,105,102,99,109,104,100,95,95,104,101,107,124,91,105,102,103,105,102,97,97,86,99,96,106,100,97,96,111,102,102,107,97,101,107,103,105,98,103,103,100,103,100,76,91,105,97,101,83,104,108,112,91,99,98,87,95,97,104,116,98,100,106,110,117,101,94,104,99,93,100,101,103,99,105,104,116,105,100,81,110,97,92,109,98,96,118,104,105,104,103,102,97,101,104,118,92,102,103,102,102,106,111,85,111,89,95,106,97,98,113,103,106,120,95,100,92,101,98,102,101,103,102,113,103,108,101,100,108,99,106,97,97,99,94,104,99,103,104,101,95,100,98,95,106,99,96,94,99,81,102,104,102,97,93,100,106,102,108,94,98,102,101,94,104,104,99,103,110,104,101,108,110,96,118,99,106,83,101,105,107,93,97,105,110,98,96,101,105,95,115,96,96,91,103,111,96,97,91,91,94,105,102,98,96,110,100,91,99,102,95,101,101,105,98,101,97,94,103,101,96,83,106,96,109,105,96,91,105,78,94,81,107,102,106,104,95,91,106,108,96,104,94,105,99,99,95,99,122,90,83,108,95,97,88,104,89,99,99,97,116,90,104,102,94,104,100,101,108,100,111,95,108,102,107,117,115,107,100,101,105,89,109,105,92,100,97,136,91,101,106,103,81,96,104,103,97,95,102,93,110,98,109,101,108,122,110,96,106,109,98,114,94,100,99,106,104,79,103,109,104,98,104,105,100,100,118,91,106,101,112,117,99,108,95,101,101,110,101,110,97,104,109,99,99,99,100,91,91,102,103,101,98,100,90,103,102,91,91,108,105,111,106,111,108,114,102,86,102,106,108,107,105,99,99,100,106,108,85,105,108,106,101,98,100,118,91,95,105,95,104,102,92,86,120,105,101,106,101,101,102,103,100,99,89,95,100,91,87,94,97,112,109,102,101,96,107,100,85,107,96,84,99,96,101,98,94,86,107,116,108,99,105,106,101,106,97,96,89,96,109,99,97,95,95,89,105,102,104,105,102,109,102,109,94,86,103,99,96,112,91,103,118,88,111,99,104,116,89,110,95,105,95,95,102,109,100,104,93,126,87,101,97,101,92,97,106,108,96,101,98,67,100,109,100,111,110,95,92,103,89,107,92,95,106,115,103,101,101,121,99,112,87,92,112,109,91,91,108,98,100,88,98,91,88,96,84,94,90,107,105,99,89,104,95,98,98,104,107,98,95,102,109,101,81,103,97,100,97,102,99,103,112,116,114,94,101,101,107,96,109,105,105,99,103,91,98,105,102,106,88,102,88,112,100,103,111,95,108,98,101,94,98,90,98,109,110,103,109,95,102,112,102,102,93,113,98,108,88,91,95,105,93,114,93,72,97,95,97,112,99,103,106,95,86,106,98,101,108,87,105,108,109,91,95,108,87,64,82,105,102,101,94,114,94,101,103,118,103,102,100,92,110,95,104,102,107,101,98,115,99,95,104,91,101,105,103,102,98,92,94,99,112,109,94,85,111,95,103,107,105,94,113,100,95,105,102,101,108,95,90,94,102,109,103,106,100,78,114,106,104,96,103,105,103,102,117,105,105,106,102,110,113,102,104,108,104,101,102,101,88,100,104,97,111,96,103,84,104,112,93,105,101,99,101,101,93,101,96,108,105,95,112,95,99,100,93,111,118,109,114,104,98,107,103,95,103,109,97,95,109,98,100,93,112,105,98,103,95,112,104,100,90,114,97,99,86,102,110,108,104,103,109,101,104,99,92,95,108,102,104,110,97,96,97,104,96,103,84,94,104,100,97,111,80,100,96,103,106,99,95,96,87,90,107,104,117,107,99,100,100,109,99,101,118,95,111,103,99,99,108,104,112,99,100,102,101,104,103,108,108,108,93,97,99,92,103,99,117,100,100,87,102,107,107,92,100,89,101,90,92,110,113,100,105,107,97,98,95,102,103,81,92,113,92,102,106,104,87,96,104,95,95,104,95,108,104,112,111,109,99,77,102,101,107,102,116,97,93,102,92,99,99,112,99,112,102,100,104,101,102,101,97,97,105,97,105,113,95,98,95,93,98,79,91,103,99,96,107,110,104,105,96,114,99,95,104,110,95,110,99,98,113,95,103,107,104,99,98,89,107,97,127,97,101,101,104,95,116,101,96,105,101,112,106,104,96,100,109,100,101,105,102,100,108,101,93,106,110,98,108,110,107,98,108,105,94,95,98,104,100,94,112,98,117,115,99,95,95,100,88,96,83,89,105,91,108,102,99,99,107,96,98,95,100,96,108,100,95,102,106,103,98,94,83,109,99,96,103,123,96,105,118,97,101,103,109,117,100,114,103,107,117,113,103,98,124,105,104,91,113,107,104,97,99,95,95,104,106,102,105,110,117,91,113,104,95,104,90,112,112,112,125,110,104,107,103,100,105,91,108,108,90,88,100,98,109,96,105,99,84,101,110,98,96,96,93,95,105,113,99,110,103,90,89,104,96,92,103,112,96,93,106,103,111,102,101,100,82,106,98,116,101,105,103,116,100,108,117,100,95,109,111,99,99,102,107,95,101,80,99,102,104,95,108,112,96,105,104,97,92,97,89,101,100,104,96,109,107,100,92,107,99,87,102,108,91,109,113,91,91,105,93,104,109,103,89,106,96,106,103,98,95,106,121,105,101,101,96,109,97,107,98,106,100,79,110,100,106,108,106,96,101,113,90,100,99,108,97,98,129,89,108,112,106,96,99,104,92,98,77,109,95,99,100,101,111,101,101,107,103,91,99,106,97,103,108,102,110,101,103,99,94,110,83,97,122,112,92,108,99,104,105,104,91,110,106,113,103,109,102,98,93,98,119,91,87,100,110,108,97,96,109,106,100,96,87,91,102,104,108,108,93,110,104,107,104,109,91,99,100,103,111,92,107,107,102,69,99,101,106,107,100,113,91,106,94,104,108,106,96,102,103,98,97,90,104,98,105,105,102,92,99,87,101,105,108,102,100,113,100,94,92,112,100,94,107,99,113,94,113,101,104,106,107,106,95,101,108,102,101,98,105,104,103,104,103,99,100,114,107,104,105,95,102,95,110,109,110,98,108,101,123,106,99,97,101,93,103,109,103,108,110,104,104,108,109,97,91,104,95,94,102,104,105,83,100,108,97,104,105,103,105,109,104,96,115,100,104,104,76,111,98,112,112,100,93,103,103,110,98,103,110,106,98,91,102,105,96,97,98,105,110,98,96,97,105,106,107,108,87,102,103,96,95,95,84,104,108,104,106,94,102,101,92,101,96,96,97,105,102,98,109,103,90,92,103,96,103,104,103,95,97,110,93,105,86,100,105,91,87,108,103,107,110,99,95,110,113,93,91,96,96,115,111,87,99,103,94,96,98,108,91,95,93,117,73,104,101,104,99,90,101,102,104,100,97,104,70,102,105,96,106,99,103,88,92,102,101,106,98,87,94,100,95,99,101,105,97,98,105,109,92,102,101,97,113,99,104,98,101,97,103,93,113,105,93,102,113,105,97,86,95,110,98,97,93,102,102,95,94,99,101,124,96,102,102,95,109,97,96,95,108,105,99,101,97,91,102,106,100,93,103,102,102,105,81,103,102,98,101,80,107,81,120,91,98,91,112,85,97,109,83,103,85,108,88,98,103,100,106,102,92,105,106,93,103,109,108,104,106,102,91,97,95,106,96,101,104,87,107,102,105,100,84,100,103,103,89,87,109,96,97,95,97,105,105,107,80,102, +438.50266,106,100,103,95,90,105,95,113,99,99,97,102,96,96,103,107,101,105,107,109,101,110,102,93,99,113,103,103,112,105,108,98,109,105,110,84,103,97,95,94,101,99,94,99,109,115,110,93,103,104,92,96,114,98,94,87,102,87,103,107,110,111,127,103,105,96,94,102,107,101,81,98,105,110,89,105,105,96,102,95,110,98,99,104,98,100,104,108,112,107,106,107,96,89,96,108,97,107,104,99,105,105,103,102,97,99,104,89,99,101,81,99,101,103,89,96,106,119,102,100,105,110,105,108,100,112,106,98,95,105,110,110,103,103,109,100,100,101,99,85,107,91,84,101,105,103,102,99,87,97,97,100,104,102,100,102,94,104,99,103,108,109,104,105,102,98,106,101,112,100,97,105,100,100,87,102,80,98,99,104,98,96,107,94,112,110,91,101,103,104,96,103,108,103,104,103,105,107,87,112,99,105,99,108,102,108,103,102,100,104,110,101,115,106,97,97,100,111,101,110,107,112,89,110,91,106,101,107,105,98,90,104,117,94,98,101,106,105,103,96,95,104,100,98,100,94,114,99,102,104,105,102,101,104,97,97,104,110,95,92,102,98,114,99,114,110,101,100,98,90,106,100,108,96,107,107,111,108,104,113,117,113,100,110,112,105,99,103,113,90,98,104,106,108,102,110,109,101,91,108,106,104,102,117,100,112,110,104,116,108,92,102,104,101,102,115,92,101,96,94,97,114,112,117,108,111,100,100,102,105,109,112,101,94,116,107,125,103,103,106,96,108,109,102,95,110,107,98,100,96,109,96,96,91,100,104,103,100,106,98,105,96,98,98,101,115,92,101,102,111,108,96,115,117,103,99,117,111,99,103,102,107,106,65,94,88,96,94,109,95,106,103,110,112,103,98,101,96,104,99,99,99,94,96,98,110,117,104,102,104,96,101,98,104,100,106,111,102,121,109,97,107,101,105,105,103,100,88,91,116,90,112,102,111,114,103,104,108,104,101,108,103,105,104,95,102,100,101,113,99,102,97,97,112,109,96,101,95,110,103,104,113,101,102,108,105,100,110,104,106,106,103,95,104,91,95,98,114,105,99,99,118,113,99,107,102,103,104,91,95,101,94,98,106,103,111,82,95,110,95,108,98,106,99,111,103,102,103,102,91,112,112,96,94,99,90,102,105,106,110,105,93,107,94,95,106,97,103,105,106,110,106,109,95,103,103,106,96,115,121,96,115,108,115,108,116,90,103,103,97,99,95,105,94,110,102,106,75,109,93,105,95,105,81,96,109,113,103,96,101,95,98,101,94,119,100,109,111,103,109,109,100,106,96,105,99,109,108,97,107,109,101,93,108,100,100,97,97,107,104,101,101,103,95,101,102,105,95,115,97,106,100,103,101,109,113,111,98,108,116,112,104,99,101,105,98,98,101,105,99,96,97,104,117,92,109,115,98,105,99,107,105,95,96,104,97,113,114,104,95,117,104,108,108,106,107,113,95,93,109,91,101,93,98,91,111,120,96,101,110,112,108,105,97,106,109,98,104,108,107,114,99,104,98,103,91,105,112,103,95,102,106,95,108,116,101,107,103,95,98,98,97,113,99,99,106,101,104,106,113,104,103,114,105,103,106,105,98,122,85,107,98,94,110,92,103,104,98,93,102,102,109,95,86,101,100,98,112,102,101,105,108,99,106,102,99,114,109,104,102,103,101,92,99,113,104,87,108,118,107,84,109,99,111,99,108,96,111,104,98,114,103,127,103,99,113,91,98,111,95,118,106,106,109,107,102,99,119,101,103,103,95,101,105,109,98,109,110,112,105,115,102,86,106,103,109,106,99,100,104,118,110,103,94,103,105,108,117,109,102,113,94,99,110,101,113,108,99,99,101,100,110,97,110,108,96,108,102,87,106,104,98,104,100,110,105,110,110,108,88,101,101,109,91,102,105,117,105,100,98,114,100,108,101,117,95,94,103,114,82,95,104,114,133,95,114,98,101,96,101,107,117,109,101,94,108,106,106,109,82,98,103,100,114,103,106,105,103,100,111,111,114,99,114,106,100,105,108,103,98,89,115,108,106,95,100,104,97,99,112,104,79,99,106,108,115,95,87,99,96,107,101,97,110,96,117,103,115,108,133,103,101,93,96,100,107,88,95,99,105,104,87,91,102,108,122,117,95,125,104,111,103,92,101,98,109,99,110,102,98,94,109,108,101,106,109,113,82,99,98,99,103,97,100,104,109,104,96,100,101,93,108,100,99,104,94,112,105,109,100,105,102,104,94,110,101,82,101,99,101,99,106,102,105,98,106,105,99,97,100,112,104,98,99,107,108,119,105,105,114,97,105,99,106,112,96,85,105,104,95,109,100,96,99,101,109,112,98,100,106,106,105,107,104,100,104,100,109,104,93,99,107,106,110,106,103,100,98,103,99,91,108,105,106,106,104,111,107,94,95,96,106,100,107,111,107,109,103,111,95,104,109,100,94,98,92,112,107,110,99,98,100,100,92,102,103,94,105,102,106,93,122,115,100,99,97,108,95,96,140,101,103,109,95,97,109,102,102,100,103,89,115,100,87,103,107,96,106,98,93,101,97,109,104,91,104,101,101,108,109,114,98,127,107,98,102,117,108,105,105,100,99,108,86,95,112,117,96,96,93,95,103,109,98,104,106,106,95,100,100,100,93,107,97,88,97,98,115,102,103,104,95,128,112,110,108,101,98,102,108,117,105,103,113,106,99,94,94,99,100,103,97,100,106,108,134,99,97,100,85,102,97,105,98,99,110,108,103,97,92,102,103,116,92,103,100,104,112,112,107,97,102,114,102,101,100,102,104,92,116,110,101,116,104,101,104,107,112,103,104,110,102,100,102,95,96,102,113,99,105,101,94,109,118,95,97,99,108,104,116,99,120,105,106,96,109,105,103,95,110,120,107,97,105,101,112,99,89,97,102,84,101,105,100,105,103,112,113,116,88,92,107,95,98,105,99,102,99,92,100,103,106,92,98,106,106,102,107,107,102,102,84,102,103,94,93,97,101,102,100,111,99,104,98,63,99,108,100,109,99,110,102,100,113,102,87,108,86,100,102,98,111,103,92,104,110,97,98,113,107,104,99,104,107,80,108,87,105,101,91,93,96,95,99,106,90,94,92,106,109,94,88,92,109,103,82,100,99,103,120,100,103,88,106,97,98,99,105,105,97,104,101,104,100,97,97,95,102,99,108,93,110,100,105,102,98,107,99,104,106,119,98,113,115,105,111,102,109,93,104,105,100,103,107,102,107,99,92,102,91,113,105,101,99,89,106,117,101,108,98,102,102,94,103,78,99,95,102,91,92,100,104,102,106,107,102,101,113,106,94,105,105,86,106,106,98,106,103,103,98,100,98,91,108,98,98,91,102,90,93,102,102,97,108,93,109,110,80,97,92,101,105,108,92,105,110,97,81,121,101,102,99,98,100,87,116,98,107,110,99,120,85,95,86,100,109,106,97,114,100,97,113,85,103,103,109,102,108,102,101,101,111,109,105,99,109,104,105,103,100,108,115,109,88,111,105,96,109,96,106,100,99,111,94,91,106,96,99,102,99,94,96,106,102,94,98,96,100,100,100,103,97,116,97,100,96,97,106,110,108,87,101,97,108,100,102,101,109,103,113,107,104,105,101,102,104,92,107,97,113,102,106,121,95,92,101,105,98,117,108,99,72,98,113,106,106,105,100,97,97,100,108,103,97,108,102,89,94,113,100,104,99,117,94,97,124,103,95,109,87,95,97,107,109,112,79,88,94,115,87,107,111,105,112,98,97,92,101,95,100,103,90,104,104,100,96,97,102,108,97,99,112,97,87,102,112,108,97,103,94,102,111,93,96,86,96,98,103,104,101,94,90,108,97,103,100,94,86,113,98,111,111,100,102,114,97,91,99,100,101,103,107,92,110,97,88,101,87,103,90,95,77,100,100,106,112,111,92,100,103,94,115,85,112,105,107,101,106,95,104,94,100,106,101,106,92,107,92,111,110,96,101,92,105,107,93,112,106,102,99,95,95,108,110,106,113,95,105,92,102,90,105,94,91,104,99,96,109,92,100,109,111,93,101,109,109,112,104,90,109,99,109,98,110,79,110,107,94,103,95,101,105,94,103,108,116,108,102,111,108,107,98,101,101,126,98,101,107,102,105,102,100,115,116,107,103,105,106,102,107,107,104,107,109,105,93,101,107,93,105,105,98,118,103,98,106,87,101,124,95,108,98,95,103,98,101,102,104,96,92,95,102,100,96,103,99,102,99,102,109,82,102,110,99,74,93,108,99,114,107,93,106,99,109,112,104,90,99,102,99,97,103,104,109,105,98,101,107,107,100,110,88,85,104,91,107,109,102,95,95,103,117,100,116,103,104,98,102,96,109,94,92,100,111,100,111,107,100,95,104,106,96,112,98,99,98,108,113,83,97,102,112,99,105,100,94,96,103,105,100,95,109,106,104,91,105,97,94,106,89,95,99,88,106,117,91,101,108,83,88,104,101,106,111,101,102,102,102,104,111,102,92,97,90,90,91,89,102,93,89,96,103,109,101,108,102,91,103,89,109,108,105,98,101,101,101,98,100,100,100,92,104,102,108,96,107,110,100,116,92,103,99,97,119,103,91,114,109,88,111,94,106,108,100,99,94,112,104,109,100,93,97,105,96,106,98,98,102,110,101,99,104,101,100,102,102,94,105,92,96,100,98,95,112,100,108,98,101,99,104,104,109,86,109,103,100,88,94,107,100,93,109,94,91,91,94,109,95,94,109,96,95,126,103,102,99,103,106,106,97,83,99,98,116,98,105,113,97,100,100,104,125,100,92,85,113,91,104,110,94,91,116,97,108,96,98,111,113,106,102,102,122,87,72,119,95,106,109,102,102, +438.64297,100,100,95,113,76,88,108,72,96,98,98,83,87,87,112,108,88,95,97,102,99,110,96,106,104,110,88,89,111,95,99,104,106,99,98,105,99,108,105,95,105,107,101,107,94,99,98,89,100,121,105,100,102,93,63,105,98,101,100,98,110,103,88,98,94,91,83,96,105,103,109,96,105,95,95,116,100,108,109,90,106,94,101,97,101,96,110,99,99,91,99,103,108,101,112,94,89,98,96,95,101,104,102,106,91,108,104,99,101,88,103,97,98,105,86,91,107,109,106,82,96,111,106,96,111,114,104,103,108,104,94,103,99,95,117,94,98,113,93,101,102,103,102,94,91,100,89,97,103,110,98,106,103,94,95,110,92,102,113,100,105,110,99,97,102,97,102,104,98,95,101,108,101,94,108,98,111,100,103,100,99,104,96,99,90,98,103,92,99,105,104,113,104,98,92,101,98,94,95,99,92,94,112,95,107,102,98,101,110,102,112,99,94,103,113,98,100,115,94,108,100,109,105,109,93,91,102,99,101,113,101,99,117,106,97,99,95,105,101,92,106,98,98,90,93,107,101,103,87,99,104,106,105,94,113,112,102,111,99,103,104,96,104,94,91,108,110,90,101,100,100,103,107,108,111,103,94,103,102,102,101,111,100,99,109,87,89,100,114,86,98,103,108,106,98,95,100,105,99,99,91,100,102,92,107,111,100,109,98,100,99,98,94,92,105,98,102,102,97,104,105,99,99,104,102,85,98,98,113,94,103,79,93,98,108,110,90,95,110,104,102,94,110,99,107,107,104,108,107,101,113,104,96,102,103,96,112,107,102,106,90,96,101,109,91,97,99,116,111,99,110,103,106,95,110,91,98,109,100,104,115,106,104,102,95,94,98,103,98,104,98,99,91,114,99,99,104,99,104,102,99,92,109,98,107,106,102,90,117,91,93,101,109,109,98,101,99,97,106,94,101,100,114,98,91,99,98,100,96,114,109,96,103,90,103,94,95,100,116,102,108,105,103,99,98,94,101,87,109,111,109,102,100,100,117,101,99,104,108,109,92,99,99,100,95,112,114,99,91,91,105,100,99,92,97,95,103,112,112,105,102,107,119,94,100,93,104,114,96,102,91,106,104,103,91,100,102,107,119,112,106,99,103,111,101,104,101,106,98,83,110,96,98,111,91,105,103,115,96,91,108,105,99,103,96,102,115,99,101,96,108,115,101,94,109,98,112,91,105,97,86,105,104,96,108,108,113,107,88,108,98,112,98,97,95,97,109,100,100,102,114,114,108,101,102,108,105,107,99,110,101,97,103,106,100,100,97,98,109,107,94,104,119,104,107,98,104,109,94,95,101,100,102,100,114,111,85,102,108,111,97,101,104,95,102,117,94,110,112,99,94,114,100,96,115,108,113,95,104,90,104,103,109,70,108,109,103,92,117,107,105,104,114,108,100,109,92,101,97,109,103,108,95,104,94,94,96,107,103,100,96,109,98,104,110,93,102,107,105,103,94,86,99,108,96,98,102,102,111,98,102,94,104,107,93,110,108,95,90,90,112,106,106,97,113,104,97,91,107,88,107,100,98,93,95,105,110,103,108,88,95,106,94,101,96,96,102,109,111,105,106,95,98,99,106,95,102,103,103,97,96,100,96,124,102,108,101,94,104,100,106,113,119,107,100,101,113,103,105,103,121,97,112,77,102,94,108,104,106,109,114,110,114,95,100,108,108,99,102,99,104,106,104,104,102,97,101,96,100,104,119,99,98,97,106,114,106,109,94,98,104,108,103,97,105,104,93,101,94,104,96,72,91,104,114,102,104,121,96,111,106,96,97,99,102,104,100,101,106,111,110,98,104,109,110,93,98,95,101,100,101,110,87,119,104,99,109,104,112,108,99,106,106,100,97,95,106,107,103,121,105,97,80,101,107,104,97,94,91,102,91,86,100,104,99,96,102,113,107,102,92,101,107,102,103,104,102,109,104,113,99,112,106,105,98,94,106,95,110,105,98,96,104,108,104,109,101,103,103,105,89,95,109,98,114,102,101,121,101,105,94,110,106,106,90,101,92,114,103,105,91,113,111,111,107,100,87,112,96,102,108,95,108,110,101,98,101,98,99,107,82,101,112,115,105,105,101,107,103,111,96,112,95,98,65,95,95,86,111,86,108,105,99,99,100,104,97,109,102,100,110,93,102,88,102,95,89,95,95,109,112,97,98,90,99,101,106,105,104,102,103,104,113,108,106,67,93,101,96,108,101,109,104,99,102,96,115,106,103,108,101,106,103,95,118,105,110,96,94,108,100,96,99,95,102,107,104,111,115,93,115,109,104,94,102,116,95,104,98,110,118,107,114,100,107,95,102,103,98,105,112,87,91,102,69,99,98,93,81,94,91,111,83,92,99,92,101,102,88,106,96,97,111,109,94,99,105,105,101,106,103,109,99,95,93,108,109,96,102,99,78,103,94,91,110,111,90,108,114,106,115,102,106,125,102,102,91,104,97,88,98,102,107,107,110,104,91,106,100,100,103,108,110,90,116,97,104,92,107,106,112,97,101,96,102,90,90,111,104,102,97,102,108,100,108,106,114,100,93,101,87,103,100,112,106,105,92,111,109,125,102,113,110,92,98,102,119,99,106,109,111,93,94,92,100,107,108,105,116,96,83,104,107,100,102,100,105,97,109,96,104,102,105,117,112,116,110,103,99,104,113,91,97,105,104,103,105,107,106,98,95,106,115,92,113,106,79,101,96,110,107,114,102,95,103,103,113,115,94,88,124,113,99,103,94,105,109,96,110,114,92,100,99,100,99,93,96,92,110,75,97,108,99,91,101,103,102,101,116,109,87,91,109,112,111,108,93,108,95,100,100,105,95,107,107,104,121,111,115,103,110,105,109,106,99,96,108,87,86,103,91,115,104,89,103,103,98,104,107,110,109,110,99,104,118,107,110,105,106,94,102,121,91,101,108,117,109,115,117,107,92,98,99,94,112,110,98,108,100,109,99,115,112,100,133,107,109,112,108,100,110,95,100,100,101,103,96,111,103,99,118,80,112,100,105,98,97,96,113,102,113,94,99,100,105,106,117,103,97,98,112,103,105,99,104,90,103,102,108,105,101,91,113,109,102,107,101,91,95,101,99,104,100,98,107,103,106,103,100,102,108,106,79,86,109,101,107,97,112,95,106,86,95,104,105,99,110,107,103,104,103,115,100,100,101,96,92,93,93,103,104,100,102,99,95,104,103,98,100,98,99,108,110,107,104,96,101,106,99,103,96,98,100,89,97,100,107,100,98,96,105,103,83,108,100,115,110,96,100,100,101,104,93,107,100,97,97,101,104,95,115,111,106,106,106,99,107,95,110,112,91,106,93,79,111,92,102,108,102,88,105,109,105,110,97,109,93,100,108,103,94,98,91,108,103,96,99,105,101,107,97,113,103,99,102,98,106,120,103,103,98,97,98,94,106,93,103,99,104,106,87,103,102,108,104,100,100,102,102,108,101,116,100,101,100,94,107,104,102,81,108,93,95,110,104,100,120,99,106,90,104,110,112,107,113,91,88,98,98,96,96,106,109,103,98,100,96,98,92,96,98,92,90,104,98,102,108,102,101,112,105,89,107,99,99,119,97,99,105,110,93,95,107,112,102,106,98,98,100,102,102,100,103,96,97,117,100,99,104,109,106,99,103,120,100,99,106,102,109,102,101,101,113,104,99,102,109,103,104,103,95,113,99,92,115,100,109,97,99,100,101,97,99,103,106,106,102,113,108,102,108,105,107,108,95,91,96,98,101,99,104,101,111,99,101,105,111,100,102,113,115,102,104,95,94,97,99,105,94,104,96,109,99,95,109,98,103,101,99,96,110,105,94,98,109,105,91,98,104,113,95,100,107,95,103,98,104,98,97,109,105,101,100,91,101,99,105,108,122,96,89,103,108,106,116,109,102,102,114,111,109,108,98,113,90,108,103,99,106,98,119,102,96,100,99,100,106,81,104,111,104,113,103,103,104,100,88,98,113,103,119,94,113,126,102,75,117,107,102,103,110,98,108,110,117,112,102,98,99,92,110,85,101,113,124,101,102,102,120,100,113,109,98,108,96,103,102,102,103,102,120,113,116,83,100,104,83,83,109,116,110,97,104,108,108,97,114,102,109,112,94,91,87,98,110,106,98,101,93,114,104,100,98,95,116,101,99,107,113,101,120,105,105,114,92,94,100,100,98,100,108,95,97,92,106,112,106,100,107,107,106,103,98,107,89,112,88,96,96,105,108,103,103,99,94,99,104,99,91,107,111,98,106,99,104,99,113,109,103,98,100,105,128,109,105,105,108,94,101,113,107,97,109,102,99,101,103,96,108,113,102,100,90,110,103,108,98,105,102,108,105,105,102,106,98,103,100,106,97,102,108,98,108,98,96,122,100,95,90,90,114,105,95,101,110,112,102,98,99,105,95,102,96,99,104,109,92,95,97,95,103,120,95,130,93,108,112,109,97,110,91,102,109,100,99,107,104,95,105,99,98,97,98,101,98,107,114,101,114,105,94,110,92,95,103,108,106,95,96,105,112,121,109,99,95,109,111,98,92,79,92,121,90,96,88,101,105,98,92,107,102,114,94,114,100,96,120,105,92,105,82,97,105,101,101,95,98,111,98,105,115,104,113,96,90,101,96,98,105,92,103,97,92,110,86,96,107,102,106,96,106,99,114,105,112,102,94,97,101,99,98,115,102,99,99,100,111,95,110,107,94,91,104,84,103,109,102,103,105,109,81,105,115,98,107,97,105,103,95,111,107,101,92,104,91,102,106,94,104,126,102,99,98,108,99,88,92,96,95,95,102,102,96,91,93,99,82,108,102,96,109,99,104,105,101,91,107,92,111,95,116,110,97,107,99,101,90,104,100,115, +438.78329,103,80,108,98,94,95,96,105,96,97,96,101,101,133,109,102,91,100,95,94,102,117,91,92,107,109,94,116,118,91,99,92,95,117,89,108,107,105,105,108,91,100,105,109,93,106,103,105,98,99,137,96,94,102,94,96,108,102,87,88,109,112,109,108,106,107,86,100,104,99,105,95,96,91,96,102,106,106,99,101,92,104,134,103,100,95,117,96,97,100,93,101,92,90,112,104,94,104,90,100,94,109,103,97,108,104,91,113,97,87,102,101,103,75,102,89,85,101,101,95,115,111,90,79,101,110,109,96,108,102,101,103,94,103,118,143,99,97,105,99,104,93,120,103,102,90,117,110,95,84,104,91,111,90,94,103,102,101,100,92,97,103,109,108,102,118,112,95,117,103,106,118,101,109,98,96,100,92,105,104,109,111,100,100,101,96,98,102,112,93,100,89,105,111,98,105,102,101,109,90,102,101,109,108,100,101,95,99,100,99,99,94,102,112,100,112,95,84,104,100,97,101,109,102,99,102,98,104,112,96,105,96,102,103,101,105,111,99,103,114,81,96,117,100,102,97,96,109,98,105,94,114,93,105,95,109,97,115,94,92,108,108,98,98,103,90,117,110,96,90,105,101,101,105,109,99,124,90,103,95,97,96,102,98,100,98,91,95,100,107,103,95,110,84,108,82,84,93,105,116,91,93,107,105,87,114,105,102,95,113,97,98,114,103,102,91,94,103,98,106,101,103,103,110,105,97,96,95,108,105,90,95,116,93,111,94,94,101,104,97,91,92,94,125,100,105,111,108,112,105,107,108,109,107,104,103,108,108,106,91,100,95,102,109,102,98,102,109,91,100,101,94,113,93,107,113,99,97,125,102,102,106,116,101,105,95,115,87,104,91,116,99,98,107,98,106,69,99,100,105,113,98,105,99,98,96,104,115,96,100,67,109,100,109,93,70,110,93,110,104,91,94,92,121,96,94,91,91,103,102,101,102,101,101,96,106,98,98,105,101,92,104,97,109,104,104,101,84,109,117,99,106,97,107,99,102,109,96,107,83,110,101,100,99,105,103,106,102,107,109,109,116,99,92,107,101,102,107,95,105,103,106,113,90,99,109,115,116,99,108,101,103,107,109,102,111,98,103,101,109,95,86,103,94,102,107,97,103,97,106,105,101,100,102,108,111,112,105,98,93,101,105,106,104,107,99,106,104,92,101,100,109,122,104,96,101,98,96,90,106,110,100,110,113,118,91,115,87,117,109,106,99,89,100,82,102,113,104,95,93,120,93,91,105,94,107,103,110,106,103,111,109,97,108,91,98,111,100,98,105,105,95,101,101,97,101,111,98,96,101,108,103,100,103,112,88,96,103,101,100,110,91,103,99,104,110,96,100,95,109,104,94,105,102,110,103,109,98,82,105,102,115,104,129,98,90,96,105,109,112,101,106,96,116,100,102,101,105,98,103,109,110,106,97,96,71,98,95,103,106,107,102,95,106,101,105,118,104,94,86,98,100,104,105,102,93,102,88,103,95,110,105,111,93,88,107,118,108,110,106,114,102,105,101,118,97,96,115,99,106,118,90,95,99,88,96,99,101,110,102,103,99,92,107,103,95,112,105,95,88,102,103,105,116,103,94,98,101,95,101,102,104,100,103,100,103,117,109,105,109,102,103,96,102,101,104,102,98,105,95,109,88,106,99,110,96,112,106,100,105,102,95,107,100,99,102,95,100,107,92,109,109,104,110,94,98,92,94,95,94,98,106,113,104,111,108,105,103,110,98,101,100,113,111,109,106,106,100,123,108,64,88,111,117,103,100,97,107,89,89,104,99,89,100,105,95,105,102,113,90,87,99,111,93,106,102,118,112,99,101,96,117,95,110,102,116,108,110,113,110,111,98,104,107,95,121,117,98,106,97,105,88,103,91,101,91,104,95,98,100,103,90,105,102,104,108,110,107,107,103,100,96,108,99,108,112,95,113,109,110,109,109,105,105,120,93,106,128,116,90,112,87,99,102,110,106,98,103,113,102,113,105,101,105,105,90,98,87,103,81,95,113,107,113,103,95,118,117,112,115,95,93,107,96,92,101,92,99,100,102,97,103,102,108,109,96,102,98,97,112,104,94,106,103,98,97,97,87,96,114,98,111,104,107,98,104,106,103,101,103,107,91,105,108,114,108,98,121,102,103,92,94,104,107,105,95,105,82,115,68,101,83,91,110,109,101,105,94,112,99,105,116,104,104,124,107,100,109,99,108,129,106,101,100,96,99,101,110,105,99,103,105,101,85,106,103,98,98,95,111,103,115,105,105,100,107,92,104,117,90,107,93,108,97,107,112,105,105,99,95,112,106,102,99,109,98,104,108,84,100,100,99,98,103,86,100,76,109,105,104,108,110,100,112,101,121,95,108,99,102,100,122,100,108,101,100,105,104,115,90,105,107,98,109,109,108,98,88,103,96,95,101,101,109,103,107,100,100,108,117,100,106,112,96,97,98,101,107,117,108,106,106,109,110,98,105,69,108,96,100,100,98,109,109,104,92,109,91,90,92,109,107,94,102,95,103,106,102,100,92,105,104,107,104,100,119,107,107,104,86,93,108,101,108,112,97,102,106,108,90,106,108,93,115,93,104,113,96,98,105,97,106,102,93,106,102,107,93,104,116,91,105,106,110,109,98,103,112,99,88,105,106,101,102,106,117,98,107,108,100,102,106,111,123,100,92,103,103,109,94,103,110,101,111,103,109,110,105,104,104,98,99,97,99,100,108,107,106,95,105,100,110,105,106,107,98,99,104,110,93,98,100,95,108,95,107,97,103,109,104,104,104,90,93,95,109,106,100,91,102,101,112,94,104,114,98,97,98,96,105,108,105,96,100,97,111,140,87,108,103,117,116,97,112,114,99,107,96,93,110,102,99,99,95,100,99,98,90,101,98,103,115,99,102,108,100,105,95,93,114,101,107,97,96,106,99,111,105,101,103,98,116,101,94,103,104,98,109,105,93,98,106,99,105,112,104,92,104,109,105,105,101,100,102,109,101,86,107,109,99,98,105,100,108,110,89,95,100,101,107,98,112,112,101,88,99,100,113,102,102,98,102,107,116,106,102,105,99,102,88,116,98,104,110,106,109,113,111,110,100,101,118,118,100,101,103,99,105,105,102,100,92,101,110,101,94,101,97,100,110,102,105,83,104,125,86,106,102,101,108,93,88,101,100,95,91,106,116,100,97,80,125,98,105,106,102,101,93,112,97,110,107,105,108,102,102,93,116,96,110,94,108,100,87,105,105,106,105,97,98,106,106,98,104,96,106,112,89,109,102,99,111,97,99,95,106,102,107,92,97,102,109,100,96,107,86,101,105,108,108,93,102,97,99,114,108,102,101,99,98,104,114,102,104,102,93,96,101,96,94,104,98,112,95,102,113,116,108,100,104,98,89,100,91,100,105,103,104,97,98,104,109,104,94,85,106,96,103,97,108,99,95,98,106,105,108,114,103,102,108,100,103,113,108,103,120,89,103,103,106,117,115,103,116,100,97,102,103,98,106,98,109,108,88,107,100,104,93,103,105,108,97,108,113,95,100,101,116,108,95,86,99,103,107,108,100,104,95,91,96,104,103,110,86,107,84,109,100,101,103,98,119,103,90,95,96,95,101,103,99,102,104,109,111,98,106,106,104,108,104,101,105,99,103,87,101,109,104,103,91,118,99,104,122,110,104,120,97,105,106,99,102,100,106,112,95,103,92,108,103,108,93,104,95,104,100,109,104,112,99,104,100,93,109,110,111,97,99,101,106,93,100,107,100,121,100,99,104,98,101,105,106,108,102,102,105,117,98,97,116,95,104,92,105,109,108,105,115,105,104,105,109,100,93,95,98,98,93,87,116,101,103,105,101,90,105,100,108,99,92,90,98,107,102,100,93,104,103,98,92,97,102,98,104,110,101,95,121,103,100,106,105,96,104,115,109,103,106,103,93,108,104,89,109,101,96,103,98,93,111,99,102,91,112,106,101,108,105,113,125,108,109,98,106,102,103,103,106,101,91,107,107,96,86,96,97,97,109,111,107,117,106,106,98,95,103,112,102,99,106,104,86,106,101,102,99,105,107,101,106,101,105,100,111,111,107,97,106,104,106,102,105,81,105,105,123,99,79,113,101,100,109,104,105,112,97,107,110,100,91,102,114,94,109,106,113,117,108,104,98,108,101,108,100,108,91,100,102,94,103,87,101,95,91,74,96,99,106,110,102,96,103,115,107,92,101,105,108,109,103,92,103,101,110,111,109,106,99,104,105,96,109,94,95,102,100,100,100,101,91,100,108,112,106,107,102,103,101,91,98,107,101,120,110,95,100,105,116,102,105,102,93,106,112,105,105,99,92,125,102,100,101,103,99,91,101,103,97,117,108,98,100,87,110,97,98,99,104,103,100,111,81,106,95,113,110,94,96,104,104,107,105,95,102,104,93,109,105,109,93,95,94,102,107,102,96,72,106,95,106,93,101,102,109,97,112,109,103,102,102,98,108,97,104,102,97,110,96,100,105,100,93,99,91,99,101,102,101,97,114,91,117,79,100,103,83,120,95,101,110,97,98,110,101,119,116,113,101,106,101,98,120,100,95,93,107,97,120,106,103,94,102,119,98,98,99,105,93,98,108,98,96,103,95,107,101,112,105,103,97,91,101,110,109,97,101,96,105,102,98,109,89,107,106,98,104,105,102,92,100,96,101,87,105,113,94,103,105,102,96,113,105,91,89,98,101,95,103,105,105,102,105,104,109,116,106,95,96,98,92,99,95,109,98,103,93,103,97,96,110,88,103,93,97,111,100,96,105,101,102,110,100,108,84,97,83,101,99,99,97,104,109,92,98,113,98,108,99,98,104,98,124,95,89,106,92,98,105,90,99, +438.92365,90,97,105,106,93,114,71,84,91,104,98,108,90,90,100,96,100,114,115,110,103,112,82,105,96,102,94,84,94,99,112,92,114,98,96,97,90,105,87,99,96,91,95,116,105,121,97,108,108,110,76,93,109,102,100,108,121,89,108,91,106,95,108,103,91,98,100,102,106,101,94,100,102,105,97,107,113,107,97,98,102,98,117,121,110,92,82,91,87,97,103,99,109,92,102,101,102,104,94,108,97,114,88,95,99,98,106,117,94,88,94,106,104,92,101,96,94,95,106,110,97,91,95,105,111,120,101,100,91,95,105,102,109,92,101,116,95,104,92,105,102,94,101,101,100,109,94,106,102,96,102,101,104,107,105,102,98,96,103,89,117,112,108,92,114,106,103,99,82,88,109,109,91,107,105,101,105,87,99,99,115,97,103,106,108,111,103,115,104,98,108,112,110,88,98,105,98,91,92,124,98,102,93,88,104,112,101,98,103,103,107,94,95,101,111,109,97,112,95,104,102,97,117,107,102,104,107,93,129,103,93,100,109,108,102,108,96,104,105,112,108,94,105,104,99,96,101,112,103,101,102,101,104,107,97,103,98,108,114,97,103,99,99,105,99,111,94,103,103,77,104,105,102,105,103,95,108,102,98,95,116,106,104,98,96,91,103,100,99,103,97,110,118,105,117,113,84,99,107,111,104,104,110,109,99,113,113,103,91,109,91,99,90,101,102,87,100,101,115,98,103,106,99,103,102,102,109,97,95,102,102,103,103,107,113,105,99,99,91,95,104,104,110,108,106,107,110,95,108,99,113,118,114,111,113,110,101,104,104,109,108,101,94,112,83,96,98,116,95,101,96,104,108,104,89,104,113,96,103,111,108,103,97,106,100,94,96,108,62,107,101,100,92,101,101,109,97,109,99,104,104,111,109,100,95,99,96,109,105,107,100,93,128,108,94,93,92,87,113,110,103,105,91,90,103,101,113,87,104,110,108,105,95,105,107,104,101,102,98,88,108,104,105,115,115,110,102,120,110,103,103,109,90,111,108,102,105,110,106,101,100,91,109,110,103,105,89,107,107,98,94,108,105,107,91,97,105,105,102,103,102,101,106,103,97,87,116,104,89,99,96,106,109,105,92,109,103,104,99,101,110,99,99,97,105,108,99,103,101,103,103,101,111,95,102,111,103,102,103,93,93,113,114,108,102,96,92,106,101,107,91,87,101,109,97,87,102,96,97,88,90,103,97,104,115,106,97,105,117,104,99,105,100,105,95,104,113,101,96,118,102,109,87,95,108,99,101,98,116,105,100,100,96,96,103,93,95,112,93,101,107,101,99,99,105,92,111,109,105,102,101,99,97,101,99,111,97,99,107,108,105,105,99,105,87,108,100,94,99,89,92,110,103,107,109,106,105,94,116,98,97,93,96,103,106,100,95,105,113,95,106,104,95,106,109,101,99,97,116,106,105,104,100,92,93,105,110,107,95,106,96,104,107,108,94,108,113,111,101,98,88,116,99,109,95,90,104,88,106,106,110,101,101,96,97,112,98,109,107,106,118,109,111,104,95,99,96,110,95,102,96,108,97,111,109,100,123,100,111,104,99,102,94,95,96,106,101,105,101,91,112,106,108,95,101,103,95,98,107,91,104,99,95,111,105,94,117,98,97,96,108,104,102,105,93,94,107,99,103,97,106,91,101,110,102,100,101,93,99,100,96,95,105,105,109,107,104,102,101,99,89,88,100,107,93,110,95,96,98,101,108,113,101,105,94,112,91,110,97,100,111,117,113,112,108,101,106,104,106,101,101,105,101,100,111,102,89,104,111,105,107,111,108,92,100,103,100,106,102,92,94,113,95,97,113,103,110,99,100,95,102,119,96,101,102,104,105,102,76,103,109,108,96,103,95,112,101,107,109,94,97,103,92,85,104,106,98,96,107,99,98,99,109,77,98,95,103,104,105,113,106,92,92,101,99,98,102,104,110,88,96,112,102,108,77,105,106,107,92,102,100,101,110,113,95,104,104,118,86,109,105,100,102,106,97,100,97,117,97,109,104,101,120,105,91,102,96,102,101,107,101,102,102,93,110,104,102,97,91,95,113,104,99,101,106,97,98,101,108,116,99,108,106,99,105,105,96,105,109,118,98,104,102,105,97,104,101,75,89,105,101,87,105,104,111,113,110,108,106,99,99,95,108,109,106,104,98,102,95,97,95,109,109,98,104,95,106,99,104,104,96,97,98,105,98,98,110,107,95,111,107,100,98,104,95,87,103,90,106,93,99,95,105,94,100,108,109,108,106,107,98,100,105,98,87,94,115,105,95,94,109,111,116,98,111,84,95,92,106,87,96,106,84,105,113,117,98,107,100,106,85,101,106,85,97,86,100,104,95,97,105,101,93,95,95,97,85,97,101,100,102,88,102,97,103,99,98,98,110,101,96,103,100,95,103,105,96,102,103,95,112,97,98,100,101,105,103,104,110,107,90,104,92,91,91,94,101,98,99,106,106,106,110,104,109,108,120,92,116,101,106,101,106,105,113,94,106,101,98,113,98,101,100,104,106,105,109,99,95,99,108,120,119,93,93,90,116,98,111,100,108,113,108,105,90,94,89,121,112,100,117,105,109,110,99,105,109,106,108,98,112,108,101,100,96,105,107,85,91,94,100,105,110,109,93,100,99,115,109,100,109,104,102,90,110,107,113,94,106,104,102,109,120,110,97,98,101,95,111,98,126,119,98,103,103,104,106,109,113,109,109,104,104,111,117,95,91,106,94,105,114,109,104,105,103,108,113,108,111,98,94,105,105,107,107,96,102,108,96,113,101,90,87,99,101,105,108,113,109,107,103,89,101,113,107,103,111,86,100,104,101,108,104,119,118,92,105,100,106,103,92,97,103,114,107,102,102,105,100,104,99,105,106,107,100,109,95,86,82,108,95,106,104,103,105,100,108,94,103,99,97,109,98,105,90,102,125,115,95,109,100,100,102,95,105,98,88,93,100,106,118,107,104,105,102,97,112,103,114,98,112,102,88,113,106,104,101,112,106,111,101,106,87,98,102,109,115,100,110,99,100,102,105,104,100,111,90,104,97,90,99,103,100,99,102,102,96,117,108,112,81,99,99,97,113,100,91,109,108,108,112,103,104,103,104,91,98,98,97,97,90,109,105,106,96,108,107,93,101,105,102,105,94,99,106,108,104,109,94,108,107,105,110,98,95,96,107,105,94,108,94,97,107,101,104,88,101,104,116,98,106,104,102,107,112,113,99,122,95,92,115,95,102,103,94,117,111,104,102,111,99,94,107,101,101,100,111,96,108,98,107,96,105,109,109,99,100,106,92,100,106,100,95,99,106,106,103,107,100,98,100,89,106,108,96,96,107,101,103,101,101,105,99,122,112,112,103,102,109,106,106,104,94,98,96,107,117,109,110,97,108,102,99,104,96,107,95,105,112,109,111,112,109,102,101,92,94,99,101,102,115,94,93,92,87,95,100,105,114,86,103,101,98,90,107,94,99,88,105,98,102,101,102,106,100,108,107,110,89,110,101,109,106,109,100,107,100,96,97,105,103,93,95,107,102,95,109,108,100,98,104,109,109,101,109,102,91,109,100,109,92,109,105,106,96,116,107,100,106,108,100,102,102,108,112,98,99,109,100,100,107,103,110,107,99,112,100,95,100,91,118,101,105,111,96,105,96,106,111,107,113,105,108,99,103,107,104,104,111,105,99,117,99,93,109,101,103,103,104,90,98,107,107,90,99,109,103,105,107,102,107,96,120,96,106,111,102,90,97,105,105,100,109,104,94,102,100,99,114,101,99,109,90,87,102,120,100,105,93,122,96,105,95,97,102,117,109,101,104,107,104,104,97,92,110,99,104,104,110,105,99,102,95,103,106,99,108,90,100,97,92,108,103,94,100,104,113,100,101,95,102,98,111,97,107,105,104,108,104,95,98,110,109,111,89,88,105,102,98,98,112,90,100,112,100,99,95,105,106,75,95,117,100,99,106,90,110,104,105,96,107,104,103,110,87,113,113,88,100,100,94,102,104,109,95,103,102,107,113,113,101,106,104,104,106,94,102,106,110,101,106,100,104,108,112,107,96,94,93,112,106,98,110,106,102,107,106,100,105,103,102,87,101,105,107,106,93,96,98,103,101,84,101,97,91,102,88,102,116,105,112,103,99,111,100,103,107,113,103,95,117,101,101,103,77,106,115,103,101,89,105,97,100,107,113,102,96,107,112,102,100,99,109,101,79,98,98,99,91,108,103,91,102,109,94,106,107,98,95,109,96,100,102,104,110,111,100,118,100,102,103,102,107,104,103,107,98,102,96,100,103,95,106,98,114,90,100,99,104,95,106,97,106,112,101,101,102,106,105,106,106,108,111,102,109,89,102,116,99,87,94,91,107,100,101,94,102,106,109,98,102,112,94,97,97,106,109,110,105,105,101,112,105,111,115,101,105,115,113,104,97,104,114,104,107,105,100,86,106,105,101,101,90,102,105,103,100,115,98,109,92,87,110,107,100,108,99,104,98,110,94,101,98,99,99,104,109,96,108,107,102,107,107,99,115,88,96,109,94,96,116,96,99,101,87,106,100,99,104,103,95,108,92,117,97,69,95,101,96,99,110,107,111,100,103,90,111,109,99,109,85,95,111,99,98,94,97,101,103,102,106,100,101,89,88,99,107,108,106,100,104,105,96,94,87,95,91,112,93,96,98,112,103,106,107,111,102,102,117,97,107,104,108,97,102,94,101,105,87,104,104,105,101,102,116,108,105,103,105,104,109,103,107,96,102,97,103,101,113,102,113,96,101,101,105,75,107,116,95,89,111,102,71,94,85,91,103,109,101,87,95,101,97,90,111,100,112,102,98,96,108,98,103,102,98,97,112,106,103,95, +439.06396,107,110,91,110,101,99,98,92,102,104,105,113,105,99,105,102,96,115,92,114,111,105,115,90,99,105,102,107,98,105,96,103,104,117,107,102,99,104,100,102,96,93,112,109,99,111,104,100,102,99,104,98,102,87,106,89,107,95,108,98,99,102,112,118,109,79,98,109,95,107,116,100,103,99,94,91,101,93,104,100,105,95,95,108,105,107,100,106,92,86,108,111,113,114,103,98,109,101,110,95,111,105,112,99,90,105,100,96,120,116,118,96,99,112,99,104,111,95,104,107,104,104,107,112,99,106,116,105,106,105,93,95,95,116,103,107,113,108,93,105,111,108,95,105,102,99,100,98,103,95,83,101,103,87,97,93,94,93,114,105,100,100,104,85,105,95,99,96,97,100,113,105,104,92,95,98,98,86,108,114,103,115,102,99,100,103,109,99,115,109,109,79,112,103,106,99,106,91,92,98,106,101,103,99,98,100,100,104,111,101,104,94,113,110,91,94,96,109,110,97,109,128,107,87,99,106,103,118,95,110,108,99,105,103,97,105,84,116,109,106,101,111,107,95,99,117,114,108,109,101,102,101,100,108,92,112,109,103,106,102,94,94,111,101,91,109,115,101,94,95,108,104,112,96,116,97,95,99,95,113,101,105,106,102,97,99,97,100,110,104,92,103,114,102,107,105,119,100,113,107,103,105,100,124,109,99,107,98,108,92,96,99,98,101,110,92,94,116,113,98,112,96,108,105,105,123,94,96,114,101,121,108,113,88,117,107,105,117,102,108,103,107,106,96,103,108,99,110,105,100,96,95,101,99,106,104,94,111,106,104,109,96,110,101,91,98,102,93,93,113,105,102,97,101,108,93,95,104,107,101,106,111,91,108,105,105,105,65,105,108,114,99,94,101,101,101,91,97,106,89,108,111,104,100,109,102,117,101,114,110,88,96,103,100,101,103,102,99,105,95,96,93,106,103,106,117,100,88,104,111,100,107,99,100,114,86,91,106,92,105,109,95,111,108,90,119,96,99,89,105,93,101,104,111,76,95,100,113,104,101,102,103,106,107,99,109,93,97,97,100,109,121,105,102,97,100,97,111,103,104,103,113,105,107,88,116,109,103,100,90,100,112,105,100,110,92,99,103,103,108,103,101,105,103,95,108,96,100,100,97,109,104,110,109,111,108,110,97,105,104,99,108,102,105,92,100,114,107,91,107,98,103,103,102,106,92,98,103,109,102,102,106,97,100,102,116,112,100,100,109,107,116,100,102,95,102,104,94,95,100,111,100,101,99,103,92,100,94,98,105,91,112,113,103,92,111,112,109,97,107,103,104,100,105,99,93,108,109,110,108,110,108,94,104,98,122,94,101,100,95,105,105,104,116,102,94,121,97,100,100,103,82,103,113,87,100,104,102,110,101,119,97,105,116,98,102,98,107,111,102,92,107,94,103,98,99,116,99,110,119,100,110,102,104,102,88,110,96,100,114,107,102,100,106,92,69,87,98,99,110,114,119,102,116,91,101,106,103,112,100,102,95,101,111,102,92,102,107,102,94,98,105,103,92,93,99,97,104,100,99,106,94,101,113,117,113,105,104,102,106,108,83,99,100,104,140,106,101,101,103,103,97,105,102,104,95,107,93,104,108,98,90,102,109,98,101,116,93,80,109,98,100,97,101,95,89,102,103,103,92,104,110,87,103,98,81,103,109,102,104,102,100,100,102,95,97,104,99,103,98,96,100,111,101,101,100,102,111,92,101,102,103,95,90,103,95,92,99,97,102,104,106,104,119,113,117,110,107,107,95,94,102,97,108,96,115,99,100,104,111,102,96,107,106,96,93,105,106,96,90,104,116,108,108,113,113,98,102,107,99,103,112,116,93,106,105,90,101,109,109,104,94,99,97,112,89,100,105,106,100,95,94,115,96,108,100,101,96,109,102,108,105,99,94,99,106,103,100,103,103,99,123,110,116,110,137,107,108,109,106,104,104,88,97,98,120,110,94,103,99,101,88,100,119,93,114,106,99,112,109,95,109,112,113,111,102,111,112,104,100,91,96,105,104,117,87,99,105,98,101,100,112,113,101,99,100,105,96,106,95,104,109,91,102,108,110,101,99,104,101,102,106,90,113,93,103,104,99,118,110,102,108,107,124,99,99,93,97,96,100,88,129,107,105,109,102,102,100,122,109,105,119,109,101,97,104,92,102,105,94,96,100,103,106,100,111,112,93,105,104,113,110,105,113,80,88,99,101,97,102,95,106,100,101,98,89,99,94,120,100,112,100,109,113,126,96,115,98,107,105,92,103,112,101,98,104,110,103,104,98,101,112,109,92,111,103,104,105,107,92,107,111,102,89,96,95,109,110,87,106,105,65,129,101,105,105,107,108,116,102,94,102,86,102,111,115,115,106,100,94,105,106,113,90,99,118,108,101,105,103,100,105,110,112,105,94,105,103,96,98,95,104,93,112,120,100,94,101,113,117,101,106,110,89,104,102,107,75,109,107,111,72,104,103,102,111,113,91,105,102,109,107,112,100,102,105,93,99,98,109,110,96,106,98,103,100,98,109,106,106,97,102,104,86,106,109,105,100,107,92,106,102,111,110,102,100,103,109,102,98,107,102,106,105,100,118,100,106,83,111,107,87,107,108,110,99,101,95,107,96,106,112,117,100,100,102,107,102,116,113,101,98,112,109,110,109,112,117,103,99,88,111,109,113,98,101,111,93,101,102,108,113,116,117,103,108,106,130,110,102,109,104,111,111,114,103,101,109,108,100,99,108,105,107,113,121,97,113,99,104,95,110,101,94,103,100,100,101,135,102,106,87,106,95,99,123,106,109,96,109,108,118,105,94,127,113,114,97,105,107,117,104,110,106,96,104,105,102,105,100,101,106,118,108,107,99,100,94,99,106,94,100,116,99,103,111,103,94,122,112,108,105,103,109,105,113,105,96,103,103,107,101,107,110,102,99,120,103,100,104,97,115,92,98,120,110,98,108,104,104,95,102,118,101,103,90,94,102,108,97,96,107,95,95,112,109,112,109,100,101,91,112,110,103,98,110,103,101,103,101,75,114,102,116,101,104,98,89,98,105,95,99,109,106,114,102,104,92,106,97,103,106,109,102,113,101,112,104,106,102,107,91,104,110,89,97,97,107,107,106,95,102,112,95,112,102,103,104,102,107,110,105,110,90,117,104,99,109,104,99,95,105,107,99,119,100,111,93,105,96,109,101,97,116,103,113,103,100,118,103,114,104,101,106,102,109,96,114,98,107,97,106,99,92,112,105,111,107,92,94,90,95,105,107,87,111,110,95,104,95,115,101,104,109,96,107,99,104,109,99,110,109,110,105,109,116,115,116,107,103,99,118,111,111,88,102,97,104,112,109,102,89,103,103,110,99,87,101,87,98,91,110,106,104,90,100,114,103,110,80,90,104,102,111,95,109,104,98,103,98,99,116,106,98,107,106,101,101,103,96,107,108,87,98,100,117,91,115,110,99,84,103,97,95,107,115,107,101,111,102,105,114,109,104,99,116,101,113,107,110,106,113,110,112,101,106,99,107,97,108,117,112,105,109,111,104,101,107,110,111,108,111,104,104,102,109,117,96,100,106,103,107,107,102,104,98,113,103,107,102,109,109,109,106,92,101,100,108,112,103,109,99,85,110,101,110,87,118,99,106,96,105,92,101,107,91,105,110,103,116,103,100,107,116,103,110,108,107,101,91,115,107,98,92,102,96,92,102,95,103,106,93,103,103,109,99,109,102,107,103,110,106,103,105,106,100,112,99,108,103,100,101,93,105,113,105,97,106,103,93,113,103,114,98,103,104,117,109,103,100,92,95,106,103,105,99,105,83,96,110,101,116,102,99,114,110,105,112,103,111,108,97,108,97,101,96,105,94,96,101,101,102,104,94,101,100,114,105,99,110,99,95,102,98,98,112,107,114,100,101,102,97,106,103,112,109,108,90,101,110,103,98,95,101,107,98,85,99,100,98,104,98,98,111,121,105,99,100,100,95,106,97,102,95,110,89,116,126,104,115,100,101,109,109,112,108,103,105,108,108,108,95,105,98,97,95,96,98,95,86,105,108,92,99,114,103,96,111,108,91,104,100,106,101,109,116,93,98,94,103,103,100,109,105,98,105,96,102,112,104,98,86,92,97,99,99,112,95,102,108,103,99,101,109,105,113,105,106,98,98,99,123,103,102,106,99,103,101,102,109,108,92,107,104,100,99,88,109,99,98,106,105,100,108,93,101,92,110,96,97,106,94,112,102,132,112,110,101,95,120,102,92,79,95,102,99,94,91,107,127,103,91,102,102,108,109,111,100,110,98,108,96,115,106,87,80,111,108,87,100,103,100,110,111,113,104,103,102,101,102,102,97,100,103,96,100,96,100,84,103,106,102,96,103,107,106,104,113,112,98,109,101,107,99,94,99,101,95,102,114,104,123,101,98,133,96,105,107,101,104,96,87,87,109,109,102,103,98,107,104,107,103,105,108,107,94,101,103,105,103,102,130,107,102,99,96,104,101,107,96,94,107,88,88,82,103,101,97,99,104,95,109,102,98,112,103,107,108,89,117,108,104,96,93,113,96,106,107,91,100,99,99,106,103,103,104,103,92,90,100,110,91,97,117,114,96,109,95,106,110,94,113,111,104,100,107,94,101,101,103,95,111,99,104,95,103,102,108,102,95,100,102,111,102,106,111,99,87,97,87,97,96,99,112,104,112,100,99,113,106,108,101,100,107,102,111,111,111,89,109,107,101,102,100,104,100,105,91,109,105,92,100,97,102,109,96,103,108,106,98,93,100,103,111,108,95,106,101,84,99,121,106,87,86,92,91,95,80,111,93,118,104,93,83,113,109,95,100,106,109,102,97,92,104,106,87,101,119,97,99, +439.20432,129,100,106,96,73,107,91,87,103,90,92,101,88,88,113,109,102,96,96,99,96,97,95,118,101,112,104,113,102,94,97,96,97,104,102,101,113,99,103,97,104,103,99,101,102,98,96,109,99,107,94,100,102,95,104,97,98,98,94,99,105,111,98,104,104,105,92,97,108,93,98,97,104,101,87,104,116,105,97,110,101,112,114,100,104,90,104,107,96,91,108,107,98,102,104,114,101,89,95,94,97,106,95,104,99,107,89,105,97,101,105,121,107,99,101,109,81,96,100,100,96,104,99,101,96,117,108,102,101,102,102,95,98,114,101,98,97,102,98,105,97,103,97,99,102,91,109,110,100,95,102,91,109,91,92,67,112,96,107,102,109,100,90,104,106,100,91,95,101,95,106,101,91,108,107,115,100,105,116,113,109,99,82,110,99,101,96,99,114,103,105,101,99,98,98,103,100,102,112,99,97,109,103,104,111,91,100,98,114,106,87,102,104,106,98,103,100,107,112,115,76,108,98,114,112,100,95,104,97,105,103,99,104,99,104,109,104,101,104,103,102,99,104,104,105,97,104,95,99,94,105,104,85,97,97,103,97,110,95,104,101,99,93,108,108,108,110,96,109,101,113,105,105,91,99,104,104,113,96,117,99,98,108,96,113,100,118,93,99,103,105,95,117,112,110,107,103,110,98,103,96,104,108,125,93,117,104,120,93,106,91,107,98,90,106,109,95,113,105,99,103,99,113,111,101,94,107,104,106,123,97,97,100,105,104,100,97,98,106,107,102,102,109,97,113,109,102,103,83,121,107,101,98,110,104,96,109,101,105,101,107,114,104,106,106,98,108,109,97,118,104,101,98,107,102,98,106,97,100,108,107,102,99,103,95,102,91,104,103,103,108,109,98,125,103,85,94,99,97,111,105,106,90,96,110,97,107,103,105,105,93,96,95,102,100,91,104,99,112,111,106,106,92,105,108,98,90,112,99,110,94,77,96,110,95,89,103,109,100,103,98,105,105,97,93,94,103,94,103,102,100,106,111,102,99,98,111,106,113,107,95,120,96,113,112,106,115,105,108,102,103,97,107,96,109,100,89,122,103,107,94,113,96,99,113,91,104,105,91,79,104,98,111,105,101,101,94,100,99,94,111,93,100,97,110,110,100,105,106,108,102,100,103,102,116,100,100,99,98,104,94,105,113,109,100,104,96,119,101,104,87,105,105,90,106,101,96,106,100,114,107,99,102,93,80,103,109,104,107,96,124,109,97,110,98,98,99,96,101,104,102,105,105,93,109,111,105,105,98,101,97,96,110,99,107,103,100,101,99,94,99,108,111,94,111,94,106,100,91,107,103,96,104,110,103,95,99,95,96,104,104,101,90,98,101,104,104,102,91,106,91,89,106,100,67,94,93,105,114,114,107,109,118,105,100,111,102,105,96,102,92,93,102,98,110,106,103,99,107,95,103,106,99,106,110,96,96,103,106,108,100,103,105,110,110,99,100,103,117,101,106,107,119,92,100,105,103,100,109,104,111,107,107,105,88,102,98,114,98,82,118,104,110,84,103,103,99,104,98,99,103,112,117,111,96,102,91,102,102,91,101,88,111,94,105,105,96,91,94,98,116,110,100,100,95,114,107,113,109,98,108,95,91,110,94,110,101,92,96,112,113,102,95,96,101,104,100,91,106,111,98,98,109,103,92,98,94,107,96,100,99,104,94,88,78,105,107,100,121,94,106,109,93,108,94,104,92,97,118,99,109,105,124,109,109,64,117,96,105,105,103,106,105,99,104,120,94,99,104,127,102,118,95,103,102,104,96,94,108,107,101,99,110,106,98,105,91,110,109,102,106,101,88,98,140,121,103,111,112,115,98,109,99,110,101,113,102,90,112,109,101,96,104,98,91,112,95,89,107,105,101,101,104,106,87,90,122,109,102,94,101,103,103,102,103,101,101,103,97,81,103,105,91,103,103,99,94,102,115,107,70,102,99,107,96,112,105,111,98,97,105,86,102,96,97,103,96,99,101,104,109,106,109,103,107,96,102,108,108,103,107,113,102,109,101,94,111,104,101,103,107,105,99,102,129,103,116,99,95,113,114,102,108,100,99,100,99,104,97,100,104,114,104,113,106,98,95,109,102,111,105,103,112,90,108,91,108,94,106,106,110,93,97,104,103,114,103,92,92,97,102,97,105,91,128,103,102,94,98,99,85,105,106,104,105,96,104,100,101,100,91,103,110,98,99,105,89,99,108,102,101,98,100,99,105,100,97,102,104,95,116,102,94,100,112,110,109,117,107,105,101,109,102,100,97,101,105,100,101,99,101,109,97,95,106,106,114,101,103,112,114,113,106,97,105,100,104,102,96,100,98,106,91,105,95,98,104,104,109,101,106,96,104,98,94,137,104,99,94,101,92,104,104,99,108,119,120,115,103,101,93,103,97,104,98,102,102,104,106,91,101,92,100,109,93,102,98,99,113,104,106,100,118,98,92,100,99,104,113,102,100,99,113,84,118,109,98,98,99,104,113,101,106,100,107,96,91,106,108,97,95,101,100,100,113,113,104,124,109,107,110,103,103,91,101,98,98,115,113,102,95,92,110,113,106,103,101,93,111,95,110,110,109,96,100,81,105,110,103,109,101,103,105,86,115,109,105,105,111,96,98,92,113,98,102,97,96,109,113,113,95,109,83,111,102,97,113,97,101,110,107,99,99,112,103,112,107,93,117,96,107,112,113,98,99,104,101,100,103,101,95,108,104,109,98,111,110,97,104,94,107,102,108,104,95,100,94,106,108,92,102,108,84,100,114,94,102,110,104,106,106,97,92,91,108,96,100,98,101,112,119,103,95,107,102,117,104,85,106,115,94,97,99,98,102,104,110,82,95,99,103,105,96,106,98,93,102,97,109,121,101,97,102,97,110,99,102,110,95,102,101,106,95,100,102,109,100,92,102,95,95,103,88,111,88,99,94,114,105,87,108,112,102,98,83,96,119,104,100,95,99,107,100,107,109,107,104,100,107,101,92,101,91,100,99,105,106,94,97,107,113,95,91,103,101,96,109,105,103,106,92,95,102,105,94,106,93,91,101,93,108,103,97,97,106,90,107,95,100,113,107,106,100,108,104,104,107,106,118,103,107,98,103,91,103,102,109,95,93,97,99,110,97,104,109,105,95,100,105,120,105,104,105,97,105,103,104,109,97,105,89,101,95,103,108,94,112,105,106,107,102,99,108,91,91,96,103,91,111,91,107,117,91,100,110,98,103,111,91,88,97,92,75,117,93,98,94,100,102,100,99,93,100,99,102,117,98,98,99,96,92,105,105,113,101,98,104,88,102,109,106,95,113,104,87,76,96,100,94,102,91,105,109,100,104,101,92,97,105,102,96,102,95,107,116,104,109,107,117,103,113,88,99,99,91,104,97,101,109,97,103,101,108,102,105,108,104,101,95,92,75,103,107,99,91,108,107,110,97,103,102,101,109,100,98,99,98,96,112,103,101,91,102,111,96,111,105,106,95,93,101,105,100,113,91,103,104,97,90,116,103,109,118,88,94,108,94,96,96,117,104,107,110,104,94,103,102,101,105,100,101,96,94,99,112,100,94,96,102,95,101,91,106,112,100,91,99,104,96,104,102,101,99,97,107,103,99,106,102,93,99,100,102,98,102,99,101,100,106,111,100,102,94,101,94,107,106,95,120,98,87,100,104,103,103,101,110,106,91,106,111,100,106,91,107,101,108,116,102,95,107,108,104,99,102,100,103,117,100,100,98,91,97,102,113,100,99,98,98,109,99,110,104,106,98,95,97,91,97,98,116,94,95,111,112,102,106,111,75,105,106,103,113,89,98,104,95,111,107,117,102,111,92,89,101,107,93,91,95,100,105,101,92,90,98,100,97,97,117,97,100,105,85,87,117,103,101,100,104,94,105,105,106,110,88,108,107,103,110,111,112,104,97,105,99,102,104,91,102,96,96,102,105,111,101,109,100,90,97,96,107,91,101,100,105,102,99,95,97,113,110,99,101,99,108,106,110,108,108,101,95,109,99,103,105,104,98,100,91,111,94,94,91,100,71,108,101,109,95,97,103,99,99,99,117,107,92,108,102,85,105,100,102,96,110,100,103,103,98,100,119,101,100,103,105,105,92,100,94,104,117,94,103,93,113,105,106,102,102,94,102,109,105,99,92,122,95,101,97,102,119,105,98,94,106,97,94,100,99,96,98,99,88,109,100,94,101,118,106,93,99,102,101,125,106,104,98,95,98,101,104,95,110,103,97,96,91,87,90,108,95,104,91,100,95,113,88,95,108,114,97,106,106,109,100,117,105,101,109,104,108,101,100,97,104,98,110,93,100,101,92,95,100,102,103,91,103,106,64,79,95,98,104,94,104,105,97,87,100,95,105,103,87,112,103,103,103,102,108,106,94,94,105,110,94,95,105,99,101,113,87,103,92,106,96,103,112,97,107,107,75,109,101,98,99,109,90,98,100,100,104,100,95,108,111,98,99,102,108,103,81,98,108,95,101,93,92,113,105,103,103,111,96,100,98,108,99,96,110,110,98,96,68,101,89,110,111,106,85,111,95,92,106,102,107,101,98,99,102,92,95,102,103,111,104,102,74,137,109,105,103,95,98,108,98,96,103,94,91,101,95,94,103,79,101,107,99,95,101,89,104,109,102,101,112,97,99,72,109,101,97,113,112,137,109,95,102,95,101,108,91,94,98,101,96,102,109,97,100,100,97,97,100,93,96,108,87,111,95,105,96,98,91,107,104,102,99,104,104,107,109,96,100,100,100,92,98,102,72,99,107,92,100,103,99,105,98,107,94,97,93,100,102,104,85,99,83,99,92,87,88,102,97,95,100,98,99,104,95,94,80,102,91,102,101,100,109,112,92,106, +439.34464,101,112,99,99,96,102,106,106,92,118,98,101,102,104,117,98,127,98,92,106,99,98,101,103,98,99,85,105,96,105,106,102,101,103,97,92,96,98,104,86,109,101,102,97,108,104,94,100,114,100,108,89,101,104,99,88,104,97,120,104,90,102,98,97,105,91,99,112,103,94,104,112,98,98,98,107,113,112,107,100,105,95,97,102,100,107,103,114,104,114,105,93,94,97,103,100,93,101,95,97,90,101,100,113,109,116,95,98,102,96,86,91,112,94,105,97,115,101,107,100,99,103,103,85,82,104,102,102,103,99,95,106,98,108,101,97,102,101,98,124,105,101,103,99,105,102,97,111,97,95,97,100,109,95,101,95,95,99,100,104,95,97,105,102,100,103,104,98,99,112,100,104,95,97,86,101,98,105,96,98,102,106,107,77,101,99,109,97,97,104,109,92,96,100,95,100,103,107,91,114,101,98,113,95,106,99,103,111,86,90,104,103,117,106,99,102,96,108,103,102,95,109,107,96,93,103,110,104,92,101,104,105,105,105,103,101,113,106,100,104,101,101,109,107,98,102,101,105,95,87,99,109,103,100,94,118,101,108,94,100,89,95,102,101,91,100,104,118,111,114,97,104,102,111,112,86,114,114,97,115,105,102,87,104,98,103,97,102,96,101,104,111,104,92,102,103,102,94,90,98,92,111,101,102,101,101,101,119,95,95,96,97,98,97,108,93,90,99,107,99,95,96,97,116,100,105,98,96,102,104,101,98,91,103,102,98,102,95,98,112,100,102,101,99,91,101,100,98,106,103,92,101,101,104,103,112,110,100,113,103,96,106,99,107,108,102,113,102,97,105,107,98,109,102,105,96,101,108,96,106,107,106,96,106,91,86,102,104,105,99,99,96,91,118,97,100,111,107,98,102,94,104,92,93,100,115,108,106,102,103,103,89,101,102,98,101,108,110,106,109,98,108,96,94,103,95,100,99,110,106,92,96,101,99,100,107,102,101,90,99,98,108,102,100,102,121,101,100,80,102,95,100,91,96,110,102,102,106,103,105,104,105,95,104,110,109,97,104,111,97,87,105,102,113,101,109,89,104,103,102,88,99,107,97,103,98,101,96,97,99,108,102,117,94,89,99,102,109,107,107,101,115,111,105,97,104,97,102,115,101,99,106,116,95,95,96,103,102,106,94,100,104,110,86,96,101,101,103,98,105,110,110,103,106,100,101,109,109,105,98,95,103,91,119,103,99,101,91,102,110,112,112,104,111,109,94,121,121,102,91,100,105,97,109,111,86,104,100,90,102,89,95,106,101,105,115,98,99,98,103,111,107,98,94,106,110,109,116,99,111,110,108,91,102,114,107,97,108,109,104,101,108,97,100,94,94,109,95,107,107,101,105,103,106,109,108,106,94,94,109,113,102,112,95,105,101,98,104,100,95,104,91,98,109,88,101,105,105,98,96,98,105,99,108,99,100,111,100,104,105,97,105,95,102,104,111,100,109,104,105,110,100,98,108,96,102,100,103,104,105,104,104,115,109,110,114,95,92,108,114,94,109,107,99,103,106,103,100,81,107,105,104,102,101,80,104,106,105,120,109,91,106,99,90,98,98,105,96,88,86,103,108,100,104,109,106,108,110,94,103,105,109,111,93,101,106,106,102,97,110,98,112,97,84,95,106,105,103,96,98,92,97,108,96,75,95,91,99,116,108,114,86,93,77,98,103,95,94,94,95,98,90,95,109,83,98,101,106,100,113,99,105,93,95,94,103,90,92,95,107,104,101,115,109,99,101,109,114,105,127,95,100,107,108,103,106,97,107,105,105,104,107,110,101,102,101,97,101,95,103,104,117,99,99,97,104,107,96,105,99,100,109,84,108,99,94,96,104,95,105,115,67,103,113,100,99,100,109,107,83,103,103,105,100,108,103,116,95,96,86,103,101,106,108,104,112,104,105,101,103,115,98,116,101,98,94,115,92,106,92,120,106,102,103,105,93,105,100,109,98,102,106,103,102,98,103,89,100,112,106,103,110,106,99,105,87,106,94,95,110,105,91,98,95,101,102,91,107,82,96,96,92,99,104,104,105,98,91,114,92,108,94,107,100,115,104,110,120,93,110,105,103,96,104,96,103,102,91,107,114,95,93,102,110,94,96,109,99,102,107,113,99,101,110,98,110,99,94,83,100,101,85,122,98,72,88,101,99,101,104,117,90,114,104,99,108,111,102,88,108,113,108,95,104,107,96,109,104,99,88,106,100,92,111,103,95,89,103,94,102,91,123,114,107,105,100,101,121,100,99,94,117,103,118,94,117,94,99,109,100,104,102,109,103,102,106,86,97,101,91,98,86,102,98,110,79,97,96,91,90,100,102,97,104,113,91,95,100,100,98,96,90,104,108,102,95,123,118,90,104,93,110,109,95,93,98,116,103,98,88,89,107,98,98,110,110,92,91,98,104,106,97,94,116,104,109,91,96,103,107,104,105,96,89,104,97,100,106,99,115,104,99,104,85,102,118,108,112,100,95,107,108,108,105,101,97,101,113,92,104,108,101,99,104,117,101,115,100,118,98,110,108,108,100,105,103,104,112,116,102,105,93,101,103,96,105,99,100,107,99,92,114,102,105,104,100,100,117,105,93,106,98,101,97,110,98,102,104,100,99,107,101,113,112,104,106,110,104,101,115,113,95,101,104,102,116,108,101,108,100,97,80,117,110,91,121,99,99,96,92,86,106,108,109,103,83,118,110,106,108,110,109,101,95,117,108,92,110,102,87,113,121,88,108,106,110,96,80,108,95,95,105,100,109,121,81,105,99,103,109,115,98,105,88,95,94,104,98,109,107,98,97,126,115,94,104,111,113,103,107,104,99,113,101,102,71,104,91,109,95,108,107,105,99,107,109,107,106,100,108,102,107,111,113,94,94,109,98,104,106,104,104,95,104,102,91,115,105,87,98,103,107,104,113,98,102,103,103,112,100,107,91,79,115,113,113,106,102,106,108,90,100,109,104,99,94,105,105,103,97,97,94,104,112,98,93,92,106,110,102,108,104,101,91,104,93,106,87,103,113,89,92,96,97,102,106,106,117,101,92,111,108,98,109,107,98,113,102,102,98,115,116,108,102,88,102,95,111,100,109,99,89,93,100,104,106,99,96,95,81,96,100,82,100,98,94,98,88,107,103,112,101,103,103,106,95,77,83,95,99,110,105,100,108,106,104,102,111,94,104,94,79,101,99,109,104,113,102,104,109,100,103,109,111,96,106,92,101,102,101,99,104,101,98,103,98,100,106,98,94,103,91,101,105,99,102,109,97,92,93,110,102,83,109,112,105,97,94,107,100,96,97,102,99,97,102,113,109,108,98,100,98,97,100,102,96,101,101,101,92,123,98,105,106,99,97,99,100,105,130,109,93,107,104,89,106,107,102,104,104,102,97,106,91,104,94,95,100,94,91,102,107,112,98,80,103,102,109,97,117,104,108,100,100,93,102,107,90,104,103,103,113,89,117,119,99,102,109,100,100,114,98,105,117,100,108,104,116,108,108,88,98,125,104,111,105,97,108,103,98,109,100,104,105,107,113,98,107,95,108,92,99,99,99,101,105,96,95,91,111,94,97,109,112,137,116,83,107,104,106,89,108,109,109,98,104,96,95,110,108,113,95,98,98,107,105,93,105,108,95,108,117,96,103,98,103,109,109,106,100,102,103,109,111,96,93,107,100,119,106,106,102,91,98,95,106,103,104,97,93,91,89,103,97,109,99,95,110,82,100,99,93,106,109,109,102,105,96,96,91,109,98,104,103,104,95,110,100,87,81,109,92,107,97,109,112,109,95,99,104,100,99,112,93,98,100,111,96,103,100,102,98,112,106,106,100,98,100,86,102,119,120,104,98,100,105,105,98,102,96,100,101,87,99,90,95,110,109,99,95,86,95,83,98,94,117,105,96,104,105,99,102,110,106,100,119,106,101,103,91,85,96,94,100,110,97,99,100,101,99,103,90,106,109,96,106,98,105,108,106,106,104,98,103,104,101,109,101,110,95,113,92,109,94,108,112,97,98,99,97,98,94,101,89,96,97,108,100,102,106,99,98,101,80,115,98,102,107,108,108,104,107,104,124,105,115,105,104,113,110,97,92,91,102,104,96,115,103,104,105,101,100,94,92,92,107,109,106,109,106,114,86,110,103,95,103,95,111,97,111,107,100,103,103,113,106,97,105,113,89,117,106,101,108,106,100,102,109,98,104,94,101,106,105,95,103,89,106,98,109,103,102,98,96,85,100,113,105,95,102,94,100,102,98,95,109,106,106,103,102,109,120,107,105,95,100,103,100,103,109,102,104,107,100,107,121,105,97,109,101,89,117,111,108,103,103,105,106,95,98,110,97,105,106,91,97,102,108,92,108,108,93,109,110,99,102,105,100,103,108,104,108,112,94,98,102,99,98,101,100,102,100,114,101,108,98,97,103,99,99,97,93,109,106,94,110,102,91,117,95,98,112,92,107,93,100,98,97,90,99,99,96,95,102,75,101,95,102,92,93,102,97,99,102,108,108,103,99,96,103,94,99,106,112,105,118,95,102,100,100,105,87,101,103,103,108,100,114,103,109,98,96,95,108,98,103,105,118,105,102,103,104,108,101,86,105,117,95,109,101,105,98,94,97,95,96,98,96,104,97,100,108,104,105,118,98,94,107,97,95,120,72,107,110,106,107,95,117,98,97,65,125,93,91,101,94,100,106,105,104,112,101,93,105,110,102,106,110,98,97,105,92,107,103,95,98,107,93,101,96,108,95,104,100,101,115,105,99,97,105,94,89,93,96,103,101,108,100,96,107,100,107,97,93,74,98,92,98,99,97,101,91,105,96,97,112,109,124,100,94,103,108,84,109,108,96,94,83,102,95, +439.48499,91,99,95,94,96,63,91,91,101,106,99,107,97,103,101,89,110,109,119,107,106,104,101,107,109,95,106,109,98,107,93,97,91,95,95,101,100,92,91,109,107,97,99,100,110,94,93,101,88,99,98,98,107,99,114,92,97,99,110,95,85,104,94,102,94,109,90,104,78,97,109,96,109,102,103,102,93,84,91,98,107,102,103,93,97,75,110,100,95,108,91,105,106,95,98,110,105,95,96,105,92,99,99,91,96,91,104,101,104,104,104,95,105,96,96,108,107,102,102,101,110,105,109,108,95,113,107,94,99,101,107,112,109,94,96,89,92,105,110,92,108,100,96,97,95,99,96,105,94,101,107,100,99,101,102,103,99,102,104,102,92,102,101,99,102,106,99,91,99,99,110,104,104,102,104,108,99,92,113,113,101,95,103,99,112,99,94,95,105,100,103,101,112,94,95,99,106,105,103,108,91,96,101,95,105,113,102,113,110,94,100,103,110,105,103,112,103,109,99,76,98,98,110,94,106,98,95,123,105,100,97,104,98,96,111,104,86,97,115,95,103,96,118,95,96,100,102,88,100,103,104,110,103,124,108,108,112,106,103,109,116,104,84,110,94,110,106,99,100,96,108,104,104,111,99,105,105,108,98,99,108,106,95,113,105,110,95,97,95,96,104,104,112,107,107,104,103,106,98,108,101,87,70,101,76,108,106,74,107,113,99,104,98,111,99,100,99,107,88,109,100,111,113,105,121,95,104,87,107,92,104,104,104,108,105,109,105,99,98,105,98,106,100,99,95,91,94,95,104,104,103,108,105,118,94,101,112,117,124,103,105,101,98,97,102,106,95,100,120,107,90,85,103,117,107,102,95,105,105,111,105,103,99,63,101,94,108,105,101,101,106,96,102,108,105,88,93,97,92,111,108,106,110,102,102,104,99,99,112,95,96,102,96,102,109,100,95,104,99,91,102,106,89,101,106,101,106,110,92,102,94,99,102,91,96,107,99,111,109,105,102,89,97,104,101,103,96,98,100,114,98,102,108,113,100,106,100,98,104,112,87,102,102,104,99,114,101,96,102,105,73,111,91,102,105,94,91,114,84,108,106,136,110,116,100,112,115,113,116,103,91,95,108,92,101,112,102,98,104,99,109,96,114,96,101,102,110,104,101,99,114,99,112,109,131,103,102,91,106,95,102,87,109,109,85,102,106,108,92,98,100,97,99,102,106,103,106,101,106,106,109,129,93,99,114,100,105,102,104,113,103,108,101,105,99,102,101,90,101,110,106,107,108,95,103,105,109,104,102,100,103,106,106,103,104,105,109,104,96,113,108,99,96,98,100,106,99,105,89,101,108,83,110,106,103,108,88,112,98,107,98,97,97,106,100,111,94,105,93,105,96,104,113,91,87,98,109,105,106,107,96,96,106,88,102,104,94,104,113,97,99,115,102,107,86,99,99,101,104,99,116,105,89,90,105,87,106,107,98,102,90,95,99,103,90,101,107,100,116,95,102,108,97,113,107,88,108,94,95,122,103,103,100,104,117,110,107,99,102,90,102,106,113,90,92,108,104,101,105,105,108,97,108,108,111,98,103,105,106,92,107,94,105,106,109,109,102,107,101,98,99,106,95,114,88,106,96,112,100,109,110,104,116,109,127,95,92,101,110,105,97,98,105,93,101,99,103,96,119,99,102,101,93,115,98,99,111,100,97,99,104,85,98,86,97,104,108,97,109,99,98,108,103,102,99,111,102,100,102,104,100,109,106,101,101,109,109,113,112,100,101,109,104,105,103,103,106,103,98,100,105,106,112,116,111,109,105,107,106,108,101,109,122,111,106,104,100,109,99,81,106,109,102,105,107,112,105,109,94,100,102,103,123,106,104,113,94,110,98,107,107,106,102,101,108,103,103,103,109,95,100,109,106,90,100,99,130,92,102,102,96,101,100,90,100,108,97,117,99,104,97,96,103,116,103,104,99,114,105,116,106,99,87,105,98,95,113,109,107,104,109,110,105,101,101,89,105,111,105,111,105,134,104,101,93,98,99,113,114,96,120,105,106,104,112,107,100,115,101,92,100,109,107,106,105,108,95,113,99,100,102,106,106,111,105,98,108,98,108,103,91,102,107,113,94,105,95,96,91,97,92,105,101,106,105,96,94,95,98,103,105,99,115,111,108,102,103,97,97,109,107,92,113,99,111,99,101,105,119,99,103,112,102,103,108,97,98,99,96,109,96,104,101,106,97,124,104,107,106,107,105,94,103,104,87,110,103,109,89,99,106,97,98,82,109,106,108,103,107,107,124,111,113,109,105,103,100,98,91,108,105,105,75,105,99,118,86,96,105,98,114,100,110,92,109,91,102,94,81,105,90,99,91,113,105,107,110,95,100,97,106,85,93,109,104,108,102,131,106,92,106,107,106,100,110,96,103,92,92,101,104,105,104,99,106,110,98,98,94,103,107,93,105,93,104,101,99,92,105,99,100,130,108,109,98,117,99,103,109,102,105,96,101,97,99,109,105,101,99,95,105,74,114,98,104,87,103,107,87,120,99,104,110,132,105,100,98,107,116,109,107,93,109,99,108,109,98,106,116,95,104,97,96,109,121,111,95,106,105,77,95,118,115,83,90,95,111,100,97,100,104,100,109,89,104,105,107,99,90,98,113,97,116,98,102,104,101,104,105,106,100,108,102,108,113,111,109,99,107,106,109,92,103,111,100,102,97,92,98,113,97,107,112,105,105,103,108,113,104,116,104,110,107,108,98,113,92,107,91,105,100,98,95,95,103,102,94,106,103,106,109,103,104,83,92,94,109,103,114,107,102,96,109,99,103,101,107,91,105,102,106,97,119,101,98,109,102,125,102,120,97,73,100,107,106,105,106,108,100,97,113,100,98,122,102,103,101,103,112,102,93,99,109,99,113,111,102,91,99,102,108,103,91,117,101,105,98,106,102,99,107,97,108,108,105,93,105,100,115,103,95,104,103,105,106,114,109,110,105,114,104,85,94,105,109,112,117,110,96,108,106,96,95,113,112,116,107,102,100,109,100,110,100,97,104,78,93,104,108,106,106,100,109,105,95,98,96,92,107,107,106,108,97,103,102,94,101,99,105,104,108,102,106,110,107,106,101,111,111,100,89,98,97,96,108,102,108,115,104,102,104,94,107,106,104,109,119,98,90,103,104,106,108,99,99,96,99,108,107,104,111,105,100,97,102,97,95,101,106,113,102,114,107,100,104,105,100,99,101,95,94,101,100,102,94,85,100,108,108,98,107,94,95,101,84,98,90,71,84,91,116,116,94,96,105,101,109,99,108,93,113,92,108,103,99,113,98,100,109,101,114,115,102,94,114,88,98,110,102,99,102,100,108,101,91,107,102,95,100,102,101,98,101,100,99,114,101,96,101,103,109,109,96,104,95,114,110,100,104,100,108,100,109,103,92,98,99,107,107,109,99,100,117,104,99,90,109,92,103,99,95,104,119,95,98,112,98,94,112,96,95,111,114,112,102,106,100,105,89,88,111,101,98,98,87,104,103,103,105,92,104,104,107,100,90,95,102,99,112,108,106,112,98,99,97,100,94,103,96,98,82,94,90,96,102,91,90,112,101,107,100,107,106,99,99,99,116,102,79,113,98,96,100,91,101,116,97,101,106,104,115,102,98,109,94,96,92,91,94,97,93,113,86,92,106,96,102,96,100,106,110,113,95,93,104,100,100,102,107,99,109,91,106,92,105,108,102,100,99,96,105,95,106,100,103,94,109,104,106,98,99,99,97,102,90,102,104,94,105,108,88,102,101,101,98,118,108,103,111,90,111,97,108,105,91,106,101,93,94,103,109,107,101,104,102,95,107,93,108,97,91,101,98,100,104,104,92,99,97,114,100,99,82,113,78,91,111,99,94,95,99,101,96,99,109,101,99,87,106,106,105,109,102,102,98,103,108,97,106,93,99,109,108,119,92,94,98,91,99,117,113,101,92,100,115,101,98,111,104,102,108,107,96,106,101,91,99,100,100,101,98,104,101,99,100,95,107,99,106,112,115,102,108,108,108,113,95,102,100,98,105,97,104,90,105,80,112,108,108,108,89,111,101,111,106,105,109,102,98,110,100,106,98,102,96,94,115,100,110,109,98,105,94,104,103,96,101,106,120,98,113,87,97,92,102,112,105,102,107,98,125,109,108,108,112,82,103,94,100,117,106,103,121,97,102,100,101,91,99,94,105,93,104,120,105,102,97,104,107,87,95,105,116,101,98,106,110,97,102,91,92,100,99,104,104,106,100,95,87,110,103,99,112,91,104,109,101,103,102,99,112,118,102,108,105,106,101,109,98,103,96,92,102,93,102,97,100,92,121,104,116,109,110,107,108,96,104,107,105,105,84,101,106,106,98,93,108,94,106,103,97,101,108,110,104,100,89,102,91,106,102,102,104,106,105,104,100,99,100,101,102,108,97,91,105,81,103,92,88,96,91,92,103,109,100,100,86,106,106,79,95,101,100,117,101,105,84,107,91,92,106,102,109,96,100,100,110,92,97,111,104,94,101,109,102,111,107,87,109,102,98,110,111,92,114,110,106,107,95,109,97,86,107,101,100,100,93,100,97,108,108,95,103,102,87,99,114,106,101,107,101,97,110,106,109,97,112,104,106,104,104,106,108,110,102,100,93,99,101,111,101,108,91,100,99,93,104,112,117,104,104,105,106,111,96,96,103,104,96,106,92,105,83,108,102,98,102,89,103,97,107,93,102,118,98,96,95,109,97,97,109,94,108,112,94,107,97,94,98,101,115,98,105,105,109,105,95,109,100,93,108,102,87,90,104,96,98,115,106,99,103,102,103,102,88,104,88,92,109,91,105,99,100,103,109,89,88,103,92,93,108,106,88,94,120,97,120,92,99,97, +439.62531,100,95,89,120,94,110,101,99,102,93,91,109,100,92,96,96,83,101,100,112,87,93,114,92,101,96,104,99,106,110,94,97,93,116,97,86,81,87,85,89,99,111,97,99,98,107,96,111,96,93,98,99,104,91,97,96,106,100,100,86,93,95,91,97,96,103,97,108,109,103,97,113,92,95,122,99,98,91,104,90,96,105,101,104,111,108,96,101,105,101,102,91,102,104,98,109,110,94,100,96,109,93,99,99,102,101,102,101,90,100,126,105,99,108,97,103,102,100,100,95,101,98,96,104,95,114,99,103,115,112,111,99,94,110,96,105,97,104,98,95,91,102,99,100,101,103,95,100,97,107,101,102,108,91,91,104,118,104,105,104,107,101,103,99,103,106,96,96,112,96,103,98,96,109,100,100,95,109,106,108,105,110,102,102,111,108,95,89,101,96,101,110,104,109,111,108,92,82,105,108,102,99,110,106,103,100,107,104,96,107,104,101,104,106,96,119,93,95,106,109,104,111,96,104,106,106,108,95,103,102,94,106,98,98,102,102,100,125,108,96,91,104,102,94,96,108,104,102,108,103,98,98,90,104,95,105,105,106,98,76,93,122,96,112,108,108,107,103,113,98,102,101,99,97,100,105,95,122,91,96,99,109,107,103,112,98,105,90,102,105,102,98,100,97,109,105,112,109,82,103,102,98,119,106,96,103,108,101,121,104,98,113,109,99,102,110,107,104,98,88,127,92,92,110,100,108,106,93,105,111,120,113,98,100,97,91,103,99,115,110,94,99,103,102,101,109,112,110,101,85,110,106,105,94,105,99,95,103,102,106,99,106,104,96,96,100,103,95,98,108,106,99,95,116,105,105,102,102,106,101,99,102,99,104,97,104,103,102,103,107,118,108,106,88,122,99,103,96,106,92,105,114,100,101,76,108,110,92,105,101,94,106,102,97,105,99,115,101,101,105,109,135,93,100,114,98,96,103,105,99,98,103,115,98,103,100,100,104,96,112,104,101,108,114,106,99,104,109,102,108,96,109,97,83,107,107,99,115,114,101,99,113,101,110,101,104,97,99,93,118,113,101,109,102,87,99,75,103,104,95,98,100,109,91,115,104,110,98,106,110,114,97,101,102,94,102,105,104,112,107,82,101,117,103,93,106,94,112,104,99,94,110,106,110,117,98,111,108,105,102,96,106,122,101,105,93,112,102,110,100,96,116,95,106,103,107,105,83,104,108,105,104,114,95,112,111,104,107,97,98,100,106,96,101,99,101,106,101,100,110,104,108,97,110,100,91,103,113,103,100,105,97,101,102,92,113,107,100,102,99,93,99,113,103,95,102,112,108,103,108,109,109,95,105,111,100,98,120,106,93,107,110,109,113,109,102,105,103,96,110,105,111,105,108,113,108,105,105,116,99,107,109,105,100,113,114,100,93,112,95,92,113,105,111,96,87,101,91,116,100,111,111,93,104,101,96,91,114,105,114,86,101,96,112,109,117,104,115,106,110,99,95,111,95,105,100,109,103,117,101,105,92,98,108,102,105,112,116,102,105,106,100,103,93,87,115,102,105,99,109,111,107,103,106,115,105,98,105,101,96,108,102,107,92,109,105,113,105,108,105,103,101,92,96,94,108,104,106,104,112,102,94,100,112,100,110,102,93,95,112,99,111,100,107,102,100,109,94,94,108,105,97,104,95,109,97,102,101,101,105,113,94,96,94,106,100,105,97,87,103,98,104,109,100,86,114,98,95,109,100,105,94,104,99,101,111,103,97,105,100,96,99,103,96,98,101,100,103,115,106,115,123,99,97,105,89,106,108,100,95,96,109,101,96,117,102,90,113,105,108,107,98,111,90,103,103,99,103,104,110,98,112,113,103,108,113,92,108,107,101,115,99,111,96,104,105,104,107,103,117,106,94,110,107,106,93,99,100,95,107,111,84,104,103,98,100,112,105,106,101,100,106,105,100,107,106,100,98,104,109,112,107,107,101,94,106,99,110,116,97,95,99,97,85,103,100,95,117,117,103,106,99,101,110,100,101,102,112,102,105,123,84,104,114,84,105,89,111,103,106,86,107,106,110,98,102,88,111,98,102,110,100,108,100,102,102,101,100,98,99,105,96,104,99,86,106,110,107,103,101,96,120,98,112,101,105,107,98,103,104,104,106,109,113,98,90,106,109,94,103,100,106,104,98,99,108,96,117,107,103,91,95,109,103,105,107,92,114,95,108,106,110,122,119,113,106,101,99,100,98,109,104,107,99,107,103,105,95,101,98,103,106,100,96,118,98,108,102,97,103,107,95,103,101,107,99,95,92,101,106,99,108,103,103,110,104,109,98,113,97,101,89,110,108,99,88,100,127,95,103,112,99,102,114,93,111,120,104,108,106,107,105,111,98,109,104,94,104,100,113,101,113,113,102,96,104,105,99,103,96,87,121,106,102,103,111,97,98,102,104,104,106,102,104,106,108,112,108,115,103,104,124,106,102,99,108,109,113,99,96,100,98,108,98,105,97,109,115,103,88,100,117,112,102,116,95,113,108,99,99,111,109,110,106,95,103,108,104,86,104,91,102,111,105,105,104,103,92,109,101,101,93,109,105,107,101,96,102,113,111,108,103,100,95,100,105,97,100,97,105,110,91,99,137,116,119,116,97,104,104,96,111,122,93,101,110,108,110,106,106,103,105,91,110,101,97,110,110,99,103,95,113,100,116,114,116,114,97,101,89,99,111,99,116,98,105,119,108,101,98,92,121,104,93,114,107,110,104,117,98,89,128,105,105,110,103,96,92,98,113,109,107,102,110,104,120,109,102,105,107,108,98,114,101,103,102,120,113,97,101,114,103,106,101,107,103,101,99,102,114,103,122,116,102,105,109,108,112,101,97,111,101,113,104,99,104,99,102,103,109,109,103,104,95,108,98,108,101,89,103,99,108,109,101,98,112,101,103,107,104,104,102,101,113,117,113,107,107,98,101,90,108,103,97,99,110,104,96,104,106,109,125,99,92,107,99,116,101,106,104,104,95,102,110,103,101,103,110,102,97,111,112,111,103,99,102,112,119,111,109,103,106,97,102,105,107,107,102,97,106,109,112,107,108,107,100,117,109,109,98,105,104,111,118,82,107,103,98,85,105,108,96,112,112,111,104,102,114,108,100,113,89,118,97,104,104,100,92,108,108,96,105,97,100,105,118,102,107,118,91,107,108,100,103,100,95,99,106,100,101,107,112,97,90,92,94,119,108,111,116,107,114,100,107,116,97,97,98,104,105,98,100,115,98,107,105,98,107,106,111,95,96,98,100,103,105,107,104,98,104,105,103,108,100,106,104,96,121,87,105,109,108,100,96,101,95,102,125,83,110,89,101,110,94,121,103,117,116,101,105,112,99,102,104,106,99,103,137,117,94,88,105,111,105,93,99,97,104,102,112,133,98,91,105,107,109,111,100,104,102,95,102,91,91,101,100,102,107,108,105,103,98,112,101,110,113,114,97,106,105,99,99,101,112,104,123,107,103,93,98,122,103,105,107,93,133,104,118,90,90,98,103,125,101,105,115,98,111,98,103,109,100,105,96,95,107,102,102,101,104,100,108,108,93,110,98,111,108,113,109,104,118,108,91,95,106,110,104,110,100,108,113,101,109,108,107,95,102,100,107,105,94,109,104,101,102,97,102,107,96,103,107,98,112,94,101,106,98,98,111,104,116,100,99,113,90,102,97,120,100,107,104,102,113,108,103,113,102,102,107,105,105,81,99,110,102,107,107,98,106,108,122,102,111,97,110,104,104,105,102,99,99,101,90,111,117,102,109,96,105,107,99,104,108,96,107,105,105,114,98,119,112,101,101,104,99,104,102,104,103,107,100,106,103,119,105,105,96,114,105,118,103,93,110,105,108,115,97,96,105,95,108,105,104,97,92,108,99,97,112,101,98,107,98,105,104,99,106,101,104,98,104,106,102,103,98,103,97,106,96,91,111,106,112,113,99,96,106,102,107,100,106,107,117,105,104,119,115,101,102,115,99,103,110,104,90,107,100,105,104,99,110,103,104,108,99,104,115,108,85,92,86,109,103,94,107,109,100,100,105,111,106,104,105,106,115,106,106,109,99,102,104,129,106,98,100,110,98,112,115,95,105,103,120,103,114,107,106,103,115,99,97,98,91,115,112,103,109,108,104,113,112,96,107,108,104,109,101,110,116,128,109,111,102,106,101,104,96,105,103,102,104,95,96,91,100,98,117,103,99,107,105,112,113,105,104,105,110,103,95,92,101,112,109,95,99,99,113,105,109,109,103,101,104,107,102,110,101,101,101,129,104,104,96,114,93,106,105,105,118,106,97,105,107,107,104,114,105,109,89,98,115,113,115,101,97,102,97,109,107,99,113,103,107,93,106,114,104,99,96,93,98,113,103,100,99,114,114,109,113,107,97,105,123,119,99,105,110,102,100,105,103,112,120,104,99,106,107,106,105,99,109,103,102,99,113,97,95,89,109,107,108,98,104,116,104,103,113,103,112,89,106,98,116,99,102,104,110,101,91,98,108,100,100,96,104,112,104,108,102,102,116,100,104,107,118,112,113,98,88,99,121,94,109,110,109,106,104,99,92,102,106,122,104,105,95,110,94,96,94,110,109,113,110,102,109,118,101,107,96,103,99,113,109,110,99,101,101,112,106,108,112,105,107,106,76,102,108,90,107,115,120,104,104,103,109,107,93,101,88,86,110,97,101,111,99,110,103,112,104,98,97,119,123,90,109,100,103,82,105,101,96,99,100,91,92,116,71,109,95,102,105,95,102,101,109,92,90,108,101,103,89,102,108,103,104,113,91,97,103,87,115,101,94,91,106,97,116,114,100,93,100,102,84,108,112,110,108,105,93,116,103,102,100,111,83,114,108,102,68, +439.76566,89,111,94,100,90,107,97,99,99,102,86,90,92,99,105,101,100,104,99,105,103,88,98,106,102,105,111,106,102,102,109,101,100,111,94,104,102,87,101,103,102,99,101,94,101,96,101,106,93,101,95,89,95,84,96,96,106,96,92,91,103,104,104,100,106,100,91,104,112,102,105,98,102,105,112,102,96,103,104,95,101,100,92,101,98,99,108,110,105,105,102,99,109,95,98,93,103,99,99,88,99,107,92,103,103,117,99,101,97,103,106,103,107,96,98,88,96,99,98,96,87,96,91,96,105,109,105,105,100,106,85,97,101,114,106,105,91,98,105,107,116,97,98,98,97,96,102,97,87,96,101,104,109,95,105,99,108,99,107,105,93,98,108,106,105,118,105,106,106,84,106,100,95,92,88,114,107,105,106,91,108,112,102,92,98,102,78,98,95,106,105,94,109,102,102,97,107,103,103,105,98,98,106,82,92,99,96,105,104,98,102,105,104,100,139,101,89,108,87,104,109,109,90,96,94,104,105,99,100,104,98,90,107,118,94,99,109,101,100,93,95,102,106,95,95,99,102,102,95,103,104,93,103,99,110,116,98,125,91,96,91,104,99,103,98,98,99,104,101,97,95,102,106,99,105,107,98,106,110,101,110,100,103,99,103,77,96,101,104,100,92,117,95,103,114,109,110,112,94,113,100,83,98,105,105,96,101,117,108,106,79,104,108,111,96,95,101,102,95,102,100,102,108,99,107,104,96,93,114,105,101,102,107,97,101,102,110,93,93,99,104,107,103,108,103,75,103,107,103,106,100,107,109,98,114,92,99,111,104,100,99,96,100,114,96,93,100,102,99,108,98,112,113,97,96,101,109,101,102,100,108,98,99,102,103,97,101,92,113,93,108,88,104,98,106,104,91,107,105,104,92,119,107,94,102,94,100,102,112,83,83,97,102,96,102,107,103,101,105,90,100,101,112,103,93,95,96,90,99,104,94,104,129,105,93,101,100,114,110,99,101,98,94,105,98,113,86,104,107,101,100,91,107,118,95,88,97,108,100,102,119,96,89,102,107,106,112,100,100,103,96,105,91,91,104,119,103,110,98,98,97,98,113,99,110,105,102,102,105,98,125,98,89,96,90,95,100,104,88,99,105,106,105,108,93,102,98,99,106,98,100,89,98,100,103,101,105,101,108,101,106,104,110,105,101,95,110,102,93,99,93,100,113,95,101,98,116,114,100,106,84,100,108,90,107,103,100,91,95,96,91,98,98,113,102,101,117,94,103,113,102,101,104,104,108,99,98,86,94,102,99,112,87,92,115,95,109,100,104,101,99,91,116,96,101,113,95,97,118,116,90,113,101,97,106,107,116,97,117,96,97,109,101,99,85,104,109,110,99,116,87,110,109,103,98,103,96,105,117,96,94,113,100,94,109,106,91,99,98,105,103,106,95,104,88,106,106,101,113,109,90,105,104,105,94,99,101,116,101,94,96,98,98,100,96,90,90,109,96,100,106,122,113,102,88,92,112,96,106,96,96,98,104,101,94,99,107,117,103,97,98,116,110,95,97,98,101,103,105,104,112,100,83,118,95,105,111,95,103,90,90,104,100,117,102,109,106,106,107,102,112,96,99,102,98,103,94,109,107,90,117,98,91,100,99,100,108,102,107,117,113,104,103,105,95,103,90,102,98,106,96,102,103,101,100,110,104,93,103,100,97,96,102,98,109,101,106,78,118,101,106,110,91,113,97,105,84,105,104,103,90,98,100,104,88,94,93,101,99,101,102,93,107,110,106,99,103,94,94,106,108,103,111,98,105,90,100,123,108,86,96,104,98,103,105,100,97,99,83,110,111,103,107,91,105,94,107,105,99,94,95,109,91,106,114,105,105,101,101,108,100,106,109,105,101,97,108,103,103,105,95,110,106,103,104,85,101,98,108,95,91,102,105,96,96,109,102,101,114,100,102,109,91,106,115,91,98,106,105,107,85,96,75,95,105,99,103,91,103,109,107,100,100,100,106,94,101,92,103,105,100,107,83,106,104,86,99,96,92,103,101,97,100,92,101,90,101,99,91,92,90,77,101,103,101,97,103,76,90,88,97,100,104,107,109,101,115,97,98,105,98,94,91,104,93,99,99,110,109,106,96,90,96,110,90,107,104,97,101,111,112,99,99,99,114,105,96,87,96,98,108,124,106,92,99,101,104,108,105,108,91,106,104,90,98,99,102,85,93,102,106,107,104,108,102,105,108,101,107,102,103,109,96,109,103,106,110,95,92,95,98,99,104,88,112,112,114,100,99,107,99,105,99,108,98,109,98,83,104,107,113,110,101,99,102,107,106,96,101,94,107,99,103,110,111,100,102,99,105,102,110,103,98,105,101,106,96,99,108,102,108,104,113,100,112,109,94,105,95,107,92,124,117,114,99,92,101,109,82,108,96,101,89,96,105,101,103,130,84,105,107,83,92,108,92,109,107,94,100,105,99,110,106,100,95,102,93,109,111,92,112,98,106,98,112,110,108,110,97,92,113,108,96,98,107,102,106,99,88,96,120,103,112,100,109,96,108,96,116,101,122,103,97,108,99,89,108,97,95,102,109,106,105,114,92,102,110,100,109,96,106,111,110,102,113,104,110,103,72,110,107,92,105,99,94,109,103,99,109,105,109,99,101,91,97,101,108,102,103,90,103,106,105,107,98,99,102,104,102,98,94,94,113,98,98,108,100,85,104,108,102,96,111,97,100,101,111,108,99,98,101,101,97,100,111,118,106,103,108,101,110,108,101,91,108,107,106,99,100,108,91,102,106,100,96,112,102,103,97,105,110,100,102,101,111,106,101,92,94,98,105,104,90,110,103,98,110,109,97,116,112,107,90,106,104,110,103,102,94,106,109,95,101,110,101,91,81,104,103,67,89,105,125,105,110,108,99,102,109,90,99,115,97,91,104,116,107,105,101,121,103,108,91,98,96,99,105,99,98,91,102,100,97,106,109,110,136,91,124,107,108,107,103,113,117,99,109,106,106,89,101,98,88,113,104,90,101,95,92,93,92,84,95,120,105,95,96,105,94,114,100,102,98,95,99,101,99,100,98,101,95,109,109,100,98,100,110,108,102,98,96,101,100,112,110,106,102,106,102,93,102,116,98,101,98,109,92,107,101,82,103,91,113,114,100,106,105,101,117,107,104,108,102,107,106,113,113,92,97,99,98,82,101,101,110,98,116,100,100,102,107,101,98,89,101,92,108,105,104,100,92,90,103,95,74,108,106,100,97,83,95,95,106,104,109,96,110,98,103,76,107,97,105,100,94,104,92,103,81,100,108,112,105,94,111,107,97,94,105,97,97,106,95,108,102,96,87,100,109,108,100,105,91,106,96,105,103,98,101,94,96,92,93,108,94,106,107,99,104,96,93,92,101,102,109,100,110,100,102,106,99,75,100,100,87,111,109,99,107,110,99,111,97,98,93,99,97,95,94,110,84,100,95,87,104,100,101,93,109,87,95,98,89,102,94,102,104,100,102,94,113,95,98,110,91,100,105,98,90,98,99,109,111,99,106,107,93,100,105,113,97,96,106,107,104,92,100,100,101,99,87,100,101,91,91,104,97,98,100,107,95,102,103,117,108,101,100,101,93,95,98,97,99,101,93,98,102,88,112,106,99,107,100,116,100,84,90,107,101,97,105,99,113,82,96,97,106,97,97,112,101,100,95,107,106,101,106,86,102,94,108,118,108,104,102,105,90,94,93,106,95,101,91,94,99,109,90,100,109,114,99,96,104,104,97,94,100,99,81,100,104,107,106,115,100,101,104,100,95,116,102,107,103,100,97,101,79,100,96,96,99,114,99,106,99,109,108,92,104,101,105,85,108,95,103,97,105,93,100,108,105,104,94,96,98,89,105,99,94,101,97,93,99,91,98,91,101,94,101,110,98,98,104,106,106,99,104,86,114,102,102,87,106,101,108,103,101,112,109,96,100,102,104,89,90,111,104,98,111,84,103,91,105,98,109,100,94,114,97,94,101,98,109,104,95,108,106,106,104,104,88,105,87,101,111,104,99,96,96,111,103,100,98,93,104,113,102,106,105,102,102,72,95,94,110,109,96,99,85,92,83,93,107,106,102,113,105,95,98,103,107,101,108,102,80,121,99,104,100,101,100,110,115,92,106,94,100,95,105,96,117,96,95,106,96,108,81,101,110,89,103,90,95,106,105,93,98,100,94,117,112,94,101,100,96,98,93,107,103,96,93,99,103,102,96,111,95,100,115,100,100,104,101,99,101,93,105,98,89,109,98,95,116,90,103,100,91,111,97,98,107,100,115,98,107,99,99,115,101,94,109,103,103,100,108,94,100,93,108,110,102,104,93,97,96,96,100,112,95,92,86,103,100,101,100,102,107,89,103,97,95,94,98,114,100,106,90,112,87,109,112,97,93,95,106,100,106,96,105,102,98,105,103,108,108,109,102,100,102,100,103,104,85,109,96,98,93,101,108,101,99,101,94,103,103,111,113,113,104,100,97,96,90,93,100,95,70,110,101,108,95,98,98,98,98,105,107,103,102,106,91,101,109,102,104,102,88,108,101,94,106,92,108,102,103,101,106,101,117,103,101,114,96,87,100,101,104,111,101,88,105,98,109,106,100,100,90,102,94,105,96,100,97,108,108,81,102,101,95,96,94,107,106,109,107,95,92,101,115,95,98,101,99,97,105,103,99,101,89,87,110,109,103,101,106,94,91,101,103,109,110,119,93,108,92,96,100,113,103,91,101,97,111,127,104,105,106,104,88,111,101,108,94,107,103,103,103,95,91,95,90,114,99,106,109,93,105,99,98,94,100,101,90,106,101,95,105,105,94,90,94,94,111,90,88,95,100,106,107,80,68,95,107,100,95,91,94,118,93,79, +439.90598,114,117,96,102,94,99,103,128,101,95,99,96,89,110,102,122,100,96,110,98,111,99,102,125,96,113,98,104,98,103,99,95,100,91,108,99,76,95,95,107,101,105,107,100,65,101,102,107,94,103,99,100,102,91,108,95,98,95,99,97,83,111,115,95,106,99,93,111,109,95,104,100,102,91,102,111,82,109,109,113,98,97,97,102,96,114,99,104,112,103,106,97,111,102,94,96,107,101,98,101,91,107,95,104,107,99,109,100,99,98,99,100,108,101,109,107,102,110,115,103,95,98,106,118,92,101,108,105,115,103,107,101,95,106,107,103,111,118,106,100,99,119,96,105,96,99,108,95,92,96,100,102,107,93,99,102,99,110,112,106,101,113,103,99,113,102,98,95,103,109,111,94,110,96,99,106,105,87,102,106,108,114,106,104,117,95,92,57,92,107,111,106,90,92,103,82,94,105,100,111,102,91,106,106,96,106,95,102,101,96,103,108,99,98,102,121,100,87,91,100,102,109,109,105,106,114,102,105,92,107,98,90,99,102,102,95,102,101,95,94,105,109,107,99,98,98,98,98,110,129,102,105,107,106,103,108,97,109,93,105,100,115,114,97,107,141,112,84,103,91,103,104,95,103,114,96,100,102,100,110,99,104,103,108,94,105,73,103,114,97,106,95,106,111,112,112,103,102,114,101,118,99,112,117,106,107,114,108,104,103,101,105,92,100,91,109,109,111,99,101,104,103,109,99,98,110,102,88,108,113,102,104,107,106,99,96,107,104,96,111,90,101,115,102,112,112,110,109,117,89,90,101,107,114,112,103,108,109,91,109,100,98,113,106,97,111,115,115,95,103,110,100,104,106,97,99,101,99,94,101,108,106,124,107,99,98,109,113,103,100,107,95,102,117,102,100,96,70,101,97,105,105,107,112,89,107,102,103,105,104,111,97,110,112,105,105,105,107,112,97,111,104,84,114,105,105,105,112,100,107,102,108,105,99,105,111,109,115,91,110,102,104,113,83,106,107,101,104,102,98,99,99,107,103,96,87,100,103,109,119,111,100,112,110,111,105,108,108,105,101,97,119,104,103,107,97,107,108,109,96,103,107,89,105,104,67,106,98,103,102,113,104,100,106,102,101,101,101,107,109,107,104,105,105,99,114,94,93,99,80,102,101,98,114,84,95,113,114,108,97,128,94,102,96,112,99,106,102,109,114,97,115,121,105,100,104,101,100,101,105,97,103,102,104,114,101,113,101,108,118,106,94,109,91,103,107,110,104,102,101,107,106,104,98,101,108,107,96,92,101,112,101,103,110,94,107,113,101,103,105,103,96,108,99,104,103,98,114,99,99,117,100,113,116,116,106,98,110,95,97,101,113,103,100,100,94,104,104,110,114,107,80,119,106,121,102,101,96,106,116,109,105,105,91,105,118,106,116,99,104,98,101,101,112,103,107,92,111,113,99,100,97,105,110,101,90,105,102,107,114,70,101,107,113,104,112,105,108,90,106,108,120,101,92,97,103,112,107,121,109,108,99,102,106,94,111,94,106,95,107,106,107,92,104,104,100,101,104,104,109,77,101,109,99,105,104,105,104,104,109,107,106,108,102,108,104,97,97,99,105,95,97,106,113,98,102,99,93,102,103,102,114,114,109,98,107,98,103,112,110,103,120,109,97,99,110,104,94,110,107,100,105,106,97,111,107,96,104,116,101,107,94,95,106,109,110,104,100,107,104,98,113,104,104,99,105,102,104,108,110,105,98,109,103,101,125,104,107,108,82,101,97,84,101,94,104,106,108,95,110,105,101,96,105,108,113,102,122,103,115,99,96,112,94,111,98,115,104,105,107,117,115,97,105,104,119,109,113,107,106,103,102,84,127,107,104,114,95,104,116,109,108,105,110,107,107,85,104,104,103,99,98,102,100,98,84,111,103,104,101,108,105,98,111,102,102,101,104,94,100,101,101,99,109,108,105,97,102,106,100,102,103,112,107,91,103,116,99,114,104,101,116,100,108,87,109,105,112,107,100,107,116,103,90,103,108,95,109,98,96,100,105,94,101,106,101,104,100,108,107,97,112,107,107,99,107,93,104,106,110,109,113,103,98,117,107,104,110,102,100,100,109,106,116,105,119,97,112,108,108,109,97,110,99,109,92,103,103,108,110,106,109,96,99,114,103,110,104,94,95,103,107,101,102,109,117,109,112,107,107,100,103,104,91,108,108,115,95,104,83,94,101,102,105,100,101,88,89,102,111,103,98,108,104,104,108,101,112,104,94,107,113,105,91,110,106,99,102,100,108,103,97,104,108,103,113,99,102,104,110,112,109,105,105,94,118,92,106,108,92,103,107,109,97,109,95,109,104,108,104,99,103,98,103,96,97,95,106,99,106,96,108,104,102,101,98,93,102,102,107,109,105,104,106,102,109,92,107,96,103,91,104,105,94,105,104,112,106,98,98,106,109,106,113,104,107,106,102,117,115,106,99,102,105,105,103,115,102,103,117,109,101,96,102,111,108,101,97,105,104,87,112,99,98,110,72,101,98,105,100,108,101,90,96,104,100,117,95,92,99,110,120,97,100,113,95,109,109,119,105,108,99,101,108,105,107,106,102,113,100,122,89,109,100,106,101,108,110,107,116,107,84,100,100,106,108,103,104,99,107,95,110,105,112,99,99,103,109,103,98,100,116,96,109,115,111,110,102,107,112,104,106,91,107,103,115,104,111,97,88,134,89,93,107,105,99,97,103,108,109,106,108,102,107,100,108,106,115,106,109,104,104,101,107,118,116,97,101,94,101,105,104,72,99,103,130,105,102,109,100,113,91,106,92,100,105,100,110,96,105,102,100,98,100,104,96,70,108,95,107,100,99,104,102,96,101,95,99,119,99,105,112,101,98,111,98,95,106,108,117,97,97,107,100,106,102,106,104,110,103,96,107,101,108,102,115,96,105,89,98,106,98,112,112,94,108,116,108,97,112,102,106,90,100,107,106,91,90,106,102,108,101,103,98,108,100,95,103,98,102,98,92,101,111,101,112,112,103,102,107,99,103,109,101,111,114,114,94,109,104,113,102,104,103,104,104,107,113,110,84,105,107,96,99,136,105,112,109,97,102,85,98,104,122,100,93,108,106,99,105,99,102,107,107,92,94,102,119,102,102,105,103,97,107,102,110,102,91,98,106,110,101,104,110,97,103,113,89,101,103,97,99,103,108,95,95,104,103,105,105,107,94,110,90,97,102,105,103,116,107,105,100,111,112,108,105,92,110,102,100,103,106,109,99,93,105,106,119,107,97,97,94,105,109,120,116,100,102,98,103,115,124,102,126,106,113,101,94,99,104,94,99,94,109,96,95,102,113,125,103,100,108,110,110,105,103,109,96,95,105,107,107,99,105,106,100,92,96,102,94,94,112,105,116,104,104,88,118,103,111,103,93,100,120,105,101,106,110,98,95,110,109,102,91,107,102,102,101,99,100,107,102,115,107,106,102,102,100,106,108,111,103,111,119,117,94,109,112,106,97,111,85,97,97,115,121,114,103,109,110,95,111,106,105,100,94,103,104,109,119,101,101,100,110,103,100,103,103,104,98,98,94,98,111,126,98,101,115,110,97,98,103,113,80,103,91,109,114,106,101,95,108,99,100,91,92,99,106,105,109,116,99,102,121,100,116,106,101,105,106,92,100,94,106,105,100,95,98,102,98,99,103,94,97,116,113,106,107,88,87,86,110,107,96,103,100,109,117,102,105,111,111,107,107,107,103,97,121,105,113,94,104,95,100,92,107,99,102,112,111,88,92,93,117,109,101,117,113,90,97,108,111,121,106,106,116,101,101,98,110,94,95,107,96,102,107,117,98,102,103,108,105,106,116,113,115,109,105,102,108,100,105,99,96,96,94,109,103,101,90,87,106,113,107,98,101,103,96,108,79,100,98,101,98,97,113,97,107,92,125,106,102,99,95,105,99,104,100,101,102,98,93,98,92,93,109,105,102,107,108,98,98,104,112,109,106,87,117,97,110,113,101,96,109,106,102,105,103,101,112,103,110,104,94,103,108,105,97,99,98,102,96,96,109,94,112,109,93,94,112,105,114,107,117,103,106,90,104,105,108,113,102,105,106,106,110,115,105,107,105,88,101,100,100,96,107,93,103,108,102,103,93,102,92,90,106,100,100,106,102,113,100,90,97,103,99,100,111,110,99,116,105,106,107,95,104,106,109,112,107,102,114,100,103,100,99,91,94,100,100,105,81,110,91,96,95,100,110,107,103,101,100,111,101,104,100,107,106,80,101,97,101,115,106,104,106,99,116,96,111,102,106,114,102,104,96,103,105,103,100,103,104,128,96,105,75,94,101,112,112,110,105,104,105,108,108,95,103,97,105,112,104,101,101,95,111,107,106,96,94,95,95,98,116,99,108,92,91,100,100,109,114,100,106,113,95,105,109,104,109,101,112,95,104,102,99,102,105,111,104,113,108,97,101,107,116,93,122,92,70,109,98,94,106,110,110,120,94,96,106,92,102,106,91,115,110,102,102,104,95,98,103,83,109,103,98,87,102,99,103,79,107,102,95,97,116,110,97,117,101,95,98,105,97,126,101,114,110,112,106,101,96,96,102,116,106,110,106,128,97,98,101,108,91,88,85,103,89,77,109,93,103,100,100,95,88,105,91,99,91,103,106,97,101,105,112,114,109,105,104,106,115,106,94,96,82,101,104,112,104,105,88,104,112,96,112,102,97,95,98,106,88,110,109,97,96,109,107,100,97,104,89,92,110,107,106,111,91,102,108,109,108,108,109,103,105,110,101,65,107,100,96,95,110,107,109,101,96,92,100,98,109,96,95,92,97,88,99,111,102,96,97,113,105,121,110,103,137,104,103,96,105,103,94,90,94,81,95,110,99, +440.04633,105,104,86,102,89,100,95,92,104,94,92,94,97,93,99,101,101,113,101,102,100,102,89,110,110,106,101,109,102,115,98,84,91,100,96,124,85,109,110,104,94,103,105,106,111,106,97,113,102,108,98,101,103,110,100,105,97,91,110,96,107,127,108,94,106,105,97,104,95,107,91,101,102,109,96,106,97,105,111,107,101,117,103,83,100,97,100,114,104,98,95,94,117,106,114,106,104,96,81,103,102,113,96,105,107,99,95,120,116,94,100,99,109,109,96,106,107,106,104,101,107,102,94,116,126,89,98,113,101,90,101,117,96,108,118,108,100,102,108,98,96,99,98,114,108,87,107,102,117,95,104,74,99,103,105,99,102,100,115,89,103,92,102,100,97,119,93,89,133,108,105,105,98,97,73,96,92,85,95,97,102,113,99,100,99,96,94,100,100,96,104,96,108,99,96,102,98,100,104,91,83,100,100,105,97,113,104,105,104,102,91,93,107,102,98,109,105,99,95,104,98,111,90,99,91,107,98,91,109,106,102,99,88,102,106,99,92,107,91,96,103,111,102,106,105,95,100,109,103,96,121,94,96,93,104,105,104,102,97,97,97,83,107,86,96,116,91,99,104,98,114,100,100,104,103,92,87,106,92,105,105,101,109,109,101,104,96,104,77,105,113,105,107,89,108,102,107,111,103,102,82,95,91,107,104,105,105,101,93,101,91,105,93,114,98,100,116,101,102,97,109,68,100,100,93,102,97,112,105,106,125,99,109,97,116,86,97,96,108,118,94,97,103,107,88,108,90,98,106,117,107,102,103,100,99,110,94,68,94,107,105,102,116,96,96,102,105,112,102,98,98,71,107,110,96,90,103,104,97,109,112,100,109,102,104,103,99,94,106,100,99,90,101,100,97,92,91,108,98,102,100,85,112,106,101,96,100,116,114,99,107,92,110,109,102,92,112,97,117,116,102,104,97,106,100,97,97,90,99,110,107,107,104,100,101,102,96,113,93,98,107,103,111,105,88,94,92,98,104,105,101,89,97,108,104,108,102,105,95,102,86,100,105,109,110,99,91,100,99,101,113,118,109,99,92,90,101,107,94,113,96,103,107,105,101,108,111,83,104,96,101,101,114,101,85,104,97,106,101,102,101,98,110,106,102,96,94,101,100,106,103,105,101,87,100,107,109,105,99,99,102,104,108,95,102,88,106,91,104,115,103,101,102,91,100,98,116,112,98,98,99,103,77,91,121,92,103,99,104,99,106,104,78,109,109,100,106,93,103,108,95,98,91,100,129,110,104,86,97,106,112,97,98,113,99,97,106,106,97,110,94,95,96,105,102,96,122,108,121,95,111,116,97,85,108,113,108,103,100,98,105,107,110,97,92,94,95,112,89,105,99,109,102,94,99,97,103,99,107,108,103,103,112,99,103,98,107,105,106,98,100,103,94,91,104,96,97,103,87,91,110,115,104,100,106,93,121,98,103,131,111,109,104,100,103,107,103,103,109,104,103,107,111,96,100,103,108,101,113,109,105,101,99,99,103,103,107,107,106,104,107,114,113,98,93,106,91,107,107,92,108,99,95,106,109,100,100,112,92,101,100,99,98,99,99,98,100,101,95,95,102,97,100,95,101,100,94,103,92,94,112,94,103,107,96,100,98,100,108,109,101,90,94,96,100,112,100,102,102,78,95,90,94,96,107,103,89,104,79,105,106,96,100,95,108,100,107,102,106,100,109,97,96,103,96,101,110,105,102,99,102,100,97,105,93,110,83,112,105,113,104,104,114,101,104,102,105,105,77,100,98,99,95,85,112,104,104,103,100,104,107,106,101,95,97,108,99,91,98,100,119,109,102,102,103,105,101,96,114,109,96,97,101,94,115,97,99,106,96,97,132,100,107,100,101,112,112,102,94,89,102,98,103,98,103,104,98,95,102,85,103,113,102,109,95,118,98,116,109,96,96,102,109,95,87,96,97,112,100,109,97,101,101,103,117,98,97,107,100,100,109,101,110,95,93,96,100,111,124,107,103,98,89,105,99,100,93,105,99,99,97,109,102,106,101,82,100,110,98,110,109,93,118,102,107,94,117,109,108,102,101,98,105,103,121,100,103,101,95,105,105,79,111,97,98,104,100,107,118,110,105,106,101,96,98,100,106,95,108,114,88,107,100,99,113,107,109,91,100,103,111,105,108,77,108,94,106,95,129,103,65,80,94,83,110,97,102,106,108,103,100,105,103,97,107,104,101,95,100,77,111,100,112,87,100,87,112,97,96,102,116,109,93,97,110,101,103,100,96,109,102,96,102,104,93,97,101,107,106,106,109,143,116,103,92,101,102,99,92,101,105,121,104,105,100,88,99,103,101,94,105,101,95,116,103,86,104,100,104,93,96,109,102,103,94,100,98,102,108,113,99,100,102,102,96,107,97,98,98,105,96,109,101,105,97,102,87,112,91,105,101,108,121,112,101,91,105,107,127,107,89,101,82,99,96,112,104,111,107,109,108,87,109,98,115,86,120,98,108,109,110,113,103,106,105,105,101,90,85,101,112,103,102,108,103,105,104,113,104,103,94,115,100,88,103,99,108,112,101,113,116,106,100,107,104,112,71,103,101,100,115,118,107,105,104,109,115,113,109,103,109,93,83,106,112,99,98,98,104,101,102,105,108,105,107,106,115,104,106,99,106,108,112,123,102,105,105,129,102,113,86,104,102,112,105,86,95,104,106,109,105,105,97,108,106,106,95,101,101,109,105,112,103,107,106,112,109,106,118,105,108,100,99,101,107,102,96,108,100,106,104,99,111,108,109,93,117,115,105,104,102,106,119,94,100,106,99,109,110,107,95,98,113,107,101,90,95,96,103,117,103,95,111,109,117,102,99,110,103,101,117,109,113,107,103,95,92,98,105,106,108,113,105,106,116,104,106,98,105,109,108,110,96,104,106,101,101,119,106,108,94,104,91,105,95,108,107,102,100,103,114,114,102,101,102,93,85,97,99,110,101,97,109,89,102,90,109,103,98,97,108,106,93,116,115,108,103,111,99,103,100,113,118,99,108,124,97,88,104,113,91,106,96,108,102,101,100,99,100,86,109,105,100,107,87,111,119,105,100,122,116,109,110,124,112,106,97,104,102,117,102,99,95,97,102,89,111,125,108,112,98,113,89,106,102,110,86,106,113,106,98,99,91,104,107,113,108,112,116,103,91,105,89,107,106,100,104,103,105,100,97,105,101,99,97,95,101,98,112,107,104,100,94,109,100,100,105,105,114,103,93,104,106,94,112,118,100,109,121,98,97,98,107,102,99,108,104,114,105,100,108,106,97,117,104,110,99,95,107,98,104,98,110,95,103,115,103,99,102,121,108,109,97,106,109,102,97,98,120,99,101,115,107,106,118,103,108,109,102,111,92,112,107,104,108,104,105,98,112,100,104,101,99,99,102,98,109,104,103,92,83,104,114,102,100,94,106,112,107,101,120,114,105,101,105,103,102,105,107,95,101,70,90,114,103,108,99,104,107,99,107,108,103,104,100,111,103,113,96,113,102,116,93,114,109,114,97,102,113,113,113,110,107,107,100,113,108,104,109,105,99,103,104,104,100,103,92,115,101,106,106,95,114,104,94,102,104,112,102,111,108,104,108,110,104,106,101,100,108,117,111,99,103,106,103,95,112,99,111,89,111,94,106,97,99,108,103,105,97,99,110,101,107,109,103,106,112,92,109,98,108,108,97,103,94,114,120,98,97,100,105,101,100,99,108,100,109,102,107,105,117,109,101,98,98,93,115,106,107,96,93,104,127,107,115,103,102,96,113,110,111,102,104,104,103,107,89,90,102,107,91,101,109,104,100,75,121,110,103,99,116,102,110,108,106,85,103,94,95,95,114,107,98,116,100,100,104,91,102,115,100,102,95,84,104,110,109,94,101,103,107,117,117,99,105,113,101,99,109,96,104,104,106,102,88,108,97,102,104,83,110,109,106,109,110,109,98,114,100,107,106,102,107,100,102,99,103,105,95,109,96,106,98,92,106,108,108,108,113,106,116,107,111,92,101,105,94,97,107,107,95,86,101,110,107,117,118,102,95,105,105,104,103,100,104,96,103,103,99,110,108,104,102,96,94,112,100,97,106,110,99,100,104,73,114,113,101,98,107,106,101,63,84,103,98,107,94,100,113,109,105,97,113,107,111,98,98,98,103,91,108,97,94,105,100,107,118,96,96,114,105,91,96,103,104,107,102,104,97,102,98,105,98,96,115,102,97,101,105,119,113,92,77,107,108,96,100,100,98,110,92,107,108,113,106,105,110,105,102,110,113,115,106,102,110,97,97,105,106,98,97,87,102,107,98,85,107,106,88,102,100,109,105,111,100,111,101,96,101,100,97,105,108,102,105,92,99,104,107,102,102,102,107,105,107,97,102,98,107,115,106,106,97,99,87,95,89,99,114,109,114,103,93,106,103,97,108,98,105,98,101,96,98,102,107,104,85,98,100,108,99,103,107,103,99,102,98,98,93,103,104,104,103,102,98,124,108,99,109,104,97,102,113,112,100,110,102,92,121,107,105,95,109,86,108,103,78,111,101,98,102,93,97,107,109,103,102,100,103,105,98,114,97,104,99,93,99,106,84,95,107,92,92,86,108,101,110,94,112,98,91,98,105,108,117,95,108,103,104,101,62,102,110,103,102,96,102,108,110,104,101,100,102,111,107,106,88,88,96,92,108,113,95,92,116,99,95,106,101,103,110,100,105,97,108,108,119,101,107,105,100,116,90,110,111,100,106,100,114,106,113,108,104,88,99,108,106,99,103,97,99,113,85,102,109,106,103,109,104,112,99,108,103,113,105,102,87,97,117,99,103,106,101,107,100,103,101,107,108,92,92,102,98,82,112,100,99,98,98,94, +440.18665,109,99,97,96,73,99,108,99,100,112,96,104,97,99,103,109,103,113,104,80,115,97,117,104,102,118,74,91,109,114,102,125,98,104,99,95,101,99,104,112,86,93,109,103,93,103,87,104,111,105,104,97,106,95,99,103,101,106,105,109,98,108,113,82,89,106,91,96,108,101,102,106,100,102,103,107,116,98,113,106,103,125,98,108,108,106,99,102,105,115,98,101,105,106,108,96,100,100,99,104,79,107,88,104,107,92,99,118,103,94,105,98,106,95,103,100,113,118,123,102,99,99,90,102,102,107,96,99,108,105,74,95,98,112,102,101,88,116,102,88,98,95,116,104,100,109,102,106,100,108,113,105,110,107,93,89,99,91,100,94,111,112,100,110,99,108,104,104,102,97,100,96,102,92,111,102,111,85,102,105,98,109,99,106,109,99,102,104,113,92,100,91,69,98,96,103,104,101,98,105,97,97,99,110,97,104,93,104,105,109,99,105,93,112,102,101,98,105,99,110,107,104,100,94,95,113,98,106,106,106,95,77,99,94,106,92,104,118,86,98,106,93,95,94,101,101,106,107,95,95,110,103,107,108,97,100,106,106,100,96,91,109,97,108,103,101,119,94,101,96,105,98,104,106,109,101,92,109,106,102,112,100,103,100,96,113,95,112,104,100,106,113,109,100,103,107,105,101,118,109,105,98,101,101,100,102,99,103,106,106,100,104,102,99,106,96,115,105,101,102,87,94,101,99,105,109,105,98,110,102,90,103,103,109,93,95,105,103,103,106,106,106,96,102,102,105,105,99,107,108,96,107,110,107,99,92,104,64,110,110,91,99,113,102,109,103,123,102,101,113,120,105,100,102,107,100,107,103,105,106,109,113,101,106,101,118,108,109,111,99,107,94,100,109,107,118,100,107,107,83,103,128,99,114,105,75,98,103,105,108,101,105,106,146,94,98,100,104,108,102,109,91,112,87,105,84,112,106,106,96,111,113,108,110,98,106,98,108,106,100,97,105,103,96,88,100,104,102,114,99,86,102,107,104,103,106,100,101,102,108,86,107,100,97,95,111,102,97,109,101,100,108,100,93,101,104,113,113,123,115,102,96,104,100,102,105,105,101,99,84,104,103,103,94,93,101,108,94,104,101,93,97,110,91,103,95,102,92,106,102,116,90,99,109,102,101,90,94,103,103,103,98,103,95,116,92,104,109,105,99,102,100,66,97,95,95,104,105,100,107,94,101,101,99,106,99,109,94,109,100,102,106,106,92,95,98,108,89,98,141,105,100,109,103,96,114,106,112,108,100,96,93,88,103,109,88,114,96,100,104,94,102,119,107,100,86,115,106,100,107,104,109,109,94,101,110,98,105,103,105,97,105,107,96,101,102,93,97,106,115,106,96,106,91,104,94,96,92,112,112,117,106,98,93,108,106,104,106,104,102,109,107,98,95,94,109,104,102,106,95,91,109,112,96,97,94,105,109,110,110,93,100,92,101,95,106,111,107,104,88,127,93,109,117,100,101,108,95,103,85,98,110,97,109,131,104,102,109,97,108,106,109,109,98,98,103,101,99,112,96,101,97,98,102,103,97,109,106,101,101,91,105,108,104,101,99,98,113,97,103,100,99,89,92,95,96,85,100,96,93,86,98,99,102,110,85,91,97,103,108,102,99,101,111,94,97,96,95,110,97,109,90,101,107,96,102,100,105,96,117,96,99,103,109,109,112,101,99,108,107,108,106,84,108,110,102,98,99,100,92,86,109,98,100,95,102,95,114,112,114,101,107,113,107,106,111,105,107,93,111,110,102,104,107,97,106,112,109,107,109,103,106,106,110,118,107,106,117,114,99,100,101,97,104,99,113,103,108,102,100,95,108,97,104,103,113,100,99,99,104,106,104,105,101,106,105,117,105,104,97,120,98,105,108,98,102,125,95,98,96,108,111,100,100,106,110,99,100,94,98,106,95,95,107,103,104,96,98,107,99,110,106,112,99,103,97,116,103,100,96,109,102,109,110,91,84,99,116,124,110,99,96,105,96,102,96,95,110,115,109,110,106,100,96,103,109,109,97,104,102,91,106,106,97,96,101,102,102,97,98,106,91,108,94,115,91,101,106,101,97,96,107,115,109,107,99,96,103,85,100,105,127,107,103,105,101,96,99,94,115,98,102,98,109,99,104,109,97,101,96,111,98,108,91,102,105,95,111,95,95,108,118,104,109,100,98,102,105,74,107,90,100,107,96,107,110,99,91,89,90,100,99,100,96,99,98,100,110,95,109,105,111,108,104,104,97,108,94,102,114,96,88,97,91,103,119,89,113,114,112,105,104,99,97,101,97,102,104,110,90,103,119,110,104,103,90,96,99,96,99,105,94,98,101,105,102,91,103,91,105,114,97,99,100,97,93,105,101,102,94,99,114,100,105,100,108,103,109,99,105,105,111,101,111,110,97,98,105,101,95,93,102,94,112,96,84,96,101,113,96,109,102,103,70,103,104,107,106,113,106,110,100,103,99,94,104,112,102,103,101,94,109,116,104,105,98,98,94,99,102,103,101,113,108,105,109,103,100,100,112,108,105,110,104,107,106,98,107,102,105,101,100,113,107,106,101,108,109,110,105,110,107,105,103,105,113,98,98,106,126,111,94,104,101,112,100,106,95,100,98,88,97,111,106,105,96,109,99,97,106,93,106,98,111,112,103,96,106,107,107,101,115,110,114,110,104,106,97,109,114,110,88,103,104,109,108,107,108,100,109,110,89,115,111,103,100,94,116,95,90,103,99,95,103,116,100,93,99,105,101,104,92,94,116,105,108,110,108,112,91,110,100,107,111,99,106,99,109,108,110,93,104,107,103,106,112,79,98,102,109,117,114,103,108,107,113,105,104,105,106,102,98,102,111,107,99,109,103,102,108,95,97,112,114,109,106,98,102,106,110,95,109,97,99,108,108,108,102,109,116,109,106,112,105,104,106,94,120,93,96,96,106,100,107,107,104,85,97,103,89,106,78,99,104,113,109,100,90,99,96,99,106,102,87,104,69,102,106,113,106,113,93,108,106,108,108,85,97,105,94,103,107,94,106,96,79,102,125,87,98,114,105,107,84,115,98,103,104,110,100,114,111,110,105,104,103,91,94,101,97,111,102,105,106,107,117,98,103,95,102,96,97,112,98,100,108,102,100,111,96,109,100,100,104,100,100,103,117,103,106,108,104,102,108,106,111,95,111,103,103,106,104,106,97,98,104,100,99,117,92,109,108,94,67,116,98,95,115,94,95,87,104,104,108,102,105,104,105,114,101,114,97,113,99,102,108,113,100,112,99,104,99,102,96,90,109,102,99,107,93,89,107,105,107,95,97,111,86,106,100,95,108,92,106,94,104,110,96,83,103,83,103,99,109,114,101,105,104,113,96,97,103,100,130,105,113,109,104,106,106,114,91,104,98,102,103,102,110,105,101,109,97,109,108,100,103,103,110,114,104,106,102,105,91,96,103,98,101,95,107,106,113,116,106,110,105,105,108,71,104,106,106,109,97,73,107,102,110,107,114,106,108,103,114,104,106,102,108,111,119,99,103,103,117,93,108,102,109,103,97,99,102,106,105,106,101,99,104,97,99,113,102,99,109,102,105,112,99,86,112,95,108,107,100,93,87,116,111,100,99,104,101,105,102,107,95,88,104,107,114,100,113,114,101,107,109,109,108,116,94,99,107,98,110,78,98,115,110,102,116,104,103,100,101,92,102,106,113,110,116,92,99,100,98,106,106,99,115,94,100,113,99,109,96,105,87,103,101,107,109,109,113,99,108,101,106,105,107,98,106,97,101,111,99,109,96,115,100,101,108,101,104,103,95,102,95,102,91,100,97,95,104,99,98,104,107,95,99,96,109,97,104,96,119,114,95,95,95,94,113,99,102,104,117,96,107,104,91,102,105,101,114,106,95,94,113,114,103,100,99,109,115,95,113,101,114,108,100,101,105,96,103,92,120,103,100,101,103,98,109,100,96,121,92,114,106,97,112,114,105,103,109,105,95,121,106,105,103,109,98,92,103,98,91,108,108,101,95,106,101,101,106,90,92,107,107,120,103,103,109,120,98,88,109,99,115,103,102,102,107,113,100,104,97,110,109,111,102,96,98,108,104,102,97,111,94,99,106,106,97,100,107,92,99,93,114,98,109,106,111,109,106,108,106,99,97,98,100,109,111,104,105,101,96,86,109,113,97,96,108,108,103,107,95,116,110,101,115,95,104,108,95,97,98,90,111,88,96,99,105,99,103,112,123,103,102,99,99,99,103,99,110,112,99,94,102,110,106,104,109,112,103,112,108,98,89,103,110,96,95,105,90,102,99,109,102,113,105,102,115,108,102,107,107,99,102,102,109,108,102,91,110,97,105,105,101,107,96,108,74,99,92,105,100,117,93,97,106,101,98,102,106,108,107,100,99,118,96,95,119,105,102,93,106,96,102,96,105,116,96,97,93,98,104,109,110,90,105,110,108,111,88,102,108,113,105,78,104,102,110,104,95,100,111,107,109,104,99,92,103,102,89,112,113,103,88,103,109,102,104,100,115,108,96,105,100,105,100,108,95,64,88,108,106,106,100,98,96,111,98,99,92,104,122,106,104,104,106,121,109,107,106,93,98,101,91,101,104,102,102,100,95,103,106,116,73,95,97,104,81,99,96,100,106,112,99,106,99,93,95,120,105,99,117,108,108,95,101,98,105,100,104,86,94,109,109,96,101,97,109,101,98,112,95,134,117,102,102,102,108,101,86,105,113,112,103,102,100,109,111,111,103,105,105,98,98,98,114,101,99,105,108,110,109,98,102,117,112,91,112,100,94,81,103,93,117,100,99,106,92,124,91,95,102,86,113,75,96,104,101,118,102,102,95,99,106,98,102,103,112, +440.327,99,94,97,102,84,110,111,102,105,98,101,110,99,99,88,104,92,109,105,102,109,97,92,103,110,102,112,104,110,112,86,102,103,101,110,103,108,64,99,101,105,100,111,102,104,103,107,112,99,114,90,96,103,95,82,99,116,103,103,94,96,101,95,102,99,101,101,99,100,109,100,104,106,101,106,121,88,100,101,104,112,109,101,104,105,96,102,110,94,102,68,95,100,106,110,106,107,106,104,96,99,104,103,105,105,103,84,107,107,122,102,92,101,96,106,106,91,114,117,101,104,97,106,118,118,92,110,91,111,106,109,111,101,103,111,98,93,102,105,102,103,101,106,98,97,101,116,90,108,103,102,105,108,97,116,88,95,90,105,109,100,111,106,107,103,111,107,109,108,98,100,104,114,99,107,105,94,99,116,111,90,101,109,131,108,102,102,95,110,103,106,110,101,100,97,103,98,106,111,105,92,102,87,96,100,108,110,104,98,102,105,91,100,114,102,105,121,109,105,97,77,108,94,96,88,96,106,111,108,114,107,92,102,110,98,108,103,96,95,105,99,105,111,106,95,101,109,103,105,86,104,99,98,107,86,109,94,94,96,100,96,108,112,106,78,102,113,104,111,102,109,117,113,111,112,111,95,107,107,112,96,109,112,104,100,90,106,107,103,109,109,113,115,116,110,111,104,100,108,107,95,95,109,113,97,100,94,104,108,99,115,121,112,107,114,101,102,104,103,101,108,109,94,98,111,102,116,87,100,114,100,109,111,103,94,103,99,110,98,102,94,108,104,103,103,110,97,105,107,117,112,103,108,110,108,110,110,95,118,103,103,103,102,103,106,107,108,107,86,109,110,113,100,119,102,94,112,110,95,108,106,106,84,106,110,104,108,103,101,118,112,106,98,110,115,102,100,110,101,107,102,103,98,102,99,98,117,94,105,87,104,98,109,119,106,101,91,111,108,109,99,98,105,117,106,104,104,98,104,110,99,120,99,109,100,106,103,101,108,106,117,100,100,109,95,107,109,101,106,100,96,113,100,93,102,103,94,99,107,98,103,106,108,117,109,84,87,98,104,99,113,114,112,100,100,98,108,101,106,100,113,112,103,109,105,98,105,92,98,99,104,115,95,101,99,110,89,102,113,117,104,99,102,107,103,110,94,105,113,98,95,105,100,104,103,108,112,100,105,104,99,107,103,104,114,109,98,105,94,105,108,101,109,85,95,109,111,102,106,89,107,108,112,107,104,102,89,107,118,100,102,103,105,104,96,99,102,108,92,102,111,114,96,106,104,110,99,105,92,114,93,104,102,97,100,108,90,90,100,126,98,91,90,88,106,105,110,101,112,112,104,102,108,105,98,104,102,92,106,107,100,105,101,100,98,101,109,94,104,103,100,100,106,101,104,120,92,99,100,121,105,107,117,100,103,98,97,89,102,104,94,96,102,108,101,109,101,99,111,111,99,108,99,122,105,97,97,103,112,100,100,100,107,110,120,103,108,112,100,99,108,107,108,106,99,96,99,96,99,108,116,103,105,104,100,111,108,93,107,103,104,109,107,97,96,105,97,104,91,103,106,101,95,102,111,98,95,104,110,91,102,101,102,99,104,115,105,104,93,105,98,103,118,103,91,77,107,95,101,103,109,102,121,116,91,102,107,98,118,100,109,109,110,102,97,95,115,109,106,113,96,106,97,86,88,91,108,94,102,108,106,102,106,89,106,105,108,107,90,106,104,101,97,103,97,101,102,103,102,100,103,86,105,100,111,110,108,99,96,109,91,106,97,104,107,106,113,112,107,98,111,103,104,99,126,109,101,96,106,101,109,98,96,112,101,118,91,109,98,98,116,100,107,126,112,115,107,99,114,101,110,103,107,102,105,103,108,91,98,109,115,101,108,106,100,114,107,98,98,99,102,94,108,94,91,99,103,105,102,103,108,92,106,104,95,106,105,109,109,105,103,109,105,100,97,109,100,95,111,108,101,121,101,107,95,97,108,101,99,101,108,97,105,103,112,109,98,116,105,103,108,98,103,109,107,83,91,105,92,112,104,103,106,102,100,101,70,95,90,98,99,96,114,109,104,101,104,101,114,102,105,99,109,109,105,102,113,109,105,108,109,104,108,115,98,102,98,104,113,106,111,105,115,102,97,94,90,105,101,111,105,108,95,105,117,92,107,109,98,99,100,104,102,107,102,103,101,101,100,112,93,107,90,101,106,96,94,107,105,101,105,116,109,104,113,103,103,85,94,112,103,86,97,104,98,65,91,104,110,110,102,104,100,117,102,99,100,109,91,116,98,99,109,86,96,95,99,95,134,98,96,109,98,92,94,95,94,104,95,100,108,100,99,112,102,97,99,117,105,109,88,105,99,94,97,98,114,105,113,104,91,113,107,127,91,110,101,105,115,97,89,109,99,109,101,119,100,107,101,96,102,117,83,108,103,105,96,106,88,100,96,99,106,104,111,107,101,101,94,86,98,109,101,96,105,92,76,113,116,112,103,83,105,101,98,100,116,102,98,109,90,121,100,106,105,92,100,101,102,108,95,101,98,104,100,105,94,108,95,109,102,113,90,104,107,100,99,95,115,100,94,102,106,104,90,111,102,109,105,103,101,100,112,104,110,109,101,104,101,112,117,87,114,105,100,89,98,99,118,107,106,104,102,97,105,94,94,90,102,99,100,92,111,94,114,108,112,106,113,120,105,102,103,108,104,109,110,103,109,107,108,109,99,103,113,113,105,99,96,100,108,88,96,116,110,103,100,91,110,105,99,106,100,99,101,110,105,110,98,99,95,107,97,117,106,102,106,102,108,114,95,94,103,94,98,99,111,109,87,108,100,106,117,104,107,97,108,117,105,101,120,96,113,112,105,113,106,98,107,104,94,101,90,104,105,99,102,106,107,110,110,100,96,91,107,102,113,98,101,97,102,113,94,102,109,104,96,105,96,94,100,72,102,108,108,91,105,101,109,102,104,107,107,100,105,107,99,116,103,99,115,107,105,107,113,101,96,100,105,106,103,102,104,114,109,110,101,90,104,112,99,101,95,100,107,100,118,116,102,113,103,111,101,99,110,88,106,103,98,104,112,100,98,97,111,104,110,112,105,97,107,113,106,100,112,103,104,101,105,94,102,96,96,108,114,91,105,98,102,99,95,87,92,94,98,107,100,98,105,117,99,112,91,95,93,106,106,99,103,105,107,100,100,108,98,105,110,92,100,110,88,96,111,97,100,107,108,99,84,120,99,105,106,105,105,98,104,117,96,97,99,102,110,108,108,97,109,100,98,103,104,99,97,110,95,106,102,103,112,87,99,100,110,102,105,113,100,88,100,110,99,109,108,99,100,101,104,111,91,107,94,108,95,98,96,107,100,102,104,92,107,110,105,96,96,100,99,97,103,105,102,110,104,98,102,98,105,106,104,116,103,100,99,92,118,101,79,106,97,106,105,105,107,107,103,82,102,96,90,99,100,101,100,92,101,93,99,100,109,103,100,95,97,107,120,98,92,98,98,103,108,99,103,99,101,104,108,112,87,98,103,104,87,110,106,100,100,94,113,98,108,79,108,104,106,108,114,103,109,86,107,113,106,106,84,103,105,97,97,110,102,99,102,106,101,105,102,92,99,105,98,96,110,106,91,98,111,98,104,113,109,104,92,106,109,100,102,103,106,100,116,113,106,84,99,99,97,103,99,107,103,103,105,112,104,102,102,113,93,87,102,107,105,101,102,88,104,109,100,133,100,96,109,96,98,95,113,121,100,103,102,116,96,117,97,96,101,101,100,101,99,95,99,102,98,100,105,105,109,99,98,117,102,106,105,100,102,104,94,105,100,108,85,98,102,111,99,100,108,103,103,106,100,104,114,107,103,95,92,108,91,113,101,102,94,101,122,130,102,97,94,98,95,100,102,100,104,102,93,92,88,101,108,65,107,101,100,108,116,105,95,103,103,98,105,106,104,75,95,103,117,102,99,104,84,105,103,104,91,100,107,98,108,95,102,80,97,108,95,105,112,95,86,98,110,99,110,106,113,98,107,101,101,87,101,107,99,112,97,97,74,94,104,100,111,102,102,103,92,105,103,110,69,99,102,71,103,94,84,100,110,99,110,120,90,110,103,100,98,94,104,97,91,98,99,102,95,98,100,118,104,101,108,92,99,98,114,102,97,98,104,92,104,100,98,107,102,109,104,99,107,104,101,101,91,85,108,94,95,98,92,96,103,112,95,97,95,95,111,91,99,100,105,106,101,109,103,101,67,110,89,93,101,96,99,109,109,87,94,77,98,109,96,97,91,96,103,108,98,96,108,98,107,110,102,99,107,92,110,102,110,104,117,100,110,99,104,102,113,118,102,108,104,119,94,93,101,106,88,90,112,112,103,99,100,98,100,95,101,103,91,105,92,100,97,99,101,110,109,98,106,99,107,108,102,107,99,89,96,109,99,120,104,87,112,100,100,116,103,106,92,94,98,106,104,103,98,114,102,103,111,100,109,117,97,106,113,103,102,117,95,102,97,99,114,112,95,107,113,95,120,94,102,94,102,83,102,101,105,103,107,96,81,97,110,109,93,108,72,110,91,83,104,105,108,103,101,101,104,100,94,106,93,102,92,79,103,106,100,131,112,117,106,101,110,92,95,110,96,87,96,94,105,100,102,107,99,101,113,97,114,102,96,105,103,117,102,94,98,103,107,110,107,117,109,110,109,113,105,94,106,106,89,102,102,92,103,102,108,101,103,86,104,92,102,100,99,92,96,104,98,85,105,94,109,98,99,101,92,111,98,83,110,89,108,99,67,103,105,89,107,81,107,105,108,99,104,106,109,108,92,104,89,94,96,98,103,95,104,97,100,62,88,102,98,101,96,120,107,108,117,98,106,97,114,91,101,106,94,95, +440.46735,106,106,88,97,95,104,100,105,99,107,96,119,104,108,103,98,87,110,92,101,99,102,99,81,103,98,105,110,99,110,114,96,93,96,116,109,106,98,100,101,102,94,104,94,110,108,95,92,102,92,95,107,107,82,88,89,102,103,114,98,98,110,97,96,96,94,94,98,97,100,96,103,106,90,101,100,102,91,110,108,117,110,106,109,103,99,108,96,93,112,87,96,111,101,87,103,100,104,101,114,95,102,101,112,97,90,101,94,97,94,100,104,111,102,97,109,94,104,103,94,97,96,96,105,109,95,116,92,101,100,104,111,103,112,104,103,110,95,108,108,91,103,113,103,93,87,108,103,96,97,108,95,104,79,100,98,94,101,111,104,107,116,101,92,104,104,98,99,113,99,107,83,91,102,113,107,103,89,106,106,99,108,101,92,107,113,104,105,103,93,104,101,107,102,96,104,103,105,97,99,116,96,94,94,100,105,105,103,114,124,97,109,112,104,88,108,108,100,95,103,118,103,97,95,117,117,96,99,106,100,99,105,102,122,106,95,108,105,109,100,110,97,96,111,102,115,98,101,106,95,104,105,105,97,105,116,98,97,96,99,105,101,96,97,87,107,99,101,94,107,105,90,115,105,102,102,109,99,103,95,104,110,99,109,109,118,105,100,94,99,100,94,110,109,114,117,109,104,102,96,102,99,101,99,102,104,101,110,98,101,96,108,109,101,94,109,109,116,108,98,104,105,111,113,109,90,103,87,111,113,113,102,97,105,114,84,79,89,106,117,101,116,97,102,111,130,95,85,99,101,96,105,99,113,103,91,112,95,110,120,100,116,104,97,110,102,106,108,107,113,102,100,104,90,102,105,105,101,113,139,111,106,105,106,99,92,96,105,105,106,111,87,98,102,102,98,102,103,92,111,97,90,110,102,103,103,95,107,100,103,105,107,94,106,93,90,104,93,99,104,97,110,87,97,109,95,99,104,92,102,95,106,101,99,98,102,101,106,97,101,108,98,100,113,99,102,104,86,99,116,114,103,112,101,105,100,111,100,105,97,99,103,102,103,97,109,112,98,104,76,106,110,106,100,110,91,95,113,94,112,101,109,98,97,100,109,99,102,94,106,104,104,100,105,95,97,88,101,109,105,107,120,117,95,91,104,109,92,98,100,108,109,100,97,107,100,89,100,98,87,99,110,109,99,99,105,103,105,97,103,97,108,109,101,102,109,108,107,100,102,94,96,103,94,112,99,110,101,107,100,109,111,118,110,105,112,99,95,88,104,105,100,101,91,106,100,114,110,105,96,101,85,97,94,116,113,96,106,102,91,104,108,107,96,96,92,100,105,110,103,105,111,101,104,125,103,102,100,103,105,95,105,103,94,110,105,83,100,99,101,101,103,103,108,111,103,110,86,95,103,99,105,108,99,99,95,90,104,100,112,105,94,108,97,101,102,104,103,103,102,99,105,107,92,107,92,90,104,98,104,98,102,103,99,99,98,104,98,110,102,107,105,96,71,109,103,115,98,111,102,101,97,102,106,100,100,87,115,96,99,95,107,118,94,98,104,100,114,80,102,103,107,97,101,111,104,98,101,110,96,78,100,98,94,109,110,113,100,97,99,105,103,100,97,103,95,96,99,101,104,104,96,101,101,105,97,112,77,106,104,106,114,83,106,99,105,117,96,108,96,106,100,101,92,100,90,97,101,97,98,113,102,107,98,109,106,106,110,103,106,94,98,93,97,97,103,99,110,101,94,102,83,104,102,92,102,90,96,99,102,105,94,108,107,100,100,98,107,103,113,117,108,109,109,99,84,98,102,103,106,99,100,96,109,112,114,102,109,114,108,120,96,96,100,97,99,100,98,130,93,92,97,100,108,112,97,110,93,109,95,99,104,106,90,107,104,113,107,101,104,95,112,105,93,98,103,110,93,108,113,97,88,108,113,97,100,105,105,96,101,104,94,102,101,102,103,80,113,109,122,105,109,97,106,103,108,103,109,100,86,93,116,106,99,103,100,108,113,107,109,104,106,100,106,103,103,101,79,93,98,95,109,105,100,99,94,92,106,105,105,107,100,101,117,96,106,97,95,97,99,109,83,101,102,102,101,109,100,104,105,108,102,101,99,100,89,80,102,104,105,112,107,107,115,88,92,104,104,99,101,105,113,109,119,107,99,93,103,81,105,110,113,88,94,88,105,97,100,92,101,89,99,111,97,95,101,101,100,92,92,95,98,95,110,111,88,100,78,107,91,120,108,99,100,102,97,105,100,112,104,102,124,118,98,110,103,98,103,104,138,98,99,108,107,96,119,97,97,100,113,99,102,104,95,102,104,95,115,104,103,98,108,100,107,118,91,102,106,95,101,108,108,94,98,98,91,104,95,106,104,111,95,100,100,75,83,111,105,103,110,100,131,98,104,110,101,98,103,109,100,107,107,103,101,106,100,104,105,98,87,100,109,90,105,95,104,96,88,104,104,100,113,106,124,99,101,94,100,105,124,103,102,90,102,101,110,112,98,120,105,102,127,102,108,110,97,96,116,100,110,108,121,102,116,95,107,92,111,106,106,95,95,93,101,88,114,109,104,95,100,73,104,100,100,101,101,91,97,116,104,108,93,100,105,121,106,102,106,105,103,82,100,103,98,120,106,104,95,109,108,101,96,100,103,107,95,98,105,108,106,105,93,96,111,102,111,113,113,97,114,98,96,111,101,99,109,96,99,104,104,98,102,108,101,104,110,96,108,106,101,107,107,102,104,109,109,100,109,104,101,96,99,99,91,95,91,96,77,111,106,104,112,101,107,100,95,101,107,93,104,112,110,108,96,101,115,100,103,109,112,107,108,107,112,92,96,96,110,103,105,102,103,111,114,104,111,97,106,96,95,103,111,104,110,100,109,96,104,100,101,106,119,102,113,103,98,99,98,105,112,102,116,103,94,106,97,101,96,99,87,104,99,121,103,100,100,104,121,98,113,103,106,88,98,99,94,119,108,94,96,116,97,99,94,111,96,100,108,120,100,105,98,99,107,99,108,99,95,107,98,101,94,99,103,107,102,100,95,104,103,106,117,97,105,86,94,100,95,102,95,100,121,104,113,94,99,77,94,94,105,104,104,100,106,110,106,117,116,109,101,98,103,98,99,103,101,93,102,109,101,99,97,97,111,102,90,105,117,96,99,114,106,94,106,97,120,116,106,97,110,105,99,105,105,112,86,101,96,98,120,108,108,106,94,111,108,78,102,113,91,100,112,95,107,84,129,87,116,108,101,93,102,106,98,105,106,102,109,105,92,95,99,102,96,96,107,103,109,98,104,110,103,102,96,101,112,104,98,99,105,96,99,95,97,90,96,102,95,91,95,92,106,105,110,100,97,103,89,103,105,99,99,82,122,104,87,98,106,96,100,97,104,97,106,111,98,106,97,105,103,101,85,107,98,101,115,99,95,99,97,98,103,109,99,106,99,99,102,103,112,91,93,113,95,90,97,94,103,99,107,100,102,113,107,109,104,98,102,98,98,99,102,99,108,89,103,109,109,113,128,107,103,104,108,110,121,91,94,99,107,107,95,102,104,105,100,106,116,95,94,98,97,92,113,98,102,87,101,91,100,103,100,111,97,98,97,103,98,99,103,104,108,108,97,106,103,106,90,100,110,105,110,96,96,117,103,97,111,108,110,106,110,112,99,97,106,99,103,119,100,110,99,107,96,101,101,112,99,92,108,98,104,95,105,106,98,99,104,103,109,138,109,97,108,110,107,105,95,91,99,127,87,93,105,102,107,96,108,115,112,97,105,96,108,116,107,106,105,105,114,106,99,100,100,100,108,104,110,97,114,106,105,97,105,88,101,104,96,95,95,100,86,108,111,103,102,110,88,101,98,92,96,93,91,107,90,113,97,99,97,104,106,100,103,100,103,107,98,116,109,104,97,101,101,92,104,110,114,103,92,111,93,101,95,92,101,96,105,96,94,112,103,117,105,98,104,100,107,89,106,108,99,92,94,117,93,104,105,80,101,109,102,101,100,97,106,101,93,98,109,103,92,84,99,114,121,94,103,104,89,103,95,100,102,101,110,102,94,109,96,105,112,101,90,90,106,110,101,94,96,93,82,102,111,103,99,104,87,108,112,108,95,101,109,105,102,102,94,107,92,105,103,99,91,96,110,104,116,112,95,104,94,88,115,101,109,101,103,99,104,115,97,101,104,100,98,105,95,109,109,102,95,96,106,89,100,101,103,94,98,101,96,102,99,108,102,96,92,93,108,93,100,111,102,110,100,90,91,108,104,92,95,101,103,111,100,96,98,94,105,102,100,112,109,105,106,103,92,101,106,110,91,95,97,99,103,103,107,92,106,100,100,96,110,106,95,91,82,103,100,106,105,99,113,103,95,98,105,110,111,94,100,93,94,94,97,95,106,109,104,96,103,88,102,89,105,110,108,103,102,98,107,100,105,99,98,118,110,110,103,80,99,107,106,98,90,103,102,99,103,91,103,90,107,99,111,101,100,99,100,104,84,84,97,99,110,99,99,99,96,92,100,89,94,97,108,96,81,119,105,84,101,108,96,100,104,105,89,93,109,103,101,107,113,102,99,109,98,103,109,96,119,95,92,85,77,100,95,101,105,103,98,114,105,101,89,112,112,105,108,122,100,108,90,113,99,104,121,121,104,85,97,106,103,101,103,96,97,106,100,93,113,95,97,80,111,103,102,98,103,105,112,99,112,113,112,91,88,84,97,96,104,91,109,95,93,98,103,98,98,112,100,97,106,103,100,120,105,97,96,106,102,106,95,100,105,92,95,97,101,102,102,98,97,115,113,101,106,103,102,105,104,97,94,93,102,95,99,114,111,99,100,95,92,95,107,92,101,97,69,108,97,101,106,111,90,84,95,108,97, +440.60767,98,107,101,95,113,93,101,108,100,107,101,99,117,100,102,91,100,86,83,94,101,111,99,100,109,110,103,99,105,96,109,104,106,64,110,90,107,120,100,91,96,96,110,108,93,98,100,95,104,112,95,101,101,110,100,89,103,101,110,102,100,96,104,102,111,89,86,103,100,92,105,108,103,109,106,105,104,110,102,97,90,78,107,103,93,99,107,98,109,102,91,98,97,90,105,103,103,90,107,104,95,104,93,103,96,78,92,102,110,104,96,96,84,95,94,97,95,95,99,106,102,96,96,114,103,107,101,97,107,103,115,105,99,99,113,106,103,83,117,98,104,104,98,99,96,102,85,112,94,107,103,98,102,101,97,101,110,97,100,103,92,98,117,99,100,100,106,96,86,106,101,102,110,105,102,103,107,98,95,90,102,101,92,106,108,106,114,97,101,94,94,99,90,102,104,99,101,99,98,112,93,85,111,98,97,98,80,107,115,114,100,105,111,103,104,109,99,98,101,117,99,103,106,91,109,92,103,110,108,93,100,105,103,100,94,105,106,109,105,104,103,83,110,129,103,111,96,104,106,104,104,102,109,102,96,99,101,99,114,118,92,90,87,92,93,95,100,102,86,102,94,99,114,104,98,106,95,99,108,101,103,114,112,113,98,127,89,107,105,116,83,106,108,104,99,82,121,103,99,98,105,104,83,109,100,99,106,98,101,99,92,111,110,106,106,94,107,112,104,104,97,97,99,101,100,104,97,90,89,108,107,98,101,111,100,107,100,112,100,103,95,94,100,94,103,104,108,108,106,106,109,109,105,98,107,106,104,112,100,109,73,103,120,108,96,101,100,116,106,96,106,99,105,94,115,85,95,88,106,110,111,108,109,113,103,85,101,101,106,106,111,98,110,94,99,92,106,104,109,109,105,110,107,100,108,100,102,99,117,133,92,102,100,107,128,99,99,98,110,110,104,98,112,105,103,97,106,103,106,113,106,105,97,100,110,91,101,109,102,100,111,109,99,103,101,116,97,104,87,108,105,103,105,93,95,95,109,105,107,96,100,94,118,107,100,107,110,99,104,94,114,97,104,95,106,97,97,113,97,98,101,95,118,99,98,94,100,105,87,101,92,108,95,135,89,100,107,102,98,117,103,100,109,112,104,104,90,99,98,98,105,107,109,98,107,112,100,91,110,92,91,117,98,97,70,100,111,98,102,94,102,104,100,96,94,106,99,101,114,115,99,103,102,105,107,106,105,97,118,112,94,110,105,97,108,91,97,89,105,101,106,99,103,106,114,99,106,113,94,103,93,103,105,107,95,100,107,102,104,110,105,105,106,92,97,93,106,90,102,103,115,104,93,102,98,113,108,108,98,108,89,101,113,96,95,93,94,105,97,107,96,104,110,101,99,101,100,102,114,121,110,113,112,107,101,102,63,99,108,117,105,90,85,109,107,104,99,105,107,102,112,105,91,111,102,95,94,87,116,101,101,104,97,105,112,106,99,100,97,95,101,100,95,110,96,97,103,98,117,91,102,107,106,105,99,94,101,105,102,104,106,101,95,98,88,102,103,89,90,109,97,124,105,84,108,107,107,91,108,93,108,95,100,91,116,106,98,104,97,97,110,114,99,120,91,91,103,100,99,87,113,95,100,94,97,105,103,85,100,112,110,102,102,102,104,68,107,101,112,97,108,99,104,96,97,102,108,104,96,111,113,110,99,117,102,99,102,94,109,114,102,102,97,96,91,102,96,91,111,92,106,102,103,100,100,87,105,94,105,106,102,96,113,99,96,86,95,116,97,99,90,121,111,85,110,93,96,102,98,116,106,93,98,100,100,101,107,91,100,105,109,105,108,100,87,91,112,116,108,98,112,102,100,107,103,105,103,105,85,100,93,109,117,110,101,103,112,98,99,117,109,105,101,104,96,103,97,107,81,89,105,101,93,117,91,119,108,112,111,109,99,108,103,107,108,105,95,99,114,114,101,101,105,113,119,98,111,109,98,104,123,106,106,114,110,117,106,113,105,112,95,107,109,114,109,83,106,99,98,92,96,103,108,104,110,106,112,81,97,105,104,107,100,104,106,91,95,103,106,101,110,105,106,98,91,107,101,88,98,91,102,105,100,111,95,91,98,102,112,107,97,103,106,102,109,108,98,95,105,108,98,95,109,104,105,99,121,99,98,100,104,101,103,95,119,100,106,91,101,98,95,101,109,98,100,109,92,99,105,96,113,102,95,97,87,102,109,106,96,97,104,99,98,96,97,111,105,100,103,102,98,89,105,90,105,102,99,97,91,121,99,104,109,103,104,101,99,99,91,103,97,106,106,101,107,105,110,97,102,113,107,97,107,109,107,92,107,104,105,101,106,98,92,103,101,100,80,110,96,104,101,92,87,101,91,125,98,108,98,101,94,109,99,108,111,100,95,117,98,98,80,110,102,92,101,102,101,90,98,90,98,119,108,106,117,103,108,99,97,113,109,113,110,95,98,104,99,106,102,117,82,99,110,110,108,109,104,102,105,105,113,112,112,99,106,99,111,110,96,115,107,113,104,110,102,105,119,111,101,111,99,109,99,99,119,109,105,97,95,105,108,98,84,104,95,104,113,121,111,96,109,107,111,106,106,100,84,102,101,102,110,80,109,94,91,110,113,92,109,100,108,117,109,103,95,107,106,74,110,119,115,117,96,106,107,101,112,105,108,110,110,104,116,104,107,116,108,108,99,87,102,110,103,98,95,113,118,112,105,100,106,97,95,104,108,109,107,99,117,98,113,121,94,103,107,99,98,78,105,101,105,88,110,111,98,109,82,103,99,116,109,113,99,97,103,105,99,100,103,113,111,111,114,106,91,88,90,100,105,99,110,92,110,106,105,107,104,100,106,98,111,95,104,108,107,104,96,102,114,104,113,108,96,106,106,100,109,98,109,89,105,110,108,97,119,114,91,90,103,99,82,109,105,105,98,94,109,103,103,106,110,98,103,92,100,112,116,104,101,99,101,110,72,111,98,105,103,111,106,99,102,100,95,117,103,98,92,75,107,84,112,101,105,109,103,106,108,99,116,94,119,104,106,96,104,96,95,106,99,96,105,103,101,109,114,102,105,110,94,107,116,98,104,119,115,97,111,101,88,96,109,103,98,102,105,116,117,96,95,106,95,112,101,102,102,98,93,96,107,99,121,107,79,102,101,106,110,105,83,96,123,94,102,93,98,102,110,107,111,98,107,99,102,94,96,106,97,100,116,108,91,105,103,105,111,107,113,133,91,99,97,96,104,109,98,98,96,107,109,103,108,101,107,94,93,111,90,110,95,105,108,101,102,106,108,107,102,94,98,85,93,103,99,101,104,82,102,101,99,96,103,102,110,108,91,95,97,89,82,102,95,113,101,104,103,116,137,113,109,96,99,86,105,100,101,115,96,103,109,107,85,88,112,96,108,105,96,113,107,118,100,99,104,107,109,104,103,104,103,115,113,110,100,100,105,101,98,82,96,99,102,104,97,105,99,101,94,104,114,95,109,90,98,113,109,104,102,110,102,105,102,102,124,106,110,107,96,97,107,108,113,109,101,102,102,107,109,98,96,99,100,110,95,101,99,94,106,114,109,111,105,99,92,107,104,93,105,110,105,101,106,100,118,101,106,95,96,99,100,114,108,102,99,103,93,96,108,109,96,102,107,121,99,96,99,105,96,100,108,107,106,104,119,104,102,93,105,103,92,101,113,108,103,120,108,95,102,111,103,113,110,100,105,104,113,103,96,107,107,111,106,103,94,109,114,107,94,100,108,115,89,94,104,106,110,96,108,112,98,102,106,107,108,117,99,116,102,98,97,118,98,100,93,110,98,100,109,107,98,100,102,104,95,102,100,105,109,114,104,96,102,101,99,67,102,104,104,99,116,97,101,111,94,101,113,90,99,93,98,98,102,99,93,87,83,109,99,104,101,100,125,98,91,109,103,102,93,106,105,95,99,99,103,99,105,95,96,91,93,110,112,90,99,93,115,109,95,94,105,103,100,102,91,89,97,102,101,87,99,87,94,99,97,99,123,104,108,109,85,107,93,88,98,109,104,102,102,101,101,96,96,107,106,94,100,101,101,95,99,103,108,98,104,97,103,107,99,95,112,107,94,125,104,104,119,103,100,92,98,98,93,99,99,107,103,105,109,92,99,92,109,107,88,105,102,97,120,109,95,85,107,100,108,107,97,90,120,99,92,105,104,110,83,105,104,105,96,100,106,95,117,93,94,117,90,95,103,108,97,103,97,102,101,102,95,95,100,91,94,103,103,102,98,65,92,136,116,104,104,111,104,108,102,97,101,92,100,99,104,102,107,87,104,101,95,104,96,83,108,122,103,99,93,107,100,104,106,106,94,94,86,86,97,95,98,107,106,116,107,103,97,97,99,112,87,108,111,94,96,97,109,107,102,91,101,98,108,108,92,106,103,92,104,102,97,94,102,98,93,110,105,92,103,94,111,98,113,108,96,93,99,92,87,98,102,102,125,99,81,94,95,87,90,100,103,100,101,109,98,95,96,101,101,87,101,102,103,95,104,100,92,106,103,94,93,101,103,90,97,100,92,104,107,102,106,99,92,102,108,101,94,100,97,108,93,119,97,99,112,99,94,105,107,90,110,101,106,101,109,95,120,90,97,100,91,111,107,90,104,95,100,97,99,94,104,97,109,101,103,94,103,97,106,100,98,95,93,97,103,95,98,93,95,109,96,103,99,99,90,97,106,93,98,104,94,103,85,105,95,106,90,82,120,105,95,106,102,98,100,103,102,102,99,101,89,101,87,98,87,102,100,92,104,90,110,92,99,100,101,102,102,106,85,100,98,101,98,107,107,91,100,102,110,84,91,100,104,97,101,92,93,97,87,107,113,92,96,85,86,74, +440.74802,105,101,94,88,105,94,106,100,103,104,106,104,110,121,99,105,99,94,82,93,100,90,96,83,100,106,115,103,104,118,79,113,97,89,119,97,91,110,109,104,102,114,95,102,119,113,111,102,98,103,96,97,112,105,91,104,115,81,109,82,102,110,97,101,114,99,90,98,95,95,102,100,98,95,96,98,98,103,106,102,97,102,99,93,101,97,98,99,99,85,108,113,105,101,104,97,102,101,96,106,101,106,99,98,104,110,101,106,104,94,103,93,104,103,97,96,101,94,105,95,104,97,113,101,91,111,114,106,104,106,117,113,108,110,117,95,97,100,98,95,92,104,104,101,108,103,102,107,85,96,94,108,103,108,102,103,106,88,103,102,103,105,104,86,114,97,99,96,112,100,96,95,100,85,101,100,92,89,118,102,104,94,93,89,104,100,95,97,117,104,93,99,100,122,105,106,104,108,96,100,86,102,90,102,98,100,101,109,113,117,105,99,106,102,109,98,102,117,88,105,101,96,108,96,93,105,106,104,82,106,108,104,107,106,98,105,97,111,103,113,107,91,109,112,97,105,114,96,106,107,87,103,103,105,105,98,97,108,101,119,100,96,110,96,112,104,104,101,98,92,101,119,108,121,102,98,104,109,100,92,98,102,119,100,104,105,104,110,107,104,89,118,94,97,109,80,112,102,101,109,81,87,91,108,98,106,105,102,103,100,101,103,108,99,98,125,95,101,91,99,90,103,100,100,108,102,105,104,108,104,111,98,107,88,109,98,99,109,102,107,108,97,104,98,97,102,103,108,103,108,94,96,97,100,101,103,105,96,102,106,103,103,107,93,98,95,106,107,101,100,102,110,109,94,103,112,96,112,101,96,116,102,91,105,101,85,106,100,105,94,101,91,110,102,99,110,102,99,102,103,95,109,105,106,107,97,112,116,102,84,93,99,98,109,109,95,94,105,103,99,101,94,104,95,100,100,99,106,103,111,95,111,88,111,122,109,101,109,104,101,106,113,118,107,100,98,114,94,101,109,99,101,102,107,111,106,109,110,100,100,103,107,98,111,96,103,102,99,103,99,94,101,98,98,99,89,109,120,111,91,103,100,102,103,97,109,100,94,107,95,99,105,99,100,89,97,94,109,96,91,104,99,103,112,108,87,107,114,102,99,98,103,102,104,109,95,117,98,106,100,97,105,108,100,103,104,104,84,84,107,108,107,103,109,94,115,110,101,113,103,101,106,100,107,110,104,105,88,95,113,100,111,101,107,100,95,101,97,98,94,97,78,99,107,98,94,103,101,100,94,96,108,109,95,107,101,102,102,98,93,115,94,92,113,114,110,103,109,106,109,113,111,95,105,108,100,110,99,103,104,101,117,105,86,101,97,85,110,104,100,96,96,92,106,104,104,107,98,104,105,103,95,101,97,104,103,103,94,98,99,99,94,102,104,100,98,98,105,112,106,104,100,105,109,96,102,94,98,110,114,93,106,112,109,92,98,98,102,109,92,108,96,117,107,97,103,101,98,105,95,100,96,110,105,94,107,112,96,105,91,96,93,109,90,103,99,106,109,99,98,113,92,99,100,99,110,95,115,102,102,81,90,95,105,105,114,89,109,92,96,104,104,102,96,96,92,102,107,112,98,101,99,97,101,88,92,114,107,106,99,118,102,115,118,95,96,95,98,105,118,106,102,96,105,103,94,93,101,96,109,105,106,103,105,108,105,102,98,104,98,98,106,99,80,108,88,85,94,97,98,98,95,98,103,97,105,99,117,100,106,97,114,102,104,103,101,95,108,100,113,96,110,113,107,96,106,94,114,131,98,99,106,97,96,99,121,95,107,103,99,99,98,99,103,99,104,109,110,114,103,102,113,105,110,94,95,95,108,107,96,104,98,106,103,100,110,109,97,104,98,96,95,112,96,91,108,99,100,110,109,107,98,110,92,100,90,108,100,94,111,102,107,99,99,98,105,101,107,112,102,73,104,104,111,100,99,100,104,105,107,104,93,110,112,100,111,103,107,105,112,102,99,98,110,113,101,112,97,108,106,100,96,117,101,112,94,109,99,87,95,111,102,97,108,95,106,91,97,101,105,107,104,100,98,97,100,97,95,97,101,105,99,120,104,106,100,101,102,101,128,102,100,100,96,94,93,105,109,105,97,105,96,104,100,101,112,103,105,92,100,102,113,102,87,114,113,101,90,101,108,103,104,113,104,99,108,113,90,90,94,93,113,109,97,105,117,109,98,103,104,97,98,96,113,103,104,108,119,110,99,94,99,99,110,101,108,107,93,110,96,97,112,98,105,105,101,92,96,102,100,105,102,99,84,95,102,96,101,101,92,103,94,87,88,105,92,103,110,104,107,103,109,94,103,97,99,111,112,98,105,104,107,102,90,93,104,96,100,103,101,109,105,99,101,95,96,97,100,108,95,100,108,96,96,102,91,107,104,98,92,98,106,93,115,99,106,101,94,106,106,107,105,98,103,68,108,101,98,112,105,108,97,109,99,81,113,119,105,99,95,109,104,110,117,95,103,98,72,101,104,110,105,103,95,95,101,113,96,92,114,104,111,111,100,93,104,97,102,106,87,113,101,102,110,88,103,100,103,110,95,102,120,110,104,116,111,114,95,108,93,108,102,101,97,107,110,98,104,109,118,108,114,106,100,105,99,102,108,106,103,119,98,87,116,117,101,116,101,115,102,99,98,109,112,109,108,99,95,106,107,106,98,106,108,106,121,105,88,99,100,113,105,99,107,108,97,110,105,105,104,112,104,108,104,108,107,92,87,108,91,94,102,108,111,117,99,115,109,108,110,100,103,106,94,100,114,102,116,127,100,93,106,120,107,106,105,102,109,112,132,106,93,75,103,103,105,97,111,101,108,104,109,105,91,102,108,102,117,109,116,98,101,115,112,90,98,109,98,107,100,94,103,105,108,98,112,103,95,108,103,103,104,95,112,98,109,98,113,99,98,89,90,104,90,119,106,109,115,102,108,108,100,100,102,112,109,99,106,119,91,97,101,107,112,108,103,119,104,104,113,100,113,112,100,112,103,116,89,102,117,83,112,104,111,112,98,113,107,102,104,94,99,114,101,102,89,106,110,102,104,95,84,120,94,107,110,105,103,109,103,102,96,101,96,100,107,91,105,104,97,105,103,93,104,102,101,96,101,101,101,103,109,98,105,99,100,104,102,104,103,105,109,107,92,106,93,111,113,105,109,95,102,99,94,100,122,108,91,113,108,82,90,107,107,124,109,94,99,103,107,103,110,109,99,96,106,98,96,74,98,114,88,102,113,98,116,105,101,97,102,95,104,102,105,104,107,99,97,108,108,94,104,119,107,110,105,111,97,107,96,98,102,103,102,109,107,112,110,104,107,100,100,97,104,105,94,98,102,101,105,88,99,111,99,108,98,111,104,108,96,107,95,109,93,100,98,108,103,97,104,114,109,88,111,113,111,108,106,96,100,111,99,94,99,120,96,98,104,108,112,113,114,109,112,109,117,102,109,109,91,100,102,103,110,103,105,112,101,116,108,96,112,102,107,102,109,93,104,101,117,108,108,103,101,103,98,103,111,99,91,94,92,106,112,103,107,103,108,108,95,92,86,100,106,102,81,111,95,108,100,103,111,107,100,106,88,103,105,110,107,100,98,109,106,104,108,96,110,98,106,103,108,98,69,100,102,100,104,109,106,110,95,100,109,104,107,118,107,109,98,106,132,97,104,110,105,108,104,96,109,97,104,99,92,88,94,107,97,111,100,109,107,98,116,106,111,98,87,102,107,92,100,102,102,103,93,103,101,100,96,114,107,101,98,102,94,98,83,118,106,98,101,100,101,86,108,98,106,123,112,103,105,99,109,97,101,96,97,104,95,97,101,98,100,101,106,104,107,96,97,94,94,102,100,87,99,102,94,108,107,94,100,120,108,109,110,104,92,100,104,102,111,96,103,97,95,97,105,98,108,114,101,101,101,106,95,106,105,108,106,99,103,102,96,106,95,99,101,105,108,116,87,112,97,108,99,112,107,109,108,121,124,101,100,108,98,102,101,107,95,103,87,124,95,97,107,103,109,100,93,101,95,112,109,106,102,92,108,106,113,104,100,106,113,100,111,103,98,102,103,76,112,101,104,104,102,107,113,97,113,100,111,88,123,101,100,106,99,113,104,106,113,101,110,103,104,119,111,111,107,110,111,107,113,109,106,105,106,105,108,102,114,98,105,92,106,97,104,108,101,97,105,110,99,106,97,98,112,99,102,103,109,108,105,103,117,91,103,91,118,98,108,103,104,98,101,113,116,97,109,106,105,107,105,103,103,109,106,112,103,107,95,95,108,105,100,112,101,113,103,91,106,110,115,107,107,103,112,104,103,115,104,112,108,96,96,98,108,99,98,101,102,91,102,95,104,92,105,124,102,120,96,90,91,98,93,99,104,115,95,101,109,98,120,97,109,91,102,110,104,104,104,119,98,98,98,108,106,100,107,95,96,96,104,99,93,101,102,108,83,90,101,108,103,101,106,111,111,95,75,100,121,103,91,108,88,105,105,99,103,97,108,103,109,101,98,119,98,118,94,100,96,104,102,109,96,110,95,105,101,106,105,91,102,113,104,98,108,104,105,119,110,107,94,101,106,107,107,97,99,89,83,110,98,94,99,100,98,110,95,117,93,96,108,112,92,95,95,102,98,114,101,104,111,100,87,103,106,113,96,100,104,80,83,94,99,115,97,112,100,113,98,103,106,104,91,118,100,95,89,106,103,84,98,97,99,107,89,107,113,111,94,96,104,117,112,113,100,95,108,105,106,102,84,113,106,101,99,111,98,112,98,108,98,80,93,108,96,104,97,100,121,100,98,107,100,112,104,103,89,117,112,96,101,105,94,108,95,102,105, +440.88837,91,98,133,105,92,97,97,95,97,105,104,94,69,84,69,105,101,106,92,111,101,105,101,110,107,112,98,101,109,104,103,100,96,105,109,102,103,95,105,101,100,100,95,103,109,100,94,109,106,107,91,106,107,102,107,104,102,95,102,101,98,103,93,94,103,109,97,105,117,97,96,96,106,111,107,105,91,63,104,107,92,96,103,102,100,99,91,96,100,96,95,93,96,104,97,93,95,95,96,111,100,121,99,90,94,105,77,94,109,89,100,79,100,101,93,96,97,105,101,106,101,83,114,108,107,103,104,104,97,109,110,112,94,96,110,101,109,97,96,101,86,105,98,102,102,101,103,105,109,100,97,105,105,88,103,104,104,102,97,109,104,109,104,96,108,98,90,108,105,93,102,75,94,99,108,101,105,105,111,102,95,105,100,106,105,94,94,114,109,111,111,109,101,102,98,105,92,99,102,105,86,104,100,111,97,91,99,101,114,109,91,110,70,91,99,101,109,95,103,105,119,100,108,95,96,101,92,96,103,95,96,100,96,103,92,94,106,89,96,100,88,99,107,103,97,108,101,98,112,107,98,101,101,106,93,104,104,103,101,90,97,103,96,94,96,108,95,95,96,103,108,115,95,96,97,94,106,92,105,107,102,109,111,102,105,104,116,103,93,106,95,112,106,102,120,110,106,95,114,109,90,91,107,111,96,109,99,96,103,107,104,102,100,101,109,105,103,99,93,97,98,92,104,102,101,107,97,98,104,110,118,101,106,97,109,107,102,101,105,100,98,112,98,91,102,113,114,100,105,105,99,112,109,111,102,94,100,116,97,81,93,108,102,99,102,110,108,104,103,118,112,103,110,115,107,102,110,96,110,106,113,106,103,99,97,95,104,109,108,103,109,94,100,106,92,90,112,104,109,105,96,102,102,83,90,89,112,98,109,94,89,103,105,109,101,96,116,91,106,115,114,113,91,97,105,105,99,95,100,106,95,102,95,111,99,97,102,113,109,107,91,98,107,105,91,104,118,99,101,99,100,97,95,124,104,92,104,100,105,102,113,104,104,102,108,107,98,106,102,102,104,109,109,86,97,98,91,113,116,103,100,109,116,99,111,99,95,106,108,103,103,114,102,104,106,96,101,103,94,97,96,106,101,102,105,96,93,100,108,105,106,88,87,107,98,103,107,100,97,100,116,98,101,99,107,109,108,108,104,108,90,96,105,114,109,98,98,106,94,105,100,102,97,96,99,97,95,102,113,92,99,107,121,92,101,105,102,99,96,114,117,97,101,75,100,95,106,101,101,120,98,101,102,88,95,107,99,101,105,110,118,90,109,100,108,109,105,106,107,101,107,90,95,104,111,109,89,107,112,94,109,101,105,106,97,82,98,103,100,99,94,94,101,101,122,105,95,94,101,95,105,100,104,99,103,104,90,113,96,98,80,99,97,92,103,88,102,98,86,99,96,112,89,91,101,101,96,89,105,114,95,101,104,89,92,108,108,104,101,105,107,102,75,98,98,110,101,92,98,104,100,102,103,89,95,96,94,102,104,98,95,103,111,91,88,91,93,106,99,108,97,96,104,95,101,108,105,110,109,98,104,96,93,109,85,114,96,117,93,98,81,109,113,102,96,105,100,98,106,105,94,106,95,100,104,91,95,105,84,104,109,101,108,97,104,100,103,91,100,101,107,102,120,96,98,107,113,92,101,107,98,110,98,100,109,88,111,94,114,100,106,106,102,99,97,106,97,98,90,103,104,112,98,97,104,127,103,108,107,96,96,111,113,100,98,99,97,105,106,111,98,107,103,111,102,116,87,100,95,81,95,82,92,102,117,100,108,111,112,89,108,101,89,106,113,95,113,95,112,98,112,120,101,97,106,117,98,110,106,98,107,98,108,96,117,107,95,98,100,105,98,102,101,105,97,94,101,97,103,103,86,94,109,97,95,113,112,95,98,97,97,106,103,99,114,101,87,105,112,106,110,103,95,104,104,102,76,98,94,106,110,117,108,99,104,98,101,92,95,99,81,113,113,108,109,107,91,96,102,122,102,84,109,102,99,99,93,100,100,112,105,109,103,105,97,104,75,94,79,115,119,99,113,110,116,100,102,103,99,95,101,109,98,110,96,100,100,113,98,105,105,112,91,92,100,116,105,98,100,104,96,100,100,104,100,110,95,103,94,108,107,109,107,93,108,95,84,106,102,103,93,83,101,99,104,110,96,100,104,100,102,106,89,106,105,107,98,98,87,105,123,108,109,106,104,95,100,107,112,108,103,99,110,88,105,100,108,102,89,99,97,103,99,111,95,103,97,104,117,106,108,99,110,88,110,104,88,115,94,99,110,101,109,99,97,98,99,102,104,92,117,100,93,95,96,107,94,97,107,100,102,111,109,95,107,95,106,95,105,101,106,108,108,109,100,92,83,108,114,96,102,113,108,99,102,107,101,103,101,96,96,96,97,110,115,98,102,104,99,109,105,102,101,91,92,120,106,101,107,101,100,99,113,99,111,107,101,102,107,98,92,104,103,90,109,102,111,98,100,100,107,104,100,100,101,102,102,100,99,99,105,101,104,102,91,98,109,107,104,104,105,121,103,79,110,106,98,107,106,102,107,120,116,99,93,94,107,108,110,98,102,95,105,81,107,100,93,98,106,106,95,91,105,103,95,102,98,102,126,94,92,113,106,104,106,107,109,108,101,102,92,101,104,104,101,107,110,104,104,105,104,110,104,107,113,112,107,109,116,101,108,104,107,109,117,104,103,119,98,108,117,100,98,100,117,109,111,91,107,103,98,113,98,112,109,102,99,97,104,102,119,106,98,111,104,105,101,103,101,102,105,103,113,101,111,111,106,111,103,103,95,106,102,92,108,103,103,99,74,120,108,95,94,107,95,102,103,111,95,103,117,95,108,97,101,104,97,95,73,106,101,109,110,113,101,115,87,98,103,109,99,100,117,105,104,116,114,102,91,107,116,99,97,96,99,116,96,107,98,78,96,103,93,106,109,105,102,107,87,113,103,105,98,102,125,110,120,114,99,106,100,104,117,104,104,102,104,102,102,96,93,106,95,102,102,109,103,105,103,103,102,128,108,91,113,107,115,99,109,102,107,93,115,106,106,96,113,103,103,102,107,83,100,100,105,89,94,103,108,105,106,107,116,96,99,104,91,96,116,112,121,92,84,111,106,99,110,103,101,103,100,113,95,108,105,105,96,102,113,109,108,111,104,108,100,104,110,109,113,104,115,114,100,105,112,98,92,99,111,116,93,107,112,106,97,109,106,100,106,111,105,100,104,124,99,103,104,104,98,102,104,107,108,106,102,111,94,102,108,101,96,112,94,106,95,105,101,82,95,113,109,105,105,109,112,101,117,89,87,103,110,99,95,112,106,112,108,110,101,110,79,98,100,105,90,95,102,94,104,106,88,109,95,96,93,97,95,110,98,94,94,105,102,108,95,111,106,104,103,88,78,104,113,102,98,103,90,107,100,104,102,108,101,94,103,101,103,99,114,102,99,106,89,103,116,104,96,105,105,112,100,112,120,99,98,103,91,99,109,107,99,102,110,79,110,99,99,101,100,99,94,95,109,103,104,108,95,99,89,88,103,102,104,100,94,101,101,78,105,100,97,112,103,98,98,102,100,96,112,99,96,107,96,110,99,92,94,101,96,97,91,107,112,111,90,99,104,94,111,100,113,99,117,113,103,104,111,97,105,97,99,100,114,92,104,105,103,119,107,96,98,106,107,106,112,99,106,106,111,103,102,107,101,103,112,113,112,89,103,105,102,97,104,105,109,107,100,102,89,101,107,100,105,94,103,103,98,108,99,98,95,104,101,98,108,106,104,105,101,104,92,102,106,96,111,94,94,108,96,101,104,94,112,80,103,100,93,100,103,94,107,115,105,98,100,97,102,100,105,96,100,103,101,105,104,111,108,108,105,105,102,117,108,114,97,101,99,96,105,97,109,101,106,106,102,108,102,106,94,92,95,101,95,103,105,101,104,107,111,97,105,105,102,97,97,103,107,98,112,97,101,100,104,102,107,101,96,93,98,105,110,95,105,102,94,99,103,113,91,98,103,95,92,92,113,102,100,99,103,104,98,106,101,106,102,104,103,113,112,109,102,95,104,102,101,106,108,92,111,110,107,98,94,95,100,107,99,97,92,97,107,96,100,110,110,107,110,115,107,103,101,113,100,105,94,99,108,96,99,100,105,98,109,109,105,85,117,100,99,102,94,109,110,104,106,99,97,104,97,102,109,100,108,106,90,92,96,96,97,104,99,108,103,96,105,98,103,85,96,101,100,95,115,93,105,113,97,108,99,115,107,111,108,98,109,108,117,107,102,100,108,99,103,109,104,104,116,110,109,96,101,126,97,101,103,104,93,112,93,96,105,99,91,109,89,103,100,95,96,96,111,107,95,105,108,99,91,104,102,106,101,101,98,104,96,96,95,96,96,106,87,88,99,110,95,100,103,104,98,95,98,99,104,95,104,96,102,113,101,95,97,114,97,88,107,109,108,104,87,106,104,98,87,95,106,60,90,110,100,117,111,107,103,103,98,89,89,105,92,103,102,93,98,85,103,87,91,113,113,111,95,100,88,95,104,91,102,102,104,108,124,106,100,100,92,106,104,105,89,98,102,89,97,95,94,101,113,102,110,101,100,90,98,98,116,104,107,100,88,105,98,91,108,107,98,105,99,97,101,93,96,102,94,112,100,96,95,87,104,117,106,98,105,104,95,101,102,103,117,97,105,102,107,96,101,80,91,107,98,82,110,100,102,92,91,97,90,86,98,84,107,100,108,81,105,105,114,109,78,112,106,117,79,96,96,99,98,102,91,88,82,94,103,100,103,92,90,101,107,95,106,101,99,95,107,114,75,106,108,86, +441.02872,104,94,83,101,94,94,99,95,99,100,95,94,104,93,100,99,87,99,84,114,102,102,103,102,101,111,103,103,101,95,102,105,103,89,108,97,105,101,88,107,109,101,76,105,113,89,138,100,100,104,97,96,101,101,102,92,96,97,97,95,98,97,96,78,103,94,101,109,98,79,102,93,96,98,97,98,89,92,103,103,91,97,96,100,98,97,93,95,93,106,103,99,99,100,98,103,88,88,100,84,87,102,110,99,94,110,86,109,95,100,91,96,100,105,106,105,113,87,97,106,92,103,107,107,101,110,103,106,109,105,100,103,89,99,108,96,91,107,103,92,98,98,85,98,85,95,102,92,103,100,98,97,117,104,99,95,104,99,87,96,101,99,108,97,94,99,92,98,105,96,101,103,111,109,103,98,104,91,105,98,89,98,99,98,95,113,100,96,108,92,103,104,92,93,99,107,95,98,105,108,113,102,102,93,101,101,95,105,104,104,98,104,95,105,96,95,95,102,111,87,93,103,99,94,100,99,113,109,96,105,108,101,96,101,96,105,100,108,104,110,99,108,99,99,87,99,98,100,103,106,98,102,103,106,105,97,105,115,101,103,104,114,99,110,87,118,110,93,101,105,96,109,105,104,102,102,135,106,98,100,95,89,102,107,94,114,101,108,100,104,105,106,106,101,109,104,103,104,99,100,107,113,107,102,103,106,100,113,68,105,97,107,115,107,99,94,97,95,108,106,94,101,103,103,102,110,118,89,107,112,104,100,111,104,113,104,75,123,94,105,99,109,109,98,121,114,103,103,99,112,106,105,101,100,102,106,100,116,102,70,98,105,96,92,93,94,116,115,108,110,106,95,104,107,96,100,92,91,106,108,111,113,106,103,108,105,95,106,102,100,112,94,87,118,99,86,97,105,108,90,110,101,94,99,111,91,109,101,112,98,96,85,100,94,108,100,104,106,92,95,97,102,105,97,108,98,91,94,99,105,104,122,109,105,102,92,87,104,95,95,112,99,115,96,90,102,102,103,98,109,103,94,120,109,100,99,99,69,117,93,75,94,107,100,91,104,136,93,97,109,98,104,91,110,110,84,105,110,112,108,105,100,105,96,95,102,100,96,87,100,104,100,99,95,106,108,96,108,109,107,103,98,106,99,98,126,87,107,90,97,112,93,102,101,106,98,124,97,101,94,100,112,111,98,101,96,99,106,103,100,96,104,102,114,94,101,96,97,100,96,101,114,95,94,105,95,93,107,115,104,107,92,91,91,88,103,97,101,101,100,105,106,102,112,107,99,107,103,111,99,90,104,102,107,108,95,100,103,103,112,102,99,110,100,95,91,96,105,100,96,101,100,111,117,118,102,100,115,113,100,101,94,105,92,98,99,91,95,104,102,101,99,122,82,94,96,99,95,109,105,109,74,101,104,100,102,101,105,106,107,100,98,101,101,100,125,102,101,101,98,102,101,113,89,95,94,90,105,109,106,94,99,98,95,108,97,100,114,102,103,110,112,100,103,96,101,103,97,113,98,94,99,108,100,99,99,102,101,92,91,98,97,105,99,103,112,93,99,106,102,97,112,85,98,115,95,96,84,108,90,99,96,98,98,96,109,107,97,103,101,100,120,98,94,99,100,99,106,95,105,92,95,99,102,101,104,88,104,103,111,108,119,109,108,97,111,109,90,109,91,95,102,84,102,103,102,90,102,106,107,111,98,100,100,99,102,95,94,104,99,98,106,99,109,100,104,99,108,99,95,104,101,103,114,101,94,94,101,95,107,95,112,115,108,106,112,104,117,88,105,92,102,100,106,99,109,109,108,98,104,100,103,109,94,95,97,95,108,112,95,104,100,96,105,98,106,99,103,112,96,91,107,100,99,112,100,104,104,92,103,104,103,94,111,100,106,102,110,108,102,110,102,96,94,83,108,101,97,102,104,99,92,95,103,88,98,104,94,107,102,104,103,95,84,99,98,97,97,107,95,100,96,100,120,98,90,100,115,106,95,99,73,102,101,109,106,95,109,95,100,100,104,105,118,96,105,89,102,93,95,104,97,97,102,106,96,98,107,97,104,103,112,111,106,95,102,98,106,101,98,104,94,112,99,97,106,94,98,100,98,113,96,112,105,91,100,93,99,107,115,110,116,102,109,113,93,119,116,103,96,114,101,113,105,92,117,107,103,97,107,102,102,103,100,112,106,94,101,108,103,99,106,99,100,100,99,90,116,98,94,105,101,92,96,108,101,92,100,106,100,96,98,85,107,111,93,94,101,94,99,101,104,104,104,104,110,98,97,94,95,95,107,96,104,89,98,86,93,90,90,102,104,101,92,110,108,112,97,104,107,114,105,94,125,107,87,103,102,86,102,95,93,103,94,101,106,106,105,96,105,102,107,100,109,108,104,99,104,99,111,95,119,106,94,95,106,87,107,104,116,98,118,97,96,96,96,106,97,108,110,109,87,104,100,108,99,104,99,111,111,102,96,106,96,96,96,88,96,100,105,98,101,104,105,106,106,95,102,105,96,102,99,94,106,98,108,102,101,97,119,102,105,99,97,103,97,96,112,100,91,100,120,102,99,96,113,114,111,99,89,108,95,107,108,98,101,114,96,108,108,116,105,80,123,105,104,99,97,98,110,102,98,105,81,124,101,101,94,100,98,104,93,108,96,109,99,110,100,101,106,111,68,88,109,85,103,102,105,107,112,96,106,107,103,100,120,105,101,103,96,99,102,97,107,101,110,115,135,103,100,102,99,110,97,98,97,102,113,95,110,98,104,98,95,93,100,99,98,111,102,98,107,87,94,91,103,83,105,104,109,95,106,99,109,105,113,110,110,99,128,116,100,94,112,91,95,108,98,107,105,109,101,92,97,98,99,101,109,87,111,109,105,112,99,111,106,82,102,102,94,109,106,104,95,131,105,94,104,83,99,108,103,99,106,98,109,108,100,100,101,104,99,98,110,105,105,96,107,106,101,102,100,101,89,107,109,105,115,104,98,108,103,94,99,111,94,99,113,106,98,103,97,89,93,109,113,106,102,105,108,117,109,108,108,101,90,108,94,107,101,113,105,77,112,86,102,101,104,100,109,100,98,100,103,110,101,101,109,102,100,101,99,97,119,107,99,95,105,107,96,102,93,104,94,109,102,92,96,109,109,94,98,108,101,103,109,111,98,74,115,102,96,89,101,91,105,106,109,108,100,110,104,104,84,95,97,109,98,104,108,111,105,112,107,94,97,110,90,113,102,101,99,115,108,99,100,107,113,101,114,95,102,104,98,105,104,106,106,114,104,106,94,107,100,103,96,111,96,95,94,102,102,103,110,98,115,88,107,117,98,89,92,127,95,109,98,101,99,107,97,96,109,103,108,100,96,94,94,90,104,98,102,98,102,109,98,93,105,108,100,95,96,105,91,104,97,111,111,117,101,95,99,92,99,95,100,110,110,103,109,99,75,105,95,98,121,100,105,98,106,102,82,112,76,107,96,94,105,108,92,104,109,102,92,116,106,105,94,110,106,101,103,94,99,102,109,115,108,101,109,98,97,94,99,99,101,95,86,105,101,98,97,94,108,101,98,109,112,108,99,98,98,101,108,103,97,92,106,106,99,93,103,101,106,100,93,95,108,105,95,109,92,108,107,105,85,106,100,99,105,91,99,103,114,100,105,98,112,98,97,96,102,101,109,99,92,106,98,101,102,85,113,81,106,99,103,112,99,95,95,103,96,87,101,96,98,103,93,111,97,112,105,96,109,99,102,99,104,100,109,116,103,108,96,99,104,99,95,98,100,94,98,102,106,104,88,99,108,95,100,114,109,99,84,99,87,72,78,123,96,109,114,91,94,112,105,108,97,102,105,98,105,92,99,109,96,93,91,104,94,101,92,98,109,100,102,105,104,105,93,78,86,118,94,117,103,102,106,112,103,102,100,97,106,99,99,111,125,104,95,78,102,103,113,95,97,99,99,87,109,121,105,100,99,109,105,108,96,106,113,107,95,102,119,105,95,101,99,114,98,109,98,96,101,107,105,109,111,109,98,105,103,107,101,117,102,100,106,114,92,109,91,91,107,88,113,111,114,88,98,102,109,92,100,109,117,95,94,109,100,106,106,104,110,94,98,103,107,107,112,97,100,100,104,94,104,105,123,103,104,100,108,116,106,107,104,99,95,105,108,106,106,102,119,105,103,111,107,110,88,100,102,100,104,104,107,105,88,90,117,102,101,106,107,95,99,105,97,105,95,99,100,100,105,95,131,106,112,105,103,98,105,96,104,104,103,106,90,120,105,109,101,115,91,102,111,94,99,110,116,100,105,99,106,96,107,99,109,103,101,111,96,109,95,116,98,106,113,96,106,82,128,109,110,102,109,109,96,98,95,102,105,101,114,92,105,98,106,91,95,88,84,106,107,97,102,103,102,99,101,111,97,105,96,104,96,98,99,106,106,106,104,95,107,102,93,106,99,103,96,97,101,96,99,105,100,105,98,104,103,94,109,108,96,93,100,109,110,82,96,78,106,99,107,114,98,87,106,95,87,97,101,99,94,103,88,98,116,99,98,99,120,98,103,108,90,101,87,97,109,92,101,114,98,109,97,99,98,110,113,105,101,95,70,95,102,97,106,97,105,99,106,102,108,114,105,91,103,93,107,94,78,101,91,75,99,108,102,102,95,98,102,101,100,104,100,103,108,103,102,100,100,124,103,110,94,103,93,94,107,99,102,101,100,102,99,124,97,104,102,113,96,108,107,95,101,92,94,106,91,97,95,119,126,93,106,109,95,97,81,95,111,100,79,93,87,90,133,87,107,88,97,92,103,104,99,102,99,104,103,92,105,102,110,99,85,98,101,104,101,95,93,103,91,99,98,83,101,100,92,115,97,100,96,102,107,100,102,107,102, +441.16904,105,110,104,99,101,88,95,93,88,117,90,110,108,98,116,100,109,99,99,91,108,100,91,106,107,106,121,99,108,98,99,85,102,91,109,105,111,100,104,104,118,107,92,105,109,110,99,100,100,92,84,94,108,99,95,111,98,95,99,92,98,108,100,91,104,108,79,111,89,103,109,109,101,103,87,105,93,95,110,101,114,98,96,106,117,104,107,102,101,99,113,104,94,103,92,99,103,107,101,112,110,116,100,93,102,113,100,101,111,93,98,111,97,96,108,110,107,112,113,86,105,104,105,82,105,111,98,79,99,97,98,98,93,98,102,104,104,95,102,101,102,105,93,106,105,100,103,100,96,93,105,87,100,91,99,110,103,101,116,96,98,108,117,110,105,101,102,107,113,92,109,96,109,89,106,92,109,103,120,102,112,100,94,102,116,105,94,95,101,96,100,96,88,103,95,115,105,112,95,108,99,99,101,105,103,104,89,100,94,107,99,118,101,117,99,99,91,100,105,95,109,119,102,103,101,118,109,119,115,96,93,110,71,104,105,103,102,91,89,91,98,99,108,109,96,110,108,98,106,104,98,113,104,106,84,110,102,96,103,99,109,103,106,110,74,106,96,112,106,97,115,108,113,103,101,98,106,105,101,112,99,108,100,113,111,107,103,100,109,110,105,111,98,111,103,110,111,88,101,104,105,100,108,99,102,108,112,102,92,105,91,102,94,100,101,108,101,104,117,104,94,90,110,85,111,100,100,101,110,106,102,85,105,100,104,104,111,99,105,102,99,95,114,104,103,116,105,102,92,101,96,119,104,104,114,86,105,105,108,108,108,114,106,92,94,103,103,106,107,98,122,105,94,108,100,102,106,102,106,94,105,95,80,104,113,97,95,100,109,96,109,98,98,102,102,98,103,102,100,101,99,106,94,105,114,99,106,105,96,102,87,109,104,109,105,99,99,103,110,89,109,109,113,107,100,104,100,91,82,95,99,141,105,105,95,108,111,116,91,97,112,101,109,104,103,102,106,95,116,113,110,104,107,110,109,110,98,94,99,99,112,111,102,98,102,109,98,99,105,103,101,100,96,94,108,103,100,100,99,92,98,104,118,107,116,107,111,102,98,96,108,91,103,90,102,99,106,100,107,104,106,98,105,91,109,117,105,102,115,109,110,110,112,104,102,113,108,106,104,91,107,98,103,107,100,93,106,106,106,89,98,103,105,98,105,105,102,109,94,113,106,109,104,97,104,96,113,105,112,121,101,105,104,94,104,107,109,107,106,102,101,117,105,101,106,101,115,100,103,102,90,92,94,102,103,105,120,99,108,106,110,101,101,105,95,99,117,109,100,105,112,110,104,95,107,100,92,108,106,114,104,101,100,103,105,115,95,112,99,116,87,99,105,96,110,120,104,95,97,100,99,91,111,107,104,103,102,103,101,103,109,92,103,107,99,98,110,93,109,103,111,110,96,93,104,92,102,99,104,102,96,96,105,111,106,110,95,110,109,101,103,90,104,107,98,95,111,98,87,105,109,99,104,104,105,102,106,97,105,91,108,108,105,93,90,116,100,113,103,105,109,106,107,107,104,90,77,115,101,94,102,106,100,101,109,93,65,103,96,87,105,80,100,102,102,105,106,103,109,109,90,95,101,113,106,95,100,108,110,106,124,108,102,108,94,106,105,100,94,119,112,98,95,99,110,88,104,105,100,116,111,102,106,109,107,95,109,114,102,110,98,106,105,103,92,106,109,102,95,97,109,110,99,104,98,100,99,98,89,102,102,112,120,83,110,107,109,104,111,105,102,104,103,104,95,114,105,95,104,100,123,99,98,98,107,114,87,107,105,108,109,97,101,103,108,103,112,108,115,98,106,102,107,103,102,108,94,102,114,111,120,111,97,102,108,99,119,98,109,105,94,102,108,108,96,90,104,104,100,107,101,101,103,100,111,105,99,99,101,101,105,87,105,103,109,107,92,107,110,105,110,103,99,95,113,114,103,101,98,99,109,95,99,97,106,94,99,110,105,96,97,105,99,117,101,104,100,109,97,101,118,98,112,102,99,95,109,118,98,97,100,100,108,108,99,101,100,110,96,85,104,107,96,113,106,107,98,99,111,107,111,109,115,103,106,109,83,107,103,116,101,99,100,106,94,106,97,102,102,99,105,106,106,102,99,101,107,104,101,102,96,109,101,105,99,107,113,113,98,113,88,107,91,88,105,105,97,101,93,111,93,111,108,90,109,97,102,106,104,101,93,71,99,98,106,101,94,112,97,109,101,103,106,107,108,103,105,99,104,97,100,96,99,104,101,99,104,98,89,98,101,95,109,95,114,99,101,104,114,113,110,91,80,104,108,105,113,98,105,111,91,94,95,111,102,100,114,115,111,114,105,112,104,113,80,96,94,100,100,100,79,102,105,117,98,101,112,103,98,99,98,121,106,112,94,104,96,107,97,107,110,101,97,110,105,110,99,107,107,105,111,107,108,115,113,112,115,107,105,93,109,112,109,107,113,101,115,91,89,120,113,103,112,94,100,103,102,106,86,101,109,90,114,106,107,83,113,117,108,100,105,128,106,91,103,105,97,104,109,99,100,94,100,99,102,110,107,119,102,95,105,103,106,108,104,102,139,94,100,110,113,104,113,99,97,91,96,102,105,107,100,96,111,105,101,106,106,121,104,89,106,101,105,99,110,102,116,107,95,110,108,108,107,106,100,109,115,117,102,104,102,106,99,100,113,107,105,104,100,112,114,98,103,105,95,103,103,110,91,103,117,109,109,78,116,93,102,104,104,101,98,105,102,111,104,102,115,100,109,109,116,99,118,116,103,101,107,100,120,114,100,96,113,107,102,75,99,113,104,104,96,110,91,121,103,101,92,105,112,104,113,103,102,109,97,102,115,113,108,99,101,99,103,107,103,99,107,95,113,91,99,105,104,100,82,104,99,98,120,112,103,98,113,100,94,91,111,111,95,107,99,96,104,101,112,102,113,104,105,108,106,107,111,103,121,107,114,104,94,105,119,96,103,102,117,102,105,108,104,106,103,111,109,109,113,98,109,99,99,110,103,110,107,103,90,112,115,104,104,93,92,112,92,96,112,112,102,101,98,98,97,103,106,114,113,108,104,115,100,90,102,91,97,114,93,106,105,92,118,112,98,96,107,102,99,109,100,117,123,99,106,102,86,112,98,103,107,111,104,109,103,108,96,83,113,82,101,109,98,112,102,116,125,94,102,91,83,97,109,103,104,108,107,116,103,98,101,107,102,93,96,111,99,99,104,101,102,102,94,98,111,97,102,107,100,104,106,91,102,94,117,109,102,110,113,113,106,99,103,105,102,114,89,100,104,96,111,109,131,104,92,112,113,120,104,103,94,88,107,100,95,93,89,103,102,106,115,100,104,94,95,110,98,97,98,91,113,101,110,106,105,101,111,94,92,116,115,106,109,109,105,96,101,102,107,108,98,110,94,98,104,107,109,105,101,103,108,97,110,110,110,103,97,109,116,104,108,108,102,95,101,107,95,108,96,90,95,92,104,102,87,106,107,109,109,111,100,104,104,116,107,105,106,118,107,104,100,112,116,112,91,104,105,106,107,98,96,108,100,113,92,103,107,109,106,96,108,96,108,106,103,87,128,95,101,102,102,94,102,115,98,109,101,115,104,98,97,89,91,100,102,100,102,91,105,104,103,109,108,103,120,104,105,96,105,98,124,112,108,107,100,99,95,125,114,112,100,106,100,105,120,120,101,99,112,111,99,94,116,89,103,105,100,103,94,112,100,106,105,108,87,107,102,103,92,115,117,87,100,92,120,90,108,101,108,101,121,103,96,106,115,109,108,106,103,92,98,104,104,114,105,101,94,102,120,90,91,111,102,108,110,90,103,115,105,107,100,116,111,106,105,94,104,98,94,95,95,103,108,106,102,101,104,104,106,101,79,102,97,109,102,98,98,84,107,107,100,110,104,103,101,101,106,110,99,98,106,103,98,112,107,100,99,105,105,100,98,93,97,104,119,101,109,103,108,108,104,121,106,110,92,102,110,105,108,103,109,103,95,97,108,104,120,125,106,105,100,100,104,79,112,112,108,112,110,80,105,97,96,103,106,103,116,83,106,102,108,101,103,108,103,100,106,103,100,102,106,113,90,106,113,106,101,104,107,93,97,100,120,103,101,105,113,114,104,108,94,117,106,96,112,102,101,108,95,92,102,106,103,95,101,97,108,109,86,103,105,106,100,98,95,93,115,110,110,103,112,103,107,105,105,91,106,106,98,98,106,97,100,121,85,95,104,98,100,109,100,106,109,95,97,104,105,110,112,93,100,103,104,101,100,108,102,128,100,105,120,101,98,105,103,93,116,101,91,99,99,94,88,101,101,112,104,97,103,106,104,107,104,102,101,93,107,105,91,105,90,99,105,101,112,98,97,97,96,103,92,94,99,90,97,111,105,102,93,97,116,114,106,106,111,102,112,99,104,101,108,105,117,104,106,97,106,107,95,90,107,112,95,99,100,96,93,108,93,100,103,109,104,106,103,102,118,112,117,98,102,75,121,101,93,113,116,104,94,106,111,113,102,112,94,95,99,102,96,87,103,113,101,100,95,106,106,107,92,95,111,95,109,95,107,98,109,113,110,109,103,112,107,98,113,98,104,96,105,120,101,103,86,100,94,100,99,94,110,99,109,102,102,100,105,104,102,84,103,92,112,111,128,103,102,107,91,100,101,87,96,102,118,104,113,98,100,106,103,112,110,117,109,104,86,103,117,98,104,101,103,101,103,101,110,94,98,93,103,95,106,104,91,97,104,90,99,87,112,103,103,109,97,117,100,97,110,102,83,107,103,97,98,109,93,79,101,110,105,104,97,93,109,108,111,99,99,92,113,114,98,98,98,96, +441.30939,117,88,110,87,100,102,101,114,92,101,96,105,101,94,83,113,98,99,102,108,105,86,91,105,98,102,100,103,102,116,100,107,108,93,118,77,110,100,105,93,110,90,114,100,99,103,96,107,100,95,91,97,96,98,106,95,102,109,110,99,88,101,114,105,105,104,97,108,114,103,95,111,98,110,118,110,100,101,105,102,99,100,96,97,105,91,90,103,102,97,103,96,117,82,96,113,92,88,101,96,94,94,93,80,100,101,102,112,85,87,108,100,97,97,117,111,100,97,102,105,105,98,111,105,101,109,110,106,112,107,101,106,116,104,110,89,101,107,99,99,101,97,94,110,101,91,106,109,101,89,96,107,101,87,96,107,112,132,116,102,117,93,109,89,114,106,96,95,110,108,95,110,92,92,101,104,107,94,95,101,90,95,99,102,98,98,101,99,105,99,103,100,95,118,90,103,98,105,96,101,90,103,100,103,94,100,105,100,106,106,93,96,110,104,101,103,93,101,107,97,110,78,96,106,96,93,110,102,101,105,96,104,113,95,108,108,100,94,92,105,101,106,94,94,92,117,102,106,103,89,94,76,108,99,91,99,104,120,99,94,97,103,95,121,100,104,109,109,103,106,101,99,93,93,115,88,99,101,99,91,93,102,72,99,98,86,101,98,99,114,92,93,120,107,104,103,110,103,114,106,107,107,106,104,106,114,99,102,100,108,94,102,105,106,94,86,102,94,93,105,98,104,104,100,110,101,99,96,99,104,100,105,93,102,109,104,105,118,99,97,106,106,108,96,100,105,92,110,107,105,100,98,105,100,101,105,97,117,103,114,90,92,95,102,106,99,95,99,103,103,103,104,104,104,107,97,103,105,109,110,98,107,106,98,101,105,102,94,97,101,111,93,109,73,111,90,103,110,103,102,104,108,105,110,102,99,95,103,101,99,98,94,111,114,105,107,102,104,96,100,106,104,100,90,99,99,110,100,103,109,95,95,89,87,101,93,98,92,88,110,101,90,104,106,97,98,105,90,104,102,93,98,92,112,102,105,99,99,100,94,99,100,114,106,103,91,103,102,101,96,104,102,105,96,96,93,100,110,100,109,98,95,109,101,109,104,111,107,105,100,101,98,83,97,97,107,100,104,113,95,97,105,96,107,97,117,87,106,108,99,110,106,104,98,104,90,109,94,97,87,105,97,123,100,108,97,104,100,107,99,95,111,103,91,96,94,98,90,102,97,103,102,99,105,115,95,116,99,92,105,99,99,109,97,98,110,104,114,102,104,98,108,93,109,96,121,113,114,95,96,97,105,103,93,100,106,109,105,102,103,104,108,105,109,94,109,99,105,104,103,106,104,97,114,109,130,104,102,94,111,99,104,96,103,100,107,95,101,106,101,104,94,105,98,93,96,102,107,102,102,96,105,105,101,101,108,96,114,104,97,109,100,82,112,105,96,99,96,109,99,115,101,97,101,101,98,102,92,109,98,96,113,105,105,104,92,101,94,102,114,110,105,106,113,102,94,100,103,102,96,95,113,95,106,99,106,120,100,118,88,103,110,105,91,106,93,105,100,102,100,103,103,98,113,99,125,99,111,109,114,103,100,87,103,113,101,99,101,89,99,114,97,103,105,108,99,104,93,92,110,105,101,98,91,99,101,103,81,105,99,74,99,101,103,106,109,107,108,104,100,95,98,98,102,94,99,95,91,102,87,103,103,105,100,94,110,95,113,113,98,101,106,101,102,97,112,90,95,95,106,107,93,102,104,116,104,96,91,91,99,112,101,100,108,97,99,100,115,105,101,99,110,113,107,104,101,119,105,105,95,105,103,97,92,110,95,98,96,93,98,105,84,96,100,106,102,99,101,98,114,91,103,97,104,102,105,103,92,107,95,103,93,109,99,90,107,99,97,109,100,84,94,116,87,98,92,95,91,96,101,100,105,110,98,102,97,103,104,109,113,113,108,94,98,88,98,95,104,98,112,99,106,104,98,107,81,103,108,92,95,100,111,104,95,113,103,99,112,99,101,99,108,106,96,83,90,116,100,102,109,107,98,93,101,104,95,105,106,103,96,105,98,118,106,93,95,101,90,106,100,97,102,110,105,122,105,95,104,99,104,104,102,112,106,90,103,98,100,112,110,101,100,105,109,88,106,103,92,94,118,99,99,106,98,117,100,106,98,110,96,113,108,104,91,103,100,116,98,89,105,88,98,104,113,99,99,97,102,102,104,90,104,90,106,101,85,95,101,114,104,106,105,104,108,94,92,104,100,107,106,100,105,102,103,104,101,92,105,105,90,112,109,108,99,100,97,98,105,109,104,101,102,112,99,85,111,79,70,108,104,93,106,103,103,87,98,100,88,85,104,104,95,108,112,99,104,118,94,105,104,90,94,92,103,92,105,90,87,104,116,99,113,91,95,66,95,107,99,106,95,98,105,98,100,88,90,94,99,86,99,109,92,103,109,109,108,111,110,102,102,113,104,105,113,109,112,106,100,116,101,110,100,127,102,104,106,97,121,109,111,105,105,89,118,115,92,91,111,90,100,113,99,113,99,100,108,112,108,103,84,105,115,110,98,100,101,97,102,75,101,105,112,93,111,104,99,109,111,96,109,101,102,104,108,92,105,111,91,102,102,107,112,126,102,109,94,101,99,99,98,105,111,103,90,110,88,107,95,112,94,98,121,92,95,106,103,110,107,96,98,109,110,96,91,98,114,98,83,100,108,96,105,99,98,106,105,98,94,105,101,106,98,110,109,113,99,109,106,98,106,98,103,107,99,114,100,99,97,104,103,93,99,88,100,114,107,107,120,107,99,109,102,109,95,114,110,98,101,113,103,101,105,107,102,98,110,100,101,99,106,104,106,99,77,101,99,103,108,105,116,102,104,112,110,105,100,94,107,109,108,97,112,115,96,113,104,99,100,109,101,106,99,101,98,101,107,92,104,98,100,115,105,113,120,103,106,104,112,97,100,103,101,109,98,102,112,109,106,108,97,96,101,100,116,106,98,120,99,110,105,95,96,100,108,78,106,115,106,105,100,100,115,109,99,108,95,105,101,99,101,101,98,106,103,100,100,101,106,100,97,101,124,98,97,109,103,112,103,102,99,104,128,111,88,113,111,106,102,113,102,103,81,96,117,99,102,106,113,109,105,105,92,95,102,101,108,110,105,103,99,106,78,95,117,109,105,75,101,99,102,102,98,112,106,104,110,98,102,110,105,110,106,105,112,98,107,110,105,97,108,103,106,102,103,110,105,104,98,110,105,96,110,94,96,99,115,106,102,103,113,103,103,103,112,104,99,107,102,94,95,111,99,99,89,99,102,95,102,106,102,94,105,103,98,92,103,101,103,107,107,105,112,108,98,97,99,104,101,103,98,98,113,103,105,106,95,115,104,113,109,95,110,103,90,111,109,105,102,101,98,106,102,109,97,66,107,111,109,108,114,93,94,112,92,104,102,110,117,104,94,107,100,98,101,98,109,112,96,109,109,112,88,121,116,101,105,103,102,106,96,104,97,101,107,102,118,109,110,118,104,106,105,107,102,102,74,96,101,103,105,108,105,109,100,102,106,101,91,110,99,96,94,103,110,113,99,104,103,107,110,95,117,99,97,101,100,103,94,86,91,100,110,79,104,107,109,114,100,116,99,99,102,88,107,99,102,87,108,103,104,101,117,104,109,103,91,107,98,103,109,105,116,108,102,104,110,106,101,93,99,102,110,92,91,101,107,93,104,103,103,104,139,98,85,114,106,102,91,113,94,104,89,109,109,105,117,95,90,95,91,109,111,111,97,116,112,108,101,109,81,104,99,112,94,101,109,105,96,101,106,104,95,106,82,105,101,98,109,103,94,102,98,121,98,105,91,97,100,100,104,98,91,88,97,103,98,105,90,89,105,107,90,103,100,100,139,111,103,97,100,100,103,105,105,96,98,100,102,109,101,83,108,96,111,97,105,108,108,99,99,106,91,109,118,104,110,103,106,99,104,108,105,106,111,114,99,98,99,99,102,108,100,95,99,112,88,119,87,104,108,111,94,87,100,116,110,103,103,117,104,100,96,113,99,106,108,109,109,105,106,95,96,114,101,97,99,92,105,101,111,109,88,102,113,110,118,112,100,100,103,89,106,96,92,100,117,102,116,120,108,93,112,95,89,105,108,97,113,106,110,104,99,110,87,113,105,93,116,104,80,108,109,110,112,97,96,112,112,118,99,109,102,81,106,83,99,104,77,104,105,95,101,103,93,106,104,98,103,104,95,105,104,106,85,105,106,102,100,98,109,96,94,106,110,110,106,118,100,83,109,100,109,97,103,110,104,104,100,98,104,105,98,106,106,112,100,105,92,114,95,105,103,99,100,100,101,105,107,101,106,95,102,105,92,110,112,107,101,106,82,100,77,105,104,88,104,103,88,95,98,107,106,102,112,98,105,95,108,109,102,106,110,107,109,99,108,108,96,103,101,101,110,107,109,89,107,87,110,112,87,105,105,101,112,103,108,101,102,107,113,86,96,105,99,104,102,89,104,103,99,95,94,102,96,95,99,95,85,103,99,100,102,114,102,98,107,104,106,105,111,106,92,94,108,104,105,109,100,96,91,101,121,97,96,108,107,98,102,99,76,115,105,98,95,116,86,108,94,98,88,92,107,93,98,101,102,98,111,96,99,101,96,91,101,103,97,108,110,93,100,91,99,114,94,109,107,106,109,102,99,92,121,103,105,96,107,99,112,99,107,100,98,97,106,103,106,105,97,101,93,93,96,97,112,102,106,95,105,120,106,100,101,109,121,96,103,81,109,104,87,101,88,98,103,90,106,89,108,94,107,111,103,94,88,91,100,79,99,113,89,86,99,101,91,98,105,104,106,94,91,113,103,97,107,91,98,106,107,97,88, +441.44974,86,97,91,101,98,110,107,98,101,109,101,101,99,99,101,100,102,110,101,101,100,119,97,100,96,107,97,101,91,105,89,110,106,94,106,97,100,95,104,100,97,110,103,88,113,95,123,91,91,103,108,96,102,98,88,95,68,101,113,97,109,101,100,90,109,103,107,108,102,89,111,94,112,95,94,108,83,93,104,97,100,74,108,98,108,87,106,105,116,100,92,113,102,89,116,118,100,90,107,96,101,106,104,101,104,110,81,102,95,103,89,101,111,99,98,94,89,112,102,87,98,112,100,107,101,97,103,77,105,107,91,134,113,104,100,117,104,101,98,104,98,98,94,110,104,99,104,92,108,105,111,93,108,101,105,106,103,101,101,105,100,111,105,103,103,99,88,104,116,103,103,100,93,103,110,106,99,104,102,96,105,112,106,104,76,106,99,88,95,97,95,99,102,104,101,96,94,98,98,109,100,100,101,105,99,91,107,109,113,104,95,99,106,95,105,95,91,108,97,101,110,110,111,87,96,103,92,107,103,120,92,107,108,109,108,99,104,112,102,72,105,99,100,104,101,101,114,103,101,99,97,99,101,100,91,104,106,92,99,108,98,105,118,107,92,106,111,105,106,90,109,101,103,101,108,101,97,100,102,92,93,100,105,101,92,112,90,90,97,93,114,101,105,92,105,97,101,97,80,104,103,103,101,106,95,110,100,101,96,104,98,108,101,114,106,92,94,101,103,98,95,96,110,105,108,108,96,94,103,98,103,104,105,108,96,101,97,100,87,90,109,96,103,98,98,105,106,98,100,101,109,94,100,101,106,91,106,115,107,95,105,103,91,100,100,94,107,117,101,94,95,95,105,98,102,102,103,103,101,98,103,98,108,93,95,93,98,107,97,83,109,94,97,105,100,96,100,107,97,110,88,98,95,93,104,98,98,96,107,82,93,109,108,102,116,97,101,101,99,91,112,103,106,106,106,106,98,106,101,96,104,106,100,97,97,100,108,98,104,106,114,92,103,109,103,103,93,100,111,114,98,110,112,111,99,99,95,93,97,104,101,100,104,100,101,102,99,101,94,107,97,106,108,97,90,95,102,104,92,88,93,99,108,108,108,94,91,114,95,101,98,98,107,109,97,102,90,96,93,101,98,85,103,109,86,108,98,97,95,96,102,114,96,101,107,107,103,93,91,81,102,105,98,104,107,95,105,94,95,96,103,112,104,104,95,90,94,103,106,100,100,104,95,101,115,110,98,105,102,109,98,101,103,86,102,96,102,104,95,90,103,107,101,101,98,81,101,104,105,107,95,91,110,105,113,100,98,101,91,84,100,101,116,97,91,87,111,101,118,109,113,107,99,110,110,108,99,103,109,103,97,106,89,77,91,109,108,93,102,109,102,105,106,101,104,103,109,103,101,101,94,91,98,90,103,98,94,103,82,108,122,108,102,100,99,103,103,93,88,86,99,121,107,105,90,81,104,105,104,109,98,102,109,104,95,106,110,97,97,98,103,104,100,97,98,101,109,113,113,101,94,108,105,97,103,105,102,97,99,103,109,101,107,101,92,101,109,109,107,96,102,88,103,87,110,102,100,101,103,97,108,94,95,83,105,93,111,92,100,93,105,98,102,84,96,108,81,106,112,107,99,93,101,105,107,102,94,101,124,111,114,92,98,105,95,101,94,92,117,136,114,99,101,101,109,113,111,103,110,110,111,97,99,101,99,100,88,94,99,106,93,102,100,103,88,103,83,115,106,101,105,114,105,102,99,96,105,113,110,100,102,99,109,112,93,102,107,108,94,94,104,120,101,129,90,109,108,109,93,111,99,83,97,98,107,106,104,105,103,98,103,107,94,100,73,104,106,102,110,100,105,95,98,104,91,117,102,100,83,102,105,105,114,95,106,109,107,108,110,111,112,102,98,94,99,109,97,100,109,101,112,100,100,103,108,115,96,112,95,104,105,96,108,114,104,104,102,106,99,121,99,107,106,98,92,103,114,97,96,92,97,102,111,108,98,95,100,107,102,98,113,114,108,110,105,89,103,100,99,96,107,94,126,94,113,95,95,113,79,101,103,109,99,97,99,91,111,105,100,96,107,98,96,101,109,96,109,101,107,110,101,98,100,97,98,100,67,104,103,96,105,96,108,98,102,100,104,100,94,105,112,103,116,104,102,113,100,100,100,104,101,108,102,89,101,97,80,112,91,110,109,120,117,100,97,106,112,92,99,87,92,91,108,109,96,105,108,105,92,92,106,100,113,99,98,95,97,103,100,100,115,112,99,68,104,95,105,108,97,102,89,118,102,105,104,97,100,98,89,101,106,99,112,102,101,106,104,114,103,103,98,103,106,94,102,94,107,113,90,91,105,110,101,112,114,96,97,107,111,107,100,104,91,111,105,94,96,95,105,109,93,105,88,102,109,106,88,95,91,96,108,110,97,108,101,103,101,102,96,101,88,97,90,105,100,103,82,103,109,102,96,100,99,92,91,103,100,103,106,103,106,99,104,116,85,104,100,96,96,101,96,104,96,100,98,108,98,94,98,105,115,103,100,101,101,103,92,108,115,103,122,110,109,101,109,103,101,111,101,104,96,116,91,111,104,100,97,101,101,101,102,106,106,85,101,101,87,100,98,104,109,98,109,106,101,106,110,105,105,99,107,100,117,98,94,102,100,105,99,112,101,103,103,102,100,116,117,109,100,96,100,105,109,102,94,104,102,83,94,103,104,103,100,99,107,99,105,105,108,101,116,92,100,103,118,100,95,103,97,96,104,95,102,111,102,95,100,103,105,98,109,105,97,102,95,117,97,90,103,102,104,102,102,93,91,115,99,104,102,117,97,99,104,107,123,99,109,95,103,108,97,94,92,99,89,111,96,95,98,97,101,102,104,101,87,101,97,100,107,101,103,103,110,108,99,103,97,108,99,104,104,107,99,92,109,106,104,101,111,101,86,92,97,99,98,92,103,113,105,95,107,106,69,102,106,96,101,98,93,101,99,112,114,102,105,116,114,109,96,98,108,101,92,104,98,105,87,96,113,107,103,104,105,100,106,95,106,100,111,100,102,112,104,96,107,102,95,104,93,100,97,114,120,99,95,106,93,92,104,105,95,95,113,105,110,103,101,96,67,95,82,102,97,100,104,106,100,88,105,101,94,90,107,99,102,99,87,87,104,94,107,97,96,106,95,107,105,104,110,106,107,95,98,107,98,103,92,101,117,89,97,105,87,117,101,93,108,98,112,73,104,105,110,92,100,89,106,98,113,103,109,96,105,97,117,94,105,94,105,110,107,88,99,115,99,103,102,101,108,97,88,109,103,98,97,91,99,100,98,86,105,104,100,93,102,115,99,103,99,101,83,108,105,100,102,102,91,99,104,107,87,102,101,105,108,111,89,107,96,82,98,98,105,106,101,105,98,95,95,97,105,99,103,112,92,107,101,108,106,87,96,100,98,100,93,96,103,102,86,93,100,103,109,101,103,99,103,98,106,104,102,100,105,77,112,106,102,105,106,101,103,104,92,100,101,113,104,94,103,108,96,101,103,109,104,107,102,97,102,108,101,91,98,111,97,88,86,96,98,102,97,109,97,99,108,105,96,110,107,86,92,102,108,94,103,94,103,112,104,100,95,92,88,83,101,99,96,97,109,82,94,93,107,92,98,107,100,99,109,101,110,103,105,101,98,99,106,101,98,97,104,94,92,108,98,104,104,99,94,86,109,98,101,109,97,100,98,103,104,101,103,93,99,96,102,92,113,110,104,102,110,95,97,106,123,94,96,125,117,98,95,117,99,108,103,91,103,104,101,99,117,103,105,90,103,95,99,88,91,103,98,106,98,93,92,91,98,91,103,101,95,107,102,102,95,115,105,101,103,99,105,95,96,104,96,104,108,98,100,104,101,101,96,101,105,87,112,96,93,101,102,106,87,94,102,89,95,104,105,104,90,104,108,101,94,110,103,104,100,97,105,94,98,102,105,103,105,96,102,83,97,103,96,104,102,111,98,94,105,98,86,102,100,102,96,102,108,93,100,106,104,103,97,101,109,103,111,96,111,93,99,95,100,97,95,109,105,103,94,102,105,105,101,95,102,110,92,103,97,95,108,94,104,78,121,113,96,112,99,111,104,108,102,97,95,99,91,98,99,99,104,87,74,101,101,104,96,109,94,94,106,105,92,106,104,106,95,99,94,111,106,109,99,99,94,110,107,114,101,99,101,98,95,91,91,98,102,112,102,104,100,98,105,104,109,97,95,94,115,99,89,77,108,98,93,98,105,105,105,93,100,106,99,107,98,109,103,105,100,108,113,105,106,105,104,98,105,107,102,100,105,100,123,100,90,114,104,106,111,94,89,95,105,100,100,102,102,97,108,106,101,107,113,94,92,95,99,95,99,113,94,91,97,97,102,102,84,109,105,104,100,105,106,111,100,107,105,102,100,98,100,105,95,103,107,96,100,109,98,108,99,86,104,108,104,116,109,104,99,103,90,93,102,100,95,106,108,100,105,91,99,101,75,92,104,116,95,99,84,99,107,104,97,94,97,111,95,91,86,106,91,132,102,93,106,100,112,105,101,120,97,110,100,101,96,85,109,93,99,107,101,103,93,95,121,115,90,108,113,91,115,100,106,83,91,99,99,96,116,91,91,108,112,105,87,98,108,105,103,103,93,96,105,97,100,91,102,97,91,104,100,103,104,110,101,106,109,116,98,101,95,104,96,101,102,96,113,100,107,107,101,91,82,114,101,114,86,108,87,95,106,84,95,99,102,98,103,87,101,108,119,112,107,107,94,101,97,92,78,108,95,97,96,101,110,104,110,97,135,108,113,104,105,111,111,101,98,89,103,94,114,86,79,100,94,98,100,95,103,125,114,99,99,109,108,125,98,97,109,97, +441.59009,104,94,102,109,99,106,108,98,106,104,102,112,99,117,104,96,98,91,101,122,109,91,101,105,94,99,94,112,91,102,110,111,99,109,118,115,94,106,101,88,109,103,107,99,109,105,102,105,86,104,108,100,101,114,95,97,118,109,93,101,98,100,94,116,104,106,92,101,105,97,108,108,110,105,98,95,109,95,96,101,103,113,93,124,96,89,94,96,110,105,104,98,101,99,103,108,101,107,96,101,91,106,104,97,101,96,95,99,109,101,106,102,100,92,96,104,102,96,94,112,100,95,97,96,97,99,106,115,118,112,92,110,90,105,101,96,108,105,92,96,101,107,106,110,88,108,102,105,96,95,98,97,112,92,106,103,98,106,103,95,104,100,95,123,113,113,97,104,87,107,108,118,89,122,112,110,97,86,103,104,91,100,100,102,106,94,104,92,103,94,92,86,95,94,105,99,82,105,113,100,106,108,70,104,99,90,99,110,105,106,96,106,99,102,87,96,100,100,88,95,102,102,102,99,105,107,106,103,100,105,109,107,81,96,93,106,103,98,111,101,100,103,101,106,98,101,110,101,104,104,103,106,70,100,100,96,99,91,104,98,92,101,99,103,105,93,104,105,99,95,104,100,99,96,116,102,100,116,103,91,96,122,98,93,94,102,92,106,112,101,110,104,101,96,106,104,101,105,106,94,92,104,101,103,99,106,111,107,105,99,94,106,119,102,106,86,102,101,92,96,101,95,103,95,106,96,108,103,101,103,99,109,107,98,108,94,108,99,97,101,103,103,102,99,89,96,99,102,113,104,110,102,108,94,108,100,97,97,109,95,95,102,96,94,102,104,109,101,102,103,109,90,106,105,104,104,105,108,100,102,99,91,102,101,99,88,106,107,111,100,108,100,107,100,113,101,99,101,100,102,103,97,96,91,106,100,104,111,107,104,101,93,104,94,104,100,115,102,74,98,110,102,105,106,107,111,99,91,95,112,99,103,108,100,103,109,86,113,105,101,109,106,110,105,100,110,104,102,94,114,104,102,109,98,105,119,104,104,106,106,101,103,106,110,112,108,108,101,97,106,114,109,104,110,101,95,109,114,95,99,95,97,105,104,109,103,112,111,100,99,121,106,112,99,104,103,99,101,96,109,97,92,106,112,100,103,91,97,110,99,106,102,101,105,106,99,108,99,104,100,104,100,104,105,106,111,94,86,104,103,104,96,100,92,94,82,109,91,102,105,88,74,100,91,105,112,101,101,99,107,99,109,104,105,102,90,91,98,99,109,107,106,104,103,103,101,104,102,101,114,103,99,108,95,106,110,105,99,114,100,101,106,105,103,95,100,109,99,99,104,107,110,107,102,109,105,110,107,91,104,120,121,110,105,103,104,73,104,114,103,105,93,104,123,97,102,115,113,107,105,107,99,104,109,105,105,89,113,99,97,109,109,102,113,104,98,116,94,96,96,113,108,100,100,113,95,90,102,116,105,87,85,103,108,106,99,100,107,109,106,101,95,102,108,94,113,106,100,103,94,96,109,113,97,105,115,95,102,107,106,105,105,88,104,107,103,98,111,105,121,95,104,103,108,108,109,100,101,99,105,105,117,105,105,108,107,117,100,104,108,99,100,99,97,109,100,102,104,125,107,97,105,103,105,100,93,104,93,101,100,98,91,101,100,117,96,108,105,110,110,103,95,117,111,111,97,100,104,110,103,113,88,96,94,107,98,112,116,108,102,116,90,92,81,97,106,87,101,99,95,109,99,102,101,113,105,111,95,99,107,101,108,114,107,96,100,95,103,97,100,99,102,107,104,105,95,96,92,103,108,100,85,103,109,109,100,106,98,104,102,108,91,101,103,119,106,112,116,102,110,108,92,113,105,105,104,104,115,97,103,113,100,109,108,98,120,104,108,109,102,118,98,97,95,115,114,105,95,98,95,101,97,110,115,110,99,106,106,108,105,100,103,75,94,81,90,99,115,97,98,101,97,99,102,99,103,107,110,101,100,110,108,87,112,100,116,107,114,99,112,112,105,106,99,99,95,113,105,117,84,105,94,100,97,86,108,99,109,103,98,108,107,95,101,92,100,100,103,98,109,96,102,98,103,114,105,101,98,96,103,99,102,95,109,110,87,95,101,95,102,104,103,99,100,99,98,111,105,102,99,111,104,109,106,100,102,106,106,106,117,111,107,93,100,104,98,94,109,100,108,106,98,111,104,101,112,100,98,109,98,103,106,119,97,105,100,107,99,106,103,106,97,102,94,106,102,106,107,105,102,110,107,99,116,111,107,110,105,100,106,110,104,95,108,99,99,98,105,105,98,93,95,109,95,104,99,95,110,102,102,112,109,107,103,104,98,114,106,89,110,101,100,102,105,99,97,99,101,116,102,98,106,106,105,98,101,106,108,86,102,108,103,99,99,93,104,105,112,101,112,102,111,89,105,118,106,97,107,98,132,109,95,103,113,77,117,117,96,111,103,95,93,101,117,108,110,106,98,99,104,118,98,106,103,109,90,111,109,101,109,103,103,103,103,128,105,112,109,98,114,109,104,102,101,109,107,99,111,105,104,99,109,107,103,109,95,104,103,102,88,92,103,95,113,99,96,105,105,110,105,100,95,114,107,110,113,113,103,94,115,100,91,104,103,90,110,104,112,111,98,124,100,108,102,76,101,108,103,118,98,98,101,85,112,102,96,107,101,105,105,117,104,116,96,102,112,106,95,103,99,105,97,111,106,109,105,109,98,115,112,103,94,96,109,108,103,108,95,106,88,101,112,104,93,107,101,100,108,102,101,110,108,97,109,107,100,105,112,100,116,105,110,109,118,98,92,113,103,105,111,115,108,105,101,97,111,102,123,105,114,107,102,95,102,108,100,100,115,101,102,109,104,115,107,108,102,104,120,100,99,104,91,116,120,100,111,103,105,104,105,95,104,103,113,104,109,109,103,121,102,116,103,108,96,108,98,95,99,106,106,101,97,97,94,105,111,96,99,100,108,105,108,106,99,107,98,111,101,107,107,95,113,114,107,116,105,106,103,113,117,98,109,105,108,103,103,112,107,104,100,100,106,122,108,99,106,104,98,98,103,99,103,110,108,105,109,106,92,114,92,102,98,108,89,108,110,107,107,101,106,108,87,106,108,95,76,111,93,102,115,97,112,112,113,105,102,110,92,101,119,113,103,103,113,108,113,109,96,112,106,102,106,114,96,110,99,97,110,98,112,107,109,100,110,106,113,106,100,100,102,112,98,110,104,113,109,113,110,107,100,98,103,112,94,112,105,101,99,93,116,112,103,104,107,94,104,113,107,109,100,116,104,111,107,111,107,104,99,102,105,105,108,108,110,116,104,104,100,104,115,104,92,107,105,96,107,105,107,97,101,102,113,96,81,106,104,117,133,79,105,88,95,104,100,102,97,93,99,85,114,96,98,101,107,95,105,108,115,98,106,96,102,110,97,98,105,103,102,102,102,105,103,113,99,102,117,111,113,108,97,100,112,105,112,104,108,105,105,106,94,107,103,100,108,105,100,98,110,95,106,121,100,109,106,110,115,86,104,108,104,111,96,117,110,90,114,97,98,94,103,110,110,105,103,101,124,99,89,104,109,96,102,80,103,107,102,99,110,104,104,98,102,88,109,113,104,100,98,106,100,107,110,98,100,112,95,88,113,104,84,105,102,106,104,104,100,105,101,89,100,107,91,107,103,113,99,103,112,114,116,103,109,94,103,100,112,108,117,97,104,114,103,102,104,104,98,106,102,102,105,113,108,109,108,96,106,107,121,96,99,97,100,98,111,114,106,110,116,100,94,110,100,111,110,111,112,105,98,101,110,109,103,102,105,105,108,103,96,96,105,125,93,105,117,112,107,103,110,98,102,109,103,112,99,113,97,107,106,88,103,104,98,109,94,103,107,113,101,95,106,82,112,108,100,106,110,109,114,105,99,99,102,90,113,95,112,114,108,112,101,113,106,105,111,106,102,101,95,107,103,118,109,109,94,92,92,120,103,101,107,106,109,89,100,103,113,101,91,102,107,109,109,102,98,95,112,107,108,105,110,110,98,105,100,98,104,101,109,88,99,112,109,104,97,111,108,109,104,105,112,108,108,90,109,102,99,103,113,94,123,99,110,113,117,117,105,102,114,103,99,123,102,91,102,104,96,110,117,102,110,103,104,110,95,105,99,111,112,105,105,103,97,99,91,112,82,98,91,111,108,109,95,98,98,114,104,114,101,110,104,104,123,105,100,95,94,105,97,117,111,116,95,117,96,107,106,110,102,109,112,109,98,91,103,102,106,100,102,107,100,95,109,119,97,103,107,106,114,98,114,109,106,107,107,99,97,104,116,103,104,104,112,107,87,110,100,100,116,77,114,115,114,105,101,113,102,97,104,106,105,95,98,100,113,96,103,100,109,107,98,113,103,111,99,106,104,104,103,108,98,98,79,104,93,103,106,106,102,97,104,101,99,101,104,92,113,103,94,95,103,92,108,100,104,108,103,96,106,105,100,109,75,109,115,99,101,96,117,101,105,107,98,101,70,106,101,108,96,96,95,105,103,99,105,114,108,109,109,105,74,95,100,113,99,99,104,105,98,113,91,99,87,108,105,103,117,101,115,103,99,109,105,106,100,103,109,102,110,95,98,101,93,99,95,107,106,109,116,106,103,95,97,104,99,112,100,104,106,103,116,112,103,115,94,108,101,113,101,106,85,106,97,96,96,99,107,119,111,108,100,105,110,104,101,111,101,90,104,107,107,95,110,108,115,103,110,97,88,104,103,99,103,106,98,109,124,94,94,106,99,108,108,101,97,121,105,103,113,105,109,104,109,113,101,80,106,101,99,112,92,101,73,96,107,105,93,99,110,110,103,110,104,104,104,99,80,99,101,107,103, +441.73044,98,107,96,92,93,95,95,111,115,101,95,109,98,88,97,113,103,108,101,99,100,100,91,100,93,109,97,118,96,72,121,101,95,110,107,110,99,111,103,101,103,104,115,82,90,99,98,103,118,95,95,102,96,97,99,106,113,86,101,105,105,109,117,86,104,111,96,120,110,93,94,99,91,109,103,108,100,97,103,103,95,85,95,95,104,88,89,110,97,86,96,98,92,103,123,98,117,89,96,101,92,100,93,95,94,107,113,91,82,92,102,97,109,100,82,97,97,107,95,102,110,101,104,101,94,98,102,87,99,114,106,116,100,104,102,108,89,99,100,104,95,106,98,111,89,96,111,101,113,92,98,93,103,96,114,109,99,103,89,98,102,99,103,100,96,98,101,100,94,99,95,98,104,108,114,97,101,101,110,109,98,118,97,98,107,104,98,102,111,95,106,102,110,101,105,107,91,100,97,100,97,98,103,98,100,101,98,96,107,101,95,105,113,96,105,108,110,82,100,104,96,117,100,109,101,114,110,101,94,101,106,98,103,98,92,109,104,102,103,110,103,104,109,101,87,103,106,109,97,103,95,95,91,102,91,131,100,109,91,87,97,114,105,96,95,114,108,102,103,95,107,94,96,98,100,98,102,104,109,91,98,90,105,95,94,73,97,106,105,105,103,104,97,104,111,90,103,89,90,96,96,89,111,103,83,98,104,107,104,101,110,106,88,99,98,98,97,101,102,92,100,116,94,106,103,97,86,100,103,107,109,99,98,99,105,98,101,103,102,99,103,100,92,84,104,100,103,100,106,97,100,107,108,102,95,98,109,102,96,101,91,91,103,83,88,99,103,104,109,105,105,99,103,112,105,99,126,104,104,102,112,112,96,98,109,98,105,95,91,97,113,102,107,109,110,102,102,80,112,96,106,99,96,111,104,95,100,108,99,97,87,105,100,101,99,102,98,103,100,100,93,98,95,96,96,99,103,91,105,94,79,116,98,90,100,90,97,108,99,98,104,103,102,102,99,95,78,105,107,105,101,97,98,76,80,115,95,94,109,103,93,109,117,95,101,110,113,100,96,101,100,106,93,97,106,97,103,108,99,105,106,105,103,93,98,99,100,108,95,103,98,92,106,101,97,99,92,107,113,109,112,104,107,111,101,101,105,109,103,102,103,110,102,95,100,93,98,99,103,101,97,106,108,102,101,105,100,110,95,104,97,95,89,93,102,112,99,108,107,116,100,100,100,107,111,101,106,92,97,100,93,101,101,101,104,107,100,103,98,105,109,92,104,106,101,107,103,114,92,93,93,105,109,94,109,91,114,91,94,107,103,108,108,106,90,102,108,109,101,100,106,94,97,101,104,109,96,109,115,104,106,110,111,103,98,103,102,104,82,106,104,105,109,93,122,99,101,101,105,97,99,104,100,95,106,101,95,106,100,98,96,109,95,101,97,105,99,88,99,102,95,96,91,100,100,91,101,99,103,111,107,110,103,103,97,104,99,101,105,113,100,102,112,100,97,96,80,98,108,119,104,112,97,115,101,113,95,101,108,100,100,103,98,95,99,99,97,106,103,97,109,77,101,110,111,96,107,112,98,96,106,102,92,104,100,106,111,94,91,92,102,97,104,94,94,92,90,111,104,100,114,94,96,105,98,105,99,107,88,98,106,104,101,109,65,100,108,86,120,113,109,102,108,104,102,93,100,111,87,103,93,103,123,102,108,98,106,98,110,100,110,101,121,99,97,95,101,94,98,102,101,105,102,96,98,107,98,93,107,83,101,100,106,109,82,100,102,96,104,94,100,103,103,102,98,109,94,104,102,106,104,100,105,100,82,107,110,130,97,95,95,105,111,104,105,100,99,108,101,106,93,100,105,105,107,104,108,113,98,102,105,101,108,97,98,98,94,92,102,97,100,107,97,90,98,92,95,105,89,108,96,76,102,95,95,95,114,96,97,105,95,95,105,97,113,91,103,103,102,105,99,106,100,88,95,95,124,94,100,100,106,104,102,101,102,107,96,108,94,90,109,100,108,100,109,90,103,91,95,98,99,101,107,105,105,100,103,104,86,105,97,103,110,104,103,97,98,99,97,108,97,104,98,112,116,96,97,104,104,98,101,104,99,112,97,100,103,97,102,109,112,103,93,99,98,104,118,109,103,95,110,105,110,99,102,111,95,112,100,109,102,108,99,107,96,99,106,99,108,110,88,110,108,95,103,104,75,103,105,106,106,105,101,93,100,102,99,91,100,88,102,113,99,101,101,96,107,101,103,111,110,105,106,95,100,93,99,98,99,102,95,99,98,102,109,93,111,102,102,99,100,99,105,101,91,103,107,103,100,104,106,100,114,107,102,79,100,111,106,106,102,104,109,110,93,104,100,93,112,94,98,105,103,88,102,100,99,105,84,100,80,104,77,108,97,104,95,79,100,99,109,102,96,98,100,96,90,115,97,84,96,97,98,105,104,109,99,104,100,95,101,100,107,88,96,101,97,95,107,112,111,104,94,105,115,107,97,106,107,101,107,95,95,109,105,107,100,113,104,108,110,97,99,107,97,87,83,104,112,103,108,103,99,106,125,108,95,103,95,93,91,103,104,98,105,102,106,113,100,91,108,75,99,113,101,103,103,110,98,100,105,92,95,89,109,105,109,106,117,112,91,103,109,110,115,103,104,107,104,98,113,97,111,97,114,115,104,116,113,111,107,104,105,119,102,103,101,80,103,116,102,107,102,103,114,102,115,101,108,109,102,115,105,111,120,113,94,103,103,83,104,97,98,99,117,107,93,111,102,95,105,100,107,117,109,101,105,100,99,117,108,105,114,100,108,82,100,110,94,101,103,99,120,103,101,106,96,116,111,108,89,115,107,108,99,100,109,104,103,109,99,103,101,108,88,101,106,98,105,107,108,109,103,110,101,107,106,103,105,105,96,113,110,104,93,106,111,89,108,113,102,111,109,106,108,102,104,110,86,105,112,103,98,88,111,101,97,111,98,93,103,106,101,113,76,97,112,98,105,108,103,108,101,105,106,111,92,106,107,100,108,111,102,108,101,103,112,110,108,96,106,104,114,94,103,103,102,109,79,105,113,103,108,92,102,109,106,98,102,94,114,104,114,103,104,105,96,95,104,92,105,73,101,104,103,108,103,92,99,113,102,107,100,102,98,105,90,99,97,109,108,99,105,103,95,109,103,106,112,106,91,118,101,117,108,94,112,96,104,100,110,109,101,106,95,103,103,109,102,103,101,102,106,100,112,90,111,81,112,103,98,98,109,99,100,102,109,103,100,93,96,92,113,117,96,104,102,105,108,93,105,101,101,100,114,113,105,108,110,97,105,108,96,90,106,108,108,97,113,105,94,104,100,106,105,96,95,101,103,99,107,104,89,99,104,106,110,116,110,105,103,85,99,107,102,99,104,95,102,103,96,86,98,113,97,109,120,111,97,108,107,95,99,69,104,122,98,98,104,92,100,113,100,105,106,100,91,110,113,96,105,112,94,110,106,104,104,105,106,96,108,105,95,98,102,116,106,111,104,104,91,85,82,105,106,107,104,106,100,98,102,101,91,115,123,113,114,97,116,104,102,95,109,100,89,86,116,108,100,101,108,97,107,109,107,86,101,115,101,102,106,101,109,100,98,97,106,91,101,96,102,105,102,108,94,97,108,100,96,108,98,107,132,101,112,98,97,105,114,96,102,101,108,96,101,106,108,102,98,91,108,96,99,105,117,108,105,107,106,99,88,101,106,103,110,106,99,113,107,94,112,94,96,103,98,103,112,88,108,104,75,112,106,106,113,99,107,114,95,108,117,96,106,99,99,117,98,109,107,99,109,106,104,88,101,116,106,103,106,103,105,106,115,106,106,117,107,98,105,103,92,109,107,100,114,108,110,95,104,102,100,105,105,112,102,102,107,106,101,105,105,101,113,102,107,116,95,101,121,101,105,92,75,104,105,101,105,97,91,100,95,93,99,107,98,110,106,101,100,103,102,76,103,109,115,102,100,95,100,105,79,100,109,109,103,108,98,111,110,112,96,103,99,102,97,106,95,102,94,110,95,100,109,104,97,115,142,105,106,104,110,105,102,102,110,97,106,109,98,109,111,104,103,105,98,111,99,102,108,104,107,113,101,106,101,109,111,116,96,109,96,98,90,94,108,117,112,100,109,101,105,71,91,105,105,98,93,106,101,104,108,104,104,104,103,104,103,98,96,116,106,94,100,104,95,103,109,108,94,104,79,94,113,103,94,106,91,100,102,110,108,106,120,98,101,68,107,106,104,96,87,114,103,100,102,94,97,105,98,108,101,103,102,107,102,102,106,101,102,105,116,90,103,97,106,92,103,102,110,94,101,99,103,103,106,119,96,102,109,109,106,103,101,101,101,105,109,104,80,89,117,86,126,99,92,101,119,89,116,105,108,100,95,107,109,93,99,99,103,105,95,99,84,109,98,89,92,108,107,113,102,100,96,101,110,98,105,104,115,95,92,80,101,108,108,110,110,107,112,101,98,94,98,98,98,108,103,98,104,104,98,110,121,105,111,97,100,99,95,91,115,105,100,90,100,111,98,102,97,110,92,98,106,104,101,108,103,99,101,91,87,113,110,109,103,112,106,103,100,106,90,108,112,103,94,104,113,101,102,91,108,103,98,106,96,109,101,105,92,103,106,97,109,108,98,90,108,101,100,103,107,99,104,98,98,106,97,97,102,90,105,99,96,92,122,89,113,90,118,105,98,95,109,89,89,101,110,101,107,101,98,113,107,103,107,101,102,112,91,100,103,86,104,107,101,93,101,106,90,100,110,92,108,97,102,99,95,104,96,103,113,111,102,86,95,96,91,92,117,94,103,101,97,80,96,92,112,102,91,96,105,105,98,103,115,98,115,103,98,91, +441.87079,98,112,102,79,97,94,111,92,99,107,96,103,88,102,91,92,106,109,107,95,103,112,85,104,102,113,93,90,106,84,106,92,103,97,104,103,94,86,98,110,103,95,100,101,93,109,105,102,100,103,102,105,106,107,118,96,102,99,104,96,94,99,102,93,97,100,88,105,92,85,93,110,104,98,87,103,124,100,102,103,98,103,90,91,83,103,98,108,100,97,105,97,99,101,96,98,101,104,65,105,95,92,99,95,96,91,95,100,96,99,101,95,99,105,109,125,102,99,94,108,105,103,109,111,90,91,88,63,105,94,107,105,101,97,92,110,102,99,101,101,138,97,103,93,99,99,110,104,94,92,99,97,124,107,106,100,106,95,94,108,105,92,117,96,94,95,92,100,102,107,110,95,97,99,106,92,100,98,123,100,88,96,102,113,107,96,100,84,99,102,94,97,91,88,98,106,114,99,105,100,90,100,100,106,94,97,70,99,102,107,97,98,104,104,100,111,99,113,91,94,123,99,96,80,86,95,95,97,88,97,98,103,91,85,104,95,99,108,100,113,92,104,94,106,105,90,114,104,103,98,101,105,91,94,104,106,94,102,105,103,97,98,101,106,91,111,100,86,102,95,106,105,98,95,114,117,102,108,95,95,91,77,99,112,104,105,97,123,101,71,111,108,105,97,104,102,101,104,101,121,90,92,88,118,97,102,101,107,105,92,92,110,105,94,98,94,100,108,99,95,94,91,104,108,113,109,95,90,92,102,106,96,108,94,113,95,89,97,112,113,97,104,95,99,101,104,90,94,103,95,89,105,98,103,93,107,97,98,103,97,108,93,87,114,99,99,113,116,114,104,99,100,97,109,103,92,110,109,90,121,103,97,91,102,103,111,90,104,108,92,102,88,97,104,106,96,99,116,111,99,110,100,108,97,92,91,101,109,107,108,89,96,102,110,95,101,114,101,106,102,103,110,106,94,101,95,99,103,102,95,101,102,96,93,94,106,106,109,98,104,107,108,98,99,103,109,96,98,113,99,103,104,95,114,109,122,114,92,111,107,106,97,113,103,83,115,109,96,91,98,106,117,107,100,87,96,91,110,91,98,96,94,125,106,110,101,92,94,101,101,102,105,105,109,92,101,96,102,103,97,100,101,100,103,96,103,91,103,107,70,94,94,95,102,104,94,104,97,97,106,112,99,97,112,99,96,107,95,107,122,96,102,102,94,105,98,105,103,113,107,93,109,106,99,103,98,100,95,105,109,103,111,102,97,97,117,99,97,109,102,108,112,100,112,111,104,111,113,87,94,88,91,104,98,100,79,109,93,104,109,113,95,99,96,100,112,114,105,99,96,110,94,90,92,111,105,97,94,136,102,100,108,103,100,90,102,91,89,101,107,106,107,103,87,109,100,108,110,109,102,106,109,99,95,102,108,85,103,103,105,106,105,95,102,99,102,105,99,103,99,97,101,92,101,98,97,97,97,99,115,94,97,97,114,100,119,101,103,106,103,105,100,103,98,94,93,112,94,94,109,112,104,100,101,96,105,100,101,103,100,95,105,99,102,91,91,92,95,99,108,112,111,85,104,100,108,104,108,106,90,111,95,95,96,108,104,107,97,102,95,102,97,100,84,90,88,97,103,95,95,100,90,103,106,101,107,108,89,107,97,115,89,103,98,103,98,105,105,102,101,108,98,112,91,109,86,105,96,110,126,111,104,106,101,103,94,104,101,95,109,100,113,91,95,96,100,104,117,94,90,98,97,109,109,96,114,95,107,99,103,103,96,105,92,98,105,98,104,99,105,108,110,98,103,96,100,103,93,96,111,109,118,93,102,103,115,105,114,99,88,107,106,100,107,106,136,99,104,128,98,103,106,103,105,94,110,109,109,105,66,111,94,98,102,115,125,105,99,110,110,86,107,94,95,106,96,98,113,104,97,110,103,97,82,101,94,96,111,107,113,108,105,94,109,102,99,108,99,108,99,108,100,87,98,110,111,100,99,109,104,105,100,94,116,101,106,102,103,111,104,102,120,107,99,102,94,97,99,94,104,91,102,119,121,86,100,91,114,88,108,105,113,101,97,99,98,99,101,97,85,107,101,98,105,99,103,109,109,95,98,94,102,121,105,103,105,103,106,103,100,122,93,110,110,104,118,99,95,95,88,96,112,102,99,104,102,113,109,95,108,103,111,108,87,122,98,95,98,114,97,103,96,103,105,91,105,108,94,102,106,107,108,106,98,103,108,85,111,95,99,100,86,76,99,103,96,109,110,108,111,106,98,100,97,98,102,106,93,88,101,95,103,100,94,105,110,98,101,98,119,99,105,102,88,98,93,91,102,104,110,106,94,107,95,107,100,96,103,101,105,100,104,98,99,108,100,91,98,102,105,116,109,105,107,97,103,104,91,103,110,96,114,103,106,95,90,97,96,112,87,86,104,102,99,102,98,95,126,88,110,107,95,113,103,99,96,99,92,106,103,96,105,109,99,98,94,98,86,106,104,112,101,109,110,104,107,101,98,98,112,88,100,110,95,99,98,104,103,94,112,107,99,117,99,114,99,104,107,102,108,105,115,103,98,109,109,103,105,92,101,98,100,96,117,89,110,100,104,101,100,114,72,115,99,108,94,111,99,110,98,85,95,104,101,91,103,100,107,109,99,91,103,98,103,101,104,99,103,102,103,117,100,95,83,103,94,95,110,107,102,96,95,114,101,103,105,106,102,96,102,100,106,119,84,97,110,96,104,91,100,109,95,99,100,121,107,92,105,104,100,95,104,91,109,98,92,95,109,101,98,101,104,104,107,108,93,102,100,108,102,111,106,105,99,97,101,100,100,102,106,113,110,112,102,96,108,107,106,90,116,98,95,109,108,119,90,114,116,95,106,103,92,108,115,102,110,109,102,103,109,96,94,111,106,103,113,109,112,103,101,109,115,99,102,101,91,106,96,95,113,106,107,104,111,89,105,107,93,91,108,95,101,98,89,109,110,104,109,103,105,107,98,108,104,113,100,109,105,104,103,93,92,100,117,105,108,99,95,100,112,113,106,120,90,109,109,99,93,99,102,102,122,104,92,79,102,109,103,98,94,91,116,87,105,106,96,103,90,102,100,110,102,101,109,96,113,107,103,92,103,97,99,97,103,105,102,92,100,99,99,98,98,101,100,104,94,109,92,101,105,107,113,87,98,103,94,96,107,98,103,104,111,101,117,100,105,72,92,104,102,97,103,107,96,105,101,103,112,91,113,97,107,113,110,94,104,100,102,101,94,90,106,95,100,100,96,99,105,110,131,98,96,120,106,109,112,100,108,100,87,95,117,101,102,106,113,89,106,109,100,104,103,101,116,108,97,112,102,104,112,93,91,123,94,94,108,102,104,103,90,96,97,91,102,111,104,105,98,73,106,90,92,105,102,98,125,107,97,104,97,91,91,99,108,106,117,104,96,89,95,95,106,103,97,76,106,96,103,97,101,101,104,105,103,96,97,109,107,109,99,98,100,96,99,104,102,108,99,105,93,108,95,109,99,100,94,105,104,105,99,93,102,74,98,106,114,95,102,105,106,103,100,103,104,105,105,95,99,101,101,91,108,95,98,91,81,101,101,108,98,98,106,109,94,104,96,106,88,116,95,101,103,103,111,97,99,119,96,102,96,107,96,106,112,100,101,94,115,103,106,90,104,95,101,101,109,106,99,103,104,103,92,106,101,103,107,86,103,98,84,101,95,99,100,89,86,101,106,88,90,101,90,77,98,114,89,103,91,105,108,93,98,90,92,93,102,98,96,109,101,100,105,93,109,111,94,101,84,88,101,112,104,99,102,100,95,94,87,111,109,95,103,92,102,89,105,100,102,100,108,100,106,88,129,99,107,95,103,101,103,94,108,79,110,96,103,96,105,98,98,84,99,104,107,99,102,91,94,108,100,103,99,118,101,83,109,105,112,94,95,99,107,100,106,119,104,102,107,99,96,108,106,94,110,103,105,105,93,98,111,89,103,107,104,96,94,96,98,110,93,107,109,103,110,88,102,104,103,98,92,99,102,82,98,102,102,107,100,108,98,99,107,107,99,100,102,98,100,104,103,97,102,102,96,108,100,107,99,94,112,104,94,115,98,113,98,99,73,102,101,106,89,93,108,99,95,92,108,101,99,103,112,100,68,105,111,103,97,94,102,105,106,100,98,94,96,103,102,105,99,112,98,92,100,103,101,107,109,100,102,108,99,103,90,100,113,97,109,108,111,102,101,102,96,100,98,107,103,92,98,99,97,101,93,103,109,107,102,102,118,91,100,111,93,99,110,108,100,102,107,87,98,114,107,99,94,104,102,100,128,97,102,107,94,105,97,104,106,106,112,100,111,111,99,101,104,95,106,94,97,96,107,103,112,95,95,97,101,117,91,91,105,96,96,100,93,88,107,97,104,105,95,92,92,97,98,103,100,107,95,113,106,95,111,111,100,90,106,100,102,96,96,100,103,92,98,96,103,106,94,103,91,95,99,103,113,97,98,102,102,94,99,97,88,105,93,107,109,107,119,106,103,94,108,98,106,112,92,101,91,112,96,100,103,99,97,112,100,97,95,95,100,107,105,99,100,99,92,103,106,96,108,111,97,91,97,104,98,113,94,91,103,108,101,90,98,103,112,94,93,99,105,106,104,116,99,102,101,82,97,103,86,101,94,110,101,91,91,105,99,100,96,106,103,111,64,107,108,117,96,83,98,105,113,98,107,100,104,102,102,101,107,92,112,95,106,99,103,100,91,115,111,107,93,96,100,101,101,106,96,88,98,111,99,100,95,144,127,102,95,104,98,104,104,119,113,102,99,99,104,113,93,100,116,88,122,93,106,103,93,111,110,96,96,108,99,100,104,103,120,100,105,99,96,94,101,97,104,95,96, +442.01111,98,99,97,105,96,101,108,104,101,96,92,100,102,111,103,101,100,102,104,105,102,107,95,99,89,101,99,98,109,99,103,100,89,105,104,82,112,92,103,100,96,98,92,101,105,100,95,112,98,97,100,105,91,103,108,110,96,103,88,105,104,104,93,91,102,108,93,99,102,93,105,104,99,101,105,102,102,108,103,92,112,112,96,112,98,105,96,102,96,99,106,67,86,108,92,130,99,101,88,91,114,103,95,113,106,85,95,104,91,102,99,99,76,83,107,100,92,109,104,98,86,107,102,112,98,109,55,92,108,98,125,90,91,98,94,107,104,105,98,106,100,91,93,88,107,86,107,104,96,109,113,93,104,86,95,100,95,104,100,99,99,99,104,97,95,99,108,93,98,104,99,99,102,103,106,109,105,92,101,105,98,102,109,103,93,97,90,94,112,100,90,91,103,112,109,92,95,117,95,105,77,102,75,106,93,103,109,106,112,108,97,113,100,99,104,98,89,91,90,99,102,108,111,101,109,103,105,105,126,96,98,107,101,107,97,103,102,110,116,101,99,91,100,69,108,92,98,116,107,96,104,96,100,78,100,113,94,96,99,91,104,106,95,99,92,97,109,90,108,100,100,111,99,95,102,99,106,105,88,96,101,109,100,103,103,103,96,117,104,96,113,105,108,106,99,94,117,97,103,93,101,101,97,99,103,102,106,113,102,101,102,110,102,112,118,82,107,104,97,94,106,98,111,106,101,108,99,97,120,101,96,104,102,100,100,97,99,97,94,96,108,103,98,102,110,113,92,101,91,100,106,93,101,117,116,99,108,110,114,108,100,104,105,95,97,100,92,99,108,104,111,107,112,110,100,100,114,106,98,109,98,102,94,111,97,99,77,100,103,108,104,94,105,108,98,90,93,109,103,94,83,99,105,92,99,108,110,103,100,96,105,92,99,100,108,79,98,100,107,101,103,94,108,95,102,96,100,88,89,98,89,103,98,91,95,102,105,102,104,94,114,104,106,101,104,104,106,97,104,95,99,105,99,103,107,104,107,90,96,96,84,108,108,105,111,117,101,101,102,105,109,110,111,105,101,91,100,111,100,97,94,108,111,104,98,80,107,99,104,101,109,102,111,111,96,105,117,104,104,104,111,102,96,97,109,116,104,108,109,103,103,110,107,104,105,96,98,96,101,100,113,107,98,102,95,100,110,105,101,103,93,104,105,109,111,103,116,106,108,106,106,114,101,104,97,93,94,106,100,118,92,99,109,92,90,100,106,97,101,105,77,91,105,98,95,103,104,97,98,100,88,100,100,90,101,92,107,93,98,113,97,103,98,98,114,98,97,91,99,106,98,106,109,109,110,116,106,108,100,93,102,110,116,100,102,95,97,98,105,101,99,109,95,99,107,104,105,104,100,109,99,102,106,93,106,96,92,105,98,97,113,99,96,117,92,109,100,86,109,107,100,102,103,90,109,96,95,104,105,104,91,97,101,115,105,106,108,107,85,100,114,102,106,115,97,102,101,98,101,112,97,107,104,113,93,104,96,100,106,115,98,97,93,95,100,116,105,103,104,108,104,113,84,110,111,107,111,95,98,99,106,93,98,99,110,113,105,101,95,102,102,112,97,86,98,97,99,97,110,109,106,98,98,100,105,87,99,72,98,119,103,90,103,88,80,91,114,98,103,128,100,106,110,94,125,116,82,100,95,112,103,100,104,105,110,102,94,105,111,102,105,97,111,84,101,100,105,103,102,106,108,96,103,106,102,100,107,104,108,96,100,105,109,109,102,102,98,121,99,103,109,95,104,103,98,103,106,106,105,103,106,97,99,95,97,100,99,94,104,104,104,93,119,106,100,103,104,100,109,102,103,106,107,103,92,103,98,88,105,90,111,105,109,100,95,103,113,94,110,93,81,96,121,107,102,63,103,103,100,94,111,94,113,123,100,104,94,101,104,96,103,116,104,99,101,104,107,108,107,112,108,102,98,113,92,104,101,99,98,105,111,97,78,112,113,99,99,106,99,98,104,105,103,106,105,106,111,108,96,102,101,112,108,96,113,91,100,107,102,104,103,104,105,102,100,108,101,116,95,106,112,110,106,98,98,113,108,90,103,114,100,109,107,106,100,98,109,113,87,105,107,112,100,111,90,109,105,100,100,108,91,117,107,105,98,104,77,91,87,92,110,103,103,100,113,99,89,104,95,99,102,114,114,104,109,105,100,104,101,110,103,104,108,117,106,99,100,104,98,90,98,107,104,91,115,105,101,104,99,104,106,117,94,105,105,113,100,101,99,101,117,105,102,110,100,101,100,79,102,105,110,104,101,104,112,105,96,99,97,105,114,87,93,108,117,99,99,104,105,93,90,105,95,105,99,93,102,93,103,109,106,111,108,106,95,94,96,99,94,103,103,91,96,99,112,103,100,112,113,100,92,102,103,99,101,101,99,108,100,105,98,100,74,112,99,104,103,130,125,107,119,102,96,104,103,105,107,100,98,115,117,103,110,108,98,115,104,113,105,100,104,103,99,96,93,100,105,105,95,107,103,107,107,105,92,118,98,118,106,124,110,104,104,110,106,113,103,101,101,100,103,113,109,109,99,95,105,105,94,103,114,101,107,108,139,112,112,99,102,102,109,93,100,84,93,100,109,92,105,96,99,100,116,103,102,105,108,104,102,120,112,111,98,104,103,117,111,95,102,108,101,99,84,109,96,108,111,100,101,115,99,119,101,97,103,103,97,111,92,85,110,90,113,113,110,109,97,107,108,107,99,100,97,104,102,105,97,117,97,99,112,110,105,105,109,108,99,102,95,101,99,97,96,90,107,97,124,117,106,100,116,103,111,127,108,91,90,115,120,83,98,106,108,107,100,98,103,88,101,108,107,112,108,110,115,105,95,102,108,112,111,97,115,108,89,104,95,121,116,108,105,108,103,114,99,110,108,88,102,113,107,108,100,109,100,99,67,91,96,104,98,96,98,90,104,126,104,104,110,95,108,113,101,108,111,104,98,106,84,110,116,83,112,101,105,104,97,107,105,105,116,105,106,91,99,107,99,95,106,98,99,103,80,106,101,101,106,94,110,103,104,117,107,97,113,100,100,98,98,101,111,106,108,104,99,113,105,115,109,110,92,93,100,102,105,87,100,94,97,109,98,90,109,98,112,101,104,107,95,106,113,100,100,103,107,106,108,119,114,107,108,112,103,120,111,106,96,99,99,109,99,116,95,95,99,103,100,97,106,104,107,109,113,106,96,104,100,106,106,104,105,109,109,96,90,113,109,104,107,83,101,97,108,121,109,103,106,101,110,99,96,112,101,109,103,113,92,99,96,102,103,102,94,116,110,114,109,100,104,108,112,110,113,121,92,113,103,104,104,100,101,106,107,104,114,110,106,87,98,105,100,107,100,100,101,112,94,111,113,130,116,96,91,102,95,113,102,96,85,105,132,100,104,132,111,108,109,95,103,89,113,112,91,97,102,109,108,104,102,109,100,115,90,104,95,105,77,105,98,97,102,119,99,103,78,110,106,113,106,102,125,102,100,115,106,96,98,99,98,109,113,103,100,105,106,102,91,97,84,98,114,102,111,105,96,119,92,99,129,107,102,88,108,105,102,86,93,101,104,99,91,99,97,102,106,100,107,111,111,95,107,123,94,95,90,99,91,114,105,99,109,116,104,99,106,101,108,116,95,109,117,101,107,106,112,99,107,101,116,108,107,91,101,104,98,98,97,100,115,99,102,101,94,105,110,79,108,104,104,116,103,106,99,104,103,112,114,74,107,95,94,99,94,113,101,101,104,108,103,106,106,99,107,112,107,103,102,93,104,103,104,102,106,105,96,99,113,112,102,113,111,102,108,109,103,105,104,105,104,92,98,125,93,105,110,94,102,100,109,103,102,104,96,107,99,99,121,99,111,93,109,104,97,110,109,110,115,100,108,105,104,108,84,103,101,107,112,91,99,99,114,104,108,112,103,106,103,107,103,101,109,100,97,100,101,101,97,100,99,92,99,102,93,112,100,110,102,98,94,107,109,108,95,98,107,102,100,91,113,98,95,102,98,103,104,113,106,103,106,99,95,104,106,95,110,104,113,104,91,93,102,102,107,108,102,108,108,99,95,111,101,108,92,117,99,101,101,99,102,115,106,97,101,95,99,109,107,90,106,108,105,98,95,105,111,110,95,110,99,98,103,103,102,96,108,99,104,99,106,99,110,104,103,102,100,101,100,98,101,91,106,105,102,93,106,125,103,113,121,105,107,115,104,95,100,104,112,91,94,101,98,100,96,102,110,87,108,100,97,117,103,101,101,107,102,117,106,100,113,109,98,100,107,103,106,98,97,102,102,112,101,124,108,128,95,87,110,106,108,101,98,96,115,111,111,100,101,102,96,88,93,100,97,93,90,116,91,102,107,107,106,110,95,100,112,99,92,85,116,108,100,95,105,101,121,92,90,99,100,97,105,101,117,112,103,98,103,95,104,92,102,112,104,102,102,102,103,108,107,112,106,93,93,113,113,110,104,109,102,95,98,102,93,97,105,100,95,92,104,104,94,105,107,100,110,93,103,106,96,102,113,106,111,98,95,99,100,100,103,99,100,110,106,104,120,110,102,97,103,98,112,114,102,112,109,95,127,104,107,100,102,97,114,113,94,101,107,96,106,100,107,95,106,95,106,105,117,111,90,104,101,100,103,95,113,98,95,104,98,105,92,95,94,110,100,87,108,112,106,109,95,111,105,99,103,96,102,107,105,104,102,102,92,105,105,111,91,111,95,72,89,116,110,108,92,98,111,106,98,90,107,101,99,104,103,92,108,109,113,112,106,97,117,104,85,102,87,97,97,99,101,111,93,101,113,87,99,87,100,90,115,100,98,99,109,105,106,105,79,101, +442.15146,93,76,101,110,88,94,91,91,113,96,103,92,87,96,108,99,100,108,109,92,110,82,105,107,107,94,98,99,93,104,109,108,95,106,112,94,107,110,103,105,103,101,101,102,105,106,102,106,107,93,113,99,107,112,97,103,93,105,108,98,105,110,101,67,102,106,95,94,103,102,105,92,61,101,100,99,96,99,101,104,111,101,95,107,103,94,86,110,97,98,110,94,90,111,94,100,103,98,82,92,93,88,85,94,97,104,109,113,102,92,105,104,98,105,110,109,91,102,101,98,107,96,96,105,100,96,112,78,103,104,105,102,98,110,99,95,103,62,90,101,94,106,93,105,96,99,112,94,105,99,107,94,108,95,104,105,105,112,104,97,106,111,106,110,109,90,104,104,107,109,100,102,100,90,97,108,88,97,92,109,109,96,105,99,113,99,90,99,125,91,95,99,114,103,94,99,105,103,121,104,100,107,66,106,113,113,98,98,109,101,96,96,98,98,108,98,104,95,94,94,105,96,96,87,96,103,104,106,110,112,97,99,110,93,108,114,96,109,99,122,111,106,108,99,101,102,98,109,104,105,106,116,96,110,95,109,94,102,91,102,94,98,110,109,104,108,113,107,99,106,91,100,103,106,97,102,104,96,95,105,92,102,99,103,106,111,89,73,104,95,104,95,109,115,117,98,102,100,108,88,102,123,106,105,106,93,97,103,98,96,90,111,105,90,103,114,106,84,107,109,78,106,85,104,108,101,96,101,117,103,110,101,105,107,105,105,95,107,106,100,96,111,109,96,99,108,114,107,113,102,101,111,110,117,105,78,102,105,108,115,100,91,101,118,89,95,105,107,108,108,112,112,86,112,109,107,109,103,112,107,100,119,94,121,96,111,105,110,106,96,103,98,97,107,99,102,105,101,106,111,100,83,105,94,111,103,104,110,96,108,103,103,105,107,91,111,100,106,111,92,101,106,96,109,106,100,93,94,103,116,101,105,103,117,103,104,108,102,96,103,95,97,105,101,89,105,100,89,97,112,105,99,108,110,106,94,89,101,121,95,104,110,95,97,105,108,106,90,109,91,109,104,104,107,93,98,100,110,94,115,100,109,107,105,109,130,103,102,94,103,115,107,108,104,103,99,114,104,101,100,111,107,110,100,87,99,96,100,88,105,108,100,112,99,118,95,101,77,109,95,95,104,117,112,111,96,113,102,100,92,122,108,96,101,103,99,108,94,127,107,103,110,100,107,106,103,103,101,114,103,117,103,107,112,99,102,98,90,95,108,93,103,91,106,103,96,113,103,99,106,96,101,110,111,97,115,99,105,111,89,99,110,107,117,104,100,101,117,108,98,109,121,97,113,99,112,103,83,109,111,96,100,105,111,100,104,105,98,99,97,96,103,87,97,97,90,103,101,106,96,106,103,100,98,100,104,110,103,101,104,98,105,92,105,92,109,109,106,114,109,105,87,105,117,104,95,100,108,97,99,104,105,97,101,98,103,95,108,103,120,106,107,111,116,106,94,110,91,105,99,100,101,98,105,100,99,100,104,115,96,103,86,115,94,96,105,113,108,93,84,95,103,104,106,110,102,108,106,110,105,98,100,101,94,100,102,112,106,103,102,105,91,98,111,101,101,104,105,98,98,113,100,100,92,104,94,96,110,101,109,110,113,96,96,86,89,110,100,100,101,101,92,107,112,100,101,108,108,106,106,106,89,109,91,107,88,99,94,104,100,98,114,98,103,77,104,95,104,93,107,105,98,112,95,95,98,100,102,113,97,106,89,107,116,105,113,71,117,98,105,108,101,98,104,107,98,102,100,98,119,108,114,101,121,87,101,103,96,95,95,115,105,106,104,110,110,103,103,111,102,106,116,101,105,106,117,102,105,101,109,99,103,113,102,101,111,101,99,101,108,97,107,93,107,91,91,100,92,103,97,97,102,112,103,100,106,99,100,100,104,99,109,109,105,118,97,96,98,114,102,103,113,101,101,97,98,113,112,109,88,108,100,103,112,103,95,103,114,97,102,113,119,98,99,111,87,102,98,104,103,105,134,103,110,108,104,99,118,95,105,104,116,113,99,102,104,104,101,92,93,105,109,103,105,113,102,104,104,113,105,109,111,94,110,89,93,95,103,103,97,103,108,102,106,113,108,114,108,105,111,94,108,111,100,104,98,103,94,93,100,98,111,100,110,91,102,101,111,113,102,99,104,110,95,97,110,96,105,88,107,96,104,102,99,98,94,106,114,104,111,97,90,105,93,109,107,95,99,96,105,106,85,100,77,106,107,114,91,91,104,101,112,104,125,98,108,106,96,93,102,99,103,98,102,102,107,94,96,100,114,101,107,99,112,96,94,106,103,88,105,89,96,99,88,90,112,113,110,100,102,111,107,100,110,109,86,105,101,103,102,105,98,109,88,109,104,104,102,111,98,96,110,87,106,106,100,109,99,99,100,87,106,94,100,99,111,110,113,98,100,96,105,103,95,103,102,102,110,106,105,101,114,90,90,108,106,102,109,98,103,96,71,97,95,112,99,98,102,115,96,105,99,103,106,113,105,102,99,110,127,106,100,102,93,109,108,111,106,91,130,92,111,105,98,102,98,103,105,92,105,114,97,109,105,105,108,107,101,99,112,102,105,113,101,101,116,114,67,107,110,107,109,108,98,93,104,105,110,103,99,105,102,109,114,110,113,103,99,109,99,107,108,101,92,105,113,107,101,99,105,115,103,111,96,111,110,98,109,103,108,102,106,104,101,109,115,102,101,94,110,95,106,107,105,97,105,101,109,114,91,99,107,99,103,98,102,109,113,104,104,93,95,112,95,94,97,102,103,100,112,112,101,107,110,116,108,110,109,108,95,106,124,105,103,102,102,102,111,107,111,110,110,109,117,108,97,107,107,113,107,107,98,113,84,109,119,112,103,105,108,94,93,98,94,109,103,88,95,97,105,99,117,124,100,94,102,110,116,109,102,107,99,101,105,117,104,100,103,100,95,91,109,106,116,105,101,102,119,117,101,107,97,103,107,118,100,104,113,101,101,99,102,116,95,104,97,100,112,117,107,110,104,96,106,104,111,112,101,103,96,103,120,110,102,99,111,108,98,110,105,96,103,103,113,107,85,109,88,109,104,102,113,115,115,105,109,100,105,99,102,103,110,125,102,97,100,100,98,99,100,107,100,101,109,104,102,98,115,109,128,95,105,108,110,95,94,105,106,102,107,105,99,95,109,101,96,100,98,112,105,108,100,99,114,110,107,96,103,132,98,100,112,98,91,99,90,102,118,102,102,106,94,110,102,97,110,100,97,103,97,109,107,98,88,102,104,91,103,105,98,102,105,91,97,105,98,108,103,107,115,103,115,95,102,93,99,101,120,108,95,113,112,106,108,109,90,110,84,111,105,99,99,105,104,99,108,108,103,96,104,103,104,107,113,96,104,106,124,107,95,111,109,100,125,104,97,99,106,83,95,120,104,96,87,100,107,107,117,114,97,109,92,111,101,100,105,101,95,99,95,97,109,106,117,103,104,110,104,104,106,102,107,93,105,94,96,97,106,110,117,107,98,110,107,108,107,104,98,103,75,98,99,116,99,106,83,106,121,105,115,102,91,109,79,107,107,98,119,100,100,103,92,97,109,98,103,102,108,100,102,103,100,99,87,109,96,116,106,98,103,103,108,100,103,113,103,87,94,106,109,94,106,102,107,105,110,102,114,121,95,101,105,101,102,111,94,106,104,108,100,106,113,100,119,98,84,109,104,97,87,106,96,102,115,103,110,115,93,109,101,111,112,95,104,105,92,95,107,83,104,107,99,106,92,104,111,90,109,103,99,102,106,101,103,105,101,100,106,98,112,96,102,98,109,94,106,104,107,100,114,109,96,117,113,98,101,97,106,106,98,102,90,102,115,104,96,114,95,108,106,108,104,101,103,99,119,108,94,100,102,97,92,102,103,103,113,102,108,97,109,105,69,93,105,111,119,94,89,101,92,110,110,106,109,123,99,99,104,98,113,102,104,101,113,102,104,103,103,104,102,119,97,104,105,100,109,103,104,93,103,104,96,98,95,112,115,100,95,99,96,108,109,113,105,98,113,96,100,104,105,103,116,109,104,107,116,99,102,102,104,108,107,97,99,96,104,101,106,117,101,113,103,103,97,87,104,107,103,92,95,102,101,119,96,108,109,93,116,102,113,101,112,110,101,98,116,103,96,99,97,94,104,104,95,91,108,105,111,102,91,97,96,102,108,96,97,93,96,108,96,102,91,118,109,103,95,107,96,113,94,108,113,95,102,102,106,113,105,102,117,116,110,113,104,103,95,121,98,105,102,115,85,121,102,107,107,96,95,99,109,103,82,117,116,97,107,107,113,104,98,101,100,99,105,100,79,102,118,102,101,92,96,106,103,88,86,99,99,108,102,120,105,102,90,115,99,101,107,108,107,101,106,111,102,92,87,104,96,102,99,99,105,105,109,109,106,107,106,101,101,103,100,109,95,103,97,106,102,84,96,111,94,109,94,103,111,116,111,107,98,110,107,101,113,87,117,106,104,105,92,101,108,115,94,101,113,103,108,105,110,112,105,102,101,108,102,95,117,97,97,97,95,100,108,98,99,107,113,86,111,104,97,121,106,102,109,101,112,103,108,98,102,111,102,98,102,106,87,111,97,104,102,107,114,98,100,96,117,107,104,113,107,96,98,114,100,99,104,88,96,97,97,106,109,98,103,95,100,100,109,95,107,106,107,104,102,103,114,103,97,96,97,91,100,106,96,102,108,83,105,97,95,102,89,98,105,108,113,100,107,109,100,100,98,114,105,109,120,106,108,97,102,99,110,100,103,90,128,111,99,105,113,107,102,102,101,104,116,103,76,103,112,97,94,101,117,103,104,104,106, +442.29181,100,93,99,120,92,106,91,98,100,116,100,109,88,99,113,95,101,97,105,98,96,81,98,96,104,83,107,98,102,87,98,95,95,100,74,119,99,93,95,96,102,108,97,104,92,108,110,96,104,86,94,97,102,101,104,100,109,91,98,106,98,107,109,89,106,106,101,99,98,101,105,106,97,91,94,104,106,95,111,107,82,102,96,105,108,97,121,107,101,108,98,97,102,97,103,105,100,98,104,100,108,103,106,98,110,99,97,92,106,111,100,105,107,98,105,85,114,106,102,101,106,97,119,95,101,105,104,88,100,103,108,102,103,115,97,104,101,98,93,107,110,102,90,99,110,109,105,100,102,91,106,111,106,91,93,112,107,107,107,99,101,96,100,100,104,105,94,106,99,101,110,109,96,103,112,103,102,111,110,100,98,104,104,97,98,93,88,87,111,102,104,100,109,98,110,104,105,106,104,106,99,80,91,95,98,96,93,109,99,106,86,108,96,108,108,111,101,109,90,109,101,108,96,96,106,89,97,99,110,106,98,84,101,101,109,115,111,115,107,104,106,102,120,99,106,99,97,103,100,104,101,103,103,118,109,102,104,102,102,106,88,101,103,107,100,100,88,103,105,93,106,110,100,117,101,109,96,107,96,102,112,103,95,100,94,111,92,105,109,100,98,105,103,108,104,107,89,104,100,96,99,106,98,88,98,101,105,79,109,71,121,116,113,102,100,106,101,100,99,95,97,104,102,104,106,98,100,98,115,93,106,104,86,107,94,89,102,103,108,110,103,107,108,102,103,105,110,108,108,104,109,106,92,99,103,114,100,106,108,108,109,119,95,90,103,92,104,111,108,107,112,104,104,97,109,107,114,107,106,111,104,101,96,86,113,106,90,104,94,95,102,103,66,104,102,102,98,108,103,98,105,91,99,98,99,109,103,95,107,111,95,92,95,105,102,99,104,104,91,97,108,92,110,101,112,115,88,96,105,105,102,120,109,109,104,110,103,113,104,100,109,99,102,96,87,92,103,104,102,122,107,99,104,97,104,102,113,108,101,106,111,103,108,101,105,106,99,99,107,102,105,105,109,107,113,108,107,98,106,113,105,117,106,100,104,104,95,97,98,113,97,107,99,97,97,95,104,92,110,101,109,93,106,104,101,108,97,101,106,113,109,99,111,101,92,95,100,103,99,100,119,104,104,110,106,99,120,95,99,98,117,105,104,109,109,96,112,87,97,98,99,108,105,115,112,93,96,107,106,108,103,105,91,105,103,106,99,97,93,99,101,105,80,100,106,104,104,100,99,102,103,96,101,106,90,105,95,98,120,90,109,102,98,93,112,112,112,112,96,112,109,119,118,105,104,112,96,95,96,109,106,107,111,106,105,101,119,110,102,100,99,128,106,103,99,100,97,94,95,106,100,106,110,109,101,94,91,105,111,105,107,100,107,107,105,109,106,107,109,109,105,106,116,84,109,95,114,111,103,104,94,107,104,101,100,112,115,110,95,105,101,103,105,103,105,101,87,103,90,115,108,112,106,113,100,104,113,109,104,111,109,101,105,102,99,88,95,104,104,99,90,95,114,105,95,106,109,98,96,93,105,93,91,105,90,120,107,116,102,99,97,103,110,99,101,98,95,102,105,96,95,96,113,102,102,99,100,104,98,108,109,97,109,103,103,108,112,98,107,104,102,95,99,106,101,99,99,100,90,99,102,104,94,93,99,90,101,95,107,112,100,91,95,110,87,97,89,96,113,89,103,99,104,101,87,112,98,108,94,100,103,117,98,99,87,109,97,102,87,107,108,84,107,98,113,108,104,100,100,110,108,103,96,91,104,103,95,104,103,92,100,95,96,99,114,104,113,94,114,105,115,99,89,107,91,105,100,109,101,87,116,79,105,98,111,104,102,99,111,110,93,99,99,97,97,114,97,114,106,104,112,84,97,105,95,107,108,105,104,114,101,104,100,99,102,98,94,104,106,99,104,102,107,104,95,105,115,99,97,109,115,93,99,110,95,106,103,112,106,102,97,111,99,98,92,88,96,103,97,92,98,113,110,103,102,104,101,110,109,105,108,99,91,95,106,111,98,87,94,100,103,105,103,97,97,104,108,101,94,101,107,103,99,83,93,106,96,73,101,106,105,96,84,104,96,117,95,110,94,106,98,99,105,91,105,96,101,102,87,104,92,100,104,104,101,103,103,107,109,105,101,102,102,74,111,101,116,94,116,88,91,98,106,103,105,107,104,105,99,107,97,124,108,97,107,103,106,112,100,104,115,98,101,106,96,98,96,109,102,112,96,104,105,101,100,118,96,98,109,105,112,101,108,101,111,105,101,110,96,91,107,114,96,95,104,103,114,105,108,104,107,109,99,94,100,102,103,106,100,97,108,118,103,90,98,106,97,109,106,109,90,97,105,88,124,100,92,95,101,106,95,103,92,101,109,101,104,105,88,86,103,102,97,116,97,99,104,106,112,107,118,108,108,98,98,105,124,129,109,104,112,95,100,101,110,106,91,97,102,108,105,110,99,102,113,88,111,100,103,108,99,103,112,102,102,95,98,108,105,97,107,126,108,95,102,107,102,104,101,105,113,104,96,104,95,104,105,119,104,87,111,109,103,95,109,105,97,105,108,93,94,97,102,93,108,101,103,107,108,115,109,112,80,100,104,105,103,107,102,104,108,104,93,102,104,107,103,107,108,111,101,101,99,99,100,100,104,93,105,109,93,105,105,110,115,90,104,105,100,111,104,114,98,115,108,113,114,103,103,102,107,110,98,106,104,98,103,113,113,102,102,101,100,109,104,100,100,96,93,103,108,96,102,99,98,104,106,92,107,106,112,101,107,107,103,92,106,117,105,111,104,93,114,103,102,111,105,109,99,109,108,96,86,68,101,107,109,102,100,114,85,106,111,102,106,94,112,93,110,105,112,123,97,106,106,120,121,115,100,110,113,103,121,114,104,100,98,113,112,95,112,109,100,98,82,110,88,103,98,107,103,98,91,110,106,93,99,98,107,96,102,102,107,110,84,98,107,116,91,107,102,111,113,107,112,103,102,91,106,102,118,106,89,103,105,102,103,108,93,86,111,108,110,109,104,102,133,110,75,90,97,107,111,105,103,113,108,100,106,105,98,101,104,108,109,101,108,102,109,92,92,95,100,93,112,102,109,89,107,91,104,101,114,107,106,99,105,107,100,102,105,94,109,105,101,100,108,100,105,114,93,113,98,99,78,110,95,103,115,85,113,107,99,109,97,99,105,110,92,98,111,100,110,107,101,100,103,103,102,100,92,95,109,109,108,106,107,104,105,95,103,107,91,103,106,111,95,113,95,108,113,108,107,93,97,98,95,99,95,102,76,108,111,108,106,95,112,104,107,109,111,103,102,96,105,101,110,111,95,100,104,107,97,90,109,98,102,95,99,68,93,96,109,102,101,98,98,108,113,96,109,95,132,103,101,115,101,98,107,99,102,92,116,103,92,105,104,101,102,100,109,111,99,106,86,107,116,92,99,99,99,114,100,105,109,99,116,112,105,100,100,100,97,102,112,106,94,99,107,113,111,100,103,101,105,102,99,104,94,96,105,108,104,111,113,114,96,111,108,91,93,101,112,112,103,87,116,98,101,103,100,97,105,103,92,101,103,105,103,100,105,129,106,103,98,94,99,100,105,106,102,109,109,109,107,100,103,102,94,114,104,106,104,99,110,105,97,96,108,104,101,95,97,101,110,129,100,98,109,98,103,101,104,89,104,100,106,97,102,100,96,91,98,96,103,104,109,105,96,93,102,109,105,103,96,99,113,108,102,103,110,88,113,94,105,99,106,111,100,107,119,101,97,98,112,110,102,107,108,89,99,100,97,102,104,102,103,104,98,112,112,120,119,92,91,115,105,99,100,107,99,98,105,97,99,101,109,87,98,105,101,109,105,105,105,76,123,100,106,102,94,98,110,115,99,92,109,108,106,113,118,101,94,103,102,107,105,101,95,108,97,106,100,93,110,98,87,104,113,107,108,101,116,116,115,98,105,105,106,94,106,106,109,96,113,111,101,109,107,99,99,96,134,90,103,106,103,105,94,101,107,101,100,99,101,112,102,102,105,94,104,98,103,84,104,109,105,106,105,93,94,112,113,106,121,101,100,107,123,110,94,103,98,95,100,91,106,113,98,88,106,103,113,96,103,96,99,121,85,96,106,99,108,113,111,105,103,103,88,106,115,113,100,104,95,100,106,116,101,101,95,101,113,106,101,105,94,99,91,92,91,105,110,94,101,96,105,101,98,100,90,109,117,96,93,79,84,98,106,109,108,95,107,107,103,105,102,112,100,99,108,105,100,102,106,104,109,103,130,114,98,108,98,131,100,115,105,106,118,98,103,94,111,99,96,99,106,107,102,108,99,105,94,104,98,103,105,97,123,90,108,99,114,104,116,117,91,102,104,113,106,95,100,99,107,100,102,99,102,98,104,93,99,103,103,99,110,107,97,105,102,95,105,83,101,105,104,91,103,107,97,84,98,102,107,100,92,104,104,101,104,103,106,89,106,98,104,101,111,114,102,99,109,107,94,94,114,89,101,100,104,110,107,104,101,92,109,93,108,87,101,99,100,106,118,114,113,100,105,94,110,91,105,97,85,105,124,105,120,103,91,117,98,102,98,104,104,91,101,96,95,109,87,106,101,105,100,106,86,100,91,108,94,104,109,108,103,88,91,83,91,108,91,101,102,103,100,95,96,94,109,102,98,106,100,87,101,111,99,91,93,96,65,104,115,103,104,113,96,105,74,97,97,107,97,111,96,95,100,91,112,104,114,87,98,77,103,94,88,105,98,95,107,97,105,100,73,92,101,98,98,105,84,110,107,72,99,104,115,115,109,93,105,99,103,103,96,90,84,82, +442.43216,108,110,88,102,89,102,101,92,95,98,103,102,104,102,102,105,90,102,107,101,103,99,108,96,96,106,105,120,113,118,109,122,97,98,103,118,104,93,111,85,99,96,83,110,92,90,98,110,99,88,97,105,107,102,108,67,96,92,105,106,84,83,93,88,94,94,97,95,96,111,103,103,95,95,93,87,109,105,100,114,96,97,87,104,99,113,93,97,120,94,106,107,98,96,97,110,111,102,98,109,97,98,101,110,100,94,95,96,98,90,101,98,91,97,107,96,103,98,109,99,91,102,110,108,102,106,121,86,96,106,108,102,103,93,105,96,92,102,103,95,110,98,109,95,91,100,102,106,108,96,96,87,107,99,90,105,104,98,101,91,101,107,94,98,105,107,101,103,92,104,99,110,103,111,105,114,109,124,107,97,101,103,105,104,96,113,90,101,91,112,99,104,93,109,102,99,107,99,100,115,110,96,105,91,93,107,102,101,104,113,97,95,95,102,103,105,98,103,106,99,112,105,75,92,97,96,102,95,110,107,89,104,99,104,102,91,110,111,100,106,100,78,111,101,112,85,95,103,97,100,105,102,101,99,80,117,110,106,107,94,106,101,101,91,91,97,104,100,109,101,96,97,100,95,111,114,99,110,91,100,105,115,108,99,90,104,104,107,107,95,105,109,85,108,104,83,95,107,106,110,105,75,102,112,102,111,103,112,103,106,105,113,99,114,107,94,105,106,96,104,103,94,107,102,106,105,95,97,104,109,105,104,104,104,93,107,112,101,95,93,113,100,92,105,100,90,102,101,101,86,97,95,110,105,103,110,106,109,107,109,110,96,99,86,95,96,97,105,103,82,117,105,94,98,103,95,108,109,107,95,109,101,102,100,114,103,104,103,102,106,111,109,103,104,88,94,101,108,95,108,102,100,108,106,97,104,110,103,98,102,97,100,107,107,99,109,107,98,109,98,100,101,111,104,102,99,109,94,100,110,88,100,97,117,104,109,101,101,97,99,100,92,96,108,87,109,94,99,95,99,96,97,103,101,110,98,95,100,116,95,94,95,103,104,111,111,103,111,103,95,95,111,94,97,95,98,106,106,90,100,106,112,119,93,109,106,105,99,98,108,107,117,118,86,95,93,102,93,109,98,108,97,102,111,100,103,94,94,97,100,102,98,102,97,114,101,105,95,99,136,105,115,103,105,100,110,105,105,94,101,101,98,99,100,104,108,95,103,92,107,108,110,106,113,106,100,100,104,106,100,104,101,97,102,100,98,91,105,101,98,100,92,103,94,96,90,109,109,101,106,106,104,95,100,104,99,101,104,103,100,100,102,108,96,101,103,108,112,101,98,108,92,88,112,108,113,100,89,104,101,95,99,99,100,86,98,96,102,96,104,110,103,104,108,107,114,100,104,99,113,106,95,91,97,102,93,123,101,108,106,103,96,98,95,86,96,104,99,117,100,112,99,104,104,102,101,103,94,111,104,99,104,101,107,98,104,105,95,109,102,97,103,100,110,93,105,101,96,113,105,105,125,98,96,107,103,102,94,108,102,97,97,109,85,110,93,111,102,104,102,99,104,91,105,101,106,114,101,98,89,103,106,92,99,109,114,106,122,100,103,108,96,98,100,91,105,98,84,103,106,95,109,95,103,103,101,105,98,112,101,117,107,94,94,107,95,110,101,98,103,104,94,97,100,102,107,98,109,90,105,94,108,89,109,105,111,100,111,106,103,83,115,105,99,103,106,100,99,99,104,111,111,107,88,108,106,105,102,100,97,101,103,108,106,112,103,101,113,91,115,70,112,109,105,108,102,98,107,110,99,103,97,115,107,99,103,109,111,120,103,108,111,94,98,82,118,100,116,108,117,101,110,104,108,103,104,118,115,99,104,91,97,99,98,95,108,105,105,107,114,103,89,115,104,104,99,102,111,95,100,101,106,94,128,94,105,107,98,101,98,105,89,109,96,110,100,95,94,102,105,107,100,104,103,124,105,100,94,103,98,122,105,104,97,92,100,105,102,103,102,92,112,99,100,92,100,94,97,106,91,104,113,95,97,101,99,96,98,105,100,109,102,96,97,106,102,99,99,91,101,112,105,72,111,96,102,93,102,104,88,99,104,91,107,107,97,92,76,104,96,104,111,106,114,95,90,105,107,100,104,106,107,113,91,82,102,100,102,99,107,110,79,101,102,99,103,104,96,100,99,96,111,98,116,107,119,97,101,99,104,106,93,99,105,98,103,102,93,106,96,104,98,108,95,92,120,95,96,105,109,107,92,98,96,114,103,111,100,100,94,101,83,110,103,118,97,107,89,107,102,107,104,102,99,99,100,101,107,113,101,95,107,107,95,105,101,98,103,105,100,100,94,97,103,86,91,107,103,87,97,104,112,90,107,100,102,99,83,100,91,104,103,103,95,95,91,103,105,109,98,98,97,92,103,104,98,105,109,104,99,104,106,97,98,112,112,103,98,99,91,121,101,105,108,105,101,103,107,107,108,112,95,102,96,125,109,105,101,126,90,98,110,100,108,102,111,105,98,94,109,104,111,101,103,117,107,102,108,110,113,95,94,83,104,112,103,109,118,104,105,108,98,105,102,98,106,115,97,113,108,111,103,105,116,112,110,107,100,104,115,109,108,104,102,103,106,115,101,113,115,100,119,107,102,103,98,108,115,101,111,112,107,112,103,109,100,101,96,112,103,100,99,112,106,104,113,85,104,96,117,109,93,108,98,108,113,99,109,109,106,91,98,106,115,109,113,99,107,101,98,92,110,101,104,111,105,96,109,116,108,100,104,99,112,105,110,98,94,109,99,99,104,108,103,101,103,102,104,107,96,104,91,104,99,99,102,75,110,103,107,105,96,104,85,99,99,93,101,112,103,109,110,98,117,103,99,109,108,109,113,100,106,110,100,93,109,99,105,108,110,108,106,99,102,104,109,104,112,108,103,104,113,105,109,94,118,110,88,104,106,102,108,104,112,121,106,106,85,113,95,95,104,102,108,115,109,97,101,109,93,104,103,108,105,112,99,114,92,97,116,111,102,125,108,105,100,103,107,102,94,99,114,105,114,109,108,99,104,94,105,85,99,102,105,103,101,98,103,110,107,97,93,104,117,116,106,101,116,104,103,102,100,94,113,101,100,110,108,126,102,97,91,110,98,101,109,106,106,100,102,101,95,93,113,110,103,106,120,96,109,96,105,91,106,95,102,112,95,99,105,116,112,97,105,109,113,113,105,106,96,99,106,112,103,92,116,106,109,106,106,87,108,98,108,104,106,103,108,113,106,99,93,111,105,89,102,106,97,100,85,112,116,98,97,107,118,100,104,104,105,91,104,84,99,105,106,99,116,102,97,116,101,122,98,92,100,96,109,98,104,105,107,99,92,112,92,99,100,109,116,99,112,100,106,104,95,111,109,109,103,97,109,108,104,102,99,96,103,92,89,104,112,98,103,102,100,101,95,102,108,108,98,102,103,109,108,97,105,118,97,113,98,98,111,99,100,103,111,108,95,111,108,98,121,115,102,99,109,107,94,102,108,107,100,116,95,73,91,106,105,104,102,95,108,103,120,102,110,101,97,99,69,96,100,121,95,99,121,101,89,94,92,108,102,97,96,95,113,105,91,93,94,103,104,113,93,109,95,106,110,96,113,104,107,94,97,95,94,89,97,105,99,110,116,109,96,100,113,103,108,98,107,113,109,104,104,101,115,116,99,99,101,109,105,96,94,103,99,103,99,102,101,109,106,85,100,96,82,100,102,94,117,99,102,116,79,91,98,112,102,81,106,92,103,104,106,104,98,94,102,117,108,107,97,110,105,102,105,96,104,98,100,107,120,104,107,109,96,99,104,104,102,103,115,98,103,88,101,99,95,96,105,94,102,95,104,100,111,102,114,95,94,91,93,95,106,103,99,103,86,103,103,104,103,100,109,103,95,109,94,95,105,87,92,100,106,109,110,111,97,92,105,100,97,78,100,101,94,99,112,76,102,98,113,106,100,99,101,90,112,117,111,115,112,103,109,105,104,99,97,105,104,107,111,86,113,108,98,99,109,109,99,105,108,98,102,98,111,100,106,130,100,112,100,97,108,113,106,106,92,104,103,101,107,108,106,84,98,109,94,107,97,92,112,102,110,100,110,105,96,101,108,113,97,103,113,104,96,109,100,86,93,102,113,114,116,108,115,107,101,105,103,117,109,110,107,106,97,97,120,105,102,107,103,106,103,108,106,97,107,111,106,109,102,102,107,87,98,103,101,113,103,112,120,89,99,106,94,109,106,99,100,112,99,95,110,105,111,106,109,100,104,101,95,101,96,106,114,104,110,109,95,106,109,101,109,114,104,100,108,97,112,116,95,104,104,97,89,117,102,104,105,103,100,94,106,102,104,102,97,101,94,106,105,101,74,108,97,99,103,100,99,99,90,113,104,93,96,91,115,88,111,113,109,108,94,95,90,102,138,104,104,113,96,105,118,109,109,95,103,96,106,101,108,101,100,106,109,104,101,98,94,87,105,112,113,95,113,101,106,94,96,112,104,106,105,106,90,89,98,92,98,105,101,101,93,105,99,100,95,95,103,97,107,106,90,107,83,103,95,81,107,99,110,94,96,100,105,100,101,105,89,110,94,111,105,96,91,104,109,103,94,101,110,98,88,94,84,90,110,102,98,105,126,99,90,113,93,89,99,112,109,105,95,92,101,96,102,106,94,100,101,95,104,98,101,120,101,95,100,96,117,95,104,98,91,104,95,100,112,106,99,100,95,71,97,98,87,102,98,103,111,117,106,109,105,99,97,110,112,108,109,90,110,108,120,94,96,88,107,103,103,100,99,90,96,102,90,105,80,108,117,97,102,101,99,121,96,92,107,96,96,92,101,108,101,86,98,106,109, +442.57251,100,85,89,92,92,95,106,97,97,92,93,92,92,95,104,95,99,106,100,100,90,87,97,117,94,100,96,95,104,106,103,101,101,97,104,100,101,96,94,97,99,101,107,88,90,107,96,102,98,100,95,100,101,95,107,105,113,90,107,93,117,93,102,98,97,94,106,104,95,92,112,85,100,108,99,86,93,96,100,102,109,104,98,93,99,96,89,109,96,97,97,107,93,89,77,113,109,99,102,89,100,99,110,95,109,100,105,103,99,97,95,100,98,93,103,107,103,104,100,95,91,110,101,107,117,101,102,94,111,103,104,96,84,100,68,104,99,96,92,96,98,98,96,103,94,102,113,91,97,91,91,88,110,97,92,100,99,94,94,105,104,91,106,92,101,108,100,92,92,106,83,84,79,93,101,107,99,102,102,98,103,104,103,94,105,98,91,93,113,101,93,99,106,98,97,99,91,113,109,97,106,97,102,91,97,114,96,101,99,97,93,96,117,101,103,116,101,97,93,91,91,102,97,113,103,91,103,104,107,103,102,99,93,67,115,104,100,105,107,95,95,102,91,110,86,108,71,100,99,103,107,99,98,101,106,100,95,103,87,92,98,86,93,103,90,107,107,112,102,83,112,78,113,113,100,98,83,104,91,112,103,104,93,104,102,105,96,87,97,101,109,96,105,111,106,98,103,95,106,96,99,98,101,104,96,106,120,106,117,98,100,114,94,111,100,102,76,111,91,94,95,104,86,98,108,99,96,91,104,104,90,105,103,102,101,99,98,107,106,97,98,103,108,100,103,105,92,106,104,98,102,99,100,98,103,97,106,105,112,75,112,94,97,94,87,101,95,109,108,103,103,106,103,102,112,101,100,106,100,113,93,99,95,98,96,105,102,100,98,93,106,101,94,89,97,107,97,94,94,95,93,98,102,99,101,99,94,97,116,96,104,93,101,99,91,97,104,106,97,95,107,98,91,97,102,88,107,93,104,99,99,94,105,83,108,103,98,110,94,105,101,95,106,100,92,95,108,95,93,106,101,96,96,96,110,91,99,91,105,107,99,113,104,106,114,105,91,99,94,92,100,109,102,99,101,99,98,113,101,101,99,109,103,98,96,101,97,97,105,97,86,109,94,91,93,101,93,109,104,101,100,101,110,102,95,107,97,106,104,92,96,102,83,106,94,104,95,102,109,97,104,100,109,104,101,120,87,89,98,91,98,104,105,94,106,106,96,113,113,99,108,106,101,99,100,104,114,100,104,95,100,104,91,106,98,105,100,104,117,93,104,94,95,102,102,94,88,98,99,109,84,100,82,110,111,113,101,106,100,100,90,101,99,105,98,133,108,99,96,91,95,99,90,94,112,111,92,100,118,99,109,105,109,105,116,98,93,103,100,99,98,92,103,101,107,109,101,101,101,97,109,98,103,102,104,104,101,98,93,101,114,96,106,89,99,100,105,97,120,107,107,115,93,103,102,107,92,106,101,105,96,109,93,106,103,110,96,108,99,91,99,102,105,103,106,93,113,93,101,104,107,104,109,102,83,104,105,105,96,94,108,103,105,88,98,103,102,90,94,103,110,100,98,103,97,99,87,98,98,86,112,107,101,115,96,100,107,93,111,96,106,98,102,109,103,78,94,110,101,105,96,103,106,109,98,103,89,111,109,111,109,106,101,96,89,94,105,101,107,97,99,96,96,104,98,96,104,103,99,112,112,96,106,92,99,108,100,110,109,94,106,98,88,98,100,99,96,103,109,104,96,107,102,107,100,110,105,109,98,103,105,103,98,97,99,99,115,104,103,103,100,107,107,113,115,109,105,91,102,107,99,96,110,104,96,103,98,104,103,112,95,93,93,105,89,101,104,114,121,105,105,90,98,113,107,110,101,107,104,105,114,94,105,104,98,109,103,100,113,96,101,99,109,99,104,91,103,101,101,102,100,78,105,102,101,102,113,100,114,96,95,104,92,102,99,113,86,91,112,108,102,112,98,102,94,102,103,90,97,102,101,98,106,101,99,111,103,113,98,106,98,98,99,103,116,109,104,105,102,97,100,104,103,97,105,88,95,100,97,97,90,96,94,104,93,107,96,98,102,102,110,102,114,99,101,105,100,104,107,110,98,119,107,103,87,106,67,95,96,101,111,99,102,104,106,105,91,100,95,93,99,91,94,86,107,108,105,101,95,106,110,107,105,103,102,102,118,101,122,85,100,95,103,97,104,93,112,92,92,101,91,111,102,104,110,112,98,113,108,103,117,97,105,107,97,109,100,106,99,96,96,107,108,103,113,106,87,98,92,102,92,103,95,92,104,97,114,101,101,94,106,97,117,94,102,117,101,107,100,99,111,96,103,91,95,95,103,94,96,99,97,102,107,92,95,95,104,104,95,100,108,117,96,105,83,94,79,100,86,108,105,105,104,101,109,93,94,112,96,102,107,114,99,101,113,108,106,93,96,100,104,102,98,112,111,99,128,100,112,107,107,99,98,106,103,105,96,110,107,109,98,85,94,88,103,108,108,106,100,109,93,95,109,95,96,94,99,103,98,92,101,93,109,105,96,102,113,107,120,106,102,104,98,101,98,93,111,94,96,95,91,106,103,107,98,107,104,94,107,96,108,106,110,91,112,112,108,95,96,101,107,95,103,96,110,102,90,106,116,98,105,103,109,90,94,109,112,98,97,106,101,104,98,99,96,104,111,114,97,106,101,100,116,98,94,92,109,98,119,109,94,107,114,93,101,101,104,109,94,116,102,97,93,91,110,110,101,118,116,103,101,115,117,106,108,110,100,98,104,104,96,105,103,114,100,96,99,115,107,98,98,101,109,101,97,106,99,101,98,98,104,107,96,103,98,95,98,110,87,112,106,96,95,87,124,104,111,98,95,114,100,111,105,116,95,104,105,100,87,120,109,97,98,118,108,97,93,112,97,94,93,107,105,96,101,110,103,107,99,117,109,103,106,99,104,112,97,115,106,104,93,110,105,98,114,106,106,101,107,98,107,115,111,106,106,78,97,105,105,90,100,97,102,99,105,115,101,98,88,114,105,92,104,94,106,105,108,92,105,101,101,102,92,104,100,96,98,93,96,90,104,108,98,91,111,105,107,108,91,107,98,103,101,102,113,122,98,115,92,97,107,109,99,104,103,91,107,98,117,100,100,97,106,108,98,102,91,102,100,92,111,102,94,99,98,101,115,98,109,102,91,108,99,108,108,101,103,98,94,107,99,101,103,88,94,98,98,94,100,102,84,101,104,102,100,101,99,100,101,103,109,106,109,105,94,99,105,105,87,87,102,105,105,97,96,101,116,99,98,98,100,103,104,106,101,101,99,94,106,97,96,102,98,99,99,109,113,102,100,103,95,79,101,102,96,106,104,102,107,108,91,103,100,115,101,114,99,98,111,87,99,103,108,121,91,93,106,106,106,109,107,102,98,112,97,97,105,100,93,98,101,109,109,97,100,99,84,104,99,102,109,99,104,93,90,106,100,88,107,102,101,107,100,101,98,108,102,100,106,101,99,98,99,96,98,83,97,99,105,100,96,107,104,106,99,103,99,97,99,107,108,89,102,91,97,92,103,101,96,107,99,102,92,87,99,108,108,91,101,105,92,100,109,98,101,95,107,107,106,113,112,99,124,85,107,104,102,96,101,112,100,106,128,101,95,105,94,109,106,102,99,111,113,95,107,102,105,102,108,110,104,105,94,114,107,97,93,91,97,92,103,99,95,105,104,99,108,94,115,104,98,100,95,93,108,115,105,96,107,106,100,106,95,103,109,105,109,98,109,103,107,112,102,101,104,90,107,99,99,108,103,101,111,102,110,107,112,95,102,114,100,100,105,104,98,96,103,107,107,101,92,104,105,101,121,99,100,107,101,106,89,107,102,96,110,100,105,94,95,87,103,102,107,107,91,103,101,106,109,100,109,97,101,87,92,102,104,106,92,97,94,115,93,105,91,116,99,114,100,100,101,110,92,108,101,97,109,96,92,93,101,96,101,105,106,94,100,117,103,106,111,96,103,105,103,113,112,90,99,110,117,104,95,118,112,113,104,108,105,102,102,106,111,103,100,133,97,92,98,108,104,95,107,102,102,118,95,92,93,99,105,100,106,99,97,100,112,89,95,107,97,100,96,93,104,108,106,102,93,99,105,102,111,99,106,104,109,108,106,96,106,102,109,96,98,95,95,121,96,100,105,96,109,98,106,110,105,113,86,99,124,103,63,109,89,98,111,102,80,94,117,96,106,95,102,108,102,94,94,102,110,105,113,100,92,89,104,100,98,100,91,112,96,93,99,101,95,110,97,109,104,108,100,107,113,107,104,93,110,100,101,106,104,103,98,91,116,100,99,98,91,73,115,89,106,108,116,94,88,93,102,97,103,113,116,100,98,102,109,104,101,102,99,105,99,101,101,101,86,96,113,110,97,106,103,106,94,106,101,103,97,99,97,103,100,104,91,97,108,97,109,94,95,97,107,102,109,105,99,107,113,125,96,104,99,94,90,90,91,100,95,94,88,118,109,99,105,114,98,104,93,103,113,98,105,134,105,103,104,103,96,109,109,96,101,98,102,116,93,98,88,97,104,98,117,91,100,105,112,115,98,108,98,98,88,94,94,95,100,106,102,95,110,97,114,100,105,105,110,93,90,92,106,104,98,100,102,102,116,101,107,101,106,106,117,103,113,104,95,105,102,108,113,98,96,103,101,105,100,90,106,106,96,98,109,90,94,80,107,116,106,107,79,102,106,92,101,106,101,90,98,109,114,109,105,115,100,94,103,117,101,104,109,100,104,93,112,96,127,94,103,111,97,104,113,100,97,106,99,99,91,101,105,92,98,105,106,80,84,101,105,89,109,100,100,107,100,107,106,93,98,94,111,107,112,90,109,104,97,86, +442.71286,123,96,85,97,85,95,93,98,85,86,108,119,112,108,94,114,104,108,101,114,91,107,105,100,98,113,109,96,88,97,110,102,97,106,99,98,95,88,108,115,105,92,96,103,100,82,111,106,99,99,107,91,93,113,103,99,103,92,99,103,103,79,100,97,112,98,97,114,81,102,113,115,108,104,103,99,103,99,104,101,103,92,100,100,95,96,104,100,105,94,113,104,101,109,111,103,94,106,94,96,99,108,102,100,95,99,93,98,106,101,104,121,105,94,105,101,93,111,99,97,96,107,105,100,109,107,107,100,95,104,116,106,103,100,103,109,92,83,107,105,104,102,107,101,96,106,106,115,101,94,102,98,117,102,95,103,96,105,96,104,102,118,99,104,100,104,105,91,96,99,97,106,102,106,106,96,106,102,116,113,106,96,116,105,104,98,108,90,108,88,105,110,108,87,99,110,103,95,96,103,108,97,88,98,94,105,107,100,107,105,97,115,110,93,104,101,95,102,104,104,101,98,108,97,97,103,98,118,109,102,109,100,105,97,108,99,96,108,98,106,91,109,98,105,101,98,106,113,87,103,111,103,100,100,85,108,100,103,102,95,102,103,96,109,76,116,91,99,96,81,106,76,107,97,101,100,68,98,99,107,103,107,93,106,103,105,106,104,103,94,103,99,110,111,118,112,104,104,117,86,110,99,92,102,91,105,104,91,113,102,103,107,99,94,105,99,109,114,97,107,101,92,100,104,102,90,72,104,101,106,101,99,102,106,91,97,107,89,110,107,132,95,91,98,107,96,94,103,103,105,103,106,119,106,118,92,110,108,84,100,90,94,117,107,100,100,105,105,98,105,108,99,111,94,109,107,99,94,98,106,107,110,105,104,87,100,100,100,107,104,103,79,96,104,102,92,94,104,108,113,102,118,99,100,104,92,107,110,113,102,99,106,101,106,107,95,94,100,102,88,109,102,101,109,97,91,104,102,102,106,99,103,109,105,110,101,112,103,99,108,104,102,101,99,116,111,101,96,110,104,101,98,103,105,90,92,100,114,100,97,106,104,105,107,124,115,101,104,104,108,125,103,92,104,109,98,114,109,99,105,102,103,109,104,98,110,110,101,97,97,114,110,101,87,98,103,98,104,111,106,108,99,108,97,101,107,104,96,109,100,101,100,109,109,109,119,101,112,99,112,108,114,90,110,95,93,95,105,94,118,111,112,106,98,97,107,98,91,108,103,91,94,99,92,117,94,103,109,105,109,105,102,109,108,90,98,107,76,112,102,100,109,127,103,104,100,111,106,110,98,100,100,104,100,104,107,114,101,112,95,114,104,113,98,94,96,96,106,102,103,105,96,109,99,105,113,104,100,109,103,109,106,102,108,105,103,97,104,114,108,107,109,122,98,101,100,119,108,103,102,111,115,103,88,112,94,100,105,102,110,109,102,87,106,98,97,106,107,105,96,108,105,112,94,107,64,102,88,114,108,110,105,97,104,102,88,108,106,100,104,108,112,100,98,103,108,112,111,106,98,105,99,106,108,101,109,100,101,108,101,99,105,108,81,94,106,104,96,102,100,103,107,102,112,108,107,107,104,110,95,103,105,103,105,109,102,109,91,103,90,112,109,99,97,103,102,101,110,103,112,101,107,111,111,93,99,112,127,109,107,105,71,84,114,102,113,89,92,107,94,106,107,111,94,104,97,103,106,107,113,104,106,118,98,101,114,96,110,101,105,104,97,97,103,102,98,100,107,118,103,102,111,113,97,103,110,92,119,80,95,97,102,103,98,94,109,103,96,101,112,91,111,91,104,103,92,93,111,112,104,103,105,112,104,108,91,110,106,93,106,117,109,104,99,109,107,118,107,113,111,104,110,110,116,117,92,109,110,96,96,100,100,109,103,103,108,89,102,101,103,104,107,97,106,91,95,106,92,94,96,98,105,99,102,102,103,119,99,107,102,103,112,106,104,100,95,100,109,129,113,103,91,103,100,83,106,99,105,96,107,101,112,110,99,103,94,105,102,100,95,104,73,111,113,117,90,121,110,110,108,107,106,113,111,100,91,105,107,104,94,102,110,106,110,102,95,95,105,100,113,108,90,104,99,100,98,109,99,107,111,108,114,83,108,100,90,96,108,103,104,98,107,88,108,100,104,110,103,93,100,107,96,114,98,106,106,107,104,104,108,100,115,111,99,105,113,100,110,103,103,94,115,105,109,106,99,101,95,100,108,104,104,87,107,108,107,106,102,120,105,99,102,113,108,88,98,94,103,97,107,108,98,99,103,104,107,95,108,101,104,91,105,93,97,107,104,95,99,104,104,104,104,108,105,109,109,106,102,117,101,102,104,103,95,123,78,99,100,92,107,104,105,102,90,93,108,93,108,99,109,82,98,113,102,106,95,92,68,111,106,97,119,105,103,102,91,97,101,99,105,103,103,99,97,110,104,105,113,105,94,104,110,107,105,100,109,108,138,107,100,79,109,102,90,96,103,95,115,107,88,102,96,98,86,100,102,104,103,96,106,105,105,108,110,109,98,117,104,98,90,106,106,106,96,103,91,111,113,108,98,105,105,100,101,106,104,95,97,98,109,94,108,109,100,94,100,106,100,107,103,101,106,115,103,102,101,107,110,105,101,111,103,98,105,105,111,98,92,115,109,104,106,107,100,104,111,97,96,103,103,91,111,100,109,99,110,75,104,95,101,112,102,108,109,106,106,119,101,95,99,95,111,105,98,102,98,115,98,95,102,103,109,105,101,106,102,108,92,106,96,108,103,114,102,111,110,101,94,98,101,101,113,91,102,100,97,102,97,117,95,100,97,105,95,110,101,117,97,98,114,111,108,107,103,101,97,100,102,92,103,102,106,96,96,112,93,96,112,105,104,107,100,102,96,109,106,101,93,112,104,103,110,98,111,104,116,96,109,107,98,109,113,106,100,99,106,101,112,109,111,96,105,106,103,113,116,109,106,102,96,92,106,116,98,104,117,107,101,93,110,107,98,102,102,102,108,116,116,107,104,105,101,98,113,106,102,95,117,102,91,103,103,99,98,101,99,103,104,103,106,96,97,101,103,100,100,94,107,106,99,99,102,100,101,102,103,107,98,106,98,106,101,110,111,112,100,109,113,105,103,90,100,100,99,113,103,94,91,81,103,83,93,98,105,116,98,111,93,106,95,113,103,79,96,109,104,92,100,101,106,104,100,113,103,91,104,113,106,113,97,102,105,101,97,99,95,108,95,107,102,105,101,107,83,99,91,96,105,95,112,105,98,106,105,96,100,113,101,99,90,92,99,106,102,99,102,111,113,108,100,105,102,101,112,101,112,101,97,89,108,105,96,97,91,107,94,99,105,119,105,102,104,100,95,105,101,91,102,108,93,101,94,95,106,97,107,113,107,97,94,97,98,105,115,96,93,113,106,108,98,99,92,86,100,93,102,106,102,107,95,94,102,74,116,111,84,103,97,99,92,101,102,94,112,103,109,116,102,113,96,108,108,106,93,104,101,93,95,93,108,100,106,104,91,104,103,106,120,108,106,99,111,105,109,87,105,101,91,100,112,121,101,82,97,101,97,99,101,102,93,113,111,105,101,113,111,113,109,112,108,86,102,104,104,102,84,103,97,100,93,97,100,94,101,103,99,104,103,104,106,110,109,103,89,98,100,94,104,99,91,94,95,97,94,82,96,112,106,105,100,89,109,94,109,93,106,114,102,95,97,103,99,107,104,98,88,97,105,108,106,108,104,123,99,95,94,105,99,107,103,100,102,95,99,105,102,106,111,105,104,116,113,106,105,108,93,111,117,91,108,102,99,107,103,90,111,120,94,118,109,90,98,98,109,105,104,103,107,111,104,95,109,109,97,107,96,110,95,104,104,105,107,108,99,110,98,104,105,98,106,108,110,96,112,110,90,102,105,101,98,95,99,108,86,91,125,103,104,105,102,101,101,90,108,93,91,88,94,88,98,110,94,100,102,108,103,103,96,105,115,97,104,102,106,113,98,98,91,107,111,120,105,112,96,113,114,111,105,114,100,99,104,101,105,106,103,99,105,98,97,100,89,105,95,105,112,108,99,111,101,105,91,98,107,94,107,96,110,97,103,81,102,101,105,104,118,100,89,97,110,108,82,96,131,101,94,90,108,102,96,101,104,98,98,100,95,106,105,103,92,99,111,113,139,107,99,88,89,100,116,108,101,96,104,101,104,115,101,94,97,108,90,102,94,89,105,108,101,106,92,104,102,108,102,96,93,92,96,98,98,81,95,103,96,98,108,95,110,98,108,103,108,101,109,111,105,101,112,104,108,99,115,100,105,90,100,107,79,109,115,98,103,107,103,114,109,90,103,90,101,99,96,98,104,102,113,103,102,111,106,96,112,104,99,97,95,98,105,102,99,108,100,109,106,98,98,87,110,97,108,112,92,95,75,109,98,93,100,89,93,97,113,110,102,122,93,115,101,106,105,103,97,111,106,100,106,110,92,125,100,99,103,101,113,97,98,110,113,99,100,104,97,100,105,104,86,100,104,96,110,100,103,98,102,109,101,103,97,91,96,100,113,105,105,108,106,99,108,93,98,100,95,105,96,100,107,98,100,109,108,103,96,109,93,97,108,104,108,98,110,92,109,113,98,102,104,80,107,103,106,112,97,99,117,102,98,107,94,96,100,94,102,91,103,113,105,91,92,92,109,102,112,96,92,94,93,108,100,87,93,98,111,103,107,97,104,94,113,106,104,106,96,95,99,96,103,93,111,116,99,113,100,105,109,89,102,105,98,98,102,99,95,106,100,105,96,95,105,84,109,105,92,102,90,105,92,104,96,94,95,102,106,101,91,91,113,90,87,118,101,89,106,89,109,101,100,79,108,101,106,108,108,93,88,106,102,104,98,105,106, +442.85321,116,83,71,98,98,108,99,125,104,101,104,102,93,103,113,91,95,98,114,91,103,108,112,60,101,102,102,92,99,101,107,112,105,116,122,97,91,93,106,103,113,101,93,106,98,112,99,118,97,98,105,125,99,107,93,92,93,122,112,99,103,107,98,95,112,98,95,101,105,109,106,111,110,105,88,87,104,106,110,101,100,107,110,101,108,113,104,104,99,105,107,108,83,104,100,76,101,96,98,112,102,100,95,96,103,106,104,103,96,103,92,106,107,100,108,109,93,94,98,92,91,107,108,101,117,108,105,110,92,99,99,110,106,114,98,98,84,98,98,98,105,102,106,109,98,98,108,100,112,95,104,101,109,89,102,102,103,93,106,88,107,100,107,99,112,95,110,90,103,105,104,113,87,108,92,100,108,85,98,114,117,99,104,99,120,114,95,100,99,108,99,88,117,103,103,104,88,96,109,95,102,115,90,87,96,103,110,96,112,100,95,106,104,103,100,102,96,117,100,101,105,98,109,95,89,109,111,106,108,99,109,95,108,105,104,106,99,96,107,99,104,99,95,105,93,83,103,98,108,104,104,100,110,101,91,110,100,109,100,106,98,99,96,116,106,95,108,106,94,97,79,114,108,100,90,106,100,105,103,98,104,106,104,99,115,100,90,117,99,101,92,106,125,103,93,102,109,96,111,105,92,101,112,113,98,105,117,107,85,106,90,110,99,104,98,99,86,103,108,97,96,99,98,106,97,83,91,96,104,101,123,95,103,107,99,109,99,100,110,100,106,121,98,95,113,84,105,107,102,105,107,104,110,95,104,109,106,105,111,103,103,102,99,113,103,104,88,108,105,121,119,113,120,114,106,104,102,126,105,112,104,116,95,114,102,100,109,105,95,95,103,100,94,112,105,103,104,103,98,109,104,102,89,96,101,104,99,108,99,109,94,93,103,99,104,95,101,122,107,99,104,94,91,91,101,102,100,101,97,107,105,107,104,101,107,89,94,113,83,112,109,92,103,106,101,97,98,104,104,110,91,105,113,102,106,105,108,103,100,97,87,105,98,109,110,99,107,112,99,105,99,99,110,96,107,104,94,112,96,120,103,104,105,98,97,105,116,108,103,100,106,112,103,104,105,111,104,104,98,105,99,99,99,101,91,108,92,106,106,101,106,101,113,109,107,102,108,110,108,96,103,97,109,103,100,102,112,95,94,96,97,117,104,114,99,117,109,96,100,108,114,111,108,100,102,101,97,98,102,101,110,101,104,95,106,96,98,106,101,100,101,95,92,107,102,102,102,98,103,100,93,99,102,102,80,111,104,101,113,106,99,124,97,101,102,101,115,103,103,104,109,83,103,99,114,101,101,111,117,101,104,100,117,123,98,110,99,96,107,104,113,102,104,105,105,101,99,93,99,105,103,101,105,104,109,110,105,107,109,101,99,117,105,101,88,111,104,107,90,116,103,92,101,91,97,104,105,98,105,104,101,107,100,98,104,102,103,109,112,99,111,110,105,115,109,95,112,107,103,105,113,98,117,106,100,102,104,96,113,103,98,97,101,85,102,103,102,102,106,104,95,106,106,111,104,101,109,102,106,103,94,116,104,104,110,107,92,99,96,117,106,79,95,100,96,94,97,106,115,103,106,100,95,99,91,103,100,108,112,109,99,117,97,107,104,97,112,104,112,101,99,90,110,97,114,114,106,104,80,102,105,101,102,93,112,101,99,102,115,91,94,113,114,105,103,100,91,113,109,94,102,107,109,88,102,95,112,107,94,109,91,108,107,108,107,113,101,107,96,111,102,101,104,112,113,88,103,112,106,99,100,102,90,93,90,108,102,93,104,99,108,107,117,96,92,96,117,117,109,96,107,106,114,108,108,110,105,92,118,108,98,94,107,110,97,96,108,117,107,114,116,101,99,103,106,100,95,105,121,102,101,105,104,110,108,113,105,110,97,103,112,103,105,83,92,99,94,105,103,114,101,106,107,77,101,110,108,101,112,93,108,106,102,108,113,100,104,104,114,101,106,118,121,97,102,89,94,117,94,100,106,99,104,112,116,98,108,102,73,109,106,103,90,113,96,105,98,106,98,101,99,102,102,104,96,105,106,111,105,115,117,107,109,100,99,98,95,100,110,101,91,101,106,107,102,105,112,86,104,80,107,95,114,102,104,101,111,116,99,106,110,103,108,100,117,101,78,103,109,103,105,105,97,100,99,103,114,98,91,95,95,103,99,107,114,102,98,101,105,100,105,101,116,101,100,112,107,105,109,74,103,105,101,105,112,109,108,102,94,110,98,108,125,102,106,96,110,105,112,106,107,101,100,97,105,100,100,103,98,104,112,97,96,96,104,92,109,102,101,105,84,113,103,109,97,96,102,109,101,98,103,101,102,92,105,101,103,113,103,93,104,103,114,115,101,99,91,106,102,99,101,105,104,104,101,101,101,108,102,105,106,107,98,98,116,111,104,102,121,100,90,118,95,105,109,105,114,103,111,101,110,99,118,116,104,99,107,99,91,101,103,108,93,100,87,105,92,105,106,105,119,103,92,96,110,109,90,108,108,87,102,107,102,104,99,114,101,97,101,95,99,94,96,113,101,101,109,110,104,79,111,102,114,110,111,102,99,100,102,103,107,111,109,101,99,105,114,105,100,90,105,96,98,105,95,101,107,102,100,95,99,106,103,105,117,91,101,104,99,103,101,83,111,97,98,104,98,109,106,100,102,105,112,104,100,103,106,104,102,99,102,103,99,100,125,98,93,115,107,101,108,105,97,102,94,106,98,102,99,98,98,109,96,112,107,101,107,101,96,99,110,99,105,96,100,99,108,108,102,101,98,109,94,105,105,91,113,114,95,106,103,110,107,107,104,98,105,97,111,108,98,101,105,111,108,80,109,94,91,115,108,111,110,100,110,107,96,103,120,85,103,100,108,106,99,110,92,109,111,106,107,112,103,108,99,107,103,113,72,103,102,87,108,102,108,107,109,112,97,118,116,101,105,102,103,93,111,88,101,124,102,104,102,104,116,109,108,95,101,102,109,95,102,102,95,96,106,109,97,101,105,109,102,102,95,97,102,98,102,101,106,103,98,111,108,93,111,92,95,105,102,96,104,105,109,99,101,110,102,114,109,98,100,95,100,100,108,94,98,95,106,96,102,99,99,106,100,99,109,106,108,99,105,104,113,101,100,98,105,94,99,99,97,110,106,103,108,118,106,110,107,108,103,97,129,110,94,98,102,102,100,104,106,114,117,107,107,106,103,97,105,95,109,100,106,99,105,100,122,106,99,109,100,104,106,108,110,115,103,98,106,117,98,110,96,107,104,100,68,100,105,94,95,100,104,98,101,102,110,101,96,102,108,110,87,107,102,98,86,99,102,100,99,105,108,99,93,101,105,95,86,112,120,97,92,116,103,98,103,105,108,105,113,100,103,100,112,99,102,105,112,105,101,96,95,101,105,107,104,106,109,96,113,100,108,109,101,100,108,94,115,105,124,104,106,107,102,106,91,96,99,103,104,105,102,99,100,111,100,101,85,92,91,96,108,103,100,103,115,113,110,102,113,99,104,79,100,116,98,101,92,98,106,106,107,86,114,103,100,112,98,109,104,102,104,120,97,109,94,104,96,111,100,92,100,109,103,98,108,102,117,103,96,99,115,100,98,120,107,95,104,109,96,99,116,113,97,103,102,113,113,105,106,115,105,104,108,104,107,89,104,100,106,104,99,99,106,94,94,103,95,105,104,99,106,90,109,98,102,109,103,94,110,108,101,100,127,98,101,100,82,99,94,100,106,104,109,111,100,95,105,100,100,98,102,97,98,107,101,100,94,113,99,91,109,113,104,93,89,100,93,102,101,100,109,92,95,96,101,87,104,108,99,93,103,101,96,95,95,111,97,102,93,98,110,96,97,98,117,97,94,95,111,106,98,103,109,109,102,91,97,98,99,98,102,108,109,99,95,95,92,106,112,95,100,100,106,94,102,103,112,99,100,112,103,106,101,97,100,94,110,98,105,96,101,108,102,86,105,107,95,105,104,88,106,117,102,110,107,101,103,106,106,100,106,106,112,124,98,110,106,99,105,114,102,104,108,102,112,112,96,101,109,93,100,113,103,96,107,112,101,87,97,100,106,92,92,106,96,111,93,98,97,80,109,102,108,106,101,101,95,102,105,102,110,112,91,114,109,78,116,74,101,101,101,103,109,101,105,104,112,96,104,104,107,89,108,117,112,94,93,109,102,107,98,110,90,102,93,105,98,97,120,110,109,107,106,99,97,102,104,95,117,103,97,103,100,87,104,100,111,106,101,108,105,100,114,104,99,106,104,102,109,97,103,100,99,91,108,120,103,113,101,99,95,94,107,97,108,114,109,95,108,101,95,102,94,87,104,106,104,91,104,97,103,112,100,107,96,98,106,106,103,95,100,83,71,95,104,103,108,92,108,104,79,87,104,104,87,96,97,97,103,103,104,107,89,97,96,113,93,99,91,103,107,112,97,120,107,91,99,87,105,92,100,89,105,95,101,106,106,103,101,99,101,107,104,92,90,108,78,105,101,109,85,95,110,96,84,93,104,97,87,106,116,103,98,100,122,105,95,95,113,106,101,104,91,110,106,98,102,107,104,93,108,90,113,120,115,108,97,105,83,95,102,98,102,101,102,97,93,96,83,110,109,107,82,95,95,97,106,107,105,109,112,90,96,92,101,83,106,107,117,90,101,93,101,105,94,99,103,94,99,105,109,110,73,107,97,104,93,108,100,109,96,105,106,106,70,116,113,91,100,105,102,100,95,98,98,109,115,97,103,95,102,102,107,79,103,107,103,122,111,93,79,101,99,97,109,96,89,95,112,106,102,108,102,97,99,99,112,108,109,100,91,106,96,91,93,99, +442.99359,103,107,92,89,105,106,88,94,100,106,98,98,103,85,89,74,95,111,110,101,102,94,88,93,98,105,93,102,98,108,99,86,94,101,103,95,121,99,83,100,98,92,90,85,69,114,89,101,109,110,96,92,105,93,105,96,106,111,101,95,97,101,93,103,109,91,107,112,96,86,91,108,100,114,102,99,94,113,100,99,99,104,105,101,106,89,103,79,121,110,99,78,97,101,103,112,97,102,96,105,102,113,94,102,105,92,98,97,97,94,106,94,112,89,99,105,107,108,120,103,99,103,114,102,103,106,104,88,108,100,114,124,95,92,105,106,100,111,99,95,102,110,95,100,95,109,100,103,86,95,102,104,105,100,93,99,92,104,97,101,105,102,116,110,103,87,100,93,112,104,97,100,94,93,100,105,109,98,117,101,86,104,97,113,98,106,103,88,117,87,96,106,106,95,103,101,106,110,105,110,97,103,88,106,89,105,115,102,100,114,110,101,110,109,94,103,105,101,94,102,100,99,93,94,87,99,98,103,99,107,101,95,102,97,100,106,100,100,113,107,104,103,107,97,85,91,101,102,104,102,91,102,104,98,108,103,105,104,97,108,109,104,100,98,95,103,106,107,102,101,109,100,100,116,104,107,102,103,101,112,107,92,100,111,98,102,95,95,102,107,104,97,103,110,104,113,106,105,109,100,93,99,106,100,102,98,97,120,106,109,105,110,95,103,104,90,96,101,108,109,81,99,102,101,104,102,95,97,107,116,109,92,100,99,76,114,104,93,97,114,108,109,90,84,111,106,96,101,113,104,96,95,96,81,103,108,113,104,103,104,114,99,99,99,106,92,108,107,110,96,109,88,100,106,80,93,106,105,94,107,100,110,102,97,99,98,114,102,104,98,105,90,100,105,102,114,112,105,105,105,107,101,117,99,95,100,101,103,113,100,91,91,107,101,96,99,95,101,102,100,105,100,98,100,99,100,112,107,97,102,105,101,106,97,109,99,102,105,99,104,102,96,108,94,95,83,91,88,102,110,100,96,99,115,100,98,101,96,105,111,101,94,92,107,95,103,97,102,94,109,97,108,89,87,109,94,103,114,99,104,103,95,112,86,108,99,102,94,106,101,118,101,101,104,97,103,104,112,102,95,116,105,104,108,82,108,92,96,101,104,109,102,104,103,108,115,103,104,104,110,97,103,115,108,109,98,98,117,76,104,95,109,107,106,103,117,101,106,98,94,96,110,99,115,95,108,93,110,113,118,109,114,103,83,98,100,95,100,92,85,99,100,104,99,83,103,113,110,112,97,99,101,110,104,95,105,100,92,98,97,102,89,95,92,92,97,115,112,103,88,98,113,107,102,89,107,98,105,112,109,104,109,107,94,110,108,99,110,104,102,110,98,95,104,112,104,106,91,114,95,119,100,108,98,105,92,89,104,94,101,99,96,102,97,103,94,95,105,100,106,96,102,92,107,101,99,99,100,105,98,80,109,101,106,115,106,100,123,101,102,108,110,98,103,93,98,107,96,97,119,92,104,99,111,101,107,87,97,94,96,114,106,108,105,102,99,104,104,112,99,125,108,113,103,96,111,96,104,100,112,101,99,111,101,103,109,100,96,95,101,93,95,106,102,110,99,97,106,102,113,105,92,99,94,108,103,96,100,113,109,137,99,89,91,107,92,107,105,88,93,110,111,99,103,101,106,105,97,101,108,114,106,97,83,91,96,108,89,114,98,108,106,103,99,92,102,81,118,95,81,102,108,100,98,103,83,97,100,98,101,101,106,104,108,104,108,111,108,103,107,116,100,95,116,99,106,88,106,113,106,86,118,95,112,110,114,106,106,111,107,114,94,98,111,104,103,109,102,98,95,110,104,106,105,100,88,106,108,114,79,120,92,108,93,98,102,108,103,101,101,110,103,101,113,91,95,96,86,104,92,100,98,103,104,104,100,94,101,104,96,102,96,67,106,107,105,106,101,110,105,99,114,109,95,95,100,101,100,96,103,104,101,104,103,108,101,98,105,90,93,111,99,105,96,121,100,105,101,99,97,117,112,106,97,110,85,111,110,95,104,104,114,103,105,106,106,94,102,99,105,103,94,106,104,96,110,98,110,106,109,111,106,105,105,102,99,95,95,94,95,91,88,85,104,102,102,100,108,99,101,109,84,111,105,107,106,101,96,101,106,93,94,106,97,115,109,90,94,104,128,111,100,108,105,99,104,108,100,98,97,101,136,91,95,113,105,98,101,101,126,105,94,104,94,83,102,98,103,96,96,98,107,102,108,111,109,101,94,91,86,93,103,101,97,109,118,86,102,102,91,111,108,101,99,101,91,91,102,102,94,100,102,110,105,109,107,107,104,100,99,94,103,103,108,92,100,102,102,95,110,93,106,113,103,83,102,109,89,100,93,100,102,103,72,91,91,104,102,105,105,85,98,105,110,96,120,103,95,87,98,96,109,99,106,100,107,92,107,99,104,103,102,105,99,91,114,105,100,101,108,102,118,106,102,104,116,100,114,97,95,97,122,101,96,100,98,106,103,95,105,96,102,95,102,98,96,106,104,109,94,111,112,104,89,100,94,95,114,110,91,95,104,95,94,100,101,98,100,106,99,104,101,107,107,109,105,105,108,104,92,92,94,89,96,105,113,96,91,110,104,100,89,106,94,109,113,84,104,93,80,106,86,97,101,104,98,115,109,97,104,102,106,99,103,106,104,98,83,96,110,99,105,94,98,106,114,99,107,95,98,92,99,107,96,115,105,108,111,102,104,105,97,99,92,107,109,100,92,113,101,112,103,98,107,101,102,97,107,121,94,102,85,107,105,108,93,102,82,101,92,78,95,89,117,106,104,119,126,93,120,115,107,117,97,117,96,96,116,98,98,106,95,104,98,106,94,97,99,100,97,101,98,113,106,106,113,80,101,112,94,111,104,109,94,101,94,94,102,110,100,98,111,100,106,96,92,104,108,109,109,106,93,88,94,100,98,104,98,94,105,106,99,94,93,108,102,102,106,107,105,100,100,98,114,109,101,106,98,94,112,96,105,107,94,103,103,112,96,84,117,93,108,96,97,84,106,99,101,94,99,109,109,99,92,102,98,105,96,106,109,101,94,106,99,117,96,104,111,105,117,113,87,95,108,89,105,109,97,95,112,96,96,101,106,103,108,86,111,96,95,112,111,103,96,101,108,104,105,102,75,95,106,102,101,103,105,96,108,94,99,97,95,95,104,103,111,102,98,97,102,90,88,111,117,108,105,100,112,96,103,95,101,116,120,105,99,80,72,100,114,96,103,98,95,102,102,112,115,109,93,102,115,95,102,99,109,96,102,116,99,101,114,102,80,105,102,112,99,110,117,107,99,105,94,85,117,106,104,96,95,82,109,98,122,113,101,87,103,104,93,101,96,107,97,103,104,95,115,103,108,105,107,95,93,100,106,103,104,114,92,94,105,91,101,109,98,112,93,104,106,98,97,98,94,112,107,110,111,108,110,96,100,94,106,111,108,110,98,109,92,115,99,103,108,100,102,100,87,94,110,108,92,107,109,97,107,92,96,105,110,101,110,106,104,103,104,97,105,111,100,108,96,102,111,102,98,99,101,98,106,92,108,103,90,116,93,100,95,95,94,102,101,104,97,87,102,90,102,102,103,104,102,103,107,93,102,101,108,104,95,103,105,96,107,100,92,101,112,105,95,114,103,113,105,103,111,106,99,94,106,102,101,96,96,97,105,105,100,96,106,104,91,99,97,99,95,102,95,96,106,108,86,108,102,106,101,106,80,106,100,99,100,84,102,107,103,93,102,108,99,81,107,102,90,96,102,106,108,97,110,93,100,104,109,96,87,94,98,100,107,113,99,99,103,104,105,102,96,97,104,107,105,97,101,87,92,102,94,99,95,105,108,95,91,100,96,112,99,101,106,102,103,101,94,103,98,99,97,106,105,95,100,89,105,101,105,106,98,95,95,100,101,104,100,103,109,107,97,89,99,105,103,110,97,102,85,109,106,109,108,117,108,93,103,96,113,101,96,113,113,92,101,95,104,103,99,113,91,103,100,95,99,91,104,112,110,107,105,106,105,105,107,101,98,87,120,111,106,92,105,98,112,98,140,99,96,85,104,89,97,91,96,99,98,105,95,106,112,97,96,105,99,90,85,108,109,106,121,98,104,105,106,113,105,98,114,98,99,123,102,96,101,104,100,106,91,100,98,104,109,115,102,109,100,105,95,100,109,104,87,87,111,100,99,100,102,95,115,101,99,90,98,98,96,99,108,105,98,99,99,92,108,102,108,99,101,108,105,98,101,107,103,102,111,106,104,103,102,84,107,103,91,100,127,97,92,97,101,101,107,94,105,109,100,102,112,97,107,102,100,107,99,99,94,103,105,104,107,109,88,111,99,102,96,98,106,95,101,106,103,110,112,111,109,109,100,101,103,113,79,106,115,99,106,96,95,98,96,84,112,97,91,86,102,102,94,90,90,107,98,71,103,93,93,96,110,97,113,97,110,101,97,99,109,98,109,112,99,96,106,96,99,96,112,101,105,107,112,114,85,103,108,110,101,104,105,99,103,79,106,110,91,112,107,121,106,101,94,102,104,100,98,100,108,89,117,98,82,95,115,109,102,92,83,95,102,95,95,95,90,99,95,81,98,103,93,98,92,102,103,125,112,101,103,95,87,105,97,111,105,117,99,103,101,94,91,99,106,96,97,93,87,85,105,98,88,96,92,109,96,100,81,96,100,107,94,88,102,108,112,91,104,102,96,95,99,107,111,102,93,102,113,94,101,100,95,109,76,106,100,94,109,101,94,91,99,90,103,83,104,104,116,90,101,96,97,87,89,87,101,113,106,113,88,109,96,97,111,96,92,94,84,94,90,106,96,96,85,97,104, +443.13394,93,101,92,112,95,90,107,105,105,86,102,99,100,108,71,67,103,102,114,112,97,113,81,98,114,94,101,106,102,89,109,88,110,99,106,104,112,95,107,97,81,104,83,107,106,112,101,105,104,98,83,97,108,99,95,105,98,99,111,99,111,111,108,102,113,110,96,117,99,100,115,97,95,107,102,103,104,74,98,94,95,104,100,104,105,95,95,98,103,105,105,111,109,108,92,97,97,100,95,102,95,101,90,103,109,107,106,110,95,78,103,109,99,105,110,99,109,97,78,103,107,95,96,98,102,99,114,96,90,78,101,106,115,102,103,120,92,88,101,113,109,101,99,107,96,113,98,74,95,109,103,104,103,95,110,113,97,100,107,101,99,106,94,97,104,105,106,103,102,101,107,96,95,108,107,96,82,101,95,106,99,103,109,93,112,97,110,91,103,102,92,71,101,94,98,104,109,95,109,116,104,98,99,99,96,95,121,102,107,95,104,100,102,95,103,108,109,105,109,99,104,96,102,100,95,105,114,106,111,107,111,110,103,105,105,109,103,104,95,99,103,99,120,99,96,98,114,99,104,108,104,104,97,97,100,104,97,104,94,101,109,99,102,103,108,76,104,104,108,94,97,98,102,101,101,97,100,117,84,104,107,99,100,101,109,116,111,106,95,99,109,102,116,96,104,107,96,102,101,97,107,109,100,102,100,111,112,99,112,102,101,93,108,97,113,89,104,116,99,103,103,103,108,101,113,99,95,93,104,113,112,113,92,99,102,94,102,105,104,92,105,94,93,91,104,101,102,104,109,97,103,101,105,98,121,100,101,111,105,109,113,105,108,95,95,87,103,110,110,99,112,104,107,99,108,103,109,103,99,114,105,131,98,105,109,94,102,94,111,101,106,108,113,101,114,96,99,111,104,98,104,108,104,107,117,101,109,102,103,102,99,92,101,95,103,99,103,103,96,92,96,115,100,102,100,92,89,101,109,99,103,109,96,105,97,104,96,114,94,102,94,109,106,98,108,106,105,96,114,107,109,98,109,107,110,95,100,98,104,91,97,84,109,100,103,102,99,104,102,115,104,109,96,95,105,87,100,100,100,105,113,114,98,100,113,114,105,107,100,96,113,103,99,94,95,101,103,95,99,92,116,118,96,112,100,95,95,99,99,101,111,104,103,101,95,113,99,99,106,113,99,108,102,108,104,102,102,105,103,102,105,92,95,95,96,102,108,105,103,117,95,106,94,100,104,93,111,106,107,114,106,103,103,111,95,114,118,106,99,106,103,95,106,107,105,111,91,100,109,100,91,96,112,96,103,105,103,110,107,95,95,104,115,92,104,102,117,101,92,92,112,105,99,109,116,112,96,100,109,112,101,106,107,101,107,94,102,95,98,102,104,118,112,108,98,100,92,99,108,107,105,102,99,106,103,110,93,112,116,93,109,101,96,108,100,102,98,99,111,106,114,104,112,105,99,99,105,103,112,109,98,92,100,117,95,113,107,100,95,90,98,115,81,105,103,104,106,116,111,99,111,101,108,100,87,118,103,108,102,99,106,101,108,97,93,106,107,108,89,113,93,108,106,118,115,91,120,101,92,87,112,105,110,86,94,108,92,106,94,99,95,106,105,92,101,94,104,110,103,95,103,104,99,112,95,92,107,104,103,109,113,111,96,129,105,110,111,102,99,99,120,102,103,104,99,102,111,107,109,103,115,95,107,106,103,96,91,105,111,96,104,111,99,110,91,94,93,93,105,94,109,113,126,112,98,107,92,96,99,110,105,115,106,115,96,107,109,110,105,115,111,103,104,107,99,101,104,91,98,103,100,104,89,105,115,98,110,107,95,111,114,94,110,104,113,104,113,103,103,99,117,99,106,107,91,107,99,94,103,99,111,104,105,108,107,108,115,104,104,104,98,99,109,95,114,107,106,100,94,109,101,99,115,97,98,102,99,107,105,111,106,94,116,99,122,117,99,98,98,96,114,110,100,101,99,100,117,88,111,95,102,110,116,83,110,110,117,120,99,114,119,110,98,112,98,103,102,97,112,103,116,95,115,90,109,96,111,103,112,90,109,121,97,98,102,98,105,93,99,102,106,115,106,102,103,106,105,122,102,112,101,107,99,110,94,98,102,106,105,114,109,99,102,107,92,101,97,78,101,104,111,106,105,111,105,108,104,99,99,95,96,99,103,102,100,112,110,88,110,103,96,99,108,102,93,105,99,86,101,102,95,106,99,88,108,103,108,102,109,110,99,104,105,102,87,98,104,104,99,101,109,100,104,95,105,101,83,99,97,108,99,93,103,94,95,130,104,100,97,106,116,103,98,103,96,103,104,104,111,98,105,92,114,100,108,90,105,105,105,102,109,95,94,112,91,104,113,95,102,100,98,109,106,101,103,87,91,99,83,106,100,112,118,105,96,97,95,102,109,104,94,104,99,99,90,105,109,103,96,103,99,95,101,109,104,107,102,98,128,101,109,103,108,113,106,121,99,109,112,95,105,102,107,112,105,112,103,89,108,100,104,108,102,101,113,109,104,108,92,102,112,112,72,105,103,97,103,103,118,102,103,105,103,106,103,101,108,113,110,95,103,88,99,100,103,108,107,109,107,103,107,104,110,99,101,104,108,101,97,97,99,93,118,99,108,103,112,101,112,99,95,97,112,104,102,113,105,103,90,117,108,111,102,102,109,105,105,103,101,99,116,109,116,80,106,106,132,103,112,90,71,106,102,116,106,108,110,103,109,105,110,106,96,103,111,110,102,105,102,109,107,101,120,108,108,101,108,109,101,97,95,110,104,113,112,109,112,108,94,117,114,94,107,111,103,91,104,102,94,99,110,107,113,109,92,88,96,116,109,116,101,103,98,105,96,93,98,111,97,80,119,104,103,120,91,90,102,103,103,97,100,97,103,104,110,102,94,99,97,109,109,122,104,108,98,108,108,106,106,107,104,103,98,108,98,101,104,102,100,101,97,108,106,101,102,106,103,110,108,94,104,112,108,99,111,108,115,109,99,96,112,93,91,93,106,124,117,107,106,113,82,95,101,103,100,90,115,102,109,112,101,120,108,101,87,107,92,105,112,111,72,102,109,98,111,98,102,99,95,90,99,112,112,111,104,113,104,96,97,104,109,89,99,108,100,101,85,104,90,103,79,97,102,100,104,101,101,99,112,92,93,110,101,102,94,95,101,114,99,106,101,109,101,102,99,90,99,107,106,134,112,105,97,103,95,104,114,106,107,107,105,106,108,103,103,100,96,108,112,103,94,99,102,105,106,96,100,99,115,106,101,100,100,95,117,106,123,116,128,97,110,105,103,97,101,104,107,104,95,109,97,115,101,102,97,106,104,99,106,112,97,103,108,100,105,102,109,103,111,99,92,96,106,115,106,106,92,109,99,101,95,97,105,112,107,101,101,91,113,103,94,112,107,102,96,98,103,104,100,120,104,101,102,87,84,105,104,100,115,102,106,113,107,98,104,96,99,115,112,100,98,98,99,86,106,113,104,110,103,97,101,107,113,111,101,101,94,106,112,102,107,111,99,95,99,122,106,102,108,112,108,96,100,107,113,101,111,107,100,99,97,103,98,110,100,110,94,106,100,104,101,109,105,114,112,100,111,108,99,101,107,111,110,110,111,109,97,106,98,101,112,95,102,101,110,104,91,102,108,96,116,98,100,101,99,101,108,111,108,101,90,102,103,112,104,103,106,111,98,117,105,89,95,98,102,110,104,87,111,99,110,101,106,108,102,94,103,99,103,104,107,97,122,112,104,107,99,96,103,113,90,105,98,119,97,107,101,106,110,95,109,104,111,96,96,97,100,107,99,111,101,113,95,98,98,110,113,104,100,97,82,104,107,99,93,115,105,100,99,96,101,108,104,102,102,100,109,100,92,103,84,97,105,105,99,105,103,104,108,91,103,102,106,104,101,106,106,103,102,100,104,108,94,104,102,109,106,110,99,101,112,108,106,110,105,97,115,108,91,103,100,109,102,124,96,100,94,109,114,110,106,102,113,103,95,110,106,105,100,110,99,114,94,105,99,107,109,107,117,106,105,99,95,107,108,109,97,112,104,91,97,110,102,122,99,105,102,112,116,105,109,106,111,104,100,106,99,104,99,99,97,105,103,97,103,101,106,108,89,115,107,101,104,101,107,99,102,86,100,95,112,105,108,102,120,116,98,92,104,107,99,100,96,102,101,111,108,106,103,102,106,97,108,99,102,107,98,107,102,103,101,111,125,107,96,106,102,111,108,96,106,102,83,111,92,108,99,109,100,107,85,97,99,97,107,97,103,100,105,102,97,102,103,104,108,106,107,113,90,92,107,101,104,95,89,101,116,110,101,109,108,103,99,95,115,105,106,115,96,106,95,102,96,104,117,104,106,107,101,99,104,94,104,111,111,123,101,110,95,100,118,100,98,103,105,107,95,100,107,112,108,97,105,104,102,88,110,97,105,105,120,106,108,113,102,102,100,102,111,104,111,113,97,113,100,108,108,104,110,98,106,101,101,102,103,105,104,105,96,105,106,105,100,118,102,71,106,98,110,120,105,111,102,104,88,91,96,102,98,113,104,105,104,97,112,97,99,105,111,105,103,101,112,111,106,106,106,105,108,116,106,100,95,104,104,104,105,103,111,121,118,107,106,116,101,124,105,108,109,92,98,104,103,100,105,100,103,99,105,99,98,107,99,104,106,102,103,102,98,98,100,93,107,102,102,95,117,102,98,114,120,104,106,112,69,109,104,97,99,104,103,106,104,95,107,107,99,101,101,107,102,95,110,112,113,109,107,99,96,94,104,91,93,104,112,100,95,109,115,95,113,82,103,105,109,102,96,107,97,93,113,105,105,97,101,104,87,125,95,104,109,87,106,109,113,97,106,110,120,97, +443.27429,91,96,113,93,91,106,101,99,78,102,102,101,99,88,108,95,96,107,102,77,75,99,98,108,90,89,92,106,102,98,100,114,98,95,96,99,108,100,112,94,102,103,94,111,106,110,104,100,96,106,98,69,92,92,103,90,78,97,103,92,112,104,97,95,88,96,84,102,94,86,100,110,90,109,94,113,98,97,93,80,96,111,96,101,91,96,97,107,91,93,101,107,95,96,103,98,96,98,90,95,81,95,90,105,95,102,106,96,101,90,95,91,102,96,99,103,115,114,101,93,104,104,110,110,100,101,103,97,97,91,94,101,96,97,115,98,97,91,108,109,117,113,113,98,91,99,101,111,97,97,101,98,109,98,93,101,94,101,116,100,103,94,101,101,104,96,93,95,106,94,103,97,91,101,94,96,109,91,104,101,87,94,107,108,103,101,100,90,108,103,97,79,103,99,103,84,97,89,100,106,109,96,98,105,93,103,100,102,106,101,106,101,110,96,103,103,95,100,107,107,99,107,96,102,97,100,106,99,109,100,96,100,105,96,94,95,98,107,108,112,118,105,111,96,96,95,112,103,115,95,120,102,106,91,95,112,79,115,97,106,92,102,105,103,95,103,90,99,106,96,100,97,103,98,106,101,90,105,89,99,113,94,97,108,99,102,92,92,103,97,90,105,104,106,101,108,114,89,108,102,104,101,98,103,90,105,104,110,94,109,91,107,100,105,102,91,95,92,98,116,111,101,102,99,102,99,105,91,107,106,101,98,113,100,91,106,105,96,96,74,106,108,99,90,92,109,103,105,103,106,102,109,90,111,101,91,105,106,96,102,97,105,99,108,101,114,106,100,94,106,107,97,103,103,107,88,101,107,103,99,94,106,98,103,100,110,102,94,106,109,108,90,106,104,102,102,106,103,95,76,100,101,108,104,96,94,116,105,105,111,92,100,97,104,102,92,96,103,110,109,97,106,87,103,100,105,111,96,99,111,87,96,106,88,100,108,87,109,95,93,114,106,101,98,107,107,91,89,109,101,90,87,108,104,105,95,100,95,105,101,111,90,109,111,108,112,83,114,86,108,93,102,105,96,99,94,87,106,99,94,105,108,118,107,82,115,95,95,106,95,101,111,99,113,103,101,102,98,101,100,103,101,105,101,98,106,101,105,96,110,107,94,98,101,86,96,109,98,99,106,95,95,91,99,103,109,106,107,102,111,93,104,101,101,92,97,112,102,99,95,94,103,92,103,107,90,109,90,91,99,96,93,97,112,95,105,100,97,90,104,100,94,100,109,96,105,112,106,94,105,100,101,106,99,104,103,94,106,99,83,107,105,97,111,126,96,100,102,69,95,98,103,97,90,99,104,110,109,114,97,90,104,105,99,105,105,88,99,101,102,98,102,93,103,101,103,102,109,114,97,97,103,110,94,116,107,105,103,99,108,108,98,89,109,95,106,99,96,114,102,99,110,111,101,96,88,100,99,105,107,99,96,104,101,95,103,114,115,100,114,107,95,95,97,100,106,103,97,116,108,106,102,112,96,99,111,105,104,106,106,94,93,114,96,87,97,90,105,91,97,100,110,103,100,114,93,103,102,99,94,103,92,112,104,99,113,103,111,103,96,95,99,97,86,127,99,100,102,105,96,97,95,101,119,107,95,90,98,121,112,95,100,85,100,100,95,96,104,106,95,98,87,108,111,99,106,99,104,101,102,101,97,103,111,109,117,102,92,101,90,95,95,104,104,90,102,88,109,107,93,91,106,107,94,107,103,109,77,105,96,99,95,105,101,109,99,100,101,96,96,114,102,108,114,105,105,101,103,108,101,110,95,93,102,113,110,95,99,104,128,94,94,113,91,102,103,111,105,95,100,87,110,82,95,102,90,99,107,102,93,117,101,98,97,101,106,106,109,96,109,110,109,111,108,92,105,91,98,105,105,102,93,108,118,105,99,103,100,98,102,106,89,107,111,108,99,101,103,98,113,100,114,109,116,95,113,116,105,99,92,115,85,99,96,101,105,105,113,97,77,97,107,104,99,92,94,133,109,112,103,93,106,98,105,99,97,97,103,88,66,105,117,113,109,98,90,103,94,96,97,100,115,90,101,93,98,97,99,102,104,100,93,103,101,90,99,104,112,103,99,97,103,112,98,102,103,90,94,96,93,112,95,107,104,125,98,107,90,96,111,107,101,117,92,105,96,102,114,99,106,95,90,75,105,104,94,102,99,107,101,96,71,101,107,101,88,102,120,99,94,120,101,86,102,97,99,90,107,94,82,99,103,98,102,84,103,95,95,92,98,96,112,119,96,99,94,106,102,107,108,103,95,116,80,112,100,91,106,99,94,106,110,102,109,109,96,96,102,94,95,82,104,96,90,98,106,91,113,95,91,108,105,113,100,104,89,89,108,118,97,105,97,104,102,101,99,95,98,104,113,92,110,83,101,97,103,100,108,108,101,110,115,92,102,97,104,97,100,105,118,101,76,104,103,87,116,104,94,112,99,97,99,106,91,98,110,110,98,107,96,114,112,85,95,106,97,102,101,104,108,94,103,107,95,98,102,95,90,104,105,92,113,110,106,95,117,99,95,91,110,85,91,115,94,114,96,109,99,102,92,95,97,108,101,101,100,105,96,98,113,102,101,93,102,96,108,117,100,102,98,128,106,106,116,108,89,100,94,110,96,118,110,107,107,113,99,102,100,103,91,110,84,104,96,90,95,99,99,117,109,107,108,109,101,95,99,97,104,100,109,101,104,86,106,91,73,96,101,94,98,108,104,92,112,105,116,101,112,90,112,99,104,102,131,100,107,99,97,98,94,68,110,104,109,98,96,113,109,112,98,116,92,111,105,110,98,99,101,102,107,110,104,101,103,113,106,102,98,95,105,111,111,95,114,95,94,99,104,86,100,107,99,104,102,106,105,103,103,107,108,105,102,93,95,104,105,102,103,106,102,102,105,109,114,105,113,94,107,101,105,103,100,102,101,99,106,106,95,97,101,76,112,106,99,110,110,113,96,100,89,105,103,93,99,108,99,109,117,101,110,129,104,108,105,100,89,110,109,100,112,100,96,105,108,102,103,104,111,102,91,108,105,112,109,109,109,96,102,109,101,103,110,110,104,108,105,109,113,104,108,101,95,92,107,107,109,101,104,100,104,113,105,105,111,109,103,104,101,117,92,99,97,100,102,100,102,106,107,103,98,112,109,101,111,100,108,108,99,102,101,96,104,95,95,109,112,106,101,112,109,100,108,113,98,91,100,101,92,102,100,100,108,111,102,109,96,109,108,107,98,91,101,106,87,97,107,110,102,109,96,117,102,100,106,101,109,95,95,101,97,100,103,109,116,101,103,108,105,95,101,98,96,112,83,99,101,99,107,106,95,94,109,98,100,109,96,98,105,110,111,107,106,116,103,88,102,103,106,96,99,104,105,101,69,105,99,89,99,106,106,109,104,98,111,109,93,99,76,106,95,101,99,106,106,111,81,110,109,117,115,102,103,105,117,96,102,98,102,105,101,97,104,101,99,102,105,113,114,87,110,87,112,107,119,107,100,90,106,103,102,104,98,92,98,101,102,114,105,112,94,99,102,102,109,99,106,97,89,106,99,94,94,107,108,108,100,103,107,104,106,102,85,106,104,87,99,108,114,90,100,98,95,100,108,108,98,93,107,102,93,101,119,97,104,99,105,116,102,99,97,96,108,97,108,105,101,99,130,110,82,101,101,101,97,111,97,88,105,101,95,107,92,95,99,104,101,103,104,98,98,106,104,98,99,87,103,99,92,110,107,101,103,93,105,107,108,104,102,102,100,110,113,88,102,109,110,103,99,108,119,95,110,90,104,101,107,109,98,99,98,100,99,99,115,99,93,105,102,99,95,105,104,92,65,102,113,98,98,107,100,101,87,104,95,82,97,95,96,108,87,105,100,100,94,111,99,103,103,113,105,92,101,104,103,97,89,106,102,97,107,113,101,95,117,96,115,96,96,103,101,119,111,91,108,106,92,97,107,104,99,113,114,102,97,93,104,109,110,105,106,106,104,103,103,97,107,117,73,108,106,96,89,79,103,100,110,116,112,113,108,104,102,97,102,118,112,104,102,113,93,109,110,101,101,100,106,98,103,98,103,88,98,100,109,101,111,103,96,104,120,109,97,98,92,87,100,102,97,117,102,100,107,108,101,106,107,98,108,113,101,106,96,106,109,91,107,101,95,94,112,100,99,97,102,77,108,99,102,87,99,106,112,110,99,98,102,100,97,89,104,110,87,106,102,99,100,105,99,103,104,109,99,113,102,104,103,98,100,91,115,105,92,95,105,110,91,92,94,92,108,112,81,99,106,108,89,97,104,115,104,98,108,113,110,98,103,103,93,103,109,105,108,101,98,100,97,102,81,112,105,109,104,102,95,102,98,95,104,99,92,103,99,96,101,100,91,104,96,93,99,98,101,108,111,100,88,109,102,100,95,103,91,102,106,95,90,94,98,100,105,93,108,84,111,99,110,108,108,96,98,96,88,110,109,102,93,99,112,101,105,102,107,90,102,111,115,108,111,99,107,101,102,98,105,91,104,100,101,95,106,95,96,110,101,87,107,108,117,101,95,102,90,102,106,107,97,105,101,96,108,106,95,106,98,103,102,112,99,108,116,93,104,102,98,82,95,76,102,111,104,91,92,95,97,100,91,100,93,121,101,105,115,111,101,95,92,101,95,102,99,106,98,90,96,83,106,132,109,92,94,105,105,83,105,97,113,109,106,103,103,102,98,103,94,96,100,115,116,110,99,102,97,98,91,91,96,90,120,90,102,121,105,99,94,114,104,93,92,103,98,99,110,95,100,98,100,94,99,107,100,98,107,94,113,93,105,107,93,109,108,113,105,94,90,98,105,94,107,103,79, +443.41464,90,102,95,100,86,105,109,89,102,103,91,101,105,96,105,99,101,100,100,92,116,98,91,95,105,112,112,109,94,100,110,103,81,107,109,101,108,104,101,97,108,102,98,87,82,116,100,115,117,112,96,106,99,101,107,92,99,94,109,103,86,96,105,99,107,108,84,94,73,93,101,100,89,102,103,105,97,109,105,93,101,102,98,100,108,95,100,106,104,100,101,103,102,99,109,105,93,110,113,93,112,111,95,88,91,105,105,103,114,92,103,99,99,96,99,96,103,98,108,104,107,114,105,108,99,107,92,104,110,108,108,98,91,101,89,97,96,101,94,95,83,105,101,103,92,103,112,98,97,108,99,95,98,102,91,100,105,114,105,104,102,106,97,101,104,111,123,101,108,103,100,95,104,109,88,88,102,87,119,89,107,108,101,101,92,93,100,93,100,98,96,100,99,102,111,104,95,97,104,98,105,112,109,98,97,118,107,104,103,96,103,93,106,103,103,104,103,101,104,110,118,104,112,117,108,119,109,108,109,95,110,99,95,100,99,104,95,100,98,109,104,100,98,110,106,101,102,103,110,102,114,108,98,114,107,105,113,109,95,101,101,100,95,109,100,108,98,103,123,106,98,102,104,114,109,95,106,96,96,95,106,106,111,102,118,100,99,101,88,107,103,110,99,109,101,113,103,105,112,95,89,108,103,99,91,97,86,97,101,101,95,114,106,104,116,98,99,104,101,100,103,74,105,103,113,100,94,101,117,105,102,100,96,98,110,103,94,104,93,108,110,99,97,95,97,114,103,110,114,125,98,98,100,103,106,105,100,103,95,103,94,105,101,101,100,106,107,121,99,109,121,92,98,105,106,110,102,110,109,108,106,92,91,102,100,100,98,109,112,102,113,101,94,93,109,106,106,109,109,103,109,99,113,112,113,90,97,98,112,108,96,103,108,101,101,103,93,99,106,108,104,100,110,119,84,89,106,96,92,94,95,106,110,100,99,100,98,101,130,108,97,100,96,92,104,100,98,108,103,113,101,105,94,106,105,97,108,109,106,105,113,107,107,109,90,109,110,113,107,110,101,99,108,102,95,102,100,95,102,113,103,112,94,98,96,101,110,114,99,110,103,106,113,91,97,106,92,103,100,107,104,111,105,106,99,103,98,106,108,97,120,98,99,96,92,103,109,99,106,94,104,100,88,95,121,110,112,115,101,88,103,111,99,94,99,107,107,92,104,111,106,97,96,92,104,101,111,107,110,108,105,112,112,103,111,97,117,114,95,100,103,96,99,96,95,93,108,95,109,101,102,97,106,108,99,111,98,94,98,114,93,101,101,104,104,95,111,99,78,116,114,112,99,110,109,114,93,113,112,102,99,107,102,97,101,101,105,120,109,104,99,99,98,105,103,96,113,104,93,104,104,101,125,112,118,116,107,111,97,107,102,110,103,105,99,86,104,91,98,105,111,103,99,102,105,101,106,94,99,104,95,95,106,103,114,119,118,112,102,104,114,94,95,109,105,96,103,104,105,97,101,107,118,101,109,104,109,110,111,100,104,100,107,106,104,118,104,115,106,107,101,71,101,105,101,84,87,107,109,99,125,96,106,107,108,98,99,110,93,111,103,104,105,106,103,99,121,100,113,96,114,96,102,102,99,88,104,111,104,104,102,104,109,98,104,103,108,92,103,109,101,98,120,120,115,101,106,94,94,104,104,94,111,89,102,99,100,108,112,88,103,97,82,93,96,110,98,101,102,102,103,99,93,99,99,102,113,90,103,110,105,98,101,99,103,118,103,108,99,112,109,103,97,98,104,106,90,108,116,104,96,99,102,101,111,111,107,106,102,96,100,106,99,99,97,101,107,103,110,105,103,107,97,110,107,95,97,106,107,96,110,103,100,90,109,108,82,95,91,102,90,101,109,117,102,97,104,99,120,106,109,99,73,104,110,104,102,106,101,118,106,101,106,99,111,102,95,98,106,109,100,98,108,106,102,105,101,106,98,87,102,113,100,107,109,103,94,108,89,117,92,110,93,102,104,99,103,94,96,109,99,95,108,125,107,102,97,109,95,107,94,99,109,104,103,98,100,101,80,97,99,108,98,113,98,93,105,100,103,111,101,97,103,99,108,96,102,96,104,107,120,94,100,107,101,106,106,102,96,94,99,108,85,111,108,94,90,98,98,103,122,116,102,94,103,103,112,105,107,106,84,105,98,99,109,99,117,96,98,106,116,100,95,106,113,95,103,90,109,100,107,105,100,107,98,90,97,107,112,111,98,107,106,106,115,104,96,112,97,97,103,93,96,104,109,113,97,96,103,106,93,91,88,87,108,96,104,103,107,110,108,106,99,96,108,104,102,90,109,105,93,106,95,82,84,96,104,101,86,91,92,80,104,93,104,104,102,93,102,107,81,118,99,101,99,100,106,102,102,104,85,105,95,96,117,109,102,98,95,102,102,94,68,112,106,104,113,101,101,106,107,103,100,112,94,111,82,94,112,110,104,95,112,99,99,110,105,109,108,105,104,108,107,105,113,99,90,116,106,112,101,100,113,114,75,109,102,104,99,101,99,103,105,107,93,92,99,104,108,99,101,105,99,110,105,109,91,108,96,106,110,103,108,99,106,91,111,102,101,101,108,91,102,86,98,112,104,98,101,99,102,87,110,98,100,109,95,101,101,104,106,102,97,100,111,91,110,101,107,100,108,107,100,96,95,102,95,109,94,107,109,102,107,104,127,95,113,104,95,109,106,101,106,96,119,106,106,106,114,96,97,104,98,106,107,101,98,95,99,99,106,105,106,109,105,101,117,108,110,106,113,104,112,100,113,98,105,109,102,99,102,117,113,110,109,97,102,110,100,95,109,91,99,104,114,106,104,102,105,113,101,100,120,112,98,102,102,99,83,107,116,106,114,109,108,104,113,104,105,112,101,104,99,101,83,101,105,103,85,103,106,132,92,105,111,110,102,98,117,93,104,111,99,98,118,107,93,93,89,98,105,112,91,115,103,90,111,106,88,112,99,98,102,110,110,99,96,101,101,100,116,93,111,102,107,97,105,106,109,104,114,109,104,109,103,95,94,103,106,91,102,97,106,98,105,98,98,96,113,98,96,109,112,94,110,101,102,98,86,107,85,81,103,95,102,95,104,109,100,99,97,107,112,102,98,112,105,93,98,117,106,104,107,103,103,107,91,110,97,106,108,94,97,112,87,97,107,103,90,102,109,106,107,108,110,105,93,108,96,99,97,96,112,110,108,96,100,118,113,106,95,94,106,92,94,102,101,106,87,106,85,93,103,105,111,107,103,100,98,94,88,112,108,92,105,110,93,106,102,88,109,107,100,98,91,99,101,99,94,97,92,90,109,105,112,106,110,104,110,120,98,100,92,109,102,114,96,124,116,105,96,92,110,107,89,100,104,98,108,102,108,103,106,101,95,97,85,107,101,97,105,99,105,95,97,98,106,97,109,105,101,100,107,99,93,102,97,101,112,97,97,105,95,107,108,112,103,108,107,100,106,103,108,116,115,102,102,98,105,120,112,112,111,109,115,105,114,92,95,110,98,113,102,112,105,109,105,108,103,95,105,101,105,99,95,103,106,108,104,99,96,112,98,102,89,105,112,97,107,99,100,112,109,100,103,91,95,94,94,113,98,94,103,103,90,100,106,106,98,101,112,111,103,106,102,113,100,99,97,103,113,117,105,119,110,102,105,104,110,107,97,108,109,96,105,95,102,108,100,93,102,106,103,100,106,83,101,106,106,113,109,98,100,108,100,80,116,99,105,94,91,101,91,110,104,109,112,113,116,99,102,108,105,95,93,88,99,109,102,105,93,106,105,98,99,98,95,101,107,80,109,99,93,117,103,110,107,110,109,98,102,101,99,101,98,109,102,97,99,101,103,101,99,100,103,88,113,108,102,91,107,107,98,104,92,98,104,108,98,96,99,97,103,113,106,81,105,105,94,97,99,92,95,104,95,109,91,105,88,102,94,96,112,98,109,98,98,110,94,103,96,122,102,111,127,103,112,109,98,105,102,106,86,85,115,102,130,94,101,92,102,107,108,109,93,98,109,113,94,89,104,99,102,95,103,94,100,103,96,109,101,95,106,109,104,103,93,104,103,109,103,102,92,102,97,108,103,109,101,87,99,111,99,96,94,106,108,88,101,99,84,87,102,96,99,102,93,106,87,92,101,106,103,102,105,111,105,104,85,113,109,84,95,104,94,101,106,103,96,105,104,110,111,97,93,97,73,103,99,104,78,100,107,105,100,104,103,91,106,98,103,106,103,98,118,104,102,100,102,101,103,100,112,120,115,107,94,118,101,102,113,95,115,103,90,105,105,109,109,95,99,103,110,102,93,114,102,105,106,105,99,101,99,93,91,112,99,98,115,103,91,103,122,95,105,100,90,99,103,99,103,110,101,99,104,89,90,98,104,99,104,105,88,104,100,99,102,93,114,108,103,102,106,97,109,94,94,104,105,91,96,105,100,110,94,102,103,114,112,105,85,97,105,106,128,95,103,109,110,90,107,107,96,100,85,96,109,103,93,91,92,100,106,93,99,92,118,103,91,104,95,90,99,106,96,106,107,95,86,97,113,105,100,109,108,111,101,102,97,108,99,104,104,108,99,95,95,104,109,84,101,97,114,109,113,94,98,103,116,98,100,88,100,105,95,93,99,112,98,111,101,90,98,112,105,103,103,102,88,93,108,106,102,94,101,89,111,95,106,100,106,94,112,110,99,113,91,108,108,109,102,89,120,106,103,107,91,90,100,95,98,113,100,110,89,96,97,96,102,97,99,71,107,111,105,121,91,99,93,93,104,105,95,87,96,95,109,99,131,101,111,94,93,111,97,102,95,128,101,89,102,98,100,103,87,105,94,108,90,95, +443.55499,111,105,108,104,100,96,116,101,102,101,101,108,107,115,112,69,109,110,107,87,92,105,109,107,96,104,93,97,102,100,98,104,105,108,100,105,103,111,100,104,114,102,112,100,100,102,102,92,94,95,104,97,96,100,109,95,103,93,97,98,95,101,101,93,110,105,97,101,110,105,107,115,99,99,95,100,102,108,101,115,113,74,98,98,92,97,86,102,110,93,88,98,88,98,103,104,97,97,95,94,106,94,114,105,126,96,95,99,102,100,96,112,97,92,101,106,98,103,109,103,88,92,98,104,82,109,95,101,111,95,98,99,91,95,104,103,97,100,96,97,93,112,100,96,93,84,106,91,99,103,103,99,107,94,106,110,98,111,99,113,100,103,102,95,102,96,96,96,119,103,101,95,99,106,112,104,110,93,101,93,105,108,92,112,107,106,118,94,100,88,100,103,92,100,99,111,91,96,102,102,104,101,86,103,96,104,102,103,136,101,107,112,73,95,101,97,99,108,96,109,93,109,103,92,103,100,104,105,99,96,99,108,109,94,108,103,113,103,123,94,91,111,94,99,105,91,100,105,113,116,104,101,102,85,100,112,101,95,92,94,89,97,100,100,89,106,111,96,110,112,107,94,99,92,105,102,105,103,92,113,93,100,108,106,110,104,91,94,114,97,88,113,116,90,100,103,104,108,109,111,103,102,104,96,89,114,104,108,99,96,101,104,104,100,101,101,108,108,104,120,109,90,106,86,100,103,97,101,99,100,93,89,101,94,102,106,107,104,110,114,98,91,103,105,103,108,106,97,96,91,100,101,125,109,102,101,85,107,83,110,104,92,105,104,104,106,103,113,96,105,106,106,95,111,105,102,110,99,87,105,99,102,95,95,111,119,110,107,108,95,99,92,90,99,121,98,102,100,103,86,100,117,110,103,88,91,97,106,100,108,100,98,104,110,97,91,100,103,103,101,103,108,100,116,104,95,99,103,102,100,104,95,101,114,104,105,94,107,96,104,107,104,97,114,69,106,101,109,106,108,95,102,90,105,111,108,106,103,117,97,101,110,93,116,108,102,98,100,96,100,97,104,111,96,111,92,105,117,107,100,108,113,108,99,91,100,102,97,101,104,95,99,95,99,104,101,101,105,105,103,106,112,105,95,107,101,100,100,120,86,113,111,101,115,109,105,91,100,93,97,101,116,98,99,102,94,105,100,100,107,100,108,107,112,107,105,97,95,107,108,102,102,97,97,105,96,100,103,103,108,100,94,115,108,99,102,107,100,91,100,98,99,102,95,112,99,112,100,99,93,93,95,77,95,97,95,99,105,109,116,95,102,97,94,102,99,110,102,94,98,108,105,91,116,103,115,98,104,105,93,100,107,98,109,94,100,103,98,106,102,97,103,95,124,96,87,109,99,103,106,96,104,105,106,107,92,100,102,98,101,93,94,106,96,105,87,109,121,105,103,106,101,96,93,94,98,104,102,107,104,100,109,102,99,100,99,94,113,92,105,105,81,96,102,98,97,100,100,99,106,112,113,94,106,109,96,103,97,102,100,106,105,106,82,104,112,93,95,103,99,98,101,94,108,102,103,98,101,106,101,94,103,103,108,96,104,109,113,110,110,105,96,107,106,98,108,104,99,108,98,110,103,109,106,95,100,128,103,97,106,119,95,102,101,95,99,100,99,122,94,92,99,99,110,123,96,99,107,106,108,105,107,102,91,101,105,103,100,101,100,100,86,97,86,85,107,96,109,96,100,113,101,108,113,104,114,110,98,106,120,103,104,114,102,98,103,94,104,95,103,100,113,101,105,99,108,99,103,102,106,112,104,100,94,114,107,102,106,101,108,101,102,101,102,100,102,95,107,114,105,87,113,107,95,94,101,114,105,106,95,101,114,102,105,105,104,102,104,111,110,101,112,101,104,108,103,102,101,101,92,99,94,99,107,95,99,120,96,90,104,100,114,87,95,105,98,95,104,99,102,105,101,95,109,86,94,103,86,91,102,110,117,96,125,99,102,98,103,112,104,98,98,104,104,88,98,100,90,106,101,103,108,110,98,113,101,97,113,101,109,100,110,108,112,104,110,107,104,94,91,108,106,94,98,100,99,104,103,97,99,101,99,98,103,105,98,103,109,102,76,99,110,95,110,93,102,98,96,92,96,100,112,82,106,110,97,100,107,106,89,97,105,103,96,91,95,95,91,111,104,105,104,105,108,98,102,95,99,97,101,89,100,108,94,107,100,100,100,95,91,115,109,97,105,105,94,100,104,103,107,105,112,103,86,117,102,92,103,97,96,93,94,82,107,95,104,103,108,102,96,105,103,99,90,99,103,102,106,110,106,104,100,103,103,107,89,113,99,101,100,95,104,98,92,114,102,103,106,107,107,99,110,99,98,95,89,83,90,101,110,89,88,107,98,82,104,94,107,92,94,82,96,110,106,100,100,107,89,98,100,109,106,94,114,110,112,106,113,102,102,115,102,102,99,106,105,102,135,111,108,102,105,103,106,97,95,107,103,101,110,102,116,109,98,103,96,109,108,98,99,101,103,101,100,98,103,105,111,110,101,96,111,108,99,106,101,101,125,100,100,101,104,105,113,91,98,95,92,106,107,113,108,109,109,107,99,94,107,103,105,98,100,111,90,94,115,105,102,123,94,104,103,108,112,106,104,92,106,87,107,95,103,101,99,110,105,114,101,101,96,103,106,102,83,132,98,108,93,91,111,105,100,104,99,111,96,104,109,115,99,103,99,96,113,109,90,105,121,97,100,108,113,105,95,117,103,98,102,105,103,107,108,103,96,102,109,99,105,108,109,99,105,107,97,106,117,115,108,102,107,106,100,109,115,102,99,97,111,109,94,100,110,112,100,96,102,106,111,98,98,103,98,108,98,105,106,105,96,104,100,98,104,101,98,103,95,104,125,95,108,105,109,88,106,108,112,106,107,107,104,107,102,109,96,101,96,107,131,101,104,92,97,92,91,102,106,108,102,102,106,104,114,88,98,105,105,107,103,103,102,111,102,109,109,116,101,95,100,108,108,112,106,110,97,114,107,116,104,99,107,96,100,98,103,100,91,100,107,104,100,99,112,115,92,111,100,101,99,99,100,94,103,112,115,101,105,108,103,103,102,104,92,102,103,106,95,106,95,103,113,108,109,99,104,107,105,112,101,104,86,118,106,92,111,97,99,95,109,95,97,106,105,108,103,98,91,98,102,104,120,101,106,98,97,92,99,109,87,109,92,109,117,106,108,91,104,102,72,100,106,94,94,101,106,105,88,99,109,110,92,97,94,111,101,107,105,111,121,97,99,105,108,103,118,95,108,99,92,109,98,87,120,104,95,98,105,108,107,102,99,92,104,107,106,109,105,104,94,113,97,102,100,108,108,117,107,97,98,106,85,108,103,117,107,99,92,114,102,105,102,107,95,109,112,103,100,95,106,85,110,105,108,109,103,94,103,113,106,95,102,102,108,106,99,95,114,108,98,103,100,112,102,100,107,102,94,90,108,105,95,101,101,107,104,109,100,91,106,96,112,97,101,115,99,109,92,101,99,97,100,101,109,114,108,105,106,100,97,99,96,106,95,105,99,110,115,124,107,112,103,99,106,106,115,97,94,110,102,106,99,100,113,101,81,98,107,108,95,102,109,95,97,105,109,95,97,101,101,104,89,103,107,95,98,91,121,115,113,102,99,105,95,102,97,98,121,105,116,87,101,97,95,124,97,108,103,89,94,103,104,108,113,87,136,110,105,108,100,108,108,95,98,108,106,81,113,106,93,105,97,100,108,108,101,99,95,101,106,103,103,121,97,108,105,112,107,92,109,110,113,104,103,112,113,95,104,116,103,103,98,102,101,102,104,95,92,103,113,106,104,109,106,103,90,114,98,112,91,100,111,104,103,103,98,109,103,97,108,117,119,105,99,113,97,102,106,109,98,108,106,93,95,92,122,109,101,105,95,109,85,116,103,109,101,103,104,87,113,104,109,97,103,108,115,97,104,102,115,104,100,115,113,111,100,111,82,108,106,94,110,112,116,104,102,99,110,94,97,116,103,102,113,97,117,100,100,98,102,97,98,117,119,98,120,107,96,105,102,101,114,101,109,92,111,117,110,108,102,109,106,105,98,97,100,100,95,88,104,100,102,109,99,92,105,103,110,112,112,103,86,108,89,112,110,109,105,104,89,108,106,114,102,101,111,96,110,91,107,104,106,104,106,108,105,106,102,110,98,103,98,99,104,102,102,89,105,117,105,89,105,102,107,104,120,97,103,107,102,104,100,109,87,111,94,106,105,107,103,116,105,99,104,116,107,110,92,114,103,105,103,90,96,95,105,102,112,106,102,99,103,104,101,102,113,102,106,105,97,98,87,109,95,105,110,103,100,109,106,105,100,94,98,104,115,112,108,94,101,94,105,111,113,104,101,102,101,94,100,108,98,101,113,116,108,91,109,106,92,102,129,93,96,95,100,102,102,98,112,85,94,106,98,113,113,104,104,105,107,98,97,95,102,96,81,99,94,98,112,111,73,111,84,108,113,119,88,104,100,99,104,118,109,107,98,97,107,100,101,95,111,106,100,99,112,98,109,113,92,104,95,105,91,104,107,100,103,97,114,109,92,111,109,103,113,100,102,107,98,97,96,73,106,101,110,116,83,111,101,108,88,94,98,112,100,103,100,105,109,98,98,112,104,104,102,98,105,98,102,107,91,94,111,110,102,103,96,110,94,105,99,108,103,95,93,98,98,102,76,105,103,112,100,108,110,98,102,103,104,87,100,111,92,101,101,95,92,95,103,93,91,113,102,82,102,98,111,101,77,93,107,99,98,93,100,86,113,104,94,99,97,106,104,103,92,106,102,92,100,102,91,107,91,117,105,109,104,100,89,103,103, +443.69534,118,109,97,74,106,101,129,100,94,108,100,96,105,102,92,104,96,111,98,98,87,117,111,109,101,110,102,105,98,101,86,99,103,107,120,87,106,98,101,124,97,107,106,95,82,117,103,107,120,102,93,97,116,96,105,106,112,95,107,99,101,98,100,101,112,90,94,99,103,104,107,98,99,101,101,113,104,101,99,96,97,118,102,121,103,105,93,98,95,95,113,97,99,95,92,100,99,89,96,105,103,100,96,94,92,109,111,92,106,97,112,92,96,109,105,103,99,103,102,102,108,98,108,105,105,101,110,98,105,94,105,103,112,100,112,105,94,108,62,104,97,112,89,107,110,92,99,107,108,110,109,97,111,86,99,105,104,85,100,102,94,121,97,109,99,104,109,104,110,100,106,64,90,96,110,99,114,95,97,104,104,99,96,100,83,93,75,104,113,105,113,106,96,91,100,114,100,100,95,105,101,86,100,109,109,106,91,110,101,110,97,108,101,104,104,114,100,108,95,109,113,110,106,101,106,112,96,106,119,96,93,106,112,99,108,106,100,106,98,112,106,102,110,125,99,96,110,100,113,114,102,90,102,103,108,87,103,103,81,109,111,118,107,109,90,99,99,103,103,94,115,98,126,94,104,91,103,102,99,92,109,107,95,82,106,87,92,101,109,99,103,105,119,100,108,104,104,117,102,104,104,97,99,104,97,105,114,101,107,117,105,110,106,99,98,86,100,119,121,97,93,102,96,100,105,90,91,79,104,104,101,106,106,106,98,97,87,105,100,110,102,101,107,104,96,98,111,113,98,105,102,117,94,112,98,108,102,109,105,99,102,108,103,109,109,101,104,111,103,107,105,95,107,103,105,103,94,105,99,90,102,113,105,105,94,98,110,96,107,105,115,97,110,116,109,98,110,104,100,107,100,104,112,102,109,99,111,102,101,103,99,100,91,101,117,101,101,100,105,106,102,106,93,108,67,104,95,90,111,102,99,103,105,107,99,102,94,99,110,109,111,109,98,119,94,107,118,106,104,100,84,100,91,133,108,101,113,115,93,108,103,92,104,100,110,105,106,101,113,118,108,100,106,99,100,98,94,115,101,112,100,113,109,99,102,92,106,113,100,106,116,101,104,104,100,106,98,93,86,96,97,100,99,117,92,100,98,98,105,101,110,109,100,98,118,104,99,91,99,103,106,101,107,105,97,102,114,99,101,110,92,104,101,102,92,100,103,106,102,100,110,100,105,99,99,104,99,97,105,105,105,111,102,108,93,97,96,98,100,103,103,102,104,102,100,91,106,96,96,105,91,95,113,102,108,100,105,103,99,95,103,104,116,97,97,89,107,103,107,101,118,106,113,94,101,103,108,117,106,97,100,85,102,88,105,100,108,97,97,99,100,105,95,105,107,106,104,110,112,110,107,108,104,99,114,95,99,103,104,105,91,103,104,105,109,99,102,100,101,107,99,101,112,117,101,100,94,90,105,103,92,108,107,100,86,113,102,110,105,94,113,99,116,116,89,102,111,101,108,100,104,105,90,109,87,97,111,105,108,95,103,98,103,90,91,110,110,103,111,105,129,96,100,104,111,106,105,109,112,81,105,98,105,104,101,106,116,107,93,96,105,101,88,94,95,99,109,118,112,87,106,90,93,114,104,113,114,100,98,95,106,102,99,103,98,101,103,98,100,109,101,105,110,95,108,101,105,83,94,125,110,103,104,99,111,69,103,117,107,93,92,112,99,105,94,102,98,107,94,94,112,104,89,93,99,98,108,106,104,94,112,110,116,96,108,111,107,109,105,94,108,97,103,102,94,102,99,106,97,103,105,91,106,108,96,97,112,105,99,103,94,102,100,108,104,101,96,92,91,116,65,104,107,101,100,121,108,105,73,101,95,92,107,105,99,109,110,95,109,114,109,101,107,100,102,99,117,97,106,110,87,108,103,106,97,98,95,106,101,110,106,109,99,97,101,98,116,110,105,103,106,107,102,103,106,101,100,102,95,103,110,97,99,104,108,95,98,118,107,105,113,106,101,118,107,92,96,94,103,107,113,116,103,112,96,103,96,120,101,101,102,136,109,103,88,102,94,115,101,95,107,105,90,113,106,111,104,94,104,92,99,112,104,105,106,102,93,110,114,103,111,94,106,108,112,107,102,106,107,106,103,91,113,108,109,99,114,97,94,96,109,110,103,98,96,93,102,96,100,102,94,100,103,104,104,111,103,102,87,107,102,99,112,98,111,99,96,98,100,98,112,100,110,101,99,98,96,91,110,96,103,99,71,94,116,103,109,107,100,112,101,96,122,106,100,109,96,107,111,114,95,104,110,99,98,106,86,103,103,102,107,110,121,102,109,98,101,103,112,88,96,110,100,102,107,97,101,113,113,100,106,107,118,108,94,105,107,103,97,91,91,98,72,100,103,103,102,105,102,93,88,105,112,111,128,115,103,109,104,110,105,117,111,98,99,98,112,105,107,98,104,101,113,83,110,105,101,105,90,102,110,92,98,107,100,91,109,102,102,91,98,103,107,100,102,107,109,100,94,115,107,98,101,112,97,93,79,99,103,100,99,107,104,98,92,102,85,103,100,96,104,96,96,111,104,109,100,95,113,94,109,100,110,108,102,100,113,106,113,96,110,96,91,101,101,111,99,102,108,104,91,115,99,91,97,108,99,104,109,87,107,103,104,106,112,118,110,103,93,125,103,101,109,105,84,103,103,105,105,105,104,114,104,109,99,100,98,110,108,100,99,104,109,106,104,98,99,110,103,109,107,106,91,105,105,100,98,103,124,100,102,100,88,117,120,111,101,83,98,110,96,103,110,93,104,89,97,105,118,104,95,102,94,107,109,96,95,103,107,131,97,107,107,106,103,94,102,102,96,131,101,91,103,111,97,94,94,112,114,124,100,102,91,104,103,117,109,103,96,103,100,98,92,108,99,96,105,107,110,113,105,100,97,112,98,94,67,89,97,84,102,105,96,105,103,112,103,107,96,87,108,100,99,118,119,93,105,105,98,99,108,103,94,100,103,101,106,88,93,95,112,104,113,107,100,95,104,95,112,99,99,105,95,93,100,99,101,103,98,103,86,112,107,113,132,101,106,105,109,112,97,109,118,71,111,100,94,109,93,105,111,98,109,96,99,104,106,112,98,93,114,112,94,106,99,102,100,96,99,109,107,103,104,116,100,105,107,111,76,92,106,99,96,103,91,107,101,101,113,133,98,95,109,94,96,104,106,100,106,100,106,110,111,102,94,102,99,104,101,125,100,89,99,93,93,113,116,105,98,98,91,95,104,105,117,108,108,105,102,98,104,103,110,113,104,103,104,102,110,117,93,101,105,103,95,105,116,112,102,89,93,104,101,101,87,102,102,99,102,100,102,104,101,104,99,92,106,111,107,104,105,106,103,108,98,98,102,98,107,94,106,100,107,95,96,100,99,113,100,108,105,99,112,107,95,102,95,93,105,103,107,102,113,101,84,103,108,97,107,115,107,103,91,108,106,102,104,111,92,98,115,107,103,108,105,92,103,103,100,107,103,107,92,98,105,103,102,102,92,106,99,101,113,107,106,107,101,102,100,99,97,101,96,101,99,97,103,106,79,103,95,87,101,98,102,100,107,127,109,105,95,106,105,97,96,74,99,116,91,104,95,114,109,104,100,106,106,95,102,99,91,104,100,99,94,105,122,103,108,105,105,97,101,106,102,95,100,106,95,96,104,106,96,93,100,101,95,114,98,108,95,99,92,99,99,104,95,90,99,100,108,102,102,100,106,93,103,101,116,101,104,100,100,111,107,117,110,112,106,97,113,87,100,99,96,106,103,86,106,111,92,106,119,98,103,97,96,96,100,109,100,97,99,117,107,100,100,68,100,87,109,97,107,100,96,93,102,96,107,101,97,104,104,93,107,113,104,99,109,114,102,100,101,98,98,106,98,99,101,102,108,124,108,104,105,110,105,100,87,108,115,102,92,94,97,108,99,97,97,94,109,110,107,110,93,91,102,110,105,97,106,103,98,92,103,100,112,97,109,116,106,111,94,91,97,102,103,110,101,112,110,100,102,105,99,91,108,112,109,99,91,108,103,104,100,113,110,101,109,108,99,119,99,116,102,109,100,102,101,112,103,103,101,101,100,103,96,105,96,102,112,113,91,95,109,106,102,106,104,88,124,95,102,105,96,117,99,91,118,100,100,102,100,103,108,89,100,98,103,110,104,109,95,67,94,107,110,113,102,104,89,106,97,104,100,104,106,88,96,94,103,98,100,107,110,102,115,95,91,110,101,99,96,105,99,99,109,103,98,92,111,105,99,116,110,104,108,102,108,105,105,108,97,101,98,89,89,88,104,105,99,104,117,109,99,100,115,100,90,120,108,108,92,115,96,99,100,106,102,100,104,99,95,92,104,97,97,105,96,105,116,98,96,101,91,98,87,98,109,103,95,111,121,80,110,95,107,91,102,99,86,94,98,99,104,94,102,99,100,80,95,100,106,103,114,98,101,103,100,97,96,108,109,95,96,97,100,109,106,106,101,105,93,103,103,94,94,81,103,103,89,113,98,103,103,104,103,104,106,94,100,97,105,98,105,94,97,96,108,100,89,97,101,109,99,101,85,106,103,91,103,98,110,99,99,107,107,98,96,101,89,93,102,101,120,95,94,107,96,101,98,101,105,96,108,108,105,94,113,93,112,102,105,88,101,101,85,98,97,96,100,110,83,101,99,102,100,104,102,104,106,101,107,91,99,92,83,106,102,108,87,118,104,95,96,100,108,102,109,108,110,102,102,96,115,99,104,94,95,96,105,101,89,108,97,98,100,72,126,91,109,108,99,106,106,92,93,96,110,100,94,106,96,101,96,87,93,88,100,100,105,95,84,100,94,105,98,96,85,96, +443.83572,100,87,98,104,109,113,111,99,101,98,102,109,99,98,114,104,99,103,98,123,100,112,94,105,99,91,103,95,110,110,107,100,107,101,108,104,109,99,115,105,104,82,100,102,102,104,100,101,80,100,103,95,104,109,99,97,107,107,112,101,113,101,112,101,100,96,97,123,103,89,114,95,113,100,100,107,85,99,102,105,102,110,101,105,124,94,98,100,102,109,114,98,106,104,103,98,96,99,91,113,96,90,108,97,100,108,102,111,106,105,108,97,95,107,67,109,117,106,121,110,104,100,113,103,114,99,108,103,114,98,103,113,90,100,102,115,106,103,91,111,105,103,110,95,100,102,102,94,110,94,96,99,109,103,103,103,110,92,108,105,96,98,101,114,96,98,103,83,113,79,104,98,108,102,108,113,105,106,105,97,94,103,100,99,116,115,96,103,107,102,101,112,93,106,109,108,99,88,109,95,108,96,99,96,98,106,114,102,114,96,107,107,97,106,101,102,97,104,109,108,101,111,105,110,103,109,98,98,96,85,110,113,102,85,94,102,111,102,108,76,107,95,110,112,99,111,108,100,97,110,103,105,99,103,102,112,92,112,97,91,107,97,105,101,84,81,106,104,100,109,106,94,104,105,96,115,106,103,112,131,101,95,100,103,102,99,95,97,113,113,91,108,103,100,108,97,103,107,108,94,84,112,110,115,93,116,112,114,106,107,109,102,108,72,99,118,106,111,99,98,99,95,101,133,108,91,109,100,121,102,103,99,96,100,110,114,105,93,99,104,97,105,89,138,95,103,117,121,110,98,107,102,100,108,112,123,108,103,104,102,101,98,106,98,82,102,98,115,105,103,98,100,106,99,97,109,98,112,91,111,102,105,96,98,113,103,113,87,104,100,99,95,94,107,122,106,94,105,113,106,101,108,97,99,115,108,114,111,101,97,102,93,105,107,102,97,103,102,108,110,104,100,98,107,108,86,95,97,94,99,95,115,112,99,105,109,103,103,109,101,110,95,104,101,98,97,103,95,92,95,93,102,114,104,99,105,106,109,112,99,98,106,98,105,99,110,104,101,106,102,104,108,99,97,100,102,102,117,101,102,102,114,94,102,105,100,112,97,90,101,104,104,112,101,100,100,104,87,100,100,93,117,105,115,93,113,101,105,104,104,106,99,100,102,103,104,96,84,95,102,114,96,105,103,107,123,107,97,105,103,105,97,116,101,101,117,106,91,99,97,108,100,102,98,101,103,113,110,106,105,104,111,105,101,104,107,100,103,105,114,100,126,104,108,108,109,96,92,92,106,108,104,96,100,95,115,111,103,94,119,107,116,110,94,107,104,118,103,111,96,108,109,91,125,94,107,108,91,119,99,108,104,109,103,100,106,97,93,99,108,88,128,101,105,111,108,111,99,106,108,96,98,103,107,100,100,92,104,94,106,103,102,97,104,109,96,108,106,103,102,104,104,100,110,108,98,106,81,102,112,109,107,107,96,98,109,104,112,91,114,103,104,102,98,107,98,81,97,101,110,112,115,99,113,95,112,102,100,108,105,102,105,113,105,102,93,101,98,103,114,99,117,102,102,91,107,103,96,103,94,100,109,96,99,99,99,92,110,94,106,111,114,117,91,111,107,101,99,98,105,99,108,100,109,97,121,104,115,93,125,103,105,105,101,99,108,92,103,101,112,109,109,94,92,96,101,97,99,86,109,112,98,111,98,112,113,86,99,110,104,104,113,109,106,101,100,99,79,119,104,115,100,106,101,109,91,97,106,99,99,111,104,106,103,104,108,104,104,99,110,110,103,94,110,106,117,99,104,111,108,112,117,98,105,105,99,105,106,104,123,107,95,113,118,107,110,109,105,100,103,97,107,112,100,115,99,103,112,126,106,105,94,101,103,106,116,103,104,102,101,101,76,106,91,96,99,95,96,109,99,100,101,114,103,96,106,97,100,117,115,111,105,107,87,112,79,105,106,113,102,107,114,99,105,92,104,108,100,95,100,108,105,99,99,103,110,109,108,105,106,94,100,113,105,111,97,100,104,78,104,103,105,92,103,99,114,107,103,101,107,106,114,124,115,105,97,104,109,108,105,108,105,100,113,104,96,104,98,103,100,107,111,99,107,91,96,103,106,121,106,95,106,108,93,101,91,113,79,96,98,99,98,111,106,94,101,109,109,104,97,113,104,106,98,100,102,122,96,103,105,102,99,110,106,101,115,120,108,101,102,106,113,101,116,95,108,95,96,103,106,103,118,103,102,107,109,104,105,109,95,111,122,99,102,105,103,104,98,79,97,99,103,102,114,90,105,99,104,120,96,103,112,105,116,103,95,90,101,103,113,113,94,113,98,99,83,107,104,106,109,105,104,106,94,104,96,102,106,106,85,96,100,101,98,104,91,100,101,99,103,89,103,100,104,104,103,102,100,91,101,118,107,100,109,107,102,102,108,104,98,103,114,103,106,101,117,112,121,113,121,114,107,99,87,101,117,77,98,96,109,104,94,104,104,100,102,92,99,109,102,101,108,93,102,107,102,95,108,92,106,105,98,94,112,107,108,103,99,107,99,92,104,109,87,98,95,98,109,110,102,92,105,100,95,99,94,101,105,106,105,111,93,102,116,104,97,124,108,98,124,99,102,94,97,97,110,107,104,105,100,97,103,115,102,96,104,99,100,100,100,99,103,102,96,100,107,105,106,103,110,91,99,102,106,102,107,109,90,115,101,97,90,79,114,100,104,93,102,84,88,107,98,91,112,107,99,126,96,96,100,98,113,102,101,96,120,104,104,116,109,106,98,105,99,105,103,103,116,99,100,95,95,100,102,121,101,101,88,101,98,106,96,115,107,95,114,110,99,98,112,118,107,111,88,104,95,95,100,102,99,102,96,107,106,100,109,96,100,109,115,99,102,98,102,104,100,105,96,105,106,101,96,94,107,106,103,104,106,101,110,102,102,98,104,91,99,105,67,93,102,98,113,100,98,117,116,110,102,108,98,116,112,103,78,102,98,113,110,117,97,101,93,103,100,102,109,85,98,102,110,102,110,112,98,103,102,113,103,105,100,108,99,100,81,103,121,108,98,110,95,104,116,107,95,95,109,100,126,109,98,78,99,91,108,112,95,113,106,97,116,108,94,99,99,108,100,108,114,88,100,90,91,104,109,95,97,91,112,100,112,98,98,99,100,92,106,103,105,100,99,103,102,101,96,96,93,110,99,100,91,113,96,97,95,104,102,98,103,99,98,107,102,83,113,98,106,98,103,99,90,100,93,91,113,107,102,100,91,110,94,103,98,112,103,95,103,107,111,100,101,103,104,101,75,109,108,96,91,99,96,95,100,113,100,100,85,100,101,100,106,96,106,95,101,97,100,94,96,100,87,113,105,99,109,103,81,100,107,123,92,92,89,95,102,87,103,119,100,114,103,97,103,108,104,100,108,100,99,92,80,94,99,97,117,94,98,104,98,106,109,108,106,91,89,112,108,102,92,111,89,91,106,100,110,103,110,99,106,104,102,103,104,115,110,109,116,107,99,92,103,107,104,91,102,108,103,106,83,107,97,113,105,108,102,107,108,103,104,128,104,89,102,100,78,97,102,105,99,103,101,105,94,106,104,98,107,97,85,103,115,96,98,102,98,110,102,101,83,108,102,89,99,93,109,98,98,85,102,108,96,93,97,99,112,120,107,99,95,94,96,106,105,105,109,107,104,95,108,98,101,101,109,100,101,118,103,113,99,98,98,111,97,88,102,94,105,108,76,106,105,103,104,104,107,94,104,94,102,109,89,97,100,96,101,127,97,102,112,96,105,112,103,107,105,98,105,98,95,97,103,85,99,73,109,91,104,98,103,91,111,104,107,101,106,98,97,102,102,102,104,109,84,106,96,81,98,100,103,102,97,106,109,99,111,99,98,98,102,99,97,118,98,108,102,113,112,103,116,105,107,96,101,103,96,107,100,99,107,103,96,98,79,110,106,99,103,104,111,98,94,97,107,97,77,98,94,100,113,109,117,104,104,104,95,100,91,107,111,98,104,103,111,104,108,115,104,104,101,98,93,108,101,98,103,91,98,105,115,90,99,87,98,106,111,102,101,101,112,98,113,107,101,87,112,92,119,103,88,100,108,110,95,107,106,110,92,99,116,101,103,88,97,95,97,99,104,112,105,93,70,96,108,97,96,103,93,101,110,86,102,109,112,105,95,101,110,107,102,111,105,101,96,94,91,114,100,105,102,95,99,100,93,101,103,98,109,87,104,96,110,107,92,100,97,98,101,103,93,107,102,101,92,105,102,99,100,107,100,90,103,110,101,71,82,102,105,91,103,102,103,105,99,85,70,99,102,107,118,95,100,102,106,106,95,94,101,101,109,99,86,99,102,97,128,99,113,106,105,89,100,105,101,107,107,96,106,99,105,113,101,108,108,82,107,113,105,103,87,105,124,112,106,92,98,101,102,98,105,105,106,96,83,104,102,94,108,86,110,101,99,111,87,98,105,101,100,108,108,88,96,102,98,105,94,99,107,98,105,102,100,97,108,99,105,78,96,89,98,104,103,125,99,111,102,91,117,106,90,88,101,104,81,109,102,106,102,94,92,94,112,93,97,89,117,96,94,119,117,94,109,108,108,83,94,101,89,100,105,103,86,96,96,114,105,98,94,94,104,109,99,93,100,99,103,121,102,96,108,103,89,100,105,109,102,103,84,102,105,91,98,92,117,84,101,99,87,101,96,106,107,100,90,84,102,99,109,97,108,91,101,92,95,99,97,93,105,73,96,92,101,97,92,98,112,103,83,94,94,67,103,111,100,95,108,111,94,105,95,99,109,88,102,97,100,102,106,102,104,110,83,99,108,99,96,92,88,98,106,106,98,114,95,102,89,96,88,90,83,93,95, +443.97607,111,113,99,98,101,92,94,108,90,97,101,104,87,114,94,99,94,109,96,94,103,113,104,99,93,112,99,112,110,91,99,117,99,99,95,93,104,103,92,98,102,91,99,115,103,104,103,102,103,103,102,126,106,97,103,98,103,99,101,99,103,111,85,101,105,105,97,103,92,97,100,90,106,98,91,105,90,95,108,108,102,106,87,90,99,105,100,102,105,98,102,98,111,102,101,97,100,103,95,101,124,106,109,94,100,96,96,102,107,102,100,101,108,104,102,105,126,98,109,100,121,109,105,119,114,117,125,93,96,106,110,104,109,101,105,103,70,103,102,94,107,96,102,113,103,102,106,97,96,93,99,93,117,101,102,104,98,110,105,102,94,95,120,94,111,102,105,111,116,103,103,106,91,106,107,104,105,84,115,94,109,103,100,102,95,104,96,97,95,108,100,107,95,98,104,99,95,99,107,100,107,113,105,106,88,109,99,119,112,118,103,109,105,84,104,99,108,99,99,89,100,99,107,114,104,99,101,103,101,108,104,107,116,101,94,97,111,90,98,106,98,101,100,101,102,105,105,110,95,94,95,99,105,96,92,109,104,104,84,109,97,104,108,95,89,98,101,97,105,96,101,98,100,99,110,105,102,109,99,93,99,102,100,105,110,110,97,79,104,104,100,108,110,99,111,96,100,97,113,102,105,105,99,106,88,100,112,117,100,79,105,104,100,103,105,101,92,102,108,94,114,97,99,104,104,100,104,77,100,105,99,103,110,102,114,111,108,102,103,95,103,108,101,109,102,100,111,111,117,103,99,103,104,92,103,107,101,108,104,98,108,105,108,102,90,100,108,103,111,103,110,112,104,100,98,103,75,101,110,114,109,114,87,108,103,97,101,99,100,97,122,103,105,95,98,102,98,99,104,111,108,99,104,106,96,100,100,106,110,104,97,89,121,100,106,104,109,93,104,106,114,90,104,111,106,95,101,101,101,109,100,92,97,114,102,100,97,116,100,112,103,103,98,106,100,106,94,103,97,104,112,109,103,113,103,117,98,104,117,107,96,95,105,100,114,113,101,94,98,84,126,101,108,98,94,95,94,110,107,100,95,113,112,102,105,107,94,96,96,108,94,93,110,106,99,103,113,100,109,104,115,103,105,107,99,108,108,113,113,107,105,94,107,107,101,104,98,108,103,93,102,109,104,104,105,108,103,112,99,112,99,106,96,98,95,108,98,93,111,101,101,110,110,90,99,105,115,104,92,104,103,97,109,99,104,105,113,103,107,114,108,91,105,113,105,121,107,104,97,99,95,105,105,108,101,99,108,102,101,104,95,103,91,98,102,103,98,107,111,96,95,107,100,94,107,102,106,107,100,94,106,100,106,103,90,93,96,105,106,104,108,99,97,106,105,95,100,100,98,107,99,98,108,101,106,111,97,106,104,102,106,96,99,112,100,98,97,102,109,111,104,127,97,96,103,101,95,93,109,110,109,115,111,99,103,98,113,96,118,94,122,99,96,117,95,109,112,95,103,109,107,103,104,102,97,102,91,98,109,101,105,101,116,96,101,105,99,102,103,113,109,106,96,109,110,102,104,99,96,106,100,102,97,95,97,103,106,114,109,104,105,100,107,104,94,107,95,96,114,110,101,85,105,107,97,83,102,101,100,118,90,99,102,95,101,99,102,106,103,108,104,105,106,103,100,103,116,102,98,110,102,105,105,102,107,98,94,103,111,90,92,105,91,97,98,106,95,102,106,101,114,110,117,105,105,98,99,103,105,96,101,113,109,112,105,102,89,76,98,101,114,111,102,104,98,109,102,92,110,99,105,100,99,113,108,97,98,97,107,96,101,109,101,95,111,102,110,108,110,109,105,112,110,105,99,109,103,101,107,96,104,100,109,112,95,109,83,105,100,114,100,103,92,113,107,106,95,99,122,99,97,112,86,102,109,117,108,104,116,100,103,104,121,105,112,108,89,99,102,112,102,109,101,108,104,110,109,109,108,89,95,104,93,101,110,108,104,112,100,109,102,106,94,110,100,105,109,109,101,105,119,106,94,105,110,94,93,120,101,101,120,104,100,105,109,98,96,114,106,96,108,99,94,106,104,113,99,103,101,99,111,105,108,97,105,110,103,106,103,103,95,99,105,109,102,101,112,101,103,112,100,106,104,108,100,104,105,110,104,93,99,104,109,110,102,100,105,112,100,114,118,99,116,96,109,104,102,107,96,109,98,110,93,105,95,88,110,109,113,105,91,95,96,110,98,101,90,104,104,105,99,104,103,102,125,111,97,99,107,110,95,112,96,96,86,113,112,104,100,92,110,107,100,89,114,91,101,102,115,104,109,104,106,105,110,99,96,103,112,106,108,109,92,109,99,109,96,102,102,95,107,110,101,102,91,98,91,109,104,114,98,101,102,103,108,103,96,105,108,104,98,119,97,113,117,102,100,101,110,105,103,125,102,118,102,94,95,102,111,92,105,105,98,103,105,104,104,98,115,108,99,94,109,97,99,110,104,103,106,93,98,112,111,104,104,95,113,118,91,103,107,108,95,105,101,113,101,104,97,105,105,117,88,100,106,110,110,97,93,110,105,102,88,107,106,116,94,100,111,111,111,98,88,100,99,99,110,107,106,102,105,98,113,91,108,112,93,99,110,92,97,98,99,90,104,104,109,106,102,95,109,95,100,109,97,102,104,88,103,107,99,103,96,108,91,103,106,106,107,102,111,94,103,109,106,116,98,117,104,97,101,104,88,99,100,104,100,107,107,100,106,99,97,102,99,121,101,101,103,105,98,97,103,117,100,97,96,103,105,96,99,113,99,88,106,124,97,98,114,97,102,119,115,106,117,103,105,104,98,108,104,101,106,103,112,86,106,106,100,99,95,111,109,121,113,91,116,94,116,108,103,99,113,97,92,106,99,92,100,101,97,97,110,109,101,105,110,104,112,103,104,104,106,108,111,114,113,108,101,103,95,105,104,100,84,114,102,102,103,107,110,102,108,104,106,106,105,100,113,96,100,116,93,104,98,102,106,110,106,101,98,100,105,119,98,117,110,90,115,96,108,109,91,104,100,101,102,104,106,119,96,109,109,106,106,104,115,109,103,112,108,105,102,122,99,98,94,95,98,112,112,95,103,118,86,99,103,98,110,101,98,87,101,113,102,105,105,104,103,100,112,110,104,104,84,106,103,100,98,105,95,93,101,108,108,94,99,94,110,106,106,95,106,107,104,95,106,101,110,98,109,104,106,103,98,109,101,108,105,97,110,103,94,96,105,98,102,111,98,94,98,103,111,100,111,97,113,109,102,98,107,106,99,94,101,95,101,100,106,101,90,106,96,99,109,99,111,104,105,96,94,109,103,100,102,94,102,103,114,99,117,94,104,99,101,95,103,84,103,107,102,103,95,96,107,98,110,106,100,82,108,109,102,94,99,99,112,103,104,111,102,106,95,108,105,81,112,100,110,115,114,104,111,99,116,107,108,98,97,96,102,98,100,92,102,115,111,102,107,98,99,95,103,106,101,101,103,107,106,112,104,104,103,96,87,104,108,109,103,104,109,98,100,100,103,107,111,120,92,102,95,110,94,105,101,97,108,104,95,108,108,97,101,101,94,105,106,99,103,107,121,104,96,110,121,99,101,101,105,107,107,104,102,113,96,113,102,109,104,109,103,101,107,113,81,101,109,113,120,98,100,96,96,110,121,101,98,109,89,97,96,93,104,105,108,99,116,92,92,110,101,121,99,117,97,97,110,94,115,99,103,101,107,103,104,108,98,98,94,101,98,112,101,109,101,101,105,107,108,105,106,96,98,103,112,108,102,98,95,102,95,114,106,105,108,110,116,125,107,101,119,102,108,101,93,104,96,95,115,101,106,103,100,99,106,100,116,113,119,107,75,95,103,101,92,110,110,104,99,95,105,98,114,105,99,103,93,106,101,96,95,121,102,131,100,108,100,103,105,90,105,106,121,103,107,101,107,112,99,100,104,93,100,99,95,83,103,102,108,102,117,101,107,101,102,109,106,94,106,99,105,98,99,84,100,105,97,104,109,105,116,97,106,111,102,104,112,99,102,94,100,98,86,95,87,113,99,105,100,110,105,103,122,114,104,109,112,100,111,104,104,103,92,104,93,108,105,106,98,117,105,102,99,92,100,119,107,106,102,94,96,110,108,97,107,103,99,108,116,92,106,109,109,99,99,102,112,101,91,112,106,90,104,109,107,113,108,106,102,107,102,98,108,105,97,116,101,100,110,102,109,113,108,105,108,99,80,102,88,103,94,98,108,106,110,113,99,88,96,140,101,114,110,104,101,106,101,105,96,109,96,100,92,100,96,96,121,97,95,102,118,104,108,109,91,100,82,100,106,100,107,106,98,93,90,106,101,108,88,104,98,109,92,98,101,106,106,96,109,106,112,102,107,99,97,101,95,105,100,119,102,109,99,110,119,99,94,116,112,98,89,95,112,113,98,112,94,100,108,101,111,101,97,106,96,103,106,97,91,88,100,103,109,91,105,98,105,91,105,100,106,100,101,92,117,105,100,102,109,100,100,96,110,97,102,111,102,96,102,101,105,119,97,104,107,111,108,97,94,100,78,89,100,104,99,109,108,94,105,98,108,104,107,120,102,113,107,95,108,83,92,95,113,110,85,98,102,102,97,95,95,105,105,92,103,105,99,124,107,102,119,97,96,96,107,87,109,96,101,89,95,104,93,94,101,112,108,101,97,103,98,94,102,103,88,100,95,100,103,101,109,103,107,106,89,95,109,98,97,95,106,91,102,100,95,112,98,109,100,109,90,107,100,89,94,109,106,95,99,111,114,109,91,92,102,117,93,105,114,95,115,106,109,102,120,97,109,97,106,130,100,94,97,108,103,102,101,100,112,85, +444.11642,103,76,111,95,84,109,109,95,109,95,105,105,76,113,134,86,100,112,106,93,101,102,94,107,104,108,104,91,98,111,104,86,92,104,114,117,109,104,92,116,91,99,94,113,103,114,102,88,94,101,104,112,95,77,109,84,97,109,102,96,88,104,95,96,106,110,96,118,104,99,106,96,105,95,106,124,96,97,114,111,98,102,104,105,98,105,94,83,97,100,93,106,95,107,104,111,97,100,92,100,79,94,98,100,109,107,102,107,87,93,105,109,84,105,107,96,105,110,107,94,95,102,96,104,103,104,98,97,111,114,88,117,91,110,111,108,90,97,100,101,115,100,106,97,94,106,98,107,106,97,101,96,104,92,68,93,105,103,115,109,89,107,105,106,102,114,117,109,101,81,98,114,102,94,102,109,112,98,107,117,91,101,107,103,103,100,99,100,108,98,116,103,100,106,105,102,101,110,95,99,106,101,104,103,101,97,105,103,111,99,104,100,87,94,104,107,71,98,95,114,100,101,103,107,108,96,97,85,110,112,98,97,110,104,106,107,101,111,99,117,124,109,97,106,91,109,90,101,112,110,105,112,105,100,102,107,101,97,96,100,93,105,100,95,94,100,87,98,107,100,113,108,103,107,110,109,117,104,106,92,100,100,107,91,118,103,108,103,99,101,91,101,104,114,106,100,111,100,106,94,102,99,102,96,99,110,94,103,110,105,104,107,107,110,117,95,102,77,104,94,99,103,103,104,103,100,101,94,108,110,92,109,111,89,98,103,105,105,93,102,95,113,99,95,92,116,97,116,106,107,97,107,93,95,98,112,110,112,107,94,100,95,102,102,98,102,106,120,120,96,106,95,103,95,111,104,122,102,104,112,107,121,94,102,84,93,100,103,107,98,104,97,101,100,102,98,102,95,84,114,105,86,101,108,100,99,95,104,101,89,95,107,100,108,110,117,104,95,117,110,87,109,98,96,97,90,96,95,107,105,107,109,114,107,100,108,97,115,105,104,94,108,91,104,114,100,97,81,105,104,128,99,93,110,108,100,102,100,115,104,98,91,105,113,104,99,106,96,90,94,95,102,95,120,105,99,98,109,108,102,95,103,98,107,103,123,110,104,106,96,93,105,99,104,106,114,89,104,110,103,112,96,99,92,91,109,96,91,94,102,117,84,99,103,97,115,103,117,105,93,106,90,117,84,108,100,109,108,95,100,100,101,91,100,103,97,94,108,108,107,94,105,102,94,99,108,100,94,110,108,106,104,104,100,103,104,94,96,99,106,102,99,111,106,99,95,110,101,102,98,94,90,95,101,108,114,105,107,93,115,104,98,103,94,96,98,98,116,108,101,111,104,108,76,119,111,105,93,104,92,99,107,112,108,117,107,88,99,103,107,99,111,96,104,105,98,109,96,98,102,89,98,111,96,101,102,102,103,105,110,97,99,101,111,92,117,91,102,105,97,105,103,110,93,98,95,109,103,95,109,103,112,96,102,83,96,110,103,104,113,108,98,110,101,101,105,104,116,100,91,106,93,103,100,105,95,99,103,107,104,103,108,104,100,109,92,104,101,105,107,116,108,98,103,107,104,95,98,108,98,107,97,94,104,109,108,101,98,87,103,92,106,96,100,88,96,95,104,102,103,97,99,106,108,88,96,103,96,96,104,81,104,69,103,112,98,117,109,112,99,108,99,94,90,107,95,103,111,94,109,103,107,97,110,91,104,78,96,107,99,73,105,95,95,101,109,97,100,100,111,109,126,94,104,107,107,95,81,97,75,104,102,111,95,102,113,78,101,103,103,106,105,102,130,94,96,99,87,112,102,86,108,95,96,100,96,93,99,102,104,101,89,108,77,120,106,100,101,95,108,104,112,95,95,108,108,104,87,114,98,89,98,116,91,105,99,108,106,106,100,100,106,102,107,94,104,104,98,108,96,106,108,102,104,82,106,105,99,105,100,101,109,100,99,99,107,100,99,105,102,92,91,96,105,99,106,98,106,100,102,102,104,99,100,104,106,112,103,104,102,90,99,104,105,100,95,102,102,101,114,112,113,93,108,107,106,97,111,104,100,95,106,107,112,107,88,93,113,103,96,101,96,95,96,106,74,94,105,100,102,101,105,103,112,87,95,95,114,101,103,116,101,103,111,101,105,104,108,98,110,99,94,100,91,106,105,112,101,89,108,116,101,103,102,105,86,91,109,107,104,98,105,94,98,101,105,99,94,97,97,102,108,107,90,103,97,108,98,105,105,113,101,96,99,89,103,97,108,112,100,101,103,93,102,108,117,106,91,91,112,101,104,98,110,98,92,99,95,102,102,100,94,100,102,103,116,103,92,96,88,105,98,100,103,108,104,87,118,106,100,96,118,98,103,102,98,102,107,94,99,106,133,104,102,98,88,110,101,91,108,103,112,101,97,105,97,106,106,101,100,98,109,98,92,104,107,98,102,99,107,86,102,96,99,107,108,95,106,109,109,118,105,96,100,81,101,95,98,113,112,106,95,98,102,102,102,109,101,104,110,104,111,95,87,100,105,107,99,75,117,100,105,117,106,84,106,96,104,109,100,108,99,105,100,106,104,106,89,103,107,102,100,90,119,104,97,92,107,115,113,116,99,119,103,106,92,108,84,106,103,111,94,106,107,100,110,97,113,107,94,104,109,124,113,113,101,101,90,105,109,104,105,106,106,99,105,119,107,104,117,114,111,102,102,99,104,102,97,110,108,105,105,102,110,121,103,100,106,93,110,108,106,112,110,100,107,96,103,110,90,122,109,91,93,117,101,102,94,107,105,107,106,96,107,100,78,96,98,109,103,115,112,122,92,100,104,89,109,101,106,98,98,112,112,103,107,104,115,105,99,98,105,110,108,109,103,99,97,110,112,110,106,103,103,106,104,98,107,112,117,108,105,113,106,87,117,99,98,107,106,104,98,98,108,92,101,105,106,111,115,106,110,109,99,96,100,101,120,111,105,116,97,98,113,113,122,110,88,98,105,111,104,105,115,98,105,104,117,109,104,80,93,107,110,109,100,100,110,121,96,106,107,115,109,105,113,98,102,97,103,109,111,102,107,95,100,100,103,103,99,109,118,97,99,110,101,118,103,101,101,112,97,119,106,107,93,109,106,95,103,103,101,111,108,103,110,102,106,116,99,90,99,91,100,111,95,107,104,107,102,110,106,104,114,100,107,108,97,102,103,109,103,77,113,98,91,115,96,103,103,108,102,104,84,95,113,109,108,112,98,71,113,111,117,102,106,107,112,100,105,102,95,100,102,112,105,99,111,110,90,93,63,103,109,97,113,100,112,103,109,108,102,99,90,105,107,105,69,114,105,92,113,98,102,102,103,102,108,106,113,94,109,103,120,105,105,113,94,113,100,105,105,103,108,101,117,110,89,106,98,68,103,110,113,99,108,120,114,103,104,122,96,99,99,102,98,97,100,105,103,102,104,107,102,94,106,98,91,110,98,121,106,107,106,99,111,102,101,105,106,95,103,101,102,105,86,108,98,83,92,93,105,105,102,104,84,104,108,105,101,101,109,103,105,117,108,102,92,108,108,116,108,111,98,107,111,101,105,99,102,111,102,110,104,112,114,112,112,93,111,100,102,109,98,106,111,108,106,111,118,78,107,103,103,113,109,100,106,102,105,106,100,100,117,87,109,102,109,107,98,91,103,96,103,107,107,103,104,102,117,106,107,109,108,128,91,112,110,106,89,105,105,113,100,92,101,108,93,113,102,101,110,111,106,103,104,99,119,103,109,103,113,99,101,98,103,102,105,97,103,99,121,98,123,106,107,109,106,114,109,115,93,104,112,116,97,103,92,96,101,106,109,114,105,102,107,103,116,99,97,101,113,104,105,99,97,101,94,71,94,78,110,110,117,103,97,109,101,102,103,110,100,119,100,97,99,106,109,104,97,100,102,119,97,97,103,109,100,109,96,106,104,82,94,93,105,103,104,100,101,106,107,108,103,115,123,99,106,99,106,115,94,99,105,99,97,95,102,112,106,103,98,98,103,101,103,100,98,106,106,123,101,86,102,104,102,91,107,106,85,94,104,110,103,95,109,89,112,110,99,109,106,83,94,113,100,89,122,106,96,105,100,84,99,102,98,105,100,102,110,125,100,113,106,91,117,103,111,96,100,116,115,106,100,99,117,107,107,100,100,116,106,111,110,104,104,97,106,105,110,113,102,108,103,99,110,101,109,102,104,103,95,105,103,107,101,101,103,104,96,101,96,100,111,95,119,104,91,109,99,104,93,107,99,97,115,105,103,92,102,84,109,100,118,112,103,92,102,113,112,103,104,106,104,105,108,92,111,109,99,105,95,107,99,107,113,109,114,99,98,91,94,103,104,98,100,107,109,104,98,103,105,115,101,99,102,103,104,99,113,101,91,104,104,106,106,108,97,105,107,117,111,105,112,104,119,100,100,108,88,99,111,117,111,93,83,105,97,116,95,94,96,95,97,118,98,110,111,119,93,101,92,94,101,111,95,109,115,98,105,106,95,108,108,105,109,103,104,105,101,107,110,97,112,96,103,99,107,95,117,106,99,121,102,99,105,98,94,97,95,111,103,108,102,110,101,109,109,113,111,98,99,88,83,106,109,109,105,105,100,102,96,109,106,120,87,106,108,101,117,110,97,104,116,97,116,102,101,112,100,85,98,92,108,103,109,124,98,96,103,114,117,105,114,89,105,105,100,96,86,98,104,93,100,105,106,92,102,106,70,106,105,108,94,96,89,96,106,96,84,94,104,108,108,100,109,102,67,110,104,100,97,113,111,96,106,106,120,108,109,117,99,99,98,104,109,138,100,96,109,98,109,103,102,98,110,87,98,125,95,108,103,89,105,105,102,95,101,99,99,112,95,98,106,102,109,86,98,104,106, +444.25677,98,87,92,110,89,112,102,90,101,103,105,96,94,103,102,87,104,106,92,93,94,103,107,104,103,110,99,88,91,104,125,81,92,102,105,103,100,98,103,117,98,87,120,104,95,112,97,103,102,106,85,104,101,103,105,102,122,92,99,101,108,100,91,97,95,104,105,87,93,97,96,95,93,96,101,103,105,106,105,102,95,95,107,97,98,98,102,116,103,93,96,97,91,102,98,100,80,114,66,102,107,106,100,107,83,93,93,106,102,101,109,100,107,107,109,123,104,103,106,100,111,109,105,102,104,104,102,99,109,95,100,104,101,87,100,100,103,101,89,106,101,101,117,109,100,97,102,100,88,94,104,131,95,94,102,94,82,79,93,90,105,86,105,97,101,98,98,99,91,109,99,105,96,117,95,99,118,97,112,99,107,101,100,112,100,109,100,95,100,98,89,103,90,108,93,100,102,82,105,100,96,98,94,107,102,105,105,99,116,102,90,95,96,107,98,100,134,100,97,99,103,103,97,108,102,88,102,109,106,107,104,90,92,95,109,99,113,94,95,104,97,95,83,94,97,97,89,102,100,95,101,112,96,120,105,107,92,102,95,100,97,108,101,96,100,111,105,98,97,83,103,125,117,105,98,107,98,102,91,103,99,71,113,81,100,95,96,100,97,110,99,105,100,105,103,108,109,105,99,115,100,87,86,107,89,110,104,96,100,100,92,91,122,99,98,100,104,105,97,92,100,102,112,96,89,105,99,96,95,102,100,102,100,108,105,108,113,102,92,94,105,95,102,97,98,108,102,104,115,100,74,105,85,109,99,107,104,100,116,110,104,102,96,91,105,94,89,108,106,101,107,106,113,99,106,105,108,120,96,108,104,102,101,113,104,104,97,94,114,95,110,103,106,102,110,99,98,106,76,116,125,100,107,104,92,100,108,103,112,105,96,96,97,112,96,85,106,106,112,94,99,96,104,92,109,104,101,84,90,109,105,98,102,113,98,91,99,109,101,97,110,105,98,103,105,90,103,104,103,100,102,98,109,114,106,106,105,108,101,108,87,99,92,100,104,108,99,115,102,102,99,106,93,100,75,101,98,113,108,100,98,103,125,107,100,93,100,98,99,105,116,103,109,95,92,102,87,108,107,101,102,88,103,96,99,99,97,100,101,104,100,104,90,109,98,105,106,96,103,98,105,97,102,108,107,74,104,98,84,97,100,101,96,96,97,119,102,98,108,95,110,104,101,97,103,95,103,100,104,98,106,107,103,107,104,111,95,98,97,110,95,92,94,106,100,108,101,83,88,99,97,103,105,100,106,99,103,93,105,107,97,101,97,98,107,100,106,105,109,93,102,102,99,106,109,104,100,104,105,105,93,93,100,103,109,113,89,92,121,103,106,101,98,97,102,104,111,96,97,111,110,104,104,97,100,95,96,97,94,106,102,106,100,100,98,98,93,103,98,99,109,94,100,94,94,101,101,111,110,100,93,102,107,108,97,116,99,109,105,94,108,100,113,106,105,102,105,105,100,99,98,98,98,108,102,105,98,102,97,105,112,111,113,87,99,91,99,105,92,97,96,105,98,117,99,102,105,109,120,101,99,103,101,100,106,102,77,89,92,99,105,108,92,95,89,101,103,81,93,106,110,82,102,109,92,95,92,92,101,103,111,104,101,99,95,94,99,99,108,112,106,78,88,99,104,97,97,97,97,109,104,106,101,87,103,104,102,101,95,94,96,99,98,105,94,101,92,101,108,94,100,94,112,103,106,105,85,112,104,105,94,97,100,99,116,106,111,108,105,102,96,109,84,106,109,106,99,103,113,97,99,111,78,102,97,108,102,107,94,108,100,103,109,105,91,97,89,103,99,110,109,100,104,101,108,101,114,100,106,110,102,102,104,103,96,108,104,89,111,101,100,109,93,114,99,105,101,109,100,87,97,99,99,99,100,112,92,99,99,100,96,103,102,101,95,116,117,116,101,100,106,120,108,102,91,96,99,93,103,111,90,108,113,100,98,98,98,113,108,100,113,105,95,95,83,97,109,88,99,95,102,111,109,103,111,80,101,117,94,98,99,103,100,107,108,99,87,104,96,99,108,105,96,111,104,108,102,108,105,107,108,100,105,105,98,95,101,99,97,103,109,103,87,104,98,104,107,80,90,109,110,111,100,110,99,105,106,98,93,101,107,97,108,109,109,96,102,92,101,100,101,117,100,104,106,94,101,105,95,105,97,96,101,133,109,109,108,100,99,95,93,114,99,102,96,93,92,108,102,104,109,94,102,92,122,97,99,102,95,92,102,109,108,100,103,106,91,98,103,108,121,108,108,81,105,108,99,90,129,96,95,106,118,93,106,133,96,109,105,102,108,113,98,107,94,107,95,95,69,99,103,104,104,98,103,105,101,90,103,103,93,110,106,78,103,95,105,94,95,102,100,109,66,105,98,103,101,107,97,94,93,93,112,111,115,107,113,98,108,83,99,97,104,109,102,96,95,102,105,105,100,106,104,97,105,97,111,102,107,114,91,114,106,109,102,98,101,104,100,106,93,109,81,96,93,106,97,102,106,100,103,112,99,91,108,104,110,98,110,90,104,103,88,107,107,101,101,108,109,100,111,96,101,102,80,101,106,107,104,113,104,93,106,91,91,108,115,89,105,95,104,85,104,102,92,106,95,124,98,106,103,104,101,106,95,104,116,109,110,109,87,105,106,104,98,105,102,100,117,98,108,101,110,106,110,109,103,109,102,93,110,108,80,102,112,109,114,111,111,104,111,104,114,106,105,99,105,104,108,100,103,101,103,113,94,105,113,105,105,101,99,102,98,92,102,123,106,106,110,107,108,108,117,105,101,92,101,106,99,99,110,93,97,104,110,105,103,104,108,120,108,104,106,99,107,101,102,101,105,118,110,110,114,100,107,102,97,103,109,106,97,105,95,113,115,104,94,101,102,116,94,104,104,99,108,103,112,109,106,95,98,102,115,98,102,99,102,100,98,104,106,108,99,99,118,105,108,102,107,101,102,101,133,112,108,116,100,105,110,98,105,112,110,90,106,97,97,98,111,108,111,112,102,105,97,105,105,108,109,100,101,113,103,97,109,101,95,106,112,90,110,105,104,108,109,105,115,108,113,104,99,99,113,98,96,93,103,109,96,98,107,103,104,104,107,104,116,94,105,98,106,104,100,103,104,102,108,99,99,117,104,97,96,102,105,105,108,111,102,96,94,109,99,105,106,112,101,97,113,110,98,101,105,112,107,107,102,102,103,78,91,97,99,96,107,98,99,98,93,113,96,103,104,106,99,99,121,97,97,98,101,98,106,108,105,106,102,100,98,106,109,111,100,98,95,100,106,94,92,104,89,109,90,116,103,105,112,92,106,103,97,102,91,105,100,120,103,105,102,107,95,115,116,108,105,106,102,104,105,107,102,108,107,97,102,115,107,117,93,112,102,114,98,105,99,92,113,99,97,102,75,102,103,101,109,123,101,93,100,108,108,110,100,107,111,97,110,96,116,88,104,91,104,108,98,86,99,101,107,95,86,101,100,114,106,109,108,107,104,113,106,108,106,99,96,103,83,91,101,95,96,109,101,108,103,97,103,100,107,117,76,90,117,103,103,97,103,94,107,97,95,105,95,95,106,89,97,97,106,98,112,105,113,116,94,98,107,109,98,78,104,109,94,122,99,115,106,115,101,100,100,110,106,115,69,104,121,97,96,84,100,96,121,97,100,93,107,92,101,103,114,116,112,108,104,103,107,117,104,88,102,108,105,102,104,100,126,106,104,99,112,112,100,108,108,105,96,96,106,96,116,99,106,107,101,103,104,100,99,112,91,104,92,102,105,96,108,113,101,102,94,101,100,74,112,106,101,116,106,91,104,90,101,98,111,109,107,99,110,107,113,102,102,91,99,105,102,99,112,109,82,108,113,112,89,103,107,99,116,112,91,95,93,106,96,103,105,117,117,105,100,106,113,106,107,103,107,96,104,113,124,93,109,103,113,98,119,101,107,97,109,105,112,99,90,107,113,102,119,108,107,107,95,111,104,106,102,99,102,96,100,104,120,104,97,66,104,90,96,104,102,103,113,104,109,106,95,101,130,95,100,101,93,103,111,93,103,111,118,110,93,105,93,99,104,112,101,116,100,105,107,88,93,92,86,113,109,101,91,102,110,112,112,105,102,100,98,111,109,109,101,105,105,106,106,125,105,99,99,100,106,90,75,95,107,97,103,108,101,103,99,102,104,113,109,105,119,103,119,97,109,98,94,104,102,106,106,107,89,99,96,110,100,99,109,97,108,97,97,107,84,96,114,111,99,103,97,92,119,92,106,103,106,95,111,102,105,109,102,109,97,102,106,101,112,106,107,117,100,102,94,108,110,99,107,100,94,109,105,99,100,88,104,103,116,114,95,127,112,105,108,111,96,92,115,99,102,97,113,118,101,97,99,116,109,93,95,105,99,103,68,100,103,107,97,100,95,104,104,107,95,103,105,102,110,104,107,112,105,96,97,95,102,111,96,102,101,114,95,110,95,94,109,96,89,113,101,101,118,100,110,102,109,89,110,94,100,98,100,108,100,97,106,121,106,100,109,91,92,89,102,85,102,115,94,115,99,111,106,93,104,107,96,99,95,104,97,103,97,95,101,103,103,98,101,103,85,90,91,87,105,94,110,107,109,96,109,102,98,102,105,104,112,117,100,96,94,104,98,94,111,107,110,107,102,99,108,109,100,93,111,98,99,103,98,104,117,102,103,91,101,92,109,103,104,104,102,100,113,109,91,90,97,101,104,95,116,96,104,112,102,89,104,104,106,114,98,103,101,103,105,108,94,98,101,117,82,102,95,84,96,100,92,79,102,93,104,101,69,106,115,98,101,99,96,100,113,101,82,100, +444.39716,91,88,102,109,97,114,94,111,103,101,98,115,101,114,110,100,105,101,103,92,104,111,93,105,101,111,108,110,101,103,104,96,104,111,105,98,107,97,106,105,108,101,113,109,109,96,110,102,105,100,95,97,101,100,108,85,102,100,104,97,113,105,109,96,108,106,97,92,99,101,107,107,92,112,92,115,92,106,110,104,102,117,103,105,105,95,90,87,92,107,110,95,108,105,90,94,73,106,108,95,117,100,100,103,107,96,113,95,110,106,101,103,100,105,84,98,102,100,99,99,114,91,101,101,118,103,107,100,109,98,106,104,88,105,99,107,102,92,102,96,124,108,78,100,105,101,98,103,88,66,96,101,106,93,111,92,100,102,106,89,109,100,106,106,101,104,113,97,89,101,100,101,100,101,103,102,104,102,97,95,105,102,98,101,106,108,98,97,103,95,105,96,95,105,102,101,98,109,92,120,99,104,94,111,97,105,132,118,101,114,102,104,102,101,93,112,89,94,93,98,109,91,101,108,95,113,98,108,106,103,95,111,100,101,102,108,102,110,99,97,95,97,97,106,92,103,94,95,96,128,96,105,90,97,82,122,98,119,103,91,99,92,98,100,95,119,83,98,106,101,91,99,109,98,96,100,101,96,110,99,106,96,93,106,111,118,103,94,107,106,97,111,112,94,99,108,114,104,106,103,104,99,108,109,93,101,106,115,96,103,105,93,106,113,89,110,108,104,95,101,97,93,109,107,107,97,105,97,109,100,111,96,110,93,107,115,106,102,98,105,104,95,116,99,103,109,112,117,108,99,109,116,102,80,109,101,91,112,102,120,110,96,112,103,99,98,109,106,99,106,102,106,94,104,110,101,141,112,108,113,102,109,98,105,110,106,102,101,106,109,106,105,100,104,111,101,98,95,111,99,104,105,112,105,97,102,105,102,96,109,88,69,108,101,105,98,108,90,101,104,98,93,89,94,107,114,105,94,100,106,97,88,101,89,100,113,103,105,91,98,108,105,106,113,104,88,95,99,101,108,106,96,98,102,106,99,102,94,95,76,102,102,101,103,109,106,109,99,99,90,100,112,102,99,99,108,102,106,109,113,89,108,109,104,106,99,94,106,106,105,106,101,108,109,91,117,114,96,116,90,98,105,121,103,103,99,106,104,104,98,85,109,110,99,105,109,105,97,110,104,107,101,117,105,104,99,103,101,108,112,93,101,108,112,99,95,105,92,95,103,95,101,91,107,104,94,106,105,108,104,99,105,114,112,100,93,111,98,97,104,103,103,92,103,101,104,104,102,99,107,101,101,98,105,106,102,94,108,107,94,104,100,106,114,109,105,72,109,108,106,103,107,100,97,119,109,104,103,90,114,105,98,108,110,99,108,105,100,111,99,105,110,107,114,110,97,92,96,106,95,116,102,101,108,112,108,94,96,113,101,99,103,84,107,94,102,92,102,113,109,100,95,87,100,98,92,102,106,104,109,100,103,96,75,112,86,110,98,109,113,98,101,93,99,112,96,111,96,109,109,106,97,102,111,106,109,109,101,98,101,104,109,114,98,95,107,108,109,106,101,106,104,95,105,112,99,97,104,101,102,114,116,110,96,100,125,115,99,95,100,104,115,98,92,94,109,75,96,110,99,98,90,84,105,97,100,108,100,96,110,107,112,105,109,90,103,120,102,104,104,106,104,103,99,99,102,127,107,96,90,112,105,102,104,116,99,107,105,103,113,81,114,99,115,113,97,95,114,105,102,114,100,102,81,108,103,102,98,103,101,104,118,107,104,99,107,95,101,104,118,108,108,105,102,105,108,109,99,109,106,103,105,85,100,110,107,104,105,102,97,112,81,110,101,119,106,95,107,113,90,98,101,98,106,104,100,103,102,105,106,105,109,98,109,96,95,92,112,109,101,95,116,99,103,106,111,113,92,104,70,96,101,110,109,125,94,95,109,104,105,96,102,109,106,102,97,103,112,102,113,100,110,87,104,113,102,107,109,104,92,104,96,94,103,103,105,84,111,116,102,95,109,81,103,100,105,104,118,100,91,106,105,101,107,99,91,104,113,99,117,79,102,103,113,106,105,115,95,100,97,114,107,108,101,115,98,95,105,107,98,95,104,117,108,106,108,102,102,104,102,105,96,98,104,114,90,116,91,102,117,103,98,74,102,94,108,100,117,97,103,104,105,103,109,110,102,105,101,100,103,80,116,113,100,99,107,100,93,94,105,99,98,103,99,98,107,100,101,96,105,100,104,107,102,96,112,94,104,93,111,90,102,96,109,107,109,104,89,96,111,98,94,105,96,92,96,97,106,110,130,109,97,104,108,100,103,107,93,114,103,103,106,96,107,96,101,102,108,105,92,91,108,104,102,90,97,101,100,100,104,110,98,108,121,103,99,98,99,110,102,97,94,92,92,110,126,98,98,98,85,82,112,116,101,89,107,112,101,104,105,102,94,102,110,114,122,91,103,90,106,102,95,104,109,114,102,93,104,110,95,93,103,120,93,106,106,107,109,101,105,97,108,103,92,96,96,92,109,110,122,102,105,97,107,108,110,96,103,97,97,105,116,100,96,110,98,103,104,101,113,92,99,102,109,109,94,98,84,106,112,106,91,106,98,113,102,103,98,110,97,108,93,98,100,95,107,104,106,112,94,100,106,115,96,111,118,117,98,112,104,107,114,102,110,110,121,108,91,108,110,98,112,102,112,101,112,98,103,104,106,91,112,88,106,109,116,105,112,91,99,94,118,107,104,101,106,113,106,105,98,102,104,109,105,105,106,101,98,109,102,94,108,101,115,100,112,113,100,109,108,105,108,98,104,111,101,107,109,102,116,97,105,86,91,97,103,116,118,102,113,88,106,98,107,120,108,107,104,113,106,94,101,113,107,99,93,101,112,101,100,121,96,95,96,85,100,115,98,110,100,108,112,95,105,110,95,104,95,100,118,99,105,103,106,105,107,126,104,104,103,99,107,115,104,99,113,111,105,91,109,108,103,107,103,86,94,113,98,103,99,110,119,97,112,115,114,111,104,106,100,100,109,103,106,94,101,95,112,105,96,91,108,107,102,103,103,106,95,101,105,107,104,111,104,105,94,105,97,106,104,100,101,108,106,116,100,101,103,93,104,109,88,115,100,91,108,107,105,113,98,113,92,93,116,113,98,103,100,99,112,100,107,98,102,101,102,106,113,109,117,99,97,101,94,96,108,142,106,90,115,115,98,96,95,94,113,96,94,111,115,110,103,95,118,112,92,105,111,92,95,113,95,113,99,106,97,102,114,102,106,110,101,107,96,109,101,117,99,101,105,110,99,100,94,100,122,105,104,110,94,93,100,99,106,107,105,100,102,109,98,97,84,92,95,75,97,95,112,107,96,102,106,105,111,98,110,95,121,96,78,101,101,125,101,99,92,104,103,102,105,106,88,103,95,92,110,106,102,99,104,103,99,98,96,99,107,91,105,101,98,98,88,96,92,110,96,92,100,111,105,105,99,96,107,105,95,111,109,101,63,91,108,95,105,107,96,107,95,105,98,107,103,99,97,106,110,101,114,110,109,107,99,104,106,102,114,113,101,104,101,89,107,105,97,96,100,97,98,109,102,102,100,110,107,107,105,110,98,109,100,96,104,100,107,105,97,113,100,109,100,103,112,94,110,87,102,103,88,103,92,109,99,110,94,105,103,103,95,97,112,99,119,102,113,91,101,94,102,91,101,110,95,110,107,101,107,108,101,98,104,105,89,104,106,95,101,105,95,82,104,96,99,108,97,101,109,109,98,103,109,103,89,94,101,105,94,110,104,108,101,107,103,102,102,97,94,100,105,98,105,92,102,102,104,99,101,106,100,101,100,96,107,96,112,95,112,95,105,110,98,111,101,95,102,99,101,100,98,97,98,88,100,100,112,109,93,106,105,95,95,94,95,111,102,100,109,115,111,98,105,96,104,101,116,100,105,92,104,100,102,102,113,108,110,109,103,111,91,95,114,101,106,93,106,100,92,107,108,114,98,113,101,110,94,95,115,99,103,109,81,111,97,92,98,105,103,96,109,108,89,85,89,103,97,94,111,94,109,105,94,103,100,98,100,103,112,95,106,86,101,102,95,110,99,110,117,98,104,96,101,105,91,114,111,101,120,108,109,107,104,105,100,91,91,95,103,108,98,99,105,91,110,116,100,110,112,106,115,94,109,108,101,114,97,91,103,114,109,111,100,100,96,109,101,95,91,105,115,112,94,101,105,99,95,94,101,103,91,95,108,104,95,98,104,113,119,102,91,100,103,98,103,100,105,99,97,104,100,109,102,95,105,101,106,103,99,94,102,95,94,113,124,102,93,108,117,104,100,105,102,98,102,111,108,106,123,116,109,101,101,114,107,97,95,101,99,119,104,102,100,96,86,96,90,102,103,101,115,97,88,107,103,98,107,93,111,105,100,120,94,106,110,109,97,102,104,113,85,92,101,95,103,107,103,106,100,95,98,84,103,101,104,81,105,108,91,98,97,100,95,95,102,96,91,95,108,107,99,100,106,103,108,86,104,98,109,104,94,104,98,99,115,103,109,88,95,96,94,86,104,108,99,98,105,106,108,112,77,102,103,111,112,102,102,110,109,95,99,102,107,95,102,106,94,105,107,104,96,105,92,93,100,115,97,93,102,93,94,109,108,95,98,102,109,112,104,112,104,94,105,94,128,114,101,118,101,92,99,100,87,96,100,95,99,106,111,101,116,102,87,117,93,92,109,76,111,104,104,105,111,104,104,110,113,105,112,90,98,105,110,93,117,102,110,111,102,97,112,99,108,104,99,97,99,113,93,107,98,89,96,92,99,103,100,93,106,99,109,86,84,97,98,107,100,92,106,118,102,113,79,105,98,103,94,105,98,114,99,109,102, +444.53751,98,96,93,97,91,101,94,91,107,96,88,102,107,99,110,105,99,101,90,96,98,100,104,106,99,109,96,99,91,78,96,100,103,101,105,100,86,87,96,101,106,95,99,94,111,103,103,103,105,98,100,106,116,99,101,109,106,99,99,99,106,102,97,108,100,95,103,108,112,107,106,96,99,103,100,113,97,110,100,102,88,96,116,104,89,97,114,102,107,107,107,100,96,101,98,97,98,109,101,105,100,98,115,101,96,109,104,97,106,92,99,98,103,93,108,100,105,108,113,102,92,105,95,107,107,106,111,92,107,107,107,103,110,96,110,113,87,100,97,102,84,96,104,97,110,108,110,102,99,95,109,108,104,95,105,110,106,103,112,101,95,109,100,97,103,110,99,104,100,120,99,104,93,104,101,103,107,113,106,89,100,100,101,105,115,108,97,96,90,103,108,113,99,102,92,102,113,99,104,101,106,102,102,109,105,107,104,99,102,102,102,100,103,116,99,103,101,113,96,108,108,109,107,101,109,110,114,104,106,105,114,103,97,97,101,92,80,94,113,106,108,104,99,86,112,99,100,101,101,96,101,102,105,93,100,108,115,113,97,94,95,94,100,109,106,105,103,98,104,100,116,100,109,93,98,104,95,98,91,101,100,111,96,97,102,96,102,95,112,110,109,100,109,112,104,103,104,89,91,112,99,103,102,109,104,99,117,106,115,110,97,112,109,109,109,109,99,108,100,102,106,102,90,106,95,99,96,98,108,106,101,94,105,102,107,110,100,105,121,103,116,101,110,100,101,102,97,103,108,114,95,96,109,109,97,100,94,113,109,110,105,98,111,105,92,98,99,105,101,108,103,107,112,103,110,95,118,103,105,102,101,111,108,112,107,101,105,107,90,109,98,88,102,98,99,96,110,97,106,114,93,106,100,102,98,97,97,108,99,120,99,90,104,98,103,100,111,90,110,102,99,110,107,101,96,111,100,107,94,76,87,102,95,104,106,95,93,107,107,104,94,100,110,111,92,94,100,94,97,101,109,98,113,86,110,105,113,101,103,107,99,91,102,110,106,97,96,105,109,94,112,106,101,102,92,101,106,112,94,94,113,104,115,99,115,115,109,110,100,100,99,104,109,96,93,94,100,105,99,112,106,102,109,110,100,104,96,105,109,107,106,99,94,99,111,108,115,110,99,106,104,111,109,106,96,117,107,105,105,116,98,96,103,99,116,109,105,98,110,116,101,110,99,92,115,103,104,110,103,90,97,104,112,107,103,104,91,102,99,101,105,98,99,101,94,101,105,104,71,108,99,93,96,98,94,95,104,92,112,108,109,96,107,98,97,102,102,100,105,92,107,107,99,105,103,106,105,102,105,105,96,112,123,107,104,101,100,109,96,105,103,113,119,100,122,134,103,93,100,105,98,91,102,109,113,100,105,97,105,113,115,99,113,94,102,110,104,112,99,137,100,110,114,98,114,105,105,92,114,106,88,107,108,114,105,97,112,100,103,110,83,98,96,111,97,110,103,104,98,104,102,113,114,102,106,100,107,105,100,91,99,105,108,87,88,100,99,100,93,100,105,105,101,97,99,101,111,100,99,100,107,96,97,95,107,109,84,115,102,99,105,106,103,99,101,109,92,116,104,105,102,102,97,123,102,87,91,95,101,115,108,113,108,105,99,103,91,96,94,95,98,102,102,113,125,105,100,100,96,92,103,95,104,111,99,94,93,108,105,97,106,100,85,91,95,95,94,109,98,90,99,106,107,105,106,108,103,107,86,107,98,108,110,103,98,113,112,98,108,106,99,113,102,106,103,102,101,93,107,100,104,96,94,94,103,98,90,92,102,91,99,92,89,71,100,104,99,109,104,102,113,102,109,104,95,97,129,97,111,98,103,101,111,97,109,110,103,96,109,104,90,97,119,101,99,104,113,104,91,99,108,100,100,109,110,109,118,100,104,110,103,104,103,118,80,102,89,95,104,110,110,109,105,106,104,101,116,112,101,103,114,91,104,114,105,107,86,99,114,102,108,101,104,101,99,95,93,95,99,100,107,116,95,101,104,98,101,99,117,99,104,103,110,112,91,95,104,114,95,108,107,100,111,112,102,95,110,102,95,95,98,99,95,109,98,88,101,107,116,99,96,93,104,110,113,93,100,110,91,108,109,111,107,98,103,100,98,106,103,108,99,95,106,107,101,111,105,125,116,102,85,105,110,99,95,103,97,100,99,103,104,93,100,97,105,108,81,90,108,105,97,106,96,90,101,104,83,97,99,94,107,106,102,90,114,108,99,99,100,101,102,113,110,111,101,109,113,93,93,99,103,114,95,101,100,106,97,103,96,102,116,102,94,99,114,97,95,96,104,94,106,104,98,107,106,97,105,95,104,99,112,129,85,117,109,100,111,101,92,104,108,110,94,98,104,107,124,106,91,97,66,113,107,95,99,112,100,96,100,95,88,96,95,113,105,97,108,105,90,106,95,100,117,105,105,117,69,106,112,108,102,98,68,100,107,107,93,107,82,104,103,107,109,94,109,109,105,95,107,109,118,108,96,106,102,110,99,113,99,67,96,108,111,96,104,102,103,105,95,98,102,109,108,108,108,105,96,98,100,113,106,105,104,94,105,105,102,101,99,113,110,108,110,107,103,107,102,111,96,100,103,95,98,102,97,101,99,88,79,114,112,103,107,110,103,95,115,108,98,108,99,108,103,103,93,108,111,105,94,110,99,97,89,107,96,115,107,112,103,107,106,94,100,115,95,102,104,113,101,98,109,109,103,99,101,95,105,106,110,110,92,115,97,113,106,108,117,96,105,104,107,102,94,94,105,102,130,106,103,100,95,107,113,105,99,106,108,103,103,118,102,100,77,75,110,104,100,117,107,107,106,107,100,80,100,107,101,108,103,104,72,98,99,102,100,103,111,112,112,102,104,93,107,100,105,103,102,95,95,116,95,111,87,111,103,100,115,108,102,115,103,99,104,106,103,112,113,98,102,98,110,90,100,97,104,119,113,113,101,99,107,108,87,84,118,96,90,81,94,98,104,83,104,102,102,107,108,95,89,102,109,108,99,105,96,101,76,96,94,102,100,116,108,99,106,92,107,88,108,101,91,100,102,92,107,92,116,102,128,109,99,111,101,98,105,100,96,104,91,106,96,112,107,103,85,107,95,101,96,103,110,106,95,117,99,106,103,100,107,108,99,104,105,98,105,109,95,108,94,98,110,104,108,92,98,94,109,96,113,103,120,95,99,92,105,104,101,102,108,100,96,119,100,98,125,95,111,102,96,106,95,104,98,111,103,101,102,103,108,101,107,99,107,103,100,109,113,98,98,103,96,109,118,94,107,106,102,106,102,113,100,109,87,103,105,107,103,105,103,93,99,91,96,109,105,104,100,109,103,100,99,105,99,98,101,106,106,102,104,100,98,94,120,92,106,105,104,125,96,103,91,85,98,105,105,98,114,108,99,94,110,105,107,100,109,101,112,104,98,102,113,108,101,104,109,103,103,102,95,102,103,103,98,98,102,113,108,101,108,73,109,101,106,107,106,115,95,113,111,121,107,102,103,93,109,100,105,103,112,91,94,101,93,115,99,107,113,94,101,113,91,98,101,105,111,85,108,97,111,100,99,105,107,97,100,112,99,103,96,106,94,103,109,102,104,105,101,109,109,97,94,108,91,101,99,90,100,102,104,102,107,95,121,97,109,106,94,107,106,105,98,101,87,93,102,110,109,91,100,113,99,96,100,107,98,105,104,110,88,101,97,94,105,101,94,102,104,111,113,108,99,96,91,84,106,100,121,105,106,94,111,103,105,120,104,101,106,110,100,61,88,101,101,87,104,102,103,98,101,102,102,105,98,103,98,110,101,107,98,111,102,97,103,110,105,105,124,103,103,104,105,102,105,114,100,108,102,92,107,109,107,98,109,110,100,92,104,97,83,95,96,104,95,94,97,97,111,116,104,103,97,113,104,114,105,81,105,105,109,98,97,102,103,105,101,102,106,100,102,108,112,100,99,111,104,93,113,105,103,110,112,105,96,97,114,107,98,100,83,105,110,103,110,113,103,102,106,104,91,114,98,105,106,95,97,114,111,109,116,101,109,104,103,103,106,110,106,109,103,87,112,92,100,92,107,102,100,110,95,96,96,104,95,93,104,104,116,97,110,106,115,107,100,109,107,109,106,109,105,105,108,90,112,102,100,101,97,96,104,113,113,94,105,103,105,108,103,99,104,108,101,113,106,104,105,104,91,116,109,108,85,101,98,109,101,106,105,97,110,105,101,115,98,104,113,104,102,104,104,117,109,112,115,105,104,100,100,113,102,104,105,109,109,103,102,103,96,89,101,124,95,98,107,105,92,102,109,98,94,102,109,103,106,97,101,94,110,116,96,111,98,101,91,108,73,103,100,95,96,101,102,105,99,102,98,111,95,116,105,111,107,108,96,108,96,102,103,104,107,97,91,99,96,108,104,126,107,79,106,97,100,104,112,110,107,103,86,96,109,94,100,103,98,109,105,102,105,108,104,114,101,106,98,114,115,98,89,100,99,107,92,95,108,103,96,108,105,102,106,100,105,91,98,105,107,90,108,96,97,91,105,106,103,93,106,102,101,106,102,99,86,109,109,95,107,102,108,113,107,107,111,111,100,106,100,105,105,101,111,115,94,101,114,104,77,117,101,99,112,98,108,98,102,90,106,116,101,103,102,101,105,100,90,101,94,95,102,109,90,88,101,94,91,120,101,103,110,98,107,100,97,105,89,100,106,92,102,95,104,104,95,113,108,99,94,99,91,102,106,112,114,98,101,91,115,105,98,115,97,105,100,103,109,98,96,90,96,102,101,96,101,109,85,121,110,107,113,104,92,102,93,94,97,96,105,113,109,104,104,94, +444.67786,101,94,119,102,126,96,96,91,102,91,90,106,97,110,112,98,86,103,108,100,99,100,102,96,93,113,107,104,109,98,94,93,101,100,114,104,100,97,94,99,105,97,104,102,97,99,97,100,97,109,99,106,105,103,112,85,110,95,104,95,102,106,99,103,94,108,104,102,104,115,101,107,102,102,98,101,95,110,101,94,98,101,100,98,101,101,99,100,104,107,90,97,91,94,97,101,94,94,96,97,109,104,96,102,99,101,83,109,95,117,113,97,108,106,99,98,98,105,102,106,105,115,95,102,95,105,117,107,92,101,103,105,106,99,102,99,98,106,100,119,98,95,103,99,104,100,102,92,86,97,101,98,102,108,100,99,116,103,97,104,102,94,109,101,95,108,95,92,100,95,99,106,102,105,101,114,99,93,93,111,99,109,95,102,105,103,92,99,107,101,94,134,104,84,107,92,103,108,105,88,100,90,104,101,102,101,91,101,106,96,101,99,104,106,92,99,88,106,90,98,98,121,101,100,99,106,91,100,100,101,98,113,105,99,108,103,102,98,94,90,97,101,110,100,97,100,96,100,101,104,79,95,106,94,107,105,101,95,104,99,77,106,112,99,97,100,105,94,104,83,92,98,98,100,104,110,93,117,95,104,101,109,106,108,101,81,85,92,97,107,109,81,109,95,95,114,102,101,99,96,98,101,102,109,97,76,104,102,104,116,90,95,106,105,107,98,100,101,105,97,110,100,108,94,101,97,96,99,110,97,100,108,112,103,100,111,104,107,103,101,101,103,97,100,94,102,102,100,106,95,113,107,100,101,101,102,102,103,118,93,101,96,107,98,100,108,103,113,102,106,112,107,101,92,95,102,105,101,91,97,102,114,106,104,95,100,95,95,108,117,107,81,92,104,110,97,104,93,81,108,106,95,108,83,89,102,90,96,97,102,95,91,107,102,110,91,101,108,103,99,99,86,101,112,108,92,97,95,75,101,113,103,98,105,103,102,89,113,96,96,102,103,106,86,94,113,92,89,90,98,107,97,98,107,102,101,101,97,117,98,96,107,95,109,103,104,103,105,94,112,111,97,109,114,103,101,97,96,99,113,111,92,105,111,102,100,103,101,100,90,99,110,112,102,99,112,94,110,113,100,106,97,103,104,103,102,98,103,104,107,102,105,107,115,85,111,112,98,97,104,120,99,95,104,102,114,108,104,94,103,97,113,111,90,98,92,110,101,103,107,108,113,108,110,98,108,102,105,109,98,85,101,114,101,106,99,114,98,99,102,101,98,94,104,110,102,100,96,90,115,71,95,107,111,104,95,98,95,101,99,100,69,94,86,102,96,108,116,112,102,103,107,96,100,118,99,92,104,103,97,92,105,106,104,95,97,103,106,97,100,105,106,99,100,97,100,89,101,99,102,104,103,98,105,94,90,117,83,105,109,104,103,93,104,94,98,96,94,92,105,99,110,108,100,100,92,92,99,103,119,99,102,83,99,87,106,109,99,101,106,79,102,105,100,101,102,99,96,106,92,89,108,97,112,97,107,108,109,105,89,97,114,107,104,92,125,104,106,102,100,102,103,97,102,91,104,103,102,108,95,100,102,99,116,114,105,111,99,91,96,104,104,90,93,105,102,94,96,99,104,103,93,100,103,86,105,98,110,99,107,100,105,109,101,105,98,96,103,102,105,94,91,94,92,106,95,108,108,102,115,114,101,101,96,104,93,100,96,109,102,100,102,95,75,97,96,102,91,74,107,106,103,107,119,102,96,100,105,113,93,103,101,104,110,81,100,105,105,99,96,99,107,104,115,103,112,108,115,109,87,99,113,105,104,106,87,98,100,97,99,112,107,94,111,104,88,77,106,103,93,93,113,108,118,94,107,97,97,109,109,103,93,99,95,110,104,106,104,95,109,104,95,106,108,106,87,98,108,109,92,97,100,98,107,104,96,102,95,102,99,109,99,98,92,104,98,95,104,100,84,114,113,107,104,92,104,99,106,102,101,91,112,94,106,102,103,97,96,102,100,96,106,94,105,110,107,106,103,101,98,102,104,100,103,103,109,95,102,99,107,116,120,110,95,95,93,100,109,102,107,103,124,113,115,91,96,100,97,104,104,98,102,105,106,122,108,103,106,97,109,83,114,96,106,94,102,113,111,101,102,97,114,99,103,100,110,74,103,106,101,110,103,105,109,102,108,87,111,103,101,95,83,96,97,97,115,97,99,95,108,105,97,104,94,101,92,97,100,90,104,128,110,101,102,105,99,113,88,112,102,105,98,102,94,108,77,123,99,94,107,109,100,101,105,114,102,116,122,98,104,108,106,113,87,109,105,100,101,105,116,111,110,109,108,101,94,115,95,97,94,102,119,101,67,97,90,95,101,96,93,107,106,103,95,109,96,98,100,99,104,81,105,111,88,94,97,105,113,91,105,91,114,91,95,98,100,100,88,94,100,90,100,94,100,111,100,103,95,110,96,96,101,96,107,93,112,99,92,105,115,105,98,103,101,109,105,102,110,99,106,98,105,94,107,115,96,102,100,97,113,108,93,102,105,98,124,102,115,106,81,98,103,92,105,92,106,105,99,106,104,102,109,94,98,106,104,106,103,102,97,104,107,110,107,105,112,99,98,110,100,110,93,107,104,103,102,107,102,104,114,105,98,106,109,104,98,105,105,106,97,108,105,100,113,111,109,95,101,92,101,88,99,97,102,91,107,103,103,106,102,95,117,100,106,108,105,101,110,108,95,98,103,99,112,91,91,107,113,112,110,106,117,101,102,109,110,101,99,117,98,102,103,88,106,96,95,108,112,110,107,106,109,120,94,91,97,113,102,104,108,100,107,103,100,99,109,95,102,100,114,108,98,108,95,109,109,104,93,101,137,111,96,92,115,102,97,99,104,133,110,94,93,114,101,97,102,108,98,104,111,111,111,91,109,95,120,105,103,105,111,95,110,85,104,108,114,112,110,105,101,99,103,95,88,113,122,122,97,94,93,111,102,107,94,109,114,111,102,105,101,100,109,102,97,108,105,107,114,109,105,101,109,85,102,105,103,110,99,109,96,99,106,94,109,108,98,98,97,104,100,104,101,92,97,100,105,99,108,80,113,103,98,103,99,108,95,103,108,104,95,101,96,103,107,96,100,106,102,95,107,103,100,108,111,103,101,98,103,110,97,104,100,106,104,97,114,99,95,96,98,96,91,86,106,104,113,99,104,99,98,99,94,95,98,109,107,109,109,116,98,97,111,101,98,104,96,106,103,99,100,106,109,102,95,96,97,102,93,100,97,102,103,104,104,93,101,106,109,102,93,97,108,85,106,95,95,107,99,99,108,105,104,94,109,106,104,99,101,100,98,98,99,96,100,110,101,88,107,101,98,112,105,99,88,112,98,99,130,99,98,103,110,98,104,99,111,93,94,91,102,99,104,105,102,101,116,109,98,103,106,106,106,91,105,93,99,113,106,102,95,106,91,117,81,110,105,108,109,113,99,113,117,97,113,104,102,83,105,104,101,110,101,98,115,134,99,104,99,96,100,92,98,102,107,108,106,101,89,112,104,106,100,113,110,102,111,99,100,102,73,91,99,91,109,109,102,86,100,95,95,92,112,106,107,107,94,112,104,109,94,113,101,99,102,107,101,105,89,106,97,102,101,107,106,104,93,103,110,91,98,102,113,99,94,111,95,107,92,110,101,114,102,100,98,103,103,111,111,104,104,98,91,70,106,109,97,111,96,99,110,96,99,95,109,107,102,117,109,99,100,99,109,110,105,115,102,98,94,91,108,102,94,111,107,113,103,99,111,96,94,111,99,102,89,105,109,100,103,106,98,104,116,110,102,105,105,108,109,99,99,112,114,112,106,117,101,102,99,118,101,95,100,109,94,103,106,104,98,102,110,115,92,96,107,92,91,113,93,104,97,110,103,104,100,103,106,109,106,100,105,113,103,104,103,92,110,99,110,96,102,103,105,99,113,105,107,100,99,98,100,102,103,109,98,102,109,112,94,103,95,98,103,114,100,111,104,102,99,108,89,102,111,106,94,102,105,103,101,97,105,112,102,101,103,109,106,102,93,100,98,106,99,103,102,89,134,90,101,100,106,102,106,129,95,112,92,113,104,97,103,99,106,91,109,114,109,99,112,98,93,104,121,97,99,100,104,101,103,83,115,103,103,104,106,107,99,95,105,92,114,107,101,110,95,100,103,109,102,102,107,110,92,109,96,114,111,98,99,110,100,95,95,115,94,101,103,92,102,107,102,83,104,111,98,98,90,103,91,96,117,107,107,101,95,96,81,95,96,97,99,103,116,105,96,111,101,96,107,99,104,87,101,102,96,106,97,101,114,101,108,112,99,108,101,95,92,108,102,88,94,101,107,112,105,104,108,117,102,106,107,108,105,104,93,95,99,90,105,124,91,113,104,103,90,106,101,111,102,96,99,100,119,117,106,109,91,107,109,112,102,92,98,103,105,109,108,95,101,105,100,99,98,90,102,109,112,103,106,102,108,108,107,100,97,99,104,102,97,84,109,106,108,101,103,104,105,114,97,96,94,104,104,98,93,94,124,93,91,100,103,104,106,94,88,95,102,108,96,109,94,100,117,97,109,106,123,118,103,102,122,111,104,98,98,113,111,109,110,87,92,87,97,106,100,95,102,90,96,110,90,101,105,115,105,115,99,104,99,100,103,85,99,116,109,103,104,96,95,94,91,112,111,100,91,105,99,109,90,111,98,99,102,84,106,111,103,101,103,107,92,104,110,104,120,102,111,96,99,93,99,103,112,93,105,107,105,118,101,101,100,121,98,94,93,100,113,101,105,102,98,95,96,97,100,92,109,83,92,110,96,104,94,105,108,80,108,108,118,95,106,94,91,109,109,116,110,105,108,104,107, +444.81824,112,100,109,107,95,98,89,107,112,102,88,89,108,88,99,94,115,103,108,112,98,98,108,113,90,107,103,94,98,111,102,86,103,105,95,106,101,90,100,105,119,117,101,103,102,103,114,108,111,107,97,105,107,89,95,97,102,102,89,95,107,96,104,96,99,110,89,99,105,93,104,111,102,105,98,113,89,97,106,111,104,113,103,99,101,100,119,108,97,103,96,105,108,97,99,90,96,96,103,97,99,91,95,101,104,91,96,101,95,103,122,95,97,100,116,99,104,95,100,98,91,101,102,100,108,105,108,93,113,95,91,106,105,105,106,106,99,108,106,96,100,114,102,95,109,97,105,96,101,94,106,102,103,86,102,95,100,104,104,106,95,98,94,103,105,99,102,98,95,106,89,111,106,131,109,90,103,91,106,108,100,108,99,104,100,97,86,95,98,100,108,106,103,108,99,111,106,103,104,106,114,103,100,96,96,103,110,107,115,90,95,109,102,98,94,92,89,107,106,95,101,111,105,98,98,102,111,106,99,96,109,104,102,106,104,104,69,99,105,92,109,90,110,84,94,100,112,106,96,100,97,100,103,108,99,104,105,96,95,108,94,96,88,107,99,107,97,91,94,106,103,107,102,95,117,104,109,105,104,91,106,109,91,98,106,101,98,99,101,100,89,94,105,119,114,106,110,109,109,107,110,102,94,90,102,112,105,116,95,102,89,114,101,96,113,95,103,104,92,98,100,90,108,84,98,115,107,98,94,100,109,98,117,99,109,110,108,95,94,104,105,107,98,106,90,106,102,95,102,119,102,101,106,105,97,105,110,100,107,95,104,105,92,93,108,93,104,110,107,100,96,99,112,100,98,95,100,100,104,107,83,112,81,101,105,101,98,105,100,96,116,93,95,108,105,109,107,104,95,102,106,100,100,100,101,99,100,108,105,98,86,97,101,123,88,101,91,96,103,91,119,95,102,93,104,88,97,97,93,117,103,106,97,105,102,109,94,105,108,95,103,101,109,92,96,102,94,96,109,84,94,111,101,108,98,104,96,105,112,100,93,103,102,95,91,101,99,103,104,96,97,98,100,93,95,103,90,102,122,101,102,98,95,103,98,97,107,91,94,98,97,106,100,97,94,102,103,108,104,99,107,113,100,109,93,80,93,103,107,93,100,90,105,84,111,113,104,90,98,95,94,97,123,112,98,112,111,101,99,111,96,99,101,109,86,110,104,103,113,107,96,87,101,99,104,102,95,114,104,104,98,95,91,97,98,109,106,94,96,114,101,109,107,100,86,103,107,105,98,102,107,99,112,106,94,102,99,96,112,104,112,82,110,107,113,105,106,114,110,116,89,120,97,92,111,102,93,101,116,109,93,110,108,97,98,101,108,102,103,98,105,97,117,102,92,100,106,95,103,94,101,68,92,105,102,106,99,102,97,104,107,112,98,102,111,98,86,95,106,102,108,116,104,102,107,91,102,100,88,101,91,96,105,104,96,106,115,88,107,100,108,116,109,104,90,97,102,127,91,104,116,101,95,108,95,103,104,78,107,99,111,97,96,93,99,96,110,99,94,96,98,110,93,103,114,104,94,106,96,90,100,84,105,88,104,102,91,105,102,97,107,116,101,110,99,106,104,99,110,106,95,83,105,110,103,106,102,97,100,97,107,99,95,101,105,106,97,90,100,92,100,101,102,107,96,106,105,93,101,98,104,94,97,116,98,116,105,94,129,104,108,102,101,102,103,101,87,104,101,99,101,109,104,104,109,106,92,102,116,100,105,105,91,99,108,105,91,112,109,107,106,104,109,113,96,103,103,101,97,94,114,104,88,96,96,106,104,110,100,100,103,97,100,109,127,110,103,110,100,100,102,98,129,105,104,100,109,108,100,105,92,94,102,100,96,94,97,92,119,114,105,96,100,102,104,102,86,103,106,93,112,103,95,105,105,105,96,103,99,104,98,105,90,104,102,105,86,103,108,90,96,100,98,106,102,112,111,107,90,88,102,99,94,97,99,82,109,101,96,98,104,114,104,91,110,103,114,117,94,112,106,103,102,99,104,100,96,100,91,106,90,106,103,105,103,98,91,100,101,105,103,101,100,101,114,111,94,91,89,108,115,105,98,117,109,106,93,104,100,103,102,102,96,104,100,95,83,100,102,104,101,95,107,109,109,100,105,87,115,108,111,111,96,100,114,100,108,103,107,93,94,102,93,94,102,104,95,92,90,66,100,113,92,98,101,97,101,105,98,108,104,97,91,110,106,103,111,109,99,102,94,103,102,102,74,102,105,115,100,101,95,107,83,102,104,96,99,112,95,99,109,96,90,92,98,96,99,100,101,111,91,86,103,97,108,99,102,117,96,94,94,96,98,100,92,93,105,113,111,99,98,108,98,106,92,105,109,106,111,89,94,102,93,108,92,117,96,96,98,91,111,102,89,103,100,110,103,107,96,100,108,99,93,97,105,115,94,92,109,106,109,115,106,98,96,100,103,84,93,109,113,104,109,104,100,107,98,94,113,106,110,101,102,99,107,103,114,107,97,95,103,104,103,103,89,95,94,109,105,105,113,113,101,100,106,89,106,109,106,107,94,105,98,97,107,100,104,102,106,97,91,106,109,107,104,96,105,105,95,109,109,107,102,105,107,109,106,99,107,106,105,93,100,78,102,96,103,89,92,103,110,108,99,97,118,105,113,89,105,112,96,98,107,104,103,103,113,105,88,105,106,97,90,98,95,108,95,104,107,104,108,112,94,98,99,113,113,96,107,96,104,112,97,98,94,102,118,113,105,100,106,100,95,112,108,105,112,110,111,115,101,93,112,98,109,99,102,99,132,103,106,108,107,103,101,108,98,97,90,107,96,108,103,94,106,97,103,99,104,105,106,101,96,106,100,97,111,99,107,99,90,103,110,105,97,98,95,110,103,112,101,106,97,107,115,108,112,102,111,113,113,111,95,108,105,95,105,103,109,91,107,104,101,116,105,105,98,95,112,108,105,98,98,104,102,96,106,92,100,104,104,96,96,120,106,98,109,88,97,102,93,99,100,98,103,103,106,101,110,109,103,106,96,106,101,110,96,103,102,100,101,108,109,101,103,84,121,106,109,93,105,96,100,111,103,98,99,93,105,99,97,103,100,96,108,85,105,99,113,109,105,89,101,100,103,93,108,111,104,95,111,99,93,105,100,98,65,113,106,104,105,83,93,108,105,100,101,116,115,94,103,108,104,105,96,108,117,98,113,96,107,86,95,103,112,96,88,105,114,89,100,96,113,99,113,93,104,100,102,100,98,104,109,105,105,103,108,107,103,101,107,110,101,105,109,114,88,95,91,105,96,106,95,96,116,111,99,105,115,95,109,99,100,94,88,96,115,99,115,108,101,92,101,90,104,102,110,104,102,96,106,109,106,95,109,100,107,106,113,119,92,101,105,94,104,96,103,101,107,108,104,101,100,98,101,92,107,97,95,98,90,98,95,95,98,97,92,102,103,101,97,113,91,94,111,87,98,104,109,100,102,99,106,113,94,95,95,93,106,101,109,91,102,103,107,95,94,105,104,105,104,130,100,111,100,103,106,84,97,115,97,106,95,77,110,102,97,105,111,124,98,96,97,102,107,103,117,103,91,96,106,114,101,96,96,97,102,106,109,97,91,87,107,106,93,101,102,107,107,103,106,106,101,95,99,99,105,99,110,96,102,107,92,79,106,111,105,106,102,107,88,105,102,96,102,98,91,106,98,103,91,101,96,96,113,98,109,108,96,102,94,99,92,101,93,88,106,109,113,103,106,103,113,116,100,92,111,109,95,95,109,109,90,102,110,110,91,97,98,102,88,125,100,95,103,98,112,100,106,98,96,102,115,103,111,102,97,105,117,108,106,109,88,104,103,103,102,91,102,96,94,96,103,112,98,98,102,105,98,105,89,102,109,103,117,110,94,100,102,91,98,102,101,109,108,113,96,106,102,100,99,99,95,105,104,101,103,105,92,106,100,105,93,106,109,101,107,91,111,106,102,99,94,100,106,106,100,95,103,98,120,109,105,96,106,99,102,99,108,94,102,102,107,101,106,115,105,97,105,103,115,103,107,117,105,104,98,113,114,97,104,102,108,98,111,110,104,113,100,99,74,84,99,109,103,88,103,91,100,92,119,92,101,95,96,124,89,102,109,100,102,107,107,102,97,109,95,106,84,108,102,104,103,105,102,116,104,88,105,101,119,104,79,95,105,100,111,107,110,86,101,108,112,102,92,103,93,117,105,105,100,108,116,102,100,109,103,83,99,105,105,96,103,105,101,102,97,77,100,103,109,111,105,108,111,93,91,99,107,97,97,97,108,118,101,100,100,102,104,107,104,113,128,95,96,105,108,100,100,112,102,109,102,91,92,101,107,105,100,89,108,105,109,97,92,106,108,97,94,103,98,107,102,97,93,93,99,104,91,93,102,107,96,100,98,100,105,97,107,123,98,90,105,108,118,92,109,108,109,103,88,92,86,108,101,109,103,113,98,97,88,97,96,112,90,118,102,95,106,101,101,109,98,86,100,93,107,98,93,105,104,110,107,96,87,99,97,99,96,80,94,69,107,101,109,102,95,105,87,102,98,105,100,103,111,105,96,100,100,111,106,88,108,106,113,92,106,94,103,96,111,91,112,105,101,98,89,95,104,113,114,104,81,108,87,77,103,90,91,96,95,106,97,91,92,95,113,101,96,97,105,100,101,105,95,106,115,97,92,106,99,88,98,108,105,106,104,93,106,106,91,91,96,106,99,105,106,102,101,115,98,96,99,102,94,98,96,96,102,100,109,106,108,106,97,109,102,99,96,102,88,104,98,112,109,120,92,101,97,89,100,92,84,83,93,105,107,106,104,97,100,100,96,107,99,92,111,105,101,101, +444.95859,96,90,105,65,93,111,99,104,91,115,94,105,101,99,102,115,103,115,117,119,112,94,78,86,77,104,116,109,105,111,110,80,99,102,99,91,106,100,98,105,85,109,94,93,97,105,97,101,104,108,109,101,108,105,91,103,90,107,102,108,89,110,116,108,103,101,105,103,98,101,93,93,102,119,94,104,100,109,92,101,94,109,94,109,107,104,113,105,106,135,106,103,99,74,112,101,114,102,98,87,91,86,90,97,100,99,95,103,105,87,100,93,106,102,96,111,102,100,86,110,132,113,100,102,104,120,113,109,103,108,93,108,87,104,107,104,99,94,89,112,98,123,107,97,102,91,129,97,91,96,89,102,101,93,101,101,105,91,109,107,105,114,92,109,109,110,107,101,93,100,113,109,102,108,108,102,104,95,116,104,108,89,100,98,108,88,95,101,103,97,102,102,102,115,89,98,96,106,104,103,107,106,99,113,94,105,95,116,91,109,104,93,101,102,109,104,102,91,98,87,101,93,103,95,100,105,100,105,113,77,107,101,109,95,107,99,101,113,95,99,99,104,110,103,103,105,98,99,104,105,104,92,101,102,105,108,108,103,90,91,97,90,107,104,107,94,103,105,121,67,98,101,102,102,98,101,108,103,95,67,109,99,109,101,97,103,104,106,103,100,101,97,103,109,103,106,110,100,109,106,102,104,110,112,105,103,110,110,106,117,98,103,99,108,105,91,110,103,100,101,114,105,109,109,97,100,106,99,110,100,94,91,110,104,106,100,103,104,112,105,76,105,100,110,98,109,98,102,110,91,104,109,98,96,112,105,103,111,101,107,116,99,100,105,110,106,107,99,97,90,109,108,101,105,95,97,105,97,103,103,105,105,95,90,100,94,95,100,99,93,103,85,98,109,101,108,98,104,104,109,91,104,113,95,104,97,94,93,104,102,100,101,120,101,106,92,111,106,109,108,107,111,100,90,105,107,107,88,105,104,104,104,113,100,116,105,100,115,113,94,101,101,109,110,98,116,109,100,109,98,100,96,99,89,106,100,105,107,112,102,98,100,103,103,88,102,101,107,110,97,108,104,101,101,113,95,65,105,104,108,96,103,111,100,106,106,108,87,106,101,108,98,95,103,99,103,110,106,103,118,113,103,88,110,104,110,101,100,102,108,94,103,69,103,103,109,87,110,109,98,99,89,112,117,98,94,83,106,95,104,93,100,124,95,102,105,106,108,104,93,101,96,106,107,114,95,93,103,101,110,97,91,113,103,102,111,110,98,103,117,92,95,87,105,109,97,94,102,102,95,96,104,108,108,85,112,105,100,92,107,111,100,111,105,99,114,117,123,109,107,96,104,98,105,109,100,90,103,100,100,98,104,102,102,108,108,95,102,89,101,108,107,100,109,108,105,105,96,109,90,94,96,106,105,94,110,100,103,111,115,102,112,101,115,94,98,113,107,109,100,108,98,99,91,95,102,97,95,91,100,101,122,109,111,104,98,100,104,100,106,104,106,99,103,96,97,100,94,117,107,100,110,120,99,99,100,115,105,83,100,111,105,108,105,98,101,99,101,110,105,98,111,103,99,120,113,100,99,113,103,113,97,96,99,110,109,100,108,104,106,107,102,99,104,107,106,90,125,103,87,101,108,102,96,101,101,106,103,116,101,126,100,92,108,103,122,102,108,110,105,102,80,106,94,107,103,106,94,95,91,98,108,112,101,99,104,102,107,104,106,97,110,104,104,95,98,98,108,105,80,117,97,116,100,103,103,111,104,100,76,108,104,102,95,100,98,95,96,112,110,95,96,113,109,71,102,117,112,103,103,103,112,104,91,70,104,105,113,104,103,103,107,102,101,106,102,112,106,104,96,96,105,106,106,90,108,95,100,109,72,108,97,103,108,98,107,103,103,109,101,98,100,114,107,101,116,102,91,103,102,105,98,101,96,86,95,102,97,101,103,96,111,98,106,99,103,100,106,114,118,86,108,100,115,101,97,101,97,94,100,100,114,110,109,105,92,107,91,102,97,97,106,102,103,106,96,102,100,100,98,94,118,99,105,116,104,96,110,88,95,97,95,106,112,77,112,110,100,90,100,113,111,107,104,87,106,109,100,110,101,91,99,105,114,97,103,104,98,109,104,116,98,97,109,102,103,100,103,96,102,107,105,101,105,106,102,117,109,101,107,106,108,105,104,114,103,91,104,113,93,95,101,105,92,116,108,104,99,100,103,92,103,97,90,109,130,103,95,94,103,99,101,107,103,109,97,87,98,106,102,109,93,102,90,117,99,97,112,106,105,91,110,93,96,107,102,106,91,99,98,113,109,107,104,112,113,90,96,96,110,109,99,104,94,113,95,95,108,108,101,98,104,101,111,100,95,100,99,110,100,92,109,104,108,97,86,107,107,108,98,109,105,100,109,98,79,97,97,108,89,93,107,93,120,98,109,109,98,102,123,104,94,95,113,100,117,103,97,117,102,110,93,121,97,96,96,97,102,97,83,101,98,97,126,106,104,105,95,84,106,98,101,108,101,108,101,99,113,92,109,102,99,94,97,102,104,101,83,88,109,101,112,101,105,105,106,104,96,95,95,99,98,105,101,94,106,99,116,102,95,103,104,111,93,89,99,103,103,102,107,107,102,97,98,93,113,112,99,91,99,97,106,106,100,113,102,105,105,109,95,103,107,91,104,110,116,111,96,117,100,93,104,103,99,92,108,108,95,109,105,107,105,102,87,102,97,104,106,102,106,101,97,96,110,100,112,112,113,98,98,110,98,108,98,108,96,104,96,104,101,110,112,97,103,113,116,107,99,103,104,99,108,95,105,100,100,109,102,121,98,99,113,96,117,112,74,107,91,102,100,102,95,102,100,107,100,110,108,97,107,112,98,87,113,106,88,104,98,79,102,98,102,107,103,88,106,106,103,110,102,101,109,103,98,104,115,97,108,97,101,96,103,107,102,103,106,103,87,97,103,105,93,95,98,113,112,104,100,95,103,108,94,100,98,97,108,112,88,105,107,97,97,91,108,111,97,108,102,90,96,108,101,106,99,112,92,99,96,108,94,99,94,106,108,94,106,98,96,103,101,103,108,91,95,102,99,104,109,112,112,101,128,104,108,98,99,105,102,110,89,100,87,109,113,113,105,99,105,104,101,97,102,99,101,120,96,106,92,128,103,106,106,95,94,103,108,107,88,98,110,101,103,70,84,106,97,103,88,111,101,104,99,99,78,89,116,101,107,106,90,99,97,108,102,107,105,105,105,103,102,105,97,99,95,98,101,99,92,94,93,122,89,98,102,95,103,95,94,99,95,111,99,94,106,100,107,93,101,85,95,97,95,102,93,102,102,103,111,110,101,102,107,105,106,92,104,105,89,107,90,115,97,101,101,111,121,103,97,93,94,105,100,91,106,97,98,99,94,95,99,107,91,93,105,78,107,112,114,96,87,106,99,91,96,81,111,105,102,83,92,94,100,98,98,106,99,110,105,105,101,104,94,104,102,98,83,99,108,106,97,106,99,98,112,98,116,102,100,94,105,108,103,113,108,98,103,97,110,107,106,106,98,104,106,102,105,95,94,106,95,100,100,87,113,93,109,98,98,104,106,97,103,99,105,97,98,102,80,96,104,104,95,105,94,108,101,96,111,103,107,90,93,104,103,107,104,105,106,102,95,105,100,107,104,101,95,104,98,106,101,103,101,103,99,100,104,112,117,109,94,121,108,99,106,97,103,109,99,96,100,106,101,103,125,104,67,101,104,99,84,104,97,100,99,98,101,106,94,107,83,95,99,96,102,93,105,103,100,106,87,109,99,107,95,105,94,102,105,102,94,98,111,94,76,97,112,98,108,100,104,107,106,103,99,101,111,91,105,104,104,95,102,97,97,105,90,99,102,82,113,93,97,101,101,109,108,93,93,106,91,102,93,98,102,103,88,97,110,97,92,105,104,107,100,106,99,100,90,109,98,92,93,107,101,105,105,103,109,110,106,109,92,109,102,103,101,94,102,96,114,110,92,104,91,97,98,113,101,110,111,105,97,94,106,114,100,103,99,104,92,96,80,95,109,100,98,110,95,102,98,109,103,96,109,98,113,109,115,93,107,94,103,107,95,106,83,117,98,103,116,105,94,91,104,103,97,97,107,106,91,98,109,114,92,98,87,100,109,107,93,120,119,102,102,109,103,96,108,91,100,109,103,100,96,101,101,105,99,104,105,102,105,105,102,92,101,98,97,102,87,96,84,109,90,93,84,94,101,120,99,103,92,113,101,94,106,97,95,98,101,90,108,104,111,112,107,92,99,96,104,97,106,113,93,101,97,94,101,96,99,99,89,103,94,96,92,105,94,115,106,106,101,110,107,91,98,117,94,101,99,93,96,95,100,106,98,102,99,106,90,84,97,117,107,89,107,98,100,89,100,132,98,97,96,91,108,93,95,101,108,95,97,109,106,107,91,107,104,102,95,97,90,103,97,105,91,100,108,85,94,93,94,97,106,94,94,88,94,113,105,95,113,98,100,100,103,110,95,100,97,99,113,93,103,87,101,103,111,97,113,91,99,101,84,112,109,99,107,95,74,103,95,109,110,96,99,109,91,105,125,91,98,104,94,96,111,96,99,102,99,102,106,103,103,90,93,91,98,102,98,111,104,106,109,101,90,98,102,102,102,101,105,98,97,93,96,106,93,114,93,103,112,97,82,104,102,105,112,93,106,92,116,94,114,100,100,111,97,100,98,107,105,96,110,101,96,101,112,101,90,99,106,102,111,114,100,83,95,99,96,111,106,99,93,100,92,103,97,103,97,105,98,95,106,106,98,101,116,94,98,97,97,99,105,93,97,80,94,91,105,107,102,100,103,113,98,106,107,103,87,78,92,94,98,111,102,109,83,91,91, +445.09897,107,87,100,103,90,96,77,94,94,96,93,101,96,95,113,117,95,85,101,105,97,94,88,102,106,104,93,81,107,111,86,108,113,87,106,98,94,107,93,104,105,106,100,103,105,115,103,105,105,104,92,107,107,88,106,93,88,99,107,106,103,103,115,101,97,105,102,104,92,103,100,109,105,104,93,110,98,97,114,100,91,90,91,74,95,91,107,95,108,90,102,108,97,91,92,105,112,100,91,93,108,111,99,100,100,93,96,103,99,89,94,94,110,95,110,113,103,100,103,103,103,100,104,107,98,112,108,109,102,105,92,102,101,100,111,98,96,82,96,105,100,103,95,89,94,83,119,82,100,101,92,107,105,117,107,111,103,105,97,99,99,107,105,94,96,97,94,96,98,117,95,103,104,98,92,102,105,87,95,99,105,107,98,106,94,110,95,103,102,98,110,103,100,100,98,98,101,100,94,107,105,96,92,99,110,106,102,103,103,105,80,100,102,96,97,101,95,102,95,84,96,94,104,97,94,98,94,105,98,103,100,98,100,98,107,108,100,113,119,91,99,103,113,107,97,103,104,94,95,104,98,98,106,104,101,106,105,103,96,106,97,104,99,95,87,103,93,99,97,90,95,94,100,104,106,94,108,110,101,111,95,107,107,109,87,60,91,100,97,98,103,116,115,103,98,104,113,86,113,97,109,109,102,108,99,100,96,111,87,111,104,103,74,98,109,103,100,84,80,102,99,97,107,90,93,76,101,92,108,105,101,85,101,102,92,104,101,107,87,112,103,97,102,94,107,111,97,106,98,100,100,98,110,104,99,101,100,108,108,103,104,105,98,98,99,105,105,106,95,104,100,94,101,86,101,105,89,100,99,103,112,97,88,106,93,90,101,80,95,103,107,114,72,103,75,95,88,93,109,101,98,98,111,109,98,85,108,104,101,97,105,97,118,109,99,97,100,98,94,99,92,95,96,103,96,85,93,92,97,105,99,95,91,91,108,95,93,97,104,100,104,100,95,113,93,98,101,98,111,110,99,97,99,102,101,101,106,102,99,103,99,102,104,100,103,105,95,97,94,105,111,127,99,81,105,97,84,113,93,97,100,113,116,97,99,107,110,95,86,90,105,93,106,105,103,91,108,103,102,105,106,87,90,107,97,105,105,102,109,91,96,98,98,105,127,106,89,106,93,121,94,103,90,121,103,99,109,95,94,106,87,103,121,94,89,97,97,92,105,105,99,113,101,108,103,92,106,82,99,98,105,72,104,99,92,98,104,105,108,95,99,97,114,73,102,97,101,107,115,108,96,86,97,101,110,109,103,91,98,93,110,104,120,109,103,94,100,104,104,90,101,102,103,100,91,99,96,97,106,108,108,107,110,115,108,122,99,110,102,104,96,96,100,104,103,98,104,104,100,105,107,102,105,90,105,99,95,122,100,95,102,105,107,108,107,111,101,89,105,98,105,104,95,87,101,100,103,98,100,117,109,120,97,105,99,100,90,99,104,104,98,93,99,104,92,72,92,100,104,112,100,105,93,92,105,103,102,111,99,110,103,100,104,95,93,87,91,91,100,101,103,104,92,90,99,98,104,108,104,97,107,91,89,95,101,113,109,102,92,101,102,96,100,98,107,110,98,95,110,99,107,100,110,100,95,97,95,112,118,100,85,111,96,108,110,96,92,94,110,101,106,93,116,88,93,103,94,94,90,106,109,117,110,102,109,103,102,109,105,106,97,107,94,100,94,91,99,95,106,90,104,109,108,105,105,103,93,84,102,93,94,113,107,125,84,106,92,100,96,103,98,98,94,103,101,84,106,103,112,101,95,102,105,101,102,98,106,101,106,89,99,99,109,101,100,92,104,119,84,98,99,91,97,120,97,110,101,107,106,102,102,91,102,109,101,108,98,103,110,107,98,107,105,100,91,99,103,95,101,100,108,100,108,125,90,114,79,109,94,98,108,95,92,107,110,82,106,96,98,111,112,109,102,93,108,95,103,98,96,104,101,94,106,100,101,110,92,102,99,104,111,103,94,96,106,93,99,114,94,108,97,116,112,103,105,109,86,96,97,96,100,104,98,113,77,115,98,98,102,100,105,109,108,99,107,103,95,100,106,94,99,107,114,99,101,107,108,96,101,99,103,95,97,90,92,122,98,94,100,121,95,103,108,116,108,99,97,113,102,102,112,109,101,109,104,99,88,102,104,99,91,100,94,99,76,105,106,96,90,113,107,104,104,99,105,100,92,104,91,106,102,96,105,97,93,104,101,103,93,104,105,98,100,86,101,100,99,83,93,108,94,112,87,102,92,102,95,89,102,100,106,107,110,101,106,99,100,94,91,95,104,98,107,97,101,92,100,108,105,94,96,103,99,98,100,118,96,108,101,76,103,102,91,96,92,95,104,111,96,112,100,101,105,96,94,107,102,103,104,105,80,102,105,110,102,100,110,91,102,99,94,107,98,113,109,108,107,109,112,103,106,102,92,101,103,106,115,106,107,111,106,97,109,95,104,127,99,116,96,108,106,116,104,103,104,96,97,78,90,120,116,101,104,102,102,109,100,111,105,103,98,100,114,108,95,112,102,98,91,95,111,105,115,110,105,96,109,67,103,106,103,101,108,117,91,95,103,121,108,102,101,92,101,100,107,110,114,101,108,105,110,93,104,89,114,101,110,101,101,110,106,105,98,110,100,112,106,101,109,120,110,119,120,96,105,101,110,124,116,103,118,105,111,111,104,114,102,107,103,100,120,110,129,103,119,115,107,68,101,101,107,100,116,107,100,102,101,117,103,100,105,107,104,82,104,87,121,107,129,113,115,105,103,94,114,117,105,106,104,101,100,115,98,100,108,81,99,106,99,112,101,106,110,112,107,106,104,117,116,110,106,112,100,103,108,89,108,104,101,114,102,104,115,97,100,114,100,101,117,115,106,110,105,105,110,105,91,104,99,111,102,103,91,115,105,98,114,102,104,109,102,105,97,113,102,113,106,101,107,104,103,110,97,101,110,106,117,112,104,98,104,100,109,107,121,103,95,108,117,95,119,112,104,115,107,109,111,105,105,76,109,110,101,109,107,99,110,103,104,108,98,105,104,96,105,97,107,106,109,105,116,96,110,104,106,100,104,110,102,95,109,105,84,113,108,79,108,105,101,105,99,109,106,104,103,104,105,99,109,107,83,103,105,110,103,98,104,104,110,100,105,107,102,119,100,92,114,108,117,104,97,107,110,103,111,106,111,116,106,102,103,117,105,110,106,108,110,111,102,104,106,105,92,106,109,110,103,100,100,99,107,102,99,109,105,115,104,86,99,76,111,109,114,100,110,115,94,96,111,105,109,99,106,105,97,106,103,91,112,108,84,106,109,100,108,100,104,98,100,95,100,103,96,103,103,104,118,104,92,102,92,107,106,104,109,106,90,97,107,95,108,107,110,108,115,105,93,99,100,103,104,105,110,96,95,95,95,106,93,103,118,109,97,106,97,109,105,104,119,104,128,101,110,107,111,105,101,105,105,96,104,99,109,94,110,100,106,107,107,98,99,111,106,109,106,110,97,109,99,116,111,98,103,125,107,107,102,102,101,95,99,117,103,104,100,110,120,107,110,101,102,114,106,111,113,109,97,108,115,115,114,103,102,106,109,99,106,108,106,109,107,108,101,112,112,105,102,112,99,103,110,95,112,106,100,97,101,102,109,104,100,104,92,116,111,113,102,113,94,99,113,95,86,92,113,91,103,108,100,108,104,116,108,106,122,99,101,101,124,106,106,94,106,101,97,102,103,104,103,102,94,84,105,99,100,93,95,103,89,101,100,105,110,103,98,107,104,96,110,109,108,106,104,98,107,101,117,108,112,111,105,101,84,98,107,102,97,116,104,105,112,101,95,109,97,110,108,99,103,102,107,99,97,103,98,97,104,89,103,105,118,98,115,98,103,110,111,93,111,102,107,118,98,102,105,109,109,105,118,108,108,115,104,103,104,114,113,105,110,111,111,120,109,109,112,109,103,98,118,94,112,105,113,111,101,106,108,107,102,104,112,109,87,90,120,102,106,93,108,99,100,112,102,90,91,105,99,104,101,98,107,98,109,107,104,112,110,100,106,95,100,102,109,106,114,104,104,116,103,99,100,114,110,107,110,101,109,85,113,112,96,100,91,89,109,96,93,102,92,102,122,107,113,116,139,112,108,112,97,78,110,109,104,113,115,107,112,99,113,108,102,104,115,113,91,100,106,111,112,104,112,110,92,107,92,92,104,122,105,105,114,99,116,112,100,100,109,112,93,113,101,106,107,109,108,101,104,103,112,98,105,96,104,110,110,103,103,102,99,110,110,106,115,102,114,101,110,102,109,101,115,106,108,112,100,104,112,103,115,96,99,106,98,62,94,103,100,99,108,109,96,95,96,92,87,102,108,99,100,93,118,107,106,111,98,101,111,105,96,104,101,99,112,115,105,90,119,106,100,102,108,102,113,102,101,115,110,113,105,119,100,109,91,105,109,103,104,114,113,96,109,91,100,104,102,106,104,87,109,113,104,113,109,106,103,99,114,104,99,106,102,106,110,112,111,110,107,108,102,105,103,91,111,109,100,104,102,103,117,107,109,107,112,99,113,107,110,102,99,113,112,110,112,113,110,100,116,110,103,93,87,98,104,106,88,102,94,102,101,103,88,109,99,113,96,108,99,113,91,105,101,85,90,101,111,95,109,100,95,95,104,108,97,110,105,105,118,95,100,101,106,103,103,102,109,108,108,106,102,91,101,105,104,108,82,104,108,121,104,105,113,103,109,79,95,107,103,138,98,110,95,102,112,107,116,110,100,110,100,123,106,111,94,100,83,107,90,85,97,87,101,93,100,106,99,97,105,106,95,103,106,99,99,103,107,101,114,108,102,105, +445.23932,101,104,95,97,103,111,98,94,102,114,100,86,95,97,104,98,104,93,114,112,109,107,90,118,105,117,106,95,122,97,86,98,99,98,101,85,112,97,108,107,87,126,104,88,104,106,105,101,111,81,102,113,87,102,102,95,119,102,90,102,96,95,91,98,109,110,112,99,104,106,108,96,110,103,100,100,89,103,103,102,103,107,95,95,110,102,103,77,95,106,99,93,103,98,106,77,93,97,93,104,104,98,101,97,101,105,92,99,103,101,99,98,110,103,104,97,105,98,103,95,83,122,105,100,108,117,98,101,110,100,82,105,95,90,111,103,94,114,129,95,105,100,95,103,97,107,107,123,99,93,103,104,100,100,106,86,105,96,107,113,88,91,107,74,100,98,95,100,112,115,101,97,88,96,97,94,113,91,103,88,110,105,105,99,93,101,95,96,98,104,101,84,96,91,105,105,111,109,102,114,106,115,99,92,97,107,103,106,101,98,104,98,92,98,106,99,96,101,101,99,104,103,115,91,106,101,96,107,104,106,108,120,86,104,99,109,100,112,102,100,91,106,96,102,102,95,106,105,105,98,101,103,100,120,98,113,100,105,91,95,91,93,112,105,95,110,106,99,104,91,110,103,100,96,112,84,98,108,95,91,91,109,107,104,98,105,98,103,96,107,93,94,113,103,79,75,99,100,113,94,95,107,107,110,99,112,94,111,101,98,94,104,102,105,113,106,112,103,104,98,108,108,98,100,104,101,98,93,111,99,108,100,101,106,71,96,101,101,94,92,104,97,97,96,101,94,103,118,100,101,107,102,104,104,104,105,99,113,112,114,111,95,98,68,95,99,112,106,96,104,113,102,99,90,108,87,104,102,109,99,106,112,92,102,96,94,94,71,119,112,101,72,97,100,98,99,101,100,76,117,95,111,97,100,99,101,100,97,79,98,109,99,105,103,111,99,90,96,101,104,106,91,94,90,85,96,86,95,99,106,100,100,97,91,101,89,99,103,98,105,109,103,101,99,97,101,97,106,99,106,99,102,113,108,98,95,102,104,102,102,101,74,114,114,106,100,104,101,96,116,106,96,91,101,88,101,99,105,103,90,93,117,105,104,104,103,106,95,92,85,106,104,97,94,92,107,94,103,116,100,111,106,107,96,104,108,102,108,108,113,107,100,102,105,103,110,105,96,94,90,109,104,109,91,103,105,103,97,101,101,101,96,94,106,101,94,99,98,102,99,97,119,93,111,109,111,92,104,99,101,104,101,106,105,103,96,111,99,93,105,111,92,81,86,116,108,99,113,105,93,87,104,106,94,96,107,101,107,105,103,98,96,104,95,102,102,113,107,105,103,108,123,100,97,117,107,105,138,114,101,121,101,103,97,108,114,93,103,104,109,116,100,102,100,110,102,103,113,106,102,116,110,106,106,111,109,95,112,102,98,107,101,97,108,90,104,94,96,110,106,112,101,95,109,98,98,102,95,98,100,103,109,78,105,118,97,107,112,97,117,108,110,110,107,108,114,105,85,109,99,116,100,111,100,94,118,106,92,97,95,105,94,101,113,99,102,101,104,104,98,111,105,98,104,105,100,104,105,112,96,112,98,107,91,113,112,107,100,109,94,103,99,103,93,101,99,78,101,111,95,84,105,105,104,101,92,96,103,108,108,98,100,101,105,100,95,108,90,109,104,105,91,103,100,102,88,103,108,109,104,104,97,107,110,120,97,107,102,101,109,104,99,89,101,90,98,116,107,96,96,92,112,105,94,109,112,94,104,110,130,103,118,112,96,98,103,105,107,91,114,115,103,113,126,105,107,100,99,118,103,95,108,90,86,104,104,117,108,113,107,111,110,96,106,105,98,116,100,114,105,94,99,106,102,99,104,105,102,94,104,87,97,116,107,106,99,97,108,109,105,113,104,102,111,100,107,92,104,107,95,99,97,117,103,95,84,105,90,108,107,107,102,99,106,101,101,96,109,105,106,106,101,87,97,101,113,118,100,100,102,111,107,108,105,108,107,110,99,101,109,106,107,102,125,95,101,110,108,100,105,109,100,115,104,102,89,95,98,95,110,96,107,105,117,107,105,97,110,120,110,99,101,107,109,111,106,126,96,110,99,103,100,105,104,112,106,108,87,116,100,123,120,114,96,96,117,108,108,103,105,102,95,103,104,105,117,94,100,88,108,103,111,95,102,106,98,109,100,112,105,109,92,96,107,83,96,97,104,96,105,113,100,110,75,106,101,97,111,61,101,113,109,107,95,98,74,97,102,97,106,106,102,104,102,106,99,112,105,102,95,102,83,114,105,112,119,113,104,117,108,104,122,96,92,113,107,101,98,108,100,107,110,114,94,101,84,101,103,100,94,108,105,118,112,95,100,102,110,108,96,100,93,103,101,108,84,95,100,116,111,95,113,90,100,88,106,98,90,101,98,102,106,107,93,103,109,108,111,104,100,114,112,96,98,94,117,94,99,106,95,103,97,100,87,100,106,111,88,111,105,107,99,107,107,114,106,80,91,94,96,110,108,103,95,104,104,100,112,106,105,110,106,91,106,125,105,106,89,106,94,108,110,105,96,104,106,112,104,111,92,97,95,84,98,104,103,106,100,107,107,108,96,116,107,109,105,113,102,108,101,98,95,101,97,107,119,110,108,112,106,100,92,96,113,92,106,91,96,104,109,109,95,103,100,93,105,108,100,112,110,102,112,108,101,108,104,96,101,87,107,98,103,108,101,96,106,96,102,103,101,110,98,102,99,115,106,101,108,103,97,100,108,109,99,99,107,94,103,105,87,87,113,107,104,104,98,95,96,117,108,95,104,108,98,92,98,101,105,101,109,99,109,105,99,107,104,105,105,100,88,120,103,110,97,88,99,101,98,108,124,99,106,102,121,109,101,103,99,95,114,95,112,109,98,100,105,96,97,105,106,109,108,96,83,99,109,106,101,109,99,105,103,88,106,100,104,108,100,97,92,109,102,109,91,104,112,105,114,109,90,92,104,109,108,109,111,110,97,91,85,102,103,98,113,107,115,119,112,103,103,109,112,115,97,109,108,103,112,108,106,102,105,91,109,102,94,98,101,100,105,99,108,116,97,100,100,101,102,110,90,120,101,103,107,96,101,114,108,104,107,109,96,106,107,107,92,107,91,99,106,94,98,99,109,113,101,105,95,102,117,104,105,94,94,98,114,97,102,109,110,102,110,100,101,96,99,104,110,95,103,102,103,96,119,76,102,109,91,112,100,113,102,102,105,134,102,100,91,89,107,100,93,109,98,94,105,101,106,113,98,97,96,100,105,112,104,103,98,105,96,104,106,102,113,100,99,97,92,104,104,97,97,105,98,98,102,101,91,103,97,92,97,99,105,111,102,98,105,91,102,109,98,99,105,84,95,94,112,108,100,93,103,94,108,95,92,104,108,110,99,106,96,99,104,99,98,93,109,129,99,104,113,100,99,99,113,98,102,97,105,96,101,102,102,91,111,103,100,110,103,102,97,134,107,104,98,105,108,81,99,104,115,103,112,108,99,116,95,100,104,106,110,109,104,115,101,99,98,113,103,113,102,107,105,103,95,98,99,98,88,97,107,94,97,113,96,100,100,117,97,100,96,93,105,110,96,107,106,100,103,104,101,113,104,100,105,92,95,90,108,98,102,98,110,117,96,98,103,102,88,105,110,102,104,102,120,97,106,105,99,111,100,115,110,105,94,104,107,100,95,89,95,101,98,100,93,103,103,104,102,107,95,97,125,87,101,108,110,99,105,102,94,107,101,105,108,104,105,109,114,96,100,97,113,95,100,100,106,106,102,111,112,107,99,105,93,107,95,96,98,93,110,93,105,108,100,109,99,116,105,101,91,106,104,105,112,101,91,101,106,88,104,103,104,104,104,99,66,101,102,102,105,88,105,96,91,92,97,109,95,101,96,117,96,117,102,104,103,116,109,111,107,106,107,110,108,99,94,95,99,106,96,95,92,106,111,108,105,100,100,95,106,83,103,109,87,100,111,105,106,115,101,112,99,112,103,110,91,107,104,110,100,101,87,109,103,115,105,103,106,99,91,92,94,100,112,114,101,100,104,103,95,96,104,127,105,101,103,95,103,95,99,117,100,107,106,110,106,82,99,111,97,110,98,113,95,108,108,92,107,93,101,78,96,118,102,101,98,118,107,97,99,112,116,120,101,106,102,110,105,105,100,99,108,104,102,111,109,89,102,108,101,119,94,101,100,96,106,101,101,88,106,112,92,94,111,91,106,77,101,103,115,117,103,104,100,104,93,96,88,100,97,101,103,103,124,92,99,100,102,102,113,109,107,98,105,100,89,99,103,115,93,100,98,101,108,110,105,99,96,99,105,105,105,96,99,106,95,97,95,104,100,94,107,97,97,94,98,111,96,88,95,96,120,95,90,104,109,100,98,113,97,104,115,106,89,107,105,112,99,89,96,98,108,112,103,90,100,97,96,97,111,115,104,108,95,101,100,100,109,101,92,80,110,106,104,115,113,98,88,89,100,102,100,95,102,80,84,108,94,96,102,101,111,95,92,104,99,107,104,98,97,104,88,88,98,106,99,87,101,98,93,105,98,108,97,99,109,105,97,98,106,103,95,96,103,95,94,102,91,111,114,108,101,101,102,105,102,100,93,113,95,93,102,104,100,98,113,97,92,106,101,100,110,94,101,100,117,98,92,109,100,102,101,110,108,97,112,94,106,93,117,113,105,77,104,65,95,113,90,112,93,99,107,102,101,107,98,103,104,116,119,105,103,102,104,106,95,94,110,104,115,102,110,100,104,104,95,96,103,102,106,99,92,101,104,95,98,108,101,105,97,92,105,101,101,96,99,106,105,97,112,98,89,95,113,86,99,111,111,116,101,98,72,98,112,110,99,104,117, +445.3797,113,100,93,85,87,98,88,94,102,107,96,97,106,101,107,96,88,104,104,109,92,110,95,98,101,106,111,112,99,123,98,97,108,104,111,105,106,100,100,110,105,98,97,103,101,105,108,107,81,102,109,93,108,109,98,100,102,88,107,106,105,97,104,105,96,121,86,109,107,107,107,104,108,94,91,106,95,108,101,99,109,99,97,90,104,91,97,101,103,110,111,98,96,103,99,100,98,91,112,92,105,100,101,98,107,91,101,104,97,91,102,106,109,115,98,104,96,95,104,109,120,78,105,99,106,118,113,96,94,92,113,109,91,81,112,105,89,94,86,112,94,107,100,91,87,111,104,114,90,108,101,108,104,100,99,97,101,92,111,92,103,100,91,98,106,100,103,97,102,112,104,97,98,101,98,101,96,104,104,103,101,104,91,115,111,99,97,96,106,98,101,109,107,106,109,107,104,98,102,104,96,121,90,104,98,103,105,112,120,97,97,109,106,95,97,92,111,111,96,98,117,105,100,95,110,103,110,104,106,95,107,91,113,106,109,102,109,112,95,103,104,95,112,103,93,96,103,99,100,111,98,109,98,97,96,109,104,105,102,99,95,118,100,104,96,96,113,100,104,95,99,101,101,95,118,94,99,102,104,100,93,109,116,96,107,113,91,106,104,95,108,109,113,105,94,106,108,109,108,104,127,103,97,101,109,91,101,115,112,104,95,111,109,99,108,101,107,98,103,106,104,96,116,110,113,110,101,106,118,103,109,125,100,110,102,105,96,108,96,99,107,100,109,98,93,104,92,98,102,98,106,90,106,101,107,119,98,118,101,116,102,111,106,106,93,95,116,110,103,93,110,101,103,106,104,100,101,101,105,100,99,105,95,98,111,99,97,110,109,100,113,101,106,99,96,100,114,107,108,111,102,105,101,92,121,103,93,106,104,101,96,76,117,112,105,95,91,106,97,88,107,116,97,96,102,97,109,102,111,101,99,111,108,108,106,105,99,100,111,103,110,102,117,100,95,99,107,102,100,117,96,101,100,106,100,95,106,102,95,108,96,114,95,107,103,104,96,103,89,108,99,116,105,111,89,107,93,107,104,113,102,112,106,100,108,105,126,100,94,109,112,112,97,104,99,108,93,121,102,104,101,104,95,95,107,92,97,102,108,96,102,102,102,107,108,110,100,110,100,97,103,104,105,100,96,76,112,109,115,99,96,95,92,102,103,109,103,91,116,111,101,92,109,110,112,90,111,102,97,113,109,105,95,120,106,86,102,92,94,99,104,107,105,132,106,96,100,105,105,90,94,102,108,105,102,100,109,104,105,104,98,99,105,100,111,110,110,110,98,102,93,109,111,94,100,100,110,92,118,110,106,100,101,100,109,121,109,103,110,111,113,103,105,113,111,94,102,106,101,104,97,102,112,103,120,104,104,109,111,103,105,107,104,99,97,97,105,105,101,114,100,102,96,95,100,101,100,99,103,109,103,98,108,103,104,102,106,103,98,110,105,111,96,91,99,95,103,98,98,102,103,109,112,95,112,75,102,100,105,103,108,95,99,89,75,99,108,111,109,109,124,98,99,110,113,113,101,95,117,104,105,116,107,93,100,105,104,110,94,92,111,106,105,99,105,109,90,84,95,101,104,117,117,105,97,101,100,110,98,115,100,109,90,102,86,102,105,102,111,97,105,103,102,93,96,103,91,102,103,103,100,96,111,98,113,111,101,96,111,105,96,104,111,114,98,96,103,112,109,98,105,105,113,97,112,100,108,110,111,92,99,89,112,116,101,113,102,102,114,111,95,105,99,95,99,110,95,101,115,120,92,102,124,99,134,110,106,104,110,100,104,115,116,92,94,113,113,120,114,125,107,101,116,97,100,114,111,103,106,114,99,100,94,109,115,90,103,104,109,92,105,101,108,106,99,104,107,99,104,110,114,90,98,107,115,121,105,108,102,121,106,99,106,99,99,99,102,106,110,105,99,96,107,112,98,104,95,94,97,105,104,99,106,118,104,101,99,113,113,110,108,108,98,94,105,100,99,106,106,106,123,107,94,85,105,97,99,104,99,103,109,110,99,100,103,96,101,102,110,101,107,95,115,96,100,99,112,101,113,109,114,112,87,108,96,95,111,102,105,111,103,103,117,102,105,101,106,94,98,116,104,104,118,111,106,97,101,109,98,106,106,107,103,112,110,99,102,98,99,107,105,105,110,105,102,100,113,101,102,100,100,101,99,104,100,137,102,91,89,105,115,114,117,107,100,105,103,104,100,118,92,126,93,90,105,106,104,92,100,102,98,110,107,103,101,99,124,97,97,103,102,112,106,108,101,101,98,98,103,96,98,98,112,101,105,99,98,110,101,106,102,108,96,98,98,98,109,99,109,105,99,99,104,110,115,104,94,108,99,102,102,124,112,121,98,116,109,109,102,105,97,118,115,109,99,106,102,100,113,92,102,98,98,114,113,98,96,117,100,101,100,109,100,96,104,103,112,80,104,102,95,120,113,104,98,106,92,108,106,102,98,108,102,113,110,106,92,99,94,103,104,89,106,114,103,104,99,101,101,84,98,106,111,102,100,99,102,109,92,100,109,120,98,106,104,95,100,98,92,95,109,107,107,113,115,107,73,98,99,105,108,116,103,87,108,102,110,105,99,96,102,95,106,110,100,111,107,101,96,100,99,100,97,100,105,98,102,101,97,104,98,105,112,109,101,93,98,88,100,93,108,108,116,108,99,99,107,106,92,128,91,110,105,109,106,96,104,110,100,93,109,103,100,98,109,111,97,102,108,109,101,101,99,100,98,115,98,113,99,104,109,104,101,105,99,116,104,107,115,108,109,121,90,102,98,110,120,102,96,106,104,98,98,103,104,72,106,110,104,106,113,100,106,113,110,98,106,114,96,99,114,95,106,99,109,100,106,93,113,112,99,102,105,97,119,109,98,90,101,117,105,103,108,113,104,106,111,98,98,105,102,108,108,102,99,105,100,108,107,106,104,103,108,104,110,95,105,95,111,110,103,106,112,112,102,108,99,98,98,115,98,95,106,109,108,102,112,104,101,112,97,111,92,100,104,104,106,97,99,94,118,100,102,106,108,96,101,96,104,101,100,105,115,107,99,98,95,99,105,100,98,105,70,105,103,97,102,97,103,96,100,108,106,107,99,113,101,103,115,108,106,97,103,106,96,110,99,99,111,91,107,112,102,105,102,102,103,102,104,103,111,101,95,94,106,91,100,99,106,99,104,102,105,104,103,99,83,97,102,102,102,97,105,105,101,92,108,110,106,103,101,97,111,116,108,109,103,108,96,103,98,108,92,105,91,102,102,102,104,104,105,100,107,96,101,106,108,104,99,102,104,98,104,110,91,102,110,94,102,100,83,100,94,115,97,98,108,113,101,95,102,104,106,102,104,102,109,104,96,104,95,81,108,104,98,112,104,107,105,101,103,93,107,98,103,97,103,99,99,97,99,100,100,105,103,97,109,95,106,90,104,112,107,104,101,100,102,109,108,102,99,103,103,99,98,106,103,101,109,102,126,109,96,108,91,104,103,101,88,115,105,90,96,101,109,102,102,95,115,85,107,105,113,109,99,92,96,117,106,104,102,100,90,102,100,94,100,103,110,104,110,108,102,105,113,104,94,110,103,104,100,103,96,110,99,107,102,111,99,104,100,107,96,106,105,96,100,99,104,102,106,109,110,107,101,105,98,106,98,104,116,96,97,97,104,91,96,109,103,98,98,98,99,103,104,104,103,103,96,102,102,109,107,111,99,98,101,102,108,110,98,104,100,103,102,112,100,100,103,91,95,100,104,104,98,98,103,94,107,87,111,129,98,109,106,112,105,94,98,113,97,104,101,98,102,110,95,88,106,93,99,96,96,105,89,98,110,109,92,109,113,104,102,101,105,104,106,94,96,111,109,105,106,102,111,98,102,97,106,105,105,114,102,76,100,111,105,88,110,99,99,105,99,105,102,104,108,101,107,116,90,107,104,108,118,96,105,98,105,94,107,97,101,108,99,109,103,102,110,103,114,97,110,100,103,102,106,99,110,99,98,103,115,102,108,104,111,86,97,102,116,105,105,101,94,94,108,111,107,116,102,109,94,115,106,101,103,100,104,108,95,95,103,105,95,111,89,92,89,102,93,94,111,83,108,95,107,94,97,113,101,108,73,93,108,107,110,99,108,107,106,96,98,108,109,104,102,101,108,103,95,98,106,97,100,97,94,109,106,99,91,106,113,96,104,100,94,100,105,96,115,100,114,102,102,88,104,104,99,101,101,96,102,90,107,112,99,74,95,110,105,95,95,118,95,104,123,110,89,100,102,107,110,106,111,93,106,105,101,101,98,105,102,106,101,94,99,103,113,98,110,99,98,87,102,112,101,99,99,107,104,88,109,102,99,106,96,105,98,96,107,113,103,101,105,100,93,116,90,98,108,104,96,101,108,101,101,94,113,101,117,97,91,102,107,106,96,108,104,106,95,106,102,100,116,97,107,95,109,101,101,107,91,110,103,102,103,99,100,112,91,87,101,121,97,100,99,98,107,121,110,103,110,91,104,106,96,98,102,98,101,84,105,109,101,111,99,93,113,94,109,101,92,100,97,96,106,106,95,105,106,111,100,105,100,91,110,102,100,100,96,98,94,106,89,91,102,102,120,97,102,100,89,108,87,106,99,113,98,84,99,100,112,95,102,84,97,94,93,95,94,99,107,95,96,100,92,107,110,96,102,97,108,95,107,90,107,106,97,94,100,93,107,76,103,102,115,99,91,104,105,101,101,99,99,112,90,107,106,96,108,102,104,108,100,102,121,110,94,111,99,127,116,102,92,105,106,102,113,96,104,112,102,102,104,99,89,106,77,93,110,105,88,89,104,108,95,102,121,107, +445.52005,110,89,90,92,83,105,120,102,94,102,119,98,86,108,91,95,97,104,99,105,98,92,100,88,100,100,103,102,110,72,105,89,104,99,104,93,70,93,94,99,106,100,101,97,93,110,68,92,97,94,112,108,106,97,104,102,125,93,108,108,106,99,99,97,96,104,96,91,96,92,103,106,89,79,89,116,99,87,90,112,91,101,106,94,111,97,93,104,94,101,112,105,97,98,103,97,91,86,108,105,96,100,103,96,105,108,100,110,94,97,110,102,95,94,95,108,90,99,94,104,103,101,114,101,111,102,106,100,105,108,104,102,98,95,75,107,97,96,93,109,101,109,109,103,68,102,97,103,108,108,97,89,101,83,89,92,104,103,108,103,95,98,101,98,99,96,101,89,99,107,101,120,102,94,93,105,112,98,102,98,97,105,98,110,91,94,101,101,100,94,101,98,94,107,98,104,103,105,95,109,93,103,95,112,98,104,104,91,121,86,101,118,105,104,102,104,106,99,104,94,100,99,100,99,98,111,89,107,96,103,103,101,116,104,100,102,102,107,77,99,93,104,106,115,90,93,98,106,104,107,100,105,95,105,107,108,101,99,96,93,91,104,112,99,104,99,92,89,96,74,108,109,113,90,110,109,91,96,96,105,102,120,94,88,97,101,93,111,106,118,105,104,104,103,112,101,94,99,108,109,101,101,112,105,96,102,102,103,105,102,97,101,111,96,95,94,96,108,96,97,104,114,70,103,98,104,106,94,104,101,107,100,95,106,100,99,85,102,98,105,100,89,101,93,97,102,103,100,111,109,109,101,102,97,105,99,94,99,116,100,104,105,105,103,100,109,104,108,87,105,109,106,106,109,100,105,93,94,84,86,102,114,95,110,105,93,97,102,108,109,116,107,94,101,103,102,92,109,92,107,94,96,96,103,95,95,104,101,101,97,92,106,108,95,108,101,94,99,109,104,100,99,99,109,92,98,103,89,109,111,106,92,106,106,97,107,102,110,100,101,114,109,108,97,111,94,112,104,82,111,98,105,93,104,106,105,101,110,110,101,105,104,103,109,109,113,118,105,110,109,101,126,100,97,90,114,91,105,108,105,97,113,103,103,106,97,101,102,106,97,101,100,103,101,96,102,91,104,104,98,101,103,108,104,98,96,106,108,105,104,102,106,96,106,88,95,99,94,90,91,87,106,106,95,113,97,111,104,108,118,100,103,100,93,98,98,115,122,103,101,98,105,94,107,107,86,112,110,101,94,100,105,85,86,97,108,90,102,97,97,100,98,92,104,104,105,109,100,103,80,93,100,114,97,95,116,96,106,96,115,103,103,103,109,102,105,105,97,95,98,105,120,90,101,110,90,81,95,102,92,113,102,105,109,108,92,100,104,91,95,108,101,99,111,109,101,97,107,84,114,103,99,108,105,102,105,96,99,112,85,101,87,96,103,87,107,64,105,103,99,101,110,106,101,97,91,109,96,102,106,98,111,95,121,106,92,92,110,92,113,90,98,113,102,98,98,109,98,102,102,102,107,102,104,95,114,108,104,100,96,102,113,105,103,94,100,108,95,113,96,105,101,101,103,117,98,97,106,100,83,100,104,98,98,112,92,121,114,95,91,105,108,98,97,101,99,96,97,106,106,109,106,103,102,107,96,100,107,105,100,104,107,108,90,112,106,103,87,111,86,101,98,99,103,87,96,95,91,95,103,100,97,96,86,93,110,105,94,101,103,101,108,111,119,91,95,97,109,107,100,104,108,91,108,104,100,109,98,89,76,109,105,91,107,110,114,98,124,99,112,98,104,95,103,96,106,102,97,104,97,101,102,93,113,105,99,86,109,100,99,105,100,105,107,103,96,99,108,104,91,95,97,83,101,104,87,115,97,104,102,95,101,96,86,98,95,105,110,110,98,97,90,111,95,100,97,92,92,106,98,107,96,104,88,92,95,96,83,101,90,94,118,98,104,110,106,84,109,102,112,96,101,100,102,84,94,105,104,109,105,96,103,95,106,111,95,100,103,104,105,104,109,106,97,123,97,99,101,105,103,106,101,111,101,91,94,96,96,101,98,128,105,113,107,106,99,97,110,101,100,105,121,120,107,104,92,106,118,103,97,90,101,113,102,101,101,103,99,107,91,96,100,113,116,108,91,114,111,102,106,92,106,88,104,103,91,112,93,94,100,103,113,105,92,104,91,95,99,103,103,97,102,99,129,107,100,95,90,103,103,102,104,90,100,96,108,85,102,106,103,92,98,95,99,92,99,113,102,101,103,99,106,94,115,105,106,113,91,93,96,100,100,90,106,108,112,101,106,97,99,118,106,99,93,123,101,106,99,108,91,111,110,115,92,86,99,99,121,103,94,91,99,106,100,94,104,96,100,106,106,93,95,100,104,97,105,98,97,92,111,99,98,101,103,99,98,86,106,99,118,97,104,103,81,108,104,95,104,99,95,96,104,87,103,98,93,100,101,98,98,92,96,100,85,95,94,93,87,95,98,109,102,103,107,98,100,98,112,105,94,97,116,101,95,104,98,98,102,99,110,101,105,125,113,92,99,95,108,119,102,101,107,93,115,97,100,98,108,97,94,79,93,105,100,96,102,112,109,102,104,93,103,100,107,101,96,92,100,102,103,104,84,108,109,98,105,95,105,102,95,101,81,117,98,106,97,101,97,102,110,97,103,102,99,106,104,111,106,98,91,85,101,113,99,104,107,94,100,101,100,90,109,112,106,113,111,103,96,107,95,114,102,99,105,92,104,105,102,99,104,110,117,101,111,109,102,112,99,110,106,99,96,97,91,107,97,112,113,101,102,101,104,110,79,95,116,92,113,108,101,91,107,103,100,103,117,90,106,104,103,108,96,111,99,110,101,100,99,94,120,97,106,102,104,85,98,94,105,109,100,105,99,113,101,100,107,105,103,101,102,106,108,97,103,105,111,109,103,107,101,105,110,109,108,99,93,99,98,103,99,107,96,100,105,108,112,106,98,101,106,99,110,90,93,114,95,104,96,107,98,96,102,91,122,106,111,113,104,94,112,97,100,102,107,100,98,96,88,107,104,97,102,99,119,92,99,99,106,101,96,98,96,97,101,81,109,104,101,110,93,112,97,109,102,104,100,106,96,99,99,113,92,100,103,107,93,113,95,96,97,99,101,116,113,105,95,103,90,104,70,106,93,107,78,94,106,99,93,113,103,118,99,97,104,104,99,112,103,93,103,104,98,94,94,101,96,99,106,109,106,103,102,104,109,110,102,103,112,92,86,98,106,97,102,104,71,112,109,96,97,101,107,117,109,100,99,102,95,106,99,109,116,106,98,100,99,93,95,112,105,99,102,102,101,96,100,105,104,103,99,103,88,95,108,85,100,96,107,103,93,115,104,96,96,98,110,109,102,113,89,89,95,89,102,98,99,105,99,92,117,90,100,109,111,105,98,119,100,103,100,112,103,103,104,97,95,108,107,108,95,104,105,103,107,98,73,98,100,102,105,102,106,102,107,107,103,114,117,100,65,91,85,104,106,93,109,105,112,103,107,102,107,111,94,103,113,96,99,109,100,98,91,107,98,109,106,108,107,134,97,103,101,101,106,109,106,109,104,114,102,101,106,104,99,101,99,104,114,110,102,94,102,114,103,91,97,96,90,108,98,104,103,108,102,101,95,95,95,96,117,107,96,96,106,104,104,91,97,106,107,104,96,112,100,98,119,105,100,107,96,106,102,102,90,95,104,115,104,100,96,99,95,101,101,108,98,103,100,102,111,105,105,98,114,101,99,104,97,103,115,103,110,96,103,106,98,104,105,111,106,116,100,100,102,102,111,109,92,96,98,87,107,104,95,88,112,105,92,111,113,105,112,99,120,103,107,96,100,104,92,104,101,109,81,87,98,117,101,102,96,119,99,96,113,103,100,100,103,112,101,71,121,97,107,108,108,92,101,113,102,113,106,98,103,100,108,114,94,101,118,101,99,102,95,101,101,87,97,103,103,95,105,87,96,117,97,97,98,119,87,104,112,100,105,97,96,95,100,98,102,102,90,104,103,107,104,107,96,102,92,118,105,92,91,104,95,103,95,105,101,105,102,101,106,105,97,98,110,102,106,102,100,99,95,107,109,101,91,97,97,96,93,106,96,106,85,90,98,94,108,105,100,94,100,90,108,104,99,95,90,81,106,98,101,103,106,98,101,99,99,110,109,86,91,102,100,96,102,96,98,103,96,100,99,113,100,103,107,110,111,89,89,99,114,98,65,106,108,108,110,104,105,110,102,100,105,107,99,76,112,98,91,99,102,95,106,110,102,88,113,116,101,102,118,100,96,102,100,101,103,106,98,102,94,90,94,102,97,108,98,103,106,107,109,90,119,101,95,108,105,101,99,106,112,90,120,113,102,103,112,92,99,90,108,108,106,100,111,102,98,107,104,108,97,96,85,90,100,111,100,90,96,117,106,120,93,105,108,107,106,98,99,96,108,108,109,91,102,97,113,98,107,91,102,105,105,94,100,115,94,99,107,90,109,97,98,99,111,100,106,112,106,92,106,92,97,97,95,84,102,95,113,106,105,104,96,103,100,97,97,102,98,106,102,83,102,94,98,103,95,99,98,97,106,81,104,115,98,92,109,101,91,84,97,110,88,106,99,99,100,96,109,113,110,92,75,98,109,102,109,87,96,92,108,90,93,101,96,90,104,111,91,113,103,98,91,92,99,102,105,87,97,97,98,99,105,102,88,110,107,94,96,102,100,108,77,101,113,108,115,105,95,99,108,105,94,97,112,98,105,93,109,110,110,108,103,95,110,90,105,103,121,103,99,100,90,95,93,98,110,102,74,108,92,94,112,91,87,100,88,102,106,91,114,103,98,105,104,105,102,97,97,104,112,105,108,96,105,105,100, +445.66043,94,103,109,87,86,97,115,91,98,117,101,94,93,99,100,102,96,109,88,97,112,91,91,109,93,100,113,95,111,99,108,94,96,96,114,106,129,99,108,100,106,105,106,96,103,94,111,102,96,102,97,107,109,107,102,100,101,95,97,119,99,98,92,95,101,110,105,74,99,120,111,110,98,94,94,107,98,101,102,99,112,100,101,100,103,97,111,108,102,104,87,120,97,111,91,97,88,107,95,112,102,108,90,101,98,77,102,101,100,109,100,106,113,108,106,102,105,103,98,104,104,99,100,100,113,114,111,104,98,110,98,99,91,99,103,116,96,102,92,99,98,106,104,107,103,113,97,99,100,92,101,102,109,106,107,104,103,100,108,110,103,104,101,100,94,100,99,98,115,105,94,95,100,100,107,101,105,89,100,102,99,86,102,101,100,101,94,98,101,94,106,91,100,82,103,95,113,106,97,105,112,111,103,109,96,115,108,96,113,100,93,99,115,79,101,121,107,115,83,99,110,110,106,93,99,104,101,113,105,100,107,86,89,99,103,105,99,119,95,95,112,98,96,101,108,94,106,109,102,99,106,108,95,104,103,114,107,95,97,106,96,103,104,100,87,90,88,98,99,97,105,111,100,100,96,93,112,94,106,102,96,100,109,103,111,103,97,109,98,96,113,92,95,109,109,101,98,108,106,98,106,107,98,116,111,106,100,91,100,107,101,102,98,107,93,98,103,98,87,105,114,105,91,104,105,97,101,105,106,106,103,102,100,105,108,104,91,140,123,113,105,107,125,99,94,101,114,109,109,107,105,99,78,96,112,107,103,105,101,100,101,98,103,105,91,101,103,99,98,95,119,104,107,111,102,113,113,90,99,93,106,109,97,120,105,82,98,105,99,94,108,85,94,100,98,101,111,96,100,112,100,97,91,108,95,90,102,107,103,97,85,96,102,99,110,97,100,93,106,113,98,96,97,103,101,97,98,87,102,119,92,106,108,105,96,92,98,91,96,94,96,105,99,102,89,104,97,103,97,106,104,107,106,95,104,111,104,98,95,95,113,111,106,102,102,108,107,113,98,94,95,111,104,97,121,104,95,109,112,105,98,109,111,111,91,100,106,100,103,102,107,103,103,95,100,96,101,103,105,101,109,107,86,113,98,112,102,117,105,99,83,104,100,115,107,90,115,105,104,103,113,100,104,103,98,96,106,98,102,97,114,99,95,108,99,102,97,100,101,95,102,94,98,103,119,99,109,99,106,104,95,101,109,110,98,98,98,90,94,102,99,90,101,99,97,105,100,102,109,97,93,102,105,93,96,94,102,113,108,111,100,114,100,95,100,100,105,93,91,101,94,97,103,96,94,93,96,101,95,100,106,118,99,95,92,96,94,94,101,102,94,100,104,98,104,112,105,105,109,101,83,107,102,103,124,98,111,102,95,106,111,102,95,103,100,102,99,97,106,108,107,103,98,101,105,95,95,102,97,101,96,106,105,91,95,97,110,103,107,99,112,112,112,110,104,101,98,96,96,104,101,100,108,108,96,116,107,94,103,98,112,101,110,92,102,104,103,111,95,103,98,104,102,101,94,105,104,111,102,103,106,112,102,98,97,98,102,107,101,107,107,100,108,96,102,93,96,93,106,101,107,102,102,107,106,108,101,107,97,111,100,111,102,103,94,102,122,95,112,97,109,95,102,96,99,89,107,113,98,104,107,104,96,98,118,93,95,104,103,107,107,99,107,97,83,101,105,88,106,104,105,103,100,95,101,109,113,112,102,86,99,98,96,109,90,95,109,98,105,109,106,105,110,108,102,111,103,106,98,81,110,99,93,95,96,115,114,105,95,83,98,98,104,106,106,109,109,96,90,100,110,91,113,101,96,108,106,103,103,110,102,97,103,110,96,98,106,104,100,104,95,103,107,106,89,112,110,106,95,97,99,94,114,97,107,93,91,100,108,86,106,103,91,101,98,105,92,103,93,101,107,105,111,100,109,90,101,99,104,107,96,105,97,94,99,99,87,108,99,98,92,109,103,97,104,94,113,108,101,105,107,99,102,95,109,94,103,98,99,104,93,95,108,97,108,106,103,106,99,105,104,99,104,110,111,102,95,108,102,104,98,106,105,100,89,91,119,93,116,105,114,98,115,97,89,113,94,99,102,118,89,101,111,118,113,104,104,97,93,100,105,100,99,103,106,103,94,91,100,109,99,100,91,110,96,100,107,111,95,109,105,120,100,104,95,99,99,110,102,101,119,74,96,106,107,107,112,103,102,101,93,99,90,87,114,113,91,100,104,99,90,92,102,110,93,107,89,108,97,94,96,104,84,109,91,108,97,91,105,109,100,104,101,108,114,94,109,105,106,105,99,118,109,91,94,94,109,95,101,94,112,107,94,87,96,109,93,107,94,113,105,94,102,103,107,92,101,95,99,97,93,105,115,110,111,100,103,106,94,87,105,100,93,112,106,116,103,106,112,94,108,97,109,97,100,94,99,94,109,105,100,99,115,103,108,103,114,86,98,100,97,91,108,102,118,104,102,100,98,96,119,109,113,108,113,101,94,105,103,111,108,111,111,107,120,102,104,108,87,100,101,106,94,114,102,99,100,104,114,102,103,111,108,99,110,110,87,103,118,95,107,95,116,92,117,102,102,114,119,121,100,103,112,120,98,109,107,106,104,103,105,109,106,111,116,98,109,97,91,100,93,106,103,111,103,91,106,94,93,102,106,90,112,102,101,101,103,103,112,108,91,103,105,97,106,108,109,113,116,109,102,95,92,92,108,95,95,92,95,73,109,102,97,106,104,97,104,114,112,104,108,97,94,104,109,87,113,109,106,119,96,99,102,108,113,112,113,112,102,102,111,91,100,115,103,89,88,99,100,103,102,100,104,136,103,104,111,113,94,112,96,111,112,115,105,104,112,104,112,91,106,111,108,106,106,104,102,96,107,106,107,112,100,107,110,92,81,107,105,75,111,106,105,102,105,103,108,120,98,99,115,98,103,102,108,96,103,97,115,112,103,96,92,118,108,106,106,99,89,106,93,116,107,94,104,116,106,104,106,109,115,104,113,109,94,98,111,105,97,101,101,102,116,114,103,98,102,100,105,97,101,97,105,110,101,99,91,119,98,91,107,96,97,113,109,102,98,110,105,103,102,100,114,109,110,105,110,112,99,112,100,114,96,107,101,106,111,106,102,99,109,103,103,106,101,109,94,84,101,109,115,83,91,110,107,110,98,94,111,107,102,105,99,98,95,113,124,106,105,98,100,116,97,101,99,111,99,110,106,98,110,97,92,99,110,104,99,103,104,103,103,103,107,111,109,113,106,96,85,113,95,108,98,101,99,104,108,91,99,106,96,101,109,115,98,129,102,102,91,95,120,111,95,111,95,109,83,107,107,100,99,98,110,106,95,111,93,100,101,105,110,96,104,110,93,102,88,107,104,115,104,99,109,99,93,108,105,107,106,107,101,102,103,115,107,102,107,107,116,108,113,106,100,113,101,103,106,105,121,104,108,108,100,109,108,106,102,106,105,103,96,104,107,108,97,92,102,95,118,109,109,108,101,103,108,128,106,96,91,93,92,99,100,112,100,98,117,106,99,96,105,107,113,101,103,107,109,101,100,109,98,100,104,106,113,95,99,110,109,102,109,100,111,108,102,97,109,96,104,103,111,110,99,107,101,96,107,107,100,111,110,87,113,96,106,105,106,107,104,94,103,101,107,79,102,92,98,107,95,98,99,105,106,91,107,97,92,104,110,115,106,102,104,99,103,97,101,99,108,110,101,91,105,101,103,102,94,102,107,108,95,100,111,96,108,95,100,90,93,110,96,109,100,106,96,91,100,100,109,112,110,94,99,113,109,118,105,99,133,103,88,106,99,99,104,109,99,103,101,99,102,88,107,97,97,106,100,97,96,100,110,108,99,114,99,99,107,103,120,104,100,102,103,104,102,99,107,108,99,104,95,111,103,103,107,102,101,93,102,102,109,108,91,98,110,101,101,116,106,100,110,108,113,112,104,103,102,103,95,106,104,105,92,105,101,106,107,99,104,109,103,102,112,90,94,98,105,95,101,102,98,111,112,102,96,109,106,106,102,85,100,105,111,106,96,110,96,95,94,87,106,98,100,115,99,106,91,84,102,116,109,94,94,101,98,104,104,105,105,104,103,105,105,108,98,104,116,100,122,101,123,101,95,100,98,92,101,98,104,111,104,103,98,100,98,96,107,98,103,109,91,93,103,117,96,104,92,97,103,96,99,104,125,100,94,104,92,96,97,101,104,104,113,104,102,103,105,82,98,110,106,91,111,89,105,99,103,109,102,108,106,94,100,104,101,108,112,104,108,108,92,103,108,101,103,105,110,105,126,95,96,100,110,97,96,102,104,107,107,104,99,88,95,87,99,121,94,99,88,98,119,100,104,103,107,101,101,101,96,106,113,113,101,103,114,109,104,105,105,104,98,94,100,108,117,99,101,112,102,96,72,95,90,111,105,104,112,93,88,100,101,109,109,98,98,98,115,108,91,98,96,99,101,109,102,98,101,97,95,95,100,98,108,92,97,97,94,101,97,96,99,108,105,100,110,99,96,108,116,107,106,110,108,109,89,106,103,95,98,99,110,105,95,102,104,95,111,113,105,105,95,102,102,99,74,94,87,106,96,101,97,104,101,116,94,105,108,104,106,94,112,109,102,101,104,110,108,96,102,97,95,106,110,104,97,94,102,103,102,101,107,97,113,106,68,106,93,100,101,96,97,103,94,99,98,85,102,103,116,97,109,108,109,93,101,94,98,103,100,110,106,108,99,104,112,98,90,109,87,107,108,102,92,108,90,99,81,86,109,72,93,108,105,101,91,90,104,103,100,100,112,102,120,103,102,111,108,100,97,95, +445.80078,110,113,91,98,97,79,111,101,110,101,95,78,101,98,100,99,96,110,95,104,106,102,106,117,106,109,104,91,102,114,100,101,97,103,109,113,110,99,94,89,103,102,101,104,91,102,101,99,108,105,102,110,105,96,103,106,89,104,107,82,99,99,104,107,102,113,98,108,102,101,109,98,100,112,93,110,95,101,102,102,104,116,67,102,96,99,95,99,98,101,94,107,99,110,93,91,100,103,102,109,111,97,100,106,115,98,99,106,102,107,90,102,100,90,115,99,103,101,102,107,108,92,90,120,111,114,101,97,113,101,107,97,109,96,97,109,96,99,99,112,97,93,105,100,91,97,96,97,103,93,100,101,105,67,92,97,102,108,105,107,104,94,107,105,119,95,99,97,100,105,116,99,102,78,104,113,98,95,102,106,103,104,102,93,100,121,108,105,106,110,97,95,101,97,105,102,109,97,101,124,77,100,104,111,106,94,102,96,109,94,103,97,95,94,101,102,94,105,93,111,93,96,95,97,113,96,103,109,102,99,113,120,102,103,118,91,105,109,96,108,105,103,102,117,94,100,94,107,97,109,101,104,133,96,117,107,87,109,102,96,95,114,113,100,98,112,99,100,118,94,102,100,100,97,106,87,100,113,103,100,102,107,109,98,100,103,111,107,98,98,100,93,90,104,98,99,106,100,111,104,100,112,111,112,98,109,104,104,109,101,76,97,99,106,113,102,102,117,101,88,91,93,111,103,115,114,109,97,95,105,101,97,99,105,101,103,108,95,105,96,102,93,99,96,100,105,108,110,96,108,96,99,106,104,104,108,113,109,102,109,102,105,101,100,102,99,106,110,100,108,83,110,138,109,97,104,104,98,102,101,106,125,104,106,97,92,104,105,106,97,107,73,110,104,108,113,106,105,95,113,114,110,106,108,120,100,95,95,112,108,78,106,103,96,113,91,102,97,105,103,105,100,97,104,118,97,93,113,113,109,102,95,102,117,116,100,106,99,103,116,106,104,94,105,97,94,98,110,114,107,114,111,92,102,87,120,101,98,105,97,89,98,103,92,109,105,99,107,110,100,108,109,111,95,94,98,105,111,96,104,97,95,108,101,99,99,108,102,99,93,99,94,104,99,101,106,105,106,90,95,107,108,105,94,94,111,102,110,108,90,107,106,111,117,98,95,100,105,102,81,108,94,118,108,112,105,108,109,93,97,97,116,102,101,85,118,109,90,116,96,102,101,98,97,105,95,106,103,112,118,110,108,108,110,108,83,102,98,97,101,94,98,106,98,101,104,104,121,96,94,100,99,103,104,100,103,97,105,97,108,96,107,95,108,106,96,103,92,100,103,100,111,105,116,102,109,108,112,105,103,111,102,108,111,101,118,101,101,96,100,99,113,103,100,104,108,107,101,110,114,120,92,105,103,106,96,102,107,98,113,100,104,110,97,111,116,102,100,133,92,95,101,98,104,100,100,104,93,105,105,94,100,108,104,99,110,105,105,106,103,106,102,108,114,86,95,112,102,110,106,99,96,99,107,104,110,102,91,111,93,103,104,108,116,110,101,106,104,96,94,88,104,104,117,104,99,104,107,103,101,91,97,86,110,106,101,96,126,92,93,95,106,111,101,108,101,97,100,102,99,124,103,100,103,99,99,102,101,108,110,107,104,103,102,93,98,112,104,100,103,107,101,100,91,93,109,105,104,95,107,118,104,111,98,104,115,96,90,96,92,111,94,97,116,96,104,99,113,107,97,106,98,104,106,98,110,109,86,100,101,95,104,107,108,98,97,98,111,101,110,101,98,107,107,87,109,102,96,105,107,112,127,93,100,109,105,91,100,110,96,112,95,101,103,104,114,104,109,105,95,108,95,108,103,117,100,92,104,102,114,107,96,110,95,106,113,88,106,110,98,116,99,108,108,106,101,83,99,105,101,115,105,111,94,103,92,102,96,89,95,102,95,103,106,110,105,100,104,99,114,98,111,111,106,98,102,99,102,104,105,105,104,104,110,109,92,94,111,114,100,101,109,103,103,111,99,109,111,99,108,111,107,113,108,104,110,94,105,104,98,106,103,117,113,102,99,104,121,100,110,108,104,113,107,106,95,101,110,108,112,98,104,100,122,117,104,105,105,96,101,95,123,99,106,106,108,102,105,114,99,94,113,110,110,105,80,107,104,117,105,112,104,104,106,106,99,107,104,108,112,103,106,112,88,99,103,100,99,100,97,103,105,97,99,110,105,107,95,102,101,98,98,107,88,102,104,108,102,93,96,112,101,105,104,80,101,104,104,84,110,99,107,119,98,102,106,108,86,103,99,118,106,107,108,116,117,111,80,98,120,103,110,109,95,106,103,85,108,99,101,101,103,89,106,110,103,90,102,101,90,104,105,113,102,81,107,102,100,113,113,93,94,100,104,92,106,106,95,100,97,99,111,99,103,90,111,108,105,99,100,106,95,98,113,94,107,99,96,114,113,104,105,110,98,76,98,99,91,104,99,111,93,104,103,103,105,98,117,101,105,104,123,101,108,98,99,87,105,100,107,111,93,103,93,113,112,100,117,106,110,103,115,95,101,95,105,110,99,103,110,91,89,101,102,82,94,95,97,101,91,108,116,113,104,111,106,101,98,101,115,109,93,111,93,106,104,115,96,106,99,97,91,103,107,91,103,99,92,110,110,103,112,90,111,99,110,104,91,101,103,82,109,123,96,94,90,97,95,100,97,108,112,99,99,104,113,85,98,113,99,114,97,104,100,120,96,105,113,89,102,102,95,100,112,94,103,95,100,127,98,96,113,100,102,108,115,107,101,111,102,100,121,110,87,97,103,110,106,106,103,108,115,105,97,97,110,105,106,99,105,99,94,105,84,106,108,95,100,109,95,112,98,94,98,110,110,102,101,108,101,100,99,112,89,106,105,93,108,99,102,102,94,104,101,112,109,101,101,93,96,105,110,112,114,95,99,103,99,100,104,101,98,90,97,102,111,91,102,100,107,104,125,113,92,106,107,107,109,86,101,106,106,104,105,114,109,106,102,95,92,104,125,101,94,105,103,105,98,109,98,114,106,100,98,79,96,103,95,96,89,103,117,97,96,113,96,106,103,104,100,106,93,117,117,109,98,107,98,111,100,82,83,94,131,112,110,106,99,89,108,103,100,96,109,112,103,112,102,113,100,103,107,108,109,104,110,99,103,101,108,103,92,95,102,98,112,103,100,92,108,79,117,98,97,107,106,104,110,120,111,123,103,86,108,111,109,93,96,102,83,105,102,119,103,109,102,111,104,106,108,99,101,101,105,90,108,99,101,102,104,104,104,103,98,95,115,91,96,111,93,138,106,106,104,105,109,108,98,100,104,96,90,97,110,107,101,109,109,108,96,106,95,91,101,105,125,104,102,90,103,106,107,104,103,98,108,112,103,95,90,102,114,104,102,93,110,98,98,97,102,103,107,96,106,93,103,107,88,103,97,99,105,92,112,109,103,99,98,122,104,103,102,86,100,112,101,104,78,101,101,103,102,101,92,106,100,107,115,101,104,103,124,108,98,105,128,99,97,104,99,98,92,108,102,105,106,95,89,116,96,92,112,96,106,108,87,109,99,104,109,97,69,95,115,108,96,110,102,110,105,106,110,103,100,95,99,102,89,90,94,106,100,98,98,100,96,93,99,113,97,104,98,98,109,125,101,115,99,110,77,105,109,95,95,106,112,112,106,109,94,98,95,109,102,103,110,105,90,102,117,107,89,101,96,125,110,120,71,114,123,104,100,98,100,103,112,101,107,109,113,100,104,113,97,99,94,98,101,100,91,104,64,98,75,109,105,108,97,102,99,95,92,110,100,101,102,115,113,93,104,100,92,107,103,100,104,95,98,102,94,99,116,96,103,84,101,108,101,94,106,101,108,89,98,101,98,99,93,99,97,117,95,112,109,99,102,105,104,105,95,97,110,99,104,93,90,103,98,99,103,100,92,99,104,99,96,81,92,104,100,101,100,99,102,109,99,91,102,98,103,121,104,101,96,96,106,120,94,107,102,103,113,102,109,112,106,108,90,121,102,99,97,109,103,99,111,112,110,101,101,96,106,101,114,109,103,110,98,111,94,103,102,104,116,116,101,103,114,100,107,105,96,99,109,91,114,99,105,113,105,97,106,94,98,106,99,109,112,95,102,113,104,90,100,97,109,105,100,101,101,106,81,109,100,94,90,94,112,91,98,105,94,95,104,96,97,104,104,100,102,107,96,105,98,91,102,111,95,110,102,98,108,106,98,101,108,108,95,96,98,112,114,84,102,108,95,101,101,97,112,111,101,140,106,98,90,98,98,100,81,99,78,112,113,89,110,105,107,92,101,100,109,105,100,105,110,116,96,102,99,105,88,106,111,106,107,110,99,108,106,89,104,100,99,102,106,86,105,117,98,105,105,88,93,106,91,104,105,108,106,94,98,109,107,112,103,103,95,107,87,90,93,98,111,98,105,100,98,111,97,99,98,91,86,112,107,101,105,71,101,88,101,94,100,107,98,99,105,106,102,95,94,98,105,113,104,108,92,105,107,103,94,103,100,99,106,78,114,96,96,99,93,88,102,95,95,102,95,97,93,104,106,92,107,101,99,105,106,133,96,93,104,113,106,94,101,102,93,101,99,106,88,105,115,100,102,102,90,102,104,83,105,98,110,97,100,111,105,93,97,86,99,109,112,97,99,101,108,107,95,102,100,96,103,105,107,110,100,94,96,113,102,98,99,94,105,97,98,106,98,108,103,127,91,116,98,101,99,109,111,104,96,103,96,98,96,89,106,82,99,108,99,96,111,106,97,104,95,101,91,94,100,95,98,93,103,99,106,101,108,94,103,92,103,105,109,103,99,96,98,88,104,103,111,93,87,118,103,93,103, +445.94116,102,94,111,110,95,101,101,124,104,100,94,108,105,112,85,98,117,113,109,110,109,102,99,102,93,102,98,106,107,110,106,94,109,97,105,99,99,102,101,90,98,95,108,94,96,117,86,104,111,114,105,102,100,95,100,100,94,107,99,94,101,104,113,116,111,112,94,110,99,118,91,104,104,117,92,126,114,97,99,108,93,104,93,100,101,95,104,102,106,93,112,101,96,96,100,97,110,105,97,107,111,100,98,94,103,112,109,103,105,104,95,104,101,105,99,111,110,101,100,109,105,108,112,109,105,100,117,101,116,105,96,106,98,101,90,84,99,105,105,110,109,109,97,98,87,100,103,97,103,102,105,100,98,87,79,112,108,101,111,105,88,98,96,122,103,111,113,95,105,98,99,97,117,100,111,106,96,90,116,112,111,100,101,101,100,110,97,91,101,87,97,91,109,102,113,105,101,92,96,105,92,94,105,95,104,105,104,98,115,117,100,115,95,99,108,108,120,96,99,97,109,109,97,103,80,103,105,103,101,101,94,106,104,110,84,105,97,104,92,109,105,103,99,105,103,78,97,100,100,100,99,110,107,102,107,96,92,98,99,111,92,108,91,100,110,101,109,124,92,108,118,101,102,102,110,107,94,83,100,95,98,111,96,95,104,103,89,105,104,97,115,98,108,107,98,96,107,107,104,107,98,104,100,103,106,103,98,122,103,109,112,96,98,110,114,103,96,103,106,100,103,106,100,96,119,103,99,109,119,106,100,99,114,100,110,117,105,95,85,104,83,103,111,97,86,104,100,105,110,95,104,106,97,105,103,112,106,112,108,116,100,113,102,93,95,105,98,116,97,117,107,113,101,98,109,98,105,97,97,108,118,109,90,112,102,101,100,100,92,83,116,137,106,101,102,87,108,99,119,99,103,115,105,105,99,95,105,112,102,100,100,104,108,112,109,101,99,101,100,104,100,105,104,105,101,95,130,111,97,96,97,112,107,97,101,98,104,103,110,96,117,100,88,107,96,99,98,93,100,107,101,112,88,111,106,99,109,110,113,102,102,100,116,101,107,113,112,103,100,109,106,98,100,101,96,102,108,101,95,85,96,103,114,108,101,102,116,110,105,105,103,103,99,103,103,103,89,96,111,102,92,96,105,99,108,110,113,111,101,100,113,107,96,108,101,92,104,108,105,105,111,104,111,117,96,111,96,98,107,109,94,99,96,107,97,107,109,107,104,103,95,112,112,82,96,101,112,96,108,145,110,111,95,113,116,102,99,106,109,97,106,101,80,109,102,101,109,108,107,98,85,95,106,103,100,100,104,109,102,129,103,94,107,94,99,98,96,109,106,107,101,105,103,98,103,108,109,104,101,104,93,109,111,91,111,100,95,107,91,118,93,106,99,107,107,99,104,107,112,111,102,105,109,109,109,102,100,114,106,103,100,99,104,105,98,103,100,90,110,129,116,104,92,114,99,98,94,93,106,132,102,95,106,119,87,120,108,106,109,89,105,101,101,107,98,98,101,109,103,115,110,102,94,98,105,117,109,102,105,103,101,107,97,101,96,97,97,99,114,109,108,108,99,106,103,105,109,106,106,103,100,100,115,91,99,98,106,104,101,105,109,110,102,98,97,94,110,101,109,112,94,91,110,112,100,99,95,97,98,108,98,103,102,96,93,101,108,102,107,113,108,99,111,101,102,99,110,111,103,95,116,106,97,114,104,101,103,116,99,105,99,103,106,111,104,98,106,130,103,96,100,104,108,99,95,106,103,101,113,103,113,104,96,109,97,100,103,106,95,109,98,103,109,115,90,99,103,102,107,109,103,113,110,95,109,113,106,99,115,99,131,98,106,103,98,100,106,106,113,94,107,102,103,96,104,116,97,90,113,97,95,91,108,109,110,102,107,113,107,107,87,107,110,109,101,96,95,109,87,106,94,109,100,97,110,103,110,105,99,104,83,100,87,120,110,97,91,102,111,107,125,113,108,113,110,107,99,102,92,111,113,106,88,104,109,99,97,108,108,102,107,103,104,110,109,102,99,99,104,104,110,95,107,96,113,93,105,83,104,100,98,104,107,97,106,102,107,107,103,118,91,93,105,109,99,92,87,91,95,103,104,99,108,113,98,107,104,100,112,100,109,97,100,100,85,96,106,113,101,95,110,99,108,116,100,104,104,102,85,102,102,101,101,101,112,101,84,100,99,107,104,101,101,104,100,106,95,95,93,94,111,100,100,99,88,102,89,93,99,101,104,106,108,99,104,107,104,102,101,101,80,109,101,101,92,112,107,95,95,131,92,105,97,91,119,125,115,101,100,113,112,99,114,105,106,105,108,107,117,86,89,99,112,101,110,96,101,109,103,101,101,102,105,104,105,106,101,97,98,117,96,115,99,107,91,98,98,99,104,96,99,126,96,106,85,95,87,97,109,107,110,101,101,102,106,98,107,101,98,112,93,105,106,104,99,110,116,98,100,108,108,103,113,101,97,117,122,109,107,111,105,103,110,111,103,107,104,108,100,115,108,106,99,88,112,105,93,103,87,108,111,109,93,108,100,102,102,102,106,109,102,110,104,109,105,100,94,111,109,105,105,103,102,106,111,94,100,99,101,131,101,107,107,98,103,115,106,110,119,116,112,91,97,91,100,107,103,109,109,106,94,100,101,113,97,106,96,100,105,102,110,94,91,113,115,95,111,103,115,102,96,96,112,102,99,118,99,101,99,112,106,105,107,109,99,114,110,101,103,108,106,84,104,118,106,105,99,106,105,108,118,118,100,98,104,94,95,105,107,102,109,100,104,117,99,109,110,106,110,99,103,99,110,106,109,98,103,121,103,106,98,107,116,95,99,103,90,108,95,104,108,111,107,97,107,90,103,122,114,100,99,100,104,106,109,108,115,92,104,101,103,109,101,103,104,96,97,100,116,110,103,101,87,98,102,91,67,102,100,117,104,107,106,115,111,103,88,111,97,109,107,102,106,102,113,88,93,116,105,108,107,104,104,106,106,103,99,98,110,104,104,94,91,111,120,99,108,101,113,127,100,113,115,97,91,96,99,98,109,130,97,101,106,108,110,93,103,95,96,113,69,100,106,102,107,100,106,103,106,101,104,116,93,106,107,97,108,109,101,100,99,98,107,103,96,113,111,95,116,101,102,75,98,120,108,87,105,99,114,106,105,104,109,110,104,105,111,111,103,100,99,111,99,108,110,103,111,109,108,126,108,97,93,106,96,113,99,91,115,105,99,115,106,102,102,110,109,99,99,99,99,110,103,93,106,93,99,112,108,102,99,94,96,102,108,113,109,98,105,93,105,104,106,122,111,108,99,98,93,95,94,95,100,103,109,110,101,103,103,111,96,110,111,109,108,107,98,107,89,92,117,105,96,109,106,95,99,99,110,94,106,104,105,100,105,99,107,99,105,106,98,99,103,99,102,109,111,95,106,104,109,104,84,100,99,97,73,93,106,99,105,99,109,103,117,89,95,108,108,111,99,112,98,109,107,99,117,107,102,98,111,80,106,108,115,106,98,108,103,106,104,105,95,96,101,100,83,103,102,102,111,107,98,87,105,93,99,90,103,86,95,104,114,92,95,101,108,106,108,91,95,94,109,104,80,103,100,95,104,94,97,106,113,106,93,85,103,90,105,103,94,102,102,98,90,99,128,112,105,99,110,98,106,106,102,109,112,98,105,106,106,76,100,105,112,109,90,104,106,86,105,99,97,104,100,99,99,99,111,111,88,98,100,104,102,108,109,107,100,99,108,98,121,116,99,98,101,95,99,94,99,107,100,110,103,90,104,98,114,100,101,98,103,102,108,108,103,105,93,104,108,103,113,93,107,99,98,97,103,105,106,102,114,113,100,111,109,98,104,107,98,103,111,103,100,69,107,102,105,100,124,108,116,102,90,97,97,94,97,99,113,92,107,108,97,107,121,111,98,113,110,105,107,111,95,111,99,110,96,111,105,105,96,97,99,94,97,108,94,111,103,99,94,139,102,96,100,99,103,95,113,106,108,96,121,113,97,105,105,99,108,113,95,117,99,113,108,110,105,102,92,67,108,108,95,112,108,107,107,100,98,109,113,109,104,104,99,121,112,109,106,101,95,117,99,110,106,98,96,97,99,79,107,105,100,98,91,114,107,107,99,104,88,97,107,105,111,119,92,97,102,103,116,104,100,112,105,105,107,85,106,114,108,107,96,109,112,103,99,105,116,100,98,98,102,99,109,113,107,89,91,98,120,101,101,107,93,99,93,105,109,103,109,83,105,103,104,106,105,98,94,100,95,89,102,100,109,116,94,113,96,103,107,102,113,105,105,101,107,112,109,100,104,105,116,105,98,112,110,109,100,114,108,105,104,108,98,106,102,113,111,99,103,95,92,106,101,110,121,100,98,90,96,65,104,108,86,115,101,130,102,105,99,101,105,88,93,133,103,107,76,104,103,102,106,96,106,101,100,93,89,96,125,94,105,87,101,112,117,92,100,104,114,100,104,109,98,91,96,99,98,101,87,104,104,109,100,86,101,97,99,97,110,94,99,83,100,98,108,105,104,103,103,100,103,102,107,100,108,101,91,93,102,105,121,103,106,105,105,87,105,103,102,101,119,110,94,100,104,104,116,101,106,96,99,120,101,107,91,102,105,102,95,114,94,102,103,102,103,85,93,104,100,101,96,100,112,104,97,101,99,101,123,97,93,96,97,99,102,116,83,111,92,89,105,99,74,103,120,110,105,106,98,99,93,98,95,105,106,105,105,110,111,98,111,100,98,96,100,109,108,99,94,104,87,102,103,107,109,98,120,100,107,100,104,112,105,99,86,110,106,113,110,96,104,115,115,106,120,85,108,102,101,102,100,97,102,97,121,101,111,85,113,96,103,104,102,94,97,96, +446.08151,102,94,98,98,92,96,115,109,88,97,88,87,100,96,105,90,96,100,108,99,97,98,95,101,106,103,106,82,109,94,102,114,97,92,99,102,96,91,103,84,118,98,107,100,112,107,101,98,85,102,86,104,105,95,104,83,103,107,101,99,102,89,95,113,94,101,96,102,106,96,102,117,108,104,88,113,95,95,104,93,105,101,100,116,95,95,104,108,104,106,93,98,96,91,103,109,103,105,81,104,97,101,106,102,93,95,93,114,95,97,109,97,117,100,112,91,97,98,105,109,109,101,97,133,99,111,112,84,91,108,95,104,99,91,116,109,99,91,94,106,109,97,97,93,99,102,115,101,102,92,103,94,98,98,94,101,102,109,97,100,91,99,113,105,109,95,114,95,98,104,108,99,108,104,94,102,96,105,105,121,96,103,108,108,105,96,111,111,110,101,74,97,110,102,99,95,101,112,110,106,106,97,96,103,103,107,110,94,104,91,93,107,98,98,97,112,102,95,97,100,102,95,105,104,105,107,97,99,102,116,104,101,103,107,95,97,90,103,116,90,95,105,105,110,100,101,100,107,104,99,97,102,107,101,99,98,109,110,96,101,92,107,110,100,97,83,105,92,106,90,106,113,105,106,109,102,99,93,83,97,103,104,113,111,100,101,91,99,99,110,101,98,98,105,99,101,110,109,98,105,95,97,96,113,79,100,111,112,101,105,98,104,100,95,105,100,108,102,100,116,94,96,91,109,99,89,106,96,113,105,94,101,91,104,107,104,103,93,110,110,92,110,106,112,101,102,113,106,106,106,105,100,84,107,102,75,104,118,105,101,109,105,106,95,98,104,95,102,95,106,97,95,102,103,112,106,92,106,117,97,113,108,116,95,99,87,99,98,104,96,108,101,101,83,91,93,104,116,97,104,91,101,107,99,111,129,101,101,115,105,77,86,99,104,99,96,102,106,108,92,101,111,96,102,94,108,83,90,97,106,87,103,105,94,95,103,105,104,101,112,104,98,97,100,102,112,98,93,98,96,96,97,79,98,112,109,101,101,116,99,91,112,109,116,107,113,104,108,99,95,99,106,111,106,95,110,105,116,102,104,106,109,103,100,93,97,100,95,101,98,97,110,113,99,99,119,106,101,113,97,105,107,106,103,94,114,101,103,99,81,110,109,91,105,99,109,103,112,99,74,100,91,103,103,106,95,73,103,94,99,115,107,99,98,105,103,100,100,110,102,88,107,97,101,104,93,96,102,102,100,110,100,104,102,94,108,105,94,98,105,109,107,104,101,96,99,94,106,103,95,89,101,89,101,93,78,105,111,111,102,110,106,103,99,107,100,108,104,113,95,101,114,111,108,110,117,99,103,102,103,102,100,99,101,99,106,96,106,107,103,101,101,97,110,104,94,108,111,117,102,104,100,103,100,104,100,95,99,103,104,113,103,101,101,90,102,78,90,98,103,93,110,108,100,88,109,95,101,95,112,94,99,105,102,97,113,105,95,103,110,111,97,117,106,90,97,101,88,111,107,110,108,114,106,93,94,103,97,106,96,108,93,102,104,97,94,95,95,111,98,96,107,106,114,116,103,105,100,109,92,94,101,99,105,99,99,98,110,103,99,97,92,92,97,94,94,100,107,113,103,120,97,104,110,113,99,93,106,107,105,105,109,106,114,104,107,118,97,110,93,105,111,95,105,100,109,102,104,99,95,99,94,99,76,98,99,113,117,105,94,91,102,105,108,91,104,106,102,97,96,95,78,97,92,97,100,108,111,101,79,104,119,116,104,96,105,103,110,112,106,104,107,100,103,114,104,95,92,79,100,94,103,88,104,105,101,102,110,100,103,111,100,97,97,99,101,98,104,107,99,106,98,106,114,105,120,102,98,94,109,106,98,105,94,98,96,100,97,107,104,109,113,97,94,90,91,97,94,100,99,96,79,103,97,111,110,90,103,97,100,109,99,104,104,116,100,102,122,105,89,111,104,87,108,102,99,100,99,100,95,96,102,99,83,96,96,104,105,88,102,103,122,99,104,103,94,104,100,96,103,102,92,107,96,98,92,105,107,104,101,94,89,103,105,101,123,94,108,111,93,107,96,105,73,105,95,104,95,111,108,107,95,97,97,99,103,98,92,104,96,97,102,108,103,99,104,109,140,94,106,111,108,112,102,103,108,90,98,101,91,117,96,104,94,110,104,105,87,98,104,82,108,95,106,97,94,109,99,109,116,102,105,99,97,110,104,77,103,101,100,93,103,105,98,105,109,107,100,98,106,99,103,104,86,110,106,99,112,93,108,91,106,102,109,95,103,104,102,101,107,111,95,103,99,97,99,128,90,116,90,97,121,103,93,112,93,103,106,101,107,132,102,95,100,105,94,109,103,95,99,102,95,105,107,96,100,104,105,97,99,101,112,90,98,112,98,70,109,101,104,84,103,94,106,108,101,101,99,95,91,104,102,104,116,111,104,103,91,112,103,106,105,100,93,93,107,100,111,101,98,112,103,107,96,88,109,98,100,99,100,117,103,103,97,102,96,101,109,118,105,72,108,116,107,112,102,105,91,107,113,112,99,94,97,104,105,93,104,95,103,94,117,110,102,101,92,103,104,93,103,104,98,105,109,91,87,108,103,105,103,99,98,112,92,100,102,108,108,96,99,96,105,113,105,97,96,104,99,93,102,96,107,107,112,103,104,107,98,97,106,99,103,94,96,104,96,106,95,101,110,117,105,101,95,105,103,117,100,111,103,97,101,95,112,98,104,95,117,116,109,105,104,72,102,105,105,104,108,96,102,99,108,104,98,113,98,110,98,104,102,105,100,99,94,100,102,94,97,104,97,106,96,110,109,106,95,106,103,96,109,103,91,102,100,111,107,109,109,102,99,100,97,109,102,97,99,95,99,96,108,99,106,103,102,108,105,99,109,116,104,100,74,103,102,102,103,104,110,104,109,110,108,93,105,93,103,101,107,101,107,105,108,103,86,102,105,87,116,109,87,109,113,105,104,103,96,122,102,96,99,100,105,88,109,104,101,98,105,107,97,118,100,110,104,109,106,109,96,103,99,98,104,99,109,96,100,88,92,97,82,106,108,109,107,113,107,108,101,87,106,105,109,109,90,99,94,98,94,100,103,113,102,95,96,108,101,106,106,103,102,100,100,100,102,107,92,111,92,105,109,110,95,93,107,105,97,114,115,107,68,73,99,107,99,99,104,107,108,101,111,105,101,106,107,101,96,104,107,109,80,109,113,109,102,102,94,112,104,102,101,105,109,109,100,101,99,106,96,114,113,109,109,109,95,96,107,97,108,106,99,103,101,100,102,99,115,103,95,70,95,96,110,107,99,97,97,114,103,99,102,89,92,119,93,100,103,100,113,96,104,98,94,109,105,119,105,116,119,110,104,99,101,100,104,100,105,113,101,100,103,98,94,100,104,75,117,100,98,103,98,102,107,98,94,111,100,101,103,106,92,93,111,96,98,103,103,97,101,106,97,113,89,106,115,121,105,98,94,95,127,106,109,95,112,95,95,109,107,87,97,110,95,113,101,106,107,97,96,101,112,102,90,104,108,89,100,96,95,109,98,114,101,116,90,108,102,109,117,107,98,91,108,93,111,102,92,98,116,97,102,91,90,121,104,93,102,117,106,105,99,94,102,100,104,105,106,107,116,107,98,107,109,100,103,105,91,96,113,112,95,89,110,110,106,101,104,94,92,108,103,111,105,91,119,109,88,96,103,83,106,96,104,100,105,109,106,96,117,76,105,116,105,97,102,88,106,110,99,92,96,111,99,103,98,106,91,108,113,100,105,93,108,105,92,111,106,109,93,106,95,93,105,108,104,94,104,106,102,101,98,96,101,98,109,108,106,100,92,98,84,89,104,86,105,104,85,103,106,100,104,101,100,96,108,108,101,106,109,116,96,109,99,101,105,100,105,101,97,98,103,101,110,103,113,94,107,106,103,98,104,111,90,99,101,99,107,106,98,95,105,105,111,100,108,109,93,92,102,113,95,110,98,110,112,96,96,106,75,116,105,107,102,98,101,105,102,103,100,116,102,91,95,97,92,107,96,99,102,108,99,108,112,104,91,112,99,105,106,98,104,119,96,103,102,105,105,101,100,95,95,92,102,93,110,99,105,97,101,111,118,106,96,98,101,94,101,94,104,94,96,106,103,102,99,102,122,100,106,99,104,119,109,101,92,102,91,98,92,98,97,116,105,101,95,105,99,113,108,99,99,99,91,105,98,110,109,100,107,103,97,99,84,97,106,93,98,101,117,92,99,98,104,111,100,107,102,112,110,95,102,107,111,111,113,95,105,95,95,101,81,109,101,105,94,121,117,98,99,113,94,101,100,108,95,93,68,105,104,107,94,111,105,99,111,103,97,112,98,120,106,109,94,101,105,95,102,83,92,91,99,99,103,92,100,91,97,97,103,93,102,89,112,107,104,107,97,100,106,111,104,100,106,100,114,107,107,87,100,109,103,92,108,91,99,94,103,109,104,102,96,85,95,101,95,115,91,117,110,111,99,94,105,102,104,107,106,113,105,106,108,90,105,106,106,108,96,96,105,93,94,100,98,112,104,101,100,102,98,110,116,106,102,102,102,100,91,94,105,93,97,109,98,94,106,93,98,98,100,93,95,103,90,100,97,100,100,96,98,113,94,84,116,102,97,99,132,110,102,99,97,98,100,107,100,100,96,95,98,95,102,104,118,91,83,106,96,91,101,106,93,103,98,104,98,105,100,98,109,102,91,107,116,102,102,107,112,112,112,94,95,96,103,97,91,95,94,78,98,95,88,111,94,91,106,96,103,95,103,90,101,102,105,96,110,84,109,92,107,102,99,97,88,92,110,120,91,92,103,102,87,101,87,91,93,111,96,81,87,89,109, +446.22189,102,102,103,110,99,100,107,98,109,114,94,98,96,113,111,102,97,109,104,113,105,114,100,105,96,97,110,110,98,102,106,98,103,115,104,103,112,93,101,98,98,95,94,95,113,105,99,117,96,94,93,106,102,104,91,109,103,88,108,93,103,106,113,103,92,94,98,98,103,102,107,118,97,100,99,85,67,99,99,99,103,102,103,111,103,104,117,94,106,100,114,101,109,102,105,103,99,92,103,96,88,94,102,95,92,109,97,117,116,98,96,91,104,120,107,100,103,104,94,109,99,106,110,96,104,110,104,100,106,107,110,107,99,99,106,105,101,103,100,102,85,76,104,99,104,99,112,100,105,95,100,101,102,104,92,95,99,103,93,108,110,103,94,110,97,109,109,93,96,98,124,96,101,101,109,102,105,87,115,107,99,106,101,96,111,102,103,101,109,93,92,108,108,91,105,108,93,95,97,105,105,91,101,107,106,96,77,118,109,116,98,108,104,108,98,109,93,105,97,97,109,108,76,100,101,116,103,97,96,100,102,105,114,111,106,101,101,114,106,104,107,108,97,104,103,96,105,102,110,98,101,98,85,101,93,101,101,110,103,96,101,98,88,85,95,104,116,99,90,95,102,103,99,110,109,100,95,101,114,88,109,104,98,105,105,97,96,100,106,112,101,102,107,108,111,114,104,113,105,100,99,98,91,120,101,115,103,118,108,103,103,113,110,99,109,95,103,96,102,85,112,103,94,98,105,112,96,96,111,89,117,93,107,105,79,104,101,100,92,103,108,100,100,116,83,99,99,116,110,104,94,106,97,107,107,98,113,110,86,114,95,101,106,95,87,104,109,113,100,117,101,105,109,107,116,106,100,97,111,98,110,96,106,94,95,99,98,115,97,108,99,97,95,103,95,113,97,100,104,111,100,92,95,92,112,100,76,94,101,102,98,89,122,118,100,100,100,108,107,99,102,96,99,105,97,71,91,87,100,113,100,106,101,97,87,99,94,108,97,115,113,103,102,108,97,107,70,77,107,111,104,98,102,108,109,109,108,113,100,99,95,101,90,109,101,116,107,95,102,111,115,102,102,105,102,98,102,103,103,108,101,113,103,111,104,105,107,113,101,80,117,104,100,96,96,100,108,98,97,103,106,86,112,104,105,91,92,105,104,114,104,108,106,114,104,102,98,101,104,100,117,98,101,95,102,109,98,106,100,109,95,112,106,99,103,109,117,91,101,104,100,106,109,107,99,120,119,106,109,101,110,105,107,101,109,78,101,106,100,100,109,95,109,112,102,92,104,110,101,103,99,104,107,89,102,109,94,109,99,104,100,90,100,97,108,102,105,108,95,101,112,108,104,102,117,114,115,114,104,110,105,105,111,93,100,111,83,88,105,117,96,85,113,96,96,103,97,109,106,121,98,105,104,104,105,86,106,111,107,112,110,99,110,102,110,112,106,98,102,104,99,107,105,101,91,111,129,95,109,104,102,100,105,104,104,111,98,101,108,105,105,103,108,100,90,97,100,101,105,101,103,114,86,110,95,104,120,95,104,91,105,101,96,108,98,101,91,117,105,101,103,98,99,114,104,103,100,86,101,100,85,94,100,88,101,122,110,103,111,91,99,106,110,103,100,114,114,92,105,102,111,100,102,105,118,93,113,76,101,122,111,100,110,105,104,103,99,93,116,112,118,100,112,103,106,93,107,104,104,108,114,106,107,98,109,107,105,98,113,104,100,108,109,108,102,98,110,102,109,105,111,110,115,107,100,110,91,100,100,104,100,102,117,101,104,122,108,107,104,108,98,101,116,128,106,99,100,103,94,120,103,107,98,103,116,116,102,112,100,121,110,102,113,102,113,94,110,106,109,107,120,110,103,99,103,113,109,97,105,112,108,96,106,112,102,110,116,93,109,125,97,100,107,105,96,98,108,100,91,107,106,92,102,116,107,103,103,104,108,107,108,114,112,99,106,96,95,106,100,112,107,116,99,96,106,103,107,113,95,100,108,106,106,94,97,108,92,114,98,110,104,112,110,107,100,106,104,112,101,114,106,103,104,113,92,104,99,87,109,110,102,126,105,116,103,109,100,116,68,105,105,104,111,104,103,106,103,104,112,104,106,104,106,121,99,100,109,99,106,107,104,96,118,102,107,105,111,89,108,104,103,99,142,101,98,102,97,97,103,111,113,105,104,105,117,101,102,106,92,100,107,97,103,98,109,113,103,97,96,98,97,113,90,108,97,102,100,103,92,100,94,110,110,100,98,96,102,106,104,100,102,92,97,96,102,107,96,103,100,108,98,104,100,100,85,111,101,105,98,104,98,97,105,113,107,99,99,101,108,98,95,103,106,96,102,98,107,105,97,89,117,114,104,109,88,111,108,91,113,112,109,101,109,108,108,94,102,105,95,98,104,99,101,107,97,111,107,101,112,105,97,103,93,114,94,95,108,112,91,102,111,92,102,114,108,115,95,91,113,95,99,93,105,92,100,102,92,109,97,117,100,96,108,104,112,107,99,95,90,112,95,121,105,94,119,101,111,107,96,103,98,104,111,113,98,113,101,114,102,96,106,118,101,109,115,99,105,96,101,112,101,97,94,111,83,109,106,104,99,102,134,90,93,98,76,98,110,100,98,111,94,108,100,96,105,113,109,89,108,105,102,90,104,113,99,88,105,106,104,103,107,106,99,104,101,100,112,101,98,103,106,102,102,96,103,99,107,104,111,114,103,108,112,100,96,104,113,115,92,106,109,105,99,102,98,107,104,98,108,102,104,100,101,99,110,97,95,96,88,99,105,90,94,105,120,109,115,102,110,108,108,100,107,102,109,98,112,103,100,96,110,104,119,96,115,109,108,114,108,102,94,93,89,100,101,109,100,107,111,106,112,109,107,98,108,103,101,105,99,107,104,100,111,105,98,106,108,102,99,110,100,107,104,102,113,100,121,95,105,109,102,101,106,121,106,104,98,112,100,101,108,103,104,101,97,113,107,119,108,103,116,102,102,98,101,111,119,102,98,98,106,112,96,97,108,107,103,103,102,110,95,101,104,92,100,102,92,98,101,104,104,100,115,102,113,95,96,100,105,93,105,113,103,109,104,95,98,96,103,105,102,107,99,86,93,95,119,104,100,113,107,102,96,112,98,100,89,97,111,89,113,98,109,99,106,102,105,99,96,113,108,94,92,109,106,128,108,108,112,105,104,105,104,109,107,100,97,104,111,108,102,104,100,86,97,106,108,95,113,101,100,105,107,102,99,103,104,108,93,104,100,103,108,99,92,103,112,98,102,111,116,82,109,118,100,112,116,110,104,103,101,121,105,119,90,110,101,98,107,100,90,99,103,100,93,103,93,100,112,108,98,107,112,108,102,84,98,89,91,99,101,100,105,105,114,96,105,116,114,106,101,114,97,93,96,89,111,81,92,103,102,84,104,104,87,101,105,112,99,99,109,98,100,110,92,99,117,110,110,108,95,100,101,104,102,91,103,103,96,93,104,115,110,102,108,111,116,93,103,90,102,107,105,103,116,121,95,102,110,117,95,108,99,102,119,102,102,97,105,110,105,100,102,107,93,95,100,94,108,102,95,90,103,112,106,108,110,96,103,99,87,109,108,103,104,92,117,103,99,105,104,106,101,106,80,103,112,102,101,103,98,94,99,105,116,95,101,99,93,112,96,99,98,101,102,105,96,98,92,88,102,97,113,104,119,101,105,110,99,97,97,99,93,97,102,101,110,104,105,104,112,91,106,94,113,83,102,97,106,82,102,103,101,103,100,105,111,99,80,105,97,105,90,107,90,91,95,90,95,106,104,102,97,102,103,109,107,100,102,102,102,100,93,111,100,111,109,103,134,108,96,106,107,98,99,113,104,113,97,96,95,108,102,112,98,98,108,86,100,101,101,106,110,94,116,96,100,94,108,100,105,98,109,118,103,108,105,132,114,97,99,104,96,105,89,104,104,110,91,105,82,100,101,100,100,95,104,91,95,106,104,112,102,103,113,93,98,96,100,91,112,90,99,113,109,109,112,100,112,100,106,93,88,113,107,100,94,103,104,98,102,104,99,111,101,106,92,113,109,102,95,104,105,108,102,110,97,98,98,100,103,107,104,101,84,107,111,98,97,96,111,105,105,81,98,94,103,104,112,101,108,105,97,87,104,105,105,101,98,106,102,105,104,99,110,107,101,115,101,99,111,93,107,111,106,101,99,84,95,104,96,99,114,106,101,111,105,116,105,106,99,99,116,100,100,88,104,92,99,92,100,100,113,106,92,88,98,90,93,68,90,95,111,107,98,113,108,92,102,102,98,93,104,91,95,108,105,108,100,104,112,102,95,96,99,101,97,103,118,102,94,109,100,108,95,102,109,106,102,97,97,108,97,95,102,94,101,107,99,109,94,104,102,104,102,79,101,98,104,105,103,113,112,96,82,93,91,108,113,105,116,103,84,102,105,97,103,95,102,111,107,87,102,102,109,103,99,100,100,97,103,99,103,94,106,113,105,108,103,89,99,103,91,99,102,105,106,100,99,107,122,108,117,95,101,95,113,110,103,96,94,96,116,90,101,109,108,98,88,103,64,96,99,108,97,104,102,97,84,115,108,120,109,100,101,91,105,90,107,107,102,92,80,90,97,103,111,109,88,87,97,87,104,110,102,103,100,98,96,99,99,106,103,104,98,94,107,118,104,111,115,100,95,101,102,95,81,99,98,103,102,101,90,96,92,97,115,101,103,95,81,109,83,99,104,98,103,109,106,98,104,110,85,102,104,105,103,105,99,101,103,107,95,63,95,102,96,97,100,102,107,101,101,110,83,98,100,101,105,73,98,93,98,113,94,105,94,87,112,106,106,107,116,94,86,99,101,103,98,120,101,96,85,109,108,95,103,97,88,85, +446.36227,114,109,104,97,96,112,104,107,96,121,107,90,104,112,106,103,101,112,89,107,106,110,90,104,104,112,107,98,106,80,98,98,110,103,113,106,94,114,98,99,100,100,118,117,112,107,95,108,91,104,92,91,105,108,118,99,101,69,106,103,106,99,99,111,114,100,99,96,107,93,95,106,104,106,97,80,92,99,108,115,96,109,113,98,101,99,101,107,96,114,112,108,101,97,94,101,106,114,102,106,95,102,112,92,101,107,102,114,104,101,86,106,113,93,101,98,109,81,103,99,94,105,105,105,87,113,116,111,110,97,86,106,103,103,110,101,95,113,100,106,102,99,103,100,104,102,108,110,98,94,102,89,124,99,92,110,101,120,99,103,97,97,101,112,105,111,103,92,106,106,106,108,97,102,111,118,103,104,76,108,105,105,111,97,105,100,103,98,107,100,103,102,93,106,96,104,86,107,106,99,93,94,110,106,88,112,100,121,102,105,105,100,143,116,100,92,106,98,112,92,96,112,108,104,112,110,107,103,102,104,99,121,115,105,116,107,108,110,90,99,101,91,97,103,100,110,104,104,104,112,106,98,113,98,97,99,102,94,99,113,100,104,97,106,116,103,112,107,92,104,91,103,106,108,113,100,116,106,117,108,101,103,95,115,91,107,105,108,93,86,100,106,106,112,102,120,104,109,118,95,110,97,109,107,105,101,111,114,108,104,105,108,105,103,104,99,98,121,115,100,102,95,109,107,103,95,98,103,105,101,106,112,96,113,104,112,95,97,98,112,98,105,100,91,94,111,109,111,109,108,104,104,105,114,116,98,99,124,99,118,93,95,109,103,100,105,103,117,104,105,123,103,105,111,100,128,105,110,99,118,108,109,95,110,109,107,99,78,108,96,112,92,92,104,108,98,98,84,95,107,109,101,116,106,107,109,105,103,96,89,85,98,103,94,102,102,102,99,106,98,99,125,100,103,109,98,95,100,99,118,114,99,110,100,103,100,101,94,98,99,99,103,117,107,99,106,98,102,95,113,108,102,110,105,110,104,101,112,113,114,95,101,101,108,97,100,103,96,96,101,93,102,101,107,90,105,111,133,109,101,92,108,111,102,106,101,103,104,94,113,98,100,102,108,101,109,100,103,107,100,98,98,118,101,105,102,107,105,104,106,107,102,102,107,120,110,85,107,105,94,105,107,114,109,108,108,107,100,115,107,95,110,114,104,100,99,103,107,121,125,108,102,102,116,103,110,107,116,103,103,106,106,117,109,109,96,105,103,104,106,112,106,91,105,109,99,106,110,95,97,99,100,106,97,108,136,107,95,99,99,108,107,109,95,95,104,100,107,106,97,76,99,121,102,118,105,110,111,106,113,107,105,114,102,106,86,105,103,95,102,96,109,101,112,104,98,108,103,95,124,104,98,95,94,98,105,87,105,115,99,103,105,97,99,105,115,68,103,94,94,107,104,104,102,110,107,105,103,107,106,92,118,108,100,105,104,94,111,108,117,102,111,105,104,99,76,135,100,105,96,102,112,108,107,110,99,98,99,105,75,93,109,107,108,98,105,99,98,98,105,108,115,92,104,96,101,98,113,105,88,107,91,112,101,101,106,111,119,104,101,93,99,104,103,101,101,102,116,94,112,105,100,104,109,103,103,108,100,106,102,100,124,96,98,94,111,102,95,104,105,108,104,89,111,95,113,109,114,103,105,109,113,102,93,105,101,102,101,99,103,102,99,104,96,82,88,113,99,101,110,106,94,116,109,82,98,110,97,108,98,112,118,103,104,117,105,99,102,110,106,98,113,110,108,107,115,110,104,108,92,97,96,109,102,101,107,109,99,100,104,110,112,97,97,103,113,115,111,103,99,104,99,100,107,113,104,112,109,117,88,112,100,125,103,102,111,99,107,101,115,107,110,110,102,98,95,103,101,111,95,98,99,106,112,104,76,99,103,89,103,111,102,93,116,98,105,97,109,113,124,104,96,100,106,106,102,104,100,96,103,112,112,111,111,99,100,94,89,104,109,110,115,104,100,118,107,96,101,103,108,109,99,113,105,103,100,96,109,109,109,107,112,95,104,108,97,103,108,99,104,97,114,103,103,101,99,110,98,95,111,102,103,109,114,100,101,117,100,100,105,106,101,104,97,105,107,96,102,97,101,104,100,113,113,115,112,102,89,95,98,115,108,93,110,109,111,100,97,117,112,96,106,106,96,95,90,90,93,92,109,84,102,92,107,112,100,101,92,103,94,104,92,101,70,108,104,103,112,101,100,112,104,93,105,108,104,112,104,101,106,98,106,100,107,113,101,115,104,105,105,105,117,114,94,107,104,110,111,102,115,103,93,107,104,117,97,88,95,104,101,101,109,110,109,97,103,91,102,100,104,105,112,100,114,99,105,96,101,102,118,111,127,105,114,94,103,103,89,99,94,103,103,103,103,114,91,96,107,103,108,106,95,97,113,102,127,95,113,112,109,98,118,108,87,108,94,100,100,104,117,100,102,117,99,104,107,103,105,111,108,100,119,104,114,103,119,110,92,92,114,105,94,111,94,133,114,107,108,107,112,101,113,90,94,101,101,109,100,91,102,95,90,87,104,94,99,109,120,104,121,109,104,100,106,110,96,96,111,101,108,95,101,95,96,101,101,88,92,96,105,111,103,107,97,102,101,101,100,110,99,110,107,96,109,109,109,121,103,98,104,93,103,95,101,104,116,104,94,105,103,124,103,116,94,114,108,93,105,97,108,109,103,95,105,104,100,104,106,104,84,107,119,95,94,105,103,103,108,102,98,94,116,102,104,123,99,114,96,111,110,99,108,107,110,95,111,122,96,110,99,110,103,108,114,101,107,110,117,101,106,97,99,120,103,107,97,101,104,110,106,108,98,106,103,79,113,106,106,100,101,115,96,107,107,102,108,104,109,96,103,106,112,102,96,95,106,98,98,94,99,99,104,96,80,101,91,106,106,111,97,101,98,111,103,104,109,95,101,101,98,117,89,90,103,109,105,105,99,110,109,103,113,98,102,96,95,103,100,73,101,94,103,96,95,106,101,99,113,109,104,96,102,98,97,100,92,110,106,96,109,110,94,105,104,99,97,102,107,98,112,109,118,104,108,109,111,99,99,102,101,98,92,102,107,98,101,106,97,106,99,103,92,100,111,105,82,106,94,109,104,99,102,106,107,108,95,108,105,102,107,90,98,103,100,103,103,98,105,103,107,102,101,95,95,100,87,109,94,100,103,99,102,96,115,114,95,106,115,105,87,98,99,97,101,110,100,93,100,103,98,101,95,117,107,96,109,108,93,93,105,93,105,100,109,102,102,109,104,106,89,95,113,105,99,106,100,96,103,100,105,97,127,118,108,118,103,91,98,96,103,100,95,110,99,98,121,101,92,109,98,90,106,92,106,107,103,98,101,103,101,103,99,98,109,110,113,91,110,97,110,106,101,97,100,90,111,111,109,97,96,101,112,107,95,83,105,108,100,103,98,106,103,107,110,108,104,102,111,96,110,114,80,101,106,103,104,111,98,101,105,106,104,102,91,107,102,99,117,110,90,104,90,110,105,102,107,101,104,98,106,85,96,92,98,100,102,106,101,99,107,102,98,113,105,105,93,105,113,108,106,100,111,104,98,99,100,106,110,108,110,95,98,108,106,96,103,101,103,97,122,94,107,112,98,92,113,110,104,106,94,111,106,101,113,95,111,107,93,111,92,94,102,90,101,104,107,106,101,105,105,99,104,107,107,125,91,100,104,105,96,112,100,106,106,91,91,116,101,109,103,96,91,107,111,100,93,95,99,95,101,116,109,89,102,104,107,107,103,109,104,91,113,113,106,96,95,101,100,101,98,86,99,106,108,110,103,98,119,109,107,107,102,95,99,113,105,110,102,100,97,91,99,98,101,97,95,97,92,107,96,106,111,102,102,106,110,115,92,110,109,107,102,99,123,103,106,109,117,85,96,95,102,113,107,106,96,103,90,87,112,102,98,104,96,95,98,106,100,102,110,113,107,87,96,94,109,83,102,99,87,102,99,113,105,106,105,95,92,102,105,99,106,101,110,103,92,101,107,90,116,109,110,100,119,106,108,98,99,97,107,93,96,106,99,101,111,110,97,108,111,101,95,98,97,105,106,108,107,104,77,97,113,95,90,99,107,102,99,102,104,109,94,111,92,94,92,95,97,106,96,104,121,102,104,109,94,108,109,97,87,112,105,103,97,104,102,91,111,99,110,101,99,113,105,68,95,105,92,114,106,102,91,106,110,85,109,102,99,97,108,96,103,107,108,92,109,96,106,95,99,103,109,113,121,109,94,108,104,97,105,105,99,113,103,94,94,105,96,104,100,100,100,102,109,99,105,96,102,95,105,92,97,103,94,108,93,114,88,102,84,98,96,83,99,101,100,102,105,112,110,113,108,104,98,110,100,94,102,107,105,96,102,113,91,113,108,101,108,98,93,101,98,119,91,115,109,99,96,101,105,88,98,109,105,117,103,92,100,103,79,97,116,101,112,84,104,93,112,107,105,115,107,117,101,93,94,114,94,104,102,115,113,103,101,103,107,103,79,104,130,102,101,93,113,110,108,66,104,93,106,94,101,91,111,97,104,91,107,104,111,98,99,119,106,100,84,108,104,111,109,100,100,111,96,108,103,107,100,109,107,101,103,109,97,108,99,103,110,101,99,87,107,106,95,91,98,95,102,97,105,88,111,103,90,112,97,104,98,107,102,96,111,105,103,103,105,95,109,109,93,104,126,98,106,98,91,100,109,93,102,98,101,111,103,94,98,97,96,102,105,106,104,87,104,98,99,120,106,94,102,97,102,90,111,87,98,90,100,120,105,107,101,97,86,99,95,93,111,90,108,107,107,98,112,110,100,109,106,106,106, +446.50262,118,107,101,96,101,111,96,98,81,111,95,94,104,98,107,102,106,98,98,95,99,110,88,80,103,102,103,102,108,103,102,106,95,106,108,104,91,104,107,99,100,94,99,98,93,94,102,109,103,99,91,128,103,92,98,96,100,109,108,97,112,106,84,106,95,117,93,108,102,100,104,111,97,101,99,109,87,104,104,91,112,120,104,109,94,94,107,99,92,104,91,111,92,91,96,88,92,112,96,95,100,95,98,91,100,102,110,94,108,98,102,102,108,106,87,104,101,101,100,104,99,108,107,90,108,98,100,110,107,106,76,110,103,96,95,102,105,93,99,103,100,116,100,100,70,114,100,95,82,99,103,97,98,93,113,94,99,85,112,96,92,104,105,102,100,93,121,94,109,99,108,89,101,106,110,108,102,95,105,104,107,112,95,102,95,98,94,102,105,94,104,102,112,87,93,102,106,102,100,106,105,92,85,101,103,100,101,99,110,103,94,100,98,105,97,101,83,80,103,112,110,109,97,97,100,97,99,103,101,103,106,106,111,108,108,114,102,109,76,111,99,126,103,108,100,95,98,97,110,114,109,92,92,96,92,101,100,108,94,104,104,106,113,96,87,105,109,113,102,103,113,96,104,96,100,106,94,109,94,91,103,107,104,104,93,94,98,85,98,102,98,92,109,104,110,116,112,105,108,111,94,105,106,105,91,119,107,102,102,114,99,109,95,98,93,102,106,109,112,105,106,95,96,113,127,100,99,104,99,119,115,91,102,111,99,110,99,103,92,100,102,126,109,84,92,112,98,105,116,106,105,102,113,100,112,91,108,107,95,104,94,108,95,104,96,100,91,112,108,93,98,97,104,101,86,103,99,110,109,111,110,111,102,98,98,104,98,109,105,100,118,109,91,97,103,109,108,92,104,103,96,100,94,87,108,102,98,112,107,97,109,91,95,101,98,105,95,104,100,101,97,105,96,100,93,104,95,105,97,102,98,78,105,92,105,99,97,98,92,102,92,101,93,104,81,67,99,88,105,102,95,95,100,105,101,99,94,109,103,104,100,79,103,103,108,101,101,97,95,100,103,103,101,100,105,107,111,100,91,108,94,99,86,101,106,93,106,93,99,123,102,101,105,99,96,100,99,106,100,98,106,100,114,98,95,99,110,97,105,97,107,110,95,109,97,105,107,98,107,89,100,116,93,109,119,103,100,102,103,78,102,109,104,101,98,95,113,97,111,99,113,109,116,99,112,102,101,90,106,106,101,99,108,99,97,102,102,100,90,99,101,95,107,107,102,105,101,104,96,105,104,103,90,98,101,105,91,100,102,109,110,96,97,100,112,105,121,103,104,102,113,108,102,107,108,102,109,102,94,102,104,109,105,92,97,114,86,114,105,100,110,101,104,109,97,86,96,102,104,105,110,109,100,101,122,102,97,100,120,121,100,102,104,107,91,101,93,101,106,96,101,111,101,96,107,103,94,94,107,100,99,100,96,102,105,102,107,96,98,109,94,98,92,117,92,109,108,102,101,108,110,103,112,105,87,114,107,113,101,96,99,109,104,111,115,97,93,102,84,100,108,101,109,99,98,101,99,114,70,70,101,99,96,100,107,92,115,94,101,103,111,106,96,114,101,100,110,102,98,104,94,102,95,112,107,100,112,96,102,102,111,102,107,99,98,96,104,100,126,110,109,92,100,95,102,94,101,111,100,108,104,97,103,96,104,92,106,98,106,108,102,106,93,110,97,106,101,105,96,116,107,96,109,103,100,101,91,95,89,97,103,103,108,107,98,116,106,90,99,101,103,90,105,103,98,98,104,101,98,103,103,94,96,111,103,104,86,97,105,104,113,98,106,100,113,91,97,105,99,94,101,112,101,103,106,97,103,97,77,105,101,105,106,99,99,101,103,105,97,105,110,101,106,105,105,110,105,104,96,99,98,93,105,116,92,105,99,106,94,79,105,103,97,98,96,101,91,92,113,91,98,111,84,107,97,84,110,88,95,105,103,103,91,103,104,101,113,108,102,101,104,106,113,105,103,100,106,110,93,94,117,106,112,103,107,103,104,111,91,99,103,104,98,89,100,90,107,101,92,108,104,101,104,98,95,98,95,88,100,106,101,95,104,96,91,96,103,107,98,96,90,102,107,103,104,103,111,97,94,100,102,101,99,107,95,102,107,94,92,104,97,99,110,98,112,94,101,105,95,105,90,89,96,95,98,104,116,99,89,110,89,96,98,101,104,98,97,116,106,112,113,102,95,98,113,92,110,98,101,95,111,104,109,106,99,87,100,110,96,80,100,102,95,98,103,97,107,95,63,105,90,109,108,103,110,97,100,96,106,102,104,107,98,96,105,87,101,99,98,102,105,90,92,97,103,113,94,104,110,90,93,99,100,105,90,94,96,102,98,87,93,91,103,99,96,109,107,107,103,94,98,110,99,100,94,98,90,106,97,108,117,102,104,110,117,110,111,103,119,116,101,111,104,96,102,108,136,108,99,111,96,97,108,98,107,98,84,102,116,112,102,118,102,104,113,99,104,111,106,107,96,102,112,108,100,99,105,107,97,106,102,120,118,99,84,107,109,105,98,95,107,108,96,101,91,96,114,101,108,99,113,109,103,108,108,114,110,106,112,101,109,97,107,118,91,107,109,99,106,116,100,109,99,106,96,118,106,113,107,109,115,103,97,103,120,102,106,105,100,110,101,97,121,94,109,105,98,100,87,99,110,109,124,94,100,112,102,102,106,107,88,80,102,103,109,98,103,113,99,97,111,108,113,96,104,103,106,99,110,110,95,100,99,115,98,105,102,96,95,104,101,112,107,99,98,104,113,103,88,103,106,101,93,103,116,108,105,98,89,107,116,113,99,103,111,114,102,110,99,103,101,105,106,109,111,103,105,97,118,98,111,108,113,99,104,117,112,110,112,105,100,109,107,117,105,93,110,90,94,109,94,105,91,113,114,94,85,106,127,112,118,102,102,108,108,120,106,107,100,111,105,109,109,107,114,114,92,94,110,118,117,102,101,100,111,108,99,108,99,99,107,107,101,115,106,90,111,97,106,99,106,114,105,116,110,103,105,108,104,106,110,108,108,99,102,105,104,110,109,114,97,106,108,106,108,94,101,99,104,116,102,115,104,102,112,99,98,110,94,107,107,97,96,95,97,106,99,107,108,107,111,109,110,102,99,111,106,101,93,109,99,109,99,103,99,102,98,109,96,111,100,105,100,107,103,104,104,106,107,106,99,100,111,107,110,96,123,101,110,113,101,99,110,116,97,117,62,101,102,118,103,101,112,98,87,108,101,103,108,102,105,118,106,107,103,112,109,105,103,99,91,105,86,90,111,107,117,100,73,106,98,112,105,120,101,113,103,77,117,98,91,97,102,105,102,107,103,101,112,94,98,86,111,102,92,95,93,95,104,95,105,113,99,98,105,107,110,106,101,113,109,106,113,101,102,98,101,96,116,90,97,115,104,103,97,103,94,97,109,102,109,100,102,105,95,102,127,110,106,102,113,107,103,112,107,109,107,95,109,108,105,116,100,103,121,112,101,107,100,99,116,106,100,113,101,101,112,113,105,93,103,104,106,107,110,131,97,104,80,101,105,91,93,102,89,128,110,112,101,105,101,105,105,98,114,99,106,84,109,112,95,98,121,109,109,105,99,109,108,111,105,107,104,110,99,97,100,103,107,112,84,96,94,113,99,102,87,104,97,112,106,99,100,101,109,96,98,108,110,99,104,97,103,101,115,102,106,95,102,115,95,102,97,104,105,113,106,95,112,66,95,108,107,101,100,117,107,111,106,100,109,110,106,112,107,87,107,106,110,106,103,102,102,103,130,107,99,108,110,96,85,111,104,99,106,106,106,99,100,95,99,107,107,88,104,103,113,102,87,102,105,102,105,101,89,123,106,98,103,117,103,92,101,102,106,95,113,99,95,104,109,101,104,107,97,105,112,106,101,94,98,104,102,104,105,99,102,112,105,108,98,91,97,101,122,100,92,108,101,56,111,92,98,105,100,112,100,97,103,112,103,107,96,107,96,104,102,101,111,97,91,90,110,105,103,106,110,95,100,95,104,116,98,106,109,110,113,111,97,105,103,103,102,105,106,110,109,112,97,100,98,113,95,103,109,99,107,98,106,111,114,103,98,106,111,109,99,113,107,107,112,112,116,105,104,105,103,95,90,106,108,92,91,111,100,105,108,91,98,105,102,83,116,105,97,116,102,99,107,103,98,96,104,106,106,86,100,103,119,110,115,100,119,113,95,114,118,113,98,107,93,98,85,106,87,108,104,100,98,109,104,109,114,110,108,103,101,121,98,100,104,96,66,101,108,105,93,101,108,99,96,113,108,104,105,99,117,109,110,91,95,100,105,114,76,94,109,109,125,112,107,84,101,129,102,121,109,110,92,110,104,108,118,86,98,87,87,103,101,96,99,118,114,91,125,95,104,98,100,96,106,97,98,102,108,107,107,99,112,105,94,104,102,104,101,106,107,106,98,102,93,105,76,109,105,105,95,109,105,110,96,105,94,99,79,106,106,109,112,99,101,102,107,102,106,113,107,107,97,105,103,89,114,101,111,109,97,109,106,113,112,108,117,104,97,91,97,104,105,108,99,109,104,102,103,111,95,122,99,108,101,96,128,98,101,111,109,105,105,99,98,98,104,97,116,101,117,97,105,101,102,111,111,96,105,112,96,92,104,97,105,120,96,106,92,108,105,102,100,103,97,103,106,111,102,98,96,114,113,100,98,113,123,103,112,105,91,102,104,100,108,99,99,97,108,106,105,100,113,89,112,106,113,95,115,101,103,110,104,100,100,107,94,93,99,113,100,99,95,95,105,98,99,101,99,99,102,117,76,98,91,115,83,108,98,106,98,120,97,100, +446.64301,96,104,119,104,98,110,93,104,90,111,108,86,95,103,95,104,92,97,96,108,87,114,94,105,111,95,109,102,98,94,102,98,105,99,104,106,101,74,106,97,97,106,99,108,110,96,107,102,101,114,106,112,112,99,106,103,97,108,102,93,114,96,95,104,99,102,109,91,96,88,100,99,94,114,99,102,94,99,113,108,109,101,101,103,105,99,104,100,91,102,102,106,91,107,90,112,94,114,106,103,112,95,113,102,96,95,99,102,97,101,94,98,104,96,112,110,100,104,104,103,93,105,95,100,103,117,95,95,105,105,105,95,101,99,113,104,96,111,94,97,122,88,99,91,97,106,111,93,102,111,113,103,95,101,98,102,99,94,109,100,102,117,99,113,112,100,108,93,93,101,110,106,116,110,95,91,105,94,106,113,112,100,104,104,115,93,100,102,108,109,116,111,117,109,98,111,118,99,115,103,91,101,95,103,94,113,107,103,103,100,93,103,96,106,118,98,97,106,94,103,101,98,107,90,95,105,103,105,101,106,68,109,133,101,103,103,109,101,110,89,100,103,111,112,113,109,113,105,109,99,113,95,108,102,101,105,102,110,108,101,105,99,111,98,102,113,102,104,105,106,105,107,98,99,104,99,101,111,104,105,104,100,95,100,105,103,92,102,93,110,109,111,121,115,102,99,89,100,106,101,98,87,108,112,96,109,97,106,109,95,95,102,107,99,114,88,105,116,119,106,94,119,108,101,104,104,117,100,100,100,111,106,109,101,98,109,108,95,106,99,114,109,102,104,98,120,112,71,116,99,110,101,113,114,105,99,91,103,96,106,96,99,108,103,113,97,88,112,105,96,109,117,109,108,117,105,103,114,109,109,109,111,108,98,96,91,100,111,102,101,109,94,100,106,99,87,94,97,100,108,109,113,99,103,103,105,105,116,98,115,92,101,104,111,102,103,103,112,114,107,101,107,95,108,100,94,109,98,100,106,110,112,101,91,109,95,111,102,94,99,108,96,104,109,101,95,95,102,100,129,102,109,114,103,103,106,117,111,115,106,108,89,107,114,112,110,104,110,98,92,119,102,99,108,106,107,101,104,116,101,103,106,117,109,98,107,103,74,103,111,114,106,113,106,105,97,110,116,96,101,110,94,106,108,108,111,88,116,118,113,121,103,95,105,107,101,87,100,100,115,108,103,105,103,102,98,103,105,92,100,95,103,111,90,87,101,108,97,104,116,102,111,98,102,92,94,100,109,96,103,109,103,112,107,99,103,100,111,101,115,99,93,72,108,113,89,107,102,80,104,107,98,98,96,106,114,112,95,99,112,111,91,104,101,108,106,114,85,98,100,106,99,100,119,106,115,115,108,98,109,116,100,103,102,97,98,93,104,104,114,103,91,105,110,102,118,105,107,107,94,95,111,99,95,106,121,112,109,104,89,103,101,100,107,92,105,110,97,90,90,105,111,102,94,99,97,109,100,112,98,98,94,93,107,97,103,101,103,115,116,110,112,115,102,103,110,112,89,104,99,102,110,109,100,101,115,99,92,116,109,111,100,108,94,101,97,97,121,118,101,107,137,118,98,103,103,99,105,105,95,101,100,95,101,103,102,101,103,110,100,100,96,111,95,96,109,102,103,86,101,108,101,94,104,108,100,107,103,95,114,102,121,94,103,102,105,102,103,135,101,106,91,101,100,64,104,103,105,96,113,104,96,105,101,108,104,102,96,107,96,99,100,97,103,103,115,95,100,105,114,118,94,106,104,102,99,93,109,90,106,114,109,115,110,104,105,103,106,101,101,105,104,97,102,99,108,114,70,109,98,100,111,101,101,109,112,109,97,106,107,103,111,101,105,89,100,109,100,107,111,97,107,110,109,100,94,106,104,104,122,98,110,108,113,97,108,104,120,92,101,95,101,114,91,95,100,112,108,101,97,94,108,109,101,111,98,104,100,100,97,112,107,95,97,90,112,100,104,108,98,95,102,101,103,97,94,107,105,106,104,105,110,97,100,100,102,109,101,99,112,102,104,102,110,101,104,103,105,103,107,100,104,105,104,113,86,105,104,104,111,104,95,103,114,99,97,100,106,84,125,109,105,109,91,100,112,99,106,117,104,103,101,104,87,94,100,100,118,105,101,98,100,114,115,112,92,102,99,100,104,105,98,104,121,108,113,97,107,103,102,108,102,124,102,111,95,93,100,104,110,105,97,118,90,96,106,94,103,102,105,106,90,99,100,105,103,108,101,99,102,106,109,104,82,98,95,111,99,92,98,102,101,104,88,98,101,107,99,101,101,103,102,110,103,99,99,116,94,109,95,109,89,110,103,99,114,102,103,106,100,103,100,103,93,109,88,106,125,101,105,104,101,98,103,96,113,100,106,103,95,111,106,103,105,104,108,93,108,86,89,100,92,108,99,98,97,100,89,108,110,104,112,89,108,102,107,121,92,100,95,110,99,112,106,98,102,104,105,106,97,95,100,114,103,100,102,102,105,113,113,105,95,104,100,107,100,74,100,105,99,97,105,101,103,100,93,98,87,102,104,112,106,101,93,102,107,106,106,103,102,97,113,101,97,109,111,94,94,100,102,102,135,80,110,91,95,100,95,103,97,109,118,106,99,98,94,118,101,100,87,112,95,108,125,77,120,131,91,101,96,101,112,105,103,109,112,115,95,92,105,115,120,113,105,104,112,112,105,90,113,92,101,104,97,106,99,91,94,108,109,108,104,104,105,88,121,111,107,104,106,105,112,95,113,107,117,110,107,117,109,104,109,104,101,99,92,100,106,107,102,100,100,97,102,105,101,112,98,102,113,107,113,108,99,104,101,93,98,102,108,117,116,75,95,103,105,99,104,99,107,108,108,93,112,101,104,99,106,100,110,114,99,107,112,94,105,105,114,105,120,105,109,104,108,102,110,99,109,106,108,113,91,102,110,100,106,99,94,97,104,115,102,102,103,99,111,95,107,105,95,95,113,105,101,113,105,106,112,107,102,109,98,93,115,108,106,112,107,102,104,117,104,95,110,102,99,109,98,102,108,98,108,117,100,95,107,109,100,105,103,109,99,106,104,94,94,96,106,106,101,94,106,108,91,111,112,106,113,98,96,101,95,109,98,108,113,104,89,103,108,87,103,114,100,99,108,106,108,98,101,108,101,99,114,100,103,91,105,116,98,100,105,113,106,102,99,110,105,102,120,108,91,112,94,109,97,97,97,109,104,118,111,96,77,94,111,102,98,125,96,104,102,101,98,104,96,102,106,101,104,105,111,99,104,119,95,103,102,105,95,103,95,104,109,117,104,110,107,100,89,106,104,105,98,114,102,109,98,103,110,110,105,105,92,109,95,105,95,111,108,100,100,81,117,100,100,107,105,98,97,110,110,102,113,94,101,103,102,112,87,97,109,98,102,97,105,105,111,112,104,92,104,101,97,98,104,118,103,95,86,117,108,95,102,121,105,108,113,100,99,99,95,109,100,95,96,103,98,107,98,100,104,104,108,107,109,106,113,93,102,108,101,104,106,93,98,96,102,112,108,111,99,106,99,92,106,107,109,117,93,113,100,103,117,99,107,99,114,99,95,98,106,102,106,113,99,101,108,104,105,117,106,116,103,107,95,104,101,94,98,106,110,106,101,116,99,110,107,109,98,110,98,104,103,103,101,100,96,100,99,101,109,107,103,116,108,102,98,115,102,97,98,100,117,125,109,101,103,117,113,103,101,102,88,106,96,98,112,104,108,111,106,115,97,103,92,101,101,104,106,104,106,99,109,107,103,107,92,108,101,94,80,92,106,101,107,111,112,104,115,107,105,107,106,102,116,101,104,115,102,103,102,109,98,110,100,99,102,104,102,98,109,95,110,107,101,98,105,104,93,97,110,88,104,125,109,105,99,101,99,100,103,99,100,105,91,104,95,108,102,94,117,105,110,107,103,97,104,96,113,100,110,103,103,111,113,108,113,111,110,108,102,98,109,106,105,101,79,103,130,106,109,87,98,92,105,98,105,109,99,110,104,87,102,94,108,103,95,105,99,103,116,98,104,110,104,104,110,117,101,116,98,112,99,101,105,104,108,90,99,101,99,105,113,109,99,97,130,107,104,104,117,99,104,108,113,110,88,110,109,107,95,103,97,101,105,102,109,99,106,108,105,111,98,93,109,106,115,105,98,112,116,105,101,110,109,104,100,106,116,101,110,106,102,111,109,99,104,95,100,103,107,101,95,102,90,103,113,108,100,100,104,98,111,99,107,104,110,107,110,103,103,113,109,92,104,99,108,100,91,106,80,94,94,101,108,109,103,108,77,113,124,108,114,115,113,103,103,103,101,107,108,104,107,102,98,108,97,105,106,82,101,98,115,104,97,110,109,95,104,105,103,103,118,98,110,102,109,117,102,105,106,98,103,96,110,94,112,103,98,115,109,109,113,106,93,98,103,112,101,106,102,100,99,101,106,99,103,106,95,103,99,97,99,102,109,88,102,111,93,97,118,73,84,106,105,109,99,109,102,104,91,103,94,100,102,93,111,101,112,90,104,101,96,111,98,106,91,98,102,106,97,112,100,97,81,115,111,98,111,105,104,107,100,96,107,98,94,95,103,114,103,104,109,95,102,96,113,110,109,105,81,109,84,98,116,94,117,105,96,98,105,101,91,88,103,100,102,108,105,81,101,116,92,106,104,104,102,95,108,106,100,109,96,92,99,100,94,107,105,105,109,100,97,98,96,115,94,96,105,101,100,100,111,104,85,96,108,98,77,99,96,98,99,99,107,113,100,92,95,102,108,120,100,97,98,112,101,98,101,110,102,96,106,94,101,99,94,83,98,104,113,97,110,92,105,90,98,96,108,101,120,88,94,101,76,103,96,93,92,124,85,107,111,99,101,92,114,95,96, +446.78339,94,103,109,103,102,97,99,96,100,100,107,90,102,102,102,95,95,115,102,103,107,103,97,104,94,102,99,109,113,114,105,106,105,102,109,100,106,107,107,98,99,104,102,111,108,108,104,107,110,99,100,105,112,96,113,103,100,103,97,89,107,98,97,99,100,109,107,105,105,95,101,103,105,108,102,99,98,100,101,118,101,100,104,96,102,90,87,101,106,102,107,107,125,100,94,101,111,104,95,95,103,77,105,99,102,99,99,105,105,100,104,102,92,95,102,124,91,107,100,97,104,97,102,110,102,109,104,92,105,105,105,100,94,98,108,98,107,108,98,108,99,106,108,110,103,97,107,96,108,111,112,91,112,95,109,131,107,100,106,101,99,104,114,104,103,110,96,100,113,105,107,98,113,101,108,103,101,98,111,100,97,110,123,106,117,103,105,102,106,104,109,106,110,116,110,121,99,96,107,100,92,110,104,106,102,111,102,108,112,114,101,112,113,105,108,98,111,116,102,102,111,99,110,106,97,101,106,118,106,104,112,112,100,99,103,112,104,133,109,105,100,110,120,116,99,107,77,106,114,112,110,108,110,106,105,117,99,97,98,112,106,125,132,100,82,116,108,108,112,94,108,81,94,103,116,109,100,113,113,106,108,101,108,99,116,117,86,105,109,108,113,98,116,115,101,103,99,122,104,100,105,106,95,111,99,106,112,112,117,104,96,99,108,120,107,108,110,114,109,112,110,98,104,103,104,105,106,103,112,104,107,101,103,95,102,103,99,99,110,103,110,105,102,100,104,114,117,111,106,103,110,108,115,106,109,104,104,119,83,115,106,104,106,118,109,116,110,112,100,125,102,96,108,98,116,102,113,97,93,99,113,109,109,103,100,96,87,96,106,92,121,107,94,103,96,108,108,105,108,95,97,119,103,106,104,101,117,103,106,97,93,101,109,107,105,103,94,103,124,109,97,102,93,109,108,98,104,99,110,91,111,108,107,99,106,98,117,107,99,90,101,111,111,106,107,108,99,107,97,110,113,114,107,99,102,103,99,107,104,106,102,95,107,103,106,99,86,87,108,104,100,118,119,94,90,101,102,106,113,113,103,118,95,106,113,107,113,90,98,95,105,107,103,99,99,100,107,105,101,95,108,99,108,119,110,95,95,109,99,91,93,98,102,106,122,107,106,113,93,91,113,105,108,114,113,111,96,105,103,98,113,110,95,100,109,103,111,93,101,92,106,100,105,91,117,104,109,107,101,105,105,116,103,104,105,97,99,92,105,105,99,95,105,106,101,100,119,113,98,108,103,101,109,105,107,106,112,100,104,100,107,105,117,98,106,97,113,119,108,97,120,109,96,117,103,102,101,99,107,101,99,100,96,101,105,102,108,99,110,108,112,100,110,91,113,95,129,101,95,105,121,98,107,95,104,104,97,114,88,100,101,105,102,105,98,92,108,95,106,107,108,102,103,99,97,100,99,103,110,106,99,108,120,101,87,95,102,106,102,105,113,95,95,110,93,104,106,89,112,103,114,120,95,110,109,101,110,97,123,94,102,98,108,87,92,102,109,90,110,101,103,106,105,108,110,108,98,125,105,100,99,106,102,103,114,105,104,98,107,109,104,119,105,108,87,104,98,119,107,89,95,91,95,93,92,99,104,106,98,99,99,111,107,93,99,110,107,103,114,110,114,97,99,106,103,99,101,111,103,111,101,105,105,101,109,107,92,109,123,106,102,94,91,117,103,99,104,112,106,110,83,106,115,105,108,102,109,94,89,98,111,102,110,97,104,103,95,105,88,106,101,110,112,119,120,121,103,114,108,106,104,108,102,101,102,102,105,96,105,101,121,107,110,105,101,86,116,106,106,108,101,101,109,107,102,103,102,106,91,104,118,77,103,114,102,105,112,101,99,93,105,113,114,108,106,94,105,98,102,91,104,86,99,98,105,111,108,95,115,114,107,114,103,116,93,88,103,102,109,103,96,118,75,108,100,117,103,100,108,99,111,102,96,111,111,99,103,108,103,105,105,106,108,105,107,107,100,102,100,113,105,100,88,110,104,99,95,105,96,103,107,98,104,103,125,111,109,104,104,103,104,105,102,105,107,98,98,98,114,97,104,105,110,105,101,122,95,106,87,99,109,92,100,109,100,108,96,105,117,100,100,99,125,106,109,105,125,96,105,98,108,114,106,105,121,97,99,101,107,110,110,101,106,70,113,99,105,100,104,104,102,131,103,104,107,97,109,106,109,105,99,106,111,108,100,105,100,95,101,112,100,103,101,101,120,106,108,106,106,105,107,104,88,116,100,125,96,89,107,99,122,106,110,95,112,102,107,103,103,104,97,113,98,104,111,91,98,103,99,103,96,108,103,91,109,108,100,98,96,101,116,110,102,104,104,123,99,115,114,100,104,108,78,100,102,89,106,114,117,90,95,112,107,105,109,111,120,109,109,99,105,91,106,117,106,106,104,100,100,103,93,94,88,104,100,106,106,96,108,108,105,112,102,92,113,105,93,109,98,106,108,110,102,102,90,101,105,105,100,107,97,109,106,104,101,115,100,100,95,103,102,102,104,110,98,99,97,107,100,101,99,93,96,124,98,92,117,103,104,95,105,100,106,109,124,113,94,100,110,121,88,102,98,95,98,113,95,104,106,97,104,98,112,84,106,81,100,85,98,112,98,98,95,106,104,107,124,100,102,114,97,107,107,101,89,86,97,99,101,86,110,99,113,100,113,112,99,116,98,94,100,100,97,112,107,112,110,108,110,98,111,95,95,97,102,109,114,109,97,102,94,102,99,113,110,115,84,100,92,105,105,99,96,116,97,100,106,98,104,87,109,94,109,105,107,93,93,102,103,113,101,96,101,110,97,113,113,100,111,111,99,94,106,111,102,107,92,100,118,102,103,106,95,113,98,103,92,109,90,100,95,111,107,97,100,101,113,92,104,106,108,94,101,115,112,84,98,95,106,106,96,105,98,91,108,109,96,110,102,96,107,103,108,102,116,91,101,111,100,106,108,92,107,104,99,112,93,98,97,84,107,99,114,75,97,107,110,106,113,96,104,120,107,109,89,95,103,105,111,95,111,110,109,102,107,86,101,112,104,112,104,108,105,112,99,125,99,97,101,98,93,101,110,110,96,96,100,98,88,91,109,92,113,111,110,109,85,107,105,104,114,107,98,111,91,100,113,95,97,101,109,99,101,99,94,94,93,106,91,102,110,103,97,99,95,102,102,96,112,97,102,106,108,102,116,94,102,106,94,93,101,94,99,91,102,99,106,98,104,105,91,97,98,106,88,98,105,108,98,102,108,101,101,102,95,107,82,100,105,93,89,104,97,102,97,96,94,105,102,103,98,96,75,109,94,100,98,91,93,89,91,105,108,101,95,105,95,108,109,105,108,95,96,98,91,93,102,86,97,100,98,101,115,117,100,106,91,112,85,104,109,100,111,105,84,109,104,98,108,91,104,102,99,98,96,99,114,92,109,104,98,98,67,109,100,100,100,108,99,97,105,101,81,108,101,87,94,104,110,97,89,108,111,79,101,116,96,93,92,104,105,105,94,123,96,103,104,105,98,94,94,98,96,104,105,121,125,97,96,95,87,93,109,106,97,96,101,97,100,96,107,105,101,79,104,90,98,100,104,110,98,102,101,98,103,103,97,114,95,113,96,113,101,94,92,106,95,103,96,96,109,105,90,105,112,86,103,100,88,90,100,107,107,92,108,98,96,101,91,96,97,98,98,97,97,100,100,98,106,95,104,100,97,108,102,99,85,101,94,98,89,105,96,96,113,86,101,109,92,103,100,102,95,116,87,102,104,94,107,107,96,114,124,99,82,103,95,102,95,104,104,100,98,109,100,100,97,107,102,103,100,101,105,99,109,98,99,100,94,92,90,101,102,103,100,107,100,98,104,93,107,105,103,94,92,113,95,107,107,91,93,102,99,106,91,105,100,102,94,82,98,95,104,107,104,101,111,97,98,103,117,97,97,110,104,101,105,97,91,106,110,99,94,94,99,102,96,99,109,101,121,96,105,96,108,102,100,112,118,91,105,97,103,109,104,103,91,97,98,93,84,100,111,107,105,76,106,130,95,104,99,82,101,101,105,111,105,113,113,106,92,100,102,114,94,97,109,110,105,106,103,103,98,93,106,108,107,95,95,98,103,104,103,91,83,99,102,109,97,95,102,103,101,116,100,106,102,103,104,106,103,105,108,88,94,99,95,122,90,95,111,101,108,102,89,88,103,107,107,99,104,93,95,96,109,102,107,91,92,98,100,101,91,101,102,106,93,101,105,107,100,99,111,115,107,92,103,100,106,111,109,87,103,98,109,113,107,105,102,97,91,94,104,113,103,107,109,104,107,109,95,96,99,101,89,87,110,109,118,99,92,106,113,107,101,108,94,92,97,112,103,103,105,102,102,91,89,80,126,107,105,113,98,91,120,94,109,104,96,103,94,89,108,102,106,107,85,112,97,116,98,109,97,109,98,96,108,107,108,108,94,100,100,91,94,100,81,107,99,101,108,96,95,107,94,102,99,103,102,94,108,115,114,98,109,111,105,100,104,93,97,104,102,102,98,110,110,93,98,96,105,104,110,98,91,101,103,103,104,94,95,97,107,105,91,89,110,104,100,94,109,94,95,96,104,105,95,96,108,97,113,106,87,106,105,99,106,105,112,111,107,96,106,107,91,90,106,109,98,103,101,97,102,97,109,108,103,104,116,102,104,100,111,86,107,100,90,101,107,112,108,100,115,94,111,109,118,106,106,115,87,80,104,92,90,120,109,106,86,104,101,99,102,97,101,100,101,101,98,111,109,107,101,113,106,115,103,102,98,99,100,108,103,100,90,109,109,94,99,98,103,90,102,110,97,103,125,97,109,98, +446.92374,98,104,94,97,107,113,98,92,109,105,98,111,89,93,109,109,96,103,102,78,103,101,95,97,91,100,96,106,95,98,97,102,100,107,100,95,91,95,98,93,89,106,101,110,107,104,105,98,102,96,94,83,105,100,108,94,91,100,98,94,104,108,105,94,118,140,111,116,81,100,91,99,113,90,79,113,96,101,103,98,91,91,106,100,89,96,98,94,78,96,97,111,102,104,107,93,102,100,103,98,113,101,82,99,94,97,99,64,98,95,104,94,106,98,99,97,125,104,101,101,92,88,108,99,111,99,100,93,111,112,97,104,108,110,108,108,98,114,95,89,91,99,106,105,92,107,106,113,84,100,101,94,71,96,98,75,131,103,106,86,85,94,104,105,101,85,103,100,99,108,95,106,95,90,101,95,99,93,103,105,103,101,99,101,95,87,99,89,116,108,95,102,108,117,98,100,113,109,107,118,101,97,100,93,110,104,91,104,91,100,101,108,85,94,106,100,100,100,102,93,92,103,96,104,102,105,96,124,108,104,97,92,98,101,109,93,96,99,103,110,101,88,102,92,101,102,112,92,95,99,88,95,104,109,92,81,100,105,96,104,98,104,81,91,86,103,97,103,112,96,107,100,99,96,100,99,105,96,93,118,105,94,102,101,92,85,92,102,105,105,98,103,92,102,109,98,92,98,91,99,98,111,98,133,82,106,99,109,102,115,85,106,101,96,102,96,101,99,99,103,104,96,91,95,93,90,92,95,105,97,97,93,96,102,101,114,95,103,99,92,96,102,101,88,93,115,105,106,104,109,96,113,94,109,100,91,101,95,98,106,96,104,107,100,91,99,100,107,94,99,98,107,104,97,100,112,108,92,88,101,116,104,96,111,90,100,110,102,94,105,119,99,96,105,117,95,92,100,100,100,107,102,101,101,89,107,97,104,105,104,104,101,103,99,109,100,93,93,113,105,94,90,95,101,101,85,91,96,98,92,97,110,105,110,109,106,95,98,101,103,111,100,102,106,106,94,96,93,103,104,105,95,107,102,96,99,90,113,100,119,96,105,109,106,98,100,110,94,106,100,108,99,111,95,68,103,106,101,92,109,97,100,103,91,95,104,103,99,97,104,104,99,110,95,102,98,96,95,101,97,110,101,104,94,110,97,97,102,100,94,96,98,94,101,98,99,99,100,98,97,85,99,100,99,84,111,105,95,95,116,101,109,100,95,108,96,104,107,102,117,105,99,73,101,95,101,113,104,111,93,99,119,102,100,103,99,89,104,119,96,92,99,91,91,109,106,98,97,103,93,93,100,97,91,106,104,96,98,117,103,95,98,87,90,102,100,97,98,113,109,107,108,99,99,101,96,71,101,100,78,104,89,100,100,90,98,107,100,89,107,99,104,102,104,103,99,90,100,99,120,102,89,100,99,100,106,114,100,93,107,108,103,93,107,99,90,117,92,104,97,99,102,94,97,102,99,93,96,105,103,105,102,97,96,104,106,104,115,106,105,114,109,104,103,94,103,102,91,88,98,104,101,103,110,99,115,106,116,102,102,107,99,109,88,89,95,100,105,106,112,113,93,98,118,105,101,104,98,101,92,104,85,102,96,100,104,95,98,122,95,93,107,109,97,102,86,101,110,89,98,87,95,103,104,103,90,94,101,100,105,95,102,103,94,105,95,123,100,98,97,97,100,108,101,106,112,111,111,99,101,98,120,101,92,106,74,111,99,108,99,94,103,86,93,97,100,101,103,104,97,106,98,94,95,97,105,74,99,107,101,97,99,111,104,107,107,101,96,101,103,92,108,102,100,97,111,100,110,105,100,100,100,93,101,103,99,107,110,98,96,102,116,97,89,101,98,98,117,110,93,107,101,104,104,97,98,92,98,104,109,104,101,103,114,104,99,106,100,98,101,109,103,82,95,101,104,74,96,90,90,101,97,97,95,96,105,100,98,104,102,92,98,104,102,91,98,100,101,96,92,91,108,99,95,105,99,104,93,98,105,110,102,91,112,98,100,100,95,101,101,90,107,93,113,114,95,98,101,94,97,105,101,111,100,98,104,88,111,97,105,106,106,112,106,116,92,98,103,104,93,107,108,103,120,110,100,98,86,108,98,98,106,105,99,108,106,104,105,102,102,94,98,110,104,107,107,103,112,112,103,94,99,93,98,95,95,103,103,86,103,102,102,106,92,91,103,98,95,96,101,99,87,106,94,91,100,85,97,99,103,101,103,92,100,96,92,101,86,96,88,117,95,120,109,101,94,81,95,93,101,102,102,119,94,91,80,95,120,97,108,86,108,92,113,102,99,95,108,96,105,102,106,98,94,101,115,93,101,94,102,109,91,111,96,94,92,97,110,101,114,105,98,104,106,108,98,112,105,103,94,101,95,105,101,109,100,99,103,103,97,91,99,103,117,98,94,105,115,102,103,101,97,109,94,110,106,92,99,101,107,97,109,104,105,110,113,96,96,107,119,107,104,98,104,91,107,102,113,103,118,96,95,104,109,105,108,115,101,102,106,98,109,108,99,96,91,98,95,94,91,99,105,106,107,102,98,95,102,101,99,109,121,103,95,99,98,105,112,111,93,103,98,101,104,108,105,107,97,104,92,112,111,119,102,112,106,97,109,113,104,108,94,118,100,98,106,96,105,96,115,105,101,102,102,104,109,98,107,102,100,105,116,111,119,113,102,97,106,100,109,108,111,101,107,96,102,110,94,108,113,116,108,109,90,115,99,103,103,110,98,117,110,104,112,105,109,126,97,102,116,112,105,106,96,92,95,102,110,104,114,107,116,95,106,100,107,97,113,109,112,102,79,116,101,120,115,98,108,114,111,106,97,106,108,99,98,100,104,109,95,95,113,102,111,104,109,99,103,91,99,100,108,109,97,101,103,107,103,128,102,98,104,117,105,102,111,101,102,120,96,108,129,111,105,92,108,101,97,114,104,108,107,85,95,109,93,117,112,94,95,89,89,110,94,95,103,99,108,116,103,103,104,105,93,106,98,100,105,96,95,105,100,105,120,107,102,106,101,103,112,107,107,104,90,105,94,106,113,125,97,110,100,96,108,102,107,98,104,96,96,97,102,116,99,109,107,101,104,107,110,102,118,106,107,109,110,111,133,112,112,100,93,92,103,110,101,89,111,105,101,102,109,104,93,113,107,103,112,119,104,94,116,98,103,95,93,102,115,103,83,91,105,98,108,109,98,92,114,99,105,106,107,114,75,112,103,113,104,116,86,113,117,95,107,105,101,106,113,105,106,106,100,95,106,101,95,116,118,109,108,92,95,120,102,113,102,107,90,110,100,100,85,105,95,105,107,110,92,102,100,91,104,100,119,110,103,101,97,113,123,101,99,106,106,110,95,98,101,122,97,103,102,100,108,108,104,94,99,118,102,94,108,108,103,97,104,108,111,108,116,134,103,105,100,108,77,113,116,98,95,112,99,93,96,97,110,111,108,110,101,116,107,107,106,99,101,101,109,105,111,112,103,98,94,110,122,109,109,105,94,109,106,97,97,106,108,106,105,100,102,95,109,103,113,116,112,94,102,99,90,101,91,103,112,99,106,109,119,97,94,94,105,121,102,108,112,110,107,122,93,100,99,103,100,95,100,104,97,101,102,104,105,114,104,106,94,77,101,107,99,101,94,97,87,95,104,110,107,115,103,108,104,104,117,94,109,98,105,114,91,110,98,108,104,95,98,105,106,95,118,99,101,88,101,107,106,113,98,96,101,98,102,98,104,100,109,108,119,98,106,100,76,116,108,99,103,121,103,110,102,103,104,106,107,99,104,94,104,102,103,100,105,108,95,98,107,115,94,100,106,91,87,90,104,102,101,107,92,115,108,103,91,114,100,116,100,103,103,90,114,96,98,122,113,102,95,99,114,95,107,98,108,102,97,106,109,99,100,100,100,102,108,109,95,109,113,101,116,100,106,137,106,104,102,105,83,103,113,99,115,102,107,104,103,106,102,109,105,98,108,108,96,99,111,107,106,105,96,117,105,114,99,109,99,101,89,113,111,102,101,117,113,106,117,105,108,93,83,98,110,100,98,107,100,99,94,105,110,106,105,111,100,112,102,107,109,96,106,103,107,110,105,108,101,85,114,95,107,104,103,99,93,109,104,94,104,95,115,108,115,104,96,99,89,105,100,102,105,109,113,104,83,96,109,104,101,98,97,93,106,100,111,109,109,107,103,106,92,111,75,107,91,110,105,100,115,123,102,99,100,95,100,102,104,87,91,91,104,104,103,120,113,121,107,111,99,98,93,104,104,95,104,98,99,104,102,106,100,100,118,108,109,103,104,106,91,113,99,97,87,122,102,98,105,100,94,111,109,108,121,103,103,109,116,99,113,110,102,98,100,103,95,101,73,116,109,101,118,108,114,106,86,91,102,100,102,99,95,88,108,99,111,99,95,113,102,98,100,101,97,103,100,107,109,102,97,104,103,101,111,98,103,120,99,102,106,99,108,100,100,102,89,93,110,100,108,96,102,97,109,76,89,105,94,109,113,105,117,107,110,101,104,98,103,109,103,107,104,106,105,108,99,95,100,100,112,98,102,111,108,95,98,111,110,112,113,104,86,106,115,112,105,91,96,103,96,118,97,103,99,109,99,112,100,118,105,100,102,99,105,112,115,109,113,101,95,129,113,116,93,113,103,113,100,108,98,93,108,101,92,114,109,92,103,88,98,104,102,104,91,96,98,102,106,106,100,108,84,109,100,107,120,108,115,105,88,89,103,103,102,99,92,95,103,107,93,105,102,99,101,95,105,102,96,100,106,100,102,96,103,117,100,110,98,114,102,97,116,102,108,93,110,93,109,90,104,94,113,110,111,110,107,105,102,108,104,116,114,113,96,110,106,105,104,103,104,98,110,113,96, +447.06412,98,91,101,100,89,96,104,101,94,102,83,95,101,103,103,101,104,124,102,95,113,108,112,90,107,94,100,88,100,110,96,102,100,93,113,98,103,93,107,99,105,99,114,97,109,105,99,107,107,91,109,96,110,115,116,88,99,99,109,88,127,106,95,92,114,107,96,104,103,100,100,105,87,85,97,104,98,86,96,118,104,98,93,95,91,102,116,88,102,106,92,100,105,113,101,104,96,99,97,107,89,104,97,100,106,101,100,104,97,94,102,106,85,95,99,106,97,107,102,99,105,93,102,90,106,103,110,106,116,101,120,103,99,106,125,102,111,103,89,98,97,109,107,90,95,95,115,94,97,96,98,92,99,104,100,100,87,106,99,97,96,117,98,99,99,103,98,89,113,108,105,106,96,93,102,104,107,97,95,102,100,103,99,117,88,108,100,103,106,101,116,102,94,95,106,101,105,106,96,111,91,102,95,105,106,91,107,101,115,110,104,99,115,108,115,102,99,97,90,107,107,104,102,98,92,110,106,110,94,113,87,95,101,100,116,110,85,109,104,91,102,105,95,112,101,104,92,106,109,102,103,90,91,101,121,112,99,99,114,111,103,105,102,102,102,110,102,103,121,94,102,99,94,100,87,91,102,105,96,106,114,104,99,104,107,107,114,109,109,94,101,95,109,115,100,99,95,106,94,110,100,105,107,99,96,98,102,102,105,98,90,100,110,110,107,105,103,105,108,102,106,90,106,101,118,109,98,88,114,106,104,95,99,99,77,108,97,100,85,100,94,108,100,101,90,102,97,111,106,96,110,102,91,105,104,102,126,108,99,99,127,105,93,98,96,98,103,98,99,112,110,102,107,111,105,98,92,109,101,113,100,104,100,95,105,105,84,101,94,94,105,104,102,113,106,103,99,96,97,112,95,113,104,95,110,103,96,107,123,112,104,99,107,105,95,96,101,85,98,101,92,102,99,99,98,105,102,87,86,99,108,95,101,99,109,90,108,116,92,105,117,92,96,110,99,117,92,92,103,94,109,109,109,104,86,108,111,97,105,113,102,100,93,96,110,112,102,95,95,103,101,101,99,99,102,101,94,113,96,104,104,102,119,125,104,91,108,103,99,99,109,105,104,73,75,101,100,100,106,109,107,104,117,101,99,108,105,101,108,108,101,106,98,115,114,96,105,104,101,96,96,100,101,105,101,108,126,104,89,102,111,106,107,94,113,104,116,99,105,98,109,121,95,108,104,98,108,101,100,111,104,98,105,113,108,103,100,101,92,113,99,112,107,109,104,105,105,107,94,98,93,108,112,103,100,110,95,107,103,110,109,101,109,94,110,96,104,99,98,96,106,96,94,95,108,98,103,97,91,112,91,102,99,107,105,106,98,95,93,106,86,106,113,100,103,108,101,91,92,100,100,103,111,104,111,102,92,110,106,107,103,91,95,112,97,109,102,108,115,108,102,98,104,101,97,102,88,95,101,107,92,107,98,105,99,107,99,97,106,111,81,101,100,105,105,90,98,96,105,112,114,95,95,98,104,93,114,96,108,98,99,99,98,95,102,107,105,99,106,105,108,109,100,103,106,94,98,116,100,107,100,97,98,100,102,105,118,110,103,100,110,91,96,98,100,69,101,83,109,105,101,92,108,111,98,88,101,99,114,116,113,100,116,100,104,99,104,111,102,101,105,97,108,103,84,92,116,100,100,88,88,100,95,109,104,103,102,103,105,101,90,109,92,92,87,88,90,102,102,93,107,102,108,104,106,109,105,91,104,103,76,117,109,112,95,109,93,100,106,111,92,90,103,129,90,117,111,106,106,98,105,103,109,99,111,97,103,97,104,109,100,100,109,104,112,105,113,81,118,106,99,99,108,100,105,104,105,98,103,102,113,100,101,106,110,99,106,97,92,96,99,104,114,110,109,98,105,98,106,107,94,103,105,103,105,97,111,112,108,94,108,102,103,107,99,99,107,99,88,104,102,94,95,102,101,108,100,102,103,100,107,94,102,112,96,111,95,114,104,107,109,98,106,100,108,116,105,101,105,96,107,102,87,119,105,107,103,100,98,101,95,94,118,107,105,96,100,98,101,97,102,99,102,92,108,102,102,102,106,109,113,112,101,108,88,110,95,109,104,95,104,97,98,104,102,98,102,97,96,106,99,96,115,114,99,92,101,98,97,99,101,103,110,105,89,92,91,104,103,97,101,113,110,102,96,104,99,94,110,74,101,96,100,99,101,109,99,94,92,100,96,113,105,110,95,100,118,108,95,102,105,104,100,92,106,94,122,95,97,103,87,103,101,106,83,108,106,100,92,113,118,102,110,99,102,103,105,103,99,99,99,105,102,101,108,96,101,111,101,115,102,101,104,100,104,101,105,99,98,104,102,101,107,114,95,100,104,100,97,102,95,102,117,112,94,80,113,117,104,91,97,106,100,104,108,108,101,112,101,85,104,112,114,109,114,95,102,105,110,108,95,113,101,90,98,113,125,102,103,103,107,94,118,90,93,96,99,101,106,95,95,112,102,91,101,92,96,89,101,101,107,97,91,98,81,128,87,110,111,108,105,95,106,102,102,99,99,94,95,96,100,100,105,107,102,98,116,101,98,104,108,99,110,115,103,94,106,102,98,106,109,94,106,115,109,98,100,110,111,96,99,106,107,113,99,103,98,95,102,95,105,114,103,103,99,109,112,101,103,100,100,101,100,106,95,123,108,97,89,106,96,111,93,109,98,110,97,96,99,105,102,110,100,113,96,110,107,102,103,95,97,118,103,103,106,112,96,100,108,106,102,91,103,104,103,110,113,98,101,112,107,111,97,89,92,109,99,102,95,103,107,112,88,100,107,95,100,110,97,108,97,98,109,99,95,109,100,110,101,109,107,94,105,105,84,93,93,90,107,103,105,103,115,109,99,112,109,98,94,105,95,97,102,103,106,104,105,94,94,91,111,99,112,105,99,97,98,88,95,107,105,101,114,93,99,113,106,113,95,113,108,105,99,99,103,102,112,97,114,103,99,105,100,99,108,104,107,95,111,101,112,96,103,94,104,70,117,109,94,101,106,108,108,112,99,96,96,104,108,93,105,113,100,109,100,98,89,104,99,99,91,102,97,118,107,94,93,107,104,99,110,72,106,113,105,78,106,109,110,106,104,105,105,105,98,109,103,98,89,105,100,101,101,97,92,106,94,88,97,100,85,108,104,103,105,105,95,106,114,99,102,96,108,104,103,114,115,101,107,103,105,103,109,114,103,105,106,109,97,100,100,94,104,106,106,105,96,113,102,105,111,99,106,106,108,105,101,107,114,103,103,103,95,109,103,108,97,94,101,96,96,106,104,90,108,98,101,103,109,115,103,106,107,100,83,105,102,92,108,95,96,104,95,116,107,108,104,94,104,105,107,112,101,105,95,106,113,105,96,106,117,105,101,101,113,98,96,102,91,102,100,110,97,90,97,101,98,114,102,104,113,109,99,102,97,105,106,112,101,102,102,101,105,105,110,94,99,102,92,95,116,99,90,98,96,95,110,94,105,103,112,106,98,107,100,111,82,104,108,103,109,92,105,98,94,105,103,86,91,94,91,99,105,96,96,109,101,95,93,107,87,112,94,105,104,97,107,104,105,105,105,112,107,110,95,102,101,98,98,100,97,102,95,105,101,97,108,103,104,92,109,116,96,106,109,105,100,96,101,101,88,100,114,97,106,116,100,98,97,105,102,101,98,98,99,106,102,103,99,98,103,91,106,95,99,103,101,102,109,104,95,109,102,110,113,104,80,104,106,106,107,108,97,106,105,101,89,112,89,104,97,98,110,107,102,99,98,101,92,94,101,103,100,89,104,104,115,102,104,105,99,106,98,104,117,105,99,101,109,101,95,100,101,77,100,87,101,90,97,98,98,99,90,105,105,101,106,91,102,108,105,96,100,104,102,106,95,104,97,107,84,117,103,98,92,100,110,109,105,109,102,103,114,105,102,96,101,99,105,108,100,104,93,79,99,96,90,92,115,117,110,96,113,102,97,95,116,108,100,115,101,109,103,99,98,103,83,92,100,91,105,108,103,90,95,93,95,100,80,87,101,91,102,104,101,103,91,104,104,106,96,101,112,112,93,121,103,101,93,113,105,97,98,83,98,92,104,99,100,98,104,100,94,96,72,95,101,97,81,90,101,105,108,107,103,108,103,101,112,106,106,104,99,107,110,100,103,100,99,102,108,112,99,90,101,100,103,103,115,104,109,104,107,102,99,113,105,102,100,112,102,99,103,101,98,99,100,103,112,94,97,104,103,107,106,102,95,96,105,105,117,100,106,94,105,113,97,103,92,105,115,99,100,88,104,97,88,112,94,107,111,101,103,96,101,89,116,101,93,93,107,113,100,108,99,102,91,100,107,93,97,98,98,112,120,102,90,106,134,96,103,100,99,97,105,103,99,104,91,109,123,98,117,92,108,97,104,107,93,108,89,99,106,95,95,93,95,107,87,104,98,97,92,108,94,105,91,97,79,99,102,98,106,96,102,141,107,93,93,97,99,109,97,96,99,109,96,93,106,95,95,91,106,98,104,110,109,99,91,100,100,87,109,99,106,106,94,93,99,101,92,98,102,105,95,120,93,101,95,101,104,99,109,100,95,101,99,132,94,105,97,98,107,106,110,116,108,98,107,108,109,107,103,94,101,95,105,104,87,120,105,112,98,100,92,109,106,103,95,100,97,61,94,99,112,95,101,102,106,102,106,101,94,105,108,95,102,101,108,107,107,95,106,109,116,105,100,94,87,97,99,104,105,100,98,108,94,98,102,105,97,108,94,100,111,102,96,104,87,97,100,102,97,98,98,116,90,98,98,109,101,103,101,106,109,100,105,91,101,94,104,100,104,103,116,94,94,73,86,90, +447.2045,94,104,109,81,93,104,92,106,96,105,105,94,104,132,94,93,108,83,102,91,104,107,87,110,112,102,94,117,106,92,106,109,105,95,113,103,101,90,106,106,97,109,102,112,94,103,102,104,95,107,101,100,102,101,102,108,90,108,104,106,112,91,107,110,114,109,106,104,98,102,104,104,113,100,102,111,102,118,113,107,107,97,103,100,109,104,115,91,101,106,109,108,109,105,95,109,72,93,94,94,105,105,104,97,94,98,106,104,94,105,112,111,97,98,102,104,103,109,97,100,100,108,114,103,107,111,110,108,105,105,103,95,105,109,97,115,103,103,99,117,103,98,96,100,95,103,112,110,96,96,90,108,102,101,98,95,88,100,106,94,113,104,108,112,105,102,95,99,111,94,99,101,99,109,109,112,107,100,110,77,101,107,110,92,91,101,94,123,109,96,109,100,110,100,100,100,117,116,108,110,105,96,107,96,101,104,99,117,94,105,108,103,101,123,94,100,102,109,103,107,99,105,95,115,94,115,107,105,104,105,118,97,111,95,116,102,106,95,108,114,104,86,108,115,95,100,91,91,97,102,94,117,101,101,104,110,111,103,104,104,110,109,103,105,101,100,99,101,103,99,90,97,78,103,120,109,119,98,99,102,111,115,110,110,109,97,103,102,106,103,104,99,105,113,119,107,107,95,96,108,110,100,109,103,110,103,116,111,106,98,90,104,105,110,101,108,72,101,108,113,110,101,111,108,94,96,79,93,112,104,104,100,105,96,97,100,99,99,92,103,109,102,96,102,120,108,110,111,105,104,100,101,117,101,109,105,111,104,100,115,109,112,107,91,104,93,113,115,92,109,100,100,106,105,112,91,105,106,103,109,111,99,111,89,101,95,104,98,100,109,107,89,91,100,113,102,98,100,104,112,97,107,103,114,102,104,106,103,111,109,95,104,96,110,105,94,106,101,112,103,105,114,99,97,73,99,111,90,98,104,105,111,107,97,105,97,106,115,110,105,86,107,105,95,96,96,97,103,112,94,117,109,100,109,111,100,103,101,110,91,111,97,109,112,111,103,105,103,99,105,99,115,110,95,99,102,99,105,109,105,102,84,114,96,121,110,110,103,107,94,108,105,105,107,98,100,97,104,106,99,109,116,100,98,109,113,97,84,103,105,112,113,95,112,105,117,100,102,94,93,103,103,101,107,117,110,112,105,104,104,100,108,103,93,91,104,101,97,107,113,99,111,105,92,107,113,97,98,109,111,117,117,103,99,97,103,99,104,93,89,99,109,103,104,96,102,107,97,104,110,103,99,105,102,109,102,96,102,97,105,104,99,110,104,103,109,109,103,98,101,103,98,109,109,111,105,104,98,109,108,100,112,97,113,90,95,84,106,96,104,103,112,106,80,101,95,117,102,108,112,102,93,103,106,108,96,94,114,106,109,101,108,100,103,98,105,91,94,98,101,103,108,115,111,100,98,99,103,104,96,89,111,101,100,111,108,103,108,99,106,106,100,100,106,93,109,105,91,109,102,112,99,101,91,111,106,99,107,92,103,103,115,117,109,101,98,105,92,104,100,106,105,101,98,110,99,111,109,102,95,105,102,94,104,105,109,107,125,108,107,105,97,109,99,100,102,113,111,97,92,100,111,105,114,92,104,106,110,128,109,105,101,105,100,102,130,101,96,99,101,105,96,112,105,118,100,108,113,97,113,109,100,104,98,113,111,114,93,119,103,100,112,100,103,100,106,98,92,102,97,103,121,101,95,102,99,116,103,110,99,108,105,102,106,117,110,104,107,101,112,112,107,99,116,105,99,94,106,105,115,108,101,100,106,98,100,99,107,98,111,105,113,110,99,107,108,105,114,110,107,96,109,103,106,102,116,106,120,108,100,106,116,101,109,98,99,104,106,104,117,114,109,99,104,96,98,94,105,109,100,102,102,105,111,105,121,105,109,104,101,116,105,99,102,104,66,101,99,117,102,102,109,106,92,98,101,111,99,105,100,99,109,106,101,105,117,116,112,103,105,110,99,77,101,100,98,117,106,98,112,110,97,105,112,97,102,100,113,97,99,105,104,103,105,110,92,105,103,95,107,100,105,94,100,98,94,107,109,115,101,101,114,108,111,82,103,104,88,112,89,98,101,94,106,98,103,115,115,110,96,102,104,111,115,123,106,106,105,95,99,105,106,96,100,105,112,106,99,98,96,105,94,111,114,107,106,95,106,113,107,100,106,115,96,110,112,110,99,96,99,92,105,101,105,102,103,112,99,105,105,98,105,101,106,124,108,127,105,101,114,97,99,95,97,101,101,101,104,98,100,106,97,87,103,102,102,102,109,120,107,108,95,99,101,108,98,100,111,84,93,70,96,105,101,111,104,106,100,110,104,112,103,95,126,133,114,103,106,94,102,110,108,106,101,109,96,96,105,102,109,102,121,98,102,110,109,106,113,90,101,115,108,102,101,106,111,103,110,120,78,107,105,112,87,97,102,96,100,96,97,96,82,109,94,104,117,104,100,110,113,98,98,110,105,109,94,104,114,93,108,97,97,112,108,111,112,91,98,108,93,110,113,108,89,99,96,97,112,98,73,98,90,87,107,110,106,99,100,109,109,112,103,101,94,86,103,103,106,104,107,106,99,99,104,110,106,109,116,109,104,97,96,102,103,110,94,102,97,110,106,96,105,95,97,113,100,111,102,106,101,105,115,95,103,102,97,112,83,109,105,98,107,123,116,112,101,101,100,107,97,113,101,92,100,107,109,104,119,109,101,108,104,110,103,101,108,87,107,107,109,99,99,107,109,102,116,111,100,103,97,98,96,107,94,103,117,108,100,107,99,100,99,101,108,108,106,99,95,101,97,117,97,90,106,106,112,114,109,108,93,72,110,105,98,103,101,96,106,110,99,107,109,91,97,104,99,98,106,109,87,108,113,95,70,97,104,99,95,108,106,99,109,121,109,107,96,90,103,108,110,94,112,104,103,94,97,105,109,102,91,100,92,98,98,108,105,108,101,104,95,99,89,106,104,98,102,115,78,108,99,96,95,100,87,98,83,101,93,106,94,101,102,104,104,95,93,105,109,106,113,106,103,102,112,112,93,102,104,100,94,102,110,99,96,104,116,106,108,91,100,107,101,108,107,101,104,97,91,106,107,95,111,108,101,110,107,107,96,81,103,110,100,106,109,99,100,98,99,98,106,103,112,94,96,107,96,108,117,99,100,108,105,98,99,104,90,112,103,110,104,111,103,102,114,110,99,104,98,111,108,91,104,100,111,103,105,99,97,109,101,103,91,108,101,95,98,116,102,106,108,110,101,115,103,105,117,114,101,108,106,105,115,92,95,103,94,96,109,111,104,105,94,105,100,101,99,101,98,107,109,97,107,98,107,108,101,102,112,100,94,91,105,95,102,99,103,97,106,102,105,83,95,100,112,103,102,97,95,97,101,106,109,108,92,108,100,101,105,103,104,95,99,113,95,101,93,107,110,108,105,102,101,94,91,91,97,104,109,88,105,105,109,111,112,99,103,102,120,107,106,106,104,113,95,103,108,100,103,96,103,95,99,91,109,108,103,108,102,95,90,109,111,88,109,116,121,107,103,102,105,97,99,103,103,100,93,103,112,107,113,99,101,110,94,99,103,92,117,113,103,111,105,95,109,96,97,107,113,107,104,108,100,106,104,83,105,104,113,112,89,113,81,105,106,107,107,102,112,107,102,106,94,102,97,111,105,104,95,107,105,110,104,110,102,109,97,100,99,97,100,90,126,110,114,108,97,102,89,106,98,99,103,94,110,112,101,107,105,104,100,99,121,108,96,105,123,109,88,95,102,92,109,92,101,104,101,115,95,109,102,97,92,97,84,113,94,110,102,109,105,103,100,100,99,103,112,114,99,95,98,89,106,100,105,106,104,112,123,107,100,108,102,106,98,109,107,115,96,98,106,97,124,99,80,102,99,109,94,105,114,104,100,102,105,106,110,98,101,99,112,104,108,101,103,104,105,104,97,110,106,109,102,110,95,102,115,105,103,102,95,112,105,76,102,101,111,90,103,105,111,105,105,110,102,103,102,93,113,108,101,107,92,103,107,115,109,99,103,105,112,120,111,104,99,96,99,101,93,98,97,104,92,102,113,96,96,93,102,108,99,98,109,102,102,98,99,106,100,87,87,98,117,109,98,114,109,95,105,96,108,102,96,106,92,124,99,100,109,96,102,103,111,103,103,105,102,108,97,91,87,102,102,125,102,100,91,104,106,102,112,95,105,109,108,106,99,101,110,102,119,108,102,97,112,102,93,102,106,110,107,95,96,112,102,106,94,109,87,87,112,121,108,120,106,105,102,105,105,101,96,105,96,104,112,94,100,105,104,86,112,98,115,103,105,100,113,102,109,101,105,97,98,108,99,100,95,98,98,115,102,106,103,100,115,96,96,109,91,105,97,86,111,115,101,97,93,108,103,98,107,99,99,96,107,108,90,102,104,97,112,99,93,99,106,108,99,100,103,99,89,100,102,101,103,99,116,104,99,103,118,88,104,99,106,111,94,106,98,92,95,95,99,106,102,105,105,107,102,102,81,105,108,100,114,115,100,102,104,100,109,103,98,106,91,99,112,116,115,102,66,107,98,107,99,94,91,105,109,103,104,61,97,102,94,97,109,103,100,100,93,108,117,73,104,105,96,97,108,102,103,84,104,102,104,111,112,117,102,67,84,104,105,97,117,107,97,102,101,119,111,106,94,116,94,99,109,97,110,95,101,86,113,96,100,96,106,98,92,92,102,119,98,98,97,96,98,103,107,102,103,114,110,100,103,105,104,100,106,90,87,90,91,102,101,94,106,90,113,102,98,107,104,102,93,113,95,108,94,106,95,100,113,93,95,120,89,113,102,93,104, +447.34488,90,81,103,90,95,102,101,95,89,109,96,94,97,103,117,102,112,108,98,90,99,92,106,90,103,98,104,97,99,105,112,93,111,99,104,80,112,109,98,122,90,93,97,97,100,102,103,115,107,99,95,104,109,108,86,105,98,100,107,112,92,102,98,103,108,120,91,105,100,99,93,102,113,102,91,111,105,114,99,112,103,118,100,95,91,104,99,104,104,94,91,103,103,113,102,102,101,93,89,98,115,102,98,94,95,109,97,99,102,94,110,111,98,103,98,100,98,113,104,109,114,103,97,98,109,106,104,106,107,105,100,105,90,109,110,95,104,115,96,107,104,104,103,102,102,99,116,99,101,108,117,108,106,104,109,126,102,103,110,104,110,92,99,107,98,98,109,102,122,100,99,102,103,89,114,104,91,106,100,96,109,101,109,101,115,98,91,89,109,97,115,101,94,117,103,95,101,113,92,102,98,98,98,113,95,109,115,110,119,104,114,105,98,110,108,94,115,99,95,108,116,108,102,103,92,110,109,109,103,100,103,103,104,103,99,98,87,102,114,97,95,92,91,101,95,109,116,106,94,98,95,100,86,110,103,104,93,111,99,99,100,94,88,107,91,116,109,98,112,95,94,102,104,105,134,106,110,105,108,109,99,103,104,102,109,98,102,109,94,103,103,105,102,96,109,101,99,90,100,98,114,106,91,107,103,112,104,103,105,109,96,112,102,99,100,92,91,102,98,94,108,101,101,107,104,103,100,99,103,106,103,114,107,102,103,130,105,100,108,115,114,104,102,95,98,106,107,106,108,106,99,95,106,103,103,104,99,100,102,107,108,101,113,103,102,94,102,109,87,101,109,105,105,94,105,103,109,110,98,97,96,110,102,95,135,98,108,96,106,77,79,95,102,107,90,95,112,104,86,104,97,111,95,78,106,101,99,113,107,105,98,92,108,106,109,99,100,84,109,107,107,95,84,91,104,106,103,99,103,105,104,107,108,101,103,99,96,100,105,103,99,88,102,116,82,100,91,96,114,107,102,92,95,106,112,98,107,103,116,102,103,103,103,105,108,109,114,102,107,78,104,110,91,95,101,95,115,108,111,96,105,107,107,116,98,100,111,101,100,100,111,112,98,113,98,104,103,109,105,106,109,100,100,108,100,105,99,88,112,102,100,98,101,103,108,101,96,108,106,86,102,96,109,106,100,109,107,107,102,101,93,107,102,120,104,105,102,97,95,106,115,107,96,99,102,90,105,90,111,101,112,102,96,102,103,109,122,100,99,85,101,104,111,114,90,94,86,100,107,94,98,92,104,104,112,97,95,97,94,104,103,105,102,88,105,103,104,109,111,97,108,110,100,96,102,100,105,105,101,79,96,99,104,106,106,100,103,107,100,128,113,106,100,106,105,102,111,96,103,118,122,107,104,104,110,107,90,115,110,102,106,108,99,101,98,104,103,98,110,108,114,114,86,109,104,93,91,111,112,123,105,107,113,99,109,106,103,112,96,107,118,106,105,108,92,102,97,107,97,98,107,106,103,102,103,102,99,107,105,100,108,104,113,94,96,109,106,108,96,110,105,95,99,104,93,109,107,93,114,97,97,96,118,106,86,108,92,106,105,109,90,102,95,104,96,100,103,102,107,104,94,100,116,122,105,105,104,104,88,106,106,63,101,107,94,106,105,98,110,112,120,99,101,101,100,93,101,98,92,104,104,99,92,106,102,104,114,96,103,110,96,105,103,110,96,104,97,102,92,102,114,104,109,98,101,114,99,97,116,97,102,95,99,104,103,109,104,104,104,107,106,114,100,109,103,70,95,99,101,97,113,104,93,99,100,105,142,99,106,99,110,88,104,99,112,102,97,103,93,100,97,99,110,103,104,98,109,104,105,99,104,94,101,105,102,98,87,110,97,106,100,100,116,96,101,101,102,99,97,93,91,93,94,106,98,101,109,109,97,102,90,94,98,106,105,108,114,107,97,99,117,111,87,107,104,111,123,96,90,88,95,104,90,105,94,109,94,103,99,106,101,104,79,101,89,101,99,99,103,96,147,103,98,93,111,99,102,95,102,104,105,111,107,104,120,109,93,106,104,110,105,114,92,102,103,97,111,111,109,100,101,110,98,111,101,98,109,100,106,105,108,109,100,114,99,113,109,88,104,105,85,104,103,86,104,99,98,103,92,105,94,111,99,91,105,102,104,106,104,112,96,95,103,110,107,96,99,103,93,103,101,100,98,90,96,103,104,89,90,102,99,103,92,95,118,110,119,102,113,92,107,107,82,97,99,114,113,88,94,107,95,99,100,107,96,101,94,100,114,104,93,107,101,98,103,101,105,109,102,95,85,107,103,96,100,94,96,114,103,112,99,105,95,110,100,102,96,103,100,100,99,106,94,94,98,102,104,104,100,98,107,103,103,95,100,94,90,112,108,103,105,102,102,104,109,100,88,111,86,104,101,105,100,98,105,121,107,122,98,82,94,97,96,101,103,99,104,105,109,110,118,104,112,106,101,107,118,109,105,102,109,106,107,117,110,77,111,102,105,107,112,102,96,108,115,97,115,132,96,102,96,103,103,106,107,113,101,109,100,108,95,101,121,111,97,95,100,95,107,94,95,101,116,108,106,117,103,102,113,95,102,99,100,105,99,121,108,100,102,91,102,106,99,103,95,102,100,106,115,97,101,87,88,113,98,105,108,98,106,96,93,91,107,107,112,107,103,106,102,101,100,99,106,104,103,99,105,104,109,91,102,101,100,84,108,101,111,103,112,104,112,110,100,88,104,113,103,111,107,106,105,106,95,91,103,96,102,113,107,106,100,96,119,99,88,98,96,107,113,105,106,110,68,103,99,106,93,106,94,110,98,114,117,104,102,105,99,109,114,100,106,106,106,108,121,114,100,108,101,107,104,100,100,95,114,109,93,104,108,110,99,96,111,98,103,107,107,96,103,102,103,104,100,105,98,101,108,113,105,109,94,114,107,105,102,98,103,101,106,105,118,109,99,100,105,103,110,112,86,98,84,113,105,129,110,109,103,99,116,95,92,100,102,87,96,98,95,104,109,104,98,106,109,101,105,100,97,100,99,102,105,107,107,101,114,91,103,99,89,99,104,108,100,113,100,108,112,101,110,103,100,102,103,99,119,107,106,116,109,102,93,79,100,93,104,105,106,103,107,92,113,115,93,108,111,118,100,98,99,112,103,102,104,108,104,106,100,104,103,105,108,120,99,92,87,105,109,112,95,96,99,109,105,103,107,111,107,95,105,103,106,101,106,114,107,102,107,102,99,109,105,103,114,93,103,112,108,100,103,97,101,76,96,99,111,95,101,101,107,104,109,97,92,102,109,98,105,107,95,129,101,106,102,102,97,103,99,104,109,102,111,102,104,104,111,97,104,98,112,101,108,93,109,108,106,100,101,99,108,120,112,103,107,100,100,108,99,114,110,108,106,108,99,105,91,96,95,91,108,100,121,102,111,94,108,104,98,100,111,106,103,110,100,102,109,97,99,89,108,108,104,107,103,99,92,104,95,101,110,104,91,100,100,102,105,110,110,112,94,114,104,103,104,108,102,103,103,104,102,98,95,73,97,108,99,102,110,101,113,116,104,101,111,103,106,101,107,100,111,114,113,103,103,107,103,101,101,99,107,105,112,99,92,98,87,91,117,96,109,101,105,103,96,103,106,115,98,105,114,100,97,103,107,112,108,96,111,102,102,96,105,108,110,94,112,106,97,101,123,108,101,106,98,113,102,103,105,107,104,117,101,98,90,105,105,99,117,93,105,95,111,115,102,99,101,89,102,101,93,101,101,104,95,113,107,113,104,96,84,101,103,97,79,104,93,98,99,95,104,112,108,94,109,110,104,111,84,106,106,100,94,107,98,99,115,102,97,100,96,90,110,100,107,108,100,107,102,98,100,96,106,109,102,98,94,94,103,106,107,94,102,108,110,117,100,98,109,111,96,103,104,113,109,93,116,106,102,104,100,113,101,98,93,103,107,91,98,99,99,97,106,104,103,92,104,91,87,101,120,99,108,100,100,108,101,110,106,98,97,94,114,98,98,106,102,98,104,93,99,97,107,106,98,100,113,111,99,106,105,108,109,101,103,108,102,92,100,102,104,104,99,101,108,106,100,106,112,96,103,109,107,106,103,89,100,92,100,84,105,89,95,103,110,110,111,100,99,95,103,96,102,106,99,108,95,113,106,107,94,100,105,101,101,102,105,108,106,98,109,100,108,117,106,107,94,107,103,97,109,118,111,94,106,99,104,105,97,113,92,101,105,105,125,98,103,103,106,97,98,111,113,108,106,85,103,100,103,106,102,103,101,95,104,106,104,106,98,118,116,99,98,100,111,104,97,92,98,89,95,107,104,95,88,104,96,108,101,101,95,117,98,101,93,99,96,108,95,105,121,98,101,106,85,105,92,95,105,102,105,106,110,111,103,106,100,106,99,100,105,97,98,101,110,110,105,103,102,107,106,115,113,83,92,104,101,124,117,111,107,90,95,98,114,96,119,93,108,107,113,101,105,109,90,101,91,98,99,109,113,103,111,116,119,98,93,100,113,109,104,92,100,92,98,117,119,111,106,94,103,102,95,100,101,86,102,110,101,82,103,83,103,106,103,99,116,100,106,99,115,105,99,93,115,107,105,106,92,101,112,96,105,100,117,99,108,105,103,107,95,103,93,96,108,95,102,98,106,96,95,113,99,94,108,91,99,111,104,103,99,102,117,108,95,96,88,108,93,106,96,108,88,104,109,128,110,104,100,99,107,112,83,101,100,80,101,108,96,123,94,98,98,107,117,102,102,114,89,96,105,99,99,107,102,105,86,91,96,106,121,100,105,95,120,97,101,69,101,99,93,96,110,95,113,105,96,120,123,114,94,91, +447.48526,108,115,95,92,100,99,98,118,95,100,92,102,102,100,101,116,86,100,99,100,103,104,108,101,102,94,102,113,99,114,101,117,103,96,109,104,105,99,134,86,96,100,115,98,104,120,95,124,104,104,108,101,101,97,102,86,102,109,111,99,93,91,100,95,102,107,99,102,105,95,114,105,107,91,113,92,111,94,92,96,111,89,99,110,96,102,100,92,113,102,91,114,103,111,100,95,110,104,89,98,99,101,105,100,99,95,93,102,102,109,101,80,109,95,110,99,95,107,112,98,95,90,101,103,104,104,110,113,112,104,107,108,100,107,113,112,99,100,111,96,96,110,94,109,108,100,113,103,98,97,107,101,102,96,105,103,107,98,103,102,108,109,99,106,113,98,104,100,96,118,101,112,104,100,109,111,96,95,118,100,111,112,93,106,104,108,97,100,95,118,96,110,110,98,102,98,92,98,99,102,100,93,87,102,108,98,109,105,103,109,91,104,112,103,102,105,94,112,112,108,107,113,115,117,114,104,109,107,99,116,99,99,107,104,98,99,109,76,107,103,98,106,102,96,105,109,96,116,101,106,111,112,111,105,106,123,100,108,98,86,114,100,104,107,103,113,105,88,107,104,94,117,114,97,105,105,100,101,107,105,113,113,98,102,116,101,104,103,110,113,110,92,104,100,120,85,100,103,97,105,102,95,81,104,97,107,119,112,109,101,102,105,108,105,100,109,102,113,99,89,98,107,116,110,107,114,104,103,106,99,111,99,104,122,104,99,104,112,85,104,100,94,95,95,107,109,87,88,104,101,110,108,105,108,135,117,107,111,99,92,100,110,116,105,99,105,96,112,113,103,102,107,115,96,110,100,96,126,109,104,108,119,107,104,88,108,117,94,119,103,103,103,87,122,108,103,106,107,106,109,103,108,104,110,106,86,99,116,101,96,95,93,105,109,111,107,102,101,102,107,115,109,95,116,101,104,113,107,111,106,109,117,96,107,100,104,102,107,109,112,99,112,105,107,98,113,104,100,107,113,101,96,114,117,92,105,104,103,106,100,101,103,107,122,111,104,100,104,109,108,115,108,109,105,92,95,81,104,103,112,106,102,109,97,99,106,109,108,100,103,111,96,105,96,98,101,100,110,101,107,108,103,97,109,113,100,107,99,119,97,111,97,104,102,103,100,101,102,118,96,104,99,115,104,101,107,110,96,105,106,91,114,104,88,100,98,101,95,105,109,103,108,104,102,112,97,99,106,104,109,104,109,99,108,104,113,103,101,100,84,81,105,96,115,95,110,112,96,98,102,103,84,96,110,100,99,98,75,104,120,110,108,110,101,108,99,108,93,107,99,104,110,85,100,115,100,87,110,103,102,97,106,109,97,102,88,101,103,109,101,101,105,102,103,107,111,103,107,106,114,103,99,103,102,105,117,94,113,110,96,117,105,103,101,90,112,92,90,90,109,99,111,101,108,107,101,113,96,109,106,100,113,96,110,101,99,108,113,101,105,102,101,98,90,93,109,104,100,119,98,106,108,100,107,108,106,108,112,106,99,112,112,103,105,96,99,108,99,99,102,99,112,103,106,103,108,112,104,95,96,95,102,106,103,112,121,100,123,94,100,105,97,105,104,113,105,109,104,123,99,101,104,101,106,105,111,110,105,99,111,91,101,105,86,107,110,84,111,111,88,100,102,106,104,114,110,106,108,105,109,117,98,105,101,92,101,95,104,112,100,101,102,107,116,95,98,99,99,110,109,120,108,104,108,105,96,114,96,110,108,101,100,111,118,103,105,99,96,89,102,101,104,100,114,95,100,109,95,99,97,98,97,98,109,126,105,100,116,109,113,112,104,110,100,99,109,107,101,106,105,126,100,103,103,106,111,95,85,102,98,102,95,104,116,106,100,106,103,102,109,98,115,104,105,102,102,103,100,103,86,110,99,96,101,100,100,108,103,98,100,106,111,96,85,118,118,101,101,104,119,99,107,101,118,95,100,103,95,112,99,104,116,102,107,101,91,99,106,109,111,118,96,104,115,110,101,104,101,95,109,122,113,107,106,96,103,103,93,97,104,87,91,101,108,98,106,101,112,99,103,102,109,94,97,83,103,89,108,108,97,103,102,95,96,91,104,98,109,99,103,110,107,102,106,93,101,105,100,95,102,95,99,107,96,107,91,90,100,108,112,112,95,106,110,95,95,98,88,102,105,100,99,101,106,107,110,104,101,84,107,106,102,100,109,107,98,90,112,109,95,110,116,104,103,103,103,98,99,103,105,105,108,101,111,102,103,108,108,93,105,96,113,103,107,113,103,97,79,111,103,95,100,104,89,111,95,103,95,91,93,109,104,112,96,125,101,97,112,107,103,102,102,96,105,92,95,94,102,90,91,102,112,103,71,96,94,96,98,118,114,107,118,101,103,120,113,107,108,94,95,99,112,106,98,95,100,106,104,102,101,109,110,99,89,109,93,104,114,110,111,120,108,111,102,99,101,97,107,106,108,95,101,104,98,103,98,111,94,102,96,97,102,115,97,88,102,102,107,103,98,96,103,102,96,92,99,104,110,99,99,106,108,99,99,108,108,108,106,101,99,118,101,102,104,91,102,111,109,98,94,122,84,108,102,104,108,96,102,105,117,94,92,108,94,102,106,100,104,116,117,107,97,109,107,99,102,113,77,106,105,98,108,107,118,106,117,120,109,91,97,108,112,108,112,106,118,110,109,112,90,106,115,99,119,88,100,112,98,111,104,108,108,109,104,113,138,106,106,107,100,106,106,114,85,100,106,103,96,108,116,111,111,105,113,109,96,101,103,104,108,105,113,109,108,99,102,107,98,108,96,105,66,104,90,114,110,104,116,111,104,98,100,105,113,109,91,104,117,98,102,106,99,112,112,105,96,102,115,107,100,109,82,103,104,95,112,118,91,104,91,109,113,107,106,99,106,103,104,107,99,107,98,102,101,105,102,102,104,87,98,108,98,91,97,102,107,93,108,126,104,102,105,104,106,113,120,111,112,94,96,100,99,98,110,95,113,102,96,102,111,98,104,106,106,102,106,103,107,113,108,96,107,106,121,100,91,104,101,103,105,95,111,125,103,107,100,102,107,93,100,110,117,100,116,101,88,95,107,102,107,101,89,110,108,96,106,100,102,106,105,99,105,99,111,99,104,97,102,98,104,109,90,106,112,100,113,110,112,113,106,112,108,104,105,105,102,118,106,89,110,115,108,94,103,109,98,91,94,103,105,119,100,103,114,100,108,102,110,109,95,103,98,105,108,100,100,81,104,119,120,105,100,99,107,116,99,104,98,101,95,113,112,109,111,101,109,104,107,98,87,103,105,97,112,93,108,102,109,110,99,104,102,115,109,104,105,107,110,97,97,103,102,102,100,103,111,103,107,109,108,72,100,108,106,99,100,100,103,106,104,95,99,110,99,96,102,103,106,96,108,106,82,106,93,106,106,108,103,100,99,103,104,105,99,97,110,105,113,114,101,109,93,105,95,115,108,121,104,101,100,111,106,94,107,97,109,110,114,101,114,103,118,100,106,100,111,106,101,105,109,99,111,104,92,103,107,102,99,107,78,108,96,98,96,106,102,109,105,109,104,96,93,100,97,95,95,93,100,104,98,108,104,117,97,96,89,106,93,102,107,105,97,103,117,105,101,100,109,108,106,110,110,113,110,91,105,72,101,104,99,109,98,94,102,105,108,91,100,123,105,105,98,105,95,110,105,107,111,116,100,104,103,98,105,105,99,87,111,99,102,104,109,99,107,106,95,106,92,100,106,103,112,98,92,95,116,101,119,102,110,101,94,106,98,97,102,107,104,95,110,94,108,93,104,102,107,98,91,113,83,104,109,106,105,97,101,110,109,104,112,90,103,102,100,104,103,95,99,108,101,99,99,98,93,106,98,104,91,108,95,102,98,106,101,105,105,87,120,105,98,103,112,96,111,91,97,105,101,96,106,109,98,117,101,103,106,102,111,103,107,106,103,96,108,117,101,99,103,95,102,109,95,68,108,103,97,104,103,109,103,103,97,89,114,96,105,129,104,115,94,100,107,107,103,104,113,107,105,99,111,108,101,101,117,120,120,96,108,109,111,99,108,98,118,105,116,104,110,105,103,98,93,106,109,101,101,96,106,98,100,98,101,105,94,94,108,95,94,100,103,118,109,108,110,108,101,92,116,106,91,110,101,100,113,111,84,102,109,109,117,101,102,104,108,109,99,102,107,100,103,95,106,95,94,98,104,94,107,109,99,111,107,108,103,113,103,74,94,102,106,102,98,96,95,105,95,99,100,109,100,108,105,103,95,90,102,115,98,76,99,120,99,96,113,104,106,100,94,116,98,101,101,94,115,108,106,112,107,100,95,99,110,101,97,101,106,105,100,96,111,93,95,96,107,103,112,101,102,94,106,118,104,99,95,97,94,109,102,97,108,108,96,89,88,104,102,119,103,105,98,96,105,94,105,98,105,98,106,96,99,96,103,103,103,94,108,106,99,104,92,101,106,107,105,96,103,110,101,107,104,105,65,99,101,97,97,104,105,102,96,89,97,105,90,100,101,112,107,98,103,96,99,101,107,112,114,106,99,99,104,105,94,99,115,99,100,104,109,106,95,107,90,81,100,94,99,104,131,100,102,98,92,101,106,97,108,99,98,106,100,99,90,102,110,101,97,100,99,113,96,112,102,114,84,108,103,102,91,105,105,92,104,81,105,105,99,99,99,98,101,117,87,99,110,92,104,100,95,108,95,100,102,93,91,98,79,102,113,102,107,105,99,102,93,102,110,85,109,94,92,103,99,106,97,81,113,101,103,101,103,108,100,110,95,98,95,94,109,110,93,101,125,101,89,94,99,80,104,91,95,105,105,87,97,101,91,90,105,103,107, +447.62561,89,101,100,96,98,109,106,100,96,105,109,96,95,84,104,101,116,115,94,102,94,101,85,103,95,112,107,106,116,88,102,106,121,91,105,96,95,100,113,95,105,110,89,99,99,118,108,110,113,105,106,105,107,108,93,93,103,85,86,104,96,101,102,96,99,102,90,88,98,95,108,114,97,105,99,104,88,104,103,103,95,105,98,116,94,98,91,99,99,98,82,100,97,105,86,97,106,109,105,97,95,75,89,90,105,99,93,99,101,104,101,103,133,103,95,99,104,108,111,101,109,110,112,103,100,118,107,104,108,100,103,97,97,101,78,101,104,98,98,106,87,113,97,107,101,105,101,100,109,112,108,104,95,92,87,83,103,82,101,102,105,99,110,91,99,83,102,102,104,87,97,106,103,106,104,96,107,134,95,109,100,112,105,107,102,96,100,109,96,97,109,109,95,109,105,106,96,100,101,101,101,95,94,90,105,97,99,95,95,101,95,108,98,102,109,104,106,96,97,95,102,116,107,100,80,106,107,106,101,88,102,99,104,98,102,106,93,99,105,94,107,124,106,95,93,90,92,89,96,111,108,116,106,99,98,94,90,114,100,99,85,102,93,97,93,95,111,99,92,97,114,69,92,105,114,99,99,107,103,92,101,77,104,101,106,92,95,104,93,98,99,103,70,98,102,107,102,104,100,98,101,99,95,105,92,106,98,107,104,113,81,100,99,104,106,104,101,103,92,98,99,99,104,94,113,94,93,89,119,102,101,94,113,88,105,96,104,109,99,110,104,114,103,106,110,104,105,99,115,100,95,98,109,112,99,103,102,106,110,100,104,93,95,99,100,114,106,99,90,105,109,94,98,101,120,106,114,101,102,104,104,106,95,103,84,91,94,106,108,100,101,91,92,99,102,105,102,99,98,100,94,108,106,101,105,92,104,90,95,112,91,88,106,90,110,78,99,69,104,105,95,104,98,118,113,100,103,109,99,113,110,109,101,105,105,104,95,118,100,99,99,101,105,106,97,96,101,95,96,106,101,94,113,103,102,105,103,111,113,103,99,101,97,108,109,106,95,105,95,102,96,119,111,100,103,94,82,118,104,104,106,122,112,105,105,100,98,101,106,102,103,106,100,109,81,97,109,94,111,107,111,95,103,107,105,79,102,94,92,104,120,115,117,106,97,117,74,107,108,97,85,101,107,98,89,116,114,102,105,107,90,109,93,107,94,99,106,103,111,119,106,110,94,98,109,108,99,99,102,92,99,102,106,103,101,104,105,108,113,108,105,108,98,114,109,95,99,107,109,101,87,113,106,108,102,102,78,105,97,94,104,103,93,97,110,108,100,107,100,106,94,113,96,109,85,105,94,88,122,93,107,100,103,104,103,108,100,109,105,101,99,110,104,107,108,97,100,105,106,104,94,108,100,94,104,107,109,105,96,112,119,93,98,102,87,100,100,98,114,105,107,111,103,94,91,104,97,99,101,100,86,109,104,104,98,105,104,105,91,98,115,98,106,98,101,95,104,90,103,100,96,108,113,86,104,114,94,99,117,113,103,121,101,98,110,102,105,114,94,120,109,95,95,117,106,108,104,94,108,93,100,92,95,99,103,107,104,108,102,98,112,109,90,99,95,118,98,103,106,106,95,109,111,106,93,102,100,97,99,105,113,115,90,99,90,104,103,91,113,101,103,105,103,112,89,106,97,99,95,100,100,104,103,110,105,99,97,98,104,111,114,101,94,85,89,101,103,91,108,93,91,103,97,104,95,112,101,103,116,89,100,108,95,94,108,112,87,109,99,111,103,121,112,107,104,101,111,115,106,107,97,104,104,99,120,131,100,102,99,97,106,112,92,105,112,97,105,123,115,98,93,113,98,110,99,108,98,96,96,98,106,91,102,89,97,112,109,98,98,106,95,94,95,99,100,108,108,102,99,102,106,99,93,107,98,90,99,98,101,99,102,95,105,98,103,95,102,108,104,96,107,116,104,105,110,107,122,100,112,98,99,104,99,103,102,107,108,106,105,103,100,96,100,99,102,95,99,102,99,97,98,102,98,96,97,99,106,103,113,95,105,106,113,94,99,102,114,104,105,104,102,102,80,112,101,91,101,104,105,90,102,104,103,88,99,114,96,104,109,100,103,104,99,104,113,108,107,104,98,104,104,111,115,107,97,99,98,106,103,107,122,107,89,92,97,105,104,103,98,101,95,86,98,101,94,106,101,104,108,106,109,95,106,114,102,105,97,95,102,102,102,86,110,104,104,100,99,98,104,94,101,96,105,99,107,100,112,98,100,106,100,88,98,99,95,102,114,104,101,106,101,115,105,102,104,107,106,100,105,99,106,110,86,106,124,95,102,104,106,101,94,101,97,113,103,112,95,115,96,109,111,101,109,109,96,106,95,104,104,99,96,108,110,107,104,108,92,103,103,92,101,105,117,93,113,105,116,116,120,97,99,97,98,108,111,108,99,113,106,100,112,96,101,118,93,104,101,91,120,101,90,110,103,97,91,107,103,110,107,103,109,116,93,100,108,113,97,101,91,109,109,97,106,94,98,101,112,107,111,90,109,108,112,91,94,89,116,92,102,91,97,100,94,100,100,97,96,100,104,115,106,99,103,109,107,110,111,100,109,94,100,97,107,95,98,106,109,97,106,105,105,99,83,104,111,103,102,87,109,95,88,112,102,102,103,103,100,103,95,105,103,101,113,104,101,99,99,97,100,90,112,107,110,109,107,102,113,95,98,105,96,96,102,80,95,109,95,115,100,110,105,97,98,94,104,107,101,103,93,103,109,91,107,117,99,110,104,115,98,110,88,105,113,97,102,106,103,102,108,112,110,104,98,107,107,94,94,109,103,111,107,98,102,106,111,96,93,111,100,110,113,99,97,116,102,102,98,96,109,111,113,108,119,102,109,101,100,97,109,110,104,105,105,105,96,102,114,90,112,104,101,102,104,96,98,95,115,113,101,103,96,94,102,94,102,109,112,104,107,106,98,105,107,98,102,99,109,110,100,112,111,106,103,133,83,107,115,117,76,108,105,107,115,102,99,88,106,104,107,107,112,107,106,101,94,88,111,111,104,101,72,96,102,111,96,98,99,99,110,97,104,100,103,116,106,96,94,100,106,105,101,99,113,89,102,109,112,102,100,96,78,96,104,102,99,109,109,101,118,108,112,106,103,106,92,99,102,102,111,95,105,98,103,113,109,105,100,101,106,110,107,105,89,94,105,94,100,100,96,101,98,118,100,106,97,109,109,98,100,95,108,100,98,96,101,98,89,96,92,90,105,86,110,105,99,103,105,95,105,97,111,96,97,102,111,110,97,104,105,101,87,99,77,94,95,112,86,95,117,96,97,101,107,110,99,90,97,102,101,100,104,84,96,94,96,98,108,88,99,105,97,105,99,99,91,105,104,100,98,106,101,98,96,100,104,108,104,104,107,95,109,100,107,94,93,100,88,98,112,100,107,109,104,102,90,106,102,101,104,99,103,109,124,113,96,103,99,103,90,105,110,100,102,112,102,96,108,99,97,104,105,109,102,108,99,103,90,119,102,99,102,101,91,109,108,101,123,106,100,94,81,95,94,111,102,86,106,100,95,103,102,99,111,108,107,104,103,98,102,106,103,105,91,95,97,100,101,112,99,104,100,109,109,118,95,95,97,92,103,97,114,102,109,113,94,115,104,110,102,102,104,96,112,87,103,103,94,108,93,99,99,124,105,96,105,99,99,100,96,103,100,93,98,112,107,96,111,100,117,106,108,98,94,100,98,96,101,94,100,120,96,102,96,109,101,94,98,96,100,101,106,102,113,92,106,109,99,106,98,92,90,109,106,86,98,107,111,97,106,91,98,102,96,96,95,101,103,103,101,99,106,92,98,89,103,89,104,99,95,98,95,97,100,99,94,116,97,87,102,96,91,88,108,101,105,101,95,102,109,107,94,98,104,116,101,102,111,93,98,94,101,119,96,101,100,100,106,106,107,106,113,103,92,102,102,88,93,100,100,95,104,105,105,107,105,107,113,102,101,96,95,109,100,96,111,107,104,109,105,104,106,100,107,95,102,110,102,106,110,94,106,99,99,99,99,111,104,99,103,89,115,107,93,98,101,105,109,108,78,110,86,89,91,116,95,105,94,96,113,105,110,97,103,103,108,106,98,97,103,98,98,107,104,104,97,101,83,109,113,111,98,113,99,113,106,95,99,95,93,104,104,112,99,100,99,93,111,105,94,101,99,97,107,132,97,97,105,112,104,102,100,96,122,107,90,117,99,105,106,105,105,98,95,100,110,104,92,108,111,108,101,106,99,102,105,100,107,104,92,112,112,109,117,94,99,105,97,100,98,111,99,93,97,105,97,114,99,103,108,85,93,98,98,110,83,110,105,110,106,93,92,80,101,100,98,120,106,99,103,97,114,110,98,104,103,95,96,105,110,97,111,102,81,112,99,110,77,118,102,107,106,105,105,83,103,99,100,108,109,98,101,99,96,97,112,106,107,113,98,92,91,101,117,91,97,99,113,102,107,111,101,86,94,97,109,103,112,105,105,94,113,104,106,103,94,107,96,97,96,92,100,101,102,106,105,115,101,121,112,115,111,102,106,88,95,101,102,113,96,106,123,106,117,102,108,99,113,112,101,105,90,93,106,99,87,103,86,108,101,96,96,99,103,86,114,94,86,92,97,110,108,112,97,104,101,95,105,102,105,93,89,112,103,93,81,96,104,95,115,95,108,97,112,109,92,109,103,85,101,87,86,104,86,108,101,127,111,109,103,116,104,101,96,108,98,98,64,107,103,109,99,99,105,96,111,98,99,97,100,96,113,103,83,97,100,100,79,104,106,104,101,90,98,95,104,110,99,97,99,110,97,105,93,103,103,103,99,94,104,93, +447.76599,101,101,101,91,99,92,120,98,99,100,106,99,103,98,101,111,102,108,110,91,102,96,106,105,99,106,93,103,99,108,104,103,103,106,115,101,101,92,100,109,95,99,104,89,95,100,94,116,102,96,87,101,102,103,102,109,105,78,103,99,93,100,107,98,109,108,108,104,104,94,88,107,100,99,92,107,72,100,99,96,96,99,100,91,114,100,93,114,89,97,103,103,81,119,103,101,104,101,101,111,108,99,105,102,103,108,94,103,111,95,97,99,107,101,97,102,101,98,113,96,104,116,109,101,95,99,96,105,100,101,101,100,108,99,94,98,114,96,102,103,100,90,91,100,95,101,83,115,97,101,99,97,107,94,95,110,111,108,98,90,101,107,111,102,104,100,100,103,113,104,90,101,102,103,98,104,89,106,109,105,120,103,106,103,110,107,98,95,114,112,95,105,103,117,97,116,112,97,90,109,107,107,103,95,97,106,96,109,105,110,105,100,112,100,104,101,99,106,74,102,110,107,113,99,109,111,101,114,115,112,100,104,96,100,113,99,103,87,101,97,105,94,102,105,99,108,108,98,104,108,103,98,82,103,109,95,100,97,119,99,89,96,112,113,99,95,110,96,100,100,91,102,101,102,104,102,112,113,98,104,112,104,105,113,104,98,92,94,105,109,100,97,108,101,107,109,125,98,100,88,99,94,92,107,104,103,102,109,92,112,99,109,103,102,108,98,111,98,112,101,112,98,107,103,106,90,93,101,98,113,102,93,105,104,116,104,100,103,109,106,107,103,100,105,97,105,100,113,112,106,99,102,85,97,113,107,109,110,113,100,115,108,100,101,98,93,113,114,110,96,104,103,104,109,103,98,99,101,99,100,101,90,111,102,97,103,84,112,115,104,119,91,112,102,106,99,98,108,101,105,107,99,96,83,99,100,99,101,93,101,97,92,95,100,95,96,105,104,105,98,99,106,103,103,97,113,109,109,96,113,105,101,102,101,108,101,95,111,92,115,113,105,95,116,96,109,103,96,110,100,108,113,104,106,76,107,99,103,96,107,101,93,103,107,85,104,104,112,109,105,128,106,109,99,100,102,112,117,100,103,132,102,117,88,108,90,103,91,103,90,103,123,94,94,100,106,103,97,102,106,106,105,100,114,108,104,92,112,105,107,116,104,98,111,106,96,106,99,116,103,100,113,115,115,108,108,110,90,109,111,108,109,115,92,99,112,109,105,107,113,104,104,117,107,109,100,105,110,108,106,108,102,112,106,98,102,101,100,107,105,105,108,109,114,106,97,105,100,100,99,98,103,101,103,104,104,94,102,112,107,105,105,108,94,110,78,99,111,110,100,103,106,106,110,95,104,111,110,103,112,98,106,115,90,100,98,107,112,102,107,109,108,106,116,101,103,106,95,102,110,115,110,100,103,97,114,103,104,100,114,107,117,103,110,108,106,99,103,98,110,113,107,100,105,107,101,104,100,127,122,106,101,105,113,105,93,108,118,110,96,111,91,108,100,108,86,101,109,107,99,109,105,110,104,99,111,109,104,120,98,122,102,109,98,120,96,93,100,113,106,100,105,109,103,105,94,95,107,100,97,106,99,103,106,101,107,113,102,116,130,104,112,102,99,101,92,95,107,98,100,112,115,97,125,92,102,103,100,101,106,111,99,91,99,99,99,103,97,102,100,118,104,107,97,86,102,111,95,95,106,106,109,100,104,111,91,108,104,103,110,104,99,95,96,105,101,86,100,106,108,96,104,100,101,101,106,94,103,87,95,108,100,113,106,97,110,105,117,113,104,102,107,113,104,105,100,105,114,120,115,102,103,93,100,92,101,108,110,102,104,117,103,111,99,102,103,104,107,107,99,95,103,140,113,105,99,100,97,102,139,108,107,109,102,100,102,106,95,79,97,80,108,107,105,110,102,67,104,93,91,133,104,101,103,94,95,88,104,104,115,112,89,104,105,103,111,101,106,105,108,100,113,109,107,108,105,100,106,111,116,109,95,118,108,110,101,95,100,101,106,94,114,109,101,107,96,103,98,102,98,100,103,84,103,103,97,105,112,96,104,105,103,81,105,102,98,96,98,97,98,123,81,121,113,104,100,102,108,106,108,104,103,114,100,103,100,105,93,104,93,102,105,105,112,104,95,109,105,94,107,99,104,109,106,109,99,110,108,96,104,116,117,109,90,100,103,106,87,109,96,107,104,109,94,96,102,99,108,106,109,104,105,108,119,95,100,101,103,112,111,107,102,101,100,87,105,94,99,102,118,85,113,102,109,101,95,104,100,102,102,102,94,102,99,111,108,94,104,110,121,94,97,110,107,102,92,97,109,95,104,97,98,100,109,130,105,103,104,98,95,104,105,101,105,108,106,113,101,110,89,102,107,101,100,110,103,105,117,92,99,99,92,107,94,99,98,107,109,106,109,95,105,100,111,97,105,115,118,109,90,104,90,113,103,119,90,94,102,117,108,102,108,113,102,98,109,96,99,111,99,106,103,106,102,92,110,113,109,98,111,98,107,124,100,106,89,80,102,115,88,102,103,96,106,103,105,107,99,100,98,96,121,107,108,110,96,110,109,109,105,110,101,102,106,90,105,97,115,106,107,111,109,109,106,105,100,101,109,106,116,133,97,102,107,112,106,100,102,110,105,93,111,107,118,107,109,98,93,108,110,119,101,88,113,110,108,105,96,88,102,106,108,110,111,97,111,105,101,106,98,103,83,107,114,123,103,109,107,113,112,107,105,102,100,109,99,105,128,103,106,100,102,95,100,116,94,98,109,111,109,110,99,108,107,99,112,113,99,91,98,92,104,103,95,100,95,98,114,109,109,113,106,101,102,109,101,104,107,103,103,101,73,101,117,107,97,103,108,104,105,107,103,106,108,98,98,89,101,100,110,99,95,97,103,98,105,91,89,105,108,88,102,103,93,105,69,101,100,93,103,112,106,100,106,98,99,117,107,109,106,102,102,105,93,104,101,101,105,101,106,102,101,106,110,102,92,104,87,101,92,114,94,94,106,124,116,104,98,98,100,91,123,106,101,101,108,107,92,95,99,91,104,103,105,98,103,119,102,100,95,101,106,94,98,123,110,113,104,107,103,109,96,103,104,104,111,104,113,104,105,101,105,113,99,97,99,111,95,102,103,85,104,106,95,105,104,107,90,111,101,106,99,92,97,93,115,107,96,101,113,98,105,111,95,107,99,102,104,99,107,98,116,89,107,107,103,112,105,110,98,109,106,108,105,101,104,112,107,103,91,107,104,99,103,102,105,104,89,105,114,112,109,99,99,103,87,116,98,79,114,106,102,101,109,104,106,99,106,103,98,115,98,99,98,105,111,94,96,106,95,97,102,98,99,98,93,108,103,100,96,111,102,106,103,102,98,100,102,84,103,96,100,103,111,88,103,101,88,91,105,106,90,104,102,101,105,109,91,91,106,101,102,108,101,91,110,88,97,100,98,116,96,109,107,96,105,96,91,119,96,92,100,85,106,113,105,77,100,102,99,100,103,106,108,109,109,87,107,102,105,98,105,102,100,116,103,104,105,107,113,114,119,79,113,87,102,99,99,98,100,93,100,105,68,103,116,114,103,100,99,100,103,108,107,98,104,96,97,102,100,99,98,100,99,99,100,106,99,107,106,93,103,107,105,106,102,98,95,103,90,102,107,109,117,93,97,88,104,99,100,101,89,121,101,116,89,106,110,97,97,119,110,98,99,108,110,109,96,93,107,99,79,107,97,103,109,98,103,106,104,108,98,110,110,102,105,100,95,92,97,109,104,101,105,104,105,83,112,89,101,110,88,98,101,104,91,78,110,102,96,98,102,102,102,104,99,91,100,101,102,108,110,103,109,101,112,102,101,99,122,95,99,93,100,94,112,103,96,98,92,117,106,88,98,97,102,100,93,102,98,101,102,107,98,104,101,92,123,99,119,105,109,97,116,104,92,101,96,116,100,102,105,102,108,107,88,106,107,101,109,101,92,99,110,104,104,92,97,91,100,104,110,90,97,108,101,109,102,106,99,108,98,116,105,90,100,113,112,120,90,98,91,77,99,107,105,99,98,108,103,103,101,102,106,105,109,103,106,101,106,112,96,60,91,114,99,105,95,94,100,62,95,104,100,99,103,102,110,113,106,116,97,100,89,101,107,106,100,101,110,113,101,109,97,97,95,112,118,113,95,88,110,107,106,99,86,99,104,92,95,102,102,106,105,98,99,100,98,98,112,103,111,110,103,99,103,96,98,96,111,104,95,114,97,96,95,109,98,94,95,101,108,103,100,100,107,104,99,95,110,106,103,111,95,106,112,105,112,105,98,117,96,103,94,103,105,91,113,114,96,100,104,109,102,104,97,96,105,108,100,106,110,101,105,102,107,110,103,100,92,99,101,101,99,102,97,111,107,103,102,107,107,106,103,100,100,86,99,96,117,95,104,92,100,107,93,116,99,108,95,94,106,102,112,103,100,112,93,102,100,89,88,97,102,107,106,126,102,89,87,99,95,103,111,108,95,100,102,104,106,99,89,94,95,92,105,95,99,94,94,98,107,108,93,103,110,101,116,92,115,84,102,100,99,111,98,104,98,102,100,95,107,98,98,103,96,106,97,94,105,115,95,109,108,97,96,103,105,83,96,101,96,107,106,92,107,96,77,116,87,100,105,104,119,100,97,94,101,109,92,96,97,102,94,108,96,104,99,106,104,96,111,111,108,107,79,97,92,103,106,114,106,94,115,110,114,100,100,97,95,104,108,98,94,116,110,108,94,109,94,101,100,100,106,102,89,96,105,92,105,99,101,89,109,116,105,106,115,93,107,115,103,98,117,99,88,87,100,117,87,116,87,95,99,97,109,96,108,109,100,110,88,110,115,105,105,102,102,99,100, +447.90637,101,116,102,102,67,115,106,97,106,99,100,98,97,91,111,87,102,109,98,101,110,100,101,109,105,91,96,99,90,103,102,107,105,99,103,102,104,107,103,96,103,91,95,108,100,125,101,106,96,109,93,103,104,110,97,103,105,93,119,99,102,104,97,109,100,98,110,111,94,95,103,117,100,111,71,79,101,111,119,95,112,99,110,106,110,106,104,109,100,77,113,106,104,96,91,108,98,107,103,100,119,100,95,102,111,92,113,105,107,110,95,105,99,100,88,103,102,95,91,104,101,102,102,108,102,109,95,98,101,94,101,109,109,108,106,96,114,98,94,105,103,96,96,104,96,97,108,102,115,110,94,98,104,101,100,96,101,102,100,91,92,107,111,116,100,104,102,105,110,107,108,113,107,101,113,95,108,94,113,100,113,106,100,101,102,106,79,95,106,97,96,97,104,103,92,94,93,114,100,112,103,96,91,115,99,105,64,92,104,116,92,99,102,98,103,94,101,95,104,100,102,119,109,91,90,110,104,106,103,95,95,99,105,106,107,91,100,100,104,107,104,111,114,88,91,87,117,113,111,96,98,109,103,93,109,103,94,97,94,96,112,94,108,103,100,108,103,100,93,109,107,108,102,112,102,107,95,100,124,94,97,99,102,99,106,109,107,93,103,103,99,100,106,107,95,104,97,107,97,97,103,119,91,107,101,105,110,112,101,112,96,106,101,99,102,99,115,99,79,113,104,100,102,99,100,110,99,95,120,103,112,91,99,103,99,87,107,101,105,109,114,105,104,91,97,98,93,105,112,99,112,106,112,98,97,120,107,114,99,103,106,97,101,104,89,97,83,107,115,124,109,127,122,108,110,102,125,113,103,93,114,102,108,104,98,111,110,94,110,98,112,92,101,111,106,103,102,100,99,98,106,102,111,92,108,83,102,95,96,94,101,109,101,94,117,98,100,105,102,105,100,95,97,109,112,90,104,112,104,99,101,108,101,95,100,91,108,101,97,100,112,96,103,114,111,110,112,91,113,99,101,99,108,91,98,108,101,104,105,96,92,103,88,110,96,106,96,104,108,101,93,104,93,114,116,102,107,109,106,102,98,102,94,96,109,117,107,111,109,102,96,99,113,96,100,105,96,105,100,100,104,100,103,104,105,95,94,94,110,91,110,96,116,109,109,103,102,100,95,99,104,99,124,111,111,99,114,114,99,100,106,104,100,96,103,99,105,101,101,96,94,98,101,105,111,95,97,104,98,93,96,110,110,100,105,101,99,101,104,102,104,87,99,110,120,101,112,96,105,99,96,97,113,110,106,90,102,108,120,103,73,100,104,105,110,107,102,97,101,119,103,112,110,96,80,109,105,109,101,105,96,103,96,97,104,127,119,100,105,101,103,102,111,120,109,100,103,103,106,105,103,99,85,99,110,108,99,108,105,109,105,99,95,106,103,109,106,79,106,92,105,105,104,101,101,102,101,104,120,111,98,112,94,114,113,108,99,112,96,106,101,103,110,98,101,101,106,99,104,98,101,99,105,90,82,111,107,108,100,101,116,101,115,106,107,98,100,98,95,105,105,113,101,109,101,101,98,117,91,100,99,110,101,95,100,105,102,113,102,106,103,104,102,104,97,102,107,112,90,94,95,104,100,113,101,102,114,105,100,108,88,109,94,109,103,98,96,104,112,97,103,100,111,103,113,102,111,105,93,105,105,98,99,102,107,100,104,101,118,80,98,111,107,116,96,104,99,96,113,97,111,112,112,106,105,103,108,113,106,99,125,101,112,106,106,79,115,95,108,108,92,96,110,99,106,100,101,111,115,93,100,98,110,107,109,104,97,109,99,97,117,98,106,95,102,100,115,108,100,99,103,108,98,102,103,106,111,102,95,106,110,108,107,112,117,99,111,107,87,97,100,98,115,104,95,101,94,98,105,97,107,100,100,107,114,103,123,110,97,101,102,116,104,95,105,100,103,105,105,107,104,98,87,104,102,105,94,107,118,90,100,86,104,103,113,109,95,102,101,117,117,111,110,101,117,91,112,102,103,100,110,103,106,90,116,108,101,95,97,107,103,101,113,97,108,102,91,111,107,95,103,105,110,118,109,96,92,106,92,102,94,114,111,107,109,106,98,106,109,110,80,102,104,99,104,98,104,86,98,102,102,96,104,104,91,97,86,114,99,104,102,108,107,93,108,111,101,100,91,104,101,98,99,96,98,115,95,109,99,95,100,105,102,106,111,96,100,107,102,111,119,102,127,109,99,106,107,99,103,102,99,95,96,100,112,106,107,94,97,94,95,97,102,108,96,114,106,99,112,101,116,113,96,105,113,108,101,102,111,108,99,106,102,93,110,104,103,105,94,93,102,111,95,108,103,105,105,116,91,105,105,108,115,104,113,109,109,102,99,93,94,114,81,88,90,106,118,104,104,94,95,116,105,104,97,100,106,99,102,92,97,106,105,103,116,110,100,91,105,105,99,105,100,100,102,110,96,110,105,115,109,104,116,101,76,102,104,96,94,100,90,100,110,116,111,89,88,103,118,109,97,88,102,97,118,95,95,112,93,101,101,110,95,99,114,107,97,113,109,107,104,102,109,106,117,92,106,102,99,97,101,99,104,124,108,99,121,102,116,98,106,97,123,92,102,98,98,103,102,98,111,96,105,107,97,111,98,98,108,99,101,103,98,105,109,105,114,107,100,104,105,104,101,103,111,112,101,100,105,106,89,109,103,104,105,106,106,112,110,108,105,102,102,105,101,108,100,112,110,111,108,119,106,102,86,112,104,108,95,107,100,96,94,117,97,98,106,110,105,119,112,105,113,112,105,102,101,98,107,99,107,113,101,112,101,100,106,121,108,101,105,105,98,105,120,97,114,109,98,114,75,104,100,112,106,86,102,121,105,105,96,110,109,109,105,101,109,111,97,102,99,99,113,96,102,91,111,102,99,111,100,106,87,99,98,85,104,109,104,101,98,101,114,105,103,109,103,95,101,106,141,97,97,94,98,111,113,103,102,103,113,113,105,103,114,102,113,105,100,95,92,101,105,99,100,105,99,98,102,105,100,90,95,93,110,109,97,105,106,115,100,113,91,108,101,103,108,107,119,97,114,91,103,118,94,105,106,102,98,98,111,100,101,106,117,113,91,94,114,109,112,106,98,113,112,105,97,107,111,107,115,95,104,118,98,111,109,105,97,99,100,121,101,102,116,107,102,96,111,99,104,104,95,93,108,109,74,98,117,108,98,104,118,109,108,108,111,102,99,110,99,99,109,98,104,105,104,98,106,98,112,97,92,108,112,101,115,104,112,100,105,128,92,117,93,114,95,125,90,96,114,103,83,104,111,99,93,99,113,102,99,101,105,111,103,104,103,93,117,106,102,93,99,106,86,117,103,109,100,104,106,108,120,95,111,109,117,107,79,106,108,97,99,94,99,98,98,115,90,110,105,94,109,105,81,98,104,99,85,101,101,105,108,113,98,107,107,103,110,100,104,97,100,116,106,100,104,113,98,100,105,102,109,104,102,109,106,99,107,95,109,97,102,103,105,100,98,102,124,104,110,105,108,117,103,108,110,99,103,98,94,107,91,109,117,96,106,110,106,111,105,97,98,103,113,105,108,113,110,109,96,116,111,103,100,87,107,92,100,99,113,100,117,99,114,107,100,102,103,96,110,105,116,102,105,102,106,95,109,94,106,97,98,111,104,97,106,113,100,108,89,104,105,98,108,108,108,106,105,104,98,114,105,98,106,105,123,91,106,106,103,90,102,102,95,106,116,101,95,88,114,94,90,104,107,109,114,101,106,108,107,107,106,104,99,100,100,103,94,108,102,113,117,113,101,112,113,97,96,103,103,121,106,98,96,95,107,104,107,101,102,106,111,106,104,103,103,99,100,102,103,108,98,99,109,104,110,102,106,98,106,109,106,100,100,111,100,103,113,97,97,105,94,111,100,113,101,111,110,106,104,103,105,100,102,99,102,107,93,109,100,120,102,99,103,104,95,109,103,104,99,108,105,109,108,105,109,84,115,98,111,113,98,95,101,108,99,108,112,95,98,98,109,100,97,99,105,113,102,108,106,108,100,112,111,116,107,97,104,95,109,97,100,106,108,108,112,103,109,106,105,110,92,95,103,105,94,102,117,100,106,77,89,90,99,98,68,104,100,109,113,102,107,106,108,111,110,105,105,106,106,112,108,116,102,92,108,103,107,107,117,123,111,105,108,114,93,111,87,99,101,95,100,97,108,106,111,103,99,109,117,102,108,109,102,105,96,113,110,100,104,102,96,99,99,106,102,83,113,102,113,105,108,98,112,97,89,98,102,99,106,97,102,97,103,93,99,99,91,105,104,96,99,101,107,100,108,93,103,95,111,106,105,103,106,111,112,104,105,102,112,96,115,94,102,103,94,112,97,103,100,113,121,99,108,99,102,100,79,100,105,103,99,96,108,100,94,108,106,101,75,103,107,106,100,107,109,95,112,102,88,108,97,118,110,110,109,103,101,86,100,95,101,96,100,96,101,88,104,117,99,104,97,104,97,100,104,96,101,102,101,103,106,101,94,109,113,92,98,94,102,96,99,99,109,105,108,99,112,108,78,109,103,101,96,108,99,112,105,105,99,107,108,102,102,84,128,102,111,69,93,92,119,99,102,103,109,107,100,97,109,104,116,102,100,104,105,101,103,96,114,102,103,94,100,108,101,96,101,103,103,91,112,92,113,101,101,96,117,116,118,108,95,93,94,109,103,103,108,107,100,102,103,102,93,103,105,94,116,111,102,85,83,99,105,110,94,74,104,104,103,96,115,102,117,109,100,84,101,104,102,103,98,103,113,110,91,107,98,86,96,111,109,88,114,100,92,100,104,99,93,97,100,100,93,96,115,93,98,98, +448.04675,123,106,93,96,89,106,97,117,95,105,91,96,100,107,90,92,72,115,103,112,100,108,102,100,99,115,108,106,89,106,110,109,104,110,100,95,100,103,101,100,96,77,70,107,112,102,97,93,106,107,113,99,98,97,95,115,99,100,107,102,92,111,115,97,67,81,101,103,106,107,107,104,102,104,108,111,98,103,99,104,107,100,101,97,101,105,96,110,98,101,101,106,118,97,99,86,109,107,92,109,114,110,97,100,98,105,95,100,105,100,105,111,105,103,108,95,107,109,101,90,108,102,113,102,105,110,109,96,122,116,103,112,104,118,107,125,106,87,112,104,102,104,110,98,113,98,111,102,105,94,105,98,114,97,103,111,103,93,106,110,114,110,103,103,104,105,108,97,114,93,100,116,99,121,105,108,99,96,113,101,106,120,102,96,109,135,100,96,106,102,107,106,106,95,113,109,96,109,111,106,110,95,95,103,95,94,95,103,120,101,99,115,106,100,106,109,103,96,95,89,107,111,114,98,99,116,105,105,99,98,102,107,101,111,106,98,114,113,102,100,100,107,115,137,92,105,112,96,104,101,103,111,106,85,110,92,98,101,112,119,98,105,105,120,109,101,108,94,99,128,104,100,112,103,101,110,99,98,100,102,108,107,107,108,120,101,102,105,113,106,107,109,117,94,110,113,101,95,104,103,115,112,111,103,87,103,111,98,96,119,105,113,103,96,95,111,104,68,119,108,96,97,108,97,80,66,91,100,110,96,105,101,112,89,105,101,94,100,112,98,103,98,111,101,105,108,109,117,80,104,108,106,110,104,107,111,109,108,108,115,100,102,102,102,112,110,120,107,91,101,112,104,118,103,107,101,101,106,116,113,108,119,93,111,100,97,99,100,106,100,105,93,105,97,112,106,109,112,117,94,106,105,110,105,106,104,96,97,103,103,95,102,107,112,101,104,104,110,99,104,101,110,103,102,88,104,96,95,108,109,95,111,96,99,103,90,98,106,101,98,105,95,106,101,98,106,101,98,105,106,109,100,102,115,104,92,96,111,109,102,109,104,101,102,102,107,94,106,108,105,110,108,99,113,93,101,104,113,102,105,110,125,113,99,106,82,97,111,97,104,101,103,97,102,96,106,104,102,125,108,108,109,99,103,112,111,107,100,107,95,118,105,113,113,109,110,111,97,110,105,108,104,104,103,102,114,106,106,99,112,95,108,119,99,101,108,76,105,111,103,108,100,101,105,103,100,114,112,98,89,109,101,106,99,112,105,109,108,109,105,105,103,109,112,113,102,95,104,103,102,101,99,94,103,108,105,109,96,102,116,104,98,101,106,107,99,102,125,103,102,111,104,116,110,114,101,105,89,102,93,108,105,110,107,113,112,101,106,108,90,102,108,112,106,114,121,96,104,106,105,97,106,104,104,120,100,94,104,116,110,120,113,106,111,108,101,99,113,102,104,110,107,101,102,105,95,114,88,108,100,107,106,99,109,107,111,115,106,90,104,96,117,98,101,98,106,103,102,92,104,99,98,102,111,98,105,107,106,117,106,103,128,99,88,92,101,99,101,101,108,95,113,91,115,110,94,110,110,92,94,103,109,112,110,100,109,103,116,101,108,90,118,109,113,106,99,110,97,110,94,111,82,121,109,96,117,112,99,106,102,104,112,96,90,97,121,107,109,106,101,103,106,91,95,103,106,106,110,104,111,111,98,109,110,104,103,100,98,108,104,94,103,97,87,97,103,95,102,103,95,103,103,121,94,99,113,111,106,110,113,103,106,118,101,93,105,77,108,100,102,93,109,85,109,104,103,103,101,99,110,114,91,104,105,105,110,112,111,107,86,113,92,104,101,94,105,98,108,126,109,95,94,103,103,114,110,113,95,105,103,111,99,97,103,111,107,99,121,115,104,108,84,106,98,113,108,103,109,96,107,103,110,104,106,102,108,108,95,109,105,92,112,97,106,101,103,111,96,110,105,109,99,97,93,103,128,94,104,105,108,96,106,109,97,111,105,86,105,102,98,99,104,97,110,111,98,109,102,104,106,104,110,102,99,119,85,101,103,100,99,107,103,98,113,104,107,100,98,108,108,106,96,111,101,104,104,105,108,99,110,104,86,98,103,106,113,101,114,110,99,96,120,106,97,96,109,103,99,103,108,104,105,107,118,122,107,112,111,114,115,96,92,104,108,110,107,99,103,95,117,99,100,98,109,110,99,97,111,105,102,105,107,114,103,106,100,125,106,95,102,95,94,91,112,102,99,66,114,102,107,110,116,105,82,112,110,100,106,100,104,106,96,104,101,94,101,107,99,100,104,105,122,99,96,109,105,94,108,104,105,105,105,113,105,107,94,96,113,103,106,84,108,119,109,99,101,104,102,116,103,90,88,103,107,112,110,100,100,113,106,95,114,96,99,112,102,101,91,118,108,100,106,100,99,102,119,103,116,109,111,112,107,94,103,101,111,108,101,107,103,97,104,95,101,100,101,110,102,101,102,105,99,107,102,110,108,101,108,117,111,95,109,101,100,94,103,95,106,100,107,98,96,109,109,106,99,113,105,113,107,97,114,101,70,112,105,99,98,99,110,97,107,106,95,102,108,78,98,117,94,110,98,109,108,107,108,100,119,117,96,107,101,100,108,107,85,99,110,113,89,108,100,100,103,106,107,100,101,102,100,105,102,96,80,91,68,116,89,114,102,103,96,96,97,102,112,108,94,107,65,109,112,107,106,120,100,110,98,109,115,113,106,99,121,114,117,97,108,120,104,106,110,97,91,110,102,102,110,113,95,109,102,109,118,100,111,122,105,108,109,109,101,106,108,107,102,113,109,103,100,105,106,112,108,99,109,113,105,110,100,110,98,123,114,105,99,105,99,105,104,120,125,102,110,124,99,101,103,104,115,107,98,117,92,101,110,106,109,108,113,107,113,112,98,105,110,115,101,96,103,106,108,105,114,126,113,106,98,104,98,102,95,95,97,103,107,105,109,118,105,105,104,98,104,102,104,117,113,108,97,96,97,102,106,90,99,98,108,102,109,125,97,102,105,107,103,105,105,103,106,110,99,104,102,105,105,101,107,123,104,91,107,106,98,113,69,109,110,105,105,109,105,106,113,101,107,104,110,99,105,113,89,116,92,81,101,112,104,100,98,118,103,101,108,110,112,105,98,121,106,102,101,93,103,102,101,103,92,123,97,105,104,109,100,104,114,108,107,102,116,109,86,65,99,104,94,101,74,113,95,107,104,102,108,110,103,105,123,100,109,99,98,104,101,95,94,104,105,119,103,116,101,94,113,96,96,107,119,97,96,112,110,97,96,102,111,95,98,83,98,111,112,98,107,101,107,103,98,87,103,101,113,101,96,100,122,106,99,107,96,114,110,92,107,93,104,109,102,111,113,97,106,113,114,97,92,109,101,110,107,114,94,99,96,105,102,117,92,110,98,104,107,102,80,108,104,97,101,109,104,106,111,104,103,104,100,106,107,76,112,105,107,75,107,97,102,88,107,103,102,99,106,108,116,104,120,101,102,117,112,110,97,105,105,105,115,92,106,99,103,107,105,96,119,105,107,105,101,113,80,94,105,99,109,98,100,104,105,112,96,102,92,125,109,106,102,114,106,116,99,101,108,91,105,101,110,89,95,102,104,99,109,95,103,102,112,120,110,103,100,112,96,104,117,96,107,112,100,92,100,98,100,100,109,115,107,95,104,83,96,95,104,94,97,98,96,100,92,106,99,110,87,99,98,103,96,104,94,113,104,104,107,103,108,97,116,115,105,97,112,109,103,106,104,112,106,97,109,112,97,118,99,98,106,104,109,93,102,114,102,96,121,109,91,96,113,98,106,106,95,102,97,104,103,121,104,109,108,97,109,108,104,101,91,101,94,104,111,99,102,117,106,113,104,101,107,100,106,101,101,109,104,122,100,110,113,96,112,115,105,99,120,115,108,99,107,96,95,68,100,102,93,108,117,125,106,109,106,103,102,107,109,102,116,104,107,96,107,121,112,107,110,98,105,109,103,106,103,103,105,108,103,96,106,107,111,104,105,111,103,111,100,95,94,92,106,105,107,106,100,107,110,107,111,112,135,106,105,107,102,107,106,109,112,110,112,110,98,108,113,109,69,104,109,101,119,95,96,105,107,103,98,96,99,113,88,119,115,104,104,112,95,109,101,105,125,116,113,98,95,105,101,107,100,99,104,108,106,108,103,100,106,103,106,106,115,112,121,105,103,95,107,124,117,100,108,89,95,94,112,116,97,115,112,100,105,110,95,121,122,100,105,115,90,104,101,96,104,95,110,102,103,111,125,101,97,106,85,104,101,105,106,110,100,102,103,102,98,110,105,107,108,93,125,102,108,109,104,107,116,100,121,104,106,112,105,108,120,110,93,98,92,118,104,105,109,100,111,116,100,75,101,103,106,105,90,101,104,111,114,117,110,113,109,115,95,110,98,106,105,116,98,104,102,96,100,101,110,102,92,92,98,95,109,110,97,86,106,105,111,103,87,104,93,100,108,108,103,98,114,105,121,104,104,105,106,94,101,111,104,112,108,105,92,102,101,110,111,109,107,91,105,111,107,111,105,104,99,109,105,95,108,113,92,103,108,119,106,94,113,103,97,106,105,102,109,111,113,103,112,101,93,100,100,104,102,99,106,97,105,96,107,96,97,99,104,100,119,97,96,102,99,103,92,103,95,103,102,113,110,102,109,105,97,125,111,117,117,85,109,71,102,109,103,105,105,98,102,106,102,102,105,103,92,104,90,99,107,91,115,111,100,99,121,98,106,89,108,106,109,110,97,92,125,100,110,112,99,108,97,109,102,91,105,101,103,90,109,112,107,107,108,85,104,106,98,109,108,85,87,113,110,100,103,116,96,96,89,97,97, +448.18713,123,112,104,114,86,105,101,104,95,90,102,87,99,98,124,97,99,114,107,109,104,94,90,106,89,106,100,106,89,105,108,101,108,103,114,105,100,99,114,99,102,99,97,101,103,106,136,87,94,95,105,94,107,90,110,105,92,108,117,112,95,107,99,100,99,104,97,107,104,96,95,117,100,100,104,107,98,102,117,114,105,109,104,103,101,87,94,99,105,103,108,102,118,108,109,92,105,102,108,108,100,92,113,99,111,116,105,98,105,91,104,99,113,105,103,99,106,108,106,104,102,93,106,94,106,111,103,99,123,106,107,100,98,108,104,114,100,125,105,101,111,107,91,104,67,102,95,121,108,108,117,104,102,87,103,94,109,94,108,99,104,105,103,101,113,94,105,110,117,104,99,118,101,103,108,99,109,115,108,106,102,102,94,102,114,107,103,97,112,105,104,102,112,99,104,94,101,107,107,111,112,98,99,108,112,102,100,100,103,100,110,103,104,108,108,124,102,103,105,92,108,112,102,90,86,94,103,112,100,104,96,100,95,103,117,109,100,102,99,104,90,99,97,125,118,103,105,103,100,100,96,100,111,103,100,103,98,106,96,109,95,98,109,108,104,102,102,107,117,91,92,102,103,99,112,103,103,100,93,104,95,109,105,105,99,108,91,111,124,104,104,96,100,113,105,101,91,106,117,105,106,100,115,103,95,106,103,89,108,119,96,97,90,106,109,115,97,104,123,101,106,90,97,114,106,99,100,100,103,118,113,95,109,95,110,103,97,109,103,105,115,91,95,101,102,100,101,112,101,106,104,99,104,89,104,105,93,104,95,92,94,106,106,102,92,95,95,96,91,116,118,100,110,86,104,91,104,83,115,94,106,109,113,110,101,102,102,108,110,122,111,90,102,104,99,91,99,109,109,110,97,101,107,105,103,100,102,108,102,110,94,104,106,100,98,100,102,108,100,115,98,102,100,103,110,101,104,98,105,109,99,115,102,101,98,107,102,68,96,102,100,106,100,108,104,103,105,112,107,103,99,104,100,105,99,98,98,96,103,109,92,106,96,105,110,114,104,113,107,99,111,108,101,102,114,94,95,106,99,110,100,97,97,101,106,114,100,92,106,100,101,111,67,106,95,98,101,110,110,101,113,98,99,102,100,105,94,92,97,107,100,105,85,91,98,101,110,109,98,90,103,104,99,103,105,97,96,102,104,107,122,86,92,116,97,93,108,96,93,124,91,100,90,100,109,95,105,97,117,100,115,110,114,107,96,120,112,94,103,102,109,105,98,104,99,110,101,105,101,104,100,105,83,103,110,85,109,102,95,92,108,102,100,110,108,106,100,117,109,95,99,110,95,106,114,105,101,116,111,84,101,105,98,101,95,102,102,98,102,94,103,103,119,102,101,111,100,113,115,94,104,113,97,111,108,100,94,107,110,111,111,100,120,105,118,107,99,98,106,102,114,101,90,108,108,92,117,101,105,100,101,123,108,103,114,115,113,102,104,107,99,105,98,97,105,94,107,89,98,103,110,99,102,116,110,112,96,104,117,106,112,100,97,99,107,108,109,98,109,105,106,117,101,105,111,95,108,115,99,82,105,113,115,98,119,99,108,93,99,104,105,114,106,97,96,100,105,97,110,110,104,99,98,111,91,106,92,106,97,116,109,98,93,109,101,113,113,106,112,81,117,108,101,95,103,102,107,110,108,105,122,104,100,91,109,121,99,106,112,97,105,118,99,106,96,100,70,107,117,106,129,98,125,103,111,117,113,114,96,94,103,103,113,108,97,94,110,114,99,111,106,102,109,112,115,95,111,101,107,96,109,110,94,100,107,102,108,106,106,108,113,100,102,96,108,104,113,111,108,101,112,107,108,111,104,107,114,101,104,106,111,99,109,102,115,105,101,99,96,97,94,97,101,101,93,101,115,105,103,97,102,100,105,113,126,107,97,105,108,105,109,106,100,100,102,96,95,97,112,104,105,104,82,109,92,107,105,87,104,130,106,98,95,101,98,112,102,100,99,103,106,115,109,110,105,111,88,115,93,96,97,113,106,109,108,90,95,94,99,97,99,103,111,120,102,100,101,122,105,107,93,105,107,103,95,113,113,107,107,115,108,114,99,107,101,102,95,96,105,100,96,86,114,109,104,108,111,106,111,113,98,99,104,103,106,115,109,101,110,114,113,102,102,121,113,96,96,95,99,105,107,101,109,101,91,100,114,103,100,105,101,111,101,99,90,114,96,85,106,118,104,102,100,101,99,98,98,118,109,106,111,103,105,93,99,102,91,116,101,98,93,105,101,109,112,114,103,114,108,130,95,98,100,106,104,115,108,104,105,100,105,96,110,102,102,94,98,102,115,96,105,109,104,108,105,99,107,105,67,124,91,100,109,102,98,91,99,97,106,109,96,121,97,103,109,101,101,103,99,101,105,107,122,108,98,111,108,107,101,103,97,87,97,101,104,110,84,100,101,99,108,109,115,93,101,106,101,89,106,111,97,96,109,105,104,115,122,101,103,99,106,115,98,94,103,99,96,101,104,96,108,109,108,100,109,96,96,90,98,105,105,97,98,98,108,98,92,109,117,96,108,91,104,98,96,105,107,103,102,105,88,99,103,100,106,104,107,98,101,112,103,85,97,89,107,108,97,97,112,112,99,88,100,109,86,108,91,95,112,115,106,99,99,99,103,109,106,96,110,82,99,111,110,100,91,109,107,79,111,106,100,109,107,88,109,103,91,109,110,99,93,100,105,102,109,98,110,95,104,104,100,111,99,106,94,109,104,108,112,120,108,113,103,86,103,86,103,112,102,113,99,105,99,94,92,102,110,99,98,92,99,99,109,105,105,95,91,110,88,107,104,104,104,94,104,101,112,104,96,110,100,111,109,114,90,101,87,109,107,111,100,102,105,113,100,98,99,104,104,98,96,110,105,96,100,95,106,104,113,104,99,77,105,101,101,105,104,97,90,106,104,109,109,72,113,100,99,103,96,110,104,104,99,102,102,98,110,98,96,96,106,87,95,107,98,116,104,103,108,108,91,120,107,89,94,100,96,101,98,97,94,99,103,96,94,104,106,109,99,100,98,108,114,107,103,99,112,99,100,95,109,100,101,113,112,95,105,114,105,98,95,84,99,100,105,96,107,109,111,101,128,100,99,110,112,111,100,104,106,114,102,106,116,95,106,106,117,95,118,108,100,113,89,97,109,94,83,104,101,113,104,96,100,96,102,110,108,102,105,106,92,102,106,106,103,102,102,125,99,98,92,104,105,114,92,98,91,104,114,109,106,112,104,103,114,101,108,105,111,113,105,112,97,99,110,114,100,99,100,108,104,113,95,111,98,107,100,96,94,99,100,109,101,119,98,94,100,111,99,91,100,104,95,110,104,105,105,115,122,99,100,98,112,94,102,104,102,104,100,96,97,98,105,98,108,99,96,116,96,104,104,107,93,102,99,76,102,105,112,98,108,106,103,90,100,102,103,107,109,101,102,101,92,102,91,110,82,113,111,100,107,106,99,133,99,108,102,102,86,110,104,115,110,101,101,104,105,94,96,111,106,110,97,98,99,99,102,98,113,116,90,102,103,91,96,113,107,100,98,102,98,114,101,93,100,100,106,108,88,105,106,106,100,97,97,87,92,99,100,101,92,106,100,95,102,105,104,98,101,87,91,97,94,101,95,100,106,112,108,96,98,140,101,106,95,97,111,104,98,99,97,105,109,102,90,109,101,94,100,102,104,105,104,109,114,99,97,97,108,103,109,109,100,96,96,100,95,100,91,104,88,105,106,132,114,95,95,94,84,102,109,99,107,109,97,111,94,102,94,108,97,113,83,101,99,93,101,102,108,88,102,104,92,107,102,113,99,87,106,117,105,92,104,96,108,94,112,108,102,97,91,112,110,101,106,95,104,100,109,102,100,97,103,107,95,100,111,102,100,100,102,115,112,112,90,103,102,100,98,108,116,115,101,105,122,97,105,100,104,101,103,105,92,106,109,94,98,102,102,100,106,98,94,96,106,107,108,98,109,102,116,105,100,96,107,97,106,104,102,101,95,116,107,109,104,105,106,99,94,102,94,101,85,97,120,99,98,104,97,95,103,109,93,99,104,78,102,92,109,101,108,101,105,105,102,108,96,103,102,107,113,108,93,98,99,107,104,102,107,99,116,107,104,104,91,122,103,102,110,99,114,85,110,97,105,97,99,91,99,104,110,102,100,102,102,105,101,109,107,73,68,98,97,91,101,103,100,94,104,101,100,91,106,104,96,100,99,98,102,95,101,94,91,98,101,104,110,95,99,101,101,100,106,108,104,104,98,102,106,106,87,104,109,97,92,89,84,96,112,98,96,97,103,109,101,91,103,92,100,91,96,107,105,104,100,101,102,94,110,99,101,115,117,97,93,95,91,99,104,95,106,113,85,100,104,94,92,105,100,97,94,114,102,118,103,92,102,113,95,98,102,92,99,115,79,102,99,95,98,97,101,95,98,115,108,112,115,101,101,104,103,91,109,99,95,103,99,90,92,113,100,103,98,93,93,93,104,102,103,97,98,104,98,93,108,100,99,101,92,109,93,91,96,99,101,112,108,109,96,100,109,99,111,96,99,106,92,96,102,99,102,98,111,90,106,90,115,99,101,91,104,94,95,102,107,103,98,89,70,116,120,100,112,102,103,101,110,102,101,88,94,109,94,102,109,103,94,84,101,101,106,103,101,101,116,91,108,98,99,99,102,87,102,107,73,107,88,102,98,105,106,89,95,94,105,111,103,92,105,104,106,107,101,101,97,97,107,95,101,103,109,93,99,99,105,109,102,111,102,101,105,88,88,113,120,99,107,113,104,95,100,98,110,107,99,103,101,99,107,88,118,98,113,103,96,97,108,96,114,126, +448.32751,95,105,121,107,84,105,108,108,100,101,116,114,90,93,110,102,98,88,108,94,109,109,94,105,76,93,99,114,111,91,102,101,106,97,99,100,103,105,105,98,91,95,109,92,113,103,116,99,79,89,115,100,107,100,95,93,93,83,108,99,102,109,96,92,113,108,95,104,106,95,104,110,106,105,109,112,117,101,100,95,96,107,97,112,92,84,109,100,101,88,108,114,106,120,80,106,97,100,105,108,102,106,99,102,93,92,104,101,103,110,100,105,91,99,94,108,83,96,105,94,93,101,104,102,108,113,105,102,109,103,96,99,97,107,92,111,91,93,103,106,105,110,99,94,105,114,108,109,108,109,116,94,102,100,97,104,84,108,94,105,94,91,81,101,106,113,98,101,106,108,102,91,112,92,100,102,102,86,116,101,102,99,98,93,108,109,105,97,114,93,95,110,94,108,100,125,98,95,97,107,110,95,105,108,103,110,107,112,109,109,103,105,106,95,98,97,88,110,108,104,103,103,113,98,108,113,103,108,111,102,114,99,104,136,97,105,114,72,105,103,97,101,105,104,83,95,106,110,95,95,111,107,107,103,106,98,106,105,113,100,109,105,92,105,100,107,106,89,105,98,102,93,113,97,105,101,104,94,110,101,98,100,105,102,110,104,94,85,96,102,119,97,108,109,121,112,100,91,110,80,100,101,92,100,108,96,105,94,109,101,96,117,107,101,113,96,106,93,105,98,111,105,102,104,109,101,95,105,103,113,100,92,106,99,105,99,95,98,102,107,93,105,104,100,101,105,101,112,121,105,107,103,106,82,96,104,92,111,98,112,109,115,102,98,101,89,102,99,96,109,106,99,106,109,104,99,108,103,94,109,95,113,100,112,102,109,103,105,106,85,96,96,100,100,94,93,113,105,104,98,95,95,102,120,123,99,109,109,109,95,95,102,100,113,101,101,105,98,108,90,100,98,99,103,103,110,107,100,102,111,72,96,109,101,99,105,94,117,96,106,101,104,98,93,102,97,99,94,108,110,103,99,99,101,98,103,105,112,103,95,101,99,104,101,106,96,109,105,98,116,95,113,112,96,104,96,98,113,107,99,102,107,111,100,94,106,117,111,95,97,104,113,105,86,94,102,94,94,99,94,94,105,100,108,103,101,99,101,104,103,110,99,121,107,72,103,108,108,90,105,98,97,102,125,94,103,106,98,107,98,101,95,95,91,88,106,109,97,100,104,102,109,97,92,120,103,97,102,103,104,100,104,102,100,95,99,112,111,104,113,99,96,100,107,99,102,103,113,100,102,111,105,119,112,103,103,95,109,99,99,99,102,105,102,132,111,102,101,113,110,81,93,101,106,111,120,95,104,109,117,106,108,114,105,112,105,104,102,109,110,109,110,94,98,107,104,103,110,101,93,117,101,90,105,115,113,94,114,102,101,110,107,98,112,100,116,112,100,90,118,122,103,100,102,93,95,117,106,106,103,109,106,104,103,104,100,108,106,98,106,106,108,106,107,102,82,108,107,109,106,116,107,102,104,94,105,100,114,85,106,111,99,97,110,106,91,113,105,129,114,111,100,104,113,110,103,98,97,102,102,96,100,102,98,98,119,111,83,103,113,105,94,109,100,102,103,105,108,99,106,99,105,119,116,94,109,107,107,107,106,102,97,86,110,108,99,100,100,102,108,105,98,103,96,104,70,113,102,103,85,112,106,120,95,98,111,114,86,110,91,102,100,99,113,104,99,104,101,101,103,101,100,105,93,92,104,100,106,107,97,108,93,110,100,103,124,113,103,102,101,125,117,97,112,110,105,113,79,104,114,97,108,101,96,108,110,105,108,100,114,111,101,101,96,106,95,114,114,106,96,103,95,96,97,102,91,100,104,108,109,105,92,107,107,93,116,104,103,108,102,103,95,105,111,96,90,108,104,110,93,99,98,102,91,103,98,98,107,100,104,102,105,101,118,108,108,93,113,110,112,91,99,104,95,92,110,95,98,112,107,117,79,108,111,99,108,106,109,103,99,104,106,108,107,101,97,93,111,94,98,106,117,83,96,105,104,100,100,107,101,108,112,91,108,107,91,106,102,98,111,107,106,109,107,98,106,109,98,109,93,75,118,99,112,109,104,104,110,113,108,137,98,102,104,111,97,101,107,108,107,109,104,116,105,98,120,98,120,97,108,102,117,99,99,122,109,96,100,97,100,101,82,101,116,105,103,111,112,113,87,104,105,119,105,107,105,96,71,99,103,100,94,92,102,99,92,117,94,117,113,113,107,99,99,106,95,82,98,86,83,97,110,103,108,94,96,117,103,103,99,107,126,100,95,100,108,106,109,110,104,96,107,108,113,99,98,105,113,108,114,118,98,93,108,105,116,106,105,89,95,91,101,97,103,111,113,98,98,96,101,103,111,86,112,102,107,92,97,109,102,110,103,101,95,110,104,108,102,96,105,92,117,101,105,100,97,106,88,111,101,101,102,104,104,98,103,92,110,108,107,104,95,108,107,102,110,96,90,109,112,107,117,105,98,106,128,103,110,97,113,112,101,85,101,119,103,113,101,101,104,104,107,111,96,107,121,108,101,100,106,101,105,102,103,102,94,101,94,101,102,102,97,116,99,113,99,98,114,105,109,100,107,102,99,108,99,107,102,112,96,107,102,112,108,105,100,102,100,102,102,97,102,106,112,110,108,110,99,112,101,107,113,109,103,98,102,95,101,77,106,102,99,108,101,99,106,102,106,111,121,93,111,93,108,103,108,111,99,96,102,102,109,99,106,100,102,102,103,116,115,100,91,104,108,106,90,104,108,110,108,90,97,103,103,96,110,116,105,112,109,112,106,106,99,111,97,109,116,107,114,110,102,101,108,104,101,120,103,97,117,110,88,105,103,105,92,96,111,94,93,113,108,101,112,105,102,114,104,107,109,108,120,99,94,108,100,105,104,98,113,114,126,105,103,112,112,98,122,118,98,106,103,107,108,96,101,101,105,112,111,105,98,95,80,117,94,110,109,95,101,105,107,107,110,105,111,101,95,95,108,95,91,105,109,105,105,107,100,97,113,98,100,106,102,78,101,101,105,110,103,126,113,110,86,117,106,112,107,108,94,116,105,103,117,70,98,106,102,108,108,101,98,100,109,110,103,102,110,106,94,107,108,103,95,110,99,103,90,118,107,122,111,96,93,98,109,107,105,105,111,101,110,105,102,113,116,106,105,103,114,105,108,105,100,88,102,107,106,116,99,100,106,102,117,111,105,104,128,110,107,141,98,98,108,100,106,99,97,110,112,103,103,106,105,86,105,113,102,107,98,103,110,100,110,122,109,107,102,110,98,78,110,91,100,104,97,100,113,111,93,108,106,107,101,110,119,117,96,100,87,107,103,98,105,100,103,101,111,108,113,99,102,116,106,107,94,105,105,113,92,99,113,103,109,100,105,129,102,108,93,105,97,91,108,72,117,112,100,112,102,106,93,102,105,128,113,107,108,108,103,113,96,103,117,112,106,109,108,88,105,104,98,99,107,132,93,104,106,109,115,99,104,104,105,113,105,83,98,111,108,113,100,98,104,101,105,101,107,109,101,94,112,105,100,98,103,110,103,100,101,87,105,107,104,95,106,111,113,95,96,95,115,107,108,96,102,99,95,103,107,96,97,112,117,109,106,97,112,108,109,115,106,110,109,102,100,103,102,125,101,117,114,99,116,113,113,115,110,102,97,96,105,108,101,121,106,110,98,107,107,95,95,103,105,99,117,102,100,104,110,98,96,108,102,112,99,98,99,127,106,101,108,98,99,107,107,108,101,103,115,120,111,99,91,95,109,103,98,102,99,102,121,102,108,113,112,103,107,95,115,109,99,91,103,112,110,104,98,103,102,106,107,104,112,99,102,105,98,108,99,101,94,101,117,104,108,99,102,103,112,105,109,108,103,99,105,102,87,113,111,108,107,109,113,103,105,113,100,104,114,99,99,98,106,109,106,104,87,91,107,111,112,111,100,114,92,98,105,103,100,109,102,110,105,108,96,72,100,108,108,106,103,94,98,123,102,98,103,124,96,101,93,111,98,97,111,112,105,102,99,115,107,113,113,107,103,106,122,100,106,104,103,117,99,110,98,102,113,103,102,112,98,106,105,107,98,97,116,92,105,104,91,94,101,99,109,94,98,110,102,111,116,108,100,104,113,99,116,118,101,111,101,105,98,100,98,99,98,102,109,106,98,101,99,92,98,111,93,109,96,112,105,107,109,106,110,91,107,110,98,103,107,110,110,99,111,104,85,98,103,102,112,113,106,125,96,101,95,103,106,109,108,113,106,120,115,84,100,106,103,111,107,107,98,106,109,97,98,103,97,105,111,114,117,99,109,140,106,116,99,106,113,106,113,104,112,103,100,118,96,97,104,100,109,85,117,98,101,106,116,117,107,113,103,104,102,96,107,96,102,102,114,94,105,104,108,91,102,103,96,100,101,102,101,109,103,81,102,94,105,102,106,97,108,110,108,85,100,108,93,105,103,122,115,106,102,107,105,124,110,108,91,113,90,108,106,108,100,108,105,92,102,111,109,83,108,107,94,90,97,118,104,109,108,113,100,113,124,105,111,93,91,113,101,93,99,114,113,91,101,107,111,110,97,106,105,113,100,104,106,92,88,98,110,106,97,96,102,104,96,116,98,109,119,115,94,94,109,108,102,109,97,104,108,111,91,104,107,108,99,107,101,97,103,105,104,117,102,117,104,106,102,101,103,96,105,93,109,102,95,102,62,109,104,107,98,108,96,99,104,117,98,100,87,117,69,95,109,94,105,110,97,94,109,106,104,103,96,99,99,104,109,106,105,96,123,71,97,112,93,120,111,106,95,111,87,105,86,102,96,124,98,110,88,91,106,106,110,101,96, +448.4679,101,95,81,111,95,104,111,109,92,113,106,123,115,99,105,102,81,121,109,88,106,70,69,106,71,76,104,101,118,110,108,83,107,107,92,102,105,98,99,97,110,104,88,90,111,122,89,103,102,109,105,106,100,100,104,97,87,104,103,95,100,96,87,100,103,106,96,94,85,110,106,111,99,104,90,110,87,94,111,99,102,94,102,115,100,115,92,102,94,103,98,96,90,101,92,96,106,100,110,107,112,96,100,109,110,114,92,112,105,94,106,79,93,117,99,107,92,98,108,104,108,106,91,108,104,112,106,101,104,104,106,108,99,98,107,104,105,109,114,117,103,106,93,119,98,100,101,100,100,103,108,113,124,107,112,113,110,93,106,105,99,106,105,88,109,108,101,101,103,101,77,96,98,97,98,101,103,110,102,104,100,114,103,105,98,90,90,106,95,89,111,102,98,104,92,106,106,106,114,109,91,98,112,109,98,95,103,83,106,118,91,97,97,104,102,98,104,112,107,113,93,100,91,97,107,102,113,100,109,110,100,98,109,93,100,113,103,102,116,100,99,96,104,125,91,92,104,104,102,109,97,116,107,103,101,101,118,101,97,102,105,101,100,106,99,111,110,107,96,88,94,99,102,112,111,101,89,106,99,98,109,103,109,105,105,94,98,110,94,99,107,101,101,95,97,103,99,110,106,94,116,94,98,109,82,67,107,92,120,104,94,107,115,104,104,100,102,102,115,95,101,102,109,95,99,106,114,93,104,113,100,106,99,108,99,99,93,94,97,105,105,114,109,110,96,97,131,107,115,98,108,105,103,98,103,107,106,111,107,112,103,90,97,99,78,111,105,112,97,109,110,103,106,94,100,96,104,98,101,111,116,131,105,104,92,90,106,96,103,101,104,94,102,102,110,108,94,100,101,105,99,100,104,104,104,98,99,103,122,94,87,92,103,110,100,109,102,104,98,99,92,97,107,103,110,109,105,109,104,100,108,105,109,104,97,97,104,95,86,104,104,116,98,109,97,101,95,96,100,99,103,94,105,105,96,86,104,105,93,101,90,91,107,107,110,108,106,94,104,94,99,105,106,109,106,106,107,107,103,98,88,103,100,108,96,105,117,95,106,112,105,109,111,99,100,117,95,99,109,101,89,99,106,111,109,106,109,108,98,110,106,104,107,110,96,101,98,97,97,100,109,103,96,102,114,100,108,80,100,101,100,99,105,96,102,104,96,108,106,110,107,103,108,106,106,106,112,103,112,101,105,102,101,86,106,105,103,97,109,101,95,96,101,110,105,105,106,118,94,100,90,112,100,102,108,104,96,120,105,98,110,101,100,94,96,106,104,114,109,91,106,111,102,109,108,110,102,119,107,93,100,100,101,102,101,97,102,114,101,108,104,105,99,106,99,103,96,100,119,81,101,97,100,101,116,102,103,105,98,91,109,101,107,100,98,113,109,104,98,109,97,106,106,103,101,99,108,96,85,109,86,106,103,128,97,93,117,109,95,101,112,108,105,115,90,97,101,99,100,91,105,100,99,100,97,104,100,97,90,94,107,106,106,113,87,113,103,96,110,99,105,103,94,117,108,103,110,113,93,98,105,95,108,102,120,97,108,113,108,103,99,105,101,108,113,107,96,115,100,106,88,100,94,114,117,95,100,104,106,105,94,108,103,98,92,110,104,102,97,107,101,99,90,100,109,103,105,99,106,106,112,95,97,98,109,114,99,105,99,98,98,102,94,103,110,97,90,107,108,85,97,112,95,109,107,112,102,100,103,100,101,112,107,97,107,87,103,112,94,108,97,101,110,109,106,113,104,105,100,106,105,120,94,114,101,103,94,104,104,107,108,85,110,94,111,96,106,98,102,111,95,99,107,108,104,94,100,102,106,106,108,87,63,97,109,99,116,108,105,102,105,110,107,84,99,100,100,94,83,104,109,120,106,108,95,106,95,105,90,111,100,96,91,101,113,101,96,106,95,102,98,109,108,105,102,130,105,106,110,91,104,94,111,107,113,102,93,105,100,107,107,117,108,103,100,96,97,108,101,95,111,99,97,101,111,87,102,103,78,98,118,97,107,100,117,85,101,108,103,98,104,103,111,89,103,111,95,99,100,102,100,109,104,114,106,101,94,111,87,104,107,104,95,102,91,99,101,90,96,115,93,96,95,106,108,102,110,93,73,91,116,104,104,97,115,102,110,98,100,108,89,103,107,103,81,94,110,112,109,104,95,101,101,105,102,104,98,94,99,95,90,100,103,110,100,95,104,115,117,106,122,99,105,102,99,98,95,105,106,109,95,108,109,109,117,113,110,98,103,111,108,109,112,96,95,101,99,97,101,123,113,91,106,101,102,97,113,107,101,107,102,108,84,111,107,101,109,96,105,98,107,101,107,121,91,102,98,79,99,92,103,107,106,100,109,86,99,101,102,105,105,104,93,98,94,97,107,106,112,113,109,115,102,109,141,100,108,119,104,89,103,100,103,94,98,99,95,112,97,115,102,103,106,104,104,112,98,98,98,104,105,118,97,101,110,110,98,103,115,102,108,109,93,92,110,103,111,98,104,109,103,110,94,100,105,95,97,94,119,99,94,103,100,103,93,117,92,107,116,88,117,91,102,112,106,109,125,98,99,99,107,93,105,100,107,104,104,101,98,101,96,91,102,107,102,108,95,98,118,92,95,110,104,123,105,103,109,109,97,107,98,97,109,92,117,101,109,111,118,107,103,99,103,98,107,98,100,99,109,96,103,107,94,108,98,98,110,105,94,111,106,120,95,86,109,108,101,99,98,106,102,96,103,103,105,99,106,104,110,101,112,102,102,109,94,106,102,106,103,106,120,99,108,108,112,106,101,109,97,98,112,104,108,106,98,105,100,107,107,106,88,95,100,115,101,101,99,105,91,108,111,100,98,101,100,101,88,96,95,79,102,95,89,96,110,106,93,109,113,96,111,109,96,104,105,97,113,105,107,103,106,102,119,87,102,117,99,102,103,102,118,103,96,98,103,93,106,115,91,99,98,108,104,99,110,110,101,101,92,109,105,106,110,98,110,107,103,102,100,108,104,98,104,108,98,100,103,107,105,107,107,123,100,104,99,106,107,102,101,101,106,111,106,104,99,103,91,111,114,104,106,94,110,93,100,106,102,107,113,104,94,106,108,102,106,99,97,91,99,104,70,108,102,105,100,112,114,101,102,112,102,103,102,96,120,115,105,95,100,107,106,96,106,98,98,99,100,112,116,99,105,107,99,112,99,101,102,107,103,100,103,117,94,116,103,104,87,107,114,99,92,97,114,105,112,112,106,104,112,103,100,103,109,109,105,120,106,114,106,102,96,117,106,92,98,106,94,108,102,108,109,107,106,111,88,114,91,89,102,99,109,99,104,103,113,101,102,72,98,110,96,113,106,105,109,108,102,107,102,106,109,105,100,123,109,110,103,110,94,108,99,106,112,98,94,131,115,104,106,103,107,106,101,108,102,117,99,101,103,94,109,105,99,117,99,104,127,110,113,110,107,101,117,105,115,106,105,101,110,108,107,100,105,90,108,99,104,107,81,109,105,113,95,103,103,92,118,106,100,94,99,101,107,117,105,89,101,109,110,95,98,99,124,102,103,102,99,100,78,99,112,104,107,94,99,105,106,109,115,130,104,105,95,117,95,115,109,108,90,102,105,123,105,106,92,101,96,105,121,98,103,101,101,105,109,103,109,106,109,113,99,106,93,96,100,104,109,112,101,104,99,103,95,102,109,99,92,116,103,111,111,90,96,111,84,95,103,98,105,97,116,111,87,106,102,102,113,109,107,98,107,117,107,107,100,103,102,101,101,114,102,115,94,113,95,96,100,106,113,103,114,98,108,99,112,108,101,102,104,92,96,97,91,96,101,99,113,101,96,96,101,111,98,113,105,105,106,101,91,113,105,107,102,110,97,99,105,102,100,103,95,103,89,104,97,110,102,97,94,106,106,98,99,100,120,103,103,117,97,109,107,98,103,104,95,98,109,84,105,103,108,104,87,109,107,106,108,102,112,100,102,101,107,94,110,102,102,108,104,103,92,103,112,103,106,128,102,103,109,91,112,110,103,124,102,100,98,103,115,105,105,108,117,105,101,113,115,100,112,96,100,99,104,106,101,104,102,112,101,114,105,98,94,99,103,104,107,109,103,92,104,107,99,95,91,107,99,107,110,102,97,111,94,113,102,102,115,102,108,111,104,105,102,97,99,114,111,103,105,109,94,103,105,110,105,93,102,107,101,106,111,100,107,110,95,78,104,83,102,98,97,102,105,101,111,96,104,101,99,96,113,116,94,89,113,106,105,121,91,107,100,96,100,103,110,104,107,100,117,95,101,98,96,108,104,106,108,112,116,101,87,100,102,103,97,109,94,112,107,107,102,89,113,105,90,108,98,102,100,99,116,103,95,97,100,95,107,103,87,96,97,105,107,119,92,101,106,108,100,100,100,89,101,96,105,96,93,110,110,103,104,91,91,116,102,100,115,102,99,104,93,107,98,104,104,110,101,109,111,99,90,102,93,99,101,93,102,102,104,98,99,106,93,104,99,105,104,112,84,96,96,95,108,99,95,99,89,106,104,109,92,87,100,124,99,101,98,116,96,100,94,94,101,98,107,108,89,113,108,98,100,87,92,98,102,92,102,105,105,124,97,102,101,107,91,104,105,107,104,110,113,113,98,113,109,90,93,95,98,108,99,117,102,113,106,115,103,93,107,94,100,99,93,98,100,91,83,99,105,110,87,95,97,98,98,108,82,113,99,110,118,95,103,102,94,90,115,111,109,105,106,114,92,106,101,98,101,102,100,101,105,101,95,115,95,75,99,98,103,97,105,103,110,100,87,84,96,103,106,99,123,111,109,98,98,84,101,101,118,87, +448.60828,114,111,92,109,97,102,115,98,99,94,108,113,91,120,95,106,91,102,101,75,119,95,99,99,103,104,107,113,99,100,92,95,99,114,107,114,101,113,101,102,89,101,106,92,98,87,108,88,99,106,105,111,102,91,104,91,113,102,109,103,111,79,100,95,107,109,104,103,110,95,104,112,101,101,92,98,102,99,111,115,106,110,98,100,109,103,105,107,103,111,105,99,110,99,103,83,106,98,91,99,103,96,110,112,99,104,95,108,104,108,106,103,101,95,110,103,106,96,102,97,105,99,115,109,98,110,106,99,101,139,102,102,104,79,118,113,87,106,98,108,110,106,100,93,99,96,101,100,107,103,110,106,108,99,122,94,101,100,107,102,95,102,102,100,106,99,106,105,108,83,112,111,110,102,97,108,111,99,112,90,105,113,105,98,110,118,101,104,99,102,110,115,106,102,99,110,101,95,106,109,117,95,99,102,82,106,106,117,105,106,93,111,106,99,100,101,105,101,101,100,107,106,114,107,105,104,104,107,95,99,100,115,107,106,104,108,105,108,98,111,104,112,108,98,101,105,119,110,97,102,95,118,103,124,100,103,100,90,101,98,107,104,109,110,99,110,108,96,103,97,117,108,104,107,105,109,103,99,93,92,107,101,103,106,99,98,96,64,105,110,96,99,102,103,108,107,96,100,103,102,97,104,110,108,100,106,101,113,101,106,101,115,106,100,107,109,117,107,118,104,114,89,102,113,103,99,95,107,95,110,132,100,110,109,107,113,95,106,101,100,102,108,95,103,90,113,98,103,108,99,91,102,101,114,108,104,102,113,105,105,105,107,92,101,99,106,111,105,102,91,101,118,116,105,113,109,107,104,101,116,100,108,102,105,105,101,100,96,107,98,112,97,115,93,103,101,107,99,94,106,104,109,103,110,116,113,100,103,102,95,99,87,107,100,104,96,111,110,92,100,108,100,102,103,105,97,100,109,97,105,111,104,103,107,100,107,88,117,92,111,107,69,101,72,94,102,110,103,98,109,92,108,94,106,101,105,105,119,101,91,105,113,89,111,106,114,113,107,108,106,121,110,102,100,99,101,98,104,97,105,86,102,104,99,99,90,94,121,106,101,103,109,97,100,80,85,92,97,97,116,111,106,104,106,97,105,93,108,98,110,106,105,103,107,107,87,120,94,105,95,102,116,102,113,100,111,104,104,105,88,109,99,98,102,99,101,97,95,100,103,104,108,91,112,111,98,110,95,99,112,112,113,104,96,110,98,110,99,105,93,109,103,108,96,106,104,104,102,102,111,104,95,102,105,98,117,104,86,104,105,105,101,103,117,106,110,103,106,80,98,109,93,96,99,107,96,96,117,111,104,105,89,106,101,74,113,98,111,98,102,101,115,101,100,104,105,112,94,106,112,121,109,104,93,107,108,95,113,101,104,103,94,113,106,107,94,94,107,107,82,99,116,100,108,100,109,104,92,105,108,101,97,111,113,104,97,104,104,97,99,110,116,102,104,104,101,109,107,113,111,105,90,113,106,102,111,121,110,110,102,102,110,113,106,99,94,91,104,98,111,108,98,101,111,106,104,102,94,103,92,109,98,97,108,104,120,108,112,97,112,118,103,90,101,106,100,108,88,108,82,105,108,120,107,97,110,104,112,98,105,102,101,111,105,113,100,99,96,106,97,117,100,97,110,92,118,108,107,98,109,117,108,101,104,113,110,114,107,107,99,116,104,98,107,94,103,64,105,111,97,119,105,109,100,99,117,105,107,106,99,98,100,111,99,96,106,91,108,116,109,108,109,114,99,107,113,92,104,111,107,74,114,91,102,100,100,103,108,109,100,121,117,99,110,106,113,108,94,108,109,101,111,105,115,113,113,102,114,100,94,111,100,107,91,99,116,103,114,116,109,104,104,108,111,109,109,108,103,104,83,109,103,102,107,124,103,105,114,100,108,101,105,105,98,105,108,100,108,103,105,100,107,103,107,103,101,116,109,118,97,105,107,122,101,99,100,86,102,112,100,101,110,100,113,99,97,92,112,109,101,117,106,103,109,112,95,99,104,118,90,101,108,107,106,91,90,96,102,115,114,99,109,102,105,113,105,104,107,99,104,103,109,95,100,108,107,91,100,99,106,105,110,105,104,101,88,97,102,111,103,106,108,120,104,104,93,108,104,90,95,101,109,103,102,102,103,102,104,96,105,101,104,100,83,93,103,98,100,99,112,101,97,109,94,106,108,106,92,100,115,99,97,105,109,99,129,104,112,100,107,95,102,99,96,101,103,102,107,102,104,108,104,102,109,94,129,106,102,111,109,113,108,110,98,97,100,108,100,111,107,92,109,106,101,100,100,106,114,114,106,102,102,97,107,99,102,98,105,116,94,99,98,98,101,107,116,118,103,101,102,110,111,70,96,88,97,101,93,100,107,105,111,87,99,103,97,106,109,92,97,109,110,99,108,88,109,107,96,115,102,109,116,103,105,95,109,110,100,105,112,119,124,100,108,103,102,102,105,112,95,93,105,104,98,116,101,102,88,97,76,111,108,100,106,116,103,112,91,91,91,106,108,112,99,110,95,109,107,98,96,105,92,109,119,99,110,98,115,104,85,113,110,106,103,104,92,103,105,100,103,104,101,103,89,107,120,95,104,101,95,89,98,104,96,120,102,111,98,121,92,100,97,100,114,104,105,105,106,104,105,104,110,99,126,119,124,102,88,107,106,114,110,96,115,98,89,106,107,108,99,104,105,96,107,119,119,105,91,107,96,103,111,102,103,105,95,87,92,115,105,104,109,98,115,106,103,106,74,101,108,112,107,111,110,106,102,119,102,107,104,107,117,97,98,104,108,93,104,102,109,94,101,85,113,100,97,104,90,100,109,106,105,104,111,91,98,121,98,114,105,109,103,117,92,100,114,96,106,106,113,108,105,100,101,101,101,106,105,99,109,107,93,101,99,102,117,94,101,100,101,83,104,106,97,88,100,98,99,103,109,95,111,102,112,113,93,112,101,94,100,83,96,95,108,120,100,106,99,112,111,79,100,107,92,106,106,111,106,109,101,107,108,95,110,95,107,98,98,95,102,101,112,103,104,107,79,108,108,99,108,118,114,108,118,111,104,111,101,93,108,102,95,98,135,102,98,103,101,100,101,100,103,101,108,108,108,98,102,100,103,102,101,95,112,109,98,111,95,108,97,94,101,93,89,108,108,102,94,114,111,93,117,98,106,102,97,98,102,112,105,111,94,97,107,103,99,105,106,99,115,104,99,106,105,111,94,111,111,101,111,92,76,113,102,104,111,111,125,106,97,105,109,108,112,112,104,99,95,92,106,97,100,101,101,109,113,94,102,99,99,105,102,107,84,91,95,112,95,104,96,110,111,115,110,94,99,92,109,112,108,99,108,100,110,105,97,116,99,105,107,105,93,105,104,94,99,107,106,110,102,100,102,101,96,94,106,100,98,111,101,105,100,102,103,100,115,107,85,110,102,109,94,88,110,109,108,115,125,109,110,114,113,103,111,91,121,110,110,94,121,89,95,104,98,96,84,102,90,98,104,102,117,129,96,113,110,109,105,106,108,100,106,91,109,108,103,102,102,113,91,91,106,112,108,86,95,100,103,106,90,94,99,100,107,88,109,106,114,117,107,96,107,84,100,103,100,101,109,101,98,100,99,100,111,99,118,75,97,107,107,122,112,121,97,105,113,98,102,108,96,100,98,87,94,108,78,105,106,106,105,111,92,104,102,111,105,98,95,107,105,105,98,97,109,107,109,116,98,119,100,109,99,104,107,117,106,107,109,109,99,102,97,103,100,113,103,100,112,106,103,95,109,94,102,110,62,96,108,109,98,109,114,91,117,99,104,100,109,79,98,108,106,92,113,124,105,102,92,92,109,98,96,116,109,95,98,113,108,113,113,108,115,109,102,110,105,106,109,105,96,106,107,98,95,81,109,97,99,91,94,96,96,93,113,104,98,101,102,105,113,94,103,94,110,102,98,96,102,115,98,113,109,102,102,102,107,113,100,116,100,109,108,104,112,107,101,99,104,102,96,104,113,89,105,99,108,96,91,114,113,107,113,113,103,91,115,111,117,103,108,109,113,95,88,100,106,105,101,99,102,99,100,95,112,99,106,129,104,104,113,93,102,94,107,106,92,106,107,103,109,115,111,109,104,104,92,109,99,101,97,112,88,102,108,113,102,109,99,100,102,103,95,102,108,95,103,89,115,111,92,108,109,115,102,102,94,97,101,81,110,117,104,117,93,97,106,103,104,108,100,108,109,104,114,99,103,106,93,98,110,106,98,112,106,104,108,107,100,100,101,107,104,113,98,105,108,105,96,109,112,108,103,104,102,103,91,101,99,104,109,100,93,117,107,89,100,107,107,93,94,83,86,98,102,102,109,105,112,106,107,109,102,107,108,99,98,94,104,107,101,107,106,105,103,98,95,102,107,103,102,91,106,103,101,112,107,93,105,93,111,109,116,93,111,113,98,106,81,106,101,100,100,98,112,103,130,106,94,109,98,108,93,102,122,105,100,108,100,90,89,99,120,96,99,103,105,107,80,94,95,98,93,101,105,97,122,98,109,100,98,99,102,113,112,105,101,108,108,108,97,99,100,116,96,104,98,101,103,98,95,107,98,98,101,100,90,103,92,109,108,105,115,114,99,106,95,115,109,115,105,97,112,109,88,101,106,112,107,92,100,96,95,107,96,109,101,103,111,93,94,105,100,106,100,99,126,80,115,114,100,105,113,101,106,102,99,95,93,99,100,105,95,98,94,102,104,107,95,84,112,109,93,96,88,114,94,109,91,102,98,116,105,105,97,84,97,110,95,96,97,124,96,104,105,98,61,97,115,95,98,100,108,86,102,113,87,102,108,92,97, +448.74866,104,100,93,104,100,95,112,104,90,95,102,99,96,111,99,110,95,116,109,106,101,85,99,95,101,101,98,108,101,102,103,95,81,112,106,98,96,82,103,93,91,106,99,102,111,95,97,113,117,107,111,95,105,97,105,83,100,105,116,88,102,86,100,106,129,105,117,95,92,117,106,107,93,102,101,114,103,91,97,97,102,102,106,103,98,95,103,117,99,104,95,102,106,87,98,70,111,107,110,105,102,97,106,89,93,102,102,105,100,109,94,101,99,96,103,97,99,98,101,106,82,97,112,106,113,119,91,108,102,94,98,109,87,103,104,99,97,100,87,101,112,102,101,80,99,109,100,97,103,100,111,97,103,92,85,101,113,105,109,101,101,103,112,107,108,98,105,97,104,91,101,94,90,101,79,105,113,83,100,105,106,97,97,105,90,106,99,102,104,113,96,103,94,105,97,90,101,99,102,108,108,109,91,109,94,103,92,104,103,99,101,107,108,106,110,103,94,102,100,96,104,107,103,100,105,117,111,106,92,99,103,101,105,95,109,104,110,110,95,102,95,98,118,97,104,102,106,99,99,101,100,103,109,119,97,104,110,100,95,98,100,101,102,98,97,107,94,107,98,90,95,91,102,94,116,87,91,107,104,94,100,108,103,100,103,78,94,98,95,104,107,99,112,104,100,104,95,106,99,102,98,109,110,121,101,108,108,102,98,107,89,107,104,113,106,102,103,109,103,87,104,101,93,104,100,121,105,65,110,105,101,90,108,106,109,113,91,98,100,105,80,106,79,93,82,103,104,104,104,101,98,92,100,106,109,104,100,104,101,103,97,99,120,112,95,108,116,106,85,107,113,99,90,95,106,99,102,102,87,92,95,100,77,90,106,97,106,97,108,101,122,95,99,107,101,94,95,98,108,101,96,102,106,107,107,101,95,103,102,99,100,94,104,114,98,103,97,95,110,107,99,97,96,109,109,108,101,107,82,118,90,105,100,94,107,112,101,120,78,94,101,106,99,105,93,105,100,110,107,108,107,102,96,104,94,99,102,96,107,99,95,108,92,100,110,83,110,103,113,114,100,107,94,101,99,103,96,108,108,97,85,100,121,106,102,104,100,113,106,90,108,96,111,108,113,100,97,93,97,100,111,96,102,89,84,105,99,93,98,106,98,98,100,105,98,99,102,101,97,98,109,103,95,105,110,94,111,109,106,104,102,109,121,95,101,98,106,98,107,109,111,107,106,99,107,94,119,97,106,100,92,102,85,98,114,93,88,103,95,104,105,114,81,94,88,101,114,99,90,98,90,101,105,107,97,106,97,115,101,105,99,100,102,109,111,98,102,99,105,101,95,109,94,99,98,114,98,123,100,97,110,103,105,107,97,95,98,101,105,107,106,96,113,106,104,97,95,85,100,109,108,111,101,104,106,111,104,95,99,95,104,105,96,109,101,93,92,98,113,101,99,98,102,100,101,105,113,109,100,117,105,107,104,107,108,97,109,84,92,92,105,97,93,99,98,95,104,101,113,84,119,117,100,95,84,90,86,100,111,98,100,117,109,88,92,97,117,99,94,109,92,96,95,99,97,108,98,97,112,102,96,96,98,94,107,104,105,104,114,100,92,69,96,98,105,95,97,104,115,102,94,101,98,103,101,91,95,86,101,103,98,106,92,99,113,94,98,102,120,93,96,87,109,101,108,111,116,105,103,105,110,99,104,106,115,117,103,91,101,95,90,102,98,100,113,96,98,93,102,111,111,110,93,100,108,105,107,90,104,99,112,105,101,99,113,103,97,107,98,98,109,116,94,103,105,93,99,95,102,95,97,99,102,94,116,104,91,101,98,107,94,103,101,94,108,106,118,94,102,109,93,112,89,95,110,105,113,91,118,102,102,100,76,109,95,108,102,91,104,110,105,106,99,114,109,98,95,93,104,90,99,94,98,114,119,103,109,101,94,99,114,94,111,100,104,104,99,99,124,99,98,100,102,96,103,103,109,102,102,104,106,102,116,101,100,98,116,96,102,104,105,124,93,101,91,105,109,107,99,101,104,108,108,108,97,97,99,103,98,94,93,113,109,97,95,97,92,97,89,103,103,96,115,111,112,101,103,96,102,94,94,92,98,107,102,115,103,108,95,95,101,107,109,118,100,108,96,114,98,116,99,101,99,109,93,99,107,103,104,104,110,110,94,96,105,103,104,106,87,102,88,91,103,100,103,109,110,107,83,99,109,112,96,96,102,78,101,102,95,92,109,98,109,111,106,97,107,96,100,118,105,100,96,94,104,103,99,91,98,93,99,97,96,107,113,84,94,98,113,103,94,105,111,101,100,100,104,104,99,93,64,108,98,104,134,107,101,107,112,99,102,103,94,97,109,109,93,106,97,110,112,101,112,95,109,111,106,108,100,99,92,105,114,107,112,102,97,100,106,96,100,118,105,103,110,100,100,99,93,92,94,102,93,112,108,116,102,95,106,103,96,102,108,101,94,100,103,92,116,116,97,89,106,99,102,108,106,105,102,113,108,111,93,101,99,95,91,112,109,78,98,100,95,112,87,100,105,106,109,96,108,102,101,98,100,104,95,94,83,111,106,104,95,111,110,106,96,104,112,96,109,103,114,102,107,100,93,95,111,112,101,91,120,98,104,111,95,115,106,96,101,104,99,94,106,102,122,98,111,97,97,107,106,106,104,112,116,107,96,104,98,119,97,94,98,103,107,93,118,109,82,104,104,113,112,105,72,119,112,105,116,104,102,91,106,110,103,104,79,104,107,110,89,113,108,98,104,107,90,99,102,105,96,103,92,103,98,109,111,99,103,110,117,98,95,109,98,110,115,109,96,104,103,103,102,98,100,100,96,117,107,103,106,109,98,108,106,101,105,94,105,96,105,102,104,92,100,103,95,111,108,106,95,101,106,104,115,101,99,102,107,100,99,120,99,99,92,98,101,106,98,109,94,102,107,104,112,101,96,116,87,99,109,102,110,105,104,99,104,101,116,104,102,98,101,99,118,105,99,112,98,104,107,97,107,117,81,89,117,109,105,107,111,124,95,100,104,72,95,118,91,98,106,92,110,113,120,113,104,109,105,105,109,86,112,94,109,95,99,99,99,113,103,94,107,100,103,93,95,95,106,108,113,103,99,96,98,93,102,95,98,94,95,106,99,116,104,134,111,98,99,84,91,112,106,103,113,107,106,111,98,107,109,102,108,105,111,104,106,100,113,101,94,105,94,109,105,107,107,101,116,105,105,107,101,100,102,109,119,103,97,103,94,103,99,110,103,100,111,100,100,100,96,101,103,98,110,87,103,109,106,104,107,105,108,102,103,102,107,106,102,89,99,105,101,98,97,100,117,107,109,105,113,108,116,94,106,95,95,76,115,92,91,100,102,107,107,108,106,102,102,98,98,101,112,98,102,98,101,100,89,103,106,113,109,84,100,109,113,103,119,91,106,102,110,109,113,102,103,108,105,113,103,94,106,101,112,104,119,106,105,111,111,112,111,90,107,99,98,95,115,100,71,112,102,103,92,99,96,107,105,75,100,94,107,104,102,101,102,112,111,102,108,104,108,102,100,118,99,74,103,100,101,117,112,102,107,120,103,107,95,111,100,91,105,103,103,98,89,107,106,116,109,116,99,94,95,81,98,104,102,117,80,98,97,105,101,98,105,103,104,125,112,99,89,104,109,115,105,101,111,107,103,101,121,112,98,106,100,93,93,95,96,94,109,103,97,118,101,103,104,112,99,99,109,108,109,104,111,102,97,102,106,105,100,96,108,101,103,110,110,109,88,88,103,107,101,100,105,110,105,101,101,127,98,96,94,99,96,100,94,104,98,112,103,105,95,114,109,101,107,101,99,100,103,99,99,97,109,90,93,107,100,94,103,89,116,105,105,105,97,113,122,105,96,100,94,100,108,113,108,74,121,110,104,100,96,102,113,104,99,108,99,99,104,111,110,100,124,113,90,100,101,105,111,99,105,105,103,109,109,109,108,109,108,109,86,100,108,105,106,99,102,96,97,103,102,102,106,110,105,100,105,106,104,110,105,111,106,101,116,104,103,69,110,103,110,113,108,111,102,110,107,111,106,109,101,113,98,104,104,118,100,113,112,104,108,109,102,105,105,97,95,102,122,98,95,110,103,107,104,110,98,93,105,106,104,105,96,108,103,112,100,99,118,104,100,104,92,99,103,112,110,98,109,118,102,105,99,112,111,96,103,104,100,102,109,104,96,97,98,93,103,106,97,65,103,105,96,98,104,113,100,99,103,108,102,91,91,98,77,109,99,99,105,101,102,111,107,101,112,103,106,103,104,113,104,93,98,115,106,105,103,99,107,109,104,105,101,103,88,99,113,87,98,95,94,98,103,99,106,98,117,107,97,108,113,98,109,100,110,91,105,111,89,114,113,106,121,103,84,109,107,96,102,104,105,101,99,114,110,108,104,105,105,101,110,94,110,109,102,95,104,114,111,102,111,96,111,108,106,102,95,102,109,102,101,99,97,98,103,100,90,109,102,103,108,102,105,111,104,95,108,111,103,103,106,99,109,103,105,98,110,109,100,124,113,98,104,102,97,95,103,99,107,116,103,111,99,81,109,102,103,103,99,111,110,96,105,94,128,101,101,97,109,100,115,100,103,95,99,99,93,87,106,98,124,107,112,92,97,106,99,116,107,102,113,81,101,100,108,112,109,101,97,102,104,92,105,87,92,97,106,101,102,102,111,99,101,67,113,81,100,110,110,96,95,112,96,100,92,95,100,120,102,98,96,89,105,98,102,100,104,102,108,87,97,116,105,100,115,87,73,105,112,98,104,106,101,104,96,99,103,98,108,91,99,103,100,97,97,108,114,105,92,89,121,108,84,108,113,79,105,101,124,86,126,101,104,98, +448.88904,115,100,101,106,104,99,96,116,87,78,97,110,108,112,115,101,106,86,106,96,100,94,103,100,98,87,108,88,88,112,95,101,91,101,100,102,98,105,98,86,111,111,93,83,99,102,117,94,95,98,93,98,113,103,103,90,107,92,115,96,105,111,105,94,100,106,98,108,104,92,112,115,98,105,107,119,99,102,102,100,104,102,103,103,97,97,107,103,107,113,103,107,89,106,99,91,105,106,108,108,90,103,100,98,97,112,94,99,99,114,98,101,109,93,102,109,100,103,104,90,93,99,104,92,114,120,102,94,109,110,114,101,94,103,107,106,91,98,110,105,96,101,84,102,106,101,121,102,94,99,110,98,104,95,89,91,94,104,101,109,111,102,93,98,120,91,107,102,112,101,111,91,104,113,103,94,117,101,103,95,106,111,101,108,119,106,100,101,108,97,103,100,90,113,98,117,105,112,95,99,98,105,103,103,104,92,98,108,108,111,97,82,116,103,101,103,90,102,92,114,95,104,97,103,104,111,114,104,102,99,106,96,98,102,95,111,116,113,107,102,104,109,106,103,93,99,97,104,98,83,88,96,99,106,109,111,103,98,101,112,107,117,96,107,94,102,97,111,116,95,106,111,102,94,95,96,100,112,109,97,99,113,104,100,101,105,97,104,99,110,101,99,116,99,104,108,100,111,103,98,104,102,95,116,96,104,98,106,97,109,113,110,107,110,96,108,104,105,106,95,100,104,100,105,96,100,102,105,110,99,105,86,103,109,107,100,138,98,102,112,109,101,103,100,109,109,94,102,99,98,106,110,106,108,98,120,117,113,101,98,115,108,104,100,90,107,113,97,100,106,104,99,116,103,103,94,94,110,104,98,100,93,98,113,82,107,106,97,102,105,109,96,118,95,97,93,98,96,107,101,99,99,117,112,133,104,111,96,121,99,105,105,99,106,97,101,95,100,116,102,106,115,104,103,106,99,108,94,101,105,104,99,114,105,109,101,112,110,93,99,102,107,118,102,100,93,103,93,100,112,103,102,85,116,103,114,102,117,111,104,109,100,96,100,103,102,102,110,117,107,113,110,103,100,92,99,106,108,99,109,106,113,106,108,95,106,102,98,102,108,109,108,94,102,95,101,90,91,103,99,110,101,99,99,101,101,98,100,102,114,105,101,104,108,105,105,109,109,118,107,102,94,118,111,86,105,110,99,112,107,109,107,107,100,99,110,112,106,97,105,101,100,105,105,114,102,102,111,102,104,105,114,111,117,96,104,114,100,113,109,93,104,87,113,98,109,113,99,96,100,94,101,99,101,116,98,118,117,106,89,100,108,99,106,107,111,113,109,105,94,109,105,79,100,99,109,103,106,104,109,115,106,102,99,98,99,100,101,105,108,105,105,104,90,111,112,101,99,109,96,103,110,100,109,99,86,97,107,114,107,102,105,103,110,101,105,94,108,98,113,103,129,101,98,111,109,102,105,109,116,97,128,104,107,95,103,104,109,104,95,100,103,104,106,86,108,109,97,114,110,103,112,103,99,107,100,95,103,105,111,100,102,113,105,103,101,100,103,114,110,110,102,100,92,95,101,120,105,102,99,104,116,101,102,92,104,104,99,97,118,107,101,94,95,106,102,109,98,110,102,109,112,99,106,100,103,103,96,86,114,103,100,92,91,101,106,101,110,114,104,117,99,116,110,95,111,97,107,94,101,99,113,97,101,104,110,106,100,106,101,102,100,108,105,95,95,100,101,93,109,108,108,110,95,108,96,100,114,105,94,104,119,107,97,111,109,109,100,89,101,98,103,97,111,96,106,99,101,125,113,105,112,100,99,109,102,121,109,105,105,105,113,91,103,100,92,115,113,111,108,99,99,108,113,99,123,106,98,109,93,113,101,91,114,99,109,102,108,107,106,107,110,118,85,105,97,97,104,107,99,97,78,101,107,106,99,106,112,84,103,128,88,105,82,108,113,97,81,119,107,104,108,110,103,107,95,106,109,90,89,106,94,95,107,101,108,98,114,102,105,104,111,107,95,106,110,104,103,105,103,145,121,105,112,110,107,121,100,98,95,97,112,97,111,121,115,98,104,96,101,99,99,107,108,102,103,113,102,99,93,101,98,92,109,96,99,93,104,105,106,111,109,95,102,101,118,104,105,104,124,106,108,101,103,109,112,115,106,106,101,113,114,89,110,111,101,103,113,95,104,97,103,112,101,111,95,103,107,105,106,102,113,91,81,106,101,102,105,115,105,120,97,107,100,91,104,101,109,106,98,112,103,101,116,96,102,108,92,97,100,99,105,103,105,110,104,90,105,102,109,99,108,103,92,103,101,102,98,116,94,102,64,121,102,101,106,102,106,109,84,96,103,106,119,96,111,109,101,97,101,106,103,102,104,111,102,95,98,101,95,102,103,96,106,92,102,117,101,106,116,100,91,103,107,103,102,104,104,100,113,93,114,95,113,108,96,93,107,107,105,103,99,103,109,105,89,99,101,101,109,95,100,114,112,113,106,108,89,109,114,107,102,79,107,114,94,108,113,98,115,120,113,107,99,78,107,116,111,97,102,109,115,102,107,109,97,98,111,100,97,80,113,96,101,108,117,96,103,95,107,105,108,107,101,104,77,106,114,99,106,118,91,103,106,106,116,98,112,113,105,95,115,108,90,115,95,86,106,105,109,109,99,111,96,102,105,128,108,105,111,106,99,106,113,105,111,99,109,98,109,114,97,107,109,103,100,103,117,115,103,99,110,102,111,120,111,90,107,95,107,103,102,93,107,112,111,94,102,107,99,104,108,104,104,111,95,106,104,110,112,107,106,110,93,105,106,98,101,67,102,120,108,100,99,98,113,107,110,101,109,112,105,94,106,112,107,107,102,94,102,126,107,100,116,108,111,101,103,104,102,107,111,121,97,110,111,87,103,102,108,107,105,99,94,111,98,88,99,105,105,97,113,96,106,93,103,101,106,104,104,99,100,104,96,106,110,103,104,97,111,105,101,102,106,109,102,104,107,101,98,108,104,107,116,107,120,103,100,105,103,98,106,109,112,109,111,129,98,107,97,101,113,98,105,104,100,111,111,98,96,106,121,104,91,106,112,106,104,111,113,98,104,105,94,95,103,107,102,103,99,113,102,108,110,108,93,105,100,110,105,107,105,110,103,124,106,103,106,104,104,104,101,98,98,104,99,116,103,112,112,100,98,105,111,97,106,99,112,112,116,109,102,100,99,90,101,110,97,116,107,111,105,108,105,117,96,103,115,99,117,110,108,113,106,101,105,109,102,95,102,101,92,106,108,98,102,120,115,103,102,109,103,109,107,122,99,101,114,96,103,104,111,104,105,103,109,107,95,104,103,108,111,90,108,99,104,103,100,117,91,96,111,105,108,110,102,103,111,99,104,109,94,119,109,106,96,111,103,102,98,117,113,94,112,102,102,113,105,98,102,97,90,102,73,103,108,107,85,105,101,105,106,91,103,109,102,111,103,104,110,114,108,102,117,117,103,109,107,105,95,104,104,108,108,102,83,101,105,91,104,106,112,113,107,115,115,111,95,108,117,110,107,100,108,108,101,96,110,99,94,96,104,103,102,108,100,127,119,106,111,103,104,79,108,97,100,104,97,102,120,107,104,101,107,105,77,103,105,107,112,97,96,109,110,100,107,99,111,102,110,113,113,95,115,98,107,104,103,116,102,116,125,102,104,101,112,102,106,103,96,115,102,103,100,117,110,105,106,105,100,93,102,106,104,105,95,117,103,109,104,110,102,100,105,105,95,104,104,102,93,103,101,95,112,112,107,109,104,113,115,101,117,113,105,114,104,102,87,91,95,104,106,106,109,111,107,109,104,99,95,106,113,99,114,108,106,101,107,111,103,110,99,97,110,107,95,104,98,97,105,106,101,108,101,110,102,101,99,104,94,103,104,120,113,105,114,103,99,117,95,109,107,104,104,112,109,112,111,97,100,110,98,100,102,94,113,108,108,99,103,102,105,104,93,101,103,95,99,108,91,104,109,92,100,99,106,105,107,75,109,108,104,104,107,111,96,101,94,108,99,103,96,111,105,109,100,103,100,106,103,103,113,113,108,112,101,103,108,107,108,101,95,101,102,105,110,104,97,112,114,109,90,108,109,100,92,87,111,109,109,106,109,113,99,95,96,120,107,104,102,101,102,107,95,116,103,117,107,115,98,115,103,112,98,104,115,100,114,112,108,102,105,104,100,100,103,119,106,111,99,92,89,103,107,96,102,104,106,115,99,113,107,104,111,98,102,117,94,71,105,93,122,121,103,102,108,100,91,112,112,118,115,106,108,103,117,104,105,113,100,102,106,101,105,104,104,100,106,95,100,104,98,113,105,109,106,85,106,109,107,107,94,100,102,98,105,104,116,99,92,102,98,102,110,87,99,104,105,99,98,117,96,107,104,105,105,94,130,104,97,97,106,97,125,107,99,104,97,118,103,99,102,108,105,110,90,101,104,100,112,107,102,94,99,108,114,112,105,110,104,105,105,97,115,104,103,103,95,97,101,95,120,94,105,114,108,116,106,97,105,105,115,107,107,141,109,115,118,93,108,107,101,108,97,106,86,92,105,99,77,106,100,117,114,109,119,107,103,102,97,111,105,103,115,103,96,105,97,98,116,90,100,109,100,108,105,91,90,109,97,93,102,107,117,106,102,104,99,106,113,107,115,108,105,98,106,95,95,96,100,100,113,76,100,99,111,101,98,106,114,108,107,102,105,98,111,88,110,111,95,103,91,103,119,104,112,97,92,101,97,99,96,109,96,107,104,89,115,94,110,120,106,102,90,104,88,102,98,117,109,109,107,105,106,94,103,91,98,101,102,97,106,104,103,109,97,106,126,95,97,103,105,103,111,138,102,105,95,108,116, +449.02942,117,99,94,101,91,91,100,111,98,110,96,103,99,78,107,112,91,107,102,92,101,103,106,91,101,109,99,116,101,100,104,110,108,98,93,108,123,101,100,96,89,101,108,97,100,114,94,90,102,104,99,112,102,94,98,95,98,112,103,95,100,89,97,93,107,100,99,95,78,102,112,111,96,98,106,95,102,90,105,104,105,106,97,102,108,90,103,107,106,93,95,105,91,111,90,105,98,105,106,99,113,106,110,93,120,96,94,100,103,98,89,112,117,96,108,111,74,97,113,104,107,98,99,103,103,91,109,96,106,108,100,102,103,103,109,98,103,108,99,98,101,109,103,105,110,102,111,106,95,94,98,117,104,97,91,106,114,99,105,112,98,106,88,112,100,102,108,114,102,113,91,104,102,94,129,97,97,109,105,105,104,110,100,96,108,102,99,96,110,103,100,98,106,98,104,99,100,95,101,119,101,103,106,103,109,117,95,97,106,104,103,94,111,94,105,98,98,116,104,88,100,112,110,94,94,105,104,107,98,101,81,89,103,100,95,103,103,95,104,100,113,100,113,104,94,106,107,91,116,101,101,100,104,106,107,100,100,100,91,103,91,109,105,97,93,106,104,104,103,103,101,124,103,86,117,98,112,111,108,96,101,90,110,107,103,92,111,104,102,96,117,103,95,98,115,99,102,98,114,98,96,104,103,111,94,93,101,103,109,104,99,104,98,92,102,94,103,114,99,95,91,94,95,90,95,93,91,90,105,114,109,92,103,102,102,104,102,111,96,82,94,92,102,90,104,100,99,101,110,80,102,98,110,103,106,100,86,105,103,102,99,106,106,119,102,97,94,109,95,100,102,101,115,102,101,103,103,104,117,99,110,117,89,102,100,100,102,96,94,87,105,95,93,108,98,95,97,108,102,97,92,112,113,99,102,101,101,102,108,96,93,92,109,86,103,102,99,95,110,111,110,92,109,101,88,91,102,100,95,105,110,100,112,94,98,88,109,106,100,105,100,91,101,109,98,89,96,94,91,108,95,107,101,107,102,97,98,93,101,100,103,106,107,91,106,102,105,93,94,95,113,124,108,87,108,108,100,105,108,91,99,103,108,102,101,106,105,102,121,104,97,113,105,91,93,99,90,102,101,95,108,112,112,112,94,117,83,106,104,98,110,101,108,92,103,98,104,76,94,99,106,104,117,104,98,107,105,96,102,97,104,110,89,108,100,126,110,103,90,110,103,102,112,94,93,106,101,100,93,108,94,108,109,94,92,99,104,98,79,96,85,113,91,98,97,101,98,84,84,108,92,94,101,108,93,104,107,112,93,109,107,97,116,103,90,97,97,98,86,98,96,98,100,105,117,109,91,95,83,103,112,107,106,101,101,93,107,77,92,100,104,95,102,109,119,108,105,100,83,108,108,92,98,99,96,99,100,95,100,100,103,105,96,100,87,96,109,95,107,112,113,107,101,96,93,97,108,91,91,102,89,103,106,99,106,103,107,102,87,98,89,106,91,96,87,105,96,105,105,102,111,102,95,115,101,107,103,113,99,93,110,101,112,103,106,103,98,102,96,101,109,95,98,109,99,103,89,106,101,96,126,109,78,100,91,100,102,95,108,118,106,98,105,98,105,100,107,98,106,100,105,97,95,101,101,102,91,90,100,103,102,105,100,99,90,93,103,96,109,90,106,105,112,111,134,109,92,111,98,99,75,96,99,98,105,110,100,113,105,105,102,92,96,105,86,99,101,98,106,92,96,103,98,92,107,111,95,90,101,102,103,95,102,109,99,100,99,94,101,95,101,112,94,96,114,95,106,98,75,102,94,88,98,103,103,95,105,90,99,108,112,90,104,87,114,113,97,109,105,107,105,97,116,100,105,108,103,111,104,77,113,93,96,123,105,92,109,95,97,100,93,101,103,104,105,106,108,117,99,104,98,103,105,103,91,91,113,100,104,112,107,86,102,100,97,102,111,94,98,95,116,102,109,92,109,96,101,106,94,89,95,105,97,86,98,101,77,101,104,101,100,108,95,106,94,106,100,105,106,111,109,103,102,97,126,102,105,97,95,105,112,103,105,109,100,91,105,134,99,100,100,102,95,106,103,105,97,96,100,105,95,94,105,90,96,110,95,101,125,109,104,105,104,109,87,71,117,107,108,103,106,109,112,106,96,111,100,121,102,106,100,107,93,102,99,84,97,95,104,98,95,93,102,100,99,99,99,98,102,108,89,110,104,74,87,98,112,91,111,84,100,99,104,106,89,91,97,109,105,88,101,95,98,97,98,98,109,98,92,103,93,79,83,107,106,101,101,91,93,101,93,95,101,93,107,92,91,105,116,86,105,83,104,96,101,104,110,100,92,100,99,118,92,104,120,101,109,90,89,98,97,113,108,102,103,106,94,112,104,107,102,93,101,109,104,96,90,98,101,106,97,103,106,101,116,100,101,86,97,91,97,102,81,100,105,106,108,99,109,106,94,98,104,111,93,107,99,96,108,106,109,99,107,109,111,94,109,108,114,105,104,112,104,106,105,105,93,97,108,106,110,117,98,100,92,98,91,99,92,102,100,98,104,105,94,117,110,94,88,95,107,92,102,102,104,97,106,113,116,131,94,103,108,105,97,95,99,102,100,96,113,99,107,113,110,112,107,100,104,97,95,96,120,87,91,92,102,87,93,107,102,111,95,113,83,101,91,91,95,111,104,125,106,106,95,110,105,100,102,95,98,87,94,98,111,104,105,87,112,103,98,98,96,100,104,100,109,94,105,109,115,106,97,101,106,97,94,104,100,105,101,102,97,112,91,102,103,111,102,110,104,104,117,100,106,98,106,109,97,106,94,106,106,113,97,104,101,111,106,104,95,110,104,104,114,101,94,97,104,115,103,107,108,113,107,95,104,100,102,96,96,105,111,98,90,104,107,105,110,115,98,100,99,109,102,109,105,103,100,107,101,95,100,111,103,107,101,87,98,96,108,109,92,102,103,109,87,102,93,93,104,102,105,107,119,98,108,97,104,99,105,102,104,92,103,97,101,98,94,106,92,115,108,95,102,105,98,95,107,95,98,100,98,97,87,115,102,98,106,99,104,99,107,89,117,106,91,103,97,110,104,111,100,106,105,90,103,123,98,92,107,103,105,103,99,100,95,122,101,99,94,102,105,102,109,111,94,107,101,107,99,98,97,104,109,105,108,110,106,85,95,104,95,103,99,102,118,93,91,95,100,107,86,105,106,104,108,89,103,115,105,104,107,100,109,108,107,107,95,113,96,95,106,104,95,104,91,104,115,95,87,93,111,100,81,103,112,107,109,98,98,93,102,94,106,93,95,96,97,107,96,107,104,106,109,102,95,93,102,90,98,99,111,130,97,109,103,93,107,107,99,108,92,101,97,111,100,109,103,100,87,101,111,120,102,108,75,105,111,81,107,100,88,97,96,104,97,98,117,103,96,121,91,102,108,119,98,98,106,96,102,108,104,98,105,106,106,109,113,100,109,87,98,107,111,98,104,123,103,105,114,83,106,101,109,106,96,99,105,102,107,103,98,113,121,103,106,88,93,94,104,100,102,105,107,102,103,86,104,109,97,99,91,119,99,104,115,99,100,91,95,109,112,111,98,87,97,100,106,98,103,112,97,105,103,108,109,96,102,123,100,101,107,113,106,97,105,112,123,109,104,104,110,112,104,108,101,96,97,103,95,99,109,106,104,98,112,117,88,94,105,94,106,97,100,99,108,101,113,96,104,100,95,98,110,111,100,100,96,95,98,92,100,107,103,96,102,88,104,103,101,97,87,105,105,99,110,109,109,98,102,111,104,111,119,111,114,101,104,107,113,109,96,104,105,96,108,101,105,95,99,118,98,117,90,104,98,99,107,106,98,103,100,103,101,87,96,106,100,107,102,105,103,72,95,101,100,80,109,89,95,105,94,113,102,102,90,105,95,104,101,105,94,104,107,102,104,90,101,93,94,111,107,111,102,102,103,100,105,103,106,99,99,95,106,96,121,99,104,110,114,98,117,94,99,107,104,102,106,77,113,103,106,103,102,110,95,93,95,92,101,104,100,95,105,87,106,105,90,100,99,112,108,113,99,102,102,104,92,111,100,97,101,114,100,108,98,106,94,111,108,99,93,95,97,99,106,96,102,99,112,101,106,90,98,103,108,78,99,100,89,113,111,99,113,109,94,109,108,102,97,107,113,94,92,88,111,98,99,112,98,83,114,83,95,103,81,98,95,95,92,98,104,91,103,101,91,105,99,109,105,106,123,94,101,101,106,100,90,112,97,107,99,96,102,111,98,109,91,99,101,104,108,101,107,105,98,97,106,98,106,103,108,98,99,91,104,119,102,103,101,100,98,108,100,100,112,100,106,104,94,110,106,108,99,102,99,102,103,100,100,94,109,101,91,105,99,95,101,110,109,97,107,110,97,91,107,98,103,108,114,94,106,117,106,105,116,101,109,96,107,97,93,94,105,97,104,122,106,99,94,108,109,104,113,101,109,108,104,101,102,97,71,103,95,107,102,100,108,108,102,98,82,75,118,99,94,104,107,112,102,94,103,95,103,107,105,109,105,106,106,96,105,95,125,102,100,95,107,77,106,97,98,101,91,105,101,98,94,95,106,112,94,114,107,95,102,104,105,103,94,101,96,102,100,91,92,96,100,94,96,101,98,94,102,114,101,99,96,98,98,106,104,96,103,102,80,105,100,99,100,103,93,105,99,104,87,98,96,88,107,112,94,108,94,95,95,97,112,100,96,99,106,106,78,96,96,99,112,98,102,102,97,103,99,101,94,105,96,92,99,98,85,107,102,108,107,98,67,82,102,104,91,109,94,99,92,109,97,92,101,101,109,94,81,99,101,106,119,97,100,92,113,99,100,91,112,107,101,87, +449.1698,102,98,83,103,94,93,83,98,96,117,93,101,114,111,108,101,97,111,98,90,110,106,100,99,99,101,99,97,95,97,92,92,111,104,90,106,102,95,94,94,96,92,100,97,103,106,100,94,96,102,100,86,105,96,100,103,103,101,105,106,92,105,99,95,110,94,103,106,109,99,101,103,106,112,108,97,104,98,103,103,106,98,100,104,88,105,104,104,95,76,105,84,91,117,104,97,116,85,105,89,91,72,95,93,119,97,86,99,100,94,105,93,80,108,110,95,105,105,118,94,99,100,103,90,105,110,111,102,101,106,106,101,87,93,97,106,108,98,89,100,94,99,106,95,98,101,104,98,99,99,94,101,110,100,104,92,98,94,83,109,93,102,105,98,95,84,100,110,107,99,105,96,99,96,108,107,104,104,109,113,98,92,109,103,88,126,106,99,109,103,83,101,98,117,82,115,108,83,104,96,115,92,100,101,94,94,97,106,117,103,95,111,86,96,116,99,94,98,95,102,111,99,97,100,105,103,98,93,102,100,101,98,99,102,96,116,98,108,104,110,98,104,126,112,92,95,91,102,107,99,110,103,104,106,95,99,100,98,92,102,116,108,98,121,91,98,104,107,94,92,107,87,99,110,100,103,97,99,116,104,93,108,99,94,88,105,68,99,103,106,99,108,102,103,106,82,95,95,111,110,99,106,109,110,100,98,77,103,100,100,96,102,100,110,99,101,117,116,109,104,106,95,102,100,106,101,95,95,121,115,99,98,100,96,99,103,70,105,106,105,108,85,92,91,116,100,99,105,112,118,102,114,103,110,107,101,97,113,103,98,104,97,101,94,94,93,101,105,102,110,99,100,94,95,104,91,101,110,98,107,105,111,100,85,114,103,106,96,110,99,107,86,105,108,101,88,86,99,103,112,95,87,104,98,92,94,92,95,104,100,100,96,92,115,88,109,104,98,101,105,102,108,90,104,94,92,105,110,105,104,91,104,91,101,101,100,99,102,108,96,94,96,107,103,93,104,95,96,114,115,100,103,100,74,104,107,106,103,105,97,103,89,109,113,99,99,103,105,97,104,104,114,108,110,95,104,102,118,88,80,107,109,102,103,101,90,123,98,103,89,95,127,110,109,93,100,102,103,97,96,110,107,103,110,105,107,101,107,106,90,108,91,91,101,100,105,113,105,94,93,103,90,102,103,113,104,103,99,99,100,96,95,104,107,95,106,107,106,103,101,97,91,92,100,97,94,101,104,111,109,100,110,99,105,99,102,102,98,100,100,108,98,96,105,99,100,105,107,102,97,98,107,101,89,102,102,109,93,105,87,114,101,96,101,95,93,95,104,96,102,97,104,107,102,108,88,113,101,118,107,100,95,110,100,95,109,94,104,97,103,96,100,97,99,108,103,104,91,104,107,99,109,111,96,124,103,101,84,98,103,113,104,107,106,89,113,95,98,101,93,93,109,105,106,100,104,102,105,108,109,99,102,105,104,103,88,110,96,102,104,107,104,98,110,91,98,120,108,107,94,111,103,113,105,104,113,104,96,111,96,95,99,100,95,91,99,93,109,94,87,101,99,101,98,88,80,106,92,114,96,91,83,100,86,102,103,103,101,101,102,100,105,99,100,109,98,92,110,114,106,99,102,108,113,102,100,93,85,94,101,88,107,91,101,96,103,104,98,103,105,113,93,105,103,103,109,101,113,94,104,121,108,121,93,106,106,98,111,102,104,102,107,105,108,103,80,110,108,104,100,113,118,103,108,98,102,106,94,87,86,106,96,95,103,96,92,99,105,104,112,117,107,105,115,87,95,103,104,101,87,96,106,109,97,107,107,104,113,115,108,107,100,95,100,103,107,117,103,104,94,96,88,103,100,89,99,91,103,104,103,103,123,96,105,105,108,94,109,111,106,111,113,109,96,97,100,97,102,108,107,101,97,100,109,103,81,103,99,106,91,110,91,93,106,98,96,91,96,101,113,111,99,100,105,108,96,115,105,98,104,103,103,105,108,81,94,103,107,102,99,83,104,100,95,106,98,107,104,104,97,105,105,101,110,102,87,88,94,95,104,104,102,108,105,104,97,87,103,98,92,107,107,96,103,110,80,107,101,95,104,104,106,90,96,114,116,103,109,108,101,100,104,100,103,95,97,102,105,107,105,98,98,108,103,108,118,103,106,98,112,143,106,104,110,103,105,100,92,112,109,92,97,99,105,107,100,104,91,97,90,97,105,96,100,105,113,94,108,111,105,109,104,104,117,100,98,96,99,105,98,98,104,97,90,101,82,102,103,93,102,93,112,101,92,110,94,105,96,87,96,92,102,100,94,101,101,95,101,101,98,101,94,104,90,113,102,102,118,105,109,90,111,106,104,95,100,96,97,101,97,95,108,102,95,97,102,123,78,101,113,94,104,90,109,95,102,92,97,105,95,94,104,99,100,100,110,102,105,101,96,111,99,99,108,110,82,112,113,108,105,96,111,116,98,76,103,96,97,108,102,115,106,110,98,105,102,102,98,97,107,117,106,102,113,107,98,103,99,91,108,100,106,96,103,108,101,96,102,106,102,104,86,103,79,98,104,90,93,90,97,105,106,90,108,103,116,99,111,100,98,111,110,112,99,98,94,100,107,99,102,93,99,100,98,103,107,109,95,110,100,103,124,110,108,102,104,93,106,112,97,105,100,101,85,102,97,105,103,104,108,103,112,98,105,99,97,99,96,102,108,119,93,100,104,107,95,107,133,109,108,97,103,107,100,100,109,97,112,92,101,104,102,99,120,103,102,98,113,101,103,115,126,94,91,113,91,103,103,110,102,109,94,106,95,108,94,102,103,108,99,99,111,102,107,98,102,97,99,96,101,99,92,108,102,104,108,104,94,106,102,108,116,109,107,103,102,104,108,107,99,100,102,109,103,107,112,107,104,106,110,93,124,116,94,97,98,101,108,100,104,93,109,101,117,99,105,104,102,95,103,103,102,95,76,107,103,111,101,100,109,105,112,118,98,108,98,110,96,100,101,102,101,112,115,100,92,135,102,109,100,108,110,109,103,112,101,104,95,108,92,104,110,91,93,99,102,104,119,102,71,98,105,103,79,95,104,99,90,113,112,98,95,93,117,104,89,104,110,109,104,102,102,106,96,99,91,104,117,99,96,101,97,104,104,94,106,100,99,107,106,109,123,106,94,98,111,108,104,95,100,105,98,104,104,104,94,101,126,111,119,105,110,103,104,106,93,94,100,100,108,97,100,106,96,109,105,100,105,108,98,91,86,117,99,100,100,97,106,108,94,93,94,99,99,103,101,104,110,100,98,119,113,101,90,101,100,104,100,87,104,99,106,95,104,105,105,105,103,118,108,95,101,113,106,101,95,111,102,93,111,86,105,104,99,106,109,101,108,111,99,100,108,108,101,98,101,104,92,101,110,105,117,116,106,102,102,121,100,98,86,100,98,114,90,101,106,100,103,97,105,88,103,98,85,97,95,106,103,94,96,111,88,80,105,90,96,100,109,108,88,102,105,99,118,101,114,116,108,111,106,92,107,110,108,109,97,94,100,98,105,107,104,95,106,110,100,97,102,100,109,109,106,103,105,114,101,103,105,102,110,108,98,106,102,92,101,98,107,102,115,105,103,111,100,109,82,100,101,108,103,100,95,105,103,105,101,100,113,106,81,105,108,107,116,102,102,99,105,114,99,103,100,99,91,92,103,99,106,103,101,90,98,93,80,102,103,100,100,101,95,99,102,95,99,142,107,98,101,98,95,99,99,99,101,96,92,99,110,99,99,101,93,99,107,122,100,104,99,85,105,112,101,105,105,122,107,91,110,95,103,98,102,99,98,108,109,105,94,96,99,106,104,108,107,102,102,112,100,100,97,104,108,100,99,106,99,107,91,111,90,96,95,106,101,100,110,97,100,95,99,100,106,103,106,96,107,108,111,98,100,116,112,94,105,102,108,107,93,97,102,94,98,99,102,105,100,99,106,101,111,102,105,102,92,104,99,100,96,99,102,106,108,93,113,107,99,107,101,106,105,102,103,95,100,101,101,93,102,103,97,97,105,100,100,102,101,104,102,101,97,108,81,102,102,103,108,96,111,100,99,111,104,103,106,112,99,117,104,95,115,98,96,95,105,95,113,107,104,108,100,102,98,96,97,112,110,103,108,76,95,108,105,108,100,103,100,93,100,104,98,94,108,98,106,107,98,99,104,102,107,106,97,91,105,102,86,103,117,90,100,90,100,108,86,101,99,95,103,101,108,100,93,105,109,105,110,108,98,109,111,100,100,101,98,105,110,97,107,104,103,103,110,103,109,104,101,95,100,112,109,103,103,116,97,113,94,101,109,100,94,94,102,108,105,98,113,103,102,109,105,96,98,117,110,105,107,106,104,103,105,88,101,94,103,99,108,98,93,100,88,117,110,93,98,108,96,113,105,102,96,103,106,96,88,100,99,105,95,104,103,115,91,111,112,111,100,92,106,102,111,101,99,98,104,98,107,103,101,87,95,88,96,96,101,111,93,80,100,104,103,100,105,91,104,100,80,92,107,104,105,96,102,119,101,89,113,106,97,88,107,100,97,94,104,102,107,113,101,104,106,94,94,101,92,108,91,104,101,110,95,112,105,105,97,100,112,96,103,106,95,94,102,109,101,99,104,99,94,88,92,92,93,96,113,102,102,106,111,98,86,93,105,104,103,110,105,96,102,101,98,105,109,111,102,108,113,112,102,107,108,99,105,113,112,87,101,93,95,102,96,100,103,100,109,109,107,107,116,100,100,92,86,108,94,102,105,107,112,97,91,104,102,94,102,95,125,101,93,97,102,96,98,100,99,94,101,95,86,104,113,96,119,98,100,104,95,106,99,100,101,112,94,100,113,100,95,96,101,94,99, +449.31018,104,85,101,97,95,96,100,92,93,88,89,97,102,96,100,93,93,107,94,97,100,94,95,94,120,105,94,103,106,92,104,102,101,110,113,92,103,91,103,97,108,96,106,105,97,103,101,106,95,103,99,96,110,67,100,72,92,92,111,91,98,83,98,90,102,101,99,96,107,108,116,109,94,105,101,103,117,114,124,95,103,103,105,82,83,86,97,97,100,103,113,115,104,96,91,95,99,108,98,98,101,94,109,95,106,104,103,104,98,97,101,96,102,115,104,95,107,104,105,111,100,101,110,111,84,106,105,88,97,99,99,105,91,110,96,115,97,102,101,98,99,106,99,101,108,108,96,92,107,96,96,93,87,83,115,94,101,112,109,98,94,81,89,101,95,89,100,108,102,96,83,113,131,103,99,106,99,91,101,111,110,106,100,99,105,105,84,101,96,105,108,101,100,101,96,100,96,98,99,104,99,103,83,99,82,100,107,110,110,98,95,102,97,113,105,95,101,95,108,110,95,102,111,103,94,101,93,109,104,109,105,100,98,102,108,114,107,108,99,97,102,95,106,98,114,115,88,100,101,106,106,105,101,100,111,104,91,104,95,94,103,114,107,95,100,105,104,105,97,95,111,102,107,102,105,111,96,102,98,105,92,107,98,102,102,97,99,112,108,108,91,96,109,112,115,103,106,97,103,109,102,106,117,98,95,99,107,108,98,105,93,100,110,94,96,92,74,107,118,101,108,104,105,98,112,107,96,102,99,107,100,99,88,116,104,103,110,108,95,89,110,95,104,85,91,106,98,104,104,106,103,106,99,114,101,109,104,102,102,105,102,99,95,95,105,101,100,102,100,109,112,90,96,112,96,102,112,103,97,106,105,113,104,98,87,98,91,105,120,102,109,89,102,108,103,96,99,95,108,99,95,108,102,103,110,111,86,109,91,102,104,97,108,99,91,101,93,101,111,114,95,104,91,100,100,93,101,101,90,100,91,102,106,104,97,98,112,108,97,100,93,100,95,102,96,108,99,100,104,112,99,95,98,104,108,108,101,103,103,102,98,107,94,98,106,103,110,97,64,109,98,121,106,102,100,101,101,102,112,104,107,110,107,88,103,119,107,104,104,92,94,110,74,109,112,101,92,92,93,98,103,110,93,119,113,99,103,108,96,104,107,91,109,119,101,113,97,83,105,98,98,96,91,99,91,103,99,107,102,104,94,99,108,107,108,103,103,96,98,107,110,100,99,110,120,93,108,100,109,96,99,110,101,90,112,96,105,96,101,106,105,108,90,95,95,103,100,114,97,115,82,102,102,100,99,95,109,101,97,126,101,105,104,110,109,93,102,107,104,102,121,109,96,93,118,97,101,98,106,101,89,85,103,98,102,109,101,98,98,103,90,95,109,113,107,98,98,99,113,96,96,111,104,97,115,101,101,102,102,99,92,128,95,95,95,101,92,103,106,109,101,115,103,100,101,99,106,102,96,109,101,94,103,103,108,104,116,98,95,100,110,98,104,93,103,109,115,101,104,100,106,110,103,104,95,94,103,101,116,95,103,102,113,84,108,104,119,103,96,103,113,100,117,115,93,98,105,103,103,94,108,118,99,102,98,106,118,103,99,106,112,96,103,110,95,118,100,95,110,114,91,94,104,103,95,104,103,107,80,101,103,86,101,94,106,117,96,95,99,92,95,100,102,96,92,105,100,113,108,102,104,110,95,105,109,112,102,112,107,103,109,105,107,101,95,108,96,103,100,108,100,109,98,114,107,111,112,96,103,115,113,103,112,112,104,104,120,99,96,87,98,111,105,94,110,98,104,102,110,98,100,86,91,116,109,105,94,96,103,108,111,99,100,98,108,106,107,106,104,111,115,92,103,102,109,105,103,99,92,104,104,112,106,110,112,103,82,95,95,117,102,109,113,94,107,105,107,100,89,96,109,94,112,109,105,98,101,99,108,109,89,94,114,104,106,99,113,96,107,108,100,98,86,110,102,106,109,106,104,94,108,99,97,106,110,98,96,110,101,100,113,109,111,100,105,103,87,107,94,104,106,117,105,109,107,104,95,100,110,101,117,109,108,101,99,99,113,99,110,106,99,104,84,106,98,97,100,103,107,94,103,108,100,99,98,105,90,102,105,113,100,100,108,101,108,112,106,92,96,102,117,104,95,109,105,109,102,95,97,100,124,100,96,94,98,105,102,107,107,99,100,88,101,102,90,105,102,94,94,104,105,112,102,104,96,113,96,99,110,101,94,101,107,99,103,98,102,102,95,105,91,98,97,98,118,97,100,97,106,103,104,113,108,100,107,115,115,107,107,95,110,102,107,102,107,91,108,116,114,98,109,100,112,100,91,101,88,110,109,102,96,104,104,123,104,99,83,104,94,96,107,116,100,100,91,108,92,101,98,101,108,117,102,99,95,102,97,111,98,99,98,98,98,100,106,101,109,108,98,105,111,105,91,101,100,127,115,103,115,108,106,107,107,94,90,96,99,97,105,99,115,101,106,116,106,107,97,101,109,108,103,96,108,100,115,109,105,102,109,106,117,112,82,95,108,94,111,105,123,113,105,104,109,103,95,96,113,98,87,95,100,101,101,99,102,101,110,112,100,98,99,99,112,112,98,108,111,104,103,94,97,100,109,95,103,108,107,104,106,103,102,101,98,105,105,101,95,103,106,104,105,95,93,66,102,117,111,98,110,107,98,98,95,103,106,112,97,105,107,113,110,113,112,101,99,110,95,112,104,96,109,101,87,99,108,109,107,105,105,105,104,109,102,107,101,93,106,99,101,105,104,103,104,102,105,98,102,98,113,110,96,103,112,98,110,104,106,103,112,107,103,103,98,101,101,112,96,101,100,119,102,102,105,105,92,96,109,86,106,107,93,96,99,105,101,99,97,95,101,115,90,114,96,106,106,98,102,102,127,105,112,97,93,102,98,98,90,96,105,112,100,108,97,109,115,109,100,98,86,101,108,105,106,91,105,120,108,101,104,94,119,103,99,117,113,101,106,104,105,106,105,112,111,107,87,102,99,100,102,104,97,113,113,98,99,100,109,105,94,102,96,113,100,97,107,94,108,115,98,119,104,109,114,94,91,105,108,93,103,116,100,99,99,109,101,106,77,108,104,97,85,103,113,116,103,83,110,102,97,103,107,89,106,108,99,106,101,95,95,106,111,129,89,96,102,102,110,100,102,101,103,108,92,100,107,100,91,102,114,98,99,99,102,104,100,92,113,102,120,92,96,99,102,110,112,106,107,108,100,109,88,96,108,112,105,91,102,100,98,117,105,102,109,121,105,105,123,92,95,104,116,103,100,101,111,107,101,101,106,95,73,99,94,108,106,102,103,101,103,102,101,122,117,94,100,101,90,102,106,105,112,99,91,100,102,94,108,103,100,102,106,92,105,106,105,98,79,98,89,96,109,107,87,109,95,89,104,101,109,101,98,114,107,105,103,105,105,101,109,97,110,116,93,94,90,97,112,96,110,98,109,112,96,113,103,109,114,99,101,91,101,98,100,105,95,112,109,122,94,95,112,91,105,96,94,96,107,109,106,87,115,95,96,116,128,112,121,105,108,113,105,109,107,107,121,106,113,106,105,102,100,95,118,95,93,95,107,107,103,107,102,101,88,98,107,74,100,93,108,109,96,102,106,113,103,104,92,102,105,103,97,115,103,104,110,99,106,108,102,94,106,95,108,88,103,104,102,100,98,97,103,115,107,110,99,109,111,104,105,103,91,98,104,98,105,108,102,109,106,113,115,103,106,104,104,95,108,98,105,108,102,101,104,86,105,112,113,124,97,98,102,90,105,107,102,110,120,103,110,112,109,110,106,99,108,129,108,103,105,102,111,106,110,101,99,99,106,109,106,101,108,103,94,101,96,96,106,98,88,110,105,104,90,106,101,96,106,98,101,94,100,105,110,109,113,107,117,109,105,95,108,97,117,79,108,98,98,115,97,107,99,103,92,97,107,103,103,102,102,106,96,115,113,102,106,94,109,92,110,106,97,102,110,102,111,99,96,104,116,111,100,100,94,112,109,108,107,104,100,93,97,106,96,96,103,102,105,112,118,87,99,104,98,99,104,111,91,114,100,113,96,96,100,103,101,103,109,98,102,105,102,99,103,103,117,101,101,91,103,88,108,101,91,104,107,101,112,95,102,94,99,116,100,107,110,125,100,109,105,97,103,99,110,115,94,99,102,112,112,105,95,102,92,103,103,102,103,109,92,96,101,95,101,102,102,113,108,103,101,105,105,90,94,105,109,108,102,103,95,109,101,98,107,101,110,102,99,107,115,107,103,103,105,102,107,98,99,101,107,105,109,92,89,88,109,91,106,110,99,100,103,99,102,113,105,92,103,96,113,112,111,106,105,108,113,110,100,107,113,101,109,96,101,104,109,106,93,111,108,133,107,103,115,110,102,102,118,99,101,109,99,79,104,100,109,108,95,102,88,105,105,92,108,117,105,106,89,105,100,105,91,109,97,120,87,109,98,94,102,105,110,105,95,110,108,114,97,70,99,102,106,93,99,97,83,91,100,92,98,97,89,115,106,92,96,110,121,95,102,102,105,116,96,112,103,108,99,99,103,111,101,100,99,102,115,108,102,103,99,102,112,109,98,95,109,116,108,98,106,96,100,99,115,105,100,102,117,110,101,102,88,99,89,94,105,99,108,104,91,96,116,110,101,106,90,95,98,103,92,100,100,88,116,95,99,99,108,111,115,97,106,118,107,111,102,105,108,101,99,101,103,126,95,106,102,109,108,92,104,101,96,107,118,96,111,110,96,110,103,96,107,103,98,103,112,113,110,109,89,88,87,104,101,79,104,94,94,95,99,116,97,98,95,100,101,100,108,95,105,99,98,95,87,97,105,116,100,107,106,84, +449.45059,112,103,102,99,101,107,98,86,78,104,104,109,109,95,100,110,101,110,110,106,102,93,109,114,103,114,98,103,111,114,96,109,95,105,98,102,95,106,102,97,90,103,104,109,101,106,95,99,105,116,105,109,97,100,113,110,93,104,102,137,110,103,86,100,82,105,106,100,70,103,105,104,103,105,96,113,98,97,107,104,101,101,105,119,88,114,98,100,102,109,105,108,110,106,115,97,96,102,103,108,100,80,101,96,87,98,95,89,108,98,96,99,100,106,99,98,103,107,94,91,101,96,102,102,109,109,100,104,100,104,91,108,113,101,96,92,101,99,98,104,98,101,101,104,100,91,113,101,88,101,95,100,106,101,106,96,104,100,116,113,98,110,102,98,96,97,97,106,101,97,96,98,94,101,90,106,105,100,113,105,104,100,108,93,105,102,100,94,106,100,108,103,110,98,97,94,107,103,93,103,115,73,108,101,93,90,103,110,103,103,91,99,109,97,102,97,100,85,95,108,92,98,104,100,92,72,128,102,96,113,103,100,97,90,94,108,113,104,112,102,106,107,108,100,89,104,102,103,93,105,98,98,105,105,104,96,98,105,113,105,123,95,108,102,90,101,98,115,112,101,95,104,103,94,109,99,97,107,103,102,95,100,88,104,106,105,100,100,104,107,106,99,104,113,110,99,101,94,103,108,97,96,90,109,98,91,100,111,96,114,100,105,100,109,95,105,96,110,106,99,99,94,101,106,119,106,103,101,100,106,106,97,94,95,104,111,112,97,103,96,90,107,109,101,97,102,88,105,106,105,91,102,94,107,102,106,103,102,95,103,109,109,98,99,89,92,104,106,108,113,107,94,109,113,103,86,105,99,99,109,110,100,103,100,92,99,82,95,95,99,107,100,103,102,109,97,97,104,101,110,97,138,99,108,106,102,94,97,105,111,109,90,99,107,110,93,102,104,104,103,91,110,104,100,103,94,106,91,103,122,113,90,106,107,97,105,92,103,107,99,104,86,103,101,93,112,105,99,107,107,97,107,120,101,105,94,105,104,95,88,107,103,116,100,107,99,106,102,95,98,95,110,96,109,107,101,94,114,92,113,97,112,115,103,104,104,96,104,99,81,107,99,109,98,99,90,93,105,103,93,110,112,103,102,96,105,95,103,101,104,103,105,103,104,95,109,109,86,98,105,102,103,75,110,121,103,101,104,98,100,100,97,99,111,109,106,102,102,97,107,102,91,101,110,94,87,101,102,101,117,99,99,105,97,104,90,103,91,93,117,104,101,98,113,109,117,98,104,80,100,104,92,82,104,104,111,102,100,112,99,107,101,113,104,103,103,106,82,103,91,102,94,112,100,106,98,109,112,114,92,92,105,105,104,98,98,90,114,102,97,106,100,105,92,110,102,102,101,99,115,104,106,107,97,107,109,94,97,99,120,104,110,109,110,99,108,112,93,107,104,101,105,106,103,103,94,101,99,102,101,104,103,104,107,94,111,99,106,110,105,102,99,117,113,102,109,109,92,115,92,112,106,80,104,108,118,107,104,102,98,107,105,93,88,92,98,95,114,99,106,102,99,106,99,120,107,102,109,102,94,94,104,89,107,90,109,101,112,93,93,106,84,109,100,105,106,102,103,110,102,110,95,96,100,95,73,109,101,98,130,103,106,107,101,101,99,97,108,110,97,106,102,84,95,105,95,96,105,113,103,98,101,115,112,110,102,114,95,106,95,102,109,112,103,93,103,103,99,95,95,102,99,110,99,107,117,102,110,103,98,105,93,94,98,95,106,107,115,108,104,118,98,99,72,106,116,109,112,94,104,95,88,84,91,113,99,100,110,97,96,102,94,104,100,110,112,104,90,83,102,99,107,91,110,113,97,111,104,98,108,104,108,103,96,107,104,84,105,99,108,93,98,100,104,95,103,107,113,108,110,95,106,110,105,101,105,101,92,106,96,92,101,105,105,86,113,99,103,107,91,102,97,96,103,110,103,101,113,105,80,100,96,102,125,108,105,87,105,93,109,107,105,104,106,112,93,98,109,104,98,96,116,116,78,101,97,117,93,97,105,96,100,104,105,96,103,109,116,104,110,105,110,107,102,93,113,90,98,104,95,108,113,104,99,92,109,94,114,110,101,74,101,109,97,105,117,101,111,108,89,102,100,101,99,104,108,99,134,95,106,103,106,122,97,112,103,105,102,96,101,104,94,109,109,97,100,104,98,96,109,98,103,100,103,98,100,109,93,104,99,102,99,104,97,91,103,110,104,99,91,109,102,103,105,95,107,104,114,97,108,99,98,98,117,96,108,88,95,101,101,105,111,97,99,100,105,96,100,103,96,104,104,96,102,99,91,104,110,112,102,110,105,92,103,106,109,110,110,102,103,109,118,103,103,100,105,109,112,105,113,117,109,99,104,94,104,93,99,94,102,92,110,102,75,99,106,115,101,96,99,113,122,99,106,97,109,123,111,114,111,88,103,108,96,104,100,113,99,102,90,105,94,110,108,100,104,96,110,110,102,108,110,108,101,99,99,99,119,108,104,98,101,108,111,99,102,115,105,106,104,106,109,115,120,95,94,100,106,99,107,98,98,93,102,93,104,101,111,102,102,117,109,112,116,96,106,103,98,111,103,87,106,104,87,109,105,107,103,115,120,108,106,107,100,109,99,97,109,107,101,100,108,100,119,108,107,110,108,99,113,95,108,104,113,99,104,105,93,110,123,107,102,106,100,110,109,109,100,119,104,102,105,92,98,112,113,98,119,101,99,108,117,95,99,112,108,99,117,104,108,94,105,106,106,107,102,98,101,101,113,109,107,108,117,110,105,110,100,100,120,111,113,112,98,108,96,114,108,99,103,100,69,109,106,97,83,113,102,105,112,102,104,113,115,106,109,111,114,112,100,115,108,113,104,109,111,102,96,110,89,116,103,104,108,103,99,100,108,105,93,97,105,73,116,80,109,124,102,117,98,101,108,96,101,114,105,99,106,100,117,107,102,101,95,108,98,110,109,108,103,103,117,109,107,114,109,118,97,96,129,103,101,104,108,107,87,113,100,105,109,103,104,89,98,113,100,93,112,105,99,102,106,109,103,103,96,95,100,91,105,120,96,115,102,109,103,109,98,89,84,110,95,102,108,107,104,110,101,100,101,102,111,100,101,101,105,106,99,103,115,102,109,102,104,106,110,100,101,113,99,92,102,109,94,104,108,97,112,98,103,103,109,101,104,103,99,105,104,108,106,100,115,137,110,109,103,104,107,96,106,106,96,110,105,104,109,106,104,119,107,100,97,96,109,114,106,117,105,136,103,91,99,99,108,105,103,104,96,100,107,91,105,101,100,98,101,114,112,100,102,112,100,111,113,114,123,117,107,96,107,103,98,107,97,111,102,108,108,105,98,106,105,97,97,106,94,109,112,102,108,113,95,95,107,109,101,101,101,100,108,104,113,103,98,102,104,104,109,101,93,108,114,101,92,102,92,96,99,95,106,96,102,92,106,99,95,115,108,95,100,121,108,114,102,115,118,106,100,107,107,119,99,108,106,103,92,105,103,107,104,113,105,94,112,104,104,102,98,121,100,104,91,111,112,105,100,112,109,102,94,91,100,67,104,100,107,111,105,102,102,94,108,104,110,105,112,96,100,105,112,108,99,103,119,94,107,100,107,104,98,111,95,90,103,92,105,84,102,99,104,107,94,106,107,101,103,104,107,108,95,95,105,98,102,113,109,110,107,99,102,97,111,120,97,101,102,113,112,104,118,109,103,106,109,109,103,105,93,114,109,98,87,100,109,110,96,111,92,116,102,113,102,108,102,107,94,106,100,107,106,100,109,115,106,106,100,111,104,104,98,108,104,107,108,99,105,105,95,96,106,109,105,101,106,99,106,113,104,90,107,99,117,108,102,91,103,116,97,135,89,98,100,109,123,99,115,80,94,112,94,97,109,104,115,98,117,112,91,102,115,111,98,99,100,103,103,90,119,112,109,99,105,105,102,102,103,104,95,140,104,107,106,117,112,92,107,106,102,114,106,101,101,108,123,106,115,105,105,109,112,103,96,104,105,103,102,107,102,116,106,106,101,102,107,116,99,107,107,103,90,104,107,106,117,98,105,106,109,104,98,107,117,98,99,103,109,112,104,112,113,109,98,95,102,109,98,104,99,95,103,128,101,105,100,113,110,100,110,107,102,100,130,100,98,98,109,108,97,109,106,117,100,105,99,84,101,106,108,99,107,95,114,112,101,100,116,109,101,99,106,102,102,111,103,107,95,100,96,106,99,100,97,104,123,96,106,111,115,98,101,117,110,98,94,111,123,105,97,94,116,116,97,95,106,109,111,96,115,103,124,109,98,105,108,109,111,98,103,104,104,104,100,102,113,94,100,103,108,111,107,100,100,96,99,97,108,98,104,106,109,105,104,92,97,106,100,92,91,98,100,117,107,94,108,107,105,109,99,107,101,93,84,116,98,98,85,106,99,94,116,107,100,106,109,111,113,103,105,101,68,101,99,109,113,108,102,97,100,109,107,72,104,120,97,113,99,107,93,103,116,114,98,110,90,103,111,102,110,95,109,100,96,104,97,111,102,107,102,98,110,104,104,115,96,109,107,98,98,107,111,111,119,110,105,114,103,112,108,104,109,105,99,94,119,103,106,107,107,97,90,103,99,94,105,114,107,105,107,102,99,113,92,100,117,104,109,97,107,112,102,106,94,95,110,102,109,111,108,109,100,117,108,102,110,93,112,100,104,109,97,105,100,102,103,92,112,108,111,97,94,116,108,98,97,98,104,95,128,109,108,117,107,75,92,122,100,93,100,93,69,99,105,91,107,95,116,102,98,110,97,113,97,99,88,104,108,91,100,92,113,102,102,115,98,121,105,91,107,84,98, +449.59097,106,112,105,95,136,86,109,101,104,99,104,83,102,86,103,103,99,111,86,97,107,75,101,98,95,108,98,88,115,99,97,97,103,75,105,101,105,85,100,91,101,94,90,104,103,115,107,101,101,103,120,118,99,91,102,93,94,97,91,99,106,109,98,98,90,120,95,107,96,98,110,100,95,108,92,100,108,95,98,92,93,97,89,105,100,98,108,101,103,120,108,104,115,103,96,104,120,99,99,102,101,106,92,99,109,95,108,98,102,96,100,98,90,107,118,96,104,98,96,100,102,100,90,84,106,98,105,103,105,84,105,112,92,99,107,95,85,103,109,90,112,103,88,108,83,110,94,98,100,102,95,96,103,100,92,110,100,95,104,86,106,99,104,105,104,111,94,98,105,98,73,109,74,104,95,103,109,119,96,100,95,98,99,108,91,116,101,89,103,100,113,104,95,104,98,106,98,105,116,114,101,93,111,100,91,107,99,106,113,114,104,105,119,107,113,101,104,104,98,106,107,113,112,95,106,101,95,101,101,116,96,109,95,102,97,94,103,105,95,100,114,101,106,118,109,117,95,106,108,109,106,104,103,106,107,109,96,106,101,113,97,97,100,95,117,111,105,100,104,104,109,103,112,106,108,109,86,115,103,108,93,100,106,102,106,93,91,99,102,106,104,98,116,102,103,108,91,101,108,96,109,106,108,119,100,116,107,102,118,100,104,106,109,99,106,106,98,107,110,103,98,118,92,106,110,92,106,101,111,112,99,96,105,98,101,101,98,102,105,112,110,105,106,104,84,103,94,110,107,106,101,110,112,107,92,93,94,98,101,101,103,105,112,96,92,117,107,98,93,104,106,98,106,98,106,106,118,108,108,95,108,107,98,102,100,93,99,87,110,101,108,101,97,103,104,110,104,104,118,112,109,99,113,104,70,100,94,100,96,103,94,96,98,88,96,108,116,120,99,113,89,83,103,115,94,88,100,103,91,103,96,102,106,99,116,103,101,110,99,90,108,117,101,105,106,101,112,110,109,122,112,97,110,114,103,101,95,103,112,110,103,116,102,98,99,104,110,105,106,104,105,113,102,107,98,103,88,102,89,114,104,114,104,106,100,95,100,107,102,106,95,113,106,101,106,105,106,118,87,105,99,102,104,103,104,101,104,110,105,103,111,100,99,103,108,100,116,109,105,91,98,98,101,108,91,104,108,95,102,103,94,101,110,101,86,115,111,97,102,105,102,106,92,115,114,96,102,103,96,98,101,109,101,95,95,93,95,98,91,102,112,90,94,104,92,113,101,110,112,91,94,102,102,110,104,108,93,109,103,97,101,105,102,97,89,99,102,107,102,105,112,104,97,108,110,105,104,106,74,96,100,104,108,98,110,100,104,106,98,103,94,107,99,97,105,102,106,96,109,95,94,111,110,95,87,92,112,99,99,99,90,99,93,99,99,97,103,104,105,101,108,109,104,102,99,100,101,79,107,103,108,97,99,104,111,110,106,106,116,95,106,111,102,104,111,115,104,92,103,99,106,102,112,99,104,99,101,105,99,103,105,107,116,97,97,87,92,112,99,107,100,122,101,104,111,105,101,100,108,110,109,102,104,109,106,107,103,96,92,89,114,119,100,110,105,102,87,100,98,106,104,109,103,93,93,101,112,97,103,117,96,106,99,105,105,95,105,108,99,106,111,97,98,106,106,103,103,96,110,94,117,70,107,109,105,101,98,98,89,96,105,105,95,104,105,106,94,109,98,102,102,103,99,101,99,100,105,99,95,92,107,108,115,107,98,102,113,100,109,119,106,96,107,110,114,115,98,110,102,106,114,106,95,94,111,103,106,101,101,102,107,103,97,98,93,106,100,102,102,99,109,105,105,110,100,99,113,112,101,109,105,85,111,106,110,104,98,100,109,104,109,101,112,102,96,103,97,102,91,103,103,106,95,100,96,107,100,100,93,104,100,111,101,102,102,96,100,98,108,90,93,95,99,91,106,101,100,91,98,105,103,108,92,105,102,105,102,101,107,98,103,107,104,103,104,88,99,100,90,89,102,96,101,105,117,106,108,94,95,96,101,117,109,112,64,97,112,100,90,90,101,103,110,94,83,92,107,92,99,97,103,114,115,105,98,95,98,98,109,99,95,106,114,104,102,103,106,106,110,113,100,101,100,104,101,113,95,107,108,109,106,118,107,97,102,111,111,97,111,100,90,109,116,109,99,112,110,106,102,102,105,114,98,102,103,85,98,109,98,103,106,100,99,116,97,99,94,106,96,112,104,110,99,97,93,103,101,104,97,108,102,113,93,109,96,105,103,92,108,89,115,99,100,91,104,108,115,110,103,102,104,101,103,98,107,96,99,114,97,86,91,98,90,100,101,104,100,105,98,106,104,105,106,106,96,102,118,108,79,104,114,104,99,91,103,102,96,109,102,115,114,106,142,106,109,111,120,106,98,104,112,104,96,103,102,102,94,100,106,110,109,100,105,109,91,97,99,107,107,116,108,92,110,103,99,109,87,99,100,100,109,113,111,102,97,89,105,121,98,106,97,98,93,100,103,95,113,109,105,116,107,114,101,100,92,124,97,91,104,100,101,88,107,107,95,100,100,95,109,99,119,100,108,114,101,99,97,99,107,99,100,93,100,92,112,106,96,91,106,97,95,100,102,100,105,89,100,96,102,103,105,107,95,106,103,109,101,103,99,124,94,94,107,100,101,100,107,101,100,102,99,101,111,108,107,106,96,104,106,113,112,99,115,108,136,83,112,105,109,107,106,100,97,108,112,112,100,104,100,96,91,111,102,103,120,118,102,113,104,107,110,96,99,101,102,98,109,138,104,97,97,111,110,104,96,107,98,103,102,108,106,99,108,97,108,109,98,108,102,93,96,106,97,108,111,105,99,107,103,109,110,111,117,102,99,98,102,102,94,111,114,103,100,106,95,109,97,102,97,111,110,95,96,106,102,101,109,105,105,96,109,100,109,102,104,114,91,96,109,94,98,101,103,97,101,108,110,117,123,88,97,98,100,101,110,101,120,98,96,99,95,109,105,102,108,105,105,92,99,105,94,108,113,111,74,90,88,106,83,85,102,109,111,97,103,105,115,106,103,95,98,96,97,116,100,113,75,98,102,104,100,101,109,104,111,98,102,120,101,97,105,103,92,109,112,102,96,103,104,113,98,102,99,102,98,98,102,102,94,102,93,99,89,101,101,102,103,101,103,95,115,99,109,102,94,113,109,102,115,101,99,104,105,106,111,97,109,103,95,107,104,98,95,106,101,106,117,102,98,90,112,94,104,106,100,112,95,98,104,94,111,92,110,96,104,108,104,85,99,92,105,108,110,99,102,103,108,116,100,91,100,112,106,94,106,92,114,99,92,101,98,93,104,105,94,104,111,101,68,109,102,102,112,103,108,97,111,98,100,101,105,112,118,112,108,91,103,100,97,108,113,97,108,104,96,97,103,100,113,108,113,99,103,106,93,103,106,89,107,112,105,106,109,116,97,98,94,108,85,88,104,114,94,108,103,102,100,103,82,112,106,107,105,114,98,110,105,100,96,115,100,112,101,108,97,102,98,107,110,102,101,100,93,105,109,98,108,105,104,94,94,111,104,100,95,100,108,100,127,113,113,103,121,95,101,88,109,95,102,104,95,105,100,86,103,94,109,117,84,92,110,100,101,95,95,111,95,103,110,102,111,107,91,104,100,103,95,110,102,108,104,100,104,98,104,120,105,110,92,99,103,106,99,105,107,103,107,104,98,89,102,92,102,102,95,103,91,117,104,110,98,105,95,101,104,106,97,99,99,106,103,95,97,97,106,98,100,96,103,107,92,118,99,107,98,113,102,104,108,106,131,110,99,126,97,105,106,100,102,97,98,100,105,104,98,109,101,106,105,100,109,83,101,99,89,101,106,110,100,106,101,104,96,89,108,121,105,90,104,112,98,100,106,102,99,106,105,105,93,85,100,104,94,111,101,107,97,98,98,101,97,109,86,113,99,102,97,102,109,106,110,110,106,110,93,101,113,95,107,109,105,98,106,95,104,114,96,102,110,107,99,110,109,98,104,114,93,103,102,99,99,102,101,100,94,101,95,112,98,113,95,98,99,100,96,109,100,113,106,104,106,93,101,108,104,104,104,106,104,94,106,86,108,74,107,100,107,101,87,101,112,99,103,104,98,98,84,96,94,103,109,104,103,97,101,112,99,103,91,101,112,102,105,88,96,97,105,112,105,101,104,116,115,102,106,85,98,99,103,105,93,94,109,105,109,106,95,89,122,105,96,102,105,107,98,88,72,100,104,104,107,105,108,110,104,106,99,95,97,99,105,98,111,105,98,92,115,98,104,102,93,108,103,112,101,109,108,106,108,111,120,99,97,106,93,98,117,105,105,108,103,97,100,91,117,87,100,90,103,106,103,97,104,80,95,91,100,100,115,107,103,113,97,101,113,95,122,103,101,99,101,101,98,106,92,102,100,101,117,96,104,101,101,91,103,105,102,97,105,104,96,92,96,106,99,100,103,107,107,113,102,110,107,112,111,107,95,93,109,96,104,97,113,97,91,94,121,99,95,103,96,91,98,107,96,95,92,103,113,105,100,101,95,113,104,87,106,96,111,99,104,87,121,93,100,106,109,110,95,98,103,97,108,96,106,114,98,95,108,80,106,100,103,102,81,142,111,103,99,97,99,94,103,111,91,103,98,105,102,99,78,97,95,103,111,93,91,93,112,101,110,107,96,106,94,78,83,104,69,108,104,100,104,102,110,104,99,97,102,103,97,101,103,86,94,98,108,117,85,94,93,116,102,101,113,100,91,112,108,96,103,118,93,102,75,112,79,88,100,91,103,102,91,95,93,89,88,103,97,81,117,96,96,107,100,96,71,116,99,101, +449.73135,112,88,93,103,91,102,103,99,112,112,98,106,104,103,112,117,101,121,97,105,112,94,105,103,95,96,106,105,103,110,96,111,106,116,102,101,100,109,104,78,96,114,96,95,98,101,96,108,96,101,106,105,108,95,108,90,103,100,105,86,108,93,104,98,93,118,91,95,93,97,111,99,98,114,93,104,102,95,98,93,92,115,105,105,87,97,97,96,95,106,101,100,100,101,92,97,106,92,102,102,94,110,80,99,96,108,92,101,99,97,104,101,113,102,95,97,109,113,112,103,105,95,99,91,92,104,116,111,131,108,108,107,102,106,95,92,94,104,109,104,106,112,104,94,95,84,107,85,111,99,102,108,113,104,98,98,98,105,100,96,109,98,103,107,106,101,105,100,103,103,118,107,97,103,103,104,109,101,109,94,107,91,104,107,104,103,107,100,112,111,88,101,100,111,108,104,106,88,120,103,96,104,101,109,94,103,109,95,101,107,97,108,106,88,102,96,95,104,90,101,98,107,100,98,103,109,102,114,101,105,91,105,108,105,105,104,102,108,101,100,93,101,108,108,106,98,109,105,99,113,117,108,105,98,97,101,104,112,107,99,101,114,95,94,112,109,104,108,102,92,109,98,98,105,118,97,91,94,99,96,102,101,104,96,104,102,91,86,108,100,97,104,104,109,105,108,95,98,97,100,103,98,102,112,102,113,104,109,109,106,100,97,114,110,94,103,107,107,97,111,103,92,111,102,103,97,109,98,107,95,101,106,114,102,103,103,105,106,99,106,96,105,103,101,90,111,105,107,109,102,103,113,92,104,107,99,101,118,112,102,99,101,104,102,98,96,107,114,101,105,100,98,112,121,109,97,107,103,100,99,106,98,98,102,110,98,105,104,112,98,112,89,101,100,100,91,104,102,98,104,99,105,95,111,101,96,103,110,94,106,92,95,103,107,107,105,109,104,113,112,104,100,109,106,111,97,102,107,120,98,84,109,98,95,106,100,100,112,109,103,112,96,92,110,103,110,91,109,94,98,107,101,113,114,110,97,97,109,102,93,103,101,98,105,70,109,99,104,98,102,96,114,99,95,99,109,111,109,90,101,110,120,111,107,108,86,111,100,99,96,100,96,107,94,110,91,94,92,104,101,107,101,99,114,110,113,106,113,102,109,103,98,110,104,102,100,99,90,111,99,113,116,109,105,93,108,117,107,99,99,110,105,93,96,98,113,115,96,108,109,112,97,103,99,103,97,94,85,109,83,99,118,94,96,95,103,97,87,97,110,105,109,107,109,104,101,106,101,98,93,102,97,104,99,93,107,109,101,102,99,94,102,87,102,94,95,109,104,114,96,114,104,103,111,111,113,100,94,88,97,75,101,102,93,104,105,80,93,110,102,109,104,107,106,110,97,101,102,99,108,104,109,106,105,109,94,85,93,110,100,101,105,99,109,102,93,91,103,89,109,99,113,108,93,105,97,99,92,113,108,103,91,86,110,92,109,107,101,104,98,111,99,112,101,95,100,100,97,109,106,106,108,108,108,105,98,105,119,99,109,112,105,111,94,110,101,100,103,106,96,106,105,95,109,110,100,113,113,106,95,105,101,113,101,112,99,98,114,99,101,95,105,95,88,104,106,110,98,109,110,96,99,108,111,95,95,106,85,105,110,109,102,99,100,101,94,106,100,110,107,113,100,97,106,83,112,102,98,100,112,101,98,94,101,103,97,120,104,103,103,101,98,95,98,104,101,107,106,95,99,110,92,116,100,98,102,102,104,109,111,98,112,107,97,106,104,87,102,101,97,110,95,98,97,111,96,102,111,108,98,102,98,95,109,105,108,109,109,108,104,112,107,88,99,100,112,115,100,105,92,97,106,96,100,118,102,91,101,103,107,114,122,108,107,102,109,104,115,109,94,95,112,106,95,96,103,106,106,101,98,100,110,98,109,95,93,99,104,91,122,107,90,105,107,111,105,107,105,103,117,91,117,99,107,107,105,104,96,103,90,104,101,105,100,97,105,99,94,105,98,96,101,106,108,107,108,107,100,105,104,69,98,114,107,108,100,98,101,104,95,111,108,106,105,104,96,92,116,97,100,94,93,109,112,104,115,107,94,101,115,98,104,125,117,96,96,99,95,123,107,104,105,116,112,92,101,100,111,90,108,101,99,110,99,105,100,96,92,99,100,103,104,96,99,117,96,105,94,97,102,106,113,96,97,96,98,105,109,94,95,92,113,109,110,112,110,95,103,95,99,70,90,102,98,103,89,98,107,101,106,105,96,98,92,105,107,123,107,96,104,87,99,105,98,100,107,105,109,105,101,96,102,113,102,88,87,103,107,108,106,97,100,109,92,105,102,100,109,96,109,105,105,100,103,105,95,102,106,92,96,107,104,103,95,108,111,102,99,98,91,104,104,100,108,92,104,92,101,104,92,108,143,98,108,106,102,102,97,103,99,100,97,105,99,100,116,96,107,102,106,105,120,101,99,97,96,112,100,112,120,141,95,101,103,105,116,105,97,102,98,106,112,97,109,110,104,90,107,98,102,97,105,116,110,103,105,105,107,134,107,102,106,117,114,108,113,110,108,109,80,107,102,92,112,102,109,104,99,96,105,105,109,94,111,106,104,121,115,89,115,100,87,104,88,98,105,112,97,101,92,88,103,103,107,87,103,109,92,115,95,94,111,90,114,119,102,109,105,105,101,100,102,99,105,109,102,103,102,104,106,113,104,106,111,92,96,106,113,101,91,96,103,104,95,112,110,99,104,112,109,104,107,100,108,111,95,102,109,101,106,108,117,91,97,128,93,103,89,110,99,106,104,110,103,109,93,99,112,100,99,95,95,105,94,106,101,100,101,101,96,109,99,98,104,103,106,105,110,91,98,95,98,113,120,97,94,97,101,91,112,107,106,105,104,114,109,92,98,108,112,103,120,94,102,102,100,124,84,115,100,102,96,102,99,94,108,103,104,106,104,111,111,104,102,106,108,105,103,100,103,108,95,103,98,97,115,104,105,99,95,106,101,106,110,97,107,90,106,105,102,97,108,115,102,96,99,109,97,106,105,100,103,106,107,110,106,81,105,127,82,103,117,110,103,94,93,106,102,107,95,117,103,113,103,108,97,110,116,101,113,102,98,112,101,112,83,112,100,100,93,94,104,111,104,68,83,106,95,105,103,101,85,98,102,105,102,101,90,115,103,96,107,118,94,98,101,100,121,114,102,99,102,86,91,96,100,109,90,109,100,100,112,102,107,99,99,103,109,102,104,105,108,102,106,106,102,108,111,102,118,105,105,112,108,104,99,108,97,98,110,105,99,105,101,98,130,99,93,105,95,99,100,107,95,105,104,101,106,108,104,102,96,105,103,100,98,109,96,100,103,109,101,110,92,99,110,110,104,94,108,93,101,116,110,102,97,106,105,110,101,93,96,101,102,111,94,111,112,92,109,95,106,96,103,83,100,90,101,104,114,102,111,105,96,113,108,102,102,109,109,109,103,104,113,111,106,104,102,100,86,119,117,99,98,107,97,104,103,106,92,92,103,97,110,111,97,101,94,113,116,103,108,102,96,104,105,113,108,102,92,86,93,106,96,106,93,102,108,101,105,96,111,94,92,115,99,101,101,109,109,104,117,104,88,91,88,100,94,96,108,110,88,102,100,105,102,107,106,110,102,101,99,96,102,100,101,90,102,102,106,106,97,103,107,111,104,97,99,110,92,105,87,107,91,103,95,98,95,102,106,102,96,95,103,105,99,96,94,107,99,109,102,99,103,105,86,107,103,109,115,107,107,97,100,108,98,85,112,105,95,108,97,108,94,97,96,104,105,90,110,99,110,102,97,95,97,109,104,98,104,104,112,102,111,99,100,103,93,106,110,98,94,105,91,109,92,102,113,101,111,100,96,98,96,101,110,101,102,109,94,100,98,112,98,112,108,103,98,101,103,109,101,113,115,107,103,107,97,87,110,99,101,102,106,113,103,91,102,109,112,105,95,94,102,104,99,101,99,101,98,108,105,98,110,100,108,76,102,107,108,106,104,103,91,106,113,107,102,104,103,101,109,109,104,100,105,98,102,105,101,92,87,108,99,98,106,102,84,103,101,102,99,117,98,107,117,109,99,116,98,91,95,95,109,117,112,88,116,103,117,109,104,101,97,119,105,112,96,108,108,119,106,120,106,93,105,101,104,108,106,110,111,98,102,107,105,92,127,94,101,110,114,96,98,113,103,106,111,97,100,96,100,90,102,104,94,92,113,97,103,113,100,111,110,102,109,108,98,93,92,94,102,111,95,99,102,114,90,74,110,101,97,113,109,104,116,109,104,123,89,102,92,119,91,102,110,116,102,96,101,72,95,107,107,108,105,94,101,102,106,89,101,101,93,105,96,103,103,102,100,94,89,92,109,108,112,97,103,103,97,106,103,100,86,102,107,95,99,104,100,97,117,112,99,99,91,101,102,106,108,102,86,110,104,105,102,97,77,105,102,115,108,100,100,94,101,103,100,108,106,105,107,98,92,86,96,109,103,112,100,95,102,103,103,111,111,109,99,114,108,108,105,103,106,119,101,103,114,101,104,109,97,107,118,110,108,122,112,115,95,104,102,101,98,102,113,110,101,110,97,92,97,102,96,109,104,100,84,97,94,105,103,109,111,105,96,99,95,110,88,98,91,113,91,107,99,104,104,96,100,107,107,106,109,97,100,105,89,110,97,100,90,94,111,99,101,100,97,113,104,121,103,110,105,102,108,91,106,94,101,102,104,98,110,96,91,106,106,98,107,110,90,101,103,102,127,105,97,105,94,87,100,97,94,114,110,105,106,91,81,103,114,105,107,101,95,101,116,115,103,116,98,75,94,122,110,98,100,100,93,108,103,102,100,125,96,91,100,87,96, +449.87173,103,96,105,97,98,107,108,98,112,112,106,96,95,95,99,98,103,115,104,106,108,93,106,108,96,103,119,101,115,105,101,90,95,95,105,89,103,98,93,94,102,104,66,105,100,107,106,94,103,101,100,87,106,108,95,95,111,105,108,106,92,104,101,90,105,104,101,103,93,114,99,113,104,92,98,87,104,109,110,101,104,105,106,105,91,94,111,131,97,106,106,101,102,95,88,104,99,106,101,98,105,101,94,105,98,103,96,96,97,117,95,100,95,103,118,99,101,104,104,110,116,101,102,93,101,114,118,101,104,101,107,109,109,102,104,113,99,104,98,101,104,94,98,104,101,94,103,97,99,92,108,108,107,99,87,109,116,99,124,95,99,97,101,111,112,109,96,102,83,91,102,121,105,103,103,95,100,89,99,105,95,106,87,109,106,101,95,87,104,105,98,99,96,101,103,110,103,105,115,106,87,108,100,112,110,100,98,106,88,106,101,100,106,112,106,106,104,99,99,101,111,110,94,98,102,108,100,102,105,99,100,101,95,124,110,102,89,113,108,91,88,100,105,111,90,99,100,101,106,101,95,98,107,95,106,115,100,105,100,105,100,72,103,94,100,104,113,96,93,103,95,98,92,105,100,101,108,117,92,106,110,106,89,127,104,112,105,98,94,106,105,101,107,96,108,103,103,101,74,99,91,106,100,103,92,101,102,116,101,108,119,112,108,114,102,101,109,108,104,92,106,102,96,105,95,95,102,99,102,114,113,106,116,96,98,110,114,102,110,97,103,104,96,97,101,103,96,105,100,101,94,94,102,102,98,115,106,104,109,103,110,94,97,97,115,90,105,108,102,103,97,104,105,105,99,91,103,106,101,105,121,109,103,104,100,104,95,98,91,111,117,109,93,103,100,107,96,99,93,108,105,113,100,91,94,98,100,112,105,94,100,99,90,101,106,94,110,95,111,100,111,90,106,110,101,86,95,101,107,105,100,108,94,108,95,108,100,107,104,106,104,94,95,96,99,99,102,90,100,108,99,95,98,102,107,106,104,111,96,106,102,105,95,113,105,101,106,111,105,110,106,104,96,94,105,104,97,133,107,103,94,103,111,108,113,86,110,106,113,102,99,105,102,105,93,102,93,106,105,94,106,100,101,104,96,105,93,108,97,105,101,92,114,100,95,97,107,101,94,105,97,109,105,90,101,99,100,115,98,102,100,118,102,103,108,112,103,104,118,102,97,109,101,95,95,101,109,112,105,103,122,100,91,99,96,92,112,109,110,96,103,100,99,105,111,95,96,99,108,95,111,97,104,106,109,100,107,116,92,107,107,111,111,104,107,86,99,109,99,109,100,99,99,107,114,106,109,101,99,107,106,100,129,100,100,103,99,92,110,100,96,109,95,106,98,111,95,121,97,107,110,92,107,102,123,107,102,103,97,113,103,104,104,109,94,98,117,101,103,96,104,109,105,98,108,92,105,95,105,117,81,103,111,108,102,101,103,109,110,106,106,104,113,105,93,110,107,100,99,101,104,96,98,98,105,98,111,105,101,106,99,97,89,98,107,92,100,102,110,116,100,94,96,102,102,113,96,106,99,100,98,103,79,95,116,100,93,112,96,95,106,98,97,95,114,97,94,90,102,102,106,97,99,100,102,93,102,127,101,105,110,95,116,102,108,103,102,97,118,98,108,100,103,106,107,101,104,114,117,106,104,95,112,103,118,121,111,100,104,99,99,102,102,95,90,107,107,101,104,101,113,101,103,101,107,108,100,95,102,110,90,99,107,102,96,94,106,102,91,100,107,117,102,112,99,107,102,101,97,102,102,96,96,112,102,96,100,96,103,109,117,111,104,99,105,107,107,97,109,101,107,97,107,101,112,108,111,94,101,102,103,99,103,101,94,107,105,102,95,109,107,99,109,102,94,95,106,93,104,89,105,95,113,105,104,92,105,113,101,86,106,100,98,99,107,101,98,98,105,112,104,108,96,103,109,100,102,96,101,100,95,104,97,114,103,98,115,107,115,95,101,107,135,82,101,103,107,95,88,101,95,112,114,78,102,101,102,106,95,125,106,102,106,103,109,104,105,101,94,92,113,109,101,103,95,105,97,82,109,104,96,103,104,117,109,101,97,109,111,109,123,104,106,105,109,106,102,96,101,97,99,99,102,66,117,98,100,105,114,93,103,98,99,108,99,101,103,108,97,104,76,95,92,101,107,100,98,97,94,97,103,109,99,106,103,105,108,86,105,102,99,107,104,104,89,93,110,101,107,111,106,103,99,102,102,114,99,111,114,97,92,96,105,116,96,97,112,100,92,99,106,113,97,98,105,92,99,86,103,82,101,106,100,94,116,96,108,112,107,102,109,105,106,113,99,103,75,100,106,76,103,112,111,85,101,107,104,109,104,101,93,101,115,109,105,107,98,85,101,101,107,104,106,100,95,116,103,106,97,105,109,95,94,115,114,106,90,112,107,101,97,99,106,107,97,101,92,102,115,104,94,100,110,98,102,103,96,72,91,105,126,106,66,108,117,93,98,96,98,94,100,120,95,105,103,107,87,102,99,108,100,112,109,104,110,102,82,119,97,94,109,100,88,99,98,97,103,103,102,93,101,92,110,108,102,104,102,98,96,99,106,99,108,94,99,120,108,108,105,106,102,89,109,102,99,99,98,106,103,102,105,101,94,116,105,113,112,104,74,110,113,110,111,115,95,96,108,105,105,105,91,99,108,107,113,111,116,112,102,96,111,101,115,106,121,99,121,107,100,99,111,114,109,95,108,96,108,93,100,110,103,117,109,104,117,104,124,116,99,101,106,96,107,96,99,111,114,117,107,107,101,107,104,116,112,103,106,112,104,111,106,106,111,110,98,100,118,107,115,110,107,97,109,108,106,102,89,94,100,102,118,111,99,109,96,103,96,98,101,119,92,99,102,98,117,108,108,100,106,106,103,116,102,110,106,105,107,103,110,103,99,95,106,94,97,108,104,96,108,99,105,100,107,108,116,102,104,106,102,108,114,102,106,101,112,108,104,100,102,102,102,113,99,90,106,97,107,107,89,110,104,103,114,99,109,111,97,104,91,83,106,101,96,98,96,107,81,108,109,107,92,104,110,109,112,97,102,117,112,122,93,98,110,95,107,91,105,108,103,97,88,103,97,115,113,109,114,105,104,100,104,114,103,100,108,102,122,91,105,100,105,98,100,111,96,103,102,95,94,106,109,110,103,98,105,102,95,103,105,110,99,104,103,104,107,88,109,108,112,104,100,97,101,104,96,102,111,99,108,84,93,112,91,91,91,107,104,100,98,110,98,102,97,113,103,109,97,102,95,109,105,103,94,104,120,103,95,101,105,101,73,105,102,107,100,94,94,113,113,96,103,105,101,109,107,112,97,109,95,95,110,97,112,120,108,108,96,103,99,112,95,91,104,100,94,118,115,108,75,95,106,100,105,101,96,100,108,112,97,92,117,110,91,99,104,108,97,109,116,94,108,101,93,107,98,104,96,111,105,100,107,99,101,125,112,112,107,100,105,87,91,109,99,105,102,99,101,106,107,109,101,105,103,104,110,105,112,95,108,95,100,102,94,109,104,102,113,108,107,96,116,108,96,108,102,105,104,104,99,100,103,103,109,114,97,81,102,104,97,112,101,105,99,92,96,118,86,112,108,91,101,100,103,83,92,104,106,93,101,95,96,98,103,104,84,106,103,104,96,101,110,100,96,96,94,98,99,99,98,103,109,111,102,96,103,102,97,105,110,109,113,106,98,112,94,94,99,109,108,113,94,99,104,105,103,104,109,88,91,109,101,116,110,94,91,95,102,100,98,106,90,104,100,106,105,110,99,105,109,99,102,110,122,84,103,111,98,112,111,90,97,98,106,92,106,94,99,90,93,111,100,103,93,113,108,102,104,109,108,100,105,102,126,93,101,100,105,99,103,99,91,102,101,104,100,105,107,106,105,104,96,116,91,113,109,104,100,96,94,108,100,104,89,106,111,105,100,108,91,117,115,116,117,106,95,100,101,103,112,106,108,106,95,107,106,106,94,106,113,101,103,101,112,95,100,112,96,105,111,101,113,121,84,111,116,113,98,75,104,97,106,101,108,106,119,113,94,96,91,105,97,105,97,101,107,105,98,65,94,110,108,99,114,106,103,108,111,91,128,112,106,102,103,91,106,95,94,111,117,104,110,100,106,119,101,100,98,109,99,105,96,105,110,109,108,104,99,104,97,84,100,98,109,96,108,85,101,102,105,103,101,93,116,95,107,107,102,96,101,101,96,120,97,107,102,111,99,112,98,105,97,91,105,99,109,79,103,113,94,100,94,101,101,92,103,112,102,91,106,100,92,101,102,113,85,108,106,102,113,96,98,100,114,108,101,101,109,102,100,117,89,98,103,91,105,107,104,107,103,104,112,97,96,108,112,99,98,92,91,99,99,111,108,105,105,102,106,117,104,108,94,89,96,98,95,92,109,90,108,109,91,95,94,111,95,99,109,112,104,103,98,110,100,95,103,114,99,117,95,91,106,93,90,102,90,110,108,107,109,109,102,89,111,105,109,109,99,117,89,94,104,95,114,102,95,105,109,102,100,105,85,102,104,99,107,112,111,105,111,106,103,91,92,101,102,88,98,114,97,94,87,111,106,84,104,106,105,106,104,94,118,90,106,97,101,115,108,103,104,103,87,95,104,102,104,98,104,106,104,97,97,99,101,104,88,99,109,93,94,103,120,102,109,98,95,107,113,91,109,100,95,105,98,105,100,97,105,101,101,91,99,103,104,102,107,105,102,94,96,96,105,105,102,100,104,94,102,112,92,105,100,103,104,100,91,103,106,101,99,107,114,108,101,112,88,98,106,88,100,95,93,113,105,95,118,121,98,99,98,90, +450.01212,113,110,117,109,99,95,107,100,117,103,91,106,110,109,105,105,100,112,103,100,114,103,104,99,107,102,101,108,101,105,98,116,93,95,95,103,102,93,94,94,95,114,107,101,94,76,107,107,114,95,106,104,106,103,102,93,124,94,111,98,110,93,94,110,107,106,97,101,99,112,108,104,94,98,103,110,90,108,94,99,103,112,108,95,100,100,95,109,104,106,105,106,105,104,107,112,97,105,95,110,95,97,99,101,74,94,107,100,105,88,102,109,95,105,103,96,113,116,95,91,100,96,100,105,98,109,105,100,100,98,99,100,111,114,100,98,93,99,104,106,98,105,101,98,104,101,108,108,97,99,109,107,112,102,101,99,94,95,94,102,100,117,107,109,107,107,101,95,103,104,103,108,95,105,84,98,105,99,101,99,100,99,82,88,114,103,84,102,82,104,107,100,107,96,98,99,102,102,107,111,102,110,99,109,94,80,101,103,108,103,104,117,100,113,109,101,104,94,99,96,109,99,107,90,87,104,102,110,75,104,92,91,106,99,97,115,105,98,104,98,101,109,110,103,99,99,109,100,99,99,92,113,108,113,105,104,101,110,96,109,93,106,100,110,97,116,99,101,95,98,103,110,98,102,106,88,95,119,100,97,106,93,102,99,113,105,97,117,113,115,107,94,95,113,104,102,117,123,96,110,100,110,94,99,102,113,103,112,96,106,94,113,102,99,102,105,97,111,104,87,92,101,97,105,89,100,100,97,112,104,100,106,102,110,112,115,112,102,103,101,106,101,95,107,102,108,96,100,112,103,100,116,102,105,105,109,120,106,114,115,107,104,102,101,105,105,108,110,105,108,130,105,99,108,99,99,113,91,110,96,107,127,117,102,98,118,93,91,114,105,111,100,103,106,103,95,107,113,99,101,96,64,103,92,100,102,99,102,99,98,99,101,104,100,104,109,104,106,108,101,106,101,112,110,109,97,99,108,99,101,99,108,94,103,107,107,94,99,112,104,107,99,106,106,101,114,107,100,102,90,97,87,108,118,107,103,100,116,110,104,95,96,99,103,101,116,103,98,105,138,103,105,104,99,104,116,95,116,111,103,106,98,104,119,135,106,104,117,101,101,126,101,107,95,105,103,93,107,90,99,116,100,121,102,94,96,109,108,101,108,107,106,94,109,89,94,115,94,99,108,107,99,101,81,99,106,117,104,107,99,114,115,88,94,95,100,104,113,103,104,106,107,112,100,100,115,105,105,103,108,99,106,103,90,104,107,104,100,97,102,100,105,96,104,110,103,114,115,86,96,99,95,115,111,95,100,103,104,118,100,107,91,105,98,95,108,109,98,114,94,106,106,108,108,112,96,102,89,117,107,95,108,99,108,103,103,94,105,118,98,100,106,120,106,110,103,100,99,109,98,93,104,114,101,100,81,100,91,109,94,100,101,100,107,106,104,112,112,112,109,103,92,106,92,100,104,101,94,113,125,91,96,109,98,105,108,100,112,110,102,104,100,95,115,101,103,98,109,99,103,114,107,95,105,95,114,99,100,108,108,95,116,101,94,101,105,91,100,106,105,102,97,108,108,102,102,105,104,101,95,101,99,111,100,105,112,101,110,108,96,103,104,100,106,98,107,83,118,100,110,99,105,110,115,91,105,94,99,112,105,108,107,107,91,88,98,106,98,94,111,120,117,99,98,107,102,98,98,94,113,112,93,98,83,101,103,87,101,91,100,99,114,100,109,105,104,96,105,95,104,103,102,107,98,105,114,98,106,105,92,106,106,113,104,102,105,116,114,100,115,106,97,110,113,113,78,106,97,115,106,90,102,107,108,109,105,113,96,102,86,114,100,105,92,102,95,104,102,99,94,115,107,94,102,102,106,113,97,73,100,101,97,126,116,102,108,106,109,103,113,103,98,107,104,105,108,122,103,105,103,110,113,105,80,107,103,105,94,109,113,95,102,105,97,96,108,96,117,104,108,83,101,99,109,112,104,107,91,108,82,106,95,113,107,104,89,97,121,97,89,106,108,103,101,96,101,100,110,88,102,103,94,114,105,109,102,82,96,106,101,109,117,110,104,106,115,98,86,108,101,91,100,96,99,106,97,104,102,107,105,105,98,113,105,106,102,108,100,102,117,107,96,91,99,114,92,85,109,111,98,103,92,106,96,108,105,99,102,96,91,100,97,113,99,108,106,99,118,99,102,102,109,105,107,102,107,120,87,106,104,94,101,99,110,102,97,96,103,107,100,113,114,110,106,100,108,98,108,103,109,92,106,109,99,104,96,96,108,103,99,107,96,103,98,101,104,92,109,105,95,105,109,112,106,97,104,101,105,109,98,100,99,125,97,112,98,107,116,114,109,101,108,91,108,96,105,98,102,99,99,97,109,104,104,95,107,106,104,102,105,102,99,103,98,107,98,103,104,102,94,102,113,102,115,113,106,103,109,105,105,98,101,100,103,106,106,98,101,111,102,112,103,100,100,91,94,103,95,106,92,88,100,107,101,100,104,112,93,110,95,107,103,104,93,99,98,106,101,97,105,108,109,89,102,111,113,112,100,97,101,105,121,109,87,109,100,99,103,104,100,104,105,94,111,98,100,110,109,117,101,108,101,121,105,101,110,105,105,91,116,109,92,82,89,97,104,110,96,108,109,105,105,104,109,100,96,107,121,102,108,105,105,98,103,98,107,104,101,117,105,99,90,107,109,89,102,101,94,106,106,124,107,118,97,108,106,98,108,99,115,98,101,91,100,115,103,108,91,99,105,110,116,99,98,98,99,95,112,93,115,107,78,99,104,96,87,100,108,107,112,95,103,100,100,93,106,111,106,110,93,88,100,96,95,95,103,97,92,105,102,96,107,109,105,113,106,97,115,96,91,104,110,106,99,107,98,104,88,103,103,107,99,108,99,111,89,105,87,106,88,109,107,102,94,95,98,105,104,108,122,105,102,99,100,98,102,101,106,102,95,109,116,98,91,110,102,100,105,107,100,114,103,108,106,116,105,124,108,96,95,117,97,98,96,119,113,97,95,101,117,107,102,106,98,102,108,97,103,110,112,101,92,98,108,102,88,102,105,109,108,113,109,107,104,105,103,106,106,104,107,120,120,105,96,102,107,106,79,100,100,99,106,96,99,100,91,111,106,106,96,98,98,101,102,99,95,101,138,100,116,96,88,94,106,100,113,112,98,104,96,105,98,108,106,94,95,98,93,108,98,101,102,100,111,97,121,109,100,108,87,106,119,82,105,99,116,78,108,99,102,100,110,91,113,107,95,106,97,102,101,108,99,111,98,99,109,95,104,102,106,105,103,100,93,99,111,84,104,104,92,101,102,82,93,100,98,107,107,83,102,109,98,92,97,101,98,93,114,91,101,108,107,96,105,85,91,91,95,110,86,100,95,99,99,106,93,113,93,104,103,110,101,100,114,101,98,101,100,101,123,116,109,98,100,111,103,108,100,92,104,120,100,108,106,112,114,99,105,108,104,92,100,106,112,101,98,109,98,106,90,113,101,104,98,105,100,103,105,96,105,93,84,103,107,117,104,109,97,102,91,104,106,121,94,101,115,100,115,114,101,97,100,102,105,90,92,95,107,107,101,105,102,102,102,113,103,104,116,101,102,103,101,106,102,103,97,91,97,112,103,104,90,89,98,101,110,117,102,106,87,100,107,106,106,101,93,110,117,84,98,103,103,103,104,120,83,103,104,98,105,96,102,96,91,116,93,95,88,94,102,109,99,96,100,97,119,117,112,104,120,101,102,111,109,107,101,92,100,104,96,94,109,76,106,99,91,102,102,97,104,106,100,123,98,103,116,99,100,90,109,92,110,95,95,92,119,104,103,101,90,106,103,90,100,104,106,105,93,105,99,98,114,115,92,89,101,117,98,92,104,105,102,113,109,105,98,96,97,100,110,105,94,106,106,103,92,96,95,122,93,92,104,105,105,100,97,100,104,88,95,100,112,95,106,116,100,106,103,108,103,101,91,110,125,102,96,97,100,99,117,110,100,94,110,98,91,116,109,105,106,98,107,115,96,106,112,100,111,114,107,107,96,107,99,86,100,106,102,98,112,102,99,102,88,103,107,102,104,99,104,111,108,91,114,96,86,112,100,104,102,92,99,100,105,109,102,90,99,105,103,104,91,104,100,93,97,102,105,106,106,117,102,99,102,100,104,101,106,95,87,96,105,102,106,109,93,105,102,109,105,103,99,102,101,93,101,95,105,97,102,102,113,105,95,103,102,102,97,99,97,104,105,109,103,99,139,100,102,100,113,98,98,121,93,108,107,111,94,112,111,111,99,101,109,108,123,109,95,103,92,121,98,125,108,101,98,102,99,101,81,100,96,109,116,95,109,105,107,103,102,106,111,99,102,97,102,100,104,98,95,95,102,105,101,114,102,111,111,100,93,98,101,98,100,103,100,96,100,98,102,100,104,96,108,93,93,100,102,106,88,90,92,88,109,99,97,104,95,107,102,94,103,97,87,97,99,103,113,104,104,100,93,102,118,105,106,105,115,98,102,114,105,107,104,112,106,104,103,108,107,92,104,107,114,98,104,97,100,96,95,97,88,101,110,106,107,99,95,101,100,94,98,84,102,105,112,102,104,107,103,110,103,106,101,108,103,93,105,103,106,100,93,97,92,97,87,96,84,109,89,103,92,102,99,105,103,99,103,82,107,97,109,98,112,107,97,92,103,95,104,94,93,102,113,100,95,106,99,105,99,101,73,104,111,97,102,96,98,110,108,103,117,116,99,105,103,100,117,87,85,107,116,96,99,105,103,92,96,101,102,96,117,103,97,99,90,97,95,88,102,108,103,107,108,96,96,97,98,106,100,103,103,109,101,100,102,99,105,98,87,107,97,97,102,95,75,102,87,98,86, +450.15253,100,97,109,101,81,102,116,99,102,82,94,103,98,100,106,99,104,116,102,102,130,93,105,115,104,101,100,73,113,134,112,94,83,91,100,112,102,115,102,103,106,88,95,91,114,104,84,117,101,109,103,109,108,102,101,88,116,105,91,108,103,103,104,115,111,108,100,107,109,103,115,101,97,112,94,119,110,88,109,103,105,111,98,103,103,108,93,106,103,101,105,101,108,102,106,95,93,101,101,85,99,105,103,99,106,104,86,100,95,105,100,103,110,104,106,107,90,93,109,100,109,100,94,107,108,100,102,103,106,115,105,111,102,100,100,94,111,112,112,112,86,109,99,92,104,88,107,102,102,93,115,96,98,98,82,99,77,92,98,96,104,106,94,116,110,115,110,95,93,102,102,92,92,91,103,137,99,122,115,99,92,108,110,87,99,105,96,93,106,99,99,109,112,107,110,100,111,105,92,108,98,102,109,98,114,112,91,110,113,113,95,98,100,94,94,94,89,99,97,106,101,102,107,115,88,102,78,115,110,109,98,107,101,105,114,120,95,107,103,105,99,104,108,101,105,87,125,126,107,112,101,105,104,102,101,100,109,96,102,112,100,110,105,122,105,99,105,108,108,90,97,98,102,98,120,100,111,107,110,107,117,104,105,105,107,102,100,102,106,112,120,106,109,95,113,105,104,113,105,116,107,99,97,112,101,102,99,107,93,109,86,99,105,107,105,94,103,105,96,101,111,102,115,107,105,96,102,96,95,112,101,105,111,100,102,105,101,109,103,109,107,102,103,99,94,92,108,104,94,108,105,104,102,116,111,96,103,107,110,104,100,105,96,91,101,117,99,108,105,104,102,102,95,105,114,97,110,90,99,106,106,114,74,119,124,103,102,92,113,98,88,93,98,105,102,109,113,104,111,108,106,87,103,105,100,94,109,95,91,88,95,98,101,101,106,100,102,111,106,101,101,95,103,111,105,92,111,110,98,108,103,112,99,96,103,102,100,119,96,143,117,106,106,105,92,102,109,93,110,113,89,105,104,113,100,98,99,105,100,101,96,103,92,111,107,95,103,95,94,102,87,118,108,106,100,105,109,98,100,99,97,100,103,96,107,103,115,106,108,86,102,106,101,110,97,111,93,99,101,101,114,107,95,110,100,103,92,97,103,99,106,109,93,113,95,109,105,102,100,100,100,92,103,96,63,105,107,102,100,103,104,106,104,103,101,113,104,97,105,107,103,116,96,100,98,97,103,112,102,110,82,104,111,109,109,90,96,98,104,100,115,96,106,114,99,109,109,103,98,99,91,95,109,100,100,110,112,110,102,109,92,95,102,100,110,103,99,105,94,97,115,102,103,102,105,107,103,91,101,105,104,113,106,101,105,101,91,111,106,101,105,98,100,99,109,95,94,91,105,100,103,98,98,101,128,102,90,109,104,100,108,101,104,105,104,109,103,108,99,117,111,114,99,107,100,91,111,104,108,111,105,116,104,108,100,104,94,106,107,103,111,104,113,112,91,105,106,103,102,97,108,108,106,108,105,103,107,110,108,98,111,114,109,99,108,101,107,113,91,105,111,102,95,114,117,103,118,101,100,94,109,103,101,102,105,112,106,114,99,120,110,101,103,106,84,97,99,105,108,109,103,99,100,108,103,97,98,110,102,101,108,109,104,94,71,99,107,103,111,108,101,108,106,93,98,104,95,101,92,110,106,111,92,116,111,101,104,99,113,102,105,94,95,99,105,106,99,104,95,94,104,99,110,104,91,100,81,98,103,107,130,105,114,106,101,109,101,106,111,106,90,114,103,105,105,107,114,106,110,103,106,115,94,104,110,101,104,105,106,103,97,106,113,106,108,102,99,109,104,101,110,121,106,107,92,99,96,103,108,104,111,94,106,99,116,115,105,104,101,100,90,104,101,102,106,103,102,116,102,112,103,103,106,98,93,102,106,104,103,102,103,117,98,112,103,106,104,96,109,101,113,104,103,106,91,109,105,101,95,101,106,97,99,103,101,105,103,114,106,102,110,113,107,105,103,94,103,108,98,117,98,110,108,106,111,99,103,108,96,108,106,107,112,114,105,109,107,96,99,99,112,107,95,114,103,102,106,101,103,104,95,109,107,105,100,114,106,117,103,108,98,110,111,108,105,99,107,87,92,102,116,107,87,108,113,102,116,103,98,94,104,117,102,98,110,105,100,113,103,103,108,114,105,110,106,113,110,95,107,109,94,108,102,89,103,110,96,94,102,114,107,99,111,92,100,87,105,105,104,104,98,103,104,116,107,114,98,110,104,125,101,103,100,91,120,99,103,102,107,94,107,113,95,94,97,112,104,107,114,108,102,99,110,102,83,94,96,106,103,103,114,99,111,116,111,104,106,103,100,105,110,68,114,74,106,101,103,109,109,117,101,94,97,92,109,94,102,109,108,98,110,107,105,98,112,116,110,105,92,95,109,110,98,102,104,119,106,100,120,107,115,94,102,93,110,101,111,101,110,100,112,109,120,95,100,100,101,107,99,99,103,114,112,117,107,95,95,86,96,103,107,108,103,95,107,107,105,95,110,107,94,100,113,104,106,100,98,99,94,100,110,95,100,109,99,106,104,113,111,102,110,93,100,109,90,94,107,95,100,106,103,92,78,99,99,104,103,93,97,107,107,104,117,103,103,101,92,100,106,97,98,105,110,108,83,101,109,106,108,100,89,103,104,101,106,104,108,90,103,102,101,99,100,93,104,111,113,98,102,103,105,113,100,120,99,102,75,97,109,95,109,115,107,113,106,93,103,95,96,103,97,107,90,106,109,87,110,109,119,114,100,106,110,105,105,104,99,101,113,104,76,106,105,102,98,100,110,98,90,107,104,111,96,101,107,97,106,104,99,109,106,111,113,103,100,101,110,109,107,121,89,100,113,104,105,109,97,110,104,119,104,102,98,104,103,110,104,96,101,125,108,102,97,102,99,108,99,110,102,103,100,104,106,102,98,107,113,94,106,104,95,94,102,100,103,98,106,96,98,106,105,101,104,113,122,91,96,88,108,103,97,103,97,121,99,100,107,84,94,98,112,103,108,91,93,103,109,113,107,98,114,117,91,106,99,103,124,107,104,104,104,110,96,112,102,104,100,95,104,99,95,104,105,109,99,105,102,98,101,100,98,98,110,89,100,109,94,109,98,98,111,96,108,111,99,109,106,108,106,96,100,102,109,108,100,100,96,106,99,94,101,102,102,106,93,106,109,100,108,107,120,97,104,113,108,87,104,108,96,88,108,98,110,108,105,100,103,117,112,78,99,98,103,108,113,102,96,113,109,112,112,125,98,102,103,101,107,101,98,95,118,115,110,101,92,100,97,110,102,109,107,105,95,98,96,107,105,121,82,92,109,107,119,108,98,88,94,84,98,93,96,95,92,102,81,99,109,100,105,95,109,110,92,105,109,108,94,99,112,113,112,106,110,102,106,121,124,94,111,104,107,108,98,94,102,106,101,97,111,93,91,110,98,120,104,101,105,94,98,102,98,102,89,96,106,103,85,99,105,99,99,95,104,95,107,100,94,111,99,108,110,116,102,101,102,107,95,94,109,92,99,101,101,101,102,99,91,104,100,103,98,93,106,103,98,107,94,111,108,99,92,97,108,101,105,106,96,113,105,102,108,95,99,109,99,91,109,108,108,102,113,103,93,106,105,100,109,101,100,97,96,94,99,113,98,107,100,105,109,108,91,98,103,95,117,99,96,101,110,103,103,95,120,98,100,109,107,104,104,110,111,90,99,100,103,107,105,103,109,104,109,110,104,96,100,102,102,106,103,95,100,95,99,106,83,83,108,96,95,110,79,101,87,98,105,108,110,107,87,103,107,99,104,104,110,96,110,111,100,106,101,102,95,101,101,104,109,115,82,99,96,97,104,101,104,106,99,101,95,105,114,102,92,102,112,99,95,92,99,106,98,98,90,94,104,104,96,82,87,99,107,110,96,106,94,108,96,103,97,110,110,108,124,100,103,114,87,100,123,101,96,94,98,110,92,111,113,105,98,112,108,108,110,88,108,112,105,80,118,97,112,114,101,103,99,101,94,106,105,98,111,101,98,104,103,102,109,115,100,113,103,108,111,104,115,124,92,99,96,118,92,102,111,101,105,105,104,104,106,101,106,96,89,102,100,99,104,102,129,94,112,104,95,109,107,114,90,95,102,99,104,105,103,117,101,112,110,103,95,106,111,95,91,98,92,98,100,109,109,107,103,109,101,105,100,102,99,88,100,111,96,99,116,108,107,102,102,109,127,99,103,101,110,102,101,101,98,102,98,105,112,100,97,105,104,107,100,104,105,103,104,103,105,98,103,107,103,102,105,102,95,111,111,119,98,109,107,106,103,131,100,114,107,117,104,107,106,105,103,91,83,99,103,90,93,113,102,110,102,99,97,104,98,97,103,105,91,100,98,106,94,104,98,95,100,104,109,95,108,100,92,103,107,101,105,89,97,107,99,100,96,109,91,108,99,99,102,102,99,92,108,97,98,105,112,106,105,98,106,88,100,105,94,102,107,97,102,101,99,124,95,104,109,96,113,108,101,97,91,109,101,94,91,120,103,118,105,99,96,119,109,99,104,102,91,96,109,104,102,98,86,93,109,108,123,96,122,109,109,99,96,105,107,99,95,95,96,106,96,100,92,101,104,108,93,104,99,100,108,95,87,103,108,92,98,112,90,83,112,118,96,104,100,105,98,99,99,111,106,108,104,93,96,99,96,106,92,113,111,102,104,104,100,103,92,100,100,90,108,101,99,96,98,97,93,108,118,96,99,109,105,95,92,107,99,114,101,91,95,98,90,114,100,95,104,106,95,101,116,103,103,108,101,101,108,108,103,109,109,87,104,96,119,103,109,85,99,104,106,90, +450.29291,112,103,111,69,109,102,109,98,96,96,108,109,102,95,112,114,97,85,113,110,108,102,112,100,94,112,97,118,105,92,92,106,101,99,95,109,103,104,105,103,105,109,104,100,109,106,96,102,108,112,110,105,99,95,100,93,87,100,105,79,110,104,117,113,100,99,95,117,105,102,118,112,108,107,96,114,108,110,96,96,111,101,96,113,103,103,99,110,108,104,94,110,93,94,112,96,113,92,100,101,103,98,98,96,100,102,97,96,115,94,101,100,112,106,103,106,90,75,103,97,104,107,107,105,101,121,104,95,103,107,94,117,106,108,106,105,102,92,100,99,100,108,102,110,94,108,111,99,94,104,125,99,98,94,103,102,105,95,128,102,97,102,104,103,98,99,98,101,99,104,106,103,102,111,120,108,107,96,115,122,98,102,95,97,99,122,99,100,105,113,103,101,103,101,102,107,102,107,105,120,115,97,90,114,81,114,105,104,108,103,106,98,100,96,108,99,99,96,98,104,105,115,107,105,109,104,101,99,99,108,112,115,112,108,114,92,116,103,95,92,110,98,101,102,102,104,110,100,105,106,104,109,92,106,96,109,105,94,98,104,108,105,111,99,102,111,103,101,99,98,114,107,102,98,102,106,105,103,100,105,91,99,98,110,112,104,95,89,103,107,105,99,106,112,115,108,111,100,113,103,107,106,103,141,100,107,106,105,96,114,94,112,98,100,108,101,113,121,111,103,102,92,98,110,96,116,101,98,107,117,98,102,109,100,108,113,104,96,102,103,103,98,101,68,96,110,95,103,108,104,113,103,104,113,101,120,105,120,118,103,109,104,103,102,112,108,99,111,100,105,109,108,110,124,100,99,102,94,110,98,114,113,94,99,103,99,91,91,125,99,119,100,104,99,101,98,85,101,101,108,118,102,109,100,103,108,94,106,102,104,102,105,106,105,103,107,88,94,110,85,103,110,114,104,96,112,109,105,98,106,97,108,90,105,115,121,110,123,107,106,109,105,100,101,99,100,107,84,99,113,90,101,107,112,107,105,113,112,109,97,120,110,108,92,115,103,113,102,99,117,114,105,113,98,107,97,95,108,108,100,108,108,101,110,95,106,109,108,103,96,100,92,112,117,90,110,107,114,109,124,110,92,103,101,80,113,69,99,103,107,113,104,101,106,106,111,98,95,101,95,110,104,107,99,97,100,110,101,98,119,95,108,99,114,98,101,111,95,108,105,110,113,91,99,109,113,99,103,104,103,98,111,102,105,105,98,111,103,92,93,110,98,109,111,100,108,100,114,107,97,101,96,107,105,106,107,105,87,105,107,107,100,101,105,105,113,118,111,105,113,101,106,105,116,110,112,114,100,104,105,104,88,112,101,95,110,117,96,93,107,101,91,108,102,107,100,95,109,110,101,100,106,108,106,109,102,92,107,102,112,113,117,97,105,103,103,106,103,110,113,97,119,100,103,103,102,99,89,113,95,92,111,93,100,101,84,109,115,89,101,97,105,117,100,92,109,100,115,108,107,112,103,104,101,100,113,100,106,103,100,113,103,105,92,97,104,97,113,107,106,111,101,104,105,108,112,109,102,106,115,107,109,99,103,109,112,112,113,107,101,104,108,106,103,102,104,112,112,102,109,106,100,105,105,106,99,101,99,103,109,111,107,101,98,105,103,95,103,127,101,116,98,103,108,108,115,111,101,100,103,106,111,104,109,99,104,108,103,120,104,101,99,97,73,104,109,106,92,106,96,110,97,95,103,110,108,80,102,126,108,104,97,113,101,100,104,103,101,111,113,108,113,104,106,116,112,112,97,102,114,98,93,99,75,110,93,105,102,103,109,113,102,114,106,103,103,114,108,109,100,107,103,98,105,90,95,103,106,106,101,105,95,114,99,99,87,110,101,112,106,100,103,104,104,108,99,102,99,124,100,97,110,103,131,103,114,105,101,91,101,118,104,101,90,100,103,97,96,114,108,95,107,97,100,112,104,91,94,109,100,98,110,111,102,113,121,94,108,119,95,98,107,97,114,103,99,105,111,114,100,111,91,104,106,110,107,105,106,99,103,104,102,110,100,94,94,110,110,109,111,111,109,100,108,106,105,109,100,108,106,109,103,120,105,96,104,102,113,94,119,102,91,109,101,100,95,111,102,99,110,105,106,106,110,110,98,107,101,98,106,103,99,104,99,103,130,93,108,106,110,88,95,112,103,115,102,97,105,98,101,103,93,103,104,119,95,113,106,94,100,113,99,99,100,90,110,98,109,114,97,108,110,113,107,121,107,105,104,98,98,102,78,105,106,93,90,112,110,110,104,95,103,103,105,96,109,100,97,112,98,100,109,109,98,106,105,91,98,116,114,106,111,101,108,106,98,100,111,99,110,113,97,102,100,98,103,110,111,108,102,98,106,115,93,106,108,101,109,109,108,100,107,99,97,113,104,118,98,134,105,100,105,97,109,99,106,100,117,108,107,116,115,99,98,99,108,103,110,88,111,103,99,112,103,108,101,97,102,97,107,110,111,103,113,105,102,95,106,111,104,99,101,107,113,98,100,81,96,101,109,104,116,98,95,101,97,100,92,98,101,109,101,93,98,107,107,101,109,109,102,119,97,127,94,108,102,111,99,99,113,101,99,110,94,109,105,109,104,100,107,106,107,109,100,107,104,110,106,107,108,112,100,108,95,105,100,108,102,104,110,100,101,120,103,100,108,82,85,100,116,110,109,106,94,107,120,103,105,100,92,108,109,101,109,88,102,108,105,106,99,109,99,102,97,104,100,103,108,102,109,106,126,100,100,106,119,97,104,107,116,114,101,116,127,107,100,105,116,112,99,104,111,109,104,101,105,99,109,102,101,107,116,88,112,102,95,129,114,102,135,101,112,106,121,104,97,111,102,123,109,100,110,114,103,102,103,109,103,100,126,106,91,107,112,105,117,103,109,102,106,98,105,108,111,107,108,103,104,107,115,99,114,93,103,98,115,79,113,106,111,95,110,104,105,109,102,111,95,108,113,94,108,104,116,98,111,103,120,110,108,114,106,97,99,99,99,113,105,107,109,105,112,105,109,91,102,104,105,111,106,103,123,105,104,109,90,104,104,102,99,106,102,99,114,102,131,110,109,120,92,101,92,99,110,102,98,111,92,102,96,105,106,96,102,101,102,102,103,100,98,107,100,94,100,94,105,103,105,105,101,111,111,91,106,108,98,103,113,115,112,108,115,104,84,95,115,111,102,117,109,108,96,118,116,115,104,100,115,104,115,100,99,116,88,103,105,103,113,120,98,109,96,112,110,108,117,106,110,101,88,102,108,112,113,105,108,106,108,99,96,101,101,96,103,105,120,107,106,95,111,94,106,117,109,109,92,90,106,106,109,107,113,99,99,109,107,113,104,104,104,97,105,108,115,101,101,101,98,102,122,99,100,100,109,93,117,106,111,98,98,108,93,109,106,88,109,104,85,108,99,96,117,102,105,102,90,106,102,101,94,99,112,106,108,109,114,112,104,102,108,110,103,111,103,99,111,102,104,100,86,102,103,113,105,97,108,94,114,85,114,98,106,81,112,96,107,102,103,115,93,98,102,104,104,81,98,90,112,116,111,102,99,107,101,103,99,104,110,116,99,102,98,107,103,100,108,94,105,97,118,92,106,103,104,109,109,106,121,109,101,115,109,115,111,106,103,105,96,99,112,109,109,108,102,102,110,112,108,106,102,92,107,106,103,104,109,106,108,114,109,103,117,101,105,100,111,119,103,105,105,109,102,110,100,107,99,118,117,113,116,107,115,103,82,108,99,98,111,115,96,121,109,117,91,107,106,104,99,102,101,100,100,103,113,106,113,110,105,99,115,114,136,98,99,100,95,92,96,101,105,95,94,114,102,102,101,119,107,110,107,101,109,113,108,92,109,111,105,111,98,90,108,120,96,117,117,106,98,111,98,101,110,117,114,100,115,101,101,98,107,113,109,92,102,100,113,109,107,99,112,113,111,100,115,96,105,100,89,116,104,104,102,109,110,99,110,113,102,116,99,110,105,105,109,101,106,106,99,115,96,113,95,102,96,99,103,105,79,114,103,108,102,107,109,96,105,104,97,108,119,101,110,110,112,101,113,102,111,108,105,98,121,98,118,100,110,120,103,107,104,111,93,100,106,106,116,108,105,104,101,114,117,107,99,102,99,106,113,112,112,110,102,111,106,102,88,106,88,100,99,113,103,109,111,107,98,91,106,107,105,95,111,115,103,101,62,93,107,104,119,108,92,95,106,107,115,116,104,94,107,95,101,105,102,106,112,100,102,97,98,110,108,105,104,103,119,102,99,91,105,106,95,106,102,108,104,107,108,102,113,95,111,112,111,98,102,98,97,104,99,103,105,97,89,113,99,98,107,100,92,108,92,104,96,95,107,102,105,116,116,117,105,96,114,109,100,106,112,108,111,102,117,101,99,109,105,94,107,111,105,91,99,101,118,108,105,105,109,105,103,108,110,99,110,104,101,109,117,103,111,102,104,101,95,105,101,107,111,111,117,112,95,96,103,101,83,110,110,109,108,117,91,99,107,106,116,101,110,107,103,101,108,103,108,92,115,103,99,113,104,103,88,106,100,112,94,117,110,101,113,108,104,112,87,96,115,108,108,104,102,98,100,117,92,90,97,111,95,99,95,110,104,95,103,91,101,107,92,103,102,99,113,102,90,93,102,113,110,103,108,108,78,93,102,98,99,106,70,117,115,90,101,108,103,94,105,91,100,103,101,104,111,107,109,108,95,110,110,103,114,96,89,104,95,95,99,109,99,99,116,114,75,91,99,101,103,106,97,92,111,98,100,84,91,101,84,101,118,116,107,103,95,94,96,124,98,119,121,103,110,99,103,97,96,108,108,120,101,127,91, +450.43329,102,108,104,100,80,102,98,100,102,105,90,104,94,98,95,107,94,102,99,123,94,100,101,105,103,116,98,103,96,106,105,82,104,112,107,98,101,96,86,100,101,97,112,73,107,99,123,104,100,116,100,89,102,107,111,87,103,116,100,98,91,108,113,97,95,102,105,100,91,111,107,108,100,95,106,104,102,97,104,95,107,112,94,109,94,106,112,86,108,92,104,109,90,106,91,92,107,100,113,99,108,101,99,93,98,99,99,83,113,112,102,100,106,103,101,108,98,83,99,106,101,98,109,108,90,91,106,109,93,119,104,107,94,110,114,103,89,94,103,90,94,108,108,95,105,101,109,113,102,104,107,94,110,101,89,95,99,108,106,117,105,134,98,107,94,100,98,96,100,98,79,118,107,101,96,112,96,98,104,91,105,119,95,100,101,97,106,116,106,104,109,103,99,100,95,102,105,104,106,101,103,107,105,114,97,99,104,118,117,112,100,110,105,105,102,103,96,99,104,94,99,105,101,121,86,102,101,109,101,103,106,92,93,104,114,99,107,93,109,101,115,97,113,104,92,104,104,107,104,95,104,107,105,98,113,102,103,87,98,107,91,101,103,103,105,113,103,106,94,79,109,113,106,90,117,99,105,109,110,101,107,110,109,96,99,102,109,115,107,106,110,101,103,104,104,101,102,104,104,114,105,107,108,106,105,103,111,116,100,109,86,100,97,95,108,99,96,99,106,96,104,102,100,108,93,106,99,87,100,94,105,97,96,105,105,99,101,93,88,100,97,99,69,108,102,109,105,94,110,99,116,94,95,98,112,94,80,108,106,110,94,105,110,100,96,100,101,114,105,102,113,102,97,116,110,96,106,110,91,102,106,97,101,101,109,113,107,98,108,105,106,99,102,109,95,96,117,102,107,114,101,120,105,109,86,106,113,111,111,83,115,105,105,105,105,91,91,104,106,103,103,96,91,96,101,107,100,103,98,107,95,99,96,98,109,113,97,95,94,103,116,103,110,112,102,106,101,113,101,103,108,99,110,105,102,109,107,104,106,108,101,104,107,107,108,96,108,95,109,110,99,117,110,98,106,125,104,114,103,107,117,101,116,111,104,104,103,94,110,94,114,102,108,102,105,104,104,107,104,116,110,104,97,99,93,112,103,99,100,104,119,108,103,105,100,112,105,103,106,106,103,89,112,102,89,109,107,111,107,104,94,106,102,104,112,116,94,100,93,104,112,94,90,102,102,107,112,110,106,111,86,98,103,99,103,98,106,103,95,106,112,109,99,109,108,100,109,108,97,93,100,99,103,114,103,99,107,106,109,111,113,108,103,94,117,105,109,100,107,99,109,102,108,106,116,96,100,99,109,103,109,97,98,100,96,109,100,104,94,104,100,105,111,99,92,95,99,100,108,114,103,106,106,104,110,106,102,100,99,101,103,116,102,115,98,107,107,94,108,108,89,101,104,117,102,91,105,110,102,109,100,110,93,101,110,101,126,97,100,105,105,106,111,105,105,104,106,100,110,143,95,98,107,98,116,104,103,99,109,86,101,107,104,107,106,85,111,99,103,113,108,87,99,105,105,105,113,100,91,97,103,101,100,91,111,117,109,114,103,94,109,105,103,95,105,97,91,100,69,116,99,104,98,114,99,103,115,109,110,111,99,111,106,106,100,108,104,97,100,98,109,107,95,93,98,98,100,107,103,101,110,80,93,102,104,108,105,100,104,106,107,89,101,105,96,106,95,113,92,94,117,104,111,106,73,105,87,110,111,95,95,99,109,109,97,100,112,103,100,110,94,103,99,108,112,103,102,107,98,100,106,100,101,102,106,111,126,100,105,109,112,98,104,122,106,122,95,112,110,109,107,111,106,113,105,109,121,104,105,105,109,103,109,97,94,107,109,90,96,99,106,114,108,98,102,117,103,98,107,99,100,100,103,105,96,110,105,106,104,99,116,112,110,117,96,109,94,99,112,97,104,91,101,98,104,97,103,100,108,108,102,105,100,107,103,100,105,114,107,103,110,108,108,104,125,95,104,110,102,101,107,105,111,103,108,100,100,109,101,98,102,104,111,106,105,103,109,107,104,112,102,109,103,106,104,101,101,104,103,99,108,104,104,111,97,101,90,105,95,102,110,107,104,106,113,121,104,88,102,90,110,103,103,103,109,114,110,109,106,106,106,96,114,95,105,113,106,101,112,104,99,103,104,106,113,107,107,105,92,108,95,94,105,93,101,105,103,102,106,110,97,101,77,105,109,100,109,104,99,105,110,100,102,94,96,99,109,98,89,100,101,100,99,88,98,107,112,102,105,114,104,117,100,97,109,114,107,113,106,79,114,96,105,98,91,101,102,110,96,99,106,100,104,99,96,109,106,109,102,96,109,109,109,94,94,112,103,115,100,100,108,103,111,113,104,102,99,95,102,109,94,111,104,105,106,101,105,108,109,100,106,99,111,103,98,109,102,114,111,104,105,109,110,107,96,108,93,96,102,106,98,105,103,100,98,98,108,112,96,100,101,103,102,106,101,103,104,109,95,119,102,99,96,104,109,93,93,107,108,93,102,109,101,98,103,109,105,101,102,91,96,103,90,98,100,100,113,101,109,84,111,114,117,105,114,102,105,107,106,121,105,104,104,99,108,99,104,99,115,100,104,121,101,101,101,97,109,98,100,99,106,93,106,102,107,96,120,110,103,106,99,105,102,92,99,109,102,94,97,91,116,92,110,100,99,91,102,102,98,105,100,101,106,99,115,107,106,112,97,96,121,94,93,96,98,119,101,110,109,101,110,112,106,94,100,98,92,85,102,98,74,113,115,108,113,99,111,100,97,102,96,117,107,98,105,102,119,105,106,102,95,97,102,96,108,95,99,111,93,100,122,102,101,99,102,108,115,96,101,105,95,102,113,99,104,109,99,107,107,105,99,99,97,102,100,111,121,94,105,106,103,98,119,116,107,103,104,95,90,103,106,90,107,107,105,100,94,113,106,98,100,104,102,98,108,98,98,102,121,105,101,105,109,112,108,104,110,112,99,116,99,112,108,101,101,106,105,100,105,95,95,101,98,102,108,104,100,105,100,109,107,105,96,102,101,104,105,82,128,98,111,106,110,111,99,121,106,95,92,103,104,122,107,100,104,88,115,101,107,102,97,106,98,99,98,101,127,105,102,102,112,113,107,109,108,109,123,106,99,94,95,98,93,103,101,91,102,95,99,106,101,95,102,102,107,110,101,106,95,92,116,92,106,115,103,87,99,95,91,97,91,101,106,110,94,106,104,109,110,100,107,98,120,136,100,106,109,102,101,106,96,106,97,106,100,100,102,101,99,88,104,106,96,108,102,109,103,107,99,98,105,116,111,109,105,104,88,112,107,94,120,101,98,84,105,97,94,100,95,114,101,104,101,106,107,101,109,87,96,100,105,99,113,109,111,95,101,97,110,109,104,102,94,102,92,109,100,95,93,98,101,99,97,109,111,104,100,105,108,100,114,102,107,107,103,103,111,102,102,95,98,105,99,113,107,81,95,107,104,103,104,104,103,107,101,94,106,106,100,102,102,88,91,111,105,101,108,102,109,98,92,111,104,112,103,123,104,94,101,108,94,103,100,104,101,97,102,90,119,93,93,99,106,96,101,110,97,109,104,106,94,107,95,115,100,96,89,99,111,90,110,108,96,109,105,98,105,111,106,92,98,98,108,104,109,78,109,103,111,109,108,101,113,104,94,96,109,96,110,108,116,110,95,97,101,97,105,98,114,100,112,105,108,105,108,101,104,89,105,102,98,94,98,101,98,101,102,109,108,99,106,96,107,101,96,109,96,87,89,119,106,88,99,105,93,103,106,97,115,89,94,103,87,103,102,105,88,101,88,107,100,105,96,100,107,92,109,93,107,105,101,99,102,97,99,97,107,107,104,97,108,102,113,105,102,115,99,105,111,105,105,105,102,106,113,91,113,105,99,104,116,100,99,106,102,102,114,103,84,103,102,91,92,110,97,104,94,102,118,97,109,98,109,113,109,102,109,104,102,92,106,106,96,97,98,115,96,100,112,103,99,95,104,97,104,100,109,91,104,95,101,108,110,102,104,107,115,112,99,97,105,103,109,107,108,103,113,91,109,100,109,106,101,93,84,97,102,106,99,105,106,98,95,103,101,104,102,105,99,89,96,91,107,90,105,99,86,115,107,105,101,92,107,113,84,99,106,96,99,102,96,93,127,105,94,98,94,93,104,104,94,94,113,100,102,110,100,98,87,100,105,96,103,94,97,98,99,101,102,104,100,111,96,95,108,99,97,99,106,111,106,101,95,92,113,104,103,106,100,107,105,101,95,110,101,94,112,99,116,98,118,104,132,83,110,105,105,107,101,102,94,111,104,110,94,101,98,101,96,100,95,97,104,98,100,113,106,76,102,100,97,117,105,104,105,101,100,106,99,104,110,94,102,103,102,94,112,100,106,94,98,96,112,89,107,91,99,104,111,102,109,112,108,117,100,105,111,95,101,94,94,96,106,92,102,94,101,105,110,106,102,112,106,101,100,100,110,112,77,112,107,98,96,89,106,103,108,105,96,101,105,113,96,105,104,95,104,82,90,90,101,84,86,98,104,99,101,102,99,102,108,92,101,113,110,106,111,106,100,104,98,96,100,103,100,96,99,103,106,105,93,100,110,106,92,107,96,109,83,103,96,89,103,108,99,110,98,95,95,95,98,95,110,105,98,96,112,94,109,102,98,103,102,108,99,94,97,108,112,110,99,91,102,103,102,90,97,93,95,104,100,97,94,108,96,98,111,110,109,113,105,92,120,105,112,106,115,119,99,96,90,108,90,111,102,92,104,97,89,93,107,99,104,92,80,110,100,116,109,106,102,101,96,89,120,96,120,110,90,78, +450.5737,105,108,96,104,98,104,100,94,66,109,94,117,100,96,105,99,94,102,98,87,105,89,94,106,101,91,106,105,105,109,101,111,90,100,94,91,103,87,106,94,100,105,112,105,97,103,105,116,98,93,102,101,99,109,100,94,112,100,112,87,94,102,94,95,105,120,102,103,100,101,103,102,97,97,102,114,102,93,122,101,107,103,109,113,120,108,104,111,100,105,91,107,97,100,101,118,109,99,142,106,102,99,102,109,101,92,94,83,102,91,114,100,101,104,99,107,95,103,93,112,120,96,104,105,110,106,107,97,126,110,104,106,96,119,106,98,106,100,106,108,100,113,114,97,92,95,107,126,92,100,101,98,110,84,93,94,116,109,95,112,87,103,114,104,102,113,103,94,106,100,100,108,88,91,101,114,98,105,101,108,96,104,86,113,93,87,98,98,110,108,93,101,109,107,71,95,83,104,102,114,84,103,98,87,117,79,112,108,101,115,107,103,113,98,104,98,102,94,100,121,107,95,104,108,104,103,109,109,114,106,100,101,117,109,108,102,108,102,112,115,99,108,114,99,108,113,93,103,98,93,107,104,100,103,81,100,104,100,95,110,98,96,105,109,101,111,109,111,101,104,105,94,100,102,117,100,99,99,129,92,106,104,110,110,104,102,99,109,90,96,94,111,106,97,106,103,108,106,107,91,96,106,111,109,109,116,92,96,105,114,88,111,107,106,112,106,112,100,109,100,99,98,99,112,104,103,100,91,108,120,104,101,85,111,106,111,122,95,108,113,100,102,97,98,102,104,98,91,102,111,70,104,102,106,102,96,99,110,105,95,103,98,95,109,99,106,87,87,111,104,107,101,106,91,104,108,103,109,96,112,106,105,100,108,100,100,89,105,110,97,113,129,108,98,95,101,96,96,113,99,102,100,99,100,103,96,106,110,103,103,104,97,108,94,109,104,105,90,99,111,108,121,97,110,111,95,95,98,97,102,105,99,105,100,99,114,106,105,93,101,110,104,100,104,87,105,102,113,113,107,99,113,101,115,104,104,114,93,101,125,122,100,109,104,97,97,106,97,97,99,115,101,100,111,100,99,102,108,115,96,112,106,114,99,100,75,123,102,109,109,111,117,105,112,100,114,101,102,103,104,133,99,120,101,108,103,102,108,107,109,110,121,112,98,111,101,113,103,105,109,96,100,122,96,112,104,99,102,99,104,101,102,122,109,99,102,108,110,97,118,102,113,104,100,104,104,100,96,101,99,94,112,100,100,104,103,96,101,98,116,99,110,105,105,107,102,110,100,87,100,98,95,103,108,101,106,99,102,96,118,118,105,93,98,107,97,115,101,103,96,111,106,93,97,118,118,105,109,101,106,100,120,109,95,98,107,94,104,102,107,104,113,116,124,119,102,91,89,113,107,101,115,105,101,111,103,98,103,108,100,102,101,100,116,97,105,104,107,101,97,109,107,103,100,95,100,104,107,94,95,106,105,107,106,105,90,112,105,108,105,103,105,102,100,111,104,106,99,109,91,102,99,117,102,103,106,105,104,115,100,113,96,106,95,104,100,78,100,101,105,109,107,95,108,112,98,111,84,102,95,103,102,101,103,99,128,122,103,98,120,98,101,107,106,93,95,103,116,104,103,99,102,99,113,113,108,104,97,91,107,108,97,103,96,102,108,110,108,98,89,125,91,98,109,129,90,107,99,128,88,107,74,93,92,104,128,104,106,112,107,108,111,92,107,99,100,95,100,112,115,100,107,94,108,121,110,93,105,111,99,108,103,115,105,116,105,97,99,107,107,121,102,111,104,106,103,87,99,117,119,107,101,113,106,113,98,109,108,104,116,109,101,103,99,115,105,116,105,101,96,100,114,102,94,110,116,102,99,104,94,99,80,115,117,95,115,109,101,103,109,111,106,111,106,111,96,106,106,100,95,115,102,108,108,97,99,129,100,106,105,106,99,102,104,109,102,97,109,96,88,106,103,114,110,106,103,106,100,99,117,87,109,105,112,100,101,106,113,107,119,107,99,125,106,104,97,105,102,105,116,92,112,100,101,112,86,90,110,102,95,89,103,117,100,105,110,103,104,92,116,104,104,101,115,115,99,105,105,101,106,98,109,99,109,104,94,104,104,99,110,102,99,109,115,100,113,111,103,113,100,100,101,103,107,118,96,108,104,107,106,109,106,104,106,104,93,98,108,96,104,97,105,108,98,100,90,105,101,76,109,104,105,118,97,117,102,104,84,99,98,112,87,108,99,106,113,88,100,103,109,103,98,104,102,91,110,96,101,96,106,99,106,98,106,109,101,94,101,98,97,109,103,105,92,112,111,105,110,99,91,108,97,99,101,112,97,100,102,99,94,105,105,89,103,109,98,116,112,91,104,88,101,94,121,109,110,114,108,104,99,92,93,111,106,87,113,107,100,105,106,103,98,105,103,104,108,71,108,99,91,92,109,106,95,102,111,105,97,107,99,77,102,91,100,99,104,101,112,94,104,103,96,91,85,97,108,101,109,126,102,115,107,101,97,121,101,104,105,105,104,98,109,112,113,100,107,100,107,113,105,91,111,100,94,95,107,106,92,89,108,108,106,96,118,107,91,100,99,105,97,95,99,107,108,107,104,113,101,100,102,105,95,100,94,104,93,100,92,100,98,94,96,119,102,87,99,95,106,99,114,98,98,96,102,103,101,106,90,105,98,100,102,100,104,96,108,108,99,100,108,98,110,102,112,94,99,100,106,93,105,88,107,92,96,102,94,112,111,100,101,95,111,95,104,109,93,103,101,100,100,97,99,101,111,101,106,100,94,107,109,115,98,106,90,93,92,103,101,109,108,104,106,106,101,109,107,100,110,106,115,101,102,104,108,102,102,97,102,93,109,108,98,102,114,99,95,106,107,110,102,99,106,102,92,103,98,107,100,98,105,119,91,96,109,107,104,110,95,98,100,90,115,93,99,113,111,102,102,95,109,100,95,112,104,106,104,108,98,107,97,114,109,96,110,107,95,110,102,94,107,104,105,103,101,81,104,95,113,98,85,89,93,109,97,92,83,113,107,103,95,104,100,108,98,101,101,95,87,97,109,98,111,103,79,101,96,116,114,75,110,101,105,101,104,101,96,97,110,104,101,105,99,101,94,99,95,96,104,114,99,99,94,89,99,105,102,104,102,107,100,94,107,101,112,95,107,102,112,104,99,113,109,100,87,110,104,101,106,103,107,102,103,87,96,84,101,106,89,110,100,111,109,109,98,102,103,95,98,106,108,100,104,91,103,100,69,95,87,96,99,87,92,101,104,98,104,110,104,100,96,108,97,101,102,106,95,103,114,100,96,94,102,101,109,98,97,105,96,117,103,120,119,112,96,105,102,115,95,106,99,100,107,89,109,100,109,102,97,120,99,95,102,94,110,100,95,96,114,103,102,103,98,101,91,104,101,90,88,100,107,101,98,108,90,94,102,95,101,96,93,106,105,102,83,107,88,105,88,105,104,93,95,106,110,104,92,96,99,112,101,104,101,99,99,116,102,104,96,104,109,78,114,100,109,100,105,80,104,105,103,106,104,113,101,103,69,109,102,102,109,105,94,111,100,111,94,117,110,104,110,92,99,102,90,97,96,112,96,101,103,97,78,117,98,96,109,109,98,103,109,104,93,108,108,102,97,94,100,92,107,121,100,99,92,109,101,100,97,117,101,105,100,104,103,101,89,94,111,102,100,109,98,112,103,106,96,100,100,116,105,105,98,93,99,94,99,97,108,115,100,97,98,112,106,103,108,105,101,100,101,111,100,91,96,97,107,100,95,95,110,128,93,91,97,101,106,106,98,97,102,105,109,97,110,100,108,91,98,106,98,98,111,107,100,102,108,110,117,94,109,106,95,87,96,116,105,99,96,93,102,92,93,113,105,99,100,102,103,104,85,101,105,111,94,97,109,109,94,94,95,97,104,102,107,101,121,103,91,91,123,99,105,96,98,103,105,98,117,95,116,96,91,93,104,106,102,93,110,103,90,98,107,115,110,109,98,106,101,109,96,102,110,94,101,112,99,108,102,90,92,91,95,96,95,94,113,75,99,110,95,113,112,83,89,106,98,100,130,106,99,92,102,110,97,99,99,96,95,100,110,100,89,98,100,110,109,101,117,106,101,113,98,101,97,101,107,99,103,111,105,109,110,97,100,103,101,90,104,98,101,125,103,105,102,115,90,106,109,100,107,92,95,91,97,106,96,93,99,100,97,96,98,102,100,113,107,100,95,114,104,94,103,108,100,97,85,99,106,103,98,111,99,108,95,90,96,94,100,103,117,83,104,98,103,109,97,96,113,100,102,102,108,101,90,102,90,96,82,106,92,104,99,111,100,98,99,95,113,111,108,103,111,100,107,102,99,101,97,105,91,97,121,101,101,100,103,96,99,108,92,114,98,99,108,100,96,108,112,104,119,98,93,94,109,104,105,100,99,95,95,113,99,98,121,98,98,85,116,96,95,107,112,101,96,113,89,108,107,108,95,107,106,98,103,97,100,109,102,99,95,101,93,73,101,85,109,101,99,99,98,98,110,102,107,100,95,112,100,99,102,87,94,112,108,96,98,113,103,87,100,94,116,101,93,96,115,114,99,95,100,99,105,106,91,123,102,115,110,109,114,86,98,100,106,98,100,99,107,101,100,111,88,104,99,97,101,100,105,108,90,97,99,105,88,100,99,103,103,97,97,91,98,117,100,91,102,107,97,102,102,111,109,124,92,100,92,101,121,91,90,95,102,103,110,95,101,103,88,101,93,85,111,103,80,104,94,103,102,94,94,105,102,104,100,100,96,92,102,103,92,99,103,110,101,96,101,98,91,100,90,103,103,111,102,93,102,90,103,102,83,104,82,104,95,103,110,96,90,100,89, +450.71408,103,104,105,93,87,103,105,110,97,96,113,99,107,108,98,112,107,100,105,100,108,101,99,102,84,117,103,106,108,105,112,111,105,101,102,113,96,95,112,108,96,96,93,98,93,96,106,96,106,114,111,94,96,120,110,91,105,103,123,110,107,95,105,110,101,91,88,111,106,103,111,128,98,110,104,100,109,96,117,95,103,94,96,102,105,82,96,108,98,97,94,107,106,98,95,100,97,114,94,100,103,117,108,107,106,91,108,104,109,97,113,112,90,107,104,95,100,116,107,119,95,96,121,103,99,120,105,94,124,103,103,78,111,106,109,109,112,105,105,94,94,109,103,105,105,109,94,104,104,110,87,103,119,109,100,99,98,111,117,109,98,111,114,109,103,105,94,108,104,117,101,112,102,108,106,105,107,94,103,106,104,95,101,97,99,109,97,90,100,90,99,105,87,101,107,94,106,112,101,107,95,92,93,84,104,113,100,99,108,104,96,108,104,96,100,105,108,104,103,104,106,111,103,108,101,105,98,100,100,100,91,103,99,98,99,102,109,104,108,97,101,104,100,107,95,100,97,100,88,93,101,108,98,95,94,108,101,99,97,114,105,97,103,103,102,110,105,89,109,106,94,98,100,98,94,111,96,105,106,95,98,103,110,113,121,107,97,104,105,108,96,106,100,108,109,103,116,110,96,108,107,102,102,110,97,108,113,99,112,118,105,101,109,108,103,104,110,126,96,100,104,109,105,117,92,100,99,92,104,107,99,104,94,112,96,118,110,102,117,98,110,102,103,105,87,101,72,111,104,96,102,109,104,94,98,101,105,107,106,103,99,101,100,103,96,106,107,112,104,109,100,95,104,92,95,102,104,107,113,99,110,112,103,98,104,92,100,117,94,109,103,98,103,126,110,105,110,108,106,106,112,110,101,104,100,110,113,100,103,123,97,103,107,94,104,107,106,100,108,100,104,104,105,83,105,109,113,110,101,113,102,99,101,109,100,100,107,108,105,98,124,104,96,114,100,103,91,96,101,106,106,107,95,115,121,105,104,104,104,99,102,100,101,105,108,112,112,105,103,103,122,99,108,109,104,114,108,113,108,105,107,106,110,107,76,102,105,113,103,105,108,109,113,111,95,96,86,92,102,98,111,113,108,104,97,110,94,112,98,112,103,105,100,114,104,110,101,101,109,105,103,105,113,95,99,112,121,110,104,108,100,104,94,89,108,107,109,110,101,101,103,114,98,110,118,109,107,99,107,110,106,105,109,118,100,94,104,100,105,102,102,96,96,98,107,97,110,109,109,83,105,95,107,87,96,97,108,104,113,99,110,110,113,102,100,104,125,106,117,101,99,100,97,100,101,116,98,113,87,100,102,107,98,101,104,99,104,109,96,111,113,109,103,104,110,105,99,101,108,102,106,110,95,93,102,89,98,109,108,109,107,104,105,105,96,96,108,118,103,102,97,109,99,104,104,97,99,100,116,111,97,100,118,103,103,107,103,94,103,99,117,102,102,114,94,101,101,91,98,102,120,113,114,106,101,107,105,113,109,102,106,102,100,97,103,99,108,106,103,91,106,103,104,100,99,106,102,115,100,100,98,102,110,113,96,110,100,107,104,111,104,100,109,110,110,102,93,103,98,101,113,95,104,113,112,112,103,106,102,108,108,111,110,102,93,99,108,100,100,93,113,105,136,94,102,98,113,99,99,105,119,96,103,106,100,95,106,98,95,98,113,115,91,105,92,111,94,108,120,100,109,115,114,100,102,104,116,117,98,103,102,99,99,104,103,106,116,105,102,115,101,109,100,103,107,101,106,94,117,109,108,105,99,114,99,103,80,115,110,103,106,121,107,108,112,98,105,108,112,111,104,104,103,105,116,107,120,103,104,108,122,114,105,116,104,109,111,106,105,103,105,106,108,101,119,103,98,91,98,104,113,103,98,105,98,100,108,96,94,105,104,92,96,105,107,104,103,106,108,111,116,97,106,108,104,101,116,95,102,104,98,110,98,114,98,96,90,111,102,104,101,99,90,100,98,93,97,110,105,103,108,105,107,98,105,97,92,92,112,99,105,91,113,102,108,97,99,99,116,102,119,107,108,102,115,101,104,103,111,110,110,114,104,109,113,96,112,97,110,107,108,84,113,102,103,100,116,106,106,110,103,112,103,99,101,109,104,99,88,102,97,110,109,109,113,104,113,107,101,101,105,86,98,88,109,112,103,110,109,106,100,112,104,100,113,112,99,109,113,106,95,101,108,101,99,107,104,105,89,105,105,108,97,107,109,122,101,115,101,114,99,92,98,103,102,104,103,102,99,95,99,108,107,92,111,104,104,93,100,96,94,95,107,91,109,95,104,108,101,106,96,109,104,99,101,107,111,95,84,92,94,108,109,87,101,104,107,98,87,110,99,102,100,114,108,100,102,97,84,100,103,115,108,108,92,62,101,107,101,95,95,88,90,104,110,102,99,106,113,103,96,104,94,106,98,103,112,101,104,107,105,113,113,103,102,105,105,98,107,107,101,96,104,105,104,108,103,102,102,109,112,112,107,97,100,128,115,101,108,106,100,108,107,98,116,108,104,106,109,97,96,94,97,115,98,96,114,102,100,97,92,99,113,103,93,96,108,101,92,99,104,109,128,107,99,101,111,111,107,99,94,97,109,103,98,97,96,104,107,99,108,112,104,102,98,108,121,101,115,104,110,109,101,97,96,111,106,103,105,99,97,104,106,96,116,101,114,113,111,100,115,107,81,112,103,109,108,94,102,95,113,108,100,111,102,105,103,104,112,107,100,108,91,108,109,103,106,100,108,107,105,96,112,93,116,103,97,100,96,101,105,107,107,114,94,112,92,133,98,122,104,100,98,107,106,98,99,111,108,113,100,102,105,108,107,100,104,99,110,96,113,108,115,69,111,91,109,107,106,113,94,101,101,109,108,105,103,101,109,101,105,91,110,107,111,99,106,106,113,95,95,95,106,109,82,113,120,105,92,108,97,107,105,106,115,107,102,83,105,99,106,93,108,106,101,112,100,98,79,96,105,104,102,101,103,104,109,116,105,109,112,113,101,101,112,108,96,118,98,94,100,100,103,111,113,112,92,98,96,104,108,95,97,103,79,100,110,106,83,95,96,88,102,99,96,96,100,103,104,92,106,102,91,111,116,108,95,114,81,105,112,101,81,105,105,113,123,95,110,101,97,112,106,105,107,102,101,91,99,111,101,105,105,95,113,108,106,103,108,100,110,102,112,106,106,94,96,112,105,108,114,101,105,107,90,103,100,107,104,109,102,99,112,99,98,95,99,98,105,108,103,104,96,97,104,102,107,109,111,109,108,102,106,99,121,102,112,101,109,109,93,96,102,99,100,105,95,95,97,102,116,106,101,94,98,112,104,113,105,100,100,106,104,118,98,96,113,102,101,98,93,99,99,102,95,102,105,98,95,98,99,104,100,94,104,113,99,90,105,86,119,108,105,102,117,114,97,99,110,106,106,111,101,100,96,119,99,110,104,99,107,104,113,109,102,112,105,108,99,106,95,109,102,102,104,103,99,100,99,107,84,98,99,97,99,110,106,105,106,94,100,100,95,110,105,96,116,102,86,109,97,103,109,97,91,110,116,105,100,111,95,97,115,90,102,101,112,92,103,109,109,106,105,118,91,109,96,104,124,99,106,99,107,95,104,91,101,110,107,98,107,90,102,117,116,104,112,118,102,99,99,100,112,99,118,102,100,100,107,100,87,98,102,96,103,90,100,105,105,100,110,97,109,103,105,111,101,93,103,102,87,108,101,107,106,121,115,109,99,110,112,107,95,107,103,94,95,99,112,105,89,97,99,94,103,100,93,116,109,123,101,99,111,116,111,89,91,100,91,110,108,104,93,91,106,103,107,87,101,98,96,93,111,101,105,97,104,95,111,106,91,100,105,108,103,110,105,114,107,106,116,103,95,107,95,116,98,121,105,99,106,101,95,107,105,103,111,98,95,110,100,106,102,114,100,98,93,98,97,113,102,107,109,109,104,97,99,107,107,121,108,111,98,99,113,75,114,114,112,102,108,108,106,110,113,103,98,106,96,101,98,107,97,107,110,114,99,99,87,107,110,125,96,100,111,111,99,99,99,87,93,99,99,115,101,104,90,101,95,114,93,94,89,122,110,95,98,106,98,92,123,112,98,108,119,104,98,105,105,110,123,108,102,99,98,97,100,109,106,69,97,101,92,103,105,117,107,102,105,98,73,103,103,102,98,101,102,106,74,101,97,104,105,95,95,114,110,108,97,102,104,107,111,91,104,109,105,115,100,104,104,105,108,101,100,110,102,100,92,113,106,107,100,104,110,96,108,108,104,100,95,117,101,125,103,105,106,104,104,102,101,109,116,111,102,100,110,116,103,98,116,96,98,102,94,115,85,126,97,102,112,109,102,105,91,100,97,98,110,102,95,112,93,120,115,95,99,104,111,101,112,95,104,106,101,95,106,96,87,106,94,99,102,103,110,65,100,107,99,100,94,106,100,93,94,102,108,103,102,101,102,99,101,102,99,100,96,99,107,87,101,110,94,90,97,96,104,94,100,96,103,102,79,110,109,110,103,102,107,101,100,106,99,105,113,99,115,106,105,96,107,90,110,100,106,101,112,118,101,95,73,94,118,91,100,99,107,105,93,102,71,96,108,98,107,95,95,99,99,116,108,113,108,104,98,104,106,106,105,99,116,95,108,88,104,100,83,75,100,106,109,98,104,100,90,98,97,120,106,109,96,112,101,105,109,103,113,112,94,103,112,97,107,90,109,94,97,106,98,88,104,99,107,89,100,106,102,113,95,103,94,113,89,89,108,104,96,93,120,93,107,99,96,101,99,100,110,113,110,94,112,94,73,116,101,115,107,110,99,99, +450.85446,95,97,98,111,110,106,113,102,103,105,93,107,90,97,116,99,95,106,99,103,100,108,119,114,105,100,105,111,103,109,100,100,103,102,98,100,111,104,98,94,93,113,86,101,104,140,104,103,99,100,99,97,104,109,109,113,106,94,94,107,107,109,103,103,99,115,98,105,99,96,104,106,108,95,98,102,90,112,106,100,104,103,104,100,106,105,93,116,75,101,107,93,109,101,104,110,111,99,114,102,103,96,94,105,88,98,107,104,101,115,105,97,108,126,107,116,99,107,108,106,102,98,94,111,103,114,105,108,102,109,106,99,98,99,103,107,98,94,103,101,95,104,95,109,114,104,107,102,85,113,96,107,102,102,88,105,103,105,97,110,92,104,102,106,117,104,99,98,98,106,107,107,102,108,101,105,99,96,111,103,117,110,103,104,103,96,89,102,102,85,103,103,99,104,100,103,104,110,109,109,98,92,119,112,104,95,103,86,105,115,99,107,97,110,105,97,98,106,102,105,104,112,102,103,98,109,117,105,102,90,98,99,107,100,106,99,93,114,123,112,101,110,94,121,102,100,93,117,98,96,96,93,103,116,92,106,94,91,113,109,111,94,101,103,96,113,115,112,108,95,104,106,114,102,105,114,108,108,100,82,98,90,103,87,85,103,96,89,105,111,107,96,106,96,105,109,102,106,107,104,98,102,100,105,101,103,110,106,105,102,118,109,112,114,110,98,113,99,81,109,95,95,108,102,99,100,106,104,103,102,106,100,108,73,106,117,110,105,110,109,105,106,99,101,95,110,106,116,114,108,118,110,105,106,110,94,104,105,95,109,100,97,98,100,100,107,101,111,100,114,107,108,118,100,106,119,104,108,102,106,110,104,106,101,103,99,108,116,110,103,113,113,90,99,107,104,103,117,101,107,98,103,96,91,104,103,107,102,108,100,102,104,102,102,108,98,120,102,111,103,101,108,107,113,112,100,112,106,107,113,105,113,107,106,100,110,107,113,99,104,118,99,99,95,100,79,99,113,95,112,111,108,97,112,102,98,98,105,113,104,110,101,100,106,105,101,98,107,96,101,112,88,117,113,107,107,91,114,100,110,103,94,118,97,99,100,112,95,112,108,105,103,116,110,98,107,97,94,116,109,97,101,103,96,110,99,94,105,103,117,105,112,97,101,107,101,112,104,103,104,82,106,102,98,118,91,113,110,108,103,100,106,94,107,112,99,102,102,117,111,109,104,102,97,103,107,106,94,111,107,106,111,106,99,97,96,111,113,101,109,111,106,113,109,104,97,122,114,113,110,93,95,100,110,101,103,99,102,102,101,114,101,96,98,99,97,112,109,108,106,113,107,104,108,110,111,105,99,111,98,111,110,109,117,98,97,103,98,117,100,98,95,102,106,100,114,105,108,117,100,113,111,100,100,104,105,106,109,107,102,103,104,114,110,93,112,109,91,108,109,84,101,92,95,99,98,95,103,110,112,97,109,100,109,83,113,118,109,107,107,108,100,99,119,107,114,113,104,96,92,102,101,100,90,104,107,103,103,111,95,104,109,118,101,110,98,99,103,112,111,96,109,103,125,106,106,108,103,114,95,108,86,105,100,95,119,102,97,98,114,98,105,105,106,105,112,105,98,115,99,109,109,99,112,101,98,95,105,103,115,113,100,108,85,94,98,106,107,112,96,113,108,99,104,113,106,108,108,99,102,109,106,100,103,87,114,91,114,98,116,102,100,98,108,96,106,104,105,105,103,106,105,106,107,108,114,101,108,100,104,103,116,116,108,106,92,100,104,105,109,107,109,99,106,99,109,111,107,107,105,87,108,100,114,107,113,117,115,106,114,105,101,108,92,89,104,106,101,105,106,99,103,105,95,102,110,119,109,113,106,119,105,104,105,107,116,107,117,104,107,101,106,100,109,105,102,98,107,112,96,92,105,126,101,99,100,100,109,106,104,102,112,106,106,116,110,112,104,106,105,107,112,113,103,90,104,110,102,87,100,104,108,100,115,99,116,110,107,107,100,104,124,100,94,105,100,100,103,104,122,111,102,98,104,109,101,74,110,106,104,116,111,104,105,97,103,100,106,95,102,110,86,103,119,100,105,104,99,112,114,94,109,103,115,99,106,101,106,100,111,114,100,100,111,102,120,112,104,104,99,103,104,108,105,97,106,111,90,95,106,107,98,102,105,110,101,105,98,98,114,96,96,105,106,110,98,107,100,94,101,99,99,107,85,104,114,102,105,100,98,102,104,91,105,97,96,107,102,112,116,105,110,94,98,116,110,106,112,90,101,97,87,106,103,104,104,105,95,99,103,107,105,107,101,114,108,113,105,115,96,101,107,108,96,102,96,97,117,101,98,76,124,105,109,103,110,103,102,95,103,111,121,95,92,95,110,98,99,107,91,102,103,107,106,100,97,103,118,113,102,93,122,89,105,105,106,108,103,111,97,102,97,94,84,103,109,99,100,123,101,106,87,103,94,91,111,100,107,105,102,97,98,108,110,104,99,103,102,101,101,101,108,115,108,97,103,106,111,85,103,106,108,102,108,109,112,98,105,108,107,99,106,102,97,115,105,102,113,110,103,99,98,98,104,97,85,98,104,101,96,107,96,99,95,106,99,112,96,110,101,97,96,98,105,107,89,102,109,114,106,108,95,106,106,88,104,104,98,105,100,106,99,95,110,108,108,110,105,101,101,102,113,110,106,105,106,96,107,102,109,114,103,102,95,106,108,101,103,118,104,93,111,98,106,103,106,107,108,105,104,111,109,107,117,97,104,108,104,109,102,108,116,89,105,100,101,101,91,105,105,113,93,106,91,99,98,103,100,104,106,99,109,110,97,101,105,114,122,102,105,112,95,107,107,110,109,111,107,107,101,106,110,101,113,101,93,103,109,100,94,103,110,114,110,108,98,100,102,106,113,101,107,102,94,124,99,106,104,101,98,93,105,103,122,105,104,99,106,107,113,106,111,88,117,111,106,106,102,108,103,104,98,114,98,92,95,102,114,116,109,109,70,93,108,106,117,111,97,106,100,84,92,109,99,98,107,82,102,116,99,102,99,110,91,100,92,104,119,107,100,98,113,92,119,107,83,110,102,94,106,104,112,103,106,103,110,99,99,103,104,97,105,108,102,99,92,113,99,98,96,112,113,85,108,116,114,102,98,109,107,102,116,97,110,96,93,102,106,102,96,104,100,99,102,100,99,108,103,104,97,103,101,99,108,89,108,99,102,102,106,108,107,116,110,111,97,96,107,99,103,105,98,115,100,98,98,100,109,105,104,107,106,111,72,98,105,99,87,79,109,107,101,97,101,114,108,93,95,102,102,97,99,97,105,116,107,112,109,105,122,111,109,107,75,104,101,113,97,103,108,99,101,129,101,114,101,102,103,100,89,95,107,102,111,94,97,108,95,100,107,97,93,104,96,126,96,94,109,109,109,96,102,99,102,95,111,107,101,106,107,111,109,113,102,96,109,108,109,108,109,107,100,109,99,105,101,110,93,103,104,103,104,104,96,111,99,107,109,102,108,105,81,101,101,105,101,92,87,111,103,98,105,128,104,115,102,108,106,95,109,108,105,105,105,85,102,90,87,114,115,98,96,103,93,104,90,110,106,92,108,97,112,117,106,105,105,111,97,111,101,91,111,94,106,99,99,91,102,109,96,102,103,100,109,101,97,110,95,117,101,116,105,106,107,100,111,102,105,99,102,108,105,103,112,103,105,105,101,103,115,103,106,99,96,103,100,100,99,101,110,126,103,95,67,107,110,116,107,110,108,105,101,104,113,104,100,109,108,104,90,107,110,103,100,97,103,94,97,107,97,96,119,100,111,98,126,103,99,105,106,103,105,97,105,93,110,103,97,95,104,94,97,102,98,93,73,115,109,92,113,99,69,102,105,111,102,117,96,106,103,131,100,106,102,112,112,105,105,99,99,96,98,110,89,93,97,109,97,112,106,104,101,97,125,107,112,109,101,104,91,102,99,93,107,95,102,92,106,102,101,110,100,109,109,108,103,120,103,105,98,102,106,101,89,117,104,90,95,110,117,91,110,97,100,105,101,102,104,110,104,93,106,103,106,115,98,109,101,98,108,109,94,100,104,97,100,105,99,110,110,105,99,103,109,95,119,109,104,95,103,101,94,101,100,108,108,99,112,104,101,102,98,101,97,103,93,95,102,106,96,113,101,96,103,105,94,106,96,99,97,101,108,97,100,102,102,99,111,102,81,101,86,106,103,105,105,101,107,91,95,99,97,103,106,92,103,111,99,100,95,96,100,98,111,98,105,113,99,108,100,106,102,97,100,100,104,109,110,106,99,107,102,103,97,95,109,109,104,106,93,110,109,112,107,102,81,103,108,98,91,97,100,109,100,98,100,100,107,105,100,100,94,93,103,99,108,101,96,99,101,110,109,96,99,90,99,94,107,106,93,103,103,95,128,102,99,102,111,99,104,104,112,98,101,102,107,107,121,98,95,89,98,96,90,100,95,107,96,99,95,98,106,98,105,97,101,96,110,115,114,96,81,102,101,107,101,97,100,84,105,91,107,113,101,106,99,92,97,72,94,99,102,103,103,94,106,117,101,107,102,100,103,115,126,101,108,99,103,103,87,115,92,102,102,94,103,121,99,100,103,102,105,94,103,101,102,105,96,104,97,104,105,94,101,99,105,117,100,99,105,100,108,104,116,101,104,113,108,107,107,103,103,109,106,116,98,108,103,79,99,112,107,100,116,79,97,97,113,103,97,112,95,101,115,114,99,112,101,108,110,92,101,104,100,106,101,96,91,120,83,100,105,99,95,102,109,93,107,92,106,104,108,95,101,99,104,101,110,102,85,108,100,89,91,107,102,87,108,98,111,111,105,91,96,100,94,101,110,90,101, +450.99487,82,99,100,98,88,110,111,115,103,98,105,109,103,107,103,100,103,103,110,99,92,97,108,90,93,94,109,114,109,107,120,120,99,99,95,95,100,97,99,88,100,108,99,100,96,112,105,98,97,100,97,101,83,103,94,102,110,104,99,96,110,104,95,87,96,102,102,93,92,93,101,106,105,105,101,103,82,81,108,107,101,92,117,95,99,108,107,112,108,95,111,108,99,105,96,103,95,101,100,94,91,97,96,102,86,87,105,94,106,114,101,98,115,107,108,101,92,104,105,101,99,100,108,104,109,99,108,87,113,90,114,98,94,108,94,110,100,101,98,104,96,105,100,102,100,82,101,96,105,94,96,111,103,94,79,91,100,115,100,105,96,94,102,105,103,121,91,97,101,111,86,105,88,105,103,98,96,96,109,102,100,105,97,103,98,123,101,90,109,92,101,109,100,95,104,100,106,110,123,109,106,105,93,102,105,121,103,99,111,111,108,96,97,108,96,99,118,91,98,99,104,114,112,96,103,107,104,101,102,103,99,101,109,116,108,102,103,107,107,103,117,110,107,105,91,117,99,110,103,95,106,100,105,100,112,100,101,106,94,99,104,102,99,103,92,103,117,94,105,99,99,98,129,111,97,114,89,95,117,108,108,96,106,110,100,100,117,94,105,103,102,106,95,105,91,97,102,99,100,99,95,94,95,117,110,103,76,105,95,106,87,103,110,108,106,112,104,104,94,90,105,91,108,108,97,97,94,97,116,107,107,106,93,111,103,102,110,91,99,102,105,104,119,100,112,112,99,104,91,103,112,100,98,100,102,104,104,101,98,102,107,100,84,96,91,70,101,106,103,98,105,114,99,103,98,112,106,100,97,118,105,105,89,107,104,94,98,94,103,111,101,105,94,105,100,87,83,108,108,86,105,103,104,107,105,100,98,104,109,102,94,109,109,108,104,98,100,105,110,92,101,103,100,103,117,100,108,104,102,95,116,100,105,90,98,105,107,113,110,99,105,104,94,102,98,120,97,105,118,122,109,91,106,103,102,88,107,102,96,99,104,109,105,91,96,112,117,100,101,104,113,109,101,107,113,100,103,104,100,94,98,102,107,113,123,101,94,102,103,104,98,118,101,95,90,98,101,99,99,102,111,100,89,106,107,101,97,85,101,98,109,100,98,106,111,104,100,102,104,105,107,111,88,96,99,102,106,98,112,104,84,100,112,111,94,101,104,87,98,100,121,102,106,96,112,102,118,107,93,108,73,103,101,113,108,104,109,87,93,118,78,92,93,104,105,119,106,95,95,105,98,106,113,96,99,120,111,102,103,103,103,96,108,109,96,97,106,102,105,98,103,102,106,101,110,111,101,99,104,109,96,110,99,88,130,100,102,108,98,105,113,104,98,96,100,102,104,100,100,100,108,102,111,96,112,103,102,106,93,103,106,112,93,109,100,97,96,113,111,113,100,101,106,102,96,92,94,104,107,107,106,100,112,91,103,104,102,115,99,105,104,85,93,98,113,99,103,90,112,105,103,113,115,106,73,102,99,105,121,103,107,115,104,92,92,107,101,103,109,111,104,110,90,105,101,104,103,110,94,111,95,94,108,105,99,110,107,105,96,101,98,102,101,102,108,86,113,105,92,109,97,95,98,118,96,95,110,95,102,103,97,93,87,114,92,99,100,99,109,106,103,102,114,101,103,96,93,96,99,103,107,96,107,100,109,96,108,96,103,105,108,100,112,95,106,90,93,106,90,109,112,99,109,107,110,99,101,99,108,102,114,92,117,100,101,110,108,100,100,116,101,115,83,120,105,94,85,115,100,103,97,102,99,99,118,96,106,100,98,101,99,102,98,103,107,99,115,110,103,104,94,100,104,103,88,109,113,113,103,115,95,108,107,98,99,105,112,139,105,96,102,99,115,98,93,98,92,83,104,93,99,97,113,110,97,102,106,104,103,106,106,107,100,103,97,95,108,102,106,114,94,102,75,103,107,117,112,97,108,102,108,99,108,98,93,103,103,107,96,106,107,100,76,106,104,96,103,104,110,111,96,100,92,108,98,95,101,104,131,96,106,106,98,110,83,108,100,104,104,108,103,107,89,105,100,102,95,100,110,99,105,113,110,103,93,103,108,104,100,104,111,87,104,103,98,102,104,101,87,106,113,96,108,106,110,103,97,99,100,102,103,103,116,103,119,104,97,108,99,109,93,117,107,104,95,107,120,92,92,100,104,105,101,97,99,98,113,101,106,104,95,99,95,102,91,117,104,103,108,101,102,102,97,92,105,104,95,121,105,102,101,110,98,87,104,104,115,106,97,103,97,95,98,103,108,97,99,101,95,91,99,93,106,92,105,89,109,102,104,102,92,105,108,93,101,108,107,96,98,90,94,106,104,107,103,92,99,112,98,108,98,105,104,87,112,95,91,106,102,97,117,114,101,98,98,116,114,106,91,102,95,112,95,99,103,105,105,98,120,101,100,93,102,88,94,108,94,98,106,100,113,116,106,96,110,131,100,95,102,110,96,99,109,105,107,110,101,105,111,103,102,120,106,99,106,96,104,113,116,121,104,104,108,99,105,84,99,103,99,104,97,105,99,106,114,104,110,112,104,133,100,97,110,102,115,113,103,106,110,96,109,95,110,98,118,106,110,113,107,101,105,105,102,114,88,104,113,104,101,99,102,105,111,102,105,98,106,101,108,98,95,98,111,113,102,97,105,99,104,112,101,91,121,93,83,116,102,98,99,100,92,99,93,104,108,113,107,107,110,106,107,107,105,90,104,108,105,107,99,100,90,112,98,106,105,108,105,104,107,90,106,99,104,108,127,105,107,102,93,117,110,107,106,110,109,105,101,108,104,117,103,107,94,101,109,106,114,100,100,102,104,114,100,117,111,74,109,110,115,102,122,98,106,109,112,120,103,100,113,116,106,124,103,102,98,110,106,102,107,107,103,102,101,106,107,108,99,106,96,109,105,111,115,112,110,111,110,111,107,100,104,116,110,103,99,106,114,98,110,105,95,100,96,104,105,97,101,107,117,111,107,72,129,99,109,98,103,111,114,104,106,109,101,106,111,101,95,118,117,83,109,119,110,93,100,100,105,106,96,96,97,103,95,108,101,102,109,93,105,108,97,109,91,106,100,103,111,94,105,97,99,87,99,110,96,94,103,104,105,94,79,101,104,108,98,85,118,94,111,99,94,102,103,102,100,83,108,112,101,75,109,112,108,104,105,104,96,97,109,100,108,95,119,102,88,109,96,101,117,108,100,110,113,101,99,109,104,105,105,110,103,98,97,100,113,99,101,90,109,86,74,103,100,101,109,106,108,98,99,107,105,108,105,110,98,125,107,103,102,106,109,112,103,111,95,112,99,96,113,94,102,100,91,121,104,102,109,108,105,96,98,97,104,101,109,99,104,108,88,99,111,95,112,87,100,105,108,114,103,103,101,109,87,109,105,106,92,97,102,105,113,112,105,105,111,108,110,101,106,100,101,101,110,103,109,101,104,104,105,102,116,96,98,108,91,108,104,116,101,107,106,101,100,103,112,99,93,106,102,113,103,105,102,104,98,96,106,103,94,99,97,94,97,102,100,91,109,100,101,98,102,105,108,83,106,102,103,109,115,84,107,100,109,107,124,121,97,87,104,101,103,102,103,101,109,102,111,111,103,106,102,99,105,87,102,103,94,100,116,94,110,109,111,123,114,109,107,109,102,99,88,103,98,96,117,101,95,98,113,106,113,101,98,93,111,103,114,104,107,101,105,93,95,88,102,99,92,112,97,119,105,111,106,110,112,112,98,102,96,114,111,108,107,109,102,117,101,106,99,103,116,120,99,109,106,92,97,109,94,109,101,116,104,106,107,102,100,110,99,75,100,90,108,99,103,92,109,115,93,112,106,98,113,102,102,91,107,104,86,101,112,104,109,106,88,109,99,104,106,92,98,117,113,80,103,109,118,105,104,109,109,99,105,109,93,111,107,97,105,106,98,96,106,107,104,91,104,103,100,110,105,144,96,94,111,100,113,99,100,109,107,100,86,102,109,97,114,100,105,100,101,102,104,111,91,101,80,99,103,104,102,101,99,92,107,105,93,100,100,109,100,93,105,100,103,109,103,113,85,101,106,98,101,105,100,105,102,104,97,102,108,90,88,93,111,96,102,98,112,99,111,100,94,104,99,110,97,101,107,101,109,109,95,93,109,116,108,100,110,115,104,98,102,104,99,91,105,100,106,111,83,99,106,106,94,111,86,109,107,108,102,104,98,105,100,98,107,109,103,112,92,107,109,95,91,97,102,106,104,108,90,106,98,102,102,99,101,104,119,108,103,102,105,106,93,104,112,105,100,114,106,94,114,105,107,105,117,109,107,109,103,102,103,109,98,107,102,100,107,107,94,98,101,95,110,110,103,100,97,97,116,109,104,97,104,96,99,95,104,107,105,102,110,105,106,97,114,111,112,106,105,97,119,114,103,104,92,98,103,91,102,96,100,99,90,100,101,108,114,104,105,101,97,116,96,105,110,110,108,102,97,98,102,96,103,111,107,98,104,104,103,102,102,128,107,113,119,104,98,102,95,91,106,105,111,95,92,109,106,93,92,100,98,97,96,96,102,93,117,107,99,92,105,100,98,97,106,96,110,96,99,107,107,103,93,99,104,107,101,112,101,102,104,118,105,110,109,113,126,103,99,100,109,104,103,113,107,109,113,92,102,102,101,108,97,104,102,103,106,95,101,88,106,90,105,107,110,116,104,117,100,97,109,105,106,104,101,110,104,104,108,88,109,98,108,102,101,106,107,125,102,103,99,98,91,106,107,98,96,104,97,114,96,75,91,116,102,101,90,101,93,110,102,105,104,101,107,113,97,100,97,103,91,107,104,104,104,89,89,97, +451.13525,100,75,102,100,70,106,94,99,96,97,117,99,106,96,87,100,103,105,106,112,91,116,100,106,82,112,99,108,99,103,87,79,103,97,103,105,109,88,90,100,113,99,100,103,113,113,109,112,106,102,99,94,104,113,94,95,102,98,121,101,110,109,102,108,98,107,104,102,94,97,106,95,113,99,92,99,94,101,115,91,94,98,112,102,102,89,105,96,106,88,110,103,105,101,100,96,102,91,99,102,110,101,99,99,96,98,98,100,100,100,107,107,103,94,105,92,114,101,119,125,99,94,110,113,99,97,95,96,112,95,102,111,99,105,102,109,92,102,97,109,95,101,92,104,101,110,113,95,96,95,88,101,109,102,95,95,99,92,111,106,92,101,99,101,107,106,105,92,101,101,111,103,102,99,97,98,84,102,99,100,117,107,100,101,104,121,99,98,95,97,108,95,96,110,103,110,95,104,102,104,106,95,97,108,117,99,95,113,112,109,110,105,99,97,105,114,98,111,106,110,113,101,99,79,101,104,100,100,109,100,97,100,103,87,107,95,114,103,104,113,107,104,107,106,92,104,99,99,103,109,105,108,96,108,103,99,104,103,86,101,95,102,96,106,91,99,104,99,98,97,101,103,98,107,106,117,91,111,112,103,106,103,110,102,101,95,105,96,77,106,104,100,100,105,99,104,105,103,97,101,104,108,101,128,98,113,105,109,102,105,99,102,109,107,106,106,109,91,105,106,88,99,110,119,100,105,113,105,102,113,114,94,110,99,103,104,109,107,103,97,105,102,87,98,103,104,103,102,98,103,105,103,112,108,94,101,92,95,112,118,96,112,106,109,96,110,103,110,106,105,104,103,112,107,105,107,127,109,94,104,105,131,104,118,103,81,102,100,106,100,112,101,101,104,105,85,113,133,95,104,112,100,116,95,101,102,105,108,99,104,109,95,113,102,102,103,104,108,103,102,99,91,96,103,103,95,99,99,107,103,103,91,113,107,102,110,102,98,100,98,96,95,85,97,98,109,115,106,100,115,105,106,106,103,113,106,105,105,102,112,105,106,99,108,115,110,107,97,112,102,94,86,101,98,93,97,115,107,112,105,111,111,109,104,94,105,97,110,101,109,110,107,100,104,100,107,103,104,103,104,110,94,113,118,100,108,100,98,120,96,113,109,110,104,110,107,101,101,106,104,100,107,102,104,109,105,117,105,102,98,88,106,92,104,99,105,108,95,100,112,94,108,108,97,107,104,96,97,110,100,104,108,112,108,101,84,109,76,101,95,115,103,116,98,82,100,110,108,104,102,95,100,96,95,102,96,104,99,93,110,107,99,97,106,113,99,117,100,98,111,112,114,99,94,116,112,107,105,104,116,99,112,88,98,105,99,94,99,92,95,104,109,95,98,104,97,103,101,98,101,92,108,110,105,117,113,88,105,109,105,113,106,96,111,99,102,114,76,110,109,113,109,113,90,113,111,103,96,110,123,108,107,109,105,114,114,101,102,109,103,113,108,95,105,102,94,106,108,118,109,112,102,120,103,105,102,104,91,110,103,101,107,107,99,97,105,90,112,105,101,95,102,90,99,103,106,101,102,99,96,114,101,95,118,99,118,105,110,97,90,116,101,101,101,95,108,103,102,103,106,107,113,99,107,102,100,103,95,108,115,115,107,104,112,102,93,94,100,117,101,95,88,106,97,95,109,105,111,99,102,108,109,105,104,106,94,107,102,115,95,109,96,103,103,95,109,87,108,95,104,103,118,106,94,102,104,108,92,101,93,102,100,104,122,100,106,91,103,104,107,104,99,114,107,100,101,85,115,98,79,120,91,96,108,99,106,103,103,112,101,114,106,100,110,97,99,110,105,106,101,113,109,92,94,104,106,102,102,121,107,100,104,99,108,113,112,106,107,102,114,101,104,105,104,96,101,110,100,106,100,96,99,112,100,100,106,109,102,95,104,109,95,105,101,95,92,106,101,108,121,110,116,117,98,98,95,103,99,97,104,101,111,95,108,106,97,114,116,96,107,100,103,99,99,101,96,104,100,92,104,111,115,114,108,122,105,99,108,96,94,107,101,119,114,110,96,98,87,99,126,103,121,106,99,103,100,108,84,111,104,99,114,96,99,103,113,97,115,100,94,109,103,105,101,119,114,97,102,100,100,86,104,119,108,104,111,100,105,97,115,108,98,104,102,111,95,104,104,101,97,99,106,119,98,129,107,101,103,111,99,96,102,99,107,104,113,87,101,105,95,107,103,99,101,97,94,95,97,96,112,106,101,91,98,103,107,99,95,109,100,108,94,118,120,114,95,107,100,87,88,107,103,111,103,119,103,101,105,117,122,109,100,103,97,98,97,109,116,99,108,110,104,98,89,89,103,98,115,99,106,97,113,100,109,93,107,99,103,112,101,107,98,96,106,114,101,97,95,105,106,90,104,96,94,91,102,98,98,98,88,108,105,88,90,103,106,104,122,98,72,94,106,111,100,103,109,107,123,117,107,113,101,106,105,106,107,104,109,105,108,107,109,105,100,102,96,100,96,92,109,112,108,103,100,106,96,101,113,108,123,127,96,113,92,110,100,103,109,103,93,103,89,107,78,108,97,100,105,127,88,107,108,106,100,94,104,104,111,82,105,96,85,94,100,110,103,109,105,102,95,106,102,111,113,120,107,95,101,114,104,91,105,96,107,109,108,109,108,104,135,104,107,104,101,101,94,106,98,99,91,93,108,103,101,103,94,104,103,103,111,111,107,95,103,99,98,110,115,96,90,108,108,100,110,103,97,105,93,119,113,94,105,105,122,110,101,96,105,105,116,113,106,112,108,101,99,109,108,98,120,114,95,109,104,105,112,112,120,103,120,101,105,98,110,114,102,80,96,106,113,104,112,97,102,102,106,116,101,103,110,100,109,108,96,101,109,101,113,112,108,107,100,101,108,95,107,101,97,101,111,102,110,100,105,93,91,115,114,109,103,87,101,103,98,100,114,100,109,98,108,111,110,98,111,98,98,87,110,92,109,97,97,101,112,110,105,112,104,95,110,100,113,94,86,112,87,104,96,121,112,107,102,102,108,105,102,99,100,106,109,107,120,117,106,107,95,127,84,109,108,108,99,121,110,102,96,106,107,101,108,109,93,109,109,105,109,105,118,92,102,106,105,76,107,112,106,101,113,102,126,108,79,100,112,113,103,115,102,90,95,89,100,105,108,110,94,101,103,104,112,116,98,97,99,118,107,115,108,116,99,116,107,103,101,117,99,105,112,109,105,105,99,113,95,88,107,89,102,108,94,107,91,107,108,92,91,108,105,103,118,100,111,118,101,99,103,97,90,96,113,109,104,102,102,103,115,111,115,112,100,104,113,115,87,107,93,95,107,104,115,102,98,99,109,104,101,101,111,112,109,102,113,107,110,96,100,107,81,103,114,119,109,90,92,102,95,98,110,106,102,100,107,119,116,91,96,99,99,101,96,106,99,108,107,113,106,113,89,78,114,108,104,88,113,103,107,117,97,105,102,111,104,99,112,88,99,97,109,114,108,98,95,96,113,128,109,103,110,117,111,117,108,99,102,105,103,110,101,101,113,95,106,101,113,107,104,110,99,97,102,103,98,117,100,108,105,111,112,107,91,97,105,109,127,106,103,103,107,107,102,105,109,117,116,96,100,102,107,114,113,110,111,99,109,106,98,106,105,102,104,75,96,110,107,102,100,109,98,98,98,104,107,112,107,101,87,102,111,108,102,107,103,109,92,101,109,100,99,100,108,106,99,115,106,118,107,97,99,110,104,105,105,102,110,100,100,107,109,106,99,98,110,94,95,110,107,91,95,109,103,110,108,103,100,109,106,110,113,106,118,105,102,100,104,117,113,122,111,101,115,116,100,101,90,104,109,98,107,108,95,109,110,105,106,104,106,101,106,120,98,115,103,104,103,101,97,119,106,105,70,104,103,103,117,101,112,98,118,116,102,102,113,104,106,106,125,104,97,91,111,104,112,100,112,100,109,99,106,104,104,106,112,107,108,110,115,102,98,105,110,121,104,108,106,114,107,110,109,104,101,92,105,101,103,94,108,96,124,100,110,104,102,109,111,108,116,100,107,101,112,104,110,109,106,91,114,105,77,101,97,87,95,99,98,99,104,106,139,100,108,106,105,95,91,103,106,110,92,105,113,111,116,101,108,111,125,94,109,110,91,104,100,95,99,102,113,100,102,109,104,111,97,114,101,100,109,118,108,103,98,103,102,109,109,101,110,100,96,115,105,108,85,107,100,100,108,108,98,106,104,113,107,108,113,95,106,101,102,66,109,90,114,113,104,120,96,101,99,122,112,103,107,90,109,96,104,115,118,100,96,100,94,93,105,102,110,102,106,100,100,100,109,112,109,99,109,101,111,107,107,90,94,96,93,100,106,109,112,108,109,113,118,102,101,93,107,105,105,110,113,100,108,100,102,109,114,109,108,105,112,102,93,105,105,97,113,107,108,106,95,99,97,96,113,75,100,102,103,99,112,103,103,106,98,112,108,109,93,97,90,104,95,98,107,109,107,102,93,113,103,109,109,83,117,103,98,95,117,103,113,117,82,111,107,105,117,101,92,110,108,120,101,107,104,90,126,110,98,94,116,82,103,108,106,109,108,105,95,100,100,109,99,104,86,103,96,107,100,104,90,118,96,103,110,101,94,102,102,98,107,115,105,110,105,125,99,105,103,101,108,105,106,114,101,105,101,111,103,111,103,107,92,87,102,96,105,102,105,107,88,94,97,110,113,107,117,100,103,115,100,108,118,97,93,97,105,141,129,104,109,108,103,98,89,105,100,106,103,76,103,106,105,114,101,105,88,98,98,91,85,97,115,116,89,105,104,112,101,100,94,105,99,109,93,95,103,114,113,103,103, +451.27567,99,92,71,110,97,98,104,104,84,107,79,101,96,103,104,101,105,108,107,99,106,100,107,110,104,95,96,90,92,116,107,106,93,100,100,97,111,105,103,121,106,90,100,102,102,94,93,102,96,117,99,96,103,80,110,93,94,87,109,94,121,98,111,99,103,97,98,100,109,103,116,115,96,104,97,105,103,92,102,120,100,114,93,99,92,98,96,93,113,103,104,103,100,99,101,104,100,104,102,98,95,104,106,103,110,100,112,110,98,98,100,95,105,104,102,85,99,87,93,97,91,101,95,98,95,100,114,84,117,91,110,103,95,90,98,97,95,96,103,118,98,103,95,94,98,94,91,102,88,105,89,100,96,110,93,84,86,95,98,100,89,97,111,103,119,99,105,104,99,100,103,99,113,100,112,106,110,101,96,98,98,91,89,109,98,99,108,98,108,98,104,108,69,115,114,107,101,98,104,100,110,100,108,114,101,104,105,85,116,117,99,111,107,102,106,96,90,109,98,107,98,101,90,98,109,100,103,100,97,97,104,112,96,102,114,111,91,92,96,108,107,102,112,96,87,99,112,95,92,108,99,109,93,107,102,109,103,107,102,109,94,106,107,108,86,104,112,91,101,104,104,101,109,100,104,113,112,100,97,102,87,99,99,110,106,106,88,106,107,103,102,110,103,104,92,97,103,108,90,96,107,102,93,111,102,107,105,104,107,117,105,95,97,110,106,91,98,106,105,98,100,105,101,114,101,99,99,96,125,105,109,98,104,104,100,106,107,99,92,109,99,107,107,103,98,114,119,97,107,92,94,99,98,113,98,107,103,96,90,102,104,109,103,114,95,94,99,90,112,103,108,113,104,108,111,118,102,98,105,106,100,92,77,108,106,91,102,110,108,87,112,100,109,109,86,108,104,98,118,106,111,96,99,93,103,97,99,107,111,102,95,100,109,131,109,101,99,97,101,95,96,109,97,100,111,110,105,90,101,100,98,109,95,105,98,108,99,104,102,99,100,94,115,95,98,107,91,100,98,127,79,96,102,96,103,103,109,95,105,103,118,105,100,104,110,117,105,90,100,97,105,105,103,103,104,98,104,102,105,99,83,109,112,105,113,103,109,98,101,106,98,107,112,108,94,107,95,104,108,102,115,101,104,102,100,100,96,113,88,98,104,106,90,94,84,107,106,111,107,96,104,104,93,113,93,99,89,99,95,101,91,110,101,99,103,113,103,112,94,107,89,106,94,106,106,106,114,105,89,93,100,103,117,109,102,101,112,88,107,95,99,110,113,101,108,81,105,101,104,100,97,98,105,134,107,91,99,103,100,112,113,114,102,105,98,95,107,110,100,91,116,98,101,88,102,103,103,101,101,101,98,110,96,109,99,110,106,106,94,103,108,122,105,101,101,95,102,101,105,106,111,102,112,106,98,80,111,95,116,109,127,97,101,115,102,96,103,100,108,96,94,120,93,98,106,98,103,109,99,104,90,106,102,97,108,99,110,103,89,100,99,105,99,117,97,95,108,94,102,68,103,104,108,109,104,110,119,95,109,101,104,92,103,94,98,105,104,96,111,105,118,110,106,116,107,106,89,98,105,91,100,95,98,96,104,118,97,108,106,70,106,99,100,91,94,118,103,92,110,105,91,105,105,113,85,104,111,101,102,104,96,104,95,98,103,88,107,92,111,81,111,106,102,100,109,106,96,106,100,104,128,106,93,111,112,105,106,105,89,108,106,107,98,77,93,107,96,94,101,91,86,107,112,103,106,104,109,103,94,109,102,99,109,106,89,106,90,106,109,106,111,104,100,114,97,99,103,108,103,109,99,113,103,92,113,95,103,114,99,92,123,94,94,104,120,105,100,97,117,98,107,102,109,103,91,104,84,96,109,104,107,109,101,102,113,105,99,101,96,95,106,111,100,106,101,91,103,96,101,104,108,92,100,98,89,106,101,103,100,118,109,103,90,100,116,112,107,99,106,105,106,106,99,104,103,107,102,96,102,98,98,96,98,98,100,104,104,111,117,109,92,117,105,113,106,105,103,95,110,96,122,109,111,95,98,97,100,91,101,101,97,87,97,94,103,99,101,102,94,113,100,108,101,100,106,106,100,109,103,108,92,100,114,108,103,97,94,99,109,109,92,112,114,108,103,90,102,109,100,106,100,107,102,102,106,105,97,105,98,107,103,104,75,92,101,102,115,101,105,100,100,100,112,95,88,108,102,106,94,106,103,101,104,99,119,109,92,93,105,94,121,97,97,86,109,99,99,101,103,97,106,99,108,109,95,102,105,96,101,106,101,106,99,96,97,102,104,98,91,95,108,92,99,96,71,104,116,103,96,96,105,92,111,90,105,99,95,114,114,103,97,96,105,96,92,94,100,98,103,102,95,89,107,101,105,106,97,106,114,102,103,113,113,99,103,116,105,91,101,105,103,102,105,98,105,99,110,98,103,94,91,110,108,104,104,104,103,83,111,111,101,77,111,105,87,111,106,109,109,98,101,102,110,102,98,107,90,89,80,102,117,107,109,100,105,113,105,104,97,105,98,100,105,108,91,113,110,116,106,106,109,98,106,85,100,105,96,92,107,98,99,108,97,106,106,98,115,95,80,102,102,104,106,102,101,108,108,103,108,110,109,99,99,102,100,103,104,101,109,100,104,104,94,106,94,106,98,95,84,108,107,90,108,106,108,98,109,96,100,101,100,98,101,97,97,106,105,103,98,107,93,92,106,99,106,96,98,99,112,110,97,104,100,130,106,106,105,112,106,109,113,105,100,93,102,90,104,109,108,110,98,106,109,100,100,99,111,99,100,102,106,104,113,91,98,113,100,102,92,101,99,90,114,102,96,103,101,102,102,108,107,101,109,107,126,102,115,105,94,109,114,102,98,113,106,108,93,103,101,110,103,109,107,104,99,95,97,98,116,111,95,105,100,110,99,102,90,91,105,108,108,103,107,115,101,99,109,98,102,93,96,107,113,106,121,97,102,112,101,111,91,104,125,111,104,98,102,106,113,104,110,101,106,113,112,104,104,101,100,109,105,115,125,97,109,114,101,108,84,99,95,104,92,103,101,103,106,104,94,96,128,110,105,99,110,101,101,106,90,90,108,107,112,103,112,106,93,91,105,99,108,104,92,100,102,104,101,106,101,96,89,99,100,107,109,108,96,83,109,76,113,88,87,109,81,111,107,79,101,70,102,103,108,95,105,94,92,99,104,118,104,104,96,107,97,107,106,107,81,106,103,108,108,109,100,109,117,100,113,98,95,104,108,101,103,98,107,92,107,94,107,103,107,101,101,82,108,109,104,101,101,108,105,99,108,128,98,98,101,105,101,110,96,102,99,109,124,108,110,87,101,106,104,100,104,103,101,106,100,110,83,99,100,109,106,109,101,110,111,102,106,99,98,88,92,100,106,92,102,107,109,100,80,88,113,104,95,91,104,74,107,116,108,96,108,107,109,99,105,101,116,111,103,93,97,100,122,89,113,98,108,96,109,104,104,105,114,115,96,102,111,95,110,86,93,115,113,103,107,101,90,103,113,92,103,96,95,94,102,105,103,112,105,103,95,98,103,107,113,96,107,94,96,97,102,99,109,102,111,105,91,101,106,98,103,97,107,104,109,109,92,94,116,97,89,101,103,88,111,96,113,92,89,112,101,88,112,108,101,102,99,108,96,110,99,132,93,102,103,93,95,96,98,103,112,109,96,111,102,111,101,96,106,112,108,97,112,101,116,98,90,101,105,91,105,101,100,95,100,100,105,88,96,101,101,97,106,107,99,100,103,108,121,99,103,100,86,98,113,91,109,107,107,98,102,74,104,91,92,111,103,107,99,98,99,113,100,105,97,96,105,92,87,114,104,109,90,86,96,106,98,94,98,92,128,102,115,98,104,98,114,94,109,106,90,84,112,105,104,105,110,106,108,107,100,100,108,94,100,98,101,105,102,82,96,104,114,108,106,123,111,105,101,100,111,104,100,97,92,92,87,105,94,93,101,88,103,104,95,102,100,108,91,102,94,103,104,100,114,108,108,99,104,106,104,99,107,98,104,102,93,101,106,104,99,100,105,104,107,98,114,104,107,97,105,115,87,90,94,104,106,95,100,105,97,104,95,101,103,96,99,110,95,116,110,104,102,106,114,105,95,117,105,104,93,109,102,94,114,97,101,113,114,99,101,113,97,111,105,92,93,96,101,107,104,110,103,95,100,100,99,101,113,102,104,103,104,113,99,77,92,89,111,101,117,101,90,93,96,98,90,109,110,97,109,91,97,98,93,111,104,96,96,107,91,104,91,76,99,113,101,75,105,95,102,103,91,111,98,102,96,91,112,98,99,98,96,108,103,110,99,94,96,96,97,103,106,104,97,112,104,113,109,105,87,108,105,98,107,88,108,86,105,95,110,114,97,98,103,95,95,86,91,93,102,94,101,100,105,100,105,103,90,108,96,97,111,102,105,106,97,89,102,95,96,98,106,102,101,103,93,110,106,100,102,95,116,102,96,105,97,99,81,103,95,103,113,114,79,102,104,106,117,106,105,97,94,99,99,95,92,105,98,101,108,105,106,106,87,99,103,96,105,108,89,101,117,115,95,100,97,110,99,99,102,102,98,111,98,100,65,102,97,106,110,104,100,109,102,110,103,97,97,115,107,97,98,108,101,99,104,105,107,99,96,87,89,94,104,101,87,98,112,95,104,97,105,100,96,98,84,109,108,106,103,102,106,104,90,96,118,104,99,98,97,100,88,99,102,98,87,104,92,101,92,95,100,94,102,91,106,97,98,91,90,113,96,94,113,105,95,88,96,90,107,91,100,106,98,83,104,100,101,99,104,95,94,112,106,91,91,96,102,100,106,93,97,93,104,98,110,92,103,104,105,90,102,94,80,89, +451.41605,98,74,114,108,93,105,104,73,95,101,104,107,91,97,110,111,71,95,95,95,104,102,101,98,92,93,91,84,103,109,87,101,106,99,100,94,98,98,95,100,92,104,124,91,99,106,99,105,101,107,109,92,104,101,93,92,95,99,107,97,106,99,97,87,102,111,99,90,95,89,107,109,106,99,97,97,94,95,99,95,100,102,90,99,98,100,114,94,106,98,107,110,103,120,80,100,97,105,121,101,91,95,108,81,94,106,91,93,107,104,111,103,110,93,93,80,103,105,99,94,86,105,92,101,102,103,110,97,115,100,99,100,103,88,94,113,99,98,99,99,113,105,89,97,102,95,111,98,96,95,101,94,100,92,97,103,109,100,100,102,99,111,100,99,105,106,103,99,96,108,110,91,103,92,93,101,105,103,104,104,98,108,91,105,118,106,87,91,103,98,103,113,89,109,107,100,111,95,99,95,92,91,88,109,102,103,96,104,108,112,101,101,100,100,109,120,98,109,109,87,86,123,108,100,88,104,88,106,93,110,98,101,101,101,108,97,100,104,83,95,96,81,105,104,96,98,91,103,101,102,96,92,92,95,84,94,105,113,87,101,96,106,92,87,100,99,92,110,105,93,96,101,101,101,100,116,103,99,103,95,100,105,97,103,103,101,96,105,116,109,104,104,102,93,110,97,100,104,109,98,93,99,92,113,106,100,101,125,107,101,93,94,93,100,125,95,97,101,98,105,104,99,99,95,103,94,102,95,108,92,95,91,100,99,97,95,95,130,109,112,98,109,105,98,102,102,119,101,102,112,93,105,110,100,99,99,124,110,96,132,100,103,101,93,89,94,99,106,95,104,105,99,107,103,95,99,108,100,100,111,96,102,91,108,89,101,105,95,95,93,120,93,97,104,100,106,90,102,102,105,90,106,100,106,109,108,93,111,93,97,126,99,102,95,104,98,104,83,113,92,89,100,95,106,87,100,98,91,96,105,88,87,89,99,100,96,100,105,101,106,102,92,101,106,89,99,116,116,101,95,115,98,103,105,99,95,99,115,108,114,84,96,108,99,99,99,119,101,103,100,103,121,103,105,115,95,102,117,99,96,94,100,100,94,94,117,103,102,101,100,103,95,112,102,116,98,103,113,99,95,102,96,96,101,99,102,91,106,110,103,91,103,87,102,106,98,91,106,75,103,98,107,117,95,115,100,101,96,111,96,100,104,95,89,95,110,103,103,90,100,95,108,104,94,97,97,99,108,92,101,103,101,93,95,92,88,109,100,105,86,87,101,95,106,102,107,118,102,100,110,76,88,102,104,108,95,96,91,97,98,107,107,111,89,85,104,105,109,109,93,91,100,92,94,106,111,99,110,106,104,80,109,103,99,105,99,96,109,114,108,96,93,95,109,107,100,95,98,106,99,101,101,107,100,114,104,99,99,107,105,108,100,91,106,99,112,102,127,94,101,120,105,101,98,91,92,85,101,101,120,99,94,99,99,96,81,104,99,100,101,106,98,102,92,96,98,106,103,119,102,93,112,105,110,109,102,99,91,99,100,103,100,127,80,95,95,111,101,109,103,104,101,101,110,107,102,131,99,108,85,87,92,95,82,95,86,121,95,103,99,91,107,99,96,79,101,95,100,84,86,99,98,99,102,101,85,101,98,101,105,106,112,98,91,108,104,95,102,97,99,98,98,112,103,105,102,113,91,95,111,105,103,99,105,108,99,110,103,100,108,97,101,91,98,106,91,95,107,86,86,106,92,93,100,97,103,99,99,121,103,106,107,119,103,102,106,112,111,91,104,105,100,107,96,103,92,104,104,86,103,109,91,98,95,118,96,98,109,101,107,103,97,98,74,103,103,113,107,98,110,96,95,114,97,95,94,110,96,110,98,108,97,111,104,105,92,87,87,118,122,108,103,106,106,93,100,99,118,99,114,106,108,102,111,98,117,108,95,100,95,90,86,101,108,103,95,104,102,113,97,109,102,98,106,93,92,111,94,90,99,114,90,99,126,93,103,106,105,109,103,99,98,98,102,114,102,101,110,109,99,102,107,100,105,101,101,105,96,107,98,105,99,101,100,116,95,102,103,100,95,99,94,108,108,106,104,102,99,112,95,84,135,101,101,103,106,102,110,103,102,95,96,96,103,104,98,97,102,95,96,97,98,95,110,112,104,103,109,113,100,104,107,125,101,99,103,101,96,91,97,103,94,107,106,112,96,109,106,92,75,90,107,108,87,108,100,95,102,101,104,98,104,92,106,93,109,97,98,109,99,98,112,99,100,101,95,106,92,102,93,102,101,99,107,99,103,111,94,104,108,102,109,91,101,103,98,93,104,90,92,95,99,102,97,118,95,108,107,99,90,113,106,96,97,102,109,105,97,101,103,108,101,95,102,91,105,112,111,109,106,112,97,109,101,95,104,105,111,100,96,98,109,97,113,100,112,95,94,100,101,95,97,91,105,99,84,98,98,111,109,99,94,100,94,100,106,91,103,103,107,107,107,99,108,99,105,107,96,115,97,106,103,109,89,96,93,105,101,111,104,102,103,100,103,104,94,104,106,118,109,105,97,102,94,105,95,106,86,96,96,102,98,105,120,97,95,112,107,123,105,105,103,113,94,101,91,108,98,94,95,113,93,99,93,113,107,105,105,102,110,112,99,107,99,94,109,98,101,107,101,105,96,97,97,104,90,101,108,95,110,100,86,93,113,97,112,121,87,110,98,107,103,99,106,108,129,97,106,102,115,113,109,104,103,92,97,101,96,109,96,129,109,88,105,105,99,104,107,103,100,96,108,87,102,102,99,102,101,104,93,104,96,106,102,90,101,104,109,105,103,85,108,98,112,112,121,102,115,100,110,106,89,98,101,108,117,104,120,108,105,137,109,106,106,99,114,100,114,97,113,104,103,107,115,103,105,99,100,97,101,106,97,106,97,94,103,106,98,109,106,97,107,96,101,100,106,98,108,108,104,100,105,114,100,111,101,109,100,95,98,113,94,103,83,90,83,107,106,95,104,108,100,100,109,104,108,112,96,93,112,103,97,108,94,96,100,97,106,102,112,102,103,100,100,97,103,89,99,101,102,109,106,98,91,105,83,122,102,102,90,105,102,99,117,103,92,102,107,108,105,101,83,91,100,102,98,103,103,105,94,89,96,100,112,100,96,112,126,102,103,98,109,98,107,100,103,104,94,98,96,104,103,101,110,107,100,102,108,91,105,103,105,109,123,95,116,98,105,105,96,101,114,108,102,112,111,102,93,97,111,101,104,101,98,121,99,99,106,104,107,90,88,106,102,96,97,99,97,110,97,113,100,103,108,112,111,98,95,98,96,99,106,104,98,95,92,108,101,93,108,102,106,99,105,104,100,95,95,102,117,103,98,73,107,99,104,105,115,90,94,104,102,110,94,104,98,107,101,105,92,97,104,94,97,94,98,104,91,107,108,111,114,91,111,106,106,100,101,100,96,103,107,97,101,115,91,103,103,112,80,98,91,104,104,101,102,112,111,112,109,109,110,120,108,96,100,114,105,100,95,95,95,114,86,108,106,82,101,97,95,106,113,103,85,98,90,108,96,113,102,89,94,91,109,89,108,100,101,109,109,95,101,100,115,103,92,106,102,93,104,88,102,102,110,112,98,88,99,107,105,94,105,109,117,92,96,103,111,99,104,107,108,111,107,114,96,106,106,105,105,117,100,109,111,116,67,91,95,113,96,107,104,108,93,96,84,110,103,86,97,114,98,102,106,106,96,92,104,112,96,107,88,97,107,94,108,99,96,109,105,101,106,83,100,94,89,111,103,92,109,109,97,103,101,84,111,93,126,99,105,99,135,101,106,102,103,98,89,100,96,102,104,110,97,110,98,99,108,93,112,102,102,105,96,96,97,118,99,104,101,102,109,96,104,98,105,106,106,106,110,98,115,107,98,110,90,96,102,111,102,105,97,99,107,98,95,101,106,94,88,95,96,97,120,105,97,104,103,112,99,95,103,91,105,117,93,100,108,105,102,107,112,111,94,91,92,103,91,105,105,96,93,91,113,113,100,97,96,115,97,96,97,99,102,102,117,112,103,120,101,93,94,93,108,95,107,101,119,111,112,104,98,101,111,104,114,107,98,110,101,108,92,95,103,106,92,102,111,108,100,106,100,73,94,117,99,93,115,106,91,95,107,100,108,103,109,96,115,104,101,107,116,107,108,103,100,101,106,108,113,96,100,108,86,100,90,105,100,100,86,119,88,100,105,101,94,93,101,104,87,107,95,104,101,110,104,104,98,98,98,92,107,94,96,106,100,97,87,100,98,96,108,108,96,108,91,107,100,91,104,102,103,101,99,102,96,103,86,108,113,102,111,94,107,110,109,113,97,101,99,104,110,94,106,100,98,111,96,103,105,93,91,81,100,101,112,98,102,106,101,116,90,100,101,104,101,89,105,110,120,85,96,102,114,98,106,95,97,101,111,94,100,92,106,100,95,113,100,90,98,100,97,105,116,99,102,88,105,99,105,101,103,102,106,110,101,100,97,106,104,99,104,111,107,102,103,99,98,107,73,110,109,109,108,105,124,98,100,95,112,87,92,113,93,106,107,109,103,110,103,99,104,94,98,96,113,90,105,103,100,95,95,110,103,114,91,106,106,108,108,103,97,103,106,108,97,91,104,84,91,93,111,111,92,103,105,93,104,110,91,98,93,98,109,99,94,100,101,112,95,105,108,101,111,102,94,100,106,133,98,103,93,101,83,100,95,93,112,117,97,97,89,89,93,102,102,95,104,82,102,102,90,121,93,106,102,97,105,92,106,101,104,103,87,113,106,95,119,119,83,94,101,107,101,100,107,105,104,81,87,117,113,112,106,111,109,94,109,93,102,108,100,108,108,87,95,100,87,93,104, +451.55646,105,121,94,114,104,107,106,93,106,97,113,99,103,105,108,113,106,108,100,107,107,102,95,108,98,99,105,109,113,98,115,102,93,100,107,108,98,102,101,100,99,98,93,100,105,108,92,95,93,95,88,99,104,108,100,105,103,98,112,102,116,91,108,99,98,96,107,92,95,92,106,111,108,100,105,97,90,102,84,99,119,108,109,105,108,97,102,116,103,111,129,94,70,106,109,85,106,101,94,105,110,137,105,106,102,100,96,100,103,100,97,105,109,94,106,99,101,98,100,91,104,87,99,89,111,110,90,83,109,96,101,107,96,100,104,92,98,102,97,109,107,112,95,101,106,83,104,91,96,99,104,109,111,87,100,100,104,101,95,106,99,94,99,96,103,98,104,104,96,103,106,96,103,104,106,112,93,92,92,113,90,125,107,101,97,95,94,96,99,97,91,112,97,112,102,95,96,95,99,112,99,95,97,105,95,83,94,104,100,115,112,110,112,107,99,104,105,108,90,94,107,104,104,86,107,108,106,102,101,107,102,104,104,90,106,104,105,103,102,116,106,88,99,106,84,110,97,99,109,100,86,109,107,101,90,96,96,107,101,84,89,111,101,101,97,109,103,100,102,90,107,111,100,90,99,94,103,104,85,96,103,114,98,97,115,114,100,98,109,103,95,95,111,99,101,111,100,98,112,102,105,105,99,117,100,101,103,102,105,99,100,102,107,100,93,86,85,99,91,99,90,115,113,107,116,108,88,101,113,103,97,100,106,102,92,94,106,101,88,104,76,103,98,102,104,109,117,99,111,107,104,110,104,105,111,100,103,102,113,104,106,93,92,89,104,103,108,119,113,94,97,107,107,112,111,105,110,96,99,96,106,107,99,93,98,77,93,117,107,97,103,104,121,95,97,102,97,115,88,93,100,91,94,93,92,98,104,112,106,103,109,97,114,98,101,91,95,92,101,95,100,90,93,106,67,99,104,91,97,111,95,102,100,107,104,90,104,108,100,99,104,97,106,101,97,104,104,103,112,114,96,99,104,101,95,100,100,106,117,91,95,95,97,100,108,104,94,102,113,94,101,101,101,103,106,100,102,108,96,95,105,105,111,96,102,104,107,106,108,105,93,112,106,103,90,101,80,112,104,102,115,108,100,98,101,97,110,98,105,110,93,108,99,98,112,94,98,109,104,93,103,108,103,106,110,94,106,111,96,113,79,102,102,100,103,100,101,101,106,107,108,101,105,86,109,103,107,107,104,108,87,107,99,98,109,105,111,93,113,100,100,101,120,118,98,111,96,107,104,89,94,108,97,101,101,99,109,99,101,95,101,105,103,97,98,97,105,101,109,91,113,113,97,96,99,108,116,90,108,87,104,97,95,117,104,101,106,113,96,113,99,104,118,112,102,99,117,96,95,111,106,85,95,97,100,100,99,107,105,101,98,105,106,96,98,108,108,105,91,98,105,109,105,109,103,98,114,94,120,119,94,110,107,92,101,109,102,82,103,106,112,112,100,117,95,80,103,104,97,102,95,123,97,116,106,113,98,103,99,102,120,91,99,99,99,100,108,100,109,99,97,113,99,108,113,112,100,96,105,103,110,102,113,106,110,114,92,100,98,105,109,106,105,96,97,87,102,91,90,98,97,102,101,107,92,111,109,105,90,103,107,105,96,113,99,100,95,98,105,107,96,95,92,95,109,101,118,104,104,106,97,88,100,93,104,87,92,110,127,89,90,102,97,97,96,102,89,108,103,100,99,105,104,112,92,113,101,113,104,96,102,94,112,104,94,93,120,109,108,98,102,111,62,85,96,96,105,99,118,112,105,101,95,106,108,107,96,101,98,101,97,96,94,108,101,113,106,101,99,100,99,105,103,104,95,102,113,107,102,109,102,91,110,105,94,116,125,96,105,100,98,118,104,105,104,108,100,90,97,110,99,97,109,102,109,94,101,106,100,114,111,112,104,107,102,100,114,97,109,98,99,98,101,108,109,102,113,98,113,107,114,106,92,104,97,98,103,101,91,106,107,101,104,107,117,95,88,106,101,107,105,110,114,110,97,104,98,104,104,111,87,109,102,112,118,91,92,111,98,106,99,108,96,109,93,114,100,113,95,105,97,109,100,103,95,110,98,103,91,115,103,111,103,102,102,98,109,101,108,101,97,100,97,100,92,106,105,109,90,106,101,117,93,109,97,96,98,94,70,106,100,101,106,102,112,95,108,84,98,107,125,96,105,97,76,96,107,102,92,100,101,96,120,104,100,97,94,109,101,92,105,95,113,97,104,122,109,109,98,115,109,94,104,117,97,87,109,99,105,100,119,110,99,97,99,103,89,110,87,109,114,112,104,101,97,93,108,102,105,103,95,110,90,100,92,96,103,90,112,109,103,106,86,105,101,98,99,96,105,94,95,100,85,100,111,100,102,86,109,107,109,104,100,94,105,99,105,98,93,84,107,108,111,102,105,116,101,93,106,102,118,109,104,99,84,109,101,93,107,105,106,100,121,101,117,105,102,108,106,111,110,111,102,91,110,107,108,98,103,107,111,113,105,92,105,94,109,107,106,101,96,117,109,98,101,118,121,100,99,99,95,99,105,117,95,105,104,107,110,101,106,100,109,110,100,109,97,110,119,99,100,104,108,100,111,113,108,91,103,98,107,107,111,94,110,105,99,99,117,108,108,104,98,94,106,102,102,99,102,102,105,88,112,107,101,115,109,88,107,106,92,112,92,100,106,100,97,110,101,98,109,106,105,117,103,117,113,107,106,99,106,96,107,100,98,105,112,103,100,102,101,116,103,119,99,97,109,110,111,104,92,117,111,103,103,100,103,104,101,107,104,115,102,99,106,96,105,104,102,103,101,95,104,110,103,103,101,103,99,110,106,93,106,73,87,109,101,105,103,120,101,94,106,110,108,103,111,101,105,98,100,106,101,108,97,111,102,109,106,109,106,98,102,95,96,99,109,105,101,78,101,106,110,95,105,113,106,106,109,98,107,98,100,97,89,104,88,110,105,102,100,100,102,97,114,105,102,102,103,112,90,104,111,104,104,92,102,98,110,106,112,98,99,106,98,104,106,113,98,119,110,109,108,102,112,100,106,105,98,92,107,105,102,106,107,104,105,101,105,107,96,103,97,99,106,110,94,106,106,96,104,98,102,113,96,99,102,118,101,97,98,101,100,102,95,105,108,110,106,95,113,96,100,106,108,95,99,107,98,98,109,110,99,108,96,92,112,98,96,101,98,126,104,111,117,98,105,110,109,93,94,108,99,102,111,105,90,67,114,87,100,99,93,96,96,116,109,108,92,97,108,113,94,127,108,100,94,84,93,88,105,117,96,92,92,120,103,95,124,101,109,93,107,98,97,105,92,100,102,94,108,94,100,104,109,116,108,104,102,103,97,117,100,83,103,91,113,102,104,92,95,89,101,83,114,104,107,81,105,97,107,103,84,93,96,96,103,104,105,95,106,113,106,85,98,96,116,90,108,103,102,110,110,91,109,113,107,97,100,94,109,70,91,108,104,97,113,98,116,107,96,96,99,104,105,103,106,92,95,109,95,100,107,92,104,102,105,105,102,96,98,96,99,112,101,101,95,98,106,102,86,98,108,105,107,108,96,103,93,104,96,95,104,102,99,75,94,109,99,103,105,112,88,110,71,97,109,112,105,95,106,106,104,98,104,100,102,109,104,109,114,87,100,95,108,105,114,100,99,101,100,92,109,114,116,106,104,109,115,102,120,103,95,106,105,100,100,116,100,109,98,101,100,105,99,114,119,108,103,104,97,110,116,114,105,108,102,95,84,100,98,93,105,103,112,105,98,94,101,105,99,99,102,105,103,102,98,106,95,109,94,99,108,91,111,97,103,99,102,111,98,100,110,107,97,102,113,117,96,112,95,104,116,99,98,98,112,104,102,102,102,120,96,104,104,102,113,93,95,106,121,120,99,110,93,90,125,115,101,103,95,79,104,110,106,104,85,113,106,102,103,105,95,102,104,104,102,100,112,100,124,101,101,106,113,106,104,104,101,101,106,108,104,110,77,100,106,96,111,97,107,100,115,113,91,104,110,113,108,103,102,116,106,102,101,114,95,109,136,112,97,97,120,100,107,117,113,112,100,112,100,96,100,107,101,108,105,108,106,97,94,98,99,102,106,105,75,116,94,98,101,105,114,116,88,95,99,116,98,100,111,98,107,101,99,96,83,104,92,99,102,109,96,105,112,102,104,91,122,89,110,109,108,103,100,99,99,93,105,115,98,90,106,106,98,110,97,104,99,94,103,104,105,107,106,98,99,96,117,96,103,100,120,99,104,100,99,112,109,94,109,99,114,111,83,106,95,97,111,93,99,108,108,113,114,96,108,99,104,109,97,103,110,104,107,116,105,104,109,97,99,98,110,96,93,109,97,96,110,103,106,113,108,97,116,97,91,113,106,91,96,109,91,101,108,100,104,106,108,101,97,93,105,108,95,114,100,96,82,100,89,99,106,101,103,94,115,98,101,91,103,105,106,112,100,106,99,99,94,106,103,96,112,100,101,93,105,100,108,108,109,103,107,90,102,106,113,102,101,101,99,91,110,117,111,94,95,99,100,98,99,116,101,105,97,115,103,101,98,102,103,98,110,101,97,93,101,110,95,99,82,95,101,102,102,112,107,85,101,112,85,107,98,89,117,102,102,112,97,90,110,111,105,106,100,102,94,95,105,96,108,96,102,91,95,107,106,99,115,95,88,104,93,98,97,92,89,105,99,109,102,116,102,102,112,102,101,99,91,101,105,97,88,91,98,100,91,96,103,104,106,102,106,100,90,96,102,102,100,111,94,106,108,104,98,114,101,99,97,88,103,110,101,113,101,101,83,99,94,92,113,104,102,91,102,114,94,103,94,114, +451.69684,85,104,106,85,112,115,94,101,116,120,114,104,108,99,106,101,107,112,92,96,106,122,99,110,105,95,97,106,113,108,108,104,101,96,117,106,86,102,97,101,111,99,95,91,105,113,107,104,100,108,100,94,105,101,100,122,109,95,108,108,98,101,108,104,98,79,100,102,108,104,123,91,94,103,100,108,86,100,108,97,102,106,101,109,117,106,94,106,97,107,100,114,103,99,103,121,105,101,81,104,88,112,94,108,94,102,96,101,101,105,109,104,107,97,131,102,108,108,111,95,102,96,122,108,103,99,111,96,112,107,112,98,104,99,102,108,99,94,88,116,95,104,103,84,102,100,95,109,107,100,112,106,110,98,97,104,96,94,106,106,92,100,102,103,100,106,100,100,113,106,114,99,100,101,108,120,107,91,105,106,98,110,101,104,99,105,112,100,104,101,97,108,103,88,99,102,95,117,108,96,110,104,94,81,107,108,105,107,114,95,112,100,94,130,99,93,103,113,100,96,111,91,109,105,106,98,101,102,103,103,106,101,100,109,105,105,98,94,96,100,99,105,108,110,97,101,104,101,108,110,97,106,90,100,101,106,96,99,100,113,106,110,102,96,82,92,110,98,112,104,106,108,113,100,118,87,116,107,104,112,94,108,112,100,109,131,97,105,98,100,98,101,117,105,103,91,103,101,120,102,99,111,98,104,102,106,111,105,97,108,93,115,104,105,108,111,104,104,105,108,101,113,109,104,100,114,98,93,111,115,100,95,109,103,100,103,103,105,120,105,121,107,101,102,98,103,104,104,111,126,112,108,110,98,104,99,87,102,106,99,95,101,101,104,92,103,99,105,105,110,116,103,112,104,101,104,119,107,114,96,103,110,121,114,96,105,105,128,108,91,118,100,87,110,97,98,105,115,102,116,98,91,109,109,111,103,105,96,101,105,105,101,106,99,102,105,98,96,95,98,103,109,97,102,100,106,82,92,102,115,94,116,96,116,101,126,85,109,89,105,110,98,100,109,91,103,113,98,85,107,95,95,103,108,113,96,104,109,105,95,114,94,106,107,95,107,107,97,104,95,115,108,101,112,104,108,122,112,107,118,105,102,111,106,90,108,108,98,101,94,109,120,101,99,102,113,91,104,112,87,105,122,117,105,109,117,107,106,115,113,113,116,108,114,114,106,96,103,96,104,119,108,104,100,107,109,105,98,92,110,94,105,92,80,109,106,96,104,103,110,92,109,99,106,120,95,101,109,111,107,109,108,107,97,113,110,112,106,95,98,121,99,112,94,106,107,102,107,109,109,99,121,107,114,102,109,106,101,108,109,128,103,104,113,97,102,111,107,112,99,93,94,106,114,113,103,108,109,94,101,98,100,116,112,117,111,95,95,98,98,102,109,104,116,108,122,120,98,101,108,116,92,104,94,98,103,104,113,113,100,97,114,123,102,104,95,115,112,103,93,106,103,115,102,109,95,104,109,100,110,103,98,104,100,106,108,101,116,111,109,106,94,106,99,102,110,105,99,108,102,104,106,92,106,99,109,108,92,96,105,104,110,100,106,104,108,96,100,95,101,106,117,96,106,109,134,113,99,114,89,96,105,108,106,99,91,109,96,100,105,104,95,109,111,91,99,92,99,102,119,113,97,97,111,104,104,104,111,88,103,109,98,90,83,106,95,109,114,87,108,114,115,95,116,100,99,100,96,109,120,110,99,100,100,99,104,114,112,114,102,109,100,97,105,102,108,113,108,95,98,109,102,101,129,104,101,104,105,100,95,113,119,108,116,103,109,101,121,103,95,109,86,104,110,112,103,106,110,106,112,103,100,109,108,110,98,103,107,108,97,101,100,98,86,100,112,100,97,95,106,118,100,109,112,97,102,111,114,118,97,95,104,108,102,104,103,104,88,109,94,97,100,106,115,97,103,112,94,93,98,111,102,103,100,103,105,114,103,103,99,107,114,96,87,104,103,126,99,107,105,96,106,101,110,95,107,112,90,113,103,94,106,107,130,108,99,109,111,100,104,104,111,98,113,98,93,120,102,92,91,103,113,114,88,104,93,93,103,95,85,105,103,105,101,102,97,99,96,101,108,105,106,103,98,105,103,102,113,102,113,106,111,108,111,107,106,104,91,104,105,105,102,94,103,101,90,115,109,91,98,100,102,105,110,107,114,104,128,104,98,82,108,100,99,100,99,101,103,95,100,99,95,95,114,107,102,100,110,97,96,95,96,102,109,101,105,108,114,96,101,109,103,106,110,113,100,100,109,100,112,105,86,101,103,92,92,105,114,106,96,99,117,104,106,113,108,96,99,110,109,105,100,105,108,104,99,104,103,99,102,144,116,106,99,109,89,105,96,112,103,117,102,79,105,101,97,92,108,109,104,102,97,107,109,107,108,106,87,108,110,106,104,95,104,105,107,115,113,101,106,103,105,101,117,110,98,105,86,98,111,107,107,100,112,104,100,99,98,113,100,100,109,97,104,106,117,95,111,108,108,97,109,104,107,120,105,109,97,105,95,121,105,96,99,99,107,101,100,116,103,103,112,103,107,98,109,103,107,111,93,108,110,110,79,105,115,105,120,105,106,110,95,93,111,108,100,88,115,114,115,100,115,109,94,107,92,102,98,93,95,97,102,111,92,117,109,112,104,99,94,106,112,112,103,91,131,94,96,115,96,116,109,95,100,102,101,105,103,95,117,90,105,111,97,99,106,101,91,102,101,108,101,104,99,121,106,101,103,95,109,98,105,114,116,117,99,109,102,104,101,107,97,112,73,116,104,99,104,109,109,108,99,111,106,101,97,99,107,102,115,91,102,102,99,97,111,103,104,104,109,103,87,110,94,95,109,102,104,72,108,103,103,106,107,102,101,106,116,103,111,99,77,106,106,112,99,98,99,103,104,98,103,104,98,109,94,104,106,111,103,95,108,99,96,116,96,94,105,115,107,108,113,105,100,105,95,109,71,99,107,95,92,111,102,116,107,115,102,100,106,143,98,108,98,98,107,108,106,100,99,107,102,103,123,106,113,100,110,108,103,100,111,118,101,110,95,104,111,102,107,106,109,106,103,100,100,103,97,100,106,104,98,121,114,104,98,107,94,106,105,104,122,112,94,101,102,99,109,107,109,111,99,110,105,95,90,104,113,100,106,115,97,97,103,83,98,88,105,113,107,98,100,95,97,98,109,109,103,105,106,106,111,116,106,121,95,113,107,106,105,101,107,100,94,93,95,118,101,111,98,105,110,103,110,95,101,105,96,111,105,100,99,96,95,109,99,100,99,98,79,102,101,105,99,106,108,103,99,96,91,105,102,101,103,115,104,102,107,91,91,101,99,102,97,104,109,98,101,106,111,87,111,120,112,106,107,101,103,113,117,112,97,99,105,115,121,96,101,105,120,97,97,113,105,95,95,101,104,109,89,116,97,104,97,95,109,99,106,101,94,96,103,107,113,92,105,106,96,103,106,109,112,104,107,109,97,97,104,107,104,90,111,117,111,105,94,110,102,96,97,105,106,104,99,105,95,112,107,98,108,104,103,100,100,91,106,102,112,96,92,109,101,100,110,103,91,109,106,104,102,110,101,107,104,110,110,111,112,105,105,103,111,106,109,107,98,106,105,104,106,116,107,107,95,87,98,89,99,111,104,98,92,113,109,113,108,104,102,104,99,104,99,109,104,103,109,103,97,116,105,82,109,101,90,103,99,104,104,105,95,109,98,104,107,106,113,111,104,105,105,119,99,91,103,105,99,102,103,111,113,98,89,111,97,105,110,103,106,100,96,114,110,80,113,132,110,117,108,89,116,123,103,107,92,109,106,114,96,97,109,96,102,104,96,105,107,106,95,110,102,94,91,106,100,110,114,85,99,119,110,110,95,100,99,105,103,100,100,87,112,99,96,106,94,102,86,103,113,113,91,105,101,96,107,94,108,106,102,105,99,105,99,108,109,101,112,105,102,101,109,103,101,95,111,104,111,106,108,96,111,103,108,111,104,117,92,110,96,112,110,112,117,117,117,107,102,97,95,108,99,117,108,112,108,113,137,96,102,116,97,102,96,108,107,98,97,99,111,99,104,103,114,104,99,91,105,88,105,97,107,102,99,99,104,94,100,107,103,102,92,114,112,99,112,101,113,113,109,100,109,98,101,105,113,106,63,99,117,105,95,107,105,121,98,124,100,106,78,99,96,105,119,105,111,108,95,107,114,110,97,109,90,92,98,109,102,97,109,113,104,105,104,114,104,100,99,111,97,98,88,116,104,109,96,102,106,117,117,91,102,101,117,97,106,106,109,107,99,114,109,106,98,102,98,111,115,104,113,93,109,102,101,100,97,107,109,97,92,106,108,101,105,94,104,94,104,101,96,100,104,102,109,102,102,94,107,116,105,111,93,96,95,94,99,99,115,95,98,102,95,104,94,91,99,102,108,106,109,103,112,106,101,110,102,102,94,99,88,108,97,106,102,110,103,97,110,102,106,98,108,102,108,100,92,99,97,104,93,96,100,108,93,106,99,102,116,113,100,83,98,96,99,136,101,109,96,101,101,108,121,103,112,104,96,107,103,101,109,103,102,107,106,96,110,96,96,100,93,98,105,105,94,95,109,116,102,82,93,97,87,104,95,95,88,107,103,107,103,99,90,107,99,101,105,64,103,99,99,104,111,99,100,112,105,100,101,103,106,87,96,106,103,116,108,96,93,109,104,98,108,100,95,92,98,99,97,105,111,98,97,111,104,104,91,109,100,80,99,105,96,100,99,107,87,102,106,92,98,108,106,99,105,106,104,106,88,111,112,101,98,112,109,97,88,105,111,85,113,91,103,98,115,109,70,105,108,100,105,117,96,105,110,94,85,113,97,95,112,103,97,111,106,95,109,114,92,113,115,107,90, +451.83725,109,100,80,102,102,100,102,99,96,97,100,93,105,91,99,101,101,125,111,93,105,101,110,105,97,101,110,105,111,107,99,95,107,104,110,92,97,91,101,94,79,98,100,105,106,106,82,105,100,98,88,94,99,84,101,113,103,90,102,94,94,109,110,100,95,87,114,108,104,88,97,104,89,114,101,99,101,99,108,108,98,100,97,113,95,97,99,107,106,115,103,91,92,103,85,100,108,85,101,108,104,92,89,95,94,95,107,103,101,115,99,110,106,106,98,99,95,101,107,99,102,95,98,108,100,100,107,95,109,107,107,87,93,100,110,97,101,101,101,92,92,116,88,86,98,70,96,104,108,95,96,104,103,103,91,96,102,101,100,97,90,103,112,100,98,95,104,98,111,93,97,87,105,97,99,100,100,93,101,97,111,104,107,112,77,97,103,96,95,92,101,102,100,103,97,103,106,90,99,99,98,111,89,103,96,113,97,108,107,117,102,93,112,101,101,91,84,102,101,105,96,108,105,101,99,100,106,100,107,110,103,96,97,102,101,107,100,101,97,92,108,94,106,108,99,98,94,113,104,109,100,94,108,107,83,104,101,111,95,102,100,104,101,106,100,88,95,100,101,104,100,96,117,105,104,124,92,112,94,94,98,102,108,91,97,97,95,100,101,101,101,105,110,106,107,108,102,75,110,99,99,97,95,108,102,97,104,119,104,113,81,109,106,97,97,103,91,114,112,116,109,108,100,110,107,117,104,97,106,125,99,87,101,98,106,99,111,97,103,94,91,103,99,107,106,106,96,99,107,104,102,143,125,106,98,92,103,110,96,109,102,95,104,91,97,74,100,108,92,106,92,102,109,99,108,91,99,101,103,108,96,104,104,99,99,123,98,100,108,103,101,98,103,101,102,79,104,104,107,108,101,101,105,101,109,105,110,104,103,98,94,93,103,96,118,95,97,101,113,98,109,92,92,102,106,96,92,100,101,116,99,97,107,96,101,98,83,100,96,113,108,83,111,108,102,101,105,112,95,68,91,91,96,106,105,97,113,103,106,96,105,107,103,105,104,104,108,98,93,95,105,107,109,97,111,100,101,113,105,100,94,111,98,94,101,92,92,99,104,108,115,100,99,97,105,99,99,96,102,102,109,101,106,100,100,95,91,104,108,102,103,76,107,98,91,108,111,96,98,87,110,99,104,107,109,104,99,105,109,103,93,99,97,115,103,101,109,96,103,94,101,90,95,79,118,110,98,110,100,105,103,116,99,111,102,84,101,109,96,107,90,116,86,108,83,118,94,110,97,107,95,100,96,111,105,99,94,99,116,100,101,118,103,96,104,106,110,105,105,102,102,104,97,91,101,109,93,103,114,101,100,105,102,102,92,106,103,112,104,113,98,95,112,103,98,113,99,117,105,105,104,110,94,109,112,108,134,106,120,113,94,110,101,104,103,113,110,100,122,105,113,98,96,100,101,100,103,99,94,113,94,96,106,107,102,105,110,109,98,95,119,107,104,108,105,105,94,102,109,96,111,102,102,104,96,115,108,102,102,103,109,102,107,88,103,99,105,101,111,95,110,97,99,91,100,106,106,94,104,91,103,102,95,100,99,111,82,104,94,91,106,119,104,89,99,96,105,112,96,94,104,102,113,100,96,109,104,104,105,105,100,109,96,98,94,94,102,100,95,108,98,98,102,83,94,104,99,107,96,113,105,81,115,104,99,91,98,98,100,104,112,106,102,95,110,110,97,108,101,106,105,106,112,98,103,107,102,105,103,89,95,115,113,101,98,109,102,95,105,118,110,77,112,100,106,112,99,118,101,104,101,108,107,99,98,93,105,104,99,106,107,99,95,103,113,88,110,108,104,98,111,103,105,110,95,100,107,114,117,105,103,97,102,102,103,98,103,102,106,109,104,109,115,106,102,99,93,100,106,94,108,96,104,110,96,102,102,113,99,104,98,114,113,101,105,109,85,105,112,106,100,100,92,106,95,104,106,103,100,94,106,98,104,99,112,107,109,111,93,99,106,103,109,113,99,101,94,92,107,102,99,102,113,102,114,108,100,108,100,96,102,121,126,105,104,95,98,101,101,109,107,100,119,107,103,107,100,104,105,104,121,112,90,102,103,103,113,93,109,115,104,86,103,112,96,108,99,91,103,101,93,113,105,102,104,100,111,99,109,120,103,110,105,94,92,99,109,92,105,94,110,107,99,96,99,107,86,108,93,103,103,102,119,103,110,106,102,90,108,105,103,103,95,137,97,91,101,104,99,100,102,116,98,94,118,102,95,107,91,102,99,102,103,100,111,98,101,110,101,96,103,102,110,100,114,99,104,98,94,85,110,110,104,100,107,86,110,104,98,102,106,103,87,116,106,101,99,94,87,106,102,111,106,101,94,113,99,96,98,109,99,114,93,95,95,100,97,95,106,105,101,98,104,100,110,88,102,107,101,103,101,92,95,114,109,111,113,101,108,104,101,106,87,105,109,109,112,96,112,108,128,98,99,83,130,99,118,103,121,108,101,113,119,111,98,88,115,109,106,100,115,106,87,108,120,102,112,105,108,99,101,112,79,101,100,102,102,104,103,114,101,107,106,105,102,105,94,92,103,102,106,118,106,113,101,97,102,72,116,112,100,87,119,88,104,101,92,102,99,84,100,105,116,98,97,106,104,104,108,94,112,107,109,110,106,113,101,96,100,116,103,107,102,109,95,109,108,102,106,109,107,108,106,110,108,108,110,107,106,107,94,108,94,106,112,115,106,113,112,90,112,111,108,109,106,107,83,106,103,113,119,106,101,106,113,108,108,108,102,104,120,106,111,106,115,117,103,96,105,113,100,102,105,108,102,100,107,93,111,106,101,104,108,108,95,108,109,112,103,97,115,99,117,113,108,106,94,98,112,102,108,113,109,101,107,107,114,95,104,95,113,116,105,109,87,120,108,115,108,110,106,104,91,100,116,85,106,100,108,115,98,103,100,95,88,103,89,115,107,109,108,111,111,104,116,110,114,108,117,107,101,96,117,108,111,103,103,98,93,96,106,95,125,111,110,95,107,98,112,71,111,115,95,101,108,70,104,106,122,106,107,118,113,103,118,101,122,90,113,101,97,103,113,110,98,98,100,120,109,95,98,101,111,103,101,106,105,107,106,105,102,104,107,111,98,103,104,110,110,106,105,102,109,111,103,102,110,104,109,113,115,98,101,98,107,91,104,111,105,116,88,88,98,104,103,100,105,98,106,109,104,99,113,120,104,103,102,114,107,104,111,102,113,101,111,102,101,108,91,104,108,101,98,107,116,106,118,112,108,103,117,100,107,118,99,114,101,102,88,111,98,101,99,108,107,98,104,110,113,115,102,107,113,95,102,110,107,110,110,96,98,91,114,102,109,106,107,100,108,94,100,119,113,113,113,85,101,95,109,93,100,104,101,100,99,110,77,109,124,97,107,95,97,85,101,118,113,100,108,105,103,108,109,98,100,101,111,100,98,99,105,111,106,122,101,96,116,107,96,113,113,100,112,98,106,102,102,114,111,110,113,112,109,108,108,95,102,105,102,105,101,90,117,109,97,105,104,105,103,100,91,109,106,113,104,109,114,103,105,111,98,120,91,109,105,97,99,94,108,110,108,105,119,107,108,106,99,97,100,121,103,106,103,113,93,104,115,116,114,94,97,129,104,90,103,109,112,105,108,139,100,108,103,103,97,98,107,103,113,105,96,98,97,118,104,106,94,98,104,103,89,94,99,104,97,106,100,98,106,113,106,100,118,107,99,94,102,85,116,106,115,110,103,102,119,106,103,111,108,114,115,98,105,91,112,116,94,100,105,99,102,89,90,102,97,109,104,102,101,107,103,99,109,105,109,102,109,101,101,107,101,109,103,104,106,101,108,109,86,95,104,100,101,116,106,108,104,100,107,106,108,103,115,101,112,106,109,87,112,105,119,105,99,110,109,112,93,99,95,105,101,105,96,100,95,110,113,98,94,96,102,116,96,100,109,106,89,99,89,94,115,100,105,98,101,106,109,98,113,98,104,100,89,87,107,104,93,102,94,95,111,101,107,110,105,101,91,113,104,101,100,102,105,97,108,109,101,113,106,106,101,92,100,110,103,95,115,113,112,102,97,101,94,75,106,102,103,102,115,104,98,102,100,97,98,105,105,101,98,99,111,104,109,103,111,109,104,100,105,106,107,106,102,105,95,100,108,93,104,108,105,99,91,111,98,103,101,118,102,92,91,113,98,93,98,102,99,99,100,98,102,109,114,102,109,104,106,91,109,99,101,98,111,100,105,106,105,100,109,124,104,104,101,100,113,132,105,116,96,113,108,109,94,105,113,107,104,109,101,98,101,105,114,113,64,84,98,106,104,92,95,111,87,83,98,93,108,106,98,98,98,90,93,111,105,92,102,85,68,102,104,112,95,97,98,101,92,131,103,107,104,113,103,107,104,96,99,100,99,101,96,86,90,108,96,109,99,84,94,100,99,93,98,113,109,107,104,99,93,103,96,92,92,107,101,106,94,96,108,105,92,106,100,98,95,98,108,100,104,94,120,103,104,114,100,109,100,92,113,94,100,96,100,112,113,113,105,102,100,115,100,110,114,128,101,110,96,118,87,100,106,94,95,111,98,94,109,99,108,107,107,93,106,98,102,91,97,99,92,100,97,98,101,94,69,112,102,111,88,103,105,100,118,100,91,103,97,106,117,90,102,117,94,111,97,96,93,88,95,106,93,100,105,117,100,117,99,89,91,100,95,122,102,113,107,104,98,102,96,91,98,117,106,107,111,104,99,115,97,104,115,93,101,112,111,114,103,98,100,103,98,104,95,100,110,92,96,88,114,97,96,100,93,99,97,103,90,113,98,97,102,102,95,105,83,107,97,99,100,91, +451.97763,107,115,95,103,102,96,92,96,110,114,93,108,104,95,106,94,105,99,112,92,97,105,103,112,108,104,110,102,114,112,98,110,93,98,97,118,117,113,104,76,91,96,113,99,96,112,103,103,109,101,103,103,100,99,106,108,78,94,99,97,111,102,109,107,102,110,104,97,106,91,107,106,112,111,103,112,98,105,105,100,108,102,106,100,97,103,109,109,103,94,109,108,97,99,94,101,115,104,101,101,93,101,106,119,107,101,91,101,97,109,106,105,106,97,89,110,101,108,116,103,111,101,109,108,104,105,111,98,118,99,105,99,101,98,120,105,87,112,109,107,110,111,116,87,97,100,114,116,103,101,99,91,107,95,104,109,113,88,106,101,68,94,109,81,91,111,102,94,101,106,105,110,104,99,95,99,104,103,103,103,99,104,106,113,104,98,99,105,96,104,100,97,104,110,103,122,99,100,108,106,105,103,104,104,99,100,99,103,114,100,90,102,103,103,108,107,107,109,106,100,102,101,107,99,103,118,115,114,104,108,105,107,114,106,109,98,73,101,126,101,98,105,100,103,110,96,128,99,117,98,97,112,106,97,104,114,101,108,106,96,85,98,107,106,94,131,98,102,101,107,70,96,109,94,103,107,100,110,124,87,109,94,103,102,115,108,99,99,102,101,98,105,112,103,106,109,108,112,118,114,100,103,106,116,113,95,113,111,106,106,105,102,104,113,91,125,98,112,106,101,105,103,112,97,102,106,88,90,126,107,101,91,99,111,120,109,103,99,95,102,102,110,111,108,106,106,98,102,101,96,114,102,96,102,102,114,107,103,116,100,117,104,108,100,102,96,89,100,103,112,116,117,84,102,108,100,107,98,101,109,106,98,107,116,101,95,96,107,110,107,120,110,104,112,124,99,105,95,101,103,102,113,86,91,103,99,109,113,113,102,123,112,108,105,107,100,111,109,109,99,110,106,103,104,112,91,118,98,100,109,98,105,92,107,106,91,98,111,102,101,116,90,103,102,91,107,99,106,91,105,103,103,105,103,109,94,134,97,108,103,101,101,117,110,102,109,106,96,110,99,98,114,113,102,108,105,98,115,103,119,111,111,103,107,101,94,111,94,103,101,112,101,109,100,97,100,102,103,103,102,103,116,107,99,98,117,106,119,127,116,86,105,108,103,109,100,113,94,116,100,106,93,97,132,113,108,114,106,97,104,101,102,103,88,111,106,103,119,99,111,105,117,99,114,104,112,110,77,119,102,95,101,101,103,116,114,105,102,101,110,100,105,91,109,109,100,107,97,118,110,102,105,99,109,111,106,105,118,113,113,103,106,102,108,99,97,103,103,112,96,110,101,105,99,106,115,112,110,110,95,106,99,101,96,96,93,107,105,115,99,100,108,105,107,103,94,103,104,102,103,95,99,113,104,102,99,109,116,100,106,98,108,104,107,87,97,108,106,114,106,105,114,96,107,108,102,97,95,105,116,111,95,104,106,105,99,114,95,114,103,120,108,100,87,96,107,114,107,116,83,107,125,110,115,107,116,98,89,104,109,111,105,107,103,95,98,98,105,104,99,104,97,100,108,99,92,100,98,111,94,111,104,95,103,110,99,100,105,110,105,109,107,103,109,109,110,108,129,110,107,99,108,92,110,106,100,109,95,108,99,106,99,106,103,91,101,97,101,107,87,94,109,109,105,107,112,109,120,104,106,114,92,106,105,113,97,103,96,109,94,99,112,98,109,106,115,107,93,109,106,102,98,115,90,99,99,121,111,104,107,110,110,111,110,94,115,107,106,105,114,113,114,105,97,106,110,85,100,105,106,101,95,100,99,109,87,118,109,101,106,113,112,114,101,91,106,104,110,98,102,97,103,99,116,91,101,100,102,105,100,114,97,119,95,101,112,109,99,108,95,109,99,108,93,105,101,97,93,101,89,107,92,95,112,102,113,113,112,95,105,106,106,109,115,101,105,103,100,109,106,109,113,105,74,82,95,106,100,101,104,99,102,101,114,114,97,103,114,104,100,105,103,101,98,95,104,108,103,99,101,103,116,118,114,87,106,106,100,100,92,111,107,104,109,102,96,106,100,99,107,109,121,107,121,112,98,94,115,102,99,98,111,113,116,98,98,103,110,113,100,115,97,107,101,100,98,103,99,110,96,105,102,114,104,111,110,83,98,98,99,91,114,114,120,107,95,111,108,94,104,104,95,108,107,110,98,110,87,104,107,95,104,107,104,104,95,98,103,98,118,109,98,109,101,96,96,94,102,99,109,96,100,109,90,114,95,113,107,91,100,97,109,112,104,105,109,92,98,68,101,109,104,106,101,105,127,118,104,109,84,110,111,113,101,95,96,116,108,101,102,100,108,94,113,108,108,112,117,99,125,99,112,88,99,96,84,110,105,99,113,115,106,111,113,91,102,102,115,104,107,108,109,98,94,105,98,97,112,101,105,110,107,102,101,102,102,113,85,113,96,94,98,110,99,101,103,103,91,106,112,106,103,105,102,103,124,103,109,103,103,82,104,101,105,96,105,123,110,87,106,112,100,98,103,100,101,96,110,113,121,98,102,101,101,108,115,106,103,115,95,94,100,96,98,99,121,100,103,103,95,107,104,115,113,99,99,95,120,102,108,108,102,108,95,114,116,104,96,105,109,112,113,102,102,108,103,109,109,102,104,104,107,104,113,109,109,104,105,108,103,100,113,104,104,101,92,109,109,125,106,106,115,120,102,134,113,112,113,90,108,103,95,97,113,110,106,116,114,96,106,104,93,103,89,106,102,102,107,101,107,92,110,99,107,102,107,108,109,108,111,118,104,106,94,105,99,99,92,97,105,102,97,106,112,108,87,99,106,102,110,108,105,110,101,113,94,95,97,101,103,100,113,105,102,98,114,110,93,109,110,78,94,107,98,110,106,99,100,105,98,99,101,106,116,107,121,105,101,103,94,104,97,105,104,112,107,113,112,108,100,92,105,100,113,111,104,103,95,99,97,120,119,98,113,109,96,102,113,82,99,102,106,97,104,116,98,117,97,101,113,103,100,99,107,105,97,115,100,108,113,109,101,99,102,107,100,97,98,100,111,105,111,106,100,79,106,96,80,105,96,113,97,107,111,120,101,99,121,101,88,92,91,99,101,116,94,112,104,117,96,100,102,113,95,92,109,104,98,111,104,112,103,106,112,96,109,104,95,95,106,97,98,103,101,99,99,102,105,107,102,98,104,106,101,102,98,106,93,108,104,103,113,97,120,107,100,108,99,105,113,84,112,102,99,89,111,92,101,107,98,109,106,100,102,116,113,116,98,99,107,106,101,103,100,106,114,98,96,103,92,74,97,95,109,95,109,99,106,102,109,104,110,111,97,105,110,92,98,103,105,110,106,90,96,104,107,105,106,107,95,118,97,105,112,102,91,98,98,108,108,108,128,91,102,97,120,114,94,98,106,104,103,104,99,104,102,99,107,99,93,106,107,94,105,125,110,105,108,110,103,98,125,102,107,106,93,120,94,118,90,114,111,120,108,104,99,114,107,102,121,100,110,96,106,95,112,114,109,108,109,106,104,108,97,106,97,100,99,108,101,103,113,104,111,101,89,114,99,104,88,100,116,108,116,104,103,103,102,113,105,112,109,105,115,93,103,113,112,114,103,100,115,111,108,108,107,108,98,102,102,96,106,91,98,95,91,92,103,114,112,80,101,102,92,104,104,106,125,111,103,101,96,94,109,91,99,99,115,115,94,106,102,92,116,103,98,106,110,109,104,99,103,111,103,101,105,110,103,106,116,108,104,100,110,105,109,114,107,92,101,110,108,106,109,112,91,104,108,95,101,92,97,106,111,107,99,95,98,112,118,105,96,107,109,96,110,98,97,95,113,101,106,113,96,104,104,108,103,97,108,104,98,108,98,103,116,103,104,115,121,102,106,104,105,97,109,95,105,106,97,104,96,103,108,87,109,100,119,99,108,104,118,110,111,106,101,100,98,89,96,105,104,95,91,104,104,95,109,104,113,110,97,120,100,106,113,106,94,99,111,105,116,117,105,96,115,92,81,70,120,101,71,111,102,112,102,101,106,105,104,107,104,108,95,130,106,97,109,90,110,96,114,124,103,104,113,106,98,104,108,91,89,98,108,88,99,102,95,107,106,104,80,111,95,94,116,104,108,120,102,103,102,117,95,107,109,87,103,116,97,107,101,110,89,107,106,104,99,108,101,93,99,109,106,102,99,102,111,97,100,115,99,102,104,93,108,96,96,108,98,119,101,102,121,111,119,100,99,101,105,112,108,117,115,97,102,108,104,109,101,101,114,106,110,102,110,108,99,96,107,122,93,105,112,102,111,103,117,91,114,112,93,107,107,100,102,109,104,95,103,110,109,101,106,102,98,102,108,105,108,111,95,119,95,98,108,92,115,117,111,111,110,101,102,100,95,93,105,105,109,127,117,98,104,111,89,100,95,103,112,106,106,97,99,104,104,105,99,117,91,108,106,101,106,91,112,109,105,106,98,101,102,102,100,97,109,109,104,85,106,103,113,98,103,109,100,95,96,101,93,104,113,113,89,87,95,105,84,104,106,111,99,100,100,102,108,96,113,101,101,111,100,101,95,108,85,103,99,103,99,87,75,111,87,102,101,101,104,102,109,109,106,105,101,117,109,103,103,103,102,109,91,102,100,115,103,104,99,95,95,93,91,95,103,107,94,108,105,106,102,101,99,102,99,97,101,112,99,109,110,99,95,97,94,107,106,103,103,108,71,119,113,109,93,120,96,100,102,112,94,124,87,98,125,101,121,99,99,116,101,105,112,110,93,108,90,98,100,88,97,99,98,111,95,106,107,89,107,97,100,93,115,105,107,98,129,122,96,109,113,119,119,93,101,106,95,99,92,99,102, +452.11804,97,101,98,95,102,109,82,115,95,97,106,95,124,92,92,108,107,109,120,97,88,92,101,105,104,100,106,100,87,100,99,92,101,99,102,91,95,92,97,110,95,94,94,108,94,107,105,97,118,95,98,105,101,102,104,93,103,90,109,105,113,96,105,94,107,108,90,106,89,109,100,103,101,89,133,99,101,85,102,99,107,95,121,97,101,108,116,96,99,99,117,107,98,105,104,98,102,100,96,90,102,106,100,101,105,112,96,100,92,101,103,105,122,95,99,100,92,108,97,97,110,105,93,109,111,110,92,104,112,105,100,91,95,101,98,96,100,111,96,90,103,106,89,99,97,98,103,109,94,100,106,98,117,88,104,102,113,101,103,96,106,112,106,102,105,96,107,101,109,99,100,108,113,100,101,102,93,112,100,87,92,107,99,106,103,109,108,94,92,109,101,105,93,99,112,103,99,102,93,100,103,105,108,99,114,96,96,98,109,117,94,108,98,99,104,112,110,119,76,92,105,102,96,105,108,101,109,107,111,90,104,102,96,98,103,111,106,96,100,110,101,101,106,94,96,102,106,99,114,97,106,94,99,112,97,99,108,113,95,102,90,101,100,90,110,111,95,99,92,94,110,105,112,96,114,98,103,103,105,101,103,110,114,95,103,99,96,110,108,103,109,89,110,99,103,106,102,99,90,100,91,104,107,101,85,100,106,117,93,105,100,109,102,111,112,105,100,94,99,99,95,98,95,105,96,100,97,108,110,101,100,100,100,87,94,97,96,100,96,98,96,100,101,100,90,95,101,100,112,107,114,99,100,98,98,99,108,105,103,109,99,97,111,99,108,114,94,101,126,102,117,99,116,108,99,104,117,92,109,103,101,101,141,107,104,97,86,86,106,112,105,102,109,113,106,100,98,94,104,99,101,93,105,109,93,99,101,90,120,94,103,101,99,90,115,99,108,91,103,101,113,71,98,111,90,102,110,97,100,118,100,103,104,98,108,93,104,102,97,87,113,104,105,99,109,104,116,95,92,121,108,104,90,109,112,113,101,117,102,94,95,105,101,121,107,95,99,94,108,105,113,96,104,117,119,106,96,103,108,102,109,97,99,97,111,105,98,99,110,101,104,106,97,101,103,107,100,106,99,94,116,96,97,94,97,101,104,94,98,106,96,106,96,103,100,101,124,109,90,100,94,97,102,107,99,97,103,108,95,99,96,108,100,100,101,108,103,106,100,103,99,95,103,108,105,118,102,103,98,101,109,102,105,104,98,111,119,109,98,100,98,103,99,98,104,102,99,101,105,108,99,98,102,104,103,107,107,91,113,91,99,102,109,109,98,101,103,116,111,98,118,90,112,104,113,109,97,91,106,112,113,104,107,102,107,103,113,109,102,104,90,104,110,108,95,96,101,84,97,107,110,99,95,108,101,102,104,94,103,105,98,102,88,106,92,92,106,93,114,100,93,99,105,98,97,101,104,109,103,108,83,102,106,104,99,96,106,108,94,108,104,109,115,90,104,99,99,105,97,102,108,89,110,106,90,99,119,101,94,101,100,107,104,98,97,96,105,117,105,101,107,103,95,112,102,99,126,106,110,88,96,98,81,90,108,100,86,106,101,100,101,115,107,104,103,103,92,102,109,103,107,103,101,105,101,108,102,103,100,120,99,100,113,97,103,107,101,106,111,102,83,97,101,111,105,111,117,99,103,89,115,104,104,106,100,100,103,106,102,97,102,107,102,101,106,93,103,98,92,94,105,114,106,98,101,97,97,95,96,104,103,100,121,97,102,100,103,95,91,114,117,109,107,98,94,101,101,102,100,99,99,94,105,104,114,104,115,118,111,106,103,104,92,92,107,106,114,105,129,98,104,117,116,106,89,98,108,110,104,104,119,99,118,103,100,110,100,105,114,96,106,100,107,101,91,100,91,98,99,103,98,91,98,102,101,99,101,112,109,121,109,94,104,95,115,107,100,105,118,114,102,94,86,105,116,107,94,95,106,98,111,102,94,107,103,101,108,84,100,103,101,109,99,109,105,92,102,110,100,91,97,102,107,102,111,101,89,99,106,113,95,97,114,95,111,92,98,113,108,112,96,102,100,105,111,99,105,93,108,106,108,110,99,118,103,103,103,99,104,97,106,107,92,102,101,95,107,104,104,104,107,113,108,91,98,113,109,112,100,102,104,110,101,98,98,96,87,99,101,110,98,113,79,106,95,113,114,102,108,103,97,114,95,100,114,109,114,103,97,103,100,99,103,104,101,99,112,106,104,106,106,97,93,83,107,107,104,101,123,110,100,107,111,103,119,113,97,106,103,106,96,102,102,98,103,113,109,102,99,99,106,117,106,83,112,73,98,101,109,106,98,100,95,90,102,108,103,103,113,107,99,104,70,104,102,101,104,122,105,105,105,110,96,95,105,101,97,96,110,111,97,111,93,125,105,99,97,99,71,92,93,102,107,77,100,117,102,99,110,94,100,91,107,97,86,105,106,109,107,99,112,102,107,102,101,105,95,115,105,110,104,116,109,97,79,98,124,127,106,120,120,98,98,98,108,109,99,104,95,112,111,122,106,107,106,106,103,105,108,111,107,100,109,103,106,96,104,98,111,99,95,95,105,105,103,100,99,102,100,110,98,92,109,106,124,100,105,111,96,104,105,97,108,91,107,102,107,99,107,101,104,108,101,111,106,101,112,112,98,87,101,113,106,104,97,109,95,106,103,115,105,106,110,110,110,110,102,105,109,106,101,110,105,107,96,113,105,97,103,106,92,113,106,105,102,109,68,118,108,97,106,91,100,110,97,113,99,106,117,106,103,103,113,103,102,97,104,87,104,112,112,103,96,103,110,109,105,103,101,110,116,98,111,106,100,121,100,103,104,112,109,104,101,108,107,110,110,102,102,99,102,105,120,103,108,96,108,111,75,103,105,100,88,100,103,114,102,98,107,92,106,111,96,113,107,98,100,105,113,105,105,100,97,99,98,108,98,117,97,104,110,113,108,98,103,115,104,98,96,112,104,105,108,107,110,101,104,95,95,104,99,108,75,112,96,110,100,113,111,101,101,106,108,105,98,100,100,102,108,98,108,96,96,103,108,105,107,112,109,107,106,100,102,115,102,99,105,104,96,95,106,100,108,100,112,106,100,105,113,108,98,106,104,98,106,108,107,106,114,106,100,98,109,102,104,105,113,117,111,93,101,112,99,113,116,103,103,100,105,100,109,108,99,99,111,109,108,110,110,101,106,103,101,119,114,100,103,104,112,107,93,83,108,105,102,93,112,111,102,105,110,92,98,112,103,106,110,106,91,107,109,113,104,97,95,103,104,106,105,104,105,107,101,110,107,102,107,99,100,102,98,109,101,107,105,110,104,90,102,102,103,115,92,118,115,102,111,106,95,83,109,101,125,128,108,96,97,103,104,96,105,103,104,98,100,107,113,107,107,104,109,104,104,102,104,99,104,99,107,96,100,114,104,102,95,104,82,109,98,97,104,104,96,97,92,98,103,109,112,117,98,106,112,102,99,99,106,100,98,113,135,102,97,117,122,106,98,107,111,115,100,101,106,108,92,96,110,103,113,102,100,101,106,109,102,93,99,120,108,112,102,101,98,109,99,100,104,101,99,104,115,108,110,108,115,102,108,103,113,105,100,105,104,116,96,110,94,100,103,102,107,117,106,102,103,89,96,104,106,103,110,92,99,112,100,106,113,104,109,108,98,97,118,107,109,98,102,98,106,97,100,94,100,102,108,107,105,91,103,97,117,102,108,112,108,86,106,83,104,102,101,113,97,114,110,103,109,102,106,92,109,99,100,104,110,103,116,99,107,109,90,104,98,109,100,109,102,95,104,92,104,107,101,112,112,103,111,103,104,108,97,96,93,103,111,101,118,101,93,100,103,120,104,102,113,106,106,106,97,94,98,101,101,93,103,102,97,110,100,104,94,101,105,110,105,95,107,93,103,109,108,105,94,106,106,102,97,110,101,101,105,116,102,90,96,93,111,107,115,109,117,98,100,95,107,103,119,98,124,106,122,117,102,100,119,102,110,110,113,103,105,108,104,106,104,115,103,100,103,100,91,110,108,112,99,104,103,109,107,102,101,102,102,121,103,104,109,113,95,102,95,103,106,106,102,99,108,110,108,105,106,99,98,115,110,97,104,85,95,104,110,99,115,103,85,121,105,106,104,111,112,117,117,111,97,97,91,111,97,106,107,100,108,117,110,104,104,108,98,101,104,100,110,115,99,102,95,104,109,101,94,101,103,109,105,106,114,96,113,96,100,99,116,101,104,99,96,105,98,109,105,109,111,106,109,96,105,104,109,101,118,93,105,111,98,113,121,97,99,102,103,103,107,109,96,109,109,110,106,98,103,101,103,110,94,100,100,117,109,98,98,101,99,109,104,109,98,99,88,99,110,106,96,81,124,96,110,83,96,104,87,105,105,100,91,105,99,106,108,108,109,102,104,102,109,112,100,124,109,106,89,104,118,108,104,105,103,100,108,100,91,86,113,97,107,106,101,101,102,105,127,113,105,117,100,98,99,102,106,106,96,119,102,95,94,108,103,101,101,98,103,90,105,103,116,101,112,117,102,94,98,107,91,123,101,114,85,103,102,102,98,102,111,109,106,105,113,111,91,111,111,106,109,99,107,107,104,100,102,106,95,110,101,98,97,107,103,109,105,105,104,101,103,90,88,104,115,99,100,106,101,109,105,94,104,117,130,101,107,65,107,79,115,112,110,110,107,91,92,110,96,97,99,106,109,107,110,103,109,100,101,101,98,110,102,110,100,104,96,106,108,95,116,111,101,112,104,113,98,111,102,117,103,98,91,94,94,92,110,104,116,94,95,92,104,100,100,109,99,102,106,114,99,66,103,106,131,101,109,117, +452.25845,91,87,99,105,95,106,91,99,110,106,94,101,95,87,99,103,105,91,103,99,109,105,93,117,101,103,92,105,96,106,94,102,95,109,98,107,88,92,94,98,91,94,103,105,100,109,101,98,101,98,107,102,93,101,104,99,99,105,96,90,101,102,92,100,108,109,103,90,76,98,72,112,106,101,98,110,97,100,81,101,105,91,106,105,101,82,96,102,98,88,97,93,105,91,106,95,98,106,103,101,102,97,107,94,106,105,100,125,99,97,93,85,114,104,110,94,105,98,98,99,96,94,107,94,93,99,96,103,115,102,103,94,91,81,97,92,87,98,101,103,96,94,83,108,100,97,99,100,96,87,103,98,108,103,107,99,99,96,115,105,89,106,104,97,99,103,104,114,103,101,101,104,104,91,104,99,91,129,104,99,87,86,100,107,117,99,93,104,92,87,96,109,118,93,91,102,110,94,102,105,96,93,98,105,117,94,95,122,99,107,89,108,96,101,100,100,96,89,105,108,104,95,101,102,105,105,98,100,105,98,96,99,82,81,110,109,107,109,103,102,114,109,98,106,105,91,109,108,108,120,106,111,115,104,100,113,105,98,101,97,95,118,112,108,105,105,104,111,101,100,104,99,97,109,112,110,104,106,98,128,99,104,100,100,96,117,100,101,99,103,110,106,126,107,116,94,107,111,107,120,101,102,102,128,91,95,106,107,107,107,96,112,103,107,105,104,104,98,108,101,92,102,106,120,104,103,103,99,102,100,108,96,106,107,102,97,102,98,101,102,95,104,95,97,97,75,112,105,101,95,93,111,106,106,98,95,100,104,108,111,104,94,102,100,92,110,94,116,97,121,105,108,102,108,97,101,104,106,110,98,100,115,98,102,97,101,101,105,104,87,105,102,98,108,97,96,112,100,99,111,102,94,96,110,106,111,96,108,108,113,103,97,108,105,102,108,117,107,116,95,105,96,110,105,113,98,94,116,114,97,95,90,98,107,98,98,99,104,111,109,96,98,109,112,99,100,96,104,98,108,110,110,111,103,100,104,101,103,106,95,97,99,103,96,100,101,109,107,101,106,99,111,105,100,102,104,99,109,106,101,92,108,105,100,107,108,103,96,103,106,108,114,114,92,102,113,95,105,105,106,106,98,107,109,99,100,104,116,99,105,117,95,92,101,109,103,99,110,97,107,117,109,93,113,103,112,105,110,103,93,105,100,105,99,92,102,109,104,91,107,90,114,94,107,102,95,107,96,103,103,108,102,103,102,94,95,116,102,102,104,94,103,94,101,92,101,106,108,100,99,101,90,113,111,100,104,98,95,103,106,100,101,110,103,112,106,108,106,110,104,107,104,100,106,105,114,109,103,100,99,105,108,107,101,107,101,101,94,105,104,103,103,103,106,109,100,98,110,98,103,104,113,103,125,96,99,91,113,107,111,104,90,97,106,107,98,94,97,105,101,100,108,113,105,99,98,111,85,101,98,108,101,114,106,116,103,104,102,104,90,105,107,113,119,90,102,101,100,97,104,107,104,94,95,95,112,98,103,105,109,101,99,117,99,106,105,92,110,110,103,106,107,109,111,110,102,95,108,92,109,102,103,100,82,109,102,98,110,94,105,97,94,107,102,106,99,99,98,108,105,99,101,106,114,103,98,106,97,102,111,104,105,77,109,99,99,113,92,105,117,113,100,109,102,121,80,98,105,102,99,98,104,110,105,110,96,102,111,97,96,95,105,108,109,90,97,111,108,97,101,113,99,104,102,98,112,102,94,97,108,110,94,107,109,104,110,119,104,108,112,93,104,103,106,107,113,124,110,96,107,104,102,95,74,111,103,102,103,113,100,106,102,105,109,104,100,108,108,107,104,109,117,100,96,109,99,110,108,98,101,113,108,108,102,117,117,104,97,107,112,105,109,114,96,104,100,100,106,102,98,102,102,92,101,105,98,101,93,96,90,98,93,110,114,105,108,101,97,104,112,76,117,105,102,108,94,109,96,96,99,102,98,101,105,103,103,105,107,111,105,108,113,121,110,111,118,107,103,95,91,109,97,94,109,100,93,107,92,92,102,96,96,108,108,101,94,108,117,95,84,124,98,106,112,113,108,115,106,102,99,93,104,105,100,113,95,96,101,106,102,108,109,123,100,102,109,97,97,103,107,100,102,102,105,102,103,104,105,91,100,111,102,105,95,105,123,87,90,103,100,100,100,98,101,104,96,105,99,94,107,108,109,106,99,97,106,99,100,101,112,98,116,106,107,108,72,104,102,104,101,92,97,99,109,104,114,110,99,103,102,105,90,103,98,91,109,96,102,98,117,98,111,104,99,104,105,95,108,106,99,105,105,113,102,96,93,102,109,95,102,106,107,98,102,95,118,95,99,97,105,114,119,97,96,100,110,92,93,103,102,90,101,119,110,89,99,103,101,110,96,95,116,96,103,98,99,106,99,99,100,103,109,97,113,94,92,97,94,120,105,99,100,102,113,98,97,97,99,109,98,92,99,102,97,91,112,96,103,103,98,96,100,107,102,99,91,122,102,101,102,94,103,81,89,104,99,87,99,96,94,99,109,104,108,106,106,106,99,93,107,96,82,85,106,104,96,99,92,107,103,112,100,110,92,102,102,110,91,95,106,96,101,99,108,98,113,100,105,109,88,92,111,100,111,100,104,99,127,87,111,105,129,88,102,109,94,95,105,106,93,91,113,93,101,111,99,109,103,107,109,99,100,110,116,89,102,106,112,110,107,103,102,98,107,101,100,102,108,100,97,99,103,93,106,94,106,93,80,102,103,113,106,110,99,97,94,105,112,96,111,109,104,96,102,95,107,100,112,97,109,98,105,105,109,75,100,112,100,100,100,117,108,85,107,90,96,108,107,103,113,97,107,103,122,102,106,103,99,98,118,108,96,102,98,109,100,98,93,104,112,101,108,98,118,95,102,98,101,91,111,101,104,102,106,98,101,107,96,112,104,95,100,96,86,91,112,80,119,92,98,105,106,106,100,108,105,103,108,120,93,98,99,95,110,109,87,109,101,100,107,103,103,98,99,103,106,113,116,114,99,113,101,110,101,105,104,107,88,93,94,108,96,111,109,114,89,106,109,107,112,108,100,104,105,111,106,103,102,98,107,102,103,92,88,106,105,98,90,90,92,109,91,106,109,101,96,78,93,79,96,109,100,94,106,98,96,117,98,106,99,111,100,92,100,101,89,100,94,80,106,99,109,105,91,101,107,106,97,109,98,104,91,109,110,119,97,105,111,98,101,95,100,98,98,102,103,98,107,102,90,104,87,109,87,103,99,111,107,98,91,106,115,92,59,90,121,103,98,97,94,102,113,99,102,104,72,104,100,94,109,95,108,109,101,93,100,106,104,99,104,100,99,100,95,111,98,105,96,106,110,89,104,107,107,119,98,111,102,111,103,99,79,97,97,95,96,118,104,96,96,95,107,107,107,112,101,95,97,97,110,108,108,91,107,107,108,96,106,107,102,109,97,104,104,105,100,87,112,108,97,113,101,98,101,103,107,115,107,106,101,84,99,106,99,101,104,108,92,92,108,95,105,100,109,102,97,97,101,95,101,100,86,92,117,113,101,104,102,104,108,92,106,97,109,105,93,112,97,108,104,104,101,100,95,105,92,111,98,98,105,103,102,101,108,110,101,92,103,103,93,103,103,104,97,94,98,110,109,102,101,117,97,105,101,113,103,100,101,98,108,117,99,108,96,118,106,103,110,107,99,113,117,104,95,101,102,100,105,100,106,101,97,108,100,108,91,108,101,106,111,96,110,94,100,108,78,100,103,102,95,80,101,115,99,102,104,111,99,105,106,95,113,99,95,96,94,113,108,99,98,94,93,107,100,103,103,101,101,101,95,98,106,96,97,96,128,95,104,108,96,107,95,95,107,100,102,100,106,98,109,96,95,106,93,110,102,95,99,105,114,95,103,108,97,109,96,105,120,105,109,99,104,102,108,105,99,98,102,100,98,98,103,99,94,95,97,104,99,105,110,99,103,101,109,104,103,103,92,108,103,104,104,89,97,113,114,106,117,113,94,106,96,103,100,103,102,102,106,96,103,108,105,103,106,111,100,109,111,87,109,112,111,103,102,100,98,110,112,109,117,100,105,103,106,89,99,99,104,106,95,104,109,85,97,101,104,102,99,101,102,97,93,104,99,95,106,99,107,106,98,112,102,117,117,99,99,100,113,108,106,118,92,109,102,97,101,107,101,112,104,84,100,111,100,87,108,99,102,114,100,108,98,118,104,105,104,94,100,92,106,102,104,98,94,105,108,107,89,90,116,92,109,108,98,136,100,120,110,101,110,111,103,108,101,95,101,104,104,102,98,95,102,108,95,90,105,104,113,101,92,105,105,94,105,98,104,108,113,103,90,100,106,100,107,99,108,99,99,104,99,139,110,113,90,101,102,113,96,98,100,101,108,102,97,96,91,109,96,96,104,90,100,94,99,114,104,98,101,101,103,89,96,91,99,92,101,113,96,109,89,93,93,99,105,97,102,101,106,97,92,92,89,114,109,107,95,96,113,103,98,97,102,100,98,106,98,104,87,110,86,109,88,110,109,103,97,100,98,115,94,104,100,111,98,93,104,101,105,95,104,100,102,117,108,105,101,93,103,113,106,94,119,111,92,91,84,95,97,101,96,92,98,82,107,105,90,105,103,106,95,102,104,107,100,98,101,116,97,90,100,100,97,98,109,99,92,107,107,102,113,87,92,94,102,93,93,98,118,119,106,90,94,104,101,116,105,117,87,111,106,101,100,99,99,105,112,112,102,92,100,134,102,105,92,104,103,85,106,98,88,110,98,103,89,94,120,96,88,92,124,96,105,106,98,98,109,90,118,102,111,103,108,82,99,112,100,111,92,98,97, +452.39883,95,106,99,90,89,95,107,88,114,93,105,116,108,97,130,112,99,103,95,113,86,96,93,120,98,106,131,95,104,107,106,99,93,105,101,104,101,92,96,113,110,98,93,107,89,109,94,107,111,93,113,95,99,120,100,95,105,88,120,99,104,96,102,104,101,103,104,94,109,92,100,100,105,109,99,111,87,106,114,120,94,108,101,97,93,102,102,101,102,109,99,101,100,96,105,102,92,110,108,113,96,89,99,106,100,107,110,100,102,101,101,111,114,95,101,100,109,104,122,106,105,93,109,99,104,109,108,110,112,110,116,114,108,118,95,106,103,105,92,96,95,108,95,113,97,99,100,101,94,109,106,96,103,104,106,108,104,99,105,101,102,96,109,101,114,103,94,101,106,113,105,97,107,92,106,96,100,103,101,109,102,106,113,110,96,108,94,107,100,97,91,97,103,96,106,104,110,114,100,102,86,98,85,95,108,86,100,105,106,98,106,98,107,104,91,95,103,116,97,99,98,95,117,102,99,110,99,107,82,107,90,106,110,100,99,119,94,107,100,105,107,103,106,106,90,104,105,113,99,107,113,95,96,96,96,100,109,102,108,104,105,99,104,105,105,106,101,103,113,105,106,102,107,98,99,96,99,101,97,109,102,84,104,101,102,111,91,104,104,109,106,94,118,114,105,111,121,100,98,106,109,103,104,112,98,99,105,114,105,110,109,106,108,106,104,106,101,109,99,98,117,99,109,93,106,107,107,95,107,113,103,95,91,101,110,94,105,111,110,99,105,113,109,122,94,110,116,95,109,99,93,118,108,93,110,110,104,100,99,104,100,112,98,105,103,107,98,109,95,107,100,99,121,113,105,101,103,113,106,98,118,97,104,111,112,91,94,110,98,107,99,97,107,119,90,94,99,102,93,99,109,94,103,90,103,98,94,108,104,112,83,110,109,112,101,93,87,97,108,91,108,100,92,98,92,106,97,93,98,128,100,114,91,104,98,90,103,109,100,96,106,101,103,110,96,110,97,108,106,108,101,100,92,120,110,110,101,106,108,101,100,103,101,104,116,94,102,97,105,114,97,100,118,94,104,95,103,103,99,106,89,111,105,101,102,110,107,105,113,96,108,105,106,104,92,107,110,110,96,94,108,105,107,123,100,99,93,89,97,121,99,106,96,125,97,100,110,100,107,99,90,120,114,96,107,102,104,92,105,115,107,105,106,104,108,109,118,99,103,115,80,116,97,113,117,103,99,99,109,106,110,105,106,105,91,100,105,98,105,100,105,114,96,109,104,104,97,109,107,96,109,107,105,99,106,92,114,108,110,103,104,100,107,114,103,103,107,108,109,107,99,100,101,105,103,110,100,105,111,107,93,104,105,89,100,115,98,105,87,100,108,91,104,94,117,86,106,109,102,109,99,100,116,113,106,107,101,104,111,108,117,102,93,99,105,111,109,100,107,95,122,107,98,103,114,102,103,99,101,113,108,96,96,108,86,105,105,108,109,113,94,109,120,105,94,104,99,97,104,109,97,108,118,99,103,113,106,108,111,98,106,101,118,96,109,90,112,98,99,94,94,107,103,110,97,107,106,92,105,97,109,114,103,108,93,113,95,110,93,102,99,100,103,107,113,99,97,103,113,108,104,99,101,110,102,90,107,86,114,112,92,113,93,107,106,104,102,116,114,100,102,101,112,108,103,111,101,109,102,112,113,103,111,106,114,103,106,101,107,97,95,110,92,116,88,108,106,91,95,94,106,100,104,108,113,116,92,87,100,97,104,103,109,96,113,112,105,109,113,107,108,103,109,91,109,102,99,109,102,97,109,95,88,102,99,113,105,110,98,99,104,99,110,105,110,99,118,117,110,98,101,95,105,109,102,112,98,77,115,86,110,110,103,114,97,120,106,103,103,110,105,87,111,100,99,98,106,99,101,89,98,93,94,115,112,124,74,103,95,105,96,95,100,108,99,108,100,89,113,102,104,105,99,104,86,94,99,117,107,107,97,102,109,106,111,96,98,100,100,103,108,104,101,106,110,81,98,101,99,91,94,114,96,112,103,90,94,103,98,103,107,89,104,109,111,82,78,114,92,117,102,99,114,100,108,102,108,108,102,110,108,110,108,108,107,95,106,99,119,102,95,100,102,119,103,100,102,100,110,100,100,102,109,103,110,104,103,94,96,99,107,103,90,104,111,109,95,104,104,113,108,102,86,112,101,100,107,91,94,103,100,114,107,102,94,103,87,99,102,95,106,105,113,105,103,101,99,100,100,120,94,104,110,99,109,121,116,117,88,106,107,106,104,110,85,91,107,101,111,95,98,104,92,95,103,102,89,98,109,108,113,116,107,96,96,95,113,112,109,114,106,99,98,111,105,93,105,103,102,101,101,105,110,102,101,109,117,106,102,91,92,98,103,100,91,97,90,98,99,97,83,92,100,102,99,106,96,102,95,103,106,101,112,97,123,102,91,99,116,99,107,93,94,100,98,131,114,103,108,112,104,92,114,108,101,104,106,109,117,109,93,94,100,102,112,90,109,113,100,102,104,103,105,93,107,107,106,108,107,91,127,103,107,109,104,99,104,106,103,107,122,100,94,120,106,91,99,105,125,103,105,109,109,99,107,103,109,105,111,112,110,104,105,87,108,113,110,104,104,99,120,109,106,108,94,106,117,118,113,107,102,118,98,105,116,106,107,101,100,105,103,107,109,89,95,101,110,102,106,100,103,103,109,104,105,116,105,104,97,107,106,121,95,105,115,102,111,99,111,101,95,107,106,99,98,99,106,100,116,105,99,103,107,113,106,117,104,103,94,100,102,95,108,106,102,106,95,104,107,104,98,116,120,102,100,116,99,102,105,121,107,97,108,109,106,105,105,97,107,102,109,112,113,119,112,99,111,111,98,112,108,99,114,108,112,109,101,106,92,104,114,105,103,103,108,110,108,109,102,108,112,101,107,107,107,100,119,100,99,99,102,95,100,108,87,112,103,106,84,97,120,103,105,109,105,95,109,105,101,112,109,95,106,104,123,117,89,96,101,99,110,97,123,99,92,98,104,106,108,107,92,110,94,110,94,103,108,106,110,103,99,104,105,92,109,107,123,99,103,99,114,104,103,111,107,97,109,106,102,94,106,109,110,104,108,98,107,94,100,103,110,103,102,106,102,102,97,101,121,104,105,83,93,105,102,100,109,113,102,103,95,69,109,125,119,101,101,106,109,112,80,76,105,104,106,92,102,102,109,104,108,113,106,119,105,105,105,110,89,97,92,109,105,102,102,110,118,102,112,102,107,97,104,103,100,106,77,107,84,90,117,103,104,102,91,106,98,107,102,106,92,111,107,115,115,103,97,96,115,101,91,101,99,99,99,103,108,97,92,96,99,105,100,103,103,104,108,99,96,100,92,84,104,106,98,104,103,88,117,100,96,95,100,108,103,95,99,115,103,107,107,108,109,101,104,106,98,88,102,99,105,109,111,105,104,104,102,100,115,97,109,124,112,110,108,110,114,109,99,102,118,105,102,94,96,103,104,120,105,114,102,97,109,104,112,99,101,98,104,114,102,105,111,100,98,110,103,102,107,107,112,76,103,106,117,106,115,112,108,109,74,105,110,106,107,100,137,110,104,108,102,100,116,84,105,99,110,114,104,103,95,107,103,110,108,92,102,103,108,112,98,106,119,114,100,107,101,100,109,108,108,96,114,111,124,110,105,103,105,106,87,100,115,108,106,103,113,102,100,96,106,96,110,96,101,107,108,104,117,108,105,111,113,103,100,108,99,108,94,113,101,107,96,117,101,102,92,115,101,109,112,104,109,111,98,108,99,113,110,109,112,97,110,105,110,94,103,101,94,101,108,105,112,106,102,105,108,102,100,111,98,100,102,101,104,103,117,109,98,117,98,96,121,101,106,110,106,97,113,102,107,94,100,106,111,112,101,136,101,95,104,109,103,116,106,107,114,116,105,102,100,117,86,114,110,100,97,105,95,95,100,111,111,100,110,114,117,101,108,107,115,99,112,98,113,92,98,97,116,119,114,109,109,111,119,111,112,108,102,112,98,99,91,101,94,106,106,116,104,117,99,110,101,107,105,107,99,107,116,104,110,108,118,101,113,89,110,110,117,108,109,103,113,90,115,98,101,110,105,112,98,109,97,96,108,122,108,108,102,100,98,112,115,110,113,107,99,111,106,112,106,119,105,103,88,113,106,114,85,107,113,107,104,94,97,108,106,104,105,112,100,97,112,98,104,108,103,104,112,114,108,106,121,88,108,92,112,110,104,108,102,111,111,92,103,100,106,102,100,104,88,111,112,112,107,132,101,104,101,108,117,96,101,107,113,102,125,97,99,99,107,109,111,113,103,99,99,98,99,113,110,98,91,104,94,110,111,108,107,95,111,106,99,121,102,112,99,104,105,99,115,101,102,96,105,96,94,98,106,105,105,105,103,99,110,104,108,103,99,104,110,109,92,103,100,107,112,99,106,104,105,97,113,113,101,105,108,100,108,96,121,117,109,95,105,108,94,111,107,107,106,102,87,92,111,107,105,112,113,105,97,83,109,109,98,106,107,100,97,102,105,78,111,81,130,97,110,109,112,108,106,93,103,116,101,108,102,108,104,107,110,102,101,99,99,100,116,98,105,102,105,88,114,114,104,87,98,110,108,98,95,101,102,115,108,93,98,113,100,106,86,114,103,110,91,100,102,107,108,101,105,100,89,101,102,104,122,95,98,106,104,106,113,94,96,100,112,111,108,117,94,104,112,108,106,101,104,107,96,98,106,107,111,98,105,114,96,100,112,101,103,98,92,105,117,116,132,112,106,107,102,114,103,93,103,78,98,104,105,105,110,107,111,95,109,100,98,100,121,104,101,108,101,82,107,92,100,86,116,107, +452.53925,101,96,72,92,108,99,92,87,117,101,101,125,100,99,89,124,108,104,96,104,104,104,95,97,100,91,102,111,113,101,99,109,100,112,107,116,94,98,98,97,91,106,104,96,110,105,93,111,108,107,104,101,101,96,95,101,105,96,98,79,104,102,87,105,106,105,95,90,106,94,109,107,93,103,102,105,99,109,108,101,104,100,106,104,92,105,109,101,98,78,107,107,100,104,110,100,98,106,111,90,93,116,105,102,94,99,98,113,88,112,99,116,102,78,105,106,93,98,110,95,118,91,113,107,105,105,103,88,116,106,96,106,107,95,99,102,111,99,104,108,102,114,108,103,106,96,116,102,99,100,107,102,110,96,100,76,95,106,88,107,101,102,98,104,104,108,93,101,97,104,103,102,101,111,109,103,95,100,110,93,91,106,102,111,104,92,100,86,105,97,98,99,118,112,100,102,110,98,102,109,117,100,105,132,100,106,103,101,108,127,100,105,101,120,94,98,98,120,116,98,111,96,115,102,107,100,113,102,101,99,105,91,102,105,105,100,103,104,99,105,101,109,110,106,100,107,99,102,102,98,101,100,100,119,97,105,91,98,104,100,104,105,101,98,99,100,114,93,103,110,101,104,96,96,90,106,102,107,93,111,91,99,101,98,103,100,94,112,104,113,102,98,110,103,118,106,97,87,103,95,99,105,82,109,104,104,117,119,101,107,94,117,100,104,100,105,117,95,102,116,98,105,114,106,103,104,112,100,105,102,107,110,105,100,106,96,97,113,100,103,108,106,92,69,92,116,101,108,105,105,104,108,110,109,114,123,126,113,90,112,107,94,105,98,114,101,102,106,103,111,112,110,87,98,108,103,99,109,114,106,111,104,102,103,97,115,92,104,89,93,119,97,103,102,105,97,90,103,108,105,101,98,118,102,103,116,107,109,107,108,92,92,97,108,99,106,109,109,121,108,97,99,106,100,99,110,107,94,102,113,113,110,95,107,106,94,108,98,99,96,103,114,103,101,95,99,102,99,86,111,101,94,103,95,95,93,72,89,103,104,84,105,104,103,99,100,108,105,104,106,112,103,105,93,114,110,97,124,99,105,98,110,116,106,108,103,104,106,103,94,113,103,115,99,70,112,100,108,105,114,102,107,96,108,95,102,102,106,112,104,91,107,101,108,104,93,107,110,103,115,112,113,104,100,112,99,100,102,109,96,97,106,101,96,91,109,96,102,93,113,107,106,105,109,99,105,109,94,108,111,97,107,99,113,87,116,105,109,97,97,99,104,110,107,103,100,101,110,98,99,95,110,121,109,103,109,106,95,99,95,105,97,115,92,107,101,102,106,99,102,105,105,107,79,111,78,113,101,106,104,95,101,104,87,108,108,104,107,103,109,108,96,99,98,84,109,102,70,106,105,106,109,104,88,107,108,100,96,112,116,98,102,100,117,100,101,105,100,99,95,99,106,109,103,99,82,101,103,100,111,122,115,110,98,109,101,98,121,102,103,113,109,101,105,86,122,103,94,105,110,108,77,121,109,96,118,101,99,104,116,105,108,112,99,101,105,103,98,110,95,110,104,104,112,115,99,99,109,107,95,109,103,98,95,115,93,91,86,101,104,104,106,104,103,99,105,92,97,94,105,99,95,95,94,100,105,93,87,106,103,103,107,95,97,99,104,109,105,145,104,100,98,88,98,100,94,113,107,90,104,95,102,103,96,106,98,102,104,100,98,112,96,99,112,99,120,100,110,88,109,111,96,101,109,99,115,126,113,100,98,105,105,93,105,102,105,100,98,103,114,100,102,101,113,101,101,110,111,115,104,106,97,103,113,109,97,107,121,125,106,118,105,101,109,106,106,107,102,108,99,104,107,110,82,108,107,106,102,118,103,112,103,114,119,104,112,97,116,105,111,105,108,98,105,90,97,107,101,91,101,106,95,117,103,112,117,101,103,101,115,90,108,102,106,100,101,108,100,110,105,101,108,107,102,103,102,117,106,91,100,97,98,107,109,101,104,85,103,104,116,109,105,103,114,109,105,96,112,105,109,108,104,98,112,98,101,96,98,101,101,106,113,101,106,111,102,90,108,79,102,112,99,102,107,99,87,97,110,98,108,107,106,101,107,117,100,95,100,111,86,111,105,113,106,105,89,109,109,88,108,101,109,107,107,98,111,110,113,112,97,113,103,108,96,100,116,100,90,96,106,99,98,98,112,110,97,119,101,86,101,107,108,105,104,104,107,97,98,101,122,98,99,117,113,113,101,94,102,99,104,105,96,96,100,114,106,99,112,100,95,95,106,99,113,103,104,106,109,101,105,98,107,95,105,106,96,105,111,113,92,100,104,108,106,99,95,97,116,104,106,102,100,102,95,109,103,113,85,92,68,113,109,100,99,102,103,98,104,88,91,105,108,107,110,111,97,99,104,99,98,105,99,98,104,105,103,111,112,108,94,108,101,93,104,112,98,96,109,105,109,108,109,105,98,102,100,93,99,107,98,120,112,101,96,99,99,113,93,104,86,97,109,100,99,99,104,103,105,101,103,117,96,95,99,99,92,118,108,99,102,108,100,95,114,116,103,88,103,112,96,105,103,103,106,107,105,112,109,104,97,110,103,107,105,105,91,104,103,104,106,105,100,111,99,110,102,95,77,109,102,97,112,102,98,94,94,100,99,111,97,111,87,88,91,88,93,104,97,94,95,107,94,103,100,89,97,100,86,104,112,96,98,104,100,99,102,91,111,103,105,97,102,94,96,105,94,105,102,91,96,119,116,103,94,102,103,107,96,95,101,85,94,94,104,81,97,106,111,105,108,97,88,98,87,99,108,84,100,110,81,87,109,104,100,94,105,98,97,110,110,109,102,98,104,117,117,107,85,101,97,99,94,112,108,79,86,112,104,91,102,95,106,102,102,100,83,116,102,110,107,97,118,106,99,102,102,98,100,103,105,111,106,91,102,102,108,112,113,99,109,96,107,105,100,99,107,99,109,98,120,105,101,103,102,110,116,112,98,107,108,109,107,111,106,112,118,101,96,91,101,101,97,102,92,104,102,110,96,106,96,89,96,110,99,85,99,120,102,95,102,106,109,106,105,116,99,106,120,89,95,103,102,98,117,105,101,100,113,95,93,103,101,86,89,83,97,105,94,106,105,97,104,110,100,96,117,100,81,94,101,108,98,104,86,98,105,105,102,106,101,97,103,93,95,93,104,97,91,89,94,115,108,100,95,108,105,105,92,109,99,109,100,108,104,113,107,100,101,98,104,81,90,102,87,102,100,103,108,102,97,110,111,112,96,108,104,115,89,102,107,103,108,97,116,106,109,97,105,92,97,109,109,108,103,107,105,98,101,90,101,111,106,93,99,96,98,95,94,96,87,109,101,95,100,106,106,100,101,110,102,95,94,91,102,97,99,93,94,96,92,96,107,107,91,101,105,99,99,102,106,100,101,92,102,99,104,104,95,104,95,106,95,96,96,97,111,101,102,104,103,94,100,99,134,99,98,107,91,95,100,100,99,87,97,103,108,104,101,87,95,98,92,101,96,104,99,103,101,105,102,111,104,99,104,92,100,91,89,119,99,109,113,98,101,105,104,99,107,105,106,91,114,101,101,97,96,92,103,99,102,102,103,117,100,103,94,109,94,97,97,100,98,99,103,98,97,109,101,105,100,105,100,91,103,91,82,106,100,97,85,93,96,99,74,105,93,94,93,99,91,101,99,106,102,91,98,103,94,100,103,98,101,110,88,103,103,105,108,102,98,95,108,111,103,99,99,98,99,94,104,102,104,102,102,95,109,113,108,102,107,109,108,105,107,86,113,93,96,93,105,103,108,116,85,103,133,97,106,96,95,102,103,94,65,105,105,82,92,107,96,97,115,98,100,105,91,100,113,114,106,109,99,95,107,90,102,83,99,94,104,105,97,106,104,105,102,95,100,112,95,92,97,102,112,108,106,100,96,93,100,95,97,101,94,108,104,99,101,98,98,106,92,89,102,99,108,95,99,100,103,104,96,107,101,98,101,96,102,102,101,94,102,83,99,105,103,99,86,105,94,103,113,86,94,94,103,87,95,95,107,99,100,109,111,104,106,92,113,87,100,100,104,100,106,117,101,103,99,91,98,91,96,100,113,95,95,120,109,99,95,99,101,92,99,116,98,103,99,101,105,100,104,110,99,112,121,105,111,110,102,115,113,113,105,101,108,94,104,100,118,104,109,97,103,100,100,102,112,114,102,94,102,110,101,106,95,88,106,83,94,98,105,108,110,96,102,106,90,93,102,87,95,98,94,100,91,101,106,98,96,104,94,107,83,98,94,93,95,95,94,100,97,88,107,85,93,99,91,97,120,92,99,90,103,101,96,99,87,104,93,100,101,95,100,90,105,102,108,105,104,99,99,94,101,91,103,92,100,102,92,115,99,104,87,104,99,101,91,94,106,104,102,91,100,105,99,104,68,94,106,94,103,94,92,98,98,122,99,96,86,107,90,108,116,102,99,101,106,101,92,87,91,96,108,99,90,104,99,107,110,93,108,95,94,104,99,106,98,97,91,115,106,102,95,102,106,114,112,103,89,101,97,103,105,116,93,105,98,105,116,95,117,97,99,100,114,104,100,93,87,110,98,108,94,103,107,96,96,98,98,90,93,105,90,107,94,104,115,96,78,105,95,108,104,115,101,111,111,98,97,105,122,104,102,95,101,99,93,94,105,86,107,93,82,95,104,101,97,87,98,99,104,106,102,95,88,91,92,105,101,105,87,99,119,107,100,90,92,109,98,100,90,104,87,96,106,107,110,90,102,96,91,100,77,129,94,90,95,106,97,94,101,105,115,106,99,94,93,91,89,99,70,114,95,105,107,89,100,114,104,101,80,97,70,83,110,93,94,95,104, +452.67966,105,105,101,96,90,106,97,112,91,101,109,104,108,101,118,108,104,109,93,101,93,92,96,106,109,96,95,101,95,103,88,80,93,99,108,70,106,92,106,93,87,101,105,103,102,99,104,119,102,95,100,97,98,106,105,90,100,87,133,108,96,107,99,88,97,107,90,98,109,103,104,101,108,109,86,92,99,95,110,107,101,113,98,103,95,116,105,106,110,104,96,97,79,106,90,96,118,96,96,92,90,108,105,109,94,103,96,102,100,101,102,117,111,100,108,110,102,101,109,104,94,110,105,103,101,109,125,85,104,97,100,101,95,106,96,90,101,111,109,106,102,113,109,105,102,101,111,103,97,92,103,97,98,109,101,105,104,100,107,100,110,95,113,101,104,102,97,98,102,108,110,94,109,96,97,94,108,109,101,99,105,108,103,109,78,100,110,83,91,99,108,105,98,112,110,98,95,105,95,105,93,98,100,107,102,115,108,104,108,105,102,109,114,110,106,95,95,91,91,104,106,88,99,83,95,110,98,105,103,103,89,106,104,100,101,104,106,115,98,104,105,102,87,106,91,98,119,106,101,95,96,102,99,108,99,92,102,111,104,106,88,109,101,97,86,99,104,102,93,97,110,105,97,90,112,104,95,105,109,105,89,103,91,101,97,97,90,108,98,108,90,105,103,103,110,106,106,101,102,115,112,103,83,105,96,118,92,99,104,109,78,96,109,105,103,88,94,108,94,96,92,91,115,106,85,94,99,102,102,102,87,92,102,105,97,100,88,97,102,97,98,105,94,102,102,105,98,109,98,89,116,100,107,101,98,103,103,102,108,113,96,93,101,98,93,102,104,100,116,109,100,97,109,90,117,106,109,100,98,101,101,106,91,114,97,98,96,94,105,112,105,96,88,97,103,93,107,98,112,105,110,105,100,104,107,99,113,108,109,96,90,118,106,99,102,90,103,120,102,94,101,95,105,90,105,95,99,90,104,112,102,95,107,76,106,78,101,101,101,96,113,100,94,99,90,94,90,97,114,105,96,101,111,96,98,104,104,106,110,109,97,92,95,103,106,104,100,106,105,98,98,91,101,101,101,93,113,100,99,113,105,97,135,95,92,101,108,100,105,101,108,104,99,103,105,96,99,115,107,93,107,99,92,110,106,109,100,100,103,97,114,92,108,101,99,98,117,100,103,91,104,107,105,92,100,94,107,95,109,97,94,105,114,90,102,108,103,102,100,108,102,106,97,101,103,93,104,95,91,103,112,129,95,101,88,88,106,94,77,94,108,98,103,104,109,100,107,99,105,98,99,102,102,105,107,108,102,135,112,98,109,100,100,91,106,112,101,113,99,95,120,99,98,102,112,102,93,105,108,99,123,104,110,104,106,102,100,97,104,107,88,99,104,102,114,90,97,117,106,101,105,107,96,116,119,96,93,101,114,97,90,107,102,108,101,109,90,101,92,105,106,102,99,102,104,97,102,101,110,108,107,113,100,111,109,92,101,110,110,96,110,96,96,101,99,99,95,100,112,99,98,139,110,97,83,98,98,95,106,114,107,113,105,104,96,112,108,110,111,112,97,105,106,111,104,102,104,100,98,92,103,103,99,98,123,95,104,102,100,108,102,100,100,71,91,101,103,113,101,101,103,91,97,97,95,102,105,106,106,112,114,97,96,103,110,109,103,101,104,110,118,104,103,91,103,105,112,109,112,108,109,98,121,92,121,107,109,94,107,97,104,108,106,103,96,117,98,101,96,105,98,101,103,90,103,107,81,106,94,97,98,115,112,104,87,102,93,102,101,105,106,105,108,103,100,100,101,93,103,104,107,95,90,111,105,112,96,106,100,113,110,105,97,86,107,109,108,105,103,113,113,122,116,120,103,104,106,105,96,86,87,100,125,94,95,101,104,108,100,96,95,119,99,89,100,111,84,106,99,101,81,103,96,105,92,102,107,107,98,97,101,99,111,107,100,108,103,97,111,102,99,109,102,109,103,99,112,97,102,103,96,105,95,118,103,101,103,110,103,100,108,116,102,100,102,94,104,106,97,112,102,108,102,98,108,119,110,101,103,94,102,94,106,116,104,106,97,91,104,101,91,109,98,98,97,97,108,99,92,104,109,119,102,115,108,97,98,101,99,98,103,107,102,103,100,105,100,113,96,96,103,94,116,104,114,116,97,111,99,98,108,117,107,97,112,105,92,98,110,86,105,111,100,96,113,106,94,98,97,109,68,112,120,95,111,97,106,91,95,106,100,107,104,97,102,104,101,84,87,112,96,110,101,105,97,104,100,100,98,98,100,109,107,103,106,99,98,98,101,110,112,108,114,114,94,98,106,97,107,93,104,93,109,115,96,101,96,109,123,102,86,98,102,95,106,116,93,107,98,110,101,117,107,102,101,108,94,91,101,112,101,113,107,87,107,90,73,101,109,101,99,104,96,107,84,102,99,99,98,97,104,99,104,106,100,114,101,97,109,97,108,103,102,90,111,111,105,90,100,103,106,101,102,94,102,95,102,108,106,102,98,125,105,106,107,109,99,105,108,100,102,100,107,100,100,106,100,109,104,106,96,119,95,99,113,106,108,97,111,103,98,102,99,121,100,107,108,106,94,93,114,108,109,131,106,95,113,102,102,104,108,90,97,97,125,100,110,99,106,107,95,100,101,114,113,106,105,102,99,104,109,105,82,118,109,114,116,94,101,108,105,88,108,97,93,108,117,97,105,112,102,108,107,117,103,117,102,105,93,109,109,110,101,110,108,99,98,102,100,94,102,114,93,108,99,96,105,98,105,97,94,99,95,89,97,112,97,103,106,111,111,99,111,107,85,105,110,123,97,104,103,116,102,110,119,103,81,91,103,116,107,98,105,100,103,89,108,103,99,99,107,93,99,109,103,101,107,90,89,107,99,115,140,94,105,105,111,110,106,108,116,104,100,99,91,93,110,96,108,109,99,106,94,110,95,105,109,111,110,100,110,106,114,111,102,103,97,109,99,100,111,108,105,110,101,113,106,100,100,116,97,102,93,112,113,107,93,104,102,103,76,104,102,93,84,101,106,91,98,119,108,109,98,125,99,100,102,104,131,96,113,106,112,110,114,105,101,106,95,108,109,102,99,104,100,110,102,104,104,110,103,87,98,101,112,98,103,96,106,84,102,95,112,96,105,112,100,99,94,102,109,103,83,97,106,110,98,106,106,98,96,92,94,105,94,110,101,113,98,110,107,113,100,103,105,108,106,109,124,85,106,113,88,109,115,102,101,110,93,103,100,99,102,97,91,96,100,99,110,91,98,96,106,106,107,105,96,101,105,97,110,101,96,104,104,103,91,94,98,103,99,95,119,94,106,109,102,89,95,109,98,100,99,99,98,109,97,102,98,107,88,96,106,112,104,104,99,105,128,111,88,115,97,103,91,98,112,101,99,89,99,109,100,100,103,98,105,98,107,99,87,105,109,87,109,106,106,109,122,107,108,109,98,103,90,108,108,101,101,107,113,108,100,104,101,113,113,98,102,97,110,103,107,108,102,98,101,100,100,100,100,99,97,116,105,103,97,108,95,112,109,90,84,117,103,103,95,92,97,106,107,98,97,95,103,87,100,105,114,100,102,94,79,105,106,98,95,97,94,106,110,110,101,100,108,90,102,100,109,105,97,102,99,101,117,91,101,104,84,99,108,109,63,98,109,98,106,101,103,104,121,105,101,98,106,97,105,101,107,92,94,102,112,102,100,97,101,105,107,110,110,100,106,105,107,100,89,100,100,95,108,101,115,100,95,105,94,101,107,97,99,114,95,109,119,109,112,110,76,96,111,96,109,105,83,121,106,95,106,107,99,105,100,105,88,99,109,105,92,96,105,112,108,113,92,89,116,99,98,105,108,98,105,96,103,102,99,95,112,113,93,102,104,100,107,89,110,98,109,101,114,105,110,84,91,103,102,103,95,97,96,128,93,111,103,109,100,109,101,108,123,101,113,103,121,105,105,101,88,104,94,111,103,100,106,102,101,94,110,102,117,103,103,117,101,96,100,101,108,110,99,107,101,101,104,109,119,112,101,100,95,94,118,99,104,110,103,101,99,91,104,100,102,101,102,108,98,109,100,105,106,109,103,88,110,125,115,112,111,112,93,93,106,99,113,108,100,121,105,102,107,99,105,101,91,99,106,100,124,91,110,112,102,112,102,91,108,107,106,103,108,90,103,109,104,97,97,99,106,109,105,98,103,119,90,125,103,102,106,101,98,97,116,109,116,92,101,102,109,98,96,73,106,100,108,102,101,97,103,99,97,99,113,99,104,112,95,81,99,105,111,102,113,107,90,104,116,111,95,95,98,95,104,100,105,97,104,102,106,91,94,108,106,108,90,100,107,105,110,100,114,111,110,115,103,98,118,91,120,92,104,101,105,103,87,112,93,103,98,102,111,106,106,100,107,95,100,95,119,100,101,96,98,102,104,102,104,102,107,119,106,102,103,103,112,106,93,104,104,95,102,109,102,93,108,100,121,95,92,109,105,94,98,90,103,111,98,107,106,95,103,109,93,108,97,100,101,92,101,100,99,104,97,87,112,94,136,101,95,90,98,105,85,116,100,100,90,98,106,97,91,105,102,90,103,87,108,95,92,92,110,103,106,96,105,96,99,110,94,101,112,94,111,107,100,104,101,103,104,104,102,101,109,97,102,106,105,110,105,117,114,95,99,95,93,74,107,101,104,107,97,103,94,101,95,98,97,93,108,99,107,100,97,106,99,102,105,100,109,94,107,104,96,110,95,102,117,106,101,67,103,105,89,87,107,114,101,110,91,74,100,100,96,103,101,100,101,100,104,109,105,100,96,109,104,95,93,107,100,93,91,114,83,88,81,100,87,110,98,98,108,98,103,94,105,98,118,98,121,99, +452.82004,99,102,97,99,98,106,109,102,101,112,100,95,113,113,104,97,89,102,112,96,108,107,104,118,106,104,106,104,103,114,116,101,99,114,76,112,101,106,103,94,106,108,101,106,97,110,87,89,104,113,102,111,115,104,95,109,108,100,112,103,94,110,104,101,99,122,91,111,113,109,97,100,109,103,104,109,106,107,106,103,106,100,108,107,104,86,93,103,114,88,105,119,110,103,96,102,101,104,109,103,88,106,89,98,94,86,95,106,97,106,112,100,79,100,109,101,103,107,109,113,103,109,94,94,107,112,109,81,113,94,102,106,98,106,109,116,94,95,101,91,101,103,120,99,84,111,108,104,102,104,107,104,114,105,90,101,102,99,101,98,101,92,95,101,105,105,110,103,103,88,116,111,106,101,103,107,114,91,110,100,105,99,107,112,104,105,101,98,96,90,105,102,104,110,87,109,83,99,137,104,105,105,110,99,109,102,105,112,110,97,84,105,108,106,95,101,89,100,108,85,101,108,103,102,100,115,102,107,100,113,90,95,111,107,105,105,100,114,108,112,104,95,107,98,103,108,103,103,109,99,89,108,102,110,92,91,100,114,90,106,99,99,100,107,126,114,111,106,97,100,103,99,102,125,107,110,93,104,94,91,99,91,112,91,108,101,94,96,103,112,100,103,105,102,95,109,105,109,109,99,105,103,99,92,104,109,112,110,95,108,99,105,107,106,108,102,88,107,102,96,102,90,102,98,98,102,104,104,104,113,99,103,83,99,108,94,94,104,108,87,101,106,110,92,97,108,92,107,110,116,108,105,100,106,110,110,116,112,106,105,110,105,104,92,107,99,120,125,101,107,107,96,104,102,105,104,107,97,113,111,105,114,92,113,110,96,99,106,105,95,92,109,83,112,100,125,103,113,100,95,108,111,104,98,104,113,105,101,100,100,90,109,110,108,84,94,104,87,108,106,111,117,101,104,107,102,104,90,102,115,106,107,104,81,95,102,101,104,110,99,110,114,95,111,87,98,100,98,96,105,109,95,100,114,101,101,104,126,107,92,104,103,92,107,113,104,103,102,98,109,112,103,103,105,99,99,117,81,109,94,98,89,104,92,96,93,108,107,104,100,77,103,104,103,109,102,104,120,107,98,109,106,110,107,104,136,74,106,100,98,104,112,104,99,88,106,100,95,114,90,103,111,102,103,107,106,105,94,106,98,106,99,97,100,118,105,99,101,99,112,106,91,98,100,97,98,116,104,105,95,112,112,104,99,103,113,125,116,100,103,99,108,108,97,99,112,99,115,103,99,91,68,104,117,94,105,100,102,106,93,98,111,104,97,106,106,103,101,106,101,103,109,87,108,105,111,106,89,109,105,95,118,125,90,99,105,103,106,101,103,112,108,110,115,112,94,99,100,102,108,98,106,97,101,105,108,100,96,107,110,117,99,112,109,107,115,103,103,92,135,104,100,104,105,96,100,105,97,107,104,88,98,103,107,104,107,114,96,110,107,117,110,108,104,92,101,98,95,115,116,106,100,108,108,92,99,100,110,119,101,95,110,108,96,104,115,104,104,111,105,104,109,95,96,98,105,105,108,115,96,103,106,78,103,103,103,95,102,97,91,99,101,102,107,100,110,100,123,99,101,97,99,115,116,89,101,100,108,95,109,106,94,108,115,99,99,109,105,119,97,98,83,103,90,101,102,117,95,103,114,109,90,102,118,104,95,107,104,118,106,112,107,96,100,92,113,95,98,96,97,109,85,117,96,106,120,101,103,100,108,104,107,83,124,96,104,103,106,90,104,110,104,103,105,99,100,102,98,104,104,102,102,107,106,116,100,122,104,108,106,108,82,96,94,114,101,103,105,100,105,105,108,107,95,99,104,95,105,114,104,91,112,112,99,94,98,114,108,110,106,112,95,104,92,98,103,111,96,98,98,107,100,101,112,99,114,94,101,118,117,89,97,104,99,74,105,95,92,100,111,102,99,100,103,96,109,109,95,104,101,104,107,112,98,106,106,101,100,102,97,105,111,100,99,103,103,98,97,87,108,101,83,103,105,117,100,96,102,98,103,106,96,103,110,109,107,117,109,92,100,109,107,71,105,102,99,105,103,104,114,109,102,106,113,93,99,110,97,101,98,108,99,106,107,97,100,110,117,113,117,105,104,99,97,99,65,88,104,104,105,103,100,102,96,113,98,91,99,100,101,88,90,110,110,100,95,99,106,102,100,102,100,90,103,124,103,97,96,100,105,110,115,91,120,112,103,102,110,100,100,102,97,103,98,98,102,111,98,99,114,94,100,106,98,96,102,105,111,116,107,108,117,109,105,105,82,114,105,112,110,69,118,104,88,111,102,102,99,106,101,114,96,95,104,105,86,114,105,97,91,109,108,104,108,105,118,106,109,116,106,87,98,94,110,106,110,101,120,87,101,107,98,102,100,105,75,103,114,97,100,108,97,106,115,102,107,116,98,108,108,103,109,100,106,100,106,108,96,110,98,103,94,111,108,104,104,100,111,105,101,95,103,99,87,107,100,103,103,103,115,98,102,111,108,99,94,98,99,110,107,109,105,94,102,101,104,106,101,113,88,93,106,106,103,109,99,118,112,113,102,108,113,106,99,104,109,108,83,108,105,112,109,99,94,107,100,110,101,102,96,106,100,98,104,103,96,114,106,106,110,105,106,89,106,97,113,113,99,109,103,102,112,119,108,101,108,98,105,103,103,120,103,130,97,96,104,116,108,114,102,102,105,100,107,100,100,111,102,106,102,93,110,101,109,107,118,97,106,131,110,98,103,103,102,108,109,107,96,109,104,105,97,106,102,105,115,98,96,99,107,102,110,111,107,108,101,106,88,99,110,102,113,114,104,107,105,101,111,116,109,109,79,101,120,99,98,111,94,105,92,96,109,103,102,97,93,102,109,100,111,108,115,91,106,104,100,102,94,103,110,107,99,97,112,98,117,101,113,106,109,99,86,96,96,97,119,106,99,99,101,118,108,80,95,97,102,126,98,109,104,101,104,102,99,100,101,103,103,103,111,116,96,93,114,106,102,102,104,103,94,99,110,108,115,99,104,96,99,76,102,109,119,103,104,99,101,108,95,107,108,99,104,116,128,103,100,104,114,99,108,106,108,100,126,113,105,115,97,110,90,106,96,117,113,110,118,104,103,101,99,99,92,109,101,105,102,104,106,102,96,109,106,101,108,97,77,112,99,101,108,110,111,94,105,88,105,112,110,117,92,105,121,113,98,103,106,96,91,98,105,105,100,101,97,117,102,106,109,107,101,101,88,100,116,117,110,112,110,110,102,99,99,94,107,85,105,103,96,108,99,100,106,114,98,102,97,104,101,92,90,104,107,106,121,114,98,94,102,113,94,102,99,106,107,107,102,120,108,102,114,91,97,98,113,106,104,113,106,103,105,105,101,94,112,103,97,100,97,105,98,109,103,105,114,108,102,108,101,92,97,108,96,106,104,103,112,109,111,102,95,102,107,108,104,106,100,104,109,100,96,106,105,102,113,96,108,98,100,106,112,91,103,99,102,105,100,99,105,105,118,100,100,116,98,113,105,109,107,106,95,103,115,102,92,104,107,104,91,109,98,111,109,120,97,102,100,109,103,108,108,97,109,104,100,108,96,112,94,98,108,99,98,109,114,104,99,104,103,113,96,106,103,101,91,103,102,113,105,111,99,102,102,104,102,103,109,106,106,101,104,120,108,112,97,112,106,99,104,113,102,106,91,109,106,103,107,100,111,100,109,101,96,121,106,97,110,94,94,105,85,102,109,98,106,105,98,116,117,103,110,100,96,116,101,106,109,98,107,97,111,98,111,120,113,103,101,96,97,112,98,108,105,94,77,109,107,100,104,97,99,84,100,107,96,103,95,113,99,98,104,101,103,109,95,108,95,102,112,110,103,102,98,111,116,103,74,101,98,106,100,109,102,98,119,83,98,115,102,96,102,119,95,92,103,113,100,105,94,107,106,98,106,98,117,115,88,98,110,100,108,104,92,107,109,102,97,108,98,95,110,92,105,102,94,94,107,95,100,104,97,103,106,115,107,113,95,103,100,107,101,98,115,106,104,104,109,90,94,87,112,113,97,96,114,102,113,109,106,108,99,95,109,103,107,109,116,110,108,108,97,111,104,96,95,100,96,99,90,95,96,108,88,95,116,111,97,102,115,102,115,116,108,103,108,99,104,102,114,97,114,112,102,103,93,77,100,111,98,99,86,99,99,102,115,102,105,103,102,105,91,94,103,115,98,115,103,109,100,109,103,101,96,104,99,109,100,108,106,101,74,115,104,108,110,106,96,105,105,103,106,100,101,97,108,104,92,92,92,111,103,107,102,107,109,103,105,105,108,103,98,104,103,105,110,109,102,95,100,101,93,115,106,104,103,106,106,115,102,101,94,95,97,108,104,105,117,92,109,113,111,102,109,108,107,101,103,99,103,113,129,95,109,94,103,113,110,94,117,107,103,107,92,110,106,97,112,105,109,107,102,95,77,117,106,116,109,120,113,111,113,81,102,95,97,103,102,119,105,113,102,101,142,112,101,123,94,105,97,100,97,102,85,116,103,105,97,117,103,107,99,101,105,106,112,67,117,104,106,109,94,112,101,104,101,110,95,102,110,105,106,105,81,109,88,105,99,106,107,115,106,104,97,108,104,113,113,102,98,108,108,105,98,100,100,110,102,105,78,105,105,83,99,106,112,109,103,103,92,97,109,113,107,106,110,91,91,106,94,106,100,95,112,101,109,90,103,113,99,103,104,107,101,95,94,94,105,102,100,124,110,119,94,114,107,104,97,95,102,111,100,98,99,83,101,79,98,113,109,129,112,101,107,86,111,97,118,109,111,94,80,96,114,103,96,97,104,104,92,108,105, +452.96045,113,105,113,102,103,102,112,99,107,112,92,114,106,100,110,102,106,92,121,109,97,78,113,98,104,109,103,104,96,100,121,106,99,112,123,106,99,95,102,101,104,104,104,100,105,112,90,104,98,100,101,100,103,106,103,97,106,100,108,106,97,92,96,86,95,108,101,110,95,109,102,109,98,109,110,98,104,132,106,101,104,100,106,104,91,93,107,109,98,101,102,96,95,95,94,95,102,89,106,98,102,95,96,108,114,104,102,103,94,97,98,112,100,109,114,106,99,112,91,90,110,103,104,113,104,100,108,99,106,104,99,108,104,102,106,106,101,89,104,91,91,107,101,98,94,96,103,95,100,99,100,104,110,103,101,91,99,102,109,95,98,104,108,99,94,105,92,97,91,121,114,93,108,94,96,110,95,89,105,96,99,102,105,108,94,102,109,96,107,91,86,101,102,113,107,118,97,100,104,105,99,102,103,108,95,100,70,101,103,103,98,103,106,114,89,105,97,108,99,106,111,107,100,108,99,103,110,108,120,92,100,95,106,102,103,107,110,104,106,97,100,99,101,98,87,110,100,101,108,119,98,98,108,97,103,110,114,116,101,95,98,96,96,95,99,99,110,107,99,105,101,116,101,106,110,91,100,112,101,97,92,105,99,115,93,103,93,103,103,107,67,99,108,112,103,114,95,95,95,105,109,100,104,92,93,89,105,92,107,103,99,106,108,125,104,99,94,102,94,87,106,100,103,102,100,102,100,102,110,110,95,106,117,95,100,113,99,108,106,103,107,104,110,110,111,92,102,108,114,105,110,94,95,109,118,104,105,107,107,99,101,88,96,98,103,105,109,107,102,96,102,117,109,102,107,94,111,102,110,116,93,102,103,97,100,98,102,95,99,110,99,111,67,95,100,103,96,95,95,103,102,112,111,90,104,97,120,98,113,87,79,97,118,100,106,98,107,102,118,110,115,108,104,107,92,104,112,106,101,109,106,92,108,98,83,106,104,100,105,118,111,105,109,104,99,98,110,104,114,105,90,88,107,107,106,98,113,90,103,105,93,101,96,105,87,111,98,102,113,113,98,104,107,111,103,100,113,110,100,104,97,112,109,100,101,108,91,102,108,104,102,102,103,97,100,107,103,104,109,89,100,107,109,105,110,103,105,99,104,97,106,105,105,92,107,114,112,106,100,95,106,113,116,106,94,114,104,104,100,105,94,100,109,98,118,98,104,113,94,103,110,110,105,105,105,68,106,95,108,108,101,121,99,100,79,105,95,86,88,99,114,106,88,102,111,87,112,108,95,103,108,86,106,112,113,110,94,104,95,118,105,102,107,105,98,99,112,100,95,96,122,97,107,98,106,109,100,104,102,108,104,119,102,107,95,93,94,115,110,112,101,108,111,103,106,110,83,108,98,105,120,99,98,110,108,99,101,101,103,105,99,104,102,107,87,100,107,79,105,96,114,110,96,101,90,84,87,99,102,99,104,109,138,113,96,102,100,106,110,118,99,117,111,108,107,100,112,106,102,100,118,109,102,113,104,102,102,100,101,111,132,96,109,97,101,110,103,98,108,94,100,104,93,107,97,101,102,121,107,97,104,100,107,111,100,104,102,118,98,95,111,98,97,109,104,104,108,104,104,89,101,108,99,99,109,91,104,102,113,110,118,109,101,108,109,105,100,99,94,107,103,102,97,96,109,109,110,109,106,107,112,102,108,117,113,105,87,110,100,101,103,98,106,92,107,112,103,112,101,104,107,104,105,98,103,104,112,99,98,116,106,99,110,107,104,102,95,107,112,135,102,113,94,105,106,111,116,100,100,95,107,104,109,103,104,95,109,118,107,97,110,97,109,90,107,104,106,88,113,100,103,90,114,107,97,105,99,91,101,102,99,95,108,103,112,124,102,97,109,105,87,104,104,112,107,107,106,103,107,89,96,88,106,108,87,102,97,117,102,96,99,101,92,93,103,99,105,104,112,109,100,108,102,101,104,101,102,100,106,104,101,112,103,98,105,105,96,110,120,106,99,114,98,122,111,85,99,105,95,106,101,94,105,106,110,116,103,100,100,113,110,106,101,119,106,93,103,116,109,104,108,103,102,113,109,95,110,96,103,114,106,101,107,112,94,95,106,99,112,102,115,100,106,104,102,105,117,92,106,110,101,118,94,118,105,94,111,92,107,99,102,112,133,100,106,108,102,99,98,99,105,113,87,117,101,137,107,102,80,109,117,99,103,108,108,99,103,107,100,105,106,99,94,112,102,114,104,102,96,103,106,98,99,105,117,105,90,105,93,98,107,125,108,107,106,97,101,85,104,99,101,110,106,97,99,102,102,104,103,111,102,100,104,108,114,101,95,115,95,99,110,110,99,92,99,97,116,115,113,107,99,101,124,110,100,110,102,112,108,97,104,104,103,91,92,98,107,121,103,99,88,101,97,105,105,105,104,104,105,104,107,108,102,99,98,104,111,91,105,103,102,97,106,97,67,121,108,98,106,112,109,97,109,98,94,100,95,98,92,103,110,113,108,94,111,105,100,108,91,114,98,117,88,109,114,111,106,120,113,106,112,113,97,100,101,114,110,110,100,80,102,110,91,113,95,104,98,103,102,107,107,100,116,107,109,111,104,121,102,122,106,105,112,87,105,110,103,96,106,112,108,109,111,102,101,102,108,98,115,103,105,107,96,102,112,102,111,109,101,98,89,117,102,96,104,99,97,111,104,103,107,106,120,104,101,94,117,100,107,104,108,114,115,104,103,112,105,105,98,102,102,108,103,110,108,106,109,114,108,108,120,100,93,107,85,79,95,105,113,109,100,97,109,98,98,105,106,102,103,102,96,123,99,107,113,104,110,107,104,111,93,110,103,113,130,114,121,104,103,104,116,114,103,116,112,101,108,101,87,119,100,105,102,106,108,105,104,84,109,95,96,110,97,103,112,118,113,91,110,104,105,113,106,88,107,108,108,105,106,103,111,94,104,104,106,107,100,116,111,102,106,103,109,95,100,100,111,106,106,100,92,98,99,106,101,116,104,99,113,108,112,102,122,107,104,103,106,98,109,101,96,107,101,101,105,95,107,111,117,109,113,110,115,95,104,93,104,110,108,107,100,114,105,114,106,102,90,106,121,95,90,103,106,100,106,99,97,105,98,96,103,103,114,109,96,110,105,103,113,106,97,104,95,111,113,99,106,106,117,105,101,98,100,92,90,115,126,108,95,103,121,105,102,104,101,107,94,101,103,102,100,102,100,115,102,122,88,102,103,108,98,96,106,103,100,103,101,101,103,106,105,105,94,103,108,105,106,112,103,103,107,103,105,87,106,88,91,93,98,101,101,107,121,98,109,105,103,110,104,112,102,106,104,104,106,97,111,102,94,109,116,110,106,106,113,99,108,112,104,105,98,109,103,104,100,101,108,111,103,103,112,108,105,101,101,103,101,109,101,104,104,100,113,99,108,102,99,97,96,92,126,102,110,104,101,103,107,115,99,101,104,111,120,101,89,97,89,97,102,110,103,104,120,103,98,106,108,106,113,106,86,109,96,95,105,109,97,106,92,103,104,98,104,106,116,104,108,97,108,119,108,86,100,100,108,111,99,96,100,110,98,106,110,108,102,98,111,92,90,103,107,107,81,101,99,97,110,99,100,115,111,107,97,104,97,110,107,95,120,101,103,119,104,101,101,101,103,96,103,95,102,100,115,106,118,99,103,100,104,97,121,102,103,106,98,97,109,111,105,90,99,102,96,112,100,102,108,121,102,97,102,103,104,95,110,115,98,105,108,97,99,106,111,104,114,101,123,102,116,105,109,98,100,92,106,105,99,104,98,100,100,117,98,101,109,108,105,105,90,105,103,102,107,112,98,102,102,95,95,116,111,102,102,94,96,91,99,95,100,106,102,106,107,90,109,107,92,108,124,103,106,101,107,93,100,113,109,105,108,103,97,116,92,109,101,112,79,104,103,96,113,104,93,105,106,111,104,112,93,95,98,98,97,91,103,106,93,112,102,111,106,104,100,98,101,102,105,104,96,103,91,108,100,111,94,97,101,99,116,102,103,103,107,100,106,110,108,100,100,107,110,110,110,107,98,117,98,109,110,104,103,100,112,101,106,120,105,95,128,102,104,99,96,111,105,98,107,110,112,90,112,91,113,103,108,100,103,99,103,96,98,94,97,106,105,91,102,104,76,96,110,109,101,108,94,106,142,99,111,108,105,106,104,97,94,107,81,117,105,100,97,95,96,113,99,110,96,102,97,110,117,94,115,110,114,94,96,92,100,111,111,104,108,112,110,99,107,102,89,104,101,106,110,104,105,101,103,108,89,100,109,111,99,82,104,103,99,94,99,110,128,114,106,106,112,80,112,105,100,101,112,108,103,109,104,112,108,112,108,125,107,104,88,119,99,118,95,104,95,109,109,94,95,105,112,108,105,96,101,103,100,106,106,94,103,91,102,98,105,98,107,105,109,123,106,102,111,102,98,123,99,97,102,96,114,106,86,100,100,104,113,94,94,97,112,96,99,115,103,116,107,102,99,106,114,95,107,97,92,109,105,114,111,102,111,107,101,103,108,98,110,105,103,99,102,113,106,90,110,100,96,100,99,108,109,100,110,106,94,105,99,112,102,105,105,110,103,110,99,112,106,101,109,96,109,102,104,100,110,103,94,97,100,96,93,106,96,95,100,106,110,118,120,107,100,100,115,103,106,96,95,101,98,99,104,113,106,106,98,92,108,98,103,102,95,102,93,97,73,98,105,113,98,103,76,83,113,101,108,110,111,90,100,102,100,104,92,106,100,99,105,98,97,101,93,98,107,90,106,97,100,117,113,101,98,97,99,112,110,99,107,99,103,104,101,91,94,111,102,105,110,98,88,105,104,91,107,113,97,92, +453.10086,92,99,94,99,102,104,91,99,101,101,103,101,107,97,105,102,101,103,91,100,96,100,107,102,105,103,89,101,96,103,130,101,98,105,97,89,99,99,135,101,99,87,93,108,99,108,101,107,108,105,96,100,91,90,100,104,107,97,111,95,91,101,88,103,116,97,107,103,95,99,105,104,108,95,104,103,92,102,106,93,102,104,112,97,104,89,105,99,111,102,108,105,102,110,103,88,102,92,93,94,94,111,105,97,101,96,105,102,90,98,87,102,87,119,116,100,96,106,111,106,118,91,109,83,102,110,107,106,109,95,106,107,97,98,107,91,94,108,96,104,111,128,100,105,102,103,102,96,92,102,99,88,95,91,98,103,112,90,113,88,96,108,112,111,98,95,99,110,91,93,94,114,102,96,105,95,94,95,101,107,109,113,109,106,71,98,107,96,116,89,97,102,80,108,109,111,101,104,109,106,98,108,95,100,99,102,112,96,109,120,103,104,103,108,109,104,91,104,94,96,124,103,107,99,104,119,98,114,91,107,102,95,105,96,101,101,80,107,102,101,99,102,106,101,114,91,105,96,108,102,113,99,106,110,98,97,113,95,94,94,86,102,110,104,85,104,99,114,97,102,97,124,133,107,115,100,108,98,107,102,108,100,98,95,95,110,106,112,101,110,97,111,101,110,104,99,106,100,116,87,102,98,106,118,96,107,114,112,110,113,98,97,101,109,103,108,99,99,124,109,100,105,108,105,104,106,107,135,104,111,100,104,106,95,100,112,108,95,91,108,97,101,105,105,109,78,116,112,108,89,107,108,97,101,115,104,99,106,94,96,97,104,97,103,72,92,101,98,93,105,105,107,108,101,95,100,103,111,108,107,114,101,96,123,97,97,113,109,99,102,113,97,94,105,98,97,92,111,111,113,105,116,104,94,110,100,97,112,109,107,93,96,106,104,84,113,108,116,109,92,86,103,99,105,107,111,112,84,101,102,100,121,115,103,98,98,106,105,98,110,101,103,106,104,91,115,106,102,133,94,108,100,98,102,100,100,104,103,99,101,100,101,89,108,105,115,107,109,100,118,113,104,91,97,96,94,98,103,106,105,76,112,118,104,95,105,99,103,104,106,105,101,102,98,96,91,93,99,112,95,105,95,96,90,107,106,100,108,102,103,115,101,113,101,110,98,96,98,109,101,103,104,106,103,91,105,102,106,99,103,108,110,106,82,99,111,108,123,108,106,106,95,93,97,102,98,102,96,101,100,97,96,96,105,117,105,96,101,105,102,104,105,102,89,96,110,103,102,97,93,97,106,108,100,106,111,103,98,105,111,100,89,106,102,103,98,120,108,103,112,106,118,107,114,106,107,102,102,104,93,101,109,107,110,98,100,108,105,87,96,105,100,96,102,103,96,99,116,108,104,101,139,102,101,106,99,91,104,104,105,107,104,99,135,92,102,103,99,103,93,104,104,95,108,106,99,98,100,134,114,101,99,110,104,110,106,104,106,112,103,105,104,112,90,91,97,114,113,107,97,113,110,99,98,104,103,102,90,99,99,105,106,107,90,98,101,104,105,91,95,111,105,97,105,109,98,111,108,88,97,110,95,93,102,101,117,101,114,92,98,97,108,106,96,93,117,105,100,104,98,97,90,91,105,107,96,109,111,105,101,100,108,97,106,100,94,109,73,109,93,107,99,104,97,103,100,101,99,94,100,112,113,96,103,99,101,105,102,118,96,108,100,92,102,96,106,97,100,103,97,104,105,103,75,103,109,104,108,110,94,105,105,108,104,93,104,104,105,107,108,117,112,104,106,101,112,107,106,105,104,112,105,99,113,114,87,99,101,100,95,111,101,97,101,112,111,107,92,102,105,102,112,106,101,98,107,96,102,124,96,110,98,94,104,103,103,106,120,106,95,102,113,107,105,101,97,100,98,100,102,108,91,98,111,106,105,98,108,114,103,102,91,104,104,107,108,91,106,98,110,103,113,103,106,95,108,117,113,91,93,111,113,106,111,106,99,97,104,95,105,98,113,105,110,113,104,112,114,109,98,104,119,112,95,103,96,102,108,93,103,87,109,109,112,113,91,107,104,107,99,104,96,90,112,108,107,107,96,118,94,105,106,110,112,94,112,97,110,124,101,104,106,100,101,117,102,102,96,112,109,103,102,102,123,95,93,111,110,90,103,94,98,106,110,101,99,84,109,107,99,87,98,100,104,99,105,99,95,105,103,110,104,98,96,95,108,105,103,95,102,103,109,92,91,98,105,96,110,94,104,98,84,100,105,105,101,111,107,94,100,98,106,100,128,101,106,95,93,106,98,109,116,100,97,112,116,106,103,103,114,109,99,92,90,107,95,100,108,108,87,108,105,101,107,97,84,106,99,117,104,103,98,112,92,99,103,100,121,89,108,106,100,103,107,94,106,102,121,102,97,98,115,99,95,114,95,85,107,95,100,100,115,101,106,101,113,98,101,113,102,105,96,99,93,102,109,106,88,110,105,102,109,111,111,100,106,98,105,103,121,105,111,97,108,113,93,102,109,105,107,106,101,99,113,94,102,99,106,116,93,111,105,114,111,95,100,92,101,102,108,92,93,88,113,109,100,101,105,112,105,107,104,115,107,105,102,103,90,113,82,117,83,118,104,106,100,107,100,104,116,117,102,107,102,105,107,103,92,96,104,97,102,87,102,107,105,105,100,110,103,91,93,97,109,93,107,92,96,97,120,101,102,105,103,110,95,101,110,102,116,111,103,105,100,98,106,106,80,92,104,107,79,94,112,99,110,93,105,102,105,99,114,104,97,111,103,111,103,98,103,110,93,93,102,114,106,100,104,101,106,104,103,103,116,96,102,107,121,94,104,114,97,109,114,105,95,109,102,111,107,108,97,105,109,117,110,116,97,101,106,109,89,102,100,102,100,104,108,104,108,108,105,99,102,105,111,101,102,97,107,96,102,110,107,99,113,106,105,100,98,100,106,105,98,108,106,105,104,93,101,128,105,84,106,110,99,106,108,105,92,111,95,95,102,88,101,105,96,100,103,108,100,101,96,108,95,105,113,109,101,101,108,96,97,104,92,100,107,104,111,97,101,81,105,119,109,110,97,101,99,112,112,101,112,109,105,96,102,95,105,100,98,116,116,105,87,94,88,87,109,91,91,97,93,115,109,103,93,100,108,110,110,98,104,100,100,98,104,110,104,97,101,98,99,112,95,107,112,99,110,120,98,105,88,103,91,103,98,77,90,99,96,100,110,118,85,107,92,98,99,104,101,99,108,104,103,89,104,112,73,101,101,108,94,98,108,102,104,95,113,95,107,109,100,103,113,110,92,100,93,94,109,96,104,103,93,84,105,112,108,96,94,104,100,100,109,106,98,102,109,110,103,98,101,115,102,99,109,103,102,91,102,103,106,106,112,105,104,99,106,94,109,110,95,99,101,98,101,109,118,106,103,107,103,90,105,115,94,96,95,97,96,100,99,106,95,116,92,105,102,99,111,99,109,109,97,96,93,98,96,101,98,84,103,101,103,125,108,106,99,109,108,108,104,102,102,101,104,98,110,107,98,101,101,98,92,99,107,102,99,97,102,103,102,117,103,94,112,95,96,107,106,106,111,98,110,102,114,100,109,109,115,94,98,98,98,128,91,99,109,111,100,102,109,97,96,100,94,105,83,107,135,104,103,94,98,94,88,118,99,105,97,104,99,103,109,106,106,108,98,109,106,83,98,87,109,94,102,103,87,104,103,103,98,109,100,106,98,103,99,104,99,115,98,101,109,86,101,106,98,95,108,115,111,102,102,106,104,103,103,115,100,106,90,110,101,102,101,89,106,113,99,101,103,94,100,121,102,114,98,108,113,105,102,104,106,91,99,99,99,111,113,93,108,107,101,108,110,96,105,105,102,102,97,99,95,115,102,106,103,105,104,117,106,96,99,95,110,101,105,102,108,91,107,113,99,100,110,91,106,110,101,98,108,105,108,116,103,103,107,107,101,105,116,90,98,106,97,81,102,105,98,84,106,107,101,89,96,128,107,114,110,95,108,103,103,108,103,111,107,109,96,100,109,109,102,105,104,102,103,99,110,105,109,114,106,103,100,99,120,103,113,110,97,104,111,109,97,104,100,113,95,94,104,103,103,102,101,113,116,108,113,88,107,112,94,109,98,107,97,108,102,127,110,103,83,99,109,109,99,106,136,97,105,105,104,100,100,98,99,105,100,103,108,91,95,111,116,105,104,101,107,105,97,93,94,85,103,96,109,101,80,104,105,101,108,93,105,102,102,95,94,104,105,107,101,85,104,73,105,120,97,103,98,104,93,91,103,106,103,106,97,96,108,118,120,102,109,98,103,96,100,102,119,105,104,115,108,118,101,101,100,114,107,94,100,116,99,108,107,101,100,105,109,111,113,106,112,103,100,99,96,128,95,99,91,98,101,101,105,91,102,115,89,111,102,93,98,100,102,107,88,87,99,101,99,88,95,113,110,103,93,94,109,103,101,106,106,98,128,123,95,96,116,111,104,100,107,99,95,93,79,90,104,102,98,107,103,107,107,100,93,90,94,104,107,111,105,94,100,101,101,113,111,91,97,95,85,95,110,116,107,95,84,109,109,92,101,97,93,121,105,110,102,104,109,112,106,107,96,109,96,120,98,104,108,102,110,102,102,88,98,95,101,106,98,112,107,113,111,102,99,113,90,96,104,106,89,94,102,100,110,105,105,102,92,119,102,92,112,113,104,94,109,103,85,89,95,107,92,99,102,112,98,107,67,108,97,93,108,107,107,107,100,99,113,94,98,101,93,95,104,77,100,104,100,100,104,119,103,97,104,107,105,95,101,93,113,86,100,108,103,112,98,91,98,98,111,102,88,93,121,113,97,102,89,99,96,109,88, +453.24127,108,91,90,99,87,103,91,101,86,96,114,112,91,101,101,90,99,103,95,102,91,101,100,116,95,103,96,100,99,110,108,103,99,112,109,105,98,104,106,108,96,88,96,97,117,102,110,91,103,99,116,108,125,106,105,94,106,97,101,96,90,107,101,112,97,100,89,102,96,95,98,103,100,104,120,113,80,90,110,100,101,95,99,95,106,107,100,131,99,103,103,103,111,106,105,123,97,97,110,92,92,104,105,98,96,106,98,83,99,89,108,104,99,101,110,98,103,96,105,99,105,100,97,95,118,111,104,116,124,99,112,101,108,105,107,99,105,106,97,104,96,109,101,111,96,101,100,114,95,96,101,91,110,100,106,89,103,100,109,102,90,114,113,105,95,104,103,98,98,98,92,107,96,95,91,105,97,100,108,108,101,99,101,105,106,106,96,106,105,110,91,109,113,105,100,100,102,112,106,116,120,95,102,112,103,104,97,101,108,105,106,105,101,104,104,91,105,93,98,107,95,104,93,98,105,103,102,104,108,128,104,93,97,102,108,115,106,115,101,116,103,104,113,102,112,94,95,108,106,105,96,117,92,112,103,124,105,107,104,95,99,106,113,96,99,109,118,111,106,109,93,102,101,97,105,111,104,100,94,106,106,98,102,111,107,96,106,108,94,105,98,105,98,103,90,104,101,117,107,104,99,106,108,93,94,110,107,116,114,115,100,101,113,109,108,110,109,105,110,109,102,95,105,104,102,107,93,93,108,103,99,104,107,106,99,114,99,85,106,109,91,97,104,99,105,105,99,118,105,90,88,110,102,95,108,110,121,98,98,105,110,100,100,94,109,101,96,99,92,95,98,116,91,74,96,107,114,110,106,95,118,103,101,104,91,92,103,118,96,91,110,91,100,90,99,93,99,91,96,98,104,106,91,93,106,96,90,101,117,105,98,101,106,106,105,85,105,107,111,95,103,102,114,102,101,96,97,101,98,112,110,93,94,108,101,114,104,102,94,97,100,95,91,107,99,101,98,92,108,111,100,113,111,117,98,112,105,99,112,90,106,113,110,108,100,104,97,105,91,98,99,102,99,99,100,103,90,103,102,100,103,101,106,92,129,103,113,109,80,102,112,95,99,96,97,105,90,102,108,97,106,103,112,103,103,129,94,103,102,101,104,113,91,99,104,103,98,103,117,85,102,95,105,94,117,109,104,119,104,103,101,96,102,102,107,108,108,100,100,97,112,100,98,105,106,102,104,97,108,99,107,115,109,103,106,105,98,97,105,108,116,103,115,112,105,92,113,80,105,107,97,95,100,102,106,111,93,100,105,90,103,102,105,125,104,93,93,109,105,91,95,105,102,106,102,108,108,107,101,112,118,106,106,110,105,101,92,102,98,108,99,108,106,93,109,104,100,103,99,87,106,108,99,101,110,99,96,94,104,106,105,102,98,106,100,95,109,104,107,107,109,100,95,100,100,95,112,109,96,109,105,117,109,103,109,127,104,103,92,107,104,105,103,102,97,88,103,110,103,97,102,87,99,97,105,104,100,92,109,106,102,105,103,102,111,99,95,105,95,108,93,100,105,119,79,115,108,101,99,94,98,102,97,102,97,96,88,120,100,94,99,120,115,95,90,105,96,109,105,102,104,109,95,107,95,98,105,74,102,107,110,107,93,114,104,99,103,94,75,98,104,98,119,110,97,104,114,112,98,110,105,98,86,99,98,113,105,91,104,96,100,86,94,111,86,98,96,106,99,103,112,112,99,104,108,99,109,96,86,101,102,93,104,110,101,105,109,111,98,95,97,99,89,109,110,95,92,105,104,102,105,103,105,103,100,113,88,111,99,108,112,89,101,94,93,101,100,96,102,99,104,111,102,102,98,121,95,104,118,105,109,89,110,112,101,115,100,125,115,94,99,108,126,97,103,106,99,99,102,88,109,100,101,103,111,117,103,103,96,99,104,115,101,108,98,101,95,105,111,112,95,114,104,107,99,104,98,115,100,103,120,95,96,110,111,106,106,111,115,110,107,107,105,106,112,89,107,106,87,124,121,116,101,113,117,104,122,95,84,101,107,107,110,107,105,94,110,99,104,107,103,102,99,105,115,97,106,104,106,105,97,102,107,99,99,101,108,103,111,92,101,96,97,109,108,101,98,92,105,93,98,100,118,113,100,111,97,111,102,115,110,102,110,110,104,103,99,104,105,110,89,98,99,93,105,109,94,105,99,95,98,103,106,116,102,97,111,96,102,112,110,98,115,102,93,95,96,112,98,102,113,110,107,98,117,105,111,96,87,108,97,109,109,105,100,116,101,116,92,100,106,102,98,88,103,104,98,95,109,110,105,87,91,131,104,92,100,104,103,108,104,95,109,97,101,97,98,102,99,103,88,102,117,105,101,104,106,117,104,114,101,119,104,107,99,97,99,86,108,95,103,113,106,106,122,101,107,118,109,103,100,96,98,99,95,91,101,102,117,104,96,95,104,92,95,107,102,83,106,102,112,100,104,97,112,107,106,104,109,106,97,112,102,97,112,95,85,103,97,114,107,90,111,95,99,98,103,100,111,103,110,110,102,97,105,99,108,106,102,112,103,92,94,114,99,111,116,102,108,84,112,91,103,109,108,103,102,121,106,102,116,89,114,107,108,111,112,106,95,94,102,96,99,107,106,96,105,97,109,101,113,107,103,113,103,98,114,102,91,104,103,101,98,102,100,113,104,113,96,107,95,106,113,109,106,103,102,95,104,103,99,105,101,91,109,101,111,99,95,106,100,111,94,95,104,104,101,107,111,98,103,107,92,112,92,86,105,103,104,103,102,106,106,96,84,100,104,105,106,96,108,92,104,113,126,94,103,91,108,102,107,99,118,103,104,99,115,113,111,106,99,104,106,110,96,97,98,110,91,110,114,107,112,97,107,106,113,97,99,103,92,99,111,72,107,94,101,110,91,104,106,107,102,106,103,104,95,105,94,97,108,106,97,93,112,115,107,109,129,96,120,108,107,109,115,96,104,100,105,103,104,109,100,107,111,112,102,105,98,107,96,113,98,101,100,115,100,102,110,92,108,118,99,105,103,106,97,107,95,106,95,110,101,99,98,91,88,104,97,99,115,93,98,109,101,102,100,94,113,87,97,108,100,110,102,93,100,94,88,128,107,96,108,105,100,105,110,96,104,92,100,100,94,98,95,107,98,115,106,102,89,98,99,95,105,102,96,104,82,92,106,111,110,96,112,102,105,94,107,104,97,99,106,103,117,98,102,102,101,96,105,113,99,109,99,84,101,96,112,99,114,96,93,105,96,96,97,103,104,95,94,103,90,109,102,109,106,89,96,94,94,112,104,98,90,104,98,85,107,106,104,98,116,101,98,98,101,103,98,106,113,103,84,113,109,97,108,98,106,90,104,101,100,102,91,103,98,107,102,111,95,98,98,105,98,108,101,101,93,93,90,106,100,102,100,98,101,96,101,96,98,99,108,105,92,105,110,112,106,98,101,93,96,99,111,105,102,93,98,111,102,97,101,111,108,112,97,100,104,103,108,103,100,103,104,107,91,96,102,109,115,109,87,112,97,105,109,105,109,106,104,99,101,107,94,103,113,111,102,103,95,102,109,101,102,98,107,109,109,105,109,98,104,98,106,102,98,111,101,99,104,100,99,90,105,115,95,130,109,105,98,104,101,110,114,100,104,105,97,95,100,99,111,98,111,105,105,99,110,105,111,105,100,89,101,91,94,100,91,100,101,98,111,97,98,91,90,111,98,109,101,113,95,95,122,104,111,98,115,90,97,103,106,105,109,120,103,99,97,97,98,94,102,100,85,95,96,122,94,69,102,97,106,103,96,108,100,114,107,92,96,103,94,105,108,100,105,101,103,97,94,92,106,116,104,105,97,113,94,108,106,82,109,81,110,99,96,102,97,109,104,95,100,104,101,109,109,103,99,109,97,96,100,95,96,102,104,110,97,106,88,110,87,107,114,114,112,98,98,91,101,110,107,101,98,103,97,108,120,101,116,103,100,106,103,106,105,88,103,112,111,111,104,95,121,103,103,98,111,96,97,99,116,104,104,112,101,106,99,92,107,96,101,105,113,102,86,105,102,112,124,100,110,115,109,109,104,112,105,105,94,90,99,102,104,99,95,112,96,104,98,102,100,98,112,106,93,97,104,108,109,98,105,94,102,121,101,95,93,105,115,109,97,97,108,99,107,108,105,93,101,69,94,103,108,107,94,94,104,98,89,90,95,105,96,92,97,97,112,103,98,69,108,108,91,101,101,113,95,101,99,95,108,93,98,110,97,80,107,106,132,98,108,107,115,108,107,118,101,102,101,91,110,113,88,106,97,104,99,103,89,103,100,107,99,103,115,107,108,95,103,92,111,112,95,96,102,113,101,100,97,100,91,91,99,97,100,101,94,100,99,94,94,90,102,105,96,108,103,108,91,105,87,92,106,100,104,99,95,104,92,100,91,107,112,97,94,106,88,101,95,95,86,95,94,108,108,85,103,97,98,80,108,121,94,116,90,98,95,102,101,105,95,103,99,96,112,103,107,99,103,104,110,108,101,105,120,103,95,101,97,94,104,104,105,105,99,97,113,107,94,102,101,109,101,97,103,106,93,113,108,106,104,83,99,76,109,105,108,101,105,95,104,86,103,102,106,100,84,105,101,108,96,98,88,109,106,100,92,102,109,107,92,98,107,99,94,94,115,106,117,101,83,99,122,105,119,104,93,107,95,101,83,93,102,104,94,101,108,93,101,89,102,94,118,102,108,104,105,97,98,97,111,105,78,101,104,93,99,110,107,102,94,96,97,116,97,106,95,115,98,125,121,103,88,99,101,94,120,97,111,103,102,103,109,106,96,110,87,120,96,111,86,102,104,96,92,104,92,105, +453.38165,96,109,98,68,115,82,96,104,100,109,87,100,92,95,109,94,91,117,125,89,109,105,107,90,91,107,92,101,90,96,105,107,99,96,116,112,99,73,101,108,103,84,100,122,109,107,75,105,102,103,101,109,112,70,98,99,99,99,112,100,112,100,102,103,94,104,97,107,91,89,100,102,102,95,89,108,105,109,99,100,93,98,106,99,99,96,104,108,109,99,111,112,102,102,103,102,103,94,103,110,98,100,115,100,101,107,100,103,95,97,100,110,95,105,87,105,90,110,101,97,87,92,112,92,90,107,99,98,117,97,98,108,108,102,101,108,99,101,93,103,100,110,95,112,106,97,109,103,106,94,100,106,104,91,102,109,95,114,101,105,97,95,102,113,105,99,108,98,99,108,98,99,102,98,104,80,105,103,109,99,99,105,97,105,112,98,107,107,103,99,103,109,110,114,125,108,100,106,123,110,98,106,99,75,97,106,126,98,109,118,108,106,108,99,120,102,108,106,94,102,122,108,108,100,107,105,70,106,107,104,102,104,103,117,112,107,73,112,95,100,109,110,103,104,102,115,91,101,103,110,96,109,102,110,103,112,96,95,114,111,103,114,83,113,95,98,127,99,103,110,103,111,104,103,108,106,99,98,109,102,99,97,102,100,109,114,98,99,100,101,112,113,96,109,109,100,105,110,103,96,99,102,114,109,99,108,107,109,102,108,98,115,103,112,111,101,109,104,103,101,117,100,91,104,101,101,97,110,103,97,106,99,97,96,102,99,106,108,96,102,107,100,105,100,105,112,98,103,106,108,96,107,133,111,104,95,96,98,90,102,91,105,100,100,110,95,100,110,89,120,101,104,105,108,115,102,104,96,113,116,98,93,102,105,99,101,104,100,103,97,113,111,106,97,103,83,98,105,96,105,97,99,99,111,106,103,101,106,105,107,92,98,106,103,110,91,110,98,103,101,105,99,104,105,109,99,98,82,97,110,95,104,96,95,99,90,94,107,78,101,112,98,97,103,97,60,98,78,112,119,105,87,102,98,97,101,90,104,88,100,101,100,113,107,108,100,101,108,102,98,100,105,100,108,101,95,102,109,94,109,97,106,102,101,97,108,108,109,119,119,121,103,99,102,98,88,97,104,107,100,104,104,101,117,113,102,111,102,98,116,100,116,109,104,110,107,97,101,99,103,88,98,109,108,109,108,94,113,100,109,98,110,106,109,101,97,103,101,113,103,98,112,100,100,98,106,110,102,105,94,96,98,101,109,93,113,105,95,104,86,107,92,109,103,102,98,112,78,99,91,100,99,103,110,98,104,108,90,100,101,98,101,107,101,103,105,95,106,109,98,99,101,93,106,102,103,94,107,114,103,98,114,105,99,103,102,105,101,96,103,96,109,97,103,104,105,99,98,106,101,104,101,103,100,102,101,96,101,115,96,108,101,99,104,97,103,104,99,104,108,106,111,111,103,98,89,102,98,110,105,103,104,97,94,109,101,107,113,107,105,116,106,122,106,101,97,125,100,96,99,108,107,104,103,102,103,117,102,109,99,108,101,121,106,113,103,110,104,107,99,100,96,99,113,104,101,113,98,102,105,98,96,99,98,68,109,104,110,99,95,99,110,105,106,97,105,112,106,110,110,104,97,96,108,105,101,92,108,105,96,101,101,102,90,109,103,99,102,109,100,107,99,94,105,100,103,89,103,114,106,111,101,113,100,99,116,103,109,110,99,106,101,91,98,93,102,91,101,103,108,99,104,109,99,95,109,106,103,106,99,105,113,107,102,107,94,122,99,117,107,105,102,117,93,112,98,104,103,100,117,94,101,101,101,98,108,107,111,102,92,100,97,104,101,110,100,100,113,102,100,102,106,102,100,106,105,102,91,111,103,113,113,106,95,109,108,102,102,113,104,103,101,104,113,99,128,98,103,107,114,102,103,107,105,98,116,99,102,103,112,110,101,109,91,113,105,97,101,107,98,96,105,92,99,96,107,96,96,108,107,117,96,102,107,95,99,100,102,100,100,103,109,96,106,109,98,110,107,105,86,114,113,110,111,108,101,98,118,100,112,101,100,109,106,108,96,100,94,109,109,98,107,101,98,98,77,112,111,102,103,103,98,71,94,103,118,105,113,106,108,98,94,106,108,92,105,94,109,98,116,107,107,102,109,111,100,116,107,98,108,106,106,106,118,117,109,86,109,100,99,103,94,106,94,103,99,111,92,95,101,98,110,107,111,108,107,111,95,104,81,91,93,106,103,97,108,95,102,102,105,103,101,98,96,112,99,104,95,109,109,105,85,106,95,92,110,97,124,98,90,105,111,105,100,94,91,102,107,104,106,96,97,118,95,107,92,91,114,103,104,95,100,101,93,112,106,109,103,108,114,103,98,102,95,121,112,107,108,105,99,114,106,105,100,97,99,101,98,106,104,78,112,96,116,91,97,99,92,121,99,101,112,104,106,100,108,105,103,113,102,105,106,103,95,95,109,105,106,117,92,106,93,112,105,103,109,87,100,104,102,101,109,99,98,73,99,110,105,97,109,106,101,108,93,118,103,105,110,100,103,98,119,111,105,101,98,100,111,102,95,93,99,100,108,104,99,107,107,95,101,105,106,116,89,108,113,100,113,106,96,104,102,107,95,95,94,113,110,114,102,97,109,105,113,101,82,108,133,117,99,110,109,102,101,96,105,103,99,102,101,104,95,103,109,100,104,104,120,96,114,107,110,109,107,102,104,101,108,94,110,112,103,104,117,113,107,117,116,108,106,119,125,102,99,100,103,98,108,113,84,93,107,122,88,108,84,109,100,102,109,110,107,104,91,100,99,109,111,97,98,99,108,116,118,98,102,109,112,112,109,103,107,101,108,104,96,108,84,104,117,107,127,97,108,93,107,108,99,89,117,97,106,103,109,106,101,104,95,106,106,106,107,103,91,94,120,96,95,111,108,101,110,103,97,100,105,103,104,93,101,110,99,97,95,98,107,105,106,107,92,93,123,104,99,106,92,109,107,104,86,105,100,108,117,112,93,97,116,114,107,107,106,96,98,100,108,78,104,112,115,96,102,109,103,110,74,105,108,102,97,103,112,102,93,120,109,107,103,112,103,100,102,96,106,108,99,97,106,108,100,106,97,99,87,101,102,94,105,108,100,100,100,100,102,113,105,100,103,109,106,106,99,102,107,98,94,102,99,102,109,100,100,97,107,111,108,100,107,104,107,100,113,116,104,108,100,108,97,106,102,100,102,83,104,116,103,109,112,109,112,102,112,108,94,98,112,102,110,122,101,89,101,91,101,94,106,109,110,110,112,115,96,113,102,101,106,106,105,101,100,85,108,91,91,96,108,100,103,107,96,109,98,107,113,113,92,87,101,98,93,100,108,98,111,101,106,104,104,92,113,103,101,96,99,109,103,96,110,103,123,103,97,102,100,114,104,103,99,112,92,98,104,104,104,98,93,102,82,98,96,103,121,97,101,98,96,111,106,104,98,100,116,108,113,108,108,109,95,102,102,107,118,105,127,108,113,99,126,88,104,100,114,98,103,118,102,100,110,98,109,124,117,107,104,99,113,104,100,86,99,108,91,104,111,105,112,110,102,107,105,101,99,117,116,105,102,103,104,106,105,101,105,87,110,99,102,105,100,100,104,105,105,109,101,100,110,97,109,105,100,109,107,95,101,106,97,102,96,110,119,97,103,106,104,100,113,107,122,100,97,109,102,98,98,104,96,106,90,105,103,102,84,105,102,111,98,102,113,105,107,109,107,101,102,114,100,109,100,111,112,93,98,93,108,105,114,105,98,97,101,108,99,90,102,110,111,110,105,91,117,97,101,104,99,105,95,103,95,106,101,107,105,107,113,109,101,95,98,101,105,104,101,102,92,101,93,106,94,101,101,96,102,98,96,96,87,101,82,110,101,112,98,109,102,105,120,104,95,100,100,90,102,95,100,105,103,91,102,99,91,111,104,94,109,108,115,107,109,86,113,101,120,96,102,109,106,103,104,117,109,107,102,108,95,98,104,106,101,120,109,108,90,112,106,112,99,113,109,108,100,100,105,110,101,100,106,108,109,103,100,105,110,104,105,85,110,104,102,95,107,97,97,99,103,94,98,101,96,94,103,94,97,93,99,113,104,110,105,105,103,106,113,117,89,103,101,100,97,113,88,98,106,102,109,108,92,92,104,104,97,92,113,100,101,108,102,103,105,101,89,104,99,101,99,103,107,96,107,88,95,107,92,100,103,95,102,111,96,105,104,101,65,109,115,92,90,99,100,110,113,107,99,79,104,101,104,113,102,98,108,112,96,109,113,105,99,110,101,98,108,103,95,106,95,101,95,103,108,105,108,105,102,99,110,108,110,93,99,103,112,96,103,104,105,112,106,107,108,106,92,104,91,104,108,108,117,110,111,101,99,112,110,97,100,111,115,98,96,95,104,91,109,109,114,108,94,106,105,98,113,101,90,87,104,104,105,101,100,94,100,105,104,101,113,96,100,95,79,105,101,106,112,109,107,93,94,109,113,96,104,107,103,109,106,103,94,96,112,123,100,95,100,104,98,102,104,102,109,102,110,95,100,106,105,104,112,100,106,103,125,103,100,112,100,97,101,105,100,96,83,116,107,118,98,117,97,110,101,116,105,90,102,100,105,106,102,102,111,103,99,101,106,99,96,88,109,107,109,97,82,99,99,105,102,106,98,103,110,101,107,99,113,104,101,102,101,98,103,93,107,101,118,97,97,93,100,92,96,82,98,89,106,106,89,111,113,98,96,103,98,113,97,100,113,108,90,105,108,111,106,115,103,83,102,109,94,113,102,94,108,96,94,93,105,105,108,93,87,104,117,94,103,103,90,102,110,101,104,110,102,121,113,119,96,99,99,111,109,101,92, +453.52206,100,100,100,94,101,113,99,93,110,93,99,102,98,91,111,94,86,118,108,96,91,82,101,98,112,103,100,106,112,97,102,87,104,103,109,114,107,94,95,91,111,115,98,98,107,121,107,114,107,109,95,98,106,101,105,93,101,112,77,110,97,105,101,97,104,99,91,101,87,94,102,103,104,93,97,110,100,83,111,102,109,104,108,117,94,93,98,100,102,105,111,106,111,103,106,98,113,111,101,112,87,107,108,107,92,95,115,97,103,96,108,96,113,106,105,76,103,109,112,123,103,110,100,94,99,108,108,115,109,105,108,116,93,102,105,99,103,100,102,105,105,103,105,105,103,96,102,104,93,104,96,91,121,101,115,89,106,105,98,102,111,112,105,103,103,113,105,90,104,106,112,102,102,95,108,109,113,103,104,103,95,95,98,109,108,111,100,102,100,97,106,96,103,101,104,100,97,112,115,114,96,106,90,103,106,137,97,110,110,99,92,100,110,89,108,101,99,107,103,105,108,105,99,110,94,95,108,107,102,95,104,104,100,108,102,96,103,71,103,101,99,96,106,105,102,95,96,99,113,98,89,95,86,115,102,120,113,102,126,99,95,102,107,116,98,95,109,106,114,107,122,97,117,102,104,115,112,122,96,100,117,104,108,117,94,101,107,99,96,100,101,106,111,100,105,85,106,104,100,113,101,104,77,94,99,106,116,113,95,110,92,112,104,113,99,101,112,102,107,103,90,108,103,111,108,102,100,92,101,102,107,114,112,99,108,102,93,103,98,104,96,102,96,102,98,99,103,96,109,103,113,104,106,115,101,100,100,117,91,107,85,108,99,97,88,101,95,102,101,107,125,99,103,119,98,104,101,108,98,131,102,106,105,120,98,103,99,94,112,104,113,95,101,89,107,99,106,81,109,111,105,103,101,97,97,122,99,102,103,102,97,112,106,114,110,104,110,102,101,102,102,93,106,104,104,97,100,96,106,108,95,117,104,105,95,101,95,118,97,85,105,96,88,107,98,95,88,113,102,108,101,98,96,103,114,99,96,100,103,102,95,100,96,108,94,104,100,97,95,92,106,109,99,102,97,92,86,98,113,104,105,107,107,93,107,105,113,101,105,92,98,114,109,106,111,110,94,95,109,99,113,95,101,99,96,108,95,101,100,77,110,109,99,104,107,106,113,105,99,96,101,106,104,112,103,97,105,105,107,112,102,94,96,107,101,92,93,99,114,108,104,107,98,94,105,99,125,99,104,99,100,97,106,91,105,110,94,101,77,98,103,97,96,86,109,103,104,113,104,108,91,100,90,110,99,117,106,94,100,118,98,111,103,101,99,96,102,117,107,109,109,108,102,104,106,88,98,117,92,105,103,109,98,94,94,99,102,88,107,93,70,105,113,109,92,100,105,101,104,94,102,99,112,106,105,97,105,107,132,96,107,112,106,102,106,100,97,103,105,110,98,113,107,102,101,96,104,98,103,113,101,120,117,100,100,117,116,116,96,102,111,103,112,108,86,88,117,94,91,95,99,117,125,99,102,113,107,99,116,105,105,120,113,112,104,107,100,107,106,104,105,109,100,103,104,98,97,112,109,95,99,88,98,108,107,112,101,100,92,105,107,90,108,97,107,94,101,89,104,99,105,109,102,122,92,95,96,108,108,116,105,102,97,112,114,84,99,102,107,98,111,108,86,99,109,99,103,114,118,111,133,106,105,99,100,111,102,107,99,112,98,103,108,119,93,100,98,110,95,98,112,110,105,94,104,108,110,81,106,103,83,102,111,111,97,102,106,108,99,105,112,95,110,111,108,100,117,105,101,112,106,99,124,99,120,104,107,111,111,97,113,103,106,116,113,98,112,107,107,106,107,102,97,109,100,109,109,94,106,101,114,97,121,114,110,108,100,110,111,99,100,113,96,95,114,111,101,97,73,91,82,97,107,105,122,108,108,101,101,104,95,104,102,113,107,102,99,110,116,111,105,117,99,109,101,102,104,106,103,101,111,97,115,106,98,112,105,107,103,104,101,100,113,105,112,123,100,100,104,100,106,100,112,94,92,112,95,100,102,95,103,104,105,89,106,96,100,108,99,111,99,110,114,102,109,104,104,81,93,92,104,87,87,96,117,96,108,113,109,100,110,107,102,105,109,103,93,101,109,105,107,111,114,110,101,110,117,102,90,94,104,114,114,103,112,109,102,95,102,107,98,105,108,95,109,84,105,108,100,106,112,100,113,107,101,102,80,96,103,102,110,102,105,88,117,107,104,90,109,93,105,96,103,80,106,102,104,96,104,105,91,109,111,108,103,100,92,107,87,97,106,76,108,102,110,106,97,98,90,102,107,101,99,97,100,103,104,112,118,113,96,106,90,93,97,107,102,99,99,97,92,99,104,122,95,104,104,101,100,103,108,103,99,106,111,78,101,103,114,100,91,102,108,100,100,101,106,121,87,110,102,91,109,112,98,100,98,94,108,102,109,100,81,98,101,100,95,92,108,114,103,98,108,95,117,111,100,104,100,100,105,111,105,90,97,102,101,117,91,107,112,101,100,104,99,104,104,114,105,96,100,102,76,110,99,104,101,102,94,103,111,100,112,109,100,100,112,104,102,96,112,81,96,100,100,105,107,107,106,118,104,98,104,106,104,124,111,101,103,87,102,84,107,113,98,105,106,109,100,108,109,114,102,115,110,100,109,94,102,113,100,108,108,109,95,100,105,112,114,105,108,113,108,106,97,101,105,105,106,113,105,111,95,111,105,94,104,92,112,100,98,106,100,110,101,113,101,101,111,98,110,98,113,101,103,95,110,110,98,105,97,106,108,102,115,100,109,106,106,104,108,114,111,109,90,97,105,122,101,111,103,103,81,97,104,104,105,103,94,98,97,106,107,111,109,106,101,105,103,104,108,96,105,96,121,109,99,115,102,99,98,97,92,111,111,105,100,84,109,109,95,100,113,107,95,97,108,106,129,94,99,89,113,109,110,113,104,109,103,115,105,105,96,96,104,105,99,110,101,101,115,111,112,112,99,100,96,100,101,108,102,107,95,111,103,102,107,87,101,110,99,113,101,112,101,107,98,98,96,101,113,110,113,103,93,102,105,113,83,91,104,97,119,103,112,106,103,107,98,103,88,92,122,98,117,103,116,92,109,102,102,94,115,113,119,103,97,99,93,116,109,121,102,98,109,95,102,113,112,96,92,108,96,112,110,98,63,100,104,106,113,94,97,114,97,100,108,89,113,101,101,95,98,110,113,103,95,117,99,108,103,109,111,87,113,94,91,102,101,103,95,101,115,102,106,116,108,111,105,99,117,111,110,107,108,112,113,99,102,99,107,108,107,106,77,109,95,103,101,105,92,99,110,113,98,106,105,90,107,105,106,109,99,111,107,107,106,99,114,97,111,119,112,102,109,116,112,103,100,100,107,93,104,103,100,114,100,108,109,95,109,105,100,105,91,110,109,99,94,94,100,105,111,91,95,99,98,96,105,99,110,104,98,107,124,100,110,105,104,80,112,101,91,111,95,106,100,99,96,109,90,108,104,101,92,103,102,112,106,106,110,106,105,104,106,99,98,104,109,103,106,100,91,101,101,99,105,114,107,97,99,103,97,105,104,92,104,114,112,107,93,98,112,108,107,95,104,95,122,99,104,94,103,105,100,99,106,102,106,110,111,109,98,100,93,108,106,103,100,111,104,102,103,108,96,113,94,106,103,96,92,96,101,112,103,95,88,90,105,98,109,90,101,104,113,95,74,101,97,102,98,89,105,112,110,98,101,94,107,100,92,108,97,96,103,109,98,106,106,109,115,109,99,99,100,97,86,102,113,107,94,107,101,102,104,114,109,102,101,96,98,107,98,100,99,110,95,91,91,96,107,104,103,107,97,101,104,107,110,95,95,103,101,107,104,104,86,94,96,109,112,99,105,103,103,102,104,107,102,108,104,106,93,107,103,113,107,102,95,99,104,106,100,108,102,97,100,104,107,107,100,108,92,109,109,99,103,96,103,95,109,100,107,98,102,102,101,103,111,108,132,106,117,91,108,116,96,95,113,109,98,103,99,98,97,102,92,103,97,107,97,116,100,108,122,103,98,101,108,112,95,104,100,90,103,93,119,102,100,97,92,98,94,100,96,99,105,101,96,98,116,103,101,92,95,106,111,101,95,107,98,115,116,96,116,104,96,95,104,97,105,115,95,112,104,95,92,102,102,113,105,99,102,109,96,104,103,103,104,105,100,102,113,97,98,90,107,104,106,101,97,101,112,103,99,107,109,91,104,100,102,115,100,101,94,98,100,93,119,103,115,101,79,98,100,97,113,102,102,104,100,104,110,97,91,101,97,96,108,100,102,116,101,107,98,108,108,100,116,111,104,93,101,107,101,112,116,105,97,100,103,91,110,112,103,125,102,111,131,88,113,103,106,102,110,96,108,83,88,98,105,100,111,111,108,106,103,92,106,105,104,96,92,98,106,92,113,109,110,104,105,98,100,112,95,109,101,120,113,91,95,103,111,122,103,102,109,107,95,107,98,101,101,106,105,106,100,89,109,103,101,106,104,104,106,98,101,103,95,97,104,106,109,105,111,109,98,100,101,116,102,120,110,107,94,97,105,102,116,109,109,105,108,104,100,95,106,106,100,127,103,96,106,104,100,102,99,104,108,99,97,103,110,104,102,114,113,99,104,103,106,95,119,100,104,106,108,88,98,106,110,103,101,100,106,102,108,116,93,105,112,93,109,97,104,103,106,86,104,112,98,105,107,121,109,106,103,92,93,97,109,107,98,100,91,119,100,96,110,98,104,102,91,98,103,105,97,93,102,105,113,100,105,119,108,115,104,94,121,91,104,110,102,102,91,98,101,100,88,81,108,109,100,109,104,117,104,101,96,107, +453.66248,101,102,97,113,81,97,85,100,84,128,105,100,101,107,88,106,95,114,96,89,102,104,92,107,101,117,103,114,105,109,93,98,83,98,100,100,105,91,97,98,97,98,105,95,88,109,101,110,96,102,99,95,106,100,105,106,90,102,111,83,106,110,93,104,103,119,95,101,103,96,109,102,94,100,95,122,100,110,102,92,101,108,94,100,108,109,109,115,104,97,112,91,108,111,104,103,106,125,96,102,95,95,105,102,87,97,101,99,96,93,94,105,93,97,101,97,99,105,107,93,102,88,97,109,106,99,105,97,104,97,113,114,117,100,106,108,91,101,108,100,93,92,94,105,107,115,105,87,97,106,106,94,115,101,102,92,110,88,91,107,94,103,101,102,105,95,100,95,90,116,97,109,86,113,104,106,110,94,99,121,99,103,95,92,110,95,89,98,113,99,97,105,115,95,111,105,105,95,87,115,96,106,103,103,107,114,110,96,109,104,104,105,106,101,108,88,99,94,107,109,94,111,104,99,106,140,105,109,95,98,97,110,106,110,105,104,99,107,99,109,95,97,105,101,91,108,98,91,96,85,93,103,101,87,102,110,93,101,106,102,100,106,96,101,99,102,102,110,117,98,75,107,109,97,107,102,95,104,101,74,101,117,113,93,100,102,87,110,104,102,103,98,108,102,116,99,96,96,101,84,109,100,110,102,106,110,102,94,103,100,97,109,100,100,101,99,103,101,107,112,107,104,97,114,114,99,103,93,86,117,112,93,97,99,109,109,101,103,95,113,113,95,98,112,102,111,104,107,109,111,104,86,109,105,124,102,108,104,113,95,108,105,95,116,109,102,93,96,106,112,85,108,101,110,96,99,107,93,100,111,107,104,98,101,87,107,108,101,120,96,108,129,96,104,105,132,103,109,110,105,105,113,110,102,105,93,96,101,106,96,96,95,104,102,104,97,103,104,110,98,104,103,95,96,94,101,103,106,97,105,104,101,113,101,99,97,105,100,100,104,99,91,100,106,98,100,115,95,101,104,90,111,95,107,111,106,102,111,98,89,95,108,94,108,106,109,119,106,108,98,88,109,99,111,93,95,98,117,102,99,93,96,109,98,98,102,98,99,109,121,100,96,99,98,101,102,104,108,97,109,108,106,99,114,107,109,103,101,102,105,111,109,99,106,100,102,98,91,94,104,103,83,113,105,105,98,106,106,99,104,100,104,104,97,92,105,100,100,103,103,92,107,97,106,90,101,99,113,99,104,100,110,101,101,104,106,103,96,88,110,112,102,106,92,100,103,90,96,105,104,95,100,113,97,109,105,96,105,82,94,104,94,101,102,94,96,107,103,111,98,124,101,99,114,106,105,99,81,100,108,102,91,110,107,94,105,95,99,96,105,102,109,99,96,102,100,104,96,102,104,106,135,115,100,109,100,82,101,103,112,98,112,95,103,107,95,105,91,96,99,113,104,97,102,97,91,109,86,113,102,95,103,99,104,101,80,95,93,103,117,109,120,107,114,101,104,97,92,106,95,102,107,105,91,86,122,106,95,99,101,100,114,104,89,105,114,107,104,97,86,104,104,108,103,106,98,108,113,109,94,100,98,86,95,99,110,110,107,99,110,104,96,113,91,88,90,103,100,102,105,94,101,100,111,90,101,112,105,100,109,109,128,92,95,95,95,112,88,112,96,108,90,111,108,102,107,104,100,102,95,104,94,113,99,122,109,80,115,115,107,104,104,95,102,104,106,117,100,95,99,106,110,93,126,94,100,102,96,108,96,97,110,106,106,96,111,104,117,95,104,101,99,108,114,103,99,103,113,109,114,92,102,99,101,104,106,99,87,106,101,102,101,100,90,86,106,105,101,95,96,104,98,107,99,95,96,122,95,110,94,96,96,103,113,121,109,97,106,104,99,102,106,97,101,103,99,90,98,109,89,82,94,99,110,104,106,116,77,90,90,102,99,77,104,96,108,110,92,107,97,111,115,100,93,93,106,100,99,100,93,91,99,112,107,102,97,88,110,105,95,95,108,106,97,83,104,94,113,96,108,98,97,93,102,107,89,95,104,114,103,105,109,109,90,106,89,97,94,96,102,96,101,112,110,95,103,100,117,101,111,89,114,108,100,104,112,99,100,99,96,103,113,98,109,90,107,95,106,103,111,105,103,111,109,109,104,94,94,98,97,109,98,102,113,103,101,97,110,101,103,98,101,92,103,98,102,107,107,102,110,101,100,108,96,101,98,104,100,106,93,123,104,102,109,99,99,100,108,101,98,100,105,107,100,110,104,99,94,96,96,98,104,80,93,110,111,99,108,102,101,89,116,101,78,99,97,93,108,92,97,111,93,116,106,105,82,102,110,103,116,90,106,94,96,94,88,100,98,102,98,101,106,100,100,119,101,82,109,98,101,98,124,96,114,96,102,98,103,102,98,101,117,97,109,109,103,102,104,101,98,107,98,101,106,111,113,102,107,117,109,104,104,101,102,106,108,107,107,102,92,98,105,105,105,87,110,104,106,118,99,93,107,89,108,106,88,110,102,99,107,118,93,102,101,98,109,103,106,95,119,103,106,100,105,98,105,108,105,114,103,107,95,89,102,109,111,100,102,104,66,112,103,107,100,104,108,118,132,113,91,105,106,90,109,104,100,106,95,103,112,109,104,106,107,100,97,117,102,94,98,106,108,94,105,112,108,138,96,101,118,104,101,110,117,97,107,99,92,111,114,115,103,113,89,116,105,102,110,106,103,105,104,106,108,108,107,88,83,104,106,106,102,96,100,115,106,104,108,96,108,106,102,109,102,107,115,106,113,106,106,106,99,103,92,102,106,110,114,117,101,113,99,108,112,108,105,100,101,93,108,95,103,106,110,95,99,99,105,96,101,112,99,94,109,97,101,104,102,115,108,94,115,102,120,131,100,95,101,103,101,97,106,119,96,124,96,104,98,100,108,105,106,103,104,107,99,111,115,110,115,98,98,104,98,94,102,100,99,109,107,100,98,84,79,111,99,102,108,100,97,109,100,108,90,115,108,83,95,101,108,102,97,109,106,109,103,113,115,116,104,102,103,101,104,100,102,100,106,103,102,113,107,102,115,104,95,107,86,98,93,99,97,107,121,120,115,107,107,105,100,95,103,97,108,116,109,107,99,93,99,97,81,102,99,109,101,117,100,98,121,116,111,103,109,108,95,107,101,101,115,97,98,106,110,95,95,98,106,103,111,107,137,109,100,100,97,105,96,106,109,106,99,105,102,109,69,87,103,90,102,100,101,98,100,92,105,100,107,114,107,105,93,101,107,109,114,105,93,94,109,107,103,106,100,109,106,98,103,114,99,114,113,113,108,115,104,99,96,99,110,95,103,104,112,103,109,110,102,100,98,111,98,106,121,115,95,104,105,105,104,106,104,106,110,114,92,100,98,89,114,103,95,101,98,108,109,107,124,105,108,114,102,105,90,96,78,95,103,99,98,94,112,102,102,97,107,102,103,95,92,116,118,109,100,94,113,110,89,103,108,96,106,105,123,82,102,103,92,97,104,107,113,102,100,101,107,92,103,111,113,101,104,99,95,112,109,106,102,99,102,108,92,104,101,99,108,110,110,105,103,105,99,110,96,104,100,109,109,102,117,104,99,113,109,103,105,103,100,115,106,105,95,113,92,90,101,96,107,99,100,108,104,118,97,101,106,113,87,129,76,102,108,113,101,105,104,104,110,106,102,115,76,99,109,83,98,105,98,98,94,100,98,95,109,109,110,108,104,108,95,107,104,110,101,96,99,105,93,100,110,102,97,105,101,109,106,98,98,110,97,108,101,109,101,116,101,104,102,99,106,104,106,118,100,99,109,106,105,104,97,104,103,100,110,107,108,94,101,117,100,93,100,105,105,105,95,62,106,99,113,104,113,98,111,101,106,102,96,111,106,100,100,102,100,109,106,101,94,107,105,101,98,102,106,104,99,107,107,88,100,107,107,93,103,102,110,103,106,90,117,107,111,93,110,105,105,96,109,111,102,103,110,107,109,109,109,110,111,104,108,113,102,100,107,112,116,95,94,114,90,109,99,92,101,106,112,109,107,93,94,100,98,106,116,111,115,109,114,89,105,111,96,100,109,105,108,103,104,101,106,105,97,118,103,97,94,105,106,106,100,114,101,98,96,107,106,105,109,99,103,103,105,101,110,129,105,95,106,98,78,97,104,103,105,103,107,110,115,104,116,98,101,105,108,97,105,105,111,107,95,89,99,102,107,112,112,102,103,102,103,112,102,99,114,109,98,102,109,103,101,104,95,100,95,94,117,102,106,105,111,93,110,99,123,95,106,100,97,88,109,98,101,108,98,104,112,99,101,112,110,101,110,110,104,110,104,108,106,110,113,101,111,74,109,76,96,104,104,94,104,94,93,98,101,94,104,109,94,106,118,116,106,100,100,114,99,95,131,104,107,90,109,103,106,108,107,104,101,98,106,99,97,106,112,113,114,107,103,116,99,102,105,102,108,103,102,102,109,98,91,106,96,101,111,99,108,103,102,111,106,98,110,95,113,93,106,102,99,98,100,112,110,102,97,102,109,106,102,98,128,97,102,81,104,112,110,109,99,97,103,100,97,105,101,98,105,104,105,106,99,113,106,76,100,104,100,120,108,110,115,105,92,106,116,104,101,109,98,98,99,95,110,104,99,94,106,114,111,99,104,102,107,115,108,103,95,108,96,120,105,94,102,91,117,101,101,101,94,102,108,105,95,105,108,97,92,102,103,102,110,102,89,107,113,75,102,111,103,110,93,111,105,121,92,98,109,95,106,115,92,104,102,104,96,117,114,95,114,104,80,113,106,95,94,99,108,98,94,103,88,109,109,102,89,102,97,106,120,94,84,117,109,106,92,96,102,104,106,92,104, +453.80289,89,93,98,111,96,91,104,96,90,104,109,94,87,108,96,113,97,102,111,105,104,102,116,106,98,103,105,102,98,99,99,108,103,105,112,99,100,97,89,91,97,104,97,113,120,96,96,98,107,89,104,101,98,104,107,112,97,99,102,109,105,109,105,84,102,97,109,95,92,106,109,65,101,112,96,98,97,104,108,98,99,97,113,108,98,103,106,98,94,100,95,103,112,97,90,107,104,92,96,97,117,96,83,103,93,100,92,115,104,102,103,98,101,103,104,98,100,104,118,113,115,94,90,111,107,106,106,99,112,100,118,101,101,102,100,100,97,113,102,81,99,103,96,99,92,90,99,94,100,103,101,99,108,91,91,97,90,101,95,107,96,86,100,99,105,101,97,95,94,106,106,101,94,96,105,100,100,100,87,113,100,96,99,104,103,95,98,82,101,95,99,110,97,103,102,118,109,106,105,97,99,106,79,101,97,92,92,114,105,116,101,98,98,100,111,113,105,107,104,99,109,108,104,101,110,97,114,104,113,100,102,101,99,115,90,105,108,97,101,120,117,94,105,104,113,95,103,104,109,99,104,109,107,109,99,117,92,102,95,99,100,110,104,113,99,112,109,106,101,105,113,103,91,102,98,99,98,110,98,103,93,102,107,92,106,112,101,103,107,110,103,94,116,103,111,108,102,101,114,96,108,95,104,93,92,118,113,105,100,106,98,106,101,104,109,96,94,97,109,103,111,109,101,95,95,121,94,94,115,113,103,91,110,112,94,99,108,101,101,102,98,95,101,95,102,104,96,113,108,93,104,105,105,93,92,121,103,108,108,101,109,94,97,96,94,112,112,106,100,107,104,95,112,115,90,106,104,110,121,93,107,102,105,102,99,105,103,99,101,94,109,77,97,101,104,95,89,101,113,108,92,111,100,100,107,97,104,101,104,110,97,102,102,103,110,86,93,106,105,102,114,105,109,111,113,103,94,99,105,106,112,103,110,95,113,107,100,114,101,92,107,98,109,100,90,108,98,112,107,99,101,103,98,117,99,100,95,99,108,105,103,105,113,103,98,106,103,89,112,99,98,99,105,97,107,110,102,111,108,106,100,107,104,105,108,108,103,99,108,106,105,106,115,114,96,102,98,99,108,100,77,107,108,108,94,98,104,104,107,100,97,105,103,99,104,103,124,97,104,109,100,107,98,111,108,109,97,109,104,107,99,102,101,108,108,81,109,91,101,102,107,108,97,107,97,104,104,108,102,120,97,97,113,105,97,102,103,100,92,113,104,105,115,106,97,107,105,112,114,109,107,91,101,95,97,104,98,99,91,98,102,99,100,100,104,105,97,109,96,100,113,94,95,103,102,122,91,101,99,105,97,103,99,103,98,100,97,87,99,100,102,107,101,117,113,97,108,104,101,102,106,111,106,102,93,105,101,101,106,115,107,117,91,113,110,110,96,104,109,101,121,113,100,106,100,98,102,94,97,105,109,106,104,109,102,108,98,110,110,105,103,112,107,106,95,95,111,102,95,96,111,79,100,101,102,109,96,97,105,91,113,95,101,94,98,88,98,97,111,95,105,101,121,100,103,98,92,119,96,103,108,95,98,110,104,109,96,125,86,100,107,90,106,108,92,106,91,97,103,105,100,83,86,105,109,109,101,102,95,114,95,102,108,94,107,98,99,102,99,90,97,91,95,96,108,109,112,102,99,101,100,98,103,101,115,108,109,100,93,94,107,91,102,93,104,95,93,99,108,105,115,102,100,102,91,105,105,97,102,100,99,98,95,89,92,109,102,102,100,105,114,108,110,108,99,110,112,116,88,95,110,108,106,113,105,109,92,100,120,103,105,108,99,97,112,98,106,105,108,98,100,90,99,107,106,85,92,103,126,108,95,112,108,101,97,110,98,106,115,96,113,104,110,93,97,109,101,100,85,105,98,105,93,100,110,103,115,111,104,101,107,102,99,104,99,90,99,94,106,116,99,111,75,104,96,102,111,103,103,95,112,100,105,97,102,102,97,104,104,106,103,110,107,105,106,104,99,110,105,97,98,110,95,109,102,105,88,99,110,101,96,98,96,97,102,102,102,106,84,107,103,95,111,106,99,102,106,108,96,102,110,108,100,103,116,111,94,99,108,107,109,105,94,99,100,104,104,109,111,100,101,104,103,103,103,101,100,102,114,103,110,114,102,88,114,92,99,99,103,108,102,103,103,104,97,95,100,106,111,118,82,95,105,104,99,90,109,101,96,99,109,94,105,134,100,100,111,110,107,97,117,106,112,103,111,98,106,95,97,104,92,120,101,106,107,113,90,92,108,103,95,107,114,94,109,103,96,98,98,99,88,100,91,100,114,92,101,89,107,108,101,90,106,109,93,100,98,108,112,97,106,107,113,101,100,109,101,103,109,108,105,121,103,114,93,95,100,105,74,106,100,119,106,106,95,99,106,116,104,102,96,103,98,92,98,98,94,105,103,94,101,105,110,109,96,113,104,116,103,103,96,99,106,112,114,98,101,113,106,106,92,112,101,108,70,98,107,108,102,108,92,104,112,109,100,102,103,110,109,101,94,110,105,107,114,102,103,105,101,107,100,97,99,105,83,95,106,107,98,94,107,103,109,106,99,107,96,104,102,96,106,97,128,106,109,96,97,92,103,91,98,89,117,117,101,111,107,108,95,115,111,103,103,105,125,105,124,91,103,97,97,103,99,101,95,102,105,99,100,111,102,97,102,102,104,116,103,107,99,89,101,100,104,106,112,105,110,105,95,109,110,104,101,103,104,98,100,91,100,94,113,102,102,108,108,108,103,102,99,107,96,101,106,94,109,99,119,99,98,110,98,99,112,108,79,112,105,88,92,112,112,103,107,107,117,109,99,101,90,102,127,87,105,113,104,91,93,100,101,105,103,95,108,98,102,104,115,98,105,108,103,112,117,108,102,96,105,104,105,119,108,107,117,113,93,99,99,106,98,101,99,104,102,93,98,112,101,97,100,109,107,103,98,99,102,101,111,102,104,108,105,90,106,103,111,109,117,105,115,102,113,105,104,97,104,107,100,95,112,99,65,105,109,96,105,93,94,113,98,92,106,110,112,103,77,113,105,94,102,99,113,112,109,112,103,102,108,115,106,104,98,98,103,110,98,111,114,98,98,97,91,108,83,98,102,85,106,100,99,103,112,97,99,109,100,103,109,113,100,109,105,103,95,99,100,106,113,102,83,103,97,102,109,103,99,117,106,99,108,112,103,103,106,106,101,100,100,97,120,91,103,90,109,76,105,109,107,102,109,105,96,112,94,115,105,94,106,101,102,105,117,110,103,101,110,99,102,97,105,74,97,106,115,99,99,97,95,96,92,108,102,103,88,108,101,98,96,101,109,96,95,97,95,112,104,105,98,100,114,101,100,109,99,106,104,95,95,97,99,106,97,104,106,112,91,89,95,102,109,87,104,95,110,108,92,106,100,107,116,94,101,93,104,107,95,104,106,117,108,111,106,92,105,112,107,118,102,96,110,101,103,115,111,105,92,102,102,104,105,105,94,102,105,101,102,101,98,106,102,94,91,90,101,106,102,107,102,105,112,96,102,99,91,111,91,95,111,99,102,99,101,102,100,108,99,98,102,115,103,100,103,110,99,115,112,96,117,111,96,108,95,109,100,120,98,108,107,109,95,106,117,107,90,98,99,88,105,96,105,105,103,106,100,114,117,101,94,90,101,110,101,105,116,99,105,97,109,106,92,102,111,113,107,98,104,112,100,96,107,102,99,84,99,106,111,95,99,94,109,95,101,102,95,113,108,104,105,102,114,100,94,104,105,100,93,100,89,103,100,101,101,97,104,105,99,103,96,97,104,105,98,104,106,83,104,98,91,100,103,99,96,91,115,117,107,89,94,105,95,99,95,96,100,111,114,109,104,106,94,104,102,104,95,97,104,99,98,109,117,95,84,96,100,105,93,109,103,106,112,103,117,90,98,114,106,85,106,102,104,108,110,114,114,97,105,100,97,105,123,104,105,102,100,94,99,103,104,96,105,107,113,95,98,96,107,99,102,100,97,105,101,97,107,82,96,118,105,104,104,109,114,92,95,103,100,107,102,104,119,106,104,103,118,105,105,112,98,95,106,103,105,87,127,107,106,111,100,111,109,98,99,105,101,101,89,121,106,103,112,97,101,101,107,90,99,130,98,97,102,112,107,128,96,103,106,112,132,95,106,108,112,96,90,100,125,103,111,96,90,107,102,87,101,99,102,96,77,94,103,104,108,100,98,101,95,108,100,96,92,102,90,105,106,104,106,102,109,91,82,104,94,103,107,106,106,104,98,91,94,103,101,106,102,92,108,103,111,112,114,110,99,102,84,123,102,107,103,113,100,97,106,99,103,112,112,103,129,104,107,93,96,92,95,94,86,102,109,108,103,98,101,93,95,86,104,94,94,110,97,103,105,98,97,105,96,88,108,102,117,96,98,97,110,95,98,109,110,96,121,99,96,94,99,107,96,108,101,111,97,118,92,97,101,101,88,98,105,108,108,93,90,104,100,105,108,102,98,92,101,96,92,102,109,109,83,79,107,116,92,107,106,96,100,100,97,105,76,98,104,98,102,115,92,121,105,103,116,97,96,113,109,100,96,102,120,112,109,110,99,99,93,98,102,103,109,106,109,98,103,93,104,109,103,113,95,107,109,138,87,100,103,104,94,101,95,96,98,97,105,82,84,116,107,95,99,99,106,107,84,104,102,100,105,96,83,100,111,100,95,115,113,111,104,113,107,103,101,97,92,100,101,96,109,98,92,97,102,109,109,98,95,106,117,109,101,96,103,84,91,108,90,121,100,97,98,109,91,105,109,89,99,111,125,103,92,113,104,106,109,87,110,104,83,98,105,98,105,97,94,103, +453.9433,94,84,95,98,95,106,100,90,93,103,97,91,94,104,97,107,97,123,106,98,92,99,109,102,105,101,98,73,107,106,90,78,98,99,102,97,102,91,92,93,97,96,103,109,107,104,102,92,99,97,97,96,103,101,92,99,95,92,110,100,106,101,90,97,110,105,124,105,104,90,109,100,106,102,101,103,94,104,104,99,120,100,110,94,107,104,106,94,118,111,99,107,95,108,96,102,96,99,90,98,104,99,103,105,93,103,128,108,101,90,105,98,122,100,103,108,104,102,111,92,97,96,106,100,99,106,103,81,102,91,120,116,99,97,105,105,108,102,87,86,102,109,96,101,90,106,105,110,106,95,96,102,111,91,117,90,97,109,96,103,111,105,108,103,108,111,109,100,105,95,103,107,105,101,96,107,106,87,102,114,106,105,119,104,113,105,105,88,111,118,109,87,103,105,103,111,99,107,104,114,100,101,132,98,110,105,106,107,106,113,99,108,111,86,115,99,109,94,104,107,96,112,107,98,104,106,107,100,105,95,112,92,92,101,100,102,114,114,104,104,109,111,131,99,109,102,110,116,109,112,99,109,113,121,98,96,98,102,95,103,94,108,99,94,112,103,100,103,113,98,106,91,105,98,103,102,99,112,102,109,95,88,105,101,101,105,102,102,103,110,124,97,112,100,131,113,111,113,109,99,101,103,90,89,102,105,109,107,97,118,94,112,88,135,107,109,101,108,117,98,91,101,103,101,103,106,98,95,107,116,103,91,102,104,105,110,99,125,106,101,113,116,109,98,78,113,103,106,104,105,110,112,106,117,111,116,104,100,92,105,103,108,95,102,118,83,103,117,101,111,102,111,106,113,112,105,102,114,102,100,109,107,97,105,94,111,98,99,112,110,108,93,100,111,106,95,108,106,100,113,87,118,97,96,105,95,104,102,108,103,102,115,100,111,100,98,115,111,109,103,102,94,90,112,103,93,102,98,99,119,104,100,105,112,95,97,104,97,106,109,92,127,99,104,94,112,99,82,99,111,99,103,100,108,109,99,105,101,105,103,94,109,98,112,114,113,105,111,91,88,108,107,115,102,107,97,80,99,113,108,92,107,110,108,98,106,106,109,102,103,99,112,103,94,105,108,101,103,110,110,98,95,119,111,105,103,98,104,111,113,113,110,106,106,94,102,94,106,103,90,117,83,125,109,104,98,109,109,109,102,89,113,104,106,110,117,112,103,108,114,104,95,92,104,105,97,111,93,110,105,115,108,94,109,92,93,107,104,106,102,91,95,96,111,106,94,101,106,110,92,104,110,116,88,109,89,113,94,99,103,94,111,96,102,106,106,107,110,115,102,107,107,104,106,99,112,102,108,107,91,106,109,109,103,95,90,109,105,88,102,109,91,99,97,102,99,99,102,108,96,116,98,104,97,106,104,104,104,105,108,104,96,92,124,111,110,100,94,109,101,98,108,98,96,99,95,103,99,102,100,82,121,102,104,104,111,114,95,106,96,106,118,109,102,94,103,105,91,103,100,108,104,106,113,88,97,102,85,106,101,114,123,102,104,97,100,97,99,92,107,106,100,106,118,110,87,112,105,93,95,109,104,99,100,91,109,110,104,111,104,104,102,110,97,99,100,99,95,107,103,99,101,111,113,97,112,114,104,113,107,100,111,93,97,105,108,98,98,107,98,100,109,98,99,109,106,89,101,98,105,121,96,114,111,116,98,106,101,102,106,117,118,112,91,106,97,95,99,106,114,104,106,114,101,97,104,98,100,110,99,101,109,112,108,122,103,99,110,94,109,111,103,84,110,102,108,100,104,103,111,95,110,105,108,110,101,115,113,107,114,114,89,103,105,111,100,108,119,106,95,99,81,110,109,104,106,113,97,119,109,104,104,101,106,105,119,108,107,108,105,101,106,99,95,95,104,111,106,108,117,99,109,96,114,101,100,113,113,103,95,102,115,105,94,103,102,103,100,117,99,104,113,108,102,103,98,107,109,96,95,100,106,107,110,111,100,110,116,114,95,97,108,97,111,103,89,100,109,110,125,103,129,113,94,118,95,106,114,105,105,103,106,113,104,120,100,101,100,94,116,95,99,99,107,106,91,112,97,107,96,99,86,104,100,87,99,95,97,101,108,100,100,111,99,99,114,98,105,91,106,104,102,103,75,104,107,102,109,105,95,98,103,102,101,115,100,104,103,102,96,95,110,97,99,105,112,105,94,100,112,84,105,99,108,105,103,78,105,96,108,101,108,102,98,101,105,106,101,103,106,109,107,106,106,113,67,105,106,96,103,94,87,100,109,97,107,98,97,97,98,102,99,95,92,109,111,103,109,112,114,104,114,99,104,107,98,102,107,105,107,104,96,98,81,108,102,104,106,112,108,114,105,96,102,111,114,86,97,100,99,104,99,101,107,102,93,98,112,105,107,100,86,99,109,98,108,110,104,96,105,105,116,101,105,105,101,103,100,112,107,104,95,108,98,104,96,87,89,101,106,109,94,110,80,96,104,107,102,103,99,100,111,103,95,99,103,99,92,106,98,104,95,90,109,90,98,119,113,100,107,93,112,98,112,107,91,104,111,101,109,90,99,97,75,109,97,98,104,105,110,110,88,103,94,98,97,104,98,102,94,101,113,105,81,111,107,93,108,106,103,109,112,106,116,86,114,101,109,106,83,115,111,100,95,103,111,111,107,113,102,112,102,107,112,96,94,104,100,101,97,102,112,106,99,101,116,113,104,107,95,102,112,101,101,109,104,90,117,107,102,108,111,99,101,104,103,104,103,98,108,104,109,103,111,107,113,102,108,100,100,111,100,124,93,97,85,97,99,99,108,97,98,114,108,98,93,100,114,103,116,112,99,106,115,115,99,90,94,99,110,97,98,97,103,104,100,98,102,104,102,99,110,108,104,110,105,100,112,103,104,92,87,101,99,87,103,104,91,93,109,99,117,100,101,99,112,98,109,111,96,98,101,101,101,104,101,97,109,108,98,112,99,99,110,106,93,105,107,109,101,97,102,81,107,118,108,113,99,77,99,109,109,113,102,101,98,97,91,121,104,83,109,110,105,106,81,103,104,107,98,100,103,109,98,111,110,102,103,116,95,106,106,109,105,102,100,108,109,107,102,114,99,95,117,105,98,96,103,98,105,95,83,95,109,120,102,109,94,115,97,101,101,99,107,110,91,118,91,87,116,99,99,102,96,102,96,100,84,99,99,103,107,105,105,106,103,101,97,111,104,106,101,111,108,112,106,95,102,100,105,109,103,129,102,91,106,95,91,109,100,73,103,114,97,110,103,111,112,99,102,106,106,98,96,104,108,105,101,106,100,108,99,100,90,107,103,97,99,108,115,109,103,100,104,97,103,106,99,108,103,107,100,99,105,99,99,104,108,98,98,92,102,117,107,102,105,98,93,89,108,92,98,111,102,94,98,109,103,104,89,107,104,105,85,98,111,95,102,101,100,105,107,116,108,106,111,114,104,107,102,104,108,100,114,117,102,99,104,113,91,121,105,99,96,102,109,97,109,106,112,108,106,109,99,99,99,89,100,109,111,111,116,102,109,113,100,104,99,103,103,95,111,116,104,100,104,100,100,106,102,94,107,106,105,99,107,104,106,111,101,91,106,144,108,110,99,106,91,103,98,94,110,103,104,92,112,91,107,103,98,104,103,99,105,101,99,104,110,97,111,97,109,103,109,105,98,111,93,106,96,114,112,96,107,81,105,108,99,96,102,103,87,99,111,112,100,117,108,102,98,95,98,120,99,105,92,118,107,85,102,91,107,73,117,95,97,113,122,107,107,107,117,105,102,92,101,100,93,106,108,99,102,99,99,103,106,113,104,104,98,99,104,102,103,99,108,106,104,110,103,110,99,106,99,101,105,98,102,101,104,118,113,110,105,105,108,95,104,106,120,94,101,93,110,102,99,102,113,104,101,100,117,109,106,91,103,100,93,95,98,96,105,106,101,105,106,98,94,98,119,104,91,88,109,106,98,102,93,104,98,103,106,92,102,100,107,109,99,110,102,108,96,79,102,114,107,98,108,101,97,90,98,98,100,97,94,108,107,107,101,105,96,106,100,108,108,107,90,112,108,111,111,98,100,101,105,108,100,96,115,113,84,102,100,96,101,95,112,110,101,111,106,100,93,88,105,119,92,103,81,98,100,110,100,100,100,101,113,108,97,109,100,109,99,98,101,102,102,110,102,100,105,97,99,99,109,106,108,99,105,81,96,90,100,90,104,85,100,108,95,123,105,111,105,94,109,99,87,96,96,91,105,111,102,100,95,88,107,95,100,118,107,102,98,94,95,104,102,104,104,100,103,99,109,105,97,96,98,98,98,105,111,110,105,85,102,109,112,113,98,104,108,113,103,105,112,98,93,99,91,94,96,89,101,108,104,99,100,97,101,105,87,98,110,100,92,83,98,104,92,113,98,99,106,101,105,99,102,107,102,92,92,105,109,105,105,105,112,99,88,109,108,106,114,96,93,104,111,98,103,100,102,97,95,92,102,101,103,95,121,99,98,96,114,104,97,101,97,111,99,102,99,101,98,110,98,107,97,93,93,98,97,106,109,96,96,103,94,97,113,71,109,104,102,100,103,117,116,122,94,106,104,101,102,110,84,102,113,95,101,102,98,91,102,112,85,109,81,89,99,98,83,83,112,106,91,93,112,93,97,109,97,113,94,101,91,104,106,102,93,99,104,82,98,109,98,106,95,81,102,115,104,98,114,123,98,94,84,108,104,101,101,102,113,108,103,81,120,108,106,101,103,106,111,111,104,101,103,108,103,114,112,94,92,105,89,82,101,105,107,102,95,103,96,97,94,96,94,107,103,107,97,115,95,100,94,104,103,92,104,106,74,91,84,97,94,96,105,105,75, +454.08371,89,117,99,101,97,100,99,88,102,105,93,104,97,106,100,102,124,107,102,105,120,96,109,100,101,102,106,95,111,107,104,100,102,95,110,99,116,101,99,101,95,101,97,100,103,109,105,107,106,111,110,104,95,107,100,106,103,104,104,101,92,89,106,87,103,97,112,112,91,106,114,106,111,126,92,116,87,100,105,108,101,86,107,102,118,101,104,98,104,97,101,95,97,104,97,109,102,110,112,102,99,100,95,95,99,100,95,106,108,97,92,92,104,99,89,105,100,99,111,107,89,103,102,103,100,107,117,98,104,116,109,101,89,94,117,96,96,117,99,101,88,103,107,95,103,109,104,102,90,105,97,87,106,90,99,104,106,98,104,108,105,110,112,101,99,93,92,104,104,97,62,106,107,97,96,99,103,100,98,102,105,88,87,110,103,94,100,90,111,111,103,69,118,113,98,105,115,95,115,104,103,100,99,113,92,119,106,100,107,125,97,110,109,96,113,108,93,98,95,99,110,112,100,96,112,113,108,104,95,103,97,113,107,106,94,103,122,108,104,112,101,104,104,107,105,99,118,108,103,108,109,97,113,102,94,100,98,104,92,99,99,109,113,105,95,109,96,116,104,103,103,118,95,104,113,118,106,115,102,92,108,100,94,101,90,109,86,98,99,105,109,100,114,110,113,104,104,108,107,107,96,101,110,113,104,104,102,110,94,114,149,114,105,99,95,102,102,105,100,110,115,110,98,109,107,84,98,87,109,106,105,95,102,112,104,105,105,105,96,103,105,111,102,99,107,121,106,113,112,109,105,94,99,112,100,98,103,100,107,106,105,105,96,97,99,93,118,112,105,100,87,93,112,101,115,95,106,97,96,119,105,113,100,94,93,93,82,103,105,92,107,89,92,106,93,99,92,103,107,102,102,105,96,91,82,103,98,92,102,103,97,92,114,103,99,94,106,99,108,100,106,103,107,103,108,88,99,93,100,111,96,101,95,101,107,109,107,108,101,102,104,94,100,100,105,102,107,94,101,112,100,105,120,115,104,109,105,106,116,97,100,95,103,103,104,109,98,96,108,110,98,106,112,112,106,108,106,112,97,91,100,118,108,92,96,108,109,103,103,112,115,100,110,91,105,103,103,104,95,89,100,101,102,100,90,111,102,117,93,97,109,103,112,114,102,98,104,106,103,104,87,89,97,102,100,108,117,109,114,110,98,97,125,106,96,101,112,105,104,106,103,113,100,91,106,102,114,106,103,105,113,111,102,112,96,98,100,114,102,98,100,109,96,93,101,105,95,117,99,101,103,101,117,95,110,110,94,81,108,113,102,108,103,100,96,92,94,111,99,113,107,108,103,109,101,109,97,109,125,96,94,104,107,102,105,104,103,111,97,103,110,100,99,100,118,98,95,106,102,113,107,100,103,106,107,95,98,79,98,102,101,116,99,106,103,106,104,101,99,104,103,107,105,95,103,92,95,105,113,112,98,103,110,109,98,110,111,113,104,101,112,103,97,88,101,101,106,106,96,95,110,105,111,113,105,98,108,87,101,116,113,109,109,89,109,100,102,102,103,92,105,98,98,90,98,109,98,103,108,77,115,90,109,100,79,111,118,99,107,104,100,107,102,113,103,109,100,103,97,100,104,107,102,98,100,103,112,98,98,105,113,106,101,96,96,100,106,91,112,103,133,100,109,109,101,98,98,102,99,99,105,99,107,107,90,110,93,95,100,88,94,104,95,106,118,107,104,102,108,96,107,104,100,102,113,101,108,107,105,107,97,101,105,104,114,115,103,110,106,106,112,94,105,107,114,99,96,113,103,117,93,92,94,95,100,95,103,96,102,98,106,102,99,91,126,93,123,114,109,98,111,94,103,103,107,110,102,99,109,103,104,91,96,122,80,95,106,97,113,100,103,98,106,108,97,107,109,113,98,108,108,106,98,97,104,79,94,102,102,95,99,102,100,113,113,99,96,84,107,101,114,115,104,111,104,93,114,106,97,99,103,99,107,108,103,104,109,105,105,98,108,103,108,104,99,91,106,109,107,103,99,101,106,117,105,98,102,110,101,108,104,114,107,102,121,93,101,98,82,102,95,99,108,90,107,102,102,103,84,109,109,110,117,90,96,109,109,102,96,108,93,103,116,104,110,106,115,101,97,111,98,121,103,116,113,99,104,112,103,104,102,105,86,105,110,108,104,92,102,106,98,95,107,101,99,96,104,105,99,114,96,98,96,101,105,98,98,103,96,98,98,100,113,101,95,98,110,105,98,110,113,104,102,94,106,113,99,109,93,99,107,96,106,119,100,117,104,103,90,98,100,116,109,102,97,98,101,102,101,93,102,107,97,111,114,102,100,106,100,118,94,109,102,98,102,100,101,103,105,96,101,104,104,100,99,109,91,108,102,103,100,118,104,110,103,100,88,98,98,114,104,122,105,99,99,104,99,110,107,104,112,106,83,95,108,118,86,105,111,95,99,107,99,100,99,91,98,104,116,98,104,86,106,104,106,104,113,99,92,109,107,118,101,108,100,92,106,99,93,97,101,103,106,100,102,102,105,103,111,110,103,110,102,104,107,103,101,107,108,103,100,97,104,102,106,94,112,108,92,102,101,100,113,135,116,110,107,93,105,93,112,101,101,83,111,103,109,96,109,99,102,105,105,95,104,96,99,104,120,105,107,96,94,105,99,108,113,108,105,112,97,99,104,109,99,106,98,96,97,105,100,109,105,107,109,108,107,111,108,102,106,109,110,106,102,113,102,104,106,88,109,102,95,100,107,113,102,108,110,105,96,91,105,110,106,107,102,99,111,102,107,98,103,94,108,107,101,97,109,99,110,105,108,69,105,110,110,97,106,113,100,119,117,104,103,95,98,113,105,106,101,108,121,111,105,88,93,115,113,112,107,108,108,106,91,109,99,103,110,99,98,116,101,117,112,107,106,105,96,106,103,98,102,104,121,105,112,108,93,97,96,104,100,96,104,113,108,107,98,114,100,98,102,112,108,105,111,108,105,104,97,100,103,111,113,111,99,102,104,113,108,96,105,99,101,87,104,92,107,96,104,114,110,96,117,93,115,100,108,98,112,111,95,96,103,99,95,103,106,96,113,106,112,102,94,95,102,108,111,111,97,103,121,109,102,108,99,102,99,104,105,112,107,103,103,94,109,102,110,110,112,101,102,105,111,116,79,103,107,105,105,103,97,112,105,91,101,119,103,109,112,104,94,106,109,94,106,108,130,109,107,99,104,120,106,84,104,95,106,105,102,104,106,114,109,106,98,105,77,98,111,102,92,108,105,116,105,101,107,113,104,102,110,104,117,97,96,93,108,107,108,104,104,98,100,92,100,105,108,99,120,99,98,99,108,95,91,99,112,103,108,104,102,84,97,105,91,114,98,93,116,111,100,97,96,102,93,93,102,99,95,93,102,106,118,87,93,113,102,103,109,111,116,107,100,99,105,88,103,97,102,112,101,93,105,102,83,100,120,103,113,109,124,103,104,108,113,102,89,110,104,106,113,108,109,120,100,102,109,111,104,117,99,109,111,106,91,107,108,104,111,107,99,103,107,102,99,95,104,92,96,100,95,97,104,96,114,108,98,103,98,102,111,105,109,106,94,110,100,93,111,108,120,108,110,88,106,110,98,94,106,107,96,104,108,96,95,96,113,98,124,99,91,103,87,124,110,112,103,98,73,115,107,102,112,100,104,103,99,99,88,84,104,105,109,103,121,107,106,99,110,98,101,102,108,101,114,102,110,104,104,105,91,105,102,109,115,113,101,103,99,111,101,108,102,95,105,123,98,106,115,91,109,113,108,99,102,115,100,101,98,95,102,104,109,109,116,113,105,97,107,106,114,111,104,124,107,99,95,76,101,103,109,117,108,101,109,91,104,101,99,100,112,110,104,97,117,101,113,107,100,112,109,95,98,103,106,103,99,106,112,110,104,107,102,106,103,110,103,99,103,107,102,89,128,103,102,105,102,105,109,116,109,109,114,108,107,100,100,106,109,98,103,106,113,99,104,96,128,114,99,103,105,107,107,111,107,112,114,101,102,108,118,108,110,107,110,112,94,105,108,104,108,105,111,117,107,97,99,102,108,117,108,101,127,114,105,112,127,107,121,87,101,100,101,98,94,102,103,103,106,109,108,93,104,102,108,105,107,107,104,107,122,121,103,112,96,102,105,105,127,113,109,103,96,99,105,99,103,112,102,98,106,115,107,108,106,112,103,102,99,99,95,111,97,106,70,109,112,105,113,102,113,109,106,99,96,113,94,95,111,102,94,102,105,98,99,99,104,108,107,98,94,106,106,100,112,105,108,107,109,96,113,105,108,105,104,113,106,119,93,112,113,116,94,109,110,109,105,90,97,98,91,103,95,103,100,108,121,95,94,87,104,109,109,107,118,102,112,116,103,103,99,91,94,95,107,119,109,103,98,105,121,101,108,87,113,100,121,111,103,95,106,100,98,100,94,106,105,97,84,109,101,105,99,95,104,109,113,105,105,99,103,101,104,106,98,99,105,102,111,100,90,84,79,98,102,96,115,107,109,110,114,108,103,94,110,104,109,105,100,108,104,118,106,103,109,98,104,103,111,113,99,94,99,97,117,116,103,98,110,83,99,100,108,100,107,110,111,106,101,115,99,104,102,91,102,113,110,134,66,91,122,119,87,99,99,95,104,105,112,108,102,95,100,113,111,110,108,88,105,104,96,104,102,102,106,101,95,106,101,85,94,111,109,102,102,113,115,108,104,99,99,107,72,104,114,96,104,103,105,88,108,112,108,106,102,110,103,104,103,108,98,107,108,112,87,103,107,90,106,111,104,102,98,104,102,101,111,84,106,96,99,106,117,99,91,113,113,103,112,116,121,95,112,100,99,99,106,105, +454.22412,103,98,112,87,97,110,102,87,105,93,116,95,93,97,89,115,84,105,103,113,110,99,112,106,111,105,111,103,93,103,102,102,98,104,106,100,98,97,98,91,115,114,97,100,108,106,95,114,100,103,100,109,101,107,105,95,105,103,102,106,89,108,102,91,97,109,99,99,106,111,109,95,102,110,108,104,91,101,98,99,102,95,105,110,104,94,98,110,98,105,93,97,101,95,106,105,113,103,90,98,98,100,108,80,95,108,102,99,96,99,125,102,103,98,93,102,103,89,100,110,99,111,102,102,103,99,108,105,110,83,90,94,107,97,100,104,103,107,92,103,94,100,110,104,91,95,109,98,94,100,102,91,112,105,92,98,101,108,103,100,93,108,89,105,103,109,109,99,103,101,104,92,108,104,109,97,107,79,98,106,97,101,97,105,111,109,92,101,105,99,87,116,107,103,104,101,107,80,98,98,94,96,106,91,106,99,95,104,103,107,93,99,117,106,108,100,96,106,106,100,107,121,99,106,89,107,99,107,108,104,94,94,118,108,109,107,98,114,103,106,104,103,111,128,103,101,106,91,115,95,105,100,104,100,114,101,105,94,99,116,101,102,105,95,98,109,95,104,104,106,101,104,112,106,108,75,99,115,114,89,107,117,100,107,105,80,98,98,109,107,110,101,115,101,112,108,104,108,99,97,100,108,78,120,102,115,109,103,100,103,106,115,91,105,105,101,125,94,105,86,113,109,99,107,101,99,98,95,104,99,108,101,114,107,108,107,121,104,102,100,108,118,109,91,99,112,100,95,101,108,109,103,85,101,108,95,106,111,106,107,108,106,92,105,93,104,91,104,96,109,109,97,102,103,98,96,102,101,82,98,112,103,105,109,91,95,98,105,110,101,102,92,95,113,99,84,105,95,106,104,100,107,120,98,112,100,111,98,99,112,95,100,99,99,102,98,88,109,97,108,102,103,99,98,107,100,101,90,107,97,97,99,97,94,101,103,94,100,110,100,109,104,107,93,103,107,103,110,112,104,104,76,107,118,96,101,104,104,99,109,110,96,109,106,106,91,104,100,107,97,117,100,105,106,103,101,95,104,100,106,97,113,134,91,102,94,99,100,95,100,96,99,100,105,96,106,92,99,105,95,102,93,112,111,96,96,102,110,96,99,103,99,110,114,98,98,102,98,104,106,104,100,107,96,99,102,108,96,108,118,92,99,106,121,106,88,107,101,105,110,102,112,113,106,116,96,92,100,99,107,116,90,90,97,118,101,100,109,107,102,99,96,107,113,99,95,124,102,101,98,102,109,94,106,104,101,97,97,112,105,102,107,102,106,95,94,104,107,108,101,117,104,82,73,109,119,99,106,103,108,102,104,87,108,100,90,116,72,102,105,105,99,96,109,102,108,105,103,111,103,95,94,102,107,99,102,101,105,100,98,98,97,102,121,97,106,97,107,99,95,99,74,107,114,88,100,92,92,111,99,82,108,106,99,99,100,109,105,114,86,98,101,99,102,99,104,97,100,99,114,99,91,103,108,94,104,106,99,107,108,110,103,105,102,108,105,96,104,110,108,109,113,94,106,106,93,105,87,95,93,101,101,105,87,101,108,110,106,104,87,113,99,102,103,95,110,107,108,112,113,96,88,112,105,100,98,94,107,111,93,98,108,96,97,97,91,107,103,95,95,114,105,99,105,105,102,109,84,101,123,125,110,105,109,105,110,103,107,94,95,96,115,94,104,102,99,95,100,102,110,106,122,114,93,93,106,126,114,110,104,104,87,94,109,101,107,105,102,106,119,96,111,110,114,110,102,113,106,107,112,101,94,96,110,106,101,109,101,112,102,106,96,100,104,99,121,103,99,101,95,100,104,97,112,106,115,100,95,116,107,109,114,100,106,104,112,91,109,102,117,112,102,104,96,97,102,96,107,99,113,91,100,105,109,105,98,104,113,107,104,103,95,113,103,121,99,107,110,112,96,99,100,89,105,99,97,103,100,106,104,110,93,91,114,101,85,101,106,105,99,104,106,97,111,104,96,101,104,109,105,96,103,104,105,101,104,102,110,96,101,100,103,105,97,109,99,88,99,105,91,96,100,115,99,113,104,113,108,103,106,105,110,114,109,104,108,101,105,100,103,102,110,107,87,107,99,101,120,105,115,101,109,105,108,102,92,118,109,112,108,102,101,106,96,115,109,107,99,110,97,95,97,99,92,99,91,103,101,102,101,101,108,108,98,91,96,113,101,105,109,97,101,87,105,100,96,102,108,104,102,108,108,114,98,100,96,104,95,94,97,103,100,91,99,104,95,94,96,93,110,94,108,97,114,116,107,105,105,91,101,109,109,113,102,112,94,98,104,101,113,91,115,102,104,101,99,110,98,98,103,93,100,109,98,112,103,93,103,103,97,109,104,96,131,99,104,90,109,112,95,99,110,104,115,95,97,97,113,98,104,112,114,104,105,116,104,93,117,125,93,121,116,107,102,111,109,99,103,107,111,123,94,102,119,109,106,108,105,111,97,103,105,111,95,99,115,93,104,103,103,115,108,110,106,106,103,102,113,99,116,103,84,103,69,100,103,106,119,107,109,106,97,92,109,105,103,99,109,103,121,108,117,119,106,95,93,102,102,114,106,107,90,103,99,116,108,103,100,96,112,97,95,102,99,97,102,100,109,114,107,113,105,99,115,107,125,108,109,93,106,107,137,105,99,110,118,102,106,111,99,110,106,125,100,112,111,113,106,90,104,106,103,105,92,104,118,98,106,98,95,91,109,100,111,110,74,113,105,114,118,91,104,100,102,113,108,102,114,102,116,110,114,108,98,100,117,96,107,107,108,99,110,103,118,109,114,105,95,108,98,106,108,87,105,113,96,116,105,109,111,96,98,101,111,91,99,107,114,105,103,105,98,110,79,107,97,91,121,104,117,101,95,99,107,99,112,106,72,99,100,101,106,103,115,107,103,90,108,112,102,105,109,97,93,105,111,103,112,111,106,95,103,112,103,102,98,116,100,100,88,104,102,114,101,114,110,105,115,113,104,104,93,113,109,116,110,108,119,105,83,95,116,99,113,102,98,88,103,97,106,109,112,108,106,113,104,106,108,108,108,107,103,100,108,106,79,107,104,109,94,106,115,108,102,101,102,105,101,98,96,88,110,108,109,112,94,97,95,109,115,107,95,76,102,100,106,114,103,108,100,105,112,110,102,96,101,98,108,127,115,97,101,93,108,102,90,126,104,108,112,109,111,112,107,111,95,108,109,105,100,112,109,103,106,103,103,100,95,112,97,104,100,100,127,107,101,116,72,101,98,107,140,114,109,103,113,97,105,113,106,103,103,103,106,104,104,110,93,91,108,105,112,99,95,96,108,105,105,111,107,116,105,96,113,100,112,103,92,110,106,102,102,109,97,109,120,110,99,103,111,98,105,98,95,106,95,104,97,109,90,97,99,85,91,110,105,106,106,109,113,108,105,102,88,98,109,107,110,109,103,106,110,110,106,108,98,101,105,104,96,105,101,103,109,90,107,106,104,102,94,107,106,98,107,97,99,96,98,108,105,119,99,95,112,113,105,106,97,105,103,107,100,100,98,101,105,102,109,107,99,109,109,106,119,103,97,106,102,104,108,96,106,113,109,110,104,103,99,89,120,91,100,104,95,102,114,103,105,103,106,113,108,103,104,107,119,106,102,104,115,111,101,111,94,101,110,109,99,103,98,112,99,109,97,103,100,111,100,101,101,98,98,105,96,111,110,105,107,99,106,104,98,108,108,120,108,110,100,106,103,104,100,102,112,103,93,116,104,97,104,104,100,108,94,109,100,109,103,94,107,103,98,107,104,66,103,116,95,114,122,92,101,103,104,108,102,107,90,92,100,96,105,103,95,89,96,109,105,97,114,96,97,98,104,104,91,119,102,113,99,106,107,103,100,109,107,107,105,111,96,110,108,109,111,96,112,109,108,88,110,102,109,109,112,104,88,101,99,91,117,106,99,105,116,102,94,101,110,109,97,101,102,112,107,106,96,102,111,114,107,106,110,103,105,108,105,105,99,97,100,102,101,102,105,110,105,96,109,108,73,100,106,91,109,102,118,93,102,106,99,97,105,99,98,109,85,113,106,98,97,98,101,103,95,116,108,89,111,107,130,104,109,106,99,105,103,105,117,108,91,110,114,106,95,109,113,101,108,106,103,106,91,102,100,89,100,95,84,106,102,105,92,104,104,100,104,98,113,111,105,106,109,108,99,104,114,95,95,98,104,106,103,116,113,102,117,100,91,106,102,104,107,94,114,102,119,112,109,104,113,111,100,107,103,109,112,117,113,106,106,102,104,104,100,104,107,117,101,98,112,116,100,107,108,98,109,105,99,113,110,87,119,104,112,104,118,99,110,103,104,102,90,100,103,91,95,120,87,100,104,121,102,102,106,101,98,100,102,106,121,108,105,111,108,108,104,77,103,98,101,113,90,100,97,108,101,104,102,96,98,100,80,107,107,98,88,100,105,109,96,102,101,95,96,100,95,112,104,115,100,103,98,83,111,113,89,101,107,120,107,113,104,108,106,111,94,113,100,103,103,97,104,94,107,102,98,107,106,118,109,105,108,110,107,98,109,98,103,92,106,95,103,100,106,103,109,109,112,100,127,101,106,111,95,107,94,104,98,107,100,109,92,102,102,99,92,112,76,104,99,104,112,96,97,105,92,102,111,94,103,112,101,96,98,116,113,87,92,102,91,117,95,102,111,109,90,98,100,99,113,112,99,99,98,107,97,99,99,107,95,95,104,91,86,109,91,100,112,99,97,112,108,106,109,88,81,104,100,109,105,87,120,97,101,96,98,76,109,131,88,101,122,102,116,95,96,95,104,83,98,118,103,107,105,100,110,101,96,101,81, +454.36453,99,100,108,107,93,98,117,106,98,96,101,95,88,110,107,99,105,103,98,117,99,105,98,105,100,102,106,104,94,109,102,97,104,105,99,119,96,97,97,121,96,96,106,107,100,116,112,118,101,110,112,103,107,105,107,97,116,100,97,85,86,103,90,91,112,90,126,113,94,109,109,96,107,103,105,102,97,101,105,105,105,93,103,95,100,100,107,104,103,112,95,99,88,97,111,107,98,98,93,109,97,97,107,110,111,101,98,100,107,90,110,110,110,105,94,121,93,104,99,103,97,82,101,107,110,107,110,112,108,103,104,108,117,94,112,117,117,89,96,88,92,108,94,103,95,103,98,113,106,101,94,102,107,99,97,96,98,98,98,105,112,99,107,103,94,106,84,99,101,99,98,98,93,96,90,91,109,104,94,107,101,108,89,103,97,111,114,96,112,101,99,99,103,96,94,99,113,102,102,89,93,86,100,117,92,99,104,103,109,102,83,97,111,106,109,90,104,109,84,95,106,104,105,103,105,112,95,102,94,109,101,118,101,94,99,101,91,113,107,112,101,95,112,101,91,91,107,102,113,98,106,121,95,109,110,113,102,101,83,101,103,93,103,107,95,100,101,101,102,94,100,99,101,96,104,106,112,100,101,100,99,105,91,105,110,104,90,109,94,109,91,108,99,100,103,105,118,113,100,98,114,100,117,114,109,110,110,110,105,112,100,91,114,91,96,107,105,101,109,109,102,107,102,100,103,90,95,94,109,103,106,95,104,106,108,102,105,105,109,108,100,99,102,99,103,106,116,112,104,97,101,103,99,109,108,104,109,116,103,105,111,103,100,114,109,93,99,105,109,98,107,108,110,112,102,102,88,104,105,103,112,106,90,112,107,98,101,110,106,95,105,97,95,106,97,92,97,96,100,114,105,100,118,100,122,89,98,107,92,101,107,114,104,109,125,113,100,103,115,100,89,104,95,101,116,92,95,95,79,110,95,110,107,106,103,101,94,108,98,105,99,104,100,105,100,107,101,98,109,118,109,99,107,111,90,105,101,103,113,91,99,99,114,106,105,103,99,113,98,85,107,117,87,93,99,100,99,102,100,107,99,95,119,99,105,111,113,95,103,115,103,122,109,107,89,104,110,106,96,107,116,105,112,105,96,102,98,100,110,100,115,102,118,100,113,94,86,97,109,95,96,89,112,103,94,118,115,95,93,105,101,89,101,98,117,99,103,106,110,98,103,99,88,92,89,96,101,79,101,103,103,104,106,117,111,95,110,95,102,104,107,105,111,106,103,114,99,99,105,105,93,98,112,106,108,99,97,94,100,112,110,100,108,92,95,103,103,100,93,103,109,113,114,98,109,110,102,107,105,106,112,108,115,97,95,101,107,104,98,111,105,102,113,105,109,115,111,98,95,101,101,98,122,97,108,108,115,91,110,108,106,110,97,94,91,93,106,108,100,101,102,100,113,106,95,95,99,102,96,111,106,86,116,99,101,120,109,104,106,117,103,113,103,111,94,110,99,99,101,108,104,101,102,110,100,99,101,115,89,109,96,106,101,95,101,110,95,121,97,109,102,98,89,111,98,97,110,105,113,87,103,109,92,101,98,112,99,111,103,106,91,100,94,103,97,101,105,102,95,102,113,100,107,108,106,125,97,96,111,122,101,108,97,96,100,99,97,95,108,107,96,100,100,101,115,70,120,91,108,95,112,103,118,88,99,108,91,108,98,103,100,88,97,101,110,114,96,107,110,104,101,105,103,97,94,96,99,111,106,98,118,102,109,108,106,106,114,117,102,102,117,110,98,100,108,108,99,124,113,101,109,126,102,111,109,98,104,103,100,91,107,109,118,110,114,95,105,108,121,95,96,119,112,108,110,102,105,101,115,108,103,109,106,107,116,95,72,99,108,102,95,103,92,100,96,105,103,110,103,122,103,100,107,109,100,100,76,103,114,100,103,88,98,104,109,103,92,105,110,109,79,109,101,99,102,108,107,105,103,112,133,100,98,87,104,103,103,108,103,111,129,97,99,99,102,88,104,96,104,98,104,111,107,100,105,104,78,102,91,108,100,98,107,112,98,98,101,103,90,104,100,102,98,108,109,103,102,100,106,104,122,118,100,102,105,95,105,100,102,113,99,105,98,104,104,111,101,104,101,103,93,94,113,109,103,100,98,110,95,114,100,106,99,110,107,108,109,96,95,98,94,105,99,95,96,106,101,91,99,107,107,87,101,111,96,90,108,106,113,98,99,105,100,99,95,106,113,107,108,94,99,112,105,110,116,107,103,103,98,87,105,103,100,116,92,101,89,91,105,96,106,114,100,106,102,121,101,96,107,99,102,94,104,109,113,91,103,107,104,98,100,109,92,108,99,102,105,104,110,105,104,97,116,95,115,107,97,110,97,99,99,112,99,97,114,96,111,100,106,107,95,97,94,104,105,101,95,113,103,108,101,110,97,106,109,110,104,97,112,103,98,120,108,98,100,100,98,92,105,109,94,94,97,99,111,115,97,111,116,94,90,117,103,91,100,103,113,95,92,121,104,103,108,106,108,104,89,103,104,89,98,101,108,103,108,96,97,102,104,99,92,97,107,107,100,95,116,99,107,95,105,96,115,100,109,83,109,113,94,108,109,95,117,96,102,116,96,103,101,101,99,116,114,100,103,106,96,101,101,115,106,106,101,97,100,108,84,109,99,104,104,102,109,105,98,106,104,106,109,107,95,98,96,106,102,120,107,97,95,111,95,105,105,102,106,111,108,109,110,91,109,104,111,96,105,105,106,111,100,108,101,110,97,106,111,106,100,108,103,114,95,110,116,121,103,101,109,104,100,108,103,110,98,107,108,95,104,109,106,123,112,101,101,115,105,111,93,114,97,105,107,105,98,109,106,101,105,110,105,94,109,100,114,115,115,109,108,103,104,105,107,113,115,97,117,116,103,109,103,108,113,111,105,99,97,97,110,99,71,104,103,117,107,103,103,107,105,101,98,101,109,107,113,104,100,93,99,98,105,108,109,102,95,106,117,94,104,91,102,90,103,104,139,97,94,102,91,94,96,112,111,98,87,73,99,96,105,109,110,103,104,100,117,97,117,99,84,106,107,107,107,106,107,96,115,116,116,92,109,101,102,96,113,112,96,96,101,103,102,106,97,98,102,90,116,104,109,98,109,109,116,69,94,103,106,115,110,109,101,90,105,114,96,107,109,101,102,102,95,105,69,98,111,100,111,95,101,115,112,102,115,99,101,120,103,92,99,109,97,111,107,112,112,122,104,98,115,100,129,102,99,90,100,113,93,107,106,115,99,105,96,104,112,105,101,116,104,92,98,102,92,107,109,139,112,121,107,106,106,107,102,113,100,100,97,107,102,104,105,92,107,98,100,99,108,101,87,97,101,112,94,96,86,105,91,101,91,96,126,112,114,100,107,110,116,103,102,97,102,99,94,97,98,100,109,96,113,108,118,102,112,101,97,96,100,114,113,102,102,109,112,106,105,102,120,102,100,98,99,100,104,130,110,115,90,101,97,102,91,90,101,108,113,113,109,102,101,114,94,113,111,92,101,117,107,105,99,105,115,93,100,107,105,103,100,105,116,105,97,106,95,91,112,96,98,107,104,99,95,105,102,112,117,103,88,107,94,106,103,104,100,94,105,106,119,105,99,113,105,108,104,110,99,98,106,106,107,107,111,99,95,102,110,110,86,105,100,105,109,112,109,119,100,110,97,108,106,102,101,101,97,101,139,92,106,113,98,98,103,109,121,94,119,110,112,111,94,95,109,119,101,117,108,112,96,102,92,116,113,96,104,96,112,97,98,94,104,100,101,107,101,105,100,109,90,97,110,103,109,102,96,101,94,99,113,99,98,108,103,94,99,116,103,95,90,102,95,105,113,96,112,101,117,90,104,75,120,99,103,105,98,104,111,112,106,102,93,105,107,98,94,101,105,95,118,115,109,113,102,102,101,116,107,100,118,106,104,103,104,97,96,114,97,103,109,102,105,112,100,100,107,95,109,101,105,100,110,102,107,106,104,107,103,105,104,113,107,99,106,96,98,108,113,113,102,100,110,104,102,107,91,114,113,103,116,98,103,104,108,101,101,103,109,114,109,100,98,101,89,109,93,102,98,99,106,112,95,103,99,103,97,98,102,101,104,107,106,104,99,92,117,106,104,103,97,102,104,110,101,104,96,100,103,110,108,102,107,113,95,99,107,98,102,109,99,107,117,100,109,108,102,110,113,110,98,114,94,98,101,111,112,118,109,92,101,100,103,98,99,105,99,127,103,100,108,102,93,95,105,106,109,94,106,113,102,95,102,107,103,99,103,100,98,117,124,96,108,106,109,112,103,100,107,101,105,99,100,116,103,106,107,91,111,103,122,108,109,99,88,108,102,96,110,77,98,104,106,107,97,110,112,102,99,111,109,103,99,99,106,101,106,108,95,106,116,93,110,131,109,101,98,118,100,92,100,82,109,102,112,95,112,97,97,115,102,101,110,116,102,102,95,87,108,103,113,101,93,109,97,98,94,118,109,113,94,110,93,98,103,98,119,108,100,107,104,98,105,110,107,85,86,105,107,97,102,102,103,101,102,100,95,100,104,111,98,105,95,125,100,98,95,106,110,104,106,101,87,104,99,102,105,106,112,104,98,93,94,103,118,112,94,106,115,93,105,101,113,99,85,96,101,99,106,90,101,95,114,108,92,98,102,94,103,99,117,99,113,109,114,109,100,98,99,105,92,95,106,111,109,115,89,106,104,110,99,91,102,110,105,98,102,100,96,92,104,91,104,105,106,122,104,131,102,113,99,99,105,112,87,81,129,98,96,102,106,83,99,87,108,103,86,100,111,100,101,105,92,109,108,105,94,115,108,119,94,107,105,96,105,106, +454.50494,106,101,100,103,90,113,91,112,97,114,94,105,96,138,106,105,92,103,106,95,99,96,99,102,97,98,116,106,82,109,102,119,112,101,110,115,101,98,98,92,96,95,102,100,83,103,110,102,93,106,99,115,110,109,99,108,95,86,105,87,93,108,98,72,106,103,98,94,91,102,98,104,106,103,99,103,97,98,99,104,96,94,108,95,106,86,105,117,105,111,97,101,108,109,101,96,95,99,108,105,101,109,96,127,97,124,105,103,101,88,105,97,95,100,109,94,100,101,103,104,106,103,121,99,103,111,109,100,112,112,103,114,86,104,109,98,110,106,94,111,104,102,105,104,98,104,121,106,98,97,107,93,105,89,79,113,97,105,96,85,104,104,103,102,106,94,116,105,106,103,97,103,102,101,90,114,101,101,103,105,92,107,113,105,104,99,89,106,111,108,116,110,107,118,99,105,105,104,108,109,107,110,97,106,116,98,107,93,113,113,104,105,100,109,75,99,101,102,100,103,94,109,100,110,104,99,100,98,90,102,108,104,105,102,107,100,109,107,108,94,99,97,122,96,95,91,107,110,102,108,113,98,100,90,107,110,104,103,96,100,96,111,92,102,101,99,97,105,109,96,105,83,98,121,98,110,101,105,112,107,105,99,103,107,102,101,93,103,101,109,101,119,109,109,107,108,95,101,96,106,113,115,108,107,105,116,102,108,96,104,99,110,76,108,131,97,109,98,113,106,109,93,108,106,79,94,106,96,108,103,98,61,105,105,104,100,102,106,105,110,105,88,106,101,112,104,105,106,113,119,113,110,104,112,109,98,109,99,113,102,102,110,100,112,108,111,107,112,112,102,110,115,112,105,111,98,117,97,111,117,116,109,100,98,93,105,97,101,112,106,107,86,97,108,108,98,103,99,96,110,100,102,112,97,94,90,106,114,111,98,95,104,106,102,104,97,102,109,101,101,114,103,92,101,105,95,107,110,104,104,101,99,103,110,98,105,95,96,108,101,99,116,101,95,95,104,106,107,113,111,98,104,99,113,122,105,102,98,102,123,100,105,102,106,107,122,98,80,102,107,98,103,105,90,99,108,109,102,101,100,114,98,104,96,121,100,105,101,105,109,108,114,113,101,98,101,102,104,100,110,113,102,109,101,103,98,107,104,102,118,104,96,106,108,102,110,86,89,105,106,102,98,110,105,100,104,97,108,90,108,91,91,104,108,95,93,97,93,108,104,95,119,104,106,103,103,116,107,122,96,119,109,96,106,101,104,100,97,107,99,102,100,95,113,90,121,109,112,92,99,93,95,100,96,92,99,97,98,90,111,108,105,99,94,100,102,103,90,109,96,112,94,101,95,112,102,100,105,104,103,109,98,104,108,100,104,105,105,101,106,108,104,96,111,106,101,109,98,95,78,102,104,110,98,115,108,102,110,114,115,104,115,111,120,98,110,102,111,125,79,96,104,108,98,97,98,96,116,94,116,104,108,101,96,103,108,114,99,97,103,109,106,114,102,101,96,113,96,113,99,99,102,101,108,93,109,96,106,95,101,103,112,111,107,99,106,103,100,94,103,104,99,102,109,82,108,108,92,111,87,105,108,99,109,109,117,104,107,103,118,104,99,102,96,91,96,90,108,108,95,106,93,96,108,97,99,101,99,117,114,114,116,106,106,91,109,106,100,105,99,108,103,104,118,109,110,103,120,98,109,90,99,103,111,101,102,107,105,103,112,107,104,104,105,105,111,108,98,111,104,106,109,103,100,98,104,109,97,107,104,95,92,107,109,120,116,116,118,82,103,112,106,95,106,104,112,106,106,106,100,107,97,100,94,113,110,99,113,105,96,125,107,114,87,107,90,124,113,99,94,95,103,102,113,105,103,104,103,109,114,115,111,102,118,102,99,114,116,101,97,100,96,102,101,104,106,99,114,100,97,105,103,103,107,111,105,108,103,92,111,107,113,108,112,106,126,105,112,118,86,99,101,101,102,99,104,94,112,106,108,96,113,95,109,123,113,106,120,112,102,108,104,102,109,104,101,105,112,105,103,91,107,110,106,100,102,97,98,103,102,93,94,102,105,116,95,104,109,93,112,100,108,106,102,71,99,92,104,104,99,98,104,96,99,99,104,99,112,97,111,109,109,103,106,110,99,99,102,105,122,102,99,96,118,104,112,107,97,100,108,117,105,104,108,105,96,92,101,114,91,107,99,98,98,110,92,99,103,99,114,106,107,108,115,109,103,100,86,104,99,106,105,111,91,99,77,104,107,109,117,95,105,98,98,126,110,110,105,82,100,97,105,98,113,99,103,104,101,97,109,102,116,96,104,121,99,103,108,121,107,99,84,107,110,110,96,105,107,100,94,99,95,101,102,111,103,100,102,125,104,93,103,106,103,90,107,106,100,103,88,101,100,96,103,114,98,98,97,114,104,107,109,96,110,107,90,106,108,103,100,108,109,105,98,112,111,106,95,113,107,100,114,101,111,105,114,99,103,106,103,81,97,114,105,101,99,104,109,106,93,112,109,112,111,106,105,98,101,100,113,97,103,105,102,107,115,92,106,107,108,94,99,103,102,99,103,100,110,95,95,96,94,104,110,114,97,106,105,91,106,116,112,112,102,105,124,102,100,117,108,112,95,99,118,109,100,102,105,99,91,105,104,112,101,103,109,110,101,106,106,110,107,100,114,107,99,104,92,102,107,101,123,110,92,104,103,120,88,90,92,109,102,109,97,107,102,102,106,107,112,111,105,109,108,122,109,110,91,105,99,105,109,95,103,116,102,103,105,103,104,106,106,94,110,102,102,89,108,128,96,111,108,108,91,105,108,100,118,110,106,102,112,109,100,105,98,105,112,108,101,94,101,117,115,102,99,91,96,112,101,105,102,109,110,103,80,102,104,99,104,98,105,96,110,99,99,105,109,105,110,106,88,113,103,105,102,106,114,95,100,94,105,113,101,106,98,98,101,98,107,98,104,94,98,96,114,106,112,116,99,86,108,99,106,104,102,103,108,108,102,93,101,94,113,94,99,113,99,104,105,98,110,97,100,99,121,99,105,112,107,108,115,105,112,84,100,98,102,108,103,81,104,105,96,110,95,111,101,108,96,111,114,117,113,104,96,93,99,101,106,102,102,100,99,110,104,106,109,107,108,106,102,100,88,102,112,92,106,106,125,110,104,103,105,106,107,104,109,112,114,105,105,109,120,104,95,112,110,88,108,100,111,113,110,100,91,108,107,117,107,98,113,100,101,113,100,113,115,96,100,98,112,103,96,97,90,109,101,112,114,83,98,97,98,102,119,113,97,103,106,99,108,107,102,112,104,91,98,105,102,102,104,98,112,110,106,106,97,110,103,104,104,102,101,87,111,104,99,93,103,116,107,89,105,87,114,102,95,92,107,102,98,97,93,104,104,97,101,98,103,109,101,99,95,96,115,100,105,108,99,113,120,102,105,93,110,81,104,110,105,95,104,105,101,95,102,104,105,108,100,108,111,94,112,102,105,102,100,98,93,103,106,104,104,96,103,99,114,101,102,98,111,104,92,99,106,100,113,106,113,92,94,98,100,111,108,95,105,113,100,121,94,109,103,105,99,103,90,112,109,109,103,99,102,101,97,95,97,105,113,106,86,102,92,95,97,94,102,113,104,108,105,104,98,98,100,90,110,96,108,77,110,92,107,97,110,103,101,109,104,107,98,112,95,98,102,109,104,114,100,102,102,102,102,108,104,112,98,95,103,100,99,108,104,90,103,97,89,120,119,96,80,103,115,100,98,114,98,106,106,97,93,99,107,105,104,105,105,106,82,101,93,105,112,110,110,109,114,108,106,91,108,101,99,106,105,108,109,106,112,98,110,92,113,102,103,106,99,115,100,100,110,100,99,100,100,95,88,96,104,96,95,98,101,91,103,94,102,111,117,112,90,101,96,110,100,113,107,86,103,122,94,105,108,98,108,102,106,114,103,101,101,107,103,108,105,106,101,101,107,113,105,95,109,107,113,125,103,121,95,91,104,97,93,112,103,102,104,119,109,115,95,101,95,107,106,105,98,113,113,94,90,102,102,107,109,100,99,109,102,107,101,108,109,106,120,115,105,101,113,100,101,100,98,101,98,101,106,102,105,102,95,96,108,105,100,104,96,106,103,112,97,113,110,102,115,99,99,90,95,104,102,110,101,104,104,103,108,106,116,103,107,98,104,103,108,105,101,96,107,105,109,95,102,102,78,94,115,93,99,101,108,98,96,102,109,96,96,109,112,109,105,108,97,87,100,96,90,92,104,92,95,91,106,111,106,99,93,103,109,104,96,95,109,102,113,93,106,109,101,113,100,104,110,94,97,117,96,106,102,106,109,103,100,99,100,110,96,95,106,108,109,103,102,101,108,102,100,97,126,102,88,106,104,103,105,98,110,112,103,112,98,107,104,106,107,94,102,98,126,106,102,113,102,104,100,96,108,99,107,90,88,100,103,102,116,129,96,88,102,78,88,87,107,102,94,103,101,108,97,83,96,80,109,118,105,91,87,93,96,96,117,95,90,101,102,108,112,99,110,100,83,127,100,94,102,106,98,104,91,105,102,106,105,108,104,101,108,97,101,96,109,105,105,114,105,104,107,107,99,104,115,103,109,107,95,81,98,100,101,102,98,102,106,101,112,102,102,113,100,92,116,110,101,102,108,115,117,111,112,104,103,111,106,100,101,95,101,96,116,91,104,95,109,105,92,102,105,122,102,100,91,98,105,107,107,98,109,101,106,95,100,103,113,106,69,95,100,95,96,100,99,103,108,103,95,107,100,110,92,112,105,94,100,109,94,104,105,98,80,100,112,101,103,94,114,100,96,102,100,106,95,113,97,101,120,94,112,90,97,112,101,111,108,102,102,102,112,105,105, +454.64536,78,83,79,101,92,107,104,114,107,97,101,109,97,91,95,105,101,97,106,104,101,104,97,117,130,110,102,107,102,108,106,107,101,112,91,88,110,92,112,88,101,126,107,104,102,94,118,94,111,110,98,104,99,111,128,100,99,109,108,100,101,103,109,103,103,110,91,96,97,100,84,95,105,97,95,91,92,105,107,92,108,100,111,100,111,106,109,91,100,102,108,108,95,108,113,95,103,107,112,103,99,91,112,101,109,111,107,94,108,86,107,101,105,123,109,88,109,106,104,99,101,89,100,113,95,113,83,95,102,95,98,103,105,98,102,104,103,104,101,105,99,95,105,109,100,96,99,101,98,108,99,114,97,100,93,102,107,95,98,99,107,104,96,103,106,106,107,100,109,105,121,109,105,98,110,95,108,106,103,108,104,114,100,101,100,105,111,95,106,108,95,107,100,99,110,76,91,102,103,104,100,90,102,100,99,112,107,117,116,109,96,108,88,99,95,105,90,89,111,105,114,138,92,91,92,106,111,114,98,104,100,106,100,102,100,105,96,108,100,105,108,105,111,89,91,112,100,99,117,94,121,105,111,108,101,97,110,108,96,109,101,108,100,109,96,114,108,99,105,110,114,112,117,94,101,106,94,107,113,106,109,96,101,108,90,94,105,96,95,104,100,118,112,110,105,105,111,113,101,101,121,110,120,102,101,114,110,114,105,113,102,107,107,136,103,104,112,117,113,117,107,96,114,107,105,114,99,90,121,113,102,84,102,105,110,106,104,101,101,107,98,104,95,108,108,110,98,105,109,100,115,107,115,101,94,109,108,110,109,101,96,95,101,101,96,79,100,109,120,102,100,102,99,110,113,110,106,110,92,104,113,107,94,109,72,101,103,102,99,100,108,94,104,103,97,97,108,106,107,106,104,97,103,98,106,104,102,113,106,109,97,98,113,133,104,104,95,108,96,110,88,86,104,107,110,94,104,91,91,102,109,103,112,94,99,99,101,115,115,100,100,105,103,108,102,92,105,99,96,113,113,112,109,133,98,100,113,104,108,105,99,113,98,118,115,112,103,112,98,92,108,108,100,96,108,91,100,110,102,108,100,115,107,104,100,105,97,113,92,101,104,126,91,105,91,110,98,122,93,99,123,109,118,103,102,83,99,99,118,107,109,98,94,99,104,114,106,99,92,79,95,100,110,99,114,114,109,95,116,101,95,104,109,102,80,117,104,93,102,102,105,109,109,107,99,90,112,108,111,99,104,106,114,120,96,96,103,104,95,90,108,105,93,109,101,101,101,108,100,108,96,101,97,101,111,109,84,102,103,107,103,90,106,99,95,99,108,109,116,97,105,97,103,105,109,106,110,96,108,105,114,109,93,88,108,108,101,98,109,92,109,114,109,107,105,101,112,106,109,100,116,102,110,109,95,99,96,100,110,110,110,105,91,110,99,120,103,98,106,96,102,107,117,94,108,92,96,94,113,100,106,114,98,107,95,99,108,126,103,100,105,117,104,112,97,114,100,95,115,98,114,76,107,114,102,120,92,104,103,104,113,102,104,89,96,94,105,100,104,104,110,103,91,108,98,105,114,115,100,101,105,100,94,96,117,98,116,101,93,114,103,102,106,91,92,112,97,106,104,101,105,99,87,111,91,97,104,102,104,122,100,121,101,105,97,96,96,108,106,101,107,102,104,104,109,102,110,95,107,96,99,93,105,106,113,111,108,102,109,107,106,109,108,83,102,113,101,104,111,95,96,100,117,101,86,105,101,116,117,102,101,114,117,102,94,102,94,100,110,109,103,98,103,109,101,95,96,111,105,109,107,99,94,100,112,95,114,104,98,115,104,115,95,117,110,107,108,98,92,104,102,109,103,111,113,99,109,92,111,107,108,103,102,96,97,113,105,104,98,105,111,108,103,102,103,84,105,110,108,101,105,118,92,105,106,114,111,105,94,106,101,106,94,119,116,105,102,112,110,119,109,103,107,108,101,109,104,101,120,107,108,110,101,115,102,105,100,105,99,92,105,113,99,113,98,106,103,109,103,103,111,116,111,99,104,95,110,102,100,105,102,114,108,103,102,95,108,104,97,103,99,98,102,107,116,108,110,105,109,102,107,103,91,113,104,104,95,106,103,111,113,100,103,115,87,108,108,107,108,93,105,97,81,113,124,103,99,99,107,95,102,103,95,98,109,97,97,114,99,103,99,96,108,91,103,94,109,96,116,116,96,97,104,95,106,103,95,102,108,97,111,111,98,128,96,99,101,107,102,95,108,118,108,110,107,83,104,100,90,96,104,105,113,114,98,100,111,105,100,110,114,102,99,90,102,112,95,95,105,104,103,105,110,100,100,91,108,104,91,114,90,96,97,105,116,99,112,113,110,97,98,111,110,96,117,117,101,102,95,116,101,101,112,108,94,97,104,106,98,93,125,112,98,91,107,101,96,100,104,103,92,111,95,106,105,107,90,100,91,126,106,96,107,97,95,102,103,97,101,104,87,113,104,101,101,106,92,81,111,102,108,117,112,96,114,92,101,100,85,113,94,97,98,110,110,114,102,112,102,103,98,112,103,113,94,116,103,106,105,111,97,96,93,113,98,103,95,96,93,112,108,113,117,109,109,91,97,125,101,99,108,103,109,94,109,110,105,100,104,103,76,103,114,110,93,117,106,104,112,101,95,107,85,105,114,98,109,109,96,106,94,102,108,101,98,102,91,94,74,113,104,109,101,98,105,107,106,104,103,113,111,105,101,106,107,101,106,116,96,91,102,118,108,113,93,92,105,92,110,103,92,102,104,99,104,92,105,103,97,92,92,95,99,105,92,100,108,98,106,103,97,103,121,100,114,99,94,124,98,102,111,107,115,105,111,93,95,104,104,103,81,97,114,108,103,99,88,99,108,93,115,102,112,97,108,101,102,104,99,107,108,105,94,100,102,100,109,108,108,106,98,98,120,111,100,95,115,101,102,87,104,109,105,105,97,105,108,107,102,107,101,106,101,105,72,108,103,102,104,92,107,105,93,109,102,110,118,111,109,102,89,105,103,96,102,102,107,95,109,106,102,113,111,109,108,105,105,117,103,100,103,97,101,97,106,97,105,103,90,95,100,100,108,101,109,103,100,104,100,100,107,109,101,106,117,105,96,109,82,117,92,98,90,94,99,106,98,105,101,98,104,101,100,103,90,105,91,105,115,97,96,103,98,107,100,103,103,99,97,108,113,105,96,94,100,110,104,97,110,103,105,108,92,134,96,97,104,98,100,105,117,107,113,104,90,117,101,99,87,94,108,89,117,105,100,113,107,106,96,104,106,99,94,104,101,96,94,86,105,117,98,105,105,92,95,105,94,98,102,101,109,101,93,101,100,116,110,110,99,85,101,105,109,97,76,111,102,108,109,106,102,101,112,108,99,97,103,117,103,100,108,91,97,95,107,104,102,100,106,100,101,108,106,102,93,105,104,114,99,102,91,115,99,102,94,103,101,101,115,100,115,106,92,101,104,94,117,106,96,106,99,105,106,113,106,107,103,106,104,102,105,102,96,97,113,110,105,93,106,106,109,101,100,98,96,96,96,101,113,100,99,108,105,104,94,109,103,89,107,102,100,114,103,102,95,86,113,105,97,93,99,98,101,105,102,105,110,113,105,103,102,93,112,110,101,108,107,100,107,100,103,111,104,105,91,99,108,116,93,99,104,102,106,103,100,116,121,101,100,102,104,101,89,103,92,103,99,103,92,93,111,99,104,102,98,109,101,110,109,111,102,94,102,99,95,109,106,100,115,109,104,112,87,98,97,94,94,103,105,106,106,102,94,99,99,97,115,106,92,112,104,107,106,105,93,99,94,100,100,99,103,108,112,93,105,111,105,102,105,98,108,99,97,96,106,106,100,100,93,105,103,103,112,104,102,97,105,118,96,113,121,98,97,98,91,106,102,104,100,99,105,100,100,106,97,110,104,79,99,103,107,95,97,109,95,102,107,107,103,103,95,91,92,116,104,106,93,95,101,106,109,103,101,111,92,99,95,103,108,109,110,103,96,96,103,108,103,100,121,98,105,96,108,93,102,99,98,109,106,92,99,108,94,100,102,106,100,117,110,101,100,97,105,114,105,113,117,111,102,101,104,106,101,89,101,99,103,104,111,111,104,106,103,100,103,104,107,99,95,93,116,102,110,101,108,106,94,95,101,102,102,98,116,106,103,99,108,98,112,112,109,105,99,104,104,104,100,118,111,99,97,87,109,98,94,96,106,102,100,93,94,107,108,120,97,106,108,94,97,100,112,105,88,111,103,110,99,91,116,99,104,105,111,98,91,101,103,104,88,105,97,95,106,97,111,109,103,98,104,103,109,90,108,97,105,107,106,106,109,86,97,104,109,105,96,114,107,104,98,102,83,93,94,93,97,110,98,109,119,92,80,103,104,100,97,104,96,95,113,103,106,114,108,105,108,96,103,103,93,101,98,100,110,101,105,100,100,95,91,91,111,103,104,106,110,109,102,108,103,94,103,107,95,103,117,104,108,104,93,102,110,103,100,94,106,95,108,107,101,114,109,103,95,106,78,103,116,98,109,99,94,92,97,89,102,106,100,104,105,117,112,103,110,102,110,105,76,105,87,110,104,103,103,109,95,104,106,106,103,97,106,117,103,95,98,81,117,104,111,108,83,106,105,107,107,92,97,112,91,101,100,119,95,113,97,87,95,102,106,98,110,105,85,108,99,116,112,96,110,100,114,107,96,100,98,100,94,97,97,105,106,90,115,103,131,100,80,106,108,91,95,98,105,105,99,99,98,100,98,88,113,121,109,97,121,99,115,98,106,98,107,95,108,86,90,109,104,107,107,100,96,98,97,107,116,107,101,100,98,93,112,106,106,105,101,104,103,102,108,106, +454.78577,99,94,97,102,106,97,107,87,99,96,111,116,102,108,112,109,96,105,120,106,100,98,119,113,89,104,110,120,92,103,101,109,103,101,111,96,108,95,108,92,96,97,94,98,107,107,104,96,91,107,93,103,104,104,96,92,108,107,104,87,106,103,105,114,110,110,104,98,102,106,112,102,103,92,109,105,102,100,107,120,103,102,112,102,108,106,95,98,112,91,103,104,95,94,97,101,115,99,96,112,112,88,106,94,104,107,114,95,95,97,93,113,105,94,99,97,84,96,96,100,113,98,104,105,93,102,109,119,112,105,113,106,98,100,114,99,109,104,107,108,104,110,83,98,98,98,105,102,100,110,96,111,101,94,98,98,100,118,105,104,113,105,95,100,105,111,106,111,98,104,94,109,101,105,99,100,99,104,106,109,101,109,104,97,115,119,101,91,114,94,103,104,96,102,90,101,100,103,107,106,95,104,88,95,106,97,102,86,113,105,108,100,100,97,112,100,98,104,100,102,105,108,103,109,77,105,86,103,105,104,104,108,92,109,102,101,106,95,111,99,104,96,113,102,70,97,106,106,110,108,101,96,106,100,108,109,104,107,106,117,106,97,107,107,103,102,98,110,99,101,107,114,113,98,106,101,108,113,98,103,112,101,100,100,99,104,111,111,99,99,94,110,115,110,119,107,108,100,94,98,105,100,100,104,86,109,96,118,97,114,92,108,108,99,104,95,87,120,110,108,107,104,96,120,111,116,104,97,106,117,100,97,106,115,111,118,109,99,106,103,110,90,98,104,114,109,105,108,98,113,111,105,107,101,108,124,108,111,100,108,110,95,92,98,102,100,99,121,97,103,111,113,106,129,115,92,112,109,105,101,104,104,97,100,103,101,106,98,110,94,101,96,101,95,101,98,100,102,104,85,105,112,97,107,99,96,89,98,103,103,104,97,101,115,94,101,99,104,120,102,99,95,105,109,97,101,107,84,99,106,97,124,109,95,115,104,103,108,98,139,106,101,98,113,110,105,87,111,114,105,101,119,112,108,95,110,96,98,102,104,94,94,91,99,114,109,105,101,111,102,99,93,97,109,103,102,103,113,104,104,108,109,111,99,112,122,119,105,106,93,100,97,106,99,105,101,95,107,105,105,104,99,104,110,97,110,102,114,113,119,104,95,105,98,102,104,110,107,101,99,99,99,98,113,85,96,96,113,100,99,98,102,101,97,91,92,106,101,106,116,101,112,95,97,101,111,92,98,105,112,118,103,100,106,107,98,106,94,100,109,109,100,109,110,114,114,101,112,94,89,100,97,109,90,92,110,108,105,101,101,100,93,106,98,105,96,104,113,104,102,120,96,99,105,113,105,106,100,117,103,97,116,91,99,98,106,83,100,111,104,108,90,105,106,111,107,106,101,110,98,104,101,107,109,103,98,105,108,78,95,104,109,103,106,95,101,97,96,107,97,100,95,107,97,85,94,100,108,112,105,117,111,102,105,103,110,106,110,109,103,112,104,103,108,95,106,105,103,111,98,120,106,101,128,102,110,102,100,106,98,115,100,107,96,120,104,114,110,99,106,99,102,114,104,112,112,94,118,97,96,100,87,102,110,105,107,104,112,108,121,95,100,100,96,113,110,106,100,106,102,101,102,101,122,93,105,100,100,107,116,101,111,112,101,99,95,101,113,99,91,112,95,102,104,98,94,107,101,99,106,89,107,114,102,112,93,110,99,103,106,92,111,87,112,106,109,93,104,100,110,102,108,109,103,125,117,115,118,101,104,109,99,102,117,99,100,113,105,81,113,102,119,107,113,95,117,89,101,106,109,98,105,113,110,109,108,104,99,94,105,113,100,100,105,107,110,98,111,101,103,105,102,100,97,83,116,105,87,114,111,104,103,109,96,110,100,99,117,107,103,103,111,116,97,109,96,98,97,108,110,109,125,104,108,98,98,105,106,101,110,100,103,115,99,104,103,95,103,111,104,102,105,108,98,99,109,120,108,104,101,92,98,87,137,103,108,108,106,109,99,100,108,103,116,103,99,110,100,110,102,114,103,100,103,107,97,94,120,98,105,91,99,99,114,115,98,76,104,105,111,102,98,105,105,109,121,103,101,106,117,104,107,98,104,116,107,93,102,105,104,102,105,112,106,113,104,110,96,101,114,103,98,117,104,110,110,101,99,110,104,113,110,103,99,120,114,104,111,105,106,103,106,103,105,91,99,90,97,106,109,96,99,106,105,100,104,114,106,108,103,114,108,109,115,97,92,98,98,105,98,96,109,115,105,117,104,106,117,109,107,92,105,102,102,96,106,98,103,101,103,111,107,104,97,95,107,107,110,118,102,111,112,110,94,106,102,101,100,102,102,104,110,102,114,95,107,96,96,101,104,100,104,106,116,109,112,103,100,104,105,100,118,104,104,103,94,105,109,94,91,99,108,105,103,104,123,99,111,84,102,96,108,100,95,109,103,105,94,102,109,94,92,111,95,97,113,105,102,114,96,96,101,99,107,106,112,97,103,94,82,96,112,104,118,110,121,104,101,109,105,107,88,106,107,113,99,98,108,104,101,114,109,99,103,107,109,103,105,96,107,97,111,78,106,117,105,112,110,93,94,109,98,117,101,101,100,98,122,95,98,101,110,103,85,94,106,110,107,107,95,99,107,105,106,88,121,106,97,107,104,117,104,112,107,102,103,122,106,95,112,107,99,79,109,94,111,95,111,109,108,111,110,109,100,113,106,107,103,106,117,101,134,105,108,113,102,101,103,109,102,95,103,91,95,91,102,111,106,108,112,99,106,104,103,113,101,122,114,107,108,98,115,112,98,97,91,101,102,107,97,103,98,105,100,106,113,98,109,105,120,107,101,76,110,120,121,105,109,103,113,98,108,106,97,106,103,112,96,94,109,105,118,102,99,108,113,106,110,113,99,112,119,100,93,91,135,110,106,103,96,101,100,102,132,103,112,102,95,106,102,93,120,110,111,109,108,77,98,133,104,108,107,95,108,112,87,109,106,105,99,108,106,100,106,116,103,108,108,91,99,112,110,108,103,110,95,98,107,119,93,96,103,93,118,99,111,112,107,111,101,102,102,107,92,94,105,112,89,103,112,95,103,99,102,110,105,96,107,100,97,111,107,103,104,100,106,96,106,96,96,95,99,102,103,104,105,102,97,97,91,103,120,97,98,96,97,110,102,110,101,104,106,102,97,121,96,104,91,113,99,106,103,103,101,112,101,96,103,110,113,105,97,95,107,105,103,100,102,79,96,94,89,109,109,95,100,109,106,111,93,113,109,90,111,110,104,112,106,94,90,107,95,99,99,113,106,96,102,98,98,99,102,102,110,103,98,116,102,109,102,101,97,98,94,93,100,105,98,89,107,104,96,97,99,98,105,121,106,105,100,106,109,106,118,97,91,106,110,109,107,102,92,95,109,96,87,105,100,109,101,96,103,98,97,105,107,100,107,105,103,96,101,104,101,108,101,101,89,103,104,99,100,98,104,101,100,96,104,109,102,120,106,101,105,103,100,109,113,105,101,109,105,102,103,98,104,105,108,130,113,109,105,106,117,103,113,108,100,101,68,104,113,99,100,108,103,99,105,103,104,94,102,91,102,102,96,104,104,95,99,104,108,105,103,98,104,91,95,109,105,103,101,92,98,102,99,125,92,102,106,112,104,113,117,103,95,97,104,110,101,110,116,108,105,96,84,106,108,101,102,87,112,99,102,88,94,102,110,107,98,106,92,88,95,107,96,102,100,115,122,111,96,102,106,102,102,104,119,107,111,103,107,96,103,98,102,106,113,86,113,101,97,108,100,98,102,96,90,103,115,101,106,102,122,105,96,95,115,109,101,92,107,101,113,96,113,101,94,90,115,109,112,97,126,102,100,108,100,109,107,101,113,107,104,108,115,113,106,104,103,102,93,93,104,104,109,107,108,110,123,100,99,100,124,106,105,111,117,99,102,102,105,95,102,110,107,119,114,104,120,106,110,97,106,105,100,97,117,103,103,110,105,102,102,106,85,101,100,110,106,110,99,86,103,99,106,102,96,98,96,98,106,107,109,95,71,111,103,112,96,104,117,104,112,103,114,109,110,123,108,98,99,104,109,100,106,109,105,102,106,112,97,101,104,98,95,100,99,75,88,107,106,99,90,108,107,92,103,100,107,107,109,95,95,110,105,102,111,120,105,101,99,106,108,96,100,101,105,104,101,98,106,108,96,101,102,98,127,104,103,97,101,108,97,101,97,104,96,100,94,100,97,113,103,97,101,102,102,121,104,97,95,99,75,135,113,98,108,103,111,109,110,102,110,101,106,84,110,104,108,99,105,102,106,91,99,82,99,99,125,103,103,106,107,104,109,104,104,102,108,106,106,105,111,103,107,112,112,87,101,106,101,112,117,99,106,102,98,93,113,91,105,101,101,103,105,105,99,108,113,121,106,106,102,91,101,97,72,112,110,103,87,110,98,103,111,108,102,107,109,95,101,103,106,101,116,99,113,108,97,102,100,105,91,93,93,108,100,123,113,116,105,99,100,103,99,100,100,116,104,113,105,105,92,102,94,112,111,95,102,108,104,112,109,105,108,101,113,110,100,111,111,113,93,104,107,108,109,101,105,111,98,115,112,97,90,77,103,97,107,110,103,109,94,103,99,90,85,98,98,96,111,101,112,106,102,97,100,100,95,115,109,100,98,78,100,102,100,104,102,109,106,100,101,107,102,104,100,112,119,98,105,122,105,92,110,102,98,109,87,103,97,107,102,102,105,103,98,75,100,103,112,109,102,106,101,93,97,95,105,112,97,95,85,116,107,101,98,107,104,114,99,105,99,73,105,80,106,109,91,100,109,112,87,101,94,107,107,102,93,81,96,128,99,113,104,103,96,101,109, +454.92618,99,86,91,105,93,107,113,100,94,117,90,106,120,95,97,99,100,108,113,92,102,101,87,116,106,118,98,103,106,103,102,97,104,103,105,99,107,99,111,99,106,103,99,111,96,117,98,106,96,106,105,105,114,105,99,95,104,103,116,96,110,102,103,96,98,93,97,104,98,96,91,96,88,107,108,99,104,114,97,92,110,106,104,96,94,112,111,102,99,86,107,99,111,102,93,109,111,96,106,108,100,88,99,104,107,68,104,121,103,108,97,102,104,108,107,119,107,121,96,102,99,102,110,105,109,132,121,112,82,108,96,105,93,93,102,101,99,91,75,95,102,109,108,103,106,99,105,97,105,96,111,108,106,105,100,101,103,101,105,93,111,116,104,98,112,93,102,93,112,94,100,104,108,98,105,109,97,105,105,101,104,92,92,101,92,103,101,100,96,110,109,106,103,106,105,105,98,97,111,103,100,105,92,111,100,105,98,74,110,113,106,105,109,117,101,101,94,107,116,117,98,104,109,75,100,104,87,114,107,110,99,103,106,101,112,103,97,110,108,101,100,98,101,97,105,104,100,90,108,109,102,103,112,99,118,96,105,101,108,111,106,99,108,105,95,114,106,100,107,103,105,106,99,101,111,107,104,102,101,92,95,110,102,97,104,104,104,103,81,93,101,103,113,103,108,109,128,97,119,112,116,112,100,103,87,103,116,110,108,102,102,101,108,95,106,93,106,102,98,103,101,106,99,103,112,105,101,100,109,117,97,105,99,100,102,104,117,123,102,118,100,98,106,87,107,82,103,101,132,103,113,111,103,103,108,113,120,108,103,108,100,91,104,108,104,120,98,103,102,110,117,114,118,104,76,92,108,107,111,110,92,99,101,105,95,95,111,96,105,104,118,97,101,103,95,98,96,93,103,109,114,94,100,101,107,90,108,107,103,119,94,90,100,102,113,100,89,80,91,107,101,102,101,105,96,99,107,102,103,107,98,106,137,114,110,110,107,107,104,105,113,99,103,100,105,107,105,109,104,101,100,100,108,108,88,100,110,97,107,98,98,100,88,97,107,112,105,104,106,103,104,94,106,116,102,114,101,116,104,112,98,117,107,106,93,106,114,112,105,99,108,94,95,99,97,105,103,105,100,100,106,98,103,103,104,107,98,109,105,98,121,115,101,117,86,113,102,100,100,101,95,105,104,98,96,104,95,105,95,111,100,95,109,98,89,102,105,95,110,100,102,104,93,96,106,109,92,95,97,116,108,120,110,108,98,95,90,104,98,97,113,96,112,108,99,103,92,105,109,108,109,109,112,96,99,93,112,94,97,94,101,96,108,97,110,98,111,115,116,110,95,110,105,102,116,110,98,106,104,103,103,113,109,91,103,121,99,113,100,106,100,105,96,112,115,110,113,108,93,105,103,100,104,102,105,104,101,105,101,107,106,98,106,103,100,96,107,116,115,113,113,104,96,102,101,91,105,93,105,107,102,107,98,104,95,104,110,117,88,117,102,104,116,97,93,110,103,79,103,87,98,106,99,104,102,106,108,97,102,99,108,102,105,94,105,113,109,93,98,107,96,102,101,108,115,110,101,104,104,102,96,100,103,94,105,83,96,112,104,94,110,84,102,109,99,105,110,112,112,107,104,97,104,102,86,98,106,93,109,107,114,107,95,104,102,99,100,96,104,116,110,101,109,108,102,81,115,104,88,110,105,96,84,110,107,108,102,104,116,99,99,106,103,100,100,90,104,116,113,98,86,101,109,101,102,110,102,109,110,104,98,107,99,111,105,113,113,101,100,136,100,94,104,90,106,100,65,113,113,77,104,95,105,104,102,104,72,107,107,102,108,106,108,103,91,99,112,112,111,111,98,104,107,106,108,119,102,116,104,99,112,107,100,106,103,103,109,95,96,112,102,110,106,113,76,108,102,102,118,92,96,94,95,104,102,108,104,97,94,98,99,96,117,100,100,95,95,113,118,102,106,113,112,103,109,108,100,104,105,109,104,107,100,95,106,103,100,115,96,105,104,110,109,103,120,93,95,110,103,108,96,106,114,91,101,103,104,104,92,111,99,97,105,102,106,93,90,103,106,98,113,104,109,101,109,102,110,100,108,110,109,111,102,117,101,95,109,100,102,105,109,98,116,105,90,108,107,100,109,102,106,114,124,106,108,102,106,104,104,102,104,89,96,114,103,104,99,100,100,109,92,100,104,97,135,125,101,94,96,94,101,117,97,107,103,94,105,100,102,99,95,98,112,110,106,95,97,113,100,105,98,100,105,104,99,108,115,109,100,93,97,97,96,104,98,94,81,95,106,108,103,97,107,104,99,95,105,104,101,101,111,109,114,98,118,80,100,103,102,116,100,102,106,104,95,107,94,102,99,95,101,97,92,108,91,91,105,113,90,96,104,112,116,113,104,95,107,106,104,91,98,109,94,104,97,103,104,92,95,106,100,103,102,105,110,105,114,102,104,95,91,109,113,96,95,105,100,97,112,101,97,98,103,106,105,102,97,103,106,107,101,124,113,96,109,87,100,98,99,98,100,111,104,101,140,109,101,89,113,94,102,130,97,99,111,113,106,104,111,95,103,107,100,124,112,104,105,105,106,106,106,102,119,107,99,100,112,100,103,96,112,97,100,104,104,102,96,107,109,113,109,99,106,98,104,107,121,112,106,104,100,97,87,102,113,111,111,104,118,109,117,98,112,105,109,103,109,114,97,104,108,107,113,102,98,104,99,116,111,99,108,116,127,115,105,112,110,112,113,117,109,112,100,108,109,92,104,111,110,104,117,103,98,108,107,112,109,103,99,108,120,88,117,105,114,104,110,103,98,116,103,119,114,105,100,102,99,113,97,106,101,103,121,106,108,109,112,116,105,104,107,96,97,105,110,99,107,100,103,124,98,110,117,101,103,108,117,102,106,113,104,107,100,101,107,99,107,98,110,91,116,112,100,112,102,107,98,105,104,115,108,100,114,102,95,111,100,105,104,105,109,99,98,100,107,102,111,107,101,102,103,91,106,116,103,115,105,111,113,103,94,107,112,109,112,105,108,114,108,121,102,102,91,83,113,101,92,111,106,100,106,96,117,99,120,96,115,108,94,104,98,107,79,107,104,100,96,122,104,106,89,104,109,116,106,97,103,106,105,108,98,92,102,91,103,97,104,104,112,100,107,101,99,107,99,108,94,113,103,101,105,109,83,111,100,93,103,108,126,113,106,106,103,94,106,112,102,107,111,106,103,103,107,116,107,104,108,93,104,94,88,92,116,110,103,125,100,102,102,89,103,97,113,113,103,101,100,99,98,105,114,108,101,115,112,112,101,92,118,105,107,104,104,103,105,97,104,99,107,105,106,85,102,96,95,102,114,98,112,115,92,124,104,105,98,91,111,107,105,93,103,94,125,104,107,116,105,99,94,109,96,90,107,74,114,110,106,98,109,91,119,107,102,100,102,111,116,101,106,101,104,94,99,97,102,108,110,101,105,99,106,103,97,110,112,110,107,106,91,103,102,108,99,96,99,101,103,103,109,104,90,120,110,99,106,108,106,105,118,102,98,103,109,119,99,105,118,96,112,100,79,102,105,109,117,107,113,112,103,106,100,102,100,104,105,105,106,99,117,113,103,112,117,106,101,103,96,109,112,108,91,99,102,101,102,98,112,110,108,83,103,101,103,103,102,96,99,100,101,112,102,106,99,101,94,91,105,107,98,123,102,97,109,103,109,107,104,108,109,98,104,100,103,92,107,93,110,99,112,92,99,103,109,99,102,88,106,101,111,95,73,106,97,121,121,111,102,107,105,105,106,99,113,93,108,100,97,104,104,101,94,120,107,103,112,105,106,114,97,106,124,112,105,89,100,100,111,98,105,86,111,93,89,107,106,100,106,99,113,104,100,94,119,109,101,117,100,96,107,108,102,102,101,109,105,108,103,104,111,106,104,96,101,107,108,102,115,104,106,109,115,99,100,97,110,107,105,105,94,110,108,105,105,117,106,101,102,98,103,103,111,104,97,108,107,118,102,101,104,104,105,113,104,98,105,106,107,108,116,100,109,97,95,97,101,105,109,109,106,106,105,104,103,102,107,108,108,113,106,107,108,111,104,106,97,107,107,107,104,123,110,102,91,90,115,102,93,109,106,106,102,97,96,100,104,108,96,95,104,92,112,105,102,104,111,125,98,116,106,143,110,107,123,109,117,104,115,106,105,117,112,100,95,98,104,97,108,119,100,97,105,99,107,68,116,101,99,95,90,98,113,96,112,99,102,101,90,91,109,97,97,89,103,113,87,101,95,103,109,98,108,94,116,98,95,120,102,96,101,99,105,89,96,113,108,91,104,105,101,112,103,107,90,109,108,111,111,91,104,95,106,113,106,97,107,103,111,100,124,99,95,87,98,99,106,102,100,103,104,91,118,99,99,98,113,114,104,99,107,99,108,110,114,101,80,87,102,95,100,98,115,89,110,105,90,100,106,95,107,95,100,110,96,113,100,106,113,104,103,108,97,109,104,105,99,105,102,103,103,91,119,107,105,97,103,96,102,96,98,105,94,96,106,94,115,100,102,104,95,95,117,111,100,110,98,103,102,100,103,104,111,110,89,95,102,112,96,106,99,106,120,79,115,92,104,84,109,103,75,100,102,95,103,81,95,103,109,110,109,104,99,100,109,97,117,99,112,107,116,103,111,110,125,118,113,96,109,96,102,100,97,109,99,91,98,104,109,105,103,102,100,98,105,87,93,113,79,105,91,94,99,112,102,102,99,109,107,87,105,124,107,100,105,135,99,107,97,107,110,89,91,103,98,103,104,105,108,91,113,104,95,122,95,109,65,108,103,63,102,110,105,105,95,102,104,103,99,100,76,105,114,97,96,100,112,102,61,99,103,92, +455.06659,100,98,103,101,101,103,93,104,95,98,95,109,114,102,106,91,91,104,98,117,105,109,103,109,113,101,102,106,101,88,109,125,107,104,93,94,114,97,90,98,95,95,99,97,111,108,97,103,95,104,95,104,95,107,98,110,101,92,97,83,114,108,95,114,106,99,94,102,83,78,98,102,99,106,103,111,90,109,101,102,91,103,105,98,105,94,112,102,94,103,109,102,101,82,112,115,109,108,125,101,97,109,99,98,102,104,94,100,101,84,101,109,96,110,92,91,89,106,83,95,95,106,107,108,96,107,104,108,109,108,104,110,97,106,102,92,120,98,108,94,109,95,95,103,102,97,104,91,106,101,103,104,108,105,98,101,98,105,115,94,111,111,100,107,104,96,123,108,106,97,106,100,109,105,97,90,108,102,122,104,105,101,113,108,100,97,108,96,106,94,93,99,102,102,99,108,99,96,111,109,103,110,115,109,102,107,102,98,113,99,91,98,98,96,98,99,114,102,103,101,108,97,108,104,97,105,103,95,96,101,106,114,103,101,106,107,99,104,103,100,101,97,96,97,99,104,94,98,106,117,105,102,98,102,95,113,106,105,98,111,106,112,95,93,105,111,94,106,92,96,104,110,103,121,109,107,97,108,101,112,102,101,89,109,100,97,91,96,108,117,87,103,108,103,112,104,111,110,103,110,80,101,95,114,95,108,130,102,93,106,103,118,94,100,109,119,120,105,110,102,112,105,106,98,100,98,98,104,119,112,106,96,103,103,99,106,108,97,98,103,106,106,110,94,105,96,92,102,114,112,105,77,96,111,106,110,105,100,102,114,98,100,101,94,102,101,103,111,104,96,105,108,103,80,115,117,103,107,112,107,109,110,103,106,101,104,97,90,117,102,113,102,108,100,103,94,109,109,102,104,107,99,97,96,100,89,109,107,104,96,93,104,108,99,111,88,96,107,102,99,96,100,107,99,101,99,105,99,104,115,100,105,96,99,104,107,92,106,98,121,111,108,99,100,109,104,96,104,122,111,77,103,107,99,107,113,113,111,115,101,94,106,115,104,101,115,103,101,100,102,103,109,104,117,103,94,96,108,91,117,105,103,104,112,102,102,100,105,105,103,110,119,109,105,96,100,104,104,100,92,99,99,113,103,105,99,98,97,108,95,106,104,107,109,126,114,94,99,100,101,105,100,86,101,104,103,106,99,106,117,98,95,112,93,101,109,101,96,98,105,96,95,105,109,112,105,107,91,103,113,102,111,109,98,91,109,110,94,105,95,107,103,104,110,106,101,113,102,101,108,98,99,108,122,98,113,110,101,105,108,102,96,110,95,104,99,74,112,113,94,114,133,108,108,113,109,110,117,101,108,116,94,112,101,99,93,73,106,99,123,99,125,101,102,113,117,101,112,110,105,114,89,113,108,105,98,103,106,87,105,107,89,96,109,111,105,99,99,100,91,114,92,100,105,92,105,94,98,98,112,92,105,118,112,100,98,102,105,105,109,109,103,107,114,97,105,99,104,100,97,113,90,103,106,106,106,102,98,98,95,112,99,101,86,98,102,103,101,99,95,100,103,105,122,110,102,105,102,104,101,99,100,98,102,107,109,113,95,95,104,108,102,110,95,93,103,110,106,98,102,105,93,100,118,92,97,95,110,108,102,111,104,102,99,100,125,101,132,99,108,117,113,91,107,118,103,109,105,108,102,112,76,98,113,98,116,98,99,119,93,102,108,93,109,94,124,92,93,103,114,114,90,104,103,116,109,103,105,108,109,97,101,99,81,101,107,91,92,101,116,98,93,128,109,100,105,103,104,105,128,102,103,87,110,105,103,102,101,107,109,121,91,81,92,117,105,106,104,104,99,100,98,110,108,107,98,108,107,106,109,111,108,105,103,106,122,89,116,107,111,92,112,113,92,105,111,114,104,95,106,105,84,101,105,98,94,113,109,96,126,94,111,128,100,75,104,104,108,112,109,98,103,105,111,101,100,109,111,98,100,111,105,84,97,99,106,106,109,95,108,103,109,101,107,99,108,91,103,102,98,99,103,107,105,104,103,103,95,98,120,112,116,97,98,104,113,97,106,100,92,111,110,107,105,107,100,107,100,102,101,114,96,110,114,103,95,103,102,92,102,110,105,123,113,96,102,109,111,115,98,107,98,105,109,102,102,96,104,107,111,100,110,99,103,102,106,94,100,100,102,108,106,119,103,112,97,99,104,94,97,102,112,101,92,98,110,109,102,97,96,113,103,101,103,100,109,103,111,100,110,109,100,96,124,109,101,117,105,96,113,102,108,114,110,107,90,107,105,109,108,108,100,106,100,97,108,105,106,117,101,105,105,113,102,103,86,105,121,94,114,99,98,102,110,93,105,109,103,107,110,113,106,106,99,96,79,100,106,110,111,99,106,105,106,72,115,81,107,94,103,99,113,113,100,94,108,103,108,102,94,102,98,99,100,103,109,85,105,98,112,95,93,108,104,100,93,93,107,100,106,98,105,104,121,107,104,107,112,102,113,112,107,106,115,109,95,91,107,97,103,105,108,87,108,113,97,110,103,106,105,104,98,131,100,100,97,101,119,105,101,104,101,100,102,114,101,102,107,107,97,109,98,117,109,89,102,95,97,103,116,111,95,109,107,114,99,118,100,108,112,99,108,108,106,104,110,99,95,124,95,101,98,103,97,105,103,115,106,107,106,108,101,103,115,109,101,112,106,104,111,105,76,105,95,89,106,117,109,105,104,111,113,100,106,109,106,111,105,96,110,111,113,108,91,95,107,100,96,107,115,95,105,105,105,105,91,115,107,89,107,105,109,106,106,107,106,104,109,101,111,92,105,120,99,99,97,110,101,98,112,104,116,88,109,99,121,99,115,111,113,106,114,100,108,111,96,91,124,109,96,104,104,106,108,106,106,102,111,121,115,119,103,102,103,108,107,92,103,101,101,96,105,92,90,112,99,106,104,107,95,104,103,102,104,104,106,113,103,102,102,103,112,100,92,110,114,90,95,104,103,117,76,107,99,108,100,111,95,111,109,103,102,119,99,95,107,91,116,105,99,113,108,114,91,107,112,98,116,120,124,106,111,108,117,109,105,106,96,96,100,100,108,100,105,110,112,102,132,105,103,101,82,99,102,101,98,97,98,101,121,104,100,102,105,98,100,98,108,108,112,107,95,108,109,95,116,102,95,107,103,103,102,83,99,104,101,107,99,113,119,98,104,92,107,111,100,101,105,107,120,112,104,100,101,104,105,109,99,110,102,105,100,113,92,111,128,97,106,104,99,109,100,109,108,111,95,111,114,106,105,104,99,108,116,108,107,94,99,90,109,101,102,98,96,104,101,103,113,112,99,96,97,106,98,104,105,96,110,96,101,106,97,96,111,110,112,105,113,120,113,101,105,111,111,103,99,95,103,105,100,103,91,112,92,105,99,111,110,109,92,97,100,109,110,100,104,109,108,100,100,121,74,111,104,99,104,111,96,92,98,107,113,114,107,100,83,104,99,86,106,107,107,95,111,111,102,116,109,96,100,100,101,106,103,110,101,96,102,103,106,101,101,113,116,103,101,102,117,116,96,95,98,101,110,98,96,96,96,104,94,94,109,111,102,110,98,107,106,69,109,94,99,113,101,91,98,107,112,116,119,109,104,117,105,107,99,107,97,87,107,101,102,105,98,103,103,107,102,103,99,104,111,106,101,97,105,117,102,104,95,98,99,88,103,108,105,106,95,100,110,98,101,104,97,103,121,106,94,102,104,90,97,106,95,105,107,99,97,104,102,93,113,101,93,101,99,106,94,109,109,115,99,99,106,102,106,97,108,109,110,103,106,105,103,105,112,108,101,120,92,109,101,104,100,122,110,91,108,97,117,102,95,100,108,110,110,107,106,102,108,97,101,108,106,90,102,101,117,87,117,101,108,106,107,98,107,100,99,107,101,101,112,94,103,110,107,101,101,96,109,95,113,92,114,95,104,102,111,106,103,103,107,81,102,112,98,104,108,99,100,99,109,99,99,113,103,108,90,110,102,96,96,100,100,104,99,103,106,103,109,97,87,109,104,100,113,93,100,99,95,76,101,102,111,109,99,106,99,99,104,103,108,99,101,121,114,109,105,102,103,111,96,100,102,102,111,109,100,106,109,109,102,103,90,106,100,100,107,105,98,105,97,107,103,104,135,110,113,99,97,99,103,115,91,98,117,101,100,99,101,110,98,98,105,100,101,110,103,99,97,91,96,110,108,107,104,102,109,103,106,107,99,104,112,108,109,87,103,102,113,93,91,93,106,96,100,101,91,116,108,100,106,106,103,104,102,105,106,95,95,107,100,102,99,95,96,116,120,101,95,104,100,106,104,99,109,98,109,111,115,99,105,107,101,101,101,110,96,102,95,99,95,73,107,100,105,98,103,96,100,123,97,101,109,96,96,105,111,106,97,116,115,102,106,115,104,100,100,107,94,104,106,117,101,109,94,100,101,92,123,95,99,104,113,116,104,115,106,107,92,93,110,107,107,96,106,103,106,86,108,103,105,100,110,112,99,96,99,115,106,101,101,115,113,109,105,111,108,95,95,103,99,100,112,101,118,99,108,107,105,104,97,96,77,113,105,94,108,96,96,109,102,104,103,111,105,94,108,93,117,111,97,101,98,101,104,105,99,109,101,105,113,80,99,99,103,103,110,98,96,100,108,110,99,100,79,101,99,102,109,101,103,102,112,94,110,102,91,103,93,102,96,101,116,106,100,103,110,108,102,96,112,104,99,105,101,105,91,106,109,111,100,116,110,95,88,103,103,104,108,123,92,96,102,118,96,89,94,89,110,103,104,104,109,104,108,92,106,98,98,98,101,102,95,107,102,112,116,98,95,113,109,101,119,98,87,108,102,89,82, +455.207,114,102,95,88,93,122,90,100,98,115,101,76,88,110,91,92,102,106,112,124,109,114,98,113,96,105,105,103,95,103,113,110,91,98,100,101,99,117,95,95,106,96,81,120,110,110,90,100,105,107,98,108,115,89,110,100,107,94,109,101,106,107,102,93,103,100,94,111,112,94,98,106,103,109,101,108,97,117,76,116,88,95,100,103,100,84,107,104,85,100,116,118,84,104,110,102,99,97,99,99,98,114,100,87,110,113,100,100,93,98,83,96,110,99,104,103,102,102,105,106,92,106,105,117,103,100,115,92,107,94,111,110,101,107,111,105,99,109,103,117,103,101,91,91,91,113,100,104,95,106,100,113,102,92,97,105,111,110,94,105,112,101,106,104,123,96,103,96,97,104,108,98,98,103,115,100,98,109,104,115,108,100,102,109,104,120,84,96,109,107,106,109,105,105,104,99,95,102,101,104,94,96,97,106,108,80,99,95,104,111,100,101,108,93,116,81,108,104,94,112,113,91,70,103,113,96,104,112,75,97,103,120,112,110,117,108,101,102,93,102,102,113,120,97,108,118,129,101,118,111,96,110,89,118,100,110,95,99,114,103,106,106,114,110,91,109,102,107,108,110,101,100,106,96,109,111,99,115,100,104,103,107,109,102,100,99,101,97,101,97,92,110,105,106,103,99,107,104,96,90,113,108,93,103,89,118,108,101,104,117,105,113,104,119,106,99,114,134,100,100,99,96,107,103,97,99,78,103,106,103,96,100,104,92,112,100,108,101,100,120,84,104,94,96,114,110,110,101,103,107,100,113,101,107,108,112,100,124,103,102,105,105,113,95,105,96,113,104,112,109,103,115,105,111,105,97,105,113,106,110,111,116,101,101,99,100,98,108,93,110,109,114,97,98,111,114,105,99,99,108,106,74,110,106,104,93,107,108,105,107,103,114,112,109,114,101,108,99,127,105,101,90,106,108,82,102,110,96,120,115,92,103,108,103,106,105,100,101,109,96,100,91,115,104,99,107,113,108,116,103,126,83,102,106,108,99,81,101,90,97,104,98,107,105,113,106,96,106,64,98,110,101,98,99,111,104,98,113,113,103,108,111,108,115,81,119,115,108,113,109,108,127,100,96,92,103,94,109,113,95,105,105,99,109,97,120,103,105,107,103,106,104,103,99,97,104,103,112,80,115,107,99,118,94,102,113,112,101,97,104,105,95,102,108,96,106,106,95,111,102,107,118,122,100,101,114,101,101,103,96,103,107,121,100,103,121,108,98,108,109,96,104,90,117,99,96,117,107,99,100,102,100,107,99,110,96,95,112,90,108,92,91,100,99,114,108,113,104,116,91,112,138,87,94,113,112,104,97,103,106,102,109,106,107,105,96,105,99,97,106,109,100,100,114,100,119,117,105,102,105,108,103,98,107,98,103,96,113,108,97,123,102,99,103,113,112,110,94,99,99,118,119,101,91,100,109,94,104,101,109,98,110,133,109,116,94,105,112,108,101,114,112,104,108,103,95,98,111,109,111,121,108,94,114,97,102,125,102,103,103,103,92,107,122,102,105,104,105,103,102,107,102,101,107,103,92,106,97,113,92,112,101,106,84,103,115,119,113,110,104,101,104,98,106,91,103,96,111,102,103,89,93,116,112,101,111,104,101,82,106,109,95,101,105,102,99,103,105,109,107,95,96,107,111,109,108,113,99,96,108,110,84,101,99,107,102,101,96,108,112,97,108,107,107,103,102,102,108,102,92,105,116,121,102,90,105,98,97,99,97,112,100,117,114,100,94,104,97,92,105,135,110,112,107,106,112,102,93,105,103,117,99,97,108,109,96,90,102,105,105,105,115,104,109,112,106,100,102,112,106,116,118,107,106,111,109,117,100,111,100,108,103,97,95,115,109,105,109,102,108,91,100,106,108,100,95,109,117,110,92,109,109,118,99,94,109,90,113,101,101,96,120,102,100,112,99,105,101,106,102,101,110,104,120,102,103,112,109,111,104,107,108,98,100,109,106,88,102,106,102,97,110,96,98,104,97,106,114,78,114,91,108,107,99,91,112,97,95,102,103,113,86,99,110,107,103,78,99,90,102,102,100,111,123,106,99,96,109,79,95,94,114,99,112,113,105,99,103,105,103,143,104,108,92,101,126,112,96,93,103,100,97,113,102,113,107,101,105,102,102,111,106,110,97,95,109,105,97,102,96,128,113,106,67,95,112,108,105,98,118,106,106,101,95,97,92,102,98,105,99,92,100,110,107,97,94,97,102,97,102,104,118,108,98,117,109,103,102,101,107,101,105,110,95,95,107,111,97,95,95,111,101,126,90,121,103,98,119,109,101,105,98,94,102,112,83,93,107,105,106,116,105,122,106,104,116,107,104,116,112,94,109,107,103,102,109,99,99,108,99,105,113,117,116,100,121,114,98,102,101,96,107,100,107,98,99,98,111,111,105,102,103,98,110,103,110,105,91,109,106,103,91,99,102,98,112,115,104,115,98,105,96,112,93,111,120,100,92,115,92,104,102,104,102,105,116,98,119,108,106,99,100,94,86,88,101,107,111,109,117,114,110,104,86,109,103,106,107,105,96,96,100,102,83,108,106,107,101,108,95,124,104,108,102,98,105,105,102,109,100,102,94,107,99,107,118,114,98,105,91,104,120,113,109,92,101,113,104,108,108,98,111,108,99,105,98,104,102,100,109,84,103,107,115,104,113,94,108,106,102,104,116,104,104,90,111,114,95,102,93,94,104,103,106,104,100,105,95,99,94,102,111,88,105,106,110,103,111,96,104,97,109,97,95,114,99,113,102,98,89,113,97,106,100,112,109,101,104,105,117,81,108,115,100,105,101,106,107,101,110,112,99,90,108,105,92,106,95,104,108,114,75,95,118,103,100,105,106,103,112,105,101,110,102,100,105,107,103,101,104,105,108,103,125,102,116,103,104,96,95,127,94,105,98,113,113,102,105,99,104,100,112,98,111,109,104,105,115,112,87,112,72,97,99,109,104,110,99,110,84,106,107,90,106,99,106,112,101,104,112,119,80,102,93,97,103,97,108,110,109,104,113,94,100,91,101,108,112,98,97,109,111,114,97,109,100,95,110,102,97,102,100,94,102,103,102,91,121,95,107,103,102,108,103,109,97,101,101,97,117,95,104,97,113,110,102,113,106,110,96,103,110,105,103,97,103,105,96,104,91,101,95,109,105,107,87,98,111,111,108,109,103,105,104,110,104,106,92,102,104,108,104,110,103,105,104,113,96,108,107,102,102,109,114,113,101,106,113,99,94,104,104,101,142,102,106,102,102,113,108,93,107,105,92,108,107,92,105,96,103,113,123,104,115,90,109,90,103,100,107,105,107,109,102,95,97,113,101,105,96,111,109,103,116,105,106,102,103,104,95,98,117,121,110,102,105,94,98,105,99,104,108,102,104,98,101,92,110,99,98,103,106,101,104,110,91,122,117,105,110,103,108,99,102,109,115,105,97,110,97,106,87,100,108,98,95,111,112,104,103,107,103,99,104,108,108,104,113,100,108,95,108,98,98,103,105,107,103,90,94,112,102,107,104,98,100,104,106,115,104,89,98,94,120,110,109,95,91,102,98,96,104,99,106,109,95,102,110,103,104,104,101,114,102,101,91,108,98,94,95,90,100,104,117,93,108,98,106,92,91,112,111,88,103,109,95,99,98,103,112,94,95,111,96,102,104,106,100,100,102,101,106,98,104,103,110,111,99,103,102,106,107,102,94,99,104,107,112,111,99,95,100,101,104,91,84,106,103,107,102,103,102,121,114,115,91,98,107,98,82,113,101,102,101,110,104,100,112,102,104,94,95,97,98,108,112,107,90,106,106,100,109,105,114,114,109,99,99,102,107,104,99,103,110,109,105,117,108,112,104,95,107,103,91,97,104,113,125,102,103,98,110,109,112,90,99,106,89,101,97,102,106,116,112,109,113,113,103,104,106,103,100,107,117,109,102,106,101,103,111,104,105,92,113,100,109,103,103,113,113,104,97,108,118,106,107,108,111,103,108,98,108,79,100,99,103,104,89,108,92,111,115,105,104,110,97,101,113,108,110,107,117,104,113,109,105,81,102,100,110,101,112,103,103,102,115,115,87,100,103,84,105,116,103,92,113,91,111,106,112,102,100,106,102,107,104,105,103,113,109,113,111,99,103,113,97,96,104,91,104,109,103,112,106,98,100,104,114,97,102,110,97,106,95,106,103,105,107,110,106,101,105,112,102,103,101,100,105,107,107,109,93,111,105,99,102,106,108,91,106,101,104,105,101,101,102,81,114,109,102,103,102,115,95,99,103,100,120,111,104,102,107,102,118,113,107,105,132,80,107,103,117,102,113,89,87,113,111,98,103,81,107,98,106,114,100,107,97,102,96,101,87,100,112,99,102,93,98,103,105,101,113,98,98,93,113,92,98,105,112,94,103,101,126,103,96,102,101,100,111,114,100,104,105,113,113,107,108,99,113,96,114,105,98,115,97,106,100,108,94,99,88,95,100,107,100,99,107,102,110,100,104,80,101,88,94,91,109,100,103,102,124,124,95,102,105,89,105,97,107,113,100,104,98,105,100,101,92,102,101,107,122,104,102,81,98,96,118,96,102,106,99,95,107,108,103,113,103,99,97,105,92,117,107,111,99,100,106,110,108,92,111,103,113,97,94,102,105,99,101,98,107,108,102,100,102,96,91,110,84,102,98,99,106,97,108,102,96,116,99,116,109,102,108,105,114,110,111,106,96,97,109,100,93,90,113,117,108,91,95,101,104,87,104,90,118,90,101,105,109,106,99,105,97,97,94,108,93,100,97,101,110,102,113,103,106,93,95,99,97,108,107,104,109,119,84,77,101,110,99,112,102,102,109,110,95,94,106,92,99, +455.34741,103,123,108,110,104,115,106,97,86,118,92,128,115,94,95,89,100,94,97,90,112,99,112,111,102,101,99,104,100,99,99,94,98,103,102,102,87,101,100,109,101,109,99,93,103,100,96,103,91,106,98,111,99,106,108,98,118,134,106,92,107,105,94,108,99,103,78,113,101,90,98,108,96,108,94,112,100,100,87,101,101,99,96,103,113,99,107,93,105,109,107,108,95,97,111,92,103,102,101,90,99,103,103,101,106,87,101,98,95,101,103,103,109,102,106,107,98,97,116,101,97,99,101,93,100,104,117,109,105,121,94,100,102,99,107,105,94,102,105,116,108,108,96,91,113,108,106,100,101,100,99,100,105,94,95,90,91,111,103,99,105,111,107,98,101,107,99,95,104,109,111,112,110,114,110,121,98,110,107,113,106,102,102,107,105,96,93,113,90,92,101,101,109,95,103,105,97,114,105,116,96,99,100,105,109,97,98,113,103,101,95,97,102,101,101,94,98,112,97,109,87,95,114,90,101,90,100,101,105,105,103,110,95,96,103,113,99,120,101,96,88,99,100,97,107,97,106,113,130,101,103,105,95,102,103,129,96,98,105,98,107,104,100,100,85,105,106,90,111,111,90,103,99,102,88,105,107,107,102,98,107,108,97,100,104,105,92,92,104,95,102,101,97,74,105,104,103,98,107,102,105,106,96,98,93,92,100,116,103,106,101,97,106,101,115,87,107,96,98,111,95,93,111,105,117,103,100,101,100,109,113,105,100,101,105,103,102,105,97,101,95,104,98,96,103,112,103,110,109,101,110,110,110,103,103,110,89,104,92,117,113,95,107,99,109,97,96,105,107,104,113,108,91,98,99,99,112,102,103,109,107,99,88,100,94,109,98,96,102,106,96,93,83,105,95,123,94,102,115,128,72,100,97,105,111,91,90,112,104,102,105,110,107,106,110,85,99,119,94,93,97,107,98,116,114,96,106,98,108,107,106,91,100,109,107,105,116,104,101,103,106,101,101,106,99,95,98,106,111,102,106,105,102,81,101,106,108,104,105,94,110,102,100,100,103,112,96,102,105,97,95,95,105,99,85,103,100,108,83,96,103,109,111,110,74,99,97,100,97,111,103,99,114,107,101,104,105,104,112,106,111,98,98,104,102,88,105,100,115,97,115,104,103,107,103,108,107,97,95,99,109,108,108,97,109,91,94,104,104,79,102,110,108,106,91,112,111,103,104,107,107,108,101,96,102,94,109,98,100,102,99,104,107,98,100,111,108,118,101,96,100,111,114,101,126,113,96,104,102,99,99,105,106,98,110,101,107,95,106,103,99,91,91,102,105,100,100,100,105,99,101,103,91,100,109,114,105,94,102,105,111,106,118,97,93,101,92,100,98,102,106,97,107,137,107,101,103,99,112,110,100,104,87,111,98,96,101,96,107,98,110,97,96,113,91,83,92,100,97,99,108,108,106,105,101,101,98,106,101,103,109,106,78,87,99,107,101,105,103,85,104,115,109,107,102,89,95,102,100,84,104,107,95,100,105,114,106,106,105,100,117,82,108,96,92,91,107,110,114,106,85,98,103,106,105,102,119,95,117,102,99,97,107,104,96,111,109,108,101,108,100,105,101,100,96,114,96,107,112,107,100,109,103,106,103,115,100,93,106,103,86,106,104,94,103,105,97,90,107,98,94,91,94,100,113,103,102,105,101,113,107,113,118,106,104,118,98,105,98,120,103,101,105,93,88,109,101,98,111,99,115,101,97,101,104,105,116,107,107,97,103,106,109,112,122,102,116,104,106,110,102,132,93,105,112,108,100,112,109,103,109,102,99,95,100,112,96,105,105,75,113,97,105,103,114,100,104,104,117,104,99,91,97,110,112,108,107,112,113,95,111,109,118,97,102,107,105,102,108,106,101,109,100,92,102,93,105,103,104,94,116,98,98,101,92,103,101,101,103,88,92,101,104,105,110,105,104,104,103,108,107,103,94,95,101,92,110,100,101,105,109,109,111,104,107,103,94,116,92,107,113,112,111,102,104,100,102,121,105,94,100,102,115,84,104,102,95,108,112,105,118,128,101,104,113,101,119,107,106,100,98,116,110,103,99,110,100,88,102,105,117,114,118,112,102,94,99,94,101,90,102,131,96,101,95,100,117,115,94,102,105,104,106,102,111,103,107,116,90,102,101,108,100,106,101,103,99,105,117,114,102,94,103,99,107,100,98,101,107,109,101,102,103,111,102,106,103,98,104,103,68,99,109,101,96,98,116,101,112,100,101,94,99,104,105,80,98,95,83,111,110,99,101,96,92,113,116,98,113,104,108,85,107,106,97,92,112,100,102,100,108,101,104,114,107,85,100,108,107,102,95,104,94,106,110,112,101,107,105,99,112,83,99,104,98,114,113,114,114,105,99,108,108,115,100,109,100,97,107,109,105,113,99,88,105,106,90,102,100,101,109,93,105,110,104,106,94,100,110,97,113,105,105,105,88,101,98,100,118,99,101,88,110,99,92,100,95,95,109,124,103,106,103,117,98,118,105,96,98,108,91,104,113,108,101,108,110,97,99,113,111,89,114,124,104,89,99,104,101,96,112,94,86,108,101,105,108,106,102,99,105,116,85,103,107,110,90,111,109,116,111,100,108,99,102,103,107,108,106,109,101,114,105,103,97,102,95,109,105,108,98,97,101,99,99,100,109,107,98,120,96,101,106,109,97,119,94,98,109,96,105,112,106,96,101,97,101,106,100,98,105,102,103,103,105,107,104,114,103,100,135,104,96,93,111,99,117,100,102,99,102,107,104,117,105,121,110,102,101,108,102,108,104,102,102,84,101,106,93,105,103,99,91,115,102,103,113,105,96,111,83,98,92,118,114,99,114,113,118,80,110,113,101,109,109,91,104,84,113,117,98,97,107,108,105,109,107,117,104,101,100,110,102,102,114,93,102,98,104,113,92,109,88,91,103,101,108,128,95,106,122,110,104,113,106,107,110,80,104,98,117,108,87,111,116,110,113,121,107,109,99,98,102,104,105,115,101,118,112,106,94,102,104,99,96,91,104,98,104,104,105,107,113,108,80,99,94,109,94,107,97,106,105,106,95,95,109,95,108,100,95,97,102,109,93,105,101,97,116,114,103,103,104,94,107,102,100,95,104,103,98,108,102,116,111,94,102,105,100,117,80,107,100,103,102,96,102,97,103,95,114,101,101,116,100,98,107,92,96,103,112,97,101,91,80,101,117,103,110,103,101,101,126,116,103,82,103,103,106,107,100,108,113,100,92,95,109,91,105,106,103,98,105,121,98,103,117,104,102,105,102,83,95,104,105,101,99,112,108,99,100,101,112,98,104,102,99,103,106,90,97,99,117,110,90,101,94,100,110,103,106,101,96,106,104,96,94,99,109,107,104,104,100,95,106,95,109,94,94,100,105,96,98,105,94,104,94,89,100,99,114,106,99,100,87,88,98,102,100,113,108,115,97,99,104,95,95,95,107,98,106,105,102,101,91,101,115,104,102,101,95,93,92,103,114,104,97,110,102,98,102,106,105,100,103,106,111,106,94,107,98,98,99,106,108,93,104,100,103,101,101,99,101,97,100,98,109,103,102,105,109,103,110,106,101,97,141,121,98,110,101,98,111,106,92,94,101,100,104,100,102,96,108,107,99,94,79,100,106,92,105,99,94,99,99,95,107,104,112,102,103,96,117,98,107,99,100,96,100,95,109,103,99,102,112,105,108,103,106,107,94,93,98,95,96,95,95,93,98,102,105,107,110,99,105,113,102,96,101,108,109,96,100,106,97,102,103,113,99,100,107,99,93,101,99,96,95,101,87,86,113,124,102,95,110,97,120,111,113,96,88,107,95,107,109,108,106,99,91,100,102,106,105,87,101,101,94,99,91,102,113,98,95,92,108,110,109,101,117,91,96,107,106,94,101,107,99,112,110,99,96,102,96,98,97,108,102,105,105,112,106,104,103,93,109,112,104,106,92,108,110,101,101,101,102,93,99,107,107,112,110,99,104,100,94,106,103,106,113,107,114,103,97,101,113,110,105,103,106,104,113,103,98,104,93,118,108,97,98,104,101,98,108,98,121,104,111,94,93,94,110,102,98,104,101,102,104,95,100,100,96,103,99,121,102,103,102,112,100,100,108,104,107,99,107,108,102,96,106,103,103,105,98,107,108,106,93,92,99,94,111,102,98,98,100,120,107,100,111,109,113,93,94,103,113,99,95,122,101,96,119,101,84,102,105,100,97,105,110,105,101,98,104,101,94,102,102,95,100,93,87,103,98,106,102,99,101,113,98,116,110,105,107,115,132,105,101,95,94,108,94,102,105,94,101,102,95,112,101,95,98,97,102,105,102,99,103,110,110,111,91,116,110,102,101,115,106,104,93,105,99,85,107,102,101,97,110,101,98,104,102,103,98,89,98,104,88,97,100,104,104,113,104,96,98,91,102,106,99,106,93,109,107,108,108,104,88,106,99,101,104,99,85,119,107,110,106,110,95,95,103,100,94,99,109,96,109,106,105,97,100,109,92,98,97,94,113,93,81,106,105,101,98,103,96,100,106,100,108,104,101,123,99,102,116,100,95,99,93,80,100,113,104,103,68,100,106,96,105,89,110,104,101,95,92,99,106,104,105,97,100,108,88,108,101,88,108,79,88,99,92,98,99,110,107,113,111,96,107,94,96,112,107,97,91,93,82,94,105,117,95,104,98,106,108,106,102,98,94,100,109,109,90,108,105,98,101,94,97,105,93,103,94,101,91,110,96,117,111,97,108,87,99,103,101,100,99,84,112,94,107,101,100,98,116,103,107,100,95,108,102,101,109,98,109,100,92,87,117,87,103,83,92,103,98,110,80,95,92,109,117,119,104,99,110,92,110,93,100,106, +455.48782,126,111,103,103,96,97,102,106,102,99,96,97,63,98,100,106,74,98,102,105,88,93,102,111,97,95,103,101,103,100,91,98,96,97,101,92,104,93,99,105,99,98,103,102,97,102,106,110,101,112,102,106,97,108,98,101,96,105,92,100,95,89,98,129,113,98,95,117,95,98,94,98,103,104,105,109,101,112,98,102,102,104,109,96,110,95,100,90,95,114,95,99,106,94,110,110,85,101,101,92,113,105,106,104,106,96,98,101,99,93,115,98,103,92,90,104,94,111,108,123,98,101,105,103,119,107,105,94,108,102,99,102,104,109,120,108,92,113,96,100,107,97,95,97,104,92,103,111,84,102,106,99,101,103,116,105,109,105,109,97,102,100,95,121,108,114,108,106,108,114,111,106,98,101,101,98,86,96,106,105,105,89,98,112,102,95,98,94,88,97,95,104,96,99,106,109,104,82,99,97,97,106,105,97,90,102,108,104,109,97,95,108,111,95,106,108,105,97,111,98,99,104,110,100,104,109,99,106,112,99,108,97,109,139,104,102,99,98,103,106,110,97,97,103,86,103,108,103,98,104,106,109,91,114,102,101,100,107,95,104,113,118,114,94,104,104,106,104,99,97,103,98,105,91,100,100,112,112,95,99,107,104,99,102,105,97,120,97,101,88,105,113,100,102,105,104,109,97,105,102,92,99,101,101,101,110,99,104,130,109,85,112,111,108,112,109,109,94,111,95,109,105,108,93,111,95,102,104,106,109,114,95,111,98,99,106,110,100,106,91,98,101,102,103,97,102,91,105,109,113,97,108,92,96,94,115,90,101,107,103,104,107,96,108,95,98,112,95,94,112,100,108,107,105,104,96,93,109,95,107,76,99,104,101,99,117,102,109,97,102,101,101,92,95,116,105,101,92,97,117,101,106,89,115,114,104,107,103,104,100,101,98,106,104,102,92,110,97,101,105,88,93,114,105,98,106,102,105,115,105,101,100,109,101,117,100,99,108,100,102,113,93,92,109,111,100,92,102,98,104,102,105,106,115,94,99,112,113,113,93,95,98,111,101,108,106,109,105,98,99,109,111,95,109,101,94,67,101,107,103,71,113,102,96,104,100,96,87,99,105,114,113,103,98,101,91,99,97,101,95,107,101,107,108,80,99,92,104,124,105,111,95,92,100,100,103,111,110,106,85,96,100,104,94,99,87,109,104,97,106,100,111,102,97,117,102,97,104,108,115,97,98,97,107,108,106,104,108,107,111,96,99,96,91,99,108,129,98,106,108,121,99,98,113,103,102,101,100,108,99,93,102,115,112,102,102,101,106,98,103,98,105,102,103,107,103,100,113,107,104,99,107,100,98,116,105,121,105,95,99,109,89,106,92,96,94,105,91,101,110,100,94,106,97,98,109,109,107,114,108,109,112,102,101,110,91,118,117,106,96,105,101,111,108,105,115,102,98,112,96,113,117,97,108,106,107,98,99,104,84,103,114,96,103,94,95,111,102,98,104,118,110,110,106,99,67,105,99,104,105,112,107,113,98,100,102,104,106,112,96,113,105,104,94,94,99,102,108,112,98,105,94,104,95,109,105,109,108,108,107,102,103,102,97,127,108,93,101,103,99,100,102,91,110,99,111,103,105,106,105,113,95,111,102,107,105,103,112,102,111,109,107,96,109,99,100,116,104,104,104,120,94,117,104,104,114,116,96,106,98,86,98,111,93,117,98,113,94,115,101,96,91,104,101,92,111,99,95,99,102,108,91,99,106,98,100,106,100,116,111,102,89,100,110,101,110,105,108,117,108,100,109,114,116,103,91,98,96,115,104,93,104,108,102,120,107,103,117,104,100,108,100,102,100,117,102,113,113,102,105,98,105,96,106,109,100,95,89,103,118,113,108,119,104,97,104,109,97,110,103,104,110,101,101,97,100,112,103,110,103,113,108,110,109,106,108,107,107,87,105,109,102,98,110,105,100,100,97,105,106,99,101,99,102,95,120,103,89,97,99,116,102,117,93,105,114,101,110,90,107,108,99,94,110,101,97,94,101,103,106,107,83,97,96,96,95,111,100,106,93,96,106,96,99,100,101,99,104,78,102,94,103,112,100,101,107,93,136,96,101,97,102,99,109,104,101,100,92,112,112,109,94,107,114,91,102,98,98,105,108,106,100,108,106,99,97,87,108,106,114,100,106,115,107,103,107,96,95,101,110,95,104,105,92,104,95,89,104,93,107,93,114,100,92,93,101,113,102,96,105,101,98,113,73,105,110,96,101,100,102,98,89,97,98,111,88,112,95,91,97,108,108,101,109,104,117,104,104,112,103,112,113,107,102,104,104,98,99,117,108,89,95,102,98,118,104,100,100,111,98,98,96,102,98,98,115,105,110,105,106,94,111,92,104,102,101,104,99,103,96,107,100,104,95,93,100,82,95,109,93,94,103,98,111,103,99,110,88,103,100,103,116,91,102,108,121,116,104,104,95,104,103,107,105,109,102,109,106,105,103,108,94,107,115,112,104,110,97,102,106,106,110,95,110,104,96,97,91,95,98,104,101,110,102,97,101,105,94,109,101,103,110,109,98,97,112,91,101,112,91,106,113,94,106,107,99,105,112,103,81,100,117,117,106,95,97,103,102,108,94,102,106,117,93,100,111,108,90,101,100,95,103,105,109,97,100,109,103,110,115,113,109,98,104,97,98,110,91,98,85,96,107,117,101,103,105,89,115,107,109,114,111,111,99,101,113,92,104,109,114,106,106,70,98,91,98,111,107,100,101,98,105,105,100,99,111,119,108,102,98,96,108,107,100,119,96,112,105,118,99,117,89,111,105,111,105,108,118,100,109,98,99,116,95,124,111,84,98,96,100,107,93,102,102,109,106,121,103,98,102,95,117,96,100,101,106,92,92,104,107,96,100,99,106,98,116,112,108,111,95,109,119,109,95,110,107,111,102,109,104,113,102,104,114,105,100,110,70,96,95,98,107,90,124,105,103,113,109,103,106,107,116,97,100,101,102,107,107,94,105,103,100,90,110,108,103,95,95,113,103,93,101,106,112,107,105,134,107,110,128,102,104,102,105,104,84,98,107,97,99,113,108,116,107,113,102,107,114,99,104,99,106,105,114,113,91,115,98,110,101,105,109,107,107,113,87,103,111,101,117,92,90,104,97,99,109,93,95,114,98,111,100,111,108,112,104,112,102,113,119,99,91,113,105,96,87,102,94,109,107,107,108,97,102,99,98,106,83,102,103,98,114,107,120,97,92,105,113,107,104,111,106,121,84,98,104,115,100,101,90,98,103,99,107,97,103,92,106,98,102,107,109,100,106,102,112,102,107,109,104,101,98,99,101,112,104,101,96,114,122,100,109,108,110,81,103,98,128,96,101,105,105,96,96,100,113,121,85,95,108,94,93,113,115,109,96,109,82,104,111,99,96,106,98,94,105,105,83,103,105,108,117,107,95,114,99,104,102,116,99,105,102,105,103,102,112,108,115,102,96,103,103,110,95,102,100,112,107,107,99,105,105,108,102,110,96,107,87,95,111,107,99,113,95,112,104,105,112,93,99,119,110,108,98,110,109,109,92,110,83,95,109,102,104,102,105,115,100,118,102,99,122,108,99,97,107,95,96,88,99,98,112,119,102,105,98,106,89,98,122,98,105,91,105,102,110,106,114,120,111,107,110,100,108,94,92,115,106,92,95,102,104,116,98,106,106,106,101,99,97,99,103,95,101,101,122,101,103,104,96,102,98,107,62,96,117,113,122,97,103,111,106,107,98,96,108,117,93,109,99,104,105,94,99,97,96,110,108,110,104,109,108,102,108,100,99,113,103,98,110,105,115,104,112,107,104,113,105,107,117,110,113,116,103,108,89,104,101,94,105,109,100,95,99,104,109,105,98,99,106,96,117,105,99,104,95,113,105,106,104,98,100,105,119,104,105,103,107,104,120,94,102,100,111,96,102,106,103,102,95,89,105,100,104,94,95,107,105,112,105,99,74,89,105,121,94,105,105,106,105,102,111,106,107,103,108,106,100,104,99,105,98,106,109,100,101,103,102,106,101,108,91,96,106,83,93,109,105,95,94,109,113,102,112,106,108,95,111,87,96,100,96,105,108,113,102,105,106,105,99,119,100,95,108,101,113,84,101,107,111,106,102,99,91,100,107,101,104,89,97,101,112,96,108,112,103,109,110,91,110,109,111,106,113,114,110,106,95,114,109,103,95,94,115,98,107,93,104,110,84,97,103,103,110,101,103,98,97,105,105,109,104,104,112,103,83,102,94,104,96,100,99,104,104,107,91,95,100,94,109,104,109,114,107,108,96,109,107,97,109,99,104,109,91,117,89,107,92,115,101,105,104,114,104,99,107,100,101,107,104,107,100,109,109,111,95,93,114,114,98,88,99,98,99,93,95,104,101,101,104,103,101,110,109,100,104,93,103,111,102,101,116,111,100,90,101,103,88,98,97,110,90,110,92,101,102,112,103,107,105,101,111,100,106,106,104,107,110,98,85,88,105,96,67,127,110,111,108,120,88,103,102,104,104,105,102,112,97,102,100,101,108,100,103,109,112,100,100,104,96,98,90,106,102,112,106,104,108,99,96,97,104,113,109,110,94,102,115,94,95,117,95,102,74,103,88,98,101,111,130,88,109,113,105,98,116,109,103,107,109,104,97,104,104,108,109,103,101,100,112,102,98,95,106,101,106,98,92,91,101,99,106,95,103,103,99,110,91,103,115,107,108,113,114,97,106,94,77,95,113,108,105,98,84,112,99,105,94,96,100,104,98,107,98,97,95,104,111,115,116,107,93,100,84,111,114,95,111,94,119,96,106,94,102,96,109,91,95,111,89,97,104,94,117,109,98,90,93,86,96,107,90,106,109,106,100,94,102,101,88, +455.62823,96,97,100,98,119,107,91,91,95,108,97,96,94,97,102,100,103,105,100,110,106,91,92,116,99,97,88,95,93,98,101,94,115,95,101,98,95,96,99,98,96,95,83,104,91,104,104,106,103,91,91,101,98,94,113,97,109,82,119,94,102,118,99,97,101,107,94,98,71,103,102,95,94,112,106,101,104,93,98,107,97,106,101,102,100,102,107,109,96,97,110,113,94,111,92,103,88,95,76,104,99,86,78,84,96,79,101,96,109,104,102,112,93,102,114,99,102,108,110,96,111,107,106,110,101,106,86,92,107,102,99,101,102,108,99,102,104,116,93,117,101,108,99,110,103,93,89,113,87,105,102,109,103,91,89,105,103,102,98,102,102,105,87,101,115,94,107,100,110,109,94,98,100,94,107,115,103,100,116,108,118,99,104,106,101,101,100,92,119,99,100,119,107,98,87,110,102,101,99,100,115,105,99,113,108,118,98,102,99,116,98,102,99,108,101,111,107,103,88,98,100,103,107,104,105,90,100,103,106,98,96,101,102,102,110,97,112,97,99,111,108,98,93,102,106,109,98,107,95,89,94,100,90,101,99,106,112,106,94,98,87,95,107,92,100,103,101,105,104,96,110,99,104,92,99,98,114,106,100,109,105,103,109,99,88,99,91,98,100,114,99,106,91,106,101,112,100,95,94,104,110,103,106,98,91,114,104,102,103,103,90,103,99,100,99,92,98,103,92,117,94,99,94,98,94,117,99,97,105,97,113,94,105,95,105,102,98,109,104,102,94,103,87,113,108,88,117,101,96,111,106,99,98,103,104,112,114,108,101,107,95,102,94,93,95,109,99,105,94,104,112,102,105,87,100,100,113,112,119,99,112,99,100,102,116,95,99,97,96,95,100,97,91,99,104,104,97,103,107,107,102,104,93,96,103,100,102,103,98,104,99,94,104,114,95,103,100,102,107,103,103,85,112,105,94,106,103,94,100,102,95,103,109,107,91,96,99,100,81,99,91,104,110,107,79,101,96,100,99,116,102,105,106,104,99,105,101,110,113,100,100,99,112,109,103,104,100,102,84,98,105,103,104,93,96,100,90,102,114,100,97,106,108,93,95,106,102,121,97,123,102,104,107,97,94,101,99,102,96,95,108,99,110,110,109,94,87,105,100,114,111,102,103,105,106,96,99,105,105,104,111,106,90,106,110,116,107,114,106,104,100,107,96,97,103,100,102,109,111,109,102,104,109,111,112,101,107,105,104,94,108,116,102,116,97,109,109,99,108,95,104,98,106,112,95,103,124,108,105,98,108,102,101,125,95,97,99,103,106,99,112,104,98,98,110,103,98,110,110,104,83,101,110,88,111,110,98,96,102,110,109,101,108,101,99,103,100,95,100,99,97,95,105,114,103,92,107,107,106,90,97,112,100,102,105,99,105,98,95,110,107,98,87,106,91,91,101,108,104,100,109,106,104,89,98,108,104,102,89,99,95,96,133,97,107,113,107,121,109,88,109,102,94,108,92,106,109,105,94,94,103,100,104,104,103,102,111,92,138,100,100,114,101,101,96,96,96,99,103,78,101,99,102,86,101,102,94,112,108,99,109,105,120,113,105,114,100,88,100,111,104,102,98,92,102,116,107,86,100,101,111,102,92,104,101,106,104,110,94,120,105,114,101,102,95,89,116,101,98,103,115,96,91,97,104,96,104,103,86,98,108,89,103,98,111,103,109,101,97,96,109,107,100,113,110,103,102,99,106,100,96,107,104,106,101,103,94,108,101,107,98,99,96,110,97,100,105,111,104,106,101,102,102,106,111,110,101,98,92,112,92,100,109,113,103,103,101,113,95,97,110,102,102,104,101,101,97,86,106,110,98,114,108,112,102,95,105,103,113,103,115,103,108,95,112,100,102,112,111,100,94,109,94,109,106,103,99,110,94,96,99,105,101,109,91,111,99,108,100,99,98,101,107,107,106,103,106,112,105,107,107,96,112,105,101,102,115,110,105,94,104,98,103,97,107,99,101,100,109,102,102,107,101,102,109,104,102,105,116,105,92,114,111,105,113,112,100,97,93,108,95,110,104,95,102,99,112,97,114,103,111,110,113,102,103,102,104,100,104,111,107,102,103,100,103,91,93,91,109,120,106,98,100,99,104,106,99,82,111,99,100,99,99,90,115,102,125,112,111,87,98,89,103,106,117,81,90,95,95,111,108,111,100,93,98,108,99,112,104,95,105,106,111,117,109,97,102,111,105,84,115,92,112,105,96,106,75,101,107,97,99,90,92,110,108,103,98,108,126,110,98,82,110,102,96,100,104,106,103,83,107,99,108,70,98,104,92,107,109,98,98,104,97,96,104,87,94,104,109,86,100,98,106,106,111,104,102,93,90,109,108,100,99,107,108,101,105,67,115,100,84,106,105,100,95,101,110,106,89,98,96,101,82,112,103,99,101,103,89,98,107,116,103,112,103,105,96,91,104,91,111,102,111,101,97,120,100,111,99,105,98,115,100,98,111,114,107,105,114,97,112,108,76,94,103,106,109,102,98,107,100,97,91,94,97,81,87,103,106,94,107,115,106,106,111,98,108,101,101,91,100,102,101,109,108,87,103,100,116,88,107,99,112,107,103,110,110,117,100,103,106,101,99,91,101,108,94,102,102,105,104,100,97,93,108,111,104,93,105,103,111,107,85,98,100,115,111,98,113,102,98,122,103,115,98,98,115,95,96,100,104,108,122,98,108,107,110,121,91,107,106,114,99,106,101,113,106,102,98,103,101,92,90,97,103,105,111,104,102,107,102,112,71,95,104,104,117,107,112,100,96,103,111,94,112,104,100,106,99,107,103,105,103,100,91,118,106,102,111,108,104,113,83,113,104,110,106,101,91,99,130,105,98,105,99,97,98,105,99,109,103,111,109,107,94,108,101,101,107,109,101,110,95,105,107,102,117,107,108,100,102,95,92,110,107,96,105,100,94,106,109,116,109,88,100,92,106,102,93,110,104,101,107,102,110,106,96,103,92,111,107,97,92,112,108,85,107,115,92,102,110,99,104,92,102,108,113,102,112,83,100,104,111,113,121,106,103,108,106,112,100,127,104,118,108,102,103,112,111,91,112,112,119,106,104,115,92,116,100,105,99,107,106,97,101,104,107,108,111,102,94,110,88,103,111,121,112,106,118,109,102,103,107,83,104,103,103,105,109,111,110,108,97,105,104,77,103,97,117,94,108,99,99,115,113,105,99,100,102,91,99,113,101,110,109,88,103,98,101,110,94,98,100,99,106,104,106,102,111,99,112,92,96,112,95,113,116,108,104,100,97,85,109,88,97,110,100,103,100,91,106,107,100,108,99,87,94,120,106,108,91,105,106,104,102,102,104,100,117,102,103,102,97,96,98,104,111,98,111,98,96,114,121,101,110,108,100,97,101,103,103,118,99,104,110,109,102,81,99,100,100,91,105,94,113,104,102,95,96,101,100,100,102,107,103,111,106,106,103,100,104,115,103,113,110,101,105,101,116,121,104,88,102,105,115,100,103,107,105,103,96,103,111,101,105,110,96,105,104,103,119,106,98,110,113,115,98,116,116,76,104,84,87,103,109,113,99,100,105,91,99,105,116,96,96,102,106,107,102,112,99,109,109,88,105,101,108,96,94,106,106,109,110,110,109,99,100,102,93,94,90,109,113,99,113,97,105,106,107,99,114,96,117,108,102,108,105,105,105,89,84,101,99,97,104,111,123,97,99,100,102,123,109,83,102,103,104,101,108,94,113,108,108,103,103,109,106,96,102,108,98,115,104,102,104,92,100,105,106,107,110,108,104,99,83,106,111,111,102,109,95,106,98,102,111,102,114,106,106,116,94,102,93,113,105,99,100,107,104,90,90,93,93,83,102,104,104,102,97,110,108,103,99,102,109,111,114,105,106,89,110,100,104,98,106,109,105,102,116,100,96,100,105,102,95,105,116,102,102,98,110,106,102,113,101,108,110,101,100,98,106,97,98,126,111,102,94,100,105,105,106,104,102,107,104,98,96,101,126,101,100,110,104,87,116,100,99,106,115,110,107,92,104,104,96,103,113,112,99,107,99,118,88,100,111,103,103,107,110,98,99,108,99,101,113,107,94,111,109,131,98,105,117,108,109,113,94,111,105,102,110,110,109,103,99,112,110,102,100,90,94,99,108,105,105,106,105,90,108,109,102,102,111,103,110,97,98,108,98,100,106,100,99,92,99,94,102,114,105,106,101,102,112,113,106,92,70,103,106,100,99,104,97,100,102,97,110,100,104,103,115,104,96,100,109,89,102,102,102,97,112,103,88,100,107,109,102,95,105,106,108,105,103,95,101,94,108,106,98,100,99,110,112,125,99,104,102,108,109,105,103,99,105,111,113,88,99,119,106,98,111,107,93,98,102,100,99,94,102,106,110,100,92,112,109,88,97,109,101,105,98,105,111,95,115,71,101,107,100,101,96,87,109,104,98,102,107,111,97,103,98,109,96,101,98,94,100,106,99,103,97,101,86,102,112,101,110,106,107,98,107,107,116,100,99,91,122,101,99,93,107,103,105,102,119,109,97,115,93,104,102,80,100,93,106,95,99,92,109,107,93,87,87,113,106,100,95,117,102,98,120,95,95,104,81,103,99,83,109,96,95,112,107,105,97,106,103,105,95,112,101,105,99,104,104,99,111,108,129,97,100,110,109,105,104,104,90,105,102,104,94,106,95,99,100,103,98,87,106,119,106,105,98,102,96,106,90,104,101,106,101,112,109,104,97,91,109,108,106,111,117,94,96,93,108,95,102,107,105,113,110,90,88,106,104,91,109,97,82,96,101,101,101,94,87,105,92,116,109,103,93,116,121,102,90,102,90,99,92,99,116,103,100,109,99,99,100,103,96,86, +455.76865,99,95,97,110,105,103,107,99,95,101,100,98,99,96,100,111,95,101,100,107,90,95,108,101,103,96,100,99,108,92,129,99,93,113,120,90,110,104,102,100,98,109,103,111,110,104,92,110,102,108,100,113,113,109,112,100,99,93,103,89,112,113,88,94,101,100,92,93,106,106,102,97,99,79,102,113,99,106,91,101,97,94,99,106,107,83,106,96,117,96,111,95,90,89,94,103,107,101,83,93,93,95,106,119,111,99,110,93,104,109,100,115,112,108,104,95,110,103,100,96,109,98,111,107,111,110,113,117,108,105,102,100,97,106,108,95,101,107,110,108,83,103,105,108,92,104,107,114,93,96,94,102,99,102,93,85,98,100,107,107,102,91,93,90,107,91,93,91,98,96,103,95,112,91,98,95,109,90,95,103,104,113,102,100,106,90,94,102,105,99,95,101,96,104,106,113,101,104,96,106,98,95,104,97,96,104,98,97,114,103,98,99,109,89,96,103,99,118,99,98,97,106,98,106,102,106,103,113,110,102,103,107,104,99,107,114,101,104,98,106,104,110,104,127,103,110,113,117,106,117,91,93,99,68,103,99,105,106,106,108,105,103,87,96,106,106,106,105,106,106,100,114,97,107,97,107,105,120,94,107,94,98,109,109,105,98,108,102,98,108,103,107,107,97,108,109,123,97,100,102,103,105,113,110,106,109,103,94,96,106,75,107,101,112,86,98,104,107,95,106,105,93,86,108,110,99,86,91,104,106,102,106,119,101,110,96,97,105,101,104,92,100,95,101,97,112,101,94,98,97,104,98,113,110,111,95,104,113,116,103,109,100,103,94,95,100,107,99,96,104,103,111,117,111,112,101,109,98,101,112,106,139,103,102,105,98,107,94,103,84,111,97,83,129,98,104,92,96,105,113,100,112,98,99,93,100,112,99,98,101,93,97,108,106,100,115,101,109,93,98,100,113,108,66,96,90,95,103,107,117,105,95,107,102,93,114,101,120,92,103,114,95,101,96,103,100,91,95,99,109,101,100,101,99,105,100,100,74,109,83,100,93,109,87,108,105,109,104,100,101,110,110,99,98,100,101,100,117,100,88,100,113,117,105,71,106,116,93,102,95,106,95,98,101,104,100,107,97,110,85,110,95,100,104,110,108,93,100,103,104,102,101,105,112,107,108,105,92,101,87,108,103,101,104,97,97,107,114,106,113,100,100,92,116,106,107,110,99,110,101,105,105,86,102,100,104,95,98,108,106,112,82,103,104,102,83,101,107,92,99,110,103,107,105,102,106,107,109,90,94,102,105,104,115,100,109,107,92,108,108,99,107,97,95,102,100,98,102,107,103,103,99,92,97,101,94,104,107,112,109,98,100,121,105,102,88,95,97,99,112,95,102,81,107,111,103,97,98,99,101,109,96,101,129,106,98,104,109,104,110,99,95,94,108,97,102,104,100,94,99,99,90,107,110,110,105,103,110,93,111,97,96,106,103,114,98,116,104,99,100,97,106,100,98,105,102,102,99,104,98,119,107,106,104,93,109,103,109,105,101,100,108,95,86,104,105,95,106,100,101,116,112,100,100,99,112,99,94,101,101,101,96,107,100,96,88,92,108,96,100,104,95,117,84,103,98,91,101,93,94,97,116,104,103,93,109,114,102,97,99,102,104,104,106,101,97,95,96,111,100,113,109,107,111,101,101,96,114,107,108,102,95,105,94,113,103,102,102,90,101,99,113,99,99,97,107,97,108,109,108,104,109,108,100,105,117,93,110,90,99,103,108,108,105,112,106,98,107,114,101,92,89,106,126,103,102,109,92,112,95,100,106,110,105,110,105,102,94,107,98,106,113,91,109,105,115,112,96,102,104,106,103,107,103,111,99,107,104,108,98,94,103,118,98,100,104,98,87,104,107,98,110,112,116,103,95,114,100,111,97,98,94,96,96,104,105,101,113,112,95,90,99,103,117,99,99,96,102,109,111,102,110,103,104,100,104,102,97,105,102,103,99,84,100,102,110,90,110,105,101,112,113,108,119,102,99,101,100,95,108,97,117,108,102,98,82,97,124,106,99,100,103,102,103,112,105,94,105,106,101,95,114,105,109,88,95,112,95,97,101,101,110,106,104,92,103,91,98,98,109,107,104,107,105,105,107,102,96,100,104,109,97,106,107,107,110,101,71,98,101,100,120,104,98,106,102,91,105,107,107,107,101,114,107,100,102,92,92,101,106,98,118,99,102,110,89,115,107,99,103,101,94,109,100,100,73,99,97,103,110,93,112,96,88,117,98,115,86,92,102,101,114,94,115,92,104,104,105,106,103,110,105,104,98,104,109,105,100,103,105,94,96,108,68,108,109,100,97,97,108,104,106,121,102,99,107,105,98,108,103,110,105,98,114,109,102,102,103,99,100,102,111,110,92,95,95,93,114,94,91,100,106,99,101,95,100,100,113,105,107,109,99,87,120,113,102,106,88,108,117,102,125,110,102,92,110,97,103,104,108,108,105,96,102,90,105,108,124,111,112,106,110,107,103,94,99,106,94,101,105,102,99,107,106,98,92,91,107,111,99,106,119,101,84,110,91,106,91,103,90,95,103,99,111,94,93,105,107,100,92,108,111,114,99,107,104,109,104,106,115,91,93,109,102,102,113,96,99,120,102,98,104,113,108,103,104,109,80,117,105,99,99,91,113,96,108,115,104,110,109,122,100,116,103,106,102,94,101,104,103,95,97,112,104,86,96,102,91,84,104,101,100,92,123,103,96,98,112,100,105,102,112,99,91,113,96,94,105,97,95,106,105,101,103,116,108,94,92,99,109,103,103,101,99,100,102,98,102,116,114,104,98,107,99,104,105,113,102,107,107,106,108,105,91,94,98,84,103,99,105,116,106,112,114,97,106,117,106,109,108,117,80,110,99,106,109,97,91,103,95,109,104,95,108,108,111,106,95,109,108,100,103,94,108,101,106,105,110,97,98,101,104,112,106,104,104,111,100,104,102,102,112,105,107,98,101,100,99,99,106,104,97,99,99,106,104,99,104,91,83,96,121,109,98,97,106,105,98,106,101,105,101,112,102,98,95,113,116,102,96,105,113,109,103,109,79,107,116,103,93,104,104,103,109,93,103,110,114,95,102,108,93,112,103,107,95,124,91,99,93,91,98,114,114,101,99,106,97,111,92,91,100,83,87,105,96,113,95,116,99,107,106,98,96,109,98,103,79,92,99,99,91,90,107,108,104,101,97,107,100,113,107,113,108,117,97,84,109,104,99,94,95,104,113,94,98,103,92,102,104,100,102,112,99,88,108,102,100,101,107,104,109,101,102,110,98,93,103,113,101,97,112,101,105,90,104,94,87,117,96,110,108,101,101,97,106,95,102,100,109,101,115,105,97,108,99,108,108,125,98,113,101,101,102,102,99,125,108,103,116,99,102,106,103,103,102,102,98,107,96,106,106,99,92,104,105,104,101,91,101,100,102,109,83,97,95,113,125,109,114,99,109,103,107,105,108,111,109,103,110,104,105,105,112,105,107,100,102,101,105,104,107,102,106,106,97,110,68,96,124,106,99,113,93,100,93,107,100,96,101,108,107,98,105,101,100,100,109,93,96,107,87,101,102,108,81,94,97,101,110,105,117,91,95,98,98,111,99,106,103,99,106,103,119,106,109,98,106,96,103,102,101,102,101,100,99,100,114,102,107,97,101,102,121,105,101,82,108,96,105,105,99,103,106,95,98,101,108,109,108,103,107,97,100,108,104,106,97,94,110,109,110,96,110,98,95,86,121,101,95,96,109,96,92,110,108,117,108,98,106,99,109,101,109,101,102,91,102,104,101,96,104,112,98,102,106,92,100,99,103,106,114,105,107,108,102,98,105,97,102,95,80,116,83,100,112,103,97,93,112,92,112,105,99,103,101,111,100,86,102,115,90,106,104,95,108,108,115,81,97,109,111,102,102,114,86,100,100,95,112,104,103,102,107,101,95,92,106,106,93,95,94,112,97,96,91,96,104,102,108,105,101,119,97,102,88,113,101,101,112,101,101,87,110,111,116,119,92,110,104,93,113,111,102,110,82,97,101,103,97,105,104,107,111,104,103,101,101,95,94,107,107,111,107,107,119,104,103,95,108,89,95,98,101,88,107,111,123,104,124,115,103,121,99,105,120,113,108,85,98,95,107,112,105,106,111,91,116,98,101,106,103,111,98,106,114,100,101,105,101,108,109,136,109,101,100,107,111,109,92,99,111,103,104,101,100,97,106,103,96,109,103,100,109,105,104,101,89,89,103,106,96,100,107,102,107,92,95,101,112,117,101,108,112,113,98,98,95,104,96,100,95,101,79,103,111,108,103,105,100,94,102,107,100,101,130,111,105,104,104,99,106,99,111,100,99,104,72,107,79,101,96,89,83,113,102,101,98,91,106,106,90,104,106,94,103,89,112,93,99,101,108,104,102,101,89,100,106,102,99,94,91,94,92,102,93,91,106,107,100,99,102,87,110,102,106,96,103,98,88,98,99,117,91,82,116,93,111,105,104,99,93,92,91,99,99,98,90,94,105,109,111,106,113,112,108,106,103,108,101,100,95,94,124,99,113,111,110,89,109,108,102,111,92,117,125,100,102,96,108,104,117,103,108,106,97,113,103,98,98,98,98,101,112,114,102,116,89,103,111,102,87,105,101,121,92,121,114,97,103,101,109,108,110,112,105,94,94,113,93,100,106,100,107,94,92,104,113,113,108,113,104,113,121,101,117,102,110,101,97,106,101,91,101,81,117,91,108,98,92,85,104,92,104,105,125,103,109,95,105,100,100,108,98,118,89,112,110,93,104,90,102,117,105,93,95,89,98,101,102,115,108,100,104,104,93,97,110,107,84,120,105,101,94,105,109,113,96,101,93, +455.90909,104,120,90,114,87,112,105,113,100,102,89,107,103,109,98,130,92,111,103,101,106,111,117,98,108,104,101,100,96,118,87,101,97,101,108,98,111,105,100,106,97,104,111,102,112,109,103,98,91,111,91,99,101,97,97,88,104,87,104,67,98,95,107,96,108,103,90,95,98,72,102,104,109,102,90,119,94,96,105,105,96,102,104,102,110,95,95,108,98,97,119,103,102,101,82,101,102,88,101,93,105,99,94,101,114,100,121,102,96,99,94,98,101,102,102,101,103,102,103,111,96,96,118,101,116,106,105,94,108,127,92,104,79,101,104,105,102,103,104,101,104,99,77,98,112,101,96,108,92,96,102,97,104,99,99,112,101,106,103,95,94,88,128,104,101,103,96,98,102,105,99,101,99,99,88,100,104,101,117,110,102,100,107,106,101,92,109,115,96,100,98,101,99,106,112,105,101,104,103,99,100,100,112,95,97,105,98,109,103,98,107,103,104,110,105,97,92,100,102,94,102,111,103,103,101,106,106,105,102,102,102,108,94,107,97,109,110,109,72,100,95,99,108,90,109,91,95,93,100,120,107,106,101,109,101,105,79,102,102,114,93,117,105,93,93,104,105,112,83,103,86,104,106,98,96,99,97,102,101,104,109,100,99,108,98,99,77,110,73,102,108,117,108,105,105,110,75,105,102,107,102,104,105,118,91,109,102,94,108,79,90,120,84,107,112,113,110,105,114,104,109,101,106,110,98,100,103,95,108,112,112,107,103,109,96,106,107,107,102,105,106,107,100,109,106,101,97,96,101,100,98,91,107,103,102,113,118,94,92,97,97,109,95,112,104,97,109,99,102,111,102,97,95,104,97,94,100,101,104,104,101,100,79,98,105,95,92,105,110,104,113,87,108,112,109,105,105,111,96,101,94,109,105,98,112,101,109,101,98,94,96,103,101,102,120,100,106,101,109,99,99,87,97,97,110,106,97,107,110,114,101,105,96,95,113,99,104,107,96,84,112,102,105,109,105,105,90,98,108,103,94,101,99,94,111,104,109,110,99,106,95,105,110,119,103,110,110,98,101,103,93,100,103,104,91,106,102,107,114,105,100,109,118,99,116,99,98,108,109,100,106,102,101,100,86,104,97,83,113,97,103,109,106,102,92,106,96,108,94,102,97,109,107,100,101,107,108,96,104,106,96,97,105,102,117,102,104,102,110,114,95,117,102,100,96,107,102,99,100,104,131,102,101,95,111,101,104,108,109,109,103,95,109,95,109,101,99,120,107,89,95,95,105,106,112,83,106,118,109,110,111,102,112,101,103,103,100,91,113,103,110,90,103,103,94,104,82,106,99,98,112,104,98,90,109,106,94,114,114,106,113,105,110,100,96,104,94,97,103,108,107,100,112,97,113,94,97,100,125,95,107,117,98,99,108,108,108,113,108,118,103,109,104,106,73,108,97,89,109,109,103,102,98,100,99,102,90,95,95,87,104,99,99,104,108,100,107,101,83,97,109,110,94,99,102,101,97,97,102,94,105,113,107,97,101,105,111,110,99,102,107,114,100,92,105,102,106,107,115,115,101,107,102,110,91,110,105,91,106,76,96,92,118,116,96,118,115,103,79,108,95,105,111,107,85,95,105,105,98,100,104,98,93,118,92,98,113,102,109,110,108,94,93,106,100,104,102,113,115,107,112,86,91,120,102,106,95,95,95,110,101,100,112,110,109,92,104,101,88,94,104,101,94,95,97,105,101,80,103,95,101,93,113,98,111,105,105,99,108,92,97,95,109,101,96,111,101,117,107,94,92,99,102,102,96,102,104,94,101,118,93,91,101,101,103,100,116,101,92,112,119,111,95,95,95,103,104,94,90,110,102,105,103,102,83,97,111,95,104,103,104,105,115,99,113,89,102,98,100,94,79,100,90,96,109,105,92,106,97,106,91,92,97,97,99,100,100,110,113,93,102,99,96,112,105,101,106,113,107,109,108,111,94,108,89,102,101,105,112,98,98,107,107,104,104,107,97,107,103,93,106,93,92,102,101,98,105,100,114,87,106,98,88,101,117,101,98,88,96,106,104,105,105,100,98,100,85,100,107,100,109,99,111,113,105,93,105,106,98,96,109,106,100,90,101,97,124,100,105,102,106,102,110,101,106,101,98,98,108,99,110,96,103,113,111,102,103,114,96,104,106,100,99,94,97,107,95,105,112,104,98,96,111,91,98,105,111,101,107,99,120,90,111,80,107,103,93,109,103,97,105,107,106,109,99,93,128,95,104,97,100,106,101,114,90,111,103,101,103,106,89,95,102,95,101,111,110,101,95,108,112,104,107,102,74,110,94,107,103,99,98,95,115,99,105,88,98,110,79,97,93,98,101,106,89,102,105,108,102,115,107,74,103,108,114,100,108,92,112,115,99,99,84,89,104,108,89,91,108,107,109,105,99,114,105,103,96,97,103,109,97,99,97,111,97,111,109,99,106,96,105,125,97,85,100,108,91,102,103,108,106,102,99,91,113,104,102,105,84,93,92,106,99,109,101,107,102,111,99,105,113,96,100,102,104,76,102,123,111,106,104,112,103,105,106,110,106,74,100,96,109,105,101,108,110,136,100,106,110,93,105,100,114,94,112,106,106,104,95,100,77,84,104,95,104,95,101,99,99,100,110,97,110,96,106,100,95,95,108,107,113,112,92,110,97,113,92,99,108,102,106,100,117,94,98,102,101,95,101,114,117,88,101,98,106,89,106,105,103,100,103,108,100,109,100,105,110,99,102,107,112,102,101,104,116,97,100,113,106,92,98,102,102,107,106,94,93,96,86,117,110,107,112,100,103,133,107,96,96,109,101,105,108,113,89,97,99,103,108,98,98,108,110,100,102,102,101,105,99,97,98,104,98,121,100,100,102,100,115,108,107,117,100,116,102,107,116,105,115,117,97,102,100,101,104,103,100,105,106,113,105,107,105,102,104,95,101,102,102,106,108,96,63,90,95,110,103,94,104,112,101,112,104,95,100,100,95,103,106,102,97,112,106,102,115,107,111,109,98,99,104,116,87,105,99,91,98,95,103,110,113,95,102,101,117,103,112,110,101,99,75,107,125,108,110,98,101,92,100,107,95,99,113,100,105,106,109,112,98,96,96,105,106,92,108,91,96,102,109,86,101,111,74,93,97,103,115,96,103,119,98,92,98,107,102,96,108,104,100,101,84,99,108,111,110,110,96,108,101,99,106,105,101,104,101,99,108,91,113,77,96,113,101,98,124,105,100,98,107,99,90,106,103,85,99,95,113,110,109,107,95,106,109,111,99,98,102,119,95,95,112,113,102,106,103,114,98,91,99,96,104,109,102,99,111,107,102,99,106,95,96,104,100,105,106,102,102,101,102,94,105,109,95,98,87,105,109,118,94,94,94,95,101,96,99,99,106,103,103,105,111,99,108,91,126,107,102,103,111,109,95,103,101,94,102,98,94,126,113,112,98,110,101,105,88,102,113,110,88,93,103,102,104,106,110,96,90,99,103,101,101,96,121,100,97,107,109,112,97,111,93,112,105,100,107,115,97,104,95,123,97,98,110,84,101,109,113,100,103,86,86,104,99,101,97,97,99,110,100,96,104,108,96,94,105,75,121,105,113,110,92,109,111,105,100,101,99,98,101,103,99,101,106,96,97,104,117,102,100,95,98,112,104,107,106,103,101,103,94,93,99,112,101,110,95,103,108,104,105,87,108,100,108,108,102,105,109,96,104,95,110,91,88,94,107,95,101,108,99,99,102,98,99,104,100,105,102,102,106,94,98,108,94,111,103,86,101,100,87,97,107,99,102,104,99,106,105,98,110,105,99,117,94,102,104,106,108,110,117,98,110,109,103,109,97,108,110,107,94,109,89,104,103,106,113,107,102,101,96,98,95,97,108,95,113,96,114,107,106,99,99,90,107,99,95,104,108,107,104,98,110,103,99,107,111,108,99,102,107,102,110,102,113,94,99,95,88,107,93,99,103,118,105,93,104,101,101,110,92,101,88,102,98,109,103,101,95,92,100,92,94,102,95,94,87,74,81,109,101,102,97,87,103,98,105,101,93,111,92,101,92,98,97,110,104,107,92,105,99,102,96,94,107,97,102,101,106,94,101,103,109,86,93,95,98,101,124,105,104,102,102,100,101,97,108,110,106,99,94,98,99,111,106,101,111,125,102,120,104,105,118,105,101,101,106,96,109,90,98,110,102,106,92,98,107,102,113,111,100,122,107,98,118,86,91,100,97,100,91,91,101,91,127,102,91,111,107,105,126,104,97,95,95,114,100,91,99,103,95,107,91,101,98,109,96,101,103,103,96,106,107,105,112,96,85,91,107,99,99,94,112,99,103,106,96,102,113,99,93,96,96,107,100,105,91,109,111,102,102,106,94,98,103,109,102,93,85,110,106,98,107,106,101,96,92,93,96,104,104,109,109,108,112,103,101,102,97,105,113,104,94,94,104,95,98,124,98,109,80,105,103,105,98,94,106,98,109,91,93,96,92,100,94,95,95,93,100,109,105,98,116,101,95,117,104,100,97,105,111,103,108,104,100,107,105,97,107,94,96,106,102,97,103,108,111,92,108,90,100,101,95,80,113,98,113,99,96,102,95,106,106,96,104,94,106,107,103,107,113,110,92,99,96,100,99,103,97,107,84,98,119,93,108,113,91,108,108,84,91,92,106,108,108,104,106,95,102,101,102,94,85,91,88,96,103,97,105,88,104,113,101,111,93,95,83,98,90,99,108,103,112,118,100,110,92,100,108,106,98,81,97,101,81,65,91,96,101,105,100,117,98,98,104,99,121,95,98,97,101,97,111,92,89,105,102,100,101,100,111,85,103,115,102,98,104,98,98,99,93,88,104,109,99,97,107,93,91,108,78,82, +456.0495,113,105,99,112,102,104,106,116,107,97,102,107,110,89,105,102,99,107,101,108,103,98,109,108,96,108,96,102,104,111,96,99,96,87,119,92,87,104,108,87,96,99,110,92,97,118,101,77,95,95,92,111,115,97,112,93,117,95,124,103,113,137,114,108,94,111,103,83,113,91,95,109,77,98,105,106,86,112,104,112,101,122,119,111,92,101,96,113,105,92,96,99,106,102,106,108,110,115,96,94,86,96,95,113,91,91,105,101,95,97,103,110,95,106,99,108,98,94,93,95,91,94,104,104,96,107,101,100,82,105,106,107,110,100,105,98,129,109,104,99,95,115,110,99,90,107,114,104,103,109,91,85,105,108,108,101,102,101,107,91,103,95,109,102,111,101,101,106,113,100,100,104,104,113,107,102,98,94,98,107,105,99,101,80,101,98,99,88,104,104,92,108,101,95,99,103,101,113,109,106,102,113,91,105,89,94,116,108,103,118,94,95,101,107,108,101,87,111,97,108,112,105,95,95,94,104,108,112,95,110,93,114,92,98,108,109,98,104,100,112,113,113,111,98,108,102,105,105,100,105,100,105,95,129,89,114,100,103,111,102,96,91,104,103,102,105,96,108,99,105,103,106,108,98,107,94,92,101,92,102,91,99,110,102,101,97,94,101,110,93,97,104,100,100,104,103,97,106,99,99,104,113,109,113,96,109,112,110,111,102,81,101,97,115,85,102,69,100,95,104,104,93,102,101,109,82,86,96,112,103,100,93,107,110,119,101,99,108,101,102,99,106,93,104,100,96,95,112,103,103,112,106,94,99,110,104,109,101,107,111,104,102,95,96,95,105,113,101,90,108,103,100,115,108,85,108,101,110,99,110,91,103,97,109,105,85,108,101,97,105,98,85,100,109,96,119,76,107,97,105,99,96,96,93,103,100,106,108,104,108,104,110,104,107,107,95,96,107,105,97,99,107,100,108,104,89,101,109,96,110,105,107,96,106,109,97,108,95,96,102,105,96,116,98,99,95,107,102,103,99,102,95,116,102,103,109,98,114,102,105,100,106,96,104,104,124,105,119,104,100,94,91,106,104,102,99,96,91,104,113,91,99,116,80,94,102,101,91,100,97,99,100,99,100,101,109,87,113,96,108,113,103,97,100,101,102,96,106,104,101,108,98,94,102,101,92,115,97,97,88,97,110,98,105,101,100,100,99,102,119,113,99,108,96,102,110,97,87,121,113,112,102,102,90,107,103,102,100,99,102,103,95,95,100,99,94,119,104,110,110,107,94,108,122,95,100,106,103,94,104,102,103,105,95,102,95,114,90,99,98,100,99,101,94,107,108,88,98,75,101,111,106,108,98,103,114,94,102,109,115,104,105,99,109,100,112,99,106,118,109,104,97,125,113,100,102,106,100,103,95,96,108,104,98,117,101,103,107,96,105,114,92,91,107,93,92,89,102,102,106,109,106,105,104,113,112,105,98,100,117,97,95,93,102,115,111,104,108,114,103,103,90,105,95,93,106,100,98,108,104,110,103,101,96,103,116,98,108,104,95,101,105,100,106,75,100,97,78,91,115,106,103,103,99,107,101,94,100,106,92,103,109,101,86,95,119,103,102,98,101,104,96,91,87,96,104,99,110,92,95,99,108,109,105,114,104,98,104,112,104,96,101,93,102,90,99,123,95,108,104,114,106,105,105,109,113,109,100,102,103,101,96,101,108,101,102,108,107,114,111,100,104,88,117,96,105,106,104,97,99,103,107,102,99,96,111,107,107,87,95,104,110,109,103,97,109,114,96,92,108,113,102,112,110,90,95,95,101,100,100,95,97,94,94,99,104,97,107,109,100,105,103,102,106,116,112,104,119,104,93,104,113,95,111,97,98,101,96,100,97,110,99,111,105,96,98,107,112,101,103,102,104,106,101,91,92,105,98,98,94,105,101,84,108,91,98,94,105,92,95,100,103,107,101,113,112,108,84,105,91,105,105,110,102,104,94,113,106,103,105,108,97,116,100,114,121,110,104,104,99,106,104,99,104,89,109,108,109,106,109,105,108,108,91,105,105,98,99,91,100,93,102,125,99,110,96,100,112,108,105,105,106,104,135,106,107,101,100,95,104,93,94,100,106,95,104,90,97,104,105,100,96,95,124,109,99,88,99,99,94,105,104,103,101,113,95,102,94,89,109,140,121,105,111,116,108,102,102,102,110,118,99,99,96,98,88,98,97,94,93,94,95,94,108,109,69,103,104,113,82,92,109,106,105,99,96,82,99,104,105,101,93,108,98,93,109,106,105,106,95,97,104,98,95,105,97,92,95,95,108,103,109,103,82,107,101,110,101,95,97,96,99,105,97,115,98,97,98,108,106,98,99,104,90,97,94,114,89,114,100,101,110,109,121,92,103,96,87,94,96,98,102,100,111,106,106,62,99,94,91,97,96,103,96,103,102,88,123,102,103,119,94,103,120,107,122,111,102,100,113,126,104,106,100,102,105,109,101,106,108,105,110,105,112,105,103,102,99,80,86,113,91,139,111,109,105,106,92,98,89,110,107,108,102,100,90,102,109,100,103,107,99,95,90,136,116,112,99,104,101,103,102,98,120,98,103,111,106,102,112,102,96,112,85,109,93,110,98,99,106,103,103,100,76,106,111,106,104,111,97,98,112,109,99,90,105,100,102,89,102,95,108,97,101,98,105,103,101,121,103,96,111,103,108,98,107,91,105,115,120,115,107,96,103,102,114,101,97,102,107,101,102,101,112,73,110,107,103,97,103,106,102,91,108,103,100,96,101,104,88,98,112,75,98,116,105,111,110,110,99,109,103,102,97,102,104,105,108,77,91,92,115,93,96,109,108,108,103,124,110,107,98,106,99,101,111,109,110,95,98,101,93,108,101,124,101,113,110,99,117,110,95,110,104,96,99,97,103,102,113,102,113,108,93,111,106,98,104,99,96,110,101,93,112,103,99,102,87,98,96,106,109,110,91,104,114,104,110,97,110,121,106,104,103,113,104,111,103,97,96,99,107,104,103,108,97,104,97,108,109,105,95,116,107,107,99,107,92,112,112,99,98,105,100,99,102,99,108,98,99,103,105,112,88,104,103,105,117,110,101,99,102,103,103,114,104,103,104,109,104,112,92,107,103,104,109,87,98,102,117,105,94,104,104,108,103,103,106,106,108,111,95,87,97,112,97,117,98,111,105,111,95,115,106,101,106,106,84,98,106,104,105,100,110,99,98,115,113,123,94,118,110,105,107,102,107,98,114,105,94,114,103,106,101,97,103,107,100,100,102,124,100,90,98,107,106,88,106,103,97,99,100,100,103,101,103,91,101,106,97,92,110,108,94,101,103,125,99,101,95,89,101,98,95,80,108,104,79,104,96,101,111,100,109,100,103,99,108,77,100,101,110,105,109,100,93,106,103,103,103,94,104,109,101,103,100,102,98,94,112,102,107,105,100,100,105,107,109,99,96,110,98,99,91,111,106,105,112,105,103,101,99,103,105,106,111,104,103,111,95,105,100,114,97,103,93,102,107,99,113,107,99,107,104,106,102,100,110,108,95,111,105,103,117,110,111,107,94,114,88,105,102,115,112,111,104,107,112,112,104,109,109,105,108,102,107,97,109,96,106,98,107,123,110,98,107,104,107,88,110,103,101,99,109,113,103,106,112,101,83,103,103,99,136,115,95,95,100,113,112,93,105,108,109,114,100,97,108,102,100,102,105,115,106,124,106,106,103,95,94,110,117,116,95,102,108,97,98,108,106,103,109,105,116,105,113,106,92,114,103,97,108,110,108,103,96,106,96,105,106,80,102,116,106,111,104,95,98,101,110,91,103,104,97,99,123,111,100,109,101,105,112,104,103,117,100,93,104,98,117,98,100,96,100,113,107,109,102,112,107,95,110,100,104,111,112,103,104,115,99,109,101,108,104,102,106,118,103,108,113,97,101,109,100,83,101,104,102,101,99,104,111,96,109,88,109,104,110,95,109,105,109,113,101,99,110,113,99,100,107,98,110,95,95,71,102,101,108,108,111,100,107,99,92,102,102,98,114,124,108,100,97,116,88,110,96,113,106,109,97,105,112,105,95,108,110,101,83,104,102,103,103,91,105,122,104,104,107,106,106,102,89,105,115,104,114,106,116,107,115,110,110,99,96,104,94,115,99,104,99,111,109,104,103,102,117,106,114,109,108,110,111,96,103,112,103,103,106,106,111,103,99,110,100,98,105,101,109,109,103,99,101,111,101,99,117,95,96,103,97,109,94,104,75,104,109,108,103,91,106,90,94,114,99,106,107,96,103,111,109,120,91,117,112,107,103,111,106,111,100,106,95,119,104,101,110,107,98,107,104,100,120,103,105,101,96,112,103,109,99,106,112,107,111,96,120,94,108,101,84,97,113,119,106,91,118,119,95,103,83,80,99,108,99,104,102,100,114,106,97,102,110,104,93,106,95,114,94,98,103,100,104,103,102,101,112,99,107,119,99,108,83,76,102,112,110,114,111,110,96,113,98,107,100,91,97,102,105,96,106,105,100,116,96,111,105,87,112,101,108,99,117,119,107,100,104,120,103,112,105,111,96,119,112,91,105,106,99,111,105,102,113,100,96,97,106,110,100,100,137,103,112,103,79,108,92,110,106,118,102,105,103,98,103,88,111,108,95,104,74,94,105,120,102,85,106,98,102,85,104,108,109,121,89,104,101,103,105,99,96,104,113,104,117,106,100,108,92,100,103,94,102,87,103,95,111,106,106,101,94,99,107,105,109,111,96,113,104,95,95,95,100,113,105,102,98,95,115,113,111,113,103,102,98,102,121,113,108,101,113,95,109,92,95,93,95,104,111,110,96,105,67,108,88,97,99,89,106,98,95,106,101,113,90,110,89,104,90,98,92, +456.18991,113,99,99,74,92,95,100,104,108,100,97,109,101,102,98,94,97,103,95,93,103,100,107,113,100,114,94,109,91,102,101,107,103,101,96,95,126,88,96,100,97,135,102,104,118,115,100,101,106,111,98,103,99,96,107,71,108,81,94,99,105,109,100,91,99,113,98,98,97,97,119,101,91,106,103,107,103,100,102,99,98,113,87,112,104,106,109,100,108,87,112,120,111,97,108,87,112,83,120,100,98,98,109,100,92,101,111,102,93,111,101,90,119,105,115,110,91,95,90,108,97,103,98,117,102,100,100,100,90,93,100,68,108,113,99,108,115,94,100,99,104,113,110,88,108,109,96,91,94,92,98,94,106,106,98,96,102,95,102,92,97,103,110,104,102,101,108,95,109,103,104,108,103,94,117,101,116,92,108,103,101,95,97,114,100,101,95,103,108,102,87,103,124,106,99,101,92,103,95,125,102,98,100,109,105,100,100,105,110,103,92,104,109,118,103,104,92,102,98,102,88,112,68,99,105,105,108,83,108,106,109,110,117,105,105,112,101,99,105,97,97,98,106,96,105,92,103,98,105,106,100,104,104,100,105,112,107,109,101,110,99,105,108,105,95,83,104,93,105,94,105,96,93,111,105,110,69,115,113,106,107,92,94,111,86,100,99,114,99,103,95,104,119,88,111,100,96,101,104,96,106,91,114,103,105,99,104,104,97,98,96,105,116,111,105,96,107,103,104,88,114,128,121,107,101,104,104,94,107,122,111,95,104,106,100,104,102,93,88,104,115,103,92,104,92,105,109,115,99,107,107,103,117,108,99,102,106,110,101,99,100,85,106,102,74,103,104,109,100,99,101,105,113,103,99,110,109,110,95,99,109,111,89,109,112,108,99,99,110,93,105,93,95,100,112,102,99,97,100,107,96,101,111,114,101,89,96,91,117,101,111,102,101,111,105,108,107,98,120,101,91,103,98,103,100,100,104,101,92,123,92,109,105,100,95,101,100,103,100,102,118,109,101,99,106,113,96,117,111,99,104,77,100,102,97,108,106,105,103,88,95,101,109,109,104,103,95,103,101,107,77,92,98,99,88,101,94,110,108,112,99,103,100,105,99,94,100,97,90,98,110,120,100,104,98,109,95,97,101,103,104,96,98,88,109,103,94,100,101,100,105,95,104,116,105,111,97,108,100,97,101,116,95,107,102,100,112,114,110,99,112,108,118,103,91,94,99,100,108,102,104,94,105,100,111,100,117,107,99,112,106,105,108,119,104,98,106,99,102,101,98,101,109,106,104,101,107,113,101,105,101,106,127,87,103,99,103,102,102,99,95,107,110,121,113,118,101,110,104,109,121,107,105,98,119,104,98,102,113,103,103,105,100,111,113,105,104,105,98,104,113,96,102,101,107,100,97,93,101,98,105,94,101,109,117,112,100,95,106,110,96,85,103,100,94,97,96,90,107,100,100,115,101,100,95,96,95,103,106,107,96,107,102,103,100,127,112,107,96,95,106,110,103,107,97,80,103,91,96,109,113,101,124,105,105,101,96,103,99,105,96,109,94,101,99,118,105,106,103,115,105,101,90,99,106,104,99,99,92,100,106,94,108,102,98,118,112,109,113,101,94,101,98,100,97,103,112,100,108,101,110,99,96,111,106,95,103,94,89,116,100,100,104,101,96,102,108,106,104,85,104,99,110,107,105,103,116,101,118,97,120,92,106,115,116,105,99,119,105,86,113,98,105,102,110,84,100,102,97,108,108,102,112,95,109,111,93,102,105,106,108,103,115,106,91,110,113,106,98,102,114,112,108,114,100,106,91,106,101,106,100,100,101,98,102,103,108,99,102,99,103,104,97,96,104,108,107,122,88,99,104,108,109,102,106,112,105,100,107,99,99,109,86,106,108,92,103,108,99,104,104,98,103,105,99,107,102,105,115,106,116,96,91,102,97,100,105,114,109,101,101,107,110,104,95,91,85,89,132,107,102,93,124,110,94,97,100,103,95,110,109,106,109,103,95,97,96,112,93,96,98,103,108,95,89,110,97,115,107,118,103,98,118,105,105,101,104,95,98,115,87,100,104,107,103,98,97,116,107,108,99,102,117,107,99,110,116,110,117,96,118,104,102,107,98,104,105,100,107,106,102,100,101,95,106,106,100,94,91,118,92,96,103,107,75,106,111,107,105,105,116,105,110,102,111,120,93,105,97,112,101,107,111,101,103,93,107,95,91,103,104,100,92,95,103,103,99,91,93,105,104,112,108,93,97,105,88,91,99,106,110,104,97,100,99,106,106,118,91,110,89,99,102,108,90,100,106,114,98,111,106,97,99,92,109,107,104,102,83,91,112,102,106,95,108,94,104,110,101,109,102,107,101,114,100,105,111,99,99,105,92,104,102,95,100,101,99,110,104,106,109,101,102,103,106,107,106,86,108,93,87,103,93,100,82,98,99,103,94,111,99,98,99,96,103,119,95,99,99,102,93,133,95,108,101,97,102,105,99,103,117,94,100,114,98,103,102,102,109,96,100,104,110,100,96,93,98,105,117,106,104,100,98,106,102,108,104,105,106,96,97,113,88,110,105,102,103,102,101,83,81,69,91,109,98,113,125,110,109,97,108,104,108,99,106,102,113,93,105,98,100,103,96,99,111,105,117,96,112,104,93,101,119,101,97,91,102,100,103,109,106,107,104,104,106,107,108,93,104,108,95,97,109,102,96,101,106,100,89,105,105,101,100,99,113,107,110,100,99,105,97,104,110,98,113,103,108,107,97,83,108,97,102,98,102,107,97,91,95,91,99,105,112,109,119,79,107,96,100,105,93,92,97,95,97,103,98,104,95,102,106,103,102,99,102,88,100,103,106,108,106,106,108,112,90,98,97,110,102,116,87,106,89,87,103,107,96,91,96,125,112,114,102,98,113,107,108,110,92,96,99,106,95,99,90,102,92,98,107,109,93,118,95,113,110,107,92,106,97,100,103,110,110,96,106,116,108,110,116,99,100,105,111,95,92,106,95,101,104,98,106,112,97,109,115,95,88,106,99,112,97,106,101,106,98,100,106,106,102,103,86,114,104,107,100,104,106,94,108,98,97,110,93,104,106,87,104,101,91,101,96,101,93,121,109,106,98,100,79,100,104,97,111,98,109,98,94,91,105,104,96,99,103,104,100,102,95,106,107,110,106,101,101,108,108,96,100,96,89,97,104,99,99,101,95,100,102,109,91,102,116,109,92,101,93,96,99,102,114,103,98,97,100,104,112,106,101,110,103,108,102,107,86,108,120,107,83,100,108,91,90,98,108,102,104,106,111,113,108,103,108,116,87,99,104,119,110,90,89,102,88,106,91,100,110,99,99,92,112,106,97,106,124,102,91,108,88,104,110,103,89,101,115,100,102,109,94,103,108,109,97,116,106,115,100,94,104,101,108,96,109,110,115,105,78,103,107,113,102,95,107,111,103,100,100,110,101,109,113,95,119,108,104,91,96,106,107,99,108,104,104,82,96,114,110,112,116,102,115,96,108,104,101,91,99,105,108,115,94,100,104,98,113,96,101,110,89,105,96,90,108,80,113,97,104,111,102,104,117,91,95,98,94,107,105,110,105,122,114,109,106,101,106,102,104,95,96,97,109,106,102,105,114,102,105,95,92,97,104,111,99,79,97,105,114,98,111,99,106,100,109,111,92,106,107,113,96,111,98,99,104,98,108,102,109,70,104,94,110,93,94,90,91,109,94,96,115,95,106,94,108,113,88,98,103,102,110,117,99,101,101,91,109,97,101,95,102,96,97,90,99,106,100,104,107,106,111,100,109,102,107,102,108,90,98,104,99,104,106,102,98,114,109,97,101,98,105,109,102,91,101,100,103,98,104,109,105,103,95,105,106,105,94,103,121,106,104,95,99,102,100,88,108,110,112,87,103,99,95,90,102,91,100,114,109,108,107,98,91,103,101,108,106,108,102,98,100,92,101,100,81,103,99,100,102,99,93,92,96,100,113,113,109,101,109,104,96,109,100,95,104,102,103,94,104,96,95,97,107,102,112,117,109,113,117,108,86,106,108,98,116,113,102,91,97,88,106,103,95,107,109,108,94,104,112,107,100,102,99,106,101,100,105,95,96,110,97,101,102,105,121,108,100,113,99,114,103,115,95,95,113,111,97,102,107,106,103,90,88,95,107,127,107,110,123,104,106,98,106,110,113,100,106,124,99,103,111,121,93,108,109,107,98,101,94,104,98,99,92,109,103,104,121,92,110,100,105,97,90,116,105,98,103,100,95,104,107,97,103,107,94,120,93,93,98,113,89,99,96,93,99,104,111,95,104,109,102,98,106,95,100,99,107,112,102,97,91,100,108,108,104,108,107,104,91,99,113,113,105,108,97,117,105,106,78,94,98,111,129,96,96,92,111,109,96,110,96,115,107,101,109,107,101,92,107,98,97,100,100,116,114,107,113,93,112,100,70,87,100,104,101,102,110,100,112,112,103,94,99,104,103,96,99,104,91,106,91,107,101,108,94,102,100,103,104,104,105,106,107,115,98,111,97,94,103,104,116,96,98,117,92,117,102,120,92,103,98,117,100,99,110,91,79,101,101,108,103,101,104,112,83,95,95,97,107,106,102,105,113,88,96,97,101,108,103,107,107,98,105,110,102,103,102,111,104,108,95,96,95,85,83,101,91,94,102,94,94,98,91,105,103,102,119,106,102,108,105,94,100,118,99,102,86,108,102,109,96,93,110,100,104,95,92,102,103,94,94,98,97,116,98,98,115,101,95,103,97,91,95,94,117,98,108,116,88,98,101,103,102,100,113,116,84,98,110,92,91,99,124,110,99,99,103,107,102,94,89,88,99,98,109,94,110,89,105,102,85,111,92,100,88,109,91,98,104,114,117,94,105,92, +456.33032,101,121,84,89,106,98,98,115,100,104,97,96,103,112,101,102,100,104,111,110,97,114,104,107,111,102,91,110,102,116,102,92,102,92,116,94,132,105,97,99,94,105,106,103,104,102,109,104,104,99,83,104,92,84,110,100,104,100,105,93,91,101,95,98,99,101,103,103,99,101,99,100,112,102,95,113,81,111,91,98,109,101,96,92,101,92,90,109,105,94,107,111,101,95,102,90,99,97,105,94,99,101,96,100,103,80,103,93,92,99,97,94,100,105,89,121,106,95,104,100,104,101,105,106,107,100,100,101,98,104,106,112,94,98,104,102,84,60,90,93,95,108,110,91,110,100,110,106,107,100,100,96,112,82,99,96,102,111,95,108,96,108,108,90,101,100,96,95,112,106,99,106,94,96,105,105,106,94,114,80,116,104,100,117,105,99,92,98,103,106,106,106,103,99,92,97,108,115,100,94,94,105,103,103,87,90,93,98,100,95,98,108,104,103,98,100,92,96,92,110,99,100,104,104,101,110,103,110,107,102,95,114,98,85,102,117,105,106,98,102,92,108,109,110,90,110,99,104,90,85,95,103,91,105,104,110,94,109,96,106,102,96,91,97,97,108,111,106,92,108,101,102,98,106,116,86,106,104,118,109,109,95,98,99,100,108,93,103,103,107,103,117,107,105,106,100,109,113,111,104,105,99,92,120,94,100,105,105,105,106,100,104,101,113,95,106,107,114,107,99,83,101,103,100,95,102,98,107,110,103,102,99,103,122,108,101,107,90,101,106,101,101,113,105,101,106,100,115,104,100,98,117,78,99,99,105,123,112,112,97,91,115,95,97,99,107,108,111,101,106,105,106,104,79,100,91,91,102,101,97,101,105,100,112,93,111,110,103,97,87,110,96,102,109,101,92,102,105,85,115,103,98,98,113,100,97,102,98,102,95,95,114,106,104,100,96,98,116,113,80,108,80,111,106,106,91,105,100,107,105,105,96,102,109,99,96,91,113,107,111,113,98,106,99,95,96,96,94,125,123,102,99,103,102,104,104,110,109,109,97,103,105,98,110,109,110,103,92,106,102,111,103,102,102,98,97,101,111,103,96,101,104,113,102,111,98,108,101,101,96,103,81,91,97,101,88,93,92,114,98,104,104,100,109,108,105,101,98,110,97,118,105,98,106,107,102,104,96,100,98,95,114,110,96,101,93,111,107,102,105,109,99,99,87,115,110,103,99,100,113,103,106,105,102,97,112,103,110,104,94,115,103,103,94,92,94,100,106,106,101,117,107,102,110,105,99,102,105,103,98,101,89,95,111,109,108,91,90,91,89,102,76,104,93,103,95,114,110,100,95,104,93,98,98,108,123,102,114,112,101,102,96,116,100,114,102,91,101,90,108,103,100,100,103,98,103,105,94,85,107,98,103,91,99,112,96,96,112,99,112,106,109,100,107,96,110,95,106,101,98,92,105,103,99,99,99,99,83,103,133,109,101,109,99,107,112,105,103,106,108,112,110,116,100,92,79,110,102,97,99,102,105,97,102,107,105,90,102,110,108,104,88,99,95,100,99,96,95,112,108,107,101,103,105,104,85,107,114,106,95,96,88,113,114,99,104,120,103,95,99,97,94,95,100,102,102,108,106,97,100,103,98,104,103,102,102,99,91,110,109,99,101,93,97,83,104,104,95,103,102,109,95,85,109,101,95,109,106,109,112,100,101,104,102,113,109,110,105,99,104,99,113,98,101,95,109,110,103,104,100,119,99,102,88,94,105,101,115,92,103,101,101,88,116,107,103,109,113,113,109,103,98,103,114,98,103,108,105,114,95,103,97,93,98,92,106,113,117,112,114,95,96,109,95,97,105,114,96,107,88,99,112,100,100,112,99,115,109,114,92,109,100,113,97,105,105,100,107,104,111,98,105,105,92,103,110,105,103,95,94,108,97,109,105,113,94,113,103,106,95,102,95,103,109,100,110,98,98,104,105,105,100,102,86,97,97,104,101,96,109,99,112,110,106,103,99,102,107,94,112,106,98,104,106,97,109,94,115,101,97,101,109,111,108,100,99,86,105,103,106,108,106,107,105,95,93,97,101,111,96,95,83,99,116,99,116,108,99,101,107,107,99,103,106,95,103,93,100,107,113,121,109,112,122,100,104,101,100,104,94,104,111,108,112,109,91,109,101,87,117,108,100,96,103,102,99,87,103,105,110,103,101,105,110,101,102,107,97,103,108,98,99,93,102,100,88,100,106,95,106,103,100,110,121,100,98,106,100,102,87,108,104,102,90,108,101,106,105,103,103,96,94,106,116,101,113,105,96,108,106,108,101,101,102,112,100,106,105,100,111,99,91,104,95,99,94,100,98,82,105,98,104,106,105,105,99,97,91,105,98,106,106,105,93,90,104,118,103,102,117,99,107,113,96,98,93,94,108,102,100,100,83,100,111,111,98,106,101,118,76,106,102,88,104,104,108,94,106,106,110,101,103,91,105,103,100,105,89,114,111,117,110,112,107,108,104,99,100,108,105,105,110,81,101,107,97,98,87,98,100,113,105,100,103,101,110,90,116,114,101,105,111,112,104,82,99,110,107,102,96,101,124,114,114,105,104,105,103,102,103,106,105,114,90,100,107,103,107,104,110,100,92,102,92,110,108,113,91,108,112,106,94,109,111,104,100,105,109,110,111,95,102,96,105,99,116,120,104,95,104,106,112,116,107,105,108,107,89,113,107,108,111,113,108,106,112,108,111,120,92,104,102,97,103,110,115,109,100,99,109,102,113,108,99,109,106,94,100,102,109,99,111,110,109,110,107,113,103,99,112,108,97,94,101,102,111,107,110,102,91,104,106,107,102,111,114,107,119,91,99,109,109,98,112,101,101,100,99,99,118,108,108,113,116,115,104,97,107,111,105,122,107,94,105,79,107,100,109,118,105,102,113,99,96,102,90,113,105,103,106,102,111,100,110,109,108,107,107,103,95,100,96,102,93,98,114,94,91,97,106,105,109,98,100,112,113,105,84,88,120,104,98,102,104,110,104,95,104,99,108,92,96,108,100,109,100,117,104,107,115,111,118,101,106,100,106,104,111,106,99,101,111,100,109,128,113,112,101,95,97,104,114,93,100,103,95,97,101,116,106,111,101,104,116,102,109,104,103,109,106,100,97,99,102,125,113,101,103,119,98,104,104,95,93,95,119,105,106,102,89,104,103,108,99,107,102,91,108,106,115,111,113,87,96,100,98,93,94,117,94,100,99,101,94,87,101,105,103,95,102,98,77,113,96,103,101,90,105,117,110,109,97,114,99,113,106,100,103,101,91,112,105,94,97,104,105,95,107,103,101,102,107,95,97,108,104,110,111,105,84,99,109,102,111,98,99,99,95,107,105,104,101,94,112,98,115,104,102,109,110,95,106,108,105,109,107,98,107,109,104,102,95,109,116,119,105,109,105,108,108,76,98,100,101,103,100,108,97,107,98,102,105,103,102,101,114,117,110,108,109,111,104,96,108,115,101,110,100,94,116,111,97,103,107,101,104,107,109,89,90,105,88,108,105,106,103,101,107,99,107,105,97,96,90,103,108,108,94,107,105,73,98,106,107,105,83,97,91,104,102,112,101,115,95,91,96,107,112,112,103,98,104,107,106,117,105,106,105,107,106,105,108,103,108,105,109,98,92,99,98,107,115,107,115,102,116,104,106,108,110,115,104,110,108,102,94,100,111,110,94,98,82,124,100,112,107,102,86,103,106,106,101,102,104,95,103,106,109,99,103,104,96,105,103,101,104,107,93,110,92,99,117,106,96,104,106,109,109,101,110,97,110,115,111,109,106,110,110,99,110,100,122,91,99,101,113,89,94,109,100,96,84,95,109,101,91,102,103,99,109,98,80,101,102,117,108,112,101,95,112,112,99,113,90,98,110,107,106,113,99,123,104,103,95,121,106,103,108,106,109,104,105,108,105,94,104,106,117,105,104,114,97,105,115,108,97,94,104,100,108,120,101,105,100,107,106,97,88,110,82,107,103,104,111,104,99,104,117,94,97,106,105,87,108,105,103,102,95,108,95,106,95,103,101,110,90,108,109,104,103,105,100,115,103,72,111,104,111,98,106,97,99,92,105,100,105,110,104,107,99,106,115,109,109,94,110,114,100,104,121,136,103,100,90,103,102,98,108,94,100,112,100,98,97,113,97,113,107,100,99,108,128,102,108,99,88,89,113,102,109,104,96,102,106,101,115,97,105,101,97,96,105,112,108,95,86,111,94,105,99,105,95,110,78,113,112,87,105,76,99,105,93,103,97,75,101,109,104,100,104,115,100,121,103,113,104,92,109,112,117,110,92,117,109,105,107,116,106,97,109,94,111,104,100,115,105,98,104,113,88,106,102,108,117,102,107,106,106,107,109,99,90,105,109,100,103,106,107,100,103,112,101,102,101,98,102,83,96,99,107,99,104,102,104,103,95,95,106,110,105,111,106,105,98,108,108,97,93,113,99,102,84,112,106,73,94,103,109,99,98,93,106,93,109,92,92,99,104,114,87,100,91,100,109,89,97,106,102,92,106,116,113,117,90,109,110,111,108,107,109,94,105,113,103,102,104,90,101,109,81,106,112,121,112,95,103,106,98,91,112,100,92,100,99,111,105,107,105,96,95,108,105,98,108,97,105,111,104,106,104,98,97,107,118,102,106,116,106,114,110,117,113,91,92,106,112,109,96,97,97,106,97,98,112,98,102,98,105,117,97,110,117,96,108,99,98,106,103,103,91,100,97,103,101,101,106,101,102,115,100,104,105,100,113,113,102,120,102,112,104,121,109,101,94,110,117,109,90,104,110,97,104,108,100,93,104,91,101,118,91,100,104,110,120,104,104,114,103,105,85,113,108,110,105,110,107,102,98,95,100, +456.47076,79,109,79,82,108,95,100,99,105,118,103,102,86,97,95,104,109,108,111,87,87,100,91,108,97,120,108,104,103,101,108,100,116,99,98,98,101,102,98,105,88,95,101,111,98,103,101,107,84,106,98,108,105,96,101,110,96,96,104,102,101,91,99,104,105,98,109,103,108,99,105,98,83,99,114,104,102,104,94,97,107,86,98,99,99,91,107,106,104,100,98,100,116,99,68,97,105,97,92,91,111,100,91,98,95,97,88,91,105,108,90,107,95,102,97,98,92,91,96,101,103,97,97,98,93,98,114,100,103,106,94,107,104,91,89,91,96,90,90,106,86,98,102,99,99,109,100,105,92,86,112,99,108,98,89,103,103,95,108,102,95,104,88,114,108,96,99,108,94,99,96,96,104,76,106,103,105,108,95,100,94,110,114,106,103,100,104,96,92,96,95,107,109,109,88,106,103,108,94,87,105,105,94,95,112,107,84,104,116,104,91,111,100,91,102,106,112,117,99,102,109,100,100,106,98,107,97,95,112,110,103,107,109,99,111,112,105,96,99,97,101,101,99,100,95,99,96,100,108,96,96,97,93,97,107,106,109,101,106,112,87,95,99,94,79,88,100,111,100,97,106,90,105,92,109,96,95,101,93,94,105,98,106,99,112,104,83,82,121,87,109,83,102,115,109,101,91,101,103,91,111,97,98,108,97,101,109,102,96,107,96,101,104,105,105,108,99,108,114,114,102,110,108,99,95,80,99,92,114,108,98,93,108,115,96,103,103,102,106,101,109,102,97,106,106,104,94,102,115,94,99,100,107,103,115,105,105,106,73,105,100,101,100,80,102,100,98,102,102,104,106,100,118,108,114,109,108,99,102,110,96,115,98,121,108,98,97,105,103,99,106,101,94,111,106,104,108,98,100,98,112,100,104,95,101,100,103,99,87,100,96,113,111,106,106,100,111,105,104,98,104,93,106,102,104,101,111,103,91,100,105,102,103,102,79,98,99,94,96,105,109,105,110,90,88,104,102,92,97,103,102,106,111,114,109,102,106,109,109,109,107,118,108,109,98,112,85,99,100,105,101,99,106,97,110,109,106,138,99,100,103,107,105,109,100,94,112,107,98,98,88,100,105,97,96,100,93,112,115,96,102,104,93,99,113,93,113,108,95,110,106,103,100,100,116,102,103,102,109,101,102,100,107,118,89,97,105,108,104,97,103,99,102,101,105,98,103,116,108,114,96,98,104,110,116,105,109,107,111,102,99,90,110,105,93,112,99,104,97,73,98,113,95,106,98,118,102,98,103,103,83,98,105,95,100,117,103,102,104,113,105,87,96,88,102,103,110,111,103,93,100,109,102,99,103,98,90,102,110,105,98,111,112,96,109,109,97,104,105,116,104,99,102,99,77,106,112,99,107,113,106,101,101,118,95,97,90,103,106,103,118,100,118,100,96,108,101,90,108,96,109,123,99,97,101,98,105,93,110,105,89,105,107,107,104,103,119,110,105,105,111,106,95,103,100,97,107,96,101,110,102,101,100,100,101,105,95,98,100,107,90,110,103,102,104,98,93,104,105,98,105,101,105,105,109,104,92,109,101,96,109,91,107,98,99,94,108,101,129,108,100,103,105,105,111,122,105,121,104,106,103,106,100,96,105,95,93,106,105,118,93,107,96,93,97,102,104,94,103,99,102,104,101,94,94,106,107,107,94,110,101,104,103,91,99,101,107,104,121,98,98,96,91,110,100,106,98,96,93,96,94,104,104,97,89,111,108,101,100,103,100,99,108,99,102,113,108,106,91,115,105,106,107,101,85,95,80,105,102,109,101,97,105,105,99,109,103,113,102,112,113,93,102,107,105,93,100,101,97,90,112,96,115,112,95,101,100,100,97,92,106,105,104,107,109,103,105,94,106,106,91,101,117,96,106,88,115,103,98,95,93,94,93,107,100,103,97,100,101,105,94,101,92,82,99,102,103,105,107,103,103,104,98,100,101,94,113,103,109,101,99,99,103,101,101,107,91,107,108,98,95,95,101,102,91,104,105,104,96,110,106,105,112,100,107,98,99,97,102,107,96,103,110,99,97,93,99,106,97,98,110,105,105,104,95,68,103,105,103,109,109,105,103,92,102,91,88,97,97,107,101,103,118,98,89,105,106,94,112,115,100,105,103,106,110,102,93,94,103,103,116,113,87,90,99,104,105,106,105,105,113,113,112,110,95,106,92,98,91,94,104,101,101,99,108,112,109,96,109,108,102,90,102,94,106,98,99,104,97,105,104,100,85,107,107,109,107,108,119,100,93,106,106,99,103,101,94,97,96,85,109,99,113,97,101,111,103,113,105,99,94,100,90,95,100,99,109,107,112,102,113,105,108,102,104,96,97,103,100,89,95,96,105,110,101,108,102,104,101,104,109,125,92,99,94,105,112,83,95,80,86,109,91,95,104,105,96,104,104,89,115,66,101,104,103,113,98,101,108,105,114,94,112,101,96,109,113,100,116,106,93,106,96,109,96,96,106,109,100,72,99,107,117,85,115,102,101,97,100,104,113,97,92,108,113,108,104,108,103,103,112,109,98,100,99,106,97,104,98,103,114,99,87,94,98,96,98,94,99,100,102,100,106,109,100,102,96,102,100,101,103,95,105,99,110,108,106,95,108,100,98,102,105,121,94,102,97,108,92,107,103,106,109,140,108,115,112,90,100,110,103,105,95,105,111,108,110,101,95,105,111,109,96,109,102,122,109,108,103,110,75,113,98,95,117,110,95,107,112,108,104,105,97,105,112,96,99,95,100,114,98,110,94,105,103,93,91,96,104,110,109,90,100,98,91,92,112,114,111,106,113,104,97,99,106,100,101,112,95,115,105,101,109,120,112,108,106,102,108,102,105,98,117,115,92,103,96,98,97,116,106,82,102,101,95,101,100,104,102,95,102,106,102,101,99,119,100,86,94,105,92,127,98,93,101,108,110,104,98,107,95,107,105,100,106,90,106,107,98,104,106,96,100,91,101,103,104,107,101,104,101,98,104,99,113,110,105,110,99,103,106,108,117,96,103,86,103,101,101,104,87,113,101,108,93,100,132,87,102,95,97,103,106,94,113,99,102,112,104,106,104,101,116,102,110,100,116,113,92,77,96,96,109,90,96,102,93,102,104,98,91,99,99,102,98,106,88,87,108,104,120,91,96,106,95,108,113,105,102,112,100,103,94,109,104,113,76,113,101,104,108,84,99,95,96,104,108,96,116,109,99,111,102,95,111,96,98,103,93,86,97,103,106,105,100,84,103,107,104,92,91,102,100,75,101,104,111,107,111,91,105,102,113,100,109,104,92,84,108,106,102,110,97,69,111,97,96,108,108,103,104,106,114,106,99,105,101,102,104,98,114,109,131,102,103,111,98,105,106,106,100,106,98,102,105,90,103,111,103,98,102,99,122,104,94,99,94,94,100,100,103,101,101,108,109,106,100,103,83,95,101,105,107,95,95,94,117,93,98,106,115,110,96,109,103,116,98,102,98,91,116,104,104,108,98,115,107,113,95,99,104,112,97,106,104,102,100,101,115,95,103,95,94,105,104,114,82,106,110,93,113,101,91,115,102,93,108,119,106,113,105,102,103,104,103,96,106,103,113,101,112,102,98,98,109,98,107,102,108,120,108,98,102,99,108,109,97,103,113,113,96,111,108,104,88,93,95,103,107,105,102,105,98,103,95,106,103,106,109,99,99,112,101,103,67,90,114,112,105,87,102,101,103,97,112,106,97,103,98,104,88,95,98,117,106,95,98,94,101,103,97,104,101,110,100,104,105,97,107,104,102,105,106,91,96,104,109,106,92,112,99,107,91,104,99,106,104,100,113,100,104,112,113,95,106,104,106,101,109,108,101,109,107,97,105,96,108,105,103,105,104,106,101,117,102,110,102,100,104,110,102,100,110,100,89,106,102,102,109,109,104,111,100,105,113,97,94,93,106,112,103,94,108,98,98,107,106,110,94,112,120,116,97,114,102,115,97,102,96,106,101,99,100,101,102,115,117,98,112,101,105,109,87,97,103,111,114,99,113,105,105,105,106,87,104,110,99,107,100,84,108,101,83,96,95,102,107,99,106,123,110,112,113,101,103,110,99,108,103,109,96,102,110,97,109,113,99,100,96,114,101,94,82,103,96,113,97,97,100,110,103,100,96,104,103,105,98,107,98,98,106,110,120,100,102,87,107,93,101,96,106,100,96,104,102,110,117,113,102,96,102,101,100,104,103,77,101,98,108,97,107,113,112,99,99,96,108,102,96,103,93,108,108,93,102,110,98,103,117,123,102,112,112,107,107,95,104,118,106,106,116,96,104,102,108,97,103,97,113,106,82,102,92,100,98,102,95,102,114,103,111,107,91,117,95,99,102,104,105,99,121,104,104,105,108,105,101,104,111,95,113,111,99,103,95,101,92,109,97,110,106,101,97,97,116,95,99,104,98,92,95,101,100,108,99,105,107,101,89,114,89,76,101,85,108,90,100,112,94,103,99,100,103,102,104,104,98,96,109,110,100,106,102,98,96,110,105,95,104,87,122,114,103,95,109,100,104,108,101,104,97,98,111,97,102,98,112,108,90,101,101,102,90,103,98,115,105,104,102,99,105,104,100,113,108,90,107,99,67,80,94,88,96,80,95,102,102,108,95,89,88,106,93,100,95,99,112,100,87,107,97,105,105,90,100,110,105,107,105,100,102,107,94,109,105,96,113,101,93,111,114,94,104,95,88,105,93,99,97,113,110,95,99,91,113,95,103,99,96,94,83,96,96,93,108,111,98,116,102,95,105,110,98,111,107,91,97,102,88,98,110,92,96,109,96,96,106,95,113,97,104,103,102,88,117,93,110,90,103,99,113,66,79,99,98,103,88,103,91,101, +456.61118,112,95,104,96,89,101,102,95,101,105,95,128,106,85,103,109,89,111,103,98,108,93,117,104,98,98,99,98,99,99,89,104,103,95,107,105,95,92,103,100,99,94,86,98,110,108,96,108,105,113,102,96,96,91,93,106,103,99,112,91,116,99,94,92,104,108,105,103,98,107,117,107,96,100,95,98,107,99,108,105,106,110,92,94,93,103,90,113,98,85,105,113,100,110,104,90,94,110,101,95,104,100,95,88,105,96,110,103,102,110,109,112,113,104,104,97,110,104,90,96,96,99,112,112,100,106,109,98,111,96,93,100,93,113,95,96,106,101,100,109,98,100,93,98,106,99,95,99,101,100,101,104,107,100,110,117,98,108,104,95,104,95,111,103,105,104,100,92,108,100,103,98,102,100,102,105,107,100,108,102,107,117,107,106,106,100,94,99,103,102,91,109,94,99,103,96,92,108,99,100,95,94,84,107,99,109,97,99,124,106,101,107,101,109,103,106,105,106,104,108,102,100,95,76,104,111,104,89,97,99,100,102,92,94,88,103,105,108,97,105,99,94,107,110,105,99,101,99,102,107,100,110,111,103,108,117,111,109,101,99,107,115,103,105,109,118,95,113,108,112,94,101,103,106,103,111,103,107,109,92,92,102,95,112,98,99,99,100,103,104,103,127,107,103,99,95,113,105,110,102,105,108,103,117,102,113,105,104,99,116,98,116,114,109,97,91,102,107,91,106,93,101,108,105,113,99,99,91,120,105,111,114,96,114,110,105,105,103,89,94,102,112,96,94,95,106,94,98,110,104,132,101,95,110,115,102,96,95,98,99,102,110,104,100,103,114,99,116,106,101,117,117,110,105,98,108,109,114,105,100,107,97,101,108,90,100,112,104,107,117,104,97,91,107,102,112,101,109,100,84,108,112,98,103,106,88,111,97,99,105,91,101,103,106,100,113,108,109,107,96,91,100,102,100,94,100,76,108,97,89,92,109,102,96,106,103,101,113,102,103,102,106,96,101,101,99,99,93,114,116,99,97,112,108,93,104,113,100,104,108,96,111,104,101,111,106,110,98,99,94,116,112,83,97,100,98,132,115,95,116,107,104,111,99,107,102,102,99,104,98,124,112,108,95,95,97,101,105,108,110,94,113,97,99,103,109,104,117,121,112,110,106,92,109,101,123,109,104,110,96,107,99,110,112,97,105,100,101,111,96,105,101,102,94,102,118,112,92,127,98,100,96,101,102,103,94,97,105,95,111,104,106,108,100,101,109,109,97,105,100,91,96,101,104,99,103,100,121,93,99,106,99,100,110,116,111,99,94,109,103,103,93,103,114,112,95,108,117,101,97,103,111,114,103,109,106,103,110,104,109,101,96,114,101,114,97,108,100,103,118,96,94,110,105,116,111,116,108,86,93,115,102,98,113,125,98,99,108,114,105,107,109,102,98,123,99,100,100,105,104,105,103,110,99,98,104,94,99,97,112,105,113,113,101,93,97,105,115,104,111,102,105,103,100,97,102,105,122,106,87,112,98,76,100,102,95,104,102,110,95,108,108,109,105,106,114,105,100,108,96,105,102,89,99,94,100,100,100,93,99,109,96,103,105,106,95,101,101,105,101,98,103,94,115,108,136,101,94,104,106,107,95,100,104,108,99,100,97,97,107,100,96,106,109,95,104,125,94,103,105,105,108,106,94,99,103,103,108,100,116,108,106,111,102,104,97,107,91,100,108,102,110,103,105,100,109,93,99,109,97,94,106,95,107,96,96,100,100,99,95,100,102,118,100,130,91,114,103,106,106,104,99,108,105,107,108,95,111,109,104,98,95,97,103,101,106,106,89,77,99,104,100,111,106,103,91,118,109,109,98,88,108,115,113,105,95,113,114,95,116,110,99,100,110,109,97,115,106,106,115,102,100,107,98,105,103,98,101,93,93,115,98,112,97,107,104,90,99,100,106,103,98,106,100,112,113,107,109,107,103,109,101,77,104,98,107,107,103,95,99,113,86,114,109,92,100,114,104,94,110,102,115,95,89,134,90,106,105,114,112,102,80,111,104,106,100,86,106,90,102,104,96,100,87,129,98,98,103,104,110,100,79,97,112,95,121,104,103,108,109,98,119,100,110,71,99,97,111,99,104,97,106,118,103,104,108,108,106,103,103,94,99,105,99,102,103,87,103,98,103,107,116,96,88,98,115,90,101,102,103,101,106,116,93,98,102,107,104,93,96,101,108,101,105,96,101,110,99,108,103,110,98,109,95,108,103,101,102,104,102,107,103,96,99,125,97,104,107,101,97,92,107,92,109,101,101,102,99,101,94,99,105,96,106,126,102,108,96,98,111,116,109,104,101,104,90,107,106,112,112,99,117,91,100,103,112,102,106,106,99,109,104,96,78,99,104,99,105,100,101,104,89,113,103,94,108,104,100,108,102,108,106,105,103,109,108,80,107,105,93,111,106,82,106,99,98,85,112,120,97,95,99,107,91,106,93,94,101,103,108,106,105,102,95,107,106,91,115,109,98,96,97,101,108,103,98,94,128,87,95,108,104,92,106,102,94,96,110,117,104,104,101,103,105,107,106,106,104,87,98,114,102,94,116,101,98,127,104,111,109,96,116,103,108,104,89,104,102,102,108,109,100,116,90,91,109,104,79,108,101,98,94,98,104,108,96,109,110,95,100,88,107,102,105,100,104,112,99,119,100,103,101,109,105,94,103,106,91,100,104,92,105,100,109,106,109,109,107,107,99,94,105,100,116,97,125,98,104,108,113,113,102,94,101,109,110,101,105,110,121,100,96,115,91,98,98,105,105,102,104,102,109,97,101,109,97,103,100,87,95,99,101,103,102,98,96,95,107,95,96,110,103,95,110,104,108,113,112,101,101,116,102,105,99,109,92,102,101,113,103,105,97,102,113,103,98,103,113,99,109,94,124,103,103,94,109,101,96,107,104,101,121,99,107,90,84,102,113,113,104,109,99,97,87,109,108,109,99,100,100,105,111,97,101,95,96,111,100,100,110,87,92,103,106,108,102,102,98,105,107,107,105,106,97,109,103,97,95,120,104,117,125,94,97,120,101,103,100,95,103,110,108,102,90,103,105,106,101,103,100,97,109,94,113,103,98,100,111,95,104,104,92,74,93,105,97,110,94,104,105,100,99,109,104,105,96,109,106,110,107,106,101,114,112,112,111,102,114,98,89,117,96,104,101,101,104,108,112,108,109,101,99,106,105,99,99,106,113,103,103,99,117,104,111,118,101,103,102,105,99,74,97,100,95,104,107,101,86,103,102,101,106,113,105,87,110,116,100,104,103,104,101,107,99,105,106,99,95,102,97,93,110,106,99,98,95,107,101,95,90,90,109,109,104,75,108,107,100,101,109,93,105,97,83,100,111,103,110,116,108,104,104,105,102,111,119,109,94,100,98,90,102,104,102,101,102,107,99,99,97,105,102,95,97,85,91,98,101,92,99,105,112,101,103,89,102,84,95,90,94,96,103,101,98,85,110,114,103,107,102,112,105,107,124,105,108,109,87,102,111,112,115,110,96,114,96,96,96,99,105,77,94,103,99,99,104,98,100,100,107,113,100,110,101,105,94,95,105,98,110,101,121,99,96,86,94,82,127,108,104,104,97,95,100,93,96,102,109,89,110,99,107,117,106,105,93,95,102,107,95,110,106,113,107,102,97,97,98,104,106,102,98,116,108,101,106,105,102,112,91,111,102,108,88,100,96,99,94,101,106,106,106,102,97,120,102,112,107,99,99,94,94,98,96,92,99,107,107,109,91,106,95,99,108,107,103,99,104,98,107,108,87,107,109,89,95,91,94,101,107,94,94,100,108,103,88,99,97,113,105,98,110,99,100,106,105,96,94,64,112,87,105,81,91,95,106,107,93,117,104,101,98,99,103,92,99,102,99,97,106,119,101,82,112,98,105,103,108,106,80,109,102,102,108,92,99,93,105,102,109,110,101,104,109,99,113,106,110,106,106,89,116,100,92,101,95,108,89,91,93,101,115,91,112,96,97,107,109,94,105,114,103,91,91,105,113,102,98,104,91,108,89,105,99,98,117,88,100,98,105,102,99,125,97,99,103,90,113,94,102,101,112,100,110,103,109,103,104,99,86,108,91,98,101,117,104,92,95,107,101,91,104,100,96,99,100,107,99,97,97,106,97,101,116,105,104,101,102,96,104,102,77,107,103,98,98,102,106,99,113,117,97,101,105,101,104,102,94,95,99,105,102,101,107,94,99,99,99,98,93,103,103,109,92,104,97,101,96,99,104,87,105,100,106,92,105,92,82,98,109,107,104,91,102,111,107,108,109,95,108,102,94,99,100,103,102,108,117,100,101,103,107,99,97,100,109,108,106,105,87,88,100,102,111,92,105,103,109,102,103,108,86,103,102,94,105,89,105,113,100,99,101,108,100,100,101,103,100,102,99,96,108,104,101,96,92,92,104,121,101,91,99,105,105,97,94,111,95,98,87,107,107,95,117,101,100,107,100,96,101,90,68,117,100,97,99,97,113,105,105,91,93,95,98,99,82,95,100,104,100,100,107,84,106,103,98,107,100,93,117,112,96,102,108,104,101,101,106,96,99,106,92,98,103,92,97,96,109,100,107,106,101,107,90,101,109,100,117,100,99,104,91,112,86,105,96,95,96,100,92,94,107,90,100,103,66,71,97,100,113,101,99,102,89,106,94,105,100,100,96,108,100,95,109,101,96,92,109,98,102,92,102,88,94,102,114,87,110,105,96,100,109,92,91,77,100,100,88,111,89,86,96,108,101,104,100,81,102,106,100,94,91,115,104,103,101,100,105,96,98,105,101,98,95,109,110,91,96,104,85,105,98,101,91,110,97,87,99,100,92,100,105,102,94,102,102,105,117,100,96, +456.75159,105,92,107,94,95,104,95,100,107,105,100,106,102,124,129,94,88,106,100,96,88,98,120,99,96,113,109,109,105,104,106,99,94,113,113,103,108,110,117,100,94,95,104,95,102,108,97,103,98,89,90,99,93,98,112,98,106,98,109,90,103,100,128,94,105,107,91,96,103,89,91,109,87,112,93,95,95,98,103,92,103,94,102,96,105,97,104,105,105,98,95,94,97,95,91,104,103,100,101,92,99,97,105,90,89,101,99,113,100,102,102,103,92,102,97,99,99,92,101,92,104,104,119,94,109,114,85,95,92,94,109,100,98,108,108,96,95,103,102,97,106,98,99,100,83,99,94,108,98,102,98,100,98,90,100,92,104,103,105,105,132,86,109,109,114,93,91,99,102,112,98,109,95,95,106,109,73,87,105,109,97,107,97,98,107,95,109,102,106,93,100,97,101,100,114,110,96,101,99,104,88,108,106,104,99,105,106,107,105,101,104,104,98,97,95,86,98,105,96,98,88,99,98,94,98,113,117,105,106,134,99,104,103,96,105,102,103,93,101,96,96,107,112,103,92,104,94,98,106,102,110,113,104,87,107,109,96,109,109,106,93,97,101,101,101,95,111,109,99,105,98,103,112,109,99,102,105,96,113,106,108,102,103,100,113,102,92,102,107,95,108,100,107,100,99,112,108,107,104,100,101,108,103,94,113,107,103,102,106,103,105,104,93,120,103,106,108,98,103,94,103,93,107,105,93,98,105,94,110,106,99,121,113,115,107,104,109,119,101,113,72,114,101,98,105,103,102,102,107,106,103,106,109,104,112,108,96,110,100,107,109,108,99,101,103,107,95,102,129,98,105,106,114,106,102,99,106,100,91,102,110,119,101,108,109,110,117,108,117,113,106,96,105,108,94,101,98,105,99,102,101,106,95,92,112,105,108,108,96,98,99,104,113,122,102,102,103,99,91,90,106,105,118,94,97,97,92,103,104,114,105,103,99,94,109,103,100,109,109,96,112,97,110,103,102,94,97,98,100,104,95,105,112,98,96,102,113,112,100,109,88,97,97,100,113,103,101,99,110,99,105,99,95,103,98,96,102,103,108,99,113,116,112,103,114,78,113,117,98,106,109,105,104,116,114,98,104,102,96,99,102,102,109,103,120,99,119,107,131,114,118,112,109,107,110,97,108,102,108,109,115,114,99,102,108,99,105,98,102,113,103,105,102,108,104,106,103,105,110,110,95,126,110,98,106,97,108,104,109,99,111,98,107,100,99,106,113,106,84,104,102,109,104,98,115,99,106,115,105,101,88,103,108,103,101,99,109,94,106,104,84,108,106,111,114,109,110,105,105,99,102,108,102,103,104,98,99,102,102,104,103,97,106,114,101,124,100,93,108,105,121,95,114,105,101,103,109,101,107,103,102,100,116,107,113,100,115,108,114,96,93,102,101,99,102,101,93,110,110,97,100,107,104,99,105,106,109,99,101,111,100,116,96,104,110,108,101,107,109,111,100,107,104,107,90,105,100,95,101,99,106,112,106,118,105,111,103,110,101,105,102,107,116,95,105,118,99,107,100,106,104,96,115,91,113,107,107,107,96,102,103,104,73,105,108,113,122,116,101,98,111,112,105,113,103,109,107,104,112,106,100,107,107,117,93,105,101,113,100,109,101,104,89,99,100,114,106,106,113,105,105,103,112,102,103,101,113,104,106,110,112,103,101,112,104,111,105,98,116,114,98,103,96,105,103,109,105,94,107,98,110,95,114,99,104,92,103,107,106,108,97,96,111,103,98,116,103,114,104,116,100,113,100,100,108,111,102,99,113,109,93,115,107,96,105,108,107,112,109,110,108,96,114,112,116,109,107,119,96,106,107,114,99,114,104,103,102,95,103,117,114,95,105,123,87,112,103,110,106,106,103,120,117,99,102,98,87,92,109,92,111,98,96,113,98,103,105,86,103,109,111,101,99,94,107,105,100,112,109,105,112,114,109,117,113,101,107,100,103,111,113,99,116,112,113,95,104,116,81,114,111,109,112,107,115,109,97,105,115,121,110,104,106,99,104,98,92,100,98,107,117,112,102,105,96,105,100,105,121,102,113,105,97,118,109,105,100,95,108,108,101,95,96,109,105,113,98,107,107,108,103,104,106,103,99,104,118,117,94,99,121,103,88,109,98,97,108,103,100,96,99,108,95,102,99,98,100,113,101,104,105,100,102,111,104,106,110,94,100,114,110,113,94,100,113,98,96,98,88,98,103,94,109,103,106,95,84,113,104,105,110,106,101,107,112,104,112,109,100,90,105,109,102,85,104,88,98,104,110,104,104,101,105,92,99,108,100,89,100,100,106,106,98,113,109,87,95,108,95,98,104,116,94,102,90,103,108,104,107,96,89,119,105,94,128,99,134,106,108,106,101,89,102,112,95,104,101,97,99,105,98,105,100,117,102,104,111,106,98,100,102,102,104,113,108,101,129,112,107,97,72,103,107,101,106,112,106,102,91,107,103,98,113,108,109,109,94,105,113,116,104,109,99,99,108,98,93,99,101,107,93,119,104,103,89,110,103,110,96,104,110,109,105,110,115,99,115,106,118,92,104,100,99,105,105,112,113,109,104,102,113,105,106,109,109,110,120,101,105,108,97,100,100,96,118,96,99,107,107,117,105,98,101,106,98,103,111,107,113,102,127,106,101,109,106,113,104,112,80,94,99,101,100,119,116,107,87,115,120,101,112,117,109,113,99,104,116,113,92,111,112,109,101,114,102,102,101,121,103,125,107,113,103,100,98,110,105,131,94,100,109,107,110,108,107,104,92,106,99,103,112,104,106,110,100,90,110,114,109,103,117,106,99,108,98,114,112,98,107,101,108,111,108,123,106,96,102,129,102,109,104,110,113,98,97,101,101,103,110,115,111,117,113,109,100,108,110,99,106,99,99,96,98,100,108,116,110,111,114,107,97,94,110,95,106,106,106,103,102,100,100,121,108,99,106,112,111,105,102,110,111,112,117,100,122,104,94,108,116,102,104,105,95,107,108,102,105,102,128,108,103,110,97,106,116,108,101,89,104,113,122,109,92,109,91,106,106,108,109,107,118,77,99,106,113,96,99,95,95,102,106,100,107,117,107,103,103,117,98,99,106,101,121,98,109,101,104,98,113,94,110,92,108,94,102,103,104,103,102,114,96,111,93,106,107,102,117,105,106,107,106,104,98,108,106,109,109,108,100,95,103,104,119,96,109,106,106,94,95,101,104,113,99,108,109,101,113,119,107,105,88,101,109,105,105,112,101,96,111,104,100,107,107,109,116,106,116,104,105,106,111,95,98,114,105,114,94,105,103,95,101,106,95,108,97,96,105,110,111,105,95,117,107,107,107,104,107,98,110,109,119,100,117,102,89,108,105,107,98,116,98,98,114,94,100,112,112,103,93,109,99,99,107,99,95,114,98,102,106,106,115,104,112,107,109,102,105,108,98,95,108,101,109,101,95,106,108,112,106,102,124,110,109,86,113,107,114,99,102,103,95,99,117,106,109,109,101,116,103,122,109,123,107,98,102,107,101,103,108,127,117,108,113,108,106,110,112,115,103,91,105,108,115,90,98,104,94,106,102,105,97,98,100,118,105,101,102,108,104,107,103,106,106,116,101,109,132,90,102,130,113,101,115,112,99,107,95,112,104,112,94,109,110,110,112,103,96,97,112,97,94,111,95,108,103,91,108,103,89,93,96,104,103,97,114,102,102,104,96,102,106,101,96,99,99,106,115,100,101,107,109,108,109,101,111,108,113,74,112,113,91,102,103,110,106,98,97,107,104,106,110,104,96,108,94,113,104,102,95,111,105,105,107,101,104,110,106,106,101,98,95,103,101,111,115,98,105,103,88,106,104,116,112,73,103,95,110,103,100,103,106,121,100,113,110,103,107,125,79,103,102,102,129,109,107,109,97,110,96,98,87,105,101,103,110,103,110,108,99,107,109,105,106,105,118,112,105,110,105,99,107,103,96,111,118,106,116,103,105,109,100,103,109,108,98,109,105,109,114,99,107,105,102,91,109,108,103,104,116,96,119,101,96,92,103,113,112,104,103,104,122,115,95,124,96,110,85,109,103,102,87,107,101,104,100,106,104,103,107,105,110,97,102,108,104,104,104,86,101,110,118,83,97,97,113,98,99,96,95,100,108,117,102,95,116,105,90,116,112,106,110,102,111,110,91,118,116,107,108,110,96,105,106,107,113,103,110,110,91,90,105,96,106,107,101,110,107,103,98,103,104,108,103,104,81,101,109,103,106,108,96,94,118,100,111,83,109,107,100,106,113,111,111,104,111,111,105,110,103,98,102,105,113,102,90,100,101,103,109,106,98,95,116,102,101,121,111,106,87,108,101,127,110,121,100,100,105,114,109,104,97,91,90,119,106,108,107,113,89,104,113,104,107,104,111,104,101,111,99,111,106,96,108,84,103,103,97,95,110,110,95,95,102,99,85,103,105,97,107,99,98,105,92,102,91,120,106,102,104,96,108,91,101,107,102,106,102,112,101,114,109,102,94,106,102,103,108,104,114,98,104,121,116,100,109,95,107,104,97,102,103,83,100,100,106,107,99,102,102,108,105,102,105,107,124,113,107,99,86,104,85,99,91,110,106,98,108,95,106,111,106,105,98,97,101,97,106,100,103,103,104,102,115,109,108,101,111,113,103,100,100,107,100,108,109,95,89,104,100,87,92,89,112,109,109,101,101,109,104,116,127,109,99,96,117,112,99,112,95,117,109,107,100,88,116,107,116,112,112,91,109,97,109,103,111,105,99,108,103,115,104,95,94,101,108,119,104,121,113,105,87,113,113,112,94,105,102,108,104,99,107,109,113,100,104,98,102,116,97,100,117,95,101,100,113,100,108,104,92,71, +456.89203,110,112,102,99,100,92,103,94,109,103,98,102,85,95,105,102,104,115,88,99,116,87,91,97,116,103,102,123,92,104,93,109,103,102,106,87,99,103,94,86,106,104,113,92,109,106,119,111,113,91,106,87,91,107,99,98,107,91,107,96,78,104,99,88,103,100,92,108,102,91,101,107,98,107,106,100,102,101,113,91,95,105,98,114,111,103,105,107,90,90,104,103,106,105,99,86,102,96,90,102,100,109,99,104,97,100,87,103,114,102,104,95,86,98,105,100,99,98,95,102,106,108,106,103,114,101,76,87,104,111,91,106,101,92,107,103,104,106,93,101,97,94,94,102,97,108,111,106,90,95,106,106,103,110,105,87,98,73,109,119,99,106,98,110,122,118,113,106,105,87,122,95,100,105,105,101,105,96,95,106,101,103,121,104,96,99,91,95,104,103,103,102,100,96,94,104,102,103,96,107,100,94,97,101,103,106,105,106,107,102,95,100,112,107,100,98,120,110,87,100,109,98,91,94,100,92,95,105,105,104,100,95,109,101,99,99,97,100,103,105,91,106,99,106,100,100,97,98,116,95,102,107,96,103,96,104,107,102,101,116,102,108,100,98,97,101,105,94,105,91,106,104,107,104,97,99,125,104,106,105,94,109,103,99,103,99,87,98,96,92,86,105,99,97,107,106,105,108,110,76,103,103,98,109,98,111,96,107,107,102,69,102,96,96,106,117,105,113,105,91,96,109,95,114,91,109,99,91,101,102,104,109,105,101,115,96,105,104,96,96,90,101,101,97,108,108,115,106,108,105,103,105,107,97,107,99,106,94,96,105,103,102,104,97,108,122,110,103,80,99,95,96,107,113,111,94,115,96,104,108,78,91,101,101,104,97,105,97,107,100,99,87,100,107,96,110,92,95,99,109,101,120,90,106,113,95,110,105,92,96,90,98,101,93,105,99,109,99,97,97,93,107,102,114,69,103,120,110,113,106,98,104,103,93,106,96,101,109,106,110,112,107,99,99,94,97,98,105,99,113,121,100,96,101,104,101,113,105,103,98,88,98,101,109,105,112,113,106,90,109,95,115,115,87,96,94,101,123,102,104,114,117,104,87,100,96,105,104,97,99,114,106,103,97,89,99,93,103,100,104,99,100,99,102,94,103,99,97,108,93,100,104,114,94,102,75,105,97,101,99,96,104,106,112,104,106,110,115,108,91,98,101,98,105,104,102,100,97,108,93,103,101,110,90,99,106,92,90,105,81,100,111,83,108,96,110,87,112,97,105,94,105,94,101,106,103,94,113,101,99,89,120,107,97,112,98,110,104,105,93,92,101,107,100,99,93,105,100,103,106,114,106,103,102,106,106,107,106,107,100,100,104,104,113,100,104,105,88,105,108,95,101,104,109,104,96,109,103,102,104,98,96,96,105,109,99,97,107,93,110,93,106,90,106,117,106,107,110,102,102,113,106,107,106,99,88,106,99,100,110,101,119,98,104,110,102,99,119,93,102,101,111,100,104,108,116,105,107,102,99,106,101,110,100,100,111,104,106,101,120,100,103,113,94,100,100,98,112,106,97,99,109,97,100,127,104,106,101,97,96,101,86,104,94,104,107,110,109,89,115,109,100,113,82,94,107,83,111,104,100,98,95,114,91,96,93,91,101,103,108,101,116,103,97,105,107,98,95,90,104,103,83,100,102,95,108,104,101,96,105,110,99,111,113,100,104,99,99,114,114,96,102,100,96,91,104,109,108,101,101,107,105,102,105,112,98,104,105,117,95,101,100,101,97,102,110,96,114,111,104,99,107,99,100,107,106,104,101,104,100,112,99,101,101,108,87,116,107,100,99,110,103,104,87,105,102,108,100,101,97,105,106,101,100,111,104,103,105,108,99,103,118,115,101,104,110,106,109,101,111,102,105,107,112,94,106,112,96,93,98,108,105,107,97,88,100,104,105,109,106,95,101,104,99,103,100,94,98,109,116,99,94,107,94,100,106,107,95,99,101,110,97,113,105,108,91,103,92,99,104,107,100,96,105,99,96,91,110,105,110,105,108,109,100,105,102,99,111,106,88,108,108,104,105,96,104,99,95,141,105,103,98,102,95,110,108,108,104,97,92,104,103,113,111,110,104,95,104,85,109,109,98,98,108,106,108,96,103,103,117,105,93,99,109,100,100,92,99,103,98,107,104,113,102,102,107,90,112,108,100,102,101,94,93,114,114,103,101,101,72,102,98,109,104,115,108,87,107,104,105,110,101,104,96,94,102,94,106,106,114,117,111,115,94,106,73,100,110,87,98,94,101,91,108,110,91,105,106,113,107,98,104,96,101,113,113,108,111,113,99,110,99,107,101,110,101,116,101,105,106,95,104,104,114,99,80,107,99,109,97,104,109,91,109,90,104,101,100,107,101,96,105,91,91,98,105,100,107,109,105,104,106,93,101,102,99,97,95,91,104,100,102,101,103,108,103,87,114,117,105,108,99,102,92,98,115,105,103,112,107,109,96,115,98,106,92,93,96,98,102,99,103,108,96,99,109,96,119,100,101,115,109,88,101,88,97,105,98,104,105,103,104,97,113,107,98,113,104,100,105,104,88,97,116,101,98,108,105,108,95,99,103,104,78,98,108,115,110,87,106,96,100,105,108,110,96,136,91,97,94,96,108,69,112,108,99,103,104,107,107,129,111,97,103,106,88,107,101,108,93,90,107,90,119,90,101,113,101,101,107,108,113,102,98,115,102,111,111,103,109,101,110,96,120,101,108,94,110,91,93,101,90,93,101,96,101,85,102,106,101,131,96,98,98,102,94,91,97,101,99,102,104,108,102,96,95,102,109,111,105,100,105,105,108,80,102,107,94,87,105,116,107,91,106,98,86,96,105,102,111,106,97,111,100,105,95,96,101,103,100,95,101,97,108,101,97,98,107,91,96,103,108,103,93,95,107,97,107,102,96,96,100,98,117,88,98,106,105,107,96,99,106,91,95,106,98,102,102,108,104,106,108,92,109,108,93,106,101,91,87,112,95,107,104,107,101,97,115,91,99,94,89,117,105,99,71,111,109,96,99,105,116,105,108,98,105,115,99,94,94,107,101,101,98,107,95,104,108,121,94,101,104,97,104,98,94,95,100,97,117,106,102,102,105,90,102,116,105,107,91,101,103,91,110,105,102,95,104,104,106,98,101,100,109,88,99,101,100,104,102,105,94,108,103,92,102,102,78,105,128,93,112,104,104,99,103,100,95,97,100,97,93,109,110,110,110,92,95,97,87,107,95,98,95,97,91,104,111,106,100,107,104,94,102,92,106,112,104,99,96,107,94,109,97,108,106,101,95,97,101,109,104,94,103,103,106,106,99,111,117,90,96,106,99,108,101,100,105,105,88,117,99,123,99,111,127,113,98,98,106,88,110,98,101,96,102,109,102,103,106,103,111,99,109,98,95,105,114,108,99,108,98,104,99,98,94,101,100,102,94,106,100,105,87,101,89,113,89,111,98,102,105,108,107,95,87,90,99,110,98,100,97,101,99,107,99,114,101,98,110,100,107,123,105,102,102,101,99,103,111,100,100,107,116,109,93,105,110,93,95,97,111,96,110,117,112,99,95,99,109,102,101,101,106,98,94,101,100,108,117,106,121,97,101,89,102,102,105,92,115,104,109,111,109,98,100,96,101,101,94,97,113,92,101,97,102,100,96,101,110,107,119,109,109,95,93,109,99,102,113,95,65,97,107,104,109,102,103,98,94,106,108,106,97,115,112,94,110,106,88,103,105,99,111,100,90,129,106,100,117,100,116,89,113,110,103,100,110,102,92,120,105,99,87,110,120,102,109,101,104,98,106,94,86,103,112,101,88,106,115,98,103,112,98,104,99,94,102,92,111,74,90,104,98,97,98,93,101,83,103,101,103,109,94,115,102,104,91,106,98,98,90,98,111,101,92,109,111,105,108,96,104,91,112,95,92,105,99,97,125,108,86,126,104,104,87,91,117,108,98,97,91,83,108,103,90,103,100,113,106,107,92,112,106,117,112,103,87,122,104,103,108,99,99,121,100,100,105,112,106,98,107,102,92,102,103,111,105,107,103,109,104,104,100,102,111,101,108,97,115,98,100,106,114,105,107,103,113,103,106,83,100,99,91,108,99,81,122,96,109,100,113,121,90,101,108,104,106,101,89,102,105,105,91,95,108,97,104,104,101,112,106,111,95,117,100,108,107,91,102,97,91,77,96,99,93,100,109,88,93,94,101,114,108,105,100,94,101,101,95,100,94,103,102,94,103,93,89,96,89,109,95,93,108,96,99,100,109,98,113,106,102,106,97,113,93,95,104,102,106,107,100,99,94,98,97,95,113,77,99,101,106,98,102,79,107,103,110,103,67,91,105,100,114,93,113,93,114,102,101,97,92,101,106,102,104,98,101,107,104,102,101,91,103,113,94,93,75,105,100,95,103,97,107,97,84,102,104,99,108,96,95,107,97,107,95,94,95,95,101,105,117,108,107,102,105,96,98,99,102,98,81,86,93,96,101,96,112,99,112,100,100,97,98,104,99,106,99,96,106,102,97,107,94,103,108,101,131,101,85,91,84,98,99,95,94,108,101,105,93,97,88,97,98,101,111,103,100,100,91,95,107,102,105,96,104,108,133,93,92,95,104,87,95,87,107,102,96,105,98,101,98,90,87,99,100,107,100,116,99,94,106,94,115,87,91,103,100,102,112,96,107,99,114,109,121,98,102,101,108,98,108,107,101,113,103,103,105,97,84,116,105,102,103,108,103,91,98,100,96,109,102,98,91,118,89,100,105,100,110,108,104,102,92,88,130,110,85,91,100,103,103,106,95,105,98,97,110,111,98,103,100,113,108,101,101,103,109,108,110,99,108,90,89,127,93,115,110,100,87, +457.03244,95,93,83,102,111,112,99,126,105,87,88,87,104,119,101,109,99,120,119,102,97,96,104,125,100,103,96,118,95,112,114,98,105,121,100,94,113,92,107,104,111,93,104,96,104,105,105,109,96,100,110,106,108,100,110,85,100,105,108,102,94,107,114,101,107,96,109,99,110,108,105,107,95,94,92,107,100,101,110,105,82,116,110,104,109,101,106,109,95,104,99,113,103,96,91,114,113,107,106,101,98,99,98,105,94,100,101,104,105,112,98,110,104,109,112,104,96,110,113,106,95,105,105,106,109,106,113,110,112,110,107,104,88,108,106,112,98,109,113,102,99,102,101,112,97,117,113,102,93,99,94,98,116,104,101,98,111,97,103,98,91,101,100,107,106,99,96,94,101,95,113,102,95,106,104,112,102,96,108,107,107,110,102,108,113,103,100,99,102,90,103,104,104,101,105,110,116,89,115,97,101,109,100,99,87,114,110,103,103,111,91,103,95,114,98,102,113,117,104,117,109,108,97,100,104,99,117,97,102,99,117,109,101,101,97,104,98,125,105,99,92,93,106,98,108,102,97,123,114,111,101,112,93,109,96,100,96,114,104,108,101,100,104,112,100,109,110,101,97,96,109,111,105,109,104,102,101,113,98,107,109,114,100,101,109,99,93,99,113,112,99,122,107,81,99,99,106,110,103,101,105,116,108,105,105,109,108,110,121,79,87,109,110,112,108,104,103,106,108,105,107,106,110,113,105,94,99,100,105,118,107,106,109,116,99,116,91,106,97,107,105,112,100,94,109,99,101,110,117,104,116,108,96,102,97,109,113,96,110,99,99,102,104,99,91,101,109,105,107,103,118,112,117,105,109,97,102,108,98,124,114,107,99,99,102,103,108,102,111,92,108,101,109,115,101,98,102,115,82,113,100,114,97,98,105,95,114,116,103,107,99,115,97,110,99,101,120,95,99,61,87,92,97,98,100,106,109,94,96,107,101,104,108,104,100,94,101,99,107,106,111,95,100,90,86,109,107,107,105,104,81,101,110,102,110,98,102,111,114,74,109,96,96,115,113,103,109,104,103,102,103,117,95,112,107,104,100,98,113,102,101,102,121,105,95,106,114,111,86,91,107,107,111,108,102,109,109,100,116,114,105,101,111,104,87,125,114,95,108,100,107,90,92,107,107,104,95,108,105,103,100,92,106,99,82,103,114,104,86,96,101,103,101,91,87,107,113,103,111,99,110,113,106,100,111,106,113,109,111,116,101,122,106,111,100,108,104,105,101,90,108,90,97,104,113,104,102,105,94,109,82,102,102,99,100,107,110,105,105,113,105,94,102,99,109,98,106,110,109,110,111,98,112,92,116,104,100,102,105,102,100,104,118,101,103,117,94,98,107,101,90,112,111,116,100,100,106,110,106,114,100,102,95,102,98,104,87,113,106,108,107,102,108,110,101,100,106,109,110,99,103,101,106,106,103,101,109,101,94,115,100,96,101,99,95,102,109,106,114,112,92,94,102,110,87,99,98,91,101,101,102,101,112,106,103,109,104,103,102,99,109,92,112,110,97,99,103,107,106,94,97,106,91,112,99,104,108,110,112,109,98,99,112,112,106,109,110,111,97,108,114,104,99,102,64,102,94,94,103,106,108,103,109,104,119,108,105,93,115,109,96,109,105,100,96,96,106,99,105,108,105,114,112,115,100,101,95,102,101,97,121,105,96,91,101,101,103,108,106,105,96,117,84,108,102,113,104,104,106,79,105,94,104,106,107,94,98,102,104,95,103,100,109,110,111,112,112,104,97,117,100,111,103,105,104,115,107,104,117,103,106,117,99,96,114,112,120,106,129,99,117,102,103,95,106,98,123,108,104,94,93,101,94,100,104,113,102,102,104,103,107,116,107,100,98,107,94,108,111,101,95,108,111,103,100,102,105,103,99,96,94,96,91,109,93,101,95,114,102,110,97,94,104,105,96,100,80,99,113,104,92,103,88,95,95,102,114,110,99,103,102,105,103,106,94,109,94,109,105,107,110,103,108,109,92,92,94,109,108,117,110,98,104,99,109,97,99,96,111,117,108,108,113,102,108,102,112,101,100,102,113,107,107,74,105,104,97,101,116,93,98,105,104,101,91,87,108,113,119,112,105,123,101,99,97,108,106,91,99,116,98,104,98,99,104,109,114,97,105,94,111,103,102,102,103,106,102,102,111,113,102,91,104,94,108,109,103,103,103,99,98,108,95,108,88,94,93,114,111,100,99,80,109,99,98,105,101,116,86,102,102,89,108,121,100,94,105,105,103,107,97,101,87,99,105,106,98,104,101,107,111,98,108,110,106,104,105,109,102,114,107,101,115,94,112,100,121,104,105,104,113,101,109,92,105,99,128,100,109,93,106,109,112,102,111,108,90,100,119,121,111,108,103,102,106,112,98,98,101,99,86,121,90,103,93,99,83,109,101,105,89,101,105,103,111,109,105,93,104,119,103,108,92,103,97,112,105,104,94,104,94,106,111,113,110,124,98,105,102,114,93,109,103,105,111,98,110,109,94,108,99,102,99,105,95,107,91,104,111,103,94,117,100,94,100,117,100,91,99,108,99,106,101,103,100,95,99,104,97,111,109,113,99,102,102,103,112,89,99,102,107,97,109,88,113,106,110,111,90,100,99,104,105,84,93,107,119,108,117,94,86,91,98,104,109,79,122,100,100,100,107,96,89,106,98,123,96,87,100,94,109,107,111,119,110,112,109,112,105,108,99,110,95,104,104,120,105,111,91,99,98,105,115,100,113,109,115,105,102,103,115,94,91,105,111,96,119,106,100,113,101,109,103,93,106,114,100,84,105,85,104,110,106,97,96,90,108,133,94,103,114,109,103,112,112,95,99,106,98,98,99,111,104,104,109,109,109,112,104,108,109,103,107,98,98,95,105,110,101,101,122,122,99,105,107,101,110,103,116,102,111,105,124,97,97,100,115,101,102,102,100,109,102,97,105,112,112,117,103,103,101,103,124,125,106,104,111,97,105,113,101,96,98,115,113,106,98,124,105,105,98,104,109,106,107,95,102,102,109,111,104,99,102,91,95,92,94,99,96,103,115,104,85,98,112,99,97,98,99,89,102,105,102,102,116,98,101,114,110,116,105,97,108,107,106,92,106,104,103,104,103,110,106,115,101,112,102,94,107,107,106,94,104,100,137,103,93,99,101,96,92,102,98,101,101,105,98,103,102,92,110,100,102,103,102,114,86,103,106,105,103,99,100,104,105,77,102,99,89,112,90,107,93,91,108,98,104,100,102,87,111,98,105,104,95,120,99,97,94,99,98,100,102,107,101,125,101,114,104,107,91,99,109,92,100,113,110,111,101,102,97,102,104,91,109,104,96,108,91,98,108,102,105,109,98,96,119,108,95,109,108,107,105,97,110,121,104,100,109,104,94,84,107,113,97,108,99,102,100,95,107,104,112,105,109,102,98,111,108,113,108,98,97,105,101,108,111,121,105,90,112,101,111,106,99,99,115,100,109,91,94,99,108,103,98,103,98,114,92,103,99,115,100,100,110,95,95,95,111,107,112,96,101,94,98,112,100,104,113,107,102,114,105,105,108,95,129,105,113,87,110,107,101,110,113,104,99,106,105,96,102,104,112,91,110,102,106,99,99,103,102,99,105,115,106,98,104,96,106,98,104,116,110,112,99,94,92,96,99,105,108,98,103,100,103,108,112,103,96,97,108,102,110,99,117,111,117,114,103,102,106,94,92,102,108,106,107,103,100,98,99,95,107,82,91,100,106,91,106,110,114,104,100,115,106,101,101,112,103,105,98,101,98,116,104,87,98,103,93,109,102,100,103,129,102,110,110,94,111,119,96,105,102,99,98,98,100,97,99,110,106,117,103,105,102,108,102,94,99,111,100,111,92,121,108,101,101,76,111,101,110,102,109,101,92,102,108,89,109,113,103,105,101,108,98,98,111,109,84,97,105,88,98,109,92,97,93,117,95,111,110,105,106,114,111,106,104,100,114,96,103,117,103,110,114,98,105,103,109,101,105,110,105,100,113,116,109,99,111,108,103,98,101,99,109,109,90,98,94,107,81,104,104,119,113,107,97,102,108,126,101,101,109,85,106,103,95,102,101,98,102,101,99,107,113,115,113,94,76,108,109,103,120,95,95,91,99,87,102,103,107,106,102,99,103,115,104,102,107,98,105,109,106,109,100,109,103,100,99,109,108,125,106,97,111,111,108,106,96,100,92,95,109,102,97,120,102,99,112,97,99,111,109,103,94,113,110,104,107,95,105,106,102,108,104,99,92,103,92,113,112,112,106,108,105,113,105,95,97,102,100,101,99,107,98,107,99,96,94,117,102,109,112,101,104,103,113,106,111,96,101,106,101,101,95,104,118,113,109,98,91,104,97,110,100,112,103,96,100,101,123,95,99,86,102,96,105,93,95,108,99,94,102,96,99,97,115,112,113,96,102,88,109,98,92,108,106,109,105,95,93,105,97,90,100,94,97,105,100,131,103,97,109,104,103,118,106,106,109,96,104,110,93,79,109,105,97,111,98,111,100,106,102,98,117,111,110,135,104,105,117,102,103,107,113,101,109,100,106,106,116,111,100,108,118,104,107,104,99,95,105,116,96,105,100,106,109,98,104,94,110,93,115,123,97,105,109,102,114,109,104,112,104,103,109,108,108,110,108,98,98,107,103,109,100,87,106,98,94,87,97,102,109,98,100,95,96,95,95,104,105,87,120,104,96,102,105,115,105,101,119,110,103,115,103,113,106,98,100,105,83,83,92,99,98,102,99,93,100,103,110,110,102,105,100,96,108,108,103,107,113,109,95,98,97,95,102,116,105,100,108,102,96,98,98,106,86,100,105,109,114,103,105,87,103,102,97,94,105,97, +457.17288,123,86,110,95,86,95,113,78,87,108,86,91,99,96,104,99,100,100,101,104,98,115,100,104,103,104,90,96,102,106,113,96,105,101,101,95,101,92,111,102,97,98,109,113,96,97,116,113,88,107,102,99,120,116,99,109,101,109,99,103,97,102,96,98,104,107,86,98,90,108,103,100,93,100,106,102,99,103,104,93,105,104,110,106,96,92,93,121,111,98,98,100,105,104,101,90,95,94,90,109,87,100,95,94,104,99,120,108,113,98,109,92,106,95,105,95,100,106,108,94,99,106,111,100,107,105,114,99,110,107,99,122,116,91,108,99,101,99,91,97,104,106,113,110,103,95,108,114,109,100,98,102,99,90,88,107,105,107,96,108,88,103,106,121,102,105,96,106,96,108,99,120,86,100,112,101,97,99,111,121,105,95,108,105,98,101,107,92,105,104,93,94,111,102,93,103,102,105,110,101,102,95,101,91,108,110,100,99,112,101,109,102,102,103,101,106,119,105,99,102,100,94,109,102,91,102,108,108,100,98,98,96,108,99,104,107,113,111,95,100,99,95,103,106,95,106,96,106,113,116,99,108,102,101,94,101,100,94,108,101,93,103,103,110,113,84,76,93,84,100,105,102,105,103,104,100,101,114,98,100,103,109,104,105,117,104,100,103,102,105,105,84,109,108,108,107,108,95,114,110,112,96,98,119,97,113,105,108,100,103,92,118,115,101,97,105,116,103,97,115,98,97,103,101,119,96,102,99,112,118,114,92,103,104,101,119,103,97,105,82,99,113,105,101,102,106,105,98,106,96,99,108,112,109,108,96,99,110,85,104,100,102,101,88,102,93,103,72,109,105,108,110,109,103,113,93,105,117,105,107,106,105,104,99,99,103,109,104,121,107,123,97,99,120,98,117,107,115,91,112,104,95,99,90,97,91,106,136,98,102,107,91,108,96,100,88,80,112,103,100,84,108,101,98,100,87,106,98,89,103,105,103,103,108,102,85,96,112,95,102,82,101,92,103,102,96,93,96,104,108,92,98,99,96,99,93,109,99,107,98,110,102,92,104,103,98,109,106,79,109,101,125,97,107,114,98,89,111,107,113,105,121,118,97,102,83,109,102,116,97,103,101,97,104,93,101,103,88,109,109,105,107,99,114,105,109,99,103,102,96,99,95,102,111,113,112,107,104,100,105,99,103,95,102,94,110,102,100,103,96,99,119,95,95,94,105,94,96,99,103,99,96,98,90,109,99,110,83,99,104,94,103,96,114,109,109,108,98,91,96,106,112,99,108,97,116,122,117,104,100,89,109,101,112,89,95,102,98,83,99,102,100,95,102,105,100,104,106,112,102,117,94,112,114,106,99,92,94,104,103,103,102,111,108,98,106,96,91,104,95,108,104,106,101,103,107,105,112,114,111,102,97,98,99,104,108,99,101,104,110,100,106,102,107,108,94,107,109,98,105,100,107,100,102,101,102,95,105,111,109,103,115,99,98,103,114,104,109,104,94,103,93,93,107,75,98,100,85,109,100,102,104,102,97,106,109,110,99,117,102,114,111,97,98,102,95,113,99,102,105,105,100,112,89,112,111,103,101,92,98,105,103,103,106,107,81,105,96,103,109,119,94,95,106,97,95,100,99,106,118,102,101,109,107,90,100,104,111,104,103,109,106,105,100,92,100,102,100,99,115,105,99,111,89,104,102,110,97,102,111,102,108,104,105,98,95,105,103,106,97,109,105,106,117,99,102,108,101,109,105,105,101,106,89,102,87,101,101,105,101,104,105,116,113,99,114,99,103,101,110,112,108,112,122,115,106,86,76,95,102,97,97,100,112,117,96,113,108,123,101,114,91,82,104,109,94,114,106,108,105,113,103,88,102,105,107,108,96,106,108,100,95,104,104,99,106,98,101,96,84,101,101,111,98,99,71,102,106,96,98,99,101,96,120,102,98,95,109,93,114,108,100,106,97,99,109,94,93,108,114,100,95,103,111,98,98,92,99,115,97,110,115,113,101,105,105,104,106,93,111,96,119,106,112,103,101,95,105,101,109,97,117,112,106,103,90,96,96,93,98,101,113,106,108,118,97,91,100,105,113,100,103,107,103,105,95,110,107,104,102,93,97,108,97,101,106,95,98,100,96,107,99,67,126,85,99,82,117,97,109,109,104,111,104,101,94,103,104,97,105,112,118,100,103,97,91,106,103,110,102,90,107,94,112,110,99,101,95,87,106,102,110,100,103,101,99,104,96,95,105,91,100,106,86,102,101,95,102,122,110,97,101,84,99,102,116,110,103,105,103,101,103,109,98,113,104,85,94,97,97,99,113,83,100,88,100,102,104,116,99,99,96,100,115,106,96,99,100,104,106,89,106,102,105,100,78,100,99,100,115,105,108,104,113,102,95,108,95,105,112,114,111,101,107,110,117,103,103,99,92,91,114,92,87,107,113,99,101,109,103,102,99,115,112,98,103,104,99,109,103,99,108,107,97,101,101,105,101,107,113,105,101,108,110,110,105,99,110,105,95,88,105,113,110,120,100,109,105,107,100,97,104,105,95,93,103,92,114,102,94,113,98,107,102,113,94,116,109,109,104,98,112,91,108,103,95,99,101,102,103,112,111,105,96,95,98,113,94,91,109,112,82,93,75,94,109,103,130,107,101,87,98,110,102,92,92,108,94,112,105,106,109,96,104,114,93,101,108,106,111,86,113,117,112,106,115,120,69,104,107,102,106,99,102,102,99,97,117,123,100,99,98,106,103,96,99,106,102,106,107,92,109,91,88,113,100,106,109,95,108,103,105,83,102,113,98,111,92,112,109,106,102,102,103,101,95,105,109,102,97,98,104,100,115,88,101,108,101,111,112,116,108,99,102,94,108,98,104,110,113,115,110,109,117,116,96,101,93,116,109,103,104,119,103,88,103,101,102,107,102,100,109,96,99,107,111,104,101,94,94,112,94,102,101,101,102,94,101,97,103,104,111,107,107,103,118,110,103,103,94,111,103,116,105,99,107,111,103,104,111,103,96,104,109,108,105,107,98,91,107,83,107,105,101,108,108,97,104,102,115,108,95,99,109,76,97,105,107,109,101,111,131,81,102,109,100,111,125,93,96,108,107,100,110,114,106,103,105,100,87,103,86,98,100,91,103,103,97,93,102,92,113,119,111,101,95,100,101,103,107,106,100,101,105,101,97,96,94,117,96,109,102,102,97,102,90,102,112,103,113,115,99,87,110,95,107,113,96,96,98,95,112,109,121,118,102,104,108,100,95,108,104,99,103,96,111,99,105,102,109,139,98,113,99,102,105,129,83,104,106,105,94,97,104,95,126,100,96,100,95,93,98,109,93,97,94,102,99,113,98,108,109,106,104,99,97,109,101,108,90,87,108,94,101,104,110,83,102,90,99,85,100,97,103,109,106,108,102,100,106,97,96,104,113,91,103,116,99,99,103,95,102,98,97,98,105,109,98,92,97,102,109,93,100,108,96,98,102,98,102,102,104,95,112,103,106,109,104,103,98,106,103,100,102,105,112,103,100,105,104,102,105,97,112,110,103,85,97,101,112,101,101,104,107,116,104,108,110,103,104,99,102,105,103,110,92,81,108,108,103,102,105,112,113,101,106,99,114,106,105,96,98,103,107,107,110,98,101,112,105,105,98,92,113,94,103,113,104,93,102,104,106,105,104,88,94,102,105,108,104,105,109,109,113,104,96,112,100,102,104,96,109,96,101,102,99,103,105,95,112,102,100,110,103,101,110,101,95,113,100,104,104,107,106,95,101,107,99,103,102,90,100,96,109,102,108,98,102,103,98,100,100,118,102,109,107,106,105,80,132,98,102,95,108,96,115,108,101,95,101,105,104,99,105,99,107,106,102,94,109,108,102,103,101,100,98,96,104,95,85,101,92,105,110,105,109,94,99,102,109,95,110,95,102,101,101,104,124,108,95,95,98,96,100,112,129,105,85,99,101,106,109,103,98,102,118,110,94,102,106,112,99,88,106,109,102,104,99,100,102,111,104,106,107,104,107,116,106,103,105,118,103,107,103,113,109,111,105,114,98,110,101,91,98,106,105,97,105,97,104,100,109,101,105,113,105,92,99,96,81,107,106,102,126,104,109,109,94,107,91,99,83,101,96,85,101,113,85,98,104,98,97,102,95,87,99,110,98,105,95,113,107,76,107,112,110,115,99,107,93,103,104,104,89,109,83,97,81,91,109,107,96,95,109,96,98,99,108,112,103,97,93,104,103,105,106,101,103,96,100,102,105,108,102,101,108,103,92,98,96,97,104,100,114,93,108,99,101,94,113,102,91,107,111,97,110,96,109,94,83,112,90,108,98,94,99,98,81,93,107,100,103,103,103,98,109,112,95,112,109,104,108,102,104,99,101,100,100,98,111,99,102,116,110,106,111,102,105,93,106,101,99,96,96,98,97,93,97,99,114,103,101,107,113,107,94,106,95,104,99,98,99,116,100,104,100,110,100,103,95,92,101,119,96,113,101,98,103,100,107,98,95,90,111,95,122,106,96,101,98,106,95,76,94,95,100,98,95,105,106,82,100,106,101,108,102,107,95,111,102,100,108,102,108,108,101,90,97,96,114,100,93,104,113,103,104,93,113,102,111,108,97,113,89,105,113,110,98,100,105,95,94,96,100,103,97,99,124,100,94,92,106,87,107,111,76,108,102,96,92,101,102,91,102,85,95,115,98,97,99,113,96,92,102,100,106,113,107,103,111,116,103,109,96,109,99,108,96,116,97,99,103,101,123,95,105,104,93,95,102,109,95,97,91,111,102,94,108,105,96,102,103,98,121,105,100,121,88,110,94,107,111,113,115,98,109,80,99,109,94,105,95,116,103,105,97,108,98,115,90,91,98,101,96,94,91,98,81,94,93, +457.31329,109,97,104,114,94,118,106,124,111,92,90,102,98,91,126,108,99,87,104,113,109,101,103,116,91,103,114,106,108,120,112,90,106,92,102,106,109,96,105,94,101,110,100,106,107,107,98,109,107,101,111,115,90,105,106,85,98,99,113,102,106,113,113,104,94,116,107,114,105,88,97,108,100,103,90,109,105,100,107,106,107,103,103,111,105,100,102,108,92,102,115,99,101,98,103,108,119,102,105,109,99,101,110,98,103,102,99,102,102,101,104,93,99,90,98,91,113,100,102,87,96,84,96,94,108,98,98,89,111,104,118,102,101,105,109,105,101,101,96,90,96,100,104,106,95,109,98,95,116,90,114,102,112,95,100,95,93,107,105,99,90,107,121,113,107,109,94,96,99,98,103,110,113,106,98,96,111,96,92,108,98,110,90,109,112,111,114,109,109,109,103,112,99,119,103,99,108,100,101,104,101,104,106,70,103,99,101,101,105,107,96,98,111,108,104,100,103,111,95,93,109,109,101,110,104,96,103,111,107,116,95,98,105,110,112,115,109,108,109,106,114,91,99,96,95,104,110,104,101,111,99,102,99,99,102,109,102,94,92,108,103,107,110,97,105,115,105,108,99,96,106,100,94,102,107,79,103,107,99,102,99,98,106,104,95,106,70,102,89,100,103,90,110,108,102,103,100,110,67,116,114,117,92,100,107,97,114,108,109,118,94,103,99,108,102,101,110,98,99,110,98,95,102,101,102,102,103,108,106,113,107,102,89,103,111,100,97,95,86,109,85,106,104,92,114,100,109,114,105,103,109,100,94,99,105,96,118,105,104,100,101,95,102,97,101,110,100,100,116,100,113,122,95,110,119,95,110,103,102,92,117,105,124,99,98,100,95,109,110,103,104,106,98,108,97,98,120,97,104,103,105,109,102,101,100,102,99,112,99,99,93,95,86,109,98,117,101,108,99,98,99,99,106,98,109,97,94,91,109,104,96,103,112,92,104,109,100,107,107,123,100,106,101,98,101,94,101,104,101,105,101,107,105,103,102,106,101,107,112,120,100,123,102,109,111,109,100,98,103,109,96,100,99,94,100,88,94,103,121,108,109,116,122,103,101,116,106,93,104,110,113,100,96,106,98,108,98,110,103,106,120,107,109,94,109,108,101,100,110,112,124,98,108,102,104,102,107,116,89,101,107,86,109,109,106,104,107,104,100,114,101,116,109,108,107,100,113,109,72,105,96,115,90,105,109,98,98,98,104,98,116,113,101,105,111,95,91,103,92,91,106,109,105,109,103,104,104,100,100,111,94,113,95,100,104,104,99,100,96,96,106,95,100,91,104,99,96,116,111,101,100,108,103,108,109,111,103,88,113,95,113,100,109,97,112,107,91,98,85,107,94,107,110,111,103,94,115,106,109,110,95,104,103,105,96,77,117,102,103,118,103,107,105,99,95,101,103,101,110,109,104,111,102,95,102,95,80,97,105,99,102,117,103,99,105,110,101,107,122,109,98,112,111,100,110,107,120,98,106,102,109,118,101,100,91,106,110,116,117,101,107,109,117,110,103,90,97,103,114,93,107,95,98,112,91,96,109,106,110,97,116,107,110,101,108,99,83,95,107,108,99,86,105,118,104,98,105,108,102,108,108,109,114,107,113,102,106,104,108,115,102,104,91,107,99,86,121,106,111,103,110,97,103,96,95,94,105,103,93,112,106,108,110,99,90,98,99,102,78,104,98,103,111,103,97,102,103,104,92,98,104,99,106,97,89,109,113,99,109,97,96,97,109,100,107,91,104,109,113,109,108,103,109,120,105,99,113,96,93,113,99,100,113,110,112,105,95,112,106,111,117,87,95,107,109,108,108,112,107,102,98,116,105,110,118,90,94,99,108,110,109,96,113,108,109,94,90,101,111,97,81,113,114,97,105,105,108,105,112,92,103,98,98,98,96,101,98,111,109,99,98,101,114,114,113,93,107,93,120,103,101,97,104,107,109,114,115,116,112,100,83,114,115,113,105,108,104,105,95,94,93,106,96,118,91,105,97,125,112,117,104,113,95,103,101,98,100,103,98,113,112,106,100,115,112,110,102,118,100,104,109,106,107,120,97,95,92,102,122,109,98,112,95,111,99,98,94,100,113,102,112,98,72,90,104,107,96,108,96,107,96,102,105,103,108,93,105,104,101,103,106,109,98,102,97,105,96,95,105,103,95,107,106,105,109,95,105,105,105,103,117,105,103,108,114,97,92,102,93,103,100,88,109,96,114,108,100,96,99,110,104,112,104,101,101,102,105,98,101,105,104,117,107,106,106,108,108,115,110,109,117,97,112,92,98,94,109,98,97,96,106,109,96,104,105,110,101,111,97,110,104,100,97,98,112,103,105,98,98,94,96,88,108,127,103,100,104,98,98,99,104,105,99,106,101,105,111,105,96,97,104,114,97,101,89,105,109,106,107,118,101,104,100,110,106,107,92,98,96,79,101,93,98,86,98,110,99,98,99,100,110,87,108,93,106,109,113,97,106,107,104,108,101,103,99,94,100,96,97,99,111,113,106,108,103,96,101,100,99,104,105,110,95,100,110,103,101,111,98,107,103,101,102,97,106,98,95,99,107,105,117,98,114,110,98,93,98,99,113,99,113,98,95,96,101,106,105,100,121,105,96,111,105,108,94,101,109,90,107,102,104,105,98,112,117,96,92,109,101,106,93,81,114,102,99,96,94,98,104,108,98,104,106,110,98,108,93,117,121,94,102,98,104,104,109,104,110,104,106,91,104,112,99,101,105,116,92,119,107,99,97,109,107,103,104,103,110,107,103,109,96,98,109,115,111,113,103,99,106,131,111,105,106,105,101,92,100,107,93,107,108,111,100,107,112,94,90,107,96,113,103,110,107,121,111,106,93,100,108,98,101,91,119,98,115,97,100,80,105,106,104,108,138,108,101,109,98,113,96,92,112,102,106,71,94,102,119,106,98,92,98,110,91,96,110,109,102,106,108,95,99,112,110,95,99,106,116,99,89,115,100,98,98,109,111,104,114,104,100,100,90,115,103,104,95,84,104,99,78,90,113,105,113,100,97,111,109,119,99,95,108,104,109,98,100,110,103,112,91,104,95,103,103,106,119,104,98,118,107,99,106,109,109,100,104,100,103,99,101,104,95,100,101,104,103,115,111,106,104,91,106,92,91,81,91,112,100,103,98,109,96,119,89,99,97,95,105,94,94,96,110,110,95,93,95,111,105,111,104,92,108,102,109,105,99,101,98,109,90,99,103,103,105,102,107,116,107,100,103,100,104,105,113,107,92,98,111,104,95,97,103,104,106,100,109,117,107,100,99,103,99,101,112,93,97,114,113,103,116,87,99,90,100,92,110,105,83,112,102,93,108,90,105,110,107,109,105,107,117,91,106,122,107,98,104,97,103,102,103,95,106,105,105,110,96,95,98,106,103,95,106,110,98,91,106,104,113,101,123,96,109,105,96,98,91,102,104,109,117,99,118,111,111,112,107,122,119,99,103,93,116,108,94,102,109,104,98,87,103,101,101,113,103,96,105,112,113,103,104,105,99,102,114,109,117,104,119,109,108,112,106,105,108,112,120,96,105,114,107,115,90,106,112,113,112,83,103,110,93,106,90,112,104,110,104,117,109,104,100,100,68,94,103,103,100,108,103,88,102,104,111,107,107,115,106,100,108,106,120,108,106,102,101,111,110,102,109,114,102,99,104,83,92,104,91,109,100,100,94,112,96,107,101,89,96,104,102,114,103,76,105,90,98,104,106,99,99,102,109,107,93,111,93,103,107,98,96,115,102,105,114,98,103,101,104,99,101,105,80,109,91,98,95,106,102,105,95,100,97,109,105,104,107,110,100,113,108,101,90,123,103,111,90,102,111,108,97,103,103,92,103,102,114,103,101,103,107,110,103,114,93,94,103,99,111,114,113,108,120,122,102,88,94,103,102,96,106,111,101,108,92,102,98,106,102,93,113,96,103,105,104,109,95,102,117,108,99,107,97,109,97,90,100,100,106,106,106,103,111,110,112,115,101,99,110,107,102,122,104,116,106,101,109,99,131,105,99,96,108,101,108,103,94,101,113,101,104,106,105,107,97,106,107,107,104,106,107,108,94,110,95,98,107,103,100,102,106,107,104,102,111,95,110,101,103,109,103,113,101,96,108,106,109,108,102,100,101,112,105,103,103,104,109,112,106,101,103,107,101,107,104,105,107,97,102,105,87,102,102,111,100,91,99,103,96,96,105,107,113,100,102,108,115,96,105,96,94,116,109,102,102,116,99,98,118,106,103,96,107,98,113,101,110,113,103,106,113,95,106,109,95,95,104,118,103,94,103,104,121,106,102,94,113,117,108,105,109,100,107,101,105,94,113,127,108,111,99,106,114,97,109,88,109,90,105,100,108,105,102,101,106,99,91,107,106,85,89,104,102,110,101,117,103,99,94,108,99,104,98,101,100,98,91,118,116,105,120,102,98,100,105,95,79,83,106,75,115,107,106,97,94,113,103,102,98,105,102,91,102,100,94,106,100,95,99,96,101,99,93,104,96,102,115,99,107,115,108,98,120,113,113,109,106,103,98,99,81,105,106,102,101,104,107,106,95,116,112,103,97,103,109,105,111,112,106,109,119,99,111,100,117,100,106,111,95,93,105,127,104,111,102,106,97,107,100,103,105,102,110,95,104,119,99,97,90,101,99,112,103,102,98,100,109,109,103,98,110,102,114,104,95,102,106,103,88,106,93,103,105,101,109,109,100,91,108,110,96,104,108,107,105,99,100,91,100,92,105,103,90,106,108,112,105,93,117,96,108,104,94,97,103,100,97,94,97,97,96,95,103,71,93,109,121,89,102,109,84,106,99,108,103,106,104,101,99,95,109,98,110,101, +457.45374,97,91,102,91,111,93,101,93,95,91,90,89,93,109,107,96,81,108,116,110,114,104,106,105,94,105,111,108,101,102,103,133,102,97,106,95,123,80,97,102,94,98,95,98,103,107,97,118,96,115,90,98,107,114,106,103,103,114,117,98,105,110,101,97,107,110,101,104,109,102,109,99,108,103,93,127,106,97,101,106,117,108,114,105,103,95,96,102,98,102,113,95,103,88,95,105,107,110,125,104,105,117,112,107,97,96,109,99,100,99,101,111,108,105,105,97,105,105,113,137,95,104,111,108,102,116,109,96,111,101,110,102,101,99,92,89,107,96,105,106,109,101,105,98,102,99,114,104,97,100,97,98,105,101,98,105,99,98,104,107,109,111,109,114,111,96,96,99,103,85,107,104,106,102,99,98,102,92,113,100,99,99,104,117,102,100,102,96,99,107,101,105,120,97,104,106,98,95,115,107,94,99,113,100,106,106,103,99,113,108,103,89,99,101,104,102,100,107,102,104,125,114,102,101,104,102,111,114,106,99,95,94,102,100,99,123,111,96,114,100,100,99,104,99,98,106,102,107,112,107,107,116,100,100,108,103,114,99,94,94,110,110,105,105,92,100,110,118,95,97,95,88,109,110,114,95,105,107,127,100,85,105,100,108,101,109,96,102,109,105,97,108,110,113,105,79,111,77,101,100,118,103,117,113,95,112,108,108,105,106,100,104,102,125,104,96,112,89,79,89,95,100,104,107,104,88,102,97,111,101,111,106,103,102,103,106,98,99,96,99,116,109,98,107,101,114,101,112,117,113,103,103,87,101,98,103,102,113,109,96,106,102,78,95,97,99,95,98,103,100,114,116,114,102,95,125,99,106,95,95,105,108,89,105,100,105,95,102,110,94,93,96,102,107,104,97,112,114,106,105,110,103,105,117,109,120,110,107,88,99,94,104,116,110,99,102,100,99,107,99,92,100,96,102,107,99,99,101,98,104,100,110,97,107,107,104,100,104,105,109,108,109,94,106,100,115,93,102,106,100,112,108,100,105,100,101,105,105,120,99,88,106,96,108,105,108,93,113,98,106,102,96,101,110,91,98,101,125,102,105,103,103,125,102,94,103,105,98,112,102,97,101,107,113,122,98,102,95,113,99,99,110,103,99,106,107,105,106,92,112,119,101,106,102,109,103,99,115,96,85,94,113,98,93,105,106,103,106,86,98,109,113,99,113,98,113,103,101,105,95,112,110,109,95,106,94,99,105,105,111,93,94,103,98,94,106,99,116,101,98,91,101,107,109,103,110,93,105,103,102,108,105,109,84,105,103,113,100,109,108,99,97,112,106,107,104,99,103,111,96,105,104,97,109,117,112,94,105,109,99,102,102,96,93,89,105,97,100,105,125,95,100,95,123,97,125,104,144,112,109,109,105,95,98,103,116,105,106,104,107,97,112,115,96,114,106,116,103,114,100,109,105,108,100,93,97,99,90,113,108,96,95,103,97,92,98,113,112,106,108,108,110,109,107,68,113,108,94,112,92,108,96,94,101,103,109,112,103,102,94,101,106,111,105,95,103,90,109,99,98,110,108,99,105,102,102,102,109,105,100,103,101,121,113,103,104,113,103,117,106,119,100,114,99,97,107,111,117,107,98,114,98,100,110,96,94,105,106,111,103,102,105,96,116,102,99,102,108,95,104,105,93,95,97,71,101,95,106,114,105,120,94,107,105,121,103,103,98,87,97,103,122,102,112,84,99,109,102,107,94,111,101,106,100,94,98,102,102,113,113,113,109,111,110,113,97,91,102,110,98,108,88,116,107,96,110,107,100,95,105,106,103,98,113,102,111,125,100,98,99,107,114,106,99,107,101,113,102,115,102,110,103,108,108,112,95,103,108,119,102,100,110,108,99,131,101,106,106,104,94,103,108,109,104,122,105,108,99,120,93,104,93,105,99,101,105,95,103,101,108,104,108,104,105,113,99,99,106,102,109,113,105,97,107,105,104,97,85,107,111,112,71,103,104,92,99,93,98,102,122,116,110,99,118,103,107,100,103,103,101,103,113,114,112,116,92,90,106,104,99,113,87,106,109,107,87,103,104,100,102,106,110,92,105,99,94,102,71,106,104,103,111,100,111,89,102,95,99,102,105,108,108,120,94,109,98,106,107,96,101,94,101,111,110,109,99,124,104,102,113,100,92,98,100,95,99,91,102,85,99,101,96,111,93,96,106,102,101,99,114,101,107,109,96,100,100,104,103,101,108,96,98,108,110,112,97,99,120,91,98,107,94,105,109,105,121,94,117,102,108,105,111,91,101,103,110,104,120,99,100,109,102,111,128,99,101,108,106,104,112,102,101,107,95,113,104,111,113,112,97,91,109,105,96,103,102,111,102,111,111,102,104,113,109,96,103,68,108,101,93,97,102,107,106,104,94,113,106,86,92,100,104,97,107,95,102,109,102,109,98,104,99,93,95,127,113,99,106,119,104,103,116,98,100,100,99,102,103,103,99,81,103,92,98,98,116,101,82,104,98,103,106,102,103,107,101,95,95,100,116,103,109,106,105,99,106,100,95,100,105,104,103,113,110,95,115,141,108,100,93,92,91,94,108,105,104,111,107,112,86,104,105,113,102,91,107,108,107,105,105,112,97,117,96,112,99,100,93,109,105,104,113,95,117,98,95,119,114,108,92,95,112,101,104,94,104,92,105,102,106,101,112,115,111,100,110,102,92,95,103,99,114,113,129,98,110,98,111,117,100,115,84,111,99,106,115,108,96,114,104,115,110,117,125,96,99,105,113,109,113,104,105,106,92,115,100,107,83,84,101,91,83,112,102,101,100,124,105,106,107,111,106,116,106,103,116,94,109,91,109,117,98,102,104,101,101,90,112,101,110,115,106,98,118,109,108,106,108,101,101,97,98,113,101,103,106,113,115,97,110,100,111,100,100,106,96,100,113,113,105,103,96,112,129,100,93,95,103,99,110,95,102,92,103,109,113,105,104,106,90,105,106,101,116,110,105,110,107,111,102,102,103,106,115,96,115,100,87,110,95,85,106,107,118,104,113,112,105,106,133,105,95,106,95,112,89,96,99,110,99,99,106,108,102,107,98,99,107,92,94,92,98,98,124,105,92,108,102,116,109,97,94,105,110,101,98,103,99,97,120,90,70,91,113,108,109,105,100,107,101,103,106,99,99,98,107,97,100,100,97,116,100,78,107,106,87,103,96,105,102,108,112,101,97,99,114,102,115,106,102,97,99,108,113,106,105,88,101,107,113,94,98,108,105,110,99,99,106,107,100,103,102,112,113,103,107,100,98,117,87,113,109,113,116,102,113,102,105,119,97,111,91,109,101,100,93,110,129,96,108,99,102,117,91,102,101,98,96,100,101,98,107,102,106,101,120,108,116,102,117,104,103,104,99,102,103,95,101,92,100,104,105,93,110,99,96,103,103,99,97,117,112,98,107,101,106,108,117,97,104,105,96,108,105,94,103,107,95,109,99,100,97,105,108,106,104,97,107,81,95,111,97,103,109,95,103,102,104,100,91,104,109,105,107,113,107,100,106,107,106,113,126,113,97,97,97,102,109,111,84,106,101,99,100,112,101,104,124,105,100,111,107,105,105,93,90,106,123,112,123,99,112,113,105,107,93,99,101,99,115,100,103,107,113,100,105,89,99,121,89,102,110,98,85,100,108,101,103,110,98,110,99,107,107,91,101,96,97,106,90,105,109,100,102,96,110,93,100,85,110,112,102,108,103,109,107,95,102,109,107,105,95,96,103,99,103,105,98,105,97,88,116,87,107,100,101,101,113,109,108,113,103,101,81,107,106,104,108,98,115,96,98,106,104,100,119,126,102,101,107,104,103,111,100,80,106,89,97,106,94,104,101,94,96,99,112,105,99,97,101,105,105,106,112,114,98,100,93,97,103,95,98,96,113,95,102,102,110,95,101,96,101,129,107,95,105,103,103,97,109,108,103,111,103,96,106,113,96,99,103,102,103,95,110,121,113,124,94,100,104,118,104,105,116,96,101,106,106,109,117,100,107,110,99,106,115,91,96,103,97,121,95,100,113,75,108,101,96,108,99,105,107,99,107,104,100,89,111,107,103,112,106,106,121,110,109,97,99,96,91,115,102,119,92,103,110,100,111,101,106,97,92,106,97,103,79,113,84,94,92,113,100,72,114,112,110,95,107,83,111,105,99,91,101,93,83,107,103,112,104,106,91,103,108,102,100,105,91,88,98,101,99,115,92,94,104,101,105,99,103,102,101,118,98,76,110,98,96,99,102,90,102,103,100,96,109,106,97,108,98,107,116,103,108,111,94,106,113,107,107,113,100,111,106,100,101,105,114,106,99,92,104,102,117,97,102,75,90,101,102,102,112,95,103,106,107,104,104,101,91,102,99,102,101,87,109,95,93,98,103,104,110,109,102,100,108,90,97,115,115,98,120,104,103,83,99,99,109,107,101,110,102,109,107,108,114,94,112,110,109,95,115,107,107,109,95,107,106,107,101,90,107,77,96,99,98,108,109,109,105,109,101,105,98,100,92,108,103,99,122,103,104,106,117,106,101,119,104,88,100,113,111,101,107,102,105,108,109,100,108,85,105,90,105,98,100,100,113,103,99,112,99,101,90,102,96,103,97,110,106,100,104,102,98,96,99,104,96,104,88,103,104,97,94,87,103,101,105,102,106,104,108,102,105,102,93,105,98,100,95,103,77,101,100,98,112,106,90,112,103,107,92,105,88,110,114,91,108,104,97,100,94,129,103,93,102,104,103,104,93,101,101,97,102,105,92,97,108,106,109,114,100,92,88,107,96,105,109,96,108,105,103,99,99,99,104,95,85,109,100,104,96,96,96,94,93,94,101,110,99,106,103,98,107,121,108,85,94,94,99, +457.59415,108,108,97,105,87,99,105,94,107,98,95,101,97,92,109,95,93,91,119,109,115,100,100,106,96,96,91,106,102,105,118,111,94,101,98,89,99,102,108,98,93,102,98,98,108,93,101,103,100,100,88,104,109,105,86,112,99,99,99,94,105,113,99,122,102,109,101,113,100,99,91,102,101,100,91,104,96,106,103,110,107,100,96,96,91,106,110,105,93,106,92,101,108,102,97,94,104,94,92,96,103,111,98,95,92,102,116,105,102,108,110,108,107,101,111,100,99,102,99,99,102,91,118,102,89,111,109,104,109,105,101,106,96,103,83,99,108,101,118,106,110,110,102,110,100,79,98,111,98,86,99,90,106,111,103,97,108,100,96,103,101,101,107,105,109,108,102,114,116,99,105,118,103,106,119,101,109,107,110,105,103,105,106,103,103,100,94,93,96,96,108,106,100,109,119,83,97,105,100,102,104,110,99,106,107,95,107,99,104,113,90,95,108,106,113,103,95,112,100,100,103,113,100,103,106,109,101,116,100,102,88,106,109,110,102,123,99,103,101,98,110,105,103,110,91,105,82,102,108,109,101,122,92,104,118,97,106,91,97,107,100,111,75,108,97,103,104,111,104,106,98,101,101,114,103,127,109,105,92,110,100,111,111,107,116,109,113,114,99,119,100,114,110,106,103,105,109,106,107,115,114,105,102,110,104,113,114,101,105,110,106,104,95,106,114,108,111,79,93,111,107,108,126,100,94,89,104,102,109,109,109,90,104,95,113,113,105,116,106,99,113,99,101,105,105,95,105,107,103,104,108,114,107,112,104,106,110,115,102,101,104,99,103,104,105,101,106,97,103,106,109,102,111,90,109,93,95,104,101,102,108,105,106,117,126,98,89,92,114,97,101,110,110,114,92,129,115,101,103,108,108,103,103,107,106,90,95,106,104,112,96,100,98,103,103,96,85,102,112,99,107,95,102,102,107,104,99,101,108,106,110,103,106,110,94,108,105,107,104,92,109,109,109,98,96,110,91,99,120,101,100,100,97,119,98,109,100,113,113,94,105,105,94,108,113,101,98,106,103,96,101,103,112,114,110,99,91,101,121,102,97,102,105,83,104,102,109,101,103,106,92,110,106,101,106,109,98,99,88,97,102,102,104,111,101,118,87,103,110,99,103,111,101,107,110,89,108,106,112,100,101,99,116,103,110,105,109,99,109,106,108,114,99,102,100,90,88,99,109,108,97,116,105,92,112,110,103,95,98,107,110,105,101,88,104,104,100,99,102,107,117,100,107,96,96,111,98,106,107,91,90,95,108,109,103,110,111,97,98,105,109,104,101,99,98,104,98,110,109,100,98,105,101,94,115,107,100,98,124,85,104,105,97,115,98,109,96,98,99,105,99,100,105,108,100,95,108,110,103,97,101,110,96,105,102,104,99,106,104,105,101,112,108,111,96,101,99,100,106,96,99,96,106,95,103,107,102,100,100,107,90,116,101,104,108,102,108,121,101,109,106,107,108,110,98,101,119,90,114,102,100,110,105,102,100,113,106,106,116,105,109,105,107,89,97,99,107,112,97,96,97,104,99,103,103,105,104,79,107,105,106,100,105,108,102,112,99,100,100,107,97,98,104,101,118,109,101,99,94,97,95,92,102,120,100,98,95,115,94,100,78,110,96,112,103,107,112,98,105,100,101,111,97,82,112,103,79,107,108,110,102,117,113,100,113,107,108,90,114,106,111,104,95,95,100,106,100,107,118,106,106,97,110,97,132,112,105,107,108,104,106,107,112,105,127,108,98,112,104,100,101,112,93,114,112,103,104,103,119,96,100,110,116,95,111,100,105,109,110,113,108,88,103,97,107,114,95,113,113,122,110,98,104,106,95,99,99,100,98,94,109,103,105,94,91,103,110,88,103,100,104,113,107,108,104,103,111,103,101,106,108,109,103,121,106,100,91,97,100,96,106,101,102,109,107,104,84,109,111,100,91,104,102,113,99,106,109,95,86,105,132,105,100,105,95,106,110,120,99,98,100,110,98,94,116,104,119,104,102,107,102,95,107,96,100,98,97,108,109,100,106,105,103,100,110,101,95,98,95,109,112,106,108,102,100,119,125,103,107,108,113,102,116,109,101,98,103,106,120,94,101,98,92,106,94,107,113,94,114,104,109,103,112,112,103,107,109,111,99,97,114,104,86,102,104,109,110,123,104,108,104,111,93,112,117,103,112,99,100,100,104,112,109,111,99,113,95,113,108,104,111,109,101,107,110,106,102,114,105,122,102,101,110,104,111,102,121,99,116,100,94,105,101,111,93,91,95,96,103,97,100,109,114,95,103,107,105,114,113,113,109,104,106,98,105,94,103,100,108,105,110,90,92,98,107,95,116,98,113,106,71,117,98,112,104,114,114,98,97,88,109,117,109,106,112,104,108,100,111,100,107,115,108,108,111,100,95,114,96,90,97,113,98,99,92,108,102,102,106,102,99,92,102,106,90,87,100,114,104,109,110,95,102,96,98,112,89,104,95,100,110,119,100,115,104,94,78,98,81,103,108,113,106,107,101,97,99,107,108,98,88,111,96,98,103,108,84,108,102,94,104,96,106,88,83,110,103,112,102,93,102,109,99,102,109,95,98,96,109,96,108,83,104,105,108,103,107,101,98,105,102,98,107,102,109,85,109,108,109,98,103,104,101,100,98,109,98,97,107,91,91,103,92,109,103,105,94,102,106,98,95,101,107,102,94,92,100,102,90,102,94,101,103,102,112,90,110,95,103,95,110,110,92,97,105,100,94,106,104,108,107,101,97,112,114,143,99,117,112,116,105,94,104,98,98,101,96,108,98,113,100,104,102,116,85,90,110,100,96,104,102,105,101,108,103,91,98,105,90,89,105,110,109,105,112,87,99,99,90,106,100,92,114,102,110,104,95,89,104,91,95,110,97,107,104,109,105,98,110,113,91,95,99,120,112,99,97,110,99,109,98,98,100,102,102,82,113,95,107,104,104,106,98,99,99,96,104,104,94,109,110,91,89,113,117,95,87,98,101,105,92,105,107,117,107,96,99,103,112,91,101,109,97,94,101,90,107,108,103,107,103,113,104,113,110,113,92,95,95,99,103,112,103,110,109,99,91,107,105,108,124,97,98,99,98,91,92,104,104,102,116,107,104,95,109,108,104,98,106,107,103,94,104,121,106,94,125,112,102,108,97,105,99,108,104,100,112,98,102,99,98,110,91,100,95,109,104,101,105,112,106,110,100,101,118,103,102,109,97,108,85,100,104,101,93,96,97,105,126,114,102,107,100,111,94,105,117,109,99,88,89,107,106,117,97,93,92,94,100,109,93,104,106,91,99,95,106,100,102,102,77,106,95,113,113,113,91,94,99,107,106,109,103,111,92,104,92,101,105,84,79,99,105,101,110,99,101,109,119,99,94,105,108,103,98,107,105,113,101,81,94,110,102,92,91,94,100,93,106,101,109,88,105,91,100,98,110,100,96,119,104,93,96,103,113,104,102,104,104,96,102,86,95,102,100,114,110,102,120,107,100,109,105,106,113,113,110,98,87,101,101,94,99,104,101,110,105,109,106,91,106,100,87,103,130,95,100,107,104,100,101,113,121,101,100,113,96,106,108,106,98,92,98,99,98,89,108,102,106,114,95,98,111,100,98,94,97,101,106,102,120,104,100,101,99,109,95,92,104,107,107,101,97,97,103,90,100,99,110,70,94,95,109,94,111,100,113,98,101,111,106,109,89,94,110,95,117,103,107,111,101,97,94,91,107,101,82,90,109,109,99,101,96,107,113,99,94,108,101,96,107,99,101,100,99,112,97,100,100,105,91,106,107,102,98,105,95,105,103,100,102,99,101,107,71,108,103,98,90,113,109,110,97,95,96,79,108,78,103,97,96,111,99,109,112,104,101,87,92,99,93,102,104,92,90,98,117,99,108,96,113,116,98,104,99,91,103,102,100,91,105,107,113,110,105,111,109,102,97,107,87,98,100,103,105,94,112,109,110,104,111,106,90,106,110,110,117,109,106,80,111,101,101,100,99,105,99,100,102,104,91,108,101,100,99,105,103,91,99,108,106,104,101,97,110,112,109,113,104,104,93,106,105,100,113,110,105,99,95,107,96,103,81,108,98,94,95,100,83,110,106,96,99,92,107,108,88,102,103,102,110,106,92,95,110,105,93,99,119,104,101,94,105,98,99,96,99,92,100,105,103,104,89,104,90,100,102,106,107,101,94,102,115,104,95,97,97,109,100,102,99,102,106,109,104,101,103,106,109,110,106,107,119,87,103,107,109,98,105,101,104,92,107,105,96,99,100,107,125,100,101,118,103,99,101,90,103,107,95,95,90,106,82,97,103,100,101,97,97,102,96,98,112,106,95,116,99,92,99,95,89,113,100,109,104,98,102,112,102,95,110,104,99,97,111,98,99,99,105,106,108,106,97,103,114,102,100,102,95,89,101,103,92,112,111,109,107,110,125,98,104,104,97,133,72,99,97,109,98,100,101,85,107,105,97,124,102,104,102,102,99,103,105,96,99,87,104,107,100,103,97,102,102,91,105,98,91,102,95,112,98,98,95,96,97,112,109,101,98,98,107,95,119,109,104,103,103,101,103,97,112,107,105,110,106,97,110,101,105,106,97,87,106,100,100,92,92,105,105,96,94,110,92,90,103,104,103,106,98,114,99,108,107,99,98,85,97,106,88,109,106,124,93,96,109,102,98,97,107,102,100,94,98,104,102,90,103,104,96,96,96,101,91,107,99,102,106,103,76,105,109,103,105,92,106,101,104,93,98,105,117,107,105,103,94,94,87,98,98,103,96,102,116,116,96,111,95,107,107,91,104,89,103,102,105,112,105,99,97,102,108,114,98,95,97,118,108,113,95,91, +457.73459,100,101,85,98,99,103,105,104,101,93,89,100,105,102,109,80,106,81,110,111,106,104,110,109,82,112,98,107,105,108,99,113,108,105,111,117,103,92,97,101,101,75,104,102,94,116,102,106,109,104,102,94,87,109,108,102,99,88,108,88,109,92,103,94,107,121,96,98,112,99,96,102,110,110,99,119,98,95,109,108,106,98,101,101,100,100,100,96,107,104,109,109,108,88,101,111,98,96,102,113,101,84,104,99,97,101,100,113,95,100,106,109,110,104,104,96,96,109,102,98,102,98,116,101,85,101,113,112,84,106,102,105,106,106,101,104,105,109,96,100,91,113,101,102,104,102,110,100,96,103,110,106,112,90,95,107,89,99,95,101,100,97,105,102,116,106,111,99,111,111,109,97,82,101,100,113,119,96,107,106,108,100,112,100,101,102,100,85,95,100,101,106,110,108,93,104,120,90,110,111,92,100,109,108,98,103,108,105,114,102,101,105,96,112,110,105,105,125,103,110,100,122,102,105,110,99,96,113,95,112,99,106,101,111,105,103,83,114,99,108,104,104,106,101,100,108,93,99,110,103,100,93,102,95,105,102,107,104,109,112,94,97,106,107,100,111,104,74,96,101,100,109,99,89,112,110,102,107,95,91,97,106,106,102,103,101,92,102,106,98,106,103,100,112,96,105,103,104,109,91,85,97,101,106,100,109,118,109,103,110,98,95,114,102,115,98,115,99,101,101,102,111,93,104,96,86,104,97,115,106,101,105,103,110,97,99,107,105,94,96,91,108,100,95,93,103,103,107,107,100,99,109,101,101,117,109,101,110,109,106,99,104,110,102,102,105,105,103,101,102,99,107,102,105,102,104,104,95,119,106,100,104,95,95,107,99,99,106,101,94,102,91,97,101,117,103,99,107,96,102,103,109,101,92,113,91,115,114,109,111,104,105,101,106,93,100,107,108,103,91,104,92,95,95,106,102,107,98,107,98,104,101,111,105,94,106,92,105,105,68,104,95,88,100,104,108,87,120,99,95,109,98,119,78,101,97,119,97,114,104,103,106,96,101,103,95,101,104,107,101,99,92,107,101,93,102,98,117,102,99,103,102,94,99,97,104,114,104,100,101,107,107,101,82,102,98,109,99,86,91,105,114,98,107,105,98,97,105,95,103,101,113,100,90,99,95,97,101,84,101,102,113,97,109,98,100,104,100,108,77,98,104,104,99,114,104,113,95,91,109,101,96,95,107,102,102,107,95,102,102,108,112,106,94,109,112,102,104,120,93,105,88,98,102,98,102,98,97,74,96,101,104,98,102,106,105,103,104,112,106,103,112,104,89,98,108,87,100,108,102,109,106,99,108,112,125,99,112,109,105,102,103,99,98,109,95,98,109,108,107,92,99,118,103,107,102,98,93,106,99,113,105,102,89,117,92,96,120,100,106,100,108,112,110,95,96,110,110,103,93,105,100,108,110,87,114,103,102,106,103,102,103,108,103,98,105,114,102,106,100,105,111,98,93,97,96,105,101,106,96,117,112,105,102,106,100,102,106,102,92,104,108,111,96,105,105,98,110,107,74,99,109,89,119,105,96,106,81,106,94,100,99,101,99,92,109,109,107,62,105,99,100,106,106,110,91,90,95,94,93,120,91,101,95,123,91,99,119,102,95,95,107,96,105,94,102,104,106,109,97,102,97,111,103,100,103,104,100,106,106,103,96,109,101,101,96,102,104,111,96,92,91,108,91,108,94,93,111,102,106,112,92,94,84,100,110,107,94,99,87,99,86,101,132,99,116,98,96,112,112,99,104,103,116,104,109,107,104,101,102,104,104,87,95,99,97,104,94,115,102,114,97,101,109,93,104,106,96,100,89,105,105,98,109,99,95,115,87,90,93,100,107,106,99,105,105,109,92,111,96,106,109,112,109,99,97,101,101,99,104,84,98,104,109,106,93,100,118,108,104,104,98,101,109,109,89,105,105,108,104,104,105,100,99,93,88,104,90,105,102,91,98,109,105,102,78,100,95,104,109,108,115,100,105,82,102,94,104,109,105,126,97,97,105,114,99,104,101,90,104,97,103,108,96,95,110,95,98,103,107,98,101,108,95,101,110,108,105,108,98,101,101,97,100,108,90,96,105,98,103,120,95,106,104,89,101,112,103,94,107,108,105,107,107,98,108,107,103,93,98,87,101,107,107,100,106,101,104,103,98,94,109,108,112,88,107,97,105,105,95,93,87,108,97,92,100,95,92,116,104,96,95,110,107,100,102,100,98,90,101,91,95,106,97,98,102,102,103,93,98,83,103,96,93,105,96,105,89,105,97,110,108,102,104,105,95,83,110,100,94,90,95,91,102,103,97,108,119,101,103,95,115,105,105,108,108,103,96,100,107,100,108,100,100,102,107,102,94,97,94,99,96,103,104,96,99,103,98,108,91,97,105,103,119,91,104,117,108,110,97,93,115,91,106,89,124,91,97,99,98,104,100,103,94,97,99,92,65,102,87,104,94,120,116,101,104,95,106,113,102,101,101,100,114,115,109,107,99,102,125,108,117,109,98,115,103,104,109,105,98,80,108,117,106,105,105,111,109,96,111,100,88,100,104,98,97,99,94,106,96,111,98,118,108,108,104,110,103,96,102,106,96,106,98,113,119,107,97,98,97,99,106,105,102,109,100,113,95,104,102,99,111,112,104,114,105,108,123,109,113,99,103,115,99,83,105,116,113,105,99,93,105,102,93,98,115,112,105,107,113,104,102,104,107,99,101,95,114,84,107,116,106,97,102,97,106,109,108,106,100,105,108,94,90,104,99,101,104,104,119,110,97,117,118,102,108,98,112,105,111,112,108,99,103,108,104,109,112,101,116,96,104,107,101,104,98,105,110,108,115,119,105,114,117,114,106,92,106,96,121,132,110,112,102,110,98,108,107,99,101,90,115,106,86,107,101,96,109,103,101,112,100,103,110,109,112,109,97,99,100,96,98,105,108,105,97,97,107,117,106,105,107,126,108,110,104,99,101,108,107,107,102,112,99,93,105,109,91,110,107,102,116,111,100,102,90,93,113,94,104,96,120,101,109,102,103,115,111,94,106,95,107,106,110,104,105,110,91,100,102,101,102,101,93,103,112,114,106,107,102,105,108,99,102,101,96,116,106,107,92,99,102,101,99,108,88,92,95,110,107,110,101,92,101,106,108,96,107,104,105,112,102,102,106,102,97,98,107,91,107,99,100,102,99,100,108,103,96,110,101,116,104,106,101,103,100,96,110,108,108,100,102,95,108,102,107,104,103,115,102,111,100,115,102,104,100,112,98,91,105,101,113,114,90,98,109,102,100,98,107,102,95,105,108,93,112,108,108,100,109,103,87,102,104,112,109,109,101,100,103,104,100,98,107,100,107,114,102,108,110,89,103,103,111,104,96,99,103,110,108,95,106,100,103,98,108,111,103,100,115,112,117,100,115,97,103,96,104,102,102,113,108,112,108,102,98,98,100,112,98,118,104,94,96,97,93,129,113,99,88,105,111,119,111,99,109,86,106,86,101,100,106,109,104,112,107,105,109,100,103,107,96,105,111,100,103,104,109,107,95,90,103,108,121,106,106,99,108,108,98,79,103,105,99,97,96,93,110,99,105,105,98,109,105,102,110,95,105,112,111,112,109,97,110,106,104,100,103,109,80,113,113,105,107,112,112,110,113,117,98,92,101,102,104,107,107,100,102,109,98,100,106,65,98,106,100,104,109,104,101,96,121,103,104,99,92,100,105,100,104,107,105,111,109,105,102,100,95,116,101,105,114,111,99,109,104,102,103,99,94,96,98,106,92,101,108,100,108,102,97,105,112,103,104,99,105,104,101,116,105,88,100,113,98,112,80,114,92,95,117,87,100,99,103,105,100,109,97,95,101,102,113,83,104,112,91,117,100,111,106,110,96,99,111,110,106,103,99,97,105,104,96,95,103,109,108,109,112,107,108,108,105,100,106,103,94,123,91,94,112,98,111,104,92,111,100,91,110,92,99,117,109,102,109,99,105,112,98,99,105,117,99,91,105,100,108,97,97,105,98,95,98,116,98,89,99,95,111,109,89,105,115,109,114,119,110,107,110,100,103,92,98,105,105,105,101,101,98,98,100,109,99,99,117,87,108,95,107,91,122,108,97,104,97,109,105,106,98,106,98,103,115,115,107,108,104,87,99,115,105,116,96,105,106,108,115,102,109,121,107,110,91,96,73,105,97,117,104,104,101,91,102,101,118,100,92,95,105,128,98,108,89,109,95,98,99,112,101,100,103,94,98,102,108,114,112,100,111,104,93,108,107,109,112,98,104,98,102,105,104,111,97,102,104,104,111,110,104,109,107,102,104,99,112,102,99,103,101,104,99,116,117,102,112,95,95,102,93,115,104,102,98,80,102,99,101,93,95,105,106,109,109,104,105,108,100,101,107,107,107,105,101,110,95,103,93,99,101,102,110,106,101,107,111,105,106,95,106,100,103,100,105,92,110,107,113,102,95,112,96,100,104,102,104,102,109,104,115,100,96,91,106,99,111,97,108,108,101,98,96,98,108,111,98,107,103,116,94,99,95,98,109,79,103,108,103,106,99,103,126,104,117,97,78,100,103,108,105,98,106,91,110,109,109,92,111,106,112,102,108,94,106,109,135,96,112,105,97,98,103,98,103,100,112,100,103,108,110,119,104,105,116,106,116,103,109,105,108,117,96,94,103,95,97,104,104,104,100,103,97,103,100,103,97,98,94,95,97,132,105,99,100,100,112,99,104,111,109,110,109,96,90,91,105,98,95,96,106,110,110,107,104,114,96,104,101,97,113,88,89,104,114,111,102,93,87,98,105,100,101,109,98,99,108,116,99,94,98,110,108,113,103,101,115,109,96,99,121,107,100, +457.875,104,100,93,107,90,104,94,88,82,92,90,101,104,108,95,99,93,124,113,104,101,99,103,110,110,107,118,109,95,93,99,106,104,96,108,112,106,119,91,110,90,104,104,96,109,108,104,107,108,105,104,103,105,96,105,100,86,93,129,103,100,107,109,103,101,114,99,100,106,101,109,103,111,98,95,117,113,102,90,103,108,87,106,105,110,99,102,105,98,98,101,107,101,101,98,100,90,109,107,106,106,110,91,102,109,104,106,99,111,114,97,99,115,112,95,94,114,107,105,97,102,109,102,103,108,100,102,111,91,105,100,103,111,100,107,104,100,109,97,90,97,97,91,104,102,94,107,105,103,119,113,110,105,114,95,96,98,84,120,99,104,100,113,98,98,101,114,101,103,67,99,102,96,100,103,102,113,103,106,103,91,116,104,105,99,59,101,94,100,97,106,103,106,96,104,98,100,96,98,98,108,95,104,108,91,95,98,95,107,114,95,116,110,103,99,96,86,96,118,99,100,98,105,103,106,92,91,102,100,83,107,114,102,108,111,109,91,100,104,105,100,110,106,96,137,108,99,103,102,103,112,110,95,106,102,103,99,107,98,107,110,117,106,105,98,109,107,100,112,96,98,104,113,95,109,98,101,113,104,110,95,114,104,110,97,107,107,101,107,107,103,104,108,103,95,95,105,94,105,100,97,100,99,100,88,106,113,104,109,94,98,111,106,103,105,89,101,111,102,105,101,109,98,114,105,101,101,94,114,111,100,106,107,108,95,105,102,98,91,101,91,100,108,98,107,106,104,110,99,99,114,109,120,120,108,126,103,103,116,99,99,100,106,104,98,104,95,100,104,104,120,116,103,116,105,100,98,101,105,98,116,102,104,122,104,101,114,101,108,103,116,107,105,105,68,87,106,96,100,102,127,127,99,101,100,99,104,102,107,100,107,104,102,100,103,102,111,113,109,95,97,97,109,107,107,91,109,109,104,108,91,112,110,103,76,106,94,92,104,99,108,106,99,105,94,99,102,99,105,111,94,95,101,113,104,98,107,93,104,109,107,103,109,113,99,105,95,106,102,104,103,107,101,100,113,97,101,106,104,107,106,106,115,102,100,106,103,111,88,97,103,116,107,107,98,87,94,100,109,109,103,107,115,109,98,109,100,103,113,104,110,99,108,95,86,114,103,100,119,100,106,124,105,95,100,97,107,98,109,101,100,105,105,110,110,105,105,105,95,114,89,124,105,103,101,103,103,96,106,113,112,111,106,96,81,113,101,98,95,96,107,106,111,95,97,110,100,97,110,104,96,97,103,108,99,108,103,97,103,103,113,83,108,96,99,97,96,122,83,109,100,99,105,105,121,99,102,97,105,113,93,103,110,104,92,90,105,104,109,107,94,105,104,95,100,110,104,98,104,99,108,106,98,118,102,96,108,107,126,96,95,97,105,104,105,96,104,111,104,75,106,108,103,107,107,101,105,106,103,129,91,117,102,96,104,102,104,122,108,107,102,96,102,114,95,106,109,97,106,96,109,110,108,101,102,108,98,110,102,107,102,116,101,102,92,89,97,98,105,100,99,103,97,108,99,104,102,103,101,105,109,94,95,99,117,89,109,102,92,69,104,109,105,102,137,114,103,106,104,102,107,101,96,104,96,106,96,88,108,113,94,99,96,106,98,118,94,99,102,106,96,107,103,104,100,103,105,92,96,109,103,117,103,87,103,107,97,109,103,96,102,105,101,95,95,93,93,99,100,104,111,103,112,99,98,105,111,104,110,100,100,107,112,109,91,115,107,111,103,107,91,112,109,101,108,106,94,100,106,99,105,101,96,97,100,105,106,96,99,101,117,108,105,111,97,103,114,102,103,98,106,101,110,110,111,111,108,93,105,103,102,109,105,104,100,107,120,98,92,107,111,113,100,100,106,99,99,102,103,95,88,116,107,102,102,103,96,108,105,109,113,97,94,98,107,96,98,107,104,96,90,92,101,96,101,99,99,106,96,95,99,108,99,111,128,107,94,115,104,96,110,134,100,99,116,103,101,104,97,100,100,100,107,103,117,86,97,99,125,114,114,104,99,116,102,103,98,98,104,112,90,104,102,107,105,104,112,100,101,108,105,99,113,103,96,81,95,93,102,93,101,103,104,109,97,102,104,119,105,105,104,104,105,108,102,100,96,97,98,113,100,109,110,97,106,90,95,73,110,105,100,97,116,94,114,97,108,99,104,103,102,119,110,113,105,103,93,101,101,101,102,96,98,113,98,94,90,101,97,90,99,98,104,103,112,100,113,109,97,99,92,102,115,112,90,103,122,116,101,102,112,102,101,103,98,100,109,77,107,110,112,99,100,104,106,98,109,94,108,103,103,87,109,90,101,100,98,85,105,103,103,93,121,96,95,100,77,96,102,108,102,99,110,117,114,94,102,104,116,105,119,98,101,100,109,119,91,95,97,92,98,100,99,101,105,104,113,95,121,100,90,110,102,83,111,87,97,98,101,108,102,113,112,103,108,99,100,100,98,92,106,100,103,94,102,88,99,95,94,116,99,104,90,99,111,101,103,102,104,92,105,95,115,87,97,104,99,100,117,101,96,101,101,109,112,101,100,108,97,99,112,94,120,103,97,99,104,102,85,96,104,104,96,103,107,107,102,94,115,97,115,95,112,96,105,101,101,104,112,96,106,96,97,99,102,98,109,113,103,107,96,109,114,109,99,103,95,91,102,109,102,102,91,100,91,106,99,97,103,102,107,95,96,94,109,105,92,96,101,96,100,105,98,104,101,115,101,98,110,93,101,90,107,106,94,127,104,103,95,104,90,98,100,100,108,95,104,110,106,115,105,112,101,109,101,108,108,115,108,108,109,101,109,99,105,100,102,126,107,99,91,95,106,103,99,104,94,100,105,112,108,91,117,101,106,102,88,96,112,102,105,109,96,100,108,112,106,109,112,108,94,101,96,101,97,100,98,101,104,104,113,110,101,95,114,96,96,109,105,98,109,107,110,107,108,103,106,102,116,91,102,97,95,100,112,93,95,109,100,109,98,110,107,91,114,104,114,103,104,116,101,104,93,93,106,104,118,91,98,105,100,99,98,102,115,97,108,114,108,105,98,104,108,100,94,108,115,103,96,105,133,88,96,109,105,98,96,105,97,97,96,102,100,101,94,93,105,112,109,103,106,98,111,97,107,112,98,104,105,101,98,99,95,99,94,108,91,103,98,96,101,108,101,97,100,85,112,90,108,106,94,102,100,109,109,94,107,106,92,103,97,117,117,108,99,100,102,101,103,106,101,96,107,95,98,101,112,107,91,100,100,105,108,91,105,104,96,101,87,98,105,109,95,94,102,98,100,94,105,111,98,91,90,97,103,108,103,97,97,99,110,98,108,108,122,109,96,102,99,96,99,111,101,98,103,104,98,104,100,98,105,95,118,105,99,105,100,103,102,107,99,121,123,94,101,97,104,106,105,95,104,106,121,107,104,109,94,104,109,112,94,107,94,102,105,106,97,90,117,105,102,102,99,107,101,87,103,106,92,116,96,107,108,105,113,108,93,96,99,115,106,101,103,105,105,100,94,96,92,112,104,99,97,87,105,110,97,103,106,111,103,99,99,100,95,99,109,100,113,106,94,108,111,94,107,107,104,98,118,99,95,114,103,100,104,105,98,101,106,107,103,103,109,104,89,99,106,106,95,105,93,103,103,110,107,97,99,112,90,101,112,112,97,96,110,99,106,114,99,102,91,91,109,105,101,112,105,92,95,99,108,89,99,102,98,93,107,89,104,119,97,100,107,106,106,103,102,100,101,96,111,87,112,92,80,101,100,95,99,104,95,103,109,99,84,104,92,102,115,96,105,105,101,98,96,107,97,100,109,98,109,103,106,102,92,103,91,97,115,95,90,98,108,108,96,111,104,95,95,106,100,97,113,103,95,103,97,125,105,110,92,95,100,105,105,112,91,115,108,97,105,108,108,109,109,93,98,101,93,104,96,106,95,111,97,96,92,100,103,107,115,103,98,101,111,124,96,110,99,98,100,103,109,102,90,107,101,104,108,102,105,100,108,89,87,99,93,95,98,104,105,104,96,103,108,112,104,93,98,106,104,110,106,110,113,106,97,98,115,98,97,77,105,98,105,106,98,109,100,98,107,104,102,98,87,95,107,105,93,100,101,101,105,105,106,104,102,109,103,97,96,113,109,117,102,74,100,96,84,103,102,103,94,101,105,99,104,116,109,91,99,109,101,110,83,109,98,85,106,102,98,108,105,102,105,103,109,112,101,104,98,121,98,109,92,102,100,88,101,111,105,105,95,110,108,98,100,100,107,98,106,97,98,104,100,105,108,140,103,100,87,111,99,108,103,109,95,97,96,92,114,103,112,88,120,100,102,117,114,105,99,98,96,102,107,113,97,113,102,96,107,107,109,107,93,92,100,104,103,104,105,125,96,103,76,88,111,93,108,100,98,96,94,108,101,114,97,99,92,104,86,83,104,113,96,101,104,89,103,98,83,97,100,104,103,104,101,98,99,108,93,101,93,112,108,100,92,95,99,109,102,105,113,87,108,103,98,96,96,96,101,100,102,110,141,106,96,109,98,93,105,107,96,102,105,111,106,105,117,102,109,96,113,108,109,89,102,88,111,76,101,97,101,102,109,108,95,102,84,100,100,92,98,105,103,96,104,100,104,92,105,97,98,98,109,100,112,97,94,100,105,102,102,80,110,101,89,89,109,115,109,100,92,121,116,95,98,96,105,85,100,109,104,111,111,106,99,108,97,90,116,104,98,97,114,107,104,87,99,105,97,92,107,99,97,100,105,92,97,105,96,102,100,110,105,93,114,87,95,93,97,106,105,96,105,99,94,104,104,87,99,90,108,105,104,102,101,120,110,102, +458.01544,108,99,107,97,87,96,101,101,105,100,84,106,112,94,100,98,85,103,118,88,107,90,95,104,102,117,102,119,96,98,108,96,99,101,99,108,108,90,108,105,111,112,121,98,99,118,102,105,96,106,109,89,101,105,129,98,104,102,111,98,128,102,105,105,93,101,110,99,91,104,102,101,103,109,121,113,95,89,105,106,102,97,101,101,91,78,107,110,112,119,96,99,90,102,100,99,90,102,102,100,96,103,90,103,108,112,97,96,101,107,113,100,106,101,110,105,99,101,95,109,106,107,105,111,108,113,101,87,109,107,94,112,102,98,112,105,76,100,106,105,109,120,103,102,115,114,109,102,102,100,97,102,107,93,101,100,97,107,96,104,97,85,99,98,109,101,100,92,109,101,100,108,102,93,106,101,108,98,109,109,110,101,101,90,87,94,90,100,95,94,112,91,110,107,92,95,97,94,86,96,99,102,105,99,105,100,95,108,103,98,99,105,105,102,93,113,97,85,92,108,113,98,111,111,94,107,115,105,92,98,109,91,108,96,100,100,92,110,92,94,103,110,114,96,114,97,107,97,102,121,99,108,105,108,116,107,108,102,109,82,102,111,106,101,109,117,102,98,83,96,101,96,100,96,98,106,107,120,108,107,99,94,111,117,96,108,106,97,101,97,98,107,103,101,109,112,101,103,105,108,108,96,104,102,91,103,101,108,100,109,98,111,102,103,105,99,105,97,96,104,89,101,104,102,90,115,94,88,108,114,105,100,72,106,99,101,99,104,107,98,101,99,98,100,113,107,103,108,112,107,104,109,105,104,101,102,111,113,109,105,105,105,101,102,118,104,112,103,112,110,108,108,113,96,103,107,101,101,105,109,101,113,108,107,87,100,103,97,109,103,106,104,99,107,103,104,103,112,99,106,96,96,95,102,109,100,99,103,116,96,102,100,100,114,111,97,109,106,104,113,106,99,95,109,101,95,104,99,89,110,113,116,103,103,98,98,99,108,97,98,113,108,110,98,97,94,108,107,104,105,100,107,96,103,104,109,100,96,118,91,99,97,107,116,105,105,108,109,104,105,111,106,104,92,103,106,111,108,119,109,104,98,101,108,109,102,113,114,107,100,104,104,103,101,90,99,95,116,103,105,124,102,110,96,104,113,104,99,101,100,109,103,102,99,103,104,107,92,103,128,106,109,104,96,118,106,118,97,106,99,102,102,110,92,94,102,103,97,101,105,115,105,101,104,99,101,112,96,106,111,107,110,111,90,100,110,101,103,98,100,104,99,106,106,107,86,114,112,111,101,96,91,91,122,103,117,101,101,111,109,112,107,97,96,102,99,111,113,98,113,97,101,99,110,110,92,104,102,99,100,109,96,111,110,105,111,93,96,94,109,101,89,106,104,120,98,110,103,110,104,109,100,106,91,109,99,101,102,99,94,114,101,106,101,108,103,126,97,96,95,111,99,94,109,105,101,107,98,111,105,99,104,81,108,90,97,114,106,106,106,113,100,98,112,95,102,92,100,114,109,92,110,109,97,98,105,101,106,106,105,105,99,105,99,97,100,109,98,109,94,104,100,96,102,116,105,109,119,109,99,110,100,100,112,110,107,120,109,94,84,116,106,99,102,86,104,99,104,98,97,110,100,104,115,100,108,108,104,94,92,103,109,105,101,98,102,109,109,100,101,114,109,101,107,95,109,114,101,106,101,96,102,109,95,96,98,103,94,112,99,110,101,111,104,98,98,96,117,106,102,111,106,99,102,101,107,97,102,108,99,116,103,100,111,109,110,103,103,106,98,104,105,108,109,111,100,96,91,109,111,90,106,116,112,108,99,89,102,108,99,113,100,119,99,107,102,115,103,110,104,100,103,90,101,99,104,96,101,122,91,110,96,117,96,108,107,103,113,101,106,95,108,115,104,99,104,99,97,120,99,109,105,94,105,94,112,107,103,106,102,98,87,108,101,101,88,96,107,99,111,99,104,98,108,95,110,105,98,117,105,108,102,115,99,110,105,93,121,105,100,101,116,107,80,110,101,95,100,105,104,85,116,112,113,105,80,98,96,91,99,109,103,98,110,103,125,99,98,104,95,109,109,103,111,123,106,97,113,118,110,99,112,99,103,91,87,98,99,98,108,106,96,102,110,107,105,113,100,107,104,109,97,109,107,110,101,101,108,100,102,103,104,100,92,103,102,104,106,108,103,94,103,97,95,101,97,101,104,107,103,113,99,105,92,114,103,111,102,107,114,93,103,111,88,105,106,95,103,105,100,97,112,110,104,118,102,111,104,76,103,112,120,106,100,109,98,100,107,112,108,107,105,97,98,104,104,119,101,110,90,106,104,108,86,115,100,106,107,113,92,112,104,103,97,102,97,124,94,98,105,102,106,103,99,113,103,103,114,105,106,111,110,113,106,93,103,99,114,103,108,99,104,105,115,116,114,92,102,98,100,111,104,96,106,117,97,115,103,107,113,117,104,111,94,87,107,97,113,95,99,99,97,96,103,108,82,99,95,108,113,100,100,102,111,131,98,101,107,102,110,109,121,98,98,101,108,94,112,107,111,111,106,105,103,120,104,109,104,87,109,105,94,106,105,114,107,99,102,99,86,125,108,108,83,107,102,113,101,101,90,114,87,113,98,104,110,113,99,110,104,93,109,111,106,117,83,100,103,99,110,104,101,103,111,97,82,106,106,105,116,99,103,90,107,109,108,99,94,100,97,96,116,114,100,106,105,98,108,109,119,103,103,106,97,99,88,107,104,113,115,96,102,104,98,93,107,105,110,106,102,104,102,83,104,101,95,111,106,98,109,102,114,113,96,106,102,87,107,100,105,114,110,100,108,102,68,116,99,104,111,114,102,85,116,107,83,101,102,88,110,109,104,99,109,100,92,98,102,97,118,96,103,106,106,98,110,110,104,107,112,116,105,99,105,96,104,105,101,105,97,106,102,97,107,96,99,104,96,112,99,99,98,89,87,111,96,100,108,109,98,105,89,101,106,103,106,97,92,92,113,109,91,104,119,104,109,108,111,98,100,109,99,108,102,99,112,106,100,102,113,102,100,105,97,99,89,112,93,102,105,107,106,79,106,102,108,118,100,109,109,101,102,95,100,100,115,98,107,109,113,108,98,112,110,108,91,99,114,102,106,92,106,107,101,110,113,109,103,113,105,102,108,97,112,106,87,105,93,118,108,102,109,106,102,105,111,109,104,107,116,112,95,101,112,114,91,109,113,111,104,115,106,106,107,108,103,106,99,96,102,98,109,100,95,95,124,105,108,108,102,97,91,106,114,94,95,115,105,106,101,115,108,110,110,128,100,92,94,110,97,95,108,100,107,107,104,91,102,98,109,105,103,113,98,103,96,108,91,106,88,107,105,102,113,106,97,88,98,98,98,102,107,108,92,102,109,92,97,106,102,99,107,102,101,106,106,121,104,90,104,87,106,105,104,97,92,105,101,101,97,110,103,95,106,117,99,106,105,106,95,104,99,97,102,107,89,91,113,100,106,93,105,86,108,105,101,109,102,102,99,95,107,93,94,106,105,100,111,106,104,105,105,109,96,99,105,110,101,113,99,100,96,83,105,99,101,96,106,106,101,102,101,104,96,107,109,103,115,116,109,116,87,105,101,106,96,111,101,96,113,108,101,99,110,102,99,110,115,100,97,105,104,101,105,96,98,110,112,97,106,101,108,105,94,104,109,103,102,101,95,83,102,117,93,99,94,113,101,106,104,117,101,92,102,108,98,107,105,125,105,97,96,120,96,100,95,106,103,104,112,92,103,104,99,96,102,102,108,101,109,121,110,106,104,95,115,91,100,99,103,104,103,96,102,105,85,106,108,111,84,106,94,94,106,96,100,99,105,96,93,100,103,104,104,97,110,77,104,93,111,90,98,103,109,102,103,113,98,101,102,106,102,116,106,110,129,104,107,111,107,106,109,107,108,108,103,109,102,109,98,110,100,101,103,104,102,99,88,98,111,113,105,84,109,105,98,104,106,110,100,110,113,118,108,100,109,114,103,100,97,112,108,100,100,99,84,104,100,104,94,101,98,112,95,95,108,103,97,101,92,109,101,101,99,101,106,100,110,106,105,109,112,105,112,96,99,105,114,101,101,108,97,97,112,102,95,104,100,68,89,91,107,79,99,100,113,96,106,94,91,109,101,101,112,107,106,96,112,106,100,107,102,91,109,98,98,94,101,105,104,103,95,101,113,101,92,95,119,91,112,96,91,100,108,105,102,100,101,101,101,107,107,116,104,117,100,110,99,95,105,98,109,118,106,103,95,109,108,99,95,102,104,112,103,114,114,106,121,104,103,101,99,106,109,98,77,110,99,105,92,91,76,109,96,109,103,112,95,106,104,100,116,103,106,95,100,106,107,108,103,91,90,124,102,108,97,108,107,100,111,105,102,95,116,88,106,101,102,100,101,116,99,106,108,116,103,101,96,99,113,87,105,112,102,109,94,106,105,91,105,88,100,97,99,97,109,106,83,99,102,94,94,106,97,99,105,102,105,102,97,95,90,103,113,118,96,99,100,97,105,102,110,108,95,105,96,107,102,92,112,105,100,96,101,103,101,102,104,105,105,102,105,110,96,95,104,107,105,102,102,115,102,109,96,112,98,109,102,110,102,101,96,108,114,94,99,104,103,86,105,105,101,106,99,106,97,103,90,95,102,109,115,102,99,104,105,100,110,101,101,98,104,100,95,102,103,103,90,100,96,104,101,104,106,91,109,108,96,97,88,103,117,110,99,107,102,105,108,99,109,97,102,111,96,87,108,98,114,92,108,109,110,107,94,102,103,95,94,97,98,102,95,94,94,107,106,101,100,116,92,93,113,101,103,106,104,75,105,106,92,112,117,107,102,111,97,97,124,104,99, +458.15585,98,101,100,107,86,81,91,101,80,106,95,108,99,103,99,89,92,106,96,92,113,90,113,103,89,111,101,102,99,113,96,96,94,103,116,105,106,93,100,89,98,101,107,98,99,95,105,98,98,101,98,118,108,96,99,86,109,98,113,101,98,117,104,103,96,100,85,89,111,100,122,103,94,127,93,116,84,98,112,101,106,97,101,106,110,97,112,97,103,101,105,82,108,89,103,100,98,97,100,78,82,108,109,102,99,101,96,100,108,88,91,95,95,89,108,103,88,102,107,109,97,99,100,113,112,118,103,95,94,97,105,107,111,115,104,108,95,117,87,102,99,101,126,98,103,111,112,93,94,99,104,97,107,110,96,97,115,102,119,96,85,108,102,100,98,110,100,98,101,88,114,108,102,106,108,119,99,93,95,98,102,106,106,104,104,94,93,71,104,101,103,109,114,106,109,113,100,95,100,112,105,107,87,99,116,101,110,93,99,98,95,99,98,99,96,101,92,105,96,100,91,106,104,116,109,104,117,103,99,102,104,101,103,101,104,109,104,106,98,102,105,127,112,104,101,102,106,114,109,101,92,116,100,87,103,105,98,95,99,102,100,99,100,105,106,100,101,100,95,96,112,106,106,86,109,112,100,104,94,90,104,133,103,111,98,111,94,90,101,106,104,96,106,118,118,102,102,105,103,100,100,101,109,103,96,105,112,105,106,98,106,110,114,103,110,100,97,103,118,94,101,117,103,106,101,96,98,91,101,112,105,101,99,106,107,106,136,98,109,101,99,104,108,104,99,110,107,111,102,113,113,99,124,102,100,103,105,104,105,109,96,99,110,94,87,100,105,114,84,111,110,89,106,98,94,95,106,108,91,119,106,106,97,102,95,97,103,105,108,116,110,88,95,112,113,103,120,94,100,110,115,92,107,87,117,106,100,112,99,107,98,106,103,106,104,107,96,98,110,97,99,105,74,101,106,95,105,98,94,104,100,102,113,92,65,100,91,115,82,115,91,108,105,98,98,114,109,106,103,116,110,105,105,106,109,98,117,114,109,108,109,96,96,97,113,108,117,113,117,85,102,100,99,105,103,98,110,109,101,89,105,83,97,119,100,107,110,102,100,102,118,115,108,112,103,88,118,106,117,105,117,99,95,109,101,96,97,100,98,104,107,103,100,108,112,98,102,96,97,96,99,101,99,83,108,99,104,107,91,109,100,106,89,111,107,97,104,103,99,103,103,96,107,106,103,105,107,97,104,111,103,99,102,114,101,109,103,107,102,100,105,108,100,118,99,104,106,108,112,97,99,94,98,107,99,109,105,103,94,100,95,94,103,95,90,91,113,105,115,108,104,109,102,102,109,105,99,100,104,113,113,94,120,96,97,107,105,105,106,95,119,100,102,109,95,97,98,106,94,100,124,109,105,102,88,104,95,105,108,100,106,114,109,106,99,105,101,94,107,105,109,102,103,104,104,126,106,116,104,106,100,102,110,121,96,110,107,100,94,103,118,110,108,100,97,104,100,103,98,102,85,119,95,105,110,102,106,102,98,105,103,104,118,105,102,99,93,105,106,95,112,106,104,91,106,112,98,102,112,92,99,98,103,105,104,90,105,102,108,111,104,99,106,105,111,100,104,107,99,102,106,99,86,102,103,105,108,101,105,105,95,112,99,112,100,119,95,106,102,87,111,94,104,110,98,90,91,96,99,78,106,108,107,91,94,105,101,98,98,96,104,100,102,84,100,96,103,101,101,99,108,103,97,99,103,97,101,105,111,93,99,105,92,100,91,94,109,98,103,115,95,109,94,107,109,82,95,97,95,111,101,106,110,99,94,116,84,117,105,107,101,101,104,100,113,97,101,110,102,100,94,111,107,101,102,102,97,100,104,100,104,103,117,100,106,92,105,92,111,97,93,126,99,98,111,99,95,95,85,95,87,98,105,95,95,95,93,93,105,116,114,102,98,105,106,94,106,113,102,94,102,103,109,111,112,101,106,104,93,97,109,95,107,113,101,106,101,104,103,79,100,113,77,109,113,101,99,109,103,105,102,109,109,106,94,108,93,101,95,103,102,106,124,90,108,97,105,109,99,98,107,100,95,105,115,100,105,88,104,95,112,117,99,120,102,97,94,105,107,113,95,102,103,117,100,106,117,110,99,96,104,92,105,105,98,101,99,111,98,103,103,109,96,113,91,99,98,101,100,100,97,108,104,109,104,104,84,95,102,109,117,102,97,84,95,87,95,91,93,106,108,98,108,108,104,104,99,98,93,97,94,113,107,91,99,100,106,107,107,108,92,101,113,112,92,109,104,101,93,109,115,113,105,95,106,109,97,101,95,96,98,108,99,108,95,82,109,117,98,114,110,127,95,102,113,96,104,101,89,110,95,107,105,97,84,90,99,100,97,96,111,110,103,115,96,94,87,93,99,115,100,112,110,101,106,92,98,110,81,97,91,101,91,99,102,105,84,100,100,104,105,112,110,95,98,84,104,109,105,113,107,91,102,93,95,107,102,97,93,107,106,104,105,96,117,98,92,111,102,107,111,105,105,109,104,97,105,102,102,97,98,110,103,96,94,95,99,102,106,116,98,101,93,109,100,96,93,91,102,102,96,104,102,81,104,102,109,109,91,107,101,87,109,92,104,100,99,100,111,105,99,113,102,92,113,103,101,99,103,103,109,130,112,115,108,112,112,102,103,102,94,97,106,115,75,116,107,90,99,100,115,103,103,103,111,101,99,118,109,92,104,105,101,110,102,112,108,114,95,102,88,102,102,96,103,95,104,114,107,74,93,104,87,102,101,110,107,113,96,88,95,102,107,87,104,94,112,104,108,95,95,101,106,101,100,100,98,99,95,120,102,106,102,117,103,103,95,99,95,107,125,98,101,104,116,123,93,103,89,96,96,97,112,102,97,98,102,101,110,106,110,98,82,97,92,108,98,102,87,97,103,97,102,112,88,99,108,114,108,103,102,103,98,96,98,108,110,91,110,97,100,101,99,114,96,93,109,99,108,104,94,101,109,109,105,106,105,99,105,98,87,99,103,114,109,105,103,97,108,99,85,103,102,105,91,98,93,104,100,95,95,85,105,98,99,106,113,96,117,94,100,96,104,106,99,102,98,102,97,94,95,78,105,102,99,99,116,106,103,101,107,100,111,99,101,89,93,96,108,105,105,104,103,102,96,95,108,99,93,101,99,102,106,103,92,100,102,106,106,90,100,94,99,90,97,110,91,98,113,92,95,96,108,99,98,90,101,94,100,101,94,99,93,90,102,97,82,96,103,93,105,97,103,101,89,106,103,87,102,101,101,105,104,78,100,88,99,97,96,98,101,108,94,95,92,104,106,106,102,96,109,101,104,107,96,108,93,92,98,94,110,99,102,96,93,93,104,106,101,101,105,118,98,100,96,100,97,77,91,103,94,109,89,104,111,81,113,103,98,101,95,97,102,102,90,102,103,109,101,101,84,104,102,101,93,110,104,114,116,113,102,105,89,91,109,101,110,93,112,101,96,101,90,105,104,96,111,100,91,99,102,110,112,100,94,112,97,112,109,101,107,96,103,107,106,104,100,106,105,100,111,95,96,96,102,97,108,110,107,98,88,100,96,109,103,81,96,109,110,108,97,88,105,101,106,103,113,96,86,104,102,96,107,102,85,100,125,109,109,94,102,97,102,94,103,102,112,110,98,95,96,101,114,104,105,103,95,105,101,93,94,98,87,99,102,100,87,102,109,100,92,102,98,83,102,124,105,102,106,91,103,111,103,111,106,101,107,112,116,98,91,107,98,98,103,102,96,99,108,103,120,93,104,106,97,105,101,96,108,98,99,112,97,100,105,114,118,103,83,102,97,100,111,97,96,114,105,96,96,97,95,87,93,96,97,100,102,108,93,89,100,121,103,101,89,104,102,106,111,108,98,102,102,107,101,106,101,99,104,99,99,111,87,110,101,98,94,86,106,101,100,72,100,108,96,97,111,101,97,109,99,123,97,129,102,82,100,101,110,105,109,91,111,102,102,111,110,97,113,108,105,97,99,101,102,100,91,95,101,107,98,87,103,116,107,92,101,109,103,102,106,102,102,91,101,111,102,108,103,108,106,92,101,92,91,105,103,105,100,89,95,97,104,123,95,96,105,123,104,98,101,100,104,101,105,90,109,99,93,112,105,103,103,106,110,108,93,97,119,104,108,103,113,103,111,96,106,105,97,99,101,95,109,90,84,113,105,104,98,97,97,99,99,112,98,103,98,77,111,101,87,93,105,108,102,110,102,81,90,93,95,96,74,101,101,102,115,94,112,79,96,99,105,103,100,95,88,104,81,89,108,97,111,103,113,107,110,103,91,107,93,105,102,102,83,113,101,105,117,97,92,98,99,103,93,113,112,113,103,95,106,92,106,103,94,105,92,95,79,94,107,95,103,95,95,109,107,107,94,101,97,121,105,106,81,92,109,105,110,108,100,105,105,93,107,109,108,94,89,106,95,99,87,97,105,106,100,90,96,90,92,91,100,109,100,97,99,94,103,102,108,105,90,107,102,106,116,94,102,100,95,96,100,102,105,117,107,94,91,101,109,97,120,107,101,95,101,99,110,106,97,99,100,91,93,106,108,112,97,99,106,100,96,91,101,90,98,119,101,110,109,106,103,99,90,102,108,85,95,105,98,97,93,93,101,97,108,84,95,99,115,109,103,102,91,106,89,88,113,93,102,104,104,94,98,105,100,94,92,107,115,103,106,107,98,90,91,99,106,101,109,93,104,114,103,100,100,95,108,113,98,95,106,98,94,92,87,99,101,132,115,94,99,93,99,91,112,92,92,104,113,104,92,91,98,106,105,90,99,102,105,102,82,91,83,93,114,105,105,102,95,108,93,109,96,104,96,107,97,97, +458.2963,106,98,104,104,95,97,105,89,99,100,82,107,103,94,77,106,105,107,103,78,109,94,98,98,93,103,99,112,118,102,96,107,104,100,120,113,99,110,100,97,101,104,105,112,122,104,101,99,84,96,92,103,103,100,112,112,99,114,102,109,114,104,131,105,70,128,102,106,104,92,102,102,95,98,100,112,82,104,104,98,108,102,108,98,110,85,103,105,96,109,113,104,99,99,95,108,103,89,98,100,87,96,97,91,98,98,106,100,98,94,100,103,116,100,105,96,103,112,102,106,103,100,109,112,119,110,102,93,110,109,97,105,88,91,110,137,95,96,100,99,102,103,100,111,108,89,117,99,92,105,96,95,104,106,98,94,117,116,98,105,105,91,104,107,111,95,98,101,95,100,101,107,99,97,105,92,100,86,106,99,106,116,95,102,89,107,109,113,96,92,89,99,102,93,90,95,109,111,112,106,109,102,98,101,105,103,98,109,113,98,92,95,106,111,113,104,102,105,97,121,81,104,115,113,103,105,96,108,112,113,103,104,110,96,109,110,114,107,116,93,112,106,102,102,96,103,111,98,118,105,102,104,114,99,112,95,105,84,100,105,106,104,107,112,104,107,102,106,111,108,102,98,103,102,98,90,103,106,99,98,106,108,110,110,108,114,69,99,108,107,104,109,90,105,117,98,110,101,100,106,105,106,88,100,99,114,106,107,115,113,110,108,103,108,101,90,90,101,105,107,113,104,108,100,101,107,86,109,112,98,98,98,118,106,110,106,93,96,107,101,88,98,94,104,101,107,111,78,105,104,113,109,91,104,118,104,100,117,108,101,87,105,100,98,92,90,112,108,99,110,112,102,104,104,108,104,92,107,101,105,103,91,99,98,107,96,107,103,103,104,114,102,95,108,111,109,106,99,86,88,93,101,109,98,101,81,114,97,101,104,89,106,102,103,105,95,95,100,114,107,108,110,94,111,104,81,113,106,100,109,101,102,103,106,99,100,106,109,110,96,110,112,110,112,103,104,111,98,110,95,109,107,101,102,117,106,102,111,105,103,98,104,99,96,109,116,94,117,103,96,84,99,95,104,96,100,97,125,111,106,114,113,96,95,104,96,107,98,95,98,113,107,113,106,115,99,117,98,93,102,114,112,91,99,100,106,103,100,98,105,109,97,99,114,105,111,106,111,103,104,98,86,104,104,113,113,106,95,87,94,102,118,103,104,68,97,113,103,97,105,101,102,93,105,99,98,103,94,109,100,108,109,100,106,97,108,106,114,100,96,112,112,106,110,92,108,94,110,100,82,99,107,101,105,110,102,105,101,103,98,107,98,99,95,113,96,99,111,99,105,91,109,107,111,109,95,100,101,113,100,101,100,106,99,100,105,123,103,87,100,101,95,112,111,114,102,110,100,107,98,103,106,116,99,103,108,96,107,106,106,118,112,99,116,111,109,101,99,91,89,103,108,121,113,99,104,96,111,103,92,94,117,100,103,105,109,116,104,102,113,102,116,113,110,95,95,116,132,101,103,107,108,102,101,94,103,100,106,114,108,105,95,105,109,105,104,97,103,105,108,102,99,105,113,91,101,104,95,106,103,101,98,106,94,103,110,100,102,102,109,109,104,109,101,101,98,90,97,104,97,105,99,104,105,90,98,109,102,106,107,103,107,97,84,97,109,111,91,104,106,116,103,115,98,102,109,112,113,95,114,112,95,102,106,103,106,106,90,106,102,86,107,98,103,75,106,105,109,102,107,99,117,98,97,98,96,102,98,91,109,98,109,94,108,115,121,96,117,109,93,105,107,110,122,108,102,92,105,104,105,97,96,98,104,111,105,113,87,94,99,98,119,104,108,107,104,116,105,108,104,103,105,110,110,108,96,94,100,102,101,103,107,95,106,97,96,103,106,110,107,112,84,93,102,113,106,121,99,98,99,99,108,99,96,104,107,116,110,101,110,92,105,101,97,102,112,110,103,116,97,105,105,108,108,93,105,108,98,114,101,103,94,102,103,104,95,84,115,101,103,122,115,105,114,115,90,102,109,107,99,118,94,104,102,111,106,106,99,101,104,113,120,96,105,109,99,111,116,105,102,110,111,109,106,103,107,104,111,108,98,85,116,113,107,101,106,102,86,106,109,110,106,102,107,97,102,109,102,103,106,112,112,100,113,103,98,94,96,100,112,106,99,93,113,95,105,96,101,108,106,109,97,89,104,105,107,104,116,105,111,103,100,99,100,108,111,102,103,102,108,105,99,114,103,100,103,90,101,98,103,90,94,96,97,104,108,97,102,98,112,105,102,82,112,102,98,100,110,96,118,112,115,95,99,102,108,89,110,103,110,102,102,102,97,96,104,106,110,100,109,108,104,103,102,102,109,92,86,103,102,112,105,98,86,117,107,95,104,92,101,108,103,116,103,97,107,103,104,104,109,98,103,106,109,96,113,114,117,106,105,102,97,92,111,106,101,97,98,112,119,91,112,107,107,98,93,91,104,96,109,108,96,96,99,92,104,99,102,91,104,108,107,103,97,115,105,95,100,106,104,101,100,103,104,107,107,98,113,108,114,108,110,111,101,92,108,104,102,95,97,99,95,102,103,105,94,95,110,120,98,113,91,92,98,107,107,101,104,102,103,112,96,112,92,109,92,104,99,101,101,99,100,96,90,98,104,108,105,103,113,107,101,105,100,100,103,108,92,96,95,96,109,103,112,91,136,105,92,107,102,88,103,93,102,102,102,103,96,108,97,107,94,108,100,99,105,92,121,101,106,99,112,108,97,113,105,92,109,86,107,114,97,93,112,124,103,107,107,101,102,107,101,98,91,98,102,106,109,99,95,118,92,106,110,97,97,102,97,100,98,99,103,102,109,97,105,101,101,69,117,111,98,106,108,106,102,100,94,90,102,97,100,108,101,108,106,105,78,92,104,102,108,101,72,109,97,94,103,103,68,117,101,98,108,93,98,111,102,101,106,101,120,96,93,106,115,102,95,112,106,101,96,105,103,108,99,106,100,103,98,108,77,93,108,117,114,94,106,104,115,90,106,100,100,102,102,124,97,105,113,106,107,106,104,94,107,103,92,120,109,102,99,106,106,113,95,102,113,114,108,110,104,94,105,117,99,117,107,99,123,103,98,102,102,109,105,95,104,94,95,100,101,102,99,104,109,99,99,107,104,106,75,91,105,95,113,105,101,98,101,101,104,106,100,104,95,98,111,106,96,103,102,88,92,104,101,100,88,108,109,101,114,102,106,106,101,101,108,91,116,100,113,102,110,108,87,103,92,97,98,104,104,105,98,101,107,109,103,98,87,102,104,111,97,105,115,101,112,109,108,89,99,104,71,95,88,108,108,108,94,97,112,108,112,97,99,104,101,92,102,103,107,102,93,106,106,105,107,105,101,102,105,74,97,105,110,108,108,103,104,106,98,100,103,102,100,92,102,124,91,119,108,110,98,95,105,108,107,95,100,96,109,108,97,95,98,100,99,106,109,111,93,105,105,106,112,109,107,102,91,92,100,100,110,111,108,108,97,90,102,92,109,103,97,100,117,103,98,104,102,101,103,101,103,105,102,109,100,100,103,105,89,110,99,104,95,118,114,106,103,99,106,104,103,107,103,95,102,106,107,108,104,113,104,105,97,110,92,107,107,109,92,105,111,96,107,104,98,112,102,108,105,101,99,88,103,90,108,94,105,93,103,97,104,102,82,110,103,102,107,91,112,97,90,99,92,108,95,103,100,102,99,103,109,102,95,104,112,121,112,102,99,95,93,105,95,104,106,104,106,96,113,96,95,117,113,110,113,100,105,99,101,107,104,101,99,99,100,102,113,111,100,108,105,98,101,116,92,104,109,97,106,102,102,83,106,101,101,100,103,111,98,96,97,103,97,110,94,94,109,105,105,102,103,102,101,98,106,106,103,110,98,102,97,101,109,103,95,102,101,110,109,99,100,95,100,105,102,100,91,109,101,109,104,107,108,100,106,99,99,125,108,89,105,101,103,89,102,110,106,102,95,100,111,109,119,117,98,112,95,108,101,96,104,100,105,103,107,98,102,105,92,98,103,96,104,105,98,105,97,103,103,100,113,110,114,96,113,96,93,100,99,100,101,105,103,95,102,101,96,109,105,100,104,113,101,89,105,93,104,105,115,75,94,101,91,111,92,105,109,98,97,116,109,110,107,97,103,117,107,110,105,103,106,107,99,93,104,101,119,112,104,98,89,110,96,103,101,99,97,87,69,120,117,96,107,87,96,110,101,108,95,112,109,97,104,98,104,107,97,107,116,99,112,94,98,93,101,100,103,97,88,98,94,95,107,101,103,106,100,101,93,103,95,88,96,96,104,111,103,98,101,105,97,99,119,103,104,111,105,109,102,90,104,95,92,113,121,96,111,105,89,99,107,86,106,101,101,92,96,112,103,106,92,94,99,96,100,102,102,103,107,100,99,111,95,105,105,112,104,104,98,97,98,106,98,91,95,111,104,91,79,107,100,103,103,103,116,101,96,101,84,98,104,110,102,100,103,99,92,110,114,104,108,110,117,106,102,94,110,89,116,107,98,91,90,102,100,95,90,107,95,106,100,108,107,99,103,101,103,86,111,99,106,104,106,105,98,99,113,100,99,107,99,112,91,112,107,108,98,99,100,109,101,93,99,100,88,100,85,89,100,90,94,104,106,109,102,96,101,105,107,105,105,106,97,98,93,105,112,96,67,112,110,111,102,108,100,112,100,114,81,109,95,108,95,92,111,99,103,95,99,99,112,113,103,107,94,107,98,100,104,104,89,108,97,101,103,109,108,112,115,90,112,113,105,110,106,118,101,96,101,100,96,98,120,102,92,107,98,108,120,119,108,80,92,95,102,101,96,106,85,96,96,122,102,107,101,102,109, +458.43671,93,97,85,92,101,113,100,99,90,107,95,121,93,100,105,98,102,101,102,107,96,90,80,101,97,93,103,98,104,101,99,110,102,89,103,104,103,100,101,104,99,100,101,82,107,108,108,107,98,104,102,79,117,95,108,102,83,87,104,116,98,93,98,105,114,111,101,100,108,95,107,112,101,111,93,111,93,106,130,109,102,97,109,114,107,108,106,88,93,108,103,94,106,95,97,101,95,87,101,106,87,91,96,103,96,112,95,109,109,101,123,108,108,116,99,99,98,119,107,112,104,108,102,100,102,90,105,101,98,116,111,97,92,129,135,99,101,88,92,101,104,104,102,113,108,97,106,100,114,104,97,92,99,98,101,109,100,90,100,110,95,98,110,106,99,105,99,113,107,99,105,94,101,103,102,116,107,108,104,109,102,98,97,107,106,97,107,84,97,100,104,103,94,113,101,95,94,96,91,99,112,105,99,100,110,95,94,91,112,94,95,97,98,100,102,105,105,108,94,98,93,106,98,98,113,106,108,84,95,114,110,116,109,100,118,112,90,107,102,95,108,113,107,93,93,101,107,94,112,101,105,103,102,123,100,103,103,107,84,113,95,103,118,116,98,118,112,114,108,107,99,106,115,121,89,97,102,113,101,98,99,101,112,103,110,100,93,89,103,102,105,102,106,105,99,110,106,112,107,111,102,100,112,112,94,109,111,99,91,111,102,106,95,100,99,97,100,107,101,103,99,105,100,90,100,102,98,96,104,109,92,108,99,91,100,94,99,109,135,107,104,89,101,93,93,97,104,124,97,104,111,113,98,95,97,100,112,103,117,96,102,97,102,98,101,109,104,114,110,96,102,97,114,106,106,96,95,94,123,103,99,117,100,106,80,109,96,100,106,87,114,109,96,109,107,104,107,105,109,102,89,110,117,108,99,91,107,103,104,107,103,110,115,101,114,100,110,111,98,103,103,92,113,103,94,95,100,106,102,98,86,113,96,99,105,107,83,100,94,104,104,113,100,102,113,110,100,90,99,103,113,103,112,129,100,102,108,109,109,102,101,105,98,95,100,110,113,103,92,99,99,110,101,101,105,102,101,112,103,64,109,110,112,108,99,96,90,106,110,90,87,108,95,103,97,102,101,114,108,104,109,96,105,107,105,107,103,101,105,90,104,101,106,109,114,109,102,106,99,91,116,100,103,111,106,104,103,103,100,100,105,102,103,109,99,119,102,105,108,100,101,103,99,109,105,101,100,109,110,96,96,105,109,102,100,105,100,95,106,103,108,103,97,99,104,107,102,103,91,101,101,94,99,100,95,108,100,105,118,103,112,114,100,97,102,95,108,120,108,79,102,84,97,114,104,120,87,102,110,115,103,110,99,102,105,121,104,107,101,108,97,98,99,103,100,100,102,110,101,105,99,104,97,109,105,103,99,103,106,97,98,102,107,114,96,96,108,103,96,107,100,106,109,102,110,102,98,102,102,103,93,107,110,88,102,103,104,105,90,96,119,107,106,105,96,103,105,99,93,107,100,104,103,107,106,99,98,102,110,101,101,102,109,108,109,95,95,104,107,99,101,109,94,113,109,99,98,101,99,106,104,122,104,88,106,99,104,106,103,113,83,107,99,99,100,95,97,97,103,99,97,97,106,103,104,101,106,101,104,115,100,103,101,98,102,92,99,97,102,117,108,99,110,110,106,97,107,110,104,113,90,102,100,96,103,101,111,114,102,113,105,126,91,102,63,114,101,104,104,113,110,101,112,100,116,97,100,104,116,107,100,108,105,105,93,103,117,121,101,105,112,112,113,103,104,106,107,112,104,84,111,106,98,96,101,107,103,103,99,113,125,95,101,101,108,97,101,113,86,107,119,101,108,108,106,110,89,99,101,114,114,97,104,107,105,105,100,103,108,123,93,110,96,98,101,104,93,105,92,96,108,90,108,104,104,104,103,108,100,111,94,95,99,100,106,94,103,92,106,103,111,112,104,105,99,113,110,111,104,107,99,111,96,116,133,115,108,110,101,113,99,108,100,117,101,97,103,108,100,103,106,100,112,74,107,87,108,92,100,100,109,90,115,110,106,92,89,107,101,110,103,109,104,100,112,106,104,110,110,108,110,104,101,95,119,112,114,93,112,100,111,102,99,104,110,117,99,94,105,117,109,114,116,103,106,109,103,112,106,104,104,101,106,85,109,117,105,109,97,97,95,98,95,93,102,114,106,107,108,108,107,114,100,101,112,107,95,103,108,102,102,99,95,98,101,95,99,99,101,95,114,116,99,97,108,105,93,125,104,111,93,105,103,109,97,97,99,108,108,107,113,108,113,101,102,100,104,101,101,87,98,113,112,102,103,94,93,101,98,91,102,96,108,105,109,94,101,92,111,91,99,108,104,108,106,85,101,103,112,102,99,115,107,108,114,103,76,100,112,111,103,110,94,99,98,102,110,101,107,104,99,104,96,89,98,97,101,95,113,106,96,107,107,95,101,106,111,110,105,101,100,91,97,103,100,112,87,91,99,104,114,109,109,110,109,102,98,104,99,104,102,101,109,104,110,91,115,111,95,96,105,103,96,101,98,99,112,113,105,97,97,103,96,101,83,110,104,106,101,94,113,94,103,98,95,109,131,92,104,115,107,100,96,93,99,91,99,98,97,100,105,102,102,100,89,105,103,120,112,96,102,100,84,97,119,91,102,106,107,99,97,110,99,106,93,110,108,97,111,109,81,108,107,105,93,108,108,104,108,102,103,111,103,103,87,103,91,96,83,109,102,106,95,109,108,101,105,111,112,103,104,110,95,113,88,95,106,113,97,105,104,101,120,92,102,106,107,94,102,96,103,109,102,111,110,102,105,111,97,104,109,102,98,105,112,108,99,115,107,100,103,129,107,113,99,96,103,105,100,101,108,95,103,95,95,106,101,99,104,106,98,109,96,103,90,102,106,101,114,104,104,96,103,108,112,100,106,103,91,109,99,108,82,106,116,106,115,107,102,96,102,97,89,88,106,98,112,92,98,102,98,101,112,111,109,106,100,103,88,79,102,114,97,103,127,92,115,95,110,92,107,101,102,99,85,109,99,87,98,107,112,106,88,102,107,98,105,86,96,106,102,101,106,96,103,107,94,113,108,110,100,101,92,87,108,100,104,110,119,80,97,102,94,108,100,110,103,94,106,124,100,102,101,86,113,104,103,111,114,95,111,107,107,100,109,107,90,91,102,101,99,98,100,101,104,91,107,105,109,97,91,94,95,104,103,104,96,135,109,104,95,97,99,94,94,97,101,95,103,96,104,100,109,111,99,94,108,100,103,96,108,104,99,107,117,96,100,111,112,114,99,113,102,91,110,110,110,107,98,101,100,101,105,101,102,94,88,105,101,106,100,100,107,98,99,104,103,99,111,104,104,115,110,109,98,101,119,101,112,92,108,90,102,106,109,103,117,99,103,96,111,104,110,99,104,95,105,101,101,103,109,83,98,100,92,99,99,99,103,106,102,112,102,107,104,111,96,110,106,107,114,107,102,104,103,95,108,105,108,97,109,111,111,106,101,102,100,96,104,104,93,102,112,108,114,99,114,111,100,106,93,103,98,98,98,100,95,99,109,105,97,109,109,109,115,102,105,104,102,103,104,102,108,113,92,101,102,117,101,102,106,105,105,101,95,106,102,109,101,102,102,110,98,106,97,86,100,102,106,103,102,112,100,99,104,93,99,105,97,102,98,95,100,97,103,106,102,117,93,106,106,98,101,107,99,104,93,95,102,98,97,104,101,109,95,103,104,111,123,114,91,70,90,110,104,105,102,89,107,101,123,96,91,98,99,100,107,91,107,94,119,110,99,95,105,100,92,93,107,91,97,99,101,100,101,99,97,109,94,95,107,102,104,106,99,98,63,102,87,99,99,102,112,108,106,113,99,90,116,95,106,98,111,105,108,100,107,100,103,92,100,98,91,114,101,105,98,97,99,91,106,104,91,69,102,92,119,93,100,105,104,110,103,98,114,82,98,96,117,104,107,104,101,113,102,97,96,100,104,96,96,112,112,93,102,117,114,103,96,104,95,91,104,99,100,100,108,111,115,103,96,91,98,103,104,114,106,106,104,113,79,106,103,91,114,115,108,101,98,100,118,89,110,106,107,94,107,98,107,110,104,87,99,115,115,102,101,101,95,95,100,100,96,107,98,117,108,130,110,99,115,89,117,105,116,87,107,104,103,115,104,100,98,98,100,109,97,98,105,91,107,101,109,114,98,108,98,99,109,116,95,100,111,106,91,98,106,102,97,95,104,98,108,99,105,98,102,106,100,109,105,89,112,116,91,70,93,130,106,95,102,69,106,116,94,97,99,108,107,112,102,109,105,113,107,101,110,115,101,95,110,102,95,100,100,110,98,113,108,95,95,94,118,100,97,103,90,101,86,98,121,97,104,100,96,97,108,97,110,96,112,109,93,103,91,93,105,105,110,99,101,88,88,100,116,102,102,104,102,107,95,107,96,119,97,98,98,109,87,94,90,108,94,104,102,100,108,109,108,95,102,116,94,82,99,99,92,102,102,98,99,105,87,94,105,121,113,89,96,105,102,103,96,97,111,100,95,100,102,76,103,107,71,102,107,98,99,114,93,104,102,110,105,88,104,92,110,93,116,102,113,90,104,100,112,99,104,91,95,107,94,111,99,100,112,100,111,96,104,93,94,109,119,97,91,102,80,102,101,103,87,102,102,102,102,100,94,85,116,112,106,101,95,109,91,104,111,108,134,95,100,104,106,99,107,98,94,100,99,124,101,99,95,97,102,109,106,100,89,101,105,116,100,104,105,96,99,101,105,90,117,98,78,104,105,95,112,98,104,98,100,93,120,96,105,114,103,88,113,102,110,95,88,109,101,106,106,97,99,100, +458.57715,113,96,101,102,95,110,105,108,102,105,115,91,104,109,103,96,93,99,114,104,97,97,108,99,107,117,97,102,102,104,96,108,104,114,112,110,97,96,91,117,108,97,92,102,107,106,96,100,98,102,93,97,104,112,109,108,92,109,115,87,98,100,100,106,93,104,103,102,105,100,112,98,91,106,86,107,91,101,100,83,103,113,81,109,96,83,83,100,102,85,106,104,106,109,101,87,92,103,100,96,110,106,98,113,103,111,98,100,102,99,94,101,99,98,93,117,96,114,108,98,96,103,94,111,106,105,102,76,102,99,102,103,92,112,110,104,103,102,90,98,95,105,103,98,95,104,113,109,87,105,100,101,86,91,98,95,105,108,95,93,106,106,105,98,105,100,100,95,106,102,72,104,72,91,95,104,110,108,105,99,103,109,126,108,113,99,103,104,104,99,96,80,114,112,108,95,103,104,106,106,109,98,94,92,106,104,101,110,108,97,88,86,108,93,113,98,98,100,108,117,114,111,98,103,91,105,99,102,94,95,98,86,98,106,113,103,104,105,91,87,94,98,100,92,103,113,107,111,101,95,98,100,98,104,99,105,101,103,95,106,107,101,104,95,106,109,100,98,122,88,102,100,104,101,109,105,107,107,98,104,102,110,88,93,101,114,95,105,98,94,109,100,96,105,112,104,114,83,103,106,109,99,100,102,103,103,100,96,104,111,104,121,109,119,109,108,106,107,101,100,103,106,112,96,103,99,108,93,101,116,94,100,100,87,110,106,110,106,102,109,94,103,107,95,91,95,104,119,107,93,111,99,101,102,105,97,105,113,110,98,105,100,103,104,106,106,106,96,94,97,106,109,95,120,108,106,110,106,99,110,122,96,104,100,93,105,98,110,93,104,106,105,95,109,102,99,91,118,93,105,100,89,99,100,107,108,99,105,94,101,91,104,103,105,97,96,101,105,104,110,104,100,103,95,113,94,95,94,102,109,101,106,103,112,131,116,104,96,104,104,105,98,107,102,113,104,99,104,88,88,96,97,102,106,103,102,93,100,102,100,91,101,120,109,117,111,115,99,105,108,101,98,110,111,106,103,97,87,98,76,99,103,105,84,118,97,106,107,99,100,103,110,102,105,99,95,96,101,102,113,103,106,108,105,115,103,100,99,106,99,102,105,109,114,115,107,92,112,97,94,109,95,100,112,104,90,99,133,97,120,79,112,82,107,109,91,105,91,99,100,85,101,93,101,117,103,109,105,97,94,97,96,102,108,106,100,104,101,96,96,104,101,111,102,98,96,77,110,109,99,92,102,107,119,103,93,94,105,95,118,100,106,109,94,104,83,98,108,97,101,101,97,79,99,102,99,82,120,101,99,96,103,111,102,99,101,109,111,100,103,108,76,105,108,97,111,109,113,97,101,113,100,99,101,116,108,100,99,100,103,104,105,92,93,112,98,107,109,105,99,113,108,109,100,109,93,96,102,99,109,104,117,108,100,105,114,110,111,95,101,107,111,109,104,96,110,111,113,88,100,110,103,94,109,92,100,102,100,102,104,97,117,122,99,104,103,107,109,95,90,105,121,77,103,103,115,107,113,104,102,95,112,104,83,99,105,108,107,110,103,96,101,95,104,100,99,72,116,105,99,101,105,116,121,106,112,98,108,98,109,99,95,106,84,92,106,98,92,116,89,109,89,100,100,95,105,95,101,88,105,84,98,105,100,100,109,102,102,102,105,103,107,106,101,95,98,99,117,101,114,103,90,103,102,102,112,109,112,107,99,90,105,102,95,103,117,102,105,109,99,102,107,123,111,114,105,92,106,100,103,108,112,104,107,110,99,104,108,113,110,107,119,103,110,101,109,107,109,102,100,109,110,108,107,113,100,114,104,91,99,93,80,108,108,107,110,101,112,106,106,103,106,109,97,90,104,103,107,110,106,113,106,103,111,109,103,118,96,107,99,100,94,110,99,105,94,99,107,104,98,106,111,94,110,98,114,97,99,111,97,104,96,102,105,105,100,96,114,101,111,108,93,84,100,98,101,122,115,90,91,101,113,108,99,99,102,99,94,97,102,106,110,118,90,103,109,90,114,99,106,104,99,103,102,105,96,102,98,112,102,96,91,107,102,85,101,110,109,107,101,107,100,91,99,110,106,102,108,93,107,103,112,94,118,110,97,110,105,100,110,105,95,113,99,97,96,98,91,102,94,109,113,113,106,108,110,106,112,103,99,99,105,100,93,104,105,108,98,100,105,97,110,114,117,103,106,108,102,86,111,101,104,106,106,112,107,107,102,113,109,94,108,102,115,110,111,103,110,98,106,103,113,110,92,109,109,97,108,115,111,107,113,105,100,105,94,98,125,108,98,85,86,103,102,96,93,68,107,101,100,119,102,107,96,107,139,124,104,95,103,113,99,112,105,109,94,109,96,98,95,95,118,105,118,95,98,103,104,87,105,92,97,87,100,112,104,105,101,104,116,98,115,97,100,103,95,110,98,101,101,104,98,107,91,101,105,113,105,100,116,93,106,112,110,111,103,103,109,105,111,106,113,101,109,105,104,108,111,110,107,97,108,119,104,95,102,95,93,89,93,97,99,101,104,104,110,104,103,107,109,105,91,119,105,97,112,108,105,106,105,110,98,119,90,100,109,104,100,108,101,113,116,88,102,104,120,102,107,109,103,110,127,104,116,103,108,110,105,125,107,100,104,98,100,105,112,114,100,95,105,93,108,103,100,109,104,109,111,104,99,105,116,97,109,107,109,98,97,103,108,99,108,105,99,106,99,110,86,112,113,106,109,108,93,103,90,104,113,115,106,107,103,110,95,116,103,104,99,94,107,103,112,105,105,107,101,94,102,98,101,96,103,96,89,107,96,107,107,99,99,108,103,102,115,98,94,109,96,103,99,100,105,124,90,112,99,92,98,106,96,104,120,106,100,95,120,99,104,99,102,116,103,95,103,109,109,103,101,101,100,94,101,106,106,77,66,108,109,103,103,113,96,93,102,108,104,98,99,106,102,99,98,102,108,103,102,97,103,101,104,102,110,109,106,115,104,118,100,101,102,93,110,97,102,91,107,104,122,99,116,102,112,101,113,95,124,108,97,107,104,107,102,96,109,99,109,96,97,104,100,96,96,99,96,84,98,97,113,97,116,107,104,96,104,88,100,96,100,119,103,101,104,107,105,99,101,97,110,105,106,112,72,108,109,94,95,117,103,110,100,104,106,109,97,99,100,99,104,117,97,100,83,105,116,103,94,133,88,102,106,101,98,113,111,102,98,90,97,103,105,99,99,97,95,105,96,101,96,104,101,69,96,105,109,67,102,106,111,119,96,100,117,96,105,106,103,113,101,108,105,102,98,103,90,104,100,108,96,104,94,106,94,102,109,98,106,88,102,95,105,95,109,116,103,104,89,102,108,106,95,107,107,102,103,102,104,108,102,113,99,109,90,112,100,98,106,92,103,83,102,108,104,99,99,106,107,103,105,109,87,116,108,96,113,98,101,100,111,110,99,111,113,103,80,108,102,108,107,98,109,99,104,100,100,110,101,89,91,111,106,100,104,109,109,106,109,105,105,96,105,127,96,98,99,109,93,103,104,101,109,100,114,110,114,93,119,94,106,107,103,102,99,100,105,102,104,99,98,107,106,101,109,100,103,108,99,109,101,101,102,110,104,88,95,75,102,98,128,111,89,91,105,108,104,102,104,111,104,101,94,98,103,100,98,108,96,113,98,93,100,103,98,98,105,103,113,119,123,99,105,98,110,100,106,107,96,108,102,114,94,103,98,99,104,95,103,102,103,101,113,105,96,115,105,95,97,111,117,101,104,97,100,117,94,106,94,123,98,105,95,94,110,96,96,104,109,90,99,109,105,100,94,100,101,101,96,114,97,98,100,93,103,93,98,104,105,105,112,96,98,101,98,107,95,93,110,112,106,106,94,101,102,90,117,106,103,103,100,102,99,94,108,92,91,101,114,98,99,100,102,103,112,99,96,104,105,108,107,105,99,106,108,109,98,99,104,101,105,110,106,102,102,108,99,94,107,111,108,111,93,96,99,117,93,112,105,96,108,72,102,100,107,98,99,106,106,97,97,110,102,84,102,117,108,98,92,100,99,106,111,105,103,84,106,95,118,99,101,106,95,107,91,101,89,109,103,127,100,93,96,102,99,115,111,109,104,102,103,76,112,109,102,102,105,108,110,116,98,98,104,102,104,103,84,102,88,98,90,95,95,95,102,108,104,103,108,121,102,95,100,100,99,98,113,102,97,104,92,107,101,100,108,101,107,102,107,100,107,97,108,104,96,107,103,106,101,93,101,98,93,92,99,94,104,106,97,108,103,98,113,105,99,116,116,106,103,103,101,95,95,117,106,96,102,78,113,97,118,120,94,107,95,100,93,98,109,95,91,102,100,112,103,109,109,126,95,84,105,89,72,115,99,117,95,110,102,98,112,109,95,95,99,102,101,112,94,92,95,94,96,107,96,96,111,99,103,109,92,107,92,98,93,101,90,98,98,101,110,101,93,100,99,100,96,100,111,112,82,102,97,121,81,90,97,104,103,103,102,98,93,107,107,102,108,99,104,91,95,107,63,113,97,101,106,105,114,103,97,105,97,105,98,98,103,109,108,113,92,109,105,101,100,117,98,91,97,100,97,96,104,91,101,105,99,106,99,99,98,100,108,96,103,103,107,105,103,95,93,99,102,95,99,89,101,106,94,100,92,98,104,106,106,97,103,94,102,101,91,103,107,91,108,109,101,103,110,107,110,99,103,97,96,100,97,97,108,103,100,109,92,98,108,95,117,92,106,108,99,98,103,92,125,98,109,107,104,91,107,96,125,104,95,81,102,98,96,85,96,104,120,121,106,87,98,109,107,113,90,89,109, +458.71759,63,95,105,94,112,103,83,98,107,102,92,98,103,118,101,100,102,100,106,91,105,90,90,91,98,113,105,103,104,100,100,122,94,119,110,91,96,98,103,103,104,97,95,108,100,107,101,100,102,105,102,105,100,102,105,101,109,99,102,87,101,95,101,94,82,103,100,109,100,98,101,99,97,115,92,77,92,87,103,96,92,104,113,58,89,101,108,113,90,127,96,115,102,108,109,105,103,96,102,113,101,101,102,96,101,112,100,97,99,102,95,92,114,89,107,98,107,119,114,100,101,92,101,99,91,113,103,95,104,119,100,103,93,104,94,101,107,101,95,112,91,94,104,103,111,104,90,99,100,95,84,123,96,106,111,82,98,103,111,114,107,87,105,110,96,93,95,104,99,100,97,96,97,109,101,104,110,95,108,113,103,111,106,103,104,102,102,103,104,95,103,102,99,97,99,109,102,100,102,109,101,106,99,103,107,117,104,95,111,96,97,100,97,105,104,101,98,112,109,113,106,104,82,105,96,99,105,99,102,91,94,110,106,118,104,103,107,96,109,102,105,102,107,69,118,109,106,109,107,107,102,103,97,92,100,97,91,108,102,104,90,90,95,102,105,107,108,104,94,98,105,94,103,98,105,109,111,116,95,100,109,109,121,97,96,104,97,96,116,96,98,110,106,117,119,96,90,107,109,114,105,99,95,102,108,112,124,117,95,108,92,102,97,109,105,101,106,106,119,115,100,110,89,101,109,100,98,77,104,106,102,95,104,103,103,109,111,98,84,99,95,97,106,106,114,109,99,102,101,103,104,95,106,106,99,107,109,111,93,112,96,95,104,104,87,91,98,107,110,95,101,104,112,112,101,80,102,108,113,94,101,105,102,101,101,91,108,95,109,106,112,90,99,111,111,98,91,100,112,103,103,102,102,97,105,107,108,102,94,101,103,100,106,95,103,104,104,90,112,99,100,103,107,117,116,103,102,93,102,103,113,104,83,112,112,103,104,107,99,106,110,100,103,119,102,96,101,105,101,118,106,99,103,105,99,101,110,110,111,108,104,121,106,102,100,109,108,105,96,119,106,98,101,97,98,103,98,107,104,99,115,97,109,107,106,109,100,99,107,106,100,104,106,103,96,104,105,107,96,70,127,100,100,108,103,101,105,99,104,95,118,103,102,100,107,100,100,93,94,88,101,104,96,102,99,102,107,106,120,95,99,103,127,115,100,103,112,110,116,103,107,105,90,111,104,105,90,99,94,102,98,112,100,104,96,98,105,109,103,107,104,99,96,99,99,98,109,110,90,96,90,92,98,118,95,104,103,109,106,105,104,115,109,108,97,107,103,109,102,96,101,108,103,102,80,96,100,92,97,99,100,110,108,104,108,113,90,101,102,87,96,101,102,109,104,96,100,99,98,96,108,103,103,109,111,102,109,103,107,110,107,99,97,95,94,103,108,108,100,103,108,97,106,105,105,87,104,102,105,114,97,104,108,110,102,97,92,117,99,97,107,103,104,105,100,101,126,100,108,95,104,107,106,110,103,103,110,100,114,103,105,106,107,95,121,94,91,100,105,112,99,83,95,108,105,94,110,106,87,104,97,91,86,100,110,94,102,102,117,108,109,102,99,113,95,107,105,91,100,91,110,100,121,113,100,100,109,111,108,107,98,99,110,101,98,98,110,97,116,98,102,117,100,102,105,100,130,100,91,110,101,102,109,97,98,102,101,103,102,98,102,135,88,101,101,109,120,90,102,98,100,101,108,102,103,100,110,119,106,99,107,98,106,110,110,101,113,109,100,113,117,118,96,114,96,110,105,107,89,100,114,99,112,101,104,106,107,101,103,106,113,97,99,107,107,113,102,105,102,103,106,101,105,116,104,112,101,112,112,103,117,91,108,96,88,103,107,104,106,118,87,105,107,96,105,97,109,97,109,106,108,95,109,84,94,140,86,104,102,107,102,118,101,109,110,94,100,106,117,113,101,110,104,98,107,90,114,100,97,99,108,96,107,122,105,112,86,103,109,105,106,121,101,106,94,108,108,113,105,95,104,111,103,98,104,89,93,95,102,95,108,106,108,92,105,99,90,108,91,88,97,109,107,100,94,103,110,103,102,114,105,105,99,114,99,113,103,98,112,86,105,111,118,106,113,96,107,103,88,105,110,98,102,104,104,102,96,107,101,100,102,109,95,100,104,112,108,99,99,95,100,99,102,105,93,104,105,105,99,113,93,108,102,101,96,105,101,93,90,96,114,93,109,105,102,99,104,102,109,113,100,95,100,96,113,113,74,107,103,105,93,104,100,107,107,106,104,90,101,106,107,111,106,107,98,110,100,94,102,102,113,102,103,101,90,99,101,109,109,109,97,108,92,110,99,106,113,99,107,112,99,100,104,107,98,112,95,98,80,112,104,127,117,108,100,109,101,111,107,104,95,108,113,103,102,102,105,113,106,113,105,96,95,107,90,89,112,101,109,113,117,98,95,90,100,99,102,108,104,101,102,79,111,109,92,106,101,105,108,108,113,114,109,113,110,109,97,106,101,101,100,94,97,86,112,106,104,106,109,105,108,119,105,100,108,96,106,102,96,102,112,98,99,105,99,100,101,97,108,103,102,99,93,104,98,105,113,94,106,109,114,99,116,93,91,106,93,99,126,106,105,94,100,111,100,100,118,99,113,102,116,106,102,105,115,103,104,112,107,111,97,99,104,108,106,103,108,100,108,103,110,111,96,104,106,100,95,110,108,107,108,92,95,99,103,101,111,97,98,104,111,113,113,97,106,113,100,112,103,108,98,121,106,96,113,85,104,95,95,100,119,112,106,84,108,117,102,113,100,109,103,106,101,91,105,101,108,112,99,101,114,107,97,110,102,108,102,102,95,106,101,98,95,103,95,108,113,111,96,107,99,100,110,112,109,98,105,99,111,113,89,98,104,100,102,108,99,97,113,115,98,98,109,106,101,105,103,102,104,101,108,83,112,102,107,102,93,109,100,105,113,99,93,109,111,102,101,100,104,93,105,93,100,87,115,102,102,112,92,106,113,108,111,114,103,103,106,109,93,106,102,105,110,99,99,98,103,120,97,103,103,121,98,104,117,100,106,104,96,112,109,100,110,98,92,106,101,100,113,105,98,97,99,105,94,113,100,96,102,110,103,106,101,111,108,112,105,103,106,104,98,106,102,103,92,110,105,110,101,112,99,119,117,99,105,91,115,94,99,97,103,100,93,95,100,96,104,92,108,104,106,105,108,112,110,107,103,98,106,94,98,92,93,101,106,105,102,99,105,112,103,111,120,88,106,95,99,102,117,100,107,103,106,95,108,113,85,96,111,98,97,81,106,109,94,101,100,117,104,108,105,113,104,118,103,102,107,95,104,90,100,100,102,108,106,95,101,112,88,100,96,106,96,97,106,105,105,102,105,102,121,96,109,101,100,106,105,107,105,117,111,99,100,86,104,120,108,109,114,85,98,105,98,105,96,104,99,98,117,93,108,110,105,106,108,102,99,111,101,97,109,110,105,101,92,104,108,101,86,107,121,106,110,110,108,99,109,105,107,119,110,93,105,86,110,101,94,110,110,97,95,110,110,109,97,117,101,106,102,103,91,104,104,100,103,103,104,117,105,96,102,92,111,104,101,95,104,98,102,109,102,112,104,109,99,132,112,93,104,113,106,107,109,100,112,123,88,104,96,121,117,91,106,111,96,102,106,105,100,102,100,123,106,91,109,103,96,106,113,103,98,103,107,96,103,96,92,109,106,103,100,101,115,116,106,109,100,105,122,105,106,119,108,101,105,109,102,115,101,109,118,101,105,120,102,100,97,100,106,113,101,90,102,95,100,100,99,103,105,96,96,105,105,119,105,104,100,103,107,100,97,103,102,100,100,75,99,109,96,97,91,98,106,110,100,81,112,107,98,98,96,102,106,102,106,105,98,101,110,114,92,103,100,106,101,104,103,106,88,111,96,92,95,120,96,102,95,109,101,90,107,94,99,75,103,106,108,95,104,103,112,110,91,104,98,101,115,77,106,96,103,104,101,113,114,113,103,109,110,104,94,92,104,93,104,94,97,79,110,102,98,103,98,104,108,101,95,102,94,115,109,90,98,109,105,124,106,101,101,99,103,102,94,101,105,103,109,108,102,102,113,101,114,95,106,117,108,118,93,100,105,106,99,106,104,96,98,139,90,102,102,98,112,108,95,108,98,101,96,107,95,101,97,112,96,105,114,103,103,98,102,106,108,105,110,99,106,113,108,112,104,109,93,99,105,108,103,84,94,95,96,99,102,113,105,104,104,106,99,99,102,131,113,98,114,111,107,104,89,98,120,101,97,103,108,96,108,90,98,104,100,107,108,112,108,104,105,106,103,125,96,103,113,107,105,100,106,107,109,87,103,101,83,108,91,107,109,100,100,96,108,113,87,105,106,101,115,113,94,103,94,103,116,104,106,100,107,104,107,103,104,96,106,106,108,105,93,107,98,97,92,101,99,87,107,111,106,105,96,94,94,96,87,125,104,117,108,119,87,113,99,106,97,112,114,105,109,88,98,104,89,108,108,101,106,104,99,94,101,106,104,90,103,112,103,122,107,98,107,93,97,102,116,123,90,100,103,99,101,94,104,114,98,96,111,64,72,105,106,105,93,108,96,120,121,100,98,102,97,99,98,101,91,109,106,100,113,106,105,103,101,103,115,109,106,100,100,101,102,103,98,115,97,103,110,105,110,99,110,100,103,100,104,104,108,104,102,117,103,111,95,94,101,112,98,102,109,113,107,104,101,101,117,99,121,98,104,110,95,94,110,99,108,104,103,74,90,115,77,103,94,106,101,105,104,103,104,101,110,87,103,92,103,109,100,99,94,91,94,91,101,100,109,98,108,117,119,105,89,96, +458.858,106,97,95,106,93,103,91,94,97,96,99,103,78,109,104,87,109,115,106,118,99,97,93,104,99,104,103,105,114,111,99,97,103,82,109,102,99,93,96,104,103,108,109,91,107,113,98,99,95,103,93,93,99,110,91,106,90,87,109,95,101,110,98,93,108,114,96,107,104,101,101,101,113,109,94,108,99,71,94,72,108,113,100,85,94,96,92,97,94,100,86,114,98,100,98,97,106,99,91,99,97,113,90,99,97,76,98,98,97,104,103,105,104,109,95,105,90,107,103,98,122,95,115,101,105,112,99,102,95,88,102,113,106,95,113,106,93,101,95,102,64,109,92,95,104,83,108,104,88,99,105,100,86,92,99,95,100,98,116,104,95,109,108,98,105,125,102,111,101,94,106,77,102,107,104,97,94,102,104,109,101,104,105,102,100,104,88,90,101,85,110,99,101,102,98,105,108,99,98,95,107,102,87,102,91,106,97,101,110,92,102,98,106,100,96,97,94,105,106,108,95,75,114,93,99,108,100,99,110,101,98,134,102,102,93,93,117,101,96,91,103,102,114,102,91,103,103,108,103,113,102,110,95,99,96,107,95,107,100,113,103,104,102,95,101,112,99,102,102,97,99,97,98,100,96,111,88,99,109,101,101,101,90,99,104,98,89,96,106,94,105,103,101,100,108,114,114,100,105,90,92,105,106,99,91,112,107,102,103,104,99,88,109,105,100,102,101,111,100,94,95,98,94,106,109,100,107,96,85,103,98,106,113,112,105,103,101,106,94,96,95,97,100,92,99,101,115,104,113,111,97,113,120,107,96,96,97,103,93,106,105,98,95,91,99,101,106,106,102,104,115,101,104,101,87,98,106,96,104,106,109,102,95,118,96,99,107,101,121,110,114,101,77,112,119,103,105,103,104,107,98,92,91,98,105,102,104,104,111,103,97,95,108,100,116,91,104,92,99,113,97,94,113,109,101,97,108,105,94,108,112,98,100,95,115,94,74,130,98,95,113,98,81,105,97,105,97,90,106,111,99,93,99,117,88,89,111,99,107,117,104,107,103,97,104,108,100,105,96,99,108,98,105,107,94,100,97,104,110,122,133,108,112,110,106,99,94,105,105,107,104,102,98,115,104,107,94,96,98,103,109,99,87,107,97,111,102,92,98,85,126,95,104,98,108,107,101,99,101,98,79,100,101,103,102,94,109,101,109,102,96,99,105,100,104,100,97,107,108,109,99,112,105,96,89,96,104,91,120,114,101,95,95,105,90,105,110,99,102,94,99,103,95,91,105,93,100,99,88,108,97,106,124,101,100,105,91,92,105,101,103,99,100,86,94,79,101,94,104,104,104,104,92,103,110,95,109,102,108,93,101,116,104,94,108,96,93,105,103,100,99,106,107,102,100,104,105,104,101,123,104,98,93,99,102,97,105,100,106,100,103,96,110,101,105,105,91,95,96,100,104,110,100,102,100,107,93,94,105,96,86,113,99,106,101,107,114,109,104,96,111,104,100,98,97,105,100,132,109,102,102,103,110,99,110,98,110,99,110,94,100,96,101,96,95,100,92,100,112,91,104,89,116,112,113,108,88,105,126,86,100,94,95,100,96,116,101,100,101,108,94,109,105,98,91,85,94,102,107,105,85,113,98,93,98,99,109,94,103,100,103,104,106,102,97,110,102,98,89,108,101,100,99,103,104,100,88,100,107,95,114,110,103,98,109,92,99,105,106,109,104,104,98,107,93,95,104,97,100,98,103,97,100,107,89,95,112,102,103,88,91,105,106,108,95,100,111,115,105,107,101,112,100,96,82,101,90,105,106,100,99,90,93,116,106,84,107,110,100,118,112,97,116,105,104,100,113,103,102,110,100,103,98,108,105,77,99,99,95,104,100,90,110,99,99,107,104,115,98,106,97,109,88,108,83,106,108,88,93,83,113,91,101,99,105,100,110,107,99,105,101,107,105,109,101,94,95,96,114,109,97,121,86,106,115,106,105,96,64,104,97,101,101,105,120,99,109,109,97,96,97,103,102,105,114,97,102,112,87,96,113,103,114,108,92,105,103,107,96,105,110,110,106,110,100,104,110,94,85,95,102,95,113,102,104,98,98,105,109,103,98,100,117,118,107,104,101,92,103,101,105,102,104,108,105,102,101,110,97,117,104,91,102,106,106,108,106,113,94,106,105,105,100,95,97,99,87,99,99,101,96,85,88,93,102,101,103,106,101,97,105,109,99,107,121,96,110,114,113,93,116,95,97,104,104,107,93,94,111,97,65,102,106,102,109,97,108,103,108,104,97,99,107,104,101,119,107,91,95,99,112,100,94,102,104,91,108,97,105,101,109,93,88,106,105,87,103,120,106,105,99,102,92,99,98,101,98,109,88,89,104,102,96,86,100,99,106,109,124,96,100,113,102,125,100,102,92,98,99,100,101,106,92,101,96,98,112,98,95,95,112,105,106,107,98,110,97,108,91,110,98,104,104,99,90,104,110,105,97,99,91,102,105,116,100,109,92,109,102,100,102,110,114,86,104,99,92,96,96,112,103,105,100,94,101,109,103,93,109,105,108,114,93,103,103,107,100,111,92,103,99,112,100,107,98,87,103,104,102,104,109,104,106,100,107,106,95,107,103,101,96,99,67,89,109,108,102,102,98,89,89,108,101,101,91,96,106,104,109,96,99,99,102,95,104,99,103,109,101,105,109,87,95,102,104,103,123,91,107,108,96,99,104,105,108,114,111,108,102,100,101,106,96,112,127,132,102,111,109,103,101,91,101,100,99,107,102,111,103,119,106,128,109,114,104,117,106,109,98,106,101,97,106,101,104,101,109,104,98,100,109,104,94,97,96,97,83,117,98,101,102,108,97,111,113,105,101,113,107,96,110,99,105,106,103,113,100,108,104,111,106,108,105,102,106,111,79,101,110,91,99,103,90,101,92,97,103,106,111,102,103,104,93,108,120,109,97,100,96,102,93,104,106,94,102,112,106,98,93,85,97,91,102,109,102,102,106,99,103,110,101,99,99,102,107,109,107,105,105,105,103,107,82,104,109,102,103,103,112,102,91,102,100,113,99,108,114,110,105,107,101,114,101,101,100,107,103,107,97,113,115,105,102,109,104,109,105,100,103,94,101,101,108,102,112,90,105,97,111,106,104,99,106,106,102,106,113,117,98,112,111,106,104,101,105,108,100,95,104,109,110,103,111,116,99,103,112,100,95,106,98,113,104,96,99,99,107,136,124,104,109,107,115,111,109,102,96,105,106,107,120,109,108,93,98,99,98,104,100,93,116,99,108,100,93,113,103,121,95,93,106,113,107,112,109,106,95,108,105,105,106,109,95,105,87,93,102,101,99,104,117,110,96,101,103,102,99,109,103,101,102,101,94,100,106,114,101,98,99,115,99,104,100,107,103,110,102,75,102,100,96,100,110,97,118,109,102,101,121,93,113,109,114,94,100,96,105,96,99,98,106,95,120,101,105,82,104,104,101,118,102,91,94,108,105,115,106,109,95,84,108,105,96,97,95,87,103,97,102,97,108,107,117,106,98,100,88,99,105,99,98,102,93,113,106,101,100,97,110,101,91,109,106,104,108,99,101,107,120,105,110,99,106,106,103,90,102,84,98,104,102,96,106,108,103,107,99,112,108,105,99,97,106,113,94,97,104,101,108,97,106,110,105,112,99,94,102,116,101,102,103,116,111,112,98,86,105,105,108,97,117,119,113,105,111,93,106,105,107,103,113,101,95,97,92,105,97,97,103,112,105,111,118,95,117,79,107,93,103,109,119,98,99,103,108,97,103,108,85,101,101,91,106,97,112,96,104,98,101,99,107,105,104,97,99,98,105,98,93,107,90,115,102,113,103,109,79,104,98,116,102,110,109,101,108,97,100,103,102,121,103,101,114,112,103,112,107,87,102,94,108,94,104,99,112,102,106,107,94,108,105,106,97,102,95,104,97,94,102,107,106,99,101,103,100,102,99,115,98,110,104,104,101,98,102,108,96,104,104,96,129,122,101,94,99,78,104,109,99,98,102,111,98,107,108,115,102,102,94,104,105,103,90,100,103,105,87,104,103,109,109,93,91,115,102,109,111,100,94,103,112,106,106,117,114,112,109,100,113,101,104,96,104,95,104,107,92,104,83,100,104,96,97,98,108,100,113,117,111,128,95,103,109,113,111,110,121,109,108,107,101,109,103,102,102,99,100,99,90,110,109,106,104,109,105,116,114,100,96,112,99,102,110,102,101,111,95,113,95,109,99,101,106,101,99,111,110,97,97,104,99,98,104,97,105,93,105,98,99,106,105,101,104,97,102,107,95,119,103,100,120,96,104,102,106,96,107,92,94,108,92,103,104,107,90,105,108,120,104,100,101,111,106,105,93,101,104,92,87,98,97,88,109,112,109,105,112,108,95,99,100,96,100,97,100,97,104,93,96,107,110,108,104,122,113,95,113,111,112,100,99,100,99,100,96,99,94,92,112,106,112,106,98,98,115,108,93,110,90,93,102,91,104,98,105,98,107,121,99,102,83,99,102,110,98,102,110,97,110,103,101,121,105,89,98,93,108,107,99,103,108,108,114,107,101,106,100,95,93,98,105,101,100,94,105,113,115,99,111,103,107,110,113,104,101,73,105,106,108,97,104,97,98,101,89,99,105,111,94,106,89,108,111,103,103,99,100,126,102,99,98,118,100,100,100,89,104,108,104,97,89,100,100,100,94,85,113,102,118,98,111,92,131,105,97,103,96,108,108,96,122,98,105,89,101,99,97,104,101,104,104,112,114,103,97,103,93,113,98,101,102,79,95,104,105,105,99,88,94,107,113,98,98,114,97,102,99,98,101,107,99,111,109,106,98,106,108,101,106,100,109,99,101,102,100,101,94,109,100,99, +458.99844,105,98,113,104,78,88,107,102,102,102,116,100,94,107,105,103,99,110,107,103,105,106,101,115,100,103,98,119,95,112,83,106,96,108,101,112,109,107,107,106,92,98,105,106,104,108,106,105,98,103,98,102,103,100,105,98,94,100,107,105,104,99,102,107,104,108,101,105,89,112,102,111,104,103,100,104,111,103,107,113,105,111,99,100,109,90,100,107,111,110,99,106,97,109,104,101,109,98,106,105,95,97,101,113,102,80,88,98,107,95,112,105,108,95,102,103,97,101,102,95,98,97,95,117,110,108,120,89,109,111,102,96,98,117,103,90,106,106,100,99,101,105,103,101,101,110,100,102,91,93,103,97,103,106,90,92,109,99,111,100,97,104,100,98,108,103,104,88,112,96,98,96,100,101,96,104,87,112,94,99,99,104,105,113,102,84,100,100,126,95,103,106,106,110,85,100,104,101,105,108,108,103,107,108,97,108,100,105,113,96,102,103,110,105,105,115,97,101,105,93,111,99,102,98,101,98,109,114,102,94,100,90,90,103,108,113,102,106,75,107,102,105,108,103,97,100,109,104,100,106,108,104,101,103,105,102,108,104,99,94,98,106,97,100,105,115,100,94,101,105,105,96,107,104,98,102,116,104,104,81,103,101,100,104,87,104,100,115,107,100,98,104,104,102,114,102,113,102,102,98,103,117,111,97,96,107,108,83,106,101,116,106,102,105,109,95,106,111,135,101,100,107,100,110,87,104,108,85,104,115,104,92,95,106,100,107,97,99,94,116,95,98,112,96,97,103,94,109,95,102,107,103,102,113,106,100,102,106,100,106,113,100,96,110,93,104,103,99,93,99,111,102,112,67,102,116,96,104,96,116,101,103,105,113,121,114,105,93,102,115,109,101,119,108,111,92,116,94,100,107,100,102,100,103,99,96,97,102,110,95,103,104,109,101,104,96,96,91,98,100,93,109,96,108,104,97,103,107,94,111,104,125,116,106,108,101,96,97,103,98,110,103,108,98,97,97,95,101,108,101,97,91,99,119,110,100,106,110,110,105,104,100,101,110,102,108,106,104,87,109,104,106,112,106,101,109,97,125,99,101,101,107,103,104,101,90,104,104,100,104,102,109,107,95,101,102,81,101,115,110,106,102,106,109,103,99,99,94,98,101,105,98,108,110,112,104,101,102,98,116,116,98,107,105,94,101,105,107,105,111,99,103,120,105,96,104,117,119,106,102,105,114,104,104,105,98,109,101,107,96,105,100,73,100,98,85,111,104,106,111,94,101,104,99,100,97,112,99,97,101,95,109,106,100,107,105,108,102,86,106,111,105,98,97,98,109,112,101,99,100,113,109,112,104,108,110,103,102,101,109,103,100,108,109,103,102,96,96,97,108,98,103,111,103,99,98,95,86,109,102,110,106,118,93,109,103,98,110,112,97,94,106,105,103,113,113,105,102,110,102,104,105,95,107,112,102,103,107,90,115,112,100,103,106,110,95,100,104,106,98,110,105,108,110,76,107,108,99,100,108,109,98,94,113,97,99,114,105,105,95,108,105,112,105,107,102,110,104,104,95,118,102,89,111,104,108,100,116,89,105,101,98,102,114,117,99,107,105,99,108,95,126,115,90,106,110,103,110,101,103,95,105,108,99,94,96,112,100,105,107,110,100,87,96,108,101,106,103,106,107,107,88,99,106,112,93,106,103,109,101,104,99,103,113,110,102,105,109,104,109,103,106,95,99,139,104,110,107,118,101,103,116,93,114,113,104,96,103,112,108,103,109,108,103,112,95,96,116,102,106,101,112,108,101,95,106,97,107,101,106,104,105,95,79,110,87,106,108,85,99,102,113,110,100,104,112,98,109,108,96,85,121,103,100,107,110,104,103,104,113,106,108,108,109,96,99,110,108,106,94,90,98,121,112,100,99,114,96,93,95,98,92,102,128,105,103,109,95,88,104,111,90,105,109,104,135,100,103,105,107,105,106,84,89,107,107,92,99,111,107,96,109,99,113,104,99,99,110,102,98,107,97,106,112,112,97,118,103,104,104,121,90,119,109,104,94,102,94,108,104,99,99,117,101,96,99,112,106,97,102,109,105,112,116,117,95,101,101,101,98,98,104,105,112,99,110,105,106,92,108,96,100,109,100,111,101,97,102,99,113,104,101,99,103,107,101,117,110,101,116,109,104,105,106,108,103,105,110,103,123,106,99,98,104,111,110,95,99,99,92,107,104,99,104,108,109,112,108,106,103,102,91,113,107,100,92,121,98,104,109,100,91,105,111,95,99,112,100,98,104,97,103,97,100,104,98,115,106,107,99,112,114,108,100,102,105,108,120,103,99,96,96,92,101,105,99,99,107,103,99,114,108,87,102,99,95,93,107,104,104,110,110,102,91,104,101,100,107,121,101,98,99,91,114,101,102,107,103,97,99,100,105,108,112,103,118,98,113,101,92,99,104,93,102,92,101,119,102,96,112,103,106,101,104,104,103,132,97,103,83,116,107,113,115,103,113,104,101,107,107,106,107,108,92,116,101,100,103,96,113,105,104,99,92,104,107,108,102,113,101,105,107,109,113,96,108,103,95,96,120,104,91,105,116,117,93,103,104,99,117,105,101,100,96,102,115,101,91,93,108,102,99,108,78,117,113,107,104,103,107,104,101,103,110,104,109,117,87,94,104,96,108,113,109,88,105,104,103,135,104,110,100,101,115,98,100,108,100,101,111,108,116,104,103,120,104,100,101,93,115,103,107,83,112,107,110,102,103,97,104,102,103,95,98,107,100,108,102,103,106,105,104,103,107,101,106,99,112,110,105,96,103,108,98,102,107,106,139,98,108,112,109,116,112,107,98,101,101,98,114,102,115,111,99,106,106,113,103,99,111,106,97,97,117,105,102,100,112,105,107,101,106,107,104,102,106,97,103,106,97,100,103,97,105,103,105,106,104,116,112,98,109,107,119,101,97,121,109,109,105,105,101,97,93,107,99,106,87,108,100,96,104,102,112,96,94,92,92,108,99,113,100,102,100,102,106,109,91,104,111,137,99,107,96,112,99,100,115,106,102,106,96,105,100,99,98,104,105,105,109,108,97,117,101,104,80,114,97,112,104,106,93,103,106,101,95,103,107,105,101,102,87,102,100,79,99,100,111,106,94,96,102,102,102,100,112,105,97,91,105,129,96,128,103,96,100,112,109,106,103,104,99,98,102,102,67,120,89,103,108,112,109,104,113,107,113,104,97,112,87,110,107,113,106,100,108,98,105,93,108,94,111,108,105,99,103,101,102,97,102,101,94,117,108,104,105,85,96,111,98,100,107,109,103,101,113,89,102,104,103,95,105,99,99,97,94,106,98,99,100,100,110,100,110,95,106,101,102,107,108,109,102,109,106,89,99,106,106,102,108,93,100,115,100,99,110,107,91,103,104,102,106,87,116,89,104,107,106,95,101,102,95,116,107,92,104,106,103,104,98,99,105,103,107,106,109,110,82,93,100,107,102,97,108,101,106,90,109,105,103,106,96,106,107,105,109,96,92,87,101,96,102,102,105,112,111,111,102,97,102,113,103,99,116,104,100,104,107,106,102,107,102,97,106,109,99,107,98,103,98,102,109,105,112,100,91,109,106,99,107,96,99,106,98,104,100,100,97,102,110,102,88,103,106,96,98,109,107,95,97,102,111,105,108,93,108,100,91,102,100,98,103,98,117,104,109,95,102,104,92,99,114,103,102,95,95,97,109,112,101,102,90,91,104,97,101,105,96,105,91,103,108,107,97,83,99,99,99,115,96,104,110,102,114,107,99,108,109,100,100,108,94,109,97,100,95,107,106,98,93,89,104,99,102,113,102,103,102,100,99,98,100,98,116,106,110,113,106,113,94,99,107,105,103,100,117,115,99,100,114,71,95,100,98,112,106,109,105,91,111,105,98,108,81,99,95,103,105,96,104,98,99,90,117,103,110,108,95,105,101,106,99,113,107,110,105,92,109,98,103,105,100,102,106,99,99,95,115,110,106,115,96,95,104,95,95,103,98,116,107,102,115,101,93,110,101,102,103,113,102,116,98,98,103,109,86,94,107,88,92,91,92,96,112,94,101,98,106,96,96,110,106,102,97,108,113,106,99,105,101,96,95,125,102,96,117,97,98,116,107,95,106,102,94,94,99,109,93,109,97,116,91,114,94,106,101,93,102,119,111,96,107,88,101,105,96,100,101,96,113,116,97,104,87,98,96,96,110,106,103,100,104,102,111,92,81,97,100,99,101,113,102,126,101,91,92,108,98,101,101,104,103,106,96,95,100,99,105,108,115,98,102,106,111,108,111,85,110,108,116,94,98,94,104,109,98,99,95,95,93,97,78,104,126,95,108,96,94,105,107,100,102,109,110,98,104,102,117,98,103,102,99,95,103,100,107,99,96,110,102,116,109,90,98,85,107,106,105,102,102,105,110,91,104,104,99,104,98,97,103,110,94,101,103,108,98,104,96,95,106,83,99,97,110,107,98,111,101,92,91,91,102,71,91,96,102,105,100,99,83,102,92,95,97,108,95,93,87,100,102,107,107,96,102,76,113,100,102,106,96,101,98,104,106,111,110,103,104,104,110,97,100,98,115,91,106,105,114,101,99,108,88,100,100,117,94,108,106,105,106,97,96,113,95,100,101,99,101,96,101,93,105,117,91,106,92,102,103,93,109,99,105,101,91,97,99,105,104,89,84,103,100,88,106,98,98,103,91,102,113,105,108,96,96,100,93,105,101,119,95,103,97,103,100,98,94,98,98,89,97,96,90,113,107,107,98,91,99,98,112,104,78,97,98,109,98,99,116,95,107,101,104,97,103,95,104,105,91,113,71,116,95,96,83,88,105,112,106,104,89,106,99,97,100,91,102,101,83,99,115, +459.13889,105,96,104,103,95,91,104,100,96,104,108,106,99,100,102,91,108,104,98,111,112,106,93,107,98,101,104,99,95,111,117,88,107,95,96,98,93,100,87,107,96,98,105,102,110,104,106,135,96,100,105,102,106,102,108,95,96,109,92,92,101,99,108,94,95,106,91,109,101,98,104,106,91,105,96,102,95,103,86,105,106,113,100,94,98,122,109,97,103,112,96,102,99,101,103,108,98,90,102,110,116,96,107,85,109,101,105,94,104,107,114,87,105,89,95,103,106,106,105,105,98,102,103,102,108,117,111,97,106,110,102,99,89,100,104,116,114,108,91,109,95,110,108,89,105,98,104,94,96,97,107,95,104,99,102,105,108,94,109,99,99,97,113,101,83,100,106,105,100,100,106,101,109,86,103,104,95,120,106,107,105,113,105,114,98,105,101,97,100,110,108,105,100,102,106,95,100,101,97,103,77,109,104,96,84,100,107,112,107,115,99,121,114,109,98,95,87,110,91,106,101,96,103,101,105,111,106,106,106,117,97,98,110,101,95,101,93,110,93,103,106,120,104,103,110,94,91,103,106,106,97,87,92,116,81,94,96,100,106,109,87,104,106,105,103,95,100,108,89,106,96,85,107,104,107,100,107,118,100,112,106,100,108,113,118,99,95,104,102,105,105,104,97,113,119,117,101,92,108,101,103,101,108,114,109,117,106,110,103,104,102,122,110,96,94,100,112,106,102,102,101,109,104,100,100,97,90,85,102,113,82,96,108,110,100,114,110,95,98,106,113,105,113,101,97,107,114,68,105,102,103,110,109,99,96,101,102,103,102,105,96,97,113,94,106,105,103,99,103,107,105,105,113,101,111,103,100,90,99,123,104,107,104,109,103,104,99,106,103,107,107,108,98,89,109,105,103,102,111,96,103,90,100,94,98,109,109,101,99,112,95,98,105,90,105,95,104,106,108,105,100,95,111,92,92,97,107,101,106,111,121,110,102,98,112,112,98,103,111,109,109,112,99,104,96,121,94,94,98,106,94,96,106,113,100,88,107,112,121,94,104,101,95,93,105,107,103,100,92,103,104,83,97,100,116,109,95,114,102,99,105,96,110,105,97,99,107,99,108,102,95,98,120,100,116,98,96,105,100,96,106,102,94,106,107,88,106,114,103,114,102,95,103,99,98,102,103,107,106,97,105,105,109,108,108,105,100,101,113,92,123,95,122,95,106,107,110,105,107,101,104,99,98,113,109,97,104,103,99,113,102,104,98,101,100,104,75,97,103,101,101,102,104,107,105,96,108,98,116,96,97,107,111,96,107,111,104,100,82,103,98,98,108,94,94,98,104,99,85,103,112,110,115,122,103,95,118,88,96,93,113,100,113,102,107,109,102,106,105,116,110,105,109,118,101,107,105,108,97,101,110,95,105,101,104,102,112,102,111,95,106,95,102,100,92,103,103,98,102,113,99,108,91,94,97,96,99,95,109,108,107,107,105,113,113,105,104,107,101,107,101,108,103,87,89,98,102,96,110,110,113,103,99,113,101,107,100,89,121,103,104,110,114,103,103,103,101,103,91,95,95,78,98,96,100,100,105,108,106,105,107,99,105,102,118,104,103,95,101,102,108,101,102,100,100,105,100,100,102,99,109,105,113,100,106,95,105,112,98,121,111,111,98,100,101,91,78,111,115,103,99,105,109,93,96,96,103,108,99,114,107,103,112,92,107,110,103,102,92,90,108,105,106,114,99,87,92,89,101,104,102,96,102,110,103,95,104,110,101,107,103,102,101,109,93,106,120,121,105,117,107,106,109,98,96,101,102,104,119,114,106,97,98,106,105,107,102,107,107,108,104,103,105,104,110,93,106,112,103,108,104,111,97,104,105,102,115,108,101,112,107,105,110,104,93,95,104,100,112,94,101,96,107,103,100,89,106,95,91,106,92,100,100,101,95,104,98,98,101,107,105,115,87,108,100,100,97,94,110,94,96,87,102,101,92,109,111,104,112,102,113,95,102,104,105,101,100,103,91,104,100,100,103,101,109,94,113,107,102,111,99,96,102,109,105,92,104,106,98,102,107,111,107,109,106,98,73,110,86,94,104,102,107,97,109,98,105,108,104,103,115,104,102,101,96,103,89,104,104,107,102,105,109,121,101,71,118,98,106,105,97,109,97,109,104,85,100,95,95,90,108,90,106,104,103,97,94,113,104,109,92,91,104,106,95,116,110,105,98,100,101,103,105,105,102,99,97,86,99,106,96,97,98,99,105,94,98,108,99,102,100,92,79,96,113,106,105,86,96,109,97,110,106,102,104,107,95,100,107,116,111,107,105,104,110,99,99,102,109,106,99,92,105,102,101,101,120,89,108,98,111,87,103,98,90,114,94,100,109,101,109,111,92,104,89,97,103,102,103,94,97,107,116,81,106,96,105,108,104,101,104,98,110,109,99,112,97,102,100,102,92,92,100,105,101,108,107,108,112,94,94,105,102,103,97,109,85,94,98,96,99,101,98,115,107,117,97,109,99,99,103,109,112,102,102,105,99,98,101,109,108,108,103,105,103,107,102,104,100,77,94,109,101,93,104,98,105,111,107,110,101,103,94,100,100,112,98,107,113,95,124,102,103,103,102,110,98,105,103,101,104,91,100,91,102,105,106,94,98,107,105,106,111,104,103,98,104,82,111,113,90,109,100,110,115,108,107,101,101,95,101,109,110,85,98,104,116,106,106,109,90,107,100,101,99,115,108,104,114,108,98,113,95,113,102,104,121,102,94,110,105,106,107,100,103,99,111,100,108,106,102,112,92,99,108,80,107,101,94,110,95,101,99,97,105,95,100,103,105,99,102,109,102,100,99,113,98,109,102,110,94,108,101,103,107,104,103,113,103,98,102,103,95,113,104,98,106,106,98,100,116,110,102,85,106,109,86,94,109,108,101,105,104,100,116,102,93,95,112,107,104,104,82,105,102,109,108,109,99,92,97,106,91,107,112,111,93,104,102,103,109,104,102,108,108,101,116,98,105,99,83,102,104,103,117,109,110,95,99,100,95,88,104,108,111,103,116,103,113,101,106,98,106,102,101,101,101,106,98,101,105,107,105,101,120,100,102,99,98,103,102,104,96,105,87,110,99,114,99,104,111,98,105,99,90,101,106,106,92,100,100,94,108,122,113,91,95,87,100,103,109,99,99,101,103,101,101,98,92,96,98,101,109,100,102,105,94,101,102,111,110,97,94,103,112,98,97,91,103,100,102,99,104,110,102,103,111,103,105,97,100,92,102,105,96,100,104,100,94,104,105,83,115,105,105,105,108,110,91,101,112,105,94,92,97,113,99,88,100,101,103,105,101,104,99,105,97,95,109,104,102,109,102,100,102,104,98,97,98,97,95,105,90,91,92,100,108,104,100,106,95,99,107,107,95,104,94,106,102,106,109,103,71,87,112,103,103,104,96,100,104,110,99,101,94,94,106,112,110,95,107,106,100,101,108,89,113,109,98,103,107,104,108,111,112,100,90,97,101,94,99,107,100,113,108,106,109,88,93,100,99,102,96,116,110,105,105,100,106,114,103,95,107,108,111,104,110,95,116,98,101,103,98,105,113,97,108,95,115,98,102,100,108,112,101,105,107,100,102,81,101,101,111,102,92,97,104,118,92,105,103,103,105,105,101,101,94,98,104,109,98,108,101,97,105,100,100,109,98,98,98,98,101,102,105,102,90,100,107,102,104,91,105,103,102,92,91,108,104,95,92,92,98,97,103,106,97,96,112,124,111,91,103,91,82,103,109,95,115,112,90,100,119,99,99,109,101,115,101,97,106,95,101,99,105,96,103,115,101,92,102,97,101,95,103,103,109,103,105,101,106,90,102,109,103,109,101,111,96,92,115,106,95,121,102,106,96,115,107,102,95,103,107,109,104,95,98,103,109,101,94,105,98,89,105,105,100,110,103,102,98,99,104,106,111,104,96,100,122,95,106,115,101,111,104,109,95,59,91,98,105,102,106,78,107,107,101,80,109,78,103,86,103,85,103,129,103,106,100,101,109,109,96,103,108,91,106,99,74,98,87,103,91,117,100,105,101,107,116,99,106,107,97,101,110,106,92,99,109,113,100,111,98,96,102,106,104,99,102,93,112,96,98,117,114,113,97,119,104,109,113,105,112,102,102,96,102,99,100,98,112,115,98,104,106,99,89,102,115,96,107,107,107,100,103,105,91,102,77,114,101,107,103,102,100,95,106,104,100,109,101,111,110,105,90,112,91,101,94,106,100,90,110,102,98,136,107,105,98,106,88,105,94,83,108,98,86,103,96,103,100,89,109,104,105,98,114,114,92,104,91,101,96,97,124,100,98,110,107,102,91,102,99,110,94,112,104,102,87,102,100,104,104,88,99,80,92,107,102,90,97,88,113,100,108,95,103,101,94,106,135,87,108,110,87,117,101,99,97,109,104,87,113,108,96,98,111,112,93,80,87,92,112,102,111,89,108,104,101,97,102,96,101,96,91,85,108,94,105,98,107,101,102,100,80,105,102,106,106,104,81,101,98,95,102,88,98,108,108,94,92,104,88,92,104,72,103,87,98,105,100,98,79,96,92,115,98,98,99,92,96,95,93,102,83,105,88,103,99,105,103,102,93,105,100,100,106,113,99,91,99,94,100,110,98,112,100,100,95,87,99,94,107,105,98,101,62,106,104,100,101,102,104,100,106,119,98,93,90,90,103,101,97,97,83,107,100,84,88,102,108,113,103,98,96,88,104,96,109,107,103,93,100,91,91,100,104,93,106,71,112,101,112,108,88,101,107,113,115,96,117,97,94,108,97,104,105,107,99,94,83,107,93,115,95,106,106,113,99,126,102,98,99,95,83,99,103,99,95,101,98,106,105,99,103,102,107,99,103,74, +459.27933,99,106,88,110,95,110,99,90,107,94,97,98,103,100,116,113,112,106,99,93,104,110,91,105,103,112,106,112,97,102,103,107,110,97,108,111,109,111,80,105,107,106,116,82,119,105,113,146,94,104,111,106,99,97,92,93,106,98,108,97,106,109,98,105,99,110,108,104,116,99,102,100,102,77,97,109,100,100,100,107,97,108,103,105,69,98,114,101,108,121,128,110,79,107,106,101,112,95,94,92,111,112,108,105,101,118,90,90,99,108,105,100,98,101,121,105,105,104,97,89,106,89,117,100,106,111,99,91,91,105,107,98,95,105,103,114,99,106,98,108,83,107,91,104,100,102,107,99,107,103,104,113,108,97,102,106,65,92,100,110,99,106,111,109,110,100,107,102,110,73,106,110,91,101,106,109,92,91,106,105,96,110,104,109,102,102,98,94,99,91,99,103,107,106,91,102,98,116,100,98,106,112,104,83,105,95,98,107,124,111,105,97,114,91,112,112,108,105,107,116,101,100,75,99,99,97,96,114,110,127,106,106,102,100,122,104,111,103,107,100,106,107,103,100,97,107,104,110,103,110,110,107,97,100,111,110,101,97,100,115,113,114,97,102,108,100,107,98,103,97,105,82,108,103,107,102,106,82,101,108,112,100,105,94,99,110,97,104,100,87,95,99,106,106,97,107,100,118,98,103,84,100,111,116,94,100,101,117,99,108,93,106,110,113,105,92,90,88,100,93,102,87,97,117,112,106,113,103,109,104,105,101,111,94,97,103,97,109,114,95,92,103,106,94,99,107,110,96,108,102,112,103,109,107,114,110,106,109,107,110,109,110,106,101,108,102,109,109,91,116,100,99,102,105,107,94,97,109,102,102,104,121,93,108,100,110,95,97,107,97,103,101,105,110,108,110,99,102,102,109,110,106,109,95,103,98,99,105,113,115,105,93,103,97,114,99,111,107,98,90,132,103,98,103,107,107,96,100,102,100,98,105,101,98,106,100,93,103,104,99,113,96,110,106,109,107,111,92,94,112,92,103,103,106,102,105,97,98,107,105,101,103,107,121,83,106,113,91,112,103,115,97,106,98,108,96,99,104,103,108,101,100,112,102,88,109,106,110,99,105,102,108,109,111,104,102,104,107,124,106,114,114,102,109,109,100,107,106,111,104,116,97,86,97,105,111,108,103,106,90,94,99,112,105,106,112,101,100,96,104,97,100,103,99,102,102,107,105,105,111,96,103,101,98,104,99,109,88,93,110,108,114,100,110,98,92,112,110,117,93,99,112,105,105,78,100,109,105,105,108,109,103,105,113,101,107,110,98,98,113,116,108,102,101,94,97,105,104,100,98,112,104,102,99,114,105,99,102,100,100,105,85,110,104,87,114,101,105,108,99,94,101,100,116,100,103,112,107,100,103,107,113,113,99,121,104,106,110,110,108,98,107,113,103,100,97,101,90,102,91,106,101,113,108,95,106,104,100,99,88,98,106,104,107,105,112,107,102,109,105,111,117,94,105,114,108,107,108,111,103,108,101,99,101,100,100,106,105,112,97,105,108,114,87,100,103,109,118,110,112,101,106,99,115,87,98,114,99,109,104,103,111,99,102,109,100,100,112,113,103,111,113,93,95,102,109,95,102,109,89,100,104,110,111,106,114,106,105,108,113,102,106,103,101,102,111,106,101,105,109,117,90,104,91,103,109,103,120,99,97,110,104,107,105,109,114,107,132,113,112,103,109,99,120,109,89,102,96,107,97,104,90,103,90,100,98,106,104,102,98,117,96,114,109,99,108,103,122,102,103,104,107,94,109,111,99,105,115,125,102,105,96,100,107,107,104,114,94,96,108,98,103,109,101,107,114,114,108,98,101,107,103,104,105,116,106,114,108,97,105,89,114,109,101,118,105,114,103,102,106,99,110,113,102,94,100,86,102,92,108,106,95,103,99,103,111,100,107,110,107,97,103,113,97,99,94,106,104,116,108,108,103,103,123,100,104,110,79,112,96,115,101,104,105,98,104,95,109,99,110,117,104,117,102,103,100,101,100,109,105,95,114,120,95,110,106,110,106,97,91,101,109,104,115,109,96,98,98,108,94,124,105,107,106,108,108,108,104,100,106,99,99,115,94,107,111,111,94,113,111,109,114,107,106,113,96,105,102,99,104,102,108,73,112,109,108,109,107,100,109,105,97,105,98,107,100,96,97,100,102,110,104,102,74,105,94,111,96,91,103,104,115,88,114,95,100,110,101,119,107,99,108,100,108,106,113,97,102,102,112,115,104,99,113,112,107,106,101,98,106,91,95,104,97,117,105,113,98,100,107,94,101,102,103,110,104,102,99,108,112,106,99,94,105,125,95,96,109,116,96,101,90,108,98,99,107,104,96,113,95,98,99,122,91,103,103,114,128,104,105,105,101,107,97,104,106,117,100,105,101,103,108,95,103,112,99,99,100,100,99,104,83,91,86,101,93,102,92,109,107,105,106,104,95,106,92,108,100,113,106,103,97,105,105,81,109,98,99,101,105,117,112,99,101,99,103,94,123,94,108,103,117,100,103,106,93,98,99,94,97,101,108,109,96,98,107,104,100,102,96,109,103,109,106,117,100,104,121,111,100,100,108,110,109,95,104,119,103,99,109,106,112,106,104,106,94,117,106,108,108,106,103,100,98,86,104,83,91,94,106,105,83,94,104,85,118,103,113,103,98,103,102,103,116,117,99,107,109,104,101,94,87,96,112,89,110,99,111,107,105,111,104,98,106,97,106,102,108,107,106,90,101,107,102,104,106,121,114,105,106,93,98,97,109,99,96,104,94,98,119,106,108,106,103,109,101,102,104,99,103,99,94,106,115,100,101,97,95,93,106,95,97,105,108,103,94,101,100,112,108,90,104,100,109,93,102,98,96,104,108,100,110,109,101,94,106,100,93,111,103,106,99,97,107,105,97,102,102,100,72,98,104,96,113,97,111,105,109,96,93,101,100,99,99,109,108,94,110,91,106,120,98,102,118,97,95,112,91,118,104,69,93,99,113,107,95,109,104,98,104,87,96,101,105,99,111,113,120,109,109,107,113,107,95,103,103,90,100,107,104,102,100,105,96,110,85,107,112,114,107,102,104,112,101,96,111,105,97,103,100,86,89,105,98,103,124,102,109,110,106,95,109,102,102,113,111,96,111,106,100,105,109,100,108,109,101,98,112,109,100,95,100,102,88,103,105,96,102,109,99,102,100,95,102,109,109,106,93,118,103,106,120,108,111,95,95,113,112,91,98,98,104,95,112,103,104,95,102,100,100,100,98,97,95,98,105,92,106,101,90,113,101,116,93,104,105,112,102,126,109,100,109,96,95,85,102,99,103,103,95,106,106,102,113,100,98,96,109,101,94,104,102,101,65,103,108,103,103,107,94,96,110,94,102,101,106,101,95,101,91,113,98,98,107,96,98,107,99,112,116,106,107,91,112,108,109,107,101,109,110,108,96,100,111,95,104,107,97,102,98,108,99,93,101,104,92,101,101,100,109,113,103,99,108,104,100,87,108,99,104,106,110,94,104,106,101,108,90,108,118,108,96,95,115,95,102,107,109,105,111,98,99,95,102,93,100,100,94,101,98,94,101,96,95,83,100,90,103,95,105,114,101,103,106,103,87,101,107,95,99,105,74,100,109,102,101,108,101,99,87,117,109,112,109,97,99,101,106,106,103,112,96,103,109,102,101,92,102,98,93,100,100,112,109,81,85,108,112,102,104,95,101,103,113,107,111,108,95,99,108,108,103,116,77,111,100,100,92,102,106,95,99,99,111,123,100,115,101,121,95,113,93,104,100,110,100,89,103,91,106,92,114,92,102,113,102,100,101,106,93,99,101,99,94,99,113,98,100,102,124,100,102,101,103,101,98,101,100,106,109,110,96,109,101,110,102,104,105,110,109,96,105,99,111,100,108,104,120,106,94,64,101,97,108,112,102,99,106,92,96,110,100,86,100,91,86,98,104,99,116,97,105,106,110,76,108,99,105,111,99,105,110,108,105,96,103,105,110,110,96,103,106,96,99,91,92,107,107,89,94,99,95,102,97,109,109,98,109,101,110,114,98,102,106,87,97,109,106,102,114,106,114,106,99,106,115,110,89,112,93,102,95,101,98,109,113,104,114,102,105,108,101,91,104,98,107,88,111,107,107,119,100,92,98,136,107,88,103,105,96,108,104,100,104,109,83,106,107,99,104,102,112,99,114,106,86,101,98,109,92,91,95,103,112,87,111,92,106,100,112,97,105,101,108,103,98,92,94,97,116,110,112,102,105,91,102,93,101,96,113,98,102,109,113,114,97,107,114,95,104,110,105,98,94,97,98,99,107,99,111,104,108,98,103,104,110,98,116,88,104,110,110,96,111,87,106,84,102,105,101,76,100,99,97,95,104,88,98,87,94,106,81,98,94,91,100,98,99,99,103,108,102,96,102,87,100,98,102,104,96,98,106,100,101,113,95,94,105,85,109,95,95,93,106,93,121,109,97,98,99,103,105,87,92,86,109,99,113,100,98,98,102,99,103,103,88,100,95,105,105,108,100,106,111,92,104,103,114,102,106,92,82,101,99,108,95,100,102,103,98,103,102,99,117,110,102,109,100,104,99,102,112,106,99,98,98,102,102,104,110,103,106,106,103,107,100,99,92,106,88,108,97,105,111,109,102,90,86,103,101,105,101,105,95,104,99,108,106,98,105,131,102,102,106,110,105,108,103,105,109,103,83,102,95,98,99,100,100,110,108,82,103,92,106,91,105,110,98,99,108,110,100,92,105,104,99,100,104,105,103,95,107,92,103,100,94,96,99,99,101,93,103,100,101,95,99,96,88,105,95,99,99,98,92,109,112,83,103,109,99,71,96,107,95,103,94,103,91,96,97, +459.41974,113,124,113,93,93,100,114,110,87,106,96,82,90,99,109,110,90,117,114,105,102,108,122,99,104,98,102,113,106,106,120,103,92,95,106,101,87,123,98,102,104,110,94,101,105,108,94,116,106,91,109,105,116,100,94,103,95,106,86,97,103,106,104,102,90,96,104,96,95,115,103,110,97,108,86,105,115,89,99,102,118,105,91,105,107,100,112,119,114,99,107,113,110,109,100,99,101,117,95,101,96,96,101,62,101,103,96,115,108,113,105,102,103,95,111,104,107,98,104,98,118,105,100,114,113,92,117,101,107,111,82,110,109,102,111,110,107,104,113,95,96,133,92,102,99,117,103,101,100,107,100,98,107,98,103,100,113,92,105,103,97,100,101,111,107,113,100,117,117,105,111,97,101,114,102,115,110,94,97,101,103,102,93,108,104,100,105,96,113,104,99,111,99,103,110,99,100,109,103,100,111,106,112,112,95,99,99,113,105,120,108,108,118,95,99,103,110,101,107,102,108,118,115,99,96,111,106,121,101,103,98,107,114,105,103,108,108,119,102,103,91,125,105,95,101,108,120,105,100,104,100,101,103,112,101,103,93,113,104,104,105,100,102,110,89,105,106,113,111,102,93,91,102,106,109,115,121,110,108,107,110,107,108,93,113,103,110,101,105,106,106,103,99,112,109,99,99,93,97,125,100,110,99,120,107,106,122,107,97,112,92,108,98,101,100,99,100,118,96,104,102,97,104,110,115,98,121,101,112,103,103,99,101,103,110,105,118,111,105,111,92,98,103,97,94,108,133,104,108,101,93,112,105,101,105,105,107,107,108,104,104,103,105,106,109,100,102,108,97,107,97,110,106,111,112,108,103,98,107,115,108,103,111,103,111,99,115,107,99,122,132,111,102,110,110,102,100,98,100,119,100,105,102,117,103,102,100,107,105,106,90,107,105,114,105,105,94,92,109,98,99,100,103,82,106,93,100,106,106,114,93,105,105,97,95,99,104,117,99,103,113,92,102,105,93,102,105,97,102,107,112,100,108,107,91,104,99,104,117,98,101,98,100,112,104,106,108,116,101,101,106,104,102,107,97,113,102,108,104,111,102,112,113,101,109,105,98,102,104,103,112,108,103,97,100,107,104,107,110,112,104,105,99,96,104,109,102,100,116,123,96,104,109,108,117,100,101,99,107,99,92,106,102,68,106,116,108,98,99,112,108,111,118,100,104,115,101,98,103,103,109,102,101,111,105,108,98,87,108,106,103,110,108,104,99,125,108,104,103,104,112,106,101,123,102,107,112,111,92,109,99,106,97,93,111,105,106,105,96,112,109,109,101,105,104,117,109,97,105,102,121,95,103,98,118,108,98,97,113,113,101,110,116,103,99,108,106,107,88,107,101,101,114,102,101,114,109,115,118,100,107,101,102,106,122,104,103,104,119,102,104,103,105,110,104,115,90,99,97,91,115,103,105,101,98,100,93,117,99,110,102,103,115,98,105,110,103,116,106,101,107,110,107,102,101,114,105,94,108,101,105,125,99,116,87,106,106,95,119,109,107,107,106,96,91,91,100,111,103,103,96,92,106,113,114,108,93,105,115,96,78,105,107,109,113,122,103,110,100,125,105,104,98,90,95,106,99,103,101,100,107,103,111,101,103,84,99,120,103,122,106,106,102,108,104,112,105,109,118,104,104,103,120,114,91,111,112,107,105,103,117,95,104,105,109,107,94,87,105,99,107,112,103,121,95,111,93,97,106,106,88,118,101,99,106,101,106,101,109,109,108,102,108,102,98,110,101,111,104,112,103,108,109,108,98,103,110,102,105,108,97,100,104,112,110,111,114,112,107,99,104,104,96,110,109,106,107,104,109,103,101,105,95,100,114,101,96,89,106,112,113,110,106,103,103,99,113,108,109,107,99,104,102,97,102,96,100,95,108,107,103,111,101,96,111,107,120,100,78,110,110,107,106,105,99,96,100,106,103,97,107,102,106,100,94,111,99,94,99,125,90,103,103,112,104,96,107,116,107,102,100,119,91,101,101,99,108,106,109,99,117,109,99,106,97,102,100,112,106,92,99,96,112,107,112,101,93,107,108,110,104,98,103,99,116,92,101,97,95,106,107,110,97,103,101,99,87,111,108,98,111,111,88,109,110,113,109,107,103,99,99,97,113,114,104,97,108,120,102,105,95,102,95,107,107,99,97,100,112,94,91,108,94,99,111,100,99,96,103,99,79,107,115,95,101,101,105,94,101,96,107,105,102,109,113,92,115,80,114,104,102,101,113,107,114,111,103,102,105,109,92,85,101,95,111,99,104,113,95,102,96,94,110,105,101,103,101,102,114,112,116,98,111,110,110,94,106,100,112,121,103,102,95,114,88,103,90,103,102,110,96,88,103,90,91,108,113,109,105,109,98,105,98,100,104,86,105,104,87,121,97,108,106,116,108,112,103,101,108,101,103,103,106,100,105,124,100,96,119,115,110,96,98,96,103,101,110,105,107,116,99,106,104,97,111,112,111,100,107,100,106,108,106,100,96,111,105,101,115,104,102,108,102,95,128,97,106,121,106,106,107,128,109,107,88,101,106,111,102,121,108,119,112,104,101,112,108,104,111,91,108,101,107,98,98,105,110,125,108,108,114,97,103,94,104,99,99,104,118,107,102,107,102,98,87,64,107,105,100,108,100,106,118,109,112,108,100,98,110,117,113,99,106,105,96,121,101,93,106,110,100,108,117,92,117,116,102,100,102,95,109,107,116,93,112,101,103,112,109,116,113,117,87,102,103,108,103,102,104,96,109,109,95,87,112,116,103,102,104,102,92,89,116,105,94,109,109,104,103,108,97,104,106,103,89,105,105,96,98,106,100,102,85,103,103,102,117,106,99,109,114,113,100,114,115,101,109,108,111,102,109,111,105,110,99,109,104,97,97,116,105,112,110,97,93,112,84,98,100,102,106,109,100,118,111,103,98,108,107,106,98,108,97,110,102,107,113,109,103,90,121,102,99,95,108,92,101,100,108,91,106,95,98,112,102,110,101,112,78,104,94,93,113,101,117,99,104,114,113,105,99,107,116,106,113,106,106,99,115,98,104,100,102,107,108,106,109,99,120,100,109,70,102,121,82,107,100,108,101,110,97,95,110,103,104,97,105,107,108,103,110,105,109,99,101,116,109,105,120,107,109,107,100,107,116,106,104,113,103,110,107,97,96,107,104,101,104,111,100,104,95,112,106,107,101,106,96,105,120,96,95,102,110,115,95,104,116,97,108,117,107,98,103,104,103,111,100,108,102,102,96,98,108,109,101,114,104,97,87,109,107,99,100,103,104,108,87,110,108,105,121,103,106,99,105,103,105,109,100,103,107,104,99,107,110,99,101,100,94,107,112,103,105,110,98,101,109,95,104,93,88,102,103,107,105,86,112,106,100,92,91,97,96,102,97,90,95,100,106,87,108,113,101,86,103,102,98,104,109,108,107,113,108,99,94,124,105,105,114,106,104,109,88,108,87,103,104,110,103,113,105,115,107,105,103,101,111,99,93,116,105,100,102,95,110,107,95,106,97,109,113,97,93,108,113,92,106,102,117,95,95,109,102,98,95,101,102,96,98,111,133,104,106,103,102,94,94,109,108,119,116,107,93,94,117,107,108,94,100,103,109,108,103,120,104,106,104,104,106,87,100,110,107,103,105,110,99,103,108,109,109,91,100,112,123,94,121,102,113,87,109,103,102,103,103,99,113,123,114,108,111,100,105,99,95,101,110,107,113,113,100,97,106,79,114,85,105,104,105,100,90,105,93,113,110,107,104,122,106,102,101,106,108,103,113,113,104,101,111,103,104,103,113,97,104,99,105,105,104,99,111,120,86,105,102,106,112,102,99,101,100,98,91,98,107,108,102,103,104,108,100,109,115,102,103,102,111,116,103,101,88,93,106,108,110,102,102,103,94,103,96,110,87,127,91,101,100,105,108,109,108,107,109,100,115,101,104,102,97,118,101,91,120,112,96,99,105,105,111,110,112,87,107,121,109,108,104,108,99,106,114,113,103,97,90,101,96,104,109,105,114,102,99,98,98,96,101,101,92,104,101,108,103,109,102,105,102,114,96,104,95,114,110,109,100,110,109,104,119,97,114,97,111,75,98,97,95,109,107,109,102,109,101,110,104,104,100,113,104,105,106,108,112,108,108,121,91,108,109,96,104,109,99,107,108,102,102,109,113,94,113,104,104,111,97,110,99,112,103,114,98,102,115,93,127,103,107,115,96,105,101,101,98,99,110,94,104,97,96,116,115,128,102,101,113,107,103,111,102,120,100,97,108,98,94,77,131,124,71,94,117,105,105,114,101,113,106,109,96,100,115,102,109,110,109,108,83,104,95,112,113,109,105,109,107,104,106,114,99,90,100,113,98,100,98,114,103,92,106,107,106,106,96,104,98,100,120,109,112,102,109,110,113,107,102,104,113,107,105,97,102,102,99,102,107,109,99,102,113,109,87,91,98,109,108,104,106,96,101,105,103,96,97,107,91,102,98,104,109,110,108,102,109,112,109,103,119,130,109,95,108,105,99,104,103,107,108,113,110,111,99,72,108,106,102,98,109,103,100,105,94,113,109,103,97,110,101,101,124,113,102,89,101,101,103,107,99,100,106,107,99,98,111,98,109,101,103,96,109,100,102,116,103,106,115,100,111,123,96,99,105,104,97,101,102,94,104,105,116,95,106,73,101,96,102,103,95,91,110,109,102,93,105,107,102,102,98,93,113,115,108,108,113,108,104,108,100,117,121,96,109,101,99,99,99,112,100,99,92,106,112,96,91,108,111,109,105,107,105,97,111,111,92,107,113,105,95,99,109,83,90,105,94,91,97,107,100,99,100,109,103,107,116,106,91,106,91,108,105,103, +459.56018,110,102,121,92,96,116,95,107,108,95,105,124,89,101,109,102,106,102,107,87,97,95,95,123,86,95,117,99,116,104,106,92,91,106,114,106,112,90,96,92,111,108,96,86,101,117,100,95,105,99,77,109,97,100,102,95,99,106,106,87,96,98,89,100,110,107,104,97,96,105,93,108,98,103,104,103,103,108,110,86,106,134,99,107,98,105,96,102,105,90,91,106,103,111,103,94,102,99,109,95,104,99,96,90,96,115,98,113,101,92,95,109,118,112,117,75,109,101,118,108,100,98,94,93,92,107,98,98,106,119,91,98,100,101,101,95,96,111,99,109,98,115,100,92,108,101,110,98,109,107,115,99,104,108,99,104,94,97,97,110,92,103,108,108,103,103,98,89,111,99,99,121,82,93,85,102,110,90,105,100,100,106,99,106,105,97,105,90,98,94,95,103,108,98,87,102,98,99,96,101,101,82,97,102,96,97,117,98,104,92,109,103,112,100,102,102,95,101,97,95,106,101,119,104,101,107,108,108,103,111,102,105,102,105,102,120,104,116,106,94,110,115,95,109,99,92,109,105,118,98,96,102,96,101,105,105,94,103,80,110,98,96,101,97,95,102,102,101,122,106,108,100,114,102,106,97,95,101,105,107,83,96,102,103,112,113,92,91,94,106,108,96,113,106,100,105,101,94,105,93,106,107,105,99,102,110,96,98,108,98,86,101,90,106,102,96,105,107,93,96,109,77,92,108,111,97,99,92,105,103,100,102,112,113,99,96,100,98,90,94,88,110,101,95,103,100,92,106,115,104,113,106,103,123,100,75,105,101,111,102,103,120,99,96,103,107,110,108,112,106,100,106,102,96,110,96,106,107,95,105,108,111,109,96,104,104,102,95,97,113,117,99,98,100,98,95,105,91,104,106,107,95,83,100,95,103,97,103,104,99,100,93,100,113,102,98,101,101,100,86,97,96,98,105,93,102,103,104,105,112,92,113,101,107,99,107,94,108,110,111,98,98,101,103,96,100,103,104,104,105,91,96,98,109,103,105,102,96,109,101,105,87,104,102,111,106,105,99,97,109,112,113,109,99,105,116,115,115,100,114,98,102,106,94,87,109,110,96,99,120,98,114,111,100,99,98,90,112,91,97,103,103,105,99,98,110,94,99,95,106,99,102,95,109,104,111,101,109,105,99,114,101,105,116,81,98,94,97,106,113,100,124,98,101,79,107,102,98,101,110,105,104,126,103,117,100,105,104,106,112,111,92,92,99,99,101,91,107,118,115,102,101,97,109,105,111,118,109,108,106,95,102,114,88,109,105,96,109,96,105,95,100,104,96,101,102,105,99,94,122,104,106,106,105,108,101,99,112,105,104,117,108,115,95,98,115,99,106,104,105,113,108,101,103,101,106,109,99,103,108,108,107,99,99,109,101,96,104,92,98,121,104,98,100,83,91,95,95,103,112,97,106,97,106,102,91,99,96,103,108,109,103,101,106,98,104,107,94,103,100,117,109,116,99,91,98,101,98,98,102,104,105,102,101,103,93,98,115,119,89,105,99,104,101,110,91,89,99,115,97,104,100,105,110,110,98,103,96,104,89,103,95,96,93,102,96,108,107,106,97,110,104,107,91,98,115,94,98,100,102,112,110,96,100,109,112,94,97,107,118,97,114,103,100,94,113,108,96,112,99,116,92,96,106,108,96,92,113,113,107,105,107,102,99,97,91,95,103,109,95,104,112,106,107,93,109,107,118,110,97,117,103,96,105,80,106,97,97,106,103,111,113,103,102,94,111,113,101,102,99,109,96,104,107,96,111,93,100,103,113,94,92,97,97,105,98,103,92,104,100,105,105,101,103,104,100,109,90,104,98,92,110,98,96,102,104,104,95,113,95,104,94,107,113,100,110,106,107,104,108,100,112,102,111,104,86,95,95,97,100,100,96,106,109,104,100,103,116,102,103,102,102,104,109,101,98,106,102,108,120,96,108,105,116,95,108,106,111,106,90,110,99,107,104,116,108,99,96,98,82,101,103,103,107,102,97,110,104,99,110,100,104,103,106,100,100,108,100,99,103,96,112,104,117,102,103,102,103,86,103,102,102,109,106,97,89,94,106,98,96,96,105,106,78,86,99,100,110,93,95,99,99,109,96,102,79,93,84,102,102,108,99,105,101,108,95,102,112,92,109,98,118,110,96,110,102,124,102,94,113,95,102,103,112,100,117,96,95,107,107,97,103,97,114,104,105,105,95,92,101,83,108,104,102,96,109,109,101,94,108,116,105,105,91,118,99,110,99,99,110,101,87,116,99,106,106,107,103,115,106,91,103,110,100,101,103,102,97,115,101,101,89,109,109,114,88,95,108,88,102,113,102,107,99,105,103,108,104,113,87,103,107,109,107,107,104,99,101,90,101,98,112,102,100,107,103,94,108,93,97,113,88,100,97,99,102,95,89,99,102,96,117,101,105,135,102,101,112,107,99,109,94,108,100,113,98,102,72,107,103,106,102,108,97,100,110,108,101,107,107,108,111,110,102,114,108,96,95,97,109,96,105,105,95,104,102,109,95,103,105,102,114,102,88,104,108,106,105,107,106,110,99,102,104,100,106,113,109,105,94,117,114,106,101,94,103,100,121,106,110,118,102,106,91,112,105,118,99,111,97,107,120,109,110,110,107,108,105,104,107,113,103,98,108,108,105,104,113,102,92,93,96,109,100,105,109,106,102,109,110,105,114,98,103,102,103,100,108,106,99,109,106,112,101,109,114,99,102,109,101,88,111,103,99,106,107,95,107,105,91,98,105,94,101,104,103,105,111,110,111,87,122,110,108,106,115,94,113,98,105,91,109,105,116,107,99,97,101,102,113,116,103,103,101,100,87,102,107,105,106,115,96,113,119,99,95,102,104,99,104,113,110,110,104,118,113,94,97,93,105,108,112,104,110,110,118,97,106,99,99,107,112,107,117,107,105,117,120,88,98,114,106,106,93,108,108,103,91,111,91,97,104,103,104,102,95,102,113,118,104,120,99,99,103,114,107,106,103,89,105,116,104,110,99,104,105,110,106,104,108,105,108,104,115,95,102,94,113,99,91,105,108,98,111,108,102,106,113,100,108,104,95,106,119,107,78,107,104,104,103,93,99,109,97,108,103,106,113,91,100,100,101,117,111,100,116,103,95,99,113,102,103,104,102,102,100,110,97,100,103,110,111,95,98,105,103,99,98,109,99,112,101,97,102,93,96,76,99,110,105,110,112,109,109,138,89,105,117,103,77,117,92,98,101,101,98,112,110,104,103,97,102,105,103,93,106,110,112,112,103,107,98,104,95,104,105,65,107,99,109,97,93,100,91,99,105,112,105,101,107,95,110,106,114,99,100,116,71,103,103,112,105,102,108,109,104,124,115,106,99,97,105,88,113,94,94,108,103,104,103,111,101,104,96,110,103,109,121,104,116,104,105,108,105,86,100,114,96,103,109,105,113,104,100,106,101,99,91,102,100,105,101,101,112,98,105,103,94,111,106,111,107,93,104,106,102,90,96,97,108,116,117,94,113,117,111,101,107,105,103,111,90,110,80,99,102,106,106,100,102,98,100,100,116,101,102,122,105,101,109,101,99,100,66,103,83,109,107,105,93,109,111,101,103,94,101,109,103,104,111,91,99,100,102,100,111,110,108,99,72,106,106,102,107,95,97,88,110,104,113,101,104,98,111,112,78,96,100,102,111,118,96,100,109,107,105,101,103,105,107,100,92,96,98,107,110,103,105,110,110,93,74,102,105,102,103,100,102,104,102,93,106,102,112,119,100,109,119,94,91,104,98,105,107,94,98,111,98,103,111,100,98,94,100,97,109,116,102,95,88,106,102,92,101,97,109,104,93,110,97,93,112,94,92,104,98,105,96,99,99,99,100,111,107,98,104,98,102,90,98,104,90,117,93,118,121,103,109,106,125,113,112,93,114,108,117,107,98,109,103,95,113,115,105,105,98,115,113,111,108,91,107,99,111,102,106,101,98,108,106,117,104,111,101,97,102,76,102,102,101,118,103,98,87,115,105,108,114,122,101,110,112,104,112,108,107,112,108,97,102,98,104,113,115,113,106,102,98,107,102,105,107,118,105,117,113,104,102,116,108,108,93,96,113,102,95,99,110,107,97,113,99,99,97,101,109,99,110,106,106,109,114,110,100,119,103,95,104,114,104,107,110,123,106,101,102,102,104,108,110,113,97,103,104,100,86,109,106,103,99,98,107,105,103,113,113,97,110,108,102,105,101,114,113,98,99,105,105,91,104,119,101,100,113,108,108,107,105,100,100,106,112,107,106,108,105,108,107,105,106,113,96,110,117,106,110,96,106,113,118,103,99,98,102,99,102,111,107,104,100,93,110,108,114,103,107,110,113,114,100,98,96,94,115,103,111,100,95,103,113,106,106,93,101,101,100,99,92,107,108,108,102,108,76,108,89,107,92,120,95,95,106,105,102,99,92,94,95,105,102,109,99,99,98,106,101,101,99,98,90,103,104,103,105,101,103,103,95,118,103,107,98,100,98,103,98,91,97,103,109,105,110,111,108,86,93,119,111,104,97,121,98,101,114,111,106,92,103,112,100,100,108,104,109,100,101,100,103,107,103,111,116,91,96,79,100,103,110,103,97,107,92,105,101,101,104,86,106,104,93,91,108,100,107,92,112,98,97,91,92,108,119,100,106,93,100,91,105,106,92,101,107,102,102,105,101,114,104,113,104,120,103,101,102,100,70,83,106,112,108,100,104,130,103,110,106,108,102,92,95,101,106,107,104,106,93,94,102,109,100,99,101,102,99,105,109,84,95,102,98,96,105,96,88,85,97,124,102,95,90,105,94,87,105,87,104,92,101,103,97,105,101,82,88,97,114,115,103,101,93, +459.70062,97,108,108,109,105,107,95,83,115,107,94,89,91,105,109,102,105,104,109,103,93,98,85,109,117,94,107,107,98,95,104,99,102,108,117,95,107,92,102,106,86,102,102,109,105,98,106,102,101,119,96,99,114,105,101,104,97,114,103,91,88,87,94,102,104,106,101,98,99,112,105,98,96,86,98,109,93,105,104,98,98,108,108,100,108,86,91,99,105,103,108,100,105,112,102,103,112,103,100,91,101,106,104,82,88,101,87,105,98,109,108,90,116,100,101,110,100,103,95,105,99,108,97,109,113,102,100,109,99,96,83,107,105,95,101,99,91,102,96,92,99,104,81,97,103,97,107,104,98,112,86,105,95,102,113,109,109,106,101,99,108,94,113,91,104,104,101,100,113,109,92,95,104,101,105,104,114,102,104,105,104,103,104,109,98,99,100,91,109,99,88,112,95,100,105,104,101,108,91,98,101,98,102,109,92,96,105,93,111,99,94,114,123,107,99,127,97,116,101,103,121,105,97,104,94,100,98,117,92,96,110,97,102,112,107,101,107,95,114,101,91,97,103,116,103,99,95,101,102,89,97,104,96,102,103,104,101,105,113,105,97,109,91,101,96,88,110,104,88,102,108,100,106,102,100,104,96,107,94,101,103,96,95,111,104,99,94,108,109,98,98,112,101,97,104,107,101,109,103,101,109,105,109,110,96,102,102,96,109,101,99,103,90,104,109,99,106,98,102,83,101,96,109,102,104,99,113,100,111,109,101,104,104,99,95,100,94,113,96,87,99,102,96,99,111,101,97,105,106,84,108,99,104,109,93,116,109,118,98,101,109,108,103,94,107,98,107,111,95,95,104,98,98,104,101,131,108,101,84,100,95,113,96,119,111,112,100,105,104,103,115,93,94,98,102,95,102,101,111,112,95,107,103,92,100,87,114,108,104,101,94,97,108,78,105,104,103,94,120,98,92,101,92,111,99,105,102,95,107,106,128,81,107,95,105,101,87,108,99,113,113,103,99,103,97,98,100,105,106,112,94,97,99,99,100,110,88,101,105,107,99,87,109,107,98,110,98,98,95,99,94,98,106,95,100,100,102,90,105,100,94,95,117,100,104,111,114,102,102,103,111,113,80,92,98,104,97,105,95,94,111,84,96,102,109,101,102,102,98,109,102,95,96,114,100,102,99,100,104,101,99,114,111,99,101,99,121,107,112,110,99,112,98,110,102,112,105,102,89,103,116,106,97,80,111,107,103,107,109,107,113,106,118,102,96,92,98,110,108,98,109,99,111,103,107,125,107,103,111,88,97,98,95,108,107,103,110,96,97,106,97,101,109,93,106,104,99,108,88,99,99,115,100,103,82,102,125,112,108,96,96,98,107,101,103,106,105,96,121,100,104,113,113,105,109,110,104,100,113,103,103,92,103,101,106,98,107,103,97,102,98,100,88,106,102,96,95,101,116,108,112,99,100,101,102,114,103,97,105,98,115,108,108,106,117,106,101,101,89,107,111,111,108,114,116,102,108,94,101,112,99,107,99,102,100,99,111,107,116,88,109,93,102,94,99,101,98,108,116,116,105,121,85,109,106,109,107,101,104,94,106,99,104,91,104,111,88,117,97,104,117,101,99,99,91,103,96,99,108,101,104,108,100,116,99,101,109,106,101,106,103,106,103,105,99,114,105,101,106,106,103,99,103,102,104,108,111,101,91,109,105,109,107,103,107,124,93,105,95,101,113,109,84,97,108,105,115,107,102,111,102,102,109,117,110,93,103,75,104,91,102,101,110,107,114,99,100,105,105,106,105,127,104,110,106,105,107,102,97,114,105,93,90,99,106,113,103,99,97,107,110,106,107,86,109,114,113,101,97,92,101,113,99,113,113,108,99,100,115,94,107,114,109,99,112,111,104,102,108,101,96,99,107,104,110,113,102,105,101,103,103,96,96,110,101,109,110,109,103,107,102,101,98,112,108,105,103,106,108,108,104,82,105,102,107,92,95,103,100,97,94,100,108,103,126,115,100,109,103,94,102,105,96,104,115,96,103,110,100,104,104,113,116,98,97,98,101,103,107,74,100,107,117,109,99,104,104,96,101,113,117,102,113,104,99,110,101,96,95,99,108,113,101,108,109,101,107,112,98,103,96,100,102,105,99,100,120,100,104,100,92,100,108,105,113,108,113,99,98,107,107,102,95,104,112,103,89,95,99,106,108,101,115,100,100,102,88,110,100,117,116,109,108,107,108,103,105,93,109,102,104,101,98,112,96,90,71,114,102,111,106,95,107,104,100,88,103,101,103,108,102,112,89,108,96,112,102,100,80,106,102,109,114,97,104,104,93,99,90,102,114,103,101,93,102,98,105,107,114,101,89,109,97,103,98,104,102,103,107,107,106,118,100,109,104,105,121,103,117,104,102,113,94,105,103,113,92,110,120,104,92,111,98,98,98,107,105,104,98,111,97,109,103,109,109,97,94,102,110,93,113,105,99,99,105,105,89,111,107,103,96,105,95,99,105,111,101,102,112,99,98,106,98,95,117,101,112,100,98,111,113,103,102,111,116,104,118,114,68,102,105,111,108,96,108,104,106,106,115,109,113,94,100,106,108,102,102,110,110,96,102,107,100,113,98,113,112,114,106,121,92,96,97,83,106,96,124,109,112,90,99,100,111,111,110,112,113,109,99,114,106,104,100,124,96,107,117,105,114,93,112,96,107,100,102,120,116,103,106,106,87,111,105,93,108,99,107,110,99,100,117,102,115,118,102,103,112,122,108,100,109,106,110,95,109,102,103,94,98,106,92,105,111,99,112,112,100,99,113,98,121,98,108,97,108,109,100,91,104,106,112,106,107,104,102,103,104,108,102,107,102,116,106,111,104,107,109,115,111,104,103,102,95,104,113,108,109,111,108,107,97,96,101,98,104,102,98,104,103,103,109,96,106,111,102,106,111,83,103,101,102,104,94,103,102,101,94,111,104,98,91,110,104,91,110,117,105,93,123,108,109,110,104,88,95,98,112,110,115,109,105,96,102,98,107,100,100,99,111,119,104,108,108,109,112,111,90,95,106,111,108,113,103,98,104,94,91,104,102,103,106,103,110,100,109,102,102,100,95,98,108,103,103,109,103,109,114,99,96,106,107,104,99,105,102,88,115,100,107,101,100,100,102,116,100,115,96,96,113,105,79,101,105,109,108,102,102,101,100,100,109,106,98,108,110,104,111,104,106,113,99,99,107,94,100,98,109,108,109,106,103,102,100,112,116,102,103,110,91,98,101,94,101,103,112,104,103,106,94,109,104,101,125,100,93,100,111,104,106,105,112,103,99,105,98,107,100,104,98,105,97,105,98,96,97,111,109,109,94,101,101,99,111,105,100,103,108,102,106,96,111,111,112,98,110,99,104,95,95,95,101,101,96,93,101,104,115,99,113,90,107,96,105,111,97,101,104,110,113,92,118,105,107,97,96,98,102,117,105,103,108,105,108,108,98,100,100,100,103,98,103,112,109,98,106,108,103,98,104,106,101,98,94,120,93,100,93,116,127,108,101,106,106,97,111,108,100,107,104,105,98,92,95,110,121,109,95,109,113,104,118,100,102,72,107,100,97,106,118,106,92,102,110,105,97,98,102,105,103,101,107,85,103,110,117,105,90,99,109,97,101,94,104,104,97,103,94,99,102,111,109,110,100,120,108,104,95,98,111,97,97,111,105,114,109,105,107,111,94,103,104,104,106,105,108,111,105,97,107,103,105,98,97,115,103,120,95,104,112,99,113,99,109,105,99,109,104,94,104,109,104,108,99,113,114,112,106,104,98,114,105,91,114,107,105,106,103,102,97,112,95,100,97,96,90,107,112,92,91,108,113,104,97,99,110,115,100,98,118,97,106,102,103,98,105,91,99,104,94,96,110,104,94,109,99,106,121,99,103,73,96,99,107,102,110,109,101,104,97,113,99,110,100,105,95,115,98,104,110,112,99,82,117,95,102,105,105,90,99,103,104,88,107,106,105,112,104,100,104,113,104,107,96,111,112,103,92,123,107,104,107,99,100,88,113,108,113,113,105,97,111,107,116,103,99,109,104,97,101,99,107,107,104,105,99,108,110,111,99,102,108,99,106,105,109,106,105,105,90,104,100,111,97,113,99,107,96,97,89,121,117,104,112,99,109,79,106,104,106,96,103,102,99,115,103,94,95,107,104,101,118,97,99,94,95,109,111,104,98,98,109,99,103,113,100,100,108,111,105,107,102,101,110,122,106,111,113,90,117,108,108,103,106,95,90,87,117,103,110,119,102,97,103,93,109,96,100,108,94,104,106,99,107,110,108,102,96,105,105,102,105,92,116,104,100,97,115,109,117,110,102,99,105,107,109,111,109,106,103,104,89,104,108,100,101,103,107,95,105,93,109,98,102,105,103,101,108,98,84,112,99,106,98,95,97,99,100,97,99,111,108,104,100,105,110,103,94,108,100,119,106,102,108,110,104,109,104,105,106,104,104,100,113,120,92,110,104,94,101,93,108,109,104,105,99,113,101,106,112,103,99,102,100,91,96,103,102,113,108,96,99,101,103,106,96,106,99,90,96,101,100,113,96,106,113,98,101,101,105,101,102,108,105,92,100,80,108,99,97,102,110,114,107,101,101,97,100,105,96,90,99,94,101,101,94,88,105,98,101,96,95,97,93,109,102,105,93,113,102,97,108,110,104,101,118,110,95,97,102,108,101,98,99,113,98,100,100,100,107,100,83,102,81,102,90,83,102,107,97,101,103,103,108,102,95,103,102,104,113,101,109,96,115,89,111,100,101,97,108,87,95,109,99,92,97,101,101,105,96,105,109,97,91,109,100,113,100,99,96,115,101,127,95,92,119,101,103,103,113,96,119,104,116,102,96,103,107,84,104,95, +459.84106,101,95,89,128,108,104,101,75,92,99,108,100,96,109,103,102,96,110,100,95,96,99,102,104,99,100,95,96,113,115,88,96,97,121,106,110,96,87,107,97,89,113,111,105,106,108,103,111,125,94,98,94,109,100,106,98,94,109,110,98,93,98,118,100,104,100,95,104,117,94,101,94,110,95,93,106,100,91,108,95,107,116,99,106,106,107,105,100,105,111,112,100,96,104,106,98,101,109,99,92,103,101,102,111,100,107,116,91,108,94,107,107,96,116,92,101,111,102,95,102,119,96,103,110,108,108,100,92,118,100,111,96,98,112,109,100,104,97,90,101,103,109,97,99,110,92,103,117,95,92,113,100,106,99,96,103,95,104,103,107,105,69,91,103,102,96,81,104,100,110,105,95,99,88,101,96,98,106,99,108,100,94,111,105,98,102,117,95,94,104,96,98,98,104,101,103,102,104,98,112,103,107,100,98,109,103,117,96,94,93,103,105,102,104,104,107,105,104,93,92,117,113,105,105,95,116,98,110,102,99,96,98,107,102,99,104,105,104,103,98,90,101,107,103,116,90,105,99,99,99,95,103,97,99,88,102,96,94,97,106,87,105,108,105,107,90,89,87,108,94,95,104,97,106,105,91,95,107,98,103,97,107,108,112,100,101,101,107,117,100,106,118,100,102,114,105,113,92,107,95,102,102,100,109,97,107,107,71,104,102,104,97,123,104,95,98,101,108,106,101,96,109,102,99,104,103,105,98,113,103,111,96,99,97,110,100,111,108,106,103,107,113,102,100,105,117,99,113,99,96,101,103,101,98,105,95,100,105,100,99,110,109,105,113,104,104,98,111,85,97,102,106,113,103,111,100,109,111,100,98,89,102,95,99,104,95,105,99,103,94,108,87,100,94,112,108,104,99,104,105,98,97,101,96,104,95,84,106,112,91,96,97,107,100,104,94,101,103,111,107,101,107,100,104,94,94,113,114,97,109,97,103,94,100,98,104,100,115,93,105,115,108,94,108,103,110,100,105,109,112,110,99,101,101,108,104,92,110,111,108,100,106,109,109,102,102,108,110,109,100,99,102,108,98,114,101,108,109,103,100,99,110,110,86,98,91,100,105,107,110,102,108,91,100,105,93,98,103,116,105,113,102,121,87,103,99,96,108,76,110,115,94,128,101,103,109,97,100,104,97,104,102,110,99,112,99,108,105,102,100,97,101,73,119,73,115,105,107,105,97,99,105,98,101,95,108,117,106,109,117,105,104,111,104,91,110,100,99,112,113,107,109,124,109,98,109,108,113,107,96,98,92,102,99,97,108,103,103,106,113,99,109,103,88,115,115,113,101,106,105,106,96,110,92,108,89,111,114,109,105,97,102,107,110,114,98,112,99,110,126,91,100,97,105,94,110,111,94,104,108,100,110,107,112,115,116,97,110,91,103,84,100,94,97,102,111,95,98,108,107,107,107,103,100,120,104,105,103,109,109,99,112,109,108,100,104,121,103,106,98,117,106,106,106,96,96,118,97,113,110,113,100,105,95,110,127,106,110,109,102,101,103,104,75,101,97,110,110,107,97,100,98,103,108,103,106,113,95,92,99,108,99,105,105,99,107,95,110,93,96,108,97,116,103,100,106,91,93,98,102,121,101,96,102,101,104,99,108,99,117,100,100,104,105,109,109,108,92,110,106,104,100,102,105,104,101,112,106,106,111,118,105,100,108,109,91,106,108,117,111,84,98,98,83,89,113,94,109,94,100,106,72,109,93,94,113,103,100,111,101,103,108,107,90,97,99,94,105,102,95,106,113,110,108,117,104,109,100,106,98,100,105,108,100,108,110,105,106,103,105,109,98,97,114,113,102,112,106,107,100,100,107,110,104,98,117,105,102,107,110,113,104,105,113,106,106,109,115,106,102,108,104,113,94,99,97,99,133,103,113,108,95,109,107,104,102,117,123,105,134,103,82,116,100,106,112,108,107,111,113,102,124,113,107,104,107,102,102,99,112,104,93,101,118,96,109,103,117,101,105,92,110,107,114,106,95,111,103,83,91,99,98,98,110,105,105,100,93,105,100,101,104,100,106,101,121,126,102,105,105,97,105,101,108,94,102,97,106,104,81,114,106,112,106,100,107,106,103,113,104,109,101,108,100,103,106,92,108,101,108,104,96,108,101,106,93,101,96,101,103,109,117,100,110,109,105,102,107,105,94,108,101,109,103,105,107,105,96,103,106,99,97,103,91,90,118,107,97,97,104,112,77,109,101,108,98,105,115,103,106,110,100,100,96,103,98,108,81,103,106,106,121,101,110,109,112,109,106,95,94,97,100,111,100,102,106,85,99,109,128,104,126,109,103,105,94,101,112,115,112,115,102,101,97,97,100,106,103,95,114,116,111,103,113,97,113,111,107,94,104,113,109,121,109,102,88,102,108,106,99,95,107,98,103,96,102,103,100,96,101,105,111,101,106,102,126,132,105,119,105,109,110,98,103,106,112,110,103,106,114,112,106,99,101,104,103,68,101,106,100,109,129,100,105,101,94,111,110,105,108,104,96,96,90,104,106,99,102,107,111,104,106,102,97,99,99,97,93,105,104,98,98,106,106,90,107,106,106,101,100,119,103,112,103,109,104,103,98,92,105,103,96,99,108,104,102,93,95,105,106,97,109,103,113,91,92,102,99,103,99,107,97,106,105,112,103,108,87,97,105,103,108,103,101,109,99,100,104,103,110,96,118,107,96,103,108,105,99,107,85,110,99,106,119,113,104,106,100,97,106,116,99,107,107,101,118,103,102,121,93,106,104,103,106,113,105,106,93,105,109,117,103,100,99,107,105,105,110,104,110,101,89,117,104,98,113,133,105,110,98,95,91,100,103,102,109,105,112,105,102,106,106,113,113,87,114,93,98,115,98,104,104,97,108,111,110,105,106,107,93,105,101,103,109,106,75,99,105,105,104,107,104,100,108,102,98,98,105,96,98,107,110,113,73,103,101,102,108,102,105,111,121,101,104,106,97,102,111,95,105,110,94,99,116,120,116,113,92,108,96,116,106,87,109,98,95,110,104,104,117,118,109,96,99,95,115,109,109,110,101,100,106,103,113,112,83,102,111,109,100,104,106,112,103,103,110,102,110,105,98,102,100,99,100,120,83,81,105,94,99,104,100,102,113,98,118,116,104,117,100,83,94,96,109,109,109,110,114,108,103,97,111,103,85,109,105,111,108,108,109,105,104,100,92,106,103,97,104,105,98,104,103,107,112,99,106,97,97,105,105,107,102,109,105,103,100,106,90,108,101,111,100,102,97,104,123,106,107,101,94,111,102,103,110,109,114,108,99,102,112,93,114,107,107,103,74,105,112,111,99,103,105,111,96,105,100,121,103,102,105,106,100,102,96,112,113,105,115,94,106,103,99,106,106,111,108,104,98,101,108,102,96,104,108,105,98,116,115,111,100,103,104,102,103,102,77,106,105,126,92,111,84,104,72,105,99,106,104,110,100,107,93,113,105,110,110,109,102,78,91,96,105,107,108,104,99,109,108,108,103,111,99,111,114,106,90,103,114,94,123,107,106,121,101,109,108,101,106,109,103,108,109,115,112,109,97,104,105,106,106,100,106,104,101,103,104,99,97,108,96,98,110,116,113,107,98,100,98,105,99,103,94,105,96,93,112,108,109,98,101,108,117,99,99,96,93,103,108,101,114,116,91,105,100,99,103,111,108,87,92,121,99,100,97,109,97,97,117,107,103,102,105,110,109,109,98,68,109,106,99,96,98,108,101,103,110,102,95,98,104,91,111,93,113,101,102,111,123,106,123,112,96,110,105,104,80,105,102,94,116,92,101,104,110,101,105,110,106,109,89,107,99,101,102,102,107,109,107,99,94,108,94,95,108,108,101,102,110,110,94,118,102,104,115,105,108,112,108,113,101,97,103,101,95,104,107,86,101,102,101,100,106,103,103,98,104,103,100,95,112,107,102,98,100,102,117,108,99,105,112,102,114,108,107,106,109,105,105,105,135,112,103,88,105,105,101,100,108,115,108,107,111,97,96,98,100,102,104,98,106,95,102,102,101,105,109,105,106,101,109,103,109,107,110,106,101,113,108,111,91,103,104,107,100,102,120,108,99,110,93,142,98,108,102,108,102,106,112,106,121,105,91,100,95,106,108,101,73,105,90,106,102,110,99,101,100,87,113,99,101,105,107,106,106,91,100,102,104,107,108,108,103,108,96,103,100,121,106,109,111,76,104,102,95,88,104,84,100,99,112,112,102,110,104,108,99,89,105,101,103,107,96,107,97,109,100,98,104,106,91,99,92,93,112,97,104,103,103,106,101,104,116,116,105,107,105,102,99,103,109,99,112,108,111,115,110,112,116,105,90,109,108,98,99,100,103,105,104,131,103,106,101,103,109,111,110,113,99,99,105,103,105,108,87,107,102,87,83,99,119,104,104,113,105,101,100,96,97,102,95,95,102,102,99,113,99,104,101,92,106,99,98,92,105,117,99,112,106,114,113,97,90,94,100,88,101,98,106,111,102,106,90,105,93,108,102,103,103,94,95,101,102,110,100,96,93,105,97,89,103,94,89,98,87,98,104,101,97,102,104,109,98,103,110,106,110,116,103,104,96,114,106,102,99,98,98,100,99,99,92,93,110,109,107,105,105,115,82,110,112,94,98,108,106,113,95,122,101,74,101,104,114,102,100,107,108,103,97,99,94,110,100,82,100,109,110,107,76,109,102,119,92,114,111,93,99,93,107,103,98,105,109,108,120,106,106,102,107,98,107,106,107,106,99,106,99,90,90,95,99,119,96,105,93,102,99,105,96,102,88,108,102,111,102,100,112,94,99,99,90,116,96,122,105,103,116,98,99,98,108,117,95,101,109,101,106,115,110,98,95, +459.98151,103,100,90,102,87,113,114,104,101,111,84,115,96,98,105,102,99,85,102,113,110,111,111,111,105,98,96,105,107,111,67,104,100,105,117,95,108,98,92,112,99,105,107,104,86,100,94,101,111,92,87,100,107,101,96,85,88,90,118,95,104,102,75,102,104,108,102,102,98,100,103,101,100,106,105,91,91,101,105,103,97,99,106,107,100,98,100,97,107,102,103,103,106,94,105,111,108,95,102,110,91,103,102,106,106,103,90,100,97,113,108,104,106,97,96,98,91,106,104,105,109,95,99,107,95,97,100,99,112,107,99,101,100,92,102,102,81,88,98,98,111,105,105,98,103,112,110,108,98,100,128,101,111,94,99,97,98,100,100,98,68,112,110,105,100,105,101,104,105,103,95,91,98,106,112,106,93,106,103,106,101,90,98,121,104,103,92,97,105,104,100,96,102,110,111,87,108,96,104,95,106,100,88,95,111,104,79,112,109,107,97,105,107,118,113,103,99,106,101,102,98,103,108,110,96,108,99,105,100,104,109,109,108,120,117,116,112,97,106,99,103,99,106,106,102,100,86,111,99,98,110,103,81,107,105,103,100,86,100,103,102,101,103,94,103,105,108,91,101,101,103,105,106,94,103,102,110,105,98,100,113,109,98,93,99,114,100,97,109,109,110,104,96,116,98,110,107,100,109,95,103,99,95,106,91,111,105,107,104,102,95,110,105,98,107,99,100,114,114,100,125,95,106,103,114,91,110,92,99,104,105,108,116,114,106,98,98,109,106,92,96,101,100,98,95,106,102,104,107,92,108,113,109,94,100,100,110,98,110,116,112,111,101,91,101,103,107,103,98,111,100,105,107,105,121,95,105,129,103,104,101,101,96,103,106,97,110,93,108,86,101,91,101,102,96,99,104,106,103,112,94,91,99,98,103,107,104,102,87,103,92,90,112,111,95,109,107,101,107,106,105,96,104,106,129,101,110,92,109,105,109,115,107,96,106,108,94,109,99,99,101,100,100,101,103,109,102,109,98,102,99,96,104,90,107,95,85,116,109,88,101,104,98,116,112,107,109,100,106,100,106,106,106,100,87,86,106,107,104,100,104,113,105,89,103,105,111,115,101,99,110,121,103,103,104,91,104,113,95,93,110,94,102,106,98,102,97,105,109,100,99,101,97,98,97,108,100,87,99,103,98,112,105,96,105,94,105,108,96,105,106,120,106,107,103,107,111,104,108,109,106,98,101,102,107,111,118,104,107,108,110,105,103,114,103,87,101,101,97,98,130,88,101,99,102,102,106,106,91,96,98,97,121,101,103,102,105,97,90,107,106,100,106,98,88,99,103,104,113,111,113,101,103,102,100,99,100,100,116,106,104,101,106,118,98,103,101,107,100,110,102,106,105,112,107,110,99,105,104,111,105,96,101,101,99,100,102,110,100,115,92,104,113,104,94,95,107,105,97,96,104,83,118,114,101,96,92,107,101,106,94,94,97,103,91,109,86,101,111,104,99,107,108,108,102,101,112,98,106,98,99,104,115,110,110,107,92,110,101,99,101,105,113,93,108,99,109,118,112,100,100,99,106,103,108,111,120,95,105,100,94,106,124,113,105,96,106,112,96,108,102,105,111,108,101,101,105,113,100,106,103,98,109,105,91,92,102,101,100,102,107,116,99,106,108,93,91,98,129,98,107,109,102,93,102,90,98,117,94,95,108,100,82,89,95,103,108,99,109,99,93,103,104,109,87,103,94,91,120,95,114,70,120,120,101,116,85,101,94,95,114,109,103,115,104,96,96,101,108,107,109,121,110,113,89,111,93,112,99,94,107,93,94,85,107,107,108,113,100,104,96,119,106,97,110,105,99,100,86,81,96,110,100,100,96,99,95,98,109,106,98,103,100,99,107,106,104,110,102,102,100,98,106,108,92,92,99,105,109,104,94,98,90,102,117,99,111,102,108,110,105,99,99,106,89,76,99,105,113,109,91,109,98,107,103,97,102,94,105,104,100,109,100,86,106,96,101,95,88,100,96,122,116,107,101,94,111,105,101,100,104,118,101,103,90,94,105,112,106,96,106,90,110,110,113,97,85,110,107,91,112,95,100,109,106,99,105,101,108,104,104,92,99,96,96,98,106,98,110,95,101,96,95,95,85,104,97,105,86,113,97,101,98,101,107,107,105,107,105,86,99,104,97,103,94,101,104,101,94,112,94,103,108,101,102,108,102,99,107,104,100,99,104,103,108,108,107,88,108,113,100,99,118,101,111,99,102,102,103,105,108,105,104,99,122,100,110,103,106,103,93,99,109,120,106,105,98,102,122,91,117,109,99,107,100,105,103,105,109,103,110,101,86,93,111,94,94,111,102,103,90,105,92,109,117,92,102,96,103,109,96,107,113,91,99,103,98,90,102,109,106,98,98,102,103,98,100,95,106,110,96,117,96,105,114,113,92,97,101,110,93,105,104,106,94,106,116,129,106,101,102,110,108,111,105,100,96,104,106,126,104,89,102,106,117,107,111,99,102,102,112,106,110,109,74,100,99,100,94,97,110,111,98,104,110,108,101,109,104,96,116,105,114,102,102,101,110,111,108,99,97,119,86,112,102,113,96,119,113,112,117,105,112,97,103,116,111,102,96,108,103,91,95,106,107,110,99,101,99,97,97,108,99,106,102,98,116,110,109,109,117,107,108,98,121,123,109,104,103,113,110,101,103,100,103,107,110,92,102,106,96,101,114,106,101,107,95,108,104,106,109,111,102,112,107,101,105,117,104,96,97,109,92,92,106,99,105,106,98,102,106,110,94,105,104,104,111,112,80,103,109,107,111,115,110,101,102,104,115,95,112,103,102,107,110,98,99,93,116,116,106,104,107,90,95,101,110,102,100,108,111,113,95,106,105,94,97,101,110,102,108,109,107,100,102,110,102,117,116,72,105,110,102,105,112,115,101,89,105,97,103,102,105,112,103,109,101,99,126,125,115,107,103,97,111,106,108,106,111,105,106,125,102,102,105,104,117,102,109,108,107,104,114,108,106,101,107,105,103,108,111,100,104,102,104,108,106,105,103,100,87,100,107,113,97,107,87,97,106,106,104,110,98,108,107,111,106,90,105,98,107,100,118,113,110,103,106,112,95,100,104,111,95,108,99,106,111,100,102,99,112,105,105,108,116,98,108,105,102,84,111,116,105,103,105,99,115,100,102,100,103,99,113,108,101,101,97,108,105,93,100,105,96,100,102,106,110,104,108,105,102,104,102,102,101,101,108,110,114,112,106,116,112,112,118,97,110,104,102,114,107,104,97,118,109,98,114,103,114,98,99,98,107,104,104,106,92,106,100,109,96,99,118,94,112,110,99,100,93,107,109,112,96,108,99,125,103,97,112,101,107,99,96,97,88,111,104,121,113,96,96,98,104,100,93,99,99,104,106,110,99,103,106,100,103,98,107,111,101,102,107,109,96,107,100,107,110,106,109,111,123,113,110,91,102,99,107,121,111,107,117,108,97,98,99,105,98,103,101,106,82,110,106,114,105,107,97,112,105,111,113,105,113,112,105,103,96,103,99,109,96,104,108,116,115,112,100,113,109,95,97,100,95,99,105,108,106,110,105,110,92,106,106,112,105,100,96,98,103,101,104,98,89,100,108,92,101,101,110,102,105,101,102,112,93,104,103,97,104,93,103,108,101,101,97,110,99,99,108,99,104,109,110,107,100,94,102,113,103,109,103,92,109,113,101,108,87,93,100,107,104,96,98,103,105,100,101,108,104,109,115,99,110,108,109,94,117,100,102,110,101,98,104,94,110,111,98,100,113,111,102,109,110,102,87,112,109,108,109,95,110,104,103,100,100,108,121,103,106,97,109,109,105,108,96,106,112,102,107,96,108,105,100,99,112,100,93,96,107,110,105,110,109,101,107,103,104,87,102,100,116,94,98,105,110,104,108,91,100,97,99,104,106,97,103,99,113,107,98,105,109,105,101,107,104,97,97,103,109,102,104,107,109,102,123,103,98,94,100,106,99,116,102,108,104,106,108,107,112,103,106,111,101,110,108,106,98,99,99,103,102,86,104,86,101,102,109,106,85,97,90,103,103,108,106,112,99,101,95,105,108,93,119,105,103,114,102,104,100,114,109,109,94,116,114,104,98,99,115,107,108,107,105,101,113,102,109,112,90,102,109,114,101,105,110,113,113,113,112,105,108,115,115,107,103,103,103,107,102,108,118,109,91,106,99,107,72,117,117,96,72,101,102,102,106,100,104,99,106,115,101,100,112,97,88,102,100,108,101,112,94,109,101,103,116,97,110,100,115,112,113,101,106,125,110,104,105,111,110,99,109,95,100,98,109,97,104,113,112,101,111,102,97,103,108,100,102,103,102,108,104,137,110,104,102,106,106,109,110,97,95,103,100,98,72,108,102,96,125,116,118,100,103,102,88,109,102,90,98,96,107,117,98,109,112,105,99,102,88,103,101,95,108,107,109,110,91,95,92,111,96,94,104,108,97,102,111,87,100,104,102,91,80,98,99,83,114,117,104,77,105,120,102,102,104,92,117,86,106,107,109,105,100,103,104,106,104,97,99,104,98,99,103,108,68,116,106,104,108,107,106,101,95,108,104,112,116,108,102,111,106,108,98,99,83,109,96,101,103,111,100,91,98,97,105,107,111,102,102,91,93,108,105,96,110,100,106,106,110,95,112,101,102,102,112,92,106,94,121,110,104,108,87,107,107,100,103,98,83,104,92,105,99,107,102,102,93,110,114,98,96,106,92,91,93,101,100,92,102,91,92,92,101,98,98,94,106,103,101,73,98,103,104,103,105,113,85,103,109,95,112,102,93,101,101,128,100,99,121,84,126,91,97,105,106,112,100,109,87,88,106,82,118,105,114,98,97,99,95,93, +460.12195,87,105,105,105,109,108,108,104,90,109,107,106,95,100,101,109,98,107,115,104,103,97,105,102,109,107,104,98,109,111,126,93,84,95,106,109,117,96,103,99,100,96,113,108,98,101,101,108,113,114,93,102,97,126,102,106,102,96,98,109,100,126,87,105,109,111,104,91,101,93,95,107,114,108,124,103,102,100,102,95,112,95,107,105,117,99,108,106,96,100,106,125,67,91,93,103,109,104,99,75,92,95,102,96,90,121,93,104,86,113,115,100,111,98,103,108,109,114,96,114,93,106,112,113,106,105,107,105,114,118,120,86,114,103,120,101,106,104,94,108,93,107,107,96,97,105,100,109,100,99,96,82,109,103,102,101,116,113,107,112,101,93,103,105,110,98,95,93,99,99,99,108,99,79,111,95,99,102,111,109,110,106,104,111,78,95,96,104,117,103,106,102,94,99,100,112,105,113,101,114,95,99,91,105,96,108,95,110,111,103,97,96,107,99,95,100,100,107,108,93,105,101,113,109,92,99,99,111,95,103,102,107,91,110,113,97,113,114,103,115,103,104,104,127,99,98,112,104,104,96,100,101,96,107,106,107,95,98,116,97,99,115,102,101,100,99,105,104,102,106,116,98,100,122,99,95,96,108,98,100,100,105,97,86,114,108,103,97,100,110,98,106,103,102,102,108,99,115,101,100,99,101,86,104,104,107,96,100,111,106,106,112,105,109,96,95,108,101,126,109,110,95,106,108,109,117,85,74,107,116,109,109,92,116,110,117,104,106,98,109,101,100,102,99,111,109,116,108,100,95,100,96,99,98,105,111,97,104,103,95,98,112,95,105,94,98,107,109,105,108,86,109,112,101,128,90,107,105,107,106,108,117,96,112,103,100,109,100,96,94,102,97,106,94,103,102,115,104,102,111,102,104,103,109,98,109,111,118,106,112,81,92,112,117,113,91,107,96,101,100,104,101,109,109,93,95,101,114,105,103,104,108,113,113,109,103,101,104,88,103,96,99,103,102,101,118,110,100,101,109,95,87,105,97,118,114,113,101,104,106,82,98,113,113,110,118,103,106,105,105,108,98,101,102,101,100,102,92,99,113,99,85,113,107,99,104,102,96,104,99,110,98,109,85,89,100,99,104,110,103,108,110,100,111,96,107,98,99,109,99,100,79,99,109,108,100,104,90,114,95,105,123,101,108,98,99,110,109,110,106,96,107,104,97,103,113,99,104,108,103,104,97,107,108,108,107,112,99,96,109,104,110,112,97,109,105,102,97,103,104,104,105,102,100,110,96,101,101,105,99,110,94,109,100,112,107,96,105,94,115,104,101,117,109,108,109,92,104,95,95,113,102,105,105,103,100,99,106,112,107,100,105,108,98,90,99,110,104,109,114,100,109,107,119,99,102,96,100,97,106,110,101,108,106,97,105,109,130,115,112,107,109,105,117,98,105,101,83,110,103,104,111,92,113,97,103,112,97,104,100,95,101,101,102,98,106,119,101,101,114,112,110,94,106,103,98,105,105,97,114,100,97,100,92,94,113,91,109,120,101,100,100,106,104,96,107,107,99,100,105,117,113,96,114,112,111,88,101,106,95,105,100,92,95,103,109,104,109,107,105,105,115,114,108,94,110,97,95,110,102,108,109,98,109,100,97,111,110,108,112,110,102,102,93,101,108,106,93,105,106,106,105,109,108,103,97,137,89,98,105,114,113,113,109,112,105,106,110,95,109,109,105,101,105,107,99,90,100,113,98,110,105,108,100,103,108,111,78,111,100,108,94,109,107,112,108,110,104,94,116,101,112,106,106,88,110,96,95,95,106,106,103,99,102,106,87,113,101,99,116,108,102,111,103,92,109,106,114,99,94,103,97,102,109,106,103,107,102,108,94,109,102,88,105,105,102,101,96,94,98,101,101,108,106,108,96,104,109,101,108,107,108,93,84,110,101,95,104,100,98,107,111,115,106,103,113,110,105,113,105,111,106,113,109,102,105,110,126,105,95,106,112,109,98,113,93,104,96,111,104,107,103,104,113,103,95,93,97,97,99,100,106,115,111,92,101,130,93,92,103,108,101,105,103,104,99,106,107,100,105,104,99,109,114,106,97,97,99,109,100,94,102,106,111,91,105,102,108,100,102,100,105,106,106,117,102,106,91,101,94,90,106,98,107,111,104,111,94,96,108,104,103,90,105,109,95,102,104,96,87,93,100,117,97,105,103,117,106,117,110,100,107,104,108,102,114,108,108,105,106,95,99,97,112,98,93,101,115,108,97,118,94,93,98,111,106,99,92,100,95,105,100,100,103,100,118,104,98,103,95,107,102,93,94,119,99,103,96,103,107,106,99,104,101,124,98,101,102,93,102,101,103,104,104,99,99,107,119,105,97,99,108,104,96,95,116,104,112,106,98,105,108,97,117,99,107,98,106,106,104,103,100,118,100,99,91,108,98,94,105,100,116,86,106,109,120,113,107,114,124,107,114,112,112,98,106,88,89,107,104,100,99,103,104,103,120,103,99,107,113,104,102,110,105,108,106,106,99,101,114,106,102,105,106,107,107,96,109,104,104,109,117,122,100,108,104,108,114,92,91,90,95,98,95,91,104,109,98,116,97,114,88,108,89,116,121,108,102,101,100,101,98,119,103,99,109,99,103,104,87,107,109,107,102,95,104,103,100,107,105,97,114,106,101,115,113,110,106,112,103,105,102,100,101,97,115,102,95,124,106,90,100,93,113,100,106,104,112,102,90,103,97,90,112,105,102,101,109,111,65,111,103,104,104,112,119,108,107,113,103,110,99,108,105,112,108,92,107,112,109,94,92,91,101,101,104,96,106,106,99,99,91,101,113,95,97,106,104,95,118,114,107,95,107,109,96,108,104,101,102,106,103,104,102,114,80,100,103,105,106,98,110,110,98,98,114,116,86,101,88,94,104,112,100,114,106,88,104,113,102,97,99,110,98,110,97,95,101,98,103,104,103,91,98,99,112,110,102,107,101,102,102,96,102,102,108,102,96,111,104,106,102,97,122,123,104,105,112,110,109,104,122,103,102,109,110,107,98,110,75,91,113,101,97,95,89,112,104,83,100,91,106,112,104,94,96,90,101,104,105,102,110,111,115,104,108,95,102,104,114,91,98,109,98,99,110,117,100,98,104,98,109,105,97,124,111,111,95,102,106,114,106,93,120,105,105,108,107,91,115,92,98,101,99,119,92,104,96,98,93,101,106,98,97,105,104,100,102,97,109,102,112,101,103,107,107,112,108,107,89,98,114,104,107,101,109,102,109,110,105,106,103,124,100,67,118,106,101,101,105,98,110,97,103,106,95,75,100,111,102,100,106,100,121,105,111,96,96,113,104,97,107,113,109,101,103,101,96,110,119,107,95,102,98,110,117,107,97,113,110,96,116,106,102,105,103,102,95,112,103,103,109,103,96,101,102,103,101,97,105,105,117,109,108,94,113,111,108,100,94,112,109,107,99,111,111,133,102,113,95,100,103,127,100,103,122,94,113,104,118,102,108,97,106,106,92,108,117,102,119,105,111,112,118,105,105,92,96,120,107,105,83,102,112,105,96,97,103,98,100,103,101,105,110,105,100,118,108,106,110,95,99,126,96,112,109,116,104,95,106,105,118,103,110,105,93,94,106,97,115,107,98,104,110,103,115,95,73,106,104,102,108,101,111,102,92,92,102,127,107,96,104,100,117,107,96,96,107,99,94,101,103,102,103,105,101,115,112,112,93,99,113,100,97,105,106,105,116,102,111,122,91,109,100,100,96,103,100,109,121,103,105,103,105,101,113,113,99,99,106,111,109,103,105,103,102,105,102,102,101,109,107,99,91,101,104,89,103,108,107,101,103,112,102,94,94,104,108,103,117,113,106,103,104,111,113,87,102,107,97,112,110,106,102,109,98,104,110,108,109,111,105,104,107,105,105,111,103,102,99,102,91,105,109,103,106,100,87,96,114,105,105,99,113,110,113,111,100,101,111,91,103,111,123,115,100,105,92,100,100,115,109,100,97,96,103,121,98,109,109,94,101,100,99,101,118,98,114,117,102,96,102,110,108,101,108,109,102,108,108,111,112,97,107,103,100,109,110,101,103,116,103,101,124,118,118,117,100,102,96,91,109,95,106,106,103,95,95,115,105,103,100,87,111,92,106,108,105,101,101,103,118,105,92,99,98,107,109,112,99,116,112,110,99,111,109,109,103,96,107,96,112,99,109,105,94,124,106,102,96,91,98,109,107,108,110,97,99,100,91,102,98,98,99,95,99,106,101,89,93,96,98,104,107,100,102,101,107,107,106,104,102,111,111,104,106,108,119,106,104,117,99,111,107,108,93,113,99,109,104,103,107,106,106,106,94,106,100,102,104,100,107,107,103,109,97,111,86,99,96,102,103,105,89,96,95,104,92,100,108,119,96,106,103,104,92,87,94,100,101,99,102,101,104,104,91,102,96,113,103,100,98,87,103,93,107,99,108,105,111,111,94,93,108,99,108,87,99,104,89,81,92,96,117,105,97,110,113,105,101,105,115,88,99,103,106,99,97,100,96,124,121,102,87,101,88,108,100,103,97,109,94,109,98,102,107,88,92,99,110,104,99,97,107,110,107,112,97,107,108,114,107,99,108,110,100,101,104,104,94,107,95,107,97,103,117,105,96,92,100,79,121,95,98,108,99,103,96,111,104,94,104,117,105,119,103,112,99,99,102,98,109,112,94,94,83,79,93,106,110,99,102,106,100,95,107,99,90,128,94,112,97,107,128,110,107,102,120,102,102,98,96,109,100,110,108,98,112,100,99,114,94,104,99,109,101,103,102,109,89,103,96,102,97,98,107,98,107,104,105,116,110,115,92,100,95,105,107,107,103,106,100,108,113,99,102,102,100,99,109, +460.26239,105,103,100,89,95,107,109,85,95,107,96,111,98,96,82,94,87,105,75,110,105,87,98,102,76,105,98,95,103,94,92,103,103,107,90,93,113,92,97,90,110,96,101,75,101,101,95,106,97,104,104,119,102,89,103,89,109,105,97,113,94,107,95,97,95,113,89,101,98,101,110,105,105,102,97,92,104,96,106,101,97,100,100,109,95,102,94,99,101,111,85,106,104,101,107,104,109,99,110,87,108,99,105,92,98,96,107,77,99,111,99,99,108,109,105,100,98,109,104,114,105,101,92,120,98,110,105,110,101,106,96,99,103,115,108,103,103,95,99,100,106,109,96,90,87,105,108,104,104,97,100,106,103,82,107,96,100,110,101,87,92,104,107,100,99,107,111,96,94,98,107,99,104,115,95,101,98,100,90,109,91,95,99,102,99,94,96,92,101,107,98,102,89,97,101,97,99,117,102,93,104,91,98,96,92,111,105,102,105,120,98,105,104,106,105,100,102,96,109,106,107,106,97,104,90,106,105,103,103,108,93,122,107,95,96,102,112,107,101,106,87,114,111,101,103,115,102,121,90,105,100,95,102,101,96,96,102,118,100,99,106,112,125,95,97,99,91,110,105,106,100,101,91,89,106,76,110,110,101,103,104,105,106,106,104,90,110,107,105,111,103,123,104,101,107,99,115,94,110,106,91,96,114,102,94,122,101,92,102,110,96,110,98,98,95,99,96,96,105,108,100,108,106,104,109,100,95,96,112,101,100,98,100,100,103,86,105,93,98,98,111,112,109,103,100,103,111,115,96,118,116,108,104,95,97,99,105,110,90,113,102,91,107,103,89,109,109,118,103,128,100,97,91,96,103,101,109,91,90,106,111,100,96,99,98,94,108,85,106,109,100,91,75,107,102,111,98,101,104,105,99,102,99,107,123,102,92,109,107,95,97,95,109,134,110,101,96,107,105,113,101,94,98,101,101,100,98,95,106,106,105,106,108,101,102,99,102,115,99,107,99,99,101,98,99,102,99,109,112,109,98,96,97,104,122,107,99,110,107,96,68,99,98,105,110,107,103,96,109,105,112,115,101,96,101,98,88,104,114,105,105,96,105,108,106,114,89,104,105,102,103,112,99,86,86,99,83,95,109,101,115,106,100,116,113,97,99,110,95,93,97,99,100,110,105,106,109,106,108,89,99,97,97,103,103,105,114,122,106,101,91,109,103,94,105,110,105,101,103,110,98,92,95,109,103,87,104,92,106,113,113,87,118,103,96,114,114,95,98,103,113,96,104,100,103,101,107,103,104,96,101,100,107,102,111,102,98,99,95,103,109,108,94,107,101,108,112,102,94,108,112,111,95,105,108,98,110,94,105,107,100,115,104,102,105,87,97,108,103,103,100,102,113,91,102,107,98,99,100,84,104,95,105,95,107,99,112,99,119,93,94,127,99,108,102,105,108,109,99,97,111,111,99,102,106,97,100,95,96,113,104,104,111,96,96,106,107,110,103,116,107,107,82,75,104,101,94,93,97,91,103,101,113,106,108,117,94,99,99,101,108,106,111,108,105,103,109,107,94,107,94,107,99,113,97,101,107,87,106,105,109,97,95,116,105,108,92,94,106,72,106,93,101,109,103,96,105,98,99,85,106,117,102,99,91,101,89,106,106,110,103,94,87,99,97,99,100,99,110,98,107,102,106,95,99,106,113,94,101,110,109,93,86,98,97,108,109,102,89,107,104,95,101,103,86,105,86,90,105,100,106,117,111,95,100,122,102,98,101,103,95,108,103,105,103,106,101,108,102,97,107,95,121,108,101,103,108,91,105,103,100,101,97,101,97,101,97,101,103,108,106,104,90,101,97,104,95,97,106,98,101,99,101,109,103,104,109,113,97,101,105,102,98,91,82,104,105,100,107,110,105,98,110,101,107,106,104,96,113,99,77,98,99,104,104,103,103,89,91,100,102,98,107,98,102,108,93,96,87,99,100,109,106,103,102,108,99,95,101,105,96,97,120,110,98,103,91,99,98,91,101,104,106,114,103,95,88,96,99,105,91,113,92,102,104,99,102,100,97,98,98,97,111,106,107,98,102,95,95,102,98,92,103,95,111,100,98,104,92,99,108,99,106,106,114,107,104,87,103,108,100,104,112,99,110,103,106,110,101,98,105,105,120,104,118,94,107,109,111,100,101,118,114,99,129,95,103,104,109,101,104,100,97,125,96,94,109,101,98,104,102,109,101,87,94,124,101,108,94,91,113,117,107,108,116,108,101,110,100,100,94,93,104,89,108,113,95,93,99,96,100,115,104,112,102,105,99,77,99,114,103,125,95,91,106,107,104,95,112,113,122,94,105,114,101,104,97,113,99,95,99,109,90,111,110,93,97,92,94,70,91,111,109,111,103,98,71,108,102,100,117,86,99,109,107,94,91,103,101,96,101,113,96,101,95,106,102,102,101,100,98,96,100,109,108,95,94,105,106,99,108,97,93,100,90,99,104,91,117,130,104,102,87,98,112,99,118,95,104,96,107,109,102,110,95,101,113,107,108,98,108,103,91,97,112,100,113,112,104,105,102,102,104,100,93,102,117,108,100,100,97,82,97,98,97,94,104,115,108,91,93,112,105,96,97,109,110,106,94,104,109,98,99,113,116,120,105,104,107,114,101,102,117,106,105,102,111,109,120,97,99,124,113,106,118,91,109,99,111,106,91,103,109,103,104,75,108,119,106,97,102,109,105,115,107,88,112,109,94,89,110,112,93,106,103,110,110,106,108,101,99,113,94,124,91,112,117,99,104,105,105,91,102,106,110,101,101,103,116,106,107,98,106,103,107,111,108,113,99,109,99,89,103,129,98,101,103,110,93,105,121,96,108,99,105,112,97,108,103,116,108,98,111,108,99,106,103,112,101,100,109,117,105,100,117,109,93,95,98,95,104,116,105,98,109,93,105,105,99,98,114,100,101,108,100,119,92,105,97,101,111,102,92,104,105,113,96,103,105,100,102,103,102,110,103,91,102,96,105,94,107,103,105,108,99,106,93,123,100,91,88,109,108,106,108,100,105,100,96,113,105,99,100,94,123,90,108,108,108,107,106,109,103,117,108,99,110,98,94,98,107,101,95,99,105,113,107,106,83,100,102,105,105,114,102,93,89,104,95,97,101,116,107,108,105,107,105,102,111,104,102,95,101,96,107,109,114,94,109,98,92,113,96,87,97,110,99,103,106,112,103,104,102,91,83,104,103,92,97,97,115,109,99,105,114,102,87,101,104,106,103,104,101,106,103,95,99,105,99,102,98,119,119,95,105,102,107,71,103,113,105,104,117,102,98,98,105,93,97,97,87,94,105,93,111,110,106,125,104,111,116,103,119,105,99,96,99,101,102,92,106,97,98,99,109,100,94,96,102,110,102,103,103,108,105,94,103,106,94,111,108,93,111,103,99,88,106,98,104,100,93,99,91,85,95,102,108,94,99,104,108,100,102,101,92,99,108,108,103,109,101,103,97,105,102,103,108,96,97,104,100,105,97,110,111,94,102,94,97,109,116,99,112,100,109,108,91,107,96,107,107,104,108,96,116,94,102,103,108,91,95,125,95,114,100,103,103,108,80,97,117,100,100,108,95,102,107,110,113,103,102,113,99,99,103,111,96,102,79,110,104,101,84,113,91,99,106,108,114,99,104,95,101,90,95,96,102,109,108,100,100,91,109,94,106,103,104,113,106,93,106,105,101,103,104,96,110,109,108,108,102,100,103,103,111,98,105,107,105,111,96,97,93,106,98,101,107,98,120,102,109,115,111,104,104,103,97,92,81,106,120,106,96,101,102,104,118,75,110,106,104,105,97,105,87,105,102,116,101,107,111,104,103,109,107,111,91,100,112,71,95,104,99,105,100,110,104,93,105,101,102,103,97,112,103,109,97,97,106,105,97,108,99,102,106,110,107,107,105,108,98,105,85,126,104,104,101,101,112,98,103,110,104,102,105,98,105,104,100,100,101,95,99,102,116,98,101,102,100,102,132,103,100,90,106,121,108,97,106,101,110,108,104,99,106,122,80,102,104,91,107,68,110,100,116,112,93,110,99,91,102,99,100,105,114,107,89,101,95,120,98,97,107,110,100,99,108,93,104,107,101,95,91,103,110,88,116,100,107,106,114,96,101,97,100,111,116,106,96,105,110,110,103,96,97,99,101,113,100,104,106,115,97,99,119,112,105,101,104,98,95,98,91,88,115,99,104,107,111,100,105,104,98,112,99,97,91,98,101,108,103,96,107,90,102,100,99,88,99,102,71,98,94,90,98,104,109,93,104,107,96,110,110,104,108,111,110,107,111,117,109,98,108,106,105,109,98,102,100,101,94,115,126,112,96,99,103,101,98,102,116,106,97,108,90,107,106,110,108,95,124,95,107,96,102,109,79,106,113,117,114,100,101,93,97,104,108,87,99,109,117,95,102,112,106,111,101,97,97,105,86,97,114,110,117,103,104,102,107,107,93,103,95,108,116,106,109,101,96,104,108,106,104,101,95,91,106,95,102,106,103,99,113,97,109,108,117,109,101,106,101,101,113,97,103,107,103,99,102,95,94,100,96,115,108,87,87,102,93,114,103,114,100,94,97,117,102,102,102,95,106,107,104,104,108,107,109,106,114,91,108,113,100,106,91,95,111,102,103,113,109,104,109,107,77,94,108,101,112,94,105,117,97,98,103,96,101,90,98,101,107,109,93,109,109,103,99,101,99,102,122,107,110,69,112,107,97,100,108,100,97,107,91,98,106,115,105,102,112,97,103,97,95,95,99,95,106,113,105,95,105,109,90,112,103,105,111,109,102,101,112,101,87,102,99,95,91,100,126,87,102,98,99,92,96,94,102,102,102,94,109,112,102,98,113,101,119,97,103,98, +460.40283,103,99,87,89,89,103,104,96,104,100,90,97,105,96,106,89,91,96,104,102,105,100,84,98,91,112,98,96,92,111,103,106,95,92,104,98,92,84,101,102,94,101,109,89,106,106,110,105,118,96,102,103,103,95,97,101,97,89,104,104,96,102,100,90,106,100,93,105,105,97,108,107,105,104,98,104,92,103,111,98,104,98,108,95,99,99,88,100,99,92,118,100,107,102,100,95,98,104,92,91,108,91,92,98,103,91,121,99,96,100,102,102,90,97,112,100,98,98,102,100,112,94,91,104,118,96,100,77,122,118,103,112,101,104,96,99,95,101,86,98,122,109,100,91,101,108,108,96,97,113,108,95,100,95,98,103,97,100,100,114,108,94,105,107,100,101,99,106,111,104,96,102,102,99,93,95,97,92,104,103,103,101,105,94,98,105,106,91,99,90,97,96,77,101,101,102,106,96,96,127,109,103,98,105,98,96,97,100,102,109,105,102,96,105,102,108,91,100,97,106,78,106,104,106,104,110,106,108,120,102,96,101,80,98,99,124,103,104,96,105,108,104,100,105,95,105,81,98,108,90,101,93,97,103,99,102,109,104,94,111,99,102,92,98,87,103,105,105,104,101,114,100,117,88,99,96,99,97,92,109,81,93,128,108,114,94,97,107,102,104,87,105,103,108,111,115,101,104,105,81,87,97,102,118,95,108,100,111,102,116,96,110,102,104,111,99,106,102,103,99,89,109,112,104,99,99,97,113,109,104,116,104,100,97,104,91,103,102,104,103,98,93,94,92,113,99,100,100,107,98,108,91,102,101,90,97,95,106,104,106,99,113,105,107,103,121,112,113,105,113,93,98,91,90,89,102,100,111,86,115,73,105,109,103,102,98,108,98,111,86,100,92,96,97,109,105,97,109,89,106,106,96,86,103,111,89,94,97,103,91,103,99,112,105,108,88,93,98,103,98,110,106,99,95,107,103,108,96,95,103,120,97,100,108,88,106,100,95,106,93,110,107,106,106,100,108,102,89,86,101,88,105,103,98,101,99,100,100,103,101,97,113,113,113,97,119,130,99,85,101,104,116,106,94,90,84,103,113,104,111,108,104,104,99,97,101,102,100,94,106,105,104,100,93,102,92,92,103,102,108,126,107,106,96,99,105,102,103,91,105,100,107,97,105,98,92,94,99,94,89,107,104,110,102,107,106,107,109,109,103,109,99,102,102,89,117,101,104,117,112,91,96,109,101,106,99,99,108,103,97,102,126,102,93,95,104,110,106,94,102,108,115,93,113,100,103,87,98,98,98,89,100,104,108,102,104,86,97,112,80,104,96,94,98,99,96,116,101,100,101,98,107,94,104,95,103,104,103,101,106,123,87,102,97,99,108,101,88,102,103,98,111,104,74,96,97,92,103,93,110,102,98,111,114,102,109,91,100,86,96,98,112,102,91,97,104,100,100,113,104,102,104,98,100,104,84,108,103,113,102,100,120,106,113,106,100,107,106,105,96,109,112,106,91,95,108,104,100,105,104,111,105,107,96,99,120,102,106,107,109,109,97,107,96,100,112,99,104,103,93,102,102,99,102,99,101,102,95,112,82,83,95,100,96,99,96,112,109,88,106,107,104,120,91,100,94,97,94,102,93,104,105,97,110,95,97,112,119,94,117,106,97,113,100,105,104,101,96,95,106,107,92,108,103,109,105,109,95,111,109,106,104,98,116,95,98,86,106,100,75,100,101,108,106,98,103,119,92,101,97,108,94,102,120,88,128,105,111,90,110,92,101,107,105,110,105,102,114,97,95,96,99,110,107,102,96,112,101,102,105,96,78,103,101,99,116,102,112,105,99,114,95,100,107,108,98,95,99,111,103,102,104,103,96,111,105,103,99,105,100,98,105,98,103,99,112,98,101,88,102,98,103,117,100,107,105,111,104,88,92,99,90,89,98,105,107,114,104,88,107,108,98,104,100,97,105,103,99,101,105,99,100,89,102,89,99,108,101,100,101,98,103,98,101,107,102,105,114,121,114,95,93,99,105,114,108,115,104,105,101,105,102,95,89,102,103,105,103,94,100,106,93,125,111,114,76,96,108,106,94,104,104,96,96,103,101,111,91,117,107,103,115,118,99,129,88,98,89,108,103,104,98,97,113,93,108,114,112,101,105,91,103,110,97,96,96,109,120,108,90,94,105,95,111,104,109,90,110,104,107,89,100,97,89,96,108,95,102,97,97,107,109,96,96,95,108,99,106,122,104,100,86,99,97,89,94,84,96,99,104,113,99,101,113,101,100,107,101,104,94,97,99,113,100,96,110,103,112,102,114,96,115,104,85,103,95,109,105,114,95,104,101,97,86,110,85,94,106,92,107,104,100,97,131,104,103,102,93,104,88,102,97,104,110,97,103,92,101,109,104,101,105,83,97,109,97,101,113,103,98,89,116,107,95,107,105,112,101,95,99,127,99,107,98,105,122,111,99,108,111,99,106,102,94,103,98,105,98,102,110,129,81,104,111,111,108,100,95,123,108,100,117,113,88,88,90,106,108,95,94,106,103,104,98,105,108,108,102,117,106,97,112,110,98,100,109,104,100,108,100,94,99,96,95,116,89,111,84,109,102,109,103,127,99,95,105,106,99,105,97,101,101,107,106,102,82,99,107,116,105,101,106,112,102,103,101,102,107,112,103,113,89,127,105,97,99,104,109,101,105,95,100,102,105,97,107,107,102,104,110,106,124,106,120,99,103,88,100,97,95,95,118,94,99,113,105,100,106,100,103,107,118,107,79,113,102,89,111,111,103,108,106,102,112,99,106,102,107,104,121,111,104,109,109,97,119,102,114,88,87,107,110,107,97,104,102,101,107,107,112,113,108,104,109,103,102,106,111,107,87,107,114,102,101,107,104,98,100,102,105,106,81,114,95,107,104,102,92,110,110,106,99,116,110,98,103,102,104,105,96,96,102,101,114,99,97,96,106,91,110,105,102,103,104,104,103,86,100,106,104,109,102,95,89,114,95,113,110,113,112,99,108,106,97,117,110,105,107,105,100,92,99,105,107,102,92,105,100,113,96,90,113,110,106,87,96,109,113,100,98,100,102,101,98,97,124,110,101,95,102,77,101,87,94,107,105,88,106,112,116,100,100,97,108,102,87,104,96,98,93,101,107,102,106,108,105,100,95,105,111,102,99,95,117,107,104,103,102,113,110,97,101,95,106,104,107,99,107,95,97,110,101,96,96,104,106,107,68,91,105,99,114,109,108,113,102,116,106,99,102,103,116,89,102,103,101,103,102,94,101,101,102,105,111,113,107,113,112,101,93,105,106,109,98,110,124,97,101,101,100,105,108,101,99,109,103,87,105,113,96,115,108,109,107,113,114,107,114,98,109,108,112,111,109,104,101,108,91,104,106,92,102,107,101,110,94,102,96,112,109,91,92,91,112,103,104,119,106,108,92,92,115,96,110,97,98,108,89,100,101,105,100,102,103,102,94,102,108,106,102,120,126,104,110,113,103,108,101,105,107,70,95,112,99,105,106,109,104,99,100,91,103,99,98,106,108,99,96,104,105,103,105,101,113,101,100,106,101,107,112,95,98,92,103,101,107,109,108,109,93,94,108,105,96,95,92,96,105,98,109,105,102,103,109,101,103,97,89,112,107,95,99,84,105,106,102,107,115,102,109,105,115,97,105,113,95,113,104,107,92,99,95,102,113,106,94,97,108,101,93,111,99,115,109,106,103,111,101,113,115,91,100,103,105,107,106,106,113,106,102,84,95,100,106,95,101,99,111,110,106,98,112,99,116,99,111,104,103,104,103,111,106,98,95,101,103,98,98,110,108,105,100,107,94,97,102,99,108,110,97,115,108,105,113,100,112,102,105,112,99,94,99,107,104,111,98,92,111,103,103,115,115,111,102,103,99,107,100,110,101,102,113,109,100,105,112,103,112,111,109,100,115,93,105,103,123,95,101,93,94,111,108,95,106,116,91,103,95,108,103,110,92,96,76,112,99,101,97,91,110,95,103,96,98,107,100,118,113,96,103,100,95,100,109,113,116,90,107,90,109,97,105,109,102,101,103,113,109,99,107,97,106,98,104,123,106,101,103,115,112,108,109,103,101,103,104,103,102,109,109,102,100,113,105,98,108,113,104,100,117,112,114,100,103,106,111,112,91,111,97,104,105,108,91,113,113,94,126,117,109,105,101,98,113,93,99,95,91,109,94,94,98,94,118,92,115,109,100,105,94,86,111,104,103,101,101,104,106,100,105,94,98,100,106,111,120,99,100,92,106,102,99,90,106,99,105,105,100,100,96,68,98,72,111,99,102,98,102,95,111,135,102,103,117,108,106,97,107,100,95,105,102,106,109,113,95,100,93,105,103,98,106,114,101,103,113,102,102,93,102,108,100,111,103,94,112,108,108,100,93,108,87,61,98,104,106,104,91,105,123,99,117,101,101,103,105,97,100,102,103,96,96,111,107,107,101,105,99,90,104,106,104,103,99,115,92,101,98,109,101,90,114,105,105,86,94,109,109,99,96,107,103,100,99,76,103,103,103,106,107,99,124,113,106,96,96,92,100,100,95,93,97,117,104,101,107,106,103,107,95,111,97,101,100,89,105,89,114,100,92,106,103,98,91,101,82,92,102,93,88,88,104,102,106,100,99,103,90,104,100,111,92,106,102,113,96,98,85,91,107,105,98,96,114,95,111,112,112,102,96,109,104,92,101,92,96,105,99,100,90,104,109,101,112,89,93,109,105,96,109,91,94,112,98,113,87,100,92,113,119,106,106,106,107,100,101,77,107,102,95,96,101,98,87,95,100,100,97,103,89,104,103,103,100,115,97,90,90,98,93,102,101,114,109,98,121,102,101,117,82,91,108,104,98,111,96,108,107,95,96, +460.54327,108,120,94,95,96,105,97,96,91,96,93,101,91,87,114,99,85,112,92,110,100,108,94,114,102,100,102,99,95,117,91,88,105,89,106,97,96,97,103,110,94,114,108,100,112,105,111,105,80,117,109,97,103,104,113,91,103,100,89,92,94,100,116,93,104,101,96,92,101,108,106,115,107,98,109,111,91,105,103,105,109,91,105,96,93,101,94,104,96,84,108,106,102,100,91,94,100,95,98,105,95,92,97,99,110,106,97,108,99,99,96,100,101,108,124,99,114,104,99,102,93,116,77,109,101,98,101,101,116,110,98,87,97,104,111,111,92,104,92,101,102,107,93,99,101,100,109,91,106,104,95,93,111,97,107,90,126,105,103,104,99,101,109,99,99,120,95,95,95,90,99,107,99,101,111,99,95,87,102,112,100,104,120,102,104,101,97,90,100,103,79,102,83,101,95,100,99,112,110,96,94,108,77,102,107,92,95,98,108,106,102,113,119,117,116,99,101,103,103,98,103,90,117,113,110,114,108,104,111,99,108,99,95,103,98,98,118,100,104,102,104,110,99,115,105,101,99,120,94,108,106,104,97,108,94,110,105,102,93,112,85,107,97,107,88,113,107,107,116,106,101,100,104,112,109,105,121,109,112,105,98,116,110,98,103,102,103,97,105,116,108,104,98,108,117,108,104,110,101,97,97,105,105,118,103,102,105,106,98,106,91,102,114,110,105,105,113,99,95,94,98,106,90,103,112,94,112,73,102,108,107,102,97,110,104,99,104,100,86,99,103,109,97,92,102,101,111,112,110,118,99,106,99,96,100,93,96,106,94,101,95,108,97,92,85,100,97,103,108,106,94,97,92,113,108,108,100,93,98,121,105,107,99,108,106,98,99,88,117,104,109,100,99,108,105,105,103,107,114,109,116,106,101,96,104,109,105,108,105,101,96,109,100,99,102,101,106,111,95,93,109,102,97,101,97,98,103,100,107,105,103,99,97,100,102,99,99,93,96,97,99,117,108,106,100,94,99,79,117,99,105,102,111,105,105,111,111,94,112,94,105,113,95,104,97,105,92,110,104,87,101,107,105,103,89,98,110,121,98,104,103,105,104,98,101,99,108,97,92,90,103,113,104,103,107,111,84,108,104,104,99,101,101,101,105,103,107,103,97,103,101,101,90,114,100,98,108,109,105,108,108,121,105,91,103,105,118,101,97,104,92,104,92,106,95,110,99,100,100,126,103,87,111,116,111,127,98,93,109,116,96,88,90,93,114,102,106,107,102,95,104,111,102,99,108,111,92,103,101,97,92,101,103,90,108,103,102,96,119,99,100,99,98,104,92,95,102,95,106,98,99,109,96,100,110,94,106,103,108,99,98,104,111,106,100,108,71,79,99,105,107,102,111,107,94,92,102,105,98,111,109,85,83,103,107,101,98,104,104,105,102,107,96,110,105,109,99,100,111,92,84,104,104,113,102,89,95,113,98,111,105,90,99,113,105,102,93,98,97,101,108,120,102,113,94,108,98,93,72,100,96,95,96,102,98,101,90,99,104,91,103,103,107,91,101,93,95,111,105,104,106,112,108,116,80,108,97,101,99,93,104,96,100,97,104,117,101,91,98,107,105,100,109,108,115,93,105,102,108,95,117,104,101,104,92,95,100,86,94,101,92,103,97,96,100,99,98,103,109,98,101,94,102,80,96,109,115,105,96,115,96,109,106,102,104,121,112,102,112,105,103,105,92,107,94,97,101,110,104,110,94,105,107,99,111,111,103,99,101,108,91,94,96,104,105,103,108,106,105,99,109,104,97,111,96,100,109,100,100,115,113,89,95,104,123,105,108,107,92,114,107,98,90,95,100,99,101,99,93,99,104,99,111,100,108,102,100,97,100,96,96,97,98,87,103,101,103,94,120,102,105,109,98,105,108,97,102,97,97,112,107,94,101,107,98,111,112,104,104,102,106,90,103,98,99,106,91,106,116,97,90,107,109,85,87,106,99,104,104,120,93,112,85,101,111,99,107,100,111,111,107,102,101,98,103,87,107,102,108,99,112,108,102,97,109,105,97,102,80,106,94,107,100,99,104,109,94,111,112,98,82,109,89,108,100,106,99,106,94,85,98,109,110,103,110,95,103,101,100,110,113,101,109,81,101,95,94,102,97,101,95,95,99,102,106,110,101,109,101,114,117,107,105,99,101,97,96,109,105,95,94,97,100,68,99,110,103,105,97,98,114,115,111,104,99,111,99,114,110,100,105,105,105,102,102,94,97,106,98,105,101,100,90,95,122,100,104,99,87,113,101,96,94,107,86,107,105,105,108,94,103,109,88,95,99,116,102,103,111,103,103,103,112,126,109,114,104,113,111,104,95,101,103,79,102,99,92,86,98,98,72,100,112,108,97,123,99,82,75,113,101,99,105,88,96,101,101,96,99,87,99,101,98,99,89,111,106,95,99,106,99,97,95,104,106,106,109,105,98,95,99,111,96,106,90,99,102,104,117,109,101,106,107,121,95,97,97,100,113,98,109,105,110,103,123,97,102,117,95,113,73,111,95,91,106,105,101,104,95,112,106,106,117,101,119,113,98,114,110,109,103,93,95,104,72,108,75,112,110,98,107,95,120,101,101,105,102,106,99,113,100,95,108,98,100,108,136,99,112,89,100,110,106,107,96,102,101,117,88,111,103,104,106,110,99,107,108,97,97,106,92,104,102,115,96,101,98,113,95,80,95,113,103,97,116,97,95,115,99,107,106,99,92,99,104,109,102,95,111,100,96,104,105,101,104,100,112,96,106,105,101,99,102,95,111,100,111,111,111,106,108,102,106,98,93,109,111,97,104,108,115,122,112,90,108,119,92,109,95,99,116,102,100,104,108,91,107,106,116,112,103,94,100,136,104,107,92,91,100,102,109,109,104,120,117,105,104,108,99,110,110,92,77,109,105,106,103,116,115,101,104,105,104,111,109,105,106,108,96,107,101,106,97,103,96,109,117,104,104,101,107,97,105,102,109,100,113,102,113,101,94,113,96,111,107,99,114,106,121,99,112,112,110,114,111,99,113,106,102,109,112,100,105,108,105,94,106,102,103,113,114,100,101,101,106,100,107,102,101,98,96,100,104,107,101,116,97,102,102,102,96,96,105,118,107,95,96,99,112,104,100,88,104,113,99,119,112,101,116,103,103,97,100,105,104,104,100,110,105,102,102,124,102,98,107,102,108,104,105,107,113,105,101,96,113,106,108,98,108,103,108,104,108,111,107,102,103,104,98,114,108,97,89,107,97,99,104,111,100,117,105,102,98,111,112,113,120,102,103,100,101,106,95,110,133,90,92,95,95,107,107,106,104,96,108,110,99,87,110,97,103,108,102,113,99,101,107,103,102,97,103,106,86,111,89,94,110,116,107,106,101,104,99,103,84,98,98,98,110,105,103,102,113,96,107,117,107,98,106,106,106,103,107,103,83,102,117,98,107,102,99,99,102,107,109,103,102,96,101,96,107,104,100,115,99,101,95,106,114,95,95,96,103,107,108,106,113,108,107,100,104,104,111,109,89,103,111,108,101,96,104,94,99,104,95,94,109,91,109,106,100,105,100,103,106,104,104,107,96,111,97,86,103,98,99,117,105,104,85,101,109,101,107,108,104,98,102,91,107,106,106,89,111,113,110,92,117,106,89,101,98,108,100,101,95,101,103,107,106,75,106,103,105,105,99,96,106,97,103,99,92,105,103,100,87,106,95,120,106,99,102,105,108,104,101,110,111,104,108,101,108,100,99,106,106,95,100,106,107,99,100,116,102,117,109,100,104,102,113,118,110,110,101,104,93,110,104,105,111,107,111,100,95,77,87,81,99,110,99,97,116,111,108,94,105,106,111,98,103,106,104,109,99,100,110,110,110,110,101,103,103,88,103,102,111,108,103,104,99,104,100,91,96,109,107,98,105,101,101,98,101,116,109,108,109,99,100,108,103,98,97,91,113,102,108,99,105,102,105,107,107,107,104,110,88,101,104,106,102,107,112,111,105,93,92,113,102,99,107,107,102,94,94,104,101,100,112,88,118,92,105,99,90,91,107,103,110,106,100,95,103,104,98,108,107,104,99,104,100,104,117,99,101,99,105,80,79,100,106,108,108,111,95,108,102,106,103,95,101,107,91,94,81,95,117,105,99,102,91,108,106,113,100,86,103,92,97,115,114,88,109,94,111,103,106,98,105,89,95,94,103,98,98,111,98,111,102,101,108,99,96,99,87,106,97,100,103,99,107,110,112,79,101,110,102,110,101,89,107,87,94,106,113,98,99,121,105,102,106,104,109,103,114,110,98,109,102,105,112,121,86,106,106,103,96,93,112,101,101,100,110,102,117,95,105,96,96,103,110,114,115,114,95,106,93,112,102,100,98,111,104,99,104,83,94,105,99,94,109,98,107,105,103,100,96,99,103,98,104,98,87,119,113,94,115,109,108,88,106,105,105,100,104,103,113,101,103,110,105,97,99,105,106,110,99,113,119,104,105,98,100,103,102,99,104,103,107,104,107,94,97,119,94,93,100,98,105,93,101,109,105,107,109,108,96,108,112,91,113,104,94,97,121,105,99,107,103,99,103,102,100,103,109,102,99,109,106,98,105,93,98,107,99,103,106,116,105,92,107,103,99,95,90,102,112,103,102,86,101,101,97,99,115,105,106,117,99,97,100,87,105,110,88,120,108,101,103,97,101,107,92,108,98,101,109,94,96,100,92,94,104,116,99,97,99,105,95,141,110,98,103,105,103,109,100,105,100,102,110,106,99,96,99,96,92,97,103,109,92,115,111,108,94,96,120,97,96,104,113,120,103,116,87,107,89,95,100,101,93,106,99,105,105,100,98,98,117,95,109,101,96,112,98,87,105,108,105,107,101,112, +460.68372,97,103,105,101,86,103,91,81,93,99,87,104,104,111,93,84,93,103,104,68,98,96,109,103,108,90,113,104,100,112,117,105,87,107,123,102,102,92,98,88,101,97,97,82,102,109,102,113,87,108,100,96,97,98,112,106,108,101,104,97,99,102,92,87,95,100,106,113,120,91,114,99,101,112,93,100,102,102,97,109,109,95,96,109,104,94,104,102,96,94,96,94,119,102,100,105,93,92,103,108,84,107,117,91,108,113,101,97,102,104,99,104,106,96,104,87,89,105,110,100,93,105,106,111,110,93,106,85,105,101,96,64,90,100,112,107,101,109,102,102,121,102,104,124,98,99,108,109,99,105,95,100,109,92,106,94,92,102,106,98,101,110,100,106,112,105,110,102,110,114,99,104,99,107,103,100,109,103,102,103,101,98,99,115,103,95,98,99,102,106,94,104,107,107,110,103,96,101,115,95,98,106,99,96,101,105,107,87,109,107,84,108,104,116,109,102,88,104,101,103,116,109,109,110,85,116,113,109,110,106,91,106,103,108,111,101,105,101,97,100,108,109,110,107,103,96,100,109,82,90,106,102,97,107,93,112,106,106,93,103,96,100,114,84,101,98,101,102,109,114,119,102,104,102,109,109,111,114,101,99,109,109,98,104,111,95,103,101,119,99,99,93,94,102,109,95,114,104,109,97,105,98,98,90,100,103,105,111,105,102,120,105,110,110,112,100,99,104,104,96,98,97,91,111,102,101,87,95,116,115,105,101,105,109,96,105,102,106,102,109,112,95,104,95,110,103,114,99,107,97,95,91,106,106,107,102,109,99,113,98,95,67,87,106,94,104,104,104,100,102,105,100,113,105,107,101,104,95,100,100,80,102,101,106,105,105,109,92,96,106,87,92,102,118,112,105,92,100,106,110,106,98,116,106,105,104,94,108,105,100,104,96,106,114,101,106,104,109,100,99,101,100,112,98,106,109,105,98,101,112,98,106,108,103,103,107,99,106,101,79,105,93,102,106,95,109,106,112,92,113,98,96,108,103,102,102,104,102,104,117,103,99,100,115,96,101,101,105,107,106,104,101,97,104,106,120,103,107,110,100,90,100,107,94,100,100,105,91,91,113,106,104,112,97,99,111,99,107,104,104,113,101,93,107,107,95,93,102,106,101,110,101,103,100,113,94,105,108,105,106,108,117,108,108,113,101,95,104,105,103,101,91,98,104,122,112,98,99,100,116,99,106,99,103,103,108,109,95,115,68,109,105,91,102,100,105,91,95,101,100,114,105,100,98,102,112,103,116,96,99,92,114,109,102,110,101,94,97,107,112,104,93,110,95,105,104,107,112,117,106,109,103,101,99,109,108,95,63,106,103,98,123,98,106,99,103,92,93,96,100,100,96,114,101,117,108,81,105,110,97,96,101,98,100,103,105,100,113,97,104,102,103,95,101,94,108,107,98,102,109,94,108,106,102,112,102,131,86,106,79,95,114,113,99,106,112,101,105,105,106,107,112,93,85,103,98,113,90,99,108,99,107,109,111,117,107,97,92,116,107,105,110,122,102,99,98,90,108,112,97,101,103,102,108,94,104,98,100,98,101,104,112,103,99,113,105,89,128,101,91,103,114,110,107,106,105,95,89,107,102,104,108,121,108,109,95,99,106,94,112,104,104,93,96,108,95,100,97,104,95,105,88,101,108,105,105,113,103,100,103,105,99,101,94,103,93,98,97,113,95,112,102,95,105,93,110,90,123,104,91,114,109,110,95,102,105,118,106,101,91,108,113,106,112,94,109,103,102,103,94,103,110,109,104,98,83,103,98,101,99,100,108,92,102,126,99,105,105,94,97,102,107,108,108,102,99,95,101,108,91,104,116,107,104,112,105,101,106,117,105,107,104,106,110,99,109,103,107,109,102,101,98,115,76,90,92,112,79,96,100,101,94,94,109,110,105,107,91,102,94,108,100,99,90,102,107,87,99,111,121,84,101,103,110,97,98,92,97,106,99,102,100,104,117,104,116,98,122,108,102,100,116,95,95,106,99,107,106,107,104,98,115,95,96,114,100,110,104,96,102,105,103,106,96,99,90,112,103,103,107,102,112,83,97,111,104,104,105,100,102,106,108,101,96,71,95,90,83,108,94,107,106,102,111,99,111,106,87,102,105,98,97,102,113,103,96,112,104,94,92,109,103,97,117,101,105,100,94,103,106,108,106,105,103,107,105,95,83,102,100,104,107,107,98,109,102,101,104,105,100,99,104,96,95,105,100,106,94,106,103,102,99,101,89,105,107,90,108,97,101,94,98,117,101,109,82,102,107,104,78,107,100,99,105,102,102,99,117,111,80,96,90,107,102,112,98,103,99,110,93,104,117,104,107,95,91,100,99,107,112,106,104,98,100,123,104,100,104,116,92,95,61,97,116,102,109,82,98,104,110,96,94,96,93,98,109,92,99,88,95,82,89,107,111,113,100,100,91,103,102,114,101,104,107,107,98,83,92,110,108,102,85,99,102,99,97,109,118,97,105,117,110,99,107,113,112,104,116,91,104,113,91,100,106,114,89,112,110,116,94,114,108,94,87,109,106,97,107,83,95,101,112,97,102,92,108,108,102,111,99,109,112,115,120,106,102,106,102,99,107,105,100,101,105,108,110,112,107,113,106,103,102,104,106,99,95,96,104,118,107,83,103,105,110,102,107,101,109,95,107,107,101,110,101,116,114,101,100,98,103,101,110,109,113,99,104,103,100,102,100,116,102,104,97,122,110,116,109,111,101,108,98,94,113,93,109,107,110,112,108,105,107,97,111,107,104,98,105,108,107,91,112,104,93,101,98,107,108,103,98,103,114,120,109,104,97,99,112,96,109,95,115,110,104,103,108,106,103,98,95,123,104,107,116,115,110,107,94,108,103,102,113,112,99,117,98,109,101,101,95,113,107,85,106,97,100,97,107,102,101,111,111,92,113,108,117,108,111,104,94,106,95,102,103,116,95,102,111,103,112,101,84,102,100,111,92,103,102,99,92,111,91,95,105,105,110,106,101,95,98,110,107,116,102,103,110,108,103,110,103,98,113,110,106,89,112,110,93,101,102,108,105,98,100,117,114,110,99,95,111,109,117,100,104,105,106,113,115,99,99,105,100,103,96,98,95,105,108,112,105,103,103,112,108,109,102,104,105,104,105,105,106,98,110,95,102,112,102,103,90,100,95,104,121,96,104,100,90,110,107,108,102,98,106,98,103,110,94,103,99,107,104,119,103,109,100,100,120,99,105,107,91,106,99,100,97,115,100,99,101,108,103,110,104,112,111,115,111,100,95,108,103,106,112,109,100,113,96,104,99,100,108,99,91,99,100,107,88,95,100,105,105,107,99,98,103,106,99,113,98,107,120,100,108,98,100,107,97,113,123,109,103,104,103,95,98,103,95,106,105,98,102,100,99,92,97,112,118,106,97,90,96,112,106,101,98,112,99,118,97,108,104,106,95,103,106,111,99,116,126,99,98,113,110,103,112,101,101,105,108,102,98,107,108,98,91,111,81,117,112,112,103,97,103,87,91,92,95,103,104,122,105,100,107,109,111,108,89,106,109,96,102,96,111,101,108,101,120,104,104,91,103,101,110,97,91,112,98,102,111,103,111,121,99,109,102,103,107,113,112,117,115,116,100,100,100,113,100,101,107,112,119,100,100,114,100,102,101,108,96,111,94,109,110,115,111,116,105,112,104,109,96,102,104,111,101,106,117,115,105,117,101,98,98,103,105,113,108,104,108,116,105,106,105,116,99,100,100,117,100,94,108,108,141,117,109,109,98,98,92,109,93,102,94,106,109,101,117,103,121,104,99,107,96,105,109,93,106,107,98,91,120,102,103,110,104,105,71,100,104,105,110,114,115,112,97,106,102,115,99,115,89,110,114,113,94,100,107,107,103,101,106,101,100,94,112,105,99,103,101,113,107,103,119,112,104,102,123,102,107,106,105,94,98,102,100,100,101,95,121,105,104,94,103,110,103,100,108,106,96,107,101,101,96,102,114,106,100,109,107,105,110,111,106,109,106,93,105,102,97,108,107,108,102,96,107,98,115,106,96,88,102,106,96,107,111,94,109,99,108,109,103,95,109,99,114,104,103,105,103,100,98,108,101,91,97,109,105,104,105,116,102,112,82,96,108,108,118,104,87,109,96,96,103,111,94,97,104,100,96,104,100,103,103,110,110,116,108,111,99,112,100,89,105,112,100,116,115,98,99,97,91,117,117,90,101,107,103,100,109,99,113,107,103,80,106,110,101,102,98,122,108,106,94,103,104,118,110,100,99,107,98,109,97,103,107,112,99,108,116,98,104,108,119,101,113,98,116,112,113,114,114,102,119,104,107,107,104,113,113,92,115,100,91,100,110,106,108,97,103,94,109,98,93,112,115,97,108,117,97,101,106,105,104,110,107,95,99,87,110,104,96,111,100,105,104,105,101,104,102,105,101,110,94,107,100,113,106,97,113,104,108,100,116,98,101,104,101,110,101,103,101,104,108,98,108,88,111,102,98,101,111,102,116,116,121,117,98,109,95,114,111,108,103,113,102,108,102,110,101,102,92,97,112,102,117,104,102,102,106,92,107,95,108,113,122,100,112,105,135,104,97,102,119,84,103,102,94,111,99,102,98,104,100,104,99,108,102,110,115,108,93,102,112,104,119,100,102,99,110,104,105,116,114,103,104,112,116,107,106,100,93,106,100,116,97,102,91,113,106,99,104,103,109,102,108,105,109,98,103,107,106,101,93,110,103,106,100,105,116,97,105,103,111,93,102,101,106,98,110,123,101,94,105,103,110,92,99,104,109,102,105,91,104,98,101,99,109,101,107,99,95,98,105,100,92,110,108,100,109,120,102,105,93,108,86,110,90,98,109, +460.82416,107,110,92,106,87,109,105,94,95,86,105,95,94,96,109,103,98,125,97,93,103,113,98,103,92,94,98,97,98,108,111,101,125,132,107,97,93,94,103,107,107,101,97,93,100,109,104,103,103,101,87,98,109,116,106,95,96,92,110,95,94,96,109,109,96,104,96,100,105,91,113,106,103,99,96,108,105,113,101,98,97,113,117,115,98,100,100,96,101,104,107,107,101,98,88,108,92,96,94,103,94,109,95,97,110,87,93,106,92,110,105,113,96,92,86,109,101,111,108,86,100,94,98,105,104,103,101,85,107,100,120,105,104,101,102,101,89,108,99,104,91,111,98,95,89,96,102,100,97,101,89,105,103,100,95,99,94,100,88,111,105,96,103,98,96,100,102,113,97,94,96,102,107,96,108,110,91,100,100,109,94,108,97,96,113,97,103,95,106,100,102,100,90,99,99,98,96,96,106,101,109,106,130,96,106,102,103,102,105,114,98,107,84,113,103,108,105,107,94,94,117,104,102,94,95,111,111,104,110,114,109,104,104,106,113,99,106,101,97,107,110,102,107,107,103,100,102,113,99,101,105,106,75,103,98,98,99,113,96,99,96,111,101,117,96,110,97,109,116,96,97,114,95,108,105,112,114,111,107,99,98,106,101,100,100,101,104,102,101,100,88,108,107,110,105,112,108,96,90,96,100,97,92,98,99,101,112,100,91,90,99,104,86,114,95,96,113,103,109,99,97,99,91,104,102,106,93,98,110,113,119,97,100,99,104,97,104,101,87,101,109,105,95,101,101,106,106,106,112,102,94,113,105,102,120,98,102,100,111,125,101,101,105,105,87,109,98,100,110,111,73,99,106,103,95,100,99,107,105,105,99,106,103,102,90,99,97,84,94,104,103,88,101,116,97,108,98,101,99,101,108,109,103,105,96,96,103,108,101,108,100,94,105,112,105,97,105,90,106,103,109,101,101,107,119,103,98,96,101,105,100,108,101,84,106,100,83,116,98,105,121,111,97,111,105,106,99,94,101,108,102,97,105,111,107,104,98,111,102,92,100,97,102,117,105,104,102,94,98,105,109,96,95,104,93,101,101,110,104,94,97,110,107,91,109,99,105,79,103,104,104,92,100,93,88,99,102,88,111,103,106,91,96,106,110,110,103,110,105,109,113,93,100,94,95,107,105,106,96,86,115,106,114,104,102,95,109,97,92,99,98,106,100,99,107,103,111,106,91,103,114,105,109,114,101,95,104,100,106,98,98,92,100,105,97,93,119,98,104,97,96,103,94,111,95,89,118,106,92,98,100,82,96,107,92,93,96,85,99,99,99,99,112,109,102,100,110,114,101,94,98,108,102,104,96,106,89,98,100,105,107,101,106,101,105,92,113,99,101,99,86,102,104,103,100,94,104,102,116,112,117,107,110,104,103,111,109,97,106,100,101,106,118,110,95,101,105,86,101,104,111,117,98,101,108,113,97,97,97,107,103,87,96,102,111,90,102,106,104,104,110,109,98,108,84,98,102,101,136,109,92,95,100,91,107,104,126,101,95,95,103,101,101,97,104,102,91,84,104,91,100,121,97,107,87,105,98,95,94,107,113,97,103,101,111,97,103,87,109,104,104,96,106,104,92,91,102,98,101,106,103,110,109,105,89,119,102,108,98,105,114,98,94,101,117,105,111,104,100,99,100,105,105,102,100,99,107,103,102,113,105,99,106,106,113,101,102,112,99,107,94,97,112,87,96,115,98,111,94,96,96,92,104,91,106,102,97,85,94,100,105,100,106,109,94,116,86,108,92,91,95,102,99,96,98,112,117,74,104,122,100,107,97,103,96,99,102,99,103,94,110,102,106,97,107,109,108,101,102,98,98,92,99,107,107,108,101,94,106,110,106,98,101,108,111,102,107,106,102,103,90,102,111,103,109,100,100,100,95,93,109,107,121,97,108,94,98,104,103,121,98,100,110,111,97,113,107,114,109,103,105,102,91,95,100,94,109,96,112,100,102,124,105,111,99,101,101,100,106,100,110,103,114,111,91,103,119,108,101,106,95,108,110,105,95,103,92,100,107,107,117,104,99,106,117,101,100,104,102,100,106,93,90,98,100,103,91,109,110,114,93,91,106,107,101,110,98,96,105,105,102,103,104,118,105,102,107,117,103,96,99,115,112,105,107,100,114,96,86,102,121,109,98,91,115,101,101,108,102,100,99,95,107,92,109,113,110,99,102,100,94,106,94,99,101,105,94,95,103,90,105,118,95,100,101,106,89,105,114,106,100,91,106,106,120,103,103,105,99,99,100,106,104,102,101,112,98,97,105,105,110,104,107,89,109,105,108,102,99,89,95,113,113,85,99,97,99,103,116,96,106,107,76,96,102,94,107,106,109,96,103,103,100,101,105,110,97,95,90,109,102,103,94,108,101,95,108,105,98,100,93,118,105,106,98,93,92,94,101,106,98,102,98,104,101,102,104,91,89,123,103,99,95,102,102,91,109,97,107,104,104,86,103,99,119,101,113,100,106,107,103,109,113,99,96,95,104,111,102,121,111,109,106,94,100,117,107,104,107,117,109,105,94,111,113,103,106,107,97,58,108,93,107,106,113,115,105,113,98,109,117,98,111,101,109,110,106,103,92,97,95,88,102,110,106,106,105,90,125,101,113,98,99,108,102,109,108,110,110,112,105,110,105,113,93,102,118,108,121,114,83,97,110,120,102,107,110,102,106,114,95,109,107,105,105,107,106,111,100,101,99,107,96,110,97,108,110,105,102,100,106,107,121,104,106,104,103,101,100,113,104,109,108,119,87,102,114,102,105,110,108,112,111,100,96,100,103,110,107,105,100,103,119,96,99,106,113,103,92,117,118,119,109,95,102,115,120,106,109,120,107,105,107,117,112,98,94,101,112,110,109,104,98,99,103,104,98,97,97,111,105,120,96,121,101,100,98,95,108,118,115,109,100,115,103,93,102,119,105,109,102,100,97,98,119,111,113,108,109,105,104,108,96,112,108,99,116,102,111,91,96,83,111,114,103,109,104,104,111,113,96,108,100,97,117,100,101,94,112,91,106,108,98,106,131,107,102,110,102,111,106,105,94,108,113,113,113,115,85,108,105,103,105,105,103,95,100,109,115,101,100,103,111,96,97,111,91,99,104,102,103,105,96,106,93,110,100,97,103,108,102,112,112,110,97,101,99,102,109,114,103,102,119,96,102,102,95,106,103,105,105,93,104,95,95,103,106,93,108,105,99,116,90,111,99,107,103,104,106,110,105,103,100,98,110,101,94,72,94,87,96,115,99,104,110,127,102,102,91,109,101,109,101,116,107,104,103,96,112,105,99,104,113,111,96,102,104,96,100,113,108,108,106,111,103,112,106,104,108,123,98,97,99,106,104,105,105,109,108,96,89,99,120,107,102,107,105,105,102,102,106,100,110,99,99,95,116,98,98,105,95,89,117,111,103,117,111,92,107,104,120,103,104,107,103,103,73,113,109,89,105,103,98,106,100,99,93,112,104,102,101,102,109,99,100,104,101,106,107,107,123,102,112,103,117,108,103,98,109,112,113,107,101,122,98,98,107,107,98,100,133,109,98,115,104,103,70,110,107,102,92,96,108,108,110,101,112,90,108,98,120,106,119,105,113,102,102,102,101,115,102,112,106,104,99,109,110,107,70,97,110,116,108,105,102,106,102,119,99,94,102,104,98,102,107,109,106,110,111,113,95,104,92,103,103,108,106,96,109,121,108,106,105,93,105,117,99,104,107,112,111,113,112,105,107,108,111,100,96,93,96,105,99,111,101,106,109,112,100,102,105,116,106,102,113,98,95,93,90,105,101,98,100,107,99,108,102,100,115,98,113,108,107,109,99,110,100,107,97,104,112,110,118,99,110,97,106,108,116,105,100,113,117,101,102,99,103,100,113,102,121,100,118,107,111,119,102,101,121,99,97,110,109,112,98,106,110,101,96,113,105,101,106,104,122,107,100,110,103,110,99,108,108,111,100,99,109,96,106,112,109,106,110,107,100,117,117,106,118,103,103,102,102,109,102,108,114,108,98,106,107,91,111,113,97,112,100,102,108,102,103,107,96,100,105,109,106,108,111,101,109,117,107,97,120,110,103,100,102,115,88,108,105,118,104,100,112,94,97,112,100,94,104,99,106,111,104,105,97,106,109,111,113,98,110,95,96,109,107,116,122,112,117,97,103,104,113,101,109,109,101,96,95,105,100,97,108,105,98,103,101,101,111,90,98,102,97,115,95,107,100,107,98,103,113,110,110,98,110,118,94,99,91,102,104,88,109,109,106,109,109,95,102,101,117,117,99,103,107,106,99,99,108,120,104,90,102,100,108,103,109,86,112,102,116,103,113,116,108,71,133,120,109,117,101,107,97,117,106,119,96,106,96,93,94,99,92,106,112,102,113,97,100,99,95,101,101,109,101,108,102,113,101,108,102,99,99,94,102,92,104,102,80,98,111,106,70,101,98,99,102,109,103,104,89,112,110,110,98,102,103,95,85,105,99,97,99,106,102,102,90,104,106,102,97,101,91,107,104,104,87,121,103,103,111,81,111,106,98,103,102,78,102,109,110,110,94,109,101,100,105,107,106,103,96,99,107,100,102,101,105,105,94,108,105,107,112,114,103,99,98,96,109,103,106,103,103,103,118,92,108,115,91,101,103,98,103,105,104,94,112,106,95,98,87,104,108,108,87,104,68,96,107,105,112,112,98,94,107,103,86,104,83,102,91,79,85,98,104,105,105,107,104,104,108,112,109,110,106,106,110,95,108,110,106,104,108,113,100,102,106,104,86,99,107,98,101,105,93,104,111,104,86,101,93,101,109,107,103,102,100,96,112,83,101,109,105,111,100,100,110,99,90,86,105,89,102,123,93,96, +460.9646,105,99,108,117,95,100,100,96,96,96,97,106,101,108,100,94,104,115,110,98,118,98,100,105,97,102,109,94,107,109,116,111,104,109,104,99,107,95,106,98,104,103,103,103,98,100,98,92,103,111,110,101,108,102,113,90,101,96,101,96,96,102,114,104,99,115,98,104,95,96,101,96,92,110,105,110,99,101,124,100,100,100,98,96,77,81,105,106,122,101,110,113,96,114,101,88,107,101,99,98,97,92,99,104,97,108,93,101,106,107,108,102,105,113,101,112,104,107,106,109,109,64,106,109,106,104,95,95,103,109,101,110,102,98,89,100,100,101,105,98,87,105,91,114,103,100,115,93,109,99,104,98,109,105,105,91,105,102,86,91,96,107,102,90,109,105,110,110,119,94,99,123,109,100,108,111,107,100,106,85,104,102,112,99,105,105,103,88,106,94,106,99,88,100,109,99,117,97,108,97,105,102,110,97,104,101,104,112,108,108,109,109,99,94,87,107,102,98,101,96,102,100,96,98,103,101,99,104,102,114,111,118,107,83,103,99,96,107,105,98,99,108,105,96,113,103,109,88,109,127,109,110,88,108,101,105,109,102,96,93,105,102,105,97,97,98,108,97,104,98,106,114,114,102,103,96,108,107,119,109,112,108,109,105,104,109,100,112,96,107,112,101,127,106,108,112,98,103,113,108,109,103,106,102,82,104,112,116,99,110,94,108,98,98,110,99,97,106,101,114,106,111,100,104,94,105,100,107,107,92,99,104,96,103,105,108,110,99,105,101,98,99,106,99,99,95,98,100,107,100,107,105,107,98,108,106,101,108,92,103,88,95,104,101,93,98,109,107,97,111,100,98,108,104,113,101,106,113,118,106,106,102,91,94,96,104,101,107,103,102,84,97,94,98,113,93,101,98,105,105,107,99,102,113,101,101,67,113,108,87,78,101,105,98,107,102,98,113,107,101,108,118,98,107,103,96,100,90,104,114,90,106,102,101,100,99,100,106,108,120,111,99,113,109,101,104,105,111,115,108,102,106,106,100,106,102,95,103,89,112,100,112,97,109,107,105,117,103,107,102,103,100,99,106,105,98,96,108,98,111,107,95,113,105,98,106,112,96,100,109,102,113,105,112,103,108,104,104,106,90,96,112,100,100,112,104,96,106,99,103,98,112,95,113,95,105,104,107,116,102,98,123,113,107,101,103,128,106,100,108,100,104,98,98,109,110,109,95,106,98,103,105,95,112,109,106,100,103,100,107,92,104,99,127,110,104,109,108,100,98,105,107,117,103,99,99,83,95,105,92,117,102,96,110,98,104,98,100,92,71,110,103,110,109,101,91,109,110,115,94,96,96,109,100,101,103,96,107,106,97,103,100,102,107,105,107,95,91,82,107,109,113,106,112,100,89,104,108,99,101,98,96,106,89,104,95,94,99,97,107,105,108,116,104,101,106,92,126,95,101,95,118,113,103,113,95,100,97,103,109,88,101,107,119,113,107,100,100,105,118,95,106,104,105,83,90,113,103,115,102,100,108,108,104,104,108,81,106,102,100,87,111,109,105,104,102,99,97,109,103,104,105,113,90,107,90,106,98,106,103,102,102,99,108,104,103,105,94,91,100,103,106,106,115,106,92,107,97,101,94,102,91,107,123,105,100,83,110,94,122,111,77,92,102,102,93,110,96,89,113,105,98,107,105,101,104,101,104,103,108,104,97,117,82,109,67,118,109,107,109,109,93,104,104,96,102,102,101,99,108,102,105,110,112,109,116,105,113,96,103,87,96,106,102,74,105,105,106,107,97,108,102,91,106,102,107,88,102,101,107,101,102,97,95,102,101,108,108,103,68,111,72,111,86,110,112,108,103,103,107,101,101,112,110,106,112,99,106,107,104,111,111,114,106,113,113,109,108,105,114,100,114,101,98,99,105,109,103,70,90,91,93,95,124,94,109,88,100,107,99,99,99,104,107,109,111,103,112,104,103,122,113,96,111,101,110,103,101,98,95,90,105,103,101,110,98,102,110,101,99,99,98,104,113,105,100,100,102,68,107,95,108,108,106,95,100,98,117,111,109,111,95,95,113,105,99,93,87,100,79,114,102,107,104,116,94,106,107,101,115,103,98,104,118,104,100,106,92,102,99,100,113,102,99,113,128,107,108,99,100,117,104,114,108,108,103,114,99,110,103,101,103,97,109,107,104,102,105,103,114,106,97,100,103,100,108,108,97,98,109,109,112,99,99,104,113,97,94,107,86,96,109,97,107,100,95,125,97,98,88,99,100,101,104,108,109,99,107,100,104,106,110,104,108,84,106,106,100,94,102,100,113,120,92,101,103,103,85,105,102,95,109,105,101,94,93,101,109,110,101,111,103,95,107,99,104,90,104,109,115,97,94,106,102,108,109,102,98,106,106,104,102,92,106,87,100,97,109,103,110,102,118,110,97,110,92,99,107,98,96,100,96,105,104,105,98,94,95,105,107,104,112,98,100,103,117,103,97,111,111,106,91,111,99,96,111,109,100,112,105,109,131,104,96,109,111,105,110,99,110,113,103,95,106,106,91,121,107,103,94,123,115,113,103,113,103,93,104,99,99,85,99,87,106,104,111,106,109,116,101,113,104,100,112,103,94,105,98,104,103,104,91,107,88,99,91,103,104,113,94,100,109,102,103,112,119,102,99,97,94,111,104,101,114,109,109,103,104,115,113,113,97,118,116,99,111,112,97,103,96,107,115,113,117,115,83,109,103,110,94,99,111,102,107,112,106,104,109,101,108,115,117,117,105,111,101,109,107,104,102,105,108,96,119,105,101,110,103,102,104,110,106,103,107,101,106,93,107,111,97,101,100,100,117,102,108,118,106,98,116,104,113,100,106,100,110,103,104,105,107,118,91,115,107,109,94,96,112,118,104,113,112,104,103,105,105,108,104,120,104,109,117,98,106,112,99,104,105,107,115,113,104,105,109,114,114,106,112,106,79,106,103,75,97,99,96,90,101,108,99,107,105,109,97,117,120,113,107,107,102,108,97,116,116,104,98,111,108,103,112,106,105,99,114,113,98,121,103,107,97,107,98,95,107,103,107,113,99,111,92,107,108,110,110,101,106,98,96,95,102,112,97,106,111,104,95,108,106,104,103,104,94,104,106,109,111,104,95,99,101,103,108,107,100,104,114,95,103,102,112,108,103,98,102,96,117,114,106,104,100,87,108,101,98,109,98,109,120,109,100,122,102,94,90,110,92,94,99,113,104,104,117,124,112,96,91,102,108,104,96,109,104,99,97,107,100,101,98,107,93,96,108,103,114,103,100,121,113,105,104,107,111,103,115,108,102,113,117,105,119,94,104,101,95,103,101,112,112,108,94,105,111,113,95,94,101,99,96,108,108,105,104,98,115,95,117,97,111,115,99,104,107,107,111,99,98,105,99,95,108,91,94,82,105,102,108,92,107,95,108,112,117,103,92,88,95,99,88,119,100,110,118,117,103,100,99,116,115,99,101,104,91,105,107,97,99,103,101,113,96,103,98,104,114,91,107,102,102,98,79,107,97,99,104,111,103,113,77,101,113,92,103,106,104,94,108,114,98,91,102,109,99,102,108,104,106,112,91,102,99,92,104,108,102,103,96,108,109,95,124,93,110,113,96,109,106,101,98,90,95,121,101,107,105,110,106,104,106,103,96,96,103,113,95,96,107,102,116,103,101,109,85,108,98,110,101,80,85,103,106,104,117,110,102,101,81,106,109,121,96,110,97,98,106,104,104,90,96,110,103,114,97,98,112,98,111,106,93,106,97,98,103,107,115,100,96,116,112,95,102,98,104,99,102,110,96,92,114,97,105,90,111,105,91,103,108,115,95,105,98,100,99,118,108,103,126,104,110,102,102,104,107,110,90,99,92,111,95,106,104,105,114,106,106,104,113,110,104,101,116,103,102,116,106,101,103,111,112,100,108,109,112,100,109,100,109,113,98,102,100,103,104,98,117,109,99,106,104,103,99,108,101,89,120,107,108,103,99,102,106,92,107,100,106,110,88,102,102,108,100,109,94,101,102,104,98,99,107,113,89,107,105,99,92,102,98,87,109,94,106,108,117,124,121,101,108,98,96,99,113,109,104,120,104,96,103,114,97,105,108,91,113,106,92,99,107,116,104,102,115,107,90,99,107,120,106,115,119,114,113,109,101,114,101,102,106,91,106,106,98,109,97,119,101,99,105,98,91,116,104,91,110,108,89,104,106,111,110,102,109,99,88,98,110,97,112,101,104,97,94,96,106,115,107,104,109,122,100,102,106,100,102,106,106,96,114,108,103,97,107,108,99,94,99,101,105,99,105,90,100,103,95,99,98,97,110,98,111,103,112,104,107,106,98,102,104,120,111,102,98,82,117,99,96,95,111,103,114,103,104,97,96,105,104,102,110,103,114,108,105,86,111,96,95,99,98,92,100,103,106,99,112,101,105,116,102,92,111,103,107,93,88,99,102,109,110,108,106,101,131,101,106,102,122,118,108,106,96,98,104,101,96,107,90,110,99,110,105,106,91,107,108,103,99,106,101,109,110,105,100,110,89,102,100,113,106,118,110,95,103,99,102,95,110,106,112,106,94,113,106,101,100,103,113,102,104,95,103,107,98,98,108,117,106,108,108,107,109,106,104,105,106,94,95,99,108,98,101,99,98,92,102,91,111,106,101,102,97,107,111,109,117,111,121,113,103,103,103,86,99,94,104,97,106,115,115,98,81,117,102,89,107,105,92,83,95,97,111,106,108,100,107,105,102,106,90,109,102,96,115,104,96,109,106,114,102,103,107,98,107,105,104,113,113,100,95,98,96,99,101,125,107,115,113,98,115,93,94,108,97,93,107,105,89,98,108,119,125,114,100,107,103,86,107,102,101,98,89,101,113, +461.10504,101,98,105,94,99,105,104,101,74,103,103,96,91,109,88,92,104,75,110,98,92,101,91,102,99,103,101,109,109,96,101,103,104,105,114,103,102,91,110,108,103,103,100,110,101,111,106,116,97,99,113,107,84,98,105,96,101,91,124,102,109,110,94,122,99,110,101,102,104,100,88,108,121,94,99,103,101,121,99,113,114,114,114,105,97,93,109,106,102,106,118,102,105,100,106,107,89,118,117,107,111,103,88,99,115,92,98,100,107,96,102,109,102,101,105,91,95,110,101,104,95,97,97,117,103,95,103,104,108,103,98,97,99,103,110,111,102,104,97,107,115,96,100,101,93,98,112,114,105,74,88,102,99,97,95,111,113,100,109,109,98,115,113,98,113,112,137,101,100,101,112,126,99,101,101,100,104,97,109,112,111,106,108,95,106,99,104,109,98,115,103,106,105,109,107,98,104,92,104,107,99,118,103,124,123,103,85,107,121,112,122,110,112,103,112,98,102,110,107,91,108,99,106,102,99,118,105,116,103,95,94,105,95,118,113,104,102,95,99,107,128,99,96,101,94,84,99,108,108,95,105,110,103,109,113,105,102,95,105,96,76,108,104,101,92,106,103,105,115,101,99,94,104,98,112,103,95,112,99,102,110,102,102,102,108,108,108,106,114,91,107,115,108,102,110,108,100,103,104,98,118,104,105,104,84,99,134,96,105,113,103,102,102,110,103,96,102,113,90,109,100,100,115,107,116,109,109,103,119,108,112,102,105,115,107,109,117,99,101,106,72,109,106,108,103,102,109,107,100,105,107,108,100,113,103,113,112,99,100,107,108,114,96,101,105,89,116,96,103,82,106,104,108,94,116,99,104,106,103,113,109,112,111,106,112,106,106,103,98,99,112,97,103,126,109,104,94,95,107,102,103,95,103,110,112,94,108,113,113,99,88,98,101,109,104,102,103,104,112,107,104,111,109,104,91,106,110,117,96,115,103,97,103,102,109,101,98,102,102,109,108,104,112,101,72,103,128,84,109,107,96,95,101,106,107,112,107,102,109,102,106,103,96,104,110,110,111,102,96,112,104,107,104,94,100,103,110,110,130,99,98,107,119,106,113,98,106,102,102,111,109,104,109,105,107,109,99,96,106,95,110,100,102,106,104,96,101,99,104,92,108,111,111,121,97,108,100,95,111,104,107,109,99,108,111,95,107,99,99,108,108,117,98,105,108,110,106,105,134,111,104,109,98,102,99,113,102,109,107,109,115,112,105,99,106,93,101,101,95,78,109,102,99,133,107,95,105,103,100,120,102,99,104,94,107,96,98,104,110,122,101,101,113,92,104,108,110,94,109,99,116,109,103,110,99,122,104,79,108,100,100,105,112,96,105,109,99,100,112,106,107,107,104,107,114,100,122,91,116,106,108,108,108,105,106,103,91,104,106,108,108,108,96,107,104,110,103,97,107,106,108,104,100,111,104,100,96,109,112,117,103,115,90,89,97,104,111,116,92,114,110,111,103,111,111,86,97,95,102,117,102,119,112,95,100,111,91,113,105,80,103,85,89,97,88,104,99,121,109,94,112,103,103,107,101,109,91,108,110,99,111,98,109,102,121,115,107,110,105,106,106,110,112,95,114,104,110,98,115,99,120,96,104,112,99,102,96,105,97,104,113,112,102,108,109,110,104,108,116,103,115,100,112,96,107,106,98,105,110,104,103,97,99,112,102,102,88,112,114,106,103,113,96,116,98,100,100,102,107,102,108,82,114,105,99,105,116,113,105,107,95,103,111,92,103,113,130,104,103,100,116,103,114,102,110,112,114,110,124,99,112,108,105,103,111,104,102,106,103,111,105,100,95,114,98,109,122,101,101,109,108,111,110,105,111,93,104,99,117,103,104,103,100,117,109,99,108,121,108,103,108,110,90,102,113,108,117,113,101,99,96,111,99,99,106,117,110,104,105,115,99,105,97,108,104,102,102,103,117,112,99,106,105,103,113,105,104,108,101,99,114,109,106,107,85,91,96,110,113,102,110,117,105,99,106,97,109,94,100,107,110,103,113,100,102,109,109,117,105,108,111,113,103,105,112,103,104,109,95,128,106,96,105,102,99,99,100,101,104,102,106,106,108,107,95,118,114,124,102,108,102,107,104,103,97,108,116,101,110,100,107,100,108,107,106,106,107,112,102,94,103,90,90,94,103,98,91,94,90,104,98,110,96,110,105,107,108,107,100,109,105,101,108,102,110,93,120,110,109,118,120,119,99,106,106,95,114,101,102,100,110,100,105,102,122,101,101,103,93,108,104,112,109,103,102,125,108,110,102,102,106,106,98,94,105,100,99,112,103,106,110,104,121,107,119,102,105,116,85,109,99,108,102,100,100,102,120,109,107,109,100,78,96,106,112,104,103,114,100,118,108,108,108,88,96,111,101,101,99,103,111,98,103,116,99,95,107,116,90,98,99,104,87,117,117,111,90,92,113,105,101,125,113,101,98,109,109,103,101,106,110,95,105,111,103,112,106,91,104,110,98,103,115,105,112,98,111,97,105,102,95,98,115,107,106,109,98,111,102,96,109,104,99,104,106,102,94,103,97,95,112,110,101,125,117,92,105,103,95,104,111,100,112,100,95,105,110,111,108,95,107,93,104,92,113,108,95,98,106,101,100,107,111,108,91,105,99,114,112,106,108,86,99,103,105,102,109,98,98,111,95,106,104,106,99,108,113,104,101,101,106,99,113,107,106,103,102,104,106,98,108,107,89,117,117,111,103,121,87,106,106,104,103,89,109,103,101,113,105,121,94,105,103,102,95,90,105,100,107,113,92,98,101,85,102,109,115,111,104,103,95,87,108,111,106,102,103,110,103,111,105,113,113,106,116,97,95,121,111,106,107,103,116,119,99,103,107,109,107,112,118,103,116,110,107,120,101,100,109,108,109,107,116,109,99,110,107,103,101,96,116,99,118,114,98,93,103,106,106,98,100,107,99,111,104,95,106,98,102,108,110,96,103,101,97,106,111,97,114,123,97,75,99,111,100,103,103,104,106,101,108,107,86,105,100,97,102,113,117,111,98,110,106,110,97,103,109,106,99,107,109,105,113,99,104,102,106,104,93,91,90,108,113,112,108,95,97,107,102,99,94,105,99,101,112,103,105,103,101,98,106,94,107,102,104,94,109,109,113,107,116,101,109,102,98,105,111,97,109,111,100,116,98,102,105,102,102,102,111,106,117,107,104,109,103,96,92,95,107,91,103,114,109,116,108,101,95,98,112,107,90,94,95,98,102,106,94,102,102,95,95,107,111,106,109,116,98,99,99,109,98,105,106,100,98,102,103,109,90,112,102,97,107,112,104,101,109,105,105,110,102,98,108,75,104,109,111,105,101,107,94,102,95,101,117,103,102,111,106,107,96,112,99,100,93,120,104,100,102,109,98,109,104,104,102,100,106,105,114,103,110,109,105,100,95,102,105,87,100,108,105,114,105,102,105,103,114,103,103,104,103,115,96,111,104,102,113,113,107,112,104,101,98,104,113,110,104,112,101,109,100,112,108,104,108,79,102,104,107,110,109,91,104,95,112,103,105,103,102,99,105,94,103,114,105,105,99,114,110,106,104,102,110,98,102,91,136,107,101,104,100,116,124,76,111,96,101,94,106,103,101,106,103,106,104,99,104,121,105,108,97,106,78,102,106,90,109,101,114,94,110,103,120,113,108,105,103,102,100,96,100,112,95,94,105,111,97,108,109,99,117,94,99,101,107,101,108,102,97,113,109,104,105,88,100,100,101,95,95,92,87,112,103,106,125,103,98,104,97,99,109,99,104,95,113,101,114,103,98,110,100,113,100,104,117,110,106,92,101,90,102,100,98,95,92,106,92,102,100,103,95,107,106,104,109,114,103,90,94,110,102,113,103,111,102,102,115,116,120,96,103,94,98,113,108,94,106,117,100,109,98,110,105,107,107,100,116,97,92,103,104,103,109,107,107,100,103,113,98,103,94,104,104,97,110,101,94,109,113,108,119,99,95,101,113,102,108,99,102,105,111,96,98,112,114,100,104,101,100,100,99,87,104,96,95,106,95,104,112,103,107,97,99,105,110,111,99,100,105,100,103,100,110,107,102,111,112,99,108,99,103,101,104,96,104,109,107,97,91,114,95,95,102,90,83,99,109,110,98,99,115,109,119,95,112,104,90,107,120,119,105,76,109,107,100,107,116,97,107,96,108,109,98,104,105,105,99,102,104,97,108,100,100,103,108,108,107,103,111,113,99,101,106,105,109,112,107,106,104,103,105,95,106,102,103,104,105,108,103,95,104,107,99,106,103,113,105,106,91,104,105,93,105,117,104,105,113,96,95,116,101,108,113,103,99,95,113,114,95,105,106,114,121,102,110,105,107,99,110,104,110,91,101,86,102,117,100,118,103,100,106,106,101,113,97,101,100,102,111,102,106,116,103,102,96,97,102,106,97,100,112,101,112,102,113,101,127,89,106,127,93,91,97,89,98,107,111,95,109,105,98,105,105,101,111,110,98,106,104,116,104,101,87,92,113,99,93,114,109,100,109,96,112,103,102,100,111,106,108,100,108,104,98,94,106,110,120,111,101,102,96,92,90,110,101,116,101,105,106,99,98,112,102,107,100,96,90,101,102,88,95,86,102,98,98,98,106,108,87,97,121,101,102,110,109,115,95,104,107,90,106,106,102,101,117,111,101,106,96,98,91,103,112,101,95,99,104,104,102,102,102,109,106,106,102,101,102,109,105,111,106,135,101,103,90,104,94,111,103,140,111,96,97,97,77,92,85,116,116,87,110,113,106,101,97,116,98,108,112,106,109,106,108,98,107,107,90,98,108,93,105,114,112,88,109,95,102,91,95,100,115,97,97,115,117,104,124,101,105,82, +461.24548,103,104,84,106,89,109,111,96,99,100,105,101,100,99,109,101,88,110,115,104,86,103,93,102,101,111,102,102,106,89,107,109,107,91,105,99,105,104,101,100,100,90,108,100,93,109,101,102,102,103,107,104,108,94,108,93,106,99,106,101,96,109,98,102,111,110,101,108,92,103,112,106,98,101,94,93,106,98,99,118,91,113,99,109,109,99,96,92,106,96,110,103,107,103,94,99,107,100,108,106,114,71,98,101,112,92,102,95,96,103,94,94,100,92,95,103,110,108,107,97,98,106,104,116,100,113,109,105,104,95,114,99,107,117,107,107,104,98,109,95,106,106,99,100,104,96,94,97,97,98,107,103,116,104,90,106,98,106,105,109,104,85,100,104,106,107,105,96,103,104,101,105,92,102,90,94,105,100,110,103,104,111,94,99,96,101,110,89,95,101,91,110,109,113,104,95,104,103,89,101,73,98,106,100,99,111,102,114,102,97,103,116,99,105,105,91,90,112,108,92,101,117,110,107,100,102,116,103,126,113,108,108,116,114,90,106,103,105,103,107,91,109,114,99,92,98,112,96,101,94,142,126,107,98,78,105,95,95,83,99,109,102,89,104,96,97,107,101,87,94,105,100,104,100,121,101,99,94,104,106,105,107,106,107,100,96,100,101,106,107,110,113,116,94,112,105,101,111,115,121,102,100,100,104,100,90,96,105,117,108,88,106,109,102,107,99,105,94,104,107,102,105,109,98,101,90,98,99,107,100,102,95,94,96,107,99,105,110,94,107,96,98,95,101,107,100,112,137,109,111,101,107,110,105,105,94,99,112,109,101,122,94,94,99,108,103,93,99,100,112,116,109,100,111,114,93,101,94,96,89,99,114,104,103,102,103,98,106,117,105,114,103,95,94,90,104,98,111,96,111,102,95,97,103,95,98,107,98,103,101,106,99,95,103,105,76,117,123,108,100,105,92,99,103,100,100,109,100,78,111,99,109,97,106,106,101,96,107,97,98,110,104,106,104,87,108,102,119,98,109,103,103,99,102,100,108,108,109,102,94,99,92,104,111,86,98,102,121,100,116,111,97,108,92,101,99,114,131,112,92,93,104,104,88,107,104,102,101,108,101,94,97,119,95,101,92,106,109,101,95,110,101,97,107,101,105,102,96,111,101,103,83,105,75,108,93,101,97,113,87,100,94,123,111,108,109,117,110,107,99,99,104,109,95,74,121,99,95,111,105,69,99,124,99,105,126,110,99,122,105,105,111,95,91,106,113,105,94,100,91,101,104,91,108,100,96,107,103,109,104,92,103,98,100,97,94,109,102,121,106,101,108,96,87,100,108,104,108,108,106,102,100,97,104,113,105,88,103,99,94,98,101,111,99,102,105,95,104,99,99,111,90,102,105,101,94,105,114,107,105,105,105,101,86,106,91,98,121,102,104,117,101,97,92,102,98,111,96,92,117,100,96,103,97,101,103,102,95,107,106,112,104,108,115,103,103,105,107,123,101,111,102,107,127,97,107,94,121,100,108,106,96,111,103,109,108,117,106,105,119,99,107,106,100,106,101,88,94,91,115,107,99,97,111,104,109,101,113,108,104,102,92,98,108,94,113,107,106,96,99,90,99,100,86,94,102,100,96,98,100,104,106,109,111,96,108,122,116,101,108,104,97,101,107,99,90,105,100,106,97,101,105,113,106,109,104,114,99,106,100,106,97,93,101,105,102,87,130,100,102,101,107,114,109,97,95,92,101,98,110,101,105,101,99,106,99,114,104,91,104,83,102,118,100,103,98,106,114,100,100,115,114,91,104,116,105,96,97,107,109,96,94,93,106,105,103,97,103,113,102,107,105,115,100,109,97,91,105,103,102,96,106,106,108,105,116,104,102,109,93,100,111,102,103,90,109,98,98,108,113,90,99,113,109,96,109,103,104,92,101,117,95,102,97,101,100,104,93,97,88,112,106,97,102,109,100,114,101,109,110,101,113,98,111,90,102,112,95,102,100,111,106,95,83,103,109,98,110,108,103,106,109,99,97,104,103,112,107,94,103,97,97,114,105,101,113,93,100,96,109,105,107,95,106,99,110,105,108,110,101,103,100,92,124,96,112,102,92,98,107,102,94,112,82,97,95,93,94,105,111,104,101,108,108,103,101,98,105,110,106,87,98,101,109,109,118,106,103,112,109,108,100,96,90,106,99,96,116,103,103,106,99,114,115,92,110,97,93,113,102,103,103,101,106,112,113,95,105,108,104,112,100,106,99,107,93,92,112,105,118,103,94,91,112,103,105,101,108,104,113,101,92,110,114,103,106,104,96,103,101,100,104,114,99,113,103,96,107,102,97,107,98,116,97,103,107,100,112,106,104,117,109,104,101,106,95,105,101,105,97,105,109,110,106,111,100,111,104,98,120,100,114,111,99,123,109,109,97,102,89,101,112,103,115,112,127,109,109,95,86,96,95,99,106,103,107,104,95,114,108,108,95,102,93,103,103,95,104,112,102,104,88,114,115,109,105,113,104,101,102,95,99,108,106,99,96,95,93,102,101,108,115,107,106,106,110,100,124,109,105,112,102,101,105,113,108,103,103,105,100,95,96,103,119,93,111,104,90,103,92,109,103,108,112,112,89,117,97,97,107,98,96,111,103,102,103,100,103,109,108,75,109,100,101,109,101,98,103,111,115,108,80,101,117,103,95,108,103,101,100,98,109,96,100,97,96,103,97,96,112,103,113,95,111,116,107,100,99,100,106,97,104,100,102,109,106,105,106,107,106,110,106,104,102,98,111,104,104,116,95,97,104,85,110,117,96,100,98,102,106,106,98,110,108,98,113,106,114,115,100,95,102,110,95,102,102,96,114,109,107,110,102,105,106,109,112,113,107,109,108,107,113,103,102,103,126,113,110,109,105,101,123,113,106,104,108,106,99,104,105,111,115,109,108,88,109,107,98,104,97,89,113,119,100,94,106,96,102,92,78,100,110,96,89,110,105,113,103,106,110,113,102,109,115,99,110,109,104,99,99,95,110,101,105,109,111,102,114,101,102,104,124,104,98,116,121,110,98,105,104,108,110,100,115,106,100,100,117,109,116,98,112,101,71,105,98,114,102,93,94,103,112,110,105,100,101,102,116,110,107,104,108,103,104,117,94,99,113,106,109,104,108,115,102,103,112,109,94,100,96,102,91,94,105,120,103,119,110,101,90,107,89,119,100,108,100,100,106,104,111,112,101,105,98,102,101,105,100,112,109,109,112,103,107,105,102,101,109,109,96,117,113,99,92,95,110,98,104,114,98,112,99,115,106,106,100,105,117,98,103,113,95,102,113,110,112,106,96,99,100,99,111,103,89,98,118,103,121,102,103,105,104,117,99,108,100,107,108,110,94,110,108,100,116,107,109,98,88,114,109,92,107,95,118,106,99,114,102,115,92,111,98,105,96,104,108,105,110,99,106,103,101,100,108,103,126,105,109,106,95,97,110,119,103,100,111,105,104,107,105,109,102,97,109,100,103,106,113,114,98,114,97,97,109,103,100,99,99,102,114,103,102,108,99,106,117,98,97,117,115,109,103,115,110,116,105,101,109,100,101,112,103,84,129,105,99,105,113,104,89,100,112,101,109,100,102,93,110,106,105,107,106,106,99,105,96,83,104,107,105,101,102,96,103,106,90,97,110,110,115,104,107,103,102,99,106,107,94,108,113,88,109,102,111,97,101,104,126,111,97,120,101,111,98,121,101,111,100,105,95,120,100,108,106,117,104,106,100,95,110,107,113,107,105,101,109,104,100,96,101,103,113,93,121,110,107,94,110,98,109,95,103,104,101,106,106,99,109,104,112,89,113,100,117,94,114,119,96,106,89,120,106,96,101,110,96,103,108,108,99,98,90,105,92,100,99,109,98,98,90,96,96,113,107,93,79,99,104,107,97,107,107,105,102,105,92,98,83,93,94,102,95,99,113,103,110,109,90,91,103,106,109,102,94,103,118,87,99,111,107,104,113,92,116,102,104,106,102,92,111,116,103,106,106,101,103,111,65,98,83,100,115,98,99,95,108,105,99,111,102,113,96,103,108,105,95,103,105,102,103,100,110,107,112,128,105,96,113,106,111,117,117,101,101,120,125,112,96,99,77,117,101,95,97,104,102,100,98,106,109,102,102,94,98,107,111,113,111,113,94,105,104,114,104,102,110,117,101,94,94,106,102,98,108,99,105,99,94,100,104,113,103,98,102,98,108,118,118,106,100,97,103,103,104,97,103,68,116,101,103,103,106,107,109,116,103,102,100,105,107,104,102,115,102,109,94,104,105,100,110,107,110,105,111,122,111,104,113,104,100,106,93,102,100,114,105,106,90,121,100,98,102,100,105,95,107,106,94,102,98,99,106,108,117,94,99,99,104,113,107,98,100,101,110,103,105,87,97,108,95,110,104,97,88,91,97,102,99,98,105,100,95,105,104,103,87,98,135,103,85,106,98,102,98,110,107,100,100,100,101,105,99,97,112,116,109,101,116,116,79,94,104,103,77,114,104,105,108,91,102,102,100,91,96,100,107,96,105,110,97,109,113,102,111,98,104,100,92,113,109,99,85,100,104,105,104,107,110,97,113,110,101,98,103,101,102,112,98,90,98,103,116,82,103,93,112,101,110,113,107,102,102,102,95,100,102,107,105,109,105,91,99,103,100,104,102,130,98,101,104,110,108,114,100,95,103,106,102,113,108,106,96,93,95,113,106,91,98,105,110,139,105,111,113,95,94,109,102,96,106,109,102,110,105,115,112,108,107,108,108,99,101,109,95,99,120,98,107,92,96,109,87,95,85,114,90,95,107,113,109,101,108,95,83,94,109,101,93,113,112,99,98,99,102,114,100,93,99,101,100,104,114,91,113,119,111,102,106,101,104, +461.38593,104,110,105,94,95,100,102,105,87,95,104,110,91,96,94,106,107,99,95,106,90,108,88,98,93,116,100,101,103,98,104,101,94,107,97,97,109,104,95,99,101,97,113,102,103,101,109,106,72,104,101,107,97,109,100,91,105,93,107,102,92,106,106,106,103,106,92,98,105,118,101,91,105,117,95,108,104,116,100,112,95,103,107,107,83,91,96,102,106,94,110,82,107,90,99,101,103,107,104,99,96,101,99,99,97,101,102,110,96,98,95,96,98,100,101,69,100,113,113,94,103,92,132,117,95,112,92,106,97,105,94,107,107,96,101,105,82,101,103,101,108,95,86,112,109,106,109,93,112,98,94,111,103,112,104,107,104,91,99,105,102,113,120,114,105,106,101,104,98,99,86,110,88,105,109,97,113,108,88,110,100,113,97,104,106,104,97,108,99,84,105,99,75,101,93,109,101,98,106,120,109,105,100,105,93,101,96,100,109,106,102,66,106,109,102,113,102,102,104,99,98,100,99,105,115,102,103,87,96,108,106,104,107,109,97,99,95,101,120,97,98,100,103,107,106,113,111,101,91,99,97,98,104,96,95,103,109,101,95,97,105,107,91,85,91,113,100,107,108,81,100,90,113,109,82,103,99,101,99,90,93,107,98,107,109,95,102,109,99,112,104,104,107,102,109,98,102,107,111,103,114,99,99,103,89,104,110,94,103,113,101,94,113,98,113,102,113,104,98,95,102,94,99,108,98,115,108,96,100,103,106,91,100,109,100,100,97,99,100,107,97,101,107,94,105,103,96,97,103,97,101,127,105,123,89,107,102,99,114,104,93,106,101,100,112,104,102,102,91,89,106,110,103,99,101,96,106,109,67,112,111,110,115,105,97,103,106,91,95,105,101,92,100,102,96,91,87,112,107,107,100,89,92,101,86,102,90,108,100,100,105,97,97,100,98,90,100,94,102,100,102,96,87,114,104,98,95,93,95,116,106,111,76,115,108,95,97,111,91,88,95,101,95,108,102,96,107,98,104,107,94,113,103,114,101,97,108,103,104,102,95,100,117,102,106,109,105,99,97,98,94,104,109,98,94,105,106,113,111,112,91,104,92,102,92,110,114,103,98,100,112,110,101,100,93,101,92,110,99,96,110,94,95,95,98,102,97,104,98,94,106,92,108,104,103,95,111,100,96,98,101,105,108,98,116,105,111,107,105,98,110,96,106,104,114,106,97,101,118,104,98,108,102,105,108,92,106,104,116,96,103,102,100,97,102,95,104,101,104,109,105,106,72,105,100,95,108,105,98,97,90,96,86,106,104,99,109,87,95,110,104,100,97,113,95,99,99,98,104,92,98,112,100,95,108,108,95,96,106,98,101,96,102,94,96,99,108,105,82,111,100,104,103,101,107,95,94,91,111,95,121,95,102,105,86,92,96,110,113,103,102,99,98,100,103,86,97,92,96,107,99,95,94,104,86,86,89,92,98,108,104,109,102,100,120,98,104,106,97,97,85,103,97,105,89,111,84,96,87,100,102,96,102,107,102,91,96,104,120,101,115,99,97,96,107,102,92,89,101,110,102,93,105,101,105,96,97,103,110,111,100,98,109,98,93,105,100,105,108,106,94,107,75,104,95,103,106,102,93,91,107,102,98,103,103,102,110,104,107,99,112,90,102,102,103,99,102,95,99,103,108,106,106,103,103,91,94,107,86,103,96,100,104,105,95,106,98,105,110,94,97,109,99,106,99,133,117,95,105,98,102,102,105,103,99,91,110,104,103,101,108,103,104,99,100,100,102,99,99,113,111,107,101,102,106,106,98,99,106,109,101,107,109,93,100,102,109,99,104,93,107,102,93,102,99,100,109,103,95,97,97,108,94,112,108,111,93,96,93,107,117,101,105,112,107,111,113,81,99,112,101,109,99,99,97,106,105,100,103,101,98,84,91,97,97,93,103,98,104,120,112,100,99,97,105,98,90,113,105,103,100,105,104,105,96,105,91,98,89,68,107,101,103,100,104,105,94,114,104,102,102,108,112,100,98,99,93,107,97,105,83,109,101,106,102,99,92,104,101,98,104,112,105,100,79,89,101,116,84,99,110,103,100,110,123,95,105,96,95,87,98,102,103,100,96,105,103,107,99,102,94,101,101,103,95,102,105,103,102,105,84,107,110,112,107,98,109,101,102,125,99,110,102,94,112,95,108,82,101,98,106,97,99,102,105,96,110,100,86,101,105,100,99,106,102,95,102,90,92,110,103,93,100,99,101,88,111,108,110,106,111,125,103,95,111,112,104,95,100,83,110,99,95,107,103,89,99,95,99,103,98,94,110,97,103,94,103,107,101,91,111,115,109,101,97,98,101,107,100,97,84,105,98,102,95,101,102,107,100,104,102,98,99,90,87,105,104,106,90,90,105,98,99,102,94,105,77,107,111,101,92,102,93,98,96,112,76,102,71,98,112,98,96,104,102,97,94,98,120,107,109,105,105,99,106,105,105,105,100,102,110,116,116,101,108,110,98,103,117,106,95,100,102,105,99,102,106,104,100,105,103,101,105,113,102,96,102,117,117,102,98,118,104,110,107,102,105,111,104,126,103,110,95,113,99,100,101,104,103,91,120,111,96,110,106,115,96,117,95,112,108,95,106,102,104,107,92,106,95,111,99,108,105,102,100,109,103,107,111,102,107,105,97,112,97,114,96,95,99,101,112,107,110,106,107,114,101,88,105,104,107,115,100,104,106,108,103,106,106,102,106,105,103,112,102,101,105,90,106,113,111,106,101,96,119,97,104,112,108,109,105,104,108,110,104,102,101,101,101,123,109,102,111,99,110,105,102,101,110,105,91,105,113,117,113,106,105,91,108,104,104,108,98,110,99,104,100,113,97,109,105,112,110,106,115,111,97,112,92,107,112,104,100,114,86,93,104,98,100,122,98,116,103,96,100,100,108,101,108,124,107,115,102,102,98,106,104,94,103,99,99,96,97,102,110,115,103,95,109,102,107,102,100,115,111,107,112,103,104,98,100,85,92,113,106,96,112,103,99,95,102,111,104,100,117,118,98,108,105,113,93,98,95,104,103,105,108,99,84,101,101,99,116,107,110,109,102,106,112,107,93,103,112,106,107,111,100,90,79,104,97,89,89,92,102,104,109,101,97,102,90,98,97,95,98,98,113,112,116,101,115,107,112,105,102,104,121,100,66,104,107,96,106,87,88,72,102,110,108,96,104,109,68,101,96,101,114,104,113,99,115,103,109,112,102,112,116,114,106,92,106,94,107,94,94,102,102,106,99,81,106,101,108,110,93,107,99,104,100,100,110,108,113,94,114,91,97,84,101,103,95,95,101,99,103,100,108,139,105,107,109,106,110,106,113,100,94,104,103,97,102,124,100,96,109,115,99,104,103,115,102,102,107,106,102,116,106,105,91,112,97,102,98,94,91,105,95,108,111,104,80,101,112,102,100,109,101,100,106,110,116,114,105,97,97,101,107,100,108,106,103,101,105,120,105,95,123,109,101,104,115,107,106,102,109,103,102,103,107,104,107,106,107,106,87,117,98,99,104,113,117,96,106,103,110,97,104,109,113,104,92,99,104,98,109,107,96,103,98,102,91,110,96,105,110,103,112,105,112,106,98,100,111,103,97,99,108,98,109,107,85,83,93,115,110,101,107,109,116,102,104,103,107,106,95,106,105,100,102,113,94,103,108,109,111,105,85,103,103,101,95,95,92,86,109,105,99,102,101,93,93,101,100,100,105,108,102,102,92,104,101,95,93,108,113,102,85,92,115,102,100,102,86,103,124,99,94,113,93,96,98,100,95,103,102,115,106,104,98,114,101,101,86,91,101,102,117,109,108,106,98,110,110,103,105,126,102,98,95,103,112,97,105,106,100,87,93,98,106,106,105,101,120,106,103,114,102,99,103,86,100,113,114,104,98,94,99,106,105,101,98,91,100,104,116,105,106,103,101,111,86,105,97,100,105,110,101,92,113,97,102,99,95,115,98,89,102,92,113,106,109,104,95,101,96,86,98,109,107,100,113,105,101,107,100,106,98,112,106,101,93,96,98,90,96,97,104,98,95,96,104,115,109,111,103,113,111,105,104,98,104,87,107,109,99,109,103,99,102,107,98,100,102,136,90,98,108,111,100,108,88,100,105,89,108,100,112,95,83,100,106,101,105,108,108,110,105,93,92,97,107,96,117,105,110,103,89,103,96,98,106,109,113,106,96,108,93,101,113,77,111,102,106,97,98,113,105,100,97,109,100,100,111,113,101,98,96,90,105,112,96,106,105,106,108,121,103,103,109,106,99,113,107,120,108,110,111,98,95,103,103,107,101,109,102,101,93,101,103,104,107,102,112,96,104,96,104,102,108,97,87,116,105,98,98,108,101,97,107,90,102,88,100,92,101,119,98,103,100,109,110,102,93,94,84,100,98,105,97,94,107,111,103,113,106,112,94,106,100,101,91,104,107,98,105,107,93,103,110,98,95,96,112,108,106,93,111,100,100,96,98,111,100,101,100,110,105,102,99,112,101,100,90,97,106,103,96,92,108,90,100,109,92,97,103,109,104,94,102,91,107,99,101,125,106,113,106,113,104,113,102,101,109,106,97,99,111,101,96,108,121,107,105,97,109,87,93,108,105,85,107,106,129,103,102,94,111,91,92,107,113,101,105,99,101,112,115,87,89,101,111,98,105,109,99,113,101,73,106,93,114,100,107,104,96,107,102,114,95,111,91,104,107,113,113,101,94,104,112,98,98,98,99,92,94,117,98,105,86,87,89,98,99,111,94,105,110,97,111,96,111,98,96,111,91,114,99,103,110,121,113,98,98,99,104,104,104,91,106,107,93,98,103,105,97,104,109,103,87,95,109,114,111,97,93,106,97,100,119,100, +461.52637,118,101,109,98,90,95,83,94,92,108,105,114,97,109,98,97,101,100,98,95,113,116,113,100,113,110,120,99,94,111,108,108,108,101,112,98,106,84,73,95,106,103,98,107,108,95,95,91,103,110,108,110,121,95,116,77,90,100,104,92,109,94,108,94,106,106,99,109,100,96,107,105,114,110,99,112,105,80,97,88,97,95,98,110,104,100,96,115,100,105,92,97,99,115,89,98,97,92,108,105,109,95,104,105,96,106,103,100,109,99,102,92,62,101,107,104,93,86,102,106,101,97,115,104,91,110,106,106,104,99,108,99,99,109,101,116,104,92,93,107,109,101,106,98,88,102,109,98,95,93,112,105,104,116,98,105,102,100,112,95,102,100,119,92,137,105,112,101,102,97,109,100,100,95,105,109,102,107,103,96,97,106,105,111,98,100,100,88,112,105,105,98,104,99,102,107,93,104,119,96,113,94,108,102,107,104,110,101,100,97,112,96,99,112,77,99,104,111,107,102,81,104,115,105,101,107,102,105,105,93,105,113,105,107,116,108,94,94,118,90,98,99,103,84,106,88,98,109,98,101,102,99,94,100,105,113,107,108,93,110,116,105,94,106,107,116,102,99,100,101,97,109,88,82,105,105,106,109,102,95,105,104,102,95,105,101,100,103,99,96,115,102,99,110,99,117,110,109,91,101,112,99,97,117,99,114,113,106,100,106,106,103,104,98,97,114,118,105,94,108,98,102,109,105,108,103,104,103,118,112,102,94,108,103,105,102,94,127,98,103,97,96,103,108,103,114,96,103,118,99,88,110,111,105,95,95,100,106,108,102,100,100,102,104,110,89,93,109,87,105,102,98,109,129,105,95,111,115,111,109,106,102,129,104,113,106,114,92,114,93,110,96,97,114,100,106,102,101,100,107,99,99,107,105,118,100,100,103,108,117,104,110,102,104,117,95,104,106,94,101,94,100,113,104,89,109,99,90,99,106,103,91,108,107,98,103,106,112,103,97,110,112,105,119,97,117,104,106,96,111,95,92,109,97,98,110,108,113,110,95,104,107,119,108,110,99,95,109,100,100,99,87,104,95,110,107,105,113,118,115,101,106,105,105,108,99,119,103,101,100,110,106,111,85,96,120,112,117,100,84,102,109,110,110,104,105,96,103,99,103,109,95,106,105,102,105,117,112,112,106,107,100,97,120,101,96,105,103,105,95,100,98,106,99,93,96,113,86,107,110,97,93,100,81,105,109,117,103,107,109,98,98,90,104,108,99,101,111,103,102,106,94,113,101,108,98,102,100,103,104,98,121,117,104,104,115,102,115,102,100,111,113,118,103,96,106,104,114,109,86,98,106,112,95,121,108,99,111,109,104,99,108,108,111,96,105,108,105,101,109,109,107,113,107,104,107,96,91,104,97,103,94,101,104,99,102,99,109,106,103,111,109,101,111,104,100,105,94,106,101,99,90,111,99,111,101,95,100,101,112,97,111,107,115,92,121,103,98,114,114,105,102,97,108,65,108,96,94,111,120,103,99,102,97,100,109,97,98,108,97,107,91,103,98,109,98,110,99,102,103,117,105,92,103,95,110,103,102,100,110,99,102,105,104,110,108,98,95,113,102,106,95,102,97,101,99,112,96,112,98,110,107,110,110,108,122,91,95,108,113,107,104,100,115,105,100,102,102,102,105,108,91,105,101,117,91,98,103,109,103,105,109,90,103,112,113,120,98,117,95,101,83,96,109,104,107,99,108,104,96,101,98,105,105,100,112,110,91,112,115,98,104,106,101,103,104,90,101,109,101,114,116,105,116,116,117,103,109,107,112,98,101,99,106,103,90,110,100,113,96,109,99,103,93,107,91,108,107,104,103,109,112,98,117,95,121,79,108,111,98,100,95,107,112,106,99,104,111,112,99,100,98,103,94,102,107,95,98,83,95,89,114,104,105,103,100,111,108,97,132,101,106,105,104,94,107,100,101,115,103,106,103,100,98,102,103,100,95,95,110,107,105,95,101,110,116,98,105,105,90,111,99,99,109,72,91,99,100,101,104,109,117,108,125,122,100,93,101,102,108,106,101,108,103,105,95,102,107,102,122,122,106,104,103,103,100,97,102,101,110,83,109,105,105,117,109,103,103,106,103,113,108,106,105,95,112,94,112,94,102,103,110,109,111,92,108,106,118,109,106,107,110,101,117,107,100,115,100,109,117,101,105,100,96,105,112,88,92,118,106,82,112,107,96,114,107,122,98,105,99,103,95,104,108,104,97,111,104,100,106,73,109,109,93,121,110,99,103,92,102,97,113,105,120,98,109,108,102,105,95,84,107,95,125,103,106,112,103,103,105,118,106,102,101,111,94,101,103,112,99,90,99,99,99,109,103,93,116,104,103,104,104,114,103,106,111,118,115,109,104,92,116,101,96,98,96,121,110,105,93,98,117,137,99,93,95,97,91,100,94,103,95,103,102,99,104,104,107,102,102,94,112,105,103,100,102,106,109,111,115,102,118,107,107,104,106,88,103,92,103,95,105,100,95,102,113,106,99,105,112,107,100,100,99,93,103,87,110,110,76,92,115,98,100,109,105,101,101,90,99,99,98,103,129,102,106,107,100,100,93,117,102,92,97,104,101,104,115,102,98,105,90,110,107,94,95,96,103,103,109,93,99,102,108,96,103,103,113,92,100,102,107,104,107,105,103,111,110,99,104,107,100,119,101,101,96,96,99,106,106,94,100,103,100,100,109,94,108,101,103,116,109,96,106,111,87,96,114,111,91,107,95,100,107,96,121,104,106,114,97,102,103,104,109,106,95,98,102,106,103,112,108,115,106,109,109,111,103,108,102,108,76,107,106,108,94,126,104,102,100,109,106,99,96,99,105,91,109,112,99,105,108,105,107,107,105,94,93,105,100,115,129,111,103,107,100,101,107,100,113,103,104,103,97,106,109,102,92,123,112,106,101,108,96,108,114,98,112,100,107,107,112,99,106,108,107,103,106,87,87,120,103,98,88,107,96,100,99,112,112,98,109,93,99,116,102,109,102,85,100,96,117,98,89,96,101,96,101,103,99,100,97,104,105,106,100,116,111,104,100,98,106,114,95,106,107,110,99,97,98,107,103,97,109,103,112,101,97,114,103,107,100,105,102,102,106,107,108,101,99,110,92,109,102,102,106,109,96,109,114,99,120,99,99,109,107,100,95,98,108,113,94,108,103,93,118,104,110,113,103,109,101,106,102,106,101,104,90,106,101,115,102,101,104,105,108,96,99,93,102,112,93,94,98,93,99,102,94,105,96,111,101,109,101,108,98,98,110,104,101,100,94,103,107,95,92,106,80,103,113,102,98,98,101,108,101,100,105,113,98,115,94,104,75,101,111,105,107,98,95,100,105,104,105,103,101,83,109,109,105,96,96,103,105,102,104,102,95,94,108,85,107,97,93,105,111,108,103,101,99,89,115,88,103,107,100,102,110,107,101,122,96,105,112,101,97,116,105,100,87,98,103,98,103,102,92,113,99,91,98,109,101,98,94,100,106,97,101,101,98,124,102,76,98,106,103,90,110,100,104,115,106,97,100,98,99,105,105,110,97,101,102,106,108,100,98,101,95,96,102,95,106,103,93,105,99,90,95,107,113,96,104,105,99,98,96,111,104,105,109,95,108,98,107,110,115,106,102,113,109,122,114,95,108,91,98,100,106,120,103,106,106,105,96,107,95,108,105,105,106,98,100,100,106,111,99,105,103,90,97,98,96,115,100,112,99,114,99,100,99,98,101,112,100,97,112,99,97,105,104,106,105,92,109,105,113,106,97,91,116,101,74,110,114,115,105,104,109,100,110,92,104,89,98,102,106,110,97,109,111,97,103,96,98,85,95,105,109,103,107,106,95,91,99,104,106,106,102,101,98,95,90,94,99,105,105,101,105,116,92,96,83,95,102,97,101,103,100,103,104,100,115,102,111,99,102,104,96,104,103,105,112,100,101,105,99,99,100,99,107,109,107,105,106,109,105,94,97,109,108,102,92,105,116,104,97,70,98,98,109,99,105,100,96,99,135,96,101,113,102,100,109,85,102,89,101,101,104,93,98,101,105,110,105,101,106,112,109,104,105,93,101,100,114,100,104,94,105,112,115,97,96,96,123,86,110,112,125,109,98,103,98,99,88,112,113,105,107,90,99,109,112,114,101,109,118,99,109,103,103,101,97,117,98,104,103,111,95,105,121,108,100,103,104,87,96,101,102,101,110,110,101,107,99,97,101,95,107,108,99,112,108,106,100,104,107,93,99,99,96,108,104,107,100,114,110,97,100,97,104,99,110,111,97,108,109,102,107,122,121,105,105,79,97,115,92,68,108,94,109,99,96,113,104,104,103,114,115,95,104,103,96,104,109,94,98,96,113,107,98,101,91,132,97,92,104,95,101,90,103,104,102,91,101,102,102,91,106,116,98,95,111,114,108,97,107,108,99,99,112,106,104,109,109,108,111,103,101,105,102,92,92,102,93,111,101,102,111,102,102,94,113,89,101,80,110,112,78,108,106,104,90,103,98,97,109,108,105,94,91,100,117,107,94,102,100,111,105,89,108,115,98,103,109,102,108,92,114,106,100,92,110,99,95,102,113,112,110,102,117,102,119,99,101,92,112,105,107,114,113,91,108,98,104,106,89,96,97,105,93,125,102,99,106,108,108,121,101,98,104,96,124,98,105,100,108,87,94,103,102,121,99,93,101,101,103,106,107,95,95,102,99,103,106,93,90,112,104,103,107,98,92,97,106,111,113,99,93,80,96,105,99,100,96,96,100,89,124,98,109,112,102,98,100,96,86,106,102,91,96,112,97,98,101,102,110,109,100,107,81,112,108,106,99,95,106,109,108,95,107,110,94,112,110,100,108,114,98,113,96, +461.66681,113,100,100,113,101,110,100,102,88,101,104,111,102,107,89,110,96,109,110,101,100,108,98,91,96,101,107,87,101,106,97,118,97,98,102,104,96,117,121,100,104,106,104,87,101,103,101,114,105,110,104,99,95,102,91,103,93,102,106,98,91,108,100,98,92,106,91,138,93,98,108,120,101,102,102,103,100,111,98,95,115,116,113,108,100,92,104,110,108,106,96,108,114,106,98,105,105,108,103,115,95,105,94,98,112,111,107,104,106,104,104,102,95,105,99,103,91,89,103,90,104,104,86,98,105,116,113,99,101,105,101,103,98,100,103,103,101,105,96,91,98,97,84,102,110,117,108,99,99,118,113,102,109,91,99,101,104,96,104,107,98,103,100,107,112,114,113,103,103,94,103,98,102,89,109,109,104,99,110,103,95,84,84,99,107,110,108,92,79,112,99,86,102,107,95,98,96,106,93,92,91,97,102,95,90,100,105,104,108,102,122,100,105,95,98,118,100,97,95,102,92,111,95,95,99,106,91,119,105,105,112,105,115,110,111,108,92,105,101,104,93,99,99,133,103,109,95,91,91,107,100,104,104,95,107,99,103,103,105,98,96,125,96,93,105,101,96,95,107,91,94,100,101,100,95,102,110,122,103,110,88,103,110,108,86,108,106,114,106,103,90,105,115,100,117,95,112,102,103,99,116,102,98,103,120,102,104,110,109,118,94,99,109,110,96,113,103,91,103,97,100,108,102,111,117,101,103,98,104,106,101,101,101,95,106,127,110,114,116,101,98,111,105,96,114,106,103,103,110,103,115,106,107,112,107,112,111,103,116,106,104,103,107,108,97,100,114,109,99,99,101,110,116,114,110,111,118,110,102,111,96,104,106,88,100,116,98,101,114,94,128,92,66,103,102,100,100,93,110,107,101,105,88,103,110,102,100,102,93,106,104,111,103,102,106,89,98,103,105,109,105,108,97,99,99,102,102,89,137,118,96,95,103,87,112,109,110,100,96,101,108,97,104,109,92,118,94,104,76,110,102,103,105,100,99,111,100,105,109,104,99,105,121,106,116,105,103,100,93,102,113,109,100,83,102,96,94,112,99,121,97,112,94,102,90,100,104,104,101,98,92,121,106,98,82,100,101,94,103,98,103,89,101,105,96,103,107,96,108,109,105,107,92,98,97,99,98,84,95,102,114,111,102,103,110,104,108,107,99,112,122,110,112,97,98,114,85,111,110,105,106,103,101,98,103,96,108,95,108,118,109,107,98,98,97,104,96,98,100,104,103,98,91,107,101,106,123,106,96,105,104,99,95,106,110,99,112,102,97,100,99,106,102,92,111,101,105,107,109,99,104,106,99,91,104,107,103,101,112,102,106,112,109,100,96,106,99,99,99,100,112,118,97,100,106,88,98,106,106,103,97,95,112,107,96,100,102,102,104,106,105,90,101,104,102,106,109,97,115,89,108,109,101,105,106,103,106,100,106,108,100,105,107,113,97,126,105,107,109,104,104,80,107,108,88,106,98,102,99,99,106,105,105,100,104,104,104,100,129,121,112,103,107,101,99,96,126,113,102,98,105,97,100,101,117,100,103,110,107,103,102,101,96,109,109,91,101,114,95,104,94,108,105,109,101,71,110,100,101,103,106,102,104,107,108,95,108,129,104,115,88,109,106,103,100,100,111,102,101,106,99,106,99,104,102,107,107,112,100,110,121,106,97,110,107,97,107,104,99,83,96,97,91,105,99,101,118,107,101,98,105,93,106,99,112,102,104,93,104,103,110,106,99,105,101,99,103,109,94,119,99,100,95,104,112,102,113,101,97,111,100,100,100,99,99,102,99,103,96,104,108,102,108,106,98,105,105,110,100,88,117,104,105,103,103,101,92,120,97,104,104,98,109,112,101,110,96,94,96,113,96,99,102,105,97,96,102,92,102,87,98,94,110,99,101,103,97,103,102,105,94,109,126,102,116,99,92,120,113,114,102,117,99,110,85,91,108,109,100,96,95,91,101,105,103,90,88,115,99,112,109,99,100,102,103,102,115,104,86,107,81,106,120,102,113,105,100,102,110,101,86,114,102,109,102,104,96,107,111,94,104,105,108,106,108,98,107,114,95,116,105,111,101,129,101,95,106,108,105,109,111,103,104,100,99,99,107,120,105,111,103,110,108,106,90,108,111,104,103,99,114,107,97,105,113,94,113,105,102,103,121,108,111,98,120,105,109,104,102,109,102,106,101,91,106,106,92,99,95,94,104,104,96,98,97,111,111,87,107,106,86,103,96,95,101,104,96,97,95,99,105,108,94,112,110,98,104,104,105,112,108,107,99,116,102,120,97,91,99,104,97,93,109,105,105,96,104,117,104,119,113,102,103,109,96,96,111,89,115,106,93,110,106,121,97,100,98,102,96,117,101,102,106,98,100,107,106,120,107,95,113,112,98,96,109,96,112,114,91,95,98,107,94,114,103,102,101,105,117,108,102,108,112,124,106,106,103,100,111,106,102,103,105,95,107,110,110,106,115,111,96,120,107,98,115,96,110,106,102,106,101,108,106,101,110,95,111,106,120,112,105,119,98,101,102,112,110,99,84,105,107,112,102,89,98,111,105,97,110,101,121,94,99,108,87,112,111,100,68,106,106,97,101,97,113,113,100,103,107,108,106,111,100,99,100,101,105,98,110,99,108,107,106,116,113,105,102,100,119,112,108,101,111,108,91,111,109,86,102,100,108,106,105,98,101,110,83,107,99,108,103,99,111,102,100,106,107,104,103,105,113,115,105,123,95,110,97,100,111,112,95,103,109,109,107,111,116,106,104,100,105,105,98,100,97,96,103,113,103,104,103,116,107,108,95,94,122,99,97,108,94,110,111,103,108,108,112,91,103,104,98,111,104,114,107,100,96,104,98,106,118,109,99,93,104,103,106,106,104,118,98,99,98,104,108,116,103,94,115,108,102,107,111,104,100,102,106,101,117,107,104,105,101,89,110,103,103,132,109,117,95,95,106,107,104,104,110,108,99,97,106,101,102,90,121,83,110,98,103,101,99,113,104,87,110,116,109,98,100,111,107,95,105,104,94,97,96,113,99,100,96,114,95,102,99,117,125,106,101,101,117,98,96,109,114,95,85,106,103,109,101,98,101,101,107,106,109,103,106,100,98,93,103,91,99,96,94,103,112,117,92,99,95,115,103,120,105,103,95,105,101,98,107,100,112,110,101,107,111,111,95,105,106,98,108,95,113,90,124,89,103,109,91,102,109,103,98,111,101,110,79,97,96,103,101,100,106,106,113,101,102,98,102,106,106,108,104,100,105,94,112,100,115,97,97,115,107,100,103,85,97,66,101,93,99,93,101,109,108,115,96,117,95,108,106,107,116,100,103,92,106,98,92,105,103,107,107,92,105,108,95,105,113,108,93,101,109,94,118,103,104,93,111,106,94,97,103,105,98,94,93,96,99,101,109,100,110,88,107,108,79,104,102,97,100,112,108,100,100,108,106,112,112,135,123,95,107,96,114,94,106,107,96,106,94,91,108,106,95,110,88,102,109,110,93,98,91,103,115,103,107,85,116,101,103,100,106,97,116,106,112,108,105,112,109,80,108,111,103,102,104,111,90,102,107,88,111,104,108,105,83,103,110,102,104,97,107,105,98,103,117,103,112,107,98,96,98,117,108,106,107,108,107,99,100,91,109,92,104,95,102,95,115,106,101,99,102,101,109,105,102,96,107,110,112,99,112,94,112,104,101,98,109,105,109,109,105,101,109,111,106,103,101,114,102,106,111,106,108,111,98,104,94,96,106,115,103,101,102,91,99,110,110,97,95,99,111,101,115,109,105,92,104,96,97,105,105,97,107,124,108,107,93,101,112,76,100,111,96,105,100,105,97,110,104,93,108,101,99,98,105,100,106,88,98,104,109,113,107,103,100,103,113,108,106,117,96,103,84,99,100,107,104,110,97,108,99,101,102,99,106,111,110,118,114,108,104,104,92,106,114,102,96,106,98,106,94,102,104,80,115,104,101,102,105,109,91,109,106,100,126,72,107,102,105,107,106,108,113,104,91,78,103,104,89,107,99,107,97,94,102,113,102,105,106,109,100,122,100,110,97,120,104,110,95,115,99,103,100,105,103,81,120,106,115,104,86,113,96,90,111,84,97,79,91,104,106,109,102,98,106,107,102,103,101,108,108,104,108,103,104,119,101,110,114,111,109,108,104,101,113,102,104,105,101,103,116,119,100,105,108,103,97,107,99,106,102,99,110,109,103,110,113,97,99,97,101,103,98,104,97,111,116,108,93,104,104,100,105,110,104,96,107,91,110,102,93,106,106,117,114,95,102,112,104,90,96,112,107,100,102,99,113,114,102,102,113,93,82,100,99,101,100,95,106,96,114,110,111,106,89,94,103,106,113,109,96,112,115,105,109,110,105,105,104,103,92,103,100,107,94,96,102,95,102,96,93,96,105,108,99,92,110,107,94,101,88,96,106,91,93,99,99,110,94,105,117,95,108,100,115,107,104,101,111,99,118,98,105,95,109,109,106,97,102,103,110,91,116,98,105,109,104,102,106,104,112,113,99,125,97,92,100,105,106,107,103,104,98,102,103,112,95,96,96,115,99,110,96,107,135,106,103,108,105,91,121,113,104,93,94,92,110,107,87,105,94,93,106,117,98,102,96,103,103,113,105,96,83,100,105,100,98,92,92,96,110,92,92,85,98,113,85,100,102,103,106,95,101,100,102,74,105,105,104,99,85,95,107,111,88,115,108,94,107,117,91,109,101,118,98,115,101,96,106,111,113,112,105,99,109,107,81,103,104,115,93,105,112,87,108,103,106,94,89,116,91,100,108,101,100,105,107,92,86,92,88,103,100,111,88,106,107,98,100,100,107,108,95,108, +461.80725,108,85,93,109,94,100,96,95,103,90,97,103,105,101,101,103,105,106,94,91,100,77,96,102,101,101,106,105,107,100,107,117,102,105,115,93,114,119,100,108,99,111,110,96,110,109,105,103,116,119,105,101,88,92,111,103,101,105,101,97,103,114,99,98,98,111,104,105,90,99,111,101,101,98,100,122,93,105,108,110,123,112,109,103,105,105,98,92,95,96,99,104,100,104,88,95,103,101,98,104,97,96,105,101,109,105,88,99,92,95,102,129,121,84,104,106,121,75,99,106,104,101,101,109,101,106,101,66,106,107,110,111,99,109,100,114,102,118,100,109,93,104,110,90,101,97,108,101,112,105,95,112,110,98,103,99,114,103,102,112,98,102,108,109,105,101,98,95,105,101,101,105,103,88,112,103,90,93,115,102,116,114,96,85,99,85,101,89,107,108,99,102,107,104,99,104,100,115,101,111,99,95,103,106,107,111,109,96,99,109,101,97,104,106,96,88,97,108,96,110,100,99,108,104,105,99,77,117,107,117,100,108,96,107,102,103,115,107,121,106,103,97,101,113,101,110,103,89,95,80,98,100,98,110,120,96,104,110,91,110,95,108,102,109,100,110,102,100,98,91,112,96,110,90,112,109,113,117,95,103,112,106,106,108,105,109,105,112,108,98,96,113,117,98,116,92,106,101,112,95,99,99,105,115,95,110,100,106,110,109,98,120,106,101,97,103,101,87,105,118,102,110,105,97,102,104,106,87,110,113,107,107,101,100,102,109,86,84,90,104,100,98,108,95,107,106,102,117,102,104,114,106,108,96,109,104,102,111,106,118,101,107,103,101,107,100,105,136,95,103,109,106,117,104,105,85,107,108,104,101,102,106,105,113,104,105,102,102,102,104,118,109,104,111,109,98,102,108,107,116,101,104,104,104,110,99,107,99,102,96,97,93,107,103,109,93,113,99,107,91,107,113,95,106,108,96,91,99,92,102,104,104,94,96,110,109,102,110,92,112,102,106,109,107,97,108,97,102,103,111,95,102,111,117,111,105,97,88,99,100,106,93,105,107,114,116,99,113,102,115,105,104,109,96,98,96,116,104,113,104,100,102,113,108,99,112,113,108,111,109,106,101,112,103,105,103,90,104,106,113,111,99,106,101,95,107,94,107,99,100,116,121,90,109,115,87,108,91,98,99,108,110,100,98,96,95,107,108,111,111,109,102,94,97,97,86,96,99,103,83,100,112,98,89,99,109,109,104,111,97,99,107,110,109,102,99,100,105,103,106,103,106,103,99,98,98,109,133,119,98,94,95,112,107,101,105,107,91,91,107,108,96,94,96,105,103,102,119,100,103,102,106,106,96,109,114,105,96,96,109,100,109,82,97,99,108,94,112,95,109,96,100,100,108,109,100,101,96,99,103,100,111,101,98,88,98,100,108,98,107,105,100,100,121,105,101,105,93,99,104,108,107,105,112,91,95,104,97,109,107,104,109,96,113,102,101,104,115,109,114,104,105,95,106,74,117,109,95,100,118,100,101,95,93,103,100,109,102,106,96,100,92,104,107,91,106,102,100,94,107,103,105,91,104,112,106,113,110,106,97,104,103,101,106,107,113,109,107,99,82,110,96,105,84,99,101,97,101,110,87,110,93,106,103,101,99,96,96,113,115,104,114,93,101,96,101,91,108,99,113,106,87,111,109,105,96,99,115,109,111,107,113,99,99,82,107,111,106,103,109,93,101,90,108,106,104,100,110,109,95,111,107,109,113,113,103,102,88,101,112,78,110,97,108,100,113,93,113,121,112,95,101,108,105,103,108,101,101,115,94,110,97,103,115,101,91,113,110,104,93,108,104,100,80,107,101,119,112,117,109,107,89,111,103,109,96,107,97,97,102,109,99,109,105,107,107,113,99,107,108,97,105,103,97,103,112,108,98,95,97,112,110,119,99,105,106,105,106,112,94,113,117,92,103,102,112,95,101,117,103,98,85,103,102,101,113,87,117,92,102,97,112,104,104,105,101,110,107,115,90,104,108,103,104,110,108,105,103,109,106,92,116,103,105,95,102,124,96,110,114,102,113,105,104,72,103,98,109,103,110,102,101,95,104,123,103,96,114,103,99,100,100,113,107,105,100,95,100,103,108,99,102,102,107,104,106,125,109,97,103,108,110,112,107,101,103,107,118,95,103,104,115,103,79,109,117,101,90,113,112,96,104,106,105,112,110,114,107,99,101,94,115,105,98,94,100,105,105,103,100,92,119,109,101,101,91,108,114,109,107,104,100,112,99,109,94,111,105,98,109,88,109,105,105,101,104,103,106,101,76,107,105,109,100,88,89,114,108,104,109,125,109,105,104,103,98,105,100,103,109,99,103,104,96,104,119,81,98,102,104,106,105,103,101,105,99,102,99,92,95,98,103,127,97,98,106,117,110,96,99,105,108,104,107,103,104,105,103,98,98,104,103,100,113,104,98,106,115,111,103,113,96,112,109,102,103,102,111,112,105,110,103,100,101,95,98,102,100,121,107,104,104,102,116,101,101,121,103,96,110,108,101,109,112,91,100,100,110,98,94,120,116,110,91,82,111,105,105,97,116,112,97,112,116,95,106,104,102,117,107,105,91,102,101,117,104,106,112,99,110,112,93,106,93,98,104,113,97,108,104,111,104,102,114,109,104,116,109,101,101,125,92,98,140,108,111,109,102,104,94,98,103,101,116,103,105,102,115,98,99,102,91,104,101,106,127,102,106,99,109,99,101,101,106,108,103,106,99,100,103,104,112,87,101,113,98,113,103,115,95,99,111,94,103,114,103,80,114,113,113,103,95,105,102,112,111,97,112,106,111,102,107,97,98,103,106,103,102,99,109,101,95,119,106,111,111,106,108,121,111,104,91,108,105,97,104,95,102,92,110,104,105,109,109,101,114,104,97,103,109,101,113,101,107,102,104,113,101,113,116,102,97,106,101,103,111,98,102,98,101,97,107,107,107,103,109,92,102,92,99,108,108,102,100,109,105,107,100,106,104,106,100,100,95,110,102,108,106,95,121,102,117,87,100,109,104,105,84,123,112,110,108,95,105,98,106,106,105,98,105,102,105,104,108,114,105,110,95,99,102,89,101,96,109,124,113,101,105,107,108,108,97,100,109,113,98,104,110,85,100,98,113,105,102,106,105,89,98,100,98,112,96,105,104,108,108,68,101,99,98,108,105,102,97,100,96,91,99,97,100,101,93,98,117,98,95,98,102,106,108,102,110,108,80,97,102,101,111,107,98,104,119,102,103,107,100,102,102,101,105,105,123,97,103,94,103,91,94,106,97,98,101,104,101,103,100,106,96,100,102,106,117,101,111,95,107,114,104,108,102,105,98,106,107,101,101,112,113,105,100,95,105,113,97,107,95,92,113,96,100,109,93,104,100,91,115,113,89,99,103,96,101,103,102,107,117,109,105,103,97,99,101,102,100,100,117,99,98,105,104,107,103,104,96,97,104,119,98,110,95,105,94,102,105,109,117,109,100,122,105,108,104,102,106,98,105,100,105,96,110,103,110,104,109,99,109,115,107,106,110,109,106,73,102,106,108,97,100,99,103,85,72,84,94,106,105,103,108,106,95,104,117,109,112,73,103,106,97,116,105,99,103,96,103,114,102,104,98,89,105,100,107,107,100,109,96,94,109,115,101,108,107,111,99,96,83,98,94,104,112,110,94,116,106,115,108,103,100,97,94,114,101,118,107,102,108,104,89,98,108,107,97,102,106,118,107,107,105,102,97,102,100,103,109,111,92,105,104,109,98,110,96,98,111,108,112,114,103,92,104,104,99,113,103,98,109,115,100,94,103,105,106,96,105,90,107,92,108,116,117,95,108,108,105,113,103,107,102,104,103,102,84,114,99,114,91,103,95,96,110,100,100,106,92,107,107,107,93,103,105,101,121,99,95,97,105,99,98,124,98,102,116,94,94,100,91,105,105,99,112,108,118,110,107,99,95,95,105,108,102,115,104,101,102,101,107,94,107,105,110,111,113,108,104,94,103,100,101,102,105,103,105,83,112,111,102,99,103,112,102,94,105,106,98,92,104,103,102,101,106,116,109,110,124,104,107,104,108,97,97,107,96,95,103,113,103,101,100,100,86,96,97,106,98,105,113,99,97,108,105,107,105,101,98,104,104,107,107,95,108,103,102,102,108,109,98,91,112,108,100,107,100,106,103,107,109,100,91,102,102,102,113,86,103,100,101,104,106,115,99,113,101,116,99,103,92,100,101,107,105,114,98,103,105,113,101,103,96,100,116,106,110,111,101,103,98,107,109,103,113,103,104,104,100,106,100,118,109,97,105,116,100,117,96,105,102,111,103,102,105,107,117,109,83,90,100,115,105,116,99,107,82,103,93,117,105,113,104,108,95,100,96,101,103,102,99,104,116,110,112,103,98,114,103,110,103,89,105,103,90,104,111,103,102,108,96,113,116,112,95,95,91,108,109,96,109,92,101,92,125,94,102,109,123,108,107,101,117,106,75,105,97,107,104,93,99,99,112,98,114,107,102,96,103,104,97,110,100,105,96,107,97,96,98,98,113,113,104,104,103,106,90,104,109,111,114,110,103,117,103,101,102,92,100,117,117,106,106,113,124,110,97,104,108,112,114,104,101,93,108,102,102,90,110,98,99,114,103,104,103,109,117,104,101,99,94,105,108,117,111,112,115,101,105,99,95,95,90,74,109,108,105,107,103,88,100,99,109,95,103,109,101,108,99,108,110,104,88,97,97,113,101,111,115,102,102,107,100,97,113,92,99,106,90,117,94,94,111,95,108,91,106,102,105,116,117,110,105,106,109,111,104,94,100,99,103,100,103,100,90,119,136,103,111,95,100,113,95,104,100,103,95,98,98,106,98,108,133,96,103, +461.94769,110,99,99,101,97,114,108,98,103,95,105,108,93,102,98,102,99,103,98,118,105,104,103,103,95,101,91,108,109,106,98,96,103,102,112,101,98,112,106,108,98,104,96,105,101,107,104,112,100,99,100,107,104,99,110,109,96,102,107,91,97,121,95,93,109,103,100,105,113,109,97,120,97,101,99,117,103,113,106,100,105,105,102,87,97,94,100,109,97,98,96,104,102,92,107,109,100,96,105,124,98,101,107,103,109,111,100,106,102,106,103,105,98,120,110,100,79,111,98,103,101,106,101,107,100,106,109,96,113,113,110,113,100,114,103,117,115,101,99,107,99,108,105,107,101,105,81,99,108,101,99,99,111,97,97,106,107,87,116,106,103,115,101,98,95,100,109,100,104,101,110,93,112,96,111,113,91,97,98,99,115,115,114,107,105,105,107,102,93,98,110,101,78,100,103,107,111,113,107,101,105,105,103,104,110,91,96,109,117,103,97,103,110,118,108,105,102,110,116,110,108,101,95,110,102,106,105,102,111,107,108,101,103,98,107,120,113,98,105,97,104,109,112,98,103,106,112,114,107,106,120,110,88,107,100,100,105,104,93,108,95,110,102,106,94,114,107,100,101,105,104,100,113,91,111,105,95,104,95,104,101,118,114,107,111,101,94,105,108,101,105,99,109,113,117,103,103,109,105,111,86,104,106,103,104,99,120,111,96,102,105,113,104,102,108,104,113,111,112,113,107,104,101,98,97,96,90,100,109,120,121,106,112,107,102,109,104,95,107,112,98,101,103,103,96,105,100,140,104,101,104,100,97,108,95,105,114,93,101,101,106,102,116,105,100,105,110,104,108,110,100,90,108,109,119,96,110,106,104,115,107,107,94,101,107,110,109,105,100,73,121,101,103,113,101,100,88,96,115,103,92,102,102,100,99,102,113,112,98,107,95,99,111,114,106,103,102,113,99,116,102,112,94,105,127,94,111,106,104,113,103,103,105,107,102,109,98,107,106,108,117,102,82,114,98,103,105,105,116,116,107,110,109,110,104,96,105,109,104,98,103,110,91,101,92,101,102,97,87,97,107,106,107,98,102,103,98,104,107,111,109,109,110,106,102,102,107,108,124,108,108,101,108,105,100,100,99,103,108,91,117,95,98,97,87,113,91,96,93,102,85,117,104,94,115,104,100,106,120,98,106,104,104,103,102,100,109,116,107,112,101,105,105,97,88,113,106,94,100,118,101,98,82,112,107,95,100,94,88,113,91,98,102,113,95,113,96,104,98,107,106,107,102,109,99,95,112,105,98,113,103,104,98,108,116,104,102,97,98,111,95,108,105,96,98,105,119,108,114,96,103,107,123,99,121,127,92,95,109,108,101,110,113,91,113,98,97,110,87,107,107,92,109,108,95,93,107,101,117,100,91,114,105,96,100,104,98,111,94,111,108,91,90,102,106,107,103,105,96,102,112,113,109,113,107,97,109,98,108,108,112,107,110,106,88,102,117,102,96,102,106,107,111,106,98,95,103,98,104,84,113,103,108,98,111,116,102,109,114,108,100,111,106,93,116,98,111,105,105,100,104,95,99,111,112,104,100,92,112,106,99,111,102,107,104,108,110,107,104,109,109,99,102,101,100,107,111,95,100,104,103,98,108,117,93,100,99,103,112,110,113,94,102,104,122,100,100,92,117,94,126,90,108,95,104,109,103,116,93,103,104,110,111,91,83,105,109,110,108,106,107,109,108,102,103,111,90,105,102,97,96,106,98,102,101,117,107,104,100,106,103,103,103,104,114,103,102,110,104,116,99,105,109,116,109,102,108,111,102,122,101,101,103,103,102,110,105,101,90,98,123,91,104,106,124,100,98,106,102,95,105,108,104,76,114,104,99,93,99,110,108,105,101,110,104,95,108,105,107,95,100,91,105,113,108,106,105,103,103,93,98,101,115,104,118,125,100,128,106,122,90,118,103,112,95,88,106,95,109,109,113,102,102,113,105,109,111,114,108,117,104,106,107,115,108,101,93,107,93,106,108,112,104,112,107,100,95,92,107,101,98,105,106,111,111,102,99,99,105,111,107,125,97,111,98,98,98,109,105,114,118,121,107,97,101,102,101,103,114,93,111,99,110,102,95,91,94,89,105,96,100,108,105,110,112,92,106,101,95,108,102,113,107,95,96,96,101,106,100,105,107,96,91,104,111,102,100,100,102,104,104,113,98,99,114,108,106,93,93,116,101,105,115,101,109,104,96,85,111,93,108,94,105,101,102,98,114,104,102,114,98,104,102,108,120,98,98,102,93,110,92,96,115,89,94,105,98,109,102,112,112,114,100,94,110,107,102,102,97,101,105,101,109,99,118,92,109,98,99,98,109,114,96,117,98,99,110,101,100,97,109,121,106,108,107,103,111,107,113,97,109,105,103,95,112,102,107,115,104,103,108,109,87,112,99,98,103,111,99,100,102,89,105,101,107,110,95,108,110,109,108,106,113,101,89,82,99,92,103,114,97,94,101,103,108,113,104,105,108,107,107,108,96,127,107,98,102,99,101,102,102,106,108,100,102,87,103,108,97,111,122,104,100,108,105,98,102,91,98,104,109,108,100,116,92,92,101,98,108,101,107,101,116,107,103,107,96,106,100,103,101,89,108,105,99,110,106,91,109,85,102,101,105,114,103,102,100,102,110,110,108,103,100,98,111,109,100,104,109,98,90,98,99,107,106,106,102,98,91,107,111,99,102,113,80,114,94,104,113,99,109,92,104,112,104,113,105,115,111,99,109,110,99,114,99,105,99,105,123,91,94,105,93,116,89,106,99,101,110,104,106,97,100,100,107,105,92,94,108,110,100,103,108,115,96,86,104,116,97,103,107,104,103,114,127,92,98,119,98,106,108,106,102,98,108,103,101,99,108,94,111,102,107,114,105,104,108,105,109,96,97,102,126,105,113,106,112,100,106,97,98,102,98,99,101,96,116,116,102,103,82,108,100,102,108,113,103,102,98,103,109,92,100,99,107,98,102,109,99,104,103,102,97,119,103,115,93,100,83,95,101,112,105,105,104,99,116,111,104,108,110,130,101,109,109,88,117,105,97,99,99,105,123,95,119,90,112,107,108,90,102,110,103,95,109,102,99,107,111,94,102,100,111,104,97,111,102,112,110,102,97,98,102,103,99,103,90,102,100,105,110,107,100,105,96,100,102,111,105,108,104,103,102,111,101,104,98,109,103,107,106,116,105,107,106,107,118,103,111,105,113,101,104,116,102,104,110,102,99,95,107,108,107,113,106,102,108,110,115,109,110,117,99,102,107,97,97,112,106,89,109,110,99,103,100,110,108,83,111,95,85,125,105,98,92,97,113,112,106,121,105,113,100,93,98,119,122,102,94,97,101,82,112,107,106,107,95,115,104,106,97,100,102,109,102,104,110,100,103,110,101,108,101,98,126,96,120,113,76,105,110,100,108,92,107,88,77,106,105,108,111,107,100,97,94,99,95,109,104,92,108,108,107,111,98,109,101,103,105,114,106,96,100,104,101,117,102,113,100,87,106,97,96,105,99,104,107,109,105,107,105,108,113,109,119,107,107,89,116,96,107,97,109,102,101,107,102,106,106,96,98,108,111,111,108,109,94,98,96,114,99,113,110,98,97,94,113,91,104,102,80,105,105,98,105,108,104,99,106,100,106,109,100,110,97,116,104,106,106,97,116,105,105,106,98,113,102,105,116,93,109,94,104,97,108,99,99,113,108,110,98,103,95,97,98,97,96,104,115,72,96,106,95,100,110,105,94,104,97,104,97,108,113,99,101,106,102,106,92,113,125,99,105,106,106,108,99,98,115,115,95,100,109,98,101,102,104,105,105,102,98,114,89,103,103,104,100,92,99,99,86,100,102,114,99,102,113,102,99,96,109,102,105,117,107,101,111,109,103,107,103,90,113,106,95,111,112,105,117,102,92,103,105,109,107,117,106,102,97,99,111,101,94,120,109,96,97,86,104,95,106,109,103,92,101,98,108,109,96,107,108,90,93,112,111,96,116,98,109,97,110,103,105,101,116,117,106,107,84,105,102,100,107,106,93,116,95,99,91,109,124,114,106,105,103,100,94,112,97,112,88,101,118,104,114,108,104,97,110,109,109,108,108,121,101,100,114,106,101,106,98,107,92,97,102,107,98,99,97,94,103,107,121,102,98,117,99,104,104,107,104,118,106,98,106,113,101,107,101,102,126,88,84,106,100,93,119,113,114,101,96,95,100,81,100,120,112,99,104,106,114,92,106,104,93,98,91,109,90,122,108,109,91,100,100,108,94,100,109,105,106,105,106,107,113,110,94,103,109,110,111,111,103,103,107,104,97,106,110,101,107,91,108,96,96,93,113,102,106,101,99,116,101,95,107,110,112,106,110,113,98,96,103,102,91,105,94,103,106,100,116,103,95,108,107,94,99,113,98,91,103,109,112,106,102,102,106,103,104,106,94,101,98,106,102,106,94,101,105,113,108,108,100,117,105,95,104,99,112,100,98,93,110,93,85,105,102,115,101,94,102,104,108,100,105,112,106,103,105,100,106,108,108,101,105,117,121,107,106,102,96,95,98,109,107,103,111,96,99,103,100,96,115,103,93,103,101,113,106,95,106,113,101,101,116,91,98,108,105,95,105,108,97,107,90,110,105,95,110,104,88,97,98,109,103,111,95,93,95,121,102,88,94,101,103,95,104,89,92,90,88,96,98,95,114,102,108,99,113,99,102,97,95,93,90,106,92,100,132,113,113,104,102,113,98,105,102,92,110,101,110,92,92,98,101,106,103,115,94,92,112,90,102,107,111,107,121,113,104,108,90,105,104,111,101,107,94,96,116,94,103,109,116,86,131,99,95,101,93,101,106,103,89,109,102,103,100,105,107,97, +462.08817,118,104,102,90,71,108,109,106,111,93,93,100,98,98,119,107,115,116,108,100,112,102,99,102,104,109,99,95,116,112,102,106,111,109,104,97,74,103,100,101,86,106,95,114,100,107,100,97,87,119,96,106,106,111,94,99,106,95,114,94,100,99,115,101,107,104,107,95,105,96,102,103,97,99,101,102,102,109,109,91,104,92,100,102,111,95,109,101,101,110,108,96,87,113,96,111,101,98,95,69,94,103,108,98,85,109,107,106,110,100,94,100,103,110,101,99,98,109,105,109,99,98,101,101,107,120,98,95,108,102,83,106,106,108,108,109,112,133,83,99,101,105,105,108,98,99,99,111,90,107,97,106,106,105,104,108,78,104,98,114,90,99,99,97,114,106,106,101,106,112,94,100,87,100,106,104,118,102,106,121,96,112,100,111,101,106,94,103,116,98,96,103,109,112,99,109,100,95,104,101,106,107,112,114,95,99,101,103,110,112,109,102,114,103,100,104,96,106,95,99,94,103,105,111,82,107,115,99,106,103,87,120,100,120,106,103,98,109,98,111,105,102,120,116,102,110,103,100,105,108,101,96,89,101,124,113,102,91,112,111,90,102,109,99,100,107,109,98,104,98,107,111,96,91,74,97,108,107,105,101,108,95,107,101,105,101,94,115,101,98,91,105,112,94,99,106,104,100,98,103,84,113,104,113,96,121,99,106,108,112,95,117,103,100,103,92,98,110,98,99,105,96,108,94,99,104,106,93,100,109,108,105,109,103,106,108,104,97,100,86,104,106,101,95,105,100,96,107,117,105,107,102,117,91,99,110,109,96,105,109,107,103,115,86,95,113,114,113,96,108,114,101,107,98,107,94,110,107,109,105,99,112,109,105,103,110,79,113,98,103,104,96,99,115,98,102,107,102,105,116,104,113,111,109,108,102,90,97,99,105,95,114,106,105,101,138,112,92,96,105,96,101,91,100,100,97,104,106,102,100,109,96,116,105,91,94,112,114,101,101,110,102,101,105,92,100,109,99,95,108,107,103,110,109,104,93,96,99,104,104,96,105,105,101,106,99,110,70,96,104,96,105,112,98,95,97,101,103,95,95,102,129,108,105,92,98,101,112,97,113,113,90,106,97,105,99,113,109,103,106,108,108,104,98,106,98,94,97,114,116,110,101,93,117,97,109,99,108,106,103,107,109,107,82,98,108,102,107,103,116,103,95,103,90,104,113,109,100,97,113,101,106,105,95,89,95,119,97,106,91,89,117,106,102,95,106,107,106,107,98,122,105,107,103,114,113,101,108,103,100,97,105,107,104,101,103,90,106,101,104,121,99,96,98,113,100,121,115,116,96,105,95,104,101,123,100,103,100,104,106,107,143,107,98,105,90,102,106,113,99,104,117,94,101,101,99,113,111,105,113,90,106,94,108,117,101,100,115,99,100,107,84,99,102,103,126,110,105,95,104,93,109,106,105,103,102,100,100,103,100,104,95,109,104,105,105,106,110,105,114,108,115,110,104,109,104,110,99,95,91,99,89,106,105,105,116,98,94,110,105,113,111,100,97,93,100,92,93,112,105,105,103,102,113,103,95,115,109,111,75,99,98,105,108,118,101,88,113,98,111,93,105,100,111,92,96,105,110,103,99,113,103,94,113,102,111,109,108,112,123,96,105,95,87,105,110,111,114,103,105,89,103,106,107,122,102,103,117,103,113,122,109,97,100,106,108,111,96,97,105,117,105,109,102,100,111,95,98,104,100,109,108,113,98,96,100,105,94,89,102,90,118,104,106,109,102,95,107,107,105,97,102,111,109,72,118,94,113,104,103,93,112,105,99,109,90,103,103,98,110,107,103,101,105,104,99,98,111,88,106,109,113,111,93,117,105,121,111,106,100,101,104,103,88,107,92,116,100,103,105,100,98,111,99,107,104,94,104,92,99,97,100,110,105,94,94,107,105,98,98,97,98,95,119,101,98,102,104,125,112,108,97,110,104,104,100,110,107,105,114,99,101,106,114,117,96,99,122,99,91,110,114,98,95,102,105,101,90,100,102,110,118,100,100,113,98,109,98,100,104,99,114,112,99,104,96,95,102,108,102,110,102,106,105,113,102,105,111,111,99,90,122,98,111,99,103,96,91,97,114,106,131,99,100,99,99,103,112,109,99,100,98,107,109,112,107,95,94,93,107,109,102,104,84,99,104,95,113,101,109,101,90,99,100,102,113,100,98,106,101,107,109,92,122,106,114,88,112,106,108,101,110,103,99,104,111,110,107,104,95,108,101,93,108,113,105,103,108,90,99,98,86,106,112,104,111,100,97,99,102,110,117,116,105,107,113,102,110,104,99,104,96,112,103,101,103,96,117,111,109,97,100,83,100,80,105,111,101,102,109,102,107,111,99,101,98,98,102,100,123,97,112,109,103,102,106,100,112,102,105,102,115,110,96,96,111,105,109,94,102,105,105,96,102,107,104,114,100,107,117,92,103,105,97,94,108,104,102,99,105,106,104,100,108,95,119,115,102,105,105,110,132,108,112,113,92,109,102,104,104,110,107,95,107,98,106,113,102,110,109,117,101,113,101,109,108,102,98,107,110,97,102,101,96,101,96,102,106,105,100,107,99,113,111,100,104,124,103,103,111,106,101,107,87,100,105,100,98,102,97,107,112,110,102,103,102,108,101,114,112,106,94,95,108,99,114,100,109,111,105,95,99,115,124,103,105,108,94,112,117,103,100,91,107,103,109,103,109,87,103,116,109,99,87,117,116,104,101,105,96,114,117,104,104,100,105,95,108,98,111,100,105,96,101,103,100,138,89,102,109,91,107,113,98,117,98,95,75,110,110,107,111,110,128,125,108,103,108,93,101,106,126,105,107,116,99,100,113,109,114,95,131,110,121,99,101,102,107,111,104,104,111,103,109,103,102,111,108,116,113,104,119,125,108,96,105,108,91,108,110,102,103,106,107,92,101,112,93,96,111,102,89,99,102,105,109,100,109,104,95,108,106,93,105,113,130,107,100,115,100,113,65,98,100,99,109,83,97,107,106,108,102,106,109,99,121,105,96,104,96,108,104,91,97,94,104,96,109,98,87,107,110,103,113,98,106,114,113,98,104,104,109,115,99,100,111,100,107,107,104,112,104,96,105,100,100,105,110,109,104,79,102,96,116,107,101,100,113,108,102,112,97,90,106,113,102,106,107,108,108,101,110,86,110,99,113,94,95,108,103,123,109,98,105,106,110,109,101,104,112,104,106,106,115,108,92,115,110,115,106,110,99,106,109,108,106,98,102,109,92,100,94,99,135,99,124,104,107,110,107,113,112,111,109,110,107,94,99,104,99,93,94,96,99,108,103,103,97,103,98,100,116,112,106,101,102,109,106,119,103,117,105,101,113,104,114,109,108,117,100,101,108,113,93,104,97,99,106,110,108,99,105,96,108,105,99,106,103,92,85,110,82,95,107,102,100,103,102,102,104,117,103,107,95,109,115,96,105,115,112,110,101,115,101,108,110,99,122,85,101,95,105,105,112,94,95,104,106,101,128,101,110,106,102,98,105,108,96,100,113,113,90,116,108,87,101,117,93,107,101,103,98,109,110,112,125,96,110,107,97,92,106,112,116,101,84,107,104,109,109,102,98,106,104,100,102,102,97,103,110,115,109,91,96,102,117,105,105,107,94,92,124,94,111,88,94,107,95,108,89,106,100,108,109,102,98,110,112,109,108,95,98,113,102,111,102,109,98,94,105,97,93,107,93,110,118,95,106,117,107,97,103,94,106,121,110,109,104,97,101,120,110,103,113,116,102,106,120,104,112,99,101,119,108,99,105,109,107,105,116,105,106,106,98,104,119,106,100,100,113,106,114,107,109,115,106,95,103,103,104,100,114,109,96,107,92,113,105,105,97,101,112,114,109,95,95,112,102,97,84,98,100,107,113,112,102,97,112,109,108,90,108,98,116,99,110,128,112,97,96,112,98,82,108,102,112,113,72,100,112,110,104,97,96,90,108,98,107,92,104,103,95,103,110,94,101,119,98,114,102,116,97,103,113,101,99,105,112,99,106,102,109,104,111,93,104,97,102,96,110,94,110,129,104,99,104,85,119,97,99,105,115,109,101,109,99,105,105,109,85,95,101,99,107,107,92,107,104,103,99,96,104,95,95,98,99,115,98,108,105,112,109,100,107,106,106,115,114,113,96,91,98,104,101,100,90,98,106,101,104,108,90,101,99,96,106,104,129,104,95,103,99,107,93,103,107,96,105,105,105,106,103,114,119,106,108,106,103,104,108,95,119,109,108,106,100,104,102,100,108,106,115,116,97,105,106,118,113,99,112,114,97,119,107,104,109,107,95,104,110,101,117,99,96,102,95,113,102,102,105,105,114,104,96,89,105,116,102,111,101,96,105,105,108,100,110,102,121,101,95,108,101,107,97,113,98,109,104,112,95,107,101,114,118,102,111,120,100,115,102,96,108,102,102,104,110,105,102,102,99,103,102,90,108,104,103,113,103,117,119,108,97,100,104,101,112,104,99,102,93,96,110,109,118,89,110,101,100,112,101,102,115,121,98,102,106,84,126,99,105,91,99,100,88,113,107,109,105,125,107,99,124,102,113,106,99,114,124,102,95,98,100,101,87,108,102,103,105,103,97,95,101,105,108,100,100,111,105,86,100,110,102,101,96,105,102,96,114,106,101,101,104,106,89,105,101,93,103,106,92,97,102,110,113,109,113,125,101,116,92,113,89,105,120,93,112,106,100,113,106,100,99,105,106,103,105,96,95,102,98,98,116,96,92,99,103,101,116,104,116,123,108,103,101,94,99,121,87,111,93,94,100,105,87,99,102,97,104,97,97,111,112,85,100,117,99,102,99,101,125,102,96,104,97,106,95,116,97,97,98, +462.22861,101,96,101,115,100,98,114,86,101,105,101,99,104,102,95,69,101,84,98,98,73,99,105,108,96,95,113,102,96,94,98,95,112,101,110,89,89,82,107,98,98,107,98,95,104,96,95,103,102,116,109,92,107,99,102,104,103,99,104,100,108,113,104,96,104,92,90,99,89,105,105,107,95,128,97,108,99,80,113,110,104,92,102,100,98,85,99,103,112,94,107,103,111,106,92,99,102,95,111,125,94,107,97,103,95,104,107,86,86,102,107,100,101,95,110,98,91,112,117,107,99,106,96,125,102,99,105,106,107,117,107,109,99,78,103,101,100,96,109,109,96,110,93,101,101,97,103,96,95,95,97,91,104,96,97,99,104,104,97,114,107,129,104,107,111,101,101,98,95,105,110,108,98,95,88,102,112,96,106,95,101,96,98,109,104,101,104,97,105,94,90,101,101,103,113,109,108,99,100,96,101,103,92,97,97,117,94,91,111,108,103,100,110,111,103,84,110,106,106,91,109,111,116,89,94,113,96,99,100,104,99,96,95,106,107,106,112,109,105,104,117,100,118,99,129,114,122,106,108,114,106,105,98,112,101,105,100,90,92,98,99,102,93,107,102,111,101,94,100,81,106,106,101,120,104,108,92,102,100,106,97,109,98,109,100,92,102,96,110,104,96,117,93,112,107,100,100,105,96,104,98,102,86,105,105,107,107,112,107,130,92,96,94,98,110,103,117,116,111,112,113,103,97,106,108,103,91,102,116,114,109,93,106,105,99,112,117,105,99,105,98,125,112,109,102,112,95,94,114,100,102,102,100,110,105,109,114,105,99,108,103,115,103,101,110,104,110,106,99,111,91,110,110,128,105,101,102,81,102,109,105,125,99,95,89,110,97,99,105,103,113,100,97,107,97,91,99,107,100,112,110,101,105,102,96,103,100,102,111,104,104,92,107,105,105,105,98,109,108,106,102,94,107,97,97,107,97,101,109,124,101,100,104,104,107,80,99,91,103,94,105,110,97,103,98,103,95,99,102,110,104,99,97,118,99,106,96,88,99,90,107,101,119,116,109,107,102,104,100,109,100,114,93,101,111,109,97,110,100,96,97,109,89,107,110,94,105,105,99,95,107,113,107,108,98,106,105,120,98,100,109,99,94,97,103,109,100,106,103,102,104,96,106,111,108,106,106,94,105,95,109,102,111,112,94,107,97,102,88,105,100,103,104,100,99,95,110,102,106,110,92,107,125,90,109,105,101,103,99,103,107,105,102,105,104,105,114,99,94,103,99,100,101,100,100,113,90,104,102,100,101,94,99,111,90,98,98,107,102,96,104,106,108,99,110,108,116,106,110,103,96,109,105,104,103,108,90,100,109,103,112,102,115,107,92,94,109,114,109,109,95,102,105,119,93,84,113,100,100,102,95,98,104,98,119,106,102,116,109,103,91,104,91,102,113,104,107,91,106,106,106,108,104,101,100,103,108,94,102,106,99,109,101,102,106,105,100,106,110,109,110,96,108,94,87,103,100,99,122,110,101,112,105,99,104,103,106,109,110,107,94,105,110,104,98,89,93,88,104,94,107,104,87,116,102,94,98,106,103,89,104,101,99,116,98,105,109,104,103,105,91,101,110,101,97,109,97,96,99,102,100,103,111,109,89,98,109,108,105,103,96,103,97,102,105,107,102,93,103,103,113,95,107,101,113,108,105,102,95,101,103,106,100,107,99,100,87,110,90,106,96,116,94,94,92,97,93,100,98,108,106,94,111,102,100,113,97,101,113,113,111,103,95,107,95,107,109,119,110,102,104,108,108,107,117,106,97,117,106,99,104,105,93,101,99,110,96,88,102,102,112,95,106,105,113,91,106,103,114,103,119,103,110,102,106,106,97,104,103,107,102,100,111,110,106,103,113,104,101,108,101,100,117,108,94,102,93,107,99,83,105,101,99,106,101,80,102,94,98,105,105,106,96,103,93,105,94,144,104,107,100,103,102,97,100,109,105,105,94,84,98,105,103,104,111,104,91,108,100,97,117,105,103,102,108,95,96,101,96,97,102,116,114,108,100,102,108,111,108,105,100,104,111,109,102,74,103,96,92,106,110,109,103,103,99,106,95,104,105,99,97,116,102,109,100,100,98,105,112,105,91,102,115,103,86,102,113,100,104,106,103,104,108,97,101,102,108,94,102,111,121,105,91,109,101,94,98,114,93,102,94,104,97,95,95,106,105,100,84,94,96,117,100,108,107,119,91,95,104,100,110,102,81,105,106,91,99,101,98,99,98,110,123,117,119,110,105,106,116,105,99,105,105,91,98,107,114,96,103,107,105,97,103,101,103,105,122,114,117,99,107,108,92,100,111,102,97,99,93,101,92,111,98,85,91,97,93,97,99,107,104,109,107,95,105,100,99,104,109,103,96,125,100,96,99,110,104,104,111,109,95,107,91,101,100,126,112,97,95,111,106,111,101,104,84,110,107,103,107,113,106,105,106,89,96,97,104,97,105,107,107,102,108,93,94,102,95,89,110,100,112,113,106,110,97,101,101,89,105,83,102,105,107,68,106,95,112,107,127,102,99,117,102,92,93,106,113,102,102,106,109,99,110,99,109,106,103,99,110,100,115,89,114,104,112,109,106,99,109,100,119,102,103,96,103,102,102,92,100,110,109,96,107,108,111,114,105,99,99,110,106,101,106,102,102,111,132,95,121,114,105,99,112,117,105,105,95,102,102,108,108,112,114,86,104,111,109,107,105,104,105,94,98,96,110,112,111,106,123,108,98,107,111,96,103,108,105,100,114,100,98,108,104,88,110,107,116,103,83,109,106,99,102,110,101,107,101,112,96,110,106,101,103,98,95,101,87,114,104,107,116,98,109,92,106,102,106,97,97,110,106,102,102,113,102,92,112,112,99,110,100,102,105,100,101,103,99,115,112,121,103,106,100,103,94,95,76,98,106,108,105,102,97,96,89,102,103,111,98,104,97,95,98,106,98,113,108,91,106,96,94,117,102,97,101,94,114,96,111,99,100,102,96,112,120,108,96,102,103,96,108,80,112,108,102,110,85,96,108,95,103,112,101,93,98,101,101,97,96,112,104,105,111,108,105,104,103,104,99,94,113,107,104,92,112,107,92,104,97,102,101,112,94,99,103,117,110,96,103,95,100,91,106,101,104,88,104,101,105,108,110,117,98,112,113,105,102,104,104,99,95,105,105,96,100,106,102,112,97,104,105,103,101,100,90,100,115,101,108,108,108,115,113,103,115,105,107,106,96,108,90,106,108,105,99,106,98,98,106,89,102,94,101,103,109,104,99,107,102,87,97,102,100,81,113,110,107,100,104,110,95,116,103,93,128,97,112,103,96,105,111,121,109,107,103,109,107,98,98,107,106,109,92,104,117,111,107,101,103,99,97,102,101,81,95,102,115,110,101,107,97,99,90,103,96,98,80,102,108,108,110,107,95,101,98,101,106,91,96,94,101,104,103,108,109,103,99,94,110,113,99,99,104,121,113,113,99,100,93,100,107,106,106,84,132,101,98,109,102,104,98,104,101,100,115,117,98,109,96,104,116,102,104,78,109,97,108,98,107,98,104,97,109,102,104,116,113,107,99,98,105,100,126,101,102,94,99,105,120,104,107,104,102,98,96,91,117,95,90,106,104,104,104,113,103,102,102,107,100,109,107,112,101,103,96,102,95,100,114,96,100,100,101,103,102,101,98,103,107,96,97,105,110,100,102,103,111,110,103,102,107,109,100,97,103,112,102,107,94,108,98,102,101,106,102,96,113,117,108,109,100,107,97,104,104,87,103,117,102,106,114,104,101,95,107,110,100,99,106,110,122,106,124,94,92,140,113,112,100,113,103,106,99,101,104,102,105,109,103,104,111,105,90,99,112,109,109,109,97,125,97,102,104,112,98,96,101,101,89,96,89,98,113,102,103,101,107,103,113,99,105,101,88,104,104,106,100,102,104,100,102,101,102,102,108,109,103,93,124,110,106,111,101,109,107,99,106,109,101,105,102,112,100,100,97,87,115,106,104,100,103,86,104,105,103,91,106,117,108,104,90,106,113,105,100,111,116,104,108,101,103,102,109,100,96,117,108,100,103,106,101,92,96,109,103,102,102,95,106,112,100,103,99,109,101,101,108,103,99,100,102,109,98,96,113,116,106,99,100,99,104,112,109,105,106,116,103,103,106,108,109,95,98,101,103,113,127,109,108,110,104,110,111,110,102,111,106,109,114,100,91,91,106,99,84,104,96,100,95,106,102,106,103,109,107,106,99,100,109,109,88,108,111,101,106,95,102,102,105,92,99,101,110,105,97,106,113,100,108,102,128,94,104,100,93,99,99,115,98,108,109,95,111,93,90,104,101,107,103,96,111,103,104,96,98,104,96,99,111,100,90,95,97,102,102,100,98,107,94,98,112,112,89,102,96,109,93,98,102,96,96,105,112,106,102,95,103,97,95,95,98,95,98,87,113,98,90,103,104,101,76,99,102,102,115,92,95,116,95,99,97,130,102,100,83,108,107,104,101,110,88,98,91,113,115,102,117,101,97,102,102,100,98,103,89,101,112,101,99,95,82,96,109,117,100,104,101,106,103,106,102,102,116,104,103,116,112,112,110,110,107,94,109,88,104,95,99,103,100,100,100,95,108,109,109,99,101,81,106,83,97,85,106,106,96,96,107,95,108,113,120,104,117,96,100,107,117,87,102,106,98,101,98,99,103,99,99,99,104,122,103,112,100,115,105,91,109,113,101,112,113,113,98,108,102,100,98,109,94,107,110,101,113,94,103,107,93,106,91,97,114,106,132,73,108,123,105,105,98,113,117,115,117,117,99,101,91,87,99,95,116,97,96,93,106,77,88,100,114,105,91,112,99,93,111,97,109,100,105,105, +462.36905,75,100,87,101,109,99,70,103,102,108,103,107,92,106,103,96,108,89,112,101,90,103,103,113,112,116,103,118,98,98,107,106,104,104,107,84,105,116,109,98,99,106,102,97,104,94,84,113,105,99,109,104,101,105,94,102,85,94,99,108,95,95,99,112,103,114,128,109,108,88,108,103,101,105,100,111,104,107,116,107,102,103,108,103,97,90,104,96,105,97,114,102,129,100,111,109,99,105,96,103,99,95,103,97,100,102,94,105,117,91,114,93,123,96,114,110,96,104,109,98,96,101,99,105,92,116,116,105,105,118,115,117,124,99,114,116,98,110,101,112,95,106,99,114,108,94,103,95,99,109,102,101,106,101,92,91,103,100,95,104,103,89,108,91,103,100,107,106,105,106,105,108,97,108,117,98,91,99,98,116,92,104,104,113,92,108,94,99,121,97,103,98,90,95,118,92,88,104,105,96,100,91,105,99,78,100,106,108,101,109,101,98,94,108,113,88,100,107,115,109,109,109,99,101,100,104,108,99,99,117,103,116,113,87,102,99,106,100,104,100,106,116,102,109,106,114,111,117,85,100,102,102,113,100,108,92,99,99,96,105,86,109,100,104,94,98,94,102,102,102,101,103,99,138,110,101,96,98,95,98,106,105,103,116,106,99,101,106,105,115,98,100,117,85,105,117,104,103,109,103,106,107,95,109,114,117,104,109,105,110,87,112,104,98,99,116,107,102,105,101,96,105,103,105,110,96,121,104,111,101,116,97,99,102,134,105,112,99,93,109,104,102,101,101,118,107,97,103,107,108,108,94,77,91,116,99,99,106,102,109,104,103,102,91,102,96,117,104,97,96,122,112,111,102,118,99,96,96,102,106,111,107,104,104,107,93,100,115,100,101,99,101,111,109,111,96,109,102,104,118,100,104,101,102,107,106,101,108,104,105,96,95,113,93,105,82,120,109,104,95,91,103,100,97,102,96,108,102,102,110,83,108,106,104,106,100,101,107,96,93,116,104,104,100,93,115,103,104,107,124,106,115,101,103,106,108,107,109,108,109,106,108,106,95,102,93,101,105,101,99,104,118,102,98,108,118,99,120,107,109,101,110,104,100,113,97,110,110,106,105,109,110,112,105,92,113,96,106,103,113,116,99,118,94,118,102,91,105,113,95,138,112,108,98,112,107,102,106,100,101,108,101,105,101,99,118,87,105,95,109,97,115,98,106,102,109,116,101,106,108,107,112,112,108,117,99,99,117,107,108,91,109,101,105,109,97,114,108,94,108,99,104,125,104,95,103,117,103,98,104,99,104,106,110,99,118,114,109,104,104,107,102,110,103,91,118,114,111,109,108,119,97,99,110,112,101,107,105,107,103,101,103,107,96,95,109,109,108,106,99,102,101,106,105,107,97,104,101,112,91,113,92,89,120,102,98,104,107,110,109,87,109,105,102,96,75,108,104,122,105,105,109,101,96,102,106,103,116,101,122,106,110,114,101,106,99,109,105,103,94,113,96,107,107,110,103,99,104,100,95,102,109,115,105,107,103,101,108,100,99,102,98,112,99,104,98,118,113,109,118,93,112,112,108,106,103,116,103,105,96,112,97,105,102,102,94,103,119,101,110,107,111,110,94,105,111,108,96,94,96,103,106,106,99,100,106,100,128,111,108,108,98,97,97,100,99,113,111,129,109,113,100,102,107,99,106,106,107,108,98,113,119,94,111,104,113,96,109,105,100,114,103,108,103,99,100,98,114,106,98,103,111,102,109,100,118,97,106,95,114,111,99,111,110,98,114,105,107,104,103,89,114,104,103,102,113,101,108,107,121,98,92,105,95,109,113,118,116,104,94,114,93,100,95,102,102,110,91,115,90,108,108,109,103,104,107,110,105,114,107,104,115,119,113,110,110,109,119,107,107,88,104,111,89,105,117,113,110,92,87,104,96,95,95,102,105,123,107,103,121,94,105,117,114,106,110,113,100,96,118,83,106,105,113,97,110,98,102,123,99,116,114,99,106,118,103,84,109,105,106,113,98,116,113,109,110,104,96,109,107,88,108,114,114,103,109,101,99,98,101,99,104,117,99,100,108,103,100,106,105,102,101,110,104,104,104,106,102,110,107,107,109,107,96,97,105,99,106,100,114,108,105,109,113,102,95,100,106,107,112,109,97,115,106,66,117,110,114,112,104,114,106,98,105,115,105,93,95,99,100,106,99,112,106,104,114,102,110,96,92,97,98,96,98,105,106,105,109,102,107,105,95,94,102,104,117,96,90,102,110,98,106,102,92,105,100,105,100,105,96,96,100,103,97,111,104,102,99,100,102,96,105,107,96,116,114,114,118,96,98,105,99,103,104,107,94,95,116,109,106,99,111,100,99,97,113,99,110,99,104,99,100,95,95,110,104,108,117,104,118,102,100,110,104,102,99,103,97,104,115,105,104,96,112,106,111,101,109,105,103,110,108,98,95,109,103,103,106,103,110,91,108,103,95,97,107,108,95,116,116,112,108,114,98,112,112,96,94,98,100,102,105,101,102,118,104,97,100,100,113,112,103,103,103,98,116,102,107,102,113,109,95,93,108,114,96,108,109,114,89,102,105,107,116,102,104,105,101,116,91,108,90,122,102,113,107,120,120,116,109,113,103,101,100,92,107,112,113,102,113,98,110,110,105,102,85,110,111,117,113,103,108,110,90,102,108,106,94,103,99,105,99,106,102,90,107,103,110,99,106,107,109,112,107,112,101,105,107,113,109,108,111,101,110,106,101,83,109,115,104,106,108,106,114,102,109,113,117,108,96,106,111,101,107,108,111,106,124,95,108,108,99,118,93,99,99,110,106,98,108,105,102,116,103,90,98,111,110,107,102,109,100,102,112,96,101,108,105,107,108,108,112,108,110,104,91,94,106,100,102,117,97,104,105,107,115,105,104,97,104,99,99,106,103,103,109,123,90,101,123,113,103,121,113,108,99,99,115,104,99,84,107,86,101,115,107,97,102,105,92,106,104,95,99,106,88,99,103,105,98,112,94,110,110,99,104,76,96,109,107,109,110,106,96,103,110,111,108,109,116,107,111,99,110,109,98,106,98,104,101,121,112,111,101,117,103,107,120,101,99,108,112,117,111,112,103,111,124,108,108,109,102,109,102,106,104,104,124,100,107,107,105,102,108,107,111,117,104,114,108,106,110,102,110,113,109,116,102,104,113,80,100,105,108,121,113,103,121,120,125,99,108,94,112,104,116,104,95,134,100,100,106,111,119,119,109,89,107,116,111,106,107,108,103,111,99,93,115,104,115,105,111,113,105,110,102,110,112,105,100,108,109,107,102,105,101,98,102,111,109,99,109,98,107,101,90,102,107,116,100,97,95,100,107,108,107,80,101,102,104,105,97,113,110,102,111,104,103,101,105,94,107,104,111,90,94,104,102,108,110,105,85,105,93,111,102,93,111,104,109,107,98,108,109,114,111,100,104,119,92,106,99,92,94,111,103,116,92,104,100,102,105,104,104,106,112,109,99,102,106,115,93,109,102,109,110,104,97,96,104,97,120,110,96,109,87,117,98,102,115,111,104,108,103,111,108,102,103,112,103,99,114,106,97,102,100,114,98,100,112,91,113,96,100,62,96,99,99,107,104,97,101,109,103,110,107,109,99,106,98,105,106,101,113,87,98,113,116,108,109,102,117,98,95,130,98,105,114,107,115,116,116,113,106,116,96,106,105,115,99,112,109,108,99,106,104,119,120,105,83,98,96,102,109,115,106,109,93,107,98,99,107,107,97,96,114,95,103,105,103,105,102,97,101,105,88,100,113,103,104,112,98,108,109,101,101,113,96,97,105,105,111,106,99,109,111,95,102,101,95,112,103,106,109,103,114,107,106,103,107,102,100,101,95,90,109,98,108,105,109,101,113,121,104,107,100,135,94,128,109,114,110,105,103,112,100,112,106,103,115,105,103,103,104,96,97,102,112,110,115,98,100,91,95,102,104,98,116,104,119,108,101,107,102,96,104,103,106,104,118,89,105,108,106,109,105,115,88,109,118,112,111,109,102,102,110,99,99,106,105,127,100,96,98,104,105,107,104,104,107,110,113,107,116,100,99,105,101,107,117,82,107,100,106,112,114,110,101,106,102,102,103,88,104,110,101,103,94,91,114,102,108,100,125,105,101,124,106,109,94,113,109,114,103,103,106,106,110,99,106,106,110,112,105,103,95,107,108,88,101,102,106,90,100,104,109,104,103,109,95,113,105,96,89,104,117,110,96,108,104,109,104,128,105,114,109,113,102,105,110,94,118,102,103,93,96,113,95,106,106,108,105,105,99,115,113,112,108,103,99,114,95,102,111,95,107,109,95,106,116,106,116,120,103,105,107,106,115,103,114,106,108,110,108,94,106,113,101,107,109,105,97,103,106,101,101,102,101,97,96,103,93,111,99,106,103,113,98,96,107,101,111,110,133,106,104,107,104,101,102,94,108,103,98,110,104,97,105,92,108,100,102,113,119,113,95,92,95,96,105,103,98,103,105,98,101,92,94,91,99,114,89,96,96,96,95,100,102,109,111,95,100,121,110,102,105,102,111,97,99,99,99,106,115,106,114,100,109,109,101,99,107,104,101,111,125,108,119,125,89,112,96,110,98,98,98,103,106,105,101,102,96,112,106,140,109,96,112,96,102,118,107,95,112,106,96,108,118,97,99,108,120,116,106,87,110,106,93,103,105,102,92,100,89,107,99,111,90,106,115,116,106,106,112,106,101,108,107,106,100,95,94,105,114,95,117,105,107,101,108,105,110,108,96,95,110,83,109,103,105,105,105,107,101,121,109,100,111,97,88,114,108,114,117,89,118,104,99,105,83,93,114,105,94,106,104,96,103,111,113,123,106,101,105,107,96,111,101,101,92, +462.50949,109,109,89,96,100,100,106,103,101,104,97,122,108,115,107,105,103,98,109,89,113,105,96,118,109,105,95,92,86,94,104,97,104,85,106,109,81,96,94,95,89,101,100,94,103,106,106,91,112,99,103,108,117,102,91,100,104,112,77,97,108,111,95,109,100,119,95,96,106,95,102,101,103,112,98,116,104,102,109,99,122,98,111,107,98,94,123,108,96,90,109,109,102,112,81,109,122,106,109,95,103,104,115,104,102,87,102,104,103,105,99,108,107,111,104,98,97,103,110,96,106,124,103,129,109,117,95,102,106,102,101,98,108,113,104,92,92,103,105,108,104,95,108,127,99,102,118,106,107,99,110,112,111,90,86,101,106,97,97,107,106,107,97,117,108,100,110,101,96,101,94,98,120,107,108,97,115,96,99,109,104,100,117,102,104,106,88,93,100,94,97,99,91,126,101,108,105,117,100,109,94,113,108,93,99,99,108,129,103,100,105,107,109,103,109,124,99,99,95,96,106,104,110,95,108,97,102,105,109,113,95,103,114,106,111,106,102,110,115,109,98,111,104,102,104,97,95,103,103,103,106,112,107,103,104,102,101,106,92,104,99,104,105,95,86,105,89,100,113,106,106,125,96,97,104,94,113,121,95,103,113,105,107,118,109,106,90,100,105,103,107,86,108,114,115,120,105,101,94,110,103,113,111,114,100,104,109,112,109,108,117,109,113,112,97,107,108,100,105,116,110,109,108,107,104,104,118,96,107,120,115,104,103,106,98,116,98,98,105,91,110,109,102,103,105,99,107,109,101,113,81,113,101,104,99,113,97,124,104,100,96,112,96,107,113,100,109,108,110,101,110,110,99,98,78,97,114,113,102,102,105,89,103,93,99,98,95,117,94,88,103,94,107,105,103,112,102,108,108,115,102,109,104,110,100,102,112,103,111,97,95,106,113,107,104,95,111,92,113,103,113,97,103,102,98,103,105,104,107,114,107,105,109,107,114,90,95,104,98,96,111,108,109,99,100,104,95,96,90,102,108,103,114,112,110,102,95,108,104,108,111,112,116,106,94,100,116,99,92,113,117,107,99,100,99,97,101,108,101,108,95,94,131,88,100,97,121,112,103,99,98,105,92,105,81,125,103,109,106,103,108,101,115,105,108,100,112,90,116,101,109,97,105,105,110,107,104,100,101,104,105,103,70,105,108,101,104,105,101,103,115,117,103,85,104,86,103,111,114,102,103,108,104,108,105,97,121,104,104,109,110,99,99,106,102,107,109,99,97,109,99,95,99,110,100,105,110,95,108,106,91,101,85,109,105,100,92,105,110,110,116,110,106,93,93,105,113,114,103,95,105,123,105,102,106,124,100,101,113,101,101,107,106,100,102,94,106,104,101,105,106,108,117,106,112,98,102,118,113,111,100,103,95,95,99,103,104,123,104,95,103,108,101,106,101,103,97,105,103,105,111,109,98,114,100,106,109,119,111,101,109,101,100,99,102,100,103,112,107,104,111,98,114,112,109,112,118,98,100,99,114,106,100,96,83,99,101,95,113,108,99,98,101,109,109,97,94,103,102,107,110,96,102,103,98,99,114,103,98,109,111,91,108,108,97,108,110,119,89,108,106,99,105,95,108,109,100,109,94,107,119,110,97,112,111,101,99,100,113,119,98,116,106,107,105,90,97,102,100,91,102,91,105,108,109,114,122,104,117,113,101,94,100,103,102,108,104,104,107,94,104,126,93,94,105,104,100,112,99,109,108,107,113,101,106,102,101,100,94,96,114,111,115,102,97,116,119,110,92,115,112,104,105,113,106,106,90,95,96,117,100,90,93,109,113,101,111,109,101,102,109,97,100,106,111,107,111,108,101,103,98,103,104,107,102,111,98,110,96,103,99,119,124,120,102,99,123,99,115,104,100,108,101,106,98,89,116,100,106,95,102,99,97,114,96,99,98,117,93,102,102,103,125,102,113,100,103,106,109,104,110,104,97,106,78,102,102,99,111,91,107,103,106,103,102,106,100,116,98,110,100,104,103,116,114,98,95,112,95,105,93,122,107,112,96,93,93,99,100,109,112,103,103,103,93,95,114,114,99,98,94,102,104,109,104,115,99,91,112,90,103,119,104,109,99,100,102,87,118,98,99,109,104,111,90,109,105,116,99,105,106,105,114,96,112,103,106,91,117,113,102,116,115,99,117,98,99,105,112,100,108,105,94,111,106,101,96,100,107,94,95,106,66,109,106,104,94,98,107,104,96,95,92,98,108,97,105,99,96,97,102,98,97,109,96,98,124,104,97,98,99,113,101,104,113,105,103,101,104,113,97,99,110,97,91,104,101,110,95,92,95,98,110,99,103,94,108,120,98,108,103,117,111,102,110,98,113,91,110,105,98,106,109,108,90,109,109,99,108,132,107,106,101,107,102,109,113,114,106,92,109,121,100,112,114,107,101,103,108,119,112,105,117,104,106,95,95,102,107,117,109,97,103,95,98,111,101,94,115,104,101,103,116,87,110,87,92,102,98,107,111,98,99,110,107,85,100,102,107,102,97,94,109,105,100,109,111,107,106,105,85,99,109,101,111,96,92,99,111,92,103,107,105,110,105,101,94,91,104,105,103,95,105,103,106,94,106,112,107,110,105,94,110,100,100,103,100,107,115,97,100,93,106,104,94,121,109,103,101,94,100,101,99,103,98,100,95,104,110,109,98,105,105,104,97,99,94,99,104,107,105,110,90,105,106,108,106,109,102,98,91,108,101,106,115,108,100,100,108,108,103,107,95,106,102,118,109,105,102,111,114,101,94,104,99,93,100,105,109,96,95,104,102,94,104,96,102,105,105,102,104,113,108,105,100,101,97,108,92,101,103,97,97,108,119,99,106,94,109,99,111,98,109,106,108,109,112,92,94,123,107,102,99,91,109,99,98,104,104,105,105,113,107,107,103,101,101,96,99,109,97,96,100,104,107,104,88,104,99,111,105,97,99,109,108,113,98,106,115,98,99,105,96,115,97,105,105,106,91,109,85,89,100,103,117,100,104,95,93,102,110,103,99,105,100,106,102,101,101,99,120,113,105,106,100,114,100,102,99,96,109,91,109,108,96,102,105,96,101,113,103,91,111,107,106,101,113,102,92,97,106,76,99,99,106,106,99,112,112,96,103,99,106,108,108,96,108,108,110,115,101,105,103,105,105,107,90,109,101,100,100,105,111,113,106,87,101,103,112,109,106,76,101,98,95,106,116,101,112,112,98,96,107,99,97,99,100,107,112,98,103,95,101,101,102,103,101,98,103,95,105,95,108,116,105,113,100,99,101,104,124,103,94,93,98,95,96,113,102,101,104,117,112,103,108,99,102,102,95,108,87,110,101,99,102,112,103,100,94,105,104,108,105,95,115,102,102,108,96,102,92,101,101,99,98,94,100,102,105,107,107,100,101,111,79,109,108,105,105,101,98,109,116,105,97,113,106,94,94,95,98,101,95,83,96,102,102,104,104,106,114,106,95,107,103,119,103,90,95,105,103,100,112,104,105,106,104,107,104,107,99,110,95,104,111,102,80,100,108,103,124,112,97,106,105,103,109,95,94,105,111,109,91,99,100,97,111,105,97,103,102,92,103,117,101,94,102,105,106,97,105,104,107,109,104,102,102,96,98,111,93,111,102,116,89,104,96,107,99,102,99,107,98,107,106,107,102,105,103,97,110,92,94,108,97,101,98,107,100,98,97,101,96,101,112,101,110,97,90,97,105,93,109,103,96,100,94,100,94,102,107,98,99,104,102,103,100,111,99,111,95,107,128,99,93,98,109,103,111,99,104,93,107,98,97,108,98,102,96,91,100,103,105,104,95,105,105,94,106,92,107,104,97,109,101,101,98,96,103,109,98,94,95,90,104,98,95,96,100,94,102,102,105,97,103,100,112,93,100,105,98,107,106,95,99,104,92,107,110,109,106,94,88,114,99,102,96,104,109,97,105,103,101,96,95,108,100,101,97,114,107,99,103,111,103,106,81,115,103,108,114,95,101,97,100,91,107,102,107,101,99,108,95,102,107,104,81,93,109,107,101,97,105,100,109,102,92,120,82,105,105,99,117,106,111,102,104,94,97,96,109,100,95,102,108,102,99,94,93,101,107,94,111,105,103,92,108,98,99,98,99,97,95,98,104,100,106,103,104,100,100,102,89,103,97,103,103,95,102,98,112,106,100,106,105,102,99,97,96,102,103,100,94,113,89,102,118,106,99,101,94,83,100,104,107,107,93,107,102,110,102,100,97,102,107,96,117,119,97,94,99,103,104,81,91,110,111,107,116,100,104,106,102,113,113,102,112,103,98,117,105,111,102,100,98,79,98,105,91,105,98,104,117,111,103,104,90,102,111,102,93,98,103,105,108,106,100,106,99,84,101,91,103,126,101,85,95,105,99,111,97,124,104,88,110,101,92,108,89,106,100,100,113,101,98,117,99,82,104,85,79,98,109,106,102,103,100,99,80,106,96,93,100,101,105,91,98,104,98,98,100,96,105,101,92,101,105,100,109,97,107,115,110,105,104,101,106,95,106,105,105,98,88,78,99,101,106,103,97,100,97,99,94,103,110,98,100,91,104,107,96,98,94,103,103,102,101,105,98,107,101,118,102,99,103,102,100,100,100,102,97,97,104,102,104,80,108,87,99,102,111,108,94,104,92,93,105,99,92,94,108,102,102,99,105,90,113,109,106,106,94,110,105,97,99,107,107,98,112,89,105,77,97,102,90,102,105,105,96,118,96,102,107,95,109,100,113,101,91,83,100,99,109,94,101,98,100,98,115,90,108,112,107,102,103,113,104,95,83,91,123,110,131,99,96,99,113,92,110,85,95,105,98,91,101,100,113,98,109,94,101,97,101,96,124,104,113,87,101,100, +462.64996,119,94,93,104,96,88,102,95,103,95,101,103,91,105,104,102,102,112,98,103,110,100,96,108,102,87,101,99,110,105,89,105,95,105,99,102,92,93,101,93,109,97,98,101,102,107,105,101,97,121,100,113,112,113,99,106,95,95,109,98,96,96,100,94,91,98,94,100,103,106,85,113,92,111,97,100,65,100,95,116,110,103,110,108,101,90,102,70,100,105,109,103,92,71,105,103,104,119,118,100,96,95,88,112,91,103,86,113,108,104,97,129,103,98,99,90,102,94,108,98,95,104,104,104,114,114,83,101,121,106,96,104,95,105,107,109,110,105,88,99,96,107,95,91,102,98,116,95,104,104,98,95,105,101,105,117,92,98,105,111,100,99,94,120,103,97,99,97,105,101,101,117,101,109,103,99,92,96,109,102,109,105,90,100,106,101,107,97,93,101,92,103,99,103,105,103,110,107,108,98,117,113,96,117,101,110,99,106,108,116,95,99,103,102,113,103,102,105,109,101,109,104,99,84,109,106,99,108,113,109,104,110,96,103,101,109,110,95,98,98,82,119,102,116,106,103,109,119,99,142,106,106,96,95,101,111,96,108,95,101,99,120,106,110,98,109,91,98,102,114,109,109,100,99,106,104,106,114,93,99,105,95,109,98,97,104,105,110,113,105,111,97,91,96,108,88,106,104,104,87,95,76,108,108,98,108,111,104,104,122,109,98,102,109,104,86,100,99,100,103,101,96,92,101,110,99,104,95,97,105,110,107,117,95,98,109,111,115,91,68,103,99,92,107,99,97,95,93,101,99,118,107,115,104,114,112,108,95,102,100,103,104,107,104,110,101,129,117,96,110,106,97,101,106,94,105,95,102,113,103,96,105,110,106,93,112,102,101,99,108,117,100,97,107,105,103,108,107,99,113,101,102,104,110,101,94,101,110,105,104,106,104,107,108,108,91,103,113,98,99,109,100,102,112,86,98,117,102,103,106,113,106,105,110,110,101,103,95,103,105,102,90,114,114,95,115,100,105,116,105,106,105,100,92,103,101,101,104,115,92,105,101,94,112,106,108,117,95,96,96,106,102,103,106,102,99,97,114,128,97,92,98,94,95,103,99,107,102,107,107,100,109,99,107,98,104,106,97,103,88,103,89,99,111,106,114,91,92,101,97,107,106,102,91,101,99,102,98,106,113,94,104,103,95,95,89,100,132,112,96,100,109,111,91,98,101,102,104,106,105,100,103,98,113,109,96,105,113,112,110,99,108,100,115,104,99,97,98,95,102,112,110,100,99,107,108,104,113,106,105,93,94,91,101,113,118,110,109,93,103,100,95,111,104,107,107,107,107,99,94,92,103,117,105,103,120,99,103,96,100,99,108,112,117,104,93,100,94,107,104,94,104,109,105,116,101,109,105,110,108,100,94,107,110,95,109,97,92,113,109,100,112,100,98,102,112,107,111,101,108,96,103,104,106,86,90,92,98,112,107,91,93,106,100,86,91,83,120,101,106,104,105,104,99,97,103,116,97,107,112,102,104,109,105,93,101,88,114,101,99,109,110,102,97,114,101,114,100,96,109,104,115,107,98,95,116,109,104,100,110,95,100,113,110,99,106,100,108,100,107,104,101,87,103,100,95,71,102,94,110,73,98,109,119,94,93,102,110,105,114,97,102,101,96,102,99,100,100,112,91,97,98,109,92,117,98,98,107,102,94,116,101,94,92,87,109,97,105,112,113,82,96,98,128,93,103,106,102,113,95,108,108,101,107,105,102,100,122,100,106,100,96,120,110,107,99,104,96,107,112,99,106,74,109,90,120,101,106,107,113,94,105,108,100,104,103,102,102,98,90,107,100,91,100,95,103,105,104,108,105,103,107,104,104,97,117,111,104,98,104,106,101,109,93,118,115,92,109,117,100,105,74,93,99,105,96,93,110,91,92,95,90,101,107,94,107,100,109,93,96,106,124,100,102,101,110,107,99,98,98,99,94,95,108,100,98,102,109,97,109,113,105,104,105,94,99,93,120,101,106,104,110,94,100,104,101,98,93,96,104,110,121,105,102,104,124,104,100,106,104,104,125,108,113,102,99,95,109,99,113,98,100,90,99,101,110,117,95,113,112,104,108,99,110,107,113,103,99,99,106,106,100,116,97,94,97,110,94,103,94,104,112,95,98,110,99,122,97,111,106,121,106,107,100,107,96,104,97,91,117,101,100,115,105,107,107,114,98,86,114,104,98,103,97,96,98,104,105,91,104,109,100,98,106,93,109,82,103,106,113,62,94,99,98,105,101,104,93,100,107,98,114,92,96,96,98,93,97,107,77,122,89,103,98,114,83,107,98,114,70,108,95,99,98,89,94,104,103,96,90,96,104,98,107,104,100,97,87,91,110,111,99,107,111,98,102,103,109,87,94,103,117,95,94,102,101,105,105,117,96,112,114,105,110,98,109,108,103,87,93,103,90,90,111,111,109,120,113,111,95,114,102,108,100,96,109,102,93,110,108,102,86,110,114,95,111,98,102,97,103,101,115,111,107,112,95,96,114,99,108,99,111,104,108,90,110,101,108,107,113,92,103,102,113,104,98,87,108,100,103,109,90,96,107,109,113,105,111,107,100,106,105,101,95,112,97,99,100,114,100,105,96,115,105,109,101,95,105,102,103,98,94,103,104,101,95,103,105,109,98,100,98,96,109,94,91,111,97,109,99,100,92,107,99,102,105,108,95,115,90,92,108,110,104,107,108,112,100,102,92,96,106,97,110,95,103,109,105,109,98,101,103,115,89,106,105,108,105,96,99,106,108,103,105,95,98,106,103,112,87,121,99,104,92,100,97,102,107,111,118,105,97,107,104,102,113,106,103,108,110,109,98,93,103,102,92,99,92,97,110,99,102,99,110,107,107,98,107,117,94,109,103,98,108,105,94,96,95,107,117,96,100,105,104,93,101,102,109,103,110,108,112,101,102,103,93,105,105,94,103,100,105,105,96,105,109,114,110,104,109,95,106,100,104,115,105,103,105,100,102,111,106,106,107,122,106,112,105,100,96,85,102,114,94,81,95,119,91,105,99,102,112,100,114,96,95,109,107,107,100,109,96,112,103,106,103,108,96,104,97,103,107,101,112,95,82,100,105,95,71,97,91,101,95,99,99,117,108,109,108,79,84,98,121,125,100,91,107,102,94,100,104,101,99,105,113,95,106,105,101,105,103,109,95,112,101,112,105,103,106,92,106,101,119,98,99,98,104,113,90,117,109,125,101,101,93,103,127,100,93,102,100,99,101,112,108,103,104,99,106,105,93,120,112,88,91,102,99,104,105,110,108,101,106,104,107,106,95,97,97,95,109,95,88,100,104,98,104,104,105,95,104,113,112,99,98,93,96,98,87,105,108,105,102,111,109,95,109,97,108,101,107,98,79,104,106,107,102,102,102,94,87,97,99,101,95,108,104,114,97,104,101,105,94,95,112,103,102,105,105,95,100,97,102,104,100,99,101,121,98,95,104,98,114,103,118,113,111,120,99,102,115,89,103,105,98,109,99,105,118,96,103,107,94,105,115,101,91,106,105,108,94,99,109,100,102,101,103,100,101,108,107,102,104,94,79,99,113,79,91,96,106,109,102,103,101,103,104,105,101,99,112,101,96,117,104,94,96,102,113,104,94,100,112,110,94,106,83,105,96,102,109,98,104,109,117,119,92,108,93,107,98,98,103,96,113,98,101,105,96,108,104,99,92,110,117,102,100,109,103,109,109,109,101,103,106,112,92,108,110,99,94,101,93,97,100,96,108,93,104,100,105,87,111,105,100,91,93,101,102,106,95,102,101,97,96,102,101,95,103,88,101,90,104,109,100,104,95,119,115,106,108,101,98,107,99,112,102,97,104,116,106,95,108,106,92,83,96,101,100,104,105,106,110,96,109,91,102,112,109,108,88,105,108,98,102,126,107,96,108,112,96,101,117,101,112,91,111,91,106,95,110,107,100,110,103,105,92,99,106,110,122,105,94,101,95,97,99,102,99,95,104,95,102,96,96,113,93,105,95,115,98,104,87,101,102,100,92,113,109,106,95,106,91,91,103,86,109,110,96,95,109,96,111,102,111,104,104,97,109,101,108,113,103,100,99,104,96,106,103,107,97,101,99,110,100,101,98,96,111,118,113,99,98,105,97,108,113,97,91,98,101,99,97,82,101,98,104,100,102,106,103,96,105,96,107,90,107,109,97,102,99,98,101,107,97,98,108,100,101,97,103,102,104,95,105,106,90,95,102,96,91,93,97,99,109,101,90,96,125,95,112,95,105,99,94,113,115,90,130,107,96,108,111,97,113,100,99,112,111,104,106,102,108,116,101,88,100,95,93,102,96,103,111,109,101,98,100,104,92,102,95,110,98,91,102,101,108,100,67,97,85,100,99,99,116,97,104,112,104,120,108,105,96,98,104,108,95,109,105,104,101,107,118,102,98,104,100,108,106,98,71,96,106,102,99,108,97,110,95,102,99,106,105,102,91,109,104,105,104,77,106,96,104,101,118,93,113,92,111,92,106,102,90,97,108,109,107,108,106,97,113,109,84,103,97,98,121,93,89,107,93,103,101,88,100,95,107,107,99,99,104,91,104,100,113,102,94,101,98,102,114,110,94,99,93,108,103,96,88,64,97,103,106,102,74,94,91,98,95,103,105,96,103,100,94,95,96,115,104,107,95,107,77,95,102,107,83,101,84,71,96,103,110,104,104,104,81,102,120,95,106,118,99,102,101,102,104,94,102,81,113,105,107,104,98,101,96,103,96,104,103,99,98,111,107,106,100,77,92,92,112,112,99,78,93,82,94,101,105,83,92,104,82,96,107,88,96,108,106,96,96,111,90,100,87,102,100,112,102,98,99,84,92,93,105,104,100,89,94, +462.79041,89,100,83,99,94,103,101,102,95,107,98,105,107,101,103,94,105,110,97,108,94,111,114,111,110,90,95,98,94,100,106,103,95,102,105,94,107,100,104,94,104,99,86,105,85,105,93,103,97,113,116,100,105,108,107,103,104,93,97,85,100,103,109,100,109,91,93,96,105,89,111,100,109,98,92,117,87,96,102,107,109,99,99,99,105,96,100,108,103,94,78,108,97,102,79,98,110,103,100,106,85,116,101,92,105,106,94,93,99,101,109,97,110,97,97,97,100,109,100,100,107,98,94,118,108,97,110,103,105,79,82,97,106,98,109,109,103,105,92,95,97,97,92,95,89,106,111,104,92,98,95,102,99,85,101,104,112,97,107,98,101,102,96,130,103,93,105,101,108,101,96,101,99,95,101,102,84,99,102,105,96,110,104,103,96,106,94,90,100,84,93,122,99,108,109,107,92,98,103,97,90,100,79,103,99,106,102,104,113,90,96,98,107,102,116,91,96,104,100,107,100,127,105,103,104,101,101,112,109,111,86,101,94,114,105,126,112,99,109,107,95,107,110,101,101,91,105,105,117,99,109,109,103,100,91,101,104,102,105,115,104,96,113,100,110,120,104,104,111,98,100,104,96,109,113,102,97,102,105,105,96,106,99,102,110,112,100,103,102,109,101,93,112,112,102,106,105,98,101,104,106,113,108,104,97,110,109,99,105,102,104,104,109,106,109,99,101,90,110,106,92,96,108,119,107,96,116,94,110,91,108,105,99,98,109,113,107,93,112,105,108,102,109,101,108,109,85,102,99,90,113,96,100,98,99,91,112,102,112,102,97,105,90,94,102,102,95,143,111,96,102,98,112,105,114,93,105,105,106,99,108,117,97,95,95,94,136,108,93,91,107,98,100,105,91,96,108,101,111,108,101,107,95,108,102,99,93,91,106,100,87,97,74,101,102,94,115,99,108,101,102,106,103,110,98,96,98,107,110,111,105,102,103,112,73,102,105,108,98,102,104,100,105,104,105,97,105,113,96,102,113,93,102,109,102,92,108,94,113,98,97,77,115,106,103,108,98,114,104,104,114,108,95,94,90,97,113,118,112,106,110,101,104,96,101,112,106,100,103,106,108,108,111,113,101,97,100,100,103,111,100,103,103,103,104,100,95,104,99,101,96,102,101,100,80,113,103,99,106,112,95,105,98,105,113,108,112,99,105,99,100,100,96,95,105,102,102,96,96,97,95,106,96,94,115,70,97,96,100,102,89,95,112,102,96,101,96,107,109,102,108,104,104,112,97,109,101,102,100,116,92,95,114,101,117,98,91,114,98,96,102,98,111,100,102,102,106,106,100,87,107,100,102,106,110,111,97,111,120,80,108,110,101,102,96,100,98,104,104,112,101,96,99,108,130,103,97,103,101,102,102,98,101,96,105,100,105,103,110,102,116,104,93,101,92,110,95,97,99,100,99,103,91,86,91,96,94,91,100,115,106,105,106,108,96,100,99,103,97,108,107,108,101,113,104,103,111,102,100,103,106,88,107,96,98,108,96,99,94,101,104,104,108,91,101,91,89,106,106,96,102,110,106,109,110,124,105,107,104,83,100,98,113,106,114,101,102,113,98,99,91,107,113,102,107,101,103,100,99,100,108,105,105,111,112,98,96,104,83,109,111,100,94,108,109,113,99,96,95,108,95,105,96,104,108,102,106,111,108,106,99,102,96,100,110,102,67,92,103,113,88,94,93,107,95,109,101,100,101,95,98,95,107,98,104,105,115,102,91,99,114,109,113,99,100,99,102,110,95,99,110,110,114,103,102,120,93,97,100,104,106,105,92,102,111,130,96,105,109,99,103,87,95,97,112,107,116,75,99,97,88,104,106,106,97,104,106,106,99,97,113,106,99,104,113,108,118,104,96,101,91,102,95,97,98,108,104,102,96,92,90,97,112,124,73,100,113,91,99,111,110,102,112,110,105,94,87,110,109,94,94,101,108,107,88,109,109,96,112,102,94,110,71,103,104,116,92,111,106,100,96,111,103,104,99,104,97,103,97,97,99,106,105,107,99,98,93,102,98,95,112,110,80,92,94,113,100,84,105,121,100,104,109,108,104,97,118,107,91,111,110,110,110,108,90,103,103,106,98,103,108,104,105,103,108,102,104,103,102,109,99,102,103,77,104,95,101,105,107,93,110,146,103,98,98,109,90,96,101,113,102,101,107,99,96,117,106,105,98,96,108,104,110,95,103,92,97,103,103,103,119,98,118,123,109,103,88,98,99,102,101,94,91,91,108,106,106,104,105,95,106,103,106,91,82,96,91,100,101,96,96,99,110,90,90,116,113,96,111,105,96,102,111,106,106,88,107,120,104,105,105,94,96,92,98,98,114,91,104,111,93,107,89,87,99,99,110,95,104,101,95,101,101,99,97,101,91,92,97,105,104,115,102,98,118,109,92,102,121,95,109,98,96,103,115,102,107,100,79,103,103,94,107,99,100,106,91,107,104,110,92,91,87,97,95,109,99,109,108,104,108,109,105,108,114,100,109,108,105,111,96,92,98,111,106,120,99,99,105,100,108,113,111,105,106,109,98,117,99,80,96,106,95,99,104,111,94,107,109,112,106,100,104,107,112,123,102,96,98,113,110,97,103,98,106,106,100,104,100,109,105,101,103,117,110,95,101,103,98,93,103,102,104,106,80,109,103,108,102,106,98,102,113,113,105,97,98,103,111,97,105,106,86,112,100,118,106,110,102,108,105,104,113,113,105,108,100,117,106,104,106,107,110,95,91,115,108,89,117,106,136,110,95,107,98,108,99,96,106,94,103,102,107,99,101,101,120,98,94,100,105,99,121,102,102,98,103,115,90,93,109,109,95,102,101,117,102,107,106,96,110,106,115,107,106,115,105,103,113,101,107,117,104,102,103,116,112,110,96,113,106,117,110,99,105,103,115,105,140,110,101,100,107,102,107,116,104,99,97,92,97,116,96,116,113,105,111,107,107,100,105,108,106,99,111,120,105,123,100,95,106,94,104,111,104,103,93,98,113,98,100,99,106,97,94,101,99,104,122,98,85,103,98,93,80,75,110,105,99,100,106,98,117,107,81,106,101,95,105,105,105,113,104,99,104,98,100,104,108,103,82,91,92,102,96,92,109,107,102,102,104,97,102,81,105,104,100,112,98,104,114,100,105,121,101,108,100,106,99,91,101,117,102,100,90,109,96,102,107,111,99,106,92,108,95,113,105,102,106,108,109,104,113,98,102,101,98,107,104,92,102,108,99,111,107,110,93,95,86,111,96,101,118,106,102,103,108,99,106,106,104,104,112,116,124,105,113,99,113,117,92,114,108,92,100,116,104,95,98,116,110,108,105,99,108,115,110,106,100,112,105,105,84,102,108,124,104,100,100,103,106,89,106,105,91,107,102,105,96,102,100,108,104,99,95,98,128,98,106,122,108,103,99,98,96,106,102,106,112,102,98,100,100,100,99,98,113,100,109,105,98,98,105,111,107,106,104,113,97,80,107,98,105,100,106,112,109,101,99,98,110,103,99,109,102,121,109,76,100,108,116,106,102,108,109,103,96,96,92,94,100,91,105,102,122,109,109,88,92,109,97,110,98,102,109,100,98,104,110,102,102,113,112,108,109,106,114,99,77,99,104,116,98,111,97,101,104,108,103,100,110,104,100,102,95,98,98,110,116,100,107,95,109,108,105,120,106,112,108,101,98,89,99,107,112,99,108,90,106,100,132,99,104,105,100,101,106,101,110,110,100,101,98,107,94,103,103,100,111,103,92,103,104,108,99,108,104,101,103,99,114,105,111,107,98,109,118,109,96,109,112,119,102,100,86,103,75,106,101,110,101,97,106,116,94,106,106,103,109,105,99,91,111,108,99,94,112,100,102,105,102,113,99,102,102,107,114,99,102,104,112,101,108,92,106,107,96,109,104,111,113,103,91,106,117,98,125,109,94,106,98,102,114,109,100,106,106,117,111,113,92,101,90,101,100,104,105,110,112,113,116,94,86,98,101,106,106,101,94,99,100,108,101,96,100,107,98,107,104,105,110,95,105,92,111,110,117,114,101,102,110,98,108,100,118,111,90,105,103,126,106,112,106,108,105,101,108,100,112,102,95,98,71,117,98,96,108,103,97,116,109,108,106,101,92,103,105,100,67,101,112,109,83,105,111,106,107,97,107,102,103,98,107,102,106,101,99,93,108,104,107,109,94,117,104,110,109,105,105,111,104,91,117,108,102,119,99,102,94,105,100,104,107,107,103,100,98,106,96,109,84,95,97,104,110,104,104,99,109,80,109,100,107,105,113,98,97,119,97,117,107,100,118,95,117,109,113,106,117,102,105,102,104,100,100,105,103,115,105,99,88,103,102,112,102,104,104,95,112,100,106,99,106,117,107,101,81,100,103,88,103,109,102,93,106,102,77,112,96,121,103,102,97,113,105,97,91,98,115,109,103,93,98,102,110,105,119,99,113,114,106,101,100,104,113,108,101,93,107,98,105,89,91,98,97,111,107,106,107,96,99,109,96,99,100,106,100,98,106,94,99,98,113,108,106,98,105,108,100,112,103,101,102,112,107,105,111,108,104,92,100,94,100,104,99,105,119,100,106,100,95,102,108,111,83,101,110,90,111,114,94,89,111,103,106,105,101,102,99,100,103,94,109,111,103,96,98,100,108,99,99,101,95,102,96,108,106,107,92,101,94,100,105,114,100,97,114,103,96,101,78,99,102,118,96,111,106,96,102,107,97,89,97,112,97,108,120,93,108,97,107,103,109,117,106,120,93,109,99,92,118,99,97,112,112,102,106,104,83,97,100,104,92,101,87,108,102,114,118,100,101,118,67,113,110,111,106,106,103,87,111,100,100,99,115,94,103,98,100,99, +462.93085,119,92,108,100,110,95,90,104,103,104,97,101,99,101,95,113,107,106,102,105,124,82,87,113,129,103,103,102,111,101,103,110,102,100,104,103,97,98,103,114,95,97,94,96,102,110,114,109,97,124,101,105,103,94,105,109,103,94,102,98,108,104,100,83,104,129,95,111,99,120,106,103,98,109,106,99,105,92,114,68,102,106,110,95,107,93,101,106,95,106,94,107,104,104,108,99,119,108,103,106,96,90,108,114,71,104,110,94,96,106,99,104,116,100,106,85,100,87,116,105,112,101,97,83,109,109,114,88,108,100,104,100,100,109,101,111,103,102,113,105,101,105,101,103,105,107,105,109,99,95,104,95,107,92,97,91,100,110,94,94,96,102,107,94,123,95,116,111,119,105,103,105,102,96,116,96,114,98,100,103,105,103,106,101,99,95,95,96,104,102,95,106,100,109,91,125,94,103,106,108,103,111,100,103,105,110,110,115,110,113,96,112,116,95,109,109,102,99,104,97,114,105,111,102,101,103,108,104,95,117,96,112,114,100,107,99,107,122,93,99,105,104,95,101,108,114,94,109,107,106,105,118,109,115,100,108,100,99,101,112,96,94,100,94,103,85,107,100,103,106,91,98,113,97,101,109,102,101,98,108,101,95,95,101,103,113,100,104,103,92,89,102,107,100,106,105,112,118,104,100,114,93,107,95,97,116,91,93,104,121,106,105,109,104,99,106,122,102,103,111,98,104,98,109,104,95,100,100,105,105,113,94,103,98,96,98,109,106,114,100,92,104,101,99,91,102,108,109,113,102,112,95,117,103,100,82,103,98,108,104,99,104,90,96,108,103,106,107,99,99,100,103,103,98,106,104,93,105,112,102,99,103,98,111,92,97,99,95,104,101,115,101,106,85,76,102,100,91,112,109,100,111,97,99,103,99,110,112,112,100,100,103,94,104,113,92,100,99,113,106,108,105,98,98,103,100,104,107,101,125,104,120,106,108,109,99,108,116,94,97,113,94,103,114,102,99,104,106,100,111,103,92,105,116,102,96,111,101,103,106,101,120,103,108,115,102,102,112,99,111,114,114,106,86,94,102,98,120,109,100,116,103,115,99,106,104,108,116,110,108,103,122,125,110,104,103,105,113,105,102,115,105,110,96,100,112,107,103,95,97,83,98,101,103,105,100,97,91,110,103,100,99,109,107,99,104,110,117,102,98,105,102,98,112,109,97,113,100,101,94,115,106,98,107,113,108,99,92,101,109,108,109,105,109,95,95,106,99,108,102,108,103,104,108,106,96,124,106,117,105,99,104,105,98,104,101,119,122,107,95,110,90,107,91,110,97,105,112,110,94,105,86,105,101,122,101,103,99,107,91,106,95,94,100,104,92,97,115,103,98,108,106,107,107,100,105,105,102,94,78,93,91,106,103,108,105,108,91,102,107,103,102,104,106,100,102,103,79,96,118,107,105,102,108,101,96,116,106,96,109,133,94,102,98,105,101,103,107,81,101,105,109,103,113,104,106,113,108,111,117,107,106,107,95,86,107,108,104,108,96,108,100,97,100,106,94,99,108,109,102,124,108,77,113,103,103,107,107,103,102,109,95,105,105,94,117,100,85,111,105,102,97,109,109,94,103,95,91,99,104,95,106,104,102,96,99,108,110,114,114,98,102,121,105,102,102,110,94,108,104,111,102,105,105,100,97,118,118,92,108,115,98,114,98,106,109,110,111,112,103,109,96,94,114,113,101,105,112,94,98,112,100,100,92,106,105,95,101,95,104,108,97,108,106,99,84,103,100,115,105,106,96,110,112,101,111,97,100,109,96,106,100,104,105,110,100,115,99,109,103,123,113,97,112,110,112,105,103,104,103,119,120,111,105,107,103,106,108,124,91,112,105,101,103,109,111,104,98,108,98,113,107,113,101,109,109,86,113,103,100,110,109,95,108,92,105,104,89,97,104,103,100,109,109,108,105,114,100,105,116,99,96,105,105,111,100,103,101,103,80,104,99,119,113,108,105,92,107,94,101,106,106,109,108,104,109,101,107,107,98,110,111,103,103,95,105,92,109,99,129,93,101,77,98,112,102,108,108,96,98,104,110,100,107,105,95,103,102,105,102,82,111,100,115,102,107,113,102,97,101,96,100,106,115,100,120,105,109,109,109,93,103,113,100,103,114,108,116,102,100,96,106,106,108,96,108,87,102,101,119,96,99,99,96,103,110,92,105,106,86,96,109,101,100,95,101,113,83,105,101,109,93,106,104,94,106,100,117,113,99,99,94,104,101,99,94,125,106,99,113,120,109,94,100,99,93,107,111,105,85,112,104,115,91,92,114,101,104,103,71,102,96,95,99,129,93,97,102,108,103,103,108,101,105,108,105,106,102,109,109,100,99,106,111,98,95,103,91,107,128,106,114,108,113,103,108,109,108,112,103,73,111,99,103,96,100,97,108,103,103,101,102,87,109,103,98,113,103,108,99,111,106,103,107,91,102,104,96,112,102,101,107,113,93,115,103,102,105,106,100,93,108,102,103,120,91,106,110,110,111,113,103,103,128,112,103,100,103,112,104,106,118,107,108,102,104,105,95,100,102,97,99,103,115,109,104,105,101,122,99,102,98,107,106,91,102,114,96,107,102,106,106,92,100,108,102,106,109,112,75,95,109,107,104,99,117,102,105,103,107,113,100,115,98,104,109,109,99,68,110,104,100,113,109,104,102,106,102,109,110,106,100,106,96,94,107,107,111,105,95,114,91,95,105,102,105,107,108,113,99,96,109,109,102,111,112,113,101,111,100,95,85,100,107,95,106,110,132,103,109,110,114,105,103,97,106,102,115,110,113,107,115,99,99,97,106,115,102,107,109,98,95,103,103,111,94,115,101,102,101,101,97,124,113,111,103,100,100,99,99,103,104,106,106,110,101,92,108,115,108,110,107,116,99,98,105,108,117,119,108,101,109,101,116,106,104,107,116,95,103,104,87,101,90,107,107,103,105,109,109,104,92,110,83,115,102,112,104,89,100,92,108,97,94,109,84,108,105,106,133,100,100,125,101,102,101,105,105,115,99,107,116,113,77,98,100,106,109,96,118,107,115,102,89,106,111,99,92,104,112,97,110,105,118,101,105,112,96,92,113,101,97,97,109,105,107,120,96,106,94,103,108,107,107,107,100,101,109,112,120,105,95,95,99,110,100,103,93,112,100,97,104,108,111,116,112,98,112,102,103,106,106,94,95,98,89,116,94,113,99,111,91,113,119,104,103,112,99,97,113,101,99,107,103,112,109,112,122,116,105,101,108,101,115,105,99,118,102,103,86,94,105,105,106,97,102,115,103,107,98,97,94,103,91,106,112,105,101,106,101,99,96,102,109,108,103,98,112,102,89,109,98,99,98,105,103,99,97,115,102,95,114,99,120,98,101,98,108,93,101,108,107,105,109,104,99,108,102,113,103,98,105,111,108,114,108,102,104,105,108,106,106,104,94,101,102,97,109,103,95,100,107,113,109,113,102,120,111,103,102,101,102,108,107,101,103,106,104,96,111,75,109,105,118,104,103,107,89,108,114,108,100,107,113,95,107,109,99,98,94,104,92,104,115,119,110,94,100,108,115,97,84,110,105,102,109,107,95,106,112,99,98,112,95,108,92,96,101,105,109,106,97,112,114,102,101,100,103,110,97,94,108,100,101,101,103,115,102,103,111,96,110,105,122,112,100,100,104,112,112,96,108,113,101,104,109,106,113,110,99,98,92,116,100,88,100,106,103,106,100,105,95,108,108,90,103,109,96,112,107,112,111,107,104,107,113,113,108,102,104,116,106,107,96,106,103,105,98,95,102,103,103,100,98,103,99,105,111,81,98,100,101,107,100,100,102,108,107,106,98,97,109,101,108,103,97,102,102,106,98,95,101,117,98,102,109,106,102,101,89,79,105,107,102,100,102,99,110,107,98,102,103,120,111,109,105,111,101,104,87,93,114,94,95,105,100,117,92,100,108,102,102,98,106,99,101,108,114,88,100,109,103,98,101,105,113,106,98,112,110,112,110,91,97,101,108,96,107,111,81,102,91,115,97,104,97,109,104,103,110,110,105,107,110,109,112,104,106,107,102,99,113,103,105,108,102,118,102,102,109,85,100,96,123,104,98,109,103,105,121,124,108,87,104,114,106,110,117,119,98,115,119,105,114,105,100,91,118,125,103,104,101,106,113,111,105,109,104,105,111,104,103,99,102,100,98,101,99,106,102,88,104,116,100,103,120,98,102,112,93,112,100,119,102,101,108,106,94,90,106,107,108,105,127,110,103,102,114,92,113,105,96,118,106,103,109,99,96,108,97,95,99,102,105,106,107,105,98,106,108,97,103,99,100,112,104,115,117,105,106,106,111,112,97,97,108,106,100,121,93,99,88,100,98,96,108,105,105,103,94,70,106,103,97,103,97,92,111,97,103,102,98,104,90,116,97,96,116,99,109,100,105,94,107,106,94,104,103,91,97,119,109,104,106,106,107,102,114,105,109,93,102,107,94,112,109,111,100,102,87,95,108,79,103,109,101,108,108,92,97,102,104,99,107,110,100,106,100,97,101,100,99,106,110,96,93,103,96,99,100,100,89,105,112,103,109,99,109,100,100,117,107,106,97,90,102,104,113,95,109,99,94,100,109,98,83,100,99,94,124,99,84,105,103,124,107,99,111,95,95,104,99,105,94,111,119,108,107,113,89,108,113,93,77,107,97,104,101,101,98,101,94,86,104,95,99,93,108,107,109,91,102,108,118,93,103,104,94,102,110,103,100,101,106,98,112,100,109,106,106,102,103,85,97,113,103,99,95,106,112,128,94,99,97,96,103,110,110,98,93,101,94,108,104,100,91,89,98,101,82,111,106,105,98,99,107,115,94,105,93, +463.07132,88,102,96,116,87,95,116,110,97,100,105,112,81,102,108,95,91,107,104,102,90,97,101,96,137,99,99,94,110,106,107,100,107,107,108,102,92,91,98,102,110,93,102,101,97,100,113,103,96,120,114,115,104,97,104,104,98,96,120,104,113,112,101,86,104,99,108,107,95,104,92,110,97,95,99,112,101,110,106,81,104,100,103,121,103,98,99,113,109,110,102,106,96,94,99,87,103,96,106,110,93,99,101,110,95,107,98,96,99,92,96,101,111,88,107,99,99,95,97,106,96,86,95,101,118,108,111,109,116,104,102,97,106,86,107,88,96,101,95,100,95,108,98,113,91,94,97,99,106,101,96,105,120,93,87,94,98,104,107,106,88,94,102,118,100,100,100,88,110,99,110,99,103,108,100,106,109,96,106,96,94,105,99,104,102,93,95,94,103,105,96,114,116,114,108,95,105,99,107,104,109,98,100,109,113,102,87,102,108,83,89,106,120,98,94,103,101,102,91,100,105,99,108,120,111,119,109,103,95,105,98,104,102,110,100,97,106,103,108,107,100,103,109,104,117,99,108,99,100,128,96,104,101,107,107,105,103,105,84,104,91,97,97,91,102,106,98,99,89,110,102,89,98,104,99,110,97,87,96,100,110,105,105,103,105,91,103,104,103,101,100,101,118,91,103,107,104,118,105,121,101,100,114,105,105,111,95,96,104,109,98,110,104,98,111,111,108,118,97,98,103,89,106,108,100,98,95,95,109,107,102,109,113,106,92,108,96,100,103,104,107,95,96,112,107,104,103,121,107,102,101,86,102,87,99,104,106,126,99,102,87,103,102,98,102,99,96,103,104,102,90,99,114,100,102,109,108,100,94,108,106,103,100,111,96,97,98,98,100,88,105,97,106,103,93,93,99,103,116,102,123,108,84,90,107,96,100,104,102,97,96,88,102,108,99,106,111,104,106,97,102,93,87,82,97,107,98,100,93,88,97,107,93,101,104,115,104,105,105,108,122,130,103,110,109,108,97,104,97,122,111,97,89,104,98,101,102,113,115,98,95,116,100,106,107,93,106,114,110,102,115,109,103,94,94,104,92,106,110,114,98,117,111,106,113,93,122,103,107,103,98,95,103,112,97,108,98,94,104,88,95,101,73,96,103,113,87,106,113,92,105,98,108,110,117,105,100,97,82,106,100,112,103,108,104,105,111,84,100,100,98,109,105,120,103,103,113,101,118,109,105,98,97,97,104,98,103,102,102,107,116,108,102,95,98,116,107,112,105,110,107,86,105,111,117,113,81,102,110,106,106,99,99,101,109,103,101,95,99,106,102,102,112,110,94,109,133,99,107,96,116,107,78,95,103,104,108,96,94,98,103,103,109,102,101,99,95,106,101,105,112,97,104,102,99,112,111,107,108,110,109,109,113,98,109,110,88,113,99,103,87,102,100,105,99,102,100,107,107,103,111,105,107,94,97,95,94,111,113,112,101,101,110,95,110,98,100,104,104,90,97,95,100,103,101,124,100,98,102,108,99,117,104,106,102,110,110,104,114,108,117,113,103,92,100,104,100,102,110,95,110,94,107,112,99,98,104,109,117,100,106,107,112,93,95,111,98,109,97,101,108,112,100,101,97,100,101,105,100,111,90,104,100,108,94,89,105,105,91,100,104,99,106,74,105,101,104,98,116,101,101,93,118,107,107,107,114,112,102,110,108,94,107,105,106,105,94,98,111,91,99,110,92,87,100,100,104,101,109,99,106,104,113,105,107,99,112,101,100,111,102,97,105,99,98,99,105,102,109,104,110,98,102,100,99,98,112,93,102,105,105,104,105,99,120,102,98,112,104,111,104,109,112,87,109,108,109,112,108,104,94,118,103,95,112,98,98,98,112,91,108,101,105,90,113,118,102,117,107,101,117,105,103,96,105,94,105,89,102,106,106,92,98,99,104,106,100,104,96,100,105,102,106,109,108,98,88,94,116,90,105,107,94,103,86,109,104,118,110,95,99,109,100,104,105,98,109,113,102,102,105,88,108,121,107,94,99,99,96,111,99,109,105,121,108,101,100,106,103,97,102,103,101,113,103,100,106,105,105,96,94,121,116,110,102,95,113,99,104,92,117,101,102,110,99,105,101,106,101,109,71,125,92,116,93,99,86,97,97,103,104,103,97,100,107,108,109,96,100,109,110,102,111,110,110,113,95,101,103,100,98,91,105,75,106,105,111,91,90,105,97,90,109,91,100,98,104,101,108,109,104,115,99,113,105,100,105,107,92,103,100,102,96,104,102,94,106,103,92,92,98,109,90,120,95,106,103,102,100,94,109,107,101,91,110,92,113,111,97,95,99,102,104,87,101,102,97,105,95,109,95,82,90,94,102,95,114,101,90,95,104,105,105,108,107,113,103,104,102,108,91,112,109,100,111,105,92,95,99,104,106,104,97,105,94,101,110,109,96,109,96,110,90,93,106,113,109,110,106,96,100,103,116,97,109,102,99,108,102,117,110,95,103,99,103,100,104,105,103,102,106,106,89,99,103,78,108,91,96,100,97,110,105,98,103,100,107,119,100,98,99,104,108,100,110,104,83,98,92,98,98,87,92,112,106,94,101,105,108,95,107,94,113,105,111,97,94,98,101,106,94,107,104,87,95,95,97,94,109,97,100,99,103,105,96,95,104,103,101,100,112,107,91,126,93,113,103,99,98,102,94,113,102,101,103,111,108,105,108,107,99,110,104,103,102,101,107,95,99,107,89,133,100,105,108,106,117,101,102,99,95,97,95,104,107,94,95,107,101,90,104,107,116,107,95,94,103,110,110,112,105,107,93,89,104,109,103,95,98,94,93,96,97,118,99,95,108,105,87,108,108,104,107,105,113,97,102,92,106,106,91,99,105,108,99,102,107,95,108,99,101,102,113,99,105,113,76,110,91,101,102,105,87,96,105,97,105,93,106,110,88,110,100,109,100,123,103,109,114,93,97,103,101,91,106,124,110,108,101,110,112,106,94,104,104,111,103,97,109,104,101,94,107,101,99,97,107,102,94,106,91,96,99,111,98,100,109,102,107,101,106,113,105,100,109,94,102,97,99,87,107,101,102,93,98,105,99,108,100,96,96,101,103,127,84,94,98,110,91,105,97,96,98,88,90,101,81,101,98,94,125,96,105,106,120,109,98,98,106,103,107,98,93,101,104,107,102,99,100,75,104,105,95,75,97,100,101,107,123,102,100,99,94,96,96,91,104,98,122,103,109,103,98,98,91,104,99,112,102,102,106,99,119,112,86,119,88,104,100,97,98,97,96,103,91,126,98,104,99,121,103,92,95,99,100,116,105,99,105,105,101,107,102,101,109,108,98,104,109,84,79,100,107,115,76,102,99,101,104,103,105,100,96,103,102,96,98,98,102,97,102,103,106,100,88,102,97,104,105,99,102,110,94,103,99,99,101,106,98,104,107,104,97,102,106,94,98,94,110,91,110,98,97,99,101,105,112,94,101,97,101,102,93,101,100,102,102,101,104,96,107,106,96,103,103,112,101,109,99,101,121,112,99,100,110,105,81,97,95,80,102,102,99,107,104,103,106,91,109,102,117,85,100,98,100,100,101,94,109,109,91,95,102,75,96,98,102,110,103,98,103,102,111,84,92,106,96,97,102,96,106,95,98,105,101,107,87,75,105,93,104,90,113,99,87,94,98,95,107,102,104,100,93,98,112,108,106,81,107,88,101,100,111,100,96,96,99,106,107,98,97,97,98,112,98,104,106,107,99,111,95,100,94,97,98,104,104,95,102,99,94,116,102,106,108,106,102,88,94,122,83,108,73,93,110,109,104,97,114,108,98,105,106,87,98,100,109,103,101,103,112,92,113,76,90,63,102,99,104,108,97,92,105,100,99,100,99,97,94,108,114,97,107,95,90,101,106,92,95,111,99,99,88,97,91,105,108,108,110,108,97,103,104,99,109,97,101,104,114,106,106,102,104,105,106,103,98,114,101,116,102,101,94,104,117,103,103,94,106,101,114,102,93,99,104,103,106,105,95,102,86,106,104,98,106,109,98,100,94,96,121,99,116,108,112,103,106,103,95,98,98,105,103,110,108,110,94,123,96,120,103,103,115,106,97,104,110,101,99,97,95,98,98,112,95,105,106,104,97,114,102,99,95,101,109,97,96,102,109,93,106,97,96,96,101,102,101,99,108,107,116,109,105,113,99,99,111,100,99,95,104,101,79,105,92,94,105,100,105,101,99,91,106,99,97,102,99,98,102,108,97,95,96,117,100,98,99,90,99,101,100,99,89,102,106,110,95,92,109,100,117,110,112,104,105,95,107,101,92,93,109,101,103,101,105,94,102,87,102,94,101,101,95,106,105,100,104,104,101,100,105,123,107,95,95,99,105,95,100,97,95,108,92,102,92,96,95,110,119,105,105,89,100,88,91,103,91,95,109,97,107,102,92,98,115,107,88,103,113,109,93,88,106,107,102,124,79,96,104,91,90,96,91,102,101,95,89,100,97,90,92,92,96,101,111,108,108,99,113,86,104,104,101,96,95,94,97,101,90,97,99,98,97,99,113,98,112,103,97,102,100,92,106,114,100,101,97,106,98,105,75,110,90,101,99,96,93,99,103,105,104,98,88,90,111,111,111,94,98,99,101,92,100,108,102,97,100,95,116,106,96,104,102,93,96,106,99,98,94,105,104,103,103,107,85,110,95,112,94,103,97,91,104,71,99,93,98,77,113,92,112,93,109,100,70,105,98,112,103,108,100,92,100,92,104,91,104,96,102,112,101,103,105,102,110,99,103,100,99,109,99,95,97,92,99,110,102,103,99,92,95,95,97,99,86,94,98,98,104,105,100,107,100,97,98,86,99,91,88,110,101,90,102,103,97,98,105,105,95,100, +463.21176,94,116,112,109,82,106,100,90,101,105,102,93,107,106,117,107,112,116,90,102,115,104,102,105,113,96,98,96,103,112,88,103,85,99,104,102,101,103,106,102,108,92,94,100,104,114,111,106,95,99,103,102,105,85,99,96,118,112,100,100,111,96,91,108,104,105,95,108,109,110,104,96,103,111,99,105,88,106,107,94,110,109,101,105,97,92,86,112,120,97,97,97,110,97,115,95,107,91,106,105,92,115,98,107,93,97,97,102,104,104,102,109,108,101,99,101,93,101,91,97,112,102,108,109,110,109,112,94,108,104,100,90,97,113,118,113,105,101,108,108,96,97,96,111,93,100,104,106,105,94,95,110,109,93,102,114,108,115,100,101,96,111,116,105,102,102,110,105,118,101,106,113,101,101,101,103,96,101,98,116,101,107,112,112,91,102,99,94,99,95,114,109,100,123,97,110,92,113,108,94,105,113,105,96,96,98,100,93,110,111,92,95,98,104,93,97,96,107,106,107,92,97,103,119,114,104,103,107,101,114,87,105,103,111,96,106,101,104,95,98,98,101,112,109,96,107,109,113,109,79,101,91,116,113,108,108,99,116,92,92,112,102,111,107,92,102,108,106,126,93,99,99,106,101,102,94,94,111,105,98,99,103,116,117,101,104,97,105,101,113,107,100,114,104,105,107,98,110,108,102,98,107,99,106,91,109,104,99,105,99,103,107,109,109,112,108,95,108,100,107,104,108,88,100,106,95,94,114,121,102,103,104,112,100,112,107,79,94,104,103,97,117,99,99,103,116,109,100,102,109,105,119,107,98,104,101,103,105,79,110,96,101,95,98,89,103,79,104,106,98,108,105,97,104,101,116,99,99,109,110,101,113,104,95,99,102,103,91,110,86,109,102,98,106,111,99,104,105,109,103,103,92,105,99,101,105,104,113,100,112,92,100,100,112,106,97,107,106,98,100,96,105,103,112,113,108,102,100,92,102,118,112,102,102,93,100,108,108,106,109,115,102,105,106,106,104,101,91,108,114,103,95,97,101,115,109,84,104,118,101,107,99,104,107,114,113,101,102,105,95,101,85,118,113,98,104,104,109,99,101,112,118,112,88,99,101,103,111,112,99,113,110,121,110,89,99,102,96,106,104,101,96,98,105,104,95,117,104,108,104,114,104,98,91,106,108,106,97,129,96,113,100,107,91,104,109,101,92,101,109,104,108,99,105,89,130,85,94,112,104,111,109,102,102,107,107,124,102,99,106,105,98,108,98,98,98,112,95,95,105,109,99,115,113,95,97,107,102,112,97,96,100,107,106,105,96,89,97,107,104,104,106,93,100,105,117,105,103,102,102,114,111,96,104,111,104,99,105,105,104,96,98,97,83,93,97,109,103,102,111,94,104,103,120,102,101,96,133,98,100,116,105,105,102,115,107,103,115,106,102,91,104,98,106,100,105,106,95,84,106,121,114,101,105,105,93,102,99,100,118,93,112,95,107,93,112,116,110,112,112,67,98,113,107,96,108,104,98,106,103,102,109,99,105,102,105,104,88,92,97,112,98,94,102,100,105,101,103,83,115,103,100,98,107,112,104,108,104,110,109,101,76,110,101,95,100,108,102,93,104,112,98,99,104,98,96,108,99,103,98,99,96,96,102,108,104,101,110,114,105,113,101,98,94,86,89,107,96,110,107,103,99,109,109,101,101,104,112,104,102,108,110,94,104,97,105,109,105,108,107,108,104,98,100,96,71,103,90,104,78,96,99,103,63,88,104,99,104,102,108,103,102,104,103,94,96,96,120,104,103,108,110,112,107,109,95,108,88,118,102,90,109,96,100,110,114,86,96,100,98,107,100,106,100,92,105,110,114,103,108,101,96,100,115,107,113,102,90,106,105,108,91,105,104,88,108,113,89,100,95,104,107,114,111,105,108,100,110,100,102,101,91,84,113,91,114,115,104,108,106,110,103,105,107,104,108,100,103,103,121,105,110,102,105,102,103,99,98,97,112,109,105,105,102,106,104,104,115,89,107,106,101,113,104,109,88,110,97,133,102,104,145,102,108,107,100,96,102,106,94,100,102,104,110,98,104,108,102,104,113,100,98,99,104,99,108,96,102,108,88,108,101,111,109,101,114,108,110,105,113,109,95,107,111,93,132,102,111,103,106,104,114,94,95,105,105,121,105,138,108,125,108,99,96,107,109,96,101,113,101,108,112,102,98,105,99,98,96,99,105,103,104,99,91,97,100,93,101,95,97,98,102,99,96,104,99,106,104,96,106,102,112,99,111,94,102,127,99,93,109,104,116,79,95,101,97,109,96,104,108,104,105,116,95,99,106,104,107,110,97,94,108,105,103,112,116,111,110,108,95,98,109,94,101,99,110,104,102,99,105,121,115,99,101,112,97,97,81,101,94,111,98,105,102,100,99,82,99,101,117,98,107,94,106,96,102,103,98,104,100,100,98,113,93,112,108,117,83,98,100,97,103,92,98,91,108,99,103,114,118,104,109,89,97,67,117,99,95,106,102,107,111,107,107,119,96,99,103,96,105,119,100,104,113,107,107,109,109,113,114,110,114,96,77,102,105,106,93,123,97,107,94,109,103,115,96,111,105,101,94,112,108,105,107,106,110,100,93,108,107,102,105,106,100,114,104,111,114,112,100,115,103,101,112,106,108,113,94,120,104,103,101,102,104,96,99,98,93,102,103,113,108,126,101,105,103,107,93,108,114,93,105,110,112,106,107,110,100,103,104,102,109,103,109,107,113,109,95,105,103,98,113,101,94,101,112,101,100,99,96,109,108,102,114,107,100,103,120,98,102,113,101,96,92,102,98,106,98,100,92,108,116,107,104,95,109,98,110,108,108,88,104,110,115,106,105,107,104,89,96,106,121,106,100,100,105,104,112,101,103,98,104,99,106,103,103,109,106,99,103,102,109,99,126,108,100,113,95,109,96,104,113,127,105,100,122,101,109,98,106,103,125,102,105,107,100,98,104,106,104,102,110,113,116,111,74,109,104,109,96,79,96,89,119,104,107,101,90,104,104,102,101,102,104,103,102,105,108,109,96,86,111,99,120,108,104,89,104,107,108,107,111,111,104,106,98,84,112,98,101,106,100,100,104,106,100,115,109,102,106,96,94,106,105,110,107,100,90,99,107,100,104,103,108,111,105,100,102,111,108,100,129,107,98,104,121,105,105,107,97,113,113,103,112,108,114,102,113,98,108,109,107,101,92,101,111,88,109,107,100,97,99,117,109,108,111,111,93,121,104,98,108,95,106,98,94,108,107,107,101,89,90,102,106,95,107,97,104,115,98,109,104,92,100,101,103,98,102,96,94,107,108,110,87,86,110,101,102,100,107,102,103,83,115,116,105,98,90,108,102,95,112,102,108,94,89,109,118,113,103,116,103,104,106,99,102,103,110,87,104,103,100,99,109,110,103,93,112,106,105,106,99,91,108,71,109,100,109,102,111,109,112,111,117,103,123,115,100,114,106,101,117,105,107,106,112,96,99,108,98,108,108,112,108,110,107,113,105,84,97,109,102,112,103,108,105,104,101,98,110,87,113,106,102,105,106,101,117,106,93,99,100,105,104,103,100,97,112,98,106,111,109,117,103,78,103,121,96,106,108,102,122,113,111,100,104,102,90,111,112,111,96,103,112,110,99,104,111,87,111,109,102,106,96,102,101,96,102,104,106,108,109,105,96,102,107,101,97,106,99,109,101,92,104,117,100,100,113,106,109,107,96,100,109,113,98,108,106,108,104,101,97,104,104,103,98,105,97,107,101,104,103,102,115,95,102,109,112,104,87,99,112,105,101,108,100,103,116,109,110,101,109,109,96,92,108,96,102,104,111,113,111,104,106,99,112,106,98,96,96,100,97,99,92,93,109,113,99,89,105,97,102,102,101,106,102,100,103,111,89,101,104,104,103,106,105,108,100,102,97,108,106,109,114,96,105,89,104,98,108,126,116,94,105,94,117,99,98,105,89,99,106,88,104,107,109,103,107,112,114,107,98,120,103,99,103,92,111,103,99,102,97,96,94,124,109,106,110,106,100,115,100,104,100,104,107,108,104,100,109,106,107,107,117,98,101,110,113,102,92,96,90,101,100,112,106,125,102,97,104,99,102,100,105,112,104,92,112,109,103,103,99,109,112,111,107,117,98,98,103,104,99,106,94,117,102,105,101,105,104,107,109,94,97,107,95,105,117,97,98,108,106,106,105,98,100,116,91,109,105,104,105,124,91,104,109,113,108,103,96,102,98,108,103,115,102,119,99,99,102,114,113,99,72,104,97,89,106,106,103,106,95,105,109,100,103,100,99,115,99,103,102,105,95,104,110,103,103,100,113,98,112,95,110,102,107,100,110,103,100,109,105,105,108,90,95,103,102,100,103,96,113,104,110,97,108,123,100,97,97,119,109,106,94,94,95,92,87,96,103,105,143,100,111,90,100,91,113,98,89,102,110,103,104,102,111,102,103,102,110,100,90,102,111,99,96,115,96,96,91,89,99,102,108,107,102,111,98,101,75,107,100,100,99,120,100,106,108,105,102,103,96,95,111,121,102,105,112,102,104,102,85,109,91,124,114,124,100,103,102,105,110,94,100,105,100,98,107,113,101,118,98,106,96,109,113,103,106,108,118,94,94,97,94,122,93,98,98,115,108,113,109,114,97,91,110,86,101,107,89,105,108,99,95,97,103,98,97,102,91,121,99,104,102,92,115,101,96,118,115,106,101,103,100,95,117,98,106,101,117,103,98,92,96,111,102,107,97,102,116,103,92,96,94,92,102,91,120,99,110,105,104,117,94,104,102,92,87,96,97,104,94,95,97,110,125,101,93,109,95,93,99,102,111,94,86,97,112,90,106,112,95,95,98,97,101,120,112,109,105, +463.35223,93,99,104,98,70,98,98,103,118,98,108,107,99,96,104,115,101,104,120,101,99,93,107,111,111,103,104,97,120,124,99,105,105,99,123,104,109,87,100,115,87,107,112,99,110,105,103,116,106,100,112,111,104,97,103,95,99,100,103,103,107,104,105,97,108,110,94,108,102,95,105,101,100,101,100,112,106,104,103,113,101,128,101,99,97,75,107,106,99,90,119,109,110,90,100,99,72,101,113,95,103,101,105,100,104,79,109,98,116,99,99,85,100,97,130,99,91,102,111,103,108,100,107,106,106,123,108,104,105,105,117,105,106,98,99,80,110,99,108,100,102,96,105,100,109,99,103,106,104,99,91,96,111,95,100,103,102,107,116,104,98,98,108,99,100,95,109,84,105,100,100,100,99,111,105,102,93,95,105,110,110,104,103,96,110,99,94,102,108,112,110,108,102,103,93,115,100,112,109,100,93,103,97,104,104,108,99,105,106,105,101,107,104,77,105,106,104,99,97,93,92,112,101,100,98,104,103,105,106,106,104,109,106,109,106,106,119,97,90,125,108,101,104,114,90,117,104,91,104,104,102,108,90,109,101,103,97,93,97,109,98,104,98,105,114,102,110,97,101,94,91,98,112,107,104,104,101,101,109,91,104,106,107,97,98,107,102,105,101,106,96,86,105,107,111,112,105,105,111,94,104,99,108,104,98,114,101,110,104,103,99,111,105,106,109,104,106,97,97,107,107,97,109,104,107,96,109,100,106,116,106,103,106,109,106,110,106,96,76,97,103,94,109,100,97,99,90,103,116,108,98,108,107,101,109,104,110,103,110,104,101,99,106,94,92,98,101,110,105,101,110,117,132,100,100,111,100,108,110,104,110,108,103,114,102,108,107,87,94,101,111,100,106,99,111,101,99,106,116,107,101,95,84,98,104,105,99,104,109,101,96,97,105,98,108,109,107,96,101,107,105,90,98,103,112,91,96,106,112,112,96,100,104,108,99,108,98,106,96,112,107,107,108,96,101,97,105,104,105,96,106,103,109,99,110,110,106,101,99,103,108,98,103,114,107,103,103,98,103,101,98,106,103,100,98,98,103,104,115,99,104,95,103,98,98,97,111,108,97,103,116,109,106,104,105,108,105,110,94,105,117,101,107,123,110,104,104,91,111,104,110,98,103,100,104,102,104,107,102,100,109,117,121,101,113,105,108,108,104,104,97,117,106,95,105,104,102,111,99,103,114,115,107,107,99,100,113,100,109,105,73,107,105,109,102,98,84,116,101,94,105,105,104,108,100,105,118,105,108,109,102,109,115,113,105,100,102,101,96,100,106,90,81,107,99,84,108,82,102,106,93,103,110,103,112,107,102,106,108,106,107,105,98,100,104,104,94,97,100,98,110,94,107,103,106,92,98,127,104,85,89,116,100,105,98,100,103,103,106,102,104,119,102,102,92,104,112,107,104,106,98,104,105,104,74,109,108,100,116,110,95,115,108,98,117,102,103,100,101,101,120,98,108,109,102,104,109,97,122,99,110,86,95,100,88,101,82,100,113,105,94,91,99,99,97,100,94,104,110,120,113,105,101,109,100,92,104,106,105,99,106,103,92,109,86,114,119,103,100,99,101,101,106,101,103,104,102,105,99,106,97,100,95,102,93,109,108,107,87,108,104,109,97,94,105,108,92,101,94,101,110,97,126,98,110,106,136,106,113,111,114,95,109,101,99,112,103,105,113,103,107,106,100,108,103,106,88,102,99,84,107,87,97,78,99,85,110,96,96,110,105,111,123,113,107,121,108,99,107,112,107,102,108,105,105,105,100,102,109,103,92,107,110,99,100,101,126,112,109,105,114,100,101,98,117,99,121,106,110,101,98,102,107,100,97,110,108,98,104,97,111,95,116,121,101,112,113,100,95,108,98,113,95,102,101,108,101,87,108,109,101,111,97,102,102,107,105,95,102,95,108,95,111,100,103,99,94,111,109,110,102,96,95,106,111,104,98,101,95,99,98,98,111,100,104,122,93,110,94,99,107,99,101,108,100,91,107,107,111,117,116,107,103,107,104,112,111,84,97,81,101,109,97,95,115,103,103,91,87,98,103,107,106,113,113,101,106,111,107,111,108,112,103,111,90,112,104,97,96,108,97,92,111,102,95,103,102,116,97,107,115,106,105,128,107,112,104,110,99,96,102,107,114,111,99,88,104,94,92,104,105,97,105,98,88,104,101,104,98,106,106,87,106,110,100,99,103,97,108,107,101,102,108,104,91,100,104,123,94,110,104,109,101,100,99,104,121,102,105,98,99,111,100,105,109,105,94,115,100,105,101,108,104,102,93,108,114,101,113,113,96,78,111,115,105,92,104,104,111,80,112,107,86,109,95,113,100,95,95,110,104,111,97,114,102,91,117,105,96,106,101,104,113,101,98,99,97,115,83,108,113,104,112,103,112,117,100,104,102,102,93,94,90,103,102,102,93,106,107,110,108,103,105,83,105,106,102,105,100,105,107,104,105,105,95,103,119,97,108,100,101,109,94,105,110,97,105,112,99,108,100,109,113,98,95,97,84,115,107,96,110,107,113,108,101,102,100,105,105,103,111,97,104,90,110,105,113,112,102,94,94,101,109,110,109,95,109,97,101,112,102,113,110,105,111,98,100,103,101,95,101,113,106,114,108,94,112,100,103,113,113,101,105,104,108,98,112,121,88,84,102,104,103,93,103,102,107,97,103,111,110,107,101,104,100,104,87,94,107,109,110,75,93,98,115,113,101,110,95,123,99,100,97,103,109,111,97,97,107,100,101,118,100,103,107,104,84,100,112,100,106,104,109,97,98,106,97,91,92,108,105,106,100,117,96,109,93,108,99,102,94,97,96,104,110,108,104,106,110,120,105,109,109,104,108,73,100,102,103,116,113,105,105,110,100,99,90,104,111,100,105,100,98,95,99,102,107,90,109,104,101,103,100,102,102,103,103,113,98,86,113,104,105,97,97,97,109,99,100,84,105,105,85,98,109,101,103,109,111,92,100,89,113,105,107,100,112,93,100,111,109,104,106,98,105,103,97,105,102,100,117,117,105,95,98,121,131,105,98,104,105,112,88,106,108,95,105,104,105,104,111,106,107,108,99,99,114,104,97,97,97,108,94,100,91,96,108,109,92,98,112,100,99,103,90,104,102,100,109,101,103,106,104,102,102,109,107,98,94,93,101,98,97,104,105,88,94,111,108,102,102,94,108,101,108,102,109,113,102,98,101,82,104,110,112,105,86,114,97,106,89,105,109,93,101,98,110,107,104,101,97,86,104,99,99,98,112,112,117,95,105,108,104,103,104,100,110,96,96,92,94,97,114,92,104,106,112,102,107,101,92,102,102,104,113,112,95,99,90,91,96,99,106,106,103,101,101,95,100,88,94,107,87,100,101,94,102,99,102,107,105,106,105,102,107,92,98,104,95,120,98,108,101,101,91,101,119,114,106,101,101,106,113,112,104,92,109,109,115,99,100,109,100,110,113,107,116,96,117,88,111,111,118,122,101,83,101,108,86,103,95,109,97,113,108,110,109,93,99,113,112,93,113,109,108,115,104,107,100,95,92,100,105,99,99,97,108,97,95,100,94,99,103,119,104,113,103,88,106,96,104,101,99,108,115,102,111,119,105,111,95,97,109,98,105,116,106,113,103,109,113,121,91,99,109,94,92,100,109,96,112,110,98,116,106,106,102,109,106,98,102,98,99,99,100,99,110,108,104,100,107,102,105,101,115,87,92,100,114,113,115,97,105,89,99,89,106,101,106,93,92,108,107,106,106,111,107,101,117,107,107,104,100,117,105,112,96,96,101,114,95,109,94,111,98,95,104,119,99,124,100,116,84,93,102,103,106,95,99,114,98,101,105,103,106,95,107,95,103,102,102,96,105,108,91,101,95,101,98,116,95,101,127,103,103,106,103,108,105,95,115,104,108,95,108,104,104,113,98,105,100,116,97,99,103,94,105,102,100,107,104,98,88,95,99,77,102,98,108,100,108,105,102,105,93,105,111,102,109,108,95,105,81,117,110,114,104,110,119,100,106,103,104,99,97,107,107,111,94,104,102,102,105,112,106,106,88,105,110,109,98,97,102,92,103,104,98,96,120,98,105,91,100,97,108,112,107,119,92,117,114,106,98,98,115,102,113,100,109,94,104,96,97,104,113,104,83,101,96,113,98,107,103,99,102,103,99,100,99,100,116,103,94,98,104,103,104,99,105,104,91,91,112,103,105,99,98,96,103,105,102,104,116,94,99,98,114,109,106,97,100,101,101,103,114,119,104,113,86,103,101,109,105,109,114,98,101,107,103,95,103,104,104,97,104,115,111,121,92,110,106,112,105,108,96,84,103,104,116,113,111,103,109,116,85,104,106,106,95,99,99,97,117,107,93,99,104,91,102,114,103,95,103,105,96,111,104,89,95,113,115,104,106,106,107,96,87,105,98,113,95,114,106,113,99,101,94,101,126,109,96,108,97,102,106,92,108,105,102,97,87,90,102,91,97,99,109,98,99,96,87,99,102,103,93,98,91,107,105,95,98,96,110,109,92,113,104,96,92,106,94,101,92,96,111,97,97,91,136,96,103,99,79,82,95,95,102,110,95,107,102,105,108,103,112,89,112,110,100,95,99,108,100,102,96,102,108,100,101,102,102,107,111,97,100,87,102,93,98,95,98,105,105,107,87,91,100,98,92,105,98,93,97,105,107,127,114,98,102,107,118,97,101,109,90,100,99,110,100,100,83,101,103,93,103,97,100,98,97,120,102,110,101,94,104,96,102,89,109,105,100,109,99,96,99,112,96,104,96,102,107,92,103,108,98,102,97,95,101,102,106,101,112,102,95,106,108,112,97,94,98,101,95,90,95,110,108,92,102,104, +463.49268,104,93,97,85,106,98,105,97,92,101,102,117,109,103,95,97,82,109,106,101,103,102,101,99,100,90,87,94,100,107,110,93,91,108,106,86,104,105,102,102,95,110,103,102,97,99,105,110,96,99,112,91,104,107,101,98,99,99,122,98,104,101,100,90,119,124,80,91,109,95,106,98,104,108,100,107,97,102,104,95,113,124,95,103,119,110,107,95,94,108,104,103,98,109,103,96,108,97,107,111,90,120,113,112,100,131,103,105,101,102,107,112,103,111,123,100,87,85,104,103,105,101,98,101,110,100,95,111,98,94,102,115,101,121,109,103,96,99,91,99,99,123,98,96,83,106,93,94,97,97,104,98,103,95,110,89,117,101,109,100,93,92,127,103,106,101,87,96,101,104,105,104,100,105,101,104,110,108,114,87,101,99,106,115,99,109,99,82,116,79,102,97,103,103,91,114,105,89,106,106,107,96,99,107,119,103,98,103,106,108,110,96,114,94,103,101,113,104,99,116,113,109,109,107,106,101,101,100,93,98,99,81,100,96,103,114,100,102,104,95,90,95,121,99,105,97,105,108,100,103,97,107,97,100,90,103,100,106,91,123,93,103,103,108,101,110,106,111,109,104,109,100,110,100,114,106,103,88,96,99,100,104,114,104,113,98,92,99,108,92,103,105,101,106,100,100,107,105,98,98,78,92,100,98,107,100,106,107,92,104,108,112,107,113,106,97,112,106,98,109,102,102,103,119,105,91,103,102,109,114,115,78,113,98,101,111,95,102,99,108,103,104,105,95,104,86,96,102,106,108,104,116,100,107,94,97,103,103,103,114,94,108,120,90,107,95,105,113,99,103,111,105,103,95,101,102,95,107,101,106,100,104,102,103,92,113,117,104,98,83,103,106,98,105,101,93,114,97,104,107,92,90,101,91,96,96,102,100,102,106,101,94,106,97,102,95,95,98,99,98,106,97,96,94,108,102,118,97,113,102,98,99,110,94,96,99,97,95,98,100,113,101,95,106,105,66,100,95,99,102,104,109,103,103,100,97,103,106,101,101,103,103,94,95,93,104,107,94,108,93,68,109,115,100,99,93,102,117,89,108,91,107,98,117,95,103,92,112,102,100,116,102,105,98,108,103,117,111,98,114,112,98,99,104,109,99,100,98,98,110,110,99,110,100,98,102,87,107,112,97,99,98,100,109,110,103,113,99,109,100,106,102,100,100,103,98,105,107,111,106,109,108,103,85,100,103,90,94,109,107,108,99,118,107,102,98,111,100,104,108,101,97,95,101,104,108,105,93,101,108,95,106,113,99,104,110,100,96,100,103,107,106,116,98,76,100,112,92,86,98,109,101,109,86,107,114,88,104,128,101,101,107,100,96,108,105,104,100,102,116,117,103,105,110,107,97,111,92,114,106,110,96,97,101,103,96,97,101,110,106,99,102,98,106,86,108,106,96,97,97,109,94,103,100,92,96,106,91,105,105,100,106,108,95,108,99,107,114,106,94,84,82,108,101,87,101,98,99,110,97,94,89,97,104,86,107,117,93,114,112,115,109,99,95,105,100,101,96,111,96,97,103,109,117,99,99,125,105,111,124,104,110,98,95,116,111,114,107,80,110,101,105,116,103,95,109,109,101,105,94,105,95,102,99,102,102,96,101,107,105,104,112,107,98,109,88,99,98,110,109,111,96,105,88,100,100,103,107,98,110,105,99,89,90,99,92,100,103,98,100,103,101,94,101,98,92,95,102,90,110,106,96,104,100,102,98,115,105,106,95,95,111,106,109,107,114,105,105,98,108,94,106,105,109,104,100,105,109,101,101,98,103,99,106,110,95,98,109,102,99,109,99,97,83,111,104,111,106,112,98,97,109,101,104,113,101,110,106,106,103,98,104,97,102,90,101,100,96,102,108,105,97,113,96,103,89,90,117,97,111,108,100,94,113,103,97,96,106,106,113,98,97,88,95,83,106,95,103,104,105,97,106,105,117,91,104,83,93,99,90,104,97,107,106,118,103,106,111,104,105,97,108,101,105,112,98,91,104,109,103,101,104,99,102,96,101,95,86,105,103,110,107,106,117,95,94,101,86,67,108,106,109,111,106,113,110,95,97,98,110,101,112,109,100,107,95,107,99,112,105,124,99,113,103,96,86,82,96,101,105,98,102,107,110,95,103,107,108,103,103,113,107,92,94,105,101,103,93,107,100,110,102,98,98,96,100,95,93,104,97,108,115,112,104,109,102,96,96,96,95,97,114,99,105,106,103,98,102,101,114,110,102,101,100,107,102,100,103,95,116,98,98,95,100,104,103,117,106,93,110,98,108,93,95,96,102,103,115,101,99,94,109,99,97,106,97,104,106,114,112,102,105,98,108,104,105,91,103,120,105,101,93,100,112,95,99,84,96,108,98,105,106,100,111,103,105,103,109,105,96,101,109,97,107,113,99,104,98,119,101,94,124,97,108,100,103,101,106,105,117,101,101,93,97,102,80,100,116,92,120,99,100,107,110,100,109,103,79,87,106,105,101,97,108,114,113,95,109,87,92,106,106,102,106,106,101,109,97,101,108,107,122,101,97,101,96,102,115,87,100,92,99,108,104,105,94,104,101,108,89,107,99,100,96,105,100,103,99,102,97,129,101,106,83,111,103,109,104,102,95,98,101,108,122,99,99,90,106,112,106,109,99,109,105,109,92,102,110,105,100,94,118,109,111,109,107,105,99,102,112,100,105,110,99,114,116,106,107,81,98,110,105,93,98,115,109,108,107,104,107,93,109,99,97,110,95,101,113,112,105,100,99,102,127,97,110,101,100,114,98,106,116,105,98,120,102,106,124,99,109,103,100,109,92,116,98,103,99,105,102,105,94,102,101,114,112,113,109,98,105,106,101,123,105,107,103,107,104,105,105,102,106,96,91,86,111,96,90,108,100,101,123,99,105,119,109,98,104,105,105,98,109,99,108,95,100,76,86,91,105,96,102,98,100,105,106,105,102,117,106,109,92,100,106,106,99,104,99,97,105,90,101,87,126,113,112,111,106,95,110,105,99,87,107,104,109,93,106,113,124,105,108,104,103,110,95,107,106,92,107,115,109,112,106,110,105,96,88,105,96,103,98,106,110,100,102,101,104,106,105,101,98,95,116,95,119,102,94,104,100,105,95,103,94,98,96,99,102,108,94,98,95,109,106,91,110,101,107,101,108,108,102,105,103,98,104,98,109,102,111,108,105,95,98,100,101,112,109,108,95,99,104,97,77,99,116,111,108,99,102,95,94,111,98,103,110,114,116,109,100,106,97,110,115,112,105,111,103,101,110,105,102,101,95,103,111,94,101,94,101,101,92,102,111,114,109,97,99,110,105,106,113,107,113,95,113,99,97,76,94,104,103,88,102,106,91,89,107,90,103,99,107,99,94,97,92,100,96,106,106,104,106,101,93,100,108,96,106,102,108,106,100,92,102,98,97,101,98,106,89,109,102,93,89,104,95,106,98,96,102,112,101,97,113,105,102,109,111,111,98,106,107,103,107,92,108,100,108,101,107,108,114,95,100,110,108,99,111,110,119,118,104,99,113,103,109,111,105,92,103,93,97,94,98,111,109,112,99,109,102,100,108,99,112,100,112,95,99,107,107,101,92,98,105,98,102,105,102,90,110,105,102,104,103,119,93,103,97,103,112,113,107,109,102,98,89,101,111,103,98,103,105,101,125,94,105,104,100,91,107,109,104,110,98,108,91,95,116,114,100,92,93,106,100,103,106,103,103,99,117,100,103,102,102,104,99,101,96,113,108,104,109,99,86,107,111,105,117,118,106,108,104,92,105,98,102,108,103,105,99,104,117,104,102,101,111,101,94,99,109,93,97,98,83,108,110,117,113,102,105,113,107,96,93,100,93,94,96,95,96,92,102,106,92,94,102,105,105,109,98,95,83,117,104,99,108,95,102,89,96,107,110,97,130,101,96,100,110,105,95,100,103,100,108,116,101,107,117,100,114,104,103,93,107,86,96,107,104,103,96,105,95,92,80,97,108,102,98,104,107,106,100,93,101,76,113,98,96,88,95,98,102,94,106,101,96,114,94,102,101,110,109,93,102,102,85,92,100,91,112,117,105,101,106,106,103,67,95,100,99,96,91,91,112,110,106,110,95,105,96,105,107,115,92,100,100,109,95,109,101,95,112,114,104,106,99,92,107,111,107,112,105,99,99,100,104,93,105,99,98,107,106,99,111,99,98,127,100,100,123,90,96,96,112,94,119,97,96,108,105,94,97,111,101,93,103,105,96,111,101,95,116,109,96,98,103,119,96,107,115,102,103,109,101,110,103,102,104,112,107,108,91,104,103,99,89,105,116,98,110,99,96,100,102,95,108,102,102,109,91,94,104,96,102,102,108,105,107,121,104,113,96,99,106,100,105,97,95,108,100,106,104,92,101,106,93,97,91,109,108,105,84,105,113,105,97,95,93,98,114,102,110,100,98,110,113,92,100,90,123,99,106,98,128,103,106,100,98,90,114,103,99,111,103,105,110,104,102,93,98,97,109,91,97,104,101,103,94,101,91,104,91,107,104,85,106,93,95,99,95,98,84,105,119,80,107,108,101,105,99,105,81,102,86,97,113,102,93,101,100,103,107,106,121,88,109,101,87,103,91,104,98,96,101,99,88,99,98,101,100,110,105,108,97,93,107,100,99,105,94,104,95,111,104,95,93,121,100,107,92,109,111,92,101,94,108,104,101,99,93,110,89,120,110,101,94,94,102,107,109,93,95,90,93,101,109,104,100,95,103,90,109,106,98,105,95,95,96,105,99,116,90,105,113,99,95,97,91,94,103,99,110,96,107,104,98,100,100,135,92,104,93,102,86,112,100,100,96,100,87,104,91,104,97,130,104,96,106,97,103, +463.63312,94,117,95,88,92,95,102,106,94,99,87,106,92,102,106,114,110,104,111,113,114,108,99,107,102,109,101,94,114,108,104,96,106,96,104,116,103,101,105,103,100,103,105,99,111,117,117,105,107,117,99,101,103,103,103,71,109,98,107,99,103,117,102,110,109,118,95,105,103,99,97,98,94,103,106,112,100,93,105,99,113,101,104,84,93,101,101,106,122,100,102,91,111,85,102,98,109,104,100,92,112,103,85,112,109,111,105,108,95,108,105,102,111,110,115,99,103,99,113,103,99,98,101,111,103,107,100,97,99,108,106,102,79,101,118,94,99,105,102,94,106,115,121,119,97,109,102,104,97,101,77,107,99,93,89,94,97,96,99,107,108,117,101,93,105,105,111,93,123,97,102,97,105,94,114,104,97,101,107,95,102,118,93,102,100,109,101,97,99,106,99,100,99,105,103,100,105,104,104,103,96,101,103,100,94,105,94,101,103,113,106,110,87,105,116,102,97,106,111,100,92,100,93,105,102,113,111,103,98,103,99,117,100,102,99,99,86,110,100,104,113,104,116,101,96,112,108,103,106,105,101,106,89,104,103,114,99,102,97,126,92,98,92,108,100,112,95,110,101,109,106,101,107,95,99,104,113,107,91,100,96,101,105,96,80,101,92,105,77,105,112,105,109,103,106,109,105,113,103,104,106,108,99,100,95,114,89,125,98,106,98,79,103,118,101,92,104,105,113,107,111,91,101,105,116,106,107,104,109,104,103,98,103,123,124,110,99,109,95,107,120,116,106,101,98,100,102,98,104,97,110,101,103,107,102,110,99,108,100,108,93,101,103,95,106,104,116,122,97,110,107,102,121,112,115,99,106,104,97,115,90,100,94,108,106,102,108,95,110,99,100,101,99,105,120,96,117,103,98,117,101,106,115,99,110,91,103,98,102,113,70,105,121,90,104,108,101,94,110,106,88,116,103,100,104,102,101,97,103,107,97,115,101,103,100,108,99,100,103,97,111,102,102,99,105,112,89,107,115,107,102,103,105,104,109,116,100,106,95,102,114,100,102,108,109,100,115,109,91,104,75,107,95,108,103,89,91,107,97,104,100,77,109,103,106,108,96,91,106,102,100,106,94,100,99,103,104,95,111,104,113,100,94,106,105,102,96,102,115,116,107,94,100,95,100,98,105,100,108,103,94,105,114,121,108,100,114,95,103,105,102,106,90,109,103,115,110,103,99,103,115,110,105,96,108,100,101,95,93,112,107,104,109,98,109,94,117,101,111,102,98,105,105,116,104,104,106,98,98,109,103,101,107,89,103,99,96,106,104,108,94,103,90,104,101,108,110,110,106,105,108,113,99,123,104,92,113,111,108,112,102,93,117,101,98,98,117,103,93,110,106,99,107,87,105,117,103,97,116,115,109,103,106,105,91,106,92,96,104,107,95,96,105,110,91,102,101,108,105,102,108,100,96,99,103,94,110,98,101,110,103,110,101,106,107,107,105,110,107,101,96,104,100,103,97,108,109,96,120,109,109,104,116,110,104,95,100,119,104,109,103,99,99,95,96,104,102,99,106,102,104,114,95,105,113,94,95,110,97,103,102,96,109,83,78,113,113,109,100,109,110,99,104,98,102,93,109,112,107,89,89,93,95,97,101,106,107,99,103,101,113,109,92,97,108,103,75,113,99,106,133,108,110,106,104,100,98,106,102,100,105,93,96,100,100,104,97,95,101,102,95,103,104,104,109,105,97,102,108,109,105,99,106,108,116,119,105,92,103,103,105,98,100,108,104,100,110,107,86,117,99,105,106,107,109,98,92,110,105,113,96,100,94,109,105,115,104,106,100,106,118,89,108,103,109,97,95,108,96,93,100,97,102,101,108,100,107,104,111,103,110,103,105,100,110,112,101,121,93,105,103,104,107,99,98,100,100,107,85,96,95,106,116,100,94,93,89,118,92,98,103,108,96,102,99,104,96,105,134,112,121,108,101,121,103,103,90,100,106,96,110,99,99,113,108,108,98,109,109,110,122,112,90,114,91,86,113,118,98,107,108,101,111,108,101,107,94,102,94,100,102,94,111,107,107,100,110,106,105,108,104,126,109,99,103,101,105,103,106,102,95,111,99,96,98,101,103,93,101,86,114,111,102,102,95,106,100,103,89,107,105,101,120,98,117,105,117,100,109,114,107,108,105,96,110,107,107,107,98,114,101,104,119,89,104,106,89,96,104,108,99,90,105,108,104,104,94,108,100,101,104,106,107,101,100,104,83,94,91,108,102,106,103,104,101,107,112,103,104,103,99,92,110,102,109,94,114,101,114,93,108,103,100,105,104,105,87,105,109,98,107,100,97,106,102,106,88,105,94,113,105,90,112,106,94,108,103,109,101,121,113,113,95,97,98,108,98,95,105,107,106,107,99,104,99,91,105,105,103,71,87,79,110,111,113,108,110,104,99,92,106,100,93,108,117,116,115,109,100,105,99,116,108,85,103,108,112,96,100,102,113,93,124,93,105,102,98,115,112,101,105,103,99,106,98,96,101,112,96,116,108,107,113,111,96,108,98,109,116,103,105,111,78,79,92,109,105,104,98,112,108,99,99,104,90,99,106,100,107,93,102,109,112,96,91,117,106,104,105,104,99,92,109,93,101,98,92,110,93,109,103,103,105,107,116,114,102,97,108,97,104,109,69,107,105,104,91,107,102,91,112,109,109,109,99,113,97,93,109,112,100,98,106,111,105,106,112,109,103,99,94,107,91,107,109,93,112,115,106,106,103,107,99,91,110,98,99,103,110,105,116,113,101,118,108,107,113,105,98,112,103,105,112,82,95,125,104,86,100,91,106,102,95,108,102,113,93,105,104,121,111,95,100,93,100,101,95,102,110,95,104,105,117,88,98,106,108,102,113,108,102,103,97,106,101,109,104,109,106,101,98,104,106,107,89,107,112,99,102,110,85,102,100,102,112,110,116,104,109,91,102,111,107,95,109,109,98,111,109,106,102,102,88,103,105,106,108,104,99,112,106,97,100,116,109,105,108,95,110,88,104,109,99,86,103,98,104,96,117,105,98,108,108,98,98,105,96,113,107,95,115,100,106,107,114,94,107,114,103,116,109,109,104,106,102,89,112,110,93,98,101,99,95,98,91,99,114,99,105,94,103,105,95,116,107,99,108,100,111,119,113,100,104,103,109,110,101,106,103,102,93,113,101,99,113,104,114,89,105,106,106,112,78,105,107,116,108,119,116,109,105,102,100,102,103,99,105,117,108,99,102,102,105,97,105,104,121,95,106,93,111,87,100,103,106,99,117,115,104,100,111,92,106,106,109,116,98,104,108,100,98,101,98,108,102,100,104,103,103,105,99,115,102,119,106,102,116,98,100,115,101,103,100,92,87,110,95,106,118,109,106,113,103,109,111,89,109,101,106,108,96,99,118,100,109,98,106,106,110,109,109,81,95,106,111,113,98,103,90,102,99,99,101,97,108,103,88,97,101,96,112,108,108,110,105,103,102,105,106,96,102,106,101,97,103,109,86,110,105,106,95,110,123,102,112,104,100,111,106,111,108,99,107,101,101,108,110,104,109,99,102,99,111,99,103,100,109,102,99,103,102,113,99,107,104,112,100,103,105,107,103,90,112,89,97,100,98,100,106,101,98,91,100,118,102,104,110,98,116,110,110,107,101,94,105,100,108,93,98,107,108,94,109,102,99,113,91,111,111,91,108,112,119,100,102,107,91,98,105,109,102,95,99,101,104,111,98,104,103,111,107,84,94,128,98,88,106,92,102,117,102,103,105,101,102,103,95,109,113,114,98,100,97,106,86,109,106,94,96,114,102,117,108,95,95,116,110,118,96,90,119,110,104,104,98,101,93,82,110,103,99,105,101,93,100,106,103,97,110,105,105,101,102,97,103,111,115,93,113,95,100,100,109,109,96,106,101,103,95,99,112,109,109,110,101,118,91,104,94,103,102,108,101,102,108,94,114,104,97,102,97,94,94,101,104,106,93,105,94,102,117,107,101,106,70,99,100,100,96,95,115,94,102,99,105,116,103,88,104,109,100,99,107,97,94,107,95,95,111,109,117,111,104,102,101,100,87,102,96,98,117,101,92,113,111,100,107,105,105,101,102,96,102,99,103,96,89,100,100,104,77,110,105,108,109,117,102,109,101,94,104,97,105,98,98,118,100,97,106,107,114,102,95,110,97,102,113,105,91,113,99,100,102,113,105,106,102,104,98,90,113,94,113,110,99,108,97,106,102,108,110,108,117,103,99,98,95,96,103,101,107,102,109,96,102,104,104,120,95,100,103,87,97,97,110,101,98,104,94,88,106,104,106,96,103,108,104,97,104,97,104,107,95,110,99,83,102,102,101,109,103,104,112,88,99,106,103,98,112,92,100,92,99,102,102,114,103,106,99,108,109,107,98,80,97,98,101,105,92,113,103,113,104,98,98,93,104,98,101,108,91,95,103,104,102,108,128,108,93,108,103,106,101,96,117,99,105,95,89,105,104,96,95,104,94,88,105,113,109,96,93,114,104,99,102,104,101,101,100,96,103,115,105,107,108,98,115,103,92,102,88,91,107,98,104,104,99,94,112,97,107,104,102,97,112,94,105,102,102,108,117,106,105,91,113,98,110,96,109,93,106,108,101,94,110,96,104,101,97,99,90,105,95,103,119,113,103,101,100,103,103,103,101,88,95,107,93,91,103,98,104,110,104,103,111,116,95,104,91,89,105,98,105,109,92,110,82,103,103,98,104,115,98,102,87,106,100,98,90,100,112,99,95,100,91,112,93,109,96,112,102,92,99,95,99,97,98,94,90,94,115,117,72,93,87,102,90,99,108,95,99,92,95,96,99,91,95,113,101,71,108,108,100,104,99,96,111,102,99,96, +463.77359,121,103,93,91,92,113,103,95,112,115,104,99,103,83,106,81,96,105,115,94,108,91,98,114,87,98,98,94,114,110,106,95,110,103,115,98,97,117,114,95,107,101,98,97,110,100,94,90,99,101,109,93,102,97,99,97,96,109,101,86,105,107,98,98,112,102,96,113,92,109,105,96,86,96,87,113,82,99,107,99,98,107,112,92,103,88,96,97,104,108,111,101,114,106,88,100,106,96,102,105,91,83,99,106,103,96,107,106,101,111,100,100,105,102,121,102,101,103,106,107,107,84,99,104,112,111,96,102,141,90,100,105,101,101,94,72,110,107,104,101,101,101,112,92,105,96,100,98,86,101,95,106,106,95,92,99,116,95,109,99,106,99,105,98,95,94,106,93,99,87,98,86,100,94,99,106,94,102,109,104,105,104,96,105,109,103,87,100,117,86,98,95,109,106,87,95,81,115,93,101,105,108,101,99,101,98,106,98,110,97,94,110,98,99,109,102,93,113,103,106,100,103,108,113,99,98,94,104,116,108,102,99,101,122,107,109,108,101,96,102,105,121,105,100,93,95,100,104,97,103,99,104,95,96,96,123,98,95,106,104,101,111,98,103,100,107,90,101,110,99,98,98,107,97,116,100,109,106,102,108,97,98,102,104,102,94,112,95,88,94,100,99,119,103,106,96,101,110,103,118,94,114,106,113,107,112,102,106,108,105,92,100,91,118,110,109,88,98,107,74,104,97,110,102,89,95,107,92,100,101,100,91,88,103,105,99,99,100,92,85,106,107,106,105,100,105,106,101,102,101,102,92,112,107,106,105,101,102,96,112,110,97,100,100,105,105,99,96,100,97,100,108,99,115,104,104,91,106,103,108,108,107,95,97,111,97,103,92,95,104,101,92,107,104,95,108,82,114,109,103,100,99,96,89,96,104,104,106,99,93,103,83,106,99,102,93,99,103,101,74,102,107,104,105,104,91,109,108,109,91,105,111,101,107,102,103,100,99,101,105,111,92,104,102,94,100,101,113,95,102,112,85,105,96,108,104,104,100,120,95,115,106,95,121,111,110,109,108,99,90,104,103,113,94,110,98,95,96,105,105,108,98,105,96,87,106,103,102,97,102,103,104,105,85,105,101,100,106,105,100,106,97,117,100,113,103,95,95,109,102,99,109,94,99,101,110,102,101,103,95,103,96,102,103,97,105,102,105,100,110,107,100,98,94,105,102,105,97,100,106,104,102,99,89,103,110,96,109,106,102,89,100,104,105,109,102,113,93,107,100,91,104,101,107,97,101,102,111,103,99,97,105,102,109,105,105,104,95,105,94,113,97,88,85,98,107,102,99,97,79,109,88,77,107,121,99,70,104,107,98,104,100,105,108,109,106,98,102,116,104,101,98,100,108,102,102,97,97,101,105,107,99,110,108,98,95,104,100,105,113,70,99,91,110,106,94,94,122,111,108,95,105,93,101,106,87,97,107,103,108,75,105,103,98,106,105,110,104,105,95,108,101,102,107,97,97,107,95,108,120,106,107,102,101,87,110,102,109,98,105,97,96,121,92,97,99,110,104,106,103,92,102,95,104,109,101,100,115,104,93,101,91,99,102,95,97,93,112,98,100,112,122,106,106,84,102,111,103,101,102,96,93,97,98,97,92,93,103,94,102,122,104,107,112,105,91,93,92,105,97,97,91,112,101,91,95,104,105,96,102,100,80,109,100,93,99,100,101,104,94,95,103,102,105,95,95,105,99,97,101,99,109,108,117,105,102,100,96,95,104,114,106,108,103,98,104,123,109,97,99,84,117,111,114,102,113,96,111,95,104,104,109,84,101,103,102,104,110,102,101,116,101,98,101,110,105,133,108,98,98,107,96,108,99,100,104,104,100,121,102,111,93,99,97,104,105,115,94,108,107,85,103,113,107,106,94,101,96,88,91,109,105,115,107,96,107,107,91,102,99,99,95,97,96,103,107,115,130,108,108,109,101,98,104,97,81,102,96,103,107,106,104,105,95,100,107,108,114,104,102,108,90,98,103,99,99,106,108,102,102,101,91,113,96,87,93,103,99,94,111,83,105,93,110,106,108,104,103,107,100,94,99,95,106,94,94,96,80,110,100,118,111,99,105,105,103,88,102,101,106,104,105,80,106,98,97,98,113,108,105,119,125,95,96,97,115,95,108,106,105,108,96,104,105,109,89,109,96,109,110,104,110,90,103,102,95,93,105,84,100,96,118,104,101,104,100,102,109,89,113,110,101,98,103,98,105,114,102,102,99,98,106,110,113,117,105,107,107,98,113,98,114,103,104,114,104,102,110,104,91,86,97,110,96,111,97,100,131,107,95,106,101,104,102,117,99,104,98,114,99,98,106,104,100,105,96,102,86,104,103,97,101,92,112,100,105,83,112,98,98,121,100,113,100,96,96,105,102,93,105,103,107,104,118,94,104,100,109,107,77,112,72,108,124,97,103,103,102,116,89,105,101,92,104,105,101,108,124,105,93,105,108,110,94,108,102,99,103,97,101,110,117,109,93,110,99,104,80,101,103,99,97,96,75,111,95,108,100,108,103,101,119,102,104,98,103,107,105,99,93,79,103,109,120,111,84,106,107,114,97,101,95,115,105,124,104,109,104,103,94,99,97,103,101,98,121,109,98,100,103,105,103,98,109,91,92,113,103,106,100,105,112,103,111,99,96,103,111,100,119,101,113,116,105,107,111,80,97,111,112,109,106,105,92,106,100,109,113,96,107,105,112,99,104,116,110,109,113,96,96,96,103,102,103,94,107,103,111,98,102,103,115,100,103,96,95,105,105,123,104,104,102,108,98,106,109,95,102,99,96,103,102,99,108,88,100,95,90,93,108,120,92,106,100,99,118,108,103,99,126,110,106,104,104,110,102,103,106,90,110,128,100,115,98,91,94,87,104,107,102,103,111,106,89,112,111,130,111,93,99,102,103,115,95,104,117,116,105,107,113,100,99,99,103,97,102,85,97,108,106,107,104,98,105,101,102,100,100,104,104,96,89,105,106,108,110,93,102,104,116,120,111,113,105,106,105,113,105,113,104,100,113,97,129,108,95,116,100,116,103,107,116,102,98,101,95,111,96,88,106,102,91,103,112,105,91,103,94,100,110,104,111,92,112,104,93,116,95,108,85,93,104,101,97,109,101,99,110,102,90,100,109,88,88,101,97,106,104,95,102,104,101,108,111,95,100,106,103,109,100,106,109,108,96,111,106,96,101,105,97,98,106,104,108,109,111,105,108,106,108,108,95,94,89,105,108,110,92,101,106,93,96,115,95,104,105,79,100,109,121,101,103,95,114,114,99,107,97,96,107,95,96,100,97,95,104,110,101,96,109,127,101,99,104,100,101,108,92,107,101,93,95,104,99,105,100,88,108,98,110,98,91,107,111,99,112,115,105,110,92,99,107,107,107,91,100,109,119,107,111,97,106,107,103,113,96,106,99,98,101,109,102,97,100,101,106,105,112,123,95,102,104,91,121,111,115,96,104,98,98,109,103,90,103,98,99,90,100,105,114,96,109,97,91,110,107,115,104,96,109,104,117,113,99,111,107,100,103,103,99,106,109,102,99,107,103,95,77,100,108,88,98,101,101,108,109,98,104,110,110,107,96,118,93,105,94,95,89,113,94,86,104,104,111,98,103,106,98,112,109,105,113,95,105,107,103,97,104,105,112,105,113,104,97,95,94,113,105,109,99,96,106,102,121,109,101,89,97,106,89,106,98,103,101,112,96,109,101,111,109,109,104,115,106,110,103,104,97,102,98,91,80,123,99,107,111,102,106,104,104,108,97,106,102,98,116,98,106,93,113,108,114,103,106,96,108,107,96,113,98,88,106,99,106,111,105,89,100,94,103,97,100,95,95,104,83,107,95,99,126,91,108,106,116,106,100,104,115,100,95,93,99,122,102,115,104,90,102,106,103,100,97,112,108,95,107,102,91,97,101,83,101,100,103,113,105,104,107,106,107,105,102,111,109,103,94,95,107,106,99,112,106,101,98,133,109,105,75,107,103,103,104,98,106,107,113,100,106,102,113,114,95,94,95,100,112,107,101,109,101,109,107,103,100,109,106,106,95,101,92,100,103,99,106,105,101,100,95,105,102,95,90,105,96,113,110,87,106,101,95,104,103,85,91,100,98,101,106,102,95,122,104,93,101,112,110,103,106,105,104,99,108,98,100,96,97,88,86,108,131,110,99,103,96,95,105,106,99,111,92,96,94,102,95,96,101,101,104,91,100,100,98,104,99,97,98,109,101,103,107,121,107,112,104,108,103,92,99,111,103,111,96,95,104,113,106,95,100,97,104,100,101,105,104,108,97,103,68,101,63,95,94,102,100,104,108,111,104,98,101,102,109,105,93,105,92,105,100,104,99,99,96,105,93,88,100,94,103,96,74,102,100,100,108,103,103,106,101,97,110,97,108,110,104,103,96,103,92,102,112,108,108,101,105,101,108,116,103,102,99,99,107,97,101,99,123,101,107,98,100,105,108,103,109,113,102,101,104,96,105,102,101,106,96,97,102,100,93,113,115,82,101,106,101,92,113,91,97,101,102,97,119,115,103,99,99,113,106,92,89,112,106,106,96,87,117,102,95,106,97,103,109,108,105,86,113,110,106,97,91,96,101,108,98,100,91,83,97,87,104,104,116,103,98,109,105,94,102,117,96,104,97,110,91,95,96,99,104,97,112,122,104,94,107,96,116,105,93,107,99,104,92,116,97,102,104,102,105,98,94,93,91,122,122,106,97,108,105,103,117,94,94,99,94,99,96,102,112,95,101,96,108,96,96,113,103,92,102,91,100,82,100,103,105,99,100,92,111,117,90,94,98,104,101,98,93,87,104,116,94,83,91,98,95,105,96,99,103,92,96, +463.91403,117,95,105,78,94,104,91,113,74,97,100,95,110,94,106,105,91,98,104,105,114,110,104,100,99,105,98,94,98,105,101,106,106,98,106,114,97,89,108,89,94,97,96,100,124,109,96,100,115,107,92,92,101,101,108,95,112,109,105,89,96,92,106,95,112,98,99,108,112,104,111,106,86,100,90,111,107,99,107,109,109,99,97,105,108,101,113,109,94,99,103,108,104,104,106,94,105,87,93,98,94,109,104,91,101,101,112,99,100,95,101,114,104,71,101,96,108,101,104,104,100,98,120,100,108,104,103,104,104,118,102,99,103,108,106,106,103,120,94,123,107,100,108,113,99,97,106,99,115,99,103,107,116,108,101,83,108,94,105,101,95,116,72,109,109,113,103,116,107,99,110,104,100,106,95,111,96,96,100,104,109,118,107,106,113,100,97,80,117,106,107,109,96,104,96,98,104,98,98,101,94,100,89,103,103,104,102,132,96,92,95,106,103,112,98,101,99,98,93,97,89,110,100,88,102,109,99,85,102,120,96,109,106,101,77,93,94,105,93,101,111,94,103,109,98,98,99,91,126,104,99,106,96,113,112,107,95,107,100,98,98,107,95,102,97,91,99,99,120,103,102,105,103,97,116,101,101,105,108,119,97,105,96,109,109,105,103,104,104,104,101,100,117,93,98,104,108,105,97,107,98,86,106,106,95,102,104,101,106,115,98,104,104,113,109,98,89,108,103,107,103,104,112,100,106,101,97,103,105,106,99,99,99,88,106,95,108,104,100,96,103,98,129,103,98,102,110,109,107,112,107,112,92,109,106,97,101,95,117,102,108,107,80,95,101,102,103,114,105,105,104,99,105,107,104,100,99,111,103,104,98,98,93,110,105,103,98,81,95,92,102,101,109,104,102,111,100,115,103,104,113,99,96,101,98,91,96,110,101,96,93,95,99,109,103,102,100,79,109,94,109,102,111,102,107,109,100,100,92,100,91,116,104,101,95,103,103,94,97,100,101,110,98,100,97,105,99,101,96,116,114,104,111,109,96,99,99,110,107,95,93,107,118,126,116,107,101,105,100,101,100,105,96,105,104,97,96,104,104,121,111,108,111,99,95,103,106,104,107,102,102,98,111,102,101,108,101,107,89,103,112,98,95,126,107,106,102,113,101,101,108,117,101,116,102,98,104,98,130,100,95,93,114,107,98,118,113,107,108,120,105,106,102,97,105,100,103,96,103,100,107,106,95,98,99,91,104,101,104,101,113,103,103,102,107,98,121,91,104,98,98,101,95,99,98,98,110,117,99,97,100,100,91,104,109,104,99,111,94,101,99,101,102,102,97,94,107,99,99,88,114,105,101,104,118,110,88,108,106,99,102,112,108,100,109,118,100,103,108,110,106,103,104,111,108,92,104,99,114,100,107,101,106,107,112,101,95,99,102,100,104,94,107,106,103,102,113,101,96,102,102,117,102,111,95,107,97,117,104,102,96,97,104,106,104,104,108,110,104,99,105,110,85,113,100,90,107,98,103,97,105,102,105,105,106,96,99,96,111,115,104,95,107,104,94,103,102,111,102,117,99,102,108,117,124,103,103,101,105,97,107,98,103,96,103,108,100,117,109,101,98,112,107,102,94,108,97,110,104,96,105,100,101,104,99,106,116,104,95,124,104,108,107,103,102,96,97,96,109,87,103,94,118,107,98,98,98,107,106,93,112,97,106,113,94,102,104,109,101,102,103,104,95,110,83,104,103,110,103,96,108,100,90,102,106,109,108,97,112,100,105,137,107,102,105,115,101,95,99,116,103,88,99,72,104,103,93,105,101,107,105,102,98,100,107,83,107,103,107,106,122,72,106,103,96,107,112,95,114,100,90,99,106,104,91,106,106,113,108,109,105,96,103,110,90,106,104,100,97,96,97,94,101,104,102,99,99,83,104,102,101,91,102,114,106,104,102,107,101,121,105,86,105,98,92,98,105,105,94,99,112,117,97,105,100,101,122,105,117,106,110,101,105,113,107,106,98,117,113,98,126,99,110,111,101,101,96,106,98,99,102,100,116,95,88,97,95,105,101,102,95,95,112,84,99,107,98,101,104,103,117,109,101,103,99,104,101,95,94,110,104,97,105,94,95,115,100,100,100,118,107,108,98,94,108,105,95,97,107,105,100,108,114,114,103,108,107,95,99,101,96,111,107,94,109,107,92,85,115,103,97,114,97,96,105,103,108,106,89,103,103,114,111,110,99,110,102,90,98,87,67,106,96,116,103,126,99,110,104,99,102,106,107,109,108,92,95,96,99,103,89,113,95,98,93,110,110,97,107,99,110,100,103,96,110,100,108,97,104,105,108,110,104,94,115,101,97,111,110,108,100,99,105,101,103,89,99,104,88,107,104,100,108,105,98,110,99,99,112,104,107,107,108,107,104,100,100,104,100,99,88,107,86,103,92,110,106,106,92,106,102,106,104,106,106,108,116,123,110,103,96,104,99,91,96,106,96,98,95,106,100,102,96,107,99,114,113,101,103,99,103,119,107,96,102,113,104,99,106,103,99,97,98,105,101,79,107,104,107,111,97,81,108,102,93,93,105,98,101,107,107,93,101,102,105,104,98,107,120,100,110,100,107,110,99,102,102,94,109,106,100,98,116,95,105,102,98,109,115,109,105,108,116,101,103,100,124,106,106,106,98,103,90,108,113,109,107,89,99,119,95,113,113,109,96,113,95,80,124,103,106,102,111,100,108,106,102,101,93,122,99,109,106,100,104,92,109,104,102,109,113,108,116,111,100,101,115,100,83,108,104,109,101,103,114,101,121,105,95,106,105,107,111,111,108,98,98,112,114,99,106,92,115,107,101,102,106,94,90,106,113,108,101,104,102,104,108,109,96,115,102,97,106,105,103,95,95,106,98,106,103,90,110,98,101,94,105,97,111,105,102,107,112,105,104,104,99,103,99,103,110,99,98,110,99,102,111,110,96,107,95,106,101,103,108,107,91,101,100,90,117,102,104,100,108,103,111,110,111,96,90,100,103,100,112,92,99,100,108,105,102,82,112,105,98,102,110,102,101,92,94,99,90,106,94,100,109,108,109,119,110,113,103,120,107,104,104,108,103,99,104,96,106,122,104,98,102,107,99,101,112,99,99,116,118,101,99,107,108,74,105,101,115,111,112,108,103,93,117,87,106,106,117,104,90,106,112,98,111,94,104,93,101,104,109,114,110,96,94,106,110,107,100,93,89,99,114,101,107,104,107,110,99,118,112,97,98,112,103,108,103,106,116,100,109,110,103,108,103,99,98,103,106,109,102,112,105,101,99,103,109,104,117,95,100,108,95,102,107,110,98,104,98,86,99,103,106,105,120,105,111,102,103,109,97,113,102,102,106,105,112,111,109,112,118,99,104,106,95,98,98,108,96,112,98,99,105,101,99,99,109,82,104,103,108,110,121,98,102,102,101,99,100,99,124,75,106,107,94,99,101,107,103,95,98,105,112,112,111,101,100,111,94,98,109,109,99,107,109,109,128,103,108,119,119,109,101,115,108,87,116,107,94,114,88,121,99,106,98,109,100,104,93,104,109,102,91,102,101,77,109,112,116,104,97,106,108,105,100,109,109,97,96,97,106,91,109,100,108,97,100,102,108,115,103,105,101,97,94,104,105,99,120,112,118,99,98,113,107,96,102,108,108,113,113,117,115,103,98,97,102,102,89,105,100,105,99,102,104,96,110,96,104,105,107,113,103,109,108,108,110,104,92,95,92,101,105,109,96,108,96,101,97,107,110,97,99,90,106,102,105,111,96,93,106,108,103,102,78,110,111,98,103,106,105,104,117,102,98,77,94,102,99,100,76,119,100,111,98,94,106,102,99,106,94,89,100,100,106,98,105,103,100,115,129,98,120,107,84,97,104,101,103,96,104,127,109,94,102,104,98,109,101,105,97,110,101,109,100,115,95,100,93,110,104,124,99,99,105,101,102,107,100,107,110,100,106,102,103,109,95,106,101,111,110,98,100,109,102,99,99,105,92,99,99,96,106,105,97,100,104,106,102,104,105,106,120,94,106,94,113,104,105,96,98,105,99,108,101,93,105,105,90,107,107,117,95,105,101,120,98,101,102,112,101,106,109,100,100,103,110,109,98,108,92,100,103,109,106,103,117,87,101,98,104,97,110,96,97,99,106,111,96,103,117,96,94,108,103,109,99,99,91,91,104,101,101,100,98,109,96,106,98,101,92,96,106,94,116,113,93,110,115,99,107,111,100,91,87,103,111,100,98,116,96,91,99,101,100,104,108,105,93,102,99,109,99,100,119,102,97,99,108,111,103,108,87,110,110,104,102,90,95,102,108,92,99,112,98,96,110,101,110,95,99,110,103,94,119,77,70,114,102,102,104,105,108,116,91,109,113,105,108,99,102,108,104,91,97,83,105,92,106,101,89,113,89,100,105,93,93,102,102,106,94,103,94,102,105,95,99,100,105,102,110,91,96,110,100,107,89,87,99,110,114,97,118,99,95,105,102,101,73,111,106,124,104,104,106,110,104,83,82,108,109,99,109,107,110,106,116,98,96,97,106,105,109,96,102,117,93,99,104,105,129,90,108,98,87,115,97,126,110,111,100,97,111,103,107,102,113,113,107,111,102,106,106,106,94,100,98,106,93,98,98,102,107,107,103,100,104,96,100,115,83,104,109,112,106,104,104,112,93,110,100,104,99,102,97,112,110,110,95,88,113,95,104,99,102,91,104,98,93,100,104,99,105,111,86,106,91,78,102,107,119,103,105,101,113,106,110,100,108,94,103,77,103,101,97,103,94,98,99,112,123,99,110,91,97,97,94,93,96,103,76,92,102,99,98,93,123,101,95,109,107,103,91,113,107,101,107,92,109,99,105,94,106,101,115,103, +464.0545,94,103,94,96,92,114,106,92,104,97,101,109,96,108,103,97,103,97,112,120,88,106,112,104,108,101,83,114,102,89,103,95,90,112,107,86,103,105,109,98,95,106,91,94,102,120,109,100,103,103,98,105,102,87,107,105,71,109,105,95,102,95,123,107,110,117,92,109,92,123,92,96,96,115,98,99,97,92,101,98,107,111,111,98,109,81,88,113,102,100,97,110,96,99,101,100,102,100,99,107,97,88,100,100,91,94,85,104,110,102,99,102,97,113,118,100,99,103,98,99,113,102,111,111,113,107,98,76,110,107,104,95,98,95,101,106,107,103,108,98,102,108,98,102,98,114,113,95,99,101,104,104,98,93,105,112,100,110,97,103,104,117,104,104,106,105,102,99,106,95,105,97,92,107,111,90,99,98,89,94,106,102,94,102,103,109,106,94,103,111,104,115,103,98,105,76,102,110,104,102,92,103,103,106,108,101,98,97,111,109,95,104,99,95,90,106,106,100,101,103,115,100,110,114,98,109,110,113,104,114,121,111,109,103,105,104,98,106,94,102,101,98,117,102,104,90,98,96,103,107,99,101,112,109,108,109,104,102,100,97,81,98,102,97,95,106,100,106,98,103,105,108,114,102,108,115,103,102,105,97,106,100,106,99,106,107,108,110,102,106,103,97,106,108,117,101,109,104,111,104,107,109,105,112,98,110,110,109,120,117,93,118,107,114,100,101,116,111,105,100,111,102,103,112,115,103,100,100,106,99,109,99,100,105,105,102,117,108,98,107,99,110,109,102,99,102,107,112,107,101,107,93,114,108,104,100,97,121,104,108,98,103,109,100,112,103,110,101,109,105,100,106,104,107,101,105,105,102,104,109,112,110,104,118,99,107,107,101,109,107,99,102,101,114,97,100,104,104,106,115,105,104,103,108,107,99,95,105,105,100,109,95,113,108,100,94,101,91,100,97,97,103,92,105,125,92,104,101,106,106,111,106,96,105,107,97,104,88,116,109,109,113,108,110,96,105,90,99,110,103,102,105,104,112,111,108,102,97,102,95,112,96,98,104,105,112,111,100,106,109,105,112,107,100,97,104,101,111,100,107,101,108,105,97,103,110,74,101,100,92,115,104,102,99,99,83,94,117,101,105,98,121,104,108,115,98,108,94,108,102,95,100,94,103,113,103,96,103,82,91,95,113,110,106,99,113,102,102,110,101,100,95,84,101,96,108,92,100,103,103,108,91,90,92,98,110,99,103,99,99,104,109,105,110,100,99,100,102,110,96,109,117,98,116,103,109,123,104,99,106,105,99,103,107,97,110,107,101,105,104,97,101,102,98,104,105,112,118,87,95,109,104,101,102,96,88,94,103,107,102,115,98,106,105,95,102,97,111,97,100,99,106,114,98,96,100,103,96,105,90,100,106,101,98,102,99,104,102,107,108,94,92,109,97,95,109,120,105,104,112,107,98,112,105,111,106,100,97,112,112,104,100,95,104,95,110,113,105,109,104,91,96,108,116,96,112,88,100,96,103,101,104,99,102,107,97,101,98,105,108,92,107,104,94,90,87,89,99,94,108,116,102,105,109,103,93,103,120,105,93,107,103,105,101,96,98,107,108,102,99,109,98,109,99,106,90,90,105,99,101,111,103,113,111,101,108,109,100,92,113,108,108,97,74,100,106,106,111,111,92,112,101,112,94,94,99,98,101,108,101,110,98,103,86,101,100,100,99,116,110,118,109,90,113,98,102,95,102,114,97,111,109,109,99,100,100,110,116,102,95,107,95,99,107,91,112,104,106,106,107,106,109,104,100,114,99,104,107,94,98,108,100,103,115,118,112,67,117,106,98,104,104,100,101,101,113,92,103,94,99,103,105,107,107,100,110,109,99,114,110,99,97,104,100,102,129,105,102,111,110,108,100,105,110,102,106,93,93,96,97,92,103,106,115,109,96,103,100,101,109,108,114,106,114,109,100,98,103,108,111,110,103,108,117,110,105,103,101,99,110,109,105,100,88,108,115,97,109,105,102,114,104,103,111,102,98,98,105,100,100,95,105,85,112,102,100,104,108,101,101,98,103,100,114,101,95,130,105,100,108,108,114,90,106,107,105,107,107,95,101,106,99,108,102,100,108,109,117,94,102,103,94,83,101,91,100,103,107,93,98,101,100,108,113,95,105,99,102,101,120,100,96,117,109,107,110,104,98,109,103,102,95,100,96,100,97,106,103,106,105,96,114,100,97,113,103,99,101,110,112,96,107,108,98,96,101,101,96,104,102,105,102,91,103,109,106,104,115,114,97,101,110,101,106,110,103,95,96,106,111,102,116,99,103,113,106,102,107,108,102,107,101,111,104,104,101,101,99,97,103,98,105,97,106,114,100,97,105,102,110,110,103,112,103,113,95,96,108,108,113,100,102,98,109,101,93,92,113,107,94,103,107,102,87,94,106,105,113,86,99,92,87,94,88,102,107,104,103,90,103,105,103,103,102,99,106,95,101,102,103,95,110,117,104,101,103,107,108,101,96,99,102,104,96,109,104,106,107,99,112,94,110,102,109,96,99,89,91,102,112,121,116,107,115,102,107,95,117,91,88,99,106,93,108,96,101,114,102,102,119,116,99,114,121,98,116,104,115,91,101,108,96,109,103,109,107,100,96,97,88,81,104,103,119,94,109,108,97,95,97,107,99,101,100,102,101,105,95,98,101,89,91,97,105,98,111,103,109,103,103,113,103,92,109,98,109,105,110,97,94,99,110,92,101,109,86,118,111,99,93,109,103,97,90,103,99,99,109,105,103,100,95,113,114,106,106,105,97,101,107,114,99,106,105,97,98,96,103,101,92,107,104,100,100,99,99,93,116,107,111,106,97,112,121,98,117,105,106,104,96,104,102,104,108,111,100,97,109,98,97,97,107,109,90,100,107,111,95,95,108,91,99,98,101,103,100,110,99,107,90,125,113,112,110,128,106,114,116,105,93,112,98,109,95,106,78,82,100,109,109,101,103,98,101,107,108,111,93,96,100,103,98,101,106,110,102,95,106,96,104,96,103,103,95,105,91,99,105,107,109,91,103,93,103,94,94,104,115,106,92,110,106,108,103,98,95,101,103,107,107,94,108,105,109,111,106,103,95,99,92,120,103,100,104,105,101,103,100,98,107,98,100,87,105,107,113,100,110,102,106,111,90,90,106,100,108,110,107,104,83,93,107,96,100,113,100,97,100,108,116,105,102,95,98,109,100,117,101,113,105,108,98,101,115,102,103,110,92,98,108,105,101,93,102,110,95,115,98,97,92,105,101,105,106,100,112,102,102,109,105,93,99,102,106,106,85,107,100,103,98,106,100,95,94,106,98,107,100,103,110,99,112,92,113,104,97,102,101,96,94,98,91,105,91,97,102,101,110,99,97,99,100,112,105,95,97,103,102,100,94,109,85,97,96,97,117,105,116,97,99,102,99,102,101,102,117,96,101,87,103,105,116,97,101,99,100,108,101,101,96,102,109,94,120,104,101,101,115,107,95,112,98,108,81,106,113,105,102,101,109,102,103,106,98,100,103,98,100,99,113,107,96,99,113,94,106,93,99,106,97,102,94,100,103,100,102,94,107,97,101,98,101,93,112,112,93,104,109,98,103,107,91,103,91,108,100,102,101,95,107,108,85,107,107,94,104,109,95,79,94,111,113,98,99,97,98,112,87,96,94,112,100,99,104,102,108,79,94,107,106,97,117,101,98,114,106,111,109,104,104,108,95,109,95,104,112,114,95,98,91,105,100,104,98,109,98,101,117,84,87,101,113,104,105,99,105,116,112,104,108,105,103,96,94,100,112,102,98,96,90,99,123,110,93,112,108,112,82,93,100,106,98,95,94,103,116,80,112,92,96,117,114,97,92,104,107,106,108,106,109,100,93,103,103,104,104,114,120,86,97,100,105,109,99,101,105,109,93,97,109,98,102,111,97,92,104,94,100,112,98,107,91,102,109,105,97,90,101,105,108,99,103,92,88,105,112,99,121,104,118,99,99,103,92,100,106,102,89,112,107,98,97,96,103,95,108,88,105,104,100,106,103,97,93,109,104,105,98,103,107,105,109,99,104,122,100,98,97,108,103,103,114,109,102,100,105,113,105,104,102,109,98,94,89,103,92,101,108,114,104,107,100,101,92,100,113,106,99,93,110,100,93,108,97,82,104,97,103,102,100,100,114,95,95,96,114,101,108,109,101,115,105,113,101,98,95,112,100,104,92,105,102,103,107,96,99,108,108,94,113,111,104,97,107,95,116,96,97,103,113,91,103,97,99,100,103,100,98,101,100,100,98,117,102,120,98,95,109,98,94,108,94,95,99,81,112,101,99,101,97,105,103,101,108,104,102,95,102,110,122,94,115,102,105,95,110,100,112,99,98,87,91,102,94,100,103,90,100,98,95,109,102,105,101,97,91,105,92,99,105,107,99,103,96,101,94,109,105,105,99,98,102,108,89,98,103,108,105,96,107,113,105,95,101,119,95,97,97,89,86,96,100,102,94,96,95,104,108,96,102,103,101,91,113,106,103,98,102,98,86,94,96,107,113,124,100,107,122,95,98,105,105,101,88,79,95,81,114,116,109,100,102,127,121,98,98,102,101,96,91,100,84,102,96,92,117,101,108,105,101,101,94,89,101,98,110,82,105,91,97,103,93,92,105,106,101,110,77,104,108,103,112,109,86,111,97,99,105,119,100,100,109,99,97,113,91,104,96,94,102,98,102,108,114,96,90,104,94,104,104,100,112,85,116,93,102,107,95,101,116,105,90,94,105,117,96,104,105,93,105,103,95,101,90,101,110,109,107,98,86,107,115,106,95,98,104,95,98,101,99,115,113,95,101,97,106,98,110,110,99,113,117,80,101,90,104,92,92,79,108, +464.19498,106,79,106,97,102,102,98,109,108,106,82,105,104,106,113,116,117,112,107,122,116,102,105,105,66,114,97,103,110,78,110,103,116,97,101,101,76,98,94,106,108,97,108,98,103,88,94,99,110,107,103,122,94,90,113,93,108,93,108,97,105,106,104,90,124,110,117,111,101,100,94,107,92,98,108,118,103,97,103,122,109,89,99,107,103,89,98,105,105,83,106,101,105,104,100,104,101,112,108,99,93,103,100,108,100,63,87,120,94,94,95,105,111,112,105,109,101,105,101,106,100,111,101,110,106,104,114,100,118,103,90,102,105,109,94,98,112,94,93,105,93,94,108,106,99,102,98,100,97,95,100,96,99,90,109,100,86,91,109,89,102,109,105,106,87,100,104,102,101,99,120,111,111,122,100,109,113,91,98,103,88,106,112,108,97,115,106,100,111,100,105,105,95,112,102,99,110,103,106,98,109,97,99,106,107,117,91,102,104,106,101,95,86,106,101,96,99,111,104,105,110,102,106,104,100,110,108,103,117,107,90,105,95,108,96,104,108,111,103,103,100,103,98,101,93,92,105,101,104,97,113,104,98,113,104,109,101,94,98,88,99,101,109,88,102,99,116,110,128,117,120,103,100,100,105,101,94,111,103,109,105,108,108,107,99,106,96,102,97,106,99,103,126,111,98,122,108,118,106,102,105,82,99,125,106,107,105,117,112,105,105,108,108,110,103,110,113,99,103,112,103,96,108,107,102,104,107,102,116,116,100,111,105,124,104,117,109,107,91,108,99,100,97,107,114,114,105,109,102,109,97,104,111,104,101,101,88,109,117,105,106,89,103,114,104,95,111,108,104,117,118,126,108,106,112,106,109,101,113,108,105,102,101,105,114,90,101,111,101,89,112,105,108,97,108,103,100,100,106,113,105,108,93,108,112,104,106,102,112,102,97,98,103,110,95,96,113,117,105,91,106,95,93,96,102,101,93,114,107,105,107,107,109,101,98,106,104,107,115,106,105,106,104,96,104,100,103,107,109,102,105,103,110,117,99,107,105,93,107,105,105,92,120,96,95,104,96,104,108,91,87,108,104,108,107,111,94,106,97,96,88,108,110,99,103,93,100,93,114,92,87,106,109,97,106,93,112,108,115,105,110,105,111,112,134,104,92,95,111,96,111,108,91,107,100,109,106,110,116,109,107,134,97,103,102,77,108,108,99,109,106,103,108,94,106,101,114,102,115,110,105,78,91,107,95,112,105,95,104,103,111,112,110,124,101,101,105,103,99,97,101,98,104,128,114,105,123,113,106,112,94,110,105,102,105,97,111,91,124,109,120,114,104,98,119,90,109,114,96,97,117,107,100,105,103,102,106,120,104,109,109,117,104,102,99,102,107,104,96,91,106,108,99,122,111,95,110,114,108,106,106,110,98,99,99,109,95,108,109,112,79,109,98,108,94,108,102,97,104,109,97,100,102,102,95,102,101,96,102,109,102,100,99,105,105,105,104,124,107,102,107,114,121,103,100,105,113,91,111,108,106,95,114,99,107,107,113,86,121,117,115,103,102,111,101,99,116,110,103,97,103,104,101,115,100,100,108,112,84,105,102,101,112,100,94,112,103,110,102,106,110,104,101,106,114,97,102,111,117,96,115,100,109,112,103,99,99,91,102,128,103,103,106,110,100,110,96,104,103,90,109,96,102,109,106,97,96,121,104,104,109,133,108,99,119,114,103,107,104,97,100,112,102,109,103,103,105,108,104,108,100,106,112,109,94,101,109,106,101,110,117,100,110,117,96,99,109,115,114,133,116,95,108,105,104,105,105,118,111,116,102,98,105,109,112,116,95,102,109,101,108,106,97,94,108,111,111,111,105,101,102,114,98,109,112,116,117,105,106,107,117,99,114,95,108,103,113,109,103,112,110,117,113,109,99,97,102,94,95,104,99,94,102,105,105,114,101,103,106,95,103,109,120,128,107,103,88,122,97,112,94,88,91,120,105,111,116,110,102,102,99,96,104,93,107,117,105,104,113,93,102,107,101,104,121,104,100,108,112,101,101,119,90,95,106,102,98,109,96,102,100,108,126,107,109,99,104,102,86,107,106,103,103,111,103,96,107,109,114,107,104,113,112,108,91,109,84,97,95,101,110,104,92,101,113,89,98,96,117,105,98,109,97,109,106,100,109,100,98,110,109,98,98,99,96,120,99,107,109,108,88,113,113,104,101,100,96,100,99,108,105,107,106,100,116,94,115,105,80,109,95,98,102,102,92,109,104,111,106,98,108,110,122,110,123,117,94,105,102,90,107,107,76,106,105,108,103,103,88,107,104,100,103,109,108,114,107,101,109,114,107,114,103,91,103,102,112,99,104,103,109,110,102,104,94,117,100,116,107,96,99,108,101,117,106,109,107,121,103,104,102,104,104,97,97,106,105,110,110,110,102,99,114,100,112,109,111,99,102,92,101,102,106,109,105,116,110,113,116,99,99,102,105,108,101,103,98,100,110,113,109,101,106,92,102,98,112,106,108,115,109,109,95,114,120,96,113,104,102,106,94,105,108,108,107,108,98,97,104,107,95,120,109,101,100,105,95,110,107,113,75,106,115,113,98,95,102,113,119,89,103,109,105,111,109,104,107,95,113,106,103,80,110,113,109,115,100,102,114,102,99,104,101,98,98,111,115,100,108,106,94,105,97,107,111,112,108,105,71,100,104,100,104,104,93,108,113,106,92,102,108,107,113,103,97,112,99,115,106,98,103,101,103,116,110,103,113,96,100,88,108,105,121,105,98,101,107,106,106,95,101,103,97,112,113,111,111,89,110,107,107,99,102,90,100,105,85,115,102,116,115,116,110,114,99,107,102,113,100,117,94,103,114,121,108,102,96,96,91,90,107,109,112,108,103,105,101,111,110,107,104,112,104,112,102,104,91,132,108,99,100,109,99,120,107,107,99,113,91,105,101,91,112,111,105,104,111,91,101,106,112,91,105,108,95,106,99,101,99,105,112,77,96,101,110,119,102,87,112,91,113,82,95,113,118,100,98,103,101,96,105,92,103,94,95,107,111,112,106,96,105,103,101,99,75,112,106,107,102,111,100,119,115,100,108,116,114,98,115,95,103,101,109,104,114,87,94,109,110,107,101,101,94,107,117,102,98,106,95,87,106,96,104,97,95,112,110,84,115,107,90,106,80,128,93,107,104,108,98,113,110,99,99,109,107,84,98,102,106,110,101,123,102,100,104,94,100,101,101,101,98,103,109,108,100,89,104,103,111,108,101,108,117,104,95,117,112,96,109,97,117,100,104,115,102,110,116,99,104,106,97,113,104,109,115,109,117,104,103,95,107,110,117,94,105,109,102,118,105,104,105,99,106,95,103,100,109,105,107,105,110,97,91,102,105,104,100,102,104,114,95,118,98,106,100,104,103,99,107,101,101,100,117,102,111,107,110,107,100,103,106,105,102,101,97,101,100,108,102,103,98,97,109,91,90,109,99,102,106,103,101,99,96,110,105,104,108,99,106,95,99,108,99,113,107,103,115,104,107,110,105,111,110,108,102,106,105,102,103,109,109,107,105,102,98,109,113,120,110,99,102,104,97,109,111,107,98,100,102,102,100,97,102,102,114,110,105,103,97,118,103,103,101,97,99,109,111,96,103,102,106,103,104,104,94,102,99,105,110,99,102,107,94,96,97,102,108,102,118,135,113,106,114,89,93,103,96,103,111,97,93,98,104,100,107,102,103,87,103,105,100,104,105,103,115,98,117,103,109,113,105,100,99,115,108,100,108,94,105,109,93,111,110,112,105,105,87,99,106,107,120,109,103,104,95,112,109,121,93,113,107,97,96,104,105,103,111,104,100,94,106,104,111,104,102,102,111,110,95,100,98,96,104,101,95,99,124,108,102,99,105,105,101,102,101,109,108,102,116,106,103,102,92,107,112,110,112,97,95,97,106,117,98,123,97,110,102,102,113,104,98,104,98,99,119,112,105,102,98,109,109,113,101,105,104,110,99,106,104,107,92,105,112,109,105,109,110,109,118,108,104,102,96,98,113,111,97,99,107,98,110,99,95,112,103,109,108,119,101,82,112,108,104,112,99,113,107,107,110,109,99,99,105,110,106,110,95,99,101,100,115,102,95,105,107,108,96,110,103,116,99,99,98,97,107,129,113,113,108,71,104,108,116,103,132,113,110,112,107,108,110,100,107,107,99,111,104,117,113,108,86,102,107,104,96,104,103,97,109,96,112,101,99,113,109,111,96,103,97,101,104,103,108,99,119,97,124,99,100,107,100,113,98,107,110,105,80,106,117,107,107,106,107,109,99,115,124,109,92,111,120,106,116,100,108,105,80,104,102,116,105,115,115,105,98,110,107,106,104,103,106,110,104,86,106,105,110,111,113,109,100,100,106,98,100,115,102,106,108,104,98,100,106,96,107,103,116,94,111,99,102,115,111,105,102,85,116,106,119,109,104,108,107,97,109,92,96,100,108,101,98,110,110,100,95,104,105,107,104,97,116,90,109,106,110,99,104,102,106,113,91,106,97,106,100,102,112,100,103,107,94,97,109,121,116,105,111,107,94,108,104,104,104,112,102,110,105,107,101,102,109,122,99,109,91,98,103,99,105,106,102,107,99,99,99,102,125,103,111,103,108,102,102,105,106,102,96,114,94,100,101,106,95,108,102,116,91,100,103,104,94,96,95,90,95,104,99,99,109,92,104,103,92,107,106,110,103,106,112,104,114,143,94,96,109,102,114,108,104,103,112,75,98,105,101,105,104,109,108,95,94,110,101,91,100,102,106,109,93,108,128,105,119,104,102,113,111,96,100,113,104,95,108,107,100,109,98,107,108,96,104,96,99,92,108,67,113,113,112,103,103,99,95,115,98,109,101,105,92,94, +464.33542,99,116,114,98,101,102,98,102,105,108,101,112,99,110,112,88,104,108,99,95,98,98,111,102,101,108,91,101,94,117,104,96,94,99,105,99,112,105,108,110,99,101,84,107,101,99,112,102,107,100,95,93,106,112,99,100,111,99,109,96,109,112,92,96,102,112,86,105,98,100,95,106,97,101,102,107,99,102,108,102,111,97,104,113,92,108,93,107,106,98,104,95,102,96,105,105,99,107,103,92,100,118,94,107,95,107,100,99,90,102,117,105,103,96,99,110,96,112,114,99,104,111,128,95,113,104,118,95,111,109,97,107,105,113,113,102,95,108,102,101,109,109,102,90,91,102,109,108,100,92,105,85,113,129,81,99,97,93,101,103,101,103,106,105,102,101,106,100,122,108,105,111,106,112,100,97,91,91,116,85,98,110,102,110,108,88,98,86,97,103,94,111,101,98,108,106,106,101,89,99,106,100,97,102,99,108,93,95,99,97,105,100,96,108,101,102,126,102,113,97,112,115,102,106,102,104,94,97,94,110,113,117,92,104,109,107,103,99,103,101,107,109,112,105,102,101,122,102,105,121,93,85,103,95,97,100,102,102,101,105,108,99,101,104,100,115,97,98,107,93,109,106,102,94,114,101,112,103,96,100,101,103,111,104,113,103,95,110,99,99,96,124,110,111,104,91,84,109,109,93,97,113,112,98,97,107,119,116,106,109,91,118,112,107,86,109,106,101,104,113,108,94,112,98,112,99,102,97,96,100,120,109,102,109,104,103,112,106,91,104,97,102,96,101,108,102,89,102,99,107,105,105,107,83,98,106,101,128,114,115,94,101,92,111,101,89,107,109,113,111,111,98,113,96,100,97,108,105,102,104,106,106,82,102,88,95,128,104,112,97,107,105,80,93,113,90,111,101,105,101,100,103,93,95,99,99,104,92,64,123,99,104,100,99,106,98,95,108,102,92,113,88,114,116,104,102,99,108,103,105,88,103,98,104,109,100,102,102,102,109,84,108,105,105,107,99,95,105,109,104,95,95,99,107,105,103,107,100,113,101,102,110,111,111,104,95,96,115,107,104,100,83,104,113,112,91,108,108,98,96,105,103,108,104,101,89,106,103,93,111,101,103,105,108,99,96,94,100,95,100,114,101,114,103,100,94,107,97,110,106,101,137,107,105,92,113,97,108,93,92,89,108,101,97,116,108,110,110,93,97,91,109,105,104,113,113,105,97,108,100,99,87,109,98,107,98,100,101,108,92,102,108,109,110,94,96,114,97,103,106,103,104,90,101,76,100,104,106,107,98,95,100,113,116,96,105,97,104,99,106,101,100,107,102,98,101,110,117,108,101,117,106,120,97,98,103,102,115,83,111,125,107,103,104,100,106,107,109,93,98,99,103,101,94,102,98,99,107,105,114,134,102,96,105,87,92,106,103,109,111,105,102,105,101,108,96,112,103,109,114,112,106,107,97,104,98,98,112,107,110,109,101,104,114,97,109,113,120,111,102,100,99,109,107,102,102,106,122,105,104,100,114,100,109,93,100,104,98,100,102,86,100,115,101,91,91,113,108,99,110,102,106,104,124,107,103,103,142,105,104,105,100,112,107,101,86,99,121,106,95,104,110,108,97,110,103,106,92,108,84,93,103,108,108,92,102,99,110,107,105,94,98,91,113,101,98,102,100,117,101,110,89,107,101,102,101,94,97,95,124,110,106,96,101,111,99,103,105,103,101,70,109,102,100,83,114,105,94,111,96,107,100,104,128,99,102,94,95,114,112,116,112,107,109,103,106,102,101,98,109,97,97,115,110,106,104,102,112,107,98,95,95,101,129,117,109,105,96,97,103,107,91,106,105,69,112,114,101,107,100,108,113,104,97,99,99,95,105,106,89,101,95,106,110,118,92,107,110,101,107,109,106,121,77,103,105,104,101,114,101,98,89,98,93,92,111,113,103,101,101,118,111,110,102,107,98,98,115,114,112,102,116,106,108,99,95,115,105,104,102,75,109,103,109,102,85,96,117,104,101,114,102,113,108,103,94,98,109,117,94,95,112,92,105,122,101,105,101,109,109,114,116,105,109,115,109,102,113,95,107,109,101,99,105,104,97,105,97,103,120,98,108,99,107,102,90,100,93,103,105,100,110,107,111,117,101,103,100,108,105,105,98,110,100,104,92,97,98,97,103,115,113,97,105,107,98,106,113,96,91,106,96,110,101,83,105,102,100,105,101,106,95,101,89,109,101,116,99,102,102,111,105,111,105,79,96,88,110,91,106,105,110,100,99,108,87,99,115,102,109,104,86,105,98,103,96,113,98,114,104,102,103,101,96,112,110,99,108,114,110,104,112,113,102,106,101,100,109,109,103,103,95,101,98,103,106,104,105,111,98,103,103,114,104,104,104,110,110,118,100,101,103,102,104,107,109,102,104,83,86,97,113,98,103,106,97,107,92,94,103,104,106,102,102,99,109,105,103,109,105,115,100,108,95,96,103,81,97,103,108,101,104,108,98,100,96,106,113,99,101,99,111,121,101,96,103,106,112,104,96,112,105,106,100,95,107,100,103,109,110,97,110,100,105,94,105,110,112,99,100,111,109,99,102,105,103,95,105,114,98,110,109,106,105,95,92,103,105,119,120,106,94,108,101,113,96,94,105,107,106,98,105,108,101,98,107,99,108,114,107,109,100,112,102,113,103,115,111,102,108,92,107,104,100,102,101,104,104,104,108,112,80,98,109,112,116,127,103,99,113,93,111,105,104,105,102,104,112,107,95,111,99,100,97,100,101,92,93,103,103,95,92,108,106,102,118,105,107,108,112,110,93,107,107,88,106,86,119,124,106,101,110,106,94,111,108,104,98,109,116,87,87,108,117,116,117,115,121,111,102,102,114,113,110,102,83,91,113,110,110,101,105,116,108,105,116,105,99,114,72,100,112,103,122,104,121,100,103,105,109,113,101,103,113,105,113,115,107,107,107,84,106,105,112,101,119,113,102,89,109,100,97,121,105,116,110,105,99,109,117,116,100,96,115,118,103,85,106,94,107,102,107,104,112,108,108,112,108,104,105,96,108,112,115,110,104,98,102,106,105,115,111,111,94,105,106,108,108,100,100,100,87,105,120,109,99,104,104,109,97,112,97,122,99,89,107,105,105,109,98,98,110,114,97,112,109,102,96,113,107,105,87,101,105,101,117,114,105,109,99,111,107,102,106,109,102,104,93,106,116,109,95,76,117,100,105,113,97,119,96,107,97,105,105,102,84,106,102,94,103,104,103,107,103,104,103,125,101,112,105,101,100,119,99,99,103,99,110,108,104,119,107,94,99,109,110,104,99,109,117,98,101,104,106,99,101,97,102,103,117,85,110,117,108,95,103,115,108,114,109,105,102,96,111,115,111,66,103,103,100,108,98,108,103,104,92,96,80,106,105,109,114,108,97,103,117,101,104,99,101,114,107,114,100,122,103,105,104,114,100,111,99,99,107,109,106,114,104,100,101,101,108,101,110,110,111,103,117,105,99,91,110,99,102,109,104,131,102,101,109,99,112,107,102,105,116,110,113,107,102,119,108,107,112,98,82,99,104,98,95,95,97,94,96,95,103,106,108,99,108,102,104,88,107,111,95,102,104,112,107,100,99,101,110,103,98,116,100,100,109,95,98,102,109,102,103,97,111,113,110,101,110,105,115,108,117,111,99,113,101,94,105,107,103,102,126,106,118,104,109,104,112,100,102,106,99,109,108,117,102,103,114,105,100,109,110,108,97,113,100,101,116,106,125,128,104,96,98,120,123,96,109,98,89,96,100,91,102,106,103,105,92,112,112,117,106,105,98,101,110,122,114,111,100,88,117,113,108,107,117,111,94,99,106,105,103,103,104,102,105,109,100,92,101,83,100,95,107,107,101,102,112,105,100,102,98,110,95,100,92,102,99,101,105,104,108,101,107,85,113,102,106,117,118,109,109,106,99,95,109,113,103,103,100,122,99,105,100,93,114,100,104,102,104,109,107,103,98,120,92,116,103,113,108,118,96,99,91,110,104,106,108,105,104,101,106,102,109,114,101,118,101,108,103,113,98,100,102,123,101,100,105,99,113,108,110,106,104,110,108,74,110,109,126,117,96,124,96,95,106,109,109,93,103,115,109,115,106,100,102,108,117,108,102,110,98,96,105,97,96,114,108,107,107,108,110,115,101,101,113,109,104,99,119,109,96,100,103,105,108,94,96,105,97,106,107,110,116,114,101,104,101,107,96,94,96,107,91,101,101,113,94,112,94,100,119,114,107,97,105,107,97,106,115,109,103,105,102,103,117,106,98,101,91,115,102,107,105,102,105,95,94,102,112,103,92,103,100,108,107,113,99,101,117,95,95,111,107,102,103,98,106,106,104,114,107,105,110,107,101,107,99,109,110,99,111,97,117,99,95,109,103,115,92,112,104,93,94,104,108,97,103,104,108,101,98,101,99,97,89,98,109,99,113,102,116,102,104,109,104,105,92,116,116,102,110,103,97,111,90,113,110,102,113,109,114,113,107,106,117,116,115,111,96,109,96,105,113,113,102,105,102,96,102,108,106,101,112,110,106,104,107,101,116,101,115,107,111,111,109,110,95,91,105,106,106,101,99,106,106,105,101,113,95,98,110,89,103,105,115,108,94,96,86,117,105,104,112,99,104,104,100,121,116,106,107,110,105,107,106,97,134,116,105,120,108,103,113,87,94,102,101,115,99,104,110,94,102,72,103,121,101,110,107,102,98,91,113,105,107,109,110,110,121,99,113,109,104,103,100,103,106,113,92,116,116,99,109,119,103,108,115,96,94,104,102,97,97,98,73,119,102,95,88,109,94,103,105,111,100,98,98,106,106,111,106,101,119,110,104,109,116,100,111,102,83,112,98,100,97, +464.47589,119,104,103,96,84,121,118,107,106,99,103,116,95,115,100,109,106,87,105,89,104,83,99,109,110,102,89,109,104,97,106,121,95,95,107,111,98,111,102,97,95,108,108,106,105,104,108,103,104,120,95,97,92,107,112,99,112,92,122,98,109,112,108,109,103,102,93,99,105,98,104,117,95,107,114,115,98,108,101,95,94,105,106,103,108,100,98,109,116,104,100,105,99,108,103,110,104,99,96,101,102,108,100,101,112,107,102,100,114,106,106,106,105,100,114,111,102,104,117,95,102,100,106,109,113,106,109,103,100,104,96,106,89,93,108,108,96,103,105,79,97,90,97,113,115,103,104,102,99,99,104,94,107,93,96,99,103,110,110,94,96,97,98,108,112,109,106,103,108,104,101,106,99,120,92,98,106,102,100,96,119,103,109,105,96,103,100,94,109,106,113,98,97,100,105,103,101,109,93,82,106,108,97,104,99,98,105,94,104,100,92,112,112,108,111,101,117,118,110,105,92,101,91,111,111,109,105,110,105,116,101,95,117,110,101,103,113,102,115,112,106,103,106,112,107,98,99,103,103,112,103,108,103,96,104,117,108,100,98,103,106,115,105,107,108,104,101,126,104,97,112,99,112,96,99,102,100,92,114,96,101,71,93,96,119,113,91,102,103,107,96,118,108,108,122,105,116,112,135,95,104,104,100,105,114,103,107,111,107,111,106,112,115,102,115,103,113,103,136,104,106,102,106,75,112,109,108,103,97,105,109,107,115,106,109,90,99,103,105,107,100,109,104,109,99,111,102,101,117,112,103,100,100,110,103,105,104,91,108,109,99,98,101,108,108,99,97,101,96,102,109,95,117,108,99,98,112,105,119,95,114,115,93,108,108,109,104,103,108,113,113,100,103,101,108,103,96,102,110,117,105,75,114,117,96,104,103,96,100,105,96,106,97,124,106,101,111,108,103,109,113,97,104,111,99,99,109,111,105,112,102,120,112,109,102,110,116,92,119,103,116,105,107,110,112,113,98,106,102,112,100,100,110,129,99,105,117,99,100,104,102,96,105,99,110,108,97,100,117,99,112,116,109,95,109,100,104,117,117,112,95,99,110,100,100,102,102,115,104,104,98,96,110,98,95,104,92,106,104,94,109,108,103,108,109,111,111,108,98,105,108,87,100,102,114,111,106,101,98,105,121,114,112,113,107,113,117,109,109,106,103,107,103,107,107,106,106,103,111,107,114,105,109,98,109,102,76,105,113,111,113,82,108,108,102,94,101,95,107,97,108,95,105,109,104,117,102,108,105,104,90,101,119,100,105,105,109,102,89,105,109,89,101,108,92,99,125,102,100,104,103,119,106,108,104,106,103,112,120,115,97,123,102,108,99,102,110,99,112,111,94,102,108,112,100,103,116,103,118,102,111,108,109,96,107,106,92,113,113,109,116,109,109,101,96,107,102,97,100,93,106,101,103,98,101,103,111,99,120,113,98,103,114,108,95,95,100,115,98,94,108,110,110,106,96,120,113,101,102,113,109,104,101,95,92,108,104,101,98,115,112,91,110,103,91,114,97,100,104,108,112,105,100,110,100,102,108,105,100,107,106,99,105,103,104,105,106,105,104,112,106,123,104,121,99,99,109,114,105,90,105,110,98,108,96,109,109,112,100,110,108,115,105,107,109,110,97,102,112,99,103,98,103,106,101,102,95,110,95,104,112,102,104,106,115,94,105,125,107,104,97,106,106,103,100,99,102,99,95,112,105,80,96,92,99,110,100,95,115,108,106,106,102,97,113,108,99,103,103,117,110,106,108,103,91,100,95,116,108,110,111,109,103,107,106,113,107,106,92,108,115,94,109,108,125,91,101,113,105,103,106,96,95,99,105,113,100,107,106,105,112,98,102,109,104,103,99,102,109,106,97,103,103,109,96,96,104,107,102,71,104,111,96,94,93,107,115,98,99,98,102,113,105,105,104,107,106,127,99,108,100,103,103,102,104,100,108,93,122,106,122,103,99,110,100,102,97,112,102,101,106,103,106,108,113,92,131,102,106,104,109,119,102,102,100,101,99,102,104,96,103,115,95,113,99,103,101,93,116,109,99,110,111,96,109,97,105,112,105,103,103,97,103,109,99,111,107,99,108,108,100,99,103,103,103,99,105,102,104,108,103,97,109,101,112,111,119,106,106,100,117,108,111,110,102,94,91,114,104,99,90,96,98,104,110,110,98,99,94,101,99,108,101,103,112,110,103,103,104,118,94,103,100,110,77,98,101,126,110,107,109,113,104,105,115,119,103,121,104,116,114,103,89,109,103,102,96,106,109,109,94,103,106,99,102,102,108,105,118,91,101,100,122,90,111,107,110,99,111,102,103,100,91,104,99,103,119,110,108,99,114,108,109,112,102,109,99,107,113,102,104,106,98,115,110,102,110,103,115,100,94,104,104,108,110,109,98,106,92,112,113,106,98,97,115,116,102,96,128,105,104,99,109,98,119,113,105,91,93,115,107,102,106,101,98,95,97,97,109,97,116,110,114,98,106,89,116,102,69,99,107,95,100,116,94,92,85,105,104,97,112,101,100,99,106,96,96,113,102,103,104,96,95,119,89,93,108,104,95,109,101,98,103,117,99,104,108,109,101,113,112,96,90,96,106,104,103,105,105,96,98,94,110,103,93,103,97,117,112,109,106,98,94,104,113,98,106,98,99,112,109,109,108,102,92,108,111,98,108,107,108,102,113,99,110,119,106,109,98,96,106,111,99,111,108,92,114,108,106,103,108,93,102,106,112,107,102,97,98,106,101,117,99,112,108,107,104,110,109,106,110,106,97,103,115,106,100,104,99,109,99,110,101,102,96,106,100,101,108,106,106,98,94,103,104,106,105,92,103,102,117,100,106,104,105,95,97,114,104,113,91,95,112,99,107,109,100,106,121,100,108,109,103,102,103,106,103,108,108,114,105,104,98,111,102,106,102,114,105,103,104,103,104,100,102,102,104,102,112,98,101,112,94,95,108,113,110,105,92,101,112,67,106,114,121,104,106,103,108,97,88,105,109,102,101,103,109,112,100,115,84,111,88,95,102,109,99,103,102,109,105,108,107,108,112,104,109,97,115,114,99,101,110,119,98,113,110,106,112,94,104,94,109,107,99,98,110,95,105,105,104,101,105,102,109,106,99,112,118,107,105,120,89,95,98,112,105,110,117,87,104,87,108,110,115,105,104,99,100,104,113,107,100,108,106,117,112,106,118,106,99,104,110,115,106,96,104,113,101,114,97,121,110,112,103,96,106,107,100,101,96,104,110,97,117,106,108,109,105,112,95,103,119,102,115,109,112,107,102,102,96,101,113,103,99,105,98,99,99,92,110,108,107,106,113,101,101,99,108,104,104,103,92,109,103,95,100,108,112,109,104,95,106,105,101,117,116,103,105,100,108,91,107,108,96,85,109,123,108,102,116,108,120,109,112,98,104,97,100,96,105,113,104,100,106,108,110,91,114,102,94,107,113,106,116,107,99,101,113,94,99,109,112,95,107,100,93,102,106,98,95,98,109,107,111,113,103,111,111,106,97,101,107,113,104,99,95,108,109,95,92,98,99,102,103,84,91,107,104,114,96,106,108,116,104,102,110,108,106,94,98,113,106,107,100,84,102,113,96,109,104,67,103,102,91,90,99,104,109,103,117,116,86,102,105,104,104,109,114,106,111,100,115,114,103,104,101,102,107,102,112,113,98,107,114,104,99,95,102,95,97,112,109,106,105,105,94,95,105,120,107,106,104,101,101,103,99,117,102,109,101,114,121,106,100,107,103,110,103,107,108,98,104,106,99,87,118,98,106,103,96,107,105,96,96,117,99,103,112,104,102,116,105,106,104,104,97,96,104,103,103,100,109,107,109,99,111,108,97,113,105,101,97,100,100,101,104,111,104,102,87,109,100,104,99,105,107,106,116,98,109,113,109,104,109,79,100,109,112,102,110,110,104,114,102,96,103,95,97,116,98,108,120,103,120,102,103,91,117,104,117,95,115,103,105,101,106,89,106,104,104,97,103,118,103,108,103,106,94,99,117,110,111,98,110,113,107,103,104,108,95,102,119,89,121,98,110,117,109,104,122,97,110,107,104,113,104,97,101,107,106,109,106,112,102,107,92,117,107,112,102,108,110,96,109,109,102,108,121,94,99,112,110,101,99,108,95,107,90,105,93,112,106,98,108,130,107,101,106,107,107,99,104,113,94,102,114,122,116,87,99,108,102,101,106,100,111,105,111,93,111,108,102,107,101,109,125,104,86,117,109,90,109,102,110,115,102,93,107,103,107,128,119,99,111,96,104,109,121,96,116,99,111,102,108,111,107,105,106,107,113,109,70,115,108,98,104,104,97,102,94,108,101,100,99,102,91,100,106,103,107,97,87,110,106,106,101,108,105,95,100,105,96,104,105,95,99,107,106,100,97,102,118,100,104,100,110,98,107,116,91,100,96,111,91,106,104,111,94,118,102,104,97,104,107,105,100,101,102,87,99,97,92,102,91,113,109,111,115,108,101,105,99,107,103,106,113,106,102,111,98,100,116,104,103,96,111,93,102,78,106,102,110,110,106,117,110,109,103,102,89,95,102,100,105,110,104,107,99,102,109,112,110,109,99,94,118,100,104,107,80,106,106,90,109,94,112,112,121,117,92,97,107,103,100,102,99,98,105,95,104,101,99,98,128,106,106,111,106,104,107,106,91,77,113,107,104,94,111,106,115,100,106,94,101,111,103,105,93,98,110,123,97,102,132,100,103,115,95,101,102,102,100,118,101,106,97,97,99,109,106,105,97,102,110,96,93,94,98,85,104,102,97,96,95,113,94,101,106,98,110,87,102,116,97,100,101,106,101,111,92,85,97,92,100,107,103,115,89,92, +464.61633,100,95,106,92,93,87,106,103,99,111,87,89,105,97,100,104,107,88,115,90,115,91,80,100,95,106,99,106,108,110,112,101,110,106,115,98,100,101,113,100,98,96,106,90,87,107,104,102,101,99,99,102,112,101,117,105,100,93,117,89,111,102,101,94,92,113,94,100,95,102,90,109,114,117,105,103,102,95,99,108,100,111,93,120,98,97,98,100,99,100,100,99,97,100,97,94,99,104,101,100,107,97,94,100,97,107,96,111,112,90,109,96,91,119,100,101,106,99,107,102,96,108,100,105,107,100,110,94,105,103,101,111,103,120,96,100,105,101,94,118,100,95,94,105,100,113,99,100,104,98,97,99,98,108,105,105,92,115,91,96,88,100,103,97,109,90,105,95,114,98,115,108,90,89,101,112,96,102,102,94,107,103,99,101,90,106,109,94,110,94,100,130,103,109,93,102,121,104,104,103,99,92,99,109,115,111,97,100,108,115,106,109,97,109,105,99,98,106,102,73,105,109,109,97,108,105,100,103,103,106,96,98,102,104,127,101,94,109,108,105,104,103,104,102,95,88,118,113,98,96,97,92,109,105,94,107,109,98,99,94,96,101,94,107,109,110,106,116,103,98,104,100,107,96,97,102,101,94,104,97,105,114,102,106,96,103,95,108,104,100,99,87,117,112,106,95,99,118,101,110,87,80,101,106,97,113,104,113,100,106,95,103,103,102,102,98,114,104,105,97,102,103,84,107,109,93,99,98,103,106,105,99,104,113,94,104,97,119,96,109,108,94,94,105,99,92,105,90,104,98,107,100,80,105,117,109,99,100,109,102,109,89,98,64,105,98,97,102,94,100,95,105,94,100,108,98,117,109,95,103,107,105,101,106,118,109,95,110,105,101,117,96,103,113,95,112,103,88,116,112,114,105,97,108,105,110,105,100,99,103,112,99,106,108,112,93,106,103,102,107,113,102,99,99,98,106,90,93,91,101,108,103,100,102,98,110,95,110,109,104,93,98,107,108,107,98,81,93,96,102,98,93,112,98,96,105,87,105,109,91,97,98,101,104,90,104,112,106,102,109,97,107,112,113,99,100,92,96,106,104,97,113,83,101,110,104,106,98,94,99,97,106,112,108,99,107,99,100,112,75,102,101,99,99,101,104,96,113,105,103,114,105,103,101,109,103,128,95,109,103,95,101,110,120,95,102,122,101,98,103,106,104,109,91,103,108,107,90,111,102,98,95,99,110,108,102,106,107,90,104,104,94,106,109,134,98,94,102,102,97,101,94,96,104,104,106,101,103,100,99,108,104,105,105,98,109,104,125,107,111,109,90,106,108,108,100,105,104,106,107,117,100,102,89,108,101,109,109,113,99,106,102,100,103,106,106,99,111,99,104,95,103,116,112,112,95,113,99,117,97,114,102,103,110,109,105,101,106,90,132,101,103,109,112,97,96,102,99,102,111,114,108,115,97,94,98,107,95,99,129,103,102,106,115,98,97,99,102,100,108,108,118,108,100,98,99,95,83,112,115,109,111,83,109,99,109,109,110,96,100,106,85,110,108,102,97,138,113,110,100,110,105,94,100,104,98,77,103,99,100,94,107,93,106,110,95,111,103,117,121,96,96,106,101,96,100,105,107,98,108,109,102,103,93,97,101,104,103,106,109,117,109,114,107,101,97,103,92,112,109,84,101,113,100,107,97,109,95,106,104,99,98,102,100,106,92,91,85,106,97,103,101,105,105,104,104,93,100,104,95,103,91,103,103,107,100,74,94,102,102,113,91,102,79,109,107,99,104,103,116,112,95,99,113,105,102,114,104,102,102,104,106,96,97,97,108,106,109,98,95,116,109,101,95,100,100,106,109,101,94,99,115,108,105,93,94,125,107,109,104,111,94,108,109,102,101,90,104,110,106,87,107,96,104,99,97,103,99,101,102,121,116,106,109,114,109,112,98,103,106,110,104,105,109,109,98,100,104,114,124,101,113,96,102,104,101,112,111,96,97,95,95,97,97,109,101,94,106,96,109,114,108,101,113,101,100,104,105,110,106,94,106,109,114,101,94,102,104,111,106,104,95,105,107,110,99,94,108,96,118,112,107,106,117,119,95,104,100,112,102,84,95,107,114,109,87,101,99,95,93,114,100,104,99,95,105,89,115,109,113,95,106,109,107,113,96,87,108,97,104,102,105,97,98,115,95,101,103,98,113,95,102,110,85,94,122,105,107,96,120,104,103,106,106,71,102,111,103,99,98,95,103,111,105,96,114,98,103,101,105,118,117,94,97,113,97,84,98,95,106,95,111,96,114,100,104,100,100,95,106,103,108,113,112,112,97,87,104,111,109,105,107,118,101,107,100,105,119,121,105,107,73,95,109,108,110,115,98,108,113,90,113,104,88,100,106,106,103,89,102,110,103,99,109,104,109,101,87,108,91,95,103,105,117,99,102,87,107,105,97,93,108,102,100,106,106,111,111,106,112,108,107,120,102,102,94,101,100,100,113,105,109,96,106,110,100,102,99,96,102,96,111,106,108,106,87,97,99,108,107,99,100,91,97,103,101,95,91,115,95,109,110,100,110,112,110,102,108,111,113,101,95,98,101,105,96,95,108,109,91,115,101,110,110,94,97,110,120,106,98,103,90,106,102,131,110,113,96,108,122,104,93,125,108,78,106,91,98,111,104,106,93,108,104,105,104,103,95,104,106,79,106,114,109,102,101,104,87,106,113,103,100,108,100,106,106,104,104,109,97,105,108,113,112,105,107,95,109,90,106,100,121,116,106,98,113,105,102,101,90,108,129,98,100,104,110,108,104,112,111,110,108,116,98,103,100,105,112,113,109,110,104,120,100,111,100,105,98,113,105,104,113,102,123,110,120,106,102,102,100,96,97,121,110,110,103,98,104,96,105,104,96,107,108,104,99,107,114,102,105,96,102,94,104,96,100,101,106,114,100,96,95,97,118,91,106,99,111,99,94,107,102,108,105,115,108,94,105,106,98,110,106,85,110,109,109,108,104,87,102,110,98,111,105,109,109,96,87,107,108,101,106,108,93,106,100,121,101,101,105,99,109,105,101,91,111,103,95,100,106,100,117,114,106,95,96,100,74,105,100,107,104,107,99,110,85,101,109,102,110,112,101,101,108,103,97,107,98,96,108,98,105,110,108,97,115,102,100,118,117,114,91,96,99,95,106,110,105,114,99,102,109,99,107,94,95,107,92,99,108,106,102,105,95,95,102,114,102,115,100,117,106,114,103,107,98,99,106,99,100,116,96,113,91,106,102,105,109,105,105,109,95,110,103,121,97,114,113,98,94,106,101,99,103,107,106,100,84,113,104,95,104,95,96,77,106,99,103,109,107,103,117,98,113,102,98,99,105,112,113,99,105,105,92,94,101,107,92,109,103,98,104,117,102,93,109,103,99,97,101,96,105,108,104,110,113,104,97,96,105,101,101,108,103,88,116,108,99,100,101,109,106,95,101,98,93,92,119,124,102,92,107,101,105,116,91,113,85,104,104,111,115,101,101,106,109,109,105,91,96,101,107,112,111,105,95,91,97,111,110,108,102,96,112,120,105,117,92,122,98,112,100,111,103,95,112,99,109,105,103,105,116,98,102,99,100,100,90,98,111,100,97,108,102,97,105,111,115,103,118,107,88,114,114,103,105,108,114,106,94,106,114,108,100,109,106,95,99,94,94,108,109,99,103,109,109,108,117,116,92,103,102,108,95,83,116,101,117,105,107,94,98,102,104,106,96,102,100,102,87,109,103,102,116,66,102,100,94,101,97,96,107,102,106,130,98,109,100,71,99,109,104,106,105,100,111,104,102,95,103,90,72,106,107,100,108,99,96,102,98,102,96,103,110,112,107,98,95,95,102,121,109,86,111,117,99,107,93,107,99,103,116,101,108,101,105,110,104,116,92,98,106,109,107,109,102,107,96,108,98,109,95,114,99,97,104,98,109,94,109,102,103,105,101,97,112,96,107,101,115,110,101,90,100,103,96,113,99,110,104,110,115,89,102,101,106,117,104,111,93,109,105,91,102,105,105,105,107,102,110,115,101,85,74,99,106,99,98,106,99,104,102,117,111,117,106,104,111,121,95,128,105,101,110,108,105,117,113,94,102,106,92,94,99,110,113,115,104,92,103,102,103,98,83,104,116,100,99,98,112,103,111,113,95,104,123,109,99,112,108,107,110,102,111,111,103,102,106,104,99,108,117,106,104,109,95,107,111,98,92,105,105,108,104,87,104,106,99,105,104,92,83,113,111,95,101,107,101,100,111,92,104,108,106,93,95,109,94,98,106,98,107,120,105,120,112,90,110,75,107,91,90,111,104,109,108,104,108,94,101,123,108,99,104,102,104,109,105,100,101,91,123,102,106,101,106,113,103,105,99,90,90,98,113,106,105,95,116,93,92,115,109,95,111,104,77,98,97,90,101,116,118,106,88,96,100,103,104,95,97,96,104,118,113,105,100,106,107,91,109,101,106,96,100,115,104,105,104,105,99,103,102,91,113,87,111,106,92,103,99,100,108,105,71,96,99,110,105,99,107,95,115,100,99,103,109,103,111,91,104,93,108,109,87,104,97,95,99,115,94,112,108,111,102,99,98,105,105,105,108,102,99,92,99,101,105,95,92,117,98,107,97,101,98,98,106,99,96,103,92,92,108,102,127,100,92,94,106,104,104,112,101,108,95,104,101,101,100,94,98,98,112,95,102,98,101,105,105,113,107,107,112,105,95,108,101,100,96,89,110,115,106,110,100,91,114,107,104,84,112,108,91,109,92,105,91,115,105,92,92,103,117,100,106,112,89,94,110,100,98,109,115,87,110,102,106,83,107,104,87,108,77,113,97,107,91,100,96,123,98,108,98,102,99,91,97,103,105,107,116, +464.75681,119,90,63,93,74,95,102,101,105,105,109,90,88,107,87,101,99,96,107,120,102,112,103,105,101,110,107,89,101,104,111,101,103,85,109,93,110,92,103,97,100,94,99,102,108,102,103,92,110,114,101,108,106,105,103,104,95,110,86,111,100,95,106,93,103,91,101,103,92,102,105,100,100,107,95,108,98,102,100,108,98,103,113,101,103,102,94,112,106,105,103,103,96,109,100,90,126,104,105,93,109,110,93,97,102,105,90,99,106,94,107,106,89,98,98,96,102,106,108,104,106,115,95,103,99,115,104,99,106,103,121,111,100,109,99,110,98,96,96,108,100,94,99,99,100,104,106,99,92,100,115,97,104,117,82,104,99,101,67,98,105,100,105,98,103,104,97,96,101,113,99,102,120,111,106,110,98,70,125,99,109,101,92,93,85,104,106,86,108,102,96,109,107,98,92,84,108,100,92,99,107,83,103,102,99,107,79,98,101,107,101,102,123,110,113,112,109,110,95,96,106,96,121,116,97,104,97,111,104,117,101,109,108,94,103,92,104,109,108,98,106,104,102,103,93,94,119,100,103,115,100,103,92,110,111,120,106,97,99,119,99,108,92,100,106,101,101,106,114,104,118,112,107,97,104,107,109,113,110,102,99,107,84,105,105,89,105,102,104,111,118,101,110,95,106,100,98,106,96,100,90,106,102,105,101,115,108,109,104,104,109,102,100,102,111,91,108,104,109,95,98,101,102,111,99,107,106,92,100,101,109,101,95,113,112,106,101,96,101,109,103,100,102,99,108,99,75,112,108,99,105,103,103,101,101,100,102,111,98,112,109,99,81,95,98,103,100,104,105,110,99,105,101,105,108,106,110,95,105,109,109,117,91,101,111,95,106,100,102,108,103,97,100,99,102,100,105,107,98,109,97,104,101,108,102,95,104,108,106,107,102,99,113,103,118,84,100,74,115,100,100,84,90,105,103,92,104,100,107,118,94,89,99,100,90,102,98,103,97,96,114,104,104,110,114,101,106,95,110,107,105,106,94,116,108,107,107,105,107,110,101,103,108,96,106,107,95,113,100,101,98,99,103,97,104,103,95,108,108,93,96,112,94,102,101,107,121,112,107,110,105,109,103,110,104,102,102,102,105,99,105,102,93,109,99,91,100,102,98,111,106,93,102,107,101,101,122,100,103,95,107,109,111,100,104,113,117,107,105,91,103,108,105,109,104,106,93,108,112,112,102,109,100,106,101,102,109,107,105,100,112,90,109,105,102,102,96,96,103,115,114,99,104,92,101,105,103,106,104,94,102,104,100,102,101,107,93,113,104,109,101,100,111,86,101,104,105,94,103,99,113,109,98,91,109,111,101,102,119,109,92,117,111,98,99,111,97,104,104,100,103,96,101,97,95,104,106,93,109,109,91,105,95,95,107,107,102,104,108,112,106,104,117,120,98,100,103,100,111,107,98,100,100,109,100,99,101,101,99,116,97,108,98,98,95,105,110,113,106,114,103,102,106,110,89,107,99,87,106,104,109,106,108,89,114,105,94,101,121,108,107,100,106,95,111,85,104,98,105,95,99,108,103,102,109,98,114,108,110,91,94,97,109,103,122,99,101,96,111,82,102,100,99,96,87,104,107,102,100,98,112,94,105,106,114,105,100,102,113,113,94,105,89,97,92,101,96,98,107,105,108,97,100,95,89,95,103,99,95,103,78,102,106,110,92,118,104,101,105,106,128,95,105,108,107,108,95,107,107,94,104,106,110,110,105,102,109,115,101,91,109,113,106,111,91,114,112,111,104,116,111,107,98,113,101,109,103,97,97,102,104,108,100,100,103,100,91,105,107,98,104,99,96,106,112,95,113,101,104,105,105,103,103,112,104,96,106,97,111,104,110,102,106,104,99,117,105,94,104,90,93,108,103,104,102,98,91,97,105,95,105,99,111,103,97,104,96,102,108,98,98,105,103,103,102,100,113,103,111,109,102,105,103,110,95,90,105,95,107,107,97,109,100,105,102,105,89,105,95,75,114,109,101,106,112,111,105,111,94,95,97,116,103,106,102,97,104,102,102,97,100,108,100,121,100,85,96,113,103,100,107,113,111,114,95,107,120,95,107,116,96,103,105,104,108,100,108,96,90,106,99,103,103,108,100,100,123,109,102,103,102,105,100,108,110,96,105,107,99,91,104,98,95,110,97,103,96,97,103,101,95,78,111,94,107,102,101,96,102,105,96,110,93,99,93,98,108,104,110,106,99,96,110,105,99,102,96,105,114,109,104,105,91,103,112,96,116,97,98,126,98,116,93,101,80,106,99,107,107,107,107,120,93,112,98,105,114,112,103,97,106,122,98,107,98,68,95,121,96,99,109,106,113,106,103,111,105,94,99,100,111,104,104,103,106,108,107,100,100,110,107,110,111,97,106,117,93,101,109,110,83,110,102,102,107,113,97,110,110,98,94,99,87,114,113,104,106,97,108,112,102,119,109,106,101,106,108,102,110,101,119,98,98,120,106,103,111,103,96,129,100,104,107,106,106,107,112,103,109,119,108,104,102,127,101,113,109,115,110,111,95,127,106,91,102,105,105,106,98,96,107,95,107,101,94,111,88,117,104,100,112,101,105,97,99,98,103,117,93,97,106,86,90,98,91,99,101,90,115,106,94,98,109,109,99,101,126,106,110,108,125,117,106,113,116,106,111,103,103,107,111,108,102,107,116,102,105,85,111,116,103,107,104,96,102,125,107,109,94,89,91,85,95,101,103,120,111,109,102,113,102,111,98,98,107,107,86,88,103,107,96,94,104,91,99,104,113,98,104,96,98,94,104,97,98,95,113,109,96,109,95,103,104,102,105,106,113,116,117,99,103,105,95,92,113,101,96,106,104,90,102,106,96,111,107,107,104,114,113,113,85,108,106,99,100,112,114,98,102,106,103,101,101,99,89,95,96,110,115,113,107,110,95,117,91,121,113,104,108,103,113,100,102,107,109,94,102,109,108,114,111,99,106,107,99,112,99,115,114,99,100,105,105,107,117,98,106,86,103,101,101,93,105,106,97,99,139,106,106,104,104,106,113,95,103,98,115,107,109,109,103,106,106,99,110,99,104,96,110,100,108,99,88,117,106,93,103,105,96,97,94,104,115,105,101,99,111,69,109,107,103,88,96,103,96,114,119,103,110,101,108,103,111,116,95,99,103,100,101,99,99,103,94,111,113,100,103,111,109,103,87,104,107,91,96,79,107,107,108,113,107,110,110,108,100,98,94,98,103,98,111,109,115,92,105,103,99,112,103,100,89,103,107,112,109,107,111,105,108,100,95,108,98,101,98,108,106,103,109,104,97,115,116,99,100,101,102,111,104,83,103,87,101,99,108,101,104,96,106,106,106,107,109,113,112,104,126,102,113,105,105,110,109,115,96,82,106,128,92,102,103,103,108,95,106,102,105,121,99,117,104,106,96,109,99,101,109,100,114,97,116,115,103,109,101,106,98,104,107,98,106,100,108,107,108,93,95,104,91,93,107,101,91,108,105,106,108,105,103,112,103,113,108,104,109,112,101,101,104,110,104,77,108,106,113,104,103,118,92,89,101,98,104,110,97,109,106,85,107,102,98,126,100,104,98,98,109,99,102,110,98,108,99,101,102,100,95,106,106,112,98,109,101,94,100,86,95,88,108,107,108,99,97,107,109,113,107,104,111,107,117,98,112,107,104,94,97,107,124,98,107,106,106,109,99,98,111,99,105,107,104,96,112,94,96,101,95,108,100,110,104,95,107,96,108,109,103,112,99,98,105,100,98,121,106,104,100,106,109,98,94,83,103,96,100,103,99,102,84,104,87,111,100,102,112,97,107,104,119,99,99,102,113,91,106,98,108,114,105,100,112,99,109,105,84,93,101,98,108,108,116,103,124,105,102,116,105,111,111,102,108,101,110,106,107,104,86,140,100,94,105,104,109,110,109,113,103,101,107,101,114,99,91,111,103,109,77,119,97,102,102,106,100,113,110,98,103,99,116,109,108,100,109,107,96,112,102,103,102,68,102,104,96,95,115,106,104,99,121,77,108,99,113,103,100,105,105,100,113,95,96,104,105,114,113,110,95,102,109,106,103,96,92,100,113,113,83,103,97,113,99,108,87,91,98,101,97,104,105,110,102,98,98,98,104,104,102,99,101,99,120,102,107,99,112,103,100,104,102,111,103,108,98,101,106,101,102,103,99,86,101,100,103,105,86,101,114,99,114,100,92,103,110,93,99,111,102,99,106,103,105,111,107,100,104,116,113,102,100,113,101,102,108,102,106,116,122,103,97,112,112,109,106,107,101,102,105,108,113,112,112,108,104,102,103,105,101,111,107,112,105,104,115,102,96,72,106,95,100,109,95,107,99,106,108,109,107,109,100,92,100,83,103,106,88,107,95,107,112,103,109,92,102,110,107,99,100,90,98,106,103,102,104,103,106,106,99,109,108,112,103,99,98,109,110,94,97,104,110,103,103,99,92,99,100,101,91,88,106,111,100,103,101,121,106,97,101,108,109,107,105,111,111,104,104,109,104,90,95,104,91,105,95,102,115,109,100,114,114,111,110,102,98,106,109,98,100,89,104,109,95,110,91,95,93,106,113,77,100,110,85,102,98,93,112,97,103,95,94,104,101,109,103,98,98,106,103,104,109,97,94,108,96,96,106,99,104,112,101,103,103,112,96,106,97,100,107,109,113,91,94,98,104,97,98,104,103,95,112,103,108,98,92,100,107,102,103,112,104,106,104,95,103,102,96,105,120,97,108,108,106,105,102,100,100,98,103,103,85,94,95,97,97,96,106,109,96,98,102,95,102,99,92,93,99,102,101,96,94,99,114,91,103,107,106,106,100,114,104,101,124,99,100,98,109,113,96,102,118,92, +464.89728,98,78,90,96,80,104,109,105,98,100,96,95,92,106,99,99,92,107,108,95,114,123,96,101,105,111,106,87,101,107,108,112,99,86,107,95,104,97,94,110,108,110,101,111,106,117,98,105,101,105,100,106,104,102,94,102,117,115,100,96,103,112,105,96,106,107,94,82,98,96,105,100,92,109,90,111,102,92,104,103,96,104,88,122,109,90,71,108,101,95,105,113,107,100,102,101,104,101,102,104,97,106,102,103,111,102,101,100,97,100,103,96,114,97,102,104,100,99,100,103,95,95,105,100,104,104,116,92,95,106,98,116,110,105,103,116,104,67,95,113,99,94,90,104,94,103,107,90,99,109,106,99,83,96,104,108,114,112,103,106,104,111,111,121,105,99,104,90,97,103,105,97,95,106,101,114,104,100,98,124,99,100,88,95,96,113,101,103,108,106,100,102,103,111,97,104,109,97,103,98,99,114,101,103,109,99,102,111,120,98,103,95,84,101,103,109,113,131,99,95,111,113,93,106,103,101,96,104,106,109,111,94,111,103,99,103,97,92,112,94,115,116,114,87,95,88,95,104,107,99,119,111,99,99,105,101,113,106,109,116,91,109,98,97,101,104,103,104,94,112,98,105,105,103,110,87,95,110,112,105,132,105,97,107,99,95,96,101,103,102,112,102,102,117,105,99,109,98,102,92,100,98,95,110,106,82,118,108,108,113,103,106,107,106,100,99,106,103,98,110,108,104,107,106,99,112,110,85,117,113,106,97,102,104,109,98,97,96,103,101,109,100,106,96,96,104,103,109,96,105,107,96,103,104,105,113,108,100,104,103,122,92,98,92,115,101,107,109,115,105,99,114,92,105,100,105,104,104,111,108,110,84,98,108,120,96,109,105,100,105,114,88,102,107,117,109,106,102,102,114,100,101,121,103,99,101,106,100,99,109,100,108,101,104,93,108,112,100,112,99,108,105,95,106,90,94,115,99,100,112,99,101,100,98,108,107,91,112,99,96,103,99,110,98,102,103,96,90,100,96,100,111,115,101,97,101,100,90,110,109,97,99,107,105,112,110,105,104,110,110,100,105,109,111,109,96,98,104,107,119,110,100,117,113,100,101,115,92,89,101,110,106,102,98,108,96,95,106,108,96,85,114,107,102,117,105,87,103,96,106,103,92,93,101,97,101,109,108,111,96,109,104,95,111,92,105,105,99,110,103,112,98,96,99,91,106,97,87,107,101,107,129,108,99,104,109,105,101,107,111,113,99,101,102,103,118,112,101,101,100,101,117,106,101,108,104,95,106,96,106,106,105,108,103,108,103,98,124,103,82,110,101,97,98,99,100,114,105,115,101,114,98,103,103,73,124,117,96,101,107,106,107,94,104,102,103,97,113,101,97,105,105,97,106,109,107,100,107,98,102,103,96,97,94,101,94,98,103,104,106,88,104,106,107,112,102,106,99,96,112,109,93,102,106,105,100,97,96,113,114,101,99,110,104,108,104,113,95,96,96,99,121,98,107,93,97,105,97,105,103,102,95,100,100,101,90,96,106,107,95,100,100,104,95,100,105,101,103,100,92,102,97,95,104,105,110,103,117,101,96,102,98,103,115,99,112,104,108,100,98,103,102,92,109,107,103,105,116,102,98,111,101,96,109,101,99,100,109,110,110,95,103,112,100,104,112,99,99,88,98,114,104,90,107,106,107,110,110,100,115,111,105,103,96,99,91,109,104,110,99,104,99,105,110,106,105,117,99,100,88,127,106,107,99,106,101,105,98,96,104,106,109,108,107,113,101,99,108,82,107,104,110,101,102,103,98,102,100,110,104,103,102,105,95,110,93,113,97,99,98,108,105,107,104,106,95,112,110,95,110,98,124,116,121,111,109,115,95,113,109,105,96,98,95,103,107,107,111,93,110,106,105,108,104,94,96,90,82,102,99,99,113,110,98,91,109,114,116,98,96,95,96,106,102,94,98,102,126,112,104,124,115,109,90,110,99,100,94,96,83,109,124,107,109,104,99,104,121,102,103,108,106,99,99,109,91,95,104,109,109,114,86,104,88,100,102,67,99,98,103,117,111,106,115,103,99,102,111,103,100,103,108,110,95,98,113,98,99,113,102,108,105,98,114,99,96,105,116,109,107,117,105,112,105,106,99,96,111,114,98,113,107,104,99,113,102,104,102,103,119,100,115,101,85,92,91,97,105,108,95,100,93,105,105,106,87,105,90,99,101,104,102,99,102,104,104,94,95,100,109,96,85,100,94,99,102,108,100,91,109,103,104,99,100,118,102,122,107,113,116,92,90,111,104,99,109,112,105,96,105,109,107,110,96,88,105,104,126,112,106,101,103,109,92,107,99,117,109,111,102,109,103,91,94,105,100,101,105,115,99,99,114,99,97,102,101,115,104,102,105,95,106,107,98,106,107,97,105,99,120,93,113,95,102,105,101,106,103,92,100,107,87,91,113,92,110,101,100,104,113,99,101,103,109,98,108,84,109,99,98,102,101,93,91,96,96,108,90,108,104,91,111,104,97,100,98,106,112,101,107,104,105,91,94,108,94,105,105,90,110,94,112,104,107,105,103,107,108,99,106,86,102,100,100,100,99,96,104,92,98,112,101,106,106,113,98,92,97,104,101,112,98,95,109,98,107,99,99,102,94,104,112,100,102,109,92,89,102,113,94,102,109,101,99,116,101,110,106,108,96,100,106,109,91,105,101,94,96,110,105,94,105,105,101,107,104,98,114,96,101,96,102,102,96,102,107,95,108,103,107,95,114,92,100,98,104,101,90,101,102,109,103,101,103,87,108,90,103,105,109,117,79,111,79,95,106,107,106,98,101,99,99,117,98,97,100,99,115,97,113,87,96,109,103,98,102,113,108,109,110,112,91,101,112,97,99,100,100,97,99,100,109,110,104,95,104,93,117,103,115,107,106,105,91,94,91,101,96,88,105,94,94,101,103,109,103,89,104,102,102,91,104,112,98,107,103,103,103,99,100,95,102,107,102,98,93,103,104,101,105,102,94,103,106,112,100,92,100,107,107,97,100,109,94,113,106,108,94,112,110,106,100,101,119,106,99,107,95,102,105,110,120,101,104,106,106,117,105,105,107,93,101,109,104,112,105,85,105,98,103,98,90,95,99,95,97,100,103,95,94,99,104,91,93,103,98,75,99,109,109,100,103,100,107,105,109,103,106,109,106,98,101,102,99,105,104,104,103,107,105,107,107,101,98,91,110,106,101,112,99,106,107,95,102,103,113,99,105,105,105,93,104,124,97,103,92,105,98,105,116,101,110,92,99,99,102,77,100,78,100,97,106,111,108,70,106,97,102,113,102,100,106,97,106,80,110,103,109,109,98,95,112,108,106,94,113,108,102,105,93,101,99,89,106,91,103,102,109,107,106,105,94,104,87,98,107,104,117,97,109,105,97,101,108,98,114,105,107,93,89,103,107,95,100,115,100,96,105,97,94,103,107,103,100,98,100,100,95,101,93,106,105,98,110,111,105,94,106,109,110,103,107,101,98,98,96,112,101,93,101,91,108,96,104,106,113,101,94,102,109,106,102,101,100,99,102,106,95,114,91,102,101,113,101,97,95,100,98,102,102,100,100,109,102,101,102,104,95,99,106,104,84,104,88,95,98,120,94,102,106,113,93,101,102,101,100,95,107,102,106,98,107,103,103,92,92,101,102,79,95,91,108,95,107,99,104,105,107,100,114,95,105,96,95,102,106,121,99,105,113,104,92,111,96,103,94,101,105,101,102,103,111,113,105,107,94,117,97,106,101,100,95,95,102,107,93,98,104,105,106,95,107,100,103,102,99,108,87,92,105,101,104,98,101,107,108,98,95,113,90,102,108,104,114,108,120,114,75,94,90,100,101,110,98,109,110,93,102,93,104,104,95,101,99,104,101,126,105,108,96,110,104,112,97,99,117,113,105,102,111,103,95,94,109,102,106,89,102,101,96,105,68,90,106,96,65,98,101,136,99,98,108,99,99,105,89,102,121,97,105,108,106,88,101,88,119,107,109,104,95,117,112,102,100,100,121,103,104,118,100,116,89,106,107,88,102,105,98,102,101,101,112,94,100,113,102,96,127,95,103,95,107,106,113,98,102,91,101,94,116,94,105,97,104,102,98,99,110,112,95,105,100,101,96,102,99,101,93,95,99,116,103,104,123,112,107,95,96,98,136,103,91,108,116,100,121,102,97,103,100,98,109,103,98,105,105,103,104,106,98,107,100,110,95,108,113,96,112,111,107,99,101,107,109,92,106,108,113,92,104,106,111,95,101,110,101,106,118,111,101,107,110,110,105,108,93,105,107,99,94,107,81,119,101,111,104,102,118,104,112,93,97,100,107,107,101,94,101,103,103,97,101,117,113,88,110,102,99,96,92,106,97,113,108,107,104,100,101,121,111,109,103,105,103,85,93,109,102,114,93,118,109,96,124,95,111,104,97,107,96,111,125,103,90,100,100,97,94,104,96,102,100,100,108,97,110,96,99,87,107,100,96,92,101,92,97,111,100,91,101,88,113,97,109,115,102,108,91,100,114,101,113,105,99,95,115,100,96,106,100,109,89,99,97,102,120,88,98,93,95,106,101,106,94,108,108,100,100,119,104,102,109,109,108,107,90,91,102,103,87,99,102,94,102,91,106,98,104,115,101,96,95,111,108,96,107,103,104,97,96,89,93,104,93,105,98,113,100,98,99,104,104,103,101,97,97,120,75,89,124,102,87,105,90,102,99,97,104,116,98,132,102,114,109,91,103,100,99,107,102,106,90,83,110,94,98,100,101,104,106,141,107,104,92,73,106,96,102,87,114,106,105,108,114,82,98,89,92,104,98,95,97,91,108,104,103,90,95,101,93,110,109,99,85,117,92,100,102,93,107, +465.03772,96,90,99,108,98,105,108,76,100,127,96,100,76,106,100,100,104,109,117,107,113,111,102,95,101,107,107,95,113,103,92,104,110,103,97,121,115,103,110,89,109,88,96,105,104,106,97,101,86,111,103,97,95,106,94,95,113,93,102,87,97,108,89,87,104,95,85,96,107,93,102,104,97,105,98,102,91,96,100,108,97,97,101,104,96,96,101,102,108,98,108,94,102,100,118,104,108,106,113,99,100,98,107,102,104,126,78,99,100,100,104,92,94,107,108,98,107,111,100,108,104,100,102,97,104,116,87,112,110,95,102,102,100,105,101,102,106,122,84,96,96,104,101,101,115,88,102,107,102,94,98,95,111,96,100,108,107,104,110,106,101,103,95,103,106,101,94,100,103,102,108,104,91,90,92,112,100,100,90,103,104,108,96,105,98,95,106,95,94,103,98,110,97,82,105,101,106,102,102,100,100,101,106,102,90,83,96,114,101,103,107,103,109,96,94,110,113,96,110,98,104,103,101,109,88,99,106,112,100,101,106,102,102,96,122,106,108,110,118,97,103,86,95,100,100,105,80,111,107,107,105,87,105,78,100,97,101,91,80,93,87,104,96,90,104,105,98,101,114,92,92,97,109,99,102,99,98,115,103,91,101,99,104,95,98,110,91,102,103,106,91,103,110,112,105,91,94,97,98,97,97,109,101,113,94,116,103,100,100,94,105,98,107,95,101,95,100,92,93,111,103,107,101,99,103,88,76,93,86,109,102,92,98,104,107,103,94,109,101,113,113,112,108,97,99,98,103,101,95,95,104,106,117,101,96,106,97,93,95,103,102,106,109,104,109,106,106,106,99,95,114,106,108,97,104,98,124,97,95,112,104,103,98,102,91,101,108,99,89,109,100,106,101,111,104,99,109,87,135,113,114,102,103,95,88,132,110,101,80,98,123,95,102,108,117,102,105,125,113,98,101,102,118,101,102,68,104,98,106,103,111,106,98,87,117,114,99,111,104,97,100,93,114,111,102,104,105,97,96,111,101,99,109,109,96,113,104,102,94,104,96,104,113,112,105,109,98,110,117,82,93,101,98,95,98,104,97,108,106,103,106,95,120,109,101,91,99,102,109,105,103,103,99,107,98,87,103,96,117,99,102,105,110,113,104,111,98,108,106,103,103,111,102,96,98,120,102,106,117,85,103,118,94,105,95,106,105,109,110,93,121,99,100,105,104,103,102,103,105,106,104,104,113,112,95,98,106,84,115,104,97,98,102,116,99,102,110,104,93,102,88,108,112,102,114,95,105,102,112,99,100,97,95,114,111,109,110,105,103,118,103,103,111,88,104,108,104,99,104,114,101,108,107,96,110,99,98,109,90,108,105,107,99,91,107,103,103,99,116,105,125,101,103,111,116,97,123,114,104,88,114,108,100,120,102,106,94,109,111,102,105,105,102,107,97,98,102,106,104,100,104,95,106,100,103,100,99,100,100,91,97,99,121,108,101,103,102,106,135,96,112,109,102,91,92,116,99,95,111,101,130,115,108,102,102,108,98,101,120,107,102,92,99,106,69,87,103,110,113,103,101,101,97,106,92,100,99,107,102,109,111,101,105,101,103,101,106,109,80,104,105,104,94,101,93,106,113,107,116,99,109,106,97,107,101,102,99,112,112,115,107,110,100,94,101,97,103,108,111,105,109,100,104,107,107,105,109,97,105,115,102,111,102,102,111,112,121,106,103,80,109,113,98,108,90,105,105,96,118,99,116,97,103,89,109,118,96,99,100,103,100,108,100,104,91,99,101,106,104,109,112,109,101,117,93,100,95,108,95,110,105,97,104,92,106,101,107,111,102,92,105,113,105,101,110,101,103,98,107,98,91,103,105,112,102,98,98,100,101,101,100,102,122,97,105,108,109,120,121,103,100,106,102,91,99,106,95,110,92,106,90,100,106,112,97,98,99,113,101,97,97,103,100,108,99,94,109,111,102,84,110,103,101,103,121,101,105,99,92,107,98,99,92,99,104,100,107,109,107,103,95,99,110,95,103,101,100,107,93,97,113,120,122,96,112,93,100,100,90,112,95,96,108,101,115,101,113,95,101,104,108,104,91,106,111,99,103,107,126,103,105,117,106,101,102,95,104,95,100,98,108,102,102,96,112,84,122,107,98,110,104,106,117,120,110,110,108,102,91,100,104,110,94,96,101,102,97,95,103,112,90,82,96,105,105,105,100,100,98,104,105,109,106,104,100,118,97,88,91,91,103,100,107,99,106,104,106,110,101,102,100,86,101,109,111,109,99,93,106,90,98,93,113,110,100,94,107,98,97,99,135,117,104,94,101,102,96,94,100,128,98,116,103,91,106,102,69,102,112,110,110,100,100,109,96,98,107,98,110,113,111,95,117,95,104,105,92,99,103,105,106,101,104,109,101,103,104,96,105,102,82,112,101,108,109,98,94,102,96,114,113,96,99,94,106,98,104,110,108,108,115,97,119,105,95,99,92,102,107,109,105,102,103,112,116,117,91,95,107,106,71,103,110,108,100,107,99,111,98,73,103,102,100,100,109,113,106,104,93,98,102,109,115,108,88,105,98,103,103,118,106,99,101,103,97,105,104,106,116,98,112,112,118,105,104,99,101,109,91,108,104,101,104,102,112,108,104,97,119,108,106,101,107,102,111,97,70,107,94,110,98,112,103,124,114,91,107,109,101,107,99,106,109,106,103,79,118,103,104,120,89,98,97,106,99,107,99,109,103,108,98,115,94,115,95,99,100,111,111,109,98,102,97,105,113,104,102,118,99,104,104,102,108,107,112,93,119,107,105,110,110,102,109,102,103,111,105,80,102,106,109,115,103,121,90,101,101,103,110,121,99,96,106,101,105,110,111,107,118,107,111,113,104,113,107,86,103,104,129,102,98,106,107,97,105,108,103,115,117,100,90,106,101,103,104,114,100,115,104,89,100,85,112,105,108,97,93,106,99,84,103,109,94,100,110,116,107,106,91,112,100,100,109,105,120,101,105,110,104,112,99,105,104,103,107,108,101,105,110,104,105,111,112,87,109,104,103,113,87,96,109,95,91,95,97,97,99,107,98,100,101,118,112,102,107,97,110,98,108,108,103,104,99,99,121,98,100,102,107,107,98,91,103,115,102,108,102,106,109,93,95,104,105,114,113,109,95,111,122,91,112,98,99,99,108,105,101,98,103,105,109,110,114,105,118,96,100,113,107,108,117,105,101,104,101,102,107,106,101,113,103,99,108,108,104,106,107,112,92,76,105,102,99,98,103,95,95,103,109,124,105,98,92,105,100,104,121,94,99,118,106,101,105,105,107,98,103,101,89,109,99,116,96,100,102,117,105,101,89,110,105,100,113,103,108,105,120,119,90,113,97,118,102,116,111,105,106,115,116,100,111,108,108,103,101,95,104,101,120,111,101,110,103,109,104,92,101,101,106,101,122,101,105,103,107,101,107,102,107,105,109,107,117,99,108,93,98,103,105,96,102,102,95,109,102,105,98,100,110,97,116,111,99,106,96,114,104,109,103,117,97,107,106,105,109,103,97,100,109,120,111,107,100,124,98,106,103,103,110,103,92,95,104,114,104,104,99,108,110,100,115,106,120,114,98,111,103,106,106,113,97,109,111,97,96,98,105,95,98,94,105,102,96,122,99,100,105,103,106,104,112,101,107,109,96,99,100,118,104,95,117,106,100,111,106,101,113,105,95,112,106,77,111,113,103,99,106,111,103,104,91,107,92,97,124,97,102,105,100,108,138,102,101,104,106,98,103,99,113,102,95,101,110,113,100,105,113,88,112,96,103,98,98,105,99,111,102,101,95,100,104,88,107,109,106,103,104,102,113,100,97,104,90,98,115,106,102,109,104,103,105,101,104,96,101,87,100,108,101,97,105,98,100,107,113,105,107,99,112,99,99,100,107,112,103,108,98,79,89,109,105,99,105,120,103,109,103,108,95,110,95,111,97,114,102,116,109,108,95,113,115,103,99,103,115,108,95,105,102,108,107,104,113,104,113,106,115,99,103,109,84,105,97,106,99,118,103,93,109,109,100,100,109,103,98,109,100,98,107,96,108,102,112,120,109,113,107,108,95,104,109,110,108,95,107,108,113,91,109,97,108,110,102,105,107,109,113,109,108,111,101,112,101,107,109,104,110,105,103,97,102,102,127,109,100,106,109,122,102,116,104,106,97,109,104,98,112,100,116,107,112,117,103,120,101,119,105,112,117,102,92,109,98,101,96,97,98,100,117,105,103,101,115,107,109,94,100,98,103,99,102,108,98,98,92,95,106,96,97,107,109,105,106,96,95,110,115,108,115,93,112,98,108,98,106,105,111,103,99,106,96,102,100,103,95,102,91,113,109,107,107,109,110,112,107,112,104,102,107,109,100,101,98,92,102,103,98,95,102,105,110,108,94,99,96,91,93,106,103,119,106,100,112,108,104,102,114,107,106,104,109,86,105,113,102,104,97,103,105,101,98,109,95,99,112,105,89,90,108,87,100,95,101,114,103,102,114,118,101,104,99,111,91,95,101,96,98,107,107,100,97,98,96,105,75,103,119,102,104,94,97,96,103,106,102,101,110,91,98,106,102,95,92,94,101,109,107,104,112,94,97,95,101,106,110,102,105,75,101,98,105,107,108,103,98,98,103,99,106,85,97,115,109,97,102,104,98,100,108,115,105,100,117,94,94,108,87,104,96,98,109,101,94,106,109,109,102,96,106,112,108,116,100,104,104,99,112,103,98,104,108,113,105,100,100,103,111,105,100,117,100,106,109,102,103,102,102,99,104,102,106,108,95,101,106,116,107,103,98,104,107,102,107,91,89,98,90,120,112,105,96,93,103,98,110,106,109,117,97,102,121,119,101,91,104,110,100,84,102,94, +465.17819,108,110,99,93,99,106,113,105,110,110,107,99,111,94,81,104,95,101,107,109,94,93,99,103,115,109,90,105,103,117,109,105,104,117,104,101,99,95,106,107,102,98,117,109,117,97,95,115,107,107,90,125,102,103,98,111,100,101,109,102,105,107,100,94,110,105,103,98,113,94,105,101,102,103,102,125,99,99,109,95,106,98,103,103,109,106,105,121,105,112,109,113,99,97,101,108,91,104,87,102,103,106,97,99,96,95,104,90,96,101,92,99,91,104,98,105,94,113,109,115,99,96,104,94,113,105,118,97,103,99,98,105,98,100,92,113,99,98,104,100,84,98,105,102,83,112,107,103,92,97,102,127,108,91,102,99,112,105,107,102,94,101,100,93,88,100,99,90,92,108,104,105,100,98,109,102,113,115,99,106,108,99,114,101,87,124,96,92,113,97,97,102,101,112,103,106,97,100,103,114,100,97,109,104,105,101,95,100,102,103,100,108,102,113,111,104,100,108,92,116,100,92,100,97,105,108,93,107,110,107,76,114,99,116,124,111,100,103,115,99,104,105,111,112,96,98,111,129,108,108,116,97,96,115,113,103,93,105,109,98,100,105,102,96,104,118,99,98,110,103,102,99,111,104,86,111,103,105,107,100,106,84,109,116,88,108,102,116,100,98,86,97,106,105,108,96,105,107,110,98,82,106,105,109,102,102,105,91,117,97,97,102,109,99,102,104,106,107,99,107,90,98,104,101,100,113,117,91,109,108,102,99,102,113,103,109,107,114,112,104,96,103,102,106,114,99,101,96,106,111,116,93,115,98,105,124,114,110,98,105,110,105,95,103,93,97,108,108,100,99,104,102,103,111,97,119,109,102,97,107,114,94,98,103,102,86,105,116,94,95,106,95,102,103,109,100,103,99,95,114,101,100,112,116,96,93,102,114,99,117,106,105,108,102,112,87,86,106,114,112,102,96,96,105,98,109,100,91,103,106,92,136,113,102,106,112,105,106,100,122,91,100,103,91,102,108,105,109,106,106,98,100,108,112,96,103,97,105,102,101,81,100,100,108,94,109,101,103,110,98,102,100,97,105,101,111,91,103,107,104,113,106,104,107,98,103,105,107,96,116,97,115,107,115,101,106,96,106,102,102,108,105,87,103,108,112,100,115,101,105,102,118,108,117,109,105,96,102,96,94,112,107,107,104,98,104,120,121,105,104,98,101,103,111,108,107,113,92,100,100,103,106,98,100,125,89,105,111,117,79,105,108,89,122,104,122,105,92,103,95,113,108,110,104,114,102,111,106,107,129,110,92,98,115,110,109,98,99,96,94,106,111,108,98,103,105,110,104,112,96,97,86,100,103,115,110,108,102,100,104,117,103,111,114,115,104,100,103,96,103,104,102,104,105,109,96,102,103,106,107,104,101,104,98,97,121,102,96,86,95,106,99,94,92,102,102,102,108,107,118,105,92,107,98,99,105,107,106,107,106,95,96,99,89,106,111,108,104,111,105,108,100,102,101,100,100,108,108,109,101,102,109,101,101,100,110,91,117,96,100,105,111,106,96,91,104,95,104,102,98,83,103,104,105,104,94,105,96,109,98,95,99,92,121,101,125,107,107,99,110,109,102,105,99,97,92,103,106,110,109,97,101,110,112,92,100,103,89,94,105,109,99,95,117,109,103,104,104,106,105,101,97,98,112,113,108,101,113,114,109,105,95,99,117,112,107,104,99,95,104,95,100,100,102,106,111,100,115,91,98,101,113,115,108,117,104,100,91,101,98,103,100,85,95,100,101,104,99,106,108,99,93,95,97,107,114,99,117,105,95,93,101,104,108,106,112,104,104,111,110,127,96,105,106,106,113,99,102,100,86,109,98,106,109,96,100,104,100,108,112,101,99,106,113,92,112,96,111,104,101,102,100,106,114,90,109,99,98,102,92,99,88,122,103,103,112,109,110,99,102,108,102,102,85,125,102,99,109,119,69,103,96,99,99,93,109,102,103,101,105,105,118,100,104,109,99,110,111,99,108,106,107,112,109,100,100,91,114,68,97,113,115,97,103,89,97,107,111,98,95,89,116,102,105,112,104,105,109,92,99,117,101,101,99,111,100,107,104,108,103,106,103,118,113,87,110,105,102,100,97,109,97,91,105,102,93,95,108,102,95,97,103,98,107,125,102,99,95,101,104,111,96,101,96,106,107,108,96,102,100,69,97,109,95,102,100,108,102,103,100,102,110,107,110,113,95,91,93,106,111,94,116,94,105,88,106,97,111,119,112,116,115,95,110,119,101,105,80,100,105,91,99,120,109,83,112,106,100,86,92,99,109,102,91,122,101,105,102,107,99,101,108,107,106,105,68,100,112,100,98,112,103,116,83,96,103,111,100,83,92,104,103,104,95,94,104,105,114,117,113,107,119,108,95,99,89,100,105,105,87,104,99,93,109,106,100,118,107,99,99,93,111,95,105,105,106,108,94,113,112,104,108,117,101,99,95,100,109,108,105,94,104,85,99,109,94,109,96,95,103,100,113,106,103,107,101,95,103,93,117,95,112,88,113,99,109,99,96,98,94,116,118,103,102,100,100,89,103,101,96,102,101,98,111,94,100,109,98,113,108,116,92,102,95,94,99,98,103,94,96,99,97,99,97,93,116,104,89,110,116,95,99,106,103,97,106,115,113,101,102,105,111,100,131,131,97,111,105,110,102,98,99,94,110,105,107,113,91,91,104,108,96,108,96,124,106,110,99,101,108,97,102,91,109,99,89,108,102,76,100,103,106,113,103,117,83,100,105,95,92,112,108,100,101,95,95,102,92,116,112,121,98,101,98,104,98,96,117,113,104,112,100,105,112,107,98,104,102,101,101,104,90,101,105,103,105,101,137,104,107,99,94,107,95,89,96,98,117,108,96,110,105,99,98,108,110,103,109,100,109,104,102,96,102,98,106,93,112,105,105,102,116,105,103,97,96,115,99,117,102,95,107,96,93,112,113,108,97,104,102,107,94,112,113,105,111,93,98,104,108,91,77,100,101,98,101,104,109,106,112,100,99,96,93,102,102,95,101,106,108,94,98,96,98,105,96,100,89,99,100,106,118,92,94,102,102,102,96,101,89,99,99,120,102,122,103,99,101,105,105,101,92,107,108,99,81,101,104,97,102,99,109,103,107,109,113,113,89,104,93,97,101,94,105,104,101,92,99,104,107,98,112,99,111,104,105,114,103,94,84,104,85,108,94,96,99,111,95,115,99,113,108,99,110,104,73,100,97,113,109,100,102,121,95,104,98,116,105,119,103,104,98,101,104,108,102,114,99,99,98,107,106,94,95,100,98,95,94,102,102,102,105,96,106,88,108,100,115,93,110,100,112,98,99,94,108,102,107,104,91,112,109,99,103,104,115,91,106,93,95,84,105,95,107,99,96,113,109,99,93,100,92,93,95,105,103,113,109,107,106,100,106,104,102,102,106,112,108,72,101,109,96,97,109,102,117,109,111,104,102,102,99,105,99,93,104,102,94,101,99,105,98,108,106,102,98,119,111,95,111,95,102,99,87,99,100,107,102,111,100,98,94,107,102,104,106,88,100,102,111,102,111,102,103,101,106,98,103,98,109,91,109,108,103,97,105,99,96,104,110,84,108,106,102,96,102,107,99,94,98,105,99,100,109,111,113,108,96,103,98,102,112,104,97,94,108,108,95,109,92,92,102,104,97,97,94,105,104,99,95,97,101,114,92,103,122,108,104,108,98,109,90,97,98,101,81,112,93,97,110,116,97,109,107,105,102,83,103,103,104,98,103,95,113,105,99,97,106,96,94,111,104,91,99,105,108,99,103,102,96,111,106,101,97,96,110,106,104,105,98,103,99,102,96,99,103,99,105,79,96,98,104,95,97,101,90,95,99,103,95,102,101,107,108,95,103,100,93,107,98,104,99,95,100,101,101,94,104,121,97,100,111,108,109,105,86,106,99,103,95,112,112,113,95,105,105,94,108,121,96,106,99,105,104,97,92,74,102,111,107,106,99,104,107,81,101,97,109,114,100,90,103,99,99,113,107,96,88,107,95,95,95,111,121,105,107,108,105,136,103,111,107,97,94,112,110,98,106,99,109,100,108,110,109,109,106,99,96,109,103,101,100,89,91,106,99,100,100,104,103,104,120,112,112,99,111,93,102,112,107,108,116,105,107,100,113,103,105,99,100,101,114,109,100,113,105,106,96,105,91,95,102,112,82,111,115,103,106,106,110,92,91,104,91,79,97,101,96,88,108,105,88,97,74,94,94,104,98,105,121,103,94,104,105,108,123,110,104,106,108,96,95,113,104,103,96,105,101,104,97,105,109,113,100,97,91,105,97,129,103,106,96,105,102,105,115,102,88,100,104,93,105,112,102,104,110,106,72,97,100,95,100,108,91,96,113,95,96,98,105,97,97,100,96,87,88,93,95,92,95,95,98,105,108,106,97,98,95,102,109,97,105,109,105,109,99,92,108,91,102,94,83,106,111,99,107,113,112,95,101,94,101,106,95,87,100,90,105,91,92,93,109,100,97,110,113,114,100,106,110,104,108,116,105,100,98,105,101,106,94,91,91,78,104,106,103,97,90,100,65,103,88,92,105,99,117,91,120,106,113,110,108,108,102,101,112,102,102,101,94,100,94,94,103,88,98,98,95,90,104,117,112,94,125,101,94,100,110,96,102,106,103,106,98,77,103,113,113,102,95,86,95,101,100,99,93,102,98,123,103,102,103,108,90,99,89,107,107,104,102,96,113,100,104,98,104,110,89,101,93,98,97,109,98,113,101,120,103,102,95,95,98,90,98,113,103,101,113,87,100,109,109,106,104,89,106,100,83,102,90,104,103,107,103,111,101,106,100,97,91,96,89,111,86,102,97,75,92,96,77, +465.31866,96,108,104,113,110,105,108,100,102,106,108,96,106,113,104,97,100,98,114,115,98,97,96,84,113,111,86,92,113,103,103,102,92,95,112,101,102,89,97,104,106,92,105,108,98,97,111,104,87,113,83,108,99,106,109,111,94,85,110,99,113,97,74,96,109,112,93,104,106,94,108,105,100,100,108,102,113,106,111,101,105,106,97,110,101,94,104,110,91,96,104,112,130,104,106,109,101,98,103,94,97,112,97,102,101,110,105,103,102,90,104,108,113,102,103,105,95,106,107,97,96,107,102,111,100,98,97,87,125,102,103,106,101,100,110,100,104,99,107,102,94,108,113,103,96,91,106,102,83,92,100,93,97,90,111,109,99,105,97,93,104,99,91,94,98,111,95,103,95,99,103,102,98,102,93,109,92,101,105,100,117,100,104,99,101,85,90,95,101,106,101,101,97,100,94,114,101,110,96,105,110,106,92,111,100,120,106,119,105,108,93,105,108,100,103,94,96,116,109,104,116,112,100,97,98,117,101,112,109,111,93,113,112,114,105,109,86,87,109,106,104,109,109,103,101,107,105,92,99,98,115,105,103,103,102,106,103,89,101,108,96,101,93,89,112,114,85,103,99,106,110,104,108,112,107,106,96,113,111,98,102,105,105,98,103,104,101,118,103,98,97,108,95,104,115,110,105,99,97,100,76,94,101,111,101,114,105,104,104,108,95,110,105,121,101,100,98,107,123,98,108,99,99,105,109,105,91,91,102,108,101,97,101,97,122,112,98,108,118,111,99,103,102,107,96,90,87,96,104,109,105,99,97,102,98,100,110,101,104,118,97,98,109,87,106,104,111,115,94,107,97,106,111,109,112,111,99,105,115,108,97,114,92,102,97,106,104,95,101,104,104,108,104,98,101,111,103,102,87,103,104,102,110,109,103,83,117,100,101,92,102,110,102,98,102,103,106,110,117,108,108,103,101,99,105,104,111,98,111,113,103,108,107,108,104,102,101,106,105,110,109,97,107,110,102,103,98,99,107,99,103,100,94,113,97,112,92,102,109,93,108,100,103,117,114,111,88,108,112,114,95,111,107,100,91,112,113,115,116,116,103,107,98,104,106,104,110,107,109,95,93,103,99,91,101,115,91,126,98,97,110,104,99,90,101,101,99,105,105,110,110,95,96,103,100,101,109,98,104,98,113,100,109,96,110,97,98,101,102,94,102,99,120,107,102,101,121,109,121,106,98,111,105,102,106,103,97,102,116,122,100,116,108,100,104,126,101,122,95,96,118,93,95,105,98,98,99,113,98,100,99,100,96,104,102,110,110,102,108,102,103,119,94,104,111,105,110,100,103,106,100,110,105,100,102,109,102,99,107,109,106,122,107,113,105,109,94,119,96,104,101,83,95,105,101,106,115,104,112,106,118,106,107,91,106,103,109,105,102,97,108,102,95,97,112,103,94,79,105,112,100,114,105,111,111,99,90,94,109,98,99,76,112,104,104,106,100,109,98,103,108,116,106,105,94,99,97,96,102,104,119,98,103,94,94,106,107,110,116,99,109,116,103,100,105,109,107,93,100,101,113,92,100,107,98,99,105,100,105,106,92,103,96,101,99,102,101,101,97,105,108,94,105,109,107,116,102,122,104,101,112,104,106,105,116,96,94,103,113,113,124,98,83,87,110,94,112,103,103,108,117,94,103,100,111,108,105,109,88,115,103,109,123,92,99,92,105,107,106,97,95,124,106,96,108,114,109,107,98,106,115,107,98,102,111,105,108,106,105,113,114,100,108,109,114,94,104,111,103,112,111,112,117,107,94,108,103,105,103,104,115,99,97,102,109,99,103,104,106,108,119,109,109,109,115,106,106,110,97,114,92,109,108,96,108,111,85,96,100,107,104,95,107,98,114,106,103,111,94,113,107,102,98,85,86,101,97,99,98,99,113,101,104,96,106,105,96,109,106,106,116,99,97,109,111,104,103,113,100,96,118,102,93,110,92,101,96,98,101,103,119,106,105,116,109,97,100,101,102,109,116,105,103,107,112,85,103,112,97,123,117,111,101,96,99,99,103,108,106,100,114,111,84,105,98,101,105,97,103,111,103,114,99,106,110,110,95,109,110,99,100,98,100,109,107,95,99,91,118,100,91,108,112,110,113,98,104,100,103,112,105,111,110,93,112,108,110,118,102,113,104,113,96,102,101,101,99,87,105,81,95,111,117,98,110,104,109,95,95,102,112,106,107,112,105,105,98,106,95,101,99,102,108,96,106,116,97,104,109,109,113,96,113,95,124,100,113,96,86,109,92,98,108,108,102,104,99,108,111,104,87,114,98,88,106,109,85,99,90,109,110,107,109,91,99,101,105,105,97,117,105,92,99,101,97,109,116,96,96,92,92,107,97,100,97,100,86,105,94,94,95,106,102,105,90,101,106,106,109,101,99,109,95,102,91,101,118,116,99,98,103,104,99,107,106,108,100,103,110,116,104,113,93,98,92,99,87,97,137,121,108,99,93,99,106,104,113,92,117,117,103,102,98,95,108,100,114,117,103,101,94,88,98,102,102,104,106,104,107,100,105,111,97,100,107,96,105,109,106,88,95,104,102,102,114,100,115,108,114,96,119,102,106,96,108,110,112,98,109,100,107,108,110,93,105,112,105,108,122,91,106,100,104,116,105,96,91,107,114,101,100,108,101,112,103,124,102,99,96,105,95,105,107,104,108,90,104,101,101,109,97,116,106,102,111,103,109,112,116,95,106,104,100,113,100,110,105,103,103,105,103,120,97,98,99,122,90,106,114,104,108,112,94,109,105,96,108,104,98,103,107,98,106,91,105,91,112,105,107,110,105,98,115,109,98,95,89,110,99,101,105,101,105,104,107,113,114,102,103,113,102,90,93,108,112,98,91,99,101,103,105,105,102,100,96,112,105,113,104,107,102,89,98,98,94,89,97,109,106,96,109,98,103,102,106,102,105,100,104,99,114,110,91,99,106,103,104,95,107,111,109,102,105,103,109,117,107,86,106,109,98,106,100,117,113,103,99,116,97,101,111,99,102,96,110,120,103,104,106,102,121,111,109,88,98,90,104,92,94,98,108,119,106,91,104,102,104,107,103,102,101,101,112,105,102,95,98,115,94,108,110,114,106,107,110,84,60,105,91,83,108,100,101,93,113,88,108,100,102,107,101,103,92,109,100,100,102,110,95,106,101,108,103,101,103,104,94,99,98,104,98,107,109,94,108,110,104,95,121,95,113,104,109,105,94,108,97,109,108,94,100,91,106,100,93,100,106,106,104,110,101,109,105,123,100,104,103,101,119,95,113,116,90,109,104,108,98,100,113,96,96,113,108,100,99,98,104,99,84,104,101,105,102,118,98,99,92,109,100,90,93,101,89,104,96,116,105,102,109,112,108,117,110,107,99,107,101,103,102,107,93,107,102,103,102,91,103,103,99,95,104,100,98,102,110,107,99,100,108,119,94,109,98,93,108,104,98,95,106,107,101,98,104,103,94,101,109,87,106,95,112,98,105,96,95,102,105,103,98,97,93,106,94,102,102,96,95,103,99,107,117,96,102,109,97,96,98,91,100,93,99,101,102,106,107,104,106,97,105,109,107,96,92,108,105,92,108,108,92,110,99,95,105,107,106,98,95,94,110,110,88,109,100,99,88,91,96,105,111,103,103,108,95,97,102,95,105,110,103,112,104,119,102,105,113,100,103,113,102,93,106,100,92,99,106,107,101,101,109,100,87,118,105,102,99,94,100,112,111,105,94,99,98,109,104,97,103,91,102,106,109,105,95,108,118,102,107,111,97,111,111,106,112,94,105,103,104,109,98,106,105,85,108,98,100,100,112,98,103,109,105,81,98,101,107,105,103,105,97,107,102,109,107,93,112,106,106,96,99,109,106,107,111,98,100,96,106,107,99,109,107,98,98,106,109,103,102,116,102,98,98,107,98,108,105,99,100,104,99,90,101,106,109,86,113,102,102,100,93,104,100,100,105,95,108,83,101,95,116,97,117,104,98,95,98,106,109,106,106,109,107,114,98,99,116,109,103,104,105,107,101,98,99,106,95,110,102,96,99,91,102,106,99,111,116,113,103,95,113,105,94,109,103,105,107,107,95,109,100,105,106,101,99,96,73,102,88,100,103,103,105,102,104,93,102,103,108,105,107,99,101,110,109,120,99,104,92,102,105,102,98,107,100,99,104,95,104,101,108,97,106,104,109,110,94,103,109,102,96,101,99,96,106,111,103,88,87,102,110,102,97,108,119,99,94,114,104,100,97,102,94,113,99,93,114,102,102,87,99,89,127,98,100,108,107,119,106,97,111,95,103,102,98,99,101,105,99,100,99,109,110,96,110,124,104,93,94,103,83,104,102,121,119,107,98,109,93,95,108,105,112,109,96,101,104,108,111,93,107,101,117,112,99,87,94,91,105,107,104,113,93,98,112,90,108,100,98,96,100,106,99,98,105,92,91,104,97,101,90,109,88,96,98,105,101,108,72,117,89,92,100,81,110,108,118,108,106,110,109,109,115,105,85,106,106,98,96,102,91,112,103,107,113,105,102,106,95,102,97,101,104,87,125,104,108,110,108,98,106,107,110,113,100,87,106,109,101,99,104,109,105,106,100,99,104,95,106,93,97,106,97,96,107,105,116,96,97,93,103,106,103,92,106,109,90,106,103,101,98,99,96,103,117,109,103,101,115,103,95,83,114,112,96,92,97,101,114,103,101,97,110,102,109,103,105,109,97,103,115,109,96,117,106,94,113,107,97,90,102,88,94,98,95,98,97,121,105,108,98,100,95,110,97,68,100,96,97,113,100,126,101,109,94,96,104,97,100,103,97,84,97,93,109,109,77,72,104,96,101,91,98,89,95,106,89,117,102,93,100,89, +465.45914,99,80,99,94,104,97,95,106,93,110,99,101,102,101,122,102,102,133,86,80,80,108,106,93,111,99,96,99,113,95,93,95,100,105,111,87,106,99,96,103,90,98,104,105,109,104,97,101,105,107,110,122,91,95,96,100,108,93,104,91,97,97,114,81,105,91,105,100,94,110,107,121,98,97,103,103,84,117,84,104,100,108,94,101,110,101,122,96,114,97,124,102,96,96,104,119,99,98,101,122,102,103,104,91,107,102,96,110,94,106,108,94,98,100,96,112,103,97,97,108,106,106,101,98,105,99,107,102,116,114,109,103,95,102,93,100,99,117,97,110,86,109,74,95,95,93,110,110,93,100,104,97,108,98,98,104,109,107,100,108,87,106,104,95,105,110,91,97,105,100,108,106,101,111,106,110,113,96,102,104,94,102,90,118,105,109,101,77,99,103,88,111,100,105,86,107,105,101,108,100,100,100,111,104,96,98,110,110,106,103,109,104,111,103,101,100,105,97,90,97,105,109,105,101,99,99,106,103,97,102,91,108,109,103,106,121,104,97,94,109,102,99,100,93,98,112,98,103,103,80,100,107,100,95,104,108,103,76,100,105,112,103,106,101,95,107,98,106,99,100,96,97,100,95,110,100,114,99,106,91,109,99,101,105,98,117,86,114,106,103,97,97,107,107,124,105,99,93,117,108,98,105,110,117,95,98,106,119,115,103,106,101,104,97,97,104,107,104,123,117,108,103,105,107,119,111,106,102,106,101,110,106,106,94,91,114,104,107,114,102,108,117,84,101,102,105,124,109,109,102,108,101,100,102,109,106,101,111,106,101,98,91,96,96,101,92,104,116,118,107,112,101,106,98,114,107,111,103,106,110,109,122,106,97,105,100,91,108,102,89,115,95,98,104,99,112,117,109,116,104,81,106,99,110,102,97,102,104,112,103,101,112,106,108,98,97,108,100,105,104,110,93,100,113,107,101,87,102,103,121,99,107,103,106,103,98,115,121,103,101,112,112,99,106,90,97,97,110,110,109,105,104,92,102,114,108,86,104,99,98,102,97,108,112,95,108,95,96,102,98,108,101,103,98,93,100,98,112,101,103,102,99,106,96,103,97,114,106,113,104,105,114,104,100,94,95,97,102,110,99,118,102,105,114,97,104,104,121,103,95,106,103,92,103,90,85,106,100,96,103,105,112,90,99,103,98,103,101,93,96,91,112,103,109,103,113,110,110,108,108,96,110,99,94,113,106,101,105,103,106,116,106,115,109,98,95,110,98,92,99,105,102,106,105,104,116,113,108,97,105,103,114,105,113,99,129,105,99,111,111,96,104,111,109,112,95,96,102,103,101,110,101,99,110,114,113,110,110,126,108,116,104,103,105,106,101,99,85,99,104,112,100,108,110,104,109,99,105,107,96,103,104,99,98,105,104,87,105,99,110,92,103,98,97,95,111,110,101,113,106,99,100,103,109,98,99,98,100,98,104,96,107,111,109,111,107,107,96,106,111,96,109,117,104,97,110,108,93,98,115,116,101,109,99,98,103,104,88,114,104,111,103,133,97,105,113,97,108,93,101,96,89,99,116,106,102,114,108,117,105,103,96,94,115,109,105,104,102,66,109,103,109,104,96,99,105,114,112,102,102,103,104,109,106,105,101,106,99,98,114,103,110,107,104,100,95,63,98,108,93,108,111,95,98,104,99,107,104,100,108,101,108,108,104,103,106,99,97,105,93,103,103,92,109,104,111,92,109,106,92,120,118,116,100,109,103,103,92,102,99,103,107,98,104,107,102,103,99,117,102,119,109,107,103,100,103,114,90,106,103,100,101,99,91,98,107,100,109,116,103,114,112,113,98,107,113,102,111,125,99,97,103,102,99,113,104,120,109,117,100,102,85,117,101,109,115,88,107,111,97,99,116,100,105,99,104,104,101,102,115,105,100,99,115,89,117,106,99,101,102,104,102,107,96,113,104,84,98,111,105,104,114,105,104,97,88,109,101,94,106,101,89,99,113,109,112,115,116,108,77,99,112,101,105,109,102,107,112,96,95,100,110,107,99,100,106,106,94,107,105,115,104,109,106,105,88,103,108,96,103,100,99,106,95,110,116,105,113,108,101,100,110,99,104,94,102,106,100,114,102,110,110,108,117,90,96,102,116,122,99,98,109,111,110,115,105,114,100,105,102,102,109,104,108,106,116,110,96,98,109,109,110,125,104,100,102,112,102,100,104,101,105,112,95,104,88,105,104,104,98,114,107,113,93,95,123,108,103,98,104,112,114,98,118,115,117,100,95,92,105,91,109,102,96,111,95,110,108,106,117,113,82,109,87,100,101,85,103,101,90,93,116,109,102,116,87,98,106,112,86,139,104,106,117,93,99,97,84,104,79,111,123,97,110,104,102,98,99,95,103,110,110,100,105,105,114,101,118,105,101,97,119,107,113,110,101,95,101,98,65,104,97,92,101,114,95,106,100,107,106,101,113,110,89,103,96,109,95,111,104,112,103,101,101,109,106,101,104,102,114,105,103,78,112,110,101,105,101,100,101,116,111,100,88,100,118,107,107,102,97,106,101,114,91,107,118,99,110,98,85,102,101,109,106,94,119,108,103,113,111,113,92,115,105,111,102,100,108,116,108,105,97,113,83,112,113,94,96,111,108,105,105,110,102,98,108,109,107,106,110,101,103,96,106,117,108,115,113,104,101,107,102,104,103,97,96,94,99,110,93,108,113,95,96,110,106,95,105,110,101,102,95,108,102,110,93,98,107,109,93,95,108,100,102,111,102,114,102,106,108,99,113,106,112,108,97,107,102,103,111,109,91,112,100,101,98,99,99,92,107,107,101,104,104,116,98,107,114,92,101,121,102,103,98,102,102,122,106,104,100,113,108,106,106,108,92,105,102,95,103,108,105,96,114,108,98,93,101,87,108,102,103,122,104,117,116,110,101,112,126,121,93,102,104,104,101,112,104,94,103,113,88,102,99,102,102,112,109,96,107,104,103,106,105,100,103,103,95,110,98,108,100,113,103,114,96,113,95,91,87,112,109,102,98,101,96,106,98,113,110,100,112,94,103,107,108,106,106,106,100,107,101,114,100,103,102,101,91,103,102,100,110,108,106,112,112,100,107,106,106,111,99,104,102,98,106,113,95,101,100,94,103,108,94,109,116,108,99,112,126,112,94,93,105,101,74,108,110,113,115,107,95,109,97,113,105,104,97,103,107,102,105,95,101,106,102,120,107,103,98,99,103,108,113,104,97,98,103,101,107,98,111,92,103,108,99,110,95,109,92,108,94,113,104,105,98,100,110,101,102,102,91,102,107,93,112,113,97,109,103,95,95,95,106,99,101,106,98,102,107,100,108,103,101,98,98,101,94,99,100,97,97,120,99,98,100,104,113,106,104,106,129,90,116,103,98,110,94,99,126,95,102,98,98,109,112,93,99,103,113,100,72,113,94,107,98,103,104,100,105,100,105,96,91,117,93,99,107,111,105,108,107,113,117,107,102,90,106,112,105,98,111,99,101,101,109,104,108,107,107,95,102,97,100,101,105,101,105,104,113,101,107,100,122,100,111,104,119,101,120,117,122,106,104,91,104,97,97,101,102,104,102,104,103,94,96,95,100,105,103,88,107,101,98,109,110,107,81,102,98,109,103,99,107,109,107,104,101,107,93,93,98,101,104,119,102,116,104,109,110,102,103,110,106,94,97,103,112,110,99,100,96,116,98,117,108,106,106,107,101,117,103,101,101,102,98,98,109,110,102,96,120,99,107,102,113,107,111,102,104,109,100,96,115,106,95,111,108,96,113,98,116,101,106,99,99,106,95,95,98,98,106,101,107,106,101,110,104,109,91,105,101,92,113,111,87,115,99,103,101,105,102,101,110,120,105,114,112,99,107,107,115,96,102,109,101,110,105,117,111,107,102,104,98,112,113,105,106,103,100,97,99,99,105,100,95,100,112,107,111,101,100,111,103,110,108,97,103,108,95,103,111,97,104,102,96,109,111,102,106,107,101,104,100,99,96,99,103,109,106,113,113,92,119,101,112,113,116,107,99,110,93,109,102,106,99,108,102,96,108,106,117,103,112,105,109,108,101,102,117,109,99,110,110,99,112,103,100,117,107,94,117,99,93,106,102,102,106,109,105,107,91,103,97,113,107,106,106,92,130,100,107,104,108,78,113,99,117,108,108,102,103,100,107,102,106,107,108,102,105,96,77,108,104,103,113,91,80,94,99,113,90,110,102,92,113,103,106,99,105,95,108,113,105,113,107,98,80,104,112,104,106,109,100,96,98,99,105,100,116,113,106,111,102,81,115,106,108,104,109,104,99,96,103,104,89,96,99,96,94,100,88,111,110,99,100,96,90,113,106,99,98,99,112,80,89,108,111,103,83,93,88,94,102,97,102,83,101,96,93,98,105,107,98,94,102,97,97,99,102,94,102,106,87,92,104,96,110,102,108,94,105,81,101,95,103,100,127,106,107,94,97,103,106,91,103,102,109,104,105,109,105,96,101,109,100,99,102,108,97,95,110,102,94,105,108,95,98,100,94,94,117,104,89,97,95,100,84,95,108,98,103,105,112,124,84,98,99,104,108,92,100,104,109,95,104,100,104,103,95,104,93,109,105,120,105,112,92,104,92,89,99,100,101,104,99,96,99,87,94,92,97,96,108,103,108,93,112,91,101,93,109,91,100,117,95,104,103,103,92,95,94,97,96,103,97,101,116,105,95,105,109,101,129,98,98,112,96,103,107,105,94,100,77,114,117,100,105,111,105,99,97,100,94,104,93,93,112,104,105,103,113,87,111,105,84,106,100,93,94,102,89,101,99,99,106,94,102,101,117,102,97,103,113,104,92,103,75,60,97,110,92,120,109,86,96,96,112,95,112, +465.59958,85,99,98,105,105,100,98,105,97,110,102,101,94,100,95,93,105,101,90,97,102,113,97,105,96,105,86,106,111,97,97,109,117,108,103,99,102,97,93,102,95,105,101,100,107,97,104,110,95,104,104,102,105,95,60,96,106,100,110,104,93,88,98,106,104,114,72,115,91,102,98,107,95,102,94,99,89,105,83,112,108,106,111,107,100,85,90,110,115,109,115,101,106,93,110,99,95,106,100,102,113,94,100,105,97,102,85,124,98,94,97,109,96,102,88,103,96,113,109,96,111,100,129,128,98,117,107,96,112,106,104,99,103,122,99,97,102,117,117,101,99,98,109,85,102,109,106,106,101,95,106,96,109,102,105,101,100,96,104,100,107,95,108,109,95,103,81,89,109,91,100,114,99,103,108,109,102,93,100,115,104,109,109,91,116,111,95,95,100,73,100,87,109,110,102,97,113,99,109,104,110,110,102,99,95,105,98,100,100,118,100,101,102,102,101,118,98,86,97,102,90,102,106,107,90,112,95,106,108,96,108,100,94,109,93,83,98,104,104,103,93,108,105,85,101,103,101,114,105,106,104,95,104,108,102,106,92,112,113,102,67,103,105,104,102,101,101,111,100,85,106,94,101,106,68,98,91,92,112,107,101,104,104,99,108,98,100,106,87,103,99,98,101,129,91,107,99,96,99,91,99,91,112,105,96,98,97,106,109,94,109,103,108,104,103,107,95,111,112,109,103,104,100,100,107,96,100,112,109,110,105,100,101,109,103,107,106,106,102,104,99,100,102,104,99,99,100,102,102,105,100,109,105,98,105,105,117,111,106,105,112,99,105,100,101,103,99,108,107,104,108,110,103,112,99,101,104,107,103,109,116,106,107,113,104,102,98,91,105,102,102,94,109,102,103,107,92,109,104,120,105,94,99,104,104,104,93,103,100,99,97,98,114,106,110,100,98,102,100,101,102,92,108,101,92,106,112,90,97,96,97,98,112,99,139,110,107,103,104,103,128,101,96,114,98,101,95,93,99,101,102,99,91,105,108,109,95,106,104,100,101,106,108,105,101,95,102,103,105,94,101,112,105,105,96,103,116,108,110,94,103,101,118,109,109,102,101,105,99,91,95,99,100,104,93,108,108,99,78,103,106,107,88,109,100,104,95,103,100,113,102,100,103,97,105,112,112,82,95,99,103,95,113,102,103,113,111,108,107,98,83,107,102,96,105,108,108,104,97,98,110,115,104,98,95,95,100,95,109,94,93,103,99,110,101,83,109,106,81,99,101,96,120,88,106,102,108,104,101,98,97,107,102,106,99,105,95,113,94,127,100,87,103,102,99,85,78,115,99,105,103,106,107,102,98,100,94,108,104,100,106,102,101,99,100,96,97,101,102,105,96,127,107,98,109,95,103,65,102,98,95,110,101,104,99,112,100,96,95,112,103,103,100,104,98,104,90,109,100,104,94,102,95,104,104,92,103,106,97,102,103,94,101,106,107,107,98,104,110,120,105,114,97,113,89,119,124,98,102,94,107,103,109,109,102,105,96,99,103,96,104,106,109,103,96,91,77,108,98,104,113,98,87,101,109,96,100,106,92,101,94,92,109,91,108,107,113,104,108,108,110,107,96,96,101,94,94,101,115,101,94,103,105,108,90,107,102,109,105,117,110,98,101,103,98,95,98,100,103,102,104,95,100,97,105,103,108,104,97,104,113,104,105,101,105,115,105,112,107,96,104,106,98,102,99,105,103,97,82,106,111,92,94,106,85,111,94,110,104,99,107,102,107,112,121,98,103,117,105,109,101,98,113,116,102,102,99,100,100,98,108,97,91,107,112,104,95,106,102,102,112,104,100,104,100,103,114,109,84,99,78,100,105,98,74,108,112,114,114,107,97,100,105,107,121,117,108,92,105,103,105,90,102,104,97,107,101,112,98,115,99,101,102,98,101,108,103,108,95,94,99,95,99,100,108,105,104,109,114,98,105,110,103,102,102,97,102,99,101,91,116,101,112,106,107,96,114,112,106,104,98,105,101,104,98,92,104,102,108,104,104,108,88,110,107,96,104,95,99,114,97,115,94,111,105,113,100,105,108,97,91,101,100,105,106,110,104,112,106,88,91,103,94,116,104,87,103,96,110,123,107,109,91,113,109,102,93,111,107,110,100,105,99,109,103,90,101,118,95,104,105,95,115,99,113,104,104,107,85,119,105,99,104,118,102,113,108,112,99,106,98,99,103,98,112,113,99,110,107,117,104,106,106,98,105,94,100,118,105,121,108,85,101,92,102,82,115,119,94,99,102,103,109,93,107,122,104,103,108,115,113,106,103,94,102,105,91,108,113,104,115,95,99,108,123,92,105,104,104,104,91,105,100,112,112,103,66,106,105,94,121,113,100,107,109,111,106,115,109,110,92,110,78,112,101,104,93,110,96,112,96,104,105,99,99,100,101,102,97,107,112,107,101,121,103,99,113,104,113,100,102,109,110,106,98,107,99,99,114,102,119,100,106,100,100,114,108,109,105,105,88,103,110,84,99,106,103,94,93,99,109,100,109,102,103,98,101,102,104,99,111,109,95,97,116,98,97,98,109,89,114,98,90,95,108,103,101,114,97,98,94,98,110,94,98,103,102,101,104,109,104,94,108,95,115,110,116,107,114,103,111,94,107,100,100,102,108,107,95,112,117,107,107,103,112,93,106,92,101,97,92,96,106,102,113,113,102,85,92,100,108,107,99,84,109,105,108,94,107,92,106,118,101,105,106,99,104,103,104,108,100,111,103,107,115,92,106,94,123,117,110,75,89,112,111,94,87,99,113,111,100,102,102,110,100,103,111,115,93,107,107,121,105,112,95,112,110,107,104,112,100,104,104,113,109,108,106,109,113,117,105,115,111,107,99,102,107,100,108,96,97,97,102,114,101,100,97,100,99,101,109,114,109,110,106,103,105,89,107,102,101,91,94,103,110,107,104,105,99,101,99,110,107,103,110,100,113,128,108,117,104,110,107,112,130,109,97,108,111,104,95,109,110,117,116,103,103,104,103,111,106,96,79,101,96,110,119,106,103,102,102,113,112,113,98,98,105,108,109,102,106,113,102,100,107,95,107,113,101,110,101,101,96,112,110,100,102,81,98,117,102,115,121,108,110,112,102,93,108,103,98,106,115,87,109,112,96,103,105,101,95,103,94,109,105,107,98,111,104,105,115,102,103,108,93,95,109,111,103,103,106,104,104,105,111,106,98,100,102,108,97,106,104,116,121,94,126,109,107,102,103,112,105,106,102,106,107,98,110,109,111,105,105,101,98,106,115,119,90,100,101,103,102,109,103,110,109,102,113,112,105,101,99,102,100,97,109,104,98,110,92,97,113,106,98,104,106,97,98,83,111,100,107,99,93,97,100,102,100,115,106,113,103,100,89,109,108,92,101,100,80,93,117,104,98,99,113,108,101,108,110,113,98,115,96,97,100,94,99,91,120,109,98,96,95,106,105,101,109,100,119,101,110,111,106,93,108,94,118,96,108,113,104,106,104,121,123,105,101,110,96,83,102,121,102,105,97,100,111,104,105,101,102,105,114,98,137,102,98,95,96,99,111,103,97,95,111,104,99,102,96,101,109,110,111,104,106,111,106,99,92,97,104,120,102,103,95,94,102,94,98,86,102,107,85,111,109,109,120,103,94,100,100,99,106,111,109,102,100,107,95,93,98,101,101,98,103,112,98,107,110,99,102,104,109,100,104,100,101,102,115,100,94,99,103,108,101,102,128,116,109,101,105,109,106,103,104,103,107,98,82,97,99,91,99,95,104,113,99,108,117,102,94,101,93,115,90,112,102,102,100,111,102,102,103,106,103,106,101,108,109,106,113,116,97,101,101,108,112,105,101,104,101,107,88,109,99,105,108,101,109,112,123,99,109,94,99,106,104,112,109,98,99,102,104,107,117,103,109,113,93,121,109,115,92,104,105,113,111,106,107,92,102,112,124,106,102,117,99,99,98,102,109,108,115,95,103,97,111,112,116,106,113,135,126,75,104,102,121,115,128,108,113,97,96,105,105,110,96,105,108,103,96,99,93,99,106,109,112,94,107,107,105,121,122,121,128,126,108,93,102,109,105,97,101,105,92,97,99,105,98,96,97,97,106,99,101,98,108,101,109,110,104,108,106,104,88,97,104,100,101,111,109,112,100,110,104,107,112,106,110,109,106,109,105,112,106,104,110,99,102,95,85,102,101,111,100,110,105,108,108,109,110,109,104,98,91,98,99,113,96,111,129,100,113,103,109,101,101,103,104,93,103,102,111,101,113,102,99,111,123,98,106,115,113,114,102,115,113,119,104,98,106,101,108,112,99,106,99,108,106,110,107,103,98,99,101,109,99,102,98,106,109,105,109,100,103,111,107,104,111,97,97,108,99,96,113,111,112,93,108,103,101,107,109,106,93,101,117,102,107,106,107,112,103,106,102,102,101,114,99,95,120,101,103,86,99,111,97,102,109,101,94,105,116,106,99,109,96,90,107,110,104,113,92,107,107,104,112,100,120,108,99,98,94,102,109,95,95,100,105,98,100,100,109,103,111,116,107,115,95,96,105,105,117,115,103,116,114,105,111,108,101,103,104,97,108,107,111,97,105,95,117,92,94,103,107,95,108,103,104,110,97,105,96,102,100,108,97,95,104,109,95,85,105,106,101,112,102,100,105,108,105,105,100,107,99,101,103,115,114,96,102,109,103,103,107,97,104,112,115,90,92,104,109,96,111,101,91,120,89,97,98,102,112,105,112,97,98,96,108,102,100,98,108,93,96,115,110,98,108,99,95,88,98,89,111,109,124,104,107,101,105,101,107,97,101,108,104,93,103,103,100,113,102,115,107,91,109,100,98,99,95,110,114,102,98,103,94,93, +465.74005,104,106,95,115,109,103,84,127,106,110,92,90,102,103,127,98,125,110,105,110,109,105,110,94,101,92,101,102,97,103,104,103,93,103,98,109,105,110,105,100,98,105,95,118,88,110,98,94,109,103,91,116,111,105,103,98,105,96,109,113,96,99,109,92,105,123,111,107,109,95,88,109,93,113,93,101,105,101,107,104,99,108,98,109,105,112,99,101,102,102,101,99,105,105,91,92,101,101,113,105,113,98,106,95,86,100,113,100,99,98,101,89,106,85,107,121,100,100,109,99,105,110,95,109,112,111,103,89,99,104,98,102,91,114,102,96,104,96,99,91,92,93,102,88,86,116,99,115,97,101,100,105,108,98,106,99,94,95,98,103,101,108,114,102,107,91,105,84,99,101,103,109,104,90,68,99,122,96,109,78,102,109,103,86,95,102,86,111,95,102,98,104,103,99,99,96,94,96,104,99,96,107,102,106,90,103,100,99,103,104,100,108,100,79,98,107,94,110,109,106,109,93,92,96,102,106,99,101,112,100,105,106,114,103,101,95,103,100,117,105,104,112,113,105,88,94,113,109,105,104,110,97,105,99,98,108,97,104,102,111,101,101,99,112,104,116,113,106,104,120,106,105,84,96,92,97,107,109,107,104,104,99,104,104,102,93,119,101,115,106,99,98,111,110,106,107,100,111,96,101,106,94,101,106,105,108,105,109,99,103,103,101,86,103,114,101,105,104,98,102,83,99,113,103,99,110,99,96,102,107,110,102,103,109,99,106,95,103,97,104,97,89,116,101,108,102,102,102,101,112,106,107,100,105,128,106,106,109,98,86,97,89,101,84,110,111,108,107,102,108,100,90,99,90,104,103,111,107,108,100,108,106,91,110,107,105,98,96,113,102,109,91,103,108,96,104,109,77,116,105,102,102,92,112,101,94,98,96,100,108,96,101,108,105,101,85,96,111,100,98,108,104,105,107,97,101,114,98,102,108,105,106,115,106,101,93,110,105,87,99,109,106,106,107,89,102,100,110,109,101,99,101,114,94,102,99,105,103,99,102,99,131,98,107,109,117,108,104,110,101,110,102,101,95,107,107,96,105,114,101,102,125,101,98,107,110,106,111,109,113,107,101,105,93,95,101,93,103,104,94,117,83,98,94,107,105,105,95,105,98,107,110,106,98,107,108,105,102,103,101,107,97,107,102,109,105,107,114,88,105,70,104,97,103,101,112,109,104,107,105,104,110,103,120,119,111,107,96,93,100,98,105,101,116,94,105,101,71,102,94,100,93,109,113,101,108,106,109,99,104,107,100,97,101,96,108,104,97,101,97,111,102,103,92,109,106,104,100,113,96,99,100,106,102,108,111,110,104,106,101,104,96,109,101,107,102,105,92,104,115,95,101,116,106,109,88,106,100,108,106,101,111,104,117,112,110,100,96,100,103,94,105,99,105,100,107,102,102,109,102,107,101,111,107,106,121,99,94,106,100,107,113,106,110,102,109,105,108,95,117,105,109,95,112,97,103,101,106,103,108,102,95,101,103,99,113,111,98,110,106,104,114,108,90,93,102,95,103,102,101,100,100,98,115,110,104,107,96,113,97,103,101,103,109,107,114,114,105,112,106,103,105,97,118,107,91,97,109,107,110,106,108,100,107,105,110,103,106,111,113,106,108,106,102,94,98,105,101,101,113,87,102,101,109,115,94,102,114,104,112,116,99,104,94,111,100,107,105,110,92,102,105,110,103,101,92,94,103,102,86,110,115,103,101,89,90,103,102,86,99,105,116,108,111,99,112,107,122,108,122,100,103,115,112,102,98,76,102,103,101,101,108,90,105,104,95,108,105,96,97,109,103,105,105,107,99,101,104,92,104,112,109,109,99,111,106,106,97,113,117,101,103,101,91,101,113,99,87,100,91,99,104,109,71,108,94,94,102,108,94,107,90,111,95,96,115,103,109,103,101,98,100,92,108,102,106,112,107,117,119,106,113,103,99,115,100,96,102,98,102,100,101,91,94,98,115,94,104,115,107,100,111,105,106,95,103,107,109,108,100,108,102,101,98,102,95,104,133,98,101,107,114,117,103,96,80,95,109,96,100,114,108,119,103,111,110,101,99,97,92,99,113,116,110,86,105,107,110,101,99,102,96,100,104,108,99,101,116,112,106,112,106,107,117,115,96,107,102,107,102,113,105,101,97,98,101,114,105,121,99,95,97,91,113,103,100,107,108,101,110,95,88,126,109,108,94,96,100,114,101,109,111,104,84,99,109,108,109,87,105,105,120,95,102,111,102,99,104,94,112,97,109,104,103,104,112,121,109,101,102,107,110,88,86,117,98,106,88,111,116,113,95,115,94,113,102,97,102,104,99,101,95,96,117,103,98,108,116,83,105,102,96,112,99,82,91,103,107,109,91,99,114,102,104,81,101,104,106,107,91,98,111,116,105,91,107,104,105,99,105,106,108,114,110,100,102,111,109,112,103,97,103,102,99,98,108,120,108,103,110,110,100,116,104,96,96,93,90,108,112,106,106,114,107,93,95,105,113,104,101,113,112,105,99,108,104,98,120,108,87,106,113,102,99,123,87,115,103,99,112,97,96,94,92,99,105,95,110,101,100,99,111,107,102,102,111,115,111,102,102,67,114,109,98,110,92,98,108,100,111,100,99,110,104,108,111,117,107,111,98,101,110,77,102,109,105,113,109,104,113,110,92,88,108,100,91,103,120,98,102,105,106,104,112,105,129,98,111,104,102,112,110,111,104,102,109,91,106,101,102,122,104,105,97,109,108,101,106,107,109,106,115,105,108,110,115,97,93,116,109,109,105,99,87,105,111,123,106,96,99,116,107,106,96,104,106,93,101,103,111,97,98,119,108,114,110,107,107,102,110,107,95,94,113,109,100,124,101,105,113,98,108,121,105,99,115,111,114,113,107,106,96,104,111,104,103,110,106,120,102,103,110,100,101,101,109,106,94,109,99,98,103,97,93,115,107,109,122,106,102,108,113,111,110,107,87,111,109,96,109,102,104,109,107,112,102,108,109,93,102,113,106,124,109,111,103,97,97,105,105,99,101,96,117,94,100,107,109,95,90,114,115,117,122,108,107,100,108,112,115,101,88,98,106,118,103,109,113,104,97,105,93,121,107,114,99,103,109,105,114,109,105,98,105,107,121,103,97,102,109,112,97,102,106,103,106,107,104,107,98,108,105,107,111,115,94,102,98,110,102,112,109,98,98,102,105,115,112,107,91,109,98,115,112,113,110,111,116,95,83,106,102,121,117,102,92,104,109,109,103,98,98,105,105,104,96,98,102,115,103,112,99,102,107,95,105,95,96,104,97,100,106,103,96,99,100,107,93,94,104,98,111,101,114,101,102,112,92,113,104,116,105,106,103,122,114,101,111,96,101,94,105,98,108,104,92,119,99,88,97,114,89,110,107,95,104,104,102,108,113,109,107,94,91,108,90,100,102,94,115,113,97,105,109,102,105,95,100,110,104,84,104,104,113,100,101,105,111,95,96,105,117,108,109,106,100,120,112,99,85,105,109,103,100,110,109,106,100,100,137,103,90,96,109,96,99,106,81,102,102,101,100,103,105,105,84,106,106,110,103,92,103,111,101,112,101,110,109,105,105,104,102,111,94,108,100,77,102,104,106,112,111,101,122,95,113,109,111,109,103,111,103,102,115,105,105,113,109,100,108,102,107,100,108,97,94,105,112,113,99,94,104,107,106,104,96,105,104,112,102,98,104,107,100,102,102,101,103,104,106,107,104,99,106,104,89,106,106,112,112,113,115,84,108,105,99,101,120,98,105,113,97,98,117,100,116,105,95,103,102,107,109,107,98,109,114,114,116,111,101,106,115,102,109,107,91,101,105,104,100,115,95,104,113,105,104,107,91,98,104,103,99,94,109,105,98,96,93,99,96,89,101,112,120,117,102,105,113,108,99,102,107,98,99,106,111,99,108,106,106,100,105,95,81,105,107,108,87,113,96,107,95,108,104,112,111,99,103,104,102,98,106,103,106,105,95,108,95,111,103,100,127,102,109,104,111,113,102,97,107,102,128,107,107,98,104,102,108,117,108,114,99,104,102,110,110,106,108,101,96,99,105,105,122,100,122,109,93,95,106,107,101,106,104,120,106,104,109,109,72,115,96,98,93,98,105,103,111,95,109,107,110,106,106,106,122,95,106,102,102,107,116,104,102,95,105,112,102,110,97,103,99,111,109,106,98,103,103,113,92,123,102,108,105,101,106,94,107,100,100,102,109,104,91,98,94,116,90,99,108,98,103,110,107,111,100,112,99,114,107,95,105,95,113,107,116,102,106,104,110,105,98,107,109,98,109,103,100,114,108,104,111,110,118,111,105,68,109,94,99,102,107,108,110,102,112,110,105,107,99,107,72,105,99,103,102,96,113,106,95,103,115,99,98,104,101,110,109,113,108,116,105,84,103,108,96,103,134,84,100,91,98,106,101,103,104,104,104,106,80,105,107,98,124,112,113,115,104,112,121,113,101,98,100,107,101,103,107,104,122,109,121,91,99,95,109,110,113,104,92,106,140,107,102,101,112,115,107,103,104,116,94,98,92,101,108,102,95,111,104,98,105,114,109,105,113,100,111,95,100,101,108,98,104,98,105,108,107,103,115,105,100,106,111,99,100,104,101,104,102,105,96,97,94,116,100,115,109,109,97,105,105,109,96,101,112,102,109,115,93,96,80,111,115,105,94,108,101,101,99,102,95,99,96,95,104,90,112,97,112,100,103,105,104,106,108,110,106,102,103,109,103,110,123,101,94,113,91,84,95,110,100,100,99,116,107,97,105,97,91,92,99,108,101,93,107,85,97,113,96,105,104,97,103,96,98,99,98,106,112,93,113,109,99,111,92,88,94,113,89, +465.88052,111,97,65,112,89,108,117,100,107,117,95,100,108,103,101,105,89,103,103,117,90,112,106,112,103,98,94,110,120,91,100,105,108,118,106,79,91,108,97,117,104,102,102,108,104,113,109,99,98,106,88,109,95,101,90,91,98,90,109,87,100,111,110,92,91,100,100,109,98,97,108,94,99,93,71,96,102,101,102,107,122,95,104,111,101,106,103,111,95,99,94,104,103,92,91,105,107,91,101,104,114,117,98,103,99,104,102,101,107,106,98,115,98,100,91,97,91,100,104,88,115,98,101,102,138,107,118,96,104,107,104,98,108,112,101,129,91,103,109,93,95,116,101,98,101,87,96,97,104,109,98,103,106,97,103,110,105,110,97,98,91,101,99,68,94,96,107,108,101,105,94,106,111,97,106,79,105,91,102,112,106,97,106,107,110,100,104,88,114,102,100,96,107,112,111,117,103,107,100,103,107,95,98,107,102,96,110,109,112,103,96,98,97,82,101,96,110,100,113,105,99,99,102,93,96,92,109,112,88,97,94,97,95,104,96,97,102,110,113,99,113,120,101,112,104,108,99,106,101,101,104,113,104,96,107,80,99,106,98,112,104,98,119,101,113,113,104,104,95,104,98,107,105,105,105,112,115,113,104,106,105,107,105,115,80,102,95,104,102,110,112,95,100,109,107,107,109,118,110,103,105,105,97,114,94,101,102,118,104,95,104,108,101,84,100,103,90,121,112,100,102,109,108,106,97,103,104,69,109,100,109,101,103,109,109,93,109,105,91,106,113,100,91,111,111,97,112,105,107,115,109,103,108,98,109,95,103,103,108,120,107,114,102,101,104,113,109,114,102,107,111,100,104,112,112,104,100,103,100,108,108,101,106,96,103,98,98,109,95,97,103,87,108,106,101,100,100,99,106,90,93,108,115,94,109,105,100,108,100,104,94,91,108,102,101,109,103,103,110,110,114,104,100,91,106,109,110,103,105,93,105,109,119,90,110,93,95,107,93,97,113,110,105,98,103,97,98,100,97,107,109,93,100,101,105,107,100,109,105,113,99,95,114,101,109,99,99,106,108,107,99,106,103,93,99,99,100,112,101,111,107,107,110,107,106,98,104,103,104,107,103,107,111,94,117,94,104,111,111,99,104,102,110,109,99,106,99,115,104,106,99,112,106,105,101,120,106,111,96,98,108,107,104,105,124,110,105,104,100,96,109,105,92,113,99,106,106,103,103,102,100,107,106,105,104,104,114,108,110,109,102,108,94,106,107,108,102,100,99,103,110,107,100,102,98,104,103,108,103,104,80,98,101,95,103,97,116,94,95,98,101,94,103,104,104,103,93,100,98,96,114,114,123,108,114,111,101,118,113,104,91,100,106,105,102,111,101,103,121,95,99,99,102,99,110,103,105,100,102,95,105,101,99,98,106,112,101,109,111,106,104,94,101,98,113,101,111,97,106,110,103,105,114,110,99,101,103,110,105,97,96,104,105,101,107,103,113,108,106,97,107,107,102,103,101,106,104,87,101,100,99,115,102,109,99,112,111,106,106,110,101,145,107,94,104,92,115,100,83,109,114,101,116,100,108,102,111,111,103,109,119,95,109,104,102,110,93,98,111,103,104,112,101,86,99,97,87,106,101,101,117,99,105,103,94,96,105,105,97,105,105,110,101,90,99,105,109,101,121,88,109,73,117,107,106,99,111,113,102,100,92,92,110,111,118,106,112,99,110,101,97,96,96,105,96,105,104,115,109,106,107,102,100,93,106,110,102,108,109,101,103,112,102,113,103,104,84,102,116,104,99,116,100,103,103,106,105,96,96,105,93,100,94,111,98,102,110,108,110,111,101,104,108,90,102,91,113,105,102,100,108,102,101,111,101,102,121,104,95,96,111,95,107,102,102,104,99,96,96,102,95,105,101,101,97,104,98,93,95,104,103,102,96,103,97,103,109,105,129,97,113,101,102,103,102,96,84,105,106,101,108,106,104,110,113,107,112,93,109,96,95,111,103,105,107,102,95,108,102,113,105,112,117,106,122,111,102,96,112,99,99,107,102,97,103,102,109,101,105,101,96,99,104,109,122,99,96,105,97,100,110,100,111,109,99,114,107,106,110,94,111,102,96,118,115,97,107,99,94,102,90,92,103,109,123,100,96,111,105,115,120,110,102,98,101,107,102,106,114,109,97,116,99,110,121,106,122,97,99,113,91,93,109,97,120,109,98,101,101,115,93,115,112,108,100,98,100,96,99,111,104,116,104,110,92,95,92,104,102,113,102,110,90,112,106,104,107,104,95,117,104,116,112,106,95,96,99,113,93,98,107,106,103,86,105,67,99,99,108,91,99,104,99,103,113,99,105,109,107,94,107,107,104,98,96,112,103,102,102,99,108,107,116,110,105,105,105,112,118,78,113,113,106,106,85,107,102,113,99,92,113,138,98,109,100,118,97,103,96,101,104,116,96,97,99,119,103,106,109,113,106,103,113,109,102,108,117,101,108,113,104,103,100,100,102,107,108,102,119,85,108,113,108,106,109,101,102,99,90,97,105,78,117,102,105,103,88,110,105,98,109,132,110,107,103,104,90,100,105,75,109,88,100,95,97,101,100,95,104,101,113,102,108,90,100,97,111,104,96,106,106,102,98,98,110,112,117,100,112,96,98,102,99,103,103,99,109,95,107,100,105,95,99,110,108,110,113,103,100,103,109,99,102,109,94,107,107,93,109,95,110,106,118,101,103,102,94,121,108,105,85,96,92,103,97,108,108,111,108,96,105,106,95,87,108,102,77,110,105,103,88,106,98,101,103,108,93,104,117,111,108,108,115,104,103,113,98,110,121,107,106,112,105,99,100,100,105,110,101,105,102,99,124,97,105,102,128,113,110,104,110,111,96,110,103,99,103,107,98,115,107,101,102,106,96,99,99,104,107,103,96,116,105,100,101,103,106,99,100,110,104,101,97,104,108,94,116,114,108,100,106,92,98,91,105,109,107,98,109,104,111,96,95,117,108,91,106,113,112,108,103,103,99,102,102,100,109,108,102,103,101,110,104,98,107,107,116,116,94,119,113,112,103,101,88,100,113,103,96,110,104,113,105,97,112,115,121,113,107,105,98,102,97,106,109,98,104,103,101,107,99,91,102,88,100,94,119,107,98,88,92,105,117,95,98,108,108,108,111,100,112,95,95,100,88,106,102,106,102,101,98,101,95,106,101,102,109,104,106,113,106,104,104,95,122,96,89,100,99,104,106,109,96,112,102,102,107,109,86,108,116,98,111,110,105,109,108,104,117,110,108,98,104,93,103,106,102,105,118,108,103,82,92,116,90,100,91,112,98,104,100,115,105,95,95,97,99,95,100,95,95,94,101,109,101,116,95,99,109,106,101,108,100,108,103,102,102,106,110,106,100,106,108,110,83,113,104,96,109,87,95,100,84,101,89,110,108,109,104,110,105,109,116,110,103,112,108,108,100,101,105,104,110,101,89,101,102,95,104,99,102,93,103,106,95,100,104,101,119,95,93,108,102,117,98,99,91,102,86,103,98,103,111,100,98,98,109,116,112,102,113,100,113,110,92,101,103,101,102,104,94,94,104,89,100,98,101,104,100,109,98,105,121,104,96,104,107,106,100,108,102,100,108,106,103,107,101,107,101,110,104,110,110,105,90,101,95,105,104,100,100,99,106,107,93,91,103,99,117,102,104,107,105,110,108,94,106,103,94,103,100,99,106,106,91,113,128,103,106,105,106,102,97,99,96,104,97,103,109,101,100,102,109,106,107,98,94,90,109,89,110,114,105,108,110,115,104,95,96,104,111,102,106,105,113,90,95,132,109,102,87,99,94,101,109,108,109,93,106,102,102,100,100,85,114,116,97,99,120,94,113,92,109,102,110,114,102,109,98,116,99,110,83,112,102,100,99,104,117,81,104,106,107,100,100,101,103,92,109,92,114,115,92,109,106,99,101,106,98,106,117,99,98,102,112,135,93,101,85,119,94,90,113,109,109,104,103,99,108,107,106,86,107,92,101,101,117,107,103,103,110,97,115,88,105,102,101,94,108,102,116,114,94,111,103,106,95,112,103,86,119,103,99,101,103,115,99,99,93,88,100,97,108,109,110,105,108,95,113,119,92,91,113,96,102,102,104,104,95,97,113,100,96,90,106,109,103,99,104,98,101,108,106,116,101,103,100,102,119,101,104,100,110,97,104,91,97,98,113,91,94,103,100,101,102,107,113,105,102,93,98,92,109,87,99,119,97,105,111,104,111,99,114,102,93,104,95,104,102,123,97,102,100,99,112,100,100,98,107,107,102,104,133,102,99,117,109,105,98,117,114,96,89,106,94,115,113,107,99,107,108,100,105,114,94,102,99,100,114,106,103,108,92,104,112,113,92,99,99,99,101,92,100,105,105,102,106,97,72,109,106,97,103,106,99,79,88,105,87,110,99,99,94,99,107,91,118,101,109,102,92,106,101,100,94,100,99,96,113,104,100,98,104,100,101,83,109,107,99,96,100,104,110,107,108,108,113,102,111,100,93,105,104,105,121,83,102,115,113,95,113,100,96,100,101,103,113,96,94,99,106,98,111,72,110,108,109,104,104,97,105,102,94,100,103,96,98,105,103,106,112,92,114,119,106,98,103,107,100,105,107,101,100,106,99,101,100,97,97,95,115,105,104,103,101,73,108,99,94,101,99,90,99,95,95,106,93,109,104,98,96,110,106,94,100,91,107,102,106,119,96,94,111,105,101,103,102,102,109,109,95,93,99,101,112,116,113,99,106,76,109,97,111,98,114,98,104,105,102,98,109,110,109,101,93,107,104,104,104,94,88,103,93,108,104,111,93,106,98,121,112,93,100,100,91,98,99,104,105,94,108,101,94,100,84,95,95,100,100,91, +466.021,96,107,89,108,80,91,106,103,109,86,101,106,86,100,96,105,99,93,108,95,108,101,106,102,104,109,100,102,116,113,103,101,112,103,98,112,105,98,92,98,110,85,103,99,107,107,111,107,101,116,103,106,108,96,105,103,100,91,133,91,101,108,97,95,100,100,97,100,104,92,109,101,103,96,103,105,112,95,108,102,107,110,98,83,104,114,113,119,85,91,104,103,99,104,104,86,104,101,112,88,104,109,110,107,103,109,100,106,115,78,109,93,86,101,96,101,102,89,113,112,95,106,81,103,102,99,108,96,108,94,94,102,107,90,103,113,95,90,96,121,118,107,97,105,111,102,103,96,124,108,97,96,109,105,103,115,111,96,99,95,99,102,117,106,103,115,111,99,108,103,104,104,98,97,105,105,105,110,108,102,102,103,96,103,104,86,90,103,104,94,86,121,112,100,111,102,111,114,102,112,98,109,126,99,113,99,103,105,96,105,105,113,117,105,105,119,98,110,101,113,95,111,95,98,102,106,97,105,105,102,101,107,93,107,101,113,104,97,97,96,110,113,104,100,99,106,111,109,97,114,106,103,104,100,95,107,95,106,102,96,101,105,101,102,102,114,101,102,106,105,113,104,106,103,106,96,120,111,103,105,114,140,98,103,114,103,105,108,120,105,107,105,108,119,103,108,98,107,99,107,95,99,96,106,97,114,115,105,115,112,99,109,103,111,106,103,108,98,98,110,99,108,97,104,105,107,95,106,103,117,109,99,113,116,119,105,113,104,111,107,99,109,90,99,93,99,102,103,103,98,107,97,103,105,106,107,113,109,110,83,103,103,100,94,102,87,109,96,98,98,105,102,99,110,111,96,108,104,101,109,105,105,103,99,96,105,106,102,107,101,115,92,91,95,91,105,105,104,95,109,107,94,102,93,96,105,98,95,106,105,99,100,115,100,103,96,94,93,99,102,99,95,109,97,109,125,106,103,119,106,104,103,101,102,100,104,105,99,113,108,108,106,103,107,104,99,105,102,95,95,100,88,98,111,99,100,105,105,105,111,96,116,106,96,111,105,106,106,99,103,107,110,103,101,113,117,95,112,99,99,95,115,112,119,112,109,102,103,108,96,112,104,113,109,104,104,125,107,106,117,109,111,118,95,96,100,100,100,112,98,101,86,106,97,93,105,108,105,100,108,115,103,108,105,97,104,100,106,99,107,101,106,108,100,100,99,108,106,121,105,107,93,100,106,112,107,100,91,108,102,113,101,100,109,85,109,108,96,99,99,87,107,96,109,113,103,99,89,108,101,104,93,100,103,106,105,106,89,100,103,113,106,97,99,104,113,110,104,117,105,107,117,101,94,109,116,101,107,109,113,106,105,104,107,103,91,95,102,110,103,100,104,83,103,92,99,113,99,103,102,101,108,110,109,109,126,106,98,99,125,98,112,93,101,114,116,103,107,120,94,104,112,116,103,93,97,109,98,103,110,99,104,89,107,99,99,103,99,96,100,112,115,104,102,99,100,101,121,101,91,103,85,100,109,97,100,104,94,110,110,114,97,106,106,92,70,101,96,113,107,109,117,109,95,110,103,108,109,104,91,113,108,101,88,111,118,103,104,98,107,108,105,108,111,73,95,115,108,112,109,109,106,98,108,101,106,109,103,104,80,105,99,99,118,95,109,107,99,99,88,108,98,96,116,100,111,107,99,107,97,103,96,103,101,103,105,99,103,110,105,111,104,106,104,104,106,102,101,103,102,105,88,107,107,96,102,104,102,82,105,99,110,110,116,112,121,123,110,106,106,106,103,119,111,103,106,114,102,99,110,111,91,110,99,105,99,103,107,97,88,119,100,108,116,111,113,103,106,107,95,103,112,95,100,108,118,109,109,103,108,108,101,103,105,112,103,92,88,105,104,113,106,95,93,103,98,106,99,106,102,96,94,104,104,86,100,112,111,100,115,97,118,103,110,111,102,93,104,108,113,93,109,99,104,112,102,102,99,91,110,102,104,120,93,95,95,105,111,104,97,106,116,104,113,83,97,72,108,87,102,94,115,113,97,107,108,110,100,111,107,91,101,111,112,103,98,99,120,102,103,102,109,108,116,113,102,111,100,101,97,109,100,102,110,99,107,104,113,107,131,108,117,102,122,106,104,116,90,105,122,115,106,113,104,105,102,108,110,103,91,103,92,103,120,103,100,103,95,91,101,101,91,100,105,101,122,107,106,107,106,104,102,99,100,99,102,99,106,117,83,99,111,99,99,103,104,79,101,103,104,104,99,99,110,115,114,109,97,105,110,97,105,114,116,106,103,100,100,96,98,112,119,102,94,104,91,101,83,109,95,111,91,108,107,91,85,108,99,122,95,108,108,109,113,99,117,106,107,103,103,110,106,118,104,81,100,109,119,107,99,97,95,106,103,95,91,102,114,96,95,99,108,105,100,103,104,87,112,112,100,102,103,105,103,113,111,102,108,98,101,97,103,109,97,102,106,107,107,109,103,98,94,107,99,98,108,107,90,102,108,110,109,108,105,106,100,112,100,87,111,113,110,107,91,106,110,97,108,111,102,107,113,94,108,98,99,102,109,108,110,100,106,95,94,101,104,115,106,107,79,124,109,113,117,105,106,104,104,114,106,105,110,110,102,95,109,113,95,121,93,97,103,111,91,102,106,117,102,101,113,101,99,106,99,111,113,105,109,101,108,110,105,105,95,109,107,108,95,95,107,107,107,103,117,104,115,105,104,90,115,100,99,96,106,109,101,99,117,112,106,114,105,95,104,104,99,103,106,101,98,99,112,101,83,103,106,108,100,99,97,93,96,112,95,93,105,134,99,101,100,110,105,103,110,106,110,100,108,109,106,100,110,102,111,81,111,104,104,91,94,101,119,109,108,112,98,117,105,93,109,93,99,98,112,96,108,112,91,121,103,94,105,98,109,99,103,99,103,99,102,96,100,109,116,92,101,118,114,105,96,106,115,103,99,94,104,105,119,100,88,107,106,105,98,112,107,113,109,101,101,105,106,100,113,110,98,110,109,96,95,82,110,115,101,105,101,107,104,105,100,104,96,98,105,94,94,96,108,103,98,112,116,99,101,103,97,114,99,102,110,103,101,95,129,107,93,104,117,95,110,99,107,103,104,95,104,103,105,111,115,111,100,102,107,120,116,100,97,109,116,103,96,95,103,97,103,116,101,112,106,102,101,113,89,98,94,105,107,98,105,108,100,98,98,109,101,105,99,97,107,108,105,109,107,109,110,93,99,100,106,101,106,102,96,95,108,106,104,97,97,118,113,104,103,103,99,102,97,113,97,107,113,101,111,97,109,102,98,105,101,83,110,108,98,105,109,104,81,109,106,98,94,96,103,88,110,100,98,105,99,95,100,94,97,96,111,100,104,109,104,89,99,106,105,99,101,109,107,100,111,107,100,96,100,91,98,102,115,106,93,108,97,104,108,105,98,105,103,93,109,109,107,96,123,98,104,100,94,113,103,104,91,98,112,106,101,127,109,108,105,104,112,102,105,102,90,99,106,104,98,104,97,92,99,99,115,115,113,103,100,112,101,102,105,110,97,117,99,110,109,109,103,97,107,103,105,100,98,86,85,93,104,123,97,102,96,103,105,101,88,87,98,102,102,107,102,98,110,111,125,95,108,97,108,104,116,104,85,101,104,101,112,111,105,96,97,104,108,105,103,98,112,110,88,100,116,109,111,105,88,112,110,109,90,102,106,105,102,102,117,102,105,113,94,107,110,103,100,102,99,104,109,101,95,110,111,95,94,103,107,101,102,108,107,96,97,112,100,93,103,106,99,117,109,106,107,115,103,104,114,63,104,100,95,101,94,104,104,109,93,102,98,107,109,109,111,95,108,110,113,97,88,117,94,104,114,108,95,106,97,112,104,93,100,97,102,109,99,111,95,108,85,102,96,113,110,108,116,103,93,95,108,94,108,107,109,101,103,106,103,102,100,107,114,100,102,99,100,108,101,108,104,110,118,99,113,92,100,126,102,117,102,107,98,104,111,106,112,108,96,117,98,95,109,110,109,112,110,111,101,101,115,105,104,101,109,98,106,108,106,107,104,111,110,84,96,106,109,108,105,100,92,100,103,109,108,111,95,100,114,120,103,102,102,104,99,101,106,108,115,101,105,78,110,89,104,111,100,118,101,104,99,114,102,118,120,93,118,98,105,93,103,113,105,110,85,102,102,100,111,109,94,108,109,95,97,100,104,104,101,75,106,103,109,104,111,99,107,106,117,105,112,103,102,102,102,108,94,99,106,103,109,102,108,105,101,104,99,111,100,119,97,103,104,115,103,91,100,68,106,113,94,101,100,117,92,108,102,99,115,113,96,107,100,108,101,111,107,110,122,105,101,99,102,110,103,109,108,108,81,101,92,111,99,89,107,105,96,102,115,101,105,108,114,106,116,102,93,100,107,99,109,101,101,91,105,103,100,104,87,92,109,103,100,89,110,117,103,106,100,92,104,98,108,102,89,106,106,96,105,101,108,102,102,97,100,115,108,91,99,108,109,95,101,104,104,102,98,98,106,102,110,113,84,99,98,94,121,96,110,107,98,105,105,88,100,102,91,109,106,94,96,91,100,104,109,113,105,100,99,93,102,98,111,99,109,106,105,108,101,97,110,103,81,108,110,103,100,99,104,105,108,103,105,107,105,102,108,109,100,96,105,112,108,111,106,106,109,100,99,101,101,108,125,93,105,102,96,101,107,119,100,108,110,104,91,88,87,107,98,98,105,120,103,95,95,98,92,109,107,105,88,106,96,111,102,110,107,100,96,106,91,107,96,104,108,115,109,100,103,100,93,103,105,103,104,99,108,109,91,108,78,111,112,93,102,96,106,124,100,84,93,104,103,104,93,112,98,104,101, +466.16147,100,108,105,84,100,91,88,101,108,111,101,120,109,100,101,101,94,115,93,91,101,68,93,102,95,97,94,109,113,92,100,98,103,101,105,102,98,91,100,91,114,97,102,99,110,101,98,106,109,103,97,101,110,92,102,97,100,90,99,102,95,122,101,104,106,95,95,102,97,99,96,104,99,94,98,107,109,89,98,89,90,103,100,96,94,103,99,113,104,91,100,100,103,112,96,97,97,90,104,109,99,96,102,102,103,101,103,95,113,114,101,106,99,96,102,96,96,95,108,92,105,106,106,105,118,113,111,87,106,102,96,100,107,110,98,103,106,103,95,97,112,109,91,90,105,98,108,137,94,110,102,104,113,102,96,92,106,98,104,95,96,108,95,107,114,99,95,98,99,92,110,103,103,104,102,103,110,104,104,113,101,103,102,108,87,110,104,107,123,107,106,108,115,89,115,105,104,97,108,118,102,108,105,100,111,95,106,103,112,94,99,106,102,102,107,99,110,103,102,105,109,105,110,93,111,100,104,104,102,112,105,102,101,105,101,121,112,110,111,122,112,102,113,103,107,85,107,103,114,104,100,107,99,102,105,110,105,112,97,104,91,107,104,106,101,104,125,102,106,99,110,107,101,105,97,103,102,108,109,109,114,118,101,109,101,102,90,107,96,94,103,100,99,101,106,106,99,101,95,104,116,106,103,102,100,102,99,111,102,101,92,101,112,103,95,105,108,107,111,112,114,96,110,100,103,96,92,100,112,100,103,100,105,104,87,93,101,98,100,98,100,110,100,97,106,101,112,99,100,103,105,109,107,107,114,108,131,102,100,99,107,101,108,91,100,106,111,104,91,112,114,96,114,98,99,109,113,115,101,109,113,111,95,107,113,109,100,116,98,89,125,99,112,102,102,104,104,107,108,102,95,101,114,99,102,103,109,83,98,103,105,93,104,94,103,101,100,102,107,115,110,113,95,97,99,102,94,112,99,103,97,96,89,101,109,102,112,99,106,106,107,106,108,106,91,107,96,97,107,108,107,95,113,107,106,111,97,109,103,88,100,97,106,105,100,103,105,108,114,99,97,99,110,98,103,104,103,108,94,108,105,99,100,101,91,126,109,113,100,101,105,106,110,105,93,109,103,98,113,96,109,99,105,91,104,112,98,117,116,99,94,104,104,105,101,106,111,100,91,106,100,99,105,102,104,117,115,112,108,109,95,104,95,100,123,108,107,99,117,115,100,108,87,101,107,102,87,97,96,115,102,101,105,107,106,113,105,101,105,91,110,104,100,98,109,112,105,95,91,101,104,103,104,86,108,106,112,103,104,94,114,106,90,88,100,103,106,107,119,97,113,104,102,100,100,107,92,99,99,100,103,103,115,105,105,126,95,113,103,101,98,100,85,106,96,98,104,103,102,96,102,98,95,87,105,101,110,96,105,107,100,113,102,108,98,106,110,95,90,96,101,106,104,128,101,102,105,92,99,103,109,104,107,108,110,91,105,105,105,94,111,103,109,109,93,106,104,93,100,105,113,98,110,110,103,102,100,98,99,105,108,103,96,106,108,100,108,101,106,111,108,86,102,110,98,99,102,102,112,111,99,100,96,99,109,104,108,109,111,105,95,107,110,103,116,117,103,108,102,97,105,99,103,108,97,103,96,108,107,107,93,115,98,101,95,96,106,104,112,103,104,97,103,99,99,96,99,99,103,100,105,113,107,102,74,104,94,99,105,101,96,101,96,85,94,108,99,101,117,92,105,91,112,91,103,114,107,98,99,105,118,102,107,115,96,105,109,71,110,121,105,112,116,103,89,94,100,119,103,105,96,97,94,107,119,98,107,111,100,108,103,102,102,95,111,116,109,117,109,113,110,86,103,100,98,114,112,100,118,104,97,108,109,103,103,98,128,95,103,104,99,102,116,99,102,111,100,124,74,98,108,114,116,99,101,104,101,108,100,104,103,107,105,118,105,99,101,126,110,115,103,104,106,119,106,106,108,100,102,100,98,111,109,119,116,88,101,108,105,111,97,103,96,116,107,97,98,97,109,107,100,105,101,106,104,92,105,109,116,108,97,104,106,104,107,109,102,98,108,105,106,81,106,102,115,121,102,109,108,101,92,110,90,97,108,99,96,104,114,100,106,105,97,107,97,101,70,121,102,88,106,105,102,102,106,97,113,114,87,94,112,103,96,104,116,101,113,91,100,98,111,101,102,95,106,104,93,86,96,98,89,107,95,116,101,105,95,98,104,115,104,108,98,126,97,105,100,103,91,103,97,106,109,92,102,101,109,96,95,101,90,103,99,96,105,100,86,100,114,103,94,101,98,118,98,120,104,109,111,82,101,104,77,72,102,95,100,116,106,96,115,105,101,108,110,87,90,92,105,99,110,98,112,114,109,106,105,113,106,101,97,107,81,107,100,116,98,104,106,96,87,125,114,100,103,107,106,125,99,96,98,107,88,116,106,98,104,107,113,111,93,117,123,108,87,100,86,97,104,105,101,102,108,112,84,108,101,95,108,110,98,111,104,99,100,98,120,100,100,104,104,96,111,111,106,102,104,112,107,103,108,112,112,113,109,96,101,69,109,103,105,103,110,98,105,109,107,92,100,109,107,87,107,107,91,102,102,105,117,91,110,104,102,98,114,116,115,99,100,99,103,106,113,108,103,104,108,107,112,101,95,112,97,104,109,106,106,112,124,109,99,107,91,96,104,107,95,100,102,121,119,107,112,107,104,99,106,108,105,109,113,113,109,109,96,111,112,108,101,101,105,110,74,96,106,87,99,92,95,106,106,115,103,104,109,85,109,112,116,83,109,89,114,102,115,111,105,106,109,109,119,112,119,108,106,101,108,116,90,109,103,105,108,108,106,104,100,107,102,110,109,111,106,112,89,105,102,106,101,103,106,126,111,114,102,83,100,106,102,104,95,104,97,93,106,94,104,98,102,106,111,91,106,108,113,107,104,105,105,100,104,90,67,100,107,111,95,121,104,95,109,121,108,104,108,95,123,105,91,104,116,100,102,112,119,103,119,102,99,110,100,106,108,110,107,89,108,105,77,106,108,113,109,104,93,108,102,111,102,98,103,104,92,101,110,116,109,105,106,99,95,99,105,112,114,115,98,100,105,105,105,105,107,104,93,110,104,103,94,102,100,105,102,109,114,95,112,99,108,109,106,101,107,92,106,113,103,113,101,107,103,99,109,101,119,103,107,96,116,93,104,106,109,108,104,109,110,105,102,109,106,102,98,110,104,106,94,103,98,110,94,101,107,96,99,105,82,96,110,102,100,100,91,106,107,94,103,104,107,103,105,105,92,108,105,100,108,98,113,106,91,109,99,85,104,103,106,104,95,117,100,101,105,105,108,106,105,99,108,133,113,95,111,113,106,96,109,112,109,103,97,113,94,103,101,102,113,105,106,102,106,108,113,102,111,102,107,109,103,107,96,105,101,108,101,100,103,104,110,105,103,102,97,100,113,99,108,105,105,99,105,102,102,107,101,103,110,99,100,107,102,103,103,110,113,115,109,98,102,96,87,106,95,69,88,105,83,91,98,102,99,93,96,109,90,109,102,99,111,95,101,96,104,99,87,114,111,93,100,103,99,99,104,100,110,96,86,101,105,97,101,107,107,110,99,103,103,106,99,110,94,93,105,105,113,95,99,99,116,100,122,110,98,97,115,97,104,100,104,104,103,102,99,103,102,100,97,115,107,98,104,111,95,93,107,106,99,88,87,100,102,92,107,108,92,114,96,96,109,109,121,91,100,96,112,104,109,102,102,103,98,117,100,107,102,112,104,110,101,110,104,115,134,100,111,134,102,102,96,101,90,115,95,96,94,102,116,94,111,99,104,113,116,120,102,99,100,105,105,100,100,102,101,89,117,109,105,101,104,102,91,95,97,104,103,96,111,104,104,103,102,105,107,117,96,102,134,106,112,103,101,98,83,107,108,108,116,106,109,96,108,104,102,111,108,91,102,100,117,104,100,95,116,97,107,104,102,94,116,106,117,80,106,106,108,98,115,102,112,99,105,98,109,106,117,98,100,105,123,100,105,105,107,95,103,105,100,108,101,105,109,105,91,97,105,97,99,97,111,117,101,105,106,101,92,112,103,103,103,107,129,104,105,102,104,85,105,110,103,116,124,94,106,101,105,96,98,87,98,93,116,110,105,114,94,116,105,112,106,109,98,117,107,107,100,111,101,99,90,98,114,91,108,106,100,104,110,105,106,97,90,104,104,109,100,94,99,96,122,103,88,112,107,98,103,97,84,100,91,107,101,111,112,100,110,109,107,116,103,94,104,98,107,94,109,110,102,96,103,100,109,95,109,107,97,97,111,104,101,110,100,100,111,119,103,116,109,96,102,108,101,105,101,102,108,95,107,116,105,106,104,94,96,113,89,112,99,113,102,109,107,100,110,108,104,106,87,116,116,101,113,112,97,108,100,91,111,94,113,105,105,95,96,103,110,100,100,107,113,104,105,95,87,98,92,109,102,108,98,99,107,99,98,103,102,97,98,102,101,108,102,108,90,105,102,107,96,118,101,113,105,110,112,105,114,98,99,100,111,115,105,109,99,107,108,100,96,111,105,108,98,106,105,96,101,113,106,100,102,106,129,87,106,101,105,105,109,104,120,97,99,94,101,110,94,96,105,100,103,102,119,100,107,95,95,104,112,109,101,100,102,100,114,96,101,98,103,113,70,103,95,99,105,100,109,107,113,94,111,117,93,102,117,116,99,98,94,108,109,110,101,108,113,103,102,104,119,94,102,102,101,101,123,110,105,109,90,102,94,98,112,83,116,101,113,91,116,113,101,105,101,85,93,102,91,107,97,108,113,101,97,99,107,76,93,101,91,118,90,93,104,95,97,77,102,107,96,96,106,101, +466.30194,102,98,102,93,97,113,116,96,96,111,96,113,113,98,108,103,107,103,114,113,109,95,91,70,97,93,121,100,134,103,102,97,92,107,104,100,106,95,102,103,108,100,88,99,106,98,105,117,102,100,109,112,98,97,94,96,102,100,104,95,95,82,87,88,102,96,109,106,108,110,81,99,101,103,100,119,110,95,115,110,103,110,106,113,91,101,76,105,98,101,82,97,108,107,107,100,105,86,122,106,86,110,105,96,83,102,91,106,106,111,102,114,95,95,93,100,96,96,127,97,101,107,109,105,100,98,118,92,99,117,110,104,102,103,105,113,107,110,105,103,97,94,91,95,104,102,101,116,108,100,110,100,117,91,99,105,113,104,98,120,102,103,106,107,107,95,91,96,105,106,107,104,102,101,99,103,96,108,108,79,101,108,103,94,105,117,100,92,106,100,90,129,94,94,100,99,99,109,110,102,101,103,106,95,93,98,98,104,105,117,94,103,108,106,105,106,95,109,99,108,111,107,96,105,111,112,110,104,102,110,105,113,94,103,107,109,97,92,118,104,107,99,111,92,78,101,102,103,106,108,98,110,106,103,97,93,86,99,99,98,93,98,106,116,101,110,101,101,110,106,108,107,98,106,113,111,103,105,99,103,100,98,100,102,105,104,102,109,109,97,106,112,103,97,117,97,104,106,103,109,103,97,97,105,95,85,111,103,96,100,90,103,92,100,114,106,99,118,105,108,99,111,116,105,109,79,93,95,110,105,113,91,98,104,109,95,96,109,114,100,105,86,93,102,98,105,108,102,101,101,106,106,98,100,101,99,116,107,104,108,103,103,107,98,98,95,109,108,100,116,108,114,119,107,108,97,110,108,91,95,99,106,102,107,104,95,101,100,103,102,107,106,98,109,116,101,103,96,108,97,97,105,98,104,106,107,115,108,109,108,100,101,96,106,113,92,113,86,110,101,105,102,100,109,97,90,110,99,104,97,103,96,106,106,91,111,97,102,110,105,110,101,99,104,102,101,97,115,102,116,98,110,89,102,109,102,95,105,105,110,98,104,103,101,114,107,95,94,103,107,87,97,99,102,101,80,102,108,104,117,111,108,103,99,101,105,118,101,94,108,102,111,98,104,90,96,103,105,108,89,112,101,112,107,102,107,95,102,99,98,105,105,100,96,100,96,111,98,91,105,100,99,96,100,83,98,106,103,99,106,99,108,101,95,102,104,101,114,113,121,96,113,68,102,100,110,114,117,104,114,97,116,102,87,99,108,98,104,105,92,105,113,96,94,97,104,94,95,109,103,100,105,100,119,95,104,98,100,121,97,102,104,97,106,108,111,102,112,101,97,76,112,96,104,137,103,104,106,104,99,104,98,127,103,103,98,104,104,115,98,80,105,104,117,98,100,109,101,101,94,111,96,98,94,113,95,98,110,106,96,114,105,98,88,97,110,114,100,105,105,113,107,105,105,87,103,104,105,107,113,108,99,99,115,109,76,99,107,101,98,108,101,108,94,96,99,108,100,115,129,106,101,109,110,109,101,103,95,105,95,108,102,116,100,90,91,99,102,104,106,114,92,100,107,107,108,95,113,108,97,91,89,94,116,103,107,107,108,102,94,101,121,120,105,103,101,94,103,102,103,104,99,103,108,104,104,122,102,114,86,109,118,97,93,92,101,99,92,100,102,107,104,105,100,100,98,112,112,100,109,104,101,90,96,99,108,103,111,112,104,114,101,99,103,104,105,105,98,109,92,108,95,113,107,102,99,93,113,98,98,106,104,102,103,99,107,96,105,106,109,95,117,117,115,91,102,100,103,104,116,105,99,112,108,107,95,111,109,90,104,109,107,105,110,104,123,104,104,104,106,108,102,113,99,104,108,101,111,104,87,108,110,109,99,102,97,115,114,101,100,113,108,101,108,94,98,96,95,98,92,106,106,106,88,120,107,100,118,111,106,107,99,104,108,110,113,96,102,116,102,105,111,108,110,109,91,106,105,117,104,106,100,110,96,99,105,99,95,100,109,118,100,105,97,94,107,94,104,103,101,102,104,106,106,99,113,102,99,100,101,103,84,100,103,103,77,83,107,109,94,100,106,106,108,121,94,111,108,112,116,115,109,104,93,103,96,99,100,108,100,100,112,99,103,101,103,105,104,104,111,109,113,107,110,102,102,103,101,106,102,113,117,100,107,102,105,99,104,100,106,101,109,111,101,95,103,100,91,98,116,101,106,95,91,107,101,106,97,93,101,108,110,113,109,98,95,104,108,93,110,102,112,98,103,103,108,98,105,102,99,93,110,100,100,98,95,103,101,107,126,113,109,98,100,104,116,109,95,104,107,99,104,104,95,96,115,94,103,106,101,98,90,102,107,104,110,102,95,106,91,103,106,102,106,107,116,107,97,109,106,99,102,104,106,105,104,104,98,112,102,95,104,112,100,101,102,98,108,100,105,113,106,103,112,116,103,115,97,110,103,104,73,109,103,100,100,104,102,105,108,104,102,96,99,94,107,104,102,101,98,107,126,102,105,99,109,123,109,103,108,103,100,101,108,103,100,105,109,117,105,109,95,99,109,96,101,104,97,101,99,124,105,96,110,113,98,113,92,102,111,103,107,109,99,101,98,110,98,90,107,98,103,110,106,107,107,110,94,110,102,93,91,106,116,94,94,95,95,107,102,114,99,97,112,88,98,110,92,112,110,113,109,108,114,117,103,113,116,100,105,98,108,105,101,105,107,101,106,114,104,108,106,92,112,121,99,96,73,104,106,120,105,93,103,118,109,105,113,108,112,102,113,109,108,106,103,102,102,110,77,100,87,106,113,104,110,101,120,102,107,110,120,107,104,101,108,110,98,98,102,111,99,104,108,110,97,103,110,102,114,86,96,106,110,105,101,107,103,104,108,91,102,80,99,92,89,115,106,106,114,102,105,102,113,114,110,113,109,109,100,117,100,106,110,123,115,111,108,110,109,109,105,102,101,117,111,109,126,99,91,98,100,105,95,110,119,114,103,99,103,97,92,106,116,99,102,91,113,96,101,101,117,106,113,106,92,112,112,114,101,103,104,92,109,100,127,86,110,100,99,98,103,110,95,110,98,104,94,112,105,86,107,104,108,97,108,105,102,99,110,94,95,112,110,75,77,105,90,112,113,95,112,90,99,111,102,97,94,105,100,111,85,97,116,96,108,105,111,99,114,104,96,96,106,109,105,101,95,92,112,99,102,110,116,97,112,98,96,113,112,101,118,106,103,103,113,96,98,98,107,106,111,97,102,86,106,94,95,103,91,102,100,107,107,104,108,109,112,92,102,100,101,101,99,103,103,101,100,107,98,101,112,111,102,103,97,102,105,107,109,117,94,100,107,109,108,101,102,101,90,100,124,99,112,98,114,108,108,96,104,105,100,99,117,112,109,96,100,100,106,102,95,95,73,106,106,94,93,107,100,105,105,102,94,110,94,105,99,112,97,101,107,104,94,106,113,105,98,118,110,104,110,107,115,125,103,104,104,112,105,94,106,109,107,98,100,113,112,83,117,96,102,103,102,101,112,102,106,95,114,113,100,112,105,106,101,101,110,117,101,124,108,90,111,113,107,107,97,103,107,90,113,120,103,105,96,102,107,104,94,102,109,117,103,104,106,105,105,100,109,98,104,110,98,99,97,111,107,100,105,117,117,102,103,108,108,128,105,93,107,101,96,107,101,106,98,104,109,115,108,122,97,100,103,112,109,92,108,101,98,121,107,102,90,105,91,109,107,108,106,103,109,110,98,101,100,99,102,113,109,94,101,102,108,125,112,112,92,112,100,103,107,109,93,96,101,103,115,99,100,102,116,103,102,133,98,110,108,111,109,105,106,119,95,102,107,106,116,102,113,95,93,99,113,96,97,110,109,103,99,106,111,95,109,110,97,121,91,112,92,110,98,98,106,95,110,105,106,115,104,97,101,123,99,97,103,104,95,100,103,108,109,100,118,104,100,95,96,108,125,100,101,97,106,101,102,117,96,105,119,110,101,104,109,106,93,110,91,104,104,103,112,93,105,102,107,100,102,114,102,111,111,107,103,112,112,94,100,106,106,102,100,103,110,109,97,103,107,112,101,98,109,106,106,92,107,112,97,105,103,112,108,100,106,100,60,102,107,121,113,99,108,104,68,97,101,97,116,95,107,95,113,113,119,109,102,102,117,98,109,107,108,98,99,122,109,94,97,101,96,122,96,116,100,99,100,107,113,96,101,99,103,126,113,105,103,99,71,95,102,106,102,117,92,103,104,97,89,107,103,87,93,103,106,108,99,99,122,95,96,106,104,112,100,110,125,112,106,99,114,116,99,108,99,113,110,111,117,102,104,95,108,107,114,117,107,98,133,112,105,114,104,112,88,109,103,102,98,98,100,104,93,95,106,103,101,98,98,112,105,112,103,86,101,89,94,92,98,118,102,107,109,100,111,94,100,103,116,115,101,102,94,107,101,110,118,98,118,101,110,101,110,96,105,124,117,113,98,87,95,91,92,109,96,92,122,128,99,93,97,88,105,95,110,120,98,101,98,106,105,102,94,108,93,103,103,105,105,96,117,106,95,113,106,108,88,99,102,106,103,104,107,103,102,97,105,91,111,101,98,105,97,104,97,110,98,109,95,102,107,97,105,112,117,105,95,104,111,108,108,101,99,100,107,102,98,103,95,93,109,119,102,107,98,101,112,105,125,109,106,104,101,103,117,117,98,106,94,103,92,105,104,112,108,107,98,91,134,102,100,120,115,95,109,100,93,118,104,79,97,103,102,111,97,95,96,106,95,103,113,111,86,95,91,108,99,108,98,94,106,115,73,112,86,104,119,74,116,116,98,112,107,103,106,96,91,104,87,110,84,103,99,103,108,111,97,96,109,101,105, +466.44238,108,93,116,94,102,116,102,112,109,113,101,90,99,109,109,108,121,104,115,108,96,97,105,94,105,103,110,105,103,109,109,89,112,108,104,98,98,105,107,116,110,101,94,104,98,116,105,97,108,91,99,96,98,114,98,117,113,110,91,109,96,102,99,102,98,111,100,106,109,99,113,102,101,99,110,117,104,112,111,104,103,107,111,102,103,100,104,107,107,80,113,89,96,102,98,104,95,106,91,112,91,107,102,98,101,97,109,116,97,99,104,106,129,106,107,105,101,95,110,102,123,105,103,108,122,105,108,100,103,99,107,107,104,103,101,96,103,112,92,99,122,109,108,103,97,106,114,89,110,83,102,109,103,101,98,110,110,102,109,103,103,114,104,97,93,100,108,102,108,107,107,108,100,106,110,98,102,97,99,109,99,103,111,105,93,111,97,95,88,103,98,86,107,104,100,98,102,139,105,111,99,114,120,110,104,100,102,112,122,99,100,109,110,99,109,108,99,100,87,100,105,108,94,108,104,119,118,107,111,111,101,103,112,109,95,108,106,113,103,94,114,101,116,104,100,104,88,109,110,105,97,104,107,103,100,97,113,110,103,106,92,117,121,99,100,91,101,101,94,108,106,108,105,104,116,101,99,111,100,100,94,114,96,96,112,98,106,111,98,103,100,101,116,108,109,99,103,113,101,102,111,117,101,105,98,121,109,113,114,101,99,107,102,99,111,89,118,96,113,95,97,102,102,102,112,105,110,102,106,101,104,102,112,106,99,108,117,101,99,106,114,109,118,105,106,100,107,103,110,108,108,104,101,112,121,110,106,103,113,99,104,104,90,92,98,122,99,117,103,107,98,103,115,103,108,119,105,108,108,113,105,100,104,116,93,115,106,103,95,99,105,103,107,122,102,94,102,99,103,109,100,119,110,91,106,100,108,96,123,95,97,99,103,114,105,96,106,105,105,101,113,100,100,92,108,98,106,94,108,112,112,115,108,112,99,103,107,112,102,93,108,109,122,99,92,100,106,103,104,114,107,120,113,95,105,121,103,104,104,109,113,113,95,112,103,104,100,109,107,96,95,104,105,102,100,91,109,107,106,102,111,127,110,99,105,99,112,101,109,104,104,105,102,105,100,109,117,111,96,110,113,97,100,96,101,105,107,112,110,104,99,102,119,104,109,114,109,103,116,73,101,104,108,118,106,96,111,106,98,113,96,113,108,86,112,107,116,100,121,111,99,98,112,100,101,94,104,104,115,100,121,104,108,112,117,109,104,92,108,104,93,114,98,110,100,107,113,101,95,96,105,101,105,114,106,106,99,100,106,103,106,103,111,109,99,108,110,109,100,103,107,109,89,109,110,105,105,99,107,102,112,104,109,116,120,110,95,113,111,101,102,106,111,107,93,94,102,99,111,109,111,106,99,107,107,107,106,103,108,107,115,112,102,103,125,110,102,96,107,106,108,113,102,75,92,99,105,102,104,96,96,78,112,110,131,107,108,107,107,105,111,120,104,100,100,99,135,103,110,116,108,95,109,94,103,113,106,111,112,100,99,128,109,106,101,106,101,105,110,108,103,114,106,105,99,116,102,122,105,105,108,98,105,125,100,110,110,128,100,100,109,96,103,104,115,100,113,98,103,108,108,105,112,107,99,104,110,105,105,108,103,99,115,115,104,109,93,113,105,99,106,108,105,103,115,113,104,104,100,110,129,103,113,111,113,101,107,108,109,105,105,104,102,115,98,98,101,116,112,91,108,112,107,108,95,117,105,99,103,108,114,102,101,101,106,116,116,99,103,112,124,110,107,112,107,110,99,92,107,108,102,107,106,99,108,107,97,100,103,101,109,111,129,115,109,115,111,101,113,108,103,106,108,102,102,99,122,114,106,102,100,105,107,108,103,103,114,108,117,97,100,103,110,113,114,108,103,106,98,110,101,99,103,120,96,103,109,103,98,107,100,108,93,102,96,80,108,114,102,113,101,114,102,108,97,95,113,94,101,99,126,109,104,101,106,98,96,111,99,96,104,109,110,99,104,95,98,101,103,97,113,101,104,94,102,117,96,104,107,106,108,105,114,102,109,100,103,117,110,96,110,93,114,98,100,108,97,92,115,91,94,105,106,112,102,91,110,109,106,101,106,99,99,100,100,100,105,101,94,110,101,108,107,106,106,116,104,91,89,102,102,99,97,110,111,104,87,99,105,109,107,111,95,97,95,111,104,95,106,98,96,99,103,86,99,112,95,103,102,104,113,91,98,103,109,93,103,112,101,100,104,102,92,110,109,103,111,105,96,116,81,121,100,105,116,114,110,90,102,108,119,124,110,110,134,107,102,104,92,103,100,105,109,89,107,104,99,103,95,78,104,92,112,102,114,99,106,110,97,104,125,94,113,110,100,106,103,103,106,105,99,109,103,107,110,109,102,97,114,99,101,118,106,113,120,108,110,108,107,114,106,108,97,115,111,107,98,93,116,96,106,110,106,114,114,103,104,108,98,96,115,98,111,103,101,106,96,123,118,106,94,109,95,116,110,102,122,94,99,98,113,109,104,109,103,105,98,95,108,100,102,106,123,89,100,113,100,106,98,116,95,92,98,114,97,101,105,104,109,98,108,106,108,96,96,113,107,108,102,102,115,94,98,94,85,95,100,95,113,99,109,106,105,103,112,117,103,113,98,115,103,98,107,90,112,113,110,104,103,104,108,111,110,105,87,112,93,107,98,121,101,105,110,104,95,107,106,110,103,104,109,112,101,108,121,106,103,110,112,101,101,111,104,95,103,108,104,104,106,107,103,97,97,109,93,106,108,96,96,103,108,92,95,102,101,113,115,103,101,100,105,110,106,122,114,112,99,107,106,100,109,103,107,117,110,107,113,109,106,98,123,104,107,110,106,97,113,106,101,104,99,115,110,107,105,110,114,110,118,99,99,106,91,102,110,112,95,90,109,102,101,108,107,98,83,108,121,115,103,102,98,108,102,102,104,104,95,109,113,103,105,117,102,99,102,96,110,109,102,102,119,95,106,99,90,113,102,94,103,108,98,98,99,102,101,103,111,111,101,99,102,101,97,95,119,103,98,96,121,95,104,107,109,104,102,107,112,96,110,101,92,104,105,110,106,97,98,109,108,103,101,108,86,110,99,87,103,99,102,91,98,108,97,113,111,103,106,100,107,89,102,100,104,106,98,104,105,105,96,97,100,107,97,93,114,97,104,110,95,107,99,103,93,88,106,105,91,105,113,100,99,106,114,114,106,106,97,116,91,103,112,112,108,122,100,104,96,120,111,106,99,95,103,124,105,106,89,110,108,93,105,105,112,95,105,122,98,106,113,99,92,100,88,96,98,113,107,113,96,110,118,105,103,96,110,106,108,108,98,103,98,96,105,108,102,102,97,104,113,101,100,110,109,104,92,109,106,103,106,110,111,105,89,102,101,98,101,108,104,112,98,100,97,87,96,102,96,113,95,81,105,109,111,102,101,105,106,103,107,96,96,98,97,100,108,112,107,100,109,112,111,101,119,111,105,113,112,102,110,106,100,79,100,109,105,112,107,99,111,114,100,102,106,105,105,112,103,100,104,96,97,106,79,112,91,100,93,100,103,111,92,84,105,95,111,103,115,111,111,111,103,105,104,96,134,88,104,103,114,104,109,103,101,103,105,108,96,95,107,98,104,107,106,99,102,99,106,98,107,79,105,90,103,111,103,101,100,105,101,94,107,98,103,111,105,106,107,105,95,109,102,93,100,99,98,103,98,102,107,116,105,91,94,93,92,103,109,102,105,103,106,105,91,89,107,100,117,103,104,102,106,79,101,106,98,108,91,98,102,108,101,105,99,94,108,102,103,95,100,107,109,97,103,95,106,116,99,92,105,98,102,109,104,91,106,101,100,99,102,110,99,104,88,102,117,94,108,109,125,104,121,111,104,112,94,111,105,110,98,100,96,83,102,115,107,103,95,102,112,102,103,115,106,101,103,108,103,98,101,99,120,108,102,119,109,107,105,106,107,98,110,115,102,99,114,110,120,87,99,108,116,98,96,88,106,105,97,101,120,99,109,97,100,100,86,107,87,110,89,97,105,93,100,111,109,100,109,106,101,97,101,93,99,104,90,106,100,109,96,100,102,103,109,107,75,96,104,104,108,103,99,102,102,89,105,94,95,106,102,95,104,114,105,104,98,107,101,118,98,109,114,105,109,121,102,105,108,101,116,93,111,111,91,113,102,106,96,113,102,95,101,103,121,120,94,106,93,109,107,105,108,107,108,109,112,103,97,94,99,112,96,117,103,106,103,101,112,108,104,101,118,98,109,102,77,117,103,105,101,105,104,101,108,116,103,99,105,102,100,115,109,101,104,105,100,95,104,86,91,110,116,103,113,125,107,104,116,114,88,110,106,101,98,100,107,107,96,121,95,108,90,110,103,98,103,106,100,95,100,108,100,114,103,102,109,103,108,97,97,100,97,103,102,105,98,113,93,105,104,102,101,99,111,106,105,105,101,95,101,112,93,95,97,113,99,120,106,109,96,109,136,99,97,96,90,100,117,96,96,100,92,106,127,100,104,101,108,106,113,108,113,93,100,113,119,106,125,108,97,99,106,109,113,105,115,100,110,106,97,110,117,80,98,101,111,111,113,114,101,110,105,117,100,89,109,90,104,95,109,98,102,98,108,100,85,87,111,108,102,94,121,118,104,109,107,94,116,93,103,105,108,101,100,98,117,105,97,101,108,110,103,106,94,107,96,91,91,111,92,98,100,98,101,101,87,90,102,87,95,102,103,107,87,87,100,101,106,109,105,93,113,92,100,101,109,99,107,106,111,104,101,110,99,94,102,93,92,111,104,101,103,100,93,91,110,88,98,107,101,103,106,107,107,109,106,116,98,102,110,95, +466.58286,92,104,102,120,89,107,112,96,112,91,95,80,80,88,107,103,102,113,102,96,87,117,103,104,106,98,92,112,102,102,99,106,108,104,102,92,100,102,84,106,92,102,102,97,110,113,104,117,97,112,107,103,111,100,107,101,94,96,99,120,105,107,98,74,102,112,98,122,104,87,108,92,102,115,91,104,106,102,105,100,101,96,111,110,98,97,106,105,101,89,96,99,106,113,103,92,100,95,102,99,100,111,96,105,105,91,100,97,92,99,96,110,102,102,105,100,98,101,101,111,100,91,79,99,106,117,95,92,101,103,103,105,97,96,112,98,98,99,106,120,103,94,101,103,89,97,96,108,109,95,102,97,106,95,101,91,108,90,117,98,98,101,105,79,118,97,109,86,96,99,103,99,105,120,94,101,101,97,105,104,99,113,87,97,100,92,88,97,103,97,106,104,93,102,99,107,112,109,96,98,94,86,104,107,103,118,106,96,110,96,106,91,108,99,101,100,104,121,98,104,107,105,92,103,94,102,80,108,106,93,99,98,94,102,103,98,103,102,114,108,102,114,108,110,109,95,112,115,104,97,101,109,105,94,110,97,100,102,97,114,92,104,99,98,102,99,95,113,94,104,103,96,77,102,102,85,105,103,101,100,92,108,117,107,114,101,84,106,102,98,110,82,94,102,93,104,99,117,104,102,102,100,109,111,87,118,105,108,101,85,103,104,94,96,100,106,96,105,103,101,108,102,92,102,92,104,103,98,104,110,104,96,112,96,104,79,105,105,107,119,107,110,111,104,107,99,127,104,94,102,103,116,107,101,106,99,102,112,101,113,118,106,105,97,102,117,105,116,109,106,114,111,109,107,99,92,110,91,96,102,94,103,96,98,113,110,92,109,101,106,103,94,95,112,82,113,102,112,106,112,106,96,91,108,107,94,98,95,97,107,97,86,97,106,102,99,105,95,102,104,95,97,97,100,98,97,83,100,104,99,91,92,108,108,101,105,91,102,98,101,108,99,100,100,99,106,103,98,109,114,93,102,95,107,109,98,105,94,102,100,95,95,108,118,115,112,114,109,97,89,75,107,109,99,98,103,71,116,102,106,96,108,109,109,106,112,99,106,114,98,106,112,96,105,97,107,101,105,105,98,105,93,115,98,95,98,101,100,96,101,120,106,101,104,102,102,96,108,96,104,94,114,100,104,118,102,100,102,107,103,97,113,114,90,105,105,107,106,95,102,103,103,104,108,103,99,95,93,99,85,103,99,85,99,96,109,105,96,101,108,114,95,100,117,99,99,99,104,93,91,92,95,102,94,98,100,123,82,95,98,108,104,103,84,104,91,115,98,102,112,111,100,103,97,109,103,95,105,95,108,97,118,103,96,92,91,83,100,98,105,100,95,113,101,92,104,98,118,102,112,97,106,99,103,96,96,97,107,95,100,106,117,114,103,92,102,102,100,93,103,101,109,101,108,101,95,105,92,98,103,97,97,103,105,108,95,114,103,105,98,86,106,95,110,84,90,98,105,101,96,109,97,81,114,98,105,100,101,101,91,100,101,106,102,101,98,98,103,95,91,97,95,85,109,103,107,96,103,100,95,87,98,82,101,104,101,103,94,100,95,110,98,95,98,98,90,98,98,83,99,90,111,107,110,101,101,98,107,95,113,110,109,102,100,94,106,103,101,126,105,94,96,91,105,112,97,109,97,93,111,106,98,104,90,100,105,96,105,109,100,98,108,103,93,98,103,102,103,94,103,112,100,107,100,108,109,108,100,94,101,106,102,120,104,94,104,90,81,95,123,103,110,109,104,103,110,105,107,100,100,109,94,105,106,117,103,98,99,99,100,107,92,112,91,116,114,97,118,111,101,105,117,110,108,102,95,112,109,105,113,100,100,97,108,104,110,98,101,103,102,98,111,112,99,112,91,105,87,102,95,105,102,99,102,104,105,103,111,94,98,120,98,95,110,102,90,105,96,105,104,104,105,105,103,107,100,109,94,102,107,93,106,95,99,117,107,100,110,101,104,105,111,117,118,110,94,102,109,110,98,110,95,109,106,105,98,95,98,100,99,109,105,111,102,129,104,100,96,106,95,105,105,91,113,104,97,96,102,109,109,113,112,101,127,92,92,113,95,99,104,99,116,96,115,82,87,106,100,97,119,110,99,108,95,110,113,102,99,106,106,116,109,100,96,97,102,106,92,101,106,102,104,106,98,104,103,100,98,100,95,99,95,102,100,101,98,99,110,102,126,106,97,111,120,98,102,100,97,100,104,107,122,102,97,104,114,107,114,96,109,86,114,113,95,107,104,100,101,108,95,108,99,101,95,87,96,100,97,102,103,78,105,100,101,102,101,102,117,98,104,96,115,98,105,97,121,108,99,114,105,100,96,101,105,115,96,104,89,120,104,91,103,104,100,95,110,103,96,104,99,103,109,111,125,103,96,103,84,101,104,103,97,103,107,102,102,97,106,112,102,111,116,100,96,106,102,103,112,107,110,106,91,128,113,99,95,101,98,98,107,104,105,111,111,105,96,98,111,105,111,116,107,109,111,119,87,112,112,118,104,96,113,102,108,105,101,107,109,100,101,97,112,108,108,123,108,111,103,107,102,99,105,91,109,101,108,103,94,104,107,113,106,98,113,107,107,104,93,92,106,104,96,122,113,107,113,108,113,114,108,93,101,101,105,96,109,109,100,99,105,93,92,109,103,103,107,94,94,110,113,102,103,113,106,106,109,118,103,99,111,98,102,101,112,102,105,104,110,114,126,94,102,101,109,105,112,104,109,103,106,118,120,87,102,100,101,98,114,101,115,104,108,108,117,101,101,100,97,98,104,97,99,94,97,94,115,130,106,105,108,110,101,105,98,108,91,109,110,104,105,100,105,94,107,98,95,108,106,97,104,101,103,120,103,110,103,99,113,116,104,101,119,105,98,110,109,97,92,105,98,100,107,102,102,109,89,101,113,103,115,117,101,109,88,107,119,105,101,113,118,99,106,94,110,94,98,114,100,103,97,109,101,106,103,117,99,107,104,95,105,76,98,105,105,102,119,109,103,93,105,102,99,101,109,103,114,77,112,91,110,102,97,99,98,98,109,109,105,101,100,102,92,97,99,109,92,98,103,96,102,99,92,93,104,104,107,112,105,112,103,118,102,95,120,101,115,98,104,112,113,105,94,100,102,88,103,109,91,112,101,109,110,104,96,113,99,125,91,98,119,111,93,97,99,101,108,105,97,97,107,104,105,99,111,108,101,104,113,97,100,112,92,101,107,104,101,96,113,103,103,109,93,99,110,97,103,112,109,99,97,108,101,105,98,82,116,92,92,102,82,98,99,79,100,99,113,101,103,107,101,91,109,106,109,108,92,118,104,112,105,108,101,91,106,104,99,102,112,108,93,105,105,110,104,98,104,113,102,107,100,108,95,103,73,111,108,101,109,103,101,99,97,103,97,84,110,116,102,101,99,109,92,102,98,101,107,96,99,113,105,107,99,104,110,114,106,110,110,95,95,116,103,95,87,110,83,104,104,100,85,106,100,105,105,106,104,99,114,102,107,116,99,115,118,123,98,100,106,108,132,102,91,96,107,91,108,102,98,112,99,97,96,114,101,118,96,106,103,98,120,105,106,113,104,108,99,103,92,110,99,107,98,106,98,104,92,109,108,113,99,103,108,105,91,100,91,104,102,104,101,96,110,106,109,121,105,100,105,106,101,107,108,109,76,103,104,99,113,96,100,112,97,105,105,113,96,97,102,112,94,113,79,110,102,105,93,108,100,111,98,108,112,100,116,98,109,109,101,102,101,121,95,109,105,113,106,106,99,106,113,79,108,112,90,103,107,113,105,113,102,95,88,102,100,109,98,100,103,106,98,94,112,84,100,80,95,110,99,105,108,96,109,120,99,108,94,129,87,106,102,77,92,109,93,105,102,104,87,101,112,100,104,108,108,110,107,106,109,108,85,121,107,100,111,97,102,120,93,107,110,96,94,106,103,111,101,96,113,100,95,97,116,93,95,99,122,105,100,98,101,111,104,97,109,115,105,101,108,105,108,106,98,101,98,92,95,97,120,91,94,112,101,102,107,120,107,101,115,106,132,111,90,99,111,108,97,116,95,105,100,98,108,98,107,99,105,99,116,110,99,101,98,92,99,87,107,98,104,93,99,108,105,105,104,117,101,96,105,103,108,110,112,98,102,101,101,119,100,109,100,110,109,76,92,101,100,113,111,105,100,84,95,107,108,103,100,104,96,109,105,109,105,107,92,99,108,95,105,112,102,117,100,87,96,97,86,104,96,112,112,106,111,112,99,94,94,100,107,89,99,106,84,90,115,103,100,90,95,99,107,104,107,96,102,101,113,104,111,100,117,108,106,113,105,88,94,111,108,103,98,107,92,95,100,114,116,101,100,97,103,106,93,99,95,92,103,107,104,99,102,108,100,106,98,103,98,106,95,108,108,96,94,94,109,106,100,107,94,80,95,95,104,96,99,95,103,108,114,102,92,103,110,100,102,101,94,110,94,97,107,95,122,101,102,100,104,101,102,92,104,98,101,108,105,104,103,104,96,96,116,105,87,89,91,109,117,96,97,109,103,94,101,91,105,102,97,105,104,89,98,112,117,96,95,101,104,115,103,111,100,98,95,93,102,103,111,99,95,95,110,99,104,101,107,103,109,104,118,100,96,107,108,112,109,105,103,101,104,100,108,124,104,90,109,103,106,114,97,103,109,104,99,98,108,117,100,95,102,100,109,116,100,103,100,99,98,109,104,102,101,115,89,107,94,96,97,98,120,98,106,96,108,101,92,116,85,91,111,97,95,94,104,97,104,79,111,104,103,101,96,107,106,104,97,98,93,98,121,105,103,104,99,107,103,99,101,100,99,91,104, +466.72333,114,97,89,99,91,106,101,95,98,118,105,113,117,113,106,100,98,95,114,112,102,109,97,77,93,98,111,103,100,114,107,107,98,109,113,99,89,101,98,102,113,97,105,107,98,107,110,104,91,116,108,114,98,104,95,78,94,106,107,96,91,114,107,100,100,101,88,109,99,97,100,106,101,98,105,119,109,110,101,98,111,101,103,100,89,101,103,113,63,94,104,90,110,92,101,116,96,106,97,97,96,108,102,118,102,105,102,106,92,113,98,99,101,89,104,77,107,112,104,93,101,103,106,117,101,104,92,97,105,100,96,98,77,102,97,104,102,73,90,102,97,109,102,91,94,98,104,95,90,92,95,98,95,99,103,101,100,106,104,95,90,97,107,105,108,103,96,103,102,103,101,101,98,101,101,97,105,108,100,101,90,103,103,90,95,102,93,96,106,97,107,104,100,100,108,104,98,104,106,95,98,94,108,122,101,95,101,98,117,111,96,101,100,104,127,97,102,109,114,110,115,118,109,101,105,102,90,91,108,113,92,100,104,106,114,103,104,112,95,107,106,95,106,111,116,98,101,89,133,106,103,99,101,102,100,101,99,101,104,108,104,96,110,91,103,109,104,84,106,98,100,102,103,117,91,101,109,96,88,93,97,104,95,98,103,98,100,100,87,109,108,119,69,107,109,107,104,103,102,109,99,106,100,101,91,115,108,112,106,108,89,109,112,93,106,103,117,113,105,117,113,105,98,94,100,100,103,88,106,104,108,105,107,95,107,109,113,97,102,105,101,116,111,95,96,99,113,109,111,102,108,91,103,103,108,95,104,103,102,116,96,103,106,97,100,99,103,100,108,106,108,96,106,119,105,93,110,104,97,118,103,107,89,105,91,100,91,100,103,101,120,103,103,102,102,103,108,105,114,109,96,78,101,101,97,104,99,104,97,112,107,92,95,104,117,108,76,94,103,103,101,115,92,105,97,104,105,92,97,104,106,112,96,99,94,103,96,111,101,113,110,101,96,117,98,97,102,99,112,104,88,95,105,110,95,103,92,103,105,104,106,94,104,104,117,108,107,97,108,113,103,98,91,99,112,103,100,91,100,106,101,100,116,102,110,110,121,114,91,106,106,114,104,98,94,95,105,93,105,91,101,105,96,103,101,104,104,102,99,91,114,118,90,100,106,109,111,102,112,100,103,106,103,107,110,110,108,111,101,108,102,91,114,95,117,101,97,99,113,116,99,105,116,107,103,99,105,102,117,109,117,107,98,114,104,104,94,95,80,101,100,111,102,105,103,105,112,98,113,105,109,134,100,104,110,98,112,106,104,117,100,98,103,97,103,73,110,99,106,98,122,106,97,104,115,106,101,104,95,103,95,106,101,105,90,100,98,99,84,103,109,109,108,98,113,102,98,86,122,117,112,122,108,103,114,96,92,110,105,100,130,113,93,102,101,106,102,106,113,101,115,105,111,105,104,101,86,101,102,104,100,92,107,121,97,66,95,101,111,106,104,108,96,106,95,104,109,98,108,104,98,103,102,114,100,95,108,102,105,106,108,144,111,96,100,84,112,106,100,103,101,85,105,110,110,105,93,100,109,94,121,101,99,115,109,102,117,98,97,100,114,109,107,104,114,99,94,104,95,102,105,91,100,110,110,106,105,94,106,107,106,107,98,109,75,101,106,96,103,96,107,100,103,101,106,103,103,106,86,84,105,104,106,99,96,96,107,125,107,94,110,104,100,104,91,101,98,100,103,97,112,107,103,83,94,107,107,94,104,96,103,94,105,123,97,88,105,115,99,110,96,97,104,100,87,103,109,113,102,79,108,91,96,103,116,103,105,100,99,93,114,106,85,114,104,111,107,106,102,102,106,105,105,105,96,104,87,99,106,99,100,110,112,115,102,105,110,105,113,76,98,103,103,106,109,109,93,97,96,97,112,115,87,102,105,95,104,93,104,93,104,104,113,97,108,114,80,103,111,105,99,102,87,99,113,99,102,104,111,109,97,95,107,111,98,109,101,118,70,99,112,103,103,122,103,90,91,90,108,109,104,110,102,95,105,105,116,103,92,109,113,113,111,102,105,101,96,105,106,103,100,108,92,111,106,104,98,100,103,102,91,105,103,105,93,105,112,92,99,105,103,101,96,98,79,96,106,103,115,89,107,103,104,109,110,95,103,117,96,105,112,110,104,102,98,99,104,104,103,108,100,94,116,97,106,100,111,84,104,119,105,101,94,108,104,99,97,98,106,110,108,100,114,103,104,94,99,96,100,104,88,99,93,106,101,92,110,122,105,106,98,103,103,109,79,99,110,117,94,95,98,101,106,97,111,95,86,103,108,119,104,97,107,92,98,100,94,102,100,108,96,92,107,94,93,107,107,103,114,94,108,116,102,95,107,121,133,115,111,95,109,103,111,93,98,111,91,121,98,100,88,114,87,96,110,97,112,98,103,79,117,102,113,105,108,87,101,96,99,100,102,112,107,100,112,105,100,106,102,98,98,102,98,102,103,99,102,110,113,102,105,104,102,104,114,102,98,109,94,106,121,117,140,104,110,101,110,102,115,108,109,107,117,109,106,116,103,114,94,100,108,103,103,116,108,110,102,109,101,107,103,102,103,98,104,111,106,100,112,119,104,99,96,87,109,102,101,97,112,114,99,94,101,95,107,100,96,109,100,111,95,104,110,104,111,117,106,75,98,104,106,99,116,109,103,81,102,83,109,98,103,106,104,94,98,114,92,100,101,111,98,100,101,102,111,97,106,104,96,91,106,100,93,95,113,112,99,95,106,109,104,114,105,134,107,95,102,112,99,116,95,106,106,94,106,99,104,111,108,113,109,115,105,104,96,97,121,101,93,102,110,108,95,127,110,96,104,100,95,91,106,112,94,103,104,103,119,98,106,103,97,97,110,95,109,100,111,111,105,117,99,88,112,104,109,73,111,94,77,94,87,104,106,99,101,91,104,110,98,113,103,109,94,107,104,101,97,102,105,103,106,106,72,102,119,91,111,105,94,108,110,103,100,103,112,106,115,109,98,112,98,97,99,108,106,106,110,98,109,112,94,104,101,133,93,109,95,102,116,113,105,108,115,106,107,90,105,102,108,101,101,102,102,101,115,117,104,99,104,101,107,93,105,103,99,101,105,103,96,111,106,117,103,108,107,102,95,100,113,101,113,104,91,106,105,109,105,101,94,101,133,117,106,102,98,107,101,106,97,107,97,95,98,97,108,99,102,106,120,103,104,97,103,96,104,99,106,118,94,124,107,105,102,92,100,112,103,94,104,107,113,98,105,106,108,103,106,102,106,106,100,104,104,94,102,107,97,102,99,107,95,106,108,106,113,105,108,98,97,102,121,105,108,97,96,109,98,98,109,106,103,91,102,106,114,106,113,102,99,116,107,109,110,91,100,99,83,96,98,101,101,105,116,103,116,109,102,105,95,95,100,89,98,114,105,100,108,106,100,97,101,101,104,114,109,110,113,94,99,104,88,98,105,111,105,115,102,98,101,105,112,108,115,118,113,114,88,108,101,97,106,105,105,95,92,110,105,103,106,115,104,92,95,109,103,110,111,104,109,98,112,116,89,107,106,99,108,97,110,132,93,99,106,100,105,103,98,94,110,102,95,113,105,95,102,98,113,106,104,113,124,99,102,116,102,95,97,106,101,97,96,116,100,96,99,102,107,111,109,108,95,93,99,108,106,106,104,116,113,98,106,87,104,95,99,99,100,122,103,104,106,104,102,105,108,102,101,96,111,113,110,98,95,104,69,110,113,70,120,104,91,112,93,105,102,108,104,104,99,94,110,111,117,94,111,98,106,93,106,106,94,101,96,84,105,104,91,107,103,102,98,99,108,93,96,109,102,104,106,94,100,128,99,88,121,106,107,109,96,106,109,95,106,98,94,108,121,102,112,109,97,98,108,115,101,106,111,104,112,109,101,96,108,95,92,111,112,100,90,112,110,115,99,110,108,99,97,101,103,116,105,94,102,101,106,89,94,103,117,105,112,101,100,103,92,104,102,90,90,101,112,105,101,99,107,116,100,103,120,103,107,114,110,104,97,107,91,98,106,105,97,104,104,103,106,111,93,114,104,114,106,98,106,102,97,105,97,109,108,110,99,101,82,101,103,106,92,98,81,96,95,96,112,98,94,96,101,108,97,92,103,100,104,102,115,99,103,98,117,110,116,110,102,99,110,94,104,98,102,106,108,108,111,103,110,102,109,116,99,101,96,102,105,105,96,79,91,109,112,114,114,97,111,116,111,101,115,95,100,116,101,79,110,99,89,110,99,112,98,102,105,105,102,100,108,104,107,112,103,97,117,103,105,91,87,116,105,88,105,100,96,110,108,108,95,109,69,91,109,79,108,116,106,113,110,114,101,114,101,99,84,105,99,100,94,99,99,99,102,97,106,109,113,110,101,98,109,98,105,103,105,100,90,99,107,103,104,101,101,113,110,92,103,109,92,100,106,96,104,101,100,103,97,111,116,94,112,102,101,118,101,110,104,84,104,111,109,98,113,103,106,105,96,105,98,98,117,110,94,132,103,112,106,90,99,108,103,112,98,98,113,98,103,110,112,99,94,99,102,94,103,102,91,108,113,100,106,112,113,94,100,89,80,102,103,88,110,116,96,107,97,112,103,99,90,104,96,105,96,107,105,95,106,111,102,93,104,103,98,101,102,91,104,125,108,105,90,96,96,109,99,92,98,94,103,99,113,101,91,91,99,101,117,107,95,101,92,105,85,100,106,112,96,98,104,110,108,98,107,108,109,96,98,88,86,105,101,108,95,110,104,105,96,95,108,100,100,106,106,95,117,96,102,103,94,106,101,105,93,79,105,91,111,97,105,96,99,101,91,113,98,101,99,99,92,94,94,101,105,97, +466.8638,105,100,106,98,99,99,98,91,99,107,96,94,98,95,103,99,78,107,102,95,104,80,96,98,99,94,102,105,101,102,113,109,95,98,99,98,101,87,109,98,94,95,109,91,107,99,102,112,119,97,100,83,96,95,100,88,98,87,107,105,103,107,77,102,98,118,94,103,110,97,109,103,105,109,96,106,109,95,120,105,107,106,109,106,99,112,105,107,99,101,97,108,89,104,101,115,109,96,105,96,97,109,109,96,123,107,121,97,87,96,109,105,95,95,105,106,109,107,112,105,102,104,103,105,105,105,103,102,116,106,108,96,103,101,109,106,98,105,101,107,104,97,108,93,92,105,115,102,101,107,91,113,107,96,92,93,97,114,100,99,110,100,100,108,106,107,97,91,129,97,95,105,97,90,95,95,104,108,113,110,88,120,105,109,110,101,117,100,108,95,102,103,104,94,107,115,117,104,107,99,110,106,103,108,84,113,87,99,99,102,106,101,93,95,95,106,97,112,98,117,108,103,102,97,103,114,89,97,102,93,111,106,106,106,112,99,100,106,101,102,106,113,103,106,101,116,102,104,102,97,101,100,103,110,102,107,106,121,104,98,107,105,108,103,105,108,95,104,114,119,103,109,103,103,95,96,116,111,100,110,90,107,95,99,99,101,99,94,107,103,94,106,102,105,99,98,107,107,97,99,107,103,109,109,97,101,117,107,88,117,92,137,102,106,95,101,106,107,92,108,106,102,103,94,99,109,100,98,113,94,117,110,107,102,114,105,116,91,107,97,104,102,93,102,100,112,100,106,107,98,100,102,96,104,106,109,102,102,101,96,97,105,109,95,110,109,105,97,104,110,114,104,113,101,101,99,106,99,110,106,123,84,98,105,91,94,98,101,104,101,107,109,97,105,98,96,106,98,105,102,102,103,96,98,107,94,78,99,96,119,87,94,107,106,103,88,101,108,110,106,97,103,96,114,99,96,100,117,99,108,96,99,103,102,108,103,107,130,99,104,103,101,97,114,100,101,107,99,104,110,107,101,105,100,96,107,100,103,99,117,116,103,107,98,104,122,101,99,85,108,100,107,108,101,98,101,99,110,110,106,78,101,112,129,106,101,117,98,99,110,107,114,109,96,96,113,104,104,96,105,101,112,120,107,101,94,108,89,101,104,109,106,96,111,110,113,118,93,111,101,103,106,114,110,106,118,105,103,92,116,96,104,122,103,99,104,96,109,97,102,101,117,91,102,120,104,108,109,100,111,101,108,108,95,109,97,104,90,108,106,102,109,83,116,107,116,108,101,104,101,95,103,102,90,114,107,92,110,95,103,107,92,113,102,110,104,107,107,117,107,115,107,100,92,123,107,97,100,116,110,104,113,92,106,106,108,92,111,87,99,98,96,93,100,110,103,102,101,126,102,101,102,103,100,111,105,97,115,104,105,105,99,101,103,98,98,98,95,104,116,112,103,104,106,104,96,96,98,90,120,93,120,85,116,94,84,97,97,100,98,122,94,100,107,114,90,117,109,101,89,108,87,121,102,102,108,113,100,104,100,99,103,110,94,100,106,102,99,108,104,96,97,99,105,103,109,110,100,102,99,108,87,101,100,114,109,113,102,102,96,110,105,100,114,98,99,94,98,111,92,99,97,88,110,105,115,111,96,104,104,106,104,90,94,106,107,89,100,105,103,102,103,105,107,99,96,104,101,109,107,109,106,95,95,105,108,106,96,99,109,98,89,120,100,93,112,111,112,95,100,103,102,100,94,99,108,118,97,91,101,125,98,114,94,79,85,99,104,124,104,115,117,109,107,104,105,105,100,107,110,93,103,97,97,113,109,111,125,109,98,103,101,94,100,109,95,89,106,105,104,99,103,103,106,102,103,98,103,115,104,103,114,104,75,126,110,106,107,80,106,94,108,106,103,94,101,112,109,102,100,96,99,108,122,105,111,96,112,102,111,95,110,100,113,90,103,100,102,108,110,94,116,103,104,97,94,105,98,93,103,104,115,108,104,107,101,107,105,105,114,105,104,99,111,107,94,105,111,90,110,94,103,108,117,99,105,96,107,103,101,103,107,108,110,105,90,103,118,105,105,93,109,112,128,101,101,103,94,103,109,113,98,100,109,98,106,104,111,96,102,100,110,113,87,101,107,106,98,93,104,101,100,103,100,110,87,103,104,98,99,113,109,97,111,117,91,106,101,108,98,102,95,110,107,109,103,94,102,91,96,96,105,94,99,100,102,93,109,98,98,110,109,101,98,99,74,106,95,103,94,104,97,106,97,102,102,103,114,102,105,82,103,108,105,121,105,99,91,113,100,105,101,113,104,105,98,109,108,110,97,110,107,106,92,102,97,106,100,106,103,105,108,87,113,108,109,98,101,99,104,105,101,117,111,100,98,102,104,110,109,101,96,106,122,123,105,100,110,95,104,100,116,101,116,119,102,111,113,104,90,97,87,88,109,103,109,99,99,106,115,109,93,121,98,101,109,108,108,112,108,99,73,101,105,96,96,116,99,98,96,106,112,116,116,104,91,105,105,103,113,107,100,98,109,102,107,100,115,104,102,98,98,106,98,103,93,109,109,98,97,99,99,94,105,98,106,120,100,105,113,100,100,111,120,108,106,112,98,102,93,100,106,102,94,93,101,103,99,113,95,103,101,111,101,101,98,103,98,107,103,96,111,105,108,106,101,104,113,99,108,103,79,104,88,104,108,101,98,85,101,102,116,108,110,102,108,124,104,103,90,98,103,104,115,105,81,98,114,108,101,94,106,104,101,111,100,102,105,113,109,103,107,100,102,106,93,114,110,108,109,99,119,115,102,105,111,109,118,99,109,99,107,112,111,106,116,100,105,104,111,102,103,104,109,113,80,101,102,88,92,120,104,98,108,102,99,100,103,108,106,108,105,107,93,103,109,93,102,106,114,95,106,108,102,99,113,87,97,104,113,98,105,87,102,89,111,115,101,99,108,103,103,90,97,113,117,89,105,102,105,114,106,113,106,98,106,99,106,103,99,109,116,113,92,112,100,108,106,92,112,107,102,105,116,110,106,101,96,106,113,102,104,103,104,104,103,105,99,99,107,118,112,111,94,113,109,105,107,93,105,99,109,80,107,94,94,91,105,97,118,112,106,95,99,94,101,102,104,115,107,99,109,100,104,111,99,102,107,102,106,109,102,94,99,112,116,108,99,99,99,123,110,111,101,97,100,109,95,95,95,97,103,88,97,89,102,101,107,111,88,99,107,108,108,99,111,106,98,103,98,99,94,96,109,103,104,102,98,112,101,109,104,115,107,96,107,111,104,115,100,106,107,116,106,95,102,109,94,95,82,102,108,87,102,93,113,111,103,109,107,103,101,103,96,99,105,104,91,102,105,91,97,88,79,102,103,101,100,98,111,104,105,76,107,104,102,113,98,108,107,114,99,101,102,98,87,112,109,108,97,115,107,101,101,126,98,110,92,108,101,112,105,98,109,105,105,106,104,108,100,115,112,109,104,104,122,90,104,101,107,107,105,101,100,103,107,114,102,111,118,113,110,97,108,110,102,97,96,109,108,104,97,109,112,90,102,98,102,106,105,98,111,105,116,94,113,102,98,107,100,100,109,107,104,107,101,106,97,80,107,104,105,113,105,91,108,108,105,107,108,97,113,125,114,99,102,98,114,106,112,96,118,115,88,106,103,103,102,106,101,106,95,105,82,106,108,105,104,103,100,112,98,104,119,104,121,103,112,117,105,107,97,93,89,104,98,103,102,114,113,106,95,106,111,100,107,98,97,117,106,98,111,101,107,102,93,105,108,101,113,106,96,113,111,109,113,98,103,94,113,98,96,119,108,96,127,105,97,113,102,99,102,91,101,101,102,97,111,106,97,105,118,111,84,109,107,111,97,101,100,87,120,99,104,98,90,102,103,102,95,113,101,115,103,101,110,103,107,84,111,98,107,91,115,100,124,102,98,100,109,105,94,106,109,103,106,112,96,96,107,113,102,110,111,109,101,113,115,110,100,103,100,108,103,100,107,108,106,113,103,102,113,100,104,110,107,107,106,111,102,99,95,111,98,112,116,103,111,95,104,108,92,87,104,87,115,97,101,103,97,113,106,108,100,95,99,115,97,96,102,99,114,102,109,101,97,97,100,95,104,100,105,101,93,110,94,106,111,99,99,102,112,115,87,117,115,97,108,97,107,103,108,95,97,104,97,106,101,93,117,107,116,103,106,104,105,102,109,108,106,96,100,96,102,94,105,117,108,108,120,108,100,108,108,100,107,104,100,96,98,101,98,103,94,93,101,104,117,92,99,115,97,115,103,97,108,110,102,114,105,105,97,105,97,120,101,67,103,111,109,94,116,113,110,104,96,110,102,99,110,103,110,113,109,100,99,112,109,96,94,96,98,104,105,93,100,89,91,96,97,106,103,115,110,106,100,101,113,103,103,106,110,115,117,115,103,109,84,111,106,101,109,75,105,103,103,104,98,105,88,107,94,94,101,107,104,115,107,101,109,97,91,105,99,104,109,104,100,114,100,112,96,107,106,99,99,119,98,104,110,98,105,107,107,110,109,102,102,110,110,101,98,107,99,108,101,101,112,105,112,101,112,114,111,98,123,97,99,110,106,107,106,106,91,99,98,102,101,100,99,101,103,107,106,101,124,127,119,95,111,96,107,104,100,100,100,109,110,114,104,105,106,99,104,96,96,100,99,114,114,100,106,93,105,107,106,111,108,97,104,117,105,89,103,106,110,96,121,99,101,106,79,112,101,111,102,112,91,103,92,102,98,96,105,112,112,113,104,114,87,109,102,101,105,104,99,103,102,107,95,113,106,97,94,90,109,92,111,111,90,120,99,84,100,109,95,97,105,108,97,115,96,107,112,104,104,90,101,95,102, +467.00427,108,104,76,115,89,116,110,101,106,109,96,103,101,109,97,91,86,110,101,103,116,117,94,95,112,101,108,90,101,96,113,99,88,109,104,95,115,100,96,112,81,90,101,98,100,108,98,107,96,103,94,112,117,97,103,80,98,94,113,97,94,104,101,108,108,117,91,106,103,92,102,105,95,106,87,106,94,108,109,100,109,107,99,105,103,103,93,103,108,91,97,96,98,113,111,105,107,116,95,98,100,111,95,100,106,103,100,107,108,111,100,113,111,94,114,95,83,102,110,107,105,114,92,93,103,112,107,104,117,104,105,109,105,112,114,103,96,105,111,95,94,111,104,94,94,107,108,103,95,110,99,93,107,93,98,96,98,109,109,98,87,99,107,101,108,99,111,88,109,108,109,117,104,97,98,104,117,97,102,116,106,109,96,99,97,107,90,99,102,98,98,102,108,63,99,108,105,98,113,106,91,109,101,109,106,97,103,91,98,107,97,96,98,105,99,104,114,104,98,94,107,102,97,103,92,108,94,102,101,110,95,102,97,116,99,104,107,100,113,97,89,109,104,115,105,92,100,112,102,90,98,112,95,104,98,99,101,98,105,99,107,114,96,92,92,104,107,92,104,107,93,101,105,101,106,110,103,115,104,98,105,109,109,100,106,101,108,110,101,99,108,111,95,109,99,113,108,95,111,101,106,114,106,105,103,110,105,103,100,119,110,95,95,111,101,99,97,108,112,103,104,100,106,115,113,95,106,95,117,116,96,108,109,115,106,108,97,106,105,113,74,105,101,103,101,107,109,99,96,118,99,111,111,106,99,108,104,119,110,102,110,105,117,107,104,94,98,105,95,100,110,99,103,96,104,102,104,107,108,99,123,105,96,103,94,97,106,106,117,100,111,96,100,103,105,107,95,98,98,112,95,99,98,104,101,101,109,114,110,91,91,109,103,101,103,114,95,112,123,89,98,98,100,109,108,101,96,100,114,106,101,101,110,107,98,103,100,107,103,109,117,99,118,101,104,99,99,102,95,108,94,111,104,108,105,103,100,106,99,96,108,104,95,117,101,103,104,103,102,95,94,108,95,96,112,109,102,116,109,104,96,102,103,102,95,94,92,95,103,87,103,103,104,111,100,114,92,123,103,101,106,95,104,105,90,107,110,102,98,112,113,108,104,106,105,73,111,111,92,107,108,103,103,98,105,102,110,108,94,108,102,94,91,104,106,97,110,101,108,99,109,108,105,107,111,97,110,104,105,108,95,110,96,104,96,100,109,103,100,102,104,104,108,105,94,105,106,103,112,101,98,97,100,100,116,95,94,96,100,107,111,101,107,91,101,107,111,118,99,103,109,103,98,99,116,104,108,99,116,105,94,101,117,99,92,106,97,110,101,100,104,94,94,109,104,101,103,105,107,107,108,117,96,97,70,108,108,99,96,100,98,98,107,99,98,104,94,95,105,102,112,115,113,117,99,96,105,100,99,107,107,104,105,118,110,90,111,108,101,119,114,116,114,106,98,94,117,100,101,90,95,113,95,107,101,107,109,87,106,96,109,101,104,96,105,91,113,99,110,99,98,101,102,110,106,101,100,98,110,105,116,98,109,100,110,104,115,102,105,110,101,97,102,91,104,103,98,114,94,95,100,101,97,113,100,95,94,106,100,105,100,110,91,111,102,99,106,95,115,98,106,114,102,113,113,101,96,109,105,102,100,110,116,94,101,99,101,107,114,79,96,105,100,102,95,101,103,106,93,101,111,111,107,105,106,97,98,111,106,97,93,119,108,116,89,100,92,103,101,103,108,100,100,111,99,104,98,106,95,113,99,104,93,81,105,113,89,102,92,111,97,108,102,112,122,104,110,103,102,102,113,113,106,110,96,102,109,109,117,102,104,94,95,98,82,100,101,103,100,112,92,98,101,104,114,99,101,97,90,109,105,102,98,92,104,106,105,115,104,95,107,110,96,105,97,99,98,99,108,106,108,104,97,115,94,92,111,96,101,109,103,104,106,103,102,103,106,118,97,105,103,102,115,112,107,78,100,110,101,119,102,106,109,100,99,99,93,97,90,110,102,104,96,102,96,103,102,107,94,97,111,104,104,108,116,103,103,99,100,99,102,109,105,100,105,109,99,101,97,116,110,93,96,109,97,105,106,93,103,101,109,93,102,95,112,110,117,101,104,95,112,100,105,105,129,115,103,101,109,104,133,95,103,102,92,110,113,102,83,103,110,107,102,106,96,102,106,98,85,94,103,101,102,107,101,105,93,105,101,111,104,118,71,102,109,87,99,100,91,112,100,99,102,100,99,98,88,112,108,103,101,104,100,105,89,99,107,100,95,108,109,111,110,106,109,105,94,117,89,116,99,116,97,97,100,117,109,105,102,105,107,106,104,103,99,104,92,101,102,106,104,106,108,106,97,97,101,92,101,90,105,117,102,110,105,103,97,113,92,101,89,105,100,95,104,100,113,97,66,100,97,96,104,88,102,106,96,109,105,109,106,98,107,104,101,101,97,106,83,107,105,112,102,105,98,94,110,101,99,99,120,108,87,106,104,107,111,106,109,102,108,111,111,89,114,111,93,110,85,87,106,98,84,110,104,105,107,99,120,99,112,88,118,107,100,96,108,110,99,96,104,100,110,96,106,109,82,88,127,100,102,99,107,105,108,93,98,96,103,98,120,97,102,113,100,96,114,101,94,101,102,107,102,112,108,107,103,96,103,116,103,99,108,101,114,102,103,109,107,95,101,111,113,108,104,112,110,105,106,99,85,102,94,104,103,102,103,128,108,109,111,103,91,100,109,107,104,103,99,120,102,112,109,101,105,103,103,98,101,110,96,123,117,97,107,97,102,123,94,106,94,94,112,113,111,98,127,97,100,91,104,110,111,106,101,94,108,93,94,95,104,124,114,102,106,107,100,105,93,105,100,106,99,102,102,104,112,99,109,100,99,90,95,138,94,106,108,121,110,98,91,99,95,101,96,120,101,103,95,105,106,96,94,108,102,101,108,101,101,100,102,94,107,102,97,115,109,105,106,100,103,101,98,105,100,108,102,98,88,106,105,99,78,105,97,103,102,104,95,91,102,96,99,103,112,94,105,104,103,107,109,99,116,95,92,75,103,105,99,108,109,102,104,104,104,104,77,101,110,97,104,100,98,115,107,98,110,98,102,92,109,101,98,105,91,103,113,108,103,100,93,100,95,95,91,102,106,108,103,99,99,83,89,94,93,100,91,95,120,100,102,109,110,109,107,105,89,112,105,102,96,107,103,102,100,114,100,94,104,104,110,104,106,110,98,100,100,100,103,102,104,105,106,101,94,106,94,106,117,96,106,101,103,95,86,99,109,101,96,111,96,101,108,105,101,105,95,92,102,109,105,109,84,96,92,102,105,104,115,106,93,94,89,102,92,103,105,101,98,98,86,101,100,97,101,101,75,103,109,99,98,99,100,91,105,105,111,107,98,109,105,101,83,113,98,91,107,108,111,98,102,105,97,110,109,99,98,72,110,97,116,108,83,111,100,106,116,107,98,107,103,89,112,106,108,106,109,102,95,104,96,94,96,105,105,104,97,101,110,84,82,127,101,108,96,100,112,101,117,110,102,111,106,98,98,97,96,102,111,103,95,99,109,99,111,102,98,96,102,88,95,96,103,108,95,97,94,106,111,113,111,112,130,109,96,109,99,105,114,104,111,101,101,109,106,96,101,105,98,97,109,109,110,115,97,115,102,90,90,106,95,107,103,92,103,95,101,100,100,101,105,112,112,104,127,100,91,84,104,95,94,104,100,106,103,128,103,101,99,110,117,94,107,100,104,99,110,102,115,90,94,113,106,109,94,109,109,114,107,100,104,98,105,96,103,91,107,99,104,92,103,86,112,98,99,101,97,103,96,102,103,91,88,106,112,103,97,107,97,137,87,85,79,89,104,100,99,100,110,104,105,117,95,105,106,105,99,120,102,100,100,101,104,102,105,102,102,106,87,107,98,100,108,109,102,95,106,100,117,110,121,101,103,101,94,113,105,95,114,109,105,93,97,99,98,108,95,113,105,117,91,99,95,105,105,107,104,96,102,106,103,126,104,100,117,112,109,102,94,105,108,104,119,104,90,104,104,84,95,109,105,112,107,113,103,99,92,102,117,113,100,97,102,102,110,109,111,104,107,94,105,99,109,97,96,103,102,103,107,95,106,113,109,96,104,90,95,83,106,101,105,110,91,100,100,112,116,106,97,101,104,103,96,96,108,94,87,92,96,100,100,93,116,104,98,106,107,102,85,91,98,107,90,93,110,92,98,106,99,113,126,101,118,100,105,104,96,104,93,109,102,90,98,113,92,87,91,103,105,96,108,112,102,108,107,112,110,103,100,84,95,106,108,120,97,103,106,109,103,97,103,91,99,103,95,101,89,101,102,92,99,102,108,98,119,96,103,98,107,113,89,89,114,97,101,123,102,100,97,104,108,93,99,100,103,102,135,110,104,102,87,109,92,99,95,106,111,113,105,102,104,107,105,100,107,91,108,102,104,102,105,92,95,102,99,101,106,101,104,100,115,101,117,88,91,110,101,102,102,97,102,105,99,119,94,106,105,100,105,100,107,98,95,107,100,101,98,103,94,107,104,107,106,109,102,88,110,77,100,104,85,93,96,101,98,102,119,88,95,101,105,96,102,106,98,86,103,111,108,101,105,107,110,98,106,102,95,102,114,96,116,97,95,109,106,111,100,99,94,106,107,102,96,96,108,105,87,102,103,107,91,93,111,103,79,106,121,95,101,96,102,110,104,90,107,105,104,93,91,91,94,101,100,97,100,87,104,92,109,104,110,108,91,102,105,107,101,90,105,112,108,100,113,98,112,99,104,106,97,90,111,75,100,94,97,77,115,99,96,98, +467.14474,95,105,74,95,104,104,95,94,113,102,95,94,95,92,94,103,95,116,96,114,101,98,113,114,103,85,107,96,103,111,100,101,103,104,103,101,98,103,120,98,105,105,106,107,104,118,100,109,108,103,114,106,95,89,101,95,83,105,130,99,107,96,115,108,100,99,97,97,97,107,84,112,100,95,99,94,115,115,116,112,96,102,112,98,98,109,105,110,104,99,105,104,101,103,95,105,116,100,113,104,104,74,109,92,93,102,108,106,96,101,96,115,117,97,97,92,102,104,106,95,90,102,98,103,89,107,105,99,110,101,98,113,106,94,104,103,92,104,109,78,110,121,91,110,97,87,100,105,108,104,95,102,113,101,91,98,100,103,110,100,101,103,108,102,99,106,99,104,106,107,96,98,108,98,105,97,104,102,106,105,106,98,102,105,94,108,104,103,99,102,116,113,96,98,100,98,107,110,109,101,109,103,97,105,105,106,106,112,109,109,95,99,104,104,91,103,111,100,101,114,103,118,97,98,102,104,91,96,99,99,110,99,109,113,109,102,101,101,106,95,105,92,99,102,97,113,101,104,99,113,94,102,105,99,106,98,104,98,99,110,92,104,92,106,105,99,119,91,103,102,98,99,112,103,109,100,108,109,95,91,105,112,94,100,98,98,100,96,101,116,96,99,103,104,125,107,105,107,111,100,109,101,105,109,113,108,104,109,100,103,93,118,103,97,96,100,107,113,107,114,101,78,106,101,117,104,102,102,100,118,105,110,110,90,104,111,102,131,115,95,97,100,78,108,101,107,100,110,99,110,105,80,109,95,100,99,117,93,94,97,102,105,108,97,107,95,111,96,95,107,98,99,101,118,108,114,103,94,99,107,104,109,95,130,87,96,114,110,102,114,117,108,91,109,103,99,104,110,108,112,105,104,98,105,102,116,106,107,111,109,107,96,102,100,106,96,109,105,102,105,85,102,103,100,91,89,99,104,107,111,98,109,105,117,94,105,96,99,96,109,107,100,112,115,100,113,106,98,106,103,100,99,111,105,102,101,98,85,104,109,108,109,95,109,111,111,121,105,114,120,109,118,101,98,129,102,102,119,94,108,107,103,119,122,104,95,103,108,100,101,106,103,101,99,87,106,105,96,108,85,107,107,117,105,109,112,101,98,100,104,101,109,110,100,105,96,103,110,115,104,103,97,111,96,99,114,103,103,97,105,101,99,96,103,100,116,109,107,91,108,94,92,93,102,115,108,116,96,110,114,107,121,107,108,104,103,106,106,112,103,106,99,102,105,101,89,87,105,100,101,98,103,91,108,100,106,106,109,109,99,104,97,105,105,99,107,107,106,97,122,94,99,98,104,112,112,99,104,103,108,126,105,102,106,102,98,106,106,99,105,71,94,100,98,83,93,105,98,112,103,91,90,105,116,118,97,99,125,103,116,112,103,107,102,99,94,94,106,109,117,114,117,100,97,99,87,96,103,99,105,90,98,101,109,99,98,109,103,102,108,122,104,108,114,99,100,102,99,101,86,103,99,103,88,103,109,105,103,115,113,109,110,99,65,105,106,93,96,107,104,107,101,98,114,108,103,117,98,109,108,107,110,102,110,109,111,110,100,101,98,110,96,112,95,101,111,102,78,113,105,102,98,114,106,99,101,100,92,105,114,101,120,104,112,101,108,116,100,111,112,100,97,97,101,115,104,101,113,101,104,104,110,95,89,98,103,104,104,100,95,106,106,96,97,103,79,103,99,117,105,95,109,90,88,105,117,105,118,115,111,89,96,115,102,106,109,103,121,102,106,97,116,107,117,101,100,99,112,99,113,98,100,94,105,104,112,117,100,112,96,110,100,108,108,92,107,100,112,107,106,83,115,108,102,78,95,96,98,99,107,108,112,105,107,109,114,103,112,107,103,63,112,112,113,103,104,110,101,113,99,108,120,105,105,101,95,104,104,99,94,112,100,94,107,95,104,96,100,108,97,110,103,114,102,116,101,107,105,102,111,102,108,105,112,106,100,102,110,93,114,108,113,99,91,108,94,113,96,104,95,98,105,108,106,98,111,94,105,109,105,98,112,103,106,105,95,92,110,100,104,101,98,117,105,113,85,85,105,117,91,98,111,105,110,106,119,95,127,96,99,106,104,121,104,103,103,103,104,110,110,95,95,114,97,107,111,103,101,115,114,105,92,100,112,121,117,89,100,95,97,105,80,105,101,109,103,104,103,104,105,92,109,113,98,96,112,101,101,99,110,121,96,106,111,110,108,109,106,95,114,100,96,98,105,106,97,108,95,87,99,92,108,116,94,89,105,107,105,102,111,99,111,108,98,106,112,112,92,68,71,106,114,115,90,106,94,113,106,112,107,108,104,97,106,101,109,107,93,86,104,103,107,103,105,106,91,98,101,97,104,95,109,103,112,104,103,107,111,100,98,90,113,106,93,106,110,104,111,104,102,105,109,104,106,106,111,99,99,104,105,95,104,112,106,99,108,117,105,120,101,107,103,105,114,110,123,102,105,95,113,98,118,110,103,101,104,108,96,92,107,111,100,113,106,107,103,106,101,89,116,113,110,97,97,109,103,108,115,100,102,104,99,101,107,99,87,117,96,130,97,107,99,117,112,110,104,101,103,113,108,105,92,105,89,108,108,104,108,98,88,115,99,134,103,130,98,120,95,109,109,106,107,113,108,108,105,107,101,107,104,106,106,102,107,102,121,109,105,105,111,109,113,107,102,110,103,109,114,111,106,116,113,107,94,106,105,123,97,108,109,102,114,109,97,104,103,100,115,104,111,102,103,109,103,106,115,97,100,105,112,99,123,106,111,98,90,119,112,102,106,109,96,107,106,106,106,101,125,104,104,119,95,112,105,112,106,114,102,120,103,120,113,110,108,98,99,103,103,104,98,112,101,100,98,106,119,100,98,106,94,120,116,104,109,114,111,103,100,121,106,103,104,107,105,100,100,103,113,96,88,101,106,103,115,113,106,95,106,96,104,94,115,106,84,114,101,113,93,114,109,117,91,107,111,118,105,86,93,90,119,97,100,106,96,108,100,102,104,103,101,98,113,108,96,114,114,109,99,116,104,102,120,113,117,112,107,104,99,111,96,107,103,108,102,111,110,103,110,113,95,102,96,78,100,110,103,97,116,109,103,105,107,116,103,97,104,97,97,101,83,108,99,79,106,112,105,106,107,108,112,108,105,107,107,121,108,104,99,100,111,92,99,96,102,108,97,92,97,106,103,110,114,114,106,102,114,91,121,117,104,105,102,109,102,106,107,93,112,117,103,111,91,121,99,96,95,106,107,112,96,100,114,109,110,109,112,101,100,100,93,105,99,94,101,106,105,115,99,100,107,104,87,76,108,99,109,105,109,96,117,83,102,100,107,95,95,110,103,102,98,100,98,96,111,111,88,103,102,100,110,99,114,100,95,99,100,105,92,112,78,104,103,117,105,106,116,107,108,108,112,94,97,96,94,91,103,107,96,117,105,118,110,106,106,100,103,91,109,113,112,102,101,98,112,102,105,101,110,103,108,105,89,112,100,101,110,101,101,102,113,109,105,105,110,102,113,93,105,113,106,99,98,99,124,109,107,117,102,107,102,108,100,99,108,105,99,109,109,106,102,99,100,120,95,102,102,117,108,103,113,101,105,119,107,104,104,103,113,95,97,101,105,105,99,103,100,96,104,106,103,104,102,110,100,105,95,101,110,101,104,104,110,113,72,104,99,102,96,105,104,114,103,98,101,111,104,104,103,107,112,99,105,104,97,103,108,117,113,107,95,106,96,113,99,113,117,98,118,103,91,117,112,112,99,110,103,109,112,103,102,106,111,102,85,96,99,88,103,115,97,117,110,110,116,109,125,108,107,99,87,100,99,100,102,92,115,112,100,109,96,106,111,102,99,109,113,111,110,116,103,99,105,113,99,97,107,104,92,111,104,108,112,104,114,109,99,119,104,100,103,107,105,103,100,120,100,104,115,99,96,99,106,95,108,90,94,106,104,98,106,110,108,106,99,112,105,104,98,127,107,119,102,99,80,114,111,117,87,98,123,114,96,111,99,102,105,120,99,107,103,100,92,107,122,109,111,103,106,110,103,97,109,105,105,121,103,104,107,108,93,104,104,94,100,105,113,102,109,103,103,101,105,106,102,88,102,103,109,108,99,112,107,102,110,110,113,102,120,106,96,98,97,115,109,105,102,109,104,109,101,108,112,101,111,108,105,107,99,107,94,100,102,101,109,109,107,92,111,108,106,97,105,109,103,117,99,99,101,91,110,106,107,108,96,114,98,101,104,103,106,98,99,111,104,107,106,116,102,117,105,101,100,108,108,97,100,100,102,104,112,113,109,111,99,101,98,97,110,106,105,100,108,108,116,109,110,104,102,107,95,107,100,107,105,121,106,109,94,110,94,111,109,96,102,88,85,90,111,107,98,104,106,101,110,95,88,106,102,106,107,109,110,90,112,106,102,112,103,120,105,99,100,109,107,111,95,107,99,110,103,99,94,102,107,102,111,110,108,96,106,110,97,100,120,104,102,105,112,114,105,87,97,111,100,99,96,91,103,104,106,96,99,111,108,112,99,108,96,108,97,74,108,101,102,106,110,98,140,111,94,106,110,117,102,108,113,116,93,116,117,105,103,105,99,120,100,104,115,95,100,104,94,103,115,102,94,107,103,104,132,107,99,112,95,109,118,115,112,101,97,85,100,108,116,104,119,101,105,98,109,106,121,104,109,91,104,98,107,102,96,89,116,93,98,91,99,111,97,95,91,99,103,101,97,106,95,109,83,116,96,110,95,91,100,120,113,108,96,93,103,110,109,107,109,95,107,104,103,100,94,96,95,109,102,108,102,93,103,110,113,108,109,122,100,96,95,90,96,102,94, +467.28522,109,102,89,113,92,113,95,104,91,104,106,87,87,105,101,88,95,111,97,99,95,93,95,95,102,99,99,102,111,93,101,101,102,104,98,104,108,110,109,99,103,102,97,93,101,103,98,104,105,112,106,99,93,92,103,102,105,101,120,108,107,106,120,113,87,92,101,93,91,94,110,109,99,107,93,103,97,86,120,101,96,112,96,100,111,89,99,100,104,97,123,97,91,115,93,92,95,89,101,110,109,95,97,90,111,115,105,103,95,96,113,97,103,101,99,92,108,106,99,101,100,98,102,111,97,102,101,102,104,94,105,113,96,111,102,100,103,105,97,95,110,105,99,102,105,101,99,97,100,118,105,88,100,100,101,105,98,95,103,102,108,108,111,104,98,100,116,95,105,102,100,88,99,97,95,94,100,103,98,114,110,109,109,112,104,103,90,93,111,82,98,93,87,92,107,107,100,125,107,111,104,100,105,92,105,108,99,104,107,104,99,118,98,100,116,110,93,93,105,99,109,102,100,91,101,103,99,94,99,103,100,99,103,99,101,105,73,118,105,112,116,100,114,105,101,102,106,111,107,105,98,103,93,102,110,100,77,97,99,108,100,107,101,97,86,107,96,118,90,103,104,104,103,111,101,102,91,104,98,86,112,105,101,105,89,104,83,102,105,92,95,121,109,108,116,101,102,100,96,101,121,105,133,112,100,106,109,100,111,81,103,107,108,108,100,91,104,102,110,104,102,105,107,109,93,91,98,99,104,103,106,103,104,97,98,98,93,98,100,111,113,92,96,99,103,112,105,103,102,98,97,115,104,113,108,94,94,127,103,107,98,107,85,97,102,95,107,96,105,105,102,103,112,109,91,98,102,104,94,100,100,116,106,108,97,97,94,95,104,114,116,101,98,97,103,96,108,94,98,105,108,96,94,102,97,96,97,109,113,117,104,101,100,93,115,102,104,94,93,111,109,102,102,101,106,108,102,109,103,118,93,104,111,101,90,101,101,113,84,104,107,108,106,107,105,101,104,98,109,109,90,104,102,98,109,96,105,102,96,110,101,111,105,112,103,105,102,104,106,103,107,107,100,105,102,116,91,98,99,113,99,105,109,98,104,115,98,99,100,111,108,113,102,109,98,114,106,91,99,99,114,96,106,104,107,123,99,110,94,105,103,99,109,114,108,100,101,104,110,103,102,92,113,102,95,106,115,98,103,110,101,123,92,94,99,100,118,108,98,115,100,114,128,137,97,97,98,71,112,102,109,109,102,101,105,106,100,104,99,105,117,98,101,103,79,93,109,101,101,100,98,100,98,105,103,107,102,94,98,105,89,95,104,91,99,101,115,102,104,95,105,97,102,100,105,105,95,104,98,104,110,89,96,99,91,82,93,102,99,102,98,94,106,108,106,97,105,100,108,105,114,105,94,117,118,94,98,117,114,109,90,93,100,104,95,101,94,107,95,102,108,101,108,105,101,98,97,113,96,100,108,101,104,105,105,106,105,102,101,104,110,109,90,94,95,102,109,106,108,102,108,104,105,100,96,101,103,105,99,98,104,101,106,113,104,96,99,95,117,100,101,104,98,98,114,107,98,106,95,112,106,106,109,103,105,98,113,107,103,102,104,92,94,91,99,96,90,102,109,101,105,104,101,107,102,91,102,106,106,109,102,105,108,101,99,100,102,96,104,98,110,105,105,95,107,87,110,96,108,98,109,101,94,103,104,101,105,113,121,100,107,109,97,109,88,99,92,109,100,108,105,109,108,92,99,103,89,100,107,103,107,109,99,103,92,110,106,101,100,112,95,97,106,100,72,93,91,98,113,108,103,91,100,99,109,96,112,102,103,103,97,105,102,105,109,102,106,104,115,141,108,96,110,102,101,109,115,101,112,95,107,103,104,113,114,101,108,103,102,94,97,102,108,106,107,100,105,92,91,95,101,83,79,94,98,97,92,108,90,99,108,106,105,104,100,88,102,100,105,105,95,103,104,99,90,90,100,102,97,105,112,91,115,104,86,92,90,114,80,101,108,103,100,103,96,122,102,102,105,85,94,121,101,95,96,108,103,100,93,113,98,109,98,107,106,85,105,97,98,108,103,101,110,126,103,103,104,97,98,105,98,112,95,113,88,111,101,100,101,90,98,104,118,104,132,97,99,103,95,108,92,87,106,88,114,121,99,112,98,107,78,106,103,109,109,107,100,104,92,98,95,104,101,97,106,99,96,98,100,116,98,116,91,103,91,98,95,107,100,110,112,97,98,96,104,107,119,117,107,105,97,98,95,99,93,101,99,94,97,98,98,100,102,105,112,87,110,101,99,113,112,102,99,100,99,91,87,105,108,94,100,100,121,102,109,84,101,111,105,94,99,105,104,100,126,99,92,97,90,113,96,105,106,93,99,106,114,99,93,90,94,109,94,98,100,112,103,102,101,90,113,113,102,97,108,119,88,88,101,93,114,100,102,111,102,103,101,96,103,106,104,101,110,113,94,106,106,105,111,101,103,90,112,98,96,116,99,100,106,97,100,106,95,97,109,110,80,97,100,111,119,109,99,103,99,101,112,95,108,102,106,116,109,99,111,120,116,98,100,107,98,109,101,107,103,99,93,108,107,97,99,102,129,113,94,109,107,103,92,105,113,103,107,93,103,106,96,113,103,102,95,108,104,96,113,108,98,105,112,113,108,108,109,100,117,106,100,107,95,105,99,109,113,102,98,93,92,113,108,107,96,108,99,97,102,113,120,108,119,99,104,108,105,115,114,99,111,116,117,93,107,117,102,99,110,99,112,117,111,113,92,104,99,106,104,100,109,85,124,115,118,102,111,109,100,105,111,108,96,102,109,110,97,96,108,103,105,105,106,109,105,105,100,100,108,80,107,112,98,99,103,106,116,106,104,105,110,100,112,104,114,112,104,106,95,113,101,103,112,96,102,106,93,105,95,106,94,92,105,121,105,102,96,100,106,102,98,102,110,112,102,112,96,93,120,133,104,94,116,93,106,102,98,94,114,107,114,107,101,68,102,95,108,121,107,102,109,100,98,99,101,107,101,101,99,99,107,98,105,113,105,89,91,96,103,92,92,113,99,95,102,112,112,99,111,102,111,111,113,108,86,105,85,103,106,106,88,107,105,98,111,99,109,98,106,106,75,107,99,100,110,110,98,102,101,94,95,105,118,117,111,104,98,92,91,107,112,110,100,90,104,110,107,96,103,111,109,106,108,104,107,99,94,106,102,106,93,110,127,114,106,97,110,109,101,93,102,106,116,102,110,100,100,102,105,112,109,100,102,103,110,99,103,104,112,105,109,106,101,98,102,112,105,101,105,102,93,106,112,117,109,108,117,103,100,101,109,104,117,108,101,104,91,108,96,101,115,102,106,116,105,112,101,106,101,99,116,115,109,106,108,102,98,99,97,108,103,100,113,110,124,101,105,99,92,101,109,96,108,96,109,100,103,88,100,96,100,105,106,100,101,108,99,101,102,95,100,107,104,99,103,108,96,94,101,107,91,101,100,69,99,103,118,119,114,102,96,105,103,113,100,103,111,103,109,106,105,105,107,102,129,93,112,120,96,87,88,108,110,104,93,94,103,121,98,103,99,109,117,107,94,108,114,110,114,103,110,102,105,105,99,108,112,112,94,98,109,97,91,108,104,101,101,98,96,96,101,103,113,104,105,111,99,104,91,97,99,108,104,102,102,104,108,105,109,113,103,116,102,108,108,100,106,83,101,110,83,105,93,106,107,101,105,113,115,108,108,117,110,100,100,106,103,118,110,97,112,87,107,96,102,107,68,91,96,107,113,100,103,91,109,95,105,114,99,108,106,102,98,110,106,105,103,108,106,113,117,102,112,105,102,102,111,106,100,126,98,93,94,113,112,100,99,117,103,97,123,98,97,102,104,88,100,103,106,112,99,112,103,107,106,91,106,103,102,102,99,109,108,105,105,108,122,101,96,112,111,103,95,113,110,115,99,95,96,106,102,105,91,85,99,109,98,104,103,99,94,101,108,110,113,111,84,104,110,104,108,104,111,97,109,107,100,96,85,106,107,105,105,105,103,93,107,97,103,111,95,98,113,94,84,107,114,101,110,110,97,98,99,113,99,114,108,121,102,111,98,108,112,101,105,96,90,116,96,92,101,101,117,102,87,97,95,107,99,101,117,117,75,97,111,112,96,99,116,112,105,107,97,104,103,97,105,114,107,90,92,107,103,95,112,110,110,106,101,95,99,106,104,105,95,104,102,102,91,105,94,106,95,105,102,91,106,99,109,107,100,109,94,100,101,105,101,110,103,101,98,106,101,108,107,106,108,101,109,109,101,101,106,113,114,104,106,105,105,94,106,112,120,112,103,95,102,106,120,94,100,105,109,97,99,94,102,111,99,97,99,104,105,108,107,107,100,112,95,104,102,101,102,98,107,109,91,102,102,97,96,98,108,110,103,111,96,123,128,108,113,101,106,103,98,99,99,105,100,109,107,107,102,109,107,104,101,108,112,113,104,96,104,106,83,124,89,102,109,92,107,110,99,106,109,98,108,102,120,115,100,104,106,87,105,104,113,113,114,95,107,92,102,107,103,93,107,109,105,100,107,109,112,103,112,105,111,109,105,107,102,109,109,101,115,100,106,100,107,108,103,102,117,101,106,91,106,95,95,113,98,100,107,97,105,102,110,103,78,112,108,102,103,93,117,111,103,98,114,103,108,98,110,97,99,103,108,100,98,108,94,89,98,82,115,93,102,109,118,107,94,105,103,93,103,119,90,112,99,99,102,107,93,106,98,109,99,95,102,89,107,92,102,93,108,107,125,96,105,81,102,102,84,122,102,107,108,109,96,101,96,100,105,102,95,101,105,95,111,99,98,99,95,102,98,97,113,97,116,98,104,112,93,107, +467.42569,83,98,90,92,98,125,88,91,101,102,102,94,100,103,104,113,123,96,101,103,117,102,103,95,99,109,93,98,100,122,103,101,104,98,107,103,114,97,94,101,92,106,83,90,101,101,87,104,120,114,103,95,114,112,74,99,98,106,112,110,107,93,105,101,118,114,92,107,102,114,113,97,103,103,106,110,101,109,98,90,103,98,108,114,103,105,90,110,106,107,105,104,96,112,98,104,107,97,95,99,96,113,105,110,104,115,92,101,95,111,108,103,102,97,116,106,109,103,103,101,90,97,103,92,94,109,104,104,106,105,137,114,95,100,103,96,98,123,105,105,109,106,94,101,105,97,107,106,100,93,100,102,103,95,105,105,105,103,93,89,88,100,104,108,99,109,127,100,107,85,98,109,98,87,103,102,107,103,125,99,99,101,105,95,102,102,94,97,117,102,114,105,99,105,105,110,105,95,78,121,100,103,106,106,107,95,98,101,105,95,108,112,113,98,104,112,102,97,107,104,106,101,95,95,100,136,113,106,104,105,103,112,103,108,79,102,108,112,106,104,92,109,114,99,95,72,98,105,105,104,105,93,95,109,101,104,104,109,99,117,112,110,105,97,90,111,99,96,98,94,90,96,102,83,112,102,90,110,89,90,116,116,104,89,98,105,90,93,102,100,104,82,104,110,102,111,106,106,105,117,105,105,105,119,98,112,109,98,115,98,93,107,96,105,98,107,110,109,96,101,109,106,110,108,103,99,99,99,105,113,113,101,99,103,104,102,111,103,112,99,100,101,99,91,99,98,95,107,99,104,106,101,117,105,91,98,103,108,103,110,100,102,110,89,97,93,107,96,102,114,117,98,93,104,108,106,108,105,100,99,107,104,100,100,103,113,110,87,109,110,106,82,105,108,102,99,79,105,105,100,103,104,108,105,93,90,102,110,98,104,94,101,100,104,99,108,105,102,108,109,99,108,117,111,103,100,108,99,104,79,109,100,108,93,107,102,106,99,109,104,106,105,77,111,99,111,96,94,94,102,108,88,112,90,100,109,108,96,118,110,106,102,103,100,106,114,91,118,102,95,95,119,102,94,111,79,98,113,109,103,105,108,112,93,100,101,105,112,103,115,106,95,95,99,94,101,103,109,112,103,102,101,101,109,100,111,95,105,102,100,102,93,104,104,107,109,103,101,93,94,116,95,113,100,92,109,112,112,109,95,99,84,103,103,100,80,106,99,102,98,100,114,94,102,112,99,97,75,116,98,103,110,107,107,106,100,104,105,105,100,109,110,107,105,86,98,101,116,98,101,97,98,109,103,105,96,97,117,98,103,101,105,104,102,104,114,123,106,110,111,102,104,100,103,107,130,98,101,107,108,87,102,109,108,103,103,109,108,103,99,105,105,109,105,96,103,109,91,97,96,107,99,109,114,94,104,98,105,93,115,107,101,89,95,104,85,113,99,108,102,114,115,103,91,105,103,107,107,107,98,110,112,100,100,101,100,106,113,91,110,113,94,102,100,99,103,105,108,107,93,110,104,100,105,108,100,106,99,109,101,109,96,102,87,101,104,106,77,108,103,102,96,109,103,106,95,102,95,111,89,109,105,96,108,111,108,107,98,107,103,100,108,107,102,99,106,108,110,100,109,110,98,103,102,104,97,101,108,102,108,106,102,107,99,108,98,85,99,99,90,101,105,105,102,100,105,101,101,103,110,109,98,100,101,102,108,111,106,98,109,110,110,101,107,98,99,91,116,100,99,113,112,106,93,114,100,103,96,112,106,113,104,105,102,91,92,109,104,99,117,106,112,105,99,112,108,104,98,109,112,99,99,100,109,110,103,99,77,96,108,105,101,103,92,110,110,105,107,121,103,107,100,104,105,109,101,98,94,116,99,114,105,112,105,91,108,104,94,121,103,98,104,117,97,104,103,91,108,92,92,95,101,97,94,97,111,98,102,87,92,118,101,105,96,96,98,90,102,119,99,99,93,102,106,101,106,102,110,108,102,79,109,101,102,101,100,100,107,99,104,107,117,104,103,109,100,108,107,102,101,101,105,117,103,106,110,106,113,89,97,105,97,96,101,116,99,107,106,104,106,98,100,99,109,90,109,88,113,100,111,104,106,107,104,102,113,102,104,97,108,101,116,106,103,109,102,111,110,116,101,106,91,122,106,123,120,103,102,96,108,103,88,122,118,109,105,104,101,117,106,90,90,109,103,99,96,116,104,95,87,105,108,98,103,103,114,97,106,99,96,101,98,93,85,104,109,100,94,103,95,103,102,110,102,110,112,109,105,106,83,104,100,105,109,131,102,111,94,89,103,100,101,118,100,109,112,104,109,104,106,106,97,115,104,109,94,100,94,99,100,100,101,105,97,95,112,101,106,101,93,98,116,101,90,101,98,90,96,103,109,98,116,104,94,101,101,107,103,103,117,101,98,114,97,127,98,101,113,109,104,96,112,103,100,99,104,100,100,121,94,101,112,112,94,94,88,103,102,104,103,102,107,115,97,98,115,98,103,109,106,103,118,109,106,110,113,76,97,104,114,115,106,106,102,106,102,101,92,105,94,126,104,107,102,112,105,108,109,102,109,96,95,88,112,95,109,105,95,104,102,106,92,114,107,100,110,110,90,105,100,116,86,103,96,100,100,102,93,113,112,95,90,114,96,94,102,117,107,116,94,108,104,99,103,107,97,104,103,102,109,103,106,104,92,100,97,109,95,110,105,91,101,105,99,104,103,124,99,102,105,110,96,111,94,94,97,102,99,106,96,101,103,103,96,107,109,96,106,110,95,99,105,116,83,109,99,121,100,104,110,113,97,110,102,106,98,102,120,105,98,100,116,112,109,105,99,104,111,104,112,109,89,102,101,69,109,99,92,101,102,106,104,100,111,101,100,106,103,101,112,110,105,104,109,105,101,101,103,117,102,107,106,113,98,103,99,99,100,103,99,100,92,100,107,112,99,105,109,110,98,99,110,121,112,113,98,98,104,101,107,105,108,101,107,106,110,113,95,94,96,92,97,106,106,114,103,106,108,107,113,102,99,113,109,99,91,108,104,108,102,104,107,113,110,95,114,112,103,105,91,99,93,106,117,121,87,107,107,109,109,106,104,109,113,98,74,125,107,98,101,102,88,100,102,104,106,99,100,102,107,97,94,102,110,99,122,102,113,96,96,109,109,115,100,104,100,102,100,105,91,99,105,97,101,104,103,102,97,101,117,102,115,104,97,91,101,107,105,126,101,101,104,83,112,108,91,94,111,106,106,102,84,105,100,106,121,106,101,118,101,105,99,107,100,104,100,115,103,99,99,99,91,126,100,106,113,95,102,97,103,90,99,89,107,107,96,107,108,104,103,99,105,90,110,113,97,90,98,107,95,104,101,101,104,98,113,102,103,115,101,97,107,85,100,106,105,104,98,95,115,108,101,101,98,113,99,108,100,107,102,115,108,106,105,105,104,106,102,99,95,107,127,103,104,95,107,120,106,101,107,113,105,98,117,100,95,84,106,109,100,104,112,101,113,96,103,117,97,105,117,88,106,103,124,81,110,96,120,99,95,109,93,105,109,98,106,104,97,102,96,78,101,101,108,104,105,102,109,114,105,101,113,101,106,113,96,103,102,104,84,86,96,109,107,102,104,111,98,100,92,105,97,103,95,85,96,104,109,111,106,103,114,105,111,98,99,99,100,109,100,107,111,111,113,120,99,101,97,103,98,109,106,105,100,114,107,105,104,102,105,109,102,103,99,101,95,102,94,106,94,102,105,91,105,101,107,107,96,104,106,98,109,83,114,99,95,103,117,79,103,106,113,111,102,106,99,105,93,94,105,113,109,109,109,96,95,103,99,83,96,108,106,115,100,103,112,95,95,95,100,97,100,89,105,107,108,106,101,97,110,98,77,107,111,104,84,90,105,103,93,107,101,111,113,99,109,92,101,117,109,108,100,104,106,106,107,112,94,110,107,114,105,115,98,105,103,112,111,114,103,101,105,95,102,107,91,112,105,104,100,102,100,99,106,104,103,106,96,112,103,109,102,91,98,104,104,119,101,113,93,112,118,106,92,102,110,104,102,100,99,106,112,98,91,112,110,96,119,103,111,99,104,115,116,95,110,108,110,101,103,76,98,89,103,106,107,96,105,97,111,98,105,86,92,110,116,86,103,112,101,106,102,105,109,95,105,102,102,103,97,114,102,97,106,113,115,108,99,93,108,98,108,105,98,95,91,111,112,102,82,112,97,74,112,98,103,103,102,79,99,107,106,117,105,100,113,106,94,92,93,108,96,95,110,107,92,94,101,93,100,109,100,112,107,107,105,102,109,108,106,108,98,113,113,93,91,123,113,108,110,101,104,104,110,96,104,100,115,102,96,108,102,95,93,108,104,117,105,117,88,101,108,103,100,101,106,109,105,100,98,114,96,95,101,91,102,106,100,104,112,102,114,114,95,110,104,96,113,111,107,88,104,104,103,119,102,98,101,100,102,102,88,96,104,101,102,95,104,100,103,97,95,99,98,103,99,110,109,99,106,97,98,100,100,110,105,102,98,99,106,96,95,86,105,111,108,103,110,91,102,92,94,106,113,100,87,100,100,120,110,85,96,95,115,98,116,94,113,99,108,97,97,95,96,92,103,104,102,100,102,99,109,96,100,97,108,101,103,95,93,107,95,102,104,108,101,102,102,109,97,89,108,92,101,114,109,103,92,109,105,94,97,108,88,90,96,110,94,102,99,108,103,87,98,98,105,91,107,79,109,99,84,102,110,111,95,99,108,98,109,102,92,99,102,95,99,99,104,98,83,110,99,111,94,107,98,102,96,81,111,94,106,91,67,101,113,94,97,109,91,113,114,102,101,91,109,91,114,87,105,111,107,92,95,115,111,105,100,103,96, +467.56619,96,97,95,119,105,94,91,98,95,97,113,103,94,95,94,94,99,105,107,109,102,98,97,96,114,100,99,84,105,109,101,101,81,110,92,103,111,114,124,100,89,104,105,98,100,112,101,110,93,98,98,98,112,102,105,78,107,107,107,109,109,102,79,93,100,106,94,113,100,83,93,104,109,107,101,114,91,99,106,102,107,83,97,105,80,103,79,111,96,98,93,102,99,101,93,109,109,99,106,92,101,96,95,112,107,88,100,116,103,109,108,102,99,103,119,100,98,115,108,103,105,96,106,97,114,110,99,93,110,106,101,106,115,120,101,102,102,100,73,97,112,101,102,104,92,112,106,105,112,102,95,117,114,106,105,112,103,102,95,95,106,99,106,107,118,113,113,114,104,94,98,102,104,100,113,98,109,114,100,95,111,102,105,103,96,100,99,86,97,102,102,106,114,97,97,102,93,115,103,99,98,102,102,111,107,107,96,107,101,118,110,107,123,100,107,107,91,92,89,95,104,102,87,109,100,99,115,98,101,103,101,106,104,120,99,96,95,105,85,97,101,102,103,100,106,89,96,110,102,108,107,109,100,94,103,110,111,97,102,104,101,106,107,95,96,123,114,95,108,95,96,101,97,100,122,105,99,96,98,99,114,102,86,101,104,95,100,101,91,106,102,105,100,109,95,97,118,102,112,103,105,112,92,107,93,91,108,101,107,105,101,100,111,104,68,101,103,97,98,101,102,91,111,103,113,110,102,98,108,103,97,108,105,107,110,102,104,100,102,101,114,107,110,104,99,107,101,125,114,110,109,117,108,99,115,105,103,108,103,118,104,75,106,101,90,96,112,102,99,101,107,100,112,108,95,104,104,115,81,93,98,101,101,105,97,100,105,102,108,104,106,88,95,107,98,94,98,102,99,117,98,101,109,101,109,101,102,102,119,95,101,91,109,107,105,107,102,99,101,100,123,103,109,100,104,100,93,104,95,104,94,113,107,98,96,109,88,102,102,101,123,96,98,98,91,102,101,97,99,96,106,102,107,100,103,114,96,102,103,113,99,99,95,109,100,106,108,98,85,106,91,100,98,104,99,113,103,125,102,99,112,97,107,98,110,101,113,109,70,96,107,89,92,108,104,109,99,100,94,99,104,101,104,101,112,96,83,109,102,117,107,103,109,105,117,94,91,79,102,103,91,95,95,113,105,108,107,112,104,109,100,103,105,96,97,103,96,105,101,95,91,104,98,98,115,109,90,104,104,104,104,100,99,106,91,102,107,104,97,89,112,108,102,108,108,113,101,111,104,103,90,96,110,104,104,97,104,101,104,84,94,101,107,94,105,101,112,98,108,111,108,102,113,109,105,103,103,112,92,92,106,104,106,100,99,81,86,93,100,106,101,107,118,105,103,102,100,96,100,115,112,100,98,97,109,100,108,109,98,90,107,98,99,94,106,102,99,70,110,100,104,97,108,99,100,96,100,92,103,108,101,104,108,105,92,108,117,110,122,112,98,103,104,104,100,117,100,109,120,102,105,97,94,94,109,118,122,103,113,101,113,102,117,102,95,97,110,103,100,103,92,129,98,105,102,102,110,105,108,101,100,99,110,96,112,92,96,103,92,106,102,107,110,113,112,91,101,94,109,120,108,102,111,105,99,108,101,100,98,111,121,96,95,105,99,104,98,99,112,115,101,110,112,87,124,99,115,101,107,105,104,104,96,106,105,90,101,106,105,103,102,101,101,109,104,99,110,88,98,96,105,104,105,96,104,89,107,106,106,108,95,110,112,97,105,119,95,107,100,108,98,114,103,119,103,104,103,102,102,101,109,103,88,95,102,96,80,105,103,97,107,105,95,101,112,102,103,99,109,97,103,105,109,97,102,103,104,110,101,109,101,90,90,111,106,109,112,104,100,93,94,97,105,100,99,97,105,73,103,105,107,98,105,106,109,110,100,107,108,101,99,98,104,108,109,103,67,112,109,102,110,106,102,96,88,98,102,93,103,102,103,113,106,104,98,102,97,109,111,94,84,101,94,111,96,113,100,95,97,101,106,108,92,105,94,109,98,97,101,104,107,102,117,110,104,110,109,106,106,117,101,104,103,93,75,95,103,103,101,100,105,115,101,110,94,87,106,93,125,105,97,107,107,97,92,102,106,105,101,108,91,101,104,108,107,113,109,115,93,109,106,110,98,106,101,108,103,89,96,105,99,99,104,105,99,95,102,95,99,100,96,102,118,96,99,116,121,105,109,105,113,104,90,105,107,91,108,98,101,99,102,96,105,102,109,102,97,104,109,108,98,108,106,96,87,102,113,96,104,100,97,110,117,88,99,100,102,107,108,93,102,100,85,104,102,101,106,111,103,97,101,91,123,90,106,89,108,106,99,102,108,104,103,105,101,87,93,93,103,111,102,97,92,88,109,100,109,94,104,102,90,102,118,112,99,108,108,108,101,95,101,104,105,105,105,103,109,101,109,108,110,109,122,103,103,100,107,100,118,99,100,89,106,118,106,118,104,90,112,116,92,102,96,107,113,99,107,107,105,107,99,106,104,105,96,113,110,106,97,104,108,113,105,95,99,91,104,101,104,87,88,91,106,104,99,95,104,109,101,102,102,99,110,100,106,104,110,103,81,108,91,85,120,93,99,115,104,102,104,112,95,108,112,101,105,106,103,97,91,97,114,105,103,99,104,98,107,80,108,95,109,90,110,100,83,110,105,102,106,108,109,106,81,104,104,109,93,102,119,101,100,97,86,108,100,106,102,101,97,99,108,124,92,109,105,101,101,111,104,107,88,101,98,103,106,111,105,112,115,98,108,108,110,98,104,106,113,87,106,99,119,102,105,89,108,103,106,111,109,111,112,89,116,127,116,101,108,103,95,105,115,99,102,110,120,110,113,112,93,105,106,104,97,102,118,102,111,134,95,112,106,99,100,100,128,103,105,101,98,103,103,105,110,102,94,107,102,105,117,102,113,100,101,99,101,117,110,109,118,113,106,112,105,112,103,100,111,90,109,104,98,106,101,96,90,102,100,114,110,113,97,108,98,97,113,101,105,103,106,108,95,95,98,109,113,110,79,105,108,96,102,108,105,101,96,115,110,108,98,106,107,110,90,106,110,101,108,102,106,102,106,78,103,103,103,95,105,116,100,89,107,123,103,101,109,107,105,102,103,104,109,104,112,98,102,102,108,100,97,105,99,112,108,93,102,107,106,99,105,98,113,103,97,101,110,98,104,105,116,90,112,106,109,102,104,105,97,102,104,102,106,100,109,95,87,99,93,103,101,102,97,102,96,99,106,104,106,95,92,92,123,100,104,110,102,105,95,102,108,104,100,99,97,95,98,102,109,113,105,98,112,99,90,102,96,102,96,95,106,99,106,112,97,105,105,112,108,105,106,99,110,102,108,101,92,106,109,107,100,112,112,108,89,99,99,103,104,109,98,101,114,110,98,98,100,107,114,105,103,101,98,105,109,95,105,107,104,102,116,102,112,98,104,108,106,116,103,104,101,87,103,98,102,99,106,95,118,105,104,106,96,90,112,95,99,111,89,104,102,115,104,95,101,106,93,108,101,104,113,102,106,105,104,103,109,106,85,101,98,103,100,103,105,94,109,101,121,93,112,105,108,113,113,91,104,94,93,103,106,101,98,95,113,115,112,93,108,92,108,94,111,99,99,121,94,111,109,99,105,100,106,95,107,104,112,107,104,108,105,93,102,106,97,104,104,101,106,112,103,106,101,108,97,92,98,102,105,116,118,98,73,94,97,103,101,110,108,101,112,105,95,121,108,105,105,107,107,109,117,103,97,99,109,106,100,100,114,102,102,105,102,93,95,100,99,106,103,109,112,101,94,108,110,102,100,108,98,102,65,98,102,93,111,104,98,91,104,102,94,100,100,101,105,102,104,96,112,112,100,76,103,104,98,110,98,100,105,103,98,83,103,91,107,104,104,109,102,106,111,101,103,90,100,111,116,113,103,103,106,109,97,102,99,102,117,103,100,125,107,100,102,106,102,103,108,101,107,109,78,100,104,96,107,104,84,100,74,80,73,108,100,112,98,100,104,102,109,103,109,103,103,117,117,108,99,106,93,104,107,97,94,106,104,106,103,111,103,94,110,97,106,104,102,117,108,114,104,103,111,103,104,91,102,101,111,99,105,115,105,103,120,106,105,95,99,110,105,112,100,114,106,108,97,105,108,109,113,88,106,101,109,108,109,87,104,114,104,110,115,101,104,100,110,106,96,100,96,98,105,111,103,92,111,98,109,104,104,104,96,128,96,114,109,97,105,108,111,99,106,116,111,109,108,101,102,108,104,99,103,111,99,97,105,104,97,96,108,103,107,95,100,120,103,102,107,101,100,89,100,103,104,103,100,104,102,97,108,116,98,85,94,110,101,100,100,104,102,105,104,106,99,108,102,108,132,100,94,107,106,95,99,105,109,113,102,91,93,98,103,101,128,112,85,121,97,105,99,95,92,93,108,106,103,97,102,111,111,105,113,98,101,100,83,101,98,92,114,103,107,92,106,101,100,113,111,113,90,112,101,100,94,94,105,96,103,109,111,102,94,104,104,103,107,110,103,116,110,106,107,98,92,111,108,104,100,116,108,104,105,96,96,81,96,109,108,105,98,110,105,96,103,104,117,101,83,111,116,93,100,95,98,132,89,105,107,108,108,108,100,104,112,133,107,101,88,97,109,101,101,106,102,99,97,101,109,102,111,94,100,113,113,101,98,105,91,103,105,113,95,107,103,102,98,109,95,100,101,99,104,105,99,118,113,104,105,113,82,92,107,100,109,112,94,98,115,125,102,113,96,100,99,103,99,100,88,98,97,115,109,109,107,103,88,110,80,95,91,101,104,96,107,86,99,98,114,111,110,97,109,93, +467.70667,100,87,81,102,101,99,110,101,103,103,113,111,95,97,85,100,105,94,99,113,103,94,103,107,107,104,123,106,98,106,92,104,94,94,108,89,109,84,106,89,98,98,103,94,100,105,109,105,105,117,79,91,103,115,106,107,89,95,98,102,112,100,100,91,113,110,105,93,94,91,104,121,97,101,99,98,73,112,106,102,108,99,102,113,101,95,91,99,82,99,107,119,94,106,90,114,105,96,103,115,90,100,103,102,94,107,101,100,101,104,65,104,109,96,91,86,101,99,103,95,97,113,103,106,113,100,102,98,106,105,93,122,96,107,69,105,110,96,96,92,108,114,102,101,96,105,113,97,102,108,102,101,111,92,99,108,107,96,100,97,97,109,95,110,112,99,108,101,100,109,98,100,98,108,112,98,88,83,112,105,100,112,95,105,94,102,99,104,104,94,94,125,103,95,99,102,95,108,113,99,97,104,102,101,104,96,102,101,116,105,103,110,119,91,106,106,97,104,96,98,99,96,92,104,105,94,100,114,106,95,101,109,111,105,105,110,98,102,109,106,94,100,97,103,91,94,101,103,108,110,96,105,92,108,91,102,103,107,132,96,98,98,108,93,102,111,103,106,95,99,94,98,91,109,103,114,105,98,108,109,103,97,101,103,98,91,102,104,111,103,105,109,103,113,91,108,109,98,113,103,72,92,104,100,111,106,109,119,101,113,100,107,102,132,106,97,97,89,95,103,119,101,107,99,105,92,99,96,117,99,104,97,104,88,103,102,100,104,99,109,107,99,95,93,112,107,108,105,103,99,102,91,89,96,112,99,108,103,100,109,99,93,102,88,104,97,112,105,97,107,103,98,109,105,106,98,115,108,91,108,85,102,98,95,105,97,101,100,105,82,106,86,103,138,95,107,93,104,100,110,103,110,98,99,97,95,102,94,99,102,109,91,94,99,97,75,99,95,94,104,100,108,103,100,96,101,106,95,94,92,100,106,103,108,83,127,102,123,100,102,113,100,115,100,108,115,94,107,111,114,91,113,94,110,94,96,97,87,98,107,97,107,105,105,109,102,107,110,95,104,120,104,94,102,104,92,93,91,101,108,101,98,106,104,106,108,99,126,112,92,101,108,99,100,107,96,109,84,99,100,118,112,108,91,99,115,120,99,102,102,83,99,98,103,109,108,101,101,107,103,98,97,103,98,95,109,114,111,97,107,100,106,105,95,102,114,94,93,93,99,106,94,98,98,94,96,97,108,103,134,104,106,117,92,105,107,107,104,96,98,104,78,104,100,98,103,111,102,110,100,101,90,105,127,105,110,96,127,110,108,97,103,106,98,98,98,76,115,98,111,114,101,102,120,109,101,87,116,92,99,104,106,100,89,101,85,96,110,99,104,100,111,100,104,121,95,100,100,96,107,111,88,101,101,105,101,113,105,104,112,112,89,95,104,101,93,95,100,95,98,110,104,104,112,101,99,96,100,109,102,101,101,105,99,96,109,107,112,95,107,104,87,90,105,88,96,104,113,101,105,107,106,105,105,86,105,94,108,96,111,95,101,105,124,108,98,102,104,125,116,102,99,113,96,102,100,108,105,108,92,93,103,102,99,103,113,95,107,108,104,117,94,108,109,91,99,102,106,90,101,102,98,105,95,98,101,92,99,98,102,105,90,116,97,94,106,96,96,104,103,107,97,83,101,117,104,97,107,103,105,112,98,89,100,99,105,100,106,106,103,102,101,91,100,74,104,75,117,107,95,108,99,109,101,102,102,92,99,109,91,100,107,101,103,100,106,99,94,108,96,102,99,103,101,106,73,90,98,88,102,120,97,103,112,102,76,103,82,106,110,115,99,100,102,94,106,115,104,100,100,96,98,102,103,89,109,98,102,94,112,89,104,97,104,99,105,86,98,100,105,97,110,112,109,110,101,96,86,111,98,116,101,105,118,100,108,106,99,107,102,109,100,100,97,102,102,103,110,109,92,103,104,98,106,103,98,102,91,98,106,116,112,100,98,91,106,122,108,80,105,95,108,117,100,112,94,95,104,95,108,100,100,109,111,110,101,106,103,99,107,112,109,99,104,102,95,84,102,103,102,103,101,104,93,95,104,106,107,102,108,102,102,109,103,114,100,86,98,100,106,96,103,101,100,124,106,99,109,102,113,103,101,101,106,107,102,104,99,106,102,103,103,101,98,107,102,94,105,92,93,110,95,119,101,109,102,105,105,96,104,100,121,102,103,100,110,97,117,109,118,96,94,93,100,102,88,97,105,89,100,116,94,117,114,111,101,95,104,97,91,101,97,104,100,113,94,96,106,105,116,113,105,99,95,112,113,103,108,105,99,102,100,101,101,100,95,107,97,93,110,114,89,104,96,104,102,108,94,108,104,111,113,108,105,95,110,115,102,84,104,98,90,117,98,96,88,85,92,96,97,103,114,113,108,92,125,105,108,87,90,101,107,104,109,99,105,87,87,114,108,92,103,118,101,109,98,100,111,114,103,98,97,98,96,106,109,98,99,119,106,97,112,105,105,102,97,96,95,125,81,105,99,110,101,99,82,101,109,108,102,97,102,111,76,106,99,109,120,114,100,106,103,98,99,96,116,107,100,118,117,102,98,103,105,103,102,109,116,97,109,99,93,100,90,94,106,106,106,109,119,99,93,118,102,93,117,105,104,115,95,117,106,100,96,104,99,103,103,94,108,101,95,133,117,105,104,97,103,118,104,115,103,96,115,109,108,100,99,103,104,102,102,93,117,106,92,102,104,109,105,100,109,100,102,96,124,105,121,106,103,81,97,99,114,102,103,102,90,99,106,102,95,102,106,121,113,101,111,84,97,110,106,102,102,85,96,95,104,103,110,112,103,94,92,95,96,111,104,108,106,103,102,91,109,108,99,109,105,97,117,106,104,106,100,104,105,105,101,118,110,105,100,98,102,112,101,97,94,96,108,94,113,113,104,80,101,96,100,106,91,107,98,105,84,108,110,102,111,96,104,112,99,100,97,117,103,120,100,102,99,101,73,83,113,104,96,107,107,100,105,109,100,121,100,96,118,105,94,102,106,94,105,106,95,114,88,102,115,104,99,95,104,103,111,105,133,113,117,98,108,102,102,90,100,106,97,106,94,106,104,110,93,98,117,103,84,104,102,106,112,95,98,109,104,100,111,105,101,102,106,101,96,110,101,103,109,110,91,103,99,101,101,96,105,95,115,111,108,95,101,98,104,99,104,99,97,109,108,116,74,108,109,115,92,111,107,98,102,107,105,106,97,105,102,107,97,114,100,107,96,100,116,105,94,107,102,109,107,103,96,115,100,100,109,91,102,103,90,108,108,75,96,111,104,100,109,97,91,92,99,109,100,105,102,102,114,98,103,101,99,109,100,103,106,113,108,98,108,98,96,99,108,103,98,90,116,95,99,104,109,106,101,103,95,93,108,107,110,104,103,102,107,106,78,97,102,99,80,100,112,101,98,81,99,107,104,104,106,96,90,86,100,99,102,98,99,97,107,105,95,107,96,93,109,101,105,128,110,97,112,101,102,105,100,114,100,98,96,96,104,112,96,108,97,99,106,98,88,105,99,105,76,103,98,106,115,103,105,98,97,92,109,100,98,97,90,104,99,102,92,105,97,113,89,99,99,98,83,110,108,94,99,92,103,99,106,99,109,109,88,112,103,104,115,101,112,105,103,109,90,105,101,93,112,103,101,115,107,104,99,108,103,100,97,100,109,88,109,95,100,101,106,108,81,105,123,93,105,100,79,111,101,100,98,96,100,101,91,110,99,107,93,114,122,124,112,111,109,95,108,100,104,110,103,94,104,92,108,98,104,94,107,101,112,98,110,112,103,107,97,107,106,120,113,105,103,103,111,88,105,93,98,99,88,120,87,103,105,100,99,98,111,104,105,103,89,108,103,108,96,112,95,101,98,100,94,87,97,109,96,95,109,103,99,109,108,100,102,106,108,100,112,97,116,111,116,99,105,80,109,108,105,92,106,104,96,100,97,98,109,87,101,111,95,109,108,111,98,88,97,108,102,95,102,107,110,109,104,116,112,106,91,91,109,98,107,99,105,98,97,101,118,109,115,118,103,90,120,92,98,100,99,108,84,103,103,98,107,100,108,101,109,80,107,107,105,86,101,103,97,113,115,86,98,100,103,101,96,95,112,114,99,97,104,104,108,102,102,101,97,109,102,103,117,101,124,102,104,95,107,102,106,105,94,99,99,98,111,106,96,99,99,100,102,98,103,105,94,102,103,100,102,102,88,98,98,98,94,109,103,91,109,103,92,105,90,109,96,100,132,109,103,100,112,112,96,106,98,117,114,98,107,109,101,100,103,91,98,110,102,112,109,98,102,110,113,99,105,83,106,99,106,104,106,107,114,105,108,94,94,100,83,100,107,103,106,89,101,98,93,87,109,92,92,99,88,105,94,106,108,94,84,103,100,90,102,102,112,102,109,96,98,98,95,117,103,94,100,98,106,94,113,93,109,105,102,104,102,87,100,92,96,95,94,104,120,103,105,108,113,100,117,105,94,106,101,95,98,104,98,95,76,105,104,98,83,115,107,91,102,101,101,106,119,102,99,98,114,100,94,98,129,99,113,90,104,105,108,116,96,100,96,111,98,93,104,98,102,106,105,104,102,108,102,107,102,104,94,108,99,97,92,95,117,126,85,118,99,96,92,103,107,112,99,104,101,124,102,105,100,87,95,92,117,93,121,103,90,103,96,110,101,95,101,95,93,100,115,98,113,104,108,102,103,101,108,100,103,110,101,94,105,100,98,104,103,89,98,109,98,92,105,108,90,112,86,118,106,95,109,101,65,99,90,109,109,86,88,93,107,106,107,109,115,126,112,102,102,107,105,112,93,89,91,124,104,96,106,97,90, +467.84714,104,90,89,113,100,111,101,99,101,101,109,104,86,111,103,118,102,107,120,98,109,104,86,119,100,142,107,93,97,100,98,103,88,99,103,104,98,110,102,94,99,103,94,105,104,110,105,114,107,90,95,95,115,98,102,99,101,99,100,67,104,94,104,95,106,97,97,92,107,106,122,108,105,103,97,105,106,100,116,114,98,101,100,99,106,110,102,111,103,114,104,97,101,99,100,95,103,93,110,99,108,103,104,105,94,110,109,115,99,107,108,88,115,104,101,97,105,110,84,107,100,108,115,99,102,105,99,107,119,105,94,105,93,102,114,102,105,104,100,102,111,102,105,109,97,102,110,110,99,107,92,78,115,86,90,95,104,97,105,102,85,82,108,109,121,106,104,103,97,95,104,96,110,94,103,101,97,87,114,101,99,108,109,103,100,100,99,100,102,93,114,101,102,88,96,100,94,90,114,107,107,105,99,100,89,101,107,110,100,110,96,113,109,106,106,103,108,102,102,104,101,113,111,106,102,117,110,110,105,96,110,114,98,109,111,101,101,99,115,104,74,119,108,110,76,103,94,98,100,104,101,106,112,118,101,106,97,109,98,107,97,95,102,110,100,98,120,102,102,101,94,106,90,112,101,100,105,100,113,104,104,92,115,101,95,112,98,103,104,98,100,118,99,104,100,122,106,102,108,114,105,67,111,112,103,102,111,112,109,118,95,95,100,114,109,97,95,110,107,96,103,104,107,111,98,108,108,98,96,110,106,96,102,96,98,107,115,113,88,99,105,104,104,104,106,95,101,113,109,107,94,124,102,103,109,99,108,118,99,110,103,104,107,99,101,104,112,111,104,109,100,93,106,102,101,109,112,98,101,100,102,97,101,127,95,104,109,100,92,101,116,95,103,111,106,100,110,111,102,110,97,103,96,100,99,108,104,109,107,108,94,114,115,105,114,68,105,97,105,95,96,102,95,90,105,103,120,101,92,105,114,115,109,104,100,103,104,118,86,114,106,102,103,105,102,96,95,112,110,106,115,104,103,114,106,96,111,97,104,99,105,107,102,114,94,107,99,98,91,98,103,105,108,95,101,101,101,99,102,105,109,104,109,78,102,97,102,89,100,92,118,116,107,83,94,106,97,114,109,92,98,99,105,112,100,104,90,105,107,100,104,134,107,97,115,99,106,99,110,109,109,102,105,103,102,109,104,114,107,106,94,104,102,101,96,109,108,97,95,100,116,104,105,98,120,115,106,99,104,106,102,97,104,97,99,108,93,100,101,104,107,91,110,111,111,110,108,105,101,108,109,103,105,110,108,95,107,108,100,107,99,107,110,117,103,96,104,98,73,112,110,108,87,103,115,107,111,108,109,106,105,114,102,107,107,100,107,112,101,107,109,102,102,92,107,102,111,104,106,101,108,103,99,98,105,98,98,98,101,105,106,97,111,117,110,103,115,89,93,111,104,113,106,111,105,99,99,97,112,100,78,114,114,98,99,104,100,101,100,99,84,121,102,112,84,103,106,97,106,120,107,111,110,99,98,114,100,106,112,94,92,108,110,92,101,101,99,118,113,102,107,108,98,109,108,104,108,103,96,92,104,102,96,112,100,121,101,111,109,99,110,107,112,103,99,95,105,103,104,96,102,107,121,117,91,91,114,101,106,100,116,105,92,102,101,97,118,99,111,101,107,110,102,95,101,113,98,99,117,112,112,107,108,103,101,124,107,113,102,92,113,113,105,102,95,104,77,96,117,101,113,99,108,104,109,102,104,110,116,98,117,104,102,104,96,95,101,111,109,98,103,102,108,118,94,99,104,96,100,100,106,95,100,94,91,111,124,112,100,84,110,93,104,88,115,100,106,99,110,102,120,105,113,110,122,118,104,96,108,108,105,105,99,100,78,99,106,102,98,111,103,96,117,100,107,116,102,102,97,103,99,99,110,97,98,96,107,106,108,108,111,90,112,96,120,104,110,111,124,108,100,109,98,91,98,103,106,107,114,110,109,114,105,97,102,102,106,121,108,97,98,106,102,103,100,106,117,95,119,111,121,124,114,118,101,108,90,114,104,99,113,109,112,103,110,96,108,117,109,98,114,100,126,106,108,110,106,97,111,98,107,100,100,105,91,103,103,95,89,103,101,94,100,113,101,103,108,97,103,112,108,110,104,97,106,109,106,128,108,109,101,107,130,103,98,95,107,100,105,91,104,103,106,106,103,106,103,98,95,99,102,104,109,95,106,105,94,109,114,105,105,121,106,92,95,108,105,94,109,122,103,107,113,107,104,96,113,111,103,99,89,91,111,108,107,109,106,101,106,104,110,108,107,95,102,112,117,105,113,96,104,105,111,110,103,97,99,110,108,102,113,101,96,110,109,109,99,111,114,94,113,104,105,102,98,102,103,99,110,102,128,109,108,102,116,93,99,112,100,99,111,114,99,97,104,107,117,113,88,102,128,103,92,106,109,114,114,112,106,102,103,107,100,108,102,108,100,113,99,102,98,104,116,106,101,105,116,94,98,102,102,124,98,103,123,102,90,84,107,102,106,102,120,105,103,114,115,97,111,105,106,103,110,100,112,105,115,99,101,96,109,108,93,109,92,102,83,100,100,111,101,97,109,109,110,113,105,117,101,110,102,95,102,73,108,107,90,111,102,95,104,89,113,110,114,102,101,101,103,107,107,110,106,103,99,111,105,99,102,113,106,105,112,110,102,111,113,99,103,99,95,104,98,112,102,106,113,116,99,105,101,112,99,106,108,109,109,97,112,99,107,101,96,95,94,107,109,102,115,104,117,107,103,106,94,100,111,111,98,114,106,104,103,86,86,93,103,102,108,112,100,102,98,99,109,98,107,99,103,112,118,114,95,105,113,108,103,106,110,107,91,96,107,112,111,99,100,98,109,100,111,104,109,95,95,97,102,96,82,99,107,107,106,111,114,95,108,97,109,101,102,111,104,121,111,110,96,111,113,115,108,116,98,105,117,109,110,102,112,105,110,107,112,98,98,106,107,108,100,114,102,127,103,112,99,100,104,99,116,107,101,120,105,99,110,106,114,100,123,112,102,114,104,96,110,80,111,113,110,103,104,106,102,108,113,101,112,103,102,111,106,117,109,103,110,117,105,103,97,112,101,110,93,108,111,99,102,116,103,116,105,109,103,108,113,109,96,88,120,96,106,120,101,117,116,110,100,91,124,98,112,110,113,94,103,108,104,99,107,106,100,102,101,101,103,107,107,97,105,108,104,99,111,113,113,105,117,107,95,106,106,91,99,111,101,110,114,107,101,101,110,104,110,104,101,96,125,115,100,98,107,109,128,87,119,99,100,103,107,100,104,100,103,103,113,110,112,116,111,109,104,109,113,111,95,115,103,128,109,101,100,115,94,104,102,110,109,100,113,86,101,108,94,109,106,106,103,98,99,111,112,115,106,106,106,111,101,112,100,110,114,101,105,115,101,107,112,103,92,98,106,103,103,102,102,109,115,94,113,89,105,81,104,95,99,97,105,109,113,103,104,108,92,98,109,99,113,104,102,96,74,107,105,93,109,103,104,103,102,103,100,99,108,103,110,104,107,111,99,99,98,96,102,105,104,99,104,105,101,96,94,104,112,98,104,88,117,100,106,107,102,112,107,98,101,95,101,100,97,100,103,102,106,76,87,101,102,99,112,101,109,113,102,106,108,102,104,98,108,91,105,100,108,108,102,96,117,110,100,102,97,96,94,106,104,102,96,107,107,102,106,104,120,98,101,114,103,96,106,110,116,101,109,101,104,108,102,104,97,101,117,100,123,117,113,104,114,110,99,108,115,103,121,108,106,106,105,106,104,98,121,112,95,109,111,97,106,106,121,97,109,106,115,102,122,102,109,103,91,105,84,109,101,102,108,102,107,100,110,119,103,95,98,102,108,110,100,106,106,111,107,97,112,98,107,102,90,116,107,110,105,106,111,105,96,122,103,101,110,112,127,108,105,95,112,108,105,99,110,116,113,111,109,106,98,102,96,113,109,111,118,113,94,102,108,110,112,112,111,116,108,109,102,114,103,83,111,109,116,102,114,109,112,113,103,106,84,110,109,103,106,112,111,103,118,115,106,108,96,98,103,106,120,105,106,115,108,106,106,105,111,108,100,128,102,99,103,103,110,119,112,106,101,105,120,99,85,106,109,120,110,113,111,99,105,102,110,104,111,113,112,117,100,104,100,105,108,104,90,105,92,125,100,101,100,99,113,102,117,112,107,117,118,102,100,98,109,107,118,102,121,91,111,106,107,111,81,104,101,102,104,114,107,88,99,98,107,116,129,104,106,104,114,99,107,103,107,120,113,114,105,97,105,108,106,92,111,111,104,98,108,107,108,104,100,107,108,114,103,109,101,110,107,119,109,103,113,106,113,99,99,94,98,97,101,99,102,110,99,112,114,113,112,107,99,99,102,107,115,106,108,113,122,109,103,100,110,113,121,117,107,112,113,112,115,111,101,112,105,113,97,110,104,106,108,115,101,108,104,104,112,97,104,109,100,107,107,107,114,86,102,108,91,104,103,87,107,108,103,104,105,117,109,108,86,110,108,108,103,109,111,111,99,108,109,112,114,104,105,111,100,102,116,100,110,117,110,111,124,103,102,106,116,101,103,96,106,100,104,106,108,106,108,116,102,110,104,100,107,108,91,92,106,121,111,98,118,107,105,99,107,104,79,105,114,98,109,112,106,101,105,103,94,105,107,95,122,102,119,113,115,95,93,113,97,102,99,113,109,121,114,113,103,108,111,105,103,100,109,101,116,108,97,106,100,103,101,114,107,107,108,108,100,106,103,97,103,99,105,130,88,109,107,91,106,103,105,101,108,98,115,98,96,77,113,109,107,111,99,108,112,105,114,102,107,94,111,105,95,105, +467.98761,107,96,106,111,93,106,109,106,104,91,98,91,105,116,109,110,82,100,101,106,105,98,104,103,102,108,92,108,114,98,112,102,117,81,82,100,108,112,95,109,104,107,101,105,90,106,97,96,106,108,102,99,103,98,117,96,107,98,116,107,96,104,101,105,126,110,86,123,96,105,104,106,109,101,105,105,107,97,101,94,105,105,108,126,103,99,107,112,117,95,110,95,101,99,102,95,106,98,96,99,95,95,120,104,106,107,103,111,99,96,108,100,105,110,106,101,96,108,106,107,98,95,105,110,104,107,106,101,105,102,86,99,105,114,105,100,99,106,105,104,85,96,93,90,94,106,102,103,107,99,99,99,121,95,98,106,104,104,102,110,116,104,91,109,99,106,99,112,103,97,113,118,95,96,100,100,101,95,112,109,92,127,103,91,113,103,110,94,103,98,98,98,100,102,108,103,95,107,104,106,91,95,108,113,107,104,106,87,118,86,79,89,104,115,106,93,105,100,103,89,102,105,106,104,92,107,110,107,109,105,98,104,95,99,110,102,103,101,100,100,104,101,126,111,94,105,100,100,103,107,111,122,106,109,99,104,94,106,99,100,88,99,96,102,92,101,105,95,108,109,106,114,97,101,108,102,108,96,105,106,107,125,98,100,106,101,91,97,100,109,89,91,106,101,123,112,121,106,99,116,103,102,98,103,103,98,96,108,106,104,103,113,99,114,106,94,109,99,102,105,90,98,101,116,114,101,97,107,108,100,99,102,101,103,102,105,101,86,102,120,105,101,96,104,106,103,105,107,105,107,97,117,118,120,110,103,107,106,109,110,102,97,99,95,106,107,97,109,99,97,105,103,101,106,107,99,111,94,102,108,87,102,99,102,87,96,96,94,108,106,113,109,94,98,96,101,115,100,103,117,100,98,114,97,95,107,100,107,104,100,107,103,110,102,113,105,98,103,113,101,91,119,103,107,106,101,103,104,87,106,105,110,106,100,104,99,112,107,108,101,100,96,106,104,97,102,94,103,117,94,100,89,115,100,102,108,99,104,102,110,106,102,105,93,100,127,114,91,108,108,109,114,93,101,103,108,115,94,106,114,103,93,113,106,108,97,111,104,100,73,96,107,103,106,110,99,101,109,99,88,102,113,110,68,95,105,92,113,109,88,103,104,98,118,100,96,106,109,109,99,112,97,93,110,96,105,109,101,104,109,87,109,101,93,99,99,102,102,97,107,96,90,101,94,101,109,92,104,98,104,111,106,103,106,93,87,102,100,92,97,105,106,108,107,114,97,109,108,95,94,97,112,96,116,115,104,99,104,107,111,109,101,107,101,92,106,106,98,100,98,95,93,103,96,109,117,102,114,111,110,101,109,100,103,106,96,112,107,108,106,94,104,107,101,107,103,114,101,113,103,104,114,97,106,104,95,100,91,111,108,113,107,113,104,96,102,101,104,105,101,112,123,103,104,107,85,110,82,100,109,98,111,95,107,114,102,99,113,108,87,103,99,106,117,92,104,112,101,95,103,117,109,103,102,93,115,85,97,101,100,100,98,99,110,98,102,101,96,97,105,98,111,109,102,99,102,109,101,101,93,102,100,115,95,101,111,108,103,113,110,100,103,101,97,82,107,101,101,104,95,97,107,104,109,97,86,96,115,121,108,105,107,90,100,86,99,116,106,110,105,112,106,101,107,104,95,110,102,99,100,111,106,113,96,111,116,84,92,104,105,92,112,95,103,100,102,98,112,100,86,99,97,117,103,106,98,104,110,109,99,95,100,113,100,102,110,104,106,109,97,106,105,89,110,109,98,103,114,122,103,114,101,98,94,116,110,118,108,112,94,111,107,99,99,83,112,111,117,107,109,95,112,97,103,106,106,92,108,104,96,122,95,115,96,96,109,107,112,104,103,97,116,129,110,123,99,117,95,98,101,100,93,110,95,108,97,100,89,101,103,106,108,107,102,101,102,106,89,119,101,109,96,99,113,104,98,90,104,106,112,101,107,98,96,96,112,100,112,99,103,103,107,106,99,107,111,106,113,115,89,102,111,106,109,89,93,117,99,104,114,112,101,96,97,100,93,99,92,117,109,105,101,106,103,92,96,97,112,94,114,112,110,91,97,110,103,104,99,99,88,118,96,98,95,92,118,105,119,103,103,116,116,108,98,121,93,98,110,96,107,104,115,113,112,115,102,97,98,102,107,107,104,109,105,105,105,110,100,99,106,101,106,99,106,104,106,103,88,96,98,106,98,113,109,107,96,105,104,108,105,98,104,94,103,95,100,104,114,83,102,103,102,107,111,111,106,76,96,105,105,101,99,105,104,106,117,120,117,109,103,104,91,103,100,119,103,104,92,111,105,95,99,105,97,108,98,99,110,112,101,115,104,103,102,95,100,104,97,106,99,105,117,105,108,106,90,99,105,121,97,109,127,101,99,107,106,104,102,96,99,113,96,76,106,97,98,111,102,108,101,104,105,104,98,107,119,112,87,115,102,95,97,103,87,112,96,91,103,115,112,96,110,97,111,104,100,115,99,113,90,108,103,108,106,102,94,106,112,96,105,111,103,102,94,112,102,107,98,87,101,102,90,104,104,95,103,97,99,83,103,99,100,104,98,95,103,113,115,101,110,99,99,104,97,106,99,92,100,93,111,100,102,98,94,106,109,104,91,102,101,97,107,106,104,109,98,110,109,103,105,102,97,109,96,99,96,106,98,111,128,97,102,107,117,97,113,108,102,107,99,101,110,100,100,108,97,103,113,99,103,104,120,116,100,113,120,108,108,108,117,108,100,105,101,110,90,95,104,108,108,102,109,117,94,94,100,108,96,73,106,88,104,107,117,101,102,98,107,106,102,104,107,90,108,95,97,105,115,101,105,96,119,110,101,108,101,95,110,99,128,109,102,107,121,110,105,94,83,116,104,93,103,102,95,84,101,100,98,108,114,107,98,113,109,103,98,120,113,109,95,101,103,102,103,110,94,96,104,92,102,108,101,112,102,100,103,112,91,107,102,104,100,105,107,107,105,101,99,119,109,112,105,117,68,105,98,105,106,110,106,83,98,98,90,88,95,103,98,100,105,113,108,105,106,117,94,105,109,108,99,104,102,103,111,113,100,98,113,106,99,108,99,94,101,121,105,108,106,103,102,97,108,99,99,99,94,100,103,106,102,97,99,100,103,96,84,106,100,98,96,98,97,102,103,117,92,102,98,94,117,108,101,101,104,101,104,105,99,105,108,105,107,99,104,114,107,95,111,99,105,98,102,117,100,98,100,113,97,102,85,110,94,111,114,104,110,103,80,106,85,102,121,113,112,110,109,68,101,110,97,105,94,103,84,98,92,118,104,108,114,103,110,105,104,98,103,101,109,94,108,119,135,107,122,104,99,109,102,95,112,76,108,98,108,111,93,112,81,109,105,99,103,104,96,100,102,101,99,104,110,94,102,96,102,93,101,110,104,102,89,100,115,107,95,98,107,105,113,107,105,134,110,95,116,100,108,117,74,102,94,105,111,114,102,96,117,103,95,97,98,108,107,121,106,98,113,107,99,79,113,101,96,101,106,109,108,113,99,103,94,101,97,90,104,102,97,103,140,91,109,96,99,109,106,101,104,106,98,105,108,96,97,105,119,97,100,105,102,107,107,101,99,109,103,99,100,95,103,112,115,115,105,108,96,100,88,111,102,113,103,118,108,104,108,69,107,109,110,103,98,104,100,96,91,108,112,103,95,102,100,102,107,98,97,99,88,101,106,108,95,82,103,110,99,105,105,100,90,89,112,102,104,103,113,106,93,111,113,106,106,96,102,109,91,110,111,90,99,93,103,90,102,95,115,100,93,66,102,90,98,104,89,112,108,106,110,99,111,103,103,104,105,104,110,117,98,88,110,104,100,105,109,99,104,108,103,109,100,107,109,113,97,113,95,95,101,102,102,107,107,110,96,68,121,115,107,111,108,102,102,99,106,108,109,102,109,105,93,98,99,102,106,106,110,105,105,91,109,110,98,107,121,110,106,100,117,105,96,116,98,107,94,106,120,110,115,106,102,109,104,105,98,97,98,99,96,99,107,110,103,104,99,106,102,111,104,87,117,108,101,131,106,96,97,98,117,99,102,104,106,100,95,95,91,102,101,102,98,100,103,98,111,105,94,100,99,113,104,93,101,82,105,97,119,110,103,97,128,109,99,105,113,101,99,103,89,113,100,106,106,114,94,97,103,113,99,106,99,115,102,90,95,109,112,102,103,107,115,111,88,115,106,114,104,102,105,101,103,104,103,95,104,99,99,94,99,113,109,97,95,108,107,97,114,116,100,106,98,102,87,100,91,110,84,107,98,103,95,107,111,98,96,106,102,112,101,106,115,99,98,102,104,97,106,98,113,109,108,101,99,95,100,106,101,106,105,93,102,103,126,101,102,104,109,105,99,102,97,102,90,117,103,95,103,107,100,118,101,109,112,100,98,107,112,112,99,91,105,102,111,89,109,88,104,107,96,95,111,98,100,102,99,109,103,98,97,85,104,103,102,112,110,91,113,87,91,121,92,101,95,102,102,110,99,104,99,111,106,99,104,105,102,99,106,110,102,105,80,104,112,105,86,83,97,103,116,102,102,108,123,102,109,106,99,109,104,107,98,112,107,99,102,95,91,102,108,100,110,100,97,111,96,86,94,101,95,105,99,112,102,104,119,102,97,84,107,108,101,80,97,99,115,103,108,102,88,118,99,98,100,103,100,85,114,99,103,96,98,79,99,96,106,96,109,104,95,103,129,92,98,104,99,98,100,98,103,87,115,105,99,110,91,93,107,113,98,102,103,95,96,105,99,88,105,99,107,100,107,100,97,99,118,100,109,96,95,101,81,92,103,104,98,113,98,104,99,112,94,102,113, +468.12808,75,90,97,120,90,99,108,100,108,95,105,94,97,104,97,94,90,99,133,94,100,101,102,104,95,105,97,105,96,101,90,128,86,108,112,95,110,90,101,114,97,100,109,107,101,110,92,106,108,106,100,92,108,106,99,103,104,95,103,96,103,102,94,93,106,105,97,110,99,93,98,101,104,100,84,115,110,98,94,98,95,96,111,108,99,99,109,120,104,105,103,107,104,100,93,117,111,100,86,100,98,109,105,105,102,95,100,101,101,84,97,101,101,107,85,112,105,106,103,108,107,102,101,95,107,107,100,112,109,100,106,100,108,106,117,114,99,75,94,94,107,90,103,96,104,102,106,113,101,101,110,109,104,97,83,103,101,112,101,102,105,98,74,112,100,102,110,101,104,100,110,109,94,114,108,100,104,108,106,100,104,113,100,97,106,119,103,97,99,85,98,104,98,99,101,106,97,107,117,120,104,100,99,110,99,93,107,99,107,110,102,96,100,81,102,108,106,106,95,98,100,104,107,102,102,91,118,105,107,102,101,102,115,89,103,108,104,113,95,109,101,104,107,109,99,99,98,106,102,98,104,102,99,101,104,114,108,109,91,108,93,104,102,102,101,69,98,99,110,105,86,114,99,106,97,105,96,101,104,83,106,98,96,104,96,102,105,101,107,117,102,97,115,98,98,99,99,94,106,110,120,103,99,118,109,110,112,107,100,110,92,112,98,91,100,100,97,107,95,114,103,83,103,99,114,102,99,101,111,106,103,105,115,98,106,101,109,105,105,104,100,102,125,93,109,117,100,107,123,97,103,98,106,99,108,101,93,118,91,95,103,98,101,92,96,109,98,105,98,116,110,109,107,106,107,103,106,110,117,115,97,112,103,101,101,103,99,91,103,101,103,92,96,99,93,98,113,104,95,113,96,107,131,102,120,102,102,100,108,99,89,97,100,108,101,94,101,95,111,112,98,101,101,107,97,105,99,100,98,108,101,104,92,102,109,101,99,109,102,101,110,114,111,92,89,106,95,110,89,106,104,94,104,106,102,103,96,105,113,95,112,103,103,107,102,101,108,99,108,82,100,108,98,112,103,101,100,112,102,92,111,114,108,98,98,91,110,101,101,102,114,103,104,108,98,105,108,97,107,102,103,112,100,101,103,106,90,111,108,103,102,119,108,104,112,89,86,88,115,95,95,113,99,112,98,97,110,103,97,99,97,106,121,107,106,91,99,96,101,110,95,99,91,94,107,100,106,107,93,121,102,100,106,105,101,98,104,102,104,114,108,96,102,100,96,105,98,97,103,91,104,100,109,98,99,104,109,105,106,123,88,101,109,100,113,105,103,90,112,97,99,98,96,108,108,105,95,109,100,118,103,99,110,100,91,99,104,81,104,112,97,114,114,98,104,103,112,98,113,107,106,108,100,106,116,110,94,115,95,119,105,99,101,108,106,107,101,104,108,121,109,103,97,92,115,105,124,105,107,98,101,114,117,114,99,103,106,100,109,108,102,103,94,82,97,112,102,103,102,102,104,116,105,76,101,117,107,99,106,105,109,99,113,87,101,89,105,94,107,110,103,94,101,100,98,103,110,84,121,106,121,98,102,109,85,108,107,117,108,100,110,104,99,93,96,105,103,93,111,106,113,101,108,104,100,99,106,111,100,105,98,116,109,106,104,103,98,103,104,108,103,110,107,100,120,104,102,100,100,113,111,100,118,105,91,106,97,108,106,114,101,96,97,107,99,101,107,105,101,109,105,104,98,110,105,98,99,102,102,99,101,111,113,103,101,107,96,104,99,105,108,105,90,105,99,100,95,102,105,110,103,100,113,94,120,116,115,105,82,121,115,92,102,98,100,99,105,111,109,107,110,124,108,87,114,98,101,91,105,103,80,99,108,70,113,107,109,102,106,109,101,101,95,109,100,102,97,103,100,109,104,108,90,104,106,106,91,125,106,94,96,98,106,103,107,93,83,108,114,101,99,105,105,112,98,112,102,100,102,114,104,101,115,109,106,102,98,107,106,112,118,109,102,89,113,101,107,120,105,109,100,106,102,115,92,106,106,97,101,103,92,108,103,108,118,102,110,96,109,99,109,106,113,117,99,110,105,104,92,98,99,97,105,112,97,108,100,105,112,104,100,114,103,107,105,104,90,100,109,110,103,87,107,105,109,119,102,101,91,107,104,101,109,104,105,116,112,103,100,108,94,108,109,97,107,99,100,94,97,112,109,110,111,88,102,100,99,92,93,104,100,97,110,114,96,101,95,106,93,101,104,95,105,109,90,110,112,107,100,100,100,76,101,102,93,104,102,104,103,98,99,98,104,108,114,107,81,107,103,106,91,115,101,106,109,83,104,107,102,111,103,112,98,99,104,104,101,100,90,99,103,110,108,70,89,98,116,104,106,105,102,107,98,86,95,115,89,109,114,100,99,101,96,95,98,103,105,96,101,101,105,112,109,91,108,114,88,88,114,95,115,108,113,103,87,100,105,102,108,107,95,98,95,110,101,108,100,109,101,106,109,109,102,97,105,101,105,107,92,106,99,99,96,109,104,103,94,99,105,101,105,103,94,109,99,109,106,108,93,101,105,103,102,104,83,105,114,98,102,102,108,99,104,105,99,97,105,98,85,102,95,101,106,94,107,109,106,96,105,103,103,107,108,92,104,98,111,103,108,100,107,119,106,119,104,117,111,100,110,108,98,107,106,107,101,113,98,104,100,100,106,102,106,106,114,98,97,96,100,101,93,119,89,107,107,104,101,108,104,101,101,108,98,107,98,89,108,114,101,109,104,86,103,103,102,102,108,102,105,106,102,102,104,102,98,99,104,116,98,87,95,103,102,93,100,110,101,112,97,108,100,79,104,104,97,111,101,67,107,107,114,102,90,102,113,104,105,114,100,113,101,109,98,96,107,108,98,98,112,100,100,112,103,101,107,104,99,100,100,107,111,108,110,104,99,106,102,102,109,102,98,98,99,93,114,105,104,114,104,96,114,108,100,109,117,101,105,99,102,99,103,98,104,114,115,98,103,107,107,108,111,99,119,100,99,113,103,99,101,107,106,123,99,91,107,100,93,124,94,105,103,106,95,91,102,93,106,93,102,105,104,106,98,107,111,102,101,111,103,99,89,91,110,106,100,107,95,88,107,111,104,108,105,99,105,101,105,98,97,94,94,111,97,117,100,100,103,104,112,102,111,115,104,94,96,103,87,108,108,105,117,99,95,107,104,101,108,108,108,99,98,108,108,112,111,100,100,112,95,84,106,91,100,101,103,106,100,97,107,93,106,98,106,99,115,110,101,97,95,105,112,101,101,106,99,108,106,100,105,121,91,120,92,108,101,98,102,127,113,112,95,101,108,102,96,83,97,105,97,97,102,105,117,95,107,108,94,102,108,119,100,100,102,101,100,114,116,106,108,104,103,102,109,102,102,94,103,99,102,106,106,108,101,105,104,105,96,112,94,98,113,107,119,98,103,109,110,105,113,95,116,103,99,103,97,101,108,104,97,88,105,102,105,98,96,104,105,83,101,109,96,111,105,108,105,107,94,105,114,108,105,115,106,109,100,103,107,108,107,95,101,97,107,104,105,103,107,104,116,121,90,102,99,105,117,105,102,109,107,90,107,108,105,108,104,96,108,109,106,98,89,101,107,104,108,105,110,104,104,100,74,104,102,99,103,95,103,98,130,102,109,98,118,109,125,108,101,107,106,133,96,109,90,102,105,106,105,102,98,102,110,91,104,97,107,111,112,98,103,110,98,99,107,108,99,106,90,110,108,104,102,117,106,109,104,109,112,110,103,99,112,108,105,105,106,109,105,99,98,98,97,111,107,108,100,104,122,98,109,107,111,103,113,98,104,95,100,111,108,100,109,105,97,102,117,102,101,107,99,101,99,100,95,113,103,95,113,98,99,98,105,126,114,93,96,102,98,108,104,107,97,99,109,111,95,96,119,101,110,103,109,115,103,108,103,106,93,121,98,99,124,105,96,103,102,98,113,102,112,105,115,108,99,105,95,107,107,107,110,103,106,105,99,100,100,106,94,112,100,107,100,107,111,101,96,103,112,95,104,112,102,106,109,108,92,105,106,106,105,118,109,102,100,105,76,99,98,95,98,108,109,103,98,104,98,107,100,100,71,112,96,100,100,93,99,100,118,94,96,92,107,101,98,100,100,101,104,107,117,100,102,94,95,98,109,104,106,99,117,111,97,111,79,96,95,104,104,106,105,99,104,93,99,106,97,105,100,108,108,87,93,99,112,102,108,93,103,95,96,106,111,107,93,102,107,109,104,99,102,121,106,90,115,108,109,108,108,70,102,91,111,96,116,102,111,116,104,113,110,87,107,100,99,99,101,104,96,88,92,94,101,106,97,109,93,96,113,95,97,105,93,98,91,100,101,104,99,106,104,94,107,100,103,92,101,119,88,97,109,106,110,109,107,97,80,91,111,97,113,110,105,92,101,103,113,117,104,103,101,113,99,104,90,110,110,100,107,98,95,95,102,100,95,108,103,104,116,105,111,107,110,91,95,99,109,91,108,100,113,94,96,116,108,95,93,96,91,102,104,111,106,93,93,99,101,111,103,98,103,113,99,106,104,106,108,97,110,109,104,93,99,105,104,104,104,101,113,106,92,88,111,92,105,108,110,102,106,99,97,88,107,97,110,95,94,95,108,101,104,99,109,105,105,103,99,98,105,98,92,99,94,107,108,124,100,116,99,95,102,101,109,104,92,108,93,109,99,93,96,91,92,101,92,106,94,97,85,91,97,101,100,117,116,103,105,103,107,113,100,108,111,107,98,115,66,126,116,104,100,103,112,105,105,92,107,108,96,103,96,91,106,82,101,103,105,109,104,104,103,107,108,97,88,102,105,81,102,101,99,92, +468.26855,86,125,102,120,97,109,91,104,123,100,87,101,96,108,100,102,98,103,104,98,111,98,104,100,102,106,106,112,111,108,104,114,101,83,103,117,117,100,105,99,106,87,104,94,104,120,107,114,107,95,102,90,101,99,108,99,114,106,123,95,114,118,102,103,102,104,93,105,108,108,110,105,76,110,103,114,112,101,113,130,107,111,107,105,112,111,100,111,99,97,100,104,94,98,101,100,94,114,119,101,113,109,99,104,106,112,106,100,100,121,103,102,107,105,102,88,92,106,104,92,114,89,76,105,113,116,117,99,115,99,114,110,140,109,93,106,99,106,117,98,114,105,112,103,116,97,109,112,104,104,102,98,103,95,108,108,96,103,94,104,108,99,99,111,111,100,105,115,97,101,95,98,101,107,107,102,109,102,102,111,116,102,92,108,102,113,92,112,97,109,96,104,101,104,104,97,114,107,99,99,102,110,102,100,102,99,99,114,106,107,92,115,113,99,112,98,96,99,114,105,103,98,75,109,100,107,121,121,115,101,106,114,107,102,110,113,94,116,109,97,118,105,111,106,112,97,97,105,102,100,104,112,110,110,107,116,109,99,103,95,99,94,103,108,97,103,96,110,107,106,113,110,87,95,112,106,122,104,97,107,114,103,90,123,94,104,91,108,105,108,100,107,117,102,110,105,110,108,107,93,108,102,103,118,94,112,119,92,100,101,101,110,100,104,110,98,106,103,108,95,113,91,105,107,107,103,110,99,100,113,103,109,97,103,101,105,111,108,101,105,108,103,110,97,98,97,112,118,105,107,137,102,108,91,100,118,103,108,98,107,95,118,103,99,104,106,103,115,100,110,104,107,107,101,107,93,107,102,117,104,108,106,105,112,102,88,109,93,113,95,115,96,118,104,94,105,99,107,113,112,100,101,95,97,106,93,86,102,107,100,96,98,111,107,108,96,90,103,117,92,98,108,116,92,105,100,94,112,102,94,94,108,115,90,103,83,108,101,103,113,117,101,99,101,99,115,109,103,114,105,87,99,108,107,100,110,111,105,110,110,98,114,118,98,109,117,101,108,103,105,105,106,93,104,108,111,102,111,90,105,105,100,121,101,113,100,112,101,102,97,82,103,103,99,103,104,108,116,105,94,109,106,115,107,110,100,107,112,94,113,103,106,95,119,105,114,113,106,118,104,109,111,117,106,114,98,107,104,106,113,109,105,103,94,109,105,106,99,94,112,102,102,96,99,119,100,113,99,105,97,96,114,104,110,100,108,116,106,88,105,106,102,98,107,109,99,100,98,110,94,89,104,115,94,103,105,100,103,100,119,117,101,123,104,86,102,104,107,108,108,121,108,102,107,103,101,117,100,104,103,94,126,101,108,104,99,105,102,118,94,104,107,115,117,106,105,103,108,111,110,108,96,98,113,108,98,102,114,106,108,91,102,106,99,104,110,101,95,97,101,105,109,104,95,89,98,104,88,112,111,102,95,116,111,100,87,113,103,106,106,116,105,98,100,114,96,100,96,98,109,111,108,113,109,109,101,100,102,115,106,105,97,107,96,98,101,107,106,111,100,107,110,104,117,107,94,101,118,99,101,102,101,118,106,102,97,106,107,104,108,98,105,111,115,92,99,113,95,109,95,100,121,99,110,102,99,100,111,114,106,108,97,109,100,109,105,105,115,106,105,99,103,104,104,108,105,116,99,105,116,98,101,109,99,109,104,106,94,111,100,109,109,99,110,100,109,104,100,96,96,106,105,98,105,115,104,113,105,100,94,104,104,112,99,106,102,94,98,102,99,112,111,95,106,108,106,94,90,104,102,94,100,107,112,115,109,97,108,126,101,113,114,101,103,115,110,104,102,105,103,99,106,109,100,95,101,105,109,110,93,102,103,103,105,98,118,101,108,97,105,100,106,106,93,101,99,96,100,103,94,136,99,101,106,99,109,105,108,112,126,97,103,82,114,101,88,94,100,99,114,95,118,105,105,101,98,103,103,96,99,116,112,102,107,101,101,88,104,96,112,103,104,100,106,110,106,90,106,101,112,107,99,105,116,105,117,94,109,101,105,94,109,119,103,105,99,109,102,95,104,97,99,94,113,104,105,110,101,94,102,116,109,110,108,98,103,91,100,104,103,108,99,104,104,99,100,112,109,112,103,106,105,99,107,102,94,103,105,88,101,116,111,114,104,110,95,86,99,101,110,105,101,98,105,102,110,98,91,97,105,103,103,104,97,103,109,93,96,94,93,110,97,91,106,94,95,102,95,106,105,108,85,97,92,91,92,99,101,112,103,93,111,101,102,106,118,106,109,102,110,110,106,111,94,112,103,110,118,120,101,100,105,106,101,112,109,89,70,100,105,80,114,97,106,113,99,110,101,106,103,104,100,97,108,84,104,102,103,108,109,106,102,106,99,107,99,98,102,97,110,98,109,101,96,99,112,98,109,99,107,91,100,103,115,117,105,98,96,104,117,106,106,98,101,87,96,116,91,90,100,109,81,117,105,108,92,86,96,105,101,97,117,106,105,99,102,80,112,99,110,103,109,107,102,99,104,118,101,108,108,103,109,106,98,105,106,109,109,105,111,104,95,94,100,102,115,99,98,117,105,111,93,111,92,103,104,98,106,96,109,107,102,105,92,102,108,112,103,109,103,106,104,99,101,109,87,104,107,101,98,107,104,95,103,98,102,113,102,110,94,105,98,108,104,88,101,103,103,113,95,107,107,106,97,102,104,139,106,101,100,95,103,99,113,114,97,108,108,114,100,103,105,99,89,98,95,81,100,104,113,99,87,101,109,101,93,110,102,119,102,100,108,98,99,83,102,104,99,105,94,106,108,93,104,109,108,105,101,99,106,101,82,103,113,104,95,103,99,88,100,107,105,111,107,104,87,103,113,113,105,95,113,101,74,110,110,120,104,107,104,114,104,94,101,107,105,107,100,100,103,115,117,104,116,103,105,99,108,76,100,103,102,93,92,106,120,99,102,100,110,105,112,115,103,94,101,112,106,91,100,107,105,94,96,106,100,95,104,111,103,99,108,99,91,107,108,106,107,96,97,90,112,97,110,108,101,98,91,104,112,105,107,98,92,103,88,109,100,99,99,101,105,101,116,101,104,109,101,104,117,99,104,94,98,98,97,101,105,102,107,95,95,97,97,104,102,102,104,99,104,104,96,84,101,94,96,106,98,103,104,105,106,97,109,117,99,95,106,110,98,92,104,112,87,96,102,96,105,108,99,99,102,104,110,99,108,104,111,101,108,100,111,111,109,99,113,105,85,92,96,100,101,92,111,115,101,86,111,96,106,108,112,97,114,126,108,91,99,114,110,106,100,92,98,114,107,109,106,114,105,107,114,104,91,106,87,94,103,85,97,80,99,102,99,100,109,96,88,102,100,101,75,111,109,95,96,109,102,108,106,102,91,101,100,97,101,93,100,102,101,120,93,97,99,92,91,111,97,95,93,100,112,95,100,77,117,102,114,101,104,99,95,97,104,110,114,109,95,111,98,91,96,113,108,96,102,103,93,104,110,109,108,105,104,105,109,98,102,109,105,118,105,108,100,107,112,104,93,107,93,94,105,97,102,103,111,108,99,100,82,99,99,92,106,86,98,103,90,122,103,101,98,105,108,106,104,100,91,104,111,105,96,105,96,97,97,104,112,100,102,95,116,102,102,98,104,98,102,105,95,107,105,117,92,94,111,110,103,95,97,91,98,103,104,109,89,105,91,94,101,107,112,100,100,102,100,106,105,101,102,97,88,92,98,100,106,103,103,105,97,81,99,96,96,104,108,100,94,94,102,105,105,107,99,104,114,105,108,74,110,98,121,99,93,104,80,112,105,103,108,91,85,114,99,109,96,102,105,98,102,101,110,108,94,108,99,109,102,101,108,105,98,100,99,118,98,116,94,99,89,105,97,104,102,97,99,104,95,102,99,97,94,89,113,98,103,130,99,102,94,104,97,97,106,101,102,101,104,105,110,95,108,102,112,103,105,99,108,115,108,99,89,106,99,102,111,112,103,105,97,110,119,88,84,102,106,100,107,112,111,105,90,101,106,97,104,90,110,105,103,97,113,91,113,105,116,92,120,96,108,107,87,100,103,95,103,106,120,98,101,103,83,99,99,88,94,106,100,103,101,98,102,109,100,108,106,110,99,101,115,112,109,99,106,100,108,104,93,117,101,109,95,112,101,102,92,108,108,97,108,106,110,102,93,98,95,103,114,105,99,100,98,113,101,100,117,108,108,95,98,101,99,97,103,106,91,98,101,108,106,95,104,98,91,102,97,99,101,98,103,104,98,103,97,106,100,101,100,95,96,100,68,99,113,102,94,109,104,106,97,98,101,93,101,103,99,107,115,99,98,105,100,105,106,95,99,99,91,107,105,93,89,104,102,100,99,111,112,102,102,103,94,98,102,95,106,104,100,102,97,99,102,101,100,117,98,99,107,105,97,100,103,97,110,85,108,95,104,94,103,99,112,68,112,106,101,116,103,102,109,83,93,112,105,100,116,113,96,113,104,98,103,87,109,100,101,115,95,104,91,106,101,108,99,95,110,106,79,112,100,94,88,95,127,102,110,125,110,101,105,95,94,101,104,94,105,128,91,96,89,106,103,107,85,110,113,106,112,103,101,72,88,91,102,101,106,107,106,104,87,96,98,101,105,93,92,110,99,96,103,96,102,106,102,98,103,90,96,105,79,97,86,105,97,92,91,101,87,85,102,113,105,97,101,116,88,83,103,99,91,97,97,87,97,100,109,95,107,106,113,102,105,102,94,94,88,87,113,91,95,104,101,92,93,98,92,93,87,98,100,103,107,88,99,98,102,98,107,96,102,98,112,101,98,100,64,104,102,102,95,98,100,101,116,113,113,105,92,111,112, +468.40906,128,102,105,105,106,106,90,97,92,108,91,102,101,113,96,93,90,99,111,116,103,106,106,94,102,105,90,107,120,101,102,96,98,102,105,93,113,112,98,94,112,96,104,99,106,111,95,105,103,100,100,97,100,114,103,88,103,96,103,105,98,104,74,108,105,91,105,110,97,92,110,112,88,105,102,104,87,99,93,87,96,109,93,105,102,100,97,111,96,103,95,100,111,109,99,103,98,96,108,107,104,109,105,99,101,103,108,102,104,98,101,76,102,109,121,97,102,105,103,96,106,101,119,105,100,113,104,101,109,96,111,115,109,109,88,121,98,112,113,104,95,108,89,113,103,100,107,113,99,100,108,99,111,105,108,109,96,99,86,97,102,98,113,100,120,101,117,96,115,110,86,111,103,99,111,109,116,101,107,113,101,109,100,102,108,94,93,96,104,106,97,102,89,111,74,103,103,106,101,99,105,111,96,115,95,103,97,110,117,113,96,112,98,111,108,97,97,109,105,101,97,107,113,96,115,118,96,108,102,112,107,114,106,96,96,100,111,114,105,99,100,107,107,100,99,87,104,113,98,98,109,93,105,120,99,105,105,107,113,109,93,97,102,96,98,106,108,105,105,103,103,94,104,101,99,90,102,106,95,101,108,109,102,112,118,109,107,99,117,105,104,92,111,107,104,102,109,108,99,115,110,111,111,107,101,113,113,98,112,112,99,112,109,109,104,113,114,106,109,105,100,91,114,95,110,103,107,99,99,109,126,94,112,101,103,100,93,100,100,107,109,112,111,91,100,81,105,108,107,99,105,114,106,102,99,114,101,111,104,103,103,115,100,96,99,102,96,112,101,102,113,108,110,93,96,91,110,100,102,100,97,104,115,107,105,94,106,99,102,108,105,95,111,93,101,103,92,99,101,105,103,103,99,113,98,92,105,106,100,90,105,103,107,100,110,96,101,105,103,107,106,105,95,98,106,86,106,91,107,102,82,106,100,100,100,125,94,101,96,98,111,101,100,112,95,102,110,106,103,103,101,108,92,114,104,93,101,99,110,103,112,108,106,105,105,102,106,102,101,106,91,112,98,108,98,111,96,112,101,107,115,107,118,105,115,117,111,96,98,107,96,118,113,74,96,109,98,105,103,116,98,109,100,107,111,99,99,97,111,97,106,107,106,112,104,110,118,104,102,97,103,107,99,107,109,99,111,95,100,101,106,83,100,99,119,106,104,109,98,102,105,109,101,102,108,107,108,100,111,107,103,116,115,102,102,101,111,100,104,85,102,111,101,99,102,113,104,101,112,100,97,101,113,113,114,108,107,97,103,107,104,99,117,98,106,99,123,105,94,114,108,116,106,110,112,103,101,100,92,112,99,116,105,94,102,103,105,105,90,99,96,100,114,109,98,105,101,101,107,107,103,100,105,96,110,112,94,101,128,95,115,111,109,120,99,99,103,92,100,97,133,94,114,111,97,90,101,100,104,101,85,109,89,82,117,87,93,108,98,122,127,116,103,104,103,112,101,101,108,97,113,111,99,107,103,108,111,97,81,96,112,104,108,107,113,101,94,101,110,107,114,111,105,103,102,97,109,106,106,95,111,95,106,108,96,95,117,107,105,105,105,99,111,103,97,105,109,99,101,101,109,104,101,104,109,87,107,94,103,102,102,101,97,105,105,103,107,104,115,86,101,110,95,98,107,100,113,101,98,117,111,96,122,98,101,99,102,105,118,97,101,110,99,102,101,111,99,113,95,98,71,103,106,101,98,109,109,105,116,101,109,103,101,101,112,91,104,99,102,99,114,97,99,104,111,108,102,108,109,104,99,95,108,106,113,102,105,113,103,99,112,108,94,101,90,94,109,99,107,102,105,106,104,100,101,67,98,108,76,104,102,125,118,99,92,111,107,100,105,106,92,116,107,98,99,104,97,107,98,94,105,100,100,103,92,107,102,104,104,108,93,107,102,113,106,101,103,107,106,104,99,106,108,83,112,96,108,101,109,97,122,101,100,103,98,125,104,111,102,104,101,101,104,105,113,95,108,110,107,96,108,106,109,107,116,96,104,124,104,100,116,116,101,109,104,97,103,98,103,95,98,103,104,116,107,105,91,95,106,104,109,115,100,100,98,103,102,101,108,139,101,108,107,97,107,97,117,97,114,112,93,98,120,104,114,75,98,102,107,98,115,103,100,106,111,103,109,107,92,106,108,97,111,104,104,110,112,96,102,106,97,110,105,84,100,109,95,106,106,106,106,101,97,106,102,97,99,106,105,117,113,101,103,82,96,98,99,103,107,102,102,100,105,108,105,113,107,109,104,118,109,110,113,91,109,111,98,104,104,112,99,95,110,106,103,105,92,114,99,104,113,119,106,101,101,102,106,94,109,114,109,107,95,97,101,104,92,108,103,108,106,103,111,113,100,101,94,93,95,90,102,98,95,102,117,109,108,102,103,94,103,94,92,112,112,91,99,99,110,105,111,96,100,96,104,106,106,99,108,110,94,100,102,96,91,102,98,106,100,102,96,100,101,106,109,92,107,87,94,103,100,105,121,113,104,108,109,112,109,107,111,95,99,106,108,105,105,114,91,94,92,97,97,107,99,109,117,110,105,112,108,92,108,110,105,108,103,106,102,102,96,101,101,93,137,106,118,107,100,105,102,92,111,98,95,109,110,108,104,109,102,114,95,101,106,96,117,98,98,108,94,103,103,107,104,104,92,105,113,110,113,122,101,108,108,115,106,107,102,93,99,103,100,106,99,77,116,117,100,106,105,95,107,97,99,105,85,100,93,122,94,106,123,90,104,105,103,101,110,109,108,105,110,96,98,101,108,115,103,97,111,98,104,106,117,119,106,103,90,121,115,102,103,121,101,82,107,123,98,102,103,104,110,107,94,98,104,96,96,97,91,100,119,99,113,108,113,103,70,101,103,99,95,126,96,108,114,104,95,89,108,104,105,97,111,102,95,106,107,108,117,103,94,97,105,117,100,90,76,102,110,98,100,102,106,109,119,91,102,108,103,95,105,103,112,107,91,99,76,95,107,103,101,94,114,100,116,95,109,104,104,106,101,100,111,100,112,93,89,102,112,105,109,100,106,99,105,100,100,94,91,110,108,107,104,103,100,102,102,99,107,100,97,100,102,108,100,112,102,99,99,92,101,108,105,103,84,114,110,97,102,90,96,123,93,91,117,110,105,97,105,94,112,93,100,103,104,91,113,105,110,91,112,98,95,104,100,104,101,101,112,94,104,109,104,101,109,110,101,101,99,107,105,100,95,104,102,99,104,107,96,108,102,106,103,104,114,103,98,97,113,100,108,97,104,104,95,98,106,95,111,105,103,97,101,107,102,106,107,110,109,115,113,100,113,102,101,105,106,112,90,104,96,106,104,119,93,103,117,95,93,101,102,110,108,95,98,81,106,82,98,94,101,123,100,100,119,100,108,89,110,98,97,108,104,96,110,104,109,113,119,114,102,99,113,99,113,98,112,115,111,102,110,110,111,90,102,114,106,100,105,98,113,116,102,99,109,106,94,103,100,99,102,113,109,102,95,105,97,97,106,97,104,101,99,102,103,102,111,102,103,96,97,108,107,91,102,99,105,94,99,109,95,97,101,107,99,113,103,112,100,98,93,104,100,105,101,119,114,109,105,105,103,110,108,110,111,97,106,106,103,117,101,107,109,101,105,96,105,112,105,91,120,102,108,102,123,79,103,93,99,102,103,108,98,99,98,104,97,91,100,108,103,102,99,100,108,106,112,109,116,112,107,117,100,100,106,99,104,106,102,107,106,113,103,102,108,110,103,106,96,102,101,107,98,101,103,99,96,119,91,107,105,95,105,101,104,100,105,99,102,115,101,99,92,98,104,106,108,99,105,109,95,114,101,109,106,95,99,108,100,111,109,105,104,100,111,100,106,100,99,96,99,104,99,107,107,103,107,88,99,100,114,110,108,116,109,113,112,99,107,100,95,103,112,77,116,112,99,107,103,104,90,110,100,95,137,95,114,112,103,106,116,113,113,101,109,98,97,96,104,101,98,99,107,115,101,104,113,101,108,100,99,98,98,113,108,102,96,100,109,106,107,106,113,102,87,104,97,91,108,103,121,107,109,118,96,98,102,101,103,114,98,115,107,112,107,109,115,90,109,110,95,98,100,97,106,109,101,100,115,106,95,106,106,117,103,102,115,95,116,103,101,112,100,100,101,98,101,102,107,106,99,93,110,103,105,116,114,94,100,100,108,100,108,96,102,106,98,87,103,97,95,97,103,101,95,103,92,108,96,92,96,108,103,107,92,112,97,105,109,102,109,91,104,104,90,103,119,88,102,98,111,86,106,104,97,103,107,101,112,104,109,103,107,106,111,108,100,99,87,119,106,104,102,100,105,128,96,92,96,97,105,103,102,107,90,101,97,104,105,97,105,99,94,109,106,100,103,103,102,104,99,108,107,102,101,108,96,99,97,96,102,100,102,103,109,119,105,92,98,99,95,106,98,105,97,105,105,95,101,97,100,104,92,96,107,109,102,91,107,103,116,97,90,104,101,100,113,119,98,105,120,105,96,105,109,116,100,99,97,96,105,106,105,108,106,102,108,100,95,100,101,95,117,103,105,95,104,101,91,99,106,101,96,96,108,99,116,106,88,108,94,87,102,79,100,112,112,95,99,89,98,102,88,102,93,101,108,109,115,103,96,95,100,90,108,97,102,95,102,92,95,97,97,105,105,104,81,101,116,98,101,93,97,88,91,92,103,113,108,110,92,108,101,99,103,86,111,96,104,123,106,107,107,99,99,104,88,109,105,99,80,93,104,88,100,101,101,77,109,117,95,100,102,123,101,96,126,93,98,113,112,108,102,91,95,114,110,107,103,98,110,108,117,95,94,102,113,93, +468.54953,96,99,91,90,97,101,100,94,88,121,93,109,102,99,103,91,90,104,90,98,96,94,103,113,110,113,90,102,115,115,111,114,100,99,112,108,104,105,109,95,106,108,101,101,107,103,96,109,103,103,90,93,97,99,94,95,101,90,97,80,94,110,94,92,107,114,116,109,102,89,109,100,101,111,108,106,114,84,112,108,100,109,100,103,97,108,94,112,100,104,118,94,99,95,104,90,95,102,92,95,108,117,101,98,93,98,94,105,95,101,105,97,111,100,101,78,93,101,110,95,102,104,110,115,111,118,108,100,108,104,117,106,106,73,104,106,108,110,104,106,93,103,94,107,94,105,108,106,106,99,103,101,100,104,101,94,97,101,102,102,101,100,108,113,99,98,91,91,96,88,111,105,97,97,112,101,108,87,99,101,106,99,109,97,115,92,102,97,105,96,102,113,101,98,98,107,101,99,108,108,93,101,98,110,99,112,101,114,101,109,91,101,100,104,109,99,94,112,105,103,112,107,112,108,99,116,101,104,104,105,94,106,103,106,106,113,115,105,107,112,90,79,105,99,86,109,107,91,106,113,101,110,109,95,96,110,104,113,92,101,92,107,107,101,101,108,105,119,104,95,96,102,104,100,118,110,109,114,100,100,98,109,102,108,99,102,72,102,100,102,101,95,105,95,113,103,97,110,97,111,122,106,100,95,101,114,101,109,103,93,91,106,102,106,94,107,114,97,110,76,108,101,105,100,103,101,103,100,114,108,103,100,97,104,107,116,111,91,99,108,110,100,129,93,110,104,106,101,100,105,104,98,105,104,110,102,105,111,106,112,112,103,100,112,117,106,103,108,98,110,98,107,107,115,111,104,104,102,103,106,90,82,96,95,103,105,112,107,108,96,105,98,105,114,95,92,111,104,108,110,95,104,89,104,106,104,102,98,111,101,90,99,112,104,103,117,101,113,112,98,99,94,98,97,92,97,98,94,74,102,110,99,100,90,99,99,109,110,101,105,104,119,103,105,108,103,93,99,101,104,105,99,91,107,97,105,100,103,90,118,106,102,98,113,103,111,124,105,109,96,111,106,108,95,63,101,99,111,107,103,92,118,108,97,100,79,102,116,98,107,110,104,115,112,103,106,107,103,105,106,108,95,124,108,115,102,108,110,118,112,113,95,96,104,104,105,103,79,98,94,104,108,109,99,127,103,112,117,102,108,97,108,99,117,105,97,98,96,102,98,106,99,102,104,87,98,92,107,100,103,101,94,106,95,113,98,99,102,91,109,102,109,107,100,105,105,105,105,110,102,103,90,100,97,104,108,91,113,67,105,105,107,97,103,102,109,110,97,109,103,105,99,110,104,104,107,107,121,97,92,101,94,107,105,111,112,99,83,106,107,111,100,87,95,102,97,117,106,103,97,110,105,113,104,105,110,86,101,111,98,107,113,98,108,105,97,95,92,112,104,128,113,103,108,103,98,106,91,91,113,101,107,113,103,110,105,112,101,106,110,110,96,109,107,101,97,110,106,110,119,100,106,108,105,92,107,110,103,112,98,115,97,107,98,97,112,105,115,97,110,104,99,94,111,108,103,108,110,99,99,109,87,98,110,114,100,95,113,105,110,99,99,104,100,102,100,107,116,100,81,106,101,107,103,95,115,106,116,99,106,111,103,99,103,108,104,101,99,121,105,116,95,106,121,105,100,98,105,97,107,106,100,104,107,103,110,103,113,108,111,103,116,96,115,102,96,94,94,106,97,106,103,103,89,103,106,105,92,109,99,106,102,110,103,95,115,93,107,102,104,95,109,105,110,90,118,98,102,110,106,111,110,97,99,105,109,104,90,105,105,113,94,109,113,104,94,114,117,108,123,104,118,88,111,104,132,109,109,71,117,75,101,107,96,102,117,116,113,107,104,102,98,99,95,100,99,102,98,105,102,102,108,96,110,96,108,105,101,101,93,87,95,102,99,104,102,99,102,107,110,107,114,107,107,104,94,95,93,106,96,99,111,102,105,116,87,122,94,101,109,112,106,129,107,99,101,110,99,95,95,100,104,104,98,108,97,98,116,104,92,93,96,104,108,96,96,103,110,100,86,109,109,98,136,108,96,91,103,91,99,90,116,102,105,90,105,100,99,106,103,106,108,102,98,105,98,91,95,109,103,99,92,116,104,106,101,96,113,98,97,102,117,118,107,110,100,93,107,109,115,88,111,114,103,122,110,106,103,100,105,109,103,98,112,99,104,99,105,106,108,107,96,111,94,106,97,107,92,103,111,107,103,95,97,107,109,109,96,94,100,85,107,96,95,93,109,101,92,98,90,114,98,104,89,114,95,105,98,101,101,106,97,114,92,114,95,100,102,106,109,106,99,105,114,96,91,94,121,95,111,102,106,104,110,98,90,98,100,94,100,102,107,101,105,100,108,106,107,95,98,110,97,95,102,96,106,98,92,100,88,102,99,103,106,112,104,110,113,115,109,107,106,121,86,122,113,95,107,104,121,109,99,103,102,109,113,100,110,116,108,103,112,103,96,112,98,116,107,93,103,96,98,101,106,107,103,96,115,106,95,119,113,121,97,100,109,98,104,101,101,114,95,98,95,94,102,84,117,110,89,109,99,123,108,88,109,103,102,99,112,100,91,104,86,110,98,111,100,102,100,102,99,105,96,105,95,99,101,92,97,105,101,103,108,101,98,113,103,113,106,112,116,107,106,90,107,107,104,109,108,113,112,106,103,110,95,109,99,104,101,103,104,99,102,104,138,95,118,103,101,105,116,104,92,106,102,99,110,106,82,103,114,100,109,103,99,112,107,113,116,109,103,102,103,90,97,99,107,112,91,106,107,125,109,108,103,101,104,97,102,107,103,88,101,111,96,104,114,101,113,115,104,109,115,114,102,97,105,110,105,111,106,112,99,102,113,108,87,105,117,104,111,117,103,108,108,120,95,106,105,105,98,102,99,107,100,101,106,111,98,116,113,103,113,118,130,103,113,109,88,113,103,100,100,98,105,103,102,108,106,100,97,105,112,103,102,99,98,109,108,100,107,96,122,116,102,98,108,94,107,101,99,108,98,103,93,102,107,105,70,108,108,82,104,101,98,90,101,111,104,112,100,107,111,104,98,108,111,102,108,101,106,109,106,98,103,96,108,107,113,107,111,112,99,118,95,118,103,118,103,106,98,97,103,102,113,113,106,100,113,97,111,135,104,102,112,99,110,96,103,101,109,102,99,101,106,105,101,117,107,108,113,95,100,103,114,102,113,127,106,98,102,105,113,97,104,103,103,112,97,95,96,94,108,102,108,116,102,105,109,106,106,104,96,116,102,95,88,107,100,113,106,116,106,111,104,112,110,115,100,120,104,113,104,94,110,113,97,102,85,111,99,113,104,94,105,109,104,113,110,107,114,116,103,106,101,111,103,107,100,102,100,104,105,107,111,107,109,102,119,104,115,104,93,97,104,108,108,97,110,103,99,100,98,106,97,105,104,111,95,107,108,100,103,110,107,104,103,109,98,107,91,101,113,109,110,104,100,114,106,100,106,103,113,100,115,106,120,115,115,99,100,103,95,101,103,98,111,108,103,108,116,111,125,104,97,102,116,102,120,100,88,109,109,101,101,104,112,112,120,105,95,108,106,99,106,98,112,105,116,109,101,105,106,116,103,106,111,102,103,107,99,109,109,105,105,101,102,105,103,102,108,106,105,94,109,117,108,106,112,107,106,104,103,105,106,100,110,102,99,105,107,114,106,105,105,106,107,112,105,103,102,106,110,122,113,94,98,103,103,98,112,110,106,99,109,116,110,101,102,111,109,112,112,103,104,95,102,118,110,103,113,115,107,102,100,118,111,100,107,106,107,107,100,79,109,98,111,105,105,111,108,109,101,107,108,112,106,103,106,103,101,94,103,98,94,106,98,107,99,97,103,103,114,91,101,118,115,107,93,107,109,95,98,95,115,93,104,109,109,102,104,100,99,104,106,103,103,112,107,123,103,109,118,116,101,112,95,106,103,112,88,111,104,111,113,107,96,112,97,106,137,96,94,109,115,121,98,114,104,101,112,111,98,104,110,113,102,120,107,100,104,99,104,97,100,113,107,110,110,101,100,120,103,108,108,109,107,102,100,115,106,92,108,112,110,105,110,103,107,113,103,105,98,114,100,98,101,85,109,106,115,116,110,98,103,107,118,101,108,101,111,99,104,110,105,109,111,108,103,119,72,106,99,105,96,103,107,89,100,103,106,109,107,106,105,91,115,104,113,107,105,107,102,109,107,91,91,106,106,107,109,94,99,95,108,96,104,87,107,106,83,111,92,110,109,105,99,108,117,103,110,112,101,106,102,101,98,111,100,110,100,103,104,107,99,108,113,112,95,119,106,103,102,99,95,108,96,105,101,95,94,107,109,109,110,101,115,106,99,115,102,103,103,73,109,95,90,105,103,92,110,114,97,113,90,107,109,107,112,106,101,106,106,91,107,92,95,94,104,104,91,99,104,114,107,103,108,118,107,91,107,84,103,99,95,97,116,105,94,113,104,103,105,106,112,105,104,102,96,98,100,106,66,97,103,109,99,99,98,104,101,108,109,101,103,99,103,111,90,103,102,104,121,109,109,105,114,98,110,106,104,112,94,103,102,110,94,105,104,96,113,84,113,111,87,96,103,102,99,87,98,104,104,99,106,103,100,90,97,109,113,98,109,106,80,100,109,97,96,103,97,105,104,106,107,115,123,107,105,108,116,92,115,102,108,105,105,100,111,104,107,102,107,125,108,115,105,99,128,99,89,114,109,104,105,92,101,96,100,107,108,102,81,113,97,100,96,105,109,108,101,109,104,102,114,98,101,94,95,102,110,92,120,109,95,95,109,102,100,106,117,96,100,109,104,101,127,85,104, +468.69,101,93,94,102,94,93,95,100,94,103,103,103,97,97,105,93,96,100,100,106,100,98,98,104,97,109,93,101,104,115,105,108,94,92,104,115,83,118,104,98,108,107,99,111,104,140,103,96,106,96,95,78,92,103,98,108,92,103,104,71,104,110,100,83,93,95,100,84,106,106,114,109,108,112,98,102,94,96,104,106,95,96,102,92,100,109,94,102,99,92,93,104,112,87,95,97,86,98,106,109,92,91,109,108,100,100,109,97,92,95,104,99,106,107,112,96,100,102,108,86,105,99,105,101,103,102,99,88,108,98,102,115,125,107,108,104,100,87,95,105,97,110,98,101,106,95,102,106,101,92,105,101,101,102,106,96,100,99,109,87,102,105,105,103,101,104,102,93,105,102,108,109,102,112,95,84,104,90,110,114,88,114,96,106,98,108,100,90,100,97,100,114,103,104,95,100,104,102,92,112,80,105,87,89,97,102,92,106,109,113,97,91,95,106,101,104,98,103,99,102,104,110,98,95,113,97,124,101,98,104,101,100,111,108,103,101,100,101,113,109,108,104,118,102,101,107,98,100,99,105,95,105,99,95,97,112,105,105,99,101,102,106,91,100,92,111,118,92,100,94,102,100,115,99,98,114,99,110,105,109,104,104,91,103,101,117,93,100,103,96,104,113,116,99,103,102,100,95,114,109,118,100,109,111,108,100,111,118,108,107,102,94,114,101,99,98,96,106,115,93,97,99,103,101,100,93,97,93,109,110,103,98,97,98,100,95,90,103,101,101,94,103,110,98,96,82,103,94,104,104,120,101,105,101,129,105,97,106,118,100,85,99,99,85,94,109,103,107,107,91,100,97,104,104,101,97,99,102,98,98,107,103,95,107,104,100,103,107,100,113,96,92,104,118,108,99,90,101,102,95,102,94,96,100,102,109,98,109,100,101,91,98,101,99,132,84,107,101,122,109,101,101,109,95,94,99,104,93,100,100,102,110,98,100,95,100,96,103,88,100,108,103,97,101,86,104,98,102,105,108,104,113,106,108,112,115,94,92,102,107,102,104,103,97,114,103,99,117,96,107,101,101,114,104,86,99,98,104,115,108,94,102,96,94,103,97,109,95,105,111,110,110,109,106,105,96,97,104,99,100,113,109,98,99,99,104,95,101,110,102,106,109,87,100,110,98,71,117,104,92,108,109,115,111,107,106,98,114,105,96,100,116,106,76,110,105,104,92,96,108,90,110,103,96,100,101,96,109,98,103,110,112,119,95,96,91,117,106,99,83,98,105,99,96,113,100,102,103,94,96,92,94,112,101,100,103,93,98,98,98,107,102,94,101,99,104,98,128,110,100,118,99,113,100,104,104,105,108,102,100,98,112,108,96,100,95,89,102,112,108,106,97,102,100,107,114,105,116,109,100,98,111,107,104,104,112,113,92,99,105,95,112,103,96,94,98,103,117,106,105,95,104,100,108,95,92,91,105,98,110,99,106,111,109,98,107,96,106,99,91,108,112,103,112,96,101,120,110,111,108,92,107,104,90,93,98,106,93,100,105,109,106,115,85,92,103,98,101,98,105,101,104,97,104,109,84,107,106,103,92,116,91,101,105,101,111,115,105,94,100,98,112,123,90,90,98,104,95,96,105,64,106,102,115,99,96,117,117,112,114,102,96,108,104,97,91,102,94,108,105,100,109,114,87,98,106,101,111,96,119,114,96,99,104,133,109,98,113,100,98,95,97,91,92,90,104,102,123,102,91,100,91,113,106,103,115,107,99,102,100,95,108,123,105,107,103,105,112,82,101,114,95,111,104,82,105,100,118,94,115,122,100,95,105,119,104,104,116,95,94,105,90,109,111,118,100,112,99,117,110,104,104,97,105,103,103,105,101,107,100,109,78,101,107,96,109,112,101,106,107,78,105,106,114,97,94,109,102,83,89,99,104,106,108,95,120,113,97,114,102,103,101,114,115,97,99,98,100,98,109,110,107,114,96,116,96,118,102,112,104,119,104,111,109,103,99,105,103,107,103,102,118,102,108,110,101,104,95,100,102,89,117,105,100,102,100,101,97,107,103,102,109,100,108,113,108,96,101,110,105,115,104,108,93,110,98,125,103,101,108,101,109,112,104,95,110,97,93,107,101,76,100,99,100,102,103,114,104,100,106,99,105,101,101,104,104,123,113,110,103,109,101,101,108,84,109,107,106,101,95,93,111,104,94,87,108,102,106,100,99,100,113,107,99,93,97,106,99,105,101,129,106,102,101,98,90,108,123,96,96,89,96,108,103,102,109,104,96,98,109,129,94,117,111,100,77,109,100,105,105,103,109,109,93,105,105,103,86,101,104,111,107,95,101,100,93,95,99,105,103,88,106,109,111,95,95,100,104,99,106,102,97,100,106,109,113,94,91,95,100,104,104,92,96,100,91,104,108,88,101,98,116,91,102,102,105,95,113,99,95,96,102,94,96,104,102,102,94,97,108,99,102,104,101,108,111,108,104,102,103,111,102,120,93,103,107,102,87,98,111,100,107,87,105,117,102,124,112,116,108,99,109,106,104,111,107,113,117,105,98,112,113,110,78,110,92,109,95,105,97,108,113,97,122,127,117,98,101,103,107,113,101,116,107,107,106,104,110,64,98,102,94,96,107,104,112,101,103,110,103,98,102,106,106,104,103,104,107,115,103,107,114,109,98,104,99,111,103,92,110,102,97,111,94,91,119,123,94,99,100,121,109,101,112,106,95,100,98,111,103,104,109,108,102,113,108,115,108,105,105,108,109,91,105,106,88,95,98,119,99,98,105,104,100,102,96,114,113,102,116,102,98,111,108,98,115,110,110,113,103,96,102,102,103,114,104,95,96,104,106,104,110,106,101,103,102,103,98,105,98,115,104,108,115,105,103,87,104,109,102,111,104,98,107,113,94,117,100,102,108,106,104,105,95,101,103,101,88,96,103,109,95,117,100,101,112,102,100,97,109,107,106,102,96,105,109,100,98,100,87,109,106,105,109,126,105,114,102,103,97,110,102,111,94,99,98,109,108,115,123,101,104,106,107,104,100,106,105,102,114,106,110,120,102,104,103,105,100,110,111,102,124,115,108,107,98,106,102,101,98,118,95,104,107,103,92,99,93,98,101,115,103,108,98,92,99,95,85,92,99,109,100,105,106,112,102,95,91,107,112,112,106,99,101,110,102,105,101,97,102,113,107,90,100,105,101,101,105,109,110,109,95,95,98,101,124,112,100,109,104,108,99,105,91,106,101,102,108,111,112,113,92,113,95,100,99,102,109,112,100,100,105,100,105,96,111,105,98,95,94,107,109,102,102,109,100,101,105,106,111,75,113,111,96,103,121,96,104,103,119,104,106,106,94,105,104,108,109,112,103,94,95,106,102,110,119,106,99,97,96,93,102,102,103,97,105,105,92,100,102,105,99,105,102,98,112,95,116,95,103,106,91,98,112,95,104,104,106,99,97,101,113,112,89,110,104,99,100,99,113,96,107,98,103,113,93,113,116,113,104,113,111,102,111,108,105,102,101,98,102,115,109,101,130,100,101,101,92,114,102,99,94,95,109,87,100,117,117,108,107,101,105,114,107,117,96,92,107,102,110,94,113,102,98,101,105,116,101,100,107,104,105,113,99,100,101,101,100,102,104,92,105,99,109,99,113,102,98,107,106,104,113,99,97,107,99,106,113,102,108,103,105,107,92,116,107,105,110,107,102,102,98,117,95,98,109,90,105,89,96,99,106,104,91,99,101,103,105,103,108,105,90,108,101,105,109,112,95,109,99,108,104,96,106,100,92,107,107,111,115,104,106,111,87,111,81,110,89,98,98,101,115,94,100,103,135,99,101,96,100,97,105,110,100,95,97,104,98,115,97,103,102,109,91,99,88,104,91,87,100,103,99,101,111,93,97,99,110,99,107,112,98,96,127,107,113,103,103,108,103,108,109,97,109,109,92,98,101,101,101,106,121,101,99,113,101,103,107,105,106,106,101,100,102,109,99,107,101,104,116,99,108,99,100,110,102,101,97,110,115,109,93,86,112,102,105,100,86,97,106,112,100,83,99,105,102,107,104,104,94,100,102,117,101,94,103,98,105,94,101,106,121,109,103,111,107,109,102,113,102,114,96,96,108,113,112,105,102,105,108,96,99,70,77,96,91,104,105,113,94,108,98,107,97,119,104,104,102,102,99,102,113,107,105,109,108,104,92,106,102,106,92,103,102,98,102,107,80,101,99,99,106,112,106,90,111,92,110,85,99,99,94,102,99,111,139,105,87,98,110,91,101,110,94,102,110,97,90,104,103,107,92,109,108,101,104,100,104,105,99,106,102,101,106,100,98,101,107,111,98,101,113,107,101,101,108,113,103,100,120,107,108,103,113,102,110,102,100,109,100,99,103,100,111,109,102,109,77,102,114,105,105,98,98,97,93,110,108,118,91,111,107,103,107,103,103,94,96,99,97,105,95,100,107,95,108,88,111,103,112,74,96,101,103,113,106,107,110,111,89,105,112,108,113,101,102,96,100,106,96,117,99,101,105,84,105,109,115,73,104,102,94,104,103,103,97,104,104,99,107,102,102,121,100,98,108,91,107,105,102,104,94,103,118,101,101,106,100,101,93,111,101,95,100,98,87,100,98,96,113,97,109,105,104,98,117,95,101,94,102,85,98,101,110,104,100,101,96,91,95,102,99,92,94,107,107,98,95,73,97,98,99,94,108,119,93,107,104,124,103,103,100,111,102,94,102,106,105,117,109,92,109,101,113,98,108,106,93,98,104,100,129,99,85,108,103,91,93,98,109,116,97,102,94,103,102,105,100,93,102,100,110,109,89,97,104,97,98,100,102,104,93,103,113,106,101,91,93,88,94,103,113,90,96,106,104,98,104,100,91, +468.83047,122,105,93,78,81,105,104,85,102,105,118,113,94,98,106,102,104,102,113,100,90,103,109,101,103,128,107,117,105,115,103,110,96,96,95,94,108,98,107,112,88,107,101,110,115,112,98,104,108,106,109,99,95,109,99,105,96,99,111,92,83,86,104,101,97,113,104,106,105,99,100,103,98,95,100,105,102,100,117,93,98,120,101,102,105,99,105,98,118,109,102,106,111,112,109,70,92,90,112,97,103,107,104,117,101,108,121,92,99,104,91,105,115,98,105,88,109,103,92,101,89,99,113,98,102,111,113,99,102,91,100,107,103,108,103,110,98,96,101,94,102,108,95,98,107,96,104,113,103,83,114,102,111,108,100,113,109,121,110,99,91,103,105,104,108,107,106,107,107,105,112,103,107,99,123,96,99,96,101,101,93,121,105,108,115,91,99,115,103,94,83,123,117,101,101,105,113,119,99,103,96,100,99,95,106,108,100,96,108,96,117,108,107,117,99,107,98,104,93,115,99,110,105,104,95,125,104,98,115,108,102,100,106,107,95,112,104,98,108,108,105,90,101,90,100,111,101,112,114,102,98,91,102,98,104,107,102,101,100,103,97,114,104,96,103,104,100,103,91,102,92,109,101,96,111,104,105,106,101,98,95,110,96,101,105,101,98,111,120,113,105,100,108,106,113,112,118,101,101,105,96,90,103,111,97,100,100,100,103,112,104,103,106,113,95,113,104,99,99,98,96,103,101,90,106,103,97,97,120,102,97,104,105,105,110,103,101,87,118,104,109,108,108,107,108,109,100,120,122,90,113,102,118,95,94,102,108,106,103,102,104,99,93,94,109,103,110,114,104,109,104,104,110,94,107,99,112,117,108,120,117,101,113,126,99,112,106,101,107,108,116,93,105,109,95,97,104,112,103,96,95,95,102,81,113,99,108,101,117,99,107,97,97,102,102,109,98,108,110,98,98,101,97,102,106,103,102,101,105,108,94,141,98,101,104,114,96,111,101,103,109,105,107,107,97,102,100,104,95,90,102,113,102,109,100,78,104,110,107,100,102,108,103,120,95,70,103,105,103,112,87,103,105,104,97,100,94,125,107,105,103,113,100,94,115,94,101,98,106,108,99,96,113,99,105,107,108,101,91,100,101,107,108,108,103,108,111,96,109,92,98,88,97,113,105,102,108,103,116,104,97,102,104,110,104,97,113,105,111,106,94,109,103,100,91,104,120,102,111,112,97,101,109,112,105,104,68,95,115,105,114,101,101,91,96,91,110,104,119,88,109,108,109,94,103,106,116,106,102,100,133,87,100,106,94,107,119,109,98,98,105,108,110,105,117,105,117,103,112,87,113,113,89,102,109,109,99,98,95,108,108,104,109,101,111,96,109,100,104,111,101,109,102,102,101,88,105,97,110,108,98,118,102,99,106,109,101,109,94,112,105,104,107,102,93,115,106,100,113,96,107,102,108,100,99,87,103,104,101,105,109,96,106,104,107,108,109,106,119,93,116,111,111,103,101,100,102,103,109,101,103,106,116,110,94,93,103,102,110,100,105,102,105,100,101,99,110,100,104,102,106,98,101,117,100,98,113,113,98,98,101,117,108,107,105,109,113,102,104,102,109,113,86,100,105,110,102,99,101,101,93,105,89,103,92,94,65,109,98,106,105,105,112,95,104,104,106,95,108,107,102,97,95,100,104,118,100,102,100,113,116,94,94,96,102,100,107,111,102,106,95,91,110,110,83,105,93,103,108,104,110,111,87,104,105,106,98,99,98,111,121,102,101,106,107,103,102,92,102,109,110,112,105,109,102,117,96,102,94,105,105,104,102,100,100,108,105,97,112,99,108,105,108,98,105,103,92,100,94,100,99,103,106,106,97,110,109,97,117,103,106,101,109,98,105,90,106,109,107,106,100,97,114,109,97,107,104,108,104,103,91,100,105,103,103,101,113,101,95,100,114,91,99,100,101,102,105,116,110,112,97,97,103,112,103,106,99,100,66,103,99,105,114,98,97,105,99,93,96,110,86,110,95,107,113,94,104,100,106,116,105,102,110,97,106,98,102,109,102,98,102,102,103,102,104,91,106,120,104,108,107,94,105,85,91,102,92,100,99,105,104,105,109,101,95,105,102,93,94,96,107,120,104,106,102,108,104,121,114,107,95,105,104,106,105,109,99,112,97,106,114,109,98,99,94,107,96,104,99,105,100,104,83,100,102,108,110,87,103,103,107,113,109,99,91,91,96,95,103,102,111,96,101,100,94,121,98,109,110,121,99,101,100,115,107,103,115,89,101,106,104,100,96,107,104,100,112,117,106,93,112,109,105,95,95,98,110,110,104,103,120,94,116,103,110,112,94,102,113,92,101,109,98,109,97,97,103,90,101,104,103,113,108,105,103,107,100,99,108,96,95,103,100,95,85,111,99,99,101,108,90,107,105,104,102,98,91,105,102,106,106,105,110,107,107,104,94,100,112,102,109,103,100,108,88,100,103,100,107,101,102,102,102,106,111,106,98,100,109,102,96,108,105,108,110,108,98,108,108,120,98,107,103,95,102,103,95,108,102,100,89,100,109,102,104,99,108,118,108,89,103,102,108,96,97,99,91,115,103,116,106,96,108,113,111,106,106,105,94,105,111,101,105,84,110,134,108,94,113,118,105,102,112,105,110,90,105,107,88,111,111,112,112,101,96,104,118,102,103,110,110,100,109,104,92,107,99,100,105,113,107,111,105,101,96,100,118,102,103,99,99,108,106,110,108,102,100,106,91,95,92,102,107,82,112,104,107,104,95,109,107,100,106,99,107,100,103,108,102,117,99,84,121,98,114,97,109,109,103,105,107,100,112,125,117,104,100,109,98,108,103,102,113,103,116,103,105,98,99,116,111,106,117,107,112,98,110,103,101,102,102,111,114,102,100,117,108,108,104,106,102,132,95,100,108,97,108,106,113,107,115,107,110,101,95,107,98,102,106,95,105,112,97,99,108,100,108,103,107,106,99,112,97,106,96,106,120,112,109,102,113,91,107,116,108,95,106,89,102,130,114,112,94,91,95,98,104,102,108,109,106,140,105,113,107,104,114,106,106,103,106,109,90,102,113,92,91,114,100,108,110,101,107,112,115,104,96,106,104,105,121,91,101,98,108,103,106,97,105,102,100,105,92,111,103,108,92,96,108,105,110,100,92,101,98,106,105,102,97,102,91,117,104,110,95,98,97,81,112,110,117,112,99,94,107,102,100,95,110,100,106,92,105,116,107,115,100,121,104,105,103,101,105,104,95,105,92,114,108,103,95,98,90,103,109,103,97,102,102,103,100,106,102,101,107,102,95,112,99,103,83,103,100,97,106,103,116,97,113,101,110,105,104,109,102,107,104,100,102,96,112,107,110,103,115,99,114,102,98,104,92,108,107,100,118,98,113,108,110,87,104,109,98,102,111,115,110,94,107,105,103,101,99,132,105,92,103,117,107,101,121,110,112,124,96,105,100,113,100,126,113,102,98,120,108,106,104,79,79,107,103,99,107,104,90,96,112,102,91,124,109,103,87,105,101,98,79,104,107,127,105,92,106,107,88,102,111,98,116,98,108,109,108,105,100,84,110,111,107,107,104,108,106,99,89,100,107,99,106,109,99,94,107,101,112,96,105,96,112,111,113,96,113,106,98,96,112,106,96,106,107,109,115,104,111,91,100,106,102,103,105,103,105,101,113,94,110,99,102,100,109,95,109,95,113,113,110,91,104,116,103,106,95,104,108,81,103,97,114,112,111,104,110,102,120,104,116,99,94,109,95,99,98,107,109,99,105,115,101,96,113,98,102,109,110,104,106,104,105,108,105,108,107,109,109,107,107,106,107,98,103,97,113,87,113,104,99,96,99,116,105,103,106,106,109,99,111,109,100,99,118,107,104,107,108,89,103,100,103,115,109,96,100,127,107,109,102,109,98,117,97,96,102,97,106,87,99,113,91,89,113,102,119,113,104,101,98,100,104,111,92,101,95,99,93,101,106,108,103,112,107,112,102,95,103,90,108,83,104,102,117,102,98,94,107,107,95,114,120,92,104,118,115,100,110,104,105,108,101,96,99,102,104,107,98,92,117,104,95,105,119,98,106,84,79,109,102,104,103,107,116,99,97,112,98,105,102,109,131,95,109,101,80,93,91,105,103,116,117,94,113,113,110,106,99,110,97,111,109,112,98,92,99,96,98,101,103,107,110,100,105,103,96,96,94,104,104,114,104,110,84,100,100,100,100,110,99,113,108,123,107,102,110,106,98,102,112,103,92,108,100,107,103,109,113,100,117,88,103,106,107,109,112,102,114,104,115,100,108,111,100,99,114,108,111,106,103,104,98,99,94,105,108,104,75,106,107,117,99,96,91,95,114,104,107,103,96,101,111,99,101,109,112,110,104,114,95,112,96,104,108,96,105,101,116,102,98,105,98,98,112,107,107,107,94,99,93,100,111,108,94,94,102,105,100,93,104,103,101,105,98,105,102,118,95,100,108,118,102,112,95,113,103,98,99,101,105,110,104,110,99,107,108,102,100,113,104,97,98,96,91,111,116,107,109,97,104,107,108,110,98,106,128,100,99,99,100,107,108,106,108,102,94,107,102,104,103,107,106,105,109,97,106,94,117,109,104,102,102,102,106,114,96,92,107,99,97,97,106,108,104,96,101,110,104,117,112,114,94,94,100,109,112,94,104,94,104,100,99,67,98,96,107,113,112,96,110,113,108,103,103,98,82,105,99,91,100,116,105,104,94,103,104,104,107,105,103,95,95,99,111,100,97,96,102,110,96,106,112,89,102,104,109,110,102,96,109,103,95,110,138,128,98,99,94,111,98,103,102,84,120,116,105,117,98,104,81,117,92,116,111,102,98,91,110,105,94,128,112,97, +468.97098,117,96,123,94,89,100,103,90,90,97,99,104,104,100,104,68,95,103,102,102,97,107,97,106,107,96,96,95,106,96,107,113,98,113,102,96,83,98,94,122,98,108,97,100,110,118,99,93,98,110,103,99,98,105,115,86,94,93,105,80,94,110,105,85,100,100,85,113,101,101,110,111,106,106,98,107,94,93,98,91,108,103,105,111,115,84,111,98,104,94,117,101,101,108,97,101,86,110,110,107,110,120,97,98,106,101,92,104,110,100,109,97,105,108,99,101,106,93,97,91,104,120,98,109,99,105,112,98,122,101,130,105,104,103,95,86,91,103,100,97,137,106,101,105,103,92,115,109,103,106,104,105,103,94,90,111,98,107,96,97,93,104,109,101,100,110,99,104,109,99,85,104,99,110,112,105,103,106,109,95,106,99,106,105,95,94,101,97,102,104,110,97,95,113,101,114,95,117,114,118,93,100,97,100,111,111,99,99,104,97,92,87,104,107,104,102,106,100,117,105,110,94,99,104,107,111,107,104,107,103,101,99,100,98,113,109,99,105,88,100,110,90,98,98,72,96,107,121,96,105,108,99,104,92,109,106,108,112,100,111,105,98,107,109,98,103,110,110,85,106,102,98,108,108,107,102,104,119,99,108,126,106,99,100,108,107,109,102,101,114,102,108,93,111,116,114,103,87,105,107,106,101,101,97,106,105,92,98,110,112,94,101,114,116,100,97,110,95,96,89,109,109,124,100,103,103,100,96,100,126,109,98,108,95,115,113,103,113,105,100,105,113,98,99,97,87,113,102,95,105,97,105,105,100,100,95,97,102,97,109,105,117,105,97,123,87,104,104,107,108,103,92,103,103,104,101,99,99,106,122,113,105,105,117,99,102,95,81,94,112,107,94,106,106,102,101,98,97,105,104,99,127,117,113,101,99,98,99,110,96,100,87,112,104,109,94,104,89,101,105,92,99,112,100,106,96,95,91,102,105,98,101,130,110,107,107,101,104,102,94,98,113,96,103,95,99,94,94,108,111,105,103,106,102,109,104,106,103,101,96,98,91,105,110,101,111,93,107,102,112,100,109,99,103,95,112,98,111,109,102,103,85,109,114,100,105,100,107,89,95,105,126,103,97,99,94,105,98,104,109,104,99,110,100,105,103,93,100,95,98,106,109,101,122,97,118,111,101,95,105,99,104,109,107,104,101,103,91,103,99,105,98,110,101,95,113,98,97,98,81,99,109,104,105,103,100,103,100,97,105,98,90,120,107,93,80,112,106,88,96,109,100,111,93,99,101,110,108,106,117,90,97,103,92,87,96,103,93,90,98,76,90,118,96,117,122,110,98,98,98,101,100,104,95,106,115,100,99,109,101,101,101,102,95,102,108,111,98,95,102,101,99,98,103,112,102,108,82,105,101,106,100,108,95,86,99,83,122,96,92,108,93,97,107,99,105,104,80,105,100,103,109,95,107,80,102,109,89,99,105,109,114,103,96,99,104,105,134,108,112,105,107,100,106,102,92,111,102,109,98,114,111,105,102,95,103,105,115,105,100,108,106,101,108,91,120,102,101,110,88,108,97,95,110,100,101,105,105,96,99,95,100,109,108,103,101,104,116,107,103,107,106,99,90,95,102,99,93,118,104,102,97,107,100,97,89,92,103,97,102,101,106,97,91,99,103,98,97,117,105,109,83,91,107,94,106,97,99,99,109,114,105,103,109,103,109,115,100,107,110,100,103,99,95,95,103,93,103,106,111,107,99,107,106,105,95,108,100,102,102,112,103,117,109,100,100,116,111,118,100,102,108,96,110,110,117,109,98,102,113,101,95,92,101,112,103,98,118,103,91,113,77,117,105,109,94,109,111,107,106,106,110,95,79,107,112,108,108,105,111,109,95,99,112,102,105,83,111,90,115,102,104,111,113,99,106,88,106,95,95,97,109,109,110,80,102,88,95,109,102,89,100,103,96,100,100,91,107,103,104,89,104,109,109,102,106,113,98,98,91,97,109,104,100,116,101,95,105,95,112,106,107,101,98,101,97,97,107,95,102,107,109,93,106,98,109,101,108,103,107,106,92,106,98,109,102,91,121,98,104,112,101,106,100,105,94,103,107,103,110,100,103,106,106,96,107,109,104,105,104,106,117,99,109,99,103,117,86,103,103,112,108,116,105,94,110,104,103,89,103,104,113,112,102,109,91,101,118,107,101,113,109,110,98,96,95,82,97,106,97,97,103,99,109,108,89,102,80,103,107,99,94,111,108,90,95,97,85,93,106,119,102,105,104,103,104,102,106,101,104,95,106,125,96,105,104,96,103,105,99,104,99,88,92,104,101,95,106,104,98,100,95,112,99,114,100,99,108,99,100,102,99,108,104,93,93,90,106,100,107,115,108,101,105,95,113,86,92,91,103,102,110,110,94,101,100,90,90,110,109,102,114,117,102,94,108,100,108,99,104,109,94,112,118,98,72,105,98,108,110,104,101,103,97,102,102,106,99,113,119,97,111,108,107,81,116,121,106,109,113,99,108,107,112,110,95,100,103,100,118,104,117,87,103,108,104,116,112,111,106,114,109,107,96,99,113,96,111,112,99,106,108,96,102,86,108,101,115,108,105,102,97,107,112,108,99,113,100,111,109,103,97,112,93,98,110,115,103,95,92,106,103,113,117,99,103,98,100,100,111,108,102,104,122,110,116,105,108,94,113,99,104,115,117,111,112,106,98,112,110,113,85,108,94,102,85,105,99,106,104,113,108,110,106,116,117,105,99,104,100,106,108,99,90,98,89,108,110,105,112,113,103,109,90,105,105,106,108,95,114,102,114,112,87,102,113,103,115,98,104,129,102,110,109,99,102,108,117,97,103,99,72,99,95,97,106,111,102,97,102,105,113,110,112,108,97,114,110,113,99,96,87,103,104,101,117,112,102,111,95,102,111,101,107,119,107,104,112,105,92,101,96,94,98,104,110,113,116,116,104,103,103,102,113,111,97,112,114,114,91,104,110,96,112,103,104,103,114,116,100,106,94,96,116,104,107,100,107,120,102,97,107,103,104,84,105,113,96,103,104,121,122,115,97,87,104,112,105,95,101,103,116,105,84,112,98,121,102,107,89,108,106,121,101,101,105,104,115,102,103,97,116,102,94,109,103,99,100,101,103,108,102,101,109,107,110,100,91,105,110,114,98,96,107,104,106,112,104,108,111,115,101,102,101,112,96,108,115,93,110,100,99,100,105,95,104,107,106,101,106,96,122,109,111,107,111,113,106,86,102,94,101,113,106,109,103,109,108,119,99,101,97,95,100,91,112,103,106,100,101,113,103,102,99,105,97,111,108,81,102,88,92,100,106,105,105,98,113,107,98,105,100,111,106,100,110,102,108,107,101,103,115,102,113,102,110,98,107,108,105,114,98,106,104,99,100,105,105,109,107,88,108,105,94,105,99,118,99,100,116,107,114,107,94,104,101,114,109,109,96,115,112,107,98,106,111,104,110,112,113,117,104,108,112,108,119,108,111,104,103,128,105,95,109,106,109,106,101,113,102,94,124,109,108,118,111,107,109,104,103,112,93,99,105,108,105,109,105,100,105,103,104,110,104,98,99,101,112,99,103,90,101,107,98,100,107,99,107,101,108,98,101,113,104,113,107,97,120,106,106,105,108,124,105,103,98,94,106,116,107,102,113,107,115,97,97,114,109,110,98,107,104,111,105,107,107,107,115,109,102,106,111,97,107,109,101,102,103,107,106,115,99,118,84,103,107,100,104,108,111,109,105,106,103,109,112,100,107,105,103,105,98,97,106,110,98,108,112,98,98,105,106,109,96,117,99,98,103,91,102,113,98,105,95,100,110,105,108,110,75,107,113,107,117,103,108,111,102,101,92,115,110,104,99,112,101,114,107,99,106,97,103,104,108,96,114,104,98,103,116,113,90,113,105,115,113,105,104,114,104,111,105,104,119,111,101,109,109,100,107,102,106,104,111,106,105,112,98,88,109,106,103,102,109,100,107,101,115,98,104,108,95,107,98,107,111,123,112,117,101,105,115,87,100,97,109,98,105,103,100,103,105,103,108,107,102,112,103,106,105,94,103,102,120,102,108,90,115,101,104,83,109,100,97,100,104,108,106,113,109,102,97,101,113,116,106,105,90,96,110,106,100,104,100,113,100,113,104,105,114,107,110,105,115,105,98,101,113,105,103,110,106,100,115,116,94,103,113,106,109,103,109,104,80,94,84,108,113,112,111,112,113,99,110,108,104,87,115,100,103,111,98,114,96,90,118,104,84,90,109,103,108,100,101,105,110,103,109,103,86,108,116,100,102,107,94,83,102,99,99,92,76,111,110,106,95,109,101,100,101,112,104,101,107,96,95,113,116,110,79,101,98,108,124,109,108,102,113,117,102,100,93,113,105,96,110,104,96,98,95,120,111,105,98,112,100,103,98,104,93,105,104,108,100,112,89,117,105,104,104,109,91,86,105,112,82,101,112,94,107,105,98,92,113,101,107,109,110,109,96,96,98,111,93,80,118,110,109,68,105,105,100,104,101,97,97,104,94,113,99,95,109,102,108,100,115,102,106,100,97,111,98,105,93,116,106,103,104,105,102,110,106,101,127,107,111,106,106,101,110,112,104,108,98,101,103,101,110,98,100,103,92,119,106,97,120,105,104,106,95,95,109,104,103,107,113,104,109,99,95,109,104,101,116,124,98,106,100,106,104,106,111,95,99,110,95,108,102,99,104,119,98,101,115,90,106,102,119,98,105,96,105,116,102,109,107,117,112,99,122,125,95,101,106,102,117,97,92,95,101,106,96,97,94,116,109,105,83,89,95,124,108,96,93,100,113,89,95,114,109,111,107,96,94,110,105,80,99,97,112,101,108,132,71,110,106,106,110,106,89, +469.11145,118,105,100,101,80,107,99,109,99,86,93,100,110,98,116,116,98,102,102,104,117,82,112,104,108,112,109,99,117,98,99,99,128,88,104,109,101,102,101,97,105,103,94,100,104,115,113,100,91,99,109,114,108,104,111,92,114,107,106,85,107,105,98,83,113,110,104,113,109,93,112,120,98,105,113,103,96,118,120,82,110,109,108,103,101,101,107,104,104,105,100,105,110,97,96,104,95,100,107,103,106,95,93,96,110,100,101,101,105,101,119,100,115,95,98,104,104,114,117,104,99,102,104,104,106,97,108,94,108,117,107,100,108,110,103,100,104,97,90,100,101,120,97,98,99,111,118,104,113,108,102,103,111,106,116,116,102,97,105,106,106,89,102,106,123,106,101,110,98,103,104,97,99,88,113,123,102,117,101,112,98,98,111,107,95,108,110,102,109,108,112,114,98,103,71,105,101,118,102,98,107,91,99,104,110,101,107,105,113,110,95,103,110,106,103,94,108,107,104,107,109,101,112,98,109,121,101,96,109,106,115,132,109,124,113,103,107,99,102,99,97,104,100,93,112,102,101,100,96,104,103,106,105,108,108,108,106,108,104,108,108,110,99,105,96,100,103,110,131,108,104,102,115,112,109,95,105,111,92,103,107,104,95,102,109,110,102,109,103,104,100,95,112,101,104,113,95,113,113,101,103,100,105,102,106,102,104,101,110,109,109,114,104,98,106,100,95,101,109,101,109,97,95,113,106,108,90,103,113,111,94,111,115,93,107,99,113,89,103,102,99,106,118,103,109,108,114,104,115,96,122,116,109,112,86,105,95,105,104,113,103,101,112,96,95,96,101,135,108,102,117,104,113,105,109,102,110,107,105,117,101,103,99,103,106,108,97,109,108,124,109,107,106,104,87,104,98,105,105,103,109,103,97,102,103,106,109,104,109,105,109,103,107,100,94,99,102,108,103,101,102,101,105,84,106,102,102,100,102,112,95,92,105,109,105,106,96,122,101,114,115,103,101,111,100,111,107,112,108,100,104,144,104,111,102,104,99,103,99,111,100,106,126,114,115,110,105,109,86,117,108,98,99,99,89,98,120,113,103,111,94,112,106,107,97,105,116,99,98,106,112,103,99,103,103,102,103,106,122,113,117,110,101,91,96,103,102,110,102,104,115,101,101,101,103,98,112,105,104,103,98,87,111,101,109,102,112,117,108,102,108,107,112,101,108,105,115,106,107,110,96,125,102,104,102,95,112,94,102,92,106,108,96,110,97,90,112,101,95,105,110,112,109,104,113,103,108,107,102,83,85,111,100,106,100,110,104,108,113,103,110,104,99,107,101,105,98,104,109,106,94,106,95,107,113,102,113,100,118,109,110,101,100,101,93,113,101,111,87,107,100,113,103,121,106,98,104,100,106,109,90,96,100,102,106,109,108,117,107,99,108,107,99,104,114,113,103,115,114,116,121,109,100,98,107,96,96,95,108,101,101,107,107,113,98,103,106,111,101,105,107,93,95,113,95,107,101,96,104,108,106,96,116,119,114,106,101,106,115,122,101,105,105,103,102,88,98,109,102,94,98,105,101,97,107,104,116,103,85,105,109,94,89,95,107,103,106,105,101,103,102,102,117,97,102,108,114,103,106,113,108,103,116,104,98,99,110,84,116,124,104,99,110,102,101,105,114,108,109,108,114,97,114,96,98,97,104,99,103,122,126,112,110,100,105,98,112,114,112,103,113,99,100,99,110,114,111,106,95,106,118,109,123,105,96,117,106,94,110,100,107,99,107,104,105,118,118,102,114,106,109,108,107,106,111,118,98,107,118,94,111,103,93,120,104,104,95,101,105,103,93,105,92,110,110,123,111,101,106,103,102,103,117,109,107,114,117,103,105,98,107,111,108,102,113,108,104,104,102,120,109,111,111,105,101,108,102,104,110,107,114,99,115,95,111,116,113,90,107,135,122,97,83,107,100,112,96,107,121,104,99,98,101,105,108,100,125,104,102,113,110,110,115,103,110,101,102,118,116,111,122,119,117,106,114,112,97,109,114,107,100,102,105,102,99,101,103,108,99,99,116,109,103,112,111,96,102,102,109,105,110,103,107,113,105,96,113,104,107,119,99,104,109,112,102,95,98,104,102,114,106,110,105,97,94,111,95,110,105,114,102,112,105,102,89,109,102,106,100,107,118,114,109,95,111,97,99,95,112,106,96,102,112,116,106,109,101,105,106,96,107,109,101,97,104,90,107,101,107,109,101,94,95,113,107,99,96,104,110,111,100,96,106,106,107,118,101,108,115,103,97,97,97,114,101,107,106,97,106,103,74,112,105,107,96,101,90,100,105,118,109,102,113,105,116,114,105,109,102,102,106,120,105,118,109,103,112,104,111,111,103,102,106,103,106,104,96,112,108,118,100,119,96,112,102,104,107,123,107,110,106,123,108,103,112,108,106,106,91,90,94,94,85,113,103,100,107,105,109,105,91,100,98,91,110,103,89,88,108,112,92,94,109,108,93,121,94,97,105,94,100,112,105,106,102,95,104,105,110,88,95,106,99,106,112,98,105,109,102,117,111,108,113,98,97,114,113,100,98,102,101,98,113,114,102,104,105,98,110,100,118,93,114,118,103,91,106,99,99,105,111,102,116,92,98,100,93,105,110,100,103,106,109,97,99,117,110,100,98,103,102,112,91,108,95,101,97,105,112,109,96,103,106,99,99,110,99,102,112,105,96,104,120,96,92,102,107,109,123,103,119,111,107,95,94,103,115,102,103,108,113,107,90,100,105,106,98,105,107,109,107,94,96,110,102,101,100,113,105,108,137,99,103,77,98,100,105,96,113,116,115,102,112,104,91,99,97,99,100,101,108,92,99,116,125,111,113,105,106,112,109,102,107,111,106,108,109,101,100,104,96,100,101,107,112,105,104,87,104,106,103,106,91,105,100,112,114,98,96,97,111,116,106,112,101,98,105,102,99,104,102,121,93,95,113,110,100,96,106,105,105,108,109,129,110,100,108,105,105,95,113,93,95,103,108,86,107,97,97,95,84,107,101,108,95,95,104,94,111,105,112,102,104,107,107,104,87,101,98,101,101,113,101,101,111,106,113,106,103,98,108,107,106,102,106,102,103,102,109,100,104,103,99,100,106,93,112,98,99,108,102,92,102,115,111,100,102,94,113,113,100,101,99,101,117,102,98,103,108,111,111,111,95,100,99,98,106,113,108,94,105,112,84,101,99,100,108,102,122,104,109,107,115,110,107,104,96,113,108,81,133,96,107,85,87,103,100,104,98,101,110,110,100,101,97,106,108,108,97,104,116,99,102,103,86,97,117,91,91,96,110,103,106,87,112,117,113,128,99,109,102,111,99,102,107,107,107,104,97,99,92,100,103,103,88,97,102,108,117,95,98,110,104,99,101,96,108,90,97,98,105,107,104,107,101,103,104,111,104,110,104,95,94,105,107,133,109,96,101,96,105,96,102,106,100,103,118,115,98,102,106,100,97,92,112,102,111,121,103,111,108,100,106,109,97,105,108,114,109,103,107,105,105,102,102,106,93,100,113,108,110,96,103,101,103,111,104,105,118,100,105,108,105,106,98,100,110,105,90,104,94,94,99,101,94,102,115,109,99,92,96,103,111,97,87,99,97,94,108,106,105,104,105,133,103,100,115,116,103,97,116,93,99,108,99,97,100,116,104,101,103,107,108,110,105,104,112,91,101,101,102,109,110,87,95,109,106,109,109,109,100,96,91,101,99,100,111,94,109,108,99,98,114,110,108,103,105,96,101,106,95,68,114,116,106,105,85,113,108,102,113,97,102,99,100,108,97,105,110,119,91,99,95,89,98,109,98,99,101,95,100,97,113,114,102,105,103,105,105,89,106,104,100,119,100,114,107,91,118,108,108,103,100,103,98,103,102,105,105,106,95,80,111,113,113,91,106,107,107,117,106,110,99,119,95,104,105,102,103,102,104,110,108,104,108,106,108,106,99,100,100,115,105,106,98,100,100,116,109,102,118,101,105,110,99,116,110,119,115,104,105,95,92,107,112,110,101,100,104,98,96,99,106,107,100,105,120,98,109,95,109,121,103,102,115,113,107,116,103,108,113,104,99,96,97,105,117,98,74,103,102,105,104,109,96,109,82,107,120,109,107,98,94,98,109,99,110,95,73,100,105,103,101,109,114,102,102,114,101,99,106,87,100,107,110,105,98,102,101,103,106,93,97,87,87,107,111,106,106,103,100,93,108,110,102,108,96,99,97,105,97,110,105,107,102,105,100,101,87,104,98,113,116,100,116,117,110,108,100,118,100,116,101,107,104,119,104,106,113,113,104,111,91,105,105,98,105,78,106,101,109,96,113,88,99,98,106,108,100,102,110,106,104,103,97,108,98,95,102,113,99,101,101,105,102,102,102,118,84,91,104,101,68,109,99,106,98,102,102,104,90,102,94,109,103,95,96,96,106,106,95,91,104,92,104,98,106,91,114,101,106,101,107,95,117,105,109,108,101,100,102,103,100,103,99,104,102,94,94,105,94,104,102,111,104,107,91,103,102,111,105,106,98,100,107,107,110,111,104,99,91,97,99,110,103,97,100,109,105,94,110,79,87,104,104,108,94,101,103,93,111,101,96,104,102,98,100,103,105,107,94,98,102,102,96,102,100,94,86,91,111,100,93,116,82,87,83,102,102,99,100,110,94,104,78,105,104,87,99,100,101,111,95,106,97,105,112,104,104,104,113,101,100,105,101,107,95,106,88,111,89,98,94,101,98,91,123,89,91,102,98,105,109,115,94,108,109,97,93,110,99,95,106,102,119,106,125,104,98,103,101,117,86,102,94,122,88,95,109,69,99,100,108,89,93,108,96,102,108,90,109,99,103,96,105,92,92,102,70,105, +469.25192,103,96,88,96,81,111,93,100,105,101,105,107,96,81,119,99,80,105,116,110,104,88,93,92,113,103,100,97,100,106,95,91,102,93,119,107,101,75,93,89,99,113,100,105,109,106,97,92,92,96,102,106,96,103,110,103,95,106,105,95,104,93,103,90,126,97,92,103,99,104,100,93,100,105,103,110,92,102,106,101,120,93,101,98,106,85,101,112,110,102,103,100,104,103,108,112,112,104,118,102,95,117,95,101,100,105,99,118,76,99,101,103,101,95,102,110,97,111,108,115,105,97,111,99,112,111,99,99,102,111,107,87,97,108,115,119,99,102,84,104,93,109,82,104,101,117,106,104,95,103,126,91,109,95,100,103,104,102,108,102,100,118,98,111,109,103,106,96,118,106,105,119,105,104,107,109,99,103,106,99,98,105,109,114,102,104,81,95,103,104,99,87,103,102,106,106,112,104,102,108,102,99,99,101,97,103,104,102,105,106,96,109,104,106,102,97,102,105,92,105,111,109,107,100,97,103,99,104,107,97,92,112,100,105,105,97,101,112,109,114,120,110,106,111,102,99,97,101,96,108,96,102,92,97,96,112,98,105,109,97,102,101,98,91,102,113,106,106,110,107,90,118,106,93,113,109,111,103,110,98,102,102,107,100,102,100,90,102,100,103,102,105,114,108,111,116,96,98,91,103,113,101,108,106,97,111,96,106,98,106,98,107,116,100,105,108,98,102,105,107,105,101,104,108,104,97,99,96,110,106,101,88,105,104,108,116,93,102,125,109,103,115,104,86,106,107,104,105,111,109,104,107,109,113,117,107,107,102,101,116,102,101,104,96,101,101,104,117,109,104,117,104,99,94,101,102,103,123,101,101,114,109,97,101,94,91,108,107,97,84,106,97,92,102,103,95,97,96,113,107,105,100,98,108,102,103,95,97,107,105,98,91,117,109,103,95,102,112,106,97,105,103,104,105,105,108,102,108,107,101,103,109,107,105,98,106,97,117,108,111,109,104,110,113,103,96,105,100,106,115,105,112,111,107,103,104,104,124,112,107,105,105,109,113,115,107,95,97,123,89,125,90,110,104,98,72,121,113,128,108,105,105,119,99,105,111,113,117,68,108,108,107,110,115,102,103,112,108,98,107,103,92,104,107,104,110,93,101,104,100,112,114,105,94,118,106,99,110,111,104,95,110,99,112,103,100,103,97,105,108,105,111,106,96,95,110,104,103,107,104,99,106,104,108,103,102,107,118,90,115,109,116,112,106,102,106,99,100,123,94,108,99,95,104,100,115,111,115,109,107,106,103,111,102,112,106,105,105,95,105,108,103,99,135,97,94,112,108,109,110,103,96,126,101,105,103,92,104,80,104,96,108,98,118,113,103,93,102,84,117,105,107,113,97,102,121,110,105,113,89,108,106,93,110,104,98,108,112,104,104,107,105,117,106,97,94,99,104,111,91,107,95,99,101,109,95,71,113,100,102,88,100,104,104,100,117,101,103,105,108,108,104,109,96,109,97,103,106,103,101,107,113,104,119,93,121,98,96,115,102,116,121,116,92,95,100,99,90,105,96,107,109,100,104,103,98,111,101,102,105,94,94,104,100,109,111,109,108,107,112,101,106,94,108,77,116,102,108,105,95,93,104,107,94,100,97,106,112,106,101,105,107,95,103,99,103,107,101,108,95,106,104,108,109,123,104,110,97,103,109,116,109,103,104,100,113,112,100,111,105,93,111,96,96,105,104,107,108,110,103,114,114,103,100,99,105,103,105,115,104,95,103,104,104,102,116,97,120,108,112,109,106,103,103,101,96,102,107,98,105,101,102,97,100,109,98,105,77,108,115,106,101,103,102,103,100,108,108,114,110,98,95,110,91,90,95,102,96,105,98,111,105,113,107,106,103,108,116,108,109,100,101,101,123,99,99,104,119,95,103,106,69,102,111,91,103,111,96,95,104,104,90,117,97,97,101,102,108,106,106,103,116,95,108,102,90,99,112,102,94,113,105,108,112,114,111,110,98,101,102,113,90,115,110,111,103,113,104,102,125,117,109,117,105,115,78,98,113,105,107,88,119,114,110,118,97,109,117,94,105,95,113,103,109,101,104,93,109,107,114,105,116,104,99,106,103,101,101,102,106,119,116,88,95,103,111,118,106,112,109,105,113,106,110,114,105,114,110,93,110,108,106,95,102,96,112,91,99,101,105,100,94,119,102,108,105,105,100,102,127,105,108,123,115,105,106,99,99,123,99,107,104,122,97,114,123,97,96,108,107,101,75,107,113,99,100,102,94,110,128,100,113,96,105,99,111,110,91,105,97,107,109,120,104,109,105,116,115,99,111,109,102,107,105,107,106,95,115,94,111,105,111,97,106,99,109,113,98,107,91,107,96,98,106,111,106,100,102,78,105,102,111,118,83,112,108,100,113,101,109,93,107,95,112,113,106,114,103,93,103,100,111,107,118,101,101,108,103,112,95,102,102,113,100,101,102,87,87,116,99,93,114,104,103,97,102,105,106,102,114,91,104,112,104,97,106,91,110,94,100,106,120,106,81,108,117,99,109,108,104,110,95,103,108,110,97,106,95,99,96,115,91,106,103,115,101,120,93,95,100,96,87,111,103,93,98,98,107,110,114,94,96,105,89,108,114,107,87,122,99,91,134,106,108,105,106,107,111,100,104,112,116,101,104,104,101,111,102,105,109,92,110,102,103,100,100,123,100,98,116,94,109,105,97,82,111,94,108,100,103,99,100,101,108,104,103,106,106,96,93,75,107,104,104,103,107,90,109,97,95,101,108,117,108,91,112,110,100,94,105,93,92,112,98,97,115,116,88,114,103,115,100,101,109,91,99,104,103,101,108,113,108,92,102,117,102,97,116,100,109,113,93,99,104,113,98,112,108,97,107,116,101,110,97,100,82,95,109,101,94,113,111,99,103,103,103,102,94,111,104,108,103,91,107,99,101,106,95,105,101,100,109,77,101,102,113,105,99,97,106,100,112,105,102,108,99,106,112,106,111,100,116,99,113,101,97,110,99,105,103,104,105,103,103,107,96,133,104,112,112,84,120,94,107,108,105,109,93,99,114,108,119,97,101,96,92,117,113,95,102,116,106,102,103,106,112,112,98,95,97,113,98,111,102,102,104,102,108,114,101,104,108,92,103,113,110,107,98,106,89,104,96,99,101,91,107,107,107,101,105,98,102,92,105,102,108,95,111,112,113,106,102,102,95,116,111,107,103,103,107,91,93,108,111,102,99,110,114,105,110,97,83,90,92,109,99,100,94,101,95,100,117,96,100,106,94,108,95,94,101,112,96,118,96,106,93,109,110,116,91,102,102,103,88,109,107,105,99,110,106,99,99,91,110,94,113,98,103,98,107,106,106,91,105,107,99,107,105,96,95,89,88,96,99,97,103,110,107,103,106,100,99,104,97,98,101,93,99,111,104,105,103,112,93,96,107,104,105,100,101,102,107,112,111,98,121,110,109,98,107,102,112,100,110,96,104,107,111,99,97,109,103,106,107,102,109,96,108,104,105,97,77,104,104,94,109,99,95,106,117,100,134,109,110,122,109,99,100,85,94,112,93,101,88,93,107,96,106,98,105,107,101,109,106,111,106,100,122,107,103,97,96,111,95,83,103,108,102,99,102,109,108,123,93,94,92,104,105,98,105,104,106,102,114,99,96,97,119,111,108,113,102,106,109,123,92,113,101,103,103,94,105,104,97,113,93,109,103,107,88,100,92,92,99,100,103,107,107,97,104,118,96,113,97,109,115,90,99,102,104,94,99,96,107,106,99,106,97,99,92,107,88,99,115,112,103,101,103,100,104,91,111,106,107,91,105,101,105,98,101,97,105,96,94,91,111,104,92,98,104,107,106,98,97,99,101,98,97,88,99,95,111,95,88,113,96,99,106,95,92,100,101,105,107,102,106,99,99,103,110,102,98,96,98,96,97,103,95,107,108,103,98,91,107,99,95,105,107,99,106,108,90,100,95,92,103,108,108,108,106,95,104,110,117,110,98,104,110,101,105,119,107,112,98,129,99,110,105,96,98,102,111,91,90,93,92,106,110,104,98,105,96,105,99,108,101,93,99,99,106,102,92,107,109,98,109,104,84,98,95,109,106,96,98,103,102,101,108,99,108,99,98,94,105,85,122,106,92,117,116,101,109,110,105,102,112,108,99,94,117,114,106,102,118,106,101,99,98,108,105,107,99,98,94,117,94,98,116,109,82,83,98,95,73,97,101,101,94,108,102,113,101,118,101,100,100,103,95,91,96,95,95,110,104,111,94,116,113,96,108,107,100,102,101,112,95,106,101,106,103,109,84,100,96,102,92,117,101,105,95,93,97,98,99,113,108,92,103,116,97,100,119,91,101,93,118,114,113,97,95,97,87,98,99,102,108,85,93,109,103,99,106,107,104,107,96,88,95,98,105,103,102,108,104,121,101,105,63,102,105,107,71,115,96,100,105,95,86,104,94,90,98,101,107,103,103,107,107,95,96,92,98,108,99,109,87,94,101,108,98,104,99,103,102,97,98,96,96,103,103,114,105,109,104,103,106,86,109,101,98,103,92,109,103,102,103,112,104,102,71,117,96,101,105,112,99,97,108,100,111,92,98,105,113,101,96,100,96,102,104,93,99,105,107,105,103,103,102,94,96,105,95,98,107,113,108,102,91,110,96,111,92,103,103,100,103,117,111,96,107,89,94,99,101,104,104,104,97,108,99,97,95,95,120,99,108,94,74,102,83,97,105,97,94,98,102,106,102,117,111,104,95,98,105,93,109,103,116,95,108,109,86,95,98,113,109,110,85,106,94,106,90,112,95,97,109,111,109,109,91,102,100,103,107,102,98,94,109,112,91,112,101,100,100,97,89,105,98,93,94, +469.39243,109,108,95,107,94,100,100,112,97,95,95,98,98,95,94,106,98,115,122,101,92,97,90,101,110,94,104,97,97,106,123,100,95,106,103,104,103,91,99,100,80,108,94,94,86,109,96,113,92,104,97,98,99,94,109,91,101,92,95,96,103,112,99,91,100,111,97,105,101,100,121,94,98,100,107,119,95,111,95,99,98,112,98,103,116,99,108,83,107,108,102,103,94,112,91,99,108,113,108,100,97,96,95,106,113,98,100,100,93,104,97,102,97,92,98,95,95,99,104,90,97,99,106,102,90,104,107,91,109,97,101,105,97,70,104,118,101,92,94,99,96,102,101,101,100,97,98,93,101,90,98,117,93,97,99,94,102,97,117,102,98,83,106,107,104,109,100,98,102,83,106,100,104,111,96,101,99,97,109,106,98,95,104,108,99,103,94,93,116,95,98,101,101,103,99,108,101,91,121,86,100,101,105,98,99,95,104,100,112,110,103,105,102,106,96,105,103,105,99,109,92,112,94,98,87,104,99,102,103,109,108,95,99,106,109,108,112,96,83,95,104,99,101,112,105,95,97,106,109,111,111,134,104,102,99,106,94,98,98,111,99,98,104,96,107,118,91,110,112,95,98,114,103,102,104,96,95,104,103,103,96,105,107,102,97,110,98,105,115,111,107,108,95,116,110,100,104,109,100,109,100,102,104,114,103,125,101,108,98,104,92,115,109,109,126,101,95,112,116,99,104,104,96,101,114,102,99,87,96,104,99,91,108,103,108,96,96,96,104,79,88,103,110,99,84,114,102,102,104,98,98,98,108,82,91,124,109,97,106,104,79,112,91,110,100,90,100,110,111,110,116,99,103,116,95,98,101,105,95,99,108,83,96,104,110,94,100,119,98,91,115,101,90,97,105,94,95,112,111,92,88,100,105,98,108,89,105,90,97,91,92,89,109,106,106,108,102,123,109,100,99,100,96,98,103,98,106,94,97,106,96,114,104,99,109,102,98,102,104,102,113,104,109,97,99,112,97,99,99,99,106,108,102,101,94,101,103,108,95,108,94,101,93,109,103,109,107,99,105,103,106,90,99,96,100,106,102,97,92,115,103,125,99,104,104,87,86,105,90,102,101,108,100,100,104,113,100,92,98,104,100,106,109,115,115,105,93,101,110,107,109,96,120,104,104,105,98,108,102,95,107,87,104,100,85,102,94,113,90,110,106,104,105,96,126,96,104,93,96,111,110,112,98,101,111,95,111,98,90,106,103,101,99,106,105,101,102,101,96,109,102,119,100,113,116,96,99,100,95,99,107,103,83,95,91,106,107,107,108,104,110,98,109,92,96,92,102,105,108,110,109,94,104,104,112,99,104,103,119,108,98,108,99,100,108,104,99,108,100,113,122,105,104,121,102,99,103,106,105,92,98,103,110,102,98,88,94,101,113,112,98,113,91,97,111,101,116,100,108,99,112,96,98,95,96,102,102,104,119,105,93,103,107,117,102,93,95,112,96,113,105,93,107,108,93,112,107,93,117,86,114,106,109,108,101,103,105,106,108,110,116,109,109,100,117,99,111,104,105,126,107,99,104,109,113,107,106,97,123,100,100,90,99,95,100,112,101,109,99,84,107,114,113,111,105,91,95,96,91,84,98,99,98,97,94,101,94,117,111,111,102,89,113,110,97,96,106,94,104,114,102,92,94,102,99,103,106,101,89,114,107,110,99,105,109,113,99,106,107,105,108,92,97,121,95,99,100,94,115,97,102,97,100,97,106,107,105,97,99,115,104,105,112,99,100,102,105,106,106,114,109,111,108,87,105,102,102,108,98,103,81,95,99,111,98,101,105,120,96,101,108,99,110,106,97,105,99,100,118,105,106,107,109,108,103,105,101,103,108,110,113,96,102,91,104,94,103,106,98,94,112,105,105,96,105,110,114,114,93,116,98,97,112,113,97,102,88,110,96,101,109,109,108,101,98,94,101,96,112,105,112,106,100,96,99,93,105,97,86,108,101,91,97,104,95,107,94,106,107,104,95,96,100,98,117,98,111,104,106,113,98,110,104,105,104,101,96,90,109,76,102,111,100,105,91,106,103,109,105,92,111,109,104,99,103,105,109,106,112,104,88,117,109,111,110,105,107,98,98,110,105,95,104,88,99,104,107,94,113,99,103,98,108,98,97,112,110,114,98,96,106,102,103,96,95,96,92,96,102,110,103,98,95,99,102,104,104,92,106,106,85,112,116,107,98,82,97,107,108,104,84,105,91,112,96,100,98,110,102,104,110,102,105,94,109,110,105,113,92,92,95,92,113,107,92,97,111,107,97,97,103,99,111,99,106,100,102,94,95,101,99,94,109,95,118,98,100,105,94,99,95,102,104,107,99,107,94,97,101,116,100,98,98,96,105,107,109,86,99,98,105,104,101,95,131,97,103,116,105,97,113,109,106,103,95,97,103,105,89,97,102,93,102,116,89,110,101,85,112,96,83,105,109,93,92,101,111,98,113,103,82,99,112,102,104,101,102,96,97,102,98,99,96,95,101,100,102,116,96,101,99,102,114,91,88,97,109,100,98,101,112,94,105,109,107,92,106,91,97,102,108,91,89,110,107,99,100,87,99,99,107,107,113,105,111,102,107,101,103,100,85,97,100,90,103,109,95,100,104,98,85,99,104,100,96,108,114,99,102,104,106,106,102,110,104,103,114,112,95,108,98,109,107,103,103,79,99,98,100,100,105,99,102,106,108,109,101,120,99,101,106,109,92,107,106,108,100,114,104,102,112,111,94,109,104,105,101,108,105,108,97,113,95,102,105,103,98,109,112,95,102,104,105,91,106,102,104,98,100,95,101,106,99,102,95,104,92,103,95,109,98,86,108,107,117,97,96,100,94,121,84,110,102,100,101,99,90,107,106,114,105,106,111,97,99,105,109,100,109,94,105,107,104,97,106,98,96,94,102,99,101,99,91,103,100,97,111,95,88,83,106,98,103,92,106,110,98,109,94,96,102,98,81,121,113,102,107,103,106,108,101,96,107,108,110,89,101,100,95,100,100,112,97,98,107,108,111,98,101,101,94,110,106,107,98,91,111,95,91,88,100,102,100,100,100,99,108,107,97,106,91,113,98,99,107,88,113,113,105,102,103,96,100,105,99,103,103,93,109,99,102,102,111,112,104,95,106,106,112,112,98,120,103,99,99,122,98,92,102,101,96,109,80,106,107,91,107,105,80,97,122,103,90,99,112,102,98,97,89,102,101,101,98,106,105,105,90,100,102,84,95,109,105,98,100,105,90,102,106,99,99,103,103,99,101,102,95,102,91,108,100,108,94,108,124,115,109,106,95,106,103,96,92,84,114,97,86,99,99,100,97,105,100,95,67,85,94,91,107,103,106,101,105,115,105,108,105,95,101,100,93,102,103,92,95,102,106,99,95,99,105,101,99,98,100,96,102,101,91,98,92,97,101,96,108,102,105,106,105,94,84,105,95,105,105,100,95,101,110,109,94,113,95,101,103,102,112,109,101,97,99,110,94,100,87,109,102,110,92,115,82,109,101,111,87,95,92,102,109,110,102,99,105,97,88,100,99,124,95,95,100,88,105,100,110,98,111,100,98,99,99,106,93,104,113,99,101,100,107,106,94,100,100,80,95,101,96,113,102,114,109,102,104,99,97,94,105,99,104,100,99,99,106,110,105,103,98,103,98,107,115,112,111,137,104,99,114,115,108,95,111,113,110,106,107,100,102,82,108,101,103,105,103,99,92,109,125,101,108,119,88,89,115,104,106,103,104,79,111,117,107,104,95,103,113,96,100,105,94,101,109,95,106,97,97,113,104,113,94,114,103,104,112,106,91,104,105,103,116,99,105,103,98,107,87,97,93,97,84,103,110,94,105,105,88,80,101,96,88,106,90,96,124,93,113,112,110,92,113,106,99,100,106,105,98,111,107,104,105,98,113,102,99,106,103,91,101,102,104,95,113,106,92,114,106,103,107,98,105,102,97,106,97,90,106,106,109,100,105,94,109,95,104,80,105,110,98,109,109,98,109,108,102,105,110,106,104,106,102,91,101,95,106,100,103,93,107,102,93,96,117,108,103,99,98,108,97,95,96,103,101,91,73,98,104,105,93,105,89,105,84,119,102,96,94,104,105,104,103,101,128,106,101,99,89,109,110,100,101,109,109,101,108,109,106,114,94,111,97,100,102,113,105,109,106,90,99,98,96,107,101,91,112,87,103,104,100,103,91,105,95,104,102,106,99,106,98,92,100,100,99,107,104,93,102,92,102,92,83,110,113,97,103,105,92,106,98,95,102,95,102,95,112,96,98,102,95,106,89,108,110,97,103,105,112,105,103,103,117,96,101,110,106,116,107,114,99,102,98,95,104,109,98,115,103,107,106,108,102,100,104,99,104,99,98,110,94,106,104,95,95,115,107,92,96,99,102,95,102,94,90,121,78,97,108,85,98,102,111,109,100,96,113,114,102,99,98,92,91,104,109,108,96,111,105,105,96,110,97,113,98,100,102,101,116,103,102,112,101,104,94,103,97,101,115,100,92,92,101,102,92,96,83,105,104,108,104,101,91,89,103,100,107,103,108,112,110,89,115,101,118,98,99,105,107,87,118,111,108,106,100,120,110,110,101,110,90,108,105,101,118,95,102,105,87,106,90,108,101,92,83,121,114,95,97,99,103,94,110,100,95,103,94,102,92,101,103,102,96,99,108,104,93,105,119,101,99,95,113,102,112,92,102,96,100,105,92,98,105,101,117,102,104,97,112,112,109,99,104,84,94,108,96,94,95,94,100,103,122,106,107,88,96,109,87,95,118,101,90,92,93,109,82,95,106,112,96,92,109,89,116,98,102,91,111,96,109,105,102,112,123,88,89,94,100,109,104,109,92,91, +469.5329,109,80,97,93,97,118,102,95,95,96,96,101,104,102,106,99,90,106,116,85,102,106,95,106,101,88,104,95,100,110,102,93,110,101,106,98,103,74,103,101,103,101,93,87,120,100,110,120,94,107,87,103,103,91,123,92,96,106,110,91,106,113,100,96,94,111,88,95,90,94,104,100,99,99,106,88,99,117,90,114,100,104,96,105,109,105,104,95,94,99,99,101,99,103,89,102,97,95,106,106,99,100,100,92,82,97,105,110,99,106,100,92,106,98,102,98,109,93,104,109,104,104,114,99,85,116,103,104,105,113,104,98,98,102,101,108,90,95,104,91,106,91,76,117,102,97,99,105,115,98,101,93,112,107,104,103,105,97,101,98,90,92,95,95,106,106,90,97,103,100,107,113,97,92,98,104,96,96,101,109,98,95,96,106,109,91,94,97,108,100,100,106,98,118,79,101,103,99,107,109,86,99,88,98,108,112,97,90,94,98,95,94,110,89,103,107,103,99,89,106,97,108,108,97,107,85,99,102,105,112,89,92,105,125,107,102,96,106,105,107,86,103,112,100,109,105,98,99,118,109,112,106,108,97,117,104,115,109,102,108,96,96,100,93,88,93,105,96,104,102,101,110,95,99,101,106,96,107,110,101,82,106,113,102,98,91,95,108,86,107,98,104,111,95,101,114,106,103,84,106,87,93,103,96,104,113,109,103,105,87,98,105,117,98,95,96,105,105,94,102,94,103,96,99,101,79,96,96,108,97,104,95,118,97,109,105,96,93,111,106,108,95,86,95,102,110,117,113,98,99,91,98,98,108,98,103,100,107,82,99,93,103,91,94,87,102,99,101,94,107,103,99,101,128,101,99,116,112,105,104,107,107,100,104,105,112,98,103,99,85,121,98,90,113,104,99,97,94,90,104,102,100,91,96,90,95,102,105,95,99,91,106,100,108,108,93,98,102,103,108,104,107,102,98,90,101,92,99,103,105,88,116,113,111,98,99,96,104,93,100,100,96,91,104,98,101,100,109,102,113,103,91,105,108,106,93,93,95,110,101,101,95,97,105,94,92,111,101,111,91,101,103,100,106,101,97,93,115,100,94,95,99,116,109,98,114,99,83,102,108,101,107,105,85,99,107,107,101,105,95,116,107,101,102,98,106,102,81,101,99,103,95,102,105,101,98,100,99,109,104,95,96,108,100,111,103,109,92,100,99,94,109,113,102,93,102,105,90,113,116,104,111,104,100,104,104,112,102,98,104,105,100,105,129,100,95,99,91,94,105,99,99,98,85,99,100,103,103,91,106,94,101,109,106,113,114,99,101,105,101,109,82,106,103,102,105,114,108,101,110,105,100,114,101,119,108,107,109,108,104,99,113,105,107,106,95,87,110,112,96,108,95,111,99,105,103,91,101,107,102,95,99,109,103,94,109,96,96,102,112,99,114,105,112,113,106,113,123,107,95,106,112,106,113,100,86,99,111,107,95,101,103,84,101,97,101,96,108,110,96,110,128,94,101,107,106,104,95,98,103,108,98,102,102,96,104,106,92,100,103,109,103,108,104,102,96,117,104,96,105,113,99,99,106,113,112,98,101,105,105,105,98,93,96,102,91,106,96,102,101,101,101,109,111,115,103,104,102,101,103,98,109,101,99,100,101,94,102,97,101,109,111,106,111,102,104,115,96,108,106,122,96,103,98,94,94,100,92,87,118,99,100,104,97,100,93,119,97,108,106,93,94,101,91,105,103,101,102,103,93,111,96,109,109,91,109,107,98,100,102,106,100,113,100,96,106,109,105,108,107,98,111,102,113,98,91,96,97,102,115,101,109,96,108,103,96,112,105,105,99,102,101,81,92,100,101,101,96,92,98,105,102,101,64,106,97,105,106,101,97,114,115,114,110,108,99,106,92,102,106,111,95,119,101,94,106,96,99,106,101,95,113,112,91,96,99,106,99,101,109,90,89,105,97,109,112,100,105,110,107,111,90,99,102,101,96,114,105,107,104,100,104,116,88,94,96,102,103,102,102,96,114,109,95,109,98,101,103,112,97,96,100,115,101,94,97,118,106,91,98,109,101,125,106,94,99,92,113,96,104,85,98,86,103,100,108,95,99,98,95,106,104,88,118,101,105,97,94,103,103,101,98,108,113,103,109,96,104,108,88,106,99,107,109,108,104,102,98,100,102,103,109,95,109,109,100,108,93,109,104,99,98,87,106,104,108,114,105,92,104,133,107,101,111,104,95,102,105,107,94,104,101,95,95,112,64,102,116,101,93,100,105,102,111,125,113,101,109,97,97,102,94,104,112,99,96,102,100,96,110,103,102,103,101,105,109,105,97,109,104,107,99,104,107,113,93,103,98,104,103,107,107,96,91,104,91,107,100,112,99,102,101,108,115,111,96,100,98,108,80,98,111,113,109,102,96,109,106,107,103,109,105,95,112,79,104,114,113,96,103,103,95,106,110,107,109,113,101,119,109,117,101,105,97,103,103,105,96,95,108,91,100,116,108,108,110,106,103,105,99,108,127,97,104,117,112,108,88,109,111,111,107,102,110,104,103,112,108,109,98,100,120,94,101,113,106,112,107,108,103,94,109,99,103,108,103,108,116,105,94,107,108,117,111,99,116,104,104,99,113,114,111,108,87,115,110,104,102,101,96,100,91,113,102,101,106,107,75,113,102,112,102,106,103,108,104,101,103,105,116,88,110,105,112,104,102,106,106,110,102,106,92,121,113,114,117,104,108,106,105,114,95,106,102,104,114,101,107,106,102,109,102,101,120,140,95,105,100,99,101,107,106,99,103,113,98,97,116,105,103,106,98,97,104,102,99,116,109,96,103,106,105,103,109,111,117,108,97,108,109,104,93,109,110,96,106,107,101,96,110,99,105,114,101,110,114,106,94,105,109,113,108,103,106,113,108,107,96,114,91,101,112,105,96,113,114,100,106,116,105,108,114,108,128,106,110,102,108,104,102,111,99,106,104,100,106,67,100,109,104,105,110,112,109,98,110,109,109,99,97,107,101,112,105,106,108,117,111,100,104,111,112,113,105,122,101,106,105,115,104,111,106,107,100,97,91,93,116,106,95,102,113,100,103,100,98,85,94,107,100,103,100,112,104,112,94,107,99,105,97,93,102,113,105,109,111,101,105,105,108,103,103,101,106,109,117,109,96,98,116,107,108,102,99,106,108,110,109,97,99,100,102,102,119,109,102,117,110,117,91,102,109,103,97,117,100,115,96,99,92,103,108,102,110,95,98,113,111,109,108,113,95,88,96,103,104,102,102,102,100,92,93,92,109,98,100,102,105,104,99,103,107,110,99,103,102,104,100,107,110,101,103,108,104,97,103,92,106,100,124,108,104,103,96,94,105,109,95,108,102,100,103,96,111,112,96,103,109,109,129,101,109,96,103,110,102,110,95,99,104,97,101,107,111,84,102,106,106,111,106,112,107,102,105,94,120,113,108,98,99,107,110,101,105,89,101,96,101,116,91,111,102,101,102,108,97,115,105,108,108,116,105,112,110,120,102,118,108,111,98,106,107,101,107,110,96,99,117,105,106,111,99,109,101,93,102,98,99,104,88,103,110,99,102,103,114,100,128,100,117,102,103,109,109,115,110,100,117,108,109,92,106,113,93,103,104,113,99,112,112,100,110,98,116,98,108,114,95,115,105,114,120,93,105,104,103,103,108,99,109,96,105,107,92,106,87,102,105,111,84,111,101,109,102,106,109,84,105,104,106,108,102,94,103,100,119,99,104,93,117,112,108,117,104,107,104,92,103,105,113,102,92,104,114,98,98,102,110,96,108,129,99,93,110,96,108,100,100,103,111,105,114,101,108,98,106,108,106,110,114,99,109,103,103,106,116,91,99,90,101,110,101,99,103,98,99,111,99,92,105,111,112,94,108,102,94,104,107,112,107,95,98,112,91,95,111,94,110,116,92,102,107,107,112,105,110,110,95,101,115,106,108,109,103,115,116,105,103,107,110,84,112,105,108,103,106,102,99,125,79,109,108,89,110,104,103,107,108,98,104,99,108,104,109,92,98,110,109,106,106,109,102,103,107,98,107,109,109,120,100,117,107,98,109,109,113,102,106,102,106,105,100,110,112,103,98,108,101,113,111,98,98,106,112,103,114,102,93,108,92,107,112,105,99,91,109,120,103,92,106,92,98,116,111,98,123,93,111,116,106,115,106,105,113,97,97,104,91,103,110,109,95,92,104,100,117,108,100,114,101,98,92,107,97,99,102,98,104,94,106,112,97,76,104,102,102,102,102,99,109,104,98,102,101,122,107,101,103,102,112,109,114,111,93,114,97,104,102,98,92,127,95,87,108,102,107,98,101,100,110,105,107,107,106,94,101,106,108,106,113,102,98,106,110,116,103,100,105,105,107,108,100,112,109,98,109,97,106,113,120,118,108,95,104,104,116,103,114,102,112,125,107,104,100,104,90,98,94,109,113,102,130,106,112,107,92,94,105,95,100,97,100,105,111,103,102,108,105,99,97,106,99,112,99,108,106,109,110,100,82,101,95,104,97,105,106,105,126,98,102,114,114,108,91,107,105,105,112,98,103,107,111,81,90,99,101,105,100,102,112,103,100,102,99,98,102,106,108,98,107,112,103,109,109,110,94,101,98,112,104,100,102,103,105,109,98,108,110,109,102,102,97,104,101,100,95,112,105,99,105,109,103,106,105,101,122,108,103,106,106,91,111,76,106,110,104,106,98,120,96,107,99,109,113,101,97,106,105,95,98,103,91,98,96,86,95,105,92,104,103,102,128,77,99,98,98,97,99,100,108,96,104,104,106,102,106,117,94,103,97,106,111,111,104,103,106,108,122,105,94,101,110,104,103,109,117,98,114,100,124,112,113,117,95,109,109,91,96,95,110, +469.6734,95,115,95,102,104,102,92,100,115,110,77,100,98,105,106,90,92,113,104,112,109,98,92,103,103,98,100,103,108,105,116,100,102,101,110,103,101,108,92,100,100,106,100,109,98,117,105,106,98,102,109,100,110,101,104,111,101,95,110,101,100,83,100,109,104,105,101,106,103,104,106,101,93,85,84,112,111,106,113,101,132,106,97,98,92,91,91,91,109,105,98,86,102,101,96,92,109,101,110,103,101,107,98,99,108,103,93,109,107,108,94,109,117,97,111,113,94,106,123,104,95,87,98,113,105,114,117,103,110,95,107,113,104,104,103,115,108,110,97,108,106,104,103,104,93,99,108,94,102,106,83,108,108,109,95,105,105,100,109,101,106,103,117,108,109,100,108,108,104,94,101,103,94,95,98,106,95,101,104,102,104,104,102,107,101,107,96,102,102,131,102,103,107,95,99,104,103,101,86,99,124,97,104,100,91,105,116,105,110,105,98,108,88,101,105,90,94,112,101,89,98,101,101,109,98,108,101,104,114,98,98,86,94,103,100,96,99,103,113,116,96,105,125,112,101,96,100,104,127,108,113,99,98,100,112,102,99,101,92,109,95,94,102,102,92,108,104,99,106,102,104,118,106,106,107,113,114,101,102,98,115,104,116,106,101,104,95,119,104,107,100,112,123,93,104,102,99,97,101,102,103,94,111,91,99,110,108,131,100,103,109,111,110,108,122,97,108,108,107,104,115,104,109,109,106,109,107,101,103,108,102,104,100,109,105,98,109,106,102,98,106,103,102,96,104,105,118,95,90,96,113,102,110,109,101,105,102,101,109,111,107,102,113,105,105,107,113,120,107,102,109,105,110,107,110,110,105,103,105,112,114,106,87,107,112,92,106,96,109,102,98,94,112,120,107,112,102,108,112,107,95,117,97,93,104,101,103,107,112,110,106,126,108,109,126,99,110,101,104,116,108,105,113,107,105,109,111,103,90,103,100,115,102,97,106,100,104,118,103,110,114,109,101,98,102,108,103,100,97,114,93,105,116,107,100,84,108,106,102,100,116,88,112,108,104,108,106,111,107,106,112,103,93,103,105,104,107,111,110,106,95,105,107,97,99,88,110,104,104,100,108,102,98,101,98,101,103,110,98,103,101,100,104,85,106,112,91,96,75,104,108,111,103,102,104,117,106,119,114,101,111,113,107,107,107,87,99,105,120,113,106,104,118,110,112,110,88,100,119,106,91,114,101,81,107,101,105,103,98,112,100,121,116,105,103,100,107,114,105,103,96,106,103,109,95,107,111,110,95,89,113,106,112,107,105,108,111,111,109,110,112,98,105,104,103,98,99,105,103,97,108,96,104,105,114,112,102,99,108,111,106,105,115,97,87,108,109,115,121,104,101,100,103,121,103,108,116,105,106,115,109,92,101,103,106,97,95,103,98,104,120,104,100,88,100,105,90,114,104,111,91,97,93,116,110,91,97,101,107,112,85,113,106,115,102,110,110,106,107,102,103,103,100,108,95,85,114,103,76,119,106,98,103,101,104,107,104,101,114,106,103,107,111,101,115,115,114,102,110,87,113,100,106,110,113,98,104,109,112,113,106,107,109,108,100,101,112,99,112,112,101,101,106,116,111,118,109,87,109,101,105,108,100,96,106,98,108,99,104,106,72,110,96,110,92,101,109,116,111,111,107,102,106,102,121,105,114,115,101,104,109,92,106,102,107,109,110,109,115,113,102,113,91,117,105,100,92,99,96,95,111,115,106,107,108,103,99,99,99,105,105,112,106,106,108,107,102,79,111,95,103,106,98,101,101,113,108,93,107,100,98,124,109,103,101,109,103,110,94,103,113,99,100,102,113,100,96,115,103,99,79,92,75,109,111,107,108,104,91,98,117,108,99,101,98,102,105,102,119,102,105,99,109,102,106,102,102,81,111,103,106,108,112,113,92,96,102,119,111,99,104,96,98,118,90,106,97,111,89,103,111,103,109,101,103,113,103,108,103,114,102,107,120,120,98,106,103,109,115,107,98,108,106,112,108,105,104,105,107,120,109,98,91,101,108,79,104,107,84,109,100,118,92,120,99,118,99,102,95,109,96,108,97,103,108,94,109,107,102,102,105,112,135,112,104,88,113,98,109,97,104,107,107,112,97,101,94,103,95,108,109,109,107,100,107,117,109,106,88,110,96,105,100,104,105,99,111,100,104,102,102,108,104,112,110,118,103,102,99,104,101,112,112,105,103,111,109,97,105,107,105,97,105,113,105,101,105,106,105,99,103,111,95,95,112,110,108,113,107,109,118,106,106,100,97,114,110,102,117,104,126,120,114,87,116,109,113,107,102,109,109,102,105,98,100,95,99,106,88,116,96,109,112,105,98,101,103,105,107,108,112,106,112,105,117,99,109,107,103,94,99,103,119,112,107,105,100,112,113,101,108,104,104,113,107,122,99,103,99,97,111,83,90,106,102,102,103,95,120,76,119,110,115,125,96,100,104,95,111,93,107,99,102,93,96,113,93,101,108,113,100,120,104,100,102,98,106,104,96,96,95,100,100,103,106,95,96,117,97,85,116,98,111,96,89,79,99,108,101,99,104,101,95,113,116,103,104,100,105,97,101,103,70,110,108,104,109,103,104,103,103,98,113,96,114,112,103,114,102,95,107,106,99,109,103,112,109,109,104,103,128,106,101,111,93,93,103,92,98,101,101,103,96,93,94,87,96,98,104,114,106,107,107,128,106,97,99,96,109,86,112,100,102,106,108,111,113,98,123,108,109,111,132,112,103,100,116,109,103,99,102,107,107,109,113,92,100,106,107,105,123,100,103,105,109,96,96,104,104,109,105,98,109,92,102,101,97,103,92,94,104,105,109,102,117,102,111,94,91,109,111,99,101,99,96,117,97,100,99,100,97,97,113,94,104,86,103,107,102,100,104,108,108,104,98,95,105,92,105,91,109,110,91,117,91,94,119,99,109,103,94,103,99,103,99,106,106,107,111,83,89,98,102,101,79,98,116,95,98,100,113,91,99,119,102,105,91,88,103,111,102,111,102,97,99,108,115,96,109,107,100,107,119,84,91,114,99,98,108,107,99,101,102,107,90,83,114,115,108,95,108,113,113,101,109,98,101,109,112,99,98,98,94,91,104,106,118,97,101,89,102,98,104,108,95,102,100,104,96,101,100,103,100,103,92,105,109,114,108,100,112,96,99,103,96,109,109,101,108,91,92,99,118,73,109,109,109,105,111,98,115,93,99,99,105,93,97,100,102,97,99,97,107,105,78,106,115,105,108,93,100,109,103,106,105,93,107,104,106,96,96,91,100,103,98,105,95,95,100,95,102,113,93,94,104,88,103,111,108,96,102,95,100,107,87,107,92,103,104,125,99,106,103,100,102,89,107,106,101,97,99,109,111,109,99,96,101,105,96,103,102,101,114,102,103,109,109,94,102,100,101,99,96,92,95,98,93,112,94,96,103,107,97,87,96,110,102,106,105,105,114,102,81,108,110,97,91,98,114,96,97,104,106,115,92,104,102,95,113,105,102,98,100,109,110,101,109,101,106,106,109,88,101,110,102,104,102,96,111,96,101,106,91,100,107,98,105,111,86,94,101,100,106,106,116,103,96,103,102,89,128,98,98,101,96,87,101,90,115,106,105,109,95,100,92,113,103,110,99,98,105,98,96,98,92,114,101,106,113,102,111,107,107,104,92,101,108,106,105,101,96,103,94,102,100,85,95,93,98,98,96,120,91,96,119,96,92,109,109,103,107,95,104,99,95,96,99,102,98,108,103,103,94,99,73,111,103,98,96,101,107,102,110,97,101,95,100,97,112,107,98,108,98,109,107,103,101,112,104,93,82,100,94,103,117,114,87,98,96,95,100,106,113,105,103,121,104,111,95,100,101,101,101,99,108,87,130,106,109,108,103,92,102,117,96,121,106,104,115,105,106,98,98,100,117,103,103,106,97,104,101,103,107,113,105,79,97,102,106,89,106,113,101,101,108,102,96,99,109,97,112,108,108,100,103,98,113,101,108,103,113,106,99,99,114,93,92,98,96,107,102,103,99,101,98,115,96,103,102,94,109,110,101,113,94,110,102,110,102,106,113,104,105,103,113,114,99,135,96,102,102,108,93,100,90,103,91,102,101,107,96,94,98,105,101,97,101,101,101,112,117,112,112,96,106,107,104,106,95,108,106,102,113,104,118,93,107,93,107,108,103,98,111,97,105,111,109,113,100,91,91,96,102,116,102,102,96,107,104,123,100,98,109,94,85,97,130,94,98,109,105,107,96,91,95,99,102,100,100,113,108,112,111,102,106,83,106,104,97,97,96,92,114,91,100,100,116,99,107,99,108,101,113,112,98,96,103,88,103,109,104,106,125,98,110,104,99,127,104,97,106,106,96,110,92,102,80,117,108,97,95,99,90,103,99,106,113,98,95,96,112,107,103,102,97,101,102,108,104,91,104,106,96,105,117,110,110,99,103,99,94,87,106,102,112,99,94,113,102,108,96,87,98,117,100,102,96,107,110,95,89,102,105,108,93,110,98,102,111,105,102,110,111,106,104,113,105,99,98,99,98,95,107,106,109,117,101,103,108,136,94,88,106,113,87,103,107,117,122,86,112,105,95,96,100,98,112,98,102,104,99,97,104,110,95,101,111,94,105,96,96,93,102,95,105,98,102,115,96,97,104,124,113,103,90,99,107,106,111,94,108,105,102,107,88,94,96,92,105,98,103,96,86,110,93,105,105,108,101,112,107,108,89,102,104,108,106,110,100,111,103,97,107,102,112,98,105,109,104,99,110,110,95,106,113,101,97,110,99,101,116,104,91,96,100,104,97,100,110,95,99,111,105,90,87,112,90,112,104,93,113,109,103,97,99,110,102,116,107,91, +469.81387,107,106,87,105,105,106,114,108,105,101,94,105,107,113,106,88,98,97,103,92,114,94,88,109,103,110,95,109,99,101,102,104,102,100,107,107,101,98,107,104,95,108,88,96,115,106,106,107,102,100,104,104,87,97,103,106,98,105,114,101,90,93,99,86,98,104,102,104,107,94,111,103,121,109,94,121,117,112,113,111,103,103,110,101,121,108,94,109,95,100,100,93,92,105,103,111,99,97,102,101,97,103,114,102,102,100,103,99,97,103,101,98,65,89,103,105,88,101,114,105,110,97,102,109,108,103,72,99,109,113,114,99,94,94,95,114,98,103,106,112,82,112,110,112,91,123,107,105,100,90,91,109,107,98,118,109,100,113,104,101,114,98,101,104,95,106,94,101,105,102,95,96,112,105,110,105,97,101,109,113,110,96,101,121,91,101,102,105,99,83,113,108,111,101,104,109,93,97,99,108,102,104,107,103,102,102,116,105,111,105,100,98,107,103,105,109,99,108,108,117,97,86,90,112,108,123,105,106,105,115,103,101,105,101,103,102,110,109,96,107,94,112,102,105,103,101,106,84,117,109,102,111,109,93,101,101,108,111,102,126,99,101,99,105,99,100,108,110,107,106,109,114,104,107,76,107,107,111,102,105,105,106,121,98,95,112,101,98,110,108,94,99,101,111,108,106,103,100,102,106,108,104,105,106,94,101,115,109,105,115,115,107,113,114,107,113,116,105,95,102,111,99,98,100,104,100,102,94,86,108,101,99,102,104,99,109,94,104,107,114,101,105,94,111,102,105,103,104,114,115,104,106,106,98,95,101,105,112,105,109,96,100,104,107,96,107,104,92,103,108,109,104,116,114,108,96,106,102,95,105,111,111,110,117,100,95,106,105,112,88,105,106,99,108,94,107,104,99,122,106,109,102,96,110,109,97,95,116,107,100,99,98,103,106,117,127,103,97,111,97,99,105,103,105,91,103,111,105,104,108,91,98,112,101,98,112,113,105,103,110,117,105,104,129,94,96,99,108,103,108,105,100,112,114,110,103,108,96,106,117,104,111,104,104,106,109,100,92,124,104,109,107,71,93,109,101,92,111,91,110,104,96,109,108,105,106,116,108,103,103,100,99,100,109,72,93,100,101,107,108,102,100,105,107,106,115,101,100,100,92,103,100,95,123,100,106,109,100,105,98,109,114,106,105,104,105,112,106,89,109,98,107,100,98,101,114,104,114,99,99,102,99,98,102,114,102,103,109,98,115,105,102,109,104,102,112,109,119,99,99,112,108,115,99,109,106,92,103,101,113,101,101,115,98,109,102,111,107,107,115,104,98,105,92,109,100,105,98,104,97,108,109,94,113,100,111,101,103,102,82,112,104,103,100,107,103,108,103,106,103,102,99,96,112,104,108,104,108,120,105,112,104,104,103,102,100,90,110,106,101,103,107,104,93,105,99,116,104,104,100,111,94,109,97,109,99,120,108,97,108,100,109,111,123,105,119,105,105,86,101,110,102,95,105,101,105,115,80,90,120,113,102,105,94,101,102,103,98,105,107,115,96,110,110,106,98,100,109,91,112,97,99,95,106,112,101,126,105,96,103,108,105,101,106,110,112,106,102,102,111,104,92,100,111,100,111,110,101,100,109,109,108,112,115,111,104,107,91,105,112,104,107,102,99,110,106,104,107,109,105,102,109,104,74,103,101,113,114,104,118,120,94,110,117,106,99,99,108,110,113,97,103,104,116,104,103,101,115,111,108,105,117,100,99,100,108,104,99,102,109,101,99,101,101,99,101,105,104,87,117,99,91,114,104,79,103,109,96,119,108,100,115,87,107,109,98,106,109,100,109,113,96,101,103,106,116,104,102,114,107,99,114,103,98,94,116,101,114,109,105,103,104,107,107,105,112,103,105,96,102,104,101,115,108,98,110,103,112,113,119,107,108,110,100,95,99,106,120,95,104,98,101,104,103,104,99,114,108,113,119,112,111,108,115,103,94,113,92,104,105,95,102,102,101,106,95,101,104,105,107,93,110,105,96,116,90,104,115,94,101,98,109,100,103,98,91,110,99,112,101,100,101,104,102,103,107,110,101,114,106,115,103,89,103,97,127,108,105,106,124,105,113,98,106,105,109,104,126,104,124,100,97,103,108,104,100,91,102,102,99,105,100,117,105,110,94,113,118,101,106,103,107,111,88,107,102,106,117,116,105,111,126,103,98,105,103,115,124,102,105,125,104,96,97,110,112,103,99,103,109,110,112,117,108,94,102,95,115,96,104,106,103,93,101,109,112,109,103,104,93,110,102,129,107,105,97,98,99,103,105,101,107,111,100,104,119,105,112,117,99,92,112,106,100,101,99,104,102,109,100,96,108,117,89,99,91,107,98,102,104,98,116,93,108,101,106,94,109,114,105,103,109,100,116,113,126,100,110,104,109,100,133,111,98,104,99,106,108,102,109,101,110,105,99,101,96,90,96,110,98,109,101,109,95,96,90,100,106,100,106,104,106,112,109,110,113,103,101,112,92,103,107,96,103,105,110,96,113,109,101,94,108,99,88,121,92,107,114,109,101,102,111,113,105,102,115,98,105,110,89,101,90,100,100,102,107,104,106,109,94,106,109,108,102,112,100,95,111,112,109,107,100,103,100,102,96,102,102,107,94,102,98,109,102,112,98,104,109,110,109,114,98,102,108,111,111,103,100,108,115,102,107,101,106,87,87,99,99,91,103,110,109,98,108,91,99,113,103,103,109,99,111,98,121,110,111,112,105,110,91,105,99,107,111,108,100,108,102,108,116,109,118,100,116,105,102,108,103,105,109,102,102,110,98,87,100,103,108,93,108,117,96,100,112,109,99,111,112,111,113,117,98,106,114,116,114,105,107,106,109,101,99,115,104,105,99,90,106,101,109,109,106,96,102,104,98,104,97,107,106,97,96,105,97,101,100,68,103,99,109,107,95,114,113,110,106,105,99,106,102,113,105,105,102,113,102,116,91,109,99,105,98,104,97,110,94,102,104,107,104,96,104,94,108,103,95,98,98,99,102,96,95,116,101,105,108,103,113,113,94,113,109,100,118,104,91,102,95,102,107,102,105,99,111,98,75,103,106,98,88,109,102,103,110,99,109,105,100,96,104,92,110,94,100,112,97,119,117,92,99,100,92,135,106,89,114,109,113,101,100,104,106,106,104,98,113,103,105,107,100,113,101,110,94,100,109,109,107,102,96,105,96,96,104,94,106,101,91,115,101,108,107,109,119,115,98,94,109,105,117,105,100,117,98,100,111,107,106,103,102,101,103,101,101,117,113,115,120,94,108,104,120,106,111,104,103,102,94,112,75,104,113,101,99,100,107,108,105,121,116,95,106,100,105,112,116,90,100,111,84,102,112,98,124,111,106,104,100,109,114,99,105,114,107,107,105,106,118,107,107,104,108,112,105,101,111,103,103,105,106,75,116,113,105,102,96,112,102,109,100,120,94,127,93,100,108,120,112,95,108,112,118,101,115,106,104,102,115,109,95,108,104,99,113,103,92,99,108,101,95,99,104,105,93,114,110,96,101,103,103,112,93,121,108,100,122,102,101,118,100,103,107,88,106,105,91,94,101,110,109,91,104,108,116,87,88,117,100,96,104,104,94,101,95,101,103,97,81,95,110,114,96,106,99,98,87,92,106,104,97,96,104,100,100,117,109,112,111,109,108,98,101,108,101,102,100,103,97,127,104,105,104,109,91,111,112,102,104,83,90,114,82,98,100,109,110,107,102,99,102,114,115,103,102,97,103,106,97,97,97,98,106,103,100,101,94,106,102,105,106,102,108,99,103,70,95,113,107,97,116,100,107,104,98,106,106,107,94,106,107,104,104,82,103,105,108,102,104,98,116,94,101,100,100,99,103,101,108,105,119,108,99,110,94,109,95,110,101,99,113,95,98,108,100,85,112,105,79,102,118,98,100,108,92,109,104,104,111,104,101,107,95,101,116,120,107,101,105,101,99,112,99,97,111,97,90,99,104,102,113,112,96,92,109,99,93,120,102,102,84,100,110,98,94,98,107,109,105,109,125,105,110,101,101,106,104,106,105,100,106,102,113,108,113,105,100,67,91,99,106,113,102,107,104,96,114,109,99,105,101,102,101,95,118,104,100,87,99,99,93,112,95,96,92,114,96,104,116,104,110,104,105,87,108,106,94,119,97,111,107,109,94,105,94,111,100,91,107,119,91,104,88,128,105,106,113,102,109,114,99,79,102,112,93,103,94,105,103,102,99,114,104,115,94,114,98,117,94,104,101,102,106,94,107,100,113,112,104,110,106,111,125,112,96,107,107,106,103,110,98,99,100,91,103,103,100,106,96,110,96,108,105,116,87,106,96,111,95,111,102,103,106,102,108,110,101,107,100,92,104,96,91,95,104,105,100,99,111,109,99,107,102,95,94,90,95,99,111,98,99,114,108,117,120,98,93,99,97,104,108,94,93,102,106,94,109,104,116,108,121,103,102,84,113,105,118,99,101,99,103,98,100,104,111,110,83,109,98,101,100,93,104,111,100,103,95,109,108,121,109,98,107,117,91,105,116,113,99,98,101,105,101,106,102,112,112,101,98,102,83,96,94,99,100,111,117,98,79,99,113,103,104,108,113,99,121,126,106,96,107,102,101,108,104,104,95,99,111,108,118,95,104,102,100,98,115,107,100,100,92,111,104,99,100,101,92,102,113,86,102,108,94,115,102,96,109,109,97,93,114,77,95,105,112,96,88,106,100,104,102,115,91,107,105,104,107,100,109,76,115,102,108,110,100,99,106,99,89,105,91,101,101,109,99,107,114,105,116,100,108,106,89,98,103,100,102,94,100,108,87,97,98,103,116,106,99,109,103,109,99,114,110,86,108,100,106,92,105,135,93, +469.95435,122,95,109,107,101,106,73,98,100,92,99,98,91,91,105,98,86,94,103,96,88,98,104,106,107,90,93,114,100,100,109,98,98,95,100,95,110,87,83,88,97,104,108,104,99,102,108,83,107,100,98,110,114,97,105,104,103,103,103,93,90,115,104,107,95,116,99,104,112,102,99,89,99,103,98,101,107,106,112,96,103,90,93,100,121,103,109,121,109,111,106,92,99,111,97,109,112,87,122,97,104,98,110,101,96,83,99,102,101,102,105,103,99,97,104,104,105,84,98,95,108,107,104,102,97,99,107,102,103,94,102,97,97,105,100,99,98,103,103,96,100,99,95,106,97,108,112,113,95,106,110,91,93,101,92,106,93,108,99,93,106,100,102,112,105,116,96,98,94,104,109,103,98,98,104,113,95,102,108,116,103,99,103,94,99,91,97,93,120,117,107,118,103,108,97,113,105,116,101,95,87,101,107,113,103,83,103,95,100,104,92,99,103,95,103,103,97,102,104,104,100,101,101,105,112,99,115,106,102,100,89,112,91,106,102,118,107,102,96,107,106,100,110,116,98,102,122,95,98,101,107,96,113,111,104,78,99,95,100,98,98,99,104,98,96,106,105,110,86,95,97,98,92,105,107,99,111,109,96,96,106,107,105,105,103,98,96,98,140,97,102,99,118,103,98,90,108,109,102,99,89,100,98,102,99,99,110,95,95,102,91,100,103,96,95,95,103,102,96,107,103,84,97,96,86,105,107,95,109,106,104,110,102,95,102,106,106,107,92,96,102,112,84,96,106,109,90,98,104,100,86,103,102,96,104,101,110,103,105,109,100,99,110,98,100,102,97,106,116,107,107,94,110,105,98,95,117,105,105,104,113,107,103,106,98,101,89,102,100,103,107,99,92,97,102,104,100,105,100,113,96,109,108,95,106,124,111,122,102,119,100,104,95,103,100,93,109,104,99,101,109,110,96,101,107,92,97,102,101,109,100,107,102,92,98,92,91,122,105,108,106,110,106,103,88,96,93,102,100,105,106,90,98,100,101,90,107,94,103,109,105,109,96,102,111,96,108,93,105,91,112,94,105,135,106,104,95,106,106,88,98,111,107,104,108,103,99,96,94,90,104,113,98,90,96,99,110,101,98,91,109,90,99,108,96,107,92,98,109,95,110,110,101,95,108,102,96,112,99,94,111,95,97,106,99,98,104,113,108,99,91,110,102,91,108,114,105,100,111,118,102,100,87,105,117,99,109,103,108,102,103,103,96,103,91,101,104,102,102,108,97,101,92,95,127,99,103,100,109,110,93,100,98,96,94,102,102,103,93,111,80,95,96,108,102,114,100,114,97,98,97,96,106,94,104,113,99,117,108,101,89,97,102,111,98,104,94,100,104,113,107,101,105,110,109,103,109,80,116,103,99,88,100,90,102,110,111,111,74,101,97,73,108,100,104,100,101,101,104,95,103,97,99,96,98,109,102,98,97,105,100,105,97,108,99,98,103,111,93,97,108,97,101,94,113,102,95,92,102,104,105,105,109,95,114,120,97,91,110,94,104,95,96,91,104,97,104,99,88,97,138,95,100,112,95,102,85,98,99,106,99,100,106,95,99,112,116,98,105,106,105,102,95,101,96,104,103,103,104,109,99,97,118,105,106,95,97,113,109,105,102,107,104,94,124,101,104,95,118,106,107,85,93,103,99,105,98,95,91,96,95,100,96,102,105,101,93,103,104,100,100,107,103,98,103,103,100,104,112,98,96,98,106,101,105,105,96,92,105,88,109,107,107,97,92,112,105,100,80,113,106,124,113,94,100,98,96,105,108,91,110,109,97,100,102,116,98,103,114,110,98,103,109,91,113,95,102,109,106,101,114,98,100,103,96,92,105,110,94,105,103,102,105,99,96,105,96,112,111,98,97,109,111,90,96,103,99,96,105,103,96,106,107,122,103,100,102,103,108,98,104,98,93,121,104,118,106,109,110,102,102,105,98,104,104,99,107,98,100,97,108,98,96,94,99,106,95,113,117,103,105,97,105,99,106,96,101,105,103,107,92,104,107,107,103,92,113,107,107,102,85,106,114,100,91,88,95,99,98,100,114,117,113,98,121,86,94,115,113,104,99,110,100,109,101,104,95,105,98,114,109,107,78,110,92,107,99,102,92,104,108,110,116,103,103,91,99,114,102,95,108,107,105,100,104,97,103,99,109,108,90,108,102,102,96,112,105,108,96,95,107,100,105,95,97,111,99,92,93,105,101,97,85,100,108,101,100,119,105,106,91,113,104,100,99,109,104,106,101,90,98,117,93,100,98,118,120,109,109,110,98,110,117,107,114,120,91,99,101,108,102,92,97,88,112,102,95,102,109,92,93,111,96,115,113,105,106,97,110,97,104,109,95,107,83,108,103,119,102,103,109,110,100,102,99,98,87,107,92,101,99,114,91,100,106,98,106,110,121,96,106,105,91,115,115,117,108,100,101,111,91,105,102,108,102,103,107,113,111,104,94,92,103,104,105,105,98,101,101,102,99,108,99,108,107,93,99,99,106,112,116,97,106,105,104,96,107,112,102,108,104,95,100,98,94,98,94,110,104,110,95,112,98,105,95,104,100,89,108,97,103,101,110,111,90,105,105,104,105,106,109,98,101,87,98,111,102,89,80,114,103,90,111,102,107,96,104,90,109,107,105,99,103,129,108,100,100,85,107,119,105,105,120,96,109,95,85,93,97,102,98,112,101,100,103,109,122,104,114,97,110,97,106,106,102,95,108,108,101,106,115,103,100,112,105,114,103,88,102,96,97,102,107,104,112,108,95,102,107,101,99,93,108,99,98,94,111,99,94,95,102,112,109,108,103,97,96,108,91,103,92,104,92,106,102,94,109,92,69,116,97,108,106,99,95,102,105,94,98,99,102,100,112,108,99,100,111,100,91,101,106,110,109,87,94,106,103,94,103,98,104,98,91,100,105,83,108,103,95,110,105,100,106,101,99,113,105,89,104,99,111,113,103,106,129,106,105,101,102,105,92,105,107,134,97,114,118,94,109,83,101,101,115,110,113,104,98,115,109,89,107,106,107,100,98,99,97,102,99,95,99,107,103,113,108,96,102,94,97,98,95,104,97,90,101,69,92,107,107,105,102,102,100,95,97,91,105,104,99,106,91,98,109,99,106,115,101,98,98,100,104,99,108,103,110,106,109,113,102,110,91,102,91,97,108,100,101,107,105,115,111,97,101,100,107,107,103,96,100,101,90,104,103,97,120,93,104,92,108,102,118,97,98,99,104,100,92,107,117,91,108,109,107,95,103,96,106,101,107,101,117,108,109,97,124,117,84,103,112,96,92,102,98,93,99,101,94,109,116,108,103,113,101,108,99,104,107,97,110,100,98,97,100,93,112,108,107,92,98,112,108,100,100,103,96,103,103,106,99,107,104,91,106,99,108,87,99,99,96,104,112,99,109,95,99,100,111,107,134,104,104,109,106,96,110,109,120,99,100,100,108,101,120,115,108,100,107,106,107,100,106,95,110,107,92,92,108,94,98,103,95,109,93,97,111,112,94,99,102,103,108,92,102,111,95,102,97,98,103,93,107,103,100,102,108,104,97,99,102,107,92,106,140,84,102,105,97,105,102,104,99,102,93,119,108,114,104,116,94,102,105,116,108,109,105,101,101,111,102,103,101,106,102,102,95,95,96,91,106,100,94,108,114,111,103,100,98,102,95,84,106,94,107,99,103,108,103,98,93,103,97,96,109,97,113,116,106,112,108,107,105,109,89,103,108,107,107,109,104,105,101,98,100,104,108,116,91,102,90,89,106,96,90,112,105,102,95,98,93,107,102,97,98,116,96,103,103,99,100,96,115,106,105,105,99,116,109,99,99,99,100,102,95,104,96,100,100,99,95,98,99,106,83,110,97,102,108,95,107,108,112,94,109,105,107,113,94,104,103,88,99,101,113,103,98,101,109,96,91,117,95,112,93,107,95,103,104,113,102,105,94,101,91,105,104,103,108,87,109,97,104,121,103,96,103,99,100,101,110,96,105,98,95,108,94,109,77,97,111,96,113,106,102,89,99,109,95,98,102,111,98,103,109,100,104,112,88,111,96,85,97,103,99,107,113,108,108,97,102,94,97,101,98,99,97,104,100,109,104,115,101,104,91,91,102,107,99,105,95,95,113,108,99,101,101,103,109,112,112,111,109,100,108,123,108,100,105,103,96,103,103,102,99,102,96,106,106,94,94,99,102,97,101,98,96,93,91,108,106,103,109,88,95,98,98,101,101,104,86,101,92,95,102,80,102,98,103,95,89,106,99,102,121,94,96,108,96,101,102,102,105,101,104,99,107,99,89,99,109,118,102,103,99,107,116,107,112,105,110,96,99,107,98,97,103,104,110,114,109,107,103,79,102,102,94,110,97,111,100,92,115,112,100,95,99,102,101,99,109,98,90,112,106,103,99,91,108,102,120,116,100,102,94,85,115,114,95,106,112,104,88,93,98,107,99,100,98,95,103,108,103,96,107,103,99,98,111,99,97,106,107,96,101,95,83,98,100,108,102,107,87,111,114,101,121,104,106,105,113,94,96,88,111,109,101,100,91,111,82,92,91,100,104,88,110,104,95,109,102,105,101,89,110,88,104,91,97,107,98,105,98,98,100,103,88,103,95,88,95,72,100,105,91,106,99,94,113,106,98,81,101,100,106,111,101,105,105,95,90,95,104,106,97,108,108,97,104,98,89,107,102,94,112,113,106,84,115,104,92,101,96,77,102,84,104,99,104,104,107,91,96,98,96,100,92,89,99,99,102,102,107,98,106,110,103,106,90,108,93,102,117,106,96,100,101,97,98,88,108,103,94,122,100,92,102,107,116,100,115,102,117,98,94,96,101,92,108,101,102,94, +470.09485,105,114,94,95,101,105,114,104,88,105,87,101,101,108,103,97,97,115,118,92,75,106,98,111,102,100,110,105,110,109,115,97,113,91,108,116,97,100,104,119,91,99,107,91,95,108,90,114,114,98,101,99,106,107,97,103,99,116,115,104,108,103,107,109,101,114,102,108,110,114,100,110,100,97,105,96,102,113,114,99,116,113,109,123,108,112,102,101,112,102,95,107,84,105,101,102,97,95,93,92,95,107,108,109,110,113,105,124,90,94,99,99,100,108,103,100,99,103,101,94,105,100,98,105,106,105,112,102,107,102,98,108,101,105,105,101,104,108,106,96,93,105,100,114,96,109,104,99,100,97,91,107,105,77,105,105,102,110,96,101,98,116,101,101,105,104,104,93,102,102,106,102,101,110,105,110,114,112,99,94,100,95,101,103,106,95,98,108,108,90,108,115,110,101,95,107,104,104,108,102,124,115,95,110,105,83,109,99,111,104,106,100,108,99,99,101,125,107,109,93,87,110,105,99,113,111,83,112,101,112,98,113,109,98,103,95,109,111,113,97,95,102,107,101,99,102,97,107,108,104,112,99,94,102,102,106,103,103,91,118,103,107,103,97,100,106,94,91,109,105,106,93,102,109,109,105,84,90,103,106,98,103,100,102,104,108,100,112,119,102,102,108,105,96,116,101,107,112,103,101,105,99,98,109,95,100,105,103,101,101,103,105,107,101,104,102,95,114,100,101,118,93,100,104,104,102,94,103,109,118,106,103,123,101,112,109,109,115,108,103,99,99,101,109,99,106,107,103,101,105,120,108,90,116,106,98,112,103,99,104,108,100,101,98,98,106,105,112,96,105,117,113,116,98,118,112,102,107,112,102,108,115,110,116,98,95,97,95,112,96,99,104,95,112,103,109,107,115,104,106,97,99,104,102,120,111,106,104,104,94,101,99,114,97,101,112,103,108,106,107,104,101,98,106,98,97,107,97,98,114,100,109,106,102,105,102,93,103,96,99,112,96,106,108,98,94,99,102,112,100,102,97,104,113,101,104,110,111,104,102,90,110,95,106,102,109,100,110,94,102,112,116,96,104,99,99,108,104,102,101,113,108,106,108,105,115,107,109,110,106,104,102,92,106,98,97,109,111,116,118,108,98,109,112,112,106,104,108,100,112,110,100,105,106,71,112,113,112,101,105,106,104,105,100,103,100,113,106,113,98,100,105,102,80,115,97,107,115,106,112,104,101,98,95,95,99,102,100,112,109,108,96,83,96,100,103,108,98,114,113,84,98,110,96,99,96,97,106,103,100,108,95,105,103,107,114,99,111,95,114,111,102,113,102,100,104,110,113,107,106,103,102,112,107,106,105,100,112,107,99,114,106,108,110,114,109,92,98,116,108,81,110,112,112,90,104,98,113,105,109,115,113,105,113,107,124,107,115,96,98,104,105,115,110,103,112,109,100,109,108,111,101,107,103,102,100,101,97,110,82,105,105,105,109,103,112,99,106,103,100,109,137,94,101,105,100,102,100,111,98,103,107,100,103,99,118,102,109,95,107,106,109,115,99,98,103,104,111,95,105,114,106,98,107,107,98,95,114,107,106,102,94,107,99,103,98,107,110,103,116,108,108,117,103,106,110,121,110,114,97,101,99,106,103,110,109,91,109,102,106,99,109,99,107,99,99,111,103,105,100,95,100,95,96,100,110,103,107,101,115,111,109,98,114,98,110,107,117,117,82,103,101,105,108,94,97,91,100,101,87,130,105,102,87,100,70,103,111,97,109,96,102,104,101,111,105,104,109,107,101,93,109,108,107,104,81,105,95,104,109,109,95,111,89,102,109,100,108,113,110,116,111,93,117,105,99,98,100,124,96,112,111,109,105,102,110,105,101,115,100,109,120,109,100,97,103,98,101,107,107,109,103,112,128,97,101,106,104,106,98,104,104,96,114,95,101,107,117,105,99,109,109,106,95,91,100,88,105,114,96,100,109,108,102,113,101,112,104,103,99,91,88,94,99,95,109,104,103,106,102,102,107,92,104,137,99,95,103,110,118,105,105,107,99,102,109,92,106,105,104,103,114,113,119,106,93,109,106,105,103,98,102,118,108,99,92,102,105,98,118,101,99,106,105,112,106,96,94,93,113,112,103,106,110,95,98,101,116,94,110,101,104,111,101,108,103,96,106,111,103,109,107,103,107,116,108,107,100,110,106,107,103,107,91,105,119,98,119,114,118,110,110,105,103,90,107,95,113,99,111,99,97,101,105,105,101,95,104,101,100,106,110,118,111,109,106,99,108,96,86,106,103,106,107,101,108,114,101,106,105,106,107,110,90,109,112,119,103,105,100,102,109,110,100,112,92,110,107,98,100,102,112,104,110,101,94,110,108,107,109,117,121,107,98,109,113,93,108,98,98,116,116,109,109,103,106,111,102,114,99,100,102,101,99,114,106,89,104,101,99,101,108,101,113,112,105,98,109,98,106,106,108,91,107,87,109,111,104,111,107,106,88,110,102,104,104,115,110,102,105,122,107,98,106,115,100,101,103,104,100,103,110,91,100,115,107,102,110,108,114,104,117,109,92,113,99,95,104,98,92,128,97,85,93,106,104,106,101,97,112,103,99,113,111,103,94,95,113,104,107,103,104,127,91,101,114,102,94,102,109,105,103,105,128,109,101,98,102,102,103,99,113,104,107,97,100,135,111,97,101,108,112,110,124,98,108,116,101,112,113,110,107,106,117,121,109,101,106,116,95,105,102,98,113,106,105,72,116,100,92,108,102,95,95,100,107,98,105,98,112,97,99,106,111,111,100,105,100,107,101,104,96,103,105,112,104,98,88,98,109,105,95,100,96,100,93,97,93,97,107,111,94,117,109,110,108,98,107,95,99,85,104,105,102,104,84,91,121,99,99,106,111,111,99,99,108,77,100,102,104,108,108,98,98,92,100,99,87,103,98,108,108,100,109,103,106,105,86,109,105,95,95,100,107,109,108,111,107,101,109,99,86,103,98,109,110,114,108,111,100,103,100,106,115,104,123,98,102,104,112,105,109,108,102,100,97,105,112,117,110,98,108,99,86,110,117,101,109,101,107,99,105,109,121,100,105,100,112,104,99,96,102,98,108,102,98,103,93,92,97,116,91,105,103,97,98,100,98,92,100,95,101,100,106,105,116,113,110,104,113,101,103,102,98,106,102,102,91,100,110,116,97,113,101,111,102,108,116,104,98,100,105,106,95,99,108,107,97,103,106,107,101,107,106,104,100,105,101,111,105,106,103,106,117,92,102,100,96,109,87,105,96,96,109,107,99,97,103,100,91,98,107,106,106,93,113,105,99,116,109,106,117,94,103,124,95,96,96,100,99,113,105,106,111,109,105,107,95,106,101,99,108,97,101,105,99,104,101,110,107,101,124,112,105,95,108,109,101,111,103,92,106,90,113,103,102,107,111,108,103,102,96,102,91,98,98,103,96,94,102,103,98,111,94,108,112,105,102,104,104,118,97,102,108,103,108,107,109,104,102,98,119,109,110,95,97,98,112,102,98,111,99,107,108,94,112,98,113,103,93,106,97,103,111,124,111,101,93,98,104,100,91,114,99,113,105,103,102,121,106,96,100,105,107,90,100,99,114,105,103,107,88,110,97,102,99,102,101,116,108,101,108,96,109,101,102,102,103,101,101,95,96,101,102,106,123,99,104,94,96,98,97,99,109,111,106,106,97,100,101,104,95,100,109,92,83,104,106,102,105,105,105,103,105,122,102,113,97,102,98,118,110,84,101,99,95,102,102,111,112,101,113,95,111,87,101,109,106,94,113,116,105,102,106,137,98,107,95,94,100,101,102,108,95,102,91,109,98,101,102,91,112,101,101,94,103,99,101,96,105,97,101,100,109,113,101,100,94,97,102,99,106,108,110,97,98,100,98,110,97,96,110,86,108,101,102,109,99,104,105,117,112,103,115,109,110,100,98,109,97,112,102,94,107,98,96,102,110,92,89,115,101,100,103,109,103,98,100,98,104,103,104,102,95,106,103,99,102,95,98,112,102,102,98,109,112,111,93,100,99,93,97,108,108,100,109,110,102,96,98,97,124,100,96,95,105,97,103,105,92,116,105,105,106,107,112,103,104,117,102,98,98,102,103,97,105,105,109,101,111,98,100,92,94,106,120,107,97,94,111,107,100,113,101,110,108,94,79,100,104,99,113,102,101,101,96,92,128,103,99,109,96,109,112,106,103,113,95,99,88,96,101,112,106,101,116,105,107,104,103,106,108,100,104,104,85,94,104,108,102,96,93,91,94,104,101,97,96,106,113,99,100,107,109,104,102,99,108,97,110,106,104,101,92,108,102,101,101,109,99,91,107,109,110,104,102,110,100,105,103,88,103,102,112,95,97,103,118,98,99,80,93,107,106,101,100,100,104,111,106,119,104,89,102,99,93,72,107,96,109,104,113,97,98,107,81,107,104,102,104,101,100,113,103,97,112,113,83,99,103,95,104,102,110,106,95,100,104,102,113,109,98,99,104,107,111,105,107,97,109,105,109,89,97,98,100,101,94,101,91,109,106,99,98,106,103,98,99,107,97,97,90,107,105,96,96,98,108,89,99,95,101,105,99,94,104,115,103,82,98,104,103,100,111,107,105,99,102,91,91,104,107,94,101,109,117,100,108,117,94,106,103,92,109,102,113,109,101,99,101,110,99,99,113,101,87,100,100,99,99,98,96,96,95,91,102,103,102,98,105,102,98,99,97,104,104,99,106,111,100,94,103,101,101,100,105,118,95,99,93,91,85,101,93,91,104,88,107,92,99,115,111,97,99,103,109,117,91,95,99,94,111,89,72,93,102,98,119,101,90,104,107,91,92,111,100,96,107,100,99,122,105,102,87,91,93,113,103,113,98, +470.23532,106,105,101,105,100,89,104,89,119,93,100,93,91,99,100,107,87,131,95,103,110,102,99,114,112,102,100,113,105,94,108,103,105,100,103,100,99,95,107,102,92,90,98,102,105,106,109,95,93,91,85,101,114,83,99,98,108,99,100,105,103,99,106,97,76,109,99,105,97,102,100,112,92,100,111,104,95,89,103,98,100,107,100,102,88,107,93,117,96,109,109,95,103,88,96,104,94,101,107,104,98,106,110,100,119,97,93,98,96,111,100,136,111,75,106,102,103,81,101,95,114,107,99,107,109,104,104,102,97,102,106,113,103,99,98,104,117,103,107,109,98,97,107,110,107,98,113,103,107,111,105,113,104,113,94,105,105,93,103,99,118,97,125,102,104,103,93,95,102,107,93,108,95,114,106,105,108,94,102,113,116,112,92,113,92,101,96,101,103,100,95,101,99,106,99,91,92,99,91,96,108,99,97,108,104,100,108,108,114,98,103,99,115,100,100,108,95,85,106,99,130,113,108,100,114,112,105,111,103,107,88,98,79,98,125,111,108,117,95,109,99,105,87,115,103,106,101,100,110,101,92,110,105,91,109,106,101,104,98,110,99,92,102,105,103,90,108,93,103,101,100,101,103,99,108,116,92,113,110,114,102,113,97,101,88,118,99,99,115,103,91,96,105,104,90,109,94,112,103,105,96,114,102,119,124,108,111,93,116,115,101,110,109,106,111,95,109,106,103,104,111,98,104,95,98,104,99,100,112,110,107,107,87,101,110,114,73,101,105,94,99,110,118,98,107,97,109,107,118,98,102,111,102,107,110,104,102,109,108,81,114,99,109,110,117,98,120,111,107,105,88,97,106,117,110,107,108,99,100,107,108,100,95,114,122,91,104,103,134,112,109,92,90,112,105,114,110,99,107,96,110,104,95,99,94,98,97,110,106,96,95,98,107,105,106,92,107,94,116,113,97,101,117,102,103,98,111,105,109,101,99,101,102,101,95,95,93,113,107,110,98,114,114,101,103,93,107,107,107,108,110,105,90,106,100,102,107,111,99,104,100,100,106,107,104,114,105,101,104,108,99,103,108,95,103,114,95,110,114,133,95,109,107,101,103,97,100,114,98,122,103,112,102,131,99,104,105,91,95,103,112,98,96,83,107,100,114,86,96,99,102,110,104,113,90,94,118,109,104,93,91,95,108,94,93,106,126,105,102,99,115,109,98,100,102,101,103,102,100,94,110,118,87,103,99,112,112,95,101,101,116,120,102,95,100,108,95,102,102,102,100,109,125,103,109,103,92,95,107,106,95,102,95,106,99,114,105,112,120,99,110,108,106,111,94,86,115,106,112,94,111,110,78,99,107,112,103,100,102,99,100,105,122,95,102,102,118,93,103,109,101,109,101,98,113,95,101,98,102,101,100,118,98,95,107,102,100,108,110,105,100,103,98,107,94,99,112,108,114,108,105,99,87,106,110,101,103,73,103,117,98,117,108,90,109,115,108,104,101,119,107,119,120,115,100,114,115,95,111,105,104,99,112,113,115,115,100,104,105,111,99,115,106,100,126,84,103,112,106,99,110,112,111,102,100,102,111,103,104,117,116,107,95,105,104,97,102,114,104,103,108,110,99,95,89,103,115,100,95,72,109,103,103,106,106,88,107,97,108,112,111,97,98,97,110,100,111,105,109,110,113,96,96,111,112,109,115,116,104,102,104,98,109,95,108,109,96,104,122,102,98,108,101,121,108,113,99,99,110,117,105,107,110,104,104,113,98,109,103,98,112,107,113,99,98,106,105,98,103,109,100,102,100,102,115,89,106,92,99,113,101,104,111,122,114,74,110,80,107,122,110,104,84,111,108,101,115,105,102,105,103,113,106,104,113,119,100,109,107,105,116,114,84,96,86,108,105,106,105,99,100,99,116,94,106,104,107,111,100,102,101,102,104,102,101,102,115,105,83,115,94,83,116,100,98,102,98,95,102,102,114,108,107,113,94,84,115,98,102,108,122,114,105,109,96,113,99,119,100,87,105,111,97,95,117,106,100,104,103,99,110,102,109,100,108,94,105,119,93,102,95,98,111,106,95,94,108,99,109,100,100,96,105,110,104,89,94,88,112,90,73,82,103,108,101,105,91,101,99,105,109,104,110,106,114,92,104,106,117,118,98,110,111,96,113,116,95,106,107,96,98,120,117,102,97,101,100,104,108,111,95,94,117,99,114,106,117,106,101,104,96,111,105,105,84,113,105,102,96,112,100,103,112,102,98,104,102,108,99,118,108,101,99,102,100,104,93,110,100,106,102,100,113,102,105,94,103,101,100,105,98,87,115,100,111,97,104,100,104,87,103,114,112,97,107,110,103,99,121,97,93,116,109,107,100,101,106,99,102,107,98,108,108,91,104,102,101,99,102,108,109,107,102,95,108,106,109,112,110,111,108,102,105,114,126,98,103,106,97,102,100,123,107,116,113,105,106,99,112,105,114,109,102,106,110,108,108,108,101,98,117,106,109,109,101,116,106,99,112,106,105,110,103,99,100,106,103,96,94,100,103,104,114,97,107,109,113,88,111,98,124,115,106,101,105,105,106,111,99,96,107,99,102,112,103,103,109,88,110,103,108,107,115,112,115,105,113,98,100,102,105,91,108,91,102,105,99,95,109,100,108,113,113,111,108,94,98,108,113,112,96,108,100,110,99,101,113,100,111,109,105,107,111,94,103,103,106,91,107,105,98,99,115,102,101,109,103,109,103,112,115,99,92,98,122,107,99,99,112,95,101,108,102,113,100,138,111,102,102,102,72,99,104,107,102,98,106,102,105,112,107,95,106,112,103,106,109,108,110,111,107,99,107,95,100,101,102,111,102,96,108,99,105,110,114,97,112,105,98,99,101,103,99,120,104,117,116,109,106,97,99,113,118,94,107,98,96,106,98,111,114,106,98,102,125,102,100,108,77,117,102,107,118,111,100,102,98,115,89,99,97,102,98,120,108,112,96,110,110,100,97,101,107,87,105,110,103,96,106,109,102,93,104,108,99,107,92,112,105,106,115,120,116,102,105,96,110,113,101,102,109,106,100,113,94,96,92,114,116,107,104,113,115,108,100,105,111,105,100,110,96,103,107,113,111,109,108,109,104,104,99,98,110,100,108,98,107,107,107,98,99,109,112,112,103,102,100,98,106,106,114,111,107,113,107,106,105,96,121,99,99,114,95,99,114,106,104,98,96,105,101,99,103,98,98,93,104,94,103,119,123,107,104,118,101,115,114,113,110,113,104,103,99,108,106,91,94,104,117,106,91,112,96,111,120,105,111,95,108,108,105,106,92,99,101,106,100,100,99,110,117,98,104,103,107,108,102,113,107,98,96,100,104,99,111,113,108,99,110,102,110,99,95,107,99,102,116,106,102,114,94,114,109,100,117,101,103,101,111,111,98,91,106,112,102,91,92,108,105,95,108,100,104,91,99,82,108,93,108,111,107,111,103,101,110,108,103,107,95,95,88,134,96,113,106,109,112,106,94,105,110,111,109,113,102,113,99,78,113,105,99,116,99,104,105,96,114,116,101,124,111,109,117,121,103,109,114,103,105,96,108,103,106,99,96,102,110,108,128,112,98,106,105,93,78,100,104,108,106,98,109,111,100,105,95,102,99,95,115,106,100,100,107,101,104,100,109,101,107,96,104,102,103,107,97,111,102,116,102,103,101,98,104,108,104,105,98,106,107,100,106,116,108,100,100,95,97,98,92,101,95,98,104,100,112,107,115,96,92,105,123,97,111,107,98,109,101,101,99,108,107,106,105,103,107,119,88,106,112,110,99,105,98,107,111,118,96,99,118,117,101,107,95,97,101,105,104,96,114,105,105,110,108,115,96,138,113,101,103,97,94,87,103,102,117,109,100,96,118,106,93,91,98,110,108,99,110,108,113,98,103,110,104,108,96,116,99,113,108,93,104,112,94,104,98,104,112,106,108,116,104,118,99,119,104,77,103,106,102,104,114,112,99,105,103,96,102,94,100,107,110,106,115,105,104,108,106,107,111,91,100,98,92,102,67,108,99,104,112,101,108,107,110,99,119,104,103,101,98,112,99,107,104,106,113,106,106,115,98,98,104,103,96,100,105,107,91,107,109,106,99,100,108,100,107,106,102,113,75,108,108,109,88,95,102,109,115,100,111,107,105,114,100,126,107,105,89,110,107,109,100,103,115,109,91,106,105,115,102,112,109,99,111,99,99,99,105,117,106,104,101,99,118,105,108,107,92,98,102,103,113,104,107,109,116,103,112,109,100,100,101,118,102,117,102,118,105,103,100,113,105,106,117,97,101,114,110,93,101,91,104,96,114,99,113,96,110,101,97,109,98,100,95,113,111,101,115,84,104,112,95,112,106,108,101,113,106,99,107,93,89,71,106,98,104,103,91,106,98,108,102,100,102,103,100,99,101,100,100,101,114,111,103,108,92,99,87,98,115,81,110,105,106,102,102,98,88,87,103,106,98,108,110,109,104,102,101,107,100,99,104,94,101,109,104,86,106,116,111,109,105,98,100,111,103,94,94,99,106,105,98,108,106,100,104,110,98,97,86,95,112,112,108,104,108,106,102,101,97,110,114,102,106,109,109,113,104,66,102,101,123,102,95,100,82,103,115,109,128,104,101,97,103,104,102,100,97,113,93,89,103,101,104,90,112,98,108,100,99,106,119,114,107,108,104,88,92,99,109,112,99,99,99,94,103,100,107,103,103,104,110,117,99,96,103,101,90,103,102,100,82,105,109,109,105,93,102,101,117,111,97,98,113,107,109,107,96,108,106,102,111,102,102,107,111,98,85,113,100,109,116,109,91,102,95,107,98,105,102,100,102,92,98,89,103,100,99,106,90,103,105,79,112,121,97,121,102,111,113,99, +470.37582,99,107,104,96,108,104,107,99,108,106,102,84,98,99,110,103,122,117,100,99,96,85,103,107,103,99,93,96,106,95,108,111,109,90,102,93,101,95,100,116,92,106,91,99,98,109,97,102,84,100,99,101,96,91,97,101,91,104,98,99,92,98,105,105,103,106,98,108,106,92,107,106,93,99,98,121,93,101,95,106,109,109,84,100,106,84,100,114,95,98,118,104,100,93,91,97,107,99,105,97,97,108,98,91,91,95,103,91,101,94,110,101,92,104,102,100,102,98,98,107,103,93,94,102,98,97,106,116,114,100,111,108,90,92,106,110,110,107,96,100,100,83,105,98,98,103,108,98,100,107,101,96,111,85,92,107,100,105,102,107,96,106,107,103,113,79,87,108,101,106,98,103,88,92,92,98,114,95,110,103,101,107,98,95,99,103,106,95,103,101,88,100,110,95,106,109,86,103,97,98,104,104,106,94,103,100,105,108,117,108,97,105,104,101,114,75,96,99,114,102,97,103,100,99,105,106,104,106,95,95,108,111,105,101,100,111,109,105,108,111,96,109,109,117,102,91,97,110,95,105,100,102,103,106,100,108,106,99,96,97,96,81,96,102,99,102,100,104,103,97,95,84,103,96,98,121,102,107,101,108,100,106,95,111,95,97,96,109,100,105,93,99,98,92,104,101,100,102,97,106,97,107,105,96,96,95,105,113,107,110,109,103,95,106,101,108,89,113,103,99,107,94,95,105,110,113,107,104,106,105,91,98,103,94,102,99,101,93,99,104,101,105,99,110,86,105,102,95,104,112,107,103,90,110,108,102,101,108,104,97,115,113,104,94,98,101,107,105,87,94,102,113,109,98,104,100,88,109,104,113,95,108,100,97,100,102,98,81,109,100,116,97,103,110,92,102,117,105,98,102,97,108,108,92,109,95,91,104,107,91,98,102,108,120,116,99,100,105,100,82,101,109,98,99,94,90,92,88,100,101,92,106,103,105,97,107,103,111,106,93,108,85,112,102,93,96,105,98,110,102,106,117,113,103,109,93,103,114,104,100,108,94,106,110,106,97,102,96,106,101,105,113,109,105,103,92,86,103,103,113,103,106,102,112,98,103,91,96,99,107,107,98,108,93,102,100,97,98,105,99,109,99,105,63,102,101,110,103,105,129,106,102,107,106,107,110,99,98,114,101,107,87,113,97,101,96,99,100,101,109,95,108,89,107,102,106,94,100,97,122,100,90,105,104,101,95,100,100,105,111,100,97,107,100,91,88,100,98,91,96,99,114,101,98,78,98,101,99,96,101,82,93,97,91,97,103,109,97,98,114,102,101,105,86,91,104,99,104,103,108,91,102,95,102,102,105,107,104,97,89,82,109,95,94,104,108,107,102,92,111,105,100,105,105,98,106,97,102,100,99,106,120,97,96,114,95,87,95,102,97,102,101,97,100,102,106,94,97,77,100,108,105,105,96,100,105,100,109,109,103,106,109,83,103,104,113,107,111,95,94,113,108,91,97,103,102,110,95,109,101,108,103,104,107,109,110,103,111,113,95,118,105,102,103,97,100,96,87,108,109,107,103,109,110,99,106,107,101,101,103,102,103,90,106,99,109,107,117,86,86,105,92,102,112,107,96,97,105,117,101,105,98,112,107,99,94,108,116,97,104,109,98,104,104,97,94,108,114,114,106,96,94,113,102,103,111,103,101,93,98,115,109,96,90,94,121,108,103,113,104,101,107,113,98,103,103,98,106,103,99,105,105,100,107,106,67,108,102,109,106,111,101,109,105,101,107,106,100,93,100,107,112,103,100,108,100,107,101,100,110,111,111,103,100,114,108,80,99,105,108,114,117,98,90,107,109,106,94,117,102,107,80,113,102,110,104,97,101,120,113,94,100,100,104,110,109,105,102,103,113,94,114,113,96,99,102,107,119,106,95,106,99,102,117,105,98,112,90,98,98,100,108,101,102,109,94,100,115,111,110,109,103,108,104,99,102,105,98,98,102,110,101,109,94,105,100,103,91,110,98,102,95,103,115,104,91,97,102,102,91,103,108,107,75,103,100,102,91,85,94,107,109,112,95,106,98,101,99,101,90,104,96,99,112,107,101,109,93,105,98,103,107,110,109,96,98,94,89,91,105,108,114,95,114,103,104,106,104,93,98,103,99,104,103,114,115,108,91,96,101,97,108,106,105,115,104,106,103,110,90,98,101,116,91,104,105,95,102,106,101,100,101,95,97,98,98,108,99,101,108,100,111,97,95,108,97,111,105,109,116,99,100,108,97,99,101,94,113,98,111,95,103,101,114,110,110,100,91,104,108,113,99,98,94,104,112,110,97,106,99,118,92,99,95,101,101,102,110,101,101,84,103,87,97,107,108,111,94,112,99,121,101,102,104,104,90,99,113,95,108,108,120,91,108,92,102,101,97,102,97,97,101,101,104,105,118,96,120,94,104,110,111,91,106,109,114,110,97,113,105,101,105,105,104,98,114,107,95,116,102,109,103,109,107,99,95,101,112,107,103,105,107,107,85,101,115,114,104,106,105,115,95,96,109,96,121,98,120,107,85,110,113,103,106,108,112,95,104,110,87,107,74,103,102,77,105,107,105,110,118,111,97,100,102,111,102,108,106,99,111,114,100,92,94,103,120,102,103,100,109,107,106,109,105,93,116,98,96,111,109,107,111,107,101,95,112,128,111,108,101,108,101,115,108,99,105,113,112,110,107,113,109,109,117,99,114,110,99,103,99,95,105,105,108,95,108,108,109,109,80,109,115,105,114,112,101,105,99,99,104,106,106,88,109,110,107,104,104,104,115,107,117,107,102,92,100,105,109,104,92,106,104,96,101,105,95,104,91,102,111,113,100,96,112,89,101,100,103,98,112,99,90,117,109,100,102,97,107,92,102,105,109,101,107,111,108,100,111,106,107,102,96,111,97,98,108,103,102,108,106,87,105,106,109,101,108,100,111,119,92,106,113,105,104,103,113,98,113,107,79,95,113,102,102,122,106,82,100,100,82,100,91,100,104,96,104,99,100,97,104,96,105,104,104,112,106,106,107,98,106,73,116,103,105,112,113,108,106,105,105,106,106,105,110,102,107,103,101,109,106,105,110,103,105,98,99,96,111,100,98,106,97,113,113,109,101,61,70,100,102,99,69,104,100,111,103,111,106,94,107,113,98,104,99,109,102,108,112,108,102,114,108,110,100,108,92,110,103,116,119,72,101,114,104,94,107,104,110,124,106,108,107,115,110,107,101,100,121,104,108,120,98,93,122,113,98,100,91,102,97,102,109,108,103,106,104,117,103,101,108,109,120,96,105,103,102,106,100,110,105,104,104,109,103,102,99,104,112,106,109,99,130,95,104,87,106,102,97,109,107,107,91,102,100,104,113,103,104,103,101,99,108,112,106,95,72,120,94,99,101,105,105,102,88,96,113,105,101,113,98,114,110,98,101,92,107,96,109,105,93,105,100,106,113,109,101,96,101,103,106,97,106,109,106,104,103,115,93,111,102,108,104,105,100,107,107,117,113,109,110,94,104,104,94,109,105,76,114,92,101,110,111,110,102,109,113,99,106,107,97,102,95,92,113,111,111,112,105,110,108,112,109,102,113,102,93,105,104,107,106,105,98,112,110,120,106,109,97,108,108,107,93,106,103,99,99,82,96,105,100,101,109,109,99,102,112,112,108,108,114,111,105,112,114,102,105,93,104,91,98,100,93,99,109,109,83,101,97,113,113,106,105,112,93,95,124,112,101,99,103,100,105,107,99,98,110,99,92,100,98,98,104,107,100,101,97,97,101,101,104,110,93,106,106,89,105,97,107,90,96,95,117,112,98,104,104,101,100,94,97,102,108,103,98,109,100,104,111,104,102,101,104,99,96,105,95,104,101,102,96,101,104,98,104,98,99,99,97,108,99,103,94,121,101,127,102,99,102,116,100,103,109,97,107,105,105,103,99,110,105,100,103,101,108,109,109,103,110,102,110,98,108,99,100,100,96,112,92,120,96,113,120,113,99,101,109,112,104,110,109,122,99,92,104,107,111,99,111,100,100,103,102,106,95,107,102,97,124,92,113,103,119,94,107,103,110,97,111,99,102,104,105,104,117,98,102,108,100,108,113,98,106,96,102,101,109,108,110,118,102,95,104,103,114,108,109,101,102,98,95,99,104,106,104,106,95,92,112,91,93,93,108,122,104,100,110,104,97,91,104,100,108,105,90,95,101,106,120,99,109,107,91,104,98,96,103,92,106,105,98,99,96,102,99,97,106,98,108,101,99,85,104,81,101,100,109,100,105,111,109,109,108,104,114,125,101,105,99,116,109,119,97,98,113,120,103,104,107,103,101,90,118,113,111,101,112,96,110,104,101,102,106,108,102,113,106,106,107,107,102,105,96,108,111,121,103,98,111,104,93,100,100,97,105,92,84,95,101,108,106,117,125,104,98,101,96,93,101,102,111,109,87,106,106,103,99,114,105,103,91,96,103,109,107,109,112,109,103,99,101,87,98,98,99,99,109,106,99,94,96,97,102,104,98,87,105,87,113,117,101,97,108,115,100,99,101,106,100,98,118,105,100,113,94,111,114,113,105,97,92,94,97,93,101,116,111,102,104,110,95,106,98,102,94,106,98,108,104,121,100,93,112,104,104,106,104,105,102,100,103,90,99,107,105,112,95,109,110,106,108,115,103,110,88,94,112,115,97,107,112,115,101,106,107,109,106,107,100,102,108,97,94,95,114,108,104,85,105,107,108,96,100,110,103,109,103,109,94,98,111,97,89,110,91,97,108,105,102,112,95,120,106,104,102,93,99,111,102,98,116,98,114,91,103,101,83,101,95,104,102,100,103,102,108,102,80,115,111,96,104,107,95,79,109,106,106,96,119,104,86, +470.51633,95,114,104,94,101,113,95,96,103,109,101,100,92,99,111,117,101,101,105,99,98,95,98,98,103,88,93,106,107,87,97,101,102,102,106,97,109,92,94,103,108,105,99,101,101,98,100,103,104,99,104,100,100,104,87,99,113,94,108,89,108,105,97,101,97,104,91,116,99,106,101,105,108,80,118,112,99,111,110,112,113,97,109,109,102,97,91,90,111,106,91,111,120,112,102,94,98,108,101,85,100,118,98,97,97,104,101,92,93,99,119,90,114,95,95,106,99,114,104,90,106,120,105,97,105,106,103,89,113,77,105,103,100,100,92,98,97,107,117,104,110,107,113,111,109,105,105,107,96,103,102,99,124,91,120,96,103,109,107,103,103,107,94,99,115,97,104,91,113,105,105,108,102,100,104,105,100,88,98,108,99,108,96,97,91,101,89,91,105,108,108,100,91,110,99,91,95,113,106,115,105,113,109,105,106,107,100,107,112,102,96,102,102,112,116,108,110,107,106,95,108,106,105,100,102,98,96,86,95,112,100,110,110,100,109,118,101,99,99,100,87,98,120,93,97,113,92,104,106,116,101,97,110,108,104,98,97,96,99,122,99,116,91,99,102,76,110,102,113,102,96,90,109,97,103,101,107,109,94,106,106,101,105,118,100,102,103,98,113,95,107,113,120,102,109,106,100,110,104,104,102,104,99,107,90,110,93,106,108,114,102,108,112,89,108,102,99,94,98,97,107,103,97,115,100,97,108,99,111,101,110,105,108,81,109,99,104,100,109,102,98,105,97,100,101,106,122,82,104,98,105,123,107,105,106,106,100,111,116,113,116,100,104,102,103,99,107,102,108,109,109,103,106,113,113,94,111,95,103,114,105,115,106,96,103,103,95,88,106,100,116,110,108,110,101,105,103,108,100,94,98,97,96,104,92,105,110,103,103,83,94,99,113,103,101,105,108,111,100,102,109,108,107,106,104,95,105,90,99,113,100,109,104,110,96,100,100,101,108,100,110,132,115,102,100,113,104,103,113,98,97,104,107,113,111,98,92,102,105,103,107,106,109,111,115,110,107,95,100,108,93,106,101,91,103,100,102,110,99,112,98,104,102,104,115,95,112,115,107,101,106,110,109,105,97,108,99,99,107,100,104,102,113,103,109,105,108,99,133,103,111,94,109,106,107,105,105,99,106,99,110,107,99,98,102,89,101,95,102,90,99,108,95,101,101,99,79,87,111,100,84,94,112,114,115,106,111,100,115,110,94,102,108,105,110,109,104,100,97,104,101,102,105,107,108,106,108,103,101,116,92,116,112,97,108,97,104,103,103,104,99,97,106,100,102,108,100,118,111,109,123,112,101,101,125,101,105,103,100,96,99,105,108,111,99,104,101,101,99,92,105,96,112,90,117,104,99,101,118,115,109,103,102,103,105,97,99,96,94,92,105,95,73,107,100,101,94,122,100,104,96,112,95,111,110,94,104,138,91,111,97,107,108,100,102,101,106,106,105,108,99,101,102,103,113,109,99,99,110,98,100,117,95,95,109,117,97,106,103,102,105,90,111,97,91,96,92,109,99,96,102,117,105,104,109,99,100,95,101,102,95,91,97,101,100,99,95,101,99,99,113,103,103,114,103,114,87,111,105,97,109,90,104,106,100,104,106,109,91,103,95,93,89,97,95,102,100,93,96,78,107,97,100,100,102,105,109,105,100,115,89,100,101,119,104,109,97,116,106,106,113,107,103,101,111,109,98,96,101,100,112,112,92,95,105,107,104,109,116,107,105,103,107,109,116,95,113,102,90,105,111,101,101,107,99,101,99,103,80,109,113,119,105,99,104,104,106,95,101,104,114,99,107,105,102,105,98,108,98,97,101,108,107,98,100,115,105,113,107,98,104,99,110,101,97,107,101,104,114,109,128,100,92,101,109,98,103,95,91,108,100,111,108,106,92,117,103,109,98,100,100,110,101,99,94,96,96,102,106,106,109,105,108,100,103,98,105,103,94,98,97,103,104,95,107,104,94,103,122,96,100,109,107,117,104,96,100,103,112,111,102,102,104,120,94,97,101,101,95,108,110,116,111,113,103,95,90,95,99,108,103,99,115,125,121,93,98,113,120,104,100,102,101,97,94,98,103,91,101,98,115,97,94,118,112,97,101,87,84,112,99,97,105,113,103,131,110,113,95,112,108,111,107,109,106,103,104,106,117,104,105,101,109,105,108,106,102,117,112,99,93,105,104,88,117,106,88,112,113,93,93,101,104,100,106,109,115,99,97,99,103,100,104,100,103,96,106,102,112,110,93,95,109,105,107,94,111,96,111,94,111,100,101,98,114,101,106,96,111,97,116,100,103,95,96,105,99,106,94,97,103,100,101,112,102,102,92,107,107,94,95,109,145,110,103,103,112,101,121,106,96,108,109,111,122,102,104,110,80,100,108,118,100,97,101,98,107,108,95,100,101,106,112,107,100,108,113,75,105,104,108,102,102,93,107,109,109,116,108,108,108,108,112,103,106,100,102,105,107,105,102,114,108,121,104,106,105,91,99,109,93,106,112,110,112,105,101,104,96,103,131,110,69,105,112,108,109,109,100,102,100,106,105,108,115,109,106,104,102,98,103,101,70,103,105,102,104,102,95,102,95,108,113,98,103,106,98,130,113,91,113,101,110,116,103,102,118,96,103,116,108,98,101,106,102,106,107,99,103,99,92,106,108,95,103,102,102,90,105,99,99,109,106,108,104,101,97,113,103,109,100,112,98,107,106,91,113,107,98,101,103,108,94,103,104,95,104,113,103,96,110,104,105,105,104,106,95,96,95,104,105,113,113,98,102,111,108,99,97,94,121,105,99,91,112,105,101,109,108,121,97,98,105,103,99,98,106,114,101,116,107,100,110,111,109,107,109,107,107,104,93,102,92,101,101,111,100,102,96,106,108,111,107,99,106,101,94,84,106,110,109,98,96,106,112,89,100,112,124,98,104,106,113,110,106,106,109,110,105,94,101,96,104,91,113,102,118,111,102,108,101,100,116,109,121,112,105,100,89,100,113,100,121,94,106,93,106,104,115,106,109,113,110,102,113,97,98,108,95,116,108,112,112,104,112,88,101,106,110,112,105,110,113,104,116,95,96,105,104,98,108,117,113,102,103,94,106,102,108,90,102,108,99,109,102,97,103,107,113,100,92,83,110,103,100,102,113,105,116,105,111,97,107,106,103,106,87,102,112,113,113,116,105,106,93,102,111,88,110,94,71,117,99,111,103,91,104,131,98,113,98,106,99,101,97,93,101,105,104,103,101,97,101,107,99,100,116,112,108,101,105,108,100,102,103,116,100,91,107,99,101,107,102,100,106,102,108,100,100,99,109,98,111,107,105,110,90,112,104,95,91,111,103,109,108,104,133,99,99,101,105,102,105,98,94,117,104,91,113,96,96,102,106,90,113,103,101,108,99,103,107,111,101,102,124,104,111,118,106,101,87,111,98,118,85,104,108,95,118,105,98,91,94,94,101,92,104,90,99,93,113,113,104,108,107,121,108,105,113,118,103,112,107,75,102,100,105,93,101,100,99,99,104,102,116,106,102,112,93,96,103,107,107,120,98,94,105,108,109,102,101,105,99,96,92,103,104,113,105,114,105,98,106,109,97,101,109,114,104,107,109,90,87,107,92,104,116,102,108,102,104,103,101,108,96,97,108,109,102,94,104,98,106,100,97,95,99,103,85,96,99,94,119,110,101,99,96,102,92,102,106,92,109,101,123,115,107,100,117,111,108,108,97,98,95,100,102,81,111,98,103,110,99,102,106,103,99,108,102,100,108,102,104,104,99,99,120,92,105,109,101,99,99,104,104,111,98,105,110,102,96,110,113,100,110,109,105,95,101,100,98,106,107,107,107,99,105,120,121,130,104,109,106,108,107,105,99,108,106,95,113,97,107,98,103,108,113,95,109,107,101,106,105,111,102,99,103,101,87,102,105,94,102,100,112,95,83,104,98,105,93,71,105,104,103,96,104,117,112,99,112,106,107,105,91,117,89,103,102,97,109,102,105,98,98,103,97,104,124,96,101,105,117,108,112,111,115,102,108,100,106,102,93,112,102,111,105,96,103,104,115,102,87,84,109,112,118,108,102,110,105,101,99,100,82,100,98,111,103,106,97,101,107,91,96,116,89,99,101,91,106,99,116,94,109,68,99,115,97,110,107,107,113,103,109,107,113,99,102,99,104,104,108,106,100,118,117,104,105,97,104,102,100,102,102,92,103,114,105,91,94,106,98,90,108,111,105,93,91,119,105,95,108,106,98,105,101,104,107,104,108,101,103,106,107,104,101,106,101,103,102,106,103,94,99,96,109,100,105,108,100,107,110,123,104,98,108,93,103,102,83,111,105,100,93,108,108,115,106,106,106,90,100,100,88,113,102,94,106,101,113,96,96,96,103,99,93,98,99,111,109,104,114,108,105,102,93,116,108,95,89,93,102,106,105,101,96,96,107,94,106,93,136,107,110,106,107,109,113,86,106,96,92,125,109,102,98,106,113,102,97,108,105,97,103,119,113,100,97,106,98,106,98,102,99,98,103,105,106,98,98,101,113,107,106,109,96,98,99,112,100,101,97,118,99,107,106,97,105,101,97,103,111,92,92,103,109,91,99,109,97,101,103,104,102,107,95,105,108,101,93,119,80,106,106,111,96,93,110,108,99,102,94,113,102,98,103,99,112,106,95,106,94,112,90,107,94,99,94,108,108,106,96,103,104,93,103,104,105,73,106,103,130,95,103,105,114,100,100,95,91,71,102,87,102,96,91,104,95,98,105,99,93,97,108,102,95,82,106,106,96,100,101,86,97,98,100,102,99,98,110,72,123,101,94,76,102,101,117,99,131,105,85,105,68,90,110,93,90,106, +470.6568,101,99,91,105,106,107,104,68,86,85,97,101,94,88,101,100,93,113,102,97,101,99,99,109,104,111,112,99,115,100,95,120,100,102,102,99,104,103,111,95,93,101,100,97,93,100,100,106,105,110,107,100,105,95,104,93,104,99,106,100,91,93,99,97,115,98,95,105,101,95,101,105,100,88,98,100,92,92,107,106,111,120,97,106,98,105,91,106,96,114,85,86,102,89,104,104,104,104,108,96,93,91,98,101,100,100,92,95,92,109,106,103,102,98,97,101,91,94,106,108,95,96,102,107,103,92,109,98,106,98,116,102,94,117,101,110,95,97,107,113,99,116,95,103,109,89,102,106,93,93,112,110,100,96,105,103,102,75,106,92,98,99,108,101,84,104,107,106,99,113,97,95,101,103,89,97,111,95,98,100,108,100,102,97,104,96,101,93,104,103,97,113,101,107,107,104,107,96,100,99,106,95,110,113,91,106,101,98,104,117,97,113,111,113,110,112,95,88,98,95,101,107,106,107,105,106,103,106,101,104,99,112,125,108,106,103,104,100,102,100,101,108,105,103,103,104,108,94,107,89,102,103,103,126,93,87,99,89,98,107,102,96,106,93,115,114,113,99,95,92,100,103,99,125,107,105,105,100,104,109,103,102,104,109,99,108,98,104,98,100,99,105,102,99,106,97,113,102,111,95,97,108,115,106,113,92,128,104,112,106,108,99,100,107,116,99,115,120,103,92,104,99,92,95,102,108,133,94,109,117,87,103,104,107,111,101,100,109,93,107,100,95,105,90,111,108,110,95,111,103,101,107,103,105,109,94,101,106,101,100,112,92,97,105,99,99,111,89,100,109,105,92,112,111,106,102,102,100,110,107,104,110,95,104,99,101,91,103,105,89,99,93,99,94,87,110,103,104,106,98,105,95,107,102,100,92,100,95,101,104,106,97,98,87,102,112,97,126,101,101,104,103,118,103,110,107,106,103,106,112,99,105,103,93,105,100,96,101,102,109,110,95,107,95,105,98,115,105,105,110,113,96,104,104,108,105,103,110,102,114,98,95,105,103,101,107,101,98,99,100,116,116,96,96,93,103,91,119,97,105,97,106,110,93,111,113,100,98,96,96,95,106,118,111,105,110,88,113,103,95,117,108,116,97,107,95,106,100,100,104,99,106,101,94,100,106,108,97,98,124,96,100,109,105,104,126,96,106,105,101,108,109,104,93,111,101,109,102,100,99,107,106,104,99,104,107,106,101,112,104,99,101,103,106,108,102,103,126,96,105,100,98,103,106,98,86,105,101,113,105,90,101,109,104,97,103,96,111,97,106,95,107,108,97,97,97,112,101,108,82,99,106,93,109,113,115,93,102,121,116,95,96,100,97,98,101,93,102,98,100,108,99,104,93,107,102,107,101,99,100,114,94,99,106,105,108,100,104,103,97,99,103,100,110,94,103,94,100,105,113,107,107,104,86,107,104,99,97,117,113,97,100,99,112,103,112,109,104,113,98,107,98,103,103,101,105,89,105,108,97,113,108,98,93,96,101,83,107,96,92,109,101,99,100,100,101,99,104,102,96,104,105,104,110,108,95,95,99,104,95,97,105,95,107,100,116,104,116,117,101,100,106,109,99,108,134,103,101,100,107,88,106,109,112,108,94,95,103,99,102,95,103,94,98,96,102,103,109,110,98,114,121,108,98,108,108,104,104,117,91,116,104,94,102,102,100,94,103,104,107,108,113,99,105,108,112,86,118,101,103,88,101,99,100,107,108,105,97,95,101,96,104,121,103,109,100,97,102,112,106,104,102,108,110,106,106,109,100,103,105,105,96,104,114,98,105,109,100,96,107,110,95,109,99,112,112,114,106,109,107,105,117,92,102,110,106,111,107,110,104,103,98,75,111,87,104,103,106,103,100,102,117,103,94,104,98,112,89,114,83,98,96,106,108,89,107,98,103,94,102,111,102,108,103,101,102,103,116,112,102,119,109,91,110,104,98,107,99,106,94,101,95,108,105,95,109,96,104,103,102,110,109,105,105,97,101,124,70,110,104,87,103,112,108,100,98,93,97,99,111,73,117,90,92,107,95,105,100,88,106,90,122,109,114,89,100,113,108,109,102,97,101,94,111,101,106,95,95,108,108,122,91,99,81,69,91,105,110,104,98,112,100,98,107,105,104,95,115,94,96,104,99,109,101,116,126,83,100,101,98,107,107,98,99,99,111,107,105,106,108,118,104,111,109,85,98,107,95,107,102,110,109,104,104,95,103,108,96,87,110,100,91,95,96,101,97,114,104,94,100,96,96,104,113,105,110,94,111,99,118,104,124,105,94,109,105,109,101,97,96,110,91,105,104,101,100,109,98,108,107,90,95,104,108,100,101,108,113,106,96,101,107,111,103,102,103,108,99,111,99,95,103,112,102,105,111,100,101,118,103,111,115,93,98,104,118,110,126,99,113,111,112,102,117,132,102,103,92,128,99,109,104,104,99,113,114,96,100,111,99,100,109,108,109,99,92,108,106,108,100,108,112,105,118,103,109,103,102,99,108,109,106,109,115,117,105,99,104,117,106,102,113,109,98,99,111,107,98,98,95,104,95,100,118,110,109,120,111,108,96,108,111,113,124,102,87,107,90,105,113,103,98,97,97,115,111,106,97,102,112,88,107,106,85,114,107,101,98,119,108,105,105,101,115,104,110,109,97,106,92,110,100,113,125,101,115,106,96,111,107,112,135,105,102,108,118,114,103,112,108,115,108,101,87,108,125,106,108,109,93,81,109,103,111,107,108,108,111,104,114,95,98,105,104,106,86,105,103,94,101,97,117,108,97,101,102,126,108,79,106,98,110,102,107,111,85,125,115,106,109,102,105,98,111,106,107,97,101,110,115,108,102,85,105,113,117,95,104,98,118,100,97,108,105,104,125,112,105,109,113,94,99,112,104,102,103,101,98,100,103,103,108,103,109,107,98,87,109,106,101,99,112,93,102,117,112,99,106,101,102,111,102,110,107,127,98,105,91,109,104,109,93,87,106,90,109,104,103,108,99,98,111,114,79,103,99,125,105,102,99,98,95,101,104,99,104,106,110,104,99,102,99,115,102,99,105,103,99,115,102,104,106,103,112,114,104,110,112,117,109,95,97,109,110,105,93,113,107,106,99,103,105,117,106,109,100,112,113,102,112,113,101,110,107,108,79,100,102,106,109,108,107,111,99,111,109,113,96,93,110,77,112,100,121,98,116,117,115,100,98,102,101,98,103,108,104,116,108,99,98,95,106,103,91,93,106,98,99,113,104,80,97,98,104,117,95,101,116,107,98,108,106,95,100,105,105,106,109,100,101,95,107,100,99,95,100,94,103,102,113,107,120,99,95,103,103,109,118,105,105,109,103,94,113,109,112,108,99,103,107,101,103,94,102,107,108,107,104,96,124,107,107,91,101,98,117,104,108,104,99,110,99,109,99,98,113,102,97,105,100,104,102,103,100,112,111,112,112,116,103,104,114,111,113,121,107,105,107,105,102,118,102,109,86,104,117,123,113,109,103,106,105,94,110,94,107,100,103,108,126,99,98,102,106,105,108,108,109,105,96,99,112,102,116,109,116,92,99,95,99,95,112,110,105,75,99,104,106,104,106,67,98,113,117,119,91,101,107,107,103,109,100,107,115,104,107,104,90,112,109,104,101,101,103,105,95,103,107,103,99,104,101,114,106,113,112,114,125,111,112,106,102,96,101,116,111,92,107,86,113,129,105,91,95,107,114,99,104,107,107,101,104,112,103,99,103,104,113,107,102,117,106,101,102,104,108,108,115,107,106,110,111,107,107,102,105,112,108,94,102,100,120,103,103,111,87,93,94,113,68,98,102,101,105,96,103,99,83,103,102,119,109,91,106,109,104,106,107,106,95,93,106,109,88,113,101,116,103,103,96,100,110,113,111,98,114,92,121,103,106,100,116,92,107,100,107,109,111,110,105,110,101,108,102,108,101,97,107,102,102,113,114,116,98,106,95,104,97,104,110,108,107,109,103,96,101,100,95,107,96,111,108,104,94,109,113,107,108,102,133,111,99,113,108,113,105,148,111,113,105,101,105,94,115,109,103,97,112,107,117,106,104,110,117,102,110,103,117,113,104,97,111,116,111,107,97,106,111,104,110,104,99,104,92,98,97,111,105,106,111,111,102,103,110,107,96,102,118,111,106,108,110,115,113,99,109,102,103,99,94,91,103,112,106,104,101,88,104,115,100,89,100,117,105,101,112,98,87,104,105,88,99,106,115,108,106,94,107,100,99,99,102,95,105,80,101,109,104,113,116,108,113,106,99,95,105,108,103,103,119,105,104,112,97,100,101,113,100,105,101,98,96,113,109,103,103,124,106,106,111,102,109,106,109,112,107,102,100,113,98,108,87,103,116,98,101,105,109,99,84,110,106,97,107,98,93,107,107,98,107,94,121,107,102,93,106,96,104,110,90,97,102,84,102,101,104,95,104,96,100,109,93,101,101,108,84,105,89,96,100,98,102,102,104,92,108,98,111,105,120,104,95,88,99,111,111,107,104,106,107,107,110,109,109,105,101,102,102,87,103,96,94,116,101,117,115,102,105,96,106,101,103,100,107,107,90,110,105,100,95,114,101,109,105,121,112,106,94,98,103,97,96,102,106,114,99,101,106,94,104,96,95,89,88,99,92,105,102,106,95,97,112,115,108,105,103,102,108,101,94,94,108,113,105,105,114,101,95,101,106,107,94,103,106,99,109,110,100,111,99,95,110,102,97,101,103,104,102,110,105,99,92,94,106,91,107,100,114,111,95,104,95,110,105,100,99,90,113,98,95,120,104,114,96,104,96,93,87,107,91,95,100,99,110,91,89,94,108,120,98,113,115,99,90,107,109,99,110,99,113, +470.7973,104,98,95,107,102,102,100,103,99,112,109,102,111,100,92,104,105,113,96,103,95,109,92,104,127,112,102,91,102,101,103,112,106,100,108,102,101,95,114,110,99,103,90,102,87,100,96,94,101,108,94,120,92,93,110,94,104,116,99,88,99,108,105,99,106,100,99,89,107,92,99,103,104,102,117,111,91,92,94,104,107,105,101,105,99,94,98,106,101,102,104,113,100,108,100,107,97,104,92,95,104,99,111,102,114,110,91,115,102,113,95,114,98,109,110,101,113,103,106,103,89,105,104,100,110,101,116,101,98,102,100,103,112,101,111,112,119,109,104,88,105,104,108,106,96,104,108,102,97,99,103,110,81,100,92,121,96,101,110,109,104,113,107,95,100,105,83,100,109,111,113,103,97,104,99,107,99,96,90,100,98,119,116,101,110,109,101,90,107,83,95,114,103,114,114,114,103,105,102,103,104,98,104,113,99,107,91,107,106,108,107,96,100,109,97,106,108,100,103,104,101,107,98,105,97,108,118,102,98,109,108,105,92,98,117,97,99,103,121,97,103,103,109,102,106,100,101,95,99,114,104,102,107,92,101,105,102,102,99,105,111,102,108,100,113,112,117,104,85,101,109,100,105,107,100,88,105,89,98,101,100,94,104,104,110,104,103,100,99,104,95,102,110,112,126,113,117,99,118,105,94,99,112,107,103,109,101,105,113,109,109,108,119,97,97,113,104,100,104,104,96,119,101,104,105,100,98,105,114,106,103,102,106,113,90,113,114,94,97,105,107,113,111,90,106,113,114,96,111,98,107,109,91,76,110,108,104,115,102,97,108,102,108,102,96,107,115,112,110,114,105,111,104,99,99,100,113,107,109,101,111,110,110,105,112,104,99,114,103,105,101,95,106,126,95,88,102,104,103,108,109,116,96,104,103,104,94,106,98,111,98,92,106,110,103,104,108,100,107,104,104,110,94,104,100,99,96,101,101,107,83,96,111,96,109,104,97,96,95,90,99,104,105,101,101,108,95,91,110,109,104,100,113,113,111,113,102,99,100,109,111,113,116,104,116,114,92,121,109,105,101,113,106,103,112,100,113,88,109,103,102,108,107,109,100,98,113,103,103,113,95,113,96,106,99,99,102,86,123,96,112,100,105,101,105,96,112,101,102,103,107,106,98,99,81,115,117,109,103,79,103,90,100,101,102,95,100,94,91,109,93,105,105,100,108,113,106,114,107,114,106,101,105,105,105,110,107,107,113,103,105,110,110,108,108,109,117,101,101,96,110,104,98,110,114,116,93,109,102,104,101,98,104,98,98,106,101,107,100,115,102,67,99,99,98,111,100,103,99,104,105,118,113,107,109,102,103,93,107,105,94,102,108,98,117,107,103,101,97,113,104,103,94,100,107,100,99,100,99,106,90,100,105,104,106,102,108,91,102,110,96,104,102,111,93,79,109,96,103,110,101,105,109,105,102,103,98,99,106,112,102,103,110,99,94,107,102,97,103,107,108,112,109,84,106,103,105,96,110,95,101,111,100,98,99,84,94,95,111,114,109,108,99,77,99,100,113,95,98,113,98,103,105,105,105,118,112,103,102,103,113,116,105,110,110,108,101,114,105,110,112,103,102,100,92,100,115,110,92,98,81,89,113,112,108,104,99,97,108,119,117,105,102,102,81,84,109,120,114,103,91,102,112,100,103,117,96,107,104,100,105,109,110,98,102,107,108,113,96,90,109,101,101,113,100,101,93,98,101,101,112,110,115,111,91,104,109,99,109,99,97,111,114,99,106,98,111,103,95,103,112,120,118,99,103,107,115,108,112,100,105,102,98,109,96,104,110,99,98,111,117,94,96,111,114,105,109,94,106,103,85,114,105,112,99,110,93,108,110,112,109,102,98,102,102,115,107,99,103,111,102,103,110,110,104,108,114,106,116,108,107,105,103,114,91,104,99,105,97,90,99,96,111,100,101,99,96,109,116,107,111,103,113,112,114,102,107,94,106,94,104,106,104,95,95,95,96,114,107,111,96,109,99,108,106,99,106,90,103,113,108,99,118,105,113,104,103,101,110,105,114,100,104,103,122,99,97,105,106,100,91,99,114,102,99,105,100,120,120,101,106,107,102,109,108,112,107,110,103,107,106,101,99,112,114,110,103,104,100,103,100,110,104,109,109,103,100,109,110,102,113,109,112,102,104,100,109,106,103,105,113,100,117,97,107,101,108,93,101,111,89,109,115,100,113,114,95,108,99,102,114,95,103,102,88,92,90,100,103,97,103,102,102,98,113,115,110,97,98,110,133,120,94,105,73,91,100,108,131,106,109,111,118,77,113,102,106,100,97,101,112,108,106,103,116,95,101,107,93,109,101,100,110,91,98,110,97,106,98,105,107,103,102,103,109,105,119,104,109,111,113,102,111,99,111,98,106,100,95,94,90,107,99,104,108,106,96,102,89,97,102,102,96,113,111,107,106,94,112,105,98,116,130,103,111,106,100,100,115,99,121,102,109,105,98,107,101,105,110,111,109,99,98,113,103,100,111,102,109,121,106,115,104,103,104,107,116,113,104,112,113,124,98,94,117,95,105,106,123,105,96,111,102,104,99,104,110,113,110,105,108,101,116,107,102,99,107,107,105,106,97,101,95,100,99,113,117,114,106,108,116,102,108,108,100,100,108,108,115,111,111,106,106,111,101,109,114,108,95,105,110,108,106,108,104,112,109,107,99,111,113,106,107,111,117,105,104,103,101,94,89,102,111,109,85,109,104,85,99,94,105,101,107,102,110,117,94,107,115,110,116,102,105,113,97,107,110,107,111,136,102,98,97,115,102,92,104,105,105,106,107,111,117,101,97,104,110,98,120,111,108,108,103,115,118,97,103,107,109,116,126,109,112,102,102,102,104,91,110,120,111,104,116,109,113,110,87,105,104,109,112,107,102,107,111,106,85,121,68,111,114,109,107,79,125,121,101,102,93,105,101,125,92,106,104,110,103,112,101,102,113,115,103,105,109,100,120,105,96,95,107,107,91,124,113,106,103,97,98,103,103,110,109,109,103,108,108,107,106,99,98,112,104,100,112,101,103,88,113,113,95,113,105,115,109,116,112,111,92,67,99,109,110,117,94,107,101,105,102,107,101,106,103,102,93,109,112,105,94,104,107,110,108,103,116,107,105,113,100,103,124,109,102,111,105,125,100,115,101,107,108,112,101,110,111,114,104,100,98,118,106,97,102,106,108,113,113,101,111,109,101,107,104,110,102,113,106,104,118,106,108,115,106,108,115,108,110,105,92,108,103,95,104,109,109,104,111,87,99,113,109,107,102,110,142,106,101,95,99,103,109,104,102,106,112,105,101,105,110,105,116,109,116,106,99,125,98,106,109,101,98,95,100,106,106,112,112,110,106,118,107,103,107,96,99,105,99,105,103,120,105,106,102,83,104,103,139,103,91,103,107,108,111,109,99,104,112,99,109,119,120,102,100,99,105,102,121,117,111,105,102,99,103,109,111,105,105,95,106,100,110,113,109,102,106,101,110,112,120,116,111,101,112,106,113,104,102,103,112,115,108,104,108,139,107,107,106,110,107,103,98,107,91,80,106,121,95,101,98,111,102,108,116,109,117,103,104,105,112,105,104,109,112,81,122,97,105,104,116,104,109,111,111,111,109,89,98,114,107,110,95,104,102,111,104,99,106,115,110,100,102,99,100,110,109,114,111,103,111,104,108,102,105,101,110,110,100,106,127,111,109,108,107,109,105,109,106,107,119,111,113,97,101,112,90,112,107,102,105,110,107,98,96,87,99,111,112,98,106,110,116,101,111,104,112,108,97,113,114,103,98,72,114,100,108,117,95,98,110,105,103,103,103,106,108,97,101,116,105,110,105,107,106,97,100,104,101,99,100,91,88,108,111,106,100,107,99,108,103,99,113,109,123,114,99,106,100,101,118,127,83,106,103,100,96,116,113,115,105,101,105,112,102,102,103,112,101,117,108,107,117,110,107,110,93,94,93,111,105,100,118,110,89,105,107,113,108,112,100,117,112,102,91,96,116,113,92,113,110,101,99,113,108,108,110,103,119,108,108,102,112,111,100,111,103,115,109,110,105,106,112,94,109,113,103,104,104,98,100,107,106,98,104,114,95,125,114,120,102,102,115,100,103,95,113,114,113,110,106,107,100,106,110,103,101,108,113,102,106,115,120,89,110,102,104,103,109,115,104,118,102,113,98,117,100,107,121,105,97,107,106,103,117,83,102,101,110,105,102,108,113,103,99,104,106,125,111,90,108,117,103,113,105,106,100,102,103,107,82,110,103,107,101,109,107,109,95,99,104,101,108,96,109,109,104,104,120,90,112,104,125,112,114,113,99,105,104,108,106,101,113,102,98,107,93,111,95,113,84,100,104,113,105,99,98,115,106,110,111,96,117,105,111,93,117,100,97,109,92,103,106,113,108,101,106,99,68,105,120,133,103,117,99,89,106,103,104,96,109,99,102,103,99,121,115,114,100,103,100,105,98,103,100,106,97,109,117,103,113,111,110,107,103,90,103,104,104,110,116,113,89,106,112,112,100,110,84,110,115,108,105,104,84,105,116,107,115,109,100,98,110,103,112,106,109,110,102,95,110,110,113,101,107,99,111,98,115,105,105,104,85,113,109,106,105,105,104,95,107,102,103,103,109,100,106,101,99,99,100,110,109,101,105,98,108,102,88,98,101,97,99,106,84,109,108,99,102,98,100,106,116,99,92,95,106,111,102,104,95,109,106,106,120,108,102,113,109,132,108,93,101,112,101,104,105,118,97,108,93,92,91,104,87,95,126,107,106,109,90,114,106,112,90,107,105,97,87,89,106,105,88,95,112,114,103,115,106,112,121,106,110,109,110,82,99,97,118,109,117,102, +470.93777,117,119,119,108,104,111,107,106,100,97,100,103,95,102,100,99,110,116,104,80,113,92,92,104,103,94,103,97,105,93,111,99,120,109,100,95,104,105,102,104,96,106,116,100,97,99,111,104,102,99,95,91,106,120,115,98,103,99,93,94,99,109,107,99,108,103,98,94,102,103,108,105,103,99,98,95,96,97,100,103,122,104,113,110,119,89,106,111,101,95,109,111,94,99,97,100,93,89,89,108,106,89,105,113,105,103,96,107,103,105,95,92,108,105,111,100,92,117,110,119,97,108,103,99,105,105,118,95,117,98,108,98,99,100,105,104,104,102,103,117,108,106,97,104,116,108,105,105,94,102,109,113,107,93,93,108,91,120,108,105,99,100,109,105,93,106,95,99,104,99,104,103,95,99,112,110,106,102,99,105,95,100,81,102,97,96,99,88,104,99,96,103,102,111,98,104,101,109,104,101,104,102,103,100,105,102,90,104,118,114,101,110,96,113,98,92,98,108,90,111,94,109,99,90,99,112,101,108,113,98,98,117,104,104,100,104,109,112,98,89,113,106,105,108,100,102,108,110,104,108,97,109,96,107,100,104,101,100,100,94,102,102,101,105,95,107,104,103,122,100,100,110,114,117,103,105,112,107,100,116,99,105,102,124,99,95,102,112,106,113,105,114,105,99,108,93,104,103,101,98,108,104,93,105,100,111,98,114,100,106,102,120,106,97,101,91,107,123,112,99,103,87,101,114,108,102,98,99,107,103,94,114,108,109,97,110,117,106,105,105,97,95,103,97,102,97,111,105,103,109,108,97,103,101,107,99,95,108,100,103,105,117,98,108,99,100,110,119,100,112,108,91,109,101,109,106,109,100,98,126,114,99,105,121,91,93,101,113,100,117,112,96,96,111,92,95,107,99,70,117,110,97,103,102,99,115,103,98,106,104,103,109,102,103,106,104,104,79,110,107,97,92,100,101,103,94,120,100,101,108,86,97,113,91,104,97,94,119,96,109,109,109,99,122,102,104,97,99,99,107,109,95,88,102,102,97,100,113,108,101,103,118,101,115,100,108,94,107,102,112,104,102,106,100,94,95,102,117,119,105,102,95,108,106,107,97,98,100,105,92,123,104,104,106,107,110,98,98,118,100,107,105,98,93,105,101,103,111,103,111,101,94,105,108,101,98,111,91,87,91,104,109,104,96,117,106,140,106,96,101,83,103,99,94,98,110,99,126,100,115,98,97,99,103,109,96,117,94,91,112,97,109,108,107,104,102,104,105,83,104,102,99,91,96,102,105,102,104,105,103,94,93,98,108,104,117,104,100,94,99,114,100,121,95,106,118,112,113,115,107,108,107,98,113,108,107,99,102,102,91,104,108,97,100,95,104,94,102,106,103,105,101,102,98,113,96,106,102,105,98,116,96,102,95,107,96,95,106,98,100,102,101,99,116,95,110,97,114,95,102,104,98,104,94,109,85,112,104,102,111,104,107,112,109,94,113,110,99,117,104,101,127,108,105,90,101,96,95,113,103,120,109,109,105,108,105,112,95,106,100,95,103,105,101,106,105,112,109,107,100,99,101,110,109,103,106,105,103,99,93,99,103,101,113,108,105,110,95,105,103,110,100,103,95,108,103,106,102,106,103,108,94,102,104,93,97,119,106,97,82,102,107,106,104,97,109,105,105,109,111,107,107,103,102,103,117,106,102,98,108,104,100,103,101,106,109,105,94,103,108,101,117,101,107,106,104,92,90,110,97,107,102,113,101,102,106,95,86,99,91,103,106,102,110,94,97,104,103,91,114,104,111,74,118,99,117,104,113,108,101,104,97,112,98,102,97,99,111,99,93,109,107,98,98,120,90,110,102,101,101,102,104,95,109,93,118,120,96,103,115,110,106,105,108,101,113,93,94,116,118,101,91,108,103,104,75,96,96,105,101,105,107,102,100,111,96,101,100,93,98,108,106,112,107,102,100,99,108,101,100,100,83,105,106,94,106,108,96,94,98,113,99,95,103,110,103,104,125,103,101,96,118,105,112,100,106,93,104,97,95,106,103,98,94,82,101,100,108,102,103,100,119,97,109,118,96,102,106,91,101,105,95,113,109,106,102,102,109,110,102,104,113,95,99,102,105,103,100,102,100,105,100,92,104,91,103,103,100,104,114,110,100,105,106,107,99,102,102,95,102,98,99,105,103,114,113,102,108,109,111,101,109,83,110,99,98,108,95,103,93,101,99,109,103,108,102,102,97,88,107,100,103,96,91,102,97,119,117,105,108,111,106,97,98,105,105,97,99,103,104,105,99,99,105,100,107,92,101,103,96,101,110,108,103,102,104,92,99,109,99,99,111,109,92,103,92,117,115,95,99,115,109,104,100,118,100,99,96,110,106,109,110,116,96,109,100,89,109,107,83,94,93,109,106,110,107,108,110,100,96,110,118,95,97,105,105,116,109,90,94,98,103,90,110,99,112,92,104,121,99,102,106,107,90,103,106,91,99,102,109,107,113,114,93,106,96,130,106,92,100,112,95,119,104,101,106,115,117,100,108,102,103,111,92,103,90,107,116,98,101,100,103,108,100,107,113,103,107,98,110,101,94,95,113,88,101,99,105,106,105,106,108,98,121,98,103,117,102,100,101,104,91,109,88,108,109,107,109,111,101,106,102,108,106,119,96,98,108,116,109,104,103,112,103,108,109,108,114,107,98,108,92,107,110,88,112,111,106,102,99,107,102,95,77,103,101,104,111,99,117,116,88,98,95,109,114,99,101,96,104,110,120,99,125,106,87,105,105,99,113,94,102,94,102,103,104,111,99,106,108,106,101,100,101,87,114,100,104,102,107,102,100,111,102,111,111,106,113,96,109,105,112,103,105,109,107,103,113,108,108,99,102,106,114,106,104,99,110,104,113,117,102,104,97,116,110,100,107,107,104,121,103,97,101,105,100,106,107,112,97,107,104,104,102,99,112,89,119,103,99,96,101,105,82,105,109,101,104,100,111,108,103,93,105,116,107,120,103,75,94,104,104,92,101,99,112,108,105,83,105,109,109,111,115,101,95,108,107,107,104,99,102,101,119,103,104,113,105,101,95,105,109,101,113,117,102,112,85,103,95,113,101,104,108,106,117,100,113,100,105,87,101,111,102,108,96,108,93,119,105,103,106,99,99,113,99,95,104,112,113,98,96,101,99,99,98,121,98,112,98,102,109,107,109,112,103,110,110,106,109,87,88,104,109,106,115,103,108,107,111,112,115,105,105,104,101,99,96,120,104,98,109,110,110,101,111,106,98,103,98,94,103,119,90,111,107,109,103,103,97,102,97,85,114,106,107,107,94,111,100,99,101,107,107,102,107,94,108,100,98,99,115,105,102,105,102,106,104,113,101,85,103,96,109,118,107,101,98,105,99,107,81,113,102,98,103,107,108,100,107,106,106,95,116,109,98,109,106,88,101,104,97,108,107,105,113,105,111,97,93,106,108,97,98,101,104,102,103,102,104,97,105,91,116,108,98,114,103,113,101,100,107,101,94,109,95,102,108,104,95,100,91,113,100,110,90,91,106,98,108,116,96,106,103,102,114,111,88,97,95,104,105,100,104,114,110,111,95,108,104,104,109,100,102,105,98,99,103,107,104,105,103,107,106,103,104,102,99,110,118,93,100,108,114,100,106,103,108,100,102,106,108,107,113,116,94,109,112,113,97,88,94,96,96,102,95,101,102,97,99,116,101,106,95,102,104,99,106,98,103,103,112,113,111,102,105,101,104,113,91,106,95,97,104,109,97,109,100,112,104,109,113,99,70,102,109,113,105,109,104,102,112,108,117,112,109,105,109,96,108,94,105,105,103,101,95,111,105,107,109,105,107,115,116,102,100,106,104,100,105,97,118,106,96,101,99,93,97,118,94,108,89,109,107,107,91,105,89,102,98,108,100,103,100,90,107,102,104,111,107,101,104,101,107,91,95,98,108,108,98,94,97,109,108,111,108,112,104,116,107,98,102,108,106,109,101,92,107,121,101,100,107,98,96,109,106,105,99,123,108,99,99,97,82,120,96,103,103,100,98,97,106,104,106,97,110,107,111,102,108,108,113,98,106,116,111,107,110,104,105,99,102,101,95,109,116,97,96,98,108,102,96,103,114,111,109,101,102,108,118,99,113,119,104,100,103,104,103,109,83,106,103,109,107,106,107,104,120,109,114,101,123,97,110,106,98,110,112,104,99,105,121,105,93,98,101,104,112,114,102,98,108,115,100,99,99,103,113,100,105,95,111,101,105,96,105,92,103,100,100,99,104,116,105,100,112,99,103,100,110,98,108,113,110,104,106,96,105,109,116,101,104,106,111,113,97,102,106,107,69,101,118,110,102,99,95,105,103,106,94,107,102,106,102,102,101,103,115,97,103,121,95,102,104,96,110,116,106,91,97,103,121,104,102,104,103,100,101,99,111,102,106,109,108,105,106,90,97,102,102,88,98,100,100,112,97,101,110,99,113,88,102,102,104,97,105,109,103,97,98,106,94,97,103,105,96,96,110,95,103,98,97,103,108,106,102,111,100,104,108,111,108,120,125,115,113,108,106,95,105,100,95,109,108,131,99,91,112,101,101,93,106,100,115,103,105,94,102,98,106,120,106,107,99,99,91,119,112,107,99,97,100,111,105,79,101,101,98,101,105,94,101,96,106,100,95,113,102,100,121,109,91,101,91,107,112,94,98,105,95,75,98,85,100,104,97,89,110,109,98,115,106,105,111,109,114,106,103,106,105,108,100,97,110,96,99,100,99,97,102,116,92,104,103,101,113,97,116,105,116,121,100,96,96,107,98,94,99,102,102,116,101,98,91,97,102,108,100,111,92,104,101,106,103,98,101,100,103,96,104,108,97,105,94,109,110,102,112,108,90, +471.07828,111,118,88,103,118,103,106,92,115,106,96,87,104,113,109,119,104,115,105,100,101,100,109,109,101,123,109,92,107,116,107,106,98,102,111,105,107,97,102,98,99,92,98,110,113,107,102,90,101,111,111,106,99,100,113,106,99,89,113,101,93,102,93,92,110,106,91,112,104,94,96,101,87,111,96,104,87,98,98,94,116,104,104,100,112,103,106,97,100,99,110,96,113,106,102,112,96,90,106,99,101,100,105,107,93,109,108,92,105,103,97,106,110,104,105,100,109,96,110,100,87,97,110,98,109,108,103,116,107,94,107,103,95,108,108,105,100,109,102,110,97,102,103,94,102,113,106,95,97,103,112,101,108,114,103,115,106,96,102,100,102,113,109,100,114,104,119,90,108,112,104,100,104,102,95,108,104,107,107,102,113,95,90,104,105,101,92,97,84,105,91,109,100,101,102,102,104,108,98,104,111,99,102,92,60,91,115,112,118,95,91,113,123,105,105,106,93,99,107,98,104,109,107,105,111,110,113,102,118,97,105,103,99,103,101,108,104,111,105,111,105,103,104,114,94,101,101,92,111,106,94,103,99,110,92,93,91,114,107,101,92,106,98,98,93,106,104,110,105,113,112,105,109,99,113,105,108,127,110,107,106,103,101,93,115,110,96,99,108,103,105,106,103,106,126,109,99,100,117,100,103,99,95,104,95,112,113,100,104,108,107,101,108,108,112,99,106,118,73,90,106,117,104,95,101,103,114,95,109,102,116,113,110,108,101,116,113,106,104,104,100,104,121,95,107,120,121,110,101,107,120,99,105,106,103,103,106,108,114,112,98,97,103,114,98,99,115,107,115,106,112,108,102,104,96,79,108,101,109,105,107,99,103,112,95,90,105,117,104,103,109,100,106,103,103,110,109,106,104,103,92,101,111,101,101,106,109,106,118,100,111,98,98,111,108,91,105,115,116,102,110,106,98,106,98,111,107,97,96,113,100,110,108,95,104,94,105,111,103,87,108,98,111,112,100,106,116,100,103,104,106,119,108,104,108,108,106,103,101,96,112,96,114,110,114,102,107,100,104,112,88,104,103,107,97,69,96,102,107,112,98,99,117,105,110,99,120,112,104,100,96,108,111,99,96,103,102,90,112,101,107,98,101,116,108,98,106,99,105,111,112,110,111,115,113,115,107,104,105,100,107,101,97,105,107,109,99,107,96,104,104,108,96,109,117,97,115,90,109,114,98,112,103,107,119,110,107,96,104,99,116,97,110,102,97,108,117,120,107,105,101,90,105,106,102,115,100,132,99,106,101,62,97,99,102,103,105,101,107,109,103,103,107,109,98,104,117,117,109,86,108,102,96,105,108,101,105,100,107,100,90,106,106,106,96,107,103,100,103,112,106,104,110,113,92,95,96,103,107,106,106,113,113,106,109,102,110,112,102,106,103,94,111,108,95,107,95,97,105,98,113,89,96,101,103,92,94,104,110,114,94,96,106,108,94,104,110,108,116,99,102,98,124,115,98,109,96,106,113,109,107,103,118,113,118,111,98,104,124,102,112,98,112,96,100,95,93,104,99,115,103,108,92,113,107,98,102,112,107,97,108,102,108,101,102,110,116,113,99,95,87,112,109,98,115,102,87,114,103,98,115,89,97,101,101,102,104,108,102,116,97,95,104,121,95,98,109,94,114,109,105,113,107,102,116,109,102,100,101,111,100,89,93,107,102,105,106,109,106,94,107,104,91,103,109,109,108,94,108,91,106,106,112,92,105,105,112,100,105,108,107,108,114,104,93,119,101,105,121,104,103,114,102,101,108,104,104,105,99,102,101,109,90,108,99,102,117,109,113,108,104,101,103,95,126,101,109,82,103,96,112,118,100,102,104,110,108,109,125,107,107,79,107,90,103,105,105,100,99,100,93,101,110,117,103,102,98,106,98,98,91,99,111,94,113,107,112,108,103,106,100,89,97,123,88,108,102,107,110,107,107,104,104,101,102,103,115,102,90,90,102,109,102,104,100,108,101,109,109,108,105,108,116,111,118,111,101,102,100,103,94,109,106,105,109,102,103,109,106,111,106,135,106,104,110,96,96,108,109,102,112,104,105,111,99,104,97,110,97,97,114,93,109,113,103,103,92,95,99,102,93,105,111,114,95,95,100,109,111,104,109,102,106,109,108,120,109,117,103,102,108,111,114,103,111,90,96,106,105,112,101,102,97,105,109,97,113,96,96,109,109,108,113,119,99,66,91,90,92,93,102,100,100,107,105,105,103,94,93,101,113,106,95,102,116,108,105,107,93,102,97,102,109,107,100,113,105,114,100,98,103,111,118,106,109,102,94,106,111,99,102,102,105,112,107,99,111,109,102,92,109,110,102,116,99,102,120,106,106,108,101,108,106,108,96,93,105,115,120,117,104,103,88,123,96,103,126,97,96,98,99,115,93,94,99,109,101,115,100,101,117,97,105,101,105,113,99,97,106,97,109,104,105,112,110,107,105,109,104,116,117,98,112,104,106,100,106,108,96,93,101,100,90,104,103,87,108,107,104,98,94,102,99,97,105,104,102,104,102,110,90,106,104,102,109,107,104,102,101,112,105,109,94,117,104,106,110,105,106,109,119,111,103,104,117,103,105,113,116,106,112,105,107,87,107,109,105,99,110,99,103,113,110,107,113,91,110,100,113,115,104,113,90,109,108,104,111,106,99,112,102,110,100,103,102,119,105,109,111,109,121,102,121,101,105,100,107,96,107,81,99,109,105,116,111,115,106,103,104,104,108,103,105,95,121,110,100,109,113,109,108,106,111,104,110,121,117,105,109,98,80,122,104,109,95,121,110,115,105,105,105,124,101,109,119,106,103,117,119,117,107,109,112,136,108,99,103,92,108,112,112,108,106,106,109,98,110,102,88,123,109,105,108,112,101,110,103,101,95,107,103,108,113,109,109,107,111,109,98,90,100,108,116,122,113,101,112,114,114,105,105,110,94,88,102,103,100,106,101,107,104,102,105,109,108,102,111,97,105,84,100,101,99,112,105,106,97,108,98,111,105,104,105,109,111,111,87,101,111,99,99,104,110,121,103,103,85,109,104,112,104,109,104,100,113,100,115,105,117,117,105,117,102,106,93,109,100,120,113,100,97,102,112,106,100,105,119,92,102,98,96,99,107,107,110,101,111,110,113,104,100,112,101,109,99,104,109,100,104,108,110,115,112,125,117,100,91,118,105,123,102,107,95,99,106,106,105,100,106,120,107,108,102,119,102,121,103,110,111,98,103,105,115,115,101,103,106,109,106,110,85,104,103,106,132,106,94,95,101,97,108,111,141,98,109,106,100,96,105,109,93,79,106,105,103,97,115,97,125,112,92,120,103,113,103,106,95,114,102,108,95,103,109,109,113,102,106,106,103,100,104,104,116,113,104,101,108,104,99,107,104,91,109,110,102,105,106,105,103,108,112,98,116,105,104,106,106,104,100,117,111,98,94,96,100,107,106,104,105,112,103,111,113,101,101,116,112,108,106,98,104,117,128,87,102,108,111,107,84,118,89,108,110,109,102,113,110,117,119,100,91,102,106,103,117,105,103,115,119,112,117,101,88,112,102,100,104,104,102,108,90,99,107,104,109,108,102,109,103,115,110,97,114,96,103,110,93,111,96,99,101,104,124,109,104,99,116,106,120,102,111,111,106,116,105,100,99,116,103,101,101,88,110,121,109,107,100,123,106,107,117,106,104,99,98,117,102,111,102,101,96,106,115,105,128,109,99,97,116,98,116,116,104,111,102,110,104,102,112,68,100,106,94,103,114,102,102,110,110,110,100,111,113,107,115,106,103,104,106,109,94,104,104,107,106,109,92,117,96,120,97,104,89,110,95,104,104,100,111,115,104,102,99,100,102,99,107,111,109,103,104,117,97,103,113,113,107,103,103,99,100,115,103,106,97,105,105,104,111,95,115,106,93,94,106,108,121,100,104,111,108,95,109,106,112,119,103,101,111,92,108,111,108,114,95,102,102,112,104,114,104,106,99,101,96,98,107,99,106,108,106,101,104,98,102,106,101,105,115,104,76,102,110,110,102,100,91,106,109,106,104,108,95,97,117,108,117,102,100,107,98,106,101,105,119,103,110,94,109,101,110,102,103,106,108,109,111,108,102,106,113,106,97,104,100,92,121,115,111,97,110,102,100,124,101,94,104,106,107,105,95,130,100,107,105,109,108,110,94,106,106,104,105,113,99,104,106,109,104,100,98,113,144,125,95,104,96,123,98,103,101,105,120,102,102,109,101,113,69,109,104,112,107,121,102,103,104,105,101,103,102,101,103,100,104,108,107,104,99,119,107,105,102,116,98,103,110,94,107,99,97,107,103,116,101,103,106,106,102,97,97,110,106,105,106,101,104,113,120,118,106,104,107,99,87,98,91,111,110,98,105,107,104,104,101,110,112,112,105,124,114,108,95,109,103,107,104,104,120,106,116,104,107,96,99,104,99,102,104,108,94,104,93,112,113,118,102,107,102,101,105,111,113,101,103,124,120,112,104,105,99,105,96,98,124,86,94,98,102,111,110,106,113,96,102,103,112,106,102,106,101,98,108,100,107,104,102,101,102,113,110,93,103,98,104,113,102,107,117,102,109,108,104,112,105,99,110,96,101,114,99,102,120,106,104,105,113,103,109,121,119,101,105,102,91,108,107,99,103,111,105,108,97,105,106,84,100,106,103,103,116,107,93,104,99,111,107,106,95,96,110,104,110,101,98,97,103,106,103,104,103,106,108,102,90,105,105,105,84,103,103,95,104,106,109,102,100,121,104,97,104,103,95,123,108,104,99,117,98,107,117,106,94,102,97,108,98,99,107,89,105,108,110,104,104,89,113,98,98,98,106,100,98,89,104,104,111,89,97,98, +471.21878,106,100,102,90,98,106,101,109,113,109,107,98,105,117,111,94,102,98,104,108,108,95,96,113,103,104,99,108,94,111,110,97,90,111,109,100,106,99,95,90,98,91,99,97,101,106,103,102,106,115,116,104,108,123,111,96,103,90,108,78,96,103,99,89,106,118,104,102,87,96,109,100,90,93,88,103,96,101,96,97,97,99,113,109,91,103,101,100,108,108,100,101,97,103,103,98,114,97,105,101,93,95,89,100,105,97,99,103,100,91,107,108,109,99,108,106,110,98,112,98,103,102,91,119,112,103,103,97,103,108,102,108,104,100,106,106,100,103,101,99,106,101,99,95,119,100,100,102,98,102,112,93,107,106,106,79,110,100,107,111,92,103,97,110,103,99,102,97,100,104,120,102,117,109,110,107,100,81,102,101,107,110,101,107,108,100,87,97,104,112,106,104,107,79,103,114,105,95,105,103,95,109,96,102,98,93,111,106,105,99,101,100,112,112,104,91,105,112,96,98,100,110,103,97,115,106,107,106,95,102,105,113,101,109,110,105,102,101,97,103,103,101,107,106,104,84,107,112,105,110,99,112,114,101,112,102,108,108,106,93,95,107,104,100,95,109,104,101,106,97,113,100,107,94,115,106,107,100,98,108,109,77,96,103,112,104,101,105,93,102,99,106,104,102,105,106,94,108,103,116,101,99,103,118,101,94,101,94,100,111,105,99,108,121,99,106,96,104,110,101,86,100,108,111,106,95,103,99,104,111,99,110,110,108,101,105,108,94,95,99,110,103,104,109,91,103,112,97,107,85,102,105,119,106,112,106,100,109,100,99,101,87,127,95,98,120,104,116,100,107,94,136,113,112,112,115,113,106,100,109,94,106,103,115,104,123,101,105,104,113,118,104,97,107,100,120,98,93,109,102,99,106,94,95,92,99,116,112,79,105,101,100,106,104,96,101,106,98,77,100,103,96,100,102,114,108,107,95,99,122,102,110,114,106,102,96,102,108,100,95,103,106,110,100,112,108,102,100,111,114,105,122,96,107,109,101,101,110,104,109,110,100,112,100,108,103,99,101,102,102,101,103,109,100,93,79,118,107,116,111,109,115,103,108,102,105,90,98,101,106,106,112,113,105,101,108,73,98,95,110,106,99,105,116,99,108,97,101,104,82,113,101,99,108,102,107,104,94,104,103,100,104,110,96,112,102,105,101,111,108,101,102,108,81,95,103,138,115,106,106,99,107,106,89,93,100,110,109,105,110,109,113,110,66,95,107,103,95,98,103,102,104,104,108,116,91,99,118,104,106,103,103,108,105,73,102,102,102,97,111,102,111,108,97,104,99,110,111,83,110,100,110,96,98,103,115,100,114,96,97,98,108,105,104,104,106,92,101,97,98,110,102,117,101,95,107,101,109,113,113,115,113,112,102,102,108,99,109,107,102,107,111,98,95,100,119,112,100,96,108,105,111,110,114,99,92,97,94,124,116,101,109,103,115,103,99,118,114,69,103,101,113,102,85,100,105,99,101,110,101,117,97,102,91,103,102,107,104,103,110,108,105,115,95,100,102,102,102,94,118,101,109,74,106,110,94,104,104,103,98,109,113,100,100,110,114,92,108,91,106,110,98,98,105,102,107,104,97,102,103,98,110,93,113,101,100,106,110,100,100,108,92,110,95,103,97,111,92,112,105,100,110,103,108,103,119,103,105,106,100,110,100,105,103,109,102,117,108,106,73,96,109,90,96,91,107,109,103,112,97,113,117,114,104,109,103,116,107,107,100,107,101,107,111,102,100,100,111,104,105,101,99,97,107,100,118,104,102,113,103,98,101,109,101,102,85,107,100,102,97,123,108,106,109,104,109,101,104,95,96,109,109,104,98,102,104,109,96,107,116,106,113,111,112,99,105,119,96,93,107,95,101,116,101,96,103,106,105,102,114,101,104,116,109,97,100,107,94,106,107,107,99,103,105,104,93,99,121,101,105,108,106,100,94,105,96,108,98,109,94,104,115,109,115,103,98,97,95,117,111,100,103,99,103,113,110,97,109,108,96,106,111,108,101,109,113,97,104,93,99,101,100,104,106,108,100,102,96,100,106,106,116,115,112,107,102,109,107,100,107,95,108,115,98,72,105,90,98,104,109,113,104,103,109,89,115,105,121,105,113,114,96,94,110,108,105,113,107,99,98,84,109,115,106,110,98,107,105,104,101,90,100,103,82,107,103,93,105,108,112,95,103,96,118,113,116,95,99,102,103,95,111,109,101,97,102,104,100,99,108,109,105,120,105,118,94,109,109,100,115,102,107,110,99,103,103,103,97,114,102,108,109,107,96,105,104,104,111,117,115,119,103,104,108,109,96,95,115,97,94,94,98,99,102,109,95,104,103,99,107,108,108,99,102,100,120,105,82,97,104,106,97,111,107,102,108,90,108,93,100,95,107,105,106,94,95,94,100,109,103,99,97,97,103,100,103,105,108,99,106,111,104,113,96,101,106,103,110,120,110,99,84,121,100,94,117,95,95,102,101,76,102,114,106,106,96,111,106,110,113,107,97,104,106,110,136,96,106,99,109,107,108,107,106,91,105,114,103,101,92,100,106,104,113,97,95,102,107,108,104,109,109,112,110,102,98,109,106,118,104,102,100,94,92,115,104,120,99,102,103,106,101,106,94,103,108,102,107,100,117,109,102,100,120,94,116,111,89,98,116,107,114,106,91,91,109,91,105,94,99,117,103,108,98,106,104,102,109,99,103,99,99,109,103,103,114,108,105,102,107,107,107,103,102,100,97,109,105,109,105,105,109,92,111,108,107,106,114,103,100,103,106,106,101,111,100,104,116,106,111,105,103,102,120,108,113,104,112,105,97,105,105,110,104,103,101,83,95,104,95,109,121,110,103,95,101,106,102,104,108,110,106,96,102,108,104,108,119,99,100,101,110,113,95,97,116,110,95,92,104,106,112,106,116,109,109,100,103,91,112,94,108,102,104,118,98,115,96,103,103,121,108,95,99,107,104,108,109,112,106,109,92,97,109,97,100,96,101,105,105,105,105,105,96,116,108,117,102,103,104,115,111,118,116,98,90,85,108,105,95,106,115,107,100,107,105,101,100,104,115,96,99,116,101,94,104,113,114,106,91,113,91,110,105,97,83,106,99,95,103,106,96,100,114,97,99,104,98,116,103,95,107,97,109,112,107,101,105,105,104,113,100,101,103,99,94,99,94,98,109,97,105,105,106,99,107,99,106,105,113,107,114,106,81,105,125,106,116,95,112,103,94,108,103,109,101,106,108,94,110,99,102,105,91,99,109,111,83,91,107,106,101,102,105,105,104,104,112,101,103,120,121,100,87,104,102,102,96,102,94,88,100,107,108,94,96,93,116,102,103,120,102,86,102,101,109,115,103,108,111,102,120,113,98,101,103,99,102,105,121,93,96,101,103,102,127,92,119,94,105,109,99,104,103,99,108,108,110,100,108,99,102,95,103,113,107,95,106,108,100,108,96,103,122,98,96,108,100,105,107,102,97,98,113,107,99,113,108,114,109,97,110,112,92,100,94,113,109,98,101,104,107,110,109,103,111,106,108,109,105,104,105,97,80,100,110,110,108,104,121,89,103,100,96,96,100,93,108,108,112,109,109,104,97,99,102,103,96,106,107,104,108,107,104,95,95,110,100,113,114,108,116,106,99,109,100,108,100,116,92,107,120,107,128,105,101,102,100,101,87,107,107,102,96,109,102,110,106,95,107,107,105,96,99,105,95,112,110,108,109,100,104,85,102,96,100,106,87,113,94,101,104,100,108,110,102,117,102,99,112,109,102,102,98,99,102,97,97,98,93,101,94,104,98,103,106,107,113,102,107,109,108,105,101,111,116,100,98,105,98,101,103,109,96,109,104,108,96,99,95,117,102,106,104,104,98,119,108,109,134,98,113,101,94,102,102,116,121,101,103,99,97,70,115,111,92,107,104,105,95,111,101,115,113,110,112,114,113,83,114,107,98,98,105,112,95,103,106,106,113,103,101,108,99,107,118,102,101,115,96,100,108,112,102,106,103,93,113,113,100,106,112,102,75,102,114,104,91,103,100,109,102,105,104,107,110,110,100,92,101,106,109,85,112,113,120,113,103,119,99,111,94,112,105,113,114,90,106,92,104,100,108,88,101,98,102,109,116,96,96,100,83,113,105,107,102,117,94,127,112,116,101,110,110,95,103,119,98,98,108,111,95,107,113,99,116,108,113,106,91,102,109,110,111,102,106,98,100,105,107,103,92,112,108,99,98,101,110,110,96,97,112,101,111,99,100,110,108,103,107,100,90,103,115,105,98,123,102,105,106,100,104,110,112,96,92,112,92,86,106,100,98,108,109,103,112,107,105,100,97,102,107,106,98,108,95,118,116,108,94,108,91,95,103,98,103,105,86,100,98,107,98,109,109,99,96,94,106,111,108,102,114,124,98,93,104,104,101,106,104,72,91,98,104,110,100,85,105,111,102,94,99,96,100,115,104,115,112,100,108,93,97,107,98,88,113,111,108,94,115,90,104,86,95,96,90,103,102,111,94,104,102,98,102,112,118,106,74,103,114,98,91,120,107,99,107,102,103,111,103,109,98,91,111,108,95,109,104,100,102,105,100,100,104,104,105,105,98,112,101,105,104,110,114,113,85,111,117,91,94,89,79,112,99,108,106,94,107,103,88,113,96,106,105,116,105,121,103,106,100,109,108,102,91,103,103,121,101,98,101,115,93,104,80,110,110,101,105,85,98,100,104,96,103,100,106,101,93,103,95,109,94,95,104,96,102,94,117,101,109,111,105,96,94,113,90,104,109,107,99,97,100,92,104,114,106,85,103,115,100,106,109,99,104,107,103,72,109,116,92,108,113,100,96,106,98,94,103,104,97, +471.35925,97,106,93,106,99,105,105,89,105,104,93,73,113,86,106,75,99,101,102,112,96,104,106,87,106,106,104,103,118,113,101,92,76,109,85,89,108,87,97,110,87,98,96,113,110,98,114,92,121,93,103,108,91,113,103,100,80,94,108,92,111,96,112,83,110,110,109,104,96,101,97,96,94,99,94,114,94,96,106,99,109,107,104,98,98,95,101,101,110,87,96,99,105,103,97,82,101,108,99,112,99,99,99,94,83,108,103,108,100,110,95,101,121,105,109,116,110,113,95,104,87,98,112,111,113,99,109,109,105,97,101,93,102,103,102,100,100,97,102,105,105,110,100,106,109,107,104,101,93,92,95,99,99,97,91,106,91,104,118,105,109,100,105,101,106,103,94,88,107,119,99,107,86,93,106,106,105,93,121,105,108,99,92,101,94,107,100,89,93,116,94,100,103,109,107,102,79,102,110,106,95,102,108,98,103,113,99,105,106,102,106,104,103,93,95,100,96,99,97,99,96,110,102,98,101,91,102,106,106,105,93,92,95,94,101,106,103,109,103,101,99,97,98,101,92,97,134,97,113,103,97,107,104,108,100,110,104,108,91,111,100,108,100,98,84,99,108,104,102,93,114,102,97,104,113,92,99,104,99,105,104,104,101,106,99,100,99,101,105,114,95,97,115,106,105,111,91,103,100,107,107,96,99,111,97,107,81,97,103,102,103,95,108,114,120,88,95,106,96,103,96,103,105,109,93,113,101,100,106,113,97,105,102,110,97,103,98,101,91,100,101,94,98,105,96,102,113,111,112,101,88,105,107,101,103,104,103,115,105,105,106,80,102,109,98,101,114,113,112,117,128,111,116,80,99,111,109,114,99,100,108,114,100,106,98,97,114,99,110,117,106,105,106,102,101,99,95,99,105,106,106,102,102,91,107,92,109,116,101,114,113,92,108,103,93,101,104,103,108,109,93,98,96,106,108,93,111,84,88,102,106,95,98,106,103,101,101,104,97,132,106,110,103,103,111,94,94,91,103,116,101,103,103,98,100,102,85,103,104,99,101,107,91,102,106,103,108,109,105,103,94,110,103,101,119,106,102,106,113,102,100,100,111,91,105,100,109,108,104,108,105,99,103,102,101,102,104,102,101,100,107,102,105,101,104,121,109,104,113,95,108,112,112,116,99,101,110,99,102,104,106,104,103,103,100,104,109,98,109,101,98,107,101,109,98,102,117,97,99,108,103,111,108,115,91,95,107,99,98,100,103,101,105,107,104,95,107,108,96,103,100,100,98,104,93,92,106,103,112,106,96,97,101,104,113,109,101,102,100,108,102,99,106,91,105,109,100,102,85,76,100,108,106,90,104,87,99,109,108,112,87,119,90,98,102,107,102,112,91,103,113,98,100,98,107,99,69,105,102,88,105,84,95,93,111,116,101,95,108,118,104,101,101,109,105,108,110,101,115,105,106,106,101,102,101,90,116,100,105,103,99,91,98,111,108,101,108,112,106,99,112,109,98,99,118,100,104,104,111,88,108,99,115,100,99,95,102,102,86,97,106,101,107,94,94,94,98,105,98,101,98,104,100,102,103,112,80,104,103,101,102,89,100,105,117,118,107,102,105,112,101,102,112,111,105,109,105,108,105,94,100,98,101,117,103,106,98,113,106,112,108,109,92,105,102,96,106,108,94,108,104,100,102,103,103,104,116,103,104,111,130,102,101,106,105,105,102,95,109,102,105,96,96,100,99,110,87,106,98,91,112,95,96,91,99,113,96,100,97,102,107,116,120,125,109,99,100,117,108,102,105,97,109,114,91,104,113,101,96,109,102,93,95,125,100,101,98,111,112,103,106,109,111,110,119,96,101,113,104,98,104,112,106,113,94,111,114,98,106,107,110,107,80,108,102,106,113,97,113,110,117,112,113,90,99,117,88,97,98,112,98,109,108,100,98,94,109,120,100,102,109,113,110,108,100,92,103,110,108,108,113,108,105,110,103,107,101,95,125,98,104,110,107,109,102,105,107,122,104,112,104,112,110,103,101,99,99,103,106,106,104,104,109,114,116,106,106,99,86,108,96,103,110,102,99,94,109,103,98,113,106,107,104,99,108,96,109,111,101,110,96,99,113,115,95,114,106,98,106,108,114,111,109,104,102,108,97,87,92,109,111,113,94,109,105,102,106,102,105,94,110,111,102,113,101,92,89,100,127,98,94,124,96,112,102,97,105,95,105,102,113,99,102,98,103,99,94,102,102,100,99,107,102,109,94,100,103,104,98,104,116,110,107,104,112,101,107,103,102,99,99,107,95,98,94,111,105,103,106,103,101,111,118,102,105,101,105,97,104,112,94,113,101,98,109,96,99,103,105,103,94,106,99,104,85,105,98,108,99,103,106,109,104,100,109,110,105,110,96,94,109,99,98,95,91,102,98,89,103,89,100,107,91,93,103,103,99,99,101,91,104,100,89,102,98,113,100,95,116,96,103,103,104,104,75,99,112,92,99,94,109,104,111,105,102,97,88,103,84,90,109,108,87,101,105,99,107,106,108,105,104,84,99,116,104,99,94,98,94,95,114,114,96,101,87,103,109,101,98,104,113,104,98,94,99,96,97,101,107,100,115,118,80,129,109,104,110,108,98,100,100,98,96,107,112,104,100,98,100,99,121,100,106,102,99,113,105,109,109,98,99,103,108,94,97,104,113,96,95,107,112,96,109,103,109,117,99,96,107,90,95,96,119,112,100,109,96,103,103,107,105,99,100,121,113,102,110,116,110,101,98,120,103,106,107,99,92,116,106,99,110,95,98,99,111,87,111,109,102,109,115,98,124,105,102,111,102,111,102,108,104,113,108,104,113,106,109,99,102,96,112,101,114,107,108,108,109,109,107,100,116,97,119,116,113,99,98,104,101,111,109,108,112,80,116,95,105,104,105,99,102,106,104,103,106,104,105,96,112,112,102,106,91,115,95,108,114,113,111,102,96,108,102,115,102,106,107,95,96,97,118,101,100,106,92,101,115,108,74,99,99,105,89,107,109,100,108,103,106,105,106,105,106,80,106,102,108,109,104,90,107,114,106,105,104,94,103,106,98,92,104,117,99,105,113,91,102,98,105,101,103,105,99,112,112,97,105,95,102,95,98,94,104,114,106,75,115,109,102,94,67,113,109,113,104,107,93,116,104,109,104,95,101,100,101,111,101,95,79,113,93,101,100,100,91,98,88,127,97,102,104,101,98,100,115,106,111,116,119,91,102,114,115,119,100,102,123,112,113,103,104,104,101,103,106,112,104,98,98,93,100,97,106,99,101,106,97,105,89,105,111,90,98,93,102,103,106,67,102,94,99,101,91,109,87,100,100,103,109,96,86,102,109,91,108,103,110,94,109,114,111,105,94,92,112,91,101,105,113,91,97,98,106,103,111,105,103,98,106,109,100,104,106,98,98,105,107,93,103,104,107,100,105,101,103,101,102,91,105,105,105,95,105,104,87,105,106,96,105,96,107,110,100,105,110,107,90,110,98,112,102,102,102,106,101,95,96,105,105,103,112,105,123,102,97,106,100,106,117,100,117,100,101,87,110,109,95,102,127,99,117,106,104,105,101,100,107,89,105,103,98,110,103,104,117,94,94,105,103,115,97,105,92,102,102,102,108,109,103,105,109,101,113,110,110,97,107,112,90,103,109,117,96,124,96,93,105,112,108,108,109,95,99,116,100,98,104,85,113,100,91,99,112,97,99,94,109,106,99,111,97,98,116,98,116,100,99,100,103,102,116,105,94,103,99,97,94,101,108,109,102,111,104,102,100,95,104,109,96,96,105,91,94,104,101,110,102,104,105,112,103,101,93,102,98,103,118,96,116,97,100,116,102,116,115,95,104,99,106,106,102,96,100,102,103,101,107,111,102,103,96,105,109,116,99,104,107,98,99,92,108,95,106,81,92,116,112,113,99,76,106,93,98,117,110,104,96,109,109,113,107,98,110,99,100,109,105,98,100,99,113,115,107,106,103,108,100,101,97,109,115,98,99,111,119,107,104,95,122,111,112,105,99,102,88,105,106,96,103,91,109,95,106,97,105,111,117,101,110,98,109,99,112,105,98,113,108,108,113,99,103,100,101,115,103,98,96,105,97,109,96,87,98,122,105,117,100,108,101,101,111,110,84,95,109,110,110,106,106,108,103,108,112,106,109,113,106,104,106,95,104,99,97,110,106,102,112,109,95,107,105,93,100,108,98,100,107,77,115,100,100,94,112,104,98,115,77,91,112,110,111,99,104,101,105,98,100,108,100,99,99,99,98,102,106,108,108,108,109,120,104,96,84,91,108,113,104,108,97,82,116,98,99,113,108,93,114,97,105,108,109,96,103,106,87,116,102,116,94,102,106,104,90,113,99,100,109,102,99,98,95,98,108,100,95,101,93,109,96,108,113,104,97,101,103,108,106,115,107,103,94,94,87,101,108,94,106,100,98,108,94,101,100,91,104,95,98,96,100,100,89,111,97,96,96,99,107,104,99,99,93,98,100,104,98,102,110,113,98,106,87,114,86,106,108,92,91,92,111,98,89,104,102,94,98,113,99,110,84,99,109,92,103,111,106,103,111,115,97,107,99,107,92,103,106,88,91,109,80,98,104,110,110,96,100,93,101,98,105,103,102,95,99,102,101,113,100,94,102,97,110,94,88,108,117,93,108,103,107,112,103,118,110,96,95,102,104,96,96,112,100,109,95,105,101,109,90,93,105,94,115,112,120,123,104,107,96,93,98,88,92,100,106,107,91,99,108,97,98,113,95,84,111,104,109,100,93,100,106,102,127,97,85,92,81,108,93,99,99,98,95,104,101,107,83,104,89,100,97,87,98,102,95,92,113,98,93,91,109,100,101,116,91,91,96,94,100,98,106,103, +471.49976,119,107,91,98,103,117,95,99,99,104,96,86,108,96,108,99,103,115,79,113,103,92,99,97,103,109,95,91,122,101,91,80,110,96,100,78,90,101,107,90,97,104,91,115,92,102,96,105,103,89,103,102,110,96,104,93,107,113,118,94,98,111,103,87,95,106,94,90,103,94,95,103,98,103,105,91,91,100,109,108,119,100,96,92,103,97,99,110,95,99,103,104,107,104,100,90,109,105,115,92,100,97,83,101,93,100,104,100,97,100,97,102,107,101,107,98,110,111,110,98,104,110,100,100,98,92,108,99,96,103,105,110,103,110,99,102,89,104,100,101,101,113,88,104,96,94,106,95,107,94,106,100,120,93,103,103,109,107,104,109,102,100,104,105,103,109,95,96,111,98,110,95,109,93,95,100,98,100,95,95,91,105,96,112,99,102,115,104,106,103,102,101,108,117,109,114,107,100,85,105,113,105,99,114,99,99,104,97,115,95,109,113,106,94,102,100,92,106,101,103,107,114,109,96,97,102,100,102,111,115,99,100,91,96,99,104,95,107,107,97,105,95,104,105,101,102,107,106,103,99,108,110,115,104,107,102,107,111,101,101,99,115,115,99,99,104,111,113,99,100,104,114,115,106,87,106,113,117,121,98,101,113,106,112,98,107,108,108,99,94,105,95,110,110,104,103,101,106,113,115,103,99,96,111,103,97,116,103,102,115,104,100,97,109,99,114,98,91,103,103,110,94,102,116,105,107,109,107,103,103,113,99,102,99,103,111,110,102,103,103,95,80,101,108,111,108,103,100,120,116,114,103,105,115,110,107,114,92,106,121,113,103,83,93,102,110,119,107,97,107,114,114,92,95,94,105,119,102,114,108,114,110,88,109,99,104,93,104,115,95,114,98,100,119,98,102,101,108,107,106,99,106,102,100,102,95,90,101,108,99,88,95,106,110,101,96,119,107,100,106,105,97,101,110,102,102,109,100,103,118,94,103,106,94,99,62,97,95,94,105,105,103,103,110,102,114,110,110,109,98,109,67,118,111,96,105,109,121,109,92,99,106,109,107,105,100,124,99,99,87,100,111,103,102,104,96,106,116,98,107,104,95,112,90,105,101,91,106,113,90,111,106,107,104,104,99,108,114,105,109,107,108,101,102,99,114,92,96,107,109,105,100,100,103,97,101,95,95,109,92,87,109,107,102,99,102,108,100,105,94,102,103,106,119,100,119,100,100,103,102,97,112,102,104,100,98,101,93,113,106,97,111,102,104,103,100,101,111,106,104,94,89,98,109,103,91,111,115,107,110,92,96,109,125,115,105,99,94,105,100,94,92,103,99,98,89,86,99,112,99,103,110,105,102,112,96,106,105,117,105,105,95,100,101,87,98,95,105,112,107,105,98,104,77,105,105,83,104,117,96,84,104,110,109,113,93,100,96,103,106,116,113,103,109,107,105,107,103,94,102,104,105,107,110,103,101,96,106,98,95,107,107,95,112,107,104,111,114,100,104,112,100,110,107,101,105,108,93,101,113,111,100,107,95,113,111,104,97,104,99,87,109,109,88,94,114,114,103,102,105,96,104,102,102,97,93,97,95,109,99,101,101,97,83,106,118,113,111,100,110,114,98,106,96,103,93,98,104,109,93,98,110,108,119,103,99,86,97,118,113,99,117,105,100,100,105,108,113,109,109,103,106,100,114,109,105,109,100,118,110,110,106,99,99,103,99,116,98,101,95,106,96,110,105,88,99,96,104,101,96,109,108,106,90,103,97,89,107,100,95,104,96,103,113,95,98,110,111,103,113,108,113,108,104,106,114,106,87,101,105,101,107,100,96,115,108,104,102,102,107,116,99,83,105,94,117,104,102,108,113,101,125,103,109,110,94,115,111,112,90,101,101,92,107,103,108,104,98,103,112,93,113,102,97,102,113,109,83,110,98,109,119,97,96,100,101,100,102,98,112,108,109,104,109,91,104,103,105,109,108,115,110,117,102,107,106,94,107,111,106,107,112,104,100,108,97,100,116,105,96,101,113,107,117,112,101,100,120,85,111,114,104,106,108,108,97,109,91,101,95,113,86,89,106,106,107,93,98,107,106,106,122,93,110,115,106,95,104,102,107,88,117,101,99,86,112,94,98,103,112,109,114,73,104,104,112,120,96,101,111,102,103,98,101,110,112,112,103,92,106,109,100,104,91,113,102,104,105,102,105,106,109,103,109,89,112,107,108,98,101,109,112,105,110,100,98,104,91,106,97,112,104,97,100,109,98,106,118,103,111,100,108,90,99,138,99,108,101,99,109,95,113,101,100,107,105,101,95,98,103,106,116,103,95,112,110,107,100,104,105,104,117,102,95,107,105,100,105,87,111,94,110,100,102,100,100,91,96,93,92,105,101,95,106,110,113,100,98,104,97,105,103,101,108,93,101,94,98,104,90,95,116,99,123,115,104,83,110,100,113,104,92,107,99,113,105,100,107,103,95,112,111,102,102,96,103,109,102,108,115,105,101,105,98,105,108,115,104,103,116,104,107,103,102,103,105,97,106,83,98,109,107,102,101,95,93,87,102,111,96,97,110,108,98,114,105,96,92,112,113,117,98,99,105,100,107,99,96,109,94,117,116,114,95,110,91,104,114,107,99,91,109,106,89,105,105,73,88,107,100,95,104,118,105,111,110,95,115,118,105,109,98,101,111,109,111,104,106,110,107,106,112,107,104,96,108,107,104,102,107,105,117,95,98,106,114,109,100,111,123,112,111,111,96,124,107,113,108,99,100,105,105,97,106,117,100,102,112,92,99,103,105,94,116,95,113,100,96,104,95,103,98,103,104,97,106,106,110,110,96,111,104,102,116,106,105,110,110,99,108,120,85,102,125,105,104,115,104,99,92,108,105,102,112,108,112,102,117,98,113,94,94,113,111,99,114,113,117,116,106,103,106,105,127,111,96,106,95,98,110,109,107,106,96,108,101,116,105,100,110,105,102,110,103,103,120,106,108,112,97,109,110,96,96,123,94,126,104,107,99,101,101,103,105,107,117,102,104,97,96,80,105,108,93,88,106,94,94,100,99,116,109,104,106,97,105,102,96,97,99,107,108,96,98,120,91,115,95,106,95,113,101,112,115,102,95,102,107,105,107,109,96,109,100,118,102,98,96,97,100,98,99,91,111,104,108,99,105,111,103,112,108,96,105,99,97,107,104,108,106,93,98,107,104,112,98,103,94,101,111,115,116,100,107,104,101,116,91,104,105,104,99,103,114,107,109,110,100,92,83,106,102,115,111,94,96,94,111,112,95,112,98,104,73,96,104,108,99,103,111,99,111,110,96,109,92,95,96,115,101,100,105,109,107,106,103,102,101,109,93,112,107,100,98,106,113,104,110,103,92,95,97,93,113,104,104,101,101,114,98,98,101,109,105,77,101,96,105,104,102,95,97,104,107,102,102,98,90,102,105,105,103,106,100,104,95,107,106,113,109,104,109,104,101,101,104,95,94,114,101,107,113,113,103,106,106,98,117,108,97,106,104,110,108,104,103,109,110,99,101,107,104,110,105,113,112,101,108,98,111,118,100,99,108,97,100,106,103,120,103,110,111,99,112,106,102,96,113,109,105,100,104,95,99,102,91,106,106,102,99,104,112,110,101,99,98,100,108,110,101,103,114,104,107,103,96,107,124,101,96,106,118,98,112,98,109,107,120,96,109,100,99,109,112,101,96,102,102,100,87,113,101,103,101,109,106,108,99,108,108,102,101,120,106,89,108,94,94,103,100,101,106,102,102,102,101,94,102,128,117,103,98,101,107,92,106,109,99,111,111,108,106,90,97,111,113,107,96,113,115,104,99,121,90,100,99,108,113,102,94,97,105,101,112,104,96,110,95,88,137,105,112,116,105,98,102,106,102,107,114,94,102,103,103,98,98,101,103,104,84,110,108,111,102,109,110,107,94,100,100,103,100,103,109,105,113,104,99,113,111,105,104,101,104,102,107,103,94,110,106,104,106,101,103,106,95,108,117,96,105,116,104,94,115,110,111,103,97,106,117,117,98,103,99,105,101,100,106,101,110,114,110,111,95,95,102,106,102,109,99,108,95,108,110,108,114,102,109,105,100,99,109,90,92,101,114,93,112,106,112,104,94,110,105,70,103,106,105,105,114,106,109,97,104,109,103,100,107,102,94,102,110,108,107,115,109,94,110,97,107,115,103,103,115,106,120,113,105,97,113,112,103,97,100,96,102,94,101,118,99,95,89,106,97,101,110,102,110,112,104,104,106,99,102,116,97,101,98,94,109,99,115,111,94,99,102,94,99,100,128,98,110,105,102,100,105,116,98,96,100,86,64,96,100,109,102,111,105,101,103,129,105,99,96,105,107,108,108,95,100,98,125,121,109,102,74,119,111,102,110,102,88,99,117,91,115,100,113,106,106,112,94,108,101,109,98,102,95,100,113,98,108,101,97,87,94,102,104,110,109,104,104,113,98,91,74,114,97,89,107,95,107,102,103,96,105,100,106,106,94,115,92,113,109,108,109,116,113,109,105,114,103,94,95,102,106,111,117,104,102,109,101,110,90,94,111,105,92,93,92,97,104,93,108,114,105,91,108,98,118,93,105,104,105,110,96,104,98,95,110,104,110,105,103,99,100,115,106,133,104,109,102,99,92,104,99,109,93,111,95,110,96,91,108,102,91,94,96,108,102,112,98,102,104,106,111,117,96,107,101,92,107,113,111,111,107,94,103,101,105,108,96,114,108,98,91,101,103,96,113,95,95,114,119,115,106,105,103,115,92,100,97,104,117,110,106,104,101,115,125,101,104,98,105,97,106,99,112,97,93,93,105,89,103,95,99,71,100,98,103,106,90,105,106,100,115,99,112,96,109,107,104,105,98,95,105,109,96,101,96, +471.64026,109,111,98,105,103,104,106,100,92,107,104,125,107,99,99,104,87,91,99,96,105,101,96,91,102,116,102,103,105,109,88,109,100,93,106,108,95,117,105,100,97,103,108,111,103,110,87,110,106,113,98,106,96,99,120,105,105,103,99,101,109,108,92,99,89,106,100,115,83,97,108,97,106,99,95,102,91,87,92,100,103,94,86,103,108,100,105,113,109,101,110,102,99,96,98,95,100,112,102,108,101,112,101,95,87,95,92,99,95,92,99,110,116,99,110,123,112,104,98,102,108,99,108,103,97,112,117,96,108,108,103,107,105,102,105,99,105,102,106,104,103,104,110,115,98,90,100,100,106,92,110,107,121,96,100,104,117,104,105,95,105,92,100,116,111,97,98,113,101,76,96,105,109,98,104,107,109,97,112,108,105,104,98,108,115,97,98,94,112,97,106,97,122,98,119,105,102,105,96,125,108,110,102,97,84,111,108,92,102,116,90,112,101,99,101,109,117,105,94,108,94,105,94,102,102,97,101,90,107,118,100,111,112,108,109,113,109,99,108,110,99,101,106,103,90,117,97,90,108,90,109,115,106,96,121,109,99,102,96,107,104,108,106,102,101,113,96,103,111,119,105,106,133,100,106,105,105,107,99,101,98,95,99,108,105,104,106,104,86,107,102,105,110,114,106,108,116,89,95,94,101,104,105,103,91,107,112,108,98,112,91,101,117,100,110,107,98,108,101,103,98,86,100,106,97,94,73,97,102,105,105,112,100,110,112,112,98,108,102,112,99,114,102,88,103,107,102,97,99,116,102,103,99,101,103,87,108,103,109,107,92,102,108,105,107,104,93,101,108,121,117,114,100,101,100,112,113,95,113,102,110,99,104,99,100,110,93,100,108,108,112,104,95,92,90,102,104,100,103,107,112,96,109,105,129,100,89,100,110,99,89,99,106,102,110,105,99,99,100,102,95,110,107,95,119,98,87,105,98,106,95,104,94,98,91,92,99,103,104,95,91,83,110,113,95,104,101,107,104,109,102,100,105,104,109,98,122,101,109,105,95,99,102,96,100,115,99,108,90,102,103,100,96,95,100,95,106,116,109,109,101,117,101,101,104,100,104,116,105,113,109,99,97,96,94,95,91,99,102,94,110,103,99,96,101,104,101,105,109,103,109,101,102,118,100,108,101,94,105,105,104,120,108,97,106,101,104,113,114,113,103,93,101,108,106,116,116,104,114,106,109,111,102,104,108,109,94,98,101,99,98,99,100,111,94,90,112,82,99,105,98,104,108,112,110,117,112,110,117,114,103,123,102,100,106,107,100,105,113,100,112,109,103,108,95,107,102,118,112,103,114,102,104,104,100,111,100,106,106,108,109,100,106,97,100,80,104,106,118,91,116,106,105,114,107,100,116,97,84,102,104,97,117,100,121,109,106,99,110,114,95,108,96,109,98,108,113,105,122,103,103,99,97,92,86,100,94,100,105,105,105,105,104,100,104,110,113,91,94,99,100,113,105,102,91,107,120,103,104,113,110,109,111,96,94,105,83,110,101,104,99,99,105,105,100,107,107,108,92,105,113,106,97,101,120,113,82,101,110,93,98,110,102,106,100,114,101,112,94,99,113,125,103,96,95,101,93,115,87,90,108,96,111,98,104,90,107,104,111,107,101,110,107,100,110,116,100,106,117,99,95,105,91,101,104,99,107,104,99,102,104,97,101,113,104,98,105,107,116,99,94,103,100,105,106,128,101,105,106,92,109,102,98,99,109,118,110,109,98,102,107,84,101,118,108,102,108,109,103,103,108,97,101,104,101,104,99,96,110,101,92,90,101,104,105,103,120,109,109,99,105,110,98,107,117,111,102,107,104,103,107,104,99,114,110,107,101,98,98,100,107,110,107,92,96,113,95,102,111,102,115,108,104,105,97,113,102,95,87,87,101,104,112,95,102,111,111,113,100,107,91,107,104,112,99,112,101,105,113,109,109,103,99,115,107,111,103,94,126,115,102,105,105,109,102,107,107,111,100,112,95,107,110,104,96,100,104,108,109,96,99,110,107,99,102,108,105,103,103,106,105,108,103,108,107,83,103,100,102,112,106,107,95,128,104,79,108,112,105,101,105,102,96,100,93,108,110,94,102,107,110,110,104,115,95,113,116,107,97,110,108,108,107,104,96,99,94,110,92,101,141,104,111,96,113,106,89,94,107,95,100,109,105,113,98,103,108,105,102,104,100,110,101,96,106,94,105,93,92,79,107,99,113,116,100,104,99,104,96,123,106,101,95,109,104,95,107,102,88,91,93,122,106,123,105,113,92,106,105,92,121,105,106,72,109,111,102,116,117,108,96,99,112,97,108,96,106,102,89,102,98,99,102,99,96,86,111,114,104,107,101,102,97,107,98,102,100,117,100,100,98,113,99,99,104,97,104,108,113,109,105,117,107,108,98,101,99,92,100,101,101,101,110,105,100,104,72,100,110,95,106,101,113,99,93,97,117,103,115,120,97,102,71,105,109,123,102,87,110,104,93,106,105,110,117,93,86,100,98,121,102,117,96,102,104,111,109,95,113,113,103,118,108,110,112,100,107,102,98,93,109,112,96,105,100,106,107,96,83,103,99,112,115,105,130,116,103,104,103,92,112,96,104,100,110,109,119,109,103,109,100,94,103,102,101,98,95,100,103,100,97,103,93,115,100,104,111,100,108,106,104,107,91,123,107,120,93,104,110,108,105,112,109,110,108,99,100,93,116,106,108,102,96,109,108,101,99,117,106,97,111,108,106,111,108,102,111,97,108,97,82,108,101,112,100,99,107,105,121,105,101,87,112,92,90,111,107,104,113,116,105,95,106,106,100,94,109,112,94,119,107,99,105,103,103,109,107,109,93,88,109,101,109,112,105,99,108,107,90,124,112,117,109,108,95,117,107,104,107,100,105,105,107,104,116,112,115,111,109,108,102,94,113,103,105,105,106,112,98,113,102,99,87,117,112,105,109,100,101,108,99,113,97,103,98,104,113,108,103,98,119,100,88,106,109,108,116,97,120,96,106,100,107,107,127,98,111,101,104,111,107,107,109,100,105,103,101,109,99,106,104,110,102,97,107,102,106,112,101,90,109,100,113,111,98,108,112,110,102,102,101,101,127,94,109,98,102,102,105,101,108,99,109,98,101,98,112,106,105,112,105,112,101,106,110,99,108,108,105,121,97,95,99,102,93,105,102,106,113,104,100,106,108,107,106,115,100,85,110,101,107,100,96,110,104,113,108,109,112,110,98,104,117,104,106,106,105,106,99,118,102,98,110,116,109,107,96,96,109,100,103,104,109,105,106,111,98,103,82,109,101,98,92,96,114,104,106,109,98,115,105,93,102,97,96,106,86,101,105,100,106,108,100,100,105,97,103,99,100,97,108,106,109,107,93,107,109,119,84,107,87,102,101,102,97,101,109,103,106,97,101,98,93,98,105,105,107,102,104,101,106,124,108,103,100,107,96,103,103,104,109,106,99,112,108,104,111,108,113,99,95,111,105,121,93,104,99,104,109,105,103,108,106,102,99,108,97,103,99,116,125,113,101,113,95,113,100,71,121,94,99,107,93,98,96,111,102,104,105,102,79,97,98,110,114,93,106,102,94,110,111,99,104,103,102,96,96,104,111,102,97,105,115,102,96,104,103,101,100,112,97,112,99,101,83,97,114,100,103,100,96,102,98,104,96,109,109,84,103,97,108,94,117,97,107,96,109,98,110,117,98,88,102,99,104,96,106,109,100,104,106,93,110,92,102,95,111,95,106,93,102,107,99,107,103,95,95,102,102,108,105,100,106,105,83,71,98,101,107,112,119,103,99,107,95,116,113,91,111,96,104,114,108,108,93,105,106,97,111,97,97,99,110,106,105,98,96,99,100,109,107,95,95,108,117,106,101,100,101,128,110,97,109,101,103,102,105,111,95,93,108,105,99,115,96,107,111,107,106,103,104,110,101,123,99,107,82,108,94,106,120,92,95,109,115,105,98,106,113,113,110,92,107,115,101,104,116,98,109,103,115,97,100,104,114,104,99,109,110,106,102,98,104,106,98,100,112,110,108,88,123,108,98,100,109,108,112,101,102,111,99,99,106,92,91,112,110,115,109,107,105,87,97,118,93,103,101,112,110,98,104,107,109,91,106,108,103,101,94,104,116,105,115,121,106,120,117,113,96,97,113,103,99,92,100,102,98,114,108,110,105,101,110,98,101,107,115,107,96,104,93,101,104,100,95,106,92,98,102,104,105,104,108,99,118,100,105,94,103,95,97,93,100,108,106,91,103,99,87,101,102,107,116,118,104,103,94,107,103,98,111,101,100,92,104,104,102,109,111,119,91,102,111,89,91,101,98,101,99,110,106,101,107,116,109,101,99,105,107,104,89,98,102,107,92,113,117,108,103,94,125,106,105,99,101,87,91,112,91,106,106,107,100,106,110,96,109,91,102,103,99,102,92,117,108,92,81,121,94,101,84,103,108,109,105,98,93,103,68,95,98,105,72,103,117,110,98,103,94,108,104,99,104,104,104,103,104,91,80,112,104,102,107,102,101,100,101,106,102,91,100,108,115,99,117,104,98,99,114,112,113,95,103,114,108,102,107,98,102,105,105,101,107,111,106,106,106,99,103,105,109,98,113,108,103,107,104,100,102,112,95,112,96,104,111,95,112,105,94,106,101,101,104,103,102,112,105,105,100,113,107,103,103,101,104,104,119,98,103,104,96,112,113,94,97,91,97,110,103,117,100,98,102,90,101,108,109,98,98,108,99,90,99,91,104,95,95,100,95,115,101,97,111,92,111,97,100,97,92,109,98,97,83,97,84,95,100,92,98,98,109,114,97,96,97,102,102,76,115,103,98,97,84,98,91,112,103,99,113,90, +471.78076,96,97,97,105,104,101,103,96,104,90,91,108,101,96,100,110,100,104,116,117,92,65,98,100,91,96,111,99,104,89,102,105,95,111,96,105,109,86,108,100,92,111,93,127,110,103,97,121,102,94,94,96,110,95,99,91,100,102,114,97,91,105,102,103,111,74,100,99,100,100,105,103,100,100,111,103,99,105,94,92,97,99,109,110,108,103,104,100,96,102,112,102,109,103,104,100,109,95,108,111,120,110,101,95,106,105,87,102,86,92,101,108,101,99,98,102,96,103,114,108,102,98,126,91,108,116,84,102,119,110,107,95,96,104,98,109,104,102,108,102,105,107,100,102,93,99,106,103,117,112,98,92,102,96,103,101,111,99,100,101,94,96,117,97,102,111,110,108,111,105,98,96,90,106,99,97,110,99,107,105,83,104,112,107,103,89,95,91,109,98,100,106,114,88,109,98,103,88,100,104,99,101,92,97,115,100,99,96,108,112,96,105,107,111,105,95,89,100,100,87,109,120,99,106,98,94,99,105,106,98,97,101,112,99,106,109,107,108,104,114,105,105,119,105,99,99,108,119,101,112,97,94,95,107,99,109,98,105,93,101,108,110,106,93,98,99,112,108,105,114,98,100,94,107,103,104,102,121,102,111,113,114,96,108,94,99,114,89,100,102,97,89,134,92,84,104,100,107,100,107,107,92,108,107,100,107,106,103,98,121,90,102,99,107,100,106,94,91,110,103,99,102,98,110,99,108,95,92,126,114,83,102,96,102,101,120,112,94,104,106,99,104,100,112,113,106,102,104,108,101,81,98,115,109,109,111,111,112,98,112,100,104,94,103,96,100,104,102,105,116,100,98,96,102,110,99,105,94,101,114,97,103,98,105,103,94,88,97,100,100,103,96,101,116,87,100,93,105,117,110,105,107,102,97,100,97,96,105,101,115,101,93,100,98,89,102,105,107,98,107,96,104,90,95,97,106,98,98,106,115,101,103,102,94,104,104,102,106,82,106,97,95,98,105,113,106,95,99,107,118,99,107,100,109,100,110,102,92,100,99,97,97,96,99,109,103,106,117,72,101,118,104,102,101,101,96,105,110,106,112,104,95,112,100,113,95,116,104,116,118,109,109,108,107,91,95,97,94,109,121,114,113,101,112,102,107,90,86,103,92,120,114,99,110,116,99,93,105,98,95,90,89,99,101,101,105,102,98,102,106,95,99,105,101,107,93,103,95,98,106,94,108,102,106,105,101,103,111,100,108,103,114,103,99,104,108,124,114,98,99,102,121,102,113,99,107,122,101,101,92,97,100,106,87,112,107,99,100,102,105,105,105,98,113,106,100,120,115,111,99,110,100,101,99,110,100,103,107,95,95,108,95,94,101,99,102,100,105,100,109,113,102,103,118,102,104,108,96,106,93,103,92,99,109,116,108,98,105,112,107,101,112,94,114,102,106,96,126,88,113,117,99,100,112,100,88,114,91,103,118,94,99,108,95,102,108,93,110,88,106,111,84,113,107,95,106,117,105,105,100,116,112,109,101,100,105,101,96,111,94,112,116,108,102,97,101,101,95,108,100,135,107,90,113,117,96,98,116,105,93,97,98,87,99,87,110,100,102,94,116,94,115,109,114,109,98,102,99,103,111,114,103,111,100,104,108,109,109,131,118,104,101,101,107,95,96,93,88,71,102,101,93,111,102,99,109,110,101,92,106,106,102,116,99,121,104,113,106,105,73,100,109,103,108,94,102,104,104,108,96,101,108,111,93,120,110,109,104,104,102,106,107,99,112,102,106,90,108,103,104,105,105,102,105,110,118,109,107,113,105,93,95,100,105,106,89,105,98,103,102,108,106,99,108,70,112,100,96,124,101,114,106,109,104,106,108,118,96,94,101,104,98,95,114,97,120,110,134,91,103,109,108,104,105,102,105,101,98,114,101,92,92,105,103,102,99,111,100,104,95,109,97,97,108,105,104,102,95,101,110,99,101,109,115,104,98,105,89,100,106,113,97,102,106,95,101,91,112,104,101,121,102,102,115,109,97,110,101,93,107,109,116,108,113,99,106,93,109,103,92,115,108,104,107,102,97,100,104,117,102,110,115,106,118,97,103,105,111,100,98,103,113,99,102,105,112,119,106,109,105,118,109,103,96,98,128,109,112,109,112,95,99,105,113,112,105,103,104,75,100,114,92,104,90,110,98,95,108,100,118,97,98,104,115,102,111,106,100,102,101,103,97,103,102,111,109,110,101,99,110,114,116,91,105,94,113,97,118,101,103,102,102,94,98,103,94,105,98,103,104,113,97,104,107,101,95,104,82,104,119,100,97,104,103,101,111,91,95,104,106,100,122,105,106,117,98,109,96,117,104,98,101,92,94,98,109,103,106,108,104,103,100,100,102,102,103,96,94,98,102,99,103,99,99,100,104,98,104,95,82,98,108,115,99,101,109,107,100,104,101,87,109,94,106,135,123,88,104,105,95,112,112,100,113,96,106,106,99,113,94,102,96,112,103,109,113,120,116,98,99,102,121,109,100,113,110,94,105,102,98,103,108,102,110,111,101,125,94,101,120,103,118,105,96,99,112,99,101,100,101,99,103,95,82,105,107,107,98,106,106,113,106,113,99,115,104,113,97,123,99,102,101,103,99,108,118,103,99,115,100,110,96,112,108,106,102,101,98,107,110,100,107,93,115,106,126,107,113,98,104,95,97,107,106,102,96,106,87,104,97,110,104,108,108,105,96,102,109,90,108,104,113,102,102,87,108,113,109,120,101,100,111,105,97,105,98,104,109,94,102,111,121,100,115,110,115,103,100,99,105,106,113,114,105,98,103,105,99,132,110,90,110,111,97,97,109,120,117,94,118,106,100,113,116,119,103,105,107,101,104,111,101,107,106,113,110,101,113,99,101,118,113,112,100,99,99,101,113,108,101,102,107,109,95,120,99,102,106,99,107,108,99,95,94,108,105,110,107,101,98,116,105,100,105,105,110,105,107,110,96,113,106,93,94,113,107,112,111,100,108,105,99,100,115,106,109,106,106,97,113,107,105,111,102,101,104,109,98,109,106,111,109,99,105,98,106,95,102,99,96,105,115,113,108,103,95,126,88,102,108,86,111,94,113,100,112,99,120,110,100,106,106,115,112,99,112,106,88,122,105,91,106,98,102,119,95,112,98,110,106,103,107,100,105,104,103,105,96,101,110,97,103,107,79,100,98,100,95,110,99,103,99,103,93,92,105,103,113,109,104,111,106,97,109,104,106,104,112,107,95,103,103,95,107,98,111,94,104,111,97,96,96,103,98,108,106,106,91,97,106,107,87,97,88,113,109,92,89,103,102,106,94,107,107,99,101,103,98,104,99,97,97,102,102,98,110,98,90,94,103,102,102,103,97,109,100,94,112,113,105,94,101,101,104,90,98,105,112,107,100,98,100,95,96,104,101,108,103,105,110,112,103,96,98,98,120,90,107,107,110,110,102,99,108,103,117,95,105,109,109,112,119,113,112,108,109,101,101,101,91,96,117,102,108,102,102,125,95,98,99,98,119,99,104,121,107,100,110,108,118,111,121,101,101,107,103,102,101,97,111,98,109,103,103,101,106,103,95,95,100,97,116,102,104,97,106,104,100,111,109,111,115,107,96,107,99,106,92,106,112,112,102,96,110,92,103,91,99,115,83,108,106,105,102,104,100,103,109,111,94,104,94,109,108,102,98,99,109,111,95,104,104,116,106,101,100,108,113,116,114,105,106,103,102,107,117,103,105,107,104,99,106,107,102,106,107,103,92,97,112,111,113,96,111,85,96,105,113,108,106,112,100,106,110,101,110,104,106,103,118,111,107,101,114,98,105,123,102,104,116,84,104,99,105,117,113,96,118,110,114,87,100,101,106,111,105,117,97,97,117,108,102,100,113,107,88,102,98,101,106,114,109,99,100,91,102,97,106,107,106,113,104,102,110,98,101,104,98,100,106,103,101,105,116,107,98,103,115,106,117,105,99,106,112,113,102,88,96,89,95,114,92,113,108,108,106,105,103,101,103,98,94,100,114,113,103,115,108,110,90,87,87,93,102,105,108,110,112,108,110,97,119,104,97,98,112,95,112,92,104,101,105,117,99,107,103,119,99,102,108,121,95,116,107,98,113,96,101,101,103,103,110,106,105,110,88,95,106,104,97,99,93,109,100,98,95,82,106,112,112,110,108,98,106,102,96,111,94,108,86,102,105,100,113,95,95,101,107,93,109,101,91,101,108,109,105,95,113,114,105,105,91,114,105,96,104,100,93,100,113,97,99,103,95,95,117,107,115,97,106,104,107,113,108,115,115,99,99,105,108,100,108,108,106,99,102,105,98,109,96,98,107,113,103,95,104,99,98,113,113,111,98,111,113,105,99,100,116,95,98,107,99,102,104,95,108,93,101,102,96,115,107,101,99,104,108,95,101,98,103,111,113,104,121,113,112,105,94,101,118,109,97,111,102,94,97,103,97,102,108,92,110,88,97,97,101,103,98,109,98,98,86,95,103,104,101,106,126,105,101,102,96,94,103,96,99,102,109,91,109,103,97,108,106,108,115,110,108,98,96,108,105,109,100,113,103,91,106,105,112,103,92,107,108,114,106,93,102,107,97,102,104,110,106,97,110,119,102,107,108,101,101,96,97,128,94,105,99,100,108,96,92,111,97,98,97,92,99,96,101,106,109,113,106,103,107,104,88,109,95,103,104,96,106,99,110,84,103,107,107,98,104,92,98,94,98,102,108,117,100,107,100,108,106,112,107,106,96,91,105,109,102,103,120,110,113,105,102,100,109,106,91,77,107,107,133,105,104,94,102,102,105,102,108,93,99,107,96,108,106,96,105,108,98,104,101,98,90,98,102,95,85,100,104,83,126,104,107,104,106, +471.92123,86,103,107,95,84,102,105,97,97,95,98,88,97,95,107,113,104,112,100,102,93,103,101,103,105,109,99,80,109,117,97,112,102,99,110,110,108,108,100,95,104,100,107,92,103,89,101,103,103,120,98,102,105,109,113,120,92,95,107,92,100,102,95,92,111,102,103,108,103,96,102,99,106,99,92,115,101,92,107,106,101,111,97,99,101,95,91,105,109,96,103,98,104,102,102,87,78,98,98,94,92,105,107,108,103,99,98,108,101,78,112,119,94,93,94,100,107,110,91,122,97,95,95,88,100,111,109,91,106,114,104,116,93,94,100,92,96,94,98,97,105,110,102,104,89,95,101,98,90,91,114,97,108,105,94,98,112,94,95,96,100,113,110,103,110,103,102,105,107,97,97,101,100,102,94,81,104,100,75,102,104,101,94,118,89,108,107,93,126,96,102,93,106,98,100,100,105,100,95,91,102,105,98,104,102,103,106,113,106,105,106,95,99,112,100,108,109,105,98,98,97,108,103,106,106,104,104,99,112,98,78,107,101,98,99,112,103,99,97,97,119,95,102,101,91,99,112,95,98,102,104,103,91,114,103,100,119,91,106,104,94,99,102,91,93,105,103,100,105,104,108,102,105,106,101,100,100,109,100,104,101,109,108,97,104,110,102,98,114,104,99,96,106,110,101,111,102,100,99,103,106,113,105,109,111,116,115,107,98,94,96,104,100,94,110,99,102,106,101,96,97,98,109,98,104,98,107,99,110,101,115,105,95,91,117,101,98,101,106,111,89,106,106,109,101,112,106,116,115,114,101,100,101,108,107,103,98,105,109,104,91,106,99,99,103,75,125,108,98,100,108,114,115,111,109,94,111,108,103,102,105,109,91,109,102,102,107,70,103,98,102,105,80,109,103,102,90,95,105,104,106,102,92,96,108,102,104,102,106,101,95,123,110,110,101,97,105,101,105,109,100,98,100,100,100,86,107,100,102,107,104,102,106,98,100,100,92,103,109,99,101,100,114,107,93,97,99,101,98,108,99,94,91,106,105,106,102,92,100,92,88,104,98,106,106,101,100,91,90,109,113,106,103,104,95,103,103,110,108,104,97,104,105,108,102,110,103,103,101,97,89,104,104,94,103,100,88,108,99,107,107,105,101,105,97,110,96,100,111,95,109,100,99,94,97,122,108,79,97,100,90,102,98,111,102,112,115,104,114,112,101,103,103,98,91,111,98,90,114,106,92,100,99,91,106,101,97,91,101,108,103,104,98,100,109,94,107,91,91,91,99,122,95,98,87,93,107,102,105,110,97,100,127,110,106,92,94,99,108,102,98,96,106,98,104,104,103,109,106,100,109,102,106,99,118,112,94,109,110,98,111,91,106,95,110,113,98,93,95,100,113,105,95,114,117,91,95,104,97,103,114,105,109,86,108,112,98,108,109,99,113,103,105,104,83,103,97,88,114,109,104,108,97,103,102,117,117,114,96,111,97,112,109,94,91,102,103,119,110,103,106,108,105,105,96,107,110,100,107,101,110,107,108,90,106,116,109,98,116,113,104,99,97,105,106,101,104,98,99,104,95,107,105,115,110,105,94,109,109,100,83,106,107,99,102,110,105,109,114,103,113,92,100,115,96,104,104,109,115,99,103,95,108,102,117,98,101,98,101,120,113,109,109,99,93,103,94,106,105,107,100,100,107,104,106,101,103,114,96,106,103,101,96,104,95,106,100,108,102,99,110,100,98,108,106,106,93,108,110,105,84,110,97,104,108,110,110,103,118,114,103,110,100,98,113,106,101,108,109,104,102,108,85,110,104,110,104,98,103,100,105,93,100,110,113,97,102,111,115,108,120,102,117,104,101,108,107,108,105,101,95,109,112,107,110,129,105,98,98,102,112,98,112,113,109,101,99,107,107,107,108,103,106,121,101,105,103,100,108,96,100,83,106,89,107,112,116,108,111,96,120,92,94,107,104,107,100,103,108,96,103,109,100,116,103,96,97,91,103,100,113,99,105,111,101,105,100,103,75,110,109,115,98,103,110,95,103,126,99,114,105,113,103,96,107,86,100,97,69,106,99,102,107,111,109,95,103,109,95,101,102,101,116,71,94,99,106,95,112,101,109,95,110,105,99,99,97,94,113,100,110,107,106,100,106,104,110,91,96,106,106,102,109,110,109,96,103,106,106,108,105,101,119,105,105,121,107,102,100,103,102,101,104,95,102,105,99,88,93,114,94,117,112,99,106,93,108,99,98,107,99,108,95,98,109,105,92,106,101,105,102,100,112,101,114,99,121,106,102,104,104,107,106,104,99,115,99,98,97,82,99,103,86,89,103,108,103,98,117,111,97,100,102,96,114,87,98,106,107,98,106,96,90,99,91,103,101,106,99,104,104,102,100,83,106,121,109,101,97,107,105,105,92,108,93,92,99,99,108,105,97,121,115,103,105,112,93,111,101,104,108,109,95,104,101,114,93,105,130,104,90,103,112,92,95,115,112,92,127,115,115,106,117,100,101,94,114,91,106,99,84,106,113,108,101,119,93,95,94,112,95,109,101,101,106,93,116,108,100,105,111,108,107,106,98,98,104,117,98,99,101,114,110,124,110,94,120,105,103,140,116,110,108,109,112,103,116,94,107,104,115,90,103,102,99,101,101,100,119,108,102,114,108,98,104,113,106,109,112,97,104,101,108,89,95,103,116,94,92,103,117,105,108,113,100,114,107,106,106,113,104,100,105,71,111,104,97,95,103,102,102,109,102,100,103,84,103,102,102,100,97,102,103,117,103,106,108,95,103,112,100,103,96,98,105,95,108,89,109,108,124,99,113,109,113,102,105,105,100,110,105,103,107,102,98,109,101,102,97,112,116,103,94,113,111,89,99,105,104,113,101,103,108,100,109,104,109,88,93,104,111,106,107,115,104,113,101,114,101,102,135,113,104,109,103,106,109,96,89,103,106,109,113,109,88,97,98,102,97,113,117,96,106,90,100,104,101,106,108,107,109,102,100,119,113,102,112,110,113,102,105,106,93,111,112,107,107,108,96,110,106,106,104,94,92,98,112,112,107,101,112,112,104,110,105,101,108,112,116,106,110,106,105,107,100,102,106,103,100,117,108,106,108,108,106,98,102,98,95,102,99,96,98,106,108,93,117,101,97,101,98,99,96,105,105,103,107,90,104,115,109,103,96,106,91,97,107,80,104,93,107,85,116,103,103,107,102,111,108,103,140,103,111,86,110,116,102,117,110,107,111,101,102,121,102,110,117,104,102,103,105,95,105,106,103,100,113,102,97,96,98,105,111,104,101,104,121,113,101,101,103,102,101,113,109,109,102,100,100,121,108,106,104,105,111,102,95,96,114,106,108,100,118,115,110,106,102,112,97,102,102,102,94,98,108,104,86,103,106,108,99,99,100,108,99,105,117,105,111,108,103,103,100,113,92,103,108,115,102,96,92,113,100,102,101,111,111,101,106,69,106,96,122,101,94,105,124,107,116,99,105,130,100,115,100,99,112,106,113,111,108,101,103,113,107,106,111,90,112,77,111,102,101,111,100,102,108,105,108,107,105,98,104,100,107,112,71,117,101,98,100,100,108,114,102,105,109,110,103,106,94,100,90,98,87,108,106,102,106,125,93,95,99,93,109,102,106,99,109,103,112,100,96,102,117,106,103,131,106,96,100,100,97,107,103,100,95,107,74,103,97,106,121,106,113,85,109,107,131,103,102,95,93,104,116,105,112,125,103,101,102,100,99,95,95,102,111,108,114,102,111,99,106,109,133,104,100,112,103,107,93,104,107,120,117,108,100,107,91,109,115,99,102,100,114,119,94,104,107,107,106,120,103,104,108,111,112,111,117,102,110,104,102,106,106,116,98,92,109,103,104,99,92,94,86,94,95,101,94,94,98,103,91,110,109,102,100,105,99,103,107,112,100,101,116,114,89,113,104,96,102,109,99,112,94,100,105,109,103,108,99,115,92,113,116,100,104,106,90,103,104,102,99,90,108,92,94,94,110,108,99,104,116,98,112,110,103,93,105,96,105,95,98,99,107,102,97,101,110,94,106,99,98,113,101,102,104,102,105,94,103,107,71,106,121,114,110,115,113,109,115,107,113,89,103,110,118,102,100,109,109,91,107,92,103,104,88,103,96,107,95,120,104,100,95,102,105,108,106,106,103,104,120,113,84,104,109,112,113,92,77,97,95,117,106,97,102,104,100,106,85,108,106,105,96,105,108,112,105,103,99,99,106,110,92,105,105,98,103,117,109,117,106,105,100,103,104,86,97,104,108,104,95,109,103,99,104,100,103,115,117,107,104,111,107,92,91,108,104,103,97,89,102,106,105,111,99,113,109,98,95,115,100,102,111,96,106,101,111,115,105,124,100,81,94,104,89,108,102,110,99,91,105,105,94,104,110,99,96,109,125,96,97,107,105,110,96,102,100,99,105,101,103,98,115,105,104,107,94,97,99,98,102,102,102,102,113,113,95,92,104,120,106,112,96,95,100,113,108,97,98,92,96,104,113,95,99,100,97,107,99,88,87,98,99,100,101,103,96,114,95,114,120,87,99,99,108,110,102,108,101,91,117,103,102,103,98,100,106,100,113,108,103,102,102,102,102,105,102,112,111,89,104,98,107,102,113,100,107,104,85,109,101,102,89,104,102,91,121,100,96,87,97,103,101,107,91,111,72,103,104,105,87,109,94,106,101,105,110,112,85,105,100,103,102,98,98,93,115,102,93,107,86,75,104,99,100,106,96,100,98,99,99,102,107,103,130,94,95,103,123,98,119,91,102,97,118,94,103,102,101,104,100,98,109,108,98,96,97,108,93,103,88,100,102,104,95,93,114,103,105,96,100,116,99,105,102,101,110,94,110,88,108,114,91,107,97,96,94,87, +472.06174,94,105,102,96,86,86,99,97,102,101,90,96,99,105,89,97,85,101,97,111,106,110,100,106,104,101,104,89,109,107,106,92,111,105,106,99,122,103,98,91,96,104,99,108,100,101,100,104,102,117,98,98,96,84,90,104,98,89,115,91,103,106,99,100,103,102,117,87,104,104,101,90,109,114,101,103,94,103,103,112,103,108,120,95,100,98,105,106,107,105,105,97,82,96,106,111,104,93,97,93,104,104,109,96,100,102,86,108,95,102,118,103,116,103,92,103,101,99,102,99,97,94,99,98,102,117,107,99,114,106,108,102,91,106,102,106,105,104,97,100,100,105,97,83,115,104,101,102,114,103,105,90,119,83,97,107,104,105,101,104,101,91,101,102,98,94,86,93,94,94,98,107,97,94,113,105,111,86,100,107,100,101,99,106,114,100,108,96,110,103,109,101,103,109,116,117,116,90,89,109,105,104,109,95,116,80,101,103,95,100,95,100,104,107,94,87,102,108,105,115,114,111,112,99,106,93,102,103,102,98,100,117,100,96,121,106,102,108,105,110,110,100,114,86,108,102,100,94,104,99,111,103,110,88,93,98,87,110,90,98,94,97,100,96,106,102,100,101,104,100,107,98,102,109,96,94,103,106,104,101,102,102,101,119,99,100,96,105,100,107,96,103,109,103,95,112,104,105,118,107,110,109,108,105,98,101,106,101,110,104,103,115,94,105,101,102,100,99,102,89,104,96,109,101,99,100,104,101,108,124,99,111,96,100,103,106,79,92,100,99,91,109,103,101,103,108,95,120,101,116,103,104,99,108,102,102,105,115,100,115,104,89,100,96,104,114,103,109,99,107,107,103,102,109,127,87,113,106,102,111,120,105,103,107,109,104,98,95,93,88,97,107,102,111,104,79,109,105,103,116,100,102,98,88,101,101,107,106,108,117,97,108,104,100,100,92,83,91,95,106,99,101,91,98,101,108,107,102,96,99,97,110,106,90,99,100,101,109,104,98,101,96,95,110,99,114,113,106,107,108,105,101,101,105,104,106,101,112,106,101,109,92,117,107,115,99,109,106,107,97,94,111,105,102,110,101,107,107,111,96,98,107,121,101,90,97,108,98,99,108,110,102,113,102,101,101,100,114,100,102,99,108,99,110,104,93,98,98,77,96,105,105,113,106,101,105,103,104,106,104,101,111,101,101,110,111,99,103,109,105,110,101,97,105,108,106,109,94,101,105,100,97,106,99,110,99,113,107,121,112,109,92,113,119,95,108,103,102,104,104,97,108,93,106,90,106,104,107,101,102,104,108,106,98,93,97,101,90,103,99,110,97,98,111,107,100,93,121,102,103,110,110,106,102,106,106,115,104,107,105,109,101,126,95,105,107,99,112,111,93,107,102,82,117,106,104,101,99,112,109,110,103,109,105,107,110,104,96,134,106,106,97,91,102,102,137,102,101,101,116,110,108,101,107,94,104,102,88,108,102,103,104,105,105,104,115,88,101,81,107,103,102,103,113,89,108,110,100,112,110,122,102,112,106,99,103,109,106,88,93,109,118,116,100,101,103,102,98,102,112,100,112,101,95,109,108,101,93,121,99,96,105,107,95,108,105,100,102,81,104,116,112,65,103,112,101,96,122,115,123,110,93,103,95,105,91,109,97,103,97,108,101,97,94,104,104,107,108,110,90,104,115,98,108,107,86,109,95,108,101,103,126,102,105,104,103,99,104,100,117,100,105,95,110,92,103,98,113,100,113,113,97,98,109,105,100,102,106,99,100,104,107,96,108,88,116,97,110,99,101,107,116,104,109,115,98,112,110,109,107,97,107,118,94,109,96,104,111,105,105,119,103,108,99,111,106,98,103,99,95,105,120,103,107,111,102,100,108,104,105,102,96,105,109,102,100,103,95,114,107,93,95,107,91,104,98,112,102,108,98,94,99,100,115,110,112,102,110,121,103,105,112,99,81,103,95,106,111,94,109,101,114,102,128,96,107,95,88,118,95,95,102,114,118,92,108,118,108,110,103,99,105,109,111,104,106,101,94,108,97,100,102,110,97,114,105,100,97,87,97,99,108,101,103,99,104,99,101,104,96,104,101,109,109,101,96,113,106,112,98,86,100,102,111,109,105,92,104,108,102,108,93,108,108,102,109,105,104,110,105,106,99,110,109,118,102,106,103,102,106,110,97,105,93,83,99,110,98,102,98,107,92,82,96,106,106,116,99,114,97,102,108,87,100,104,79,103,99,102,101,108,102,101,87,104,105,106,107,98,99,104,108,81,108,102,94,101,107,92,113,92,88,108,101,111,100,98,106,113,96,101,116,108,100,113,94,109,101,115,99,112,94,106,119,100,97,100,117,128,99,104,101,105,115,91,98,93,112,98,97,100,104,101,109,96,97,89,100,105,108,95,90,97,106,103,107,113,97,98,97,105,117,106,115,93,107,101,103,91,101,107,98,99,103,89,97,101,95,109,96,95,100,106,107,95,101,107,97,117,103,97,86,100,111,106,96,110,112,112,95,96,101,105,93,106,97,115,105,96,112,99,101,102,101,109,109,96,115,120,100,95,109,99,84,101,96,106,100,105,104,103,95,99,112,119,104,96,115,105,105,93,116,111,107,87,101,99,97,97,102,102,104,98,81,105,121,100,96,109,108,91,99,112,83,94,101,115,108,100,103,106,107,106,103,96,104,102,99,107,103,100,114,115,102,105,124,108,100,108,106,97,102,106,90,111,102,103,104,103,106,99,108,95,107,72,97,97,108,101,88,117,108,99,98,108,99,107,111,99,110,103,108,95,113,103,98,106,110,97,100,107,106,106,98,99,108,111,106,111,114,106,100,112,95,103,99,105,106,98,107,107,102,104,102,105,105,103,117,112,95,111,103,105,102,108,97,101,106,99,100,102,109,116,106,108,103,104,96,96,112,105,110,104,91,109,105,107,78,101,95,109,105,98,105,117,105,109,112,100,109,97,102,96,87,101,108,104,96,95,104,109,98,108,102,115,104,111,103,99,95,110,101,105,103,99,101,100,110,108,100,96,100,108,113,112,99,97,104,96,100,101,108,105,101,106,102,102,101,100,101,104,111,105,97,98,104,107,102,108,101,112,100,99,111,99,98,86,104,103,105,108,100,107,109,107,97,113,97,94,110,111,108,109,111,105,104,95,100,105,102,110,92,97,104,106,115,101,103,112,100,99,110,100,109,113,104,105,109,132,103,103,107,99,95,103,101,104,103,106,100,92,109,114,107,121,97,99,109,108,101,103,108,100,101,100,108,107,105,108,91,100,96,123,111,96,112,110,107,105,102,103,108,91,108,103,94,95,104,95,99,104,92,102,100,101,108,119,100,105,110,103,95,105,111,98,92,102,101,109,98,112,107,101,98,120,108,116,95,91,116,95,102,92,104,92,104,117,98,102,103,98,103,109,99,90,73,112,98,99,97,66,107,98,107,66,112,100,101,112,97,113,103,103,114,97,99,107,103,98,105,90,103,115,103,106,100,107,104,96,94,109,109,101,105,98,108,106,110,107,96,95,123,109,94,99,104,94,106,94,112,120,103,98,87,102,102,77,86,108,86,95,105,114,111,108,112,102,105,109,105,116,105,95,98,109,97,125,103,99,110,102,98,102,116,120,97,106,74,102,105,96,105,101,104,101,97,103,106,109,108,108,102,106,103,112,105,102,113,103,96,104,99,110,103,106,94,104,101,101,105,102,110,102,101,121,106,101,109,96,95,110,102,100,108,115,99,98,121,96,95,126,106,103,101,104,112,109,95,113,104,99,103,97,98,96,99,99,107,95,104,110,108,110,107,105,107,104,99,105,103,99,113,107,92,110,102,109,99,96,108,96,97,99,103,98,103,105,105,95,109,104,77,109,101,100,107,99,95,109,129,107,109,95,121,102,95,114,91,101,99,108,102,95,117,101,114,114,103,99,107,102,109,111,98,104,102,102,101,98,103,110,99,123,104,103,101,98,105,105,111,103,111,105,106,102,95,94,99,100,111,115,106,105,105,108,99,109,99,106,106,113,104,90,102,106,114,101,107,108,110,115,95,108,98,109,114,98,91,103,97,105,101,97,106,110,110,102,104,91,101,113,100,96,113,95,124,104,92,110,103,99,96,102,105,125,111,103,92,123,98,106,103,84,101,105,97,103,100,100,98,111,99,109,95,102,111,95,107,98,107,105,104,89,95,111,110,103,87,95,100,99,96,105,114,99,111,81,115,104,112,101,100,108,101,107,102,101,109,107,106,114,103,107,96,108,107,102,101,98,117,121,113,113,104,113,92,112,99,103,112,109,112,100,92,117,110,88,105,106,115,104,96,95,103,110,109,108,95,101,104,106,104,91,119,95,111,110,109,105,119,105,109,85,104,100,107,99,110,95,104,105,109,103,103,101,100,101,108,109,100,107,98,94,94,89,99,92,109,94,112,99,108,105,102,104,93,94,103,101,109,90,93,111,78,110,109,105,109,93,100,99,103,103,107,102,102,103,100,100,95,95,100,99,97,106,102,113,112,111,102,104,117,102,121,102,103,101,117,100,112,97,106,96,95,91,101,102,92,97,96,111,86,105,82,106,102,102,84,111,93,103,111,99,103,103,104,104,108,99,112,102,99,108,101,117,112,99,103,108,100,101,104,104,96,98,109,98,98,101,98,95,84,106,97,97,94,111,105,98,98,107,98,95,104,109,100,103,97,89,73,96,103,109,99,100,106,118,92,97,100,115,97,103,115,88,100,94,101,106,102,111,108,94,112,114,92,115,105,102,110,94,79,101,99,107,99,88,111,98,108,100,85,106,102,106,95,105,99,96,106,97,103,101,95,88,102,97,118,108,98,96,108,87,87,97,80,98,98,96,99,122,92,98,92,105,99,108,72,99,110, +472.20224,98,87,94,113,103,105,110,100,95,104,91,112,119,85,86,91,91,102,94,104,101,88,82,107,116,100,123,85,103,98,98,92,100,104,103,105,98,100,99,85,100,111,107,99,94,83,107,102,104,108,103,106,105,99,100,88,105,91,75,94,100,97,100,100,99,115,105,97,106,95,100,110,100,95,100,111,93,96,95,109,101,98,97,106,104,103,103,130,82,106,91,101,101,98,95,104,95,99,107,104,96,106,100,107,102,94,106,105,101,92,98,107,111,102,101,97,101,93,104,105,100,103,103,111,117,99,100,97,120,109,100,104,105,113,104,106,100,111,75,101,91,110,99,99,97,91,106,104,83,114,97,99,95,87,98,97,109,110,102,87,96,95,99,103,99,122,99,98,108,102,108,109,106,75,97,97,100,103,96,117,105,113,95,98,89,97,96,100,102,95,81,108,88,95,94,108,102,96,103,102,95,113,91,101,97,101,104,100,107,85,91,97,100,106,111,107,94,103,87,105,103,103,104,105,106,103,103,105,104,101,100,102,92,110,86,71,116,112,91,104,104,122,108,105,86,96,95,100,96,99,109,105,106,96,100,103,101,102,98,94,112,104,106,99,100,90,103,108,96,100,104,95,105,94,97,96,98,110,93,86,106,95,103,89,107,99,106,77,110,103,94,101,110,113,107,103,102,95,104,87,100,97,103,108,98,104,118,146,104,112,92,108,107,110,105,95,107,71,90,98,96,100,86,103,103,109,101,95,103,99,113,95,103,105,106,103,99,97,82,104,100,114,99,100,98,113,104,102,95,99,98,114,105,109,97,98,105,108,107,104,110,101,103,100,112,94,92,98,94,113,98,102,105,94,95,91,98,91,94,114,105,96,98,92,98,114,109,105,94,94,107,98,98,92,99,100,99,106,96,109,98,79,106,101,94,96,111,107,102,97,97,95,107,104,117,107,102,105,97,99,99,94,99,105,96,99,110,96,101,108,101,111,100,94,109,94,97,105,100,79,107,102,105,103,87,100,96,98,100,116,95,105,98,116,99,101,99,98,106,112,102,87,100,97,99,112,102,94,98,110,99,94,104,106,106,95,99,96,101,103,106,100,129,106,99,97,99,113,104,110,102,104,100,99,110,97,99,95,102,93,116,95,101,96,107,86,98,93,95,104,115,98,103,102,106,107,92,104,96,93,101,91,109,104,100,113,105,105,112,95,98,97,115,100,103,92,88,92,87,103,106,100,90,95,100,96,108,94,106,97,109,89,98,103,110,100,104,108,97,98,103,100,100,108,105,100,107,106,104,110,91,101,102,95,105,103,112,98,98,102,96,101,109,83,92,109,117,102,113,107,102,106,106,95,100,106,92,97,109,109,98,91,92,104,96,114,107,101,113,112,106,108,111,108,99,99,102,106,102,104,102,100,93,91,101,98,87,94,105,106,105,97,96,98,99,105,101,98,108,95,117,99,103,93,96,101,108,107,104,97,87,109,117,107,91,101,101,99,112,100,110,114,99,104,99,98,107,92,94,105,109,96,95,114,109,117,97,109,118,97,95,106,111,102,79,104,101,67,97,100,104,99,94,105,88,103,114,78,101,91,100,105,92,100,112,99,99,106,98,109,115,113,86,107,100,100,95,94,96,103,97,66,109,110,104,79,94,122,102,110,111,89,104,94,114,103,113,74,95,95,103,102,97,105,106,101,97,98,100,102,110,93,93,93,96,109,101,101,109,98,99,82,106,102,91,102,89,98,110,100,119,105,99,95,100,99,102,108,110,101,101,98,104,105,105,98,102,98,107,98,100,129,114,118,101,104,108,98,104,113,93,105,96,95,101,102,101,109,99,92,100,74,97,103,105,92,122,102,105,94,97,104,99,103,98,103,99,124,105,109,118,109,105,99,120,99,101,71,110,96,97,99,106,102,103,94,95,108,101,97,104,105,101,104,94,103,108,101,83,113,112,99,102,112,97,103,90,105,103,106,95,114,105,111,98,94,117,94,108,126,105,88,102,105,98,107,105,110,98,109,92,109,100,107,103,91,103,104,101,108,99,97,115,92,98,94,84,97,109,102,102,115,116,99,107,99,96,95,91,101,75,96,102,105,97,83,97,108,104,106,98,102,98,108,100,103,129,104,113,112,103,108,96,101,102,100,116,96,107,105,102,103,105,102,91,117,106,101,98,102,94,105,100,95,114,112,95,91,96,94,98,107,108,104,95,101,98,105,98,98,96,113,107,112,94,87,91,97,103,106,101,107,105,102,109,100,114,94,92,102,97,94,92,104,97,99,95,100,89,101,105,100,112,107,103,100,100,112,102,97,102,104,91,99,105,103,93,101,100,109,109,101,95,101,95,96,102,103,105,98,105,97,88,104,87,97,102,105,93,101,109,97,105,95,111,96,108,103,97,103,96,99,99,108,103,103,99,118,94,101,97,109,105,103,106,87,101,90,92,111,98,110,106,109,101,102,93,97,100,95,102,101,105,90,96,106,107,98,100,107,102,100,112,94,110,104,108,108,105,103,99,112,112,129,107,99,99,110,109,98,113,95,98,84,103,117,100,106,102,110,104,104,103,110,95,102,102,108,91,105,99,109,109,109,96,110,72,97,104,102,110,105,100,101,107,112,115,102,100,108,93,95,95,103,100,110,99,101,110,102,97,105,98,119,101,104,103,97,103,86,98,111,97,95,102,104,109,100,101,100,96,110,108,112,95,105,104,99,106,98,105,109,90,105,110,114,98,99,101,111,100,105,92,112,101,103,110,99,106,97,106,113,105,99,108,82,98,110,101,95,94,100,101,107,107,106,108,101,105,113,94,96,126,86,96,104,106,89,108,117,107,107,109,99,97,102,100,109,101,110,113,99,111,103,104,103,105,91,113,103,94,106,100,105,102,98,98,110,121,113,107,110,106,106,114,104,103,109,105,109,109,102,95,94,100,103,98,91,110,117,119,94,107,96,86,104,106,112,101,98,112,100,107,99,110,103,106,112,92,84,101,104,99,102,109,109,103,101,108,107,113,103,95,107,109,108,108,95,117,101,94,88,115,102,108,102,113,96,115,97,103,115,95,114,100,99,106,112,102,95,95,105,110,91,102,109,103,93,96,108,106,105,103,102,111,98,101,102,100,100,109,99,102,100,117,89,105,116,91,95,96,97,100,99,101,100,100,87,110,99,113,111,94,103,90,99,108,105,108,106,105,103,96,97,94,100,107,101,94,109,102,109,99,107,92,102,105,109,108,97,103,99,92,102,106,97,95,106,97,102,113,99,109,103,97,99,100,91,106,104,103,111,91,99,99,109,111,102,96,114,107,103,114,101,103,93,100,94,106,103,106,104,105,92,97,104,95,106,100,106,108,103,110,94,97,86,94,113,93,109,106,104,85,104,106,98,113,92,110,97,101,105,97,98,102,97,103,99,106,106,98,80,107,80,116,108,100,89,80,101,106,99,100,86,97,103,103,102,103,98,104,88,101,111,113,111,94,107,99,105,105,109,98,100,102,119,115,109,94,97,100,87,108,96,96,110,110,103,96,117,103,101,101,102,113,101,94,98,99,101,109,89,100,103,108,107,105,107,100,102,107,117,106,101,105,82,92,111,110,103,97,101,114,94,105,101,104,103,99,113,92,102,98,104,102,99,101,95,104,104,101,102,112,117,102,110,99,107,106,100,99,106,106,104,114,108,112,109,123,95,101,103,117,99,84,105,102,95,99,93,104,100,109,106,106,100,103,109,99,93,105,104,94,106,111,90,98,99,120,105,113,102,114,104,87,113,101,94,105,109,96,119,112,100,109,98,104,95,96,99,110,110,96,94,99,109,97,105,106,107,94,105,89,106,100,106,109,105,100,99,98,105,107,105,119,103,68,105,95,89,103,104,92,108,97,103,106,96,102,93,110,104,92,109,96,111,108,103,100,105,87,96,107,93,112,114,106,103,99,114,100,109,90,111,109,117,73,99,95,106,98,117,98,105,108,102,110,87,101,106,113,108,90,114,107,100,100,95,104,98,105,93,98,94,111,97,102,88,114,96,103,103,104,106,109,117,106,109,111,101,103,96,96,104,100,105,102,113,113,106,108,99,93,114,99,119,99,103,111,104,105,99,99,97,96,93,112,111,98,107,117,96,100,103,102,108,100,108,103,102,119,107,100,102,100,105,103,112,101,87,105,107,101,97,103,102,100,103,98,103,93,109,93,102,99,88,103,91,107,95,111,105,94,114,103,98,104,104,107,100,106,112,106,95,77,97,89,98,117,103,100,96,113,99,104,102,102,63,99,109,93,108,90,87,97,109,107,109,96,106,89,95,114,100,113,101,95,108,108,106,116,96,101,102,97,100,107,120,120,105,96,101,113,109,109,103,108,87,110,102,95,108,106,91,102,111,92,101,115,102,106,98,105,107,110,108,94,101,107,99,103,114,99,105,95,96,110,116,98,116,113,99,116,96,97,95,94,105,110,93,106,110,89,105,117,108,102,103,107,106,95,101,96,100,100,96,109,93,111,105,107,106,98,104,94,98,101,104,93,107,95,98,98,96,105,97,103,107,118,89,106,107,109,111,92,103,106,105,100,114,90,104,108,100,114,96,92,105,98,104,99,107,107,95,90,113,100,99,88,106,96,103,97,94,112,93,113,99,109,87,93,97,99,101,98,113,76,88,109,89,114,87,90,101,94,100,100,95,99,101,105,113,102,97,107,92,104,89,99,104,98,101,102,103,83,89,103,105,95,99,109,96,92,96,90,93,100,108,99,100,101,106,113,108,100,100,96,85,110,104,95,104,112,91,104,100,98,108,95,99,107,97,103,115,100,98,87,117,83,117,108,97,87,109,100,94,96,111,95,93,104,103,100,102,96,96,94,108,93,109,111,95,91,94,82,88,108,103,106,95, +472.34274,72,96,110,102,87,115,104,100,105,104,99,99,113,99,87,104,108,105,101,115,89,106,91,99,86,115,110,104,96,117,110,101,96,108,101,100,99,100,95,104,87,106,92,98,99,116,106,97,103,109,117,102,110,126,103,105,103,104,96,104,95,101,109,95,120,105,93,107,103,98,105,107,93,117,105,105,91,100,93,98,103,101,101,100,105,95,108,110,109,116,111,99,107,94,106,111,94,103,123,104,107,106,108,102,106,98,102,107,96,98,106,100,102,103,102,101,108,105,113,108,100,102,101,94,97,99,108,100,102,106,107,110,96,86,106,91,97,106,108,106,90,104,95,100,100,106,121,70,109,95,92,91,101,96,107,105,111,101,109,98,109,92,103,87,95,98,101,104,102,106,106,87,92,105,111,89,108,95,95,105,103,111,108,102,113,114,91,90,101,101,97,101,88,108,109,109,107,102,95,109,93,86,92,105,90,102,104,91,112,102,104,102,93,111,93,95,102,106,97,104,105,104,103,96,102,107,115,88,110,110,89,105,117,103,97,99,102,105,108,94,94,75,106,95,93,99,106,91,99,96,100,101,98,103,100,99,101,102,90,106,106,97,101,106,95,102,102,107,107,90,100,113,111,113,114,101,111,142,110,105,106,91,100,101,101,98,99,103,105,104,101,109,117,100,105,102,105,100,86,93,102,99,91,108,110,93,114,104,102,103,109,104,99,113,104,101,98,101,99,92,109,101,97,99,96,106,102,104,106,101,97,104,98,109,99,109,108,106,95,104,96,104,101,100,95,90,123,101,108,98,124,115,92,118,107,106,103,103,110,107,66,100,86,94,70,97,108,104,104,112,99,104,105,105,112,92,97,111,98,100,106,117,97,92,101,94,97,105,108,93,119,100,102,109,106,104,100,100,116,109,94,106,122,94,100,105,109,105,101,97,99,98,106,89,126,98,97,96,101,101,104,104,96,97,109,90,108,114,106,108,96,99,106,98,97,109,107,99,101,103,95,109,104,101,105,114,92,98,99,107,107,103,97,129,102,97,96,101,103,104,104,98,108,108,100,112,97,98,104,109,99,112,117,106,102,100,109,108,80,110,102,103,112,104,97,92,102,91,96,97,114,106,97,109,88,96,102,105,109,101,107,107,111,90,102,97,86,103,108,113,115,100,111,102,121,91,97,103,103,90,99,96,100,104,98,101,104,116,105,103,109,103,92,113,122,103,97,98,91,96,105,108,110,108,102,99,104,72,108,94,104,105,108,97,99,105,112,98,98,103,107,87,101,110,107,106,107,105,108,110,98,113,110,103,108,103,96,101,108,112,98,67,101,105,105,110,120,121,114,109,107,110,98,79,114,102,103,106,111,111,101,101,110,131,101,104,96,102,104,109,111,106,117,97,111,102,89,103,95,101,111,92,87,84,108,99,106,111,106,103,111,108,103,117,97,101,97,104,105,94,86,94,95,107,94,110,94,97,105,107,105,98,107,107,102,101,114,96,96,119,111,114,103,104,103,106,114,99,110,106,105,94,90,107,93,101,104,99,103,107,108,102,107,113,105,96,97,103,95,87,105,103,100,109,101,90,101,104,107,92,111,95,100,96,103,95,114,102,99,98,103,98,96,105,107,97,94,102,104,93,109,92,112,107,108,108,88,104,99,128,99,99,101,90,107,114,105,97,103,109,106,96,107,106,112,105,87,99,105,96,83,89,75,108,107,109,109,94,102,105,94,87,103,106,102,103,97,108,102,96,112,93,99,95,117,102,98,90,112,107,106,103,113,106,110,103,101,102,105,109,96,111,109,112,96,98,99,99,100,117,96,101,90,101,101,113,114,112,96,104,108,96,90,104,104,103,98,104,108,99,103,93,101,100,99,107,110,102,99,111,94,90,96,108,106,106,101,100,110,112,96,109,101,108,106,106,78,102,118,89,106,92,101,112,98,94,102,109,99,108,108,82,91,100,100,93,102,105,103,100,104,98,101,106,99,108,100,93,107,100,101,89,110,115,111,94,97,107,114,101,100,111,92,103,94,103,107,106,106,113,102,107,101,85,118,105,101,100,96,100,100,106,108,100,116,98,107,100,106,98,107,124,105,104,100,98,107,102,107,98,94,103,114,111,100,99,110,105,94,98,114,108,101,103,94,97,93,104,109,105,94,104,89,108,105,110,114,75,94,94,94,111,96,100,107,104,105,105,98,98,99,98,103,106,117,103,129,104,102,101,102,114,104,111,113,103,104,104,101,92,98,93,103,100,102,90,106,67,114,95,98,105,104,103,105,99,107,103,107,107,110,115,103,99,104,109,86,94,100,106,105,105,98,105,103,91,112,95,96,108,110,102,107,88,98,93,105,104,110,112,111,104,104,107,116,111,104,106,101,95,94,94,112,96,78,116,96,102,107,102,103,95,103,102,97,101,107,96,98,113,96,104,103,104,87,100,100,105,91,96,109,114,104,116,103,118,99,101,103,117,107,83,113,93,93,104,108,104,110,108,104,105,116,108,102,109,106,95,103,115,98,123,111,99,102,103,105,104,97,107,107,108,102,101,100,109,99,109,116,117,106,108,103,106,104,109,98,113,97,114,100,112,108,110,113,113,109,105,112,108,104,108,112,105,96,111,104,115,100,110,117,109,103,102,101,112,113,101,115,99,96,101,103,99,112,112,106,106,102,93,109,101,109,101,93,117,117,103,104,113,91,104,109,95,115,77,110,94,106,114,95,106,117,101,104,99,104,117,100,94,104,106,112,116,101,108,108,98,96,108,98,110,104,76,106,108,104,86,96,99,95,114,92,105,107,110,125,107,103,103,105,106,102,105,111,95,112,98,109,115,107,110,98,97,100,108,115,111,109,116,105,106,101,103,92,109,123,124,103,115,119,119,103,110,99,99,103,102,100,110,109,120,107,107,113,109,117,113,110,99,105,102,99,103,104,102,101,100,105,105,109,120,99,100,106,96,101,107,102,109,96,94,106,103,107,117,95,117,108,91,120,103,99,114,104,117,108,103,107,111,108,99,104,104,108,104,105,103,98,94,94,94,110,88,115,108,107,99,106,106,100,118,101,105,99,87,111,104,109,96,98,105,101,99,114,106,100,101,118,104,99,102,115,101,107,90,108,106,111,100,110,102,104,109,105,97,101,96,95,95,101,110,105,120,96,99,114,106,103,103,110,98,101,117,113,102,107,103,108,109,105,99,103,115,113,99,105,109,104,112,100,108,100,96,100,111,106,93,106,106,102,100,100,113,114,104,108,112,121,103,100,90,103,108,110,106,105,104,126,112,98,112,103,113,116,102,105,104,93,102,112,110,107,95,104,116,115,98,104,104,109,109,91,118,104,110,102,105,124,117,113,107,101,113,106,101,98,96,100,105,119,90,81,110,115,111,110,108,110,99,100,99,116,110,97,117,94,99,102,108,102,115,101,108,102,101,100,133,105,81,96,115,98,108,110,107,98,100,114,105,112,103,104,92,99,107,108,120,117,108,109,101,100,112,118,101,112,102,97,98,116,104,100,105,106,105,114,106,104,94,111,102,113,110,116,110,106,109,100,114,107,101,98,103,118,128,107,109,103,102,103,90,108,104,115,121,101,100,105,105,103,100,108,102,109,108,108,112,101,110,106,114,121,103,100,108,110,104,111,112,109,115,104,114,105,122,109,113,108,103,114,103,102,108,88,108,98,109,112,116,121,104,108,108,109,98,102,103,99,96,110,90,110,108,110,106,85,112,106,103,119,102,109,106,104,112,116,109,110,99,73,109,101,100,111,110,113,81,108,106,107,108,111,106,105,88,108,126,108,102,110,99,98,117,115,109,102,97,100,111,100,113,96,105,94,102,105,101,109,103,99,103,107,104,113,111,100,108,100,104,102,97,112,100,117,101,111,108,100,121,105,96,108,109,115,108,114,107,88,107,99,106,107,104,108,114,104,119,101,86,106,113,101,113,95,102,102,97,99,119,83,111,102,106,113,108,116,109,104,112,108,113,107,102,121,108,104,112,101,104,104,87,101,111,110,103,108,99,114,94,96,102,104,103,107,111,112,115,106,103,110,96,103,106,115,76,110,100,115,107,104,103,108,121,111,115,105,106,115,104,113,105,113,120,100,115,113,94,90,103,81,98,107,119,105,108,112,113,102,113,107,100,105,100,104,111,96,113,102,98,117,108,112,106,101,108,100,123,124,105,115,103,111,96,117,103,112,111,92,109,107,102,105,95,108,117,103,106,91,100,111,102,121,115,97,99,116,104,100,103,95,98,105,102,106,117,98,107,99,109,93,108,112,97,112,102,117,100,100,99,105,115,109,116,109,111,93,112,106,113,117,102,107,109,102,108,103,126,93,106,106,106,108,117,101,109,110,108,104,102,96,108,100,106,106,100,107,115,116,98,96,96,100,105,99,101,101,83,108,98,109,113,105,102,111,106,105,112,117,103,103,109,100,106,102,95,97,101,108,120,95,100,97,104,107,104,99,105,96,109,105,105,100,96,110,98,112,95,106,107,95,109,111,112,95,103,105,108,113,113,114,101,94,102,95,96,96,102,106,108,103,106,102,100,111,115,106,106,99,110,108,93,104,96,110,95,105,89,109,119,100,111,112,112,111,106,114,106,104,114,105,120,113,111,108,130,115,104,107,102,100,95,113,113,83,94,110,105,116,114,110,94,101,107,110,105,112,104,93,101,105,90,99,102,113,98,104,95,110,99,101,100,98,111,117,91,103,106,99,102,97,107,92,101,105,74,108,112,105,110,98,103,109,103,107,113,102,104,103,99,118,103,112,105,112,104,105,109,91,91,102,91,103,99,107,122,112,108,91,111,104,108,108,108,100,94,96,118,103,105,109,84,102,98,100,107,102,120,113,104,108,117,110,98,105,99,107,104,87,93, +472.48325,100,102,91,104,90,103,102,115,107,102,94,106,106,105,105,101,96,105,121,106,107,110,104,98,105,107,97,100,102,91,128,101,108,109,99,93,107,114,113,105,99,103,103,105,98,113,90,91,102,112,109,108,89,96,109,104,92,103,109,107,97,96,104,95,103,96,98,102,115,82,95,116,105,105,101,105,81,110,96,103,101,108,94,68,122,112,102,99,83,102,105,105,106,98,104,106,105,98,101,98,104,98,95,102,106,96,105,115,104,100,92,98,105,92,82,119,97,117,94,101,97,106,98,120,112,106,109,111,104,107,91,110,120,97,97,99,94,91,108,110,96,100,93,99,94,100,91,100,105,98,103,92,102,99,98,99,102,110,105,89,103,94,99,97,107,94,108,98,101,99,110,130,101,96,95,103,100,105,114,117,98,100,100,98,116,99,121,100,106,101,111,100,104,96,100,103,103,95,116,107,94,101,97,92,105,105,112,97,105,120,106,113,108,105,105,105,102,112,83,97,109,108,98,95,104,109,105,105,104,107,108,108,105,105,94,115,91,101,105,104,109,107,99,114,92,94,85,110,99,91,110,99,91,99,100,102,79,98,101,110,87,113,114,79,97,101,101,97,112,104,100,106,107,106,101,107,112,108,103,100,112,95,118,112,95,106,96,104,108,111,101,108,104,97,81,111,87,116,107,100,101,99,109,110,101,93,94,113,105,112,95,112,105,97,112,105,105,98,106,109,99,94,104,99,99,100,108,97,94,102,112,106,96,102,113,105,97,100,105,98,93,109,110,98,121,99,101,125,104,113,97,105,112,103,100,104,114,105,105,100,113,96,88,100,102,94,100,113,101,113,99,109,103,104,121,93,97,95,98,107,101,112,98,109,105,102,106,101,111,71,105,93,106,102,108,103,111,106,97,106,116,108,108,100,95,107,105,94,113,103,106,101,99,107,109,93,99,111,113,99,112,100,95,100,100,92,96,103,103,100,104,112,103,119,102,102,97,104,108,100,106,115,99,101,104,113,114,96,115,118,109,89,102,109,104,112,111,101,98,97,99,104,106,104,100,91,95,104,107,108,103,107,112,101,94,102,108,113,111,91,105,103,122,101,100,112,111,101,98,95,100,106,98,112,98,98,99,110,113,113,111,91,103,100,105,99,96,95,107,93,98,108,105,90,105,99,119,105,117,98,92,100,106,97,107,109,102,116,94,106,105,121,105,97,99,98,93,101,76,94,77,106,95,98,109,90,100,105,109,111,109,101,115,106,106,100,100,109,97,109,92,102,95,102,103,96,131,99,106,104,103,98,103,123,110,114,108,106,90,109,98,95,107,97,99,104,109,96,95,109,106,108,110,108,114,116,116,101,117,108,114,106,103,102,105,88,110,109,98,104,103,109,121,94,104,100,103,106,99,110,101,103,100,109,113,95,75,100,106,79,106,103,111,115,101,102,101,101,99,107,106,99,97,95,108,94,103,101,99,108,101,99,92,108,96,116,96,105,98,109,116,104,106,112,100,118,114,102,102,108,101,89,106,109,94,95,97,112,123,104,113,104,95,99,79,110,94,104,115,91,95,106,96,110,100,104,107,98,105,112,114,101,106,101,116,101,112,100,109,98,96,107,99,106,100,99,108,109,101,104,102,97,103,111,93,104,100,104,91,114,100,117,106,89,109,90,101,102,113,104,118,101,108,87,105,107,117,105,100,107,104,97,100,93,105,106,103,104,90,101,101,109,108,108,95,102,101,112,108,110,113,94,116,103,99,111,105,109,106,90,110,109,108,105,113,117,98,107,109,119,94,107,112,107,101,105,91,112,102,105,109,105,114,97,98,94,103,112,115,114,106,113,101,106,117,95,110,119,103,97,96,104,63,99,108,102,101,96,106,100,103,61,89,87,84,106,102,121,103,112,100,117,107,93,101,88,93,73,106,91,101,104,109,108,96,96,100,113,86,135,106,107,98,98,102,101,96,98,111,96,106,119,105,107,96,102,118,100,102,111,111,95,95,96,103,109,114,115,111,113,96,112,99,101,112,109,99,101,98,100,96,109,109,109,102,108,105,101,86,101,109,101,110,96,109,100,94,98,109,102,106,91,104,116,99,111,101,100,112,121,101,100,97,108,104,107,91,88,105,107,106,100,112,98,103,109,100,89,107,102,106,106,104,100,116,111,98,106,92,110,110,122,103,105,102,110,106,102,111,100,96,102,117,100,103,99,104,99,100,100,91,117,104,106,118,97,101,98,99,110,103,95,99,106,104,99,100,99,105,111,102,104,105,105,100,104,111,104,103,116,97,93,98,109,95,117,103,120,94,100,116,109,105,102,117,98,106,102,98,107,114,112,108,93,106,99,98,100,109,102,110,101,101,101,98,97,109,111,99,109,109,109,109,103,85,108,107,102,109,105,106,99,95,102,105,99,101,108,110,82,91,110,100,108,110,108,113,106,114,102,104,104,95,104,102,93,100,103,107,94,105,101,107,86,106,107,103,98,121,113,111,101,98,106,99,109,100,96,100,105,97,88,105,97,103,95,125,110,92,103,102,113,79,108,89,110,102,102,102,104,78,98,102,100,115,108,120,98,105,101,108,88,104,96,104,98,113,108,104,92,104,123,104,104,113,118,103,106,104,107,82,99,109,100,110,100,106,106,107,101,106,101,91,100,109,103,107,107,108,102,106,113,106,109,111,113,110,92,105,100,97,104,98,81,107,96,110,96,111,107,105,109,116,105,100,100,95,101,107,109,107,95,107,99,95,97,96,105,132,107,106,105,112,98,112,103,103,117,99,102,105,93,103,105,109,103,102,104,104,93,100,108,110,108,91,106,108,103,104,113,103,113,103,111,111,109,103,109,109,110,104,100,94,108,103,91,108,98,100,114,117,115,107,125,107,105,91,117,100,119,84,109,102,100,106,106,97,103,106,112,99,124,99,107,105,103,105,100,109,100,103,113,106,100,100,97,106,119,105,103,112,103,98,105,102,107,110,104,115,88,100,112,100,101,102,102,96,95,99,101,109,96,110,99,101,113,99,111,101,109,109,107,106,102,106,106,107,94,106,99,104,85,103,113,106,103,112,103,94,109,111,102,96,99,112,101,125,106,99,115,95,109,100,92,98,106,109,87,105,104,106,98,101,110,104,97,101,97,106,103,97,97,96,113,100,91,107,115,101,108,110,101,99,102,112,92,97,109,109,108,112,96,106,94,104,103,96,102,101,98,96,109,96,105,105,115,103,88,77,102,113,102,105,109,102,91,97,100,94,88,114,98,107,112,117,108,99,101,91,105,103,109,105,108,119,106,115,91,107,99,95,114,104,112,123,107,103,105,117,96,91,91,115,99,98,107,103,103,125,98,102,101,101,105,97,101,106,100,102,97,105,99,105,117,107,106,102,99,101,99,92,113,105,100,100,107,106,102,114,104,95,105,96,107,112,115,107,106,97,96,102,108,106,106,101,95,118,117,98,99,105,102,102,102,102,109,103,103,106,100,104,121,104,100,98,115,99,102,89,89,114,102,98,113,109,103,120,103,107,114,105,105,103,113,115,92,88,110,121,107,108,96,98,109,92,101,111,95,83,107,102,111,97,117,108,105,110,100,101,94,91,101,108,103,100,107,107,109,112,102,104,107,114,102,99,91,103,105,103,104,90,95,100,98,98,92,109,106,117,100,107,119,104,104,97,102,67,98,97,115,103,97,97,112,113,99,114,104,105,105,107,100,99,101,105,102,108,102,111,78,103,100,97,114,103,104,112,106,98,100,100,112,106,98,92,98,102,104,109,119,100,117,95,103,105,101,105,99,113,101,109,98,105,105,112,98,109,102,99,118,103,103,97,94,100,101,110,90,110,79,110,100,109,102,98,113,109,104,98,96,121,99,104,101,105,102,106,102,109,109,101,105,104,110,111,98,100,107,96,93,108,113,102,113,103,124,92,104,108,98,104,101,101,119,105,96,95,106,102,103,99,112,107,97,108,100,101,97,108,100,104,112,111,106,103,99,99,97,99,110,117,106,98,106,107,87,101,103,103,110,95,102,103,108,104,103,103,120,111,95,106,108,107,102,109,113,101,101,96,93,104,103,106,117,106,119,96,100,99,107,104,103,106,107,100,109,105,93,105,98,107,96,104,102,111,108,101,107,108,124,103,117,97,99,96,103,105,121,108,95,104,106,96,104,120,107,96,107,130,109,102,103,99,113,95,98,98,99,84,102,99,101,87,112,105,105,111,103,105,98,116,108,97,105,114,108,102,109,101,103,104,97,117,103,80,102,108,95,113,107,96,112,113,97,103,96,105,101,88,104,106,110,111,111,102,102,97,115,101,100,110,104,110,103,132,109,100,110,79,100,96,101,102,100,97,106,100,117,100,107,103,105,97,107,111,112,112,117,109,94,94,100,99,101,97,99,100,97,101,94,105,110,98,95,111,106,87,98,111,102,101,103,119,109,97,111,103,107,136,101,109,106,85,101,111,111,121,100,100,104,96,89,102,114,105,103,109,98,82,95,95,93,98,102,111,95,113,107,90,111,107,107,103,106,106,115,99,103,104,113,114,109,102,106,100,95,102,100,101,106,91,104,106,101,110,96,100,96,102,107,98,105,92,100,88,99,97,103,104,100,107,100,110,87,118,110,108,104,95,101,110,100,109,106,95,88,100,103,100,98,109,105,117,109,108,117,104,103,102,117,98,95,100,98,102,109,108,70,109,105,100,108,95,110,100,135,103,101,108,103,104,87,104,101,105,95,108,100,93,107,87,107,108,109,105,93,108,99,88,99,103,115,113,97,98,98,99,102,96,101,88,95,94,100,100,104,110,101,84,105,95,113,90,106,85,108,101,105,104,90,72,91,98,101,103,108,102,107,111,88,108,92,113,116,103,114,92,95,106,114, +472.62375,97,112,91,92,97,96,108,96,99,100,120,105,101,93,95,97,109,113,101,104,104,94,87,108,110,95,116,100,100,107,78,98,104,109,107,103,103,115,109,101,103,101,97,88,105,101,109,106,103,107,105,100,108,106,98,108,103,93,78,110,105,96,103,97,117,108,103,92,99,97,102,100,102,97,96,109,113,96,75,104,94,100,108,104,104,95,104,100,107,98,103,111,104,94,90,111,128,86,91,107,64,96,101,103,97,94,103,100,95,99,99,92,108,101,95,100,102,93,116,99,108,96,113,109,93,103,100,100,103,102,108,96,90,107,103,104,100,108,104,105,102,100,95,106,92,105,107,101,106,99,94,108,96,96,106,96,106,106,105,98,100,101,103,95,108,106,101,96,100,111,98,99,96,98,89,83,98,105,109,97,102,120,111,91,101,119,92,94,96,92,105,94,109,101,93,102,101,113,105,115,98,95,109,110,98,107,107,99,100,115,102,108,117,100,99,99,103,104,94,98,118,99,106,97,107,107,99,101,95,106,117,95,104,108,101,97,113,104,99,97,101,91,105,105,97,107,108,100,108,93,104,113,105,98,108,104,105,101,127,102,105,100,106,87,82,108,97,110,87,106,104,92,110,105,110,105,104,99,103,107,108,100,96,102,109,101,95,113,106,99,91,99,128,90,111,116,108,128,116,103,106,114,119,102,106,98,113,111,112,103,104,104,113,114,105,105,111,121,94,96,95,103,99,113,98,99,106,101,113,104,99,101,95,108,100,107,103,95,96,94,98,101,86,105,87,94,96,107,104,94,105,105,112,122,95,104,115,87,100,101,99,104,109,94,107,100,106,97,100,117,111,99,101,107,102,108,111,113,86,117,102,95,118,103,105,96,100,108,108,103,124,88,97,91,103,107,110,117,100,113,114,102,104,97,105,95,101,108,96,98,92,103,109,104,95,106,98,107,115,97,95,95,94,108,95,85,109,100,105,100,101,92,105,116,105,108,104,112,106,103,116,107,95,103,99,98,104,103,98,110,94,103,109,85,117,89,107,97,99,104,98,103,114,103,110,110,93,113,101,100,97,101,104,98,94,88,86,135,112,107,101,106,115,98,106,93,103,100,112,105,122,106,101,113,100,107,96,107,112,95,102,119,102,103,103,116,105,104,101,113,107,99,94,103,106,113,103,100,94,94,97,107,131,98,114,102,101,91,92,96,80,95,100,97,96,95,95,110,85,111,113,113,106,109,118,95,107,103,116,102,105,101,104,110,102,92,104,102,95,94,97,112,108,105,118,100,103,104,110,103,107,96,103,108,112,100,111,102,116,107,97,118,88,96,105,103,95,110,112,104,102,111,102,103,106,129,105,92,114,102,101,110,103,107,107,105,93,84,106,104,97,96,114,108,104,104,102,92,107,77,118,101,97,112,110,95,106,111,97,100,106,101,101,106,100,107,104,99,107,108,103,99,104,106,107,98,103,106,113,111,98,104,105,108,111,91,105,93,105,107,106,107,108,103,96,104,113,137,101,110,108,107,90,106,97,105,114,104,116,105,104,109,104,95,102,108,104,95,108,104,112,95,103,110,92,105,108,109,107,91,106,106,103,114,86,110,107,98,105,108,105,102,109,102,98,92,105,97,106,96,100,99,122,91,84,99,106,99,92,108,108,98,98,102,93,104,109,96,104,113,121,107,110,105,99,105,103,115,96,91,104,95,99,100,103,97,97,93,108,105,110,102,96,103,95,103,91,119,103,122,104,110,103,104,99,104,107,99,96,110,107,94,104,111,95,120,93,100,96,105,96,99,114,118,94,112,104,97,104,105,98,101,101,102,103,103,99,112,118,109,119,90,98,102,100,103,119,105,101,101,110,101,101,108,138,106,124,90,99,112,110,105,105,112,101,102,109,97,102,118,97,137,93,107,90,110,97,101,106,82,103,102,103,109,109,100,102,106,95,114,92,104,99,108,109,95,105,93,106,110,91,108,104,119,91,98,117,104,83,98,105,97,99,103,100,109,103,118,102,104,113,109,102,87,111,100,96,116,98,103,121,98,102,116,109,95,85,95,109,108,96,106,110,99,108,99,87,115,105,112,99,105,102,101,104,100,104,107,123,92,99,105,104,105,95,89,102,109,111,123,106,96,114,111,106,94,110,111,111,107,106,104,108,107,118,103,110,100,99,114,106,107,90,96,76,103,96,95,91,100,105,95,102,117,110,110,101,99,95,103,96,107,112,102,104,108,105,92,101,104,98,104,106,111,109,97,92,114,92,100,123,109,105,103,109,107,104,116,92,112,100,92,97,102,106,103,111,104,88,95,107,108,99,100,104,96,104,96,103,92,103,98,103,88,102,98,102,116,122,98,110,92,86,111,96,101,105,106,100,99,104,103,99,104,98,88,102,99,106,104,99,103,100,115,106,113,117,95,107,92,108,108,92,98,102,96,99,90,99,95,101,82,101,116,110,106,101,99,111,104,104,89,102,100,109,113,95,101,103,103,105,105,98,94,107,102,95,105,96,110,96,107,95,99,102,79,105,101,110,108,106,104,103,105,102,102,109,108,106,97,100,104,112,99,116,112,103,102,99,91,100,98,108,117,113,107,108,99,111,106,109,101,101,103,113,95,99,109,95,117,98,95,108,104,102,110,105,93,104,99,105,99,108,104,115,106,97,90,109,105,108,100,107,96,117,100,104,113,112,104,102,97,111,91,105,120,98,98,95,97,107,108,108,96,109,98,101,106,118,102,111,92,96,101,105,106,109,98,83,106,107,109,96,106,104,97,98,100,115,106,104,110,93,106,103,92,98,98,109,95,105,95,106,108,109,106,120,96,101,90,99,100,117,84,104,99,92,99,95,103,99,98,102,103,95,99,110,104,104,102,106,101,115,116,100,87,97,112,113,113,106,97,123,108,106,103,99,99,92,106,119,106,103,92,112,99,104,100,112,106,109,104,105,106,106,102,106,113,99,117,102,106,102,83,104,117,105,112,108,98,109,107,97,103,120,100,104,96,95,96,116,98,87,111,98,102,84,95,97,105,107,119,108,110,105,99,100,104,112,109,108,107,108,112,92,107,113,113,102,102,110,113,104,94,106,101,106,92,98,104,113,105,119,109,110,110,103,101,102,95,95,123,93,109,99,102,97,103,108,115,106,95,107,100,112,101,112,103,116,110,106,101,107,101,102,118,97,103,108,114,92,98,97,98,101,94,105,110,99,102,104,98,106,100,100,99,98,103,91,102,92,102,98,110,107,102,101,104,101,99,102,99,105,101,113,106,106,122,105,119,103,98,104,114,111,100,113,111,105,102,101,115,109,94,96,109,101,95,103,101,108,108,95,88,98,117,106,106,105,113,102,100,103,93,102,98,96,106,118,112,99,92,99,94,113,101,97,111,104,96,99,102,91,97,105,107,111,106,105,113,84,97,104,96,101,101,103,104,95,104,103,98,106,104,98,99,102,102,98,96,101,120,104,101,102,106,109,98,96,102,112,108,116,116,106,96,94,111,98,113,105,96,97,113,102,97,108,115,101,107,98,108,107,91,117,109,101,102,100,124,106,105,96,95,92,106,102,107,104,103,97,104,98,101,106,111,107,106,109,98,94,119,86,103,97,103,94,120,100,102,103,108,98,111,105,95,105,101,108,110,97,104,99,130,101,113,109,104,92,100,82,89,115,113,93,103,98,106,102,98,115,100,93,110,107,103,106,108,106,95,105,107,102,105,93,102,98,106,100,98,98,95,112,99,107,107,85,91,106,95,91,103,106,98,100,96,100,106,106,105,96,108,110,113,117,101,103,111,93,104,97,99,108,96,108,109,98,106,104,125,102,105,102,109,106,105,105,108,96,99,92,108,106,108,116,103,111,113,101,102,103,100,107,106,104,106,102,104,97,103,98,101,99,106,109,100,105,98,102,99,86,96,118,103,111,110,94,89,111,100,98,98,108,105,87,105,105,106,98,109,103,105,96,121,105,99,104,97,101,113,105,106,92,107,117,110,105,101,116,90,109,114,108,112,106,101,104,100,96,98,113,90,96,96,116,111,102,94,118,105,103,93,94,96,101,102,104,97,99,109,72,112,95,117,108,121,108,99,97,106,102,87,103,100,93,105,116,102,105,116,75,121,105,99,103,109,94,116,110,112,102,123,102,95,99,100,114,110,103,99,107,106,93,84,117,95,101,84,97,104,101,100,105,103,113,106,96,107,102,116,91,97,103,96,108,95,95,98,100,114,102,110,95,104,99,99,85,98,108,102,109,91,84,99,110,95,113,96,96,105,87,110,106,104,102,116,101,106,109,110,97,100,103,125,73,108,99,108,98,101,108,102,109,100,105,105,104,109,97,105,98,114,102,101,107,106,102,105,103,95,108,105,91,95,106,108,109,100,91,101,98,95,106,106,112,96,99,106,109,102,109,100,114,102,105,100,104,106,121,107,103,105,100,105,102,97,99,91,102,101,102,100,101,95,113,105,92,102,98,105,99,96,97,94,113,100,113,102,107,94,91,106,107,104,101,103,99,99,110,106,109,96,104,98,94,102,102,109,111,83,106,120,106,98,98,96,99,96,97,104,115,100,108,102,108,105,108,110,104,104,97,104,106,103,96,103,98,101,78,87,102,118,115,94,103,100,103,102,122,115,98,96,100,123,122,105,99,102,90,113,97,98,107,99,95,101,97,101,114,103,100,111,101,103,100,91,101,101,92,98,94,103,108,108,114,102,98,100,139,109,108,103,95,99,99,109,99,102,108,104,98,95,106,99,91,99,90,103,105,99,99,101,96,97,102,110,109,104,106,97,113,90,91,102,101,105,104,98,111,106,105,108,79,88,101,98,91,102,107,73,107,95,103,101,106,99,110,103,97,88,108,109,108,104,103,98,103,99,102,95, +472.76425,106,110,96,85,103,104,102,84,84,94,90,93,105,99,107,95,98,100,104,90,97,105,106,103,108,109,105,109,109,108,107,121,105,85,115,75,80,81,100,108,101,109,112,108,95,95,97,100,95,111,91,105,107,99,112,102,114,101,100,96,107,97,110,88,100,109,91,94,109,96,103,111,104,91,105,100,92,98,95,111,93,97,98,113,97,118,102,112,115,118,92,104,98,114,97,117,103,109,120,99,107,99,96,97,110,93,104,103,102,94,101,70,112,94,95,108,113,96,103,95,93,110,111,102,102,101,100,104,102,103,96,98,109,104,104,111,94,100,101,93,91,119,100,95,94,114,100,110,89,105,92,95,103,93,90,112,94,94,100,109,96,103,100,99,92,102,102,106,104,89,106,113,97,103,120,116,91,108,105,101,110,105,94,107,110,105,89,89,102,101,111,109,106,114,99,111,104,97,90,105,102,100,99,97,100,103,101,108,93,102,86,108,106,100,100,101,103,99,99,104,96,99,102,88,98,105,103,88,102,127,98,98,111,105,101,100,96,100,104,106,111,92,105,117,102,111,104,110,100,104,98,100,119,103,107,98,95,87,100,94,100,93,114,104,92,111,103,109,103,109,101,98,111,91,105,105,103,110,101,102,122,104,106,113,96,99,98,101,103,101,96,102,95,92,107,99,103,97,108,109,100,100,105,94,97,103,113,99,109,102,107,117,104,104,110,99,108,105,98,89,111,113,98,93,115,98,106,95,117,90,110,109,106,91,100,108,111,102,93,90,101,105,98,94,104,119,96,116,101,105,83,100,103,107,109,115,109,104,96,114,104,109,98,101,109,98,103,109,112,113,103,89,109,106,96,105,99,104,98,105,100,114,94,97,101,98,99,117,104,100,104,104,99,111,103,113,96,99,104,99,99,113,109,107,104,97,100,102,100,103,98,105,105,99,75,95,96,93,99,97,107,106,103,105,110,105,115,95,100,105,94,103,96,109,107,106,100,97,115,110,115,100,108,116,98,104,94,113,96,105,101,84,106,108,110,106,100,103,118,101,95,90,110,102,106,96,104,106,97,95,108,97,111,101,98,102,105,112,108,103,100,104,109,91,107,111,102,97,110,105,115,98,107,103,94,87,96,121,111,121,108,104,103,106,100,108,98,108,101,91,103,106,104,105,100,105,108,101,92,110,110,102,117,103,100,100,109,102,94,110,97,101,103,104,108,103,99,93,98,95,99,118,104,103,104,101,106,100,124,104,115,108,100,98,94,105,105,100,92,104,102,110,96,101,99,107,102,107,106,110,93,90,100,104,102,106,102,94,102,105,106,108,112,113,105,91,104,85,104,93,110,94,110,102,106,103,98,107,85,99,102,98,117,109,99,106,97,92,114,99,109,108,109,113,106,103,103,114,81,82,109,105,95,131,104,104,91,100,95,95,106,105,101,103,100,102,96,95,105,100,105,109,100,99,94,98,107,100,113,106,108,103,118,86,106,102,106,95,122,132,111,106,98,110,93,106,119,113,99,101,104,112,106,100,99,100,108,95,108,102,104,98,87,108,103,91,102,98,108,116,99,111,98,102,103,98,104,107,104,98,110,97,107,101,97,101,106,99,97,90,106,100,112,114,101,108,106,100,95,103,110,99,103,100,101,94,102,106,113,110,107,101,106,105,97,98,105,102,105,102,101,100,105,100,100,101,101,108,105,105,101,100,102,108,103,109,104,94,110,101,109,105,97,106,105,123,104,95,114,102,108,106,102,111,97,112,107,108,114,102,97,109,113,99,107,113,105,112,113,103,98,100,107,99,104,108,108,94,86,108,97,92,107,93,114,103,76,103,104,115,99,109,100,114,113,116,99,109,112,95,111,107,103,108,99,102,99,101,103,86,128,99,99,99,106,110,89,109,99,99,106,104,117,100,107,101,107,108,110,108,100,109,95,102,98,95,99,117,109,79,106,104,111,94,95,103,90,106,109,113,103,100,96,105,106,106,105,109,115,92,116,97,105,82,96,100,113,103,105,97,102,111,91,108,114,101,99,97,98,94,98,108,97,101,109,110,95,128,91,97,124,100,110,98,113,94,95,97,93,110,111,117,109,94,99,100,112,110,102,108,100,106,108,102,102,105,96,102,103,115,102,103,95,106,104,104,113,100,107,103,106,114,109,107,110,105,102,106,86,106,114,105,103,96,110,109,106,107,101,101,102,91,108,102,96,107,78,105,78,110,96,112,111,114,111,105,104,106,113,90,104,83,104,111,102,97,99,100,96,103,107,102,82,111,106,102,107,105,104,109,101,109,107,101,92,105,104,111,98,102,94,111,99,94,112,106,106,102,103,104,99,117,106,96,111,103,106,113,97,86,98,112,104,112,114,96,100,96,111,105,109,103,92,107,109,119,115,105,101,105,99,109,111,101,103,80,91,102,105,94,103,111,83,133,114,99,97,98,99,109,84,99,104,98,94,95,102,97,108,116,78,99,97,89,100,108,101,98,109,106,102,100,98,111,99,112,98,102,105,85,107,108,96,103,120,108,105,100,101,104,114,100,109,106,91,102,107,103,99,107,109,118,107,90,109,103,103,107,97,101,95,100,98,102,95,97,87,102,106,97,110,98,98,110,105,103,112,94,102,104,101,97,124,102,99,128,113,94,116,115,96,111,112,89,105,97,117,109,103,109,106,104,106,101,105,106,125,104,97,132,99,95,113,106,105,94,104,117,105,108,95,110,118,88,103,109,103,107,101,100,108,99,127,105,107,104,117,105,110,105,111,113,110,110,106,101,100,98,105,113,88,103,127,131,101,97,106,94,91,103,98,99,134,109,108,102,103,99,94,113,103,104,112,92,108,98,104,104,96,110,133,101,104,98,105,100,111,110,99,110,97,106,100,94,104,96,84,104,106,106,97,104,106,105,103,111,99,96,109,96,103,100,103,105,108,115,104,97,93,105,105,101,96,109,105,99,94,109,97,94,99,97,94,107,107,108,95,98,113,101,102,95,106,111,125,94,105,96,103,105,93,99,95,99,124,105,108,105,92,96,105,100,95,83,87,103,96,98,118,105,103,114,104,100,98,97,102,108,110,105,104,120,106,101,99,115,117,105,107,108,103,104,113,112,103,75,90,100,100,106,101,102,95,102,105,104,111,105,110,97,101,99,98,108,102,100,109,98,108,99,110,118,92,94,103,120,104,112,112,102,102,97,109,98,107,92,106,87,99,102,106,105,98,93,105,105,104,108,101,102,113,98,126,104,118,100,97,71,101,105,107,103,112,110,109,99,100,104,106,100,96,101,80,106,98,107,109,119,100,95,103,107,102,114,101,111,128,112,108,102,103,106,90,104,98,108,105,108,103,109,106,96,103,122,107,100,99,113,111,118,109,108,97,105,124,106,106,100,100,111,98,110,108,98,106,115,103,92,100,106,107,108,109,100,106,106,108,106,104,106,103,100,95,109,103,95,89,98,105,100,108,95,102,98,98,105,108,104,102,103,103,105,109,98,102,105,115,103,106,80,122,91,99,113,97,104,108,108,101,107,105,107,99,93,101,110,104,98,113,108,126,117,106,113,85,101,108,100,110,98,98,101,95,105,99,113,96,103,104,98,96,103,98,88,98,100,105,100,79,106,98,105,104,98,99,103,104,100,116,95,85,112,94,90,97,101,109,106,101,102,113,110,106,91,95,106,116,97,110,106,108,107,112,92,102,101,91,113,135,100,100,110,99,100,105,106,95,94,105,96,105,102,100,100,100,114,99,106,102,98,90,90,99,98,105,94,99,103,109,106,99,101,88,108,107,111,113,112,97,96,104,113,109,96,96,94,100,95,112,111,104,108,103,102,99,95,100,89,90,106,102,102,108,91,95,101,70,102,110,102,101,99,106,100,101,99,106,105,101,101,107,101,110,84,100,102,75,113,101,100,110,97,105,89,99,105,112,98,99,91,99,124,112,109,100,108,100,114,103,112,119,110,97,115,110,102,108,104,91,106,114,100,112,98,100,111,92,104,105,103,94,114,103,95,108,104,100,101,97,110,104,113,97,114,102,104,92,100,105,103,122,103,105,94,93,104,103,93,102,95,95,132,76,117,87,95,101,102,96,98,101,108,103,96,106,109,101,91,104,98,104,87,102,109,100,106,105,93,103,120,104,97,100,85,106,109,108,108,91,100,103,107,102,107,112,111,113,104,105,112,105,101,88,100,103,95,113,100,100,106,89,100,111,95,100,108,98,105,101,95,88,109,95,100,92,113,99,92,88,97,106,104,101,100,113,105,110,107,102,96,102,112,106,107,103,105,124,116,110,109,105,110,110,108,113,79,111,109,108,106,90,91,104,101,91,93,117,99,102,98,101,108,98,98,91,107,110,112,102,106,93,108,104,109,105,99,102,109,105,102,121,98,99,111,96,104,91,104,99,105,112,110,91,107,98,91,99,102,100,115,116,107,117,105,100,106,101,101,101,96,97,109,95,97,97,96,98,99,103,107,102,106,97,104,104,113,100,106,94,92,104,97,110,110,108,104,100,104,102,96,104,101,97,102,115,97,97,108,110,106,91,108,113,110,102,88,101,87,101,99,89,95,107,100,110,102,105,108,117,98,95,108,93,114,104,97,92,109,103,94,109,101,118,104,97,94,91,106,100,112,90,105,97,98,104,106,106,111,106,105,105,93,93,105,99,97,94,111,98,110,101,95,106,106,107,104,103,111,105,89,83,98,99,110,110,95,97,100,102,104,114,96,98,108,93,112,110,97,103,109,85,120,106,97,100,104,107,92,109,104,104,90,93,89,108,109,97,117,117,95,105,101,105,99,103,107,98,111,116,89,100,112,89,96,86,100,88,92,106,97,112,110,97,99,105,98,95,121,98,96,113,93,97,99,99,92,94,103,98,71, +472.90472,93,98,111,103,88,94,101,79,107,94,101,101,101,125,104,101,105,93,111,98,109,98,104,105,114,100,91,114,110,121,108,98,101,107,102,99,115,92,112,95,93,108,102,101,106,100,99,92,96,114,93,100,109,98,119,84,105,104,107,101,106,112,101,111,104,112,100,94,113,88,119,103,112,105,94,95,107,114,116,100,104,109,67,96,118,102,105,99,97,99,95,96,88,112,114,93,102,94,116,115,110,101,100,109,103,108,104,106,97,87,94,104,105,101,112,119,107,100,104,92,103,77,114,102,101,111,94,98,107,104,110,101,109,104,116,102,82,102,103,103,99,101,98,106,97,78,98,98,100,102,115,105,89,102,105,108,104,103,107,112,90,109,103,95,109,104,104,99,106,93,101,97,93,99,106,106,110,101,109,101,93,109,105,101,108,99,91,97,104,98,98,108,107,105,102,97,108,101,96,99,100,102,103,104,98,113,114,100,109,100,105,93,90,103,97,98,107,114,92,101,110,95,109,98,111,104,107,106,112,92,99,100,114,110,97,106,80,109,105,94,110,114,112,95,95,96,92,96,107,99,97,108,114,103,107,106,90,102,107,92,101,102,101,101,112,109,108,118,95,103,103,102,110,110,114,108,105,121,102,95,104,92,109,109,95,98,87,114,101,95,108,105,106,112,105,108,112,97,100,102,102,93,115,116,101,94,104,110,111,96,100,101,97,113,107,112,105,94,97,113,98,104,109,101,77,98,102,100,103,117,102,108,104,106,105,117,99,67,107,105,93,94,102,105,99,102,101,109,101,108,107,105,107,108,99,116,108,96,98,101,101,109,113,106,105,108,111,118,101,107,102,96,104,101,106,87,110,99,93,102,107,99,106,106,94,101,91,105,96,103,112,99,94,118,91,106,97,88,101,106,107,116,103,102,104,105,100,102,114,89,92,98,96,105,115,89,109,99,101,102,98,104,90,84,109,94,98,105,101,100,92,97,111,100,100,100,102,112,93,97,98,101,114,100,102,98,102,99,113,90,96,116,111,111,103,100,100,99,106,109,112,99,109,108,108,105,105,103,107,109,103,97,109,99,96,111,105,111,103,101,94,112,103,98,90,109,98,103,114,116,113,95,103,100,91,106,87,106,106,95,107,102,100,102,106,115,106,112,116,90,82,101,102,106,106,106,90,117,105,110,104,108,104,102,105,111,112,103,116,100,101,117,106,101,92,113,99,103,93,110,99,116,96,96,105,108,114,100,105,100,110,101,104,113,105,117,98,103,102,106,108,103,102,114,95,111,111,96,103,91,100,112,100,99,97,103,105,117,114,114,107,110,110,105,85,90,102,93,109,91,101,117,121,103,130,107,106,107,110,104,96,101,114,114,107,103,99,109,99,110,106,99,102,97,123,90,104,116,104,106,112,112,106,115,103,103,96,95,105,103,103,113,99,105,101,90,108,92,106,121,114,116,106,105,98,105,102,104,106,105,106,100,104,110,97,99,91,116,106,99,108,130,114,111,99,103,102,101,112,100,102,105,108,96,97,115,118,104,109,102,87,109,121,101,108,99,99,125,101,113,102,99,109,101,107,96,108,109,99,93,105,104,99,93,105,103,118,112,110,114,98,100,106,112,106,93,94,93,107,109,101,99,120,116,101,104,100,115,109,115,107,111,91,100,102,102,102,94,113,99,106,103,85,95,111,96,99,104,101,99,103,101,105,94,106,104,102,98,112,98,108,113,105,108,102,109,118,107,76,105,109,107,100,104,94,113,121,94,99,96,88,113,93,102,93,99,97,108,91,106,100,113,102,109,93,104,106,106,111,111,88,96,115,92,107,111,101,114,113,124,110,117,110,85,108,90,112,110,106,104,105,105,113,113,104,100,106,88,105,113,96,98,96,113,96,107,108,101,99,103,105,97,113,93,106,94,100,89,106,100,85,109,109,112,96,105,106,102,118,98,109,110,69,98,110,116,87,114,112,95,97,103,110,107,106,112,116,98,108,107,118,93,103,115,109,100,97,106,100,107,95,102,97,95,117,103,99,113,114,124,96,115,99,109,93,111,105,101,99,94,109,107,101,116,99,104,97,104,102,97,118,106,99,127,105,99,106,113,95,98,103,109,107,118,93,103,108,84,104,107,110,110,106,98,111,111,111,110,99,107,111,109,112,106,102,103,105,101,102,117,102,105,122,93,136,106,99,111,107,103,108,102,104,112,96,113,115,107,103,104,101,104,104,125,95,89,103,105,109,103,114,105,99,100,109,95,104,121,99,93,107,105,100,102,95,114,100,113,114,101,100,124,104,98,106,103,113,114,98,103,111,105,100,77,125,103,112,112,99,103,113,89,95,102,107,115,89,101,96,100,94,88,107,107,100,91,99,96,101,104,97,106,102,94,105,96,108,105,101,101,104,106,106,104,106,111,96,106,104,103,94,104,110,103,96,95,108,104,107,92,103,104,103,112,103,110,111,102,120,99,123,102,112,95,102,100,107,102,108,111,106,105,105,100,107,104,94,103,108,105,98,114,105,105,126,105,98,106,103,105,117,102,101,113,105,119,112,118,108,112,106,108,113,98,95,94,103,104,102,90,108,89,101,104,110,106,107,102,98,99,103,113,106,120,89,102,102,102,111,108,97,100,106,114,100,107,113,120,112,100,98,108,108,111,103,112,98,98,108,91,92,91,102,101,101,114,104,110,100,102,109,111,104,121,108,112,104,100,98,100,108,106,103,100,97,108,105,97,106,104,108,108,103,104,101,106,105,117,119,105,114,111,106,106,106,110,106,104,104,128,102,114,125,111,110,104,104,101,105,123,118,108,119,102,96,102,106,109,112,114,102,104,99,104,113,109,103,108,104,103,108,103,102,109,118,99,99,113,103,117,112,109,123,115,113,98,102,98,99,113,77,99,109,101,100,92,99,102,106,102,100,105,98,105,104,102,104,104,101,102,112,108,102,115,98,112,109,113,107,108,105,101,99,96,103,103,100,110,108,105,103,102,96,104,112,96,105,100,99,97,107,103,106,100,101,109,110,98,112,108,101,97,96,108,95,117,99,112,105,105,102,104,101,103,98,92,114,90,95,103,108,95,106,106,113,120,99,103,102,105,103,99,98,110,122,107,91,108,125,113,109,103,103,110,87,87,103,107,98,102,107,119,115,98,107,110,95,104,103,107,109,103,95,109,117,110,105,109,109,110,106,110,109,70,114,101,106,110,114,117,103,103,99,102,107,95,113,96,103,108,91,92,115,106,114,103,113,99,107,109,102,113,117,87,95,109,105,101,110,105,82,107,117,105,103,111,109,103,94,124,113,114,108,101,107,111,101,101,112,105,100,97,99,97,116,109,103,101,108,113,100,103,119,117,108,103,115,101,98,102,107,116,102,105,100,103,108,98,104,99,105,105,116,103,117,104,104,112,111,111,94,109,94,113,109,105,102,104,105,104,105,112,108,106,125,101,103,106,82,91,104,100,112,101,94,111,95,105,104,123,109,121,107,104,110,109,120,103,101,108,106,106,115,112,100,109,114,100,93,105,101,106,109,105,115,115,95,95,114,92,102,95,103,109,123,107,106,98,106,103,100,100,105,114,118,91,102,109,105,117,84,107,102,113,100,102,109,111,110,114,116,103,109,105,109,109,109,111,98,106,114,100,106,89,106,109,95,113,101,106,109,105,104,98,107,117,109,116,104,103,106,67,99,125,90,107,110,99,97,81,87,113,96,99,111,106,114,103,105,107,110,95,120,104,111,111,102,106,99,103,99,103,116,103,102,110,102,106,121,117,101,111,98,111,107,105,91,114,91,105,116,108,109,105,114,111,108,107,105,110,109,103,140,106,115,107,115,102,109,95,102,103,113,108,105,101,98,116,106,103,105,105,101,97,107,96,105,104,106,112,94,112,107,100,98,110,110,119,102,103,112,117,112,113,109,101,88,93,117,112,103,113,105,109,98,111,106,106,96,120,97,97,99,102,99,117,98,106,104,117,112,103,102,106,108,104,109,107,105,112,120,106,108,109,117,117,106,90,106,123,106,111,95,109,103,100,103,107,110,103,113,99,120,101,100,95,94,116,103,96,106,95,111,100,97,114,108,112,99,114,113,108,103,99,106,106,111,95,93,105,102,96,94,103,114,107,86,103,113,120,104,97,95,96,106,106,105,100,103,99,102,100,106,105,111,116,96,115,107,112,105,110,101,95,102,102,114,98,109,115,109,117,101,105,98,102,121,115,110,113,100,104,109,96,108,96,109,113,104,100,103,104,102,112,105,94,96,101,106,100,99,113,94,109,113,106,113,95,105,106,101,121,113,101,103,112,96,104,104,117,114,103,100,111,109,105,110,108,105,114,102,96,104,112,105,73,103,101,104,100,103,109,105,111,98,100,98,106,108,106,108,103,115,108,105,112,97,103,103,106,114,109,106,100,98,95,110,102,112,93,113,125,104,107,103,117,110,88,106,85,103,107,99,105,103,115,98,108,105,108,71,102,100,112,107,103,111,109,104,97,100,86,110,106,112,90,121,112,91,103,111,91,101,101,91,100,105,101,111,113,99,106,109,102,91,100,107,108,107,104,106,104,104,115,98,98,104,104,108,112,104,118,108,109,97,108,113,110,102,108,99,106,129,101,101,109,113,100,115,101,102,98,104,105,103,104,119,110,115,117,98,108,94,95,91,100,111,100,105,95,113,103,109,110,131,113,103,92,95,94,100,94,116,108,106,110,115,106,98,92,102,91,102,86,98,110,100,95,109,108,102,112,111,110,89,112,100,94,112,105,114,99,95,108,88,105,119,110,91,116,118,110,96,96,124,89,103,113,102,99,102,113,119,117,108,101,109,106,117,85,100,105,85,99,100,107,88,118,102,115,102,106,104,102,113,107,116,98,102,106, +473.04523,106,117,87,105,111,104,98,95,104,103,105,94,104,87,120,87,95,105,104,109,76,104,100,118,109,106,93,98,104,103,106,97,101,106,108,91,114,88,102,95,97,108,109,116,88,105,91,106,110,104,107,114,88,105,109,99,107,103,108,113,98,98,95,95,135,117,95,94,106,92,110,103,100,82,94,100,100,89,111,92,95,101,99,109,92,102,99,103,97,101,111,101,93,109,102,83,112,98,97,97,101,94,98,103,106,101,108,108,96,93,109,105,109,96,99,105,97,117,108,93,95,90,105,106,113,90,88,91,112,113,99,106,88,108,125,100,91,100,89,102,102,98,94,104,108,106,110,101,99,98,99,73,90,108,94,118,101,93,107,98,92,105,102,99,100,109,104,95,109,97,102,108,104,93,106,105,102,101,105,88,103,106,106,110,76,98,105,94,102,101,101,108,99,109,111,111,95,99,97,96,109,79,109,106,98,74,98,101,101,97,89,107,115,101,108,98,94,105,97,104,107,105,108,104,107,85,97,111,113,101,98,106,98,102,113,96,115,108,100,105,86,103,116,117,95,103,115,107,99,100,113,106,106,96,99,104,97,101,101,109,97,108,90,121,115,107,96,106,109,107,110,104,99,106,109,94,93,104,101,104,94,100,98,88,103,110,109,108,104,116,105,98,109,100,102,116,106,115,116,101,98,104,109,112,102,113,118,107,95,101,101,103,103,98,122,113,96,94,107,98,105,108,103,109,101,95,113,101,103,103,98,93,108,104,101,112,113,102,96,110,106,78,106,108,107,108,100,104,117,91,109,100,97,109,102,103,109,106,105,104,99,97,103,103,103,84,116,108,83,107,104,100,103,90,102,91,100,110,104,106,104,106,100,100,110,95,100,103,109,87,107,90,100,97,108,94,106,94,109,108,104,93,109,95,91,103,109,97,104,107,83,91,99,109,99,103,104,101,105,90,110,103,111,108,107,92,111,99,100,112,107,108,109,100,99,104,92,110,104,105,123,104,88,101,93,106,119,101,103,117,99,101,112,107,116,94,100,103,108,110,101,110,103,108,106,99,113,106,102,113,109,111,101,104,97,93,104,109,120,109,96,101,109,112,96,102,102,101,113,111,101,97,104,105,77,109,77,104,108,95,111,93,114,111,98,100,97,100,96,110,108,105,102,98,96,98,105,95,102,107,104,102,101,100,104,96,118,95,86,100,96,125,100,100,105,101,92,103,98,113,88,115,102,94,105,106,101,100,117,105,106,100,89,98,103,110,103,107,95,105,107,119,96,100,106,107,105,101,106,87,111,109,110,106,94,103,103,121,106,107,106,92,101,91,101,102,115,109,103,105,94,105,89,104,108,108,91,113,110,100,94,115,109,120,106,106,104,111,118,105,105,116,106,101,105,109,105,108,94,84,103,98,111,102,102,102,98,114,100,108,98,100,105,109,92,104,102,100,110,114,112,99,105,115,103,93,104,115,118,115,110,100,112,103,103,123,105,105,104,121,96,112,104,101,102,111,113,98,115,69,106,112,105,102,103,106,104,108,113,97,103,104,104,92,98,95,110,79,105,106,114,107,101,105,106,98,105,105,105,94,105,87,117,102,97,110,117,103,100,106,106,104,109,103,107,107,105,103,113,102,109,106,96,79,91,92,94,111,96,103,104,104,100,99,106,90,103,110,108,96,113,107,109,103,102,102,101,110,113,114,101,103,110,102,112,102,108,111,106,103,83,109,97,93,109,113,96,105,87,95,107,102,97,101,100,94,101,103,71,96,109,100,109,91,99,95,109,110,113,113,103,107,126,106,104,91,103,105,107,97,106,109,93,103,109,116,105,98,113,102,113,102,104,104,111,93,111,101,109,102,99,118,110,95,94,106,103,98,116,94,112,98,100,99,95,103,93,108,102,103,101,111,109,98,109,96,97,96,121,106,94,97,100,107,102,106,108,121,98,103,100,92,109,102,109,93,101,105,113,98,100,109,113,107,97,106,101,95,107,101,113,110,109,104,105,105,113,123,116,106,96,103,103,114,106,100,73,103,109,116,106,103,111,101,121,99,108,103,101,105,106,118,100,120,100,101,106,109,95,103,97,113,109,111,94,98,109,100,91,122,104,114,97,115,97,110,88,105,105,102,107,101,93,113,101,120,83,106,102,99,109,107,101,119,116,116,106,107,94,101,130,104,103,100,99,95,99,106,85,101,106,109,102,95,100,113,106,102,92,82,99,117,96,100,98,103,88,102,102,92,88,97,106,98,101,100,117,105,92,99,107,109,98,107,122,104,105,103,94,119,111,98,104,105,104,106,114,110,100,113,107,102,104,91,109,126,92,107,110,93,101,94,107,102,113,95,112,102,99,100,106,122,102,99,89,114,96,113,109,108,104,112,99,104,99,92,97,75,84,97,112,112,110,100,104,110,102,99,93,103,95,109,97,104,107,94,101,96,100,105,102,95,115,106,103,96,103,113,110,109,114,96,102,94,116,95,100,103,108,118,106,95,94,105,118,99,101,111,109,107,93,114,105,99,103,103,112,123,100,106,102,104,101,105,100,101,109,111,106,109,105,108,97,106,103,91,104,103,96,101,104,100,94,125,84,88,104,98,105,96,99,100,96,98,113,96,112,104,104,108,111,98,116,120,101,112,99,99,98,104,96,105,108,109,109,100,108,103,118,107,107,97,78,112,108,92,112,100,103,110,108,109,107,109,111,101,92,108,100,118,93,107,119,100,110,109,112,112,106,104,106,117,98,103,108,96,114,101,104,114,114,115,102,105,106,88,102,111,106,98,84,105,106,109,98,95,105,102,107,116,105,101,104,105,100,105,99,103,107,100,93,95,107,101,102,92,99,108,105,105,97,107,113,105,110,103,103,111,96,96,102,105,104,109,103,105,110,81,97,104,97,105,120,112,103,101,103,113,102,120,97,103,100,99,103,97,99,113,99,98,99,115,104,104,100,104,104,108,109,100,104,104,103,102,104,109,94,98,101,107,107,107,105,101,99,104,120,96,123,110,106,109,101,113,103,112,104,116,108,104,116,103,99,104,111,109,113,105,105,94,106,91,108,112,105,99,107,113,92,105,106,75,90,97,98,95,98,113,99,99,111,106,106,121,95,104,113,103,104,113,107,99,102,108,97,106,105,100,103,103,97,105,106,98,103,109,102,109,100,97,107,100,106,103,103,109,109,100,105,105,92,100,107,99,107,99,103,112,104,112,107,94,92,106,102,107,106,105,109,102,105,100,98,110,101,116,102,103,109,104,98,106,108,106,99,103,104,94,105,101,91,100,88,96,115,93,99,103,104,101,109,100,99,108,115,107,118,106,105,109,102,112,105,103,101,105,93,95,97,114,107,106,100,110,103,109,112,107,96,104,103,103,103,101,102,95,101,111,109,105,96,116,102,109,107,107,121,113,107,101,83,99,94,102,96,93,106,113,105,102,78,107,102,97,112,106,97,96,102,85,101,100,108,102,94,106,115,109,99,103,108,109,104,106,99,86,107,111,104,94,124,96,107,104,110,118,100,105,111,104,103,89,99,95,98,105,100,104,105,110,114,106,132,102,103,105,100,98,102,94,106,112,100,108,113,107,96,105,108,102,90,100,103,94,99,102,91,108,105,111,109,100,113,110,92,102,112,106,102,118,107,98,107,109,95,96,104,106,108,86,101,102,102,105,105,108,98,97,108,104,109,102,104,111,100,99,98,94,99,97,119,101,101,102,102,116,121,97,106,99,99,122,96,107,113,98,112,96,97,99,109,80,110,105,103,111,123,109,113,113,104,104,101,102,111,106,111,96,113,98,100,105,96,110,102,103,110,104,99,94,107,109,108,108,104,112,111,96,105,106,102,98,87,101,98,106,110,99,97,109,99,92,104,92,92,116,100,97,103,73,96,94,116,108,107,103,109,105,104,93,111,105,112,95,88,103,102,102,100,98,111,101,97,116,102,102,116,113,109,99,101,108,130,101,110,103,98,96,97,115,120,88,109,100,114,91,100,79,108,101,111,105,107,105,100,101,116,98,109,97,105,101,114,100,105,107,98,107,98,119,109,100,109,95,102,96,105,112,96,95,107,103,99,112,99,103,93,109,86,102,108,95,104,98,100,107,106,109,108,117,103,105,89,110,103,106,105,94,101,104,101,103,100,110,111,107,110,101,101,90,106,112,117,112,96,98,84,120,105,84,108,110,96,113,103,105,102,104,110,106,98,101,99,104,98,107,94,110,105,110,94,106,112,95,103,92,93,112,107,106,103,105,106,107,95,107,95,102,103,98,117,109,116,103,107,105,99,103,105,130,99,117,117,106,111,101,113,107,107,109,99,107,111,89,115,101,121,100,112,101,107,104,112,101,106,104,115,101,89,102,113,103,90,110,104,106,101,112,104,102,100,81,97,105,99,99,97,96,101,109,110,94,117,101,107,90,96,94,110,109,107,103,100,109,96,105,106,90,105,101,102,104,106,112,87,104,101,99,102,101,107,93,109,105,96,99,107,137,105,107,91,107,109,98,98,101,103,102,118,113,101,94,91,102,110,96,103,124,103,108,117,93,113,98,102,107,112,99,88,107,111,98,104,106,80,106,101,99,102,100,99,97,97,101,97,107,101,110,98,98,94,104,99,100,102,110,110,110,107,118,94,102,99,102,102,84,102,113,91,93,106,106,106,107,109,106,112,111,112,92,106,109,116,101,101,99,105,103,103,108,104,111,98,108,102,101,116,109,104,100,98,99,107,87,102,111,101,107,85,105,101,99,95,111,113,113,138,110,92,97,100,107,104,106,102,97,98,104,98,120,122,112,104,111,98,114,97,112,102,94,92,102,108,104,103,114,102,99,121,101,99,89,97,121,105,88,101,102,97,89,101,98,96,92,103,105,94,93,98,95, +473.18573,101,98,84,92,98,118,100,104,108,103,91,81,104,101,105,100,101,107,103,117,80,106,81,92,99,105,96,114,98,99,102,109,103,100,102,104,103,93,111,103,104,103,93,105,106,106,100,87,121,99,104,99,105,107,104,98,107,94,104,92,102,107,95,97,106,105,98,106,96,110,101,109,103,104,106,111,99,101,114,106,103,95,104,114,106,106,91,100,104,104,116,94,110,103,101,101,86,110,94,116,113,104,101,104,103,110,113,101,112,97,101,98,112,117,110,105,108,102,115,94,101,109,105,102,104,108,94,103,99,98,109,95,100,138,106,110,91,102,113,104,107,112,103,110,84,110,94,99,98,98,96,104,92,102,100,106,106,100,100,97,95,92,97,116,100,98,95,104,111,100,104,96,85,112,114,109,102,88,111,104,100,105,107,104,99,103,104,90,119,106,99,105,108,104,99,100,102,99,94,96,102,106,101,103,98,92,98,114,112,102,104,107,113,96,116,98,115,109,78,105,107,97,109,90,107,106,100,119,114,110,95,115,105,110,99,106,86,101,100,105,99,111,107,113,113,109,105,105,92,104,100,105,106,103,104,102,109,125,97,106,100,110,105,100,110,100,105,106,101,104,108,90,101,114,95,109,99,100,101,107,105,105,100,100,97,98,107,98,105,104,106,105,95,103,104,105,107,104,109,107,98,112,109,105,108,115,103,129,113,113,106,84,116,107,88,110,104,110,108,104,99,113,104,113,107,111,99,98,104,100,98,98,109,101,100,100,109,92,96,112,104,98,106,104,116,110,105,100,99,102,109,108,112,114,107,77,98,95,111,105,104,83,107,93,109,109,108,103,99,104,106,121,118,124,102,101,106,103,100,118,116,104,110,106,86,100,91,95,98,108,106,95,102,109,103,102,105,89,104,102,96,94,116,99,106,87,78,109,102,108,98,107,106,103,104,112,100,104,103,114,94,110,95,85,99,102,107,92,93,113,95,121,100,105,114,107,102,99,109,108,115,113,106,114,113,102,101,104,100,103,106,98,104,112,100,95,103,112,98,100,101,103,111,113,114,100,109,119,103,108,107,103,100,120,106,104,92,107,115,104,114,98,117,94,102,100,111,108,105,110,96,117,104,110,88,109,121,109,106,104,112,101,91,103,114,103,91,101,115,102,98,107,86,102,98,110,105,99,100,81,103,99,114,90,96,100,103,109,99,103,108,107,94,108,102,108,107,100,113,103,75,106,107,105,108,91,106,101,100,114,110,108,106,100,100,105,105,101,111,99,110,104,106,117,108,101,117,106,107,101,102,90,101,104,112,105,100,104,106,95,111,98,109,99,72,102,107,111,100,104,100,99,84,101,106,107,105,108,106,99,105,100,111,114,108,104,91,107,100,117,109,116,110,104,107,107,102,98,106,110,118,113,110,95,99,103,99,107,104,99,107,100,88,111,93,98,105,105,98,109,118,102,125,104,103,96,102,110,106,100,106,105,106,89,111,100,112,110,110,105,107,114,110,108,92,96,101,93,102,106,113,108,118,117,95,109,106,91,107,110,105,105,116,89,99,96,91,112,99,97,106,105,91,88,99,109,105,108,105,93,100,110,108,100,99,99,105,102,95,89,98,113,105,110,99,108,103,104,96,116,108,108,109,114,115,102,105,96,95,108,112,92,100,105,106,90,103,98,109,100,102,104,111,113,100,89,117,103,107,103,121,116,113,106,102,103,102,95,105,103,102,100,107,107,105,116,130,109,94,99,111,112,95,106,94,109,103,102,92,101,110,105,103,118,96,101,99,111,104,111,98,119,114,109,109,94,103,107,96,104,101,102,101,91,100,100,96,102,103,113,117,112,95,97,129,115,113,99,113,91,99,112,101,105,113,113,109,95,101,105,105,90,109,108,110,108,102,92,92,113,96,112,112,101,119,110,102,96,97,95,113,95,100,106,99,104,107,109,106,113,116,102,96,90,101,110,100,95,106,116,113,105,81,109,103,111,102,99,98,97,117,99,104,135,107,102,103,97,117,107,92,103,88,104,125,104,97,103,101,113,109,105,101,100,99,97,104,104,104,95,100,99,104,105,108,106,100,98,79,108,113,99,105,104,117,100,105,117,107,98,107,117,108,109,96,116,97,106,98,99,111,97,103,99,105,96,112,106,115,105,96,108,98,107,98,100,108,108,98,104,102,84,105,97,102,103,97,103,99,105,99,103,93,101,109,107,103,99,107,101,100,110,115,104,112,99,95,105,104,91,102,103,96,101,103,96,96,103,100,108,117,95,121,73,116,102,110,104,106,108,90,100,111,99,114,92,100,110,110,100,104,113,97,93,104,116,107,113,95,105,104,101,104,90,105,104,104,93,102,106,102,97,95,111,106,105,107,110,91,109,113,110,99,102,99,95,98,96,101,100,111,111,94,105,106,91,111,105,106,109,113,107,106,107,103,107,98,105,104,113,116,99,97,104,119,107,117,110,112,96,105,109,91,99,103,105,97,97,107,101,106,89,101,98,111,99,105,100,95,104,106,122,125,100,107,93,106,106,97,108,91,98,103,106,105,101,98,111,103,107,109,106,128,102,99,99,105,99,102,96,110,107,100,114,109,107,101,102,106,88,107,94,113,107,106,102,110,83,109,107,106,105,100,69,109,101,101,100,100,113,101,95,107,108,127,122,98,98,110,103,98,99,101,112,104,133,107,102,106,102,112,125,98,121,102,102,95,97,87,94,107,106,112,103,99,102,105,115,98,102,96,102,96,110,92,110,97,112,106,105,106,82,103,108,107,103,90,102,106,111,101,111,95,104,102,98,90,105,106,101,104,106,105,107,128,110,105,120,114,114,98,98,105,102,101,105,119,94,91,115,107,111,107,98,116,97,100,117,100,98,119,109,101,110,109,109,103,102,96,109,102,88,113,92,117,102,96,111,99,95,105,113,113,100,98,103,102,99,100,110,87,102,103,109,102,123,101,116,97,100,103,107,92,94,105,100,109,103,106,97,100,105,93,102,103,102,104,97,112,115,97,96,99,98,107,112,107,110,100,103,107,80,105,103,108,109,97,94,105,103,98,107,107,102,93,98,99,98,107,115,91,104,84,113,102,100,104,108,105,101,96,104,110,92,101,100,100,107,102,101,98,108,112,106,104,103,108,109,101,98,111,101,112,110,100,113,95,99,99,105,97,111,87,105,116,105,105,104,116,100,106,111,109,85,107,89,110,102,118,108,112,104,116,95,94,112,100,110,101,99,100,101,109,106,88,101,108,104,100,120,102,102,99,87,108,109,103,97,104,104,104,109,132,78,103,109,116,112,98,107,94,92,98,101,100,109,99,108,102,97,105,103,111,119,95,100,105,85,111,108,83,109,109,100,107,103,97,104,116,95,111,107,105,104,105,109,103,113,110,116,103,116,107,100,98,95,110,95,106,105,89,97,91,102,92,100,107,98,100,102,104,113,92,100,106,103,109,102,107,95,109,103,80,105,102,105,95,113,110,102,105,101,108,115,103,108,111,104,96,100,95,95,112,102,102,111,98,98,103,115,99,110,104,116,113,98,111,111,111,105,98,104,112,97,110,107,99,105,106,96,102,113,93,111,99,111,105,109,107,109,97,89,105,105,102,102,104,120,108,109,107,107,109,96,109,94,123,100,109,110,95,91,96,106,106,101,106,79,108,96,105,123,87,99,113,94,104,108,106,108,105,106,119,113,101,105,98,111,112,98,96,112,90,104,113,101,111,89,101,97,107,100,80,106,100,105,114,109,104,112,100,100,104,100,103,104,99,102,113,101,105,108,91,100,104,93,104,100,108,100,104,92,105,92,99,105,118,97,109,102,97,100,100,95,104,102,102,95,105,114,106,111,96,117,109,112,102,97,99,104,117,101,103,106,120,108,111,102,95,107,102,110,109,113,101,107,113,106,106,105,95,97,107,99,101,107,109,104,108,96,100,105,100,119,93,94,109,110,102,103,99,103,100,105,100,86,98,103,98,105,100,109,113,110,103,109,112,104,120,118,108,102,106,94,106,101,98,91,107,98,99,101,106,116,105,107,100,104,102,104,102,103,111,99,110,103,106,100,92,98,98,103,109,109,100,85,110,106,100,103,91,106,100,104,107,107,106,96,103,109,109,102,93,100,108,101,105,113,104,99,106,99,111,90,111,115,116,110,89,107,98,125,99,104,96,96,94,105,116,106,111,102,104,108,109,113,87,102,109,113,111,97,108,96,113,103,113,112,99,100,97,109,108,95,87,98,108,104,117,102,107,107,110,99,104,109,98,97,106,121,99,98,116,117,116,107,104,99,101,105,109,106,117,115,103,95,121,110,90,101,107,111,99,105,112,99,113,100,107,104,94,101,109,122,115,102,101,107,98,139,108,104,103,106,94,86,103,117,103,103,95,101,102,95,96,106,96,111,101,94,98,109,95,110,110,101,92,99,106,103,112,113,94,104,100,101,88,82,95,94,90,85,100,103,105,124,103,110,104,98,116,99,94,110,108,111,93,109,102,107,98,98,88,91,107,94,113,100,107,108,98,88,104,92,119,101,85,93,112,104,104,106,117,102,107,110,105,102,93,95,102,94,105,98,98,94,106,103,96,96,106,99,102,108,92,99,105,98,118,91,108,110,103,105,107,92,108,94,112,99,90,103,114,104,101,94,106,111,89,113,95,102,98,95,96,99,94,83,100,96,100,101,107,91,102,101,116,105,104,97,95,106,92,103,106,110,94,94,116,113,102,95,111,102,94,100,98,103,104,99,105,107,101,103,110,98,87,102,87,97,98,107,92,107,109,96,105,103,84,100,89,100,99,102,84,119,93,108,113,111,103,101,94,113,98,109,100,106,97,102,117,108,105,100,95,100,94,103,121,105,76,91,87,106,120,100,115,104,98,97, +473.32623,100,109,96,82,105,97,102,82,87,97,90,94,78,95,97,97,110,103,105,96,113,95,96,95,109,128,103,101,110,104,105,109,117,106,119,96,104,100,97,101,106,107,88,100,101,98,104,102,92,106,94,92,102,100,108,95,109,99,105,102,107,102,96,102,102,99,88,100,80,120,106,99,96,110,91,111,92,104,100,84,106,105,104,104,103,104,94,111,102,86,112,101,105,110,98,98,108,104,104,100,105,97,119,88,94,95,98,98,110,103,87,104,104,100,103,104,94,86,101,103,103,99,106,101,102,100,107,102,108,96,99,110,104,108,113,100,103,103,96,96,105,105,110,115,94,87,98,91,102,102,81,102,105,89,94,98,102,100,108,93,102,102,106,95,100,102,109,103,75,95,101,100,98,102,97,108,118,102,104,115,101,109,84,103,102,92,100,125,106,98,110,96,110,82,108,98,101,105,139,102,91,112,104,109,95,91,91,111,109,103,97,102,120,125,101,99,104,101,100,96,116,106,96,105,94,113,102,108,100,105,109,99,114,103,94,107,91,107,105,119,100,99,98,98,99,86,107,98,103,115,102,100,101,107,102,105,98,101,101,101,93,101,102,73,99,100,117,110,101,102,103,91,89,99,108,108,105,111,71,99,109,103,103,116,99,105,94,97,98,104,94,116,103,107,110,105,101,105,97,108,104,109,95,110,99,125,107,107,100,110,105,109,104,106,109,105,115,111,98,102,101,88,105,94,110,110,107,75,86,94,124,113,104,102,108,105,103,108,112,127,118,102,99,101,104,87,113,97,100,98,101,111,104,95,109,103,95,101,102,102,103,111,96,109,94,97,96,106,95,99,98,100,100,98,97,101,109,114,109,102,98,105,106,111,100,98,94,111,103,106,123,98,93,101,99,95,100,101,112,97,106,91,102,100,101,105,104,103,105,99,97,97,104,109,100,106,98,96,112,84,113,96,101,105,102,98,106,102,93,102,98,127,106,108,96,108,106,119,81,111,100,109,105,107,107,106,113,101,103,119,99,107,98,119,99,96,101,107,102,101,98,101,104,115,106,112,106,111,99,107,98,108,98,100,98,94,101,113,115,106,106,109,115,102,109,97,94,101,105,103,108,105,96,107,94,103,93,90,96,104,109,96,111,102,102,112,99,104,113,114,110,92,103,110,98,100,97,114,112,68,100,106,102,107,113,94,100,103,108,105,103,106,103,105,106,117,99,102,87,99,103,128,96,112,104,95,104,102,117,104,136,96,102,99,102,101,106,116,101,107,103,103,99,111,99,99,88,101,109,101,99,101,104,105,115,106,100,96,89,104,104,104,94,90,102,109,107,107,109,97,98,115,93,102,110,98,108,112,100,103,111,104,107,96,103,92,104,103,93,95,117,112,105,91,102,98,87,112,100,117,98,99,96,104,95,111,115,113,102,103,104,102,102,108,94,109,104,95,110,108,107,114,98,103,103,94,101,99,109,97,93,106,100,104,99,111,98,105,107,101,105,113,111,101,106,113,112,92,109,104,86,101,101,102,109,107,100,95,97,106,117,99,109,94,99,96,104,115,107,98,88,118,101,93,95,96,111,101,101,92,96,107,103,109,101,133,105,107,98,99,114,98,115,100,85,110,91,99,101,93,98,108,118,109,101,120,102,111,112,105,107,105,101,98,108,95,108,95,96,108,108,84,107,99,105,106,92,101,112,109,109,101,89,100,107,100,91,106,117,93,92,116,106,105,91,111,86,88,101,97,113,109,106,113,95,94,95,110,107,99,109,112,106,94,106,92,113,113,92,110,90,109,105,108,101,104,109,95,92,102,114,119,119,98,107,106,108,106,114,108,114,105,105,110,107,105,105,109,105,107,104,112,103,102,105,95,106,84,114,87,105,99,105,105,109,111,104,107,106,102,84,107,104,104,95,105,95,99,115,99,114,111,107,101,100,119,113,97,101,104,98,120,108,114,96,96,94,104,99,100,96,105,99,105,97,99,105,104,104,100,103,110,99,107,95,105,98,111,101,93,98,105,90,95,92,95,108,110,109,98,110,104,100,96,106,99,102,95,104,102,113,108,106,102,100,98,99,104,104,110,98,104,97,110,97,95,103,88,98,111,100,105,101,101,104,100,106,100,121,109,114,100,108,106,109,112,99,95,103,97,103,103,98,104,102,98,101,106,104,118,101,105,111,101,103,105,90,106,102,101,101,90,116,102,115,90,109,107,99,105,100,102,101,98,104,110,112,100,110,92,99,115,110,102,93,90,104,94,98,104,100,85,104,98,111,102,102,97,103,103,97,107,92,109,104,111,115,101,110,101,112,109,109,91,104,112,109,106,106,105,101,100,101,94,106,98,92,118,101,108,107,109,106,98,88,103,105,105,88,100,96,102,103,107,103,106,108,109,101,103,103,93,109,85,91,99,95,107,113,103,102,108,88,103,95,104,102,96,104,94,96,102,89,109,102,108,96,102,106,101,100,100,96,105,102,99,111,122,110,107,109,95,105,120,93,114,97,106,105,104,99,106,107,111,112,105,95,97,100,117,108,98,96,100,111,113,119,116,102,112,103,106,108,97,96,103,109,98,98,100,103,97,103,102,92,117,109,107,99,118,113,95,111,110,111,103,112,112,97,94,104,99,111,92,106,106,99,116,106,100,98,111,114,99,115,107,103,101,106,98,101,112,101,104,110,95,103,104,92,106,93,99,89,103,100,107,109,106,99,106,109,98,103,104,97,99,109,102,102,103,103,102,102,101,105,111,102,102,99,108,103,113,112,95,107,103,102,100,96,113,100,94,99,98,91,108,103,98,105,106,103,101,121,108,103,100,105,112,101,102,97,99,108,114,104,84,101,115,100,104,116,101,108,105,104,103,111,107,91,97,106,108,102,104,103,98,134,101,103,104,113,101,120,116,113,95,93,100,103,101,104,111,103,104,105,112,99,100,108,100,93,94,97,111,103,109,98,111,109,107,110,118,86,105,103,92,106,108,101,102,116,95,96,101,110,102,100,100,107,100,99,92,106,94,104,91,84,95,101,122,107,111,109,97,106,102,121,100,106,104,109,95,101,109,99,95,106,91,119,117,73,107,120,101,105,113,103,98,113,98,118,101,103,96,119,101,95,104,109,98,112,89,109,114,96,87,104,121,114,99,104,101,115,102,107,105,99,99,105,118,114,94,115,122,95,103,105,104,101,91,92,109,96,112,98,101,110,111,102,112,101,101,99,102,92,94,100,105,110,90,104,107,94,105,116,89,108,118,113,104,97,107,108,108,113,103,98,102,105,103,99,97,107,101,102,112,97,96,92,104,104,107,101,103,115,117,101,107,113,110,99,109,96,99,109,93,106,109,99,105,101,103,111,109,103,102,100,105,116,96,109,107,100,108,98,99,105,111,102,102,95,101,106,89,106,104,102,105,89,108,110,102,119,99,97,112,99,102,93,103,98,105,101,103,89,100,110,97,96,107,108,117,101,106,95,99,102,119,115,107,100,106,112,89,114,104,98,112,111,102,108,110,117,123,103,117,109,106,97,97,100,89,111,106,112,110,98,106,105,110,123,119,99,104,109,107,106,100,104,105,92,101,89,103,100,103,96,95,102,106,111,107,102,101,109,93,103,101,94,100,107,113,106,84,98,107,95,96,110,111,103,97,105,101,98,109,108,112,104,110,113,108,104,106,103,99,109,106,99,101,102,117,100,105,86,103,100,104,87,101,109,98,99,103,102,98,107,100,112,107,103,113,98,92,108,106,105,96,105,101,105,105,115,106,98,109,100,106,105,93,104,111,113,110,108,108,101,105,105,101,116,88,109,116,122,91,93,99,107,96,108,108,103,127,110,94,100,102,105,99,97,109,103,105,111,108,99,102,95,130,109,106,109,97,79,100,103,105,104,103,111,103,104,108,99,113,114,104,115,100,113,108,102,102,111,103,107,98,99,120,109,110,107,110,107,93,109,94,100,108,101,95,110,106,108,91,111,104,104,94,112,113,97,98,107,104,99,112,113,113,101,103,100,112,106,102,105,108,100,91,110,101,115,97,109,113,108,104,105,104,120,111,117,111,98,105,99,101,114,110,101,105,104,106,101,114,102,105,120,106,101,106,108,90,108,108,112,107,100,98,103,105,108,100,125,105,113,110,100,106,113,112,108,109,102,108,105,98,107,93,119,88,101,106,100,102,103,110,95,104,117,98,111,102,102,103,105,103,101,120,110,96,99,106,92,108,107,116,108,102,97,106,110,98,115,95,95,102,111,102,77,99,107,95,110,79,105,99,103,105,83,135,96,112,97,117,107,102,96,112,90,103,98,110,113,91,98,109,110,96,102,92,92,110,100,90,118,92,110,115,93,97,93,106,102,96,91,101,105,102,101,101,102,104,96,103,117,101,113,113,92,99,108,94,108,117,93,95,108,98,113,107,103,98,102,110,89,97,103,100,103,95,105,96,102,92,111,112,108,94,104,93,98,103,100,110,100,94,100,115,99,99,98,101,98,95,110,110,106,95,100,102,104,105,103,108,108,110,108,102,109,98,98,102,109,94,82,94,94,104,104,103,113,110,126,99,99,112,101,103,101,105,106,108,113,107,112,104,101,100,101,109,110,104,98,112,108,113,101,94,106,99,98,97,117,112,110,101,100,108,85,112,105,95,101,114,102,104,101,98,117,104,100,95,103,101,92,105,96,110,102,102,122,94,106,102,88,90,109,89,95,105,94,101,95,95,98,107,111,87,99,111,104,102,102,101,93,101,108,101,96,98,107,94,98,113,112,98,79,96,128,110,97,87,108,96,117,110,113,109,92,114,107,110,123,115,94,113,98,117,107,112,108,101,97,109,104,111,101,78,97,100,95,119,94,89,96,109,108,88,111,110,111,116,96,87,91,103,121,103, +473.46674,101,103,94,96,98,103,84,106,110,109,100,98,89,111,92,111,102,122,107,108,107,106,101,95,99,105,107,104,102,109,100,104,103,99,104,90,106,92,96,82,103,105,97,95,94,114,96,114,97,87,92,107,117,104,94,94,104,102,101,105,102,101,85,74,108,106,91,98,102,103,110,109,90,83,96,102,98,100,108,90,99,99,99,111,91,92,107,106,103,101,99,100,117,107,94,98,108,96,100,92,99,107,103,100,92,90,99,108,100,107,105,104,105,106,104,103,89,114,98,113,112,113,98,107,108,113,115,97,109,111,106,104,103,102,117,102,102,109,95,109,101,96,99,89,96,94,94,104,102,88,105,99,114,84,92,100,104,96,99,95,111,103,102,107,95,95,102,93,107,85,106,103,98,89,104,97,106,107,104,113,112,109,104,109,96,97,87,84,77,101,105,109,90,103,96,112,105,108,106,94,100,94,99,109,98,107,96,111,111,112,103,100,113,99,100,106,98,115,103,95,100,104,104,106,109,105,106,106,112,95,96,99,101,96,99,102,113,114,106,107,103,96,89,105,101,105,102,96,99,110,109,102,99,102,100,98,95,104,104,106,95,94,101,109,96,104,105,96,100,109,98,104,102,103,103,96,104,109,95,98,103,102,99,111,111,98,100,104,109,101,109,115,101,96,98,109,112,116,97,103,92,91,103,112,87,103,104,100,111,109,103,107,105,105,104,98,103,110,100,101,107,97,107,94,107,96,108,93,118,103,109,101,113,100,114,102,99,105,101,101,109,107,101,91,99,114,96,102,104,107,101,92,103,110,108,117,111,94,101,113,100,105,100,94,103,104,120,110,103,102,111,93,111,90,100,108,110,95,92,96,104,106,93,111,100,108,84,103,106,98,117,83,104,110,106,100,103,105,100,98,104,104,106,102,109,94,103,102,103,101,90,90,104,104,111,103,105,99,102,103,99,100,92,102,99,91,101,112,105,98,107,103,97,100,103,83,104,108,113,108,104,110,94,105,106,94,104,103,106,105,97,103,106,116,110,106,118,109,103,113,106,105,106,99,103,112,102,94,107,114,117,106,103,97,109,126,100,111,99,103,97,110,120,84,93,97,99,109,91,103,104,109,109,100,90,105,104,113,108,86,104,100,129,105,98,101,87,97,100,104,98,97,101,86,122,104,112,103,107,94,99,120,96,105,105,99,114,104,102,98,104,112,105,105,99,105,121,100,109,105,104,103,95,109,100,105,106,107,95,97,109,106,95,97,99,121,98,111,109,112,109,99,118,111,103,113,104,98,104,99,104,105,101,103,104,118,105,101,101,99,93,103,99,95,111,106,108,116,96,90,104,101,100,110,116,107,96,95,95,106,127,112,109,104,83,101,93,107,104,101,108,102,98,115,105,94,105,106,98,111,114,106,94,105,103,115,103,114,108,113,110,104,105,106,109,86,109,98,104,79,100,110,103,111,117,104,94,105,107,102,112,110,98,101,101,106,108,102,111,98,125,105,107,107,103,113,108,99,91,106,104,91,100,107,112,103,102,103,94,92,98,105,98,102,93,96,102,101,90,110,113,85,105,116,101,108,98,91,109,100,109,76,99,100,111,99,111,103,103,110,106,114,125,100,102,116,109,105,102,108,95,90,107,103,100,107,99,91,102,104,102,114,102,85,102,113,127,93,103,105,121,98,103,111,102,80,103,97,113,103,103,98,105,105,105,103,105,117,90,112,108,108,116,104,100,115,97,103,102,100,115,104,98,108,103,109,109,96,101,105,95,91,100,96,112,102,101,103,104,122,98,102,96,107,105,112,102,100,98,108,104,111,100,98,114,111,109,109,107,90,123,103,102,97,104,112,110,108,90,106,97,107,115,94,108,105,107,95,101,102,109,115,106,107,110,101,107,107,107,101,113,116,101,114,97,93,121,99,103,98,113,109,110,100,107,105,115,102,103,109,104,87,98,98,101,108,98,102,109,100,96,109,101,120,105,108,101,87,96,103,105,111,106,115,95,100,91,103,112,108,99,105,96,112,108,108,100,102,98,95,99,111,108,104,115,119,105,106,91,98,108,104,108,110,100,105,91,111,103,108,90,72,110,101,99,88,101,103,101,103,109,103,114,107,110,105,92,98,101,116,109,101,107,93,98,101,104,110,102,103,112,102,101,75,106,84,101,95,89,100,109,110,99,92,104,104,101,106,106,110,97,101,105,112,98,115,103,103,103,95,100,86,88,102,101,78,108,91,105,89,110,110,91,100,100,99,105,92,91,105,98,109,102,99,111,89,110,110,104,107,98,100,91,91,92,107,100,100,102,99,103,99,101,106,102,105,109,105,106,95,106,106,114,99,97,101,106,110,106,94,95,110,110,110,92,98,113,88,121,110,103,101,102,109,94,92,94,103,93,100,105,110,93,98,103,108,91,108,103,104,96,111,94,102,103,104,107,105,92,105,120,106,100,117,106,113,96,106,112,114,93,103,111,95,117,97,109,109,104,103,95,91,97,94,111,103,106,104,116,105,101,116,108,99,98,111,101,97,93,99,109,98,105,110,102,108,101,103,110,91,102,102,101,103,105,88,102,99,108,113,105,102,117,108,110,99,111,115,127,104,96,102,103,108,102,109,101,107,73,99,87,108,103,95,117,107,102,98,109,106,93,107,109,107,97,96,109,102,113,87,108,102,106,103,115,105,107,122,95,100,102,108,106,102,104,113,94,100,119,113,110,100,90,94,102,98,113,111,105,103,107,97,106,105,106,128,108,106,111,103,105,102,100,113,101,115,98,108,106,117,102,107,95,111,100,103,107,109,105,100,116,106,122,100,104,99,110,109,114,111,97,101,118,97,103,65,99,107,102,103,102,91,105,110,102,117,104,112,107,106,100,117,103,109,98,106,94,112,102,118,106,90,95,107,108,103,104,110,107,108,70,109,99,102,106,102,105,103,104,105,116,116,106,104,96,93,110,98,104,104,117,106,95,83,109,104,100,102,97,96,110,94,99,102,110,92,104,125,104,101,95,103,90,98,109,110,109,103,97,106,108,96,105,101,103,107,104,90,96,106,107,107,110,100,102,107,110,95,109,100,99,104,105,103,111,100,111,109,99,118,107,98,107,105,104,110,96,117,99,98,100,107,102,103,102,99,102,100,109,99,99,102,112,103,117,106,102,103,122,104,109,99,95,97,103,111,112,103,104,105,103,95,104,105,100,103,113,107,100,110,112,110,101,98,108,95,112,105,121,112,104,116,96,69,123,99,104,104,117,100,102,97,99,108,109,104,100,133,98,102,107,105,109,104,104,107,99,94,109,98,114,110,108,111,101,102,93,107,95,96,103,108,95,87,98,101,98,110,132,112,98,107,94,99,101,98,108,95,105,105,104,114,109,113,110,98,100,118,117,102,108,104,96,108,85,95,116,98,120,115,97,110,112,101,103,104,109,106,109,107,113,104,104,109,62,105,105,93,99,100,111,116,102,105,104,107,103,88,100,113,94,100,106,105,109,114,104,91,110,109,107,111,96,110,102,106,107,102,94,114,108,103,128,90,88,99,102,75,104,110,129,90,109,108,97,107,111,108,92,104,76,97,107,105,105,103,108,107,107,105,98,112,107,108,106,97,107,112,105,103,102,103,113,99,102,96,115,101,100,107,100,97,94,96,105,102,104,115,114,104,95,107,104,101,113,115,101,99,98,81,103,113,110,117,112,115,117,109,109,102,110,99,100,100,103,103,109,95,100,87,100,108,102,90,101,103,108,100,114,102,79,105,99,106,110,104,113,101,108,108,99,112,101,108,112,101,106,104,108,92,88,108,121,91,123,113,108,96,117,108,97,99,94,104,100,116,110,111,83,105,108,112,102,105,106,106,101,104,105,98,106,95,108,110,101,108,104,100,118,102,106,96,93,95,102,119,103,105,109,93,104,97,76,96,105,105,107,98,111,95,112,103,92,104,106,101,111,102,104,101,99,90,99,104,98,105,93,105,107,104,117,97,102,106,110,103,102,109,110,96,112,107,97,105,113,91,110,112,97,103,124,110,106,102,116,135,108,97,98,110,114,110,109,104,100,106,111,112,102,109,106,111,103,104,106,103,107,98,85,99,104,98,101,102,105,113,88,103,106,113,115,80,109,113,101,91,134,118,111,115,99,102,93,114,91,109,111,102,100,101,111,99,127,108,105,117,106,96,106,109,110,112,98,102,97,95,103,105,108,108,102,106,99,109,106,109,92,109,105,100,97,104,106,91,101,101,100,92,108,85,104,107,109,96,95,102,91,103,101,106,95,115,118,108,117,103,102,111,100,112,107,92,117,107,104,103,103,105,111,105,123,90,106,92,103,108,98,102,109,122,99,104,110,118,106,110,113,116,120,103,103,90,109,106,109,109,104,98,103,103,88,84,107,108,104,110,96,106,104,104,106,105,106,106,105,89,105,105,95,105,99,96,97,100,105,104,113,106,101,107,101,103,83,111,106,108,110,98,104,95,102,102,110,98,106,92,104,96,98,91,99,91,91,112,98,102,100,104,99,101,102,106,96,93,97,84,111,106,108,108,109,111,94,105,117,107,96,106,105,98,104,93,100,114,111,104,101,109,99,107,108,96,98,109,100,95,136,109,118,101,114,107,101,91,104,95,106,101,107,108,98,103,108,100,105,95,116,85,99,104,103,103,106,96,120,97,70,104,108,99,109,110,100,97,102,92,106,100,113,83,105,105,108,95,102,92,106,90,91,98,92,96,93,99,106,105,70,106,99,122,94,95,115,114,109,104,98,100,97,113,99,92,106,109,86,89,102,106,108,100,91,104,103,97,111,107,110,114,109,104,103,103,101,95,95,82,93,98,114,94,97,116,111,104,108,100,95,93,108,101,114,104,99,77,98,88,111,99,98,105, +473.60724,111,108,93,98,92,99,98,99,104,108,99,102,99,96,72,100,98,104,100,101,115,96,102,101,99,106,108,108,106,98,101,108,97,107,111,97,103,93,101,105,97,104,106,102,105,110,99,118,102,107,105,95,101,107,113,95,108,92,99,109,104,105,106,98,87,104,107,110,97,101,95,104,101,98,116,100,99,109,97,105,95,96,102,106,96,99,109,103,109,111,102,104,108,107,94,102,97,79,105,95,108,95,100,105,101,107,105,110,94,97,105,105,107,113,108,102,105,103,68,101,104,100,98,108,121,98,107,101,94,106,104,102,102,99,91,101,103,115,110,98,63,109,109,100,94,104,102,100,94,94,92,113,103,97,110,106,118,99,98,104,114,97,102,112,109,105,103,96,113,101,108,110,90,103,96,102,93,101,97,99,100,112,107,104,102,90,110,112,121,107,94,106,129,105,99,114,101,104,104,98,111,109,109,108,109,112,96,113,112,108,92,98,107,99,113,92,106,100,97,98,115,103,107,105,106,115,118,105,111,111,100,97,90,104,109,104,104,103,108,100,102,100,109,105,108,99,92,110,109,108,117,110,95,104,102,108,111,116,93,108,96,113,107,94,104,97,95,98,85,109,104,107,101,109,102,121,112,99,104,96,132,100,105,106,93,96,94,96,106,98,95,98,111,104,114,107,81,103,95,114,99,103,105,106,93,99,100,107,106,103,95,112,94,103,104,112,109,104,117,67,99,102,104,102,109,98,93,100,102,109,114,111,90,102,107,108,113,113,106,124,103,117,112,87,102,103,100,104,117,101,109,96,98,103,100,103,112,100,99,91,99,112,93,107,99,96,105,102,96,99,123,114,107,114,77,97,112,101,117,106,102,121,103,113,109,101,94,116,108,90,107,103,96,101,96,103,94,107,105,113,98,111,102,105,107,109,106,104,108,97,109,111,103,100,102,105,106,118,106,106,116,99,101,101,95,113,105,98,100,94,95,93,103,101,91,102,106,112,101,99,139,108,113,124,104,117,96,107,104,108,96,100,102,108,112,105,100,111,99,100,102,99,83,112,105,129,106,104,108,112,103,95,99,106,102,110,101,108,96,105,105,100,104,103,103,108,113,108,108,105,89,104,106,87,86,105,109,107,105,101,113,93,103,111,110,90,109,106,101,114,118,98,104,98,102,103,104,109,106,106,106,103,110,113,116,107,101,104,101,100,92,114,104,108,93,91,105,102,104,104,103,106,98,98,113,100,105,99,76,114,101,109,109,96,107,104,110,106,96,100,108,97,115,109,96,88,115,104,100,99,99,112,110,104,92,114,102,102,101,102,106,103,115,109,111,101,112,107,104,96,110,117,108,94,106,105,109,95,110,111,95,113,104,95,100,98,103,104,112,116,116,99,104,100,111,114,115,103,101,99,110,96,99,95,80,104,97,105,106,97,103,110,87,115,102,101,98,96,106,118,112,102,101,96,88,94,105,108,99,99,89,111,95,102,100,103,102,112,96,108,104,124,105,103,97,113,117,86,105,113,110,111,101,101,103,104,107,100,112,102,96,104,120,106,92,111,106,108,105,114,102,119,91,96,101,101,100,116,108,95,106,96,101,109,92,112,100,117,99,87,110,115,108,97,104,98,96,101,116,101,91,94,114,103,100,102,109,113,99,109,104,101,105,87,103,104,94,104,102,98,102,89,104,100,109,102,126,108,114,100,107,101,116,98,104,110,101,85,109,97,107,105,117,99,95,100,101,110,88,116,100,91,94,109,111,106,101,102,113,121,99,94,114,126,110,113,95,107,99,106,102,117,109,110,112,106,108,120,105,106,102,119,112,94,99,93,102,109,113,103,105,115,71,99,116,105,100,104,105,95,102,98,93,98,100,104,117,102,113,101,103,100,117,96,97,100,94,109,103,108,106,107,110,101,104,99,104,97,100,103,121,97,107,116,98,112,103,109,96,110,110,102,107,101,114,109,98,101,120,121,131,104,97,109,88,104,104,110,111,94,97,109,111,111,100,85,99,104,104,96,101,108,110,111,103,103,95,102,115,110,105,114,83,98,97,105,101,103,98,106,100,93,98,114,109,99,109,117,113,110,98,102,108,113,103,103,100,102,107,107,98,111,112,104,107,102,118,103,108,100,106,102,94,129,112,106,116,103,100,99,88,96,109,102,102,110,97,103,106,101,109,99,108,105,100,101,111,102,110,96,116,107,121,94,112,95,100,92,96,104,109,105,105,118,106,94,105,111,99,93,107,100,115,102,96,102,106,105,103,114,89,103,95,113,120,111,98,120,116,108,97,107,98,108,106,104,104,101,114,95,106,107,111,108,115,102,96,93,110,95,113,105,112,103,107,113,114,102,109,101,104,132,99,113,99,103,103,104,106,99,110,109,99,100,96,90,101,104,100,99,120,108,92,105,108,91,93,107,104,112,110,118,101,96,112,105,111,114,105,91,101,114,100,101,99,103,114,99,106,108,97,99,102,101,98,115,112,104,98,105,92,84,104,97,110,111,103,98,108,99,107,117,109,100,107,101,104,107,113,108,98,94,102,110,86,104,98,107,106,108,128,107,106,100,110,108,97,102,101,102,92,93,96,110,101,101,108,104,96,103,101,99,116,106,120,78,103,110,104,114,99,103,104,94,103,105,104,95,99,105,106,79,88,108,113,104,100,101,106,106,104,107,82,133,99,112,100,109,106,113,100,97,111,115,113,101,96,107,100,94,101,125,101,113,116,108,105,115,109,105,109,110,102,108,108,104,106,102,123,79,111,108,115,96,104,100,103,113,109,102,87,105,100,93,99,99,119,97,113,102,101,107,97,96,105,98,108,103,112,102,103,111,98,99,102,108,92,110,99,103,106,104,110,104,107,84,100,105,111,104,102,102,106,110,101,103,108,115,109,110,112,105,100,95,105,100,103,99,107,77,102,116,116,102,105,115,107,117,99,117,99,106,100,109,96,100,75,113,112,85,118,103,104,104,100,129,101,99,103,111,107,111,98,100,107,94,106,106,109,95,100,97,117,102,113,106,104,112,116,103,101,98,117,96,102,109,105,106,103,99,97,111,97,97,96,93,110,106,98,109,81,108,99,104,100,105,107,105,112,102,104,93,103,110,113,100,100,99,109,113,100,94,104,99,98,103,99,106,100,101,103,107,117,99,108,107,104,97,88,92,112,97,97,103,114,108,108,99,104,102,102,109,117,99,98,109,111,81,118,107,108,105,104,102,109,104,106,109,107,112,91,109,113,116,100,103,95,107,108,110,108,115,121,103,96,109,106,90,104,108,115,95,104,105,106,102,104,94,113,95,125,108,103,92,110,116,103,120,108,103,100,104,106,104,116,107,102,108,101,111,105,107,112,108,101,103,105,104,116,109,112,107,103,95,94,100,100,98,109,99,108,108,109,103,99,113,99,104,104,102,100,102,98,104,99,96,93,114,99,96,113,97,92,96,104,102,106,111,110,105,102,104,101,102,104,101,103,109,105,93,109,110,106,107,96,103,95,98,98,103,111,95,110,105,93,106,105,110,100,108,97,107,105,102,119,107,94,102,105,107,103,104,104,95,97,112,107,113,110,81,101,100,110,105,99,100,101,89,117,109,105,101,101,105,101,93,103,103,109,106,104,100,111,100,98,97,107,106,111,112,93,95,105,100,106,104,106,102,102,99,100,103,98,103,104,111,112,99,115,103,102,105,95,84,108,89,99,121,108,97,112,109,89,97,101,109,104,95,95,109,112,101,117,105,99,98,113,106,103,99,101,101,109,103,102,104,102,99,108,100,102,106,104,98,83,106,107,112,108,112,102,97,109,108,105,107,104,111,104,109,106,115,108,107,117,99,99,106,109,100,107,112,104,109,108,113,115,98,108,90,96,110,114,99,97,99,100,101,105,109,100,112,94,99,104,109,102,107,108,125,97,102,109,102,121,100,104,105,105,108,104,109,92,103,113,107,109,102,101,106,104,119,107,103,95,118,97,114,102,106,106,104,104,114,108,102,91,110,116,105,111,104,97,102,106,99,104,103,106,102,106,104,97,96,104,112,111,106,103,99,103,108,98,105,106,97,112,108,103,110,103,105,98,83,119,99,103,107,102,103,104,98,103,101,103,114,110,93,106,98,104,89,114,106,97,100,112,102,101,105,116,107,90,97,102,114,113,109,108,111,98,109,100,98,102,109,96,103,107,106,113,106,113,107,106,101,108,115,116,107,109,99,111,103,108,94,124,107,99,98,103,98,109,109,93,101,108,107,94,95,99,84,108,99,106,98,112,100,111,104,106,102,125,99,106,109,96,113,98,115,95,101,106,111,105,107,105,104,100,98,102,100,109,99,102,102,100,94,91,90,104,103,99,103,99,109,111,115,97,105,100,105,95,105,95,111,104,116,93,100,101,95,103,104,88,105,95,95,103,103,100,108,112,103,102,99,103,91,108,109,123,112,104,101,109,109,108,95,103,99,106,100,112,108,103,98,105,102,103,106,100,95,95,111,98,108,106,102,109,95,102,98,84,100,97,106,96,102,107,99,104,113,106,103,111,102,93,94,116,105,106,99,97,105,100,78,103,107,99,105,108,100,90,107,101,105,107,106,108,98,97,108,110,99,98,95,102,102,92,105,102,111,101,84,102,98,110,99,110,103,107,98,111,100,95,104,106,102,103,102,96,99,102,104,105,97,102,97,102,103,113,102,104,102,98,99,102,106,106,96,111,112,102,96,112,100,106,94,94,110,108,93,98,114,102,97,100,105,106,107,97,105,96,95,113,102,92,106,101,106,108,99,103,98,98,101,83,91,105,93,93,104,109,103,114,106,98,101,97,106,100,99,99,72,108,97,106,108,100,93,108,113,108,97,100,95,98,84,107,98,98,88,100,93,95,96,96,97,97,91, +473.74777,109,113,97,116,97,101,97,95,110,101,103,99,92,104,92,97,100,111,105,101,94,101,105,111,109,108,94,110,95,100,106,101,115,103,124,113,116,100,92,103,110,105,86,117,119,100,98,97,111,114,104,92,104,111,99,102,109,106,110,103,104,111,103,110,100,106,98,102,116,106,102,108,108,104,91,113,117,88,106,97,97,122,105,99,95,110,116,102,85,99,95,102,101,100,111,105,101,97,107,93,106,99,103,101,110,118,121,100,112,89,100,110,106,85,113,99,96,108,96,106,100,111,109,102,95,105,109,96,112,106,105,107,102,98,117,112,110,116,94,110,94,94,101,105,113,110,103,99,108,95,104,93,98,107,90,101,100,112,104,96,99,104,104,106,106,98,110,91,97,100,91,107,113,104,105,101,102,109,109,105,97,101,99,95,109,95,97,106,111,100,101,103,114,109,84,109,110,109,98,119,96,101,102,108,114,111,99,116,96,111,104,103,104,108,95,100,112,101,92,99,106,113,103,107,98,102,95,93,108,101,100,108,106,96,106,107,106,107,89,103,101,121,118,97,78,110,106,99,133,109,107,103,100,105,111,113,101,107,106,93,98,109,91,98,102,95,106,115,98,105,108,97,109,100,119,96,95,69,88,95,121,107,103,103,102,106,102,109,102,114,106,106,111,110,108,99,106,118,108,109,108,97,110,101,108,97,105,98,100,117,92,110,89,98,101,107,110,109,98,99,128,100,101,100,108,108,106,95,108,105,110,102,114,107,107,103,118,115,105,104,102,101,97,96,107,104,102,121,103,103,90,100,103,100,101,97,96,100,109,110,111,102,118,101,94,104,108,103,101,104,114,108,106,101,100,96,113,104,101,105,112,109,99,97,107,98,103,105,111,107,115,98,103,114,99,105,99,101,100,104,95,106,106,101,113,114,118,97,113,108,108,94,98,108,114,96,107,102,106,105,104,100,111,108,99,108,94,102,104,109,99,102,105,104,98,104,105,111,102,103,102,100,103,101,94,102,105,100,109,118,116,100,102,111,101,110,102,95,114,106,101,98,105,104,108,105,111,103,102,107,112,115,102,93,98,104,92,99,117,108,98,95,107,98,107,97,97,108,103,88,111,101,103,109,102,98,104,112,100,110,111,110,109,106,105,105,95,91,104,129,111,100,102,111,98,110,104,99,109,94,106,109,108,104,109,112,105,113,103,98,101,117,103,93,97,95,99,106,108,104,95,105,100,95,108,110,111,121,102,90,111,98,114,93,114,110,113,92,100,108,103,109,106,105,103,97,107,112,96,100,88,94,108,89,111,109,99,104,95,104,111,142,113,100,95,105,103,98,100,99,102,97,95,91,106,105,93,122,103,92,107,97,106,99,103,100,102,100,84,95,107,109,103,103,107,108,110,99,108,109,101,100,117,98,112,105,90,99,108,109,105,103,102,103,92,104,90,104,103,119,109,101,109,97,129,100,97,105,104,105,91,104,94,106,102,101,113,109,111,112,110,103,117,113,104,94,102,97,103,101,116,104,115,97,102,124,102,98,107,96,105,103,101,101,86,107,106,110,95,106,115,112,100,111,95,102,131,105,100,99,107,94,100,103,103,108,104,112,117,92,108,108,95,94,99,89,93,101,115,103,116,89,104,115,112,105,98,104,104,106,100,100,109,99,95,100,102,99,107,103,110,100,99,114,91,103,105,98,103,113,103,99,104,103,110,98,102,107,104,113,99,95,94,95,88,105,104,103,106,100,113,114,103,109,102,111,101,99,109,99,98,103,113,84,96,101,105,108,98,105,109,125,109,99,107,91,71,105,95,112,104,93,107,108,96,105,114,95,105,92,107,91,117,113,102,111,101,102,112,106,103,108,110,108,104,102,103,101,120,102,101,104,117,96,113,113,98,102,113,109,103,101,101,100,67,104,100,105,99,100,97,101,113,110,99,99,92,99,96,106,107,107,100,110,106,98,103,109,115,114,101,102,105,96,99,100,104,87,100,99,117,111,94,104,93,105,104,117,100,99,103,108,98,98,110,104,110,110,114,98,116,109,106,92,110,108,98,95,98,97,99,98,99,109,97,100,105,102,98,105,107,112,104,96,102,100,86,109,117,106,101,108,88,102,104,118,116,116,117,105,84,95,104,108,93,112,100,102,94,102,109,117,103,107,96,103,110,108,108,114,94,106,111,109,104,115,108,93,95,105,94,104,107,107,110,112,106,97,97,110,105,103,96,106,105,111,81,102,93,112,93,110,100,103,102,106,100,102,103,96,141,89,109,103,113,99,124,110,99,107,89,126,100,98,98,103,107,95,82,106,108,105,109,94,105,98,101,109,101,111,103,109,102,97,95,101,107,117,104,113,103,112,87,103,95,104,100,111,97,105,110,104,103,104,118,99,100,108,100,99,109,105,105,98,109,112,114,102,102,103,93,89,91,101,106,113,112,109,92,112,104,107,96,87,107,99,102,108,102,117,103,114,103,95,88,110,117,100,99,101,98,95,109,96,93,95,110,107,113,96,108,109,103,110,108,112,112,112,105,109,109,114,108,109,110,111,100,82,101,108,106,91,94,116,105,107,91,99,101,91,112,87,113,108,65,98,104,108,107,102,116,96,120,100,102,103,102,89,123,102,106,88,102,95,102,105,107,97,102,107,100,87,103,112,106,103,105,104,111,115,107,106,92,109,106,110,109,108,99,94,102,97,112,97,103,106,107,96,113,114,112,100,116,106,103,106,111,103,100,117,100,104,112,113,119,110,103,89,114,99,107,106,102,102,103,90,104,115,98,116,99,114,93,103,98,110,103,119,97,109,119,111,104,98,100,104,99,108,102,107,111,112,106,101,106,104,97,122,106,112,106,104,112,101,104,93,102,103,113,107,94,118,102,98,100,109,103,103,96,114,117,109,115,95,111,106,110,114,108,108,94,100,103,103,117,102,110,102,105,109,106,98,101,111,110,113,109,114,119,108,117,107,99,112,110,71,87,100,92,86,84,104,95,110,97,110,99,95,108,98,108,98,105,109,104,104,98,107,100,88,96,113,106,109,106,99,128,111,113,110,116,109,82,101,100,103,105,111,108,105,120,109,112,105,108,95,102,88,87,95,113,108,102,112,115,101,106,111,137,105,87,120,95,113,117,92,95,132,99,84,104,97,108,105,102,103,101,83,117,107,107,111,104,107,108,114,117,111,108,106,106,92,116,101,103,98,108,105,102,95,102,104,97,97,98,113,86,99,103,88,107,102,111,101,106,117,106,104,100,108,99,113,110,109,108,110,110,104,112,112,101,103,98,104,96,117,102,108,110,109,109,105,99,102,110,109,96,107,99,98,98,106,106,131,100,96,110,102,111,107,113,110,99,109,92,104,96,101,104,105,89,98,94,109,111,107,95,117,112,95,102,117,107,117,110,106,101,97,98,108,99,105,101,98,104,112,103,107,114,106,101,108,109,109,98,106,100,98,117,107,116,107,111,107,100,116,105,109,109,106,110,143,99,111,97,97,97,110,100,95,93,104,102,111,103,112,116,100,100,103,101,110,109,114,111,100,98,102,97,99,111,95,102,107,100,121,91,113,112,102,109,123,100,121,105,100,109,106,110,103,98,113,98,105,103,108,98,107,115,107,104,101,109,108,98,102,107,116,105,107,105,93,110,106,98,90,90,91,107,97,107,111,102,105,111,111,102,104,109,100,104,103,102,103,119,119,107,102,102,120,105,98,107,111,106,106,118,102,113,99,109,99,109,105,106,104,105,103,113,109,111,114,103,102,123,103,99,105,101,95,105,99,108,86,113,97,99,111,100,103,101,103,102,101,99,105,105,108,107,117,101,102,120,93,109,99,103,103,105,95,99,105,92,107,100,116,103,108,105,111,100,95,98,112,112,118,101,99,103,69,109,100,110,100,105,103,106,118,103,112,115,104,110,92,99,96,113,75,113,102,96,111,101,108,109,93,91,107,106,101,97,109,106,106,112,102,96,97,110,106,95,108,108,105,112,93,102,102,113,107,113,106,103,93,103,96,113,107,109,102,107,105,114,109,110,114,102,105,99,94,107,105,102,107,103,94,115,111,116,99,104,120,109,109,107,98,112,104,94,99,100,107,106,117,96,120,90,101,103,107,100,100,103,121,99,91,94,106,105,102,98,98,92,105,99,98,114,109,99,108,109,105,113,107,98,110,100,104,100,110,102,104,100,105,92,101,104,105,98,110,115,106,112,103,102,92,112,109,104,99,108,87,120,105,100,95,96,67,89,104,111,103,115,116,107,94,109,95,107,102,99,97,103,101,116,111,110,71,113,103,113,114,112,102,102,89,73,104,98,113,103,106,110,94,116,101,87,109,102,94,110,102,100,108,96,99,102,104,109,116,100,124,106,103,100,104,106,96,102,112,103,90,95,99,106,113,108,101,113,101,111,112,98,103,95,100,96,104,99,110,113,90,98,100,91,95,96,106,93,98,101,97,86,110,104,96,95,100,102,107,101,108,105,107,113,88,100,104,103,108,100,98,99,104,108,96,103,111,112,108,97,97,109,98,109,104,97,108,112,99,100,109,120,103,108,95,106,113,100,104,92,89,122,100,104,105,102,98,109,117,118,115,97,110,104,103,99,115,103,98,117,100,107,97,105,101,108,102,113,98,101,98,113,106,97,108,103,103,105,101,93,104,95,102,108,101,119,105,103,97,104,113,93,112,112,104,112,97,92,117,99,103,109,103,114,104,104,109,110,100,109,103,91,98,94,106,105,94,109,97,103,102,108,80,99,102,102,101,98,100,100,98,94,92,107,92,91,107,105,111,105,109,97,109,88,99,94,96,98,113,92,68,101,107,91,113,111,98,113,92,123,110,104,95,82,99,115,120,95,113,108,95,102,111,103,113,99,97,99,92, +473.88828,115,93,101,89,97,95,75,96,103,98,101,98,95,78,95,112,101,105,102,105,99,96,98,98,113,99,82,105,106,101,85,122,95,94,105,107,99,93,103,98,110,103,99,109,110,109,81,105,104,89,101,95,101,94,108,91,96,87,110,99,114,113,95,96,107,104,102,108,105,92,111,111,100,106,109,98,109,105,107,99,120,104,118,105,109,102,101,107,95,98,101,98,92,100,105,99,102,100,104,96,102,101,98,99,104,107,119,96,81,102,96,104,107,106,111,112,101,99,110,102,101,100,117,104,100,107,86,96,116,120,113,104,106,109,98,109,99,103,102,100,103,106,101,103,104,88,92,97,97,101,106,101,100,107,98,109,100,103,102,117,97,101,100,85,101,99,100,114,95,104,100,90,109,107,100,124,104,104,104,112,100,116,105,93,104,101,99,102,99,99,94,99,116,92,99,96,99,99,103,112,105,99,92,104,102,115,98,104,105,108,101,108,107,100,99,93,105,105,98,108,105,98,104,92,131,111,122,94,111,98,87,99,112,114,103,111,105,107,96,110,108,101,104,116,108,98,104,115,106,106,113,110,101,92,104,109,111,98,110,106,95,105,97,102,94,101,107,106,105,97,102,107,107,98,104,106,103,107,111,102,90,100,105,100,105,105,91,109,112,94,113,106,105,106,105,107,110,120,120,92,115,102,98,106,107,101,100,94,107,108,97,103,98,113,105,94,106,106,105,102,101,103,95,105,105,104,96,104,107,112,110,99,103,101,100,101,106,105,91,102,102,94,95,94,101,101,100,106,99,110,111,106,107,97,108,95,95,107,95,105,108,104,100,88,105,102,106,119,93,106,105,112,107,108,107,103,98,114,100,102,100,108,105,94,97,92,99,99,86,104,116,101,106,110,108,105,94,108,109,107,100,111,111,114,104,109,105,103,102,90,108,89,112,116,107,105,101,102,109,105,100,100,96,102,101,101,83,110,114,110,108,105,105,109,107,91,99,111,100,110,114,108,99,102,103,101,111,108,100,101,103,99,107,117,102,108,114,98,110,104,97,95,95,104,108,100,111,109,105,110,102,100,101,97,81,112,110,104,94,104,103,107,108,106,99,100,101,102,100,114,105,103,96,100,115,101,100,100,93,103,113,102,100,110,109,105,104,105,103,105,108,105,106,96,106,105,108,107,99,97,108,102,100,82,98,100,118,95,105,94,88,90,103,98,113,98,111,96,98,107,107,100,106,115,105,101,96,100,112,117,102,100,99,99,98,112,102,96,92,101,96,95,118,107,112,96,111,108,99,112,96,100,101,105,104,114,107,102,107,100,110,80,98,97,98,106,108,94,95,126,91,110,92,106,106,114,96,103,110,89,108,107,114,99,93,91,95,95,99,99,92,79,97,94,107,96,92,107,109,104,112,114,113,100,108,100,96,93,105,102,112,105,105,104,102,95,105,108,92,101,103,106,104,107,104,99,100,102,110,107,95,112,117,100,102,121,96,97,102,103,111,108,101,105,93,107,103,99,110,117,114,109,107,101,116,111,110,102,121,105,109,106,100,104,100,95,105,114,93,109,111,111,105,105,107,100,104,94,109,93,105,98,100,117,104,97,109,102,101,105,107,103,109,80,103,88,107,103,92,103,108,104,106,106,95,100,103,111,98,101,109,100,100,105,104,96,106,101,118,91,96,89,119,108,97,100,103,110,104,107,113,91,105,96,98,111,101,113,123,105,105,112,104,110,96,124,100,107,98,107,108,97,102,110,97,103,106,108,102,101,94,98,109,112,108,104,112,108,108,112,130,102,117,108,102,100,119,116,105,94,108,102,106,105,109,115,98,114,92,107,100,98,95,99,100,93,122,111,106,108,106,110,109,117,98,115,105,107,105,99,108,103,107,109,105,102,99,105,97,109,102,100,96,109,99,102,115,90,100,98,95,88,97,108,104,87,98,99,97,105,103,113,99,109,105,107,95,102,107,104,112,94,109,112,100,101,109,104,99,101,105,101,99,107,100,110,92,100,119,110,107,114,101,107,106,101,110,112,109,117,105,103,113,102,104,103,100,110,103,101,107,98,99,113,102,103,98,113,96,103,104,105,112,106,95,100,100,106,108,109,101,113,103,106,108,108,98,107,116,106,95,99,102,109,103,103,104,90,99,106,116,102,105,115,106,113,107,107,116,104,107,95,106,91,105,101,100,100,97,107,99,88,105,99,108,94,100,102,100,107,105,97,119,95,101,101,90,103,99,108,104,107,106,97,108,104,92,96,98,108,111,112,95,96,103,123,108,107,104,96,95,104,115,114,104,109,106,109,101,107,115,108,95,87,105,100,105,125,103,104,112,120,117,103,96,102,115,107,142,101,99,107,97,105,106,109,118,98,108,96,96,85,101,99,103,100,97,92,105,93,108,108,95,98,102,102,100,110,103,96,98,110,96,83,97,99,91,109,105,91,108,107,106,103,98,92,104,106,102,101,95,103,102,96,96,85,91,109,107,114,113,98,107,98,100,109,98,97,101,81,92,102,111,102,87,106,107,113,92,106,101,92,108,97,104,97,101,106,112,99,107,106,99,124,94,92,93,109,91,94,92,100,111,89,108,92,113,114,106,98,110,94,114,101,103,94,102,95,88,100,96,104,108,93,99,103,107,93,97,113,102,94,101,114,104,116,106,92,111,95,110,117,99,113,102,108,113,95,103,105,112,108,101,91,88,113,100,97,112,99,94,112,98,84,98,96,101,105,96,112,112,105,93,111,106,104,98,108,109,96,109,104,101,91,101,101,98,108,99,107,102,96,99,108,103,98,124,116,100,91,109,96,121,104,102,95,113,96,120,73,90,103,99,90,101,97,101,105,101,110,93,108,111,108,100,96,103,97,109,118,114,96,108,97,105,100,105,92,106,99,94,97,109,101,96,104,106,101,92,99,108,104,86,110,97,97,106,106,100,104,106,104,116,102,113,95,105,106,100,117,102,103,94,98,103,104,89,103,112,99,119,96,113,113,102,94,96,108,105,99,96,104,95,102,107,83,104,105,105,109,104,103,104,91,104,109,104,74,102,107,102,103,111,105,90,109,101,100,108,86,104,113,109,96,117,103,111,112,84,105,116,95,100,96,101,103,100,106,96,100,108,97,94,96,114,92,103,108,99,101,101,110,99,97,104,108,104,101,116,104,98,105,95,104,102,108,105,85,96,89,106,101,100,116,98,95,106,103,114,99,91,106,106,104,83,103,97,110,102,117,113,115,102,115,104,100,96,108,110,104,104,103,106,98,104,106,80,100,114,104,101,96,106,104,92,114,106,120,103,107,101,102,96,114,104,98,109,107,105,100,96,101,103,97,103,109,98,107,106,111,109,96,109,106,94,108,96,95,105,105,100,104,109,110,101,98,111,112,106,104,103,94,99,108,104,102,102,104,102,97,109,97,110,105,91,92,99,98,104,95,106,110,102,95,96,95,98,95,108,106,109,100,102,100,106,103,104,98,107,98,115,113,96,105,95,105,110,106,109,102,117,108,110,101,102,103,108,100,113,95,101,110,98,104,98,99,106,90,113,105,99,107,105,103,105,100,104,99,105,106,108,104,105,121,101,100,102,109,123,99,110,92,112,97,98,97,105,110,103,120,105,102,107,95,99,105,115,104,91,105,98,109,105,108,97,101,104,112,106,97,105,98,107,105,102,95,99,111,108,83,103,91,102,105,107,105,114,111,102,92,100,102,107,101,104,95,96,136,108,96,107,105,101,100,94,103,116,109,95,103,103,91,103,99,99,107,105,87,108,106,70,107,97,97,117,99,95,103,102,91,97,103,104,80,92,104,100,95,94,111,95,106,96,101,104,106,104,102,104,100,100,104,116,117,102,94,95,103,91,112,103,101,98,109,101,101,101,105,92,106,103,105,103,108,92,113,121,96,103,91,103,93,107,96,101,108,113,110,116,109,107,106,91,113,110,119,95,96,99,99,102,103,102,105,103,112,112,98,103,103,107,108,102,112,102,94,95,95,101,96,112,99,109,113,106,68,115,97,99,105,96,112,95,106,95,104,96,104,95,97,109,108,105,103,103,101,91,101,103,100,105,105,91,103,113,107,109,107,100,97,103,98,107,98,97,103,92,101,98,98,98,93,94,107,111,92,94,109,106,92,99,108,91,95,105,101,111,108,92,101,103,105,101,102,102,107,105,85,98,107,109,101,101,104,108,98,101,102,104,115,103,136,104,107,96,109,101,112,101,113,98,109,100,96,107,105,85,102,103,95,92,101,102,93,95,102,100,100,96,97,93,97,94,108,105,91,95,105,108,99,104,104,110,97,110,106,100,105,97,89,109,96,115,103,104,112,95,104,88,91,90,105,97,99,105,98,103,106,101,108,105,105,109,105,103,111,104,91,98,102,94,95,103,99,107,102,88,102,101,94,105,106,88,102,100,101,101,95,100,105,94,116,97,98,101,118,104,94,95,108,93,112,97,104,113,109,101,113,101,83,106,101,96,106,99,105,101,92,92,91,92,95,105,107,102,110,116,117,98,99,97,104,91,101,108,95,113,109,90,107,113,114,110,85,102,109,106,117,97,98,100,94,94,117,105,96,95,119,95,102,96,118,102,111,103,98,86,113,107,113,72,113,96,99,96,110,102,108,115,102,87,138,98,114,109,95,107,100,102,100,99,100,104,106,104,95,112,113,116,114,112,109,110,124,105,101,99,95,107,99,113,98,106,113,103,112,117,87,112,110,109,98,100,109,102,92,98,102,109,100,107,96,107,99,116,110,108,108,91,115,105,103,98,91,100,109,99,88,95,106,82,98,103,100,108,124,101,99,98,103,102,99,95,100,91,102,80,106,108,95,104,113,108,121,110,94,101,96,106,93,106,95,69,101,101,95,109,96,109,101, +474.02878,112,99,91,99,108,112,93,103,101,101,109,115,98,105,100,108,106,113,93,119,114,96,92,95,99,94,107,93,96,103,101,104,80,95,98,108,110,90,98,113,106,91,123,88,95,118,105,100,97,103,106,102,94,91,111,99,113,99,102,100,95,101,105,98,98,106,78,106,114,110,111,110,101,91,101,97,88,98,133,101,109,106,93,105,104,102,102,93,108,103,104,106,116,107,104,92,105,101,111,101,102,105,95,116,102,97,92,109,67,104,107,114,115,99,100,95,94,102,97,98,102,108,100,106,108,96,101,93,106,117,103,107,106,103,112,106,95,106,95,94,95,102,111,67,100,106,103,104,106,108,107,103,102,105,101,103,91,102,93,93,96,106,105,95,111,97,102,107,95,91,100,109,104,102,108,101,106,100,108,104,105,112,112,104,100,96,95,94,100,90,105,109,106,92,110,100,111,103,107,115,98,104,102,105,102,113,120,111,102,107,90,108,110,98,105,106,90,111,93,115,107,108,104,92,94,105,104,109,98,105,102,109,122,95,106,104,101,111,109,107,92,103,110,100,90,90,106,103,100,101,109,103,106,104,107,109,99,105,98,84,127,116,111,94,82,101,99,108,79,115,111,111,107,97,99,101,101,112,106,96,101,95,108,107,137,105,105,112,110,106,99,106,104,113,94,107,110,126,109,105,98,113,110,116,98,99,96,106,106,109,98,99,101,103,104,103,106,101,107,95,98,102,92,102,106,97,101,104,106,104,98,107,109,105,100,116,114,103,91,102,110,97,103,86,100,102,102,104,100,108,111,107,91,110,101,108,114,101,107,105,103,106,106,105,107,101,95,112,100,103,110,103,111,101,114,113,92,115,101,113,111,116,112,96,101,102,109,103,108,99,108,109,105,110,95,107,103,108,107,106,104,114,99,104,100,102,105,100,109,105,107,95,114,111,105,94,111,102,107,104,97,91,100,105,96,110,107,106,95,125,104,99,104,110,107,98,99,104,102,96,118,95,97,100,105,103,91,105,104,101,98,114,103,108,117,110,122,95,106,118,89,101,111,99,137,112,104,117,109,104,113,121,103,99,107,103,102,99,108,85,99,108,119,94,100,112,103,103,99,97,109,100,104,104,95,103,95,118,101,101,116,82,100,102,115,107,108,103,110,108,105,99,94,103,106,101,111,108,112,107,106,107,95,106,117,103,105,104,101,106,104,96,100,105,103,112,109,107,105,101,100,104,97,112,110,110,109,89,106,105,111,106,113,107,106,94,97,103,109,102,100,99,102,111,108,109,109,111,98,93,73,102,110,99,119,112,97,91,102,109,97,102,111,98,104,120,111,106,106,99,97,95,104,108,106,113,100,115,104,94,104,104,114,105,108,106,111,110,110,105,112,111,112,107,97,103,98,89,102,96,113,103,96,102,111,113,98,104,106,100,104,105,113,100,101,106,105,109,99,108,108,116,112,103,105,98,77,104,99,96,101,111,117,110,110,103,112,104,115,106,103,115,104,99,103,103,91,119,111,107,99,102,105,107,94,106,98,106,112,110,104,99,104,93,106,97,107,106,108,111,109,98,110,107,113,106,109,121,114,100,89,102,107,108,103,102,110,105,100,102,107,98,101,110,125,97,87,107,112,101,95,99,109,120,90,93,113,98,101,109,126,103,100,104,104,111,103,104,103,92,114,102,93,90,108,108,104,118,96,108,105,101,106,108,106,111,105,109,122,100,103,103,98,104,93,113,109,105,110,106,112,107,100,108,115,101,112,99,136,87,106,100,100,117,107,112,112,113,102,104,112,108,108,100,113,100,105,100,97,123,107,103,96,106,110,100,110,96,108,94,111,112,108,99,110,100,96,103,113,98,103,107,109,98,105,95,105,108,98,103,100,94,111,110,104,96,115,101,100,112,107,104,104,106,97,103,103,91,100,107,116,105,99,98,92,97,107,113,98,109,100,100,110,114,101,105,96,97,117,113,129,110,104,99,95,106,106,116,90,101,117,117,101,110,105,123,91,112,114,115,72,103,105,97,114,98,106,106,121,107,106,108,107,101,110,110,98,128,107,104,100,98,84,123,105,102,108,103,106,103,101,99,107,107,89,101,102,116,109,113,107,102,130,103,111,102,109,110,103,96,138,97,103,102,103,106,117,102,97,102,100,93,105,113,111,108,95,106,95,102,99,113,95,107,102,92,91,115,108,95,95,111,100,108,102,105,110,91,105,105,99,112,102,89,107,105,101,103,99,98,96,117,105,100,102,98,111,102,107,107,105,115,111,99,119,105,115,112,95,112,103,122,98,114,110,108,108,104,105,97,110,108,116,115,113,102,99,115,104,103,109,103,102,95,116,101,101,99,110,103,101,115,96,100,91,102,107,103,104,97,102,110,104,114,101,111,102,97,106,97,81,101,116,94,108,99,94,106,105,95,100,112,92,100,113,112,98,91,102,94,113,111,94,100,100,135,86,107,121,104,111,102,108,104,89,102,94,117,107,107,109,72,105,117,99,107,106,112,100,105,114,104,89,106,109,87,103,102,105,104,113,107,99,116,102,94,110,96,112,115,107,110,118,95,124,104,103,100,108,88,95,91,102,103,110,113,118,107,97,94,107,109,111,113,106,108,106,107,110,98,99,105,98,103,110,97,111,108,114,100,106,102,104,111,118,105,101,103,116,98,101,95,108,101,106,90,101,110,100,116,114,100,107,100,108,103,97,113,101,103,100,113,104,106,103,101,100,96,109,106,102,102,107,109,105,103,113,134,106,99,96,106,114,99,96,113,110,117,105,107,99,111,103,101,109,98,115,97,100,108,102,101,80,106,87,103,103,106,97,108,93,106,114,100,102,111,111,108,95,100,114,115,110,115,107,91,109,112,117,98,101,108,95,109,106,116,105,104,99,108,102,104,110,104,108,110,102,95,106,113,104,109,104,101,113,99,103,107,104,105,106,109,104,105,106,117,90,110,109,102,102,108,115,106,103,105,106,117,109,104,96,105,96,113,99,98,96,99,110,114,102,95,96,127,99,109,110,96,98,116,109,101,117,105,106,119,108,105,108,104,95,105,109,104,102,107,104,96,107,113,112,101,111,100,110,111,117,105,104,104,111,107,117,103,102,100,107,101,107,120,114,101,99,109,100,112,96,109,100,115,92,93,94,96,106,112,108,100,105,113,104,108,71,100,110,103,109,120,91,91,91,106,115,105,109,95,103,78,94,100,102,113,104,104,116,120,93,104,108,108,104,95,115,101,105,105,110,105,110,102,100,104,91,105,100,114,108,95,107,96,95,100,95,103,99,110,98,91,107,90,96,100,104,118,111,105,103,104,92,102,98,105,101,95,95,112,93,121,113,104,113,110,108,116,94,107,109,120,106,116,91,110,117,111,116,93,108,97,103,108,105,117,109,102,98,98,111,100,95,98,96,111,109,109,91,87,97,105,107,99,96,102,100,104,109,90,120,98,97,104,107,104,105,104,103,103,100,112,101,107,106,87,92,109,104,95,103,91,98,95,118,101,106,113,100,103,88,101,113,97,99,102,105,103,121,113,114,90,104,97,104,104,113,101,106,116,116,93,95,98,100,109,102,105,115,110,108,92,102,105,87,102,87,104,97,98,102,107,109,105,103,105,113,102,107,102,108,104,105,119,97,99,109,106,98,100,102,103,101,101,101,108,105,93,93,105,98,114,100,99,109,109,103,96,102,98,116,94,102,103,104,106,96,100,94,99,100,98,102,103,108,100,109,108,106,106,104,100,104,77,93,106,101,99,102,100,108,104,112,107,97,103,95,105,110,103,120,105,109,113,117,107,102,107,96,104,93,102,112,105,88,114,111,104,104,99,100,105,112,111,112,104,107,104,110,107,89,106,111,109,98,96,102,98,106,99,111,104,104,97,108,102,111,102,111,101,84,95,112,104,94,98,107,109,100,105,101,107,112,90,117,113,103,106,108,100,100,108,91,99,96,109,94,134,94,107,113,107,106,109,104,103,96,108,99,103,87,102,94,116,106,99,101,91,105,90,106,93,109,110,124,108,96,98,99,107,94,109,101,94,104,92,102,101,107,106,117,109,87,100,102,126,120,128,110,113,103,106,98,96,102,97,103,98,112,110,106,82,109,105,103,106,101,101,103,108,102,99,108,102,110,98,105,100,108,101,107,101,95,95,101,105,105,108,102,107,95,107,99,102,101,98,110,112,112,112,98,100,102,102,106,107,95,97,98,98,102,105,98,100,87,108,114,92,102,107,109,102,98,98,112,96,104,99,97,102,105,99,96,102,92,103,109,100,111,101,96,91,96,102,98,103,123,114,103,107,117,107,102,104,89,102,117,95,104,104,107,117,99,110,110,114,109,99,102,99,95,95,109,96,114,100,84,107,121,106,121,94,106,107,97,106,88,124,117,109,102,96,101,100,116,111,113,105,93,101,90,99,108,103,113,114,98,99,92,91,98,94,93,106,95,92,100,107,101,108,96,102,109,105,96,95,100,109,101,108,94,103,93,90,95,90,100,98,118,113,104,89,106,107,115,101,100,101,108,105,110,106,104,100,99,101,103,108,103,104,106,98,109,87,105,100,97,114,107,103,110,105,108,97,100,101,104,103,94,116,108,113,107,94,97,98,113,115,101,96,111,99,105,89,88,113,116,102,107,95,101,104,112,101,99,95,107,98,103,112,102,109,103,111,102,113,106,106,92,95,110,99,97,94,99,112,105,108,99,109,98,101,102,91,108,124,103,99,91,90,88,94,109,104,92,109,95,97,100,109,102,104,103,113,99,102,113,109,101,98,96,119,92,101,104,108,99,108,93,116,100,102,98,108,109,103,93,105,99,79,93,110,105,97,94,106,94,104,104,108,101,95,118,112,126,99,98,105,81,93,108,80,103,100, +474.16928,106,116,108,93,105,111,90,110,100,101,103,113,94,95,110,94,97,106,100,95,90,100,95,132,104,109,90,109,96,110,99,93,103,104,102,101,117,103,106,99,112,107,97,98,103,111,99,107,102,108,107,100,107,86,99,103,97,100,102,93,78,111,103,108,98,109,100,94,102,95,106,108,111,109,91,104,104,96,99,98,109,110,97,100,106,100,108,95,108,98,116,116,105,97,107,111,109,97,103,108,85,102,105,95,100,105,116,109,98,79,110,121,86,98,105,110,105,102,103,108,95,112,113,96,107,104,105,89,118,102,95,101,98,99,105,111,106,108,106,101,98,107,94,104,100,108,90,106,108,104,107,104,115,89,103,103,100,99,99,95,106,99,114,112,114,105,100,95,108,102,105,89,97,104,90,100,101,93,103,103,102,101,100,104,105,104,112,97,94,101,99,112,100,105,90,98,97,99,116,96,101,93,108,100,99,102,109,105,111,105,112,96,111,96,99,99,114,116,108,114,103,105,105,109,96,100,107,108,98,91,97,109,97,96,100,105,108,94,101,111,105,107,96,98,107,100,106,122,96,107,96,105,99,115,105,101,114,103,105,97,97,122,98,101,90,114,100,107,100,104,109,72,100,115,106,101,88,108,98,101,112,106,101,107,112,109,109,100,90,109,99,113,113,113,117,105,103,106,109,100,99,102,103,113,104,109,99,111,108,111,92,102,101,115,103,107,104,108,103,99,98,105,87,106,109,98,102,103,111,92,108,92,104,112,108,119,96,104,100,101,98,108,95,102,106,105,103,121,107,103,112,90,113,88,96,99,113,106,101,100,103,118,96,101,104,100,120,100,106,103,100,102,117,140,107,103,106,98,122,116,100,103,98,105,110,87,109,97,89,109,115,114,94,113,99,111,105,101,101,122,105,114,95,101,110,96,97,99,109,101,100,109,117,111,108,93,105,109,107,107,86,105,101,107,95,90,100,99,87,98,107,105,111,91,108,100,97,99,107,99,98,107,110,102,100,99,116,95,111,99,103,110,101,106,104,107,84,99,112,106,106,101,91,110,106,103,100,86,115,100,102,105,105,100,102,99,88,98,88,99,108,105,92,98,105,112,104,104,105,105,102,113,107,102,102,91,107,102,96,95,110,101,96,104,114,112,102,113,118,112,106,104,99,104,110,108,95,119,94,99,104,110,90,100,99,104,107,92,100,94,101,103,107,89,104,102,95,94,101,122,95,96,108,103,113,104,110,112,110,110,91,92,102,95,97,98,97,104,99,104,90,101,98,103,105,111,105,103,99,91,102,107,106,108,105,104,106,100,105,105,107,110,98,104,113,93,103,114,104,106,97,98,97,89,95,105,102,98,115,109,98,110,99,105,95,102,97,97,100,100,109,101,107,111,120,104,98,105,115,99,102,103,97,98,116,103,101,108,99,107,98,113,95,108,95,94,118,90,105,109,107,102,100,108,99,112,103,113,102,117,100,100,100,94,111,103,107,117,115,79,89,108,109,118,89,110,119,91,108,104,117,90,95,105,107,98,105,97,113,115,97,99,114,104,105,105,101,105,93,98,105,98,107,114,97,105,97,112,113,92,109,91,102,103,107,105,106,100,115,100,106,115,105,90,108,111,106,109,93,108,96,101,100,93,100,95,105,102,111,113,104,105,98,94,122,112,109,109,115,100,95,105,95,108,96,106,100,108,99,96,104,103,99,102,93,104,96,101,105,100,102,107,106,102,102,108,98,103,101,108,104,90,114,103,101,109,106,104,108,87,105,91,102,106,101,108,99,104,103,99,107,98,110,104,99,100,96,118,107,113,97,97,89,92,110,105,103,104,99,94,100,95,113,95,109,105,113,109,105,101,106,107,111,112,108,117,106,101,101,126,112,102,117,99,109,105,109,116,103,103,95,109,107,106,115,100,106,101,105,88,101,101,98,99,102,112,107,111,103,99,110,93,103,118,109,105,97,97,112,111,92,117,118,107,96,117,105,79,94,104,115,97,103,98,99,114,98,94,99,106,104,98,99,109,103,103,106,102,102,112,103,101,115,108,112,99,101,107,108,98,90,95,105,99,122,102,98,101,101,92,103,102,101,102,107,105,103,105,99,113,90,109,100,101,98,93,113,91,93,99,96,108,104,110,92,96,99,107,96,100,108,106,100,111,100,104,122,101,106,102,110,104,94,104,103,100,103,105,96,76,101,106,107,96,91,105,113,106,95,105,99,110,105,111,103,119,104,95,106,104,99,107,109,103,101,97,103,106,99,91,100,102,108,96,103,106,100,107,96,115,100,86,109,101,109,112,106,121,105,97,118,106,97,99,102,109,95,104,109,106,90,105,112,94,89,107,103,101,108,105,111,101,95,96,99,95,97,101,102,96,98,101,98,109,102,101,100,102,104,107,100,127,106,99,97,90,83,108,108,102,84,106,94,105,102,103,106,105,106,101,106,98,90,107,99,107,97,102,113,102,110,88,115,104,98,100,132,94,116,111,108,91,105,97,85,103,108,117,109,117,100,110,107,109,103,100,111,106,113,114,113,102,103,116,113,104,100,107,106,102,110,96,92,102,103,102,99,96,101,110,107,102,97,106,109,95,104,103,101,103,114,113,114,99,111,104,105,103,102,110,106,113,99,94,109,106,105,90,119,123,103,92,109,104,112,100,104,93,108,95,91,102,101,106,104,113,105,111,95,102,101,116,107,101,105,100,113,80,104,108,111,108,96,109,105,99,106,107,109,108,103,122,108,119,105,98,113,108,110,102,113,109,105,105,109,105,95,115,91,111,104,114,99,110,107,107,113,107,115,112,98,102,115,96,114,88,115,107,108,104,109,104,108,111,90,103,103,110,100,117,112,108,104,101,104,95,104,104,95,119,109,80,109,105,107,105,101,100,104,108,102,106,111,99,103,109,104,115,107,107,106,98,106,103,117,96,106,91,98,102,108,110,99,111,112,101,125,112,97,108,107,109,103,100,109,110,103,110,111,97,120,109,108,112,105,109,107,124,102,102,101,94,97,106,104,100,97,103,91,106,106,110,104,94,103,107,106,115,100,128,110,99,110,100,108,108,107,100,104,103,95,111,103,99,106,106,113,101,106,113,114,106,109,121,109,104,106,97,91,97,100,95,103,100,81,103,76,105,95,105,104,108,109,67,99,117,109,108,101,98,111,95,105,101,105,108,109,110,104,106,97,104,95,106,117,94,102,116,107,113,96,105,110,112,106,92,83,100,104,100,109,106,107,116,107,91,107,107,95,106,101,105,101,108,114,103,113,106,109,100,111,112,99,106,106,98,113,99,115,102,104,110,106,97,119,107,113,79,99,92,100,120,108,103,97,94,111,95,112,113,108,117,103,97,97,105,97,101,109,116,107,109,112,97,98,110,100,107,117,89,92,98,107,104,104,108,107,106,100,100,113,105,106,107,102,110,117,115,98,111,100,104,106,98,94,108,135,113,101,115,124,110,99,109,100,109,102,92,106,105,96,108,125,102,113,104,111,98,113,101,105,100,111,89,103,106,104,104,109,100,108,98,103,111,116,111,105,110,103,113,106,97,106,113,99,102,108,100,108,88,109,107,108,111,107,95,98,102,93,107,101,90,93,98,94,91,106,96,108,99,110,100,95,110,109,103,106,101,110,110,100,107,100,104,104,99,101,117,108,106,116,118,107,98,110,109,98,104,102,103,101,104,106,104,108,95,100,104,103,105,98,94,116,102,102,98,93,102,106,114,109,105,101,108,121,97,102,95,102,96,100,104,98,105,112,95,109,94,128,103,102,110,110,109,113,105,102,100,99,107,102,109,106,100,106,104,94,111,100,98,92,108,107,105,102,103,113,99,95,103,103,113,98,103,113,106,98,102,109,99,105,106,105,101,97,98,104,92,113,98,105,105,97,108,99,96,120,95,102,106,99,100,112,104,106,103,107,110,102,101,100,107,90,106,97,114,108,102,93,91,110,103,103,102,114,109,103,113,96,115,106,108,91,107,122,103,93,103,107,112,108,102,98,120,108,107,105,104,126,95,98,81,106,95,111,116,99,109,105,104,107,109,98,101,95,99,100,87,120,108,102,112,101,111,104,102,115,105,112,100,95,78,108,106,101,121,105,98,106,110,100,109,91,119,82,109,114,108,94,104,109,87,103,103,112,109,114,112,99,103,99,110,105,108,110,112,102,104,104,98,107,88,105,108,119,98,104,103,94,112,98,106,99,98,97,97,98,113,103,111,104,98,101,100,109,103,91,84,116,111,105,84,102,98,107,108,99,94,99,108,107,104,77,98,111,95,99,88,105,99,104,98,113,106,106,108,110,94,98,93,115,95,111,91,115,101,125,106,110,103,106,111,115,110,88,94,106,106,96,102,104,112,102,100,102,108,110,119,100,94,104,93,105,110,101,99,102,104,104,104,83,103,104,108,101,98,96,108,105,105,108,101,101,95,98,96,101,103,102,119,96,107,93,126,109,116,102,99,99,106,88,103,95,108,113,96,123,101,109,99,94,108,107,104,98,109,107,106,85,104,102,111,95,106,103,91,96,103,99,101,103,113,107,120,100,104,112,91,103,97,96,92,101,108,101,99,94,101,99,113,95,107,99,102,89,105,108,90,99,102,102,105,96,94,103,106,110,96,115,101,107,101,120,103,87,102,109,105,99,109,95,97,101,112,102,84,106,111,102,101,96,106,99,113,104,105,106,117,102,106,86,98,100,123,101,104,100,109,100,99,104,96,97,99,97,107,106,101,101,108,92,92,107,94,103,96,109,91,104,101,98,104,103,98,99,100,93,111,121,107,104,100,81,98,89,116,105,99,100,90,85,103,98,104,96,110,94,112,100,94,99,111,105,114,113,81,104,116,92,102,102,81,98,95,106,98,118,97,103,101, +474.30978,110,105,100,103,101,112,106,103,100,108,98,101,99,104,100,102,96,98,108,97,120,98,102,100,106,96,99,91,109,98,123,99,114,98,107,113,85,103,104,104,90,88,75,104,93,98,110,103,102,103,109,86,101,102,99,95,82,84,102,101,90,104,105,109,102,109,100,106,98,105,101,104,102,112,96,104,97,105,116,99,108,105,96,98,105,87,100,100,102,100,91,99,99,99,105,106,121,113,85,99,98,93,97,105,109,98,102,101,103,106,100,113,114,109,101,104,96,111,84,99,104,112,105,99,107,105,109,101,115,104,106,115,103,104,117,106,109,108,106,92,97,101,99,108,95,99,107,104,93,88,103,93,106,103,109,97,103,109,96,102,106,110,115,103,105,102,104,104,114,92,105,102,98,105,98,106,94,105,114,114,98,110,91,99,112,115,114,88,124,116,96,98,93,109,103,102,92,104,91,101,96,101,101,105,107,105,98,97,110,108,107,100,104,98,114,100,108,113,102,115,87,109,92,90,97,109,103,88,101,98,122,109,102,107,98,111,100,112,103,105,108,112,95,108,102,108,106,91,103,99,94,101,102,111,95,95,112,103,91,103,74,104,101,96,90,97,102,101,118,105,107,116,96,99,103,111,87,100,105,91,104,108,96,95,108,108,112,106,110,113,108,105,97,83,99,98,110,102,100,107,108,110,96,111,114,112,86,114,89,103,109,117,98,113,97,97,107,115,105,100,107,97,100,113,107,115,108,103,100,112,103,99,100,107,120,100,111,99,101,108,98,115,101,96,94,102,99,101,106,102,98,105,106,107,103,108,105,104,92,114,86,99,100,112,104,100,99,120,95,109,118,98,110,98,104,98,110,100,105,106,116,108,105,100,110,112,98,105,108,97,105,96,91,99,94,107,103,104,103,104,101,104,110,98,125,91,96,103,101,101,91,102,112,100,105,99,90,96,108,121,98,96,97,105,107,98,99,101,102,121,96,105,101,88,99,108,100,113,98,107,113,106,113,105,102,110,101,103,107,103,95,73,108,97,104,104,103,102,107,102,91,108,113,104,104,99,107,104,105,106,111,103,101,101,112,100,94,95,107,99,99,112,110,107,97,103,104,99,83,99,95,94,104,105,92,100,108,101,110,106,111,116,98,87,107,104,103,105,94,105,111,111,106,105,107,101,102,109,111,93,100,112,100,94,102,108,100,97,106,93,107,106,114,107,105,95,105,98,107,112,83,103,98,103,112,98,111,107,105,111,102,107,110,114,96,106,120,100,96,110,102,97,79,112,104,113,109,110,97,104,107,99,102,97,103,99,110,82,98,103,110,93,108,103,92,92,112,111,112,102,107,112,104,106,108,102,101,100,113,118,106,99,104,112,92,99,106,108,102,103,102,105,102,95,107,106,104,118,104,97,106,109,109,105,95,96,82,114,110,107,95,101,97,114,105,108,95,99,112,112,114,113,99,100,107,105,104,98,116,113,102,106,97,105,104,112,98,104,109,90,112,113,107,100,87,101,108,100,112,106,107,100,107,81,105,102,105,103,101,106,115,97,116,98,98,106,97,105,113,114,106,105,99,106,103,106,108,107,106,96,110,88,113,93,99,100,104,105,112,105,92,105,105,101,99,109,112,107,100,104,94,102,118,103,97,87,101,102,110,111,104,106,94,97,103,106,98,89,111,107,114,107,108,97,98,107,85,109,97,113,102,97,96,98,106,91,100,108,106,112,105,103,95,104,96,107,98,106,98,92,112,112,104,108,95,106,109,108,111,110,80,97,102,102,96,104,110,110,107,105,96,101,103,117,105,112,100,109,107,105,98,106,100,101,95,129,100,110,108,95,101,110,102,105,112,91,108,107,94,99,107,91,104,108,105,112,113,86,98,113,114,107,110,110,101,102,106,116,103,100,101,100,86,95,96,98,104,102,104,130,109,93,104,114,108,92,94,108,104,112,104,112,102,95,108,77,99,103,98,113,103,98,108,105,101,104,93,92,97,103,113,116,109,114,106,100,116,102,108,107,107,102,92,104,107,103,108,114,103,107,105,123,113,117,102,117,99,99,114,100,109,95,101,95,94,97,98,99,105,81,107,99,107,121,88,104,99,81,103,101,103,100,110,102,113,101,108,99,102,113,111,95,94,92,105,107,102,99,105,108,114,110,102,105,118,104,110,101,105,96,69,97,98,74,101,104,99,110,103,102,107,89,117,123,114,108,103,96,107,105,89,103,102,122,101,103,96,93,96,75,103,103,100,107,97,109,68,108,108,107,105,112,104,104,107,102,110,85,98,109,97,104,91,113,99,98,103,105,99,104,98,122,104,109,104,89,98,100,100,104,92,101,111,99,120,97,106,109,95,112,107,101,102,103,99,98,96,106,92,86,101,107,102,90,95,107,91,103,106,103,88,102,120,108,107,104,93,101,101,111,95,114,104,87,98,111,105,100,99,93,96,110,95,84,113,113,98,100,107,100,113,107,113,97,87,105,110,102,112,103,106,105,99,104,114,109,107,108,114,110,109,114,113,102,111,110,104,96,105,111,106,104,99,104,106,97,99,111,106,104,125,118,100,92,109,96,115,106,108,117,111,107,84,104,100,106,99,105,116,100,111,98,110,86,90,102,108,111,112,104,103,99,111,101,117,108,102,99,100,102,103,97,105,110,99,104,103,108,127,96,111,103,103,108,107,102,117,96,98,107,102,105,104,115,106,113,107,101,99,111,102,106,99,108,99,115,100,108,111,104,105,120,108,106,108,99,99,115,104,108,115,108,105,109,104,106,102,97,121,102,100,99,103,92,102,96,112,110,126,112,109,114,102,105,103,101,96,107,109,105,98,113,110,98,103,103,104,110,109,108,99,105,99,98,118,101,116,110,101,115,110,134,97,106,100,101,112,97,102,111,91,107,113,111,101,120,104,103,111,106,94,110,98,120,103,111,119,103,108,106,115,114,101,104,106,96,95,111,98,105,101,101,98,101,106,94,112,106,102,114,102,102,92,114,107,111,109,112,102,109,105,103,109,102,115,122,116,102,102,109,119,105,112,94,108,106,108,96,111,102,106,112,99,117,112,88,110,101,101,88,111,113,97,102,103,102,100,112,105,108,113,107,108,119,103,101,107,107,103,107,92,116,105,107,110,75,96,103,93,108,110,96,109,102,98,107,113,95,114,99,104,109,95,99,98,103,117,103,109,103,97,112,109,113,106,100,111,106,89,93,95,122,109,95,110,97,117,102,112,101,90,111,113,111,117,94,104,113,122,108,101,97,83,94,120,117,105,121,106,107,104,80,107,109,97,96,98,100,103,102,102,111,104,93,109,104,104,105,104,95,104,94,100,109,103,109,112,101,104,107,106,121,142,104,100,93,98,91,98,105,105,110,96,102,110,97,105,121,111,104,90,99,96,106,105,97,98,87,100,100,98,76,113,112,106,100,90,101,87,111,114,91,106,91,120,101,96,103,104,109,101,118,117,99,102,106,87,102,106,92,111,99,95,101,103,96,100,99,102,104,120,105,99,104,93,102,103,110,115,115,100,112,105,102,106,107,90,94,86,102,117,98,111,112,96,98,113,93,96,93,100,92,102,133,111,101,106,96,111,106,104,106,109,109,102,92,101,102,107,110,64,109,104,102,108,108,104,105,121,104,104,97,106,99,97,101,94,105,112,105,105,113,120,114,83,115,103,107,102,98,105,107,106,118,99,100,121,114,96,98,110,106,97,96,96,117,97,99,114,92,111,110,99,103,114,76,113,116,100,124,106,101,101,101,101,109,104,100,124,101,108,108,122,111,109,99,117,111,117,113,92,116,99,98,86,103,102,101,93,116,102,103,106,116,100,105,119,101,113,89,117,109,99,111,105,93,102,115,98,107,99,98,96,101,110,102,109,99,99,98,98,105,100,95,92,107,101,92,104,97,110,98,93,99,109,104,94,109,115,105,108,90,100,112,105,128,91,116,97,100,103,104,107,104,106,106,109,104,106,84,103,105,102,95,116,112,103,108,112,113,109,113,108,97,117,103,132,99,109,113,115,105,112,102,111,105,105,112,116,105,114,104,112,110,96,107,108,92,104,108,107,98,108,115,114,108,99,112,106,106,109,114,109,102,100,110,100,110,107,106,106,101,106,116,96,100,102,109,104,108,105,102,109,104,110,110,113,103,93,103,107,107,108,102,122,101,98,120,110,108,112,119,114,99,93,101,106,99,95,107,110,99,103,105,98,99,107,94,108,108,109,106,109,115,108,99,109,111,112,94,126,92,103,102,107,109,105,103,102,113,98,109,109,98,104,103,103,95,101,99,113,101,104,103,111,106,111,108,101,108,103,101,111,94,106,97,105,117,102,123,110,96,101,106,102,102,121,101,114,107,95,101,109,103,102,103,111,101,113,101,113,101,97,108,95,111,98,107,106,107,109,111,98,96,99,96,96,108,100,109,108,114,98,109,133,90,110,111,111,105,109,100,104,109,110,92,105,111,96,118,100,117,94,106,107,110,109,114,97,96,101,101,103,105,101,112,111,107,101,109,91,106,92,102,99,107,102,97,111,116,98,105,113,104,98,115,123,94,99,104,109,92,116,109,118,113,116,106,96,108,96,109,109,108,99,110,105,103,107,99,111,114,90,95,107,111,105,112,92,104,101,85,100,97,100,115,101,83,101,77,101,106,98,101,109,104,109,113,92,97,102,97,113,104,120,99,100,121,94,108,95,115,103,102,116,99,121,94,81,115,108,101,101,107,108,109,97,93,108,107,76,112,113,105,104,103,118,101,100,95,99,95,91,91,117,82,115,121,94,99,108,110,104,83,100,100,94,100,94,88,109,115,114,112,107,114,97,95,106,101,115,101,94,102,91,91,110,131,89,89,107,103,98,113,121,112,100,112,120,100, +474.45029,106,110,97,103,99,135,94,105,89,105,105,87,102,99,94,106,93,99,107,101,130,109,111,101,119,81,115,97,103,110,108,99,99,99,102,99,105,100,114,123,87,111,107,106,97,99,104,100,94,98,92,99,109,101,104,100,112,102,102,104,110,108,100,94,110,108,97,106,94,116,101,99,100,89,104,107,102,98,115,107,89,105,105,105,97,90,109,107,103,98,102,94,95,95,96,100,100,92,109,103,101,107,99,104,106,69,127,103,99,107,106,112,99,93,107,98,107,110,107,103,97,105,105,110,100,114,116,103,113,102,100,96,107,104,116,100,103,110,95,100,101,115,101,101,94,110,113,86,94,99,101,110,104,96,100,117,95,121,103,104,94,99,105,98,90,93,101,95,103,98,99,109,105,106,98,97,116,92,107,103,114,96,94,90,109,90,91,97,114,100,100,109,102,104,78,98,119,95,99,86,88,131,102,110,104,99,112,96,105,104,94,129,103,101,95,95,94,110,99,103,112,100,112,105,94,102,100,111,109,103,85,97,112,94,105,103,109,110,103,121,113,97,114,110,96,99,106,97,98,117,93,107,91,105,96,93,106,116,91,99,99,110,103,108,82,103,105,101,97,98,103,102,117,104,107,120,110,106,105,104,103,110,97,103,113,92,100,107,105,99,100,99,112,104,116,105,111,129,108,106,100,95,116,107,110,108,103,112,103,116,102,115,112,107,97,101,106,110,96,103,107,104,105,113,111,101,94,104,103,109,118,106,102,118,94,112,98,102,94,113,106,98,101,102,106,108,112,112,103,108,105,101,109,106,114,111,109,102,108,107,104,99,99,101,99,98,106,103,105,100,109,107,100,104,121,100,110,114,101,113,107,104,103,105,98,107,104,103,100,103,104,94,95,119,88,96,104,101,103,98,107,102,91,104,107,102,108,100,104,103,102,100,103,96,106,96,105,96,112,109,106,113,88,105,105,107,98,112,103,109,103,112,121,108,109,107,104,103,103,100,115,115,105,97,95,111,86,96,108,108,112,98,104,103,103,104,101,89,98,110,95,108,108,110,107,104,106,102,109,103,102,96,104,94,102,100,101,103,102,96,106,108,103,99,100,110,113,99,101,92,102,105,107,101,98,108,108,115,113,104,109,103,105,117,105,113,111,100,106,94,110,95,100,110,114,98,99,104,109,96,95,94,106,101,103,103,108,94,109,103,107,99,111,95,101,99,104,98,104,102,113,102,95,113,104,105,115,102,101,103,84,110,95,96,105,114,113,91,111,107,122,91,85,95,104,108,104,121,109,111,101,96,94,106,108,106,102,109,112,100,107,107,94,110,96,101,105,107,95,95,108,102,100,105,111,96,115,102,117,104,110,121,100,101,104,99,100,107,109,102,113,99,103,104,103,101,114,108,103,100,102,96,111,113,118,108,93,109,115,117,111,108,105,107,93,114,105,99,100,113,100,107,102,105,101,98,112,112,114,111,101,105,98,117,117,103,115,108,109,107,112,102,93,110,95,111,100,103,117,103,107,106,108,99,104,102,108,108,120,99,100,109,118,97,120,104,104,107,104,114,104,115,108,105,107,104,104,114,101,99,107,107,105,103,88,108,122,102,97,118,98,109,105,99,98,100,102,108,103,99,105,97,111,108,94,96,107,110,104,105,105,108,94,103,105,113,104,108,115,98,123,104,104,114,113,109,126,102,112,114,117,104,107,98,112,106,106,105,120,113,99,104,95,114,94,98,110,111,108,105,115,111,114,116,103,111,109,113,110,103,92,117,109,110,105,110,95,103,104,108,111,103,91,114,105,113,103,105,109,92,112,97,100,102,106,99,124,87,108,105,114,108,93,105,116,76,125,115,117,107,105,109,99,109,102,117,111,105,117,107,109,94,105,116,95,107,107,106,100,103,104,105,107,109,108,105,106,109,100,97,91,92,106,100,109,95,117,112,107,123,110,112,107,121,115,92,111,103,113,105,102,105,102,104,106,104,108,97,107,102,113,121,109,110,115,114,94,118,104,99,106,102,107,108,105,97,102,114,95,110,104,112,104,110,103,100,107,104,105,98,99,103,112,107,106,105,98,111,107,106,104,99,111,111,103,100,80,116,113,115,105,117,107,108,105,104,108,100,101,99,94,106,105,114,102,106,108,100,126,105,121,106,109,100,105,99,126,107,102,106,117,110,101,99,120,119,97,105,106,111,95,105,100,109,103,112,103,94,101,103,88,111,92,103,117,97,99,100,103,102,113,96,135,105,104,91,104,98,115,100,102,110,117,105,104,109,109,104,99,104,87,101,104,112,100,109,113,97,116,100,126,106,100,100,114,109,104,117,96,106,94,103,110,93,107,108,105,103,114,112,120,107,107,102,100,99,100,93,110,105,105,100,114,112,109,101,114,105,95,88,91,117,107,88,103,106,113,99,114,105,110,111,102,117,106,104,97,108,105,116,102,79,108,101,108,111,100,98,101,109,102,112,105,102,89,106,105,98,100,102,95,108,108,119,106,107,113,112,105,102,95,106,109,104,109,78,109,106,105,107,102,94,100,104,93,98,95,105,110,98,130,116,104,107,105,95,104,98,104,95,105,98,103,98,101,112,102,107,115,107,76,102,106,100,109,107,106,103,102,102,107,100,108,109,113,110,103,97,106,113,112,97,112,102,99,102,102,87,107,99,95,106,111,106,102,95,116,105,104,113,109,96,105,100,100,114,105,108,114,87,101,109,105,97,105,104,106,102,98,91,103,109,98,106,115,106,104,107,102,99,105,107,97,101,92,104,111,102,115,115,101,108,96,111,108,104,91,113,101,108,97,111,116,93,96,86,105,116,98,114,109,106,111,105,105,118,109,106,105,108,111,113,114,101,115,99,121,113,110,109,105,111,100,105,101,109,112,105,129,95,103,102,90,104,103,104,114,98,104,97,110,106,98,113,109,98,84,104,97,94,106,110,108,116,111,111,102,106,97,95,104,100,104,102,101,111,101,102,113,119,107,104,100,106,97,109,105,108,98,99,115,98,100,103,122,90,101,90,111,88,109,108,132,89,101,105,98,97,102,92,110,107,103,95,98,103,96,102,99,104,96,117,112,99,117,102,117,103,106,93,112,113,112,102,121,99,98,96,106,126,110,91,89,106,102,101,74,99,103,104,102,107,101,79,96,105,104,91,115,102,105,100,108,96,107,106,104,99,95,79,118,99,119,125,95,97,107,103,105,108,105,108,105,94,106,106,102,103,110,90,97,107,112,110,109,95,97,108,114,102,111,105,92,104,103,104,100,102,112,98,109,94,112,109,95,109,113,92,110,95,118,92,103,100,98,113,101,100,104,102,128,108,107,96,99,109,98,80,100,104,103,102,103,103,107,100,99,108,97,95,107,100,91,99,106,100,98,108,109,92,108,99,104,103,103,103,86,107,103,102,106,105,94,93,95,113,105,112,95,104,117,105,109,95,85,99,103,109,97,102,108,110,104,104,105,108,110,105,83,105,106,98,95,110,108,99,113,109,101,108,109,106,102,110,105,110,114,106,105,110,103,106,100,100,108,104,88,106,113,109,119,97,105,120,111,113,106,109,87,105,102,104,107,108,111,104,106,105,106,109,89,110,110,106,117,108,95,101,110,112,106,121,116,110,101,104,117,113,114,118,107,112,102,102,115,97,93,109,105,111,104,103,97,95,95,102,98,106,102,92,108,102,102,83,99,119,106,115,109,109,114,93,112,98,107,101,108,110,98,95,97,107,108,94,104,103,99,107,98,102,97,102,95,100,96,100,100,87,104,93,102,107,96,100,109,109,98,102,109,100,117,100,102,94,107,109,113,94,99,72,104,110,105,100,103,97,124,97,103,108,100,105,98,104,112,107,106,107,105,100,86,105,88,103,96,104,118,110,97,109,105,97,104,98,112,101,99,92,106,109,96,94,108,89,98,112,112,108,109,95,109,105,104,113,99,99,102,110,100,95,106,100,93,106,95,104,100,97,105,112,100,103,96,112,107,104,99,112,113,91,118,113,103,104,102,96,119,86,101,111,106,91,106,99,102,110,96,108,119,106,117,108,98,104,97,101,102,98,108,92,99,115,107,100,79,110,102,96,102,113,108,108,95,111,120,110,105,99,110,115,110,96,107,101,109,112,95,106,106,113,124,102,96,94,111,100,108,114,101,92,104,114,115,110,103,114,109,109,118,99,98,104,111,110,110,109,94,105,98,106,113,95,97,98,100,100,109,112,96,101,91,94,100,102,101,109,103,107,107,109,116,100,109,106,101,98,111,98,100,98,101,106,91,109,113,92,108,93,112,120,94,97,108,105,115,103,107,105,99,108,109,107,108,107,105,81,106,99,111,104,98,112,117,106,104,93,109,98,105,101,92,107,106,102,103,102,106,113,103,93,102,103,108,102,104,109,91,95,110,95,94,104,99,88,104,94,98,79,80,100,110,104,101,119,114,101,112,104,109,106,91,105,111,112,116,98,113,105,95,95,90,101,92,102,113,110,113,103,97,95,99,94,96,106,91,115,109,101,102,106,99,117,99,102,104,104,109,100,101,108,105,101,120,100,101,110,115,111,109,108,79,97,108,102,96,103,102,108,111,100,107,93,99,109,102,108,110,105,97,99,113,101,98,110,101,118,102,109,101,97,93,101,120,100,99,97,112,112,111,96,134,100,104,107,113,93,109,104,98,104,82,94,99,98,102,105,109,97,102,106,113,116,95,101,107,95,95,97,98,100,103,102,88,112,103,100,98,116,100,103,106,113,104,94,108,109,104,99,102,97,87,102,116,99,96,118,95,89,101,96,113,101,99,102,106,106,97,111,99,94,95,108,94,95,90,110,91,96,102,96,99,112,108,103,104,100,92,100,98,90,98,107,98,92,106,98,107,100,92,100, +474.59079,95,103,106,86,105,109,94,104,117,104,98,105,110,100,98,100,108,111,103,110,99,108,94,124,109,110,92,110,104,103,101,95,92,103,106,90,99,98,103,106,102,105,83,97,108,117,109,97,94,97,91,107,71,108,89,102,110,90,102,98,117,100,63,98,111,118,106,107,98,94,87,103,97,100,88,96,107,105,97,107,97,105,104,102,106,104,99,105,94,107,98,107,109,105,95,110,109,107,89,110,107,103,96,94,117,84,108,108,98,104,101,99,123,113,126,106,106,112,102,107,110,103,115,119,99,112,109,102,91,108,114,109,99,103,100,100,104,107,101,96,107,106,109,101,104,104,134,104,110,113,98,106,108,95,99,109,102,106,113,111,94,99,137,122,118,100,109,97,102,99,100,102,97,106,103,113,99,88,103,107,104,97,99,96,99,96,90,98,105,101,102,99,87,101,101,112,106,104,103,99,111,96,117,105,98,99,106,108,118,110,98,107,101,117,102,115,99,110,93,102,111,100,109,114,93,105,106,114,120,103,110,98,117,107,99,105,91,99,108,86,108,94,105,96,98,105,109,109,110,92,107,105,93,116,100,106,103,109,103,105,109,101,103,117,95,107,112,108,110,99,112,132,110,106,83,114,101,116,107,103,108,89,105,98,109,115,94,113,102,107,114,109,101,99,108,109,106,104,109,110,109,98,106,121,108,110,117,109,82,110,94,120,109,99,101,99,108,96,99,107,103,106,102,111,106,100,112,96,108,110,119,83,108,113,98,100,87,107,99,110,98,123,100,95,113,108,102,118,111,118,106,113,76,109,95,108,112,113,101,105,102,96,102,91,107,108,113,108,100,101,111,86,101,100,117,93,102,105,117,106,72,105,109,122,102,107,112,105,107,96,110,106,95,111,109,109,114,113,118,110,103,100,106,121,109,95,98,116,114,102,89,102,109,102,111,97,101,106,103,112,103,105,106,99,111,94,107,99,103,109,87,106,105,96,102,92,104,113,103,104,115,94,101,117,95,113,102,96,94,99,94,108,106,104,95,102,100,121,108,109,104,103,102,103,123,94,111,122,105,109,96,108,100,104,107,94,99,109,100,99,104,111,111,107,102,103,111,102,115,104,105,115,114,80,105,102,97,105,104,93,99,106,108,98,98,113,96,102,113,105,98,115,107,108,126,112,117,100,97,101,111,106,101,104,102,99,113,99,92,94,112,104,111,100,94,116,97,101,102,104,105,102,104,107,106,116,105,93,96,112,107,124,101,111,92,102,108,95,100,118,95,103,99,106,104,104,111,110,108,105,120,97,102,104,109,109,101,98,103,100,110,102,101,107,110,106,102,108,106,97,114,112,105,106,118,116,101,109,105,103,109,109,95,95,100,105,100,109,112,111,91,103,109,100,111,103,108,98,120,113,108,98,104,103,108,112,103,113,102,120,113,98,105,109,91,102,101,99,104,122,116,104,114,107,103,94,108,102,114,120,96,119,111,104,98,109,116,110,111,105,118,108,115,107,107,105,98,94,109,109,124,109,103,105,102,111,102,103,112,107,95,96,115,100,87,71,110,102,105,86,105,109,108,113,103,104,116,98,99,100,105,96,108,106,100,104,100,105,96,121,102,104,99,100,95,111,108,108,82,101,103,103,108,117,97,94,97,104,108,111,109,111,102,111,113,105,114,106,110,100,114,107,111,111,108,98,114,105,82,101,114,99,99,102,112,103,100,104,113,103,108,108,99,107,83,117,102,100,105,99,109,110,104,103,97,100,104,86,101,102,117,103,116,100,101,99,96,103,96,114,105,107,106,121,103,106,97,108,126,112,105,107,98,106,100,103,110,120,102,106,106,111,104,103,108,98,115,110,103,107,108,104,114,121,120,114,116,98,105,103,116,106,113,110,114,91,89,104,110,106,98,108,115,109,103,107,100,101,94,96,105,101,109,107,106,112,103,113,90,100,102,98,109,109,106,107,80,113,111,100,100,107,107,117,103,103,113,102,88,102,117,100,97,102,115,100,84,125,107,113,104,113,107,100,119,96,108,108,92,97,103,115,105,106,113,108,108,95,105,108,111,102,110,102,103,97,102,114,101,113,112,107,99,109,103,104,92,106,101,101,111,118,115,107,104,111,97,112,93,102,91,103,111,97,106,97,117,117,112,102,110,97,102,99,104,120,109,110,102,120,102,107,127,104,98,105,102,103,97,98,104,108,106,111,98,109,111,106,109,113,106,108,104,107,116,103,104,99,103,96,104,111,100,95,106,104,98,109,98,106,107,119,116,86,114,99,94,99,103,110,94,106,107,124,107,117,98,142,99,98,116,102,101,104,100,98,112,110,99,100,104,112,113,102,106,64,104,105,109,126,103,109,105,111,95,100,110,116,108,116,102,99,100,108,108,98,101,108,104,94,108,114,94,103,116,109,101,102,97,91,102,101,99,106,100,109,100,100,111,104,113,108,99,104,101,124,105,117,121,96,102,101,108,105,100,105,113,99,108,113,115,87,113,87,109,107,114,103,100,138,102,107,113,106,98,114,110,99,90,99,106,102,107,96,106,117,98,90,78,103,106,112,74,102,106,103,103,106,99,111,108,101,108,106,94,108,100,99,74,105,104,110,109,103,102,89,108,116,94,108,109,101,105,100,105,110,98,112,123,106,108,104,113,110,107,100,97,102,101,105,112,111,102,109,101,106,108,108,113,109,101,100,109,103,106,94,102,92,108,102,110,98,111,106,104,104,106,107,102,105,107,112,105,105,110,113,110,108,99,110,112,116,99,108,106,122,98,110,98,100,106,113,117,98,99,99,119,111,110,109,114,107,84,112,104,110,109,106,114,105,109,90,95,107,109,101,116,104,105,103,106,114,112,92,107,97,102,109,105,105,125,116,109,100,101,110,95,103,106,108,97,106,110,100,95,95,107,107,97,88,98,105,88,106,95,116,100,117,108,109,106,110,106,115,116,96,117,101,99,96,99,109,116,108,117,110,104,99,113,107,114,102,91,105,108,98,104,94,105,99,108,104,104,119,117,110,102,110,95,110,104,95,90,108,101,86,85,117,110,104,86,107,107,106,97,101,101,104,111,96,109,105,108,101,109,111,107,90,115,107,100,98,105,105,90,103,104,108,99,87,113,93,101,112,98,104,105,116,108,106,99,76,80,110,104,110,106,107,102,99,105,106,105,98,102,115,107,103,98,100,99,100,100,100,109,105,103,106,96,101,105,114,99,96,105,107,99,102,120,105,103,106,114,120,105,108,92,109,98,94,104,99,102,108,105,98,109,101,85,101,110,108,113,106,108,104,96,96,112,100,99,105,93,105,108,119,104,98,98,106,83,115,110,98,90,104,99,104,113,105,98,109,110,102,113,103,112,112,105,99,108,109,94,117,109,98,99,117,108,98,111,111,106,103,92,96,104,117,102,95,93,96,109,112,106,100,98,109,115,95,99,98,108,96,106,94,110,110,101,96,104,86,110,109,101,110,117,105,112,100,105,99,94,95,107,104,107,95,98,97,112,111,113,115,102,107,108,110,106,109,101,110,115,106,109,116,89,102,101,112,110,102,99,120,103,107,111,109,97,98,98,107,93,108,117,101,124,95,113,96,100,98,99,109,108,101,99,107,110,112,100,106,116,108,104,112,108,102,113,99,102,105,109,106,105,96,100,129,111,93,107,98,116,103,99,94,113,105,113,101,115,100,102,112,105,88,112,108,99,95,101,78,112,86,106,107,118,112,102,112,88,102,102,94,110,96,104,113,105,102,104,91,102,99,113,100,106,97,99,105,99,109,100,105,106,116,96,122,98,104,106,101,110,97,98,118,104,96,114,121,110,113,103,113,101,98,111,104,104,104,111,107,101,107,104,110,112,99,104,105,103,99,105,96,99,103,104,94,104,101,109,94,101,117,98,96,101,96,98,109,104,102,106,127,99,98,107,108,99,112,107,113,110,111,111,106,102,106,103,111,103,111,97,108,105,96,87,102,102,104,103,99,105,112,95,100,96,112,106,113,113,106,108,99,100,112,109,80,108,112,108,110,100,76,114,103,98,94,102,119,100,110,109,109,105,123,102,103,102,98,120,115,109,106,106,105,94,110,99,115,102,95,103,105,98,97,101,112,99,118,101,111,95,100,99,105,100,105,111,99,107,101,94,100,103,102,106,113,98,109,109,103,103,116,109,105,100,92,117,104,114,102,104,99,111,110,99,96,94,112,112,104,106,110,112,110,91,102,116,103,93,111,125,103,114,116,106,104,106,97,100,95,109,107,95,106,104,101,103,112,119,96,105,100,98,106,106,104,100,109,99,102,114,116,105,106,89,105,104,99,116,101,97,106,111,106,102,114,107,102,104,95,114,107,103,108,103,101,113,105,111,94,113,106,95,102,120,117,105,99,88,105,93,101,101,106,106,88,114,111,98,100,96,95,105,99,97,101,107,109,110,113,116,117,108,101,95,109,122,102,104,112,115,107,101,117,104,101,106,111,113,133,101,118,102,106,106,99,93,99,95,98,120,101,102,107,101,102,113,105,111,109,91,102,109,91,102,103,105,105,104,113,98,99,81,92,116,112,97,91,104,103,102,121,103,99,105,109,126,113,76,113,108,104,112,98,102,98,107,101,106,97,109,94,114,98,107,104,102,112,109,112,103,106,103,107,117,92,120,111,102,105,112,101,103,116,113,104,68,106,111,112,114,100,114,99,103,113,95,79,95,106,92,99,105,113,87,102,99,96,108,102,104,103,104,96,109,129,105,107,95,102,111,118,116,106,94,99,107,95,110,116,104,109,107,105,93,108,95,94,109,109,100,98,112,101,103,83,92,100,118,95,102,95,98,108,95,109,96,96,118,102,104,113,106,114,97,106,114,91,112,103,109,93,108,109,91,105,102,85, +474.73132,97,99,87,99,87,99,91,109,104,103,111,92,100,109,103,100,99,117,103,105,108,101,95,104,96,97,96,104,96,105,97,95,96,111,105,96,88,92,102,115,102,102,111,108,91,109,79,109,107,96,103,111,92,104,110,96,105,88,112,92,105,102,100,91,113,104,94,99,110,97,97,98,101,87,101,86,117,101,104,99,106,109,95,94,79,104,100,108,110,106,122,103,98,95,106,91,110,115,97,119,99,113,89,103,102,107,96,105,100,101,104,109,109,95,107,99,100,95,123,103,114,97,110,103,111,107,103,112,111,100,104,98,138,117,101,113,98,100,94,110,95,116,103,100,98,102,103,100,90,106,105,101,108,88,98,103,106,82,113,109,101,102,143,94,107,99,76,104,106,117,97,105,105,117,111,102,106,81,101,99,115,99,114,114,98,105,97,101,98,105,103,113,99,93,101,104,89,101,112,110,101,104,104,99,106,111,101,117,110,110,83,112,108,107,107,83,118,106,100,109,113,125,98,102,102,113,106,102,97,105,92,98,99,94,112,104,107,111,105,101,108,102,111,106,104,101,108,116,105,103,105,100,103,103,105,82,103,103,103,103,107,100,110,101,110,96,113,99,100,107,97,111,103,118,107,108,114,98,110,112,108,117,96,113,87,99,102,99,117,101,99,113,108,104,105,109,100,107,99,107,89,102,103,105,91,106,119,103,106,99,101,123,105,102,103,105,109,102,99,91,103,104,102,98,91,102,112,94,114,118,118,103,98,103,100,84,112,105,97,130,117,91,103,104,93,94,86,111,109,91,108,103,107,103,109,101,104,107,101,99,102,122,113,96,105,86,107,114,105,95,104,99,124,107,104,94,113,107,106,103,107,97,109,109,105,110,111,95,118,104,107,105,102,104,104,105,99,105,112,104,106,111,99,104,107,109,110,111,107,100,104,110,107,99,112,105,109,105,111,104,104,102,92,115,121,110,106,107,99,99,114,111,97,97,109,99,112,107,123,103,99,104,103,108,102,106,95,104,108,112,100,105,105,108,100,113,96,114,113,97,95,102,103,108,100,96,104,104,106,105,94,110,101,113,101,108,101,108,92,115,103,104,109,109,104,104,98,99,103,129,106,108,112,104,103,108,94,109,105,83,113,112,102,96,103,108,103,128,98,105,109,112,105,113,93,112,104,99,91,99,119,104,105,109,107,103,105,108,101,124,89,108,111,106,101,106,105,80,112,101,98,105,87,120,101,102,112,117,105,99,109,101,98,93,104,93,99,97,93,98,101,96,91,103,91,103,118,106,99,96,96,99,111,104,102,101,107,103,110,113,111,106,105,109,106,102,110,107,105,102,100,101,117,114,116,103,99,117,94,92,112,104,107,105,97,105,98,131,113,111,104,105,95,99,103,95,103,108,96,100,111,112,110,103,112,105,97,105,99,103,97,100,105,105,100,100,102,98,106,114,101,126,94,108,114,109,100,110,91,113,97,101,99,102,103,108,114,104,103,101,112,109,112,103,106,103,104,94,107,104,97,120,111,105,99,108,96,112,117,101,102,102,108,109,102,97,95,108,104,113,107,95,98,103,97,95,103,99,104,96,98,104,112,112,99,107,107,99,101,99,100,115,109,107,93,99,107,94,109,103,100,98,112,105,98,110,109,107,106,113,116,99,99,112,102,104,102,103,97,103,111,90,104,116,89,103,102,111,102,114,107,107,107,99,106,110,98,103,106,107,91,98,99,113,103,95,104,97,100,115,104,112,112,91,97,103,106,107,103,103,100,103,108,89,102,125,109,95,112,112,105,103,105,113,100,104,104,137,116,101,114,99,105,99,114,114,107,126,94,108,110,100,92,94,104,92,111,100,95,97,90,99,98,91,106,101,108,105,101,113,101,108,104,112,106,102,107,87,118,122,96,100,121,91,103,105,99,116,105,102,112,112,101,99,109,115,104,95,110,90,99,101,113,111,108,102,92,103,111,103,101,116,100,111,114,103,108,94,107,78,97,108,109,117,102,107,100,125,113,113,116,111,102,99,111,92,97,120,99,108,93,118,102,102,116,100,90,93,107,95,130,113,108,117,126,100,102,107,107,99,108,111,112,107,100,107,95,99,113,113,111,104,109,109,90,91,106,103,111,108,106,99,104,115,102,115,87,105,87,103,99,95,119,112,108,107,97,103,116,104,99,103,106,103,106,101,105,97,106,129,105,98,104,118,95,100,112,95,102,105,107,106,106,100,103,113,102,97,99,111,87,104,103,111,101,96,99,106,103,112,108,105,109,99,114,114,103,99,127,114,90,110,112,105,104,109,107,103,107,113,115,114,107,95,115,110,106,96,99,107,112,101,108,99,92,83,96,108,104,94,107,101,103,94,119,118,104,106,109,117,107,99,101,98,98,103,103,113,103,110,114,128,95,106,105,95,102,102,104,106,102,108,109,95,108,101,104,107,91,106,114,103,115,110,106,109,100,103,113,111,113,110,100,98,103,106,105,100,110,108,106,95,113,97,89,114,122,96,95,108,98,105,98,113,106,85,108,95,106,98,99,102,106,99,98,101,87,106,104,97,99,114,98,110,109,102,129,108,109,105,103,110,107,104,89,101,120,105,112,95,109,101,106,109,119,108,99,102,107,103,111,84,94,127,112,105,119,102,107,92,107,123,114,117,101,99,117,112,110,110,109,119,107,123,110,115,110,108,105,110,96,105,106,92,113,97,107,99,109,109,111,111,103,109,105,107,110,101,104,106,101,110,91,102,106,108,104,105,136,103,99,106,103,111,111,96,107,107,106,89,103,113,100,104,102,109,101,109,117,109,84,106,115,103,112,97,95,105,104,98,105,87,105,99,84,99,111,103,95,104,111,105,105,99,113,95,94,109,112,114,104,99,107,113,108,105,99,104,107,114,95,101,102,104,92,109,101,116,105,113,103,108,105,106,98,103,112,96,110,105,106,107,105,89,108,99,104,112,96,92,111,98,101,98,105,108,96,115,106,100,105,110,105,91,109,107,99,102,102,103,90,87,98,107,101,108,94,106,95,107,107,95,104,92,97,111,105,103,111,104,93,106,103,105,101,108,108,105,101,115,112,106,111,108,107,104,101,104,95,110,109,101,108,106,94,98,80,98,105,88,108,95,102,94,105,93,110,97,99,108,116,97,95,109,106,109,103,108,102,105,102,102,96,102,101,109,100,113,93,102,113,115,111,107,102,98,105,105,105,95,105,101,104,100,97,96,113,98,104,102,106,108,110,89,113,104,93,109,98,102,109,95,107,99,99,96,98,101,102,98,96,102,101,100,107,104,108,105,108,97,99,106,105,96,93,101,95,108,103,100,96,99,108,99,98,109,107,110,101,104,105,104,100,98,91,102,95,104,105,105,111,100,112,110,108,100,94,106,107,93,95,106,101,98,104,104,113,104,101,108,101,91,101,102,106,96,106,112,94,112,124,104,99,111,92,103,94,95,100,104,112,102,105,98,93,109,107,87,105,82,103,101,134,111,116,107,102,106,104,108,108,96,105,110,108,111,112,93,100,99,94,102,110,107,98,110,110,103,106,107,112,97,96,104,105,100,111,97,112,113,104,95,112,108,109,100,112,109,91,106,108,94,103,100,101,101,103,104,107,112,110,120,102,90,106,105,83,99,102,113,113,113,110,99,94,103,92,106,103,93,102,105,95,110,96,98,110,87,111,101,106,101,107,96,108,108,112,101,119,106,106,110,93,98,103,108,92,104,102,109,100,100,83,105,114,119,108,98,104,94,101,103,108,105,100,107,89,98,105,105,96,109,94,97,106,112,103,75,101,104,111,97,100,105,98,94,95,99,103,111,100,102,99,113,106,100,109,106,89,95,93,105,104,107,112,112,103,106,103,98,100,92,106,97,102,91,119,100,70,108,104,98,99,103,101,104,89,103,95,98,105,96,113,100,100,103,108,101,111,105,109,107,102,102,109,100,102,92,94,90,103,105,100,97,105,106,102,112,102,99,96,99,91,110,115,103,98,104,105,119,111,111,99,97,108,107,111,92,107,100,107,110,95,104,87,105,94,104,100,93,117,98,87,93,108,103,100,107,112,115,99,95,106,88,112,108,102,109,105,116,95,94,98,99,108,102,110,100,92,109,94,97,98,99,105,104,104,100,101,105,98,103,97,112,111,99,107,94,90,93,100,99,102,95,110,77,91,114,99,103,101,102,108,105,105,103,103,95,88,107,100,103,100,96,95,95,100,106,102,98,105,101,92,105,88,108,98,103,99,90,93,100,111,119,108,100,107,106,95,105,105,107,98,110,106,94,100,108,93,105,108,104,107,109,111,109,104,99,111,97,97,81,98,106,104,83,104,92,107,111,113,97,101,110,97,107,108,108,95,111,102,99,104,105,103,109,110,102,108,100,100,90,101,102,89,98,94,107,104,108,104,106,91,113,100,119,112,99,95,116,113,106,101,104,108,91,90,91,106,90,102,94,103,88,110,102,109,104,98,96,98,109,105,107,115,125,103,101,102,109,99,102,100,97,93,101,105,96,110,109,83,98,95,103,105,110,105,97,112,105,98,111,112,104,109,103,107,103,102,109,101,104,97,103,109,106,100,109,93,107,105,104,85,111,99,106,98,116,91,97,101,100,106,109,108,110,107,124,119,99,100,104,95,97,103,100,106,106,102,94,101,104,103,110,95,98,107,113,111,97,88,125,107,99,140,102,119,108,96,109,99,110,99,111,104,88,105,104,99,108,97,99,105,103,97,103,93,127,102,112,98,80,100,108,102,107,90,98,100,100,105,100,99,104,117,112,94,93,97,115,103,99,95,104,101,98,96,88,98,98,102,84,104,98,100,113,92,101,118,93,101,104,108,115,96,85,91,80,96,92,111,86,96,93,103,95,100,111,105,96, +474.87183,84,109,89,103,92,96,107,114,92,98,102,116,98,118,95,103,102,105,97,101,99,106,95,94,93,117,126,94,95,113,128,92,105,85,111,103,104,78,95,125,98,105,92,97,102,107,97,97,95,119,93,101,120,107,104,110,109,98,106,94,105,91,100,99,89,106,98,116,98,99,101,111,99,103,86,97,101,93,108,109,120,107,110,106,93,101,75,104,90,105,114,96,105,108,103,90,109,99,100,91,101,104,102,106,96,98,106,106,90,106,111,109,112,104,101,110,102,110,113,104,110,93,92,105,117,98,96,110,108,113,113,101,92,105,110,118,125,96,92,109,104,114,100,100,103,93,113,101,102,96,105,111,101,108,95,99,98,98,107,112,95,85,112,102,93,106,115,111,102,109,98,110,108,97,100,105,92,98,101,100,106,111,112,113,95,98,95,89,101,100,107,97,96,99,107,105,101,110,100,108,100,101,93,99,102,109,99,102,118,117,105,103,92,104,91,104,99,106,101,111,103,106,96,106,101,112,102,106,110,100,90,106,99,108,107,116,108,108,94,94,115,98,107,102,118,104,96,112,122,102,109,96,100,111,98,98,108,99,111,100,104,101,107,108,96,100,106,102,106,104,94,110,109,110,125,114,85,105,112,100,99,112,97,107,104,105,91,99,117,113,107,99,107,111,106,104,106,98,103,101,91,106,101,111,98,102,100,109,94,91,99,117,112,111,99,115,106,105,97,100,104,110,106,96,105,99,105,105,115,114,105,108,109,103,94,113,99,100,101,109,113,109,90,103,107,109,99,101,105,93,110,109,110,105,117,110,113,104,108,103,102,101,101,96,92,97,95,106,102,91,117,111,105,98,116,113,114,96,101,107,90,99,112,95,97,96,110,104,107,89,99,95,103,103,108,101,113,104,102,109,108,106,113,105,103,107,106,98,105,94,97,102,108,103,95,99,104,95,103,111,95,100,94,105,104,94,107,101,120,96,92,105,100,102,103,110,99,96,96,98,109,95,112,100,103,103,99,99,98,104,110,110,110,99,96,107,107,97,94,96,102,113,111,103,103,110,103,94,103,96,105,87,106,114,97,109,109,105,106,121,106,105,112,111,102,108,100,114,116,90,105,108,106,93,100,102,77,92,102,100,109,102,99,102,97,103,98,98,101,99,110,100,105,98,106,110,96,102,96,87,109,106,107,118,119,85,99,103,102,113,102,101,100,95,102,109,104,100,110,102,104,107,106,104,105,83,121,95,106,102,101,98,96,101,99,97,90,100,106,109,93,91,104,109,102,106,100,106,102,107,93,99,103,103,104,113,88,99,115,106,121,110,99,100,110,106,110,118,101,96,110,106,92,110,98,106,95,103,100,100,97,100,96,108,102,100,109,96,99,116,104,73,108,78,108,104,95,102,101,105,102,106,99,100,109,111,92,113,99,107,104,98,112,104,104,95,105,103,101,118,110,109,106,84,95,111,109,101,109,130,99,104,108,105,115,104,103,109,109,103,106,106,111,100,100,99,114,102,96,109,110,101,107,103,102,115,106,99,106,101,104,105,95,106,103,103,111,114,107,97,111,103,113,111,109,98,102,97,108,111,105,105,109,114,102,105,86,96,98,111,102,117,113,94,92,113,102,103,91,103,103,127,111,99,101,90,107,106,107,109,96,112,101,104,93,100,114,103,103,94,111,104,119,99,102,97,106,111,99,108,105,97,100,91,105,93,101,102,112,92,102,109,109,96,97,104,106,110,113,100,113,106,95,108,107,102,106,99,95,103,133,105,115,106,111,104,109,105,95,102,99,105,109,99,100,94,105,102,117,106,104,109,103,97,105,108,111,117,102,106,110,105,95,109,99,98,109,106,105,101,99,106,110,100,99,101,114,95,104,96,109,109,93,115,90,103,104,114,118,110,106,106,93,120,108,100,103,105,99,103,104,100,105,107,111,102,99,104,98,95,103,107,105,104,94,87,105,100,100,106,106,108,100,107,87,93,112,98,102,94,101,103,96,119,89,114,89,107,97,81,103,103,96,110,109,103,106,99,98,99,108,108,92,107,89,103,87,107,108,79,107,117,110,99,103,96,102,93,104,97,99,93,107,91,107,106,102,97,100,111,112,117,100,104,107,92,100,94,99,106,103,96,107,99,98,99,120,117,90,101,105,103,107,116,107,90,108,101,90,103,107,124,108,86,98,108,93,103,104,87,102,111,102,115,107,105,105,105,103,107,106,109,89,101,87,96,101,96,100,98,98,88,98,121,98,101,95,100,105,102,111,108,102,105,102,111,103,101,101,102,90,106,95,94,99,111,89,95,108,103,106,110,103,94,106,123,103,121,89,86,125,114,105,101,86,102,109,116,101,102,77,107,92,108,121,99,102,97,113,118,101,124,106,101,103,91,108,94,98,98,101,103,107,88,99,105,103,94,105,104,94,105,100,111,101,96,101,91,88,99,105,99,103,105,104,93,112,101,93,101,103,108,99,92,102,104,109,108,103,101,102,102,112,106,108,93,107,108,109,117,101,112,105,113,117,95,106,96,101,100,110,113,109,109,110,101,99,105,108,96,101,95,108,94,126,104,85,103,103,81,99,108,102,113,102,102,129,100,104,100,95,96,104,101,98,115,114,108,106,110,101,109,107,105,84,109,98,114,110,103,110,106,108,111,102,110,110,114,104,100,99,101,111,101,108,109,115,99,110,104,105,98,110,112,111,94,118,102,98,99,103,94,98,103,115,103,107,111,102,116,108,111,104,103,83,95,75,99,112,115,95,108,100,107,104,115,113,110,106,113,105,106,89,108,112,104,102,113,103,109,123,104,121,102,109,99,105,107,103,104,113,105,104,107,117,109,112,102,104,105,105,108,113,97,116,111,102,104,105,73,117,103,113,121,107,112,96,112,105,94,123,107,109,97,100,100,104,112,103,105,106,104,100,99,93,100,114,109,103,90,107,105,110,128,91,95,118,99,108,103,100,101,106,98,120,113,97,104,108,109,106,103,106,105,106,102,106,108,113,100,106,98,95,103,113,107,99,102,102,108,98,100,113,98,99,105,110,102,111,103,108,100,108,117,96,108,111,102,98,110,112,88,114,96,112,109,115,98,109,105,102,95,104,105,112,96,121,106,100,111,106,108,104,98,99,94,100,83,91,91,100,84,111,113,102,99,103,109,102,100,97,94,105,107,102,104,104,88,109,101,104,101,98,106,104,100,109,128,94,108,92,103,93,78,97,105,112,105,119,107,112,102,104,77,109,103,113,113,102,95,94,108,117,102,84,102,89,113,113,104,92,87,113,98,106,110,105,87,100,113,97,97,95,105,114,110,106,91,113,103,111,106,99,99,106,103,112,105,116,88,106,104,102,113,109,111,107,103,116,113,87,112,114,97,113,106,99,109,110,106,89,101,99,97,101,101,107,109,109,110,104,117,121,95,114,102,99,109,101,107,109,102,111,110,98,121,92,107,112,98,99,105,106,93,95,109,105,116,103,102,89,108,98,116,105,99,105,112,105,112,96,105,100,105,103,96,115,114,103,120,109,112,109,101,109,111,113,82,112,115,91,91,97,101,97,78,105,104,112,97,87,107,95,111,109,105,104,115,104,101,97,116,111,102,99,104,97,90,112,95,97,77,114,100,113,102,111,103,109,112,109,109,111,103,97,105,118,98,104,111,108,114,103,105,97,94,109,108,94,100,112,102,105,110,104,101,107,114,104,108,108,107,98,116,119,98,115,107,95,106,105,98,95,105,115,99,102,125,92,98,110,108,99,105,102,89,114,116,108,104,91,105,97,120,107,100,108,110,105,125,99,112,106,107,101,107,103,101,99,102,106,94,100,113,104,110,93,113,107,103,102,101,100,111,106,103,98,89,95,108,105,89,107,101,119,101,106,102,106,109,104,87,95,113,105,106,107,102,138,97,99,102,113,119,100,87,109,98,107,110,83,113,105,104,98,106,106,105,101,104,108,101,99,102,112,113,107,102,94,94,100,100,100,103,104,109,103,96,91,112,117,103,98,112,106,110,117,69,106,115,102,102,98,103,103,112,108,102,103,109,83,111,100,96,104,103,103,100,106,102,116,102,100,102,118,112,91,102,104,106,106,115,112,112,114,101,103,99,108,101,100,101,97,111,101,109,79,99,116,96,112,112,108,97,120,107,111,98,94,90,105,109,117,103,104,103,101,97,103,91,103,99,99,104,104,99,100,110,117,95,104,94,95,102,103,103,108,107,107,104,83,73,102,111,108,104,95,102,104,99,109,99,113,109,110,99,114,104,81,102,95,103,111,93,106,117,102,91,102,112,99,103,100,99,90,102,99,107,99,105,116,104,104,102,98,101,110,111,111,109,98,104,122,102,108,95,108,111,79,113,108,112,98,100,95,103,99,102,112,99,94,96,107,105,112,110,91,116,103,105,105,95,105,96,96,96,104,95,109,104,96,110,97,90,96,105,111,81,99,102,95,98,93,105,112,97,98,109,102,104,101,103,99,108,107,102,119,88,99,96,85,98,99,96,118,101,104,90,108,100,103,104,102,91,108,104,103,97,112,97,102,105,128,104,87,125,106,102,119,103,105,104,98,105,115,111,111,108,113,105,108,98,99,102,108,113,105,98,117,108,76,100,101,110,103,91,104,105,120,110,100,95,113,107,100,105,103,94,104,100,99,108,98,88,107,95,98,107,99,99,100,106,103,102,98,100,85,108,92,98,99,102,98,107,100,105,102,103,100,101,111,101,106,97,92,106,104,102,104,109,100,99,101,106,102,103,102,115,100,108,100,99,110,96,109,100,111,103,108,94,108,89,102,98,103,111,104,107,113,101,104,97,121,112,101,118,112,104,105,90,104,94,102,110,113,91,116,110,100,96,91,108,117,104,102,111,107,97,91,77, +475.01233,105,86,98,111,102,92,103,116,91,106,106,128,95,110,74,106,87,104,99,114,95,104,104,105,112,113,107,105,112,94,109,98,105,95,105,106,93,86,87,93,91,112,113,105,115,101,111,98,96,114,98,104,101,108,104,106,121,101,88,95,79,115,102,109,98,102,100,105,106,83,81,97,112,105,99,116,96,81,105,103,130,85,101,104,104,101,101,112,112,111,97,102,101,100,102,105,101,110,97,101,98,87,106,102,96,107,94,100,103,102,103,99,115,101,94,106,100,99,110,101,95,105,104,107,100,103,114,95,113,105,98,113,101,105,105,108,96,121,113,95,103,102,119,98,121,108,110,97,107,84,92,116,120,96,110,104,106,99,98,110,100,114,97,103,85,110,109,103,108,81,100,112,119,105,90,113,110,98,103,114,97,109,101,110,102,99,104,109,104,108,100,90,102,103,100,96,95,103,114,111,106,104,112,130,97,101,105,102,115,103,117,110,116,101,111,113,100,92,112,104,102,103,107,101,96,116,110,106,104,106,103,113,103,101,101,108,84,109,105,108,94,102,95,102,100,84,107,106,100,100,110,115,97,95,76,107,114,109,99,106,100,101,95,99,104,100,102,96,113,93,108,109,102,107,105,125,93,105,97,118,102,94,100,104,103,112,90,108,112,113,103,103,103,97,93,113,114,113,101,100,103,91,100,95,97,105,99,102,100,103,95,107,104,111,112,107,98,112,104,111,110,105,108,107,103,96,112,89,108,112,102,107,105,109,110,104,101,106,103,107,97,105,111,88,103,113,106,113,92,111,103,94,98,99,92,117,122,101,108,98,105,109,101,104,99,92,109,108,111,104,107,112,105,96,96,90,103,103,105,107,104,105,117,100,93,96,109,96,114,100,100,103,107,115,116,99,105,100,118,105,108,85,106,101,110,111,104,96,104,99,101,102,107,99,108,103,109,108,98,98,112,96,117,116,111,113,124,89,99,110,103,99,104,111,144,91,108,106,101,116,104,98,102,106,109,114,95,110,98,106,104,102,106,119,113,102,101,103,101,105,108,111,105,108,112,98,95,99,98,94,106,112,114,105,115,102,92,108,95,106,103,107,102,110,96,111,109,100,110,99,113,107,105,109,97,107,97,108,119,105,112,70,99,99,101,106,105,105,121,95,94,98,112,104,98,119,108,113,108,111,114,97,107,105,108,90,109,101,109,110,108,112,110,98,104,110,100,105,104,106,99,105,99,73,118,95,114,98,101,110,106,100,107,106,109,104,103,119,75,102,101,105,93,107,122,103,105,99,89,105,108,94,113,102,106,102,98,105,104,114,100,103,106,108,104,110,97,104,126,105,105,98,101,101,106,110,101,101,95,101,95,105,104,101,102,108,102,100,104,108,111,116,97,105,103,101,99,102,104,96,112,110,111,96,105,98,100,112,106,115,118,110,104,99,108,102,105,102,104,100,108,108,100,100,100,102,96,103,101,105,113,98,106,97,114,100,109,110,101,109,99,111,113,98,93,102,117,100,118,109,111,108,106,91,94,108,107,94,101,99,119,114,102,108,105,106,110,99,98,99,110,109,107,97,110,92,103,96,111,100,107,105,93,107,99,106,110,100,121,108,117,99,104,108,99,105,95,106,106,100,104,69,107,117,102,104,103,113,104,103,103,111,114,111,91,98,104,112,107,106,109,103,109,96,97,103,103,114,100,117,112,96,99,87,113,97,110,111,120,99,104,99,108,99,101,108,95,105,109,90,105,110,96,103,111,102,94,94,99,101,97,109,107,104,115,103,103,99,100,118,108,107,114,105,102,105,105,100,110,103,103,98,101,101,101,93,112,101,104,91,111,106,97,107,112,113,104,105,100,100,113,105,116,102,108,111,95,105,99,94,107,103,109,99,86,104,107,102,101,107,99,95,118,105,105,114,102,99,92,107,111,111,103,102,95,102,112,110,104,106,94,95,109,97,104,111,100,117,105,105,103,78,109,113,108,92,102,99,116,100,88,95,106,108,98,112,99,106,91,101,91,109,97,125,92,100,111,121,87,93,108,106,95,108,102,103,102,105,99,107,92,113,108,107,103,97,108,101,112,118,104,98,106,111,108,100,119,108,104,82,88,105,102,104,103,120,108,111,105,105,110,108,100,99,109,70,110,90,128,104,110,103,100,102,116,108,106,121,104,107,97,94,97,100,110,114,97,106,102,91,95,101,99,103,98,109,110,99,86,117,94,101,107,107,102,95,108,99,116,105,91,105,106,104,102,102,112,112,104,116,99,102,97,111,99,99,106,94,96,100,94,99,95,89,105,115,99,103,97,99,107,101,102,99,107,109,106,107,100,98,115,108,118,93,108,94,95,119,106,102,109,109,97,110,80,96,115,100,106,113,103,109,108,102,112,98,106,113,106,102,113,98,91,103,110,107,94,106,113,100,98,104,98,94,109,101,98,94,99,94,102,89,99,104,103,110,100,101,113,107,102,105,94,96,103,111,98,104,112,111,103,104,105,110,102,105,120,107,107,106,95,109,108,111,102,112,97,103,97,110,111,106,105,106,97,112,100,103,110,110,109,126,107,104,100,105,108,119,95,93,102,108,103,113,99,102,113,100,114,102,104,105,111,100,106,106,106,106,95,109,81,90,106,103,107,92,113,109,106,104,89,106,107,116,122,97,100,102,102,92,104,99,83,104,102,115,90,105,92,110,97,104,107,110,94,101,103,96,99,106,110,94,98,107,100,103,108,109,105,99,112,108,108,105,109,113,108,99,114,112,107,116,95,96,104,104,106,110,106,108,102,103,100,107,115,117,118,113,116,117,106,111,109,97,96,106,97,113,103,115,104,100,109,111,92,95,100,105,87,101,102,95,112,106,108,102,98,106,100,109,105,76,112,105,108,106,128,111,117,110,110,99,104,114,100,105,101,97,113,107,100,107,100,117,119,98,101,112,110,108,95,108,99,110,106,109,102,108,106,111,105,103,101,106,103,106,109,106,97,112,84,98,103,97,120,106,100,99,101,114,110,101,100,109,115,118,104,108,118,105,101,103,122,105,101,95,104,107,102,102,118,100,114,110,118,100,102,104,101,104,91,99,67,98,108,97,109,112,99,106,106,106,95,103,97,99,112,92,112,103,94,101,100,95,110,98,101,100,104,93,111,100,88,110,102,110,106,105,99,113,94,99,92,93,107,102,115,103,109,106,117,106,100,99,102,79,106,106,100,116,100,98,106,99,117,98,106,115,99,98,105,103,106,105,104,113,112,110,113,101,108,93,107,116,101,109,105,94,115,102,94,106,102,102,105,102,106,104,103,97,106,103,96,99,125,104,113,108,109,109,97,116,112,94,110,109,107,102,115,120,110,110,113,100,115,117,104,120,101,93,104,107,101,110,113,117,99,105,107,98,105,115,109,108,106,98,101,117,97,85,99,107,106,99,107,108,97,112,94,101,105,99,104,99,105,111,102,96,112,103,106,117,122,102,92,96,105,101,112,93,101,111,91,107,100,93,95,97,100,102,109,108,113,111,102,105,110,106,106,105,116,118,102,101,105,114,104,106,109,99,113,112,102,110,116,102,121,105,123,89,92,96,91,102,122,96,97,112,107,104,95,112,98,122,100,105,113,102,113,99,108,111,107,103,104,99,110,112,83,100,106,101,106,114,101,96,111,102,114,94,106,104,104,107,109,108,108,104,84,89,108,105,114,96,108,112,107,90,106,99,105,98,111,105,106,86,113,110,110,101,100,118,113,96,103,103,100,98,106,107,108,116,107,116,98,97,102,91,123,105,99,100,102,106,103,105,111,102,94,107,105,102,109,104,106,98,108,102,82,98,116,111,113,99,110,104,109,105,101,103,115,99,99,115,104,104,102,124,102,104,99,87,108,99,93,101,100,105,105,113,106,101,95,112,110,102,104,101,108,105,100,103,111,112,98,120,101,116,109,109,109,106,95,116,104,111,97,99,92,99,110,96,97,99,106,102,94,109,108,112,112,95,98,107,116,106,96,114,110,106,106,94,101,105,105,113,96,103,122,94,113,105,99,98,111,106,112,108,125,100,112,101,102,104,101,108,105,111,115,100,112,113,92,103,99,114,105,102,101,98,106,96,95,113,104,110,110,102,108,108,107,99,102,102,110,112,99,105,99,109,117,101,100,106,110,113,104,98,103,116,100,101,107,105,88,110,96,112,105,102,110,110,104,110,103,74,94,99,97,109,102,111,105,112,95,100,103,120,106,95,86,111,114,116,113,108,101,100,111,117,104,108,103,105,115,102,106,110,97,105,98,105,102,110,105,114,97,104,119,113,115,112,109,106,110,107,102,97,98,106,109,95,124,121,117,106,93,99,109,107,113,103,111,110,100,105,97,102,91,100,95,105,104,96,110,96,97,101,104,103,101,84,113,98,104,102,113,94,109,103,100,99,112,88,105,95,94,96,98,102,104,101,106,98,106,113,106,105,100,96,106,109,99,89,80,97,105,98,105,125,114,113,93,84,87,110,102,105,99,102,87,81,94,131,110,101,101,101,96,119,114,95,110,80,102,104,103,119,109,104,114,99,117,104,107,97,104,115,101,95,102,115,102,116,112,99,113,112,98,114,100,122,93,109,98,108,108,101,110,103,102,98,100,99,98,108,94,114,111,101,117,87,99,117,111,109,100,100,102,97,103,114,104,98,109,94,123,104,105,107,106,111,101,112,94,108,107,91,112,109,92,99,108,100,111,103,95,110,117,115,106,103,109,102,108,102,93,94,113,99,96,89,113,112,107,78,102,101,105,101,99,92,99,86,113,101,101,93,92,91,103,94,106,108,99,102,112,94,116,107,70,103,101,103,97,99,94,104,107,95,99,91,103,105,96,105,99,103,99,91,113,101,99,104,100,102,106,115,118,105, +475.15283,101,106,108,94,108,117,109,104,119,115,92,114,98,102,117,97,106,95,105,100,109,95,91,106,103,108,102,85,119,85,98,113,99,82,109,100,100,106,104,111,99,103,90,106,108,112,95,99,80,101,93,96,86,94,96,107,98,87,100,103,95,106,90,101,105,109,85,101,83,96,106,105,98,103,105,105,111,106,106,115,113,95,108,102,101,116,96,111,95,75,103,108,99,97,107,103,96,108,107,102,101,104,99,105,106,98,77,106,103,110,109,99,113,94,106,106,110,109,87,99,98,100,101,97,88,92,90,100,107,106,104,96,86,106,102,98,93,103,105,99,91,107,105,105,91,101,99,100,95,90,114,103,100,100,102,110,103,101,103,103,106,96,110,112,104,109,96,94,107,100,97,102,95,105,96,107,92,91,108,101,104,98,96,100,103,98,91,94,95,97,100,77,105,103,106,114,98,91,98,114,86,104,107,96,96,104,101,94,105,109,88,111,83,108,101,113,98,87,99,100,109,109,95,100,103,117,85,106,104,98,92,105,108,108,105,99,99,100,112,90,98,92,115,108,98,102,103,110,99,100,105,100,93,97,99,107,89,112,110,99,105,105,97,98,101,105,101,122,101,95,95,111,107,103,112,94,96,101,107,101,102,110,94,116,105,98,102,106,105,104,98,112,110,107,108,105,109,103,102,109,101,106,101,110,84,99,99,98,96,108,96,105,100,109,106,109,119,93,107,96,116,94,108,105,105,95,109,99,91,94,111,103,95,120,72,105,104,88,93,97,104,104,116,85,99,90,107,103,107,109,95,111,94,110,102,106,107,103,101,108,107,102,103,98,107,104,116,99,99,109,107,107,106,92,116,98,97,97,105,101,104,104,104,104,118,102,102,104,96,100,103,92,116,119,107,111,68,105,121,104,89,102,99,104,100,106,99,104,105,103,93,105,95,97,105,103,112,100,105,105,109,87,104,99,108,92,101,107,112,107,96,105,106,119,99,109,95,106,98,103,111,110,99,105,99,96,101,101,92,108,105,94,101,116,105,97,91,108,110,113,101,100,120,105,105,107,100,102,104,103,106,111,108,101,106,101,103,112,109,105,104,100,118,106,104,103,114,106,109,104,97,112,106,100,99,111,108,113,104,99,110,100,112,109,86,108,96,107,104,101,108,80,108,93,113,104,104,116,116,101,110,122,106,104,95,105,105,115,104,105,105,101,105,106,106,103,108,94,99,110,99,115,113,99,108,102,109,106,115,96,105,101,101,118,105,105,83,91,98,112,108,117,104,116,110,99,97,100,93,106,98,107,99,101,98,106,111,107,117,107,110,95,91,95,95,106,99,104,107,99,116,90,115,117,86,98,104,99,121,104,105,106,111,100,103,105,98,116,111,104,110,112,106,105,107,108,111,95,105,111,112,100,104,96,102,111,99,110,104,96,111,113,114,115,93,98,95,96,96,103,96,105,101,105,101,101,105,98,104,111,98,98,113,107,112,106,114,105,97,117,110,101,108,100,102,106,108,108,104,101,100,107,104,95,92,113,113,103,104,84,113,100,99,95,92,106,105,101,100,95,107,103,107,100,102,109,101,105,107,90,108,105,103,107,105,112,108,116,102,113,95,105,95,105,97,111,96,113,113,109,100,94,103,106,106,101,104,96,107,112,108,99,100,99,113,109,95,95,100,106,102,113,97,98,104,96,99,107,96,104,98,99,96,107,98,99,96,95,104,98,99,102,91,104,99,105,96,107,105,101,103,105,111,109,99,103,93,116,116,111,98,109,98,106,111,106,110,110,106,108,105,95,100,111,99,102,100,101,109,116,107,106,105,110,96,115,102,106,98,93,99,111,100,100,107,97,103,98,110,104,97,109,106,107,100,108,110,98,113,105,106,114,112,93,107,101,101,109,99,126,97,116,105,106,94,104,98,107,68,112,97,98,103,100,106,122,113,111,105,114,112,100,110,102,113,96,96,99,102,112,109,98,102,101,100,99,121,110,104,114,105,106,94,112,100,109,107,107,95,98,93,106,112,102,111,102,97,110,105,106,111,111,111,96,100,97,61,90,90,90,104,95,114,110,100,96,99,112,106,90,111,81,110,91,104,103,103,101,113,103,99,99,101,99,95,104,106,106,98,104,103,103,110,99,100,99,99,102,92,105,95,114,103,105,105,107,104,105,104,104,107,101,90,101,103,104,93,88,108,105,97,96,101,92,102,110,102,94,100,91,96,98,102,110,131,98,108,99,95,88,101,105,97,107,112,95,115,102,102,116,104,100,102,94,119,106,102,105,104,101,94,105,106,108,106,99,107,102,97,107,113,103,99,90,109,110,109,98,103,105,110,109,101,109,104,98,96,107,106,97,100,105,100,92,95,98,101,101,100,111,110,99,99,103,99,105,100,102,100,104,86,95,107,113,90,115,100,103,98,85,105,107,109,106,102,95,90,95,106,102,105,92,105,106,109,110,95,116,115,102,102,100,100,88,98,100,98,106,105,103,104,106,94,109,97,116,97,105,105,100,102,119,104,108,102,103,97,98,99,92,106,110,98,112,110,100,99,116,111,112,103,109,99,93,109,111,101,102,104,83,102,99,117,112,98,106,123,119,112,96,111,106,105,106,108,108,103,98,113,109,105,103,96,95,103,114,106,115,111,97,96,116,100,106,113,99,102,116,102,105,107,111,83,110,108,92,120,95,110,99,105,105,105,108,87,123,119,96,111,101,96,107,113,117,113,112,114,112,96,105,106,113,103,106,127,87,111,110,104,109,118,103,102,103,107,98,94,113,106,107,112,107,106,98,124,109,102,101,112,110,104,106,119,109,114,106,118,111,107,110,113,114,102,99,112,103,106,105,106,112,112,114,102,117,115,102,99,96,102,102,104,110,113,112,104,99,105,113,104,117,106,106,118,95,96,94,117,110,118,115,114,98,99,106,109,102,97,95,100,109,109,111,102,101,106,99,107,109,99,102,93,109,95,100,107,109,112,105,91,104,107,90,104,106,126,89,107,110,101,108,92,89,83,114,109,98,105,100,100,108,115,113,113,91,106,103,107,98,103,94,100,97,105,111,107,106,107,99,109,106,100,119,102,94,108,109,102,108,105,93,99,105,120,118,108,92,90,99,107,107,99,108,103,106,105,83,109,101,112,103,106,91,102,98,110,108,105,98,99,108,112,115,95,96,104,104,116,119,99,107,103,111,109,86,110,112,117,104,93,112,101,105,99,105,99,106,67,93,103,96,119,103,104,113,101,103,98,116,121,114,105,96,104,95,102,96,100,106,107,106,100,102,108,106,102,101,108,113,117,100,106,97,104,111,121,117,103,106,98,99,102,100,114,105,98,101,96,112,104,94,104,112,106,103,91,100,105,103,115,120,109,92,110,116,101,98,92,115,108,107,98,109,104,93,96,111,112,109,104,111,109,84,107,121,97,105,98,110,106,104,94,100,105,117,105,114,111,99,99,108,99,113,101,97,101,103,100,119,100,108,106,106,104,103,104,116,111,110,103,92,119,98,110,119,102,96,126,112,108,118,101,108,104,107,104,108,99,103,100,105,103,101,100,105,108,108,111,99,106,93,99,98,107,128,103,99,106,99,83,101,102,99,100,107,113,96,109,104,113,111,102,111,111,109,95,103,105,106,105,106,116,104,99,106,99,106,98,100,109,105,121,102,109,122,103,101,106,109,84,102,98,94,100,110,100,113,107,108,102,98,113,101,98,117,100,95,121,106,108,105,94,103,105,101,105,103,95,108,110,109,108,115,95,106,104,99,103,105,102,102,105,96,99,98,112,100,107,98,103,107,108,103,110,113,109,100,102,98,112,102,100,116,85,102,91,116,110,95,100,104,103,106,100,103,114,99,106,101,94,118,111,102,105,103,112,103,106,104,106,97,96,94,103,113,103,109,102,99,102,106,92,106,111,80,99,101,106,99,104,108,110,108,99,106,113,105,89,94,103,105,101,111,108,124,104,103,106,104,105,112,116,96,122,105,104,105,102,120,116,108,109,111,96,113,110,97,109,111,111,83,103,105,88,99,107,116,104,104,107,107,129,102,104,113,106,106,110,110,103,100,113,109,112,109,107,108,102,102,93,110,112,105,117,110,105,101,112,112,97,107,100,114,98,98,102,104,109,106,103,101,107,106,105,98,109,112,120,103,105,100,118,112,109,100,103,112,102,95,104,100,121,95,109,99,101,101,108,108,105,99,114,101,102,96,106,99,109,105,109,85,97,100,101,103,107,97,98,103,103,117,105,108,102,93,99,115,106,98,94,104,111,109,117,91,115,109,103,115,106,118,101,106,119,99,103,103,113,106,116,101,110,111,117,99,110,104,91,107,100,93,106,111,110,93,103,104,108,109,85,108,111,110,105,102,94,113,113,100,99,93,91,92,99,117,101,113,91,109,108,97,118,124,105,99,108,95,105,100,98,113,111,104,103,109,89,94,96,92,96,99,106,96,103,107,113,105,106,105,106,105,101,88,105,103,106,106,108,116,99,98,105,93,94,104,100,106,110,113,102,117,111,106,105,111,115,101,98,97,106,97,109,119,104,90,102,101,106,113,94,105,113,81,100,112,84,103,108,108,106,102,99,104,113,103,102,109,112,118,105,108,108,100,114,109,89,101,105,97,102,103,110,109,88,100,87,99,107,107,110,93,94,97,112,98,98,98,110,107,110,107,107,94,76,93,105,106,109,105,113,83,107,111,104,105,122,103,113,104,108,93,87,88,109,110,108,103,103,108,93,111,96,109,107,141,92,95,99,105,88,113,111,95,113,98,108,102,94,106,99,96,90,94,113,95,113,105,108,110,95,102,95,82,106,92,111,101,91,101,96,90,109,92,115,104,66,105,101,101,105,104,90,89,105,82,93,113,119,100,113,92, +475.29337,87,103,126,72,102,94,100,83,101,89,110,125,116,110,99,101,97,118,119,110,104,98,98,105,102,123,107,108,106,105,93,99,104,107,116,119,113,107,111,104,113,105,108,107,108,105,100,99,86,105,105,115,93,113,95,113,97,104,107,73,99,99,110,100,99,103,97,116,91,96,104,107,95,103,93,102,102,109,124,109,113,108,97,103,78,100,108,106,110,99,107,106,103,110,102,108,121,114,105,101,83,112,99,91,105,108,95,117,108,94,108,101,112,100,98,110,107,100,105,99,103,104,98,116,95,107,90,108,107,96,106,120,112,103,116,106,82,100,101,127,116,95,101,103,115,110,113,107,116,121,99,102,106,105,98,107,97,104,109,99,101,106,113,108,100,102,108,95,102,93,94,121,100,95,106,99,86,103,112,105,112,113,100,102,107,115,110,109,102,90,111,103,109,115,105,115,72,109,106,116,85,109,102,110,97,101,100,102,105,100,112,101,110,104,104,108,110,106,106,107,113,103,101,109,106,102,105,106,109,102,95,107,87,108,103,114,110,109,108,105,95,110,119,102,97,95,99,104,106,113,101,112,104,101,106,112,103,99,103,97,106,120,113,100,94,106,107,107,112,103,102,107,113,113,105,108,101,99,108,97,102,102,73,103,101,113,114,95,107,113,113,103,123,108,96,99,113,100,109,91,100,108,114,120,93,107,107,98,113,116,124,104,101,105,123,103,103,86,110,108,110,100,105,101,109,102,114,105,114,105,99,108,116,107,109,110,104,98,104,105,92,117,103,110,100,95,91,104,114,125,105,115,102,99,113,92,105,100,118,110,109,109,81,111,100,101,108,106,108,106,112,110,108,102,119,106,111,105,108,108,111,108,104,103,101,103,108,101,98,105,98,108,108,116,102,104,108,99,121,101,102,108,97,105,106,107,110,125,114,113,89,101,116,96,110,116,116,95,109,93,98,94,109,110,116,92,98,103,108,121,99,104,103,104,106,108,106,70,108,110,122,106,105,91,108,98,108,101,98,114,102,110,91,120,103,95,95,104,133,99,114,119,101,102,107,103,95,99,110,107,86,110,106,108,107,107,106,107,104,113,95,99,125,106,87,100,125,105,99,115,117,107,112,112,96,112,101,98,108,88,105,103,108,105,109,94,97,127,97,121,94,106,103,110,103,121,107,113,101,85,106,116,100,113,114,111,115,100,100,105,110,110,114,110,109,115,101,104,134,106,105,99,112,100,121,103,93,106,113,118,105,110,104,114,112,106,109,97,107,110,109,103,93,101,125,100,99,111,111,105,99,99,111,105,102,102,117,95,106,107,105,113,105,94,106,102,100,107,105,95,113,106,88,121,110,106,100,116,103,100,92,108,122,97,107,99,110,121,107,103,112,95,113,113,113,97,115,105,94,102,106,101,92,115,108,111,94,106,106,99,107,113,87,115,90,110,103,106,101,115,109,94,115,102,107,98,94,96,104,108,96,110,117,112,101,113,103,105,108,99,108,112,108,106,112,98,117,105,98,112,112,106,103,96,90,118,107,97,111,100,106,101,110,94,108,102,109,96,102,108,101,104,119,88,110,94,105,114,100,109,104,75,109,116,112,102,118,105,97,118,105,108,110,78,104,107,99,103,107,90,105,107,101,105,102,102,111,93,110,104,108,105,114,104,96,103,106,114,116,102,116,93,107,107,123,111,108,117,105,109,110,106,104,113,97,96,98,104,103,107,106,104,94,92,95,102,104,116,101,111,119,97,98,92,108,85,103,107,103,107,100,96,105,105,105,115,99,103,113,102,106,116,102,97,99,88,105,82,109,108,117,94,96,113,111,120,109,97,99,104,109,107,109,119,110,108,106,104,106,99,104,100,111,130,103,123,103,96,117,103,103,104,117,107,107,110,104,101,91,111,109,100,97,105,100,102,90,97,107,100,104,99,100,106,113,110,114,117,102,109,87,104,92,113,110,91,105,112,108,112,113,110,105,107,101,111,105,100,87,103,105,119,98,95,106,110,99,118,116,113,104,105,104,112,106,97,109,100,109,109,114,105,112,105,110,96,95,113,92,117,105,112,106,103,95,105,106,100,95,122,126,105,98,108,101,102,108,94,91,102,98,107,111,109,97,95,110,96,109,97,105,102,107,116,105,101,99,102,109,98,106,108,103,99,101,119,105,107,85,108,112,131,105,106,114,102,99,110,86,108,116,100,113,103,102,112,102,100,106,96,114,112,112,108,91,103,105,113,106,108,109,107,103,98,106,103,106,109,95,93,115,94,104,100,109,104,110,111,107,106,102,120,88,124,101,104,116,135,104,105,100,111,109,100,101,100,97,109,90,103,108,95,65,99,109,90,91,117,106,109,109,119,100,106,99,105,113,110,86,107,100,111,102,97,130,111,110,109,110,106,109,107,113,113,98,120,102,125,107,102,106,102,103,114,105,120,110,95,103,98,105,95,115,96,111,95,113,84,109,105,102,109,98,99,104,116,102,107,118,101,119,103,103,107,103,112,96,109,104,98,108,101,110,108,117,102,96,113,96,99,117,102,109,106,99,96,102,107,107,106,104,104,104,98,110,109,121,101,111,99,95,106,93,108,95,110,109,99,114,103,103,101,108,105,99,102,101,106,104,101,106,95,94,92,112,105,104,104,113,102,96,125,112,104,115,103,102,99,103,94,107,112,106,103,95,104,98,104,106,107,100,121,101,95,106,104,103,98,92,99,95,106,94,115,103,109,107,100,96,85,103,102,98,119,105,108,91,119,106,99,107,110,111,102,90,99,111,88,102,114,102,97,109,101,102,105,106,104,111,108,98,104,109,103,101,101,104,109,111,109,103,113,73,106,105,103,107,101,103,115,102,104,107,91,102,98,116,117,113,115,116,93,110,96,103,110,109,104,105,109,90,111,113,118,109,112,109,99,106,108,101,113,90,94,97,112,109,118,83,114,108,94,95,111,95,101,113,114,106,105,107,104,100,113,96,121,100,109,103,111,106,98,104,97,100,106,106,99,108,103,111,97,90,119,110,96,107,107,119,100,119,100,111,104,101,115,110,109,132,113,100,110,100,106,111,98,106,97,112,106,104,114,108,105,107,92,117,100,96,102,115,103,107,101,119,95,100,106,95,111,99,97,87,93,110,102,126,97,105,99,105,94,105,99,88,95,98,101,108,112,102,100,90,106,108,106,110,100,108,102,108,105,103,97,110,99,106,103,105,107,110,106,98,101,104,114,107,97,131,102,100,111,117,120,111,97,103,106,109,108,107,103,93,120,105,112,105,98,97,111,102,106,99,113,108,83,99,107,107,112,107,96,110,95,109,87,125,99,58,93,99,103,103,101,98,120,104,95,109,111,91,107,101,106,106,98,95,100,96,104,110,104,101,102,106,105,99,98,116,105,107,120,101,102,94,98,101,97,107,98,101,100,113,107,93,95,107,107,102,108,100,107,98,115,93,101,105,102,103,100,107,113,107,107,93,102,111,109,110,108,92,97,107,107,111,108,103,100,99,92,98,99,100,116,87,116,111,102,99,105,104,92,102,109,101,106,109,113,101,112,90,107,98,104,100,117,109,104,101,107,95,105,100,103,104,106,108,98,100,95,100,98,102,106,94,107,108,80,110,100,107,108,109,88,94,103,104,107,119,110,99,96,103,107,99,93,105,109,102,105,103,117,102,111,100,102,100,102,104,95,102,100,110,86,95,106,104,104,102,100,108,99,108,117,114,96,117,106,98,95,95,96,105,98,112,97,109,83,109,104,103,110,97,104,103,104,109,64,97,108,108,113,99,107,116,101,101,98,108,108,115,113,112,91,109,110,103,109,100,114,103,93,108,99,92,109,111,115,104,109,121,99,100,105,106,125,110,103,106,102,96,95,107,100,107,103,113,116,112,109,103,105,111,95,95,103,100,101,107,100,91,109,112,107,114,104,108,115,104,100,100,111,100,110,98,120,91,107,102,96,115,122,104,109,107,99,102,107,99,84,99,112,94,105,130,99,102,96,98,95,113,105,103,109,107,108,110,115,103,97,109,104,101,103,108,103,106,121,95,91,95,120,110,106,92,99,100,109,97,103,99,97,105,100,112,118,101,106,97,105,106,108,96,120,98,106,103,98,107,103,89,100,95,98,102,106,100,104,105,109,94,97,95,87,107,112,106,110,100,96,98,108,97,103,108,107,102,102,96,103,107,104,80,106,111,95,98,99,104,89,106,86,111,102,104,122,105,116,117,96,96,96,114,122,101,98,97,103,109,102,106,96,103,104,102,118,105,102,107,96,102,108,102,96,108,107,96,104,105,92,105,91,109,96,111,100,95,108,98,109,105,103,73,120,97,94,119,103,105,105,100,100,109,115,98,104,103,101,102,102,108,97,90,101,102,110,106,101,102,97,97,105,120,109,87,109,96,102,92,111,94,111,98,93,112,103,94,101,113,105,110,107,109,93,98,109,87,105,109,102,107,98,96,110,103,100,101,105,93,106,100,102,91,104,106,92,106,108,97,94,96,98,113,102,110,119,112,113,106,95,104,99,104,104,113,98,109,105,100,107,107,115,105,98,105,96,106,105,101,99,99,105,98,107,122,100,112,108,90,112,133,107,102,97,98,109,117,112,92,101,107,87,105,100,109,111,91,103,104,112,91,96,118,108,101,89,114,110,98,104,94,91,105,94,100,110,105,102,104,105,106,101,97,100,100,114,104,107,87,100,90,100,92,129,94,104,99,103,102,109,110,96,105,91,122,78,99,118,92,103,101,107,108,102,100,97,91,104,90,101,112,112,101,94,108,85,100,131,97,91,100,110,94,111,139,103,96,102,104,92,104,92,85,100,84,103,102,94,112,100,118,114,108,104,97,109,116,88,105,89,102,111,97,110,94,113,94,113,95,99, +475.43387,85,99,88,114,88,121,88,104,98,98,103,105,101,107,91,101,94,107,99,112,99,112,100,111,105,97,101,103,88,96,108,95,107,122,99,103,100,108,104,110,96,98,98,105,113,98,108,92,101,104,101,103,99,113,108,96,101,92,104,98,109,96,101,102,108,110,96,105,112,95,98,97,113,104,102,116,106,107,98,110,110,107,101,95,105,103,107,101,114,113,99,110,88,99,104,100,109,114,94,117,91,106,109,119,108,101,96,100,95,107,109,97,91,98,104,107,103,104,105,119,104,102,111,106,115,96,94,107,117,94,104,110,101,109,104,106,102,105,102,94,98,81,102,92,92,71,119,94,100,93,96,118,108,106,95,74,91,121,105,95,113,113,121,107,102,112,97,109,119,82,112,108,103,107,107,100,97,71,95,98,97,106,98,96,99,100,91,86,106,107,113,101,93,102,101,97,106,103,101,100,107,94,104,105,93,100,103,105,98,122,105,99,106,114,104,99,75,110,96,112,116,98,117,107,107,99,103,106,110,107,104,99,101,104,104,105,99,107,105,108,90,100,106,110,104,96,93,104,112,103,127,112,102,116,105,107,111,104,101,109,97,109,109,100,96,113,108,99,101,98,95,113,120,104,103,97,115,102,109,114,114,109,101,100,110,110,92,114,105,102,98,98,112,83,106,100,107,111,113,120,98,104,105,104,109,114,103,111,105,108,97,111,104,107,101,105,106,101,118,101,116,97,103,99,111,96,103,95,110,103,109,98,96,102,95,106,107,103,96,109,115,106,103,92,98,98,102,106,113,104,103,97,99,91,112,110,104,108,117,108,106,101,102,104,98,111,99,113,95,100,98,108,126,124,101,117,114,109,113,106,123,108,107,105,103,104,107,99,102,93,105,109,102,101,104,103,104,97,103,116,104,115,96,97,114,106,106,99,109,99,99,109,105,117,102,108,92,101,112,101,95,109,127,111,125,70,114,100,97,102,98,114,105,106,102,95,99,108,112,103,107,98,100,111,99,108,100,97,110,123,97,107,107,102,105,100,120,105,107,99,93,109,105,116,105,114,100,96,113,106,94,108,105,104,103,94,103,112,111,113,107,104,115,98,103,91,117,105,105,107,100,119,116,96,101,95,111,112,98,104,120,114,103,112,100,116,86,110,111,97,103,84,104,103,102,110,112,99,90,107,106,117,93,108,87,93,108,113,94,111,91,108,104,114,82,109,109,107,108,117,109,101,71,99,103,114,109,102,118,107,106,108,108,120,119,100,119,116,98,109,118,90,98,94,90,86,111,105,99,98,100,98,103,92,109,90,91,91,99,114,105,100,110,97,103,101,103,104,108,107,99,102,103,94,114,102,113,117,114,97,108,109,107,95,104,103,103,106,109,94,101,113,107,110,105,95,90,104,114,104,100,102,99,108,98,99,113,110,99,111,115,100,103,100,105,99,103,97,101,94,107,109,117,94,113,96,124,91,107,125,105,102,100,119,101,106,105,112,103,110,106,118,109,103,106,108,113,94,106,112,120,115,81,108,94,94,109,105,110,106,98,110,111,97,96,108,109,90,97,96,112,96,113,104,112,92,95,104,100,105,109,109,107,105,93,101,113,104,104,98,95,104,106,103,104,104,104,99,110,102,120,109,111,95,103,99,109,101,107,109,114,100,81,109,101,106,103,103,109,92,132,106,102,107,103,101,110,94,105,112,103,105,101,112,111,112,115,117,114,88,102,113,96,113,97,120,100,108,110,88,108,108,108,107,100,100,99,114,103,103,104,106,102,107,100,102,95,91,104,92,101,95,101,106,95,104,95,107,107,104,104,109,111,120,98,137,105,95,96,100,113,105,97,111,112,100,103,114,112,96,98,99,95,116,100,108,96,93,102,108,106,110,104,113,104,97,86,107,126,112,100,104,110,100,102,102,101,86,92,101,107,91,100,98,93,92,108,119,122,91,96,94,113,103,106,105,101,105,118,116,103,110,101,103,113,106,112,108,113,90,101,101,109,118,109,113,117,103,90,111,81,98,98,106,95,99,92,103,106,104,113,100,103,107,119,112,122,98,114,99,106,97,119,107,111,117,103,110,129,116,109,112,109,105,101,92,99,97,93,104,109,110,97,107,104,104,96,121,108,109,113,106,108,104,105,93,103,102,117,104,130,99,110,105,129,98,107,110,96,100,110,109,102,101,104,95,95,95,113,124,104,110,109,101,103,101,110,103,103,99,100,94,107,100,96,100,108,99,106,106,103,106,114,110,109,95,116,103,84,104,109,102,105,101,107,93,106,104,107,107,99,101,98,107,98,101,109,108,107,105,107,108,104,99,107,119,100,86,106,113,106,101,99,90,112,103,108,106,113,113,104,106,103,100,87,103,116,105,103,112,113,90,91,108,98,105,108,113,107,99,109,103,102,100,111,97,102,114,98,111,106,91,73,112,72,88,108,99,100,104,105,99,95,84,102,105,108,112,110,102,108,97,113,107,108,108,112,102,104,107,101,100,103,99,110,107,103,113,95,106,102,112,126,97,108,115,117,104,85,103,109,100,93,108,100,96,109,103,111,96,92,106,114,102,104,106,102,102,98,95,105,93,112,98,107,112,95,100,121,110,94,99,99,102,94,105,109,119,90,109,119,102,98,92,98,106,103,91,112,113,96,90,121,109,92,100,104,109,105,90,97,101,100,83,100,111,100,99,94,111,106,87,118,80,108,104,101,89,103,103,95,95,98,109,119,89,102,102,105,111,103,102,110,110,113,106,104,123,96,95,100,112,92,103,103,94,90,114,112,98,110,108,98,107,111,106,115,106,116,97,100,79,106,92,96,98,99,102,116,100,108,109,110,104,111,111,109,91,103,108,103,104,107,111,95,110,96,99,105,110,103,100,117,114,102,75,100,112,94,111,102,91,98,116,97,89,102,102,109,102,99,99,103,97,105,108,98,111,97,116,98,100,96,100,117,107,122,105,110,94,101,104,91,88,109,103,108,92,98,101,109,109,100,99,100,103,103,111,99,84,104,105,99,125,111,102,101,99,91,108,105,104,114,107,117,101,93,99,98,96,112,99,104,100,101,101,104,98,97,103,105,106,101,93,95,103,108,97,92,105,107,99,106,100,111,95,104,100,104,87,99,98,115,112,103,101,110,99,102,110,91,98,102,110,103,98,94,96,105,98,105,113,94,84,93,97,106,103,108,107,106,111,108,99,95,91,104,104,108,110,102,98,105,111,101,108,100,97,113,102,106,105,99,117,103,114,93,103,104,103,111,112,95,113,109,109,96,101,110,94,104,111,103,102,103,103,106,86,96,117,96,96,107,96,106,102,96,106,96,98,100,110,95,93,105,112,100,97,108,99,106,117,91,104,88,105,100,105,102,101,104,102,91,114,111,100,98,112,103,102,90,90,112,103,99,101,105,101,98,109,90,100,102,105,104,102,102,112,109,97,116,103,109,98,90,105,102,98,101,101,124,103,110,110,109,105,106,110,114,106,102,101,105,96,102,98,111,109,108,104,103,100,112,106,97,105,114,106,106,100,93,88,103,106,109,108,99,109,105,113,115,88,111,108,95,109,110,97,108,89,105,99,99,100,100,115,98,99,108,94,91,96,116,102,97,91,101,104,116,106,90,95,108,114,114,96,97,100,110,111,102,105,96,107,93,103,99,100,110,97,100,97,95,89,105,101,87,99,102,100,117,87,125,106,102,98,111,99,113,104,108,95,110,103,109,100,84,102,102,95,102,100,103,92,96,111,122,100,109,118,102,104,98,113,108,99,103,99,96,99,103,117,105,104,93,96,113,104,117,104,86,114,109,90,104,110,104,96,99,113,105,106,97,103,104,104,111,100,100,85,120,102,94,114,107,100,112,126,91,100,99,100,93,93,108,107,118,96,103,102,115,104,102,79,83,108,110,90,86,104,98,99,108,97,101,110,96,107,100,99,102,103,90,115,106,103,94,100,99,103,111,103,102,109,120,107,111,107,103,100,107,114,109,112,107,98,99,99,116,94,105,105,98,99,108,107,100,100,123,101,87,100,105,105,110,101,103,103,113,97,98,94,100,98,107,113,96,103,112,103,125,99,98,113,98,116,98,119,106,104,111,112,102,106,106,115,113,105,104,101,112,111,93,109,126,102,103,98,96,102,101,101,97,107,100,91,100,106,93,101,101,100,101,107,115,116,111,106,98,103,100,104,110,110,105,108,103,106,102,103,96,100,103,94,101,98,98,113,112,100,96,100,86,112,100,98,100,96,98,109,142,103,117,101,109,98,91,101,88,104,104,97,109,102,78,106,111,99,107,111,92,105,102,102,113,102,110,117,104,94,96,102,96,100,94,104,111,113,101,106,94,95,111,99,102,106,106,103,113,118,98,97,102,113,104,107,112,105,107,108,101,103,107,103,96,106,87,99,111,114,102,114,106,99,103,104,108,102,98,89,107,108,96,98,109,77,98,97,102,108,96,96,99,100,103,92,107,102,92,110,92,100,104,103,112,96,97,87,109,100,94,106,106,95,106,101,99,98,103,110,113,102,104,94,101,105,119,102,116,99,105,87,124,104,115,103,103,104,104,106,95,107,94,102,111,106,108,105,95,99,101,114,105,118,104,116,105,105,105,96,108,101,96,99,105,117,94,106,106,109,92,93,106,97,94,92,109,108,101,105,108,101,106,103,107,94,95,91,95,96,116,97,99,98,97,99,93,96,98,103,84,81,101,113,112,96,116,99,98,97,115,89,99,92,81,107,104,98,96,94,97,91,112,102,105,95,103,94,104,109,106,104,100,99,106,88,95,110,107,94,102,99,80,113,101,108,101,84,98,103,94,101,90,95,94,80,93,108,96,90,89,95,91,77,106,84,98,98,89,104,116,105,103,101,101,114,87,86,101,96, +475.57437,103,105,107,95,95,99,88,99,109,104,95,112,99,108,112,90,107,107,109,99,91,101,90,102,98,106,91,110,105,109,99,105,105,84,98,85,99,108,97,107,110,101,94,87,116,101,99,119,101,109,92,105,124,109,107,89,100,105,107,97,85,105,116,100,100,113,109,103,104,105,101,119,103,105,110,117,91,104,101,106,108,95,105,101,101,95,98,96,100,96,100,99,105,109,102,102,93,113,91,96,101,104,105,88,101,107,98,109,103,103,97,103,100,108,105,93,106,96,103,106,96,104,100,106,119,101,107,93,105,91,105,105,102,103,111,88,92,97,106,100,96,105,101,106,101,105,100,104,103,91,95,92,122,107,107,105,96,111,95,106,98,103,112,96,101,99,95,95,98,94,101,105,99,99,102,113,112,106,109,80,107,98,97,107,90,101,101,98,101,99,94,94,110,96,87,104,114,97,102,103,97,103,110,97,100,94,92,106,97,117,92,103,106,106,107,114,97,96,102,103,109,108,99,105,100,107,108,98,99,95,93,103,127,135,100,96,103,92,94,102,99,91,107,115,101,111,102,115,79,110,106,102,97,103,94,99,91,109,103,111,95,109,97,93,109,101,99,104,97,104,102,102,106,95,97,102,103,100,116,98,102,111,106,111,101,92,90,101,106,101,78,115,106,110,113,108,99,103,93,108,94,109,110,100,104,104,114,103,98,104,94,104,96,118,97,94,106,101,100,101,97,117,95,110,93,97,105,104,122,114,104,81,113,125,91,102,103,102,106,115,100,110,101,95,110,98,97,108,97,95,109,105,101,106,96,102,110,101,94,110,95,100,94,95,102,89,103,108,99,91,114,103,110,86,100,105,108,95,94,105,99,96,114,95,112,96,105,107,108,96,115,99,106,108,99,99,95,95,96,107,109,105,102,108,97,99,107,96,86,108,101,101,104,96,103,92,99,95,109,104,99,95,114,109,99,105,115,117,140,124,99,112,113,86,89,115,102,114,98,110,105,100,105,122,97,105,102,91,102,107,103,105,100,96,101,92,100,96,109,113,92,137,123,105,98,93,109,105,108,97,106,104,107,94,101,106,97,103,105,103,117,114,93,102,102,101,107,107,108,108,100,110,107,95,88,104,105,97,102,93,113,107,102,116,92,108,105,96,111,109,96,104,115,109,117,100,106,96,102,94,101,99,108,108,96,108,105,104,105,111,99,102,98,110,99,104,110,95,95,119,100,105,94,102,108,107,103,94,103,103,111,100,100,103,99,101,108,100,102,104,101,96,98,110,96,100,95,103,107,114,92,104,112,102,95,106,109,98,106,109,98,99,96,99,117,101,99,96,93,98,107,117,115,98,110,110,99,100,115,104,107,108,102,92,96,108,102,94,100,101,97,109,96,102,104,113,100,104,98,110,102,116,99,102,106,101,101,109,109,112,99,113,90,106,104,101,100,116,108,95,103,106,82,96,98,114,99,92,100,96,101,99,105,103,101,98,108,106,103,112,111,97,96,110,105,93,122,98,100,106,89,100,102,106,99,90,94,95,104,83,101,112,102,105,96,103,113,100,104,98,100,126,106,114,99,100,100,101,104,91,99,101,99,91,96,100,101,109,107,97,102,99,110,97,96,118,108,99,97,90,78,100,100,117,100,99,104,111,96,111,94,100,102,99,137,94,105,99,109,101,110,106,102,107,105,71,104,96,100,99,109,109,107,104,109,109,75,103,102,97,103,105,93,97,109,115,84,109,106,99,109,105,100,109,99,104,102,105,104,99,91,106,94,106,103,110,95,107,84,111,95,108,90,103,98,110,95,108,106,114,96,94,99,98,113,100,105,82,112,92,114,92,98,101,111,96,116,106,103,95,102,100,117,98,103,109,117,108,110,90,104,99,96,104,110,113,98,81,111,112,71,116,92,99,97,95,101,101,86,93,100,95,99,111,94,97,107,110,94,106,91,108,101,99,101,96,95,99,113,107,107,96,70,101,94,103,102,110,65,101,97,104,88,97,101,95,98,75,109,101,114,100,113,102,110,100,99,108,94,92,90,109,107,93,99,94,82,97,92,85,104,99,100,110,108,95,108,106,91,109,113,113,107,113,107,110,97,104,106,94,99,102,103,101,99,98,98,91,112,97,97,102,110,100,102,105,117,98,90,114,109,117,102,103,102,98,107,115,94,104,113,99,101,106,98,111,98,110,105,102,95,96,97,101,106,107,99,105,96,109,113,101,108,97,102,101,104,102,93,110,99,102,112,90,93,102,112,102,91,109,92,103,105,92,109,106,129,99,96,101,101,93,99,100,110,86,112,106,105,105,104,86,98,103,105,104,110,103,116,96,112,109,108,99,110,87,97,116,102,104,111,80,110,103,114,107,103,102,91,109,96,106,110,93,101,104,100,92,84,83,96,113,101,100,96,93,83,94,112,102,97,117,108,108,102,105,105,100,61,79,100,94,90,117,96,100,111,100,121,110,98,102,94,96,116,101,98,117,132,115,98,121,109,106,109,113,111,112,93,107,107,111,124,101,114,100,102,98,100,116,106,102,102,97,82,95,99,97,114,95,105,107,90,105,79,96,98,88,103,99,96,101,109,110,97,104,101,107,108,92,113,100,115,77,115,112,110,100,105,110,89,101,106,90,108,120,108,100,110,117,103,104,111,97,108,103,110,100,101,106,102,112,101,96,115,94,121,101,98,107,107,111,106,114,108,102,106,96,109,95,107,115,98,108,126,109,107,118,102,107,107,97,100,106,105,123,104,120,103,83,111,104,105,105,110,116,95,107,119,117,100,102,101,113,119,104,107,108,113,108,116,107,124,103,105,93,106,114,107,111,102,108,113,106,113,103,86,104,94,106,109,94,102,104,107,100,109,92,100,105,111,105,109,112,113,104,127,109,101,99,106,102,118,98,102,99,114,115,118,120,105,121,99,105,104,104,102,96,105,107,83,105,109,110,113,108,107,110,109,98,100,107,116,77,103,109,103,110,115,99,116,111,121,113,109,105,111,108,102,105,105,99,92,102,114,98,97,101,103,120,106,107,107,106,108,110,112,100,115,107,117,103,107,107,99,110,107,102,109,101,102,102,114,101,116,97,103,102,111,93,106,107,113,109,112,98,99,110,114,105,110,96,109,105,98,104,107,96,104,103,92,100,112,95,111,98,102,107,106,103,68,103,101,114,101,106,102,104,120,113,104,100,99,104,111,92,104,111,104,103,103,101,106,107,106,101,98,114,105,110,104,103,117,108,97,103,115,117,111,103,109,99,96,87,101,108,102,98,105,106,107,103,98,102,88,120,100,106,108,100,101,103,99,104,109,106,98,97,107,106,99,105,98,109,95,97,109,116,116,103,91,105,116,111,98,102,103,104,105,104,105,90,105,105,101,98,104,108,92,104,97,102,127,104,95,113,108,101,107,92,105,101,111,103,107,98,106,107,103,94,83,89,108,102,113,105,108,102,89,104,101,109,100,102,110,110,106,106,109,98,111,108,100,114,105,106,101,96,111,97,113,111,108,103,105,110,85,106,96,96,105,117,102,106,108,104,90,99,104,108,105,94,106,122,106,113,99,106,97,96,99,103,96,102,103,103,106,98,101,110,95,113,112,117,112,101,112,92,104,100,109,104,100,111,102,99,100,102,113,95,89,104,100,104,109,96,109,99,113,102,103,102,107,69,95,94,113,106,98,98,107,105,95,102,112,97,92,105,97,102,100,97,111,97,117,102,103,98,91,113,111,100,112,99,89,98,112,94,106,103,94,106,101,109,95,90,104,94,116,102,98,104,91,105,95,100,104,109,96,102,113,99,111,106,106,109,95,98,111,113,101,100,103,94,99,103,103,103,115,113,95,95,107,96,98,106,106,119,102,105,105,106,105,80,91,104,107,92,119,90,102,99,100,105,101,93,104,91,104,91,104,111,103,97,99,104,94,97,107,110,110,104,92,102,92,115,102,107,94,103,106,95,102,97,108,88,100,102,108,112,115,103,104,99,104,104,97,95,104,109,91,100,100,103,99,111,112,96,113,91,106,121,101,104,112,101,111,102,108,104,116,109,116,98,90,95,95,99,99,98,108,104,99,109,95,109,101,101,96,100,108,102,117,100,101,102,113,81,109,107,101,92,98,108,101,109,105,104,102,92,108,89,91,90,90,101,112,93,108,96,112,116,93,111,103,108,104,96,106,113,109,99,113,112,108,106,94,127,88,115,105,92,111,100,97,98,109,98,105,102,101,105,105,97,101,113,76,111,90,94,112,109,91,104,100,102,113,103,102,103,95,102,109,104,102,104,90,100,113,108,106,104,113,108,100,100,102,108,101,102,110,100,103,106,108,97,113,100,107,114,99,104,109,107,91,102,100,103,95,101,113,110,105,103,95,116,98,97,104,103,95,102,101,96,100,96,92,98,105,105,110,105,99,96,109,92,100,91,104,97,108,111,102,110,99,100,129,104,102,94,93,99,95,102,101,106,98,91,91,97,102,111,92,77,105,82,89,109,101,93,105,106,107,83,84,97,111,102,94,100,90,98,103,99,110,102,101,112,106,105,106,99,103,89,90,93,103,103,88,96,99,96,104,100,100,105,99,102,102,109,94,95,112,100,100,103,95,95,102,97,106,97,105,115,99,115,108,97,104,110,105,105,118,91,114,92,113,102,89,99,102,93,105,95,106,100,99,99,80,114,95,104,102,101,100,101,100,102,110,98,94,116,116,104,110,95,98,95,110,102,95,97,102,106,102,92,99,115,101,105,110,107,100,117,99,97,109,107,101,112,89,96,108,108,96,90,97,103,106,110,96,92,98,95,112,97,100,106,107,103,109,117,112,87,94,97,97,115,104,98,105,99,98,105,106,106,104,117,106,101,94,99,99,101,97,103,101,104,89,97, +475.7149,103,92,86,85,98,108,111,97,86,102,105,112,96,88,96,101,95,112,100,114,116,106,93,91,104,101,96,112,118,122,106,104,93,113,104,105,107,99,94,105,121,111,102,96,100,105,98,77,99,110,108,99,104,103,122,94,105,110,103,105,92,98,100,102,107,105,98,112,107,105,97,104,111,94,101,102,98,104,111,118,110,104,100,111,104,105,107,100,102,97,107,105,106,108,101,103,104,105,99,97,100,102,112,96,106,104,97,109,109,103,96,103,92,94,114,96,99,95,96,96,101,94,112,110,109,113,107,89,107,95,114,111,100,104,102,98,102,91,110,106,102,108,103,105,110,104,103,102,86,96,102,98,101,101,104,101,107,107,124,103,108,99,81,103,97,102,95,100,99,99,98,98,105,100,108,90,109,99,113,106,103,110,103,102,103,114,99,103,117,96,100,108,113,110,96,113,110,96,104,102,109,95,95,104,101,105,107,113,99,113,89,100,94,114,98,112,100,82,101,105,102,110,103,100,100,100,107,102,95,112,110,112,104,114,89,93,100,124,124,83,103,90,113,99,114,118,93,114,86,104,108,95,97,105,96,109,101,106,84,108,100,111,100,122,86,88,102,104,107,102,104,101,127,106,100,100,109,102,107,98,106,104,81,106,109,114,95,101,100,109,98,111,91,96,99,105,104,104,96,107,102,98,112,121,95,118,103,111,101,97,101,108,105,95,108,105,110,107,110,99,106,96,104,99,100,106,105,91,110,112,113,99,118,95,104,106,97,108,104,107,92,98,117,102,98,110,103,102,101,118,80,100,100,108,117,98,107,107,113,117,99,101,106,98,110,93,101,109,105,98,110,98,102,110,97,96,114,123,101,111,109,111,103,107,84,95,96,92,98,100,107,92,90,105,110,101,98,115,103,126,98,100,99,101,109,109,103,107,103,84,108,99,102,101,99,91,118,95,118,100,109,103,91,108,96,105,101,102,104,102,101,106,104,75,99,97,99,126,105,100,109,98,110,91,93,110,109,88,98,105,100,93,104,110,111,97,113,116,100,101,109,112,107,106,112,103,98,95,100,101,102,103,88,102,109,94,107,113,116,100,100,103,103,110,99,104,103,107,105,91,105,116,122,94,100,103,104,98,106,106,123,110,100,103,99,118,107,98,97,96,99,107,102,105,99,102,125,104,94,111,103,103,112,99,104,101,106,111,111,104,104,103,109,98,91,85,101,105,102,91,105,107,107,96,108,101,104,94,107,101,111,113,103,102,100,86,100,95,83,104,99,98,102,110,98,110,92,92,100,110,95,95,99,99,108,106,122,100,108,95,97,102,102,96,97,104,111,99,106,104,101,105,111,98,102,106,99,100,98,113,106,105,104,104,123,91,108,97,105,107,107,112,120,102,101,96,103,93,105,103,117,102,100,105,118,104,95,107,109,83,108,106,99,93,100,105,103,109,96,91,112,103,100,98,96,109,85,93,100,120,106,109,114,104,108,106,112,103,108,102,99,105,105,100,91,102,100,102,94,91,102,107,112,101,103,106,109,100,110,99,91,98,119,103,75,102,96,86,112,93,113,107,104,110,109,109,100,110,95,108,104,95,108,111,105,112,99,102,98,105,108,91,111,108,107,99,97,97,113,101,102,101,108,104,100,97,112,107,104,112,109,104,116,103,101,110,100,108,99,94,109,102,114,103,100,100,118,110,103,106,108,104,112,107,108,98,112,87,106,102,115,111,83,87,95,98,101,106,98,86,106,103,109,108,94,105,99,105,83,108,94,115,86,100,94,106,96,112,101,103,104,104,96,99,95,109,93,100,108,103,95,100,96,97,107,108,99,111,118,99,107,112,96,105,94,113,108,110,102,110,102,107,108,113,98,106,103,117,106,93,99,97,99,104,101,111,118,85,105,109,99,106,109,98,103,101,99,102,105,115,108,96,134,107,96,98,103,100,102,104,90,102,105,109,109,100,92,116,111,94,105,99,100,105,95,99,111,99,112,99,104,92,111,105,92,116,109,133,127,96,104,98,123,103,108,107,106,96,106,110,97,106,104,105,100,85,110,103,99,96,106,100,104,124,116,99,100,102,119,101,107,106,81,104,100,103,104,108,112,89,112,113,111,116,94,89,97,96,107,100,103,110,94,99,76,107,115,98,97,111,99,105,98,95,96,102,108,111,99,113,101,115,99,101,101,93,96,96,103,105,101,94,108,92,107,99,109,105,91,104,102,107,107,102,105,102,101,107,107,110,109,82,94,102,113,95,95,108,110,98,104,106,97,108,108,97,95,106,96,101,105,136,97,108,94,100,121,111,100,96,96,111,107,100,116,100,107,114,98,105,102,108,108,109,95,92,90,114,104,136,114,98,95,106,96,92,106,108,115,106,100,114,100,86,106,101,99,109,116,93,101,96,111,107,91,96,91,81,114,108,95,116,100,87,98,106,106,108,98,102,100,96,115,112,109,107,114,100,117,105,99,107,112,100,92,102,95,97,86,131,101,109,96,103,102,86,95,112,107,118,102,99,107,99,115,101,108,118,92,117,104,95,103,90,106,95,105,96,113,93,116,118,111,99,95,103,102,97,99,111,105,99,103,116,105,115,100,102,113,115,109,104,110,98,101,103,105,97,100,100,105,103,106,98,106,110,135,107,107,98,97,98,106,97,101,103,102,101,113,95,100,99,95,115,113,112,117,104,116,109,105,100,111,109,111,117,119,100,100,101,107,104,98,108,105,113,99,106,119,101,108,110,98,133,112,103,107,113,137,112,98,107,94,92,119,102,104,92,107,109,102,107,110,112,108,95,102,109,107,107,106,109,106,98,110,102,111,110,107,106,106,100,113,109,93,94,113,99,100,110,111,86,117,105,89,109,102,108,104,94,112,94,112,107,99,98,102,107,114,105,110,96,106,100,101,91,98,101,112,99,112,96,96,104,108,106,102,101,112,90,83,87,90,109,121,102,112,96,99,108,107,95,102,104,125,111,107,106,117,100,116,97,91,107,102,115,104,94,100,70,103,101,96,121,108,102,104,100,107,117,96,102,115,100,104,108,115,119,105,105,95,107,107,106,107,96,103,99,103,104,110,102,99,108,106,109,113,103,110,100,113,105,109,105,117,116,102,113,101,103,101,102,117,99,109,99,99,112,102,99,100,102,102,95,107,113,112,110,92,105,105,105,95,105,96,73,102,93,102,108,117,108,102,112,99,100,95,102,117,103,113,129,97,106,116,102,106,95,117,99,98,108,107,108,101,111,98,108,95,92,108,107,99,97,104,108,101,104,106,102,91,101,112,107,104,104,103,94,95,95,101,102,108,117,103,111,101,102,109,98,91,103,118,91,100,94,99,104,113,104,109,101,106,106,105,111,102,103,114,100,113,113,104,104,105,101,109,107,99,94,95,109,106,104,100,108,105,99,105,105,109,94,105,93,99,106,118,110,109,107,107,109,100,90,97,112,102,98,100,103,112,100,106,94,96,100,113,98,115,98,115,111,116,109,102,110,108,97,110,98,111,110,103,72,108,111,106,114,103,113,103,101,103,99,105,106,96,113,116,100,101,100,102,115,100,116,99,95,99,103,101,111,85,95,106,117,113,123,103,102,95,106,108,103,107,100,108,99,106,106,98,100,103,112,103,120,97,102,103,105,114,108,101,109,107,104,104,114,107,89,106,108,104,103,109,105,108,104,94,98,110,92,105,125,106,107,104,107,105,106,103,96,106,97,109,106,96,106,113,96,117,106,113,116,113,104,112,110,101,100,121,103,105,98,96,116,112,107,121,99,113,98,121,106,107,102,92,102,106,109,113,100,109,105,105,102,106,113,100,105,105,114,108,85,109,113,105,106,98,106,138,95,101,84,100,105,106,107,100,103,104,99,103,110,121,101,104,101,96,102,104,107,106,125,103,94,117,98,98,106,87,114,114,92,95,113,113,97,102,103,103,109,106,109,102,89,110,102,99,116,109,105,98,123,115,101,108,112,109,128,105,114,105,106,100,98,100,112,111,107,112,100,117,107,99,101,121,99,106,107,106,99,112,111,103,104,96,105,104,92,102,98,102,98,107,104,98,100,98,101,103,114,99,109,101,112,103,102,101,103,112,111,97,106,109,117,101,103,91,103,103,104,95,103,96,111,96,98,120,113,119,112,89,101,102,104,102,114,96,124,105,105,97,108,101,96,100,94,102,101,114,102,109,110,108,102,100,103,109,103,106,110,105,106,111,110,105,112,107,87,102,110,89,110,110,113,94,95,97,100,116,88,96,109,105,103,95,119,94,102,102,110,105,91,99,99,100,111,100,86,98,112,120,95,97,106,114,98,105,97,106,98,106,99,112,102,104,98,107,114,116,103,108,116,107,102,102,107,97,100,113,99,105,109,103,101,103,109,108,102,104,90,109,119,105,103,104,104,108,99,110,104,99,112,96,106,106,95,102,104,120,110,102,99,104,95,110,105,102,80,102,98,107,105,100,116,117,102,109,100,116,98,90,108,106,118,96,99,96,94,116,95,99,99,113,108,101,98,103,113,102,98,106,98,84,108,102,102,96,108,104,107,99,109,102,117,104,98,95,98,100,94,102,106,101,107,107,111,112,108,103,103,111,107,98,107,107,123,96,113,117,111,113,104,100,109,98,101,102,105,102,100,100,99,83,101,113,105,112,88,95,105,103,92,101,85,114,104,108,109,104,100,99,99,108,96,118,109,103,100,112,99,107,101,107,109,99,92,99,107,105,104,99,104,130,107,114,117,97,87,104,99,119,101,100,115,84,98,99,105,103,95,106,95,117,101,107,107,105,94,90,95,88,105,111,111,109,104,109,103,116,80,97,103,109,76,96,114,101,112,107,107,100,86,117,96,93,97,96,94,100,97,108,104,112,107,108,104,111,99, +475.85541,105,111,92,80,101,78,105,106,90,98,104,106,93,102,115,99,111,125,97,110,111,109,96,102,90,113,96,91,109,112,121,107,101,102,107,103,134,98,103,99,105,101,100,103,102,103,100,102,97,102,99,106,105,101,105,87,90,108,109,84,107,120,95,104,116,108,111,109,112,110,103,83,103,104,94,96,96,95,109,100,98,109,110,102,103,97,102,102,105,98,103,112,101,90,102,96,105,105,104,97,102,108,104,120,94,105,97,102,123,101,102,106,109,104,103,114,87,103,98,99,102,95,114,105,113,106,104,110,110,114,104,96,101,90,101,110,100,115,95,106,89,99,96,104,99,102,108,90,94,86,114,109,117,98,105,100,111,103,102,98,94,115,103,99,119,99,101,98,102,99,99,96,95,107,99,100,114,103,100,110,123,109,112,99,95,94,97,99,105,98,92,100,103,112,99,105,121,117,97,114,107,112,106,113,92,122,102,113,103,101,104,110,95,110,92,100,109,76,97,98,103,99,112,91,114,111,100,107,116,117,101,92,102,109,115,108,102,95,86,98,94,105,108,123,104,117,103,102,94,97,96,101,95,93,114,110,92,99,97,100,108,103,109,107,100,105,103,113,116,104,103,104,96,93,103,97,110,113,106,95,107,103,97,114,94,110,96,115,101,128,93,95,118,130,108,108,106,105,134,111,106,100,95,103,101,109,110,110,105,113,88,118,107,113,87,112,95,102,104,107,102,101,94,104,104,102,95,101,115,112,104,96,107,104,104,95,113,97,98,101,105,105,105,100,97,102,104,112,102,108,103,87,102,106,110,98,102,97,106,97,101,109,97,93,106,106,91,99,101,111,109,100,129,110,107,111,113,100,107,99,105,100,107,100,101,108,91,108,102,105,112,94,100,101,104,106,94,97,88,112,94,106,103,98,101,101,99,96,114,98,79,73,103,102,104,106,103,101,107,107,95,113,100,117,100,106,109,110,103,100,106,135,103,105,95,105,106,103,108,101,103,94,106,125,101,93,110,100,95,109,100,96,108,113,95,108,110,103,112,101,96,101,108,104,107,117,102,105,99,115,109,105,117,98,103,98,94,111,103,107,95,109,117,104,103,96,104,117,110,107,109,112,109,95,112,105,101,114,103,88,98,110,99,81,106,108,112,100,104,100,111,110,91,106,103,100,69,93,92,92,106,108,104,101,97,107,108,99,94,112,102,104,88,117,112,109,108,104,98,113,107,102,93,105,104,118,100,95,100,106,109,101,105,99,103,104,100,108,98,108,110,108,107,113,106,85,108,102,101,99,90,93,99,98,97,104,108,104,108,100,114,93,101,92,100,105,102,110,103,106,107,110,106,98,103,130,98,100,108,89,100,99,96,92,112,100,91,100,101,96,100,113,124,104,105,102,98,108,98,91,104,100,108,85,100,101,108,98,101,109,94,110,113,106,102,135,101,97,105,94,101,94,107,101,94,103,96,103,108,106,94,105,98,114,106,101,104,121,108,95,107,104,100,108,96,99,111,90,106,95,102,101,120,91,101,102,113,112,108,113,115,105,123,96,109,107,98,107,113,112,103,101,103,100,106,103,104,111,101,98,92,95,104,95,99,105,88,117,112,104,104,102,112,118,101,98,100,103,102,113,109,106,116,99,98,100,110,96,117,116,117,104,92,97,111,110,110,108,107,110,104,117,97,115,99,95,100,100,98,98,111,99,103,108,103,106,106,101,101,99,100,111,102,96,84,105,99,112,91,105,103,97,112,98,95,99,93,109,103,105,105,105,110,107,108,114,117,113,109,98,102,107,114,109,104,112,100,113,105,97,101,104,103,109,101,101,103,105,99,110,113,102,97,106,112,107,119,101,103,94,112,96,101,100,99,108,89,110,118,102,114,80,116,102,98,113,95,102,119,117,90,108,102,106,97,105,115,106,108,93,98,111,104,113,104,99,105,117,102,104,108,93,102,74,114,97,105,104,99,86,98,114,108,110,105,122,106,101,109,96,99,105,107,107,111,103,101,88,101,100,93,74,105,103,106,117,109,105,101,107,91,113,120,106,98,105,85,108,111,101,100,104,103,105,109,103,113,105,102,106,102,86,105,104,111,116,104,105,114,103,112,105,103,103,79,99,95,100,104,110,106,100,111,104,105,97,109,106,109,104,102,101,95,115,104,106,105,103,106,100,107,106,101,106,105,108,97,108,98,100,102,108,111,114,101,88,108,108,89,102,105,104,99,100,106,103,104,101,118,112,97,116,106,109,94,95,99,101,97,103,91,102,90,97,108,114,127,90,108,104,91,113,109,107,105,113,99,91,94,97,104,104,105,100,105,86,92,98,94,114,98,108,107,116,100,96,125,99,105,116,101,101,106,95,101,113,105,104,103,97,103,99,103,96,116,112,111,123,104,104,99,106,110,95,112,110,96,101,104,102,100,96,102,103,119,99,97,103,99,98,108,101,104,109,110,98,101,108,107,86,105,99,96,99,93,109,93,95,107,99,107,89,111,103,112,97,112,109,102,95,106,112,110,108,99,95,100,104,106,104,109,100,99,104,116,109,112,93,99,108,100,116,109,94,111,105,106,109,99,105,111,118,107,102,111,99,108,98,93,105,122,96,106,110,90,106,106,97,113,103,112,100,105,105,104,117,111,101,108,121,98,100,108,98,94,94,113,102,89,105,107,105,101,113,109,104,104,103,107,109,113,103,106,107,97,104,107,91,96,97,83,98,100,106,124,95,102,103,100,71,97,112,97,103,102,107,113,103,108,104,108,112,97,109,100,111,87,124,100,110,109,106,112,102,98,104,105,113,106,112,109,102,110,106,95,99,106,105,99,103,92,100,117,107,105,105,105,107,103,109,98,98,110,111,106,97,102,99,102,104,109,106,97,106,114,89,103,101,102,109,105,100,111,119,92,101,102,92,106,99,101,111,117,113,100,95,109,98,109,111,113,101,101,93,97,111,114,104,103,114,102,106,117,98,117,101,116,104,102,104,105,105,100,96,98,108,102,98,107,107,109,102,91,105,104,103,102,102,106,100,111,103,103,88,105,108,112,105,107,111,111,94,102,99,94,98,107,104,102,93,93,102,106,102,108,104,104,101,114,100,112,100,102,111,98,95,97,110,113,99,74,105,83,102,104,82,117,94,109,102,116,98,104,105,105,99,96,98,110,104,90,107,91,110,105,110,109,98,77,102,108,87,102,112,94,99,104,107,100,115,104,99,91,98,99,98,93,111,112,103,89,103,109,106,105,94,101,105,97,106,110,106,111,105,100,99,94,102,99,112,108,102,101,101,108,97,114,110,106,98,105,105,115,95,105,99,107,100,101,92,101,103,95,92,104,102,105,108,95,106,106,102,104,107,102,109,103,117,98,97,109,110,105,107,116,98,104,83,109,102,97,116,102,101,115,89,105,94,107,98,102,122,94,114,95,90,100,91,104,98,104,107,99,99,105,100,105,107,105,102,97,106,101,93,108,96,101,98,102,93,116,95,98,94,97,113,110,99,92,76,109,102,105,101,101,105,108,109,104,109,105,95,97,98,113,103,103,90,109,110,101,100,97,97,108,99,104,102,92,110,103,105,99,100,105,110,86,116,102,107,99,93,104,107,104,92,109,97,102,102,97,108,100,105,106,108,103,87,113,124,109,99,102,109,94,104,103,110,107,94,109,103,109,106,116,105,105,98,106,105,104,108,105,107,114,102,110,95,101,106,89,103,100,96,98,106,106,109,102,100,107,104,91,91,107,102,108,101,113,101,102,95,104,97,117,106,115,102,106,97,96,108,102,99,108,110,106,104,100,105,113,98,108,100,105,108,103,103,95,108,110,126,102,107,105,103,109,95,107,91,104,112,96,102,98,98,96,105,99,98,96,92,101,121,88,103,106,93,108,94,92,98,98,96,104,98,103,104,113,90,94,95,101,109,107,113,93,104,104,108,103,107,103,100,112,106,108,101,102,97,110,104,112,106,113,99,105,92,107,109,101,111,99,102,113,92,107,108,113,103,111,110,95,119,103,113,106,105,114,100,105,113,108,110,112,107,100,103,117,95,102,97,103,107,101,111,125,103,105,103,105,102,99,103,124,108,100,110,102,112,101,90,96,109,98,96,102,113,109,104,105,98,96,103,104,103,100,109,104,108,106,117,103,96,100,94,139,119,103,96,103,90,109,104,104,100,100,112,111,106,105,116,101,104,103,107,90,104,96,105,108,94,117,104,104,95,99,100,107,97,97,96,112,104,109,100,103,114,138,101,84,110,99,105,103,104,96,95,100,103,107,100,102,101,96,93,102,101,98,98,101,111,116,123,102,109,112,98,99,96,105,108,110,104,94,99,106,106,111,102,98,98,98,99,97,90,103,112,105,101,100,102,112,105,99,95,115,108,112,106,95,97,94,103,99,116,101,94,105,107,113,113,114,103,114,99,92,111,102,105,96,98,100,113,90,89,105,88,101,113,109,100,91,101,111,106,106,100,97,96,96,107,88,93,106,106,99,106,99,104,89,85,108,108,112,93,97,112,119,104,96,102,108,98,129,106,109,103,107,107,105,112,106,123,112,100,100,106,98,101,101,97,95,101,111,97,97,96,101,114,107,97,100,109,101,109,101,106,102,95,97,105,98,99,104,94,92,98,106,105,102,97,91,99,109,105,95,99,100,109,83,94,95,92,105,106,108,93,118,91,113,85,109,94,109,100,99,100,105,93,90,98,96,109,114,117,103,112,99,96,110,103,80,105,105,100,112,101,111,115,99,99,100,103,110,105,111,96,99,117,96,106,110,96,110,105,86,102,109,104,98,99,98,101,102,100,106,92,94,106,116,102,84,96,108,102,82,108,110,96,99,100,126,93,118,107,93,101,102,108,126,100,123,100,95,98,117,109,95,105, +475.99594,103,97,105,101,99,102,96,97,96,110,99,109,100,100,113,133,105,113,104,99,101,96,85,111,108,105,97,84,102,102,109,91,111,116,107,105,118,108,101,104,104,96,108,103,93,111,108,121,93,95,109,107,115,113,108,87,105,101,122,93,99,97,94,95,103,93,103,99,104,97,101,107,117,103,104,108,102,87,101,108,114,103,107,109,106,97,102,104,106,105,109,112,99,94,100,103,109,105,99,110,101,103,98,105,109,95,105,104,102,101,104,108,104,97,109,106,107,95,94,112,96,115,112,114,108,101,111,105,106,120,104,95,89,99,106,104,108,102,102,86,101,109,112,104,92,94,117,99,94,90,101,103,104,95,91,88,98,99,107,108,104,105,99,113,112,103,116,95,112,111,118,114,120,108,90,93,105,97,99,105,106,100,99,105,111,111,94,95,99,100,107,119,99,117,97,105,106,101,108,112,100,106,101,105,71,118,83,103,117,114,103,109,110,94,96,105,105,103,100,108,99,105,97,114,91,108,114,82,95,100,92,96,103,117,106,107,108,114,97,104,101,101,109,105,104,99,106,89,108,103,113,105,84,112,101,118,100,116,101,101,93,117,100,108,98,109,100,103,109,95,99,96,100,104,103,96,62,110,92,110,101,107,101,109,111,98,99,108,107,106,99,104,109,98,106,105,106,108,107,105,108,96,107,123,104,105,103,113,94,104,95,100,105,92,109,110,104,107,99,98,99,93,113,102,115,99,108,109,117,114,100,96,117,111,106,110,104,110,104,112,100,102,108,97,105,106,115,112,114,112,117,110,101,111,108,104,98,106,109,109,108,106,102,105,92,109,105,133,101,104,109,108,109,107,118,100,98,117,99,109,106,110,113,110,116,94,113,99,95,101,108,111,101,98,120,109,105,112,92,107,104,110,107,105,101,104,98,109,109,94,104,102,90,101,104,105,106,108,109,105,115,109,108,103,117,98,100,90,107,103,103,112,113,98,104,118,98,107,101,95,105,89,102,112,99,106,99,108,100,108,101,102,93,110,118,126,99,107,115,95,112,110,100,107,107,111,98,110,121,103,103,109,102,100,108,101,104,110,107,98,104,101,102,107,94,111,114,103,98,109,107,104,110,99,96,99,92,122,95,92,106,92,105,93,101,102,91,112,110,85,105,106,101,109,94,116,92,107,101,113,109,117,111,95,105,109,101,109,96,122,104,102,109,95,111,106,106,102,101,92,107,108,95,107,113,104,86,112,103,104,109,102,104,109,113,111,108,110,92,98,112,104,107,111,110,109,90,103,98,110,94,94,100,102,105,113,112,104,105,106,112,106,97,114,86,110,101,102,109,102,105,120,84,99,105,102,103,107,110,108,102,112,101,117,94,109,90,100,104,108,101,104,101,117,98,89,126,101,108,98,105,101,90,122,110,113,102,104,102,101,104,101,100,124,109,103,101,107,106,100,113,102,101,104,100,95,111,105,96,125,104,94,109,110,91,102,106,114,104,110,114,109,103,109,94,109,99,91,106,108,112,98,111,115,108,110,102,105,105,101,100,116,119,114,95,98,98,110,109,118,113,100,105,107,104,98,112,104,98,90,113,109,111,123,99,110,112,108,102,109,117,102,119,105,105,105,101,98,100,115,113,97,113,100,95,111,105,104,116,109,109,72,104,102,95,109,112,115,111,111,101,95,99,88,102,94,105,112,108,103,97,102,111,100,105,115,106,109,112,99,95,100,99,109,104,112,110,107,95,97,109,102,101,105,114,102,108,111,102,104,112,114,110,113,109,108,101,108,103,99,107,100,105,111,105,104,99,106,118,105,98,108,107,107,112,112,96,91,111,105,102,99,102,98,113,103,112,102,111,108,106,105,108,108,107,110,104,105,105,107,107,100,103,106,102,108,102,105,105,108,95,107,116,102,104,94,90,104,109,96,107,104,103,112,98,122,106,112,109,102,105,109,103,104,116,107,100,101,113,106,105,90,99,98,93,109,109,78,108,104,93,106,114,111,111,92,101,110,109,98,108,103,105,108,107,105,108,109,110,106,120,110,111,104,101,91,91,115,108,116,103,110,107,98,141,95,108,90,107,117,94,107,105,105,100,112,88,100,110,99,92,109,93,106,111,104,110,96,100,98,104,107,95,99,102,91,103,108,110,112,104,98,108,112,103,99,109,99,97,101,117,107,103,101,101,99,106,97,102,110,104,98,109,112,99,110,94,115,105,116,98,110,96,115,111,95,101,108,105,108,112,105,98,113,108,97,111,109,98,107,109,96,100,106,103,104,101,106,105,100,113,106,89,115,106,114,107,97,102,106,105,94,102,108,100,111,86,105,110,101,113,106,113,88,111,104,100,109,97,107,108,107,119,106,95,109,108,104,102,112,109,94,97,113,106,103,109,108,113,107,109,113,110,116,109,80,112,118,113,104,106,106,97,109,106,107,97,104,104,100,111,95,99,107,109,100,99,96,102,95,109,113,99,111,101,104,106,96,107,106,113,97,111,91,111,108,101,99,105,118,113,107,109,102,113,103,103,119,105,113,95,103,105,99,117,138,109,103,98,95,108,116,104,83,104,95,86,97,102,105,93,117,108,125,102,104,99,102,108,88,109,102,110,121,104,104,109,101,99,100,101,114,116,106,105,109,146,104,103,108,100,113,103,102,99,116,104,94,108,118,106,106,95,98,106,108,105,76,109,100,104,111,106,92,100,105,123,93,103,106,98,96,101,100,109,108,108,100,102,117,98,113,100,108,111,94,106,98,109,82,109,100,93,104,107,99,104,106,110,103,102,119,99,107,109,110,112,101,100,107,116,108,117,106,101,117,107,108,111,109,106,108,98,99,106,94,103,102,90,108,113,107,100,106,109,106,117,121,101,114,116,104,105,97,99,111,101,104,97,102,106,113,110,102,111,98,103,120,110,109,102,108,101,107,106,109,104,117,110,105,107,105,109,114,106,111,94,105,98,101,89,107,103,81,103,118,98,99,110,132,109,104,88,108,110,100,99,105,100,117,86,104,107,98,102,111,111,97,106,100,111,109,109,102,106,110,99,95,100,103,114,121,105,109,106,103,101,103,101,85,100,114,92,99,104,120,99,108,113,104,102,118,100,119,107,109,102,104,100,103,99,98,106,99,106,96,99,96,106,102,74,102,105,101,104,102,110,101,113,110,104,96,102,109,104,105,108,102,99,110,95,103,100,109,98,109,98,113,106,91,112,109,116,105,90,109,110,116,109,105,112,101,104,108,101,105,116,109,108,86,100,106,100,115,97,96,106,121,116,105,89,113,98,105,95,112,99,98,106,104,110,110,103,104,112,107,96,113,113,120,109,105,107,99,97,94,119,112,115,125,100,99,107,96,96,112,105,110,108,101,77,107,70,106,83,119,103,116,114,99,109,111,113,112,111,99,112,104,99,118,91,96,97,106,86,96,109,107,101,93,107,99,99,98,106,113,124,111,106,98,97,109,104,100,102,111,104,106,116,100,98,107,98,102,118,110,120,105,115,95,116,107,110,110,103,98,95,116,116,107,100,104,101,105,102,105,97,110,100,111,116,101,106,104,104,101,96,101,108,102,99,103,96,95,112,118,108,106,110,109,100,116,101,101,82,111,108,102,104,111,103,110,102,101,98,99,109,105,106,103,116,109,98,111,104,104,102,106,100,96,117,111,95,113,97,73,102,103,100,75,114,102,118,115,111,113,123,103,95,102,102,86,103,106,85,106,98,98,75,106,109,96,92,106,105,102,106,101,113,102,95,73,106,104,99,117,108,98,109,112,108,103,117,103,108,112,91,116,106,89,107,108,106,114,108,114,108,100,103,91,102,106,88,102,110,103,109,96,113,97,120,103,101,99,112,111,91,102,102,106,107,99,98,131,102,102,105,99,96,95,105,98,96,95,103,98,105,93,94,94,96,96,100,110,104,108,96,95,113,116,107,112,107,106,99,126,105,93,105,99,104,103,97,103,100,95,110,109,102,111,118,103,93,113,106,101,94,106,113,99,110,97,110,110,107,82,104,108,104,97,111,109,93,92,111,101,105,101,105,94,123,98,111,91,116,110,102,101,104,111,108,119,96,101,100,113,107,113,108,111,112,94,102,122,106,122,103,111,107,112,106,107,98,113,99,103,103,100,109,110,104,98,98,91,116,110,106,102,116,98,106,110,103,128,103,108,98,113,108,105,101,104,99,107,113,105,106,93,112,96,107,100,101,101,101,109,86,103,70,110,97,110,105,105,94,98,93,105,109,95,88,109,113,101,94,96,105,79,112,107,113,106,111,107,101,107,104,90,96,92,103,89,116,115,97,110,109,102,105,103,105,106,106,106,105,104,109,97,110,96,92,115,115,105,108,83,98,103,99,106,95,122,113,108,121,107,96,113,105,100,100,105,104,108,90,108,100,108,106,94,113,104,79,113,103,95,102,99,98,101,102,119,83,127,115,111,100,102,106,94,101,98,105,106,99,114,96,105,111,95,89,107,101,108,103,96,117,112,112,97,105,96,116,101,107,103,105,101,109,111,112,102,100,99,108,106,94,106,117,94,87,106,111,95,113,105,131,100,93,104,95,95,99,105,112,108,124,103,120,94,92,91,106,91,107,112,117,114,97,103,99,104,100,117,108,102,115,90,105,100,93,106,124,114,92,102,94,107,100,111,112,105,101,87,102,117,96,108,102,109,86,111,118,98,112,91,103,98,100,104,103,125,100,90,108,102,106,119,107,102,107,100,113,103,109,104,108,112,99,91,116,109,91,111,96,94,110,111,102,109,105,105,112,101,105,97,85,97,110,109,102,100,111,91,115,104,102,109,97,110,110,112,111,109,111,112,108,99,108,99,109,92,110,106,111,105,92,66,103,99,95,106,107,112,103,97,104,93,90,103, +476.13644,104,103,98,94,100,94,103,97,90,118,110,101,96,110,100,68,84,100,109,87,96,104,90,99,102,108,98,115,104,114,104,97,107,99,96,96,98,94,97,103,96,113,95,100,99,100,101,117,92,113,100,104,113,103,101,96,93,102,108,94,100,102,100,94,106,106,101,104,95,89,101,104,104,114,82,121,105,104,100,107,106,99,113,103,100,100,82,98,97,91,105,101,100,90,102,102,91,95,86,96,107,102,110,102,99,100,91,98,95,108,98,106,104,98,100,98,103,97,102,99,102,92,102,95,113,103,102,95,106,94,87,82,104,91,105,98,107,112,72,98,111,101,95,98,92,94,115,103,98,118,109,120,116,93,95,109,100,108,107,106,82,105,97,89,105,117,112,103,118,92,95,103,100,88,120,102,97,89,103,91,104,109,106,96,99,91,101,88,92,98,98,98,109,102,108,92,109,108,105,98,108,93,109,91,101,106,107,99,119,113,82,111,111,114,101,95,101,98,96,106,112,100,86,107,109,108,99,107,118,96,120,99,113,101,96,102,103,104,105,90,107,95,106,99,78,83,107,113,94,108,106,100,103,109,117,94,99,111,103,102,106,116,96,104,95,99,112,96,95,98,96,103,91,108,113,81,106,96,98,96,104,100,100,109,113,98,90,107,103,110,96,104,109,98,109,101,105,104,105,96,102,99,105,100,101,96,105,114,108,115,106,91,104,92,100,109,116,105,106,100,109,107,99,111,86,111,104,95,107,115,103,99,100,110,105,111,105,93,106,108,108,100,109,114,104,110,106,99,91,117,104,108,111,101,98,102,87,100,105,107,105,96,109,107,114,95,108,92,108,95,108,125,112,117,103,95,101,98,109,104,84,89,101,99,108,101,96,110,111,92,113,95,94,100,106,109,103,108,93,106,98,106,97,101,99,111,95,118,102,102,96,107,100,95,107,97,101,104,112,108,105,99,105,97,102,90,104,86,93,109,95,105,109,93,108,100,90,109,90,108,108,119,94,92,91,104,97,97,108,101,106,101,97,100,108,95,109,101,114,99,102,96,97,106,113,111,102,104,104,108,92,113,105,82,104,103,90,99,101,108,91,108,101,110,100,94,107,104,106,105,116,85,108,104,103,108,89,91,112,107,115,86,105,96,99,105,114,91,98,97,101,102,97,117,105,95,96,108,102,94,118,94,114,95,111,112,102,108,102,101,102,105,110,103,102,104,89,101,107,100,109,114,104,109,106,98,103,104,110,103,104,105,105,113,104,98,105,113,98,97,106,107,97,92,98,107,101,105,96,95,91,88,115,90,107,106,99,113,110,93,111,101,100,91,105,101,107,106,109,102,108,94,98,107,112,110,105,102,102,101,110,96,94,98,97,97,108,87,104,123,106,104,94,102,108,111,106,102,98,99,94,99,97,116,99,108,103,94,104,111,94,103,108,118,91,85,95,107,96,98,100,110,92,100,86,92,110,93,113,97,98,105,98,106,105,101,109,99,95,111,103,102,102,102,107,112,101,93,102,88,114,105,106,108,93,102,100,98,106,101,92,119,103,99,95,105,98,104,104,91,108,101,92,106,102,96,109,103,100,98,98,97,90,104,105,92,101,105,99,94,111,102,103,95,104,103,102,99,106,104,95,113,90,100,97,103,105,105,112,106,100,95,99,100,105,101,102,102,104,101,110,99,108,103,103,96,118,99,102,109,100,104,99,99,108,103,94,103,113,101,106,95,101,118,101,101,92,107,112,103,109,104,90,102,99,103,100,120,112,97,124,108,114,105,102,133,104,105,104,99,103,99,97,116,114,101,94,109,121,116,112,114,111,96,97,72,101,108,121,95,108,103,112,98,110,91,93,104,109,98,103,110,101,121,100,101,105,105,121,115,99,101,98,118,98,108,100,91,109,112,99,102,102,110,109,101,104,102,117,108,99,112,102,109,101,100,108,99,104,95,83,112,119,113,102,111,88,91,92,98,113,98,94,106,100,107,101,92,103,87,97,84,99,112,100,107,100,106,116,109,113,109,105,107,105,111,108,107,103,95,104,97,95,94,109,104,95,90,95,93,98,115,99,97,109,100,96,100,101,106,110,105,107,98,107,99,91,101,111,116,77,96,101,115,87,99,104,105,127,106,102,102,113,110,101,104,104,96,96,110,99,104,99,99,110,109,104,97,105,110,112,109,91,95,107,110,105,102,102,107,102,95,105,114,100,103,103,106,103,106,108,110,95,98,101,112,90,104,94,103,105,90,98,103,98,101,97,99,104,88,100,102,114,103,110,98,108,110,103,107,84,104,99,100,96,87,105,108,86,105,102,109,100,87,117,109,97,95,98,91,109,95,109,105,114,107,108,109,104,106,109,116,109,111,100,101,92,111,99,92,104,104,101,110,105,101,108,100,110,79,96,99,106,104,98,109,99,108,105,105,97,101,98,104,109,104,104,109,95,106,103,100,98,109,106,110,103,102,113,104,109,103,101,95,99,97,102,99,112,103,100,99,112,111,98,93,107,105,118,100,103,106,96,106,103,92,83,110,107,99,112,103,115,105,106,121,102,103,103,102,106,111,97,102,104,85,115,108,92,96,112,104,109,109,93,108,117,107,123,109,99,102,106,99,116,98,98,111,96,96,103,98,115,86,99,105,102,103,110,112,108,94,110,107,106,109,108,111,107,104,109,108,109,112,104,101,114,100,105,109,106,96,102,113,103,110,105,106,98,103,102,109,102,113,116,111,103,100,117,106,105,106,91,105,86,105,117,132,91,103,102,103,108,96,98,105,110,104,113,104,83,91,111,98,93,102,100,112,98,102,93,102,111,94,108,108,111,92,99,116,117,105,109,97,108,88,101,108,100,116,121,102,102,104,103,111,106,107,98,102,108,103,99,102,107,96,96,97,103,115,96,106,105,105,108,93,94,106,91,103,100,113,101,98,105,111,86,105,96,106,109,103,96,111,99,97,114,109,104,99,95,98,106,106,109,101,95,110,105,106,116,107,98,102,110,95,113,102,109,108,104,111,108,115,106,99,102,110,102,110,93,100,104,100,108,100,114,92,113,106,101,108,105,105,108,95,101,95,105,99,104,102,115,99,110,113,107,111,104,87,99,106,106,108,125,103,92,106,106,105,107,111,117,130,95,107,104,94,100,99,88,95,103,97,112,111,102,101,102,99,109,100,103,100,115,105,100,118,99,106,98,107,103,103,98,112,98,105,117,105,121,107,99,101,103,101,114,117,114,96,96,97,117,110,108,105,107,113,96,100,106,94,109,101,98,99,98,111,104,111,95,105,105,99,102,106,107,95,103,113,100,107,102,118,107,104,101,103,107,98,107,111,107,104,115,93,89,107,112,91,94,102,110,108,95,111,111,112,110,112,108,123,108,102,111,110,111,102,104,83,103,110,107,103,100,99,100,113,92,95,102,108,98,107,104,105,91,126,98,94,109,103,97,116,88,110,109,105,103,103,104,110,96,99,103,121,101,106,102,92,106,107,102,106,107,96,91,109,98,97,100,102,105,104,97,103,107,109,94,112,112,108,88,102,96,92,107,100,109,107,108,107,100,111,107,97,98,109,125,99,104,105,94,101,89,115,100,95,113,96,93,107,111,104,103,95,101,103,95,109,103,118,105,99,98,88,107,107,104,99,100,97,129,124,93,95,104,94,98,113,104,108,104,98,102,109,92,101,111,112,103,103,100,109,112,98,106,104,108,99,108,96,110,102,99,111,114,107,94,99,104,91,95,107,105,125,103,108,94,111,99,103,107,100,105,106,109,94,107,104,105,99,110,103,94,106,94,106,101,115,113,106,111,105,96,103,105,99,97,103,106,100,105,109,104,107,109,95,97,91,102,107,109,105,98,102,106,108,100,106,102,112,104,102,101,96,94,104,103,110,120,102,97,112,98,121,108,99,94,98,109,111,111,105,117,105,104,106,87,106,104,113,96,113,114,107,95,103,102,110,118,98,114,113,102,105,104,108,104,109,105,110,92,109,104,102,109,96,101,111,110,107,97,121,103,105,114,112,106,113,109,105,107,92,107,97,98,93,102,107,87,101,97,104,108,116,93,108,108,115,93,122,100,107,123,103,95,103,98,110,111,116,114,112,109,108,117,101,105,106,104,99,105,96,102,107,109,108,98,107,98,94,116,97,102,117,96,102,97,105,105,106,104,106,110,106,98,103,97,106,104,100,111,102,112,104,102,95,117,101,110,116,113,102,98,112,104,109,109,107,100,95,114,110,103,105,101,106,113,99,107,105,116,112,109,95,106,108,91,115,109,109,99,108,95,107,106,103,106,101,105,98,114,102,110,104,103,102,111,98,94,92,106,117,105,104,114,103,108,90,109,113,114,104,104,110,104,92,113,100,117,94,106,100,108,92,112,103,103,76,100,92,102,94,97,103,105,116,111,97,109,73,102,97,100,101,97,82,98,104,106,97,101,101,110,103,100,98,101,132,100,102,104,104,108,109,109,99,99,109,105,92,104,111,103,102,107,98,101,106,95,99,102,114,106,95,112,110,102,110,93,98,99,94,110,103,101,104,116,109,101,123,107,94,99,98,113,95,99,100,103,96,85,115,98,100,99,102,107,107,93,107,113,115,104,112,108,114,103,100,91,96,113,103,109,110,121,105,90,101,90,92,99,96,97,112,104,104,101,98,102,105,95,94,100,103,102,96,92,120,109,102,123,105,104,113,116,105,108,104,94,98,98,109,106,102,112,99,105,113,119,101,108,101,104,99,100,108,117,120,101,100,105,111,108,88,109,98,104,98,101,109,106,105,96,108,97,113,108,99,106,103,116,112,106,105,113,98,102,125,99,114,112,112,102,114,101,92,95,95,105,94,104,96,123,108,91,103,124,98,108,99,121,101,111,91,81,105,103,99, +476.27695,101,109,98,106,105,108,118,104,106,87,102,90,113,96,115,110,88,103,104,104,105,101,94,90,106,95,96,101,112,110,101,109,97,101,103,101,101,98,109,109,112,106,87,103,87,104,101,103,98,107,97,107,94,95,98,90,92,115,103,95,96,108,114,95,99,103,99,92,104,96,97,106,94,101,96,108,102,91,114,103,133,94,108,107,94,89,109,90,106,123,97,106,101,100,107,110,97,100,102,112,101,102,102,106,94,103,107,91,99,103,102,99,106,122,104,108,102,110,104,100,95,97,103,102,103,108,115,101,109,106,111,84,96,116,109,99,92,112,100,111,99,107,101,100,102,90,115,98,94,82,120,98,104,95,99,95,100,106,99,103,108,113,107,100,110,115,98,94,95,113,104,99,106,97,85,100,91,85,110,116,102,104,96,115,98,99,101,109,102,88,111,103,114,102,111,113,100,112,100,113,102,111,121,105,100,100,103,114,107,98,106,109,106,104,102,94,99,112,108,111,116,102,100,93,101,107,100,105,102,110,85,101,100,102,108,108,105,114,103,105,113,104,102,109,99,105,100,97,85,99,98,109,103,108,97,102,106,112,123,114,102,103,95,102,92,108,98,96,95,101,99,106,102,94,113,91,102,101,106,106,101,100,118,105,109,107,92,84,103,102,105,103,114,97,117,118,98,104,101,105,100,108,102,103,105,103,112,103,101,101,93,108,106,99,106,102,93,102,102,109,103,103,90,103,113,93,99,89,117,99,109,98,95,114,111,98,102,108,111,98,95,107,111,112,108,105,100,98,109,117,110,110,92,117,103,96,111,105,104,106,106,105,103,107,100,87,96,100,95,107,106,106,105,105,106,95,117,101,95,103,113,111,102,101,107,100,99,99,105,94,102,92,104,95,112,95,104,105,96,124,110,112,105,106,105,111,105,106,108,101,95,104,106,112,103,96,110,106,110,102,113,109,96,103,110,95,100,108,105,102,101,103,107,108,115,98,102,114,95,117,109,98,108,105,107,108,96,101,108,99,103,102,90,103,113,109,99,112,95,109,102,100,103,108,100,113,105,96,102,100,102,102,104,104,102,77,93,107,97,101,101,106,108,69,105,109,112,105,103,101,113,97,99,90,106,114,93,107,104,102,101,102,109,109,108,108,98,108,112,102,107,122,101,103,98,104,108,101,113,90,119,96,114,113,97,108,119,102,93,112,96,96,99,100,83,108,111,107,97,101,123,113,112,94,110,98,112,98,103,109,107,104,109,101,106,98,99,106,105,113,124,115,94,100,108,103,112,106,98,104,83,105,96,103,106,105,109,103,108,94,105,102,100,111,108,99,107,108,121,103,113,104,104,109,113,104,117,105,100,95,103,111,99,105,110,102,100,105,94,103,99,99,110,110,111,93,96,91,107,95,106,105,116,108,108,101,99,111,93,109,107,90,105,103,106,109,97,96,100,98,103,110,114,94,105,80,93,98,106,103,113,94,103,106,113,105,105,136,98,104,107,99,105,107,108,111,101,102,96,95,101,109,110,95,101,109,116,111,89,99,96,105,109,94,104,95,109,104,109,95,98,96,102,95,104,114,102,105,100,94,93,87,116,95,94,110,107,116,103,122,105,103,107,105,99,104,98,117,96,108,99,95,108,106,114,96,104,94,103,109,109,99,118,94,104,110,105,103,99,104,109,100,110,114,112,102,105,101,106,97,113,110,97,102,103,102,98,107,114,109,102,98,100,110,94,112,104,106,103,107,111,107,115,112,99,78,127,105,99,100,97,110,122,102,84,104,104,104,103,111,103,108,123,114,103,100,104,91,101,112,97,98,104,107,101,99,102,89,100,97,110,95,104,105,111,113,117,99,138,108,111,114,94,90,98,97,107,93,113,100,115,113,112,110,110,92,106,92,105,99,94,96,124,108,96,96,99,111,99,99,102,95,99,95,114,117,103,109,102,107,94,105,104,101,110,103,96,106,108,105,104,109,108,113,107,100,97,101,97,93,126,95,104,96,101,104,105,102,104,98,114,105,102,115,96,99,91,100,107,104,102,111,108,102,105,103,91,107,124,85,96,98,109,108,90,114,96,99,108,103,117,100,107,118,97,94,102,107,115,108,93,101,105,105,110,104,99,108,109,118,127,114,84,98,95,108,104,110,95,94,105,101,107,100,109,104,108,93,90,104,94,107,99,93,96,106,111,102,95,98,99,107,103,106,104,112,105,105,93,95,97,96,98,97,96,101,105,107,108,99,107,112,99,103,108,92,95,101,99,122,101,105,92,102,111,98,100,101,95,105,91,106,103,108,100,105,86,99,101,113,101,108,110,90,91,93,117,109,101,103,109,99,104,98,108,102,92,119,109,116,91,114,92,113,95,98,101,101,96,113,104,118,103,112,96,126,103,98,103,97,99,114,100,104,98,103,108,104,96,94,101,107,96,100,111,111,98,94,97,79,119,83,105,113,106,104,92,94,107,100,106,94,108,98,107,109,110,97,106,94,119,96,122,107,97,103,106,110,106,100,100,106,95,115,97,108,105,106,103,99,108,97,103,102,108,126,109,112,115,102,102,97,102,105,96,114,110,90,97,107,106,96,102,133,98,97,103,109,102,89,94,115,119,108,106,113,111,90,101,102,110,98,109,94,100,102,99,103,113,102,88,104,105,124,95,101,126,99,104,105,104,103,102,105,112,112,108,98,97,108,102,105,95,109,99,116,92,108,110,98,105,117,94,100,100,103,103,102,107,93,108,97,105,106,98,96,106,110,104,100,109,112,95,97,105,100,101,97,96,107,102,109,104,109,102,102,118,105,101,102,99,101,99,105,105,122,101,108,105,99,106,114,115,136,107,106,112,99,92,98,105,114,111,106,124,101,113,111,109,115,102,111,95,94,103,96,108,121,104,112,119,114,108,103,96,106,103,113,100,104,101,107,107,105,93,99,108,105,100,105,110,103,112,117,101,109,117,106,106,94,105,109,96,96,96,102,108,109,102,96,108,106,105,98,109,105,135,103,92,102,84,107,113,111,114,109,118,102,119,102,105,101,98,102,116,106,84,102,101,112,92,110,95,94,104,106,110,110,100,83,104,114,104,107,109,100,106,108,102,113,95,117,105,96,98,105,101,105,120,105,104,93,105,108,102,91,109,108,97,100,107,93,99,91,103,111,106,90,106,102,113,104,98,107,105,109,94,104,99,105,107,103,85,99,99,95,94,96,102,98,98,101,90,94,87,109,106,105,109,106,107,99,98,111,107,104,104,99,114,102,109,104,98,91,105,101,98,85,108,104,119,91,123,103,113,106,110,108,110,96,94,104,99,112,109,119,109,103,99,107,96,100,96,98,101,91,119,117,110,94,96,110,116,104,102,119,102,127,111,103,96,91,109,103,82,121,111,105,115,107,95,101,100,116,94,104,102,109,105,99,95,98,108,98,99,107,105,87,104,111,98,103,102,90,107,103,102,101,93,100,105,106,105,105,109,107,99,102,109,101,106,123,102,74,99,95,99,112,104,99,102,91,112,112,98,94,109,108,111,100,105,104,101,119,112,110,96,95,93,103,117,107,103,104,110,103,104,96,107,112,92,107,100,104,107,102,106,99,99,115,104,89,100,126,101,98,114,113,112,93,100,95,108,112,103,114,106,104,98,92,91,113,106,104,109,110,101,99,98,99,87,110,105,101,111,121,93,100,109,93,103,105,102,116,107,102,98,95,111,94,113,102,102,100,113,99,109,100,105,99,103,104,89,100,104,98,109,98,108,101,101,96,102,106,103,111,107,103,100,105,104,98,105,106,92,103,108,104,117,98,106,100,81,99,101,107,103,101,110,101,102,107,111,101,102,102,100,91,102,107,107,98,104,103,111,108,114,102,106,106,104,105,105,109,86,109,114,103,110,90,102,79,108,103,99,117,102,113,111,98,107,106,115,106,105,116,97,102,107,109,94,116,90,104,110,106,105,100,105,98,104,98,95,123,103,102,99,103,115,103,106,113,107,104,106,105,100,108,108,102,115,113,98,98,115,95,108,121,104,91,99,98,86,94,113,98,112,103,102,103,105,98,107,84,102,104,112,101,90,116,108,99,75,107,113,112,109,99,97,110,101,103,102,116,109,115,110,114,114,113,109,87,113,115,102,103,96,110,101,110,109,104,95,91,103,95,107,100,131,94,99,100,71,109,101,100,108,107,95,92,99,99,113,99,102,102,112,99,112,107,120,111,112,100,106,87,113,102,112,83,110,103,104,105,103,99,95,111,117,92,95,102,116,90,98,134,111,94,98,108,97,106,95,109,121,100,128,95,91,112,106,116,98,109,101,98,103,107,106,114,108,102,101,103,128,100,106,98,110,111,103,103,103,104,99,109,113,108,108,102,88,108,112,103,98,98,102,103,109,105,91,100,114,92,106,122,102,122,98,91,117,110,109,101,111,97,96,106,108,106,107,128,94,118,105,100,106,99,99,98,76,87,104,99,115,121,111,115,109,98,103,90,102,106,109,106,108,109,105,97,95,104,107,101,103,114,101,100,98,113,91,91,109,104,100,98,109,96,99,113,91,91,95,108,111,129,108,109,107,103,113,94,116,106,109,96,101,94,104,115,98,101,91,115,92,105,107,110,95,96,110,100,106,103,95,114,109,112,103,100,105,95,103,96,103,101,106,91,103,102,111,98,116,106,107,94,111,102,119,87,91,103,106,103,95,111,121,111,103,99,89,107,109,106,98,111,98,96,109,80,103,105,110,107,100,110,96,105,99,95,96,117,100,126,105,104,100,110,108,94,101,117,108,99,109,109,110,105,96,97,99,92,85,95,108,108,102,100,118,105,103,100,97,96,108,106,94,110,123,93,105,112,93,95,106,117,101,113,76,102,104,103,97,110,105,107,106,100,107,96, +476.41748,107,103,102,80,105,93,113,97,113,107,99,103,103,99,107,97,102,114,106,115,105,108,99,109,106,109,101,102,107,100,105,97,108,107,110,100,100,106,110,104,107,101,101,105,71,102,99,106,99,115,99,98,102,117,102,132,96,119,95,98,92,107,106,98,107,109,100,109,108,89,96,97,104,102,110,113,111,111,103,113,101,111,110,109,119,98,106,102,113,97,106,116,119,105,101,94,96,104,103,107,106,90,109,104,117,117,93,106,104,98,97,103,108,111,100,111,112,108,109,113,105,99,106,136,107,108,105,108,105,98,116,110,96,104,110,108,103,108,105,104,108,111,97,78,114,91,104,108,106,94,113,103,91,95,114,111,104,98,103,105,100,98,105,104,100,102,101,104,109,103,114,103,102,98,102,113,115,100,106,95,108,111,108,113,102,112,110,102,111,97,105,107,109,105,102,106,98,101,94,106,96,109,111,107,98,105,123,104,114,112,97,92,116,119,99,103,103,92,106,114,94,116,109,102,107,115,122,102,111,110,106,99,101,99,114,117,102,112,113,95,101,105,107,106,103,106,104,103,107,105,105,114,93,103,112,109,98,117,99,111,92,107,108,111,106,109,111,113,109,108,111,98,101,86,105,105,105,110,99,108,121,99,103,97,104,103,100,101,103,104,77,100,112,103,106,112,104,107,97,95,107,99,113,120,107,104,109,95,99,114,95,109,104,108,99,112,107,108,102,107,109,106,104,112,97,108,101,105,103,107,94,101,117,90,118,103,96,102,116,112,98,114,83,113,113,105,112,113,106,102,102,111,106,98,103,116,108,108,98,107,102,102,99,93,99,114,106,119,102,117,103,102,107,105,98,103,95,98,108,100,108,107,104,100,117,102,103,114,104,100,106,91,96,107,99,114,111,104,114,105,103,103,104,104,111,106,107,107,106,110,105,102,102,90,108,109,111,98,95,109,103,105,102,109,106,103,98,107,104,105,104,98,102,108,104,105,115,101,100,105,94,122,96,114,96,96,86,96,96,117,100,103,112,115,108,109,112,103,119,110,108,104,119,111,107,116,103,90,114,91,107,106,111,109,115,109,109,103,103,106,97,103,110,98,101,102,110,105,100,104,98,113,111,102,98,102,105,101,103,110,102,102,98,102,96,108,112,107,118,108,122,105,104,109,75,100,104,100,98,92,94,112,108,94,103,111,110,94,96,109,86,113,99,97,102,100,103,102,96,101,95,98,110,102,117,104,103,114,104,98,109,114,109,108,113,106,100,99,119,104,113,107,101,105,109,104,106,103,116,100,95,104,100,102,111,100,96,96,99,107,81,105,109,97,113,98,117,100,96,108,101,95,112,109,116,123,108,99,98,110,108,96,104,101,107,96,104,105,102,97,101,109,99,104,109,99,104,107,99,96,99,102,101,104,96,112,113,113,101,103,102,105,105,106,113,94,101,104,99,111,113,105,104,112,110,98,100,106,120,106,115,105,100,110,96,116,105,112,112,105,111,106,103,115,106,107,103,92,108,109,110,100,109,91,107,110,110,110,128,106,117,105,119,106,104,99,99,94,94,109,106,108,97,106,106,103,104,108,107,99,105,96,101,113,100,105,103,95,97,100,94,133,100,115,101,104,106,102,103,98,117,99,116,102,92,99,101,99,107,112,95,105,109,91,106,112,107,113,111,100,99,105,103,116,109,107,98,108,112,102,107,115,129,105,101,114,106,112,106,109,109,115,92,102,99,115,101,102,110,87,99,104,110,98,98,99,111,100,100,111,106,102,99,101,113,94,110,102,112,113,104,93,84,107,113,117,113,107,105,117,106,88,93,106,117,112,102,103,94,112,116,121,122,112,104,102,107,119,118,113,100,108,117,106,98,106,117,105,112,107,104,98,102,96,98,102,115,110,114,116,97,108,98,100,102,95,112,112,105,95,100,109,104,104,98,107,96,103,100,108,115,105,107,106,105,102,99,99,107,100,105,103,107,83,107,112,98,111,99,107,109,100,108,91,92,114,99,98,112,86,110,113,103,106,116,106,110,100,106,100,111,113,108,100,102,99,105,106,93,115,109,109,106,107,98,96,115,110,102,103,114,105,98,107,102,102,112,116,85,111,99,99,121,109,102,105,109,104,104,112,82,106,95,116,110,97,101,109,106,108,102,116,106,110,112,101,109,113,100,116,98,105,90,95,117,107,96,101,95,105,101,108,104,105,106,92,94,97,96,121,105,106,99,112,113,103,96,117,107,102,108,101,97,108,103,95,97,105,82,106,100,92,96,100,114,100,98,116,107,103,97,108,105,115,102,99,113,72,100,98,110,105,94,108,104,101,96,96,101,119,102,121,100,104,102,109,104,107,102,109,100,108,109,99,90,106,111,99,104,96,95,115,105,105,101,108,91,115,96,98,105,106,88,98,109,102,64,104,106,93,100,98,98,114,104,99,107,122,100,105,99,95,94,111,102,108,109,104,110,108,110,96,118,106,99,106,97,95,104,98,114,94,99,107,104,107,107,107,117,106,106,103,117,110,121,87,97,97,105,111,112,115,101,121,106,122,91,105,100,99,105,110,117,117,102,113,100,104,95,113,106,96,103,116,106,91,107,106,104,105,103,103,116,109,104,113,111,95,108,73,107,112,104,105,104,104,103,99,104,117,91,108,106,94,115,98,108,117,105,100,105,104,102,104,113,128,121,98,119,104,93,95,106,114,103,106,109,99,98,106,107,106,106,106,102,117,104,104,101,114,106,106,98,104,112,118,97,110,99,112,103,106,96,106,108,107,100,104,106,88,125,110,105,100,110,98,101,120,102,110,104,102,100,92,101,113,97,118,95,102,107,109,102,108,101,112,113,122,109,114,102,109,104,96,109,104,104,110,91,92,113,97,111,108,102,110,87,104,104,108,103,96,116,101,107,113,108,109,102,105,112,114,113,108,119,99,95,97,105,109,104,102,92,107,72,94,94,102,109,106,105,98,88,103,103,110,99,104,103,99,100,92,92,109,106,94,101,94,116,109,98,105,100,102,108,109,102,102,107,110,93,94,113,88,96,108,106,98,109,103,113,102,100,112,103,105,116,110,94,98,111,106,113,103,116,98,102,99,106,97,108,96,105,102,96,99,89,103,105,110,104,92,104,107,105,105,104,97,105,93,98,100,100,84,107,109,94,95,113,98,101,105,94,95,108,99,108,104,104,100,112,94,98,92,109,101,96,103,96,112,120,100,113,98,102,95,125,105,112,110,100,114,127,104,113,108,110,111,107,105,89,97,106,105,91,102,99,121,107,113,116,99,95,97,96,98,105,106,107,103,104,99,106,102,104,103,106,96,105,113,85,111,102,108,108,88,103,100,95,102,103,102,120,105,98,103,99,100,93,104,110,101,99,107,97,104,102,103,101,101,100,95,112,109,107,112,114,113,102,103,104,101,101,109,101,109,106,105,101,90,94,101,108,102,103,102,103,96,89,100,100,100,105,102,94,113,100,97,106,101,99,88,102,110,88,118,109,91,97,96,102,112,106,105,110,104,118,117,100,105,109,109,97,107,102,106,91,86,116,105,103,96,95,103,106,95,113,94,111,112,103,100,112,108,100,105,103,105,101,105,89,108,104,103,101,104,100,111,107,108,95,108,105,96,109,107,109,91,89,100,95,105,100,101,104,101,108,107,106,107,109,88,109,96,93,113,110,94,73,110,113,99,103,101,112,96,105,111,93,100,96,110,110,106,93,100,104,102,93,110,96,109,112,113,103,101,76,103,108,99,99,105,105,67,103,107,99,88,113,92,106,114,108,108,103,103,101,103,95,102,103,112,101,99,100,120,107,112,104,101,99,105,94,96,98,102,112,102,104,95,109,99,84,106,108,103,90,102,100,100,93,105,101,104,104,95,116,103,97,104,105,107,109,101,96,100,109,95,109,98,98,107,103,109,97,107,98,111,109,101,106,118,102,103,91,94,97,97,69,106,103,91,78,117,99,95,105,106,104,109,114,113,99,111,111,106,101,104,98,108,107,89,100,100,122,86,99,108,104,109,113,106,92,103,105,78,101,88,108,98,96,82,98,111,95,117,107,98,100,137,99,94,96,108,100,114,102,105,108,94,110,95,102,101,105,121,115,107,84,98,102,101,106,107,110,109,95,102,100,95,103,88,102,98,107,98,94,95,107,96,94,121,103,102,114,114,109,105,103,95,101,104,100,102,109,101,104,100,106,105,110,73,85,104,100,106,105,106,99,98,95,82,93,131,103,111,94,110,95,105,105,109,117,98,113,99,109,87,94,111,102,112,103,111,102,113,96,102,113,111,87,104,103,107,94,104,101,113,101,102,113,88,104,111,103,105,98,117,108,109,107,95,112,94,94,98,109,106,105,108,106,101,107,109,80,101,104,102,98,98,113,89,102,93,109,107,98,75,107,99,107,107,105,100,101,88,101,108,102,103,101,116,94,71,109,103,98,103,113,110,99,105,96,83,102,104,99,111,110,109,101,113,100,102,95,105,118,96,83,94,95,103,109,98,104,93,108,101,111,103,107,107,105,90,104,105,98,98,105,92,90,97,98,95,106,111,124,108,99,101,107,107,110,107,104,99,110,104,103,91,99,101,80,85,105,109,106,116,111,83,103,96,113,109,94,107,102,103,108,95,104,130,105,95,100,100,108,98,97,100,108,98,107,113,93,100,111,91,109,109,116,104,117,111,115,106,98,97,98,100,101,104,98,96,106,107,110,99,109,109,96,87,98,109,113,109,104,93,100,102,99,101,100,107,100,87,95,107,97,109,108,97,111,105,97,104,98,104,99,100,124,94,133,104,116,78,104,100,97,106,105,103,94,92,90,103,97,92,100,104,94,105,93,111,106,97,105,102,107,106,88,110,101,93,100,99,108,102,113,93, +476.55798,105,79,86,94,83,114,117,102,73,101,105,101,95,106,108,85,106,116,109,99,104,105,113,91,90,101,114,101,102,102,107,92,95,103,105,93,100,110,104,115,102,94,100,84,101,117,108,104,97,112,107,96,102,84,114,99,97,105,109,92,107,102,106,87,88,105,104,98,95,94,105,109,98,108,107,118,97,105,85,100,108,105,103,115,94,105,101,90,87,96,100,106,104,106,92,102,76,101,101,107,107,98,95,102,87,109,97,88,95,92,97,109,94,101,107,98,94,102,110,102,107,107,103,114,105,103,112,104,99,110,100,113,101,111,104,100,98,95,102,103,87,100,108,105,98,95,103,114,94,102,98,101,110,100,96,104,105,97,97,104,109,76,104,103,98,107,101,102,108,95,102,105,102,113,117,94,131,97,90,103,110,107,98,92,110,104,92,104,109,114,100,96,105,107,91,104,113,106,101,97,106,105,109,121,111,103,96,107,95,98,97,113,111,111,99,99,96,101,103,108,105,98,106,113,108,116,93,105,103,106,96,103,106,99,95,102,108,106,109,100,109,106,109,97,93,93,109,96,108,113,105,104,105,111,119,90,107,98,100,101,102,112,100,99,105,94,103,102,109,93,101,98,99,94,104,104,113,107,105,102,113,110,101,107,112,116,109,110,112,94,103,99,113,104,113,118,94,106,107,95,114,98,113,116,95,127,91,105,107,108,105,98,98,113,103,102,100,110,98,108,109,104,110,104,108,97,93,111,120,101,108,115,112,103,104,111,102,101,104,106,99,95,97,94,107,113,105,111,112,101,102,109,101,101,101,113,115,113,103,101,98,92,109,105,102,107,101,121,108,117,101,106,104,96,114,108,103,101,104,100,121,104,106,104,104,111,93,99,112,94,102,110,95,105,94,96,86,108,95,107,110,87,97,110,81,103,104,91,105,96,77,89,122,105,80,98,95,106,111,105,103,103,99,112,102,88,90,101,101,107,104,93,103,107,103,109,97,99,103,91,108,90,107,99,101,90,95,111,109,116,92,105,110,101,100,96,103,102,99,109,90,107,104,103,106,103,109,105,103,106,105,118,110,110,101,104,103,115,103,101,99,105,109,101,99,100,102,99,104,93,109,107,109,95,98,94,104,105,106,110,100,110,104,105,115,114,86,98,105,102,119,107,101,105,99,106,103,104,109,118,109,105,106,105,112,94,95,106,92,94,91,114,84,110,100,107,104,100,97,108,113,88,95,98,114,110,94,98,111,108,109,109,108,116,97,95,107,105,91,96,99,88,105,94,90,103,111,105,138,93,96,109,113,103,101,105,109,119,99,117,101,103,90,104,98,92,112,95,97,99,104,106,97,101,116,98,92,108,113,111,100,101,111,104,97,102,109,96,110,100,105,100,101,98,100,107,99,101,104,79,107,112,102,109,107,103,100,109,112,100,104,93,112,132,89,100,107,109,118,105,109,109,110,98,101,93,108,105,114,108,96,91,104,114,108,105,111,100,106,110,108,103,103,111,86,105,95,106,117,101,112,105,101,105,99,109,113,104,100,92,107,103,104,102,106,108,103,99,101,104,102,83,95,99,99,106,110,96,94,93,99,100,90,92,90,109,103,94,104,106,107,97,99,107,97,99,98,93,94,99,105,92,101,102,98,90,90,106,116,120,100,96,99,98,109,98,104,96,109,101,104,98,103,114,107,109,115,113,98,113,111,97,95,98,100,98,106,91,110,88,99,111,101,97,101,102,106,106,99,100,112,104,108,105,92,109,100,112,99,103,108,111,109,95,102,109,99,109,87,108,104,102,113,109,92,122,107,108,112,102,112,102,94,100,104,99,106,104,101,100,107,108,113,101,109,113,108,105,106,98,100,110,101,110,110,108,115,99,88,98,108,97,107,110,98,105,107,97,104,108,86,111,99,103,106,93,103,111,100,101,102,65,111,104,110,108,92,100,114,100,114,103,123,100,101,120,102,109,103,96,102,108,99,103,96,79,81,95,100,91,113,96,101,110,97,103,109,106,113,94,103,107,102,104,97,100,103,101,99,117,121,104,107,102,113,96,100,100,98,103,106,119,105,99,98,106,114,119,79,101,104,98,108,109,105,106,99,108,121,102,116,104,104,107,110,106,100,94,105,106,120,110,98,135,103,94,98,99,119,110,100,108,105,99,112,102,99,120,102,93,110,101,108,107,102,105,96,101,100,109,101,112,104,111,99,103,100,108,96,100,100,106,83,96,98,103,100,104,110,99,100,98,105,103,114,113,100,107,99,111,108,100,103,94,108,102,105,100,99,99,96,94,109,102,106,108,117,96,100,92,109,102,122,94,104,99,112,117,115,100,113,103,104,98,91,99,107,101,116,98,88,90,103,105,100,94,95,99,114,101,98,101,100,102,98,110,97,105,103,100,104,118,107,107,99,96,90,103,106,98,108,96,107,113,101,97,110,98,100,99,94,102,105,105,107,115,75,102,113,109,98,102,99,102,96,109,107,112,106,102,113,99,101,112,108,111,102,104,103,109,95,106,115,109,97,106,96,110,104,112,107,107,96,103,109,105,100,117,94,99,95,112,113,105,76,123,109,112,100,104,98,101,90,110,107,97,115,100,106,95,105,116,108,102,94,101,112,101,92,109,107,93,115,98,102,115,112,101,120,88,97,109,111,107,100,104,95,100,126,107,103,109,110,109,114,122,114,91,107,114,109,92,95,101,105,111,102,106,102,112,101,98,129,109,103,104,97,102,108,95,98,97,92,107,106,117,107,110,113,98,105,111,100,119,108,102,100,100,105,108,99,112,95,105,91,99,104,100,101,106,108,108,111,100,83,107,107,106,104,112,109,100,112,89,98,106,106,111,94,108,101,104,105,101,107,109,112,100,112,116,103,124,108,110,105,117,94,91,102,123,113,106,117,104,98,103,108,113,121,102,109,117,100,96,103,101,98,108,91,101,98,97,104,106,108,98,110,103,109,106,105,93,97,108,124,107,102,108,101,91,115,113,105,106,111,105,102,96,102,113,100,108,93,109,102,104,111,91,106,106,109,101,109,101,110,103,120,106,111,99,100,99,108,108,87,107,108,110,103,107,102,104,102,104,109,97,95,91,99,100,103,106,100,102,110,101,97,101,107,107,107,98,97,102,94,103,104,102,97,105,100,107,103,104,100,104,118,101,117,107,105,90,102,113,97,100,110,99,111,93,101,96,102,96,100,97,109,114,125,110,91,96,75,105,112,97,107,108,108,102,104,109,110,136,104,95,107,107,104,114,111,103,109,115,100,101,106,98,98,99,97,112,106,105,108,99,110,106,107,95,106,102,108,107,119,102,96,112,115,104,102,94,106,94,95,104,113,106,87,106,94,115,107,99,90,106,118,99,106,101,113,91,109,115,104,105,77,117,101,104,111,103,109,107,102,103,106,97,99,109,104,99,106,97,128,89,116,110,80,101,98,100,110,108,100,104,103,108,99,109,112,105,77,88,101,112,120,101,112,96,105,99,103,92,103,99,108,108,94,96,105,106,100,110,102,102,108,129,109,107,108,94,107,90,99,103,102,97,108,116,97,100,112,114,99,97,98,106,108,96,87,105,90,106,105,103,98,111,105,108,102,99,97,112,96,102,108,109,99,102,98,122,98,100,96,107,107,94,121,101,106,100,99,106,108,92,103,99,101,100,110,107,101,112,109,101,100,102,101,95,109,97,110,103,117,105,113,92,106,98,101,99,103,109,101,107,104,109,101,103,108,106,113,99,99,95,109,106,99,111,107,94,105,107,96,108,112,84,106,109,106,102,101,110,106,96,103,103,101,113,100,109,106,92,115,105,104,104,94,92,97,101,112,107,102,103,113,96,110,113,104,110,94,100,117,110,98,111,103,107,107,105,113,101,104,100,114,96,99,106,99,107,107,100,99,102,102,98,108,110,92,109,121,102,92,98,111,97,104,85,110,100,102,117,99,103,123,102,105,103,99,114,93,105,97,109,104,113,98,101,103,109,97,102,92,97,106,100,110,94,106,104,106,113,105,99,106,99,110,107,112,141,128,108,109,113,79,104,107,97,111,99,113,100,105,106,84,104,93,104,99,112,98,100,85,111,96,100,96,114,101,92,103,111,104,101,106,106,95,105,112,100,93,97,99,104,102,110,97,103,109,99,103,96,115,104,109,105,90,102,119,103,109,97,107,101,110,111,107,106,105,103,113,100,101,105,104,107,107,92,108,92,103,109,113,110,97,99,113,106,110,100,109,97,112,107,89,106,98,106,111,91,103,109,102,106,101,102,106,98,108,102,110,105,109,106,112,96,104,107,103,111,110,105,96,95,105,100,104,106,102,113,97,120,105,91,98,94,117,105,97,105,113,94,100,105,124,95,110,102,108,117,110,96,99,97,102,105,111,97,104,103,112,102,103,112,113,109,90,104,113,111,94,112,102,91,93,98,110,117,104,109,114,99,121,83,95,112,87,114,108,96,95,104,113,98,101,98,84,97,93,90,102,141,104,103,107,100,103,100,95,103,105,103,98,91,95,110,101,86,103,92,90,102,109,105,107,105,111,106,103,95,91,102,109,109,110,103,108,105,113,102,100,115,108,105,103,110,114,106,97,103,92,113,79,112,97,104,97,109,96,87,110,109,103,100,105,98,104,113,96,104,96,101,93,105,107,104,101,106,97,93,102,107,105,98,112,106,118,107,103,113,98,92,107,106,97,101,88,103,107,97,97,102,102,101,103,102,105,105,74,93,107,89,95,100,95,115,100,108,110,105,109,108,108,105,101,100,103,91,97,76,94,92,100,105,102,111,125,110,101,98,99,114,94,106,102,101,106,104,96,103,96,102,87,102,110,98,101,84,120,94,88,112,107,95,92,97,92,98,94,101,89,87,111,112,99,97,101,99, +476.69852,100,95,102,107,87,113,103,88,108,105,100,106,99,100,103,100,103,113,110,84,98,108,116,103,97,90,93,108,110,112,100,93,102,112,103,99,105,107,108,113,93,109,98,104,89,115,108,107,103,116,99,105,99,99,94,84,100,107,104,101,97,107,97,83,100,94,64,98,97,99,102,113,89,109,98,117,99,104,106,105,99,108,100,105,104,105,101,108,95,104,109,93,100,98,106,88,97,96,107,108,105,113,99,108,111,101,111,104,104,107,111,93,108,98,112,99,114,113,102,102,104,108,96,97,105,96,107,98,118,103,99,103,91,101,104,109,103,105,101,105,104,98,104,102,97,96,120,102,108,110,104,111,109,91,83,113,105,115,105,95,96,99,115,99,97,118,105,97,112,108,106,103,100,101,105,113,105,97,113,91,105,104,100,114,96,96,113,96,112,106,106,100,96,104,103,102,105,115,116,111,99,92,95,98,80,105,94,98,112,105,89,108,123,117,109,87,101,109,113,109,98,84,102,106,92,109,105,107,103,114,104,93,99,106,102,118,99,109,104,105,110,100,111,93,91,83,93,109,108,108,103,107,108,86,105,108,103,107,110,92,95,111,105,121,81,94,100,100,103,96,105,105,104,105,98,94,89,113,96,99,106,107,102,103,99,99,83,100,106,102,108,105,103,108,101,108,112,111,105,104,99,103,108,104,97,116,99,111,97,106,98,110,103,118,101,111,120,107,95,119,104,100,99,110,108,104,85,110,125,108,106,109,104,103,106,104,114,88,97,116,99,95,101,98,102,103,106,112,105,99,95,121,109,99,80,84,113,117,107,106,115,105,114,88,109,94,108,110,97,95,107,104,106,100,101,97,103,95,99,109,99,106,102,94,98,99,103,98,110,118,107,81,104,106,102,105,92,118,111,109,100,108,103,98,98,98,103,103,97,92,108,98,92,105,105,91,102,103,108,100,122,101,97,110,94,94,105,94,103,108,90,100,114,103,104,100,101,95,95,91,115,93,103,105,99,116,110,103,104,102,106,106,108,113,102,109,99,100,110,101,108,103,111,111,99,93,115,97,98,107,98,104,100,98,106,88,106,105,107,107,95,99,113,95,111,99,108,105,98,97,100,91,99,106,100,105,106,113,109,101,109,98,112,103,104,103,83,99,103,100,99,98,102,113,103,104,104,108,102,103,117,79,98,113,104,113,124,96,109,117,109,101,110,96,100,101,111,107,108,107,101,102,90,107,107,109,110,114,105,104,114,106,100,103,101,100,100,100,99,116,109,102,106,111,97,109,98,95,104,104,102,105,98,101,109,109,87,99,107,104,113,92,98,112,102,113,112,103,103,111,117,96,107,95,107,104,104,117,105,98,109,99,113,110,109,108,116,97,113,101,101,98,101,91,105,100,94,110,103,96,119,111,107,104,97,105,104,109,105,111,103,107,95,100,95,108,105,96,128,100,112,107,101,112,106,81,138,95,110,107,97,79,102,105,101,106,94,107,115,99,114,108,100,107,101,115,101,113,105,103,119,103,105,105,109,115,101,109,105,108,109,104,97,95,99,102,83,78,110,121,97,106,105,114,103,100,99,114,109,102,103,86,95,104,97,117,102,105,95,104,98,94,113,107,94,109,110,105,109,98,103,94,129,99,103,97,107,106,110,107,115,117,98,101,113,101,104,97,113,99,109,114,108,107,120,99,102,99,98,109,123,108,99,100,110,92,113,100,103,87,100,110,105,94,105,113,103,111,112,100,102,105,105,114,105,119,95,106,101,114,108,103,121,103,106,108,104,112,90,113,98,103,108,103,103,108,121,94,112,112,103,118,99,100,93,107,98,110,109,104,108,100,96,103,110,100,96,104,113,132,110,109,102,97,103,111,114,100,103,110,105,111,100,92,100,105,105,105,102,89,96,127,94,101,96,95,102,108,101,97,104,89,105,99,100,102,111,100,108,106,113,95,104,108,100,104,100,104,92,100,97,113,104,89,95,102,107,99,102,103,104,105,115,100,111,87,99,112,117,91,96,104,98,99,110,104,97,108,101,80,127,104,107,105,109,97,110,92,97,102,92,112,98,103,106,98,91,91,95,111,104,102,103,103,109,115,92,118,100,109,112,104,84,110,104,100,106,110,121,98,112,104,100,97,95,114,102,102,99,109,109,102,110,117,103,114,113,113,102,101,111,106,104,106,95,91,95,110,106,100,89,108,109,97,103,97,108,98,97,98,105,87,105,115,114,104,100,112,99,106,117,90,106,108,104,106,103,120,125,99,94,105,105,102,106,98,113,102,93,111,91,117,97,104,92,104,91,96,102,95,99,105,104,117,102,120,107,106,114,98,103,110,109,93,112,98,107,110,99,98,108,113,108,103,91,107,99,109,92,116,100,92,105,98,106,103,109,98,109,104,99,96,87,102,110,102,96,110,115,108,89,98,109,100,99,103,106,96,96,105,102,121,73,101,113,112,109,96,100,95,99,98,112,98,113,114,106,113,111,108,100,104,130,101,101,91,109,104,112,88,104,114,105,112,95,102,106,98,88,108,105,97,103,99,102,95,107,113,102,108,103,110,107,101,102,100,111,113,99,114,95,105,98,111,105,102,113,92,105,99,110,104,120,104,92,105,98,110,102,100,112,89,116,92,99,96,110,108,91,96,100,106,103,104,105,98,100,102,120,99,115,70,110,109,104,104,93,111,102,95,108,105,104,101,100,112,107,105,108,105,94,107,106,109,89,114,103,105,100,98,100,114,95,96,102,91,109,102,116,102,107,106,97,105,99,104,94,114,103,108,106,107,98,136,108,108,96,105,114,111,107,107,109,96,102,107,97,121,103,95,98,107,111,112,107,81,107,97,108,100,116,97,103,98,114,98,96,100,101,96,110,108,117,98,119,94,103,129,99,102,96,109,110,102,108,114,106,101,115,118,109,122,101,103,99,111,114,107,111,102,97,106,88,111,104,107,113,92,92,87,97,108,115,93,81,112,108,106,112,101,106,108,102,102,101,112,103,109,103,94,93,91,112,107,104,102,106,103,107,104,113,123,94,97,100,112,117,106,99,104,97,116,98,107,104,103,113,101,98,109,103,104,96,107,106,98,109,112,105,117,108,96,115,103,112,98,109,108,107,106,101,105,91,104,108,98,113,109,109,102,96,97,104,101,113,102,124,113,111,99,105,130,95,120,95,110,115,107,100,108,94,113,107,108,111,103,95,97,116,107,100,116,100,100,110,101,113,91,115,113,103,97,113,126,102,94,104,114,109,92,109,96,102,106,98,101,99,93,109,100,108,102,96,100,104,88,102,88,97,101,109,110,104,107,102,100,98,101,102,102,105,104,100,116,108,112,108,97,110,102,104,111,104,103,95,97,101,109,100,99,106,113,101,107,102,91,96,111,104,106,103,110,104,101,98,114,113,115,109,102,105,93,98,118,94,103,97,99,100,103,106,120,128,106,118,117,108,112,106,116,139,105,103,98,92,110,111,106,103,100,104,104,96,114,109,111,113,113,95,98,95,105,90,103,103,94,122,104,89,110,105,100,104,109,109,103,99,97,113,113,115,114,108,110,119,74,99,106,103,98,101,107,117,108,109,104,109,97,93,103,105,110,112,106,104,102,103,116,111,113,96,120,102,110,98,104,112,87,85,112,96,83,115,104,100,95,104,113,112,112,107,106,88,107,98,95,104,102,102,69,106,113,99,106,104,110,111,106,104,102,113,115,109,98,103,88,123,100,99,107,98,95,105,109,111,104,101,110,102,100,117,114,107,94,107,98,112,91,105,105,83,106,105,113,98,103,106,101,100,96,94,101,100,108,88,108,109,100,95,100,87,115,99,107,115,99,100,104,114,96,95,113,116,128,113,98,97,103,107,108,99,103,97,100,97,105,110,96,99,78,105,110,100,106,107,114,114,93,122,114,97,101,113,108,117,98,112,100,108,109,109,110,91,122,105,123,101,105,92,135,106,105,102,110,85,98,119,103,110,118,107,95,97,102,118,112,113,107,108,107,102,111,98,99,96,106,98,105,114,110,117,84,100,97,99,93,111,113,109,113,114,110,92,105,109,105,108,96,99,110,95,102,102,113,99,113,112,114,109,103,97,105,116,104,105,102,101,110,99,99,107,97,102,92,90,97,106,117,100,104,104,100,105,99,102,106,121,94,103,109,110,109,103,97,114,110,96,120,96,104,100,82,102,99,103,105,101,101,106,110,117,103,108,93,102,88,108,99,106,113,99,97,102,96,101,107,99,89,116,100,89,103,111,106,100,97,112,102,94,112,98,108,109,107,101,98,104,96,104,128,116,103,102,111,117,112,101,100,94,100,112,99,105,105,113,108,111,107,117,111,103,100,115,109,101,108,104,107,105,103,102,108,102,110,102,111,109,104,113,96,106,90,102,108,101,105,101,102,104,105,119,104,103,104,99,97,113,106,95,96,104,101,94,104,113,100,106,99,109,101,105,98,103,108,102,101,104,106,108,123,94,102,113,112,98,117,108,112,110,111,112,95,113,111,97,102,104,109,102,107,109,113,115,73,93,103,108,87,103,92,109,102,118,87,119,116,105,99,107,96,95,100,96,102,104,105,97,98,108,99,96,107,112,105,108,116,94,107,102,111,99,101,109,109,101,100,116,97,108,102,97,108,105,100,95,100,96,105,101,95,111,96,94,107,115,102,104,96,116,100,98,108,110,107,95,92,95,105,108,111,95,97,100,88,100,101,120,104,117,98,110,92,109,108,93,108,103,97,102,101,104,108,94,106,114,99,98,111,103,98,106,104,106,95,97,98,109,109,82,115,113,108,92,100,104,101,91,104,100,102,95,106,104,102,103,92,99,96,105,107,106,107,104,102,106,101,111,104,105,99,107,102,100,120,97,88,113,100,73,118, +476.83905,104,105,95,97,110,92,110,100,78,100,104,108,98,91,91,96,99,95,96,103,110,106,89,102,101,101,114,103,109,106,93,96,103,116,96,90,106,98,98,107,96,110,92,95,115,105,100,100,101,99,103,104,100,97,109,95,97,106,104,98,113,97,97,90,99,108,93,105,96,101,89,109,111,97,108,113,90,99,108,83,110,101,95,82,103,92,105,97,96,106,112,96,106,97,110,103,106,98,109,95,98,103,104,92,94,106,97,113,105,102,109,112,109,114,99,97,112,105,106,100,98,110,104,112,90,106,113,96,96,98,101,105,86,104,100,100,100,90,100,88,105,96,101,90,99,95,105,107,93,114,108,94,107,93,98,101,99,102,112,108,100,111,98,99,101,95,99,102,98,94,100,104,101,98,93,94,102,91,102,100,96,95,90,110,91,94,101,95,102,94,106,103,97,95,100,116,97,99,105,105,96,91,105,87,95,114,98,102,114,96,98,83,109,100,106,100,89,91,92,101,100,102,106,105,101,98,95,106,101,106,98,103,113,97,113,108,93,112,110,98,102,96,104,88,86,109,101,95,101,114,97,99,94,91,103,111,102,110,114,96,103,111,98,97,122,100,103,104,110,100,100,102,99,93,80,117,95,107,98,99,95,95,103,106,102,95,101,111,78,99,93,95,102,110,113,109,89,101,104,108,78,109,97,98,97,104,99,107,124,115,82,102,111,100,109,101,110,119,75,99,102,109,108,100,101,98,101,74,120,106,105,107,106,95,107,102,102,99,95,105,107,95,111,104,95,115,115,119,105,107,104,100,108,117,98,113,96,107,105,96,80,111,98,100,98,91,92,104,91,105,109,88,104,101,98,101,95,103,104,106,109,109,95,105,89,91,88,98,104,97,116,104,99,97,97,111,97,90,105,98,98,103,88,101,102,95,102,97,110,92,86,96,106,98,99,108,97,105,95,104,99,99,107,102,97,96,95,108,98,104,97,94,88,99,105,100,100,118,116,91,90,104,98,106,87,102,93,77,110,109,131,104,108,98,97,112,105,103,102,107,93,104,109,115,106,102,99,104,99,114,107,112,96,100,96,106,107,135,99,111,97,103,104,110,109,110,103,108,111,86,71,89,95,98,95,99,88,105,110,102,102,107,94,99,104,98,91,101,106,125,107,102,112,101,94,104,95,100,94,104,104,102,104,92,105,102,105,103,99,104,92,97,98,95,104,93,97,86,96,108,105,125,96,101,97,111,110,104,105,99,98,96,112,92,101,107,101,100,98,99,114,98,96,103,99,108,98,96,96,101,94,99,102,108,107,100,102,101,111,106,100,104,110,100,91,98,107,83,108,97,95,101,96,114,91,109,112,108,117,119,99,105,100,95,105,104,109,103,98,97,95,97,111,99,107,102,104,89,104,102,83,106,114,133,96,114,99,102,102,104,108,89,88,105,109,91,99,106,105,105,107,105,99,105,81,97,106,103,110,111,86,101,96,102,102,110,112,102,106,117,98,114,106,105,104,96,109,68,104,98,116,107,101,96,109,115,101,91,106,97,97,105,108,100,103,102,95,112,109,102,108,117,98,104,107,106,95,104,108,103,102,99,88,108,112,106,112,104,105,95,104,106,97,87,102,105,104,102,106,93,100,113,106,103,101,95,105,101,101,109,100,94,102,113,94,111,98,74,99,105,115,93,111,105,103,108,96,107,97,96,113,102,109,99,108,115,110,109,109,91,92,105,102,100,96,103,93,97,101,95,104,98,106,108,95,101,87,101,99,106,96,104,107,106,94,113,123,105,99,104,103,108,105,90,107,93,94,86,113,109,113,95,93,84,110,105,99,88,105,100,108,98,104,102,102,103,101,102,110,108,94,110,99,107,109,103,100,109,109,103,101,105,120,106,104,102,100,110,109,104,97,107,97,94,102,110,99,110,100,95,109,94,93,109,93,107,104,101,93,108,94,102,111,104,102,98,113,105,115,104,100,111,100,98,94,106,100,97,99,97,106,101,101,91,106,105,104,120,114,103,97,105,104,109,104,96,97,104,92,100,118,99,91,109,92,102,88,105,98,118,99,103,105,105,103,74,109,107,119,112,89,101,104,101,100,76,99,108,100,118,92,121,109,96,95,104,94,97,104,101,103,103,112,106,100,103,104,109,112,104,105,103,98,88,101,111,98,105,109,108,107,117,105,98,110,100,103,100,108,73,92,113,86,81,108,102,108,99,114,99,90,100,104,106,95,105,115,107,102,103,99,105,102,105,99,104,99,106,87,87,96,106,99,112,116,101,81,98,95,103,94,85,110,129,118,97,100,110,105,106,79,114,94,95,96,109,118,90,108,95,105,108,103,98,107,92,96,105,101,117,88,98,107,108,95,100,100,99,103,111,93,109,99,91,96,121,102,108,99,115,86,95,94,101,113,104,93,105,104,102,101,107,93,125,100,102,76,96,102,91,87,100,112,105,103,109,96,97,108,98,107,102,105,103,112,106,108,100,112,105,107,102,100,102,113,99,90,99,109,100,103,116,105,114,109,101,91,108,114,87,108,95,109,110,101,106,112,117,99,88,107,116,104,97,98,104,107,93,104,100,100,98,96,108,113,104,107,110,112,106,111,110,130,120,105,110,92,96,104,95,102,91,95,91,117,112,112,108,97,120,100,100,114,99,108,97,104,100,105,105,104,109,99,102,104,101,103,113,101,108,101,99,88,102,98,116,105,105,106,102,91,104,106,98,95,104,101,110,102,106,107,109,108,112,110,113,97,109,108,93,110,104,100,105,99,104,102,96,111,99,106,102,98,105,96,105,99,100,106,101,105,124,107,95,116,114,102,100,108,100,108,103,116,104,96,106,104,104,95,107,104,94,96,119,106,86,98,113,98,117,91,103,109,102,109,104,99,100,100,106,101,103,98,98,113,109,103,102,103,95,94,115,91,92,117,103,73,107,93,107,106,103,96,122,109,92,106,101,99,98,93,110,95,104,100,100,112,98,105,95,117,110,79,117,112,113,108,102,105,97,102,101,100,127,102,116,104,99,103,97,99,107,98,108,103,91,100,96,107,104,92,105,95,109,109,105,102,101,109,94,103,108,109,107,104,99,104,104,106,115,80,115,106,96,102,99,100,108,98,98,91,107,111,97,109,93,108,112,99,106,92,101,104,104,104,93,116,103,103,109,114,100,94,96,106,108,97,100,104,87,95,109,95,107,106,98,105,95,85,112,101,116,130,106,100,102,100,105,106,117,109,111,100,112,117,98,100,105,108,107,97,100,98,100,90,105,113,101,101,95,109,98,107,99,108,113,113,111,100,100,115,94,102,96,99,112,98,116,93,72,106,102,98,90,109,107,99,99,113,106,105,116,102,93,105,96,104,101,98,106,104,96,98,103,117,98,105,109,106,109,91,99,106,104,101,111,104,97,111,113,94,109,114,104,96,105,102,94,97,115,92,105,108,97,100,106,112,114,96,109,115,106,94,96,103,96,101,96,115,101,105,107,100,113,96,103,108,100,113,102,125,106,109,106,105,98,113,104,101,99,96,109,112,81,108,104,102,110,94,105,116,103,111,96,105,110,96,107,107,109,93,110,99,107,111,103,106,99,95,109,98,106,109,98,93,109,103,102,98,104,109,110,102,105,103,105,94,101,90,106,98,123,105,107,122,97,102,110,110,98,103,104,116,110,98,109,106,108,100,102,98,98,113,96,98,104,107,100,91,104,97,101,109,102,102,109,110,98,101,93,99,100,101,104,104,99,102,117,104,96,103,105,94,93,99,100,119,104,104,113,113,108,91,114,102,105,95,118,105,107,100,99,113,96,122,106,109,91,98,109,84,103,120,104,102,109,92,104,107,109,111,109,111,99,103,96,104,71,99,98,99,107,108,103,106,96,113,87,99,105,105,111,103,102,105,102,106,97,105,77,116,102,109,102,95,107,103,110,107,102,105,107,107,123,106,113,100,108,107,96,108,99,97,108,99,112,103,108,96,102,98,105,93,111,105,103,95,105,99,113,113,107,97,107,99,102,107,106,115,109,99,94,85,117,115,89,112,102,109,100,111,85,101,118,103,95,98,108,103,96,94,105,96,111,94,100,103,106,89,98,94,106,106,101,108,117,107,117,104,109,107,90,81,106,101,108,102,101,102,107,108,96,95,94,109,120,107,104,84,105,92,105,110,97,89,99,110,107,118,95,107,97,121,103,101,100,114,79,102,94,102,103,101,109,96,97,116,109,103,96,100,108,113,103,100,108,106,110,102,103,104,95,96,109,108,96,99,88,102,108,106,101,105,116,100,105,107,105,101,105,98,98,120,101,96,99,118,93,98,111,116,92,108,112,104,95,120,101,113,99,105,104,109,99,114,103,105,105,121,109,96,101,103,105,102,101,99,109,98,95,104,94,107,102,96,103,90,99,103,110,108,103,100,103,96,97,101,96,107,106,103,102,99,105,114,96,96,105,102,115,101,108,103,105,100,103,83,111,111,102,96,101,91,112,115,103,105,103,98,91,99,96,102,104,104,114,112,108,100,114,95,104,104,96,109,101,91,92,99,111,114,121,108,106,102,106,106,136,99,104,104,75,114,113,103,93,112,104,107,97,98,101,103,99,109,101,98,107,88,109,122,104,112,104,101,114,110,106,101,109,104,99,112,104,98,103,94,104,99,96,112,103,95,109,108,100,99,113,105,107,110,101,99,109,100,95,102,108,93,95,96,109,99,104,107,97,104,96,99,89,86,93,96,99,101,115,107,92,99,98,105,113,91,102,101,104,104,95,99,100,105,92,110,105,100,94,101,107,92,106,105,120,93,108,96,106,99,105,95,108,115,106,92,100,109,106,117,107,104,92,95,104,101,118,113,92,105,106,106,102,100,107,104,106,101,99,101,93,103,113, +476.97955,90,109,101,100,92,89,112,113,114,105,87,106,100,98,101,117,105,104,110,114,114,101,91,95,99,95,104,102,101,95,83,96,110,101,108,111,96,96,101,108,81,96,94,98,115,105,105,99,104,103,88,108,99,93,103,74,102,103,103,101,108,105,92,92,102,106,90,99,101,105,105,95,104,108,98,112,104,110,106,107,92,103,102,101,102,109,96,98,88,101,109,93,107,101,86,102,95,99,88,110,105,101,96,99,99,104,104,110,107,104,97,101,114,93,110,105,94,103,110,94,109,99,101,104,96,101,108,102,106,104,113,105,100,117,103,116,107,105,105,96,99,98,106,90,95,86,102,110,99,82,103,96,100,100,92,93,88,96,93,92,97,93,91,101,104,97,96,104,105,95,102,104,90,100,100,97,93,95,93,107,113,98,97,106,98,99,93,94,103,102,98,110,93,98,103,110,95,96,102,91,96,102,109,103,94,102,102,106,107,112,113,102,101,104,96,100,100,76,105,107,106,99,102,117,102,104,96,107,96,102,109,108,100,107,105,110,108,108,114,113,102,105,107,109,109,108,103,96,106,109,105,116,97,110,108,106,108,107,102,101,101,116,105,104,101,106,118,83,99,111,100,108,86,95,110,110,108,109,99,101,95,112,94,108,99,97,113,111,114,87,94,108,127,95,112,106,111,108,92,101,96,105,98,115,103,109,116,104,107,102,98,90,103,106,104,115,95,96,97,104,97,94,107,106,102,101,104,94,108,113,113,115,109,108,121,105,98,98,100,102,83,100,111,99,119,104,107,106,100,101,112,96,100,103,109,101,92,103,128,107,104,107,114,103,84,103,101,102,104,100,109,101,109,106,101,88,108,97,103,101,104,111,119,99,99,121,108,114,110,97,105,95,94,109,111,104,98,102,105,112,105,94,96,93,115,93,100,108,100,101,105,102,103,105,104,99,95,100,106,66,101,116,95,98,107,94,112,86,91,111,95,61,102,101,106,113,104,111,91,104,103,108,103,108,100,99,95,100,91,106,101,118,93,124,109,104,105,94,107,95,98,100,116,92,116,105,108,88,106,107,105,113,111,102,101,99,114,104,88,100,113,104,104,103,101,107,117,112,99,108,105,121,101,99,94,96,94,96,100,111,107,93,101,105,99,113,108,104,100,99,83,114,99,96,105,111,94,111,110,100,100,104,98,101,94,105,110,98,103,101,101,100,102,90,113,108,111,104,99,103,104,109,94,97,112,96,98,102,83,110,102,122,121,87,95,106,106,105,100,98,107,102,106,101,107,112,106,99,105,102,105,99,98,100,100,105,105,109,104,103,97,95,98,87,107,105,110,101,104,113,109,114,99,104,104,106,95,104,103,106,105,101,104,109,103,97,102,112,97,116,99,97,120,105,111,95,106,105,96,107,117,97,100,98,117,97,102,107,105,103,95,112,92,102,105,95,108,99,119,98,110,97,104,119,99,95,114,92,102,88,93,104,114,100,115,106,110,107,124,92,106,83,95,95,104,116,95,105,124,99,104,101,95,97,103,105,95,89,113,110,108,118,116,92,93,94,103,98,105,104,108,117,100,111,100,97,121,102,116,97,100,103,99,95,112,113,94,100,100,102,102,106,103,104,98,96,110,119,101,115,100,113,108,112,104,108,97,103,103,100,99,100,110,107,101,103,102,100,95,105,96,85,102,104,102,95,106,105,101,105,109,103,108,106,98,110,108,90,103,108,103,65,89,102,92,108,109,121,102,98,98,97,105,102,108,109,96,105,92,117,99,101,104,119,106,102,102,122,99,101,105,103,90,116,112,102,108,90,110,106,112,101,120,105,113,97,95,102,103,97,107,101,109,99,98,102,98,109,96,101,102,108,99,104,100,112,114,87,103,113,111,100,103,101,93,128,97,93,110,108,102,92,103,108,101,112,103,95,109,95,102,107,115,112,102,114,95,118,102,97,103,108,99,99,99,103,102,98,106,95,105,108,107,105,96,102,100,101,107,101,99,99,105,119,99,100,91,113,105,104,110,103,110,93,117,105,107,101,100,105,100,103,109,96,109,96,90,102,100,95,114,105,107,105,113,98,88,99,112,108,106,97,113,109,105,100,98,102,103,104,93,102,102,102,102,121,102,107,104,105,99,98,101,116,99,99,98,107,119,116,104,107,102,109,107,113,100,107,105,104,112,91,118,94,104,111,84,109,102,105,101,110,97,104,112,96,91,95,96,95,97,108,109,97,105,98,106,102,103,103,105,107,103,95,98,83,85,107,108,112,110,92,87,106,106,95,112,106,100,88,91,96,100,102,93,113,100,103,101,103,113,93,113,100,98,103,99,103,106,103,104,110,109,100,102,103,100,113,100,105,105,104,94,111,100,107,99,104,102,102,98,106,103,99,109,105,104,98,101,102,107,102,95,127,95,102,94,102,105,87,96,111,97,94,92,87,106,105,93,92,106,109,125,107,109,106,116,105,114,89,92,94,94,93,112,103,114,94,109,114,103,109,100,101,101,110,100,103,102,101,117,107,108,107,100,109,106,106,90,99,84,114,119,100,92,100,109,109,97,102,108,110,100,100,99,95,91,97,111,107,92,108,98,117,97,102,113,106,112,93,103,102,106,102,116,97,105,102,98,109,107,99,104,79,99,102,102,102,96,97,98,102,97,106,92,97,113,106,104,103,101,103,100,104,113,113,107,109,105,106,102,105,107,107,105,88,104,97,99,103,114,105,102,116,98,97,103,104,102,94,102,99,103,97,106,107,108,101,95,95,104,113,100,101,109,98,106,99,116,102,91,112,93,97,102,94,106,104,106,113,104,104,113,106,98,94,106,101,105,107,103,107,83,110,100,102,104,103,79,106,108,96,101,102,104,109,101,98,113,109,98,103,109,99,98,94,104,105,92,102,106,101,110,98,106,92,109,96,105,107,109,96,100,96,76,124,95,100,105,111,108,109,96,105,95,92,108,114,91,98,104,117,93,106,110,119,107,106,107,100,112,110,95,122,100,102,120,112,103,110,102,108,107,112,103,99,98,111,104,113,104,94,94,115,102,96,121,96,111,113,96,103,97,104,92,96,106,99,117,89,104,103,122,96,113,102,86,92,111,102,91,99,99,88,95,99,97,103,112,95,104,101,104,109,87,94,85,105,104,98,98,100,121,101,120,114,99,100,105,108,100,101,97,107,107,107,117,104,102,95,106,133,101,103,100,111,111,104,104,105,107,104,98,94,95,105,90,96,121,104,108,103,108,117,107,110,105,103,100,105,108,97,101,103,97,108,115,107,104,94,98,98,98,90,106,105,98,108,99,92,121,98,99,104,107,109,98,104,106,113,100,99,105,106,98,102,110,88,103,106,111,98,114,101,119,80,101,101,109,99,98,112,124,104,101,106,110,116,94,101,103,111,98,104,99,107,106,98,109,117,112,108,95,95,101,96,104,108,106,101,103,97,108,99,91,101,95,118,106,110,110,101,112,102,101,103,113,117,107,110,118,102,98,96,105,105,112,101,104,105,96,104,100,104,104,102,104,114,98,106,104,113,90,105,96,101,80,92,97,104,105,112,103,142,98,95,107,94,81,109,108,104,109,115,101,98,104,107,99,100,88,103,95,103,102,109,107,100,112,106,112,100,98,111,95,99,103,96,110,92,105,102,116,98,114,91,99,112,115,96,97,111,105,110,94,104,118,95,111,115,105,97,108,99,87,102,109,98,83,91,101,97,113,108,107,93,110,106,99,105,105,99,97,97,105,107,104,107,107,101,97,100,109,102,109,102,91,108,112,93,96,95,96,101,114,96,111,99,90,108,94,92,114,99,94,106,109,113,97,110,96,98,96,112,102,104,98,109,107,106,104,90,102,100,102,124,96,93,96,99,92,104,100,110,108,100,100,117,97,103,97,91,86,107,112,88,111,95,97,103,93,104,113,111,97,113,110,99,106,101,90,107,100,120,107,110,109,101,106,99,76,105,87,106,110,103,97,93,106,103,109,111,100,99,96,99,112,100,99,105,110,112,101,105,113,98,110,107,108,103,113,117,94,103,96,112,101,106,97,113,112,106,105,104,94,108,103,106,105,99,108,113,107,102,108,109,87,95,100,112,103,111,106,99,107,102,111,111,104,92,111,104,98,105,104,96,99,108,98,95,102,102,107,89,109,106,106,102,107,100,115,104,113,112,106,107,102,99,109,90,106,107,99,96,104,103,111,92,102,106,108,99,95,95,102,109,102,108,106,105,100,108,103,94,92,96,93,115,102,99,92,104,112,86,98,103,110,107,98,111,94,121,113,106,105,101,110,102,106,108,100,101,102,102,106,103,104,106,105,91,99,99,112,92,114,102,116,104,106,121,100,99,105,124,100,95,102,104,100,116,102,102,98,108,109,106,108,106,101,97,107,98,95,107,104,109,111,103,111,96,109,95,109,102,97,97,90,99,96,109,103,108,93,110,100,101,101,101,125,100,104,108,78,84,102,95,102,91,107,102,105,99,96,95,106,98,91,102,99,102,99,107,98,108,112,95,98,112,98,97,109,105,101,101,91,115,111,107,116,98,124,106,95,91,101,103,108,119,101,103,110,99,128,107,115,102,103,120,98,105,98,96,106,115,91,115,90,104,105,112,116,92,108,93,92,102,84,104,103,106,84,106,104,116,93,90,109,108,111,99,102,114,101,127,101,90,98,94,95,106,90,102,96,93,108,102,97,93,99,88,104,99,102,113,87,108,108,91,101,99,107,113,101,103,104,102,101,106,118,105,114,98,91,99,111,108,117,82,84,102,95,95,110,108,100,102,101,94,97,98,105,94,86,105,106,111,103,117,106,99,103,110,91,91,93,90,91,102,104,93,107,101,121,114,114,107,104,109,100,92,120,99,101,97,108,128,93,98,83,91, +477.12009,106,102,111,97,102,100,84,98,97,107,115,93,103,97,100,88,95,104,99,106,112,113,113,101,100,102,105,95,100,79,122,99,104,113,114,96,117,93,98,100,97,90,90,79,101,102,102,129,98,106,91,112,101,94,108,94,92,101,103,107,88,105,109,104,101,108,103,100,98,109,103,113,101,108,105,111,96,109,89,107,97,102,106,111,93,83,102,99,104,91,99,96,115,95,102,107,105,90,94,104,107,90,111,100,100,93,67,95,98,98,99,96,100,106,101,105,106,99,99,103,113,96,108,111,102,115,107,97,108,103,95,107,104,85,107,100,105,101,109,113,101,103,99,107,99,103,111,98,91,99,98,97,109,101,106,107,111,107,93,92,99,95,118,105,96,96,108,92,97,100,111,110,114,95,110,108,105,95,99,98,93,96,107,108,92,102,107,104,101,111,98,103,99,96,100,98,96,96,93,105,98,94,96,111,101,108,102,98,106,99,102,102,100,103,106,105,100,107,89,106,100,96,107,104,96,107,106,98,104,101,94,100,99,100,97,106,101,106,103,95,88,101,101,109,90,91,96,97,101,96,96,102,101,104,98,105,101,113,100,94,91,115,97,108,104,104,115,108,96,103,114,109,83,109,104,99,99,106,92,111,97,103,118,107,117,101,96,102,97,100,97,116,110,87,105,99,91,96,101,104,100,107,108,93,104,104,110,98,108,110,102,99,102,106,96,102,99,106,100,115,105,102,113,95,106,102,96,101,108,104,106,109,91,91,108,109,92,116,101,109,109,97,107,108,102,117,111,88,119,109,105,86,103,117,96,108,103,108,103,103,94,109,104,91,100,109,101,111,87,105,109,98,106,101,105,112,98,98,102,93,109,122,102,103,102,97,105,100,102,86,110,109,100,114,108,95,74,103,113,113,95,99,97,90,104,116,103,110,106,93,102,105,120,102,120,106,103,111,102,112,99,92,91,82,99,105,107,92,95,107,93,108,108,100,106,98,107,113,95,101,100,94,99,98,101,110,90,100,99,112,93,107,109,99,96,101,99,112,113,99,100,96,103,112,75,104,101,104,98,100,109,109,113,106,97,103,107,104,101,106,104,106,108,101,101,105,107,106,102,129,119,100,107,100,105,98,107,104,109,105,97,100,97,100,111,95,91,93,98,109,109,103,104,107,110,116,107,104,97,96,117,90,95,102,116,102,114,108,105,95,104,106,102,103,99,101,102,98,97,120,98,112,97,101,109,99,100,99,113,105,113,106,105,101,99,98,111,108,100,84,101,101,111,100,105,104,108,111,105,116,90,98,113,92,97,105,101,96,98,106,114,87,110,109,105,101,106,104,109,100,107,118,101,99,113,100,105,108,96,94,112,104,111,103,103,100,93,109,97,132,106,100,95,108,101,90,111,101,100,115,95,103,113,100,113,103,117,113,91,98,100,94,106,117,87,102,94,93,101,94,113,104,101,95,94,104,108,106,102,98,89,89,92,98,105,101,114,94,105,101,100,103,93,105,101,94,101,102,117,97,109,116,101,106,130,99,105,101,121,101,101,107,107,91,85,97,102,102,101,93,84,107,104,100,102,99,120,96,106,105,103,112,92,110,96,110,108,101,112,110,98,108,102,72,95,103,98,106,103,111,98,118,99,109,105,119,116,103,118,107,99,108,101,118,102,99,106,95,113,106,105,86,119,131,98,92,106,105,102,108,97,97,106,93,92,106,102,113,93,96,118,116,100,96,101,105,96,91,100,109,108,98,109,107,104,104,110,111,107,111,106,99,109,66,97,120,105,103,71,101,101,106,97,110,102,101,103,106,104,97,106,89,101,103,112,100,116,107,111,104,109,99,107,101,77,101,103,92,114,107,119,100,101,110,97,108,95,108,105,101,103,108,103,110,99,88,101,100,103,113,106,102,109,105,95,97,104,102,106,106,87,95,101,110,108,108,110,92,97,94,102,113,90,102,98,101,118,106,102,102,87,95,100,119,94,100,104,100,107,102,101,105,99,98,96,100,99,105,100,109,109,113,103,89,106,81,102,100,99,108,108,102,110,100,116,93,102,103,95,109,120,98,113,105,115,96,105,102,98,97,98,111,102,103,100,108,114,101,124,96,95,93,114,100,98,99,99,95,90,101,113,111,107,99,100,107,95,102,95,120,105,104,110,140,94,97,106,97,107,93,104,107,107,107,99,97,117,95,111,100,108,103,100,84,96,102,114,105,96,105,101,107,91,98,129,98,100,107,92,110,104,99,83,104,94,98,97,107,105,105,106,109,101,93,115,99,117,92,95,105,104,97,99,99,96,99,108,108,103,107,97,99,109,100,115,91,97,104,102,106,109,104,94,102,99,101,110,114,98,109,114,115,95,96,105,104,92,98,105,99,112,108,108,104,95,112,107,105,98,106,110,114,100,114,106,96,85,102,100,108,93,104,106,100,106,105,100,93,94,96,95,103,113,109,99,123,106,111,128,100,102,102,101,95,93,111,105,97,103,106,112,92,101,95,83,108,111,90,98,104,128,105,111,106,110,109,106,70,104,109,105,96,99,107,104,105,102,107,109,86,105,101,102,105,105,103,92,114,96,104,108,97,96,115,99,94,107,102,95,100,102,100,81,107,99,93,113,94,111,107,101,105,108,85,95,102,103,107,103,97,94,99,101,87,108,107,106,95,119,106,107,101,104,104,104,108,102,102,103,112,106,99,95,108,103,116,102,113,99,118,117,105,107,105,102,101,103,109,100,108,97,114,98,111,111,101,106,112,95,106,106,87,93,103,109,102,103,104,118,103,113,107,97,110,118,103,109,87,98,92,106,106,108,94,93,104,111,109,110,124,119,107,112,101,128,91,105,111,103,103,94,105,106,99,106,102,102,103,105,105,100,118,104,120,108,110,104,102,106,100,108,94,111,113,108,104,101,94,106,95,103,112,96,106,113,108,79,107,102,101,113,99,95,106,96,106,108,105,106,120,89,97,99,104,95,90,102,114,110,82,117,98,117,112,107,103,108,108,106,105,84,100,96,112,103,114,85,89,106,114,93,98,108,103,109,108,105,90,108,97,99,103,107,104,111,104,108,105,107,96,107,101,102,98,112,99,120,102,103,101,104,98,102,110,108,93,105,110,114,104,103,94,99,83,116,92,102,103,95,92,94,101,99,100,103,105,119,97,111,90,109,85,99,105,100,103,104,107,102,106,94,110,90,107,104,83,106,111,100,106,110,105,107,102,91,104,107,103,102,103,107,116,114,111,112,105,101,108,110,101,100,102,102,99,100,104,102,116,108,110,106,96,111,111,98,106,106,104,107,116,111,107,103,102,113,104,99,102,104,105,94,102,100,104,102,117,107,113,111,105,110,105,101,115,115,97,111,105,98,98,112,97,84,97,100,102,96,99,101,98,94,113,108,106,100,106,95,91,103,103,92,112,105,104,104,102,106,120,98,99,102,105,101,98,95,104,107,92,101,108,106,99,111,95,104,113,77,110,116,101,108,109,92,111,106,111,100,119,92,89,114,111,96,104,95,99,102,105,99,102,107,97,112,104,112,112,101,95,101,112,105,105,110,100,119,110,107,95,114,102,104,92,107,88,108,110,118,107,90,110,101,108,105,97,95,87,102,96,105,122,105,99,102,93,90,95,104,109,107,114,95,104,96,100,92,89,91,101,103,115,110,110,101,104,104,99,102,109,95,103,106,107,97,95,110,96,116,104,90,98,98,90,110,100,125,97,112,111,101,101,103,102,101,100,99,106,103,102,103,97,117,106,102,100,99,108,103,101,105,103,106,106,105,111,96,109,100,99,107,99,108,103,112,112,107,115,107,99,101,104,100,96,99,109,102,105,106,98,124,116,99,109,99,106,87,97,95,119,94,83,96,101,100,97,98,112,104,92,96,112,103,111,92,97,102,105,103,104,103,104,117,103,103,102,93,114,96,102,105,99,90,110,95,111,99,115,94,100,96,102,100,96,110,104,101,101,101,107,95,103,96,103,94,103,109,104,103,101,108,117,106,95,98,105,102,100,107,96,113,107,105,108,110,113,114,109,108,107,133,110,103,93,99,109,95,112,98,106,102,110,102,91,115,106,112,108,101,96,113,112,103,104,114,113,106,103,99,96,117,99,104,100,102,100,111,118,116,106,103,100,80,112,100,90,99,109,104,107,104,106,114,106,106,106,100,96,108,111,103,103,107,109,105,100,110,88,92,106,91,109,105,102,91,101,111,108,89,88,96,99,103,104,95,102,94,104,105,99,98,105,124,108,110,110,99,113,103,108,98,106,107,97,111,103,112,101,96,103,109,124,124,110,104,95,91,104,104,108,96,104,105,109,101,106,105,101,113,102,100,96,96,103,94,103,93,112,103,100,101,94,102,105,119,97,104,99,105,113,102,113,94,106,103,107,92,106,98,104,95,101,103,117,107,104,101,103,89,99,95,103,97,114,112,113,108,101,86,111,106,96,105,92,93,116,104,99,115,114,106,102,98,96,99,107,96,115,112,117,104,95,109,96,110,116,95,99,106,109,109,101,98,105,94,113,100,94,102,91,106,106,104,103,111,95,97,112,117,109,93,107,105,102,107,102,93,102,98,102,108,105,104,94,100,102,104,107,99,110,90,96,103,98,101,103,106,94,105,111,107,94,78,109,91,102,96,104,94,96,102,88,108,100,99,113,100,107,107,103,100,89,113,103,102,102,100,126,101,100,113,92,101,118,114,103,120,99,106,99,112,101,98,102,94,111,110,99,109,115,97,105,86,106,98,108,108,117,104,101,95,106,105,99,102,97,106,102,97,108,113,95,117,111,109,98,100,105,106,96,101,94,122,110,104,106,105,102,83,122,123,92,95,105,101,96,106,84,96,117,106,88,107,101,105,108,85,101,111,103,108,81, +477.26059,96,105,81,87,91,100,105,96,87,106,89,125,99,86,119,105,98,105,96,110,118,98,108,107,102,100,81,110,101,109,88,93,87,104,102,98,92,108,96,92,105,96,95,105,112,102,100,84,96,102,86,107,91,96,98,98,98,113,103,96,109,101,118,105,106,66,97,99,109,105,105,107,96,101,110,105,94,99,103,106,104,98,67,72,98,96,96,104,100,101,114,102,105,108,98,104,102,100,102,113,100,98,95,86,101,108,94,90,99,99,97,92,100,101,102,109,97,102,98,105,96,104,97,107,98,103,95,104,111,111,101,101,101,84,109,100,99,99,89,90,95,109,121,99,108,98,109,105,96,106,117,105,110,98,103,105,103,104,96,113,113,110,98,103,105,101,110,85,109,103,109,104,107,105,103,94,105,105,99,112,99,112,112,139,96,97,96,88,105,98,98,111,118,106,89,95,93,107,112,106,103,101,95,106,101,80,95,106,101,97,106,109,99,96,114,96,97,96,105,104,107,99,101,101,108,105,103,104,99,108,94,104,100,98,110,118,103,108,104,102,113,102,108,91,102,99,114,84,94,105,107,109,107,106,103,101,95,105,95,106,94,116,103,101,94,105,101,107,105,107,91,98,106,98,95,106,101,98,95,100,93,113,100,107,101,91,92,94,100,107,100,93,108,103,101,104,107,99,108,118,100,105,109,102,93,110,105,108,109,104,94,109,104,110,106,109,107,102,112,104,111,92,112,110,110,99,96,98,110,114,103,111,115,99,104,116,117,104,95,102,94,112,99,103,93,101,111,96,112,101,90,117,102,95,96,103,140,88,102,91,104,105,108,98,96,106,106,111,105,90,102,108,108,107,101,105,101,100,94,103,102,114,105,120,97,98,102,101,106,106,103,96,114,99,107,121,94,101,101,128,95,99,101,96,87,100,103,109,108,109,95,87,99,109,93,100,75,102,99,98,102,98,101,107,92,101,105,97,104,111,94,81,115,99,73,107,95,103,103,96,110,100,109,104,102,98,101,94,111,110,100,111,100,103,114,103,91,97,102,100,107,104,104,91,106,104,98,95,100,97,103,104,92,104,89,96,87,102,118,108,100,105,111,91,103,89,102,90,108,109,104,92,73,101,101,106,92,106,86,99,103,98,108,95,98,108,103,108,95,105,102,110,107,105,90,103,98,91,101,106,105,91,96,89,113,105,101,98,110,91,98,108,105,100,112,123,101,103,105,105,96,101,87,106,101,106,101,106,103,105,103,114,108,104,95,107,113,105,97,101,102,115,113,99,101,107,106,110,111,95,88,99,111,106,100,101,94,91,109,110,101,109,108,101,94,122,109,99,98,92,101,106,104,102,101,107,104,96,112,104,97,99,108,111,114,98,75,102,109,109,96,94,95,98,105,100,109,106,114,102,112,97,95,109,97,106,95,94,103,100,102,96,101,104,104,110,107,96,114,92,109,99,106,105,92,97,91,104,102,112,91,106,103,92,99,104,110,99,103,109,99,98,98,94,104,103,105,109,114,95,115,96,89,109,100,99,113,104,121,90,109,104,103,91,100,94,92,95,106,99,107,99,99,104,104,121,99,105,109,97,95,82,109,110,104,102,93,97,99,82,104,96,99,103,102,111,101,100,95,125,104,100,107,110,96,102,98,110,101,106,107,119,104,99,94,101,108,105,115,110,102,98,91,103,99,101,99,94,100,103,97,117,102,90,102,102,102,110,106,103,102,105,95,101,101,104,98,105,101,101,110,101,101,116,114,110,105,100,107,88,114,104,95,104,100,93,101,103,105,106,108,107,104,106,105,108,101,111,100,114,110,111,87,92,115,94,94,117,114,98,104,92,102,100,100,89,105,117,133,107,99,110,103,108,94,110,98,103,110,99,106,99,111,104,106,103,112,102,100,95,95,98,105,109,99,119,98,97,121,104,102,117,95,99,101,102,99,107,95,104,92,128,106,92,101,102,104,108,100,101,100,104,100,104,104,91,106,100,102,105,109,106,120,110,100,107,95,115,99,90,100,102,101,114,93,116,103,114,103,118,112,90,102,105,98,106,99,109,103,107,104,104,116,94,113,100,93,114,105,106,97,106,107,106,96,97,96,101,99,104,95,106,96,102,86,106,91,96,105,109,127,118,108,123,108,91,101,106,104,99,108,100,86,106,105,103,104,103,111,111,103,95,101,111,105,109,100,110,92,105,111,108,99,89,89,97,100,94,90,111,110,104,78,90,99,98,94,93,109,106,105,90,104,102,95,100,102,94,105,102,99,101,99,108,83,102,109,99,99,98,102,104,102,110,105,101,112,102,104,102,115,93,117,104,100,106,107,115,122,94,113,107,118,100,102,94,104,104,108,99,103,103,102,105,100,98,109,91,89,107,98,114,89,111,97,107,108,100,103,106,95,107,97,110,97,96,94,101,97,115,85,111,100,101,110,101,103,96,107,100,78,105,98,111,111,107,115,107,110,100,105,114,105,92,113,101,108,101,113,103,110,106,95,109,102,111,91,95,108,105,95,100,109,104,113,99,102,110,97,104,103,108,105,103,110,111,123,109,127,113,99,112,111,109,102,84,90,107,109,94,113,118,108,108,102,105,103,106,125,109,121,107,114,105,107,100,112,101,96,109,108,84,126,83,106,113,107,100,109,103,104,111,117,104,100,99,95,107,105,101,112,100,104,102,114,110,106,113,101,77,110,107,94,99,114,108,80,102,101,109,99,110,118,98,101,99,100,100,102,113,107,99,125,104,110,104,96,104,105,104,107,107,116,103,115,106,95,109,101,111,104,109,107,106,117,109,101,98,105,107,109,105,111,98,102,116,103,113,102,92,103,110,99,108,101,105,106,117,109,105,106,98,95,103,111,93,110,111,113,112,109,103,125,99,100,95,106,94,107,117,92,104,120,102,105,107,102,112,83,111,100,117,116,100,102,95,106,98,120,108,103,119,107,112,114,98,120,106,88,97,95,100,106,114,97,114,119,113,100,108,120,120,104,97,136,90,105,103,96,108,96,96,99,104,110,108,107,102,100,108,103,105,125,106,107,88,123,118,105,110,95,112,99,103,95,91,103,107,103,114,106,112,99,102,113,106,110,111,105,108,111,108,105,102,101,103,114,111,99,112,109,102,99,109,110,105,105,106,107,105,94,95,103,111,114,110,109,108,114,110,106,113,109,101,108,107,92,108,105,106,103,97,108,102,104,109,110,105,117,98,99,108,100,62,106,103,111,103,119,102,106,116,102,107,112,119,102,104,104,105,112,102,108,110,103,117,82,133,116,96,99,106,112,105,66,112,112,117,106,100,102,108,107,103,109,123,111,119,123,106,104,116,97,99,96,111,113,106,96,112,111,104,104,113,108,116,104,120,110,103,111,112,110,106,100,105,104,107,102,114,100,100,95,117,96,96,107,94,109,115,103,101,106,105,99,108,112,114,106,100,95,103,106,96,115,110,117,115,112,107,96,107,106,97,87,110,99,116,99,100,109,103,110,100,116,95,112,102,105,115,115,98,113,101,109,100,116,97,109,105,98,104,118,115,106,113,100,109,108,109,112,109,106,116,107,99,104,105,99,92,103,101,101,113,105,109,113,101,106,113,100,99,105,110,109,102,123,99,100,107,94,100,103,105,110,104,103,114,103,120,114,99,95,105,98,110,100,112,117,103,110,110,99,107,98,105,102,107,103,106,101,99,110,107,109,113,90,97,102,92,105,124,97,106,104,115,98,99,102,107,113,107,103,106,111,110,99,111,103,95,99,100,96,105,109,117,103,112,113,107,104,121,104,115,97,105,106,115,102,111,101,101,107,106,91,110,110,103,110,109,96,103,107,103,105,118,88,111,112,103,102,106,113,106,96,100,108,105,101,99,108,100,102,108,98,95,95,96,99,100,103,102,103,100,101,105,99,113,103,108,107,96,111,99,98,107,99,104,116,117,102,104,102,98,96,121,105,98,112,105,112,112,121,100,106,106,114,121,99,104,104,92,100,105,112,106,115,114,117,105,115,105,111,112,104,106,107,98,100,107,106,96,104,85,106,101,106,96,115,105,103,109,113,103,100,98,105,100,109,94,85,101,113,109,114,107,99,105,104,105,103,107,119,98,105,117,115,100,111,103,99,102,91,105,100,115,104,104,107,103,98,106,107,102,105,103,107,108,98,99,116,107,94,109,104,106,103,99,102,111,109,98,114,87,104,115,112,103,104,102,102,100,103,103,105,108,114,104,102,101,110,105,98,103,98,125,106,119,104,114,111,107,100,108,99,108,90,120,106,104,102,103,102,111,114,97,100,105,101,110,102,103,102,109,107,109,103,102,111,111,114,99,107,104,94,114,109,101,115,103,111,107,109,109,106,107,117,100,108,125,101,106,114,118,107,99,106,105,108,100,114,99,100,103,103,103,104,106,111,103,99,107,107,103,102,101,78,98,113,98,116,95,109,110,105,105,108,91,81,110,120,98,101,101,103,106,87,106,109,104,109,104,105,105,99,111,99,96,105,95,98,104,98,113,98,105,99,113,102,102,108,104,106,115,105,102,98,106,96,107,90,107,121,107,106,123,99,94,122,98,95,100,100,106,113,118,100,102,108,86,105,110,101,94,107,112,82,105,108,99,113,109,112,106,111,104,112,107,105,100,116,95,115,110,96,101,105,108,104,104,96,110,100,102,104,103,109,107,109,99,108,103,106,123,116,100,116,103,115,84,89,110,100,107,97,104,107,98,116,96,116,102,104,110,106,101,89,102,114,98,94,107,101,101,107,103,113,102,84,87,109,108,107,105,96,116,93,115,108,108,107,108,112,103,105,102,94,95,91,112,111,103,97,103,98,107,110,103,111,91,107,102,103,95,98,98,88,100,105,96,108,104,91,115,101,105,108,84,86,98, +477.40112,105,101,97,95,93,103,102,94,97,91,80,116,96,104,106,93,95,118,84,94,99,105,111,112,99,98,128,104,106,115,114,96,102,104,110,95,101,104,114,105,96,106,85,92,100,110,102,104,106,106,95,110,112,90,101,98,109,104,117,96,90,112,109,98,108,106,96,118,95,104,93,129,107,118,93,105,90,104,107,112,104,106,113,92,101,96,103,100,101,116,119,121,112,95,106,97,105,110,98,98,108,102,108,97,101,101,103,99,107,103,104,115,94,117,109,101,91,104,120,96,112,107,106,113,103,96,104,104,103,104,92,92,94,115,100,111,96,103,92,100,111,105,112,108,91,100,109,99,99,96,109,120,113,91,93,93,88,99,103,102,116,91,106,111,98,99,91,102,107,110,101,106,103,104,103,113,104,89,108,102,115,110,107,115,113,99,107,105,87,93,102,105,96,111,102,99,110,98,104,101,105,95,102,109,107,107,113,102,117,103,102,101,102,104,99,92,102,107,100,110,110,110,101,98,117,100,111,106,114,112,109,109,107,101,73,110,111,106,104,103,94,97,115,107,94,97,99,100,97,110,98,133,100,103,114,93,92,103,102,107,91,116,107,114,97,113,104,106,105,93,94,104,96,105,106,111,117,114,86,100,100,103,114,100,95,107,99,102,105,106,95,103,110,109,115,104,91,114,109,99,93,100,102,120,106,107,110,106,107,102,98,108,114,99,103,91,113,98,107,104,112,106,104,99,90,105,97,93,97,115,109,105,108,104,113,100,95,111,100,113,113,97,123,91,101,108,121,103,105,100,97,101,103,108,117,98,116,109,107,100,94,103,129,99,107,111,125,116,108,111,103,114,110,84,97,94,115,86,114,91,108,110,97,104,113,100,105,98,98,93,107,101,109,109,102,97,81,109,100,109,96,88,103,118,102,102,96,101,106,99,101,91,106,109,106,110,97,117,103,93,100,91,97,105,108,72,109,114,111,112,104,102,95,114,107,101,109,100,104,105,103,74,101,102,92,114,107,113,113,105,108,101,104,105,103,111,113,114,96,119,106,97,100,106,108,107,108,106,102,102,120,116,105,114,103,108,105,107,100,118,95,105,118,100,111,107,119,98,94,104,109,106,104,98,103,102,112,95,104,112,104,91,96,110,113,111,105,129,113,108,109,115,102,105,126,110,109,101,116,99,101,99,95,107,90,105,101,107,105,109,101,103,109,105,99,100,107,109,104,106,105,99,108,104,113,100,118,112,104,112,111,114,112,100,104,97,109,98,89,94,113,105,96,106,103,110,110,100,104,95,106,93,101,97,108,104,98,118,109,106,113,79,110,101,108,104,121,90,101,103,113,105,100,104,113,106,101,99,105,98,113,94,96,108,100,99,111,108,104,110,106,111,100,109,115,106,93,101,107,101,108,117,104,94,105,101,101,105,117,90,99,94,89,96,104,94,103,99,112,106,108,102,109,109,90,102,110,98,95,98,107,100,110,100,100,101,110,113,97,109,110,123,100,109,101,103,111,110,104,108,109,103,107,110,110,117,91,96,96,109,115,112,113,95,99,112,102,115,113,103,90,104,99,117,106,97,106,110,102,103,108,101,94,102,99,102,118,112,102,107,102,103,101,102,99,104,101,102,97,104,106,98,112,100,97,96,101,105,105,101,104,106,105,93,110,101,106,92,108,102,121,98,101,97,95,102,99,104,110,106,108,104,90,92,95,106,98,109,105,106,110,102,114,101,96,108,89,104,98,100,103,99,104,112,99,101,105,109,112,100,111,103,116,106,103,115,120,100,99,112,119,105,116,106,101,88,100,109,103,87,118,112,83,97,106,109,105,116,112,111,101,91,104,100,104,99,113,118,106,96,100,105,99,106,92,114,119,118,113,116,112,106,101,111,92,114,104,109,108,103,101,106,116,100,115,116,109,109,93,114,104,104,108,103,98,101,109,98,107,102,94,104,106,102,87,92,110,102,106,103,96,111,99,108,94,94,110,95,105,107,104,100,100,90,93,98,96,108,114,100,108,108,97,112,103,108,94,103,105,107,109,110,110,106,117,128,105,100,101,107,99,98,101,108,101,105,100,110,107,101,114,112,103,119,99,106,103,96,110,103,96,115,94,101,98,96,104,92,103,91,105,96,123,104,97,93,112,123,95,110,108,107,102,108,99,108,110,124,96,103,106,113,104,100,116,99,113,103,109,110,106,106,122,98,95,105,110,116,101,103,104,107,112,98,113,102,95,97,110,97,110,103,99,99,93,114,103,109,99,107,95,104,104,93,105,99,120,110,104,100,102,109,103,112,102,100,105,105,107,92,103,100,95,109,100,112,108,86,106,107,108,98,103,94,100,96,106,102,114,108,107,97,104,110,105,95,103,113,105,96,109,111,110,99,96,110,108,101,103,90,95,103,110,105,97,99,92,91,110,102,103,67,102,122,94,111,115,100,97,109,100,100,117,89,100,110,118,110,115,101,113,95,99,96,107,112,111,107,111,118,103,109,108,104,83,106,109,108,110,94,95,116,112,109,107,100,98,100,106,92,112,105,111,109,99,105,102,108,103,117,96,119,113,113,112,104,97,100,116,99,95,103,98,106,100,109,101,102,111,98,113,102,102,105,104,110,112,113,116,111,104,100,106,94,107,99,131,116,103,118,98,100,107,107,107,96,103,100,112,103,113,108,99,121,109,103,118,121,105,110,98,111,104,117,111,107,106,120,111,104,109,105,107,107,101,96,96,120,102,106,107,110,102,113,113,104,106,118,96,106,105,99,108,103,105,110,111,118,111,92,105,120,103,106,95,108,116,111,105,112,91,109,106,110,87,117,106,113,102,115,116,109,94,112,111,114,104,113,101,112,102,115,111,108,102,99,84,108,97,119,110,111,114,106,122,103,101,114,92,121,99,114,113,98,107,110,115,102,113,116,124,99,102,111,102,95,87,112,106,100,116,100,100,106,98,106,117,105,102,116,96,81,100,106,114,106,102,100,107,111,93,101,105,110,108,123,102,110,98,100,100,103,109,107,109,103,91,103,114,110,77,128,102,109,109,110,108,109,95,119,116,120,100,111,109,105,102,101,127,94,109,107,105,106,115,95,104,110,103,112,102,103,107,102,114,111,107,106,102,111,100,102,100,110,99,108,103,105,107,106,101,93,108,113,113,112,95,96,113,112,112,95,118,100,117,127,110,109,103,99,70,96,108,105,103,105,106,112,94,98,104,107,92,102,107,111,108,103,98,103,105,108,102,127,111,103,109,111,94,100,113,106,102,120,107,102,91,110,103,96,111,98,109,101,103,105,106,99,109,106,98,90,99,95,89,99,88,102,114,104,94,98,106,102,102,106,101,112,120,107,111,109,116,114,101,108,108,103,106,102,117,104,105,104,101,109,97,108,108,101,94,101,102,111,102,99,118,100,100,112,98,98,109,102,99,103,110,96,122,108,98,109,103,106,103,111,101,109,112,94,113,100,109,141,105,110,94,110,95,107,102,113,101,120,106,105,86,117,106,91,110,104,91,106,107,114,106,112,116,103,101,104,103,106,100,106,107,104,112,114,116,105,110,113,94,114,109,103,115,105,110,117,101,112,114,102,107,105,104,103,97,99,97,105,111,100,98,113,111,107,107,116,105,108,106,99,111,101,108,103,130,95,90,106,104,96,93,115,108,98,90,106,112,111,99,120,106,105,96,100,99,109,100,107,105,105,107,110,90,105,110,104,103,109,110,99,107,109,104,99,109,116,101,101,108,107,101,102,100,104,104,115,105,103,107,106,85,107,101,111,102,106,96,105,117,104,102,115,96,96,102,116,103,100,105,109,101,108,96,102,99,98,101,105,91,96,98,105,115,95,99,96,103,106,100,108,111,94,109,98,102,93,90,104,114,90,90,101,102,96,104,100,87,112,99,103,104,111,97,107,109,99,115,105,95,110,102,103,112,111,110,102,108,104,104,127,110,124,101,87,98,109,103,106,96,107,119,112,84,107,117,116,102,109,112,99,104,115,110,109,99,104,102,124,99,114,108,109,104,108,108,103,98,78,110,109,106,104,109,101,80,87,115,89,104,99,110,121,109,102,121,103,100,107,115,102,104,106,113,90,100,106,110,104,111,120,95,82,101,100,105,105,98,102,109,107,107,110,112,102,101,95,95,110,105,104,95,101,121,98,114,105,102,103,103,105,94,106,105,104,100,112,100,113,98,104,105,99,92,104,111,94,107,107,89,110,103,109,105,96,104,113,112,110,94,102,101,104,121,100,106,98,102,106,112,101,105,98,99,107,89,111,116,116,110,111,105,97,104,108,107,103,111,100,107,102,83,106,91,122,112,100,99,111,93,100,116,113,98,109,105,105,113,112,106,107,105,95,112,102,99,104,97,103,98,101,108,90,106,97,91,102,108,109,98,115,106,99,107,97,104,110,100,84,96,100,99,104,108,108,88,106,94,112,103,99,98,94,114,98,108,101,100,115,106,108,121,103,105,106,75,110,93,108,125,108,106,110,110,103,97,97,115,102,100,112,102,109,101,92,110,112,102,101,87,106,102,72,114,102,102,74,104,101,104,100,114,107,96,105,104,99,113,110,108,99,109,109,113,105,102,94,98,110,91,109,112,103,98,102,104,101,111,105,106,101,108,101,97,106,108,105,104,110,113,106,101,99,110,101,114,102,108,96,105,127,119,96,113,103,108,109,102,98,109,103,114,103,102,98,108,102,98,113,108,119,110,100,98,105,110,110,110,108,103,92,113,109,104,96,97,109,99,113,110,107,98,100,112,95,94,108,121,96,102,98,104,96,101,100,109,101,100,90,95,97,107,102,111,97,107,102,107,98,92,121,110,108,110,101,104,100,107,102,102,94,101,129,109,101,101,96,112,106,102,104,98,104,103,98, +477.54166,87,109,114,90,105,104,111,100,102,129,100,99,102,88,107,90,113,103,96,97,111,102,94,97,96,95,107,108,104,105,104,105,114,106,96,90,106,93,104,97,101,101,98,113,113,100,106,114,87,108,92,95,104,112,100,108,105,90,99,93,91,105,96,101,99,106,96,103,97,103,105,99,90,110,97,104,96,111,97,113,103,95,96,99,95,103,102,99,107,99,93,96,95,99,107,98,100,128,96,97,98,104,109,93,98,76,95,104,102,107,117,103,104,103,116,110,96,110,120,102,102,103,107,103,98,104,102,102,109,99,109,100,99,109,111,103,106,87,102,101,97,106,90,100,104,99,99,116,94,107,111,98,114,94,96,104,114,100,110,91,103,101,109,95,112,102,104,90,96,109,104,102,102,105,105,97,88,89,111,97,95,116,97,87,103,108,102,109,104,104,100,97,101,117,105,112,113,110,108,110,102,103,94,115,97,109,104,108,112,102,108,101,115,105,94,105,117,105,106,98,94,111,102,97,98,110,98,103,106,102,98,105,105,113,103,115,110,109,118,102,103,104,102,112,98,102,100,91,106,97,94,104,91,116,108,98,103,107,102,113,100,98,97,103,104,90,82,91,98,95,100,104,109,100,114,106,88,115,109,109,104,108,104,105,99,96,90,102,93,112,113,104,92,108,101,106,101,105,91,107,100,106,106,107,92,101,96,113,100,103,97,105,117,111,111,102,89,108,106,113,108,100,105,105,100,113,101,96,105,120,99,94,113,118,103,99,105,81,102,105,97,97,106,91,100,99,113,104,103,105,96,110,99,107,104,100,117,99,97,112,106,112,102,95,119,97,99,109,106,95,101,105,103,107,110,96,102,97,101,123,104,113,101,104,106,109,103,93,99,69,103,117,106,106,93,93,92,100,105,96,102,117,115,104,93,100,98,100,104,108,91,103,103,96,104,100,100,103,121,101,113,101,99,115,99,93,103,109,105,110,98,108,98,104,113,97,96,104,93,105,115,99,101,103,97,101,92,108,104,123,98,107,114,95,104,92,90,95,103,104,84,111,108,90,97,105,112,108,116,102,104,98,114,106,99,106,95,124,111,114,95,104,115,104,95,93,113,124,105,99,106,96,95,95,100,103,75,100,111,95,104,92,107,86,103,90,98,99,105,104,112,98,102,114,99,104,111,102,100,107,103,108,100,95,103,107,109,103,114,96,99,94,112,102,109,102,95,113,104,103,107,107,105,82,104,100,101,102,99,132,118,109,109,103,100,107,96,96,100,108,102,98,101,99,97,105,96,121,105,107,102,93,90,105,106,121,125,105,108,102,113,102,116,102,93,112,100,100,95,80,110,110,105,110,87,112,103,111,107,91,95,97,109,111,103,109,92,98,104,108,120,104,116,101,117,103,105,104,108,100,113,104,109,97,111,102,107,101,103,101,100,99,109,101,106,96,103,102,104,105,105,104,105,111,94,90,109,92,99,105,92,124,95,102,95,89,102,97,98,110,108,108,97,95,113,96,95,84,105,102,98,104,109,112,102,100,101,107,109,100,91,94,100,101,98,108,102,101,109,99,119,111,107,107,103,105,108,111,110,96,96,105,95,100,87,109,107,105,96,101,111,104,112,97,104,108,92,121,101,107,100,96,109,112,99,100,110,99,106,102,87,108,103,105,103,101,91,104,91,103,100,104,106,96,109,104,108,96,101,110,120,95,101,104,94,95,94,93,109,94,101,96,97,94,101,109,100,99,98,93,103,114,95,100,80,104,110,126,106,87,90,99,113,115,98,120,97,102,99,117,101,103,90,99,104,100,112,105,108,97,101,111,127,103,100,99,103,103,114,117,110,95,91,103,95,115,107,120,108,94,101,109,117,109,94,100,106,106,99,112,95,108,121,82,91,112,102,106,89,112,108,104,106,95,102,106,101,109,109,110,111,102,103,103,105,104,106,109,94,93,97,105,103,102,110,97,89,107,111,102,114,102,98,101,97,101,102,105,99,101,99,101,101,100,113,97,99,102,121,92,108,99,106,99,105,97,102,114,99,100,100,111,107,95,106,98,108,101,105,101,110,110,102,89,110,98,101,109,108,106,95,106,112,108,95,99,97,105,112,106,111,110,103,109,101,81,98,99,109,100,103,99,101,94,103,107,103,99,91,100,110,113,122,104,101,99,108,111,97,99,99,102,111,96,90,98,106,107,108,109,100,105,95,99,98,111,125,93,103,105,96,111,93,109,100,107,95,111,105,98,91,105,107,110,95,99,138,111,101,107,101,102,99,97,105,110,99,99,103,104,106,102,95,98,96,94,106,101,78,95,110,99,100,100,112,105,113,93,101,115,99,100,97,98,110,95,109,107,112,107,91,94,101,97,100,103,93,107,102,94,97,112,97,102,99,103,109,103,100,95,108,99,108,94,97,99,82,103,99,89,101,101,101,94,103,91,114,88,115,101,102,111,119,117,118,105,100,104,121,99,103,104,102,120,94,107,111,100,112,106,99,103,96,105,93,101,106,107,100,106,96,115,105,91,109,114,103,99,102,103,116,93,101,103,104,95,99,103,107,100,103,104,86,106,110,100,112,111,108,103,101,96,100,97,96,98,113,101,99,98,106,123,107,92,100,111,110,101,110,106,109,97,113,100,101,108,108,103,103,97,94,101,104,96,102,99,107,105,102,103,107,100,99,100,109,109,112,103,109,104,110,104,107,112,103,92,110,105,109,100,105,101,112,104,112,103,102,107,80,96,105,93,99,99,93,88,98,104,113,104,107,106,113,114,97,108,103,112,102,120,106,104,105,106,104,104,117,107,120,98,110,97,111,97,95,120,112,105,113,103,92,107,114,110,117,94,107,116,108,106,102,104,114,109,114,102,121,105,123,113,101,109,98,114,102,107,101,91,100,120,105,117,112,91,106,101,87,104,120,100,95,113,101,101,106,114,113,96,115,101,80,107,107,107,114,100,108,119,99,108,98,103,100,78,109,108,107,107,116,111,109,112,100,115,106,105,95,113,93,98,106,100,102,120,112,113,95,105,101,105,103,98,108,100,102,116,111,105,104,108,111,96,98,106,104,102,110,112,97,104,115,93,99,111,107,88,101,98,109,102,111,112,90,112,106,104,96,109,106,91,75,99,101,103,99,118,107,111,98,108,96,123,106,102,99,102,101,99,112,103,116,103,109,95,111,106,109,103,115,109,84,97,102,110,128,103,102,117,96,111,103,107,106,115,98,99,105,107,102,98,100,111,109,103,109,110,98,114,103,95,103,99,117,94,94,107,98,111,99,110,99,101,99,107,115,105,104,107,112,100,103,107,108,103,102,114,99,95,104,99,115,104,98,109,105,103,100,104,97,99,97,108,100,100,100,90,108,108,110,103,101,95,102,117,103,102,91,92,105,104,96,106,115,108,99,115,111,97,117,110,95,103,94,94,100,100,97,101,105,107,123,115,110,113,91,99,113,114,104,107,109,106,118,101,99,112,97,110,104,108,105,103,109,107,111,107,98,109,103,93,105,103,112,117,104,118,115,103,90,107,100,99,117,99,116,98,107,95,79,111,89,104,106,103,112,112,105,93,115,99,102,99,95,104,105,96,111,100,109,117,87,102,119,115,102,94,114,99,110,112,100,97,98,97,102,111,107,92,103,99,104,99,111,103,91,107,120,116,103,108,116,105,106,103,102,118,118,104,98,111,107,103,98,102,95,105,107,99,95,84,114,111,104,99,108,115,112,104,102,96,109,103,91,97,113,113,98,97,105,94,112,90,91,108,96,103,102,93,99,102,98,108,99,113,110,101,95,99,99,104,110,95,97,93,106,102,91,104,108,105,97,103,102,117,103,107,103,106,117,109,100,113,96,105,107,103,92,97,99,113,99,115,114,102,109,100,88,99,104,90,96,122,112,107,100,100,104,106,107,108,110,98,103,109,100,102,104,101,103,103,105,94,106,107,103,109,95,102,90,100,129,102,101,99,106,94,108,110,109,108,109,106,104,112,116,95,103,102,98,115,114,110,87,101,112,103,114,99,98,98,108,102,103,98,105,104,106,104,106,87,102,101,108,99,99,96,102,97,98,90,106,109,106,116,104,99,102,109,91,106,106,106,113,105,95,83,112,105,91,110,98,102,94,102,113,108,106,120,106,114,111,92,101,112,113,97,108,99,105,105,99,109,111,96,99,106,107,104,103,107,117,104,111,102,127,106,99,104,99,96,110,113,116,106,113,109,87,110,102,99,100,112,106,96,102,101,90,91,93,113,121,99,106,104,107,110,101,97,96,111,107,109,112,110,102,101,104,110,124,114,94,121,117,108,100,109,109,111,99,106,107,100,103,100,96,107,110,108,103,102,96,100,106,109,97,112,117,113,99,136,115,103,112,108,99,98,104,102,101,106,105,91,103,95,91,103,98,108,115,98,82,111,105,91,94,97,100,94,88,107,103,91,104,90,111,96,110,103,114,105,94,104,96,109,109,109,101,105,99,112,105,99,117,114,105,112,102,105,102,96,105,101,101,103,104,101,96,107,100,110,101,105,105,104,96,103,102,100,101,103,105,114,105,95,107,91,117,103,101,103,98,107,93,100,117,102,106,99,103,99,104,111,104,111,109,100,100,107,104,102,103,109,101,112,104,113,112,96,108,106,92,108,110,108,90,97,114,99,109,86,108,94,98,117,87,106,113,96,108,95,102,120,105,97,114,109,107,101,109,101,91,109,102,109,91,108,90,105,118,132,104,114,112,102,107,105,101,102,106,119,96,99,106,102,113,105,105,103,105,117,100,89,120,104,101,101,97,106,98,100,113,97,109,101,104,102,102,91,105,119,103,115,99,126,106,109,99,122,115,98,105,100,99,92,104,94,96,112,107,106,86,99,105,109,107,100,91,100,92,116, +477.68216,100,113,116,94,114,107,105,102,83,115,95,110,109,107,90,86,101,118,100,90,114,97,109,104,107,113,113,109,125,118,115,99,102,98,91,106,117,102,111,109,103,101,95,99,116,103,102,116,102,117,101,110,104,109,101,94,90,90,111,98,120,97,102,98,105,124,96,114,108,101,117,105,100,119,105,102,93,109,103,96,100,102,89,107,117,100,110,106,93,110,109,108,107,107,98,103,111,100,97,121,106,101,97,95,100,91,117,103,102,100,101,107,94,105,103,103,103,107,109,101,84,109,101,108,98,115,112,109,111,109,112,107,114,108,133,107,102,109,111,114,99,102,97,111,106,109,117,102,88,110,97,107,98,97,106,107,97,114,106,101,88,93,100,88,111,111,107,88,117,108,103,84,87,108,106,106,112,109,109,102,106,99,109,111,91,103,96,99,95,101,103,108,106,113,105,111,105,96,100,114,98,106,114,104,108,95,101,100,109,116,115,100,100,105,94,104,104,112,111,101,106,107,105,122,107,106,102,101,130,114,106,105,108,103,102,112,99,103,104,106,110,111,109,112,103,101,102,109,118,118,112,113,103,112,106,107,103,101,95,106,93,103,105,113,118,96,66,114,104,102,105,98,112,112,117,115,99,88,133,101,109,100,112,102,103,112,96,104,98,137,102,104,115,107,105,115,113,105,104,113,101,101,99,105,103,108,106,107,105,118,97,125,108,127,103,105,94,97,113,109,97,113,113,111,119,100,96,103,113,119,112,99,119,104,101,99,115,102,102,109,109,101,113,107,110,99,101,102,108,107,94,106,110,110,113,109,85,109,112,107,103,97,105,93,103,94,99,106,104,108,107,108,108,101,114,108,109,105,109,96,111,104,116,122,87,107,99,98,105,102,105,98,94,107,111,93,112,106,102,102,101,104,123,107,99,94,106,120,95,101,95,90,106,109,100,101,103,117,100,90,107,97,100,109,111,105,99,94,100,116,105,99,118,107,100,110,115,113,98,107,105,117,98,80,105,108,107,105,107,105,98,107,113,115,106,109,106,112,105,104,103,106,108,113,103,101,104,106,114,110,105,109,106,113,106,95,97,115,109,103,112,113,103,104,101,95,107,103,110,117,102,102,101,99,121,102,97,114,105,95,109,100,113,103,104,91,112,101,113,90,106,116,99,109,112,112,102,108,100,105,108,99,89,107,105,114,108,106,109,102,97,115,108,91,112,107,101,114,106,104,114,114,96,97,106,109,90,94,118,125,124,124,103,110,103,112,107,113,97,118,109,102,107,118,108,111,98,103,126,101,84,98,107,120,110,112,90,101,97,105,108,112,95,110,115,103,106,112,108,116,113,109,99,95,101,112,100,89,108,107,105,111,111,104,102,105,116,99,113,105,110,99,112,102,108,106,106,104,112,97,123,108,102,98,112,107,106,85,102,102,115,113,94,100,86,105,104,97,112,104,110,101,104,98,96,94,105,106,111,112,101,79,118,116,109,109,117,112,107,95,108,105,96,111,101,108,112,103,111,107,110,107,94,99,110,115,117,106,116,106,109,87,108,100,109,108,103,97,106,113,114,113,107,139,103,98,109,93,109,109,99,94,115,106,114,113,107,103,97,98,109,103,113,107,101,99,104,99,114,120,107,103,107,106,103,105,112,117,107,119,107,107,110,93,99,104,104,94,110,104,99,97,117,104,109,108,107,98,113,102,108,108,110,126,104,105,106,106,109,101,103,84,101,96,95,102,110,115,99,101,117,105,109,97,102,105,91,91,114,94,98,99,127,104,113,112,96,117,103,113,103,111,112,114,101,111,115,102,111,114,108,103,105,111,110,96,110,91,103,105,105,117,114,108,102,112,95,105,106,104,72,103,92,104,104,111,111,103,100,97,91,113,113,98,102,101,98,110,115,113,94,116,112,104,113,99,93,107,96,109,107,101,98,114,81,101,123,111,98,107,101,101,102,98,93,116,112,99,107,114,108,106,110,101,98,103,109,94,132,104,109,106,96,73,106,103,95,107,82,108,99,110,102,112,99,105,116,105,108,86,101,107,113,107,115,110,114,103,107,105,124,96,101,114,98,108,99,113,103,105,105,116,110,97,99,105,102,99,93,117,105,130,98,104,103,86,113,118,117,105,107,95,101,104,101,106,100,107,120,107,126,111,112,110,103,109,97,105,98,111,110,109,108,103,112,110,98,109,112,99,110,105,111,109,108,108,107,113,95,104,103,112,100,100,105,95,102,100,98,104,111,100,107,106,104,107,89,115,100,110,99,104,108,101,117,98,114,112,107,103,100,113,97,107,105,102,100,107,99,98,106,114,110,90,116,98,110,98,97,110,106,105,110,102,104,91,112,119,108,101,109,113,106,98,95,109,110,116,99,96,95,103,105,111,114,110,99,109,108,105,99,112,116,100,100,106,94,113,105,107,108,119,101,118,103,92,103,112,103,108,105,106,118,85,96,112,97,107,117,103,109,103,104,95,109,108,123,89,115,110,108,111,115,113,108,116,107,104,112,102,112,103,112,104,99,105,107,114,94,107,108,109,108,98,95,107,111,111,107,106,111,117,101,110,73,113,104,116,107,97,102,101,118,106,104,93,116,110,106,114,119,96,98,103,104,110,114,108,110,109,104,100,106,87,108,105,107,98,107,113,112,106,106,108,75,97,103,104,116,98,112,103,113,106,112,127,99,101,104,117,107,101,101,113,117,118,108,106,98,91,95,112,114,118,113,92,119,124,96,114,114,106,101,114,110,104,109,113,107,103,111,111,111,109,106,115,98,108,110,109,113,106,93,123,124,107,125,117,106,108,94,95,108,105,114,105,99,111,107,106,99,113,103,100,100,104,101,112,84,113,104,106,102,123,117,98,109,108,96,99,110,98,121,108,97,101,106,107,110,104,94,123,93,111,115,118,110,105,103,106,113,96,101,108,110,111,107,109,110,104,107,103,115,91,109,117,111,103,100,102,96,107,93,102,108,112,105,111,101,107,116,109,103,104,113,109,125,100,109,100,103,94,97,108,113,96,108,98,122,117,109,106,117,101,99,107,115,108,103,93,98,113,94,107,106,100,80,109,103,103,98,104,95,104,117,97,100,104,115,100,105,98,109,112,103,111,92,104,94,111,107,111,101,111,96,100,102,108,103,80,95,90,92,107,104,109,102,70,113,90,97,109,87,98,96,106,116,103,99,101,112,103,112,114,104,95,106,108,105,105,111,102,99,105,113,111,104,111,109,114,112,108,102,109,113,110,94,120,106,109,104,107,109,104,102,113,116,104,109,95,115,118,98,117,110,106,107,104,97,107,122,117,108,103,100,109,109,109,114,96,85,112,110,97,106,107,104,111,100,111,114,110,106,108,117,103,109,105,127,115,93,103,98,102,107,115,106,115,109,114,89,85,120,112,107,108,111,101,103,97,116,103,113,106,101,106,104,78,99,97,94,101,108,114,100,103,106,112,103,104,108,111,109,108,101,109,109,115,109,111,100,102,96,102,106,109,104,110,88,98,112,114,105,107,100,99,111,101,105,106,112,102,111,98,107,100,101,106,106,112,112,105,105,122,94,98,94,100,99,102,121,111,96,105,97,110,109,110,117,111,104,115,113,107,111,103,111,117,113,99,114,100,103,109,113,125,99,111,102,115,103,99,107,107,88,96,108,101,103,113,97,99,103,117,100,104,104,112,103,109,106,116,106,75,110,120,108,109,101,109,110,105,100,101,95,102,119,99,102,113,117,101,103,108,107,105,112,95,110,103,113,107,109,103,96,103,106,105,107,92,95,104,99,108,116,106,111,118,75,105,123,104,112,108,103,104,106,99,112,106,87,117,82,88,102,113,100,110,104,99,105,96,104,104,120,113,105,100,103,106,110,104,104,109,109,104,109,100,109,98,95,98,117,119,111,109,122,106,108,97,99,107,109,103,103,112,105,83,109,113,104,98,107,113,109,106,109,99,111,103,101,114,108,115,110,105,107,94,105,114,107,102,101,102,111,109,100,113,108,106,109,100,105,120,108,107,98,98,102,110,120,112,98,97,102,109,109,111,110,103,104,116,92,102,104,102,116,112,110,107,106,105,96,116,109,113,106,101,103,106,98,107,107,105,106,111,105,95,109,103,101,85,103,105,103,115,113,108,107,108,121,103,125,104,89,106,107,104,115,95,136,95,100,86,111,119,103,106,107,111,120,111,105,117,106,103,109,106,109,89,108,100,87,111,98,110,95,111,107,95,99,122,106,98,102,101,94,108,101,112,112,105,103,107,102,101,97,98,99,101,105,116,124,105,96,94,109,105,106,103,109,102,113,111,110,97,100,106,99,105,107,105,113,100,112,115,109,108,108,113,100,108,108,112,108,102,117,101,96,109,103,105,120,112,109,105,108,106,107,97,91,115,97,94,111,98,99,109,85,103,106,107,104,95,103,98,102,103,105,101,104,116,108,94,105,100,117,105,91,99,102,102,104,107,100,99,87,104,117,99,102,109,101,105,114,103,108,112,110,110,91,108,104,107,103,102,106,104,106,124,116,108,90,109,107,90,102,94,93,96,111,115,114,117,101,116,104,110,102,103,90,89,99,118,120,85,101,99,103,121,100,101,105,117,105,102,128,113,100,106,111,102,118,109,110,108,106,119,111,104,109,97,107,113,110,117,96,102,89,108,113,113,106,109,88,102,104,102,99,114,114,108,102,106,108,112,99,103,104,99,103,101,102,100,105,105,113,104,102,109,115,112,104,107,91,108,104,114,109,103,99,104,113,102,105,103,103,97,104,109,120,113,110,106,90,98,110,113,98,105,107,81,114,101,111,104,108,99,98,103,93,115,100,99,100,100,117,101,110,97,102,109,101,91,106,98,92,102,107,106,119,88,93,118,120,89,96,104,90,110, +477.82269,94,99,105,98,99,103,97,101,115,101,106,96,87,106,112,109,111,95,109,88,91,101,103,108,115,109,109,94,110,113,102,103,103,102,110,103,97,100,102,112,96,109,103,103,97,106,106,82,100,99,90,87,105,102,110,107,113,94,101,89,107,99,109,105,100,102,99,99,104,113,96,101,98,105,110,117,102,96,108,92,104,96,102,108,104,95,90,116,101,107,103,93,113,104,103,95,102,106,95,91,98,102,96,108,102,98,101,108,102,92,100,105,101,112,110,106,102,102,114,117,94,104,97,104,98,114,98,109,123,116,105,114,95,116,104,105,102,108,99,100,104,118,105,94,91,92,124,97,99,92,125,101,118,100,95,110,113,99,118,109,96,99,111,103,102,99,107,118,122,117,114,99,101,105,106,97,109,96,115,108,96,98,112,100,108,102,95,96,122,98,107,101,113,104,104,86,103,114,91,94,110,107,110,103,100,115,94,105,114,110,110,108,109,107,110,113,109,116,105,105,106,104,109,108,109,110,102,104,110,98,110,99,104,108,103,100,113,109,106,102,99,102,111,105,109,99,105,108,110,113,110,110,108,99,101,103,112,100,97,115,110,97,95,104,106,102,118,103,98,111,102,101,100,107,101,95,107,111,103,95,102,91,95,103,108,113,98,110,107,110,113,101,106,101,111,106,112,107,116,116,114,94,107,104,94,105,117,104,98,108,103,104,112,107,93,111,100,110,101,103,114,98,108,108,110,104,107,98,111,106,103,107,103,110,101,113,103,112,102,112,108,92,119,127,99,112,104,125,107,100,105,106,108,104,111,107,107,105,108,98,99,106,94,129,105,109,89,116,98,112,104,105,105,113,98,105,111,103,99,95,110,116,104,95,118,107,101,105,105,120,111,104,106,113,100,93,111,109,105,113,107,113,107,114,100,105,118,93,116,90,92,108,112,102,113,105,82,101,109,121,92,120,100,105,96,95,101,104,112,106,125,94,99,114,93,113,94,105,112,99,108,101,108,103,100,105,98,110,114,109,114,113,109,113,109,110,98,107,108,109,114,108,113,99,112,104,111,110,103,98,79,115,102,97,108,99,101,114,104,105,108,110,113,97,109,112,92,98,120,105,106,103,112,99,106,112,101,105,116,103,98,95,104,105,99,95,102,96,103,115,105,114,111,97,115,95,108,98,129,88,87,114,102,109,108,104,108,95,121,105,109,103,121,103,100,117,92,104,99,116,96,108,108,103,111,115,104,110,112,102,106,101,123,99,98,113,102,98,102,111,101,102,115,123,92,109,93,108,105,105,129,97,99,112,110,112,89,99,114,110,112,102,102,103,111,106,111,113,112,103,97,107,106,111,108,109,108,112,99,100,88,107,108,96,100,76,102,103,106,114,109,102,103,108,100,108,112,107,114,106,120,99,101,105,115,119,99,112,117,112,90,93,97,107,103,94,108,117,107,109,103,106,96,113,111,86,100,103,119,96,126,102,112,98,109,100,97,116,99,107,109,114,117,113,100,107,107,94,99,103,102,106,109,110,102,122,87,103,112,105,105,115,115,96,113,95,105,97,96,113,104,112,100,104,104,92,86,105,103,102,114,104,124,97,107,104,105,112,98,96,135,82,110,108,106,118,101,100,100,104,110,117,87,106,105,102,106,88,121,83,97,114,99,103,105,109,99,89,112,96,114,105,115,95,109,108,114,113,136,86,89,107,101,97,102,105,98,96,112,113,107,105,100,106,104,96,87,117,99,103,100,103,105,86,101,102,97,99,110,104,106,104,101,108,106,109,108,110,97,108,100,112,106,116,98,107,94,96,102,101,101,108,97,96,111,103,108,113,101,96,105,109,112,108,99,105,101,106,133,94,105,112,120,109,98,98,107,107,100,98,119,102,101,87,108,98,118,106,100,110,127,105,113,111,83,97,95,97,100,94,107,89,100,116,99,102,105,120,101,105,95,88,104,110,101,104,101,105,113,99,98,118,114,99,108,104,111,108,99,93,113,104,72,110,105,111,101,105,105,95,106,111,110,108,103,100,110,97,100,101,94,112,92,97,101,110,103,99,103,107,106,110,99,96,118,106,104,125,106,99,96,106,113,106,109,109,113,121,98,103,108,106,101,104,99,110,109,100,108,110,100,100,99,94,101,103,100,104,116,102,98,111,110,117,107,101,102,117,103,100,100,125,108,114,102,90,94,113,101,103,87,99,76,105,109,111,116,112,96,120,94,101,101,96,106,97,103,88,120,102,105,88,108,110,95,104,98,112,92,107,103,110,99,104,100,106,108,96,109,102,98,101,105,109,98,102,106,105,111,108,106,111,107,107,113,89,109,105,112,112,96,106,108,102,102,104,93,101,117,109,104,127,101,108,102,108,104,107,99,106,108,102,104,95,127,95,96,96,99,104,122,108,87,106,104,103,102,116,104,95,96,111,104,106,107,123,101,111,92,104,106,128,110,136,108,108,117,102,110,103,104,125,111,93,102,104,112,101,110,106,107,104,105,92,104,118,96,94,110,105,106,108,93,95,105,96,108,100,97,93,104,103,111,111,105,111,116,107,96,98,107,102,109,91,108,105,99,109,107,104,100,98,110,115,109,106,101,104,93,72,99,113,113,98,106,105,110,126,106,105,105,96,109,86,116,102,110,104,100,95,112,111,106,97,109,103,101,112,102,120,98,106,103,124,114,111,111,107,108,98,109,98,112,110,100,105,106,108,104,98,96,116,111,98,110,104,115,111,127,109,112,108,107,112,91,117,108,110,104,106,109,101,101,91,119,106,109,108,102,95,111,102,96,110,106,103,101,101,112,105,121,127,109,100,107,100,99,121,108,109,116,101,112,108,106,110,101,118,95,115,107,109,107,124,95,91,101,104,105,124,107,108,125,114,102,104,100,99,98,104,115,110,117,100,99,119,95,106,99,114,108,101,104,115,102,107,113,105,117,108,92,115,116,112,115,103,114,106,104,106,102,112,102,96,101,111,96,107,118,94,108,111,102,105,117,101,114,105,104,102,99,98,101,123,103,101,112,101,86,97,105,94,103,106,105,102,100,111,106,111,101,105,109,107,106,98,107,102,104,114,100,111,107,109,86,105,105,101,101,98,105,107,109,115,107,94,98,108,103,103,110,103,108,109,104,104,109,105,106,98,110,94,103,107,103,99,116,88,110,107,100,97,104,100,100,106,131,84,113,109,109,107,95,102,115,100,113,108,106,112,96,105,95,98,97,103,104,96,99,101,117,105,105,97,109,111,113,126,108,116,100,103,102,109,90,112,106,100,100,107,112,100,115,103,117,97,121,96,98,102,117,104,96,101,102,115,96,115,110,100,102,87,98,104,96,101,102,106,99,120,104,107,109,121,98,104,91,103,94,112,99,112,94,109,115,106,103,101,105,106,105,103,113,102,93,98,104,100,101,100,103,104,109,105,98,95,111,116,103,113,106,106,102,94,107,100,109,106,106,106,112,103,97,101,107,114,99,106,118,98,101,93,100,88,102,96,98,98,92,104,115,107,102,109,99,115,97,108,93,82,105,99,106,100,91,83,107,111,105,113,103,107,133,116,103,107,93,111,106,103,102,103,100,90,77,105,104,107,128,106,94,90,126,110,94,105,111,111,117,112,102,108,117,99,113,108,100,100,105,104,98,104,113,107,108,112,108,103,116,98,104,108,113,108,102,104,107,117,121,104,109,96,98,107,103,97,108,100,101,81,115,97,114,92,103,108,94,98,103,105,102,105,106,146,100,85,107,100,107,101,110,113,96,102,110,105,102,111,108,102,103,107,107,108,99,119,108,101,100,102,115,104,100,99,111,106,112,102,82,112,103,109,113,110,111,109,108,95,106,101,98,105,120,100,105,100,101,104,107,102,115,104,104,107,101,105,108,111,95,109,95,104,102,115,110,106,102,109,108,111,104,101,108,105,102,110,115,107,109,101,92,102,98,108,111,104,108,110,98,113,96,101,103,104,106,122,86,114,97,106,100,99,106,100,102,96,108,109,91,105,112,106,107,108,102,112,110,116,102,106,106,99,116,99,104,110,103,99,111,99,98,112,107,108,115,105,99,118,109,96,110,109,102,107,118,104,106,109,100,121,106,103,94,96,99,101,99,108,104,104,114,91,98,113,101,103,102,104,103,99,108,102,88,100,105,101,95,99,109,101,126,112,106,106,120,111,100,109,116,97,114,110,102,97,102,102,112,106,108,121,103,101,92,97,98,104,99,123,109,108,117,106,103,105,102,95,97,103,102,108,106,109,105,95,117,104,104,100,117,114,112,104,99,96,107,101,83,107,100,107,114,103,109,95,106,96,109,90,107,110,108,102,108,101,109,104,117,100,105,113,114,102,94,112,104,100,109,100,104,105,98,109,91,103,96,117,105,102,100,110,101,108,108,104,108,80,99,102,121,101,122,97,100,100,99,107,95,95,102,100,104,110,111,105,105,113,81,104,103,100,102,106,105,98,105,108,103,104,111,83,101,107,101,126,108,113,103,104,114,109,108,96,92,112,99,99,113,101,121,103,104,112,93,110,98,93,98,98,123,103,107,108,116,110,111,107,102,113,100,104,98,113,112,110,101,103,107,97,108,97,113,101,99,101,109,101,97,113,110,113,109,96,115,95,99,93,111,116,91,107,108,103,107,114,97,95,111,95,108,100,103,102,102,124,107,102,97,98,94,107,114,100,107,96,119,111,104,91,92,100,100,98,102,111,103,102,106,105,110,105,118,92,104,113,105,100,89,110,105,102,93,104,107,98,131,124,108,104,111,104,105,99,100,102,78,97,115,111,106,106,113,107,108,107,102,113,87,102,112,105,112,101,103,86,118,105,107,103,109,94,105,107,112,102,110,101,95,100,101,99,109,105,100,97,108,104,100,97,94,79, +477.96323,113,118,94,101,101,106,105,98,105,108,98,105,96,111,113,103,106,121,100,99,100,89,84,109,105,98,103,112,106,113,113,97,96,108,99,98,109,105,108,90,117,103,108,111,103,99,117,101,114,114,102,105,104,100,113,93,114,95,117,95,94,103,100,95,125,113,91,100,114,101,117,105,99,113,98,118,91,104,103,102,106,101,101,90,105,99,90,107,111,109,112,104,95,95,96,102,133,96,102,96,95,112,101,83,108,110,98,122,99,100,100,113,111,101,81,124,101,105,118,107,100,96,109,104,108,100,108,117,110,103,114,99,94,94,106,101,116,106,111,96,102,95,105,103,116,106,113,100,106,107,99,103,95,88,99,109,106,107,104,101,108,105,99,117,112,105,107,105,118,108,92,109,97,101,102,92,93,105,102,109,105,113,106,104,109,100,98,102,105,106,94,95,104,116,95,111,109,88,104,105,97,112,109,108,104,112,103,100,109,103,102,113,104,106,99,109,104,113,103,106,110,114,96,104,92,111,102,98,96,106,98,110,87,101,114,101,106,98,99,111,108,110,117,104,107,99,88,95,112,108,95,105,92,98,107,109,105,110,103,98,95,107,107,102,100,131,116,95,117,111,102,100,102,105,100,108,83,112,91,108,129,105,98,101,95,113,99,96,107,104,104,97,105,110,109,94,110,110,102,103,118,92,104,101,99,122,118,108,101,110,94,97,81,105,94,113,113,103,115,110,109,101,125,111,109,104,103,94,113,109,110,99,111,114,117,71,73,112,114,110,111,111,100,107,114,108,102,106,110,102,97,96,103,100,118,105,96,95,99,109,105,105,100,105,115,107,104,126,94,118,120,113,114,115,107,93,100,104,112,101,109,111,113,101,96,111,106,107,112,103,103,113,98,100,96,98,103,103,103,105,97,106,98,96,96,100,101,110,105,113,72,107,100,108,104,98,102,108,108,103,100,100,108,108,102,95,91,106,100,107,105,103,101,100,107,116,102,78,107,109,114,101,103,100,94,116,104,104,108,110,106,78,82,121,107,114,106,115,113,107,104,105,110,104,119,104,99,104,108,103,103,98,112,101,108,104,106,113,107,97,107,111,111,119,107,109,112,93,98,100,99,114,104,134,104,107,107,106,99,102,109,101,99,109,118,107,94,104,104,113,112,109,115,143,107,110,89,107,112,98,111,109,99,107,103,110,107,105,109,122,100,107,109,104,104,115,89,90,100,110,105,108,115,98,107,101,103,105,112,108,139,113,102,119,82,99,97,107,114,97,103,113,107,104,97,107,105,104,105,124,99,105,107,104,108,105,94,95,117,108,109,99,114,109,99,115,102,104,100,104,104,116,104,109,102,106,104,103,99,101,105,116,118,107,97,97,95,96,97,117,114,95,106,114,106,91,103,114,106,103,112,108,99,97,114,103,104,103,102,102,99,102,100,67,112,117,118,106,107,111,99,105,107,111,118,90,110,119,113,96,110,114,113,110,96,105,105,105,114,107,105,105,108,105,100,107,104,108,109,85,106,101,103,110,89,99,121,113,101,108,120,107,114,110,101,103,100,102,101,106,108,118,92,105,117,100,119,103,100,106,102,106,109,109,110,111,101,116,78,95,110,110,99,108,102,101,111,113,101,97,111,114,105,116,108,107,104,111,111,99,110,118,96,129,95,103,87,109,105,100,102,86,104,95,102,111,116,111,119,110,106,109,109,101,120,113,103,108,106,112,102,99,113,105,111,114,98,119,105,91,108,102,113,112,104,103,99,115,107,100,111,109,107,99,92,100,103,114,117,112,103,113,114,122,105,114,115,106,101,115,113,106,102,114,114,113,103,103,98,108,124,101,108,108,106,104,127,115,112,104,110,99,102,102,109,111,109,87,115,107,109,101,99,113,99,96,75,106,122,99,109,116,106,106,95,97,71,103,106,100,106,92,124,110,112,109,103,108,101,98,115,97,116,91,104,95,108,109,108,94,112,108,107,102,103,106,99,113,103,112,97,111,112,110,98,103,110,114,105,100,111,108,104,108,109,98,101,93,108,111,111,109,113,101,106,103,102,124,93,105,115,104,103,117,101,106,108,110,104,101,108,100,101,103,99,106,92,98,102,100,100,108,106,110,100,106,103,104,105,108,104,105,107,103,101,101,102,111,113,109,93,106,133,109,89,102,101,103,95,95,103,119,100,102,116,105,103,109,118,102,110,100,105,102,91,102,101,100,102,120,102,95,112,117,117,114,90,114,101,102,105,106,112,95,95,90,104,112,80,105,104,93,106,109,99,101,99,104,104,102,108,105,105,95,97,95,107,102,107,103,111,104,107,105,108,100,109,109,96,100,108,101,115,106,111,103,107,97,95,103,106,110,106,106,103,107,97,95,99,102,111,106,107,80,108,107,99,117,116,103,98,101,112,114,89,113,97,109,100,100,96,108,90,114,110,104,96,104,115,108,104,99,91,111,104,113,97,108,113,110,99,108,100,105,95,104,105,96,104,101,111,94,109,107,108,111,101,105,112,91,93,106,104,112,105,103,108,103,100,121,117,107,106,120,99,102,94,99,103,110,119,116,106,100,116,105,115,115,101,106,109,104,101,109,110,108,98,101,105,119,104,109,105,106,115,113,108,110,109,107,100,109,98,93,103,123,101,93,92,96,109,113,115,103,90,91,101,100,105,104,98,108,110,111,108,105,115,91,102,111,104,113,87,104,104,102,104,120,104,111,107,109,105,104,111,135,104,105,109,106,98,112,114,108,105,106,104,101,101,105,113,106,102,87,100,110,108,109,107,95,106,106,88,105,90,100,107,103,109,105,105,113,108,86,107,134,102,116,112,108,100,96,109,99,105,92,105,98,110,130,95,105,102,102,103,107,105,110,94,107,107,95,114,113,106,100,118,122,104,110,114,101,83,87,108,95,109,100,113,110,115,119,95,105,106,119,103,108,94,100,110,109,99,104,99,111,112,99,104,107,103,104,102,107,107,113,108,107,99,98,110,107,124,114,103,111,115,99,89,94,109,101,105,113,104,113,108,114,110,106,101,106,108,102,99,113,101,101,105,98,108,112,106,98,100,108,115,101,104,95,104,103,119,109,109,91,119,96,108,103,118,111,116,117,116,113,97,107,111,103,107,100,109,105,105,105,111,110,100,108,103,111,98,104,104,112,106,101,107,109,107,116,105,118,111,116,105,116,96,113,107,98,98,101,107,100,99,100,100,99,96,103,94,108,91,99,108,102,109,105,101,109,123,115,111,99,115,104,110,95,104,103,114,95,103,107,111,94,99,102,115,96,106,108,103,118,101,112,99,102,95,113,107,96,109,120,100,95,98,101,106,98,99,106,109,117,102,107,113,107,111,103,110,102,100,104,109,100,111,113,108,102,115,95,110,106,102,105,103,102,104,100,106,120,87,114,118,104,100,108,87,103,96,108,106,114,101,116,102,98,115,109,91,109,117,109,106,106,113,103,105,106,114,116,102,111,107,111,109,109,99,96,107,83,105,107,105,105,101,92,114,110,109,115,123,103,102,104,94,110,117,97,108,95,101,129,111,117,109,117,117,92,100,105,103,107,103,106,105,106,123,91,111,102,105,109,105,98,99,103,100,116,104,116,112,91,105,109,108,106,109,98,81,100,102,112,109,94,111,101,106,99,92,107,99,101,105,111,99,99,104,106,95,100,99,98,106,112,118,103,102,103,112,103,107,90,100,117,107,109,103,101,101,95,100,108,112,100,95,104,106,97,107,111,116,108,108,116,116,108,101,100,102,102,102,113,104,106,116,102,105,117,106,98,104,103,103,108,97,101,105,107,115,114,103,118,121,100,88,111,98,113,111,98,105,93,119,105,94,105,106,108,98,103,103,106,108,115,101,95,107,105,105,106,117,102,103,101,106,102,105,97,104,102,107,96,106,113,96,104,100,92,111,102,105,112,108,106,98,95,99,107,103,104,100,106,103,100,98,114,103,105,102,107,108,103,106,109,101,99,70,106,91,99,117,107,98,113,101,108,109,99,121,98,107,112,119,98,106,119,112,111,98,88,98,121,105,99,73,109,110,105,116,97,108,105,101,108,94,104,108,92,102,122,116,91,95,100,110,106,106,96,106,104,99,109,95,112,91,102,119,70,113,107,112,94,111,99,102,92,110,105,110,95,107,111,116,96,104,98,102,117,112,119,99,121,105,116,101,110,100,111,111,110,106,107,104,105,104,120,115,98,94,99,95,104,105,116,100,112,98,95,88,100,108,99,87,103,97,112,101,124,110,108,92,107,107,97,108,125,102,109,121,108,110,112,100,105,102,110,107,102,104,99,107,113,111,97,96,107,117,106,107,102,105,94,104,107,108,114,106,114,93,109,106,112,112,103,100,106,103,105,110,110,106,111,111,103,94,103,91,91,104,106,98,94,106,108,100,99,98,106,107,98,119,103,83,98,104,102,105,116,108,103,105,87,100,102,106,102,103,106,104,106,109,110,102,107,102,106,103,110,117,121,105,88,96,105,113,103,102,90,80,103,96,105,110,94,108,97,106,111,115,106,108,102,99,93,99,105,100,102,110,101,111,98,105,104,100,105,95,106,105,105,98,108,107,89,93,117,106,110,110,88,107,102,99,98,104,101,101,107,95,106,88,92,109,102,100,100,98,98,104,97,105,112,109,108,99,93,105,87,112,100,106,110,100,111,91,101,103,106,112,102,93,113,96,95,94,99,102,98,121,101,109,98,99,97,93,108,106,104,108,100,105,84,118,118,95,100,113,105,98,85,106,104,100,105,101,105,99,132,106,102,98,113,99,115,100,103,107,87,101,111,105,108,110,106,109,100,108,110,102,108,96,102,103,106,107,120,115,113,95,101,130,106,105,104,110,101,104,92,109,113,111,102,102,111,102,96, +478.10373,100,82,110,94,105,100,89,92,92,97,98,75,90,105,99,97,111,95,96,92,104,87,91,108,103,97,105,117,100,121,90,102,104,103,75,111,95,95,103,106,92,102,99,104,95,104,99,110,100,114,87,102,88,95,95,84,117,88,100,89,112,99,106,94,102,104,108,105,108,101,90,105,96,106,91,99,128,92,114,105,107,102,90,110,96,83,99,109,105,101,90,114,101,104,110,98,101,90,91,92,98,93,93,96,101,94,117,97,98,102,85,97,101,99,102,102,97,93,98,94,99,90,99,101,105,104,114,90,111,110,92,104,103,100,93,99,97,93,90,82,115,100,108,99,103,91,109,88,103,90,105,97,111,95,96,97,99,102,74,112,97,89,98,99,107,92,100,100,106,95,100,102,102,112,105,103,109,103,109,108,104,98,94,107,100,91,99,87,101,96,95,103,98,105,103,100,96,99,95,105,83,105,96,97,107,104,98,93,107,111,90,112,98,103,106,107,110,102,107,87,74,88,108,99,102,99,106,112,99,118,110,91,126,112,104,99,100,103,99,96,93,99,110,93,90,118,97,103,111,102,96,95,100,98,96,104,101,116,93,116,110,96,106,95,101,105,108,106,100,100,91,101,105,111,113,87,100,100,111,100,96,104,112,106,98,71,91,104,120,103,99,104,107,96,108,92,100,120,115,108,107,110,87,112,106,110,110,100,90,110,90,108,98,106,88,101,101,114,108,87,100,103,95,104,94,105,114,103,105,104,91,107,112,91,106,105,113,91,83,119,104,104,104,94,98,104,99,102,99,99,101,102,109,101,94,95,104,107,104,88,100,109,102,96,117,105,98,105,103,104,101,97,98,114,100,102,111,93,116,107,108,103,98,91,98,98,110,101,102,92,98,88,99,105,110,94,102,104,110,113,108,97,101,107,100,97,103,99,99,90,100,78,109,109,105,87,100,99,108,102,101,105,113,87,97,95,103,101,95,106,102,103,112,104,98,106,93,108,115,107,110,99,104,100,92,102,97,106,98,101,105,100,104,112,113,84,104,106,84,100,86,101,107,99,105,105,101,102,103,109,100,108,104,102,78,78,113,106,107,107,75,100,116,97,110,106,113,94,78,94,100,101,112,82,92,108,90,100,95,110,97,86,109,107,99,103,86,94,114,103,105,95,90,110,106,110,112,104,97,98,103,92,105,112,108,99,111,103,111,107,95,106,87,91,102,103,91,100,104,98,102,101,88,112,100,98,97,100,114,109,98,124,108,108,95,108,99,103,92,102,100,107,96,100,92,99,104,112,101,94,97,116,113,98,95,103,102,101,107,94,107,90,98,94,108,110,113,85,112,106,105,99,77,95,113,112,96,108,95,100,108,102,99,108,102,106,104,107,117,113,103,99,97,118,101,95,92,104,101,101,97,100,108,97,108,103,85,109,90,110,106,101,100,109,87,101,106,100,105,112,105,105,112,105,95,95,96,105,106,103,111,104,105,113,115,102,105,107,112,96,94,115,99,93,101,101,105,95,100,107,106,117,100,101,95,91,96,107,96,110,99,106,105,114,101,102,109,107,103,106,101,105,110,129,120,111,94,100,102,91,108,86,102,106,103,106,113,109,101,95,110,103,105,105,101,99,106,87,109,100,116,101,105,107,103,92,106,103,121,110,109,100,101,98,95,97,117,95,99,105,105,100,95,88,98,109,98,102,106,97,103,112,103,105,109,94,100,102,99,105,107,99,91,102,101,101,104,108,93,96,103,98,94,109,85,95,92,114,97,102,111,109,108,111,97,109,99,108,94,97,100,102,106,108,110,106,102,102,90,100,109,93,92,105,114,94,106,101,104,109,117,92,129,97,94,116,130,96,109,94,97,104,93,110,106,105,108,100,105,100,106,96,111,107,101,97,109,98,100,97,107,105,116,95,83,98,102,107,100,99,128,96,106,74,110,95,88,110,101,102,106,96,101,100,105,99,94,125,104,110,103,96,101,103,102,91,113,101,100,71,105,104,111,95,109,105,94,120,96,116,113,97,99,102,101,91,90,102,102,109,107,96,108,95,104,99,106,117,107,103,106,92,122,109,120,110,114,114,108,106,106,111,100,111,108,112,108,102,106,99,94,107,118,110,104,104,100,94,106,101,108,100,107,98,102,97,103,100,88,100,101,91,100,96,100,90,98,106,92,110,106,109,94,85,106,109,97,100,88,103,108,101,95,108,113,103,107,101,105,99,87,100,103,98,76,106,98,95,105,87,98,105,111,106,102,92,101,102,103,99,102,96,87,95,96,98,101,101,92,89,90,102,96,113,99,113,97,99,102,105,96,101,103,90,101,111,100,97,105,97,101,90,115,103,93,75,89,97,105,90,105,106,101,101,98,97,100,96,96,98,113,101,104,108,89,95,98,94,111,101,103,113,94,108,97,107,88,85,99,90,99,100,99,101,100,106,96,103,85,103,106,95,91,104,109,105,108,98,109,104,129,113,109,103,96,121,113,105,113,101,102,108,99,95,99,116,103,103,114,103,81,106,97,96,114,84,112,115,108,100,105,100,128,99,109,76,112,111,117,97,107,100,103,103,108,102,103,102,104,98,94,106,99,104,111,106,104,110,116,87,109,95,103,99,94,107,121,100,108,109,106,102,125,108,102,112,116,102,112,98,109,104,103,106,104,100,106,93,94,105,104,98,105,100,98,112,108,102,116,108,102,99,110,101,103,113,102,112,118,99,112,105,102,106,106,108,98,104,103,105,110,95,102,99,112,111,103,94,101,106,105,111,95,102,105,119,100,106,106,111,106,121,100,109,95,101,111,95,95,109,106,103,128,106,97,105,111,109,105,116,99,115,93,113,102,112,110,106,96,124,138,87,99,115,101,103,107,99,90,98,113,107,111,113,117,102,113,105,104,94,121,100,113,110,106,115,111,92,77,112,115,107,100,87,100,90,104,99,96,108,97,104,106,115,100,118,110,113,112,94,91,106,104,105,107,119,107,102,107,104,121,112,96,112,114,112,111,117,110,94,105,106,107,107,103,109,105,105,94,99,119,104,113,103,119,114,101,105,107,106,105,115,108,97,95,102,106,131,109,109,105,96,110,114,118,117,103,106,101,104,75,95,117,111,107,91,90,100,101,103,99,90,111,105,106,91,120,77,99,108,109,105,110,109,101,101,100,95,126,106,113,97,114,103,97,125,99,95,95,103,103,114,103,97,106,110,102,106,104,100,101,101,108,108,96,94,114,106,102,87,112,88,107,114,105,86,103,103,108,113,112,115,103,117,104,98,102,107,115,109,105,101,107,101,104,98,95,105,88,101,113,118,103,111,106,95,114,118,95,101,101,103,94,92,111,105,108,103,102,107,108,113,111,104,106,109,106,105,98,103,112,114,105,113,112,110,105,114,109,98,101,107,113,118,109,112,102,116,105,99,94,98,100,99,105,99,110,100,100,109,113,105,107,102,111,104,113,109,110,90,99,101,108,100,108,99,112,99,114,107,111,101,103,102,98,107,104,98,103,106,110,101,116,106,114,86,104,104,95,94,96,97,99,103,112,100,94,106,106,109,102,127,110,108,110,109,76,105,97,95,99,93,110,101,110,98,126,110,99,107,100,96,99,112,102,87,103,108,111,119,109,110,110,107,100,109,101,100,116,118,112,103,95,114,102,102,109,100,107,107,105,126,111,110,100,95,110,107,106,111,104,99,99,113,115,104,101,106,94,109,107,110,108,109,129,104,109,117,118,103,108,104,102,102,104,105,115,108,99,109,107,98,99,114,105,74,105,107,96,106,109,135,105,103,92,113,111,107,102,106,116,121,93,109,105,91,107,109,98,114,97,109,101,106,107,103,120,120,98,90,102,103,98,103,111,113,95,100,99,98,98,99,102,106,80,95,129,105,105,109,98,105,113,90,98,109,100,97,106,112,114,97,103,105,103,110,109,101,109,101,100,109,105,110,99,116,83,98,98,117,114,114,112,107,131,103,106,112,96,113,116,100,91,105,112,109,103,96,107,109,103,100,113,120,109,101,105,112,97,118,115,106,107,102,116,109,100,92,112,98,114,97,99,108,101,99,73,109,117,97,105,112,113,117,106,102,111,105,104,110,102,105,105,110,105,106,113,100,103,105,98,101,106,111,112,108,95,95,89,91,100,102,110,91,121,102,100,112,100,99,119,112,82,109,107,106,104,102,99,113,113,119,120,115,106,106,99,106,111,102,106,108,108,113,106,99,110,108,100,99,104,99,120,108,102,111,96,102,104,101,94,110,108,107,106,103,94,106,91,80,83,98,96,95,99,107,88,94,104,104,111,111,99,102,114,109,99,104,107,95,111,96,100,104,107,102,106,102,109,101,98,101,116,104,100,106,106,92,113,103,96,109,91,102,95,113,115,99,104,101,97,96,111,105,97,112,110,108,98,121,108,113,120,108,99,102,104,112,107,114,114,109,109,103,108,104,100,105,106,104,100,94,93,112,108,111,101,91,108,99,104,107,99,104,112,102,97,80,97,95,98,99,98,103,102,118,103,104,106,112,101,106,98,109,102,105,111,101,94,106,103,99,105,98,99,121,104,101,131,102,98,95,103,117,111,99,114,110,104,98,103,102,106,107,109,95,113,103,99,104,104,97,98,100,108,107,102,121,106,104,96,95,103,123,97,112,95,105,98,98,99,93,105,105,104,106,103,104,95,106,108,115,121,99,90,104,103,99,95,104,104,111,102,110,106,107,105,102,96,104,113,112,110,87,93,96,77,113,113,104,90,104,110,104,111,113,105,94,100,131,100,97,109,97,132,108,109,108,103,100,98,100,104,97,99,109,105,117,83,106,107,113,102,103,106,97,105,121,112,103,107,97,102,106,99,105,75,111,98,104,116,95,105,94,102,106,87,82,99,95, +478.24426,77,88,94,113,93,94,117,110,105,126,109,100,93,100,104,85,109,100,113,101,109,96,110,100,88,101,96,114,106,105,117,97,93,102,93,103,104,95,114,114,108,106,98,99,112,108,103,112,98,106,105,109,97,107,107,109,105,100,101,92,114,92,123,107,104,96,108,110,94,104,105,96,107,117,99,99,100,111,108,103,107,97,92,100,105,100,99,101,104,91,103,95,119,100,107,114,99,93,115,101,112,91,95,95,110,98,85,109,95,119,110,112,97,88,108,107,95,100,106,112,96,109,107,114,98,107,107,105,105,107,94,100,103,106,103,107,114,99,117,105,99,104,100,101,102,98,89,105,107,100,100,97,105,94,80,104,121,84,97,109,106,107,103,112,102,105,83,105,118,94,98,120,93,97,101,98,99,116,99,93,108,96,102,114,113,102,107,97,109,106,107,112,109,98,111,88,92,110,102,100,108,110,104,106,102,105,96,102,119,104,94,103,103,114,116,104,105,96,108,123,110,102,117,99,91,113,106,118,106,106,110,97,111,96,110,101,106,106,113,109,98,95,112,114,96,111,102,97,98,110,100,104,99,110,95,99,96,94,97,102,108,103,100,99,98,109,107,100,76,56,107,90,102,99,106,75,91,109,116,97,109,97,103,105,107,108,96,103,106,110,98,103,99,94,128,106,114,110,103,112,99,105,102,116,87,95,102,97,105,106,94,104,104,124,110,104,100,108,107,101,109,111,108,107,97,119,99,105,97,113,107,108,99,97,103,100,111,102,97,114,99,99,103,97,114,103,97,106,95,109,103,111,101,106,110,107,106,93,108,101,105,103,105,105,96,100,113,101,133,102,106,108,102,91,119,105,106,98,101,108,108,108,104,80,97,96,106,104,105,100,115,104,93,110,95,94,103,103,107,111,101,107,107,106,105,99,111,103,108,105,95,96,102,102,98,97,106,94,110,101,82,111,90,107,105,100,108,109,98,104,97,109,116,99,115,105,101,106,109,104,107,99,108,113,101,109,101,109,107,121,99,117,106,105,121,106,102,108,97,105,99,119,110,102,109,98,104,101,117,105,103,102,107,104,103,105,103,108,109,108,100,99,116,105,99,113,98,101,102,101,103,113,107,106,102,105,100,110,105,106,99,104,108,108,97,109,86,113,111,95,110,95,115,106,100,106,103,103,110,98,107,108,105,116,104,113,112,108,104,111,90,105,80,114,101,100,107,98,95,95,101,110,96,106,112,108,108,96,87,114,105,105,102,101,103,103,103,100,102,100,95,108,107,121,101,96,104,101,104,109,81,93,104,113,86,111,106,109,109,97,95,104,106,92,99,96,103,106,105,105,106,110,102,111,107,114,109,108,108,93,105,103,99,103,101,109,108,106,103,116,105,104,99,98,103,103,124,102,99,105,107,103,108,104,110,105,106,104,114,125,104,113,99,109,99,87,102,129,103,100,104,108,109,113,103,99,74,116,100,110,97,114,107,99,102,112,107,139,106,100,97,99,98,104,110,108,110,102,120,115,91,99,100,101,107,113,104,104,117,91,110,113,101,90,91,83,98,103,79,110,102,97,114,113,101,90,104,108,105,106,98,102,108,100,95,108,108,114,109,109,99,115,105,103,97,99,96,104,99,100,111,97,107,114,102,91,89,96,97,107,107,95,106,100,105,96,93,104,92,102,111,94,102,104,98,108,109,104,95,89,107,92,95,103,103,116,111,105,107,95,101,104,100,109,89,107,106,108,100,107,110,98,120,98,94,104,99,99,108,103,95,104,113,124,106,106,117,110,96,102,115,96,103,102,107,99,104,102,109,116,92,99,98,105,102,117,116,104,130,107,99,97,110,122,106,105,103,107,114,107,111,103,103,114,117,112,108,104,109,99,101,112,103,96,113,98,101,102,109,101,91,114,110,109,105,101,100,88,106,98,102,105,99,105,103,105,115,99,96,90,92,104,98,111,114,92,101,104,111,94,102,105,112,109,115,111,104,88,109,107,92,104,106,101,121,113,98,114,105,111,113,114,102,99,95,110,97,89,119,97,120,107,117,107,110,109,87,98,100,104,108,107,107,108,105,118,91,98,101,104,105,106,108,116,104,99,99,102,106,106,97,110,111,110,105,102,103,107,117,110,111,105,104,104,108,111,105,100,109,104,112,121,105,112,107,98,100,103,104,95,108,105,107,99,103,99,96,112,106,91,98,102,100,94,103,105,113,102,99,102,101,75,98,104,101,111,94,97,97,93,100,105,118,87,100,94,94,105,113,136,107,113,101,109,111,89,105,114,107,87,91,117,105,113,100,105,116,111,87,105,111,106,109,104,114,106,112,112,94,94,106,108,105,93,112,96,120,104,117,99,105,110,91,99,92,112,100,105,89,102,108,101,105,99,94,100,96,112,105,104,103,123,97,110,108,108,108,92,102,103,98,109,107,109,106,99,113,114,96,98,109,112,111,100,106,109,108,102,112,98,112,117,102,94,104,106,97,97,99,96,100,105,100,108,98,113,116,81,103,111,99,126,105,110,93,104,106,119,78,108,113,101,99,104,99,103,109,112,116,106,101,96,115,106,104,100,110,105,97,102,111,102,103,111,115,106,110,100,107,109,102,100,109,107,98,105,103,96,106,104,102,100,102,107,107,113,81,108,94,109,94,94,106,116,106,98,103,98,116,98,102,110,115,105,110,100,116,103,106,102,90,92,98,98,91,111,103,104,98,121,109,104,127,102,105,91,110,101,94,95,113,106,99,107,107,111,106,112,103,101,105,106,95,95,110,114,107,98,104,111,104,99,97,116,108,102,116,109,112,112,101,117,107,108,104,100,105,87,99,103,106,95,105,108,96,93,96,106,109,127,100,97,110,86,116,100,104,96,94,104,112,101,108,113,103,97,100,115,102,110,107,108,110,102,102,104,94,103,108,91,97,95,95,111,98,109,113,98,94,113,95,101,116,114,100,93,108,109,107,101,105,113,68,108,97,110,91,109,100,105,102,109,89,102,115,109,94,103,110,93,105,105,109,124,107,113,102,107,98,110,112,95,106,99,103,108,115,95,105,101,83,102,107,91,113,102,105,111,106,104,110,100,106,100,105,100,106,105,103,97,108,101,99,105,100,100,95,85,105,100,100,94,97,100,97,97,116,102,98,95,93,108,106,106,99,99,98,119,101,93,96,108,101,103,125,115,103,104,98,101,116,103,109,99,105,98,99,105,113,104,109,103,108,122,84,100,106,95,98,100,103,124,95,109,108,104,98,102,113,108,105,92,110,104,90,93,113,117,100,109,101,102,103,99,105,96,108,91,99,108,104,108,100,112,96,102,98,111,114,103,102,99,92,109,94,109,106,109,81,93,98,108,115,102,106,103,116,106,100,94,107,91,102,104,110,107,105,116,104,99,86,110,111,76,99,99,103,105,115,115,110,97,105,110,109,95,108,100,109,98,102,112,92,70,105,105,99,98,108,98,100,91,114,91,99,108,113,106,108,105,104,102,100,99,104,105,100,101,99,102,107,106,104,105,98,103,102,118,104,98,98,115,102,107,100,98,98,129,92,109,103,105,102,101,109,107,105,110,101,99,98,91,97,95,100,94,104,102,107,104,101,103,110,96,107,87,109,97,94,115,105,110,113,79,103,107,101,110,116,104,99,101,121,105,97,101,109,105,108,95,103,118,123,109,95,101,102,94,104,108,98,105,98,97,100,98,98,85,107,113,100,103,96,100,114,103,98,97,103,99,103,101,105,97,108,98,99,100,112,103,104,105,105,102,99,109,94,96,106,103,124,94,100,109,91,93,111,103,112,107,107,100,113,111,100,103,105,106,109,83,95,106,101,125,105,99,98,89,102,93,102,106,83,93,108,105,96,100,100,103,100,105,89,94,97,87,103,84,109,94,112,107,91,110,101,105,90,104,114,95,95,98,96,99,100,107,106,107,113,73,97,100,92,119,109,98,101,101,98,111,109,104,94,109,109,85,98,93,104,103,99,86,106,111,106,100,105,113,112,110,112,111,113,95,104,103,106,102,126,94,99,125,106,94,103,109,104,101,102,101,106,104,99,96,99,108,109,102,102,90,117,109,113,112,95,102,111,106,102,103,98,110,96,103,104,108,104,100,99,101,93,96,97,105,131,102,98,92,103,105,71,103,102,99,109,101,99,106,121,103,105,98,111,103,115,94,108,89,100,108,94,100,107,103,111,101,105,108,106,115,109,99,106,103,126,99,111,100,112,117,95,92,106,109,95,96,88,104,103,103,74,92,107,98,90,97,108,88,98,92,98,93,113,95,103,99,106,104,102,109,108,103,98,99,109,106,94,104,116,112,106,96,100,98,105,98,103,101,99,100,115,103,115,105,103,115,99,96,110,106,101,101,98,103,95,104,108,107,105,88,91,102,110,100,101,101,94,107,110,96,94,109,106,95,108,132,91,107,95,110,109,110,106,100,109,98,101,105,110,98,112,103,102,102,108,92,91,105,118,103,93,90,104,106,108,108,94,113,89,105,102,104,99,93,93,89,92,113,123,97,103,94,93,109,99,97,95,103,84,89,102,107,104,92,98,106,103,98,98,111,103,95,97,105,105,106,105,99,95,101,98,107,98,116,97,106,108,109,102,112,108,90,104,102,109,112,111,113,109,98,136,94,94,100,101,99,93,106,92,100,92,91,111,102,98,111,102,81,100,111,96,106,115,95,96,108,94,103,95,99,88,109,106,103,108,106,112,96,95,106,96,102,94,101,100,97,99,111,100,109,105,108,106,96,103,107,103,103,85,96,104,104,103,95,105,100,97,109,102,105,105,106,92,97,105,95,90,107,92,101,103,100,98,102,114,110,116,105,105,93,106,86,103,96,106,109,105,95,94,112,105,102,109,98,101,91,95,97,93,98, +478.3848,95,95,99,92,102,106,94,94,105,111,102,91,108,99,95,96,99,96,101,111,111,105,94,102,106,92,102,91,96,102,104,105,105,104,110,101,98,95,80,97,113,91,104,108,110,109,105,110,95,104,96,109,105,106,105,91,101,100,99,94,96,109,102,97,97,104,102,106,103,99,104,100,99,100,99,99,109,102,85,104,106,129,102,97,104,94,91,90,102,96,109,89,113,105,104,104,102,100,101,97,100,98,96,105,104,103,116,109,91,103,101,101,109,101,110,98,96,105,94,100,97,109,105,120,108,93,86,102,102,106,97,106,101,98,102,104,99,102,100,107,105,111,98,103,87,96,112,102,84,99,102,101,99,95,97,80,100,94,104,103,83,102,117,95,105,99,107,80,94,95,96,111,99,101,105,115,101,109,99,98,101,99,93,108,107,96,97,104,114,97,98,98,95,103,97,103,98,97,103,102,87,89,99,98,85,91,112,124,104,103,98,102,98,98,103,99,99,106,103,99,103,113,100,86,102,95,101,101,102,105,110,105,106,105,116,98,111,103,95,99,96,102,116,112,104,97,95,103,115,112,93,108,100,117,95,112,95,133,105,99,98,73,99,100,97,83,105,97,91,97,99,101,112,106,103,122,96,101,110,73,96,96,112,114,86,103,89,98,102,91,103,117,100,106,105,107,113,111,106,99,105,105,99,106,103,103,109,97,100,112,90,108,106,110,104,115,79,96,93,92,97,90,102,114,97,120,96,97,113,109,104,98,98,92,94,95,120,105,100,99,94,96,110,115,105,99,104,108,103,104,107,100,95,105,115,95,112,107,101,107,104,102,104,95,86,108,107,121,97,95,102,105,94,108,103,117,98,103,104,97,110,102,110,105,107,97,98,106,88,109,114,94,105,126,105,111,104,103,100,108,90,100,98,90,107,94,112,104,102,73,100,97,109,108,106,95,96,94,102,103,103,114,130,109,100,98,102,98,104,93,96,104,95,95,100,104,98,109,101,112,118,108,113,91,107,109,106,98,104,99,104,102,106,101,117,99,116,102,108,114,101,100,104,102,100,112,108,87,102,100,105,94,107,104,93,92,105,93,94,108,97,108,107,100,97,98,97,101,112,82,106,100,103,97,99,99,102,108,100,109,114,103,115,99,98,108,120,93,92,96,107,108,104,99,120,98,98,109,108,102,98,104,111,104,101,102,91,96,100,99,101,95,106,106,99,91,95,106,99,102,93,110,100,104,106,105,107,114,103,110,104,99,110,93,88,100,95,103,91,98,104,106,102,113,96,102,96,108,109,102,108,76,98,100,94,113,105,105,107,89,117,93,103,96,100,103,112,110,104,102,115,110,111,100,116,104,101,100,111,109,100,107,102,116,105,105,103,94,105,101,97,120,107,101,87,106,107,108,98,109,102,97,105,108,102,104,115,106,115,99,96,107,95,106,102,93,99,91,106,113,111,99,90,99,108,103,95,97,110,110,102,103,111,110,99,106,107,92,114,98,119,103,103,102,99,98,111,104,88,100,106,115,106,110,98,106,102,101,101,99,98,111,106,93,107,101,94,102,99,101,111,99,95,102,116,99,97,104,99,108,95,104,96,106,99,111,113,111,95,97,110,98,98,110,103,106,101,105,99,109,97,108,110,113,99,108,109,99,98,117,110,99,96,105,95,107,113,105,100,109,112,97,107,101,120,105,103,109,97,101,96,100,100,81,105,103,115,97,109,99,107,109,118,105,96,100,101,118,100,107,117,97,109,99,114,104,92,96,108,103,109,105,86,110,113,97,99,108,109,96,105,104,101,111,94,109,99,115,101,107,136,108,101,105,106,96,110,106,108,112,108,98,99,109,107,113,105,103,97,97,98,118,111,96,84,105,102,108,100,101,117,98,117,105,92,108,91,114,107,104,98,115,115,93,108,83,107,106,90,95,100,100,109,103,103,106,106,106,113,109,91,107,102,109,100,102,105,116,103,122,108,107,106,113,94,110,105,99,98,98,103,108,95,104,102,105,106,110,97,91,106,109,100,110,104,98,101,97,108,95,110,102,99,114,97,104,90,95,97,108,87,105,96,87,112,110,107,103,109,107,103,111,96,104,111,100,102,106,111,111,103,99,105,95,106,99,99,102,102,106,109,99,110,103,91,113,103,103,99,109,109,109,109,101,103,120,113,107,113,102,102,119,105,98,111,104,100,114,110,107,98,99,97,100,106,101,106,97,98,103,106,109,101,104,95,103,81,112,98,101,106,100,104,92,102,95,102,104,106,104,100,110,101,102,106,101,104,105,101,109,103,118,101,109,105,96,98,110,96,105,105,113,107,102,111,106,94,95,104,110,109,99,94,110,109,92,93,103,105,102,93,110,104,122,98,109,122,110,95,92,98,91,90,101,92,112,95,111,102,91,110,111,112,109,104,103,102,97,107,96,98,111,104,112,93,107,88,100,107,99,106,108,91,107,91,102,100,99,112,109,110,104,93,111,91,92,106,107,82,108,108,97,91,104,87,106,101,77,103,102,109,100,102,101,84,101,108,107,103,100,108,110,112,76,109,102,106,109,101,111,109,102,105,101,113,95,102,103,103,105,103,104,116,108,104,100,105,105,100,116,107,108,106,97,97,101,96,97,102,100,106,102,105,105,101,99,101,99,109,109,105,106,110,109,95,101,108,100,100,109,103,91,93,100,113,97,110,105,116,110,106,104,100,112,93,104,103,104,96,104,122,109,101,100,102,104,110,113,105,106,100,107,92,112,105,115,101,110,103,109,102,125,102,123,102,99,102,110,112,101,102,109,100,107,91,109,106,103,99,111,111,103,114,124,96,107,102,115,105,107,102,110,88,104,99,103,95,106,96,108,100,106,110,102,124,102,102,101,98,99,111,99,105,112,111,107,94,101,99,109,103,102,113,94,83,73,107,104,95,112,106,107,111,96,102,106,112,104,97,101,108,106,100,109,85,93,102,102,102,108,107,94,102,86,97,109,74,96,88,101,109,91,85,117,115,100,119,103,99,113,94,104,94,98,107,97,96,100,105,99,116,107,108,114,96,105,111,96,103,109,108,110,93,93,102,98,96,106,78,88,102,102,118,90,106,110,108,95,105,112,125,105,107,106,108,115,97,106,116,109,110,95,102,100,103,113,100,91,95,101,103,99,112,100,97,105,107,101,106,95,114,113,107,117,85,103,109,94,109,96,96,109,107,107,97,87,108,110,102,100,83,102,112,98,109,95,105,105,110,98,102,126,113,129,112,104,104,107,97,108,106,103,105,97,100,106,109,104,106,101,101,97,109,110,97,116,98,107,109,101,100,101,106,93,102,105,96,99,96,102,94,102,96,98,103,99,100,103,95,100,98,114,105,98,99,115,102,102,88,102,95,94,108,116,97,98,104,104,99,104,91,109,99,104,111,106,102,106,110,92,105,98,99,97,94,100,110,106,96,107,107,104,110,104,94,109,92,104,110,104,103,103,112,91,101,101,121,112,103,103,103,87,109,105,103,113,105,102,107,96,109,80,113,104,103,103,97,107,99,107,106,97,105,95,128,113,101,108,97,116,112,90,101,102,102,99,85,101,102,100,108,109,106,96,103,100,109,104,106,120,92,109,119,106,106,104,107,98,100,107,96,113,103,110,96,106,102,105,97,101,99,109,102,105,109,100,110,94,110,94,99,105,99,98,106,103,100,112,104,98,83,104,83,108,117,98,109,98,105,105,102,103,106,106,92,103,94,104,109,99,97,98,110,95,109,113,108,114,102,108,89,104,105,99,99,109,100,105,101,101,108,97,106,101,96,86,112,106,103,102,100,95,116,94,92,113,103,93,100,110,109,100,105,98,105,107,108,86,109,105,95,107,113,110,104,125,101,101,100,102,101,103,101,107,98,87,104,100,100,93,100,96,113,92,109,104,98,108,110,108,90,95,90,99,99,98,99,121,104,98,105,101,101,108,104,100,104,103,104,113,108,108,108,101,106,102,108,106,93,101,104,108,106,101,89,100,101,96,108,109,109,102,92,108,111,100,109,94,109,98,110,100,108,97,105,101,97,96,98,98,109,102,117,90,103,116,90,100,104,100,105,108,110,108,98,105,104,100,103,98,121,124,109,115,95,109,95,107,97,111,94,93,109,100,102,99,107,107,115,101,101,106,117,92,97,114,108,115,94,96,107,104,100,93,110,108,101,99,104,108,114,106,100,93,100,100,106,102,91,108,100,97,100,98,95,108,109,106,102,104,97,100,92,109,109,105,90,95,99,96,102,106,108,102,110,104,105,95,88,99,95,112,107,93,118,106,98,100,92,112,115,106,116,104,88,112,103,106,107,96,101,94,107,105,102,95,108,109,112,98,101,117,111,96,99,100,102,108,112,96,112,103,109,112,102,87,95,103,110,104,93,99,109,91,112,96,98,102,105,90,99,112,107,104,113,96,112,109,99,105,109,101,90,108,97,113,101,95,109,113,110,90,106,99,98,92,103,97,105,106,92,105,104,104,121,100,93,103,91,101,97,99,90,97,107,99,120,110,104,103,120,92,99,102,103,95,103,91,96,103,117,120,105,98,107,112,117,98,98,103,100,98,113,98,105,94,110,93,98,95,107,102,112,98,116,103,92,88,109,96,100,107,106,95,95,106,117,105,98,98,103,97,104,112,95,91,103,93,110,99,97,89,115,105,114,106,99,105,103,100,109,101,102,104,80,96,96,99,92,104,97,110,96,98,98,110,76,107,98,107,101,103,104,98,102,100,112,105,104,92,103,104,92,96,111,88,100,106,96,97,95,99,106,93,105,99,113,98,100,87,113,97,113,96,103,109,103,99,105,100,107,110,113,112,102,102,112,102,99,99,106,94,91,117,111,94,77,116,93,106,107,101,94,106,91,97,99,98,107,105, +478.52533,113,104,108,107,98,86,99,114,120,92,100,107,97,99,106,94,109,94,109,94,105,95,90,98,96,109,92,95,106,103,107,101,101,102,113,109,108,109,99,99,91,94,105,93,108,110,89,99,96,100,101,96,93,103,87,99,105,102,101,97,99,126,106,102,104,103,102,101,87,105,102,105,113,103,105,112,101,98,101,90,93,106,97,104,99,97,99,93,101,102,107,90,94,87,122,91,95,98,104,94,100,102,108,91,111,99,101,92,102,103,101,99,105,98,97,104,117,92,93,102,102,101,96,99,106,110,93,93,114,115,96,104,93,98,109,97,101,105,113,98,92,105,101,103,109,102,113,95,95,105,105,99,113,104,97,105,97,99,100,106,112,103,107,106,106,108,105,95,105,100,101,99,99,97,93,95,100,100,101,105,110,98,96,104,100,121,86,97,99,99,85,97,89,107,102,110,94,100,87,94,100,102,105,103,73,106,104,93,105,110,103,105,101,97,109,104,95,114,138,95,105,99,93,91,104,108,106,107,102,101,114,112,95,116,95,107,103,102,93,97,106,101,98,71,100,109,113,106,108,94,83,109,100,100,106,91,100,118,90,112,100,105,106,98,93,100,113,105,104,99,107,105,106,91,110,112,105,119,102,103,91,110,92,104,100,102,90,102,104,101,99,98,96,103,109,102,120,131,102,101,97,98,99,114,113,112,100,98,99,104,90,110,102,79,97,105,112,101,109,96,104,100,95,112,103,96,100,91,104,101,112,93,106,100,104,122,102,99,97,103,111,82,101,96,95,118,101,100,108,93,94,91,104,94,107,104,91,106,98,113,98,100,98,98,105,115,104,99,96,107,106,106,98,97,103,95,109,103,105,131,117,99,97,103,99,99,93,100,117,99,114,100,109,113,100,109,97,99,110,113,97,88,105,98,108,99,104,103,108,101,104,104,98,102,104,92,100,110,105,92,115,100,100,110,101,96,100,96,100,109,100,110,105,81,97,112,111,107,118,97,100,110,104,101,106,100,104,103,103,100,95,97,105,100,105,108,105,111,104,94,92,105,103,110,111,113,96,92,116,107,100,103,104,108,94,93,84,109,102,109,102,98,101,128,100,100,98,105,109,98,111,112,106,101,102,104,94,91,103,102,107,114,106,106,90,99,117,74,107,105,102,105,96,102,104,105,99,103,103,96,113,95,95,105,106,104,95,113,105,105,109,108,90,101,106,99,95,103,92,104,90,109,96,105,107,109,106,104,97,104,97,113,117,108,103,109,99,98,106,100,104,103,100,99,91,97,111,118,95,90,95,88,105,108,108,104,92,108,101,108,96,104,104,94,89,98,98,102,97,95,103,88,101,105,107,104,112,100,104,99,86,93,97,105,107,101,100,101,96,104,101,107,99,105,104,125,101,101,105,102,102,103,104,101,113,111,96,106,104,101,102,105,106,101,106,95,98,101,111,107,100,102,98,110,98,96,97,115,104,117,99,99,98,100,113,106,109,108,99,104,109,105,102,110,108,102,110,102,100,104,99,139,103,96,103,94,105,120,125,105,104,100,107,99,100,95,91,105,100,80,107,98,103,106,98,100,103,93,97,102,109,104,98,111,101,97,94,108,102,96,102,114,97,110,115,95,104,98,93,93,103,104,96,104,103,105,107,95,93,117,106,96,99,100,92,96,99,94,113,101,107,105,101,107,105,93,108,123,105,99,107,106,104,99,115,105,96,99,104,96,99,95,91,101,102,106,108,96,105,101,104,89,111,98,100,100,106,98,99,99,98,91,106,110,108,101,106,109,109,99,108,99,99,117,100,123,109,100,106,104,113,100,88,110,106,107,104,113,99,103,104,114,112,107,103,98,116,107,100,98,113,104,111,100,99,106,104,105,100,104,91,101,103,111,102,105,100,100,109,107,106,106,109,94,103,105,104,93,111,97,98,109,100,108,98,108,107,94,97,110,97,108,95,102,91,106,103,92,97,104,113,92,98,106,99,102,97,98,98,99,103,109,108,101,91,100,97,106,100,101,113,102,74,109,101,96,110,101,104,108,93,114,108,96,104,95,98,98,99,105,103,93,101,102,102,101,106,113,94,107,115,87,108,103,126,118,101,96,101,99,98,111,90,97,103,95,88,90,93,109,104,116,113,98,92,103,107,99,97,98,104,73,108,90,98,91,91,104,103,102,107,97,101,93,108,101,96,88,105,102,102,105,139,105,73,102,99,91,109,105,107,103,104,108,111,121,88,101,115,100,104,110,100,85,103,100,94,93,84,100,112,105,112,91,107,95,98,91,96,106,108,109,105,105,98,98,97,110,113,123,101,100,96,101,118,80,102,96,93,100,101,91,102,112,95,87,116,106,101,93,99,102,103,105,92,105,96,106,106,105,105,101,111,104,97,104,98,92,98,100,98,108,102,95,102,96,101,108,100,91,100,100,99,101,91,96,97,94,109,98,107,107,100,117,103,107,106,105,124,106,100,105,97,102,99,67,93,106,112,131,97,100,104,98,104,107,99,105,120,105,106,116,113,112,104,98,111,104,101,80,97,110,92,102,111,105,94,115,106,102,110,109,106,104,110,107,98,106,109,121,102,102,100,103,92,107,104,108,107,110,115,93,102,103,114,103,95,98,103,98,86,102,104,91,99,117,103,103,117,107,103,105,110,102,100,82,109,99,111,109,111,96,96,116,108,108,102,96,112,105,103,96,108,105,106,101,99,101,101,106,102,110,110,99,108,99,116,112,104,102,100,104,116,109,99,115,120,100,105,102,114,113,113,105,95,109,96,121,102,93,92,107,104,113,99,98,113,109,102,109,91,104,113,112,102,101,120,107,98,104,107,109,109,105,84,107,103,114,109,99,106,107,105,106,94,101,103,102,110,98,112,109,106,113,106,96,106,121,111,112,106,104,112,110,110,111,104,88,100,96,100,102,108,103,130,106,109,103,102,116,103,101,105,136,108,100,132,106,98,102,117,100,99,104,106,106,106,117,103,110,109,102,107,110,121,107,110,105,103,109,117,80,102,130,144,109,96,107,108,107,118,109,112,116,116,99,105,92,107,100,104,108,98,108,94,105,101,101,96,100,113,118,104,102,113,99,109,103,92,121,109,102,102,96,106,97,100,102,107,101,104,104,100,94,102,93,102,100,105,116,107,105,111,100,83,106,120,93,125,109,104,98,102,104,95,99,106,99,90,113,103,112,108,105,102,99,105,109,85,108,105,98,111,108,99,105,94,108,121,84,109,95,110,100,96,97,98,117,108,102,113,112,124,93,104,109,104,114,95,98,100,98,104,107,109,100,100,101,95,111,109,102,100,119,105,99,99,91,118,104,108,109,109,105,114,99,103,116,110,102,97,102,112,106,111,108,102,113,119,108,113,104,105,92,104,105,97,99,107,112,84,101,107,106,92,113,111,106,103,104,92,99,106,106,99,111,108,109,106,111,116,105,97,110,98,111,105,99,99,116,108,94,105,96,106,110,120,87,104,107,107,92,98,116,102,94,105,110,113,103,116,96,116,117,103,109,108,115,107,112,98,93,107,105,130,113,104,91,102,110,115,91,103,110,98,107,103,108,112,100,108,100,100,110,109,101,100,109,105,102,97,116,120,106,96,107,108,112,112,105,112,113,103,91,108,102,108,99,94,106,113,95,104,117,98,115,102,95,105,95,103,107,121,112,99,102,97,112,105,113,102,99,104,112,105,110,102,105,106,106,112,99,110,93,103,113,107,113,108,88,106,93,91,98,105,107,102,68,111,104,104,105,99,109,104,102,96,102,112,102,104,89,93,99,107,97,97,105,100,97,114,102,106,110,106,102,105,99,101,115,102,104,104,104,108,105,103,87,102,114,100,100,107,105,104,100,107,112,101,96,99,94,96,112,107,117,105,101,110,108,95,93,99,94,98,107,124,98,121,97,111,107,109,99,97,108,110,106,122,138,103,87,97,117,107,113,116,105,105,109,99,108,112,98,115,106,101,111,98,95,109,107,106,108,119,102,106,104,106,121,102,100,100,103,98,106,111,101,116,102,105,110,99,108,100,87,107,99,112,104,103,107,111,99,96,108,101,101,94,104,97,106,104,117,106,115,109,111,103,109,102,105,114,107,100,106,111,92,99,89,104,97,109,117,109,102,105,103,107,102,106,96,108,103,106,109,106,102,103,114,97,104,117,99,98,98,102,107,113,102,102,106,104,116,105,119,100,83,102,104,95,97,111,84,92,109,103,95,109,99,93,102,103,99,96,98,100,106,103,112,121,104,106,98,103,103,98,107,91,107,103,102,96,103,109,95,100,88,108,103,102,102,115,101,108,106,107,106,107,119,91,99,94,98,114,99,111,102,99,106,101,105,109,113,116,103,104,100,104,90,112,94,114,120,98,101,112,108,102,99,110,96,98,101,103,103,93,107,103,98,119,100,107,99,110,121,98,97,123,116,96,103,100,100,95,94,100,121,109,106,103,106,95,109,108,97,96,102,101,97,97,98,106,109,116,109,118,110,114,92,98,111,100,103,105,98,110,114,105,103,107,97,98,92,105,100,98,88,103,98,105,81,112,89,110,114,111,112,84,95,104,98,108,94,96,114,103,108,104,92,115,114,104,89,96,98,109,101,106,108,102,107,98,100,105,98,105,112,102,100,103,97,105,107,92,102,107,96,94,92,110,91,105,112,99,107,98,114,96,137,108,98,112,110,106,91,104,101,95,116,98,105,95,99,107,113,105,107,108,106,104,105,72,104,106,106,108,104,99,108,109,118,82,98,106,98,106,105,103,106,102,109,105,104,110,105,105,104,102,96,99,94,101,99,101,125,106,102,85,107,99,105,100,97,86,116,91,101,99,109,117,95,105,77,100,110,107,96,98,69,96,99,95,102,106,102,103,89,93,111, +478.66586,109,88,96,98,106,106,99,102,101,100,94,100,91,105,108,109,89,119,95,103,109,100,113,110,94,103,106,99,105,103,78,108,107,115,109,100,98,109,102,99,102,100,91,114,98,104,91,106,124,109,106,97,96,95,100,101,99,107,108,71,102,107,106,89,105,94,83,87,96,97,97,102,109,103,96,112,108,102,107,109,94,96,123,101,102,95,89,107,105,115,103,108,97,89,93,97,109,91,105,117,101,110,113,104,102,100,90,119,88,97,100,112,104,97,95,110,114,104,109,111,113,103,107,118,95,116,103,97,110,101,107,102,104,102,97,102,112,111,98,96,109,113,109,97,99,107,114,95,102,97,109,91,103,95,95,102,111,105,117,111,92,95,96,100,105,116,101,111,117,93,109,105,97,88,103,97,120,108,100,95,104,111,104,105,108,94,100,86,103,100,73,103,109,112,113,104,89,105,104,94,103,97,108,109,92,100,121,110,102,107,103,113,99,95,85,100,100,102,99,109,96,120,102,107,98,104,104,100,98,104,94,100,85,109,94,95,104,102,95,101,95,99,109,113,101,91,95,111,107,105,104,110,103,100,108,95,95,101,96,103,110,103,104,101,107,92,96,107,96,100,101,95,97,105,124,106,90,108,106,96,110,105,111,107,102,100,100,106,102,104,100,105,97,97,108,96,103,101,71,113,112,97,108,110,88,108,104,109,102,106,94,125,103,115,102,112,99,86,111,105,101,114,99,102,99,110,106,77,81,104,111,95,110,105,98,107,99,97,98,117,101,103,94,91,103,103,106,109,108,110,96,103,100,116,104,95,110,115,104,104,93,102,95,95,103,110,105,101,100,109,110,104,109,98,104,95,105,88,94,112,103,71,117,108,104,92,103,110,105,100,118,106,99,98,97,105,94,124,99,99,86,99,105,98,99,95,77,99,110,85,95,95,111,106,114,95,90,118,87,99,104,102,94,107,106,94,106,106,109,99,87,105,108,92,110,109,109,100,104,110,109,130,100,116,108,96,98,93,98,103,78,91,97,109,108,107,107,102,99,106,101,98,110,106,106,106,103,109,106,86,107,106,108,107,99,90,101,108,106,110,112,106,108,99,111,98,105,69,98,105,103,117,99,104,95,107,106,106,110,100,109,111,95,112,98,110,94,105,102,109,108,110,101,111,105,119,109,100,94,91,114,102,101,109,101,102,112,110,98,96,95,107,103,105,104,105,112,105,120,106,107,109,97,102,106,97,119,98,112,78,102,111,133,108,110,102,124,107,99,94,109,103,90,108,102,103,106,107,100,98,94,87,83,109,110,96,113,101,109,108,96,96,99,97,105,104,117,114,102,105,96,106,109,110,107,102,100,85,96,107,113,108,91,102,119,96,99,107,100,104,99,87,101,95,104,93,101,98,117,104,106,107,99,102,101,98,115,98,103,112,111,97,95,105,102,120,104,100,109,109,100,96,98,87,89,96,104,95,94,105,109,105,100,90,108,103,105,101,105,106,96,105,104,102,104,110,95,95,103,105,113,111,95,110,113,102,105,100,100,100,102,103,117,100,103,100,107,91,99,105,117,100,113,115,101,96,104,106,105,99,100,105,101,119,92,101,113,100,92,97,114,102,99,94,104,109,95,105,108,104,92,93,109,113,107,118,116,105,110,105,102,99,106,105,108,112,95,113,106,97,110,107,104,108,98,96,113,104,99,112,110,101,109,100,91,119,117,104,97,95,104,103,101,92,117,109,99,110,110,112,100,100,95,108,109,107,103,111,110,101,112,89,110,113,100,100,107,102,100,118,116,114,119,111,94,111,101,99,96,95,106,91,105,101,98,106,119,113,110,106,94,101,100,103,100,105,108,108,104,96,103,107,112,107,114,112,98,98,103,115,107,103,120,101,105,102,96,107,96,109,86,104,109,109,102,104,79,113,95,112,103,98,93,115,103,107,101,102,103,113,93,116,113,109,106,106,100,97,100,98,103,107,113,112,93,106,100,96,98,107,118,98,107,106,107,109,99,110,109,100,105,96,95,103,110,102,104,112,111,104,101,110,108,106,105,106,94,95,96,110,107,100,102,104,105,93,99,105,109,89,108,112,111,102,100,105,111,106,112,105,96,108,96,100,111,100,103,94,105,109,109,96,103,97,104,92,100,100,104,108,100,111,105,104,103,117,107,113,105,106,113,104,100,99,108,94,106,98,101,103,102,112,104,102,101,105,99,89,95,104,105,109,100,107,113,97,131,114,103,104,114,107,101,106,97,87,94,98,110,105,111,121,95,99,117,107,109,104,93,100,96,101,112,104,109,101,101,98,98,99,99,103,100,109,96,106,110,111,102,82,104,105,114,102,103,102,101,128,96,111,112,110,106,93,98,109,98,102,91,98,99,101,107,101,101,95,100,120,126,112,106,83,103,107,91,91,103,108,104,58,102,111,102,94,100,108,102,75,100,107,114,117,104,97,122,118,98,100,107,101,105,94,85,96,104,94,101,109,108,107,110,107,111,121,103,107,108,91,101,96,106,105,99,108,100,104,117,109,97,94,107,102,104,108,105,113,106,129,101,97,104,124,108,111,106,107,101,112,95,108,117,109,104,114,102,102,97,92,102,102,111,107,102,118,108,113,95,104,99,109,111,109,112,109,108,111,104,96,109,101,101,106,114,104,111,111,110,106,110,117,115,104,103,105,105,119,113,104,103,111,98,109,106,103,111,98,101,95,106,105,108,112,100,98,106,117,103,101,115,103,106,113,102,87,112,106,111,96,105,109,106,113,99,106,106,103,95,107,102,103,101,105,105,112,104,105,107,105,107,102,109,93,112,100,101,113,114,117,104,106,105,106,98,103,104,100,108,109,106,107,109,113,107,98,111,105,101,107,95,108,113,111,108,126,104,101,112,101,93,116,108,106,109,114,103,110,105,98,116,114,102,101,101,102,105,98,106,99,99,108,106,110,90,112,103,95,105,106,98,114,104,106,95,101,103,104,96,105,101,92,97,95,98,112,109,102,102,115,105,101,102,102,110,102,112,110,97,95,104,108,104,112,107,102,106,105,108,101,108,109,99,106,92,107,87,99,94,113,101,103,106,114,111,110,117,100,98,107,107,110,106,92,120,114,103,102,103,114,107,74,98,99,107,110,113,100,105,107,100,100,105,107,106,106,108,100,109,104,102,103,115,116,109,121,91,97,112,95,109,95,106,108,105,116,114,104,102,88,91,105,95,107,99,106,96,115,107,108,106,98,102,104,108,103,125,113,103,120,100,107,103,109,97,115,101,107,106,95,111,96,101,107,100,92,103,96,102,116,104,109,98,124,103,103,109,104,102,120,108,95,110,117,97,103,97,93,102,103,103,97,87,114,105,99,96,102,105,101,113,103,112,106,107,110,88,105,94,109,114,95,102,104,120,103,109,101,122,111,99,117,105,99,104,84,101,98,106,102,102,105,105,103,106,99,102,105,105,110,107,99,109,100,111,85,104,92,107,103,117,116,111,107,98,108,109,106,101,106,135,106,112,104,100,99,100,100,108,108,108,113,90,104,121,100,105,101,107,95,96,106,114,101,107,107,102,97,111,92,106,99,96,109,102,105,105,109,117,98,110,112,108,105,105,106,109,111,125,101,90,108,109,109,112,103,90,109,115,104,107,116,111,96,103,109,97,106,95,99,103,87,108,108,104,114,107,107,109,107,103,113,95,105,107,107,105,103,110,101,115,100,102,111,110,99,101,92,98,106,101,91,95,99,87,89,109,109,107,91,103,107,107,115,109,80,112,108,105,101,107,96,106,100,90,104,114,105,107,83,96,103,102,103,104,102,106,113,107,108,83,108,88,102,104,106,108,108,98,104,105,96,93,113,109,110,102,113,105,103,98,113,109,105,97,121,105,73,102,95,94,104,102,97,105,85,116,118,99,103,107,109,109,115,102,109,109,110,108,136,87,110,113,101,97,106,98,103,106,104,103,93,99,98,102,111,84,113,110,98,103,104,99,106,103,123,100,101,112,105,95,116,108,113,105,98,120,99,109,95,117,95,110,105,111,107,112,112,130,74,122,106,115,102,105,100,90,100,116,113,101,109,100,107,98,102,114,117,110,106,107,109,106,107,105,123,112,106,99,100,104,101,97,107,109,105,105,120,100,101,108,108,69,110,104,98,108,108,110,113,109,102,113,105,110,95,118,102,115,107,106,103,103,110,99,115,106,101,90,106,100,107,105,108,99,101,81,103,120,118,106,91,74,101,110,109,109,97,105,89,104,117,113,126,115,102,107,95,104,96,75,112,99,107,97,104,119,96,113,100,102,114,106,114,119,108,117,99,116,90,105,102,96,109,104,103,110,97,100,97,102,102,99,109,112,117,105,109,102,118,104,101,104,104,93,98,106,103,104,112,107,107,106,103,105,100,115,98,94,97,113,91,107,107,89,105,92,101,80,93,116,112,104,100,113,99,111,101,108,112,105,98,103,94,91,116,106,97,101,96,112,101,101,92,99,117,106,102,100,96,99,112,96,92,113,99,105,95,92,107,114,101,95,98,96,101,76,103,112,108,110,108,113,112,112,105,109,107,94,101,94,108,101,109,106,106,104,104,107,104,106,100,100,109,103,106,99,109,116,104,105,101,98,108,103,107,100,103,109,101,114,129,103,111,111,114,111,103,120,99,98,96,100,103,110,113,107,111,92,123,96,105,119,111,106,99,105,101,105,100,101,110,110,115,101,109,99,104,107,116,106,109,112,111,107,95,102,95,107,105,102,109,104,117,105,86,117,108,107,119,112,111,103,88,103,96,109,104,97,102,103,88,117,99,108,112,85,100,105,112,109,123,113,111,104,92,95,114,92,106,112,100,113,117,88,97,113,82,102,99,108,96,104,107,109,109,99,99,96,110,105,100, +478.8064,95,97,85,90,112,99,108,103,100,92,92,92,107,103,113,94,92,109,92,101,97,89,101,108,91,112,103,102,93,101,92,100,94,89,103,95,106,92,105,117,109,109,106,93,103,98,91,102,99,99,108,104,110,102,106,100,105,93,108,102,90,114,97,96,97,112,117,95,100,98,110,91,95,90,99,102,96,109,110,92,102,105,101,86,99,97,113,101,97,103,100,100,103,94,117,111,110,100,98,91,97,103,133,101,97,103,128,103,107,103,104,91,108,100,71,108,107,95,95,103,110,107,99,113,112,107,109,101,105,104,106,100,108,93,100,96,102,96,99,111,92,117,99,101,97,107,117,100,92,92,111,110,103,91,95,105,94,95,113,101,102,97,110,107,89,87,112,90,109,102,106,96,88,92,110,103,114,103,112,114,97,112,98,110,100,98,91,96,92,102,94,104,109,106,97,95,99,100,98,114,104,101,105,97,96,104,110,100,109,109,106,100,92,110,117,100,111,107,115,108,111,103,109,96,102,110,105,98,100,114,93,93,123,105,103,89,110,106,102,101,85,102,100,98,95,102,117,103,99,101,100,102,97,110,96,98,96,120,110,104,95,99,102,102,89,106,112,106,102,92,100,97,104,106,111,114,106,105,103,107,97,103,100,101,104,103,91,81,110,93,112,109,101,111,116,100,105,94,110,93,109,92,93,98,94,114,92,118,89,108,95,105,98,102,104,95,109,117,88,108,88,102,95,103,99,110,92,101,109,95,103,109,105,109,115,99,99,95,105,107,122,104,108,103,99,104,118,104,108,106,96,102,109,106,103,104,96,118,102,113,100,97,80,97,110,99,99,111,106,107,105,99,105,101,108,95,112,98,105,105,111,114,104,99,105,110,87,101,112,109,116,94,112,104,108,109,116,108,102,113,103,95,88,85,100,99,109,86,121,108,91,93,103,110,100,106,101,103,95,94,109,103,107,94,107,95,84,96,101,110,121,107,95,104,103,106,103,104,102,100,106,100,95,111,104,99,115,97,110,86,105,89,109,108,106,99,95,100,104,106,105,99,105,113,115,103,85,103,103,106,113,94,99,96,105,95,102,111,106,99,87,94,118,101,97,103,106,82,103,96,103,105,113,107,91,115,95,108,104,102,108,102,111,102,103,100,123,106,110,94,108,101,98,101,104,104,109,100,105,90,105,107,116,102,104,95,97,96,100,96,112,105,100,97,112,103,107,116,103,105,98,96,106,104,116,106,103,93,100,96,101,105,101,112,101,107,104,108,99,121,100,103,111,92,105,113,103,108,109,112,104,110,97,100,99,109,106,104,93,111,131,95,89,105,103,104,110,96,105,95,112,103,100,105,98,102,100,108,108,92,111,107,118,106,104,98,91,99,117,107,104,100,114,117,106,106,105,108,111,109,118,115,101,105,107,99,94,98,108,109,103,103,105,117,101,98,106,109,97,98,107,101,99,120,100,109,103,96,109,109,101,112,101,107,116,108,101,98,99,99,101,109,116,111,91,97,99,91,121,95,91,106,103,107,102,103,105,121,97,102,104,106,80,100,110,101,107,107,114,116,105,105,95,106,100,101,100,106,111,93,108,96,102,121,101,105,108,110,101,108,101,83,104,101,105,100,86,106,105,99,107,88,99,109,110,100,97,108,108,104,96,107,85,95,88,101,81,91,113,123,103,93,108,99,117,97,110,117,103,105,101,107,123,101,99,99,108,109,105,103,113,95,104,108,98,103,97,100,106,99,115,97,110,109,74,108,106,105,101,112,95,102,112,99,109,109,99,102,101,107,106,109,109,103,113,92,106,113,104,108,108,105,125,118,111,107,98,108,100,103,116,110,108,105,99,105,98,108,108,102,109,115,98,108,104,102,110,106,113,97,104,112,107,94,101,95,98,102,109,95,108,99,95,80,98,103,103,100,104,109,99,101,108,99,96,115,104,99,106,106,100,108,106,117,105,109,107,105,122,108,107,113,119,95,110,79,99,104,107,95,115,105,109,105,98,101,92,108,100,98,113,117,126,102,107,87,109,102,103,93,110,94,112,105,105,99,112,128,103,109,101,105,111,112,102,86,103,100,96,100,91,93,102,103,100,106,101,104,101,105,129,118,84,107,102,105,100,103,105,121,112,96,113,106,120,100,113,109,109,113,100,104,106,117,127,99,109,95,95,100,96,120,107,100,106,86,88,98,109,103,109,101,95,106,101,92,107,110,99,100,89,110,102,101,98,96,107,97,120,107,107,83,96,101,99,102,94,105,103,96,105,100,98,94,104,103,91,86,92,101,93,110,107,110,104,105,113,102,88,112,109,99,102,90,128,94,84,108,92,94,112,97,101,102,107,88,102,112,105,98,101,111,96,104,110,110,105,109,108,94,102,101,107,109,101,101,101,104,97,108,101,111,90,88,106,105,95,113,106,98,77,118,100,98,101,115,95,109,96,95,116,106,103,101,108,104,100,107,104,125,122,101,93,100,94,117,101,94,115,98,101,105,104,90,102,108,105,94,114,104,104,107,116,94,104,98,107,95,99,100,101,110,103,102,110,115,97,110,105,101,110,112,110,102,95,100,100,112,104,98,93,109,113,102,102,103,110,114,115,95,104,95,80,91,98,102,109,99,99,101,94,96,104,82,100,110,99,102,103,101,102,103,106,103,98,118,98,105,99,100,106,103,104,102,108,110,111,104,106,108,109,101,97,102,102,111,95,104,105,113,105,98,110,104,104,107,97,98,94,117,99,87,97,109,101,101,104,102,97,102,113,107,103,98,102,118,101,112,103,104,107,111,90,100,117,100,114,112,112,102,112,90,105,103,100,94,111,121,100,100,111,102,110,101,94,107,113,106,106,106,127,106,101,74,111,104,112,102,97,106,101,110,113,95,109,117,101,102,109,111,108,106,117,106,107,115,106,100,108,103,113,109,106,101,102,100,123,96,109,104,105,105,102,104,106,108,100,109,101,105,94,95,102,97,102,123,118,97,120,108,97,108,108,110,101,103,106,104,101,102,105,104,104,103,107,94,108,113,104,95,94,114,91,98,113,99,115,102,109,97,99,101,102,116,103,99,98,107,104,94,107,103,100,102,102,109,112,105,96,93,107,102,99,102,98,98,108,98,101,104,109,106,108,110,108,103,102,102,105,90,92,107,107,106,112,139,110,109,121,98,103,101,93,101,132,109,111,103,109,97,101,100,88,100,113,74,100,105,82,104,108,106,103,97,96,95,111,122,113,68,102,122,113,113,101,84,108,87,117,102,100,96,113,99,102,109,93,95,99,100,107,89,108,104,102,99,95,101,94,94,109,108,113,98,104,103,105,104,100,87,102,105,94,107,105,123,133,95,103,107,105,110,101,104,103,87,106,109,102,96,117,106,112,108,96,103,107,101,102,87,90,110,113,126,108,110,107,120,113,109,104,116,119,98,104,101,93,106,99,96,99,98,106,100,98,105,105,100,118,106,108,102,100,94,109,123,93,112,107,104,103,116,102,109,94,81,120,113,98,105,106,112,100,111,116,105,113,110,109,106,103,125,104,97,101,98,85,107,109,106,106,95,103,107,93,98,104,94,108,84,109,96,103,109,96,112,113,106,104,102,96,108,101,106,126,99,104,100,111,117,107,90,109,114,89,98,95,102,106,103,86,105,111,100,104,100,98,111,104,97,101,102,106,104,98,108,107,98,107,110,111,95,114,107,99,100,110,104,112,98,104,111,111,95,101,107,116,101,98,88,103,97,97,96,110,105,109,106,108,113,105,107,95,109,113,99,66,104,102,99,104,103,99,107,109,116,102,115,100,105,106,112,103,97,103,101,98,92,90,123,115,106,115,112,82,110,101,88,109,91,109,107,102,102,103,101,98,98,105,98,102,104,100,103,106,116,110,97,112,87,98,104,99,111,116,97,101,91,97,110,95,98,114,105,112,100,113,108,120,106,109,117,110,102,105,108,120,103,101,105,106,100,101,99,107,102,101,111,102,102,104,97,98,115,101,100,92,107,111,114,110,122,105,100,99,100,102,106,101,105,110,100,97,116,110,100,103,102,109,101,92,99,107,112,101,115,105,107,98,103,116,117,113,114,134,111,105,106,107,109,109,103,102,100,101,107,113,99,111,105,112,110,104,110,109,100,109,105,106,94,112,113,106,107,95,87,101,111,105,106,117,113,100,108,109,104,91,100,120,99,108,106,113,105,120,112,69,104,100,109,111,106,107,104,97,136,112,99,106,102,107,94,114,96,98,111,93,100,107,99,94,88,108,105,85,97,107,106,94,108,97,100,109,112,93,100,102,106,106,97,103,108,107,97,98,110,106,105,113,96,104,96,103,99,97,91,102,103,98,104,91,104,113,110,96,109,119,111,93,96,102,98,113,109,96,100,100,109,106,116,109,91,103,110,99,98,102,101,98,107,108,102,94,110,102,102,93,99,112,111,97,105,88,89,105,97,101,98,102,106,110,102,99,102,104,109,103,109,98,104,101,91,98,113,108,106,110,93,103,124,97,76,106,99,102,105,98,101,112,99,92,92,103,92,94,99,91,98,105,101,99,100,106,104,107,113,104,121,93,100,96,83,113,119,96,105,113,104,103,102,98,109,98,121,126,114,108,99,106,102,94,109,98,99,109,106,97,115,104,98,104,95,107,100,99,100,125,96,106,96,107,99,103,113,106,108,104,99,103,83,102,106,106,112,103,100,95,90,85,106,89,90,77,125,91,101,110,102,108,111,98,90,97,86,108,99,133,98,107,103,107,97,98,113,106,124,102,99,116,109,101,105,106,78,75,112,117,113,104,109,100,104,112,101,112,67,108,109,104,102,108,103,101,111,117,117,97,101,128,109,106,112,103,112,84,102,98,107,87,98,95,100,100,103,104,102,94,101,97,89, +478.9469,98,90,98,113,98,113,103,109,95,101,101,102,87,107,90,108,91,100,109,103,115,102,105,116,98,99,97,97,90,108,108,112,108,99,112,107,105,87,98,96,95,96,106,116,87,105,113,104,101,109,87,99,88,96,104,114,93,103,112,114,102,98,100,91,109,113,102,104,106,100,96,107,92,98,98,115,117,109,103,106,107,111,99,108,100,108,94,116,98,98,105,99,107,94,100,102,111,91,105,102,105,103,90,107,94,97,103,91,99,101,105,92,101,98,97,113,105,99,107,102,97,109,109,104,103,109,91,98,103,117,100,95,118,102,105,84,86,106,121,108,100,100,105,104,105,104,109,95,96,99,105,103,106,95,91,92,95,91,108,96,95,105,116,112,92,104,108,98,106,107,99,107,100,104,112,95,109,98,95,90,108,112,100,102,112,93,91,91,107,116,90,103,106,109,107,108,101,103,105,95,97,99,106,110,126,101,100,98,117,84,98,108,111,109,110,105,76,98,110,111,104,118,97,103,106,92,105,103,105,100,109,110,99,108,96,108,117,102,102,110,93,101,101,120,98,107,99,103,103,111,104,105,116,106,97,106,96,107,104,100,113,98,103,108,116,99,93,100,99,97,102,105,98,107,103,105,102,107,96,103,94,99,87,98,104,99,100,96,114,95,95,91,104,98,102,117,105,109,110,107,114,86,110,99,109,105,103,114,102,102,99,102,99,106,104,110,105,104,109,114,107,97,118,105,102,108,98,95,117,112,97,90,105,94,103,100,99,108,83,96,104,107,122,94,111,100,83,81,120,97,104,98,108,113,106,98,103,102,100,106,108,91,103,102,106,101,110,110,100,107,106,87,101,106,108,99,122,104,96,113,105,109,101,107,102,107,97,101,113,95,105,98,109,111,103,105,101,92,118,110,94,106,109,107,97,91,98,103,112,98,93,102,98,100,110,91,107,103,108,92,104,98,95,104,102,105,117,119,104,111,130,120,103,103,94,87,69,118,101,107,112,87,97,119,105,104,102,94,110,111,104,98,106,107,108,113,107,99,103,100,106,100,111,106,112,113,106,100,103,98,102,108,109,106,102,110,113,112,101,99,99,93,110,105,106,98,105,110,115,103,93,106,104,114,93,111,90,96,106,106,114,99,103,103,100,96,103,93,101,96,112,90,119,100,104,115,95,109,94,96,109,117,111,108,107,100,66,111,110,96,110,107,106,83,98,109,92,96,103,110,104,98,103,106,94,99,102,112,106,103,102,102,111,99,96,131,104,106,111,100,101,106,103,102,106,114,105,103,109,93,105,97,106,112,103,109,102,98,109,104,102,102,126,115,109,104,108,102,117,100,99,98,99,106,114,112,92,106,104,101,99,115,114,98,105,115,101,107,101,102,104,96,98,101,111,96,96,89,104,103,111,104,111,100,106,103,115,95,113,108,95,104,105,103,111,108,100,109,71,103,107,110,96,117,104,103,100,98,111,102,104,99,102,111,110,107,111,112,109,107,115,111,104,104,101,106,114,95,98,112,110,103,99,101,107,107,96,111,120,113,111,99,112,106,96,103,117,112,100,107,109,102,97,110,100,107,105,109,102,89,96,104,103,104,97,103,108,104,98,104,106,97,99,116,97,120,100,106,106,98,104,109,98,120,97,99,83,90,105,97,107,110,92,96,97,102,109,107,106,96,107,112,107,106,106,117,86,103,109,68,106,104,118,107,109,106,112,95,101,109,100,99,102,113,102,106,100,95,118,106,108,100,100,100,109,99,93,86,108,103,97,94,108,113,103,96,113,107,97,92,102,120,112,109,116,113,98,101,107,112,111,96,94,106,108,107,111,116,108,97,106,120,106,101,113,99,116,107,114,98,103,104,100,106,114,102,107,122,102,102,108,107,101,122,104,107,110,102,99,98,118,109,98,64,101,91,99,100,107,104,111,93,103,93,102,107,108,107,99,102,98,105,115,100,94,113,107,101,105,111,94,95,106,103,94,115,95,97,103,108,100,85,102,108,109,102,96,112,111,97,91,99,100,109,105,99,113,79,101,117,103,106,110,94,104,108,102,105,113,102,98,87,108,100,108,115,102,107,104,94,124,96,110,109,117,107,108,104,91,95,94,101,103,106,94,112,90,109,89,100,95,97,109,92,113,117,102,108,112,100,91,100,114,106,112,110,125,103,98,120,93,111,106,100,104,109,94,96,102,110,108,101,106,101,98,103,101,104,109,106,91,107,112,107,89,104,108,104,87,114,90,108,101,103,110,99,91,89,101,117,104,109,103,96,105,106,103,118,95,98,100,96,99,112,106,101,103,113,104,113,107,110,103,100,106,93,112,101,99,100,114,109,110,102,86,103,98,113,94,100,108,115,116,113,105,106,107,105,105,107,101,102,98,102,97,105,117,109,102,110,102,110,110,116,100,110,115,89,87,97,91,103,99,77,107,108,112,102,100,107,111,106,93,98,120,113,99,107,128,105,108,102,112,105,105,99,126,103,100,123,95,98,97,110,103,113,111,110,119,108,99,103,104,108,105,98,110,107,98,112,91,100,98,91,105,103,102,113,108,104,105,106,118,97,109,105,116,117,108,112,101,104,113,99,94,101,111,104,105,86,107,103,109,100,106,94,103,96,105,110,103,92,117,104,105,103,109,103,112,123,99,99,109,99,92,111,103,101,107,109,104,109,98,115,96,104,120,110,109,107,106,96,103,110,113,99,106,108,100,95,99,102,97,103,109,109,116,110,114,103,111,107,110,89,104,114,103,102,104,100,103,105,102,110,112,105,104,105,111,97,107,107,108,100,94,100,105,99,78,114,109,103,106,107,117,104,106,102,111,83,106,105,106,94,102,92,100,104,98,110,99,110,107,112,106,106,100,104,99,101,122,106,108,105,108,103,103,102,73,104,90,111,106,105,98,103,100,117,105,106,108,108,104,99,111,108,97,101,99,103,104,100,110,120,100,103,113,105,110,101,98,107,101,102,88,107,110,105,103,104,109,99,104,115,97,107,108,111,106,96,107,92,106,111,105,108,113,112,104,91,105,110,108,112,110,100,103,96,105,102,101,116,100,95,109,92,102,102,99,98,111,111,101,114,106,105,100,102,91,91,98,103,99,125,102,108,102,100,109,109,103,103,102,101,109,104,113,95,108,100,107,92,103,116,100,107,113,98,109,108,114,118,85,99,106,113,104,109,106,114,105,100,100,104,112,108,103,97,100,109,110,104,111,104,98,100,115,107,102,94,102,98,103,103,108,98,98,100,102,107,108,96,110,100,94,108,107,106,113,95,99,102,107,114,117,105,106,94,106,106,103,113,104,102,105,99,101,91,108,110,107,117,104,106,102,115,119,117,111,100,104,108,103,107,113,101,100,104,103,95,104,111,105,95,108,107,99,110,87,111,100,100,105,102,101,108,83,94,101,106,103,100,109,98,106,118,101,102,101,107,105,106,108,109,111,102,108,97,105,99,102,105,109,99,101,111,106,109,111,92,111,102,95,96,98,107,108,109,108,94,113,113,101,105,104,97,108,110,106,105,103,111,109,95,99,103,87,112,106,106,115,115,109,119,100,86,101,114,107,100,91,99,99,108,111,94,108,113,110,101,102,111,108,100,105,90,110,95,111,113,104,100,108,119,103,108,109,107,105,107,106,100,104,100,99,104,108,111,101,112,101,122,107,94,97,105,108,106,115,103,106,94,106,107,92,80,102,82,99,95,93,113,107,77,110,100,102,103,101,105,111,103,101,109,108,112,100,103,109,109,98,100,92,99,95,109,101,92,108,106,110,107,94,109,98,105,88,103,106,109,102,109,102,104,107,114,112,106,90,115,91,104,100,119,104,106,94,104,108,104,108,116,104,113,104,116,110,104,104,119,103,110,100,96,100,103,95,98,101,106,100,103,105,110,111,106,110,96,104,106,121,107,113,116,108,98,104,107,102,96,91,108,106,113,101,99,93,100,105,101,103,114,114,111,116,91,105,117,100,103,107,97,91,106,98,102,104,98,102,100,107,107,97,113,100,99,119,113,106,107,100,112,108,88,110,114,105,98,116,104,98,100,84,113,101,115,100,103,103,109,110,111,95,103,120,116,106,100,101,112,118,103,117,98,106,105,115,113,93,120,103,100,103,110,103,98,94,102,111,116,107,99,101,101,107,100,102,102,99,102,108,118,98,112,103,101,109,85,111,97,110,95,109,98,107,109,118,96,110,116,102,98,109,109,99,106,104,101,95,100,92,91,99,105,104,94,108,105,101,94,108,99,116,107,97,93,100,104,112,118,108,106,100,105,102,99,102,103,109,112,110,109,106,112,111,107,98,94,112,94,107,94,84,104,106,93,104,104,105,110,100,114,93,96,111,102,110,100,119,113,109,102,94,94,102,107,102,110,110,113,104,94,98,112,102,109,115,100,99,108,109,105,97,89,102,113,97,92,121,105,106,108,103,111,95,109,99,110,109,102,108,99,100,108,95,102,97,97,102,109,104,100,100,101,106,98,101,100,102,91,91,102,109,102,90,97,100,110,104,100,98,106,104,98,115,99,102,105,108,101,98,99,104,106,104,97,105,100,104,95,105,100,109,108,106,100,96,107,106,103,83,107,104,108,108,107,99,113,112,95,96,99,102,107,108,103,106,107,111,79,94,95,115,110,109,98,111,98,111,86,101,98,113,113,101,102,109,86,107,105,102,106,107,101,111,96,108,98,102,92,94,106,103,100,98,105,98,96,101,116,121,102,98,103,103,110,101,102,100,109,112,98,104,99,100,99,87,109,106,101,102,97,102,101,106,94,119,90,95,98,115,111,104,105,119,102,112,99,100,104,110,95,93,104,100,105,101,106,101,72,105,97,92,107,108,111,94,99,106,109,113,105,109,99,103,97,102,101,91,120, +479.08743,109,93,125,95,103,96,98,116,106,94,102,113,104,93,112,90,102,108,113,96,99,105,116,90,104,102,105,101,101,105,103,105,101,111,111,112,109,94,108,96,92,115,94,93,103,91,105,102,97,85,131,94,106,102,106,97,87,107,106,102,98,97,105,110,92,106,92,132,105,110,137,108,96,98,95,109,110,109,109,103,85,99,88,95,100,97,92,104,93,99,117,90,101,102,104,92,105,98,105,109,107,92,105,100,105,112,102,105,103,92,105,91,106,101,100,103,100,113,96,95,109,109,111,104,106,104,107,97,108,110,106,106,91,97,98,105,94,93,120,101,107,108,113,105,108,104,108,98,99,90,113,105,95,100,100,105,91,104,116,100,105,108,114,107,115,103,103,98,103,95,105,110,99,102,105,97,90,103,102,106,100,105,86,110,94,103,97,94,98,106,98,94,100,97,103,99,108,98,107,75,102,111,96,100,107,86,102,111,88,112,90,106,94,105,100,98,96,79,104,103,84,96,105,106,90,114,105,107,106,117,93,103,96,105,112,105,91,110,98,116,96,111,109,110,81,107,100,112,104,92,93,109,105,110,86,110,97,107,95,101,95,112,91,110,92,102,114,105,114,106,109,95,103,109,96,103,102,88,108,100,105,95,110,104,102,88,96,120,106,103,102,107,99,108,111,110,104,105,86,79,97,105,112,99,103,113,98,106,105,101,88,117,103,109,107,103,103,104,94,87,110,105,87,112,104,98,105,96,104,107,104,88,99,89,76,99,108,99,100,88,102,90,105,96,104,101,107,98,109,103,101,102,100,109,99,79,106,95,102,100,137,91,98,93,110,100,96,120,110,109,104,111,116,105,115,92,95,98,100,95,100,97,102,112,96,113,100,95,106,104,130,98,86,110,109,100,98,95,102,104,105,99,102,104,114,105,113,107,105,103,100,100,107,98,109,105,104,96,108,103,101,99,93,94,104,101,107,91,100,111,99,103,97,105,115,101,108,103,99,102,110,90,104,109,105,96,100,105,94,91,100,104,101,106,131,108,108,102,102,106,107,100,103,103,113,113,108,99,116,98,105,106,105,105,105,112,97,99,121,101,117,102,94,108,97,96,103,98,113,86,108,109,115,116,105,100,103,109,93,102,103,105,104,101,103,111,100,105,109,98,105,92,97,103,105,114,89,99,105,102,123,112,106,99,110,104,111,102,106,103,103,108,95,116,83,112,104,105,92,108,94,107,83,91,105,99,104,104,113,110,116,121,100,107,105,104,107,106,108,112,94,104,97,91,93,100,111,122,123,102,115,91,108,102,104,108,114,105,100,104,103,95,100,100,100,101,105,103,95,99,103,111,102,100,107,98,111,106,109,103,100,120,114,94,106,99,101,109,92,95,117,101,109,95,95,113,101,102,103,99,113,107,112,93,104,120,111,115,102,105,105,108,107,104,100,90,107,85,124,99,108,101,119,98,97,96,108,95,105,105,72,106,97,107,101,116,103,106,100,108,111,111,114,111,100,104,108,97,108,107,108,97,101,100,107,105,108,111,104,106,102,105,105,95,106,105,108,92,111,103,108,101,100,118,97,100,110,109,95,92,99,109,97,105,104,111,106,103,109,95,109,96,98,103,100,113,110,106,112,92,95,99,104,109,95,110,96,101,90,102,114,108,96,100,98,105,107,113,109,95,108,100,94,104,109,123,114,93,105,100,105,99,112,104,105,95,97,100,104,97,105,103,103,103,102,120,108,86,102,103,100,96,106,96,102,98,103,92,104,134,104,106,113,108,99,100,109,103,99,92,106,109,104,107,108,110,90,99,106,101,102,105,101,94,108,97,99,101,125,97,125,94,95,103,127,95,99,98,98,99,103,91,94,109,109,114,105,98,116,97,105,103,99,90,100,96,100,98,97,91,111,105,104,103,105,101,100,113,110,100,109,88,94,113,103,92,113,112,98,99,93,113,82,101,105,108,88,99,106,110,112,116,99,100,106,101,96,94,99,104,108,103,105,100,99,92,67,102,98,99,104,107,86,95,100,92,93,103,96,103,102,106,107,96,105,112,103,98,112,101,101,101,104,101,98,93,96,115,110,113,100,105,106,113,119,122,97,103,95,99,89,125,102,107,102,108,107,103,96,112,106,90,108,105,106,94,96,116,93,109,106,117,117,100,101,107,96,119,100,105,110,99,92,79,102,103,91,110,93,112,100,104,104,109,100,110,100,94,100,141,104,110,106,99,109,107,104,105,102,101,96,92,106,103,100,109,99,111,101,102,109,98,101,98,106,104,108,109,101,108,104,110,108,99,101,115,97,114,97,110,124,99,103,94,127,122,117,94,98,95,107,108,108,110,108,106,79,106,105,110,100,108,97,106,110,91,96,103,94,118,130,108,101,112,108,96,99,118,108,91,100,100,113,114,106,104,105,96,103,103,79,109,86,95,108,99,115,112,102,100,96,102,88,101,99,107,98,112,103,109,104,119,88,98,93,104,113,99,105,121,86,96,109,116,95,114,105,124,104,107,95,109,108,106,113,105,119,84,95,90,101,94,101,103,106,106,108,111,116,99,106,99,107,91,100,91,94,99,111,106,88,98,113,105,116,101,108,99,109,91,110,76,108,99,95,98,104,92,111,104,106,110,106,92,114,105,96,102,105,104,106,97,125,103,102,100,105,96,100,110,106,100,105,107,102,94,104,105,107,106,96,92,115,106,92,105,99,95,101,105,100,112,95,102,99,123,104,108,109,104,105,103,103,104,92,101,110,103,99,99,108,108,104,106,106,118,95,99,116,102,96,112,104,109,113,132,116,118,111,102,106,93,109,112,95,102,105,102,111,125,104,99,102,100,95,104,94,106,105,99,106,94,103,107,109,103,107,102,95,107,100,110,110,122,108,102,104,102,101,105,106,99,105,109,116,116,103,107,111,109,104,104,106,111,113,109,99,79,112,87,97,105,102,103,94,88,98,109,108,97,91,111,97,92,106,114,95,95,102,103,99,106,92,100,103,104,102,110,107,102,77,122,95,100,108,100,102,105,99,106,105,98,104,94,106,99,125,106,106,115,103,104,110,116,112,104,121,105,109,98,108,112,106,110,117,104,111,101,113,107,105,109,107,121,109,98,115,98,89,106,108,103,103,106,117,105,106,95,105,101,105,97,108,99,106,125,90,97,101,106,111,95,96,103,96,97,105,100,100,89,100,109,100,101,104,99,106,115,100,98,86,107,85,93,106,107,108,101,112,100,103,117,105,105,111,101,106,104,97,105,94,86,108,107,102,100,95,104,103,109,89,100,102,98,110,115,93,103,101,106,116,113,94,109,94,104,101,106,99,95,102,89,109,105,100,99,99,108,107,109,108,111,120,87,105,103,98,104,95,102,94,107,102,95,102,103,104,103,95,92,98,113,96,101,102,98,120,99,113,112,95,91,101,94,99,100,116,99,107,106,105,99,102,94,97,107,108,91,96,88,110,106,102,102,82,90,99,106,104,98,104,103,99,117,106,99,100,109,105,96,107,94,117,96,95,101,101,107,89,110,84,98,103,95,104,99,99,109,104,98,106,100,112,101,105,110,95,95,107,104,93,106,108,104,102,96,98,109,105,99,113,95,104,88,108,93,90,102,109,117,97,98,116,112,102,98,104,93,95,105,108,101,105,109,106,106,106,119,98,123,104,105,111,105,101,102,117,99,117,100,112,111,99,108,111,94,102,106,118,95,102,94,105,100,108,108,116,108,112,124,96,111,103,108,99,108,102,101,106,113,108,109,100,109,105,96,107,95,99,107,117,116,97,112,101,98,105,110,103,108,102,104,101,93,97,103,102,93,97,110,98,102,104,99,88,110,100,109,104,103,96,105,110,111,112,108,110,102,112,102,114,106,99,104,102,107,114,96,100,106,101,90,109,113,91,116,88,77,110,99,100,109,130,104,99,105,110,99,108,98,101,101,95,107,100,98,104,105,104,103,106,106,103,93,113,99,99,105,94,99,99,104,95,104,115,106,97,94,105,99,123,112,111,110,103,117,107,99,104,93,123,102,107,102,110,101,101,98,100,88,108,96,105,91,95,112,100,112,121,100,116,109,105,104,93,110,100,90,100,101,104,96,98,97,104,100,98,96,102,88,91,98,106,107,109,103,109,96,99,101,98,109,91,90,112,99,107,96,109,102,110,86,103,102,105,88,96,105,100,96,99,95,94,101,103,110,100,91,102,104,113,95,100,102,99,109,99,104,94,115,89,98,108,110,109,93,81,91,102,108,110,98,106,97,95,123,127,99,95,106,104,105,112,110,100,106,95,105,95,108,109,110,105,97,109,102,102,104,104,101,110,102,107,100,103,99,118,108,101,106,96,110,108,98,98,96,106,104,72,99,106,103,101,105,109,94,105,117,106,103,97,93,92,102,104,105,105,107,99,101,94,106,101,91,102,106,96,99,99,117,100,100,104,98,101,99,102,91,99,102,102,103,108,95,116,104,92,109,103,99,93,96,98,104,105,110,104,104,94,88,107,99,99,100,98,103,105,92,103,96,101,105,109,104,97,92,100,101,123,95,108,113,95,101,100,104,87,101,99,102,105,102,117,113,113,104,94,113,100,102,101,105,94,94,97,111,102,100,95,95,117,96,102,88,105,100,100,110,107,98,101,88,94,114,103,95,105,98,102,101,98,101,104,105,95,95,99,96,96,106,113,95,113,98,108,98,107,106,99,107,104,93,107,102,103,96,98,114,102,114,109,100,103,113,106,107,111,102,96,100,94,104,106,98,102,116,94,111,88,101,103,111,67,88,117,115,101,105,106,101,109,98,103,104,102,101,103,73,95,95,102,113,112,101,98,98,96,84,111,93,102,115,100,103,119,94,102,98,114,102,97,103,99,70,94,101,98,97,84,67, +479.22797,104,100,97,99,103,96,90,79,118,115,98,92,103,94,99,95,101,110,91,117,99,95,96,107,102,94,98,107,100,101,107,114,110,103,104,74,100,87,94,104,97,98,87,105,110,107,97,95,109,111,102,103,89,107,104,101,113,100,122,105,109,97,109,99,108,111,95,121,95,96,100,109,95,92,96,113,94,103,109,108,99,99,113,97,106,99,105,102,92,98,107,112,94,100,92,106,87,89,92,98,89,100,109,92,121,105,114,98,105,97,99,97,101,104,99,96,96,101,115,100,77,101,97,102,103,107,96,103,108,98,95,103,108,122,114,110,111,109,99,108,97,98,97,100,99,96,100,99,92,107,98,95,109,100,105,97,92,101,108,107,127,100,109,106,106,100,106,102,113,94,100,109,110,100,98,100,106,99,98,101,103,106,103,117,109,96,89,90,110,93,96,108,112,116,102,92,90,97,109,118,93,100,104,106,100,114,92,112,117,105,100,103,108,96,109,100,92,98,118,106,101,105,99,103,96,111,82,100,88,106,98,113,103,101,120,103,108,105,83,101,102,100,99,99,94,96,98,101,93,94,93,99,100,105,101,107,85,98,97,100,93,109,88,87,90,98,104,90,95,104,94,101,109,91,112,103,104,119,115,95,129,98,104,102,62,83,95,99,98,102,96,113,109,98,101,94,101,97,101,59,95,105,102,117,79,105,103,117,100,113,107,105,99,103,87,96,92,91,101,109,102,96,99,104,102,122,92,100,96,99,109,93,89,102,109,100,90,90,110,107,105,109,91,105,101,105,100,105,112,100,104,111,96,99,75,107,94,93,102,101,99,102,87,99,135,78,98,100,103,101,110,107,110,104,100,103,98,119,105,96,104,101,103,102,100,88,93,112,90,105,105,95,101,121,94,96,96,101,93,101,103,94,94,101,93,95,99,91,109,99,96,98,118,89,88,106,96,105,103,90,108,103,93,100,102,103,94,97,108,114,87,120,110,79,98,105,91,105,98,107,96,98,111,101,98,88,93,88,99,104,100,83,103,102,94,110,106,112,99,97,102,105,101,101,103,111,103,104,105,102,109,116,69,106,107,107,99,107,96,105,104,108,112,106,104,95,96,89,110,106,95,102,102,94,99,98,104,108,109,101,115,90,112,132,106,102,95,104,105,101,116,99,116,110,120,105,110,104,106,103,103,96,102,113,102,108,116,103,98,97,110,109,84,93,100,104,142,91,110,108,98,115,106,110,100,109,107,103,112,99,98,109,96,107,103,98,114,102,100,100,105,96,107,115,106,94,115,107,101,105,86,98,109,108,106,106,109,102,92,108,98,99,103,96,99,98,122,132,104,97,107,108,107,102,109,114,103,86,112,102,96,98,101,101,108,84,98,99,104,95,112,113,102,110,98,87,101,100,101,99,104,121,101,105,104,99,109,111,121,98,121,97,97,113,100,103,114,96,107,99,85,97,102,105,104,105,98,108,67,113,90,117,87,118,97,103,99,113,99,103,93,113,92,117,98,103,101,103,102,96,103,107,96,107,90,102,98,92,112,98,106,100,105,101,100,98,108,102,110,107,98,100,97,113,78,101,114,139,107,99,103,99,99,101,79,102,106,108,85,88,99,109,106,113,101,102,99,100,109,109,105,103,106,100,100,90,114,140,103,114,105,113,99,102,99,110,107,111,107,98,114,102,94,101,100,107,95,102,104,111,106,106,99,101,100,105,112,102,116,89,104,110,106,113,99,107,99,101,97,91,106,94,100,98,98,102,109,101,94,92,103,101,109,102,96,104,92,112,131,106,105,100,105,105,109,110,108,102,117,111,108,95,96,99,108,112,105,93,105,107,110,96,95,100,121,92,105,106,108,98,108,108,94,96,95,100,109,104,107,99,101,78,98,95,104,96,102,90,101,99,99,103,118,103,100,101,95,93,100,98,109,100,104,98,93,132,109,111,106,95,98,102,114,101,104,108,90,99,131,112,124,121,106,104,82,94,103,101,113,103,113,109,98,102,98,109,106,82,124,101,119,103,109,109,103,92,102,108,105,104,112,103,104,91,103,104,108,98,102,81,101,106,107,99,110,102,99,102,94,91,101,107,110,109,106,100,97,103,97,105,99,94,103,102,104,103,95,93,105,103,101,99,105,102,102,101,103,107,108,112,108,91,110,101,103,105,105,92,87,114,97,122,97,117,113,103,95,96,97,110,95,105,112,103,104,109,95,92,105,104,100,67,94,92,100,111,89,91,99,103,97,100,99,100,93,91,91,99,91,97,100,108,103,112,103,116,94,111,101,102,112,104,113,104,105,93,103,95,94,104,89,106,122,103,96,102,108,104,110,110,103,105,109,93,112,85,98,102,106,107,98,98,91,100,100,112,110,95,113,98,95,105,99,94,102,103,102,93,107,98,95,101,106,91,99,86,104,112,104,99,96,108,101,106,91,106,104,108,102,103,73,99,95,117,103,116,86,98,119,100,104,104,107,102,95,99,106,95,124,102,114,98,100,93,103,109,102,105,102,108,117,121,102,95,113,91,116,93,93,98,102,104,108,109,103,109,115,97,102,102,104,102,104,107,98,104,112,109,104,107,96,95,97,112,108,99,107,98,108,96,111,99,118,93,111,90,113,99,103,98,107,93,88,101,104,96,106,94,97,99,102,102,89,110,102,104,103,104,110,105,103,106,83,114,116,113,91,94,98,110,102,91,111,104,108,106,118,112,106,97,119,109,114,103,108,74,110,107,102,100,115,110,99,107,106,106,112,109,109,97,119,120,102,100,103,102,108,101,129,98,94,98,106,104,99,98,104,113,105,117,108,112,105,110,100,88,114,112,109,96,113,112,112,100,102,103,108,116,111,116,104,94,110,108,112,123,103,103,96,108,97,105,97,121,116,96,104,104,97,103,100,109,101,88,108,126,98,94,107,108,100,112,99,108,108,105,102,98,105,98,103,107,97,110,104,111,118,119,103,98,109,100,119,100,109,109,108,110,113,101,104,90,105,110,97,96,115,107,101,117,104,97,91,117,108,105,108,109,99,101,104,102,96,108,85,89,112,108,107,98,95,103,109,111,103,108,108,101,102,112,109,84,103,91,114,113,105,106,105,109,103,109,116,111,103,106,102,105,106,104,108,106,113,100,107,108,110,114,101,96,113,109,89,112,111,107,113,104,113,140,88,99,105,103,106,90,107,106,109,107,104,106,104,103,105,103,103,104,99,105,127,106,106,119,107,101,110,100,106,109,114,107,113,99,106,100,100,121,107,107,101,90,109,102,103,96,133,101,116,95,115,105,115,103,101,106,106,99,103,96,109,114,106,99,96,120,100,100,102,90,107,101,97,94,109,98,107,109,96,109,104,115,98,109,113,103,108,109,110,112,120,102,105,92,106,99,98,104,85,96,106,89,112,114,103,111,106,113,119,111,113,114,98,110,121,97,96,111,100,98,109,115,98,110,106,110,110,104,97,100,110,88,99,79,104,100,109,91,120,109,107,107,102,99,115,99,100,115,104,101,103,114,117,98,103,103,103,112,116,106,100,102,103,96,114,99,95,95,101,108,100,99,108,114,115,94,104,102,109,105,114,106,108,102,109,108,109,93,92,121,115,112,106,107,117,102,112,99,116,116,106,95,114,108,102,106,109,103,103,116,105,107,121,113,101,115,105,110,114,87,109,108,109,109,117,100,108,104,113,106,137,104,110,116,121,113,98,97,106,108,100,98,108,71,105,101,108,115,113,109,109,99,101,99,103,86,111,109,105,107,104,101,106,107,102,108,108,102,112,114,106,108,105,107,116,105,110,94,107,116,98,107,107,114,109,105,102,109,100,100,107,104,98,107,102,108,100,103,113,97,109,96,106,102,113,112,108,102,98,105,105,108,104,105,119,100,101,103,98,109,107,104,105,101,108,88,102,116,103,96,113,99,113,102,95,110,104,104,115,99,105,97,113,112,103,99,107,102,101,106,104,106,101,110,99,108,114,112,100,113,105,106,104,99,103,98,100,105,103,98,109,103,105,97,105,104,110,97,106,111,99,102,99,106,101,106,100,102,99,106,115,107,97,103,100,103,102,102,102,95,109,111,95,111,116,112,101,103,112,107,109,102,106,106,91,116,108,114,105,106,121,105,94,105,111,96,118,113,94,96,107,115,99,99,103,98,111,109,115,99,105,105,116,112,99,99,96,103,115,104,108,109,104,108,88,103,100,102,91,108,102,91,104,98,115,109,109,104,116,100,75,100,116,105,105,102,88,100,105,99,106,114,92,91,90,110,95,106,99,110,106,98,106,109,99,100,109,99,118,114,106,108,104,103,104,106,107,108,107,98,111,95,112,107,100,112,114,99,109,103,94,96,114,106,97,104,117,102,107,106,115,100,101,109,112,99,106,105,111,90,109,92,104,105,110,111,93,94,110,97,116,107,105,100,108,110,99,103,102,105,111,104,110,106,107,104,104,100,95,100,101,98,99,97,104,105,95,116,104,102,102,108,100,111,99,104,101,117,104,109,100,100,99,98,110,113,121,106,101,98,103,111,111,106,107,104,107,107,108,107,107,97,106,97,113,105,101,109,98,113,100,83,104,106,113,102,100,98,109,117,97,103,107,112,110,106,105,99,110,109,111,112,111,101,101,106,113,105,107,106,109,103,105,106,87,107,91,97,101,96,112,99,100,95,108,99,105,102,108,96,104,107,97,105,108,97,105,112,109,96,92,107,103,97,105,110,109,113,105,97,87,103,93,110,108,111,104,108,112,109,106,99,117,105,107,95,104,123,100,100,102,102,98,87,105,101,93,91,92,118,104,97,101,109,103,103,92,97,108,101,102,102,95,102,91,109,91,86,100,101,95,109,119,98,98,106,103,107,100,95,113,102,104,95,106,104,101,109,93,99, +479.3685,123,87,100,97,100,100,110,97,110,91,63,105,115,98,105,104,95,102,104,103,97,103,109,103,118,99,109,109,107,113,101,104,104,90,96,104,100,111,98,103,92,105,98,90,101,111,98,104,98,113,94,98,105,100,104,108,96,96,108,89,103,102,80,88,100,120,99,113,105,98,100,99,98,101,101,111,90,106,120,103,100,102,95,103,92,93,98,103,102,96,110,102,117,105,90,103,101,107,89,111,96,95,103,101,101,102,111,105,101,105,102,92,96,97,111,110,79,111,100,102,95,108,113,100,100,111,98,99,105,93,99,109,107,101,109,103,99,110,95,104,96,94,101,96,104,101,105,104,91,97,105,113,111,103,104,99,100,97,107,110,99,110,93,99,102,105,110,108,97,105,85,99,97,94,100,119,100,94,103,105,99,98,107,113,94,99,90,105,104,95,100,101,108,114,111,100,96,106,104,125,93,109,115,110,104,104,102,103,96,102,99,95,102,97,91,103,88,98,116,106,108,98,105,132,94,121,99,99,100,104,99,107,110,99,121,105,100,112,101,107,95,100,109,103,128,106,112,110,108,99,113,110,99,98,125,109,110,103,95,109,100,103,102,97,104,108,100,112,102,104,103,108,107,112,103,111,112,111,104,104,103,104,103,110,104,105,102,78,105,107,99,108,99,103,113,112,105,101,107,104,115,105,106,99,104,126,123,111,107,109,95,122,105,121,102,113,102,98,100,100,116,109,101,111,107,112,101,112,114,101,104,108,111,110,106,114,104,82,87,100,102,91,112,107,105,115,99,117,93,103,105,107,110,111,114,107,108,94,98,105,99,107,102,108,108,96,91,117,100,82,101,106,115,98,104,117,94,101,109,104,108,107,111,106,107,98,95,102,108,107,117,99,103,105,108,100,101,106,109,111,95,107,103,105,118,108,104,105,102,101,104,92,112,112,93,104,98,94,110,94,103,105,95,113,100,97,98,107,108,104,108,100,108,109,100,103,87,105,105,105,102,110,117,111,105,100,106,112,96,107,98,110,103,113,111,112,113,103,107,101,104,112,113,115,111,106,112,116,108,103,110,113,106,100,118,104,97,106,100,104,104,117,101,108,102,108,106,117,113,100,125,104,105,99,113,109,110,108,123,95,110,96,111,92,103,122,97,100,108,103,101,99,102,96,106,103,106,108,97,96,110,111,114,114,94,113,113,106,105,98,97,109,108,100,100,104,107,109,110,115,115,100,101,105,105,96,113,96,106,107,106,113,109,105,99,109,98,109,112,99,112,108,113,110,101,105,106,118,100,104,95,108,113,99,110,99,101,95,100,110,106,99,121,101,100,116,104,103,97,99,95,84,98,106,107,94,108,97,105,91,103,100,98,103,104,106,105,105,109,109,96,107,104,111,100,97,100,113,99,75,106,99,103,113,101,101,105,100,97,109,105,106,77,104,101,96,107,100,104,117,113,107,92,108,101,75,104,90,100,112,121,96,114,100,107,95,111,104,103,97,109,107,99,104,96,100,108,97,101,112,102,113,103,96,106,117,89,112,108,104,114,101,108,92,102,91,111,103,106,115,103,94,102,112,102,99,101,98,106,94,101,100,114,100,96,116,92,101,91,96,100,110,103,102,104,90,115,104,95,96,109,87,111,104,92,102,94,121,95,104,101,119,100,119,104,105,85,91,105,104,105,109,99,89,108,101,106,112,98,104,102,104,114,106,106,109,92,95,101,113,108,100,110,102,101,101,108,108,99,106,115,101,107,100,112,106,102,105,99,105,97,104,102,106,98,103,103,106,100,123,106,106,110,99,108,115,98,103,104,106,110,104,98,112,118,104,97,106,99,106,108,106,104,93,99,74,119,118,90,107,102,116,107,113,94,97,96,128,102,111,101,99,106,104,98,103,115,102,118,89,107,108,109,111,117,100,108,87,110,94,113,101,89,121,109,116,111,118,108,115,83,116,96,108,102,105,101,111,99,109,109,102,112,107,87,109,104,104,102,121,110,101,113,97,108,109,96,125,106,104,117,121,107,97,102,103,99,108,105,102,107,111,118,101,111,101,102,96,102,104,105,102,103,117,116,103,95,106,108,120,111,113,109,108,106,115,100,101,110,103,115,122,107,111,103,107,97,102,108,102,112,95,109,97,110,86,107,103,118,110,105,104,112,107,107,108,108,95,106,112,95,107,96,109,112,106,104,106,121,108,104,100,109,97,102,110,99,107,95,100,112,117,98,113,85,97,109,105,104,114,103,97,111,101,108,101,110,112,103,102,99,113,112,84,109,100,113,118,100,101,115,95,115,102,107,100,107,99,107,103,107,108,121,101,91,97,109,106,108,104,108,105,114,104,114,110,103,111,134,104,125,99,105,106,98,95,108,101,91,113,116,113,83,114,111,112,96,100,87,72,105,108,97,103,103,105,94,105,100,96,109,118,103,96,105,116,102,111,108,113,95,109,92,113,97,110,104,109,114,98,102,109,109,115,111,99,90,98,110,104,95,100,99,99,105,109,96,108,108,105,111,113,109,91,102,88,113,105,105,99,109,108,74,115,111,110,104,90,96,111,107,109,88,95,107,97,105,93,97,98,98,101,92,108,103,105,105,98,111,102,104,101,67,101,103,114,107,111,88,104,112,101,94,89,99,102,95,97,112,115,108,116,106,93,102,103,108,90,116,104,101,111,100,95,104,101,99,104,84,110,98,105,104,106,105,101,99,98,98,120,113,101,105,97,106,111,112,102,98,106,106,106,103,99,107,98,115,106,94,98,101,106,95,121,100,109,113,110,100,97,90,116,109,102,109,99,112,98,118,108,97,97,97,111,83,101,105,109,109,87,87,97,100,102,114,97,105,103,103,111,108,111,109,111,106,118,109,94,117,103,101,112,106,105,101,95,102,105,102,100,109,102,99,104,102,101,98,113,112,102,108,98,106,101,105,100,103,96,110,94,100,95,102,103,95,106,105,106,111,90,95,113,96,99,108,106,106,96,103,106,107,100,98,103,116,92,103,96,102,92,110,107,108,129,107,95,97,105,94,95,101,105,110,105,105,97,103,99,107,118,109,109,102,97,103,105,109,106,108,90,109,102,103,97,110,104,102,94,113,104,103,99,114,99,113,102,100,93,91,108,97,100,109,94,108,105,99,107,106,98,89,94,100,112,108,109,108,102,106,107,106,107,99,96,99,117,103,94,104,103,97,98,104,109,99,101,97,100,102,108,106,95,96,105,117,98,113,119,105,95,103,104,96,115,112,106,103,106,113,100,108,103,107,100,107,113,99,109,105,113,103,109,106,117,89,96,103,96,103,101,100,106,102,110,112,103,104,89,105,104,88,129,104,83,102,108,105,100,106,95,99,101,103,94,101,91,101,108,100,104,91,111,96,105,104,105,97,97,107,97,91,104,106,94,99,101,103,120,102,99,107,105,105,104,105,101,117,101,103,95,113,91,95,94,96,100,95,97,100,102,109,114,109,101,112,108,98,109,107,114,104,98,97,105,104,96,107,102,110,98,104,99,101,121,99,77,110,111,102,97,125,98,106,112,99,105,104,103,103,112,103,99,96,92,88,104,97,104,116,108,113,101,111,109,103,100,107,77,111,97,93,103,106,98,96,111,94,99,101,98,102,99,105,105,111,104,107,105,102,105,105,110,98,115,107,95,108,95,100,101,93,86,111,107,92,96,101,99,114,105,102,101,105,97,112,96,107,107,102,103,100,107,111,79,105,96,109,109,121,88,97,80,110,92,102,97,113,98,107,106,110,104,102,108,103,91,106,99,102,104,109,107,110,101,104,106,103,106,91,104,98,110,111,102,97,104,76,100,100,111,95,106,103,102,102,96,106,88,110,111,104,95,96,107,118,105,103,106,112,110,105,111,95,108,105,105,107,102,95,98,95,104,101,102,106,107,112,93,98,97,99,105,107,108,101,100,91,99,104,92,108,97,98,97,105,115,97,90,103,103,99,102,89,105,113,106,107,113,98,117,113,113,115,97,115,108,101,115,98,110,111,125,90,102,102,107,110,106,96,113,103,109,99,99,111,98,99,104,103,104,103,101,103,91,104,99,105,95,104,103,98,115,91,99,107,98,99,115,95,116,103,105,105,110,113,98,92,99,110,106,107,89,106,96,101,111,104,111,108,112,108,101,105,86,104,106,103,104,109,96,106,90,95,93,110,109,96,112,103,103,98,115,97,110,112,98,100,94,104,108,98,103,107,99,101,100,107,99,100,101,104,101,105,104,97,106,100,97,108,102,96,106,113,96,103,94,91,90,92,110,98,106,102,100,91,83,100,116,113,108,110,114,109,109,105,105,113,106,99,102,110,101,88,110,108,91,100,109,107,82,91,95,110,101,95,103,100,91,94,101,98,103,110,93,101,118,107,99,100,101,113,105,101,96,96,105,100,100,100,102,109,87,93,92,104,98,103,101,113,104,103,95,99,104,107,100,119,91,100,115,95,94,113,97,116,105,106,99,99,100,109,86,94,105,100,109,109,104,102,98,99,97,103,92,93,114,102,115,91,114,101,102,105,105,97,87,110,105,106,96,99,114,102,99,110,101,106,107,104,104,99,92,104,99,99,102,99,106,99,97,97,104,97,97,103,110,100,109,110,93,104,109,109,116,106,108,114,113,117,96,110,99,103,95,98,107,100,100,114,99,102,110,97,86,111,92,114,98,101,107,107,113,99,91,96,104,98,92,95,112,87,99,93,104,95,102,105,98,95,101,85,95,92,100,99,97,106,91,102,106,111,111,95,94,104,101,101,98,105,94,99,87,101,99,94,95,106,107,96,103,108,82,98,104,101,107,101,112,111,106,98,98,97,95,111,90,92,100,103,99,101,101,110,94,89,84,95,111,106,92,84,83,99,104,96,101,87,103,86,103, +479.50903,94,107,104,96,100,107,103,92,99,104,102,98,81,98,92,104,112,102,112,112,97,89,98,128,102,107,113,109,110,96,100,95,106,96,109,101,101,89,102,102,100,111,96,104,107,97,92,107,112,115,98,96,108,109,115,119,107,77,98,92,96,104,108,96,105,112,101,104,105,95,99,103,92,106,98,104,98,108,100,106,99,100,96,115,110,96,104,107,117,102,91,99,109,98,97,99,97,96,102,95,96,90,87,102,116,96,99,101,112,96,107,104,100,83,97,123,110,119,92,107,100,109,107,106,121,125,103,105,114,109,107,104,102,105,101,113,100,101,101,117,101,106,112,99,95,102,106,96,94,109,109,101,109,106,101,96,110,92,106,91,100,103,105,113,114,102,105,106,97,107,106,96,95,109,106,113,98,100,99,96,108,102,100,107,113,106,100,95,99,95,105,103,107,115,117,109,110,104,97,105,123,106,102,99,99,110,113,94,99,112,98,101,95,95,119,114,105,101,101,110,112,105,117,97,99,100,99,102,107,102,99,117,99,99,102,92,95,115,108,99,91,103,96,104,110,105,110,103,113,97,103,112,94,93,107,93,89,91,115,106,104,105,113,104,98,102,115,98,107,103,105,96,107,107,103,113,99,92,99,100,107,74,110,102,94,96,116,112,109,105,102,104,108,107,108,114,99,103,104,111,108,103,106,107,100,109,101,103,106,123,105,111,116,104,103,106,99,115,108,105,114,98,100,102,101,83,106,109,106,108,109,101,108,110,96,118,94,102,113,103,100,100,99,100,109,100,98,115,106,102,106,104,105,104,116,109,110,111,106,100,103,107,108,100,108,102,113,114,107,108,117,99,109,93,103,108,106,97,104,105,102,96,101,106,118,99,115,118,113,100,105,92,95,116,98,105,98,116,112,107,104,91,99,99,109,96,104,132,104,100,99,94,110,104,106,101,95,96,104,102,103,97,103,98,94,108,102,99,135,102,99,101,94,103,99,104,108,108,91,100,107,110,108,107,103,109,97,99,96,106,101,103,117,89,111,94,113,102,88,96,102,96,103,112,100,103,104,117,101,99,96,106,112,102,95,104,113,100,105,105,107,102,111,98,101,103,101,95,102,91,100,114,103,111,104,109,103,137,113,95,103,99,103,97,105,106,111,113,100,96,114,105,103,106,95,111,91,103,97,100,108,98,91,104,102,99,115,104,107,112,107,107,111,103,103,103,89,85,102,102,105,108,107,97,98,113,109,96,95,96,106,104,106,113,101,103,102,111,111,110,97,101,132,85,105,111,99,106,112,109,103,102,100,110,102,105,101,99,109,114,102,104,96,70,99,98,98,98,106,100,104,101,103,106,111,114,100,95,118,114,106,91,104,96,103,98,79,96,98,101,101,101,102,101,102,104,104,90,109,108,103,109,101,100,106,96,100,108,107,113,100,109,103,104,94,104,101,101,100,120,104,111,90,96,114,96,96,105,67,113,103,108,103,102,104,105,96,109,103,108,107,92,106,124,90,100,104,112,113,109,108,128,102,100,98,103,97,89,98,102,106,102,108,101,117,103,91,113,98,116,103,113,108,104,117,100,117,108,108,108,92,103,112,117,103,110,106,110,103,106,116,100,107,109,96,103,104,95,91,104,107,104,103,103,107,90,86,103,104,98,104,108,108,107,87,105,101,89,108,102,110,101,101,103,103,93,116,105,101,104,106,110,92,109,109,103,105,116,87,104,107,91,98,84,97,97,100,101,99,112,109,109,118,94,102,106,108,112,103,106,108,116,117,98,114,102,113,105,103,87,100,106,108,104,101,117,101,113,113,96,83,92,105,104,107,103,104,105,113,103,110,87,92,130,104,107,99,106,125,99,95,105,107,106,80,103,100,105,97,117,107,102,110,107,105,114,107,90,104,101,97,100,101,97,98,105,104,104,107,106,100,110,110,113,100,103,104,96,98,81,99,94,110,109,105,102,103,112,122,121,115,105,122,122,95,83,108,104,101,108,105,103,110,95,106,104,94,107,105,105,113,108,109,105,101,109,109,99,108,103,106,101,103,96,101,98,105,110,98,103,104,102,92,104,98,103,104,78,122,107,112,112,109,117,102,98,109,84,104,124,121,102,109,107,106,96,104,100,105,95,113,96,111,97,114,95,97,101,101,105,113,127,106,115,112,100,101,102,100,117,99,119,104,108,108,99,96,101,108,99,104,108,98,105,111,100,101,106,92,101,105,104,106,94,103,103,103,96,104,100,96,106,99,134,104,101,99,99,104,100,114,102,99,101,104,101,89,111,88,121,102,110,107,103,88,108,112,97,95,103,108,90,114,111,98,119,106,103,102,73,112,99,104,105,111,96,99,87,97,96,102,111,81,107,105,110,114,101,105,103,100,100,115,118,91,103,98,93,105,106,112,112,95,109,104,99,101,89,107,100,110,103,100,102,93,98,103,110,90,104,113,108,122,102,105,107,117,101,105,113,110,106,104,109,96,96,102,80,97,110,99,98,113,123,108,113,107,108,91,107,105,112,105,116,106,111,95,99,106,106,109,106,102,112,96,100,109,100,110,117,121,103,99,105,109,106,95,97,98,104,83,100,114,107,109,88,105,106,98,106,116,107,104,114,112,110,121,103,112,102,111,103,113,96,103,105,107,110,115,105,117,91,108,102,103,95,97,106,110,104,104,102,109,91,107,104,111,102,110,102,102,102,109,103,117,107,103,103,109,115,95,116,119,104,109,110,102,117,102,91,105,83,104,116,106,121,110,100,101,104,109,123,121,117,104,98,102,122,96,103,117,102,101,102,104,91,105,110,108,106,88,103,112,107,90,112,108,129,74,89,100,103,103,101,105,101,106,106,101,106,110,109,92,118,114,94,119,104,94,107,119,116,96,116,100,105,103,106,107,108,114,101,99,104,103,100,110,98,109,110,97,115,93,102,99,96,110,120,112,101,100,109,108,107,109,108,104,105,88,102,108,106,117,110,116,104,100,107,113,109,107,110,112,99,114,98,105,104,112,101,106,118,114,110,110,108,102,101,107,96,102,109,106,95,118,98,110,107,105,109,111,100,105,116,92,106,102,105,110,102,116,116,107,106,114,94,103,102,98,100,104,116,107,105,111,90,102,104,106,109,107,94,98,105,109,117,115,100,104,101,108,97,122,108,104,112,100,105,118,116,98,103,112,109,103,110,112,110,112,74,102,133,117,93,104,100,116,110,111,108,115,110,102,102,100,104,100,95,103,111,107,113,109,112,102,102,102,98,104,116,123,97,112,105,99,105,98,103,103,107,98,97,104,108,97,102,113,104,101,94,109,102,102,116,109,107,97,105,99,113,100,115,115,102,102,95,117,105,105,100,95,97,101,109,112,109,99,104,114,99,96,109,107,117,102,96,102,107,103,108,114,110,102,106,104,100,117,92,97,113,104,95,101,103,101,88,114,101,102,91,109,113,102,98,103,87,114,102,118,106,117,105,99,99,98,98,112,100,103,96,109,109,99,100,105,107,102,117,109,96,97,110,93,106,97,85,109,103,107,103,105,107,108,101,99,111,95,108,112,98,110,103,107,133,104,91,106,113,117,103,104,113,94,109,105,106,109,95,105,104,102,98,102,112,112,113,107,126,114,96,99,104,95,106,92,102,105,108,103,104,105,105,114,109,103,106,112,100,115,108,108,103,105,89,101,97,98,117,104,94,104,87,109,112,108,104,106,103,107,107,102,97,106,104,105,107,110,106,106,105,105,107,112,108,93,104,100,112,120,101,113,103,94,93,99,95,110,86,111,99,103,98,97,100,102,93,107,113,98,99,112,105,104,99,100,107,113,98,95,110,116,122,98,109,102,99,113,104,104,103,112,93,107,111,105,102,99,102,99,93,101,106,106,96,106,95,107,101,103,109,113,121,113,111,117,104,114,107,113,101,105,108,105,98,100,114,103,98,85,112,108,108,105,114,108,108,116,102,108,109,125,90,96,109,93,94,99,110,107,113,97,106,87,101,104,110,94,97,112,110,120,108,113,92,128,106,103,91,110,106,103,110,101,105,108,106,98,103,104,105,112,113,107,113,117,104,105,106,109,104,112,96,107,102,95,107,100,112,76,109,104,102,111,118,107,104,102,111,96,99,90,104,94,112,109,94,114,113,110,113,105,87,72,107,97,98,113,85,97,101,96,101,106,111,108,108,102,113,101,110,110,97,106,109,108,96,91,110,99,103,98,87,90,110,106,112,113,106,88,110,91,106,108,100,101,98,105,106,104,99,95,90,112,99,100,108,99,121,93,98,98,106,109,101,109,102,104,92,107,118,110,87,117,107,111,107,104,111,105,106,94,107,110,112,114,103,99,112,113,103,77,110,115,113,96,106,102,98,98,103,101,106,96,92,92,104,118,97,105,101,101,98,115,103,94,105,92,98,98,120,99,97,96,118,91,90,84,100,105,104,109,106,107,95,104,79,109,107,104,106,100,112,109,93,102,101,107,100,106,103,90,106,114,81,116,110,116,101,95,106,90,97,108,101,99,101,113,98,93,102,116,108,96,99,120,107,104,93,114,90,108,134,106,93,104,109,107,121,106,109,106,95,99,110,101,102,102,117,96,110,108,96,105,95,117,114,88,107,102,117,109,99,110,108,103,107,125,112,117,106,108,101,104,95,99,108,107,88,99,94,100,103,102,89,110,104,119,110,99,104,99,116,104,108,106,96,92,102,113,105,94,101,105,108,105,104,113,102,112,104,98,107,107,103,95,121,106,94,106,109,86,97,98,105,105,116,110,98,103,114,97,95,94,103,120,96,95,99,109,100,107,103,109,100,107,104,105,100,91,104,121,101,92,110,104,93,108,98,98,97,111,112,106,110,119,98,101,105,103,100,110,94,99,97,95,98,108,98,103,97, +479.64957,95,109,102,102,98,112,105,93,99,112,90,109,79,104,100,106,100,116,103,120,116,99,106,98,89,100,120,97,113,108,102,107,94,98,106,96,102,103,109,107,89,98,106,103,109,93,102,96,108,102,93,103,97,102,117,88,110,100,103,99,111,114,95,96,119,108,100,106,95,101,105,97,105,96,106,116,103,104,95,106,108,103,109,95,97,117,97,109,93,105,98,111,94,120,116,105,106,101,105,98,108,102,105,103,100,105,105,100,99,95,95,97,107,106,119,100,106,113,121,100,97,101,110,107,102,112,92,107,110,99,102,97,107,110,105,101,105,113,105,99,104,101,98,103,100,105,89,107,98,88,91,101,99,98,107,98,102,94,91,102,100,102,114,109,95,103,90,110,110,104,111,109,95,92,108,107,109,99,108,98,110,102,105,103,118,114,122,105,105,88,87,102,101,106,107,117,107,105,99,105,125,109,76,97,114,105,101,115,93,103,92,108,100,106,112,104,87,111,104,100,112,114,103,103,104,108,106,105,98,106,94,104,110,108,107,100,99,105,100,108,109,98,107,104,106,105,125,106,99,81,95,102,105,103,111,99,104,103,95,100,87,103,101,111,109,113,107,98,95,123,104,82,108,96,107,110,107,119,104,103,100,109,97,105,113,84,90,98,105,113,122,102,109,107,110,121,123,112,101,118,102,105,100,110,121,111,116,109,108,117,99,109,103,112,103,103,109,109,98,100,114,105,98,105,118,109,96,74,104,107,112,96,106,107,113,98,107,105,108,98,108,98,98,105,102,99,114,109,113,113,98,106,101,107,107,87,105,106,98,106,106,68,111,100,97,104,101,118,101,100,120,99,109,105,104,103,108,101,93,126,112,106,100,105,99,104,104,106,106,115,122,94,107,113,101,96,104,115,90,106,107,136,103,99,114,99,103,88,117,99,103,110,108,106,93,95,104,103,105,99,111,106,98,91,104,89,101,95,98,106,103,109,99,114,114,94,109,118,108,111,103,95,105,104,101,96,112,112,109,107,99,90,97,110,124,106,109,96,111,110,105,105,108,105,105,112,98,103,104,100,111,116,103,109,98,99,106,112,110,100,111,111,104,96,101,94,101,113,106,111,109,117,102,106,101,113,103,112,103,103,116,115,103,99,107,99,98,104,111,105,110,111,108,111,99,104,88,111,100,100,97,104,105,104,78,95,104,110,104,105,101,100,89,113,113,102,116,100,94,87,106,107,93,101,96,106,105,104,104,92,106,106,108,103,95,97,96,100,111,104,103,106,110,112,106,92,95,107,109,94,104,86,99,99,109,105,102,96,97,112,99,97,107,116,98,119,108,106,104,109,105,101,97,104,106,105,115,109,98,102,113,114,117,86,100,100,93,96,110,103,114,107,108,109,108,100,98,115,108,101,114,103,98,104,112,112,107,92,113,107,99,116,99,118,106,114,102,105,110,101,95,110,105,106,114,101,106,101,110,105,104,106,99,124,108,100,111,117,110,93,104,113,90,98,95,94,101,84,121,94,104,99,113,105,101,112,109,114,108,110,105,101,119,94,78,109,95,112,108,105,103,113,102,104,110,108,102,104,100,108,98,99,99,104,107,119,120,91,110,98,97,113,109,101,94,115,109,106,109,124,100,108,92,102,110,102,102,91,100,107,108,103,99,101,92,96,109,99,111,100,104,105,97,103,128,102,112,102,101,105,117,106,87,112,101,109,104,117,105,113,103,105,96,101,98,103,96,99,106,109,103,102,99,96,105,101,88,106,108,104,110,105,102,107,106,106,105,103,98,99,108,100,114,110,101,85,105,98,105,108,105,94,99,101,100,101,122,108,110,94,108,108,98,94,121,100,112,106,109,105,126,84,100,100,111,106,116,100,106,96,105,106,91,95,113,103,101,90,92,106,103,109,110,117,99,106,104,92,100,103,110,91,113,107,99,111,86,98,100,88,109,98,108,98,102,103,102,132,100,99,71,110,103,106,105,99,114,101,106,99,112,99,100,104,101,111,101,117,84,103,109,115,95,94,102,102,110,104,94,107,109,100,106,100,85,99,92,105,108,102,106,117,113,110,115,102,105,106,106,95,106,109,113,108,105,108,99,106,98,112,100,112,106,109,101,107,97,98,113,107,86,94,99,103,98,110,106,116,99,103,98,97,110,108,115,112,90,128,109,102,107,112,115,89,99,103,106,99,87,103,99,110,98,99,97,91,110,114,97,103,106,118,109,101,93,121,96,100,110,105,109,109,105,104,72,99,105,115,106,106,111,108,113,105,114,103,103,107,90,105,96,108,101,106,97,94,100,102,101,87,106,103,99,98,106,109,99,109,115,91,103,108,99,111,99,91,109,95,104,108,96,106,98,109,100,111,109,108,111,103,86,92,98,110,72,92,95,105,101,100,100,117,110,101,107,91,96,98,113,109,87,101,109,103,104,106,108,105,92,100,95,116,112,95,113,94,101,102,98,99,127,105,99,123,98,98,106,104,113,100,113,94,103,103,112,109,107,112,103,107,99,102,101,104,106,100,98,100,112,110,107,103,97,108,96,121,107,115,106,100,102,110,99,98,101,109,102,75,99,100,89,106,101,119,90,99,105,114,104,96,113,99,109,106,107,88,103,109,103,115,107,96,108,98,88,99,95,96,101,111,108,102,101,113,83,108,103,105,106,101,103,98,103,110,100,105,102,102,91,111,110,95,107,98,103,109,106,109,107,94,101,120,114,100,114,111,102,104,104,125,96,112,136,106,105,99,107,108,104,101,106,111,108,97,101,102,107,115,101,109,85,105,98,103,102,107,105,107,106,104,104,111,112,103,105,108,109,99,99,98,111,99,99,116,102,100,96,78,113,114,102,104,99,93,94,105,103,102,100,104,106,104,95,113,99,95,107,109,103,109,88,106,103,108,103,123,101,99,111,105,100,107,105,100,105,114,113,105,110,105,114,115,95,94,108,109,96,117,96,98,90,105,105,87,111,102,98,119,100,101,111,105,101,99,102,102,98,101,107,93,106,101,101,104,109,114,102,103,106,105,104,102,110,102,104,109,109,109,125,117,101,113,104,103,97,96,96,113,111,99,101,108,112,95,120,107,102,113,89,97,96,100,95,106,99,92,105,106,100,105,121,100,111,102,107,89,104,107,102,103,107,104,97,102,112,89,101,103,104,106,104,103,113,104,100,110,110,93,115,109,99,115,117,110,121,97,105,112,100,106,102,101,72,95,90,87,99,101,106,97,110,105,107,104,111,111,105,112,109,106,105,118,73,99,99,109,101,114,104,113,102,100,104,107,101,113,105,95,112,98,98,92,99,105,107,117,91,102,111,100,103,105,102,113,103,109,95,100,103,100,98,109,103,94,98,98,101,108,98,103,101,97,102,105,110,111,105,112,100,102,100,105,102,107,109,110,102,100,110,98,114,99,113,107,92,113,105,110,101,101,88,98,112,98,108,94,102,89,124,100,104,106,110,98,91,105,104,106,105,102,101,113,105,100,103,105,108,123,102,102,106,108,110,113,105,98,107,108,96,91,96,106,113,106,104,116,91,105,98,117,101,103,110,105,107,108,102,111,121,94,108,93,115,92,116,108,108,89,94,99,103,93,108,102,100,108,102,102,110,114,101,101,99,90,105,110,96,115,104,113,119,101,100,104,107,73,96,106,116,101,105,103,110,100,113,112,108,105,110,95,104,83,100,103,100,105,119,100,89,110,106,108,109,99,98,104,105,100,115,106,108,110,106,96,103,111,115,112,108,101,106,101,104,102,100,99,102,95,98,96,97,98,103,112,99,99,117,110,99,109,117,105,103,104,95,113,114,103,96,98,102,100,107,101,112,102,102,95,102,100,106,109,106,100,103,106,94,106,111,95,102,106,103,116,113,98,92,84,86,108,103,90,99,97,84,97,109,97,116,98,99,100,103,100,111,99,107,95,100,94,103,99,92,113,102,108,99,111,98,99,106,82,93,115,113,116,102,102,105,106,105,116,101,113,111,89,98,106,107,104,112,100,103,102,111,117,97,98,103,90,109,107,109,113,100,104,112,105,111,110,104,95,113,106,106,99,98,108,106,93,101,95,101,109,110,112,106,99,112,99,109,103,121,106,100,121,107,99,107,112,96,104,117,111,103,100,112,104,111,113,104,108,109,100,111,111,112,110,107,99,111,105,109,98,96,100,96,99,99,106,87,114,106,105,100,119,109,128,100,104,99,91,104,113,104,96,93,113,100,102,96,102,116,93,103,109,90,101,90,111,103,98,102,101,113,112,102,102,98,104,102,121,99,107,93,110,106,98,110,102,105,112,95,105,112,109,108,108,106,112,116,94,111,97,110,96,92,103,106,102,110,109,108,105,95,100,113,101,101,109,107,91,85,102,102,104,104,107,105,95,97,103,111,80,111,111,103,103,104,102,108,108,117,109,121,105,94,110,102,118,105,91,101,108,103,115,100,102,112,107,94,98,105,109,99,98,107,91,101,108,102,88,109,105,104,107,106,103,110,107,96,99,106,103,103,101,111,106,104,103,102,100,89,116,108,94,93,91,98,95,110,109,112,102,115,102,98,112,102,101,100,92,113,105,100,103,99,78,99,103,106,104,107,98,100,115,100,100,96,101,103,101,105,112,94,101,90,94,80,108,109,100,115,107,108,97,98,92,100,104,113,92,91,102,100,89,113,125,95,92,107,104,113,104,104,96,133,87,100,105,104,96,100,102,104,103,92,106,83,104,113,103,94,111,109,111,104,95,98,102,107,81,117,109,112,110,97,100,105,108,110,118,107,106,111,109,90,95,97,104,104,104,109,91,100,109,108,103,97,104,98,108,90,105,82,105,93,95,93,105,103,103,85,94,113,104,100,104,92,98,105,100,110,105,94,108,89,99,87,89, +479.7901,113,114,94,97,119,98,106,101,111,103,102,103,92,113,82,103,101,105,113,109,82,109,108,102,90,83,112,104,110,112,105,103,99,104,127,99,102,106,106,108,104,104,108,120,103,106,117,104,103,110,89,101,114,102,96,96,114,98,111,105,100,109,103,101,113,112,100,113,91,101,102,94,104,113,96,113,92,106,112,99,93,114,94,93,108,122,73,110,106,95,103,107,104,96,114,120,105,98,102,101,102,91,90,102,109,114,95,116,99,100,121,104,110,99,108,94,108,102,104,102,109,113,108,122,100,107,106,108,116,120,124,112,114,111,100,108,95,107,98,105,111,118,108,85,101,100,109,104,117,103,105,100,105,98,106,108,100,90,108,111,107,106,104,104,111,115,108,106,99,99,97,115,109,101,114,121,103,99,94,120,117,107,101,103,98,109,106,103,109,105,99,103,95,113,112,112,111,105,103,105,103,100,106,106,117,113,100,99,110,121,99,95,98,104,109,103,102,103,113,104,102,114,102,113,106,112,110,109,105,102,105,109,103,94,98,104,111,110,107,110,123,113,109,99,106,104,103,104,103,113,106,107,110,110,113,99,112,113,96,119,103,99,104,115,100,97,115,104,108,91,109,96,104,100,111,102,102,101,110,105,101,108,103,113,115,90,103,101,114,104,106,114,108,105,124,101,110,108,108,108,104,105,103,107,100,113,98,117,107,108,95,109,98,95,103,102,116,110,112,106,97,115,110,114,111,111,99,91,110,111,108,98,100,100,103,116,97,113,105,95,111,99,112,95,102,103,117,112,80,109,92,114,107,103,102,117,106,108,107,104,113,99,105,101,102,105,110,106,104,107,110,93,111,108,119,109,95,120,102,106,106,102,102,118,123,118,105,112,105,104,110,100,111,104,106,101,103,103,111,100,106,103,116,104,114,108,96,103,104,114,99,108,104,96,116,114,92,101,112,107,108,94,82,90,94,99,108,107,116,100,112,115,111,93,117,112,102,103,107,98,115,113,105,114,103,89,107,100,116,111,108,99,107,104,99,102,94,112,118,99,94,101,108,108,118,78,103,97,119,100,98,99,95,112,111,107,112,124,104,107,105,109,109,99,108,103,107,104,140,104,104,108,113,113,101,99,113,101,117,106,108,103,99,103,118,107,100,108,99,100,97,118,102,109,96,97,116,99,97,113,118,97,98,102,111,104,108,103,66,101,99,101,107,98,111,104,109,107,105,103,107,107,105,106,124,109,109,109,110,112,106,104,105,132,109,105,112,99,96,106,110,102,86,104,103,107,108,111,104,114,104,106,117,108,111,108,99,103,118,114,109,133,114,113,102,110,108,106,86,115,98,103,88,95,99,107,105,117,82,109,105,112,109,99,108,98,100,114,98,106,112,110,124,102,116,114,116,100,107,94,106,104,95,114,109,104,110,105,101,119,107,102,105,114,107,106,104,104,117,120,118,112,100,100,107,101,108,95,107,99,108,109,105,123,102,106,108,83,112,108,106,108,105,102,106,108,109,91,118,111,108,101,98,115,106,119,102,115,106,107,105,105,117,114,98,108,100,114,104,125,99,94,102,103,110,101,102,106,101,97,101,79,110,108,117,98,100,105,99,104,113,105,103,106,112,110,105,114,110,103,100,99,103,113,116,104,102,108,99,114,110,107,96,125,105,104,108,125,112,103,108,106,112,118,99,93,109,105,104,107,102,86,99,104,104,104,102,95,110,97,109,102,108,110,110,109,101,109,112,88,109,99,99,90,105,109,102,103,111,100,126,104,114,100,110,100,105,109,115,119,106,103,106,111,113,108,104,119,88,109,105,102,105,103,114,111,102,106,106,95,111,115,90,109,115,104,85,127,106,92,117,113,103,104,108,118,103,94,102,107,100,108,113,110,99,111,110,106,98,98,109,102,92,100,100,97,117,105,100,105,104,112,103,122,79,113,94,128,111,111,101,98,101,105,98,107,97,106,107,94,111,114,100,118,104,100,112,113,98,100,112,117,99,107,108,113,94,117,112,106,117,101,105,119,107,100,103,111,102,105,105,111,114,111,107,104,101,111,100,105,106,107,109,108,120,109,101,99,110,108,99,122,99,99,102,108,114,113,96,89,102,113,105,113,109,109,112,112,105,105,112,105,103,83,110,115,113,112,101,114,140,104,95,109,113,111,122,101,109,109,102,111,98,104,111,93,91,109,102,113,106,101,95,100,105,97,118,120,98,107,103,98,108,105,106,102,114,115,99,106,110,105,116,107,103,111,113,107,112,117,106,98,92,103,106,104,110,102,100,105,100,102,104,104,97,109,99,92,105,96,107,120,115,104,115,102,117,104,114,111,99,101,113,95,109,93,99,116,109,114,89,109,93,101,113,95,125,107,117,110,112,117,105,106,99,85,109,100,109,109,98,104,128,118,100,107,93,96,116,105,104,114,105,108,111,101,111,100,106,110,113,103,112,113,104,106,104,114,99,102,103,104,102,97,107,108,99,98,104,116,113,125,105,120,133,91,98,129,101,107,96,103,108,113,107,101,105,104,95,108,85,107,122,95,101,105,106,111,99,103,117,110,107,101,106,102,107,97,96,97,105,98,101,115,100,103,128,99,112,98,106,107,107,102,107,113,109,91,98,105,106,102,105,94,108,107,99,142,120,107,109,101,101,111,100,117,103,92,112,120,99,101,107,103,110,108,109,106,109,111,106,107,108,110,102,106,109,97,94,103,99,101,105,83,114,114,119,97,98,98,101,125,105,100,106,95,109,111,106,91,110,115,113,108,99,103,100,105,112,109,96,106,98,105,106,113,102,115,111,105,98,108,104,101,83,95,109,103,111,103,104,113,105,113,111,107,113,110,109,112,116,105,107,109,109,105,99,103,101,112,99,106,92,106,92,92,95,97,103,112,98,109,105,108,106,104,100,101,99,104,109,103,100,86,106,109,112,98,111,116,108,101,117,111,92,106,112,111,99,99,88,106,105,107,111,104,108,97,100,96,116,104,104,105,96,103,105,110,105,105,105,106,102,116,105,104,120,102,100,108,91,108,117,104,120,96,111,98,102,123,115,111,88,95,85,92,106,113,104,92,89,117,112,107,97,105,108,112,104,99,103,96,102,102,108,114,102,109,100,98,87,99,103,95,106,102,100,110,109,99,104,94,104,110,113,107,83,107,90,103,112,99,103,109,103,110,105,106,106,101,96,109,102,94,98,106,99,104,104,115,100,107,102,94,113,100,92,93,120,104,110,99,121,106,105,107,112,113,101,115,117,114,106,119,102,106,92,113,108,110,111,109,105,109,98,106,106,103,84,100,112,108,105,104,109,108,108,99,103,88,103,105,91,102,117,99,109,103,131,112,98,97,109,104,94,95,96,112,98,100,106,113,108,104,95,106,104,97,100,103,92,117,112,120,105,104,116,90,98,104,106,116,91,102,116,99,103,100,110,93,108,103,94,94,105,107,109,108,97,94,118,118,110,106,113,103,103,104,116,91,112,111,100,91,108,108,112,106,123,129,103,114,104,101,96,129,113,110,104,110,104,99,119,107,118,101,103,111,88,113,112,101,110,116,110,117,113,109,94,99,84,99,93,113,100,115,117,107,105,113,104,72,113,109,119,104,96,109,111,106,99,104,103,106,106,113,107,106,104,108,110,112,113,116,105,91,97,116,109,96,85,112,99,102,91,89,94,105,106,104,102,94,99,95,106,98,102,114,102,96,104,101,107,103,110,95,93,110,101,94,116,108,95,98,105,108,105,100,101,112,100,108,95,106,107,104,112,104,112,119,102,107,100,110,107,107,115,105,103,104,109,101,115,109,113,96,115,103,95,116,92,84,95,104,98,105,100,107,91,100,98,101,121,106,104,109,108,104,107,112,102,102,102,127,103,96,101,107,100,112,92,104,106,99,102,99,105,104,106,100,121,103,78,96,113,107,107,113,101,106,105,111,117,118,102,112,117,111,104,115,109,110,102,106,100,102,110,121,98,119,104,103,101,109,104,105,90,107,96,106,125,109,105,99,103,114,87,101,113,90,98,107,102,92,109,103,100,114,110,113,99,112,104,100,108,113,104,103,101,103,106,92,109,112,106,108,102,88,89,114,103,107,103,105,113,104,98,98,110,114,85,102,98,110,104,106,109,104,88,102,113,113,106,95,93,99,104,110,103,97,97,105,114,110,105,109,109,111,113,100,109,100,117,87,107,112,101,104,111,113,94,107,100,104,96,99,85,99,96,107,109,102,101,102,107,106,102,80,99,116,107,103,78,105,95,98,102,102,109,113,98,98,121,99,104,112,98,108,95,109,101,92,107,121,98,95,107,98,109,116,107,93,104,97,102,100,92,109,93,107,100,102,112,107,103,96,100,101,106,104,101,103,111,99,107,95,102,104,112,105,100,108,116,102,91,114,88,109,112,105,119,97,105,103,105,108,96,104,112,107,97,96,121,105,105,102,87,102,104,102,98,98,104,98,103,108,102,109,98,101,105,116,103,107,108,110,97,102,97,106,100,103,98,96,102,98,99,102,106,105,101,112,112,101,87,98,115,105,98,103,94,101,106,127,109,110,103,105,105,112,112,105,109,98,97,96,115,102,95,105,101,113,105,103,114,89,98,114,103,93,99,112,97,106,119,95,114,110,107,110,96,91,112,109,89,111,110,103,124,99,98,96,105,102,109,105,132,95,100,111,110,104,98,78,100,111,94,97,113,104,103,103,96,100,100,92,113,109,103,109,110,94,106,104,100,98,95,103,105,101,96,106,96,108,101,102,106,110,98,106,108,94,112,96,104,103,119,128,98,108,101,114,101,104,103,107,100,108,95,111,99,101,108,108,82,114,83,113,87,109,108,121,108,101,91,95,102,123,110,98,98,100,100,92,110,92,101,96,100,89, +479.93063,106,112,98,107,114,109,116,104,104,102,107,100,100,114,109,101,102,90,93,102,105,92,99,74,104,122,106,109,112,101,95,92,83,102,110,102,98,103,96,97,95,95,102,104,99,112,93,81,86,115,116,121,101,98,105,95,99,87,104,97,115,103,95,98,113,129,99,105,121,108,108,93,104,90,102,107,104,99,112,101,110,100,97,109,101,80,93,96,97,99,105,109,95,97,102,101,107,105,109,101,109,97,109,100,111,92,91,102,100,99,96,101,95,93,112,105,102,93,116,113,99,120,106,100,109,95,101,104,95,103,98,93,103,101,84,108,103,127,101,97,90,113,98,96,102,92,124,109,99,98,109,101,109,106,99,98,102,98,112,115,102,94,103,100,105,97,98,106,99,98,92,116,104,110,95,100,115,96,113,110,99,131,92,115,109,105,98,103,95,106,112,107,103,111,95,104,104,100,109,99,97,109,99,96,105,108,116,96,97,99,102,98,93,106,114,102,100,108,110,105,93,102,101,88,97,103,110,83,103,102,101,86,105,99,100,107,97,97,98,99,103,109,111,94,103,100,103,98,93,107,104,103,96,103,113,108,107,108,99,106,101,112,100,109,100,115,116,106,99,105,106,102,109,93,108,90,93,84,103,112,99,109,100,100,120,109,97,109,100,111,118,94,108,108,102,109,100,101,96,98,94,103,102,97,96,108,101,111,94,104,97,99,99,98,116,103,100,117,102,113,101,100,114,112,109,93,102,109,111,96,107,109,95,104,111,106,109,119,98,101,102,107,98,109,98,112,101,112,97,108,102,98,100,101,100,116,104,98,93,114,91,101,105,106,109,110,113,110,100,106,103,108,92,104,106,104,102,137,109,106,95,94,113,104,101,102,90,102,97,107,106,90,100,104,105,106,99,105,99,98,99,105,104,103,102,99,100,110,109,107,93,94,111,98,112,100,94,96,100,111,111,106,90,104,97,103,104,91,98,98,103,112,104,105,109,110,100,101,99,93,113,97,104,99,103,118,106,99,103,107,95,95,107,110,106,102,105,105,96,97,101,100,97,100,92,110,97,101,102,110,101,105,105,109,85,116,86,106,97,106,104,101,110,106,108,99,108,103,98,91,105,96,97,97,104,100,99,98,104,116,105,100,88,108,96,89,106,109,105,112,109,95,109,113,104,113,105,97,90,103,109,102,100,105,101,103,117,103,93,100,99,102,103,93,107,99,102,98,95,125,101,92,92,97,101,101,108,94,109,99,111,113,106,96,111,104,103,106,100,109,107,102,110,105,101,98,95,104,105,110,95,98,97,104,103,108,102,102,105,107,105,96,120,94,101,103,109,118,93,100,104,120,96,94,129,101,105,108,82,99,99,106,104,91,95,105,93,97,107,103,106,108,105,105,113,105,106,108,106,108,102,103,99,103,110,107,96,94,103,104,96,113,101,111,101,98,117,100,110,101,104,110,93,94,86,99,102,112,103,119,102,103,109,78,91,101,108,115,103,104,95,120,109,107,104,109,117,94,112,107,109,120,116,104,96,106,105,103,107,114,103,103,100,98,98,105,95,111,105,108,101,117,102,102,98,110,106,91,78,94,101,96,104,87,93,91,129,92,99,98,103,101,107,104,103,104,112,114,105,98,97,86,101,121,99,103,102,99,106,103,103,99,111,96,102,89,101,100,96,114,97,89,96,108,111,97,98,107,108,112,115,106,100,95,99,100,99,104,113,107,100,100,103,95,102,100,102,104,106,95,101,95,112,111,99,103,105,99,99,99,98,109,106,108,103,102,105,113,107,105,101,105,114,99,100,103,100,113,109,102,84,110,101,108,105,100,98,105,98,101,106,86,94,99,104,99,110,113,105,97,113,94,102,103,109,110,94,110,101,102,103,98,100,104,96,100,112,102,109,102,115,100,106,113,103,105,94,102,99,93,102,84,111,112,104,104,102,98,102,130,96,91,111,82,94,96,100,109,98,104,91,110,104,98,109,116,94,101,110,115,107,105,110,94,103,109,109,125,106,107,100,108,105,103,95,98,109,106,110,96,104,102,114,106,107,107,94,99,97,105,98,117,92,110,107,101,92,107,102,95,105,111,92,102,109,107,95,99,98,110,97,86,95,108,107,84,109,110,116,109,90,107,100,112,106,105,114,118,101,104,102,104,99,118,103,114,110,106,103,99,104,99,101,104,111,105,105,105,95,101,96,105,85,116,100,108,106,111,97,100,113,106,104,99,84,117,91,106,113,97,105,113,116,106,105,97,99,104,82,97,103,98,104,104,110,113,116,112,94,103,101,105,104,114,91,110,102,106,104,95,115,104,109,98,99,104,103,108,101,101,100,99,115,109,108,100,95,108,105,99,98,105,115,100,94,104,100,102,97,103,106,94,95,103,98,86,111,97,104,102,97,113,102,104,104,109,106,106,97,88,107,104,95,104,102,103,106,84,107,125,103,100,95,103,97,91,101,99,76,104,94,112,99,109,109,116,118,110,94,102,97,94,104,93,107,96,100,95,97,111,119,103,104,99,103,95,98,113,107,99,98,108,99,98,94,97,94,105,105,110,110,106,116,113,107,104,109,101,104,117,91,91,100,99,120,105,99,100,111,90,116,104,109,98,104,90,115,101,96,102,105,114,107,94,113,100,104,112,119,89,102,109,104,94,107,91,96,101,118,104,101,99,89,99,109,96,110,99,107,112,94,112,105,106,100,112,109,109,101,98,99,107,95,102,107,117,109,121,103,97,110,83,104,102,111,105,107,95,129,99,113,100,95,100,100,102,109,106,100,112,102,112,97,103,102,117,108,111,109,114,106,105,100,101,97,98,117,116,110,99,105,104,99,102,89,102,98,100,101,103,99,94,100,91,106,112,109,105,98,110,99,113,99,113,104,112,105,104,101,92,105,101,124,123,109,106,104,119,124,104,87,108,100,91,100,107,106,104,103,97,107,100,92,109,106,100,98,109,105,95,98,101,98,95,101,114,103,94,105,108,97,101,101,96,99,97,97,105,104,112,111,108,119,107,113,96,106,100,98,104,98,91,107,98,114,89,102,105,102,106,105,105,95,109,103,95,102,105,109,112,115,68,80,105,107,104,95,112,104,95,98,97,96,94,100,98,108,95,91,108,102,102,112,110,108,95,99,85,97,100,117,113,103,106,110,103,104,100,106,104,103,101,105,99,106,102,110,100,109,96,103,104,89,107,108,107,103,104,102,94,102,95,95,104,109,95,95,97,111,104,103,85,108,109,94,96,112,83,100,105,105,119,99,100,103,104,112,100,98,104,106,106,95,100,97,124,108,100,103,103,71,109,92,100,116,101,111,105,106,110,88,109,91,101,104,115,104,106,96,105,101,105,101,108,117,102,104,100,93,96,101,114,98,89,100,101,96,114,109,87,95,113,95,105,100,102,91,129,90,98,99,104,100,100,101,101,101,104,100,89,98,99,107,91,91,91,113,99,89,105,122,110,87,105,100,98,79,111,112,106,99,93,93,112,105,100,96,113,98,102,111,113,117,109,112,97,108,125,99,95,97,110,105,102,106,96,92,93,105,113,112,100,106,100,90,114,106,116,105,82,106,108,97,106,96,95,90,106,101,103,104,103,99,102,110,103,106,111,100,103,95,108,109,102,89,103,93,109,103,97,106,101,106,106,96,109,97,99,102,105,116,109,100,99,102,96,110,123,111,93,99,90,106,100,105,92,113,110,104,103,110,102,108,104,98,91,108,91,101,96,111,102,109,101,105,105,94,99,106,95,94,108,98,80,94,99,98,103,106,109,95,102,104,115,105,100,109,115,116,112,106,99,101,103,108,105,111,100,98,110,95,90,101,96,103,105,103,104,113,99,87,97,121,95,101,105,97,98,96,95,102,103,93,96,97,105,102,104,101,113,74,98,100,99,117,104,100,96,99,114,93,98,112,105,98,100,104,112,111,105,108,103,113,97,102,106,104,104,113,100,102,103,111,109,104,111,95,105,104,84,100,100,101,94,113,98,102,88,107,125,112,98,112,97,101,101,119,105,109,110,124,116,104,102,95,99,103,107,116,91,109,114,97,95,98,107,106,106,103,95,92,107,104,100,110,106,95,99,103,96,104,96,105,105,106,105,108,92,102,96,102,91,104,113,100,103,125,101,101,102,102,91,97,102,101,111,95,98,93,96,109,108,101,94,114,110,98,96,99,111,99,99,94,96,98,94,104,104,114,102,104,100,110,93,102,94,99,93,99,94,108,106,111,100,100,100,120,111,96,101,104,95,110,107,113,100,106,106,87,113,106,102,108,109,89,106,103,103,104,98,111,99,96,105,114,96,121,95,102,98,95,101,112,115,106,105,105,96,106,117,90,101,117,104,92,107,113,91,101,89,67,112,103,95,117,91,99,101,107,96,96,94,98,107,98,101,104,100,114,106,91,86,109,105,106,96,87,98,126,104,104,111,104,94,104,109,101,103,96,93,106,106,89,108,116,94,81,116,89,102,96,105,98,112,102,98,99,109,107,105,97,92,102,105,95,108,112,98,95,104,110,113,102,107,107,114,100,96,95,119,80,101,103,102,95,104,109,87,102,105,90,109,105,123,106,108,101,111,100,96,91,94,104,106,98,109,90,114,98,100,108,97,96,104,113,103,112,114,93,99,108,105,109,92,113,92,87,106,105,83,113,101,99,107,98,99,105,113,99,123,101,99,109,110,99,102,99,91,106,96,95,87,99,99,96,92,100,86,103,130,86,105,86,102,104,97,72,100,114,101,85,113,113,105,96,107,111,91,96,115,103,95,94,102,94,113,106,95,101,113,91,84,94,106,102,97,110,96,99,99,109,98,87,108,81,107,96,103,108,113,100,100,106,93,105,102,94,95,101,87,96,97,115,88,87,100,111,89,106,102, +480.07117,110,95,106,107,138,125,110,110,102,96,102,111,99,103,116,98,94,101,103,113,114,107,91,102,84,91,100,96,93,103,108,100,103,99,143,105,106,104,105,99,109,114,104,107,112,108,92,114,108,86,105,99,100,104,109,99,104,103,108,90,105,103,110,93,119,118,109,96,101,100,113,103,98,118,100,107,98,108,106,98,110,107,104,103,100,98,95,110,99,95,104,108,86,105,96,98,100,94,97,87,100,106,105,95,102,107,105,108,110,112,102,104,119,97,99,99,133,113,107,108,89,109,94,119,106,108,119,109,102,116,106,114,103,109,110,110,112,97,107,112,104,95,95,105,107,99,117,94,108,94,110,104,109,94,98,84,119,97,123,105,112,113,99,92,95,104,100,92,100,101,99,99,109,103,117,96,116,103,105,101,91,94,102,78,79,113,106,102,109,101,104,111,111,105,107,108,100,98,101,105,119,101,99,115,100,99,105,104,113,110,91,107,103,108,106,97,109,114,108,114,109,105,94,99,116,104,101,114,94,104,106,107,107,104,110,101,102,111,109,94,108,104,102,103,94,113,119,102,117,101,102,104,104,96,96,99,100,91,91,100,88,99,112,103,102,100,98,97,109,94,102,107,112,102,118,99,114,119,103,90,106,114,99,100,107,101,102,102,87,94,108,110,113,100,108,102,108,106,115,108,120,96,105,102,86,108,116,105,101,110,95,109,109,99,107,100,106,104,100,104,114,103,116,112,104,90,105,96,116,94,88,106,102,111,97,98,105,94,101,99,98,113,111,102,112,109,103,109,99,100,117,112,115,100,113,106,101,117,109,103,83,117,104,109,96,97,78,107,105,109,108,90,109,110,117,99,102,99,108,104,106,103,109,114,118,106,106,107,105,99,110,78,108,108,106,98,94,118,101,107,106,101,101,98,91,103,99,110,107,99,100,105,108,106,106,104,104,107,113,109,112,111,101,111,110,97,104,105,114,112,106,78,113,100,101,98,106,100,104,107,116,108,81,107,96,92,104,98,101,109,112,111,106,97,105,102,117,105,114,109,101,104,98,103,111,118,114,104,96,102,95,114,100,103,105,101,102,107,106,109,103,113,101,120,106,118,102,98,111,83,101,105,111,109,103,114,98,106,114,112,106,102,105,101,103,103,104,100,107,110,107,119,104,108,104,106,114,95,138,101,110,109,103,107,102,105,113,116,105,108,106,119,92,95,103,100,106,109,113,129,110,109,102,100,113,99,107,107,106,104,109,115,110,92,95,103,111,103,112,111,102,113,107,107,103,105,104,105,105,86,95,98,110,100,100,96,106,101,103,116,103,97,104,96,102,102,120,103,101,100,102,106,90,102,108,110,116,117,97,95,120,104,100,112,106,111,95,106,118,99,116,115,98,112,101,113,104,106,107,108,105,103,95,106,121,109,105,108,116,100,105,105,108,113,105,104,99,98,96,104,104,106,97,125,101,99,84,104,107,107,110,97,109,100,86,100,109,109,97,102,107,95,119,110,104,106,102,92,118,107,97,98,101,94,110,107,103,103,110,100,99,116,104,104,101,93,95,126,108,109,105,99,107,107,113,104,103,106,105,97,95,98,99,99,102,101,120,114,98,110,112,95,106,108,105,102,105,109,112,105,95,104,105,106,104,100,100,108,121,108,103,113,104,94,100,108,112,106,114,107,111,108,87,98,90,108,119,96,101,109,106,105,98,98,105,111,109,105,121,103,100,117,106,101,105,94,91,94,108,90,107,92,102,108,100,108,104,105,98,90,105,100,110,108,102,108,98,101,100,102,95,98,97,108,94,102,107,111,97,108,100,101,102,109,105,102,102,101,108,88,105,103,110,103,107,96,108,95,113,109,113,104,105,108,102,115,112,94,119,101,117,107,108,102,93,113,124,94,101,105,90,114,107,121,103,108,116,97,101,98,106,95,105,101,105,113,101,115,109,104,104,113,107,102,101,89,95,100,103,104,96,99,92,109,92,92,113,98,110,99,110,98,105,99,109,111,104,106,107,105,99,110,109,100,103,102,97,109,98,109,107,108,106,100,113,111,101,120,103,95,109,113,104,109,99,100,103,116,98,100,100,114,106,110,87,96,112,102,105,102,108,107,122,107,102,100,102,101,99,105,103,114,104,101,83,101,99,99,110,104,91,109,102,101,105,99,101,96,101,98,110,98,107,106,109,106,91,108,101,97,104,127,117,107,88,102,100,95,128,101,104,115,101,96,95,103,104,98,108,105,101,102,104,102,117,112,105,108,106,97,108,102,102,89,111,106,112,104,99,108,100,102,102,111,88,102,98,98,103,99,99,107,104,64,110,100,95,102,98,100,103,107,97,113,107,96,100,105,110,105,110,111,104,103,104,100,106,99,104,105,92,106,104,95,94,99,101,94,95,116,108,115,101,97,101,104,98,111,90,94,109,108,105,110,98,93,102,98,83,112,110,99,107,120,113,117,105,96,122,107,120,111,92,108,99,121,96,108,115,114,95,97,109,103,118,110,102,102,113,105,109,111,96,108,105,97,122,115,102,108,99,102,104,68,111,110,115,104,102,104,97,104,102,98,78,98,99,102,104,96,104,107,106,99,107,113,106,108,95,100,103,106,107,111,102,114,104,109,114,92,104,96,97,96,110,106,110,96,104,101,102,102,107,112,105,106,112,120,96,103,109,113,105,106,103,125,110,99,91,94,112,107,98,107,107,108,103,89,118,109,103,105,102,110,102,102,101,113,98,110,96,109,116,101,113,110,102,107,102,104,105,108,96,99,109,99,112,104,115,101,103,94,109,94,116,82,103,97,102,110,108,108,103,99,97,109,104,101,90,95,90,106,108,80,99,109,99,103,112,103,103,102,100,109,106,115,101,94,109,109,96,109,106,110,105,95,102,107,105,105,108,105,109,103,120,108,104,108,112,106,107,103,75,102,103,114,97,105,111,102,96,113,108,115,101,94,113,106,104,101,99,117,109,98,98,94,122,134,102,104,101,100,92,102,87,96,114,108,105,92,98,105,100,109,95,116,109,100,91,102,99,104,114,92,110,103,107,90,103,110,98,110,81,87,97,105,94,114,92,100,100,117,104,99,120,119,105,102,89,111,95,99,111,110,100,103,83,91,99,103,106,96,108,109,99,113,97,120,95,106,109,101,104,106,104,105,107,99,107,107,107,107,94,103,101,100,107,101,115,111,107,98,89,102,98,95,109,102,103,95,108,99,98,105,92,101,91,109,102,94,99,114,106,101,103,106,108,110,108,104,98,113,110,102,98,98,110,99,109,101,95,104,116,112,98,105,109,86,106,97,104,104,113,102,105,119,99,100,106,107,99,103,104,93,105,99,128,110,116,88,116,98,109,100,105,111,111,102,98,102,99,100,96,102,114,78,98,67,112,108,105,100,119,109,105,79,105,99,111,98,106,104,98,99,113,107,114,103,102,92,103,96,109,107,108,94,100,106,99,90,105,97,99,106,106,105,105,100,121,113,103,95,105,106,107,103,106,108,97,93,106,104,105,106,111,103,115,109,100,107,100,107,107,115,102,88,95,104,101,102,100,87,92,95,103,103,95,95,93,98,82,102,112,100,103,106,111,98,104,102,102,104,102,102,103,101,110,118,111,100,100,98,105,108,105,106,112,102,116,106,99,113,104,113,100,108,115,92,111,113,107,102,106,106,96,100,104,112,99,105,103,99,108,96,101,106,104,103,108,103,95,106,101,99,108,99,99,99,99,95,109,99,101,93,116,113,93,112,103,119,99,101,109,105,96,110,102,99,110,104,101,102,111,102,117,98,105,105,101,121,107,98,118,96,117,98,112,106,95,112,99,104,103,106,101,110,95,106,90,96,110,102,101,101,108,98,104,117,99,94,101,104,111,106,118,103,121,102,97,91,110,108,106,102,111,100,112,103,107,107,117,93,104,106,109,96,101,107,117,102,105,99,109,110,96,112,91,109,106,87,108,109,97,104,87,97,105,103,101,115,104,105,102,101,111,93,96,104,101,105,102,107,103,107,111,126,106,104,105,102,112,103,102,105,104,105,97,99,110,87,106,109,102,96,102,106,100,112,107,112,101,104,102,99,113,102,109,96,103,108,117,103,106,107,100,109,115,105,102,116,115,109,102,107,109,100,113,105,105,103,101,101,109,98,95,98,106,105,109,95,95,105,107,100,108,113,112,109,108,103,103,99,99,106,107,88,105,106,111,111,110,108,100,103,95,107,105,101,108,104,100,106,106,99,106,102,109,107,106,104,113,92,107,112,99,102,109,101,95,102,95,110,101,99,100,100,102,117,107,106,102,112,99,104,93,108,98,104,107,92,101,107,112,101,107,98,113,107,107,109,96,102,109,113,112,110,101,107,106,109,95,110,106,116,103,112,106,100,107,98,99,93,108,112,99,106,97,71,106,106,103,92,100,101,103,96,101,108,105,100,106,99,100,115,106,106,111,117,103,112,93,90,89,103,110,108,109,104,127,102,112,107,102,103,102,109,105,112,99,100,99,105,106,95,97,90,96,109,106,116,102,106,104,110,96,98,107,100,116,101,112,97,113,94,116,88,100,104,103,104,84,101,94,116,104,102,108,105,106,105,106,102,103,111,104,107,105,110,103,104,111,95,99,91,111,95,107,99,110,101,92,94,113,102,91,104,102,100,92,97,108,98,105,99,114,88,110,116,102,102,111,124,102,98,105,98,111,97,98,84,96,114,91,106,109,100,98,110,110,93,105,105,78,111,103,100,101,99,107,105,93,114,104,105,94,78,113,94,103,96,107,104,99,99,92,103,107,109,98,97,94,107,97,108,102,100,104,112,108,98,123,113,99,109,97,121,116,100,103,94,104,121,108,101,104,98,106,100,91,100,88,95,112,100,114,84,103,98,104,109, +480.2117,83,103,95,96,90,80,110,115,97,111,91,106,92,100,105,103,106,103,102,98,104,107,99,87,98,118,94,99,106,111,99,79,95,105,111,103,111,85,104,107,116,100,107,87,101,107,102,99,99,118,112,91,112,104,98,93,101,99,100,96,105,103,93,113,111,96,104,105,104,109,94,99,89,95,98,106,99,98,114,108,113,112,104,98,104,100,83,108,99,105,90,107,95,111,102,101,100,93,105,101,105,103,112,100,110,110,99,119,106,98,100,100,109,103,91,109,95,116,105,90,104,108,105,99,105,111,112,99,98,106,103,109,113,103,104,98,108,91,95,111,105,108,112,107,98,75,116,86,103,102,97,108,112,101,98,107,104,105,93,113,96,99,106,103,103,108,105,107,87,113,105,102,102,102,104,100,98,98,115,103,106,109,116,117,106,108,118,71,103,103,92,111,100,67,100,79,103,123,105,105,99,96,101,105,110,107,110,99,95,100,98,107,108,115,106,107,103,101,103,95,107,103,99,103,104,91,105,103,108,108,109,111,106,95,110,109,105,117,102,93,113,110,108,110,91,116,92,103,98,104,99,106,94,100,103,109,98,109,99,103,99,120,99,115,105,108,91,114,103,104,108,109,109,103,102,98,95,91,99,102,82,106,104,109,100,97,95,107,107,101,103,98,103,115,99,106,106,100,111,113,128,109,100,111,104,107,104,116,100,102,99,113,107,110,103,82,92,94,97,97,111,91,105,98,110,99,99,97,103,102,102,96,111,110,121,119,94,94,112,90,98,104,109,99,100,109,108,111,103,110,94,104,91,94,87,109,104,107,98,103,90,94,108,102,103,98,105,80,107,104,91,110,110,101,108,99,103,100,106,109,110,105,94,114,102,113,96,95,106,94,111,102,90,103,102,105,103,106,101,117,115,95,98,94,126,106,110,97,106,97,95,106,111,100,105,101,97,109,112,110,98,101,99,105,92,96,84,99,103,108,107,95,102,96,104,98,100,114,103,104,115,100,114,93,105,95,106,121,118,99,94,103,96,104,79,92,106,97,114,91,112,105,94,103,98,112,104,107,105,113,104,104,103,101,105,103,106,105,104,107,93,99,110,99,102,104,112,117,110,100,103,98,111,108,99,104,100,115,106,109,104,106,108,104,98,109,105,105,110,101,103,114,92,103,112,109,91,106,112,98,109,94,97,83,107,99,115,99,98,124,96,98,101,103,101,103,94,97,108,102,108,103,95,106,105,106,107,112,103,99,102,105,118,108,96,106,105,101,101,105,103,104,101,107,102,123,109,104,103,109,110,92,101,113,109,111,104,93,100,108,92,98,117,105,105,104,108,99,102,96,89,107,105,123,97,107,99,98,106,108,113,115,106,103,105,116,102,102,111,111,111,111,112,107,84,99,102,92,100,100,104,98,99,105,112,104,101,117,105,107,96,99,87,108,99,100,101,96,107,123,113,109,100,94,98,106,99,98,109,116,72,74,106,101,101,105,107,105,103,105,101,109,127,114,118,105,103,80,94,109,110,94,96,103,128,110,92,113,105,98,118,108,119,107,118,86,89,106,109,95,101,117,96,112,105,100,101,109,109,107,102,96,106,93,109,105,100,110,114,90,113,99,107,95,99,112,110,105,106,98,108,106,109,104,103,100,104,105,100,117,111,106,94,103,105,105,115,97,87,111,96,99,120,95,98,110,103,103,109,100,105,112,100,90,102,98,103,93,117,129,103,100,96,98,96,108,106,98,103,108,107,110,101,106,109,120,106,112,93,101,116,107,117,106,98,95,118,108,102,116,109,116,103,103,108,111,121,111,116,97,101,102,93,106,105,109,95,110,98,105,103,97,112,108,109,100,106,102,100,108,105,108,113,103,120,107,109,101,104,91,98,106,102,103,110,94,95,131,98,99,100,100,116,104,97,104,104,101,76,109,101,95,97,108,101,104,108,105,107,86,108,102,108,108,97,101,103,97,119,117,106,109,98,102,99,105,102,103,106,110,94,105,106,99,98,103,96,118,107,104,109,101,107,94,108,94,106,111,104,105,118,109,100,108,108,100,104,113,87,98,87,102,101,114,112,92,80,108,106,105,120,100,107,121,114,104,113,106,101,98,105,107,105,113,84,99,104,98,109,101,104,105,102,104,122,96,107,106,105,97,104,101,112,109,98,114,99,107,95,104,116,98,111,98,114,100,113,91,109,95,101,113,112,91,101,113,111,114,99,102,92,103,99,112,110,99,112,100,101,84,97,90,103,103,93,104,93,99,95,102,102,107,102,104,100,95,108,97,108,109,110,111,86,118,97,104,106,108,109,93,111,117,100,97,109,102,94,104,102,103,96,91,103,107,100,91,98,80,109,100,100,96,95,105,105,108,107,100,111,96,99,110,95,112,95,117,94,108,112,101,109,101,102,105,100,115,108,99,109,92,95,111,107,107,101,100,106,98,97,101,103,113,105,99,112,98,110,100,104,105,106,104,117,95,105,115,100,104,113,109,109,99,105,112,99,102,92,94,117,120,108,103,106,106,117,104,98,99,99,110,105,98,105,102,113,84,84,99,107,95,108,114,104,107,110,102,111,99,98,105,105,101,100,120,104,97,117,99,114,109,104,119,115,96,97,107,107,106,95,101,113,99,102,98,110,121,112,115,108,105,104,100,111,108,103,102,134,99,115,132,105,101,114,106,119,113,100,104,107,107,94,109,108,121,109,111,92,108,103,115,86,106,131,116,95,117,103,113,104,115,108,94,104,110,109,106,113,111,112,108,104,106,106,109,100,111,97,106,107,100,101,110,82,108,111,94,113,110,98,109,117,105,111,111,110,102,132,112,94,107,95,105,108,103,104,102,99,98,113,117,107,106,103,89,97,105,101,85,99,109,102,110,103,103,109,98,97,108,105,105,113,99,116,130,102,103,111,103,102,101,101,107,109,103,105,106,100,89,119,111,109,115,108,103,106,98,105,119,103,112,101,104,102,105,108,98,103,112,99,107,112,107,83,104,118,115,106,106,102,98,108,104,114,106,107,106,107,113,107,108,111,106,107,99,117,106,103,108,115,109,102,95,88,100,104,103,109,111,107,97,112,107,101,92,120,96,108,116,106,127,113,107,115,101,113,96,98,113,104,104,97,104,103,104,105,101,94,108,105,100,102,99,103,107,109,102,115,92,113,102,109,111,104,109,108,106,96,101,95,100,113,112,107,104,104,101,99,107,100,107,96,117,103,97,114,110,103,111,109,104,105,94,103,117,103,113,105,113,124,97,110,104,102,98,94,104,102,103,111,103,109,97,102,104,108,93,108,102,109,98,104,112,109,112,112,104,105,85,102,99,101,112,103,91,102,113,102,91,101,117,96,95,104,108,95,107,98,102,101,104,113,104,105,101,85,114,109,103,109,107,112,109,95,91,110,106,105,77,101,109,100,95,93,104,100,105,99,96,105,95,104,110,105,94,101,105,120,105,104,106,100,103,96,90,97,106,114,97,118,106,92,107,96,106,109,103,106,106,109,103,112,110,102,106,106,114,102,98,102,112,104,99,116,92,106,108,101,87,108,118,95,101,103,103,104,103,98,101,107,95,95,98,97,98,98,99,105,104,94,108,99,105,96,104,100,87,117,111,106,109,101,103,112,113,98,115,110,97,100,79,109,109,101,105,123,106,117,114,104,109,114,110,109,132,109,102,87,116,105,103,102,109,111,107,106,113,106,114,111,100,106,109,112,96,109,107,107,120,111,96,114,109,102,108,107,104,109,121,105,97,113,108,108,115,111,99,103,92,99,108,89,116,109,113,113,106,102,107,103,105,106,107,107,102,98,97,133,112,96,102,107,103,113,128,106,115,109,100,111,107,104,107,94,113,109,100,110,109,111,108,116,101,100,109,111,107,98,102,110,104,113,109,100,102,103,100,113,100,120,105,111,102,111,108,107,103,81,129,106,102,91,111,106,125,97,107,117,105,106,103,113,103,107,122,113,114,95,105,103,100,95,104,106,104,118,98,109,105,112,110,109,110,100,101,110,113,116,102,108,100,75,117,97,104,111,110,106,109,118,91,102,108,104,105,103,111,103,99,97,98,114,112,99,100,113,121,102,105,92,111,111,107,96,92,116,105,116,113,110,112,103,100,108,111,99,110,116,111,107,103,101,106,105,97,117,94,110,116,96,92,106,103,106,108,116,105,102,110,105,103,107,92,94,99,102,102,106,103,105,101,106,93,90,107,120,112,98,104,100,113,103,96,100,109,106,88,120,105,106,102,101,80,104,113,92,96,100,114,96,114,98,98,108,94,100,96,100,98,98,109,110,107,109,95,100,108,98,110,102,97,113,108,101,105,102,98,103,104,102,98,104,108,116,102,106,110,97,106,98,101,104,106,102,98,124,103,109,101,103,91,100,90,103,112,105,112,99,110,98,108,111,113,110,104,94,105,94,116,105,102,110,124,106,106,113,96,105,104,102,98,105,110,102,98,104,98,103,109,107,105,100,100,96,107,108,103,92,113,99,93,109,85,109,99,100,100,98,102,121,107,109,113,106,106,96,99,106,107,104,112,110,103,115,108,102,105,116,103,110,102,104,91,100,102,121,106,104,104,105,104,106,102,104,102,107,110,99,103,98,111,115,105,100,107,111,106,115,120,97,101,99,87,104,109,102,116,111,107,113,80,106,99,119,99,110,104,99,119,111,100,116,111,102,98,110,104,105,104,98,98,100,117,101,104,98,103,112,93,104,104,105,104,110,111,84,98,112,113,110,95,105,89,118,89,111,103,112,104,93,99,104,105,101,102,120,102,96,117,97,101,106,108,102,99,114,109,88,112,101,115,128,113,84,120,115,118,99,104,98,83,105,106,110,95,97,83,96,118,104,102,114,80,111,106,113,106,112,95,109,112, +480.35223,113,113,104,100,116,104,110,115,103,102,99,104,103,107,106,97,102,107,103,104,101,85,104,107,109,108,105,90,100,104,102,101,93,100,105,108,98,94,101,127,101,118,91,104,103,95,110,122,99,103,105,109,110,102,108,100,113,101,103,102,72,105,98,103,112,102,105,114,97,106,112,121,107,113,101,112,107,101,90,110,102,113,107,109,111,110,105,90,105,109,103,110,98,73,95,113,110,95,100,107,113,97,105,99,106,95,112,98,110,95,102,107,109,100,104,108,107,113,103,95,108,96,105,108,103,122,99,85,102,103,99,107,101,100,110,95,97,100,104,98,94,104,104,87,103,105,104,103,114,94,105,91,112,87,96,98,101,107,109,96,134,99,104,106,109,95,102,103,94,107,100,116,88,103,113,99,95,99,112,107,111,113,106,107,111,112,106,101,104,89,99,101,83,95,103,102,98,117,104,99,104,105,100,96,115,112,104,94,103,110,103,80,107,99,110,103,104,105,102,113,101,103,103,113,101,110,100,105,110,126,103,105,108,94,98,104,101,100,104,91,110,115,110,111,107,101,97,97,119,95,110,105,109,105,107,96,109,100,116,106,86,108,109,109,101,101,115,112,105,98,107,93,122,101,117,99,103,112,128,106,106,102,111,106,115,75,97,95,104,103,98,106,95,110,110,103,119,114,113,106,105,102,121,101,106,94,109,100,97,118,105,107,112,107,105,91,106,105,105,106,105,108,110,105,107,95,100,94,114,110,97,103,99,108,107,117,111,106,109,96,105,109,111,99,113,112,105,115,108,103,113,111,115,101,97,101,117,105,101,105,103,104,102,104,98,117,113,112,103,109,110,90,105,99,104,121,107,108,101,105,113,105,101,106,110,103,98,100,101,96,118,102,93,105,110,109,95,110,116,100,105,107,101,86,107,108,108,99,103,132,99,96,110,98,103,98,94,100,120,92,107,99,108,109,106,100,87,96,99,103,109,113,103,101,96,114,102,114,98,107,110,103,109,104,106,118,107,103,101,104,99,105,99,113,104,102,103,103,94,104,105,94,102,104,99,102,115,102,86,102,111,110,110,104,103,99,99,104,110,100,100,95,112,107,102,110,118,95,100,95,111,100,104,108,96,95,122,99,110,102,113,118,109,109,100,104,90,98,103,105,96,104,113,106,110,103,109,99,103,100,109,105,104,112,117,101,108,110,112,93,98,108,118,101,105,99,102,100,113,104,110,115,105,105,103,112,108,104,109,110,100,100,98,109,104,104,124,105,99,101,115,104,108,103,108,100,106,97,103,113,95,106,87,102,115,114,102,107,104,107,108,105,118,106,89,106,113,104,101,93,95,103,95,117,98,103,118,117,113,104,114,102,111,103,101,107,103,98,95,112,90,108,114,110,107,101,103,110,95,111,105,112,105,113,104,105,111,106,118,110,120,104,102,107,108,101,100,102,110,105,118,114,105,113,105,100,102,99,100,111,106,131,112,102,102,110,104,103,95,103,112,112,108,114,95,91,103,97,98,124,120,106,109,103,95,104,112,104,113,117,120,105,102,98,104,104,93,102,106,112,100,100,108,109,104,101,112,109,100,88,100,98,112,112,97,92,101,110,102,102,106,108,109,114,107,106,113,89,106,105,92,95,85,106,102,102,89,110,100,106,108,109,99,101,102,98,102,111,97,115,111,106,103,99,98,99,101,106,100,124,111,104,102,102,113,99,99,99,104,97,110,141,102,105,105,106,107,122,102,110,117,101,95,109,109,113,103,117,117,99,104,114,109,111,102,106,91,117,105,99,113,106,107,102,110,113,103,108,101,94,103,101,107,105,111,110,137,109,111,110,116,109,114,104,97,103,113,116,101,88,115,101,108,118,103,108,103,102,103,108,101,108,105,101,97,103,94,129,125,107,102,94,108,97,109,105,86,100,121,113,99,104,103,107,101,89,108,116,92,105,89,109,107,106,103,100,117,106,116,115,117,108,111,104,102,106,112,91,106,116,117,113,104,96,105,100,111,127,112,108,104,115,99,109,108,90,113,104,106,100,108,114,109,103,104,97,104,102,92,96,93,119,102,105,103,101,104,103,98,106,117,106,107,113,103,103,106,105,107,110,118,124,103,113,113,102,86,109,101,100,107,109,89,109,107,96,113,87,101,110,95,104,102,107,105,107,87,97,95,106,114,102,96,102,104,106,101,70,103,99,102,104,108,108,106,103,102,92,99,100,105,116,87,109,99,109,111,102,98,101,112,98,95,109,109,99,99,102,99,109,95,98,106,112,100,103,109,94,99,110,119,113,102,112,102,106,110,98,113,97,101,109,111,98,105,109,111,106,102,106,116,100,104,99,96,98,103,96,102,101,130,111,106,113,114,103,113,100,98,103,98,118,106,103,91,112,101,114,95,98,106,95,100,112,100,103,91,104,103,118,100,122,108,99,99,109,114,94,112,102,102,100,104,108,102,108,107,95,108,105,123,105,120,91,105,120,110,99,108,111,112,97,116,105,93,99,95,103,102,109,109,120,109,111,112,92,105,101,99,130,103,107,95,100,108,107,104,98,110,98,112,106,106,117,107,126,115,103,107,112,118,97,117,92,104,112,106,106,115,95,97,111,109,109,110,111,95,119,123,102,114,90,104,93,103,109,106,99,109,93,99,107,119,111,97,102,99,107,106,113,100,100,111,106,113,113,106,115,104,109,106,105,106,111,112,110,108,96,106,113,104,120,98,100,103,114,107,102,105,107,109,104,92,101,104,106,114,112,114,94,105,110,105,107,92,104,100,115,124,108,96,110,112,90,107,112,96,108,103,98,99,102,101,101,112,105,110,109,102,124,108,107,103,112,103,109,103,111,99,112,112,106,103,104,99,105,108,102,108,108,109,116,110,95,108,108,110,101,100,113,106,109,116,112,103,110,99,114,107,111,102,108,101,113,100,107,100,104,116,113,112,102,103,125,104,102,109,121,102,116,92,100,108,102,114,102,89,113,105,118,108,101,101,114,88,109,103,102,112,104,106,112,102,111,104,110,106,95,111,91,97,103,107,106,117,108,104,104,112,102,99,102,102,119,104,105,106,118,100,101,107,90,110,108,107,102,115,102,108,113,112,107,113,110,106,96,102,104,112,123,103,87,102,111,109,104,92,96,105,94,100,109,110,110,99,103,108,103,113,109,108,104,102,108,116,102,104,112,113,101,116,102,99,110,110,103,112,106,116,103,133,93,97,100,102,100,107,113,106,106,109,116,103,119,111,110,106,115,107,107,99,102,117,94,106,98,106,108,102,112,111,95,115,106,98,96,112,104,102,92,107,113,105,98,115,114,113,113,105,102,115,120,98,115,104,116,111,114,99,101,118,114,101,106,97,108,105,91,98,107,108,102,113,103,103,96,105,101,106,110,98,98,98,115,104,109,97,96,105,106,103,106,98,103,105,104,99,111,109,101,108,105,121,116,99,99,105,99,112,102,107,103,112,103,102,100,116,106,105,116,99,100,108,114,108,108,99,114,114,103,102,94,92,118,109,101,109,104,98,113,105,109,101,116,110,116,103,107,92,102,113,95,98,115,108,107,108,106,91,71,97,99,99,95,107,101,97,113,106,94,101,103,106,107,108,104,108,103,106,106,103,110,104,87,107,98,107,107,111,106,103,109,113,119,109,104,97,102,104,121,113,118,102,106,109,101,115,111,108,105,105,105,99,101,93,102,113,103,110,105,95,106,115,107,98,99,104,115,100,100,108,108,116,100,98,113,106,103,101,106,112,97,97,108,106,103,102,88,106,109,105,114,93,113,114,97,111,113,91,105,109,109,116,113,102,106,103,106,111,115,107,106,112,105,103,103,108,94,121,98,106,113,101,113,106,90,102,109,107,116,103,118,109,109,103,104,102,117,99,116,103,102,106,98,106,117,102,103,111,108,105,92,110,102,116,108,108,104,113,102,100,111,108,111,117,114,80,105,111,107,111,109,100,90,107,127,92,100,88,101,94,104,110,111,104,99,97,110,105,100,125,112,105,108,113,92,99,99,97,91,123,109,101,97,110,84,116,96,104,95,111,100,99,105,95,103,133,115,104,99,104,101,101,111,117,99,100,102,104,106,105,115,117,97,117,117,106,97,103,108,110,101,111,116,108,94,100,113,113,108,107,119,105,101,96,121,106,108,116,96,103,104,113,101,103,96,87,109,103,107,100,91,99,113,108,105,108,107,71,104,106,106,117,104,96,112,124,103,103,102,106,99,99,103,115,97,104,105,110,101,105,101,104,106,119,102,101,100,92,114,97,90,97,111,105,87,84,105,105,111,117,103,111,107,110,99,101,106,109,101,100,104,102,115,108,101,109,105,109,108,105,87,113,108,106,106,115,104,105,104,100,106,98,119,92,104,106,102,116,107,92,91,107,104,99,106,100,116,98,110,108,108,98,112,103,101,105,95,101,105,109,112,110,104,106,98,104,101,112,118,103,94,104,120,114,114,102,94,91,109,100,101,113,96,106,113,115,103,120,93,104,103,99,118,107,104,105,115,88,103,108,119,107,110,101,113,113,102,100,112,102,108,113,113,100,105,106,110,101,121,100,96,102,122,106,107,102,99,99,100,106,114,85,113,110,108,105,107,97,95,97,107,99,103,108,89,127,103,111,111,93,98,106,109,103,98,105,95,104,107,92,103,115,100,91,117,100,104,105,102,105,103,102,108,100,95,105,104,98,112,101,104,114,107,101,95,98,99,106,96,105,103,95,105,97,99,107,99,101,104,95,99,107,104,110,104,105,110,84,90,97,95,103,96,106,104,105,105,103,107,99,101,103,102,102,110,102,92,111,117,94,102,105,104,119,98,102,97,116,94,107,97,119,92,95,98,98,109,95,99,101,115,100,98,112,94,116,106,110,107, +480.49277,112,103,102,123,99,98,104,92,95,90,97,99,80,116,105,103,95,114,88,66,100,108,103,103,101,109,106,99,93,106,104,107,108,111,109,100,87,113,105,98,101,98,96,103,99,102,94,102,91,97,117,97,83,104,99,87,99,106,112,102,108,95,114,94,98,113,109,104,110,99,99,102,105,97,97,125,104,97,108,103,111,118,113,103,112,105,108,109,100,104,117,113,104,114,108,99,103,105,87,110,83,79,93,103,106,104,87,106,109,99,103,99,110,105,109,106,94,119,112,107,83,106,103,98,103,98,104,109,104,114,110,103,105,97,116,115,108,113,101,101,99,102,97,97,108,104,102,91,108,108,100,107,114,89,98,104,103,102,107,101,99,109,105,101,116,112,111,101,99,109,112,102,95,132,106,99,98,101,99,107,100,105,102,103,123,97,96,89,108,90,100,110,102,103,92,104,111,108,108,106,108,97,90,104,95,108,104,107,105,101,106,112,100,99,97,110,110,98,100,104,102,103,117,114,88,97,96,100,100,95,105,94,105,96,122,106,108,98,102,107,103,101,115,111,98,101,98,111,98,109,106,97,99,111,98,103,104,103,108,109,91,117,102,108,102,106,108,100,100,92,107,98,105,99,107,111,110,110,104,104,90,107,107,105,113,103,103,95,113,99,99,113,110,119,111,105,102,111,96,114,91,108,102,109,104,122,95,123,114,110,101,105,101,106,105,100,103,100,106,101,119,93,108,110,100,102,102,97,126,110,109,98,95,103,102,111,102,106,97,108,106,108,94,102,97,109,94,114,119,98,114,104,103,105,103,102,112,105,109,115,106,101,102,96,91,71,106,112,97,107,103,100,113,111,102,113,117,99,107,90,115,113,104,99,118,104,105,104,97,115,108,110,109,110,113,101,104,103,107,98,109,103,99,104,124,102,116,108,99,109,114,100,115,105,95,94,98,108,110,102,108,117,103,104,98,114,110,102,103,106,104,98,106,95,95,100,101,111,106,100,109,94,105,109,107,117,100,98,114,104,92,119,106,116,107,103,102,105,104,107,109,92,79,102,114,97,99,104,111,98,103,123,106,103,108,100,93,113,109,99,101,100,100,101,105,101,108,111,90,108,103,124,103,104,104,108,107,107,102,104,102,107,100,100,100,122,114,113,113,97,98,103,106,104,104,104,105,98,99,104,112,100,109,120,100,106,93,98,107,101,114,103,105,99,104,106,106,106,96,109,105,115,100,109,109,102,110,103,106,110,102,99,108,110,100,101,105,109,126,111,96,112,96,118,103,113,106,108,102,100,101,104,110,95,90,73,102,100,98,104,117,107,101,106,99,106,105,82,105,97,96,106,99,105,113,106,96,83,105,75,107,105,92,117,104,99,100,113,103,97,113,107,110,105,109,91,104,92,114,102,103,104,103,110,103,100,102,109,109,108,95,95,97,113,101,113,114,113,115,98,107,98,98,96,113,91,109,104,104,107,102,113,112,111,102,130,104,103,104,104,107,108,96,95,91,94,114,105,111,89,98,107,112,104,123,114,108,83,117,98,109,114,112,107,106,106,114,98,119,113,112,90,110,111,109,98,103,99,107,98,105,99,106,105,97,105,104,106,98,109,101,96,119,97,101,101,109,106,103,106,106,102,107,106,101,98,103,104,103,69,103,111,100,95,106,112,114,93,121,90,112,117,101,109,102,110,103,106,96,109,106,98,105,108,112,114,108,105,109,105,104,111,109,98,101,101,103,104,111,114,109,95,113,112,90,106,117,113,105,100,103,103,122,95,111,108,101,113,94,109,109,107,108,107,109,107,94,108,101,111,106,110,103,110,111,120,117,90,112,101,113,76,110,99,108,105,103,109,112,107,110,104,89,75,98,101,111,106,114,106,113,95,110,114,101,102,108,110,105,103,121,109,106,99,109,106,101,97,104,113,104,96,99,99,103,112,117,104,119,104,83,116,110,106,104,93,105,98,110,95,112,95,103,115,120,103,107,85,111,100,102,101,113,107,101,96,88,114,102,102,94,104,108,87,105,100,113,92,107,112,116,117,118,108,96,96,115,105,102,107,105,110,115,118,102,97,114,98,106,113,104,99,106,108,87,103,116,106,110,95,108,112,99,113,98,121,102,106,100,101,99,112,110,107,95,101,107,106,101,103,105,102,117,108,90,118,100,114,109,102,104,119,105,103,111,108,101,117,97,112,104,102,111,96,100,108,98,104,98,100,91,111,109,95,105,109,100,105,109,98,111,105,99,112,106,103,101,105,113,101,96,112,103,105,102,101,109,93,101,125,101,115,99,124,112,95,97,107,100,107,99,104,101,99,103,106,102,109,109,105,109,103,110,99,97,90,92,107,98,114,106,98,93,102,101,109,108,99,95,109,97,113,112,106,119,94,100,96,103,104,112,113,130,108,105,101,109,76,111,108,92,106,80,91,99,98,101,102,105,94,106,99,110,120,108,102,102,110,116,100,99,110,106,102,109,100,99,105,123,109,109,101,108,98,114,101,92,125,107,105,100,109,115,109,103,110,100,92,105,99,102,99,108,110,114,104,98,110,109,101,98,115,112,104,107,112,111,109,109,103,113,103,95,108,98,100,113,112,107,98,108,105,91,116,92,99,106,110,109,109,109,105,110,110,105,106,113,91,119,101,115,93,121,99,95,95,99,101,98,113,121,87,101,105,105,102,97,110,105,100,97,103,115,122,96,116,97,94,110,100,72,109,104,107,106,112,100,109,104,107,97,99,113,109,108,113,109,106,101,95,135,95,112,95,105,110,86,100,121,94,108,116,94,105,106,113,117,105,111,108,106,106,107,104,103,97,105,109,105,110,103,102,104,115,106,95,102,109,111,106,111,100,105,104,98,101,105,105,100,108,103,99,110,103,113,100,126,100,101,101,102,99,121,100,100,101,107,103,109,114,114,111,109,105,104,110,113,105,118,107,104,102,100,109,102,111,108,116,107,103,94,102,96,99,106,112,106,102,107,105,102,87,106,117,111,105,96,108,87,124,107,102,100,110,109,98,111,108,101,99,110,100,105,105,97,100,107,95,104,101,100,111,97,96,104,87,102,99,102,111,98,110,113,110,112,98,108,94,101,118,107,104,93,108,111,97,102,109,106,98,99,99,96,102,105,105,101,101,119,91,107,110,106,105,107,110,101,106,105,111,109,99,101,110,97,110,110,119,99,99,110,102,111,86,103,98,103,103,115,107,117,101,99,102,104,102,113,107,114,120,101,100,100,123,99,102,108,102,119,103,98,98,120,105,102,98,104,101,106,104,97,100,87,98,113,107,118,109,113,89,105,109,94,109,103,107,109,117,102,96,99,100,104,104,104,105,99,108,133,103,88,110,108,110,108,99,115,98,112,111,97,103,106,107,102,107,99,113,113,101,98,111,106,100,92,97,121,100,120,106,96,104,104,114,106,99,100,105,115,98,101,98,109,105,87,117,103,105,109,104,72,96,108,103,97,99,108,98,103,109,113,109,105,109,96,114,106,107,112,113,106,102,105,116,100,103,95,113,104,94,102,104,114,102,113,98,96,100,97,106,108,109,90,107,111,107,102,100,95,106,109,108,91,108,119,93,108,106,109,99,101,107,103,105,121,95,95,108,77,100,105,102,102,108,95,109,99,108,101,104,106,105,111,109,117,103,109,108,109,106,110,104,99,110,105,102,105,117,107,107,120,112,105,98,115,111,107,107,106,106,108,113,99,105,108,101,83,107,113,101,104,118,104,91,102,117,112,106,110,116,103,78,123,103,99,109,111,96,99,108,108,104,101,107,113,108,98,108,103,100,103,98,104,107,104,95,96,94,103,92,96,108,97,94,109,119,103,102,104,109,124,103,101,94,107,95,103,102,102,121,102,98,104,102,106,98,113,102,106,97,102,106,104,88,116,95,104,98,109,101,106,94,111,97,95,108,99,104,106,87,112,118,106,106,103,101,104,105,95,104,108,104,97,113,117,101,109,99,108,99,101,110,99,100,115,96,111,131,105,106,111,108,92,112,124,103,117,111,109,99,111,107,98,104,96,123,111,110,104,111,108,102,100,101,107,112,97,114,105,111,101,93,103,117,100,103,101,107,104,109,100,109,110,111,107,95,123,91,87,101,101,95,111,94,130,89,103,112,102,97,106,110,100,97,104,98,110,95,88,108,98,103,108,113,102,105,107,109,104,108,98,102,112,105,99,106,111,106,100,102,104,100,109,113,95,108,104,102,108,119,97,106,108,93,99,109,100,113,103,101,105,101,105,99,104,98,102,110,99,104,114,106,94,99,104,101,92,106,98,94,109,107,95,112,102,105,111,88,103,76,107,113,118,104,106,104,98,108,109,103,104,112,113,107,98,109,103,108,114,110,89,105,114,116,99,99,103,110,114,109,96,100,107,104,113,112,111,101,88,113,109,100,106,102,105,104,96,111,111,110,113,112,109,113,99,95,107,93,98,108,101,107,104,107,102,89,107,117,113,112,85,108,95,104,107,105,110,97,111,103,96,107,105,106,92,107,119,113,103,111,105,94,108,97,97,107,108,76,104,101,95,101,94,94,79,104,105,104,99,98,97,101,102,123,127,110,103,97,109,106,106,109,115,107,104,116,103,108,94,116,102,114,107,108,103,105,110,99,106,104,99,100,121,108,108,93,99,108,101,98,113,116,96,123,103,104,102,108,83,107,105,76,123,100,98,116,110,96,99,109,96,100,96,75,91,97,113,109,108,101,106,90,100,106,100,103,110,93,112,99,104,106,104,105,98,93,101,121,96,68,106,105,109,100,92,103,102,91,81,104,102,90,117,117,102,97,110,109,107,99,106,107,98,113,101,100,101,106,111,95,117,98,95,95,111,104,105,103,98,106,89,95,96,94,112,102,118,100,124,97, +480.63333,100,103,96,99,109,93,99,99,96,94,98,113,109,110,100,111,87,99,112,100,106,91,104,103,94,115,108,111,104,102,107,98,103,104,111,105,100,103,105,106,99,97,107,93,99,103,105,101,96,115,118,93,102,98,103,98,98,106,110,88,101,111,104,123,99,110,92,113,117,108,99,94,97,98,108,99,110,102,98,109,79,103,100,100,95,101,95,110,99,84,109,105,90,95,104,104,110,94,101,105,110,106,104,101,87,105,106,101,95,102,101,92,101,106,98,100,90,95,100,112,93,122,99,112,107,94,105,103,113,109,113,104,110,106,109,96,100,99,98,100,97,110,94,105,92,99,117,102,96,106,105,102,94,84,96,101,96,95,99,98,81,110,104,102,107,74,97,106,101,106,95,95,104,104,92,89,105,98,118,109,100,111,94,102,100,96,87,104,102,102,107,113,102,103,104,95,91,105,110,100,103,99,105,103,111,120,103,102,118,112,79,103,110,119,112,99,103,70,96,109,99,110,99,113,121,111,116,113,100,104,94,109,106,97,108,100,97,112,100,109,109,104,93,104,110,94,94,98,108,107,104,102,94,106,99,106,104,99,95,85,113,105,101,99,96,95,107,102,106,100,104,108,114,98,111,98,106,105,96,109,102,109,90,108,98,91,95,102,101,95,101,107,103,106,101,94,109,90,95,101,90,102,109,105,100,98,116,107,114,109,104,109,96,76,103,94,109,113,100,99,110,99,103,99,111,113,100,90,100,108,98,99,107,85,110,103,112,95,110,101,97,115,109,102,106,107,102,99,110,102,105,100,113,103,110,98,99,97,112,98,90,100,92,108,102,108,106,110,101,107,104,114,106,101,109,101,101,113,97,108,114,104,104,104,114,103,100,86,103,96,114,102,98,108,99,100,111,109,103,121,107,102,103,105,109,103,101,106,104,103,102,87,106,105,110,94,92,100,104,112,108,94,102,98,97,108,95,90,101,109,93,103,108,95,99,107,111,96,88,113,108,105,112,107,94,111,90,113,113,109,100,112,94,95,108,92,96,107,107,95,105,109,101,101,106,108,107,99,107,113,108,103,98,105,98,104,103,117,116,101,98,98,107,111,108,103,100,98,124,93,111,95,102,103,83,98,98,102,106,88,100,103,83,110,109,105,99,101,100,99,116,106,100,102,102,95,115,103,95,87,114,111,106,103,128,95,102,109,106,105,104,115,102,106,124,126,120,100,106,111,116,110,110,116,104,111,109,114,84,110,90,110,107,102,108,98,121,111,102,103,102,98,111,106,113,102,101,103,100,89,101,103,106,113,79,91,104,105,107,98,105,101,102,111,104,114,100,98,99,101,99,109,108,90,111,105,104,110,109,108,100,101,99,102,113,85,98,96,104,105,96,109,114,107,114,95,83,110,103,102,92,109,93,100,103,110,104,111,109,98,95,104,94,94,108,113,106,96,101,100,107,109,117,142,105,96,98,99,100,107,95,105,111,106,105,86,109,109,108,99,98,95,99,110,102,97,101,98,111,109,108,100,107,104,108,120,121,96,95,119,107,112,94,101,102,101,98,109,108,101,101,113,99,109,103,102,114,109,99,108,96,104,96,102,105,111,110,108,106,103,101,100,92,91,102,100,100,102,95,106,112,102,112,98,99,105,100,106,101,104,110,93,96,100,90,106,112,102,86,111,102,112,94,97,94,117,116,109,104,102,104,85,98,104,115,104,118,95,112,113,105,100,102,105,105,110,96,111,108,112,114,113,100,105,108,99,108,105,109,115,117,108,87,98,109,121,106,106,98,108,94,112,97,90,113,99,99,107,99,96,103,106,109,93,113,107,108,100,92,96,118,106,105,108,120,100,112,103,108,104,96,106,99,116,103,108,123,108,96,99,93,122,116,103,104,105,103,107,108,121,103,109,111,101,109,100,103,99,106,101,99,98,119,118,99,115,106,107,110,105,105,99,72,103,82,100,105,105,104,103,110,95,99,117,115,103,97,103,117,102,105,112,123,94,103,98,102,108,109,109,111,106,109,103,107,101,110,113,100,106,121,106,108,103,112,94,103,92,110,106,98,109,110,109,100,99,94,98,116,101,113,107,109,113,106,115,102,100,95,121,113,132,99,106,113,103,88,97,106,107,97,92,111,102,105,100,99,106,95,107,104,103,102,105,77,112,102,101,101,102,108,104,105,98,115,101,98,98,104,92,103,106,104,115,103,106,98,101,106,107,103,106,101,111,112,103,98,105,99,97,104,94,104,98,111,98,98,107,90,114,100,90,103,99,106,109,106,115,104,96,94,108,99,94,85,101,117,109,103,113,109,108,108,113,112,107,103,108,97,113,113,100,103,109,116,101,99,109,104,101,105,107,108,89,94,104,101,103,96,98,107,117,131,99,103,117,116,109,100,111,106,90,92,109,106,107,98,78,103,100,114,97,108,93,116,109,102,106,109,99,112,109,98,102,112,112,105,81,108,100,100,99,106,95,105,100,101,87,92,113,99,90,105,102,102,97,97,99,117,100,107,104,105,100,107,97,94,96,93,127,117,107,106,103,101,105,100,96,108,106,110,108,102,92,98,103,105,93,105,92,104,100,124,114,103,112,102,119,99,113,113,93,109,97,107,104,102,110,106,104,107,101,106,95,100,101,110,100,98,99,90,109,89,115,99,99,102,102,112,101,102,103,94,95,94,104,102,100,115,112,103,103,98,109,84,124,112,101,104,112,103,106,109,113,102,113,113,112,95,105,103,107,99,102,101,113,102,105,101,105,110,109,101,103,120,110,98,108,98,105,99,104,96,113,93,94,104,104,96,103,110,107,111,104,101,93,110,101,102,93,93,108,105,103,106,109,93,116,95,102,109,105,101,119,108,102,98,105,98,101,111,121,109,92,107,105,102,93,103,112,98,88,104,105,114,97,99,116,102,105,102,108,92,104,99,111,108,96,106,113,106,104,101,115,106,101,109,110,101,112,101,104,91,97,120,116,93,108,102,110,102,109,92,104,102,106,103,104,110,104,94,101,89,113,106,106,91,99,75,99,104,106,106,100,93,121,101,97,116,94,99,104,112,105,106,114,98,104,89,97,106,111,106,87,108,99,103,100,108,95,100,105,107,110,92,106,95,101,107,98,103,107,93,79,97,94,98,102,103,96,98,102,102,102,94,117,112,117,103,102,122,101,98,107,92,105,117,101,100,113,98,100,107,104,96,98,101,101,105,111,102,101,105,105,105,102,111,112,109,97,106,97,116,114,109,99,111,106,114,116,77,98,115,106,106,71,85,101,106,113,98,98,117,112,96,109,107,98,108,102,118,100,96,106,97,117,113,96,96,72,95,97,79,103,103,100,103,110,119,103,90,103,113,105,96,99,98,95,99,110,104,99,109,102,113,109,96,100,103,109,103,104,107,92,107,97,110,94,96,104,105,103,102,103,102,114,102,108,108,111,106,93,103,96,110,104,105,119,103,101,102,97,108,92,108,94,109,105,106,96,100,100,110,110,101,105,122,99,106,98,104,94,83,110,96,117,109,113,99,100,107,95,108,106,114,99,106,117,95,108,100,97,106,105,109,92,100,95,96,104,107,97,103,110,108,102,95,108,103,113,102,109,113,101,104,97,88,97,92,114,106,112,119,97,101,112,102,99,104,99,108,103,99,110,102,103,112,98,99,107,114,106,101,110,104,96,115,107,111,97,104,103,100,105,93,107,103,111,102,108,95,102,107,99,104,106,108,96,99,106,109,100,107,104,103,74,111,113,102,106,104,106,90,102,109,79,104,105,111,100,103,89,110,117,102,106,101,109,105,94,99,107,99,113,117,103,101,103,100,110,108,108,124,112,110,89,102,100,104,99,93,103,108,110,100,101,101,103,92,99,103,103,105,108,104,93,110,106,126,108,94,99,106,97,100,102,113,94,108,95,101,100,102,112,99,106,105,109,115,94,91,102,95,103,86,100,104,95,94,106,106,110,113,105,91,88,106,102,98,99,95,110,113,98,107,102,96,101,105,100,107,106,109,103,110,107,102,104,101,97,95,111,96,103,93,115,103,104,103,91,93,96,104,91,110,120,108,98,94,88,101,120,113,107,115,113,92,117,100,108,105,84,105,99,97,109,108,96,98,100,96,94,93,112,105,97,92,97,103,99,99,102,106,104,105,101,90,107,102,109,94,113,116,108,103,85,97,101,108,85,108,95,105,107,103,100,104,96,95,110,104,96,115,126,100,103,84,112,99,124,97,99,102,113,103,106,94,97,102,98,99,96,106,107,104,87,101,100,104,105,101,119,104,105,96,100,104,94,106,99,107,98,109,102,108,106,99,99,109,94,107,81,103,108,106,96,98,100,103,94,93,110,106,103,89,108,107,86,101,110,98,102,113,110,106,102,94,106,107,89,101,106,93,107,95,116,109,116,101,98,111,103,104,121,99,99,96,105,107,110,107,114,118,114,100,98,95,119,114,107,91,101,90,103,103,108,87,102,96,105,99,106,99,98,103,102,112,99,108,93,108,103,95,105,94,106,101,125,108,103,104,96,98,107,94,98,112,103,104,100,101,108,106,100,104,113,106,86,96,92,110,93,107,117,103,106,115,102,103,108,97,102,109,117,106,101,105,99,89,97,116,104,103,86,120,106,109,111,109,101,80,105,110,88,95,100,117,96,100,98,87,95,98,107,99,107,113,99,107,100,98,96,102,91,104,99,105,100,102,97,93,92,98,101,104,118,103,105,104,116,99,96,104,94,108,87,109,114,91,97,104,97,105,99,109,106,116,106,94,99,100,89,106,91,95,104,103,102,103,105,108,102,96,104,92,93,100,106,112,102,98,110,104,103,87,114,87,115,100,100,109,113,116,103,109,103,99,109,95,106,105,69,99,97,110,92,113,99,112,102, +480.77386,105,101,106,84,104,111,106,90,100,94,104,105,111,107,111,103,97,117,117,105,107,102,104,121,120,104,110,108,111,99,102,120,98,112,119,114,108,104,121,107,115,105,102,115,108,117,95,115,103,103,108,96,109,121,117,99,99,107,109,102,94,113,114,105,95,112,101,106,137,104,113,106,112,89,88,104,85,116,99,108,105,107,109,107,118,108,98,100,106,103,96,96,107,102,99,99,103,84,105,107,107,108,117,105,111,114,96,109,96,107,105,100,105,105,115,106,102,105,119,96,111,107,112,110,105,78,114,105,118,105,111,89,104,109,106,99,101,108,96,112,105,98,109,103,109,103,105,100,111,102,110,99,110,99,122,98,103,99,121,108,104,124,112,108,102,89,105,80,101,109,87,105,96,89,114,104,107,129,108,77,98,108,102,103,99,109,102,96,103,102,106,97,110,108,109,102,104,90,99,114,98,111,103,98,105,127,106,112,109,137,101,110,103,108,97,93,107,98,105,106,103,112,95,99,109,103,105,107,93,104,104,99,120,118,118,106,107,118,102,100,104,104,109,111,114,104,110,112,98,116,110,101,108,108,91,111,101,97,102,116,132,107,110,110,98,103,118,113,95,113,99,102,104,116,109,116,110,107,107,106,106,96,112,116,109,100,100,99,108,117,104,99,113,108,121,84,113,109,113,103,108,107,101,119,109,98,99,97,110,109,101,111,100,110,115,101,105,114,106,91,108,83,110,113,114,119,126,109,94,110,109,115,101,105,102,108,114,109,103,110,110,114,103,102,109,128,90,107,111,122,105,106,108,100,123,114,106,111,101,105,102,101,98,103,104,100,98,107,115,113,112,111,88,112,111,112,80,109,93,114,108,105,99,112,102,102,95,97,103,99,117,94,105,102,111,92,102,128,100,107,120,104,109,114,102,105,118,113,103,107,102,106,108,104,107,102,114,99,102,99,103,116,112,101,103,90,105,102,120,121,110,110,102,108,108,94,104,128,110,110,112,102,104,104,95,99,94,99,115,110,107,112,106,111,103,108,102,100,118,112,96,106,105,107,118,116,115,75,108,107,115,115,122,104,103,113,111,112,112,113,100,106,118,108,105,104,79,115,102,107,104,106,103,110,102,118,99,99,110,103,102,113,114,97,102,101,99,104,96,100,110,116,106,103,109,109,125,109,104,102,103,118,100,118,117,119,107,101,111,103,94,96,100,119,99,102,105,106,97,108,109,84,99,108,116,99,113,120,109,109,114,91,110,107,105,105,113,111,98,104,105,97,106,114,97,109,105,110,110,111,92,98,103,84,107,113,110,102,103,113,107,108,116,106,95,98,108,114,107,103,114,117,108,124,108,107,103,107,136,107,103,108,106,108,102,104,95,108,108,104,96,108,103,116,101,108,110,105,109,129,108,106,108,106,108,125,98,105,112,99,112,99,105,117,96,115,110,88,112,102,96,103,115,113,104,99,104,118,112,100,107,108,110,116,107,98,103,101,117,119,117,109,105,107,111,99,113,97,104,112,79,104,102,107,104,118,94,112,116,103,116,106,107,105,98,103,98,103,109,111,110,114,101,121,112,110,91,113,108,106,107,111,106,109,111,109,111,106,110,92,111,107,113,108,105,109,97,98,112,99,114,106,99,90,100,107,111,99,100,112,103,104,87,91,117,103,98,111,113,113,119,100,104,109,110,109,112,99,109,108,122,95,105,107,114,106,111,116,115,112,110,104,109,115,96,105,88,102,105,105,107,105,97,106,102,109,105,109,99,106,109,100,101,107,105,119,100,108,102,97,124,107,98,120,104,101,101,110,103,120,99,106,107,103,109,106,112,113,103,92,112,93,99,104,115,108,103,108,103,111,98,95,104,112,99,117,119,98,111,109,108,135,114,105,109,107,110,109,113,97,101,107,114,104,100,110,105,96,105,107,102,105,115,107,108,106,104,106,112,107,108,106,98,106,114,104,108,107,110,104,103,117,117,104,106,112,104,95,104,99,106,116,107,99,103,101,105,114,107,109,99,113,102,116,112,90,104,110,108,107,110,115,110,106,114,99,109,113,106,112,109,107,108,105,86,108,106,110,114,103,118,96,105,102,112,101,105,106,109,104,103,99,105,116,103,104,94,103,109,105,105,105,103,87,105,109,113,102,100,117,104,113,109,102,110,110,95,106,100,118,103,125,104,127,108,94,112,112,100,117,102,99,108,106,106,114,110,99,102,122,104,103,111,108,104,127,97,96,108,117,95,97,107,79,99,103,105,105,92,104,118,89,105,103,107,116,121,111,100,96,96,111,113,107,102,105,111,116,106,108,112,79,104,97,107,115,107,108,99,99,95,96,121,113,92,106,102,112,102,103,105,101,103,105,104,101,114,104,91,97,113,104,105,103,97,119,95,118,107,102,107,109,106,102,92,107,104,113,105,99,110,105,117,104,104,95,104,106,116,103,106,105,100,108,94,91,103,102,115,95,112,96,103,110,105,95,107,100,116,105,117,109,106,114,92,108,102,102,104,104,106,116,116,107,108,95,99,114,100,103,107,100,95,99,111,103,106,111,97,100,98,102,100,91,104,107,101,108,105,93,104,100,103,111,97,94,97,103,147,102,121,96,111,108,86,95,121,98,111,107,117,112,125,92,101,111,108,104,105,100,108,99,105,103,96,112,99,108,94,90,112,115,104,101,105,106,104,103,116,101,100,104,113,107,98,119,99,101,102,94,108,116,102,109,98,102,110,112,109,112,100,112,104,98,113,105,100,99,100,111,109,107,98,101,104,107,101,105,98,109,102,115,98,116,110,113,114,112,113,102,107,117,127,103,103,100,108,116,124,91,111,109,99,104,98,69,102,116,107,102,104,113,86,106,114,104,105,97,102,72,100,103,107,108,102,91,105,109,106,118,111,111,97,98,105,112,105,78,112,99,111,101,101,100,107,103,97,131,110,108,110,111,110,109,94,106,117,89,96,101,95,101,101,104,98,119,99,114,104,100,102,108,91,116,101,115,114,99,102,85,101,107,105,98,107,110,101,98,97,124,106,101,116,100,97,110,111,104,102,103,94,108,99,106,106,107,99,95,121,97,95,104,109,99,103,101,103,91,108,103,105,103,104,125,112,93,91,116,101,105,112,108,108,102,100,101,100,100,112,103,89,106,98,88,100,103,108,98,100,108,108,104,108,103,95,119,95,106,108,116,99,114,100,112,109,93,109,108,112,104,110,92,101,99,110,110,94,101,107,99,107,109,95,106,103,107,103,106,106,78,102,79,95,100,117,102,95,104,103,102,92,91,103,110,106,105,107,100,93,88,104,109,102,92,105,104,98,83,110,109,89,109,91,126,86,100,108,111,107,104,94,94,103,100,97,111,108,91,91,116,93,101,109,105,113,105,108,127,96,108,105,113,94,91,105,89,110,91,111,99,106,98,99,111,103,107,101,112,97,116,101,106,113,101,79,94,111,104,109,102,124,113,107,111,104,108,106,97,104,105,114,112,99,112,105,92,102,104,88,96,113,94,97,111,102,100,116,102,98,98,105,103,102,111,96,106,106,94,108,110,110,112,87,88,108,104,106,113,100,90,106,106,92,103,91,100,110,103,112,101,101,104,104,97,98,104,118,103,106,106,73,99,102,110,96,104,100,83,112,102,91,104,97,104,102,104,77,119,112,102,106,111,96,106,89,102,107,100,108,116,100,102,100,101,113,104,97,108,110,91,102,98,95,104,92,101,102,104,105,105,106,103,91,91,105,104,83,107,109,104,97,97,105,109,96,112,108,98,101,99,102,102,96,112,113,98,99,110,100,87,116,105,94,101,110,115,106,93,88,113,97,107,95,110,94,113,112,115,99,100,96,101,104,106,117,112,88,117,87,101,98,120,87,94,110,114,112,113,101,103,98,99,117,109,99,100,99,105,135,103,99,102,104,104,95,106,100,94,107,104,99,111,101,106,96,104,105,108,96,106,109,103,110,109,106,108,104,107,99,108,103,106,104,105,105,109,100,102,105,99,108,99,98,103,96,109,106,89,86,112,106,96,101,110,101,103,101,98,114,97,106,102,99,104,101,98,100,117,111,89,111,99,108,97,94,108,97,108,103,107,98,113,103,105,108,112,98,107,104,101,101,107,101,113,102,80,117,103,99,88,111,99,129,103,103,102,106,103,101,94,110,92,137,98,107,107,100,105,102,106,106,106,107,93,100,113,113,101,95,107,107,118,97,104,108,99,106,103,111,105,108,95,107,110,104,108,91,104,113,108,101,109,112,92,99,110,106,111,92,102,99,118,128,108,105,105,102,95,99,106,104,100,88,103,94,101,104,100,104,116,104,96,103,102,110,103,98,96,105,99,103,106,116,104,99,85,115,95,106,100,98,111,94,111,122,97,108,110,96,73,105,105,105,98,100,103,108,104,98,106,113,99,109,67,112,103,91,101,112,106,101,106,108,104,111,100,92,114,102,98,100,105,101,92,106,111,105,117,105,94,95,99,100,94,105,112,106,111,108,101,105,96,104,98,101,93,98,105,101,97,89,106,103,111,85,104,103,107,111,100,107,107,98,93,103,105,89,114,96,114,104,103,105,110,71,114,104,112,108,121,98,96,105,108,113,103,104,99,98,96,117,93,107,114,104,101,69,112,121,91,93,102,110,103,117,102,104,106,80,94,93,103,97,106,101,103,110,109,100,105,115,108,105,101,103,95,107,85,97,100,109,101,117,109,95,70,102,93,103,104,100,97,75,105,91,97,104,96,91,107,106,118,102,120,94,95,100,101,105,95,99,101,101,102,106,116,109,100,106,98,102,101,97,106,102,99,106,93,97,108,102,101,98,94,126,117,100,111,113,103,75,97,79,95,97,117,100,96,107,117,110,89,105,93,112,105,100,106,107,104, +480.9144,106,88,101,101,97,102,91,83,125,100,96,90,94,105,111,133,90,110,101,108,111,109,93,100,95,100,99,101,78,112,106,101,112,101,117,100,108,92,110,100,108,120,104,91,116,115,99,118,107,99,96,98,70,103,104,90,99,99,112,105,105,99,101,98,95,96,111,99,103,100,112,109,95,100,106,105,60,95,108,108,105,113,109,111,107,96,103,110,96,100,102,99,103,104,68,96,92,90,106,91,94,110,108,89,108,101,90,95,110,108,97,92,110,100,94,102,101,102,120,97,103,95,96,107,93,92,116,99,102,103,84,106,105,103,118,105,101,105,102,112,88,91,105,104,100,102,104,96,105,98,105,105,105,102,97,85,97,111,102,99,101,102,94,106,103,95,96,107,106,96,105,100,91,103,103,112,102,94,103,107,98,97,102,99,111,125,99,90,105,92,96,100,97,101,105,104,99,93,105,100,113,105,93,99,108,104,124,113,116,109,125,110,100,88,101,97,103,98,97,100,106,115,106,112,105,98,103,90,100,100,102,105,102,93,104,99,95,111,100,88,96,105,113,101,71,109,86,95,107,107,104,90,99,104,96,96,100,122,90,106,95,102,102,86,81,99,96,103,108,100,109,110,105,105,107,101,102,108,103,111,103,105,94,103,106,97,89,108,103,101,103,120,108,103,103,99,108,98,86,105,106,109,95,114,100,107,100,102,129,97,104,110,99,104,107,95,116,113,103,104,101,86,103,100,98,105,100,97,103,107,93,95,111,100,115,113,126,105,82,99,102,103,105,84,100,100,104,127,104,100,85,99,103,111,110,117,100,105,102,102,104,105,105,111,101,100,96,114,88,107,105,92,107,95,98,112,99,97,95,111,102,104,95,105,105,108,117,104,113,104,117,100,101,108,108,92,106,103,108,103,99,83,103,94,100,95,98,98,114,103,70,101,113,101,111,105,91,104,110,91,122,99,99,102,113,113,109,100,89,105,100,98,94,104,98,94,120,95,101,114,107,106,114,114,100,108,100,129,102,110,109,93,100,111,104,107,112,103,114,107,102,99,86,120,81,116,101,101,107,91,95,119,94,113,103,96,94,110,105,111,103,102,114,106,101,107,96,96,92,107,108,113,96,103,103,94,105,99,109,98,106,101,98,99,115,103,92,98,101,105,100,114,98,112,108,98,111,94,101,116,104,109,114,100,95,100,106,107,95,104,107,100,100,100,99,102,104,99,109,114,92,108,109,107,111,94,100,108,122,99,102,103,106,97,93,100,106,102,105,106,103,99,99,109,117,96,106,108,105,92,102,112,120,104,122,104,107,97,106,105,113,100,110,103,106,95,105,108,114,89,101,102,104,111,112,111,107,104,107,107,96,102,103,94,91,90,105,103,98,108,105,100,115,115,109,93,105,103,102,103,100,111,100,104,113,93,101,102,108,91,94,102,101,101,94,100,112,109,112,105,112,107,110,100,104,103,96,112,112,107,107,110,116,108,100,101,111,115,106,98,103,106,90,103,91,98,109,100,109,110,109,102,102,108,105,109,110,111,100,99,98,115,112,99,94,107,104,104,100,94,109,106,97,120,105,96,108,117,110,91,94,97,91,93,116,99,116,111,100,95,103,97,114,117,109,101,108,105,114,94,112,105,107,103,99,103,95,106,92,98,103,100,107,92,99,91,104,98,91,98,104,103,103,108,109,116,116,105,104,115,106,109,106,108,96,109,104,93,102,101,96,98,103,107,99,100,106,113,95,94,114,106,112,99,87,101,97,101,102,97,105,100,110,109,113,110,111,108,98,105,105,111,101,106,109,113,122,114,101,117,97,99,98,102,113,105,106,110,107,98,123,109,97,95,118,98,107,102,108,96,107,104,109,95,113,105,94,98,111,92,112,95,107,102,113,84,99,106,106,97,99,87,108,101,99,102,98,104,101,105,110,107,107,120,100,104,102,115,109,106,102,96,101,95,101,95,117,108,108,102,110,103,92,99,106,99,105,84,99,99,106,101,107,112,108,111,95,124,107,105,100,105,87,104,118,104,99,111,98,108,94,103,110,98,110,98,95,99,122,104,104,103,106,83,114,104,111,94,102,111,110,108,104,103,104,107,95,116,114,95,110,117,114,98,105,95,99,91,96,111,116,106,112,116,116,96,89,96,98,104,102,107,110,121,104,110,100,124,103,114,106,103,97,103,108,100,107,96,96,100,101,102,110,87,103,76,100,95,99,109,99,104,92,92,104,100,99,108,103,122,103,100,102,110,94,104,94,98,98,104,106,103,100,105,117,114,112,95,96,103,103,112,86,124,102,107,110,104,107,99,104,107,98,109,101,103,107,108,104,104,104,106,106,92,115,90,103,95,109,118,105,105,102,107,93,103,100,117,88,109,110,112,109,93,106,105,99,92,113,105,102,118,104,102,103,117,92,111,104,96,94,75,102,106,110,105,110,108,114,96,103,101,94,102,121,107,102,112,100,112,108,114,116,101,114,99,103,110,107,106,116,105,109,122,104,95,92,102,105,105,101,103,97,107,119,109,103,102,90,103,89,111,102,102,120,104,114,91,113,106,111,100,103,102,116,102,106,113,97,108,108,96,105,135,104,94,108,100,121,109,111,99,113,105,97,98,106,105,104,115,100,81,102,91,101,133,111,103,111,115,92,101,98,102,101,106,110,106,111,105,100,110,100,108,101,104,118,109,101,106,101,106,119,103,102,102,102,95,105,107,102,112,109,109,108,103,112,98,107,96,105,104,100,111,111,106,99,110,115,106,106,84,106,91,103,96,100,102,109,109,96,108,92,102,101,123,113,101,110,112,104,112,103,96,91,107,115,98,104,106,100,108,112,122,108,100,112,102,101,119,105,106,99,95,106,105,99,90,102,110,117,90,104,117,116,97,104,98,101,115,109,111,104,100,108,115,103,100,112,106,107,107,94,98,100,110,101,109,103,115,101,98,109,110,107,108,116,109,108,92,119,97,100,95,109,101,90,117,106,105,108,105,110,116,106,100,105,107,109,105,112,121,103,106,107,113,95,103,107,111,97,109,106,106,109,95,108,108,98,110,103,120,97,101,105,115,116,107,114,105,134,101,76,99,104,99,81,110,99,102,101,102,105,121,105,91,91,104,112,109,99,100,108,99,106,96,98,95,96,106,94,95,99,109,97,112,101,99,117,106,98,101,97,99,102,106,112,108,100,101,108,103,107,100,94,95,105,90,105,107,108,109,99,97,101,99,107,116,120,112,110,104,102,94,106,106,109,120,99,96,103,101,102,106,104,102,95,108,111,107,106,87,120,112,108,107,112,104,99,102,102,109,105,95,107,109,101,106,115,108,96,107,98,109,96,112,110,112,103,94,99,111,113,99,98,102,94,96,101,104,77,97,102,102,102,101,100,105,109,93,93,105,106,108,109,100,109,94,97,100,97,106,106,101,93,104,109,107,113,100,103,110,124,113,97,102,107,109,103,109,104,103,107,95,109,107,100,99,112,93,105,105,110,107,96,109,101,102,106,104,113,107,101,103,121,112,112,106,96,108,98,111,109,95,109,108,96,106,101,104,111,99,101,101,109,108,108,96,101,97,99,110,112,107,90,91,105,113,103,107,93,102,104,107,98,116,106,103,113,103,102,93,116,106,110,94,96,113,106,103,96,99,104,73,96,106,109,102,98,99,106,109,100,104,108,117,94,97,107,104,114,106,98,93,107,100,104,108,86,91,104,104,100,102,106,98,104,109,109,98,102,101,102,105,101,108,100,114,115,108,103,93,105,99,115,101,89,106,95,100,92,102,112,117,98,107,109,107,94,97,107,102,102,100,101,91,102,99,98,96,80,111,107,90,97,97,103,104,113,98,96,101,103,109,113,110,113,97,104,109,111,106,105,99,108,101,101,101,101,106,99,103,113,95,105,108,78,98,97,110,112,101,113,105,108,127,107,95,98,113,108,100,105,115,98,110,103,93,99,105,102,100,105,102,119,93,110,113,107,100,95,117,96,113,138,111,113,99,99,91,99,96,105,105,100,113,112,104,117,113,105,111,107,106,110,109,106,120,114,89,122,107,111,112,95,95,107,103,96,117,97,103,95,103,116,115,104,100,105,100,105,114,113,103,104,115,113,105,95,104,100,103,104,95,107,102,100,110,106,99,106,116,107,99,101,110,112,98,116,103,111,107,106,99,117,107,100,105,106,110,102,120,117,97,97,99,97,94,109,104,107,109,108,112,87,108,106,112,104,106,94,104,117,101,96,98,74,105,102,87,110,105,115,110,98,101,95,99,100,101,98,95,110,96,106,104,107,109,106,111,98,103,120,103,107,91,112,110,113,119,99,98,113,96,111,102,98,96,106,98,104,113,106,105,96,106,98,120,102,96,93,99,101,98,92,105,105,112,95,111,97,98,90,100,94,110,99,97,110,95,88,100,97,96,99,107,102,102,106,107,104,102,98,102,121,105,123,98,102,104,117,102,106,95,107,103,96,108,92,104,111,106,112,97,115,103,96,104,93,104,75,104,96,111,102,105,105,94,98,106,88,105,91,92,99,102,111,100,106,93,104,108,99,97,99,105,110,94,94,91,95,99,99,101,105,105,102,99,100,96,109,95,100,107,105,105,103,98,102,96,108,116,95,113,102,104,105,102,112,100,91,106,107,113,88,98,97,108,109,91,94,96,103,84,105,100,101,103,96,124,96,116,102,87,101,89,103,93,94,105,90,102,101,105,104,95,107,114,105,101,106,107,101,106,95,102,92,107,99,106,103,120,94,95,114,95,101,96,108,113,96,101,96,109,95,106,102,103,100,103,103,98,93,109,115,91,100,97,112,88,87,94,104,94,94,100,96,102,105,97,107,89,85,90,98,97,100,112,98,87,115,107,95,118,101,88,99,97,109,103, +481.05493,89,100,110,107,108,106,105,107,97,97,106,102,102,111,105,95,96,104,100,99,109,105,99,104,109,101,88,106,106,116,107,109,101,113,101,107,112,101,106,95,97,97,92,98,103,108,106,109,108,107,95,95,106,102,111,102,91,107,96,87,99,80,98,103,98,90,103,108,98,98,107,98,91,98,105,100,89,94,100,76,106,101,98,101,111,104,100,106,91,103,110,96,86,106,87,104,118,104,106,94,92,103,100,113,102,109,98,101,99,92,95,105,96,99,81,107,101,97,114,105,104,103,95,111,90,117,103,110,114,90,111,112,109,103,101,100,95,107,101,87,103,100,118,101,102,95,102,113,97,105,113,96,92,101,101,103,118,107,116,105,98,100,105,114,102,104,103,104,106,112,102,113,103,90,107,102,106,113,104,105,108,99,104,102,111,95,100,94,99,97,93,109,103,109,118,106,113,112,122,106,111,102,103,105,95,110,102,99,123,116,101,113,99,108,102,101,102,102,94,118,109,109,94,103,102,102,111,103,110,96,109,95,112,126,94,107,94,110,101,114,107,100,109,101,105,99,95,109,104,82,101,101,96,113,110,109,112,102,117,86,103,98,96,98,101,106,108,106,95,113,112,119,113,100,105,102,101,91,100,93,101,101,111,96,106,102,100,106,97,101,100,102,109,95,109,128,110,99,108,96,120,101,100,95,109,111,97,108,106,112,95,116,117,111,102,99,107,110,99,105,88,90,110,101,98,104,100,100,104,103,92,105,105,112,96,109,103,98,100,110,89,109,104,104,107,93,81,104,121,99,96,105,109,102,96,100,107,108,102,102,110,114,114,100,105,93,105,97,97,107,110,110,113,82,98,109,104,113,97,100,96,104,109,109,114,100,98,106,104,92,83,94,90,108,109,99,103,101,107,111,89,104,105,97,106,96,114,103,95,103,99,101,101,102,105,104,113,107,100,96,130,100,96,104,104,105,106,104,105,103,100,113,98,94,108,97,100,88,110,102,107,104,100,97,108,102,107,100,105,106,94,101,117,103,100,98,113,105,109,107,99,100,114,98,105,98,107,108,105,99,104,103,106,113,99,101,95,111,102,103,108,116,123,106,105,96,104,104,99,110,103,104,105,114,95,109,90,103,120,101,112,106,105,106,99,92,99,104,102,108,113,104,109,99,109,100,110,98,103,95,99,113,106,95,102,103,105,108,98,106,105,102,115,100,107,112,109,95,108,106,103,105,97,101,106,104,93,102,109,115,114,114,111,110,102,99,114,103,95,117,109,98,92,109,112,104,118,104,85,91,86,101,105,107,114,117,103,114,105,110,100,111,68,96,107,94,107,99,107,95,112,107,106,97,113,105,108,113,106,105,94,111,107,106,110,98,105,105,103,105,106,115,111,106,113,114,104,104,107,95,114,107,104,95,102,95,107,107,110,105,106,110,115,93,101,104,91,99,107,100,102,111,97,108,88,121,103,127,99,105,95,108,113,109,106,105,115,95,104,107,111,116,96,107,95,98,98,95,118,111,106,104,109,111,117,90,110,108,105,117,100,100,111,104,104,104,112,111,104,99,111,105,98,103,102,101,105,111,101,90,104,107,102,112,101,95,103,101,104,119,109,103,92,99,101,105,106,102,105,102,99,99,106,106,103,109,104,98,104,112,101,99,99,109,110,102,94,108,107,91,99,101,118,98,87,97,122,105,105,99,95,101,101,100,98,103,111,108,105,100,105,106,105,109,105,114,96,112,107,108,104,110,96,92,107,122,96,120,99,119,101,101,112,103,115,106,98,119,111,102,98,104,108,106,98,101,100,113,104,100,113,93,96,110,102,106,106,107,93,106,100,105,104,110,110,106,109,103,96,100,102,111,108,104,97,110,101,111,116,112,114,105,114,115,100,112,105,103,112,109,101,110,119,110,102,113,103,102,105,108,99,104,103,114,87,99,98,102,105,106,103,97,109,106,109,101,116,100,120,100,106,112,100,108,102,103,112,106,101,99,112,101,128,100,102,103,102,103,110,106,107,106,115,115,107,106,97,102,98,98,96,105,103,98,101,101,100,109,97,110,100,101,100,93,102,98,92,114,106,106,111,115,108,103,89,101,109,106,114,99,102,99,101,109,91,97,100,102,109,98,106,100,99,109,107,108,104,109,100,98,97,107,116,110,114,90,103,82,99,98,106,96,103,117,115,107,91,91,95,106,99,106,119,104,101,102,106,96,102,101,101,118,101,91,95,108,103,108,88,98,118,107,88,106,113,105,96,102,104,99,100,80,107,89,107,112,102,105,95,110,102,112,100,102,104,111,98,128,102,107,118,91,106,97,105,107,104,94,96,84,104,103,96,99,112,89,101,111,108,101,98,108,100,103,111,115,109,100,102,107,110,114,101,109,97,101,120,98,104,120,105,89,93,98,97,107,95,99,115,90,89,116,95,114,91,109,101,105,112,92,104,106,97,112,113,102,116,104,113,95,116,103,109,100,105,106,113,100,106,111,96,85,110,109,109,101,124,105,116,104,108,108,120,100,107,104,96,104,102,94,102,110,106,104,112,98,94,92,103,96,93,115,115,97,105,98,98,91,101,102,101,109,109,101,101,117,95,100,124,98,116,101,99,96,100,102,94,122,94,103,110,94,105,93,87,116,109,103,105,92,102,97,116,97,120,112,98,108,101,94,99,115,106,102,100,108,117,104,111,94,95,107,101,111,103,106,100,95,103,124,121,99,101,91,118,100,98,120,96,99,98,102,108,107,112,111,107,98,105,101,114,113,103,92,109,104,120,103,104,112,104,103,102,114,103,103,102,108,110,113,101,111,126,106,113,106,106,118,114,116,79,111,111,108,116,109,100,120,97,117,112,106,100,109,100,97,115,98,102,108,114,102,107,107,102,99,105,89,95,101,106,103,118,108,82,100,107,103,108,104,111,104,92,97,108,109,110,102,110,105,110,102,112,107,104,107,102,106,94,112,106,104,97,99,110,111,104,101,108,113,105,112,103,99,106,108,109,110,104,102,103,100,113,114,102,112,106,111,96,114,107,108,109,124,104,116,107,95,114,113,102,101,97,112,95,103,102,111,91,98,106,124,110,71,109,122,107,108,97,97,91,107,92,113,106,94,97,115,105,104,100,115,108,119,104,98,104,114,102,102,104,107,109,95,104,116,96,110,104,115,106,98,93,102,110,117,104,100,112,113,101,103,106,97,110,102,100,113,99,108,110,114,92,97,97,95,109,104,112,98,117,103,106,100,95,94,112,112,110,109,107,101,109,91,105,94,104,104,113,111,97,104,102,104,103,95,101,103,103,107,110,101,110,105,113,105,83,98,93,106,108,101,108,106,113,123,95,116,104,112,92,98,104,102,99,102,127,118,104,101,107,100,115,103,99,100,116,98,112,101,93,127,116,99,78,108,113,109,94,112,104,103,105,110,105,107,106,112,102,88,95,101,98,108,102,94,98,112,122,95,97,98,99,91,98,103,101,100,106,96,105,96,104,107,87,101,116,112,109,99,96,108,102,120,92,105,105,112,91,109,98,98,107,107,115,114,108,122,105,109,119,104,98,109,107,109,101,112,110,98,107,113,104,111,96,122,113,108,113,102,100,100,108,109,102,95,107,111,99,98,109,102,111,113,98,96,105,94,107,96,98,101,98,116,101,112,97,110,99,115,83,112,100,103,102,109,112,104,106,107,104,99,106,105,96,104,107,108,95,98,103,90,97,99,101,110,101,103,100,108,101,104,113,98,114,102,109,105,107,99,111,103,108,98,96,112,100,103,119,102,105,112,104,106,108,107,104,108,102,105,104,111,105,99,112,113,96,107,96,88,83,96,108,116,102,108,120,105,121,106,105,116,113,106,102,109,113,99,96,106,95,95,103,105,105,105,101,108,131,100,106,104,102,105,112,104,109,93,97,108,107,97,77,117,103,96,103,103,98,108,110,112,99,95,99,100,108,106,115,102,108,106,95,100,99,94,108,111,95,111,114,119,110,103,103,97,110,103,104,121,105,102,108,112,115,110,106,102,107,104,110,95,108,98,93,108,113,102,113,103,92,105,107,104,99,115,90,90,102,109,108,108,99,105,112,112,100,109,105,100,103,111,103,109,95,108,103,100,117,92,102,105,99,100,113,106,106,107,104,104,106,113,92,116,91,127,100,96,103,95,98,103,113,102,94,87,99,110,132,105,108,105,101,104,117,106,100,108,91,86,115,98,117,105,107,101,100,102,117,101,102,107,113,102,111,103,96,100,106,102,114,100,102,107,105,106,100,92,98,112,93,88,102,106,100,88,108,89,113,111,115,92,101,103,109,108,102,93,95,97,109,93,99,103,98,93,112,94,107,99,102,104,106,98,99,116,108,104,101,98,104,109,135,111,96,103,125,116,113,97,105,100,100,106,98,120,114,79,111,107,98,111,116,107,95,94,100,101,105,95,85,117,113,114,111,96,99,102,100,96,102,117,119,88,114,102,98,103,95,101,93,96,92,106,103,101,108,94,108,88,100,100,93,96,103,110,117,108,99,102,101,94,96,97,99,111,119,95,110,104,111,121,109,90,105,99,117,85,95,103,98,105,103,87,101,112,104,101,105,97,114,99,106,109,95,123,103,98,84,101,101,117,100,98,102,96,106,92,102,108,100,96,109,105,101,97,85,105,102,109,100,97,111,103,113,106,101,107,122,102,115,116,86,97,104,105,109,87,98,114,94,107,115,107,107,108,111,95,103,112,101,112,108,112,121,111,103,106,109,113,110,102,106,127,104,109,105,106,101,104,97,95,102,101,111,115,104,103,109,105,109,101,108,109,103,102,110,112,97,104,65,117,98,110,77,106,100,100,103,104,85,104,107,101,104,106,108,129,106,82,104,107,101,102,100,92,107,98,104,93, +481.19547,101,99,96,87,97,102,104,92,99,98,93,98,86,87,84,108,102,110,103,98,88,100,104,119,108,94,104,103,102,114,99,95,102,103,99,98,85,102,98,102,110,103,109,124,121,105,103,105,99,108,83,95,94,100,98,110,96,88,105,95,108,104,100,107,87,97,81,116,108,99,99,108,104,105,99,100,103,95,95,106,103,108,104,101,102,125,112,106,94,113,102,111,116,105,90,106,95,109,98,73,115,97,103,100,105,76,102,101,101,97,103,110,113,110,95,101,99,99,105,91,104,96,102,115,96,98,107,92,102,96,110,106,93,101,109,108,108,88,71,82,97,99,108,101,95,106,107,107,92,103,108,92,100,97,100,112,113,111,87,108,108,102,107,103,117,91,98,96,90,107,109,106,108,108,104,105,102,91,103,104,110,108,104,104,96,103,96,106,115,105,95,106,120,100,112,87,112,104,108,101,84,101,103,100,102,113,105,108,103,108,115,102,106,103,99,103,103,102,105,91,103,97,102,103,108,110,104,107,115,109,105,95,103,105,105,113,120,92,103,105,101,98,104,111,87,103,97,105,107,100,102,99,103,102,109,110,105,95,107,102,101,102,102,94,104,103,99,104,106,102,100,95,100,104,100,100,103,114,112,109,105,104,89,104,106,96,101,103,100,96,96,99,99,116,96,112,107,127,106,105,102,108,95,125,95,104,110,122,100,112,90,114,92,98,100,96,110,116,104,106,104,98,92,102,106,105,91,109,112,117,105,96,91,107,95,108,103,105,102,112,95,119,128,103,102,110,106,100,102,95,108,115,108,96,109,107,134,100,98,98,99,108,97,92,107,102,106,125,106,105,113,97,104,111,102,101,107,100,107,111,106,111,96,103,116,105,113,111,104,81,96,107,88,114,98,102,109,139,86,109,105,115,100,99,91,111,106,101,103,100,97,99,99,101,101,104,108,98,106,99,106,112,103,106,109,99,109,97,112,92,101,127,98,113,98,107,101,111,76,114,113,98,117,105,109,103,106,101,105,106,100,107,98,99,105,100,102,105,109,117,109,108,107,101,127,109,100,100,116,113,107,100,98,100,89,106,107,91,104,105,100,102,118,90,108,99,95,106,106,120,98,108,106,99,104,99,93,116,108,97,106,88,71,100,104,107,90,102,107,104,114,109,99,106,86,102,99,102,95,98,102,104,106,98,104,102,105,99,112,99,120,109,94,109,109,110,106,101,104,110,97,94,116,104,107,102,114,91,110,89,122,121,99,104,113,110,110,105,113,103,105,108,108,104,101,103,106,109,100,102,90,110,114,94,110,106,117,104,75,112,108,102,102,104,109,107,107,110,101,108,97,109,103,104,110,112,104,105,100,105,95,109,116,102,92,118,108,103,87,106,100,102,96,96,100,104,108,95,101,105,99,99,99,94,103,100,111,104,103,108,106,114,107,108,103,105,110,99,94,112,105,105,109,110,105,97,102,105,109,108,105,114,110,99,113,95,99,104,102,111,112,106,102,111,108,102,109,114,108,109,105,106,114,102,103,111,106,113,114,104,110,108,98,104,107,96,103,102,114,103,89,103,105,110,112,102,98,103,101,95,94,116,92,102,105,108,106,101,111,112,112,99,99,108,104,104,109,108,103,106,102,97,116,127,100,104,107,110,122,106,105,102,101,98,107,91,109,94,109,98,110,100,107,103,112,110,103,104,102,116,113,105,99,103,105,115,102,107,106,116,110,102,96,108,109,125,102,115,107,86,102,106,107,96,96,105,89,99,109,101,105,110,105,101,99,95,91,110,105,96,100,105,104,98,105,108,102,110,104,108,100,104,98,98,112,112,114,118,103,102,119,103,97,109,110,110,109,105,95,102,107,102,107,111,104,112,99,99,115,109,91,105,111,99,109,103,111,121,117,96,105,96,114,107,100,105,107,99,115,96,105,103,100,99,102,100,102,108,99,98,111,98,108,95,99,92,92,83,99,126,106,104,87,108,115,105,121,103,123,105,91,104,109,101,103,96,96,107,103,100,102,105,108,95,113,101,108,104,86,117,102,112,109,94,107,107,108,104,101,107,99,92,98,97,105,115,104,98,110,128,97,111,105,112,113,100,109,111,101,96,102,115,106,105,115,105,104,99,110,107,97,106,106,102,91,106,104,98,102,109,109,119,113,109,113,118,106,97,112,101,109,119,100,101,126,102,81,106,94,106,103,99,97,103,108,105,99,99,104,103,112,111,111,98,106,101,100,113,107,110,104,111,106,102,99,94,102,98,110,126,98,115,102,99,111,106,117,105,82,111,91,93,98,113,118,104,94,110,111,105,113,117,90,92,107,101,96,105,97,109,105,111,102,114,116,98,88,93,104,105,93,112,110,100,115,109,118,95,103,115,106,103,96,104,115,112,108,113,100,104,102,109,106,118,124,108,118,111,98,97,103,103,107,110,105,104,127,102,97,107,96,108,90,106,94,125,101,107,110,111,107,108,102,103,104,107,104,91,109,102,107,101,112,89,98,111,106,99,108,101,101,112,108,108,124,89,100,110,94,104,99,98,106,80,112,102,104,92,109,99,102,110,97,94,107,94,98,116,99,107,102,98,104,114,137,102,106,99,101,96,101,112,108,116,105,103,107,92,101,110,113,99,117,91,107,95,104,103,97,117,109,89,101,95,89,117,110,98,105,101,110,109,98,106,97,117,112,75,103,110,116,107,100,116,106,102,98,104,108,100,109,103,105,97,111,116,104,101,123,98,101,113,101,104,116,103,111,115,101,95,103,107,114,108,103,110,106,95,102,104,105,114,113,107,112,107,110,101,106,103,117,114,123,101,92,108,113,102,94,104,116,121,113,116,113,87,100,114,96,98,120,95,107,103,113,100,112,114,99,109,98,102,109,109,107,89,102,110,104,105,112,119,118,98,106,113,108,102,106,106,100,101,110,110,116,103,95,104,97,104,119,103,111,115,90,103,103,108,100,101,106,107,98,101,100,113,110,113,114,105,110,104,107,99,110,101,113,109,100,99,95,89,100,104,113,104,91,104,104,97,119,104,107,95,104,100,106,102,103,96,112,111,107,117,99,109,91,100,103,107,124,108,107,97,107,100,114,110,108,103,100,102,104,132,115,92,81,106,91,101,95,95,102,111,109,109,110,107,101,98,98,99,104,109,111,115,105,93,109,96,101,100,112,103,106,107,108,130,101,105,99,104,96,106,110,89,108,105,107,117,96,105,105,96,92,103,104,96,103,103,107,109,103,120,103,102,94,108,99,125,115,99,113,114,102,102,99,92,108,108,103,95,104,96,107,109,107,106,105,102,125,116,97,97,101,101,112,109,109,100,99,105,116,104,105,114,99,111,105,98,95,105,102,95,98,68,106,90,88,103,110,104,98,99,101,105,102,109,115,98,95,111,106,102,101,125,89,109,104,109,100,90,95,104,103,102,112,105,106,98,82,92,97,101,101,106,109,112,100,100,106,100,104,114,117,113,106,96,103,99,105,116,133,124,105,124,108,99,105,98,108,105,77,109,90,95,110,103,101,114,105,104,101,96,101,111,110,103,99,121,104,100,108,104,101,106,98,106,108,76,105,109,100,104,94,98,113,112,105,98,103,107,109,104,105,99,115,100,105,109,106,115,106,113,98,98,94,94,102,100,103,97,113,109,106,95,105,111,95,108,103,121,102,106,106,98,87,100,109,106,104,105,98,84,105,113,103,102,88,81,98,114,98,97,102,113,102,105,105,93,105,100,102,100,108,103,110,104,102,111,100,91,103,108,108,101,115,96,100,105,97,103,110,113,103,109,101,104,94,112,112,98,98,106,92,95,111,103,101,102,104,116,105,113,101,107,109,103,102,95,114,85,107,112,101,107,105,92,97,108,97,107,108,105,88,95,108,85,104,98,108,115,112,104,105,96,108,101,112,87,88,92,117,105,103,106,112,103,120,112,99,113,100,108,113,98,139,89,119,111,110,98,100,119,121,111,99,109,105,118,100,105,95,106,122,97,100,107,111,100,104,113,92,101,102,117,107,95,109,109,111,109,101,105,106,101,105,104,98,103,99,100,96,99,80,104,100,108,101,98,111,105,106,108,119,105,103,110,93,95,109,107,97,88,98,102,109,103,100,101,101,97,87,122,96,110,103,95,106,103,103,125,105,96,107,103,102,102,96,96,104,97,87,92,116,78,110,119,92,107,94,103,117,99,107,111,104,102,77,110,100,102,98,95,111,107,106,100,117,98,108,91,97,96,102,94,103,103,102,99,106,112,97,125,106,111,100,103,99,107,95,103,88,105,94,102,112,100,113,108,110,115,103,101,105,103,108,106,89,106,96,101,96,106,105,71,106,101,103,90,99,112,107,100,89,107,107,104,106,105,108,104,97,101,109,105,105,107,108,102,104,113,98,102,90,114,97,97,104,103,119,102,111,105,73,104,94,117,105,109,117,113,110,118,98,105,98,102,102,110,90,106,102,101,101,101,95,111,121,105,98,98,99,96,102,100,102,94,92,87,106,97,94,100,103,120,111,102,107,107,102,108,92,98,104,107,108,102,102,110,98,106,112,88,101,104,102,98,112,83,112,89,108,116,89,112,103,119,98,106,105,108,113,100,104,104,104,102,105,97,99,99,115,110,106,95,111,117,103,97,96,103,104,101,109,99,107,98,97,100,102,108,111,100,105,105,100,78,97,112,108,96,106,102,108,106,107,103,108,120,90,101,105,101,91,107,100,84,105,96,102,70,103,98,95,107,112,97,104,95,93,100,106,104,113,99,95,109,103,101,98,103,105,98,103,103,98,100,98,104,104,99,89,105,93,108,109,120,99,117,103,112,91,101,106,113,117,101,100,100,113,107,121,94,99,127,109,111,90,88,113,96,91,99,114,100,126,104,111,91, +481.33603,114,96,108,81,107,98,98,104,103,102,96,105,101,115,91,95,100,96,98,102,79,95,99,100,95,102,98,101,105,95,100,103,94,100,108,105,107,93,95,109,95,97,92,102,111,87,105,105,111,105,93,97,110,103,112,98,113,97,109,102,94,95,102,93,84,108,100,97,101,105,101,104,107,109,93,101,91,101,111,106,97,102,105,114,104,91,96,101,99,98,112,100,109,92,91,96,101,102,106,106,98,104,88,94,98,121,103,106,91,97,102,96,102,98,101,118,103,98,116,109,106,95,104,85,103,103,113,97,122,104,96,105,98,109,98,113,109,108,99,94,110,98,100,114,97,90,102,93,105,100,99,89,107,99,103,111,129,107,109,96,101,110,105,110,94,93,109,109,97,107,95,85,104,102,110,93,101,96,103,93,84,108,99,109,109,99,101,101,110,114,94,110,101,96,99,85,100,109,115,95,100,101,103,115,90,111,99,100,116,102,98,104,99,112,105,105,105,93,101,104,90,117,95,103,100,98,105,111,102,116,103,106,121,106,97,100,109,104,110,108,102,104,99,106,97,96,104,112,109,106,105,92,106,104,114,107,108,101,110,104,125,120,102,97,102,103,95,101,105,99,95,90,98,117,100,98,99,102,109,92,107,105,97,99,113,101,95,99,102,97,104,116,101,96,105,110,104,102,106,106,110,108,115,112,96,116,113,103,105,112,97,105,113,99,113,106,105,104,87,105,103,99,95,108,112,100,103,95,96,112,115,98,110,99,104,102,116,97,92,98,108,116,102,115,96,99,109,108,99,110,104,121,96,106,98,98,109,104,116,101,97,87,107,139,112,101,104,95,99,103,99,105,103,111,116,105,101,98,102,111,99,112,99,100,103,95,112,96,95,108,85,100,95,108,108,98,108,121,99,120,96,101,105,98,99,101,91,121,107,101,108,99,112,98,95,107,96,102,105,110,103,104,86,127,113,98,106,101,109,107,93,108,109,97,108,102,96,101,96,93,97,100,128,114,90,109,113,106,101,97,92,101,101,118,105,104,116,107,115,101,118,95,106,108,101,108,104,106,104,101,98,118,96,102,109,103,98,103,100,118,105,116,96,100,106,107,102,91,108,109,104,108,105,109,108,111,107,101,100,99,114,106,109,106,117,104,101,105,94,96,113,94,119,94,103,115,111,105,107,107,96,92,102,103,101,117,110,91,99,113,98,98,102,99,99,109,106,114,114,104,109,127,101,106,99,105,111,113,102,113,69,108,104,111,107,105,102,116,82,103,105,108,94,106,104,99,106,101,109,112,94,100,101,97,109,99,102,104,103,106,83,114,118,102,98,110,120,116,106,100,105,105,108,108,106,100,102,114,104,99,101,107,99,109,104,106,110,102,110,100,103,99,99,111,113,101,108,109,116,104,108,101,94,95,101,94,99,100,98,100,105,98,126,114,96,96,100,101,95,96,100,108,106,95,98,99,105,135,106,111,97,109,102,98,104,105,109,106,93,107,105,106,97,106,85,99,100,98,110,108,105,111,102,107,101,103,109,94,105,106,108,99,115,97,102,103,112,111,108,100,100,91,78,110,103,110,104,100,96,111,101,79,102,98,105,118,109,117,105,95,118,106,104,102,96,107,98,95,111,105,109,110,105,88,108,97,91,103,106,106,105,85,100,106,101,99,108,100,101,104,113,95,99,111,93,102,109,105,99,94,110,102,100,99,111,109,107,105,102,101,113,103,105,88,109,106,97,98,101,90,101,108,103,109,99,117,97,110,119,98,102,95,86,111,99,130,92,106,104,118,112,99,107,103,97,108,110,95,113,111,89,110,101,104,101,100,113,102,86,121,104,87,118,94,105,105,102,95,108,96,101,102,97,109,105,117,109,106,120,101,117,103,109,106,113,95,111,113,113,103,97,84,113,105,101,99,100,102,92,103,99,114,106,116,101,103,109,104,102,71,103,113,97,99,104,88,101,109,106,106,92,108,104,97,106,101,99,107,93,85,105,107,102,114,109,108,99,106,116,98,113,103,105,114,112,93,101,114,99,105,101,113,113,104,103,94,102,99,93,107,97,83,112,96,115,99,98,85,102,104,111,104,99,107,103,102,109,105,114,113,90,115,104,97,102,106,104,106,111,105,72,112,110,107,100,110,106,104,108,97,94,98,117,108,105,105,107,107,107,109,102,107,110,112,109,95,102,103,95,94,100,108,108,98,102,106,108,105,95,98,112,92,105,98,100,111,98,101,97,106,103,90,101,95,108,94,87,96,94,106,98,103,97,101,104,101,113,104,96,100,95,100,103,100,104,103,120,101,104,108,94,112,104,114,102,95,105,99,115,102,113,112,103,98,101,92,100,97,106,99,100,114,99,120,107,106,106,105,98,96,106,109,113,115,96,111,100,111,110,95,102,113,103,95,97,95,101,103,105,95,105,107,99,103,89,104,104,111,94,96,97,113,104,105,71,107,102,105,105,112,116,94,107,91,111,110,108,101,115,108,106,90,122,107,108,117,97,96,111,104,96,102,116,100,116,111,112,108,92,110,120,109,105,104,119,107,71,101,103,121,96,113,98,96,108,103,114,96,96,100,109,100,139,104,116,107,115,98,115,120,106,94,103,101,96,108,108,91,100,103,103,100,95,97,100,112,94,93,106,98,98,104,89,93,98,120,101,94,110,127,117,101,90,96,109,103,110,98,99,109,109,106,110,107,101,113,110,101,105,108,104,109,104,108,107,95,111,112,100,99,99,120,114,103,118,105,113,105,105,111,113,101,106,99,118,111,107,107,102,101,96,109,111,101,90,104,101,104,97,113,105,108,99,112,111,113,113,120,116,84,100,107,103,112,95,98,103,102,99,108,104,97,89,116,108,100,105,104,100,104,107,106,112,109,113,110,109,99,103,104,101,127,95,104,100,104,103,103,94,109,101,101,107,104,108,105,112,96,108,76,95,112,100,101,97,98,109,110,91,103,93,109,98,95,100,117,111,101,98,101,109,90,98,99,113,98,103,107,115,113,110,94,98,96,104,103,104,128,99,115,94,104,109,98,109,100,107,100,101,101,102,102,107,106,102,106,96,108,107,111,103,115,107,117,101,108,109,105,104,103,96,107,92,110,103,97,108,131,111,98,99,94,114,96,103,101,109,105,113,104,98,102,113,101,102,100,94,104,110,113,101,95,99,107,104,114,109,108,110,108,107,104,88,105,106,95,112,97,113,119,107,93,96,104,102,98,109,117,114,104,113,99,101,112,100,106,93,107,95,98,120,99,107,105,100,118,104,108,111,99,107,105,114,98,120,107,112,105,112,93,118,106,100,107,98,121,103,99,110,99,102,109,93,101,106,105,101,106,108,84,87,105,108,106,97,96,102,96,109,96,112,102,102,102,104,101,103,107,108,109,92,95,84,109,104,107,108,102,108,96,107,104,99,114,112,105,119,108,95,101,95,107,106,101,115,100,101,95,102,102,113,98,103,109,96,105,95,101,98,109,100,100,102,107,103,98,97,98,109,104,103,98,111,113,95,100,105,111,105,100,106,83,98,102,97,113,98,114,108,105,92,105,80,115,101,109,104,113,109,98,102,97,108,111,110,101,115,108,101,98,100,107,112,106,95,102,99,105,107,108,104,105,98,97,106,97,102,95,111,103,69,111,113,106,104,100,105,110,86,103,102,101,99,107,115,113,105,101,112,108,108,98,100,103,95,115,109,110,112,101,108,106,113,103,106,96,88,94,99,120,116,101,96,101,122,93,112,106,106,113,83,109,109,117,107,103,116,101,107,107,96,103,103,105,115,112,103,104,100,102,112,105,107,100,113,109,104,108,102,105,112,99,107,95,106,102,104,98,131,109,104,101,87,98,97,113,120,99,101,104,103,93,102,103,106,107,101,103,116,103,109,100,106,110,112,110,105,101,103,102,99,113,100,97,100,110,109,105,101,89,83,100,113,115,94,103,90,104,102,100,106,103,110,103,105,100,100,102,107,107,110,97,95,107,105,101,94,113,108,103,104,67,100,111,103,113,105,98,126,105,112,121,107,113,113,114,97,108,109,107,104,106,100,100,99,105,101,109,106,97,102,108,104,102,99,108,98,111,108,99,100,102,115,105,102,103,117,91,98,101,99,108,94,107,109,102,113,110,106,95,108,99,95,103,104,112,114,102,115,105,110,107,114,103,103,102,95,98,106,102,116,111,110,121,106,111,117,99,95,105,117,110,100,109,101,99,99,109,95,92,96,85,104,101,94,88,100,97,91,100,101,97,110,93,99,101,93,106,94,103,110,102,112,106,97,97,97,98,104,112,112,105,103,99,100,119,93,105,98,105,114,109,114,101,103,102,98,109,88,103,112,109,103,113,102,124,109,101,102,104,106,100,110,104,105,91,106,97,96,112,101,109,100,107,103,91,101,103,102,99,97,102,102,78,103,106,91,101,112,101,95,113,113,108,99,101,99,101,106,112,109,102,106,111,104,103,85,107,100,94,97,91,91,102,109,91,106,112,83,112,105,101,97,100,117,113,102,113,109,104,103,96,95,98,106,106,95,99,109,102,115,114,110,95,113,105,95,120,102,110,98,118,121,117,96,103,108,107,106,116,89,105,112,99,97,112,92,108,111,104,110,101,102,93,120,98,112,104,94,91,107,75,98,99,90,92,92,98,105,99,102,77,109,101,103,98,104,97,100,92,107,109,114,97,94,107,98,104,95,113,77,92,91,114,97,93,117,101,111,110,110,92,99,88,106,99,102,109,95,104,108,98,113,103,131,71,112,85,101,113,100,111,99,109,102,97,98,69,109,91,99,103,99,100,98,105,101,118,106,97,101,104,100,105,107,103,92,94,108,91,112,103,102,93,104,101,118,88,113,98,107,119,101,99,107,107,95,104,100,114, +481.47656,105,108,100,95,87,105,112,95,95,107,101,95,106,104,106,106,105,100,96,99,113,94,100,96,93,111,94,101,96,103,114,100,107,101,108,96,106,103,107,101,101,106,70,94,102,106,116,91,94,108,100,118,102,105,94,96,101,100,106,99,87,108,105,79,121,100,115,98,94,105,98,100,114,111,104,97,96,91,107,97,106,107,94,110,121,84,104,98,99,96,114,97,104,100,95,86,108,101,97,107,95,112,99,106,106,100,90,109,85,100,103,111,97,102,100,82,98,92,113,108,107,112,111,116,94,106,110,93,105,126,105,109,103,92,104,87,96,109,101,90,105,122,99,98,89,101,101,90,97,96,105,98,106,91,103,104,101,102,112,98,104,107,101,96,103,109,80,105,106,100,88,106,104,104,105,99,103,119,108,100,95,114,111,102,105,95,108,106,103,98,106,107,93,101,115,104,104,92,102,107,100,109,93,98,103,104,106,100,104,110,108,107,119,111,94,103,87,112,94,112,108,98,104,104,103,99,93,103,109,117,101,95,111,89,109,95,102,101,106,106,100,94,117,100,95,102,101,103,97,108,106,99,108,103,99,107,105,92,98,104,100,109,94,93,100,101,99,93,90,103,113,100,108,90,103,100,101,110,101,100,105,114,101,99,98,102,103,113,106,102,93,102,98,108,104,107,118,112,106,105,93,102,113,120,103,108,96,101,105,103,96,110,99,106,103,105,100,100,98,108,105,98,109,113,106,95,101,96,113,103,109,105,110,100,97,111,107,98,104,96,98,102,97,97,102,111,101,80,88,116,104,99,111,99,101,108,111,108,95,95,109,105,99,96,101,108,118,103,95,106,105,109,99,99,99,100,105,107,89,107,114,99,113,114,101,91,107,112,101,106,99,100,89,107,118,95,109,99,98,103,104,104,92,102,92,90,98,96,102,113,104,94,100,106,102,96,99,99,109,95,102,102,94,98,104,96,109,101,107,104,101,107,105,90,102,105,97,108,103,108,112,105,115,95,99,96,101,102,105,115,102,99,103,110,103,108,109,112,101,100,104,99,102,108,116,102,96,101,99,87,126,112,105,111,109,92,97,108,102,129,90,113,111,88,104,105,82,110,106,93,113,107,104,96,99,99,101,94,106,99,110,108,99,104,105,114,96,105,100,99,112,104,106,94,109,93,104,96,103,98,106,104,98,99,99,102,99,106,102,109,102,92,116,102,113,94,102,102,97,107,104,104,101,97,103,96,101,124,101,106,98,102,98,98,103,94,104,101,95,98,87,89,101,103,102,105,96,102,115,93,92,97,101,95,122,99,98,101,94,109,101,107,104,100,100,95,106,103,95,106,109,121,99,100,99,108,95,109,104,94,105,108,115,98,114,100,104,109,102,84,107,102,113,118,102,90,103,95,104,103,79,110,102,105,98,103,97,103,105,100,96,106,100,99,92,116,111,100,113,104,122,107,108,111,95,94,98,112,108,103,91,102,110,95,106,100,103,108,134,110,101,118,109,121,101,102,99,113,106,94,108,96,106,105,100,113,104,91,107,98,119,107,112,105,94,106,98,121,102,103,97,113,97,113,114,113,102,109,106,101,108,113,104,112,109,101,108,105,108,109,104,102,100,103,125,100,94,98,97,109,101,101,94,109,107,93,99,114,98,108,102,110,91,108,96,107,96,98,102,105,97,109,99,99,113,105,112,101,96,114,108,111,99,92,100,100,98,98,108,97,104,115,105,107,87,100,95,100,103,99,109,107,98,101,103,91,112,108,139,103,107,107,108,107,106,103,105,107,109,112,103,103,107,110,102,105,97,91,107,118,104,101,116,103,106,123,104,102,112,96,113,99,110,102,99,110,97,105,103,90,112,111,102,99,119,110,91,101,109,103,116,92,109,102,106,101,105,103,92,100,93,109,114,100,100,113,95,101,89,98,119,99,100,102,105,95,101,106,94,102,104,101,105,101,110,103,100,106,105,108,96,106,98,101,98,111,113,97,94,91,120,109,90,103,96,103,98,110,96,108,106,108,106,98,109,108,102,103,100,106,103,106,95,108,116,105,96,111,99,102,94,105,103,114,117,98,90,106,102,98,109,103,120,102,109,125,110,93,105,102,99,100,110,108,95,98,101,98,117,100,108,111,114,91,101,92,98,93,102,100,107,104,107,106,105,115,100,100,99,99,114,106,95,94,114,107,105,104,101,113,85,111,97,92,100,104,95,94,98,94,99,107,106,100,102,106,102,107,120,91,105,102,92,103,103,102,105,97,90,102,108,100,92,74,100,104,96,103,101,105,99,104,92,113,107,111,97,109,101,103,108,103,117,100,104,87,91,105,98,91,107,99,101,102,99,93,90,99,97,95,95,97,114,102,111,94,112,89,101,101,111,78,112,96,104,89,101,82,110,102,96,98,107,95,105,102,110,105,96,88,88,100,95,105,108,98,100,93,104,103,100,113,102,114,106,115,107,95,95,105,106,103,102,97,99,95,91,104,97,103,116,102,102,114,105,102,98,118,105,106,110,106,107,117,119,104,101,113,100,78,108,104,110,95,113,101,110,101,100,126,103,108,120,90,101,105,109,99,97,99,108,83,112,120,117,98,100,97,124,99,111,109,110,108,102,104,117,109,108,111,94,95,96,72,109,103,111,105,115,100,95,96,116,107,93,98,97,98,98,107,120,99,98,102,105,111,109,101,102,111,92,103,108,105,93,102,113,103,107,98,92,118,102,100,105,107,103,109,113,115,111,112,100,100,101,112,100,104,102,98,101,120,106,113,107,107,102,102,117,105,98,104,90,112,108,100,112,95,106,105,104,106,124,99,92,99,107,102,100,114,100,126,98,112,103,107,105,93,113,112,105,103,105,113,96,102,109,117,94,99,112,102,103,103,112,118,94,101,105,102,107,94,107,103,106,109,100,103,93,101,118,106,103,101,89,115,113,107,116,105,104,118,98,114,107,100,106,87,86,95,84,100,85,110,108,98,96,106,117,108,120,99,105,103,107,106,105,92,100,96,104,109,104,102,99,109,100,108,102,105,90,107,106,109,101,107,103,87,104,112,107,106,108,98,96,113,98,111,115,98,91,119,105,107,109,104,108,97,95,102,93,101,110,107,107,90,99,107,106,109,93,90,97,101,98,104,115,105,87,90,101,100,115,99,115,104,105,105,112,95,118,101,107,90,115,89,104,95,107,111,101,99,117,102,107,109,111,97,95,95,91,113,95,108,100,97,104,112,113,91,106,113,112,110,104,105,112,111,94,103,103,99,103,99,103,99,113,110,103,97,111,108,105,108,99,98,104,104,103,98,110,107,106,110,107,111,111,92,110,115,100,113,100,95,102,101,102,111,121,107,100,99,98,100,103,93,102,108,100,100,103,91,94,106,97,104,108,113,99,103,101,94,117,110,98,103,111,98,122,102,103,91,102,116,100,108,104,105,103,105,103,96,104,93,102,104,110,109,105,99,113,102,124,105,104,111,104,98,109,106,90,103,101,99,112,107,103,96,106,96,126,102,107,113,131,101,104,102,98,106,101,104,98,96,95,111,100,116,107,100,120,102,113,97,93,105,113,109,106,93,102,94,95,95,99,97,101,103,101,92,103,104,99,106,105,95,125,97,93,100,95,99,112,101,94,102,102,98,100,109,98,84,111,112,95,99,98,94,109,101,106,106,98,105,98,114,103,109,102,103,93,107,93,107,122,93,108,116,96,100,113,112,108,96,109,96,103,108,99,89,104,106,95,99,103,96,97,106,99,102,102,100,114,107,105,105,98,102,117,101,99,102,107,123,103,102,101,105,105,107,105,106,92,108,102,110,97,90,100,106,101,105,116,84,101,105,106,110,110,95,101,105,93,112,116,119,103,111,105,107,98,104,96,90,137,100,100,106,98,106,107,105,98,104,111,104,108,89,103,101,102,103,107,112,96,112,105,104,110,108,109,116,103,110,104,108,111,101,107,110,107,109,102,104,112,100,108,113,95,106,109,103,101,110,102,105,91,107,109,109,116,100,108,102,117,116,102,112,114,100,98,98,101,92,103,113,112,91,104,104,108,108,108,94,116,100,96,103,107,99,114,109,103,112,100,109,100,109,97,113,101,96,100,80,103,102,97,93,103,101,88,92,98,104,104,113,105,112,106,107,98,99,92,100,86,103,107,111,101,94,100,109,111,94,101,99,99,106,104,102,108,94,103,107,98,104,100,91,105,101,114,106,108,98,95,95,102,101,113,90,99,96,101,103,108,105,96,121,98,113,116,98,102,99,95,95,108,102,94,105,112,96,102,101,106,95,105,97,99,113,113,111,107,92,104,102,108,107,112,109,102,102,95,102,102,103,105,100,107,108,107,105,105,108,102,101,97,108,108,105,109,103,104,104,100,98,110,107,99,95,110,94,96,103,109,100,98,117,119,107,108,110,90,93,104,97,92,98,104,104,101,97,117,107,101,97,108,91,110,95,104,94,110,91,100,101,106,116,106,104,103,95,92,102,90,117,106,106,105,103,97,81,103,96,105,100,97,110,90,74,101,103,96,101,113,95,113,96,97,110,109,112,87,100,90,102,96,102,97,101,116,93,109,111,105,110,111,110,106,112,95,106,106,115,108,111,103,109,97,103,91,107,110,98,132,105,108,102,92,103,108,94,108,101,104,91,97,96,105,108,127,103,86,108,112,99,96,105,96,104,94,116,104,105,78,105,90,102,84,97,108,112,95,114,130,102,119,109,112,108,116,108,103,113,115,107,100,102,101,93,99,105,103,113,98,107,98,101,93,113,97,89,103,99,96,102,103,102,112,134,101,95,101,105,112,98,98,140,96,98,115,110,100,113,85,113,102,93,94,101,98,99,115,109,96,97,103,115,112,108,116,100,97,96,103,98,92,95,87,99, +481.6171,105,95,86,100,101,97,114,102,108,117,114,111,108,111,103,100,94,103,98,109,104,112,111,111,108,99,98,107,117,105,102,99,93,110,113,101,100,105,112,99,105,116,102,98,95,104,96,112,108,109,112,88,90,109,98,98,92,105,100,87,103,99,101,91,98,105,98,101,101,104,92,106,103,100,101,108,101,104,113,103,101,91,96,98,98,99,97,108,101,106,107,106,109,101,96,101,93,109,105,95,107,113,98,98,98,112,104,71,97,92,99,110,110,106,89,101,108,102,110,100,95,112,98,101,89,108,103,99,110,103,90,112,95,117,114,107,92,102,104,102,97,114,102,106,100,83,125,100,79,103,105,104,91,96,92,115,108,109,112,97,105,101,101,107,101,99,100,103,100,103,100,101,95,91,105,112,95,86,115,109,90,111,87,109,105,104,96,88,101,106,90,113,99,106,99,107,111,105,83,112,109,108,109,123,115,103,96,101,107,94,113,98,101,110,112,116,112,111,87,95,95,100,103,107,98,109,100,105,105,102,108,101,99,103,99,106,113,122,102,83,98,107,117,121,112,91,107,102,103,102,104,98,103,82,105,104,98,92,106,103,105,102,94,115,110,105,109,107,102,108,96,106,114,108,110,98,100,102,103,103,100,117,103,100,96,99,105,100,98,93,110,101,112,110,105,134,117,103,98,107,93,111,109,113,106,122,108,105,100,98,105,107,101,111,108,109,96,99,103,112,108,96,105,110,113,105,112,104,106,111,104,95,138,104,102,105,103,112,110,110,97,105,90,104,121,104,92,109,107,90,103,112,106,109,107,94,115,95,106,100,89,103,109,107,103,105,103,107,104,115,108,95,113,104,106,105,103,101,99,116,103,106,108,115,99,88,102,103,104,91,96,95,96,106,95,102,102,103,111,106,91,95,109,106,108,97,111,108,95,96,101,88,109,101,109,100,98,95,104,109,99,103,90,107,100,98,102,107,104,103,95,102,99,113,99,97,102,104,106,93,101,102,99,99,95,105,112,103,99,108,105,112,117,113,108,101,106,100,109,93,86,124,90,109,100,99,101,99,98,103,110,110,106,118,100,107,103,108,113,110,113,110,111,109,122,105,98,109,103,91,106,103,101,100,98,97,103,104,114,104,98,114,95,110,105,110,84,92,98,98,109,106,91,98,101,109,103,104,95,92,105,113,101,113,96,107,109,108,96,112,110,98,106,112,103,100,106,95,97,122,105,119,103,99,104,100,108,109,99,96,96,103,101,105,109,93,94,102,119,91,108,102,113,105,117,112,110,93,100,102,106,95,104,111,91,109,91,94,92,103,111,101,114,94,110,105,107,98,105,103,100,99,102,99,107,95,97,107,105,100,100,111,108,96,99,99,90,99,98,107,105,100,96,96,101,104,106,104,101,110,97,109,102,101,109,87,89,103,105,107,104,102,111,115,99,102,87,100,100,99,106,98,106,113,101,87,112,102,110,113,95,104,118,107,119,92,108,146,112,103,124,103,107,113,104,107,110,101,106,110,109,112,91,96,96,115,116,107,99,94,110,108,95,107,90,68,90,109,105,117,101,111,95,109,95,105,111,106,91,100,104,97,105,106,100,113,84,105,92,112,75,102,105,93,82,87,110,91,84,95,107,97,109,111,98,101,107,111,111,110,104,112,106,99,100,104,97,107,112,98,103,108,108,112,99,101,109,103,100,107,122,106,106,112,103,108,96,109,110,124,105,104,77,98,107,110,95,106,108,107,103,103,107,99,100,111,88,106,104,103,115,101,102,103,100,113,106,103,106,106,98,108,112,92,100,102,109,117,119,107,104,103,108,111,107,98,93,106,102,100,110,116,98,98,115,100,99,105,110,101,100,110,109,100,113,100,107,101,106,112,109,96,107,102,120,108,112,100,105,95,104,102,108,100,112,93,82,93,106,107,100,97,94,109,104,108,116,107,94,112,92,107,95,113,111,82,117,107,107,102,99,110,109,103,118,99,116,108,104,107,108,105,98,109,101,111,100,106,121,98,104,96,104,118,102,105,108,105,95,105,103,131,108,109,120,101,106,100,96,103,100,104,98,106,103,95,94,112,110,99,117,98,115,99,101,114,95,112,101,108,95,95,115,104,101,94,118,98,95,108,105,115,94,96,98,106,102,102,101,140,101,102,115,109,99,107,105,111,85,103,102,96,105,101,108,108,89,99,109,103,98,99,110,97,102,114,102,109,104,98,102,113,108,114,105,104,109,96,108,111,97,98,105,105,106,102,109,103,94,106,118,103,112,101,89,109,96,110,102,106,96,113,100,114,107,100,98,99,102,99,99,94,94,98,90,97,105,93,92,101,113,110,101,90,96,102,105,107,105,103,110,107,116,97,112,110,111,101,91,106,105,105,103,107,111,121,90,109,98,99,94,101,117,88,104,104,101,116,108,91,93,103,104,120,100,99,107,92,106,102,103,93,95,104,116,97,101,101,113,117,100,99,113,96,98,107,109,108,121,103,102,90,109,93,94,106,103,106,101,113,113,102,108,106,103,102,102,100,105,110,108,108,99,102,109,108,98,107,117,97,106,101,113,102,102,104,104,94,105,107,100,95,107,125,96,109,109,103,102,103,111,102,108,108,105,106,98,119,103,100,113,98,103,93,106,103,94,91,98,106,105,98,107,91,99,89,91,106,111,109,109,107,98,109,105,104,107,110,108,109,109,109,98,107,112,102,111,103,109,107,94,109,106,103,112,104,112,99,103,99,104,107,98,101,101,103,101,112,103,101,101,108,113,86,100,116,97,105,110,112,102,105,113,108,106,103,108,105,108,116,108,99,107,104,105,98,102,95,114,101,105,104,104,107,99,102,100,110,105,109,107,68,102,99,110,102,96,91,106,102,120,113,110,113,91,95,105,116,78,121,108,100,111,102,103,110,109,103,99,112,107,108,96,99,106,103,103,95,115,107,100,107,105,112,96,93,101,102,102,100,107,92,109,103,105,98,86,89,105,89,105,81,99,107,109,101,119,101,101,105,94,79,106,105,108,115,106,88,100,104,102,98,108,113,100,83,101,105,112,115,101,102,113,109,110,113,105,103,93,97,111,105,112,113,96,87,104,93,109,105,105,119,109,104,88,115,102,102,119,105,112,90,103,94,111,100,89,109,105,114,90,107,105,100,110,109,109,98,99,113,107,103,82,93,106,98,108,103,103,102,101,102,100,111,100,104,107,96,90,114,97,114,110,101,72,102,101,101,111,76,101,96,112,111,99,100,104,111,93,99,110,96,111,112,99,107,102,110,101,84,120,104,102,114,99,97,104,105,94,104,111,98,113,109,117,109,96,96,95,89,102,113,110,104,98,100,88,103,110,111,99,112,103,99,108,113,98,106,103,97,107,83,101,103,113,116,96,120,107,121,110,126,112,102,102,101,98,106,103,106,101,98,99,99,114,111,105,118,111,103,92,100,110,100,116,105,112,111,95,109,97,106,100,115,113,105,111,105,117,100,102,113,105,98,108,101,107,110,108,97,116,102,101,109,107,102,112,109,100,105,117,107,97,120,118,121,94,100,107,120,109,101,104,102,103,106,99,89,108,99,102,100,103,98,103,91,117,109,108,106,113,109,110,111,88,98,99,100,112,100,95,109,98,96,106,104,110,104,100,120,101,97,98,110,107,113,104,108,105,105,98,100,103,108,109,98,108,100,95,113,111,109,113,84,104,97,108,103,114,88,95,106,94,103,118,95,78,102,108,97,107,95,113,111,97,95,108,113,103,112,122,108,109,91,108,126,115,88,104,108,102,105,100,112,94,107,115,113,102,109,110,100,112,113,102,105,102,103,113,108,99,100,101,104,110,111,95,99,113,112,99,95,99,102,100,113,100,96,99,106,105,108,106,109,106,105,96,101,104,96,94,113,108,107,103,102,100,99,115,101,93,100,110,97,99,103,109,115,108,115,100,102,108,117,90,117,105,102,113,94,98,108,113,105,107,99,113,111,109,113,119,107,107,97,108,105,74,98,76,108,109,98,101,113,107,104,103,83,113,108,100,110,105,113,92,106,95,107,112,105,121,94,105,101,100,104,112,105,124,107,113,106,117,99,108,122,101,97,118,104,110,101,109,109,106,113,102,94,103,104,118,106,87,113,101,102,109,99,110,107,95,112,97,112,103,115,112,102,108,111,106,104,103,100,97,99,96,121,105,105,110,100,104,105,107,101,105,93,104,101,102,107,101,119,101,111,108,104,112,90,101,114,114,111,98,110,91,108,112,106,96,103,118,107,105,115,92,98,117,123,110,95,91,96,111,104,99,105,109,118,115,101,115,100,95,101,104,94,95,105,110,96,111,108,105,94,105,115,101,105,114,101,109,97,102,100,109,104,106,105,105,98,106,99,92,104,110,99,109,100,100,101,105,96,101,112,108,107,107,108,112,103,98,97,116,102,99,93,88,105,103,106,113,87,103,112,89,107,106,94,104,94,98,94,106,124,94,105,106,106,95,100,112,102,112,92,91,102,85,99,92,96,103,105,100,114,79,109,105,98,96,94,99,103,103,106,100,103,104,107,101,110,87,104,117,112,92,112,95,92,99,88,105,105,110,113,95,97,114,97,102,107,100,108,101,102,93,102,106,98,98,107,98,92,104,97,102,122,102,103,90,98,86,112,101,120,102,105,101,95,91,98,124,112,105,99,109,100,102,121,105,105,106,80,99,98,105,95,108,112,109,106,106,106,104,100,106,108,105,75,106,98,104,97,95,104,102,116,111,107,103,105,97,93,103,109,114,95,107,106,102,98,111,113,102,99,106,121,112,70,92,105,101,103,116,97,103,106,113,110,111,118,106,105,98,96,89,94,118,95,110,108,94,114,98,108,96,116,93,95,105,109,112,111,111,108,104,105,98,104, +481.75766,101,103,102,106,124,110,105,107,95,104,93,116,110,106,92,102,117,101,98,97,109,102,97,102,115,102,114,103,110,133,102,98,112,106,113,116,104,102,103,103,95,103,95,92,99,113,107,117,99,112,109,107,110,102,108,108,100,100,102,99,99,112,104,98,111,104,89,99,105,104,105,102,100,107,113,110,98,93,100,109,102,103,92,101,100,101,105,107,106,112,103,114,105,102,102,93,95,105,101,108,111,109,112,106,110,108,102,108,101,107,114,96,108,112,116,112,103,103,99,107,106,103,115,115,74,117,103,89,114,107,102,116,88,105,114,107,104,110,92,105,88,97,85,109,99,100,117,101,105,97,106,111,108,108,77,108,113,98,104,90,107,101,106,95,116,107,103,92,107,100,113,99,108,110,109,99,119,95,100,108,108,106,105,101,110,106,80,99,100,107,113,104,107,122,113,118,102,103,91,112,101,113,105,101,102,112,95,110,105,114,107,118,112,86,107,112,108,78,95,102,113,105,111,100,109,104,112,117,118,115,110,95,127,89,96,114,99,106,103,110,88,115,103,102,108,100,105,121,101,75,109,112,106,117,96,129,101,111,96,99,111,108,111,95,108,96,111,112,111,91,105,113,108,114,99,118,100,101,111,105,115,102,107,88,104,113,98,103,121,105,121,104,110,94,131,113,109,109,109,99,97,103,107,110,108,102,112,115,117,116,99,118,96,125,111,98,112,117,96,105,96,110,95,112,104,110,111,110,103,113,107,106,112,108,102,111,104,100,104,98,117,107,100,104,108,103,118,98,113,107,104,110,110,114,103,93,104,114,104,104,78,86,101,106,115,114,122,109,102,110,120,104,107,111,113,95,118,107,107,108,104,98,107,99,105,76,97,114,107,95,101,96,95,107,108,100,117,104,128,106,94,117,114,118,108,107,114,105,97,103,106,100,118,86,102,97,115,101,110,109,106,107,95,108,106,102,107,102,105,90,95,117,105,102,112,107,103,103,109,111,120,112,121,97,99,105,91,107,96,109,109,104,106,117,104,105,88,98,120,104,106,105,106,117,103,117,104,100,118,113,113,98,98,104,100,107,107,114,111,112,104,105,117,99,94,96,110,102,100,108,110,113,111,97,105,92,105,109,100,95,107,109,100,109,94,111,95,109,105,94,115,109,103,105,102,111,101,108,109,103,106,103,107,101,96,106,116,99,108,101,105,103,108,114,105,82,109,99,101,119,106,123,103,110,104,96,108,94,112,105,116,98,104,103,112,107,103,106,112,100,109,104,103,109,109,111,112,125,92,110,102,111,113,98,97,110,114,103,114,110,114,105,115,103,107,110,112,121,118,112,105,118,109,106,109,114,104,107,112,110,111,107,113,112,118,109,111,110,104,111,110,101,113,122,108,102,99,90,105,101,111,103,103,105,108,131,110,102,108,99,96,107,92,123,102,111,98,112,106,105,98,102,117,104,106,105,105,98,97,113,101,120,117,112,106,115,117,112,109,103,107,104,111,111,103,87,115,94,106,102,114,120,110,104,97,109,106,112,111,113,111,99,100,103,107,99,114,108,118,134,106,113,118,109,103,101,103,113,113,74,103,115,106,112,111,124,129,107,107,110,105,109,109,103,97,101,102,96,116,108,104,111,116,107,97,79,115,104,99,116,110,112,111,109,101,108,105,109,107,107,120,104,96,102,109,107,116,114,106,106,116,119,109,105,98,108,102,108,108,103,112,98,102,99,113,109,115,109,107,103,134,101,108,100,102,108,110,110,101,99,111,102,100,110,115,107,73,114,109,139,106,107,98,109,123,111,99,105,113,115,101,106,113,105,105,119,107,106,113,109,118,112,107,97,111,114,103,109,112,107,110,106,101,108,110,106,117,104,112,93,109,108,105,108,113,99,116,115,109,107,110,111,103,116,103,83,104,116,95,109,108,108,102,100,104,108,106,111,111,107,108,108,104,99,109,102,103,102,112,96,100,94,88,101,91,111,99,104,114,111,114,101,107,108,109,91,101,111,113,111,98,106,102,113,108,105,101,96,113,120,103,105,86,105,119,110,102,111,104,114,101,99,110,108,113,103,117,104,97,114,111,104,112,92,116,102,118,106,105,109,101,120,114,103,107,107,107,99,124,117,112,106,109,102,112,107,112,100,102,110,115,112,104,107,101,112,119,105,102,109,117,115,95,109,122,103,123,111,94,108,107,102,100,103,92,104,110,106,99,107,101,102,102,113,109,97,110,103,102,106,102,95,113,113,99,98,98,98,99,98,103,98,108,102,113,112,101,110,95,121,106,113,102,100,114,118,93,100,109,102,93,102,107,104,107,112,107,112,108,99,114,106,103,100,91,101,96,109,116,98,104,113,94,110,103,110,100,90,132,95,95,102,102,117,110,114,112,95,106,111,105,106,92,107,110,96,108,105,109,93,85,119,114,99,109,109,109,107,105,102,113,99,99,101,109,103,98,102,102,79,101,99,101,107,121,107,108,106,105,106,90,104,102,99,103,99,119,107,112,94,107,120,109,113,101,100,100,95,107,111,107,102,117,103,109,102,82,118,108,111,109,111,108,103,113,102,102,106,112,98,102,118,107,113,107,99,114,108,113,92,114,99,116,101,110,108,107,102,102,104,105,94,106,98,117,111,86,107,99,104,121,105,106,94,112,118,111,103,120,95,108,109,101,96,117,116,110,98,121,107,107,119,115,100,95,105,101,104,112,98,107,112,112,103,79,117,106,115,112,121,114,112,103,100,114,118,106,100,121,103,105,110,109,105,100,124,115,106,96,83,103,121,90,95,106,112,117,111,95,110,107,103,112,115,111,106,111,112,101,98,99,121,106,102,117,103,104,105,97,109,102,104,96,101,117,102,104,111,109,106,106,95,105,108,103,86,97,88,106,117,103,110,110,108,104,121,104,120,107,103,98,106,105,103,113,119,105,98,112,108,105,104,114,111,108,105,96,103,103,107,103,104,106,107,122,118,101,104,107,104,108,107,107,100,100,113,122,114,103,98,92,105,112,118,103,98,96,125,104,103,102,103,110,107,122,111,109,111,99,99,81,96,79,98,110,99,106,100,109,103,122,109,103,115,108,103,96,135,107,103,108,105,103,118,105,104,100,99,101,98,105,72,100,99,101,101,106,105,100,100,99,100,101,102,108,88,106,96,121,105,114,104,112,100,100,106,114,113,115,97,105,112,101,114,102,94,105,105,99,113,112,100,101,106,101,99,106,107,115,77,103,117,106,124,129,103,105,104,98,96,106,103,109,113,104,103,101,117,96,111,94,101,117,98,108,95,109,94,104,100,107,104,109,103,108,95,101,111,90,98,100,105,106,96,101,91,105,107,109,112,104,113,116,105,101,131,95,100,80,89,102,105,108,99,102,96,119,101,110,104,106,109,113,103,108,103,102,106,99,104,100,98,106,109,99,106,110,106,96,99,101,106,96,103,106,106,119,121,113,71,124,96,101,103,103,104,115,100,103,93,99,109,113,103,108,115,122,94,102,116,111,123,102,97,95,101,105,107,102,141,98,107,106,103,103,101,92,111,88,93,106,96,105,95,108,100,106,101,103,103,96,98,93,107,105,114,86,112,103,109,110,102,104,96,106,101,98,102,102,115,96,112,111,115,105,91,96,98,107,104,110,105,108,103,100,112,106,110,106,105,95,113,106,112,106,98,104,108,103,120,109,115,105,105,98,112,100,108,99,97,94,114,119,105,112,84,106,96,105,95,113,100,104,101,109,100,102,102,108,105,106,105,106,99,97,96,97,106,110,99,100,103,101,119,88,104,102,118,117,96,113,106,110,99,107,108,98,97,104,105,99,112,97,94,107,109,103,106,100,96,95,104,98,112,103,113,112,101,118,113,103,107,109,97,97,105,111,104,98,109,98,117,106,99,106,97,114,100,112,100,93,101,105,102,110,113,101,103,112,98,102,102,108,104,97,109,98,90,110,98,113,104,104,95,103,108,72,112,95,88,122,112,99,100,107,102,96,99,96,94,101,102,97,102,111,103,102,109,104,102,97,117,105,95,99,110,112,107,103,94,112,103,95,106,95,98,103,108,95,95,104,112,109,98,94,104,98,93,110,100,106,110,108,103,106,113,100,101,113,102,103,101,106,101,131,105,105,108,101,104,113,114,101,90,100,96,97,105,108,99,117,107,103,98,103,111,105,108,118,107,102,108,109,115,105,107,119,96,87,96,129,107,96,107,96,109,111,113,108,106,98,92,107,108,105,106,98,111,95,104,107,95,117,99,106,108,108,95,103,106,112,110,102,97,104,102,107,91,107,115,114,104,101,94,100,99,96,100,95,105,102,95,112,116,108,105,103,108,107,92,100,96,105,116,113,110,97,95,113,126,102,107,98,115,103,110,96,114,113,113,91,94,91,96,93,108,117,99,99,95,107,100,94,98,104,104,95,104,106,121,108,101,116,107,103,102,100,104,105,111,98,94,110,103,119,113,108,106,112,85,92,103,103,108,112,101,95,103,89,92,102,105,100,115,109,105,110,113,106,111,98,121,108,103,102,109,99,100,98,95,108,107,74,96,105,100,99,100,91,100,106,92,113,108,109,104,100,106,109,106,111,97,114,115,107,107,98,106,109,101,116,138,121,96,106,102,114,114,99,107,97,99,90,120,100,98,99,95,106,103,107,87,102,96,98,104,97,109,99,111,109,105,113,96,102,99,108,104,91,100,99,116,111,107,98,102,97,108,103,103,104,114,95,105,93,105,91,110,109,108,107,112,93,111,84,97,108,109,99,111,96,97,121,100,92,91,102,113,90,106,107,96,108,110,102,100,95,92,108,112,95,107,90,100,99,106,82,110,103,95,103,103,109,116,102,110,106,94,126,117,119,90,113,92,101,103,100,106,83,85, +481.89819,94,101,105,90,94,112,103,101,91,108,99,97,107,112,102,99,86,120,104,102,115,103,101,102,105,106,90,100,98,120,113,103,96,102,111,123,101,98,114,103,99,100,102,98,110,107,108,92,80,104,98,106,95,109,101,110,106,90,104,101,108,109,108,95,110,113,101,103,81,109,106,104,97,110,101,108,94,91,110,101,113,93,98,88,104,90,99,103,102,109,96,80,101,98,110,103,77,101,96,99,100,94,98,84,90,98,99,98,98,112,112,108,110,104,115,102,92,108,113,99,93,97,104,108,107,115,111,103,96,92,108,105,96,114,105,102,92,107,108,88,101,115,96,103,95,108,102,91,106,103,105,96,108,99,92,102,99,106,104,94,106,113,103,110,112,102,110,92,102,100,103,109,108,112,106,111,105,122,121,95,105,97,102,103,94,108,107,94,102,99,99,105,110,103,110,102,101,104,113,99,107,103,109,109,102,81,126,104,108,96,101,110,103,113,130,109,97,109,102,108,94,105,104,98,96,113,97,109,92,100,106,105,114,95,101,99,100,105,107,101,121,100,112,109,74,100,102,108,108,106,105,103,107,100,109,103,104,109,95,102,100,113,113,96,95,103,105,101,106,118,100,104,104,100,114,104,90,96,103,107,109,112,101,108,103,99,98,112,100,114,114,109,105,108,116,109,96,104,101,100,102,94,104,104,102,97,104,111,114,109,96,108,98,103,110,122,115,111,108,96,107,99,105,109,101,96,87,103,116,110,109,114,100,110,105,106,99,104,99,112,108,106,102,94,120,111,115,114,112,102,107,102,97,107,106,109,125,100,114,108,102,96,111,98,127,98,105,110,100,102,111,98,115,92,100,100,84,111,98,110,110,99,97,107,98,75,92,109,101,95,113,96,101,110,99,107,103,105,96,99,105,94,102,105,110,97,104,104,99,114,102,96,100,112,115,107,104,106,112,97,103,99,101,105,108,101,103,91,104,100,103,104,112,105,96,92,103,99,100,106,102,117,86,94,104,90,100,101,106,112,93,96,98,112,89,97,117,102,136,104,101,95,115,110,107,115,113,119,110,98,107,106,106,102,110,97,99,104,105,103,87,114,106,96,104,99,105,118,107,105,99,110,108,102,108,99,105,93,107,107,118,95,113,92,99,106,89,104,106,102,108,98,108,108,89,105,109,107,99,102,104,114,114,108,109,105,106,115,101,94,98,93,100,112,109,112,104,114,99,119,102,97,103,96,106,103,115,108,100,96,103,108,101,115,116,109,100,94,103,93,100,103,114,92,112,95,115,116,113,105,108,106,116,104,95,106,98,98,110,102,109,98,99,99,107,95,123,116,115,91,97,107,103,105,110,113,121,89,113,106,98,113,104,99,100,90,90,94,108,110,101,94,105,99,119,100,98,106,105,99,106,118,84,104,104,117,101,94,102,101,100,98,101,103,101,102,99,103,106,109,105,108,105,111,104,91,104,95,97,98,96,103,124,103,113,105,104,117,101,104,110,108,108,95,95,109,110,95,110,110,109,109,106,103,113,111,104,112,116,104,108,114,106,91,102,101,104,99,100,96,112,104,102,106,98,103,102,101,100,86,92,107,93,100,101,101,99,103,99,101,104,105,102,94,103,118,119,93,95,110,108,99,99,105,104,110,101,102,111,111,116,107,110,82,105,103,114,100,117,106,113,95,94,104,105,91,91,108,95,106,103,110,93,97,94,99,95,100,108,101,110,105,99,104,92,112,102,95,109,109,120,103,105,102,111,117,111,105,107,95,104,117,109,101,105,113,99,117,101,109,98,101,100,102,108,90,100,108,97,100,104,92,105,107,106,106,124,93,95,109,103,100,98,99,104,103,105,106,101,111,86,112,94,97,102,100,87,106,108,105,105,97,113,99,107,114,115,114,93,97,103,108,103,103,98,107,105,97,99,104,95,100,104,105,112,97,119,113,77,109,117,101,104,103,105,108,96,104,107,104,111,112,109,100,109,104,106,103,100,113,107,105,112,101,100,133,93,100,102,103,97,112,101,128,100,89,98,103,95,107,113,107,99,105,104,108,118,107,93,104,104,102,107,106,104,116,108,106,109,106,100,105,101,106,119,105,107,103,109,99,110,105,110,105,103,115,99,99,101,104,118,91,100,112,111,107,113,108,103,94,95,104,134,107,112,112,107,104,100,105,115,105,114,92,114,102,80,106,96,102,105,111,119,102,96,108,106,122,88,108,93,105,117,104,96,107,109,115,109,108,109,100,82,109,96,100,105,106,110,98,101,91,99,106,101,111,106,103,105,105,122,95,102,103,91,106,104,93,100,99,99,82,110,94,103,107,101,106,105,101,111,114,91,91,103,94,109,108,106,112,95,108,96,96,95,102,100,105,88,97,106,99,103,95,106,93,105,100,101,102,96,109,119,108,111,101,108,110,104,95,95,109,80,96,92,107,94,109,104,102,94,95,106,93,112,102,100,111,118,109,114,109,106,88,95,105,99,102,104,102,107,92,102,102,103,98,102,110,111,104,98,113,88,106,113,98,106,103,99,114,105,73,111,105,117,101,104,107,117,94,103,119,108,100,100,106,98,106,99,133,103,101,143,100,103,107,121,99,118,97,105,102,113,106,110,103,113,102,94,111,106,104,99,96,106,116,85,106,102,100,110,108,107,107,106,97,112,109,116,114,121,111,108,111,103,109,106,106,104,109,96,107,104,106,98,110,101,106,113,104,106,121,95,97,103,109,100,102,106,83,113,112,102,101,105,104,98,110,104,99,107,107,86,104,108,111,109,108,102,92,105,105,75,109,105,122,106,119,113,106,115,117,104,106,94,123,107,103,106,101,105,121,108,102,110,102,99,93,102,106,99,110,109,106,138,101,112,108,100,103,100,111,109,113,104,113,106,118,101,115,102,97,94,99,95,115,101,104,107,109,103,72,94,111,100,115,99,104,115,99,99,112,99,112,105,112,106,101,96,106,103,103,102,120,105,107,87,107,108,102,97,103,109,110,108,112,115,105,90,112,116,106,95,94,112,100,107,106,105,109,97,104,102,96,103,97,117,105,102,104,105,100,98,116,106,103,95,110,109,105,103,102,113,105,113,101,100,97,96,109,103,105,112,99,112,106,87,99,105,105,104,116,107,97,100,108,117,112,107,104,97,98,99,119,105,101,100,85,70,106,109,103,114,111,90,103,113,96,112,108,94,101,82,96,106,93,108,102,107,106,103,102,93,104,104,88,105,106,101,132,99,100,112,98,112,105,100,95,108,98,63,109,116,99,103,120,108,120,95,104,99,101,104,120,101,99,109,102,97,96,108,99,108,105,106,110,107,110,105,101,101,102,102,100,108,99,102,93,98,108,102,107,100,110,103,109,99,115,107,132,107,111,101,102,102,134,109,114,102,105,113,112,111,119,97,107,107,84,100,110,107,116,99,109,100,102,98,99,107,103,99,119,112,105,110,108,95,104,94,106,108,97,112,106,88,114,109,95,111,99,110,97,103,107,103,105,105,107,109,101,108,117,105,95,125,119,109,112,109,99,99,105,112,116,98,104,112,94,106,99,102,96,106,106,109,110,106,101,111,109,92,102,95,109,102,111,111,110,116,121,94,119,106,116,113,110,115,112,98,111,104,105,104,109,105,88,108,109,101,107,104,99,106,104,109,95,105,111,105,100,96,111,115,103,104,111,105,94,105,101,127,99,120,112,119,108,104,104,108,96,103,120,104,107,105,115,120,105,94,105,100,104,110,116,113,106,106,105,99,102,104,92,110,109,112,106,112,95,111,113,109,107,103,120,101,96,106,106,103,106,121,101,117,113,107,110,98,121,97,95,101,111,102,105,103,97,111,104,107,112,105,100,96,97,105,117,106,102,107,107,107,115,113,112,121,114,95,98,109,104,109,106,110,103,75,101,104,93,115,104,79,98,105,117,105,121,98,107,102,102,112,99,93,109,87,112,112,113,100,109,103,99,111,102,107,95,96,69,102,109,99,117,78,120,104,98,103,115,103,110,102,104,97,103,111,110,100,92,116,105,121,100,116,100,101,109,97,100,134,98,103,95,117,95,99,108,98,108,88,106,102,111,112,112,92,117,93,104,98,107,106,104,115,102,102,114,98,93,105,104,109,108,107,110,92,105,100,99,108,101,109,96,98,91,102,97,81,98,102,96,91,102,107,115,109,121,104,110,101,99,113,101,117,108,107,100,107,116,113,109,109,102,96,103,99,98,113,110,105,100,89,103,116,108,107,110,100,107,92,113,101,102,99,115,106,112,118,114,101,100,100,107,106,94,105,99,105,103,107,110,109,106,99,108,98,92,104,116,105,102,113,103,113,106,101,95,99,91,107,109,98,101,112,111,109,107,116,99,106,105,97,104,100,105,101,99,94,104,113,101,110,94,103,96,111,89,101,110,107,98,117,104,98,111,105,109,103,99,101,106,100,108,103,100,117,104,105,93,100,112,94,105,67,103,103,97,102,104,87,113,109,105,102,105,121,98,99,99,92,102,103,94,96,96,99,97,113,110,107,104,102,103,107,103,88,100,101,112,111,105,99,110,101,90,94,91,104,97,105,110,102,114,95,123,122,121,114,100,111,108,109,107,99,102,105,108,101,115,105,91,110,92,99,94,110,106,109,131,105,106,106,99,94,102,104,95,115,107,110,94,111,109,99,111,98,91,102,99,78,102,103,107,103,113,104,105,103,84,92,108,96,99,99,111,92,101,112,94,100,99,101,101,94,102,105,104,95,116,95,110,100,125,96,103,122,98,107,110,113,103,84,102,94,93,112,103,104,114,102,106,104,100,99,102,121,94,93,104,111,99,113,123,85,101,115,98,84,84,104,131,123,104,107,95,107,79,101,97,124,87,109,92,103,109,115,106,105,97,95,94, +482.03873,96,92,95,110,117,102,108,108,97,109,100,98,99,98,111,109,111,121,94,125,111,97,103,106,92,110,94,99,122,108,103,107,105,101,105,98,102,90,111,96,105,116,100,94,100,109,108,120,95,103,96,87,105,99,110,117,107,97,103,104,100,90,93,93,112,110,111,112,96,94,96,106,102,108,92,99,90,96,101,100,95,123,89,108,109,97,108,109,122,98,116,102,109,102,102,104,115,91,104,94,104,105,111,118,90,109,111,85,104,112,102,107,107,107,94,89,91,107,108,105,102,89,115,100,86,100,92,100,106,101,102,103,103,104,109,104,103,113,95,88,90,108,99,99,107,103,109,111,100,107,109,104,109,102,112,95,97,98,101,94,103,99,119,100,97,104,107,105,99,93,101,104,99,110,109,96,100,100,90,107,110,111,97,103,102,98,114,99,99,109,112,114,104,105,89,114,107,120,105,98,96,100,108,95,114,110,100,106,109,106,104,110,110,103,103,106,107,107,95,98,104,92,105,95,104,102,103,108,102,113,110,112,96,111,110,97,112,97,64,105,97,96,120,103,91,103,96,108,108,104,92,110,103,108,98,103,112,108,106,111,96,109,101,103,106,114,104,99,99,95,104,100,111,102,109,113,101,96,107,103,100,102,105,98,110,96,106,104,100,107,101,102,118,110,108,123,100,105,115,112,113,99,100,122,83,106,103,113,105,126,104,102,103,97,104,106,103,107,106,121,102,85,108,110,106,90,101,105,103,96,108,106,103,111,107,128,106,91,110,102,116,104,107,105,97,113,109,106,108,107,102,110,113,113,99,111,106,98,109,101,106,98,99,98,108,110,100,120,90,102,114,99,109,108,108,100,98,100,115,89,111,103,104,101,97,102,112,95,100,97,107,103,92,107,98,105,104,98,109,103,103,109,102,97,107,100,98,105,88,96,98,109,114,106,103,104,107,96,110,111,101,93,93,126,106,93,97,101,100,102,104,109,104,106,103,103,100,109,93,103,109,113,104,100,92,108,87,92,99,120,95,105,102,109,102,107,99,98,115,99,101,103,111,109,113,99,98,98,102,105,109,86,98,109,111,97,109,106,101,111,110,112,108,103,98,110,91,99,98,101,113,107,108,88,97,98,112,120,110,117,99,96,98,105,103,99,84,104,101,110,108,112,115,104,111,104,103,82,96,92,109,104,112,113,110,87,103,100,102,101,97,120,109,101,107,113,105,72,120,109,95,85,100,98,113,101,102,98,107,104,98,106,102,104,98,100,108,118,110,106,117,102,124,72,112,113,102,105,106,97,98,113,100,106,100,110,106,91,110,106,113,101,105,89,101,107,118,104,105,118,111,114,109,111,104,113,102,99,113,101,104,105,97,98,98,109,104,119,107,111,109,109,113,109,99,111,104,106,103,111,108,103,108,105,111,104,103,110,95,99,107,96,98,116,110,109,103,114,107,104,103,106,100,98,102,89,105,121,99,120,107,106,105,114,101,115,108,106,108,105,112,99,103,104,92,108,107,105,114,99,105,110,102,106,101,100,110,103,103,113,97,96,99,104,108,97,90,86,98,98,102,100,102,109,96,104,103,88,101,98,108,121,99,113,101,115,107,100,104,103,92,103,93,100,100,105,91,102,106,103,101,96,114,109,113,99,103,111,112,102,106,110,88,100,104,110,100,105,119,116,114,86,114,102,103,100,102,110,95,106,114,107,103,95,102,102,107,107,122,105,97,107,101,100,96,97,104,105,105,88,111,111,102,111,99,95,91,101,99,105,100,107,98,105,101,109,88,107,91,117,106,96,110,105,100,104,107,109,95,113,97,102,100,104,120,104,100,101,100,96,113,111,115,96,107,99,108,116,106,103,98,102,104,110,110,106,112,99,113,99,112,110,107,110,107,115,102,104,112,103,105,96,109,110,107,93,102,102,97,100,110,97,105,102,113,95,105,104,101,137,114,95,113,105,100,102,88,102,119,110,98,107,94,108,100,99,99,94,106,109,107,104,103,114,105,95,99,107,105,104,107,107,105,105,117,97,108,106,105,99,113,100,110,103,113,105,94,96,110,106,101,103,95,105,105,99,108,105,101,111,104,90,114,95,115,99,109,103,95,103,111,110,114,103,100,108,113,96,118,105,95,103,101,98,94,112,103,83,101,113,104,105,122,100,88,117,100,112,98,103,97,109,109,104,106,111,105,100,86,89,100,103,102,108,118,87,94,99,107,91,91,89,117,105,120,92,103,112,95,106,103,103,112,84,87,98,91,106,112,118,108,105,98,106,107,111,108,113,85,104,106,108,114,102,107,107,108,110,101,103,107,106,105,101,105,106,112,105,109,105,99,110,97,98,96,101,110,100,99,98,118,109,98,110,109,91,102,99,111,108,96,99,109,104,110,105,90,100,99,92,100,110,113,112,93,102,107,100,101,104,107,97,106,108,113,104,96,104,112,94,97,96,111,115,100,93,106,91,110,102,108,100,116,101,91,92,106,110,97,106,90,103,106,108,100,104,109,101,102,106,100,103,113,101,92,101,110,104,100,109,101,107,102,100,120,109,100,103,107,111,97,115,88,97,113,98,113,103,113,106,106,104,82,108,105,107,104,106,98,109,115,99,102,86,106,106,101,94,87,110,100,94,99,109,109,106,97,119,108,99,114,107,102,105,107,107,101,100,116,99,106,105,105,105,117,114,106,105,113,105,104,105,109,101,108,112,116,91,103,106,104,121,110,96,111,109,91,101,112,104,100,99,89,117,119,104,98,113,109,108,101,111,101,93,117,103,105,110,99,117,96,98,110,99,101,145,102,112,99,102,111,100,99,104,101,94,112,98,107,113,105,102,106,102,100,103,99,104,92,100,106,84,105,115,102,76,115,98,117,113,115,100,101,117,97,90,100,117,103,109,103,103,110,106,102,109,98,115,89,105,105,102,100,100,93,116,107,121,95,102,113,103,104,101,102,108,112,107,100,97,115,94,106,97,111,107,108,91,104,109,107,104,104,105,86,74,99,108,109,94,109,82,91,100,113,101,112,94,114,108,99,101,102,108,103,106,113,101,107,107,99,113,97,98,98,93,91,106,98,109,108,104,96,105,107,100,99,104,104,112,114,101,113,116,104,117,98,100,114,99,101,99,106,100,104,93,98,107,110,103,105,94,95,103,109,109,90,109,80,104,96,110,100,114,102,106,95,113,113,96,109,102,115,108,99,98,104,105,100,98,94,109,104,98,107,104,103,94,112,107,104,106,106,111,110,92,108,110,102,97,113,92,112,105,106,103,100,108,98,108,98,97,114,90,110,107,109,98,105,95,116,106,107,108,103,106,99,104,112,106,94,97,88,95,101,100,107,93,113,114,99,109,99,97,101,107,104,107,105,103,122,97,114,100,103,75,110,109,110,99,94,96,97,107,99,112,114,109,111,83,94,95,99,105,108,98,106,106,98,111,127,110,109,112,109,106,98,109,113,97,116,98,112,104,96,106,82,107,100,95,112,100,105,101,94,101,112,105,102,99,113,110,102,108,97,107,90,104,102,126,109,104,98,105,89,112,97,124,117,107,114,83,108,103,106,94,99,95,119,104,106,99,108,100,107,107,108,99,97,109,110,110,99,94,121,105,105,117,98,108,97,110,109,104,105,100,106,103,106,110,102,100,111,109,106,94,103,111,95,119,103,109,94,107,113,105,107,106,111,104,77,110,104,100,113,87,106,102,108,83,101,102,99,113,106,104,109,114,100,103,117,109,102,104,117,109,106,116,98,96,110,93,98,122,100,102,101,103,115,111,94,111,104,113,113,110,111,107,98,105,100,96,106,93,100,111,105,96,83,112,93,106,111,128,97,105,112,103,114,109,104,109,106,107,120,113,102,103,103,101,99,94,113,107,103,112,97,99,90,115,95,102,110,96,113,85,102,101,94,97,99,105,112,95,104,100,97,107,111,99,121,91,110,107,103,107,102,106,102,94,113,122,102,103,78,99,92,92,99,112,101,106,103,113,117,109,109,108,106,91,104,102,92,105,112,93,109,105,113,99,104,93,105,91,108,111,98,109,120,98,111,96,96,101,112,106,97,103,101,104,107,98,108,104,106,117,117,104,102,102,103,103,115,115,107,112,99,107,82,110,105,100,102,105,79,101,111,106,111,98,106,104,112,109,109,117,100,103,102,104,90,101,103,106,103,113,108,103,107,116,99,107,113,101,116,117,94,94,100,108,109,100,109,101,112,104,123,105,98,102,102,109,101,106,109,98,105,116,103,102,100,103,109,99,102,99,110,104,104,117,100,111,102,105,110,118,104,104,108,109,100,102,114,102,116,103,109,118,92,97,94,100,100,107,99,109,97,107,112,105,103,102,112,106,105,107,107,111,112,108,102,113,94,98,103,107,101,122,98,105,99,106,106,117,107,102,109,107,111,92,108,102,110,109,102,98,107,99,99,109,102,107,106,93,115,98,98,99,97,105,91,113,98,105,109,109,85,98,99,102,95,99,97,117,100,107,103,108,99,99,91,115,117,100,108,109,118,104,106,117,93,110,106,101,99,107,105,103,109,105,110,97,111,112,96,98,99,106,100,113,106,101,115,107,104,110,110,99,97,106,106,107,95,98,100,102,97,107,112,99,106,103,113,113,122,98,107,95,109,101,104,88,94,103,102,102,88,111,103,100,104,92,105,102,117,106,97,104,88,101,121,101,127,110,102,100,106,99,100,102,116,103,117,108,106,102,104,102,104,111,99,88,95,116,88,101,104,102,100,99,101,118,103,121,116,106,110,104,103,105,93,103,106,101,101,100,103,104,98,114,108,93,106,102,105,78,110,101,98,110,103,90,98,98,97,106,98,99,108,91,100,97,94,96,105,98,95,106,100,100,106,94,93,104,120,112,98,110,96,98, +482.17929,112,97,102,101,105,129,100,105,101,99,101,98,84,119,100,103,110,95,114,97,91,108,107,96,94,104,97,112,99,111,104,110,97,110,109,101,115,103,108,96,98,97,101,94,93,103,111,106,101,110,104,108,97,103,110,100,96,104,106,109,110,99,100,103,95,108,93,98,108,104,115,106,107,100,101,111,78,98,85,100,104,96,100,111,102,92,104,112,109,104,98,105,106,105,111,107,102,100,107,94,100,99,92,107,108,101,105,101,98,101,100,95,98,105,103,115,102,108,117,105,96,105,113,91,92,102,115,100,104,98,105,103,112,88,112,104,100,104,108,96,97,109,104,101,103,122,111,95,102,99,100,100,99,104,95,103,106,112,113,99,96,116,94,111,110,112,117,100,109,100,75,100,103,97,109,105,90,100,117,98,104,108,98,95,110,82,107,94,103,67,100,102,100,107,113,103,100,94,117,101,92,96,96,98,100,120,94,106,105,110,101,104,95,101,111,106,102,102,110,113,97,102,102,113,95,110,113,109,102,97,103,110,104,98,107,107,119,102,98,104,105,104,109,109,103,101,108,110,105,114,105,103,109,103,110,112,112,104,95,102,106,86,118,97,76,110,99,108,109,111,102,101,105,98,110,102,105,106,105,95,103,113,105,104,96,92,99,100,114,99,107,121,100,105,114,105,91,94,98,94,99,98,105,97,80,106,115,110,103,114,96,105,104,107,111,107,103,105,120,100,92,100,109,106,102,107,101,90,125,104,95,108,107,102,122,106,124,102,92,116,105,98,105,112,91,99,122,108,108,101,106,106,104,101,109,104,121,115,104,95,115,102,104,110,109,103,106,90,116,117,104,92,107,105,109,90,101,101,104,96,112,102,93,93,111,94,106,102,100,117,105,97,103,103,111,103,108,114,98,124,103,118,99,105,103,96,100,93,111,103,107,97,114,112,114,106,118,100,105,107,95,104,100,104,91,101,109,110,94,104,101,109,105,104,106,116,102,96,99,107,120,106,95,108,97,113,87,98,101,83,104,104,107,113,116,108,97,99,106,98,100,102,105,105,104,105,107,105,108,101,106,108,102,113,108,111,99,117,112,106,104,107,111,112,106,95,109,106,104,94,111,98,97,102,127,92,94,119,111,104,102,103,113,117,100,104,104,101,110,108,111,107,106,92,102,104,104,101,103,91,98,107,100,108,99,108,119,104,116,92,109,105,112,106,107,86,96,100,109,100,98,105,114,102,112,102,87,106,111,142,112,102,110,94,100,131,141,93,107,99,125,115,93,119,111,91,106,95,96,103,101,98,107,108,104,107,81,100,96,110,109,100,107,100,112,113,109,102,108,97,117,116,82,115,105,108,108,117,111,102,116,99,120,103,96,106,106,99,115,100,105,100,106,109,112,101,102,107,107,116,101,101,102,99,111,111,110,105,102,113,107,101,104,111,106,110,97,105,109,106,112,108,108,123,97,110,101,113,103,107,109,101,103,108,108,106,117,109,105,98,100,113,108,97,93,98,109,101,103,95,109,104,99,104,103,114,104,111,96,96,114,106,103,96,95,91,106,109,109,104,100,109,96,104,99,101,106,103,104,97,107,100,113,104,111,106,108,103,105,99,101,100,106,103,97,105,107,101,109,104,96,98,112,100,100,103,118,99,116,113,118,102,101,95,102,104,106,97,67,90,117,100,115,104,108,108,104,109,99,110,105,108,100,104,111,116,101,106,107,106,106,109,101,103,98,102,108,103,100,102,103,107,108,101,106,99,106,108,77,102,97,105,106,115,101,99,101,99,108,107,99,109,113,110,99,109,116,105,106,100,108,113,91,118,103,99,116,106,111,100,121,100,104,99,102,99,109,89,103,109,115,117,109,111,115,109,115,100,116,94,109,104,120,109,105,100,103,105,90,125,95,103,116,111,116,108,106,102,95,98,109,99,106,117,114,104,97,113,109,107,97,106,97,107,112,102,107,113,99,106,99,105,102,111,98,104,100,99,112,97,108,110,103,104,96,102,100,101,109,117,107,111,111,108,98,63,93,106,103,103,102,109,111,83,112,94,99,90,100,114,101,103,118,117,103,111,84,104,115,103,102,95,101,109,108,104,97,115,99,104,113,107,104,90,104,90,92,95,101,118,115,98,105,81,98,107,99,101,100,103,102,117,108,112,116,112,106,104,103,104,107,112,103,103,104,103,105,124,107,108,115,110,108,105,106,117,97,95,107,96,107,107,105,96,105,89,107,108,107,97,110,103,108,102,103,99,99,109,103,138,81,93,106,93,110,113,104,108,96,109,105,105,95,108,97,116,101,97,108,88,107,118,110,98,104,110,103,88,110,110,116,87,105,110,107,105,93,107,109,88,110,99,114,107,108,98,110,101,111,99,106,108,104,108,99,109,101,98,109,122,111,98,100,113,98,97,113,100,103,114,103,110,95,102,111,102,104,99,101,99,112,109,108,116,109,106,116,95,118,103,110,112,98,100,105,113,110,101,111,127,111,108,116,107,105,113,113,98,103,101,106,117,92,109,118,103,92,93,107,119,115,108,99,122,111,124,112,109,98,102,101,110,104,112,110,111,108,122,102,98,118,101,91,96,105,103,103,108,104,100,101,107,111,109,96,108,123,110,102,104,102,104,121,96,105,109,104,119,111,101,105,107,110,111,94,104,109,107,121,108,112,106,109,105,106,112,107,107,113,96,99,104,96,113,101,112,104,103,97,111,106,108,110,110,106,107,109,104,117,96,95,106,95,116,109,113,105,110,112,105,111,112,103,108,115,113,109,106,114,107,97,112,101,108,109,111,113,84,106,109,105,94,103,93,117,89,107,99,116,89,101,110,113,101,98,117,112,108,95,112,131,95,109,107,109,106,96,86,91,126,109,109,115,107,108,103,116,106,118,115,105,106,102,106,111,112,101,114,119,104,114,114,100,133,104,112,101,101,108,99,104,107,108,101,120,108,102,115,109,96,107,105,101,98,108,108,112,105,101,94,109,104,101,103,114,112,111,101,105,118,119,104,98,114,119,102,92,112,101,116,106,96,103,107,111,112,103,98,105,114,107,104,104,115,104,105,112,93,105,101,103,107,90,112,105,96,103,108,95,109,104,104,110,106,99,99,102,103,103,98,110,119,102,107,109,106,90,106,105,96,105,100,108,104,100,112,103,107,92,110,133,106,104,106,99,104,106,104,105,99,114,100,92,106,113,101,103,115,105,106,111,91,100,109,105,103,105,104,112,109,103,109,119,113,109,126,106,111,102,96,105,102,106,104,116,99,101,101,104,104,109,98,116,117,111,116,122,94,96,105,122,112,112,110,90,108,122,97,105,112,91,98,94,107,115,114,119,103,110,99,91,110,112,107,98,95,108,102,117,96,95,104,109,115,112,110,99,117,115,105,111,116,106,102,95,102,106,99,113,100,95,93,98,103,100,108,102,118,108,107,113,108,113,114,91,113,106,128,103,92,120,103,109,104,104,114,121,110,112,108,120,117,104,123,114,105,115,111,106,96,104,100,102,105,97,107,95,112,89,98,103,111,83,105,104,100,106,109,106,105,121,104,104,112,93,105,121,112,109,98,96,109,110,110,115,100,116,106,107,103,109,105,107,101,94,104,114,100,112,98,103,98,104,110,103,113,111,104,107,109,101,116,102,122,100,109,114,107,99,110,107,110,92,111,109,98,108,117,112,103,120,101,106,102,107,115,102,106,112,100,100,110,103,104,127,118,102,115,103,110,115,101,97,98,100,102,97,100,107,104,113,101,113,102,111,111,106,100,115,113,102,109,105,113,108,90,100,117,99,109,115,112,104,105,109,104,115,102,99,120,100,103,105,108,101,113,104,97,118,95,102,106,103,108,107,103,95,107,102,103,102,97,99,104,108,102,111,100,103,104,102,104,102,110,114,107,113,92,112,99,105,105,137,114,108,113,107,101,96,112,95,109,95,115,104,112,107,112,86,104,109,111,103,112,95,104,96,111,105,113,118,103,105,104,121,114,104,109,110,94,103,113,97,103,111,113,106,106,109,105,105,103,107,111,113,106,95,112,91,108,103,102,116,105,112,108,111,116,107,101,109,110,102,115,125,112,102,103,105,108,105,108,104,114,108,98,112,119,103,109,92,107,107,113,113,115,101,109,113,109,103,104,99,101,105,94,99,118,96,109,117,108,107,106,104,100,100,106,124,112,106,104,99,102,103,108,112,107,104,112,102,112,106,95,104,105,116,116,109,104,107,107,100,109,111,111,103,107,113,112,100,114,101,109,99,98,113,108,94,109,105,97,103,104,120,95,106,109,113,98,105,103,107,109,115,106,101,110,105,110,103,94,107,109,117,99,108,108,113,100,109,102,101,103,104,132,110,104,105,97,109,96,90,113,105,117,120,110,110,93,108,98,103,109,105,107,91,111,108,103,124,99,106,107,105,102,98,107,108,104,110,116,116,106,109,105,98,96,113,106,110,108,109,109,102,109,108,113,104,110,102,98,117,116,103,111,106,102,96,95,102,103,103,102,102,102,111,106,107,105,108,99,104,91,106,108,107,110,99,100,102,126,116,84,99,115,98,115,114,103,97,98,104,110,109,78,105,110,101,105,110,101,105,124,115,118,103,111,105,106,110,101,107,105,109,94,100,110,116,110,107,105,102,111,98,106,124,112,99,119,88,99,109,113,116,100,102,108,101,84,105,98,97,109,115,104,102,94,101,87,96,104,123,113,97,72,98,95,117,107,103,100,114,121,115,106,93,118,128,91,96,101,95,105,93,103,106,100,91,99,119,97,101,98,105,111,101,110,99,104,103,88,93,113,110,110,105,119,104,103,110,103,114,106,99,124,109,109,103,124,102,109,97,112,99,92,91,116,111,106,117,107,100,103,104,119,116,107,107,90, +482.31982,104,102,82,97,94,111,98,110,95,93,99,97,87,113,111,100,100,95,97,104,101,110,94,103,116,115,102,97,98,99,92,101,78,104,100,111,113,105,121,103,96,94,94,92,99,105,107,105,83,110,118,108,111,102,110,93,107,105,103,92,99,104,89,98,103,121,94,106,109,105,109,99,97,104,102,105,115,96,125,112,100,106,108,110,102,95,105,106,102,100,98,114,107,111,109,99,104,98,106,103,97,101,100,98,100,90,100,98,98,100,109,107,109,114,114,98,103,98,96,99,101,110,101,114,109,107,104,109,109,116,98,110,103,108,114,105,109,101,95,104,100,99,96,86,118,86,104,109,99,109,110,86,101,91,114,93,124,112,106,107,93,105,112,101,104,96,109,92,108,100,102,95,71,101,104,102,108,89,110,130,107,107,113,105,88,102,113,103,115,100,109,117,108,105,96,96,103,104,108,106,124,101,89,103,99,88,98,101,112,109,103,111,100,110,116,111,100,105,108,108,109,91,94,100,105,111,98,105,105,104,95,109,101,94,94,112,119,104,112,108,108,117,102,105,76,106,104,107,98,103,110,96,108,102,91,121,103,103,118,99,91,109,110,97,103,108,103,102,79,103,92,98,95,108,107,105,96,98,103,127,114,100,94,102,98,108,88,102,105,106,87,106,106,115,92,97,114,106,112,107,109,112,103,106,111,112,104,109,97,113,88,106,111,100,119,116,116,103,111,103,104,109,107,110,96,105,110,72,111,103,86,95,102,109,105,104,109,109,98,110,109,115,101,113,113,110,100,100,118,103,99,108,77,96,103,106,95,101,101,90,99,90,97,99,117,98,108,100,101,109,96,106,108,106,105,107,114,103,106,100,99,105,93,111,109,105,110,108,122,107,109,99,101,107,102,94,100,109,99,99,120,109,80,104,102,96,99,104,100,104,112,90,112,104,105,100,100,107,112,106,103,103,116,105,97,98,108,92,100,111,111,95,110,106,118,101,108,108,97,109,104,116,115,103,88,89,100,108,101,77,104,110,103,106,97,101,103,101,105,113,97,103,115,98,102,113,110,101,122,114,102,108,94,94,115,104,89,102,115,114,115,106,109,108,107,105,104,101,96,104,118,104,96,113,104,113,102,108,112,99,118,102,102,117,104,101,99,108,122,105,113,101,108,103,108,110,106,112,76,104,101,103,109,100,108,103,116,108,103,107,104,94,104,96,102,106,102,113,94,110,87,107,105,99,117,108,111,108,111,106,105,108,114,98,101,109,107,102,95,99,117,108,99,116,106,103,108,100,117,112,95,108,108,103,102,111,99,97,95,118,112,103,106,96,100,100,105,102,105,111,102,99,107,122,113,106,96,102,102,108,106,101,96,104,114,97,108,95,107,109,107,95,106,104,103,78,108,104,116,92,112,105,95,105,105,85,110,112,113,106,103,89,97,107,108,99,104,109,110,108,100,96,114,103,103,95,108,101,105,110,103,107,107,105,109,108,100,116,103,110,116,109,97,104,100,88,113,95,115,106,99,124,113,96,101,104,97,100,117,99,106,106,99,120,114,101,93,107,109,100,105,125,107,99,108,98,108,94,118,98,101,96,108,101,98,110,108,110,96,103,93,108,106,108,110,105,109,101,93,111,93,74,107,115,108,105,110,100,100,104,112,94,89,104,95,117,106,117,113,91,98,106,110,106,93,99,111,102,118,94,113,97,118,80,90,92,96,121,118,98,88,108,98,107,109,118,105,101,95,105,91,91,99,108,109,112,104,105,107,110,106,121,110,108,100,105,102,109,101,111,100,109,108,109,92,94,109,111,108,106,111,102,113,96,111,104,105,100,111,109,97,95,116,102,112,111,105,92,130,106,102,99,121,110,101,102,109,108,93,111,96,97,117,100,108,100,110,111,106,109,105,107,116,108,105,107,100,108,107,113,96,102,95,103,111,95,102,111,110,101,106,99,125,105,109,97,103,102,114,108,105,114,94,93,114,93,106,89,106,106,98,92,109,107,99,100,118,111,99,102,115,112,116,107,102,90,103,100,104,106,121,102,105,100,102,104,95,112,99,108,96,97,110,102,106,93,99,114,109,101,111,107,109,104,125,115,98,102,100,100,103,106,102,109,91,100,100,104,104,105,101,105,114,114,114,105,107,103,121,107,104,99,94,103,111,94,98,103,102,105,115,91,93,100,107,94,96,108,88,113,119,102,108,99,96,104,124,90,103,94,103,111,100,95,98,112,117,90,115,109,97,108,107,103,105,106,90,97,105,100,113,107,118,99,119,99,104,122,95,110,109,103,100,104,94,105,108,100,111,100,104,103,113,100,107,105,103,112,112,98,102,101,100,96,97,99,94,105,111,101,106,116,109,95,99,110,103,94,100,105,107,102,105,102,103,104,100,102,117,104,104,100,97,111,112,107,94,96,99,104,101,110,104,116,97,112,99,102,96,102,110,94,102,113,104,98,95,110,123,90,107,102,104,102,104,97,79,105,109,96,100,99,106,105,117,105,104,96,111,105,107,112,106,112,108,91,79,100,114,99,99,100,105,91,105,100,107,99,98,98,98,106,112,98,85,104,101,86,106,100,84,105,86,107,116,104,106,64,94,92,85,107,119,101,89,100,111,100,83,112,83,89,105,101,96,117,88,97,112,101,102,91,100,85,96,91,98,139,102,111,128,111,115,116,108,103,117,105,109,95,101,100,97,119,103,111,97,98,91,105,100,105,96,101,106,104,103,109,109,107,119,106,99,106,100,111,98,114,95,99,100,87,96,95,104,108,105,108,107,98,83,106,95,113,99,100,100,113,98,112,93,96,107,112,100,103,114,108,96,102,112,104,103,112,100,76,105,99,102,107,110,100,102,108,108,102,97,108,93,107,99,96,89,108,105,98,106,92,103,111,95,102,115,99,102,106,110,109,107,104,100,104,102,106,106,101,112,96,103,113,117,101,99,106,105,109,98,107,99,86,99,108,101,100,104,110,102,98,105,112,104,99,112,100,105,99,101,104,137,88,105,107,98,121,112,100,99,101,105,96,98,93,111,101,119,91,106,108,116,95,103,117,99,112,100,131,104,108,95,108,120,120,107,103,116,100,107,127,87,113,101,101,99,113,113,96,100,103,99,108,112,100,95,105,100,102,105,99,100,99,105,105,105,100,111,91,99,109,103,143,100,83,107,112,101,102,113,96,108,88,91,115,97,99,113,104,101,98,102,106,104,100,104,83,93,95,104,93,107,93,108,98,100,108,103,114,93,105,107,109,92,92,112,97,111,117,97,93,101,116,96,87,103,102,104,111,117,98,107,108,104,106,111,110,102,114,92,108,106,100,102,117,100,95,100,112,99,103,108,102,105,100,111,104,106,106,103,102,105,91,104,70,90,112,93,91,101,101,112,101,94,102,99,99,107,95,98,102,118,99,115,102,101,109,109,109,91,104,97,109,107,109,87,127,104,106,98,116,107,99,101,104,102,109,97,111,105,102,85,120,104,91,105,103,111,109,104,113,106,109,105,102,105,112,100,107,99,109,94,108,108,103,104,94,104,100,98,99,112,97,107,97,111,106,108,99,99,106,95,100,118,98,110,111,96,93,99,85,115,102,106,99,100,104,116,106,106,108,112,105,97,96,109,98,101,92,103,95,109,108,97,94,105,103,102,97,106,111,92,112,109,109,103,106,108,106,103,88,111,98,106,112,117,110,106,88,120,105,105,94,93,113,104,101,99,108,115,96,101,102,103,97,110,102,99,106,117,105,112,104,104,104,113,104,110,107,102,92,97,112,91,106,103,124,95,108,116,117,113,104,100,117,103,108,109,99,80,104,121,101,83,113,114,109,108,104,113,101,108,88,98,100,103,94,107,97,90,101,98,108,103,99,94,99,102,97,114,95,106,106,108,111,106,108,113,91,106,113,102,80,112,101,114,106,99,108,95,98,110,95,108,109,88,104,104,99,110,96,102,103,108,102,106,90,101,101,112,106,91,115,113,102,106,104,103,111,107,114,111,115,106,122,116,99,103,106,101,99,106,100,108,107,102,120,108,105,114,109,101,90,100,98,104,99,99,101,105,104,99,106,105,115,106,117,109,104,103,99,98,101,94,93,99,110,81,108,100,100,96,102,110,104,110,104,98,82,87,107,114,103,106,94,98,108,116,104,110,106,110,102,100,104,103,104,98,100,104,96,108,102,114,113,103,68,109,100,105,113,103,106,112,106,100,102,100,97,112,103,98,98,97,98,111,102,86,108,121,95,90,115,100,95,118,111,105,103,88,101,94,104,105,91,98,103,96,93,105,105,104,105,110,111,105,103,105,107,95,95,99,92,115,97,103,102,103,111,103,93,113,96,108,100,101,105,105,100,99,119,106,102,112,101,112,114,102,105,133,110,94,97,95,102,107,91,108,114,121,125,83,87,105,111,100,97,106,111,102,84,95,100,113,95,91,104,102,93,98,101,113,98,99,93,102,108,93,87,103,107,105,112,104,106,95,101,101,107,110,100,98,116,101,91,95,98,107,98,106,104,109,102,99,101,111,110,106,99,88,98,99,99,91,99,104,99,100,130,110,99,94,93,99,95,112,101,108,106,101,99,99,105,94,100,110,114,107,109,125,109,103,103,100,95,116,104,104,91,101,109,106,100,96,87,102,102,97,100,101,114,99,113,101,100,110,109,110,88,117,105,110,112,111,103,117,102,109,106,95,89,93,105,85,89,99,91,99,102,108,93,102,107,99,99,103,96,101,113,104,115,97,104,113,108,97,116,95,98,107,103,98,121,110,108,108,102,99,96,108,101,104,103,105,117,102,92,105,106,119,112,94,109,113,108,88,94,100,110,104,103,109,85,111,98,98,102,103,100,107,104,102,108,109,106,94,102,92,94,102,102,98,94, +482.46036,126,100,114,99,105,103,107,96,95,121,100,109,110,92,102,111,98,109,113,109,109,103,100,106,98,102,104,111,115,100,103,93,105,106,96,120,97,97,106,110,94,108,117,102,100,101,96,109,108,114,119,109,116,92,102,102,118,106,99,85,97,103,94,108,112,102,92,106,106,98,104,117,108,109,109,109,91,122,87,117,91,113,113,103,106,106,102,105,108,101,94,100,99,97,92,92,102,99,103,109,103,104,107,85,89,113,101,113,106,92,98,100,103,104,105,112,111,95,109,99,94,100,91,100,106,118,95,102,106,113,95,104,99,103,99,95,98,94,114,107,109,96,111,105,103,102,108,105,99,101,107,103,113,99,107,96,107,109,105,112,102,107,98,109,98,105,103,101,104,109,96,103,105,100,105,108,94,106,108,107,102,109,103,105,109,102,96,99,105,100,98,101,113,101,73,100,94,118,103,112,109,102,106,110,102,101,102,103,105,105,87,106,105,96,107,99,102,111,103,88,104,107,102,81,104,101,103,99,113,112,84,99,110,94,92,103,96,106,138,101,97,110,109,96,80,96,110,103,104,91,101,96,97,97,113,110,102,110,95,115,93,95,99,99,90,110,109,111,104,104,110,104,87,90,110,95,112,106,104,100,103,104,116,98,101,109,104,107,105,99,105,101,105,104,110,99,115,114,114,91,112,114,113,107,106,103,108,113,95,109,97,112,106,99,96,107,107,108,102,105,106,98,111,107,114,109,108,94,101,106,103,102,103,107,103,114,98,111,109,103,96,107,97,102,100,103,110,109,109,104,99,102,118,84,109,111,105,105,110,108,104,98,98,97,104,107,110,106,106,83,99,98,116,109,101,111,120,103,95,101,118,103,104,99,120,97,110,94,101,119,111,107,104,112,115,96,97,93,101,110,104,111,120,100,103,111,110,121,107,103,107,105,94,105,105,110,106,110,109,104,112,98,99,110,105,109,117,102,106,118,99,103,104,102,83,106,94,99,96,109,117,114,105,106,112,109,93,94,100,116,101,103,104,100,114,106,95,105,113,99,106,97,99,100,113,103,108,112,99,108,102,101,102,113,98,112,100,124,110,98,102,107,107,97,103,100,100,105,114,106,108,106,112,105,85,98,106,107,96,106,107,108,109,105,114,102,102,125,94,94,101,120,110,110,106,121,95,101,69,103,111,104,102,99,112,105,115,119,98,102,108,112,129,86,100,106,101,110,109,113,98,107,105,111,114,114,100,94,120,94,98,97,98,102,102,104,109,96,105,100,77,100,96,116,107,97,111,108,102,99,104,102,104,110,103,108,96,106,98,98,116,118,105,103,110,100,108,102,111,100,101,114,103,99,108,111,101,109,111,106,111,104,99,100,103,114,110,100,100,110,92,110,102,108,106,104,110,103,103,109,108,111,109,104,112,108,98,95,109,105,105,103,102,104,98,103,113,99,112,114,107,99,95,104,103,105,109,99,108,103,96,101,112,102,110,110,101,113,92,110,109,104,106,109,105,98,99,100,105,96,105,97,112,99,99,87,106,104,109,83,102,114,109,95,100,100,87,96,100,109,103,96,110,101,83,121,110,96,105,93,109,103,108,102,103,106,109,119,106,105,112,109,101,107,101,100,84,99,100,106,102,106,98,106,95,93,102,104,111,108,106,106,99,96,99,106,110,96,103,105,96,99,105,107,123,118,114,103,107,98,107,102,95,101,96,103,109,97,101,111,106,105,97,112,101,106,98,105,102,101,111,112,118,105,103,103,90,106,109,102,105,100,102,103,113,108,108,100,106,117,103,108,104,118,107,97,95,99,106,107,102,97,109,110,113,103,106,110,96,102,119,106,98,96,110,109,96,97,104,97,91,92,104,104,97,110,105,107,110,91,100,98,98,105,112,109,107,104,101,112,105,108,115,103,98,107,95,122,96,105,109,96,113,107,97,114,101,91,115,108,96,107,107,115,106,97,92,108,108,110,113,116,94,100,95,115,107,95,107,104,105,102,97,110,98,99,103,104,99,108,109,99,89,106,98,96,99,123,107,104,98,105,120,107,99,98,105,82,110,102,105,105,93,101,95,93,106,107,111,101,101,103,108,93,118,115,101,107,103,105,108,84,109,106,98,90,99,104,104,93,104,103,100,109,94,106,108,107,94,101,110,100,107,99,106,103,110,106,104,106,108,110,116,108,117,96,97,101,123,114,109,94,103,100,110,101,100,96,104,123,92,88,104,106,104,100,108,109,101,103,97,91,106,95,109,95,95,111,101,107,108,104,98,103,101,109,107,107,102,97,101,92,100,105,104,110,105,117,102,115,83,109,103,94,114,91,105,97,98,103,117,116,120,91,100,95,81,96,111,113,98,108,105,109,106,98,103,104,108,96,101,105,101,103,96,100,101,110,100,110,96,110,102,124,114,96,108,111,113,107,113,110,99,102,92,98,98,103,100,104,104,115,95,99,107,106,103,107,116,107,115,107,106,86,100,100,103,108,109,114,106,106,108,109,113,98,75,114,111,108,92,120,116,101,103,100,113,106,98,90,94,99,103,104,116,115,99,100,101,98,101,111,107,103,106,109,98,116,110,109,104,104,84,106,104,104,104,103,95,99,115,104,127,98,102,114,106,111,90,111,94,94,105,94,105,109,106,106,117,97,104,78,106,102,106,99,104,106,108,107,99,107,105,119,106,106,101,96,106,90,96,106,112,105,112,91,102,104,104,109,102,106,113,96,113,113,112,121,94,109,107,106,102,100,115,105,96,99,107,103,117,103,113,79,104,101,120,99,112,105,84,96,104,110,112,117,101,108,75,104,93,108,112,95,113,103,98,103,99,106,97,103,108,107,109,90,118,106,111,98,111,111,109,104,101,99,102,105,98,109,117,101,112,101,98,100,99,119,108,106,97,109,103,95,117,111,96,104,101,114,99,99,101,103,99,69,107,101,98,109,102,104,102,85,99,107,98,104,105,108,104,108,108,105,123,106,103,104,107,102,100,102,105,97,108,102,109,108,96,107,109,102,101,107,120,102,90,98,95,103,113,106,108,124,104,87,104,101,107,104,104,114,102,102,107,81,100,102,109,82,100,117,105,114,112,95,105,114,72,101,118,106,106,111,96,104,106,116,80,106,114,102,87,100,112,102,94,113,112,113,98,102,102,101,102,96,103,98,106,114,103,98,95,102,109,106,118,106,100,97,103,98,102,99,98,84,108,113,96,107,101,99,113,108,104,109,115,109,106,108,104,100,113,116,105,101,102,102,109,113,105,110,114,103,98,107,108,104,110,107,117,99,104,105,109,99,107,102,109,108,111,110,107,106,102,111,107,104,101,99,102,97,102,108,108,107,102,111,106,95,107,110,98,100,106,108,94,106,109,112,103,109,113,109,103,106,104,113,105,97,97,103,111,113,100,99,106,103,113,114,115,100,86,111,103,114,102,116,99,119,101,117,113,108,114,94,94,116,108,109,104,108,104,98,106,99,105,98,111,99,100,105,107,117,110,97,113,104,99,106,103,103,95,108,96,100,111,110,111,91,105,131,99,107,113,114,98,117,102,108,120,103,106,111,87,115,118,107,100,105,101,101,102,118,92,105,122,102,107,100,105,104,112,100,98,102,94,113,95,102,101,116,106,99,105,110,121,102,104,104,100,114,110,100,107,100,110,111,108,103,97,111,97,104,101,103,98,110,103,93,103,108,125,99,108,96,103,103,111,113,98,103,104,98,106,104,94,101,100,111,98,100,103,140,102,103,107,106,98,126,112,105,101,110,97,108,99,110,102,101,99,112,101,82,92,97,109,105,92,104,113,107,110,97,109,98,112,110,108,103,109,117,109,95,93,106,103,116,108,114,111,121,107,98,101,101,96,96,103,101,101,104,96,103,99,101,124,105,97,103,106,99,106,95,107,104,109,98,99,103,112,105,106,112,98,89,124,100,109,96,96,98,99,98,109,102,119,95,96,91,92,111,93,111,106,99,105,102,112,101,107,109,85,101,109,104,95,104,96,109,109,105,93,107,109,108,87,99,105,108,112,112,109,101,105,101,106,102,119,94,103,103,97,96,102,98,110,96,112,108,93,98,110,101,94,108,105,104,120,99,115,98,98,95,99,98,102,98,111,109,102,108,105,112,97,98,111,109,109,113,113,110,96,104,103,102,116,107,98,89,105,103,108,103,101,136,109,103,100,115,102,103,96,95,96,103,99,93,107,107,110,110,113,99,91,105,100,107,101,113,97,100,106,115,112,86,96,107,102,104,106,96,104,101,107,79,101,103,105,107,112,100,107,117,106,118,107,101,106,103,108,97,105,109,117,91,97,99,100,110,100,94,113,100,89,100,102,103,113,102,111,113,105,107,102,102,111,102,99,107,104,98,98,112,101,90,108,106,111,111,98,83,104,112,97,109,93,119,98,104,109,109,106,107,100,109,89,92,95,110,103,104,95,111,113,108,102,106,109,102,108,75,86,116,110,101,99,109,118,114,75,89,101,98,115,113,106,102,121,91,103,97,104,136,94,106,104,102,107,108,102,107,91,103,98,90,101,102,104,109,102,107,100,101,100,113,107,98,98,101,95,110,78,99,96,105,96,103,107,101,110,97,104,104,105,118,93,96,109,90,106,116,124,100,109,102,110,109,119,113,101,92,103,128,117,102,112,87,101,97,96,112,108,113,99,99,92,106,100,101,97,87,110,93,89,98,95,95,103,133,86,91,102,104,107,107,99,104,118,100,111,87,100,94,112,98,102,100,104,98,94,97,96,104,100,105,106,110,103,95,90,115,101,91,105,101,97,99,116,114,101,101,99,98,104,103,105,117,99,108,96,113,96,110,96,111,92,109,112,100,102,116,103,95,108,105,96,111,113,98,109,96,107,105,95,91,100,90,90,95, +482.60092,103,104,101,102,106,107,118,115,93,106,89,106,99,99,94,104,94,101,102,112,109,109,98,105,100,102,118,93,105,120,106,92,108,104,105,125,111,103,104,101,120,98,105,87,116,131,106,96,103,103,106,95,109,94,113,101,105,99,86,101,109,98,121,82,110,109,91,106,108,97,114,109,105,104,96,96,96,91,103,104,114,103,111,105,101,101,95,100,106,107,115,108,113,110,101,92,91,88,109,117,103,120,107,102,95,112,93,84,87,101,114,94,101,101,103,113,100,94,106,106,95,107,105,110,108,104,110,100,109,106,94,105,98,102,102,109,106,106,110,106,107,118,104,99,94,120,112,104,108,110,97,97,107,98,108,96,103,109,104,101,101,101,99,103,110,97,98,108,103,100,100,110,114,100,104,117,110,111,103,113,100,90,93,109,107,108,105,106,122,101,94,111,110,99,92,104,107,97,96,104,107,93,114,80,102,103,103,99,102,117,105,103,111,103,104,99,95,106,103,104,101,100,110,97,102,97,114,109,103,101,108,112,103,99,127,116,97,99,108,112,100,111,112,104,120,86,102,101,112,101,105,119,95,102,110,118,108,107,124,106,112,103,99,96,106,74,97,104,105,105,102,105,113,97,91,110,93,103,103,105,108,105,91,107,104,107,88,108,106,99,104,95,101,104,107,107,117,104,94,91,101,104,114,102,99,105,106,78,98,113,106,103,115,108,97,96,104,98,113,103,96,100,108,105,95,132,119,101,106,114,102,90,116,98,102,104,113,114,108,100,97,96,98,88,90,101,104,109,113,108,107,107,126,107,119,116,99,100,113,100,106,110,109,95,80,99,97,109,99,106,113,107,113,107,114,96,103,117,106,96,121,113,103,114,103,93,110,105,100,109,113,96,103,100,116,93,102,107,105,110,105,105,106,114,117,99,103,107,99,113,100,105,108,108,107,94,111,106,103,92,113,100,108,111,103,76,93,102,104,111,101,101,104,100,102,91,107,115,103,105,110,99,113,111,108,111,98,99,107,114,112,105,100,100,100,109,102,114,115,84,106,107,103,96,107,144,114,113,107,103,102,101,107,109,98,101,95,117,108,108,124,106,106,108,112,105,102,105,95,98,106,107,101,99,113,98,95,76,95,103,114,115,104,110,110,103,93,99,110,107,114,106,104,110,96,104,96,102,106,105,99,84,88,125,101,103,113,104,107,87,102,97,99,95,114,102,106,105,98,105,100,107,104,108,112,95,112,95,107,100,100,110,104,106,104,104,101,102,102,95,107,112,108,115,102,109,102,107,94,101,98,91,95,98,108,106,104,101,114,109,120,97,107,112,106,122,110,103,99,109,121,113,97,104,119,115,108,104,114,93,107,108,103,105,100,82,92,97,114,83,109,117,120,108,106,104,109,126,104,97,103,104,91,93,100,104,104,98,119,104,96,109,113,110,93,99,109,122,103,109,112,106,102,102,108,101,109,106,98,109,106,110,119,114,108,103,102,119,99,112,117,109,111,112,67,105,116,101,104,101,109,109,103,101,104,107,100,103,98,95,106,103,105,115,113,106,110,107,104,102,102,109,107,110,94,109,103,107,106,103,96,97,102,107,113,109,101,97,114,105,104,110,110,91,97,104,82,104,101,103,119,92,108,119,94,98,106,104,104,112,96,96,103,110,85,100,103,106,100,105,97,94,108,108,106,114,103,101,99,97,118,109,109,100,100,113,103,105,102,102,88,117,107,97,107,106,111,107,121,94,110,101,108,103,108,103,90,95,127,103,116,104,113,108,101,106,102,117,98,103,98,114,109,102,106,109,115,108,105,104,110,111,96,110,112,98,92,102,101,133,112,106,112,104,110,104,116,112,108,96,98,115,100,108,123,90,102,113,108,98,115,105,109,92,109,104,101,107,113,108,97,110,114,104,112,114,96,103,103,118,112,116,107,107,100,110,99,111,113,111,117,113,110,105,111,95,102,108,109,99,105,111,106,113,102,99,120,113,111,107,107,105,108,108,103,117,91,117,111,108,102,110,105,121,92,99,110,125,99,115,106,119,93,107,110,107,85,96,98,110,106,109,110,112,114,101,101,104,105,105,107,109,109,88,107,106,103,110,95,109,105,115,114,112,95,108,115,101,81,111,102,118,113,103,104,97,116,111,95,103,92,111,120,113,108,100,108,99,113,108,108,112,103,110,98,105,98,105,93,100,103,125,115,102,103,113,106,108,102,98,100,97,108,109,106,104,108,108,92,109,111,103,108,97,94,93,99,120,103,101,103,99,103,98,112,98,108,102,105,91,74,110,99,107,99,91,102,119,96,98,100,112,99,100,105,101,109,103,91,99,96,111,106,95,105,92,115,105,100,78,115,103,106,93,102,104,107,96,89,123,105,101,98,89,106,114,96,95,114,101,103,108,103,101,99,108,102,106,102,98,94,106,99,99,97,96,109,108,94,104,103,108,106,109,118,99,99,100,102,107,123,107,106,92,111,99,104,110,111,111,100,96,116,110,103,105,104,100,107,102,106,117,106,72,104,103,108,107,111,107,111,86,113,104,106,118,96,117,103,97,108,113,107,101,107,115,116,103,104,103,118,96,95,110,102,100,109,103,102,107,108,115,110,110,118,105,107,104,95,110,103,112,122,115,108,108,103,95,105,113,108,99,120,107,103,104,100,88,108,112,113,109,104,114,109,109,109,102,112,111,111,107,113,99,97,104,103,104,101,102,118,105,123,101,104,111,116,117,94,117,102,106,130,115,108,106,106,108,110,109,114,110,107,116,113,109,112,111,114,107,101,98,104,101,116,104,110,107,102,119,105,100,124,112,104,118,123,79,98,110,113,108,107,99,104,103,100,117,100,98,117,100,114,120,99,96,98,102,105,108,106,109,106,105,100,102,117,106,103,102,112,111,91,118,113,116,110,93,108,103,109,99,111,98,100,102,102,102,104,109,100,98,104,98,97,111,99,95,106,100,106,109,116,115,106,105,105,115,103,94,109,117,111,98,111,100,113,108,110,100,85,100,107,109,100,103,99,114,111,100,109,115,110,102,104,106,108,100,110,100,109,106,102,107,97,103,106,110,108,121,83,110,113,95,110,91,109,107,101,93,105,110,106,108,111,109,112,108,95,106,94,103,117,113,106,102,109,112,105,114,113,111,101,105,112,109,106,88,104,105,106,102,101,102,97,106,102,111,104,99,115,105,97,100,113,100,99,113,106,100,104,105,86,96,100,105,111,99,104,98,104,102,95,109,112,108,100,99,102,106,111,104,100,85,105,107,114,101,109,98,100,95,113,124,108,105,107,112,113,95,103,98,105,105,106,102,115,100,110,69,117,119,106,104,94,109,99,119,102,99,117,126,109,112,100,99,104,97,101,102,109,106,102,102,114,102,98,111,95,111,98,105,99,100,104,107,98,104,109,101,103,138,104,113,107,106,107,99,108,100,89,102,103,92,102,106,102,106,105,106,88,119,100,109,124,105,103,101,111,96,106,109,111,105,114,104,99,106,116,94,101,105,102,118,101,102,107,106,91,109,104,98,108,92,104,109,113,104,96,101,106,103,104,109,110,113,116,102,112,74,101,110,91,108,99,99,98,109,105,99,95,114,110,100,117,107,108,113,125,113,97,116,108,109,101,102,102,107,103,113,118,99,114,123,102,105,104,105,110,109,109,116,97,109,100,89,116,101,104,108,103,107,102,95,109,100,97,106,104,116,95,109,125,103,106,104,112,105,110,114,110,112,119,98,115,94,109,109,98,98,103,100,112,105,109,100,98,103,103,94,104,101,114,118,102,96,103,110,102,132,112,103,118,103,108,95,100,109,110,113,104,107,105,108,98,106,104,112,100,98,93,108,112,101,103,116,105,96,103,104,111,108,106,102,113,100,98,95,107,109,90,99,97,97,106,104,101,102,105,109,112,120,113,103,101,95,101,109,108,105,105,106,107,109,109,89,112,109,110,97,112,110,104,103,104,96,100,101,115,106,112,107,102,128,95,104,106,114,106,110,109,105,104,98,115,110,107,98,110,108,113,105,111,89,110,109,104,101,109,91,109,108,102,110,102,110,120,111,103,103,112,109,100,117,109,112,118,108,112,111,99,103,113,105,106,107,122,103,106,102,103,97,98,91,103,140,100,97,109,106,109,104,100,111,106,99,97,102,129,100,111,98,103,109,109,103,109,113,114,121,117,121,96,111,111,115,104,107,97,105,108,99,115,102,96,115,108,112,99,97,99,106,102,100,112,90,98,100,102,104,108,103,117,113,113,113,94,99,72,104,82,95,113,95,111,101,113,105,97,117,109,100,110,107,102,100,110,110,110,108,106,100,107,107,96,93,101,112,104,95,98,102,121,117,106,115,100,97,98,96,100,113,99,107,109,103,104,114,104,101,106,102,95,103,116,98,109,104,124,105,115,101,105,97,115,99,109,97,79,106,92,106,115,92,72,97,103,104,102,104,101,104,98,107,108,101,99,97,101,99,97,97,87,105,108,98,115,101,123,105,79,100,99,83,105,103,107,106,104,106,105,95,96,100,105,93,100,104,109,104,104,113,119,92,105,91,105,108,97,102,98,85,105,115,109,106,104,112,106,108,102,96,93,111,107,102,98,108,111,95,100,109,108,99,106,124,101,107,112,101,97,115,112,109,112,107,104,99,115,97,94,98,112,103,99,93,108,102,91,103,99,110,125,121,103,102,105,95,100,102,92,98,101,115,114,107,106,107,101,95,114,93,107,95,105,102,99,116,100,101,102,94,98,110,106,97,116,112,108,91,98,101,102,108,108,93,113,112,106,95,124,106,105,100,112,110,109,84,113,114,90,103,94,95,99,105,104,95,118,101,101,105,98,98,102,107,104,116,97,97,109,89,105,108,104,134,103,111,99,119, +482.74146,90,95,96,91,90,105,100,93,111,121,74,98,95,103,103,105,91,126,80,103,109,97,86,102,106,110,102,98,102,99,106,109,107,113,105,104,94,97,101,97,103,109,109,100,102,106,101,104,99,108,98,104,115,96,92,101,93,95,113,94,97,111,96,102,109,116,109,103,111,99,106,103,99,100,95,106,98,93,102,98,96,96,94,112,100,93,97,105,105,107,103,98,91,96,98,99,114,111,98,95,102,107,95,100,102,107,112,102,96,95,103,98,105,101,119,107,98,101,101,104,114,109,95,103,105,106,99,91,114,108,104,100,98,112,101,98,104,92,100,101,92,104,96,100,96,123,102,88,106,113,105,94,104,94,96,103,95,99,111,106,96,106,101,102,104,104,103,106,115,98,104,94,94,101,94,95,111,97,95,103,104,104,100,94,101,108,101,98,93,87,89,122,103,102,104,105,103,101,111,100,91,114,96,98,110,98,107,108,97,101,99,102,96,107,104,107,101,106,96,83,108,112,98,102,93,110,112,99,107,107,99,107,109,95,105,105,100,94,108,105,92,100,115,101,101,109,100,94,106,99,102,112,109,86,99,106,98,109,101,106,105,114,116,106,91,96,106,98,109,106,99,109,95,96,107,110,109,103,91,94,98,92,110,98,90,117,100,98,96,102,91,109,117,108,108,110,103,99,114,106,113,115,102,104,106,102,100,104,104,107,95,103,106,105,108,106,113,103,93,115,110,90,101,99,97,103,104,105,111,114,110,103,101,98,105,104,106,93,93,111,105,100,88,89,94,113,99,112,103,104,105,113,110,103,95,103,108,99,95,84,101,95,97,107,98,109,104,105,97,103,103,106,103,117,102,103,110,107,100,113,107,108,97,104,94,103,102,110,117,96,107,96,110,115,98,103,104,110,104,102,99,105,104,109,91,99,109,104,113,110,109,99,97,101,110,110,103,106,106,101,109,103,90,113,104,104,108,101,108,101,100,107,103,106,95,106,103,108,101,107,104,95,86,108,96,103,103,99,105,125,112,116,100,118,103,107,99,94,109,103,106,100,106,107,103,104,123,110,105,93,99,106,103,94,109,114,96,132,99,106,103,106,110,113,107,97,96,109,102,116,104,104,97,115,100,93,95,109,105,108,108,101,100,98,94,105,109,102,113,107,114,101,107,106,86,125,95,105,98,104,103,102,107,108,101,109,111,102,105,113,110,106,111,103,104,105,107,103,105,105,105,111,110,103,112,107,98,94,75,109,100,96,104,102,113,84,110,108,102,100,120,118,105,96,110,95,106,114,105,96,111,100,111,105,111,110,105,90,104,109,106,88,106,95,113,102,104,105,100,112,105,105,108,105,113,109,109,127,96,116,96,112,95,93,102,116,88,110,124,101,103,113,102,82,107,107,100,99,102,99,91,120,107,99,102,83,99,95,103,95,106,101,99,102,110,90,98,100,102,100,107,116,117,102,105,103,102,96,91,117,106,102,111,109,114,109,105,106,104,113,102,111,108,111,98,106,105,100,114,106,106,105,109,97,97,95,99,108,105,107,103,105,108,90,97,109,102,113,109,106,107,100,104,100,107,103,100,107,108,102,102,93,94,120,92,112,110,104,96,93,97,98,104,98,103,101,93,110,96,100,87,90,97,109,109,93,109,106,102,108,102,116,108,122,97,108,111,108,104,90,88,100,101,95,108,100,109,98,100,88,107,104,108,105,104,97,104,117,107,95,95,112,94,83,96,102,92,104,102,103,104,92,103,98,100,108,119,113,110,95,103,117,106,109,95,113,108,110,106,108,110,107,110,116,108,107,109,100,100,107,112,104,98,109,99,102,111,104,107,100,121,103,110,116,117,103,105,114,105,103,108,118,109,109,109,108,109,97,109,97,110,100,106,99,106,110,104,117,113,105,101,109,106,109,92,114,104,98,104,104,99,105,89,106,90,105,118,89,103,110,108,99,105,106,102,106,108,103,112,111,98,104,83,97,106,120,99,98,103,105,87,111,118,105,109,114,92,113,97,107,110,102,115,115,114,105,98,103,104,106,97,107,110,103,110,105,98,105,94,116,97,105,101,103,116,99,94,95,98,103,101,103,107,102,88,103,99,108,83,91,99,96,96,102,121,106,88,101,109,103,100,106,109,107,101,105,99,107,110,108,101,109,112,106,110,95,102,103,99,97,119,99,107,91,109,118,96,111,104,107,106,94,86,87,108,96,96,109,82,102,100,120,95,93,114,103,99,100,107,108,111,98,115,104,101,105,87,110,107,101,95,107,112,95,113,107,92,104,89,98,98,108,98,94,107,106,105,114,101,105,109,116,113,96,102,122,98,97,103,104,108,99,108,113,104,122,111,110,110,101,104,105,112,100,101,106,96,106,108,103,111,100,100,104,94,109,98,107,100,109,99,105,105,95,111,102,93,112,125,106,92,109,94,106,103,111,95,109,104,105,103,107,100,102,113,106,100,104,107,103,102,106,111,101,108,111,104,104,96,102,106,109,103,113,101,106,103,104,125,107,105,103,106,117,100,91,95,102,87,107,113,110,107,107,116,92,104,87,104,99,90,108,102,83,109,97,87,100,106,109,107,101,94,106,106,109,102,103,127,98,111,99,116,104,92,108,105,101,110,100,109,107,94,107,107,100,104,101,108,102,94,103,113,109,107,98,115,95,103,108,106,91,103,108,98,114,94,101,92,103,95,111,105,109,102,107,109,88,104,102,104,110,106,102,84,115,102,109,108,97,98,99,100,102,133,95,104,87,100,103,92,118,88,107,110,101,108,121,102,121,100,103,101,102,108,105,104,103,96,110,108,106,104,104,84,109,99,106,98,104,124,100,109,109,106,114,91,100,97,106,102,100,102,102,120,97,103,105,98,94,104,100,98,107,102,102,98,106,97,81,105,103,121,99,95,104,99,109,110,106,98,104,108,118,106,107,123,102,112,109,105,117,105,114,107,108,102,112,108,95,97,109,100,94,107,104,96,99,105,112,105,111,103,98,111,105,105,104,111,96,103,102,103,114,104,99,105,114,101,99,112,99,102,104,104,103,97,96,100,99,108,102,104,106,97,104,104,101,93,96,116,121,108,109,99,105,109,75,102,110,106,100,109,105,110,91,113,106,96,95,105,92,123,101,104,97,100,108,93,108,99,108,93,95,105,91,102,95,110,100,111,99,97,103,106,104,118,107,107,99,104,106,110,106,102,94,111,107,98,107,119,96,84,99,105,109,108,92,109,94,109,105,103,103,109,104,102,94,100,110,110,100,101,105,111,120,93,110,100,110,99,102,104,97,108,104,108,99,112,109,93,109,98,98,106,119,100,99,109,104,100,113,98,106,106,97,78,99,99,104,102,96,115,105,109,109,128,112,104,99,108,117,108,110,99,104,101,101,107,102,106,96,113,100,103,114,98,98,99,103,101,103,98,104,103,107,97,105,105,107,114,109,107,109,94,103,98,96,101,97,89,109,101,94,93,100,100,103,110,104,113,106,105,104,106,104,92,113,112,87,83,118,120,120,110,87,115,106,101,103,113,113,121,103,99,104,100,109,108,101,118,98,106,98,112,98,99,94,101,97,101,90,105,101,109,101,106,111,122,98,101,103,96,101,102,101,109,98,95,100,98,108,108,102,103,96,98,98,99,108,119,117,108,91,113,101,111,108,104,108,98,108,110,106,100,104,97,97,114,108,107,107,105,117,99,101,108,105,97,101,107,110,99,92,100,101,102,104,94,111,114,107,100,112,95,104,109,101,103,100,100,106,108,107,103,116,106,103,101,109,96,110,87,114,107,126,104,104,108,100,102,99,113,115,101,111,107,108,100,114,109,111,101,108,105,101,103,100,105,98,109,99,91,104,107,104,100,107,107,108,102,106,111,98,103,98,107,102,98,115,99,119,104,110,96,99,102,94,119,91,107,93,103,105,94,106,105,109,110,100,89,96,102,83,95,105,109,101,91,115,115,99,97,107,106,116,109,95,104,125,103,112,106,108,102,83,94,102,107,105,120,111,98,105,107,110,113,97,113,91,113,89,101,99,111,113,107,97,106,99,102,98,104,96,90,107,97,99,95,105,109,105,104,106,76,110,92,106,99,113,102,94,105,104,100,109,111,106,102,110,103,80,97,102,102,110,101,109,112,91,100,99,77,87,103,105,109,106,109,100,103,100,103,97,98,109,107,104,106,107,126,113,108,103,109,100,103,96,104,106,103,111,102,99,88,97,110,114,108,101,113,105,106,104,100,107,105,102,95,102,83,101,103,102,111,103,103,102,96,106,108,103,100,109,91,98,105,114,99,101,110,96,112,109,109,95,111,105,100,97,111,101,105,81,101,106,107,85,110,113,91,117,114,115,99,94,110,112,106,115,88,112,103,121,105,104,106,105,101,100,111,115,97,94,112,91,114,105,79,87,132,100,98,95,102,103,81,106,103,100,112,108,109,96,113,99,125,104,104,102,105,99,104,110,115,94,102,105,103,117,100,100,102,99,115,80,109,96,112,108,93,108,96,106,112,100,105,107,98,104,98,94,95,97,108,111,107,121,105,95,106,97,102,88,79,109,108,104,105,99,103,95,98,99,104,113,116,96,104,102,98,91,98,103,98,106,103,109,105,103,97,105,112,99,94,94,105,106,114,100,100,99,95,114,102,96,113,101,96,107,105,114,116,111,94,102,112,99,109,99,102,98,105,105,102,104,100,92,109,100,97,91,92,108,105,104,105,102,93,105,115,97,105,103,98,101,113,104,97,102,94,105,104,116,111,105,99,84,123,103,91,102,113,108,89,108,110,111,111,96,94,105,101,98,95,106,110,104,97,104,105,108,105,102,94,121,111,103,103,83,120,104,104,93,98,101,104,108,102,105,91,98,101,97,103,105,117,106,102,96, +482.88202,91,98,105,109,102,105,110,92,116,102,93,94,105,97,103,90,99,108,102,102,108,100,86,104,102,102,98,97,109,110,106,122,106,101,100,104,101,104,110,96,103,99,108,84,99,109,94,97,96,108,99,95,108,110,100,107,100,104,99,100,103,113,95,106,117,100,100,105,103,103,94,124,83,105,98,101,105,108,96,91,105,99,108,100,92,95,101,98,110,92,104,105,99,122,100,102,103,102,93,96,92,94,105,87,120,102,104,93,116,103,97,94,100,96,104,92,109,94,97,98,96,96,100,103,94,105,145,114,111,102,106,108,98,94,95,100,102,102,102,91,100,103,107,96,94,102,107,103,109,95,100,104,104,94,97,114,104,104,102,108,104,96,113,108,107,100,102,103,105,107,93,94,106,110,113,104,105,96,105,107,106,98,108,116,97,97,96,102,111,101,95,100,99,95,99,102,107,108,98,111,96,95,94,97,98,76,104,96,111,95,97,92,107,112,117,97,111,103,103,102,108,111,102,108,83,120,110,96,72,103,86,105,108,112,104,107,105,99,105,102,86,112,102,90,98,93,110,104,105,95,112,115,96,102,105,90,107,101,98,97,98,103,107,99,89,106,128,101,103,92,103,108,108,97,109,103,116,106,100,104,94,97,103,116,94,104,93,101,111,100,123,100,103,105,112,108,108,106,106,95,104,102,107,110,104,104,94,106,94,100,107,116,108,98,109,103,95,125,101,111,109,95,102,99,92,106,100,97,99,102,83,103,102,105,109,99,108,95,106,110,103,99,114,114,98,107,102,108,89,101,100,116,98,101,96,102,111,114,96,105,93,111,95,107,107,97,100,103,96,111,99,101,100,104,102,106,93,88,98,110,115,113,101,110,111,100,102,96,106,104,112,93,83,118,99,105,94,108,104,110,104,76,106,81,104,109,113,104,109,107,95,103,118,106,104,102,101,102,99,98,97,98,102,105,104,103,104,93,105,112,96,100,102,90,111,95,92,108,96,103,106,100,108,95,95,92,91,108,108,103,101,105,103,102,105,95,111,106,105,98,98,99,120,94,96,108,103,113,96,92,117,113,100,100,117,108,104,113,110,107,99,127,102,106,106,104,110,95,95,102,98,103,120,119,101,107,108,110,104,87,110,117,99,110,103,117,92,95,97,109,107,105,94,97,99,110,94,105,102,92,93,121,106,109,103,103,92,109,89,97,102,108,108,88,102,103,91,104,113,103,103,107,103,102,95,112,97,91,108,102,107,102,109,106,99,95,104,106,102,88,101,103,106,99,102,103,98,100,99,96,109,104,104,115,102,106,114,120,106,88,99,105,104,102,87,98,110,108,103,108,100,113,109,106,116,112,114,102,102,111,76,115,105,99,105,107,95,91,102,111,96,105,110,109,105,107,112,105,103,100,101,97,112,119,102,105,102,89,112,106,109,103,97,102,104,95,104,98,111,108,94,107,107,102,95,95,104,110,115,95,108,102,100,95,107,105,103,97,95,102,105,112,100,98,97,97,114,100,97,105,105,111,107,108,90,108,106,97,107,95,109,104,116,85,95,101,102,105,102,106,87,108,108,114,99,119,80,108,110,103,109,104,98,108,112,92,109,111,106,96,113,98,98,77,99,100,91,103,96,100,100,101,93,101,103,101,103,95,105,103,106,113,103,99,112,107,92,98,111,105,102,90,102,106,106,102,105,101,105,120,103,97,109,106,105,112,104,107,110,107,98,105,93,76,105,105,101,104,124,101,126,93,90,103,103,95,95,108,96,105,98,94,113,102,103,103,98,112,95,112,110,109,107,98,99,107,113,113,93,114,110,100,93,103,114,98,106,114,103,108,106,105,109,97,107,110,101,101,110,99,110,112,102,106,108,99,99,108,109,103,105,105,103,102,108,106,92,104,88,110,105,117,94,106,106,107,109,99,100,106,98,102,113,100,83,94,99,109,100,99,120,104,89,105,96,96,98,102,108,107,100,104,113,100,94,103,103,93,113,96,100,107,98,114,109,92,96,111,97,90,114,98,105,103,110,101,110,105,99,112,99,110,104,100,98,93,104,102,102,102,111,128,111,102,110,103,104,102,93,95,117,93,121,109,104,107,105,102,100,112,104,119,102,111,112,95,96,95,105,103,94,94,104,105,102,96,110,100,116,112,94,113,99,108,105,105,105,113,112,106,103,102,101,97,99,104,114,101,103,94,99,100,95,94,100,93,95,98,101,102,99,105,102,109,106,98,98,105,98,95,108,100,110,105,103,91,92,103,101,115,117,99,108,97,115,95,90,99,100,95,90,98,96,113,89,112,105,97,113,91,102,117,111,103,100,119,96,93,96,91,113,105,90,97,103,91,101,104,106,102,99,105,102,93,87,95,112,105,104,96,96,100,90,101,98,105,103,100,113,101,95,106,100,108,112,99,110,98,90,110,94,99,96,103,95,102,112,98,98,94,89,109,91,108,115,104,99,117,113,111,109,121,124,90,101,141,99,113,104,98,93,106,103,98,97,104,106,112,121,98,106,124,102,115,99,97,110,102,105,107,116,105,104,102,102,104,120,99,127,104,111,109,96,99,89,110,103,93,90,107,96,90,89,102,109,102,105,104,102,108,114,102,110,102,108,104,105,121,95,115,104,95,108,101,113,96,97,108,112,100,107,126,141,111,100,110,118,113,106,106,104,123,111,115,101,112,116,109,102,112,105,124,105,120,106,106,105,91,108,113,106,112,113,96,106,105,100,113,98,104,102,102,116,97,98,100,98,107,111,97,104,114,104,103,112,96,99,104,96,101,100,110,110,109,115,111,110,113,107,105,104,97,104,99,90,120,113,114,102,103,105,95,109,112,109,108,109,110,117,118,112,109,107,106,107,105,106,105,97,115,106,101,106,113,103,94,125,103,102,103,106,108,112,116,112,107,102,111,107,124,104,107,101,99,110,102,109,109,113,116,94,106,98,98,103,113,112,99,106,98,107,109,100,101,117,105,104,112,85,106,108,109,104,102,98,102,109,91,94,109,94,102,96,115,113,104,115,105,106,114,108,108,121,95,124,103,115,106,109,106,108,110,121,105,101,104,107,96,106,120,118,110,110,112,114,115,128,109,115,104,112,109,121,117,109,109,91,103,112,118,109,104,90,108,98,105,100,107,101,100,98,105,100,113,114,89,111,113,115,101,107,102,99,102,100,110,106,108,106,101,93,100,107,102,102,109,105,102,109,109,113,119,97,102,102,100,121,100,106,110,121,101,111,89,103,115,106,111,114,102,96,105,103,110,113,107,102,108,108,99,98,99,102,115,103,105,109,98,120,100,97,109,100,104,106,111,101,106,98,114,106,106,98,102,104,112,103,120,95,111,98,107,107,114,110,108,102,100,111,102,116,96,91,95,99,98,107,105,112,97,95,107,122,113,103,101,110,102,108,93,119,98,103,106,101,109,101,104,99,95,104,98,111,104,94,91,98,109,104,114,105,94,102,105,108,108,105,112,105,109,107,102,112,89,103,113,116,103,107,99,107,107,95,112,103,91,108,109,96,113,102,113,110,106,98,112,102,98,98,100,107,100,99,93,98,108,115,101,103,104,96,69,100,110,100,101,106,105,111,116,103,96,111,109,101,84,91,105,102,102,104,122,113,108,111,95,109,105,101,102,103,104,91,105,110,96,103,115,117,100,100,107,95,108,87,114,96,112,113,103,123,112,113,104,109,106,116,120,102,99,104,105,105,99,109,103,103,107,113,103,102,99,101,108,112,104,101,92,117,105,104,109,134,119,94,110,110,104,108,101,95,100,106,110,113,97,104,106,106,101,110,104,123,108,111,112,102,100,94,102,110,96,105,110,117,109,102,99,102,90,107,102,103,100,96,106,107,106,107,90,108,107,107,94,112,110,102,108,104,107,97,100,93,112,103,109,99,97,108,101,103,99,108,101,100,115,115,113,109,104,103,102,100,112,109,106,114,96,106,103,102,106,109,104,103,106,110,107,101,98,107,97,107,107,108,111,106,98,128,122,108,113,99,110,102,88,100,101,111,95,106,104,105,94,107,131,87,107,116,99,109,106,121,111,101,103,100,112,108,88,106,109,113,97,109,111,107,103,96,109,103,104,108,108,107,115,100,101,106,114,124,96,110,111,109,112,113,114,105,102,104,98,103,85,113,108,111,98,107,94,104,102,124,108,112,111,101,105,110,102,124,109,95,112,108,100,95,108,100,112,111,104,113,98,105,110,111,114,112,92,100,94,110,118,107,117,98,109,87,109,103,100,113,98,113,104,110,89,92,103,107,99,98,118,98,108,117,101,100,109,107,106,122,100,105,105,113,107,109,110,94,95,100,105,110,100,102,111,113,103,95,104,106,113,118,108,98,104,109,102,94,112,107,100,100,108,105,111,102,89,90,102,108,100,108,122,100,102,100,115,120,116,88,107,104,108,104,100,107,106,82,110,108,109,111,99,93,103,106,96,96,98,98,105,91,108,104,80,108,108,95,97,110,100,125,103,106,103,106,101,90,121,101,87,96,94,108,107,113,110,101,119,108,117,115,99,110,98,97,106,99,104,105,108,108,99,104,111,104,95,99,103,101,87,104,106,102,91,99,103,102,102,108,112,101,118,101,113,108,97,105,114,114,116,117,112,84,113,103,108,115,108,103,101,110,91,99,107,116,87,97,94,106,112,107,92,121,103,85,96,104,107,117,105,93,117,120,123,102,114,90,95,124,116,110,94,105,93,111,105,100,88,100,99,107,106,91,103,110,127,110,113,99,106,91,107,111,121,94,108,114,108,98,95,102,103,104,118,98,103,109,96,100,116,99,129,104,104,104,100,105,113,105,99,97,101,98,100,108,89,116,101,122,110,106,101,109,99,95,122,97,114,96,94,102,112,104,90,97,114, +483.02255,108,100,111,101,83,113,110,116,99,103,88,108,102,116,113,100,112,108,85,94,103,83,101,104,66,91,98,97,105,98,112,104,113,98,101,97,61,95,118,104,91,87,95,108,92,104,109,110,110,91,102,91,94,91,98,96,101,98,107,97,101,103,106,103,96,104,96,117,108,93,101,107,111,103,100,111,99,87,102,113,102,99,95,107,99,107,99,100,100,90,105,105,101,105,94,96,79,102,107,104,99,104,113,94,83,112,94,98,109,93,81,100,114,111,94,98,109,106,81,98,99,106,103,107,109,100,125,105,113,121,112,113,115,98,94,101,109,95,92,95,110,106,94,105,97,93,94,101,103,97,99,93,125,108,101,97,99,110,105,96,104,107,98,95,136,85,102,102,103,104,100,103,107,107,110,106,100,101,101,105,102,118,90,109,102,106,105,105,104,63,95,98,100,108,99,111,93,105,116,102,103,122,96,97,97,104,106,99,105,104,99,103,101,110,107,99,111,111,107,96,110,109,102,108,101,111,112,95,109,99,107,113,103,96,90,98,102,84,108,100,96,105,103,107,90,99,101,97,107,105,104,104,101,113,104,111,106,103,97,98,95,105,99,106,99,103,98,95,109,103,101,102,95,97,97,102,99,103,103,108,106,118,75,110,108,106,94,98,102,107,114,99,108,104,116,105,101,97,101,91,99,108,105,110,98,111,113,119,107,91,87,106,109,109,108,103,101,99,106,98,105,96,109,94,95,99,69,95,104,107,104,111,96,102,105,103,114,107,99,101,105,101,97,98,103,107,118,96,103,97,130,104,104,81,115,113,112,112,110,103,103,96,107,105,106,95,115,111,104,110,99,107,112,113,105,105,111,92,100,106,100,103,117,106,110,95,107,115,106,103,105,93,97,99,108,102,103,99,99,112,103,96,90,110,111,100,100,108,96,93,97,104,112,113,100,90,109,109,95,102,99,96,112,92,104,116,102,101,98,98,117,105,109,100,78,104,108,103,103,108,113,105,112,100,102,99,99,89,106,115,100,104,103,100,106,105,97,107,113,104,102,108,103,100,107,104,102,121,89,104,97,105,105,100,96,103,87,91,107,104,101,101,103,95,105,104,101,108,101,92,103,106,101,98,97,88,104,105,106,104,103,108,109,122,112,105,109,83,109,97,118,101,96,97,91,121,93,109,97,100,103,95,103,99,90,110,99,97,96,99,99,100,106,97,103,95,106,101,108,98,101,105,102,102,107,107,109,102,96,105,105,102,112,103,87,101,106,104,108,96,111,101,97,137,106,103,110,115,104,109,103,95,103,111,107,100,104,100,103,112,118,99,100,89,109,101,111,107,97,96,109,101,100,108,102,118,102,106,97,106,98,108,114,89,104,97,99,97,105,101,111,94,99,100,117,100,111,109,104,97,104,111,118,119,108,90,95,104,117,104,95,109,107,116,84,103,101,101,106,78,108,109,98,97,95,104,104,101,95,111,86,115,105,107,95,115,104,112,94,116,104,116,95,99,87,99,101,99,92,99,117,95,101,103,91,98,109,95,104,102,100,100,98,102,105,107,106,97,96,107,107,103,109,100,102,91,109,103,99,94,96,108,101,99,109,91,106,102,99,99,107,95,102,98,94,107,110,119,91,106,103,97,95,115,80,105,96,111,104,108,100,99,97,99,114,103,99,111,104,99,108,108,106,113,97,99,108,108,113,99,105,108,96,100,104,101,104,101,98,103,113,107,82,102,99,110,94,112,98,96,104,118,112,104,107,104,103,89,106,99,106,103,102,105,100,108,85,101,105,107,84,120,126,110,91,99,106,102,104,108,101,107,99,121,107,108,109,110,100,104,113,103,105,107,112,107,106,102,107,85,113,103,96,106,104,107,103,95,101,96,100,95,110,103,100,106,103,98,109,96,100,105,122,103,116,97,109,101,104,102,102,107,95,112,109,107,103,108,109,102,102,110,100,92,106,98,107,99,118,101,112,105,102,104,105,95,127,95,100,103,112,107,100,103,99,99,93,105,103,108,105,109,102,99,114,99,106,100,102,99,108,99,102,91,103,105,107,91,91,99,99,107,112,71,109,99,104,112,106,99,106,107,102,132,105,81,98,101,101,102,100,102,99,108,100,99,106,89,95,102,106,100,103,113,102,97,107,111,111,108,107,99,117,116,107,102,107,124,100,113,113,103,106,110,103,103,87,106,114,106,88,109,111,101,107,119,99,117,107,86,111,111,103,102,121,96,103,99,108,109,104,103,108,107,100,104,100,118,87,105,95,98,103,98,112,102,97,105,111,107,113,102,110,115,103,117,95,98,98,104,111,118,101,91,102,102,104,118,106,96,101,107,124,105,104,91,107,106,98,108,95,118,95,101,96,103,102,103,98,106,100,110,103,106,89,96,83,92,106,110,86,105,108,99,99,96,94,112,109,113,102,110,94,108,96,99,94,102,95,98,75,106,94,101,110,109,104,113,103,95,95,98,98,98,105,101,90,97,110,114,107,104,97,82,109,109,97,102,98,113,95,113,111,112,107,91,99,104,95,111,98,112,104,113,112,106,99,111,96,104,106,132,108,99,106,97,95,91,102,111,96,92,110,96,98,97,102,99,100,109,110,111,109,104,108,91,109,120,104,108,107,113,116,99,114,105,104,103,94,110,98,99,117,108,104,105,113,100,103,106,95,100,99,104,111,103,113,105,111,71,108,119,106,101,101,109,105,101,111,102,100,96,100,82,95,128,107,98,101,91,101,107,99,111,91,107,110,112,103,105,74,92,109,106,106,105,100,102,96,99,103,102,89,105,99,100,103,110,98,113,113,93,84,98,113,97,85,97,103,111,109,114,121,114,101,112,110,105,106,107,101,101,101,111,104,105,103,100,104,118,101,109,109,112,100,111,106,92,105,99,109,111,109,95,95,106,102,107,109,107,106,103,109,100,117,95,91,107,107,103,104,103,104,103,94,92,92,119,93,113,107,101,101,104,101,105,105,119,97,106,99,108,107,96,94,116,118,91,101,101,116,91,102,105,103,128,109,92,100,106,106,105,105,105,114,101,107,97,113,105,107,109,113,109,99,92,113,101,106,98,104,106,105,106,123,109,120,102,94,100,103,103,99,114,105,113,105,103,113,105,100,97,103,104,105,109,108,95,106,108,94,101,101,108,108,113,91,94,105,103,107,103,99,100,98,117,102,102,111,106,98,104,95,100,104,109,104,93,107,95,106,107,97,109,99,104,103,100,111,115,100,106,110,109,107,95,97,108,105,104,112,98,90,105,103,97,105,101,103,97,104,98,100,108,110,102,107,112,103,102,108,110,104,112,105,116,97,97,108,102,90,94,102,99,99,112,106,104,109,103,103,107,104,100,121,95,104,101,97,102,97,102,109,105,95,110,94,101,95,101,107,100,109,107,91,98,104,93,108,100,101,106,104,99,105,105,108,99,106,94,90,103,102,94,102,118,102,99,108,100,88,108,101,108,96,105,104,101,104,91,116,108,109,93,92,105,106,102,108,110,107,100,108,116,107,112,123,105,110,116,98,137,102,113,117,102,106,102,117,105,114,92,102,111,115,102,107,100,105,101,106,110,96,98,110,103,103,105,113,116,107,100,104,104,96,101,73,106,118,106,86,110,107,108,103,104,91,105,96,104,99,94,98,107,93,102,104,102,113,96,108,112,100,103,97,87,94,105,119,101,98,108,113,97,95,98,113,101,100,89,96,101,117,105,99,99,114,111,107,98,111,121,110,108,112,106,97,95,104,98,104,111,101,97,87,94,114,106,104,107,95,108,109,99,111,115,109,100,101,98,106,99,117,104,100,103,110,102,113,111,102,108,96,99,96,97,96,105,105,107,109,114,101,100,98,100,97,105,111,97,104,97,98,102,106,100,98,99,111,103,103,99,96,99,102,96,97,112,111,103,99,93,112,100,99,96,103,112,103,110,106,115,107,113,102,112,104,101,90,105,102,105,96,111,104,99,105,96,103,99,102,95,101,100,110,102,98,101,107,117,98,110,96,106,106,104,104,116,102,108,113,99,97,112,96,112,105,113,109,99,105,104,92,106,111,90,106,101,96,99,98,106,102,108,106,114,102,107,105,110,108,102,121,104,88,99,123,103,104,111,104,100,91,101,96,103,109,113,109,105,100,97,111,93,102,107,111,109,93,84,104,93,97,100,104,110,118,109,109,95,114,118,106,102,100,111,108,97,104,92,99,108,95,113,100,91,115,117,97,120,106,91,100,113,100,96,80,107,105,117,97,99,101,103,104,104,114,96,98,110,108,112,95,105,99,104,100,92,108,106,112,98,112,94,114,96,101,112,100,110,71,113,112,107,100,95,95,116,116,114,101,104,104,110,105,102,113,106,102,105,88,115,110,94,105,100,110,107,91,105,97,130,100,102,95,109,98,109,92,98,111,139,124,116,112,96,91,105,91,102,107,103,120,106,101,70,97,113,106,92,96,100,102,103,107,91,91,94,97,103,86,95,97,102,97,105,104,103,94,104,101,99,95,102,105,104,99,97,101,131,91,109,108,98,111,104,99,103,100,100,102,120,95,89,99,110,106,102,97,100,92,110,103,102,88,109,107,108,104,98,103,88,110,114,99,104,112,98,110,103,111,96,108,103,120,104,107,100,108,99,97,99,120,99,104,105,102,108,102,92,115,108,98,96,98,105,104,92,120,100,107,104,105,101,94,112,101,96,110,99,103,107,97,102,108,107,110,95,106,107,111,102,96,113,103,81,95,104,105,96,100,111,108,97,95,103,107,107,107,110,96,105,92,99,107,111,101,97,109,94,103,110,99,106,112,98,89,105,103,100,102,94,90,92,83,111,100,95,113,108,110,104,104,93,104,98,106,94,97,101,98,108,105,108,97,92,109,106,97,100, +483.16312,95,91,86,101,91,109,80,98,102,96,95,105,97,100,104,100,99,106,104,106,96,100,102,98,108,109,106,90,97,113,95,104,97,132,111,98,102,95,99,105,105,101,109,101,98,137,95,99,94,118,94,91,99,100,100,96,92,89,111,109,83,119,96,102,109,115,115,106,107,106,112,107,109,91,94,108,82,112,103,97,101,109,114,100,98,116,91,105,94,108,92,111,96,108,92,95,107,115,108,105,100,105,101,102,102,109,94,118,95,101,106,100,104,100,109,107,93,99,124,109,99,97,114,101,105,105,103,115,102,103,117,101,106,98,105,105,108,111,107,98,104,98,106,97,98,95,113,90,96,104,117,98,100,101,86,107,95,91,102,92,111,106,106,100,103,109,116,97,112,90,105,103,93,107,103,102,118,95,111,105,100,100,93,106,106,108,99,93,99,105,93,104,94,105,107,97,118,103,105,113,113,118,90,96,95,106,105,110,105,109,111,107,121,112,105,98,100,107,115,95,110,111,104,106,103,113,101,113,98,103,94,97,104,63,104,114,106,105,104,99,110,101,119,109,88,112,95,105,107,108,107,108,76,96,105,99,106,104,102,100,107,104,91,102,104,103,104,103,96,102,95,108,108,105,103,102,102,108,99,107,104,101,113,99,109,106,108,103,99,102,106,110,114,101,104,102,98,114,109,98,118,101,102,110,104,104,112,107,76,113,101,129,102,114,99,109,94,108,103,100,91,111,105,95,110,98,103,105,124,97,123,104,104,100,104,113,110,113,105,103,108,107,105,114,95,96,99,104,111,100,106,99,119,108,100,100,101,99,114,115,94,99,112,115,102,108,96,120,95,102,104,107,92,102,88,117,112,104,109,106,109,107,105,109,95,114,92,99,97,99,104,105,92,106,99,108,91,95,72,99,107,105,125,103,103,98,100,100,92,105,94,101,123,119,108,109,104,94,94,99,96,116,106,103,105,94,106,93,95,114,104,100,110,86,116,113,99,106,104,102,116,111,99,108,114,93,99,97,104,94,109,115,109,98,96,104,103,109,100,101,100,105,106,117,101,99,108,122,94,126,103,100,106,99,122,107,112,109,100,103,102,94,113,103,99,100,102,105,91,111,95,103,107,85,107,108,94,104,102,77,109,99,109,112,105,95,102,97,103,104,110,103,112,105,94,113,103,95,103,100,103,113,91,100,104,104,117,93,111,101,100,94,110,112,102,118,105,93,100,107,99,98,110,104,113,121,91,99,103,108,106,108,101,123,112,99,98,97,104,110,101,104,105,96,95,104,107,105,98,93,107,103,104,103,101,82,119,91,104,114,107,103,105,110,108,105,85,111,113,107,104,117,99,117,98,105,83,112,109,112,111,106,117,109,94,96,108,106,107,113,113,110,106,101,111,111,100,109,103,100,106,101,106,103,99,112,99,105,103,107,86,104,91,112,94,104,108,100,103,112,105,102,105,97,96,108,108,108,114,116,91,108,105,111,104,100,98,121,119,107,107,101,91,112,80,110,102,105,102,101,101,105,71,102,96,114,112,104,107,101,101,95,69,94,116,103,102,104,101,105,96,103,112,118,109,100,100,108,106,91,104,104,98,97,101,126,74,112,114,85,116,107,98,104,102,102,101,108,101,111,104,103,102,102,106,94,111,108,113,111,106,114,108,99,104,101,113,110,103,105,120,105,102,101,107,107,107,116,100,99,111,103,94,101,117,103,101,109,112,108,113,112,102,98,103,120,91,108,121,94,92,97,105,101,99,117,95,117,99,105,93,115,117,102,113,83,105,117,107,105,105,105,108,99,104,119,86,108,107,104,105,95,121,104,105,106,106,108,109,103,108,94,100,110,103,105,104,107,103,110,109,107,105,115,108,95,119,113,109,98,109,102,128,106,108,112,109,99,98,109,101,101,102,99,102,94,110,100,95,110,106,107,104,105,93,94,94,107,102,104,104,96,113,107,108,103,104,113,114,111,111,100,104,106,101,114,103,99,94,116,107,107,103,115,100,124,104,105,115,109,97,91,92,109,112,96,104,93,107,102,102,113,102,118,98,96,108,117,109,105,102,105,104,109,107,94,95,99,106,105,110,117,111,104,111,117,97,102,103,99,109,131,109,95,112,115,110,121,103,104,91,96,107,109,121,103,92,119,106,113,96,116,77,104,115,104,98,99,100,118,114,113,109,108,106,109,100,107,92,131,105,100,112,96,113,110,109,108,100,98,90,100,108,118,93,108,97,108,106,94,119,106,101,107,104,97,103,114,92,109,99,111,106,104,99,108,109,106,105,105,84,102,104,93,113,94,113,103,100,99,109,99,104,107,90,109,111,102,101,106,107,102,117,106,112,101,104,105,100,110,110,104,101,100,104,108,114,101,102,110,109,113,102,97,94,113,106,112,106,103,104,112,100,110,92,98,109,113,98,99,102,117,92,101,106,105,98,109,99,90,106,92,100,112,117,91,113,99,105,103,108,100,99,109,103,104,98,112,111,116,98,103,98,112,108,94,103,104,88,111,94,106,100,105,107,88,115,109,106,103,112,96,113,113,113,103,128,99,109,112,101,112,99,95,106,94,95,103,103,103,106,107,90,98,95,109,109,115,113,97,104,105,107,111,118,97,105,102,102,113,94,93,104,97,104,87,94,101,106,103,108,94,113,96,102,93,103,102,107,116,111,89,117,104,115,111,102,104,104,109,104,111,108,111,101,102,113,101,108,105,103,101,101,116,113,117,116,106,110,97,95,92,113,109,111,113,95,121,92,88,102,118,97,107,107,106,102,114,97,105,108,112,97,109,113,100,113,98,110,126,113,104,108,103,108,102,102,108,101,103,98,117,93,105,87,114,108,105,113,102,76,101,108,105,104,106,114,108,114,108,108,104,114,105,103,101,102,105,112,103,112,111,114,101,109,112,108,102,106,111,106,108,106,103,109,104,101,95,99,102,92,105,108,117,98,91,108,98,104,110,115,110,91,106,107,89,98,111,119,104,117,112,111,109,110,102,115,113,93,108,105,101,106,113,99,106,96,102,103,95,95,101,106,121,105,104,107,118,112,99,107,105,106,104,109,109,125,108,99,113,130,104,112,109,121,116,110,107,90,80,99,100,106,98,108,95,91,97,97,93,97,105,110,106,94,91,107,102,113,101,96,115,107,101,99,105,85,91,106,92,94,103,100,87,89,112,98,108,114,113,102,101,105,91,106,94,99,106,95,106,99,103,97,91,109,101,103,93,113,124,101,111,108,103,113,106,91,115,108,100,94,96,95,103,103,95,119,101,95,115,96,99,101,109,103,109,108,117,103,101,103,101,87,99,103,109,103,95,106,94,101,106,104,103,102,109,109,103,97,109,105,94,114,120,96,96,93,101,110,100,98,97,97,113,104,106,117,98,113,102,110,106,114,104,99,106,109,105,101,105,98,83,103,105,113,106,102,109,98,111,110,115,108,112,104,107,110,109,102,100,100,125,124,95,101,106,106,103,116,102,108,111,100,103,123,87,117,102,102,108,106,111,95,106,100,103,109,98,93,103,98,108,113,105,104,121,101,106,103,107,120,98,94,99,108,97,120,105,107,100,107,101,103,106,90,109,98,98,100,100,102,106,113,99,111,91,99,105,105,102,112,104,98,91,109,112,99,94,99,105,96,100,102,104,95,95,99,98,117,113,98,114,100,107,107,108,102,100,97,102,110,104,100,105,90,102,106,117,112,98,96,106,102,103,105,98,113,107,106,104,107,97,108,96,112,101,116,80,105,112,93,105,123,108,115,102,107,93,111,101,109,88,99,111,120,103,110,105,109,105,101,104,106,101,108,103,107,106,105,108,105,89,104,109,97,104,100,90,99,97,98,104,102,95,114,109,102,115,103,106,108,101,110,95,104,96,112,101,97,100,103,99,101,103,115,95,108,109,103,110,93,110,116,102,107,104,105,105,103,102,133,106,107,98,110,88,108,104,102,101,104,98,100,127,101,102,94,93,99,111,107,111,108,102,103,103,104,95,86,107,108,99,107,100,102,97,103,102,112,102,100,95,101,109,109,103,98,106,102,113,102,100,97,103,104,108,95,109,104,104,122,96,95,111,102,117,105,114,103,109,108,99,113,113,97,105,112,105,103,98,103,127,94,100,100,117,105,112,105,98,102,104,106,108,112,95,107,107,109,108,108,105,102,97,110,111,101,108,102,101,110,110,102,93,92,97,105,100,101,110,109,100,109,103,118,100,109,110,96,105,99,108,103,101,73,106,107,95,116,102,96,109,99,104,101,102,113,101,78,99,99,106,113,95,109,94,106,99,105,106,114,93,110,96,109,111,99,114,107,110,112,91,107,97,94,121,102,115,104,109,108,86,103,110,109,116,104,102,110,83,120,103,101,108,102,109,127,110,99,101,81,96,103,109,106,106,92,105,107,95,113,104,98,95,108,97,98,110,106,114,101,107,110,96,96,105,108,101,104,101,105,78,88,109,103,92,104,101,97,91,108,100,110,107,111,106,111,111,104,114,100,99,106,106,104,102,128,101,99,98,93,102,99,112,99,102,113,98,101,97,81,108,103,99,116,113,97,100,100,96,100,92,88,116,108,113,104,98,104,117,94,107,94,113,101,113,109,109,113,86,101,106,97,96,106,102,109,109,116,107,102,99,104,111,92,95,108,96,103,90,109,112,105,108,117,96,99,83,104,102,113,108,99,108,110,107,104,93,100,98,101,103,117,106,107,112,100,99,98,84,101,101,103,106,110,72,104,102,112,103,108,101,99,120,103,99,112,105,102,117,99,91,108,106,95,91,93,100,97,118,108,104,102,106,104,100,102,112,94,128,103,95,108,118,100,112,92,105,104,95,102,106,104,97,101,101,115,107,110,98,109,92,97,109,116,88,116,94,91,100, +483.30365,109,110,91,107,97,109,127,105,108,92,86,98,103,107,100,83,118,117,105,118,89,107,89,105,106,105,98,96,108,109,103,109,108,98,116,135,118,93,111,91,108,107,105,86,101,118,101,107,106,104,102,92,105,104,98,105,104,87,105,100,104,112,102,96,114,107,82,104,110,97,109,120,108,104,103,111,108,101,105,112,113,113,108,108,115,105,113,106,105,110,97,104,104,109,98,94,107,103,104,94,95,94,109,102,100,110,94,114,96,99,111,101,109,99,103,101,91,109,103,98,115,105,108,112,99,114,105,104,85,109,111,104,112,110,105,104,121,113,101,91,102,94,98,111,100,104,99,92,103,113,109,96,112,98,105,91,105,101,105,103,102,111,106,100,107,124,98,105,104,105,94,108,96,81,109,102,103,99,107,111,106,102,107,96,118,110,108,85,98,111,104,98,101,90,105,109,105,121,110,99,108,122,93,116,95,118,113,104,124,98,100,104,107,106,101,99,96,104,100,98,102,103,110,97,95,125,110,109,116,119,104,117,104,110,98,98,106,105,109,103,102,115,107,113,102,95,92,92,104,116,98,105,113,108,106,97,115,96,108,110,101,100,100,106,103,120,114,104,120,103,115,94,112,108,108,106,108,100,117,102,114,113,101,105,98,106,94,109,107,104,106,103,103,111,113,105,105,109,104,100,104,106,104,110,113,116,113,109,109,109,108,107,105,104,98,112,104,107,107,102,116,102,112,99,95,99,104,100,95,112,94,100,111,106,100,103,102,96,108,103,96,95,104,94,120,99,105,91,100,100,118,106,110,105,108,108,110,114,110,103,100,114,95,112,114,108,108,109,102,94,99,108,109,100,104,107,103,105,114,114,106,89,108,107,101,104,108,100,101,97,108,99,112,111,66,91,105,100,112,121,100,98,101,111,105,109,111,98,103,116,104,114,106,103,101,103,101,116,108,115,111,93,101,110,110,105,102,99,111,142,109,100,89,101,101,98,114,96,96,91,113,103,106,101,101,96,109,108,102,113,106,98,108,105,106,100,103,100,112,98,106,102,108,106,100,106,94,104,104,102,108,113,112,106,103,104,107,108,96,114,100,108,115,89,107,101,101,102,112,106,117,109,113,111,91,99,97,108,98,103,115,106,96,114,98,103,105,109,116,125,98,104,113,100,103,96,103,105,104,93,97,109,104,100,114,110,105,107,106,100,111,105,103,108,103,111,101,100,113,101,95,105,102,118,103,100,100,103,98,112,104,110,102,108,115,95,106,110,103,99,109,113,92,108,99,107,105,105,109,100,116,100,112,117,104,111,111,102,108,103,106,105,98,112,101,103,104,108,103,102,108,103,110,105,114,101,99,106,108,106,111,109,113,91,91,101,96,105,113,93,97,106,107,106,89,102,104,103,106,107,89,105,102,111,98,98,100,98,99,90,108,100,108,121,93,105,105,105,105,118,86,108,109,95,99,97,102,105,115,103,111,107,104,105,96,100,101,101,111,106,98,106,99,99,107,111,100,92,111,103,108,121,108,128,100,110,120,103,110,105,114,107,102,110,104,100,106,105,106,97,100,101,87,118,97,103,116,104,119,97,97,97,101,93,105,99,106,99,88,101,104,104,102,86,110,100,99,104,100,99,100,112,100,111,101,105,94,96,94,118,109,104,88,101,110,100,96,99,102,104,102,103,98,120,115,105,110,107,99,117,92,95,105,93,110,100,110,107,86,104,111,104,106,102,96,102,91,101,117,99,105,111,129,98,97,114,101,108,105,104,115,119,105,109,110,103,95,116,99,77,102,106,94,93,99,104,122,114,98,106,120,96,104,89,100,103,99,106,102,106,105,108,100,104,102,92,94,105,112,104,108,108,106,110,107,120,108,105,104,113,101,107,106,108,107,123,124,103,109,110,103,91,106,97,119,92,101,91,110,103,114,108,100,118,108,109,100,103,93,110,106,102,95,118,110,109,95,96,110,104,126,108,106,103,109,100,100,105,109,104,102,104,98,108,104,108,96,107,93,110,104,108,98,101,114,108,99,110,101,112,109,104,110,111,107,105,92,120,109,116,95,105,107,116,107,100,106,114,103,113,110,121,107,104,104,100,103,104,103,97,114,114,99,106,99,113,102,103,104,102,99,99,104,108,103,104,108,101,120,98,99,112,104,99,100,102,109,110,106,113,107,145,109,106,95,101,116,107,106,109,102,93,113,100,105,92,113,104,95,110,95,108,112,111,113,113,109,115,91,105,110,100,102,104,87,94,110,118,104,111,116,117,96,105,98,111,115,96,101,101,96,110,110,108,92,105,105,103,98,110,116,109,104,105,98,99,106,106,101,107,108,95,106,104,114,96,112,109,106,105,100,98,103,104,107,104,106,109,97,99,98,99,108,99,108,118,99,103,103,99,102,112,95,108,99,101,87,95,101,104,102,121,106,103,107,100,102,97,115,98,94,103,105,104,107,98,103,112,100,119,99,106,105,109,109,102,106,104,103,106,104,102,115,96,97,108,106,103,113,113,92,108,90,94,108,107,100,105,131,120,87,99,106,105,114,102,101,117,112,98,118,104,96,100,102,96,107,108,105,105,102,87,103,105,98,107,86,111,98,93,95,101,121,106,98,107,100,108,109,102,92,89,107,100,107,112,99,88,123,103,102,103,102,99,99,104,102,101,103,87,104,110,89,109,113,104,106,107,109,116,102,114,110,105,100,100,105,100,104,113,102,112,95,127,115,108,102,114,104,102,108,104,101,116,100,108,99,118,97,113,103,109,108,126,103,104,102,99,113,104,100,114,103,97,116,105,89,108,107,85,109,102,109,101,105,100,100,124,100,102,101,103,105,111,111,102,103,112,110,109,108,103,100,104,106,92,101,109,109,109,89,105,120,113,121,97,94,98,107,103,104,108,108,111,104,103,94,109,93,100,102,105,108,110,109,95,100,97,109,112,105,108,91,101,105,113,109,105,106,106,112,96,107,102,107,116,100,97,103,111,104,95,104,110,116,95,99,103,93,100,110,99,98,109,107,105,97,102,102,107,106,108,104,108,104,108,111,91,108,111,100,105,110,108,99,102,91,112,87,97,110,103,104,98,105,104,115,122,98,106,89,112,110,102,112,113,108,96,108,112,105,103,103,106,101,101,103,114,117,98,98,96,93,99,102,97,106,99,108,101,120,112,103,129,102,108,95,103,113,98,101,113,101,113,91,109,106,107,82,103,101,116,111,105,93,103,112,101,109,101,110,99,98,117,78,107,115,110,111,102,106,113,122,101,92,103,104,112,116,103,102,91,102,102,113,106,108,110,108,103,95,99,95,121,101,98,96,103,111,99,96,110,98,97,91,117,95,103,104,102,99,85,102,101,97,104,98,107,92,95,104,103,96,105,108,98,97,96,92,108,105,94,92,117,91,109,91,99,111,106,96,80,105,105,96,104,106,96,102,94,98,108,87,106,103,100,106,104,99,91,113,110,104,91,102,96,106,112,103,92,119,118,104,95,110,97,96,102,103,91,105,102,111,107,97,107,116,119,98,108,105,98,111,104,95,107,101,102,105,100,99,100,87,108,121,114,105,103,97,103,103,91,98,95,87,100,109,104,110,92,101,101,99,102,102,115,109,109,103,98,97,102,97,113,101,113,106,97,102,113,103,97,102,109,103,86,111,118,93,104,107,112,109,108,99,99,97,115,102,108,99,99,106,99,108,94,96,99,90,107,99,96,106,97,99,97,111,102,117,94,105,98,99,105,104,103,103,104,95,105,102,101,107,119,104,83,100,102,99,109,107,110,105,115,109,113,104,110,111,83,104,97,108,102,107,104,99,98,101,97,78,99,93,111,86,103,105,93,116,101,109,102,105,98,106,101,112,105,109,104,101,100,108,83,105,99,103,93,94,104,103,108,109,99,105,98,104,91,110,101,101,123,119,105,100,109,104,111,105,98,99,102,115,112,98,95,106,107,101,97,87,104,102,105,111,100,100,109,96,108,103,108,104,110,102,102,105,96,96,97,108,111,98,107,98,106,106,96,91,99,112,103,100,102,113,99,93,124,94,107,108,114,97,95,98,98,98,104,99,108,103,107,95,106,114,112,99,111,104,102,107,101,109,113,112,112,106,108,91,93,65,102,96,118,121,107,98,105,117,105,101,101,105,96,91,107,104,101,87,97,101,102,103,106,109,103,93,105,108,100,99,102,103,109,102,98,107,107,106,105,127,107,108,97,106,99,102,120,92,99,87,114,90,105,99,106,97,105,93,108,103,103,112,94,102,107,107,97,112,103,87,104,96,105,119,102,106,106,102,98,103,102,119,102,102,116,99,103,98,110,95,96,106,93,110,96,100,114,116,103,107,106,117,102,97,103,106,106,106,108,108,100,99,94,97,79,110,78,107,97,96,97,113,98,96,108,98,105,109,110,109,106,104,88,88,106,96,100,95,103,85,100,104,106,111,99,103,100,114,93,98,83,109,119,102,97,91,100,96,101,96,96,104,105,106,104,102,97,104,106,68,101,91,98,105,106,103,111,100,91,95,108,92,103,105,95,109,108,107,113,103,103,108,98,100,104,95,98,107,87,112,76,108,105,105,97,101,103,98,117,101,101,102,110,97,103,106,105,107,111,112,109,113,104,108,98,112,114,92,85,111,109,103,89,95,88,106,95,105,101,106,103,117,101,98,109,105,101,100,98,104,99,104,88,99,107,104,102,96,97,104,113,108,98,102,101,98,110,102,101,109,101,102,102,101,99,95,103,109,110,71,102,98,115,107,92,109,100,98,98,105,100,97,107,105,116,92,103,134,109,113,98,104,102,104,105,96,107,104,102,102,91,98,94,99,120,105,104,104,88,106,102,99,103,103,106,83,102,88,107,94,106,92,110,112,102,105,99,96,95, +483.44421,98,99,88,96,95,99,95,101,101,100,98,98,96,111,106,99,112,107,103,98,98,101,112,109,104,105,103,112,106,101,102,103,101,101,91,106,82,91,117,95,100,94,105,104,108,119,95,99,95,116,103,97,107,95,100,92,99,90,121,104,107,105,90,102,101,102,107,98,97,111,109,110,90,98,102,97,91,99,118,116,97,105,100,104,98,104,95,102,112,100,106,95,98,110,109,95,101,111,95,103,105,101,99,101,99,116,103,102,102,99,108,100,102,102,111,97,95,91,98,108,94,108,116,98,76,90,107,96,113,110,91,113,92,111,108,99,100,101,100,114,104,115,91,90,103,111,99,101,87,104,105,115,116,86,105,103,110,106,109,116,107,104,96,96,113,106,105,73,104,103,91,108,113,73,98,111,74,104,85,105,95,116,99,109,109,102,92,94,96,109,103,100,105,99,95,104,104,110,102,120,100,108,98,102,95,98,95,108,121,104,100,117,99,99,113,93,98,71,101,109,97,105,105,105,101,114,109,107,107,110,99,107,88,98,100,109,111,117,102,94,98,104,105,102,123,98,105,104,98,112,106,103,96,105,117,107,102,102,106,114,97,102,104,99,91,98,96,100,104,121,108,113,110,105,107,105,95,116,104,102,104,101,113,99,121,111,103,98,99,107,107,108,111,105,112,104,109,97,96,108,100,93,103,98,95,127,103,97,103,99,98,110,102,106,91,107,97,119,103,102,95,106,83,108,104,103,99,101,107,111,102,101,104,94,109,97,105,113,92,96,100,108,94,94,118,108,104,108,111,100,112,99,91,91,104,106,105,104,101,102,107,108,112,102,95,104,93,95,104,109,106,117,113,111,92,96,101,101,101,95,121,110,104,108,89,103,100,99,92,97,98,111,91,105,103,98,90,79,91,102,107,117,103,112,101,101,96,100,113,110,89,96,97,101,119,116,102,101,105,112,96,89,101,103,104,110,116,91,94,107,96,113,98,97,111,104,101,117,108,96,118,114,104,107,102,106,109,96,105,108,102,92,99,100,104,109,100,107,102,104,124,97,102,104,108,107,100,101,96,100,104,109,97,108,100,100,96,109,106,82,94,96,103,101,101,91,112,109,97,113,98,102,98,103,100,102,95,102,95,115,117,103,123,102,101,100,107,120,113,113,109,106,105,109,103,99,102,104,96,113,104,100,106,103,113,111,129,102,102,83,111,101,98,106,107,103,97,107,98,107,111,95,91,114,103,84,103,99,100,118,95,105,110,106,104,111,110,104,101,78,103,100,91,113,102,112,124,104,114,100,94,93,103,116,107,99,109,99,116,104,100,108,99,103,115,98,112,104,103,105,102,111,109,106,111,108,108,115,108,105,109,105,113,77,89,98,104,103,110,86,113,103,108,102,111,93,116,113,106,105,104,112,98,102,112,108,96,109,104,95,93,115,112,105,97,99,108,104,109,100,111,107,104,98,97,101,104,99,99,95,95,116,110,105,93,113,111,106,108,109,111,103,101,104,104,104,102,105,103,109,115,137,97,103,108,109,113,105,112,110,111,110,118,105,116,116,115,116,100,111,108,99,101,113,111,107,104,106,102,89,85,105,104,103,99,99,112,112,102,99,100,107,106,107,100,99,100,106,107,82,123,104,111,109,96,103,117,97,95,117,115,109,95,115,105,105,100,111,98,108,106,98,107,114,110,122,110,104,101,95,104,107,107,106,108,109,109,112,99,98,102,98,108,103,94,98,110,97,119,103,108,124,119,109,99,90,106,108,104,109,98,112,100,100,110,106,133,109,94,106,96,109,107,97,97,101,95,98,101,96,101,106,106,104,78,103,104,104,101,98,99,104,107,98,105,103,113,105,108,88,111,102,101,108,108,119,102,112,125,90,110,117,112,99,105,94,104,106,97,102,102,88,100,93,100,103,87,90,109,102,100,102,111,106,97,94,93,102,103,115,104,96,100,105,97,94,106,113,112,122,110,122,104,108,114,113,105,98,95,109,106,107,108,95,107,105,101,115,111,110,105,103,95,104,102,102,110,100,103,107,110,111,120,95,107,102,96,97,107,114,103,108,113,99,104,113,92,104,106,101,110,109,107,112,97,108,104,101,109,104,97,104,102,106,82,102,108,115,108,114,105,102,95,82,96,103,107,96,105,105,109,103,100,95,107,98,106,108,112,104,102,106,107,98,118,105,104,109,102,109,98,104,98,95,112,118,105,91,93,99,95,106,105,78,101,110,111,101,114,98,117,109,96,106,84,99,106,101,96,109,92,104,103,102,105,109,104,107,98,99,107,99,99,109,104,98,108,104,106,103,107,105,110,91,112,87,98,89,97,111,105,98,110,107,102,91,106,114,105,120,105,99,98,114,99,116,104,98,94,116,104,96,106,100,90,94,93,115,96,106,110,105,105,101,93,113,101,96,106,100,96,112,114,87,104,102,103,100,90,94,94,108,103,100,107,109,111,105,118,113,96,101,98,80,105,87,104,95,106,107,102,108,106,98,96,107,100,104,115,106,102,79,93,97,103,98,109,105,93,107,104,99,107,99,99,103,104,124,112,101,104,91,110,110,110,112,112,101,88,108,95,103,104,96,112,99,122,95,101,103,105,93,102,96,107,115,107,101,111,95,110,98,110,92,106,97,100,90,90,117,103,99,112,95,96,106,111,116,103,107,110,83,91,106,98,113,106,107,104,103,110,102,109,109,99,105,96,107,104,113,111,113,102,91,95,99,103,110,117,95,106,102,100,103,105,101,114,105,112,87,106,110,108,102,107,103,102,110,93,98,109,104,89,103,108,106,107,98,110,98,114,102,96,106,101,91,102,92,110,110,103,102,105,98,105,111,104,117,105,107,87,97,103,111,107,105,110,110,128,105,110,100,107,106,85,102,99,112,87,109,111,98,103,112,100,113,105,108,107,112,102,98,97,109,102,108,107,97,93,117,106,114,125,111,96,106,107,109,100,117,105,100,103,98,104,99,101,106,92,100,90,87,104,97,102,100,113,112,103,97,89,102,101,100,106,102,100,95,95,132,91,102,108,102,105,117,100,95,118,106,83,106,94,105,120,106,92,105,96,96,99,107,108,104,97,100,99,95,95,111,94,101,98,108,113,112,104,105,109,93,103,97,95,110,102,89,111,100,96,103,104,102,120,115,105,104,98,102,116,100,104,99,98,108,93,106,80,133,100,109,108,106,110,105,108,121,105,104,98,101,96,108,94,106,107,106,102,95,98,100,94,109,94,113,104,104,108,102,96,101,102,107,102,96,102,99,85,105,101,92,91,101,97,106,107,107,108,96,83,94,92,97,104,99,108,90,97,95,113,100,95,102,101,112,94,94,102,104,94,111,113,113,93,107,99,114,114,111,118,102,101,112,116,114,108,104,108,100,106,94,97,103,107,131,96,99,100,104,104,105,114,92,95,104,95,88,100,88,109,92,115,95,100,108,103,99,100,120,80,101,103,109,105,100,99,103,98,112,107,98,103,128,88,103,106,115,102,105,105,99,100,99,101,100,105,108,117,91,102,103,91,105,103,99,117,106,117,102,109,108,107,98,99,95,98,107,112,101,110,90,105,96,107,105,98,105,115,129,105,90,100,99,100,106,103,108,121,106,106,105,94,101,112,107,105,102,96,66,109,103,105,101,98,111,91,112,114,102,105,96,95,110,108,103,100,63,118,91,94,92,106,102,105,115,115,102,107,99,112,99,90,109,98,100,102,113,101,98,100,104,93,106,103,112,102,98,108,100,103,98,111,103,88,91,98,112,110,88,107,113,105,107,100,95,98,104,110,101,92,98,107,102,103,125,102,119,106,94,108,118,99,99,102,101,98,99,112,112,98,92,92,102,105,105,108,105,106,90,113,104,108,105,107,95,95,96,101,105,105,88,99,105,104,109,106,101,108,101,101,99,92,94,114,112,117,99,104,98,84,101,99,99,103,116,100,100,96,103,110,102,100,101,94,99,98,91,91,100,117,78,108,101,96,78,106,110,101,110,93,112,101,102,105,108,105,104,101,100,111,99,94,95,109,96,109,98,107,109,103,106,101,90,102,101,101,72,105,104,99,120,113,112,99,105,110,111,93,111,102,107,121,103,117,112,104,108,101,91,102,89,98,88,113,118,97,89,113,108,105,104,108,103,95,97,90,107,107,98,93,104,98,104,99,96,102,98,98,100,107,116,94,103,96,109,87,96,102,106,94,102,100,111,107,103,106,102,93,105,102,107,94,103,98,104,106,111,96,112,99,92,102,97,99,100,112,113,104,97,103,94,93,94,102,101,98,104,114,109,95,111,91,102,109,105,110,109,105,109,107,105,97,88,112,99,101,96,105,101,92,112,107,113,112,106,96,104,108,99,87,96,96,111,120,97,102,113,114,109,109,92,86,92,91,102,131,104,111,114,121,109,101,100,96,102,102,105,98,97,100,106,112,100,96,109,98,104,95,109,117,96,115,97,98,81,102,105,90,105,98,66,84,100,110,107,104,104,118,106,99,100,98,97,87,97,109,103,113,104,105,108,95,93,89,108,112,105,94,110,110,98,104,100,110,118,91,100,98,100,91,104,93,98,98,117,102,111,106,99,96,94,83,100,101,106,113,109,109,94,103,100,104,101,99,103,113,115,96,105,106,99,109,110,112,111,103,100,97,88,96,120,107,88,77,98,95,101,103,98,107,84,97,90,101,94,106,91,99,107,71,102,94,87,102,102,100,102,107,113,99,128,114,99,104,97,95,112,103,113,109,96,104,101,96,94,117,105,105,103,109,104,94,113,97,106,96,92,109,105,94,89,120,107,102,106,115,106,110,85,115,102,115,106,106,98,89,105,90,106,110,98,109,104,96,117,107,106,112,106,95,104,100,103,113,105,101,96,104,114,103,96, +483.58478,105,120,97,102,91,105,105,119,95,101,109,104,103,104,110,105,78,106,118,101,95,92,119,101,98,102,108,98,107,109,115,103,99,102,105,121,112,104,121,96,95,102,106,101,97,103,100,98,113,110,103,99,84,99,109,97,95,104,98,101,104,98,99,92,94,103,98,102,94,104,101,125,108,109,102,118,102,97,104,106,105,108,101,121,94,92,106,108,109,114,105,108,109,102,110,101,108,100,109,112,106,108,104,83,93,100,101,110,108,101,99,101,100,99,91,94,114,95,112,99,104,120,114,105,114,111,108,106,101,94,104,100,101,103,105,99,98,101,92,106,95,100,93,103,110,103,117,109,96,91,101,96,95,95,97,101,106,112,96,104,109,97,119,102,101,95,98,98,118,109,103,108,104,95,108,99,106,113,111,99,98,104,110,89,108,98,98,94,104,110,98,95,112,107,100,92,104,106,70,107,98,99,107,102,108,104,100,70,106,101,100,104,99,122,106,101,95,119,96,104,113,103,108,100,96,102,98,102,108,110,98,110,114,101,110,105,101,116,104,95,116,109,111,112,109,103,95,101,105,111,99,116,107,98,104,98,98,99,97,99,106,109,95,102,98,104,121,82,103,107,98,100,103,103,108,106,105,113,108,109,102,98,104,101,99,101,101,95,106,105,100,113,99,106,117,103,105,105,101,125,105,98,107,107,93,103,113,116,105,114,109,110,105,109,114,113,100,96,120,102,105,105,108,112,105,99,94,90,111,105,107,101,106,104,109,71,104,109,91,106,95,96,103,113,104,114,96,108,93,103,107,99,107,100,93,105,108,110,109,104,90,89,93,95,104,102,102,113,113,113,102,104,111,103,103,104,103,99,103,99,116,114,105,108,98,95,109,100,104,100,113,96,106,111,98,103,104,104,98,105,95,113,104,103,100,83,111,94,112,102,94,99,103,96,99,103,85,98,108,110,105,99,91,111,110,75,102,111,96,109,91,98,102,105,106,105,101,115,113,90,105,112,99,126,100,104,99,105,114,97,96,106,105,112,98,101,104,98,108,125,106,103,102,113,100,110,102,97,99,102,104,113,102,106,107,108,110,100,103,109,114,103,118,91,121,99,103,102,105,94,113,104,95,106,89,104,96,98,118,84,103,110,104,109,115,109,88,102,98,117,106,96,117,103,105,110,108,106,98,101,107,88,101,102,110,108,102,98,99,109,103,103,115,116,101,107,111,99,110,114,110,103,96,118,118,102,114,105,104,114,126,116,110,114,90,107,107,100,108,105,112,88,104,102,92,113,104,131,100,100,97,100,114,108,104,107,98,109,113,90,102,71,104,101,107,100,91,107,107,92,114,96,100,108,103,113,103,105,106,98,93,106,99,111,103,101,117,121,98,107,104,108,113,103,116,111,105,101,111,102,110,111,113,100,103,102,78,92,109,110,117,68,91,107,95,110,115,94,105,120,126,107,110,119,95,99,106,115,109,112,95,105,99,101,106,102,109,120,99,69,113,109,110,98,101,101,108,98,107,98,106,117,102,88,109,98,91,103,103,107,111,103,115,105,98,99,102,99,101,104,109,113,112,113,112,106,99,111,98,91,100,99,99,98,97,106,111,91,108,109,109,96,107,89,96,109,106,100,112,106,113,109,104,113,124,106,102,109,100,109,110,103,116,99,106,83,103,111,107,117,105,99,110,104,120,121,116,107,90,103,109,109,103,104,114,105,110,117,114,84,105,115,105,101,104,107,101,94,110,102,109,103,113,103,102,93,106,97,109,103,114,106,104,111,117,107,95,112,104,110,109,109,111,110,107,104,106,106,103,118,107,89,92,84,105,103,113,103,111,104,119,105,100,99,86,103,108,106,111,111,95,101,108,98,103,109,88,104,106,102,112,96,111,91,105,108,98,110,94,101,99,104,107,108,106,109,103,105,108,103,80,112,114,101,95,110,103,106,95,108,100,104,95,108,107,119,99,104,115,103,105,106,107,103,100,110,109,108,109,103,109,95,95,99,118,114,109,108,103,100,101,100,100,103,104,96,106,95,102,99,108,103,107,118,111,96,101,94,105,105,99,115,109,137,106,96,97,98,91,103,117,104,114,110,108,97,111,105,99,114,83,98,111,107,105,105,109,116,115,103,113,105,109,115,96,113,104,104,110,102,108,129,113,105,93,99,108,113,94,103,120,114,105,110,99,107,105,109,106,98,90,95,98,91,91,109,110,100,99,106,98,99,94,110,95,95,102,113,109,105,114,97,125,98,106,109,92,97,98,105,111,104,95,89,103,106,105,97,102,105,92,110,125,103,111,96,98,94,98,109,91,111,116,99,105,108,98,101,120,106,109,111,99,105,112,97,99,80,99,93,103,108,122,105,117,109,101,105,97,107,92,106,108,94,97,121,100,111,101,102,94,105,107,105,97,99,92,105,105,97,93,101,102,106,99,114,100,101,120,95,102,105,98,98,97,106,102,104,96,98,99,104,110,99,85,77,118,103,105,107,104,98,113,106,98,114,104,100,104,99,99,112,112,102,107,95,104,102,87,109,101,111,113,106,106,106,106,102,107,95,114,112,111,94,106,103,91,104,104,99,104,95,89,112,102,103,96,102,112,105,113,106,108,107,102,103,113,102,102,103,113,94,92,99,111,114,108,110,108,104,111,104,103,117,114,113,110,104,103,99,107,111,92,115,111,113,102,106,102,113,109,105,97,104,111,94,110,99,98,96,108,109,125,106,106,109,103,107,107,105,101,108,100,116,101,106,110,101,101,109,92,106,74,97,111,95,97,101,115,125,91,105,113,118,104,111,112,101,102,119,111,109,105,96,104,111,105,107,104,99,111,119,118,104,104,106,108,107,105,99,106,99,109,110,110,102,107,112,114,96,112,106,87,116,117,98,96,105,101,99,95,118,109,102,99,121,104,116,104,110,110,114,110,78,111,111,110,99,104,114,103,121,102,111,97,106,105,111,95,104,100,112,98,96,105,111,75,117,102,104,104,110,107,100,101,104,114,117,98,90,106,97,108,97,103,98,91,96,107,94,100,115,98,102,102,116,99,99,110,103,100,100,98,91,99,107,98,106,111,108,102,124,114,91,116,108,107,94,112,112,101,106,83,115,123,105,105,113,96,104,107,104,97,104,105,104,101,92,107,104,106,93,104,97,92,109,113,106,114,91,115,101,98,115,117,109,116,113,97,103,107,120,110,102,110,93,106,96,106,104,104,103,105,110,106,98,106,94,111,107,102,95,99,102,103,104,117,108,111,106,108,98,109,116,107,95,99,108,109,94,108,98,112,105,98,95,113,110,102,105,113,91,101,113,113,110,101,117,103,108,109,109,91,94,106,99,109,101,107,105,98,103,98,110,121,111,92,101,102,99,105,91,101,107,98,98,105,95,121,100,101,109,104,116,107,105,89,112,115,99,109,104,98,95,100,107,102,103,108,89,111,105,105,112,107,102,109,109,99,102,110,112,101,105,101,105,97,85,121,95,103,107,115,109,93,100,104,89,101,105,116,111,110,107,112,112,113,89,99,105,107,95,103,106,98,103,106,109,108,102,117,96,100,116,105,99,95,108,108,89,106,95,86,104,102,109,115,102,96,108,98,101,106,115,109,92,102,104,108,100,100,102,116,99,105,108,103,87,95,109,94,103,97,99,95,102,105,107,110,102,96,110,105,102,95,95,112,104,104,107,94,93,101,107,104,97,103,101,109,99,97,106,107,105,96,107,112,106,102,106,110,100,109,85,106,105,106,99,107,109,108,96,107,117,106,98,93,103,104,101,101,107,109,107,101,99,109,122,105,96,98,103,101,101,99,107,98,103,101,110,90,98,107,104,110,117,102,103,91,91,105,102,104,102,102,102,98,97,104,89,108,107,102,93,101,107,98,94,102,89,103,100,103,89,105,106,100,91,108,102,103,114,112,129,107,109,104,98,107,98,98,109,103,106,101,105,110,91,113,98,107,104,104,104,84,103,100,106,109,104,102,104,106,102,112,95,90,96,102,99,104,104,100,110,108,119,106,93,108,100,97,108,91,109,116,102,92,104,108,100,108,100,113,101,91,99,94,94,109,112,120,105,96,116,92,117,101,103,103,115,107,107,104,108,99,112,110,110,110,96,98,122,106,103,106,100,114,107,97,107,104,98,104,100,104,106,121,103,118,74,107,98,109,106,114,95,108,108,110,118,117,104,116,110,109,106,102,113,112,107,107,104,99,113,109,102,103,106,105,93,104,104,114,105,109,110,99,100,105,106,101,110,109,112,95,108,108,95,109,115,116,102,100,95,107,95,102,108,103,109,103,99,109,100,110,98,97,99,102,116,106,101,119,104,100,104,103,105,104,104,98,112,110,103,105,99,115,107,106,95,98,116,108,97,93,106,97,106,97,97,107,99,104,107,113,111,96,102,112,108,110,107,104,91,101,100,98,100,100,105,116,106,110,100,116,95,117,116,113,102,109,97,93,110,110,110,102,118,107,98,89,105,101,111,115,100,112,101,101,105,110,111,106,104,110,109,121,121,108,92,104,108,97,99,110,112,113,101,98,104,106,113,103,111,98,91,129,100,119,110,104,98,108,111,99,106,110,107,114,97,91,107,106,117,100,116,85,116,98,110,99,94,99,115,109,99,99,100,101,126,101,117,112,103,91,104,125,108,109,100,107,94,103,110,107,94,108,100,100,103,99,110,92,109,104,115,99,101,102,100,97,90,102,110,103,104,107,117,105,112,116,106,85,112,102,111,93,109,109,101,104,102,117,106,107,105,99,96,103,95,104,101,104,98,96,111,94,91,102,105,85,99,100,100,106,94,104,99,88,106,110,94,106,109,102,106,104,98,116,107,103,100,106,114,112,100,96,113,104,99,125,105,121,112,137,101,109,98,106,91, +483.72531,90,107,98,91,101,104,97,96,96,90,95,102,110,104,102,104,101,120,99,97,99,92,99,107,99,96,103,97,107,99,101,108,92,93,121,91,102,96,92,99,98,106,100,118,90,104,119,99,124,99,111,88,97,116,98,102,113,102,104,98,115,116,103,98,104,119,108,102,105,100,112,103,94,105,110,113,96,100,114,103,103,109,106,106,102,101,99,107,106,103,95,107,103,102,109,104,104,116,101,99,97,108,99,104,97,98,93,94,98,113,99,110,110,101,97,85,88,96,118,114,98,117,95,101,103,109,103,103,112,110,104,108,83,95,122,112,109,100,119,98,102,105,104,101,91,103,104,104,105,99,104,96,106,85,97,93,105,102,113,99,97,118,106,111,107,94,85,89,103,121,100,99,93,103,110,105,107,94,104,108,100,107,95,88,105,110,103,74,105,96,81,106,108,104,104,107,95,102,90,102,109,102,91,106,97,94,87,95,109,118,99,109,100,112,96,95,109,104,103,104,104,109,101,112,100,114,96,115,108,103,100,117,115,103,103,105,108,104,114,99,74,106,108,98,111,93,113,106,102,106,97,111,102,104,113,107,110,113,101,101,100,113,102,103,96,102,98,101,109,104,91,109,113,105,107,97,97,106,107,99,87,109,105,89,108,101,92,99,103,109,111,114,116,108,106,114,92,104,98,102,114,112,101,109,116,104,120,112,109,107,105,102,103,103,96,116,109,109,105,106,113,101,109,103,94,104,100,96,113,116,105,95,113,106,112,120,104,100,106,99,115,105,99,97,102,103,105,102,108,98,101,113,108,108,114,97,117,107,104,119,96,102,98,105,96,103,93,105,107,104,104,105,100,109,106,105,108,100,107,108,103,103,114,95,97,100,106,100,101,97,109,109,103,116,99,103,106,112,100,103,113,104,99,98,84,100,114,113,109,110,88,98,95,96,108,98,111,100,116,109,98,112,97,104,105,109,107,99,94,100,98,120,106,91,95,106,96,116,90,97,105,110,98,104,106,102,99,102,109,114,94,99,104,101,95,100,97,103,98,106,86,96,98,102,115,111,107,96,110,94,109,108,100,114,105,99,107,121,109,95,110,106,87,103,111,92,106,101,99,105,105,106,107,99,98,90,107,110,108,107,104,108,105,101,100,106,105,105,105,108,109,110,103,96,93,100,109,107,103,95,98,95,105,104,104,105,112,94,105,104,100,109,103,102,105,100,96,92,98,112,104,117,112,102,115,101,104,96,119,90,99,105,110,98,103,96,109,107,105,119,100,103,95,100,98,98,101,102,102,109,99,105,108,107,100,113,112,97,95,113,113,93,103,92,105,102,94,118,108,101,110,105,109,102,116,106,98,104,103,101,105,97,101,113,95,97,102,100,102,99,113,87,110,102,99,92,103,99,105,117,103,98,107,94,106,103,101,92,106,116,87,100,90,100,97,108,110,101,107,105,116,113,95,101,96,104,103,100,109,108,105,102,117,116,105,101,117,102,110,103,101,121,105,99,87,91,102,92,101,113,116,104,93,99,106,104,103,100,110,97,101,107,113,91,101,94,103,110,105,112,102,105,97,119,107,116,102,103,90,104,107,101,98,93,97,108,106,114,122,104,106,104,91,104,81,105,101,102,116,102,101,102,87,107,101,99,109,95,115,116,104,104,108,105,104,99,74,92,107,103,111,103,100,102,102,98,107,98,97,121,110,101,108,110,103,103,113,118,104,110,91,110,98,108,86,95,97,103,96,103,98,102,108,107,103,111,99,90,103,119,106,109,113,122,113,87,116,112,102,106,106,108,92,105,97,113,99,102,104,105,108,107,98,99,103,105,109,114,108,114,104,94,96,91,112,105,80,101,107,102,107,103,100,109,98,112,110,99,117,106,102,108,106,112,112,106,113,106,108,105,103,109,114,109,109,100,113,95,97,103,102,110,96,107,100,106,113,102,113,104,109,103,102,108,108,107,85,89,110,96,117,118,110,106,103,107,105,94,101,100,107,113,102,109,104,109,97,121,101,99,119,99,104,110,99,94,94,102,108,104,114,68,110,100,100,102,102,89,92,101,111,111,112,96,107,96,98,109,99,111,115,101,109,97,124,91,95,92,100,103,100,105,109,91,95,101,102,107,98,103,97,101,103,97,95,117,99,107,101,108,100,104,102,100,108,95,110,102,93,98,119,102,101,102,105,103,106,100,98,93,110,98,106,109,101,109,88,92,104,107,100,113,105,98,112,107,111,87,90,109,117,99,102,94,97,101,98,100,95,107,110,101,96,103,116,112,94,115,106,112,104,108,100,119,110,118,105,97,94,108,101,96,102,97,118,104,98,97,100,111,111,110,103,88,106,96,97,106,112,102,100,99,109,111,108,99,102,91,95,110,115,117,106,109,95,105,100,105,90,106,94,112,103,103,107,104,113,98,110,98,94,106,81,104,107,102,95,110,82,95,94,98,103,118,120,116,104,107,111,105,112,99,93,104,108,102,102,107,106,116,102,92,87,99,105,105,95,113,98,110,82,110,103,103,108,94,105,134,108,104,110,96,112,107,107,101,94,127,113,96,113,103,98,99,103,103,115,96,116,98,114,103,98,101,99,99,111,100,111,107,109,111,99,94,101,108,108,100,106,107,102,101,102,98,103,95,114,108,102,102,112,103,83,103,101,109,105,108,108,97,102,107,112,117,112,102,99,105,99,119,103,103,112,108,103,104,110,69,114,109,105,105,110,111,95,108,101,100,102,104,107,107,99,103,109,105,102,107,102,115,102,117,102,95,108,97,98,114,102,102,105,110,106,100,112,113,109,97,106,102,115,99,113,137,93,95,103,108,110,103,100,102,100,98,77,104,102,105,101,116,110,93,103,101,113,97,108,98,111,112,99,109,101,101,95,109,103,111,107,119,106,103,115,115,102,113,107,106,109,107,114,99,97,105,105,106,105,96,99,101,113,103,91,101,101,87,93,101,117,104,105,121,104,90,105,112,104,106,105,82,102,102,102,88,54,91,116,106,112,84,92,110,99,106,113,103,105,100,103,104,96,94,107,99,107,108,114,107,106,99,103,109,90,107,89,114,112,107,106,102,84,102,102,109,104,109,115,100,96,101,101,105,98,127,106,99,110,115,108,96,104,104,107,106,109,108,109,101,94,109,105,98,100,108,105,114,94,76,112,97,110,88,98,110,102,106,101,105,102,109,102,128,138,108,94,94,97,76,106,100,109,110,94,113,109,106,106,97,109,98,106,108,110,101,106,99,103,106,102,107,103,105,99,105,97,104,106,111,89,109,114,100,107,95,90,101,118,105,102,104,91,107,110,115,94,108,118,101,100,113,100,113,108,107,91,102,99,79,102,109,105,112,96,104,93,111,92,106,92,109,108,96,108,92,118,110,113,103,107,102,76,108,117,111,125,100,101,98,101,97,107,97,103,110,119,110,109,105,100,94,98,104,102,95,103,104,72,104,97,100,97,104,103,94,108,108,98,95,101,91,112,98,89,96,114,104,106,96,101,101,106,111,105,95,111,103,109,112,86,105,104,104,103,96,108,119,97,113,100,103,111,117,99,106,107,109,92,92,107,106,100,97,96,104,102,100,89,109,105,95,95,104,109,102,105,87,94,94,98,115,102,105,106,108,94,98,102,111,108,112,105,91,109,120,91,103,108,109,103,105,104,107,103,92,101,108,103,95,97,91,103,101,108,110,104,103,100,108,99,108,94,104,101,102,105,105,95,102,105,103,96,113,96,119,106,106,106,102,107,109,113,104,104,103,107,92,102,101,104,105,96,101,102,96,99,95,103,108,98,98,105,105,104,98,99,123,106,106,102,110,104,107,111,107,102,108,99,98,106,102,104,109,108,112,100,108,115,100,96,102,103,97,109,107,96,94,104,104,104,101,93,104,102,111,103,108,106,96,92,100,102,104,106,99,100,101,101,102,112,104,93,103,101,103,98,103,101,109,98,114,102,104,110,99,114,99,93,105,98,116,102,112,109,69,87,106,107,99,100,108,105,103,88,111,99,99,111,97,117,108,105,122,101,98,100,114,101,104,108,106,104,106,98,92,97,100,105,99,107,99,108,102,104,80,102,105,99,102,105,104,109,107,105,96,106,109,103,95,98,115,110,106,94,103,104,115,97,106,103,110,103,103,97,100,106,109,100,102,104,91,109,106,107,102,109,110,102,110,93,115,106,104,94,112,99,109,103,95,104,109,102,108,131,101,90,99,110,104,110,101,102,97,102,91,107,113,98,99,100,97,103,100,85,103,103,104,106,96,105,98,104,121,90,112,101,106,95,108,92,108,99,109,116,93,111,108,99,97,100,108,85,101,110,92,105,95,113,96,104,110,101,108,110,117,98,98,102,112,102,102,93,117,116,99,79,97,106,115,111,98,93,105,103,109,91,99,96,103,105,119,105,106,91,103,87,112,102,97,101,113,100,102,105,101,106,95,69,100,105,105,90,108,95,107,111,96,102,105,106,99,90,110,107,131,102,91,91,94,100,105,82,112,94,104,100,119,108,110,96,99,99,92,77,111,92,115,102,103,102,108,75,98,79,95,123,105,109,102,110,92,96,94,110,98,102,112,106,127,105,106,99,102,100,110,93,108,104,102,89,83,103,111,100,108,109,102,110,100,107,105,94,98,107,89,97,95,107,100,94,88,100,96,90,95,104,92,100,87,109,77,104,91,104,102,110,107,100,98,105,102,101,99,94,94,99,110,115,109,100,104,99,108,105,97,103,96,86,101,117,105,101,119,106,93,100,109,96,113,113,103,101,109,107,102,98,98,94,115,106,107,100,96,90,107,101,102,106,102,102,103,98,95,95,98,96,115,110,94,102,102,109,99,94,101,105,90,102,99,103,106,99,107,100,116,104,94,94,81,100,103, +483.86588,97,99,96,109,103,103,105,97,100,106,88,109,115,105,92,109,123,77,109,101,104,103,115,109,108,99,104,85,113,110,103,97,110,97,96,104,109,110,104,115,109,109,117,91,114,112,108,112,100,99,109,109,98,102,113,97,91,88,81,104,113,112,121,67,106,113,96,103,89,107,108,100,117,109,106,108,102,102,100,104,112,94,103,109,103,109,81,99,109,105,102,103,107,108,96,105,98,88,104,101,117,106,109,105,104,108,103,106,107,112,102,119,107,105,120,127,103,118,106,103,108,108,117,103,103,99,113,94,113,117,95,99,106,101,100,114,105,80,91,106,105,107,98,113,101,102,105,103,94,126,114,108,99,92,98,117,94,110,97,99,106,105,108,102,108,102,109,101,100,99,98,110,95,114,113,104,102,91,109,104,107,105,112,115,100,118,103,95,86,95,103,103,100,104,95,108,87,110,103,107,111,103,109,111,106,111,87,110,106,126,101,103,102,103,91,109,107,99,95,101,109,109,105,101,111,112,120,96,118,114,106,99,109,102,99,104,108,102,114,111,90,111,89,100,98,109,98,101,106,103,106,114,93,104,107,103,93,100,98,101,102,108,104,104,109,111,102,112,106,104,108,106,109,106,98,117,104,113,105,97,111,114,105,101,105,108,94,137,116,105,101,109,107,118,107,110,106,103,96,102,109,99,106,74,105,112,109,103,93,109,89,121,108,114,106,94,98,94,95,96,90,99,114,105,115,100,103,99,94,107,106,103,100,101,112,107,98,109,107,120,110,107,116,100,117,115,112,112,103,114,106,96,103,71,115,107,96,103,113,105,102,104,101,99,99,112,106,111,109,113,108,104,103,120,110,103,113,100,103,87,106,120,107,109,119,93,112,96,99,104,113,94,105,103,106,102,98,125,109,108,93,114,105,81,106,99,109,115,122,101,123,100,101,120,120,112,101,101,116,108,107,105,98,101,105,105,128,121,98,116,106,122,109,110,113,111,93,103,106,106,125,110,106,113,95,117,92,108,108,106,103,99,96,104,105,105,102,93,109,91,129,104,104,112,109,104,103,97,108,100,111,129,109,112,98,104,106,118,109,111,108,107,112,108,109,96,105,103,103,106,114,106,122,88,98,95,99,111,120,116,113,102,100,103,99,106,95,103,114,100,108,107,103,109,104,108,98,100,97,92,102,98,112,108,99,111,99,114,100,109,108,102,107,102,109,110,98,89,106,107,124,111,93,113,91,96,97,109,103,109,115,102,102,106,87,108,108,108,111,108,114,108,112,108,110,114,108,113,105,113,104,114,120,109,105,112,106,110,106,104,111,106,94,105,105,105,105,108,111,117,94,110,96,117,123,104,108,103,103,98,106,96,106,98,103,112,108,104,113,111,105,99,105,98,100,106,95,108,79,113,104,102,132,117,106,98,112,110,109,100,94,110,99,98,106,107,108,99,97,104,110,117,104,102,108,104,128,98,104,114,106,95,110,100,100,121,111,118,99,109,123,103,108,100,89,109,115,93,110,103,106,105,104,114,108,116,109,110,109,108,112,113,108,103,108,95,108,130,106,104,106,110,104,94,113,115,113,121,90,106,102,103,97,99,108,116,100,103,109,105,103,100,109,105,103,99,98,101,107,109,105,89,105,107,100,101,106,103,113,110,104,105,103,108,106,105,116,111,107,114,106,110,111,110,103,107,100,119,95,107,98,99,106,130,95,96,98,117,100,106,103,106,105,100,101,98,100,112,110,108,118,117,103,104,96,118,95,111,122,123,105,102,107,108,106,116,94,98,108,111,108,93,102,117,110,105,95,128,103,108,100,115,105,107,113,117,106,113,100,103,115,115,102,105,107,110,110,102,107,96,101,103,117,112,95,103,105,99,87,100,114,93,106,107,98,109,113,117,101,104,116,117,105,107,98,107,105,93,98,104,101,106,114,96,111,116,78,112,98,105,103,66,107,98,102,105,108,113,108,115,112,110,107,107,104,114,111,97,109,101,111,109,107,110,117,108,102,102,119,102,111,109,103,98,102,107,111,100,101,102,99,104,99,112,109,102,98,114,105,77,98,111,114,110,103,107,114,124,89,106,109,94,102,107,106,102,89,102,103,104,121,109,102,111,103,117,96,101,109,93,96,109,102,109,104,106,105,118,107,98,104,98,85,102,112,98,107,97,116,115,129,96,105,102,105,107,96,113,93,113,107,104,102,106,100,106,113,109,104,110,101,107,108,104,110,95,100,104,100,101,112,107,106,99,109,112,71,104,107,108,109,107,118,83,111,110,115,109,104,106,94,109,109,100,112,100,104,107,104,105,109,108,96,97,114,82,112,114,117,101,108,104,110,117,109,96,105,115,96,109,105,102,96,108,107,104,98,102,102,102,98,100,105,105,101,105,113,99,74,98,101,102,118,109,100,101,101,108,104,104,109,117,118,104,102,106,108,108,83,106,91,108,105,103,107,105,110,114,109,103,98,101,98,100,102,107,103,92,99,116,108,94,117,100,113,114,88,96,113,111,84,111,112,101,98,104,97,106,100,97,121,106,97,85,104,100,102,110,99,108,115,105,93,105,103,108,101,102,94,97,74,92,89,105,94,86,82,107,107,92,106,114,108,102,102,112,105,111,106,111,117,93,99,113,99,99,98,99,111,100,115,98,105,104,111,93,111,102,107,104,85,105,111,108,87,104,104,116,104,110,101,106,111,96,103,104,94,96,89,107,93,99,101,93,102,98,106,115,99,108,110,102,98,99,105,123,106,102,94,106,99,112,111,107,113,92,93,102,103,97,101,113,110,108,105,105,112,103,109,113,103,75,110,114,102,99,103,101,101,109,96,105,112,92,106,100,104,111,102,109,109,103,98,112,111,99,109,121,104,103,93,111,99,105,106,99,95,103,100,111,105,105,105,105,88,127,86,101,98,103,103,94,102,106,105,105,106,101,110,95,111,102,101,121,104,103,111,111,117,107,100,103,95,99,118,102,102,101,117,106,95,101,108,100,72,87,103,97,98,99,97,101,104,109,122,95,102,109,95,107,78,105,75,101,107,99,107,103,111,112,104,110,96,98,94,107,98,111,98,103,109,103,108,106,113,100,108,98,100,100,103,111,104,96,96,103,97,106,92,112,98,95,95,120,105,103,109,102,104,95,105,100,120,96,118,105,92,95,78,99,115,103,93,112,102,98,113,83,122,95,102,98,91,105,104,106,104,100,109,106,103,116,98,98,98,104,99,91,103,120,90,117,118,116,109,105,116,92,103,94,101,104,106,106,92,120,105,100,105,110,94,101,101,98,100,100,107,104,108,106,96,104,103,98,108,108,95,95,105,101,100,111,103,102,109,103,107,102,98,93,100,113,98,105,96,102,104,104,97,109,112,109,110,106,98,106,97,95,115,116,93,98,121,110,101,107,92,131,109,104,104,107,97,102,97,87,107,119,105,94,102,110,104,104,113,99,104,101,94,105,106,99,106,101,106,105,116,96,99,96,96,106,107,107,113,102,93,98,95,101,116,102,105,105,97,103,108,104,110,100,88,104,106,118,104,106,113,103,101,120,104,108,79,130,109,103,94,102,99,94,99,104,107,110,109,109,98,102,96,105,88,106,101,101,73,97,109,110,103,117,107,105,109,113,100,106,102,106,99,130,100,69,108,109,105,109,106,111,102,99,109,101,110,101,100,94,105,109,91,107,114,105,99,96,97,117,111,102,97,99,108,106,106,102,103,102,107,106,101,100,95,101,114,91,95,107,103,117,114,99,103,107,94,102,94,103,102,93,109,98,94,103,99,108,99,115,107,90,90,103,104,67,104,97,100,102,115,99,93,104,96,97,99,111,90,93,99,106,106,116,96,114,100,119,98,107,98,88,106,99,91,101,104,111,107,98,97,89,100,91,107,99,100,97,101,105,104,97,106,116,104,99,106,92,97,103,106,99,102,102,97,101,93,105,92,98,108,96,124,105,108,106,105,122,111,99,99,102,108,107,95,102,103,105,104,101,96,107,96,102,105,104,93,99,105,104,120,99,101,107,109,112,101,106,101,123,110,107,112,104,83,90,117,105,101,105,108,104,104,104,105,104,103,112,108,111,98,105,105,99,98,97,105,106,98,103,103,103,97,100,95,104,101,110,102,91,89,105,97,82,105,101,101,101,95,92,113,98,93,109,99,96,96,91,109,95,94,107,102,102,109,108,99,112,98,107,117,96,94,101,113,104,108,108,102,96,105,90,107,115,95,109,96,101,86,111,91,94,110,100,101,103,99,102,100,103,91,105,87,91,94,103,99,108,106,109,100,99,87,106,104,103,104,92,122,105,105,131,95,105,103,104,116,100,97,95,108,112,100,102,102,102,114,103,102,96,102,109,105,99,99,98,90,94,110,102,99,101,102,95,99,96,101,101,96,105,93,97,97,99,115,98,100,86,95,87,86,104,98,94,91,126,94,106,105,116,91,101,106,95,95,101,113,96,107,99,88,104,95,104,92,89,97,105,110,106,90,113,110,99,111,92,104,103,106,106,137,97,103,101,101,88,106,103,93,105,104,106,90,105,110,99,98,100,113,118,108,87,94,108,105,88,109,100,106,84,73,95,102,100,98,105,97,113,107,110,99,98,98,78,109,96,99,88,109,103,114,106,102,112,106,106,124,92,99,104,109,112,95,95,96,94,102,120,78,92,101,108,104,107,115,104,92,102,101,103,94,102,104,96,90,95,104,109,96,110,103,103,102,94,104,102,98,109,108,107,104,109,109,103,106,89,102,102,96,101,102,97,87,92,102,101,97,92,101,97,89,102,98,99,99,104,95,106,116,101,98,101,111,93,120,83,93,94,100,96,101,96,97,93,114,108,96,102,116,95,95,100,84,105,102,94,102,86,87,98,89,90,96,114, +484.00641,110,100,103,92,96,116,111,90,97,105,99,105,93,99,109,101,108,111,105,103,103,86,104,95,95,109,96,103,112,100,115,75,99,105,114,110,97,107,89,105,100,109,110,102,104,111,110,109,99,103,95,95,94,110,96,105,110,105,97,91,100,115,99,109,100,95,109,96,106,100,109,100,104,102,102,110,84,101,107,91,108,110,96,103,103,114,104,95,108,106,101,104,103,104,99,95,104,101,100,97,91,112,103,103,86,89,100,112,97,91,102,98,90,78,107,101,120,141,99,93,102,105,116,112,110,100,107,102,101,106,117,120,95,90,107,94,130,108,105,108,101,96,110,119,95,102,109,94,94,99,103,129,100,89,99,92,109,110,108,101,109,102,102,97,105,112,110,101,108,104,113,102,96,100,112,107,110,102,107,105,92,109,112,106,102,97,118,101,102,103,99,95,108,99,90,70,105,92,113,103,102,96,94,105,107,95,108,102,113,117,104,108,105,110,100,111,95,99,101,102,100,109,112,102,106,107,99,112,99,110,103,105,101,117,96,105,111,124,105,102,102,117,107,105,101,94,99,103,109,117,111,95,116,92,99,93,100,89,95,84,96,102,92,105,103,108,110,125,108,112,111,109,108,103,87,87,102,106,104,98,108,93,112,93,98,98,113,110,109,107,112,104,104,113,110,104,106,108,113,100,105,95,102,104,95,110,104,114,109,105,91,114,99,101,96,105,96,94,94,113,101,97,95,100,101,100,110,92,110,112,114,104,106,103,110,88,105,100,100,99,96,112,103,105,111,92,93,98,117,78,104,119,108,90,104,96,111,109,105,98,111,101,89,106,103,106,101,94,97,105,113,100,104,106,104,108,91,93,101,110,114,116,118,112,108,94,91,96,113,103,116,95,96,121,112,102,94,108,98,98,91,113,110,100,98,108,101,102,114,106,98,87,104,115,103,95,108,101,111,94,115,109,106,99,107,87,107,94,115,98,102,106,108,99,99,114,103,100,113,91,107,90,98,103,104,105,97,99,103,125,95,108,108,104,100,124,106,108,112,93,111,108,109,109,94,101,111,113,109,102,94,103,106,106,96,110,105,105,105,109,104,104,113,106,103,103,108,127,97,90,110,106,114,105,111,113,104,110,102,105,107,100,120,102,103,105,106,105,122,105,102,100,110,112,98,105,109,103,106,97,103,101,109,117,96,95,103,107,109,103,99,95,109,98,94,105,107,114,110,97,120,94,106,110,110,112,91,109,111,109,102,108,109,106,110,116,96,96,100,104,112,98,101,103,103,106,109,99,110,104,103,101,97,105,105,107,97,106,98,110,101,96,103,112,110,114,99,98,99,111,109,95,115,98,98,111,98,97,119,101,110,91,98,103,102,110,104,104,100,100,106,97,108,101,89,111,105,108,99,96,104,108,94,108,82,109,109,98,104,96,94,111,108,102,98,91,97,107,104,105,117,106,106,120,110,97,100,94,108,105,108,100,108,110,94,105,122,100,105,104,107,113,104,92,94,98,105,93,106,105,104,106,102,104,103,91,103,115,98,101,111,112,108,98,98,102,93,94,100,100,107,98,112,112,107,109,94,108,106,104,109,91,119,112,91,108,97,109,101,99,98,108,105,101,96,102,112,103,107,106,96,110,96,115,90,104,112,117,103,131,113,106,96,108,85,91,95,109,111,108,100,93,97,101,111,107,111,117,106,114,101,110,97,103,108,105,102,109,104,97,102,100,101,96,112,113,97,95,104,106,103,101,111,106,116,102,108,118,107,100,100,107,110,95,99,103,104,109,111,107,104,121,105,107,102,108,101,111,99,105,100,97,97,96,87,106,109,118,100,100,95,96,94,105,118,110,97,102,105,99,96,100,105,110,107,101,120,107,108,112,102,97,95,97,115,105,100,103,99,102,99,106,107,114,102,115,95,101,97,104,81,100,103,102,93,105,100,113,97,98,101,96,105,90,104,115,124,100,113,125,104,130,99,103,97,114,96,111,102,94,105,98,100,93,94,115,102,115,117,106,95,103,106,105,103,102,104,109,105,117,106,103,112,105,113,95,86,101,110,103,96,95,107,113,91,89,103,101,96,116,111,101,98,110,102,103,102,102,100,104,104,117,99,117,108,102,100,110,108,103,97,108,112,99,95,93,97,98,100,97,103,99,102,98,118,98,105,103,113,99,106,100,100,93,112,98,99,99,90,102,104,104,96,101,104,104,103,96,105,100,103,113,108,113,111,97,97,98,83,104,103,101,103,101,94,103,112,110,105,101,92,104,94,107,113,109,106,106,99,104,95,102,101,98,99,94,113,106,110,109,107,116,101,106,100,102,101,103,94,83,113,99,98,105,112,94,95,103,106,101,95,96,92,111,94,110,111,109,113,98,101,98,83,108,84,134,111,91,109,100,91,104,92,99,112,96,109,97,94,96,105,115,112,110,102,115,101,99,91,105,106,108,108,119,107,102,107,100,110,108,104,104,132,106,101,102,109,103,103,98,87,96,108,91,114,117,103,102,107,95,93,112,113,103,106,98,98,100,109,110,118,102,104,116,109,116,112,102,102,96,114,124,108,99,107,102,91,103,110,110,104,106,88,107,100,98,96,113,111,100,117,104,129,106,92,111,117,111,106,99,102,102,104,91,101,114,96,119,101,115,99,98,104,101,108,95,103,113,107,119,106,107,102,98,110,99,118,98,114,106,108,98,105,110,109,103,116,123,116,114,116,105,103,105,101,97,109,115,113,83,110,108,106,117,103,114,90,115,99,94,107,123,103,103,106,101,102,105,104,112,108,103,100,96,102,113,108,113,94,110,84,113,103,94,105,105,107,114,112,109,105,98,106,105,108,109,106,98,118,112,98,107,77,103,105,109,110,106,98,107,107,97,113,115,113,111,98,103,96,117,105,96,108,104,106,99,111,104,107,111,97,113,100,102,104,103,103,115,112,108,111,107,104,112,96,98,120,105,98,112,110,108,102,100,105,113,101,112,110,100,114,105,105,103,103,106,107,104,98,111,110,87,97,108,107,104,109,110,107,118,104,87,112,95,106,91,108,105,111,113,109,101,107,103,95,101,135,113,100,95,100,109,103,112,109,106,104,100,99,108,94,99,105,98,102,109,103,105,103,102,118,101,93,108,110,107,101,100,113,103,103,94,101,99,97,110,98,102,100,107,110,105,108,97,112,97,98,108,118,117,102,95,105,92,99,99,95,107,100,103,115,99,118,98,95,102,107,101,78,103,100,100,101,102,109,108,91,101,100,106,103,104,118,90,102,106,104,96,112,102,108,104,121,85,108,103,118,113,125,119,101,108,117,113,109,116,97,92,102,109,112,101,103,101,107,107,96,102,105,111,103,106,115,116,97,86,98,107,112,99,105,107,99,112,106,104,97,110,119,104,97,103,107,110,100,103,104,99,103,109,99,120,108,103,101,103,98,95,109,100,118,105,93,105,110,105,105,100,93,105,99,109,104,89,110,101,104,101,99,98,105,107,103,100,117,73,110,104,99,96,114,121,106,106,100,112,110,117,96,111,93,89,111,113,107,100,99,119,91,99,100,88,107,99,105,105,129,99,105,99,101,98,100,104,91,103,98,96,110,102,103,87,98,95,106,93,104,102,108,120,95,97,86,117,112,129,113,102,107,110,107,97,109,104,101,101,98,113,100,91,106,116,104,110,112,105,110,101,104,101,94,95,111,112,97,109,106,104,89,104,105,97,102,109,110,107,106,108,106,107,109,108,111,100,102,107,107,111,113,94,103,116,98,102,106,114,103,98,118,103,99,122,104,123,103,113,108,112,105,107,116,107,103,114,103,112,143,92,96,106,101,120,115,95,104,105,103,104,92,92,107,108,103,102,101,107,108,98,100,100,99,108,97,99,99,99,104,107,99,91,104,113,108,103,102,109,107,102,110,105,101,115,105,108,101,98,111,107,85,112,104,105,110,104,99,106,106,99,94,95,109,94,102,123,111,107,97,105,114,99,105,113,96,104,103,93,94,104,95,87,109,100,104,113,103,99,110,99,107,127,88,103,98,105,118,100,100,105,113,105,101,98,98,88,92,106,95,108,104,106,104,109,100,108,99,102,72,96,84,103,96,103,95,100,88,102,118,116,104,110,102,100,106,104,103,112,104,117,108,108,112,110,99,109,106,108,103,105,109,98,100,76,104,106,99,109,95,104,107,121,104,114,103,97,96,92,100,101,92,105,103,109,100,104,93,95,108,110,101,105,92,111,101,101,98,92,96,97,105,108,116,97,104,106,92,99,117,95,98,96,89,98,121,106,94,107,109,113,105,108,105,112,109,91,124,100,106,123,107,102,107,98,112,78,103,105,109,94,90,106,104,102,105,106,113,110,109,74,102,103,102,104,106,84,108,112,109,124,102,80,98,110,97,106,99,102,93,105,102,108,106,116,91,102,104,101,101,95,102,104,95,107,104,113,110,101,113,131,84,99,99,101,102,97,104,109,108,101,96,122,97,109,100,111,100,101,108,102,108,121,99,98,120,106,102,106,108,119,105,99,106,105,107,109,115,110,103,100,108,102,111,103,101,116,112,113,118,110,92,101,103,109,102,104,102,105,106,97,112,109,109,104,107,112,114,92,100,109,103,113,116,103,106,98,111,103,99,98,97,99,92,102,106,103,105,107,106,108,88,109,107,89,106,104,104,99,104,97,112,92,109,112,110,97,108,103,100,97,95,108,87,98,107,108,95,111,106,100,108,116,111,88,100,103,100,106,102,131,100,103,99,108,100,105,105,109,115,101,104,102,96,108,95,117,98,94,109,99,119,103,102,99,102,103,103,95,106,99,101,110,91,95,100,94,106,99,96,95,106,69,106,119,106,117,105,107,107,104,92,108,89,98,104,82,104,98,87,106,109,88, +484.14697,89,99,98,109,100,100,119,125,90,101,106,93,100,104,118,100,109,116,103,108,106,113,97,96,99,96,101,108,101,107,104,111,105,100,121,105,111,94,98,109,96,104,107,112,129,107,102,95,98,101,105,105,106,114,96,108,107,86,112,102,104,98,107,100,98,115,101,95,108,99,110,111,103,121,98,110,95,101,114,102,106,105,112,83,111,109,108,100,104,100,107,103,113,95,114,100,102,90,91,103,107,111,92,97,113,106,96,103,108,98,102,104,112,117,106,108,115,113,107,108,95,106,97,111,131,111,109,98,103,109,113,92,109,105,94,118,100,69,92,102,99,91,106,104,113,94,124,116,90,114,99,98,103,94,95,109,107,110,105,111,101,124,122,111,118,110,104,96,95,112,105,102,100,106,113,110,110,107,116,110,107,108,110,100,105,105,95,97,109,101,108,116,91,94,104,105,107,106,100,109,108,112,112,104,107,100,95,113,113,105,101,112,107,100,100,112,104,116,100,100,112,103,105,96,95,113,95,105,113,106,93,108,116,83,104,102,102,102,113,103,110,88,80,122,105,101,107,100,111,104,105,113,107,131,105,93,96,86,103,100,102,107,101,110,93,99,106,102,102,101,99,101,111,103,109,107,93,108,101,108,96,105,100,88,101,109,117,110,98,91,103,108,120,109,104,102,102,111,106,114,96,105,102,114,103,118,109,108,112,107,96,117,102,109,90,105,106,110,107,106,95,105,119,101,97,103,108,92,66,104,110,95,107,107,107,91,103,104,108,109,110,106,106,109,96,116,98,103,104,99,94,98,112,112,103,99,110,104,107,109,102,106,96,108,100,93,101,121,96,107,122,135,107,105,103,103,108,106,113,95,114,118,99,100,96,104,110,101,116,110,119,103,104,104,110,110,106,98,97,101,92,105,104,96,102,95,105,103,99,105,105,105,108,106,114,102,101,104,94,95,100,99,106,95,104,97,86,105,107,109,99,110,101,105,104,99,100,99,109,109,109,106,106,112,99,107,98,110,102,117,103,108,107,105,105,107,106,96,108,100,117,101,118,87,104,110,112,103,102,109,112,104,104,106,106,102,107,113,115,119,111,109,110,131,112,94,108,108,97,98,102,106,103,102,103,125,99,103,107,99,101,98,109,100,96,109,103,113,111,110,109,116,104,104,101,110,111,114,116,102,109,103,102,95,92,120,93,97,110,111,102,113,104,102,96,117,101,103,115,108,118,116,109,96,112,85,108,109,113,100,108,110,109,106,99,99,113,102,116,103,106,117,105,102,105,106,102,95,111,104,106,103,110,108,107,115,113,106,102,91,96,98,95,109,95,104,112,105,109,99,113,107,114,97,117,106,94,108,105,117,106,114,98,107,108,103,109,91,96,104,100,105,108,114,102,117,109,105,108,109,103,122,112,107,110,103,110,106,109,117,102,103,107,98,102,104,118,116,112,103,98,95,109,103,115,102,115,86,107,109,98,111,103,111,109,104,129,103,112,112,105,104,103,103,100,104,109,100,106,112,91,109,97,110,90,113,108,95,109,110,126,108,114,96,87,112,114,103,94,109,123,103,115,114,104,120,104,117,114,106,91,100,104,111,110,110,106,117,100,99,111,109,104,96,109,99,106,123,111,112,113,104,112,120,107,104,90,101,100,109,102,109,115,107,101,104,110,109,109,103,110,89,109,107,109,109,98,96,107,105,111,103,105,91,112,94,101,109,97,107,108,86,99,103,108,109,114,106,103,103,102,96,101,107,89,121,103,99,123,109,105,95,112,103,105,98,114,107,118,101,117,107,99,119,102,105,105,102,100,111,101,104,103,100,112,116,107,103,113,96,112,71,98,108,109,114,105,94,113,102,109,96,96,103,104,92,104,120,112,106,110,104,89,101,97,109,116,111,103,115,94,105,107,95,94,113,95,96,107,103,115,110,110,109,97,114,98,141,111,112,109,93,105,118,102,107,110,89,118,104,109,106,97,96,110,109,107,104,107,109,104,100,95,105,101,99,102,107,103,114,108,104,108,107,99,115,109,99,99,117,99,110,107,103,113,107,102,125,104,100,98,108,103,75,113,100,101,110,97,91,107,95,102,92,109,97,103,106,107,107,99,123,97,91,85,109,97,109,104,112,106,100,118,112,102,109,107,110,104,115,102,99,104,106,102,110,103,120,70,116,108,103,113,91,104,104,110,92,105,116,108,109,105,99,87,102,97,104,94,106,109,105,105,98,109,104,106,103,114,112,118,109,97,105,109,106,103,103,100,98,97,103,102,105,97,107,77,121,94,98,101,97,97,103,94,103,98,104,95,96,99,90,110,104,103,102,106,98,116,104,99,102,95,108,112,101,92,105,103,113,104,106,97,102,97,111,97,114,101,90,107,109,95,96,93,101,115,101,95,102,108,114,110,88,97,96,108,110,109,101,104,103,98,103,114,105,102,114,116,109,102,107,93,120,100,116,103,96,104,109,105,111,106,101,94,119,85,109,120,115,111,91,101,91,74,100,102,101,105,102,105,117,118,103,91,94,107,114,98,103,99,106,103,107,103,113,113,109,100,103,102,101,99,101,104,103,108,99,98,111,116,101,98,90,109,97,105,112,104,97,128,99,107,102,103,106,135,104,102,105,106,111,104,100,104,119,98,104,98,107,113,98,92,102,101,99,109,106,109,106,104,113,92,100,118,101,110,93,110,102,107,109,109,121,105,102,106,99,107,97,92,96,108,98,102,106,115,116,103,103,110,103,82,103,112,106,101,101,109,114,99,103,93,98,96,113,95,101,100,112,104,116,102,106,99,105,104,104,109,106,103,102,99,93,99,109,104,104,108,97,97,103,106,106,118,98,115,108,103,109,119,103,109,111,112,107,111,99,106,112,106,102,100,113,115,103,96,104,106,112,101,101,115,105,105,115,109,101,105,105,109,98,113,114,100,97,107,107,106,93,108,105,96,110,91,120,105,108,109,105,121,104,99,91,111,111,124,112,114,98,100,111,107,110,92,107,112,95,106,108,108,103,94,97,111,95,111,85,112,113,104,100,95,103,109,93,86,108,105,98,103,115,109,109,106,115,103,135,121,105,100,103,111,102,109,99,111,112,109,109,112,113,101,113,121,97,111,111,116,108,103,108,103,104,109,115,104,110,99,96,101,91,108,97,108,104,94,108,108,96,106,107,104,107,95,114,96,103,109,100,105,98,92,109,105,98,102,99,108,103,112,99,109,109,103,107,108,95,116,108,105,106,85,108,120,100,99,120,104,104,99,79,103,107,116,107,111,99,111,90,112,104,112,94,99,94,109,110,110,106,121,113,104,102,117,111,104,89,116,111,105,108,100,99,109,108,104,106,106,110,110,106,98,111,102,101,102,98,100,104,95,117,106,106,109,114,108,75,113,119,102,106,105,110,101,105,105,99,109,100,103,105,107,110,103,88,105,102,101,108,105,107,110,110,93,108,106,95,104,94,115,99,106,86,107,101,111,106,101,105,108,113,100,96,79,117,107,106,96,89,104,125,103,116,107,101,113,114,98,110,113,94,113,104,118,106,97,119,103,111,95,83,82,108,117,107,102,106,97,76,101,98,108,94,104,102,94,113,102,97,92,102,111,119,106,104,112,113,101,112,94,101,94,106,105,101,106,106,93,101,106,105,95,116,104,113,98,131,94,111,112,104,99,104,97,109,103,117,110,102,104,104,108,109,99,100,97,91,96,100,106,106,98,90,104,106,100,106,104,98,96,104,103,108,112,116,97,109,100,103,108,109,97,106,102,105,105,100,104,102,113,112,99,110,112,106,113,113,101,111,109,109,107,100,106,114,102,100,95,105,112,118,96,106,102,100,101,102,109,99,102,103,105,105,95,112,110,104,111,93,107,107,115,101,105,103,110,102,102,111,109,112,102,103,104,108,111,104,110,102,137,112,111,104,107,109,106,104,106,109,96,111,103,115,106,103,99,118,96,100,118,106,105,107,104,108,105,106,103,106,111,101,85,104,111,99,94,105,106,99,108,95,111,111,100,114,105,107,115,109,105,106,108,105,108,110,95,113,106,102,102,108,112,116,103,100,107,106,102,102,103,110,116,99,102,105,110,105,105,107,105,103,107,106,97,113,101,109,115,101,102,103,107,106,109,110,100,116,108,109,108,97,97,109,108,125,97,106,106,105,107,102,114,107,105,99,102,115,103,102,108,99,105,107,106,97,89,102,106,103,120,88,107,99,107,106,103,94,107,109,100,105,106,99,101,105,96,118,111,101,101,109,122,98,109,101,103,100,98,107,104,108,96,106,98,97,110,96,99,102,107,109,103,109,101,101,112,103,111,109,107,121,108,102,99,100,106,114,106,113,107,103,119,113,106,110,114,109,107,105,120,98,100,102,106,103,111,104,95,104,108,98,100,105,98,107,88,108,96,84,109,109,102,104,96,99,113,106,102,106,96,112,83,107,100,102,99,97,100,100,92,95,105,110,120,108,98,102,101,106,102,95,99,105,107,91,113,82,98,103,94,97,102,101,107,103,114,102,96,111,108,116,92,112,102,108,98,106,104,111,100,92,114,102,109,99,99,107,102,98,116,92,121,107,84,97,117,99,95,99,113,107,99,104,105,107,103,105,102,111,107,98,107,100,117,97,103,110,79,103,102,105,113,105,101,106,97,111,103,85,106,102,107,97,104,98,108,98,90,109,113,110,109,98,103,118,98,95,94,98,108,104,98,96,102,106,97,101,98,106,106,98,94,108,95,90,99,90,100,104,101,111,98,109,110,100,107,107,106,100,104,99,99,89,109,106,101,101,105,107,88,106,88,94,112,107,106,111,89,100,108,87,96,98,86,102,93,105,104,106,91,98,105,99,107,77,123,117,104,107,114,116,94,100,92,90,110,98,106,79, +484.28754,96,91,93,87,92,117,97,99,105,103,91,101,88,115,105,85,98,121,107,93,109,111,95,117,119,91,111,105,109,103,93,99,88,100,98,99,101,100,114,107,99,105,106,97,94,104,90,97,97,116,99,110,106,107,101,93,99,98,120,111,114,101,109,87,105,108,74,101,104,100,108,101,105,122,91,103,98,92,104,103,100,82,96,113,107,105,98,100,100,111,109,115,102,96,96,110,102,94,89,97,108,109,91,94,101,103,78,110,97,103,104,103,127,96,94,95,107,116,108,129,99,101,108,108,108,99,104,99,118,110,116,112,106,101,105,113,87,108,114,96,91,113,99,107,102,107,111,100,99,103,111,101,113,101,98,113,104,108,104,102,89,93,106,102,99,107,65,102,95,109,106,102,96,109,109,103,96,92,111,101,101,97,103,112,114,93,95,100,104,103,103,97,102,103,97,114,113,104,105,113,105,94,100,95,102,117,112,99,109,121,104,108,101,102,100,76,105,105,101,101,108,107,106,97,92,103,109,99,111,112,96,100,99,100,110,102,100,106,113,103,105,105,71,102,91,108,99,110,107,112,113,102,122,109,98,112,103,93,108,108,99,111,96,113,95,106,102,89,103,108,105,112,114,102,108,95,91,122,107,109,105,102,99,107,100,109,102,110,104,108,105,103,82,110,110,98,104,108,108,106,100,109,101,118,103,112,106,112,105,114,97,103,104,100,106,98,117,105,108,90,102,101,112,109,113,109,105,100,113,96,105,95,110,120,110,109,111,89,106,94,101,113,104,94,105,127,119,109,112,103,105,106,120,109,105,104,104,99,96,110,111,97,101,104,109,97,94,110,100,106,113,109,100,97,106,108,106,117,111,109,120,103,109,106,96,117,99,103,115,100,129,94,108,106,106,99,113,103,117,105,122,104,103,102,99,96,96,108,101,102,97,94,98,118,107,99,95,99,104,98,108,115,99,103,106,106,97,103,95,109,98,84,112,93,96,98,95,118,96,113,118,103,106,103,102,107,102,105,99,108,98,91,108,107,104,106,99,112,110,88,117,105,113,106,103,108,102,89,93,106,105,105,106,92,92,95,105,109,110,105,103,115,112,105,93,113,112,102,112,110,105,107,99,90,94,119,93,104,107,104,95,107,113,108,110,103,99,81,101,114,116,101,105,95,112,110,120,102,93,96,107,107,102,121,106,103,106,102,110,106,100,114,101,105,112,92,109,98,105,106,105,114,94,114,101,98,105,102,109,104,108,107,105,106,99,103,110,116,113,104,109,101,102,113,102,100,105,100,97,96,109,105,106,101,114,117,104,110,109,113,110,107,102,109,106,108,110,101,104,113,104,104,101,105,109,107,102,108,97,94,105,116,96,107,103,109,112,105,108,98,102,106,99,106,110,103,104,106,122,109,95,101,110,109,119,99,94,108,108,114,103,111,104,102,94,113,101,101,116,97,100,106,99,106,98,94,109,114,109,100,109,111,100,106,108,104,114,110,117,105,107,103,111,118,80,104,106,97,106,110,103,101,105,101,101,109,104,103,101,101,109,104,111,92,101,104,100,105,97,104,104,106,103,117,108,103,99,111,101,95,95,100,110,106,89,116,96,115,113,98,116,108,105,99,90,105,92,99,103,132,103,97,112,108,118,107,103,101,117,102,105,98,106,106,104,111,78,112,96,98,110,93,109,104,89,112,107,99,107,108,101,111,105,112,111,98,102,109,106,100,98,99,92,109,104,99,95,121,106,111,102,106,105,104,104,98,99,100,126,105,108,112,75,102,100,109,109,99,95,100,108,94,98,112,105,113,117,104,95,103,96,110,100,102,108,100,109,84,95,104,115,92,98,106,102,89,105,110,109,101,91,104,100,111,96,109,109,90,113,114,103,110,109,97,105,102,113,104,101,98,102,103,103,104,109,94,101,94,100,103,113,108,103,109,96,109,98,110,92,94,92,100,101,91,99,107,96,104,103,110,115,106,101,99,108,106,107,98,98,103,109,97,111,116,100,112,114,103,116,109,97,114,99,104,102,108,100,110,100,107,139,119,107,111,103,108,94,100,109,106,112,124,111,111,105,111,109,109,106,103,107,105,105,103,102,101,110,98,108,118,113,100,107,126,106,99,105,108,94,110,100,115,111,99,105,104,110,92,104,117,98,89,104,97,99,101,102,107,101,108,96,98,95,116,109,98,109,92,109,98,117,99,102,107,95,93,102,110,93,102,94,108,100,95,94,101,98,141,97,98,101,108,127,100,92,109,101,99,104,99,111,106,103,125,104,103,110,104,101,110,101,109,98,111,105,108,105,100,105,105,114,92,105,92,116,106,113,104,90,98,112,101,110,115,129,104,112,108,112,66,95,99,97,108,95,108,99,115,89,105,91,88,109,100,102,92,95,114,105,105,107,107,103,108,121,103,101,103,114,111,109,110,106,103,99,96,113,106,95,104,78,91,94,111,97,126,106,111,123,108,96,90,100,91,102,108,113,108,100,102,92,94,102,100,99,106,116,95,113,110,102,121,112,104,109,97,87,96,120,103,104,102,98,101,104,100,95,100,108,97,100,118,91,100,104,125,93,118,98,91,111,94,107,104,98,115,101,92,104,103,98,92,104,102,100,105,95,106,106,108,109,100,97,92,105,100,102,102,114,105,103,108,107,109,109,87,106,109,113,100,108,100,95,103,104,106,118,95,106,104,103,104,117,106,96,109,112,95,100,108,117,106,113,101,100,108,100,117,106,93,109,99,110,94,111,102,82,101,94,104,112,102,98,114,102,106,101,99,123,119,101,105,95,112,109,112,101,102,102,117,106,110,107,98,100,105,118,113,102,101,113,118,106,109,92,98,114,109,107,113,112,102,99,111,109,97,98,108,108,95,111,96,96,119,105,72,107,105,101,104,111,88,106,107,114,97,104,109,112,108,103,106,106,100,100,105,102,108,107,106,105,110,110,110,103,99,112,106,102,98,94,105,102,91,109,106,97,108,100,106,107,114,104,93,103,100,109,88,125,103,100,103,99,109,106,100,104,111,106,110,102,106,109,112,107,112,106,98,108,106,97,109,112,114,91,101,113,102,100,104,113,109,112,98,100,95,99,117,103,91,104,120,108,109,102,113,90,114,93,98,112,112,110,101,106,101,102,121,108,109,104,89,108,120,108,105,101,97,108,91,100,107,90,111,140,94,105,101,116,105,102,97,99,100,103,98,113,100,102,106,103,100,108,107,104,102,106,109,97,97,99,103,108,113,100,108,107,102,104,107,107,108,104,104,105,102,100,108,104,111,101,110,110,96,107,104,99,107,105,103,98,108,96,110,101,108,107,103,99,96,104,114,106,99,117,103,101,93,103,115,92,106,106,105,105,103,99,106,108,101,100,96,99,95,108,102,100,97,105,107,90,91,110,106,101,109,103,87,108,103,102,95,115,102,102,97,93,114,100,104,104,109,113,105,90,91,116,100,97,97,106,96,116,109,107,101,81,113,107,92,89,106,97,103,112,117,98,106,107,105,116,113,98,107,100,95,81,104,115,94,90,101,106,103,109,105,106,103,104,109,106,103,112,100,106,98,100,100,95,103,98,98,101,100,102,95,115,98,103,95,99,108,100,109,85,96,118,98,126,101,99,83,112,113,110,79,98,102,109,92,77,98,109,102,102,97,105,110,91,104,113,100,103,109,104,98,106,116,108,95,113,103,105,108,110,93,102,104,99,108,103,91,108,95,104,96,103,106,68,102,99,102,114,99,105,104,105,116,120,103,93,99,112,108,76,83,105,98,111,99,87,108,110,109,113,99,108,99,121,110,92,107,111,102,109,97,98,98,92,107,108,91,108,92,104,111,109,112,103,100,111,78,106,111,105,105,101,91,104,107,94,103,96,103,91,97,105,99,95,99,97,102,118,105,98,102,101,95,99,101,106,98,99,106,120,97,108,101,103,101,112,103,104,109,106,98,90,102,85,106,99,99,97,102,110,109,104,103,100,108,103,113,89,97,96,109,124,99,108,97,110,99,106,107,107,103,107,93,110,122,102,82,111,99,114,108,120,106,104,102,94,106,101,98,98,99,113,106,118,102,95,105,111,120,121,106,104,97,108,120,114,103,97,98,91,109,81,103,95,96,105,97,105,105,105,114,97,99,97,110,97,105,94,106,89,101,97,95,99,113,102,108,102,104,101,109,97,115,102,114,100,110,105,107,100,113,112,104,95,115,108,111,93,110,93,106,113,114,93,99,94,95,113,92,106,105,102,99,100,103,100,86,105,102,90,99,99,98,107,111,98,108,105,107,115,109,105,101,96,105,100,100,105,112,96,104,99,98,101,108,117,109,107,111,98,95,110,101,110,108,106,97,115,115,104,87,106,105,104,94,105,99,99,99,100,105,111,103,97,99,101,97,96,104,101,104,93,105,116,92,120,90,107,102,105,97,98,107,100,106,107,95,104,103,102,101,101,90,122,106,91,99,102,105,96,111,97,120,99,106,107,93,109,100,105,99,100,105,88,91,94,91,107,108,98,95,109,107,103,100,104,98,101,102,104,98,109,100,109,106,97,107,111,106,105,111,104,96,96,93,93,83,99,102,100,104,98,105,102,99,95,94,101,103,92,106,100,108,95,98,104,98,92,113,106,88,122,91,99,104,121,99,105,100,77,89,102,95,105,98,110,91,103,110,102,111,113,102,101,105,109,108,117,93,108,101,91,98,90,104,104,106,120,100,105,117,112,95,99,104,99,93,103,104,100,110,92,103,105,107,102,94,103,86,96,85,115,95,91,94,99,93,115,101,108,100,102,99,94,109,108,94,96,97,104,103,117,87,88,107,96,114,100,118,101,91,99,89,108,100,105,85,103,91,97,89,107,106,106,100,117,95,107,107,103,96,95,96,108,97, +484.4281,116,114,104,92,105,110,109,105,110,112,99,104,111,94,114,105,94,103,109,112,102,104,98,115,109,118,104,115,106,97,108,95,102,105,110,118,128,107,106,106,96,104,112,100,101,87,112,102,116,99,101,98,104,105,111,100,113,103,101,108,106,100,108,106,108,101,101,101,104,108,79,96,106,102,88,111,99,96,104,101,106,104,90,109,114,91,97,111,103,114,95,100,100,106,102,102,103,97,90,110,100,103,105,90,100,99,102,102,100,106,102,109,117,108,109,91,111,84,83,96,119,105,91,105,102,115,116,107,99,110,102,97,96,108,114,105,99,101,98,95,98,107,102,111,106,95,103,109,104,100,104,101,94,96,93,102,120,108,82,129,115,99,112,109,109,111,101,99,117,113,100,106,102,94,108,108,114,97,105,102,102,91,108,104,104,103,98,99,112,78,100,88,110,125,105,100,100,112,114,118,98,101,103,110,110,121,98,101,112,108,103,113,109,108,97,105,90,88,96,112,111,108,114,94,100,118,108,111,134,112,93,107,114,112,104,109,106,107,106,106,96,109,110,97,110,111,105,112,97,110,103,99,108,103,105,112,96,108,107,111,114,92,101,103,94,103,95,101,109,93,112,97,111,104,113,110,107,106,107,98,104,100,107,108,106,105,99,102,100,105,115,110,103,120,121,117,116,97,99,116,110,113,94,114,110,103,106,101,82,112,108,112,104,118,121,115,107,113,89,103,105,94,98,114,113,109,101,105,106,98,94,106,106,109,112,98,99,105,91,105,103,107,115,100,123,100,88,102,116,107,108,110,121,98,105,109,103,111,102,114,124,103,97,89,97,99,103,111,96,104,107,98,97,103,107,118,107,102,112,109,99,99,100,104,101,109,106,104,122,93,106,100,98,107,113,107,103,109,108,116,106,110,99,109,102,89,108,98,97,104,93,104,106,103,109,109,100,100,109,85,100,103,94,108,103,102,107,108,105,98,107,99,102,101,98,108,106,100,108,120,115,103,110,107,104,103,95,109,115,129,104,110,94,112,107,116,102,102,114,123,99,104,103,115,114,103,94,113,104,103,115,78,105,95,106,109,104,118,111,115,103,108,111,108,105,102,112,107,108,96,107,113,94,103,105,109,109,109,119,105,107,99,100,104,109,108,106,99,109,107,113,99,94,84,114,112,107,102,104,90,110,102,102,98,98,104,117,104,110,107,103,107,91,92,94,110,100,100,107,109,106,114,92,97,112,96,103,102,108,109,105,108,126,106,130,111,104,106,109,90,105,112,96,103,103,108,105,113,99,111,88,108,102,105,116,103,97,101,107,105,102,108,118,98,108,103,103,113,103,97,94,107,88,104,109,111,101,108,106,108,103,104,114,100,101,109,101,108,112,106,109,106,80,108,102,100,107,100,114,103,97,109,100,107,94,100,114,98,111,110,103,104,105,99,106,117,108,98,107,111,118,107,99,107,102,92,102,112,97,105,103,104,106,114,105,88,94,111,96,112,103,104,103,109,92,111,106,102,109,104,111,103,101,103,106,105,105,109,102,102,121,100,104,108,101,92,95,96,104,101,107,108,95,125,114,107,108,99,86,101,110,98,103,104,100,102,102,100,102,116,100,100,99,100,98,100,99,102,102,99,107,98,111,107,106,101,102,106,102,118,111,97,100,114,105,107,105,107,112,98,107,94,104,106,115,104,108,117,103,124,104,120,103,111,109,113,104,112,139,119,108,104,93,115,104,107,107,91,107,103,100,108,109,102,105,116,118,110,98,102,111,108,97,106,102,103,93,110,101,111,105,107,116,117,119,102,108,113,113,99,118,106,110,103,113,115,102,113,107,112,112,122,103,116,94,99,96,106,100,98,94,109,109,105,108,100,104,103,106,101,107,104,105,103,110,111,119,112,115,104,108,108,105,105,108,101,101,103,108,100,102,107,91,100,99,122,96,114,107,113,102,116,108,104,105,98,107,107,136,118,92,108,108,120,95,100,98,107,105,103,106,92,104,104,91,108,88,116,105,104,113,119,100,114,97,105,100,103,100,107,114,114,107,95,127,103,102,109,139,103,97,98,107,104,94,100,111,95,101,125,103,107,105,101,117,108,100,115,101,106,110,116,107,107,99,105,97,107,100,102,103,99,114,109,102,109,79,107,106,117,110,114,106,113,111,107,112,102,102,104,102,121,96,100,84,99,114,112,113,113,104,113,104,110,112,101,83,88,100,120,111,107,108,116,112,107,99,102,113,102,112,111,105,107,112,94,98,100,112,102,94,103,114,80,104,114,112,100,98,112,102,108,102,110,109,111,117,96,105,117,104,111,95,83,108,99,105,94,104,79,120,112,111,118,102,94,100,114,98,104,103,112,104,122,100,99,104,102,106,111,112,105,112,99,102,110,117,102,105,109,101,112,111,114,105,103,104,92,107,110,107,111,111,108,117,109,95,100,117,108,99,111,102,94,118,109,104,105,108,105,99,108,91,87,99,113,105,106,115,105,91,99,105,108,96,104,106,113,103,94,116,111,105,124,96,105,97,108,96,113,95,102,105,98,107,105,92,104,110,109,102,113,105,101,103,110,104,101,95,100,115,129,103,109,93,98,104,113,105,109,116,122,140,107,105,100,107,96,97,99,108,98,116,101,102,110,118,92,109,104,102,106,94,112,95,99,98,87,100,114,100,98,96,96,110,104,111,96,109,106,107,95,116,104,99,110,106,107,107,98,101,99,102,102,110,103,98,103,106,98,108,102,100,97,113,105,103,112,95,111,109,117,101,97,117,98,108,100,109,109,106,104,92,111,102,102,106,110,116,98,96,102,104,89,98,102,101,97,99,108,100,111,108,120,110,98,113,97,94,95,102,102,106,109,113,89,96,102,97,107,102,106,112,132,103,107,109,94,96,105,94,103,119,109,107,100,113,104,108,110,109,100,90,93,98,104,103,103,94,107,113,107,116,120,108,92,107,113,101,106,80,99,121,96,104,107,106,114,100,87,75,107,96,106,120,117,103,98,100,109,101,101,106,101,104,106,109,105,100,120,102,113,107,97,107,99,108,90,99,104,98,91,110,108,98,101,113,96,113,101,109,99,113,95,103,106,105,106,92,102,104,106,89,110,93,99,98,101,106,97,106,116,98,108,113,94,107,105,107,106,100,111,104,120,96,110,89,103,107,108,103,91,97,100,112,116,108,114,102,98,112,104,92,104,100,103,102,91,98,101,117,101,90,111,107,101,98,105,102,102,103,107,102,112,117,95,96,102,108,109,90,103,95,97,99,102,103,95,100,102,94,92,100,108,109,102,111,99,106,94,113,76,108,103,109,116,103,105,101,105,105,98,105,91,102,84,98,120,103,92,101,92,102,101,104,106,113,104,107,112,107,106,109,111,100,106,98,103,106,99,99,105,109,94,102,101,105,95,113,103,102,99,107,100,107,106,103,95,109,95,112,107,103,105,87,107,101,101,100,112,112,113,92,104,97,99,103,92,107,105,111,104,95,106,102,98,100,118,98,110,102,93,103,99,104,111,95,110,110,102,100,75,85,110,105,104,91,107,112,103,108,109,105,107,107,108,95,107,108,102,101,111,103,113,101,100,116,110,98,102,111,105,94,99,99,104,111,113,102,99,103,102,97,105,95,108,90,86,116,101,87,90,97,109,130,109,103,97,88,86,142,105,82,88,116,104,95,105,115,105,110,98,102,103,95,96,102,94,113,94,103,97,105,105,109,94,97,100,109,101,95,100,97,98,106,105,90,98,91,103,106,105,96,108,105,103,122,108,91,104,103,110,95,109,101,88,117,95,98,112,99,90,117,99,94,110,106,102,98,110,91,114,115,95,94,90,101,106,107,107,109,90,109,106,92,110,102,103,101,125,97,102,93,96,101,108,97,113,94,94,103,113,98,108,106,100,108,108,101,112,100,98,111,99,112,105,107,99,111,95,107,112,104,114,104,96,116,104,96,99,94,102,106,108,100,102,103,102,101,91,103,106,94,101,96,103,105,78,99,104,111,101,102,109,98,105,111,102,107,99,104,118,103,104,99,104,98,90,113,103,109,97,105,91,92,113,99,96,101,108,101,97,108,97,119,108,102,102,97,118,94,71,103,108,110,116,107,97,103,102,103,93,102,99,106,98,112,107,95,113,110,96,102,110,106,102,106,101,107,109,104,112,101,112,91,103,81,117,90,102,122,109,106,111,103,104,107,104,101,105,104,109,103,104,121,98,110,105,101,106,102,106,110,105,98,104,109,107,102,100,103,100,108,103,117,102,119,89,100,106,107,117,101,76,97,103,97,112,90,97,113,98,108,105,107,92,100,89,110,103,96,99,104,96,106,102,106,106,108,101,110,106,103,104,99,98,105,110,118,98,94,115,101,115,104,101,106,98,104,101,83,106,104,98,106,111,106,100,102,100,106,99,95,102,112,105,98,99,98,110,106,102,105,115,111,95,90,100,116,135,100,103,113,110,132,108,90,100,110,100,105,106,94,105,92,126,104,100,93,103,103,100,103,101,107,103,100,100,109,109,107,106,104,108,109,102,124,102,101,94,93,96,114,102,98,109,98,112,92,95,116,96,96,109,108,99,100,96,109,115,107,111,110,96,104,106,121,99,100,93,110,95,89,103,109,103,96,106,111,101,104,88,104,91,115,102,106,112,99,93,106,104,101,96,115,100,121,99,109,95,110,118,103,94,105,103,103,98,102,94,111,85,109,107,103,105,112,94,103,101,107,104,103,106,92,100,114,93,105,103,123,96,106,102,108,101,109,99,109,100,109,108,108,108,96,96,112,100,103,92,105,114,101,95,90,94,111,99,94,96,84,97,106,98,98,111,92,104,120,96,106,116,100,99,105,96,98,105,106,99,108,89,105,101,101,104,109,105,96,99, +484.56863,93,113,92,104,90,105,111,117,89,99,100,124,106,112,105,103,102,112,109,96,109,99,100,81,101,99,101,104,116,97,105,107,95,111,94,104,84,98,106,95,104,100,102,111,106,94,103,116,104,106,92,94,113,100,95,104,93,95,95,96,78,109,104,95,112,102,102,107,106,101,102,97,105,106,104,101,99,101,105,109,98,102,99,103,91,99,87,102,118,111,111,103,110,109,105,102,113,82,100,101,101,91,81,78,96,104,98,90,101,95,110,116,116,103,97,89,88,105,110,104,101,116,90,101,107,108,81,97,105,94,117,105,98,101,105,108,92,103,106,110,104,104,103,92,102,101,108,114,103,92,104,91,101,100,102,76,91,95,102,91,96,107,102,99,108,104,112,103,96,103,110,110,95,96,93,104,103,98,104,113,109,109,100,101,101,101,100,99,99,101,104,93,106,101,99,106,101,99,103,103,101,105,114,115,94,104,99,103,104,96,114,102,112,114,106,106,116,101,109,105,66,97,101,96,109,99,100,100,112,113,110,99,112,91,102,107,134,94,89,112,108,108,72,101,92,106,100,110,108,89,108,103,94,103,101,103,100,105,94,113,96,96,102,103,96,113,110,103,105,110,109,98,105,114,113,120,100,121,105,108,104,102,108,99,105,99,101,102,113,102,100,107,107,94,103,115,113,102,83,91,104,96,92,110,80,110,99,98,97,110,107,108,101,110,110,107,104,103,106,95,99,96,97,104,92,100,96,102,104,103,88,108,106,110,114,97,113,116,99,83,91,85,98,102,104,99,95,108,95,104,104,114,95,109,103,111,106,109,95,110,104,104,99,94,101,108,101,95,113,109,105,100,130,92,115,95,113,109,100,99,106,105,100,106,94,113,104,107,107,94,109,102,109,111,107,113,100,96,104,111,94,99,100,115,116,98,105,119,99,94,95,102,110,101,97,105,96,91,98,95,99,115,96,99,99,98,116,112,84,108,99,102,106,99,107,110,96,69,101,96,102,69,106,111,141,124,97,108,123,102,106,104,94,115,102,110,100,105,95,102,104,104,111,103,103,110,99,95,101,105,108,101,95,110,103,116,93,121,97,100,117,87,103,105,92,97,103,107,95,99,100,100,88,87,91,95,107,111,97,113,100,97,108,109,81,105,96,103,103,99,114,96,97,112,115,122,106,106,99,94,104,91,110,104,102,96,110,118,102,95,98,93,107,116,101,95,104,102,111,99,108,106,98,111,104,98,100,102,101,114,98,119,101,102,104,97,91,103,99,93,120,104,94,107,105,105,107,107,104,90,105,109,98,103,106,91,98,102,108,97,114,99,101,108,102,122,99,103,86,99,107,118,99,96,115,100,111,99,123,106,100,107,110,100,109,104,98,101,103,107,93,114,104,98,106,107,102,102,110,103,108,100,98,120,108,104,94,105,109,98,112,100,90,99,102,116,116,97,110,103,117,101,108,103,98,110,103,106,109,102,104,107,103,94,106,101,106,107,89,105,97,108,101,107,103,106,110,97,105,110,112,99,99,91,104,105,129,100,100,89,120,81,100,97,100,103,94,92,111,110,106,103,108,120,103,95,96,101,120,100,99,101,109,98,115,97,99,112,101,106,113,86,96,92,102,76,106,104,99,114,105,104,102,114,94,107,100,111,93,102,112,97,110,102,98,104,74,114,99,110,87,101,97,101,104,91,115,104,92,105,101,91,112,98,113,107,126,92,106,102,110,103,102,99,102,119,97,103,115,100,74,114,108,97,110,98,100,95,110,101,102,91,105,102,103,116,108,111,100,106,105,103,114,110,109,92,100,94,100,104,91,102,95,118,113,94,139,102,108,117,100,103,99,102,106,91,104,102,105,72,95,98,118,76,107,109,109,103,109,106,100,90,99,115,104,107,95,121,104,114,102,108,105,113,92,102,99,63,99,108,109,98,109,108,106,92,114,90,98,111,101,103,100,111,108,100,106,102,100,114,105,110,76,112,110,122,104,105,95,109,88,101,109,101,110,107,114,108,106,112,100,113,103,101,105,94,89,103,101,116,92,115,99,100,104,94,106,110,99,111,102,101,105,104,100,77,112,116,105,117,104,111,103,105,107,100,102,113,98,110,101,109,108,121,97,104,99,102,95,115,106,109,96,109,97,102,97,102,95,108,110,108,113,109,109,111,107,96,101,91,106,102,97,107,112,115,92,117,104,95,92,97,106,87,100,100,103,102,88,118,95,110,103,116,98,99,99,104,104,94,113,98,97,106,99,105,92,104,99,103,104,113,96,89,95,109,110,99,97,114,105,117,106,103,112,106,108,93,100,99,98,102,99,109,117,103,119,109,118,99,103,120,115,104,116,87,101,97,109,107,96,92,96,103,107,102,111,107,92,100,100,105,100,98,106,101,101,98,68,111,101,100,109,95,103,97,96,100,101,104,108,102,101,92,109,118,104,106,112,109,100,96,109,97,101,100,106,108,106,111,114,110,110,103,94,95,93,107,110,113,110,97,110,102,108,110,104,100,116,117,98,113,103,106,113,95,107,90,107,100,103,98,105,101,99,106,107,95,99,112,105,95,96,102,92,102,107,96,102,95,116,83,100,118,105,112,96,117,106,104,121,109,121,82,110,107,112,110,118,109,108,86,104,102,88,109,95,105,102,108,105,114,109,112,97,125,105,107,112,120,110,110,107,108,99,106,111,108,121,106,107,121,108,102,110,111,102,96,106,122,102,103,116,105,109,83,116,117,102,114,109,100,99,102,116,105,113,100,106,109,114,109,105,106,102,98,96,107,103,121,103,107,100,98,116,95,99,103,110,109,98,103,104,91,97,100,111,101,110,103,101,104,106,104,113,91,96,108,109,108,85,103,111,112,117,104,109,103,96,92,101,109,97,108,113,105,108,97,96,115,104,109,107,109,108,111,114,101,99,94,112,106,98,93,101,111,106,113,100,105,116,105,110,110,97,87,110,96,103,107,109,108,94,100,105,115,100,110,99,106,128,111,101,107,111,114,101,109,98,97,90,93,108,116,110,106,95,108,92,102,117,91,105,102,104,110,110,102,103,99,107,85,107,113,92,104,98,117,98,106,113,108,114,105,110,103,104,98,104,100,109,100,118,109,102,108,102,103,99,105,111,104,106,108,106,96,109,109,106,97,101,98,92,104,99,116,103,100,103,95,106,101,104,97,102,101,108,103,104,104,91,96,115,107,93,101,105,102,98,114,100,107,87,112,102,94,98,104,111,101,119,112,88,108,102,95,109,109,102,92,105,109,109,98,101,102,98,99,102,96,96,95,103,109,100,126,111,96,107,113,110,115,109,99,88,113,104,100,115,101,95,111,82,105,108,100,112,98,104,104,105,124,98,112,105,93,92,106,99,107,99,101,111,120,95,113,106,99,112,101,105,102,107,114,100,119,109,99,110,111,102,111,104,102,103,108,100,107,83,98,114,116,114,100,111,111,106,121,100,107,106,102,102,104,97,112,107,109,123,101,110,106,103,104,100,106,102,105,105,99,104,108,116,108,102,103,99,106,113,121,102,107,110,104,112,100,99,92,103,112,106,101,102,117,117,98,98,94,106,101,122,109,93,95,102,119,109,94,111,99,99,75,101,100,110,97,114,101,106,108,100,103,111,117,87,106,98,106,105,109,109,101,108,105,107,99,100,102,107,113,113,98,108,109,95,102,109,118,102,100,94,115,107,113,106,96,106,95,101,94,107,106,103,104,87,105,108,111,110,101,112,106,103,104,108,110,108,84,111,111,115,101,102,102,104,99,105,102,93,116,103,106,102,102,105,111,102,107,101,102,106,104,104,103,90,103,79,94,105,105,106,95,98,102,99,108,108,100,116,102,101,96,92,104,116,108,100,115,95,96,108,101,113,112,110,93,113,105,93,108,104,105,91,108,102,118,116,108,107,95,98,98,116,94,103,99,111,107,105,112,99,113,113,112,109,89,109,117,99,110,120,123,107,110,91,104,106,113,106,98,105,81,91,116,101,89,99,104,99,108,110,100,87,101,112,104,97,111,107,115,104,93,96,108,107,114,100,103,114,105,99,107,112,91,102,114,108,98,114,95,103,100,112,110,101,106,95,81,99,103,103,97,108,97,99,96,114,101,104,110,104,96,101,101,105,84,108,103,103,110,104,100,98,95,110,111,104,104,108,105,106,103,95,102,104,101,103,112,102,107,105,96,127,115,113,96,83,105,101,106,111,93,88,103,100,98,109,108,97,88,106,103,104,106,105,103,90,105,86,97,87,104,88,106,105,99,100,106,93,123,109,102,101,105,105,98,101,97,105,99,102,95,109,102,87,99,103,79,100,103,113,96,105,96,99,92,110,107,117,95,110,95,110,101,103,107,91,112,107,102,108,111,104,100,113,105,97,97,106,105,105,103,109,124,104,110,89,111,111,109,108,109,101,98,96,100,101,101,110,106,109,112,94,96,102,104,97,106,110,94,97,92,102,108,117,105,96,99,92,107,127,96,96,98,97,101,110,101,102,99,95,92,100,106,95,104,107,104,115,102,95,102,103,106,109,102,109,106,100,103,104,104,97,98,109,109,110,101,106,88,95,69,114,109,109,103,113,97,106,119,110,124,91,108,100,91,103,115,104,102,106,117,98,105,106,121,112,103,108,102,101,101,96,83,99,107,103,95,74,123,99,81,116,102,103,108,117,94,100,109,107,107,94,95,87,112,110,109,102,94,117,111,102,103,101,108,100,112,81,99,96,104,101,99,114,95,109,112,100,97,117,91,89,105,97,95,112,104,111,105,100,99,113,103,103,95,109,107,83,105,114,106,109,116,118,108,120,103,101,116,105,111,109,97,108,107,96,100,109,107,104,92,103,95,103,102,112,106,109,105,106,95,105,101,116,105,96,105,76,109, +484.7092,106,77,91,86,91,106,99,95,95,102,94,102,82,109,124,104,99,106,100,107,106,110,95,117,104,105,104,101,116,121,112,74,106,97,87,107,115,97,101,99,102,101,96,98,110,98,89,117,90,108,79,101,105,114,100,96,99,100,102,90,113,100,101,105,101,102,96,102,93,107,88,107,92,115,116,108,97,85,101,115,106,100,95,92,109,108,109,102,108,94,104,100,110,104,87,132,105,104,100,99,97,98,98,103,108,104,86,98,105,119,99,107,110,91,96,118,111,101,104,102,89,104,104,102,101,108,105,99,118,103,98,98,102,105,103,100,106,99,96,104,105,121,98,108,110,98,111,105,97,107,97,101,106,102,90,105,98,66,104,97,107,103,106,106,108,108,102,96,109,100,100,91,99,99,91,96,92,98,106,108,105,94,103,91,102,95,99,102,90,114,97,95,110,101,94,96,109,99,105,105,99,94,99,98,84,99,107,97,105,110,93,107,113,109,114,101,103,107,88,108,92,107,94,93,99,109,97,108,99,102,101,110,113,105,113,107,107,111,105,103,111,101,104,99,96,93,112,104,109,100,112,99,94,112,104,91,101,107,95,99,101,88,107,104,81,103,115,99,99,97,108,108,111,104,111,100,122,115,109,90,100,100,97,100,105,97,91,131,110,85,101,114,106,103,108,115,104,117,114,106,99,101,113,97,96,109,114,110,106,107,102,98,103,104,108,108,94,103,90,94,99,109,103,106,98,107,102,93,111,98,103,97,98,95,115,102,104,104,108,95,104,100,81,98,99,114,104,100,110,107,108,91,103,98,111,97,118,85,111,104,104,104,99,98,91,91,102,107,105,114,102,114,96,105,107,114,115,109,107,109,106,106,118,107,98,87,112,109,104,102,106,108,100,113,99,113,96,105,94,114,96,94,80,103,110,100,112,105,104,103,92,95,113,109,104,87,100,94,112,100,95,99,95,105,95,102,98,99,103,90,95,117,96,109,105,92,115,110,101,107,110,106,93,98,107,97,103,100,98,117,105,98,98,110,105,105,103,98,94,98,102,102,92,104,108,103,98,104,110,101,104,109,95,103,108,100,102,112,102,108,104,114,115,87,106,110,100,101,90,97,99,105,100,104,115,106,104,105,111,90,118,106,106,108,115,106,104,102,101,98,109,109,105,107,104,103,107,104,113,95,97,125,105,108,110,103,100,100,91,104,100,102,95,100,100,100,99,95,100,97,93,117,93,93,113,100,100,96,97,119,104,117,105,107,100,91,114,102,84,96,124,109,111,104,96,109,106,117,101,105,103,100,109,103,96,107,107,108,107,106,105,88,108,93,101,101,97,107,102,113,109,106,113,94,101,92,111,107,97,105,96,108,102,110,100,101,88,106,107,93,96,106,112,88,113,104,92,109,107,114,95,99,109,103,71,100,92,105,114,104,113,107,87,106,98,125,101,90,102,105,99,102,105,112,91,98,106,97,98,112,100,110,114,111,100,100,99,111,109,96,117,109,124,101,99,103,113,88,106,97,100,99,109,124,106,110,147,98,113,111,108,102,116,87,93,107,111,104,99,101,105,110,102,104,107,105,111,104,103,97,119,108,106,107,98,108,108,110,95,107,109,109,101,126,106,104,98,101,89,111,104,118,95,107,109,94,102,95,91,112,106,114,94,99,96,104,96,104,106,106,107,113,105,98,118,86,104,101,100,101,112,107,102,97,101,115,101,105,86,100,109,106,97,108,82,95,106,101,105,101,110,100,108,102,95,99,102,97,107,92,117,106,110,115,106,113,112,111,108,110,98,104,106,98,99,90,102,96,112,104,102,100,99,102,96,96,109,103,104,105,100,100,98,107,104,107,100,108,104,113,75,114,93,106,103,99,96,108,101,99,100,94,99,100,102,111,103,99,97,100,100,99,100,122,107,110,108,102,94,97,107,102,108,106,102,96,98,112,103,105,100,100,102,111,89,106,101,107,117,125,114,111,98,108,99,106,110,103,103,101,106,95,94,118,113,96,93,103,99,99,101,109,106,117,101,104,96,104,109,106,99,100,114,109,89,85,106,117,110,109,96,114,104,109,118,89,104,120,102,101,94,95,105,99,100,121,99,101,101,92,100,113,110,91,98,97,88,102,77,99,103,104,97,111,108,97,103,106,104,113,114,104,107,107,113,117,94,110,100,100,88,112,114,100,102,88,108,103,113,100,109,103,106,103,110,100,104,94,102,109,98,104,100,97,100,104,109,111,102,98,104,104,98,93,104,107,90,93,116,96,106,95,102,94,107,103,112,112,111,103,101,101,101,108,71,99,112,98,97,106,116,110,101,106,95,112,99,92,100,110,118,86,112,83,99,110,100,102,99,106,114,103,98,109,101,108,102,108,102,96,99,102,103,106,97,98,100,102,107,102,103,104,100,100,112,103,98,98,114,91,97,107,98,99,104,117,101,95,101,96,97,98,114,98,121,97,100,95,112,87,105,105,102,101,104,112,102,113,121,108,103,92,102,99,88,110,100,101,95,99,101,109,112,105,111,95,100,100,107,111,108,94,119,100,111,103,97,102,98,101,106,106,100,95,100,105,109,104,109,112,106,92,101,116,86,106,111,100,105,95,118,94,107,99,102,99,91,106,107,110,113,102,109,102,107,100,101,91,102,106,106,104,108,110,104,106,91,101,107,110,92,102,104,107,108,112,106,103,98,95,113,116,110,94,112,112,102,94,96,98,115,108,116,113,97,95,99,113,115,109,113,112,97,108,102,103,116,114,98,97,93,107,105,85,100,113,91,99,113,113,88,100,98,102,130,81,108,100,107,108,105,101,103,97,104,109,95,109,104,106,98,104,96,99,107,100,105,105,96,117,119,84,99,117,98,106,102,102,101,106,107,95,91,102,99,93,107,111,116,111,92,105,118,109,105,109,101,102,106,109,108,106,104,110,94,106,96,98,112,110,105,111,107,112,94,110,97,114,106,105,111,100,111,101,112,102,113,98,108,102,105,107,113,98,99,92,114,105,104,88,97,99,100,84,100,99,101,94,101,103,104,99,109,109,104,97,93,116,105,111,104,99,99,105,90,99,94,94,97,101,98,103,108,102,112,100,108,100,100,101,98,99,121,108,100,99,104,104,104,104,102,106,102,103,105,105,108,102,100,107,104,108,105,93,95,103,76,97,100,112,90,105,99,91,84,94,99,109,108,99,99,93,100,110,97,102,111,115,104,107,102,113,101,103,102,93,109,102,108,99,99,116,105,111,107,104,99,98,99,106,108,93,102,114,99,96,104,101,98,89,107,100,108,119,117,119,105,101,100,91,112,102,103,97,122,117,99,99,100,93,74,105,105,98,104,109,108,97,110,109,100,106,100,90,73,112,101,104,104,108,89,102,95,117,104,82,95,105,103,115,90,99,123,95,101,102,105,107,109,96,87,101,106,96,106,109,119,105,101,93,109,110,102,90,103,113,105,109,103,107,103,99,113,111,109,101,103,100,99,116,100,97,119,97,91,101,109,98,112,112,112,99,108,108,88,107,103,108,103,97,101,100,109,103,113,103,108,101,106,97,104,93,100,109,108,107,109,72,97,100,105,108,96,109,94,106,111,99,105,87,99,112,123,100,105,99,112,107,96,106,99,94,116,112,92,98,100,110,104,109,101,109,103,116,99,103,101,95,106,97,105,105,103,111,95,99,109,112,125,99,108,112,107,111,78,100,111,105,103,88,113,96,108,100,99,104,108,104,103,120,113,112,105,98,108,105,104,102,109,95,107,94,89,107,98,110,88,92,108,101,86,104,100,103,101,111,93,104,108,104,106,112,115,107,112,102,109,90,105,107,103,117,104,99,102,111,97,105,102,95,113,111,91,106,73,109,96,91,110,98,109,113,111,106,101,83,104,98,91,102,103,99,107,102,97,81,109,96,99,93,100,96,99,102,103,97,108,109,94,103,96,122,102,116,109,107,101,109,92,97,98,104,95,105,111,110,108,102,110,101,100,104,100,95,106,101,112,91,102,95,106,97,89,98,100,111,106,98,102,101,98,103,95,101,107,113,112,102,92,103,110,106,103,105,94,99,99,111,102,105,103,110,94,87,102,105,114,91,109,92,111,105,101,109,100,100,113,101,106,107,93,89,92,98,113,117,107,129,103,109,112,96,95,95,106,99,95,109,113,109,106,102,67,107,90,117,110,111,110,112,99,96,110,105,96,106,109,96,102,92,103,103,110,101,93,113,97,114,105,107,100,103,103,105,106,106,104,109,107,99,108,102,102,98,105,106,98,96,98,105,96,101,104,98,112,110,95,114,105,112,113,101,102,100,109,110,100,103,107,84,113,104,101,100,101,108,106,103,101,109,102,113,101,118,113,100,106,110,111,105,111,110,83,119,103,91,94,101,101,105,93,98,103,105,95,104,94,87,110,91,120,98,92,109,101,97,92,103,103,103,106,105,100,113,98,110,97,115,102,101,98,103,118,107,113,100,92,105,100,110,90,88,100,118,110,92,123,107,103,90,95,100,101,109,98,97,111,95,95,103,102,101,94,91,98,92,92,103,101,111,105,98,116,100,111,105,109,108,104,94,95,97,100,100,115,106,101,97,116,100,102,107,99,97,106,128,86,96,105,104,110,119,98,88,106,106,93,109,107,95,102,97,109,109,92,100,100,98,103,71,96,96,116,110,99,99,93,112,100,103,111,105,93,96,102,101,95,96,101,101,110,96,97,97,104,97,116,110,109,103,125,111,94,96,105,115,100,100,105,105,105,96,102,97,105,98,103,98,114,106,108,93,97,103,97,102,112,82,103,92,108,95,89,93,104,95,108,98,93,93,97,76,103,109,93,101,95,107,103,94,100,101,116,99,106,106,89,103,100,92,104,90,99,114,103,94,93,104,105,107, +484.84976,114,99,104,103,112,97,109,115,97,112,100,97,107,101,91,97,98,108,106,84,102,100,102,98,110,101,108,91,125,105,88,97,86,94,121,109,108,100,99,106,103,113,107,104,108,110,106,121,95,93,113,108,110,102,98,103,107,102,96,87,106,103,110,99,112,107,106,107,104,90,110,108,106,104,82,107,100,106,103,117,100,110,112,109,107,102,103,106,94,99,106,92,103,113,106,99,104,104,106,107,109,111,110,100,98,107,107,102,102,93,103,108,109,99,109,108,100,99,110,90,97,101,101,110,97,112,107,106,104,103,111,104,100,100,102,113,117,103,111,100,101,102,116,91,99,105,112,104,94,110,102,97,113,93,100,109,104,101,102,104,93,105,99,101,90,111,103,104,85,94,99,103,94,93,107,101,98,104,102,112,109,114,103,109,116,87,99,98,116,88,95,105,97,104,90,99,113,109,98,115,91,94,107,107,95,99,109,98,120,106,104,107,117,109,102,91,103,99,102,102,117,104,100,95,103,100,96,107,110,120,107,87,112,109,105,106,100,98,104,112,116,104,109,105,114,98,111,119,90,100,84,105,98,101,106,121,101,113,88,110,99,97,96,105,108,105,114,100,107,90,87,104,108,100,113,100,113,106,116,105,107,107,103,118,103,108,95,107,95,87,99,108,110,113,115,100,101,106,108,108,96,105,110,108,102,98,107,107,113,104,96,119,105,106,86,107,116,101,107,101,96,117,99,106,91,108,100,96,107,100,113,104,105,107,103,101,94,109,100,108,109,105,95,116,101,100,102,119,128,101,99,114,104,106,97,99,108,97,102,111,102,113,109,99,104,99,94,110,78,112,107,80,123,103,101,109,116,92,100,105,111,105,101,114,102,108,94,109,109,111,109,101,97,116,108,98,112,98,104,100,99,110,96,123,100,101,113,108,109,106,93,105,104,108,99,109,101,106,107,107,100,97,98,109,99,98,100,104,104,104,105,113,94,100,99,110,111,117,100,107,112,109,110,100,106,123,108,94,113,104,109,96,104,95,92,101,111,108,99,95,102,109,96,99,109,110,99,102,105,109,106,113,101,105,103,96,84,114,94,106,98,110,119,107,100,113,108,106,105,114,117,106,103,106,96,101,101,115,100,113,114,104,105,106,109,111,100,106,103,112,121,117,109,108,102,109,105,106,109,102,99,113,120,114,99,109,101,112,103,103,108,107,117,107,102,107,101,106,101,115,101,112,95,113,113,99,98,109,94,104,121,98,107,104,110,121,98,106,101,98,108,98,98,105,98,108,103,88,99,102,104,111,102,108,99,94,114,102,103,102,99,109,112,103,108,111,106,108,111,106,106,104,114,95,113,99,95,96,102,112,102,103,109,110,108,98,117,105,105,114,116,110,102,105,109,97,107,110,107,103,106,106,110,109,116,109,101,138,112,110,101,126,120,113,86,108,102,98,109,104,107,107,103,103,105,110,108,96,111,112,101,108,106,98,112,101,111,108,106,90,109,110,112,113,100,109,109,87,110,103,118,115,103,104,111,110,111,106,108,95,113,102,116,114,111,121,109,120,90,104,107,111,100,109,121,110,110,104,109,102,103,108,95,111,108,110,87,110,105,112,121,103,103,108,111,94,107,105,105,102,115,113,110,105,97,112,103,100,103,117,112,106,98,95,96,132,96,96,105,96,107,91,101,126,114,128,101,96,103,111,115,109,115,106,117,94,125,109,88,108,106,103,92,105,108,101,100,105,103,97,107,120,110,94,91,97,96,97,102,99,98,117,109,100,121,113,113,113,123,111,105,114,110,110,104,116,111,109,104,99,106,98,114,101,101,112,110,106,104,102,108,106,105,101,120,104,119,103,111,106,96,115,105,102,111,112,119,108,114,97,102,106,98,120,111,105,104,99,99,105,100,103,108,108,103,104,101,112,97,85,117,109,107,93,99,100,91,104,107,112,105,103,106,97,104,111,102,107,105,102,99,115,105,109,103,116,119,97,110,106,113,123,106,99,103,95,93,115,100,113,108,105,115,115,107,76,114,107,106,106,110,113,114,105,116,108,104,87,99,115,104,95,111,110,117,112,89,114,98,112,109,103,107,107,94,97,106,110,107,106,99,121,110,108,99,95,126,107,110,116,118,111,98,97,100,86,116,118,107,97,86,106,107,114,117,113,95,96,112,120,114,106,107,106,102,112,98,99,103,116,100,103,120,104,91,109,116,110,101,94,101,112,95,109,105,101,103,106,103,101,107,93,109,106,91,92,113,116,90,109,99,109,99,92,105,100,99,111,100,104,96,109,98,101,109,104,104,98,107,100,107,102,104,102,117,99,92,98,113,117,109,110,100,109,104,96,85,103,106,107,108,110,101,95,106,79,106,106,104,109,100,105,111,107,105,103,103,117,91,104,111,101,108,94,109,99,113,115,104,107,134,104,99,107,100,106,103,116,103,108,103,103,94,95,106,102,99,111,102,110,134,105,110,139,116,111,104,99,115,113,93,109,121,97,100,110,103,93,109,99,99,98,103,97,102,86,99,116,92,99,113,111,97,91,113,109,107,114,104,105,110,107,99,102,93,108,95,103,96,97,100,105,120,100,97,94,108,101,112,90,111,98,113,104,106,109,106,98,92,98,102,94,106,93,103,106,97,105,113,108,110,114,109,105,105,98,105,106,107,106,99,97,104,110,105,111,111,109,96,125,95,103,90,113,99,111,97,98,102,120,98,103,102,104,112,111,115,99,108,86,105,105,101,104,100,120,108,104,104,87,94,98,97,119,96,113,99,105,113,108,115,107,99,107,104,107,100,106,104,107,106,105,101,93,78,113,110,110,115,100,98,117,109,98,111,98,112,100,110,113,103,104,111,111,93,103,109,84,103,99,109,102,86,105,113,106,110,109,99,112,103,102,106,103,99,101,102,101,108,112,103,108,115,95,103,129,102,102,110,109,108,108,97,108,92,98,123,105,110,105,101,102,105,97,106,112,95,113,102,108,102,107,91,95,106,107,104,100,110,95,106,94,112,105,115,106,106,95,116,111,104,117,110,95,107,104,110,92,111,119,110,103,101,104,103,94,105,110,102,105,96,114,107,96,111,108,95,107,113,98,107,103,88,110,112,101,101,101,105,101,103,103,105,99,121,102,110,103,112,73,97,90,98,104,109,81,78,104,115,106,110,113,93,98,103,98,111,115,107,95,105,108,107,98,104,100,103,114,106,119,96,106,91,100,115,105,114,107,110,103,107,92,93,103,105,116,103,108,103,106,102,102,108,99,100,108,93,98,108,112,100,104,113,115,106,118,95,100,99,111,110,103,107,104,99,108,102,104,103,95,93,98,84,104,105,102,110,94,110,102,100,127,100,100,94,105,101,99,99,100,110,100,91,111,98,112,110,110,108,102,107,109,102,99,104,102,112,110,105,108,99,89,104,93,107,96,109,94,96,105,96,99,98,100,107,111,100,105,111,93,102,104,92,103,101,98,113,106,115,104,109,102,113,96,115,108,106,114,108,108,103,111,112,107,98,101,111,103,106,110,102,101,107,102,107,127,100,104,107,119,112,106,109,109,102,108,106,117,106,112,119,69,113,106,82,119,101,107,120,103,103,108,101,108,105,106,104,81,92,100,92,102,102,107,107,110,104,117,110,101,102,107,92,93,94,103,100,109,96,99,99,103,103,105,86,106,102,103,115,97,110,98,100,113,102,106,102,105,96,101,94,103,109,92,119,105,111,100,111,102,104,97,113,104,103,97,107,93,106,105,110,94,90,94,106,102,93,96,94,106,105,104,113,105,104,98,108,100,106,97,106,101,109,94,110,112,103,90,98,109,96,104,101,101,97,100,98,106,117,104,101,100,106,114,100,106,95,102,91,83,98,102,98,98,101,112,105,108,105,109,98,107,110,100,106,105,103,86,119,106,99,93,101,103,109,110,93,95,113,105,113,107,92,107,109,94,101,102,88,91,101,101,103,108,100,105,104,108,103,112,99,100,96,119,103,106,103,110,98,103,113,106,100,120,108,109,105,105,110,104,102,105,92,106,88,113,100,102,111,110,106,105,105,98,94,111,98,105,109,113,106,100,106,110,102,102,100,124,106,104,108,99,110,113,108,102,126,94,97,91,101,97,98,87,108,100,109,97,111,96,99,111,106,103,97,97,110,94,95,92,117,100,100,101,110,106,104,103,100,105,121,103,93,98,107,113,95,98,109,101,109,95,98,87,104,103,79,111,98,105,103,102,109,86,108,103,99,104,113,90,109,98,119,108,106,108,107,101,96,102,97,99,100,127,100,112,103,110,92,108,99,106,105,101,100,105,101,99,105,121,116,102,101,100,97,109,98,98,116,99,105,101,112,117,95,96,121,93,105,104,110,107,96,108,105,109,107,102,105,105,92,100,103,99,102,104,98,93,106,103,110,110,107,106,106,96,91,110,102,105,106,103,97,106,103,101,97,112,113,104,100,92,106,99,118,90,103,102,100,107,100,100,107,110,100,110,102,100,104,93,99,113,100,100,112,105,99,110,92,99,100,112,99,98,102,98,101,103,116,113,100,99,104,105,105,77,101,105,105,102,113,99,105,89,107,87,92,89,104,113,102,104,109,112,98,116,101,101,100,109,98,98,113,110,82,93,110,105,116,92,109,93,105,108,102,104,100,98,97,101,100,90,104,92,104,98,113,104,102,89,105,114,102,84,100,101,101,97,95,94,95,101,108,110,109,105,98,95,98,103,87,93,101,102,106,104,115,111,91,101,94,108,100,92,112,107,103,82,121,108,114,90,105,95,106,101,93,95,99,108,99,97,84,95,103,96,104,108,99,87,100,104,104,110,92,114,98,85,107,104,100,110,95,111,86,100,86,106,100,111,106,94,105,109,109,104,108,107,97,111, +484.99033,105,100,100,91,99,89,105,85,116,102,110,101,101,99,99,93,100,109,101,104,110,118,104,93,101,107,105,100,118,108,95,107,114,100,105,101,104,101,95,108,101,105,102,102,94,98,104,108,99,110,84,80,97,102,91,91,109,109,103,99,96,102,96,92,97,97,101,109,97,124,99,108,97,84,111,107,96,93,105,95,110,103,96,110,100,107,111,98,105,99,95,93,135,86,88,103,108,89,105,97,123,111,114,103,109,98,103,106,108,117,101,100,89,113,106,109,104,108,107,90,112,110,98,113,104,111,108,103,114,117,99,78,94,105,105,110,99,104,106,121,99,101,98,110,91,99,104,100,97,108,97,91,102,91,98,100,102,111,109,97,105,101,101,93,109,109,101,95,100,99,98,101,99,104,93,102,101,98,102,103,112,98,112,100,94,91,108,94,106,107,116,104,113,105,102,94,97,100,109,108,101,102,97,103,98,112,116,104,113,115,96,104,107,109,98,99,101,105,97,97,98,99,106,107,104,104,109,98,84,102,99,103,96,108,100,115,104,113,101,95,88,96,102,97,103,96,105,106,91,105,101,100,106,110,95,107,103,104,100,96,100,98,91,94,100,109,103,99,100,104,90,106,99,93,100,109,105,111,97,97,98,106,103,95,104,103,104,96,107,99,100,102,102,107,98,91,110,103,106,110,96,99,107,109,99,116,103,111,113,100,98,119,108,103,97,94,106,105,109,99,96,104,92,98,103,103,106,105,113,106,96,104,99,109,120,111,101,101,107,104,94,91,92,106,85,102,103,98,94,108,102,84,103,98,101,83,114,113,121,105,91,90,105,101,91,100,90,111,97,90,95,94,121,96,92,105,103,109,95,99,105,109,105,112,98,103,91,107,87,99,101,94,82,113,104,92,98,100,94,106,106,103,107,93,102,110,98,113,102,96,102,100,107,100,114,120,106,98,106,94,108,100,100,103,89,102,106,107,100,102,96,107,101,96,107,93,96,99,100,97,98,91,100,98,95,107,101,107,106,120,101,109,106,123,104,96,100,102,106,103,106,99,101,103,106,103,99,107,102,95,99,104,104,92,102,103,98,109,110,104,101,98,108,105,106,98,111,100,101,108,105,108,105,97,84,105,110,99,104,87,122,71,101,111,92,103,105,102,104,90,99,99,100,103,105,97,100,99,101,101,100,103,96,109,105,97,114,103,109,110,95,101,112,106,99,106,104,104,106,119,96,109,104,101,112,98,99,102,104,116,107,97,103,108,103,76,90,106,102,91,109,104,88,98,111,80,90,101,108,105,100,117,105,99,102,120,96,97,104,102,108,98,101,107,109,84,104,107,109,97,103,106,117,99,99,102,109,108,85,97,107,111,95,94,107,109,110,101,100,96,98,105,103,111,95,98,106,95,109,109,103,100,97,105,95,114,94,105,102,99,104,112,99,99,94,110,100,106,109,104,112,109,83,109,96,98,102,116,115,97,83,106,98,101,97,102,104,88,96,77,112,105,107,84,92,105,104,106,90,97,109,100,96,101,95,114,105,110,109,125,106,110,105,112,100,108,101,103,79,108,103,95,98,106,108,97,108,107,104,100,104,93,109,101,106,103,106,102,100,96,100,113,104,94,95,97,101,107,99,75,102,109,100,109,96,102,105,104,105,106,105,102,102,89,93,111,101,105,107,102,104,100,112,102,106,98,106,105,102,104,110,97,109,113,109,97,99,100,102,107,111,113,107,110,94,96,94,99,107,100,115,103,91,102,104,108,106,112,121,98,105,111,122,103,105,111,87,105,98,115,113,101,110,106,107,114,107,98,99,106,102,101,95,103,110,97,97,100,99,100,109,105,111,100,113,95,106,110,98,104,97,91,104,102,109,108,97,103,104,107,105,99,100,113,107,100,95,104,81,110,103,104,99,102,101,102,106,86,101,107,108,97,102,113,109,99,109,95,105,97,106,106,90,97,97,101,120,96,99,92,115,92,103,98,103,110,106,101,111,104,109,105,106,105,91,102,100,115,87,104,100,91,93,112,109,105,98,102,112,114,104,99,102,96,117,100,110,103,103,103,99,105,90,113,105,112,98,106,98,109,109,92,108,101,109,100,104,97,112,93,101,107,98,109,99,99,103,101,100,115,103,106,105,100,99,101,99,102,98,103,97,113,112,95,112,111,113,106,107,99,109,99,102,97,102,111,101,100,104,103,92,89,111,95,113,114,99,95,91,105,101,103,98,103,106,94,103,97,95,97,118,109,105,100,102,108,95,96,117,97,125,101,101,102,104,107,99,102,96,93,93,120,97,102,96,104,97,106,100,102,110,106,100,98,113,106,103,99,115,105,121,102,115,93,100,82,94,109,112,103,101,100,97,99,101,106,99,91,102,106,91,99,101,94,100,107,94,103,104,102,97,102,103,105,89,105,109,83,106,92,101,96,95,100,111,112,104,104,95,105,104,113,103,103,107,119,102,103,111,99,113,112,110,101,98,98,115,101,98,98,101,98,107,123,120,113,110,108,120,101,104,116,98,96,104,104,102,116,101,114,99,105,110,98,108,96,107,110,87,115,94,106,106,84,109,105,105,106,104,110,83,106,100,108,113,102,109,106,108,92,107,102,112,99,104,104,110,98,97,106,90,102,113,101,116,109,97,100,107,95,106,113,90,96,107,107,119,99,105,110,106,99,102,116,107,103,115,108,109,92,100,110,107,109,100,103,114,91,101,107,117,102,100,112,99,111,111,109,94,105,101,114,99,107,90,116,115,87,110,108,95,105,108,102,110,106,103,108,113,100,97,90,99,84,112,106,106,103,106,106,111,109,105,100,105,98,111,115,106,95,102,94,110,105,108,106,112,101,99,117,113,101,104,109,106,101,105,106,108,99,108,100,100,103,105,107,100,101,99,105,108,108,114,100,112,112,96,113,98,101,94,115,95,122,109,106,109,109,104,99,112,116,101,107,117,98,111,96,109,97,105,103,113,100,99,103,105,101,107,113,112,120,105,102,107,101,114,104,107,106,104,103,102,101,106,112,108,110,99,108,95,93,112,104,103,92,107,110,105,113,98,116,97,120,109,104,109,121,96,108,106,84,95,99,94,117,121,110,99,93,109,105,101,109,113,101,83,102,107,99,105,87,113,96,97,96,106,110,109,100,99,110,105,103,107,112,131,103,118,107,114,101,103,118,104,112,104,98,106,93,88,112,94,106,92,102,108,105,103,108,110,110,91,104,99,94,89,90,115,113,99,107,111,116,100,105,96,109,105,117,103,111,110,100,107,113,99,97,106,111,115,105,103,106,106,112,112,97,94,103,111,113,111,111,88,109,107,108,125,107,104,108,104,109,103,108,99,101,102,101,114,103,109,90,105,121,95,98,90,99,99,103,68,105,101,116,107,100,104,109,98,99,105,100,101,95,104,105,113,102,103,104,95,98,99,105,106,100,96,108,111,92,88,102,107,102,96,112,109,109,81,104,113,104,112,101,105,118,107,107,102,103,110,111,104,104,108,97,103,96,106,113,95,117,90,117,108,106,131,111,104,102,109,105,112,119,99,104,92,111,110,96,106,81,115,109,113,93,100,106,109,106,102,109,95,106,101,108,108,100,100,104,95,113,97,93,107,105,110,125,92,110,107,102,98,110,99,121,117,104,96,105,96,126,108,104,104,115,103,93,93,108,119,101,116,104,78,102,110,100,113,95,100,108,115,105,100,124,100,98,101,112,106,87,101,98,106,115,112,101,109,110,113,106,99,105,98,114,108,99,96,105,98,97,109,102,98,109,104,131,100,95,99,119,100,108,111,99,99,90,106,95,98,109,104,99,105,94,112,108,100,113,107,108,99,108,104,103,102,95,105,108,95,98,118,96,98,92,96,95,105,98,108,99,108,114,103,112,100,101,115,96,100,113,108,98,93,102,115,110,106,105,112,109,96,107,117,108,105,92,101,111,97,112,108,120,99,113,110,111,110,102,100,112,101,100,99,114,100,104,114,106,107,103,110,85,103,106,109,97,105,96,107,114,109,88,84,113,99,112,107,116,88,101,100,110,102,95,109,105,99,98,105,108,94,103,100,109,105,113,109,110,106,106,98,120,104,111,104,101,101,105,101,104,95,109,113,109,96,109,103,95,105,102,93,102,104,106,104,108,99,106,100,93,105,96,110,107,105,105,109,102,110,107,115,110,94,108,107,110,115,105,121,100,106,102,105,113,95,106,115,109,106,114,96,113,107,115,112,93,110,85,115,113,110,105,83,108,108,100,107,98,117,98,100,106,93,110,105,105,105,108,103,108,106,107,87,99,109,103,113,108,113,121,105,102,105,112,105,116,105,99,99,97,108,98,109,109,120,100,95,105,108,120,99,98,101,99,86,101,94,106,106,109,97,108,95,112,104,101,91,107,122,105,115,103,98,91,122,100,108,106,102,96,99,96,109,105,113,105,105,112,106,97,99,91,108,109,97,103,98,100,99,109,101,95,112,96,113,108,94,85,98,104,107,98,97,97,108,96,97,90,109,96,91,104,105,99,104,101,94,116,109,96,102,101,102,103,103,120,132,106,103,98,110,112,92,102,95,117,101,104,106,105,104,107,109,97,99,110,102,101,112,111,112,112,90,105,103,114,102,98,90,93,114,107,112,109,112,99,105,96,101,105,94,95,109,125,105,108,102,112,103,111,95,81,107,100,95,118,108,104,106,98,110,111,107,117,97,101,100,102,96,103,117,87,80,99,109,107,91,102,104,101,108,109,94,106,89,100,96,97,105,95,107,95,101,98,116,110,111,95,99,101,99,103,96,120,101,113,102,99,95,108,103,104,103,106,104,66,106,100,105,108,95,100,112,106,100,101,102,100,120,97,101,106,91,109,118,97,87,116,107,103,96,94,119,105,100,98, +485.13086,92,99,91,77,96,108,97,95,79,100,91,101,105,95,104,102,108,110,97,113,101,94,99,96,105,101,96,109,109,105,99,105,92,105,110,95,108,95,110,93,91,83,107,100,101,101,104,102,96,104,102,97,106,103,99,94,101,99,110,95,108,112,110,86,105,105,93,102,90,96,101,94,91,109,84,97,90,108,98,102,112,104,94,94,97,104,104,98,101,105,126,104,96,100,96,102,92,112,105,112,121,106,99,83,105,95,97,106,88,106,103,113,102,105,95,94,100,100,104,119,110,99,105,123,99,107,98,110,96,96,105,98,92,90,106,91,90,108,108,91,98,106,99,98,97,95,110,101,98,91,108,107,108,100,89,99,105,105,100,115,109,107,99,98,102,106,106,104,114,95,105,100,106,108,89,99,112,97,115,109,86,93,93,102,99,102,93,90,86,87,98,101,101,108,105,96,103,110,110,108,108,92,94,97,101,99,85,106,93,103,106,102,119,99,110,110,106,100,99,71,98,109,110,104,115,100,118,112,93,106,91,100,100,105,123,107,110,115,107,103,103,106,102,99,97,99,102,95,101,99,106,94,105,105,101,101,96,96,98,97,94,114,101,104,107,99,121,99,110,106,107,104,93,101,106,100,99,107,106,105,100,92,105,98,109,102,100,98,101,107,98,103,87,94,110,105,107,101,95,103,103,105,99,107,95,107,97,99,96,96,96,106,83,113,100,103,109,108,115,91,106,96,102,90,108,96,107,93,117,112,120,101,110,105,99,115,88,102,101,97,111,101,97,83,104,110,108,97,104,100,119,109,97,103,89,98,101,102,106,111,100,105,87,95,106,113,98,100,90,112,109,102,99,108,109,109,115,92,95,107,107,106,93,112,99,104,98,104,112,94,116,99,101,100,112,110,100,123,125,124,98,110,107,102,97,101,106,114,111,96,92,102,113,108,89,99,102,95,108,104,109,95,102,98,99,104,103,102,103,100,92,100,108,98,95,95,91,103,89,115,108,98,105,114,107,120,99,97,94,113,107,119,107,110,107,97,102,106,99,119,98,83,108,106,107,117,110,110,103,98,101,109,98,108,91,96,106,112,104,106,112,100,105,106,101,103,106,108,100,105,118,107,100,113,101,106,84,112,93,101,112,105,109,127,102,96,113,103,106,116,108,108,109,123,113,100,106,91,99,98,100,99,107,104,102,108,108,101,110,107,94,112,99,104,98,109,103,102,100,112,102,104,99,94,103,103,104,101,83,113,100,118,95,113,108,92,113,111,111,101,96,99,97,108,97,103,94,97,91,93,103,95,103,94,116,109,108,102,99,102,118,97,108,102,103,110,106,116,104,97,95,105,97,99,122,110,105,105,107,97,103,97,109,97,98,91,106,103,90,109,104,98,99,110,88,106,110,101,110,102,101,114,104,112,101,104,84,113,104,107,105,100,109,103,89,107,94,89,101,109,96,119,99,106,99,80,113,98,108,105,86,116,99,102,103,92,100,103,102,115,112,108,108,106,96,100,101,87,100,106,108,103,98,105,96,102,102,93,112,93,103,107,105,95,101,109,93,93,100,102,110,105,102,95,106,110,103,105,107,105,103,85,95,104,100,111,97,100,109,106,105,103,104,99,99,109,101,103,104,97,94,100,96,107,101,101,105,111,104,114,102,100,107,101,95,89,111,102,108,108,107,102,106,89,107,97,99,104,107,112,97,101,107,97,106,118,93,97,101,99,105,88,98,101,95,112,93,92,104,102,92,125,98,107,109,102,110,112,106,90,99,131,113,111,112,114,113,107,117,117,108,110,108,98,100,122,118,100,105,100,105,90,106,102,99,110,116,107,97,98,108,98,93,96,116,93,105,96,98,106,111,112,106,117,105,97,111,104,108,103,104,98,110,102,96,105,111,105,106,113,101,107,118,97,108,100,98,87,105,113,100,101,96,100,101,108,112,108,130,95,107,105,92,106,124,97,106,122,107,103,101,105,103,98,93,99,115,112,109,105,120,113,100,112,111,100,111,106,84,109,77,103,107,108,106,93,108,109,103,91,104,110,112,95,108,109,96,104,105,111,86,104,109,115,114,97,97,104,103,109,101,106,102,104,111,104,100,108,92,97,106,105,100,106,104,107,110,103,102,104,100,102,111,109,103,111,110,95,99,121,106,113,107,104,95,106,95,111,104,106,114,108,96,117,100,113,95,107,118,100,90,105,106,104,112,98,109,94,103,106,102,103,104,97,102,106,100,99,113,96,103,102,107,93,100,97,101,105,96,110,107,92,103,100,88,107,99,99,100,105,99,99,104,113,102,112,91,111,98,115,110,105,109,108,105,101,98,102,101,95,109,113,106,102,100,100,102,111,99,108,105,84,107,118,103,109,101,102,99,90,93,95,109,90,92,96,109,109,108,102,96,98,109,99,94,99,98,96,107,109,97,107,105,97,110,100,98,103,108,107,94,103,113,113,108,113,99,91,96,112,111,108,117,92,103,104,115,111,104,94,119,77,101,104,96,103,104,121,88,91,100,120,109,106,108,108,104,99,64,99,110,102,106,105,96,100,105,97,96,112,103,99,104,90,96,96,97,113,112,98,99,98,104,105,95,101,121,112,116,107,114,98,98,104,105,109,104,106,102,108,102,94,103,88,101,106,102,102,103,102,108,100,103,113,97,97,112,100,90,108,104,101,88,108,113,96,107,107,94,109,94,97,112,109,84,100,117,104,78,101,88,110,104,98,117,93,104,107,105,111,105,96,100,99,107,96,107,103,108,98,108,100,113,105,102,101,110,106,106,107,97,102,105,92,107,107,100,110,105,107,110,98,109,105,91,102,99,111,105,108,102,111,106,103,88,100,108,100,103,107,107,110,109,103,99,105,103,102,104,103,106,104,104,89,108,91,109,103,102,99,106,109,116,94,104,98,102,104,106,109,92,104,102,109,104,103,92,112,106,103,102,104,103,98,96,100,107,104,96,89,122,101,101,109,102,116,101,98,111,108,105,111,107,107,119,104,118,92,92,104,94,103,103,102,115,112,98,121,95,111,107,102,105,100,74,104,110,98,115,109,104,112,104,104,101,91,95,106,83,104,109,100,106,92,105,100,105,103,91,98,103,96,106,109,101,91,101,108,101,109,102,87,104,110,96,98,94,87,101,103,108,93,105,102,100,102,100,107,112,112,102,108,102,109,97,97,109,110,101,113,103,103,111,94,113,104,107,104,103,121,105,111,99,105,110,101,112,103,106,98,106,109,113,115,107,102,110,98,105,105,136,100,109,100,108,105,94,102,104,89,98,99,113,102,113,105,114,113,95,99,99,108,93,111,108,116,92,102,98,120,98,100,100,116,98,94,97,103,100,116,96,105,77,102,109,103,104,105,96,98,109,84,107,104,97,103,103,109,109,103,104,113,111,92,108,108,102,110,94,99,105,98,105,102,109,103,101,107,104,109,116,112,100,108,90,99,110,105,109,103,104,115,108,95,104,84,103,101,108,106,119,103,95,110,110,107,99,105,102,110,121,105,97,113,95,106,117,108,101,102,102,117,99,93,94,98,94,98,87,100,105,99,103,89,98,114,103,114,99,107,100,91,102,109,99,104,104,102,105,110,97,104,102,112,103,104,107,108,104,97,105,98,117,101,106,98,109,105,99,103,105,116,93,110,114,105,96,104,103,109,102,104,110,112,96,100,104,105,101,105,121,79,110,101,103,107,117,134,108,80,113,103,106,106,109,110,102,109,96,103,109,104,102,98,96,96,100,112,99,117,119,91,103,108,97,98,107,98,103,103,96,95,91,112,97,110,103,97,105,100,110,110,98,101,102,105,109,104,105,102,105,99,95,92,103,110,110,125,101,95,100,104,98,105,108,108,92,108,100,111,109,96,88,85,107,100,108,109,91,93,119,104,105,106,102,90,106,94,110,92,93,99,106,87,103,113,96,105,99,121,97,102,84,112,104,110,109,100,107,100,108,103,103,95,94,104,95,107,97,117,100,111,120,111,103,106,100,98,110,102,117,101,96,98,103,117,96,101,95,86,116,102,104,104,110,116,99,96,108,96,114,113,101,100,104,112,134,105,111,105,110,100,112,114,107,107,91,110,88,97,102,95,98,104,103,106,109,102,106,107,112,94,100,108,101,102,110,111,96,112,117,111,93,96,102,110,117,111,97,119,103,105,120,80,103,119,98,112,102,105,117,101,100,109,103,101,109,105,98,102,104,101,112,99,117,93,87,103,104,96,89,101,108,95,97,94,106,99,101,96,105,103,99,96,109,101,102,94,103,105,92,109,98,120,99,105,98,99,100,121,114,94,119,119,98,87,114,106,108,103,112,91,111,112,109,115,104,91,110,102,107,103,95,108,134,101,106,104,116,104,88,101,130,80,102,104,107,110,104,104,95,97,103,107,105,103,102,105,118,104,106,104,97,102,105,108,96,110,91,112,108,108,113,109,106,111,122,99,115,109,108,99,106,99,99,113,91,92,104,106,98,86,103,104,104,100,107,101,101,94,103,106,94,97,98,99,114,109,99,108,93,104,93,107,99,106,112,101,104,103,116,108,105,99,113,127,102,100,101,84,91,94,108,108,103,109,109,96,106,104,96,113,103,111,110,100,101,111,99,113,92,108,103,104,101,85,103,108,105,105,100,107,108,108,92,96,102,106,101,94,107,102,97,100,100,111,99,100,108,92,98,101,112,106,97,95,112,95,101,105,97,92,99,99,99,116,103,104,100,106,99,100,124,90,106,92,108,103,103,108,105,99,98,104,117,90,98,110,100,100,85,102,116,99,104,104,107,112,104,102,104,108,95,90,120,89,103,109,111,96,100,124,95,101,96,100,97,101,96,103,103,102,127,76,113,106,103,97,108,102,111,125,117,99,88,108,113,107,91,93, +485.27142,97,79,92,89,97,104,96,97,108,95,100,94,96,106,107,105,101,109,96,95,94,106,95,100,96,104,106,103,94,97,101,98,104,126,118,89,97,90,100,92,105,103,103,94,106,117,102,107,100,96,102,104,106,84,106,102,97,89,107,99,102,99,102,99,93,105,108,95,92,97,109,102,97,95,94,102,102,98,102,95,103,103,82,101,95,92,116,103,94,80,105,97,95,96,88,98,95,102,111,91,105,96,101,98,103,91,86,106,102,102,101,98,108,100,92,117,97,109,92,97,96,96,99,106,95,113,106,88,103,102,101,106,101,105,106,99,101,98,95,106,99,114,108,110,100,100,100,109,106,96,100,113,99,87,100,89,110,109,113,98,101,105,113,95,95,104,99,99,94,109,109,99,106,95,99,92,97,95,96,110,98,102,97,96,108,97,93,83,106,96,91,98,103,91,98,96,94,97,96,105,98,97,101,97,97,93,104,92,109,117,104,101,107,95,102,99,110,104,101,102,100,116,103,93,110,107,118,105,89,105,102,111,102,104,116,113,99,101,102,101,98,113,107,100,97,101,122,112,102,107,103,102,92,113,110,102,118,95,91,106,90,113,104,103,87,107,105,99,92,97,110,102,96,99,110,100,102,94,100,97,100,86,104,100,109,113,95,96,97,100,99,104,111,96,103,102,101,104,94,111,91,105,102,103,101,105,103,104,113,98,97,113,101,105,105,91,97,103,97,130,104,97,105,98,99,105,101,92,101,101,106,104,108,102,116,91,113,108,96,105,91,106,105,104,99,97,103,108,102,98,106,107,121,110,112,86,120,107,91,102,99,97,94,97,91,108,103,93,96,109,113,98,105,88,102,99,94,95,97,99,99,111,116,102,103,101,98,113,111,97,113,91,107,99,89,113,103,95,95,108,102,99,111,81,102,91,96,105,112,100,110,98,117,116,108,103,114,99,105,94,95,100,99,98,87,105,97,103,114,109,90,122,101,94,96,111,99,111,105,95,105,101,105,87,100,142,99,92,93,105,99,101,107,110,102,104,97,98,114,112,98,104,101,103,106,110,94,97,102,87,95,101,105,103,90,95,116,109,106,113,101,117,101,92,94,95,102,116,106,87,102,104,106,96,95,96,104,105,96,113,108,78,102,102,90,110,78,99,88,97,114,100,92,97,99,105,101,107,96,91,112,97,102,102,99,99,117,90,101,100,101,101,103,93,97,101,107,103,121,105,95,98,88,94,107,104,95,105,95,104,102,101,101,100,94,96,108,109,99,112,109,99,104,105,102,101,100,98,96,101,88,101,98,104,103,99,93,112,99,95,104,106,101,79,99,104,97,96,96,100,117,92,92,97,100,91,101,98,101,105,105,106,106,93,105,96,105,110,100,104,95,96,106,104,105,99,104,94,110,100,107,107,108,98,97,103,102,97,105,104,109,105,105,111,105,101,104,92,96,99,107,112,98,102,96,115,99,105,100,118,87,99,95,107,106,110,107,106,97,107,112,94,112,106,89,88,110,100,114,108,101,115,115,109,99,98,109,98,107,109,104,93,94,98,82,90,115,113,109,96,100,95,94,125,122,116,100,101,113,92,102,95,102,103,109,104,101,70,105,79,105,95,106,72,98,102,103,89,96,99,103,97,106,113,94,98,98,99,120,108,112,112,93,104,97,100,104,107,103,100,99,101,87,94,109,103,105,103,108,100,102,109,101,96,114,103,104,92,98,104,94,98,92,96,99,106,96,105,104,123,92,105,105,97,105,96,93,106,94,104,106,117,98,110,100,107,107,112,94,108,121,111,114,102,105,99,101,104,96,94,83,99,99,98,101,111,103,104,93,98,109,107,108,98,104,88,112,98,109,102,91,103,100,105,88,110,101,111,108,110,104,95,99,96,107,113,107,108,103,97,100,101,106,97,95,93,94,105,90,111,103,94,96,109,96,99,109,111,89,105,100,95,106,105,100,96,104,102,99,94,107,113,103,106,90,90,99,103,93,104,98,96,109,113,98,107,100,85,106,92,100,116,111,110,90,112,129,93,102,96,106,98,99,99,90,94,91,107,102,116,96,105,103,104,94,99,80,98,109,94,97,108,99,102,113,96,101,120,93,109,104,104,107,103,91,100,104,100,100,100,98,103,96,106,103,104,104,106,103,92,90,101,103,98,101,104,103,107,107,113,108,103,98,108,114,101,96,107,103,100,98,101,106,102,96,106,100,96,100,93,90,106,94,108,103,108,101,107,104,101,99,108,102,99,91,107,89,105,102,100,98,115,93,108,94,111,91,102,97,122,97,104,98,102,94,93,101,95,104,96,106,103,103,106,116,110,95,106,110,100,96,99,113,105,101,97,102,108,103,98,91,109,97,107,95,90,102,101,97,98,94,103,90,84,100,111,108,102,106,94,103,105,136,104,104,102,96,95,109,103,99,112,101,105,110,104,103,92,117,107,99,103,99,105,109,100,87,121,106,106,104,109,113,91,92,94,97,115,115,106,109,90,106,107,104,107,111,102,111,97,108,97,102,106,101,105,113,103,90,104,105,107,98,99,99,100,97,112,111,120,101,103,115,100,108,103,120,99,103,107,109,90,105,91,103,95,102,99,99,94,111,103,109,101,99,90,106,110,101,101,98,79,113,99,112,120,121,116,114,102,97,100,103,102,102,103,114,109,109,101,103,104,111,108,110,108,112,105,89,100,104,98,112,106,88,111,111,105,106,115,104,99,100,102,107,84,110,116,108,105,108,100,101,98,80,102,100,109,101,109,104,109,113,91,101,104,96,100,108,95,112,119,90,105,113,98,98,102,108,87,106,102,111,94,100,116,113,117,102,105,113,124,119,107,108,110,112,106,106,102,108,100,106,104,113,102,92,106,114,109,116,108,106,120,99,91,104,101,98,99,106,113,106,104,105,98,96,102,105,104,101,116,105,102,97,99,103,99,119,105,108,109,105,91,103,97,110,103,103,100,103,108,104,95,96,114,102,110,107,110,108,106,104,101,109,99,114,103,104,76,106,100,98,109,109,109,109,107,100,103,106,93,102,101,103,108,113,112,105,108,80,95,108,96,100,99,105,102,99,101,71,110,98,112,112,83,106,107,101,93,115,103,100,116,89,117,110,113,117,110,96,106,108,115,112,99,108,105,91,104,97,103,101,101,103,114,103,96,99,104,107,89,100,93,112,102,114,117,99,105,108,109,101,97,103,99,110,107,98,133,102,108,84,96,94,100,101,107,104,109,106,117,102,103,119,109,106,110,102,106,103,95,111,102,109,103,103,106,101,109,110,98,108,100,105,100,109,105,115,95,103,109,122,99,107,106,97,96,105,104,103,106,109,109,101,112,102,103,108,98,104,83,112,112,112,95,93,107,109,93,106,112,103,101,123,116,98,112,104,90,103,103,100,107,99,100,111,102,103,109,91,96,94,98,86,104,99,101,114,81,106,107,113,107,88,105,104,104,109,109,92,112,102,88,109,121,110,112,100,87,109,105,102,117,99,86,107,101,101,98,114,105,104,116,94,100,110,118,106,94,107,110,92,81,107,107,102,94,105,99,112,91,113,108,107,107,96,97,104,103,107,113,97,109,101,108,102,109,115,105,108,102,103,124,113,98,96,109,117,105,107,107,101,108,111,96,105,101,107,108,94,106,99,99,106,101,95,107,111,99,106,105,111,104,89,101,107,102,112,99,91,105,98,102,107,103,103,117,86,100,109,102,96,107,90,104,111,102,103,105,105,104,100,106,95,97,104,102,109,103,91,113,100,101,99,94,114,107,107,103,116,98,105,100,97,99,96,106,102,103,95,88,100,95,105,110,102,100,94,104,101,117,106,107,114,104,105,93,100,106,104,98,94,106,103,108,106,105,103,91,110,104,105,108,98,119,105,109,104,110,105,112,102,107,105,114,115,110,110,102,128,113,113,101,111,110,110,95,100,108,103,96,100,109,105,110,96,107,120,111,110,116,100,105,98,103,96,93,100,103,101,98,108,108,92,107,103,104,102,105,111,103,118,104,116,125,99,99,102,96,100,120,93,103,104,110,102,116,99,90,110,99,108,100,112,109,101,98,102,92,110,121,93,111,109,118,104,96,106,105,99,105,112,101,105,104,99,107,104,100,96,95,105,109,94,101,114,110,98,106,104,102,112,112,103,108,117,98,98,111,99,110,105,102,113,82,106,106,114,104,110,107,97,101,110,108,112,108,95,103,104,95,101,103,114,97,108,108,83,91,101,105,109,105,106,110,98,113,105,101,89,113,94,116,108,100,99,110,102,89,98,102,96,107,94,102,90,100,104,112,110,108,102,96,112,106,109,113,92,101,115,105,108,106,110,109,106,102,105,88,109,102,103,109,106,106,104,110,110,104,92,114,116,101,113,105,83,111,90,109,102,94,98,120,96,111,104,100,104,114,118,93,103,98,102,99,106,82,109,103,108,113,98,120,105,88,93,111,109,111,107,99,98,121,121,110,115,101,105,105,99,96,103,108,105,107,110,103,106,113,103,96,94,102,108,109,107,104,105,92,102,110,112,103,104,93,98,104,117,115,100,104,101,113,97,84,108,105,110,97,108,91,107,105,117,97,106,110,96,103,109,110,100,115,109,112,97,107,103,76,109,108,102,106,112,91,94,105,105,104,104,99,105,118,104,95,100,92,112,94,105,105,116,101,102,109,103,103,102,97,95,102,92,108,105,110,92,110,91,105,106,99,107,106,106,102,113,114,104,100,111,104,110,98,109,102,102,113,111,113,98,103,111,103,98,116,112,104,113,117,97,96,106,100,104,99,82,116,103,97,102,98,111,98,92,108,117,106,109,94,92,104,109,99,103,96,85,106,112,109,90,102,113,94,88,94,106,109,110,109,102,92,108,110,114,95,97,108,103,98, +485.41199,116,107,107,100,90,105,89,100,104,106,101,105,108,100,123,97,118,107,104,104,116,106,88,111,99,111,91,120,97,99,104,108,95,103,102,103,98,96,121,107,105,107,112,115,107,115,101,103,103,110,102,105,114,100,103,114,101,113,123,97,113,101,106,99,112,91,100,105,97,102,116,98,113,108,101,108,94,101,106,109,118,98,106,95,96,91,110,105,97,97,109,118,106,95,117,98,106,110,89,82,103,106,112,100,112,96,108,98,97,106,107,100,118,113,99,101,114,94,119,101,110,112,115,112,116,112,106,110,106,110,104,102,119,95,106,104,107,65,102,104,103,94,116,86,105,92,122,105,102,99,103,105,114,82,95,113,101,105,102,99,124,103,113,103,111,94,97,102,110,92,108,102,91,102,103,107,122,91,105,97,102,97,104,106,99,105,104,107,98,103,105,111,108,90,101,103,103,115,110,110,113,110,95,112,99,108,132,98,112,113,110,95,115,112,98,101,106,99,97,116,114,116,102,106,103,106,106,110,111,118,104,103,109,100,107,124,97,113,115,109,108,113,117,104,104,103,106,115,117,112,105,110,104,99,112,113,95,91,109,109,109,109,112,102,105,93,95,108,98,109,108,105,108,112,110,113,92,108,114,107,117,105,104,98,95,91,102,91,104,107,99,108,109,98,131,100,104,112,101,101,116,99,107,113,88,112,99,120,102,103,102,117,107,108,98,108,112,110,93,107,94,114,107,103,106,98,107,93,104,102,121,105,102,112,108,105,114,94,97,111,103,108,88,92,98,103,98,112,99,113,111,112,111,111,108,94,105,103,99,104,118,108,95,105,109,97,99,98,90,113,109,102,116,101,115,108,112,103,105,116,124,111,120,99,103,102,106,106,123,107,106,105,107,114,82,109,110,101,117,99,106,107,101,117,104,104,102,121,104,121,114,94,116,107,121,113,107,108,111,105,108,108,105,118,105,98,100,105,100,110,105,107,103,110,101,108,100,113,96,113,110,97,92,105,103,111,104,101,95,116,97,107,105,103,109,120,102,107,107,108,134,100,102,107,104,101,106,105,113,97,107,111,99,98,119,102,122,114,103,97,94,111,120,87,104,97,107,103,91,103,122,116,115,96,100,98,101,98,112,104,111,100,105,107,102,109,108,104,110,106,110,101,100,117,100,110,113,105,107,107,109,97,107,99,93,102,106,104,109,115,107,106,112,110,106,112,101,105,98,102,114,109,99,94,108,108,114,104,113,112,101,105,105,108,121,79,104,96,105,109,126,97,108,102,100,111,102,96,99,108,83,109,107,118,94,108,118,98,109,103,102,105,102,99,101,107,103,109,93,105,101,105,97,108,99,121,101,105,100,108,100,100,120,95,109,100,109,100,110,112,98,102,99,110,102,117,106,117,106,110,105,105,107,105,107,102,87,101,102,104,99,110,99,109,103,120,118,105,112,103,110,109,100,114,104,102,96,99,99,101,103,118,117,111,104,103,103,112,113,103,101,105,103,106,102,107,105,104,111,114,111,97,109,115,102,98,107,100,110,116,99,112,117,99,108,111,91,112,117,102,102,99,106,108,106,102,99,112,104,93,115,96,116,106,110,112,108,111,100,113,125,115,103,108,99,109,105,112,101,108,111,86,103,108,104,101,117,116,107,111,102,93,112,108,101,109,95,93,114,95,111,105,107,113,112,104,112,102,104,77,101,109,93,97,106,107,108,104,117,100,101,115,98,108,96,105,100,102,101,91,111,113,103,101,108,106,103,103,106,126,103,100,108,104,101,93,105,120,80,97,110,119,103,110,106,110,101,115,97,121,119,111,91,110,115,97,94,111,136,106,111,105,97,113,105,116,108,109,110,118,111,122,122,117,121,109,113,134,111,111,105,99,101,110,114,96,103,101,113,121,105,76,114,104,106,102,98,93,97,105,94,92,113,98,115,102,98,98,77,115,104,119,99,106,95,103,98,95,116,107,95,104,113,118,105,95,113,106,95,97,103,109,98,106,96,98,97,111,103,109,109,117,100,111,106,108,123,100,87,96,107,102,114,112,113,96,106,98,112,95,102,102,116,104,94,103,105,107,105,108,115,102,101,85,105,105,98,107,110,99,102,108,118,123,106,107,110,107,90,109,111,99,108,108,101,104,106,111,109,112,94,88,105,107,96,110,108,105,106,115,107,114,109,108,95,109,111,100,105,111,106,104,106,87,101,109,105,98,100,107,102,103,101,100,101,102,118,104,105,102,112,98,104,107,106,96,100,108,99,110,116,133,97,117,93,104,100,104,107,113,104,115,105,108,110,118,101,104,113,112,110,95,107,106,109,104,107,106,112,107,108,104,117,93,110,102,101,103,108,109,100,114,105,105,97,97,107,101,113,106,105,105,112,106,107,111,83,92,101,111,98,99,93,111,102,99,110,102,111,107,107,115,104,124,106,107,103,107,111,104,97,96,105,106,98,93,100,92,117,119,109,110,109,105,77,91,102,101,117,117,102,91,112,110,101,111,103,110,112,100,129,119,116,98,102,94,102,99,92,111,99,111,102,111,117,106,104,104,121,98,104,112,99,93,106,106,107,100,107,105,108,102,107,115,96,104,109,111,108,93,119,102,99,111,105,96,110,114,95,94,110,98,104,82,115,107,103,103,107,105,107,110,107,101,95,97,102,91,106,106,99,108,104,88,102,109,117,112,106,109,94,101,106,120,96,114,113,91,109,109,109,108,99,110,128,121,110,120,119,104,107,113,102,103,113,109,93,112,103,99,102,110,106,105,95,112,98,110,134,115,97,107,107,117,110,113,113,95,104,105,106,106,112,102,96,106,123,119,105,106,107,105,109,100,105,98,103,117,104,109,116,111,113,109,99,104,116,129,99,104,103,102,106,111,99,117,104,96,106,111,107,113,107,110,114,106,97,103,113,112,94,117,101,107,106,108,120,99,111,104,84,106,112,95,102,109,113,106,98,100,97,104,119,104,121,118,97,106,112,111,105,105,113,111,102,115,110,86,124,106,113,105,96,115,110,115,109,105,99,104,97,107,101,102,103,102,103,114,106,96,95,90,99,110,96,107,112,109,111,98,105,101,117,106,107,90,107,107,102,109,89,109,86,113,111,107,100,110,107,76,99,103,117,98,113,105,94,103,101,113,114,111,105,110,102,97,110,96,107,102,113,114,102,111,97,115,104,103,100,105,100,100,98,108,109,98,109,99,101,102,96,113,92,107,98,100,107,100,106,102,114,71,108,120,104,99,106,110,100,111,109,98,105,105,99,108,99,109,105,98,95,108,108,79,112,116,107,96,89,101,103,107,92,117,94,107,116,124,106,100,99,105,98,93,80,97,100,112,117,103,99,104,109,102,104,96,121,105,112,103,101,82,93,109,100,97,104,116,115,93,111,105,117,112,99,110,102,102,109,103,115,102,112,106,112,105,97,104,102,115,100,110,99,106,105,92,102,104,108,105,105,106,96,88,94,101,109,123,95,110,109,108,104,111,114,107,99,97,91,95,113,97,107,105,104,113,106,91,108,110,106,101,107,107,109,105,109,95,110,102,112,101,104,103,106,104,100,106,104,109,94,96,111,105,111,102,121,101,105,106,97,121,113,118,77,99,100,106,99,104,109,99,105,112,100,117,112,81,116,105,100,102,92,96,99,101,113,86,103,113,98,107,99,99,113,106,110,101,93,107,114,102,102,109,112,119,100,108,110,103,97,97,95,109,113,95,109,112,112,103,100,98,107,105,98,110,101,103,109,105,106,95,105,106,99,102,105,105,101,108,106,100,99,76,108,99,108,107,108,102,119,115,108,101,117,103,101,117,104,99,109,111,97,101,105,102,115,111,97,116,105,95,94,112,118,114,104,106,79,108,96,102,101,107,96,95,102,106,95,112,103,106,116,115,106,120,99,112,87,109,104,108,107,107,104,110,102,104,104,102,99,101,82,99,98,98,88,106,105,107,111,107,94,119,98,109,116,105,93,117,102,117,104,109,108,106,103,106,106,99,109,101,106,95,104,102,117,96,89,110,95,122,107,95,107,127,111,113,103,93,129,104,109,95,113,98,104,92,93,103,106,107,115,108,103,105,99,104,104,99,105,108,105,110,104,107,101,95,106,105,73,101,98,114,96,116,111,105,101,103,102,104,114,110,101,94,117,101,95,101,116,115,103,101,116,117,106,111,76,115,116,107,98,104,100,100,104,111,99,95,107,99,94,103,99,103,106,117,99,90,94,103,110,104,108,101,113,88,104,105,100,109,100,105,108,105,95,100,109,116,93,112,105,111,96,81,94,104,102,117,115,102,106,97,102,103,104,99,110,96,141,115,109,103,77,106,113,103,107,111,108,97,96,106,117,120,102,98,96,95,112,111,109,108,99,102,101,109,102,95,111,123,97,101,109,97,102,104,111,106,121,106,99,113,104,114,99,96,70,98,110,94,105,109,103,81,105,100,112,113,102,88,106,103,107,97,92,121,88,117,87,102,96,95,99,110,108,104,112,105,97,107,75,107,110,112,104,112,112,107,108,114,92,104,95,103,92,104,107,97,110,102,105,78,97,110,107,106,104,97,99,93,106,113,103,100,104,116,113,99,93,97,117,104,102,94,92,97,101,105,116,114,94,106,115,113,97,94,112,88,109,104,99,98,93,105,103,110,112,97,107,109,100,105,103,92,70,113,107,102,110,109,103,110,116,96,98,103,112,93,104,98,109,99,100,107,107,115,102,106,116,106,96,102,117,106,91,104,104,110,111,115,98,109,101,113,103,98,99,97,102,102,108,97,92,103,93,110,98,110,102,92,89,83,118,92,117,108,109,102,95,99,108,108,87,95,88,111,101,108,104,95,102,105,102,106,81,110,110,105,109,107,94,100,94,94,102,101,83,101, +485.55255,95,105,96,110,108,96,96,70,90,91,87,100,115,102,106,93,107,112,101,129,98,101,94,114,97,99,105,81,109,103,108,97,90,105,101,90,95,90,104,98,95,96,86,100,116,92,116,109,102,106,97,140,106,92,98,100,98,105,107,110,87,98,89,96,114,106,99,99,97,92,97,81,94,113,105,110,106,94,108,96,105,99,106,111,91,89,100,99,113,97,109,115,109,104,99,103,97,102,107,113,118,99,112,110,113,101,96,102,109,68,106,102,91,101,119,124,92,117,101,106,114,95,112,105,94,113,109,115,117,104,111,113,103,106,105,109,92,104,95,101,80,95,100,101,100,96,121,106,106,107,102,102,109,95,90,95,116,94,111,97,99,98,117,108,79,102,101,105,86,101,99,120,98,104,105,100,97,96,111,99,93,117,96,113,115,96,103,112,114,96,100,106,94,110,103,104,100,98,93,106,100,107,98,99,133,104,98,117,107,97,91,106,100,93,103,101,115,95,90,108,103,113,118,93,101,87,101,95,102,102,94,106,103,90,109,106,103,104,109,109,100,87,117,115,96,98,116,111,109,117,111,119,97,104,103,99,88,102,96,105,93,90,105,98,105,112,105,108,110,101,100,110,110,109,99,110,116,108,91,96,100,114,106,91,128,102,110,122,87,111,99,95,108,104,114,103,106,110,110,112,95,99,101,125,95,104,112,101,110,121,98,103,96,115,100,88,98,99,100,105,104,102,100,106,110,111,109,98,111,108,96,91,109,101,101,104,114,107,82,106,101,108,97,90,98,101,118,102,123,104,98,103,99,105,98,101,109,108,95,99,93,104,71,100,103,97,100,105,99,99,99,109,101,111,99,90,107,86,66,106,117,111,100,113,97,101,100,103,106,97,111,107,101,99,103,103,95,108,114,112,101,100,102,98,97,90,99,114,116,99,100,95,110,99,107,97,90,104,107,96,116,103,102,100,94,95,96,101,99,120,100,108,97,104,102,94,102,120,108,105,107,99,87,101,102,114,104,105,104,99,101,113,101,126,96,102,106,95,99,106,92,107,110,116,107,112,99,113,102,110,115,101,110,103,91,115,105,106,105,95,108,113,109,85,101,102,102,115,110,100,109,104,116,107,89,103,89,105,99,105,111,94,97,110,77,105,91,97,111,94,112,100,107,103,101,118,108,121,102,99,97,107,117,111,110,94,107,111,108,103,107,106,100,105,98,103,101,94,113,109,116,105,86,110,101,107,106,100,101,98,104,109,89,99,104,92,96,104,101,107,108,107,106,110,99,103,113,101,107,94,99,90,109,108,101,114,102,90,108,109,107,93,113,106,106,106,99,108,110,100,113,96,96,102,111,104,94,104,113,107,98,113,104,93,99,89,114,100,95,106,103,96,107,108,102,91,107,97,107,102,110,110,96,95,109,102,90,103,103,104,104,98,96,111,101,112,113,94,117,100,99,111,108,94,104,75,102,103,99,103,95,100,96,105,99,101,109,109,91,102,105,109,100,102,97,69,99,99,104,88,95,95,106,91,101,108,99,101,104,104,95,110,112,106,98,95,93,90,99,103,100,95,110,125,100,105,103,98,98,74,95,99,99,105,107,114,100,103,101,105,102,90,110,106,98,102,110,99,94,65,103,101,113,100,114,101,97,101,98,117,129,92,102,90,101,100,107,100,106,88,99,119,112,101,109,107,101,110,101,111,104,90,113,120,113,107,100,110,98,91,111,108,95,94,94,105,98,106,124,100,118,100,108,101,109,113,109,99,103,86,107,112,94,83,110,91,90,111,102,111,107,104,102,111,100,102,100,99,107,114,97,97,103,99,110,93,101,112,98,101,107,99,93,94,103,107,111,96,96,88,98,108,109,106,96,96,104,101,108,108,112,104,108,115,94,107,110,109,113,114,92,110,108,103,99,99,111,98,100,102,101,106,108,108,83,114,111,102,92,78,106,105,102,110,99,97,103,101,100,112,116,102,105,108,97,102,105,110,117,102,111,110,104,105,95,117,95,120,103,106,111,114,102,106,103,100,113,105,103,102,104,107,124,99,109,110,96,107,108,96,98,94,105,99,76,103,107,103,103,111,109,103,105,105,104,110,100,101,92,108,111,109,105,109,120,110,98,103,114,96,113,98,95,113,86,109,101,106,105,102,104,110,103,108,102,106,109,98,99,121,107,100,99,106,101,103,99,106,102,108,102,102,97,98,104,102,104,102,91,105,105,116,108,90,107,103,114,102,101,91,91,100,102,98,88,96,100,139,91,99,98,109,100,110,106,111,113,99,110,106,109,99,109,75,96,96,111,94,95,107,125,102,101,104,99,101,93,115,105,104,104,113,110,105,123,96,99,104,114,105,102,95,95,91,100,99,106,108,105,95,89,104,106,93,100,105,97,95,99,102,99,101,94,107,94,95,92,109,75,96,105,116,94,99,110,103,117,104,103,100,98,99,106,103,100,109,104,94,118,97,111,105,102,103,97,111,101,105,101,110,116,93,109,94,99,113,106,109,101,99,99,105,115,100,108,105,81,98,93,114,103,106,102,102,107,73,93,99,107,99,110,119,104,103,110,111,98,108,93,92,96,99,102,110,99,106,101,96,94,107,102,103,111,88,99,98,109,113,110,102,107,98,109,95,100,104,76,83,107,99,121,93,103,104,96,105,94,96,100,111,109,99,111,108,99,117,113,103,100,101,107,102,109,105,101,110,97,95,102,105,103,113,102,86,103,109,102,96,95,98,111,108,93,105,114,98,105,105,94,102,107,96,84,101,95,111,105,104,113,103,102,115,115,114,102,121,107,109,115,112,108,106,105,92,102,104,110,108,104,105,105,103,102,95,91,117,105,93,103,103,103,112,99,87,116,102,107,116,106,112,83,99,128,87,100,98,107,112,101,101,100,101,109,101,113,111,104,112,96,107,103,97,98,101,107,106,116,101,99,109,79,102,95,119,93,95,98,103,103,101,103,95,99,114,111,111,107,99,98,93,115,102,94,102,114,104,140,108,95,116,116,79,105,106,102,104,99,101,109,117,103,101,94,105,116,106,107,101,117,95,100,107,98,98,90,104,98,109,102,97,109,105,101,103,103,112,112,99,107,124,104,91,104,101,94,105,94,102,95,96,107,93,95,107,119,88,100,102,106,97,106,92,112,100,98,100,115,116,108,125,119,110,103,113,105,102,100,100,111,106,93,105,101,97,93,90,98,104,106,100,100,114,97,96,107,92,100,91,96,112,105,110,111,103,117,102,77,108,103,104,112,101,116,105,96,112,106,110,111,108,106,98,96,102,105,107,106,103,108,104,107,110,107,104,107,105,106,96,99,109,102,94,91,104,104,106,99,100,110,103,94,104,111,103,101,112,92,111,96,107,87,116,99,102,103,93,99,104,109,107,106,116,93,99,97,94,101,88,108,105,101,101,109,107,101,93,105,108,98,81,95,99,95,94,93,98,105,101,105,101,90,104,103,102,100,109,107,96,103,105,101,102,113,109,113,113,103,109,108,99,113,102,105,102,104,106,100,111,113,119,107,113,106,108,106,98,107,82,99,106,106,113,101,98,111,105,109,111,82,91,95,95,102,113,102,107,103,78,97,87,87,72,109,113,110,97,102,104,105,108,104,99,107,107,98,106,87,76,105,107,99,102,104,103,115,115,107,103,103,111,107,113,98,94,100,101,101,107,112,94,116,80,101,120,106,111,113,107,116,98,103,98,98,99,114,111,91,120,103,103,99,95,82,99,100,99,96,92,110,98,98,102,134,104,100,105,113,94,119,104,95,104,98,103,99,100,107,108,107,98,111,100,116,101,99,98,107,97,103,107,92,99,98,103,96,108,104,106,110,100,110,101,103,106,117,94,101,97,112,100,90,96,99,102,95,113,111,92,92,96,93,109,104,98,103,110,110,98,104,109,107,92,93,106,84,106,112,107,106,112,108,100,94,101,102,84,88,101,103,117,117,103,92,109,101,100,116,106,96,116,102,102,95,122,99,97,104,105,103,103,120,102,113,102,104,112,138,96,103,95,107,113,96,96,115,104,103,103,102,102,100,110,105,95,100,104,98,114,109,103,106,98,96,106,80,102,98,111,105,103,103,95,93,96,104,103,119,99,106,104,103,103,97,112,107,104,107,105,99,105,105,110,106,105,102,100,100,102,96,107,108,104,99,116,116,108,103,107,106,92,117,96,99,104,104,98,112,109,98,107,109,105,107,105,95,106,114,108,98,95,95,100,113,91,97,113,99,95,107,103,105,120,98,96,113,103,97,106,104,95,102,106,114,103,102,94,116,108,106,103,107,102,111,95,115,99,104,103,111,99,103,91,102,101,112,94,102,105,104,103,117,102,113,101,96,99,111,98,93,106,101,112,99,94,99,91,109,101,101,88,101,94,106,88,95,115,128,99,102,81,102,121,105,105,103,109,102,117,108,112,102,96,105,114,98,98,104,96,113,107,98,96,95,89,107,90,87,94,98,104,96,99,94,99,100,109,104,106,105,90,98,98,100,93,98,108,96,107,101,93,112,102,104,100,96,107,109,108,112,103,103,106,119,98,117,108,104,104,88,106,100,102,96,111,105,99,101,110,108,103,94,112,108,107,108,107,100,95,104,102,115,98,104,100,96,98,124,104,101,110,100,98,103,109,103,102,102,110,102,103,112,101,99,107,97,106,104,110,98,108,100,101,100,105,100,96,100,88,99,104,97,92,98,87,105,103,95,96,102,103,109,96,102,100,87,107,107,122,100,106,107,95,102,102,99,107,113,100,104,104,111,107,105,97,112,100,106,98,101,105,107,110,101,104,98,109,97,106,117,100,101,113,92,97,81,102,93,91,99,102,100,105,93,96,101,115,116,109,93,102,98,98,102,96,119,95,94,111,84,97, +485.69312,104,98,98,99,101,101,111,100,119,116,100,103,113,95,110,106,99,99,105,100,101,104,116,106,106,101,103,109,101,105,99,104,116,106,116,112,90,106,107,100,103,98,109,110,109,108,102,112,73,93,105,103,101,98,106,103,118,100,98,93,105,100,103,107,100,96,110,119,88,101,109,102,117,106,101,110,103,98,114,93,99,101,88,108,85,100,106,110,108,93,101,112,101,103,104,95,97,97,100,103,94,114,86,99,90,98,99,95,106,111,104,100,112,96,105,120,104,137,104,113,121,111,117,112,89,116,112,97,99,106,100,114,84,116,117,117,111,97,115,101,102,109,94,98,103,101,106,111,102,102,98,101,102,99,94,98,104,98,111,100,106,117,103,110,100,98,94,103,108,101,114,109,96,100,96,108,96,101,107,122,115,98,97,98,104,100,99,100,114,105,96,104,107,97,102,92,97,110,105,102,117,99,109,101,112,111,108,106,113,105,108,105,98,116,102,88,103,114,97,105,104,113,104,101,106,106,103,111,111,100,100,103,95,106,83,92,105,103,105,99,93,97,120,111,93,105,99,106,95,98,108,111,99,108,106,103,100,112,113,100,97,102,107,99,105,108,112,103,107,102,110,83,109,104,107,95,100,117,112,101,113,107,102,106,93,104,98,104,101,105,107,105,108,105,105,102,106,104,106,103,92,119,91,103,112,103,106,108,105,96,92,112,99,113,109,108,107,96,103,100,99,122,91,104,103,101,98,92,116,105,101,98,98,97,104,107,100,99,101,100,103,99,103,99,105,108,110,110,109,105,95,106,113,107,104,94,106,104,104,105,98,100,89,87,109,104,120,97,101,101,110,99,85,100,107,99,92,106,110,105,96,111,106,103,90,104,110,95,107,103,109,106,97,106,101,100,107,95,108,99,112,103,112,104,107,99,112,107,106,101,102,113,112,105,84,101,102,71,99,98,112,112,100,100,101,104,104,94,111,105,85,107,102,102,99,102,89,104,108,105,108,104,107,93,99,102,92,87,92,121,101,105,110,142,104,106,88,104,103,103,105,113,93,111,105,104,104,104,103,99,110,107,108,129,99,102,99,110,104,108,116,114,101,94,109,106,102,103,109,105,96,106,110,101,92,96,104,99,107,104,105,94,101,96,120,110,110,94,106,106,110,117,115,99,110,98,93,92,98,95,110,114,97,107,104,110,107,121,106,106,107,106,96,112,101,105,113,100,95,113,103,106,95,103,113,110,97,104,113,105,110,99,108,108,102,127,112,103,111,97,109,100,85,111,105,110,104,109,112,99,109,100,81,99,103,102,101,100,107,105,109,100,90,85,81,102,103,109,107,103,124,108,86,101,107,100,107,99,87,110,101,112,103,110,91,106,95,94,91,105,100,114,104,107,114,94,95,104,108,98,99,99,91,96,96,115,113,112,99,104,105,91,101,103,93,103,104,105,110,112,110,108,100,101,110,100,102,97,96,108,113,112,103,116,105,105,102,97,105,104,103,115,103,112,101,106,96,108,102,98,110,95,120,102,100,102,95,105,119,108,121,96,124,96,96,89,95,107,100,91,100,102,103,105,107,110,108,107,105,108,109,114,100,98,91,102,101,105,109,105,107,100,106,94,82,104,90,87,88,103,117,105,114,104,104,97,105,106,110,98,93,97,118,100,105,104,105,92,106,95,105,96,107,106,98,98,106,99,109,121,103,106,112,112,102,96,106,118,121,100,105,88,93,105,101,99,98,99,89,91,97,93,103,110,94,102,101,104,113,102,100,107,112,104,100,106,107,103,105,99,104,115,93,101,105,101,109,106,112,95,96,99,108,105,108,107,103,105,107,110,104,107,108,102,86,91,110,110,101,100,108,99,118,107,95,110,106,94,106,97,92,103,97,107,98,100,109,103,89,99,99,101,115,95,100,95,109,101,103,98,99,102,101,105,113,103,105,100,105,108,91,93,72,113,96,98,102,100,95,118,105,99,105,109,102,108,87,105,104,106,113,101,116,93,108,114,98,103,108,93,106,106,106,110,93,86,118,105,97,111,106,105,108,103,114,102,103,107,108,104,83,114,101,104,105,92,91,97,104,104,83,106,118,100,115,96,102,90,105,97,98,105,116,108,108,103,91,100,95,105,104,81,113,109,94,102,94,103,95,109,106,115,103,94,98,97,107,96,100,94,100,99,102,98,110,96,98,108,100,95,100,108,106,109,97,100,99,109,103,93,101,109,96,98,111,99,106,90,103,104,110,105,100,90,107,96,109,88,101,105,100,98,115,104,107,91,80,98,106,98,94,99,87,106,109,108,106,105,110,99,102,131,107,83,106,106,87,109,103,100,103,108,114,116,95,110,105,105,100,99,106,114,100,101,99,77,97,102,100,96,102,106,109,92,107,74,98,102,91,99,106,100,117,109,91,100,99,99,117,94,107,96,107,92,97,98,102,105,95,95,107,111,92,111,112,105,101,109,106,112,99,112,100,99,99,110,108,107,115,114,101,98,105,101,102,109,110,97,116,104,102,110,102,108,135,112,106,98,113,99,103,119,106,103,109,98,102,111,108,121,102,124,106,104,113,116,90,100,103,109,103,92,104,113,98,114,105,105,106,110,120,103,119,101,96,104,108,99,115,106,105,102,109,94,120,103,115,102,106,102,99,103,101,99,111,104,105,102,106,112,94,100,105,105,113,98,107,100,99,72,96,108,105,118,106,125,108,110,105,104,115,106,106,87,113,103,120,105,107,106,96,121,99,116,113,108,114,106,102,111,107,109,106,108,117,105,98,116,109,98,99,113,106,109,114,127,109,104,106,106,105,106,98,106,100,120,100,128,107,101,108,100,108,103,93,110,104,105,88,120,105,100,109,110,111,96,102,98,102,100,110,109,110,117,100,92,98,107,108,112,102,99,103,96,106,101,108,103,106,106,96,110,112,106,102,117,107,116,98,108,90,110,96,106,107,106,107,103,109,100,99,105,104,104,107,109,107,109,108,97,115,110,104,113,95,112,107,107,98,110,106,106,100,107,106,116,119,119,99,104,97,104,102,87,98,101,108,127,106,105,104,109,97,108,121,95,131,108,100,112,105,108,107,95,107,106,106,109,99,110,102,112,106,104,111,114,108,116,101,103,108,98,117,99,105,105,104,90,78,105,107,106,109,99,98,120,99,108,116,112,112,105,95,112,112,103,107,112,117,102,113,98,94,102,97,94,108,106,107,109,110,114,100,80,106,102,78,99,117,92,99,109,110,114,102,110,99,107,98,114,98,114,109,100,95,104,101,105,103,102,105,101,119,109,110,102,107,113,101,100,111,79,108,103,95,102,94,113,105,101,100,110,103,105,103,100,104,106,104,110,97,104,114,103,101,111,107,98,99,102,108,108,98,112,99,102,109,111,110,114,98,117,108,109,85,100,101,104,105,92,115,112,108,101,94,101,114,98,95,107,102,90,93,96,101,103,112,101,104,105,100,103,111,94,99,95,67,104,113,97,100,101,99,117,110,112,107,107,103,96,106,103,103,90,113,96,103,112,102,116,103,98,115,99,107,110,99,106,115,116,113,108,94,90,103,95,93,103,100,109,103,94,106,113,104,103,98,114,108,105,105,115,114,103,102,93,83,109,102,108,109,121,112,107,74,125,99,99,116,101,115,89,108,105,107,101,115,103,117,112,104,132,94,117,106,106,104,111,109,111,103,104,101,110,111,107,103,109,101,98,108,104,103,109,114,106,109,112,98,107,106,107,104,109,112,113,113,99,117,116,102,102,96,109,105,104,112,92,126,104,96,122,110,104,96,111,94,120,107,109,111,109,114,97,111,99,111,101,99,108,108,132,103,109,109,114,95,129,104,105,100,104,105,107,102,105,108,106,102,107,113,114,106,98,106,97,109,106,110,117,107,97,107,105,103,101,111,107,120,94,100,113,105,109,91,110,104,108,115,113,97,109,103,119,96,109,98,112,98,104,94,105,116,113,115,80,99,63,95,108,109,103,102,111,90,98,103,100,112,96,123,99,103,107,110,114,107,112,107,107,96,106,101,112,104,103,97,109,110,105,117,104,105,97,102,113,98,115,116,107,116,109,112,118,111,113,99,94,94,110,107,107,104,108,100,107,92,102,106,105,103,107,103,106,128,106,108,99,102,111,108,103,98,100,108,108,115,106,87,104,107,100,109,109,107,98,99,102,103,114,107,109,125,105,105,102,114,125,108,104,109,106,105,136,99,111,117,108,106,92,111,101,112,113,98,112,108,102,98,100,91,112,113,112,114,106,100,96,97,105,114,106,107,102,94,104,125,113,101,103,117,114,104,104,109,107,95,107,99,124,107,105,117,104,116,94,99,108,112,118,108,112,106,108,109,98,108,113,107,108,108,112,88,113,107,109,114,99,114,105,103,112,103,106,98,106,110,92,90,111,118,113,112,97,107,110,112,106,101,117,120,112,117,110,108,103,111,104,106,97,102,99,106,113,115,96,108,105,101,99,111,105,111,107,96,96,112,102,101,98,96,106,104,99,99,98,97,98,93,112,108,104,108,103,90,103,101,111,95,104,106,112,109,112,102,97,112,103,95,121,98,97,104,113,106,90,94,115,107,106,102,108,100,96,106,116,97,107,115,100,110,102,113,80,97,100,102,116,116,115,113,113,107,104,110,101,83,84,132,106,110,99,103,104,119,102,101,103,106,107,114,106,119,108,102,86,113,101,109,105,87,102,98,106,107,115,109,102,91,99,94,87,106,139,113,84,106,107,108,100,94,113,106,90,92,108,98,100,103,109,107,98,105,96,109,104,102,117,111,108,111,90,100,105,113,83,102,113,121,93,98,106,103,60,88,104,96,98,110,83,102,85,112,97,99,76,106,101,112,95,107,103,107,106,95,92,107,128,114,98, +485.83368,101,105,83,89,106,94,106,95,113,106,99,102,103,103,94,107,109,94,108,96,106,105,98,102,97,107,95,115,104,117,94,105,110,93,105,90,111,110,110,102,97,77,103,97,94,117,99,101,109,83,116,113,113,103,86,94,107,105,105,99,109,94,107,106,102,117,107,96,101,102,107,113,99,104,103,110,93,109,103,98,104,101,94,100,89,99,101,108,97,96,99,109,100,110,103,100,111,83,95,96,89,108,109,101,109,100,98,101,97,103,102,98,104,97,117,86,93,104,109,97,111,92,103,100,105,105,116,84,104,113,105,105,96,118,99,104,101,94,104,95,93,108,91,112,98,98,108,111,102,96,102,97,96,107,81,101,103,102,109,108,96,99,115,101,116,94,97,112,110,100,108,106,101,95,104,105,108,94,68,96,96,120,102,105,91,86,108,99,106,102,105,94,99,93,99,91,102,105,99,110,102,108,107,105,109,98,94,105,109,92,87,105,113,109,107,108,109,115,113,106,107,100,94,91,109,115,103,113,99,110,102,114,108,129,96,110,101,106,99,103,98,116,100,108,98,115,106,104,95,120,121,124,103,97,107,105,103,110,94,109,96,110,111,109,97,111,99,106,107,129,111,106,110,80,104,103,105,114,87,106,103,97,106,108,114,102,94,98,117,109,105,117,107,106,117,105,95,106,102,106,100,104,100,107,92,117,103,100,106,108,102,107,94,105,118,103,109,100,106,95,98,102,117,119,111,101,101,104,103,114,102,95,113,120,104,103,103,108,103,106,104,110,100,95,107,101,98,110,104,102,99,104,105,108,98,108,100,106,108,105,96,101,109,99,97,105,118,91,101,92,104,104,108,117,101,107,107,98,106,97,101,85,105,107,113,88,121,105,95,95,112,103,99,108,128,95,108,106,110,98,112,102,107,114,111,107,100,99,103,101,95,93,102,100,96,96,106,110,115,115,105,84,106,109,111,95,99,96,100,98,98,106,100,105,99,98,102,107,106,108,103,111,100,91,89,98,107,99,114,105,92,112,100,106,93,105,98,95,112,109,102,105,99,114,113,99,112,108,106,105,96,108,106,108,95,103,95,106,101,99,105,100,127,93,100,122,106,105,115,110,101,103,101,92,112,112,100,107,109,104,120,102,100,114,104,105,103,108,79,114,106,98,93,105,109,97,98,101,94,104,109,103,107,105,103,114,111,100,99,112,101,106,111,100,106,105,112,106,112,96,106,101,110,99,100,96,103,97,104,121,110,113,117,100,83,118,115,98,99,96,98,96,101,109,104,95,96,104,105,81,105,114,111,102,108,106,101,110,110,100,103,97,105,95,91,106,101,113,105,102,104,107,97,100,100,97,107,98,104,116,103,101,90,96,104,103,98,111,107,111,97,99,72,98,106,124,105,109,108,102,99,110,102,99,124,105,99,107,116,97,99,109,106,85,99,102,104,99,104,125,112,111,101,119,107,95,106,100,96,112,104,115,90,132,109,116,108,111,101,102,116,109,102,102,95,108,100,99,94,109,116,120,114,100,97,103,112,108,142,89,113,106,111,102,86,99,100,103,104,100,103,108,105,104,110,92,115,109,99,98,105,100,107,104,108,102,106,104,107,115,102,110,106,94,94,98,98,112,94,100,124,115,115,102,90,100,112,112,110,108,115,114,109,106,96,99,105,105,114,102,132,105,106,104,100,96,108,107,99,112,102,106,97,103,109,104,97,99,106,115,96,127,109,111,107,100,98,109,90,102,101,114,110,104,105,101,105,104,105,98,119,118,110,107,110,108,103,108,113,109,108,114,86,101,111,91,98,103,112,98,104,99,96,108,102,104,92,110,109,105,107,112,105,110,112,109,107,103,99,107,95,102,107,103,118,109,113,108,122,101,109,106,101,116,106,105,95,107,107,114,114,103,94,104,112,96,109,103,111,110,109,102,107,95,100,117,109,106,94,110,97,119,106,103,104,101,100,99,106,111,115,99,96,102,88,102,95,75,112,110,116,101,102,104,113,104,96,118,108,101,113,98,106,82,113,117,103,107,105,113,113,113,103,113,100,110,90,108,87,105,111,110,111,99,102,103,112,112,132,104,104,100,113,104,114,86,99,92,105,90,100,93,109,109,107,103,103,103,103,114,101,95,101,105,102,93,100,105,119,101,122,86,105,101,94,99,111,106,107,104,79,106,100,98,95,103,108,94,106,86,114,102,109,109,102,98,114,101,103,77,103,94,101,105,111,92,106,114,107,96,107,102,102,98,114,73,90,107,108,117,94,96,94,94,121,105,101,96,110,106,92,119,100,107,110,103,111,101,103,112,112,105,112,94,99,104,107,104,119,113,110,96,114,104,101,95,101,98,109,112,98,100,96,109,106,96,91,99,105,99,104,109,109,109,94,96,97,91,96,107,103,108,103,97,103,107,106,112,108,115,104,105,101,107,109,103,104,110,108,94,86,84,98,120,105,105,98,101,103,100,98,104,95,104,108,105,81,109,105,100,107,96,120,98,108,109,106,96,105,108,99,112,113,86,103,93,102,109,95,115,116,114,92,105,100,109,116,115,106,112,102,129,109,104,107,105,101,103,103,98,98,95,103,99,118,105,96,97,99,105,117,112,108,106,100,106,120,112,104,102,104,102,127,95,101,110,99,117,97,103,105,99,107,111,114,107,120,117,101,101,107,112,102,107,108,105,116,109,109,97,97,106,113,100,103,121,104,89,98,108,112,121,106,108,100,112,102,109,104,103,104,114,107,104,111,106,96,101,94,90,108,112,105,104,115,116,101,107,105,109,117,108,102,104,106,125,104,97,112,118,106,110,100,97,137,91,109,110,103,109,92,105,110,107,110,101,107,103,101,105,108,92,107,107,107,102,113,112,99,106,121,103,103,103,125,97,101,110,107,116,99,108,109,101,100,108,106,102,109,117,104,103,102,95,102,91,103,92,111,104,102,98,104,113,106,100,86,107,104,107,93,96,84,95,108,116,101,107,99,103,112,102,98,102,103,109,116,114,96,103,96,91,96,107,106,102,96,104,116,106,105,103,102,105,100,106,105,111,102,115,90,100,83,103,108,106,121,110,98,100,109,105,107,101,105,95,107,107,105,104,106,106,95,108,106,108,112,102,111,102,112,103,115,100,109,100,98,105,99,107,102,113,103,102,106,98,87,107,103,106,79,98,96,112,104,117,118,116,108,113,99,109,107,100,95,109,102,109,103,95,105,107,100,106,104,101,113,114,102,110,108,104,109,113,108,91,106,102,101,98,102,96,106,103,110,111,100,107,112,103,95,95,102,109,99,113,110,104,110,122,112,110,105,113,100,112,113,109,103,104,95,104,81,107,103,110,103,90,110,89,102,110,121,107,108,110,102,108,106,105,122,103,107,99,89,95,103,106,111,97,91,114,107,107,99,110,119,109,109,97,120,108,97,125,103,107,108,107,103,110,95,97,99,109,102,101,111,104,108,100,98,107,109,107,110,101,112,113,104,104,70,117,98,112,114,104,107,109,106,103,100,122,97,113,106,122,84,113,98,106,96,108,110,98,107,110,93,104,100,107,111,96,108,98,102,99,104,101,113,106,88,115,102,108,102,101,109,101,96,99,103,116,98,104,110,100,98,101,123,107,99,103,105,104,91,103,103,108,104,112,104,110,109,107,105,102,112,111,108,101,101,128,93,105,112,111,104,108,110,98,91,97,103,111,111,89,113,113,96,112,117,106,102,88,103,96,111,116,109,116,108,104,108,96,101,108,106,93,113,106,102,114,105,114,102,108,112,106,113,110,107,107,113,116,104,110,105,107,108,109,116,99,103,99,105,105,105,92,124,101,98,112,94,111,112,99,111,113,106,109,106,109,97,109,112,114,107,107,99,110,105,98,91,102,102,100,82,105,98,120,99,96,102,110,112,110,106,101,113,97,109,106,111,109,116,103,107,105,111,95,102,110,110,116,106,112,109,93,104,116,108,103,101,101,104,114,104,99,86,103,106,105,103,116,107,100,110,96,105,119,99,106,116,105,98,106,112,109,111,103,96,108,98,113,101,109,101,99,110,105,120,102,100,96,97,110,113,104,108,108,106,105,102,110,85,110,91,116,105,121,96,115,72,86,107,103,113,99,102,109,108,100,108,100,92,99,106,100,108,111,101,119,94,105,106,105,118,107,113,108,103,102,108,103,127,100,107,101,105,105,109,116,108,114,106,112,130,118,118,108,113,101,100,97,112,80,112,110,99,100,100,98,131,103,104,104,104,116,104,100,93,116,105,113,104,113,122,106,111,111,102,95,97,112,103,108,99,103,99,107,101,107,112,89,109,107,102,107,100,96,101,88,99,104,92,97,121,97,102,104,93,106,100,104,102,103,109,113,103,102,95,115,104,109,96,99,109,114,115,102,97,97,103,108,104,109,112,111,109,91,101,102,97,100,119,108,106,98,109,121,102,109,105,110,98,98,118,113,97,101,105,105,103,106,104,98,99,95,103,109,102,103,94,108,105,90,95,101,112,98,89,98,98,95,113,107,125,115,100,108,106,110,102,110,99,97,93,98,96,108,109,118,106,101,93,110,106,98,93,98,116,103,99,112,116,96,115,103,99,100,86,102,96,113,107,113,106,112,118,110,106,91,103,98,125,93,112,102,119,113,103,90,115,93,104,110,99,95,106,101,100,100,100,100,108,98,109,103,108,106,105,104,91,108,99,102,114,109,108,106,100,97,101,117,101,96,105,106,117,96,115,93,87,109,100,120,109,112,109,96,111,91,99,117,104,102,105,95,94,94,108,108,93,96,111,97,109,102,93,112,104,96,108,95,109,97,110,109,94,102,96,108,97,112,87,99,91,95,111,102,102,111,107,91,107,101,80,112,108,113,99,95,95,117,83,92,105,102,102,109, +485.97424,99,131,92,95,114,100,102,89,101,109,88,109,121,106,142,118,103,90,104,109,102,106,117,104,100,102,100,93,101,109,100,95,97,106,97,113,95,100,96,94,117,95,97,112,106,114,121,94,101,104,103,99,102,103,99,100,105,101,102,81,105,111,120,91,89,103,98,104,109,87,90,98,99,102,103,120,93,109,104,97,101,96,94,107,104,109,111,109,96,95,118,108,105,103,106,109,99,90,87,98,89,110,94,94,97,110,92,106,101,99,98,101,114,103,105,106,101,113,112,105,112,108,107,95,103,100,121,88,99,113,115,104,94,110,108,113,101,98,106,95,100,111,95,115,104,95,115,101,103,112,110,97,93,99,93,104,104,98,106,94,106,104,104,115,101,108,101,104,107,112,100,109,94,108,104,96,107,109,102,115,105,110,107,102,102,101,106,94,110,109,96,99,118,104,111,103,115,110,102,103,100,100,99,113,102,117,98,74,112,105,103,112,98,107,107,101,91,94,105,99,105,106,117,96,106,110,96,106,93,94,108,96,105,107,103,108,105,101,105,104,104,110,111,96,116,120,106,105,102,104,99,99,109,103,97,109,103,101,97,105,79,113,103,100,94,107,113,101,101,97,104,104,95,105,110,97,105,105,89,113,113,95,99,100,112,103,96,99,96,115,103,108,109,115,107,98,102,109,101,97,109,95,114,111,101,102,76,107,102,106,110,114,97,109,113,101,96,111,99,69,109,101,103,106,99,122,116,96,107,112,100,98,102,92,117,101,109,111,79,108,104,109,80,91,103,102,113,98,105,90,98,99,99,105,100,114,110,110,109,112,107,99,99,118,110,88,99,105,115,94,102,109,104,106,107,117,100,102,99,105,108,109,95,109,107,110,104,108,105,95,99,103,100,102,103,101,102,103,109,101,102,104,101,96,111,100,107,109,106,99,101,107,102,101,106,96,101,100,115,114,96,109,103,109,108,94,110,110,105,101,106,105,102,99,97,95,109,111,108,105,107,96,105,103,107,103,99,105,110,118,101,99,105,114,105,102,109,103,105,96,97,103,100,103,88,113,105,106,102,92,103,109,120,108,110,92,100,109,112,107,113,103,113,98,120,102,105,102,109,111,96,95,100,103,93,90,98,100,114,114,100,101,106,117,110,106,106,102,108,104,103,106,99,100,79,109,121,101,117,98,107,118,100,107,94,99,106,97,111,94,99,116,106,104,98,101,105,101,96,96,111,103,99,99,114,112,104,76,117,105,99,99,97,104,100,105,112,99,93,95,110,108,106,97,112,99,101,97,98,111,96,102,104,110,106,100,104,105,91,112,102,98,112,107,106,101,110,98,119,77,106,103,103,105,104,105,96,104,94,113,104,98,112,98,109,106,107,100,85,107,98,112,97,113,105,112,103,107,100,97,112,115,109,104,108,103,95,86,114,99,114,103,106,115,101,114,112,94,101,95,108,108,105,108,111,109,102,89,106,121,107,111,99,110,121,93,121,101,107,90,103,106,110,101,103,91,109,94,109,115,97,103,105,95,97,111,102,100,95,107,99,103,107,101,103,102,95,107,111,103,106,109,103,104,116,110,98,96,99,93,105,100,104,104,107,106,113,102,104,108,106,110,108,93,90,94,108,97,106,100,89,108,111,94,102,99,103,101,101,105,101,101,102,97,91,87,114,114,102,115,103,91,104,108,112,109,103,109,111,95,108,110,109,91,111,111,115,102,112,103,101,103,98,108,98,103,91,113,109,73,114,80,126,124,103,105,98,88,116,103,104,112,108,111,95,111,92,113,115,105,109,110,102,101,102,106,99,109,106,104,104,100,105,107,109,99,108,94,99,97,114,101,101,113,87,99,110,119,113,85,118,102,97,105,100,107,95,102,116,102,110,105,102,107,97,118,100,104,121,106,104,109,98,111,111,99,98,96,99,114,106,104,95,117,104,109,108,94,101,91,105,103,95,106,102,127,110,108,112,108,101,106,110,108,103,101,99,100,109,112,102,113,95,113,106,99,93,109,105,110,110,84,103,110,109,102,101,105,91,99,117,88,97,110,104,103,91,99,98,103,108,110,99,105,101,114,98,103,98,122,116,91,100,115,86,109,116,99,106,105,92,109,116,108,95,117,103,108,99,104,96,108,113,103,114,112,106,100,103,96,99,106,100,99,104,95,104,114,99,112,100,105,97,114,110,100,103,99,109,109,101,111,113,106,104,103,87,106,94,102,110,113,116,94,94,94,101,110,106,101,94,98,100,92,104,87,96,122,101,101,98,98,103,105,110,96,75,108,91,91,93,115,106,86,99,101,108,101,99,108,100,108,104,113,102,101,121,115,104,111,109,98,107,108,111,100,91,104,106,103,119,104,104,108,97,123,106,103,110,99,108,95,106,100,108,100,103,118,108,107,104,114,116,105,107,104,101,110,101,99,89,105,91,102,108,103,105,103,85,97,85,109,87,107,103,99,88,103,107,94,98,102,115,106,96,112,84,85,110,104,114,95,97,105,97,110,98,95,104,112,106,99,112,94,118,101,110,102,93,116,110,94,97,109,103,110,111,102,100,99,110,112,98,113,99,101,96,102,97,111,97,102,100,104,114,113,97,105,100,97,105,109,113,110,97,95,102,99,99,77,110,87,106,80,104,113,108,106,118,95,109,99,122,100,106,97,107,95,107,111,111,97,99,96,110,93,110,97,98,99,97,112,105,122,98,109,106,93,94,103,108,101,102,105,102,99,103,102,91,105,92,96,73,108,113,112,107,105,100,94,106,100,102,106,90,108,104,80,107,94,94,115,97,109,110,107,107,104,106,119,105,107,111,103,98,89,100,102,105,115,108,104,91,107,103,105,110,108,107,80,104,103,105,106,100,99,96,106,96,115,105,106,100,101,94,99,108,103,116,101,95,101,102,113,110,100,82,85,106,110,97,101,113,100,108,91,95,94,101,90,109,109,103,99,111,124,99,104,103,101,105,103,87,100,95,105,95,84,113,96,119,115,113,104,108,100,114,100,112,98,109,97,100,108,111,100,102,88,95,107,89,111,96,100,102,112,87,99,103,105,100,100,100,78,102,97,102,109,101,101,103,105,96,98,112,96,91,109,112,107,104,106,100,103,102,100,105,117,100,98,91,90,94,89,112,96,102,138,89,100,102,101,113,94,110,112,106,105,111,111,106,104,98,121,105,108,101,106,100,95,102,102,106,102,103,88,101,103,102,98,108,99,100,101,101,98,99,108,108,97,94,105,102,115,91,115,93,111,110,110,106,108,94,103,101,105,108,85,97,100,102,94,91,100,95,100,105,102,108,108,105,101,103,101,92,116,95,97,105,99,105,106,109,99,101,97,102,101,105,105,92,103,96,107,98,104,99,108,89,103,90,104,105,109,132,111,105,103,104,98,104,98,106,128,100,110,107,87,104,103,101,92,103,107,111,120,112,106,89,109,104,102,107,104,93,76,102,109,89,101,94,103,106,98,106,96,106,109,106,95,100,108,109,102,102,118,87,107,96,100,113,91,111,99,96,101,117,95,99,104,100,98,97,102,107,107,87,104,102,111,99,111,104,130,104,85,103,97,101,99,100,78,108,81,119,101,107,105,79,101,79,114,106,100,100,113,113,101,102,101,100,97,106,110,99,99,106,97,113,101,95,100,103,105,93,95,95,111,109,100,105,107,92,99,98,93,92,119,114,100,114,101,93,102,119,107,106,105,100,96,104,112,111,104,94,92,104,106,90,97,113,104,109,97,104,106,100,107,101,108,104,108,113,105,93,104,103,102,98,107,96,113,105,104,94,104,106,110,95,106,105,115,115,105,111,106,100,108,92,103,94,100,103,97,101,102,105,94,100,98,100,101,105,91,117,103,112,95,109,91,104,99,102,132,103,110,101,102,91,102,113,102,111,101,104,105,100,102,106,104,124,93,92,111,102,117,113,87,97,108,98,93,95,112,105,100,106,87,81,97,100,102,100,94,89,112,94,111,87,86,96,101,102,101,113,113,95,90,113,111,107,105,102,99,105,110,105,99,101,100,95,117,91,112,102,101,91,70,102,106,110,104,93,90,92,88,107,103,102,95,108,98,99,96,107,102,102,103,89,104,105,120,102,107,90,110,101,124,105,100,99,103,94,91,102,103,115,107,106,91,110,95,95,101,97,108,101,113,96,101,107,103,102,97,112,110,102,116,94,101,104,97,100,106,102,105,95,100,89,110,113,88,106,93,92,98,95,112,96,101,101,104,108,99,87,108,100,113,111,100,100,89,97,87,101,93,108,105,99,121,101,100,109,98,101,102,99,97,102,119,113,109,103,109,103,109,104,99,102,95,101,99,103,98,102,95,70,101,104,104,104,105,101,108,102,98,91,91,98,110,100,111,100,106,102,120,109,103,94,102,89,101,102,107,100,112,106,95,98,101,104,115,96,99,94,97,95,85,108,96,106,109,115,101,90,94,108,96,108,107,95,97,109,105,112,114,102,88,98,104,103,95,101,108,105,99,99,106,104,98,93,105,105,91,104,94,100,94,92,110,111,98,95,104,106,103,92,100,109,105,92,94,114,86,111,113,108,104,105,97,68,86,103,113,100,91,84,106,103,101,102,95,101,108,95,106,93,99,100,105,102,100,102,97,98,104,102,105,100,104,100,96,102,104,99,99,102,103,95,100,98,102,97,103,107,105,97,101,101,94,102,113,106,94,107,109,98,101,103,108,99,101,92,109,100,114,106,95,101,96,100,95,97,81,98,108,98,109,94,101,101,84,109,94,99,106,99,91,92,99,100,98,86,97,96,100,94,120,101,107,127,122,113,106,106,104,104,119,102,107,103,103,103,110,93,108,95,107,108,91,103,110,96,82,111,94,100,112,95,104,106,115,88,109,91,103,102,106,97,98, +486.11481,106,105,92,100,86,110,103,106,98,87,102,100,90,117,102,105,96,101,96,90,96,101,94,100,99,112,94,87,104,101,101,100,110,105,93,102,108,95,100,108,98,66,100,109,104,95,104,109,93,91,97,96,103,98,113,101,102,98,82,84,94,116,93,105,97,103,95,107,111,108,95,98,93,81,85,107,100,104,104,104,111,102,109,107,92,93,96,111,104,100,100,106,99,96,95,100,91,96,92,103,109,84,100,91,92,105,99,95,96,97,91,101,103,101,105,96,103,95,86,97,99,106,103,102,103,107,98,103,110,105,94,103,100,91,97,100,97,105,106,99,114,99,91,101,95,107,105,103,93,98,105,100,99,98,71,94,102,104,109,97,87,94,101,111,91,105,106,101,103,106,105,94,108,115,100,106,107,104,110,98,102,93,102,109,92,103,94,90,116,89,101,95,113,108,110,99,106,96,95,102,101,104,107,98,101,103,100,105,110,102,97,92,95,110,113,104,95,102,83,115,108,105,82,105,98,100,86,113,105,98,108,100,93,110,111,105,106,98,108,108,95,94,112,95,103,110,86,109,90,99,103,110,101,95,96,99,102,109,103,97,92,98,96,94,95,118,102,103,110,102,96,98,99,95,111,97,106,99,96,112,94,108,87,102,109,113,89,89,95,85,101,100,112,109,108,99,103,112,117,105,89,96,99,101,116,105,107,97,104,101,97,119,104,117,102,108,101,99,92,102,111,101,99,107,103,101,100,100,96,87,114,98,112,101,110,115,102,98,103,96,110,117,96,101,112,109,106,90,109,103,109,105,97,94,109,101,93,104,109,111,100,103,94,98,110,104,105,98,91,109,95,86,101,98,114,105,113,111,97,108,107,105,97,108,95,113,74,111,108,100,114,115,106,119,109,105,96,100,125,107,98,105,110,96,114,103,105,109,109,92,109,108,101,107,115,105,114,112,119,102,93,104,105,104,95,100,110,106,106,104,104,109,114,103,120,97,91,100,94,87,101,98,100,107,91,99,106,82,104,109,98,104,110,103,110,100,107,104,104,88,95,104,102,105,103,100,101,101,96,105,92,122,105,98,98,105,98,116,91,97,103,107,107,102,113,101,83,117,105,101,103,109,101,115,96,95,97,108,114,89,107,96,116,117,100,98,100,108,104,103,98,112,108,100,97,89,102,117,94,101,105,116,114,107,98,106,112,104,95,79,117,97,93,104,104,106,86,101,102,101,104,98,101,112,108,101,102,101,119,93,109,104,108,101,103,101,111,101,98,102,106,116,112,96,107,103,112,112,102,98,95,104,117,107,94,101,105,95,101,100,105,100,110,105,105,105,105,113,110,115,110,109,112,104,102,103,99,100,114,68,106,105,97,66,90,106,102,99,90,99,112,98,95,112,109,106,109,109,117,98,106,108,109,93,107,99,94,96,100,113,107,99,106,102,101,95,100,88,109,103,108,109,99,95,104,94,107,109,95,106,96,99,101,102,109,98,98,118,99,108,109,98,98,99,102,102,108,94,99,98,107,117,102,95,104,109,114,105,104,106,102,104,100,97,96,109,105,109,101,108,78,101,101,102,105,102,112,112,106,129,86,101,101,103,98,115,96,106,110,84,100,98,116,95,98,90,113,101,106,98,106,102,113,112,103,105,92,102,96,114,91,88,100,99,97,105,109,104,104,107,107,108,102,103,107,124,104,99,100,99,109,100,102,101,104,108,117,99,107,106,112,107,89,98,89,105,96,93,103,117,95,104,96,96,95,113,86,102,107,100,105,107,110,100,106,119,98,105,104,100,106,105,103,116,118,104,113,96,99,101,82,100,100,115,116,105,113,105,106,108,116,96,95,94,113,109,110,103,94,110,108,110,102,107,112,102,113,98,95,100,103,95,108,106,102,103,103,105,99,108,112,116,102,113,102,96,104,90,108,88,107,97,104,107,92,106,99,105,99,109,98,102,110,105,96,113,92,105,103,103,98,105,100,105,97,92,90,99,112,91,104,99,95,95,94,107,100,110,95,108,95,110,101,102,104,100,92,91,107,141,100,103,116,101,116,100,99,99,98,88,107,102,104,99,88,90,96,112,91,98,89,96,96,108,99,109,99,109,106,98,92,98,102,102,97,106,68,105,95,104,103,108,98,105,102,99,105,118,94,102,107,111,111,113,102,111,97,103,100,107,100,112,101,101,95,100,102,108,112,110,109,103,77,98,100,110,105,91,108,91,96,95,89,92,108,100,102,98,95,92,102,107,102,100,100,106,130,102,116,107,105,100,74,113,103,99,109,101,92,105,99,98,95,104,113,100,97,99,102,83,107,106,121,97,91,112,83,102,102,99,103,106,110,94,119,91,92,101,105,92,108,110,97,100,90,103,110,104,101,97,95,103,99,91,112,108,111,112,99,107,97,100,92,102,98,93,92,98,102,95,97,105,89,107,96,98,116,114,92,92,94,111,109,114,97,105,104,103,121,108,116,113,97,112,101,101,108,112,99,95,99,106,98,92,109,105,90,107,98,101,87,113,93,100,106,92,105,101,92,108,104,102,109,84,103,100,100,107,92,101,104,107,111,99,103,110,88,104,95,105,101,99,102,113,115,99,102,101,102,102,103,92,106,103,115,102,97,102,111,105,116,100,104,90,104,108,108,94,110,103,103,109,109,106,112,110,76,99,109,105,99,112,107,105,95,107,121,119,130,102,101,99,102,103,97,120,99,101,112,103,109,106,98,95,117,106,117,122,111,112,101,117,104,99,106,112,109,112,101,98,88,115,92,98,99,107,104,105,119,99,99,107,106,91,107,109,103,111,118,99,110,101,110,91,110,92,94,106,108,117,107,113,118,94,99,98,100,106,100,109,108,100,91,105,91,98,97,121,100,107,104,120,109,110,91,102,104,107,104,112,109,93,102,104,108,94,98,98,99,85,106,113,99,101,95,110,99,102,91,96,89,110,101,105,99,108,97,99,93,108,105,100,103,113,109,102,120,104,109,97,115,109,102,96,103,100,106,103,108,91,106,107,91,118,107,100,110,99,114,96,98,96,106,99,97,103,113,107,117,105,112,100,106,97,120,102,92,105,112,108,107,107,100,102,100,106,97,95,99,101,111,108,105,107,109,98,101,94,91,106,100,108,117,103,126,96,107,102,92,94,96,95,108,108,107,101,96,94,112,102,117,102,81,103,98,106,106,107,104,103,90,105,108,95,94,99,118,105,103,109,113,103,103,100,99,92,102,91,112,98,110,102,71,121,113,97,108,101,107,107,112,108,94,101,116,107,95,102,102,102,97,105,108,113,86,105,108,108,97,87,108,98,99,106,103,95,96,89,104,109,98,101,102,107,103,94,96,95,108,106,101,103,102,103,103,105,98,116,102,98,92,97,91,105,94,87,98,95,115,98,101,101,109,103,105,86,105,117,125,113,100,75,95,92,103,103,104,101,99,97,104,107,98,96,95,100,104,108,98,100,109,110,109,94,107,105,122,115,113,94,102,97,96,114,102,99,116,97,103,97,99,101,89,111,100,106,109,104,103,107,104,105,104,110,95,114,108,124,103,119,118,106,98,104,100,112,99,108,94,94,95,112,103,110,104,121,105,92,96,99,105,108,96,90,109,100,110,102,105,99,96,95,105,94,99,104,106,97,95,109,94,109,101,108,99,108,102,96,97,100,99,109,106,104,91,92,96,116,111,102,86,96,120,102,108,90,111,108,100,90,93,106,100,101,117,109,108,108,102,95,102,113,94,95,104,117,109,107,118,99,100,99,102,100,101,107,106,112,129,110,101,105,104,117,94,98,105,94,107,92,100,102,116,99,99,96,99,112,92,105,103,116,94,99,95,102,99,96,103,87,83,100,93,112,104,97,93,94,95,105,101,99,95,92,103,92,113,108,99,101,104,110,97,101,102,104,92,102,109,99,108,98,109,103,91,112,113,104,100,104,84,98,101,110,105,99,104,98,101,111,95,100,104,96,118,102,98,105,98,113,107,108,84,111,106,112,106,98,102,111,102,118,104,103,108,118,109,116,112,109,105,105,129,109,107,107,94,104,98,101,110,99,98,101,93,103,101,101,90,102,109,91,107,102,105,125,102,109,100,104,105,100,110,98,108,124,106,112,96,107,102,96,95,101,106,103,109,82,96,111,113,112,99,102,94,105,115,94,111,110,110,102,106,105,112,105,117,106,103,100,103,93,112,94,96,109,101,108,108,107,107,114,100,100,102,98,90,94,102,97,96,107,111,109,104,101,94,98,116,101,97,105,105,95,110,105,99,101,94,99,108,105,99,102,109,100,105,95,93,102,95,104,109,98,103,98,111,107,104,111,102,96,103,100,119,92,104,127,104,107,106,102,101,107,76,110,94,107,101,108,105,104,107,106,100,98,118,102,103,94,110,105,97,110,105,98,98,102,106,116,117,107,106,96,108,95,97,108,103,113,112,102,109,126,98,98,103,102,68,106,104,97,101,104,111,95,104,103,98,104,103,101,114,110,106,102,102,109,105,98,98,102,98,99,102,96,106,106,102,103,105,104,97,102,78,96,101,116,102,100,101,112,110,105,91,116,99,113,101,106,102,88,108,105,104,111,111,109,103,77,97,110,102,113,111,114,103,98,114,104,136,110,101,116,96,103,104,106,105,106,99,72,120,91,96,101,97,111,115,93,98,110,102,110,109,75,107,120,103,101,108,79,119,110,109,96,96,97,96,86,94,100,105,83,116,115,106,99,97,118,106,118,106,100,102,106,93,95,101,104,112,99,113,98,109,101,100,109,97,94,107,96,98,110,100,109,104,110,98,91,112,107,93,99,100,99,73,95,121,100,98,103,110,113,88,102,108,104,95,94,99,109,104,107,101,98,102,108,100,108,117,88,96,87,103,109,102,94,99,102, +486.25537,108,108,95,103,102,107,102,100,85,105,107,104,96,109,102,109,104,115,109,101,110,99,112,103,110,102,103,116,104,108,101,96,101,115,112,105,99,83,109,114,84,113,97,106,102,105,81,113,107,98,93,96,113,92,113,103,100,100,114,101,108,91,98,80,88,101,101,98,107,100,95,106,115,107,97,102,112,97,123,96,100,105,95,100,99,100,107,100,103,103,110,107,104,104,103,97,108,102,95,105,92,99,94,113,109,115,98,101,97,109,93,103,106,112,120,110,109,112,109,107,110,105,104,111,88,110,96,94,100,111,96,98,106,99,110,100,112,99,94,108,107,109,85,108,114,100,108,111,108,91,103,108,115,91,99,97,97,114,103,109,111,101,110,108,96,102,104,98,100,99,98,100,90,110,99,111,113,93,110,112,105,107,96,121,94,92,110,94,110,107,106,108,109,117,120,109,93,110,105,104,99,87,105,108,103,100,114,103,117,105,97,125,123,107,113,105,117,94,80,97,100,105,113,102,102,110,103,106,112,102,107,117,104,107,104,118,96,124,104,93,110,95,108,110,102,102,110,103,118,114,100,95,111,116,108,107,109,116,108,101,99,109,99,98,87,103,104,105,104,104,107,101,101,103,95,104,109,111,92,104,119,95,112,99,106,133,95,96,106,112,104,111,104,109,103,95,111,104,103,107,103,80,105,121,84,106,106,112,90,107,93,113,103,109,116,113,102,92,115,89,101,116,105,107,109,103,95,98,119,102,99,109,110,110,100,107,96,97,113,111,95,97,101,96,112,107,101,114,112,103,107,113,100,105,102,99,115,102,107,103,108,108,107,94,114,111,104,100,101,113,105,101,106,98,103,100,98,95,88,100,110,100,101,111,109,107,99,98,108,107,103,104,99,91,104,95,106,107,112,108,106,106,104,103,104,91,105,104,109,96,108,104,103,107,105,106,105,103,109,102,98,108,95,104,106,115,102,102,108,100,94,104,98,100,97,100,104,100,109,100,105,91,113,104,104,93,107,108,106,105,101,96,104,105,101,98,112,107,97,89,100,100,113,108,102,104,103,109,106,102,100,105,106,113,94,102,107,117,121,105,104,105,112,110,122,109,104,115,100,104,94,104,98,101,113,111,97,93,110,101,90,84,110,89,110,102,110,109,117,98,111,102,112,103,104,100,69,113,105,103,112,102,103,105,98,107,106,128,105,102,100,102,93,99,98,92,113,101,99,106,100,99,104,92,118,98,65,98,100,111,111,103,109,106,109,96,114,109,109,108,95,113,101,100,111,104,117,100,106,104,102,99,114,105,98,98,118,112,108,113,111,102,109,100,117,115,95,115,108,108,106,116,107,105,113,108,102,123,102,112,105,115,102,94,104,110,101,106,113,113,106,105,116,100,104,107,108,92,114,111,98,108,115,98,114,100,103,111,106,113,95,104,94,103,111,101,99,98,108,108,109,115,96,98,104,105,99,104,101,105,108,105,101,114,104,101,108,108,109,107,100,106,98,119,92,99,104,98,108,88,84,104,104,100,91,108,106,114,108,108,99,107,108,92,97,113,105,116,113,108,118,107,101,99,102,106,114,105,88,95,104,110,99,102,119,111,99,114,114,105,110,110,103,96,98,98,99,108,103,83,100,110,99,106,102,101,107,112,89,107,104,109,94,108,105,108,97,78,118,113,125,101,87,115,102,108,106,95,95,108,102,106,100,96,108,91,100,103,114,108,85,117,110,109,97,109,100,116,116,92,109,109,109,99,105,112,110,103,111,99,110,98,115,107,107,108,101,104,105,109,117,107,113,105,94,106,116,140,109,110,105,105,100,112,116,101,102,113,108,109,118,105,103,105,105,104,86,105,108,100,118,98,113,111,118,100,120,118,106,102,113,103,98,103,112,119,110,110,100,94,99,101,114,80,96,108,94,97,104,102,110,102,103,107,102,112,118,123,140,117,113,108,112,109,106,104,99,95,102,98,104,111,114,106,104,108,116,99,92,106,102,108,117,108,94,105,108,115,116,110,99,111,108,86,97,106,104,112,101,101,115,106,108,101,110,104,109,101,114,107,106,106,111,96,108,105,90,100,109,113,106,103,95,103,97,108,102,104,86,116,109,117,109,109,104,100,96,94,109,107,94,114,100,97,102,118,107,103,108,107,101,109,106,101,103,104,102,105,111,114,73,84,111,87,113,105,96,87,107,104,96,109,101,94,105,97,112,109,102,113,110,109,110,102,102,98,100,102,109,96,98,87,97,125,99,104,91,113,105,99,95,102,108,108,99,90,100,98,99,104,87,99,117,102,99,112,118,104,96,114,117,127,99,93,107,105,108,95,111,100,95,118,108,113,113,109,96,118,97,99,96,103,106,103,104,109,102,100,113,101,106,112,117,122,105,111,109,102,102,117,94,114,103,104,93,130,100,102,104,105,103,115,112,117,109,100,101,108,107,108,114,109,92,109,112,104,98,99,112,101,108,107,101,98,98,110,109,95,106,103,103,103,110,103,114,102,106,103,105,117,98,112,99,98,107,100,104,101,95,102,114,98,99,100,107,117,101,105,102,99,99,107,105,100,104,107,114,110,107,97,100,87,107,107,108,112,99,108,112,97,101,97,112,103,122,114,106,84,119,102,110,95,125,101,105,101,105,103,103,91,100,108,107,110,106,104,108,97,93,96,97,104,103,109,106,103,110,100,117,103,103,121,108,108,95,112,107,98,106,115,110,103,94,103,107,93,108,102,108,108,86,105,109,110,119,107,108,100,105,102,113,118,106,94,123,103,106,120,108,83,117,117,100,112,103,96,107,110,98,109,112,101,101,104,106,115,109,102,97,106,111,102,111,113,93,112,94,111,108,105,113,112,96,102,101,116,117,105,109,112,112,102,118,103,104,96,100,100,103,115,111,107,98,105,99,109,108,110,111,90,96,115,113,98,121,103,112,101,112,102,105,112,101,101,117,111,120,103,95,96,97,108,111,95,108,112,104,104,113,102,112,113,106,95,106,99,112,98,99,94,120,107,120,102,109,110,110,98,103,101,96,108,109,105,103,99,107,108,108,104,112,98,101,94,103,108,102,109,107,112,107,105,105,105,114,97,111,104,99,103,106,107,106,108,121,102,96,108,105,103,107,101,108,106,98,105,113,108,106,110,102,104,105,106,106,91,117,109,105,100,113,82,98,101,107,109,131,103,109,96,94,113,106,99,108,90,104,104,114,109,107,97,102,97,104,98,104,106,111,100,95,104,99,116,111,98,91,120,95,104,106,99,101,100,124,104,102,117,103,93,99,98,112,102,96,106,120,102,102,100,96,107,109,103,109,107,123,101,103,104,97,102,96,96,88,104,115,120,124,104,106,112,113,112,105,106,101,103,103,104,101,110,116,102,100,97,108,101,118,102,91,105,103,100,106,88,108,98,111,108,89,109,97,108,101,112,107,110,99,101,117,97,105,99,108,103,102,111,119,104,109,104,105,106,110,102,111,109,125,100,113,103,107,114,105,104,106,113,102,90,117,96,98,108,109,116,105,111,111,103,105,109,108,102,105,101,103,98,103,104,115,100,105,105,103,107,101,104,111,103,101,112,102,106,101,104,105,105,98,96,98,125,113,103,94,109,113,74,105,104,97,112,123,106,101,87,105,112,113,108,111,98,111,111,107,107,107,120,101,113,113,112,106,100,87,104,101,106,103,105,89,100,111,111,120,108,113,96,109,98,96,106,104,98,113,97,107,113,98,108,105,102,109,92,97,96,110,112,108,102,102,113,101,105,104,106,86,109,110,105,109,101,108,106,101,109,101,114,101,106,105,105,101,108,101,110,98,99,78,105,97,117,104,103,103,98,120,93,98,106,105,112,115,103,101,100,98,107,96,112,102,101,95,96,96,106,89,106,115,117,112,91,102,112,105,70,99,103,105,110,130,103,106,117,107,105,113,111,107,119,106,100,110,96,90,103,98,107,90,107,109,106,113,133,118,107,98,108,98,101,102,104,105,112,106,93,96,102,110,105,121,104,113,104,100,111,105,101,103,83,104,105,108,94,101,114,108,111,117,100,110,91,106,83,105,117,101,104,105,130,94,105,97,113,116,121,113,105,103,102,104,105,110,109,116,96,92,103,111,114,111,97,113,95,105,120,97,112,111,100,102,106,103,104,89,110,108,108,106,100,109,101,95,104,115,95,107,100,105,107,111,104,105,110,113,116,110,105,100,113,109,94,103,107,105,102,96,104,109,100,108,107,110,101,94,106,95,113,110,110,117,91,107,106,112,99,113,108,96,100,103,121,101,116,103,117,100,111,103,113,104,105,116,112,99,101,102,128,110,89,103,100,100,90,102,96,115,97,109,110,92,93,108,110,97,116,99,84,105,110,102,109,106,95,117,122,100,104,106,97,100,108,99,100,98,100,102,107,107,84,102,101,94,114,99,95,73,103,110,102,118,119,105,108,106,105,95,97,110,101,91,104,100,111,103,114,88,93,90,102,96,96,108,111,104,104,119,113,91,105,96,97,101,106,99,113,102,110,108,103,108,102,100,106,99,104,105,102,105,119,93,101,106,105,97,101,99,106,105,77,110,93,100,113,118,99,100,103,96,100,114,91,100,99,104,96,95,107,94,96,110,99,86,104,102,98,103,109,106,110,94,105,102,99,103,96,109,100,108,102,109,91,88,108,100,97,110,104,95,109,79,109,106,102,96,106,106,96,101,87,88,111,89,108,106,108,106,112,89,97,102,96,103,118,102,107,103,112,110,115,97,103,105,110,97,95,104,92,105,93,95,95,101,96,93,103,98,104,96,105,102,85,101,105,111,98,99,101,102,105,111,105,86,119,91,96,100,105,102,107,97,102,109,101,98,105,101,103,99,80,107,97,97,104,108,108,126,102,99,98, +486.39594,99,104,99,104,111,91,112,98,83,94,96,111,119,116,113,108,88,109,92,103,110,109,98,104,104,101,108,105,110,109,100,94,91,103,111,100,110,105,99,98,102,110,100,91,103,105,101,109,86,94,109,104,110,105,97,94,103,104,110,85,105,111,93,98,113,93,102,98,85,105,109,107,102,110,97,109,122,94,99,102,99,105,101,104,110,94,99,102,104,96,99,108,101,103,97,109,106,102,103,104,104,95,99,98,101,104,99,94,105,113,119,91,108,97,123,109,94,100,105,97,94,107,111,100,120,100,126,103,109,102,106,108,97,107,101,107,101,104,88,110,94,95,104,111,99,95,101,96,95,107,110,105,107,96,96,103,103,96,103,101,108,105,79,96,98,109,107,79,110,104,114,91,102,102,94,98,103,95,102,108,100,107,102,103,110,92,99,94,106,75,117,108,108,111,91,103,99,108,113,91,94,97,106,86,105,111,111,106,116,95,100,114,104,100,117,108,101,112,98,92,102,111,105,97,116,110,104,100,107,117,101,107,101,103,104,108,103,108,96,112,109,106,118,95,99,108,96,99,103,104,111,100,112,92,104,112,107,108,99,102,87,108,102,106,102,104,102,94,98,92,110,107,108,101,97,94,100,103,100,99,110,104,78,108,114,111,106,100,142,99,104,87,94,109,105,103,107,100,88,96,104,102,102,116,115,106,103,99,101,110,97,97,102,99,104,107,108,100,104,101,82,117,109,105,102,105,99,104,117,109,106,110,100,106,107,105,108,111,108,112,106,103,102,98,106,113,102,100,110,96,95,105,106,118,110,100,110,105,112,101,101,99,100,101,95,107,107,106,104,122,113,105,109,115,116,103,96,102,109,105,117,106,113,107,111,101,99,114,102,103,109,112,102,110,105,100,103,103,110,103,100,120,103,106,93,102,94,117,108,100,100,108,117,100,100,94,104,100,106,101,100,103,113,117,109,94,111,97,88,100,100,100,102,94,101,102,107,115,103,104,100,109,106,130,105,106,102,98,104,105,96,106,108,116,125,96,95,98,109,102,97,99,103,107,94,106,102,87,109,103,102,109,106,102,105,92,117,114,107,104,109,104,104,103,104,115,115,107,103,98,110,95,98,103,103,92,104,110,110,108,120,100,97,94,105,108,106,105,102,117,112,108,103,108,107,103,104,98,108,99,92,100,100,91,108,96,113,118,89,96,89,102,99,99,110,105,107,106,99,102,98,98,100,102,109,109,96,94,125,111,109,103,120,84,108,112,103,96,104,110,107,96,102,106,96,87,109,117,103,99,101,86,105,103,104,112,117,101,109,116,108,97,108,99,101,106,114,106,114,97,112,113,99,101,106,128,106,104,113,101,108,117,105,103,104,89,98,99,99,111,105,113,103,102,97,111,100,100,98,107,119,104,105,97,109,103,92,107,106,105,96,105,99,111,104,99,112,102,111,102,109,94,113,113,93,103,95,110,93,105,95,104,104,119,114,112,114,98,100,110,114,103,111,102,105,112,109,99,114,99,109,101,109,107,114,103,105,100,100,97,113,123,107,92,94,95,101,98,109,104,109,106,99,109,109,107,115,109,105,96,107,116,106,105,114,102,102,101,111,112,111,109,114,98,104,94,95,89,95,115,103,94,97,81,112,108,105,92,111,102,94,101,102,107,100,110,109,94,107,105,104,107,117,109,99,104,102,112,92,102,114,92,106,95,110,102,114,124,121,109,108,105,90,98,110,117,92,98,121,112,109,117,114,104,106,112,101,109,113,96,105,106,98,105,108,120,101,104,110,116,100,99,101,105,109,102,92,109,115,101,104,99,87,102,113,107,104,111,104,104,106,105,110,95,104,110,109,94,102,104,109,111,105,99,106,97,112,106,99,96,101,99,114,95,105,117,116,111,105,108,95,111,105,97,102,96,104,92,109,105,95,106,109,119,98,106,102,113,103,100,100,107,104,107,94,133,103,103,110,108,110,117,100,106,98,102,108,102,102,107,112,99,96,104,100,102,98,107,110,115,110,110,100,124,116,102,98,97,100,104,103,106,98,105,95,100,108,96,97,103,108,100,108,129,106,110,92,106,114,101,110,105,106,113,105,92,88,103,104,105,119,104,105,111,99,117,101,99,83,112,107,102,100,106,110,103,125,95,94,105,107,106,106,112,113,102,107,103,86,100,115,103,96,90,105,113,96,120,106,106,108,105,107,93,109,95,114,105,112,101,103,115,113,99,92,101,97,113,113,102,103,103,117,103,113,101,101,106,97,90,97,97,94,105,104,108,111,110,101,117,100,120,101,91,90,90,111,101,107,97,102,112,97,107,104,113,91,102,91,112,107,105,100,106,96,99,105,107,110,95,103,104,109,101,100,98,113,108,110,105,81,87,104,102,94,105,110,105,106,100,91,103,99,100,107,95,107,107,104,110,93,115,94,107,109,104,104,108,105,100,98,99,109,95,100,104,109,108,110,100,115,111,97,106,107,95,97,98,102,110,114,100,107,99,108,114,85,125,105,95,88,115,110,110,105,107,104,101,103,110,110,120,105,105,116,99,113,102,101,100,99,106,108,97,118,104,106,105,108,98,101,93,109,105,100,109,108,105,106,106,110,94,103,102,110,108,111,102,100,112,102,95,121,104,106,123,107,97,121,111,106,99,112,119,111,91,109,106,109,108,99,113,105,119,104,109,106,107,83,109,108,109,118,112,103,102,106,112,102,111,116,114,109,102,115,105,101,105,107,100,105,117,106,112,98,106,115,105,107,95,129,111,120,107,106,107,94,98,109,103,100,125,114,110,113,101,104,102,106,108,113,121,114,76,92,103,100,108,100,100,104,106,108,116,112,103,115,112,112,108,106,111,108,115,106,109,105,98,91,110,107,113,99,115,99,99,95,104,106,104,100,104,114,101,115,105,102,102,109,98,107,107,99,101,101,105,102,103,108,100,125,87,100,110,86,116,103,121,82,111,97,116,99,125,94,108,105,117,105,107,99,106,118,109,111,106,104,108,105,103,117,99,118,99,113,111,101,92,103,101,96,101,114,91,117,104,110,112,105,109,98,109,109,113,104,95,92,114,117,101,102,115,128,102,102,110,107,107,107,114,92,97,106,107,121,106,101,107,112,117,100,97,111,106,114,99,106,95,93,103,95,79,105,105,103,111,100,101,128,107,102,105,96,101,98,119,119,102,105,105,100,105,100,102,106,109,100,97,137,110,115,103,91,95,110,99,107,109,116,103,106,123,103,117,108,103,102,107,97,109,103,108,102,105,94,105,102,103,105,84,98,109,116,91,109,102,105,102,89,103,105,106,106,108,110,101,101,110,102,94,100,106,97,95,95,108,103,102,105,105,95,106,103,112,110,110,102,98,106,93,104,104,100,114,101,103,110,103,111,105,107,118,98,99,104,117,99,95,99,105,97,91,107,97,81,104,110,113,115,89,111,114,105,100,106,109,102,109,95,100,99,104,94,105,103,116,104,110,103,108,102,108,99,110,99,113,88,96,97,100,111,97,102,102,111,104,111,111,121,110,102,114,81,113,105,108,97,99,112,103,111,118,109,106,97,100,96,107,105,96,115,102,100,111,102,115,117,107,104,99,99,113,115,108,105,98,109,109,99,110,104,109,106,108,97,106,110,103,108,104,102,110,104,117,103,108,114,105,99,110,107,103,105,113,105,100,99,102,105,109,113,103,103,105,115,104,106,110,74,109,105,113,109,106,96,113,110,107,108,109,105,94,103,91,97,105,102,102,132,111,106,107,99,105,99,100,118,105,106,92,94,110,99,107,106,97,113,105,102,101,105,110,102,101,103,113,102,105,111,112,107,108,103,140,109,105,106,86,115,102,117,103,110,104,114,106,98,98,99,102,108,111,117,88,110,101,108,109,93,111,110,98,97,105,103,100,103,101,107,107,117,101,105,85,113,112,101,99,115,95,104,110,101,109,96,111,124,105,102,105,99,116,112,110,104,97,101,105,97,112,109,113,106,114,104,101,96,118,106,101,117,117,121,110,113,116,122,105,111,108,102,95,100,104,103,88,105,103,104,102,106,91,98,110,104,108,104,114,103,112,97,102,100,98,104,114,95,109,105,119,105,103,117,102,110,114,111,110,99,101,96,102,102,99,102,112,108,110,108,107,105,96,117,100,111,106,104,112,110,102,124,110,106,99,106,102,102,111,106,106,123,103,111,110,111,98,100,108,84,92,111,94,102,94,106,100,103,110,104,107,107,104,115,98,102,98,98,105,113,120,105,120,119,90,110,99,109,103,96,101,94,109,99,109,96,103,107,109,112,100,111,101,105,96,106,104,109,117,100,113,104,105,99,98,116,112,111,113,103,109,101,111,115,111,104,109,106,104,96,109,101,108,116,96,105,111,104,106,104,92,87,96,97,110,101,103,113,107,106,95,121,107,95,91,107,104,99,104,120,117,118,116,98,117,115,108,101,106,87,103,121,102,122,102,104,109,96,102,113,103,99,101,107,99,110,106,104,91,100,94,98,96,97,99,113,103,84,120,104,112,113,104,112,99,98,113,98,108,112,114,99,100,121,107,102,109,117,106,87,108,108,89,104,102,110,100,103,106,111,96,98,106,102,96,99,103,99,80,92,96,102,102,99,103,113,121,104,108,98,116,99,99,100,100,96,113,109,108,109,106,113,108,96,116,102,102,104,112,103,108,109,97,109,104,113,100,103,104,90,89,100,94,103,109,113,110,102,106,115,105,102,103,106,109,113,109,112,115,91,109,106,102,110,109,110,92,117,104,108,103,105,102,94,95,107,109,103,95,79,99,107,86,95,112,105,104,104,106,108,102,117,116,103,99,99,123,97,106,112,95,104,105,102,107,98,94,91,109,97,91,101,101,105,95,105,113,95,96,109,110, +486.5365,92,95,115,101,106,102,102,100,107,102,64,105,98,106,107,101,113,101,81,99,95,97,105,100,102,103,139,100,109,112,113,90,129,101,101,102,96,92,100,100,100,102,108,96,103,110,100,109,106,107,89,101,108,107,111,106,110,95,103,86,94,100,104,82,86,121,88,109,100,120,105,105,96,102,82,102,102,94,113,94,104,77,104,106,102,94,101,107,108,92,98,103,104,96,109,98,108,103,100,96,102,101,98,99,92,100,113,91,96,101,113,106,83,95,98,105,95,102,109,92,95,100,99,98,115,107,118,98,101,94,103,97,105,98,101,97,104,100,104,100,90,104,96,96,106,115,108,102,98,95,105,101,108,96,82,75,98,99,114,110,91,98,111,108,103,118,101,98,106,94,80,105,111,102,105,101,116,97,97,98,108,105,100,101,106,94,103,98,98,102,83,108,104,99,116,105,101,94,130,103,94,107,93,109,103,113,108,102,113,102,102,100,103,97,103,88,100,101,88,106,101,103,108,102,98,110,103,94,99,98,101,104,99,101,99,107,103,111,107,102,91,99,91,107,105,102,98,100,98,101,113,102,113,107,94,104,99,100,108,98,106,95,96,102,97,109,108,102,108,107,92,96,99,96,111,96,74,121,111,102,98,96,96,94,112,92,83,103,106,103,99,107,102,109,109,107,100,110,100,100,104,107,100,111,100,108,109,107,108,97,114,100,108,111,107,99,101,104,98,103,102,114,105,105,97,113,96,94,128,104,113,97,109,106,109,99,115,103,91,94,105,104,103,98,107,85,105,117,112,104,104,98,101,104,101,99,101,101,109,91,108,112,102,96,97,106,105,112,106,108,104,88,110,97,109,101,105,89,101,92,100,104,105,112,103,101,100,104,110,93,106,95,94,93,89,94,105,112,103,111,101,123,111,100,105,102,94,102,113,102,101,97,105,105,101,86,95,100,105,94,104,105,83,96,108,99,102,99,98,107,95,98,105,104,103,108,98,112,117,104,98,105,89,105,104,104,102,103,105,102,119,116,91,102,96,105,105,100,107,94,99,100,105,111,111,102,92,103,107,109,102,111,105,99,107,104,98,109,104,115,98,110,97,96,104,108,95,101,101,105,95,125,111,104,97,96,100,103,108,112,116,92,99,111,95,104,102,100,102,90,117,91,99,102,101,110,102,94,95,97,102,107,99,100,101,105,104,97,101,105,85,107,96,106,104,101,107,98,98,108,90,110,107,99,114,86,109,112,103,101,119,99,111,101,109,96,96,99,92,104,107,104,104,100,108,98,99,106,114,101,94,87,108,100,104,100,95,106,102,108,99,97,117,95,95,95,104,105,108,102,97,109,95,95,106,104,97,111,109,103,94,104,101,103,90,109,103,87,96,87,94,100,122,106,108,97,100,107,115,105,110,105,101,104,95,103,102,99,107,98,102,109,114,98,114,107,107,92,125,109,107,107,100,101,95,97,101,100,93,96,92,112,104,100,92,98,89,107,90,110,108,112,109,91,92,101,100,110,104,100,102,110,100,94,98,101,96,88,104,102,93,103,102,93,98,102,84,101,103,101,102,111,103,105,109,99,81,100,92,98,106,99,99,96,103,114,109,109,98,101,107,89,105,110,109,94,104,100,105,111,97,88,94,112,96,95,101,91,87,108,99,109,86,105,114,105,95,78,108,106,96,97,108,98,109,104,95,113,88,108,116,106,96,114,111,106,104,98,105,113,100,93,88,99,103,108,97,93,100,109,105,92,84,99,97,101,98,93,98,112,108,104,117,94,110,107,99,104,106,103,98,105,114,104,98,94,106,100,91,111,109,105,107,99,105,103,113,92,98,103,109,108,112,95,110,101,100,105,105,91,104,108,98,105,104,105,101,105,123,106,102,114,107,72,108,99,104,107,97,97,102,108,118,101,107,101,105,93,103,86,95,114,92,111,96,102,101,104,97,98,108,104,121,109,110,103,99,95,115,102,102,103,108,102,110,104,113,94,99,100,110,101,110,105,101,105,109,98,83,100,102,93,108,103,99,97,100,96,106,104,100,103,102,97,111,108,100,104,98,114,111,102,113,111,105,102,105,112,104,96,106,112,106,110,110,90,117,101,99,91,91,95,108,121,95,108,116,104,92,106,105,105,108,106,105,99,104,120,105,101,100,104,126,107,100,98,104,100,95,83,98,95,108,84,98,92,88,101,102,98,97,97,113,106,106,114,125,91,92,106,103,87,95,105,101,101,113,104,120,100,110,100,94,98,104,93,105,105,109,100,95,105,100,106,104,104,107,107,82,100,110,88,95,107,99,100,100,99,88,102,108,111,110,72,107,106,108,104,99,104,107,96,110,95,99,89,87,100,92,102,82,102,97,100,96,106,102,94,96,96,98,103,108,98,88,100,105,110,78,111,96,97,104,116,107,91,93,98,98,102,97,104,107,97,104,112,108,105,97,96,103,107,107,98,95,116,92,89,109,100,110,109,103,88,105,99,106,99,104,108,109,102,107,105,103,116,108,112,99,99,98,86,94,113,105,106,95,118,94,105,96,101,94,108,106,106,108,93,103,105,99,90,116,109,96,112,104,98,97,94,102,96,86,102,104,99,103,93,98,113,98,108,87,104,86,98,100,88,121,81,105,96,94,87,96,99,104,89,113,96,73,88,105,111,105,105,68,96,102,112,109,101,83,95,87,109,115,106,91,99,102,108,114,118,95,108,85,100,101,91,108,121,116,111,112,107,101,108,113,112,108,108,96,117,102,105,99,91,100,107,109,107,108,107,103,101,100,120,117,103,101,109,94,111,100,100,99,113,112,107,110,98,108,99,107,118,109,118,87,112,105,108,107,99,115,101,108,113,100,103,104,108,93,123,110,103,102,108,103,113,93,90,103,112,99,108,107,118,106,100,103,106,117,106,101,106,109,108,102,103,105,105,99,99,116,104,108,101,101,105,90,103,98,105,98,100,118,91,92,105,97,121,96,102,98,115,102,111,106,104,100,100,101,98,109,97,101,101,104,94,103,90,96,111,105,106,104,99,107,110,95,120,116,108,116,105,101,110,102,110,102,107,111,103,103,97,104,102,111,85,109,108,108,104,102,104,103,98,113,98,99,110,91,119,81,98,97,102,108,104,113,107,110,93,111,96,108,99,98,109,105,101,101,105,103,98,95,85,112,104,107,106,102,87,93,99,108,115,103,104,104,100,99,105,104,102,100,106,106,109,104,111,105,90,100,104,111,102,112,105,103,110,100,103,101,117,91,107,97,93,99,105,105,106,104,98,107,114,97,111,100,106,98,103,90,111,101,101,102,105,99,105,109,93,105,101,104,101,100,87,96,101,108,106,103,96,108,99,116,98,113,110,105,84,100,117,98,95,106,104,107,97,105,103,110,103,106,102,114,104,96,100,112,94,96,102,105,104,92,112,107,98,113,91,92,104,101,100,101,94,103,106,108,99,95,103,107,105,125,91,103,102,109,99,100,97,100,110,99,102,100,108,102,108,101,108,95,93,94,94,113,95,102,106,93,107,111,117,112,106,108,102,106,105,112,104,104,105,108,113,103,94,103,119,100,77,107,104,94,93,104,102,101,121,100,95,98,105,104,105,100,109,111,111,108,93,104,104,104,107,105,103,103,99,100,94,109,107,101,105,101,103,100,108,96,103,100,115,109,98,109,99,86,114,97,98,103,96,106,103,110,107,104,103,108,112,105,112,98,99,112,104,102,96,133,108,106,106,108,100,105,93,106,103,97,100,103,106,113,110,105,101,96,97,92,101,73,96,105,107,100,127,99,117,101,108,103,95,105,98,104,98,100,110,94,102,106,96,92,107,105,108,94,98,99,119,103,97,93,96,98,94,100,100,104,105,103,109,113,103,97,111,93,117,99,98,98,109,91,100,99,94,107,91,92,97,105,102,105,112,98,87,112,91,108,110,108,94,95,117,99,97,76,116,113,103,99,111,99,106,115,95,108,99,113,103,99,101,96,113,82,125,99,110,104,110,101,100,102,90,107,98,104,103,101,111,104,96,104,106,106,109,106,98,107,117,108,92,106,97,102,100,108,112,97,103,103,109,101,99,100,113,98,97,110,96,117,100,135,114,99,102,105,106,106,105,109,78,113,103,104,99,100,105,104,110,108,105,105,105,113,103,105,94,114,93,99,106,108,102,108,109,110,106,115,104,92,90,102,104,104,103,100,107,105,103,103,100,111,106,111,102,95,102,96,98,109,107,99,100,106,108,117,98,104,113,88,117,116,99,102,90,120,108,111,113,96,93,101,98,97,95,88,104,97,102,110,108,102,104,104,105,101,100,111,95,110,113,113,107,109,123,103,106,100,83,106,109,111,100,98,111,97,105,98,108,104,107,116,102,99,109,101,101,100,103,112,107,117,108,80,94,103,115,90,103,100,106,102,100,111,100,108,99,115,101,98,106,95,101,108,112,106,94,112,94,114,107,96,107,108,97,104,111,91,117,101,100,96,102,109,100,110,109,103,103,112,97,108,101,97,111,112,117,97,101,98,114,106,101,104,88,99,95,104,92,109,114,99,112,110,104,110,116,95,103,103,104,88,103,99,110,113,100,98,97,86,102,103,102,100,104,85,100,104,115,107,92,100,108,113,94,77,88,98,98,105,106,109,95,103,88,102,113,96,112,110,105,102,97,97,95,106,108,101,100,100,115,97,105,99,115,95,105,97,99,88,109,90,106,97,97,103,95,97,106,106,97,97,112,105,107,102,110,104,88,110,105,98,116,91,108,110,106,105,95,107,105,103,101,105,81,97,105,80,100,94,109,97,91,99,98,98,108,111,103,110,100,110,102,109,99,113,96,87,115,85,97,95,91,95,114,110,98,113,108,106,119,107,99,76,103,94,94,125,112,103,88,88,92, +486.67706,96,94,89,113,83,99,109,98,105,98,98,108,95,111,108,110,87,96,94,97,109,93,91,115,97,99,102,95,102,112,102,106,100,100,109,113,90,107,99,102,102,102,122,104,111,113,105,119,105,121,97,106,105,97,103,98,95,110,105,107,88,133,92,94,85,100,110,106,100,107,108,107,110,110,96,108,98,110,100,98,115,95,97,101,106,106,105,113,91,110,115,94,103,91,65,96,103,111,99,97,107,116,95,87,121,106,100,105,97,104,105,108,110,111,112,97,111,99,103,84,101,95,104,107,106,98,118,104,107,94,99,98,104,87,103,112,104,103,103,102,98,92,107,96,107,89,105,103,95,101,99,108,105,105,111,104,104,91,107,100,98,101,100,111,101,93,96,100,98,109,106,104,82,106,103,99,112,112,105,103,87,115,106,101,102,106,100,102,114,104,121,115,105,101,89,112,97,95,109,116,106,99,101,113,95,105,108,107,106,107,101,114,110,118,115,102,108,94,90,105,97,107,89,101,97,122,102,109,104,81,121,107,96,117,122,98,93,118,106,115,87,107,109,115,112,105,107,99,108,111,108,115,135,110,94,113,108,97,103,114,84,95,110,106,107,110,98,98,98,98,107,107,110,99,123,114,109,101,98,95,103,117,102,89,106,112,94,102,95,93,105,105,110,104,108,113,100,125,105,109,113,103,110,114,96,106,112,113,112,105,101,104,106,112,115,109,106,103,99,91,94,87,104,96,95,112,120,101,104,119,99,97,106,94,116,108,102,96,86,113,95,107,103,106,113,100,103,113,125,103,108,108,117,110,101,106,113,103,98,103,91,104,107,112,108,91,116,106,105,110,115,105,113,113,86,108,106,95,108,97,105,113,100,104,81,104,96,114,106,105,107,98,94,103,92,111,96,103,105,111,110,99,101,102,99,90,106,113,103,95,94,94,88,106,99,102,98,99,97,104,105,104,84,113,101,95,95,100,101,110,94,107,105,98,87,67,112,115,104,97,113,104,97,111,101,102,98,102,110,117,106,106,114,111,109,106,97,73,111,106,100,115,112,113,115,102,118,96,100,96,106,107,105,129,99,97,104,113,104,106,105,101,113,104,113,119,108,96,97,119,103,104,103,108,96,103,110,115,106,104,109,103,106,107,116,107,102,101,114,107,118,102,96,105,104,112,117,94,102,108,109,98,106,96,98,102,124,107,104,114,108,103,103,103,110,80,113,98,103,110,94,102,106,105,107,116,106,98,108,101,116,116,111,110,102,105,104,106,99,102,108,101,94,110,105,99,107,108,108,101,100,99,102,103,101,111,111,104,103,105,106,103,118,101,100,101,106,109,102,109,114,104,96,95,106,97,113,110,112,96,106,105,100,100,109,97,91,108,92,117,104,112,103,111,104,104,114,106,107,108,108,99,107,105,115,101,107,100,107,108,113,104,99,116,99,96,90,114,105,103,100,107,108,109,96,88,92,110,107,117,103,115,103,103,98,109,103,135,113,106,106,107,100,109,107,99,109,108,113,92,97,100,97,95,110,115,104,111,117,105,131,112,100,102,98,112,109,109,111,110,100,117,101,120,112,104,96,108,111,87,99,90,111,101,99,98,105,120,103,106,112,111,109,86,102,106,99,112,105,105,112,94,101,108,99,102,107,102,101,114,103,96,105,109,109,117,108,106,109,112,107,105,117,104,109,107,103,111,97,102,127,117,106,99,105,106,106,105,111,111,99,108,98,107,113,89,82,89,104,94,111,100,98,114,105,102,97,113,104,106,100,106,103,108,99,118,112,113,110,106,109,108,105,105,113,102,97,105,108,112,106,100,97,95,121,105,106,99,103,107,113,101,106,101,109,121,116,102,117,98,97,113,104,101,110,111,110,99,113,111,101,108,97,99,101,107,102,107,115,98,96,104,105,112,113,106,102,110,100,72,109,110,116,100,106,98,89,109,113,113,107,111,98,105,109,103,107,100,101,101,110,107,110,102,106,114,114,98,107,108,95,101,105,101,110,115,90,95,103,100,119,113,99,102,110,105,102,92,117,107,120,109,106,119,113,113,99,110,96,108,102,102,110,117,87,98,98,117,114,113,105,104,110,120,109,103,110,108,98,104,115,114,107,100,97,105,112,111,100,101,105,115,99,102,107,105,101,104,94,124,84,98,114,106,116,114,111,119,109,110,100,124,105,98,101,108,93,99,106,114,106,108,107,108,113,99,109,100,117,93,113,103,104,113,131,95,100,97,104,98,112,108,120,104,105,107,104,113,116,94,119,103,106,97,107,99,125,103,101,100,103,109,100,105,97,102,108,104,95,104,106,106,108,91,98,108,99,102,113,99,116,101,107,122,114,101,104,99,99,104,96,101,92,113,103,98,100,99,110,105,104,109,101,98,98,109,105,108,122,106,95,104,112,115,104,112,112,92,94,110,103,117,111,109,108,109,107,110,108,87,94,99,109,103,106,105,105,96,112,110,116,105,103,103,107,103,103,125,98,107,115,110,108,103,99,103,95,102,112,115,104,108,106,104,105,97,98,111,92,118,109,99,113,107,111,103,115,114,89,102,96,113,114,95,103,107,102,104,102,117,116,99,97,111,106,97,106,103,110,99,106,104,112,109,105,104,104,107,130,119,102,114,103,102,109,102,119,108,102,104,98,107,99,101,105,106,108,102,116,106,108,113,100,106,106,113,110,86,96,105,106,105,118,88,101,110,99,100,102,94,111,104,112,124,109,113,105,111,112,106,108,106,114,102,110,102,97,112,108,103,104,98,104,109,107,104,98,120,113,105,90,109,117,67,100,101,125,102,106,110,121,94,113,101,101,105,103,111,86,113,106,102,95,115,98,103,113,98,96,99,102,101,113,104,110,100,103,102,91,103,105,112,104,105,104,122,100,106,110,91,110,106,119,104,116,119,105,98,104,106,112,112,69,93,104,108,103,100,102,102,108,100,101,103,108,104,108,98,116,105,99,110,108,117,98,118,100,105,103,105,100,103,104,105,112,103,115,102,112,104,113,97,100,111,109,101,96,116,112,106,112,108,102,94,101,106,103,103,120,109,91,113,105,105,102,110,127,114,105,103,110,101,107,121,107,91,112,97,112,99,112,104,102,112,98,96,95,97,103,101,98,84,93,113,88,99,90,104,102,116,108,106,96,97,108,116,109,97,107,105,99,105,99,116,102,117,113,113,108,111,101,103,106,101,99,100,97,115,121,103,113,119,114,99,107,100,107,96,111,103,117,109,109,113,111,107,110,116,99,97,108,98,113,100,102,92,101,105,115,100,101,85,114,111,108,102,109,105,112,104,112,107,102,122,102,119,100,115,106,106,99,100,96,99,107,102,97,97,104,104,93,102,104,98,109,105,95,98,92,100,103,102,103,111,99,88,118,109,105,93,93,99,94,100,106,114,104,111,99,107,106,98,108,100,106,125,110,102,102,110,104,108,103,94,98,109,110,108,111,110,103,103,106,96,104,99,110,103,116,103,102,100,103,98,100,114,105,105,110,105,112,99,99,118,108,98,119,108,101,102,111,100,117,113,105,110,108,96,104,112,108,108,105,98,104,102,109,113,111,97,90,96,113,98,98,101,110,78,117,101,108,106,105,94,100,98,108,96,112,100,95,97,105,106,93,98,107,100,111,103,102,99,111,131,109,107,91,117,115,102,115,100,104,108,104,105,101,99,105,104,108,108,113,104,94,109,103,106,106,105,88,112,100,103,109,101,102,100,99,106,108,101,100,69,103,103,91,102,113,108,110,105,100,104,95,106,103,101,86,112,102,98,107,111,105,107,101,100,106,111,105,102,102,104,109,111,102,107,112,103,97,119,111,98,100,101,109,104,105,109,101,115,107,103,110,107,107,101,115,111,95,111,104,90,107,107,102,101,99,89,100,105,106,115,108,109,108,115,88,109,101,103,115,96,97,104,122,100,110,103,102,110,103,104,118,101,96,97,99,107,103,114,100,107,114,104,116,100,107,107,109,110,103,102,113,130,98,115,102,112,109,109,112,103,101,102,120,105,100,103,102,101,95,98,107,108,103,115,117,110,106,103,113,99,98,99,106,100,93,91,96,109,97,103,102,103,108,108,104,105,119,101,121,103,99,95,116,103,107,99,113,90,109,99,103,107,102,100,103,81,103,102,113,109,105,121,91,107,98,102,107,112,110,116,113,98,107,104,128,117,101,108,112,103,102,83,110,105,108,105,74,102,106,102,99,91,85,100,102,109,98,98,120,105,76,106,105,109,113,99,99,110,102,102,106,108,108,101,94,109,95,117,111,112,108,100,113,104,107,106,105,100,111,114,109,107,123,101,106,102,107,96,127,126,107,103,102,102,112,112,112,105,98,106,98,112,110,102,109,121,104,110,99,110,100,104,92,111,98,113,100,102,103,117,88,109,104,96,109,103,113,123,103,103,104,98,107,99,103,110,103,108,106,89,98,96,101,99,108,95,109,95,99,125,111,107,94,100,109,96,111,112,100,104,99,111,98,103,109,97,99,93,104,111,101,109,108,99,91,103,93,94,99,97,103,98,95,103,114,99,112,103,116,94,103,109,112,98,114,99,96,96,94,106,111,109,104,90,113,132,114,99,102,114,96,108,111,109,94,109,116,107,107,111,105,102,106,95,90,92,111,92,103,83,105,105,100,103,105,102,106,90,112,100,74,110,110,110,97,103,112,106,104,107,112,94,109,103,106,95,106,89,97,120,109,102,106,106,102,104,103,105,94,123,96,105,91,109,104,96,106,106,103,112,91,101,109,107,103,88,96,98,114,103,115,108,109,108,110,115,111,106,88,88,109,106,98,99,103,99,98,103,109,108,101,106,96,99,111,99,103,96,106,115,102,91,103,111,108,104,97,93,109,100,134,108,103,95,105,105, +486.81763,123,101,108,106,125,115,104,96,89,108,89,115,103,107,101,98,109,116,99,110,118,114,112,103,106,109,95,109,102,109,113,103,105,108,109,102,109,94,89,106,109,100,114,109,107,105,97,106,91,98,126,95,94,98,95,94,100,102,120,106,108,91,91,111,105,120,117,103,109,95,105,114,105,100,109,112,109,110,118,73,84,95,102,102,97,109,86,119,96,100,105,98,113,85,106,101,101,102,116,101,105,91,105,102,85,107,99,105,90,107,105,104,109,105,117,103,112,110,120,103,111,102,114,108,121,123,101,104,98,115,115,109,112,119,117,104,109,113,106,98,104,96,96,105,98,105,107,103,97,89,85,107,98,106,97,96,103,94,120,102,101,111,109,114,96,105,117,94,111,114,97,85,101,100,115,106,110,103,105,99,109,99,112,120,98,95,106,97,102,112,95,108,107,107,95,122,105,101,98,109,110,99,92,113,94,118,104,90,87,117,104,104,106,103,108,110,94,104,104,105,98,114,109,79,97,109,96,118,99,105,106,95,102,108,101,107,106,118,107,122,116,100,112,94,98,98,100,113,115,70,104,112,101,106,104,103,114,113,105,118,95,102,101,103,96,114,111,109,98,94,110,99,117,121,104,113,113,108,100,108,103,112,99,108,108,107,104,108,108,112,106,116,108,106,98,99,113,111,99,98,110,96,107,118,85,112,92,113,102,115,104,106,103,96,95,98,98,97,114,104,98,98,105,99,96,99,96,95,114,107,110,117,107,115,105,107,109,107,97,119,109,103,103,107,121,104,100,107,110,104,109,105,128,97,109,103,102,97,101,104,117,106,96,103,108,103,104,121,112,112,110,114,103,108,112,98,97,92,107,104,108,98,105,104,100,104,108,97,103,102,113,101,105,84,103,99,90,101,84,106,108,97,110,92,100,103,107,104,99,104,93,100,105,104,105,107,104,102,108,101,115,122,119,109,103,104,104,103,100,91,100,100,106,101,104,113,118,109,106,102,105,104,104,100,94,113,105,98,99,108,102,101,98,108,110,103,106,107,99,106,106,106,102,99,93,106,103,113,138,109,104,110,116,97,115,87,111,108,116,103,111,117,86,100,111,101,105,109,101,112,98,101,118,111,103,119,100,100,106,101,108,97,107,101,110,104,97,104,134,97,117,108,107,121,99,106,106,100,108,103,104,107,111,108,107,110,115,110,99,108,108,108,104,108,104,100,109,108,108,100,108,94,104,94,102,115,101,103,107,96,121,121,111,100,108,100,108,99,98,105,105,117,111,101,104,105,140,112,105,107,99,105,100,113,101,117,117,110,110,103,109,105,113,103,108,126,108,113,114,113,106,101,98,103,122,117,115,107,104,110,98,86,126,120,117,104,104,109,103,99,94,104,105,122,97,100,99,96,105,109,110,110,112,106,110,82,104,88,111,96,95,96,107,106,105,120,101,89,112,111,119,103,108,95,103,101,108,100,107,114,99,114,102,104,79,105,109,110,109,106,106,95,121,101,102,108,114,100,102,94,108,119,79,111,100,102,105,101,103,100,107,112,103,109,107,99,108,117,110,100,95,104,100,104,103,102,117,101,103,93,109,111,109,101,104,107,113,107,103,102,104,99,107,105,112,103,100,92,107,95,107,105,106,118,101,100,105,105,104,109,103,98,128,96,114,101,111,103,98,99,110,110,116,117,114,109,117,111,68,111,103,97,108,91,97,108,94,100,117,104,97,118,106,103,108,109,95,99,101,90,108,103,107,106,104,111,104,94,112,96,91,108,110,102,92,105,104,116,103,105,115,107,102,113,103,120,105,130,114,110,109,102,111,105,120,117,111,109,106,105,120,104,94,88,99,109,148,102,101,100,103,110,111,114,110,104,113,104,101,123,74,99,111,106,105,110,110,107,95,105,104,121,107,100,89,118,104,97,117,102,106,101,109,108,94,112,104,112,101,114,104,112,108,122,98,106,95,113,120,109,117,114,98,97,102,125,98,107,111,111,112,95,114,114,109,104,109,111,110,107,110,125,99,111,108,110,113,109,120,108,101,122,100,111,95,99,105,106,104,109,112,114,110,95,99,112,107,130,115,109,101,109,104,109,112,100,109,110,106,129,99,109,105,98,107,115,101,101,107,107,112,112,91,93,112,117,91,116,108,110,108,105,107,112,114,109,100,108,96,105,101,107,103,87,114,98,88,106,92,117,97,105,98,102,113,106,105,115,97,108,104,97,110,104,102,104,105,88,93,99,110,108,111,99,108,98,105,113,95,114,107,117,108,109,108,98,114,93,97,105,103,108,105,112,114,108,106,112,94,108,110,103,122,100,101,104,107,103,108,100,135,97,107,96,89,105,97,94,104,103,108,98,104,108,103,97,101,106,104,109,117,118,91,102,101,94,105,109,101,95,104,82,112,108,111,109,89,98,122,113,114,104,112,106,111,104,109,107,100,111,104,105,115,105,102,115,102,106,98,109,87,104,102,104,97,113,117,98,94,103,104,80,115,91,112,116,99,94,115,101,102,114,114,99,107,106,103,102,109,110,108,115,103,102,103,111,105,103,115,102,106,110,107,97,117,110,134,113,95,104,108,112,104,101,87,104,116,113,107,100,112,105,106,101,119,108,112,106,113,106,110,99,112,95,112,116,104,98,119,100,101,117,114,92,104,100,116,121,98,117,114,112,110,121,103,121,117,105,107,96,96,109,107,105,102,113,117,93,102,108,109,112,110,101,109,114,106,104,107,109,109,109,100,111,115,111,120,103,95,103,109,95,94,105,103,110,102,105,97,101,91,114,71,100,114,109,118,108,110,112,116,106,110,88,104,99,108,111,115,125,108,114,114,102,105,91,110,116,99,116,113,109,108,107,105,113,110,113,109,112,106,100,114,117,99,102,107,106,121,106,88,114,106,107,110,109,88,109,118,95,110,114,106,109,104,111,97,107,95,105,119,97,101,126,97,115,123,112,104,92,94,108,98,105,112,117,116,108,98,126,100,98,98,103,113,100,96,105,121,110,94,107,106,109,111,102,104,105,108,104,100,113,121,101,106,104,109,104,107,105,100,115,110,98,113,108,110,113,96,110,117,111,99,115,106,103,121,109,107,104,101,109,106,119,105,113,104,120,109,113,107,96,103,105,113,112,106,104,109,103,99,96,107,97,105,109,105,110,106,108,116,108,96,105,111,84,111,102,100,91,104,107,113,100,104,101,91,99,128,94,111,115,109,102,99,107,118,104,108,109,105,116,95,114,114,105,98,102,93,110,93,110,104,116,109,117,100,108,113,108,100,103,100,113,112,106,119,97,95,97,111,109,96,105,92,106,99,96,100,99,106,95,107,103,108,101,91,99,112,109,93,114,102,104,113,107,95,105,100,101,116,103,106,102,120,106,119,107,107,100,106,109,110,106,109,110,93,103,104,115,120,94,99,98,100,103,107,105,106,105,111,109,107,109,100,103,91,98,99,106,107,102,102,103,95,108,108,115,104,103,103,83,116,105,103,105,101,102,101,96,109,106,100,110,112,100,97,109,97,102,103,118,112,113,104,106,102,129,97,114,115,109,106,103,121,110,98,98,107,114,113,97,103,106,100,108,112,113,110,95,96,101,109,91,102,94,110,114,112,111,95,101,99,105,103,101,96,104,103,101,118,117,102,111,106,102,104,123,123,101,107,105,104,106,104,106,100,106,104,112,100,91,107,109,108,105,111,97,134,110,117,106,106,110,120,118,101,111,110,104,104,104,104,102,110,114,110,114,108,108,107,103,100,115,107,112,105,100,111,105,108,97,88,113,113,117,83,104,99,116,107,113,114,103,108,113,105,112,99,96,98,103,105,112,110,113,107,112,99,94,97,110,103,110,66,102,109,97,114,116,101,117,111,102,113,96,114,99,105,133,109,112,104,106,106,80,117,97,110,107,112,107,102,106,103,112,109,71,116,106,110,100,108,98,95,103,128,100,95,96,115,103,96,112,116,108,109,116,101,106,108,98,114,111,113,88,99,105,110,105,98,122,96,110,103,115,103,116,108,112,102,106,120,106,109,103,107,91,106,104,120,99,110,109,110,102,103,114,120,100,105,114,87,99,102,108,109,121,99,90,103,120,102,104,100,102,110,107,106,104,104,99,107,98,103,107,110,103,96,98,99,103,100,94,108,113,111,100,98,104,103,98,107,103,114,107,118,114,99,106,108,103,97,107,112,100,116,111,102,106,112,93,96,114,103,106,114,111,118,91,105,106,110,115,107,106,107,102,105,105,109,98,105,91,108,108,89,106,120,121,118,105,109,123,97,115,98,103,113,110,109,124,114,114,105,111,103,106,104,104,107,99,106,109,109,109,111,108,100,118,103,119,114,109,108,117,117,106,107,102,99,117,112,109,99,102,108,105,109,114,106,109,101,105,106,121,110,108,110,95,107,107,97,106,102,106,98,119,111,108,113,118,105,104,113,107,103,102,105,93,97,108,114,99,114,112,103,103,97,98,100,98,100,107,111,108,96,111,100,103,96,105,96,102,109,109,113,112,106,100,106,77,94,109,120,108,110,104,118,105,112,103,107,113,127,107,106,104,102,114,113,92,95,107,121,99,111,103,89,87,100,99,91,103,104,105,114,109,101,109,76,103,114,94,124,119,108,110,104,90,95,108,110,94,112,112,102,104,105,122,97,98,102,113,91,109,107,114,102,113,120,127,106,107,105,112,105,100,84,79,109,107,101,106,98,109,112,111,118,97,104,112,105,105,110,97,103,109,98,111,117,96,102,111,80,104,112,111,88,102,92,109,106,102,115,104,105,118,107,107,113,91,94,96,99,105,96,106,91,97,114,109,82,110,112,130,108,114,104,97,106,108,112,115,110,101,98,119,93,105,105,110,109,105,105,107,110,109,112,89, +486.95819,107,110,95,113,111,115,80,110,102,113,89,109,111,103,109,109,108,116,107,102,96,99,99,104,104,108,102,106,112,105,112,91,109,91,99,104,99,96,99,107,113,96,106,109,100,103,88,92,99,99,111,107,84,91,114,95,101,103,105,92,95,107,95,98,110,137,97,95,87,122,116,105,92,100,99,107,100,110,116,92,109,99,102,102,95,95,93,113,103,62,109,115,106,83,99,102,103,97,97,95,96,100,113,110,106,109,93,107,104,108,105,101,114,108,108,93,95,93,117,110,99,103,120,102,109,107,113,106,114,106,96,113,113,109,110,99,104,110,109,108,104,106,98,97,98,99,89,105,94,111,105,101,102,95,100,104,102,102,112,96,102,100,98,106,109,108,102,99,112,98,107,99,94,112,100,101,112,104,99,98,118,105,107,106,105,98,98,90,106,110,97,107,104,102,93,114,91,109,117,102,111,120,102,112,103,110,112,114,102,100,96,111,118,103,113,104,94,109,106,109,115,112,95,102,113,103,116,100,99,107,102,102,103,102,102,103,105,108,93,105,117,103,109,107,96,108,107,106,110,110,91,103,98,104,110,106,110,95,100,107,89,110,104,111,103,94,101,109,102,102,108,108,116,98,108,104,116,103,109,105,112,96,104,117,103,103,105,97,109,99,105,107,113,107,131,107,110,101,118,99,107,95,117,114,103,105,106,111,109,115,99,113,118,98,103,110,125,100,109,101,111,101,109,104,104,101,110,97,110,106,124,102,111,111,117,110,106,89,112,104,108,96,99,97,100,114,103,109,104,107,100,101,98,106,102,103,107,107,99,109,91,103,114,101,103,95,99,104,109,107,100,102,110,94,121,94,94,103,97,106,114,110,99,109,100,113,105,106,100,113,109,97,115,119,105,97,102,113,104,103,111,112,109,105,109,114,109,103,109,100,93,102,113,97,106,110,104,113,117,99,115,110,98,121,106,100,113,106,109,107,94,111,116,107,117,111,100,117,100,108,107,104,109,103,96,90,97,90,113,107,109,99,106,107,105,100,94,117,110,103,100,104,92,105,125,106,109,111,111,98,107,111,106,104,102,95,103,118,109,119,116,101,76,100,105,104,84,100,103,98,105,121,94,113,96,99,102,111,87,105,110,108,106,117,104,100,105,99,114,113,109,114,105,111,91,99,116,106,100,111,104,103,105,109,116,96,109,117,109,101,97,111,101,105,107,106,113,93,105,107,104,106,96,115,96,115,110,101,105,110,111,114,107,103,106,109,108,116,97,109,115,99,119,97,105,88,114,115,108,113,104,99,106,103,111,104,98,95,97,115,119,96,92,102,105,102,120,114,102,100,105,111,101,103,111,122,114,103,116,105,104,117,113,103,99,114,104,108,106,125,102,107,99,110,101,95,111,94,96,89,115,94,112,114,104,114,94,100,107,102,95,96,98,115,101,96,104,105,103,114,113,97,106,91,95,86,107,99,106,114,109,106,105,105,126,104,100,113,98,106,106,104,104,107,100,100,102,117,113,99,115,105,103,105,107,112,117,115,104,119,117,115,110,118,111,109,108,104,103,107,107,98,107,113,112,109,104,112,106,99,90,98,92,102,104,109,116,99,109,107,116,99,111,99,104,115,109,107,111,105,108,112,113,109,103,102,100,100,103,102,110,112,94,103,104,107,111,104,103,99,108,93,100,110,114,113,110,116,110,99,108,107,94,103,99,104,98,113,116,108,107,106,109,102,105,108,96,110,115,103,101,106,114,102,105,95,103,90,99,103,107,115,106,101,100,105,104,105,99,105,124,111,116,105,110,105,114,110,109,115,106,102,117,113,113,112,104,106,106,102,113,107,105,99,113,103,107,108,98,104,108,98,107,114,112,113,108,111,103,98,109,92,113,99,139,96,116,105,107,112,100,94,113,113,109,106,102,105,111,101,114,122,99,107,94,101,109,107,101,92,103,101,111,106,113,115,110,100,108,116,107,103,112,105,110,111,94,105,104,105,90,104,108,104,103,107,110,110,106,105,106,111,106,105,94,107,103,117,110,107,101,108,104,104,119,109,84,105,104,104,105,117,108,100,110,100,107,85,103,124,105,103,111,119,107,96,109,106,111,94,110,116,94,107,101,101,114,103,102,109,111,98,104,109,99,102,109,113,105,108,117,102,108,112,122,106,105,114,104,99,125,101,121,107,117,105,118,103,99,107,101,105,121,112,105,104,107,115,105,103,98,97,100,102,102,112,112,94,100,106,108,101,122,108,100,96,104,113,103,105,110,95,115,104,120,116,109,101,102,105,97,113,103,94,84,112,100,97,100,111,103,109,102,104,108,115,84,114,111,106,101,107,105,106,107,97,110,108,114,110,101,115,96,102,105,109,103,100,106,108,110,86,109,108,107,109,89,99,104,104,113,112,85,102,109,104,116,115,100,103,99,106,111,109,104,106,100,109,109,117,112,107,96,99,111,90,100,116,110,101,108,103,98,104,100,102,109,104,110,111,121,105,107,107,109,84,100,104,120,109,93,116,107,109,117,103,111,106,100,117,111,106,96,111,102,112,108,106,117,113,106,125,100,106,102,111,106,89,102,94,114,107,101,103,123,101,111,102,113,94,96,98,106,99,88,91,123,106,113,109,97,104,113,109,106,106,116,101,118,102,102,99,107,96,107,102,108,99,113,105,91,99,111,110,98,110,117,108,107,108,111,105,109,100,106,104,109,101,108,108,105,107,112,105,100,113,95,103,95,110,95,113,96,103,109,104,102,117,119,100,100,102,87,109,115,100,96,106,104,135,78,104,71,99,105,100,115,102,113,111,97,98,113,91,96,109,99,104,95,112,103,107,104,102,106,120,102,136,117,110,104,108,103,112,112,104,112,91,90,101,109,103,108,108,110,102,113,103,105,102,116,108,110,103,102,106,100,118,105,105,97,105,113,107,109,110,107,110,114,101,118,98,106,99,108,111,92,105,105,114,98,91,98,94,106,97,115,113,100,107,108,102,104,101,104,98,109,107,109,108,97,102,113,112,112,68,108,93,108,112,102,109,104,93,112,105,110,102,107,104,101,112,106,141,107,94,104,112,116,108,93,104,115,106,107,99,108,110,113,108,107,97,95,109,98,95,98,98,100,105,108,112,103,107,96,98,99,94,97,100,97,125,105,112,104,114,98,98,115,105,104,99,96,101,112,105,109,123,113,116,102,99,95,105,111,108,99,99,108,100,104,111,97,115,99,106,107,99,111,95,99,115,82,102,113,99,105,112,108,109,97,108,102,106,99,131,98,89,109,99,99,102,111,101,91,113,112,88,103,102,113,111,111,99,110,107,109,103,95,106,116,124,106,101,79,116,100,98,102,102,96,111,105,93,101,95,98,96,101,100,110,95,106,107,101,102,106,100,102,108,98,104,110,107,113,104,116,103,117,126,106,92,105,98,111,95,106,108,87,98,92,118,107,97,94,101,109,100,105,99,109,106,108,105,107,93,114,108,99,98,106,104,106,108,110,108,106,116,116,113,110,102,89,115,103,105,97,102,107,113,98,102,113,103,95,105,98,112,108,99,105,106,105,112,97,105,109,112,103,103,103,105,109,107,105,106,106,97,100,105,112,106,100,96,106,102,97,112,101,107,107,96,103,83,103,91,101,95,95,106,104,105,113,104,95,110,88,108,145,116,106,109,114,110,86,102,107,102,114,97,124,92,109,114,105,95,110,112,111,107,89,102,104,100,110,105,102,105,90,106,117,105,105,105,107,113,100,114,112,105,98,95,108,112,113,99,112,108,111,108,105,112,102,104,106,103,99,125,97,112,107,98,110,101,108,121,100,102,107,100,101,115,99,108,100,102,111,113,103,93,93,100,99,98,106,97,97,106,104,93,104,110,97,94,104,102,97,104,96,111,98,95,111,102,96,98,109,96,113,89,96,109,110,104,103,95,95,110,102,87,106,109,109,114,98,104,108,98,105,98,112,96,103,99,104,132,102,102,102,106,117,98,100,107,102,107,106,94,107,90,102,99,106,104,108,100,111,107,105,97,103,105,116,104,98,102,104,91,124,86,100,90,99,94,101,95,106,109,103,101,98,99,103,104,94,109,92,115,100,90,104,105,126,126,101,109,104,110,104,109,103,109,103,95,95,92,88,109,109,103,100,90,109,91,103,108,111,107,103,109,111,103,109,105,105,93,100,109,96,102,101,94,102,111,107,83,104,98,113,101,107,102,103,105,102,102,100,108,101,106,96,100,121,101,98,110,94,106,104,92,99,100,116,99,88,114,104,98,106,105,97,102,107,103,101,101,111,102,104,122,111,95,111,109,105,102,111,68,111,106,117,102,91,101,101,91,80,118,113,98,98,102,100,112,106,117,97,102,110,104,103,125,106,104,99,91,97,99,95,96,98,96,110,101,104,109,101,105,97,106,112,96,89,136,101,100,94,111,116,106,101,101,101,110,113,95,99,104,108,117,122,104,104,102,106,111,129,105,100,99,103,97,105,105,106,109,107,95,101,109,88,106,112,105,99,112,105,110,96,101,105,101,98,102,108,89,94,109,105,102,98,98,115,105,99,97,106,104,100,96,114,99,110,106,107,98,112,103,100,131,94,107,110,104,108,102,100,106,111,92,109,109,99,112,102,89,103,106,102,99,98,102,98,108,94,107,96,115,109,101,105,106,107,117,107,103,111,108,100,100,112,115,98,98,104,105,113,102,101,101,106,104,97,109,106,113,103,104,113,99,96,102,102,106,91,108,105,105,105,110,105,114,96,109,109,108,114,102,104,109,113,90,68,101,106,106,85,120,106,83,108,99,105,110,114,105,94,106,107,95,113,107,86,105,100,102,107,108,109,91,100,96,102,109,112,102,97,114,97,94,107,109,100,98,104,103,112,108,109,83, +487.09875,91,100,82,107,96,112,105,99,96,114,95,100,104,105,83,105,105,96,104,123,110,107,102,100,99,108,96,101,106,100,97,108,100,102,95,90,99,98,100,91,107,99,111,107,104,107,64,106,108,83,107,105,102,91,112,97,106,87,98,106,102,108,108,100,96,118,97,105,107,99,88,103,104,95,88,114,109,98,118,108,94,112,114,98,95,112,107,93,90,101,104,95,109,104,121,83,83,101,102,112,101,100,103,106,104,88,104,92,105,111,108,106,112,92,92,101,98,113,110,108,108,101,102,97,104,100,116,91,106,100,108,99,103,101,119,98,93,107,111,102,103,103,97,99,94,103,96,104,100,103,112,97,110,109,97,103,104,98,97,94,101,80,112,110,102,93,96,97,103,101,103,87,96,105,100,101,114,92,104,124,104,108,98,114,99,99,102,120,110,103,93,94,83,107,109,102,95,104,113,112,115,99,107,100,93,102,102,98,103,100,105,99,110,103,110,102,102,130,101,96,97,102,115,93,103,115,109,107,113,115,98,100,105,105,112,92,105,111,113,107,102,99,110,105,94,94,94,97,76,102,98,105,108,98,97,88,118,104,115,99,101,102,101,109,86,98,101,95,118,102,121,103,100,77,109,97,108,110,106,106,112,109,104,106,115,96,90,99,102,103,103,98,106,94,102,101,116,101,100,105,97,102,100,110,100,118,109,107,109,103,94,103,116,101,100,110,127,108,115,90,97,93,95,79,99,109,86,93,106,95,98,97,109,108,104,100,105,96,116,95,93,107,109,108,108,103,111,116,110,106,111,101,111,92,109,101,101,101,105,106,96,107,97,92,98,92,102,104,106,111,98,82,105,105,106,102,104,110,105,105,105,110,100,106,91,110,110,116,109,99,100,104,99,110,101,108,106,103,109,105,102,109,101,102,98,108,96,102,113,95,92,99,103,110,116,109,105,103,102,91,104,110,104,120,97,95,98,88,99,108,97,118,115,120,114,111,106,107,106,106,109,101,103,106,99,113,87,102,104,106,109,103,110,106,113,108,107,103,117,109,106,98,103,112,112,111,116,107,109,87,110,109,103,104,108,100,93,99,99,111,104,103,94,117,93,100,101,105,123,101,105,104,102,109,100,101,109,98,118,116,103,105,101,101,118,99,104,106,109,109,104,103,120,96,105,101,114,99,87,97,105,104,108,111,91,82,116,114,97,110,91,103,102,103,110,103,96,102,94,102,97,102,103,121,110,103,105,105,109,105,113,123,104,94,103,98,101,99,95,104,111,116,100,103,110,120,103,102,112,104,92,99,105,112,100,113,93,95,127,108,103,100,97,99,106,102,117,117,110,97,117,104,115,100,117,109,96,105,105,101,102,113,107,110,100,99,111,104,104,97,102,102,100,106,128,102,113,93,101,92,101,106,107,117,106,110,105,103,105,109,108,105,117,105,116,99,100,96,114,109,97,108,105,100,104,108,106,102,104,109,97,102,107,106,99,112,113,101,97,103,106,91,105,96,98,97,113,106,111,105,103,99,93,109,98,103,101,103,111,94,97,110,104,104,108,109,103,107,105,102,105,91,102,101,103,99,105,105,111,95,109,103,108,100,95,112,104,124,104,103,103,116,100,112,95,96,98,106,105,104,96,100,90,107,103,113,108,109,102,108,103,98,105,101,98,101,100,96,107,109,102,97,99,108,94,124,112,103,103,108,103,100,95,91,112,97,126,114,112,109,99,106,93,95,102,113,104,104,107,101,106,99,112,98,102,105,118,111,107,98,109,98,99,103,103,100,101,115,112,103,103,104,98,80,109,101,97,95,103,101,93,102,104,104,114,113,103,101,102,92,110,106,109,110,113,109,115,114,112,105,100,114,105,106,143,98,113,110,120,105,101,107,120,109,75,110,102,104,100,105,109,109,100,106,107,106,123,108,112,99,118,104,103,102,99,123,94,98,104,106,110,98,106,103,99,113,87,104,105,96,91,109,90,120,98,100,110,121,112,93,109,100,114,110,103,114,113,112,81,101,98,116,111,105,105,93,100,112,99,102,99,118,105,99,112,109,105,111,107,112,98,111,118,103,115,107,113,106,113,113,107,115,110,99,105,103,116,110,103,105,103,108,109,103,96,108,104,112,100,77,130,93,108,104,98,104,104,114,106,114,94,104,113,109,114,101,102,111,105,104,111,104,93,104,103,95,99,111,106,112,79,95,95,94,92,102,100,104,103,98,97,92,118,93,102,97,100,113,108,96,106,106,104,107,99,98,103,107,100,105,100,100,102,105,99,91,109,108,100,104,100,102,112,101,110,105,98,110,93,118,117,100,102,97,108,107,125,115,114,109,112,103,104,117,104,109,101,106,111,100,118,109,101,97,104,104,107,106,113,101,104,106,101,106,100,103,107,111,109,109,110,106,110,113,104,109,113,109,114,103,97,119,98,103,113,103,105,105,91,84,106,101,101,105,106,113,102,98,103,108,103,102,118,90,97,98,105,95,110,95,103,105,108,104,103,107,116,110,101,115,91,103,103,97,101,91,100,110,98,105,99,100,108,101,84,97,97,112,101,82,110,107,109,88,101,100,93,108,108,101,98,106,87,95,106,106,98,101,104,106,92,103,98,103,101,95,104,113,109,115,98,103,91,96,111,108,114,109,105,95,84,109,111,93,103,97,104,94,99,109,110,108,96,108,101,113,109,104,101,105,87,105,108,105,87,116,86,92,95,117,113,106,102,115,96,104,110,107,105,100,96,101,97,108,120,104,100,111,114,112,108,103,106,100,116,102,99,97,107,101,103,110,109,117,107,104,73,99,94,110,111,106,106,102,114,112,90,109,117,98,107,107,92,98,105,104,107,91,92,95,100,104,111,120,97,110,102,109,97,110,92,106,103,99,111,106,104,107,97,111,93,103,110,108,102,97,108,108,99,100,103,96,105,101,114,109,110,97,107,108,102,107,112,105,101,102,101,102,117,102,98,107,95,100,115,113,102,110,102,115,105,110,94,105,97,97,102,90,105,103,106,94,109,105,105,91,109,108,99,106,101,113,98,111,102,105,82,95,112,116,117,109,106,110,97,111,102,93,132,102,106,109,116,104,111,108,113,108,100,92,99,105,105,101,100,101,99,106,100,102,109,113,104,101,98,99,110,98,104,108,84,105,105,103,112,108,103,95,125,110,100,99,114,105,102,111,112,98,129,99,95,101,101,110,102,100,119,104,101,83,86,113,100,99,100,100,108,102,102,100,104,96,100,115,96,97,98,99,103,106,100,122,109,99,105,100,99,111,106,106,96,93,99,101,84,102,98,107,100,104,93,102,98,105,106,109,96,102,110,103,105,103,108,101,106,92,103,100,99,111,107,107,91,98,96,116,93,107,98,97,107,109,103,106,95,115,106,105,112,109,98,104,83,102,108,94,104,115,95,113,99,98,105,101,99,101,101,96,98,92,108,108,96,97,95,100,95,106,101,95,100,102,95,101,72,103,95,106,103,90,97,110,106,96,117,100,100,103,97,91,104,91,109,96,99,102,92,101,103,105,96,100,107,94,102,100,106,110,93,99,109,108,95,113,95,111,98,99,105,100,101,107,103,109,103,96,100,97,106,103,98,111,104,103,102,105,99,99,102,104,100,96,115,108,115,108,98,102,107,111,99,101,109,108,102,106,101,105,107,100,101,109,117,103,98,106,94,98,95,106,106,107,104,100,107,105,117,103,89,107,106,109,91,102,100,107,108,108,102,102,99,99,103,93,107,95,98,102,106,130,116,88,109,121,104,98,88,105,116,108,94,111,94,93,92,101,96,110,111,104,105,112,106,108,99,113,97,107,97,109,94,112,96,103,98,98,112,95,108,102,104,106,96,105,104,90,98,104,99,99,103,110,102,90,105,112,106,103,105,96,98,88,102,98,107,93,113,108,103,101,98,101,106,109,105,112,104,95,104,99,103,106,106,106,85,104,115,95,103,105,113,108,110,110,107,111,94,103,92,102,99,106,102,101,101,97,100,101,114,107,95,108,98,95,101,117,99,102,98,99,97,99,104,110,109,112,96,107,110,102,99,81,106,105,92,99,96,100,107,117,105,104,95,112,98,121,105,102,103,117,101,103,101,98,106,117,117,117,95,107,113,93,97,109,96,108,94,107,102,102,104,97,102,95,102,113,117,99,105,107,111,102,113,101,103,101,111,104,115,106,121,107,100,104,110,106,118,101,107,107,94,123,106,100,97,98,100,90,103,112,101,117,99,108,96,95,100,95,100,101,100,102,100,103,103,109,106,102,118,105,103,100,93,107,100,102,109,99,102,110,98,108,111,92,115,112,101,110,98,113,108,99,99,108,101,116,102,96,102,111,101,109,103,108,106,105,105,110,112,98,96,105,96,104,105,99,103,97,104,71,98,88,100,104,95,102,103,102,102,85,125,108,100,101,95,107,89,105,105,107,109,109,101,105,113,101,93,102,109,106,99,91,95,103,89,91,93,93,107,101,102,98,94,107,124,94,110,102,98,100,102,92,98,103,100,132,101,106,102,105,101,109,93,94,112,87,103,90,108,92,100,113,116,98,102,101,106,117,92,100,97,95,100,98,105,103,97,107,103,98,99,96,99,108,95,101,100,112,90,113,100,108,96,101,96,98,126,99,80,97,96,91,109,94,91,98,103,99,113,96,99,98,103,105,107,85,104,103,95,93,103,103,102,104,107,113,86,101,105,93,115,93,100,122,106,105,98,96,96,100,106,96,100,99,114,107,100,109,98,119,109,106,99,104,108,109,95,104,101,99,100,105,99,109,101,96,88,119,105,109,93,83,97,106,104,116,113,110,88,95,96,113,105,100,106,97,99,102,106,95,99,106,92,101,99,93,97,101,100,88,124,91,89,104,85,108,87,96,98,97, +487.23932,89,92,91,73,85,116,97,118,107,99,108,108,96,90,105,103,96,90,94,90,100,99,116,113,90,108,106,104,112,111,112,110,114,107,121,109,115,117,111,91,99,112,108,100,79,116,110,94,93,111,111,110,104,109,99,107,105,98,116,79,94,107,90,105,119,115,107,109,129,96,105,106,101,97,89,107,99,102,105,109,114,108,114,97,99,106,103,113,92,103,114,110,105,116,86,94,109,96,84,100,101,112,109,100,109,95,96,91,101,103,106,111,111,104,103,91,104,112,111,105,104,100,116,88,100,102,110,99,115,107,96,104,112,103,109,94,99,118,97,108,108,102,104,101,102,107,103,96,102,111,94,109,110,96,105,107,109,99,109,103,106,83,102,69,100,106,117,96,105,105,99,101,98,97,104,106,106,107,116,98,85,103,98,120,113,111,97,100,109,99,107,112,104,108,105,98,110,98,101,105,101,108,102,107,115,103,111,111,120,121,104,106,101,110,100,115,101,104,113,106,95,112,108,95,105,108,111,113,102,105,110,111,107,101,102,111,104,91,102,100,107,102,116,103,104,88,110,99,106,95,101,105,110,101,121,101,106,107,94,106,98,111,105,117,102,102,106,110,103,94,111,114,104,102,109,92,117,110,107,113,98,113,102,104,102,107,89,88,97,102,93,118,115,100,115,96,99,108,120,107,98,106,99,104,99,117,108,109,108,118,104,113,102,106,111,95,108,110,100,99,91,90,117,105,90,110,112,99,110,111,101,98,100,119,106,112,112,97,101,105,97,103,102,103,101,109,105,111,117,102,109,111,99,93,101,119,106,102,102,106,113,99,97,103,102,99,124,110,113,110,110,96,110,99,99,103,104,100,108,106,99,104,114,109,101,104,104,99,111,104,115,99,110,111,117,117,109,99,100,95,101,111,116,100,82,102,114,106,100,110,98,91,112,93,111,103,111,100,98,116,103,99,96,109,98,100,119,110,102,112,89,110,110,98,109,100,105,111,107,112,98,109,102,106,105,98,99,95,109,114,120,105,105,111,106,108,106,110,114,91,111,103,104,104,95,101,117,104,96,94,111,76,100,107,122,109,98,116,105,105,95,108,115,104,103,103,106,111,102,103,117,99,110,101,108,100,95,98,108,114,107,102,90,107,110,108,102,87,110,106,103,99,108,107,100,122,95,120,105,106,103,98,106,110,109,107,105,113,105,101,102,108,99,137,94,102,93,120,110,114,95,103,114,108,112,113,109,107,123,110,115,106,106,112,100,102,112,101,99,99,110,98,113,107,93,103,121,102,116,104,109,89,107,108,104,121,100,111,111,111,107,108,106,103,107,91,109,116,115,116,116,111,103,119,104,101,99,103,107,106,112,117,104,91,108,118,103,106,108,103,102,104,106,99,111,92,106,99,99,106,105,100,117,98,106,107,106,108,102,103,95,109,131,107,113,115,112,109,123,107,112,114,103,107,101,100,96,95,85,98,105,102,100,103,101,105,106,105,104,96,111,108,101,110,104,100,82,100,86,101,107,104,117,108,96,102,90,106,112,109,113,104,116,103,102,110,109,93,107,110,108,111,97,106,105,107,102,100,99,96,107,102,110,113,110,103,109,116,102,104,114,115,105,106,96,103,105,97,108,111,98,109,106,110,108,107,106,110,104,116,100,112,101,107,85,90,112,111,105,94,120,105,115,88,113,103,109,104,98,104,112,110,92,105,113,109,103,104,111,96,110,125,96,103,103,108,100,109,106,104,106,97,109,111,104,95,102,102,91,104,112,110,110,106,99,110,106,106,104,111,105,98,116,99,106,110,100,106,118,113,117,104,109,103,103,104,99,104,111,101,99,101,106,103,108,91,115,113,106,101,108,92,106,105,99,105,113,111,118,107,121,103,102,64,99,113,111,108,108,105,98,96,85,94,112,96,91,97,103,95,92,105,101,99,121,111,109,113,107,106,114,102,100,116,102,105,105,106,110,111,92,112,104,95,114,103,100,94,108,100,114,121,105,107,108,112,103,122,110,97,106,114,114,112,110,94,92,100,107,105,109,100,105,113,102,100,100,104,99,96,110,102,100,110,108,91,114,100,101,103,114,104,108,93,118,107,94,114,108,113,78,101,98,115,109,100,93,94,99,119,112,103,105,108,96,120,103,98,106,108,109,103,110,107,99,109,93,101,104,113,111,112,113,114,103,106,95,106,108,107,95,104,114,93,115,94,112,105,91,114,107,116,90,109,100,97,103,108,106,125,94,110,110,99,90,109,90,115,108,100,104,97,101,103,123,109,105,107,109,102,102,106,113,105,105,109,102,118,106,102,106,112,108,110,115,105,99,101,103,115,107,100,119,104,120,90,100,91,116,98,101,106,85,94,99,99,90,98,96,107,97,113,105,103,87,111,96,104,103,102,112,107,99,106,95,102,100,105,95,91,100,100,109,97,114,88,130,109,98,104,98,91,101,104,110,120,97,97,105,110,96,97,113,117,108,117,105,104,105,104,121,103,109,117,100,107,112,112,111,103,94,107,130,106,110,119,97,102,84,92,114,101,113,107,113,96,115,96,99,99,113,111,96,107,99,78,103,109,108,106,106,111,103,111,98,110,113,103,99,104,107,118,113,114,106,105,100,111,110,102,112,99,106,101,100,102,84,99,99,92,103,112,104,94,103,102,104,97,114,101,102,103,97,112,93,109,103,104,99,111,100,96,101,108,102,106,108,95,101,103,106,111,109,73,110,106,100,106,102,109,91,106,98,104,104,108,102,110,114,103,103,116,87,103,104,100,99,101,102,102,112,108,97,103,110,121,104,124,94,92,94,109,106,103,92,106,109,98,112,112,96,106,115,104,93,105,103,107,100,112,102,108,107,110,109,105,106,101,110,115,113,102,108,115,102,101,99,93,109,99,104,103,104,103,105,107,129,111,103,100,117,111,90,108,109,116,115,99,109,102,108,108,95,100,87,96,113,91,97,93,96,99,98,96,102,106,106,98,96,100,117,99,106,93,96,106,95,110,106,103,95,91,106,112,98,96,105,90,95,96,102,121,113,92,110,110,100,96,99,100,107,108,107,107,102,94,105,100,91,72,112,110,99,117,112,94,114,110,105,112,100,104,101,108,103,96,100,109,110,107,88,101,113,96,107,91,98,101,102,102,99,103,112,94,106,111,102,96,108,96,103,96,87,108,95,106,102,95,103,98,103,103,102,101,106,98,102,98,99,113,111,109,101,95,113,103,104,95,118,86,112,94,110,111,104,113,91,100,96,100,103,92,105,93,104,112,103,103,104,103,105,87,108,103,111,114,95,107,104,108,109,98,93,100,98,109,101,91,99,96,109,106,102,110,109,113,101,111,109,118,85,101,80,102,93,101,109,99,102,101,106,107,101,103,110,113,107,111,100,109,107,111,98,103,104,98,104,106,98,105,105,105,104,120,108,99,98,101,107,104,124,114,102,99,99,100,103,81,111,103,105,108,89,89,93,107,107,111,121,107,110,112,111,102,119,110,95,108,95,96,104,108,105,102,95,118,108,106,96,116,97,88,99,93,109,96,97,95,106,119,120,100,107,115,104,115,105,116,105,99,103,102,109,109,104,103,108,111,98,113,80,103,107,107,106,116,103,102,105,106,99,100,106,111,95,95,101,105,103,118,97,113,97,112,108,103,105,105,117,108,107,107,99,101,108,99,97,102,99,107,113,117,106,109,111,103,109,86,102,90,98,100,111,103,100,98,113,103,106,93,111,104,108,102,102,77,97,104,108,101,119,121,111,104,99,108,100,93,91,103,104,111,104,110,110,102,108,102,108,107,105,103,107,110,102,115,107,102,106,88,102,108,104,102,107,107,102,107,106,100,102,102,112,106,112,100,109,116,103,103,95,103,104,110,105,110,100,99,96,100,95,105,110,90,104,102,106,96,103,96,112,109,115,91,96,109,91,95,115,104,108,99,102,102,101,106,81,101,105,104,111,90,105,103,100,73,107,109,95,100,103,100,90,108,118,96,97,97,106,107,109,106,102,101,103,105,105,101,111,115,103,106,96,102,109,95,104,124,95,107,101,93,103,104,102,106,99,98,104,103,113,113,92,97,105,108,96,109,106,102,109,98,103,128,99,111,106,97,75,98,109,97,99,117,101,109,106,104,103,98,96,113,104,94,101,105,105,101,96,99,113,103,109,104,100,96,101,99,108,94,104,116,94,99,99,111,112,97,102,102,102,135,111,95,98,118,100,106,107,102,99,104,95,104,96,111,105,102,103,95,108,100,92,102,106,96,107,98,101,91,90,79,98,95,102,103,102,98,100,121,90,100,117,101,114,112,110,92,109,113,109,101,106,106,112,108,109,108,106,108,107,103,106,109,95,91,74,102,93,68,103,104,98,106,86,109,102,101,100,112,97,93,106,106,90,108,106,79,106,117,117,106,98,93,96,87,104,92,95,106,97,101,88,111,98,98,104,116,109,91,107,113,111,100,105,104,97,91,97,96,113,104,94,108,100,103,109,96,94,111,100,93,92,100,96,105,108,106,111,107,106,107,100,95,103,110,96,91,106,95,88,103,97,113,92,106,111,97,101,101,102,98,112,102,113,98,92,93,110,102,111,101,99,107,104,106,91,104,106,102,99,104,98,108,106,111,121,101,113,106,102,92,88,106,109,102,96,102,108,98,96,107,112,95,114,113,79,109,99,89,98,101,121,94,99,82,95,98,104,92,93,101,115,98,105,99,111,97,103,107,112,104,96,105,89,114,110,91,97,100,111,119,96,95,102,110,91,97,102,78,102,103,103,105,102,101,91,106,107,88,99,104,94,64,112,102,104,105,97,103,95,97,96,98,111,95,92,98,83,108,107,105,79,98,103,96,109,87,102,91,104,96,105,85,107,97,109,105,98,97, +487.37991,118,95,98,110,105,107,86,100,97,90,81,99,102,96,105,123,95,115,103,106,107,82,101,109,94,111,91,104,104,121,94,105,115,96,100,112,114,103,105,101,108,122,97,102,107,117,107,105,103,99,100,93,97,101,109,109,95,105,105,89,94,90,100,90,108,114,100,100,97,116,92,100,85,99,110,110,108,105,110,101,99,108,114,95,88,103,105,98,97,104,110,108,98,101,98,96,107,102,104,109,97,101,73,87,91,98,99,98,105,97,99,104,115,103,106,99,105,89,103,108,95,96,108,113,104,101,111,97,117,105,109,97,96,107,105,112,107,104,103,108,103,108,105,108,105,96,106,103,116,97,87,101,104,97,112,97,101,96,78,103,109,104,105,112,112,105,102,102,107,111,105,87,95,105,104,96,106,99,101,108,96,110,91,106,112,96,96,94,104,102,112,101,113,114,107,109,99,95,97,111,99,97,98,105,91,103,99,111,113,104,110,99,116,108,99,99,93,96,95,110,119,108,105,103,104,80,111,108,96,117,103,101,105,96,98,90,104,102,100,110,101,99,99,114,108,108,98,102,104,104,105,105,101,92,108,107,109,79,97,96,109,104,102,101,100,92,109,106,102,98,117,111,139,102,105,95,98,107,105,105,110,99,98,99,83,102,92,97,120,95,103,106,101,114,111,107,113,102,109,105,87,106,107,111,99,114,101,108,102,112,103,104,96,112,99,106,95,109,112,101,90,95,115,103,114,113,93,100,97,110,116,109,118,108,103,97,103,86,85,103,87,101,108,92,108,107,106,101,108,106,110,111,110,109,97,102,116,119,111,102,107,97,98,95,99,105,107,110,92,107,103,112,114,102,111,109,114,99,91,96,102,114,107,106,102,114,110,101,99,103,105,100,104,102,93,97,108,103,106,101,115,112,105,104,108,106,121,106,111,114,103,89,117,104,111,111,114,103,102,101,110,90,98,114,106,95,109,90,90,107,87,100,115,103,98,101,100,114,110,104,87,100,99,107,98,112,105,102,109,110,105,107,100,119,103,114,98,114,104,109,103,103,104,106,110,110,101,102,101,100,90,109,99,117,99,105,104,106,114,102,106,113,109,101,110,96,106,106,96,95,111,107,101,88,93,92,93,112,110,132,113,105,106,70,101,99,94,104,110,98,99,105,116,110,98,100,107,103,106,81,97,110,100,106,119,110,107,92,102,114,99,103,121,98,112,105,105,101,112,100,92,115,93,109,124,113,98,110,113,108,106,109,110,107,99,108,101,104,103,113,108,107,110,99,108,99,111,108,112,107,95,97,119,104,109,105,118,105,120,102,107,91,110,101,106,107,98,123,112,95,112,103,105,90,112,112,104,109,113,108,100,106,111,109,100,100,99,114,117,109,109,108,106,92,101,97,113,101,106,108,105,108,102,100,118,111,103,107,101,105,103,103,102,113,110,117,100,100,104,102,95,117,104,103,96,99,99,95,109,113,88,105,103,105,92,92,114,89,103,108,109,109,91,108,101,101,96,100,105,110,106,103,110,108,101,107,105,108,104,100,101,113,117,96,106,96,93,105,111,110,103,118,101,100,100,91,105,98,101,110,107,92,100,110,104,109,96,107,96,102,105,113,88,103,92,97,104,109,107,108,99,105,108,101,93,103,110,118,105,108,100,107,104,105,103,110,111,102,117,97,105,94,98,104,104,107,110,104,98,96,106,103,100,106,95,109,111,96,107,110,107,99,101,106,110,115,77,102,94,98,109,112,103,108,101,92,96,104,104,103,99,104,115,110,100,110,114,103,99,115,99,112,105,105,102,92,99,108,113,110,96,101,97,102,108,107,101,95,112,95,110,109,107,111,111,105,118,103,101,101,104,101,113,106,114,100,109,120,102,99,103,117,108,109,102,104,104,102,115,107,110,99,106,102,113,95,106,105,107,117,104,99,95,102,110,108,108,103,104,101,106,116,102,101,102,98,107,112,106,115,104,94,100,105,113,99,113,89,101,100,100,107,114,104,113,99,110,100,109,108,112,104,111,107,112,103,102,93,93,101,112,107,113,112,116,92,96,100,84,116,99,125,108,103,106,91,101,101,94,101,104,108,99,100,86,102,98,105,107,106,108,104,110,117,105,111,100,95,116,109,105,115,99,101,109,104,118,111,108,106,95,105,106,105,107,110,114,102,97,111,105,99,118,97,103,105,88,109,104,104,117,104,116,101,101,101,106,98,99,111,96,108,97,104,117,110,95,102,113,104,113,106,102,103,102,112,104,100,99,100,106,98,117,106,101,102,102,103,98,106,97,111,105,113,103,104,96,106,104,102,111,111,103,106,115,103,96,104,105,118,107,102,101,104,108,98,111,108,95,98,94,112,100,72,111,98,104,111,125,102,94,88,92,104,93,113,77,100,107,98,111,107,101,99,103,96,98,116,95,98,98,107,97,96,108,102,125,112,98,103,102,96,104,105,102,102,94,97,113,115,109,112,115,87,99,105,108,107,112,98,101,100,106,102,94,112,96,102,106,107,107,117,107,108,97,95,101,102,105,99,109,89,121,100,111,116,96,117,105,120,113,98,96,103,99,114,106,106,113,103,106,99,105,112,99,102,107,107,88,113,105,125,118,103,113,101,111,102,86,108,108,100,98,102,98,99,101,115,111,99,97,98,95,104,91,104,100,108,117,98,102,103,94,102,97,103,103,103,103,97,109,94,112,104,113,103,105,95,98,113,108,93,103,117,105,122,106,119,109,117,106,102,110,119,103,108,94,90,103,106,121,115,98,107,109,98,107,103,108,98,112,100,100,100,117,100,120,109,108,119,110,101,113,107,102,113,106,100,106,106,113,98,117,109,98,106,111,111,92,110,99,94,120,111,110,113,106,98,103,104,110,103,109,99,115,92,117,112,107,113,106,118,108,113,106,114,104,105,105,110,129,102,106,103,103,113,99,88,108,119,93,96,114,102,89,108,117,100,101,106,106,115,103,90,95,110,94,101,97,102,106,111,106,106,104,98,76,92,103,105,119,97,103,99,110,99,98,91,105,102,107,103,103,97,104,101,107,108,112,108,107,103,99,108,107,101,89,106,92,99,120,105,117,102,112,112,99,105,106,110,104,109,108,110,108,106,95,106,109,103,107,99,113,112,100,107,104,110,109,102,107,112,99,106,98,64,70,97,103,111,109,120,104,120,99,102,103,111,100,97,96,96,96,107,107,90,101,108,112,106,112,111,111,101,115,87,112,105,103,102,113,105,95,116,108,94,107,107,105,110,95,98,103,100,113,98,117,101,95,100,110,88,106,111,105,106,102,103,103,87,108,101,99,105,94,107,95,122,105,97,103,104,91,101,102,121,114,102,112,109,114,106,103,102,85,101,94,107,99,109,104,95,135,88,107,106,103,113,104,103,99,113,104,97,106,109,106,113,113,101,108,100,106,104,96,104,96,100,105,94,112,105,92,109,105,107,103,115,95,102,89,103,107,106,93,103,111,95,102,96,113,109,109,108,90,109,102,103,101,97,116,105,98,105,95,98,108,105,100,105,105,97,103,102,109,114,97,107,105,96,108,103,101,97,103,95,102,103,106,73,104,108,87,99,99,86,107,84,113,107,94,99,103,113,106,98,105,104,100,90,104,110,106,89,92,105,98,97,95,95,99,98,96,102,120,107,106,95,99,99,107,105,96,112,101,97,128,105,100,109,103,102,108,106,120,111,98,100,126,102,103,100,94,98,113,100,112,121,104,100,102,108,110,96,100,106,70,105,115,100,97,86,102,106,117,97,100,102,113,105,97,101,105,113,115,71,83,102,115,102,108,97,101,97,102,103,102,104,102,113,111,117,82,109,99,108,82,98,102,101,86,97,106,106,103,102,96,103,104,107,102,113,96,103,113,98,106,103,104,99,113,99,108,96,105,96,105,106,97,100,109,105,102,112,87,97,102,109,110,99,109,111,111,109,105,115,109,95,106,100,102,102,108,101,96,108,98,98,109,93,97,98,110,106,105,106,87,111,117,98,122,109,105,100,101,103,116,119,117,101,107,113,109,98,119,108,105,101,100,104,102,112,102,97,100,102,109,113,102,109,98,110,99,102,95,111,95,110,126,107,106,87,115,106,117,102,102,116,103,98,104,91,105,77,95,108,118,110,107,101,120,98,97,97,105,97,108,116,113,101,99,115,110,99,95,108,108,113,108,91,111,116,100,100,104,102,100,98,99,106,110,104,113,109,103,101,102,101,95,111,113,112,92,95,112,114,104,113,94,95,94,109,105,108,109,91,110,104,94,88,104,104,106,117,106,104,104,103,103,129,99,109,100,100,106,105,109,101,106,122,107,101,105,108,105,95,105,108,108,96,104,109,103,111,94,104,108,117,106,96,102,102,104,99,97,131,100,108,105,109,96,95,106,106,90,103,108,106,105,104,111,109,99,101,130,108,103,106,101,114,106,112,113,101,91,112,115,91,97,97,105,92,116,105,107,109,105,101,97,90,105,102,106,96,100,96,119,98,97,93,86,92,102,110,105,101,89,102,109,105,104,99,103,85,103,101,97,118,113,100,107,103,99,96,107,97,106,95,96,96,111,98,97,96,92,107,108,108,113,92,107,106,103,97,108,109,100,105,106,103,123,105,109,106,108,99,108,106,101,92,96,88,87,117,99,100,109,105,109,108,106,101,105,86,123,99,100,116,108,91,111,107,115,112,100,93,102,91,103,97,103,93,101,89,97,94,105,112,107,98,92,84,95,95,99,111,95,109,97,105,105,100,112,94,109,106,114,92,111,104,107,109,117,99,103,96,107,105,100,98,129,107,96,94,96,99,101,112,101,103,106,110,115,97,103,115,95,104,117,93,100,100,102,121,91,97,98,103,102,106,110,112,110,106,103,101,120,104,95,106, +487.52048,98,106,104,108,84,102,96,117,92,117,98,110,102,106,103,100,98,98,107,94,98,115,95,107,102,98,111,79,102,101,105,107,105,100,104,113,100,105,113,112,99,91,98,111,106,115,99,121,115,101,100,111,102,105,101,101,96,95,95,113,94,100,106,92,116,104,107,105,103,109,101,98,100,99,93,112,92,105,96,108,105,99,99,112,104,99,100,104,94,111,106,127,92,110,102,90,108,95,105,99,68,98,95,106,107,111,110,104,108,105,105,92,97,106,115,117,106,91,120,100,102,89,101,102,105,103,113,104,113,97,102,95,101,97,104,98,96,110,107,99,98,107,90,96,108,103,107,102,100,105,103,104,123,98,101,112,95,99,113,112,103,99,109,97,113,105,104,99,97,99,113,112,111,99,109,106,102,88,102,106,109,99,111,101,97,107,92,113,105,107,100,106,98,99,111,107,113,95,95,99,95,98,102,107,92,112,109,100,114,101,91,103,105,94,98,96,107,103,105,110,100,105,102,108,100,97,108,116,102,103,105,105,109,108,98,99,101,104,102,109,96,107,110,100,101,99,102,107,107,107,103,97,109,97,100,108,103,104,103,110,91,103,100,96,103,110,103,106,108,110,108,113,110,102,103,107,92,113,97,108,114,120,98,110,99,103,96,118,113,111,123,98,117,109,101,102,100,101,97,109,103,114,109,122,104,105,110,120,103,110,102,85,106,106,109,99,82,111,111,112,108,103,113,104,110,105,102,104,103,112,108,91,105,112,113,98,107,104,101,104,107,101,102,112,109,123,116,104,116,114,97,112,103,107,104,105,98,103,107,114,88,112,109,101,103,104,102,130,101,111,109,95,111,96,104,105,105,113,106,118,104,99,114,109,83,101,103,100,104,102,113,103,106,88,93,109,108,107,95,104,104,108,99,97,110,98,109,115,102,98,103,112,98,105,109,104,112,102,90,102,99,103,99,105,94,102,109,82,94,114,104,110,91,97,101,94,97,108,100,103,107,100,106,113,100,111,109,112,96,118,98,125,101,109,101,103,94,106,110,97,105,113,121,109,100,113,116,103,107,98,100,102,98,100,107,105,94,117,100,105,100,107,100,98,115,113,110,101,106,100,113,104,113,113,110,103,109,98,103,102,108,101,106,103,113,110,94,100,99,106,116,104,99,104,97,106,105,106,108,101,113,102,94,102,104,108,95,100,108,96,95,107,93,104,106,111,107,94,93,106,107,108,101,106,101,97,104,109,100,126,107,99,111,110,106,110,98,112,105,101,117,99,96,112,109,93,111,98,111,98,97,107,100,109,106,104,101,108,112,105,112,106,102,101,99,88,105,115,112,90,107,96,108,97,121,89,99,96,105,102,105,101,106,96,101,114,105,86,110,112,111,105,98,104,112,98,113,97,103,95,103,93,129,106,110,113,107,110,105,104,101,100,103,109,99,116,107,120,108,112,106,101,105,109,93,114,110,124,103,94,101,99,98,104,104,109,106,103,98,99,113,102,107,99,98,110,110,117,115,109,100,95,112,111,90,118,103,82,129,108,105,98,107,96,99,102,104,109,112,118,102,113,104,114,108,109,103,113,109,107,105,98,110,108,106,92,105,106,106,109,113,100,116,105,99,96,105,108,109,104,101,97,98,109,118,100,102,94,110,107,117,98,96,96,107,95,111,92,108,95,114,93,103,103,105,96,108,105,101,99,110,109,99,109,105,103,104,103,105,107,87,101,102,108,99,110,118,117,106,103,114,104,105,99,107,104,95,114,99,110,102,111,103,114,92,118,110,103,98,132,100,114,102,105,114,102,102,122,110,101,93,102,108,104,104,102,101,103,112,95,104,104,105,117,102,109,116,113,103,107,97,114,111,108,112,108,93,108,98,111,105,108,102,117,100,97,117,113,105,103,110,98,112,115,106,98,99,99,107,100,103,103,100,116,116,107,113,111,101,101,114,102,99,102,118,105,113,110,106,101,105,99,97,93,109,95,106,99,98,103,98,108,108,105,106,98,107,107,99,105,103,106,90,119,110,105,99,98,100,108,104,102,112,108,118,99,103,99,104,99,101,95,99,101,87,93,109,106,96,116,114,97,114,88,114,105,94,97,106,120,98,97,110,107,88,130,105,103,119,108,106,107,104,106,90,107,107,103,102,105,120,120,114,105,112,108,97,91,102,96,109,98,107,97,121,113,104,103,107,105,101,89,110,103,109,89,103,100,112,105,95,118,97,96,107,109,85,111,110,108,106,102,102,83,102,104,94,105,102,85,107,101,97,95,108,96,109,108,76,95,91,103,95,111,107,120,102,102,98,114,101,115,106,99,109,99,75,108,107,104,109,103,107,109,97,105,114,108,102,110,104,102,112,109,97,104,94,109,106,99,104,117,105,91,116,100,98,113,105,106,103,108,96,93,93,102,97,103,105,100,103,98,104,121,122,109,93,116,86,94,110,107,111,108,107,120,95,72,116,102,105,107,125,116,110,109,107,87,107,102,106,108,101,124,105,109,119,111,102,116,105,113,96,117,107,97,123,91,100,105,99,103,120,105,101,105,114,106,96,105,105,104,113,101,101,88,100,108,106,117,106,98,101,125,93,102,109,100,103,102,92,103,109,99,102,99,114,108,104,87,104,92,102,81,103,106,116,104,100,109,96,103,88,110,105,99,121,114,115,104,121,100,104,103,103,109,105,115,113,112,107,102,116,102,105,123,95,127,109,104,102,86,105,110,115,103,113,103,98,109,103,110,110,109,107,102,93,118,111,96,96,95,102,109,102,95,119,99,99,113,102,99,91,109,115,94,109,99,113,86,102,97,106,97,113,101,100,102,103,102,106,111,116,106,103,96,92,104,95,99,99,88,109,111,112,112,107,97,110,109,108,106,125,112,107,96,81,122,109,112,111,105,111,101,100,113,87,109,108,109,106,109,100,103,108,98,110,114,101,110,106,107,103,109,95,105,105,107,104,103,99,115,101,97,107,106,103,99,93,101,123,111,79,100,95,95,123,99,106,104,104,100,98,106,110,113,104,108,104,105,105,117,112,110,98,115,98,106,108,117,127,99,113,112,113,99,112,110,104,103,118,100,99,108,103,97,114,91,100,110,109,103,115,110,108,103,102,111,111,105,105,99,98,109,105,104,110,112,105,103,116,101,106,95,105,105,99,105,110,121,122,109,90,102,104,113,94,103,108,99,97,100,109,85,113,98,87,102,104,116,110,105,104,101,97,100,121,103,92,94,102,110,114,110,106,108,96,110,94,109,123,112,108,103,126,106,100,107,102,97,108,104,106,108,97,115,99,97,94,98,108,99,104,110,102,113,105,114,104,106,100,98,113,96,111,94,104,104,108,100,94,96,97,98,95,108,97,108,109,101,106,111,89,100,103,112,108,105,113,109,111,101,102,96,110,109,110,106,94,104,100,116,105,83,91,103,106,108,100,101,112,100,122,108,111,110,103,95,98,93,108,110,98,115,96,100,109,109,107,96,116,99,108,99,106,109,99,84,103,98,103,113,112,105,103,96,140,101,91,114,99,102,108,103,106,116,96,108,91,122,95,94,107,105,102,101,100,102,96,93,105,110,116,116,102,107,106,101,101,101,99,101,105,105,103,102,100,95,100,98,100,105,110,106,111,108,108,104,97,100,103,104,111,99,114,96,112,113,106,98,109,101,101,97,84,105,103,121,92,108,94,97,94,101,120,108,113,88,95,106,106,103,100,95,99,102,110,105,107,110,113,98,99,99,106,110,107,107,99,93,110,102,102,115,99,113,99,95,99,104,98,110,103,115,88,113,107,110,95,104,104,103,121,103,106,129,105,106,94,124,105,106,102,103,98,120,99,97,102,110,83,109,103,95,107,91,92,119,105,104,103,97,107,92,104,122,107,96,105,72,99,101,75,109,102,102,99,94,105,101,110,97,105,107,109,117,95,92,109,107,98,108,106,114,112,101,107,95,101,94,100,113,104,108,103,105,104,120,88,105,81,97,96,107,100,101,108,110,103,101,125,99,103,108,109,101,115,100,108,94,104,115,97,101,128,103,109,108,100,112,100,88,101,113,102,94,112,109,106,104,105,100,109,119,112,122,102,104,96,110,105,99,111,97,97,109,106,108,99,109,100,96,96,129,103,97,95,101,112,114,93,97,106,91,107,100,104,105,94,92,116,116,116,102,109,109,103,112,114,102,118,104,94,111,103,109,100,103,114,109,110,95,93,104,113,102,95,99,109,102,108,113,95,88,106,94,96,106,112,103,99,109,104,91,121,93,98,98,97,122,98,94,87,108,99,112,98,105,102,110,105,106,117,109,104,106,96,110,97,105,96,103,94,110,99,98,113,107,121,114,93,108,99,117,104,95,115,109,95,96,101,101,95,103,116,112,103,119,102,102,68,107,103,87,109,91,95,103,99,94,113,109,101,91,98,103,95,113,110,110,107,93,105,101,98,112,99,111,108,100,102,90,113,103,105,110,99,115,96,106,113,102,98,122,112,100,102,105,98,109,87,103,106,98,112,108,111,111,105,108,91,101,94,99,103,100,105,95,106,112,106,111,108,94,85,110,109,101,100,101,105,105,107,132,97,109,109,104,113,98,100,93,105,112,111,106,91,98,106,99,111,102,97,99,102,110,101,96,109,99,67,112,101,98,100,105,102,101,114,102,83,104,106,99,68,101,104,100,103,99,117,103,102,102,100,101,104,103,98,101,91,104,98,106,115,104,101,118,108,112,95,99,98,104,91,95,91,106,108,99,101,113,113,108,101,114,107,100,104,119,113,108,112,108,102,96,102,110,109,93,107,103,106,104,114,97,95,105,112,96,88,112,93,129,101,107,94,133,106,102,101,100,105,98,112,108,83,114,113,107,114,90,134,100,105,96,92,100,101,97, +487.66104,102,98,101,99,106,100,94,113,122,110,125,100,100,100,100,96,88,109,99,114,120,100,92,108,107,108,113,102,103,110,110,105,105,99,113,110,112,67,100,114,107,79,64,109,102,99,98,84,105,110,97,109,122,95,109,115,101,95,108,111,95,85,93,102,122,113,109,113,110,100,108,113,99,114,103,99,96,106,103,104,97,108,108,111,98,103,101,105,107,101,103,109,101,99,75,102,107,116,88,106,109,112,84,109,101,104,95,101,105,105,107,107,116,95,112,112,103,110,99,86,97,103,102,105,114,100,137,108,113,107,105,102,92,99,120,102,103,109,123,98,119,109,102,99,91,104,120,91,84,105,104,106,103,100,104,98,100,93,109,101,107,106,108,72,106,103,100,90,99,95,106,97,111,106,100,102,111,90,108,86,125,103,102,117,111,95,100,92,103,95,106,99,109,113,108,97,117,95,95,100,105,107,108,94,100,110,104,107,109,109,99,114,113,109,106,103,103,105,104,115,94,77,100,120,112,104,110,104,103,108,103,100,103,103,116,103,104,108,99,104,91,94,116,105,98,105,101,111,95,104,103,111,105,108,101,113,103,112,99,105,105,107,116,110,99,103,107,101,111,99,93,117,110,112,114,101,100,69,120,109,109,107,99,100,93,112,97,105,104,116,111,118,110,106,104,98,111,104,102,106,108,107,117,119,99,109,109,107,116,107,90,107,106,111,100,110,106,117,103,107,110,108,104,112,111,109,104,86,105,102,107,122,108,109,106,105,117,112,103,102,107,110,95,114,103,110,104,99,101,107,109,105,120,108,109,118,132,110,107,107,103,101,106,100,105,117,110,121,96,104,116,108,109,103,109,98,98,106,95,113,111,89,92,113,90,99,104,104,104,108,116,97,99,103,99,113,109,105,106,122,117,107,104,108,90,100,116,103,102,106,99,93,107,112,109,107,111,97,104,108,97,107,87,110,108,104,100,103,114,101,106,104,106,112,113,106,100,120,92,105,101,115,122,100,98,101,105,108,113,108,113,111,109,101,106,104,96,99,118,104,107,108,111,121,113,108,108,99,113,107,98,100,102,111,114,100,81,108,114,99,95,106,110,105,101,106,117,110,108,113,100,105,100,104,103,105,110,95,103,115,109,105,109,104,121,108,102,95,110,109,113,101,111,109,102,109,100,102,108,104,101,106,109,105,106,118,96,92,106,100,97,103,110,99,109,107,104,97,106,99,110,105,104,100,104,99,112,91,111,112,110,118,99,102,100,105,113,99,99,100,118,99,108,102,101,105,105,105,108,123,120,95,96,117,104,109,98,99,102,103,103,105,109,101,101,108,109,109,105,102,101,104,97,103,115,100,107,109,101,111,108,100,113,103,100,106,112,112,105,96,98,104,95,103,119,100,111,101,105,115,107,108,92,100,108,97,109,116,106,101,107,112,106,116,105,108,111,108,106,105,104,108,102,107,103,95,106,99,115,106,98,128,110,111,109,114,125,114,105,104,106,108,104,108,92,113,103,96,96,98,118,102,112,75,107,100,110,120,109,103,115,112,112,102,106,101,99,104,81,99,96,103,104,113,101,107,109,100,112,93,95,109,100,105,102,96,98,124,118,108,77,114,102,109,108,99,105,121,116,97,110,102,105,113,112,104,99,114,103,117,91,85,108,102,94,97,106,105,122,104,106,98,110,107,103,110,112,119,102,111,106,103,120,99,110,107,108,98,106,111,94,104,114,103,112,102,99,109,104,109,107,117,99,103,103,94,102,110,114,108,107,109,118,114,100,104,106,99,109,103,106,116,114,111,102,106,106,109,103,104,101,103,109,108,88,103,113,118,105,93,121,105,105,108,87,98,116,115,103,112,116,112,106,109,101,115,103,104,109,110,104,95,106,97,96,100,110,110,106,109,105,116,108,113,108,117,106,104,109,101,119,105,98,111,99,96,100,114,103,103,122,89,99,109,94,88,90,108,104,106,107,113,112,103,107,110,116,104,111,105,117,96,98,103,100,81,98,123,99,94,123,103,95,107,109,106,104,106,100,115,105,105,118,107,99,99,94,102,101,100,104,107,115,112,112,111,106,100,99,111,104,105,109,102,116,98,108,116,108,88,109,109,114,114,99,115,95,104,100,113,110,113,78,101,113,97,127,110,95,109,104,97,112,105,110,108,95,110,103,108,104,100,109,92,105,102,100,109,107,102,111,98,95,116,99,107,111,99,106,116,110,105,115,97,93,109,104,100,116,101,110,92,110,102,110,107,105,104,104,111,109,102,102,99,116,105,99,117,88,101,99,117,95,104,104,120,107,116,97,108,117,111,83,89,102,109,120,100,105,98,115,116,109,104,106,95,108,113,111,110,100,106,105,119,92,105,98,110,98,105,113,119,116,99,90,102,102,104,107,104,103,107,109,101,104,104,100,93,99,97,113,110,102,112,94,101,113,115,105,97,101,112,104,102,108,98,108,127,103,113,104,122,92,90,94,100,101,121,117,98,115,96,103,109,101,113,103,110,104,105,102,108,111,98,107,100,107,97,93,105,114,104,95,102,107,112,100,103,100,101,106,96,113,99,104,106,101,108,117,92,100,95,108,116,107,96,95,99,114,74,112,99,109,105,107,113,117,104,109,105,113,101,110,92,108,98,110,106,98,106,103,96,96,102,108,106,109,94,113,106,103,117,108,101,113,107,77,108,113,108,109,102,113,126,96,102,110,104,108,105,113,104,110,105,101,110,105,102,114,105,108,106,99,128,113,107,107,99,96,107,128,115,94,103,105,106,105,114,108,96,110,101,101,110,113,105,110,108,106,87,107,108,109,101,121,106,112,113,100,102,113,113,101,100,110,108,102,106,103,102,106,92,103,125,109,107,111,83,103,121,96,103,108,106,98,96,92,102,107,108,98,103,101,111,103,81,95,115,121,103,104,106,107,106,105,113,113,106,101,102,110,97,97,109,99,99,107,103,105,106,106,105,107,97,109,110,100,113,105,102,104,105,98,100,114,110,97,100,103,103,99,111,113,109,108,112,106,92,105,96,121,102,104,109,103,111,114,87,104,110,103,97,111,105,101,103,122,99,106,107,103,92,103,94,115,98,116,99,101,114,119,98,95,109,116,111,110,108,106,79,112,101,105,98,105,111,117,98,95,108,103,115,124,102,99,95,105,104,116,122,107,103,114,106,111,101,112,105,99,113,98,98,93,104,103,96,103,112,103,98,106,107,100,103,100,112,128,108,119,98,101,102,106,108,105,89,95,87,103,97,99,102,113,91,85,101,96,92,95,99,112,101,115,109,108,112,99,93,99,96,113,106,103,98,107,112,94,95,110,101,101,116,105,97,97,109,103,114,117,102,87,102,104,104,99,105,96,102,106,106,109,112,108,96,121,105,111,87,100,110,101,97,112,96,99,99,99,91,104,107,104,106,103,96,102,104,106,109,106,98,90,119,99,117,100,123,114,109,96,107,100,100,115,104,85,100,117,85,113,113,99,105,107,111,111,119,99,104,104,107,118,109,119,107,90,107,105,114,102,111,101,93,115,115,111,117,102,106,124,118,114,88,111,110,112,95,111,105,100,116,95,111,95,112,105,95,114,109,106,93,98,104,116,108,100,96,110,99,108,84,92,98,113,96,116,98,106,104,105,99,80,99,106,104,106,102,103,110,110,81,109,112,103,107,102,103,106,111,113,103,114,101,111,106,103,109,118,108,117,90,111,129,105,97,115,100,100,104,102,106,100,114,91,96,106,107,103,96,100,95,104,92,103,105,111,106,116,91,109,100,91,112,101,113,110,110,99,101,95,108,105,102,102,111,97,120,102,108,111,124,96,112,101,115,103,107,115,96,100,101,98,109,113,107,104,90,95,119,99,102,104,121,109,91,100,113,105,105,105,98,104,109,100,104,105,103,105,103,108,113,105,122,110,107,102,117,108,109,103,97,99,111,105,106,99,97,99,108,99,101,107,106,105,103,101,106,104,103,94,107,106,107,107,102,114,111,110,104,99,103,113,110,106,87,99,95,102,106,111,109,106,108,108,103,119,96,108,101,108,117,94,93,108,102,91,112,105,99,106,90,107,116,106,109,119,108,103,118,102,99,105,103,105,94,100,117,116,105,90,95,107,91,124,108,111,99,100,109,104,101,109,104,109,79,111,108,120,102,100,98,105,115,103,105,118,106,96,110,121,110,102,116,95,95,93,101,121,116,98,103,101,98,97,105,101,106,107,102,107,108,100,102,108,111,111,102,104,105,102,111,110,101,99,107,116,110,106,97,95,99,102,97,116,107,107,103,100,86,97,105,112,112,115,109,104,108,112,110,105,110,112,99,100,117,107,105,105,97,103,115,126,100,104,107,100,91,100,107,106,105,105,105,93,117,102,103,99,112,106,101,109,109,100,113,105,96,102,105,103,104,107,115,105,103,102,96,107,95,105,113,94,106,109,126,110,101,106,93,99,125,114,95,99,109,110,101,112,108,99,96,104,95,96,109,114,113,110,109,108,100,100,97,103,94,96,101,106,116,104,113,101,109,95,101,111,86,99,100,110,115,110,99,113,99,88,112,99,95,102,102,105,113,103,111,91,98,108,95,115,106,103,99,100,112,110,104,103,104,106,103,116,96,115,105,105,102,99,109,93,99,92,108,103,112,95,99,94,94,123,111,111,102,108,94,109,109,105,105,103,107,117,107,117,87,109,91,81,111,101,105,106,108,101,107,101,108,100,95,106,101,116,102,119,106,103,107,99,99,97,112,95,98,97,111,107,103,113,100,107,102,106,135,76,98,103,92,102,91,107,107,116,111,113,108,107,116,126,109,95,98,104,111,104,104,105,110,100,101,103,112,125,92,106,103,95,112,99,99,107,103,95,100,103,104,113,111,99,99,104,90, +487.80161,117,90,101,96,103,109,94,97,85,107,110,102,90,118,113,95,111,110,94,106,109,109,110,96,102,104,96,105,102,82,104,100,98,95,105,98,97,105,91,101,99,91,91,97,113,84,120,101,99,98,98,97,122,108,92,113,98,89,113,103,100,89,92,129,104,102,97,107,100,113,95,106,93,104,95,112,105,111,111,105,105,103,104,118,88,103,121,108,126,110,126,107,117,98,97,102,109,96,97,95,104,93,97,104,100,112,114,103,110,97,101,107,96,112,109,103,104,100,104,101,104,106,95,99,107,99,102,95,99,97,102,102,114,101,105,113,103,106,98,100,109,106,114,105,99,105,94,105,98,98,102,104,101,95,111,100,102,99,99,106,95,112,96,99,94,102,95,92,100,98,102,94,97,131,98,100,103,92,91,100,104,113,110,102,106,113,91,98,101,113,103,100,97,96,101,99,98,102,96,96,99,106,98,100,95,100,92,104,108,117,93,105,106,106,98,101,103,103,93,99,93,91,106,92,74,122,97,103,102,101,99,95,109,124,107,98,100,108,96,101,95,114,108,102,96,96,112,102,103,102,99,103,100,99,90,108,105,98,87,97,109,104,99,99,97,110,106,97,101,112,117,95,106,99,111,99,108,114,99,94,113,111,84,96,94,105,72,96,103,108,100,107,97,104,103,100,107,104,96,106,102,105,96,112,89,111,98,101,108,113,98,100,109,111,99,106,103,98,104,97,91,98,113,106,103,104,108,98,113,104,104,96,97,107,100,99,106,100,91,96,113,102,92,100,105,104,103,106,104,118,98,102,106,106,104,102,103,102,104,109,99,102,100,94,101,97,99,105,111,100,117,99,98,105,101,100,100,88,107,97,111,109,98,100,101,99,99,104,102,103,107,104,114,103,121,104,95,95,110,114,110,96,97,109,120,100,109,102,103,108,100,109,110,95,108,100,114,98,102,108,112,95,95,113,105,92,99,112,102,113,94,101,101,101,108,105,103,105,93,97,106,98,104,105,104,99,102,105,102,120,113,100,96,108,108,99,105,105,106,110,97,96,117,91,111,119,97,93,98,101,116,105,100,109,102,105,91,89,118,103,100,110,115,106,104,95,106,95,99,103,104,99,108,107,100,108,101,108,96,106,103,99,107,105,99,100,112,105,102,108,113,116,107,97,116,87,103,108,104,102,100,105,103,113,104,104,102,103,98,103,91,108,98,96,96,114,89,100,104,103,99,104,108,92,82,101,111,107,115,103,103,102,92,83,90,107,106,105,99,112,108,102,102,102,107,89,101,112,107,109,105,121,111,110,118,113,106,99,99,109,111,108,113,100,120,99,115,102,117,101,112,99,96,108,114,107,101,104,107,104,105,107,102,97,96,112,91,109,113,111,98,101,115,117,108,95,106,96,101,99,107,110,111,93,104,84,109,108,95,116,97,109,108,107,105,92,103,100,91,102,101,105,99,110,101,96,108,103,103,104,109,108,102,113,100,110,101,99,104,99,117,121,101,100,103,99,103,105,103,121,104,110,103,100,93,106,114,108,112,99,107,112,113,99,102,104,109,110,87,114,92,100,100,94,117,95,101,109,99,97,96,90,108,101,99,90,100,97,104,117,111,104,116,101,99,97,100,96,101,93,111,99,103,106,84,108,102,110,99,104,112,102,104,99,94,95,108,96,102,100,98,101,100,99,116,97,95,99,96,110,89,112,79,100,94,106,107,122,105,94,109,121,98,100,101,111,105,97,101,101,106,107,95,107,107,107,106,94,87,91,103,98,101,97,102,117,110,104,120,97,95,113,98,112,108,102,94,105,131,107,93,112,91,105,109,84,109,106,104,109,108,94,109,91,112,117,109,105,114,109,109,117,109,101,108,107,103,106,114,76,100,91,120,98,101,112,98,123,104,92,103,101,104,102,84,102,103,98,111,100,107,106,107,108,104,104,111,100,103,110,114,99,108,93,88,99,94,104,101,97,105,108,105,105,121,100,99,95,117,92,105,94,113,107,102,121,114,103,103,101,97,125,99,106,92,99,107,108,112,106,102,104,110,98,110,100,89,93,101,142,105,113,108,105,99,96,100,108,105,102,119,96,111,114,99,107,118,109,112,108,100,100,97,108,98,112,125,96,105,108,87,102,99,105,87,100,109,110,109,96,124,102,107,112,105,107,99,101,102,101,102,97,94,106,100,108,98,105,96,96,102,108,107,78,111,101,106,105,106,96,99,111,102,95,106,105,106,98,102,99,108,100,94,108,94,103,106,97,110,100,88,97,102,138,99,108,103,102,103,95,96,113,96,120,100,103,118,124,106,100,116,113,102,102,105,105,116,87,103,107,101,102,110,100,91,103,96,114,100,104,106,107,93,111,115,98,101,103,122,96,100,111,102,117,108,105,99,101,109,101,100,102,104,95,103,97,109,108,99,94,105,100,114,102,105,104,87,111,94,85,94,101,110,110,108,112,107,97,115,102,102,100,103,104,102,97,99,95,106,115,102,98,101,101,108,112,110,102,95,99,100,112,103,95,102,104,104,103,100,114,110,105,103,106,105,104,117,132,119,87,104,106,103,98,103,109,119,107,106,91,104,98,103,110,109,108,109,99,113,96,119,118,114,107,113,114,112,116,105,93,101,106,117,103,104,112,108,105,104,105,91,91,108,122,105,106,110,107,110,96,115,100,106,99,99,115,106,104,98,112,97,100,109,101,97,104,107,96,102,98,116,105,119,91,113,102,94,110,90,108,111,136,92,91,108,102,106,121,103,113,109,99,111,101,103,96,106,114,103,104,98,106,107,100,109,104,94,105,113,94,107,107,109,104,112,148,111,111,109,108,104,102,114,113,109,103,83,108,102,101,101,98,91,106,111,94,98,104,101,110,95,117,100,90,102,99,103,98,111,118,95,92,111,111,111,91,102,96,106,104,103,106,108,108,100,113,109,99,106,105,102,104,114,106,92,109,106,105,111,103,100,106,104,96,116,117,105,109,98,100,119,90,102,106,112,107,97,106,99,97,113,107,99,105,94,100,94,113,110,85,107,107,86,98,109,106,114,105,105,105,104,108,110,99,87,113,105,101,106,100,99,111,107,100,109,105,108,107,97,112,105,100,113,108,102,94,88,92,110,110,111,104,112,110,111,100,101,112,92,99,97,101,105,103,109,106,96,101,94,109,105,97,96,98,127,110,112,109,109,105,100,102,94,106,107,100,69,112,106,104,97,79,105,98,92,109,98,102,95,102,105,112,97,100,110,95,119,107,109,108,99,116,102,105,87,110,107,95,113,109,111,91,92,106,103,100,111,103,107,106,109,108,109,102,102,116,110,98,108,91,106,116,102,99,104,108,107,92,113,97,99,102,98,109,103,100,106,107,96,107,109,99,106,109,87,103,98,115,113,104,99,106,113,110,99,119,109,101,107,95,98,106,92,102,104,101,103,112,110,100,94,107,92,96,114,99,101,97,113,98,96,105,105,115,91,107,102,110,96,112,110,105,100,98,115,106,113,102,103,97,110,100,107,104,104,117,102,100,98,105,110,104,108,110,102,108,94,110,101,115,108,101,105,109,87,109,111,110,115,96,101,96,109,105,113,105,106,105,108,100,99,99,81,115,98,102,102,91,99,98,86,108,104,115,100,104,100,105,109,100,111,103,108,106,104,117,101,110,98,105,97,115,113,109,100,103,102,91,99,117,93,100,104,78,102,101,102,99,104,98,107,105,101,109,99,110,108,108,106,109,91,108,102,104,99,100,116,108,118,102,112,90,99,100,119,110,106,101,114,114,102,106,112,117,103,103,88,104,102,97,110,108,106,103,101,100,108,95,95,108,97,107,93,102,116,106,99,93,102,97,109,106,107,96,109,96,105,104,103,121,110,107,112,109,106,103,97,94,95,107,111,106,85,107,110,105,109,97,118,108,108,108,114,96,102,99,95,108,108,96,121,103,106,113,97,108,102,89,99,101,108,108,99,111,101,104,119,101,104,100,102,112,92,97,113,116,105,119,105,108,111,109,109,104,100,102,104,102,111,106,106,114,95,105,118,116,103,106,101,114,113,106,105,115,103,115,112,113,106,98,109,95,113,105,107,107,101,122,104,111,91,105,116,99,98,111,122,95,112,101,91,96,106,107,102,99,111,106,103,112,94,65,83,97,120,96,114,98,124,87,102,98,101,102,103,104,91,114,113,115,112,100,125,111,109,91,113,99,101,89,103,105,97,105,99,105,107,108,105,99,91,104,104,99,95,107,100,105,106,92,117,104,113,102,92,106,104,99,95,98,103,112,124,101,102,93,109,106,114,124,100,92,79,112,109,101,122,106,113,106,106,109,114,98,113,112,107,111,106,111,96,108,106,112,91,107,103,106,98,102,110,112,107,94,111,100,117,103,99,101,104,94,100,90,102,100,108,101,100,111,114,95,112,98,96,97,99,115,108,109,101,101,101,109,107,100,97,96,107,112,102,111,120,116,108,99,101,96,106,105,94,102,97,101,108,109,110,120,113,101,102,98,106,116,110,106,111,103,91,124,100,106,100,105,111,112,102,65,114,98,111,113,95,96,106,101,120,102,116,106,120,96,109,114,114,99,96,99,95,106,95,105,91,100,98,106,102,103,111,104,112,95,106,103,100,94,110,102,102,117,104,99,109,99,111,107,102,108,93,98,96,98,109,102,104,114,99,99,101,111,104,98,104,102,111,101,109,94,104,97,98,107,93,99,101,95,108,91,103,121,93,116,139,106,109,104,107,104,101,102,108,115,99,108,105,105,105,106,91,100,88,103,97,98,113,102,104,107,93,100,116,99,101,99,103,109,90,102,100,101,98,101,110,97,87,102,99,91,108,107,103,99,102,104,106,107,100,104,105,86,118,97,97,95,106,104,103,96,105,99, +487.9422,102,106,99,96,79,98,98,109,83,105,100,106,101,103,106,138,90,107,95,106,103,98,95,101,100,103,97,105,89,107,110,105,105,104,93,106,98,97,114,93,100,96,114,97,107,95,94,118,93,106,89,116,102,83,101,80,97,100,102,117,91,124,100,102,107,113,95,103,102,99,102,97,93,102,105,111,102,94,112,82,111,106,98,108,90,101,108,101,104,109,111,100,108,132,101,110,112,91,90,107,108,106,94,105,92,101,107,108,93,92,117,108,103,91,106,115,103,102,92,109,101,100,113,107,93,110,113,99,107,111,104,99,107,99,106,85,103,96,100,94,109,104,102,100,103,103,111,83,99,104,105,102,133,102,90,119,107,104,103,124,105,95,105,98,102,100,95,94,111,108,98,117,100,103,103,98,105,90,106,111,117,109,106,109,103,105,98,107,99,105,89,95,96,109,117,103,121,103,119,113,112,96,117,66,110,98,91,108,104,102,92,111,108,101,98,108,92,99,114,109,98,100,107,95,118,107,102,98,108,82,96,102,104,88,109,108,113,109,111,102,105,102,123,100,98,105,104,100,116,99,108,104,88,110,104,100,100,109,105,99,85,83,98,99,97,95,111,103,97,103,104,112,102,95,97,113,107,106,110,85,101,111,92,101,116,98,93,97,98,103,111,109,103,98,102,107,109,97,106,95,97,96,100,99,104,91,117,100,95,121,102,108,105,109,109,106,99,104,100,100,109,101,101,107,100,96,97,98,116,98,100,98,110,100,102,112,100,99,93,91,109,102,103,98,108,118,110,103,100,92,96,108,103,111,100,90,103,111,112,104,100,96,98,97,112,100,91,104,102,107,114,102,104,117,105,106,106,102,100,108,100,104,85,84,95,108,110,107,114,90,102,107,91,108,96,112,95,100,106,122,105,99,91,99,102,97,98,108,103,110,104,92,103,98,100,104,100,96,114,111,100,112,108,101,106,99,90,99,106,107,94,106,105,106,101,101,90,102,106,96,108,109,106,106,98,99,100,102,109,119,103,99,105,108,94,98,101,100,106,106,96,103,105,105,92,143,102,108,112,105,106,106,110,100,102,94,104,118,113,93,87,106,107,104,108,97,108,111,107,99,109,103,109,102,96,112,109,111,112,101,123,108,104,98,104,101,86,101,110,96,92,113,101,111,110,103,110,107,83,91,109,103,124,111,106,102,103,94,107,114,95,72,110,116,109,103,94,93,102,105,93,101,105,101,98,108,99,96,105,106,105,110,99,99,113,99,108,112,113,95,107,99,101,111,95,96,116,117,110,101,94,108,102,108,103,103,110,101,117,109,105,112,108,97,107,94,103,105,103,90,116,110,93,89,120,102,97,113,103,91,106,106,120,108,101,110,110,98,111,107,118,110,100,104,100,102,112,101,99,96,104,103,110,98,103,104,104,99,113,105,103,117,113,99,112,107,97,103,95,89,110,102,114,115,100,104,94,105,112,98,95,107,95,116,88,102,101,97,101,114,118,106,110,101,86,115,100,98,114,91,111,98,98,98,117,110,107,114,108,101,100,101,106,91,106,80,101,101,104,107,113,99,101,101,100,101,108,126,110,108,104,100,105,108,105,109,106,106,109,94,105,98,106,103,110,104,108,108,106,99,110,111,108,105,105,107,115,106,101,105,107,91,99,91,102,103,111,96,113,99,94,109,98,113,116,95,110,104,90,107,107,99,98,96,102,108,110,102,105,105,91,106,105,109,95,106,93,105,114,97,101,95,104,93,92,103,106,99,97,87,104,100,109,103,103,110,106,112,99,104,97,102,90,108,103,102,98,108,101,98,88,104,100,110,106,103,109,110,112,103,108,105,107,106,107,97,110,97,107,102,95,111,106,104,108,104,104,99,96,102,109,100,115,120,114,99,102,101,98,100,97,111,103,103,103,103,107,99,108,101,117,101,103,111,104,109,99,114,100,124,109,120,104,104,98,106,110,101,103,110,105,105,90,107,97,98,102,106,96,108,104,95,118,100,107,100,99,104,104,91,113,107,105,112,113,95,98,110,111,116,115,97,98,103,104,92,103,111,111,101,110,103,100,102,110,100,102,109,108,103,110,108,107,106,102,103,103,110,105,111,101,113,109,102,100,100,103,87,102,117,111,101,105,97,111,101,102,109,92,112,97,108,106,113,113,114,109,111,88,99,105,118,109,111,113,102,95,128,104,103,95,102,100,98,97,113,103,108,91,105,109,112,112,99,107,105,93,109,97,111,106,95,102,102,103,102,101,98,103,91,97,113,106,100,114,93,105,120,106,111,100,97,103,105,109,94,108,107,100,107,108,116,120,104,103,103,97,102,108,109,104,101,101,101,117,100,99,120,107,110,133,93,108,96,110,105,107,91,110,92,101,97,97,109,82,105,107,106,111,98,95,103,97,112,114,98,98,112,105,97,92,106,107,125,109,104,105,116,101,111,119,98,109,110,107,94,102,113,104,98,113,100,98,120,108,113,99,86,101,127,109,95,115,96,99,102,105,110,109,112,102,111,101,95,101,116,94,103,100,96,79,110,107,106,104,130,106,104,95,111,99,99,98,96,99,116,100,99,104,94,97,104,98,119,116,105,104,104,106,100,110,100,104,112,115,113,112,107,143,119,104,100,111,102,95,106,91,105,102,103,97,112,105,97,106,91,108,102,108,106,104,102,109,112,100,92,106,99,106,95,92,98,116,111,106,106,104,106,107,107,104,106,102,100,97,113,112,80,107,108,98,95,115,112,116,101,108,119,102,104,128,108,106,84,111,105,109,100,95,114,103,104,107,103,109,104,106,117,101,98,104,106,109,101,114,109,107,101,110,106,113,109,116,102,96,94,95,110,109,91,110,109,107,109,124,94,112,102,107,123,102,103,106,99,110,106,105,91,100,109,94,96,119,104,104,113,110,110,98,86,103,110,98,99,108,105,104,103,107,101,87,108,108,112,105,84,112,108,86,98,102,112,97,107,112,106,94,121,111,106,109,103,118,105,102,94,104,102,89,89,100,100,108,113,95,103,107,90,111,105,105,110,103,109,108,101,106,99,107,106,113,107,102,108,103,103,103,107,102,100,119,110,103,106,105,125,106,100,112,110,79,120,107,100,115,105,106,106,95,107,94,99,109,99,109,94,100,103,100,98,109,104,118,98,92,99,116,94,107,108,96,97,108,106,81,108,115,105,115,108,110,105,92,106,104,105,100,111,105,110,117,96,106,101,68,117,107,90,112,99,114,110,86,114,107,90,103,107,108,100,101,113,104,95,103,111,114,102,99,104,106,100,102,104,99,115,104,103,99,109,113,110,105,97,101,111,99,99,103,104,100,110,112,99,101,104,100,95,120,106,103,98,143,113,99,115,105,99,102,99,105,103,99,106,91,109,105,103,110,117,99,100,95,105,93,107,126,95,114,103,96,102,104,109,107,98,106,112,95,98,109,113,107,101,121,105,107,104,109,97,102,106,104,91,100,106,111,111,123,104,100,100,112,116,104,101,108,107,99,103,95,108,98,97,94,112,103,106,99,108,100,104,109,94,112,108,105,103,108,119,99,105,100,103,92,100,101,97,125,111,101,100,116,110,112,111,118,101,102,96,90,103,83,102,101,93,99,104,106,100,101,106,101,102,119,109,102,102,104,100,103,112,99,107,110,98,104,98,103,99,113,106,107,107,98,105,106,94,105,108,106,97,113,110,101,113,103,99,95,98,100,101,103,95,108,109,113,109,99,102,105,98,99,101,95,104,107,109,103,99,79,90,116,92,101,87,111,99,104,106,110,103,104,112,104,102,95,108,99,99,124,87,114,105,92,103,98,99,116,108,101,83,104,109,103,81,106,105,99,103,95,89,101,109,114,106,103,101,104,94,102,113,93,100,105,101,109,101,116,95,105,100,113,110,111,85,120,96,106,132,101,107,110,101,91,98,102,96,109,103,96,112,104,103,97,95,108,101,101,96,109,99,107,116,108,107,120,108,113,109,111,108,117,103,103,97,99,114,92,117,116,103,109,106,116,104,117,107,112,104,106,95,95,97,110,108,102,104,121,97,97,108,103,98,111,103,101,97,103,91,104,107,98,101,105,106,105,112,102,108,104,111,108,109,105,106,92,107,102,115,111,99,92,102,104,116,102,120,98,108,65,99,101,102,102,107,100,106,102,110,112,109,111,93,103,102,101,103,124,109,109,106,104,99,107,93,109,96,106,92,108,93,103,101,92,99,97,99,111,99,94,106,115,107,109,101,101,105,110,104,106,104,111,109,99,95,98,107,87,104,102,111,107,108,113,108,110,105,104,108,100,98,105,123,114,106,110,99,101,106,118,97,106,98,104,108,117,103,100,108,114,101,109,120,99,107,106,105,99,97,104,100,111,109,106,107,85,106,113,100,97,93,109,109,96,106,102,101,108,106,109,105,108,108,113,98,92,96,105,109,101,98,100,103,125,105,92,106,105,102,99,107,111,108,95,116,102,102,116,106,101,103,97,109,95,94,111,108,91,106,99,96,101,102,113,108,109,100,103,71,100,103,99,103,108,104,92,102,106,101,95,100,105,108,98,106,111,107,95,117,99,93,116,117,99,114,119,97,109,98,100,104,101,106,102,113,93,106,96,93,100,110,96,101,105,98,107,104,118,108,113,106,97,110,100,96,102,106,97,123,100,94,91,127,100,97,120,109,112,81,97,119,112,103,109,100,106,105,88,105,87,83,120,98,112,102,63,95,114,108,108,91,105,109,93,98,93,100,93,103,108,109,95,112,104,96,102,101,98,98,100,109,105,97,111,94,106,123,102,98,103,97,96,88,105,106,104,109,111,99,102,92,105,102,77,95,95,103,116,95,97,101,98,108,103,95,92,62,100,93,116,79,101,98,94,105,99,99,107,107, +488.08276,87,100,111,106,109,96,83,106,112,89,106,110,100,120,114,114,99,105,96,109,118,97,105,92,104,101,103,105,98,102,120,109,127,113,107,110,100,87,93,102,102,97,112,91,92,87,98,95,103,103,104,100,101,96,105,90,98,101,114,95,106,110,101,94,103,112,92,104,105,108,118,67,96,94,104,110,100,94,112,97,116,106,96,104,90,96,100,104,92,104,110,107,104,104,103,95,102,97,103,114,100,101,117,104,97,100,101,95,105,100,105,102,114,100,108,98,96,91,107,102,104,108,107,103,108,110,107,99,101,95,97,109,114,109,107,99,102,112,73,103,77,103,102,109,98,110,105,105,95,99,115,105,96,92,103,105,95,97,99,100,102,98,109,85,104,99,98,90,95,99,94,96,85,103,98,103,109,100,103,102,102,107,106,104,90,105,105,104,109,101,103,106,118,96,95,114,91,114,91,113,97,107,106,104,99,108,95,109,117,99,86,102,121,123,100,97,104,107,95,95,100,111,104,109,107,96,104,103,101,104,100,128,104,102,106,109,106,97,113,76,99,109,115,114,115,109,103,104,109,114,112,105,100,105,106,108,88,108,100,121,103,119,108,105,102,113,107,108,111,97,102,111,99,106,96,98,112,106,101,103,98,114,95,111,115,103,98,111,104,106,108,116,103,100,109,101,97,107,99,103,84,95,70,115,113,108,107,97,92,122,99,115,102,105,102,112,103,100,109,103,97,85,102,113,110,106,112,87,106,125,103,100,107,109,103,104,98,114,98,106,98,98,91,99,109,108,97,120,98,104,107,100,102,109,103,103,87,108,94,95,100,96,110,100,100,107,104,110,103,112,115,104,104,98,103,97,108,104,100,106,102,106,102,107,100,100,100,100,104,107,91,113,109,112,106,99,104,110,111,113,109,98,95,104,91,80,97,92,108,99,99,96,107,98,98,104,117,95,102,113,104,108,102,110,111,105,107,116,114,107,95,104,99,107,100,109,96,99,117,113,109,103,100,99,95,108,100,96,104,108,105,105,116,107,110,105,109,110,108,103,87,115,102,103,112,108,91,104,113,114,98,105,116,105,104,107,101,121,90,105,102,86,111,104,112,107,86,109,99,93,99,118,123,77,109,111,97,107,91,107,117,102,104,109,101,113,106,104,103,108,105,104,97,105,108,107,116,98,94,94,106,100,99,103,96,107,112,94,76,102,101,100,103,92,103,107,106,86,101,97,110,101,90,98,108,98,94,95,102,99,108,107,115,95,109,101,102,97,97,96,105,99,104,102,104,98,110,102,104,98,100,102,104,114,112,100,111,102,110,108,111,106,117,96,110,101,117,115,99,102,113,118,99,98,112,104,118,104,94,104,112,100,103,101,104,103,91,103,100,112,105,107,110,98,96,99,104,100,110,100,93,94,106,104,113,111,106,99,112,109,106,95,94,95,102,103,110,103,105,85,113,130,102,100,120,94,104,97,107,102,102,115,114,109,106,118,97,109,109,111,110,100,109,106,100,113,95,96,105,113,107,114,113,106,93,106,106,111,96,99,99,101,109,88,98,100,99,94,110,100,108,113,105,120,104,105,100,99,104,90,100,89,99,121,105,105,116,91,94,98,107,100,89,92,106,99,106,105,97,110,108,91,98,109,101,117,100,88,101,107,99,94,105,113,98,95,104,100,114,88,118,116,102,112,113,105,103,107,102,107,106,103,105,101,108,111,96,105,117,102,105,123,94,106,90,98,94,103,91,91,98,101,103,115,100,103,102,104,101,97,103,104,108,114,103,106,103,103,96,108,113,114,103,95,102,102,106,122,109,115,88,112,112,101,101,105,96,109,108,104,107,106,99,105,79,100,95,106,109,102,113,101,98,107,109,94,75,102,107,110,104,106,96,116,112,113,110,100,108,109,111,115,109,117,110,93,108,106,101,105,113,103,107,104,107,111,110,101,105,99,114,87,87,108,101,103,92,101,106,98,101,100,104,101,93,103,102,112,107,102,110,111,98,104,114,113,96,105,98,101,105,105,105,113,104,104,117,97,112,113,103,115,110,103,106,104,97,106,100,100,99,105,113,107,98,113,105,105,106,115,102,100,116,117,99,105,110,109,102,109,111,116,93,105,122,108,98,99,107,114,96,105,106,90,102,103,103,102,114,105,112,107,103,115,105,103,104,109,102,102,117,115,110,108,110,106,104,105,88,102,92,108,109,101,103,100,109,108,95,100,99,112,103,106,109,92,94,103,103,105,110,103,109,105,103,108,101,98,105,101,101,105,113,99,113,75,101,102,104,105,97,106,99,97,94,96,112,113,102,92,112,102,120,99,97,108,108,109,116,98,113,103,107,105,103,93,106,106,102,114,121,110,108,118,100,103,99,98,103,97,106,105,99,104,107,94,112,101,105,106,105,108,70,106,98,107,105,99,95,107,96,105,108,93,94,93,111,101,101,99,95,115,97,98,110,107,99,92,106,106,119,113,98,99,111,120,100,112,105,106,112,111,108,107,106,111,105,110,99,107,114,113,103,101,113,107,113,98,106,117,109,78,112,103,99,103,97,114,124,105,112,111,107,102,114,96,104,101,103,101,111,109,102,112,101,113,109,111,87,103,101,91,106,98,109,113,106,107,99,104,109,68,98,110,111,101,113,101,74,105,109,100,102,103,102,115,90,99,94,92,113,112,95,111,89,108,123,105,108,106,98,117,98,102,106,111,96,97,98,112,112,105,106,103,117,95,111,114,100,101,106,110,84,110,97,106,109,112,97,116,103,113,97,104,107,99,109,105,95,94,104,102,99,111,110,101,95,100,94,109,101,123,106,104,104,101,107,108,105,99,108,109,98,120,104,98,100,89,100,109,102,111,107,114,101,103,103,95,96,94,124,107,111,115,105,97,100,112,113,92,108,105,107,99,101,121,105,108,90,98,91,104,97,104,105,110,104,93,110,108,106,100,97,111,115,102,109,108,103,99,107,106,97,95,113,113,112,96,112,113,105,103,101,113,85,104,96,110,103,100,94,105,100,99,106,105,100,102,118,114,91,95,109,109,103,102,105,95,108,106,100,106,94,119,98,96,109,103,112,111,111,105,99,98,105,95,114,108,85,109,113,117,72,106,99,101,112,100,100,107,98,82,106,112,104,97,101,116,106,95,102,95,105,100,74,102,97,95,109,107,106,96,106,95,99,102,115,95,95,105,101,101,106,106,102,95,104,97,104,100,113,112,101,108,96,103,122,104,115,105,99,106,113,114,97,114,108,120,90,105,109,108,106,99,108,100,94,111,114,109,100,104,95,102,93,109,104,91,100,101,112,109,112,108,108,98,102,104,106,97,91,121,100,99,103,100,102,100,101,95,102,102,113,111,101,96,108,110,99,110,110,113,101,99,99,108,93,94,108,107,96,102,100,104,108,94,108,106,107,107,100,105,100,106,109,103,111,98,108,106,103,115,103,104,103,96,111,105,104,101,109,104,99,101,83,94,113,95,99,95,112,109,104,107,113,107,101,109,96,103,113,112,108,104,104,109,95,106,110,101,107,102,102,94,107,102,104,96,98,112,101,109,102,103,100,105,102,100,100,108,99,102,106,108,117,101,94,104,106,98,95,114,106,110,106,95,102,104,104,113,118,104,106,107,93,98,98,98,135,100,95,102,105,115,101,103,105,109,104,100,107,106,103,96,100,104,119,112,109,99,111,91,111,115,115,102,103,104,105,93,107,117,101,100,99,92,103,97,107,103,110,112,109,105,104,111,114,111,106,97,75,109,112,105,108,115,96,101,102,117,95,100,119,119,109,103,112,101,115,100,113,103,125,107,105,108,113,96,102,99,101,108,110,103,84,106,116,91,105,107,109,106,110,116,117,107,100,111,106,114,106,106,104,94,95,102,102,104,104,107,105,105,112,98,102,107,107,94,98,109,105,103,122,102,94,113,113,110,94,99,95,100,102,119,100,94,102,102,106,104,100,108,111,106,108,115,101,103,102,96,105,101,94,108,114,92,108,99,110,111,99,105,105,104,106,105,114,95,104,102,109,102,107,106,105,108,92,106,98,101,102,107,112,99,88,113,95,105,105,101,106,106,98,105,113,107,102,104,108,104,109,99,107,108,116,104,99,101,98,100,104,104,104,95,100,126,96,99,97,102,105,102,103,99,110,99,110,105,96,103,116,108,115,94,110,94,105,101,106,117,109,110,77,104,102,108,95,109,104,111,114,106,109,95,107,98,105,113,88,104,104,116,106,100,112,102,112,103,115,98,112,114,115,96,108,109,106,104,112,99,100,95,96,111,106,100,104,102,100,119,97,109,110,99,104,117,105,116,104,101,120,95,116,116,96,100,105,95,108,100,98,113,105,102,106,110,115,106,110,102,96,110,107,97,102,113,102,105,121,112,103,100,104,98,108,106,93,102,108,92,102,100,113,106,103,113,98,105,112,116,108,105,103,91,96,101,102,99,106,82,99,108,113,110,96,98,98,100,101,108,113,118,104,103,103,106,103,105,101,105,101,106,99,97,110,88,99,108,111,104,104,95,111,103,110,110,96,106,104,102,112,105,113,103,118,103,100,106,109,96,98,94,101,120,109,107,107,107,98,104,102,113,107,96,83,100,109,104,107,99,115,88,100,92,105,117,118,109,90,94,106,85,104,102,91,103,105,112,100,99,100,108,97,113,106,109,106,91,100,109,108,100,100,119,92,97,98,112,101,107,109,104,99,118,111,108,110,96,107,112,108,104,112,99,102,102,99,94,108,94,105,108,92,103,95,104,110,87,98,108,96,108,114,92,116,103,100,106,91,83,102,103,96,94,109,102,109,110,103,95,99,102,102,118,87,102,93,101,84,105,115,96,109,104,105,93,92,103,103,103,99,87,103,102,78,103,97,97,107,102, +488.22333,99,92,116,103,89,120,103,72,100,110,88,96,101,99,96,108,138,94,108,108,100,100,116,105,96,109,100,101,103,111,111,96,86,102,108,110,100,96,106,123,104,120,107,102,96,116,95,117,94,111,103,97,110,101,111,101,112,106,103,100,87,103,106,92,112,111,97,112,108,103,92,107,94,89,111,102,99,100,99,96,89,111,90,112,105,103,93,98,101,96,96,102,109,101,101,104,101,97,101,93,110,108,99,91,94,110,100,78,97,93,93,101,106,101,107,106,104,110,123,112,107,101,105,106,102,98,122,113,103,102,112,107,109,98,110,106,100,87,104,96,90,108,103,113,106,112,111,102,103,105,107,95,99,97,109,98,108,109,101,91,106,98,99,95,114,105,98,107,100,98,105,99,98,99,110,101,90,97,110,104,105,109,105,107,92,119,106,87,114,95,101,95,107,98,108,91,107,104,103,103,91,108,100,105,113,106,104,101,109,95,96,106,133,103,93,105,111,103,110,104,101,93,108,94,98,99,98,95,99,109,103,103,111,107,101,102,80,99,108,111,98,110,106,90,112,100,100,101,101,102,92,104,103,108,110,111,83,108,103,100,103,110,103,103,89,109,87,114,103,113,103,104,108,99,102,103,99,97,93,122,98,116,102,105,103,106,109,110,97,117,113,108,106,104,102,90,102,109,99,108,88,99,96,109,96,106,103,102,102,109,116,109,112,104,113,110,92,94,96,107,111,92,108,100,102,117,102,95,116,109,95,109,129,115,108,98,105,96,97,106,92,113,110,102,107,107,95,105,100,97,103,95,100,94,105,110,108,100,115,112,99,95,103,105,108,100,116,112,96,107,106,102,88,122,109,99,111,104,94,95,109,99,102,102,100,98,95,87,102,119,105,94,91,99,100,112,77,99,108,103,102,112,103,99,85,109,91,104,106,105,103,101,109,103,102,105,98,119,104,102,104,115,100,100,99,92,101,77,79,124,94,96,102,120,99,104,112,109,105,99,106,115,102,97,99,102,91,91,95,116,98,99,111,100,113,115,101,105,103,99,103,107,105,105,102,103,105,100,108,106,108,119,102,103,103,75,99,125,108,100,94,99,104,102,103,107,104,91,92,103,111,107,119,111,103,109,97,106,106,109,116,107,109,102,97,101,88,99,100,94,104,110,97,102,107,98,107,99,110,97,81,100,109,101,103,95,99,92,93,107,90,96,102,110,101,101,103,101,110,114,96,108,94,91,110,94,110,106,92,104,97,107,110,103,98,112,103,106,110,94,102,100,104,135,106,99,104,102,113,90,105,102,109,94,112,96,102,105,104,111,117,101,104,98,104,96,116,103,97,104,109,119,104,98,100,101,97,104,108,100,111,106,103,102,100,131,105,103,93,119,105,95,110,104,109,108,101,107,112,91,112,98,112,98,116,104,104,97,105,108,105,98,96,110,95,101,117,98,118,98,102,104,105,109,99,99,89,98,112,107,97,108,108,109,100,105,108,108,108,108,99,112,105,107,102,102,101,103,95,100,108,103,109,100,102,96,103,99,96,91,108,111,99,106,91,90,103,112,102,96,104,108,99,111,109,105,101,100,106,102,109,101,99,107,109,92,106,109,92,102,82,116,105,117,103,102,104,102,100,99,95,106,104,105,97,104,97,99,104,121,105,98,94,94,102,92,108,95,118,96,108,109,106,103,114,109,105,99,107,112,106,72,100,117,97,93,105,105,112,99,104,103,100,99,107,104,97,105,107,98,87,96,109,104,103,107,106,109,119,103,97,111,122,100,91,116,101,101,117,111,99,106,95,109,106,103,106,112,109,108,116,101,97,98,109,104,108,95,90,108,98,102,97,124,107,104,112,102,89,115,98,102,101,101,102,95,108,110,109,95,117,102,110,111,103,108,108,101,112,117,107,110,99,122,104,102,103,105,101,93,89,93,101,101,117,117,103,104,99,118,97,99,100,101,98,109,102,82,103,112,98,100,93,102,103,96,98,102,111,96,108,101,117,102,110,101,104,112,92,105,110,113,103,106,104,108,104,97,111,100,104,99,105,110,107,133,105,105,101,106,103,98,99,108,112,101,102,108,98,103,107,96,112,112,95,96,101,109,91,112,108,118,101,107,88,113,102,103,101,109,116,98,94,99,95,103,92,108,108,108,118,95,114,104,109,107,103,116,100,102,114,99,105,120,105,101,103,108,105,102,98,111,107,76,103,108,104,103,95,96,106,98,107,102,103,106,99,102,106,100,99,96,113,99,108,99,95,105,100,102,99,104,103,133,106,110,105,105,87,100,108,112,118,111,107,113,105,105,106,116,104,106,109,96,111,101,109,103,108,98,103,81,106,109,114,91,102,110,100,113,108,103,110,97,99,98,113,109,105,91,102,77,101,107,104,94,103,102,82,103,102,98,112,100,97,111,105,103,103,93,97,101,100,102,119,103,103,99,103,93,98,106,105,108,100,109,107,98,109,117,95,95,97,102,98,91,105,102,112,110,104,99,107,102,115,105,102,106,106,96,107,97,95,97,98,113,115,112,106,100,103,101,108,99,113,115,102,115,108,110,114,104,87,95,103,120,110,83,100,104,105,86,102,111,100,107,102,102,106,102,99,94,114,91,103,95,103,117,111,107,116,92,119,90,106,106,101,102,99,109,98,104,97,94,102,110,107,101,107,101,107,101,105,104,105,102,92,108,114,109,106,101,106,92,103,105,79,97,98,99,103,100,103,113,101,104,110,113,109,100,111,92,101,117,97,114,99,105,106,91,109,104,102,106,106,107,100,98,99,104,101,100,113,104,102,110,106,111,97,110,112,103,116,91,100,102,94,102,99,109,107,96,94,114,100,95,109,112,101,108,105,104,84,98,108,108,101,104,90,112,91,101,110,116,100,103,103,97,97,118,98,101,110,95,98,109,100,104,93,95,106,107,94,103,116,114,109,103,77,98,109,106,114,103,102,110,107,101,109,107,100,97,101,99,106,98,116,102,114,104,123,107,103,102,121,103,106,120,107,100,109,111,97,84,109,102,93,87,98,107,75,105,105,105,91,104,100,104,105,112,101,87,104,100,112,112,121,79,100,105,103,116,105,103,117,108,102,108,97,106,102,101,101,112,96,97,103,84,108,92,95,106,102,108,108,92,103,96,104,96,101,109,108,106,102,110,106,108,112,104,109,108,105,106,101,109,99,95,115,94,105,108,101,108,91,101,115,105,98,109,94,105,101,101,95,109,128,99,106,108,100,108,110,109,95,113,101,98,112,102,101,109,97,116,101,96,100,98,106,103,97,100,106,102,84,98,107,107,104,91,107,110,87,88,97,94,92,101,113,97,95,117,107,105,107,102,104,110,137,97,101,110,98,99,113,87,109,103,98,75,113,103,99,86,101,108,119,107,111,105,101,99,107,101,107,114,102,101,100,93,103,104,102,101,85,109,114,107,84,109,95,119,101,91,100,95,101,104,102,99,100,103,110,97,91,98,110,94,99,92,113,110,109,105,103,97,99,97,101,105,113,106,104,101,121,96,96,95,92,95,96,95,102,92,102,98,93,107,108,109,105,94,101,107,106,100,130,95,104,100,99,93,100,105,105,98,98,101,102,96,91,98,104,105,100,94,110,99,99,118,97,95,104,93,100,110,98,102,108,109,100,100,101,109,108,100,97,108,113,113,115,109,101,103,95,95,109,92,103,107,102,104,100,103,104,107,105,109,95,101,113,100,107,104,107,101,98,103,91,112,103,102,78,94,99,101,107,100,114,108,86,95,99,105,102,107,98,99,93,105,91,106,107,95,106,95,113,76,101,113,109,109,111,98,108,95,96,97,98,97,97,113,110,104,103,88,98,100,108,108,104,105,106,111,100,109,108,116,98,110,106,104,106,101,110,80,103,103,101,109,102,103,97,104,83,90,105,104,106,105,112,109,103,104,110,114,99,137,98,96,99,105,101,104,110,110,95,100,102,112,98,91,105,113,120,98,106,113,107,108,106,110,108,103,108,85,112,103,105,93,105,107,110,103,100,94,103,104,95,94,112,106,93,102,98,103,109,114,90,113,102,115,100,101,94,109,104,104,116,100,108,121,104,112,100,106,109,108,110,118,109,102,102,112,100,110,102,95,103,98,99,67,91,113,105,105,106,107,102,102,102,104,96,105,102,98,98,100,103,99,98,97,107,120,104,118,90,112,102,113,109,109,112,112,105,108,103,111,103,98,113,102,88,103,103,96,107,113,110,94,110,102,112,111,95,111,96,109,103,108,106,88,101,104,103,98,94,101,107,101,106,107,100,103,107,103,94,101,109,124,94,115,76,98,112,111,94,98,101,118,113,104,110,91,113,96,103,105,115,101,98,106,103,108,118,109,99,104,95,108,109,105,112,90,109,107,104,98,103,98,98,110,89,100,95,100,89,110,109,118,105,104,101,106,109,98,110,100,99,104,104,100,84,97,72,93,101,107,97,104,96,95,108,108,113,107,124,98,105,110,95,99,91,105,113,106,110,96,99,101,81,109,103,102,102,96,100,113,105,113,107,110,108,103,99,98,97,105,102,101,101,100,106,103,105,103,115,103,102,104,99,94,104,102,96,100,106,95,112,95,108,97,93,95,104,96,106,101,101,98,112,97,101,113,112,101,106,96,104,110,100,76,115,117,113,113,102,102,105,105,112,98,105,105,108,106,94,107,91,105,104,105,96,101,103,99,106,101,108,88,106,105,111,111,108,105,111,103,100,114,113,96,94,104,101,107,98,106,105,100,104,94,125,96,109,105,108,99,100,102,106,88,97,99,98,100,105,92,86,114,103,99,97,100,98,100,102,101,125,130,100,98,100,92,101,118,93,87,103,92,109,99,83,110,105,104,101,109,103,103,109,96,111,92,105,103,93,105,99,100, +488.36389,67,97,91,111,100,103,108,94,99,101,86,90,114,102,126,106,113,120,105,108,107,93,105,98,109,112,108,103,102,107,94,105,97,96,117,97,109,92,92,105,107,108,106,103,107,111,99,112,100,128,98,114,81,98,107,91,98,96,107,88,102,101,111,110,123,99,97,93,109,102,110,112,101,103,98,106,110,98,111,96,114,85,105,89,107,102,98,97,102,99,106,100,114,98,104,99,95,112,105,107,97,108,111,98,92,107,108,104,100,94,100,101,106,114,106,119,113,111,108,102,102,98,101,116,106,110,107,101,108,104,117,103,97,105,111,108,98,114,104,111,96,100,105,92,110,95,111,97,101,100,100,103,102,106,93,92,104,99,109,98,98,102,100,99,102,101,94,97,99,112,95,110,104,100,113,93,104,90,106,114,103,108,95,102,106,119,100,102,116,107,101,105,101,105,112,103,92,106,104,108,92,99,106,107,108,111,96,103,113,107,102,82,100,105,114,108,106,100,104,108,102,105,111,108,117,129,97,97,104,110,99,102,97,101,114,96,106,89,107,110,103,88,91,114,112,109,107,102,97,114,103,105,98,97,122,114,106,113,98,111,108,108,118,101,99,95,104,103,105,107,105,111,104,105,103,103,110,111,104,103,106,102,100,97,101,108,101,109,101,111,117,117,107,111,100,104,100,109,100,107,93,93,98,125,97,111,105,108,102,114,95,112,106,101,103,103,100,109,104,96,104,116,98,105,114,81,103,100,102,101,92,90,112,116,108,107,106,102,117,102,86,103,108,99,103,114,96,98,102,98,112,106,102,92,115,108,107,109,117,120,106,94,109,118,101,95,91,114,104,113,105,99,115,106,113,104,95,113,113,113,99,109,106,107,99,109,106,110,109,108,108,109,84,98,98,113,77,111,104,112,96,114,104,99,113,106,107,101,97,108,120,98,97,87,102,102,101,112,106,100,102,106,90,102,101,101,105,102,87,103,100,103,104,93,102,107,93,113,100,92,104,104,99,108,108,110,102,98,94,99,101,100,103,111,141,112,97,113,110,101,101,105,90,109,103,99,101,95,105,110,99,100,97,111,106,105,100,106,106,108,102,111,112,101,90,100,102,111,99,100,104,99,108,107,100,96,99,104,108,97,108,99,118,97,111,99,98,114,115,105,104,117,104,103,98,108,110,103,117,95,97,99,101,105,110,101,110,98,110,103,101,113,95,107,96,97,75,101,101,96,106,105,98,101,99,106,94,91,102,111,102,101,104,97,109,104,99,100,111,105,100,111,105,103,95,107,118,114,121,109,94,102,106,114,79,102,108,123,106,106,96,101,100,101,102,101,100,120,105,110,108,97,96,98,73,118,101,115,110,101,98,99,112,104,97,100,100,104,114,107,108,93,110,102,102,107,99,103,94,106,109,110,106,101,101,104,95,100,102,105,111,107,110,108,87,108,105,113,104,108,101,110,95,110,102,105,126,108,104,103,97,104,90,104,106,109,108,100,105,112,109,105,100,117,103,113,95,94,103,101,83,103,107,106,100,102,99,105,107,93,116,100,111,110,94,93,113,106,106,97,105,108,100,102,102,100,113,108,107,90,102,101,96,108,99,123,107,104,94,106,108,113,99,102,113,96,90,112,109,99,110,99,102,104,95,97,110,102,109,119,105,102,96,100,102,111,117,122,110,115,110,98,105,106,109,108,96,101,107,103,118,107,100,107,102,105,98,96,116,107,93,111,94,107,99,70,103,105,113,104,118,104,103,109,107,121,102,102,104,100,104,106,119,122,113,110,113,109,99,98,104,110,103,128,102,103,114,118,116,103,97,102,94,109,100,108,93,92,113,101,99,102,97,109,111,105,105,107,99,111,96,96,99,97,124,107,104,118,127,77,110,113,103,102,105,109,102,102,117,112,111,96,119,101,102,105,103,101,103,116,108,92,100,106,96,97,99,105,95,112,91,100,111,106,101,104,107,101,99,102,100,110,106,105,99,103,110,105,101,106,103,100,103,113,98,111,99,108,110,112,108,111,99,105,103,103,103,104,82,107,104,93,101,100,105,94,108,105,102,111,104,109,109,108,102,95,96,124,106,111,107,107,109,109,101,112,105,104,97,109,84,105,103,116,106,114,98,101,93,109,115,116,102,103,97,93,100,114,114,105,103,113,120,104,107,109,102,108,94,98,103,100,105,103,117,101,94,103,98,98,115,94,135,104,100,103,107,94,96,101,104,99,95,94,116,103,102,100,100,96,105,108,104,100,111,94,95,105,97,101,111,95,108,109,112,107,100,109,98,104,96,102,96,104,97,115,103,108,114,103,119,103,102,104,103,102,103,119,105,102,119,105,99,111,116,99,102,94,102,95,108,93,99,99,102,111,100,113,103,111,106,100,105,106,99,101,98,103,109,103,97,111,102,107,97,104,104,113,105,96,86,109,105,113,113,95,108,119,107,101,84,100,104,93,111,104,93,105,106,110,101,116,110,103,109,93,106,91,120,106,104,102,99,104,102,100,107,102,103,109,100,106,105,108,105,100,109,109,95,105,113,97,110,113,108,108,107,97,108,108,103,108,97,101,112,110,91,111,104,92,92,121,95,72,111,106,105,98,110,90,107,103,113,102,128,104,106,104,100,111,104,99,109,99,109,119,101,105,112,109,104,102,106,100,105,109,106,100,109,102,113,106,104,120,87,107,117,111,117,95,95,101,106,106,107,108,109,85,105,102,110,108,111,85,104,108,117,96,98,97,113,109,101,92,92,98,124,102,100,100,116,105,104,103,97,108,101,107,103,98,102,110,101,117,99,118,100,103,122,112,100,110,102,113,110,101,119,99,104,108,107,116,110,97,110,99,102,107,98,89,105,105,101,103,111,101,104,111,98,114,104,108,101,117,107,103,113,91,108,110,110,96,105,105,104,102,101,111,104,99,102,103,108,106,119,121,113,106,103,103,105,113,108,97,105,110,113,106,104,104,101,83,92,97,102,101,95,105,107,97,104,97,115,104,106,95,99,107,112,106,101,113,90,100,103,96,117,110,107,119,104,107,109,101,101,106,108,108,110,75,102,99,105,113,106,105,113,116,104,97,112,100,104,99,107,110,99,115,102,105,102,105,103,110,107,95,99,106,106,100,106,93,121,110,102,100,100,99,102,99,94,100,108,101,107,102,115,93,108,116,90,109,94,126,116,113,102,100,104,116,105,108,103,103,106,101,105,110,110,110,101,103,96,98,94,108,104,117,112,108,99,98,112,107,104,111,106,103,98,116,104,91,106,107,98,98,102,105,107,97,110,107,96,110,103,101,98,111,101,100,103,104,100,99,99,106,87,90,109,100,103,105,94,109,97,93,103,99,103,111,102,114,108,108,93,106,103,106,107,99,111,90,96,96,116,117,107,110,96,101,102,102,107,114,107,110,99,109,100,100,113,104,99,99,104,103,102,109,103,111,93,113,108,115,97,83,112,101,102,85,109,91,103,100,98,105,102,108,108,107,102,105,98,128,108,93,104,108,102,88,102,104,106,107,98,71,100,98,111,99,97,103,106,109,104,92,72,98,94,114,108,107,113,96,103,103,102,118,99,102,113,105,102,98,101,104,102,102,105,98,92,100,106,95,103,92,103,106,102,104,111,94,118,107,102,94,97,106,118,106,108,98,100,106,93,105,100,104,106,103,119,103,100,117,94,106,94,107,117,100,101,103,100,102,98,90,104,95,100,95,108,105,105,113,108,101,112,107,106,88,99,99,101,108,113,105,112,101,95,107,102,94,98,109,99,102,105,96,103,94,91,99,101,97,115,86,94,99,113,114,109,103,103,103,104,107,106,91,98,100,100,102,106,96,112,105,100,122,89,105,90,95,98,103,101,112,105,101,105,99,118,95,95,106,118,101,110,109,102,104,100,100,103,105,102,98,116,94,107,97,108,109,120,95,83,100,104,98,102,93,99,117,105,101,95,87,102,105,107,103,110,102,102,106,109,101,112,99,103,117,103,111,106,110,107,105,107,101,77,109,104,113,100,125,102,101,107,107,110,113,135,118,113,105,111,114,91,106,101,101,102,100,107,120,98,117,116,116,111,100,103,102,105,108,105,120,105,113,107,109,109,107,108,111,107,107,104,108,113,101,98,64,102,100,103,104,116,108,108,117,92,68,104,100,110,96,103,108,109,103,107,115,105,110,113,106,92,104,110,94,112,111,99,103,109,119,100,101,111,116,112,98,101,100,104,105,105,100,105,103,102,107,106,109,102,105,103,100,110,95,104,115,108,98,109,96,106,110,95,109,98,91,109,108,98,102,106,109,102,114,107,116,103,103,98,105,100,111,109,104,116,100,100,103,99,103,99,119,103,102,98,108,109,102,99,95,109,106,107,102,98,114,109,110,106,117,94,108,109,99,109,105,96,117,92,110,108,91,103,101,101,102,94,95,101,105,113,105,111,119,107,111,111,99,113,112,103,112,113,104,99,102,124,98,105,105,93,102,99,111,124,95,91,78,93,107,104,108,122,104,105,96,104,99,113,108,100,103,120,91,99,65,93,104,87,108,108,103,99,106,95,101,100,108,106,100,103,111,98,95,105,83,92,115,104,112,97,112,95,103,102,108,97,106,109,103,119,98,100,97,106,106,107,104,105,117,100,93,98,98,98,95,79,83,103,120,100,100,117,99,98,94,99,105,110,106,95,99,98,105,96,106,103,109,91,103,99,98,100,96,100,111,108,100,105,113,115,102,100,104,113,91,107,99,95,102,96,93,94,98,100,96,116,104,107,113,103,103,106,102,105,102,110,94,100,97,99,94,106,109,95,108,98,105,98,99,106,102,104,97,74,98,109,111,107,94,111,101,111,97,102,106,69,102,108,96,110,104,108,101,107,99,104,107,100,101,100,103,96,94, +488.50449,108,99,93,95,98,95,91,115,104,115,120,97,94,97,97,103,96,85,109,103,97,101,104,104,96,109,112,109,106,87,113,107,98,110,119,98,94,127,94,96,108,94,92,104,99,96,95,101,118,103,98,111,106,105,104,108,105,93,105,95,100,100,102,102,99,111,102,110,92,100,101,103,107,101,91,116,89,110,108,100,117,99,101,115,96,107,102,102,95,109,113,99,104,102,77,79,79,99,89,96,100,122,98,103,108,110,91,83,101,104,100,105,114,103,100,101,105,113,116,103,118,83,107,108,105,100,99,108,97,134,102,110,92,96,102,86,111,111,94,93,104,113,110,96,98,107,99,95,84,99,100,91,112,91,103,103,101,105,107,104,89,93,90,107,98,107,102,104,106,99,104,107,102,106,99,97,87,99,103,115,102,111,100,103,124,91,92,100,106,95,94,107,106,101,97,97,94,101,93,102,104,118,95,104,104,111,98,108,99,114,106,100,103,109,98,105,99,107,95,104,115,99,101,88,75,102,103,104,108,97,101,99,106,98,111,103,107,94,106,118,96,105,123,109,95,103,95,105,103,106,103,103,103,99,114,103,91,107,97,105,92,106,112,107,108,100,104,110,95,97,103,106,95,98,92,106,112,105,99,103,101,102,106,111,103,97,99,98,106,92,99,98,113,107,110,106,84,102,102,96,93,115,92,105,104,103,107,106,106,120,95,114,110,113,108,95,122,107,106,110,112,114,107,98,97,96,87,96,103,126,102,101,112,95,111,104,102,105,101,101,102,94,94,101,104,99,110,94,103,98,102,103,98,93,110,114,105,105,111,103,106,110,102,98,121,109,78,117,99,98,107,96,97,105,101,101,108,107,113,117,99,97,100,100,95,99,99,96,99,115,106,96,104,113,108,114,95,100,111,108,102,105,101,111,86,105,106,107,114,99,104,96,107,96,102,97,109,103,104,93,106,103,102,116,104,107,101,109,92,116,91,109,101,107,99,105,100,87,113,107,106,95,98,108,92,105,110,116,107,98,107,104,111,100,104,103,102,109,72,110,108,92,106,105,109,105,102,101,103,102,104,111,104,109,103,94,100,106,101,102,105,123,103,95,111,111,110,104,104,86,101,123,105,111,102,101,104,106,104,95,107,114,101,114,99,68,95,95,98,105,110,112,96,110,113,113,101,97,103,104,101,99,118,95,101,96,103,97,106,104,101,85,97,119,104,101,104,100,100,98,113,97,101,104,116,99,106,108,117,107,109,115,105,95,103,102,102,104,105,107,102,111,101,108,106,94,107,103,111,103,100,75,85,99,106,100,100,96,104,102,99,101,97,96,101,109,101,103,108,103,115,112,95,104,113,104,99,79,109,101,112,102,106,102,91,110,109,104,112,98,102,101,113,105,83,105,99,101,101,109,103,102,110,105,107,104,98,101,98,106,92,103,101,106,107,109,101,98,106,112,103,103,83,102,105,102,101,87,105,105,116,100,113,100,109,105,109,114,102,104,98,117,105,105,100,105,114,90,109,111,111,103,102,108,102,113,106,102,104,94,97,112,119,104,100,101,96,105,103,102,106,107,93,101,107,100,103,115,108,95,100,99,106,106,107,107,105,104,113,104,116,102,110,106,99,101,97,105,95,112,96,91,96,92,94,94,72,100,103,110,101,110,93,100,110,112,105,97,101,103,109,98,98,107,99,100,110,113,101,104,99,95,104,96,94,103,96,101,101,98,105,94,97,113,91,118,106,101,99,101,112,100,105,92,102,110,100,105,113,92,97,107,104,111,97,109,100,107,102,110,98,111,98,106,110,91,106,95,104,108,108,124,101,104,112,89,96,97,101,95,101,92,105,112,108,117,107,106,108,106,108,100,105,93,103,97,103,117,90,113,106,110,103,101,98,83,114,94,106,93,94,99,114,95,112,102,99,104,106,105,107,94,104,114,98,99,100,89,110,113,100,104,104,112,100,101,99,106,107,102,101,110,100,100,99,108,106,97,112,104,103,109,106,108,108,106,109,114,101,99,101,109,104,111,104,90,105,109,96,109,98,104,118,112,103,102,93,108,64,93,120,117,106,114,111,115,107,104,104,102,103,102,106,124,105,107,105,95,93,113,88,111,101,101,91,102,87,86,112,123,107,112,98,119,96,104,105,96,116,110,107,119,101,112,100,103,91,98,106,107,141,104,103,95,104,105,108,109,113,111,102,110,93,104,98,108,105,101,95,97,104,117,105,98,114,104,110,95,104,107,111,115,116,103,98,108,105,100,92,108,88,85,101,96,103,115,103,105,99,106,103,104,107,97,118,104,104,89,121,98,106,109,108,96,97,103,121,104,95,103,95,115,117,100,102,94,97,105,103,110,117,99,104,102,98,104,108,105,102,112,97,103,105,108,92,104,109,105,98,95,105,112,111,95,100,102,102,105,112,91,102,107,98,112,94,87,99,103,101,110,105,102,94,96,103,99,108,99,116,103,116,119,95,106,103,95,106,105,105,105,107,101,92,112,98,99,103,102,127,88,104,108,105,108,111,79,115,117,97,103,110,98,99,102,108,108,97,116,100,96,115,112,107,105,111,106,96,109,108,97,102,94,104,102,89,108,107,96,109,101,108,99,109,111,92,100,106,103,102,95,96,93,110,109,103,110,104,100,96,102,101,98,112,98,98,103,93,108,108,102,110,113,100,107,108,106,99,97,101,110,93,100,104,110,102,114,117,113,106,113,115,103,95,110,97,104,110,107,95,86,105,103,96,113,99,101,117,113,111,114,111,100,109,112,108,119,99,109,99,98,107,103,112,117,105,112,108,101,110,115,108,104,106,103,104,103,99,105,116,111,105,91,105,109,108,101,119,107,105,116,93,107,99,110,105,104,106,108,101,108,98,97,108,98,96,104,107,111,116,100,98,104,107,104,99,99,106,75,105,112,107,102,107,94,100,113,96,105,104,98,100,111,98,102,107,104,108,106,95,114,103,111,100,88,105,111,99,120,109,99,109,103,112,96,112,93,102,104,98,96,104,108,106,103,106,101,100,111,97,104,91,104,116,105,117,108,90,92,110,95,95,111,90,83,100,96,98,98,94,111,104,98,108,117,103,93,114,108,98,104,96,96,100,112,106,95,92,95,96,94,96,97,107,102,103,80,112,112,101,105,96,102,95,110,109,109,108,112,103,100,94,94,102,100,98,92,104,84,105,82,102,111,108,105,101,98,102,102,104,93,105,104,93,100,101,108,117,99,109,97,126,106,94,98,106,91,101,117,99,102,108,92,98,103,95,106,90,100,109,107,94,97,101,91,109,88,113,99,109,78,122,114,98,113,94,108,90,90,100,106,108,111,104,79,99,107,98,114,107,83,97,101,97,89,101,113,104,98,100,99,111,105,100,103,114,101,107,102,115,107,104,102,106,103,102,106,101,100,100,111,83,83,114,95,98,102,106,97,96,103,101,103,117,104,101,99,104,84,99,112,103,103,96,103,98,97,96,87,95,98,101,113,109,111,116,111,109,96,103,112,100,112,96,102,105,92,103,102,101,99,101,109,102,115,103,93,85,109,101,113,108,93,108,83,113,99,104,97,110,95,117,106,101,106,87,116,109,134,102,105,92,76,99,102,106,99,88,97,106,106,116,107,94,103,115,105,108,96,95,98,94,112,99,100,105,102,113,105,105,101,104,108,100,106,107,92,114,101,108,108,97,86,121,102,102,99,103,109,99,99,103,106,98,97,114,115,104,98,108,103,113,113,95,96,106,112,104,111,100,107,98,101,101,104,103,97,91,93,104,113,96,102,103,99,109,114,106,105,109,97,107,110,106,108,105,103,105,97,92,98,99,104,99,107,97,110,98,113,91,68,110,105,105,103,102,101,79,99,98,111,107,95,94,110,110,101,118,85,91,100,102,100,72,100,101,94,119,91,98,110,100,97,110,101,97,106,104,104,98,106,97,108,103,98,102,109,99,103,106,100,112,97,106,115,107,95,132,106,103,108,99,103,94,110,106,101,84,99,103,103,107,99,89,105,97,109,90,112,103,104,111,96,106,94,123,107,111,115,112,94,109,101,106,105,110,104,93,108,98,95,94,104,93,105,106,110,98,111,99,96,106,110,94,94,114,107,108,101,94,105,98,104,109,97,102,100,103,109,99,81,69,106,94,91,109,97,95,102,105,107,106,101,107,111,97,95,103,102,109,98,109,102,112,96,104,106,94,102,111,95,113,106,96,104,97,95,98,108,90,96,101,112,113,102,95,96,98,95,108,105,105,99,94,106,104,106,102,97,100,90,98,106,94,95,93,105,99,91,100,109,103,96,109,100,95,102,98,100,104,93,102,97,94,101,110,97,90,94,107,101,91,106,106,107,113,108,91,113,109,94,106,83,104,124,92,109,100,105,89,100,104,95,105,99,104,98,88,100,102,112,105,99,108,108,102,102,94,96,98,101,91,99,115,99,102,103,93,112,106,107,111,96,102,109,108,92,91,95,100,122,104,99,95,109,104,108,113,116,113,87,107,102,100,102,99,118,101,96,103,101,100,100,100,106,99,101,108,120,107,95,108,110,106,105,107,119,117,110,91,106,104,88,103,101,103,104,99,100,109,100,98,110,94,108,97,81,98,109,104,105,101,97,110,103,112,97,100,100,105,104,99,92,114,109,96,105,103,87,109,109,91,100,108,99,115,96,101,107,97,125,105,107,108,98,96,101,101,89,91,96,105,111,91,113,107,85,101,89,93,117,103,97,112,107,103,104,101,98,83,106,94,110,101,102,93,106,96,102,106,99,85,87,98,117,97,84,98,88,118,105,91,110,91,102,96,95,95,99,98,110,94,104,107,104,105,105,88,98,116,97,104,101,113,94,104,94,105,80,89,106,104,99,107,87,98,109,102,97,100,94, +488.64505,94,94,108,107,104,117,97,102,107,108,101,105,102,105,103,111,103,100,112,107,111,91,114,101,109,103,101,109,108,108,109,108,110,114,99,104,111,108,105,110,96,105,93,113,115,113,107,109,103,117,105,103,117,98,109,99,109,113,103,101,109,97,100,99,108,111,106,100,107,100,113,111,105,104,105,106,93,108,109,131,108,106,100,106,95,93,104,63,99,102,101,83,109,100,104,99,111,105,97,114,109,106,112,98,100,112,109,107,106,97,97,105,102,123,118,102,102,108,103,118,102,91,104,117,97,106,110,91,114,112,104,96,98,95,104,99,92,101,102,99,107,116,96,110,109,102,115,95,106,88,103,95,115,79,92,104,100,97,111,97,101,99,108,105,112,100,96,101,95,113,98,97,98,114,102,108,112,110,101,113,82,101,108,109,103,82,108,91,106,109,102,105,103,100,91,105,101,110,102,103,105,100,110,107,104,107,110,93,107,108,103,108,103,101,101,103,104,107,106,105,108,128,113,108,107,104,110,95,109,130,98,109,109,100,117,121,115,107,108,95,109,100,100,100,105,97,101,112,107,102,106,112,120,106,101,112,109,100,110,98,95,106,105,103,92,105,103,94,104,109,103,99,110,92,111,108,105,106,113,97,112,106,104,109,105,102,105,99,100,115,101,111,100,103,102,105,111,106,113,110,111,102,105,102,104,105,112,117,100,110,106,96,109,108,100,112,102,113,114,91,105,97,106,105,102,105,110,104,114,111,108,100,104,110,104,102,109,97,114,115,102,113,108,109,102,98,110,125,107,110,110,100,108,109,90,95,105,111,109,103,109,100,107,109,99,108,109,120,99,105,114,99,98,112,112,106,108,108,99,107,110,94,104,101,99,96,87,106,102,99,104,108,105,109,98,100,97,99,101,105,105,120,107,87,114,110,110,115,107,95,115,107,102,106,98,109,105,112,105,93,96,101,100,104,111,109,109,90,91,105,105,101,105,101,96,98,106,109,106,104,113,118,98,112,91,104,107,94,107,105,112,105,109,116,100,107,102,108,120,97,112,104,108,112,101,106,105,108,104,101,111,109,105,96,106,109,101,106,99,113,106,104,117,105,112,109,103,113,116,99,102,107,101,105,103,94,138,103,109,101,120,108,81,117,105,100,110,101,107,91,117,106,104,104,112,103,102,116,93,107,102,110,101,117,98,115,104,109,78,95,110,109,108,103,104,103,102,113,99,121,96,104,106,113,107,101,114,109,104,116,116,111,110,97,101,105,108,102,95,99,110,112,103,95,105,103,109,103,107,118,92,113,93,105,105,106,108,110,104,114,91,107,103,110,99,104,90,107,120,104,101,105,115,97,118,110,107,118,101,104,105,113,98,105,99,114,108,107,107,114,123,93,106,107,117,65,107,107,108,99,96,101,106,104,114,105,90,108,111,113,108,84,112,135,102,97,95,99,114,115,95,108,114,114,105,107,107,93,104,105,109,106,98,114,106,102,107,106,126,101,96,108,95,105,103,97,112,87,102,99,113,103,112,99,108,108,110,121,114,109,102,109,101,107,102,98,95,106,103,103,103,107,104,102,105,101,84,108,98,97,109,92,102,107,101,110,119,108,104,108,94,96,99,99,104,119,108,105,111,100,108,99,111,102,100,102,108,110,104,113,103,105,107,115,99,93,103,107,111,106,109,106,108,107,110,109,113,115,105,113,129,102,103,109,103,112,105,97,110,100,110,108,112,101,108,110,113,110,113,74,110,98,118,112,103,98,113,97,113,101,98,106,103,109,122,102,107,101,98,103,106,116,88,104,104,108,102,105,114,107,97,114,101,107,109,114,118,107,105,106,108,103,96,108,108,110,121,110,118,120,106,99,111,138,108,99,101,98,108,119,106,108,102,109,124,110,101,110,95,103,109,114,98,99,101,105,105,110,99,112,100,117,107,111,102,109,110,98,108,104,106,110,118,95,103,98,95,97,85,106,102,100,102,111,105,112,115,106,99,101,107,108,102,105,99,103,99,102,98,105,106,115,112,103,96,108,106,116,109,98,91,116,116,106,113,110,103,105,100,98,112,79,98,107,106,110,106,119,103,109,115,105,112,107,109,97,105,103,105,96,93,109,104,100,104,106,99,113,100,113,106,108,99,104,105,115,106,113,113,121,129,100,110,109,109,95,120,102,93,108,125,112,104,102,117,100,108,98,103,109,105,96,98,107,110,90,111,100,111,95,104,97,98,99,104,100,116,101,113,108,111,115,101,96,104,103,96,109,95,94,93,103,112,90,100,108,118,101,91,106,114,111,107,102,106,103,108,96,102,85,121,98,104,108,113,117,94,113,99,99,88,111,100,110,107,98,100,115,117,111,100,115,116,109,106,105,103,115,104,118,100,107,105,105,109,99,110,106,110,101,98,108,113,124,100,112,99,105,92,104,111,108,103,99,110,102,110,107,91,102,104,115,102,117,128,105,112,105,110,113,114,93,117,104,100,117,105,108,105,114,102,120,110,97,116,103,104,111,105,104,108,117,102,93,98,104,101,115,106,113,99,103,106,105,88,108,101,108,108,98,97,115,74,103,99,96,93,99,112,93,99,105,107,113,111,118,103,95,120,106,100,109,106,96,101,105,109,101,105,114,119,91,98,91,102,106,114,103,105,98,95,104,106,104,105,99,99,102,103,106,108,106,100,104,102,105,102,92,112,95,100,105,107,95,105,104,104,94,110,102,120,115,112,100,102,109,109,99,106,105,104,92,87,109,125,113,111,113,111,99,98,88,106,106,112,108,105,102,102,110,101,114,98,104,107,102,104,109,115,109,109,112,115,113,91,107,104,112,93,106,112,100,114,100,107,110,100,107,100,107,116,95,109,102,104,102,109,105,103,121,105,106,102,104,103,102,109,113,112,116,116,112,111,99,113,120,105,104,104,100,92,107,92,86,131,117,108,94,116,102,102,103,109,113,109,113,112,105,94,109,105,95,105,99,110,110,113,109,119,99,110,95,105,111,104,106,112,104,95,102,124,96,105,104,121,96,95,102,97,110,121,97,122,104,103,103,104,109,77,117,101,122,98,106,107,112,112,118,102,114,101,105,103,98,94,91,104,83,115,103,104,116,103,116,107,115,112,109,113,113,103,106,115,102,106,107,104,100,104,103,100,104,102,110,108,103,103,104,101,109,107,114,88,99,104,109,108,98,100,99,106,99,96,104,112,97,107,107,103,106,113,104,112,101,112,115,101,102,118,111,101,99,108,107,112,104,98,112,97,112,109,109,116,110,95,111,103,109,108,112,103,94,104,111,124,85,118,113,118,99,143,114,101,108,106,99,91,102,94,99,104,116,92,109,105,89,104,96,116,109,87,110,106,110,106,128,102,116,101,107,106,110,102,111,105,106,111,108,110,91,97,112,101,109,96,107,101,110,113,107,98,110,109,97,101,116,117,99,111,113,99,109,105,87,104,107,120,113,105,101,103,106,116,109,109,94,116,105,112,106,100,120,83,92,106,106,106,109,107,112,107,99,102,102,99,114,111,107,95,111,104,101,102,109,107,100,113,103,112,114,105,102,94,92,102,93,99,99,113,101,112,111,103,87,100,118,104,99,112,99,98,98,103,109,100,106,106,111,107,109,94,108,115,110,95,108,87,101,111,107,98,98,105,120,117,102,91,113,99,98,108,106,95,106,103,90,103,102,105,103,118,100,108,105,112,90,107,108,92,98,119,108,99,103,102,96,108,102,107,95,109,109,100,91,116,106,108,109,99,125,116,98,99,113,117,108,106,104,107,110,99,113,100,105,94,113,104,109,105,104,102,112,107,102,112,112,100,102,106,108,98,112,117,117,115,111,108,103,113,111,107,117,108,113,106,112,92,113,104,110,111,103,106,112,100,91,102,100,92,104,104,97,109,105,106,94,103,100,103,111,110,108,113,112,104,103,105,105,87,105,101,108,110,106,91,99,111,120,118,117,84,101,115,98,107,106,102,103,111,96,118,108,108,106,102,99,99,107,100,97,112,109,102,102,112,104,111,102,111,102,107,109,94,104,110,144,105,101,117,91,110,105,121,101,92,103,94,101,103,102,100,105,102,98,117,102,96,99,103,106,103,105,103,102,102,108,92,102,114,111,100,110,97,114,94,107,112,114,124,97,113,99,103,100,100,109,103,96,108,111,110,95,111,109,115,110,87,95,113,110,117,104,94,112,99,114,107,104,98,111,103,103,105,106,100,110,103,106,94,95,104,89,103,94,86,98,100,103,105,106,112,90,123,100,99,125,103,105,112,113,104,99,99,113,83,99,105,107,89,115,109,110,103,105,105,97,100,114,106,106,110,106,109,106,100,98,121,91,104,104,99,119,102,104,105,113,103,107,113,98,106,109,105,108,118,108,112,101,110,99,74,101,81,109,109,103,105,107,113,105,103,109,97,99,100,108,102,99,100,107,121,102,107,95,106,80,104,106,100,107,109,103,113,95,90,109,103,102,108,102,94,109,100,109,108,101,115,96,96,95,94,105,103,109,105,109,98,98,107,101,104,100,108,105,103,93,106,116,111,104,120,109,100,106,115,98,113,101,106,90,97,92,107,113,103,113,109,99,104,101,99,97,98,95,106,107,102,109,100,99,110,102,99,96,104,116,117,100,87,112,105,94,98,96,97,103,100,99,101,100,113,113,97,111,107,108,106,103,100,114,111,121,113,105,105,106,103,85,109,95,99,97,80,113,109,91,108,99,102,105,106,102,100,104,103,107,99,108,101,104,112,113,104,101,98,105,103,86,102,92,109,103,100,87,100,111,96,106,106,106,113,101,105,97,87,106,103,96,102,109,122,94,109,95,116,99,90,105,106,87,116,105,102,89,105,88,93,104,101,100,103,95,102,110,107,101,120,106,108,94, +488.78564,123,100,96,89,134,96,128,115,102,100,86,83,106,108,99,109,102,107,95,109,104,111,93,114,102,100,98,79,82,104,91,112,118,98,103,102,103,105,109,99,117,111,98,110,101,113,113,100,109,108,111,108,105,117,106,103,107,96,111,109,90,110,98,101,103,104,98,114,102,106,112,108,97,105,92,107,95,106,114,102,105,104,92,96,98,100,94,101,96,108,88,107,102,106,95,88,96,101,100,109,101,95,102,104,103,106,96,115,101,106,119,123,102,97,115,104,89,108,110,103,110,95,108,106,100,105,104,103,105,106,94,102,95,106,102,125,88,116,102,108,98,112,106,95,101,104,132,100,105,96,86,96,110,96,100,108,96,103,109,106,100,104,102,101,98,96,95,106,105,100,101,108,102,91,103,96,96,88,109,100,99,117,91,100,99,100,102,94,95,105,102,89,103,104,96,116,103,112,99,97,98,90,99,102,102,105,94,95,116,110,95,131,96,104,111,92,104,97,104,106,107,88,96,107,100,110,100,78,106,97,111,89,101,126,91,113,108,99,102,105,110,105,109,104,80,112,105,104,103,109,95,96,100,103,97,113,89,107,115,113,94,104,98,104,99,102,102,106,100,99,100,105,104,85,114,103,87,104,109,105,108,106,94,96,108,93,105,99,102,114,108,93,96,105,110,111,98,102,113,99,96,103,110,100,106,112,108,109,102,125,96,102,119,77,95,112,118,112,117,107,114,103,104,103,112,106,103,95,119,107,110,104,115,104,95,97,103,103,105,96,98,97,106,95,99,112,102,101,104,106,102,103,102,108,119,101,103,116,112,100,107,106,105,102,105,91,86,112,112,95,104,110,108,104,101,101,107,99,101,113,95,104,105,118,93,91,100,109,112,109,106,91,98,97,115,102,97,94,101,106,91,105,99,104,94,92,99,112,109,93,98,102,111,105,102,103,105,99,98,92,90,109,102,95,106,100,100,108,98,98,92,108,103,96,99,101,103,111,100,107,103,107,110,103,102,112,106,109,96,107,100,106,89,101,109,92,106,104,105,73,107,115,94,117,100,112,105,84,120,113,98,101,107,104,92,105,98,118,92,95,101,108,105,109,108,96,99,94,89,105,108,113,120,104,95,104,91,103,106,104,100,114,99,113,101,97,84,108,71,104,102,103,101,110,101,92,96,89,96,98,101,103,105,116,108,98,99,104,106,106,112,99,96,109,95,108,105,105,114,91,93,117,89,106,98,105,106,102,104,111,104,104,85,112,100,103,102,81,100,112,110,101,108,106,105,99,100,105,109,108,105,101,99,101,101,101,113,101,103,110,97,104,103,99,107,97,104,105,103,107,100,111,104,102,101,95,95,103,104,100,99,126,114,109,100,110,101,102,106,95,107,96,100,104,104,104,100,103,108,96,104,101,106,100,103,102,106,101,95,97,107,111,96,98,89,100,116,87,110,98,108,112,123,102,104,101,104,100,100,120,102,107,104,102,97,93,107,103,110,102,110,103,108,95,102,109,114,95,105,105,101,101,99,114,90,112,103,95,105,121,105,110,112,106,111,113,102,116,109,103,101,121,92,101,97,95,100,105,137,101,119,107,94,105,97,115,107,107,88,99,99,118,95,97,99,95,100,112,113,91,102,99,106,111,107,110,100,87,100,107,119,115,91,90,105,106,104,109,111,99,104,102,102,101,107,98,99,91,100,98,103,100,106,101,105,104,110,83,111,102,96,99,96,105,92,106,97,104,104,100,105,105,92,97,99,110,94,103,107,102,108,103,98,105,108,100,114,104,114,109,102,96,90,106,103,108,98,100,111,111,102,103,104,114,106,104,103,96,107,100,108,98,101,111,107,105,104,98,95,102,101,106,103,104,96,115,101,100,102,112,126,102,103,88,106,99,109,102,101,104,103,96,102,93,105,75,113,91,101,92,103,115,102,103,98,108,109,104,102,104,93,109,111,111,110,100,105,105,100,94,104,102,97,106,105,114,87,101,94,90,103,105,98,110,107,101,99,118,125,101,108,104,105,101,111,99,101,100,114,109,114,107,110,95,105,110,88,107,101,104,102,91,102,101,99,88,103,126,94,98,109,114,111,102,100,107,95,100,103,105,102,113,87,120,112,98,100,91,107,113,103,103,117,104,94,98,109,98,103,99,96,100,101,102,111,89,111,94,73,113,105,107,109,99,110,104,101,121,105,109,117,106,97,102,103,93,105,101,105,96,101,108,101,107,106,107,99,101,110,88,108,104,106,99,94,90,116,95,102,101,109,100,96,105,116,109,104,95,97,110,103,102,108,113,94,98,106,108,105,97,103,104,106,105,107,96,104,98,80,96,111,104,104,75,103,98,109,104,112,105,101,108,98,103,94,102,106,100,110,91,105,104,104,94,110,107,93,101,114,96,100,111,93,103,105,106,93,104,111,112,91,103,103,98,102,96,107,96,92,98,115,97,105,101,105,104,102,104,111,120,95,102,115,99,105,99,105,97,101,97,113,104,105,103,102,104,104,113,83,71,98,110,107,98,109,99,93,108,97,104,99,99,95,101,99,98,95,103,110,121,108,115,108,105,102,111,102,89,96,92,106,91,106,109,106,113,108,101,108,97,107,99,108,105,106,103,104,105,105,96,114,104,107,94,107,106,91,117,75,98,95,106,104,106,110,112,99,115,117,117,106,108,99,112,107,119,89,110,104,99,84,106,102,110,94,103,102,109,106,97,108,116,118,87,101,102,99,112,114,105,103,93,98,101,123,105,102,90,128,83,121,99,100,104,100,98,96,104,95,99,100,96,96,113,107,99,92,104,102,112,102,110,94,88,105,104,103,100,111,101,104,89,89,98,106,107,99,116,93,98,96,108,103,98,112,106,111,99,93,103,99,111,103,76,105,88,93,97,99,102,114,107,108,79,100,96,99,117,107,103,112,114,97,101,105,101,93,100,98,101,101,105,94,117,86,95,110,109,88,100,109,110,102,93,108,117,93,103,103,108,104,97,103,97,106,107,99,95,97,105,102,96,109,109,102,109,117,105,96,102,104,110,108,103,118,99,108,94,103,120,96,109,100,110,106,94,94,103,105,97,105,113,106,117,112,99,103,103,93,94,109,102,98,111,103,96,98,100,101,106,101,104,104,103,109,97,104,103,96,97,117,98,100,110,84,97,103,92,107,102,106,106,94,110,91,97,105,100,89,99,110,94,99,104,107,103,106,99,88,96,97,102,99,110,100,110,109,111,104,103,105,106,118,102,106,69,107,101,105,91,102,106,106,97,107,90,106,110,108,102,108,92,107,107,109,100,108,100,108,96,97,114,83,94,104,106,108,94,117,104,118,102,101,101,103,97,108,96,105,103,104,108,100,104,96,94,109,110,106,100,102,108,106,103,100,104,113,98,105,109,87,102,105,101,109,113,101,105,106,100,107,91,104,87,111,103,111,103,94,111,103,101,109,87,103,96,107,92,77,103,104,116,105,100,101,100,98,114,107,91,115,116,93,96,108,105,108,102,100,100,102,99,133,99,105,101,100,113,113,111,100,104,102,106,92,99,110,86,108,104,91,107,99,98,94,96,90,104,106,95,105,110,96,102,103,103,97,97,98,108,94,108,95,90,95,108,113,95,100,98,96,101,101,101,97,100,109,98,111,109,106,102,101,109,109,106,93,100,105,92,99,106,98,103,100,101,100,92,98,99,104,109,106,95,94,81,108,97,103,100,108,103,107,96,107,95,106,98,109,105,106,94,92,106,90,106,102,97,113,113,102,89,100,95,103,96,100,100,103,104,110,105,100,101,113,98,103,109,101,108,105,102,107,99,112,105,105,112,97,98,104,98,104,108,95,102,117,98,133,100,103,109,99,113,106,104,110,112,98,97,92,100,98,118,99,97,99,102,103,95,102,98,104,105,108,109,98,103,97,110,105,100,111,108,118,125,110,102,106,106,108,102,100,99,99,109,108,103,101,95,103,115,100,108,112,111,104,102,104,106,120,105,89,98,103,100,101,105,112,105,121,104,107,105,112,105,113,95,111,103,98,105,95,102,99,112,108,97,100,98,97,108,106,97,114,111,106,110,113,92,95,111,96,104,98,110,97,101,105,109,101,100,109,102,95,105,107,105,106,107,102,105,108,104,98,106,113,108,104,117,113,113,102,112,100,104,80,100,93,93,113,100,112,83,95,99,101,107,105,98,104,106,103,101,113,98,106,102,104,96,104,99,102,114,93,115,103,99,94,102,96,111,105,106,104,94,110,95,106,103,104,107,110,113,114,102,105,95,110,101,90,99,104,107,96,104,101,95,94,117,111,102,105,99,111,102,102,106,113,108,121,110,101,96,106,104,120,76,104,101,100,105,106,109,105,87,106,98,101,87,106,106,102,101,105,104,117,104,95,106,98,96,96,88,91,109,78,76,113,94,105,99,102,91,110,107,113,79,106,116,99,107,87,109,98,108,95,104,102,104,100,98,95,89,107,105,95,92,102,99,95,107,99,78,113,99,93,103,106,95,101,99,98,102,101,97,112,120,104,108,105,101,101,109,93,100,96,92,108,110,106,102,107,100,89,109,102,100,95,107,102,101,107,126,109,98,104,83,100,110,97,114,110,107,99,106,114,105,106,94,134,99,110,104,80,99,114,114,101,95,96,97,96,102,95,101,96,103,97,104,107,106,110,108,106,114,104,108,99,94,93,112,100,101,102,101,95,96,92,98,97,112,99,105,112,103,108,87,104,105,93,103,110,105,97,110,105,129,117,91,91,114,104,97,95,107,109,94,110,112,102,111,94,94,99,96,82,97,99,104,115,99,91,94,120,108,99,93,113,100,104,106,100,95,93,89,104,109,111,84,106,112,106,98,99,109,97,112,102,98,103,100,92,117,105,112,86,107,99,95, +488.92621,95,89,91,95,93,105,104,107,110,112,94,98,111,98,98,98,90,104,121,103,112,99,115,98,103,101,94,88,99,98,85,102,104,91,106,102,106,105,87,110,108,108,103,89,95,98,83,112,100,105,102,107,108,108,106,79,81,97,106,110,100,109,115,93,105,125,75,110,101,100,105,122,106,96,110,115,104,100,97,106,107,96,99,98,89,107,97,101,108,116,94,106,101,115,100,95,94,92,101,102,106,97,76,103,93,98,108,110,97,110,94,108,108,117,111,99,84,102,104,98,116,94,95,114,101,98,105,98,115,103,123,100,100,109,105,106,98,109,108,103,102,98,112,100,95,104,102,102,103,109,94,107,104,95,99,93,105,96,115,95,108,107,111,88,106,102,98,88,107,103,106,103,104,99,95,106,104,101,111,106,111,104,113,99,104,109,104,92,106,105,94,101,112,104,97,108,96,113,85,108,101,92,106,82,94,126,108,111,112,94,102,106,103,110,104,107,91,108,109,105,117,107,104,99,95,106,106,100,104,92,102,114,111,98,114,109,108,101,102,101,102,108,106,107,91,110,109,115,93,111,95,106,101,106,105,106,95,101,102,106,105,105,96,102,100,95,98,109,104,93,104,104,91,106,109,105,100,107,102,87,99,107,99,93,104,94,100,64,102,91,103,105,118,99,108,107,114,105,113,103,101,94,102,103,98,103,114,94,105,108,97,103,98,78,103,113,112,98,102,92,92,84,110,96,110,110,105,80,88,110,110,93,113,113,113,121,109,112,102,100,104,88,106,111,97,102,107,112,102,102,110,96,99,108,111,117,103,105,111,114,119,101,117,111,101,98,96,103,110,107,114,109,110,106,108,104,108,108,112,110,102,110,109,100,103,98,117,109,105,83,104,103,99,115,119,108,108,109,112,113,96,106,98,107,95,93,113,105,111,100,98,95,112,104,100,95,95,107,113,93,117,105,98,104,100,103,111,105,116,99,98,109,126,96,95,97,96,101,106,110,99,102,92,103,92,106,80,97,103,107,106,115,103,102,125,102,102,108,100,103,95,98,109,113,110,113,104,103,104,110,92,102,94,91,98,99,99,87,102,95,102,107,100,99,121,113,110,109,100,99,114,102,112,94,99,104,102,82,96,110,110,104,104,103,105,106,104,94,114,94,95,99,96,86,109,99,90,91,102,94,107,106,105,102,85,91,92,106,98,103,86,113,91,103,104,105,111,106,101,105,110,104,100,114,104,94,95,108,115,97,116,106,103,101,100,94,109,108,96,97,95,106,93,113,98,108,104,85,112,101,110,95,106,95,103,106,103,98,104,105,109,100,115,98,112,111,109,106,103,100,118,102,100,101,105,112,89,104,111,105,101,102,101,104,106,95,100,87,127,105,107,94,125,110,117,105,108,103,102,107,99,102,106,89,117,98,103,109,104,100,99,108,104,108,97,108,111,99,111,108,110,121,98,113,110,77,116,97,109,105,107,93,79,98,102,97,95,72,100,115,112,98,117,103,110,100,106,99,105,100,104,111,106,100,96,98,115,121,96,110,104,82,99,109,104,98,105,96,110,93,112,108,114,110,111,106,110,111,110,100,102,93,98,109,108,109,116,102,96,97,98,100,99,123,98,99,104,93,101,111,94,97,113,110,111,111,92,112,102,117,100,105,96,99,108,109,116,111,105,100,103,109,105,109,110,98,102,104,106,104,105,101,105,95,111,111,103,116,103,110,97,109,109,99,100,101,96,112,107,98,105,111,104,104,104,107,96,116,108,106,103,104,119,116,99,96,96,107,117,104,100,103,104,109,111,107,104,101,99,101,92,105,105,100,115,107,106,109,115,98,107,86,99,99,114,107,122,101,102,99,108,111,117,100,117,109,102,95,110,107,107,109,103,103,97,103,117,106,105,104,99,98,99,106,98,108,113,101,95,90,105,95,107,105,102,105,96,102,105,98,104,103,120,110,95,108,102,106,102,113,110,101,112,119,98,110,108,105,109,103,113,93,110,103,102,116,91,110,109,100,99,106,101,95,96,117,106,106,121,104,107,102,93,104,107,98,95,99,100,107,90,109,118,112,121,113,112,118,104,104,105,102,115,97,110,106,104,108,107,102,96,95,99,110,98,105,94,111,103,114,113,111,104,103,98,109,103,105,108,86,112,102,103,118,94,119,102,102,80,118,107,99,99,105,110,103,104,100,106,112,107,110,117,109,117,101,95,101,105,100,100,105,100,107,111,104,101,97,105,100,111,101,108,97,103,105,108,113,109,107,116,101,98,104,105,99,100,106,95,109,99,63,107,105,96,113,111,99,98,98,104,117,110,99,118,114,107,100,102,93,100,121,112,81,102,118,101,103,101,113,113,122,101,121,113,112,113,100,100,107,98,110,114,124,109,94,107,109,99,114,101,94,90,117,97,95,101,100,103,109,109,120,107,113,106,103,97,108,106,99,94,110,101,101,115,111,112,95,117,105,106,104,110,95,101,131,113,92,97,108,89,110,107,101,102,100,99,98,113,104,105,112,95,104,106,91,94,108,111,116,113,92,104,105,83,119,87,99,109,102,115,111,111,103,102,98,104,109,91,96,102,99,106,104,76,103,115,96,106,81,110,109,103,108,101,109,104,105,107,102,97,90,113,97,109,108,106,82,106,95,106,117,109,105,99,97,97,113,111,109,101,115,85,99,94,100,121,90,92,104,107,101,115,106,100,108,100,92,94,104,103,104,105,101,106,105,94,101,101,115,102,103,102,102,108,97,103,102,105,109,109,104,104,106,106,101,113,105,107,90,97,100,104,98,98,97,95,109,117,104,108,109,98,101,110,101,106,105,106,108,107,119,103,99,100,96,117,113,91,100,113,99,90,108,112,91,109,100,93,100,106,105,101,108,97,101,98,106,102,113,104,112,114,106,107,104,110,104,106,112,108,106,102,98,110,107,98,111,73,87,114,115,105,87,113,101,109,102,107,100,101,101,103,103,106,96,100,112,114,92,109,109,105,111,115,108,101,107,104,105,87,99,104,91,99,108,103,106,100,111,97,106,109,94,98,91,92,104,98,98,86,102,121,102,97,102,99,113,99,90,102,114,104,105,102,105,103,109,102,111,115,105,104,109,97,101,109,103,102,93,97,102,101,102,111,100,105,104,110,85,112,110,106,106,107,102,103,104,111,106,104,102,102,102,101,105,102,90,110,109,103,100,104,101,107,90,96,99,121,119,104,106,101,101,101,104,89,99,107,97,109,100,99,108,118,110,100,80,113,92,102,105,100,107,90,103,103,106,100,103,105,106,109,109,122,97,118,105,107,100,92,96,103,89,102,109,103,104,124,99,98,107,98,99,98,101,96,100,102,101,107,108,76,112,102,97,95,105,98,100,89,118,97,109,105,101,98,104,111,115,102,114,113,101,102,69,98,98,107,98,98,88,96,102,98,105,99,116,107,103,108,102,106,99,103,101,110,100,100,104,102,105,109,92,112,106,138,115,111,109,107,103,104,95,106,108,95,113,90,98,113,98,100,105,107,105,107,106,98,89,111,105,105,108,121,110,112,102,104,106,99,110,94,92,104,110,99,103,106,98,98,117,93,119,104,103,99,97,96,99,112,101,104,111,118,91,113,100,106,121,107,114,115,102,112,85,103,98,116,107,96,97,99,131,99,101,101,98,93,102,98,98,112,106,111,93,111,107,103,88,98,120,113,110,70,102,113,109,99,88,103,105,102,107,109,103,96,103,100,100,112,89,99,104,102,103,100,102,101,103,97,91,104,109,105,84,108,114,103,99,94,104,97,100,95,106,107,104,102,103,102,116,103,106,98,106,112,102,97,97,102,112,91,106,93,116,103,101,103,102,99,100,98,108,101,103,98,103,102,113,105,128,99,89,95,98,113,92,99,102,102,102,103,114,115,105,113,96,104,102,101,96,113,107,98,96,109,93,91,95,96,107,93,115,99,107,95,107,105,100,111,113,106,109,115,94,106,99,104,82,109,111,123,105,108,106,107,127,105,126,113,95,109,98,104,103,109,104,108,106,113,81,78,116,108,108,99,103,103,102,109,96,109,97,94,95,109,120,106,113,116,108,106,104,105,116,108,100,112,102,109,99,95,100,100,100,107,106,104,96,99,107,100,102,104,104,110,120,108,102,109,109,88,95,94,101,110,106,103,100,106,100,104,106,105,108,96,98,109,104,111,109,104,108,108,105,87,99,110,102,105,106,85,118,99,107,106,94,96,93,96,93,118,103,79,100,103,102,97,91,106,99,108,97,107,109,93,95,98,110,102,102,117,102,109,102,96,97,101,102,108,107,102,100,97,112,108,98,96,100,104,94,106,103,104,113,111,99,115,103,102,106,115,109,103,104,98,106,106,113,94,103,95,111,106,106,116,101,99,90,92,87,99,91,96,99,127,105,100,100,110,102,106,102,105,102,93,107,97,108,106,103,102,102,108,103,107,96,113,85,113,100,108,109,102,106,107,104,103,78,103,109,103,99,107,95,99,100,101,95,101,79,103,97,109,106,96,101,105,100,103,79,94,94,105,104,117,101,84,113,98,96,111,96,106,103,108,106,107,114,87,91,103,111,106,99,103,100,106,100,91,106,89,110,109,110,106,116,104,100,98,109,116,117,122,113,112,93,92,96,100,105,104,102,97,103,107,116,100,97,105,99,101,113,101,106,98,102,96,104,102,110,99,100,81,102,99,94,116,98,112,100,92,101,100,117,100,98,102,98,100,76,102,102,106,111,104,111,71,105,104,133,98,80,95,101,102,98,109,96,95,97,95,115,105,99,82,98,113,87,117,98,102,101,112,105,115,107,97,104,94,105,100,104,99,83,99,102,112,105,111,97,117,105,100,100,97,94,104,102,88,95,103,102,104,100,101,102,98,97, +489.06677,102,99,96,94,102,115,107,107,103,105,81,91,98,92,119,98,88,111,106,103,105,109,95,100,102,105,106,97,106,108,89,91,105,109,92,107,101,94,94,102,105,95,97,101,106,101,98,105,97,107,82,106,92,103,105,107,99,108,108,94,97,105,103,102,87,116,106,106,95,94,103,109,92,104,93,103,101,87,115,104,100,113,95,103,90,99,96,102,107,114,99,101,88,102,95,109,100,96,94,94,96,104,103,99,105,100,102,114,98,101,114,104,95,112,114,97,99,109,104,95,99,100,118,121,103,106,107,90,111,96,104,108,103,105,111,103,107,104,99,99,101,110,103,111,104,106,105,96,105,107,97,95,103,95,102,102,113,100,103,96,113,112,112,111,104,96,102,103,94,107,112,107,95,94,95,104,109,90,105,109,103,95,116,125,110,120,109,114,99,91,117,112,98,102,100,105,111,96,103,110,111,98,115,99,105,101,105,107,111,91,113,105,109,103,100,97,104,92,90,102,104,102,109,101,101,95,100,101,98,115,108,86,105,106,99,95,105,113,98,102,98,107,106,103,95,101,107,96,99,114,102,107,86,106,99,111,102,117,97,109,98,109,105,86,78,105,100,109,118,105,95,100,103,105,99,78,105,109,102,97,104,110,105,107,111,100,78,106,98,93,107,111,104,111,109,100,102,105,108,114,101,103,107,121,96,105,103,112,107,97,87,100,97,101,109,101,117,101,113,99,104,99,104,106,109,105,100,87,105,118,106,105,99,105,109,103,108,101,97,101,117,105,102,106,107,110,108,113,108,103,110,109,101,106,109,107,110,108,100,101,111,113,98,95,92,100,99,111,109,115,112,98,110,103,102,102,112,100,104,103,107,112,85,118,107,110,92,99,95,101,117,95,101,108,98,102,99,106,107,110,103,97,96,98,110,95,102,109,112,87,97,95,101,96,102,104,107,106,104,109,106,94,101,111,94,95,114,90,103,107,106,114,100,67,107,103,100,114,104,92,111,124,111,106,94,102,95,104,95,115,92,92,120,100,111,106,95,114,118,98,102,113,109,112,120,102,106,107,97,103,104,105,98,102,115,101,99,119,100,93,97,108,116,113,101,104,110,101,105,105,100,114,105,101,87,98,96,109,96,110,111,97,109,115,108,104,116,101,114,104,88,114,105,120,96,108,109,99,101,107,100,100,103,108,100,102,89,111,97,99,102,130,110,91,98,102,107,104,95,104,109,114,90,105,102,113,100,109,105,99,99,107,105,106,99,94,105,105,92,106,102,107,87,109,119,107,74,99,116,98,100,110,106,111,105,91,118,99,103,109,120,101,106,88,93,103,115,110,106,101,104,102,95,104,113,116,102,110,109,106,115,101,109,105,104,82,99,108,99,98,100,96,102,115,102,108,99,111,111,104,100,100,106,103,99,107,85,94,104,113,94,109,107,99,108,112,96,93,105,100,113,106,98,104,100,89,102,110,96,112,100,104,81,108,89,113,113,104,103,92,106,108,108,101,99,101,110,102,106,106,88,109,106,107,94,101,117,114,105,105,103,93,110,102,110,105,106,104,106,117,105,103,101,118,94,95,99,113,107,91,102,103,99,98,107,101,102,96,100,102,105,90,94,93,95,103,111,100,109,94,97,102,112,105,86,99,102,106,114,105,109,95,93,113,101,83,109,101,107,100,110,105,99,98,106,91,85,101,95,105,66,103,78,102,90,111,112,109,106,107,101,107,97,107,118,109,93,99,94,100,109,102,116,105,99,101,100,97,104,96,105,104,114,103,104,99,102,107,96,113,100,109,109,105,104,102,117,109,95,119,94,112,93,93,105,105,100,109,121,99,108,107,96,105,113,104,104,100,109,101,93,111,98,107,108,145,110,104,107,109,116,103,104,102,106,96,99,114,108,109,105,104,119,101,97,99,102,101,100,96,103,99,105,104,98,101,100,98,96,112,106,101,103,100,109,112,98,100,116,100,96,110,93,79,105,104,111,98,102,105,98,107,101,103,103,106,105,103,106,102,104,107,113,106,98,98,97,109,100,99,101,109,109,103,108,97,99,105,98,107,92,98,115,117,104,95,97,99,98,106,98,100,110,120,98,105,114,107,107,106,108,104,100,106,99,94,100,107,112,109,117,111,129,107,97,107,106,106,101,96,102,107,105,109,107,99,102,99,93,107,114,114,100,96,111,105,94,99,90,95,105,114,96,94,94,106,106,89,85,105,101,111,102,101,105,103,94,102,86,104,100,96,107,112,114,111,108,91,105,110,99,94,109,102,111,93,108,102,95,98,94,98,103,103,101,105,110,87,102,106,115,108,108,96,103,103,108,119,110,96,102,96,99,107,101,94,102,100,118,95,112,101,96,106,101,100,111,104,102,104,97,101,107,109,105,107,103,105,128,104,100,96,109,109,95,107,110,98,105,93,93,113,91,109,108,101,101,107,107,108,99,99,100,104,107,108,117,109,98,112,110,122,121,92,103,112,99,103,93,103,112,102,104,112,104,114,98,103,103,117,115,121,109,99,111,107,104,111,98,98,106,104,109,103,98,110,106,105,112,92,88,104,107,101,117,110,99,118,105,108,89,100,102,75,117,125,99,108,113,98,112,76,105,108,103,116,108,102,105,104,108,98,115,99,111,118,106,101,111,109,96,107,120,104,98,106,108,87,113,105,95,113,103,108,112,108,114,97,100,104,102,112,102,111,105,111,104,111,106,114,98,116,108,101,105,102,109,106,108,108,103,103,112,103,109,115,100,110,123,89,106,103,92,118,97,104,102,115,104,109,112,102,102,104,104,106,105,119,101,114,113,116,108,102,98,95,106,111,119,117,104,101,109,108,99,111,100,112,97,108,106,107,102,108,94,109,114,109,108,103,112,105,110,118,102,101,102,101,91,85,99,112,107,104,101,118,109,112,116,95,104,102,100,123,107,105,106,107,106,100,99,103,98,113,100,112,101,108,102,103,106,110,107,119,120,99,114,116,109,107,93,94,108,111,110,96,110,96,109,112,99,98,110,106,111,90,123,93,108,107,102,110,119,105,123,100,107,120,106,100,109,106,98,103,107,100,107,98,113,100,108,109,115,105,110,96,112,124,105,101,102,114,102,110,103,115,99,104,103,103,116,97,108,106,108,99,128,106,102,109,96,88,134,100,113,109,104,111,103,102,102,106,102,98,102,98,111,113,93,107,103,100,102,110,100,100,104,113,111,103,125,109,95,127,110,109,105,101,113,103,113,110,111,115,112,107,106,111,93,102,110,97,99,108,119,109,103,106,107,119,110,116,99,99,104,105,117,114,110,94,98,110,115,112,101,116,108,105,94,95,106,106,99,102,100,110,115,109,101,97,102,113,105,91,110,109,107,112,102,81,111,108,111,110,108,100,102,109,101,111,100,97,106,108,104,103,102,114,110,106,109,92,99,106,97,86,123,102,94,105,106,90,104,113,97,99,111,111,102,102,103,117,100,104,107,104,106,110,102,108,102,114,99,104,101,131,102,98,98,109,103,110,110,108,104,104,122,113,99,103,95,112,106,103,121,95,99,107,106,107,109,98,123,105,88,100,102,104,109,109,102,117,121,105,109,111,111,116,113,109,85,110,97,104,109,102,130,107,105,110,98,95,103,102,99,104,100,104,112,104,111,97,107,106,102,99,111,101,94,112,112,108,120,102,103,102,107,106,102,108,95,93,116,125,101,115,117,111,97,105,117,97,97,98,110,92,110,99,111,99,98,85,105,111,103,112,94,117,114,94,117,105,101,113,87,109,109,111,116,111,98,113,105,115,112,106,91,103,100,99,109,98,102,102,105,114,92,115,101,94,111,94,102,105,101,101,115,110,109,107,103,112,103,75,107,111,101,103,104,96,97,115,102,111,108,99,107,96,109,113,115,83,108,93,114,112,106,97,108,98,100,100,108,106,92,107,99,101,95,107,101,109,97,102,104,101,107,104,99,95,112,103,93,122,118,110,119,119,103,93,98,113,88,109,88,96,106,100,114,105,111,105,124,97,105,102,113,111,127,113,104,122,104,108,120,115,101,101,119,80,103,82,109,112,105,113,96,120,100,114,104,109,105,110,104,110,109,103,107,104,103,103,90,100,101,123,99,102,101,106,98,101,108,100,105,108,107,118,102,117,110,103,84,99,109,104,101,99,105,86,105,112,113,104,106,112,92,100,98,104,102,112,99,113,103,107,113,105,103,113,129,111,111,102,96,109,105,116,109,96,96,106,122,104,97,109,109,105,127,98,106,120,112,115,125,115,96,105,108,112,106,87,100,96,115,99,117,89,107,104,118,99,111,103,114,108,112,106,98,93,105,105,108,96,105,101,114,109,101,120,112,94,112,102,113,108,108,105,121,103,102,115,105,99,91,113,110,106,101,100,96,98,100,110,109,111,110,108,101,104,111,99,103,96,106,109,111,111,102,121,103,99,99,117,109,101,94,111,119,102,108,101,105,104,85,121,87,116,101,100,99,106,99,109,111,106,122,111,100,106,95,96,105,104,104,97,100,104,110,105,103,99,103,112,100,97,100,107,111,124,106,102,113,103,106,117,110,100,99,103,103,100,107,106,132,104,96,97,102,120,88,102,105,96,122,109,103,98,100,109,100,114,99,104,98,106,103,113,96,112,115,99,112,108,110,107,99,116,89,122,106,111,101,106,108,105,114,104,90,93,99,92,104,117,104,105,113,95,103,91,109,103,98,106,114,110,111,84,106,109,109,103,100,108,109,102,112,85,98,103,101,100,119,103,109,91,109,95,103,90,69,107,106,112,109,105,91,95,99,111,119,109,97,104,110,106,102,97,102,102,108,98,92,98,96,107,92,101,106,99,125,106,97,118,109,95,120,106,106,93,102,105,113,96,112,102,97,99,100,111, +489.20737,96,100,88,93,96,131,106,100,75,111,107,107,116,109,102,102,95,98,93,117,105,108,108,98,111,79,97,94,108,113,91,95,66,92,102,103,97,109,76,103,86,102,104,115,95,99,99,94,95,111,102,93,93,110,101,107,100,92,110,94,102,112,104,93,105,113,87,102,92,101,96,103,94,99,103,101,82,98,112,102,100,86,104,95,100,101,112,109,91,90,107,79,104,105,90,116,98,107,81,102,106,104,94,107,108,110,109,90,108,97,99,109,98,105,113,96,101,95,105,95,106,98,112,103,112,94,108,102,112,96,109,103,94,108,103,91,101,101,106,108,101,102,86,114,99,115,93,98,101,100,99,101,114,93,96,97,101,105,116,103,99,99,108,118,95,90,90,82,100,96,106,105,106,101,104,94,94,97,116,105,100,87,104,100,95,92,98,101,107,79,95,81,105,105,104,106,99,100,108,99,92,93,105,103,111,113,98,95,106,99,85,97,100,105,103,101,95,115,105,100,104,104,110,84,111,99,94,102,105,114,91,102,97,109,117,111,106,108,107,109,90,98,118,109,93,105,99,108,100,95,108,101,93,98,104,126,91,131,86,109,101,107,94,90,97,101,106,104,103,68,102,97,100,111,116,100,106,107,110,100,96,92,100,111,118,106,109,93,98,104,97,120,110,101,102,112,102,104,108,107,95,98,95,104,94,111,117,110,96,106,100,111,121,107,104,103,110,106,107,102,99,106,114,101,107,74,108,97,102,105,102,92,103,107,99,100,109,98,98,98,102,102,105,108,107,95,99,114,106,95,102,98,103,103,97,108,112,104,83,113,89,111,101,97,108,102,110,115,111,117,110,107,114,107,66,93,107,106,109,107,109,110,103,111,100,94,101,112,96,104,102,88,101,99,95,101,101,100,102,104,98,99,102,99,95,83,115,100,113,110,107,100,110,114,103,95,100,112,108,79,105,104,107,102,101,105,100,100,102,104,86,117,98,94,107,95,99,97,98,102,101,99,90,111,105,110,78,92,109,105,102,95,96,114,105,102,83,113,99,108,91,103,104,117,95,108,106,112,94,110,105,121,102,103,115,97,97,116,113,100,107,103,107,104,113,97,126,99,102,96,102,118,110,75,117,117,102,99,87,110,105,98,102,108,105,106,113,101,110,118,116,115,98,106,104,103,99,113,99,95,108,110,96,102,113,104,110,81,105,109,106,104,103,113,105,124,104,94,103,105,107,113,89,97,107,93,103,103,96,104,110,103,96,112,102,94,99,110,101,116,103,107,104,109,97,94,93,99,106,105,98,92,106,101,105,107,104,105,106,108,93,94,109,102,109,101,96,106,113,117,98,102,106,112,97,103,109,107,104,112,99,107,99,98,98,115,102,100,92,96,108,106,100,103,104,101,94,108,111,103,107,109,114,103,112,103,104,96,102,106,103,74,102,101,100,105,103,92,112,113,105,101,102,115,106,91,111,108,101,108,100,101,107,114,113,104,97,105,106,89,101,98,108,109,101,102,110,99,96,109,103,104,98,106,87,107,105,94,122,101,98,105,103,104,90,101,101,107,102,100,106,110,101,102,105,98,99,97,105,98,102,108,111,101,110,103,111,102,91,103,95,101,115,94,97,100,90,100,116,105,95,96,111,103,89,97,111,109,114,100,90,111,102,100,98,100,91,97,112,109,96,93,128,100,118,103,99,110,91,110,113,101,100,112,120,104,95,106,103,105,92,99,96,100,103,107,114,91,99,106,103,104,121,99,102,104,113,110,125,97,112,101,115,102,100,102,102,113,108,110,105,116,102,107,95,120,94,112,101,112,89,93,107,106,101,108,94,99,101,95,120,97,100,92,107,108,106,119,113,109,106,96,117,102,100,103,98,100,113,101,120,92,112,96,109,107,96,102,112,95,96,106,103,95,99,106,96,112,103,94,100,97,100,100,94,96,97,105,105,102,107,104,98,110,105,95,90,118,106,104,102,101,110,88,105,114,110,104,97,101,89,103,105,105,99,99,100,101,107,101,100,107,103,107,121,96,107,91,97,102,96,101,104,94,104,107,92,100,107,97,118,105,117,106,93,109,103,91,89,95,96,114,112,104,106,91,103,98,104,121,82,108,108,107,103,96,102,125,108,97,99,93,102,112,99,99,107,120,110,98,101,97,100,109,99,124,102,91,102,99,108,111,87,100,102,100,107,106,106,114,93,113,125,109,108,109,95,100,88,102,103,108,101,100,96,102,100,104,92,101,112,101,106,96,103,92,103,111,124,116,114,93,95,99,116,101,101,98,101,104,108,111,101,103,82,107,97,105,102,98,110,100,102,103,91,111,104,105,98,101,115,85,106,107,131,98,104,91,104,92,109,107,88,119,107,103,99,105,98,100,93,103,109,110,96,91,108,100,92,106,97,106,113,99,100,88,105,107,96,103,100,98,105,107,106,101,99,106,105,104,105,96,97,111,98,98,96,91,114,115,94,113,121,103,97,103,97,102,115,94,103,99,104,100,106,105,97,109,104,102,101,91,107,117,109,95,106,137,101,104,102,96,102,104,107,101,99,111,108,94,102,104,101,101,98,95,94,108,99,113,114,93,102,102,96,105,90,102,100,117,110,115,115,95,99,101,102,107,101,110,100,98,98,100,97,102,99,100,100,108,107,113,100,108,111,96,88,104,119,105,96,93,95,107,108,106,105,108,104,91,101,101,114,75,106,114,110,97,102,102,109,109,112,99,114,108,99,108,100,105,109,116,91,105,99,103,108,91,120,92,108,102,110,87,95,101,98,108,101,101,96,105,98,108,118,118,111,100,97,113,113,108,106,103,111,112,98,97,113,91,101,114,107,112,98,95,118,113,107,109,112,105,102,107,100,119,100,106,100,118,103,123,108,122,111,103,106,115,94,108,109,102,99,99,108,113,98,99,95,111,99,113,98,117,102,100,99,104,109,106,95,110,100,117,101,100,108,114,108,113,99,111,96,92,113,117,110,96,88,97,113,110,96,101,101,106,107,104,98,103,111,92,102,95,104,111,93,102,109,123,112,106,111,91,102,107,81,94,108,102,101,103,102,113,84,121,111,97,107,104,110,104,98,112,110,111,113,94,105,109,101,111,114,105,108,124,100,101,101,103,112,94,92,117,105,102,105,96,102,107,100,104,113,103,101,102,117,98,106,99,109,111,117,106,107,107,132,94,106,102,113,99,98,89,109,94,95,103,107,114,95,96,100,97,112,98,106,104,112,99,105,105,104,118,116,122,109,105,96,109,114,93,90,101,105,100,108,102,94,100,96,99,100,100,105,107,104,100,100,102,113,101,116,107,110,109,109,102,97,101,106,105,113,108,106,99,87,102,95,104,115,94,110,94,108,110,104,101,98,99,94,109,110,112,97,108,106,114,106,102,91,102,108,97,114,112,107,99,102,91,106,92,117,98,101,113,111,111,96,100,103,117,95,95,111,92,108,114,106,99,106,105,117,105,103,99,105,109,124,108,109,103,106,118,119,107,111,85,98,97,117,124,117,104,102,100,112,110,103,107,109,115,97,114,113,104,99,95,103,107,108,107,110,109,99,102,110,105,96,98,116,109,91,98,94,88,112,100,98,104,91,100,111,109,100,100,105,106,115,103,101,104,110,106,94,106,104,110,104,120,98,107,104,108,108,100,113,106,102,87,110,110,116,103,102,100,105,94,104,106,99,100,121,111,84,109,101,105,101,100,92,108,101,105,100,101,117,104,103,106,107,100,104,94,109,101,109,111,100,100,114,102,94,112,109,96,106,115,109,112,104,102,95,122,122,102,108,94,102,92,113,107,109,106,101,106,106,92,103,103,106,107,118,96,100,104,105,101,111,109,104,116,105,99,99,107,113,123,114,102,97,105,99,110,111,101,117,97,111,109,106,102,108,107,105,108,101,91,109,86,111,101,91,97,102,117,77,119,115,112,101,108,95,116,104,117,92,116,108,110,109,110,110,112,98,114,90,112,103,107,113,101,106,105,110,98,113,95,108,101,113,107,104,105,106,101,105,94,114,102,85,102,99,107,95,103,92,107,108,101,98,110,104,111,109,112,102,104,102,86,107,106,107,113,108,108,106,117,99,107,109,104,108,98,106,117,124,109,102,105,116,108,94,99,109,122,96,104,103,107,109,105,105,111,109,115,106,110,112,110,102,113,113,110,104,102,109,120,115,102,106,116,110,98,111,105,99,104,96,105,113,98,98,103,104,97,105,101,120,72,116,100,103,109,106,94,104,105,99,92,103,104,107,103,100,112,104,104,101,117,94,103,121,105,101,103,109,92,100,114,103,101,107,98,116,103,115,106,94,105,121,101,107,111,106,100,112,96,105,108,99,107,113,101,89,121,103,104,110,100,98,81,107,102,106,113,106,108,108,109,105,90,104,114,95,96,109,115,98,105,104,105,99,105,103,105,99,97,92,99,102,104,95,113,110,101,105,106,97,111,102,90,113,113,103,113,101,102,107,104,108,97,104,103,112,107,108,106,100,99,104,82,103,107,101,107,99,111,96,102,108,101,105,98,97,102,109,96,101,104,95,105,104,98,98,116,95,95,96,111,114,104,100,102,110,95,104,90,110,109,99,107,103,96,89,104,98,111,110,87,98,111,103,103,117,116,107,107,108,97,98,109,98,99,89,99,104,100,109,107,100,97,96,98,108,99,106,103,98,90,102,115,112,99,105,97,101,112,98,99,102,106,101,108,93,98,98,101,94,102,118,100,102,111,99,105,113,97,93,100,103,107,93,107,99,93,88,113,112,101,99,91,122,97,97,73,103,102,87,94,106,109,98,88,115,101,94,108,100,99,98,104,103,95,85,107,88,95,69,96,102,104,93,104,110,109,89,102,99,114,97,99,104,103,109,99,115,124,87,104, +489.34793,96,109,103,104,94,97,96,99,103,95,98,106,99,114,95,99,96,107,99,100,98,99,110,102,103,131,98,106,100,94,99,102,105,104,109,102,100,100,79,89,94,105,103,104,92,98,103,118,118,100,101,90,107,108,94,108,90,106,112,115,112,97,110,101,106,109,99,108,111,105,120,95,116,107,105,105,98,97,104,103,103,99,94,101,95,110,114,118,103,92,93,107,109,100,99,115,109,87,99,72,102,109,86,107,102,105,113,97,101,96,108,105,101,103,94,99,109,101,110,104,133,102,114,112,107,112,110,92,122,113,91,105,99,98,110,113,104,90,108,103,116,110,95,99,104,70,107,109,109,97,111,105,107,66,105,128,98,94,111,106,91,105,87,114,98,99,96,108,97,106,99,96,103,105,105,106,102,94,109,97,106,99,106,106,95,103,110,96,109,103,104,90,114,99,110,106,101,94,91,108,105,121,110,103,99,105,96,109,117,109,100,109,106,105,112,110,105,114,115,107,100,118,117,110,100,122,103,101,112,103,101,108,117,102,101,91,108,113,113,101,107,96,110,106,112,114,97,81,76,106,109,107,101,112,110,103,84,100,96,109,100,99,114,107,101,120,98,108,99,96,102,107,118,107,107,106,95,105,112,98,122,105,101,108,100,104,92,107,100,109,105,108,88,93,103,102,104,106,101,109,116,96,99,109,93,104,109,115,104,113,109,122,112,92,108,104,109,110,110,98,94,119,113,113,101,113,97,103,111,102,105,106,110,109,104,101,105,108,116,116,97,109,94,104,110,110,108,108,119,106,118,109,113,103,99,105,95,111,121,104,101,105,110,88,102,107,99,115,103,105,145,102,105,100,117,103,96,108,102,112,112,108,112,89,110,92,105,107,128,97,102,94,108,105,112,104,102,106,115,108,100,109,96,114,107,104,125,114,102,93,93,103,104,110,105,105,105,115,107,100,114,98,112,106,99,104,109,107,120,115,98,97,111,117,99,103,94,107,100,104,116,94,105,100,104,109,111,102,99,112,105,102,111,101,106,107,104,109,104,106,105,90,111,104,107,112,122,108,109,112,113,95,109,96,110,106,107,107,102,109,118,115,114,123,81,104,106,114,105,66,103,108,108,96,93,103,104,113,111,89,113,113,106,112,105,110,101,91,94,110,111,106,98,111,122,107,99,97,101,102,103,117,96,80,102,96,105,99,90,101,101,115,106,101,103,95,97,86,108,111,108,108,103,110,103,106,99,95,84,119,106,109,101,105,100,97,90,105,106,115,96,98,78,110,105,105,111,89,98,103,99,103,113,98,108,112,107,103,98,100,104,99,99,95,103,107,102,109,102,102,107,116,93,96,103,99,107,100,106,99,105,97,108,109,107,103,119,85,95,100,109,109,102,105,108,99,108,91,111,108,104,103,103,106,114,119,114,111,94,104,109,95,113,102,106,96,105,94,112,108,103,88,96,96,104,99,100,95,103,109,110,99,115,105,113,99,121,118,112,103,118,108,113,115,107,109,112,99,117,115,108,111,105,101,110,114,113,102,99,103,114,102,103,97,96,106,92,108,109,103,107,101,94,118,102,104,107,102,84,97,106,106,107,101,106,113,101,124,99,109,125,104,102,115,115,92,89,104,109,110,105,93,109,70,104,96,104,100,100,106,112,108,99,102,96,97,107,103,101,105,104,103,103,98,110,111,115,98,102,112,100,118,106,113,112,98,96,96,125,105,92,106,98,98,102,102,89,98,112,93,108,102,98,118,101,95,96,125,110,99,105,104,117,82,101,115,96,100,110,113,117,115,104,100,109,115,108,101,109,114,103,95,106,105,107,118,109,96,99,100,115,110,103,99,103,94,109,94,99,101,101,110,105,105,96,112,96,100,98,88,108,88,110,103,100,110,114,99,105,117,104,116,114,95,106,103,102,90,103,102,99,100,107,110,101,106,114,98,92,109,99,94,105,109,104,101,101,110,92,109,96,105,106,110,96,110,118,114,111,100,104,95,100,113,85,114,90,103,98,99,113,117,99,101,100,110,105,114,106,108,111,101,99,96,85,109,108,98,109,103,96,118,102,106,95,98,103,98,109,112,103,109,99,115,99,107,99,102,99,103,99,104,109,94,90,108,106,121,113,98,113,91,107,106,103,100,108,110,114,99,108,126,112,113,104,106,92,103,104,112,111,97,123,76,106,125,95,98,110,112,80,106,100,104,102,107,114,103,87,107,102,105,109,103,108,102,104,100,100,95,104,103,112,104,113,107,100,101,98,108,104,99,99,95,113,108,98,115,102,121,93,109,93,97,96,102,108,104,105,109,109,110,101,91,107,111,111,90,117,96,103,90,99,101,109,105,100,111,100,102,105,108,105,79,113,109,97,107,105,108,106,104,97,102,113,96,102,96,112,124,114,101,101,105,105,97,89,104,104,96,109,84,107,97,104,108,98,93,102,99,109,108,93,121,98,111,96,103,97,103,99,119,93,94,98,102,97,105,97,117,109,93,94,94,103,108,93,102,108,105,106,96,100,79,102,99,106,111,95,117,105,104,99,97,106,104,101,100,106,101,97,116,116,93,102,92,93,98,95,100,107,98,100,104,109,100,99,94,95,96,120,99,106,106,107,99,106,105,109,102,105,103,118,97,110,113,100,111,114,102,101,100,112,115,103,105,105,97,103,113,99,104,101,107,100,99,111,97,73,100,99,106,106,107,98,100,94,105,109,103,103,113,101,94,110,106,91,120,110,99,103,108,143,105,112,116,97,97,105,102,119,117,104,93,115,102,102,81,106,98,91,103,102,122,94,104,106,101,99,107,103,104,109,96,111,91,104,96,103,100,96,100,108,102,103,98,94,105,102,102,108,100,108,103,102,99,94,100,110,108,105,103,106,103,108,97,104,98,101,108,80,107,106,108,98,99,97,91,106,96,109,111,102,108,87,107,96,106,106,108,86,112,100,113,111,99,99,101,110,105,109,104,99,99,106,107,126,113,102,97,106,106,105,103,111,104,101,97,106,103,108,105,106,117,105,84,109,93,108,119,96,108,107,102,101,106,102,98,96,104,101,107,108,105,96,106,111,100,109,102,100,102,106,109,104,96,104,94,97,99,98,108,106,117,104,101,99,97,102,99,107,105,104,99,109,100,100,102,109,95,95,96,102,106,101,108,102,101,103,101,109,102,101,114,104,96,101,103,109,97,95,112,80,99,97,110,107,92,110,105,102,101,102,97,110,121,96,94,104,86,104,102,105,111,106,105,112,108,100,98,100,102,110,98,112,98,104,105,107,100,100,107,111,100,104,109,96,109,101,104,108,111,105,97,98,101,94,101,108,92,105,98,105,99,106,100,106,96,114,109,98,100,110,98,102,108,107,99,105,101,92,95,101,99,105,100,113,111,109,104,96,103,110,109,96,97,113,99,104,93,109,105,104,97,105,101,126,102,106,113,103,107,106,110,111,103,97,101,107,111,106,120,95,128,98,108,110,106,111,98,112,111,96,102,105,104,101,110,104,96,112,101,106,87,107,99,103,102,113,102,100,106,110,100,105,98,99,100,113,105,98,89,101,97,105,102,95,107,113,93,108,107,110,89,108,108,106,107,96,107,106,116,103,123,103,88,110,75,107,106,94,107,112,106,97,103,92,89,93,108,113,102,98,98,116,105,107,106,111,103,108,113,110,120,100,103,104,91,109,97,108,110,97,118,112,108,106,101,108,104,102,103,89,98,107,107,111,111,102,103,108,104,102,100,96,97,109,98,98,105,105,98,106,102,101,110,108,106,99,106,99,113,101,109,109,100,104,112,106,115,110,113,108,104,120,105,104,104,95,104,88,110,111,104,107,110,113,112,98,108,91,115,111,104,104,110,100,90,100,106,95,104,103,95,88,100,111,107,103,112,110,107,99,120,110,107,104,117,98,98,116,100,104,94,106,109,103,100,121,107,93,113,100,108,101,106,106,111,108,101,111,104,107,99,101,94,94,102,108,104,106,113,100,112,115,105,109,108,111,111,99,105,111,108,107,104,98,92,98,105,99,104,101,99,113,95,108,96,106,106,99,109,99,97,88,112,99,99,105,98,94,90,101,110,107,102,98,105,104,93,113,104,87,106,100,104,102,109,99,102,97,98,96,101,112,110,105,94,106,92,105,98,100,91,111,124,110,98,110,100,102,104,128,102,108,104,94,100,112,107,102,106,100,115,115,108,105,104,104,107,101,103,101,108,110,100,98,93,109,113,95,95,114,105,112,102,107,107,102,112,102,110,103,97,108,97,105,102,89,113,104,95,112,103,97,108,105,108,108,100,100,106,106,128,107,106,119,111,105,111,104,115,103,105,112,109,101,99,108,109,117,106,111,115,102,98,96,111,117,102,112,103,122,98,102,103,91,101,105,112,111,95,111,97,112,109,100,88,104,96,112,103,103,107,102,100,95,98,108,106,119,116,96,134,107,88,98,100,103,98,109,90,105,103,109,100,95,91,94,101,96,91,101,100,104,112,105,101,94,95,94,97,98,100,107,102,103,105,108,102,96,106,98,84,94,99,98,100,107,92,90,105,101,108,108,105,117,109,88,101,99,103,109,98,104,88,103,103,95,97,109,108,104,105,121,114,117,106,102,96,107,95,84,89,104,99,122,104,109,116,96,104,109,100,96,102,105,106,103,72,110,104,104,102,97,117,112,92,101,99,83,132,107,111,108,99,105,105,98,97,101,90,99,106,99,112,116,100,107,110,105,98,104,114,97,92,91,119,108,100,102,109,104,110,96,125,121,105,100,115,101,71,96,96,107,90,97,94,91,102,127,99,101,109,95,99,108,104,114,105,105,110,108,95,107,106,100,107,112,87,102,100,67,103,94,105,95,117,83,102,102,104,98,85,104,101,130,91,88,84, +489.48853,106,82,100,112,89,107,115,91,95,72,100,81,97,89,95,99,103,105,102,90,105,114,109,99,108,109,106,117,116,101,110,108,109,123,104,109,97,91,100,93,91,93,103,106,112,114,108,118,111,100,104,103,106,103,91,95,104,101,99,91,100,109,113,87,110,108,97,103,103,113,104,114,101,107,115,118,97,91,108,96,75,108,90,109,106,102,105,106,105,95,104,76,101,114,111,105,104,96,104,109,106,109,99,101,95,101,96,107,110,106,103,102,115,110,110,99,103,109,109,112,108,115,100,98,97,105,119,109,117,108,117,104,101,114,104,95,101,112,97,105,100,106,87,79,97,106,112,107,94,102,113,94,108,90,94,96,110,107,118,79,107,107,110,105,99,102,116,93,113,113,110,103,100,101,81,99,106,101,106,115,100,99,99,117,95,113,99,97,120,92,99,109,106,110,110,95,102,98,108,116,93,105,107,110,104,110,88,106,112,94,105,120,104,107,103,93,113,109,116,109,111,102,98,106,91,114,105,115,105,107,114,108,104,113,112,106,107,107,98,98,112,108,124,101,108,108,95,96,109,108,115,113,112,101,96,105,105,90,103,116,95,113,103,101,94,115,104,102,109,109,111,104,102,107,109,109,102,98,99,100,95,102,105,78,107,102,109,110,98,97,107,108,93,102,96,106,101,104,106,91,102,115,102,113,96,110,87,107,106,113,99,111,112,95,106,102,103,113,113,114,109,102,107,96,100,98,103,83,109,104,102,96,108,127,116,108,105,101,106,92,105,99,108,94,94,107,109,99,107,117,98,105,110,99,100,106,104,104,107,104,104,105,113,94,101,98,94,107,107,110,114,108,108,103,98,102,99,106,99,103,105,108,105,111,78,109,94,112,109,94,106,82,104,104,106,112,116,102,98,104,95,109,96,107,99,106,115,111,106,103,81,94,107,107,100,102,104,102,116,104,110,101,95,94,104,95,94,92,131,111,103,114,104,91,101,103,108,112,81,108,106,94,112,105,100,107,107,94,99,108,106,99,118,106,103,91,95,102,99,110,105,98,105,114,101,103,100,104,104,106,88,117,95,109,101,112,109,112,106,107,110,108,114,109,107,99,117,107,115,102,76,112,99,95,98,81,98,105,100,97,108,95,100,108,102,121,104,122,110,114,103,102,119,113,113,97,107,110,101,105,121,106,106,101,105,105,102,114,111,104,110,107,100,103,97,102,98,99,117,103,112,100,114,103,117,104,114,95,91,110,105,104,105,92,103,103,103,104,103,95,124,94,96,126,100,95,111,100,100,100,100,103,112,117,104,102,117,97,110,116,106,100,114,100,105,106,109,112,111,96,119,109,101,104,111,98,104,116,102,116,103,107,105,104,99,100,106,103,100,103,108,94,104,103,106,123,105,117,103,105,109,105,119,99,103,113,109,112,104,98,104,102,99,104,94,98,100,96,103,104,106,99,109,98,103,98,95,101,123,102,106,105,109,100,98,103,109,108,106,104,107,98,105,99,105,111,106,102,100,103,119,97,100,113,109,113,106,101,123,114,110,103,106,96,110,99,103,104,97,111,108,103,103,122,95,106,111,97,97,103,96,108,121,106,105,108,107,121,104,102,91,105,107,110,118,107,112,100,112,94,96,109,91,108,105,103,102,121,101,107,105,109,98,70,105,101,93,95,106,109,108,101,119,101,107,96,104,102,113,108,103,110,100,104,101,101,110,115,104,107,109,104,95,101,98,100,93,99,108,80,101,107,104,99,104,87,100,111,103,109,103,108,112,107,89,111,110,111,117,100,111,118,109,113,107,110,89,113,117,105,99,110,100,100,118,109,112,113,107,94,109,108,95,108,106,108,114,108,111,120,98,114,107,106,100,104,111,106,103,107,101,109,108,114,104,116,107,107,115,127,96,99,95,103,113,101,110,103,101,107,109,98,112,108,98,96,110,96,111,98,100,98,86,106,83,109,101,102,116,109,103,128,93,110,88,118,94,94,99,106,96,105,106,100,85,109,94,121,80,115,111,105,104,111,108,110,99,101,97,101,109,111,111,105,113,105,94,104,113,108,105,113,106,118,114,99,102,116,106,103,121,104,127,92,98,116,88,100,113,106,115,100,86,102,98,106,99,98,106,104,95,103,116,104,107,105,104,100,105,95,109,95,103,107,107,105,117,107,108,99,105,101,99,79,112,109,95,112,115,104,95,89,103,91,105,99,116,110,104,116,103,112,113,99,91,103,108,103,107,91,104,109,121,104,99,106,96,106,103,101,109,112,101,100,105,90,100,103,105,109,108,113,107,97,87,111,110,95,102,95,97,86,98,100,128,108,109,109,123,119,109,105,112,104,107,89,102,108,99,107,109,108,105,110,95,115,102,111,107,108,96,107,102,102,99,112,108,113,105,114,105,106,102,95,96,106,99,96,120,114,100,121,100,101,91,99,98,104,99,103,104,110,91,111,103,121,114,104,112,102,113,100,110,104,99,105,112,101,81,104,104,107,103,117,98,105,103,101,94,102,100,111,104,102,107,105,106,96,77,106,96,102,103,112,96,104,96,101,108,108,99,128,107,96,116,99,104,98,94,108,107,88,109,116,110,104,103,112,105,104,123,93,115,113,115,111,93,102,109,104,101,98,109,98,106,106,109,117,112,104,93,108,109,98,116,100,99,108,107,98,103,106,104,116,106,113,116,101,94,114,69,109,105,106,117,106,109,101,106,99,106,112,99,115,100,105,116,108,114,103,102,103,101,106,99,102,104,112,98,96,113,113,102,106,108,116,116,102,114,112,95,100,104,121,95,113,113,112,95,115,110,97,102,101,104,98,108,108,103,107,113,109,107,107,103,99,96,102,112,110,103,91,117,106,102,102,97,96,101,103,110,113,96,101,111,102,103,116,104,102,108,99,105,86,123,98,106,98,107,101,103,113,102,104,106,120,113,105,112,106,109,101,100,104,106,104,107,87,100,102,96,99,98,94,104,107,103,106,97,91,108,105,91,111,109,103,114,108,100,105,111,104,102,108,104,106,108,121,97,100,93,105,102,104,101,92,119,112,111,112,106,109,96,100,95,104,113,97,104,112,111,111,107,95,107,106,113,96,116,92,103,104,100,101,109,116,100,105,93,102,103,104,103,125,110,113,78,99,107,100,94,107,98,99,103,114,106,102,109,106,121,91,96,106,109,107,127,103,106,96,110,96,102,98,105,96,92,108,111,112,97,102,92,108,96,94,117,121,112,97,113,110,106,98,111,100,96,114,104,94,106,92,111,93,110,112,103,106,96,120,109,105,116,109,109,112,96,104,104,101,109,121,95,105,112,106,110,91,99,95,87,95,96,115,104,101,100,105,120,97,102,105,109,102,110,104,108,101,110,105,97,119,100,115,108,91,109,104,109,106,97,126,112,105,104,110,108,92,107,102,87,101,95,99,100,100,102,106,102,105,114,110,107,108,103,117,98,100,106,106,108,98,108,93,100,106,105,116,102,98,110,115,107,114,104,102,95,108,112,108,108,108,117,110,84,103,110,110,98,104,103,113,106,115,108,108,99,112,121,110,104,105,100,114,101,108,111,100,102,102,95,100,102,105,110,103,112,105,86,100,91,104,120,109,96,93,112,94,111,113,102,103,112,100,105,110,116,101,101,117,95,118,103,101,108,102,103,102,107,109,101,113,101,104,96,100,94,97,106,87,106,104,105,109,109,110,102,108,107,97,109,91,105,110,100,98,105,107,113,105,103,103,99,94,90,104,122,103,108,104,105,97,110,105,101,100,98,94,109,109,101,110,98,114,98,92,98,101,100,102,102,105,116,107,100,114,97,112,103,103,102,104,108,107,102,103,102,99,96,119,95,132,102,107,112,117,100,85,98,113,99,103,105,103,101,108,111,114,96,114,110,104,109,89,109,104,106,93,103,108,103,106,114,100,97,83,93,113,112,106,107,113,98,109,99,112,106,110,108,125,94,99,104,105,106,96,106,100,93,111,115,108,101,113,115,101,93,107,111,114,109,103,94,108,104,109,103,100,109,116,103,109,102,125,122,109,103,102,111,103,107,91,103,118,95,71,100,113,94,110,104,99,106,108,104,104,105,106,106,106,106,103,104,108,113,128,113,110,99,103,110,97,112,104,103,114,99,107,97,104,110,107,95,100,100,118,112,101,101,101,105,101,99,110,106,110,95,111,110,99,107,105,105,105,108,105,107,111,91,104,116,84,110,110,101,111,108,104,104,101,99,92,113,99,99,98,88,105,107,111,102,104,111,95,108,107,110,91,100,98,103,136,99,103,97,96,110,96,108,112,105,105,106,104,107,93,108,113,110,102,103,98,106,96,95,106,120,104,122,105,114,104,108,111,104,104,95,106,113,104,109,109,115,110,107,105,113,108,106,99,99,96,105,105,101,110,99,108,74,101,108,108,105,109,93,94,121,97,89,104,118,102,103,108,81,96,115,103,107,100,107,90,74,99,105,119,106,111,102,108,84,117,98,102,114,108,120,127,114,98,104,97,101,102,99,108,111,91,119,121,104,107,107,108,101,104,97,117,110,89,110,91,103,106,102,89,106,107,98,104,107,97,110,105,99,106,102,96,98,103,100,105,117,107,103,100,97,104,100,105,101,67,105,95,104,109,113,99,93,111,101,101,105,106,101,100,100,91,119,91,99,113,108,101,87,100,108,101,114,99,120,101,106,102,109,101,112,98,106,114,104,89,113,102,107,109,93,101,96,102,109,91,105,96,98,112,103,109,111,97,94,103,99,97,106,112,104,95,102,110,108,90,108,104,98,108,106,92,103,110,107,114,104,107,102,107,89,103,92,99,114,109,104,104,104,106,106,103,112,84,101,96,98,103,90,101,102,114,111,92,100,101,103,109,111,104,101,96,88,54, +489.62909,134,105,79,95,101,92,110,105,97,111,106,89,93,115,97,101,102,88,111,102,99,111,107,111,104,113,105,101,109,103,96,94,99,99,108,117,106,90,103,91,91,96,109,107,105,113,99,95,95,101,81,95,108,95,113,94,110,103,98,97,109,115,102,91,102,105,105,102,96,95,109,108,95,112,108,108,103,91,97,100,108,103,86,104,101,86,117,102,97,102,105,100,100,115,100,112,112,116,92,98,106,96,101,104,101,93,96,99,111,91,102,112,103,95,94,105,95,108,99,95,99,102,102,109,101,102,117,106,95,97,113,97,105,98,102,95,114,97,110,104,105,101,109,104,66,113,107,108,100,101,104,84,103,93,93,95,114,95,99,106,108,96,104,107,99,95,93,91,99,93,99,102,103,103,109,103,94,85,112,108,90,112,79,99,93,104,105,106,101,95,107,103,90,96,98,109,111,98,95,99,99,107,105,99,96,112,101,89,107,96,102,100,106,100,98,113,95,102,92,83,102,103,100,98,86,110,123,96,102,104,108,110,117,107,112,108,106,96,113,104,104,109,90,99,103,110,141,103,114,105,109,105,97,110,105,108,94,111,102,104,106,113,101,81,97,106,103,103,100,98,105,103,106,93,113,99,100,105,98,94,117,105,109,95,106,103,106,104,91,96,95,102,122,112,107,110,98,114,107,112,95,98,99,112,104,109,112,109,110,100,109,121,105,106,101,95,113,91,101,102,107,121,103,116,109,93,103,89,107,98,104,102,110,81,113,116,100,106,97,109,96,115,110,95,106,101,102,94,112,97,110,111,105,105,100,112,107,108,100,105,109,99,106,97,97,104,100,105,97,108,100,106,113,102,105,108,106,105,101,118,101,105,98,103,106,102,107,103,90,112,107,98,111,103,99,109,110,98,108,99,114,101,95,109,108,95,104,122,98,111,109,97,102,109,93,101,113,104,116,101,105,115,103,98,99,106,101,100,106,109,91,92,92,108,108,100,110,108,102,95,102,94,108,114,97,107,101,102,105,99,108,113,104,108,103,97,114,113,118,98,107,110,105,109,93,94,118,95,108,121,100,96,92,98,110,67,104,108,103,111,114,103,106,100,112,94,105,109,101,106,119,107,121,106,96,97,91,113,116,100,100,84,102,95,111,101,104,96,102,102,111,106,107,105,107,101,112,112,112,97,101,111,106,98,103,102,108,96,95,105,112,100,106,83,105,95,100,107,98,101,95,114,100,105,103,99,108,108,86,100,101,109,112,105,102,87,101,97,101,105,101,117,98,102,115,112,99,108,106,104,112,101,103,110,119,81,121,112,102,101,101,108,107,95,108,103,113,109,99,98,104,111,107,103,104,115,112,99,106,104,100,107,94,105,103,99,103,92,92,94,112,96,102,115,105,113,105,100,109,110,99,99,101,113,110,100,103,100,114,109,96,99,119,86,102,107,100,97,106,109,108,106,109,105,94,100,111,116,105,108,99,112,99,108,113,100,108,118,99,103,109,107,104,109,109,108,109,100,105,104,114,108,112,99,103,103,100,99,113,108,110,101,108,109,98,109,106,95,96,96,104,107,117,117,103,119,96,111,105,96,110,110,96,108,105,104,99,105,108,105,107,98,103,107,112,95,104,103,92,106,113,104,128,110,102,98,113,106,103,102,110,114,104,94,102,107,109,101,113,111,129,97,100,99,97,92,104,94,111,103,102,106,102,100,106,101,103,107,104,100,111,110,114,95,102,122,100,99,105,108,94,99,121,99,105,129,109,103,97,100,123,113,100,106,79,103,109,106,105,109,109,99,102,110,112,104,106,115,88,105,115,123,106,109,91,113,112,98,112,117,113,102,104,104,106,114,92,90,112,105,100,98,107,113,103,133,110,107,110,114,117,102,117,116,103,106,105,112,107,103,95,102,101,109,105,107,110,99,93,99,109,101,108,94,97,113,102,106,98,93,96,94,96,111,110,100,92,114,117,108,106,97,121,106,125,125,122,106,105,97,107,101,103,109,108,97,98,112,102,112,104,112,111,112,101,105,107,113,99,106,92,100,116,102,99,104,121,110,100,120,106,106,98,106,100,107,92,102,97,102,107,104,100,96,108,100,104,118,104,127,109,113,101,94,102,97,105,111,117,113,109,105,95,99,117,102,113,102,101,100,110,109,111,100,106,107,86,104,99,82,105,111,96,102,106,100,105,94,110,107,106,103,110,101,111,101,106,100,99,104,99,104,107,101,102,111,95,106,106,96,113,96,102,103,112,108,107,113,103,94,94,100,104,104,103,109,94,100,99,97,84,103,115,95,98,99,103,102,100,104,107,110,93,99,104,104,109,99,99,78,100,105,104,112,103,99,105,109,110,119,96,99,92,99,96,99,124,104,103,97,117,94,101,110,96,111,99,106,102,110,103,108,113,105,91,104,83,110,111,103,84,110,100,103,106,109,106,109,117,84,98,99,92,113,120,105,112,97,100,121,100,118,107,98,98,106,104,93,111,101,112,100,113,116,96,121,96,95,102,101,103,133,110,107,113,99,98,96,91,109,105,110,99,111,109,113,105,102,110,103,112,99,103,102,87,98,103,106,104,105,96,109,110,115,113,113,104,95,96,109,108,105,107,117,105,116,111,116,109,111,100,108,112,68,102,108,102,112,103,106,107,113,114,105,97,105,104,96,111,108,99,109,108,105,107,115,110,95,98,124,87,103,107,113,102,118,102,109,123,105,116,110,112,106,114,110,111,112,103,104,127,129,104,112,114,100,107,112,96,107,117,101,106,119,112,103,105,113,110,106,96,112,98,114,108,95,111,116,103,116,100,107,109,110,109,100,117,106,97,110,102,114,110,97,92,99,109,112,98,111,110,101,106,113,107,103,102,79,96,99,100,109,111,108,102,104,110,110,100,115,112,103,110,102,97,99,103,99,106,110,93,104,110,122,95,89,105,103,126,99,109,115,122,112,109,99,103,112,109,96,107,106,99,89,109,105,111,102,102,92,113,94,105,112,101,106,101,123,119,108,102,116,99,112,112,140,104,98,113,78,106,109,117,102,103,107,117,110,110,109,101,100,98,104,102,102,109,117,94,94,102,106,106,108,91,105,106,98,108,93,100,103,106,98,110,96,107,107,102,104,104,92,107,108,109,118,106,101,97,103,111,102,119,109,104,107,106,88,108,96,101,110,100,102,105,98,112,116,96,95,114,83,97,103,115,104,108,102,111,104,110,112,90,100,99,101,95,110,110,120,114,106,93,109,99,92,106,94,106,106,99,106,96,98,102,106,103,108,109,107,110,92,105,106,95,97,95,112,108,102,110,104,100,107,110,116,99,99,98,101,85,95,109,104,95,102,102,120,103,96,99,98,91,102,102,103,112,103,100,101,109,95,105,100,104,116,98,66,93,102,98,101,114,100,95,111,112,96,110,95,106,108,114,107,104,107,104,105,95,105,109,113,94,103,98,135,107,96,101,98,110,108,100,104,109,108,80,106,100,105,118,108,98,107,105,110,108,98,105,106,111,101,105,111,112,101,109,118,94,95,102,110,110,110,108,98,88,105,117,105,106,99,103,100,100,98,96,101,105,96,102,100,84,108,95,103,91,102,98,96,94,92,104,107,105,98,99,98,112,113,105,101,112,106,95,101,101,94,89,114,93,102,95,105,84,105,100,99,116,101,114,116,101,114,114,109,109,103,100,100,94,83,111,108,103,117,103,107,106,98,105,112,95,87,109,109,120,112,102,105,107,106,95,106,98,111,109,102,105,111,104,103,94,113,104,103,102,98,101,111,96,100,88,104,100,95,102,98,109,105,114,113,102,99,111,100,99,114,92,99,105,125,117,121,112,111,98,94,98,98,100,104,108,98,106,107,101,114,87,92,95,110,97,106,117,105,108,105,97,94,94,101,93,104,100,105,121,105,113,102,99,110,113,110,91,106,97,106,102,104,103,120,95,111,104,95,106,100,102,108,113,98,104,101,89,105,98,113,103,110,119,112,94,95,105,100,77,110,104,117,109,113,92,95,82,94,101,101,99,104,103,109,101,107,109,107,110,102,105,102,101,93,99,88,98,103,103,104,97,105,98,105,116,114,108,99,105,96,106,100,89,114,98,106,103,106,119,108,109,98,104,109,105,100,95,107,120,105,106,113,108,110,106,62,97,111,102,113,72,98,95,113,105,106,102,109,109,118,108,113,109,107,109,112,110,107,109,98,105,109,115,112,93,100,95,99,91,104,109,96,99,100,103,92,98,98,104,101,82,106,98,110,108,103,111,103,100,95,103,101,99,108,102,105,112,110,97,100,96,110,110,102,106,104,111,84,109,108,97,104,114,104,96,105,98,100,89,96,107,109,110,111,121,98,95,109,106,117,129,102,110,108,104,99,105,100,107,99,107,98,90,84,100,104,96,113,110,101,102,91,115,101,103,104,114,106,103,101,103,106,105,103,109,105,105,93,106,110,108,106,97,110,97,92,105,106,95,108,101,120,89,103,104,106,111,104,85,96,102,101,102,92,107,95,101,95,116,74,111,107,101,113,102,105,91,112,102,87,101,109,105,109,104,100,107,108,110,109,109,108,105,101,101,95,107,77,100,99,100,99,108,95,95,127,97,107,95,106,106,112,108,116,112,103,106,99,109,106,104,76,98,95,106,102,101,94,101,109,85,99,102,105,98,109,99,91,95,102,69,92,103,104,104,101,98,100,105,105,97,100,92,89,96,98,103,103,99,106,117,98,113,98,102,99,80,105,104,106,106,106,116,104,103,102,91,110,110,104,84,101,95,98,109,105,112,90,95,116,108,102,99,101,104,101,103,112,111,102,120,93,120,102,103,114,108,87,99,97,102,95,109,109,75,104,105,108,107,93,107,101,121,107,113,99,91,97,109,112,98,96, +489.76968,110,93,102,102,100,107,94,108,112,98,106,105,101,111,113,112,91,87,111,92,105,99,113,96,107,90,98,105,106,112,98,99,104,109,116,99,99,93,86,107,106,102,101,103,108,110,91,112,106,105,100,96,99,102,100,101,109,103,99,108,99,102,90,104,102,113,105,108,103,99,104,118,100,110,82,116,97,108,91,96,111,96,98,102,94,97,97,98,105,105,103,104,108,103,96,101,109,94,105,102,95,94,113,105,105,98,93,115,97,98,110,99,99,96,109,110,97,94,116,107,86,100,119,105,100,117,102,106,108,94,96,96,93,110,95,103,104,104,95,126,96,102,113,115,92,98,107,94,98,95,101,109,96,100,96,108,110,107,104,101,105,110,103,104,106,116,100,102,100,99,87,103,98,103,115,100,110,104,100,94,100,104,103,103,101,103,109,93,121,95,91,104,109,115,98,101,102,106,116,102,101,100,103,110,109,111,105,104,118,103,96,111,103,111,105,104,102,104,100,97,102,109,107,89,95,105,98,127,105,112,100,102,99,108,113,102,101,115,109,106,97,95,118,106,91,101,114,106,105,102,98,108,96,99,86,105,90,113,97,106,97,104,107,116,108,113,109,99,100,107,111,102,115,113,112,100,106,96,109,98,109,109,106,103,109,100,104,103,109,93,114,100,109,107,115,106,104,108,86,98,112,97,114,111,105,108,116,96,100,110,95,115,105,96,111,96,103,107,109,101,111,100,101,100,90,92,99,110,109,117,103,103,95,100,97,103,97,103,98,99,109,108,101,103,99,108,89,106,103,111,113,103,102,103,101,103,106,107,104,104,108,106,104,114,102,136,106,101,100,102,112,94,102,104,91,95,93,103,106,102,102,106,112,100,110,108,99,104,101,99,109,86,102,105,97,112,103,100,100,109,107,106,103,108,113,98,97,107,98,99,91,94,99,112,105,100,101,100,100,103,114,104,100,106,112,117,107,95,90,116,113,116,105,104,93,104,98,110,106,101,104,104,120,101,114,94,122,113,101,95,104,81,99,103,109,106,106,107,82,104,99,96,113,98,104,109,100,99,112,108,114,102,109,113,92,104,104,110,106,96,113,103,111,98,107,102,106,109,114,100,104,102,118,106,102,110,105,103,120,108,105,109,107,104,109,104,101,90,102,102,106,102,107,114,116,109,111,106,102,105,105,95,118,105,92,94,107,105,96,105,109,103,106,99,94,105,101,93,105,107,108,107,92,95,82,103,107,109,105,105,95,120,95,100,103,105,96,101,113,88,103,98,106,103,96,93,106,96,111,106,109,106,90,106,107,106,108,99,106,102,106,113,102,99,101,87,117,104,104,98,123,107,100,100,111,104,102,96,110,103,108,99,103,106,106,96,100,95,103,114,106,91,122,96,95,112,114,106,113,99,101,109,105,98,103,101,106,98,88,108,118,105,104,105,104,99,107,102,103,99,108,105,86,110,106,117,94,110,105,106,109,97,114,109,106,113,110,98,108,109,112,116,113,121,100,117,108,109,112,106,124,123,117,105,98,106,109,113,109,101,102,113,107,104,103,106,102,112,110,106,107,100,100,99,100,102,102,101,109,93,111,99,97,105,88,109,123,106,96,107,107,108,108,100,121,106,104,105,69,107,93,107,99,108,103,108,103,107,101,111,106,105,119,103,108,104,107,103,103,107,116,79,102,99,113,107,105,112,91,107,103,114,86,101,101,103,111,102,128,101,104,104,106,111,124,114,108,104,93,95,106,110,95,95,101,105,111,106,100,99,102,103,111,106,95,97,105,87,100,100,113,105,106,109,93,107,104,100,101,113,106,96,88,105,99,109,105,117,107,71,108,114,109,115,109,78,106,106,104,116,97,105,110,95,140,107,101,100,104,110,94,105,106,115,97,101,102,99,117,109,98,107,100,92,106,98,108,104,94,96,98,102,109,104,106,107,104,110,99,103,103,112,111,93,108,107,103,102,98,133,99,114,113,114,110,90,110,98,109,103,108,90,73,110,99,101,105,106,114,96,110,112,107,98,85,102,110,100,104,103,106,99,109,96,98,105,94,112,95,104,99,98,97,111,96,104,111,103,94,102,107,74,134,111,97,104,109,109,113,99,101,103,112,104,95,98,102,102,103,103,102,108,118,102,94,99,104,111,101,94,112,91,111,114,113,93,102,102,92,100,124,90,104,104,116,95,101,105,111,112,127,109,111,103,105,105,105,111,77,91,101,107,100,95,102,101,102,99,99,95,101,98,103,101,98,103,93,99,87,116,102,86,99,106,105,112,109,109,107,101,93,116,104,113,109,97,110,102,104,98,107,107,105,86,94,113,73,96,112,104,103,109,88,102,104,93,96,103,116,105,106,115,102,95,99,103,87,105,103,107,106,101,99,107,111,108,97,103,108,102,106,106,109,102,98,99,105,106,98,94,103,105,84,100,97,98,108,109,109,93,102,107,105,105,110,101,104,99,107,112,101,113,105,98,90,76,90,103,104,110,101,124,117,114,108,105,113,107,107,102,106,116,75,100,109,90,108,103,102,99,100,99,101,103,108,109,89,100,99,100,105,111,85,102,109,94,113,114,105,102,125,91,113,111,106,97,117,92,100,88,108,109,105,94,105,83,107,106,99,103,94,108,113,92,103,121,113,103,104,108,93,100,109,100,112,100,114,98,109,101,94,109,92,111,118,106,118,105,106,119,91,104,104,107,112,95,98,105,97,106,117,114,99,118,123,105,100,103,112,107,94,108,115,107,113,104,101,105,101,103,105,101,96,106,101,94,117,99,78,106,96,99,112,110,98,101,109,98,98,106,111,110,98,101,104,111,109,97,110,118,99,97,108,119,105,92,104,97,92,106,110,110,103,100,110,107,112,95,99,119,100,106,112,94,100,98,109,108,109,102,105,107,107,94,102,107,108,107,96,105,104,103,99,98,96,104,106,101,109,111,110,105,101,107,95,98,100,112,111,102,100,113,100,102,102,107,99,98,103,115,109,99,97,104,120,105,99,106,105,113,98,99,103,67,102,95,110,106,109,102,104,108,109,108,100,105,94,113,102,104,104,100,108,104,98,105,97,88,103,101,114,105,107,93,127,106,111,103,109,99,113,94,103,105,96,100,103,99,99,109,99,101,100,105,108,100,106,106,102,102,93,91,115,105,104,99,98,95,115,103,96,110,103,103,98,114,99,105,108,100,101,105,95,106,97,96,99,98,106,92,110,98,104,95,111,115,95,92,93,97,92,106,113,116,106,88,102,111,100,99,109,107,95,112,102,105,100,100,114,68,90,94,101,104,100,125,110,95,116,105,109,106,113,103,107,95,95,99,103,95,102,93,107,100,100,101,95,112,103,80,97,112,94,104,102,109,101,103,94,79,124,105,104,115,100,102,109,94,105,114,97,106,112,115,99,100,102,100,103,106,103,102,100,109,104,102,102,110,93,108,101,111,107,104,104,112,114,96,112,110,109,112,109,86,106,97,106,109,109,98,102,103,95,108,120,99,101,100,110,127,103,102,108,111,102,108,100,105,84,107,112,120,110,106,94,109,103,101,94,111,115,92,99,102,91,117,94,105,87,110,86,109,102,91,114,109,106,114,104,100,104,123,107,101,115,104,115,123,101,109,92,100,106,111,99,104,99,100,112,110,102,99,95,81,104,110,102,109,105,104,106,114,101,109,95,95,109,101,107,102,96,97,107,121,109,93,109,96,109,94,103,97,106,102,109,98,100,99,97,105,112,88,97,108,98,107,106,99,89,97,101,97,105,111,99,99,89,95,102,93,92,94,98,100,108,102,106,102,103,97,128,100,107,108,100,112,103,101,106,99,110,112,100,104,97,112,102,93,97,105,95,102,92,108,111,101,107,87,107,94,106,100,92,103,100,105,126,98,101,106,101,106,102,105,102,103,102,90,105,96,104,102,105,105,102,108,102,100,110,86,105,100,99,112,112,110,104,89,101,115,105,83,105,119,104,103,103,103,111,113,114,104,77,109,108,97,97,105,101,92,108,92,91,94,112,108,103,101,111,96,114,108,96,113,109,112,98,104,94,107,107,107,102,91,107,81,105,94,108,105,100,101,109,103,99,117,96,109,108,106,103,115,105,100,100,87,101,109,102,106,100,106,102,99,113,108,94,94,99,96,105,95,104,93,99,98,105,94,96,94,110,99,99,106,104,94,102,101,97,111,106,117,106,110,101,117,106,102,106,103,103,99,96,95,108,107,105,112,102,102,107,117,110,95,98,104,99,97,103,109,105,104,113,97,105,97,100,97,105,95,93,101,104,102,91,118,88,106,87,105,112,115,93,111,98,97,104,107,108,102,113,89,100,100,107,94,104,93,108,100,102,103,109,108,100,72,94,99,100,90,110,110,96,101,110,101,95,89,118,107,92,87,98,101,102,109,86,95,108,100,122,108,97,111,109,114,90,101,105,99,100,112,106,102,109,103,105,102,109,105,117,100,109,121,100,106,101,116,101,97,113,99,82,114,104,94,95,97,92,114,99,99,104,107,103,109,101,103,110,99,91,86,110,109,104,110,96,91,100,98,104,116,115,94,105,111,109,92,93,95,101,93,100,91,108,112,89,108,117,116,100,89,120,93,102,105,107,101,93,108,110,110,107,102,96,105,104,112,108,116,103,94,107,96,92,121,97,93,95,105,103,90,87,99,113,109,123,102,108,93,96,103,100,106,103,86,104,96,101,91,101,101,112,110,106,102,104,105,100,95,104,113,97,101,106,104,102,101,113,99,107,105,103,108,107,99,100,108,139,112,101,111,99,98,115,103,99,95,95,112,113,105,109,99,98,101,105,105,101,104,102,91,99,101,72,108,98,95,95,94,111,102,107,101,89,108,99,117,106,103,114,88,95,91,102,103,107,109,93,105, +489.91025,94,97,96,93,97,75,105,99,100,102,91,114,104,94,102,104,112,121,107,96,104,96,103,67,97,105,100,104,103,103,116,104,105,107,96,99,103,79,87,91,104,100,113,94,113,104,106,98,104,110,87,96,109,82,98,79,117,118,105,87,105,115,108,81,99,102,105,117,101,111,106,110,110,99,117,111,94,97,99,104,96,106,75,104,110,95,108,106,96,102,106,101,105,105,108,104,104,95,94,109,95,104,85,103,99,95,99,100,95,96,104,100,117,92,92,109,109,99,100,104,102,103,127,108,111,102,80,94,95,109,102,112,104,96,109,106,99,103,96,98,104,112,104,100,103,96,114,103,109,99,102,96,116,100,103,108,104,100,117,92,89,107,100,106,109,117,108,87,100,95,94,98,103,79,99,111,98,105,103,107,101,102,103,108,102,108,111,99,117,106,91,111,113,109,105,100,104,99,109,101,98,104,95,80,95,105,97,95,104,98,103,99,110,117,98,109,103,107,102,97,98,126,98,108,99,107,108,98,102,112,103,100,116,105,108,119,110,104,117,120,92,105,104,106,92,97,95,104,108,108,99,111,112,112,109,87,103,106,93,106,104,95,97,135,100,106,102,100,104,98,118,107,98,104,100,98,100,104,98,104,110,112,102,117,101,103,106,108,109,105,104,107,115,103,104,107,97,118,104,107,100,104,119,114,90,110,92,106,98,112,103,104,100,110,100,99,112,106,106,99,92,109,112,103,106,110,105,94,112,105,121,100,99,110,105,107,112,92,107,102,111,127,95,92,125,93,111,108,109,112,95,108,114,102,106,105,108,106,101,109,95,116,111,107,107,94,101,103,112,101,111,99,105,109,108,104,90,106,95,110,104,99,102,109,99,101,97,96,112,117,115,98,105,98,95,85,103,104,102,113,102,110,109,93,99,98,101,97,122,100,91,98,111,109,112,94,105,121,107,109,108,103,105,103,105,104,104,88,101,111,97,102,100,89,130,91,103,104,113,100,106,110,102,104,95,103,106,98,112,130,100,94,95,108,103,101,100,112,109,118,100,103,104,100,111,110,114,108,96,94,101,107,106,110,90,99,94,111,106,110,96,118,118,108,98,93,99,108,107,100,101,105,113,105,114,102,93,112,110,113,98,104,103,107,118,114,99,103,113,110,92,111,108,97,106,98,109,97,99,97,112,100,104,93,95,106,121,100,102,98,102,114,102,102,106,101,104,103,113,108,102,98,104,101,107,107,114,101,100,97,101,107,104,90,100,100,117,96,105,103,97,88,102,104,110,104,104,111,106,100,98,96,96,108,96,108,99,109,109,91,95,103,110,107,112,107,111,99,108,98,102,111,100,111,113,126,103,106,100,93,121,122,106,117,101,106,97,101,96,109,122,106,107,113,111,99,117,110,103,104,110,106,107,116,126,117,110,108,105,101,110,115,110,119,96,106,101,110,108,102,104,102,100,103,92,99,106,102,99,113,91,101,110,105,106,102,111,101,107,110,104,107,100,97,92,106,93,119,100,116,103,91,104,112,96,109,85,99,110,106,105,108,115,92,112,99,102,102,102,101,106,93,102,111,103,109,98,105,106,86,100,95,103,96,90,111,96,118,105,97,109,99,99,101,91,106,99,99,112,110,110,108,100,101,117,90,100,119,90,106,114,99,88,104,97,89,111,97,113,101,98,101,109,111,114,111,98,109,96,108,121,100,106,109,112,90,110,100,104,89,92,98,107,116,100,94,98,96,75,111,95,109,101,106,90,101,97,103,106,99,114,103,111,108,96,107,99,103,97,111,116,111,103,109,95,100,101,101,108,113,112,106,91,104,101,99,107,103,111,97,103,100,95,110,102,98,108,107,102,103,110,124,115,103,104,100,99,103,95,114,108,95,112,111,97,109,103,103,101,99,100,105,109,107,112,104,103,103,112,106,105,92,99,109,109,112,96,86,109,106,96,101,106,119,91,80,92,105,114,95,100,110,97,113,111,116,110,106,100,93,99,105,105,101,100,113,91,101,104,102,103,101,109,111,101,96,95,114,131,93,106,114,106,99,107,104,106,102,105,101,96,101,113,113,106,102,97,108,89,101,103,100,105,110,82,105,114,98,107,99,91,117,99,104,97,99,103,112,111,100,103,107,110,102,113,104,113,107,106,108,103,106,110,91,110,98,106,94,90,110,115,106,99,103,114,97,77,108,95,111,93,86,101,106,104,106,98,115,97,105,101,102,112,99,105,88,109,97,109,101,95,106,94,116,90,88,93,104,81,105,100,98,112,95,93,113,103,107,99,118,103,116,116,103,108,104,105,104,100,94,101,114,102,100,96,90,100,102,117,99,103,115,102,101,100,87,114,98,107,108,104,105,114,101,110,97,103,110,115,115,116,95,112,116,91,96,94,109,106,95,101,113,97,98,104,102,103,116,97,101,89,104,96,101,104,100,114,102,105,95,102,106,103,100,106,119,103,109,92,113,103,82,102,95,98,98,108,103,95,113,94,100,114,95,106,102,114,113,100,105,115,100,116,89,106,103,92,94,102,94,103,109,79,99,99,112,107,100,86,109,96,105,99,101,102,106,102,105,97,94,109,110,95,116,94,108,98,103,102,100,111,100,101,103,94,94,104,108,100,98,119,97,97,99,105,92,105,104,102,108,97,98,100,105,111,107,108,105,106,87,111,103,112,103,99,106,103,106,104,97,95,102,110,108,99,98,105,110,95,110,110,119,109,96,106,98,94,110,100,105,94,94,100,113,102,119,106,112,106,112,95,91,107,113,104,116,98,107,106,102,98,121,98,107,100,106,102,104,101,100,100,103,109,94,74,108,94,99,117,96,120,94,106,105,111,107,111,108,85,127,110,107,107,90,103,96,89,103,105,113,99,102,108,116,109,102,98,102,105,102,100,96,107,110,109,113,109,100,103,106,109,84,111,109,116,114,111,92,105,115,111,99,126,100,96,99,121,107,108,108,107,99,97,96,105,114,111,106,103,101,104,107,108,110,100,102,113,108,99,104,114,96,86,112,108,100,106,91,112,103,107,102,103,109,105,110,107,98,110,106,99,100,90,100,111,105,119,113,103,93,107,89,111,121,103,115,114,105,97,92,104,112,98,98,100,108,101,103,102,73,105,105,104,108,103,100,111,111,91,107,102,103,116,103,113,105,96,107,106,100,107,113,118,109,90,99,111,108,104,111,106,101,107,107,113,92,98,112,102,110,100,139,97,105,105,100,105,101,111,87,116,116,100,109,103,103,95,113,102,103,101,87,107,109,102,102,105,111,115,99,100,94,91,109,97,98,105,134,102,103,107,110,102,120,102,116,97,108,106,115,102,114,101,91,125,104,101,102,87,86,103,93,109,89,102,109,108,103,104,129,108,97,87,105,101,110,111,103,87,117,97,106,108,124,101,100,102,105,114,104,93,96,97,106,103,110,99,97,106,89,81,105,107,97,111,110,96,95,98,104,116,108,96,101,98,94,98,112,107,93,90,111,111,98,110,113,112,101,98,103,126,106,104,113,103,103,108,124,101,113,99,106,110,110,95,98,98,106,104,110,112,71,109,106,129,101,103,103,96,99,98,99,106,106,101,114,92,113,87,100,101,110,99,101,105,103,110,115,123,110,106,102,105,99,102,102,94,102,112,105,104,102,96,112,103,109,108,106,107,100,110,103,104,104,104,100,107,112,101,105,110,99,102,110,97,97,112,106,116,108,102,98,94,92,98,99,122,109,110,112,97,90,106,108,115,97,95,109,110,110,85,96,104,109,111,113,104,82,105,93,107,104,105,103,103,96,135,96,102,97,93,104,104,105,111,108,105,115,102,111,99,98,93,110,99,101,114,109,124,102,113,108,101,109,102,93,104,111,96,102,113,108,103,114,104,95,105,101,110,103,108,110,106,106,101,108,107,107,112,100,101,96,97,106,98,107,102,109,109,107,93,120,98,110,108,105,100,98,98,107,104,108,95,115,108,104,108,105,94,107,101,122,104,100,109,95,106,100,102,113,107,101,103,106,106,117,107,100,103,101,105,99,111,104,114,111,87,106,99,130,72,97,103,99,95,102,102,112,96,104,112,106,96,101,105,110,92,99,103,102,84,101,99,73,103,108,90,115,94,100,109,102,80,119,99,79,96,102,98,105,95,113,88,95,105,95,99,90,103,98,109,90,109,113,100,97,103,114,88,102,110,107,102,106,110,104,100,86,112,102,103,107,105,105,110,92,98,112,114,89,94,104,102,106,98,102,97,96,109,122,113,107,108,85,110,95,104,102,97,96,100,112,101,113,82,109,96,101,106,97,117,110,102,90,102,78,101,108,100,104,102,100,97,96,100,106,113,97,101,113,113,113,99,105,109,109,106,106,99,98,113,110,108,108,105,110,95,117,90,121,94,99,108,102,100,121,94,115,106,109,109,106,100,99,100,96,95,99,107,117,93,104,105,108,103,104,102,98,106,94,99,96,100,105,116,113,95,101,95,97,108,77,108,112,108,103,107,90,106,93,100,98,100,115,119,108,98,105,101,99,103,104,102,102,114,96,105,107,105,96,107,108,109,105,110,103,110,112,104,109,108,108,123,105,101,108,97,109,116,101,92,106,102,104,106,99,95,74,89,94,113,101,112,106,99,97,99,109,100,102,94,92,94,91,95,97,100,104,107,120,108,98,104,94,103,99,117,103,101,98,114,101,98,107,115,98,115,91,101,89,99,104,105,97,108,79,101,103,113,103,124,103,109,106,102,97,105,104,100,101,100,106,116,99,111,116,103,90,103,109,104,91,95,91,100,107,100,111,107,94,109,105,86,103,103,114,93,111,101,105,113,109,96,98,104,105,101,100,104,105,108,106,103,93,95,105,105,92,100,81,99,94,92,109,111,80,92,113,99,95, +490.05084,118,105,106,98,98,104,121,102,91,110,99,109,125,105,108,102,107,100,96,109,101,99,104,90,105,111,102,104,83,106,109,111,102,107,106,107,93,115,99,112,114,106,104,101,110,98,97,95,98,109,106,99,97,110,103,116,116,103,112,94,101,107,94,114,109,111,92,110,96,112,103,86,103,106,109,118,99,90,104,105,112,103,106,86,102,111,112,98,109,108,95,102,110,100,99,105,113,103,105,107,116,102,115,99,116,103,107,113,104,90,102,116,105,109,100,110,103,95,87,96,105,98,117,120,110,112,106,98,117,103,117,111,100,99,124,112,78,114,112,106,109,106,104,104,106,98,112,81,107,105,100,105,93,105,102,107,106,104,106,108,100,105,115,117,109,102,109,103,113,112,116,99,107,92,104,110,98,98,107,111,106,101,109,104,108,88,92,100,113,109,108,107,115,101,111,100,98,101,102,110,105,113,108,93,105,108,107,106,103,107,94,109,96,117,105,102,113,110,103,116,110,112,105,97,117,99,102,108,109,107,106,94,104,99,96,111,108,89,104,107,116,109,106,83,96,104,107,106,112,106,103,118,99,104,102,103,99,112,100,106,105,110,113,118,103,109,103,112,103,103,116,105,115,108,115,93,106,115,105,102,113,117,110,103,96,114,100,117,100,103,122,106,103,109,109,111,99,125,106,107,99,100,107,108,104,118,109,109,113,111,116,108,100,103,103,94,103,111,100,112,112,98,108,106,110,109,101,102,116,95,117,108,109,107,111,109,120,112,101,104,108,102,101,96,109,114,108,114,112,117,96,103,98,113,108,104,106,100,106,111,98,110,114,99,105,103,109,107,114,125,110,105,99,110,112,115,112,104,105,102,122,113,95,110,105,91,112,109,108,100,111,94,137,109,119,102,116,111,91,108,105,95,104,114,107,98,107,112,114,99,93,102,108,110,85,97,104,114,106,105,94,102,102,113,102,104,92,99,119,118,96,109,104,102,112,102,111,113,107,112,117,103,113,97,105,107,109,96,109,93,99,79,100,100,103,107,103,112,118,99,107,114,109,114,102,104,106,68,103,110,106,99,101,117,101,106,105,109,102,99,109,104,115,110,93,101,101,107,99,109,110,114,105,111,94,106,108,111,115,106,104,112,108,118,101,103,111,103,106,98,110,111,108,99,105,84,108,109,107,99,113,104,106,104,106,98,104,112,113,108,104,111,103,104,114,115,101,99,115,116,113,105,101,101,105,104,116,109,108,103,101,106,103,97,104,104,111,133,99,86,101,98,106,117,117,104,106,106,108,102,101,106,102,122,108,111,102,115,99,107,105,96,106,112,105,100,104,118,99,94,105,116,97,99,84,103,101,109,114,105,110,109,112,89,107,83,115,132,91,99,110,103,113,110,108,102,107,102,95,99,76,109,99,102,99,100,98,106,106,118,121,100,123,117,87,107,104,106,112,120,113,104,106,109,102,104,102,95,99,117,107,108,102,116,106,108,105,113,106,113,109,102,103,116,107,105,99,104,103,107,106,113,105,105,106,109,112,96,100,101,110,108,76,91,104,109,106,106,102,107,112,107,107,108,98,101,102,104,92,97,96,93,107,109,99,115,105,113,110,108,113,94,113,106,113,98,98,111,106,104,100,111,103,114,104,107,115,116,104,105,114,103,105,103,103,86,101,104,112,105,115,107,109,113,109,104,85,102,112,108,128,114,118,100,113,132,107,98,107,96,99,105,103,112,107,106,102,103,97,105,101,95,104,107,96,104,97,95,111,100,114,96,104,102,95,104,112,104,106,114,95,113,107,108,108,103,106,110,108,111,102,103,87,105,113,104,111,113,92,109,110,99,111,108,100,114,106,101,109,107,100,121,101,109,111,111,91,106,117,114,134,107,102,96,100,108,119,108,107,104,98,109,118,130,114,94,102,114,107,113,99,98,108,106,99,92,101,110,108,83,99,106,113,108,114,105,95,113,111,100,104,111,99,102,107,98,98,102,117,109,102,113,104,97,75,103,104,111,103,109,102,110,109,97,103,106,105,103,87,115,102,116,108,98,115,104,102,111,101,102,99,103,107,112,107,113,105,107,103,105,113,102,95,108,117,98,105,107,87,104,123,125,114,98,108,105,109,90,101,108,115,106,110,114,113,107,110,104,109,106,102,104,108,103,109,131,106,106,85,109,98,79,110,114,110,105,116,108,99,118,101,107,104,100,101,112,112,107,115,108,108,109,113,93,95,104,105,109,109,104,104,106,103,100,106,107,100,104,104,84,102,98,108,105,107,103,107,99,109,97,99,113,117,108,89,109,109,102,111,103,112,108,104,114,102,105,107,101,110,98,113,100,107,109,101,100,115,124,111,105,102,108,94,97,100,93,93,104,104,100,106,100,108,112,100,107,104,107,107,106,106,99,100,94,90,95,108,106,99,103,92,104,105,87,113,90,107,107,103,91,107,104,112,139,106,119,106,128,89,114,104,116,105,109,93,103,108,107,118,109,104,96,98,95,99,92,104,104,108,101,102,122,106,109,119,105,115,97,102,118,109,103,112,88,113,100,98,125,108,91,100,101,103,95,92,102,108,104,108,103,113,114,104,106,105,99,109,101,101,109,114,85,99,110,112,103,100,102,97,112,117,91,109,93,108,109,105,97,109,96,114,107,112,110,102,106,99,110,104,103,110,100,97,104,99,107,107,92,109,110,91,111,125,124,99,107,103,104,103,106,108,103,112,96,117,97,113,104,99,93,105,103,105,98,97,103,108,119,115,97,104,113,108,110,88,100,108,97,83,110,105,108,91,103,110,101,97,106,110,117,104,107,125,105,102,101,107,103,103,110,120,107,107,98,97,97,103,116,109,115,114,118,111,105,110,100,92,111,103,106,95,110,99,102,121,102,117,99,116,114,92,108,89,83,105,97,110,101,117,119,99,111,99,94,102,111,110,97,105,112,118,105,99,104,100,99,91,107,104,102,106,109,102,109,106,105,104,118,104,106,101,109,100,102,95,88,107,103,100,105,106,135,101,102,103,108,102,97,112,105,99,111,113,95,114,116,99,94,79,105,102,107,98,103,105,104,88,108,96,107,100,134,105,99,106,95,129,97,108,101,109,102,108,116,109,99,101,115,111,121,104,103,105,103,95,102,102,103,91,105,103,95,98,100,91,85,109,100,105,100,101,103,101,112,108,100,108,108,132,103,88,103,99,110,110,98,104,106,109,94,98,107,105,85,108,109,107,101,103,106,110,108,106,107,102,98,105,108,113,96,97,101,107,113,94,104,98,102,126,114,112,102,103,102,121,113,103,100,104,105,105,106,105,116,108,103,96,91,119,103,102,99,102,107,95,103,104,107,105,105,103,103,102,103,106,97,107,108,102,102,109,99,118,110,102,102,120,91,108,104,104,103,112,105,100,87,103,91,105,103,97,113,102,108,106,107,114,99,104,102,108,93,111,102,114,100,81,102,102,94,116,112,96,93,98,100,103,100,121,95,91,108,114,104,104,130,115,129,96,92,82,102,103,100,105,110,102,102,100,100,114,96,121,103,106,97,109,104,98,109,113,110,103,103,107,109,105,112,94,122,105,96,102,112,119,104,113,107,107,101,98,109,108,112,102,99,109,99,112,104,102,101,113,113,93,103,104,103,111,111,107,107,100,102,99,102,107,102,105,103,102,111,101,96,103,99,105,105,112,102,105,103,104,95,112,108,108,112,101,98,112,103,94,83,116,105,110,96,123,101,108,93,100,92,106,96,104,99,104,111,115,110,96,110,112,116,111,105,106,103,102,106,110,98,102,95,103,117,105,104,109,105,105,109,102,100,108,105,113,107,96,107,106,91,100,99,102,103,100,104,115,98,105,110,113,104,101,100,92,101,105,106,94,105,106,109,107,107,96,99,104,110,95,104,95,105,109,124,103,90,121,98,116,107,111,114,99,110,95,94,116,110,99,123,103,88,99,99,100,113,111,94,104,122,102,97,117,108,108,101,108,99,106,113,102,112,100,108,108,93,106,112,92,98,103,103,107,115,113,101,114,109,94,106,100,122,103,109,109,112,109,105,113,88,113,105,108,102,102,100,109,101,105,84,101,98,101,120,110,102,101,105,93,110,102,102,101,109,98,106,95,98,99,112,82,103,102,110,103,109,104,107,87,96,93,103,101,112,95,102,99,100,108,115,110,79,90,112,106,106,113,105,103,99,104,101,107,98,98,108,70,97,94,110,88,93,100,100,117,111,97,98,106,100,90,106,108,95,101,104,112,94,125,99,104,114,102,122,97,108,95,103,106,109,103,104,97,95,95,123,106,101,96,101,95,100,102,109,103,107,106,104,106,118,105,102,102,102,107,99,109,100,100,106,98,111,106,108,103,90,106,95,109,104,115,99,119,114,115,100,101,87,106,97,94,113,105,103,111,114,111,106,103,98,100,115,104,100,109,100,110,66,106,114,105,101,100,106,111,107,103,101,98,110,94,99,92,100,96,108,96,100,97,102,105,99,99,104,112,106,103,100,114,116,116,100,104,107,95,88,106,98,103,104,102,102,91,96,110,102,102,108,114,95,112,104,112,94,100,111,104,106,91,107,98,100,106,99,94,119,99,111,84,107,110,97,105,111,99,96,107,104,107,98,109,108,103,90,99,99,105,109,105,105,98,95,101,99,104,104,96,93,94,100,113,112,114,101,103,103,116,105,102,79,96,106,110,105,108,103,96,107,98,106,98,106,105,101,98,111,106,100,107,112,105,98,113,104,102,112,96,116,112,114,104,116,103,95,110,94,103,71,105,98,98,107,93,99,100,95,105,98,105,88,105,99,92,116,103,113,98,99,97,100,106,105,101,93,103,102,105,114,104,120,99,102,112,98,94,98,123,100,108,96,109,96,93,109,100,113, +490.19144,93,98,90,119,108,100,100,100,98,94,87,93,97,106,102,94,112,97,108,101,92,103,98,109,113,88,105,105,90,100,120,110,113,100,110,107,102,97,93,105,98,100,96,90,99,99,98,117,72,96,117,102,102,99,109,93,92,107,100,94,129,107,94,94,99,110,98,104,93,100,114,96,102,98,96,80,105,87,116,109,92,104,98,91,96,103,96,100,96,101,112,94,113,110,99,95,104,96,101,95,96,102,103,96,102,107,99,95,105,124,89,115,112,114,95,102,96,98,102,101,103,102,112,110,113,108,94,96,99,97,96,100,94,91,109,106,109,95,104,105,91,99,94,100,107,110,99,111,99,105,106,107,114,102,105,104,109,107,99,103,101,97,109,121,105,100,104,108,105,106,91,96,118,117,101,109,106,112,94,97,100,102,100,109,101,101,108,96,106,105,102,103,101,95,96,101,111,101,113,108,100,97,90,107,94,101,100,109,101,99,99,100,105,106,100,97,103,110,96,101,117,116,107,103,93,105,106,110,104,112,92,108,110,104,106,108,115,95,105,100,105,88,110,103,98,96,116,102,98,101,105,100,96,101,96,84,113,104,106,102,88,104,102,113,100,103,118,117,104,104,110,103,106,114,107,95,93,104,91,95,105,109,101,108,103,103,104,102,121,102,120,98,105,102,99,108,102,104,112,102,110,98,100,99,111,106,100,105,103,106,93,103,117,109,105,100,94,120,106,104,99,102,107,110,97,102,112,98,119,110,103,104,116,107,100,99,110,98,114,103,101,107,98,87,100,121,97,99,101,100,101,66,103,102,107,121,112,107,89,110,102,105,110,109,92,112,107,102,102,108,108,120,99,123,116,94,112,109,115,103,113,117,100,113,99,99,104,100,107,104,108,102,92,104,99,107,92,102,110,97,102,102,116,118,112,101,102,96,97,96,98,108,113,101,105,98,116,100,97,115,103,98,103,107,105,111,102,98,99,102,98,102,110,101,111,92,117,103,99,102,106,100,108,107,97,103,99,101,95,98,104,94,124,99,97,124,111,107,114,107,97,108,103,110,113,104,106,106,108,94,92,104,105,105,105,107,91,106,104,106,110,108,116,105,106,103,109,102,102,113,112,104,101,108,104,114,103,95,90,101,103,96,114,99,103,100,108,128,107,108,101,129,92,109,96,106,110,109,100,103,114,108,104,99,107,104,101,105,116,114,108,108,103,110,106,106,114,106,105,110,115,99,99,99,111,104,99,107,100,107,115,109,98,105,117,98,113,106,106,113,92,130,100,102,102,102,116,106,101,102,97,91,111,96,102,102,125,91,110,110,104,108,100,101,101,94,70,109,84,114,109,91,97,98,111,99,95,101,112,104,117,103,80,84,88,91,109,114,101,115,104,99,101,105,104,101,109,104,106,108,104,103,103,113,106,111,102,110,101,101,110,111,96,114,96,100,116,108,104,105,114,103,106,105,104,103,108,108,104,104,94,102,106,107,113,101,100,98,112,103,125,108,94,105,95,107,107,105,112,109,102,102,107,106,95,105,103,102,116,99,115,105,100,118,101,110,95,103,100,103,98,102,101,111,114,100,101,118,109,96,99,96,93,107,99,104,95,102,103,98,109,109,102,99,99,104,73,101,110,108,103,100,104,108,98,99,109,105,100,103,101,94,107,113,111,105,118,99,116,101,109,109,117,105,103,105,101,109,102,113,116,106,100,98,108,108,105,100,104,100,116,95,102,110,112,101,99,105,103,111,102,99,104,99,113,106,113,100,106,112,114,125,114,104,99,110,116,121,109,101,105,111,107,114,95,133,101,101,103,104,99,103,102,91,101,109,103,112,127,104,116,105,100,93,107,109,129,105,109,113,104,111,109,100,100,96,107,104,103,108,113,104,109,112,114,111,97,113,103,113,104,109,104,117,105,104,110,111,101,96,109,92,108,109,102,106,111,103,105,99,103,101,104,108,98,99,101,108,116,82,107,102,100,104,104,110,100,110,100,101,121,106,95,108,99,103,105,103,110,109,113,110,107,103,111,95,105,108,126,111,104,112,107,111,113,96,91,106,103,96,121,103,108,100,103,100,100,109,107,113,113,112,109,106,100,102,100,106,129,99,99,118,108,112,114,98,112,104,109,101,109,108,96,111,101,107,93,96,85,104,106,104,108,112,109,106,114,78,101,95,119,114,101,95,114,99,77,113,102,91,118,107,102,110,112,105,104,107,103,102,113,110,103,107,105,102,101,105,95,102,103,103,107,94,101,104,113,100,95,104,124,104,107,102,103,104,104,97,102,103,95,111,102,113,105,112,113,94,108,121,102,112,107,101,103,102,112,107,103,105,100,96,104,99,102,109,104,106,102,99,102,112,129,110,108,103,103,106,103,117,98,111,107,97,99,110,100,103,103,100,99,106,115,97,94,103,99,104,98,106,96,110,106,110,98,109,103,111,101,108,92,98,101,105,108,107,94,101,103,111,97,96,100,94,105,110,95,102,103,117,120,100,103,103,106,114,106,93,105,106,98,114,118,103,109,98,117,107,95,104,95,99,94,89,100,110,113,107,95,100,107,115,106,97,97,113,97,83,105,103,112,92,95,105,102,90,104,113,115,103,112,90,129,102,101,102,101,116,102,105,103,97,118,105,100,106,91,114,121,97,102,93,109,119,106,94,96,95,107,99,109,100,108,100,97,100,98,107,113,112,94,102,109,103,98,115,110,98,99,109,96,129,79,96,103,91,106,109,101,105,85,98,106,102,114,108,102,98,95,87,109,110,100,109,105,101,73,107,103,107,105,105,135,109,110,98,112,100,102,108,94,103,114,96,97,108,119,93,103,103,113,95,112,99,106,100,100,95,84,113,115,104,105,116,98,105,107,110,87,111,113,97,105,126,102,107,108,103,89,115,78,106,104,104,104,101,97,108,108,102,103,109,116,103,111,102,109,101,93,104,102,100,95,109,103,93,117,111,97,104,106,116,110,103,103,110,105,105,99,103,105,105,106,98,107,85,92,106,99,113,100,99,104,102,118,114,101,109,97,105,99,109,112,104,94,104,110,107,101,113,103,111,101,105,104,89,105,102,109,99,114,108,101,107,109,104,112,108,105,109,93,96,102,108,108,94,99,109,99,102,89,96,104,99,108,98,105,94,103,104,104,95,112,105,112,118,100,91,109,109,93,72,107,113,97,112,103,104,114,105,104,93,97,95,102,98,108,111,108,107,104,105,83,95,99,106,101,93,113,102,105,104,108,99,102,93,98,100,98,96,96,98,107,105,96,96,88,106,87,92,93,98,98,103,101,106,106,102,101,127,99,111,89,96,84,111,103,110,103,104,103,98,108,98,86,103,96,91,114,108,97,105,98,108,95,104,102,94,96,101,105,83,100,103,101,107,108,95,121,89,95,99,103,105,102,96,113,97,104,113,128,98,117,100,94,112,94,103,107,102,108,113,86,92,96,106,118,102,98,92,110,102,112,95,117,105,111,101,100,102,102,98,90,100,104,110,96,101,98,104,98,109,109,106,103,112,102,103,100,105,104,109,105,103,70,109,112,96,88,103,106,100,109,103,102,104,101,100,96,100,107,107,96,123,102,105,109,105,108,95,104,108,104,88,104,84,111,115,107,109,100,115,113,99,105,101,98,113,108,116,103,112,94,118,95,101,99,98,108,104,102,113,108,114,104,102,92,101,116,100,110,97,109,100,110,106,104,98,99,101,98,101,107,90,106,94,101,107,105,115,110,105,111,97,108,97,107,100,105,108,108,108,101,105,102,94,107,92,103,104,121,104,105,98,107,113,109,112,112,110,114,99,109,108,116,89,107,100,105,106,101,110,105,106,79,103,75,95,93,110,93,101,87,100,112,98,96,98,99,111,103,114,96,106,108,100,105,102,88,113,101,112,104,102,107,100,107,98,86,93,104,107,103,113,107,111,109,109,106,96,96,104,105,109,101,104,103,110,103,99,101,95,107,104,110,101,99,102,106,107,100,100,88,110,109,89,102,96,106,100,115,105,109,98,102,85,124,92,113,104,103,83,95,109,104,115,97,101,109,112,106,98,106,97,100,110,110,107,103,102,103,104,120,98,105,99,98,91,106,112,94,100,103,100,99,105,113,101,94,106,100,96,95,110,102,106,101,100,108,106,117,105,103,110,96,96,100,101,101,94,110,96,109,93,95,102,117,108,116,103,106,102,105,99,105,99,107,110,93,102,99,96,98,80,96,105,94,91,113,95,98,99,112,99,84,106,91,101,109,113,112,81,101,103,97,103,102,101,116,85,103,109,109,103,106,100,98,105,95,114,103,100,103,108,105,94,99,106,113,100,106,104,97,101,107,103,101,117,108,100,103,116,109,112,109,105,100,104,94,101,98,115,99,116,102,100,95,113,109,98,117,101,106,110,111,115,92,106,99,98,120,99,103,86,106,110,107,100,79,107,105,99,111,92,105,97,107,101,103,106,97,105,102,95,84,112,109,95,102,106,114,96,87,93,110,100,112,112,101,100,99,94,93,105,98,100,85,102,106,100,103,98,110,98,94,108,93,106,114,103,94,102,108,106,111,104,114,98,99,101,103,103,98,114,102,107,105,98,111,111,87,105,100,105,99,108,104,101,96,83,99,88,96,97,100,106,96,91,105,97,83,87,109,96,91,97,102,94,104,105,96,95,100,106,92,102,113,106,99,91,106,104,112,96,93,98,109,118,92,81,96,98,102,94,104,104,107,95,101,100,112,105,107,94,95,103,107,101,104,88,100,99,100,117,97,93,116,87,97,92,91,90,123,103,101,85,91,113,98,97,106,105,101,102,111,99,97,87,103,109,95,92,102,105,105,97,118,93,110,99,106,84,97,90,113,95,95,87,112,105,110,97,105,91,107,110,101,85,68,58, +490.332,108,98,98,72,88,100,104,96,77,104,92,102,97,94,117,96,93,102,95,99,60,105,107,110,105,106,112,105,96,100,106,87,116,117,100,105,112,97,103,101,111,104,98,98,95,105,112,113,103,99,90,109,93,104,109,101,105,101,99,87,101,118,102,82,96,112,107,109,100,99,94,106,90,101,93,108,98,102,104,107,108,86,101,93,104,108,99,99,95,86,104,103,101,102,111,88,102,104,110,105,110,106,94,100,83,109,108,95,103,105,104,99,104,112,99,88,109,116,105,112,93,101,99,109,107,108,103,100,111,96,112,119,98,117,108,115,98,91,101,90,110,99,97,101,104,96,100,86,102,106,101,91,110,103,99,114,105,107,92,101,100,109,115,111,99,100,105,95,114,102,98,101,110,105,112,96,107,108,106,99,108,103,104,110,101,96,109,90,106,100,81,111,111,107,102,108,110,106,111,90,99,101,94,84,115,95,114,115,114,104,98,107,106,97,120,98,92,90,127,101,106,102,99,106,109,112,103,104,111,112,110,102,100,118,114,104,98,103,95,101,104,107,112,96,103,89,112,106,109,98,97,100,95,116,101,97,103,98,103,109,91,101,93,102,99,100,93,100,106,101,103,113,99,116,113,104,111,119,104,92,92,105,90,101,105,112,96,110,99,108,95,110,120,105,109,107,104,106,113,117,97,110,104,105,104,116,105,99,113,107,108,110,105,103,106,107,99,106,100,101,111,101,111,111,121,106,95,104,99,96,71,97,108,118,109,103,105,103,104,91,90,112,107,91,100,98,106,108,103,104,107,108,102,103,98,106,103,111,106,99,107,89,106,104,101,103,96,111,104,109,112,113,101,105,104,110,111,100,105,103,107,102,103,116,98,106,99,104,115,91,114,99,101,103,105,102,100,130,101,109,102,103,103,87,101,100,95,99,104,97,116,93,97,96,89,98,108,113,109,110,104,114,97,108,107,85,115,94,99,118,94,106,102,100,103,99,100,101,98,105,98,99,109,101,97,98,97,103,95,114,95,109,108,102,109,99,100,114,112,106,98,95,106,113,110,108,104,90,102,97,106,111,94,97,97,103,100,107,108,93,93,109,113,100,105,97,100,112,108,98,86,110,108,99,104,106,103,113,90,105,99,103,95,96,100,100,108,99,108,108,102,113,105,101,109,118,102,91,107,104,106,105,97,121,112,110,105,108,126,105,103,108,95,83,109,99,109,100,75,111,97,121,106,106,121,99,98,113,103,108,107,106,103,107,103,117,118,93,108,100,103,104,96,102,99,110,114,106,106,77,88,100,108,97,107,118,104,101,102,109,109,98,93,101,91,112,119,66,103,96,98,111,95,123,110,111,104,104,103,107,98,102,105,101,119,104,94,118,117,95,112,106,99,107,104,104,102,104,107,120,111,115,97,112,103,106,101,114,99,113,120,91,108,92,91,104,111,99,86,106,107,103,103,102,104,101,105,109,113,70,87,91,105,127,105,111,98,107,100,100,109,102,102,108,97,108,105,100,111,106,110,101,93,118,103,110,99,104,115,103,101,117,111,110,112,104,95,115,102,107,108,126,91,116,108,105,99,96,102,107,100,104,104,119,101,105,111,116,99,102,114,98,108,99,92,104,113,94,112,113,108,104,110,107,118,103,95,112,111,95,107,111,95,100,99,108,110,108,99,107,108,102,107,108,105,94,110,98,110,106,96,89,104,104,134,109,101,103,111,104,106,100,99,91,106,105,94,102,100,98,112,106,110,107,104,107,109,106,89,104,110,101,112,125,100,99,109,102,108,85,112,103,114,112,100,120,96,113,107,100,94,108,92,104,116,94,97,102,111,108,109,102,97,104,107,100,106,102,112,108,99,99,105,107,95,105,123,99,110,103,110,101,103,98,107,107,112,100,115,96,105,106,109,125,99,116,110,113,98,89,100,104,110,110,101,92,113,99,105,103,107,108,105,104,109,98,92,100,91,104,100,106,98,95,107,94,104,102,91,97,98,103,99,101,102,107,104,109,108,115,103,107,124,113,106,110,102,115,100,105,103,106,100,102,102,110,114,105,112,105,94,115,105,123,111,101,95,116,99,98,104,109,113,108,115,89,99,112,99,110,95,106,105,102,98,102,101,96,94,118,101,108,110,105,96,94,100,96,95,108,106,101,113,94,110,108,95,102,98,98,111,104,101,101,105,96,110,102,94,108,105,116,98,95,92,102,95,94,99,99,94,94,114,110,109,97,93,96,109,105,102,116,106,96,94,101,83,109,107,94,99,104,113,100,102,103,93,127,94,101,105,107,99,91,101,102,97,106,99,94,108,113,104,100,108,109,88,96,83,97,111,108,108,112,99,99,116,102,106,99,97,99,92,113,93,98,113,93,102,96,95,109,108,110,100,110,100,82,103,110,94,97,109,94,98,96,106,109,105,105,106,108,102,99,98,110,108,113,107,96,104,92,106,105,115,98,107,109,113,102,108,97,114,87,104,100,109,85,91,96,110,99,113,100,117,97,95,86,103,115,102,119,104,109,114,98,96,107,107,109,86,114,100,110,111,113,103,79,121,101,97,114,95,91,108,99,94,100,102,109,103,98,102,105,96,99,103,112,120,106,125,121,119,104,91,103,111,105,103,117,105,106,103,108,108,108,103,99,123,100,99,102,116,85,103,116,101,111,124,94,112,110,109,119,109,109,101,91,85,102,112,105,116,102,99,112,102,97,101,104,114,108,108,108,117,113,130,122,109,109,96,108,99,107,105,104,102,109,106,99,114,102,107,98,110,112,90,106,110,105,90,88,97,94,99,101,105,112,98,108,103,100,109,103,110,105,99,106,112,107,108,104,107,102,103,114,91,88,100,116,103,93,119,108,109,101,110,103,96,111,100,109,99,109,106,101,101,117,116,109,112,91,100,97,112,108,101,101,105,110,109,106,113,100,96,99,115,104,89,109,117,104,109,104,106,105,120,108,96,97,106,105,101,110,113,109,114,101,109,104,101,108,105,108,99,104,97,117,101,101,108,105,96,108,111,94,110,108,98,128,98,118,109,80,104,109,109,116,110,102,92,101,115,98,101,105,94,99,113,103,114,112,105,91,102,104,107,114,98,112,94,108,92,107,112,107,99,124,102,116,83,102,113,107,114,104,112,107,99,112,103,97,104,106,103,100,107,97,95,114,100,100,112,106,103,98,114,97,119,97,119,102,95,95,105,100,105,94,107,99,98,113,109,102,109,104,115,103,101,102,105,95,80,117,108,107,99,122,107,69,104,99,103,97,105,94,98,96,97,118,95,90,115,109,93,100,116,95,105,106,96,104,98,110,108,110,114,103,109,105,102,107,103,91,100,101,107,115,107,103,97,110,96,105,101,101,103,95,121,101,98,92,123,113,89,107,108,109,96,98,90,121,109,108,109,92,110,104,101,112,98,101,121,99,95,116,109,104,105,101,103,108,93,99,106,94,111,115,108,105,101,100,102,95,113,102,89,112,118,109,104,96,106,107,91,102,109,104,114,114,121,110,103,114,94,107,112,109,115,103,97,110,112,101,112,110,104,100,101,113,120,98,91,107,106,112,104,98,105,98,108,111,105,105,109,108,108,99,106,92,94,109,96,104,116,85,87,106,111,106,99,102,107,119,99,112,106,120,101,99,95,94,119,116,99,92,113,106,97,99,115,116,102,104,92,108,104,92,101,94,120,93,104,102,104,107,109,98,106,106,96,101,105,94,105,118,110,105,104,95,107,101,100,102,107,95,106,117,112,107,118,95,103,100,106,104,104,107,106,101,104,106,105,98,121,103,94,92,104,121,106,115,118,99,94,111,92,100,101,108,108,106,108,106,84,94,112,88,111,100,94,119,117,98,105,90,110,121,102,90,100,109,101,100,103,93,107,90,101,111,95,107,105,100,116,97,105,103,100,106,105,105,109,96,104,111,106,105,112,104,102,105,98,112,95,95,103,101,93,102,98,105,113,119,116,105,97,113,103,109,103,109,95,100,103,97,93,99,107,110,116,105,105,102,105,106,114,103,100,95,98,110,113,97,114,105,106,110,107,107,101,97,108,122,103,104,102,108,92,98,107,107,104,101,95,104,90,117,102,95,108,111,93,92,90,108,108,108,113,94,99,101,96,105,104,108,108,93,109,98,133,121,95,91,106,95,112,112,102,103,100,110,103,109,88,107,90,109,111,110,103,103,119,99,112,122,116,109,110,107,109,107,97,110,97,108,105,106,109,98,119,92,108,105,109,98,96,104,109,102,101,105,108,102,108,105,115,98,105,94,83,102,99,107,96,99,103,105,100,96,109,124,104,101,104,108,69,95,108,93,110,94,97,108,98,95,109,100,109,99,98,98,110,115,100,100,107,102,91,92,98,113,102,99,105,110,113,117,87,95,103,100,98,89,88,107,99,104,103,104,107,95,101,104,102,110,98,109,106,103,94,103,103,126,102,100,99,112,111,93,99,102,96,102,116,112,112,102,111,91,96,109,105,106,97,103,97,110,104,106,107,104,89,101,94,101,102,113,102,110,95,110,104,92,105,102,99,106,104,109,102,94,89,112,93,110,101,101,99,103,105,101,124,101,99,105,108,106,94,117,105,102,99,110,102,97,103,112,96,132,98,103,99,100,103,125,108,109,113,75,98,104,104,99,100,98,93,107,80,99,97,105,105,107,105,95,107,107,109,94,106,108,101,94,106,95,105,100,96,103,105,101,103,105,108,107,99,98,110,103,118,99,101,98,104,97,106,106,102,83,104,101,98,95,104,107,132,97,83,109,105,93,99,96,100,100,102,83,112,112,96,96,89,104,100,98,91,103,102,92,111,124,107,105,77,106,96,98,98,103,105,118,99,91,103,109,103,104,100,112,102,91,109,98,71,96,94,102,99,97, +490.4726,115,90,89,113,85,87,113,101,99,102,104,112,104,86,110,90,106,109,98,96,94,101,101,101,101,105,103,100,102,103,111,113,100,106,122,100,106,115,95,80,95,99,91,114,92,112,106,96,113,114,116,83,109,99,109,99,102,93,98,103,93,113,98,102,111,86,107,106,99,98,110,109,83,107,102,109,101,104,107,108,109,109,103,100,105,103,98,106,121,100,101,83,104,110,101,100,97,91,96,108,121,99,104,101,103,112,107,108,108,114,107,88,103,106,101,110,90,106,117,103,104,89,106,117,109,95,105,91,97,105,98,98,102,105,97,97,107,120,111,88,95,104,99,110,87,102,110,109,91,100,109,105,94,105,91,106,108,103,99,100,96,107,105,96,101,105,106,98,105,114,104,95,110,112,113,104,110,95,95,103,107,97,98,109,101,112,102,82,102,105,101,104,112,105,117,100,104,101,100,109,110,103,98,105,103,95,99,97,112,107,99,98,105,100,99,109,115,106,94,95,105,105,108,91,108,111,105,114,103,107,101,95,106,113,106,107,101,123,100,99,100,97,107,99,93,106,95,98,95,93,113,99,102,107,94,102,91,101,107,109,106,97,93,116,98,104,99,100,105,97,109,101,105,90,112,99,99,102,92,92,101,76,109,90,116,100,113,102,100,102,110,102,112,110,113,106,95,99,107,105,97,94,91,113,96,114,106,97,104,111,117,112,109,99,93,86,99,107,94,94,107,95,97,97,100,107,86,107,104,118,101,106,99,93,105,101,113,87,102,92,101,96,103,100,103,100,112,96,107,105,100,90,111,103,99,104,94,108,112,99,109,88,94,93,98,90,103,113,94,106,109,102,115,100,105,110,122,104,105,105,104,105,114,108,112,100,102,101,101,106,95,93,94,98,101,96,99,110,99,107,98,103,106,111,102,101,105,86,88,94,102,106,96,100,105,94,105,98,116,102,95,102,93,115,112,100,103,86,97,114,106,102,110,93,113,106,101,104,95,103,106,94,94,99,107,103,108,119,109,110,102,87,111,116,107,111,99,92,114,99,117,94,99,105,104,107,98,106,109,99,101,98,88,100,107,100,103,105,113,101,101,110,107,111,114,101,100,94,94,93,91,105,108,106,95,114,108,109,114,103,109,94,111,103,100,111,102,95,100,99,104,113,109,108,110,113,99,108,110,99,98,110,98,105,112,103,96,117,107,98,90,105,108,113,99,113,94,110,84,111,104,116,100,107,109,111,100,117,107,101,108,112,127,120,92,113,99,89,106,109,90,107,103,107,103,102,110,106,116,103,101,100,109,107,102,102,92,100,102,109,117,103,106,92,92,103,101,105,98,98,113,105,108,118,103,97,95,108,99,110,108,111,117,113,102,112,100,118,95,109,111,124,108,108,111,92,88,99,101,109,130,105,105,101,113,112,117,102,100,104,98,115,95,91,86,106,98,102,114,101,117,105,109,101,105,97,102,102,111,103,101,99,97,108,97,107,106,103,113,112,103,107,105,107,112,108,109,92,103,112,94,113,100,98,112,105,108,121,106,93,112,112,106,114,99,114,97,105,103,88,114,98,95,104,91,98,108,110,100,97,95,119,103,109,100,122,100,110,105,102,115,108,86,112,103,117,115,101,98,103,104,113,95,102,106,97,113,109,114,127,119,113,112,100,88,93,115,100,105,119,108,93,112,105,107,108,95,125,90,109,115,103,105,110,109,98,103,102,98,87,103,87,95,101,109,108,99,112,104,101,110,107,121,96,101,115,96,77,105,106,119,100,114,106,107,105,102,104,92,116,108,108,111,102,99,98,100,96,113,117,104,104,94,108,108,109,105,107,120,99,114,96,118,104,104,113,108,113,104,100,102,105,115,110,117,98,112,106,104,99,120,98,113,101,117,111,119,116,116,100,102,112,102,108,72,97,94,93,96,110,125,103,102,105,95,90,113,96,100,104,104,100,106,97,69,100,92,97,102,110,107,94,95,114,94,102,99,106,110,108,116,113,104,87,104,104,104,116,103,104,97,112,92,97,104,104,109,102,110,108,86,103,108,100,100,97,104,105,104,98,105,109,102,102,109,94,106,111,109,113,101,102,113,106,99,113,98,99,112,103,92,98,114,113,102,98,102,101,104,109,116,111,103,112,104,108,111,87,99,106,114,107,106,113,104,103,105,106,113,100,112,106,103,89,107,104,109,108,98,79,101,108,99,109,91,108,98,91,88,99,101,106,112,87,100,99,83,105,100,97,112,88,108,102,112,98,93,118,104,91,114,81,109,118,104,95,114,108,106,96,97,112,105,100,100,105,87,114,106,100,107,102,108,97,105,107,99,107,96,96,98,106,103,99,103,92,95,110,102,109,114,92,84,83,110,100,108,117,99,92,103,101,107,109,100,102,103,107,109,105,99,105,97,105,102,107,100,102,101,101,97,106,98,107,98,109,104,108,104,125,105,105,93,116,106,105,101,105,111,82,111,106,109,91,101,110,119,99,104,112,103,98,108,104,113,107,107,107,97,113,102,102,114,100,104,106,102,97,103,110,115,105,110,108,98,94,105,117,111,106,104,102,94,95,96,97,107,111,101,97,106,96,104,89,98,101,114,101,105,93,106,102,109,98,104,106,109,106,109,116,108,100,107,93,102,114,99,91,113,115,105,111,101,109,109,95,102,101,109,108,108,122,84,97,108,102,121,101,101,104,106,109,112,104,106,105,109,103,101,97,98,110,110,105,101,112,110,100,112,105,106,110,104,121,108,114,98,106,99,104,100,114,98,92,111,96,78,113,113,120,97,104,95,97,103,110,108,113,105,119,98,111,103,94,97,102,101,112,105,115,106,108,110,104,99,102,105,104,97,112,105,94,101,115,99,89,98,118,104,112,102,104,113,119,102,104,98,103,103,116,116,110,103,98,113,97,92,91,103,110,112,110,103,105,97,107,112,101,119,99,98,117,100,96,109,108,94,102,96,106,106,95,113,96,99,111,100,100,109,103,101,104,109,101,117,91,109,113,101,112,110,113,103,111,95,112,96,104,110,107,104,108,95,106,90,95,115,102,108,105,100,109,107,115,90,99,111,118,109,103,106,109,112,89,111,106,110,98,104,96,111,101,105,103,99,95,93,105,93,103,103,110,95,116,111,87,108,105,105,105,110,99,110,108,110,100,99,103,108,104,103,96,97,77,106,104,108,106,112,93,114,112,89,101,105,98,107,109,91,109,114,101,92,111,111,98,103,103,108,102,109,109,106,108,106,99,121,110,106,101,105,99,104,100,120,82,93,109,107,109,96,97,101,96,108,106,91,109,116,110,97,109,111,101,113,113,97,103,104,95,119,109,114,99,106,119,109,123,103,94,108,97,98,102,96,106,109,102,94,95,103,102,113,108,85,100,106,95,109,119,100,101,96,97,101,101,104,111,95,105,92,99,102,106,101,114,117,108,66,109,106,96,113,110,102,110,111,103,102,101,106,103,104,92,102,99,105,116,98,103,95,101,94,106,106,115,103,113,90,102,109,104,101,99,101,102,122,109,95,97,98,109,105,104,96,103,103,105,106,111,110,106,109,108,117,105,107,107,113,105,109,104,109,116,113,105,108,96,102,111,99,110,110,109,102,110,106,109,104,100,102,108,105,116,93,108,95,104,105,102,111,103,113,110,103,105,104,95,113,110,102,81,99,111,111,99,109,105,100,97,100,108,107,105,121,96,98,110,99,100,102,100,82,94,102,102,112,100,104,109,99,139,96,104,98,99,113,110,105,102,98,107,101,109,102,98,104,101,124,106,89,114,109,106,104,109,93,106,100,106,121,108,94,103,106,107,128,99,117,114,101,117,116,110,102,112,125,99,104,92,100,115,104,103,98,98,106,117,104,100,97,111,116,103,113,98,82,98,105,125,105,99,114,110,96,105,116,103,102,95,99,108,112,102,101,108,108,105,114,99,106,94,105,116,100,106,105,99,100,104,105,108,97,107,103,122,108,105,117,101,118,106,106,110,108,103,95,97,107,120,106,97,121,99,101,100,101,98,101,117,113,102,104,89,102,112,114,116,109,106,107,87,95,103,106,106,87,98,96,83,100,121,108,106,111,115,112,100,98,103,108,102,109,110,97,108,108,100,109,94,106,97,100,111,113,102,116,105,110,103,127,103,109,106,117,113,105,105,108,90,112,105,109,107,104,106,109,99,110,101,82,110,101,111,105,105,101,95,112,109,96,95,99,109,87,103,105,106,109,96,102,103,103,104,97,95,100,96,101,108,110,102,104,112,107,105,117,81,114,107,109,104,109,99,102,113,98,93,103,110,107,98,101,111,105,110,104,109,105,109,110,98,93,104,101,103,118,106,106,107,117,91,109,103,104,104,102,102,114,101,106,108,103,112,95,99,122,109,105,109,105,101,106,110,108,97,100,110,111,94,114,101,115,108,110,91,103,102,98,92,123,120,102,94,112,103,101,104,107,95,111,101,114,111,109,115,85,99,105,129,107,102,100,112,111,98,106,106,108,105,107,98,100,99,105,113,111,111,106,97,112,106,111,113,109,99,92,98,111,100,98,106,106,106,97,109,100,105,82,96,108,100,99,100,122,111,85,110,100,108,108,97,110,115,108,98,94,130,101,103,99,105,105,100,105,106,116,119,100,101,94,114,108,106,107,119,107,106,98,117,102,100,117,90,120,106,104,111,108,103,113,110,106,105,119,103,105,103,109,87,97,91,113,99,103,107,109,97,93,103,110,112,108,105,100,97,109,115,106,101,86,115,105,102,104,103,115,103,104,109,104,112,94,102,100,96,112,102,97,100,111,88,96,87,113,100,108,104,127,101,115,106,109,101,101,96,96,103,117,101,100,117,96,97,109,108,89,111,99,104,122,108,97,116,135,100,105,100,100,120, +490.61319,125,92,71,105,99,101,103,106,96,100,83,106,90,78,123,93,99,108,103,108,121,74,103,101,102,98,93,101,109,91,105,96,98,117,107,104,109,108,104,110,100,102,98,103,97,118,102,104,102,106,103,119,109,95,104,109,101,103,125,101,108,106,104,102,100,102,98,100,113,95,109,98,94,110,95,118,100,91,101,103,89,102,101,100,100,109,97,112,106,106,111,100,102,101,105,109,103,124,96,99,92,90,114,98,100,109,75,105,102,101,105,95,110,109,108,96,98,103,93,101,112,93,92,88,113,108,100,100,114,107,107,105,100,98,104,97,94,103,99,103,113,105,95,114,97,103,119,100,101,97,104,93,76,108,95,100,92,98,100,101,97,100,95,96,98,113,104,109,99,99,100,106,124,103,92,101,100,96,105,111,122,120,105,115,106,93,105,100,87,105,109,102,106,100,103,108,100,100,100,116,78,105,92,110,108,102,98,83,102,100,96,94,99,97,95,99,130,111,99,109,106,109,111,96,103,126,103,107,100,102,99,104,96,105,104,113,103,131,102,96,102,121,102,96,104,106,85,106,103,98,106,99,104,105,102,110,100,103,93,100,103,94,95,93,96,89,137,101,108,98,95,96,115,104,104,107,99,107,100,101,103,103,96,109,90,100,107,99,106,103,90,109,109,100,105,105,102,102,105,111,97,117,105,106,104,116,102,103,103,108,93,116,103,102,115,101,109,118,95,110,97,103,109,102,100,104,109,97,104,106,116,98,97,99,110,99,110,96,111,105,109,115,97,101,106,104,106,107,93,99,105,111,114,102,112,97,111,103,104,89,108,80,98,104,111,108,100,96,96,90,104,104,101,104,104,115,108,106,99,99,116,113,105,94,80,100,92,107,110,87,122,99,102,101,96,96,101,97,112,108,95,99,100,73,92,96,105,105,100,106,103,118,105,97,103,105,97,81,93,99,91,98,98,105,102,102,102,118,106,112,102,94,95,108,109,102,102,114,99,118,105,100,103,105,96,109,112,92,106,100,100,109,115,117,102,112,104,91,114,106,94,97,96,109,107,108,94,120,105,74,104,111,104,106,98,104,104,100,113,99,101,108,104,99,104,112,111,111,108,106,112,96,102,106,98,97,102,98,98,91,117,95,101,112,107,100,100,102,109,96,106,118,105,105,107,102,107,95,101,104,91,96,110,91,112,120,101,100,75,100,88,107,102,119,115,105,99,94,108,107,102,104,100,112,113,110,109,104,106,103,99,110,101,98,96,102,110,88,102,109,104,96,102,93,100,107,111,97,99,103,91,92,107,94,96,88,112,100,96,109,111,101,113,109,114,105,109,102,91,97,105,103,100,91,104,113,94,80,100,100,102,107,107,99,92,105,105,98,91,107,100,117,113,92,104,104,107,102,96,97,105,112,100,112,109,99,95,98,95,104,109,108,102,104,113,104,113,103,114,102,107,104,110,109,93,99,105,108,105,101,95,103,84,106,100,106,110,95,109,104,92,117,109,102,104,106,68,95,101,100,113,96,98,97,101,101,105,99,101,109,107,103,104,105,86,116,100,100,100,94,93,100,95,101,90,105,101,99,102,94,98,106,101,119,111,102,102,106,109,97,94,100,98,96,100,93,94,102,100,108,102,115,101,98,109,101,99,113,103,111,99,104,105,100,104,81,119,98,94,89,102,76,92,97,98,101,105,107,108,97,112,109,104,98,117,103,104,102,107,98,117,104,103,108,97,108,99,109,121,111,93,114,108,107,109,104,102,102,106,111,113,110,97,102,97,120,113,111,104,121,105,112,104,112,114,114,110,97,101,103,104,108,117,99,120,108,100,101,112,118,119,103,119,103,102,111,103,105,90,106,102,109,113,121,91,90,106,108,109,94,98,101,103,105,109,105,118,106,98,96,117,99,111,108,114,107,91,90,107,96,100,95,106,118,107,100,104,114,102,102,105,108,106,96,91,104,103,96,92,109,106,98,106,101,103,106,113,73,111,111,101,104,112,99,98,114,104,104,99,109,102,120,111,104,120,108,100,93,101,101,102,114,106,101,99,87,101,99,108,99,102,103,102,106,105,107,102,105,99,91,113,104,95,122,108,96,104,117,103,106,100,99,104,104,101,106,87,126,103,111,96,107,102,104,93,83,99,93,109,88,95,99,121,110,114,105,101,108,101,107,106,95,111,95,100,106,107,98,109,95,108,100,90,101,96,108,95,88,92,103,109,104,107,96,99,100,100,102,102,101,104,112,113,103,114,105,91,101,90,96,109,107,95,98,107,98,112,97,99,114,89,102,103,120,104,90,97,88,108,89,105,99,104,99,98,112,103,108,105,98,104,104,105,108,107,98,112,106,94,106,94,109,96,110,91,102,108,105,99,94,80,98,109,105,107,109,95,104,93,111,98,121,90,100,104,104,111,113,99,101,86,108,109,103,111,100,107,95,107,104,105,118,101,100,87,102,102,98,98,111,109,109,108,104,108,109,99,111,92,101,110,114,104,100,102,113,94,103,108,103,111,113,101,111,111,96,94,101,102,109,101,112,77,97,107,120,109,105,106,106,100,97,112,114,94,120,102,103,97,92,108,101,100,99,117,94,109,114,109,100,94,107,114,111,101,109,91,117,111,109,115,94,106,104,103,105,94,111,107,98,99,98,108,115,94,102,99,83,116,110,108,99,115,108,105,115,107,114,106,118,99,105,110,100,100,120,87,100,109,108,107,108,103,107,114,126,96,102,116,101,106,109,103,107,98,107,110,114,79,96,106,115,108,102,105,108,108,107,95,112,108,108,101,117,106,99,107,111,107,98,96,110,102,95,102,101,111,104,89,113,110,106,114,104,104,89,99,117,109,121,111,106,105,105,114,103,103,97,107,112,105,104,116,103,99,94,116,109,112,95,97,112,113,118,105,100,102,119,93,103,110,120,108,100,110,113,109,111,102,116,103,101,119,103,113,119,77,111,96,113,111,108,107,116,112,108,95,116,113,108,107,95,89,111,111,123,102,106,97,105,99,113,109,111,104,99,111,108,108,100,98,101,108,113,97,103,116,91,101,101,101,111,111,114,111,108,110,104,107,98,122,108,105,98,117,104,100,103,122,100,108,106,102,111,117,102,106,98,100,107,104,94,93,103,104,116,103,112,77,110,89,108,103,98,108,108,100,101,111,108,112,101,96,101,93,100,105,108,115,110,103,102,104,96,98,94,99,108,115,117,107,95,90,110,100,123,98,96,106,105,100,99,111,104,106,107,108,109,105,100,76,108,106,113,103,98,97,110,93,101,109,96,101,126,105,109,108,105,106,102,103,111,103,91,106,113,114,92,99,102,97,116,110,120,102,123,97,101,107,70,102,100,104,98,64,101,111,106,104,96,99,101,97,115,98,102,108,97,108,90,105,95,115,105,93,98,102,109,101,109,112,101,100,103,114,98,98,100,104,99,107,102,112,100,98,84,108,104,96,105,103,106,104,99,99,109,110,104,103,102,99,100,115,112,103,104,107,102,109,99,111,108,108,106,98,104,108,120,105,100,109,101,105,100,111,87,105,104,104,110,109,99,106,109,102,103,115,97,97,102,122,98,96,102,103,108,96,113,98,100,102,98,109,100,104,108,101,98,105,101,107,109,103,104,108,92,109,98,95,100,107,110,102,103,106,120,81,92,100,104,105,123,98,107,109,100,109,104,102,98,111,105,114,100,112,105,113,104,108,94,107,112,93,99,99,116,106,97,94,109,110,102,112,108,117,116,119,104,109,104,103,101,111,105,98,109,109,108,103,103,109,106,102,82,102,102,102,102,100,100,113,100,121,99,102,105,105,107,108,109,106,102,103,108,103,118,106,95,115,105,92,104,119,92,106,103,99,100,108,102,98,90,104,116,85,95,95,115,109,102,102,112,103,99,96,102,107,104,90,99,105,95,103,106,101,99,102,104,104,99,91,116,96,112,106,113,117,101,96,102,108,106,107,109,97,100,99,98,101,100,106,90,113,100,119,84,106,112,94,105,103,102,101,108,111,124,107,102,118,107,103,135,91,105,107,111,106,115,110,98,121,105,101,100,103,106,114,106,115,108,107,103,106,108,100,107,97,110,102,106,107,122,113,108,109,109,100,118,116,102,107,102,111,97,96,111,98,110,104,98,111,98,106,104,105,103,106,115,96,95,103,107,98,99,107,109,113,108,105,118,94,103,107,100,112,93,100,108,99,103,112,99,109,103,103,111,103,104,108,104,103,95,99,107,110,104,102,111,104,108,120,105,109,104,103,111,99,98,100,109,104,106,110,102,106,99,102,100,111,106,107,79,100,125,106,98,99,106,109,99,104,86,83,103,106,118,106,85,109,106,103,104,121,104,106,108,113,110,96,105,105,108,112,111,99,118,105,108,111,114,107,94,105,126,102,108,102,74,101,91,103,102,91,113,90,100,105,110,107,109,107,113,110,114,80,91,92,91,102,99,115,115,111,102,106,107,106,96,103,83,108,112,100,98,112,102,103,94,98,100,106,94,103,102,102,113,115,100,108,102,108,111,108,98,113,117,106,100,100,102,106,102,97,115,105,90,111,105,101,100,114,102,106,100,113,105,98,96,107,99,94,110,109,102,102,108,112,116,104,112,95,102,94,90,112,105,106,100,111,111,88,100,97,109,88,108,97,104,109,104,90,104,106,102,115,100,106,102,107,104,89,99,103,96,109,108,100,91,105,98,90,97,97,99,100,108,105,105,113,108,103,86,119,98,96,107,94,101,96,114,90,110,96,97,96,120,114,105,97,110,117,94,104,97,98,79,102,95,112,101,109,123,99,88,108,104,109,93,103,93,98,109,87,114,108,114,90,106,107,102,114,99,100,112,92,95,96,110,106,85,109,106,94,97,99,102,105,91,99,109, +490.75375,114,84,101,84,105,96,116,71,107,108,107,101,107,102,117,99,97,111,116,104,98,105,125,100,110,111,100,104,90,104,98,102,100,96,99,102,108,101,108,107,123,93,109,97,105,100,109,114,106,100,110,101,106,106,104,95,103,96,94,112,109,95,114,106,97,119,105,120,100,110,99,103,99,102,97,107,87,96,101,102,105,99,104,106,108,100,96,102,116,102,107,119,120,93,108,102,101,87,100,102,100,103,107,92,98,97,71,100,107,89,112,105,106,101,103,105,94,109,114,103,107,106,96,113,112,103,109,99,97,101,104,103,98,105,104,108,100,106,95,106,107,101,99,98,90,102,111,103,113,108,110,92,94,97,102,99,89,109,110,108,104,108,131,102,114,112,110,101,114,120,110,102,111,115,94,98,99,103,106,108,104,109,103,108,98,103,80,94,113,110,101,96,119,90,105,100,113,103,77,109,104,104,99,107,91,108,108,100,108,104,102,95,96,102,107,104,108,106,103,100,89,112,107,114,109,104,103,111,107,112,100,103,110,104,114,113,104,103,107,104,106,101,106,110,108,106,100,100,108,109,94,102,90,93,103,96,101,103,100,113,96,104,110,103,103,107,105,85,106,104,114,107,97,96,98,107,103,98,93,90,121,116,102,106,110,105,101,115,108,112,114,102,107,91,108,98,95,113,102,108,104,115,113,113,97,109,102,116,115,110,98,113,97,103,111,102,102,113,113,106,102,99,98,108,106,108,97,110,110,110,123,113,112,100,108,102,104,99,109,103,103,116,117,121,110,112,95,104,109,111,95,100,95,94,113,104,110,117,103,95,101,102,105,95,92,106,109,104,100,114,105,109,110,103,104,95,116,98,103,109,109,113,98,114,109,113,97,103,102,104,109,100,114,99,95,100,121,113,99,113,101,104,104,84,112,99,108,103,100,95,93,90,109,110,95,103,102,95,110,105,119,103,105,97,103,94,102,94,97,101,94,90,105,99,105,101,98,109,111,102,101,100,111,118,106,103,99,106,113,109,100,96,108,113,110,104,108,114,105,111,104,102,117,107,103,116,108,109,98,104,112,103,100,102,96,107,102,104,96,102,104,100,109,106,107,99,112,102,93,109,108,105,101,111,101,97,100,108,109,111,113,116,98,113,106,102,67,103,100,110,110,102,112,118,112,108,98,102,102,93,106,100,112,107,101,94,121,114,101,82,96,104,94,116,106,114,111,98,102,97,109,109,97,113,111,106,108,93,94,103,98,105,107,96,105,98,99,98,97,104,113,93,98,90,112,119,107,103,107,109,105,113,105,111,103,108,106,107,119,104,103,116,109,103,100,95,110,107,103,103,108,98,101,101,105,91,86,107,108,111,102,116,102,110,101,109,101,107,96,107,98,113,98,101,88,108,106,100,109,100,107,99,116,96,97,91,105,98,99,105,106,98,102,109,100,110,103,99,101,101,108,107,108,96,109,106,102,110,98,110,96,102,97,104,100,108,100,113,102,104,113,107,109,97,87,99,104,96,107,100,119,113,112,112,105,99,102,118,118,97,112,106,113,109,83,95,103,104,98,98,110,120,108,100,110,112,105,104,97,106,106,106,102,99,108,102,110,110,110,94,115,99,99,114,94,107,111,102,97,105,107,101,100,124,101,104,117,101,100,111,103,134,103,110,95,95,101,99,101,104,111,94,105,101,101,108,107,103,105,98,124,102,105,108,108,95,97,92,101,109,102,104,99,105,96,116,101,104,108,101,91,107,116,107,107,116,116,90,95,106,106,104,98,110,102,112,111,109,115,104,106,99,118,107,107,98,100,104,109,113,104,109,102,119,109,110,102,105,104,114,105,109,98,109,107,101,104,105,116,82,99,117,105,112,106,108,114,107,99,110,111,90,104,116,107,99,110,106,109,107,100,107,122,101,104,91,107,121,100,91,107,101,113,113,113,116,102,109,103,113,104,103,115,113,105,102,103,110,105,117,111,103,105,105,99,112,101,108,107,112,102,114,95,111,103,97,87,99,119,95,126,114,95,108,108,109,96,110,105,87,107,117,106,102,107,99,95,105,94,103,109,102,84,104,105,100,108,98,83,109,113,124,111,114,103,105,104,114,101,108,99,106,96,101,95,106,103,101,107,111,109,109,117,104,108,103,104,91,102,111,103,108,108,119,114,110,110,108,98,108,101,110,110,111,102,100,113,97,100,101,100,114,98,103,107,104,110,105,115,107,102,109,105,105,114,96,109,106,105,103,106,105,98,92,109,107,68,111,94,102,81,106,90,105,99,94,99,107,96,116,99,105,104,113,105,118,100,103,112,100,110,113,100,97,102,111,108,109,116,95,97,114,108,105,99,108,104,104,110,109,116,99,107,108,101,106,110,103,109,88,92,100,109,107,104,110,102,109,91,101,91,103,104,112,105,105,98,102,102,104,103,102,109,107,101,99,104,96,122,109,103,121,123,120,113,119,99,103,111,112,115,119,109,101,94,101,111,98,102,118,100,98,112,97,107,96,110,129,109,103,95,99,109,98,102,93,98,102,83,108,106,111,86,112,110,101,123,108,110,103,73,110,101,92,91,108,100,100,103,98,109,124,105,101,99,106,102,110,101,97,112,109,113,93,101,93,110,99,110,97,98,98,96,99,113,102,105,115,104,104,91,104,109,103,93,98,109,98,119,109,108,113,97,109,99,105,102,114,109,115,101,102,111,109,94,106,112,99,121,100,96,122,116,109,102,105,136,115,120,109,109,106,94,116,111,115,104,103,111,91,111,112,100,102,106,107,133,113,86,111,104,124,106,97,109,108,105,103,106,111,122,99,113,113,113,102,103,108,105,102,99,104,111,97,105,107,113,106,79,113,103,108,105,110,108,101,103,104,94,111,110,102,109,115,115,101,91,108,105,107,104,104,113,113,108,91,104,105,102,105,108,110,107,82,105,101,106,94,100,95,117,110,100,111,102,105,109,107,88,103,101,112,102,117,108,118,106,121,97,112,112,99,101,110,107,103,81,112,116,110,109,93,97,108,102,117,92,99,91,127,99,106,103,100,101,110,107,110,106,112,102,111,107,113,109,114,105,83,104,89,110,111,106,102,113,102,113,109,103,113,98,103,104,111,98,100,93,104,113,106,105,92,95,92,105,91,97,101,99,108,109,94,100,106,100,108,110,102,117,117,111,108,105,114,111,108,93,102,100,113,105,98,98,98,104,94,110,117,103,113,114,111,123,87,95,103,108,100,103,102,109,92,110,112,107,104,101,113,95,102,109,95,131,109,110,104,103,97,103,106,101,102,96,111,113,110,97,102,103,109,107,109,96,95,96,107,98,99,109,106,91,99,98,96,110,102,106,102,100,116,94,117,112,98,94,109,113,109,101,86,86,108,100,100,106,112,103,131,107,104,104,109,105,94,82,85,97,99,99,101,102,106,108,104,115,101,104,109,100,105,92,110,116,100,89,109,109,113,107,102,114,111,99,98,102,103,111,99,115,106,96,112,104,107,99,105,103,113,120,102,98,106,106,117,105,105,110,110,97,105,107,109,97,105,115,117,103,102,103,94,119,103,101,106,110,107,130,95,104,88,90,121,103,110,105,99,102,108,104,108,98,108,111,94,91,99,118,108,99,105,95,106,109,103,101,121,102,107,100,109,94,109,108,113,105,110,101,102,92,106,105,113,107,108,98,127,87,107,104,106,103,100,121,106,110,107,107,117,97,112,105,102,101,108,115,108,103,110,112,105,106,88,101,101,105,108,110,102,101,120,109,102,103,101,109,106,96,100,113,96,101,105,100,107,109,112,103,106,96,102,113,106,103,113,104,98,113,102,116,118,97,116,103,96,104,108,107,100,110,106,103,107,76,107,104,113,113,106,102,113,99,102,114,97,107,107,111,107,93,104,99,84,101,117,90,102,112,79,118,96,114,104,120,101,100,98,109,98,96,104,105,105,99,112,108,109,113,104,102,99,103,111,101,105,98,94,103,112,108,95,98,100,101,117,113,101,81,106,106,103,107,111,108,88,104,87,107,105,106,105,115,106,124,98,105,107,110,111,106,113,104,97,112,101,113,96,96,106,100,101,101,100,106,119,105,112,99,104,109,110,95,109,113,113,105,102,98,104,101,94,108,98,104,105,112,104,105,98,106,110,129,112,98,105,102,109,112,103,102,104,107,98,107,105,107,110,108,100,98,104,122,98,105,110,102,97,112,116,121,103,95,103,102,109,103,109,103,107,104,102,100,104,107,103,109,105,95,105,105,99,114,101,106,109,107,103,111,109,96,114,97,98,98,107,99,98,107,113,101,103,102,102,101,91,109,105,99,115,93,115,114,91,109,98,122,99,107,91,98,102,99,110,112,96,98,102,107,113,97,106,105,94,97,90,86,104,102,103,102,114,96,100,94,122,96,103,97,106,118,102,119,116,127,93,109,107,104,99,101,105,99,109,124,103,96,116,95,101,112,99,101,88,116,103,90,95,106,100,101,117,101,116,103,112,106,98,103,105,102,87,99,103,94,104,109,105,95,97,107,91,107,105,109,103,98,99,107,97,109,108,108,109,92,106,110,100,119,102,123,104,100,94,102,102,117,108,104,96,113,113,105,96,98,87,107,102,99,119,105,85,118,106,116,102,110,101,114,111,107,99,92,91,108,103,101,91,95,108,99,97,99,107,98,108,106,114,111,107,105,116,92,106,113,98,104,95,120,113,114,104,101,94,91,102,113,95,109,98,106,107,113,102,106,108,109,109,103,115,118,97,104,102,108,102,98,91,110,100,100,106,105,89,116,105,96,113,95,96,86,102,102,91,106,94,105,119,102,102,102,103,78,123,100,103,106,104,104,102,113,101,88,102,112,101,103,107,97,94,102,96,102,108,91,102,120,116,95,120,106,88, +490.89435,103,97,96,96,97,105,99,105,98,91,100,113,91,93,116,76,96,106,100,105,101,101,101,109,90,115,116,112,105,120,109,107,98,105,96,105,92,106,97,103,99,101,122,101,108,122,103,103,74,98,99,108,117,108,109,117,105,96,108,105,110,99,99,110,94,111,89,103,101,97,111,111,103,106,95,105,102,99,108,98,103,97,121,105,113,92,96,105,90,98,96,98,102,101,97,97,105,94,103,87,105,99,93,90,102,92,91,109,97,93,105,107,98,92,106,110,98,101,101,105,98,108,129,106,104,102,110,98,113,116,100,103,102,103,103,111,102,99,100,91,99,108,105,98,101,95,109,90,99,97,103,97,106,86,104,106,109,87,99,101,101,101,100,103,106,100,107,92,103,117,115,98,106,108,101,104,98,94,108,95,98,106,112,104,90,103,105,91,109,108,107,90,109,101,101,105,94,99,98,103,110,116,98,111,94,123,98,111,106,101,107,99,84,100,109,100,98,103,97,104,98,111,101,99,100,106,104,108,78,99,111,98,113,108,99,109,95,73,101,103,102,104,98,103,121,105,109,106,104,107,86,103,97,108,113,102,102,104,97,106,101,110,112,99,90,100,108,96,107,110,108,106,117,101,101,120,108,100,87,101,104,99,101,108,123,102,101,100,102,100,114,103,83,114,105,104,103,106,112,107,100,104,101,105,110,102,106,99,104,105,116,106,109,105,113,101,100,97,105,90,97,97,100,114,99,103,91,108,97,111,110,99,108,95,106,99,106,106,96,115,107,99,100,96,102,103,107,99,99,108,100,96,109,110,94,109,104,104,106,100,102,95,113,98,104,91,110,109,101,102,102,99,113,98,113,104,107,110,101,100,110,96,105,102,106,122,98,91,99,91,103,95,90,99,106,102,96,108,106,110,104,104,107,101,103,106,99,104,107,109,105,98,99,100,100,96,113,95,100,105,100,107,107,103,97,91,106,94,99,106,106,106,104,102,108,103,95,123,104,106,111,103,108,109,95,104,106,103,94,106,103,113,100,111,94,101,97,104,111,109,98,105,94,96,108,107,102,99,117,105,102,104,103,107,90,126,95,101,112,112,100,113,110,103,117,93,104,100,91,95,99,94,122,97,99,100,98,90,111,92,108,107,112,110,104,105,105,95,100,109,110,94,101,105,104,94,108,108,81,98,95,113,105,108,102,105,115,101,108,101,101,91,106,89,103,105,105,110,99,100,99,102,114,103,107,106,108,108,106,108,99,109,107,114,106,106,101,107,102,89,106,110,109,112,110,101,113,111,96,104,91,110,109,103,82,109,109,106,94,108,109,97,104,104,106,111,109,99,108,107,109,113,97,108,94,95,102,106,105,102,94,105,107,103,98,107,105,105,95,104,97,103,109,90,111,99,119,106,102,104,103,110,99,111,103,112,97,113,104,110,105,109,110,98,100,97,95,100,99,105,112,117,102,101,107,99,104,102,108,108,99,103,113,98,101,101,118,115,97,109,107,107,93,103,102,101,103,80,103,99,117,106,94,104,96,108,112,103,112,117,112,100,98,104,105,106,106,107,101,78,116,105,111,112,102,100,103,120,90,102,98,90,101,105,108,99,102,103,108,96,81,98,105,101,103,92,107,106,106,102,107,105,101,110,96,105,96,96,100,109,100,103,107,102,102,95,105,105,110,108,104,101,110,100,99,89,112,109,106,108,94,100,102,102,96,104,102,113,109,107,108,105,109,102,96,105,93,109,96,116,103,101,85,97,95,102,118,98,109,103,112,118,113,110,101,109,104,104,98,92,100,102,107,106,105,111,106,104,112,117,101,114,92,108,118,101,101,108,114,98,109,96,116,116,115,104,115,108,127,91,85,105,99,113,104,106,106,102,104,98,107,109,99,92,97,85,106,102,111,102,105,105,117,107,102,100,104,103,104,102,90,92,111,101,96,107,110,97,101,122,101,98,101,102,104,103,108,115,99,108,105,83,113,100,95,106,106,104,105,89,108,106,115,104,107,117,110,114,108,109,110,103,99,99,98,94,95,101,108,107,99,111,106,93,104,108,96,117,115,103,101,109,107,98,97,95,98,109,105,108,108,114,107,102,102,106,105,92,105,102,106,111,101,102,99,114,101,82,101,113,102,88,99,103,101,99,112,95,105,114,104,103,105,97,82,107,105,117,100,99,113,103,108,93,101,106,96,107,101,100,97,79,110,104,102,95,108,102,94,97,96,102,112,115,104,103,102,102,103,100,103,102,117,107,91,97,103,108,102,121,112,100,103,103,104,98,106,104,76,114,106,97,113,99,111,94,108,106,97,99,99,104,105,124,98,106,104,121,97,117,98,105,105,102,105,102,103,118,98,111,106,101,102,98,100,106,106,104,100,98,107,103,91,91,103,112,99,102,99,113,95,100,97,107,102,94,96,100,100,100,103,111,107,108,128,102,111,104,96,95,113,96,97,102,100,103,101,102,110,117,107,101,102,110,88,97,103,101,93,115,102,92,103,110,109,106,117,97,110,105,106,108,84,113,100,94,102,115,102,104,105,103,90,93,100,112,96,115,106,102,91,96,98,111,83,103,106,101,95,105,98,103,98,116,104,109,105,99,100,105,100,93,104,101,112,108,107,119,113,108,113,104,102,103,115,115,117,96,105,98,88,110,106,108,94,107,88,103,102,103,103,100,109,122,100,102,117,99,107,107,108,104,100,98,97,108,114,102,96,87,104,92,116,104,72,105,105,102,95,99,99,108,101,124,113,112,98,108,107,109,98,110,103,117,112,106,99,104,96,98,91,106,97,109,115,100,116,100,81,105,110,100,110,99,111,100,108,105,99,136,106,109,107,111,103,102,100,116,101,109,109,99,101,104,102,101,104,101,103,107,115,110,107,111,106,103,100,107,122,101,110,110,101,109,116,94,103,98,96,97,106,108,95,106,96,96,100,109,102,95,113,112,101,104,106,106,107,104,109,113,116,103,113,91,103,106,100,110,104,99,94,123,99,110,104,98,114,113,112,116,111,105,61,124,103,127,108,106,96,113,106,112,103,102,112,104,110,107,104,106,100,106,109,107,100,107,96,99,121,98,105,118,108,102,121,102,103,101,108,102,96,107,102,113,97,94,110,109,95,97,98,98,100,108,99,99,109,99,102,95,106,100,100,102,103,103,109,115,105,98,110,119,105,104,91,114,96,103,101,104,107,94,94,109,109,94,108,103,117,105,109,107,102,107,106,94,110,109,118,105,110,104,98,107,103,89,94,105,103,106,89,113,107,105,109,94,104,91,103,103,117,99,115,111,108,93,107,97,110,103,112,108,97,100,90,101,104,116,112,90,100,123,90,112,91,86,115,104,100,96,106,101,105,98,98,104,104,88,103,102,96,104,108,94,116,102,106,107,106,102,96,96,117,105,88,89,97,108,109,105,104,107,121,109,108,101,102,99,99,82,117,106,103,97,103,116,98,103,104,111,109,110,109,103,118,117,96,91,108,103,100,113,94,103,100,109,108,101,101,107,113,103,106,107,99,102,100,100,100,94,100,105,100,91,112,95,112,99,99,110,96,115,101,96,111,89,105,118,108,94,104,102,102,99,116,102,113,106,102,114,90,106,113,105,103,88,99,102,93,113,98,104,97,117,105,98,105,98,92,114,115,102,107,103,105,88,90,97,103,99,108,110,132,109,86,98,108,95,95,106,101,112,107,102,111,105,104,99,98,117,97,102,100,99,108,111,98,103,98,104,102,105,91,98,117,107,110,105,94,105,104,101,112,96,97,108,102,91,120,108,101,119,99,108,99,114,107,103,103,109,109,102,125,96,98,100,101,101,110,100,110,109,100,103,96,118,122,103,109,108,113,98,110,101,106,101,103,105,103,101,105,102,107,103,98,100,99,108,97,95,114,98,112,120,105,111,116,101,102,85,104,116,107,103,104,111,94,110,72,108,107,104,102,111,99,86,97,108,105,113,95,99,96,96,73,94,93,95,92,110,75,117,104,99,108,97,90,108,106,104,115,76,111,98,102,95,105,105,103,105,111,110,83,112,104,116,91,101,106,98,124,92,111,98,96,109,92,111,105,94,108,99,106,107,102,113,95,92,110,101,105,111,98,94,93,108,113,103,99,98,113,97,102,89,106,101,99,95,84,112,104,95,98,90,101,96,102,94,97,89,111,112,117,100,104,111,101,99,100,115,105,103,105,91,107,108,87,111,115,104,111,105,104,111,96,104,119,98,98,103,99,95,119,104,123,95,105,94,99,113,112,104,104,91,104,105,99,99,102,107,98,111,98,101,102,100,124,103,108,110,109,99,110,87,113,101,88,102,112,104,121,108,103,105,106,112,103,102,106,106,115,109,109,106,98,100,101,99,105,100,102,106,99,108,108,97,101,118,106,110,97,101,101,104,110,99,99,107,99,95,108,109,100,94,101,106,100,99,101,120,105,106,103,104,100,99,101,96,99,105,102,112,102,107,99,105,106,102,111,103,98,103,99,98,104,103,100,108,102,99,99,106,112,94,94,105,112,105,106,107,102,91,95,95,120,116,106,110,114,110,102,94,110,113,96,102,116,100,116,102,99,94,110,109,117,112,102,102,113,108,109,102,89,98,95,104,103,104,91,103,104,103,110,102,111,92,103,109,108,112,112,98,88,113,106,98,99,102,100,98,100,99,103,95,98,105,106,98,104,103,110,107,105,102,100,95,98,104,85,97,94,93,108,107,98,95,105,97,105,103,101,98,113,110,102,101,109,100,98,102,118,109,101,99,97,103,110,95,111,98,90,95,113,108,106,91,107,111,107,100,115,98,95,89,117,94,112,107,97,107,106,100,95,103,86,118,102,90,116,91,97,111,90,99,108,101,94,117,102,99,112,106,94,110,96,94,99,110,99,96, +491.03494,110,100,106,102,109,100,107,108,98,104,87,100,100,93,101,115,113,98,108,115,108,98,101,108,105,107,104,79,102,67,95,104,107,98,118,101,118,98,104,96,106,104,100,109,101,82,113,115,103,102,111,108,110,103,114,91,98,99,106,99,107,104,106,107,105,114,92,115,107,106,93,105,111,95,98,113,113,96,102,109,111,91,97,114,103,99,90,112,112,108,106,120,109,110,108,96,104,109,108,96,100,96,112,95,106,100,102,105,101,114,116,94,100,103,99,104,99,103,100,102,117,106,97,108,91,118,103,110,108,86,110,109,106,110,103,109,111,95,104,108,104,82,105,92,93,114,125,118,121,106,99,94,100,105,104,109,111,88,103,114,92,90,102,94,95,100,101,97,111,122,104,99,96,83,125,102,104,87,100,116,98,98,113,107,116,103,107,95,107,95,113,99,81,105,108,106,104,113,103,104,99,105,105,109,96,106,102,115,110,116,113,94,111,102,106,101,93,98,108,106,116,110,111,104,98,106,97,110,103,109,107,112,107,106,113,103,99,98,114,100,98,110,109,106,100,94,84,110,99,101,101,124,108,106,107,103,106,106,109,111,99,108,106,102,100,116,96,107,99,103,110,105,108,110,110,103,101,103,110,114,105,103,105,95,96,132,95,102,103,99,101,110,101,108,111,113,93,99,97,107,96,105,98,113,103,112,95,100,105,109,118,103,115,111,108,103,102,112,105,103,117,92,110,109,104,113,101,107,107,114,103,113,102,103,98,103,104,101,95,112,105,108,98,83,110,111,105,100,103,108,102,99,102,99,100,110,104,113,111,89,92,105,111,91,101,104,113,134,109,103,96,105,106,102,107,98,114,101,113,91,102,117,104,108,97,89,96,110,96,103,107,90,103,106,107,104,105,99,112,115,114,108,92,95,99,103,97,121,104,116,104,99,99,99,107,110,93,103,94,104,110,99,95,104,103,98,101,113,99,106,115,106,105,99,92,100,99,114,100,107,102,113,95,113,100,113,102,112,116,111,105,95,88,105,99,93,122,104,112,89,104,106,106,101,113,118,113,99,110,105,103,118,114,109,111,117,98,116,107,102,99,108,109,117,83,94,105,101,102,94,115,115,108,109,111,111,109,109,113,100,126,103,108,115,142,106,107,109,116,96,88,94,105,104,106,104,118,104,100,102,105,96,114,99,94,121,101,108,99,123,111,101,103,98,105,126,104,97,111,112,106,111,109,114,96,106,100,112,101,97,112,113,117,105,101,99,108,112,104,108,107,113,106,101,104,103,108,109,99,101,110,106,115,100,104,115,110,99,99,109,115,107,107,95,67,103,103,103,98,113,99,106,110,102,102,112,106,100,111,117,97,110,105,107,110,100,91,109,106,106,111,105,114,101,93,106,112,113,106,103,100,111,118,102,113,108,98,90,98,97,106,109,105,103,99,104,105,99,112,105,112,106,101,109,110,105,105,94,95,104,96,108,103,107,108,103,104,110,106,105,118,108,104,96,94,108,88,105,120,106,112,106,95,101,105,106,100,100,103,106,113,105,109,105,89,98,94,108,102,104,112,107,109,76,95,92,104,114,128,96,117,79,104,104,109,106,108,92,111,112,112,101,104,117,108,105,99,107,99,92,106,110,112,114,104,96,106,111,108,108,99,102,96,100,103,90,110,107,107,109,106,97,115,109,96,110,95,108,90,111,98,108,104,111,113,100,108,95,112,104,102,105,99,102,115,96,95,104,101,111,98,109,113,107,113,102,105,100,96,94,97,113,101,100,97,113,117,109,106,104,107,99,110,106,104,114,101,109,109,93,106,117,107,107,112,106,111,100,107,109,117,106,98,109,118,105,107,102,104,107,105,102,106,110,104,99,120,100,110,112,107,97,134,124,103,82,111,101,103,99,95,109,109,90,104,105,109,95,106,110,83,103,106,101,102,103,108,110,101,103,90,103,106,109,102,117,98,116,109,109,97,103,104,99,110,99,115,103,97,115,107,114,96,95,99,92,99,103,111,108,116,102,109,94,111,105,105,103,108,102,113,107,109,97,99,107,114,116,109,97,108,102,114,95,106,95,99,105,100,115,107,103,117,107,104,103,108,111,114,90,106,106,104,112,100,101,109,114,112,104,111,112,114,107,87,104,111,100,75,106,99,116,105,105,119,118,103,105,99,80,112,103,114,95,107,112,113,114,114,108,106,114,87,94,113,110,105,105,105,100,106,108,103,110,102,113,115,104,104,115,108,109,104,110,103,98,106,101,104,81,100,108,93,102,104,106,84,112,107,104,112,100,98,109,114,99,112,109,103,105,113,111,108,98,113,108,105,102,104,109,106,102,107,107,102,101,112,105,100,103,108,106,105,94,104,100,71,104,123,103,107,105,108,116,96,108,108,123,102,118,91,126,105,115,115,96,98,107,113,111,110,110,100,98,107,107,98,95,109,102,107,114,100,107,93,106,96,106,106,107,103,107,101,112,103,100,106,105,107,108,105,106,102,98,98,119,97,110,108,107,108,123,111,97,93,105,99,107,106,107,113,115,107,116,112,105,112,95,91,99,109,105,114,102,96,114,103,107,114,95,99,108,86,110,109,97,115,84,103,107,105,109,113,115,105,107,108,110,120,114,102,99,118,99,106,105,119,100,98,95,107,91,118,111,104,106,100,107,111,110,99,103,102,109,116,113,109,109,108,114,109,113,109,97,108,110,107,98,112,110,108,101,106,90,103,106,109,104,101,100,113,105,110,95,99,100,101,83,102,104,98,106,98,105,106,109,98,110,104,112,98,107,102,106,109,105,100,111,113,115,125,103,106,100,99,90,91,110,98,104,115,114,109,114,111,102,104,101,101,102,109,106,104,112,105,101,111,103,90,116,104,94,107,89,104,111,101,104,112,99,103,106,108,117,105,108,96,108,99,121,103,110,104,103,109,91,108,106,89,107,106,104,97,96,93,115,104,111,112,113,96,102,108,104,104,113,109,93,97,102,112,106,95,105,97,110,110,106,95,103,109,74,99,99,124,98,123,118,98,111,92,101,108,105,108,100,104,104,99,104,120,103,102,106,105,91,91,112,100,99,112,100,110,100,114,111,104,95,100,114,80,99,98,110,99,107,109,116,108,111,107,92,109,97,97,100,90,102,101,101,95,103,109,100,102,101,108,102,106,96,105,101,107,97,108,133,100,95,106,109,96,89,108,100,108,107,81,105,97,102,102,98,102,100,100,106,109,104,100,97,117,110,110,120,113,107,91,92,102,104,115,90,117,117,117,93,100,118,115,116,104,99,95,119,108,109,107,106,99,108,102,104,103,92,106,121,114,95,113,106,94,108,95,107,94,98,105,99,110,86,107,101,121,129,98,88,105,104,97,94,105,90,97,112,96,95,98,97,117,98,105,104,102,96,99,106,105,103,102,121,93,109,98,99,103,117,105,95,101,109,94,103,110,108,100,105,115,112,95,94,95,110,104,95,95,101,97,108,104,97,109,116,105,117,95,108,102,94,97,103,104,101,110,105,102,110,103,108,106,107,100,106,103,107,102,102,103,108,107,109,116,110,106,116,103,108,104,101,102,104,103,110,96,115,112,120,103,108,88,107,105,110,99,105,97,97,113,101,107,117,95,96,107,116,94,119,109,114,118,107,106,96,103,100,97,104,103,96,115,110,104,103,96,105,98,99,105,101,104,98,102,99,103,107,115,97,108,112,106,103,98,107,101,103,95,112,104,110,109,99,109,104,105,109,95,100,97,102,106,99,110,93,100,100,104,80,118,104,113,98,96,106,114,67,107,106,109,100,103,107,124,106,103,106,106,97,104,98,95,104,105,105,94,102,105,101,110,108,108,107,117,114,111,105,109,101,102,100,100,102,89,100,99,109,113,110,116,106,95,104,102,108,109,99,102,102,115,102,97,107,105,101,107,98,113,116,101,106,106,104,105,115,100,98,103,116,114,110,98,117,89,104,98,91,105,95,107,93,101,113,104,106,99,99,88,103,99,105,94,106,108,96,100,106,107,106,102,94,99,102,112,106,106,102,109,117,112,98,77,99,100,102,103,98,94,106,98,112,100,97,107,112,91,102,107,119,91,104,107,117,104,80,105,111,110,96,97,110,99,104,98,99,88,93,99,95,96,108,102,105,102,103,97,92,109,83,91,106,95,109,95,102,99,95,99,102,96,99,89,107,104,105,99,106,105,98,103,97,102,115,85,109,105,110,107,101,115,101,111,101,101,89,113,79,107,108,99,114,106,101,106,96,106,117,94,112,94,107,95,100,114,101,112,111,91,109,101,108,107,107,105,113,105,94,106,93,90,102,101,108,113,95,109,107,93,98,99,112,101,96,109,96,113,110,110,96,104,99,112,92,104,106,100,106,113,125,103,105,96,93,102,88,103,99,105,112,86,100,101,108,103,113,104,96,105,100,94,100,98,113,95,97,96,100,99,94,105,107,106,101,102,99,102,109,77,108,101,110,103,95,98,91,89,102,97,92,100,106,121,99,98,103,91,102,107,101,101,99,108,105,105,96,102,98,105,102,106,96,100,99,87,98,98,100,113,101,111,96,101,99,97,100,102,68,104,110,101,107,109,102,101,105,98,104,115,111,90,104,108,95,108,104,97,108,105,106,134,109,107,108,97,103,106,93,98,108,108,106,87,109,93,104,92,108,103,107,104,119,107,90,86,111,104,92,110,100,104,100,109,101,89,97,91,106,102,104,93,104,113,104,105,102,101,109,99,92,103,106,90,119,101,93,102,113,77,105,109,109,106,94,101,109,88,93,98,110,106,92,108,104,102,83,114,98,101,109,104,106,101,109,112,105,105,96,104,95,99,92,101,100,113,98,115,102,103,92,100,106,95,95,98,100,85,109,93,97,98,104,106,97, +491.17551,101,105,90,100,109,100,97,100,118,103,103,112,95,102,90,98,98,110,109,105,103,102,96,116,102,108,94,106,102,112,105,96,97,105,105,103,110,111,117,103,101,97,103,98,90,106,105,112,105,102,96,119,104,96,100,117,95,99,93,95,96,91,117,105,113,97,81,110,100,98,108,103,100,97,100,123,91,117,99,134,104,107,104,110,106,91,90,102,110,95,92,99,107,103,103,102,98,102,91,101,92,91,97,95,106,104,101,91,108,103,99,97,103,103,108,103,105,101,116,98,99,90,97,110,105,95,105,100,113,112,107,101,104,109,104,102,90,112,99,90,105,111,137,129,126,96,107,101,92,105,93,81,105,73,92,90,102,99,96,101,94,106,106,106,105,90,99,101,109,107,102,109,96,99,103,106,103,111,92,108,119,102,109,104,101,103,91,109,100,100,99,106,110,100,95,108,110,106,121,109,94,117,96,100,92,102,115,108,111,109,108,117,97,101,102,94,102,99,99,101,91,111,95,102,98,105,99,100,116,98,100,111,98,98,99,96,102,104,108,111,96,100,74,109,117,96,95,97,103,89,101,113,80,114,107,132,98,118,95,100,94,105,107,102,103,109,98,108,105,97,120,98,91,124,99,107,96,110,110,102,102,99,107,102,81,96,86,113,98,99,102,99,99,111,114,110,99,113,99,100,107,88,90,112,99,114,113,81,112,107,118,106,104,105,103,113,109,110,104,103,94,94,101,112,103,90,98,70,103,107,122,92,113,101,95,100,103,106,101,126,99,96,99,116,105,106,110,105,103,111,111,84,120,99,108,109,117,113,106,108,111,97,104,95,95,106,116,107,111,107,89,102,101,125,98,106,110,109,100,100,98,99,102,113,117,101,98,90,106,99,111,100,90,103,110,102,107,100,77,97,98,101,102,100,101,101,94,104,116,93,91,100,96,110,114,115,101,97,139,106,105,103,100,109,95,96,116,99,100,94,101,94,93,118,100,100,100,106,106,114,107,91,105,107,108,96,105,103,130,112,94,108,109,93,113,102,111,112,102,102,100,105,105,111,106,110,105,106,102,93,112,102,114,110,113,103,113,113,99,103,112,114,103,96,106,96,103,114,102,112,100,109,102,108,98,101,102,101,105,110,103,105,99,98,102,108,106,100,94,110,109,106,110,114,96,105,107,109,100,93,108,92,112,95,117,99,104,93,103,113,94,104,102,95,112,112,98,106,98,112,106,105,107,95,96,112,102,107,104,93,114,99,107,100,103,97,109,107,114,95,116,99,100,103,103,102,108,97,98,108,106,106,100,114,104,110,107,107,109,116,103,117,104,100,108,110,103,113,109,113,107,94,96,106,111,109,103,111,102,95,103,99,100,95,115,101,95,116,103,100,97,116,105,110,118,105,109,96,126,97,108,102,117,105,102,103,96,97,108,104,93,105,91,103,103,106,104,105,103,94,110,109,95,80,96,91,96,112,109,107,112,110,97,95,101,114,96,113,101,105,99,100,106,95,94,113,111,93,97,112,125,105,103,121,104,100,99,96,109,94,106,98,106,95,101,98,84,103,108,114,106,107,112,115,122,110,108,107,105,92,107,97,111,106,102,106,99,103,98,99,110,107,105,112,99,101,109,105,95,98,109,101,100,117,106,98,89,114,109,111,112,106,109,115,103,94,122,101,98,101,96,98,111,117,104,108,104,102,109,103,104,108,99,99,105,115,95,110,95,94,105,109,94,93,95,122,110,116,102,103,102,106,108,105,101,100,101,108,101,99,100,100,96,109,102,113,103,94,99,112,110,106,109,124,117,103,100,109,100,105,108,87,99,122,103,107,109,96,97,93,112,117,103,105,110,97,103,103,116,104,103,111,95,102,109,103,104,104,98,101,104,90,116,99,95,111,115,95,108,105,106,109,102,102,103,103,96,95,104,97,99,113,102,102,100,115,102,115,108,110,93,124,107,95,106,117,98,106,106,105,113,113,101,111,105,98,111,107,105,93,99,104,101,110,95,93,107,123,105,112,100,121,102,106,106,99,104,108,97,100,95,104,113,98,104,92,103,106,121,90,92,107,103,118,111,106,98,116,98,112,106,108,112,98,129,101,109,111,110,105,106,103,108,98,101,108,100,108,99,112,104,112,110,128,108,96,109,101,103,109,111,106,115,105,107,115,103,113,107,113,108,114,108,105,77,103,91,107,108,105,100,92,105,104,106,109,101,106,95,115,93,107,94,94,75,113,101,98,111,109,100,100,111,116,99,105,104,99,89,102,104,101,101,93,110,111,108,96,104,113,105,106,107,108,104,101,110,100,106,104,70,94,116,94,108,111,111,105,103,108,102,103,109,100,106,90,99,105,104,100,108,103,99,100,94,103,115,92,104,112,108,82,105,108,104,107,96,114,103,118,123,96,105,105,90,102,94,76,100,104,100,105,97,119,108,102,95,102,98,98,99,96,92,104,107,80,85,105,110,105,107,114,91,102,109,102,104,99,117,112,100,95,98,96,96,104,96,95,99,69,104,104,98,109,99,98,99,98,103,106,113,101,109,108,101,113,98,102,100,115,101,106,109,94,107,100,102,105,99,119,84,105,92,102,98,97,104,102,105,80,103,116,94,100,99,102,123,81,101,109,106,102,115,98,98,104,94,105,109,111,102,102,111,92,97,84,106,103,107,93,103,113,98,112,97,109,99,104,105,107,96,108,118,96,98,101,101,102,104,108,97,97,80,106,111,98,91,103,118,109,99,112,103,106,105,91,106,99,106,103,107,113,112,104,115,94,105,79,101,105,93,109,101,106,119,91,103,100,106,101,105,107,110,101,111,100,111,105,99,80,111,101,111,107,100,103,105,98,97,106,119,98,92,103,103,106,104,98,101,101,108,100,108,111,102,92,101,115,102,115,110,116,109,115,106,112,116,80,95,113,102,97,100,93,110,98,102,95,103,106,113,108,108,100,110,104,109,103,115,111,95,95,106,103,108,100,102,105,101,92,113,105,95,96,118,97,106,114,101,98,91,95,103,100,100,114,120,103,98,103,102,106,104,97,110,101,101,112,109,105,102,117,109,98,99,103,109,106,99,110,106,114,114,101,113,99,103,102,97,88,98,102,106,102,107,104,113,115,111,101,107,101,108,112,105,93,102,102,96,104,100,97,97,101,105,113,109,98,106,105,110,94,88,95,92,100,107,106,114,106,99,93,112,109,91,107,106,105,108,115,91,103,103,94,95,103,100,97,103,83,97,102,97,116,103,102,111,110,107,99,107,102,104,94,96,114,94,113,105,103,109,109,106,103,99,108,116,117,101,97,103,92,97,84,103,98,103,98,106,100,100,124,100,95,95,94,100,99,107,101,98,102,100,91,94,98,97,101,105,92,104,96,95,102,103,97,102,104,107,100,101,103,110,114,101,98,112,95,94,122,95,87,112,100,100,103,114,100,98,105,112,99,104,94,114,98,109,106,115,82,107,99,99,99,99,103,103,104,105,97,143,106,95,104,105,107,113,100,96,102,100,96,100,110,105,94,101,114,95,105,101,98,103,109,102,98,94,100,108,104,110,106,111,111,100,103,111,104,91,89,92,105,77,105,99,106,117,118,104,73,108,113,111,100,104,99,103,111,105,106,103,104,113,106,96,110,101,96,95,106,104,103,98,113,87,110,106,94,103,89,105,117,102,97,100,107,114,94,109,103,93,116,105,111,108,105,94,107,119,101,84,102,112,105,113,116,103,104,110,97,110,97,106,105,117,99,100,123,107,107,106,108,102,89,97,111,104,95,101,93,96,111,99,99,113,109,105,97,103,102,99,110,91,103,96,108,110,95,80,109,97,102,115,102,93,101,108,90,122,74,103,103,105,75,106,112,99,111,99,92,115,104,107,99,103,94,102,100,112,96,101,108,109,105,104,103,111,107,105,105,113,104,100,94,97,99,103,102,104,97,101,109,105,98,101,118,114,107,109,99,95,104,100,106,94,94,103,108,93,100,110,106,101,105,115,101,100,101,111,96,117,106,87,95,91,99,117,108,102,106,116,105,101,101,98,111,105,112,101,121,106,111,100,103,98,109,99,98,96,94,104,108,103,101,97,105,99,100,115,95,110,100,95,112,100,99,101,95,88,99,102,128,103,110,105,108,99,101,97,109,138,102,96,93,113,104,104,106,92,99,103,123,101,99,105,101,88,101,111,108,100,99,105,91,106,99,86,102,110,105,108,105,105,110,106,112,95,112,102,108,94,94,104,116,96,90,95,102,99,100,106,105,107,94,94,92,98,99,100,107,113,106,100,105,94,101,99,103,100,114,106,104,108,109,105,100,112,106,104,101,112,94,108,93,105,105,104,87,102,92,100,91,107,109,104,106,109,98,106,100,102,105,101,114,101,95,113,102,102,106,89,112,95,96,98,114,91,97,99,95,117,100,75,94,98,81,94,100,108,106,84,122,107,114,102,86,102,108,102,102,104,107,116,97,113,107,94,113,93,103,99,94,91,104,112,104,95,107,117,98,105,92,97,101,103,97,100,105,105,91,101,97,103,128,98,102,102,107,98,113,103,103,113,102,94,119,102,101,85,100,97,104,105,95,114,99,102,103,101,105,102,110,120,105,101,114,121,107,99,101,111,98,112,107,99,99,104,118,100,92,95,88,106,116,117,102,108,100,102,90,109,107,108,104,117,106,114,118,95,98,92,105,110,105,101,108,103,97,83,97,93,107,102,111,107,105,102,95,89,88,109,100,106,96,100,100,105,100,100,113,101,103,118,108,109,108,103,113,102,101,100,99,105,106,90,96,102,97,91,88,106,86,95,103,102,107,107,112,93,109,98,97,106,92,84,106,90,103,97,106,100,98,100,95,107,107,91,95,98,94,106,109,101,113,127,106,103,114,96,104, +491.3161,95,110,109,110,88,107,77,113,109,114,100,105,94,104,112,116,96,115,103,109,110,114,101,75,93,108,113,115,110,107,92,107,121,99,103,92,102,93,98,110,97,86,87,108,101,117,105,104,93,110,107,110,98,111,98,100,91,92,117,101,96,106,105,105,107,115,110,99,92,94,108,107,100,92,98,92,88,94,101,101,112,104,93,102,100,97,99,119,103,95,115,110,111,95,102,109,113,96,102,105,105,106,114,105,102,109,95,107,99,103,102,115,98,96,100,108,112,95,118,91,105,94,119,111,116,101,105,106,110,110,109,103,106,107,116,112,100,99,106,99,83,111,104,98,112,102,111,119,100,94,107,85,106,100,97,108,116,102,108,101,101,110,102,106,136,101,99,103,125,101,101,109,91,97,112,106,114,100,107,101,111,102,103,87,106,103,104,88,108,100,96,100,109,104,122,114,103,108,117,106,104,104,113,117,110,107,83,103,111,110,106,95,105,101,110,101,100,97,99,97,110,101,101,109,110,131,107,114,103,108,95,118,112,113,99,119,104,102,98,90,98,106,105,125,98,82,102,113,104,104,99,98,77,105,96,109,98,110,99,100,79,98,98,94,98,109,102,115,108,105,105,95,102,110,97,109,77,104,102,98,104,108,100,99,98,103,91,109,107,112,104,97,112,106,103,108,103,108,99,113,110,104,94,100,109,111,105,98,105,112,94,112,112,109,106,108,99,99,109,91,100,109,105,101,110,108,109,91,104,111,103,93,107,89,103,103,106,108,108,107,108,105,101,111,101,103,108,118,112,110,109,95,106,109,105,113,98,109,115,104,106,93,107,96,112,101,108,113,113,100,119,112,101,101,100,102,106,120,105,104,111,88,93,106,107,96,99,93,115,92,104,83,103,117,108,101,100,103,102,97,102,98,109,96,100,101,109,116,99,98,110,103,103,99,95,101,120,101,99,101,81,97,96,98,100,98,97,108,128,102,93,102,104,83,109,99,99,82,113,103,109,95,119,115,99,103,101,102,109,109,108,88,114,115,104,109,97,105,117,105,101,87,101,108,112,106,100,112,102,92,116,106,114,100,100,120,99,110,109,99,104,99,111,116,115,102,108,105,98,102,112,101,101,100,99,109,105,103,109,101,113,97,94,112,102,110,96,97,109,111,95,108,120,109,99,98,110,110,107,101,104,117,110,100,103,105,107,99,105,109,104,100,95,107,92,94,105,100,115,111,106,104,95,95,121,109,105,110,116,104,107,108,109,93,100,113,106,110,101,101,108,111,98,107,106,111,107,107,107,105,102,86,116,121,103,104,101,96,97,107,109,92,91,107,104,108,109,104,103,103,120,102,98,102,111,102,105,115,120,115,91,99,100,108,115,114,92,112,85,78,105,100,114,113,115,99,114,108,118,112,113,112,107,95,120,71,98,111,90,108,109,91,95,113,105,103,96,99,101,116,111,103,99,117,114,104,101,110,108,102,97,119,91,104,106,104,105,109,107,111,110,101,103,111,94,94,106,111,107,110,102,106,107,104,96,106,110,97,108,118,111,97,120,104,103,110,106,106,95,99,109,112,112,122,112,114,117,103,102,99,92,100,106,101,113,134,102,114,109,106,106,104,102,96,106,103,96,108,121,107,110,103,107,105,103,97,107,116,94,107,96,110,114,94,108,109,114,101,95,104,106,101,104,95,87,99,99,109,111,109,102,103,106,108,104,98,102,112,114,109,99,103,103,95,97,95,99,107,100,113,118,103,108,115,103,102,124,109,110,105,105,121,113,110,108,111,100,104,95,107,107,108,103,110,102,109,96,96,112,125,90,123,101,107,106,109,96,101,100,108,117,101,109,89,106,104,100,105,107,107,100,106,101,106,94,99,115,105,114,106,100,108,98,102,108,115,101,92,104,112,103,112,109,102,94,103,105,105,114,103,104,116,106,109,102,101,101,101,100,107,99,100,89,112,102,104,106,97,120,107,107,107,98,92,107,99,99,104,108,113,113,106,110,107,101,98,97,96,104,109,113,113,101,110,101,75,113,100,94,118,107,112,111,115,99,116,97,97,104,101,113,103,123,107,115,104,99,112,109,124,116,128,108,111,101,97,106,93,98,107,106,99,113,95,106,101,101,106,102,107,99,111,110,112,104,99,101,103,109,113,93,103,103,107,120,101,105,103,105,109,109,100,105,84,105,103,111,110,95,86,102,109,113,105,105,123,107,100,95,102,117,106,123,106,114,104,105,105,106,101,107,108,98,102,109,107,98,105,106,97,105,94,99,94,109,107,119,105,99,98,94,111,110,105,102,109,101,89,108,105,113,119,109,94,108,95,104,107,102,99,94,97,107,92,103,100,102,108,105,104,99,91,100,110,109,98,101,104,111,115,92,108,86,113,101,102,93,107,99,106,93,114,108,108,101,103,98,104,108,100,98,118,102,111,140,99,111,112,109,110,108,100,95,106,107,107,98,99,98,109,108,88,104,100,111,95,104,100,112,100,105,100,94,89,98,105,99,95,102,105,99,98,101,103,116,100,96,117,109,109,102,109,104,99,102,105,96,114,102,123,109,112,100,105,97,103,100,106,95,100,108,94,101,114,70,108,112,97,112,96,116,104,120,109,116,113,91,109,95,107,106,95,104,97,92,100,99,99,95,81,105,99,108,104,106,111,113,88,116,111,105,92,95,97,107,113,101,105,102,104,105,102,104,104,95,107,109,94,91,102,103,107,100,105,100,103,105,103,96,110,104,112,100,112,104,113,96,122,90,102,105,105,112,104,103,105,102,106,117,102,106,97,105,95,106,105,103,102,105,97,105,97,103,94,111,98,107,110,103,106,106,96,109,100,113,105,107,109,100,118,101,102,117,111,97,96,106,104,116,104,99,102,102,110,99,101,92,91,111,120,116,99,106,105,108,114,102,94,116,106,109,110,106,101,93,100,100,103,99,108,105,95,111,109,96,101,102,97,95,106,90,98,99,94,109,116,96,110,118,98,99,117,115,101,108,87,110,110,102,93,100,89,88,108,108,102,106,103,109,113,117,115,114,108,102,110,110,102,116,106,100,104,94,102,90,104,99,99,102,111,104,97,106,117,89,105,98,97,121,103,92,107,95,102,104,109,109,99,98,102,104,89,108,96,103,101,101,98,116,101,100,100,115,110,93,120,103,106,102,102,107,101,105,108,99,103,110,115,107,105,102,92,99,106,99,78,99,108,96,101,99,102,102,109,102,103,98,102,109,108,105,103,110,115,116,92,103,101,113,106,98,104,93,108,105,100,102,111,102,108,99,107,111,106,96,104,101,105,103,94,97,106,96,97,107,105,100,96,120,88,94,91,112,113,101,101,107,97,114,101,104,108,106,100,87,105,104,95,95,101,100,98,111,99,98,107,102,122,109,105,104,102,111,102,109,109,107,104,117,110,99,100,102,114,101,98,93,104,100,90,110,100,99,99,98,104,113,92,93,105,103,68,106,99,92,116,122,100,118,100,108,108,97,112,107,98,103,109,107,100,105,111,102,108,113,95,100,106,114,113,88,102,119,106,94,106,108,99,102,101,99,99,109,95,116,99,102,96,102,107,111,95,94,106,95,104,108,110,97,100,100,102,112,100,88,100,104,97,105,106,104,109,105,108,95,110,109,100,96,121,95,106,104,99,100,103,97,98,98,91,99,115,120,115,87,105,115,109,110,99,87,100,105,97,102,95,110,106,87,89,124,113,92,101,112,99,117,102,113,112,105,117,104,100,100,95,108,98,105,101,111,95,101,113,103,100,100,98,113,101,90,98,100,113,104,121,105,98,97,105,103,103,116,100,99,100,110,91,100,118,107,93,110,98,96,104,99,103,106,116,93,103,100,97,104,96,114,101,109,99,107,105,95,100,109,115,99,94,100,95,100,99,105,96,113,99,101,97,110,108,105,96,108,98,96,104,104,103,109,111,104,116,102,113,101,103,102,96,129,101,102,102,97,104,103,96,116,108,85,105,114,98,97,92,108,96,107,93,109,102,103,110,94,101,98,110,109,98,108,111,111,113,103,99,104,116,98,102,110,100,102,98,98,105,98,102,98,99,105,103,104,107,99,109,116,113,102,113,104,120,106,120,100,101,103,117,126,102,100,109,110,100,93,100,107,99,102,107,109,101,107,105,91,101,101,114,103,90,107,100,100,87,90,104,107,98,109,103,105,97,124,117,92,107,112,99,96,97,99,113,103,102,105,107,98,108,98,100,97,97,89,103,101,102,93,95,100,109,87,105,107,94,115,105,91,99,110,104,100,102,89,108,111,109,115,112,104,114,100,109,101,109,96,110,111,92,98,95,100,98,110,103,121,101,103,95,97,117,111,117,92,102,113,96,98,105,103,111,85,100,103,107,109,106,105,109,100,112,101,99,95,107,101,103,104,102,104,94,93,99,105,109,103,91,97,97,94,110,99,112,88,103,106,97,116,112,100,104,109,104,103,85,110,108,106,95,107,92,100,100,99,104,99,102,89,105,98,109,105,111,110,97,106,99,101,104,112,101,91,107,103,97,102,106,107,102,103,87,95,101,103,110,105,101,98,101,109,90,97,81,96,90,121,95,95,103,101,100,98,98,96,100,99,102,106,106,89,102,80,88,106,99,96,103,101,95,103,101,116,99,101,96,86,95,102,96,115,94,98,97,103,107,109,103,104,116,103,105,84,113,117,110,111,94,100,94,98,101,101,100,107,99,88,102,110,106,103,86,127,91,101,88,105,93,96,89,93,102,101,102,103,95,99,105,102,115,105,101,106,94,104,85,115,104,101,99,109,102,109,117,107,90,84,101,96,109,106,99,108,100,92,108,89,108,99,95,99,101,104,93,102,98,101,103,108,108,98,103,115,88,102,102,88,120,102,96,101,103,95,92, +491.4567,101,97,82,113,91,99,114,114,102,107,111,104,96,112,100,97,115,120,103,111,100,102,97,95,91,95,91,114,100,99,97,103,106,100,114,115,107,93,113,109,125,96,98,104,103,105,118,100,100,99,96,100,116,111,95,95,104,101,103,101,97,94,94,109,90,106,91,113,105,96,104,108,97,119,109,111,96,98,111,109,114,101,133,97,99,107,98,95,97,105,106,98,97,97,84,91,103,110,100,78,102,112,86,106,113,106,112,100,117,90,96,109,94,87,103,91,94,108,111,102,98,100,99,113,100,113,88,98,109,107,105,111,99,90,118,115,95,105,100,96,101,98,106,100,103,105,111,100,105,108,98,101,95,93,86,83,97,81,101,110,106,97,107,106,117,102,97,105,99,103,101,116,97,102,112,107,103,91,110,111,100,102,99,121,101,101,98,95,110,105,96,104,104,98,114,93,108,107,98,93,100,105,112,108,99,105,99,96,95,104,96,112,109,111,110,104,102,100,107,116,99,106,96,103,108,103,104,109,99,112,104,109,109,110,78,120,99,103,100,105,113,99,97,98,100,91,103,106,106,110,102,101,104,106,98,94,113,106,90,105,98,106,96,119,96,91,96,105,105,105,114,102,99,85,102,104,95,112,103,79,105,103,122,90,99,109,88,78,107,104,120,104,104,106,102,109,105,111,116,103,101,106,99,104,99,104,103,112,109,103,103,104,96,104,101,103,94,103,106,107,100,115,105,100,116,108,103,102,96,107,100,90,108,105,96,108,105,102,109,119,97,97,103,122,104,103,90,103,108,101,96,102,91,100,119,107,112,115,99,113,113,114,99,94,112,109,108,108,98,101,119,99,104,109,104,110,94,111,92,116,102,107,108,98,102,105,99,106,116,100,114,98,97,109,107,118,108,118,96,103,103,108,106,105,95,101,84,106,97,99,109,106,96,108,99,105,104,105,119,77,109,101,93,103,96,106,94,78,103,120,90,107,114,103,88,105,100,103,90,122,113,115,107,112,90,105,99,99,103,115,107,101,115,112,102,104,110,113,102,111,97,104,105,115,110,109,107,96,102,99,96,97,110,101,95,99,107,118,95,101,103,120,104,92,109,97,95,105,96,102,106,120,106,98,113,105,92,111,119,106,110,92,101,101,95,115,107,100,102,112,97,107,116,115,98,105,108,118,93,96,109,100,99,108,107,105,106,105,103,103,104,103,105,106,103,103,108,110,96,95,101,110,124,101,109,111,105,119,108,105,83,109,110,113,110,96,125,104,99,106,109,105,113,96,100,112,123,113,109,106,102,109,99,115,100,97,107,97,90,105,110,103,107,108,111,109,107,99,102,112,103,100,110,100,112,108,103,116,105,110,101,109,108,104,96,112,98,108,99,104,129,103,108,112,98,109,107,95,107,113,111,96,108,102,102,117,74,113,109,113,95,110,112,114,92,104,119,105,108,107,108,98,96,107,110,104,109,101,104,102,111,73,117,100,100,115,102,99,108,100,98,105,117,110,102,108,106,105,104,95,106,104,106,106,101,112,113,103,96,103,114,106,102,98,107,100,93,103,98,110,96,103,92,109,117,102,103,108,93,101,110,105,103,115,103,116,104,103,95,111,102,105,113,111,105,93,96,104,113,115,102,110,103,100,103,92,97,106,116,109,105,120,112,105,103,89,107,113,129,99,101,98,69,107,109,109,103,105,97,101,116,103,115,99,102,108,99,113,105,115,97,116,97,106,97,111,93,115,108,106,104,94,107,101,104,111,107,102,109,103,105,107,108,111,103,109,109,102,116,114,116,118,96,116,101,107,102,109,101,101,102,115,122,110,102,92,99,102,110,103,107,113,109,90,106,107,102,104,108,100,102,99,112,107,108,101,114,91,103,104,111,102,125,106,91,103,102,112,107,111,103,103,108,96,104,97,99,105,113,103,100,101,100,104,112,113,84,94,106,101,102,110,110,96,100,102,105,89,106,109,104,105,95,114,87,106,110,113,106,101,111,100,103,97,101,102,91,111,109,103,98,103,100,99,98,101,95,104,123,112,107,109,105,107,112,99,118,97,96,100,117,88,91,104,118,99,100,126,114,105,117,108,106,105,92,99,104,107,101,92,104,96,109,97,101,116,96,114,98,100,100,106,93,104,98,108,110,98,111,118,101,107,96,117,111,106,108,109,91,103,118,112,99,104,101,94,101,97,100,110,108,109,113,110,101,91,104,99,113,111,100,99,106,101,115,102,97,106,107,102,93,106,100,109,100,109,112,106,98,104,105,100,96,104,119,113,110,103,101,113,114,105,102,113,114,108,106,111,100,80,100,114,104,106,113,97,106,91,90,109,104,105,114,98,98,97,99,106,98,108,100,109,98,107,105,107,98,107,105,104,71,113,103,112,117,109,99,109,106,107,106,104,108,98,96,104,99,111,113,102,100,117,95,120,111,94,122,99,97,92,105,94,87,126,113,106,120,105,101,100,99,103,102,91,91,107,111,111,110,111,110,110,106,105,117,119,94,112,108,101,100,111,102,109,101,102,114,105,105,105,104,105,108,106,113,117,98,103,105,113,109,115,99,93,107,90,111,93,111,105,105,108,104,115,106,104,100,101,104,111,100,104,108,102,124,93,100,101,103,109,105,85,102,98,112,106,95,101,110,111,109,101,99,109,118,101,112,107,102,111,105,115,95,98,106,99,105,90,115,97,101,70,113,104,98,105,106,95,109,110,92,119,108,102,110,131,105,103,114,113,105,105,110,95,96,101,98,106,79,120,112,107,96,102,106,104,110,108,127,108,114,103,96,117,114,109,108,103,108,111,106,97,101,97,108,98,110,103,98,108,110,103,113,108,109,103,95,117,104,121,108,97,98,110,100,102,111,114,107,106,107,113,110,116,110,92,104,108,109,108,107,101,106,94,115,102,105,116,113,105,102,105,111,117,127,114,99,106,107,108,91,99,74,104,99,110,112,110,111,113,102,104,105,101,98,108,110,113,104,92,112,115,114,104,106,115,109,99,103,100,106,102,109,119,107,113,108,109,112,105,98,106,94,98,103,106,102,97,111,104,110,105,103,101,92,107,98,95,93,88,111,110,97,104,102,112,98,105,91,101,101,103,117,114,103,95,103,106,99,107,100,113,97,101,103,108,106,109,93,100,108,99,97,113,122,115,112,84,113,111,107,111,103,103,112,120,107,100,112,110,99,102,96,109,104,102,96,101,103,112,106,107,99,101,110,111,102,106,101,110,104,107,109,105,97,103,112,105,117,102,114,100,99,103,97,101,106,104,95,97,108,109,100,102,101,98,109,102,110,102,95,135,107,98,105,112,109,105,94,102,106,109,102,102,99,113,102,111,106,111,108,112,100,100,106,105,109,96,100,106,97,103,105,102,106,103,109,94,112,95,93,112,104,98,102,106,113,104,102,105,102,94,104,106,105,87,108,102,94,96,98,108,108,98,97,106,103,99,97,102,94,103,108,101,113,113,107,112,103,112,99,106,98,105,102,95,108,104,98,83,106,103,103,110,103,113,117,102,97,112,102,103,105,104,110,110,103,109,103,108,114,108,103,103,103,125,106,109,110,102,92,92,96,112,98,104,109,106,87,104,108,109,109,109,102,93,112,94,108,99,98,99,105,117,106,103,106,108,107,117,100,99,100,105,93,95,101,100,90,98,89,112,100,106,114,105,119,105,121,100,111,96,116,114,106,109,112,112,97,115,106,105,112,107,104,98,125,104,109,100,116,121,109,96,116,102,99,128,101,108,106,111,106,102,118,108,107,99,112,105,75,103,88,107,104,101,112,107,95,99,101,107,92,92,112,109,107,95,105,110,96,106,96,104,109,116,107,94,110,95,103,110,106,107,97,115,94,101,89,106,104,104,108,109,94,112,103,103,96,99,88,113,95,110,104,102,94,107,131,111,103,104,106,105,99,102,108,109,100,103,101,113,97,106,79,117,113,101,110,100,97,100,104,100,103,105,104,115,99,100,91,115,94,106,117,99,114,113,104,115,114,110,105,86,116,105,110,105,91,112,117,100,92,106,116,104,117,102,106,104,106,116,109,103,111,107,109,100,112,105,98,104,90,100,109,100,98,117,106,103,106,101,96,104,101,104,109,98,105,100,109,96,122,96,108,99,116,105,99,109,110,113,108,95,103,99,116,110,108,102,103,112,112,109,101,101,125,103,111,102,94,95,102,98,106,95,105,98,103,108,98,100,101,103,106,87,111,98,100,99,103,96,106,97,102,96,100,102,112,97,103,94,105,104,119,105,106,110,90,96,101,112,106,117,101,107,114,109,101,107,106,105,106,106,107,105,99,102,94,104,102,95,112,105,109,102,110,103,105,107,113,100,108,105,108,112,100,101,101,93,92,117,106,100,111,113,112,110,104,96,98,107,100,94,100,111,116,103,108,107,106,110,92,110,98,101,95,105,109,110,83,112,103,95,105,101,108,101,112,101,100,95,105,105,105,104,116,103,104,104,99,121,108,113,104,106,104,109,102,91,94,98,117,105,97,102,102,109,109,103,109,99,102,95,93,102,104,99,102,95,108,111,92,98,85,108,99,94,97,108,109,93,102,100,106,114,120,99,106,105,103,100,110,107,104,101,103,105,113,106,102,106,103,109,104,103,117,91,105,109,95,79,98,114,111,98,104,103,100,105,96,93,107,96,104,98,106,113,91,110,108,106,95,114,104,103,104,99,85,92,98,106,92,108,102,104,105,124,103,103,108,95,93,89,98,101,108,91,94,126,88,108,93,105,100,107,91,87,101,104,112,105,105,91,101,106,91,88,105,103,105,111,108,96,98,104,105,109,105,105,101,129,91,98,100,105,92,82,107,94,99,107,98,119,98,97,87,126,78,91,109,97,102,107,110,102,109,99,92,100, +491.59729,94,96,88,103,101,97,97,92,104,103,91,104,102,88,99,112,84,99,112,99,109,115,102,109,112,104,101,99,107,106,108,103,105,114,105,93,96,96,107,93,95,100,100,100,103,105,98,106,103,108,101,87,86,107,110,103,98,97,96,92,90,105,99,112,98,96,105,104,91,113,90,104,104,111,112,101,101,113,106,108,96,104,99,106,101,97,102,99,98,106,104,118,98,103,96,110,102,102,99,108,95,103,92,106,102,99,103,105,103,96,100,100,94,105,102,100,108,67,104,112,96,109,100,111,88,106,99,105,103,105,86,102,118,105,96,109,100,109,95,106,98,93,104,101,105,104,102,99,93,91,112,99,95,91,106,95,108,94,103,104,95,98,93,102,108,100,108,103,107,113,112,111,100,105,101,100,99,99,106,104,123,98,108,95,100,94,92,100,103,102,109,116,100,109,95,109,107,109,114,110,108,98,106,102,101,102,108,109,103,96,99,104,102,105,106,115,101,106,70,114,119,95,107,101,110,111,109,95,100,99,100,100,109,117,111,100,94,112,108,110,97,107,108,122,100,105,105,103,108,103,111,111,101,116,108,104,94,106,99,100,102,111,106,108,108,106,102,94,100,107,101,108,118,105,103,99,109,117,92,97,107,90,107,112,102,104,112,99,106,103,99,106,101,109,110,108,91,98,106,107,99,106,106,102,103,114,108,117,105,108,96,118,97,96,98,103,114,108,81,105,103,103,107,111,109,100,111,92,99,107,121,112,108,98,106,105,104,90,94,95,105,105,98,99,108,118,116,110,104,100,105,103,98,99,109,106,120,108,102,104,96,110,113,100,105,109,104,89,103,95,107,110,106,112,113,101,126,111,98,101,106,106,97,112,95,108,105,109,116,100,116,90,102,119,99,108,108,112,111,114,116,112,99,107,104,107,112,104,107,109,97,103,106,101,88,99,106,105,106,118,103,104,98,119,100,106,105,92,100,117,109,116,108,117,108,104,108,117,99,107,115,98,106,114,88,110,107,107,94,110,84,88,123,113,99,108,94,108,107,113,101,107,102,103,105,124,107,105,113,103,109,106,98,99,110,94,97,106,112,105,109,102,109,103,102,96,109,101,113,106,104,115,104,117,110,91,104,105,111,119,107,107,102,91,92,105,95,100,106,95,107,101,98,115,107,100,110,110,104,105,99,98,111,94,107,102,116,107,108,109,100,104,119,110,86,102,109,106,112,107,113,104,118,99,98,114,112,95,108,112,121,109,90,104,92,98,102,102,115,136,111,113,111,121,123,107,115,98,103,120,113,106,105,97,122,105,109,87,116,109,113,108,107,94,114,94,105,96,114,105,99,121,102,104,111,112,106,92,108,98,111,107,102,99,99,96,106,110,99,104,98,96,107,107,101,111,97,99,110,105,116,112,86,109,112,102,92,101,113,105,119,99,100,106,108,98,101,99,111,105,104,112,97,95,109,102,105,102,106,95,96,104,102,111,111,120,115,129,91,117,112,110,112,100,100,101,108,90,112,102,106,138,108,103,134,102,103,104,100,108,101,101,112,99,101,103,99,113,91,122,109,107,91,97,114,108,109,91,105,102,106,110,106,102,98,97,105,105,96,103,105,109,106,109,108,100,99,95,103,118,117,105,104,85,113,113,112,92,105,110,104,98,131,95,103,111,112,100,101,106,106,109,94,103,99,82,100,103,112,98,109,103,94,95,99,105,117,101,102,106,108,81,107,102,98,110,98,91,96,114,113,121,109,107,102,90,113,106,99,114,104,110,98,104,99,103,100,105,115,109,105,115,98,104,110,100,108,112,102,108,125,102,106,94,115,113,123,108,82,106,98,109,112,99,110,99,101,104,111,100,119,101,109,111,112,98,102,100,99,92,100,105,104,102,111,103,109,105,104,108,95,110,106,105,104,108,107,113,94,106,102,108,111,106,101,106,133,115,111,122,110,100,127,98,105,128,98,102,109,103,108,111,110,114,111,116,114,101,107,97,113,109,105,112,99,105,110,108,96,104,99,110,103,100,115,92,95,113,103,102,110,100,109,102,104,110,100,116,112,106,97,111,96,105,113,105,101,96,98,107,110,109,97,95,112,118,109,103,106,100,100,99,94,92,109,99,94,97,102,110,109,113,101,102,102,98,113,98,103,96,116,114,101,99,107,112,107,109,115,97,107,104,113,111,110,98,107,104,103,106,102,104,109,97,104,97,109,98,107,106,101,107,111,92,104,108,121,108,111,121,112,110,109,105,107,97,104,91,102,107,117,102,105,99,114,100,113,124,92,108,100,102,109,102,109,99,112,110,105,92,86,112,112,120,103,107,94,105,102,94,99,100,99,107,98,100,110,106,98,112,94,114,96,108,108,103,109,109,112,106,101,78,114,105,103,111,90,108,102,97,99,103,106,101,112,103,93,105,117,99,109,106,95,99,101,102,106,109,104,100,108,100,102,98,108,109,95,104,112,103,113,104,107,97,106,107,105,120,111,100,98,104,110,102,102,105,108,102,111,106,91,106,102,101,97,109,109,103,103,104,106,104,120,102,115,113,101,108,112,100,107,107,92,96,102,95,79,94,99,112,108,111,92,109,112,105,101,98,116,101,97,101,105,110,114,105,103,101,98,95,100,94,99,110,97,112,109,106,104,102,102,119,97,110,96,94,99,95,93,104,95,108,130,108,115,107,100,100,101,103,102,106,105,114,99,98,117,107,117,104,101,108,107,102,104,106,122,109,103,113,102,112,104,106,105,106,110,113,103,101,113,107,91,96,85,114,105,120,107,106,97,106,101,110,94,102,103,106,99,98,108,104,108,101,107,106,123,107,113,111,126,98,110,110,102,109,113,113,116,106,98,94,125,122,102,104,99,113,91,107,109,107,101,106,97,104,104,108,110,100,105,100,117,101,110,97,95,102,109,98,110,96,104,101,108,77,107,106,99,108,101,113,106,102,115,111,110,106,114,101,106,117,101,112,108,95,100,106,112,106,103,102,100,103,104,98,105,104,104,101,109,102,98,90,117,110,107,97,103,109,104,109,120,106,113,107,115,109,108,105,109,100,94,118,101,103,98,107,101,103,110,103,106,103,106,106,116,106,101,108,116,107,102,98,113,101,113,109,97,109,100,100,102,98,108,94,112,114,98,106,105,96,108,107,80,106,100,106,109,112,105,99,95,105,107,106,107,116,99,83,103,109,104,107,105,105,113,101,107,108,105,104,104,102,111,109,98,98,106,110,110,101,113,108,104,100,93,110,111,109,103,107,92,95,101,98,96,108,114,93,115,102,99,99,94,99,127,97,108,99,104,115,109,110,109,91,98,93,81,104,105,106,102,108,106,105,108,103,106,100,102,96,104,102,106,106,113,93,99,105,106,98,101,112,107,109,104,97,109,107,106,105,105,103,101,112,103,103,99,107,104,95,108,107,95,96,113,107,105,98,90,99,117,105,97,106,113,117,97,69,108,99,124,94,97,107,94,107,108,108,100,107,94,100,104,105,120,107,104,80,115,111,113,101,104,106,97,106,102,107,102,121,108,103,99,90,101,85,106,103,104,107,105,106,96,118,104,106,100,104,99,103,93,103,95,111,100,91,103,96,93,105,108,101,106,100,105,102,103,107,97,101,103,109,84,116,96,102,111,102,103,105,105,101,116,101,104,101,105,112,101,103,97,79,102,106,101,101,116,102,111,91,106,109,101,100,87,94,101,102,97,108,108,103,97,102,104,109,102,103,100,101,106,101,97,106,107,72,106,107,121,103,104,104,103,107,125,104,98,100,99,115,87,108,114,106,96,108,96,109,111,108,108,103,94,96,101,101,97,107,107,112,108,73,103,96,109,105,104,100,106,112,108,105,103,103,97,91,103,95,99,109,100,103,83,99,103,113,94,103,101,111,95,100,99,121,114,105,107,100,101,103,106,106,95,100,98,100,99,109,104,105,102,99,108,106,111,105,99,112,99,106,103,101,100,108,97,112,96,117,105,112,112,109,99,100,92,99,109,111,108,108,112,111,115,100,109,106,111,105,108,95,107,109,97,106,95,105,106,77,113,114,100,113,96,84,110,111,97,104,110,120,100,108,108,105,93,102,109,101,105,106,109,105,93,107,116,96,101,111,100,97,101,93,102,103,103,96,103,112,98,99,103,92,102,109,105,107,98,99,100,109,106,97,100,106,96,111,107,92,103,109,119,102,108,94,108,108,109,100,83,106,104,102,117,94,100,106,98,98,106,111,105,98,103,106,104,106,107,102,105,95,117,103,104,113,100,105,125,91,93,115,100,85,123,121,92,102,109,113,109,89,108,100,102,100,117,115,100,101,105,115,96,97,104,101,96,92,102,113,90,101,113,103,99,100,110,91,96,93,83,106,105,106,108,108,99,104,93,103,93,91,116,110,107,109,100,102,82,109,109,101,91,85,101,97,99,105,98,93,100,105,105,123,103,87,90,74,110,102,104,113,93,97,102,101,88,100,110,102,111,108,102,104,113,98,114,111,103,102,102,100,93,101,110,105,102,123,108,97,118,107,93,106,108,103,105,103,112,104,97,103,108,95,103,106,107,104,91,105,109,102,115,110,96,121,91,104,100,100,103,109,120,105,94,97,104,106,94,105,99,93,93,91,120,109,105,104,97,96,108,88,103,111,99,95,103,102,108,98,105,99,106,103,111,95,106,105,96,99,112,90,99,109,107,100,110,110,99,105,92,93,105,99,106,84,112,101,112,113,109,109,106,104,109,106,92,96,105,105,112,106,110,102,93,109,110,106,107,105,103,104,98,90,105,115,94,108,101,111,102,101,99,97,108,106,80,102,97,104,110,102,103,106,87,98,97,107,105,102,91,104,94,107,108,91,107,101,116,92,108,96,95,111,106,114,106,105,100,107, +491.73788,109,97,94,100,109,108,113,98,110,101,89,101,103,95,106,112,92,95,111,97,94,106,100,107,104,103,100,107,102,88,105,113,105,105,113,101,108,100,108,108,105,101,101,103,113,112,90,103,111,107,98,98,102,99,107,112,105,96,105,105,109,107,121,105,98,102,80,100,101,110,113,105,92,100,100,113,74,97,100,109,106,117,111,113,89,92,114,112,100,116,106,102,105,99,102,92,104,102,106,98,101,111,106,107,104,103,106,110,112,98,107,93,114,104,104,108,102,109,104,114,102,102,103,103,107,104,114,91,108,113,109,112,88,101,110,108,103,111,110,102,108,103,102,94,120,108,104,103,108,110,98,92,93,100,98,113,104,111,100,102,99,103,104,114,105,110,96,100,113,109,108,110,100,109,110,104,105,97,102,111,102,102,115,92,100,101,90,92,101,101,106,107,115,103,94,108,110,123,114,104,101,113,125,101,104,108,104,94,109,99,98,111,104,97,110,98,99,111,108,95,105,117,118,113,95,104,102,101,103,102,101,104,99,110,101,113,96,107,83,100,108,97,93,98,101,105,96,105,94,105,98,97,98,98,102,98,116,102,97,104,98,107,97,105,95,112,107,117,109,99,87,98,100,100,111,106,92,118,99,108,107,107,113,118,111,96,94,120,104,102,105,107,99,105,103,105,112,111,115,100,111,102,104,113,97,113,112,106,105,111,96,119,114,119,108,101,102,100,101,113,110,112,105,122,105,103,101,102,114,117,98,110,107,116,121,102,92,106,104,109,107,103,96,117,113,100,113,92,107,88,98,105,99,118,105,100,113,107,100,109,101,99,101,98,106,103,105,111,99,103,96,103,111,100,99,107,110,96,109,102,138,116,91,110,99,92,96,105,107,86,114,106,95,104,104,106,121,109,98,111,107,107,105,104,104,99,71,111,107,109,96,107,107,95,124,96,99,96,105,89,101,105,97,99,111,91,103,103,99,110,103,107,110,89,109,109,102,115,103,107,112,104,119,99,86,105,104,100,112,104,105,104,99,106,103,111,102,92,109,99,99,106,109,104,115,105,108,102,110,108,102,120,98,119,95,100,96,102,108,100,101,101,114,122,116,107,113,120,106,94,114,111,106,118,104,107,123,117,112,103,109,102,104,96,107,112,96,99,91,122,116,101,105,104,103,100,105,106,113,114,107,95,116,113,109,101,102,107,100,101,93,108,128,106,97,120,106,101,121,109,100,102,99,111,109,112,112,96,99,108,104,103,106,109,103,105,104,102,111,102,104,99,77,106,106,99,101,97,100,102,97,104,105,101,110,119,105,107,114,128,113,104,104,99,108,101,112,104,102,98,117,106,102,107,106,99,104,102,111,118,108,139,109,102,113,107,102,118,88,113,116,108,106,93,103,111,108,117,108,112,105,109,109,101,103,97,102,117,112,112,96,113,105,109,103,105,108,96,115,96,107,103,94,101,113,87,108,105,121,107,107,105,101,118,94,97,105,108,94,106,98,109,101,114,121,111,106,85,105,108,98,113,110,105,107,110,100,107,121,87,109,105,99,111,109,106,100,116,103,110,98,97,106,109,84,114,96,110,103,96,82,100,99,104,103,106,103,109,111,104,103,111,97,112,100,100,110,106,99,101,103,105,81,106,99,118,101,102,98,96,99,100,129,103,113,111,108,97,108,104,109,95,120,111,99,96,107,108,101,108,110,100,97,101,109,110,89,111,116,116,105,98,100,114,108,109,93,109,119,106,106,89,115,108,103,100,113,98,99,100,85,109,105,104,93,100,96,106,103,105,110,105,109,87,104,103,106,96,111,104,101,104,105,106,103,106,108,110,90,104,117,99,115,102,106,92,123,125,106,110,101,112,102,113,113,105,110,95,92,115,121,109,121,110,97,109,99,114,119,104,100,100,110,90,103,92,109,104,128,91,97,105,86,114,101,108,109,105,138,104,110,122,110,79,102,105,101,109,125,112,109,112,103,106,109,95,106,112,113,96,107,102,96,96,95,99,119,120,101,117,101,120,114,96,111,104,109,106,95,105,92,104,107,103,101,104,102,107,97,113,95,114,120,102,94,105,115,102,110,112,109,114,101,108,109,115,110,100,100,86,107,118,105,109,104,106,81,109,110,106,97,101,104,107,105,97,113,98,112,106,101,93,105,100,105,110,118,99,109,113,117,109,105,119,95,110,108,113,106,98,109,93,108,107,101,107,110,107,116,100,102,109,95,108,112,102,108,98,104,97,104,94,102,124,118,108,91,111,98,106,107,103,106,110,115,97,109,111,100,100,102,115,115,112,101,118,118,107,98,111,97,114,113,110,107,103,90,96,102,101,102,100,113,117,102,113,96,90,98,105,101,96,110,104,84,96,105,109,100,103,112,105,104,114,105,111,100,112,114,103,103,119,110,103,109,106,105,101,101,99,106,109,101,109,101,98,102,101,103,110,112,97,113,109,101,115,104,103,107,106,99,104,105,91,91,108,89,85,111,100,109,106,95,100,120,113,93,115,106,112,109,136,103,85,107,106,107,104,112,107,103,108,109,117,117,109,103,117,100,109,105,94,103,99,74,106,104,107,98,108,101,94,91,136,98,106,102,105,102,106,106,98,103,106,108,111,110,100,93,100,111,106,97,93,107,102,111,96,110,97,96,101,109,108,107,101,110,97,102,100,103,112,96,90,106,104,104,116,98,114,99,116,104,113,105,112,103,107,105,110,98,109,91,107,106,91,108,111,110,109,108,116,99,120,102,115,102,107,107,99,95,112,105,95,114,99,111,107,99,110,91,100,97,108,106,93,102,113,106,105,111,108,100,96,99,103,115,112,105,106,100,96,108,111,104,100,100,109,102,112,126,108,105,114,103,106,121,113,108,111,100,98,100,103,102,100,105,106,89,111,93,108,95,109,113,109,111,102,113,108,103,112,96,109,114,111,100,107,107,104,102,99,116,106,104,103,103,99,105,96,106,110,105,100,110,102,111,108,102,98,110,102,94,99,103,119,109,116,116,105,101,103,104,100,108,112,110,115,99,105,110,98,114,102,104,117,102,108,109,110,100,108,116,104,98,108,79,93,93,109,109,111,107,103,102,96,114,108,114,104,93,107,102,98,104,95,112,111,97,97,91,102,104,111,105,107,98,100,107,109,110,96,101,109,103,113,99,109,113,105,115,105,101,100,95,100,108,102,113,114,101,102,101,101,94,105,101,103,99,95,99,97,104,101,108,104,111,113,115,117,99,92,109,108,100,96,91,112,93,113,111,107,116,116,104,104,106,99,99,107,114,108,102,99,120,102,120,106,106,103,107,95,111,94,112,107,92,105,110,102,96,100,114,91,95,104,122,101,98,101,103,103,90,109,103,101,113,101,99,101,107,104,97,98,98,108,111,101,83,101,99,110,102,106,105,110,117,106,95,104,103,103,113,107,93,106,99,107,109,95,109,96,110,106,100,110,112,96,104,94,102,112,115,103,96,105,108,98,113,103,115,111,94,116,95,110,106,114,95,95,105,116,97,106,97,100,104,110,105,114,99,116,116,98,103,110,97,112,112,106,106,107,96,97,96,106,98,112,98,72,102,97,109,99,103,102,115,98,107,105,109,105,112,105,103,100,102,102,102,111,102,89,109,102,101,96,107,103,96,93,110,108,107,104,107,105,88,114,112,105,91,106,113,117,96,92,113,135,109,98,108,93,103,100,107,101,108,104,100,109,103,111,111,97,102,113,93,110,105,98,110,94,108,87,102,102,108,101,101,106,106,74,107,101,91,91,100,92,102,103,99,96,101,109,107,96,111,113,104,112,100,117,113,116,103,105,104,99,108,100,106,106,98,103,109,119,112,102,106,99,104,106,106,112,110,110,102,104,103,99,106,106,96,105,98,103,105,78,98,112,94,101,111,106,110,111,104,104,106,93,108,99,103,107,111,107,106,102,106,100,100,104,100,107,106,102,109,104,106,109,108,97,102,98,104,104,106,113,96,90,111,109,106,105,117,100,107,113,107,101,106,118,93,105,103,113,115,109,115,103,109,109,98,97,96,95,108,110,136,99,111,114,107,108,98,100,112,106,87,109,98,91,98,102,112,102,106,112,99,104,101,116,117,103,103,98,107,98,120,110,108,97,108,105,100,100,114,104,96,104,115,100,106,88,112,108,95,102,102,105,96,117,100,90,105,100,97,108,108,114,109,104,109,117,117,100,89,102,104,114,95,90,111,100,103,103,104,113,102,103,124,110,113,116,102,113,103,107,117,107,105,99,105,107,86,101,98,99,108,94,107,110,114,104,107,96,111,139,111,120,111,104,102,110,113,108,108,103,113,105,110,99,110,96,101,99,106,88,116,112,98,106,106,105,95,104,110,97,120,100,117,119,111,109,105,103,99,87,107,110,106,101,109,110,109,100,106,116,91,101,109,95,102,106,101,107,104,109,96,114,103,111,104,103,100,97,100,111,107,111,93,104,108,108,107,106,94,128,98,101,97,100,102,103,106,106,111,113,102,112,105,102,81,101,88,109,113,108,96,103,108,101,103,107,96,101,98,89,107,93,99,97,113,106,107,106,120,106,100,102,101,99,98,106,114,103,111,84,105,92,96,98,111,107,95,100,109,101,101,107,95,110,104,107,110,96,117,100,107,105,96,98,106,99,109,101,102,96,99,103,86,99,105,105,106,105,94,136,104,99,106,113,106,92,99,113,103,93,87,98,102,106,106,98,107,99,120,100,105,104,106,100,103,92,79,105,110,107,95,104,113,103,104,100,125,100,104,103,97,106,65,107,126,104,93,110,107,109,104,103,111,102,102,102,98,110,108,100,96,96,119,110,107,105,105,104,102,115,107,98,107,99,105,102,99,101,103,119,97,100,88,106,99,100,103,91,94,104,101,112, +491.87845,116,113,97,91,92,102,93,114,100,105,100,111,101,117,99,100,110,116,108,102,107,116,102,103,98,78,110,119,97,117,92,113,86,98,106,97,96,98,101,104,101,109,98,100,102,112,101,109,109,108,101,110,98,97,100,108,113,100,106,108,100,99,113,90,97,114,92,93,111,109,108,111,99,98,102,103,104,111,96,100,94,121,114,115,104,102,101,110,106,92,109,103,97,103,94,97,108,102,103,104,90,99,106,115,101,97,96,103,101,92,95,91,117,105,110,108,108,100,109,97,108,98,109,107,98,98,102,93,103,108,96,115,104,95,110,105,103,103,106,88,98,113,92,102,106,102,96,102,90,91,116,103,108,88,88,106,110,91,98,107,99,98,108,92,128,90,106,133,100,104,107,102,102,77,115,96,92,108,105,111,104,108,108,106,94,114,80,98,106,133,102,109,94,109,101,100,108,103,104,101,91,112,101,99,95,109,101,111,111,112,99,98,108,106,102,103,97,107,106,117,103,110,118,108,105,94,123,99,106,108,103,103,100,102,109,105,111,109,110,102,104,105,83,109,109,83,110,101,100,105,99,106,109,107,104,113,101,101,105,106,103,103,101,107,101,113,109,106,105,102,112,101,106,101,108,112,79,106,97,101,100,100,117,99,94,110,107,109,107,93,98,108,113,115,104,105,107,102,111,108,99,109,100,110,92,115,109,115,107,99,107,112,109,105,84,106,125,104,110,125,97,96,108,98,114,101,98,97,102,116,95,99,99,124,99,95,99,111,100,118,101,100,98,99,121,100,88,108,109,96,110,99,122,91,108,108,110,109,111,104,100,99,104,83,111,106,96,110,90,87,107,120,111,103,105,94,108,98,101,99,107,107,90,103,106,88,96,101,103,98,110,105,114,105,105,105,97,102,105,108,107,102,96,116,107,97,98,105,108,110,109,104,118,113,92,102,92,101,102,111,86,101,88,110,114,105,103,99,100,97,98,103,103,116,106,100,103,117,94,99,114,95,105,99,88,102,101,102,109,116,99,106,109,108,120,102,106,112,107,106,104,97,87,109,99,98,106,105,102,104,117,99,101,106,96,98,105,113,99,84,113,106,102,84,102,98,111,105,107,99,115,108,105,99,103,99,106,110,98,107,96,106,102,118,102,109,96,110,106,104,110,110,98,95,91,104,108,105,76,104,96,98,108,109,108,99,108,120,105,104,106,108,100,99,106,109,105,94,106,91,96,101,95,112,115,102,111,108,118,124,104,108,99,121,107,93,102,102,105,102,95,111,99,113,97,113,106,95,100,100,101,107,80,115,105,101,99,98,102,111,109,100,103,102,110,104,109,117,113,104,107,106,111,113,107,102,109,100,101,107,118,99,107,107,106,100,109,103,99,105,103,101,110,102,113,112,103,101,109,105,110,106,101,97,116,94,95,102,113,113,102,120,113,98,99,103,87,87,103,91,103,105,94,95,102,99,113,88,109,114,108,101,104,110,99,115,102,115,92,103,111,94,117,106,103,107,104,97,117,104,130,109,100,105,94,100,111,110,117,105,108,113,108,94,106,121,96,105,106,111,111,103,122,95,99,103,119,105,117,107,98,104,92,94,105,111,106,103,93,101,103,104,110,109,102,121,114,112,109,87,101,105,100,107,101,94,98,102,109,107,121,107,102,93,106,101,109,99,122,118,104,111,109,107,111,92,108,109,105,109,119,102,99,88,106,114,114,86,111,97,100,108,97,107,97,139,103,112,96,101,120,99,106,110,108,102,107,134,99,105,112,98,103,109,104,112,98,102,92,108,95,111,109,108,102,114,110,109,95,104,111,104,102,105,103,105,112,115,107,104,110,109,107,114,111,106,103,116,104,92,103,105,107,103,107,112,107,103,113,118,99,95,104,114,109,108,109,111,113,115,91,103,106,98,101,104,95,92,105,100,96,103,108,104,94,103,98,103,108,107,111,102,103,100,105,102,93,113,111,107,101,117,106,112,121,102,99,91,105,112,102,110,100,109,111,109,99,118,103,98,95,103,105,109,109,88,95,95,109,105,101,101,96,101,92,104,98,98,104,106,117,113,105,111,116,93,94,107,100,114,109,102,95,111,108,105,106,110,110,99,102,103,99,109,95,104,99,98,114,99,86,106,103,103,94,109,106,109,102,101,105,102,114,117,120,117,86,129,103,104,115,109,103,106,121,101,106,97,112,102,125,111,87,96,94,102,107,109,83,103,112,103,93,100,98,101,104,102,113,92,111,117,72,105,99,108,103,97,103,100,105,65,93,109,105,117,105,107,100,95,104,90,93,109,104,76,101,106,94,101,123,101,105,107,108,101,106,101,109,97,106,98,99,86,112,97,104,107,98,109,98,114,101,99,106,100,111,105,99,97,110,111,96,104,115,99,101,103,104,102,106,103,118,74,104,105,96,87,123,96,109,109,111,102,124,91,103,113,113,103,97,84,83,102,106,95,95,102,95,108,92,94,109,91,95,104,104,103,104,99,109,104,102,111,103,109,108,93,106,102,101,99,94,95,106,94,110,103,94,98,123,99,111,103,104,98,108,111,103,92,107,121,95,102,110,100,107,114,107,100,100,96,103,109,102,94,102,113,113,93,105,100,108,98,102,103,94,103,119,101,98,106,114,109,103,92,104,113,112,104,111,101,105,104,117,101,117,101,100,129,104,108,103,106,112,112,108,117,103,97,113,96,85,100,100,109,98,112,103,102,101,108,104,69,105,114,105,110,111,123,95,100,108,106,112,115,117,107,109,102,109,118,106,110,103,104,99,112,108,95,102,113,83,101,96,112,113,99,95,106,105,91,99,102,101,101,115,102,110,99,106,116,99,107,102,99,111,110,115,113,114,107,107,106,102,99,107,112,100,108,113,108,108,119,102,94,102,104,104,98,88,108,120,96,118,105,94,98,102,104,105,105,112,98,99,100,99,117,108,104,90,102,106,104,107,99,107,100,107,107,105,106,102,103,105,106,111,100,109,105,99,110,100,116,100,105,101,100,101,102,102,96,96,105,113,98,108,104,115,93,74,97,109,101,113,115,115,104,106,100,104,117,107,113,101,102,95,94,100,113,122,103,106,101,105,102,101,96,103,109,106,98,95,105,114,96,106,101,112,91,105,102,98,110,122,120,99,99,98,99,91,102,91,104,136,100,100,106,108,79,106,108,92,95,103,116,108,102,97,102,101,105,98,111,102,102,102,105,109,91,101,105,105,107,97,105,110,100,109,101,99,102,102,103,101,101,110,105,102,99,113,106,105,107,104,101,94,95,105,99,97,88,98,105,112,110,113,116,120,109,100,101,99,105,104,108,104,103,113,104,102,99,108,99,102,99,97,109,104,101,105,101,107,102,105,109,107,102,87,104,97,105,98,105,104,97,97,106,111,95,96,109,116,96,104,100,113,109,101,103,98,95,104,97,94,96,99,113,104,102,103,98,94,92,103,102,100,102,113,87,100,105,108,106,106,101,100,108,114,95,105,100,98,105,108,113,104,112,113,117,103,111,109,107,110,100,115,108,100,94,105,99,109,104,99,110,102,109,106,107,105,88,99,106,105,107,98,91,115,91,97,98,110,95,104,93,108,103,105,101,97,107,100,108,99,101,94,92,104,98,95,101,115,88,93,103,102,102,106,100,109,108,106,105,102,96,107,109,101,100,107,106,106,110,112,95,107,101,108,103,109,96,108,110,94,98,112,111,114,103,101,97,110,96,98,107,105,103,102,102,111,96,95,98,113,107,106,103,112,121,100,106,91,102,105,112,112,101,97,107,98,90,109,111,95,106,121,108,107,97,95,104,102,95,103,99,112,102,92,102,97,113,107,105,111,106,103,95,113,105,99,95,104,101,98,107,109,98,96,97,96,100,114,103,104,103,106,77,98,104,102,99,97,98,94,100,106,106,116,97,108,117,104,107,99,104,116,103,105,108,107,93,105,110,107,112,96,108,97,104,116,120,103,103,102,109,109,97,97,101,103,104,96,105,97,103,99,107,118,99,111,104,107,124,106,110,106,108,110,114,106,111,103,104,126,99,101,95,104,109,111,93,108,91,106,96,118,101,95,113,120,110,103,99,100,104,102,95,110,108,101,110,109,98,110,98,108,111,111,100,99,109,90,106,92,75,101,100,100,111,106,117,105,91,103,100,101,102,89,99,105,108,103,104,100,106,94,104,104,110,111,103,107,111,102,85,99,101,104,96,109,123,106,102,108,95,90,105,99,97,92,108,104,104,84,105,96,104,125,93,110,111,109,107,108,103,98,95,98,112,97,97,97,106,105,98,97,108,99,92,93,99,109,92,104,91,108,97,91,110,96,106,97,104,102,104,104,98,108,118,110,100,100,102,120,108,101,106,113,97,104,110,102,95,102,103,100,117,96,101,113,96,111,111,97,101,101,97,113,99,102,104,90,101,98,105,115,111,100,101,106,99,98,124,98,93,106,108,95,105,103,104,113,95,132,104,100,110,116,94,100,100,107,94,99,99,110,116,103,99,94,98,104,97,101,100,98,103,87,102,103,107,97,102,95,97,109,99,93,102,108,92,106,104,102,108,90,119,80,98,95,91,107,90,111,100,108,100,99,98,108,105,97,104,80,70,109,96,93,106,109,99,100,89,110,113,78,108,108,106,96,93,91,104,104,109,105,97,102,95,110,106,84,112,102,104,100,99,104,97,100,102,104,99,101,95,94,89,96,99,104,107,106,113,92,107,118,106,110,113,106,79,106,106,111,113,108,104,99,96,118,95,93,100,100,106,102,96,98,101,95,104,106,105,105,98,75,100,86,106,104,92,104,77,110,91,101,94,79,127,106,108,92,74,88,98,107,111,114,116,99,99,93,94,94,106,109,98,102,95,123,101,112,93,108,112,98,103,98,104, +492.01904,108,68,106,77,114,113,83,114,100,106,112,109,108,98,93,100,99,109,108,108,104,82,81,98,83,98,100,98,105,101,96,104,96,99,95,104,116,101,108,113,93,108,104,95,125,124,106,97,86,104,80,88,89,98,118,123,103,100,106,99,94,105,110,108,94,114,74,100,99,91,113,117,95,103,97,111,101,119,98,91,101,100,104,107,102,97,104,97,109,103,88,100,114,93,116,97,97,93,87,110,102,102,95,100,100,95,100,111,97,105,104,92,94,105,99,101,101,105,99,74,95,106,108,111,104,122,117,88,101,102,100,120,109,109,102,107,95,103,103,94,106,99,88,102,102,104,113,110,95,100,102,97,98,93,93,109,97,110,99,100,118,101,104,103,106,105,100,100,98,104,124,115,98,105,103,108,64,104,74,110,103,106,101,107,109,110,112,100,116,108,109,104,102,94,90,110,113,105,111,99,103,103,108,110,103,104,104,92,104,94,109,113,136,110,109,107,108,100,98,105,104,100,110,95,93,110,104,108,107,111,106,107,100,100,98,104,100,113,106,98,93,105,101,102,90,98,105,103,100,106,99,107,103,105,101,101,109,112,100,108,102,112,102,106,100,100,93,97,101,96,119,97,100,110,108,96,115,99,98,104,106,100,95,99,107,100,92,91,116,98,76,95,102,112,107,102,108,108,95,108,99,104,106,108,95,101,95,104,96,118,110,118,109,100,116,94,110,98,103,112,106,99,112,106,92,104,97,86,122,103,108,109,116,104,107,111,101,102,94,98,105,96,103,105,112,108,100,105,85,116,103,100,107,106,111,100,112,108,109,96,90,109,103,80,105,91,110,103,96,108,122,110,103,113,99,105,100,112,107,103,105,109,98,110,105,82,107,102,102,93,108,97,101,105,82,118,108,100,95,105,107,110,105,101,103,105,100,102,109,105,106,112,109,94,104,103,104,84,106,106,94,96,106,96,106,106,100,104,114,108,105,104,106,104,100,103,104,108,114,104,116,104,109,107,105,93,98,104,102,109,101,109,99,115,107,101,108,82,107,95,94,88,98,71,103,117,85,112,101,114,93,109,104,99,116,107,81,112,105,117,97,112,112,110,106,97,107,118,100,103,105,107,104,99,87,105,100,113,117,99,117,129,102,103,108,108,103,126,112,100,106,110,112,115,103,110,118,99,83,101,101,108,108,106,103,113,121,105,104,112,104,108,101,96,107,99,122,104,107,90,97,102,100,101,115,108,100,103,106,104,115,114,106,110,105,91,98,116,98,99,109,101,107,99,113,104,105,97,109,101,94,111,106,105,98,100,99,91,103,113,101,98,100,110,94,100,110,103,90,116,136,108,73,117,113,105,109,121,110,106,96,89,107,99,61,90,105,103,99,107,103,116,105,100,124,109,105,107,110,102,106,103,111,99,99,108,100,111,111,108,93,112,116,112,102,112,95,102,101,106,103,114,94,100,104,94,105,106,101,96,101,107,110,101,111,92,104,103,97,93,113,113,101,113,115,114,103,97,101,96,108,102,113,122,100,103,112,108,103,108,96,96,103,97,105,106,104,102,106,109,108,108,105,114,104,100,87,106,108,102,91,78,112,76,97,113,103,95,101,100,99,97,94,106,108,110,123,98,100,95,92,98,102,107,94,103,93,113,110,117,95,109,102,93,98,105,96,85,104,107,116,105,97,102,99,107,104,103,105,110,118,106,101,111,120,113,106,98,106,108,115,104,97,123,99,103,98,102,102,113,120,112,108,114,120,98,101,100,100,96,100,118,122,115,104,97,97,116,109,105,107,110,104,107,106,104,95,97,102,107,103,98,101,107,100,120,104,106,99,98,111,100,106,96,105,92,111,105,106,102,106,107,106,106,109,115,108,106,112,106,104,110,115,101,112,104,108,101,92,102,104,114,100,104,112,100,111,101,102,100,104,106,105,98,100,111,118,93,104,130,108,114,107,115,100,108,92,97,144,115,105,107,104,111,104,86,106,95,97,114,101,95,104,108,116,107,104,119,97,106,90,111,94,114,105,94,99,104,110,111,99,104,108,103,96,104,109,108,94,111,108,108,119,80,106,108,110,130,109,100,101,101,102,107,109,88,103,106,105,110,109,113,104,101,100,105,107,91,106,99,104,100,107,101,97,105,103,103,105,87,100,98,108,99,106,102,106,128,103,100,97,100,105,102,107,111,104,105,105,100,98,110,100,112,100,117,135,114,114,108,89,111,101,106,91,102,106,109,99,104,95,106,112,111,108,112,109,94,105,96,102,99,101,95,108,102,105,114,95,102,99,96,99,112,102,107,99,107,103,98,104,103,100,107,105,95,103,109,100,90,89,106,107,103,96,98,117,100,114,82,99,106,100,99,85,107,108,92,108,99,90,93,98,93,100,110,116,92,103,112,98,104,104,105,93,91,99,109,105,99,97,105,110,97,83,100,117,104,105,106,91,110,105,102,105,101,94,97,98,80,120,80,107,98,111,103,100,90,116,105,94,99,109,94,107,121,88,102,104,98,97,109,99,109,103,96,92,102,87,108,104,92,104,103,93,103,99,124,103,106,114,121,91,75,100,98,113,111,91,97,102,101,94,98,104,106,96,109,113,102,110,110,120,127,104,113,108,104,117,106,112,76,73,108,101,102,102,108,106,97,92,101,104,108,100,111,102,90,113,103,105,112,96,110,107,106,102,106,96,116,98,99,109,109,98,93,100,95,93,102,95,101,101,97,108,111,104,111,109,104,103,109,96,108,102,103,97,106,105,96,107,111,120,99,111,109,117,109,107,101,77,124,106,106,105,110,106,111,103,115,100,108,104,100,107,122,101,104,104,113,109,100,110,109,110,107,105,105,108,113,108,103,101,109,109,101,105,99,102,105,112,111,99,111,101,107,109,106,107,104,103,104,106,132,106,103,107,100,96,110,99,114,109,96,109,112,98,94,107,102,108,104,104,96,108,104,103,108,100,92,105,113,100,107,98,102,105,106,116,106,103,104,106,113,123,104,99,102,106,101,85,107,91,112,109,96,108,108,96,106,95,103,102,105,112,99,99,106,102,106,96,104,107,102,101,106,95,97,101,97,116,114,113,114,104,111,114,113,109,97,98,104,110,114,116,98,96,112,114,101,101,119,93,93,111,100,109,94,105,99,99,102,113,93,103,107,106,92,110,106,102,102,105,96,111,100,112,101,95,106,107,114,95,106,109,104,102,108,99,103,107,111,102,101,102,104,95,99,103,108,102,95,97,114,106,102,99,100,102,99,100,98,113,113,100,113,95,100,110,104,95,104,109,108,102,120,92,111,112,105,109,100,97,106,102,98,99,99,98,96,99,124,101,88,104,106,111,98,109,102,100,87,98,103,96,110,108,110,95,98,99,100,102,110,119,114,104,103,108,111,98,108,122,110,101,99,106,110,102,109,94,99,107,93,107,105,103,110,100,102,98,99,116,98,103,98,106,113,96,99,108,113,101,98,103,101,110,105,103,107,110,102,103,102,104,97,111,102,100,105,105,99,102,102,104,109,105,100,91,104,106,105,102,109,105,106,101,98,94,96,124,106,102,107,97,99,102,89,108,107,100,113,104,95,103,101,100,94,105,102,107,117,95,120,109,104,91,113,115,95,118,98,113,96,100,111,106,98,102,105,113,111,95,100,103,95,107,103,109,102,108,115,103,112,90,92,114,91,97,99,106,105,104,102,86,101,106,107,95,100,97,89,102,88,101,99,98,101,109,113,118,109,99,90,115,105,97,97,108,124,113,93,98,99,98,89,74,97,108,117,100,112,95,117,99,95,109,102,104,103,111,98,103,113,102,107,107,83,101,101,93,100,94,100,101,96,107,104,109,103,113,100,105,106,106,105,104,109,101,106,108,95,97,103,108,96,106,100,100,103,100,111,91,102,102,85,115,92,105,112,100,106,95,102,102,113,108,106,114,112,100,120,98,110,103,101,109,105,100,100,102,109,107,105,102,105,108,118,96,95,103,99,91,95,100,99,111,104,121,92,109,105,113,108,108,98,101,107,100,87,106,104,103,105,107,113,101,94,112,105,112,105,99,102,96,104,109,102,90,98,106,107,102,105,103,108,101,116,100,122,122,115,121,114,106,95,111,113,105,112,96,97,105,102,99,109,100,111,111,102,99,102,105,106,102,101,116,93,97,103,107,108,109,106,91,108,101,109,111,106,92,107,109,115,98,95,102,110,113,122,102,100,125,95,105,107,111,110,102,98,112,103,105,107,111,104,103,97,103,104,113,98,106,105,99,101,109,98,101,108,100,110,102,104,106,91,101,107,101,103,104,109,101,100,105,109,105,113,99,105,99,100,108,100,110,100,92,111,99,96,92,100,106,100,99,100,100,102,112,102,113,113,111,109,100,103,108,99,105,108,93,85,113,103,96,114,97,136,106,103,104,107,106,97,102,107,103,100,103,83,108,107,99,109,103,109,108,103,110,99,103,100,102,92,96,114,106,111,91,96,68,108,94,109,109,93,96,102,105,101,101,98,98,105,99,94,101,111,107,112,110,102,93,104,113,101,110,107,97,73,97,103,101,110,104,95,99,109,109,98,92,98,109,102,101,86,105,104,98,104,91,104,107,99,99,112,98,103,120,100,102,100,102,102,101,106,103,105,109,105,105,102,98,101,96,95,107,97,118,98,94,91,88,99,96,101,112,117,106,93,96,116,114,105,108,100,110,96,97,86,90,104,94,104,97,111,100,115,102,102,102,98,94,95,109,109,92,108,103,98,113,103,103,111,114,113,106,91,100,97,99,96,98,97,98,113,103,108,95,97,106,91,102,98,103,100,101,109,95,94,102,99,105,95,94,102,110,108,117,104,84,103,96,97,104,112,96,116,93,97,106,99,72,104,113,96,113,113,111,99, +492.15964,112,105,97,81,90,89,116,102,97,92,111,101,101,92,97,99,115,99,97,122,111,93,94,119,101,102,94,89,119,91,123,120,102,95,101,109,98,117,88,86,99,100,98,106,105,110,97,105,92,106,100,106,107,112,87,126,116,101,98,90,105,104,89,97,97,114,105,105,111,96,98,108,93,99,101,109,90,103,87,107,101,105,94,113,93,113,92,99,109,102,101,89,112,109,106,99,110,95,97,95,101,96,113,101,109,111,99,108,103,114,104,68,105,100,93,110,94,106,104,108,97,106,104,108,102,106,113,97,93,101,99,119,102,120,106,95,100,108,105,101,102,99,114,114,110,98,110,110,99,108,103,116,81,90,98,131,105,107,103,100,75,89,107,98,102,101,102,92,101,103,100,109,106,91,105,105,99,90,104,92,106,103,94,109,103,98,90,101,98,93,101,96,106,100,113,107,106,100,102,107,100,94,99,104,93,105,100,103,108,105,93,103,111,102,107,105,97,100,98,108,104,102,94,98,92,102,107,103,105,106,100,109,103,110,104,96,101,115,94,82,110,112,92,104,97,95,105,116,105,105,85,95,108,105,104,107,104,113,92,94,84,100,97,96,81,107,96,97,108,98,107,99,106,105,111,115,97,115,109,101,95,101,108,105,109,94,109,104,107,64,110,102,104,103,114,112,119,106,105,99,96,105,103,106,114,101,116,99,99,108,104,109,108,101,103,102,116,103,106,109,96,97,117,97,102,101,101,92,118,114,115,97,100,91,108,104,104,100,101,110,99,117,99,105,108,105,99,102,116,95,109,115,101,91,94,102,109,112,100,119,109,101,91,95,96,103,103,110,102,111,115,107,105,104,91,103,111,98,104,108,109,109,90,100,101,101,106,96,103,91,110,99,97,103,100,103,100,94,112,90,88,110,106,103,103,103,94,108,118,98,101,95,113,100,91,105,115,107,106,103,114,89,105,94,102,104,108,103,107,100,99,99,95,106,98,106,92,112,106,108,110,99,103,109,101,103,96,102,120,114,100,101,104,102,114,97,102,113,112,109,107,117,103,112,109,103,103,100,114,101,104,104,112,109,113,105,97,108,97,118,104,106,94,107,102,103,117,97,108,92,108,106,108,101,112,104,94,101,113,97,102,98,102,99,98,113,98,94,114,95,98,98,122,113,93,105,99,95,78,101,98,102,95,108,106,104,102,98,104,99,110,109,126,104,95,109,112,106,103,95,110,105,104,102,117,103,100,86,106,106,122,110,108,112,105,100,110,90,97,91,101,105,84,116,104,105,95,100,98,110,85,108,93,108,104,96,101,106,105,117,99,107,108,106,106,95,108,105,103,113,108,103,100,85,109,99,103,98,105,112,113,109,120,104,93,93,116,109,117,108,105,104,99,106,101,106,103,87,136,109,94,117,109,105,138,103,93,111,113,104,115,89,100,102,103,107,100,104,105,95,97,100,94,104,106,103,83,101,103,109,98,107,113,105,111,107,102,108,94,89,85,122,100,113,101,104,110,105,103,113,123,109,103,105,98,114,105,101,92,103,105,100,111,109,103,120,97,108,102,115,109,100,103,115,95,100,108,100,112,99,89,109,113,101,99,115,107,113,111,101,109,94,106,112,106,100,97,109,104,96,113,101,103,107,77,99,105,109,108,116,104,95,102,107,102,99,96,104,118,99,111,108,116,107,100,114,105,105,104,100,108,102,97,102,106,106,111,82,79,104,91,102,95,96,103,104,99,129,105,100,109,99,98,100,103,94,104,103,111,104,111,98,104,112,99,129,103,94,102,111,121,108,96,106,106,106,103,104,115,106,92,107,99,104,108,115,115,115,101,115,106,128,111,98,111,94,117,118,99,97,108,103,103,107,109,98,100,100,105,110,107,104,102,113,97,111,100,108,104,96,108,104,106,102,105,111,93,113,104,105,101,107,114,105,98,129,102,105,105,105,100,102,101,98,96,90,92,104,104,100,83,112,125,94,97,102,107,100,99,95,99,103,103,108,109,103,87,109,100,98,96,108,100,100,112,101,121,103,101,100,100,116,109,104,101,101,99,110,95,101,115,117,104,91,77,105,94,108,103,102,96,109,96,100,99,96,90,102,105,120,103,109,104,116,103,110,123,101,102,105,102,106,104,100,105,95,105,104,95,112,103,102,98,96,105,100,86,108,97,107,109,108,111,102,104,101,102,100,98,105,97,107,95,107,99,103,115,105,108,107,98,92,96,105,103,100,99,109,103,113,108,101,107,108,96,105,112,108,96,109,93,99,104,95,113,112,103,100,94,99,102,110,103,96,99,113,99,113,103,104,111,107,108,104,106,100,117,104,108,108,105,106,116,103,109,96,94,103,66,101,109,110,93,104,89,114,109,117,96,103,106,109,119,106,99,96,104,112,106,98,114,103,94,115,106,107,90,96,101,102,95,101,105,95,106,103,100,100,104,101,100,113,105,118,111,107,104,110,130,107,121,105,102,99,95,103,99,119,118,108,100,106,109,105,112,120,102,100,117,98,107,96,102,112,109,102,111,108,98,106,113,101,97,103,102,95,110,105,93,105,93,113,110,105,111,99,104,119,98,97,109,98,108,113,95,113,102,109,90,96,103,95,75,106,113,105,108,101,110,116,99,94,115,85,105,104,117,112,107,98,113,108,115,95,110,103,101,109,113,102,107,107,100,87,110,107,113,113,100,108,108,112,98,110,87,116,102,110,105,113,104,102,106,87,103,111,111,111,101,109,104,106,106,98,107,105,104,108,113,107,105,104,103,95,108,106,103,103,107,114,99,116,106,108,106,115,97,115,108,95,112,103,110,98,107,107,98,102,102,111,107,104,135,101,83,103,106,103,94,109,106,108,85,107,132,101,100,103,95,107,112,110,111,116,95,98,102,103,102,106,108,110,108,113,87,113,109,110,111,103,103,107,110,83,107,105,108,110,109,105,94,107,109,114,93,100,100,113,98,124,101,91,111,119,105,110,102,110,109,99,115,99,110,106,113,101,104,95,109,95,106,109,101,92,97,106,106,106,101,114,100,103,104,107,100,121,109,106,102,103,107,108,108,112,97,117,114,106,117,97,114,124,106,100,108,90,103,101,104,96,106,99,99,119,118,101,106,99,95,119,112,117,91,95,107,105,105,101,114,100,111,106,100,107,97,98,105,103,111,114,113,103,109,112,108,99,123,110,103,99,103,104,99,100,102,98,107,115,104,111,123,97,105,92,115,101,103,98,120,105,114,102,91,142,111,104,104,100,106,116,110,113,113,105,98,107,97,108,104,103,118,104,109,101,100,115,106,106,88,109,98,100,104,115,118,102,90,97,116,87,105,104,110,115,99,112,110,100,102,105,112,104,90,113,109,115,104,95,106,103,99,107,109,105,103,103,104,103,113,100,97,100,99,109,113,102,104,104,92,101,110,108,129,104,113,106,108,108,109,99,109,105,94,105,100,105,110,109,82,98,116,92,103,80,95,111,110,109,107,112,108,110,95,88,106,105,95,106,102,112,107,94,97,113,109,94,102,103,105,106,100,97,120,98,104,107,102,104,102,115,108,112,103,100,97,112,110,110,109,99,100,109,106,107,99,92,118,108,108,104,99,104,110,92,108,101,117,105,107,103,93,115,89,116,108,100,106,109,106,125,101,110,106,100,106,108,112,109,103,101,105,98,111,109,68,100,109,112,107,93,104,101,111,111,109,99,119,94,99,100,101,96,133,112,110,104,107,103,113,109,102,98,96,105,113,112,95,107,96,105,114,99,98,102,113,96,99,107,103,115,117,112,104,108,103,106,110,106,113,95,104,110,113,96,124,107,99,106,101,110,106,113,111,116,106,98,112,99,94,101,100,115,99,111,102,112,109,102,101,99,102,102,92,104,98,103,90,106,98,98,107,99,103,103,110,106,110,99,98,103,110,102,110,109,99,102,103,86,93,99,104,104,100,99,105,103,106,107,103,102,115,107,104,104,109,105,105,99,96,108,108,92,113,101,103,115,112,109,96,104,113,111,108,99,106,106,106,98,106,123,105,100,103,106,111,107,103,100,107,101,105,110,91,107,109,98,111,100,112,105,105,107,108,96,102,106,91,103,98,94,108,104,101,99,95,109,106,96,104,98,104,100,121,107,101,84,104,110,102,117,103,89,105,106,108,106,100,106,111,99,97,111,115,106,109,114,97,102,99,102,117,111,104,97,125,84,108,105,98,112,111,99,106,110,107,100,101,103,103,104,105,98,98,102,104,100,106,105,110,103,75,101,111,101,98,104,86,91,114,111,80,99,111,95,100,103,111,103,112,116,103,104,109,105,109,103,113,107,106,119,117,118,107,95,121,106,102,101,107,111,107,107,106,111,112,103,108,99,112,100,110,119,106,107,110,105,105,101,102,108,112,98,108,106,84,96,119,111,106,116,107,109,106,112,122,109,98,93,76,103,99,111,114,95,105,104,103,106,103,115,100,113,108,111,117,106,110,99,99,102,90,94,92,113,107,105,115,103,99,105,106,106,95,107,111,102,113,105,99,102,108,113,100,115,112,107,112,100,112,110,95,104,103,102,99,113,104,98,104,97,111,107,124,106,113,99,99,109,99,106,90,100,110,113,112,130,102,106,115,102,102,112,109,99,108,105,123,103,103,106,106,103,99,94,95,101,108,99,102,99,106,106,104,121,99,102,113,111,103,104,99,110,87,116,97,84,95,92,102,101,98,101,117,109,102,116,108,103,98,105,99,106,98,106,98,90,95,128,89,113,91,99,102,106,102,121,102,101,87,105,99,114,103,111,101,101,105,109,108,99,98,113,95,109,96,127,115,121,80,100,107,99,102,100,100,105,89,106,103,100,107,88,106,94,101,95,121,124,110,87,121,92,88,96,99,92,94,104,105,99, +492.30023,103,110,100,104,110,106,87,95,90,79,114,106,100,105,102,113,97,103,97,99,115,109,112,111,105,112,94,104,101,108,100,102,106,110,96,101,99,103,97,98,100,111,99,98,108,107,92,94,89,104,103,108,95,102,116,97,103,97,103,93,99,103,102,85,107,108,97,103,102,106,101,94,111,105,100,109,103,105,98,121,112,104,114,104,99,110,101,98,97,104,91,110,103,106,99,112,101,104,97,96,114,99,99,102,89,86,94,107,99,113,103,113,87,92,101,110,104,109,93,94,102,101,97,80,106,105,100,104,109,110,96,108,100,107,102,110,107,113,92,89,109,113,94,105,98,97,106,103,99,87,108,99,102,98,105,100,109,107,86,99,98,97,103,99,100,102,101,105,96,104,93,106,96,75,99,91,105,98,108,97,116,102,102,99,111,108,99,90,111,101,109,84,112,97,111,104,89,94,98,101,103,105,110,98,111,99,105,109,107,111,88,100,107,105,100,101,103,116,108,102,104,101,99,96,94,105,108,108,100,105,113,95,99,103,106,83,100,98,108,101,109,97,98,102,101,102,113,103,105,104,108,113,106,108,106,100,97,108,101,103,102,112,103,91,96,110,113,105,99,98,103,101,116,101,104,106,102,105,105,105,99,108,105,100,94,92,82,108,110,92,102,119,114,111,113,116,107,95,108,111,107,101,115,102,101,109,105,122,104,111,96,118,108,108,99,109,97,110,96,101,101,98,107,70,101,110,105,97,117,112,100,102,100,108,115,97,109,102,102,105,110,85,104,114,111,100,121,99,116,99,116,106,96,106,106,88,106,126,94,105,103,100,106,100,101,106,106,102,102,95,100,111,107,95,92,109,103,106,103,101,106,99,103,103,103,102,111,98,102,110,116,91,95,114,103,108,117,99,103,117,98,99,104,101,101,107,107,109,99,112,112,104,96,109,102,92,104,101,107,108,109,97,82,105,107,97,93,98,102,107,90,103,116,99,105,105,101,113,104,104,113,98,99,119,88,107,93,106,102,106,106,101,99,121,111,106,110,101,107,100,112,118,103,105,90,117,94,97,102,100,94,92,110,101,89,103,98,108,112,113,97,113,103,87,99,103,97,103,95,99,101,114,110,109,95,90,91,101,101,105,122,114,90,108,99,97,91,113,122,108,117,98,106,108,116,107,104,100,100,98,105,91,107,102,113,115,110,96,95,105,113,105,101,108,101,110,102,98,105,108,107,112,103,98,103,106,103,107,109,103,99,98,106,103,110,101,107,105,98,99,106,99,98,117,100,108,108,92,102,101,92,97,105,107,97,92,123,100,100,104,98,104,98,97,105,86,112,108,86,99,116,102,94,99,105,115,116,98,105,110,94,104,102,113,112,98,88,105,112,108,108,106,110,116,106,100,105,108,107,97,120,108,106,90,101,105,114,105,108,90,98,100,107,99,107,87,94,97,95,105,105,106,102,107,97,94,104,104,113,114,100,104,111,114,102,104,106,116,113,107,103,104,99,97,93,109,113,95,98,112,81,105,112,114,96,99,107,114,100,110,116,107,110,104,104,109,99,111,105,102,100,112,113,95,103,103,103,100,100,93,109,93,107,111,91,105,126,118,105,102,105,99,112,101,106,113,96,97,102,100,101,115,108,125,108,103,84,117,103,113,103,110,100,102,108,106,103,112,116,107,86,99,119,127,100,105,103,111,96,105,117,99,102,72,109,107,111,113,72,105,109,104,106,90,105,111,104,107,103,112,118,97,106,114,117,110,105,99,104,92,109,106,115,97,96,123,104,109,90,105,107,97,115,109,104,103,103,110,111,102,107,102,102,103,103,112,101,112,116,100,123,102,101,97,108,105,105,94,97,100,109,106,100,107,112,120,105,113,104,110,107,111,101,106,108,115,106,102,109,102,96,109,110,104,94,99,98,102,115,99,102,105,107,102,96,105,105,101,94,107,112,109,117,103,98,113,98,103,112,99,95,113,111,101,111,109,100,96,95,104,110,102,110,107,106,110,96,112,116,109,99,94,116,106,108,98,88,110,101,104,100,103,103,105,93,106,96,97,111,102,106,110,110,110,117,95,93,107,118,100,96,97,112,106,119,107,106,98,104,116,108,117,100,112,99,108,101,108,111,101,104,101,100,109,85,101,103,108,91,109,99,113,114,107,108,110,113,105,115,108,102,107,113,109,114,110,95,108,99,114,101,110,111,102,109,106,114,105,67,101,105,86,92,98,101,107,98,83,118,103,106,105,96,94,103,99,118,117,91,100,108,80,98,94,115,109,97,102,101,98,95,100,108,106,111,111,101,93,103,108,96,99,104,104,105,105,98,100,101,99,104,102,102,99,89,99,103,97,98,101,98,111,112,102,100,112,107,108,100,81,102,106,105,110,93,99,95,98,110,104,100,103,114,94,99,98,91,87,105,96,105,107,98,117,98,104,109,114,87,114,107,112,102,100,115,113,102,107,99,112,96,103,107,109,95,103,98,103,108,106,103,76,115,110,108,102,100,108,109,104,106,98,104,96,106,103,102,99,99,102,104,110,101,110,108,115,104,107,99,110,108,120,108,91,92,90,76,107,102,95,117,94,95,103,103,98,95,95,105,105,116,106,109,103,100,100,100,102,112,113,99,101,117,93,101,107,98,106,113,108,94,109,99,107,101,88,107,110,104,92,114,102,98,101,109,105,108,112,119,118,92,103,106,109,104,102,113,102,103,94,99,109,112,109,107,102,108,109,112,98,106,112,97,105,113,113,114,112,106,99,107,107,109,102,102,102,120,103,100,119,90,103,102,107,106,115,107,110,94,93,112,93,102,102,107,100,103,99,104,94,100,110,96,103,96,108,108,104,100,111,108,105,104,110,109,113,102,104,102,96,113,100,105,109,105,93,106,104,91,97,101,88,95,117,115,96,110,96,99,107,116,112,111,104,79,106,100,99,108,106,100,95,95,107,93,105,126,105,105,98,91,103,107,98,105,115,108,98,108,109,103,89,109,121,112,96,106,93,109,103,93,94,91,102,110,97,95,106,110,105,108,116,110,107,105,108,109,107,99,98,105,103,105,118,91,109,104,103,106,101,104,120,105,85,110,101,103,109,109,99,105,108,102,107,99,96,108,92,115,102,107,102,99,105,103,101,109,99,96,103,116,106,124,112,99,101,103,110,95,104,95,105,98,106,100,111,100,94,104,108,99,104,101,111,102,90,113,103,105,101,109,98,82,105,97,99,95,105,115,105,92,97,103,103,104,87,108,104,95,106,108,100,105,98,64,103,108,110,121,107,114,101,106,104,101,114,108,104,109,110,126,95,104,99,112,91,107,98,80,96,104,110,108,111,94,91,109,119,95,109,105,105,103,109,113,120,112,94,80,109,96,100,121,101,104,97,99,98,101,100,99,107,109,100,98,108,99,119,102,106,106,102,107,108,110,106,107,110,101,105,115,86,100,92,107,103,99,102,127,95,95,107,101,90,121,99,109,95,113,102,107,108,98,107,102,104,95,102,103,107,109,102,102,101,93,113,112,97,99,108,101,106,96,94,110,102,99,98,100,109,113,108,93,97,106,86,100,107,106,109,104,103,112,109,102,94,108,104,98,103,99,78,112,97,94,93,104,108,97,109,95,106,110,99,125,92,106,88,101,112,95,96,113,111,111,107,98,109,99,93,102,102,94,94,107,94,106,100,111,111,104,92,99,109,104,96,112,111,101,103,95,110,99,104,112,103,107,114,105,108,103,103,108,97,88,119,103,111,103,108,106,102,104,118,100,102,111,104,102,111,105,103,122,110,126,107,103,107,104,105,120,103,114,94,100,114,103,101,113,111,112,107,101,110,107,115,112,101,108,101,95,101,110,106,109,103,102,110,112,94,98,92,96,104,105,108,106,102,97,101,104,102,99,104,102,108,99,102,105,96,108,110,106,95,94,99,118,131,107,103,102,105,121,100,97,105,98,105,101,106,75,103,112,117,102,100,104,106,96,116,103,116,106,95,76,108,95,103,104,107,102,115,95,98,114,108,111,98,102,92,95,116,99,93,108,109,108,104,104,103,95,97,117,97,99,105,106,106,103,107,77,102,110,113,110,100,104,98,97,98,100,101,100,112,108,143,108,97,103,97,111,100,112,107,112,110,109,116,96,115,97,105,110,100,107,101,105,100,96,109,103,90,111,107,101,102,105,108,105,106,113,102,98,103,97,98,101,100,108,104,102,106,112,112,102,104,111,106,100,87,108,82,72,116,105,117,109,98,111,79,109,102,102,110,109,105,79,107,109,108,110,100,96,108,105,101,106,100,125,110,101,106,107,133,116,105,98,96,102,105,106,102,111,105,109,102,110,96,103,96,116,102,102,120,120,104,99,107,95,105,98,109,111,117,108,101,103,114,97,101,103,95,92,108,88,68,108,109,107,98,109,110,109,102,100,100,101,99,114,105,107,105,96,102,114,100,104,91,104,107,108,97,115,83,121,102,104,105,103,109,106,111,106,105,90,104,105,94,98,97,103,93,106,104,104,102,103,106,97,107,98,106,107,103,99,109,127,91,111,109,95,99,109,106,95,119,115,94,99,100,98,100,101,102,112,117,93,102,105,101,106,104,101,107,111,116,103,104,94,98,99,100,99,100,91,104,108,104,108,108,111,107,111,117,102,93,104,92,111,96,104,97,113,105,104,105,112,106,103,104,99,102,98,102,105,111,103,103,121,91,106,95,107,107,113,110,105,94,114,95,115,87,90,99,97,99,91,96,72,99,94,102,105,99,107,97,107,104,116,98,115,101,104,94,98,91,105,105,109,91,114,102,88,100,111,110,108,102,102,103,92,112,99,89,87,95,89,101,97,98,112,83,105,100,104,108,96,113,128,94,87,108,100,102,110,99,107,95,95,103, +492.44083,115,96,103,106,100,103,107,88,95,107,96,89,112,102,94,117,94,104,118,111,108,95,118,84,99,96,90,113,100,104,107,102,109,98,109,108,96,110,95,99,93,113,98,110,97,95,107,94,107,107,99,115,94,105,100,104,96,101,75,89,108,103,116,97,102,101,94,110,113,119,90,98,97,97,101,108,100,86,86,98,93,99,105,95,93,92,99,104,102,100,119,102,103,98,104,109,120,95,122,102,89,96,113,107,103,108,112,101,87,108,96,98,93,109,93,105,106,85,107,105,106,98,106,99,110,93,105,87,93,112,95,105,103,102,105,103,98,108,108,124,111,103,100,109,114,95,90,97,96,101,102,104,112,100,103,99,98,94,110,101,94,123,110,101,94,91,95,113,110,91,98,104,104,108,103,101,92,97,104,96,109,105,108,107,114,96,103,100,111,96,101,99,95,107,115,104,109,106,107,102,106,100,94,95,101,97,98,103,117,97,91,78,120,105,95,102,101,93,105,87,105,102,103,100,106,102,109,98,100,107,101,101,113,91,105,101,102,95,95,99,105,109,113,116,97,104,123,103,109,119,102,113,108,86,103,104,104,106,102,106,96,101,101,96,100,104,100,105,103,105,126,103,111,100,104,97,101,112,98,105,97,93,103,94,92,108,92,105,96,99,103,105,90,104,108,104,108,104,107,102,93,103,105,83,91,105,102,108,109,86,101,112,104,110,109,101,103,112,119,97,106,110,101,100,107,109,109,99,108,108,113,108,109,110,113,104,104,91,104,103,103,98,103,101,100,110,96,105,113,109,109,99,100,99,103,86,112,108,103,105,108,107,94,108,104,106,101,116,102,100,122,99,96,108,110,115,108,104,97,110,104,121,104,105,101,99,99,98,108,110,108,106,91,107,98,108,104,94,117,109,106,98,96,86,102,107,106,101,102,86,95,96,105,103,112,105,111,138,102,121,88,98,98,99,83,91,92,94,102,117,84,108,114,70,103,102,105,106,103,110,106,99,95,107,100,102,97,115,97,117,106,107,111,102,110,103,106,108,103,104,95,101,105,100,114,109,93,101,88,105,106,99,108,101,116,106,111,107,107,106,99,113,112,104,105,100,106,109,100,104,104,103,102,93,100,96,108,98,112,108,113,100,106,103,105,100,112,99,94,95,108,110,114,95,104,97,107,109,107,89,99,99,108,114,102,121,114,106,109,99,101,68,99,96,109,104,97,99,109,117,105,95,104,105,114,102,114,108,109,110,97,109,118,100,106,98,108,107,97,97,101,101,117,99,97,106,104,102,99,117,103,98,99,111,108,103,111,105,105,107,102,95,110,86,95,109,108,106,112,99,96,98,108,101,96,102,105,91,97,104,101,130,113,100,104,99,88,93,108,112,106,109,112,105,113,97,102,106,111,113,109,113,91,95,103,98,88,101,93,120,96,101,115,110,116,99,104,98,109,101,99,105,99,101,102,99,106,105,96,109,108,109,107,115,108,102,115,98,104,104,109,102,105,101,100,106,94,98,96,98,108,103,112,109,89,117,102,106,110,109,106,99,83,101,95,108,119,99,108,108,100,108,109,104,115,106,112,99,91,99,107,104,114,118,98,103,106,89,93,94,116,96,98,95,123,97,102,104,102,99,102,106,116,102,111,89,113,112,111,106,94,108,103,103,99,99,102,95,115,110,125,93,106,113,115,104,108,114,106,114,108,96,93,101,93,103,102,104,105,112,99,90,87,91,101,109,102,104,98,112,102,104,107,108,101,108,101,103,106,91,119,104,105,110,112,98,99,117,110,106,120,106,108,121,110,97,106,112,109,115,97,114,97,105,108,109,103,113,111,82,110,100,107,104,110,96,106,108,104,105,111,102,108,111,107,101,105,98,104,109,110,106,106,103,111,85,102,97,104,103,101,98,117,96,105,109,101,105,99,127,103,104,106,103,102,98,94,112,116,102,101,106,108,96,102,102,97,104,113,91,111,100,115,111,100,94,109,83,99,103,109,117,109,108,106,103,96,112,103,116,97,109,99,103,101,102,103,102,99,113,113,111,109,111,109,103,103,105,104,131,112,106,112,100,83,94,94,117,114,111,106,109,105,113,83,102,104,94,101,106,110,102,113,113,94,107,100,92,99,112,117,113,110,112,95,99,103,94,97,101,95,106,102,105,113,106,108,91,111,102,105,112,99,112,111,114,103,98,96,116,100,92,103,102,102,105,121,98,100,101,100,106,109,94,108,102,108,108,107,107,102,103,112,114,120,109,106,100,82,104,107,101,103,96,99,106,107,99,94,107,106,106,105,99,105,108,105,102,82,102,104,103,99,95,104,101,94,102,102,102,102,110,100,95,102,99,110,102,103,102,102,103,107,101,96,100,108,107,101,93,107,97,105,104,98,110,116,87,105,102,100,106,87,89,105,99,114,73,111,109,86,107,99,112,94,105,108,104,88,94,92,101,107,95,101,98,104,98,111,102,103,113,115,103,95,107,100,93,102,110,107,102,101,91,107,115,100,111,103,116,77,114,98,101,112,104,100,124,92,106,112,109,113,96,103,110,108,106,109,105,110,98,115,116,106,98,104,108,105,106,111,104,102,109,113,91,109,106,119,103,110,100,127,103,84,91,100,102,102,101,101,87,107,91,112,101,100,109,100,103,103,111,103,109,105,106,115,106,104,106,109,109,103,105,101,106,110,102,106,113,95,98,111,112,94,113,105,106,110,112,122,106,106,108,118,114,112,110,95,112,102,100,102,104,123,113,101,120,109,98,112,96,93,105,108,107,102,111,97,99,97,113,105,114,97,92,99,100,104,113,95,100,119,90,106,103,98,109,100,107,99,108,113,101,98,113,107,110,108,109,96,98,104,108,103,119,101,110,112,105,102,104,106,86,97,104,102,93,98,106,95,98,111,105,106,104,87,104,107,99,103,111,110,102,103,102,104,96,115,112,102,111,103,100,97,106,115,110,111,107,109,125,111,100,102,101,103,110,106,107,109,106,109,100,113,99,104,107,113,128,108,87,111,109,114,95,96,104,96,108,97,92,68,98,89,105,117,102,113,109,91,104,104,109,91,113,103,100,97,91,103,102,79,102,110,101,109,102,101,94,101,95,108,102,105,108,103,106,104,102,109,94,106,74,102,114,101,120,106,106,93,99,105,110,99,103,98,99,103,106,117,107,98,97,104,114,100,108,109,103,111,99,102,113,105,103,105,129,108,102,107,102,100,102,104,111,97,97,109,96,120,100,88,117,106,102,117,118,102,101,106,115,108,104,115,95,98,99,98,104,96,96,107,107,102,117,107,99,98,95,104,98,99,117,107,120,106,94,97,96,113,103,94,89,94,102,86,111,110,105,101,110,122,103,92,94,100,105,123,97,104,111,106,104,100,98,103,101,106,96,90,108,103,103,104,109,115,109,112,117,96,97,95,107,99,106,119,94,108,112,115,103,96,97,103,108,98,88,103,88,117,107,102,99,98,104,96,72,125,104,101,111,97,106,100,105,98,108,102,114,104,125,98,97,95,94,113,102,119,106,97,110,100,101,110,106,104,101,104,116,111,109,97,110,110,108,101,103,101,100,95,88,92,105,104,106,110,97,106,103,109,108,98,97,103,92,100,103,101,98,97,101,106,109,93,68,102,105,106,103,102,100,100,94,99,106,106,100,90,109,100,97,103,118,96,95,112,81,105,107,93,98,100,99,95,107,108,102,98,113,117,111,98,103,108,98,87,102,106,112,99,114,111,99,108,114,102,98,109,120,102,105,105,107,104,96,100,100,98,122,100,101,96,100,102,104,104,104,105,108,101,94,119,115,96,103,92,112,104,110,89,110,95,119,101,109,110,116,92,93,88,105,99,113,110,97,74,113,95,98,92,102,95,99,99,108,102,117,97,95,97,109,96,106,114,96,103,104,85,109,114,115,111,103,106,96,97,94,108,101,99,109,113,104,99,104,108,93,102,93,106,105,111,97,108,101,99,92,95,119,110,93,107,106,108,107,106,117,92,105,104,97,99,106,113,104,107,95,104,110,121,106,100,97,103,108,106,103,110,107,103,112,104,110,109,108,105,112,98,90,103,100,105,109,110,113,95,101,96,98,104,102,97,107,113,99,99,97,105,106,96,108,97,109,106,110,108,99,109,106,100,114,91,96,105,110,102,96,105,95,112,108,138,99,120,106,107,112,98,96,106,117,104,97,98,80,62,103,104,103,113,100,105,99,108,99,112,111,108,96,108,107,107,128,83,105,97,112,102,109,108,99,113,107,94,102,86,98,113,113,101,93,96,102,101,95,104,104,98,113,108,110,101,106,99,104,95,116,89,97,117,103,103,106,104,106,108,101,105,119,94,98,104,102,109,96,123,105,113,106,89,95,103,111,104,91,101,105,103,109,98,77,104,98,102,106,101,84,109,105,112,98,96,107,111,108,122,84,95,103,116,92,111,111,103,113,119,102,116,113,98,99,95,108,113,109,99,102,99,103,94,98,94,102,108,99,104,102,102,103,110,88,98,103,92,104,102,104,109,111,115,103,104,105,102,98,100,96,105,101,110,99,116,105,122,99,116,102,100,104,96,94,110,104,115,100,106,105,100,112,87,104,102,98,95,100,117,105,110,101,103,98,117,103,98,84,109,107,97,103,93,101,112,95,100,105,101,98,109,98,92,95,109,100,105,93,113,101,103,108,94,100,91,117,106,105,99,95,107,84,100,98,96,105,100,98,98,102,95,105,99,98,94,100,107,106,90,114,117,70,91,113,104,105,106,87,103,99,95,87,69,100,97,108,102,98,108,108,103,97,105,100,103,101,99,109,108,104,93,114,112,105,98,101,100,101,90,98,108,96,106,104,96,98,99,111,115,112,83,97,124,123,88,106,90,120,98,105,105,98, +492.58142,104,102,97,109,102,97,104,112,99,101,102,121,95,112,90,100,108,111,103,100,95,93,99,103,100,101,86,102,96,117,99,90,105,95,113,113,124,96,99,105,102,99,93,102,106,101,106,106,83,117,97,98,99,87,127,104,101,107,120,99,103,100,110,96,117,109,113,103,99,97,109,110,92,108,110,117,103,113,110,104,110,102,109,110,113,101,107,106,97,97,120,106,89,98,127,86,121,94,116,101,101,119,117,113,95,102,98,92,108,101,109,113,116,110,95,110,103,100,80,103,106,84,115,106,103,111,110,106,108,122,106,90,98,99,111,97,95,97,105,100,95,109,102,108,102,108,110,105,100,101,101,108,110,102,91,106,93,112,117,97,98,108,99,101,121,109,124,96,111,82,99,102,113,103,120,117,113,95,99,92,102,103,102,103,91,103,89,98,97,93,91,111,98,103,105,99,96,106,107,109,99,100,97,107,104,100,100,104,112,105,98,101,104,104,106,104,104,94,114,106,110,104,105,97,98,105,94,99,93,100,111,104,109,100,103,107,99,95,110,108,103,99,126,98,100,98,108,72,99,90,105,88,98,113,94,113,100,109,96,108,102,102,104,103,99,106,103,111,108,105,100,104,102,101,103,111,101,100,112,100,100,102,112,97,94,109,94,110,97,98,101,112,94,113,112,103,101,111,94,113,108,95,100,97,96,97,117,121,111,104,90,109,101,113,104,104,107,90,105,108,104,102,101,106,104,99,99,99,113,105,110,94,109,105,112,100,113,109,110,107,113,111,110,99,104,95,105,105,107,116,114,109,109,105,103,101,114,114,111,100,95,98,102,101,116,94,109,103,114,115,103,101,108,104,111,103,104,98,97,104,102,112,111,113,101,99,100,98,106,106,102,96,96,97,99,101,117,112,105,101,110,107,121,100,101,104,92,108,112,105,97,95,98,111,106,102,106,101,108,94,100,100,102,115,105,119,108,106,90,111,122,103,95,103,99,100,107,109,102,99,116,113,92,105,103,105,100,109,107,109,106,104,116,105,101,97,110,108,105,117,98,101,97,117,106,100,101,116,110,94,97,94,110,111,108,92,95,111,97,112,104,101,109,116,105,108,108,111,123,104,105,111,102,104,92,98,91,105,107,109,103,98,114,102,104,112,96,115,110,98,112,102,110,114,107,97,106,109,110,102,95,104,100,114,97,116,119,99,108,107,100,108,111,109,100,110,107,113,101,94,103,106,103,115,107,110,96,115,96,107,109,115,110,116,114,101,100,104,95,100,107,104,109,109,102,105,103,105,95,108,98,100,104,109,101,98,101,102,102,106,110,111,102,100,100,101,114,106,102,100,113,110,110,101,105,105,90,101,105,111,95,98,113,113,101,103,105,100,103,122,109,105,98,119,99,98,109,111,109,104,110,102,103,99,112,119,102,104,106,110,106,102,105,104,99,108,110,104,104,95,87,113,105,97,112,97,103,99,132,98,98,106,112,105,98,118,102,109,120,112,104,97,113,99,93,105,111,99,106,99,108,103,99,101,117,112,101,98,111,110,107,97,105,87,106,96,100,113,109,110,109,105,100,103,100,100,108,102,106,108,108,100,100,104,100,96,106,103,103,110,112,95,93,99,109,100,103,116,106,102,91,105,107,109,95,92,110,104,104,116,108,113,98,109,118,101,99,106,102,99,109,107,100,93,118,112,99,96,103,100,104,99,107,118,112,97,104,108,106,105,103,105,103,99,79,103,122,101,100,105,106,100,114,121,108,94,106,96,111,118,95,110,105,105,87,105,105,111,98,108,104,109,100,109,95,120,103,106,117,114,92,98,107,97,111,107,103,110,95,109,105,98,100,107,109,92,107,103,112,102,104,110,97,104,115,98,103,109,111,133,96,104,111,101,114,104,110,107,109,122,102,105,111,117,107,96,93,99,77,92,101,100,107,105,107,100,103,112,110,103,106,96,105,103,94,109,103,103,106,116,104,100,96,104,104,101,102,106,100,95,103,113,109,100,102,107,101,90,103,104,109,109,110,111,98,106,90,102,107,102,102,72,105,96,99,105,106,103,96,107,98,114,103,78,104,103,97,117,98,102,95,111,103,129,107,99,98,98,106,103,101,112,102,118,105,106,108,109,108,105,106,99,105,109,104,101,116,95,80,104,129,97,114,108,103,105,109,107,105,81,113,120,108,104,110,98,101,107,108,110,105,102,108,94,96,129,105,92,99,95,96,102,106,98,101,101,94,107,93,112,110,107,110,98,103,100,102,109,99,105,98,97,103,98,105,112,104,103,96,111,99,103,98,103,96,104,111,103,103,105,117,96,98,102,108,107,86,107,100,99,111,102,114,97,105,101,116,105,99,103,98,97,117,83,101,105,95,94,102,64,109,119,108,94,105,108,104,115,111,99,111,108,107,113,107,91,104,104,107,102,101,100,95,101,90,110,97,98,103,106,101,111,113,95,110,113,110,98,103,91,106,104,112,109,108,112,110,107,95,114,108,116,102,102,94,83,101,107,94,103,103,103,109,112,99,101,99,104,99,110,121,103,112,115,102,90,103,109,107,107,106,107,106,107,93,102,108,109,106,104,90,83,95,112,100,99,104,111,104,101,100,87,112,103,95,106,118,98,107,82,100,93,105,111,112,102,105,115,109,102,101,112,107,88,100,108,104,102,109,113,97,103,107,93,120,108,114,119,102,104,93,101,103,100,102,113,97,106,104,106,104,105,100,115,109,111,99,120,100,102,113,92,96,115,98,106,107,113,110,104,109,96,104,105,106,107,93,105,105,114,97,97,101,109,105,101,116,110,109,87,107,102,99,103,112,94,96,116,122,109,113,91,98,111,109,98,98,109,98,112,102,115,98,106,119,97,97,99,90,113,101,102,97,99,100,106,95,98,104,115,107,101,108,117,105,94,99,105,103,96,108,110,104,101,94,107,124,95,103,106,106,88,99,127,115,105,112,112,116,113,104,108,96,105,103,109,107,118,114,105,96,106,106,114,98,102,95,103,101,100,115,94,103,98,119,108,108,103,103,109,92,110,114,112,103,125,109,101,101,120,131,100,104,111,91,121,110,104,100,108,103,111,111,103,103,99,111,105,101,108,109,102,95,104,111,109,80,119,109,99,100,90,99,109,105,95,100,92,113,109,108,64,112,95,108,104,94,91,104,111,115,101,98,100,99,109,118,95,102,107,91,98,107,93,106,96,112,105,115,115,105,106,97,100,108,101,91,108,114,114,116,111,112,113,105,95,104,102,100,114,102,99,108,116,121,105,95,111,109,109,108,100,113,117,100,111,117,98,104,100,105,81,110,108,103,107,112,109,96,99,98,100,111,101,98,108,116,102,116,105,104,111,107,105,101,108,107,108,104,101,102,94,113,104,102,97,105,99,104,113,93,109,98,102,98,91,100,102,110,102,99,122,101,99,115,125,117,100,111,103,105,101,109,117,104,86,107,107,109,97,104,104,108,104,98,107,108,100,105,83,113,99,95,113,110,110,103,103,101,99,110,91,114,119,115,113,106,111,99,111,93,102,95,105,98,113,112,107,113,112,105,98,103,104,102,109,94,104,100,104,117,103,91,113,107,100,115,103,112,96,108,100,103,100,102,99,107,113,92,111,107,113,71,107,105,94,118,111,112,114,108,101,113,117,113,109,104,102,96,103,102,121,113,114,108,94,102,90,120,112,102,109,97,100,95,94,108,108,100,113,112,107,97,111,112,101,109,99,96,100,105,96,99,103,108,109,113,109,100,95,84,103,103,104,113,113,105,90,103,117,104,104,107,111,101,100,104,100,106,101,111,105,103,113,109,99,100,105,112,105,100,121,103,110,98,108,107,100,106,115,115,99,100,103,90,105,103,103,100,106,106,105,101,105,108,115,92,95,104,100,106,103,92,114,95,134,103,99,104,110,118,102,107,104,99,104,92,110,101,66,99,109,95,109,103,111,97,97,100,103,102,104,102,95,118,106,102,110,91,111,113,107,96,115,103,94,104,101,90,104,107,106,101,105,96,114,114,95,105,101,115,106,96,111,99,112,99,106,102,100,116,97,117,107,100,108,102,118,106,105,110,102,100,117,114,113,98,105,99,110,97,104,112,94,102,120,98,96,96,111,113,90,103,104,95,102,101,103,97,121,116,111,95,94,109,107,108,107,113,112,109,102,98,105,108,99,105,113,88,90,109,90,102,104,111,105,96,103,107,98,117,98,108,98,103,117,109,102,109,98,118,115,107,104,104,101,101,106,94,105,108,99,117,106,107,104,102,100,105,94,111,101,87,99,112,115,99,101,98,107,107,106,108,106,107,111,95,106,98,104,122,99,109,107,112,103,99,106,112,105,95,113,99,104,120,103,108,105,100,103,110,101,106,109,107,103,105,108,100,101,89,100,105,107,117,114,68,106,104,91,108,95,102,90,110,106,106,99,106,97,109,120,112,95,88,91,103,102,109,104,92,104,95,94,107,106,98,108,104,93,94,101,98,104,106,103,99,106,108,108,93,106,111,109,101,106,109,106,106,93,113,106,90,104,104,102,111,111,102,109,100,97,108,103,103,106,101,112,108,106,102,79,107,80,103,112,108,113,100,103,98,95,103,97,106,115,112,111,110,109,105,99,112,102,106,91,102,103,113,106,101,108,105,122,105,102,107,104,92,94,106,104,100,100,110,104,110,106,105,103,100,113,110,113,101,97,93,105,94,104,98,108,100,96,106,118,104,94,114,100,90,98,110,89,87,104,92,113,91,109,106,109,115,82,105,103,105,102,104,122,102,115,117,101,90,110,100,107,85,104,119,91,109,98,93,112,95,98,109,93,105,99,96,107,99,110,114,100,104,86,108,109,104,98,113,87,87,116,112,101,100,92,87,103,108,88,100,114,95,90, +492.72202,95,96,109,95,100,98,101,103,93,106,120,105,95,96,101,103,105,96,94,88,112,98,108,78,105,105,87,85,99,100,98,98,92,103,111,96,108,97,102,112,98,97,109,99,108,115,106,110,95,108,96,94,102,110,103,94,114,94,84,107,109,98,104,99,94,110,104,106,110,105,97,96,117,83,87,108,96,97,107,105,107,89,110,99,104,111,67,98,102,105,100,92,98,113,99,101,94,83,110,83,102,95,98,103,99,93,103,100,116,89,106,92,105,94,92,104,106,97,107,95,104,105,105,99,109,91,109,109,104,102,106,98,104,88,114,109,74,110,94,111,96,108,88,99,106,99,104,102,108,104,94,97,105,100,108,116,95,99,90,101,111,102,102,109,110,108,104,108,87,97,105,100,117,113,102,96,108,108,95,108,114,106,104,98,88,99,102,84,109,107,106,104,108,101,102,100,86,121,108,97,94,117,94,111,125,112,105,106,122,115,92,115,101,92,108,104,99,102,102,100,113,103,102,99,111,101,101,113,96,105,99,112,97,110,103,110,107,102,92,104,99,104,102,105,91,106,104,105,99,98,130,96,105,101,92,101,99,100,94,101,98,90,114,111,98,105,106,100,108,100,96,105,105,103,103,101,109,107,101,98,106,114,97,117,101,109,106,82,110,110,110,116,104,98,111,101,114,109,103,107,99,104,114,100,96,102,108,103,104,110,121,102,101,113,103,107,106,101,92,99,101,105,93,110,107,99,104,104,111,122,104,95,99,110,103,98,96,128,107,103,104,108,105,93,102,108,106,109,102,112,102,99,105,99,103,117,112,101,105,122,103,93,110,101,96,98,101,104,117,92,114,103,117,109,104,88,113,101,96,91,114,108,103,98,111,100,101,86,103,111,110,73,105,120,98,104,120,100,87,99,94,99,108,99,103,105,99,105,96,98,98,104,111,96,102,106,90,83,106,112,103,99,106,115,102,97,100,103,95,98,105,103,106,73,92,110,106,111,99,104,123,92,113,110,104,107,88,88,99,101,102,103,105,101,101,109,99,105,111,95,84,104,101,104,117,115,101,103,109,99,98,108,110,100,107,106,88,99,106,98,114,94,110,104,100,108,118,106,107,87,107,108,106,102,84,104,99,97,94,110,108,93,100,111,95,98,84,109,117,76,102,110,86,87,100,98,101,102,101,104,104,115,107,88,97,101,95,111,100,112,98,113,112,91,93,94,87,113,110,108,89,102,108,95,95,105,107,104,98,111,104,103,105,99,109,100,102,104,95,96,106,111,109,113,97,100,96,106,109,102,100,116,106,96,107,92,94,99,93,105,100,103,117,100,94,98,106,98,95,104,101,91,102,109,108,94,103,103,106,91,103,115,110,88,98,96,100,97,99,100,114,109,101,108,102,95,116,100,107,96,115,117,100,99,106,102,93,92,103,111,112,105,95,97,108,105,106,102,101,112,104,116,113,96,103,96,104,109,91,104,99,109,102,103,116,99,102,109,90,102,103,103,88,102,106,111,110,100,108,104,107,104,102,100,95,106,102,103,103,110,103,107,106,93,102,106,102,94,99,113,92,117,109,107,113,83,112,110,107,86,92,110,94,96,112,97,103,100,104,96,99,99,101,101,104,92,91,95,100,112,97,95,104,99,95,115,99,111,96,108,105,114,101,104,98,98,98,106,95,88,121,106,106,111,109,98,105,107,105,103,100,101,95,102,101,105,101,107,114,105,94,95,109,103,102,109,99,108,92,102,115,100,86,115,84,100,89,82,106,105,105,113,104,108,108,103,94,125,99,100,109,95,102,111,95,112,111,108,100,107,109,100,96,97,113,95,116,104,102,119,91,92,103,90,100,106,111,108,122,108,104,104,97,106,103,99,100,98,108,108,104,104,103,100,114,107,113,103,98,112,104,100,99,92,104,100,113,96,101,99,108,98,109,101,108,95,108,103,94,90,111,99,91,91,118,101,107,99,106,106,107,104,102,96,99,95,93,109,103,95,105,105,101,116,100,111,97,105,110,104,103,99,107,117,101,99,100,110,107,103,98,109,94,109,99,95,102,105,94,106,98,100,99,95,112,98,90,100,95,108,100,96,108,95,110,96,105,97,112,105,104,102,104,113,95,112,104,104,99,95,100,112,104,103,114,98,116,110,108,111,105,107,120,110,94,108,96,110,98,123,110,112,96,94,112,104,90,100,102,104,98,106,105,99,105,100,101,105,111,115,99,99,100,99,105,102,104,95,96,100,103,110,90,106,100,98,122,100,99,124,104,94,103,103,104,114,98,111,96,101,108,115,98,106,101,82,105,109,101,96,111,106,101,95,108,103,99,106,115,108,107,104,113,105,107,88,105,112,99,104,118,102,98,105,100,113,105,101,107,100,71,118,99,102,97,95,104,105,107,103,97,109,96,108,98,110,107,90,100,99,110,113,107,101,101,100,100,89,91,102,113,106,103,109,115,100,102,97,98,109,97,101,114,117,112,105,106,100,111,114,99,113,112,91,93,101,113,102,112,91,117,122,113,100,103,92,108,111,104,110,116,109,94,102,102,119,109,104,102,90,114,89,107,99,102,110,112,110,100,106,84,100,103,116,111,96,113,106,103,91,108,100,122,114,106,107,119,106,105,102,102,83,117,99,133,122,102,106,116,106,106,108,110,109,103,100,103,115,109,109,117,101,90,106,108,112,109,97,98,119,103,111,106,113,103,110,116,102,96,106,104,116,102,102,97,90,102,105,108,96,104,108,83,114,105,108,102,102,106,102,109,121,98,116,104,99,108,103,110,106,112,94,103,107,117,121,112,116,109,122,100,113,104,100,109,112,112,87,101,104,98,108,90,104,103,103,98,104,98,111,112,112,96,127,99,97,89,95,96,111,110,111,104,103,99,103,104,102,94,111,108,106,101,98,99,110,81,105,105,117,79,113,108,102,109,109,107,112,102,106,107,97,88,107,100,113,110,111,106,102,103,111,102,112,110,119,101,105,98,99,113,103,111,102,105,102,104,121,104,94,96,99,108,99,94,106,99,109,102,116,113,104,117,110,99,124,114,106,104,119,112,116,112,125,97,107,111,112,95,103,108,120,108,116,108,99,106,106,109,77,103,111,119,103,125,72,102,116,113,97,102,99,99,109,94,116,110,110,115,99,103,100,102,107,108,102,101,101,120,118,99,109,88,98,111,83,104,110,117,119,96,109,113,98,111,115,106,102,113,102,108,100,105,109,96,105,113,117,117,124,113,103,106,119,113,109,103,115,101,111,106,109,108,110,109,100,96,112,115,106,106,104,104,113,102,122,98,99,103,105,109,125,106,97,105,110,113,92,106,103,96,116,100,110,91,111,113,103,116,103,107,105,106,100,109,89,108,109,108,98,96,104,109,106,103,103,115,116,107,108,95,106,106,102,96,99,114,103,110,81,107,99,107,104,95,114,98,106,100,87,112,99,120,108,106,99,120,91,104,97,105,107,104,100,107,107,100,114,108,100,107,109,97,111,112,106,109,102,111,101,114,99,111,120,107,101,110,110,103,113,105,105,102,100,106,106,100,117,99,113,112,97,123,109,103,113,104,106,137,113,113,96,105,104,110,109,111,113,98,106,102,103,102,108,94,109,97,109,111,97,93,109,117,113,120,107,105,101,115,85,108,106,102,116,98,102,102,103,103,109,118,108,101,103,96,108,103,100,106,118,106,106,109,115,109,111,98,104,107,102,90,114,106,102,105,98,113,110,118,102,99,99,98,98,105,110,105,99,109,109,105,106,116,98,106,103,128,98,112,98,112,107,104,116,101,105,113,105,118,105,110,116,106,100,105,111,109,105,103,98,96,111,107,94,99,102,107,95,91,104,100,99,112,108,105,111,107,95,101,98,102,108,96,91,107,83,113,99,91,114,98,101,100,99,109,101,110,85,100,101,102,101,105,105,99,106,103,92,104,118,100,111,99,111,95,113,102,100,101,101,93,71,108,75,114,104,101,116,101,104,93,105,92,108,106,106,97,103,110,94,99,100,106,112,103,105,103,109,110,97,71,107,90,105,108,114,91,98,110,104,102,99,109,94,106,117,96,117,104,104,101,116,106,111,123,105,102,117,106,113,102,99,110,108,92,112,109,98,104,113,106,101,98,121,102,113,97,129,110,102,83,101,109,97,105,130,102,100,107,104,104,107,107,105,108,108,104,106,111,105,109,111,109,123,105,116,110,104,105,109,112,109,103,108,111,112,106,107,96,99,96,92,99,117,99,90,108,109,110,113,68,104,99,110,112,98,118,106,98,103,98,115,112,98,98,106,96,113,98,102,104,102,114,115,99,96,102,100,103,99,99,109,108,108,102,103,86,102,106,102,101,115,108,110,98,104,112,104,108,95,113,106,105,104,106,102,110,104,109,79,94,105,126,111,85,112,93,107,95,107,103,113,114,88,100,115,105,106,95,106,104,116,105,94,94,102,97,110,104,103,99,95,109,109,105,108,99,102,97,100,92,101,116,95,104,104,113,108,134,103,107,108,100,95,109,99,104,116,99,99,109,107,101,99,100,99,111,105,96,111,97,107,104,102,117,116,110,108,106,100,101,100,115,115,113,99,101,111,107,118,107,105,109,107,103,117,106,106,99,100,105,100,95,97,100,113,111,105,96,108,111,106,107,100,95,109,112,115,111,104,90,113,89,108,105,111,106,107,113,101,116,112,107,105,119,100,95,103,98,110,105,103,105,117,115,99,117,104,111,105,106,94,102,99,123,112,104,96,87,108,115,103,106,111,114,101,114,106,108,112,108,98,113,73,109,78,96,102,101,101,111,93,107,111,107,105,98,99,98,110,114,117,102,94,97,99,84,95,100,113,106,101,109,98,105,115,110,111,96,90,98,97,102,105,132,115,103,103,94,103, +492.86261,92,91,100,93,103,111,91,90,101,101,101,94,110,112,112,103,94,100,106,100,114,95,96,98,95,97,111,92,115,86,91,107,105,90,102,107,97,62,106,110,105,100,99,96,97,115,112,100,107,103,103,93,127,102,112,102,106,75,115,95,95,112,109,97,102,108,103,108,110,94,108,101,101,106,96,91,101,115,104,110,110,97,99,107,99,97,102,127,105,113,92,117,117,102,102,108,105,100,110,115,95,110,108,117,106,100,108,102,99,99,98,80,110,103,113,91,122,105,100,109,104,106,110,106,102,104,116,108,112,105,102,92,98,113,82,94,99,108,94,99,96,106,104,109,109,103,105,97,105,100,104,111,98,96,105,107,102,100,97,108,96,96,104,103,88,99,109,101,113,101,96,103,96,96,108,104,100,100,108,104,111,105,92,103,114,99,113,93,110,101,72,108,103,104,98,98,106,117,111,86,100,104,106,125,101,111,104,103,104,126,105,107,107,101,117,100,110,107,104,98,99,113,110,101,107,98,102,106,105,103,113,99,99,109,108,113,100,121,96,96,109,104,108,105,109,101,106,98,127,95,108,116,105,112,109,98,107,114,109,104,101,114,102,103,102,105,92,104,99,100,102,98,117,102,105,106,106,111,106,107,109,103,109,105,111,104,116,110,108,106,103,107,107,99,99,115,112,104,109,98,95,98,105,116,100,102,107,96,91,106,78,112,104,115,115,102,100,95,97,110,118,108,116,96,109,97,101,100,103,118,119,99,109,103,103,104,106,113,107,110,106,111,100,104,112,102,97,105,110,99,102,112,112,117,110,106,102,101,113,104,117,108,115,94,103,109,116,119,97,105,101,96,114,102,106,105,104,94,103,108,115,102,95,104,101,102,105,110,109,103,114,105,85,104,119,112,92,113,101,105,106,106,104,92,107,98,106,106,105,104,100,103,109,113,107,102,96,104,108,105,109,102,107,104,106,109,99,94,97,120,104,112,106,102,94,107,105,99,111,99,117,110,107,111,110,104,104,101,98,98,106,111,102,106,116,95,107,107,107,109,102,97,104,80,105,99,117,95,102,105,104,116,104,97,109,95,90,119,114,125,82,106,123,112,112,109,81,106,103,110,101,124,94,100,105,117,95,103,112,110,100,108,108,96,117,100,97,107,112,88,110,109,110,107,91,105,114,108,111,102,97,105,110,113,102,114,107,107,104,118,99,90,100,115,107,105,118,102,107,108,98,111,97,111,104,100,97,101,103,117,111,106,85,105,90,111,100,117,121,102,114,102,103,108,107,101,111,104,108,108,97,96,99,102,121,109,105,100,113,95,110,103,99,102,111,110,118,109,109,106,107,111,114,98,116,110,107,100,91,102,116,113,103,115,102,103,94,103,113,106,107,111,107,117,104,101,103,84,112,97,108,115,94,104,112,109,116,106,96,103,105,109,106,98,105,108,111,105,106,102,100,110,108,107,100,110,91,94,117,103,103,95,106,96,108,104,109,102,114,119,124,112,111,94,78,102,101,120,119,95,109,112,108,105,99,106,91,107,108,101,112,104,112,99,100,98,97,104,101,102,105,107,115,109,108,110,113,109,107,94,101,105,103,101,113,106,115,107,121,95,103,113,111,104,98,105,101,101,95,108,94,103,103,116,113,114,106,103,99,110,96,101,103,101,110,99,103,99,125,109,115,112,111,113,122,106,122,102,109,105,111,114,95,110,117,105,102,96,103,109,100,107,108,108,104,119,99,113,136,104,103,110,112,113,98,109,118,97,118,97,108,108,106,104,96,112,116,108,113,106,108,109,112,121,97,100,115,99,99,82,101,91,95,110,112,107,108,107,122,103,110,94,105,109,114,101,106,107,101,101,109,105,110,125,115,106,121,110,100,113,106,97,119,70,113,99,108,108,105,100,116,115,117,105,103,98,103,99,98,100,96,112,95,103,103,101,95,111,105,107,117,111,103,109,103,94,97,96,100,118,104,99,111,117,100,105,106,97,107,103,99,106,104,98,105,100,94,99,99,111,103,117,107,104,105,105,113,104,96,106,112,98,100,86,89,107,106,104,107,98,107,104,110,106,102,107,104,106,100,100,103,109,103,92,104,94,104,109,96,104,113,121,122,114,86,105,95,106,117,101,109,113,118,101,104,98,99,114,104,114,105,109,101,105,114,99,118,96,106,101,107,106,109,101,103,112,81,106,102,105,105,105,107,106,103,110,108,103,100,107,106,110,108,99,98,94,114,104,116,91,122,111,112,100,113,104,105,107,113,108,102,97,106,113,111,113,99,121,90,103,101,91,100,117,101,107,105,107,118,104,110,110,104,97,100,104,86,93,117,96,107,110,103,98,113,98,91,100,101,106,103,105,101,112,85,99,92,100,105,93,99,110,105,113,128,107,113,97,108,112,87,109,102,93,100,102,113,101,114,114,101,106,99,102,106,100,99,98,96,99,94,99,96,103,109,106,106,104,110,83,108,99,105,92,99,123,106,102,99,112,109,102,105,112,101,116,96,93,101,101,91,107,114,107,106,104,112,113,112,103,123,100,93,96,96,94,116,102,103,113,102,100,102,90,103,105,117,101,103,104,105,96,103,110,101,109,101,94,106,103,109,105,109,105,113,102,102,111,105,104,100,104,110,86,99,103,116,84,111,98,107,105,115,96,125,98,105,101,110,103,99,97,98,127,109,103,90,108,96,104,100,109,99,96,101,92,100,94,106,115,102,102,85,91,105,101,85,115,101,101,107,114,98,103,102,103,104,91,108,100,107,102,103,109,111,85,91,110,104,99,109,89,97,103,111,108,96,98,96,109,101,100,104,98,103,109,109,113,105,101,117,94,98,107,100,111,100,94,116,108,105,103,95,102,116,116,112,117,97,105,97,68,95,108,99,105,108,99,121,100,111,95,122,88,99,100,95,110,92,104,95,94,105,96,92,103,104,100,98,111,103,98,99,128,101,105,108,108,110,103,107,97,101,102,111,107,108,98,109,106,103,111,98,102,99,134,105,102,101,96,98,98,94,113,97,111,96,93,100,95,92,110,107,86,138,100,106,99,107,105,95,108,105,112,100,109,108,101,103,106,107,108,99,110,110,100,106,97,97,105,97,100,97,94,94,106,103,115,107,108,126,105,94,95,95,96,103,116,112,109,106,107,107,109,100,114,101,93,101,99,113,87,80,104,103,107,110,92,106,105,92,104,110,109,106,105,106,87,113,102,109,104,106,98,103,93,112,116,111,105,108,104,102,113,112,108,98,114,95,91,102,94,108,117,116,99,98,96,97,103,94,95,102,102,102,112,103,105,103,91,91,113,99,105,109,105,91,105,100,110,105,103,102,103,92,105,98,113,97,109,99,113,102,100,100,75,103,108,117,100,107,106,101,114,105,108,110,104,86,108,90,100,108,113,102,103,106,92,97,104,117,99,101,103,101,109,95,121,94,105,109,98,108,95,98,116,108,92,96,106,106,101,101,98,100,113,110,120,110,101,105,116,94,112,105,106,106,113,101,96,106,104,103,94,112,96,106,105,93,109,101,94,106,113,101,117,110,101,101,99,93,91,105,104,101,95,116,94,100,104,100,99,66,101,101,99,105,103,117,108,85,107,106,107,104,97,102,100,112,109,102,102,113,108,95,108,106,101,102,111,116,103,115,108,100,108,71,107,84,108,109,112,110,117,97,113,92,97,121,86,108,99,103,109,102,97,94,105,119,106,105,91,104,102,106,106,108,95,94,101,103,107,94,102,104,101,98,98,99,90,103,98,101,103,116,106,112,84,112,106,96,107,93,105,110,99,102,98,103,101,89,109,99,96,115,110,104,110,91,118,104,107,100,107,97,98,92,99,113,96,103,107,99,106,107,103,98,111,92,103,106,105,80,100,104,97,103,103,102,96,113,100,100,107,99,101,105,117,99,97,102,104,95,92,118,101,92,99,128,109,76,97,102,108,110,95,109,110,95,106,108,93,97,111,100,92,110,99,99,111,102,96,95,110,105,94,101,113,119,109,107,103,98,93,101,108,101,100,105,104,110,103,95,105,106,104,113,100,116,96,116,109,97,104,102,112,91,102,112,115,110,102,99,109,96,102,96,103,109,105,102,103,99,109,98,105,98,106,99,108,111,99,95,106,106,103,110,123,102,108,98,106,103,89,101,104,106,100,97,97,108,118,102,117,104,107,97,113,107,100,100,108,110,106,97,94,96,87,98,111,97,99,94,101,105,100,111,96,108,84,105,96,113,95,96,90,91,102,101,114,99,115,105,102,99,110,101,104,105,100,94,96,109,113,99,96,92,95,104,104,110,96,105,106,92,99,97,108,107,101,117,98,104,100,103,98,105,98,98,104,104,98,107,104,98,111,97,100,108,103,103,97,106,101,104,113,113,104,113,98,103,99,120,96,114,117,89,98,99,90,113,102,105,107,114,110,99,103,99,107,112,103,108,98,104,110,87,115,103,100,100,102,102,109,103,95,103,113,98,96,97,90,95,107,108,98,99,107,95,97,103,95,112,98,103,92,105,109,103,92,91,111,100,117,93,111,90,95,95,98,102,86,97,109,102,112,100,107,88,79,108,103,112,100,105,70,91,102,109,98,102,109,104,92,107,102,103,102,113,89,100,102,100,98,113,110,105,102,110,102,106,113,100,95,109,79,94,111,101,90,96,106,105,102,89,114,91,102,100,104,95,88,89,108,95,98,109,78,99,111,98,107,105,108,95,106,111,108,103,101,99,104,98,109,98,97,97,112,106,91,91,105,103,92,104,119,117,89,111,95,104,102,96,92,97,102,91,102,116,98,87,100,109,91,111,91,98,105,90,95,102,96,94,102,95,107,100,93,107,87,100,105,110,107,101,87,85,100,91,91,108,97,91,113,104,102,107,98,105,96, +493.0032,110,74,96,104,75,103,103,92,108,95,102,93,88,107,93,108,88,125,113,110,114,97,99,109,93,91,135,99,109,95,106,113,98,104,103,102,98,101,102,91,102,104,129,103,103,120,103,98,99,110,102,99,111,98,108,98,98,103,106,96,104,94,114,109,102,106,98,102,118,101,89,106,96,112,116,118,105,107,100,99,100,108,101,101,94,109,104,101,103,99,97,106,87,96,100,108,105,96,98,96,97,108,94,101,100,105,113,105,101,103,102,106,108,103,98,82,87,115,95,112,99,95,104,108,104,99,105,107,101,117,106,98,99,106,101,97,77,102,118,97,109,95,101,97,101,92,110,103,90,99,102,100,103,105,94,110,115,99,107,104,107,109,102,91,90,109,107,83,104,104,104,102,96,115,98,110,95,110,104,103,113,110,111,113,91,109,113,94,107,100,102,93,114,104,110,97,98,109,102,112,110,105,106,103,104,110,97,115,111,100,110,103,104,106,102,115,103,107,114,105,104,104,102,109,100,100,109,100,114,96,105,102,111,101,113,105,108,107,95,109,101,105,102,107,101,101,95,100,100,101,107,113,109,104,103,109,97,99,98,112,99,118,102,103,98,104,106,109,94,97,95,93,113,107,100,104,105,100,112,103,114,103,111,107,99,100,86,110,102,110,105,99,98,87,101,103,107,112,99,100,101,107,103,113,97,110,114,96,106,114,108,122,100,109,105,108,105,113,110,99,104,105,105,103,108,96,102,105,113,114,103,100,116,97,101,106,109,131,109,112,111,102,116,89,106,113,105,108,114,102,103,111,104,104,107,116,103,95,69,106,105,108,110,101,98,97,116,106,87,106,106,92,101,105,113,118,104,104,98,73,105,109,104,98,96,109,108,99,112,105,119,91,105,101,93,97,102,110,92,109,102,104,113,105,105,104,100,89,106,98,86,106,109,106,109,94,113,96,95,98,100,99,113,99,109,103,102,100,108,110,112,123,106,105,103,95,104,112,116,102,112,103,111,106,125,103,93,103,103,100,106,107,100,111,99,105,101,111,113,113,107,102,113,106,117,100,91,100,101,116,106,109,98,106,103,107,93,119,106,101,91,102,107,97,115,94,121,95,108,104,108,99,87,109,94,110,95,111,107,106,106,107,115,101,104,106,102,115,117,101,102,121,110,109,105,90,108,102,95,118,102,99,108,94,111,104,107,97,99,110,102,80,113,104,108,109,103,108,103,105,109,122,106,101,111,92,105,111,105,97,103,105,115,116,104,102,111,90,108,97,102,109,116,100,108,98,106,103,93,106,106,115,99,101,100,106,113,119,112,127,106,99,121,93,115,102,103,119,105,101,100,104,94,80,106,110,112,95,103,100,101,96,105,110,102,98,97,112,100,117,105,101,100,102,110,100,106,99,104,117,80,107,102,92,114,99,101,106,100,112,119,100,103,120,87,113,99,111,100,106,109,99,100,102,96,107,102,104,96,114,109,103,110,97,109,104,111,105,110,107,108,105,102,106,98,97,103,89,102,98,92,109,110,106,97,110,109,99,104,111,104,100,122,100,106,114,99,102,111,100,106,77,108,101,113,100,106,119,96,94,98,103,91,98,106,101,100,110,114,102,100,108,112,103,103,115,100,104,94,101,105,88,106,104,97,80,103,105,94,114,112,99,88,110,98,113,101,106,113,98,96,110,101,100,104,98,108,100,89,107,90,88,105,94,111,112,105,112,117,105,114,100,101,100,95,108,113,102,117,105,112,93,102,96,103,113,87,107,102,104,108,113,114,107,104,106,118,104,104,113,104,108,107,100,108,111,100,106,117,101,104,106,94,108,115,96,117,98,103,100,96,99,105,111,110,118,115,95,111,106,111,110,105,109,114,116,106,105,107,102,111,102,112,103,98,105,112,100,111,111,118,106,116,98,110,113,120,102,96,112,101,94,108,112,110,115,114,101,109,113,95,109,105,109,107,108,100,103,104,106,104,117,111,129,95,100,113,100,113,100,99,105,100,111,105,100,108,109,99,98,105,109,105,101,111,101,99,110,111,128,109,117,122,105,117,124,110,104,99,82,95,103,108,111,103,102,90,101,111,95,98,109,103,111,102,107,111,107,99,109,98,102,106,107,95,98,107,91,107,96,109,102,111,99,101,106,103,106,95,112,124,100,98,107,102,110,105,122,102,101,105,103,114,95,110,105,107,89,102,106,106,101,99,103,107,106,107,103,97,96,99,104,111,96,112,98,111,103,105,95,103,101,94,110,106,106,107,110,113,117,111,101,97,108,118,109,107,108,105,111,98,101,118,107,112,97,119,99,105,101,112,109,104,101,115,113,112,109,107,105,101,105,112,111,111,113,109,107,108,109,105,103,91,101,110,89,119,96,113,118,104,111,109,97,101,107,110,104,92,112,108,115,93,105,106,106,105,117,107,100,101,92,129,96,109,107,94,89,92,87,93,95,104,112,112,105,98,96,110,109,108,100,104,94,103,120,103,101,124,110,109,101,102,114,111,116,111,105,106,96,100,108,108,102,109,109,100,104,126,102,103,107,106,99,95,113,104,103,95,109,118,103,112,104,101,102,99,99,98,102,97,101,103,103,113,101,104,102,109,107,103,108,112,102,106,109,109,102,101,91,106,98,83,96,110,116,94,98,106,102,117,118,106,93,100,106,107,125,109,120,100,111,109,106,107,113,124,107,106,106,97,104,91,113,111,107,111,109,87,107,117,103,114,107,120,104,99,115,125,113,103,99,103,91,90,114,102,103,106,117,102,109,117,80,102,114,107,113,110,99,95,105,97,104,113,101,102,104,120,107,105,110,105,107,101,98,114,104,108,106,102,106,106,107,105,119,113,109,114,94,102,103,109,101,112,104,107,111,108,115,106,109,98,119,100,88,117,106,98,108,94,88,116,102,116,102,94,108,115,101,101,116,103,101,97,105,117,100,106,106,96,97,104,105,114,109,103,113,94,99,108,102,93,96,110,113,116,119,105,107,113,108,101,109,115,109,102,109,106,90,83,104,98,111,91,113,99,104,103,111,117,107,102,99,116,104,104,110,94,113,111,119,102,99,96,111,105,103,119,104,87,102,106,100,107,122,110,99,111,83,101,109,98,96,97,133,103,115,109,103,113,105,108,104,83,115,106,102,109,112,103,118,98,100,106,109,99,78,96,107,107,108,104,98,105,103,106,98,98,106,109,115,97,105,113,112,102,99,102,107,106,109,107,100,109,112,112,100,101,109,100,108,110,124,106,112,101,109,112,109,94,115,99,110,101,106,105,99,97,99,109,102,105,117,106,105,110,97,112,111,100,105,99,107,108,115,101,101,106,112,97,107,102,100,96,100,101,115,92,104,108,104,99,109,97,111,106,96,114,106,112,118,104,103,96,104,97,108,101,114,99,113,98,79,102,96,106,95,99,106,108,101,105,121,107,103,107,121,95,111,102,108,100,99,107,97,100,115,98,104,109,108,98,106,108,100,95,99,103,94,115,100,92,101,99,117,108,113,98,105,102,99,100,107,113,105,107,111,105,109,103,97,103,98,109,106,95,108,88,112,107,108,125,103,107,111,106,110,115,101,93,101,100,102,108,105,101,104,105,113,98,104,103,94,95,101,97,101,101,100,99,101,105,106,108,101,100,104,96,110,103,106,98,115,94,106,99,100,111,104,105,103,105,96,93,102,112,109,103,104,99,101,108,113,93,108,110,102,108,106,128,96,102,98,102,98,106,99,96,103,116,89,102,85,92,99,108,104,112,117,108,102,102,106,110,100,107,97,100,102,95,113,107,122,116,100,112,109,103,101,110,99,106,128,103,102,123,84,101,98,105,123,111,105,111,107,100,99,108,106,106,96,87,87,123,110,93,107,112,113,106,106,91,106,101,99,104,100,104,107,101,120,95,103,120,116,100,118,113,108,95,105,94,109,112,122,112,101,98,99,101,109,116,117,103,100,117,109,100,92,111,99,98,117,92,114,107,111,96,99,99,115,106,110,117,98,99,104,109,102,115,106,111,110,101,97,113,98,108,96,110,101,83,109,111,97,104,98,106,99,110,100,109,102,91,120,102,104,109,94,100,122,107,112,110,108,102,105,96,96,103,97,107,107,97,107,109,97,106,116,103,103,95,102,102,94,107,110,121,121,119,111,90,103,105,100,118,111,112,122,115,73,106,113,105,103,106,109,105,112,112,100,104,113,108,99,102,103,97,105,106,104,105,90,106,100,107,104,117,100,114,109,111,113,99,94,106,101,108,105,100,95,123,106,103,91,111,90,91,113,93,105,107,109,118,105,109,116,102,102,99,113,118,109,80,98,95,102,92,116,104,105,106,92,99,108,109,106,102,109,112,97,94,110,98,98,115,103,98,108,94,102,104,106,94,103,94,113,116,102,102,108,101,93,102,110,88,120,107,101,120,101,104,108,102,109,104,117,112,113,103,114,104,110,101,106,107,102,114,116,100,106,112,100,120,110,109,95,88,105,82,108,99,115,90,102,104,117,101,89,111,98,98,103,113,96,109,107,96,108,92,105,89,96,102,99,98,93,98,108,107,104,113,99,109,103,92,106,95,109,104,102,98,117,98,108,104,108,96,111,104,101,105,104,108,101,91,106,96,109,101,113,97,104,106,101,128,92,120,99,97,105,109,113,103,116,103,108,109,110,121,117,114,111,108,89,98,105,108,99,98,102,97,113,98,113,107,105,93,80,100,103,105,108,98,104,110,109,104,119,103,94,110,101,90,95,107,109,103,88,97,96,101,101,102,107,102,110,107,92,103,93,97,117,101,96,105,103,100,103,102,104,96,100,112,112,106,100,101,110,104,101,106,106,104,105,62,103,110,102,111,104,104,105,96,90,107,93,97,79,117,104,117,103,119,98,105,90,105,99, +493.1438,99,104,108,94,94,109,103,109,114,104,102,98,102,107,95,98,108,99,102,103,95,102,104,107,102,115,96,110,106,111,102,80,98,72,108,110,111,102,92,114,96,97,107,106,103,114,82,115,117,108,91,105,106,103,100,100,102,107,113,99,99,100,86,119,91,106,106,117,107,124,105,103,117,108,96,99,98,94,109,105,105,113,108,96,94,102,96,99,107,96,96,84,102,97,101,99,123,100,93,110,112,103,91,105,112,100,94,98,98,105,105,101,104,105,112,109,102,112,113,109,99,101,98,115,91,100,100,110,111,95,98,102,103,109,102,96,106,136,97,98,103,109,100,107,91,102,104,104,107,101,109,112,118,95,116,109,126,99,99,102,95,111,99,103,117,86,112,106,108,95,105,121,106,106,111,111,98,98,113,100,100,103,107,108,112,95,106,104,111,107,108,105,105,86,108,114,100,100,104,104,101,105,106,98,95,103,102,104,108,113,86,105,113,113,105,97,112,102,111,113,100,113,104,101,102,100,124,102,95,100,104,100,109,108,101,114,112,97,99,99,83,102,115,100,99,107,107,115,106,100,94,113,107,109,97,110,103,96,100,97,94,96,110,106,99,99,105,116,104,99,101,110,102,107,108,101,107,109,96,101,99,106,107,112,104,100,99,104,105,104,105,99,111,109,98,109,112,108,101,109,95,100,113,112,102,103,112,109,115,118,88,110,101,99,104,105,98,106,98,105,114,95,108,103,110,106,90,88,107,108,99,95,117,101,112,104,108,125,99,101,105,110,102,96,106,105,109,99,105,101,105,100,112,102,105,98,104,104,103,114,108,99,112,93,105,96,101,106,105,101,112,108,107,101,105,98,103,110,104,93,102,105,107,110,104,104,100,104,105,113,122,112,103,98,99,109,100,95,104,113,102,104,102,107,104,102,105,100,121,100,100,99,108,105,103,96,99,103,106,97,96,103,109,113,95,106,105,101,109,109,97,113,103,104,112,102,106,118,106,102,107,103,104,106,104,110,101,98,125,106,103,98,100,113,101,103,104,105,114,100,105,106,113,119,108,118,99,104,101,105,113,108,90,109,97,94,109,98,111,101,112,106,119,113,109,111,107,111,108,99,117,103,106,107,93,110,113,87,104,104,107,117,97,107,110,109,102,104,118,106,119,100,110,117,110,118,97,102,104,94,106,121,106,104,87,108,118,106,100,110,103,108,103,110,106,98,111,98,95,113,72,99,96,107,110,96,103,98,115,120,102,103,113,99,107,108,106,96,106,100,113,122,104,110,81,85,105,110,101,110,86,101,105,97,119,102,99,87,106,102,90,101,116,109,125,106,104,118,101,106,108,117,106,104,118,102,117,104,107,111,99,115,109,110,96,104,107,104,113,104,121,114,112,105,107,108,98,106,109,102,104,108,96,113,121,114,106,103,102,111,103,108,99,106,107,114,120,99,105,98,108,117,99,113,101,92,106,100,111,114,112,109,105,79,118,84,109,106,103,116,99,99,112,102,107,106,105,96,108,111,123,116,103,110,99,97,105,106,111,109,102,97,109,104,99,108,107,97,100,98,106,115,112,116,104,108,125,120,108,94,136,106,110,108,101,112,103,107,87,97,103,98,101,110,109,97,108,92,106,107,116,105,108,101,92,105,103,109,103,116,110,106,111,117,108,109,102,107,106,109,97,100,105,101,105,105,119,107,121,110,98,106,96,108,111,105,100,103,106,98,102,105,105,92,74,114,100,79,100,94,113,109,100,108,107,103,115,106,108,99,109,110,111,104,98,108,94,113,102,106,110,100,103,117,108,111,107,109,108,95,108,116,103,92,101,108,109,112,101,113,111,97,119,112,107,112,115,100,109,115,98,121,108,107,130,107,113,106,114,99,109,106,107,112,96,105,102,98,105,95,98,115,103,111,105,107,112,97,104,97,107,103,95,96,98,123,106,117,106,101,102,101,104,92,96,103,102,107,104,111,103,106,105,108,89,109,98,104,89,99,107,107,94,117,98,110,91,110,103,105,114,108,95,115,102,103,102,108,94,107,102,109,108,110,100,102,107,97,102,110,111,102,117,109,99,88,124,108,98,106,96,110,111,108,110,87,95,100,104,95,100,104,99,109,100,110,97,106,113,116,102,105,101,113,95,90,107,109,103,113,105,94,103,112,109,120,110,101,87,105,107,108,101,104,103,91,108,104,108,97,102,117,101,100,108,102,115,100,95,98,104,106,93,103,104,106,98,113,109,106,100,97,112,104,113,87,106,103,116,110,109,107,94,107,106,106,92,105,87,97,95,103,113,111,99,109,95,108,99,117,104,106,113,96,113,91,104,103,98,104,95,115,116,94,103,104,103,100,107,100,110,99,110,90,91,99,102,99,111,105,106,104,101,103,112,99,104,101,108,110,101,105,108,110,95,104,101,111,99,102,107,96,102,110,107,116,95,103,94,111,97,106,94,102,107,113,93,108,106,114,80,106,101,100,95,99,116,94,100,105,120,104,98,106,104,105,108,106,100,113,105,119,106,82,114,113,96,106,90,113,105,123,103,106,108,105,109,112,98,99,113,105,112,113,113,103,107,110,95,104,108,113,97,107,100,106,107,113,102,107,113,101,114,103,100,114,109,116,102,107,98,93,104,99,96,107,108,109,105,101,105,108,103,97,111,96,104,98,102,98,100,111,100,110,80,105,109,108,122,99,110,111,92,100,116,110,96,104,102,101,109,105,104,109,106,91,107,104,106,109,105,120,103,102,105,108,102,117,111,108,107,103,105,107,117,96,111,107,105,105,102,117,112,103,110,113,114,120,107,106,102,99,110,94,102,109,108,104,95,104,111,102,107,117,99,109,102,120,112,119,97,97,107,110,112,113,102,109,101,109,105,108,106,112,103,101,99,100,102,138,102,95,109,114,111,108,110,114,95,102,112,117,107,100,106,106,105,99,104,110,126,110,111,119,91,100,122,100,103,103,113,108,99,105,101,106,110,113,112,114,104,92,103,104,99,103,110,98,96,107,118,106,100,105,108,105,98,113,92,107,101,111,109,102,98,110,104,100,97,102,98,108,101,104,105,104,100,102,114,101,113,110,103,94,99,96,99,105,109,116,118,125,112,115,107,107,106,107,111,90,118,100,104,105,95,103,94,111,104,115,108,118,105,108,107,108,99,86,102,102,100,107,104,127,97,110,119,97,96,100,102,99,117,103,102,93,102,99,110,122,99,108,99,100,106,107,106,102,112,98,103,96,116,110,110,87,98,98,111,108,104,103,110,109,101,103,95,96,102,96,91,107,102,112,102,95,104,98,96,113,95,107,96,106,101,102,101,100,110,101,96,97,100,103,132,106,127,101,108,88,102,104,103,104,119,101,114,104,105,96,111,84,104,110,105,102,103,92,116,94,105,93,111,108,106,94,112,104,111,107,108,103,110,108,99,99,113,99,95,113,99,117,114,111,96,112,103,115,101,94,97,109,99,108,90,113,102,108,119,89,98,102,93,108,101,107,105,107,111,100,105,100,101,129,104,112,99,115,103,110,102,103,103,106,100,110,110,108,102,107,107,112,109,103,92,101,107,103,111,103,107,93,106,102,102,107,100,109,103,110,100,102,94,102,113,94,100,97,102,103,97,111,107,109,99,97,95,98,104,101,101,92,103,116,107,108,99,98,114,94,101,106,94,121,93,108,98,106,105,96,110,101,100,117,104,92,99,112,125,108,105,94,106,112,107,94,98,94,107,104,105,101,101,108,102,98,98,104,109,96,113,95,100,106,107,110,107,83,113,106,105,75,112,104,116,104,109,112,110,107,109,96,102,113,99,97,111,106,103,108,105,103,113,103,97,107,105,101,109,111,103,103,109,102,108,105,99,106,108,105,100,112,100,101,111,100,119,105,107,104,111,96,106,103,103,114,98,96,109,110,96,101,112,105,105,109,98,100,110,105,100,102,100,109,108,106,107,98,98,97,109,94,106,104,109,101,113,105,98,112,106,106,105,102,126,113,91,104,100,122,110,105,108,95,91,109,109,98,116,109,102,102,112,92,113,112,99,115,114,107,110,100,101,113,114,102,99,111,102,108,116,109,106,83,119,103,130,109,109,118,104,106,103,102,111,79,109,101,94,107,106,99,104,118,106,119,113,97,88,129,109,109,108,103,110,108,109,109,105,102,119,108,95,100,115,113,107,110,109,91,107,100,100,89,110,99,107,108,107,106,101,120,111,128,104,107,101,109,108,102,112,108,97,109,113,102,108,99,109,109,116,102,106,100,102,104,105,100,95,108,74,105,109,98,103,106,105,105,104,112,103,107,94,100,98,105,110,103,110,94,103,110,110,96,102,87,102,93,106,114,97,102,114,112,108,112,101,104,105,100,106,99,106,113,99,114,104,138,100,104,88,102,96,118,98,100,100,108,103,105,108,112,97,105,102,114,96,103,73,109,110,109,110,101,101,94,97,105,112,110,104,113,105,104,101,113,105,94,105,106,105,104,103,103,108,108,104,105,91,96,105,81,94,109,101,112,108,97,94,105,75,106,113,120,87,109,105,107,94,104,109,104,99,100,108,102,109,116,96,94,107,104,104,113,113,108,105,101,105,95,98,96,92,109,105,108,99,110,99,105,112,94,109,98,98,95,109,103,95,93,116,106,106,93,107,103,87,105,106,112,107,100,93,103,107,112,121,108,102,102,117,99,99,116,104,107,114,101,99,100,104,106,115,96,104,97,80,95,92,115,104,95,115,95,98,108,115,97,96,99,103,103,97,96,101,102,100,103,140,105,101,98,97,92,96,91,104,106,109,102,115,121,100,119,99,103,96,107,104,114,96,108,105,106,94,107,90,95,106,97,99,74,108,96,97,95,97,102,115,100,102,113,108,117,98,91,102,101,109,108, +493.28439,113,94,107,102,94,115,104,112,94,100,74,105,92,115,104,93,99,95,100,114,101,108,95,96,98,106,99,102,97,102,97,101,106,92,105,99,101,97,108,105,78,107,95,95,99,111,94,102,83,99,67,98,93,105,106,105,106,84,97,89,91,117,90,108,88,106,90,113,123,95,105,100,95,105,101,100,97,102,68,105,96,105,121,111,88,77,93,109,118,93,93,94,117,89,112,104,111,98,110,108,88,99,100,106,105,108,82,107,108,80,103,105,96,106,104,95,91,102,107,104,99,87,91,104,100,104,119,100,99,102,102,107,100,117,120,107,98,96,101,101,105,108,89,113,69,84,107,95,93,108,105,106,101,95,98,97,99,112,99,97,97,98,99,106,100,103,99,100,108,94,106,108,82,98,106,112,101,105,109,106,101,101,108,113,119,100,100,96,101,102,107,108,107,82,107,111,102,97,96,115,104,104,101,100,114,112,98,100,113,100,103,94,119,101,99,108,109,102,97,100,124,98,127,104,117,107,111,101,114,105,102,93,94,106,108,108,129,109,116,108,102,108,107,97,99,97,102,105,98,92,108,95,110,99,95,97,102,106,106,115,92,100,106,104,98,107,98,109,114,107,100,109,106,110,99,112,75,106,102,95,68,113,108,108,100,115,110,100,115,104,96,113,114,118,116,101,100,99,99,111,117,106,102,112,92,115,100,106,107,108,94,107,109,103,99,102,101,107,114,100,96,95,94,117,112,101,107,101,105,109,111,98,104,95,115,93,117,100,107,106,101,104,102,102,93,108,111,111,106,101,94,97,99,103,117,100,100,109,103,102,99,92,99,100,90,97,99,103,106,95,98,102,101,101,113,116,111,114,91,103,128,100,95,103,98,108,104,100,116,103,98,110,95,111,110,100,106,109,100,102,101,94,103,118,104,101,96,100,110,102,97,97,99,110,126,108,105,99,102,116,104,99,99,103,125,103,103,81,65,104,105,107,98,87,96,81,105,109,100,105,107,95,101,107,101,119,107,107,111,108,92,96,103,115,103,91,103,105,105,104,109,88,97,117,109,108,99,83,90,102,104,113,96,107,102,94,102,111,106,104,107,90,108,106,104,106,118,113,103,94,93,111,108,113,99,104,98,99,111,96,86,94,103,108,130,88,110,117,110,94,107,105,102,104,101,99,107,103,101,88,100,98,99,101,109,103,114,100,110,105,105,98,99,98,103,102,106,116,101,102,103,113,116,98,110,91,87,106,80,103,106,111,104,99,131,99,99,99,106,100,103,99,104,105,104,98,109,99,95,105,114,92,102,78,107,110,98,102,99,96,88,98,107,112,104,98,109,105,98,112,104,102,95,94,104,108,113,74,107,97,113,100,99,102,106,103,98,101,106,104,91,103,114,90,105,90,91,105,101,105,104,109,119,99,110,110,97,109,102,104,103,107,107,108,105,106,100,88,101,72,125,108,113,96,114,106,92,100,106,106,99,121,112,110,99,96,97,105,96,87,101,97,102,115,93,107,104,97,106,101,101,100,111,102,92,90,104,103,117,105,104,98,98,98,103,100,104,101,106,100,97,106,98,106,100,109,106,103,98,95,117,101,105,100,102,95,108,100,109,105,103,116,102,105,103,102,108,95,102,110,103,98,111,106,104,97,103,103,104,102,102,100,101,98,106,108,115,98,113,90,110,109,106,103,100,116,107,104,102,101,115,94,106,104,103,104,110,108,84,107,110,114,95,105,102,95,98,116,101,96,107,95,74,110,99,100,102,109,104,99,82,98,100,103,101,101,99,101,99,116,102,111,107,116,103,119,101,104,105,106,108,97,105,104,102,123,99,111,124,105,114,105,116,94,112,102,86,110,107,105,95,108,107,108,104,106,110,104,106,97,98,109,100,102,114,116,117,103,105,112,105,101,113,98,103,98,100,102,84,100,113,99,113,97,98,105,99,101,108,100,99,95,104,100,106,110,98,99,107,114,101,101,96,108,108,104,104,97,113,108,111,91,101,99,100,102,101,106,114,113,109,116,109,109,96,95,102,103,99,98,105,120,101,105,98,101,102,95,96,114,100,101,109,117,99,103,93,109,111,102,90,100,99,112,119,108,113,100,107,112,117,98,103,104,96,103,98,101,102,103,102,107,108,94,95,111,100,112,110,109,90,105,110,115,105,104,112,107,91,112,113,111,104,107,109,98,107,101,106,121,101,118,99,100,90,116,109,103,95,106,102,115,117,101,111,103,93,94,99,115,112,107,96,96,106,105,97,97,107,100,100,100,103,99,106,103,103,100,100,104,102,104,110,110,117,105,109,100,95,93,104,113,107,95,105,104,104,94,108,108,106,85,112,105,98,96,110,100,105,104,103,98,109,97,104,98,108,94,91,110,106,102,99,109,99,97,99,91,109,98,105,99,114,100,115,104,100,93,106,94,105,115,118,117,103,104,89,100,96,87,98,97,101,118,98,104,103,99,112,105,118,115,98,99,110,107,96,91,107,100,106,108,98,109,105,108,94,110,112,106,90,90,97,98,88,104,91,110,83,101,105,119,117,107,113,99,102,99,108,109,95,113,97,109,102,105,84,104,101,95,83,115,100,103,103,103,96,105,106,115,106,112,114,106,108,106,104,95,102,106,122,97,105,82,98,113,105,102,99,97,100,95,110,104,97,105,107,102,109,98,107,109,95,102,106,100,99,115,102,103,96,104,113,108,95,107,95,102,106,102,103,96,99,105,104,103,109,99,107,109,108,102,104,105,102,92,108,117,104,107,111,118,108,105,115,109,103,107,115,105,109,120,104,132,107,104,105,111,95,112,110,99,109,100,104,107,120,107,102,108,117,102,105,109,100,98,117,119,113,116,109,102,98,112,103,102,107,114,99,105,104,106,104,116,100,97,94,110,98,117,103,101,103,107,110,105,113,106,105,110,97,119,101,91,102,106,104,95,106,102,107,105,106,96,91,95,94,88,111,111,97,107,102,111,108,114,102,102,106,109,100,103,105,106,103,100,106,112,97,105,104,91,98,98,108,102,95,103,109,99,100,110,100,117,88,117,105,94,108,105,102,126,96,106,108,103,123,99,103,94,109,101,109,98,109,100,103,107,104,114,100,96,103,96,86,113,109,98,99,100,95,76,93,110,101,106,112,108,116,88,97,103,116,130,103,109,105,98,104,97,102,109,106,101,106,106,107,95,104,103,99,99,113,100,99,103,123,92,105,117,103,117,99,99,106,97,92,104,105,110,99,109,109,101,104,112,79,100,104,109,98,98,97,97,102,92,106,99,111,99,105,99,104,103,94,95,103,97,105,109,95,104,107,108,100,109,110,87,111,106,108,97,98,95,100,112,100,106,98,96,128,114,108,119,103,98,106,96,107,94,106,102,104,112,104,103,109,108,108,114,103,99,112,107,114,106,105,101,99,96,108,101,112,103,99,95,109,109,106,91,118,102,96,120,100,103,111,99,104,75,120,110,117,98,106,113,102,103,101,91,94,108,95,114,112,109,102,96,103,99,110,105,104,106,109,99,101,80,97,112,107,111,109,114,98,106,106,101,108,106,105,100,105,107,122,100,91,95,109,82,98,97,90,107,94,98,110,110,111,104,93,104,102,99,107,98,107,97,106,119,99,99,104,114,105,97,99,87,109,101,98,103,112,112,94,81,107,111,115,99,109,98,106,108,103,101,102,116,108,110,106,102,105,109,103,102,119,101,106,94,100,104,106,101,103,102,102,109,97,106,75,98,102,99,108,89,100,109,106,113,107,100,97,97,108,111,115,99,100,97,101,101,97,114,104,109,93,97,108,108,109,95,108,98,103,100,104,100,95,109,83,108,117,103,99,103,92,109,104,107,101,98,116,108,105,113,106,80,99,112,104,107,102,91,101,106,109,94,87,101,104,114,109,109,112,103,127,111,116,102,104,95,112,104,101,112,108,111,108,98,112,112,97,111,107,104,111,102,102,99,99,100,106,102,114,116,106,108,107,104,116,105,118,105,106,95,107,111,99,95,100,108,101,106,104,102,101,104,106,108,112,101,112,97,118,89,100,103,110,100,96,106,102,95,100,104,96,100,109,106,107,102,105,108,101,111,108,102,111,109,107,93,104,109,111,106,113,97,98,103,101,103,110,111,102,105,104,97,103,117,99,112,102,98,111,102,105,117,101,110,108,111,110,112,111,100,114,112,112,106,106,105,112,108,113,105,105,109,99,102,103,97,106,110,106,122,114,100,103,102,108,105,104,106,92,91,100,90,137,99,103,106,120,107,130,103,123,99,94,108,103,93,131,105,105,109,104,110,97,105,107,97,94,97,118,96,106,107,101,108,101,105,90,111,108,78,105,106,106,113,116,102,111,110,93,93,110,107,118,100,92,105,105,110,109,119,96,107,103,112,92,104,133,101,105,103,112,98,107,99,107,104,106,106,100,92,112,100,99,129,98,103,94,113,98,97,106,104,115,111,100,105,110,105,120,107,105,94,108,107,107,88,113,113,107,94,86,113,108,91,101,99,96,100,103,107,95,96,102,94,101,98,109,99,86,100,95,104,94,101,112,108,110,103,108,103,99,108,93,103,104,93,102,122,104,110,109,108,109,107,99,113,99,98,104,102,109,102,98,98,88,95,103,105,104,88,108,92,111,96,104,97,114,110,111,90,97,104,105,109,87,85,93,101,111,108,100,116,105,108,95,109,107,95,102,90,104,103,105,87,102,106,100,91,104,105,115,105,100,89,103,93,112,105,104,96,96,109,107,111,103,103,114,107,102,108,99,102,94,110,103,82,116,104,101,111,120,107,100,110,103,102,107,87,98,117,105,101,107,113,109,104,106,110,104,98,98,103,118,89,121,107,87,121,105,92,108,115,101,98,106,105,101,104,114,111,107,104,95,97, +493.42499,73,135,107,91,94,95,103,100,101,87,102,97,98,89,108,95,98,100,106,115,95,83,114,108,106,92,90,114,101,101,99,102,113,105,107,99,112,93,98,97,101,107,96,89,96,99,106,99,109,102,96,100,93,100,99,87,106,108,88,108,97,102,98,92,111,106,90,108,105,105,112,108,104,102,110,95,97,106,108,103,104,105,91,106,103,93,98,105,103,82,107,107,106,100,116,112,104,99,100,98,101,104,103,100,110,95,91,101,98,100,89,103,107,98,95,111,103,111,104,109,105,101,103,103,100,101,91,98,112,108,106,103,104,112,102,98,110,101,99,95,93,105,90,99,101,94,114,102,104,85,100,91,106,108,95,104,95,88,92,115,113,103,101,108,113,103,98,94,111,108,96,121,106,103,96,108,111,99,103,113,106,103,96,106,114,116,110,93,116,95,102,104,103,102,110,103,95,110,105,99,105,97,97,94,89,100,103,103,106,101,95,97,113,101,103,109,98,117,103,104,121,104,102,109,105,118,93,115,124,107,105,110,101,111,109,106,99,112,108,107,99,106,112,110,93,85,87,108,99,105,105,116,104,103,107,113,109,101,105,95,94,106,106,98,91,108,121,114,99,103,105,97,106,92,106,124,101,108,98,111,104,105,103,106,113,94,100,99,88,103,128,104,112,104,99,131,105,106,100,109,96,105,104,101,105,108,107,108,103,102,105,113,96,107,98,101,103,99,102,108,93,97,113,109,98,101,99,94,107,118,103,103,109,88,98,110,102,104,105,113,104,102,102,109,105,108,97,108,105,103,111,106,110,99,103,98,107,106,104,94,102,108,109,105,85,102,107,97,101,109,93,111,104,136,103,90,113,99,102,108,106,119,101,99,105,117,109,115,120,107,118,99,108,107,108,96,91,101,111,111,107,115,102,103,111,117,112,107,105,109,113,104,106,108,108,101,108,108,106,100,111,104,96,109,115,105,101,95,105,104,100,96,111,117,99,99,91,117,106,95,105,109,98,109,110,95,108,95,77,106,108,102,106,112,100,108,98,103,110,103,100,98,97,88,114,98,100,110,103,108,104,126,90,104,93,102,109,99,111,100,102,102,100,105,101,93,92,104,106,100,105,121,102,104,112,113,97,104,111,106,115,100,107,103,106,104,94,106,101,106,104,94,105,109,115,74,115,105,90,114,102,105,109,106,112,102,107,114,113,111,95,101,112,106,93,98,108,98,100,104,110,104,99,107,106,102,113,110,116,94,114,108,116,101,96,105,107,106,98,109,107,111,113,111,100,109,104,111,95,105,106,105,104,117,109,107,116,108,105,106,102,116,105,100,101,114,102,106,100,118,105,124,99,105,106,110,112,106,105,101,108,100,104,102,122,115,107,102,104,105,101,107,99,105,109,98,119,103,107,102,109,119,106,108,100,107,103,108,106,108,104,98,108,94,109,109,103,104,116,114,106,113,104,104,104,101,102,99,103,111,106,107,117,99,105,109,112,103,97,102,105,101,107,106,100,95,97,113,111,105,106,113,104,102,96,108,112,105,112,96,98,101,96,95,100,105,116,99,97,98,101,104,99,101,99,106,104,102,105,83,99,103,109,107,107,114,115,111,108,104,109,102,101,95,103,108,115,106,99,116,106,100,98,104,107,107,108,111,99,66,110,98,101,101,117,104,110,107,95,100,104,94,89,123,101,101,100,119,105,103,107,102,105,106,99,104,109,99,110,95,117,103,87,106,102,101,113,99,102,90,103,104,95,117,101,111,99,103,99,92,100,102,112,113,103,109,115,112,103,113,114,106,108,101,98,117,104,104,101,116,105,102,116,103,112,106,116,95,113,120,104,100,96,109,89,101,100,103,111,100,91,113,102,112,102,112,108,106,103,109,108,100,117,105,109,101,105,107,100,108,95,97,112,107,103,80,94,109,99,100,109,104,108,110,121,100,107,109,98,107,113,111,110,103,109,97,99,104,110,120,101,111,101,110,104,105,110,86,100,112,104,108,99,111,114,106,108,106,99,107,105,114,104,108,133,97,110,102,109,116,99,104,82,99,105,121,115,107,102,122,100,113,103,111,117,97,105,110,99,110,109,102,107,105,107,100,112,105,99,112,94,109,101,108,97,114,104,95,97,114,103,99,105,85,100,107,91,101,99,119,105,99,107,110,107,111,98,111,105,105,109,98,116,114,116,108,118,105,99,107,95,104,109,109,95,98,100,109,100,121,103,113,108,112,109,105,109,105,112,107,117,100,109,103,100,97,105,100,98,110,105,111,107,104,107,109,106,96,101,112,104,108,100,115,109,87,96,97,105,99,105,111,103,97,104,115,93,108,110,109,107,93,109,107,111,117,107,105,104,109,97,107,113,107,108,92,110,99,109,100,106,107,115,101,114,105,106,112,102,117,97,100,107,126,100,103,97,101,111,98,104,107,110,105,109,99,101,100,114,97,108,100,89,105,98,98,111,96,102,92,96,103,100,98,104,101,99,101,102,108,104,118,108,99,109,107,111,98,102,106,120,109,104,100,99,113,93,103,106,106,101,91,112,99,114,104,105,111,99,104,108,112,99,105,85,99,112,107,96,103,109,109,96,104,109,101,109,105,110,101,106,108,99,109,99,110,90,103,95,100,114,99,111,104,101,108,110,101,112,104,111,98,105,104,98,110,99,107,113,118,114,108,106,109,96,105,105,107,100,112,103,101,109,109,84,100,109,109,103,85,104,96,95,101,110,103,104,106,113,100,70,128,97,94,111,118,102,113,100,110,105,116,112,104,97,114,96,119,112,109,109,105,108,119,109,109,100,99,112,114,111,104,112,97,99,112,106,110,100,113,105,107,109,116,99,105,99,96,107,117,118,92,113,121,106,104,94,108,95,117,104,92,99,111,104,104,95,102,102,108,115,115,98,108,113,79,100,99,95,98,107,93,116,121,99,106,107,104,109,117,100,108,82,110,106,121,100,106,100,108,96,94,93,97,109,102,114,104,102,104,113,106,108,126,111,104,110,106,101,85,77,102,106,116,123,105,105,113,78,100,109,112,74,103,109,115,106,109,111,109,106,106,120,109,108,102,109,129,99,112,100,103,116,79,108,82,108,93,100,107,104,98,92,109,101,112,102,112,109,102,104,113,117,105,111,105,106,104,102,105,99,116,96,103,101,106,108,117,103,99,102,92,98,90,111,106,106,107,109,107,124,101,110,104,91,98,95,100,107,104,93,98,108,94,110,102,107,111,107,102,100,114,100,103,107,106,98,98,117,107,103,94,102,104,107,104,108,113,103,102,100,101,98,118,98,103,109,103,98,90,99,112,94,107,107,110,104,98,95,107,99,100,105,89,104,114,99,104,106,108,105,109,109,105,106,92,119,91,109,94,105,105,96,102,89,94,108,98,108,95,100,98,101,103,103,102,106,106,104,93,111,96,88,107,89,115,109,100,103,100,112,110,123,97,101,91,100,94,104,102,89,115,95,103,94,101,94,95,100,102,102,114,100,98,112,116,107,100,105,90,120,110,112,113,110,98,112,106,105,94,98,119,104,91,109,121,95,107,79,104,112,96,105,93,106,101,102,107,97,111,105,100,90,125,110,104,106,101,108,106,94,94,98,102,102,101,129,104,106,116,100,105,108,108,104,103,104,91,98,120,105,106,116,104,104,95,107,128,104,113,100,106,113,110,114,102,79,95,115,110,110,112,99,101,94,109,111,91,98,92,111,98,107,95,111,102,98,101,109,101,119,104,103,78,103,98,109,106,108,106,101,85,109,103,104,113,108,96,109,94,105,105,96,107,107,110,104,104,106,109,117,102,103,93,105,101,105,90,104,122,105,105,132,103,99,96,113,112,100,113,93,92,92,99,99,97,112,106,99,115,105,103,99,100,102,98,108,103,98,103,105,106,115,100,101,103,110,93,96,103,103,80,107,105,100,108,110,99,118,101,117,110,101,113,106,98,100,103,105,96,116,113,110,113,117,100,109,112,110,107,107,96,105,106,121,104,88,102,114,97,106,104,110,103,119,116,100,91,88,124,98,107,109,102,105,96,100,102,115,97,106,109,100,96,111,106,108,113,105,99,99,108,96,98,113,104,113,108,112,100,91,110,108,98,96,102,113,104,108,104,99,100,107,112,98,109,94,104,112,102,105,113,99,104,108,107,108,101,109,98,101,121,99,106,104,104,109,106,108,107,105,94,113,103,111,104,105,102,105,94,100,99,97,104,99,112,108,105,102,110,111,102,103,100,101,106,95,107,96,92,99,98,103,113,105,107,100,106,99,113,94,107,101,101,107,96,96,104,106,103,115,105,105,102,114,107,106,112,100,94,104,99,111,91,83,91,83,104,102,100,108,91,104,88,92,111,113,111,105,90,113,107,107,108,112,107,102,109,106,94,108,82,120,100,84,109,94,103,85,104,106,102,100,95,92,122,98,123,90,119,131,113,94,97,111,86,92,108,102,111,98,112,96,113,103,112,97,79,101,69,101,102,89,111,102,106,107,113,102,102,101,98,95,104,97,76,98,112,102,105,101,98,109,89,99,100,97,109,93,118,96,110,111,105,103,109,93,103,113,100,109,75,98,109,102,114,101,108,113,119,93,93,110,111,101,103,103,98,104,107,102,114,116,109,98,84,108,104,111,107,92,106,114,111,101,108,99,111,91,106,105,97,91,107,105,108,113,107,111,106,109,108,115,107,111,120,101,99,101,99,106,110,109,125,101,95,122,104,101,110,99,88,101,91,102,88,120,103,114,107,100,100,112,102,108,102,105,120,94,89,104,109,108,109,102,100,107,102,116,115,124,102,98,79,93,104,125,104,99,100,105,110,70,106,102,109,97,92,110,100,96,124,100,102,95,96,104,98,101,103,114,102,107,110,76,104,94,96,105,100, +493.56558,95,98,101,109,94,99,112,88,94,100,86,104,118,96,109,97,115,99,102,118,110,95,105,109,108,119,108,105,109,102,101,107,114,102,98,110,114,87,99,103,102,97,111,100,116,99,106,100,101,101,99,104,104,106,111,106,91,87,113,104,105,102,91,103,94,102,102,114,105,106,104,100,100,101,101,113,104,105,104,115,99,110,103,105,110,92,95,103,93,98,105,105,83,103,97,94,99,102,99,110,108,98,108,96,100,97,102,104,92,101,95,95,96,97,86,89,101,102,101,97,101,95,95,100,99,87,94,113,105,103,102,103,103,104,97,103,100,101,102,106,113,116,108,121,105,111,106,96,103,106,107,103,110,104,106,93,88,109,102,93,101,97,105,109,100,92,109,97,116,97,103,107,106,95,113,109,113,118,112,104,99,113,101,95,110,108,93,97,74,103,98,92,107,105,99,109,106,101,118,121,99,100,105,97,102,100,102,103,107,102,92,109,118,102,106,91,87,98,94,105,116,80,107,99,97,111,108,105,102,98,100,95,102,112,98,106,108,109,108,106,100,100,109,97,103,108,101,112,95,100,107,104,103,106,125,132,98,111,95,101,98,103,101,101,91,116,101,106,105,101,108,97,113,99,105,91,101,110,100,93,105,102,99,109,106,104,93,101,106,100,108,102,116,95,121,112,100,105,100,102,101,103,111,113,99,128,102,110,102,107,113,145,108,98,108,99,107,106,103,93,98,105,99,104,111,105,104,93,109,110,105,104,102,106,109,99,105,107,103,95,92,110,88,105,109,108,131,112,109,107,107,107,85,113,111,111,103,104,114,87,95,105,98,95,92,125,100,104,97,90,117,108,108,91,98,99,89,110,83,104,103,98,107,109,105,103,98,105,90,106,105,109,104,107,95,99,101,95,117,101,108,99,100,98,99,96,105,109,99,105,107,98,98,108,109,106,94,104,102,108,101,91,114,98,110,93,86,99,111,112,109,103,98,95,108,113,102,105,101,94,117,104,110,103,102,112,122,95,106,100,110,104,103,104,96,109,96,97,92,99,98,106,98,102,106,107,112,117,105,100,100,101,95,115,105,107,112,95,92,105,86,110,103,99,105,106,105,96,105,89,107,121,113,101,95,107,101,105,103,94,112,110,95,112,103,101,91,96,102,93,109,100,94,112,104,97,107,112,101,99,108,93,102,97,120,98,120,93,100,105,110,104,91,99,101,104,103,99,116,118,105,115,103,108,105,108,104,108,125,116,108,117,104,103,117,102,109,97,109,102,98,112,89,104,105,114,100,104,114,104,102,108,93,107,112,106,98,100,103,103,100,90,101,103,102,101,97,104,105,101,105,99,97,109,104,108,96,99,95,96,106,102,104,95,103,93,100,98,107,91,95,111,106,110,88,122,93,103,104,106,104,102,93,103,110,96,114,107,89,103,99,109,103,98,97,106,111,109,104,117,98,106,94,94,91,93,97,120,104,99,98,97,98,104,124,109,97,104,98,111,102,103,133,112,101,110,97,107,105,107,118,100,106,102,91,113,112,111,107,97,110,105,110,98,98,91,108,100,112,104,109,92,85,100,120,107,99,112,95,105,111,94,101,71,113,83,104,104,94,97,113,100,90,95,96,108,98,92,106,102,108,112,107,94,104,101,100,99,88,113,113,105,101,108,97,94,94,100,118,101,102,106,108,95,115,100,102,92,109,123,110,98,101,95,101,116,112,102,99,99,99,110,89,107,95,108,93,102,89,103,104,106,100,112,108,98,108,102,107,95,108,101,92,98,101,111,96,98,108,119,115,92,115,93,103,100,99,97,96,113,102,109,107,105,102,97,102,111,99,99,100,121,92,99,89,103,93,113,96,103,94,113,108,100,116,114,103,102,103,117,95,106,102,118,111,103,116,108,118,108,105,97,114,115,100,113,98,92,100,112,99,110,98,100,98,109,106,100,114,102,99,103,106,102,102,91,82,100,100,113,119,120,106,107,116,106,113,106,101,100,115,94,101,100,109,103,101,117,104,96,107,103,103,123,104,96,92,104,110,95,100,114,119,108,96,90,103,100,102,113,95,110,113,108,99,103,95,105,100,107,110,104,106,109,100,107,103,112,98,121,94,106,108,110,108,96,100,97,98,114,106,100,107,100,109,99,104,109,99,100,110,99,95,103,105,101,98,104,102,103,89,112,98,103,111,110,109,94,101,104,102,110,102,109,117,99,116,112,106,87,107,106,112,86,99,134,114,108,100,107,93,97,108,93,90,96,115,110,71,117,105,123,99,110,106,109,105,110,98,107,94,72,98,100,108,98,102,106,95,112,108,124,100,106,100,103,113,87,103,96,113,93,102,112,95,92,105,107,103,108,99,98,101,100,110,109,103,91,109,102,113,103,108,110,101,104,104,94,113,98,94,103,108,95,108,106,103,105,101,105,106,110,117,121,121,103,98,108,113,108,113,102,103,104,109,116,99,90,113,111,96,104,100,99,108,110,115,103,105,110,97,94,107,99,102,111,83,109,102,99,105,116,88,98,106,102,101,120,110,102,109,106,97,101,106,108,99,110,93,100,91,117,109,107,91,109,113,113,84,93,100,105,98,108,96,98,105,103,115,87,120,95,99,107,108,105,102,104,108,99,115,99,100,103,110,104,104,105,108,96,93,102,106,102,107,106,112,109,108,105,105,99,101,108,104,104,105,103,116,104,102,105,98,110,106,106,104,106,114,102,88,102,107,93,106,102,90,116,102,100,115,103,97,106,120,102,101,106,104,111,98,104,94,95,111,102,98,101,112,101,105,120,99,102,100,97,102,107,90,105,114,100,109,98,115,109,117,104,116,112,113,94,112,99,103,95,111,109,101,116,120,99,99,108,110,107,103,100,103,104,101,102,107,114,106,103,99,99,96,106,108,109,113,99,98,107,104,106,106,108,109,102,101,97,101,107,96,107,98,101,102,97,84,104,98,89,101,96,91,111,100,108,97,99,101,121,103,109,102,94,106,104,92,114,122,99,112,105,104,95,115,85,108,117,114,94,106,102,112,109,101,100,112,103,108,97,118,96,116,103,105,112,91,107,107,96,99,111,111,97,119,104,109,102,114,106,103,101,104,98,116,109,107,107,106,100,110,98,106,104,107,92,90,112,105,115,100,102,106,106,98,99,111,117,117,95,98,98,95,115,95,102,98,95,99,109,104,101,103,109,104,119,120,116,105,97,100,91,115,94,103,102,103,102,117,103,105,93,114,98,105,109,108,112,102,99,105,110,104,95,104,100,108,103,105,99,97,105,110,116,103,97,92,116,105,100,85,101,99,95,108,107,99,96,108,118,99,109,95,100,90,106,110,100,99,113,99,100,106,99,106,107,107,105,108,112,93,109,115,105,94,115,101,94,98,97,100,106,109,113,110,109,103,90,100,101,112,102,72,120,104,85,102,96,98,103,114,98,107,102,103,112,103,103,94,114,101,103,100,107,117,108,111,103,103,116,80,106,103,97,108,109,101,108,72,109,115,105,104,95,111,109,98,117,96,102,113,82,111,103,101,97,111,96,105,116,91,120,102,106,111,95,87,101,102,103,99,111,106,94,103,96,108,108,111,110,105,102,95,97,102,102,92,103,103,93,105,103,109,94,88,107,120,96,107,98,95,105,97,93,96,106,107,94,96,67,97,92,99,98,104,105,99,102,99,99,103,107,109,109,101,88,104,102,115,106,98,99,103,104,100,103,109,99,98,100,102,80,109,102,113,96,110,104,82,108,104,110,108,109,110,95,103,115,106,105,99,95,98,104,98,128,102,104,105,105,101,110,102,105,102,107,105,102,100,103,110,98,101,110,109,108,118,106,91,110,100,108,103,105,96,105,109,98,104,111,100,92,95,109,116,105,98,95,100,101,115,103,101,94,112,112,103,108,107,100,94,109,92,111,103,96,105,106,114,122,90,104,104,100,97,114,92,102,98,105,95,109,99,107,116,108,97,109,105,102,90,108,103,109,109,103,105,95,104,111,94,81,95,102,104,105,109,96,107,95,112,108,104,122,105,117,90,101,111,113,106,102,111,102,93,109,107,104,110,106,78,107,99,99,113,110,110,112,110,102,94,108,110,111,105,105,117,101,96,139,110,99,111,102,97,96,99,116,96,104,99,102,109,101,105,109,103,90,121,98,116,101,128,86,109,104,116,100,106,103,98,116,106,106,96,111,97,102,101,112,105,100,99,100,113,103,100,110,101,94,108,105,115,109,105,106,103,101,106,99,102,96,101,102,95,98,102,91,108,107,94,100,104,99,104,105,113,108,102,115,101,105,113,110,102,104,96,95,115,103,111,107,103,101,103,102,106,99,113,109,102,111,100,113,91,113,93,96,101,111,106,103,103,103,106,110,109,114,103,108,105,121,106,104,100,105,86,99,102,99,94,97,91,104,101,102,116,105,107,97,97,96,87,102,112,88,104,105,114,85,105,111,115,108,97,101,97,95,111,93,98,97,112,114,103,101,105,108,90,106,104,91,97,94,108,111,86,132,101,111,118,99,121,108,98,98,120,110,98,113,105,116,108,92,97,95,115,95,104,119,97,102,120,101,104,112,90,94,104,118,95,97,110,102,111,104,112,106,92,102,103,116,110,103,99,106,121,102,113,87,116,96,99,100,79,98,113,102,102,105,96,109,102,99,108,87,106,100,116,84,113,102,105,96,98,96,105,103,101,97,103,120,106,90,96,95,100,108,104,98,117,113,107,108,101,110,103,96,96,106,100,117,105,106,94,102,100,102,90,90,103,101,110,92,104,107,103,107,104,112,103,102,97,99,110,97,103,104,74,101,91,95,105,103,104,101,92,96,95,113,95,110,97,110,100,95,106,106,89,102,110,106,88,97,92,76,108,103,94,115,107,110,99,90, +493.70618,110,114,90,94,98,100,100,99,94,108,120,105,90,107,102,113,93,111,95,104,98,104,104,113,109,108,113,113,112,107,108,97,116,95,111,100,101,97,103,102,107,104,105,96,119,107,98,109,99,99,101,111,106,112,115,100,105,105,113,99,99,82,91,105,118,123,94,108,101,105,116,105,105,114,97,116,92,111,114,100,118,126,101,108,95,100,111,114,89,107,106,106,113,109,94,106,100,98,109,91,109,106,106,103,103,120,96,109,100,109,115,110,107,98,104,126,107,105,109,109,109,89,101,109,105,133,103,96,111,110,109,95,96,121,114,101,106,94,115,96,102,100,108,98,99,104,102,106,103,108,108,74,109,98,90,125,100,100,96,105,106,93,103,110,108,100,100,101,115,100,107,119,97,106,107,109,117,89,137,118,107,102,107,104,96,97,90,100,114,111,115,100,100,108,107,100,113,113,111,116,104,102,89,107,112,105,94,99,105,113,100,94,114,107,111,107,72,104,100,100,102,107,98,104,105,111,103,105,108,98,102,103,97,104,105,117,107,108,109,94,110,103,118,104,115,112,104,103,115,100,114,110,112,114,103,118,103,82,98,108,107,104,93,99,104,119,114,93,108,110,115,101,107,109,110,106,109,109,99,100,100,100,106,107,103,106,109,97,106,108,104,138,105,112,83,105,97,103,108,122,107,104,106,113,102,103,98,110,100,106,104,103,110,117,107,102,113,121,105,103,98,105,113,107,108,118,103,104,110,115,110,106,112,100,105,103,101,99,95,109,101,109,104,106,99,91,111,115,111,113,114,102,105,108,112,106,104,110,110,102,107,138,109,110,94,118,113,110,96,122,100,103,112,102,108,110,110,102,98,88,100,108,95,113,102,109,115,112,106,100,123,109,104,99,113,112,107,104,97,106,119,108,102,95,107,113,123,87,104,105,102,110,115,92,116,100,98,103,115,106,111,101,95,102,111,103,107,98,103,111,100,108,104,98,99,102,105,110,103,109,102,104,100,110,114,114,104,77,112,109,104,89,117,100,105,78,107,108,103,106,102,101,99,112,111,117,114,112,102,111,99,100,107,105,129,100,107,105,100,112,95,96,105,117,113,94,107,97,98,103,105,120,110,106,106,108,116,110,99,100,109,108,117,108,98,99,106,100,112,107,113,107,100,103,108,102,106,102,107,101,108,116,118,107,96,99,97,112,105,104,101,105,103,110,104,104,113,104,106,108,106,113,99,105,112,100,103,105,109,107,110,109,107,103,127,97,104,101,109,107,107,103,94,115,109,106,101,100,104,114,109,103,102,107,102,106,111,105,117,107,112,97,117,111,118,102,113,110,103,108,112,107,115,114,98,103,98,105,104,96,109,99,109,96,102,110,105,87,105,99,106,110,105,121,110,108,96,104,109,100,113,107,128,108,109,116,98,102,108,117,100,104,101,111,98,113,98,105,129,106,110,109,101,104,112,101,107,99,100,123,79,106,106,108,108,108,111,104,100,104,109,101,109,102,107,102,110,108,112,104,101,104,114,99,101,101,99,111,111,98,109,108,117,96,106,101,104,101,102,101,110,110,113,105,99,109,105,115,102,120,104,100,94,114,98,110,109,106,108,98,109,117,109,105,97,95,96,102,114,103,113,103,98,98,96,106,107,103,116,103,115,95,102,100,97,113,92,117,113,121,107,117,103,105,103,102,105,126,107,105,113,90,106,103,94,107,110,91,114,106,113,111,99,102,97,109,112,91,96,101,105,103,120,101,87,110,106,106,100,101,102,100,106,105,92,109,111,104,108,105,103,112,125,111,112,111,120,104,102,111,107,99,106,105,110,98,102,113,95,120,105,110,113,109,103,133,103,109,124,102,102,114,108,105,105,119,104,107,111,103,108,107,110,103,106,102,101,103,104,117,113,102,101,107,106,100,107,111,100,96,107,97,112,113,113,102,110,101,106,108,119,114,100,101,104,114,111,119,119,102,109,110,97,105,112,110,106,102,101,109,108,116,105,113,108,104,109,124,105,82,103,110,113,107,107,106,113,119,103,99,106,109,108,91,97,99,110,98,99,109,97,108,103,100,107,105,102,103,106,101,107,114,113,110,111,113,112,96,107,108,101,115,95,109,114,95,98,87,112,113,95,102,119,110,110,111,117,99,105,110,105,101,108,98,108,111,108,105,101,109,89,109,94,104,103,115,102,100,104,101,92,109,98,108,112,105,110,92,94,110,106,112,102,129,106,103,111,111,97,97,98,99,109,100,106,94,113,100,107,109,104,97,111,105,98,107,111,94,98,111,91,93,114,104,103,106,107,100,110,117,121,99,105,105,117,105,103,110,104,105,104,111,108,103,104,104,104,115,109,112,106,107,99,91,116,110,104,96,107,105,108,114,109,94,94,111,101,106,118,129,102,99,116,101,98,114,112,117,80,108,101,114,100,104,104,98,97,97,98,107,105,113,109,108,108,110,106,103,122,106,106,113,107,102,101,105,98,92,106,106,125,104,111,101,106,105,113,97,99,103,98,101,99,89,104,95,102,116,106,110,98,117,108,101,102,108,103,107,111,110,117,94,84,95,99,104,103,97,87,106,103,106,93,107,103,95,104,117,122,77,110,99,120,108,107,102,117,109,95,105,102,81,108,111,100,107,101,105,120,109,98,111,96,102,89,107,102,102,104,110,90,104,98,110,106,115,108,109,108,112,110,114,115,112,99,109,103,131,110,115,101,109,104,67,94,111,100,110,103,102,98,118,101,112,110,108,116,110,102,102,105,111,109,106,105,102,106,100,114,93,112,104,107,120,111,104,104,103,105,97,108,103,112,89,101,111,109,106,105,106,103,99,110,117,113,102,102,115,99,112,112,93,103,109,110,104,107,106,109,106,99,102,97,103,103,109,101,117,102,124,105,119,102,103,109,114,107,115,106,104,103,102,108,94,93,115,106,107,105,122,93,112,93,99,96,96,102,101,94,113,108,112,105,101,112,128,106,104,116,95,104,99,95,98,121,82,113,114,109,117,105,98,86,113,112,113,102,110,103,113,99,116,115,109,103,118,118,98,119,107,107,112,111,107,112,105,103,114,100,98,113,115,102,104,97,96,105,110,113,103,104,110,110,115,113,105,116,103,104,106,94,99,116,114,98,108,105,111,112,107,91,99,112,107,109,119,113,101,106,107,115,91,104,107,101,107,116,117,103,104,124,99,110,94,105,97,109,98,103,103,105,107,104,100,105,95,97,109,119,108,112,100,112,119,104,107,112,106,93,103,99,109,109,113,102,107,102,94,102,99,99,110,105,113,108,107,100,97,117,106,107,105,107,109,106,120,113,109,106,99,104,114,106,99,113,102,103,104,100,104,111,111,98,107,90,107,96,105,101,108,112,106,112,96,105,101,103,100,110,106,107,106,100,100,104,100,105,96,111,102,101,103,117,113,94,108,117,104,99,100,102,117,105,90,80,103,111,103,104,113,107,106,104,103,105,106,104,100,121,97,106,102,93,114,113,81,104,108,103,115,84,110,101,97,108,103,105,106,102,111,94,110,110,102,110,99,98,109,104,96,113,104,103,108,127,104,107,103,112,93,96,100,105,108,100,105,110,106,111,90,102,100,100,103,109,112,105,108,113,113,120,110,106,105,113,91,107,104,108,112,113,105,106,114,101,94,95,112,99,100,102,106,113,109,110,102,105,111,112,120,102,91,107,111,104,100,103,111,109,83,103,102,98,100,95,113,98,105,104,108,102,107,104,114,108,120,103,102,111,105,108,95,105,110,107,102,103,100,106,97,67,116,107,115,106,99,101,100,105,112,108,120,110,101,106,120,98,92,106,109,97,104,102,123,103,113,100,102,103,103,104,109,108,104,113,103,106,98,104,99,102,104,104,105,106,99,99,108,89,106,109,107,103,102,97,110,102,94,101,113,99,107,106,105,96,104,105,99,104,99,104,115,101,100,110,102,95,105,97,95,109,124,97,114,103,100,117,109,101,109,98,114,95,121,105,100,103,104,101,113,113,105,104,102,109,109,101,100,109,107,106,109,106,97,94,104,110,96,113,99,102,116,100,121,111,103,104,97,105,113,83,106,104,112,102,106,108,122,98,99,105,102,100,106,102,113,98,103,98,107,105,102,103,108,117,100,99,112,108,98,104,100,97,98,121,102,116,109,104,99,106,105,102,108,110,109,95,117,116,116,112,105,105,99,95,99,91,109,111,97,111,101,98,101,102,109,101,120,108,108,95,103,105,124,87,109,105,101,100,102,67,77,119,103,105,109,103,105,105,109,98,106,113,104,112,106,104,112,101,133,133,92,97,103,114,110,99,107,107,77,102,106,100,88,104,101,97,105,108,108,96,110,101,110,95,100,105,132,99,86,92,107,109,104,106,101,108,101,111,98,97,94,96,107,106,124,120,100,104,101,102,109,104,110,100,90,103,89,105,106,96,101,92,110,101,94,107,103,112,105,110,103,102,113,93,100,102,107,94,108,97,95,105,108,107,97,101,88,103,98,98,93,111,109,104,105,109,107,110,110,102,102,100,103,96,100,108,105,99,105,104,101,97,94,110,116,117,109,89,106,101,95,107,107,127,107,104,95,103,108,104,133,98,106,91,107,105,108,116,115,117,100,107,94,114,96,95,117,103,102,106,108,105,115,109,106,106,104,85,104,101,105,76,115,102,104,117,116,103,103,106,95,104,103,103,104,105,108,102,102,103,95,100,106,100,99,99,112,100,103,100,97,108,99,100,100,106,100,101,106,104,96,97,109,102,95,105,103,101,103,101,103,103,100,109,100,103,100,95,86,94,91,104,94,106,94,113,98,97,109,99,93,88,101,113,112,102,92,97,92,86,90,108,108,110,91,90,116,102,127,109,96,97,105,109,120,103,112,99,104, +493.8468,118,110,104,100,102,103,101,90,106,103,114,122,106,102,97,100,115,117,95,115,98,95,112,91,102,105,102,108,108,111,101,104,126,107,111,102,107,101,105,108,83,104,99,101,103,109,98,110,100,104,104,102,107,94,97,106,101,109,95,90,108,98,91,100,90,103,102,106,100,103,117,110,106,105,104,104,105,88,109,89,103,114,101,101,107,93,101,107,107,103,108,116,95,117,104,107,108,118,107,101,86,105,103,114,110,109,102,98,129,96,112,108,107,101,110,109,95,105,95,104,104,104,104,122,100,109,99,109,87,104,103,100,99,94,101,100,99,97,107,102,96,107,106,101,100,111,106,101,105,102,95,104,115,101,106,111,107,100,118,112,104,111,107,97,111,95,107,96,102,103,100,105,109,104,117,114,108,105,114,115,104,109,101,103,113,111,115,108,106,100,99,103,121,105,109,105,97,112,109,97,112,109,107,104,102,110,90,112,109,105,103,104,110,91,105,113,88,102,98,109,99,113,89,100,103,113,110,104,102,98,91,108,121,107,109,109,130,107,106,106,99,102,80,104,100,91,107,94,104,105,100,107,99,98,100,103,91,104,96,104,89,104,112,112,111,90,106,105,109,97,99,91,112,105,108,99,104,121,98,108,119,110,100,108,105,107,103,128,98,107,110,95,110,104,99,106,103,95,97,98,107,109,111,107,96,111,106,114,134,107,108,113,111,107,106,107,104,97,100,103,118,96,105,106,127,105,98,103,109,103,105,107,106,95,101,103,96,105,105,100,102,109,89,101,109,103,100,99,107,105,107,100,112,121,103,108,108,121,110,99,117,96,99,111,117,109,110,103,109,98,100,110,107,116,114,96,96,94,95,97,100,102,113,96,97,104,97,101,94,102,113,117,87,117,101,100,111,100,100,109,103,96,97,97,113,102,99,99,104,99,96,106,99,103,112,98,114,110,107,109,99,96,105,102,117,100,123,104,104,99,96,103,102,103,98,112,109,97,104,109,112,99,95,121,114,106,98,92,110,106,110,98,108,93,102,100,90,112,107,107,106,109,115,102,99,101,101,108,77,90,94,105,107,113,104,108,94,96,94,97,101,106,113,104,104,98,100,106,104,112,97,109,108,107,88,96,101,116,123,102,114,106,113,105,103,107,77,107,102,104,108,114,102,113,95,113,96,111,104,105,111,101,110,108,95,103,102,116,110,113,93,110,101,91,108,101,105,107,113,110,105,112,101,98,108,107,98,106,84,106,103,104,106,105,93,95,97,87,96,107,111,95,105,106,88,102,98,107,99,107,106,118,104,109,109,106,101,114,88,109,105,115,95,93,102,105,99,109,103,97,116,105,103,97,111,103,99,104,112,103,121,105,110,96,95,104,110,91,100,96,96,111,105,101,109,106,113,108,102,90,102,95,113,97,103,105,106,89,104,109,96,112,96,119,92,123,95,103,110,105,110,105,103,94,103,91,111,110,122,120,95,113,102,103,106,104,100,119,98,103,101,96,108,97,99,110,108,104,105,116,117,113,109,107,101,125,102,108,108,109,101,105,99,98,118,105,101,111,95,95,117,123,108,106,98,101,112,106,104,101,119,94,105,91,105,120,118,111,110,105,100,102,119,96,98,98,98,117,99,109,114,107,116,106,99,105,106,116,109,104,107,116,100,102,103,106,118,86,114,96,95,101,102,101,109,93,95,111,111,100,113,98,109,100,117,106,95,115,111,99,104,97,112,100,101,102,104,94,112,109,98,106,111,90,102,102,107,90,92,108,94,105,107,103,113,107,110,106,107,108,101,113,108,103,108,102,104,109,111,112,98,95,99,96,86,109,114,93,109,115,106,101,126,109,112,109,100,104,102,99,106,140,114,111,106,114,100,114,103,107,116,87,130,97,116,103,103,102,102,98,96,104,105,104,103,108,114,94,103,111,105,105,106,106,101,100,110,106,109,94,100,104,102,103,103,108,111,102,114,108,100,113,99,104,95,102,109,86,107,94,120,102,120,78,109,109,112,108,94,103,100,115,104,110,98,106,102,103,101,112,113,107,96,102,106,97,108,107,93,99,101,106,113,117,105,101,92,103,110,108,103,107,109,109,110,101,84,101,107,104,103,105,98,109,99,130,105,95,95,105,103,95,113,105,112,113,138,99,109,107,134,104,123,103,100,107,106,110,106,116,108,110,106,104,89,113,107,98,97,110,94,111,102,104,93,101,109,105,101,103,95,95,111,110,103,117,111,98,98,96,108,108,99,109,86,101,113,102,103,112,101,117,97,111,98,112,108,102,94,113,111,122,93,109,104,106,83,110,103,103,107,114,102,94,102,101,112,95,95,106,112,99,110,106,115,105,124,113,84,101,88,101,84,106,102,109,116,99,111,105,97,103,98,110,88,106,102,102,101,101,98,112,95,113,109,102,104,108,116,96,110,102,109,104,113,105,113,106,96,98,94,95,108,114,115,107,116,112,113,105,117,103,98,108,99,111,109,108,108,110,107,98,112,103,106,111,107,104,132,111,119,115,108,110,132,99,111,100,106,94,112,115,107,99,109,111,104,109,107,93,112,106,120,108,100,103,105,100,109,106,110,96,91,110,110,117,103,108,125,122,111,111,108,124,109,104,122,106,103,105,94,111,117,104,110,110,110,109,94,110,123,101,103,103,117,109,107,104,109,112,112,112,108,107,99,106,111,104,100,113,121,104,116,102,103,103,117,106,114,102,102,102,101,103,106,101,114,108,109,95,117,113,107,113,122,114,108,118,103,105,113,106,109,103,93,113,110,105,115,111,100,111,92,121,98,116,107,101,98,119,99,113,85,102,116,105,109,106,107,115,109,118,111,105,108,92,104,105,92,96,101,107,104,103,110,108,100,106,116,114,119,103,113,104,110,111,101,107,114,114,107,113,104,104,106,104,103,103,113,114,113,121,96,104,104,104,101,116,103,107,114,104,108,121,109,114,89,102,96,108,109,106,103,78,105,113,100,105,106,102,109,99,114,102,107,108,107,100,106,111,102,91,99,82,106,106,110,102,113,105,107,102,107,124,118,107,106,98,107,107,104,103,96,104,102,106,115,109,112,111,110,107,115,103,106,106,111,93,114,101,115,103,108,115,99,113,114,103,106,114,113,106,114,110,111,109,103,98,102,121,106,101,113,109,105,111,102,95,100,120,100,98,102,100,108,105,107,124,104,101,102,113,100,106,112,99,106,108,100,113,115,107,100,103,81,109,108,99,119,106,104,111,103,99,111,108,88,114,113,106,111,102,99,108,107,97,116,107,103,102,105,99,106,106,105,125,106,108,103,100,136,89,107,106,109,98,112,116,110,106,94,114,94,102,96,108,104,72,98,104,117,97,116,117,106,110,104,97,114,107,102,104,96,110,114,118,102,125,100,109,109,109,107,109,102,103,99,109,112,104,107,98,106,110,113,116,103,106,88,106,113,110,108,101,93,102,104,115,110,100,117,103,109,101,105,111,102,118,112,100,111,100,108,113,107,123,112,123,95,107,104,120,105,109,109,117,105,111,93,100,101,118,100,128,108,92,77,107,106,102,104,100,142,108,107,89,100,105,110,105,112,109,95,115,117,103,119,107,95,107,103,98,109,108,100,97,113,105,112,99,109,117,101,106,94,98,108,108,92,122,101,109,116,104,102,98,97,109,112,125,110,120,115,109,104,112,116,100,112,105,111,113,110,115,101,111,114,119,112,109,109,100,105,103,102,94,110,102,124,110,109,112,114,109,108,111,114,106,98,105,106,111,104,110,102,107,107,100,110,95,105,103,93,113,108,105,99,107,109,115,98,97,88,103,109,107,118,106,107,110,105,103,104,102,111,115,113,107,107,104,102,121,108,114,106,111,95,113,103,104,103,101,103,96,105,103,110,96,100,110,126,111,109,121,97,117,110,104,102,120,120,87,112,102,115,99,101,110,105,114,103,107,106,110,102,107,111,116,103,107,106,110,107,116,105,102,106,102,107,113,96,113,100,111,113,109,98,115,101,113,102,112,120,117,105,104,102,91,106,101,116,105,102,112,100,110,122,99,117,116,123,104,113,102,106,114,105,105,100,99,104,102,109,107,102,113,118,109,118,104,93,96,125,115,99,110,100,103,113,103,112,101,96,104,98,110,100,110,100,108,107,97,100,95,105,110,119,103,111,100,105,99,103,110,99,123,106,103,79,114,113,108,100,95,112,102,99,113,112,110,109,105,110,106,104,105,98,104,117,108,107,105,107,104,113,99,113,109,105,110,104,112,114,110,98,104,106,106,106,103,106,128,105,96,117,109,101,108,117,99,106,99,101,104,113,109,94,96,108,115,109,109,103,116,109,101,109,105,102,100,95,89,112,102,89,94,105,112,108,108,94,101,113,110,109,111,103,113,111,101,101,97,104,116,106,107,94,101,100,102,101,110,126,108,105,99,108,101,122,109,100,108,105,111,91,106,105,105,105,90,112,104,107,100,113,115,110,112,103,106,101,100,101,111,118,106,113,116,100,113,110,109,109,108,111,108,120,108,101,107,102,102,92,84,98,93,100,103,102,97,107,111,105,103,121,111,110,106,104,100,103,103,113,97,113,104,103,103,103,98,109,113,108,110,105,109,107,115,95,112,116,128,109,110,108,96,111,102,115,109,100,87,121,111,105,112,105,104,102,100,125,96,110,110,115,94,101,122,104,102,107,117,111,111,85,111,84,99,106,87,102,99,102,107,110,103,108,97,113,95,116,103,105,106,110,106,95,105,108,99,105,102,105,109,102,94,81,100,95,105,114,115,107,104,114,107,96,102,96,105,118,76,101,101,116,109,114,110,108,111,103,119,108,109,96,123,99,95,108,94,87,112,106,94,108,118,96,105,102,112,105,100,98,85,109,120,109,102,100,96, +493.9874,92,98,80,100,94,100,109,105,101,111,113,98,94,107,91,104,94,97,105,100,103,95,96,100,106,115,96,101,105,106,109,102,97,133,107,106,94,97,104,109,104,96,101,100,98,98,104,105,93,104,109,95,96,95,117,101,100,91,114,110,98,103,82,106,103,99,98,107,96,108,128,108,101,88,100,109,112,101,113,99,113,108,109,100,108,105,111,102,92,94,131,100,105,113,103,109,95,101,106,109,106,94,95,101,102,102,98,106,98,105,98,87,102,99,104,110,91,96,114,109,99,98,104,98,106,99,96,93,114,109,128,92,104,104,100,121,115,106,107,102,109,106,120,88,99,96,102,118,104,100,103,105,118,88,108,106,113,102,93,103,109,101,112,103,112,114,105,97,92,109,98,104,98,108,115,102,105,93,112,113,104,105,110,102,91,107,103,100,120,106,107,106,99,112,109,91,105,95,109,89,100,95,105,113,103,126,107,94,112,99,111,88,102,103,108,112,105,104,101,102,99,115,105,112,96,95,110,106,98,104,106,116,108,107,112,105,108,117,101,95,98,102,117,104,102,100,97,97,107,105,104,93,113,98,106,92,102,103,104,103,99,95,100,115,94,108,109,108,96,96,99,105,97,112,107,100,111,109,99,106,95,112,111,109,106,112,100,105,110,101,118,97,108,104,96,107,117,108,99,103,115,87,101,116,98,102,121,97,119,106,113,103,124,98,118,104,104,113,110,92,109,87,105,92,100,108,109,93,106,103,93,104,99,103,120,102,110,105,100,99,102,111,102,104,102,115,103,111,101,118,85,106,109,96,107,99,116,115,120,99,113,104,103,90,100,95,114,105,110,101,92,101,112,105,102,107,95,102,104,100,104,104,101,104,112,103,111,113,109,99,106,110,99,110,104,100,113,101,108,100,103,97,103,118,104,115,104,105,97,93,102,98,104,114,104,96,95,107,109,113,93,103,97,108,108,96,95,95,114,103,104,93,107,102,99,110,96,112,104,98,117,98,105,106,102,111,97,93,104,118,114,105,108,108,112,99,95,96,117,110,97,92,112,102,106,102,110,110,110,97,95,107,102,106,105,92,106,99,98,102,109,111,112,110,103,105,118,97,91,114,104,108,93,101,101,104,103,101,107,107,115,123,101,102,113,116,93,93,110,107,108,102,78,123,112,103,95,65,101,112,93,99,113,118,100,105,112,104,101,116,97,107,106,106,109,112,103,109,101,100,98,97,101,98,107,109,99,107,104,104,98,105,103,104,95,103,94,102,105,104,103,106,91,110,107,118,96,105,104,106,96,111,114,106,120,121,100,102,99,115,103,112,80,107,101,104,107,104,109,91,121,83,101,103,112,109,98,112,117,112,104,117,110,124,106,105,105,112,101,100,111,104,105,101,110,97,113,112,91,99,95,100,105,106,112,100,110,102,106,95,104,106,100,106,100,105,119,104,113,92,116,112,108,101,107,103,100,99,108,114,99,117,119,110,104,115,113,116,117,118,100,102,103,98,101,93,113,93,103,96,114,102,114,108,98,95,88,99,105,105,106,112,112,105,101,102,110,102,96,109,102,112,113,104,93,88,94,103,105,96,107,94,98,102,102,115,97,109,99,94,116,108,98,116,94,102,102,104,109,104,105,109,93,107,110,115,101,103,105,105,103,98,98,110,109,104,109,98,104,103,92,100,96,118,107,111,113,99,100,95,101,85,109,101,109,102,100,102,120,99,100,105,108,103,107,109,87,106,108,103,116,94,118,103,102,110,109,104,108,103,107,99,115,110,98,102,103,105,104,115,101,87,102,108,97,111,109,91,115,105,115,103,100,83,109,113,104,106,107,106,133,106,93,111,117,104,97,100,99,101,108,105,88,102,110,96,111,102,86,95,113,117,122,100,103,105,92,110,109,109,109,105,112,110,102,115,104,105,98,102,78,98,109,98,111,112,105,119,90,81,100,107,111,114,119,111,104,108,111,102,97,104,113,107,111,89,108,104,123,98,90,104,103,112,102,102,105,129,122,105,104,100,104,110,95,108,103,109,116,97,105,113,106,102,102,107,111,97,99,107,107,110,107,109,103,96,100,106,104,99,114,106,99,100,98,100,100,107,88,112,106,105,117,100,91,105,103,105,105,109,108,106,95,95,94,102,99,112,110,105,111,98,111,96,110,104,109,105,116,106,99,100,107,99,100,102,102,106,86,99,103,102,117,100,106,97,114,107,94,103,87,95,90,94,111,113,107,100,107,100,114,104,107,98,97,93,96,103,98,118,108,97,111,105,109,106,104,116,102,94,109,108,91,98,94,110,119,95,98,108,101,109,99,96,103,115,113,114,111,92,99,100,101,102,122,97,103,99,107,100,100,111,96,106,97,109,106,96,107,109,104,119,95,102,97,107,95,103,97,106,113,109,110,106,90,109,108,104,102,87,98,109,105,97,98,82,110,103,91,104,109,103,102,102,102,107,109,109,94,124,106,104,101,97,102,104,103,105,110,100,96,94,102,95,101,121,103,98,101,103,100,101,111,112,112,87,111,102,113,106,101,98,100,103,100,121,106,106,103,103,101,103,104,93,109,110,95,89,102,96,117,105,102,102,95,108,117,106,100,112,113,102,114,110,108,98,109,108,108,113,102,98,132,103,105,70,103,103,92,109,87,104,102,97,103,86,102,104,100,97,98,112,117,109,98,112,101,98,111,113,95,113,102,104,98,100,102,94,98,98,102,94,104,105,115,101,100,105,108,100,104,107,101,111,96,109,107,108,113,104,102,106,104,100,98,87,110,107,110,109,103,99,100,107,102,111,112,116,106,107,115,108,102,105,132,103,102,114,100,110,119,103,106,109,108,108,94,100,114,110,107,106,107,113,123,99,101,119,95,101,104,107,100,106,115,86,97,85,115,114,108,117,102,97,84,111,102,107,99,102,108,99,107,105,99,108,103,108,101,88,94,106,110,116,105,112,110,109,108,109,101,97,98,103,97,105,104,100,97,112,114,92,103,109,119,117,115,102,102,101,103,100,96,103,108,112,101,95,104,113,90,99,97,129,96,101,97,108,91,108,105,115,102,98,84,97,109,104,101,98,107,124,108,107,107,104,109,102,106,87,98,102,97,105,104,99,104,102,94,111,108,103,98,94,104,103,98,107,95,90,99,79,98,106,107,99,102,88,106,91,105,116,95,104,105,109,99,98,112,108,104,105,106,106,104,98,121,103,115,106,108,103,65,94,102,113,105,105,123,91,103,101,100,112,104,102,105,107,100,108,99,99,120,107,107,102,103,98,135,105,109,101,107,102,113,100,110,95,98,94,123,105,105,120,101,100,101,96,100,96,104,97,98,97,114,106,110,107,102,110,112,104,97,111,100,101,100,105,108,107,107,102,103,99,98,120,109,97,112,93,103,105,106,104,107,99,115,108,114,107,111,109,120,119,107,112,113,93,111,95,108,107,114,95,107,110,100,105,106,101,121,117,111,87,96,103,107,101,103,113,106,106,104,118,91,103,112,94,97,108,107,99,106,93,102,102,102,89,105,113,108,119,112,110,103,111,101,97,103,97,108,98,103,104,103,91,105,100,108,113,102,102,106,106,104,96,105,100,103,123,101,91,119,100,111,94,120,106,100,99,99,106,110,106,106,108,102,100,106,100,104,109,112,101,105,103,113,112,106,106,108,105,101,112,108,100,104,100,96,100,110,112,111,100,101,105,115,109,107,102,103,101,107,95,107,101,111,104,112,102,99,101,97,76,114,117,132,109,100,104,105,107,110,89,105,110,102,111,105,106,106,106,95,105,113,114,103,109,96,104,107,104,103,105,108,76,101,106,104,101,93,113,98,106,100,108,103,101,117,101,107,108,119,105,110,100,106,108,98,113,97,102,96,111,106,89,114,100,105,111,98,108,102,94,99,112,120,100,100,102,95,96,102,99,99,89,96,104,100,98,105,100,96,114,100,109,110,106,94,107,109,120,106,110,98,100,100,100,104,97,104,95,111,90,114,106,94,110,99,115,111,81,100,130,100,102,106,109,115,95,95,102,101,117,108,114,102,104,104,99,106,100,96,97,100,99,103,104,100,108,113,102,111,106,103,106,107,102,110,109,98,97,113,98,98,110,108,108,105,110,117,98,119,107,106,101,122,96,119,101,119,98,106,101,104,109,102,104,99,93,109,108,103,106,108,104,105,105,114,117,104,117,117,100,117,109,101,103,98,106,111,100,113,103,87,95,103,109,107,113,102,104,97,113,95,96,93,103,96,89,106,100,120,101,112,106,104,108,105,101,111,94,107,106,103,91,106,97,110,116,107,113,67,99,98,111,87,96,107,113,108,101,99,98,116,95,112,109,105,109,113,114,104,111,115,100,106,113,105,103,106,117,92,96,104,112,110,107,95,105,99,88,96,103,109,106,113,102,96,98,104,103,99,98,101,101,105,108,92,100,108,99,110,95,104,95,95,115,102,101,105,108,102,109,101,103,95,109,106,108,100,113,102,113,106,99,87,113,113,104,104,104,106,112,97,107,111,85,103,110,90,95,101,108,106,97,113,92,105,121,107,112,102,101,106,103,101,95,91,110,95,96,104,102,109,100,102,103,102,110,108,100,102,109,117,93,109,121,102,98,121,102,107,92,98,113,107,107,75,102,91,93,109,118,104,84,105,100,97,94,95,94,96,101,113,104,115,113,96,97,105,104,105,104,94,102,100,104,112,109,112,94,105,106,105,109,98,97,102,98,111,95,103,116,80,90,99,106,106,108,97,109,114,99,109,101,97,107,107,110,99,98,111,107,107,97,103,95,105,113,101,100,99,117,111,114,107,103,99,106,116,106,96,94,106,109,101,103,98,90,113,111,91,93,128,109,97,124,103,96,105,119,103,94,84,101,102,107,92,101, +494.12799,107,101,87,99,99,105,111,103,95,106,97,106,104,99,110,109,77,103,108,101,98,102,107,100,99,104,105,101,94,96,102,97,104,101,116,102,101,106,109,94,102,98,107,104,107,102,105,105,105,93,102,110,99,101,98,98,91,101,102,95,94,100,104,88,108,112,98,117,110,87,112,106,101,103,101,110,86,111,109,106,112,95,96,100,96,94,106,118,106,108,119,79,78,94,96,99,113,94,108,95,102,101,106,105,100,118,101,102,99,87,109,122,114,99,93,101,81,102,107,88,100,105,99,103,106,101,98,98,96,108,106,90,98,111,115,110,95,113,105,102,101,104,102,99,97,108,99,90,99,101,103,92,102,101,91,103,91,98,106,109,102,103,108,107,96,96,86,100,109,98,103,108,100,94,101,94,99,93,112,102,100,103,98,99,110,102,98,99,102,92,91,97,92,111,100,81,101,103,117,100,113,105,104,112,100,110,99,105,72,109,102,104,91,100,109,103,95,109,105,97,105,96,94,109,89,111,112,110,109,108,105,100,116,108,109,108,104,98,87,101,89,104,114,99,103,114,94,100,103,107,100,109,98,87,104,100,104,105,97,108,95,103,105,112,96,115,100,110,103,102,97,91,96,94,112,100,102,101,95,110,118,103,87,98,110,115,85,108,94,93,109,102,112,96,105,110,106,105,103,107,96,111,96,102,99,102,116,107,109,103,108,107,107,116,102,109,107,107,96,94,100,95,125,113,105,91,106,90,113,117,102,92,105,96,112,108,99,109,104,108,111,112,99,103,98,102,114,95,107,110,101,99,102,94,105,102,109,113,99,110,91,112,105,104,96,98,105,96,101,94,106,100,103,117,101,103,100,99,105,100,104,122,106,101,102,96,101,104,110,109,103,99,90,105,84,76,93,100,109,90,101,96,101,103,87,100,101,111,100,105,111,105,107,97,108,99,99,99,85,102,108,94,91,104,117,106,101,104,105,107,107,95,113,99,110,98,98,103,93,106,103,104,98,108,101,107,99,115,99,106,100,99,92,96,110,109,102,92,104,111,104,117,99,106,105,106,108,114,102,102,105,104,101,104,106,117,101,103,99,121,101,95,103,109,110,106,100,105,99,99,118,104,110,107,100,109,89,122,98,107,113,99,90,108,96,102,100,97,100,101,109,93,104,117,103,104,104,101,101,98,105,104,106,120,96,98,100,111,104,95,112,111,98,102,100,106,113,109,95,110,101,102,87,101,111,107,105,101,109,113,113,117,100,131,113,97,121,104,104,96,96,112,95,105,96,101,104,106,113,106,90,87,110,110,109,110,105,110,102,105,105,95,105,111,98,103,121,102,104,103,110,103,93,99,104,106,97,116,99,102,93,96,113,88,110,112,99,107,109,107,102,105,115,100,99,115,108,113,115,109,113,111,102,98,91,109,100,103,102,107,113,101,95,102,106,99,104,106,92,91,116,113,103,109,112,111,112,106,98,110,87,102,96,106,114,107,112,116,100,107,112,96,102,94,96,108,107,104,105,113,119,111,100,95,96,109,92,97,108,71,110,95,104,100,97,97,104,103,107,102,101,116,97,113,105,111,97,102,95,104,97,91,93,68,108,104,106,92,97,101,113,105,117,98,111,100,108,97,104,113,95,98,109,100,109,92,106,101,99,123,109,111,101,92,98,99,99,98,106,99,100,96,108,109,109,101,124,104,93,102,107,99,94,98,103,105,115,117,101,95,83,107,102,108,105,110,99,112,98,99,113,109,113,109,104,104,109,90,102,100,102,102,109,113,93,113,98,103,99,105,103,105,122,114,96,96,97,101,101,105,100,102,108,122,106,102,97,85,109,98,112,137,94,100,106,110,118,93,107,84,95,115,115,99,107,94,107,127,111,103,120,105,98,93,95,105,109,99,105,99,109,106,106,108,102,113,107,107,97,105,105,104,99,106,104,103,96,95,88,103,106,110,100,93,104,110,98,88,103,102,98,108,104,106,103,105,99,117,100,111,102,117,93,101,101,98,99,102,103,106,96,106,111,114,107,94,115,114,101,103,118,104,104,101,104,106,95,105,104,130,103,93,103,112,117,100,97,102,91,99,106,105,108,99,105,103,116,101,103,102,81,114,107,113,98,117,94,112,103,106,103,109,96,105,114,98,104,113,110,109,94,104,99,118,108,104,104,99,110,104,114,101,101,93,108,104,92,99,105,108,91,105,113,98,98,105,104,102,112,114,99,99,106,105,104,87,102,80,107,96,100,81,105,94,102,99,107,100,105,84,110,105,109,89,109,108,101,105,98,101,109,104,114,91,91,102,104,101,91,106,115,105,107,122,123,102,110,92,99,87,103,104,116,98,111,95,103,103,108,100,96,109,110,98,97,100,108,106,99,94,115,117,94,104,95,106,93,81,102,134,87,117,118,105,96,99,102,101,112,106,88,101,102,102,90,106,119,87,99,99,111,102,99,110,102,108,100,105,113,115,108,110,104,106,98,119,100,106,113,97,106,103,100,100,104,112,103,115,105,108,99,114,111,113,111,102,110,91,110,102,106,119,105,112,106,103,99,111,113,103,103,107,108,95,120,117,106,109,114,99,108,108,107,110,101,109,93,91,109,94,101,102,104,104,118,117,115,97,116,113,111,87,103,102,102,106,109,96,111,96,109,106,103,102,109,112,100,107,102,106,94,98,109,99,96,106,121,95,115,108,103,107,106,108,98,105,107,100,113,98,102,105,101,104,94,97,104,108,106,99,105,105,100,109,109,134,97,103,109,109,103,113,97,103,108,116,102,99,92,118,102,106,103,103,110,134,96,102,130,111,105,107,109,98,113,105,95,109,105,113,106,113,108,109,108,104,96,103,92,107,94,104,103,109,109,109,87,102,123,108,108,112,104,128,99,108,106,104,92,104,105,101,111,102,107,102,113,105,106,106,97,96,99,109,103,109,109,99,104,113,111,101,98,114,99,115,106,94,88,99,94,96,87,99,96,108,109,111,106,109,105,113,102,103,113,92,107,110,98,100,98,113,109,99,103,100,114,100,107,107,95,117,110,101,136,87,99,77,109,99,103,109,103,106,97,110,100,99,95,101,110,114,85,108,103,115,107,100,101,93,112,106,108,117,106,109,103,109,94,107,105,107,107,98,84,95,111,102,102,102,102,105,108,104,95,113,106,104,111,86,98,109,105,106,108,114,113,106,106,106,101,105,117,116,101,96,115,112,97,107,95,99,94,102,99,97,101,106,111,106,105,106,104,103,112,108,97,128,103,95,107,106,98,115,107,90,113,108,95,104,113,104,86,100,101,108,106,111,104,91,109,117,101,115,102,113,102,97,92,104,94,105,106,101,97,93,104,106,100,100,110,106,98,105,107,98,100,93,116,109,106,103,96,98,117,101,108,95,102,97,104,104,111,110,111,103,104,114,99,105,113,111,101,96,110,102,113,108,98,99,105,103,107,101,101,102,106,110,102,97,109,97,95,102,104,119,106,112,107,102,80,110,98,107,95,109,105,105,95,89,129,101,83,104,103,104,106,95,108,94,95,101,116,100,105,105,96,105,97,107,118,99,100,99,105,102,94,111,105,94,99,96,103,106,90,110,104,100,99,99,95,102,107,104,96,85,105,95,103,109,109,107,102,93,103,98,105,101,103,108,98,111,105,110,87,105,103,101,113,106,103,128,106,99,102,105,98,97,116,102,100,99,102,104,110,104,103,104,113,103,95,105,97,106,111,116,113,111,103,105,103,112,101,101,102,104,103,112,104,109,103,94,112,106,83,93,110,121,108,100,98,120,99,123,106,102,117,106,96,110,102,101,99,91,108,96,100,98,90,112,104,115,99,96,94,117,85,108,114,99,97,109,110,110,91,123,110,105,126,103,107,109,100,98,129,97,94,105,113,106,105,104,109,116,110,99,94,94,110,106,112,102,102,107,106,113,96,119,110,118,114,103,99,111,96,103,109,107,101,95,112,93,99,106,117,104,115,104,107,118,99,84,96,119,98,99,112,97,91,101,104,112,98,92,76,105,95,94,113,107,105,98,95,123,117,96,109,113,99,117,100,107,106,101,102,109,101,106,101,101,116,95,105,97,117,106,96,106,107,105,103,102,100,112,104,107,100,106,106,91,111,98,99,106,95,98,101,99,105,94,91,117,108,97,108,102,91,112,98,104,116,108,101,100,105,103,93,109,97,109,112,94,107,123,92,109,119,109,106,123,98,91,103,102,107,96,111,99,107,95,100,102,110,104,125,94,103,114,107,104,124,104,114,117,97,106,106,88,102,112,95,113,96,99,105,113,102,106,107,115,104,105,86,113,108,106,108,126,113,105,106,99,110,112,102,95,111,112,98,83,90,112,120,107,97,108,85,112,101,106,123,102,88,114,100,104,105,99,109,79,102,99,103,107,95,96,100,101,112,97,99,120,111,95,109,93,93,101,95,115,114,99,96,107,99,96,96,103,112,106,102,101,101,108,113,111,98,100,105,106,112,103,125,96,104,111,97,98,99,97,105,117,93,83,91,103,97,112,98,97,99,109,64,103,117,108,87,116,99,101,108,111,117,97,105,114,94,108,101,115,94,92,105,114,100,108,79,103,106,87,97,99,98,96,123,102,107,96,100,73,94,93,91,97,107,107,107,113,102,105,99,104,106,113,98,91,104,112,117,103,92,98,110,108,98,91,113,103,94,102,106,111,81,111,103,86,87,117,103,95,92,112,87,110,99,90,108,105,102,103,96,105,104,95,106,107,111,109,104,96,91,98,97,102,105,104,107,106,105,109,99,102,107,113,102,98,101,95,97,117,104,98,103,96,108,94,121,111,98,101,105,103,105,101,87,116,91,95,99,109,95,115,104,97,109,103,101,106,92,108,101,97,88,102,98,96,112,100,106,113, +494.26859,108,99,91,98,105,102,104,95,103,119,100,106,102,101,107,114,95,99,104,98,99,96,90,85,101,108,101,91,107,102,100,107,100,101,100,106,101,112,104,124,105,105,104,117,99,110,102,95,103,102,88,107,102,105,96,92,121,108,106,101,94,100,102,98,103,100,90,104,95,79,106,103,108,122,98,127,95,108,103,104,123,110,109,118,91,101,107,98,111,102,85,102,99,96,104,107,101,96,98,108,102,94,111,104,94,95,101,110,97,100,91,108,110,93,106,103,81,103,97,96,103,103,102,107,106,112,117,108,102,119,109,93,111,102,106,96,109,101,107,102,113,114,105,94,101,109,103,105,98,94,103,101,114,98,99,101,111,102,101,105,100,104,109,97,99,111,112,112,118,113,103,99,102,103,113,105,104,107,93,108,95,115,94,117,103,104,111,90,114,102,93,93,99,102,108,96,107,104,111,101,98,97,92,100,105,106,100,111,103,97,106,107,101,104,109,106,105,94,99,99,108,100,97,110,111,113,95,106,105,105,101,119,109,107,98,104,101,113,109,105,105,110,97,103,95,101,89,109,101,100,105,108,101,103,94,111,95,97,102,108,84,112,102,103,98,102,104,103,130,109,101,124,100,97,100,109,104,111,109,106,103,110,108,105,90,106,90,96,105,109,115,104,102,101,111,112,104,114,104,100,107,100,108,107,103,98,125,112,112,109,101,112,102,95,98,98,122,100,102,95,109,100,96,102,106,99,105,97,102,104,100,102,117,107,109,98,109,104,103,104,103,99,99,106,95,104,107,112,112,118,107,101,113,125,113,112,106,109,123,104,107,110,100,115,105,103,113,117,105,113,113,101,106,95,106,100,112,101,102,105,97,102,104,94,113,95,104,109,105,92,107,95,95,105,107,102,107,104,98,105,97,116,112,97,106,63,102,100,104,107,110,95,102,109,107,94,109,105,109,101,111,103,88,109,106,107,100,109,113,119,90,96,99,101,103,102,99,98,102,98,87,106,104,90,103,113,107,95,106,106,114,104,107,117,95,104,108,107,105,95,96,106,118,110,113,103,102,110,106,109,101,104,111,98,109,94,99,121,107,109,103,117,113,97,108,105,110,109,101,99,101,115,100,108,88,98,96,108,99,91,112,96,100,106,100,107,100,108,106,113,106,106,101,104,126,144,103,100,99,97,112,92,105,98,103,100,106,113,112,94,107,101,107,94,113,103,95,103,116,103,106,108,99,107,113,99,101,97,115,94,99,103,120,106,96,100,111,110,103,99,108,103,105,117,109,105,105,115,78,105,101,105,98,74,113,99,118,109,95,80,113,102,110,109,100,110,117,107,104,109,100,105,99,105,107,116,103,111,117,113,102,100,90,105,106,101,102,106,108,110,104,99,112,104,110,111,109,106,107,113,112,90,100,110,110,105,98,95,110,101,117,105,86,102,97,123,99,99,109,114,114,114,106,115,103,92,109,104,97,102,97,108,100,95,105,109,108,103,100,85,101,106,104,98,100,101,103,100,100,106,114,107,102,90,107,105,117,104,117,107,94,110,87,99,87,99,102,83,119,104,105,106,99,102,108,94,109,99,120,99,109,79,99,102,106,103,108,105,97,99,102,102,87,105,83,110,106,106,85,110,100,100,103,111,101,96,125,108,92,116,109,103,118,106,101,98,112,98,105,100,111,106,109,93,104,109,105,100,102,107,120,108,104,108,107,109,110,103,102,100,102,100,91,95,96,104,105,110,97,101,102,111,109,101,94,106,97,89,95,112,99,103,72,95,111,111,107,99,94,104,99,105,105,114,108,111,115,100,100,111,96,108,97,104,105,100,110,119,104,118,112,113,101,104,101,109,117,94,100,100,94,119,106,115,93,105,100,106,109,112,100,104,106,94,100,107,103,105,100,108,103,92,103,118,98,84,106,108,107,103,93,102,104,110,95,107,101,101,102,84,105,100,103,73,99,96,69,107,104,98,108,97,113,109,105,100,106,101,99,105,98,106,105,98,81,110,116,115,109,107,102,114,106,111,104,82,104,112,82,103,112,97,114,91,102,104,104,116,99,116,113,107,103,108,111,91,94,98,102,105,102,105,111,118,117,102,114,108,114,109,102,116,108,98,115,120,108,104,107,101,118,105,108,117,90,114,103,102,134,108,113,102,112,103,113,97,105,96,97,102,112,114,93,97,115,110,98,109,103,88,100,101,99,105,103,100,118,92,98,100,96,116,102,83,111,104,107,99,100,99,107,110,89,109,101,93,106,99,109,118,109,112,139,104,95,106,106,110,98,99,92,99,104,114,99,101,100,104,101,95,115,120,111,97,105,91,109,106,108,106,109,109,109,106,107,104,109,105,100,105,101,101,103,125,96,97,114,103,112,95,94,113,107,106,99,96,101,113,100,90,100,104,94,113,114,103,114,98,85,88,110,103,111,116,114,106,101,101,101,102,109,111,97,106,95,117,107,105,102,96,110,90,108,100,106,106,113,104,115,109,105,109,113,119,108,116,107,102,119,104,98,104,116,110,118,103,101,118,128,114,119,106,106,113,98,105,99,102,92,111,100,111,94,111,104,107,111,118,106,86,104,81,101,110,112,106,102,110,98,119,85,111,106,117,99,110,105,91,110,109,125,102,108,96,100,108,105,107,109,109,80,106,105,114,96,98,102,109,102,96,110,111,105,115,110,100,108,106,104,108,100,94,125,117,113,98,87,102,105,102,98,106,113,108,105,108,105,116,102,110,110,115,103,108,102,116,120,80,120,118,109,107,102,106,107,118,98,109,113,108,96,111,98,112,98,100,103,111,106,104,100,102,103,89,100,89,83,107,98,115,110,107,111,113,94,111,113,106,113,106,98,91,125,109,113,93,105,105,96,112,109,101,109,121,85,108,111,111,112,107,109,113,103,111,112,105,106,107,95,115,102,112,100,100,120,117,104,110,100,117,109,106,114,99,107,110,118,105,99,101,92,103,99,112,103,111,110,110,131,107,115,116,104,109,98,124,112,114,105,104,111,99,106,104,106,95,104,115,103,113,109,131,111,101,121,120,99,111,111,106,101,108,110,112,105,99,115,110,111,78,108,111,110,105,101,106,113,94,105,102,106,111,104,117,102,107,105,109,114,100,106,104,102,110,91,100,112,105,107,116,103,107,99,118,109,112,102,100,125,108,100,122,111,103,104,115,104,113,104,96,109,93,102,106,107,106,97,116,109,113,118,107,100,90,98,93,113,119,110,107,116,103,116,107,113,98,126,115,122,109,111,108,103,116,112,109,103,107,103,107,105,96,104,109,101,102,106,112,99,101,118,105,111,91,99,110,107,101,106,102,110,103,102,103,115,114,111,109,117,117,92,106,108,105,94,108,95,100,113,100,100,117,104,108,105,114,112,103,129,100,100,108,110,103,100,101,117,94,107,115,108,97,108,112,105,106,106,100,105,99,106,104,100,92,105,99,101,100,109,103,99,102,96,103,76,112,113,104,108,112,117,114,102,104,114,115,106,97,111,98,108,111,98,107,114,113,99,84,100,120,134,109,115,117,111,120,92,104,120,110,111,109,104,111,105,108,108,99,106,93,99,101,95,103,102,113,108,101,96,113,103,114,117,109,96,98,103,99,106,100,96,105,103,105,109,99,99,102,98,90,99,105,103,120,101,101,113,99,109,111,110,109,104,117,106,102,112,109,113,101,110,106,117,113,112,123,97,116,100,113,107,84,101,100,116,107,124,107,110,109,109,97,119,103,95,109,95,112,116,102,100,97,98,108,107,98,114,112,104,107,102,103,104,111,100,106,119,108,94,103,104,113,108,134,113,104,108,98,102,101,115,109,106,103,98,110,109,101,105,105,100,102,113,108,110,107,106,106,102,97,106,105,102,109,115,100,108,107,113,108,120,105,109,110,104,114,118,113,117,95,115,101,91,116,108,114,105,121,109,99,108,110,71,115,103,113,115,113,99,113,104,112,110,113,102,109,103,105,110,112,107,107,109,113,119,105,98,94,116,105,101,103,101,93,110,109,106,104,112,96,107,94,108,109,118,107,105,98,110,100,94,106,83,103,113,107,104,113,105,88,109,105,108,102,100,110,112,106,117,108,117,111,112,102,106,109,103,102,104,106,109,94,116,105,117,119,103,112,93,103,106,94,99,100,113,101,105,113,95,108,89,79,96,102,109,113,115,120,95,101,117,105,97,106,106,105,111,108,102,95,109,94,108,112,107,104,109,104,108,104,94,95,107,101,100,110,112,105,106,95,103,102,124,101,107,110,105,95,92,104,108,105,108,117,116,104,99,100,103,91,100,109,109,107,107,104,94,98,74,113,114,103,112,102,100,99,111,116,96,115,112,102,102,100,105,99,106,104,101,112,107,105,105,106,86,107,107,96,104,89,104,93,98,101,100,102,108,99,90,118,117,100,108,94,118,101,88,111,110,99,107,101,117,116,103,104,99,121,99,103,104,102,106,111,103,89,104,121,114,103,94,108,91,101,102,104,103,113,97,98,88,102,94,110,100,105,113,110,104,107,109,100,92,106,111,108,123,101,105,128,116,98,122,108,118,100,100,99,95,111,104,109,99,106,107,109,98,112,103,99,106,103,106,108,105,111,101,109,110,98,109,118,108,109,105,102,100,104,102,102,99,104,109,100,107,102,111,120,93,113,99,94,105,103,116,98,116,104,105,105,111,102,115,102,113,95,98,102,106,108,64,112,105,102,109,124,102,119,102,106,97,95,113,103,67,98,104,109,95,107,111,101,104,108,90,107,99,96,104,100,107,106,96,97,129,77,103,107,108,110,115,95,111,109,82,113,96,115,104,106,102,102,106,102,121,105,70,104,101,113,108,112,107,92,108,117,104,92,112,113,93,128,92,98,104,97,95,97,109,88, +494.40918,113,105,96,87,92,101,101,99,105,116,107,121,101,101,102,108,82,108,106,100,101,101,105,103,107,103,91,104,111,118,121,113,113,95,104,104,108,108,118,86,117,103,104,100,100,107,101,100,96,106,115,104,83,116,103,100,108,95,105,100,108,103,104,97,103,99,92,109,76,105,120,105,109,100,99,107,90,113,95,86,107,94,103,99,98,103,102,97,106,103,104,99,113,100,109,101,114,79,82,99,107,101,107,103,109,103,113,102,89,104,95,106,103,94,106,112,109,101,103,118,89,103,107,109,122,109,115,102,105,86,100,107,80,110,119,81,114,102,106,97,110,93,104,107,94,110,108,100,85,99,105,101,114,99,98,80,95,113,97,108,75,98,112,103,108,109,106,95,109,104,95,102,101,104,119,110,99,107,104,111,110,101,105,100,102,101,105,102,100,100,109,102,107,113,102,90,120,100,111,102,116,95,115,103,106,101,71,107,103,121,101,103,104,103,102,121,103,93,84,106,112,106,107,106,110,103,114,78,116,106,99,114,95,117,98,103,104,104,102,108,111,114,113,105,101,109,103,113,101,100,108,113,100,111,103,96,113,105,109,104,103,62,100,101,107,105,108,105,81,103,96,105,94,88,113,111,92,90,103,105,99,111,111,113,88,108,92,99,110,110,100,101,106,94,98,98,99,108,86,109,112,113,96,105,102,106,109,107,105,117,97,114,105,97,97,112,109,124,124,111,110,98,110,108,109,94,103,97,111,98,97,90,110,117,109,99,121,96,107,105,101,108,99,97,98,103,112,108,114,147,106,107,93,97,108,120,113,95,102,105,98,96,102,103,93,93,105,124,109,92,109,103,115,105,102,100,95,98,101,112,117,100,107,108,106,94,110,104,100,97,110,99,108,109,103,96,98,103,105,102,108,107,107,135,86,98,112,97,114,100,90,99,106,112,95,92,80,100,126,108,94,93,111,104,113,105,108,109,111,106,89,114,106,101,98,104,107,113,107,103,115,106,101,97,103,105,105,121,111,105,109,99,104,99,113,104,102,113,111,100,100,101,124,114,120,112,104,99,106,108,104,104,105,101,94,97,98,105,97,104,106,95,110,102,112,104,103,107,105,93,101,108,104,110,78,109,114,101,103,98,113,112,100,109,118,117,79,101,105,112,108,101,94,101,107,113,110,110,106,112,108,104,103,107,108,104,90,106,99,92,101,99,106,101,89,107,113,88,101,120,98,101,113,113,109,105,106,115,114,117,112,108,118,95,107,100,114,96,102,109,109,106,98,130,102,103,106,103,108,106,86,112,113,98,109,113,109,102,115,96,101,97,103,95,98,104,112,117,107,99,114,110,85,111,116,104,117,107,92,117,107,107,100,114,111,113,115,102,107,103,113,102,105,110,110,103,79,104,117,110,118,113,118,106,104,98,111,102,107,113,98,99,92,117,106,101,100,102,110,112,112,129,92,97,109,97,89,104,106,120,101,106,113,94,108,104,106,101,110,108,105,103,118,95,92,106,106,96,108,110,100,106,94,110,97,105,106,98,110,106,114,108,108,93,96,98,100,111,99,100,116,111,101,101,105,104,112,107,99,100,106,95,107,112,112,107,112,107,105,100,102,105,116,104,101,95,107,106,100,103,105,98,93,109,108,108,99,105,103,104,100,104,103,109,110,102,124,104,101,99,110,123,106,107,106,97,112,108,102,101,115,96,102,104,117,96,103,121,106,104,100,107,104,89,101,109,114,100,100,108,111,106,113,107,110,99,106,102,108,102,102,99,108,102,106,106,106,96,95,91,112,102,98,107,87,93,99,88,108,100,78,101,106,104,100,102,108,92,111,109,116,107,104,99,107,101,103,105,94,110,110,113,104,109,96,101,115,95,106,97,108,101,105,116,102,119,117,103,112,107,95,111,118,99,92,134,103,100,99,98,113,110,100,100,100,103,107,113,100,111,120,109,101,112,107,111,98,112,115,98,104,111,108,106,108,108,115,98,125,116,108,112,99,109,103,109,98,98,100,106,102,95,113,102,108,105,95,104,111,108,110,113,118,103,117,110,101,98,95,99,111,109,118,111,97,115,92,103,108,100,109,101,99,108,114,108,116,102,105,95,116,110,104,109,105,103,100,103,104,95,113,104,112,104,98,106,95,100,110,115,118,100,104,122,114,106,108,111,101,100,106,97,107,99,109,85,111,113,103,106,99,108,106,112,97,107,110,91,107,106,101,109,95,112,95,94,110,99,99,102,102,106,107,114,96,113,93,112,100,114,93,104,106,99,102,112,97,105,99,107,95,91,105,108,107,108,103,107,113,92,104,102,98,105,104,126,106,99,97,97,110,111,100,118,112,106,116,120,101,91,98,99,105,118,108,104,102,104,108,102,101,112,109,97,100,97,99,111,103,110,102,108,110,101,110,103,90,105,94,110,105,116,95,112,97,101,96,104,96,102,102,107,99,119,100,111,95,98,126,107,99,99,96,95,96,108,114,101,105,95,79,105,99,107,113,112,117,102,95,108,94,103,104,99,112,96,100,109,93,139,111,113,100,115,104,121,106,110,107,109,109,117,116,98,111,107,106,102,96,89,100,97,95,107,98,112,99,98,108,103,98,111,108,100,103,90,101,110,113,113,113,91,110,83,117,110,104,101,105,110,104,96,102,116,97,108,108,106,111,107,108,109,95,111,111,105,115,114,107,103,98,106,115,105,103,92,106,91,102,109,110,95,103,104,106,113,108,116,99,106,99,106,95,106,104,103,111,105,115,96,114,109,91,109,112,109,108,115,112,104,94,103,102,109,112,111,104,104,109,108,110,112,108,106,95,121,126,112,110,116,111,109,95,106,107,98,99,108,109,106,128,109,108,116,113,99,108,112,97,100,107,106,101,117,94,100,102,113,122,128,110,100,115,108,114,103,104,110,107,107,102,111,111,96,113,95,111,108,106,104,106,106,97,110,109,103,113,112,104,108,102,97,108,95,111,113,104,112,107,107,116,105,108,106,101,106,103,109,96,112,109,88,105,98,109,91,110,95,104,92,94,103,118,100,103,113,111,101,100,98,104,112,100,109,100,110,104,102,98,110,104,103,102,102,114,106,81,96,101,113,104,103,90,118,110,86,110,106,90,107,99,104,106,103,109,110,120,94,98,98,110,106,94,97,112,105,84,107,93,108,110,113,97,108,99,114,102,114,104,86,112,105,105,109,104,96,101,91,112,106,95,99,107,102,100,100,104,109,121,101,102,103,114,106,104,99,100,98,105,115,98,103,103,101,101,105,102,110,96,94,91,102,91,87,106,107,111,110,97,113,109,103,102,86,101,110,99,98,108,102,98,100,91,118,104,105,102,105,101,103,83,100,87,88,104,66,106,89,101,110,109,102,99,113,103,111,109,113,106,112,100,95,109,103,101,112,103,108,107,105,97,99,100,90,98,108,103,104,112,109,108,110,99,107,101,108,100,96,114,98,94,108,115,93,103,108,98,110,121,104,103,118,104,106,101,111,100,106,105,89,103,121,86,107,94,110,113,102,96,110,102,102,95,96,109,101,84,109,113,109,109,100,99,104,113,108,116,108,99,105,103,96,99,111,103,97,115,94,109,104,97,98,112,117,115,112,108,90,108,107,107,89,109,113,108,108,106,95,106,101,109,95,96,109,105,100,106,111,104,107,98,112,101,107,102,97,94,110,112,98,104,102,87,102,97,102,88,108,116,98,112,103,103,100,103,108,107,86,111,77,113,99,99,91,107,112,103,118,94,89,108,104,108,97,93,101,106,109,101,99,95,115,88,108,101,108,103,109,97,110,105,105,102,108,100,102,113,107,100,113,105,114,110,108,109,104,112,100,103,91,101,102,113,110,115,98,116,107,98,123,119,89,95,99,114,113,110,106,103,108,84,95,90,96,106,102,106,108,98,102,119,103,108,99,105,113,104,113,113,105,102,125,95,111,102,104,102,109,91,110,110,113,100,87,109,82,109,114,98,94,107,110,101,102,105,113,100,100,101,108,110,102,104,105,103,96,96,100,106,100,99,132,117,99,105,113,123,107,102,89,106,110,98,105,96,110,104,106,106,95,110,97,104,132,113,114,80,108,95,96,104,102,107,105,108,116,108,119,103,83,96,100,91,110,113,102,102,127,100,99,99,105,92,97,98,94,93,109,101,109,109,99,99,116,103,108,98,110,108,109,111,87,105,104,105,98,112,102,99,104,120,98,103,102,103,99,104,111,99,108,103,104,100,107,104,93,97,100,102,102,101,95,111,102,102,103,109,104,105,131,107,102,97,106,91,98,110,113,106,82,97,106,105,106,110,98,95,82,94,107,110,107,101,99,113,93,115,106,105,107,117,103,110,106,107,110,99,110,97,108,85,120,103,110,100,103,101,108,95,105,91,107,106,102,86,117,97,98,110,94,106,103,102,100,91,106,90,107,101,104,97,106,109,119,112,93,98,96,105,100,83,105,106,113,102,110,113,98,79,100,115,97,108,104,107,109,99,92,105,106,106,102,103,95,95,106,98,104,121,90,98,104,89,99,100,98,101,99,99,110,100,103,92,109,93,96,104,105,105,95,98,98,113,106,107,116,103,94,112,94,69,110,98,92,100,109,112,105,101,93,117,103,112,88,94,96,108,111,103,95,113,92,113,95,93,110,105,112,104,99,102,98,105,108,109,98,101,105,123,108,114,102,108,102,108,91,106,102,117,107,97,99,96,87,104,98,102,104,105,95,118,105,88,98,100,108,91,109,107,98,100,107,105,105,94,101,103,101,102,107,100,98,99,90,113,102,102,110,98,105,113,104,77,100,101,103,92,105,99,104,107,95,89,94,100,92,91,116,69,102,107,95,106,103,112,104,97,103,100,99,94,107,101,102,102,108,96,107,109,94, +494.5498,101,99,89,106,97,99,97,93,95,116,102,105,95,98,134,115,113,109,91,117,78,111,94,90,98,99,100,109,102,103,113,99,93,99,102,93,97,99,114,104,93,90,104,109,95,93,100,101,112,112,109,116,110,91,104,111,106,115,100,89,100,101,126,101,108,106,101,105,107,98,106,100,97,89,101,122,116,105,105,95,112,107,96,101,99,84,96,100,105,105,101,111,102,95,100,89,106,88,115,97,88,103,68,98,98,108,99,98,116,98,85,96,112,81,109,99,102,117,104,104,103,99,105,112,110,105,112,102,96,108,106,118,95,100,117,100,118,100,104,113,112,94,97,95,109,104,95,107,102,97,98,103,109,103,103,110,101,95,98,98,96,103,85,110,102,119,105,105,108,95,113,97,93,115,108,109,111,105,98,99,109,118,83,93,95,107,105,95,106,94,102,100,114,116,90,97,98,91,115,114,97,104,104,102,99,102,108,111,120,113,105,95,105,107,105,103,102,83,93,96,110,123,105,101,107,123,94,107,109,103,98,110,108,104,107,105,94,111,102,91,105,106,112,94,90,106,106,97,105,113,105,111,86,97,109,107,98,110,94,100,104,100,103,116,117,99,112,82,97,106,111,98,105,106,99,101,104,106,111,110,106,110,95,103,101,97,98,99,106,106,91,117,96,100,103,103,112,103,102,100,106,104,95,107,105,127,98,100,94,111,100,117,100,102,104,104,90,104,109,124,105,97,99,105,93,95,107,97,104,108,117,108,105,109,99,107,102,106,105,101,101,105,99,109,108,109,109,99,103,100,103,91,108,97,99,100,98,110,98,112,102,111,98,95,107,96,107,107,105,107,105,106,100,128,92,102,102,112,111,109,103,106,105,111,103,95,104,88,110,94,110,96,109,119,110,98,99,102,104,95,99,104,95,105,106,99,103,99,117,104,96,100,118,97,101,98,103,108,101,94,101,107,102,113,99,100,100,74,101,112,96,102,108,103,103,103,106,97,99,101,112,103,113,104,102,90,105,95,90,101,95,97,92,116,108,112,95,101,100,96,90,109,114,104,109,108,112,103,114,95,106,105,105,109,117,106,117,98,113,117,103,95,109,103,110,100,104,115,96,109,110,99,108,106,129,108,98,108,100,114,101,103,95,104,100,103,93,108,113,110,109,105,100,95,106,95,114,95,104,98,108,114,113,108,99,112,112,117,113,109,98,107,94,112,106,109,106,98,100,112,100,129,87,111,94,101,98,101,106,116,95,113,99,112,109,91,106,100,104,123,104,118,100,108,103,110,99,107,107,104,99,95,86,98,104,109,113,108,102,127,127,106,99,100,105,107,107,109,109,111,101,110,97,111,111,104,106,108,97,124,103,109,107,95,103,110,112,104,100,100,131,90,104,109,104,100,103,113,102,116,109,110,106,103,112,104,99,97,109,104,109,110,104,101,111,112,112,110,105,85,98,111,106,98,107,92,100,108,108,107,100,121,108,102,112,104,109,103,114,109,116,95,116,112,86,98,108,103,99,99,106,114,102,102,94,98,108,110,96,92,107,100,99,94,92,100,68,114,96,107,106,101,94,92,107,105,97,110,110,92,109,94,92,96,104,100,99,111,101,94,114,105,99,97,104,109,99,102,107,104,107,101,99,111,96,102,101,94,110,105,110,98,104,105,101,105,92,89,102,79,110,98,139,98,100,107,112,109,109,108,114,105,113,103,110,110,119,100,102,112,115,104,96,110,100,112,106,117,109,95,112,101,106,116,109,99,99,99,115,98,110,103,111,86,113,105,104,94,110,105,110,106,113,106,113,99,111,103,99,106,111,106,104,104,96,100,107,115,106,96,106,107,115,108,117,101,110,98,110,101,107,110,115,117,117,116,111,107,103,91,115,104,122,96,102,115,103,112,106,111,105,118,108,109,100,104,110,104,101,105,106,114,90,105,121,91,103,113,113,113,93,103,105,116,102,118,96,103,113,103,102,107,99,90,99,96,100,100,104,112,100,101,116,78,114,99,96,105,118,100,129,105,97,103,103,99,111,75,106,109,107,109,97,118,105,108,113,103,101,82,109,97,109,102,99,107,86,107,104,95,102,96,118,95,103,92,106,106,98,98,106,109,109,106,94,110,97,95,108,108,111,113,117,100,109,98,106,115,100,103,94,102,98,102,101,98,107,88,89,110,104,102,102,101,113,109,108,102,118,112,104,100,95,118,107,103,93,95,100,72,105,104,102,111,112,75,96,95,101,106,108,98,92,105,95,109,98,113,108,102,112,104,109,114,108,111,95,109,95,116,101,110,109,118,104,109,108,104,103,107,121,103,109,95,95,106,92,104,103,96,105,105,115,109,99,76,106,104,106,101,107,106,105,109,97,94,101,99,100,106,109,107,109,100,97,112,77,101,108,95,100,105,105,104,102,90,104,109,108,103,112,109,97,107,108,82,101,95,104,104,99,107,94,116,105,100,103,102,104,98,117,109,104,100,105,85,100,103,94,79,103,99,107,118,124,116,105,106,117,117,101,116,102,119,102,101,108,104,102,112,98,104,92,109,126,99,102,109,114,105,111,111,95,106,115,101,98,109,113,115,104,98,84,111,93,132,105,109,108,94,106,98,89,96,102,96,96,102,112,108,109,121,85,100,108,99,102,93,110,108,106,107,115,111,98,96,108,98,102,100,97,105,73,111,108,112,118,124,101,105,116,94,112,106,105,100,108,97,114,99,94,111,109,95,98,79,102,114,101,107,97,110,96,106,82,103,99,104,101,96,115,96,99,107,106,109,108,107,110,102,100,103,99,98,109,109,113,104,108,102,108,109,109,92,105,117,110,97,98,73,103,98,103,117,99,106,107,99,97,102,102,96,109,106,104,109,96,97,84,116,107,111,103,112,104,97,111,107,103,104,91,87,121,103,106,113,106,104,111,111,107,115,104,106,102,108,104,105,110,105,100,106,97,103,103,94,115,106,108,101,96,106,95,104,110,98,99,114,115,105,107,88,93,105,87,107,111,105,97,106,99,103,105,106,108,109,102,104,94,113,99,103,107,109,112,101,116,103,99,102,109,107,98,98,98,102,103,107,94,90,106,100,100,108,90,118,128,112,94,103,105,100,112,130,113,102,113,107,103,117,100,107,102,112,94,101,110,98,106,92,92,90,97,104,110,79,94,112,98,102,108,98,92,102,103,100,100,108,110,99,110,91,82,102,105,91,104,94,84,108,94,117,94,111,101,109,105,77,112,102,93,127,114,103,106,95,109,103,109,102,114,109,107,108,106,113,104,109,109,107,73,96,110,109,91,107,106,107,112,102,91,103,88,95,102,112,105,94,97,101,104,105,98,92,88,100,100,95,103,99,93,103,102,98,105,103,100,104,104,102,99,93,103,102,105,108,105,100,108,105,97,98,116,94,108,103,97,95,107,100,102,101,105,98,99,101,109,102,106,100,100,106,110,103,102,104,108,96,115,103,112,112,98,113,99,105,105,94,102,96,100,106,108,98,93,101,109,100,107,99,93,105,116,114,104,98,105,111,107,111,99,109,104,95,107,107,100,100,101,104,110,105,122,105,102,101,115,104,113,113,113,105,105,105,96,93,96,94,106,103,97,103,111,92,96,101,98,104,108,109,95,99,111,99,108,99,104,105,116,108,100,108,107,117,101,98,93,106,103,98,103,101,107,102,112,93,90,110,114,99,99,106,112,97,91,101,99,101,113,105,95,103,111,104,105,105,103,105,97,98,104,105,92,86,110,103,98,87,109,109,116,89,117,101,99,99,107,103,121,97,102,107,91,99,104,97,105,117,103,95,89,106,98,112,80,109,97,106,101,105,91,103,113,93,99,110,101,99,106,102,95,106,101,102,101,113,101,104,97,101,103,105,101,100,110,104,118,109,99,98,105,99,104,107,88,87,100,105,123,102,103,100,105,113,98,112,109,99,111,108,104,71,101,113,102,105,88,99,113,97,106,100,107,109,95,94,104,108,104,110,113,109,91,108,91,99,100,101,98,104,104,99,109,103,107,101,103,91,106,112,115,112,88,100,110,110,104,112,115,105,100,90,109,98,109,103,99,98,104,106,117,97,110,108,103,119,75,109,105,83,101,104,95,110,105,119,107,106,104,101,105,92,93,108,107,104,121,106,108,104,109,93,114,85,93,96,108,108,108,96,112,113,116,108,94,95,102,118,99,113,111,104,93,103,100,102,106,118,100,117,99,108,100,102,88,109,107,116,103,108,92,111,104,92,94,90,97,91,115,105,102,104,130,95,115,98,102,103,117,103,107,107,105,103,99,105,111,104,102,119,97,111,100,104,102,104,103,106,94,101,109,93,108,100,109,102,98,106,110,99,101,101,114,83,98,106,109,124,85,109,97,122,98,111,98,107,99,103,106,90,88,86,100,105,113,111,101,127,95,86,106,90,99,105,111,113,104,108,104,114,95,109,110,110,108,93,98,96,97,109,103,98,93,112,110,98,102,93,106,101,103,102,101,108,108,107,96,95,104,102,95,107,97,111,116,98,104,118,106,113,106,95,110,109,108,119,95,115,109,99,90,111,112,104,106,99,99,125,97,104,88,81,112,101,91,106,103,97,102,105,85,99,100,99,95,110,117,112,114,107,116,97,133,101,104,95,95,102,111,96,97,91,106,112,105,109,104,94,103,96,103,107,121,108,109,90,102,98,113,111,100,104,100,103,97,101,98,105,97,108,100,96,102,97,116,103,109,102,110,100,101,93,104,103,122,87,103,104,105,105,108,115,102,107,105,106,89,96,124,106,99,99,86,94,92,109,106,109,100,90,99,107,100,97,100,76,105,98,102,106,100,116,105,93,111,95,100,90,100,106,103,92,94,92,104,89,105,123,102,97,110,119,93,107,108,96,85,127,96,114, +494.6904,103,99,94,100,86,92,95,105,112,113,100,97,108,104,94,99,111,118,103,110,105,97,100,108,100,112,103,110,95,105,104,107,100,100,99,102,106,107,107,102,95,64,101,107,126,108,97,102,117,105,104,101,103,94,112,82,106,105,108,94,117,108,122,95,103,112,102,116,113,104,109,101,107,98,89,112,94,95,109,99,96,105,100,100,107,96,114,107,109,105,94,88,105,98,104,99,110,84,101,109,104,96,95,100,109,95,88,114,96,75,112,110,99,103,107,102,108,92,107,102,108,89,100,112,106,108,121,105,105,94,95,116,110,98,101,99,106,106,106,104,114,113,102,108,105,94,106,96,97,101,93,107,101,101,107,103,96,105,100,105,104,91,107,107,133,108,91,111,97,98,104,105,104,106,112,99,108,100,107,105,102,116,117,110,109,93,79,86,101,107,104,106,100,100,98,111,83,106,108,121,106,108,112,103,111,96,98,121,108,109,103,93,110,104,107,107,107,116,102,98,93,113,100,101,95,109,106,95,106,103,104,103,99,116,103,92,107,102,98,110,109,102,101,113,96,117,103,112,108,102,119,124,105,104,100,106,116,100,112,109,100,117,102,100,95,116,99,107,112,112,94,109,107,119,116,137,97,98,105,100,104,107,105,103,106,99,109,101,110,110,118,104,102,115,99,107,104,109,102,105,107,109,106,111,107,122,108,99,104,116,97,95,112,96,103,91,103,105,110,92,105,99,109,106,112,95,93,100,116,98,116,102,113,103,112,112,117,115,112,107,96,98,105,95,118,109,103,114,101,108,105,96,97,99,90,106,104,87,106,112,90,110,110,111,104,104,108,106,103,118,115,95,112,108,122,89,100,110,108,110,105,111,100,106,101,99,99,107,113,104,118,108,102,112,107,113,99,107,112,117,94,100,101,109,113,103,102,112,103,113,90,104,98,106,119,105,106,103,116,105,99,100,112,107,103,101,103,127,93,118,100,114,106,104,105,106,103,104,104,120,127,105,116,117,99,108,107,96,104,100,108,97,100,111,105,99,101,112,116,107,101,97,107,114,110,114,111,97,114,102,117,109,112,95,99,101,103,128,112,102,101,97,115,105,103,103,116,115,97,100,113,122,111,107,103,105,110,113,101,105,112,114,101,105,98,99,100,104,113,110,110,100,98,107,103,112,106,109,98,119,113,94,108,108,98,103,110,105,96,106,117,109,86,112,104,124,109,107,108,107,99,104,100,123,104,99,110,96,98,129,110,106,102,103,104,94,102,103,110,103,99,110,102,114,103,100,107,108,110,98,99,98,108,110,105,104,84,94,100,118,107,104,108,116,110,106,118,120,108,109,105,102,103,105,113,107,111,108,102,116,100,124,106,107,108,96,104,102,109,100,100,98,112,103,102,99,136,102,97,98,109,107,110,117,107,110,88,117,104,100,123,108,109,100,119,112,117,101,109,94,97,115,114,101,116,89,104,117,101,103,93,109,112,102,105,106,109,111,114,103,84,104,106,99,109,110,122,82,106,99,109,115,106,102,96,108,78,110,102,110,101,107,114,109,113,114,111,99,115,110,111,115,104,117,108,106,102,104,100,99,121,101,108,107,101,107,94,113,100,105,102,108,102,109,117,115,113,106,110,92,104,99,104,112,105,103,116,100,100,118,113,109,92,107,87,109,105,122,109,105,90,113,101,104,90,103,95,102,115,104,112,106,99,102,116,107,105,109,110,107,86,105,91,109,101,113,106,102,106,102,111,107,105,109,91,101,107,115,106,94,102,112,106,106,105,109,103,103,100,116,107,82,103,127,104,104,92,94,106,103,118,105,121,113,123,115,114,105,109,116,105,80,118,115,108,103,107,108,110,101,109,109,114,101,114,96,113,103,111,107,110,104,129,115,110,84,103,95,111,119,100,107,71,97,111,107,99,133,116,117,109,102,107,118,94,104,104,120,114,93,107,108,111,117,104,104,117,118,104,107,105,104,106,102,102,110,112,102,106,113,101,111,108,112,108,108,94,107,103,74,98,107,112,107,122,124,129,114,116,102,103,113,113,107,99,118,105,97,105,116,104,100,113,109,92,93,105,104,103,110,104,88,132,110,97,105,113,111,100,104,111,99,90,125,101,96,94,112,117,113,117,98,91,99,107,110,104,122,98,100,110,95,105,114,101,119,98,107,103,91,106,96,103,100,108,84,113,97,107,110,100,105,117,95,99,111,125,108,99,102,101,113,103,102,103,109,102,101,104,102,110,110,100,107,106,96,105,106,113,113,112,105,107,113,106,110,100,100,108,108,105,104,103,113,104,113,104,96,104,94,98,99,103,92,106,98,94,108,95,100,109,97,102,101,114,98,109,107,101,97,105,119,112,105,106,109,105,98,103,102,96,102,111,100,102,108,104,120,108,106,102,106,105,96,114,120,102,108,102,105,100,110,111,86,93,100,98,114,103,99,101,104,108,101,106,113,97,102,121,109,100,108,93,95,90,107,107,100,119,99,101,105,112,107,105,108,110,84,116,106,99,113,94,126,107,109,101,112,108,106,105,112,94,102,95,109,111,111,104,101,117,109,110,99,108,112,113,94,105,87,97,104,103,105,106,94,101,97,115,107,111,97,111,107,100,131,96,115,112,98,106,103,94,83,112,118,113,88,112,98,99,97,114,106,89,103,107,102,109,105,110,105,103,111,109,108,109,109,105,104,103,91,109,108,100,98,106,100,111,108,98,105,119,114,106,98,106,100,104,106,128,106,108,114,110,103,113,104,98,97,103,128,102,113,103,109,106,105,111,106,102,130,103,101,98,105,109,95,112,96,114,102,133,98,99,102,105,94,96,96,74,108,104,95,97,95,111,110,104,95,108,109,96,111,101,111,106,99,89,102,108,98,105,133,93,105,105,100,101,100,102,105,108,110,106,74,91,102,100,100,102,119,104,109,117,111,112,106,90,102,107,107,103,103,104,104,109,107,91,98,102,108,99,95,117,112,107,104,104,101,114,109,106,106,100,103,100,120,109,99,108,108,104,98,104,102,94,99,101,98,106,100,104,99,101,109,97,104,95,95,102,110,105,104,101,94,102,105,90,98,103,108,117,107,115,97,106,120,116,96,103,99,101,111,99,97,99,109,104,89,103,99,107,101,109,96,107,106,99,94,79,94,113,107,111,105,113,101,119,103,102,97,95,99,97,107,111,99,99,108,113,100,101,96,91,98,101,95,107,106,112,115,100,115,98,99,107,105,110,100,95,108,107,110,102,100,110,99,93,97,99,93,100,100,105,100,98,94,102,108,96,109,99,110,110,70,113,110,120,101,100,96,109,97,105,102,96,98,106,91,107,109,112,107,98,104,103,100,91,101,94,94,99,101,106,107,106,102,97,98,117,99,92,97,101,109,101,106,106,107,98,104,101,104,103,103,113,103,105,97,96,113,107,98,94,98,101,98,110,109,102,102,93,108,95,107,109,132,108,98,98,103,117,106,101,99,110,106,103,103,108,122,80,106,108,105,110,107,105,117,113,105,115,117,106,106,105,103,102,103,105,102,81,98,98,107,108,96,97,112,105,99,107,95,106,106,107,102,105,101,107,102,111,102,108,108,109,67,109,98,100,113,106,120,97,94,102,106,103,104,113,96,116,104,107,102,68,92,114,73,101,99,102,105,100,86,99,93,106,100,106,106,95,100,95,96,102,95,95,105,111,106,91,114,108,79,101,105,102,114,99,107,104,109,108,88,124,104,105,110,120,92,99,91,100,102,100,103,106,95,103,88,99,112,104,105,103,101,109,108,107,110,124,121,108,110,101,97,114,87,115,100,103,103,110,103,113,100,103,109,96,111,76,113,104,102,102,95,101,94,114,103,104,99,125,105,103,90,110,102,98,98,96,107,110,101,99,86,100,107,112,89,98,94,110,98,106,98,110,99,102,105,107,104,105,100,106,116,101,101,113,112,112,111,106,94,93,104,99,96,109,108,95,92,108,105,101,103,97,98,108,103,92,98,121,116,97,107,103,102,98,99,91,108,99,102,106,120,102,121,112,100,106,100,100,116,105,90,101,99,99,94,114,115,98,110,102,107,110,107,117,103,88,115,113,111,127,98,100,110,95,94,101,104,111,95,98,97,128,104,105,94,95,99,109,117,103,103,95,112,97,97,87,92,108,118,108,119,96,105,108,111,115,108,92,88,110,103,95,108,105,110,111,102,104,103,107,99,107,95,96,98,101,90,104,97,107,117,92,102,89,102,109,97,102,102,103,120,99,83,123,116,100,106,94,112,116,102,101,98,97,106,99,102,123,109,100,89,99,96,103,102,107,94,106,102,92,96,97,105,99,105,115,99,112,99,101,113,119,72,97,119,106,102,108,110,100,114,99,99,103,111,101,99,94,112,108,110,108,105,96,100,103,109,101,109,112,95,102,110,102,108,105,98,99,98,98,98,109,105,108,102,107,106,99,100,94,102,112,117,129,105,102,108,115,109,101,99,103,94,113,92,102,94,94,109,108,102,92,102,91,105,97,104,103,102,99,103,86,106,89,99,91,96,106,113,119,107,104,91,103,115,94,97,96,113,113,99,105,88,83,102,97,106,117,99,100,127,99,109,106,99,89,113,101,108,106,101,105,95,104,111,88,105,98,105,107,89,103,100,94,105,106,107,91,103,100,106,102,100,109,95,97,103,98,97,108,97,97,103,99,102,91,132,106,99,98,91,100,93,87,96,109,111,98,106,102,95,109,100,91,100,102,99,94,96,100,105,96,109,106,101,96,109,105,115,105,96,101,132,109,99,101,97,109,86,111,121,102,101,117,99,99,93,88,107,104,93,104,101,97,110,105,106,95,109,99,104,101,83,104,92,98,96,115,99,87,107,101,93,127,77,104,114,91,106,125,109,109,91, +494.83099,104,100,107,82,76,73,111,103,101,117,83,87,107,102,110,111,115,106,90,100,100,98,94,105,92,102,96,100,97,117,104,106,118,94,106,90,101,90,116,109,104,102,102,118,105,107,100,108,102,95,108,100,109,98,97,99,100,92,106,101,98,99,104,100,105,95,112,97,97,114,103,107,106,97,95,110,89,112,103,104,99,106,119,95,110,94,93,98,99,65,97,102,109,93,112,100,98,100,106,96,96,100,106,99,96,106,105,103,97,101,100,104,106,115,102,99,98,98,119,90,99,100,87,98,101,106,102,106,112,113,95,106,101,101,100,97,101,114,103,101,88,113,102,98,107,102,118,110,95,92,100,92,88,97,105,110,98,95,74,99,105,105,99,93,108,110,105,102,102,112,107,101,103,104,105,97,100,86,105,107,108,90,98,86,103,102,99,98,117,92,95,105,107,99,107,103,87,106,103,99,95,96,105,102,102,108,94,113,109,110,105,123,111,100,111,100,104,102,106,107,108,110,105,97,96,102,100,115,100,104,107,88,103,104,102,101,103,98,114,105,104,82,108,108,94,95,102,103,95,99,98,97,109,99,104,102,104,104,96,107,104,99,108,112,97,107,100,101,94,104,100,95,111,111,97,100,98,99,102,110,93,97,97,101,96,122,100,104,109,101,109,94,113,103,107,99,99,110,101,104,107,98,107,113,97,113,100,112,96,106,101,96,101,103,117,109,78,103,109,100,114,84,105,90,109,100,98,108,116,112,94,101,105,93,101,97,97,104,96,104,109,100,99,97,112,120,106,105,110,103,114,101,101,98,105,112,95,104,93,116,99,109,97,90,98,102,117,113,113,97,105,105,110,106,103,80,105,106,108,93,103,96,106,107,102,103,94,99,99,102,113,96,103,105,110,100,93,104,118,113,101,89,104,96,98,96,101,106,99,76,99,98,112,105,126,104,87,98,107,100,101,115,91,94,76,99,103,105,114,107,101,99,103,104,102,105,108,103,94,94,105,104,96,104,103,109,101,113,95,105,103,92,101,96,97,103,108,112,100,100,95,99,99,96,102,108,106,102,113,99,83,98,101,106,130,94,95,113,102,103,103,88,113,109,96,97,101,105,105,99,104,106,108,113,99,94,94,104,98,102,99,99,102,107,109,104,99,105,103,91,99,108,101,100,100,91,100,104,95,100,108,96,104,106,95,102,122,117,106,95,84,107,100,108,95,87,114,96,103,117,97,103,99,103,108,113,100,110,109,109,103,111,86,92,97,95,101,107,114,92,109,103,106,104,91,95,100,106,94,100,109,97,104,101,108,99,95,117,110,105,109,100,103,91,118,115,107,110,102,109,102,106,98,103,103,100,117,105,103,95,108,101,99,89,101,100,113,96,104,112,108,116,96,102,109,103,114,102,108,100,109,103,112,105,104,102,108,112,106,98,112,106,98,97,96,100,100,98,113,103,110,117,98,98,116,109,107,97,106,111,115,113,105,103,105,112,104,113,109,91,103,112,99,106,97,116,106,105,103,105,101,98,109,106,104,112,109,107,113,108,98,116,119,99,105,103,99,112,71,109,98,105,98,105,99,102,112,114,108,89,100,102,97,96,99,113,104,104,100,102,100,106,103,98,112,102,97,113,119,104,104,99,103,104,117,105,100,97,109,104,104,95,113,112,98,97,102,101,112,100,113,98,114,107,107,112,114,123,98,113,106,100,102,102,114,104,99,107,97,113,99,95,109,103,101,104,110,108,101,104,104,107,106,105,104,101,101,127,124,96,90,105,112,109,101,117,107,114,110,102,87,100,108,122,104,115,89,121,104,108,110,109,107,109,109,97,99,98,103,110,120,103,116,102,109,104,109,106,108,104,117,113,106,95,107,99,95,106,114,111,116,106,110,100,105,106,103,100,122,105,98,101,113,109,101,90,91,104,110,113,100,95,102,109,100,104,106,108,100,103,114,105,91,104,112,88,94,114,116,106,93,95,97,98,93,108,100,100,109,104,109,110,106,114,101,113,103,102,91,103,120,109,103,104,104,104,96,94,109,101,108,102,109,107,100,100,98,101,92,104,106,103,104,102,92,108,99,99,110,103,93,100,102,108,112,113,110,94,101,105,129,106,106,110,97,99,100,102,111,111,99,105,101,85,109,104,104,116,110,108,110,106,104,109,113,93,105,104,111,101,96,102,100,104,103,107,98,104,106,96,91,95,95,104,100,83,104,90,100,99,111,104,103,106,92,96,107,104,99,80,86,107,107,101,95,104,108,110,110,102,113,108,96,102,102,118,100,112,98,107,92,118,100,112,101,102,106,107,108,113,112,108,103,91,105,106,110,110,93,96,107,113,104,92,96,93,97,116,107,120,111,106,95,92,100,88,109,104,106,81,99,100,109,111,118,115,96,104,102,98,115,109,111,108,100,100,83,115,101,101,98,114,82,106,103,99,98,113,104,101,105,108,102,117,108,112,110,93,115,113,97,109,96,105,89,87,97,94,106,107,109,91,123,99,100,100,110,102,114,108,110,119,113,98,108,100,109,104,101,100,94,99,111,95,100,100,98,100,111,96,89,119,109,108,98,93,91,112,117,93,87,103,102,109,88,102,99,107,113,92,113,102,107,108,101,112,97,91,112,109,93,95,100,88,101,108,109,105,105,111,100,102,102,97,95,104,111,95,113,103,100,92,99,109,104,116,113,107,97,105,133,102,107,104,110,113,115,100,102,102,111,99,95,106,106,87,106,108,101,108,111,122,92,105,108,113,104,103,111,108,109,100,110,114,106,108,83,117,108,102,103,104,107,100,100,110,121,104,103,114,113,98,105,110,105,93,106,99,101,105,115,103,109,108,112,113,105,101,110,99,113,101,106,116,111,110,103,105,108,117,103,106,106,107,110,99,94,93,92,115,105,113,120,108,116,105,110,98,107,90,84,111,101,102,112,111,95,114,111,106,101,104,108,117,117,99,106,94,102,107,99,103,111,93,104,106,103,104,105,104,108,104,94,92,111,98,113,113,99,118,106,111,111,113,112,129,97,92,113,99,118,124,103,104,85,111,109,101,117,109,105,113,103,110,103,104,97,108,103,106,105,118,96,103,108,107,103,100,116,112,99,109,104,121,104,110,102,101,112,107,70,117,88,96,95,110,112,105,99,102,97,92,109,102,103,107,97,108,99,105,94,110,108,98,107,102,116,103,100,110,102,88,98,103,109,78,99,101,106,98,106,101,86,104,104,113,107,103,111,113,105,106,110,88,104,99,109,110,87,102,109,99,104,102,106,95,102,108,103,108,105,107,110,114,106,71,122,93,108,104,92,102,92,106,109,107,100,96,111,102,102,99,103,108,109,97,112,105,102,94,115,99,106,115,107,93,98,110,103,106,109,106,103,108,123,106,99,113,103,85,102,104,112,116,99,105,105,98,106,99,87,94,101,107,104,106,112,121,115,106,103,93,96,104,104,113,104,121,115,106,103,104,108,104,103,104,98,123,112,94,116,98,104,114,106,113,100,113,111,98,107,107,112,93,100,108,119,107,89,107,103,107,108,114,109,114,101,109,101,114,104,100,112,99,100,107,97,102,109,99,98,102,120,117,103,92,109,95,103,103,104,95,100,104,105,112,102,92,96,100,95,115,129,100,106,117,101,101,105,101,90,103,124,123,103,94,109,117,105,101,107,93,108,101,107,103,109,107,100,108,107,105,105,108,107,99,109,98,112,114,100,110,98,102,98,100,103,115,113,116,121,114,95,95,111,105,108,107,98,105,104,111,97,101,110,106,109,100,98,115,116,117,114,110,94,101,110,100,107,110,111,110,111,104,98,98,105,100,106,107,69,95,108,102,101,109,95,106,110,108,95,104,102,99,114,103,107,102,96,99,108,111,125,107,99,120,100,110,97,102,126,99,104,106,101,96,102,102,107,102,96,111,109,107,100,108,96,99,102,113,113,121,100,113,100,111,110,116,106,108,112,112,108,103,107,113,105,115,108,105,106,112,103,108,117,97,97,106,110,106,117,91,106,101,106,101,110,106,124,107,111,102,108,106,108,113,97,113,106,107,101,114,126,113,107,98,104,95,108,109,95,117,107,119,108,106,102,108,108,111,115,107,108,110,96,104,107,95,103,102,106,106,96,129,94,107,103,108,94,97,101,101,100,90,107,121,116,102,102,110,116,112,115,109,104,104,113,110,112,103,100,108,97,109,102,100,102,101,108,97,112,115,96,107,102,101,101,111,97,104,92,106,107,95,110,98,115,108,87,103,116,112,105,92,104,103,112,98,87,78,101,101,112,100,105,100,109,89,103,117,115,108,113,95,104,94,117,108,96,100,105,103,107,109,105,113,114,101,120,93,98,114,113,106,98,103,103,111,108,104,111,115,110,118,105,108,111,105,97,77,113,94,110,104,97,101,104,105,108,103,116,109,109,97,101,79,94,109,108,107,102,111,112,104,101,110,111,116,103,111,102,101,122,107,103,108,92,103,95,110,105,103,102,116,102,98,103,99,112,96,100,108,103,104,95,112,89,100,113,110,111,107,98,98,116,103,97,99,111,92,106,101,112,100,99,102,110,113,93,95,110,100,101,100,100,88,100,102,107,103,99,109,101,111,99,117,87,94,100,108,114,106,90,113,106,105,105,124,108,111,121,102,104,103,95,101,109,97,114,104,106,102,120,102,104,93,103,109,101,100,101,97,107,89,90,98,108,107,107,102,98,101,103,103,110,96,99,102,102,99,97,107,103,107,93,105,99,110,107,91,106,102,102,96,99,104,110,84,103,103,121,78,98,100,107,99,99,96,102,98,78,95,94,99,95,81,106,92,93,109,109,109,104,94,92,100,91,92,76,92,109,100,117,94,104,111,112,101,93,100,105,99,105,110,118,95,102,103,99,106, +494.97162,110,93,94,98,97,109,97,91,102,109,108,97,107,97,103,92,104,98,97,100,95,102,100,104,97,101,114,107,124,111,102,119,79,105,106,108,93,103,104,112,97,103,100,91,104,99,96,99,111,98,95,104,104,95,101,111,98,95,101,104,103,113,105,89,111,106,93,109,113,113,103,122,104,108,102,113,100,101,99,98,109,96,103,100,98,112,102,108,103,108,102,106,99,98,100,104,103,86,107,95,105,105,108,106,115,104,99,103,95,102,104,87,107,107,97,109,70,111,101,107,113,94,104,104,98,104,86,108,99,102,100,110,94,91,99,97,105,106,100,105,99,112,97,102,92,106,118,98,107,83,104,109,98,96,97,105,94,109,100,111,115,109,104,103,112,106,103,117,113,101,113,91,99,93,93,105,102,108,120,96,101,113,103,118,98,95,98,96,86,99,105,92,95,100,106,92,112,100,105,102,119,104,98,94,110,106,95,102,110,100,95,103,104,84,111,97,100,96,97,107,105,96,111,91,111,108,117,72,108,122,97,97,127,99,100,105,107,108,104,104,99,112,111,95,109,95,100,110,104,100,99,96,109,107,99,99,80,95,103,91,84,98,97,100,102,106,104,102,103,101,105,103,101,92,105,106,100,99,113,105,112,101,99,109,103,99,98,99,110,114,101,110,114,111,103,104,101,101,107,95,101,81,108,112,91,101,102,108,107,111,109,124,100,118,99,99,110,111,99,112,100,107,106,106,106,92,108,101,105,105,97,106,106,103,104,106,102,92,100,110,80,109,100,105,95,99,91,104,103,107,108,95,95,108,107,110,103,108,96,102,102,96,99,92,91,101,108,109,100,100,104,107,95,105,102,93,107,105,98,98,88,99,116,110,111,98,102,100,100,90,112,118,103,109,107,112,104,89,100,105,103,113,100,108,93,111,108,102,97,105,88,104,109,101,106,88,88,109,117,108,100,89,104,110,92,111,105,102,102,108,97,110,105,98,106,99,109,106,105,108,121,112,106,102,97,104,99,92,104,102,96,94,109,105,119,117,105,101,113,98,104,102,101,110,118,106,97,113,102,95,110,100,103,104,104,105,101,101,99,92,98,95,101,105,103,98,101,105,98,104,110,109,99,98,96,105,109,95,98,100,95,100,108,110,102,109,97,104,103,95,63,105,102,101,96,114,97,97,99,95,97,105,103,99,100,105,100,82,100,110,99,98,105,110,94,114,112,100,109,107,98,101,96,117,99,95,103,108,108,98,96,107,101,109,100,106,111,102,100,101,99,102,94,100,106,101,114,97,105,90,101,93,104,116,103,104,108,98,104,118,104,107,94,110,112,87,107,102,101,99,112,110,103,103,125,103,90,104,107,113,99,85,110,96,109,95,104,105,109,116,109,101,102,112,109,103,92,105,107,113,106,106,91,104,107,100,106,112,84,112,104,112,111,115,107,110,102,104,93,103,103,108,96,101,109,93,96,97,96,114,111,105,99,106,106,109,109,103,111,111,102,115,98,111,95,83,102,99,113,98,106,107,124,94,102,95,92,91,103,111,103,103,102,94,105,103,100,113,95,104,81,106,108,105,100,113,106,102,101,93,101,103,103,102,108,96,103,111,100,90,102,100,104,104,95,97,91,90,104,101,97,109,117,109,93,104,112,108,132,109,105,105,95,101,108,94,107,103,111,106,95,102,115,87,96,97,112,101,101,113,107,97,109,102,94,92,132,101,90,93,101,112,84,100,101,106,109,120,113,114,117,99,108,101,104,110,97,116,112,94,98,109,115,99,116,104,105,106,98,113,107,90,103,92,91,94,90,108,98,95,93,71,108,112,96,106,97,108,106,90,110,103,95,106,108,106,99,104,105,101,108,108,105,106,108,107,107,98,114,96,95,98,98,100,100,112,111,104,110,98,92,101,112,98,104,108,104,100,106,99,95,104,98,109,90,103,109,113,97,104,102,96,97,110,112,101,93,110,111,102,102,111,116,96,105,94,100,109,109,94,103,107,95,101,92,86,100,110,100,97,109,109,105,104,104,108,90,97,99,110,106,100,101,102,110,103,103,68,115,93,113,114,105,91,108,94,101,107,110,109,112,95,99,113,93,84,99,99,112,104,121,85,94,113,109,100,97,106,101,106,97,94,106,110,114,108,94,113,100,106,115,97,109,107,108,111,101,109,88,103,98,100,120,95,106,104,94,103,104,111,99,113,110,99,109,118,104,108,102,101,99,107,105,103,105,100,99,103,112,107,102,108,117,109,109,100,98,105,107,116,103,106,87,100,101,98,108,97,101,102,104,109,106,109,95,105,110,98,105,94,114,103,116,117,106,96,106,100,101,103,111,112,109,77,100,101,100,107,104,102,97,95,114,97,88,97,95,108,117,117,107,109,98,110,103,105,103,103,103,116,99,110,104,95,99,94,88,105,102,98,112,111,110,103,112,100,101,111,102,102,98,107,89,115,105,109,105,102,115,99,107,105,112,92,95,102,107,111,112,108,110,99,103,100,100,103,96,113,108,112,105,112,115,103,103,106,107,99,106,102,99,113,85,101,105,105,103,111,110,116,104,115,114,102,108,111,104,108,104,108,108,103,106,103,91,106,96,113,115,92,113,101,111,110,112,100,102,106,111,98,107,94,103,99,108,111,102,92,112,105,98,105,102,100,111,101,116,105,113,105,99,102,105,108,103,102,124,104,110,109,94,88,108,111,100,88,111,102,98,111,116,117,103,118,111,113,109,108,125,103,106,100,105,97,112,113,99,100,105,86,112,115,109,120,119,110,94,112,108,100,110,110,95,105,115,111,104,107,107,104,99,87,105,107,113,115,102,103,102,100,99,90,102,109,103,112,97,108,94,98,112,89,112,109,118,104,118,110,108,101,112,103,107,112,105,107,108,102,94,104,90,106,107,98,91,108,106,111,106,108,103,116,102,116,103,102,102,100,117,111,112,117,109,99,92,96,101,100,97,105,109,113,117,110,104,105,105,92,100,111,113,105,98,110,101,96,119,107,88,80,107,83,104,117,114,100,108,113,107,107,108,104,106,136,113,109,96,102,79,98,101,105,94,102,103,102,101,101,104,94,109,110,113,103,117,104,118,90,103,105,101,103,95,108,113,104,104,84,105,110,116,105,108,104,113,108,106,107,103,98,100,111,100,92,109,103,101,107,111,95,111,116,108,116,104,110,102,103,116,114,113,104,102,96,98,109,113,102,92,92,103,112,107,97,111,97,108,103,115,105,106,96,103,107,111,103,100,97,111,94,108,94,116,113,94,97,99,103,112,112,98,70,105,123,113,108,112,102,110,102,116,100,104,110,115,120,87,95,102,93,97,101,108,120,112,111,102,111,105,105,93,109,114,115,107,109,119,103,100,109,104,82,91,102,114,96,102,102,100,121,92,96,99,109,96,99,109,102,109,109,107,105,108,101,108,109,103,100,99,116,105,108,102,97,108,106,109,107,100,103,108,101,105,103,100,104,115,96,107,109,108,106,98,113,115,112,109,102,96,105,110,102,99,113,94,116,108,117,85,113,100,92,106,116,107,102,100,113,93,111,109,107,108,103,91,107,104,97,101,105,100,106,104,106,111,101,121,99,101,104,100,95,111,109,115,94,103,105,113,99,102,108,102,113,116,103,110,102,116,112,113,94,104,97,96,102,104,108,106,95,102,116,105,96,91,101,121,113,105,109,101,100,110,112,109,90,102,104,98,105,93,105,112,104,94,113,111,116,105,97,105,104,95,107,106,104,105,106,102,113,93,112,91,78,100,94,115,92,104,98,104,99,100,104,121,119,106,119,101,96,110,106,112,102,115,106,99,109,114,118,99,121,102,95,105,109,107,104,107,106,107,99,111,105,102,109,92,109,110,101,109,101,110,107,107,98,92,98,101,98,115,101,101,114,112,100,94,94,98,98,96,102,115,104,104,113,112,115,103,100,109,112,102,101,107,116,103,106,88,99,114,110,79,101,113,105,101,113,106,106,70,112,90,105,113,102,116,99,105,112,105,106,113,104,107,85,111,96,99,99,108,101,91,99,105,109,101,99,108,109,103,107,111,101,110,101,92,102,100,101,101,103,100,111,95,110,104,109,96,107,101,98,106,116,101,95,97,96,113,98,113,103,91,101,94,108,115,109,100,105,110,106,108,102,106,98,105,106,109,102,114,107,95,108,99,113,104,96,116,100,102,109,109,99,98,115,104,107,109,104,101,97,105,107,101,102,124,102,97,99,85,107,102,102,88,100,105,94,103,103,101,104,102,101,97,115,100,97,90,98,101,94,111,106,122,96,66,114,101,112,108,118,100,109,119,102,107,110,103,95,112,86,103,99,103,103,103,106,102,106,92,109,112,106,120,106,97,98,93,99,97,115,107,99,95,99,116,90,95,115,100,96,99,111,104,112,102,102,97,107,101,124,106,95,110,109,98,85,103,115,106,108,110,102,112,105,106,93,100,101,101,98,116,101,101,111,102,109,100,87,93,96,113,102,107,115,114,107,107,99,95,93,103,112,122,103,88,97,96,106,91,109,104,98,113,92,105,113,106,102,101,106,114,107,100,109,112,81,113,105,68,100,108,100,104,118,104,103,105,106,109,106,91,100,102,90,96,109,106,111,111,104,104,102,104,106,104,116,105,86,111,95,103,106,96,103,108,106,108,101,115,109,83,104,102,108,92,101,101,103,87,93,107,109,91,94,100,103,101,90,100,104,94,107,113,103,116,98,105,111,108,101,103,110,100,100,105,98,99,105,102,112,97,98,98,109,107,99,107,99,100,89,116,107,96,107,106,107,102,102,108,98,104,100,111,92,104,120,113,100,107,97,105,108,100,102,106,118,107,99,104,102,110,97,114,93,91,94,103,88,80,100,101,96,107,96,93,87,106,74, +495.11221,106,106,104,102,82,103,101,109,109,103,105,104,96,107,105,100,112,110,107,91,98,98,102,100,102,105,95,106,116,108,87,98,103,99,102,98,108,103,113,96,102,91,109,99,109,113,101,95,93,108,103,81,80,106,103,107,113,106,113,101,101,111,106,102,76,80,94,87,112,93,108,115,106,101,99,113,100,102,101,109,109,106,104,112,110,98,103,98,96,121,100,90,103,109,103,105,110,107,106,114,105,110,101,116,103,110,101,104,103,111,118,94,97,116,117,131,106,103,101,91,93,105,96,118,104,110,106,102,110,108,100,106,115,103,102,100,112,114,113,104,98,108,105,106,105,105,106,118,109,105,87,121,111,101,104,109,98,104,98,112,116,108,107,108,97,98,95,97,103,106,108,116,100,106,103,88,109,106,116,96,94,122,98,98,104,99,96,78,101,106,100,104,96,108,108,104,108,114,108,111,105,101,101,110,98,105,109,96,117,110,97,105,99,99,101,118,97,102,113,96,125,125,103,100,98,103,106,100,115,110,89,107,104,94,110,104,101,118,106,103,102,99,94,85,95,105,102,112,107,96,111,100,99,105,98,103,103,106,98,108,117,96,113,99,108,116,107,93,111,94,106,100,108,104,107,105,94,100,95,101,108,107,95,99,102,103,99,98,100,96,99,122,105,103,108,88,105,111,111,106,100,101,104,96,95,103,101,117,106,103,100,107,104,107,108,99,113,104,99,101,117,98,112,102,108,103,95,98,102,102,106,104,109,121,100,107,103,106,102,95,111,102,112,95,98,101,118,109,101,112,98,103,111,126,97,117,109,137,111,105,104,107,111,91,93,110,116,113,100,113,108,100,101,101,104,102,100,103,95,117,115,90,99,115,101,99,86,100,99,98,105,106,95,99,102,109,105,98,106,111,100,103,103,102,99,114,95,102,112,106,92,110,106,107,105,109,120,99,108,113,101,109,99,102,101,97,107,100,106,103,104,104,108,99,102,108,102,104,107,98,115,109,91,113,89,109,100,104,107,109,103,117,108,113,107,116,106,103,106,97,91,95,108,105,110,99,114,105,112,117,96,110,104,114,98,99,100,112,99,100,96,110,116,101,98,100,107,108,104,103,113,105,106,104,104,107,105,110,102,98,112,112,94,99,100,98,95,108,103,93,104,95,113,106,105,116,94,114,108,98,106,119,107,109,103,99,114,109,106,95,106,109,98,117,119,107,110,107,108,107,96,113,107,104,98,96,106,106,112,100,116,116,110,94,109,99,103,103,110,102,108,84,102,107,79,89,97,99,99,99,105,115,111,105,114,103,107,109,102,107,100,98,107,96,113,101,108,102,114,99,94,110,105,101,117,118,101,107,107,108,86,109,95,100,104,98,108,106,118,113,106,110,93,102,103,103,98,99,110,106,101,96,114,104,94,110,109,105,94,110,103,110,118,104,103,117,99,102,104,116,109,111,106,105,106,92,95,103,106,108,101,115,99,104,113,95,110,105,125,99,123,114,107,97,108,91,110,104,101,108,117,107,104,98,101,118,105,105,104,103,103,106,109,99,119,100,104,121,112,112,102,104,102,104,107,105,83,102,110,100,82,99,112,109,99,104,110,106,98,98,99,106,100,86,102,99,115,100,105,95,114,104,117,102,91,97,111,113,88,118,102,116,96,103,102,101,107,103,106,113,108,79,105,96,107,114,110,109,111,116,107,98,102,106,129,99,120,92,112,105,105,107,101,96,104,97,105,105,92,95,110,109,95,100,103,100,108,104,111,102,102,100,102,103,116,100,108,110,118,113,105,109,110,107,98,104,108,112,113,109,95,112,108,104,109,100,104,106,112,114,107,116,102,99,117,103,104,110,117,106,108,101,121,115,112,113,105,110,102,99,106,98,106,103,104,110,104,109,121,109,122,127,108,104,108,102,99,97,109,108,102,108,103,104,103,111,106,118,106,104,102,104,97,123,97,114,95,106,109,106,120,116,108,110,123,109,113,98,96,114,105,114,115,109,100,109,108,107,100,97,107,105,101,111,106,97,109,111,100,112,110,98,103,100,111,118,99,100,110,101,109,116,107,110,117,101,97,101,106,105,95,106,103,106,118,100,105,110,105,104,108,103,94,109,100,107,102,114,120,99,104,77,104,100,100,106,99,102,118,109,103,105,106,107,112,108,103,126,96,111,113,106,101,114,112,103,102,94,98,114,100,108,108,90,102,111,101,90,107,103,99,102,101,111,110,117,97,94,100,90,110,101,112,112,96,109,94,105,105,114,107,99,102,118,95,98,89,102,95,112,107,101,99,111,108,110,98,100,114,105,109,121,116,101,105,121,102,106,103,102,108,109,122,102,105,88,104,106,108,97,101,117,100,115,105,106,105,125,99,116,100,106,105,99,113,92,102,110,101,106,101,108,111,95,102,111,99,97,105,101,94,101,109,107,108,111,97,103,110,112,89,107,98,110,95,110,115,96,116,105,104,105,109,123,102,107,104,97,99,109,97,95,102,108,94,103,106,109,110,109,118,113,140,114,109,98,109,102,77,106,109,103,117,70,121,118,101,110,98,109,107,104,93,92,114,114,103,96,112,108,95,104,99,108,113,94,96,105,101,91,113,110,112,92,111,106,100,106,110,120,110,73,98,105,101,102,108,105,103,98,114,102,114,104,108,137,105,123,105,108,99,112,100,105,110,111,100,108,103,109,102,99,101,117,95,102,110,94,102,102,102,104,112,107,113,119,103,107,100,98,106,99,112,100,103,112,98,93,98,98,100,113,103,107,129,106,96,117,107,129,94,111,89,113,113,104,109,110,108,102,109,106,100,96,105,102,122,107,101,109,97,115,119,125,99,100,108,111,98,112,98,100,99,102,120,95,112,101,96,101,109,113,114,109,91,81,94,103,105,105,105,105,112,105,111,101,98,109,101,108,101,112,93,102,103,112,108,107,97,99,111,103,91,100,112,88,99,94,102,93,101,108,101,91,102,122,101,102,107,103,106,102,133,105,116,98,101,109,123,87,102,101,105,109,103,114,107,98,112,107,95,112,123,105,98,108,101,104,120,103,99,112,108,98,111,95,95,98,117,106,120,110,110,96,99,105,142,95,102,102,112,100,88,106,102,113,109,108,95,97,99,106,128,105,104,102,110,105,119,94,103,89,115,109,103,105,99,106,104,96,120,110,99,114,104,94,99,112,109,110,113,116,102,104,112,100,95,108,103,109,105,111,113,107,102,104,90,96,120,108,107,106,100,108,110,97,92,95,113,98,108,101,113,90,113,95,105,110,112,99,111,97,92,112,101,106,110,103,99,101,98,102,105,114,108,105,94,110,101,110,117,103,105,110,107,103,96,113,105,109,110,104,95,105,108,115,106,100,112,101,107,96,113,111,109,102,92,113,116,106,97,95,111,103,108,103,105,114,102,107,83,94,104,86,102,101,98,94,110,105,96,108,102,106,103,104,99,97,121,98,109,106,110,102,100,99,94,99,102,97,96,98,103,111,109,108,98,101,101,94,112,108,103,102,95,103,102,104,100,107,105,108,106,110,101,111,103,109,100,103,109,103,102,103,109,124,104,110,105,97,102,107,92,106,96,109,102,96,85,105,95,103,106,110,111,107,106,78,98,110,111,105,106,107,99,109,96,101,123,104,106,101,92,110,100,98,105,110,107,100,105,107,102,92,101,101,97,108,110,107,92,97,108,95,101,100,85,110,106,99,86,111,95,99,106,95,101,109,105,91,109,95,100,116,105,115,103,113,114,101,113,98,114,92,103,94,109,120,101,109,103,110,111,110,106,101,111,103,101,113,109,111,105,110,101,99,104,99,106,108,107,122,102,95,99,101,107,105,119,103,103,95,113,105,107,112,104,98,98,100,95,108,105,111,116,92,102,64,108,136,112,100,109,106,116,101,102,98,116,109,95,97,108,108,99,110,110,107,106,101,94,120,109,109,106,109,99,114,106,110,98,111,103,96,100,100,108,105,103,112,95,99,104,106,101,103,103,95,111,91,100,92,105,99,102,107,113,103,99,113,109,109,106,100,106,112,92,78,102,108,104,91,96,112,89,103,99,95,115,93,107,105,109,110,109,105,79,102,103,105,78,100,107,96,101,103,97,107,104,109,99,101,102,105,112,98,111,114,102,103,113,101,98,98,105,104,112,103,95,102,107,94,117,85,102,106,105,106,104,100,97,102,105,109,102,99,99,107,106,100,111,102,113,100,110,120,108,101,100,95,97,107,105,107,107,94,110,114,102,97,108,111,109,105,110,108,91,101,95,100,105,96,106,105,99,94,110,103,113,108,97,117,98,93,110,102,101,106,101,113,103,96,108,93,101,98,100,107,103,111,113,114,104,106,106,97,105,98,106,99,98,105,104,99,123,114,86,105,92,95,94,105,107,105,100,103,91,105,103,104,107,104,104,100,116,96,94,100,91,112,84,112,103,117,111,99,104,95,111,105,114,108,96,108,116,102,98,100,88,99,104,109,116,107,109,106,107,103,99,106,90,102,113,105,100,106,102,110,112,106,98,93,106,110,104,111,108,91,108,109,78,108,114,121,103,113,106,108,106,108,99,103,101,95,98,106,103,109,104,120,114,100,107,104,104,105,102,117,93,110,100,110,93,102,103,104,111,111,103,102,109,95,107,104,100,100,112,111,106,84,82,119,100,110,113,92,134,108,103,98,115,122,111,98,93,89,103,92,112,94,93,103,104,93,107,94,119,99,105,99,116,112,135,109,110,111,96,99,100,99,99,105,109,106,96,102,104,112,107,97,94,101,99,102,112,97,104,102,113,103,104,104,98,99,116,90,110,93,99,106,93,116,117,102,81,116,95,102,103,113,104,95,91,112,117,116,99,112,112,102,108,119,109,98,100,112,114,105,97,101, +495.25281,106,97,108,99,101,96,115,95,99,111,92,103,90,92,105,111,101,108,103,103,99,90,106,109,93,111,99,106,100,105,116,104,99,95,92,90,108,104,97,99,98,114,107,110,97,101,96,114,112,91,98,107,111,98,118,113,97,111,128,92,105,102,106,97,113,95,104,100,113,101,98,108,104,101,103,109,93,98,95,75,100,106,105,107,105,98,106,98,92,105,97,109,102,111,108,107,101,88,96,106,98,101,102,95,101,97,90,103,101,105,90,95,104,96,102,110,104,104,106,100,110,106,105,104,110,103,100,106,99,118,95,96,112,101,104,107,99,106,94,105,107,106,101,90,78,94,126,94,89,107,96,94,101,94,99,101,101,102,103,116,106,88,107,113,101,106,102,88,92,99,102,103,113,112,94,85,106,108,107,100,115,118,101,103,100,108,91,99,110,102,103,102,94,103,105,96,105,101,105,99,117,103,104,108,95,143,118,90,99,103,102,100,110,102,106,99,96,107,97,98,92,107,95,102,101,103,98,102,104,104,104,106,96,100,104,103,109,113,107,100,103,97,119,103,105,105,105,99,93,103,85,108,91,99,94,109,94,99,87,107,97,94,103,97,106,103,109,115,103,105,102,98,111,102,109,124,105,105,99,93,105,107,108,109,109,105,102,98,73,106,99,107,109,106,102,97,100,108,108,108,103,113,100,105,108,109,100,99,108,105,106,99,98,107,99,99,107,109,111,103,102,105,103,95,107,104,105,99,112,106,106,102,109,94,118,102,109,102,94,98,91,109,107,89,109,114,100,97,105,112,107,99,109,101,102,113,108,99,87,104,105,109,101,113,101,107,105,115,101,90,109,101,110,102,108,101,101,107,111,106,106,109,98,100,97,106,105,107,94,103,116,103,109,103,104,109,104,92,111,112,97,135,104,94,105,86,125,107,117,103,118,107,97,104,110,93,106,92,104,104,108,101,101,105,113,91,103,98,103,91,102,100,98,107,95,102,101,107,100,97,92,96,101,120,96,100,99,94,105,113,110,105,96,119,82,103,94,113,110,108,99,104,96,96,100,107,102,97,105,78,93,107,103,91,88,110,100,107,116,95,86,109,115,104,101,112,121,113,109,88,117,105,107,110,97,105,101,91,100,106,108,103,108,107,98,101,97,94,110,102,111,105,118,109,88,112,113,113,95,87,107,105,105,108,98,111,116,101,100,95,98,111,91,100,102,87,109,103,107,96,100,110,109,98,116,114,102,104,113,106,93,115,111,90,106,115,96,100,96,97,101,107,107,102,96,108,98,109,114,95,99,106,116,119,103,102,112,97,95,102,120,114,100,102,106,104,99,114,115,112,109,103,97,100,116,105,111,98,97,105,102,103,111,106,103,103,94,98,97,102,105,109,122,96,116,101,102,110,98,104,120,103,104,108,110,101,117,111,99,105,107,109,99,104,112,95,100,99,105,107,114,74,107,105,100,100,99,91,111,102,115,97,112,113,96,104,118,91,110,106,96,102,104,93,104,103,109,99,104,103,111,99,88,99,93,95,111,113,104,104,113,101,87,94,100,108,103,102,106,100,102,102,108,111,103,112,107,107,96,109,104,106,94,97,102,104,94,103,96,103,106,115,111,92,102,105,108,104,111,106,109,106,109,116,100,106,107,107,101,106,110,102,89,99,107,114,119,103,103,115,98,109,92,104,104,105,111,105,96,111,120,109,102,109,102,106,101,99,90,106,101,121,109,104,104,106,102,102,113,111,105,91,97,80,111,104,102,108,108,102,119,106,104,105,104,103,102,102,101,108,105,103,107,108,104,97,99,96,108,102,105,97,121,109,106,105,111,109,106,94,106,99,99,109,113,99,109,104,103,93,95,118,113,107,117,108,112,104,111,103,116,113,102,106,98,113,100,109,102,108,112,88,107,99,83,130,118,117,106,103,102,97,98,103,95,109,98,111,93,120,96,104,107,101,92,113,96,116,109,101,104,100,122,104,91,108,107,96,77,103,111,87,115,108,112,106,91,102,106,80,106,99,109,113,106,91,102,97,99,118,96,105,115,98,109,93,89,111,101,118,99,108,114,94,117,105,104,107,101,101,109,99,109,101,110,91,111,103,105,101,101,112,109,104,99,103,101,95,94,105,96,110,94,104,100,98,98,106,108,117,101,108,112,108,120,105,103,101,102,103,103,108,116,108,109,92,102,101,101,93,91,98,104,100,104,97,108,95,95,113,102,124,100,96,108,98,95,106,97,99,105,106,107,101,106,92,98,101,105,112,96,98,97,101,103,96,106,112,102,102,97,104,99,113,105,75,112,104,101,104,101,102,101,96,108,95,104,103,103,103,107,109,108,102,108,97,101,109,113,103,96,96,91,102,97,100,107,97,108,111,102,108,100,102,113,109,102,96,106,107,108,100,106,95,92,92,105,114,108,97,100,113,101,103,107,98,108,109,100,110,99,103,105,97,112,117,98,105,110,106,100,106,106,103,106,116,117,114,99,100,78,103,112,113,115,102,102,109,108,114,106,118,107,110,108,106,117,105,100,108,117,101,106,99,124,105,99,117,106,95,115,99,111,98,120,107,97,109,110,87,103,86,90,107,102,108,111,104,103,105,113,119,114,116,101,97,104,108,128,103,104,93,112,98,99,99,103,106,110,101,112,104,93,96,83,93,100,96,108,106,102,109,100,108,104,94,116,108,97,104,102,99,113,116,104,114,110,99,108,110,110,110,96,109,114,101,103,104,103,107,104,110,83,117,113,117,105,103,97,104,99,116,116,104,109,95,109,117,105,107,112,105,90,110,117,104,101,114,105,101,106,107,125,110,103,83,105,116,105,93,105,111,101,90,100,94,110,112,103,106,99,107,112,99,115,109,101,103,102,99,102,110,110,109,85,98,96,107,108,110,108,116,115,94,113,106,105,100,108,107,97,96,116,91,96,105,96,128,106,105,100,105,105,120,102,109,107,108,104,105,99,111,110,106,111,113,108,96,112,93,111,113,88,107,100,106,109,112,106,105,118,109,98,107,113,105,104,117,104,120,103,115,120,110,99,90,108,107,105,118,109,120,112,114,106,110,108,109,116,95,127,109,104,98,110,104,110,105,98,111,107,109,99,97,118,111,104,100,100,100,101,131,99,109,119,95,103,106,107,104,86,109,109,107,109,101,105,113,112,100,110,118,111,113,106,108,109,107,118,94,119,106,107,101,108,108,72,102,98,88,99,103,99,111,105,107,99,98,117,97,117,105,103,112,115,117,102,102,104,100,89,113,116,103,113,108,97,100,110,110,99,111,105,105,110,112,113,108,106,108,114,96,101,100,109,103,94,95,106,115,109,110,119,94,91,101,98,102,115,98,107,112,94,109,110,100,109,99,117,109,101,109,100,97,107,112,103,106,102,100,103,108,106,104,83,104,108,97,99,106,104,107,106,101,101,125,100,109,106,109,110,95,107,109,95,112,108,102,109,106,105,96,105,109,109,101,122,107,103,92,113,107,102,110,106,96,104,102,101,102,112,100,98,102,105,111,109,106,99,92,96,95,103,106,105,103,95,95,112,113,105,100,95,110,100,112,118,116,105,113,103,102,113,106,103,87,114,117,113,100,109,103,113,107,103,104,96,92,100,102,100,119,103,102,106,109,94,103,94,97,94,109,107,90,104,91,105,125,102,102,108,108,98,107,96,108,80,93,101,85,106,104,114,99,119,102,113,101,107,98,102,105,97,113,108,106,111,106,109,108,110,108,96,98,107,106,100,116,108,115,95,94,102,109,105,102,104,101,112,102,97,94,100,98,100,104,107,111,106,106,115,106,111,109,113,112,106,116,96,109,99,92,111,98,95,107,106,106,106,110,113,107,101,100,105,109,109,110,108,111,88,99,93,97,110,109,106,102,98,98,104,91,106,103,113,102,114,110,102,107,114,108,104,115,88,111,121,109,111,116,97,112,94,109,88,99,109,106,107,117,103,98,120,122,102,113,99,105,110,107,107,100,90,109,115,93,88,79,104,105,99,99,97,98,112,106,104,109,107,121,76,115,103,107,100,113,110,110,104,98,105,107,103,100,100,111,111,109,111,103,110,105,101,112,103,109,100,110,97,117,106,100,118,102,112,114,106,124,107,94,107,97,102,106,108,116,109,98,111,100,129,97,113,118,105,110,104,103,99,100,97,99,92,110,100,102,98,113,105,98,119,107,101,104,103,102,108,95,95,99,107,121,105,102,92,102,119,118,98,82,95,105,105,98,95,99,106,97,98,98,107,74,106,105,109,102,117,88,91,117,98,97,103,103,101,99,103,100,113,104,114,108,100,98,109,101,113,102,96,92,112,109,112,100,102,107,105,114,117,105,109,110,109,103,103,104,104,106,99,92,104,106,113,111,106,98,107,107,107,108,97,101,98,109,95,102,108,102,115,106,104,105,106,100,101,114,96,93,113,116,86,113,124,92,114,93,105,98,94,98,96,105,99,101,110,100,107,103,99,92,90,102,95,105,116,100,104,77,110,76,91,100,101,94,107,106,107,111,98,106,103,112,95,93,103,99,98,99,102,106,121,115,105,99,123,119,97,101,101,102,100,94,99,118,103,105,119,100,104,103,106,109,100,116,86,110,109,101,118,108,124,101,95,102,115,108,117,99,100,95,106,91,102,93,102,117,109,98,101,111,100,90,109,101,95,106,104,109,106,94,114,109,110,106,104,101,95,102,108,91,109,94,92,103,106,106,103,99,105,99,90,97,104,98,100,96,66,99,96,95,110,104,105,103,113,106,104,94,99,98,96,114,108,84,105,104,105,89,93,104,111,98,99,99,106,118,110,112,101,103,97,104,104,107,102,111,90,93,107,96,96,107,98,102,99,95,87,115,92,98,95,117,100,101,102,98,113,96,113,95, +495.39343,111,99,92,100,105,101,103,93,125,105,102,109,105,95,106,107,94,101,103,88,113,112,106,101,100,98,106,104,104,104,119,106,98,100,108,106,94,103,98,107,99,89,89,102,106,101,117,103,98,99,110,83,95,108,104,111,103,99,109,103,105,111,127,89,111,100,82,117,112,101,116,118,103,100,97,107,103,99,100,105,103,108,95,102,102,98,108,111,110,103,94,108,99,99,100,104,99,99,87,106,92,99,100,119,97,93,103,107,97,95,108,101,113,103,112,104,95,111,100,106,105,96,103,113,93,128,104,118,113,110,104,109,106,111,107,112,108,105,110,103,116,106,101,106,103,108,114,102,100,105,95,101,105,81,104,113,95,113,104,110,91,105,93,103,105,108,107,110,91,101,102,106,102,107,99,100,114,106,113,113,100,93,105,105,110,110,105,96,105,101,99,104,101,102,98,113,98,98,103,95,95,113,111,100,97,115,103,104,99,119,95,115,111,106,105,92,101,99,86,108,103,114,94,99,98,102,118,106,110,106,99,98,103,103,102,117,101,106,107,95,109,94,113,110,104,102,102,111,101,106,117,94,96,111,97,104,89,89,97,105,91,106,110,96,94,96,105,100,101,97,103,98,104,95,113,90,99,107,103,130,107,72,108,95,120,104,97,104,100,86,109,102,94,96,100,102,115,102,113,95,107,107,106,109,100,111,109,110,95,108,116,97,86,113,110,109,95,126,107,107,104,95,112,112,103,104,110,97,110,103,105,105,105,106,104,110,111,100,97,113,81,104,108,97,108,112,106,110,120,103,106,118,115,108,110,116,103,109,103,106,107,101,106,107,102,98,97,107,95,102,106,96,102,107,98,118,91,97,96,113,112,112,101,101,107,99,104,105,106,90,111,101,90,99,99,96,103,93,113,109,92,101,103,97,102,106,110,113,97,114,94,94,111,113,98,101,98,95,106,100,99,93,105,119,102,110,96,104,100,114,99,105,113,107,97,96,101,96,106,105,97,101,100,93,107,112,108,105,99,111,100,91,108,112,99,94,103,102,104,101,95,98,127,100,95,102,101,98,99,94,106,104,101,104,100,101,110,114,100,101,86,90,112,94,94,108,94,120,102,100,103,95,99,106,104,117,114,99,98,98,98,106,109,108,104,98,106,92,109,92,100,91,106,110,97,104,102,114,110,96,113,106,110,113,107,99,112,104,120,100,91,100,107,93,103,107,96,96,101,122,107,102,112,96,97,98,117,106,113,114,100,111,107,106,109,109,114,100,111,94,97,103,108,109,105,103,112,104,105,108,100,87,119,116,112,107,118,103,108,116,95,103,109,111,97,107,112,103,100,105,120,95,104,103,112,102,102,101,95,108,106,116,105,108,104,108,94,115,85,111,103,99,127,102,105,95,99,105,110,98,103,96,105,104,115,105,112,114,103,113,108,97,99,110,103,100,107,101,105,103,112,108,102,122,96,97,109,103,130,119,113,125,100,108,115,112,124,100,119,95,113,95,113,99,102,105,88,95,106,100,119,113,110,110,94,103,108,105,112,123,98,97,96,107,98,111,110,117,110,99,104,105,97,101,101,108,114,101,115,99,117,97,100,101,103,83,111,81,98,111,101,106,103,97,98,98,113,99,99,95,88,102,99,113,105,114,93,108,110,87,100,98,102,109,82,101,113,108,118,108,110,99,105,107,102,96,113,98,106,121,120,97,109,97,110,109,117,111,108,98,100,108,95,101,97,98,92,107,103,93,113,90,113,133,105,108,99,113,98,101,105,92,97,98,103,106,91,113,91,113,92,101,88,125,103,110,108,95,114,100,100,109,104,105,106,106,106,112,111,101,106,108,104,102,98,105,105,109,101,99,107,98,105,106,99,100,104,101,105,102,99,110,106,110,87,106,110,75,116,107,97,105,98,106,111,105,99,95,100,95,93,95,94,130,101,106,104,101,99,108,117,106,111,105,101,103,99,116,108,106,106,114,109,99,110,102,98,102,109,101,100,106,104,109,107,102,96,106,115,104,98,103,104,93,120,96,95,100,109,101,107,107,98,91,101,97,104,102,100,100,110,110,98,100,102,99,87,101,102,108,109,105,106,105,104,129,99,110,102,98,104,112,97,109,107,109,96,109,105,109,107,92,105,91,91,108,109,96,110,108,100,101,108,113,107,108,101,96,106,91,107,102,109,95,106,109,103,101,109,99,105,96,105,105,102,112,124,103,88,98,102,120,107,102,108,99,98,101,99,96,105,95,102,106,113,100,95,123,104,100,101,96,109,111,122,112,90,110,105,100,89,117,110,106,97,105,108,102,98,95,112,108,107,112,104,96,108,86,102,95,101,99,101,100,109,103,86,100,99,93,107,117,99,102,90,114,103,96,119,113,105,119,95,104,99,99,95,94,99,99,107,101,92,91,103,87,90,104,112,97,93,98,112,109,113,102,104,103,87,98,99,101,103,107,107,111,102,108,114,96,105,90,99,115,115,102,100,117,109,116,118,105,107,95,128,99,103,98,115,110,105,109,113,121,115,104,103,99,100,106,107,99,109,113,102,73,111,113,93,106,111,111,112,105,103,104,98,101,106,108,113,92,114,102,109,106,101,107,113,99,112,103,111,112,103,103,104,110,117,108,100,93,113,105,109,109,107,104,113,112,106,94,110,106,110,109,112,92,119,108,90,108,101,100,116,113,109,109,82,113,105,110,114,121,97,105,106,106,103,113,106,98,105,97,101,106,111,113,98,98,106,110,100,95,126,109,106,115,110,113,98,117,123,107,97,100,102,95,115,109,105,100,105,101,103,112,106,117,121,125,110,104,103,105,108,109,118,116,110,108,104,104,112,108,101,118,100,102,102,124,119,101,100,108,104,97,98,117,112,76,103,111,113,114,99,100,105,100,109,100,107,100,113,105,114,107,102,101,104,117,101,108,112,105,97,104,116,105,108,97,111,106,91,89,102,88,111,112,109,98,105,116,105,98,107,100,99,86,111,106,113,103,113,103,95,108,104,108,111,105,106,91,116,110,111,103,105,103,109,114,107,97,101,92,107,102,96,110,85,104,114,116,101,101,100,98,112,103,105,107,112,106,116,106,102,109,113,108,88,97,107,98,109,114,111,90,96,106,100,109,104,95,91,107,112,100,100,107,107,101,75,101,101,107,99,110,108,103,109,97,102,106,108,95,111,105,109,108,107,101,120,87,111,105,102,105,113,108,108,115,103,106,99,106,107,100,104,102,114,107,115,96,115,119,114,109,116,112,108,112,98,112,102,106,98,103,98,103,108,110,109,103,108,103,100,107,120,109,108,97,99,94,108,110,102,100,99,107,107,106,114,104,108,103,102,106,102,109,110,89,104,103,106,102,98,106,104,99,102,103,107,114,112,112,115,103,111,101,110,117,96,103,110,119,102,101,105,95,105,104,110,115,99,101,98,85,108,101,102,95,112,106,113,108,99,108,96,104,104,104,104,109,110,116,95,109,102,107,113,121,103,105,113,110,97,106,101,117,104,85,98,86,98,104,114,112,112,112,107,115,116,113,102,116,110,107,104,111,103,110,114,114,105,101,95,95,101,104,98,104,96,104,112,112,105,93,99,105,100,100,100,101,89,105,105,95,114,91,101,107,101,104,107,109,97,102,108,99,133,112,101,108,111,99,107,106,110,109,104,103,116,100,104,111,106,103,105,109,105,106,106,107,108,101,115,101,108,102,100,108,106,110,104,121,108,106,115,108,106,105,115,103,110,100,113,102,108,102,113,113,111,111,111,103,107,103,97,96,103,102,100,120,105,99,107,102,101,115,101,100,97,103,112,96,109,108,104,103,101,112,95,104,92,105,100,92,104,102,103,113,94,103,115,102,112,107,108,110,111,107,95,100,107,110,112,116,104,111,107,90,106,107,99,109,107,94,107,106,101,101,102,97,107,109,98,113,112,104,99,106,104,103,98,111,108,100,104,109,118,121,103,102,107,105,114,98,111,108,106,103,105,113,107,102,115,104,104,100,105,119,113,101,91,103,110,104,106,111,115,113,113,109,107,107,107,102,100,99,88,103,98,117,101,112,105,102,111,114,102,84,112,106,104,117,110,111,100,110,117,113,101,116,111,106,103,106,109,104,102,108,110,95,109,115,84,108,116,102,109,109,109,112,109,95,106,98,140,97,103,103,106,110,94,102,101,120,97,121,116,102,109,107,109,105,100,109,101,103,102,105,120,96,106,110,107,104,105,83,106,95,88,100,103,95,107,86,102,104,116,78,108,110,110,102,101,106,102,93,94,112,106,114,110,100,115,111,99,128,101,108,110,110,110,100,113,120,120,109,107,97,89,107,110,108,94,111,106,99,99,118,108,106,128,110,100,112,107,100,103,105,95,99,113,95,104,106,102,102,115,107,116,93,108,103,99,113,99,101,101,91,112,104,92,117,97,104,103,122,103,116,94,103,105,109,102,87,115,94,126,105,95,108,102,114,105,93,102,111,95,103,104,102,106,111,98,112,121,106,105,94,99,94,106,96,100,100,113,105,113,116,107,103,65,97,102,106,111,113,111,96,99,103,102,113,97,92,103,109,91,94,102,93,100,116,106,110,110,105,107,96,91,108,91,112,102,109,99,106,107,107,104,105,101,93,98,103,99,98,77,103,89,98,92,100,105,103,113,104,100,102,99,103,108,106,105,117,111,95,107,89,117,118,103,100,101,109,108,95,104,108,98,100,103,90,95,113,103,130,103,102,115,112,120,105,103,111,102,99,91,107,96,114,96,117,102,110,104,100,104,104,109,105,104,108,101,103,91,101,105,88,102,102,107,107,92,111,107,106,97,102,113,101,97,105,100,113,96,104,111,91,104,105,105,100,107,113,106,96,105,91,107,100,96,110,92,102,109,97,95,63, +495.53403,124,87,101,107,95,74,105,104,92,109,95,103,105,103,112,112,97,102,92,96,97,113,102,112,97,112,99,110,83,108,99,101,107,116,111,114,103,95,112,101,90,103,96,115,104,100,101,107,95,112,86,104,93,94,119,93,100,100,94,110,111,109,103,100,100,107,106,110,96,95,98,122,98,105,97,120,95,101,108,113,90,99,127,104,96,94,114,85,109,103,92,109,105,101,103,103,103,102,113,98,90,111,98,96,108,104,95,96,91,96,82,97,94,94,114,106,94,114,95,105,95,110,100,98,103,104,125,98,112,87,95,98,109,108,110,105,99,101,95,104,108,107,95,106,87,98,110,110,101,101,110,109,104,101,107,87,100,107,111,101,97,106,136,105,107,98,109,91,114,104,114,108,108,86,115,100,134,99,112,110,103,103,99,100,111,109,97,68,95,105,105,106,107,100,105,122,97,111,99,100,103,105,102,102,100,111,109,102,109,96,95,102,110,114,97,107,94,108,93,98,102,112,120,111,117,104,114,122,105,109,102,106,110,106,91,105,112,108,105,98,113,108,104,108,117,112,84,111,99,100,100,121,113,108,103,104,97,109,97,108,108,102,99,112,98,111,100,120,104,95,98,106,108,101,99,99,99,107,97,109,91,105,94,100,101,109,101,106,103,99,97,104,108,106,106,101,107,109,106,114,105,104,95,105,101,108,115,92,107,116,106,108,102,105,104,105,117,100,107,108,98,100,96,96,108,107,112,88,99,110,103,91,124,106,98,111,108,98,103,99,123,112,101,95,93,110,99,96,111,99,107,108,112,109,95,100,118,101,113,107,112,103,101,105,113,99,96,111,111,98,108,104,94,107,111,68,104,112,89,109,114,115,99,113,100,105,100,97,98,115,129,100,97,100,118,112,110,98,104,110,108,105,107,99,104,102,97,108,112,103,94,103,108,114,109,99,94,117,97,109,102,96,99,99,97,99,100,102,112,108,101,114,109,105,105,109,105,109,82,99,106,119,101,106,102,106,111,103,112,103,110,104,105,116,103,111,111,100,110,98,99,91,110,117,103,107,107,116,99,98,89,115,89,100,101,121,105,120,91,117,105,107,101,89,112,99,104,108,115,109,104,113,93,94,100,104,97,101,103,102,109,100,130,99,94,104,101,102,103,102,104,128,106,89,98,97,84,119,95,87,100,104,96,110,109,109,103,113,110,99,95,95,108,98,103,112,104,108,104,107,98,110,111,102,118,118,109,106,104,103,100,108,105,98,109,93,107,105,94,96,99,103,107,113,114,99,106,121,97,112,99,113,111,108,112,103,95,107,96,110,106,101,106,97,99,114,108,111,112,94,113,113,108,106,107,112,107,103,104,101,111,124,124,94,103,100,98,105,106,109,115,99,121,107,110,100,103,129,102,101,106,103,114,107,121,100,124,108,104,111,100,108,93,107,99,111,106,97,120,109,94,110,104,113,105,91,109,96,116,105,108,103,109,104,115,102,110,107,103,97,107,130,110,104,103,93,116,120,109,108,121,108,109,100,93,104,112,108,98,99,112,115,99,111,95,102,104,107,114,110,102,115,106,120,105,113,107,109,115,96,110,95,102,107,99,110,113,113,109,108,101,109,108,102,94,100,114,102,107,99,101,106,111,102,102,101,107,108,120,117,102,102,105,105,108,99,108,95,116,119,113,99,106,103,114,108,105,111,109,89,119,99,106,99,110,105,99,100,102,106,109,103,95,110,106,102,101,107,96,100,108,103,108,105,100,95,103,110,105,107,101,102,106,109,98,111,103,103,104,118,101,101,108,114,102,100,112,106,107,110,108,108,112,109,114,104,115,104,110,103,111,96,95,100,104,107,111,114,108,95,105,110,115,112,101,107,130,118,100,93,94,88,106,107,110,105,101,112,106,106,101,102,103,111,107,113,105,100,94,104,101,92,94,104,112,128,110,100,95,97,106,113,105,100,118,103,98,107,109,104,114,101,101,110,104,103,104,95,107,104,115,103,100,105,115,102,103,98,125,107,102,104,117,100,107,95,101,93,97,107,113,99,104,99,100,96,109,109,101,102,120,99,134,110,89,105,102,115,108,109,104,109,112,111,102,116,100,99,100,112,92,111,103,106,92,120,104,97,107,103,114,98,111,102,102,95,107,94,97,108,125,98,109,114,106,108,97,97,102,92,96,107,110,115,108,115,99,107,112,100,96,102,106,106,101,104,97,96,96,112,98,103,126,109,111,113,92,119,96,111,104,95,111,108,114,117,101,101,111,101,114,106,96,111,107,99,107,99,102,110,100,98,107,116,99,115,118,106,100,114,107,114,104,95,114,112,109,104,104,105,100,107,110,105,102,112,96,101,96,89,98,105,96,102,95,111,119,104,102,117,103,106,102,98,96,107,91,101,101,105,109,113,101,112,106,109,105,102,107,100,102,117,105,107,101,94,97,109,102,102,109,116,105,114,98,113,97,101,114,106,110,106,106,104,82,102,102,91,103,94,116,104,102,107,105,99,109,93,98,106,110,107,116,115,106,102,105,112,99,113,101,101,96,99,108,112,107,98,98,108,112,105,105,103,99,104,100,108,102,111,89,94,98,104,116,110,101,107,124,104,108,110,110,111,93,107,106,107,105,123,122,96,102,105,123,111,123,107,99,108,106,94,119,113,107,108,102,121,122,99,102,111,102,103,109,110,114,102,111,114,106,96,112,99,102,103,106,100,111,113,106,91,105,120,96,111,107,122,111,104,117,99,106,101,109,117,105,119,99,110,104,114,107,106,111,104,81,108,105,96,106,100,109,103,109,105,115,106,112,96,103,105,125,102,86,111,111,112,107,115,104,116,120,102,113,99,99,107,108,95,107,104,107,112,100,104,96,100,99,115,110,113,103,127,113,102,95,104,117,110,106,108,110,114,96,108,101,113,100,111,108,106,110,100,106,115,110,103,102,108,106,103,104,126,106,117,108,107,103,88,92,96,96,110,106,104,107,106,110,115,109,121,105,108,102,110,112,96,96,100,120,101,98,112,113,105,102,101,92,107,109,105,106,109,119,106,95,113,112,99,108,100,102,106,106,102,117,105,102,100,109,116,114,105,105,102,106,104,113,112,104,101,101,118,112,112,99,106,114,98,100,102,116,105,120,111,108,103,100,114,78,97,105,103,93,95,107,82,111,90,114,76,97,111,106,106,105,112,103,99,113,106,111,100,115,102,108,107,98,109,104,104,112,112,105,104,97,102,108,116,102,101,107,107,124,105,101,106,95,106,107,92,108,100,109,106,108,114,111,95,111,104,100,101,109,110,109,114,110,102,115,113,96,113,108,124,117,100,103,98,124,117,101,99,115,118,102,102,106,103,109,107,98,108,117,94,101,100,108,105,118,96,101,107,111,122,115,87,114,103,103,102,102,107,95,95,110,112,104,102,106,97,103,104,104,102,90,104,102,113,102,97,112,96,91,107,95,115,107,102,104,106,103,104,100,95,104,100,105,98,120,108,101,98,110,110,113,101,99,98,99,117,98,98,111,117,89,112,104,79,109,88,113,107,93,123,108,115,107,112,108,106,103,111,106,106,103,106,108,101,107,107,101,102,109,99,104,108,108,109,97,111,108,108,111,84,109,105,121,113,106,105,106,101,99,108,118,100,117,108,109,105,100,109,99,106,111,105,114,99,107,115,105,109,110,102,101,126,100,96,98,103,111,116,108,101,116,103,108,103,110,112,100,109,110,111,104,99,108,129,107,106,120,98,89,109,109,103,107,110,112,101,102,108,104,106,99,100,106,114,108,110,98,106,110,102,108,101,101,115,129,106,121,105,117,95,113,95,93,116,103,117,108,107,103,104,109,99,109,98,108,92,108,109,103,105,113,103,103,93,105,97,126,115,98,105,95,106,117,93,102,104,91,112,105,94,111,98,110,109,119,107,107,98,109,108,108,95,117,100,99,102,91,113,105,123,96,102,109,113,119,105,100,99,109,101,103,108,95,104,115,117,118,123,106,118,102,117,109,107,108,104,112,109,102,114,113,71,111,109,105,112,97,105,110,104,113,123,117,105,116,104,97,106,106,105,112,108,113,100,109,119,103,110,121,124,105,106,100,113,103,105,112,107,115,118,98,103,104,106,112,108,102,105,114,107,111,106,112,106,102,104,101,111,116,99,106,108,100,102,107,108,117,103,98,110,113,112,112,103,116,92,111,122,109,109,117,119,119,100,105,97,119,113,101,110,113,106,109,128,111,115,108,106,111,103,109,120,110,95,109,107,117,127,112,102,113,102,100,100,98,107,116,103,107,107,111,110,109,118,110,103,110,109,116,108,107,106,98,112,123,116,107,94,117,104,111,103,104,123,124,126,112,104,100,105,106,106,107,113,121,113,98,109,98,109,113,108,104,114,104,97,110,96,108,114,88,109,105,106,107,103,103,102,112,110,98,99,105,115,106,101,111,106,117,100,120,114,106,103,109,108,99,103,107,110,120,101,104,104,102,106,104,105,99,113,98,110,109,101,111,109,96,106,105,103,131,101,124,120,109,110,99,103,109,111,109,105,117,101,101,110,108,101,113,101,116,116,123,106,101,94,108,107,109,115,113,98,107,105,106,89,94,100,109,114,100,105,118,94,115,108,110,121,112,94,112,103,109,99,95,99,99,107,109,117,108,106,112,104,106,105,101,122,111,106,102,105,102,105,110,100,102,111,103,96,103,103,95,99,92,98,97,103,98,99,105,111,112,104,105,93,105,95,144,110,100,104,109,112,107,100,100,107,100,110,107,110,112,104,106,102,106,104,99,99,108,114,104,110,90,99,103,99,117,103,102,100,104,128,118,98,71,104,94,112,86,99,109,106,78,96,107,98,108,97,114,124,98,101,103,110,97,104,105,89,112,86,97,88, +495.67465,105,114,99,117,95,97,95,87,112,113,101,133,101,97,103,73,101,81,94,93,85,94,112,110,112,100,105,88,116,100,105,107,98,102,100,101,103,105,95,104,98,87,108,107,97,86,113,100,98,100,102,101,102,112,83,122,80,97,109,109,97,103,87,98,95,122,97,109,99,104,103,107,106,99,101,113,115,108,103,96,96,109,76,105,103,101,105,101,97,105,100,103,105,96,100,96,107,92,95,100,109,108,117,92,98,95,100,105,103,105,100,105,100,101,105,100,110,99,109,96,109,104,100,105,94,110,107,91,105,115,103,101,104,108,102,111,101,100,100,102,99,102,104,100,112,110,121,106,116,93,121,98,107,97,99,107,109,103,105,105,109,105,111,99,103,103,109,96,94,95,104,108,99,103,105,100,103,102,99,104,109,107,100,92,96,108,100,89,99,101,113,100,110,118,116,98,108,94,101,111,107,94,108,100,98,110,100,116,109,105,105,116,104,111,109,111,97,116,109,108,106,105,108,96,97,110,106,102,117,111,99,98,117,107,114,107,109,121,118,99,126,115,94,106,100,93,108,99,119,98,101,106,111,115,101,102,109,109,103,102,99,103,99,122,105,104,110,108,107,100,100,115,111,102,115,113,100,105,110,99,95,111,106,109,117,96,93,110,112,101,110,104,115,93,104,110,104,103,99,105,108,108,96,115,106,113,116,114,102,107,98,113,101,106,92,115,115,102,107,113,98,139,99,105,115,114,104,107,107,100,111,98,107,113,102,91,83,104,110,106,112,102,98,102,110,105,103,111,105,108,116,102,105,105,108,100,118,105,111,104,101,96,96,94,101,94,115,104,87,117,109,104,107,115,110,91,106,105,106,110,110,98,102,111,101,90,106,107,99,100,115,95,102,117,116,102,106,104,103,104,99,127,110,108,97,94,117,95,93,124,92,99,107,114,98,106,108,97,111,103,100,94,110,114,105,110,106,92,102,118,95,101,91,97,104,98,102,110,102,101,98,109,102,112,98,118,100,107,103,111,105,104,113,108,105,104,110,111,109,105,98,98,101,111,90,108,106,110,111,117,132,110,106,100,107,99,114,109,105,106,112,110,115,94,111,108,106,98,106,107,97,102,100,81,113,109,108,104,112,95,101,113,112,114,106,106,101,100,106,113,114,99,106,112,97,112,107,97,104,99,98,119,100,99,107,92,104,107,107,93,107,104,109,109,98,109,100,98,123,103,114,101,102,99,102,107,112,103,105,119,101,110,108,104,96,101,113,104,100,110,103,117,104,100,107,98,105,109,113,100,106,100,139,101,109,93,102,100,105,96,114,100,102,95,111,99,97,101,111,83,106,113,98,113,112,104,104,106,111,105,100,95,124,99,95,99,81,101,112,109,103,105,108,92,110,105,103,108,113,117,111,100,93,117,100,112,97,98,122,103,102,108,101,103,85,108,112,84,109,93,113,104,110,100,109,90,107,106,107,98,105,112,108,103,101,90,109,118,103,108,108,106,108,113,100,99,112,102,109,109,108,103,119,113,100,109,95,120,115,109,80,97,109,103,102,86,101,104,108,111,96,109,119,110,107,98,109,113,105,90,118,104,92,107,98,104,114,104,102,107,112,102,103,117,111,100,99,98,103,99,105,106,117,115,85,102,106,114,94,100,111,104,97,104,108,100,108,99,107,112,103,118,100,90,110,115,107,103,103,100,117,101,102,104,99,104,110,114,112,109,105,110,100,107,97,95,104,107,98,97,115,107,111,101,114,87,109,105,100,97,105,94,114,108,113,100,118,123,107,113,104,117,102,108,108,102,103,103,102,99,114,103,101,103,122,109,100,117,92,107,71,102,94,104,124,99,96,109,126,96,98,93,98,110,107,104,94,87,112,102,104,101,105,103,93,109,109,100,104,111,106,112,113,107,102,104,97,104,100,96,123,103,100,91,106,101,105,113,100,99,104,112,104,100,104,80,96,108,111,101,120,107,114,80,93,109,98,101,104,104,95,96,102,106,98,90,127,106,104,104,106,113,97,111,96,107,108,105,109,96,99,109,101,112,114,99,100,98,95,97,110,121,95,94,94,94,109,99,113,107,106,101,107,113,100,109,104,96,101,108,104,97,121,105,106,118,95,103,104,108,98,100,106,102,91,102,109,84,117,118,94,103,114,112,112,100,107,100,106,114,113,118,113,102,94,99,94,99,101,103,101,105,107,104,100,106,100,106,119,99,95,102,107,107,104,96,98,130,99,106,97,116,112,106,107,104,103,94,114,116,112,99,111,106,108,115,121,110,102,108,104,112,73,125,117,100,99,106,83,111,109,111,111,96,110,109,103,114,114,95,100,120,92,102,101,97,106,107,106,112,112,102,106,98,110,117,105,108,101,96,104,110,103,109,100,107,109,113,106,112,106,102,94,113,104,110,106,100,103,110,95,112,105,110,109,103,105,123,102,93,101,100,99,100,103,113,117,105,109,106,115,92,115,87,106,98,113,103,108,106,97,105,107,94,115,103,96,94,109,102,114,100,98,101,103,102,109,108,93,103,109,106,105,99,105,99,99,102,105,106,107,116,102,96,100,101,105,106,98,107,106,91,101,103,111,103,111,101,109,98,112,104,117,95,116,103,121,117,108,112,100,90,113,79,113,111,113,101,114,102,103,108,111,108,109,113,103,117,90,104,98,123,82,101,103,107,104,102,104,112,103,97,101,85,109,97,112,96,98,117,106,111,110,120,110,116,95,106,101,120,102,113,102,106,92,99,104,117,99,102,112,115,95,109,102,106,99,108,106,110,116,96,100,100,101,108,99,109,118,106,101,109,110,110,107,108,109,106,90,98,99,108,107,117,103,100,108,111,101,103,102,125,89,105,94,115,105,102,125,100,99,106,110,114,113,108,109,102,106,103,98,113,119,110,92,104,103,113,111,105,107,114,95,99,95,110,105,106,99,107,110,109,100,105,107,115,104,112,111,99,106,100,104,89,116,117,107,107,93,109,109,106,93,116,106,97,110,106,96,105,104,103,100,106,115,87,105,103,103,106,106,96,119,96,104,95,106,102,100,112,99,102,98,102,97,100,107,107,117,112,111,109,115,109,103,92,96,101,100,115,92,99,100,110,105,104,109,110,105,107,110,105,96,98,82,105,91,117,105,120,106,105,101,110,111,107,105,91,111,105,83,104,98,113,101,109,103,100,102,99,95,100,105,98,106,103,103,102,116,101,106,78,98,99,111,99,109,101,110,104,118,109,102,106,106,98,97,113,103,126,99,87,101,105,102,111,91,97,108,103,104,108,100,110,107,97,104,107,84,98,116,116,102,98,125,101,102,89,108,96,102,104,100,104,108,100,109,98,112,105,96,101,112,119,99,107,99,101,101,99,111,102,93,107,112,106,106,99,113,109,101,105,113,117,110,106,104,101,105,101,110,105,107,109,112,105,104,113,125,112,115,113,109,103,104,100,108,104,100,111,101,120,103,95,114,92,106,108,120,96,106,107,95,109,107,95,109,114,105,99,111,101,110,117,101,104,104,102,107,114,99,101,107,113,102,109,107,107,106,110,108,94,98,122,102,99,103,103,118,93,111,77,93,113,105,103,107,102,111,102,104,106,101,92,102,104,105,102,103,92,87,105,113,107,100,98,100,96,110,112,99,92,112,106,100,105,122,100,116,101,102,91,106,101,103,94,105,113,93,116,109,105,96,98,103,102,89,110,108,90,108,97,102,91,99,88,117,105,107,128,105,101,91,100,105,98,98,113,109,124,99,106,110,102,104,99,100,92,117,106,92,118,110,106,117,111,108,106,94,99,104,108,105,96,112,95,89,96,90,109,94,109,99,101,99,105,83,102,105,92,65,105,97,107,101,107,98,108,105,98,108,105,100,108,109,75,101,100,107,102,91,102,109,98,122,111,104,95,115,105,120,100,93,96,104,112,109,112,119,98,105,113,115,111,105,105,100,104,106,106,102,105,108,106,105,113,110,98,101,110,107,91,102,100,114,102,103,110,98,99,92,107,113,106,121,108,118,75,112,102,113,100,95,93,110,109,114,105,109,98,105,109,97,101,104,104,97,105,103,115,114,99,102,101,96,109,116,111,103,104,112,108,111,110,108,102,99,106,106,96,113,101,99,101,106,120,106,104,101,104,103,91,89,98,101,106,110,107,109,101,128,108,125,102,114,104,109,108,96,116,102,102,103,100,97,103,107,106,107,105,115,108,110,109,109,109,110,103,107,97,102,100,101,103,109,96,100,115,104,102,99,103,105,108,104,102,83,96,94,114,81,103,105,104,104,104,113,109,96,99,102,103,110,100,116,110,105,92,115,105,107,97,111,104,110,110,108,99,98,100,101,96,118,96,108,110,104,105,108,115,105,109,103,94,93,105,108,113,101,98,94,96,100,111,92,102,104,97,98,107,110,106,105,112,120,121,105,109,108,99,103,127,111,117,116,91,110,104,103,107,99,103,95,108,118,102,108,104,115,102,112,107,103,107,104,100,102,104,111,98,99,109,101,98,100,105,106,122,107,105,105,99,100,103,100,102,105,104,107,80,95,102,83,107,105,105,97,96,109,78,101,101,100,107,103,108,115,99,115,91,100,109,92,112,102,110,96,105,110,100,101,105,104,113,104,108,107,117,111,107,111,102,95,111,106,112,108,109,105,100,101,105,101,117,103,104,107,100,96,105,109,122,103,100,103,109,104,102,113,92,100,109,96,103,108,104,101,103,98,110,111,116,110,123,118,111,90,112,112,112,113,109,114,109,94,103,102,102,98,96,102,98,103,104,108,104,118,105,93,115,83,105,92,97,106,95,68,114,98,98,108,110,105,91,91,104,116,95,113,99,114,106,102,100,114,109,92,106,114,94,106,112,109,116,107,113,115,99,113,100, +495.81525,103,107,105,108,95,96,102,92,87,87,97,98,119,108,101,94,114,98,110,98,96,104,89,112,106,113,93,91,99,108,95,100,91,99,102,81,122,90,104,94,92,102,102,103,104,107,109,110,77,100,122,97,108,101,103,107,113,102,104,89,104,107,110,104,111,108,100,97,91,108,114,116,104,111,105,110,101,98,95,104,105,82,97,100,107,104,99,102,104,108,91,95,97,103,102,113,107,103,106,91,91,101,111,102,107,100,104,100,91,112,101,98,93,109,114,80,90,109,94,97,116,108,102,98,85,112,105,99,109,115,88,104,101,100,105,94,100,104,103,100,108,106,106,99,103,94,120,106,99,97,94,107,99,105,106,111,108,109,108,95,99,103,112,101,117,102,98,103,100,93,91,102,100,114,110,106,110,105,112,97,94,99,113,111,123,109,95,104,111,106,96,89,117,96,96,113,103,104,95,110,107,126,109,94,106,106,97,112,106,106,101,108,102,101,96,98,104,107,123,101,114,105,109,102,94,105,115,102,98,110,111,104,93,101,101,108,102,94,106,100,101,104,114,103,100,98,107,118,103,103,90,98,102,102,97,108,97,104,113,109,106,100,102,100,106,105,99,105,108,110,107,96,105,100,102,95,101,107,106,109,97,103,103,107,105,98,101,102,95,102,85,124,96,104,108,113,120,104,99,97,107,97,116,112,103,111,88,102,94,119,109,103,100,117,105,105,121,107,94,104,111,105,108,110,104,102,108,102,99,98,102,105,101,110,102,108,106,109,113,101,90,92,98,91,114,102,100,101,115,108,108,107,90,109,108,106,111,109,101,106,101,105,98,106,100,104,106,105,103,96,107,107,106,104,109,113,107,102,95,96,109,104,104,101,95,106,96,99,108,105,101,99,88,110,103,114,99,102,114,109,101,95,106,95,105,95,98,112,106,105,107,102,102,101,112,91,95,104,105,102,114,102,104,112,94,96,107,97,107,110,93,103,92,100,108,105,99,95,103,104,111,86,109,108,92,105,109,107,89,109,104,114,101,100,101,109,94,118,92,115,117,109,109,102,107,124,110,93,97,96,95,108,112,113,105,102,103,115,105,109,108,104,111,107,114,112,114,105,106,103,103,110,115,98,95,104,102,94,102,97,102,107,117,106,99,105,101,101,97,105,108,104,106,103,79,101,107,103,100,115,104,116,103,114,112,107,114,116,100,104,107,101,108,96,85,113,107,107,104,107,104,101,107,109,110,105,109,86,109,109,100,99,108,121,109,112,109,105,105,114,109,91,102,104,99,107,108,96,101,102,98,104,82,96,106,105,109,105,120,101,110,101,113,94,106,101,107,85,101,104,117,101,113,128,107,112,120,102,113,109,104,113,112,100,96,90,102,104,102,97,121,99,106,103,100,93,117,105,119,98,107,113,112,98,93,98,98,95,105,107,115,113,101,106,98,105,107,103,94,109,110,92,100,108,104,107,95,97,110,109,99,106,109,111,115,101,113,103,103,105,115,96,124,114,100,100,116,104,99,123,104,100,104,107,100,110,98,109,104,104,108,102,107,99,101,108,109,98,100,99,114,97,117,102,105,108,112,95,101,94,109,99,108,102,108,104,115,95,112,111,104,115,107,96,105,98,118,96,101,99,110,93,91,110,105,108,112,111,109,106,99,124,114,94,93,102,98,91,110,97,125,115,95,103,100,105,115,96,103,115,112,94,100,101,109,105,111,111,101,109,106,108,108,110,105,115,89,106,104,102,118,101,117,105,105,107,94,105,109,92,106,113,137,95,106,101,122,112,101,125,103,100,117,103,98,98,104,112,105,129,105,80,106,99,110,99,108,108,115,110,104,87,106,103,107,110,110,108,98,106,109,114,103,99,125,107,108,105,108,103,113,110,104,118,100,122,108,104,105,101,108,110,106,107,106,97,100,102,101,94,108,99,105,109,93,100,108,103,98,103,110,113,103,108,113,105,91,99,108,94,106,98,99,111,83,109,94,101,109,108,103,106,107,109,95,120,118,107,105,95,112,113,91,100,100,108,100,112,101,102,101,116,104,98,96,96,102,90,98,94,112,121,109,106,113,98,99,105,96,111,108,105,96,103,103,103,102,118,100,111,103,102,110,108,110,108,96,99,102,113,108,106,105,106,121,104,105,100,128,106,102,100,103,111,110,107,99,120,105,108,108,110,108,103,95,93,100,100,108,104,102,104,105,102,105,101,98,97,98,113,104,98,105,100,103,109,107,106,93,100,111,108,109,108,97,105,90,111,100,110,105,105,113,100,96,107,102,89,105,100,98,117,110,100,79,103,95,105,101,90,106,117,90,92,100,97,105,118,103,105,103,102,99,116,107,97,101,107,108,110,97,121,97,111,105,106,94,107,104,87,118,98,101,117,106,89,99,90,103,107,105,100,100,111,75,92,110,109,112,98,88,111,97,101,107,92,102,118,129,91,100,85,97,103,74,93,108,89,116,98,103,116,96,101,100,100,97,96,121,113,106,98,107,106,102,114,89,112,102,84,88,102,88,116,111,96,106,105,103,102,107,107,96,103,96,99,109,113,114,103,105,107,108,95,113,112,105,99,109,102,104,119,97,105,94,102,108,105,105,102,109,97,112,91,108,105,96,110,98,75,106,87,107,103,104,106,76,105,100,100,101,105,112,105,100,112,103,107,96,101,91,102,100,104,106,114,101,96,105,106,102,102,98,115,104,100,95,94,94,96,106,94,109,118,109,113,113,109,98,111,96,96,98,109,104,91,83,107,107,96,104,115,86,97,98,102,105,105,94,111,94,103,103,115,102,112,107,89,95,105,99,87,119,117,93,112,104,110,119,103,104,109,109,106,105,95,97,103,104,110,100,100,101,112,106,109,110,110,87,94,103,98,115,115,109,95,106,98,104,98,94,94,116,105,105,98,97,105,107,110,102,121,105,105,103,98,100,99,117,101,101,98,103,110,106,105,99,101,108,113,102,99,102,97,96,117,108,83,102,94,102,104,116,103,100,113,101,100,115,103,117,94,101,84,105,99,91,103,106,109,98,115,97,98,118,102,98,104,100,96,101,105,107,105,101,92,95,109,106,100,103,118,109,109,108,116,109,110,102,95,101,109,106,87,119,111,100,104,106,94,113,123,111,104,100,108,90,90,100,108,96,104,104,96,100,117,99,103,121,104,111,113,92,97,104,95,111,106,106,99,93,106,104,95,100,102,107,107,104,100,102,106,94,102,105,99,109,94,92,113,100,97,104,113,100,115,100,99,100,100,99,95,106,108,101,104,111,102,105,107,109,88,102,99,103,106,97,120,105,98,96,108,113,108,106,108,119,91,98,123,90,108,108,103,97,105,96,94,104,100,101,112,123,99,108,111,102,97,103,104,106,99,105,118,107,118,98,107,113,109,102,104,111,109,108,103,99,101,102,100,110,105,100,95,102,107,116,103,113,104,108,100,97,110,107,91,110,93,110,113,108,102,109,91,115,117,99,93,103,105,103,99,105,95,107,102,105,110,107,98,111,101,111,117,108,99,95,110,92,96,100,104,104,100,101,106,102,96,114,99,113,105,104,110,110,98,105,107,104,101,101,94,99,110,106,98,95,91,106,95,76,104,97,111,105,106,115,112,103,110,109,111,102,112,103,104,108,102,106,99,103,106,101,115,95,106,102,102,103,97,111,103,98,101,102,104,113,108,104,98,103,113,112,104,109,111,103,115,112,109,104,110,108,99,113,108,99,101,101,113,108,104,103,106,102,101,103,115,114,104,87,108,109,84,109,98,104,103,99,103,98,109,90,109,105,98,111,113,100,121,99,102,106,103,112,117,97,99,97,106,109,106,102,93,100,104,106,107,110,95,102,106,99,100,100,95,110,107,124,143,104,106,106,96,99,94,107,107,92,99,94,106,105,108,116,116,108,99,107,102,104,105,107,113,117,103,98,102,107,105,106,73,94,105,104,104,110,99,102,91,108,103,109,100,107,112,115,107,98,109,108,118,101,102,113,93,95,111,98,113,115,105,102,102,107,106,113,99,103,106,104,108,101,104,100,75,107,102,118,104,100,129,102,94,117,101,107,109,99,96,99,117,105,99,101,138,104,99,94,110,107,100,108,94,98,107,101,103,99,106,104,83,96,100,109,116,98,106,93,105,102,103,93,100,110,100,111,107,93,120,102,104,103,99,109,114,102,111,113,88,97,109,91,115,105,90,103,102,113,98,120,103,119,115,96,101,75,121,105,108,99,107,104,109,89,106,99,102,111,94,101,99,104,99,109,94,106,104,90,100,82,107,92,105,103,103,104,96,106,98,104,103,96,102,90,111,98,110,123,109,112,108,97,103,103,108,101,94,103,109,105,101,98,105,105,97,106,101,102,122,95,99,107,112,133,100,101,107,117,106,94,90,107,105,114,98,113,121,100,110,115,109,95,104,93,86,91,98,78,101,113,108,86,100,99,99,106,100,111,104,97,97,113,109,113,103,98,107,100,89,98,96,90,113,111,105,103,99,98,79,96,99,108,95,109,92,100,86,105,100,108,104,97,107,94,118,103,95,109,103,103,113,102,110,91,111,103,97,100,103,90,92,109,107,120,89,107,107,93,92,103,110,101,100,94,105,109,93,105,100,100,112,111,83,105,102,112,73,115,95,130,100,88,103,103,108,78,98,96,101,98,111,108,108,109,103,96,109,111,97,82,95,101,101,99,100,100,113,105,101,103,108,99,69,108,101,103,104,99,123,105,98,107,99,116,99,95,98,80,95,91,103,97,103,104,101,109,96,100,67,102,112,100,97,105,103,104,98,101,101,96,92,93,113,95,115,94,104,106,98,103,107,101,121,101,110,96,97,112,100,84,113,106,115,88,98,110,116,100,98,115,90,96,95,107,104,94,80,122,102, +495.95584,108,97,92,108,92,73,95,100,109,99,108,113,96,121,100,92,99,105,106,85,91,99,89,101,105,102,103,102,94,102,87,95,115,93,105,88,107,92,100,113,118,115,101,96,109,103,104,109,113,95,103,81,101,94,95,97,102,96,88,92,92,112,103,110,99,109,84,104,113,105,104,96,98,112,92,105,97,99,104,103,106,104,98,108,96,103,116,105,100,104,102,105,99,98,113,113,100,110,116,95,108,102,97,109,105,115,83,92,100,104,106,108,94,108,111,101,98,108,108,110,105,99,95,113,95,102,105,96,92,100,100,116,98,113,97,100,100,109,98,98,95,106,99,102,94,114,75,106,94,100,100,97,96,91,100,92,100,100,111,104,97,104,104,101,96,96,101,98,102,100,106,95,108,96,96,89,100,89,100,106,105,112,94,102,109,98,75,103,105,109,101,106,93,98,91,109,106,107,104,99,104,113,98,113,110,114,106,101,108,109,88,107,75,108,100,104,104,107,111,106,118,99,102,82,100,107,117,102,113,104,112,104,111,113,99,108,109,100,106,103,101,116,115,109,95,92,82,99,104,95,121,138,92,95,104,99,103,109,96,109,100,104,100,110,93,106,97,114,120,91,106,97,105,102,96,103,102,120,102,103,101,104,109,92,104,101,99,106,94,100,99,117,104,109,113,107,108,107,100,89,94,98,107,99,91,104,119,102,106,116,101,103,96,102,102,96,100,105,115,96,103,101,99,105,100,102,103,103,109,97,103,105,109,113,102,106,108,98,109,121,105,94,114,103,106,105,72,108,112,109,105,109,93,108,103,113,105,113,103,109,111,102,97,98,101,94,104,111,104,113,107,106,100,108,101,91,99,96,105,106,102,102,90,119,104,102,106,101,91,90,99,93,102,104,90,102,97,101,99,106,96,105,98,99,108,101,107,103,109,101,102,100,104,105,106,109,106,101,105,104,103,114,102,106,104,102,97,106,110,93,101,100,95,105,103,99,95,111,93,100,109,103,113,90,77,95,98,105,113,101,97,91,111,117,112,106,114,93,116,96,79,101,112,96,103,109,101,103,109,113,90,125,106,74,112,96,103,112,96,101,99,105,100,105,103,107,98,106,91,104,108,106,110,112,111,100,105,105,101,109,101,96,110,97,91,99,92,98,105,99,114,112,103,102,101,106,105,92,109,92,98,104,98,120,111,106,101,92,112,108,97,106,105,104,83,92,110,119,100,101,78,112,113,120,114,97,114,111,99,101,105,103,99,102,98,101,100,102,111,102,101,104,111,97,101,91,121,105,107,99,98,109,92,96,105,104,101,110,116,106,94,106,102,96,103,108,100,100,109,111,105,112,105,105,113,95,101,105,109,100,114,121,103,95,99,96,92,100,119,107,100,92,99,106,102,95,108,98,92,105,116,98,112,104,90,91,100,115,109,100,107,90,112,93,100,110,98,98,105,108,104,93,98,111,95,102,108,105,108,111,99,110,111,116,99,111,104,117,120,105,110,95,95,100,91,88,103,99,88,96,107,108,109,100,99,116,104,102,124,93,106,112,108,101,101,94,107,85,115,105,107,109,96,107,112,102,119,103,100,98,113,98,99,104,102,95,105,106,106,105,93,107,104,96,101,97,100,109,96,109,100,97,117,120,104,98,98,117,109,95,105,105,104,101,101,105,109,96,116,103,115,109,114,79,102,104,109,112,104,90,104,116,106,94,116,130,105,110,102,103,107,106,101,104,100,107,102,103,110,103,116,73,88,93,101,109,104,91,110,81,100,107,106,106,97,118,121,104,101,117,110,104,101,102,95,106,107,107,95,101,87,107,96,100,110,103,105,124,102,107,111,101,106,98,118,99,99,117,114,103,118,96,105,99,104,106,107,97,103,113,98,89,109,96,104,111,111,105,110,112,106,87,117,104,106,102,108,75,102,105,109,108,118,105,93,113,105,103,106,104,111,94,98,114,102,118,98,105,104,100,110,108,97,101,112,100,114,108,106,110,100,99,109,99,99,105,104,107,110,98,106,120,107,91,111,95,109,89,104,89,100,76,100,97,101,92,101,98,95,108,102,108,109,106,111,106,116,108,108,113,99,120,104,108,94,103,98,95,105,98,94,103,101,105,94,98,93,105,97,102,117,110,109,106,105,98,109,91,96,106,114,96,109,91,110,103,105,91,101,110,120,114,112,95,91,101,122,91,100,103,104,112,104,103,102,110,106,94,104,108,100,107,121,91,102,110,101,98,101,98,101,95,110,106,100,98,104,107,98,99,107,101,93,117,113,105,112,97,99,107,95,70,105,101,104,102,113,103,116,108,105,100,97,71,99,95,101,94,97,109,99,102,110,94,124,115,99,101,103,105,118,109,101,99,105,96,109,106,109,102,89,102,112,104,99,105,95,101,109,94,99,102,102,111,114,98,107,113,100,94,108,102,116,99,103,99,113,100,102,99,104,91,109,106,101,104,97,96,109,117,102,105,96,87,102,110,89,93,106,99,104,107,93,98,120,109,82,108,108,98,104,101,105,99,112,98,105,99,91,105,117,95,101,104,97,97,105,107,100,102,104,103,110,98,113,103,101,99,105,96,98,91,95,116,108,99,108,112,101,97,110,113,116,104,107,93,113,104,110,110,97,93,99,103,98,94,94,100,103,98,104,113,109,110,97,106,112,109,112,113,95,105,108,112,109,84,99,113,106,110,105,110,112,106,89,104,98,91,106,108,106,108,118,96,110,106,111,109,105,109,105,105,98,95,112,108,102,109,104,102,102,112,100,97,110,99,96,110,114,111,100,112,109,113,108,96,116,101,115,102,99,101,114,76,113,96,105,110,102,102,99,102,111,104,115,98,102,109,96,105,87,87,100,115,109,106,103,88,94,97,105,102,99,117,98,88,104,94,103,116,98,102,113,103,105,98,100,113,112,112,104,108,95,111,99,104,100,99,104,101,104,116,95,111,96,102,102,111,105,96,103,109,94,100,110,121,97,100,115,104,102,106,104,102,95,100,83,102,102,94,102,73,98,109,120,103,104,99,108,95,94,106,110,101,96,99,101,88,109,107,112,91,94,102,99,103,101,104,104,95,98,108,101,105,96,101,117,107,78,105,90,123,101,91,104,95,100,99,104,109,100,112,102,91,107,107,92,98,120,100,92,92,100,94,101,100,97,104,104,101,100,117,105,132,97,104,99,95,102,93,111,102,112,97,102,93,104,110,103,107,111,108,90,100,112,92,101,96,115,95,119,108,99,121,118,113,100,104,100,95,104,103,96,100,99,90,100,93,102,97,98,94,94,96,97,108,98,86,89,106,122,104,98,105,129,100,113,95,75,102,95,113,109,98,98,114,105,98,110,108,105,105,108,113,108,78,107,95,92,112,112,95,107,105,102,103,95,97,105,105,116,111,94,113,110,107,107,103,103,104,94,101,104,86,96,97,106,104,105,107,97,98,109,104,107,109,103,98,109,97,100,103,103,99,95,97,87,106,99,102,99,92,100,112,104,97,93,116,101,92,116,112,107,98,93,98,98,114,109,99,99,100,116,105,103,108,112,96,103,102,106,101,93,97,95,108,104,105,100,77,116,103,103,101,107,113,105,94,121,110,98,103,108,105,101,102,107,98,96,113,102,105,105,105,91,107,113,105,107,107,96,109,94,106,98,100,101,99,93,109,103,99,113,104,97,94,103,96,111,92,105,101,109,106,100,113,90,90,100,100,103,96,95,103,96,109,97,112,108,97,107,100,107,103,103,103,95,116,100,92,103,98,99,106,117,96,99,97,105,105,101,104,94,102,98,97,117,103,98,104,98,98,108,72,115,103,104,94,97,112,87,112,103,100,103,101,99,99,100,116,105,96,107,97,108,111,103,98,101,94,99,81,101,103,101,93,104,103,105,103,107,110,104,103,99,90,85,103,104,100,107,107,95,86,106,68,97,92,109,105,100,101,99,106,96,126,110,105,99,91,110,107,98,102,104,105,110,112,101,99,112,99,87,101,104,91,113,92,98,111,112,111,108,106,105,102,107,109,107,114,104,105,89,106,103,90,104,88,96,98,108,92,99,104,95,98,100,97,96,89,107,108,110,107,110,101,96,96,101,103,98,106,105,98,95,105,104,101,95,94,113,101,92,100,102,107,103,75,120,102,109,107,99,98,95,94,95,112,101,100,90,96,113,102,111,109,104,117,98,99,110,105,107,98,103,104,101,121,104,109,120,98,102,109,103,115,98,112,104,100,97,98,108,92,96,102,102,98,99,109,119,101,108,105,94,101,102,90,94,95,95,99,104,95,102,106,104,115,97,107,106,115,106,105,99,103,96,102,93,109,108,100,104,110,100,99,103,96,94,104,100,109,112,110,110,118,114,104,103,79,92,101,101,108,104,104,92,108,101,98,98,94,99,97,90,110,103,91,105,82,103,99,96,100,92,86,92,89,106,96,108,94,96,97,99,100,98,105,96,100,92,105,108,99,107,95,83,91,108,94,92,97,101,116,94,98,109,102,101,99,112,100,96,105,102,96,98,100,108,103,101,103,98,104,103,87,100,102,120,112,103,109,103,105,104,113,93,106,98,105,105,101,99,92,97,119,94,103,113,104,90,100,98,99,90,118,97,108,107,99,111,100,95,112,103,96,109,101,101,109,112,103,108,98,107,96,110,82,116,94,100,105,105,94,103,94,90,102,97,104,94,111,108,102,96,104,106,105,109,98,94,104,98,97,111,102,95,108,105,126,112,99,100,78,104,105,98,100,91,102,91,113,99,100,98,84,105,94,94,98,110,91,100,92,111,111,81,116,84,102,107,93,83,95,99,99,103,87,95,98,102,101,93,95,95,102,84,100,105,88,99,90,98,99,96,93,98,103,103,82,103,115,92,112,100,93,94,100,93,101, +496.09647,94,100,97,128,104,105,87,102,102,117,94,92,112,101,106,97,105,115,116,117,100,89,116,94,105,99,100,98,103,102,105,104,107,96,117,100,103,109,117,99,104,90,100,95,105,96,106,106,114,99,101,102,101,122,101,108,101,91,104,113,101,108,104,104,106,99,94,113,93,103,92,116,105,119,92,120,100,117,120,114,111,107,103,111,98,107,95,97,106,103,114,101,89,105,103,98,102,100,109,106,106,101,111,101,98,101,114,106,102,100,113,103,95,104,98,95,99,102,111,100,108,107,106,110,107,108,104,134,114,78,101,100,114,108,107,104,99,96,102,117,118,94,94,105,103,102,125,89,99,96,113,96,109,99,114,118,108,96,103,102,106,100,103,100,104,100,76,109,117,101,110,102,106,101,98,107,117,103,104,107,98,108,71,110,105,99,114,94,116,99,101,108,111,94,104,100,104,109,99,110,92,111,100,96,105,110,95,106,95,115,100,119,106,100,101,98,107,109,105,108,107,115,101,106,94,101,101,104,113,99,94,107,99,99,111,94,107,106,109,91,112,96,106,105,108,96,107,100,108,107,109,112,115,112,107,96,132,122,106,105,88,100,101,103,98,117,107,117,102,100,109,107,99,98,115,102,104,105,103,106,101,106,103,92,108,90,117,104,116,108,109,107,104,91,98,108,107,100,109,106,100,104,101,100,103,102,116,110,102,106,114,106,108,110,99,110,100,97,95,118,100,106,117,112,107,109,103,92,108,95,106,101,105,92,108,104,111,101,115,101,98,112,112,103,111,104,103,107,107,104,114,103,105,108,107,127,110,102,90,108,93,110,112,100,97,122,103,108,108,97,122,103,105,108,106,106,94,108,108,103,103,113,101,84,111,108,98,109,98,105,109,108,104,105,111,113,109,129,102,98,104,97,96,91,106,105,110,104,112,100,108,105,100,107,109,101,110,95,101,100,105,119,99,108,125,105,114,93,92,105,100,101,106,102,95,93,82,103,80,94,115,98,104,107,90,99,107,99,104,107,100,95,96,104,109,100,96,98,107,95,103,101,99,112,111,105,98,96,117,96,127,105,108,99,111,108,96,114,112,113,107,105,104,96,106,107,110,103,102,112,118,104,100,106,101,112,96,115,99,116,100,100,113,94,111,107,91,103,119,102,100,115,106,119,111,97,95,84,108,106,106,126,111,109,105,108,111,93,109,101,111,106,102,109,94,119,103,105,111,108,109,112,101,107,111,118,117,113,112,111,104,88,114,107,101,104,103,108,85,112,102,113,100,120,103,109,109,100,102,113,99,113,104,103,98,112,101,107,107,106,111,104,108,100,105,104,111,112,109,101,100,99,105,112,111,112,87,102,109,117,107,106,105,104,104,103,107,120,105,104,102,117,108,114,109,99,92,107,113,101,105,112,132,110,99,113,99,105,108,106,103,96,113,98,102,100,116,87,107,112,101,111,98,104,105,106,110,106,92,116,108,98,101,107,113,113,123,85,108,102,116,85,111,102,88,116,116,81,103,92,104,105,111,101,104,104,101,125,112,103,107,114,100,96,106,94,111,112,100,106,115,99,106,111,112,104,110,108,102,105,96,107,108,105,103,111,112,114,101,100,111,100,94,106,103,106,101,110,109,109,106,112,101,119,109,97,117,101,122,115,107,111,105,99,98,106,107,107,123,98,101,97,106,113,106,104,105,109,103,109,106,100,100,98,98,89,107,111,117,112,91,109,109,108,105,110,100,101,112,98,109,103,112,101,97,117,114,109,117,105,101,109,116,108,107,118,98,112,116,111,120,110,120,116,110,95,108,108,115,113,107,110,104,103,107,110,103,100,115,98,119,104,104,104,103,104,119,114,118,115,108,117,112,103,115,104,113,105,97,104,101,118,97,96,99,115,117,112,101,114,105,107,110,113,99,99,111,101,105,106,107,106,112,95,99,112,108,114,106,108,114,102,110,96,109,101,97,110,113,114,108,109,95,108,104,100,89,122,107,104,111,94,107,114,98,97,92,112,112,112,133,108,102,104,102,108,105,108,107,110,111,93,107,112,117,102,73,96,112,110,95,108,105,103,107,101,102,125,102,117,102,102,108,104,118,105,100,104,102,104,107,113,111,109,110,105,102,104,103,103,110,95,106,113,67,118,102,107,120,112,106,104,110,91,106,101,102,100,96,101,94,106,123,100,95,90,103,111,108,117,104,100,112,115,114,104,106,100,100,121,98,70,109,101,96,95,103,103,105,94,110,104,111,107,96,103,107,112,90,99,105,115,115,106,101,99,106,100,96,99,98,109,96,113,107,101,109,105,100,98,112,110,95,105,109,108,107,98,117,108,106,106,105,112,99,95,110,105,106,101,103,107,113,128,100,104,120,114,107,104,91,112,98,101,111,123,122,107,98,102,101,113,97,108,106,98,99,103,112,68,95,123,90,109,92,100,113,107,102,102,119,106,106,89,113,109,107,95,108,125,80,117,107,109,104,100,91,91,97,105,99,91,117,100,94,103,94,100,107,84,99,115,105,103,99,105,90,93,101,99,105,99,107,100,101,101,100,112,103,99,108,103,105,103,103,72,95,108,108,93,99,91,103,99,103,112,113,104,104,100,105,109,105,108,107,103,106,98,100,105,104,91,114,94,102,129,102,108,99,98,104,106,112,106,117,79,95,109,113,95,84,105,95,103,106,111,106,96,117,106,107,104,113,127,110,101,121,102,103,97,113,104,104,103,95,111,117,112,111,110,107,113,124,107,106,108,102,104,97,102,107,106,95,102,113,100,109,106,115,113,111,113,114,114,107,106,96,103,98,111,104,107,96,87,102,96,106,116,103,106,104,112,100,106,101,99,99,117,83,112,110,106,92,109,113,105,96,103,119,103,104,115,112,117,109,113,98,104,104,102,99,102,108,108,101,110,95,109,101,111,106,109,102,100,110,97,106,100,107,103,98,110,97,118,102,105,105,120,97,105,110,106,71,98,108,124,95,100,103,103,114,104,105,113,104,96,108,112,102,96,105,100,106,94,100,100,102,98,84,112,112,106,107,100,105,89,111,111,86,109,102,123,109,103,108,104,98,102,105,108,107,110,96,114,112,107,117,105,92,110,106,106,100,104,111,97,106,78,105,117,102,98,100,93,106,102,110,102,97,105,93,96,102,103,111,107,117,101,111,104,98,120,83,102,111,91,113,98,115,102,111,110,96,100,107,99,100,113,121,100,78,113,98,104,110,102,105,102,102,112,94,95,112,108,103,107,94,109,106,102,106,101,111,108,94,100,96,68,109,110,102,94,94,111,98,96,109,119,106,114,113,102,99,119,109,101,100,99,121,102,108,106,104,78,106,112,118,92,105,95,107,96,110,95,113,100,106,109,104,93,105,111,95,103,122,107,96,108,110,101,104,83,104,106,102,121,99,101,99,96,99,100,89,98,67,100,106,120,102,101,104,106,106,97,101,118,89,108,85,89,101,98,106,110,96,113,103,96,105,103,98,109,106,105,106,113,104,96,103,95,108,115,95,110,109,110,106,106,105,101,97,104,108,104,104,101,105,108,99,107,108,99,111,113,105,98,102,112,105,104,97,105,100,107,106,107,111,117,108,104,101,108,114,101,102,95,123,125,107,105,101,108,103,102,97,101,103,106,98,100,87,111,103,104,97,97,99,96,108,110,99,104,104,99,106,97,106,103,106,110,97,102,107,99,104,112,110,101,94,105,109,103,101,96,112,99,111,104,97,103,93,106,101,102,87,101,109,109,101,102,111,104,117,100,97,89,115,90,94,111,113,116,110,111,113,94,99,107,100,99,108,111,110,105,109,105,99,96,100,119,103,88,106,103,107,104,89,104,102,100,106,106,109,112,105,104,96,108,96,105,95,107,104,100,108,101,108,100,109,103,96,97,86,108,86,96,109,97,107,102,97,97,104,106,96,113,107,98,102,106,99,116,99,105,107,114,113,98,101,106,117,96,103,115,100,101,105,98,101,106,110,113,99,111,113,92,111,92,106,124,93,99,98,107,111,114,100,101,103,96,98,115,98,96,96,114,103,78,110,100,102,101,132,112,102,98,93,102,102,106,116,114,107,108,107,102,106,108,120,115,113,100,113,107,105,114,101,112,103,109,104,90,106,109,107,105,101,103,99,104,108,99,103,99,104,105,106,103,106,93,106,110,111,114,81,110,114,106,118,105,105,109,102,105,105,102,95,112,112,111,98,100,101,101,96,87,105,102,106,101,99,109,98,112,99,103,98,123,88,104,94,108,114,103,103,125,129,110,118,115,99,113,111,111,105,106,107,112,104,110,108,105,106,108,104,113,108,115,103,103,116,90,119,101,111,99,112,101,101,113,104,105,107,104,101,100,103,101,110,103,113,112,108,106,120,115,94,108,102,102,93,109,108,106,110,112,113,101,105,102,106,112,99,98,103,99,95,109,104,117,104,112,96,104,106,99,110,86,107,109,103,96,103,105,101,102,70,96,101,104,101,95,106,122,115,95,102,102,103,113,102,111,91,103,106,99,107,115,101,103,102,99,100,102,113,133,113,94,112,114,105,103,103,107,109,108,97,105,115,102,105,90,112,106,118,107,120,126,108,102,108,110,100,97,109,106,101,109,98,107,100,102,108,107,108,95,87,102,105,108,89,98,101,93,115,96,108,110,107,96,95,120,98,102,105,106,110,108,110,99,108,98,101,98,112,96,101,100,124,92,101,99,107,93,94,105,104,105,113,109,98,105,98,102,96,95,104,96,99,88,106,104,91,84,104,107,105,106,92,97,84,99,106,104,115,100,97,110,88,113,70,112,104,101,102,73,104,93,102,106,108,97,93,103,106,103,104,103,97,84,97,103,102,95,103,93,101,86,99,107,103,104,92,108,99,99,111,106,88,79, +496.23706,108,98,95,83,87,107,105,79,101,100,107,98,101,97,105,104,103,83,105,106,112,102,97,104,85,99,73,103,113,109,106,100,107,113,104,100,101,92,96,101,103,107,100,103,107,116,88,102,95,106,94,96,110,98,102,104,103,97,127,108,102,99,98,91,103,102,108,92,101,97,104,101,102,119,121,102,87,101,104,98,113,109,106,113,95,74,108,97,105,114,91,109,105,116,98,92,98,107,110,106,99,106,96,108,99,103,106,106,101,99,104,95,102,97,96,95,91,105,96,91,111,129,97,77,101,96,106,105,107,113,96,103,99,117,101,94,95,98,97,101,99,119,101,89,99,92,117,109,99,97,102,106,99,99,87,105,95,95,99,99,98,106,100,100,100,109,116,106,97,95,106,117,98,90,104,103,99,113,106,100,97,98,96,92,109,100,96,102,107,101,97,105,104,106,103,101,108,106,105,100,91,106,104,109,91,118,95,95,107,103,97,109,97,112,100,111,92,111,102,99,99,100,112,107,98,95,98,100,110,100,101,106,114,111,102,116,109,101,104,102,108,102,110,99,103,112,94,105,107,111,90,108,101,93,102,108,81,109,101,103,98,101,102,104,109,106,104,103,114,94,97,102,102,101,107,98,99,107,100,96,107,105,104,106,113,114,108,99,108,104,95,109,104,109,102,107,116,117,96,107,101,102,97,109,107,88,112,116,98,109,96,111,95,100,97,94,91,99,110,100,112,85,109,103,116,86,110,97,103,113,103,103,108,100,104,105,94,94,106,104,111,118,105,100,113,91,100,96,106,85,107,106,68,101,105,100,107,107,100,112,100,99,105,101,90,109,107,106,98,103,96,102,101,121,119,100,110,90,98,95,111,114,93,118,110,109,90,90,102,88,98,95,105,117,102,101,108,104,99,107,100,103,101,87,83,105,100,100,111,94,105,109,105,101,95,94,110,110,109,97,117,93,97,104,105,100,107,99,90,96,102,110,104,99,109,130,109,100,101,96,107,92,110,107,88,106,97,102,100,105,104,113,109,106,99,105,102,103,118,84,97,106,103,109,106,114,108,107,106,96,96,107,100,105,110,101,94,108,105,105,105,102,110,97,88,95,100,100,116,99,95,105,92,106,103,123,102,105,105,95,108,105,90,101,97,96,109,108,110,91,95,107,102,106,106,102,100,101,101,98,99,96,96,109,97,99,106,99,94,97,107,104,109,94,100,109,108,104,89,108,98,106,101,95,88,109,106,92,98,111,100,96,109,109,101,103,124,105,98,113,109,114,104,117,105,101,114,98,104,99,109,106,108,104,106,113,109,91,107,103,109,109,94,110,105,99,102,113,97,89,104,99,97,95,100,107,96,108,108,106,105,69,116,113,98,101,104,103,110,101,103,110,112,108,113,118,103,98,115,109,102,103,103,94,98,98,105,103,112,108,103,104,102,102,94,99,106,105,112,105,106,107,104,103,98,80,109,92,106,102,101,100,98,104,101,111,101,105,67,109,114,98,116,106,104,104,94,90,109,113,107,100,101,127,108,108,104,98,104,109,113,106,105,102,100,94,102,98,103,105,106,108,100,107,107,111,100,96,95,98,113,107,91,97,111,108,97,109,103,103,97,95,117,109,99,92,91,101,99,103,97,98,120,119,106,114,109,102,123,106,111,105,111,103,96,103,98,91,106,94,95,103,118,104,110,98,99,110,108,104,78,98,101,106,98,106,122,102,109,101,114,120,84,104,90,109,99,100,107,112,96,113,113,102,101,104,97,99,107,97,102,106,104,100,107,101,100,114,96,109,100,102,113,112,97,105,97,109,95,94,106,104,91,118,94,103,107,99,96,103,107,100,116,92,103,93,107,101,101,94,98,99,110,101,105,109,102,106,112,93,111,97,112,101,104,106,111,102,75,110,112,107,125,106,118,91,103,111,97,83,102,110,87,110,101,103,102,108,92,100,78,100,104,94,111,106,102,96,114,113,99,99,113,103,105,97,94,92,92,90,109,102,100,98,101,106,101,114,108,110,113,126,95,100,102,93,95,95,108,110,103,100,110,110,123,103,99,98,109,92,116,106,113,100,100,93,100,114,100,109,106,107,109,93,105,96,95,99,97,113,105,106,107,121,105,99,96,104,113,103,113,101,104,115,93,97,103,110,104,106,102,94,103,98,104,98,105,94,101,103,97,101,99,96,112,97,92,108,87,95,107,95,127,115,108,94,102,98,98,105,95,94,103,105,99,103,92,107,112,93,107,103,109,82,94,102,100,98,106,108,94,104,105,105,104,113,117,106,91,108,93,105,95,116,108,102,97,117,94,91,116,88,109,113,102,101,72,97,104,103,111,100,101,106,97,105,108,118,106,99,107,108,96,99,85,107,103,89,114,97,104,110,105,110,113,104,91,95,98,106,108,101,89,105,105,112,80,90,120,109,105,100,86,108,105,120,99,100,105,107,107,101,109,101,94,106,94,92,85,105,108,74,108,105,92,120,93,98,109,106,102,109,110,105,99,86,96,107,94,108,107,105,107,117,103,106,93,96,95,100,107,98,105,106,99,97,111,97,98,107,106,103,110,105,103,109,95,111,108,102,107,100,99,111,93,108,111,101,112,84,106,105,110,101,107,107,107,105,104,98,109,117,95,99,72,105,91,109,105,91,110,106,101,114,106,97,107,111,119,104,103,110,90,98,118,103,107,99,117,95,107,103,105,100,98,113,118,97,113,98,105,114,117,102,109,111,106,103,102,98,96,108,110,111,107,88,104,110,99,99,107,113,100,112,97,99,100,106,113,108,106,113,101,107,104,97,118,109,105,107,101,96,101,100,90,99,113,111,101,106,113,108,103,100,106,106,99,105,110,106,103,68,101,107,98,120,107,100,96,110,99,90,109,107,106,92,103,105,113,104,100,98,111,99,91,119,103,99,108,108,115,105,102,102,113,112,112,104,90,105,109,116,95,106,88,106,106,104,102,104,103,113,97,106,102,104,102,108,103,99,111,111,100,103,109,110,122,108,99,101,99,107,114,104,106,98,107,103,105,93,84,102,109,109,104,105,104,105,95,100,110,106,102,109,101,95,101,110,94,100,101,106,106,108,113,94,99,108,107,97,97,102,108,113,110,103,102,111,124,106,101,104,97,112,112,106,103,115,79,98,110,107,110,98,105,116,94,106,113,104,108,108,100,107,107,100,115,109,101,112,104,98,112,89,122,95,101,102,106,119,110,92,95,106,113,113,106,104,125,108,106,109,111,119,110,108,96,112,100,86,104,108,102,99,100,108,100,98,105,106,107,105,108,95,100,93,106,109,101,100,117,106,100,91,105,104,99,86,112,104,90,117,87,102,99,87,108,104,98,104,111,111,104,107,91,119,106,102,101,112,110,110,96,99,107,82,102,107,111,96,107,101,110,102,109,103,111,99,105,107,90,101,109,103,108,102,113,110,102,99,113,108,106,106,97,108,115,110,83,106,87,103,102,90,101,100,102,96,108,101,106,112,119,129,111,98,105,117,113,103,108,97,105,99,100,103,99,107,121,104,109,114,117,107,111,100,96,101,107,114,104,103,107,118,108,108,101,110,83,109,108,101,101,99,97,99,109,103,108,105,101,98,93,97,112,105,112,102,106,129,107,96,103,102,106,94,105,99,107,106,101,68,99,106,99,111,99,103,104,110,109,113,92,99,98,107,102,107,104,109,109,122,103,103,90,107,106,95,100,100,100,98,114,106,106,113,110,109,112,97,103,121,99,98,101,106,105,106,102,106,109,111,99,107,102,103,107,101,104,111,100,110,100,92,106,103,115,117,99,99,109,110,109,98,94,107,105,101,94,114,105,97,100,98,90,114,100,105,92,125,101,106,91,116,86,115,99,108,101,108,105,100,97,114,101,104,97,115,101,104,97,96,107,103,113,104,95,103,105,101,95,103,116,105,105,100,107,104,113,104,99,109,101,128,99,109,100,119,89,108,111,109,101,94,98,105,113,110,96,101,96,109,100,89,107,98,85,107,106,109,102,104,100,108,105,106,111,102,98,92,104,100,106,107,108,99,105,101,118,112,120,102,99,99,116,104,109,110,100,77,97,116,75,105,105,119,96,118,95,99,100,90,103,103,98,108,106,106,98,95,107,100,108,101,106,95,106,102,106,116,109,99,103,102,101,104,102,101,107,95,102,120,106,110,97,117,106,109,107,98,102,98,104,110,104,98,101,102,113,101,103,106,112,119,106,108,102,109,116,96,95,102,121,107,110,98,104,102,106,120,104,103,109,104,95,107,113,91,92,105,107,99,99,104,96,95,100,102,98,118,103,103,122,108,110,106,118,95,106,102,106,101,115,106,91,126,109,99,107,103,93,105,101,105,101,91,115,112,96,102,98,102,103,105,102,103,104,89,122,102,99,87,87,105,111,98,113,106,101,114,107,106,105,93,112,96,88,101,108,106,78,110,120,111,104,86,110,94,100,83,88,100,113,105,98,102,104,103,105,78,109,95,109,113,105,109,92,106,106,108,85,104,97,99,106,91,109,102,110,108,98,109,103,98,106,101,100,109,103,113,108,109,113,108,98,106,105,98,106,99,112,98,107,110,105,99,120,115,99,106,107,121,91,108,108,112,118,121,113,111,115,106,103,96,104,105,107,104,112,114,106,102,108,103,99,76,99,88,95,93,105,106,116,101,103,103,100,94,100,105,82,89,116,110,100,106,99,101,104,92,106,102,104,106,113,95,101,88,103,99,112,108,98,109,99,109,110,106,106,101,96,101,98,101,116,106,102,90,111,99,109,100,100,97,104,100,100,109,97,100,104,95,104,106,120,97,101,112,120,106,104,102,102,97,113,105,106,105,118,94,109,109,109,102,105,114,97,119,111,96,109,95,103,93,111,105,135,90,101,105, +496.37769,108,99,83,102,106,99,105,98,95,116,87,97,98,100,95,116,104,97,90,108,110,96,117,106,103,112,106,109,109,99,116,97,105,106,108,109,105,97,104,93,99,105,121,97,103,106,114,94,101,103,100,102,109,94,105,117,96,100,110,96,92,102,103,90,113,99,110,108,100,105,105,118,108,104,118,109,97,92,87,106,101,108,104,116,107,112,99,100,95,103,109,113,103,109,96,98,102,102,112,98,103,109,108,96,101,113,94,102,99,98,113,101,116,111,102,100,104,99,104,94,98,100,119,121,108,95,114,109,105,95,108,94,109,98,116,111,100,91,103,96,93,110,113,96,104,110,109,104,105,101,124,103,107,100,95,113,102,98,104,101,106,103,103,111,102,98,99,85,100,107,99,99,110,117,104,100,108,105,99,103,93,105,83,110,97,111,98,101,113,96,100,106,99,102,106,106,105,92,93,102,102,111,117,102,107,110,113,101,113,109,90,108,111,115,116,119,104,107,105,110,112,103,125,113,94,107,101,113,108,103,105,95,100,105,109,118,108,99,112,116,98,107,110,104,118,103,104,102,102,113,96,114,113,131,100,99,98,114,99,88,99,110,105,99,103,105,116,100,94,105,108,104,107,99,96,94,106,124,96,110,111,105,101,87,110,106,96,110,109,103,95,127,105,108,98,118,100,106,109,105,98,117,105,106,85,118,95,118,102,119,102,121,106,106,104,110,122,100,96,98,103,99,107,103,111,112,99,102,111,109,107,112,97,106,110,106,120,100,112,104,99,103,107,96,104,110,111,96,104,119,113,88,105,102,112,99,105,111,106,105,104,101,98,99,104,117,115,109,105,107,106,100,103,118,109,94,98,105,103,97,113,108,103,101,108,114,94,119,102,100,97,103,86,108,104,100,120,104,99,115,99,107,102,99,91,107,98,102,103,93,94,91,118,105,96,105,102,99,108,90,104,113,104,97,112,101,111,104,101,117,105,105,98,95,100,100,93,96,106,94,108,102,107,117,94,103,116,111,103,108,103,104,113,111,112,110,105,95,111,99,100,104,116,102,105,109,102,98,92,99,108,103,97,100,99,110,109,114,110,111,91,100,113,105,101,101,110,108,91,114,105,114,99,106,100,111,107,100,100,106,107,102,109,105,111,108,109,100,104,105,102,96,98,99,87,112,96,106,95,101,103,117,107,115,103,102,100,104,117,109,105,115,109,104,106,105,112,109,109,79,100,114,99,100,111,119,108,100,75,113,111,95,117,101,100,98,103,98,108,105,107,97,95,98,103,100,104,113,90,91,101,121,101,104,102,110,115,97,105,101,113,103,101,103,95,118,108,98,104,99,117,108,91,106,112,117,79,94,113,97,108,101,100,110,103,96,104,102,107,114,119,105,103,102,96,96,110,107,96,108,112,98,113,103,100,108,96,107,114,110,105,99,96,110,102,122,111,113,104,110,96,107,94,102,97,98,99,110,111,109,106,102,108,80,103,103,109,107,122,99,107,96,108,90,99,103,117,100,105,106,111,119,105,108,87,107,116,104,113,104,100,110,102,103,98,102,96,99,102,109,101,103,98,108,110,106,106,105,111,113,114,93,114,111,95,112,122,126,103,110,105,98,91,105,117,106,108,99,115,107,105,95,104,100,105,105,99,133,114,123,108,109,93,108,110,121,104,81,113,90,100,112,114,109,110,101,115,105,108,112,110,101,109,110,102,100,108,103,83,110,107,100,136,109,105,103,94,104,94,94,112,96,114,101,99,117,109,112,113,113,100,99,111,101,92,101,114,107,139,117,109,106,107,101,111,105,102,107,109,128,125,107,106,103,111,97,108,106,104,111,108,113,109,99,112,110,108,105,109,107,101,91,119,115,115,110,104,104,104,110,112,109,96,114,116,107,108,95,107,122,100,104,109,92,103,121,113,95,100,105,100,110,106,107,101,106,113,110,90,111,110,102,106,113,95,99,103,106,112,117,98,108,97,110,101,106,117,102,104,111,100,106,107,91,117,100,90,97,107,111,100,103,98,109,109,114,100,102,111,102,108,121,107,107,103,105,96,115,94,110,108,95,104,107,108,99,102,107,106,108,106,101,102,102,105,104,106,105,97,98,105,105,113,120,97,116,98,107,141,116,109,103,107,108,107,119,111,103,107,110,106,103,118,104,102,108,101,101,102,104,107,105,111,95,92,107,119,103,102,108,110,98,110,93,90,113,99,89,103,101,121,94,107,95,106,116,91,104,109,111,107,98,121,117,105,99,105,97,114,100,120,112,100,103,100,111,97,103,94,104,99,104,90,104,107,113,113,104,101,101,115,103,104,100,108,110,101,115,104,102,106,94,96,103,112,97,110,108,94,108,92,99,108,110,102,107,109,125,99,106,91,103,103,108,108,100,94,93,98,109,89,103,95,90,116,106,99,91,97,98,113,107,98,101,102,101,107,103,91,109,105,100,101,102,109,112,97,95,122,106,90,105,98,97,95,101,103,98,91,105,119,106,113,94,101,108,102,94,105,104,96,120,101,104,104,96,101,110,115,111,105,111,113,99,111,112,102,103,96,104,99,109,100,88,100,108,96,110,98,99,92,103,96,123,103,99,109,110,122,102,116,104,112,125,100,105,103,103,114,123,106,103,98,93,91,104,109,95,108,103,105,107,102,110,102,105,96,98,116,100,105,108,99,105,110,116,107,109,113,106,100,106,109,106,95,111,117,87,105,80,105,110,122,96,111,112,101,91,109,106,108,97,112,115,117,106,95,107,111,103,104,113,96,110,109,102,104,99,93,108,105,110,99,100,104,95,116,69,95,108,110,104,117,99,103,105,102,102,84,111,98,103,103,106,104,111,107,112,94,99,99,102,104,102,102,98,109,105,98,107,98,113,95,110,109,112,91,102,94,110,99,90,84,98,104,106,112,96,101,113,107,109,110,105,106,108,102,102,105,104,101,98,104,98,103,107,88,119,122,111,111,107,114,106,103,108,110,90,100,105,116,94,92,101,106,102,119,102,108,106,100,103,95,110,109,109,106,109,96,110,102,111,105,110,100,111,117,96,112,109,113,116,104,111,102,103,117,108,105,114,112,98,109,99,110,104,105,103,102,102,102,117,120,103,109,96,98,103,100,102,101,95,113,100,98,91,107,107,104,104,100,98,99,104,102,109,105,96,116,107,114,100,92,110,102,110,98,98,101,95,89,103,105,103,104,107,102,106,109,102,104,91,98,99,108,109,107,103,103,92,110,111,102,110,108,86,98,115,107,113,102,104,105,98,98,102,105,100,109,99,88,116,110,93,106,105,105,102,107,111,113,102,112,105,105,107,106,112,102,106,102,96,95,99,107,104,103,105,109,112,104,102,95,100,104,99,106,102,94,88,101,105,99,104,95,104,114,99,113,107,102,107,105,106,113,105,104,108,115,109,96,121,99,98,98,95,106,100,110,95,102,102,99,103,104,115,100,102,115,104,97,105,107,102,94,114,105,103,108,101,101,105,122,120,107,116,102,102,104,96,106,117,106,103,113,96,111,94,93,111,95,94,103,106,110,115,108,106,96,116,103,107,109,110,108,122,98,115,101,110,119,104,98,104,114,100,100,101,111,110,99,100,106,112,106,99,103,106,113,108,95,104,108,95,99,92,103,109,114,110,111,102,100,120,116,103,100,106,111,94,89,99,98,103,106,107,110,100,109,111,99,110,108,103,109,102,106,96,106,96,109,107,107,101,110,99,116,99,104,93,95,111,93,98,107,95,113,115,111,103,108,87,109,106,112,99,109,98,106,112,100,108,115,100,112,102,111,100,98,115,129,97,99,112,109,108,96,90,91,94,100,105,105,89,104,111,102,98,105,113,99,94,104,111,120,98,101,103,106,92,96,104,103,106,90,89,106,106,97,108,110,100,94,114,101,98,108,103,112,101,108,99,102,113,106,106,112,110,109,121,88,108,103,112,101,99,100,106,108,114,101,106,96,109,91,116,109,103,116,100,113,104,112,105,108,109,109,97,103,108,103,112,106,105,112,99,106,100,108,117,114,108,102,109,105,99,104,80,102,98,106,92,96,95,98,106,88,94,102,98,89,103,90,106,104,114,106,113,96,102,113,101,105,104,113,99,99,108,111,112,91,101,118,109,109,115,104,103,103,113,102,101,103,89,98,109,107,109,98,103,113,91,113,103,113,99,111,120,96,104,111,101,106,108,109,102,92,104,102,101,103,107,112,101,101,107,116,110,109,105,103,102,121,102,112,100,94,105,105,102,98,103,100,100,100,115,102,103,96,110,100,112,98,113,105,103,108,100,102,102,94,113,110,106,109,112,110,98,116,104,118,97,101,96,120,93,94,96,100,104,95,104,109,98,104,102,116,103,106,96,105,106,106,103,115,109,110,107,110,105,104,86,113,105,110,106,105,104,90,87,110,103,96,114,101,92,96,104,102,98,98,111,97,103,106,92,114,105,113,101,104,109,107,100,101,117,103,109,107,98,123,107,99,111,113,101,103,113,104,101,129,105,110,107,98,112,104,105,99,108,117,116,110,113,110,103,102,97,94,103,100,115,104,105,109,110,107,105,97,95,112,98,98,87,104,108,104,101,106,106,87,117,102,124,104,95,103,101,95,106,106,111,103,97,106,115,107,110,104,111,104,87,89,98,105,109,107,107,102,101,100,103,109,101,109,95,133,99,112,100,103,102,112,114,99,102,99,106,103,105,115,103,112,112,101,105,121,111,102,101,113,100,91,99,93,103,91,109,100,93,82,110,99,82,94,101,104,109,93,108,120,81,110,84,101,94,88,100,101,101,115,92,90,92,99,117,110,115,124,110,114,107,110,101,102,96,105,92,115,104,110,111,98,91,100,92,115,105,99,105,116,102,102,111,103,119,117,110,102,99, +496.51831,95,118,92,108,99,105,102,95,103,109,106,93,111,97,100,86,98,112,118,103,86,100,108,119,93,104,100,83,100,100,98,109,99,114,99,116,87,96,113,99,110,100,97,115,105,98,101,104,112,106,105,101,97,104,109,117,101,117,98,116,111,107,90,94,104,102,109,101,65,105,114,112,99,103,108,114,99,108,95,101,101,106,114,106,90,81,99,106,92,99,113,98,106,102,108,103,96,91,90,92,95,97,102,104,87,94,103,105,99,99,87,97,109,110,120,97,105,95,110,90,107,107,102,101,106,103,104,98,113,99,111,99,106,97,102,101,102,100,97,101,109,103,100,103,94,99,98,99,93,111,87,110,104,91,99,100,87,107,107,88,104,114,93,102,92,101,109,107,96,98,97,103,109,109,107,99,114,108,101,105,96,102,90,103,106,103,79,97,96,99,99,99,105,107,108,107,104,107,110,102,106,98,108,104,104,101,101,102,100,112,99,108,106,91,95,108,91,105,95,98,103,96,97,93,111,110,103,109,103,104,96,107,110,111,95,89,109,114,106,108,102,105,107,102,113,106,93,109,105,92,102,116,94,106,94,101,91,100,92,107,100,105,100,118,99,98,110,105,108,109,100,96,93,102,96,102,109,96,99,100,96,104,102,97,106,91,96,101,99,97,109,91,112,106,117,104,101,114,100,109,110,98,103,111,94,113,96,109,103,99,104,106,97,102,100,100,95,115,99,107,99,101,104,100,112,100,128,103,106,114,100,114,109,99,100,116,106,99,109,99,106,110,96,106,91,106,102,107,77,106,106,95,100,108,112,103,112,95,106,96,103,95,101,97,99,100,106,113,103,97,109,135,98,93,94,88,108,86,108,103,104,104,107,112,101,97,71,100,102,104,106,103,99,121,100,110,109,99,94,111,102,97,103,105,111,70,103,92,110,107,107,96,93,107,101,97,103,91,103,99,101,101,106,96,101,100,112,110,97,103,86,111,95,95,107,109,96,100,106,91,104,106,111,99,104,87,104,103,103,119,103,111,99,105,97,109,102,97,108,111,105,102,125,101,92,107,100,102,100,98,105,109,95,106,103,99,98,105,101,108,105,97,107,103,99,104,105,115,98,100,110,118,101,109,99,109,102,102,92,96,102,119,122,98,102,106,92,92,125,99,114,99,102,116,103,114,107,114,111,104,96,107,102,115,88,98,109,113,97,110,105,102,100,113,98,117,96,103,97,105,100,106,104,100,104,103,109,108,101,115,100,94,100,121,101,96,100,96,99,98,103,110,100,115,101,91,109,95,117,99,102,100,105,100,105,104,104,95,112,118,104,98,116,104,104,105,109,104,113,114,100,106,115,97,105,101,98,98,106,100,105,117,95,83,101,94,120,111,101,104,104,105,96,105,96,116,108,96,111,108,117,103,110,94,114,107,99,100,100,103,101,100,86,96,115,91,104,99,100,103,107,107,102,94,119,100,106,100,84,100,95,103,81,101,97,96,114,106,109,109,107,99,105,104,98,101,108,98,106,92,109,97,107,109,96,102,92,99,79,102,92,101,109,112,93,99,92,101,105,94,106,98,110,108,108,99,102,92,100,97,106,91,111,101,105,111,87,104,94,92,104,105,109,109,109,101,104,99,112,97,100,99,99,108,105,85,111,102,103,96,114,112,99,95,94,97,111,99,113,107,122,104,99,104,101,97,97,111,94,110,99,101,102,107,98,112,97,101,104,105,105,122,101,112,100,107,94,100,106,110,89,104,107,104,99,98,105,111,106,86,84,109,102,99,96,102,109,99,113,126,110,107,103,104,100,109,104,113,107,102,99,98,84,106,103,97,101,105,116,109,109,97,101,101,103,100,103,114,101,99,108,109,102,113,114,110,107,100,94,112,125,110,111,108,98,102,87,92,100,101,109,98,106,121,84,100,96,101,98,97,99,94,100,104,105,101,91,112,112,107,117,106,99,89,109,85,97,109,95,98,95,84,104,105,90,108,110,107,99,92,100,100,107,96,105,105,111,104,108,102,105,115,100,93,106,91,105,105,104,102,90,111,107,87,104,104,108,104,102,103,102,104,105,103,119,93,100,110,98,115,105,112,109,105,103,105,109,106,98,103,110,116,108,100,105,107,91,104,114,102,107,98,95,102,95,106,106,108,115,96,97,91,104,99,107,109,108,106,107,107,115,121,106,110,109,105,91,109,96,108,102,99,99,102,101,109,98,100,104,103,97,108,111,101,121,103,88,98,99,92,102,105,110,103,102,102,100,106,108,111,110,97,99,126,101,105,97,99,102,105,105,103,104,102,107,113,98,95,98,102,112,104,101,111,109,95,107,109,101,89,108,102,99,107,99,79,90,101,106,106,105,112,84,102,112,98,110,110,95,87,101,110,106,98,89,102,108,94,104,111,96,118,120,102,90,114,94,108,100,100,99,109,106,102,99,100,110,100,99,93,100,111,97,96,106,96,116,87,103,108,98,111,103,109,99,110,108,108,105,102,122,111,108,103,113,106,106,79,106,105,99,106,107,95,110,109,99,99,104,111,111,98,99,102,101,106,118,109,102,92,104,110,98,95,111,101,92,101,100,101,101,104,98,102,92,96,114,86,91,105,110,119,110,105,98,104,114,107,107,112,99,98,116,92,110,113,97,96,103,88,105,105,116,106,114,97,90,95,109,96,102,102,106,119,93,106,99,104,105,100,105,92,117,91,110,96,108,106,105,103,108,110,96,98,121,109,107,124,100,108,102,99,100,91,97,115,109,115,120,97,107,117,100,104,109,96,102,74,106,105,99,104,108,119,115,94,97,111,110,113,102,107,98,82,97,108,109,99,106,107,91,95,104,113,97,103,104,106,101,106,95,103,106,102,115,105,101,107,100,112,108,95,106,106,86,98,102,104,96,99,102,102,117,92,113,94,100,115,109,99,97,103,109,98,108,103,113,99,106,102,101,113,98,107,104,104,120,104,97,99,92,112,104,89,113,110,104,105,103,116,113,110,133,104,113,101,89,114,102,94,112,93,100,112,103,111,108,99,103,90,102,108,104,89,103,111,92,100,109,109,101,83,106,117,121,85,104,85,90,96,109,102,109,105,95,99,107,98,90,108,97,104,98,113,108,105,90,101,110,109,97,93,107,113,105,95,109,104,111,96,83,98,95,105,108,105,106,106,124,101,101,128,105,92,100,106,110,99,105,96,106,98,104,102,111,103,100,110,99,110,106,100,97,109,96,101,109,104,102,113,99,101,103,98,108,106,103,105,109,117,98,99,106,99,106,99,98,79,113,84,103,102,105,108,96,114,100,97,109,103,111,101,103,102,117,113,100,117,95,97,102,113,93,113,95,96,111,97,103,100,98,118,100,103,100,100,102,91,107,103,106,105,102,102,102,117,103,100,117,102,97,109,99,101,106,105,101,117,86,106,104,89,105,103,107,107,115,103,119,99,102,107,98,86,97,99,111,105,101,110,113,111,102,96,92,107,111,96,111,109,100,112,105,106,106,104,117,123,103,113,100,105,100,109,106,110,107,114,101,106,108,116,104,110,129,117,86,101,100,104,97,109,104,123,97,93,97,94,99,106,109,95,95,91,109,103,103,99,102,104,96,106,104,103,109,98,115,116,105,107,95,96,96,105,98,110,102,105,103,94,113,91,95,109,100,100,106,108,66,99,84,101,110,110,95,87,104,93,102,106,103,95,106,92,101,99,105,106,109,105,111,106,104,118,115,117,98,101,108,116,102,104,103,95,102,89,97,112,92,116,102,96,100,109,106,100,105,102,106,104,102,93,94,103,107,103,109,94,95,95,112,96,106,90,101,108,114,93,120,82,99,104,98,99,103,102,106,99,106,93,105,100,83,94,99,115,113,97,117,103,105,109,108,101,95,121,104,109,111,91,115,103,107,104,108,96,109,97,102,107,105,103,104,102,92,100,87,105,100,113,101,113,102,99,105,91,113,97,102,103,104,101,98,109,108,104,89,96,97,102,108,81,100,102,109,104,102,102,90,110,117,108,104,103,106,118,119,102,118,106,99,106,112,105,102,104,98,87,98,85,115,105,95,98,113,104,99,99,102,97,95,104,100,99,106,104,102,106,90,105,89,101,105,108,100,103,99,102,102,94,96,103,96,104,92,97,110,106,110,87,96,103,92,103,108,129,107,104,110,106,105,100,99,102,98,101,107,101,102,92,100,107,107,92,94,101,105,109,94,107,107,102,116,115,102,102,101,114,105,96,102,102,98,96,108,102,92,105,102,103,99,96,114,109,103,104,95,96,97,109,97,98,109,107,100,106,107,102,98,106,104,100,110,104,108,99,113,110,109,104,109,102,98,105,102,119,106,108,100,108,111,105,99,112,108,118,101,78,104,99,100,108,105,99,105,102,97,98,103,114,99,109,117,98,103,104,99,101,100,97,115,113,91,100,107,98,97,105,99,110,108,115,103,101,101,94,102,116,112,116,102,107,105,111,100,111,106,108,92,102,104,91,96,100,114,103,112,110,100,112,116,91,96,100,110,94,101,106,112,101,97,109,104,109,110,108,108,98,107,107,103,110,106,106,94,102,93,82,105,101,93,98,108,113,106,79,107,101,99,113,92,113,111,106,95,109,112,92,106,105,96,104,108,108,115,91,115,87,97,100,91,108,101,96,105,102,89,103,104,98,106,107,102,93,105,118,89,106,94,103,104,107,110,89,105,92,105,107,103,111,101,96,102,108,98,93,94,99,111,95,111,88,98,107,93,94,99,96,101,91,95,110,116,127,105,98,92,99,109,107,96,77,85,95,112,102,99,112,97,93,112,126,104,96,97,98,97,103,87,90,113,105,94,103,102,102,72,96,95,87,78,109,100,107,108,97,109,94,103,101,100,97,103,104,109,98,126,95,108,103, +496.65891,91,102,97,107,83,106,106,109,118,109,104,102,91,109,104,93,80,94,109,107,116,100,102,99,97,107,103,110,119,106,113,97,109,121,107,118,105,92,106,111,98,102,96,113,101,100,105,116,113,107,116,104,108,101,102,112,111,86,107,104,110,98,101,84,105,119,104,109,100,93,116,111,99,110,103,111,110,116,105,101,104,101,95,117,106,93,111,111,104,116,107,107,99,117,97,111,104,100,94,105,100,94,104,107,103,107,99,114,108,101,114,101,102,98,103,107,120,75,116,109,107,109,114,110,112,107,102,103,104,106,117,80,115,107,98,109,74,110,98,97,104,106,113,83,109,106,115,107,105,121,112,104,109,106,98,105,103,103,113,108,92,102,102,106,106,99,88,96,109,111,107,120,113,110,100,108,99,98,109,106,104,103,111,106,107,82,96,96,98,104,106,120,104,113,104,117,101,111,106,109,102,91,104,117,117,92,100,100,95,108,108,108,98,104,112,100,109,105,91,101,107,114,99,108,111,107,91,121,107,108,96,102,128,117,109,99,103,110,117,105,111,96,105,116,94,109,105,118,106,103,101,107,110,102,103,105,101,94,99,105,108,108,99,100,103,113,108,107,113,86,112,101,105,102,102,95,104,108,96,105,101,109,107,116,100,113,94,100,106,112,94,109,104,110,92,111,95,105,103,104,106,103,113,116,110,114,123,100,112,104,96,110,115,104,98,119,99,104,116,96,112,94,105,104,108,103,96,110,115,102,106,104,109,105,106,110,114,108,104,104,104,113,109,107,100,106,99,122,114,98,119,111,100,120,104,107,100,114,98,105,103,103,103,90,101,94,116,119,134,112,96,111,98,108,108,100,108,106,103,104,116,109,109,106,127,94,91,114,103,146,122,93,102,109,109,98,98,106,104,108,105,98,109,98,99,104,106,109,103,99,95,105,108,110,98,105,100,102,110,104,99,101,105,108,115,110,100,108,69,114,98,98,108,98,106,108,98,109,101,99,102,103,104,112,101,100,99,99,111,113,103,109,114,112,113,105,107,104,117,111,116,120,106,112,113,114,105,102,112,104,109,117,111,114,103,110,95,115,110,101,99,108,115,102,102,103,102,99,118,103,107,114,104,105,99,94,101,110,109,105,121,101,105,98,108,99,119,112,102,101,110,107,103,109,107,104,104,113,99,91,107,117,107,103,96,107,113,102,101,106,108,126,92,99,111,94,113,109,101,105,100,108,101,96,126,95,109,107,111,104,106,113,113,104,82,105,109,111,103,98,98,109,108,101,86,94,114,107,111,98,98,112,112,112,106,104,109,103,96,108,107,98,102,111,109,96,115,105,117,100,106,113,99,100,107,97,91,107,101,102,98,122,107,104,112,102,105,96,98,107,107,110,92,112,110,113,121,101,110,109,98,126,121,102,111,96,118,106,107,115,98,98,94,101,97,107,107,96,97,104,101,106,111,102,104,97,97,96,111,117,99,117,97,104,109,112,117,98,112,108,104,109,108,105,117,106,121,105,118,113,104,106,103,110,96,104,112,118,123,102,119,113,117,101,91,103,106,109,109,103,107,103,95,102,119,99,92,105,99,98,117,114,101,108,99,102,120,102,103,103,111,118,108,94,104,114,106,121,105,115,110,106,113,103,107,136,105,106,101,113,99,111,93,100,91,102,103,105,111,112,104,97,103,103,114,86,108,107,112,113,110,110,104,91,98,114,112,113,110,100,72,108,98,98,99,113,94,112,111,108,105,111,102,107,101,102,113,103,90,111,103,103,104,104,100,120,91,100,106,101,116,95,104,114,115,114,113,106,108,113,99,103,95,110,107,103,99,124,105,97,69,107,107,120,105,99,98,112,92,86,108,108,112,106,110,114,125,115,118,105,137,94,111,117,110,102,114,112,109,100,99,107,108,103,112,107,112,109,107,109,115,89,96,109,111,118,102,107,108,104,109,110,91,104,104,103,75,99,105,90,107,120,94,106,104,110,117,104,103,102,108,123,114,110,123,99,102,105,107,113,113,137,98,120,116,103,107,110,97,99,93,101,109,99,109,102,82,100,100,117,104,98,117,113,102,109,107,104,107,109,102,97,107,113,106,99,112,96,103,103,102,100,110,121,97,103,112,107,109,105,104,104,111,87,105,93,105,113,99,106,107,122,106,99,108,113,106,111,103,105,109,106,112,98,113,113,104,94,103,108,97,115,109,105,94,104,99,108,99,100,92,108,104,111,107,101,110,100,109,100,109,101,105,105,100,91,100,99,110,109,105,112,96,110,108,103,95,110,100,109,109,105,101,98,101,103,110,103,110,107,115,112,112,78,98,106,108,101,109,100,102,110,105,105,112,97,116,105,103,108,114,118,91,111,106,115,114,108,110,98,108,126,113,101,106,107,101,141,101,113,99,108,100,107,98,105,111,110,116,98,95,109,91,101,113,109,103,104,112,102,91,96,87,119,111,95,101,95,99,99,106,109,103,103,94,104,79,104,97,113,108,94,100,108,101,104,111,94,100,95,80,131,105,103,98,97,99,105,111,112,96,103,94,91,103,110,109,95,114,101,108,105,97,102,99,108,102,104,98,104,98,105,96,112,104,106,107,117,106,96,121,101,96,113,110,96,98,92,104,115,102,90,108,89,82,105,102,107,111,102,83,96,97,108,105,104,108,102,97,109,101,144,111,100,113,109,107,123,102,107,97,103,107,102,111,94,102,105,114,108,106,113,105,99,105,111,109,102,102,109,105,109,98,119,102,111,98,94,110,103,105,100,109,117,110,104,102,96,108,114,119,110,103,95,106,105,98,104,117,98,108,107,101,97,109,107,102,117,109,111,106,109,103,96,101,104,106,115,97,106,101,111,116,108,118,104,96,113,98,98,97,109,100,116,110,102,102,100,106,120,100,99,105,94,102,112,95,104,101,104,116,116,102,102,103,103,110,103,113,113,95,103,105,120,101,91,99,103,118,101,103,106,100,96,107,107,104,114,112,96,106,100,94,112,113,99,112,108,102,94,109,96,108,112,117,113,95,115,88,98,96,101,103,109,105,93,99,104,90,109,93,95,109,104,107,101,98,103,85,100,113,92,90,116,111,96,113,96,100,102,109,100,108,104,109,96,103,101,110,94,104,91,105,106,106,100,102,109,91,99,99,98,114,103,102,111,103,112,97,101,98,101,102,107,107,106,113,103,116,98,96,102,100,106,103,96,107,103,94,102,102,105,97,101,100,102,107,114,115,96,125,112,107,108,101,103,99,101,106,107,102,101,94,103,96,97,91,102,114,98,96,103,110,94,105,105,103,94,94,107,112,107,105,105,95,111,107,91,107,100,98,112,82,103,102,99,108,114,90,102,94,107,105,105,108,103,84,120,104,109,106,93,95,104,110,100,107,101,96,108,93,96,97,135,97,104,114,99,88,99,101,98,100,106,120,130,110,107,105,103,96,121,109,101,81,105,106,100,112,99,101,96,107,103,104,109,105,99,108,101,92,97,114,109,88,118,109,106,103,105,103,102,106,105,105,99,104,109,104,104,110,108,110,100,109,102,87,104,100,119,97,103,95,94,94,104,91,103,103,105,99,96,111,106,112,91,113,113,104,95,97,105,103,101,105,91,111,98,102,112,105,96,103,112,113,93,90,91,90,105,98,95,109,110,108,80,101,99,100,98,113,105,92,105,114,119,107,104,125,111,99,89,105,108,95,103,112,111,103,85,102,91,105,95,103,98,107,109,85,105,98,104,102,115,112,106,105,103,103,102,104,105,101,95,90,88,101,96,102,91,109,104,88,90,120,89,104,119,99,117,81,97,103,100,97,105,96,110,110,86,95,106,104,103,98,110,100,97,100,88,108,108,99,101,103,100,98,101,103,97,99,103,93,96,114,101,108,90,90,103,97,101,110,103,113,111,102,103,109,116,103,101,103,104,100,110,84,105,108,106,102,99,105,102,108,102,100,106,97,101,92,114,98,69,110,97,112,95,114,104,103,102,101,109,118,105,100,110,105,108,107,108,97,101,109,107,107,95,104,115,115,104,110,96,104,106,97,95,95,92,95,101,114,102,103,88,113,125,98,93,105,111,108,119,110,105,91,106,98,113,106,108,106,103,104,117,96,103,100,108,93,92,105,108,99,97,95,104,111,106,106,107,107,98,117,113,93,103,116,94,112,99,109,99,103,106,99,103,102,95,107,95,101,101,108,106,101,96,108,104,95,97,101,91,106,107,110,121,95,95,77,106,75,108,101,101,91,93,104,107,105,132,113,84,100,109,90,107,81,96,100,95,124,102,96,100,94,101,116,120,101,101,113,100,99,98,109,100,106,105,124,96,112,101,110,104,119,105,94,105,101,100,100,98,89,130,106,109,103,99,100,104,104,107,100,110,98,96,71,109,88,101,105,111,86,103,92,103,106,99,111,93,98,98,93,102,96,99,109,100,100,107,99,85,108,99,98,98,93,103,111,101,119,105,90,96,84,103,94,115,104,113,102,95,102,104,112,109,109,126,108,109,99,106,102,97,91,100,108,100,90,108,94,97,102,99,108,95,100,94,109,112,114,96,112,94,98,109,101,104,98,94,93,100,101,101,105,116,104,109,89,93,103,106,108,102,109,122,97,95,106,101,109,92,94,116,103,106,89,85,95,109,106,112,105,97,97,104,96,93,86,91,105,101,108,94,105,101,98,115,113,109,97,92,101,79,97,94,109,99,93,93,99,105,86,92,105,103,87,99,108,90,102,107,91,102,103,105,107,105,101,94,108,107,102,99,112,96,100,112,94,101,110,94,109,123,92,122,106,96,106,100,87,88,110,91,94,113,103,106,97,102,96,96,108,104,98,103,98,92,108,91,103,110,114,109,107,113,109,91,108,94,95,100,122,93,102,103,104,99, +496.79953,92,102,102,110,92,105,106,113,99,112,94,101,96,91,107,111,99,97,111,109,98,107,114,100,100,102,118,100,114,101,95,111,91,99,101,99,103,107,100,117,82,103,104,111,103,94,88,117,106,113,129,93,73,98,100,107,96,107,107,99,103,108,75,106,94,109,107,104,100,96,98,103,101,111,94,113,92,113,100,100,89,105,101,97,114,112,100,113,99,103,104,103,97,110,106,107,87,93,102,106,100,104,114,90,116,95,101,92,104,100,99,96,105,110,106,91,109,101,114,106,116,96,106,113,94,121,105,93,111,99,99,112,109,108,102,112,98,113,96,99,111,107,98,100,103,95,119,104,96,101,101,110,110,79,97,106,101,100,112,109,101,105,101,98,109,107,109,100,94,118,115,112,115,100,99,100,105,105,104,97,105,107,107,87,91,112,103,97,105,96,104,108,100,103,109,105,102,97,98,115,98,107,105,115,110,97,101,122,118,115,107,103,98,100,104,99,109,99,105,101,125,95,99,107,93,101,109,111,105,109,109,96,113,108,73,111,95,102,107,102,114,113,109,102,109,114,99,104,103,102,105,110,103,106,91,109,105,121,74,113,103,112,94,110,109,83,114,109,106,101,109,102,103,102,105,107,99,109,107,98,114,107,95,105,114,101,98,97,100,101,93,103,105,109,108,115,104,91,106,107,102,105,88,112,95,108,98,108,109,100,99,103,112,114,113,98,101,105,115,107,96,116,82,109,109,114,97,91,103,118,113,102,104,107,105,107,114,92,102,108,102,117,102,107,112,111,111,108,105,98,104,112,123,110,111,100,101,103,110,98,101,104,104,108,96,111,110,104,108,108,109,104,114,109,94,93,115,111,106,108,103,106,89,99,96,88,100,101,97,113,114,93,104,95,98,109,104,103,114,108,109,105,88,113,105,103,96,114,107,108,92,106,97,99,104,100,100,96,100,92,104,104,101,133,112,109,107,102,103,107,90,95,112,92,83,104,99,111,103,104,117,107,104,108,94,103,102,124,100,108,113,108,91,93,111,109,109,109,106,116,101,126,112,108,94,111,113,98,111,111,88,99,92,102,108,103,113,107,104,110,96,101,115,112,108,110,116,100,106,102,105,98,101,108,96,105,99,98,102,102,110,105,109,110,98,101,99,110,101,109,102,105,103,102,108,110,95,95,99,110,122,100,101,132,105,101,123,109,80,94,109,106,105,103,105,107,106,112,108,104,111,90,98,102,107,97,108,94,107,116,101,103,110,101,105,102,102,106,105,98,113,99,103,85,101,116,120,108,103,100,102,111,99,105,108,117,110,101,95,110,110,98,103,106,101,105,96,102,107,106,115,126,103,101,108,114,95,115,103,109,92,112,80,100,101,98,94,99,105,106,109,116,103,116,103,98,110,98,112,102,104,108,109,106,117,112,111,111,110,112,104,101,98,126,96,105,110,88,113,103,104,91,99,102,104,98,105,91,102,110,104,97,108,116,107,105,117,102,97,113,108,108,108,114,101,101,115,106,110,94,108,109,105,109,103,99,91,99,120,106,114,88,107,106,111,113,103,100,112,129,103,95,95,109,102,115,122,106,102,100,109,107,103,104,116,116,103,109,109,106,102,116,113,109,101,96,103,116,102,112,103,107,108,98,107,100,105,109,100,102,101,103,108,108,103,109,104,100,100,111,102,102,112,121,101,113,100,129,119,109,116,109,98,116,102,113,100,103,103,93,108,90,104,110,86,107,102,107,101,94,96,110,103,90,117,102,107,104,110,107,111,104,102,99,109,113,112,100,104,101,94,96,111,111,102,108,102,108,108,105,116,99,98,103,100,104,103,92,115,108,116,100,97,109,100,102,107,114,107,100,113,108,102,108,102,98,100,102,107,98,115,102,112,110,106,110,96,103,106,109,88,103,106,119,105,111,94,99,103,99,104,107,113,110,103,108,108,107,97,108,108,106,101,104,104,108,100,105,109,106,105,105,97,104,122,107,105,100,92,101,103,98,104,103,108,103,108,106,106,95,107,112,97,112,102,117,100,101,102,87,91,100,105,109,102,103,91,95,102,105,121,113,99,93,104,91,94,110,97,101,109,98,112,100,108,115,105,102,105,93,95,103,105,105,95,112,96,110,117,105,109,102,104,105,92,101,97,106,105,101,99,99,125,104,99,104,99,95,104,127,104,108,106,102,103,100,91,95,102,97,93,92,104,105,104,112,110,93,110,111,100,109,95,100,121,96,99,110,116,103,109,103,109,111,102,99,113,105,107,109,101,100,100,106,92,108,104,119,106,111,100,105,106,98,109,99,102,104,102,105,94,122,105,92,108,116,104,88,96,113,119,106,105,96,108,104,107,108,101,102,103,114,106,121,109,111,110,102,108,111,108,102,91,107,104,105,106,106,102,100,98,102,97,97,106,115,113,107,105,99,104,107,99,97,101,106,106,101,109,101,102,100,115,97,103,121,96,91,111,109,126,100,108,100,92,107,98,99,116,105,99,105,114,109,105,103,111,106,92,108,108,102,108,104,107,98,105,119,102,109,109,116,107,99,104,106,104,104,110,106,107,106,124,107,105,108,98,104,113,97,101,103,97,102,100,99,107,105,106,93,95,90,99,101,94,103,121,97,116,106,108,105,103,106,103,119,92,106,112,109,97,108,107,110,100,115,94,99,112,98,118,111,106,121,114,106,104,102,111,98,115,94,101,111,106,109,121,103,100,108,106,115,109,103,101,120,107,112,109,103,118,100,97,103,96,98,104,102,108,111,109,109,99,110,109,97,98,110,110,104,96,115,102,105,104,104,100,116,110,111,118,104,114,100,103,103,81,103,115,115,106,100,115,110,89,112,109,117,109,114,99,108,103,110,108,104,89,108,91,107,107,104,102,114,100,125,99,106,99,112,114,102,116,97,106,116,105,113,89,108,108,113,101,103,111,107,109,89,117,105,104,89,114,117,98,94,108,114,96,96,113,106,103,103,101,110,99,108,105,107,124,111,98,118,102,103,111,102,102,108,107,91,102,107,107,104,95,97,100,113,109,117,110,98,104,94,98,105,112,77,107,95,103,109,99,102,91,113,108,114,116,118,105,105,112,112,108,102,101,91,107,103,114,124,114,88,109,109,98,97,107,97,104,100,93,99,109,110,98,102,103,94,99,120,126,101,95,76,111,104,92,100,96,108,114,110,99,101,104,105,109,98,113,103,116,93,98,100,111,107,98,106,91,101,106,65,97,107,107,101,119,100,105,107,118,109,104,112,115,102,94,112,94,104,102,111,101,98,115,96,108,109,101,103,102,115,113,104,105,107,105,104,108,103,109,109,110,96,107,103,90,107,110,108,119,105,109,100,112,106,109,99,106,112,98,103,110,100,97,108,106,107,102,87,114,105,86,124,97,102,97,104,103,93,96,96,107,101,109,102,111,103,104,97,109,100,109,107,98,107,106,105,113,113,103,108,106,108,104,95,116,108,109,102,109,108,106,113,108,104,106,111,105,110,102,95,113,136,111,101,110,107,109,105,96,107,108,110,100,103,88,108,98,106,110,117,100,112,90,110,103,104,102,102,107,133,97,101,97,98,100,96,96,95,104,112,104,101,102,107,98,103,103,109,94,90,124,108,104,105,104,102,109,104,113,100,111,104,99,101,101,110,100,112,101,99,96,102,115,104,116,104,106,107,103,107,99,104,118,113,105,107,80,104,116,92,116,109,109,104,105,98,110,111,94,97,112,112,99,104,102,113,100,100,79,99,110,95,106,107,99,106,98,108,106,103,109,110,105,121,98,96,98,108,111,104,108,105,103,108,103,102,106,90,104,114,141,111,106,108,101,103,103,107,96,121,102,101,95,100,105,118,107,102,103,101,93,99,105,100,104,105,103,109,111,94,113,111,91,104,106,104,102,106,102,101,81,106,113,109,104,100,117,114,109,101,96,112,99,110,107,105,106,116,116,102,109,104,102,112,109,104,102,105,125,103,103,102,100,118,102,114,98,114,104,91,102,88,104,75,109,115,95,100,109,96,108,98,107,105,123,113,100,97,103,109,103,102,98,106,105,104,103,97,94,103,93,112,94,111,93,107,113,108,110,107,99,98,106,113,103,107,105,114,113,112,104,91,98,98,101,104,93,113,112,108,106,90,107,107,105,104,104,93,102,109,112,107,125,97,120,98,111,110,95,105,111,81,133,105,117,105,98,104,104,112,108,104,110,100,105,109,111,101,98,99,107,111,100,106,95,95,98,105,99,97,94,92,106,107,112,106,119,101,112,103,99,102,96,111,95,101,109,108,102,106,120,109,72,114,122,98,107,102,122,103,101,98,108,106,100,107,112,101,117,99,103,107,106,95,101,100,108,110,107,127,108,107,98,92,103,102,108,105,112,106,115,114,112,100,100,104,113,109,102,102,103,99,99,112,115,101,98,105,101,101,108,105,104,94,95,103,119,116,104,105,109,104,99,98,99,116,100,111,98,104,98,98,116,105,95,110,106,129,107,104,99,99,103,106,99,100,98,97,107,104,112,102,92,107,100,112,94,112,102,110,114,114,86,104,116,102,109,109,117,95,92,113,96,97,100,101,111,106,106,92,104,100,99,104,109,97,101,114,103,93,102,93,103,85,113,109,107,111,113,103,109,99,112,105,87,106,103,109,101,95,115,105,102,98,106,93,105,107,96,96,110,109,102,104,106,112,110,110,109,101,111,96,96,101,96,109,101,102,106,107,98,82,102,107,113,120,108,92,96,106,97,113,104,115,99,109,100,92,111,109,109,96,101,98,105,113,100,93,99,101,101,102,92,95,104,112,109,98,103,98,100,103,100,97,109,116,113,104,99,110,103,105,119,99,104,105,98,100,94,110,93,105,101,112,94,103,107,95,104,101,103,103,76,82, +496.94012,96,105,87,117,104,125,107,105,93,103,113,90,97,91,105,97,87,117,105,93,92,99,96,92,98,104,95,104,89,107,109,64,89,102,101,111,109,95,96,106,112,102,95,113,112,83,111,94,108,111,97,103,104,99,91,105,105,98,113,86,96,109,123,100,105,99,94,105,97,101,117,111,106,90,90,108,103,90,106,95,112,105,113,110,98,95,94,104,92,96,102,107,108,107,100,101,110,95,91,104,100,106,97,98,103,107,118,112,99,103,99,99,100,104,104,97,99,105,113,95,108,101,108,116,104,101,99,86,110,97,106,102,74,96,108,110,101,121,110,101,108,101,111,106,111,99,114,101,106,101,107,108,95,97,97,98,103,107,109,92,102,99,108,107,102,105,99,112,99,108,103,105,101,95,115,99,106,85,112,112,113,104,107,108,94,103,104,74,94,105,93,112,98,105,100,107,68,103,97,116,100,104,101,117,97,116,92,102,126,124,92,106,113,100,97,100,106,94,107,114,81,107,112,109,95,114,104,109,107,107,98,100,103,100,101,106,105,101,104,94,92,109,125,102,109,107,100,107,93,99,84,99,106,105,103,106,101,106,103,110,101,98,88,101,100,105,108,98,114,100,105,108,104,100,106,105,106,107,97,113,98,105,98,113,114,100,98,95,112,120,103,106,104,107,109,109,106,103,102,109,100,93,102,110,70,105,107,94,106,104,96,125,102,99,105,99,102,103,109,72,107,121,103,108,102,97,99,105,122,107,110,105,108,94,105,112,103,95,109,98,104,109,107,104,95,98,114,115,104,88,105,113,118,100,97,95,113,109,97,108,107,111,110,94,115,99,99,115,99,87,110,110,102,105,105,104,101,97,108,77,96,120,95,113,101,102,95,109,113,85,105,109,104,106,110,98,102,92,101,118,110,112,103,108,104,98,107,117,108,109,93,104,108,115,110,132,100,105,104,108,100,100,89,102,105,101,120,101,95,109,89,116,117,97,108,114,107,109,102,108,109,101,111,109,99,101,112,91,110,99,113,107,107,114,106,103,105,101,100,112,109,101,105,104,106,117,111,91,102,102,104,104,96,107,98,88,101,111,122,102,101,101,114,107,88,105,110,107,98,97,100,99,112,102,98,109,99,112,104,108,106,101,107,121,94,113,100,111,116,100,102,109,113,101,120,102,103,107,106,100,107,99,97,117,105,103,103,106,104,105,101,101,109,110,104,102,104,94,107,99,91,106,103,100,110,107,104,104,113,89,111,109,110,106,103,114,105,116,98,113,98,109,119,114,100,106,103,95,115,97,106,99,85,100,99,91,105,103,104,101,106,96,113,105,106,88,103,121,104,112,112,112,106,101,99,99,106,91,107,100,106,118,105,107,99,113,108,101,85,114,98,114,98,110,103,110,114,117,115,88,107,109,99,105,108,107,102,119,109,103,104,111,97,92,110,109,98,97,102,109,109,107,102,98,95,90,103,99,111,111,108,110,101,105,115,116,102,121,105,104,116,95,109,106,119,108,116,107,114,107,103,111,115,107,92,105,103,128,100,102,107,106,115,90,104,110,107,101,99,108,103,87,91,109,103,103,110,106,105,110,100,91,110,105,109,118,105,109,105,102,107,108,103,107,105,93,102,108,98,105,100,101,104,114,97,102,105,78,102,98,103,104,103,106,97,101,109,105,102,102,103,109,110,102,91,105,118,103,102,104,100,96,92,108,102,97,110,108,108,117,109,99,101,86,94,107,97,113,104,99,96,100,112,102,98,110,117,96,106,95,107,114,100,111,117,114,100,130,109,112,70,105,108,110,97,114,91,91,109,118,106,99,109,109,109,106,111,104,104,105,111,103,114,101,98,102,108,100,106,102,110,107,95,106,115,105,105,110,113,100,110,103,101,108,99,110,115,97,95,104,118,101,107,107,99,106,102,97,102,110,104,96,108,104,98,108,109,102,107,108,120,102,93,110,103,109,104,102,104,90,110,103,106,102,98,103,106,96,103,97,104,91,100,85,109,107,105,112,101,101,112,104,107,110,99,97,100,105,98,108,95,107,113,103,94,105,93,113,97,92,98,101,101,103,120,98,105,96,109,116,96,106,113,104,104,102,111,97,77,96,90,107,99,114,106,100,99,111,112,117,90,103,112,100,108,113,101,104,107,71,109,100,116,107,104,105,111,102,109,103,108,94,100,96,102,105,107,102,110,99,103,102,110,103,89,116,90,105,101,94,104,96,105,98,94,105,99,103,96,103,112,102,95,86,100,91,101,107,88,127,111,100,98,105,107,95,116,114,92,111,105,105,109,99,90,94,98,105,98,104,109,96,108,92,107,109,100,104,107,104,99,103,102,102,110,99,103,110,116,99,114,90,109,106,101,74,107,102,107,105,113,100,108,114,113,104,93,110,67,112,114,101,109,103,112,119,97,120,104,105,86,105,94,104,113,104,102,105,87,103,113,109,100,112,108,119,105,110,120,108,117,103,103,111,112,99,104,97,103,112,108,109,104,99,107,107,108,102,115,102,103,120,108,102,105,97,113,103,99,95,109,111,98,106,102,99,105,94,99,108,102,108,101,107,103,99,95,106,104,95,103,100,102,117,102,100,97,99,111,105,111,106,109,108,100,94,113,110,105,96,108,89,95,90,105,111,99,109,104,115,99,105,114,106,107,101,107,102,109,96,102,83,104,112,90,110,110,95,101,103,94,100,104,125,100,105,104,101,98,93,103,121,103,96,107,93,108,129,97,108,98,111,92,106,100,111,108,107,100,107,106,110,100,102,128,108,107,105,101,110,91,101,91,106,105,98,108,116,112,89,103,95,105,93,108,96,108,107,111,100,103,105,104,113,100,113,101,117,94,111,102,113,101,113,124,105,113,105,105,110,109,107,118,95,105,113,108,99,102,115,77,99,107,106,108,104,103,87,116,112,105,116,98,115,99,106,101,102,109,112,103,112,107,103,93,113,119,105,109,91,102,106,103,101,104,122,109,103,116,101,111,106,106,99,104,98,112,103,112,108,107,93,103,107,108,102,121,113,111,102,100,109,102,107,112,100,116,103,96,104,102,121,100,104,102,116,113,109,111,95,123,107,108,89,112,101,100,102,121,91,92,104,112,105,104,99,99,94,101,88,108,97,112,99,105,106,106,111,101,99,97,96,108,100,106,100,97,105,116,105,101,102,102,115,100,120,108,108,103,102,112,96,109,96,87,97,76,107,105,103,116,104,98,99,102,98,102,107,107,108,108,101,105,116,104,104,89,102,99,103,98,102,102,117,91,108,109,103,83,95,98,88,105,102,99,108,110,114,109,97,101,105,115,115,105,87,102,88,106,102,97,108,108,112,106,99,92,101,99,101,98,106,104,107,105,105,109,105,107,109,100,109,106,110,104,112,105,102,108,97,91,115,98,102,98,105,92,104,107,102,102,99,107,98,99,104,103,95,92,120,94,105,107,108,98,107,93,102,105,91,102,96,110,86,99,99,112,105,105,100,107,94,100,68,112,107,100,91,91,98,107,101,104,98,98,107,111,102,102,96,104,102,107,89,95,108,96,107,94,121,113,101,101,98,99,110,99,106,104,98,103,106,99,110,99,94,105,99,103,100,96,109,116,106,99,101,111,98,92,105,95,108,117,104,104,102,114,111,90,113,81,95,105,103,104,101,106,98,104,102,103,105,105,101,113,100,103,98,111,97,108,105,109,102,115,101,105,101,102,108,110,106,89,104,104,102,102,104,110,97,109,113,111,104,104,103,105,96,114,117,104,98,106,101,111,113,96,106,115,92,109,97,96,103,105,92,107,115,112,105,101,113,98,98,103,108,105,108,98,112,105,105,116,111,101,105,110,93,112,111,94,103,103,115,107,109,95,102,103,93,107,106,103,106,102,107,103,99,103,104,123,106,95,107,111,91,111,85,100,98,102,102,101,108,108,109,107,113,95,117,107,100,91,106,90,117,94,94,107,97,110,105,96,111,113,97,115,102,108,101,94,98,102,114,107,99,107,103,103,109,96,102,90,108,115,98,102,108,100,110,108,99,98,99,104,91,117,105,94,95,100,107,112,105,107,104,108,104,102,95,88,101,111,125,102,102,90,98,102,104,117,100,103,114,95,119,109,99,106,96,105,110,112,117,99,102,106,95,108,100,111,98,90,117,108,103,101,106,108,102,123,104,99,117,111,113,97,105,111,103,107,117,110,102,113,104,108,107,102,102,99,113,109,104,104,99,110,114,98,106,105,106,112,102,106,110,111,93,99,88,106,104,109,101,99,107,105,91,106,101,108,104,98,97,100,105,106,107,97,94,108,94,105,99,109,103,101,97,103,94,109,95,104,105,98,95,100,95,109,106,99,107,110,107,104,102,104,88,117,96,114,106,102,109,103,102,108,113,94,98,92,90,104,120,99,103,100,95,106,97,122,113,97,105,90,114,100,89,101,111,100,102,103,112,79,101,92,101,93,94,100,106,99,106,109,120,98,94,105,111,103,90,107,109,101,99,104,97,99,97,106,107,102,107,106,90,123,92,110,125,110,99,96,100,98,100,102,112,101,109,113,107,113,115,103,110,113,89,98,121,101,103,103,123,110,96,104,114,103,105,102,116,101,98,111,101,120,103,103,109,91,98,94,103,123,107,129,109,106,94,96,100,107,104,103,100,101,93,66,102,104,94,106,105,118,101,114,96,101,88,100,102,107,107,108,94,106,95,109,108,97,100,107,109,110,100,107,109,106,117,101,95,96,110,105,98,110,110,112,108,90,77,93,107,112,100,101,96,103,115,113,102,103,112,113,106,104,102,101,94,104,91,93,85,112,121,111,95,73,102,98,108,96,109,93,97,87,108,101,81,102,96,105,85,108,96,97,107,105,101,93,107,102,117,98,101,115,104,110,105, +497.08075,109,106,99,103,79,99,96,112,101,102,102,89,106,103,119,110,106,123,112,94,113,103,94,111,115,113,109,93,102,118,104,117,107,94,106,98,98,91,120,114,101,101,109,95,106,101,113,98,91,106,96,106,98,88,103,91,108,101,115,89,112,103,98,80,102,119,104,112,118,88,117,118,110,94,95,113,107,92,122,94,102,105,100,95,106,95,101,124,103,100,99,113,113,88,108,102,114,112,103,108,96,105,108,102,103,95,109,101,100,104,99,102,118,105,104,112,95,109,102,110,102,100,95,107,97,102,101,87,112,95,110,104,104,109,109,100,94,98,110,118,92,111,106,98,95,104,118,101,103,101,101,105,97,108,99,101,118,88,108,92,103,98,103,116,107,104,99,93,96,110,102,108,97,113,108,110,104,100,104,106,109,103,116,105,117,101,109,92,106,107,118,105,113,103,104,102,109,111,102,107,112,99,114,96,97,87,94,97,118,87,120,110,109,106,98,102,105,102,99,104,108,110,121,107,123,108,99,109,103,105,99,116,97,111,107,98,115,100,107,102,94,108,109,105,104,97,105,109,103,110,97,103,111,104,108,100,105,108,87,117,97,110,109,109,95,101,104,103,102,95,124,102,109,115,107,104,105,116,112,124,116,98,112,94,117,103,96,114,121,104,102,124,104,108,111,95,118,113,102,102,111,100,103,115,94,112,110,94,102,116,106,106,112,112,100,99,101,113,112,105,105,109,110,105,95,79,114,100,110,117,99,99,110,105,100,107,105,105,109,103,109,102,111,103,109,98,98,109,120,108,109,112,102,106,108,109,99,116,108,112,118,100,103,101,122,91,109,109,112,112,106,112,111,106,98,117,100,106,100,102,106,106,114,113,108,117,106,107,99,104,111,92,112,130,99,105,105,108,104,107,104,103,140,108,94,102,110,98,99,97,100,103,87,121,108,97,93,98,129,125,109,105,101,111,99,93,103,77,106,111,92,109,107,102,117,88,109,118,101,106,103,100,113,102,104,98,103,91,108,108,107,100,95,120,92,99,112,104,112,100,82,98,113,103,95,98,102,87,109,100,105,112,103,102,100,98,111,106,111,113,103,101,105,114,113,98,110,106,107,109,101,99,103,104,101,107,101,121,111,98,105,106,113,111,106,114,103,90,104,106,109,120,97,109,107,95,92,103,97,96,95,101,111,99,114,102,106,98,101,106,98,102,102,111,114,104,107,102,102,112,97,104,65,102,117,124,121,105,90,108,101,104,106,105,102,101,107,114,101,94,106,108,108,113,104,108,108,114,99,108,97,102,102,106,99,107,107,106,106,105,106,114,105,105,100,95,116,106,109,103,107,98,104,111,116,105,109,112,100,105,106,103,102,106,105,98,100,104,103,125,96,106,116,102,109,104,107,93,124,109,97,104,101,99,109,95,94,103,105,99,103,115,110,111,98,114,97,107,97,96,108,115,98,98,109,105,106,106,105,109,100,112,110,106,104,102,116,103,106,102,105,100,112,103,84,123,120,78,106,120,121,115,106,109,96,102,112,113,107,102,119,102,108,103,109,102,98,101,100,113,109,108,100,118,119,121,102,90,107,118,110,105,121,97,100,96,101,111,107,110,103,100,103,110,105,98,112,108,106,105,96,98,107,103,102,119,105,101,108,114,120,111,97,95,109,106,110,100,96,104,102,95,110,93,114,109,117,103,114,104,106,103,93,110,107,102,110,112,115,101,106,114,105,100,92,109,100,113,101,83,106,101,109,103,101,101,91,99,95,108,108,111,113,112,107,112,102,111,105,110,113,111,122,105,105,110,126,109,104,120,92,107,105,106,128,111,93,99,128,104,112,112,98,104,97,107,101,92,112,83,108,99,122,109,112,83,93,99,110,96,99,98,117,103,107,106,105,109,106,107,96,107,113,126,107,115,108,94,100,112,99,99,117,107,99,103,112,110,103,104,113,101,100,113,102,104,93,94,103,100,101,117,107,122,99,108,116,90,115,99,107,109,105,117,109,109,100,121,117,108,113,111,104,98,110,98,116,81,117,103,100,114,99,105,113,108,106,110,104,103,101,92,112,99,105,94,92,102,98,107,116,105,106,101,105,94,107,91,102,111,107,107,116,112,103,107,114,104,105,88,103,99,98,100,111,106,104,84,104,121,112,100,120,115,106,107,105,97,113,103,107,96,105,96,91,100,101,102,108,115,106,100,100,117,107,103,100,102,103,107,91,118,120,107,94,103,95,101,122,103,109,107,103,88,95,98,94,106,111,100,125,115,99,106,111,92,101,120,111,98,108,105,102,99,105,102,107,105,103,101,107,110,95,97,103,104,109,101,104,98,113,105,109,93,107,96,123,115,109,107,100,108,89,103,96,104,117,114,99,109,92,107,107,93,101,110,87,101,106,104,102,111,92,94,108,88,106,95,97,104,106,117,112,105,112,113,113,98,106,105,105,102,101,112,108,103,116,112,105,111,108,82,105,97,98,107,111,108,111,104,113,114,99,111,109,102,109,99,105,103,107,105,94,90,104,102,92,108,99,107,99,113,107,113,111,97,85,100,112,108,122,106,108,105,105,106,107,94,91,98,95,100,94,102,100,102,96,106,99,98,102,95,98,99,93,98,108,101,87,106,116,107,112,135,108,109,111,90,116,105,109,108,108,96,102,100,102,96,108,103,101,104,107,100,104,112,104,103,102,113,98,105,113,115,99,97,107,91,108,135,110,114,109,106,112,111,103,108,108,99,108,110,100,107,103,117,107,102,108,109,102,108,99,108,113,97,107,105,110,120,96,97,94,100,106,102,102,116,106,110,93,102,105,104,102,104,103,104,103,106,107,112,106,96,110,102,103,99,103,106,102,123,105,120,110,109,102,93,104,101,103,107,116,106,93,114,101,96,101,111,97,99,101,110,103,102,107,112,125,105,101,110,127,110,111,106,87,100,107,108,103,105,101,109,106,105,112,106,102,102,103,82,89,95,109,105,101,104,97,104,108,107,103,107,110,95,103,110,108,102,104,99,106,114,103,111,98,117,111,110,109,94,118,102,104,104,95,113,104,101,111,112,105,103,98,96,112,97,108,105,105,124,110,101,109,102,100,80,105,109,105,99,102,83,108,117,107,103,103,101,110,108,102,121,112,104,98,108,108,103,102,93,103,108,104,113,110,98,101,104,102,102,100,87,106,95,109,114,105,87,95,97,106,103,104,102,96,105,104,107,108,100,106,115,106,106,90,98,108,103,105,110,113,101,101,84,99,98,107,113,95,101,100,112,102,95,99,122,91,88,94,100,104,97,113,103,106,115,108,110,91,95,102,102,106,103,102,96,96,102,104,99,110,108,103,125,106,110,103,112,109,96,95,116,98,93,101,106,96,109,111,99,108,102,93,102,112,97,107,94,109,102,97,108,93,104,104,102,84,109,96,98,91,102,109,96,105,103,99,104,103,106,113,96,111,107,106,98,102,104,107,101,96,99,103,109,114,106,106,105,109,110,90,109,108,98,113,101,87,84,104,110,107,118,96,99,106,98,104,80,94,103,100,106,109,105,102,99,98,104,102,96,98,105,97,93,104,98,99,111,99,107,98,110,113,102,114,105,100,109,99,97,98,101,93,100,110,101,99,101,105,105,101,93,112,104,95,102,111,110,95,101,105,106,116,100,109,103,96,99,101,102,101,110,113,97,107,91,120,95,103,108,124,115,101,83,99,113,95,106,100,107,99,96,107,102,106,98,107,96,91,90,108,101,101,107,102,101,105,113,99,91,104,105,97,113,113,113,107,107,103,99,95,111,66,102,106,106,96,93,104,111,101,91,105,116,98,103,108,108,105,101,106,102,100,100,125,98,112,103,102,97,109,107,98,95,113,103,99,91,110,102,98,102,97,97,103,99,106,126,99,110,98,103,98,111,108,96,105,96,97,96,98,117,93,96,122,99,94,101,107,105,90,108,98,98,102,101,101,106,104,110,105,105,109,96,100,103,88,102,102,97,107,105,124,105,102,107,109,105,103,97,103,103,103,108,108,105,105,109,95,125,104,95,96,105,100,104,94,107,114,97,111,102,100,88,112,120,96,104,99,104,91,106,110,100,108,98,106,93,103,115,111,106,107,119,105,99,105,100,102,94,119,104,98,97,100,105,103,106,115,98,102,98,97,115,123,106,106,100,107,112,124,109,108,121,98,103,132,113,99,117,108,113,98,98,105,98,95,96,109,107,92,98,86,96,115,102,104,105,104,104,115,110,110,111,92,96,102,102,100,97,98,99,111,106,106,103,102,98,110,101,95,98,105,102,104,86,110,113,105,111,102,99,98,108,106,107,101,117,95,109,91,108,102,98,108,123,92,107,69,104,103,117,104,95,97,117,96,103,107,108,95,109,113,105,110,99,115,113,102,91,101,93,107,108,93,103,104,105,103,96,95,91,92,104,95,108,95,107,115,113,111,95,104,97,107,95,106,99,101,96,104,114,104,107,96,105,110,109,102,108,104,101,93,105,105,99,99,98,104,101,102,109,106,100,91,111,93,113,98,107,116,108,105,96,97,102,102,113,99,114,106,107,108,100,96,117,95,94,98,99,113,110,109,110,91,110,109,111,106,95,97,94,111,99,91,107,92,97,114,108,108,90,117,99,106,108,108,102,99,107,103,99,106,111,108,94,101,96,103,89,100,99,102,110,99,109,102,97,102,102,113,107,97,103,109,99,98,99,104,117,113,106,114,106,99,112,116,120,106,98,100,100,109,95,93,96,105,110,110,104,110,108,107,110,100,104,101,104,88,112,91,108,112,104,91,107,98,104,107,99,110,111,108,103,87,106,99,118,94,110,101,73,101,93,100,99,102,97,103,106,95,105,117,95,108,107,104,102,109,96,102,102,114,101,105,106,113,90, +497.22137,104,104,101,103,105,75,108,117,99,108,97,83,100,88,95,96,103,116,117,104,110,120,109,101,113,98,105,103,119,112,109,102,100,106,128,89,124,109,103,98,98,101,103,92,83,108,113,114,107,92,105,113,129,100,105,116,111,94,115,97,102,101,105,99,116,103,114,96,100,92,105,96,94,102,115,106,112,102,110,100,105,107,112,99,102,95,103,113,98,102,117,104,102,101,101,105,82,95,120,103,121,113,105,106,117,109,103,102,99,108,112,92,101,94,111,100,109,104,112,99,101,101,102,98,109,108,101,105,110,104,106,110,106,111,102,106,97,101,102,112,97,100,95,102,109,111,114,104,105,108,116,98,96,104,95,95,103,92,109,105,105,112,106,104,111,116,113,106,111,105,104,104,99,111,113,112,105,103,97,105,111,122,104,106,106,97,95,102,106,113,97,110,117,104,105,99,102,112,108,110,95,102,125,101,104,102,113,101,118,102,101,105,112,95,109,109,109,110,97,102,105,101,101,96,97,114,102,99,97,101,113,109,113,107,107,106,104,109,110,106,97,101,108,107,109,96,106,99,96,108,102,105,95,100,104,110,108,106,96,105,100,102,106,108,110,112,95,99,110,102,103,107,98,98,111,105,113,107,112,115,110,111,99,100,105,106,102,115,102,95,101,102,105,114,107,84,118,108,106,125,98,104,105,97,98,113,112,106,110,101,97,108,110,104,84,112,105,105,104,103,104,121,96,114,113,115,112,100,110,104,111,91,99,106,93,106,109,105,105,115,102,109,101,93,109,98,106,109,111,106,116,117,106,93,109,111,100,100,107,103,95,96,97,103,99,113,113,113,107,112,102,111,103,112,109,102,113,92,99,112,113,105,107,108,103,95,87,80,109,103,107,105,98,110,93,113,95,109,116,110,106,106,99,99,109,98,108,108,110,100,113,106,98,113,94,106,95,105,126,106,102,94,103,103,108,91,118,104,92,112,108,98,109,125,115,102,100,112,107,113,104,105,101,97,99,103,102,101,118,100,103,112,104,106,110,80,104,133,106,111,107,101,104,98,121,117,115,119,109,122,98,101,114,107,102,111,100,116,75,109,108,124,103,117,106,104,114,99,103,111,114,105,109,103,99,107,108,103,115,99,107,116,113,108,106,97,102,105,106,101,119,105,104,107,111,107,99,96,117,103,115,108,104,103,104,100,104,126,102,109,103,101,97,107,99,106,102,110,96,115,108,106,108,99,91,104,113,102,109,107,105,101,102,101,101,117,95,99,105,108,103,109,104,109,110,127,116,95,112,100,95,107,100,119,113,112,91,111,101,104,98,103,105,104,106,94,103,101,94,110,110,105,106,103,103,116,101,92,108,102,82,119,112,96,104,96,115,124,107,97,94,98,118,106,84,106,106,112,113,86,96,120,112,88,98,104,102,113,108,101,109,100,95,103,118,99,99,99,87,104,97,111,98,106,93,111,100,103,113,113,91,110,97,115,105,115,98,108,100,109,110,112,109,113,95,106,79,109,118,105,128,109,117,112,103,116,100,102,106,99,109,110,105,105,98,113,105,115,103,115,115,100,104,101,96,112,107,110,107,110,103,104,113,100,100,107,111,112,113,114,95,111,109,109,104,112,98,103,107,95,111,109,110,115,105,91,108,103,114,107,103,102,111,105,108,104,108,93,106,106,111,116,110,99,111,104,107,109,102,117,115,115,106,105,87,97,106,101,91,101,96,96,100,127,94,100,96,101,90,105,99,126,114,99,101,107,117,106,115,100,107,107,110,115,92,102,115,111,101,107,110,95,107,106,112,110,108,108,108,114,102,113,99,112,112,105,105,114,105,100,103,99,94,105,111,99,110,114,111,107,106,109,124,99,100,116,112,103,100,99,111,100,108,114,112,106,109,104,109,98,114,103,92,100,96,103,110,105,102,103,90,97,98,103,99,118,104,90,108,101,90,109,97,105,107,116,102,106,106,103,95,109,105,110,93,112,107,99,108,120,106,109,103,112,99,113,100,110,116,121,102,115,101,109,116,108,106,104,101,114,100,109,107,115,99,92,96,108,96,114,99,108,116,117,114,98,105,87,105,110,99,105,104,98,98,118,105,105,113,102,105,92,99,106,115,110,100,103,110,100,106,112,109,101,107,108,96,121,104,109,104,97,117,105,107,101,108,115,100,104,110,102,110,107,109,104,105,106,106,95,84,106,102,101,103,106,114,101,91,99,102,111,112,105,106,99,113,113,97,105,102,109,108,110,102,99,105,96,102,108,105,95,99,112,100,111,110,118,94,108,100,108,108,111,103,102,109,80,107,106,112,113,94,102,108,120,102,102,107,101,100,105,99,109,101,96,104,117,103,113,106,110,112,101,103,105,104,98,100,103,113,102,110,101,108,107,112,107,102,95,91,107,116,108,94,112,89,106,94,93,94,103,86,118,77,114,79,105,111,104,109,96,113,107,106,114,111,113,115,106,112,116,108,113,96,107,102,100,111,111,96,100,117,95,104,108,103,95,106,109,103,110,103,117,101,112,101,112,101,107,116,100,109,102,106,104,115,98,107,106,110,113,100,92,111,107,93,106,118,99,105,95,105,112,102,101,110,111,109,96,105,103,105,103,102,105,110,118,112,109,99,95,103,108,100,108,115,108,118,108,103,111,117,110,109,101,100,118,98,105,106,103,98,104,105,103,109,111,101,100,94,109,117,105,98,100,102,112,97,107,109,108,99,102,105,100,103,95,126,117,110,105,105,110,109,104,95,104,99,108,117,118,102,106,105,99,88,109,100,114,103,110,104,103,112,109,100,92,103,115,109,100,108,92,96,113,102,101,102,113,116,96,118,116,99,106,99,101,106,116,105,117,100,105,115,109,98,102,112,107,112,105,110,99,89,94,91,101,107,108,111,116,113,106,99,117,108,94,108,110,105,102,106,102,95,126,95,95,109,107,107,106,107,104,114,112,109,108,101,103,107,99,107,103,98,107,109,108,103,105,108,102,102,107,117,113,114,104,107,103,116,103,109,108,106,113,98,113,112,107,106,113,99,108,99,97,118,112,106,98,106,113,94,95,99,91,93,108,93,100,98,112,111,104,121,101,114,107,99,100,109,103,111,111,109,119,104,106,100,98,110,88,107,116,104,87,103,124,112,107,123,98,110,109,110,110,97,111,104,104,103,103,84,98,105,108,106,99,103,114,107,113,105,98,107,108,103,108,112,100,104,95,99,108,88,102,106,104,113,99,110,128,108,104,106,102,103,97,84,123,106,102,95,97,99,103,92,101,111,111,109,105,108,106,108,99,103,108,104,111,100,100,109,105,97,95,102,112,101,109,108,111,107,103,102,111,100,97,96,112,109,110,102,105,107,93,100,103,109,105,102,97,94,98,107,107,92,99,98,112,91,113,99,94,110,101,105,118,108,107,107,111,105,98,108,101,93,101,113,100,99,104,109,103,105,101,111,99,104,102,109,110,121,100,107,107,100,118,104,106,111,102,117,100,103,115,110,107,94,105,109,112,110,109,106,105,100,106,102,95,98,99,115,107,118,107,101,105,98,112,112,96,105,102,100,98,100,106,109,106,104,105,104,98,100,102,104,104,107,98,94,108,103,94,109,103,110,101,109,101,96,106,105,103,99,94,107,93,98,119,102,107,104,104,114,105,96,118,114,99,111,108,112,107,102,106,115,99,104,104,110,100,117,113,102,111,109,114,110,95,96,101,102,87,102,118,102,107,117,100,93,101,105,102,106,104,96,121,116,101,107,102,109,103,117,120,91,102,112,108,105,103,106,100,94,94,108,101,95,96,105,117,106,94,116,113,101,102,91,107,104,119,99,116,112,107,110,100,107,106,98,107,104,108,101,104,112,105,104,99,108,98,123,117,99,97,112,101,108,103,102,94,103,115,100,96,105,107,114,109,113,91,100,106,102,101,97,105,108,112,113,129,111,113,101,105,94,110,111,108,110,100,102,96,102,111,105,105,99,99,98,95,98,106,116,101,108,107,108,113,112,94,109,95,114,110,114,106,102,103,99,103,117,108,102,103,108,107,114,104,113,109,106,104,108,98,88,106,76,103,100,104,109,109,126,99,94,102,90,98,105,98,107,108,100,109,105,105,103,105,96,96,102,110,103,109,106,100,99,110,112,87,97,93,110,92,105,106,107,98,110,102,115,102,112,104,96,113,110,115,104,101,106,103,104,109,106,101,104,109,112,101,109,91,99,108,107,107,110,94,101,107,106,95,99,111,101,103,112,101,91,102,109,108,111,101,101,102,98,103,99,90,102,91,98,100,102,105,108,105,114,109,97,101,108,109,104,100,112,109,112,105,103,107,109,103,105,104,113,106,108,112,114,109,109,103,106,112,124,108,109,114,102,108,88,98,107,113,98,105,94,101,103,103,120,116,87,96,102,107,111,102,116,101,102,95,105,96,103,110,102,113,89,107,103,103,97,92,108,101,106,102,100,107,105,104,82,102,116,104,93,102,103,104,112,93,103,108,101,108,99,123,107,100,87,102,109,116,75,99,107,105,109,95,109,101,103,88,108,82,117,94,101,101,101,103,101,125,109,105,104,105,116,106,118,105,105,97,104,101,102,97,100,95,104,91,85,89,112,93,103,102,108,111,106,93,103,85,102,106,98,83,101,109,100,91,108,114,106,117,106,101,110,113,103,108,102,109,96,85,101,64,101,100,110,102,102,99,97,99,96,103,92,98,103,94,105,93,91,116,108,96,114,95,97,101,110,103,107,115,113,87,103,113,110,87,107,97,92,97,101,98,93,107,100,95,98,103,101,94,106,96,68,94,115,113,105,111,102,90,106,106,101,67,89,103,96,111,105,118,109,105,104,91,100,113,88,108,97,89,99,93,103,98,102,104,112,102,113,87, +497.36197,105,99,98,93,102,105,109,91,106,98,124,103,93,91,115,96,104,106,101,105,87,106,83,104,106,98,95,106,103,117,116,100,97,103,101,107,107,123,111,121,103,95,110,115,104,94,107,110,95,101,100,98,99,101,92,96,94,90,112,103,99,115,105,112,98,118,78,89,103,100,95,108,106,105,75,109,92,99,111,104,110,97,83,94,115,90,99,104,108,108,107,116,91,99,111,88,103,95,101,106,99,107,96,114,113,104,113,111,101,95,99,95,110,114,109,96,99,100,105,96,96,103,92,116,110,107,114,91,108,95,103,90,99,108,105,106,97,97,99,103,105,109,102,104,113,94,103,103,113,108,118,110,100,97,100,97,99,102,103,102,95,111,109,97,113,103,87,106,105,101,97,103,112,101,104,96,102,90,112,98,105,97,109,111,104,105,98,107,97,106,93,113,107,107,108,109,110,94,110,111,98,99,111,109,107,92,91,113,102,119,102,118,115,103,110,101,98,93,98,117,105,110,106,105,100,105,106,103,99,108,99,109,107,110,89,101,110,105,96,102,105,99,87,116,102,79,102,105,103,107,116,111,109,103,110,101,100,110,105,119,103,109,104,129,87,104,103,101,99,100,113,101,101,85,109,105,97,103,104,102,100,102,93,109,104,107,101,110,122,101,110,112,113,111,104,117,105,133,105,101,114,118,103,110,104,101,108,115,94,117,101,122,109,103,122,104,100,97,103,124,78,99,112,116,99,107,101,99,116,106,102,107,94,106,100,108,108,87,111,104,97,102,100,102,104,110,103,113,105,111,105,120,110,94,103,102,99,110,107,101,108,109,102,99,110,104,96,107,112,111,109,120,102,106,107,98,112,113,110,94,112,79,98,99,102,102,99,103,102,102,104,99,95,103,112,106,100,100,99,120,99,106,98,94,103,120,103,107,108,100,96,100,95,110,91,98,106,94,106,105,97,104,96,106,110,95,97,92,104,105,90,106,111,94,107,111,104,101,105,108,104,101,109,104,102,109,109,97,100,106,77,101,107,102,108,117,104,98,107,105,97,99,104,104,112,109,106,108,100,102,109,108,104,120,105,99,97,103,100,104,95,104,100,102,105,92,117,103,110,107,109,95,98,98,103,112,99,104,93,131,98,97,114,109,108,97,101,103,107,99,101,106,99,110,105,109,108,106,110,99,103,97,103,111,106,111,108,114,88,94,98,111,109,99,102,99,107,105,136,105,98,116,101,103,90,110,86,105,100,110,115,112,105,116,102,102,113,102,95,101,113,121,104,102,103,104,107,102,112,100,102,103,110,108,111,107,91,104,96,108,106,103,103,95,109,98,108,112,110,101,99,103,112,108,108,105,105,104,105,102,118,112,100,109,102,98,100,96,103,108,121,104,101,81,105,104,115,108,102,104,112,105,103,97,113,98,110,110,100,101,86,103,106,109,101,102,101,99,103,101,110,98,107,109,98,92,110,101,105,103,109,110,102,90,83,105,123,95,98,107,99,110,87,89,102,100,100,102,101,90,106,101,107,103,107,96,117,86,109,114,116,121,114,91,110,94,110,121,105,103,113,113,101,115,125,105,107,100,102,105,95,106,106,103,105,105,99,105,118,103,110,102,117,103,104,105,106,123,97,107,112,95,106,105,105,87,114,108,101,109,108,109,111,101,104,101,104,103,105,96,110,107,116,103,99,99,100,101,100,109,117,101,107,106,97,109,87,98,94,89,109,109,109,109,112,101,113,107,108,103,107,109,101,100,104,108,125,105,105,96,98,99,104,101,106,100,103,117,108,107,104,106,110,112,111,106,100,98,105,108,100,97,105,95,106,116,124,120,91,91,113,136,102,105,100,102,112,108,110,109,91,112,101,112,114,108,84,108,111,106,105,111,109,112,103,110,98,109,110,107,101,115,107,114,101,103,94,94,104,103,93,133,90,106,112,113,89,107,101,117,93,103,108,109,107,109,98,103,112,118,103,121,95,99,113,103,114,106,110,100,109,100,114,101,106,95,99,114,89,104,116,102,103,90,96,99,112,113,105,75,105,115,117,95,90,102,105,100,106,111,109,105,110,107,106,107,105,123,121,121,108,116,107,113,110,107,98,107,105,102,120,102,106,102,102,109,105,97,97,119,102,69,113,107,90,98,98,108,100,96,111,77,113,103,100,99,97,110,99,94,97,118,111,97,100,102,99,110,114,94,103,103,116,109,94,119,102,98,103,108,108,96,107,107,116,103,110,96,114,104,103,103,120,102,102,104,98,103,104,105,104,98,101,100,106,100,101,100,81,108,103,105,105,87,99,101,96,108,100,108,101,101,103,91,110,114,109,101,105,97,95,109,103,105,109,95,103,112,107,91,104,109,95,104,102,90,106,104,90,103,110,99,107,112,115,99,113,99,101,94,100,112,108,110,106,100,95,101,107,90,101,99,95,91,104,104,98,106,102,88,101,91,94,106,110,86,93,103,107,100,103,101,117,76,99,102,97,104,100,104,98,101,90,114,103,111,101,98,104,106,102,101,87,112,96,102,97,108,78,91,104,103,107,92,106,112,103,109,100,99,97,108,110,95,105,107,98,108,95,101,100,88,104,111,103,97,96,115,98,97,106,107,105,99,100,115,109,106,98,116,97,89,97,98,109,106,135,93,122,92,97,107,121,100,115,106,104,101,102,107,104,87,105,108,110,104,115,86,104,118,99,100,108,103,94,108,105,99,105,105,100,103,102,110,106,107,115,102,104,98,101,111,99,123,135,101,113,120,98,103,114,111,102,97,98,102,100,103,112,97,110,107,98,108,109,105,106,108,99,135,107,100,113,110,102,104,112,106,93,106,108,104,110,98,95,107,110,104,91,99,98,102,112,101,97,93,98,106,102,98,103,115,105,102,99,112,105,107,93,98,104,95,95,104,91,104,101,96,99,94,103,102,96,98,104,97,104,111,99,90,123,101,97,96,107,108,94,100,109,98,94,103,107,100,107,101,105,108,104,109,112,105,106,108,108,102,105,101,121,99,106,102,103,112,80,96,100,91,100,105,96,106,111,107,109,106,98,101,100,103,96,111,102,113,104,115,99,102,106,106,98,109,106,94,107,105,104,104,103,103,99,106,100,111,96,98,104,96,102,98,110,96,106,97,105,101,102,107,97,121,96,88,108,96,106,99,93,87,98,105,110,93,115,101,88,106,91,104,102,97,103,91,108,102,109,102,109,109,110,95,119,112,93,101,93,101,90,92,106,79,95,94,108,114,108,101,97,104,102,105,97,103,95,102,111,97,102,96,103,104,100,98,92,108,110,97,105,107,100,97,114,100,101,91,106,110,99,102,94,96,91,113,105,97,92,106,101,90,117,101,97,106,97,99,95,96,102,102,106,102,111,96,100,104,106,102,102,108,107,107,107,107,101,112,102,91,98,101,111,102,103,100,116,96,111,79,95,103,102,112,106,111,110,111,107,104,106,111,105,105,104,97,103,108,106,100,117,97,98,102,106,116,101,111,111,97,105,113,105,107,105,108,121,98,103,99,109,106,102,103,103,106,99,97,107,97,97,108,111,112,103,98,98,68,119,101,102,92,104,116,105,106,107,102,103,99,94,97,103,112,90,117,105,96,105,103,120,105,105,97,97,102,110,99,106,95,92,107,110,116,79,99,103,112,106,98,102,94,106,101,116,108,98,113,101,111,104,99,102,101,109,100,108,98,114,107,104,103,98,90,110,106,117,98,111,108,101,109,96,102,109,105,108,93,96,102,113,96,123,104,99,105,106,103,109,107,96,107,109,96,110,126,92,115,103,95,101,113,100,94,115,97,103,104,106,101,104,102,93,115,105,106,103,107,102,112,107,104,101,101,101,68,104,120,99,111,95,95,100,103,112,102,99,87,104,107,102,104,97,109,99,101,91,111,110,115,110,101,103,105,112,109,120,98,93,103,96,102,97,115,100,112,113,119,105,116,100,99,96,94,98,115,94,102,108,97,108,95,123,117,109,103,100,99,112,95,107,108,103,99,117,92,101,104,107,109,112,102,102,105,123,103,93,105,80,106,98,102,99,95,122,99,109,104,109,102,94,113,101,116,102,104,106,116,92,119,94,116,87,112,84,105,95,99,86,97,107,101,115,96,103,110,103,105,106,105,97,103,112,98,111,119,97,89,113,101,104,101,106,109,112,107,110,100,115,117,96,100,109,110,115,103,104,99,106,108,107,108,102,107,107,99,102,104,97,83,106,104,108,101,100,111,112,101,99,105,112,101,105,109,97,87,113,100,105,101,110,99,113,100,101,103,98,106,125,91,109,104,105,102,111,99,86,103,118,108,109,104,107,103,95,104,110,120,100,99,106,106,103,105,99,105,109,117,91,107,104,95,104,101,105,112,101,109,98,105,101,104,107,87,111,94,99,102,111,92,108,113,95,100,109,99,112,101,104,85,91,105,103,99,107,108,100,116,100,110,107,85,114,102,113,103,94,101,106,96,95,92,99,107,100,110,94,104,123,97,87,105,100,106,97,100,99,109,96,106,115,105,112,110,103,104,102,102,95,98,108,109,103,92,97,112,110,103,101,89,85,110,91,103,112,98,104,105,102,96,87,116,95,96,104,109,112,105,101,106,95,117,109,114,95,91,91,98,119,99,102,113,102,100,85,115,102,102,101,104,102,103,97,92,104,91,113,98,113,95,110,105,100,104,98,108,101,97,106,91,114,92,115,105,109,104,94,106,102,105,102,133,100,98,107,98,92,96,104,116,95,102,107,102,101,99,117,99,108,114,106,96,106,102,98,100,105,102,112,99,100,106,82,92,111,110,99,91,98,76,97,98,102,106,100,74,110,113,100,106,97,103,99,96,95,93,95,96,99,96,97,110,107,123,96,92,110,100,101,117,101,86,108,88, +497.50259,103,106,86,93,110,97,96,109,92,103,88,97,89,110,91,87,120,108,109,98,102,98,97,91,104,102,98,86,114,112,107,109,89,103,91,103,114,106,102,109,104,108,92,98,108,98,113,112,104,96,104,74,98,115,96,109,93,100,113,97,91,106,108,107,106,108,99,129,98,95,111,94,109,103,100,101,111,110,99,114,103,96,110,116,105,100,95,101,110,98,102,111,78,114,101,99,100,114,116,106,112,98,107,105,92,104,80,101,108,110,100,122,104,76,104,112,91,101,98,108,108,94,101,110,100,103,114,89,108,113,119,82,111,95,100,100,96,97,100,95,97,99,107,103,104,122,94,95,101,117,105,107,104,104,120,111,96,83,113,110,110,95,106,111,97,106,111,100,94,95,107,108,96,111,108,104,117,96,126,107,108,92,99,108,94,104,94,94,101,103,105,109,102,115,101,100,99,102,101,106,109,97,96,109,96,109,108,103,86,111,100,112,99,117,101,108,95,103,105,98,104,110,112,99,78,98,106,108,103,108,105,104,137,98,95,103,96,105,101,104,98,114,108,108,97,109,103,106,102,112,97,107,101,102,107,102,106,113,87,108,103,114,104,95,100,104,105,106,105,100,106,103,109,103,108,102,97,114,99,98,119,112,103,104,106,99,103,107,95,114,92,107,104,107,105,103,111,93,100,98,101,110,115,107,96,102,105,100,102,106,115,113,104,91,105,95,96,104,96,103,102,101,98,113,108,102,108,111,99,112,102,96,104,105,97,115,103,109,97,99,100,101,106,105,103,104,105,104,109,102,103,110,97,91,118,105,102,113,106,99,105,99,107,98,100,83,120,117,101,98,98,119,109,102,103,101,111,94,92,102,101,106,107,118,100,108,92,102,98,104,108,96,104,115,101,99,95,112,91,103,87,106,95,94,104,102,105,92,107,92,106,101,105,105,104,98,96,97,109,107,102,102,97,100,92,93,108,96,105,106,89,87,104,92,97,102,98,100,115,106,104,97,101,100,100,95,90,101,113,119,101,100,100,119,108,95,103,106,112,108,98,111,97,109,109,104,112,107,104,86,107,117,113,105,92,108,112,111,106,97,95,109,103,112,102,115,96,106,102,104,115,100,105,99,107,105,110,74,99,97,89,97,106,110,93,126,98,112,95,92,104,101,100,100,91,102,113,108,96,98,113,100,94,117,103,80,109,117,104,101,109,99,101,97,109,113,117,103,102,105,100,115,110,99,109,100,113,87,107,108,95,96,106,101,107,95,99,104,108,99,103,98,109,104,106,105,102,130,99,99,100,96,100,100,108,108,99,96,104,104,105,90,112,103,98,90,105,99,121,95,103,104,94,109,116,104,105,98,98,105,108,107,110,93,117,96,104,104,104,102,99,108,103,97,105,95,99,102,114,106,107,104,103,98,109,102,103,117,93,101,101,103,102,98,85,91,103,109,113,105,114,116,102,103,97,87,104,85,111,101,105,88,109,101,111,108,97,109,97,99,111,126,113,121,107,111,102,100,115,106,114,111,113,95,95,108,112,105,107,107,107,94,99,106,98,104,95,92,95,103,111,107,98,113,90,104,107,80,103,96,98,86,117,103,106,111,95,108,98,111,96,102,109,105,100,98,91,108,94,112,111,112,101,104,114,97,100,104,100,105,109,92,97,95,106,90,119,99,98,100,107,94,109,100,100,106,104,106,97,98,106,98,106,99,112,110,108,91,99,98,107,104,90,98,76,118,96,107,104,100,106,113,118,102,73,103,106,107,94,117,98,107,120,116,111,117,100,114,96,110,102,99,104,102,99,121,98,85,104,110,108,102,109,102,111,105,107,105,103,79,107,110,103,98,112,101,104,110,103,101,93,107,114,102,104,109,109,108,102,100,102,105,110,105,113,99,105,102,98,103,121,102,102,99,105,99,90,113,105,108,96,101,89,103,91,112,112,118,101,103,115,102,87,109,102,104,87,125,108,103,107,106,105,103,104,91,94,102,110,101,113,103,98,96,87,103,96,87,105,78,109,104,104,112,118,103,107,103,97,107,91,109,108,105,114,105,106,99,86,100,92,113,118,103,97,111,102,113,105,113,115,105,91,94,112,93,109,97,97,89,110,113,98,115,113,108,101,113,124,101,104,101,91,114,107,99,113,106,108,112,108,114,103,106,98,92,103,110,97,113,93,92,117,104,137,88,103,109,102,103,94,108,113,98,106,106,104,105,93,103,96,102,109,95,92,104,98,92,108,95,104,104,95,99,90,101,108,96,105,113,100,94,87,106,106,118,100,106,95,97,96,112,110,130,91,101,101,110,104,100,106,89,99,97,102,109,108,91,104,107,99,115,102,98,108,99,96,104,102,103,101,109,113,109,100,110,117,99,92,103,126,108,111,105,95,105,105,101,117,105,105,102,99,103,104,116,101,102,109,93,98,108,114,105,95,112,105,113,100,95,99,107,101,95,109,110,107,106,128,112,103,104,116,110,95,128,104,103,107,106,91,90,101,95,117,112,108,112,105,96,115,108,113,102,106,96,105,101,96,114,115,107,113,96,102,110,106,110,102,95,106,104,117,102,108,115,99,102,98,91,104,106,109,107,96,100,110,104,106,104,110,94,114,124,106,113,105,106,112,101,104,107,102,101,95,102,101,99,109,107,93,98,109,104,101,109,90,116,99,113,99,100,108,107,102,115,100,111,84,115,115,107,113,96,110,107,100,102,101,106,117,113,104,98,104,107,112,111,105,100,108,108,109,110,100,106,105,116,117,84,108,99,98,108,114,92,103,108,106,118,100,103,106,120,99,97,108,99,109,106,103,92,109,88,107,68,102,115,99,108,110,104,117,97,113,101,107,79,101,105,116,106,94,97,118,98,101,118,88,101,106,106,112,111,107,105,114,111,101,108,101,96,116,103,107,114,99,132,101,117,100,113,101,102,112,113,105,100,109,112,95,112,111,87,110,112,113,107,97,104,117,115,106,109,109,117,114,105,109,113,105,110,110,97,103,107,103,97,102,105,102,94,103,99,100,117,81,101,109,101,104,112,110,90,108,100,80,108,113,105,110,112,110,115,97,103,100,107,98,98,106,106,102,110,116,94,111,93,103,91,106,106,99,118,106,109,102,95,96,101,99,103,98,112,110,97,111,100,110,116,106,106,106,91,107,111,104,93,106,117,121,99,105,99,90,90,113,101,113,108,103,103,111,105,100,97,107,112,104,101,91,99,95,104,90,108,113,94,100,95,109,109,101,111,97,105,104,105,107,104,112,96,111,99,101,102,103,106,107,113,104,76,103,111,104,109,106,116,93,90,114,105,101,109,105,109,105,95,100,99,95,100,99,99,103,107,103,90,96,103,116,86,110,100,111,114,111,104,103,104,104,109,96,97,100,106,95,115,114,104,113,135,96,116,94,104,98,108,119,106,107,98,103,105,109,100,113,101,104,88,89,103,111,123,95,99,112,112,104,107,107,106,110,113,103,102,108,106,110,113,121,104,110,99,95,116,101,98,104,109,108,99,101,118,100,105,114,115,113,107,109,112,105,105,96,113,105,103,105,106,102,97,106,109,98,116,107,105,103,99,103,113,99,111,101,115,100,106,103,96,105,102,95,98,100,108,108,103,119,108,95,99,103,115,106,102,98,117,112,106,105,99,117,113,102,113,104,113,113,68,112,108,95,111,108,104,111,114,104,106,117,100,112,105,110,107,109,105,96,105,106,111,99,105,109,108,85,105,132,108,106,97,101,103,102,113,113,106,112,100,105,103,105,98,112,110,112,102,119,108,100,98,99,107,104,103,99,96,99,98,98,101,113,101,101,117,111,97,98,113,104,107,100,107,86,102,94,79,102,85,110,108,110,80,109,92,103,109,103,95,88,115,105,105,95,104,102,104,91,89,97,105,106,99,108,101,89,108,113,101,112,84,112,104,89,113,106,104,103,110,112,107,95,115,93,97,116,103,102,97,81,79,105,102,99,99,106,120,107,106,111,103,96,110,114,105,105,105,105,117,108,105,94,115,101,103,109,98,104,106,105,100,119,94,114,105,104,107,109,105,109,106,104,104,97,100,106,100,104,113,104,108,102,118,92,105,91,105,102,100,113,103,105,106,109,106,83,101,96,104,96,102,99,116,99,99,107,114,109,100,119,101,102,101,110,98,110,98,115,92,111,102,106,111,110,113,99,110,105,106,95,108,99,107,100,82,107,109,101,100,95,105,99,103,98,98,94,117,138,102,95,109,96,94,101,85,114,100,104,103,94,106,109,101,110,99,109,97,91,102,102,113,105,101,100,105,116,110,95,98,100,100,104,117,116,101,95,117,102,105,107,87,102,106,99,109,102,109,100,107,103,102,101,110,112,110,119,110,96,104,98,115,112,115,93,91,95,94,96,95,99,103,102,102,95,101,103,106,110,101,107,105,94,105,104,108,105,108,108,102,109,105,117,109,108,96,103,108,84,102,102,103,111,113,109,87,92,103,107,98,93,103,104,101,102,104,98,104,98,109,106,110,107,99,102,98,97,95,113,122,99,99,108,87,96,106,103,97,107,107,97,108,105,98,105,104,107,109,100,103,80,102,123,106,99,100,104,99,105,97,104,107,97,125,105,103,99,104,98,113,105,99,109,116,110,104,102,119,105,100,104,102,112,120,106,109,106,105,98,106,107,104,105,106,107,94,105,110,108,98,104,94,98,110,100,105,105,95,97,92,99,88,91,101,97,110,104,109,107,116,102,88,99,108,104,92,105,88,99,98,100,102,106,103,102,120,105,102,109,103,107,108,98,105,131,105,92,102,95,101,92,101,110,109,110,92,119,114,113,107,104,107,112,89,94,115,99,103,96,109,96,100,105,105,102,103,104,106,94,95,93,107,98,111,99,96,93,94,106,86, +497.64322,109,108,98,99,98,99,104,116,106,95,95,112,108,99,108,106,109,109,100,116,92,94,108,98,114,78,119,66,95,100,111,106,103,108,107,111,107,66,97,96,113,107,102,100,115,114,92,103,107,104,95,102,112,104,115,106,107,98,110,75,105,104,112,106,83,106,103,85,95,110,96,95,99,108,100,107,107,103,113,123,102,107,99,98,88,102,101,102,111,101,96,115,107,91,101,110,108,100,97,102,95,116,106,105,101,95,92,96,100,100,92,100,102,78,112,91,89,102,96,105,101,99,102,113,114,113,126,93,97,105,104,106,109,94,104,102,88,88,96,96,99,116,90,98,97,94,111,96,99,103,95,107,107,93,109,99,107,105,108,106,108,116,100,108,112,121,105,111,109,104,100,108,109,104,117,105,119,90,111,109,103,113,112,112,109,112,98,88,95,106,100,109,104,100,103,108,102,106,81,96,115,85,108,104,99,78,103,109,106,105,98,106,108,100,117,99,93,104,91,108,105,110,102,104,117,108,118,104,101,99,85,108,107,110,93,109,102,120,110,98,93,95,103,99,111,103,91,101,100,95,98,112,100,109,107,108,106,109,103,101,100,97,103,92,96,101,104,100,100,105,113,99,100,99,117,108,99,112,106,91,98,98,99,96,107,109,95,113,103,104,103,95,108,108,110,112,109,100,104,100,117,102,104,99,101,88,106,103,102,113,109,106,105,107,105,98,113,113,100,103,94,108,103,102,111,100,100,104,117,98,110,103,122,107,106,99,86,104,97,98,95,109,101,99,102,103,104,113,108,117,108,113,97,107,103,107,112,111,87,111,110,113,98,87,99,99,110,108,103,104,108,110,105,113,133,105,114,112,106,110,111,100,99,108,98,114,99,100,98,98,113,113,96,96,102,91,102,98,105,106,97,114,103,106,91,91,93,108,114,101,101,98,105,105,95,90,94,113,105,99,103,102,110,102,98,101,93,93,90,101,103,109,87,105,105,100,101,105,99,110,105,112,100,91,98,111,117,97,98,110,95,100,100,103,111,95,106,102,104,105,101,93,110,98,98,105,106,102,117,110,100,106,99,106,108,100,103,111,101,101,100,102,115,102,111,101,121,108,110,99,105,104,103,99,104,102,95,107,115,95,107,108,98,105,102,112,101,107,100,103,117,111,107,102,103,108,78,94,90,103,104,100,108,101,103,95,110,91,101,105,99,109,92,104,105,101,108,103,99,115,109,106,103,105,99,102,107,99,98,99,97,111,109,98,115,101,117,102,87,111,107,116,98,122,103,110,116,90,106,101,98,91,118,103,112,108,112,109,97,97,105,103,103,112,113,106,118,103,97,95,96,103,103,102,105,105,108,111,109,95,102,102,105,104,101,98,95,107,101,95,104,107,112,107,100,90,101,103,106,107,107,105,109,93,109,98,103,99,106,104,95,117,110,124,108,97,95,101,100,120,114,99,103,104,95,101,114,103,107,96,104,94,99,115,108,109,109,109,99,116,108,106,112,99,101,110,110,95,107,103,110,103,105,101,105,107,104,102,103,91,107,108,111,100,109,98,107,104,112,104,112,113,105,104,108,105,84,102,101,93,107,94,99,116,104,112,104,108,98,108,114,106,101,97,97,96,109,96,108,103,115,96,105,105,100,108,106,103,111,117,86,120,108,108,91,88,106,105,101,103,97,120,106,112,99,108,119,88,134,117,105,104,101,101,109,100,64,107,115,103,95,104,105,101,103,111,93,100,97,100,109,104,107,98,113,98,105,96,103,89,106,121,107,120,101,114,108,105,113,99,97,109,98,105,108,109,91,93,109,102,109,104,107,99,107,103,114,106,111,124,112,115,103,108,110,105,106,103,114,109,103,110,97,109,110,118,106,115,105,98,108,113,93,102,92,103,107,101,110,104,100,104,103,105,105,97,110,91,106,91,104,93,107,103,103,107,91,124,96,116,107,104,110,103,112,93,97,101,99,95,93,108,109,101,104,112,102,102,98,102,117,110,106,112,94,105,92,117,95,105,74,101,99,110,99,92,94,104,103,97,116,109,108,103,110,103,104,94,107,100,105,112,95,101,107,108,104,107,97,105,106,106,104,113,98,105,103,104,108,113,66,103,98,111,109,99,99,99,104,104,102,108,92,99,87,79,103,107,105,99,104,107,105,103,93,107,107,114,109,95,108,102,104,100,102,106,105,103,98,109,92,107,95,100,106,108,110,107,105,99,102,106,92,100,109,107,66,95,98,106,103,99,103,107,102,102,86,99,102,107,99,102,107,113,107,107,100,93,92,99,104,108,100,99,101,103,110,103,99,95,96,99,116,92,110,109,109,107,108,108,113,103,113,112,108,100,96,109,108,113,110,107,105,99,94,106,103,106,102,100,117,108,108,102,96,108,107,116,99,105,98,79,103,103,110,97,104,100,109,105,93,112,108,100,94,110,111,111,102,98,96,104,86,118,99,113,99,100,116,117,96,108,97,107,97,95,108,107,106,102,103,105,101,99,104,113,108,99,95,103,97,107,107,106,106,103,104,98,107,87,105,100,97,101,98,103,108,97,109,108,112,102,106,103,111,111,97,115,99,108,101,98,110,102,108,108,110,101,114,84,113,113,108,116,109,104,117,111,114,99,103,99,104,95,108,99,99,107,112,104,103,115,105,93,109,107,106,115,110,104,105,114,96,106,110,102,114,117,114,111,103,95,110,99,97,103,93,99,100,100,102,103,106,107,106,101,109,117,106,105,108,113,112,110,103,112,108,115,102,116,107,102,106,104,103,105,98,120,107,99,107,115,95,107,97,96,106,110,107,112,96,132,101,107,105,102,110,130,103,102,102,113,104,109,107,105,107,118,107,105,95,110,102,107,95,99,106,96,107,95,112,117,108,107,108,114,112,108,112,98,107,112,118,117,107,113,85,98,101,120,107,107,101,106,113,122,91,97,111,106,117,104,103,117,105,99,106,95,100,102,107,108,105,130,115,112,104,106,107,109,106,88,111,109,110,105,108,111,102,103,86,79,81,114,111,114,113,111,106,119,102,98,106,105,108,95,99,107,106,108,109,113,106,105,106,97,104,107,98,109,110,106,98,102,117,97,106,105,101,97,99,107,98,110,102,106,94,101,106,101,103,98,99,100,112,93,117,101,100,114,105,101,110,117,107,131,92,83,107,100,111,107,102,108,108,102,104,110,103,100,96,100,102,105,108,103,98,109,95,80,102,111,96,115,99,100,110,108,105,102,96,105,110,99,106,108,92,83,116,116,92,104,91,117,108,99,95,113,104,99,97,99,102,102,136,108,108,109,106,92,106,117,103,100,99,119,100,103,102,109,88,102,104,96,110,117,101,105,113,116,95,117,108,115,100,93,91,109,119,106,105,94,101,118,103,107,95,114,106,89,100,105,101,103,105,103,110,112,104,106,108,91,103,113,101,113,107,100,95,111,110,109,113,108,103,106,90,97,105,113,103,115,101,95,102,110,101,123,102,101,106,107,101,105,116,107,108,108,107,104,115,98,120,94,98,115,112,119,90,108,105,114,101,107,101,114,91,72,90,88,109,103,102,103,112,100,109,102,114,88,88,111,104,103,100,111,94,103,100,104,97,106,119,101,104,108,108,109,101,107,116,99,107,108,99,108,121,97,99,110,116,112,108,98,98,90,99,98,101,104,100,110,106,124,97,93,107,127,107,104,113,101,107,106,117,109,110,100,98,105,102,105,100,91,109,109,103,109,112,94,94,104,103,103,102,106,109,109,97,103,112,101,115,93,108,112,105,98,112,91,106,100,117,97,120,101,104,105,102,98,101,99,107,107,106,111,98,101,91,102,103,113,109,108,111,115,116,113,108,105,96,106,102,115,101,101,115,108,103,107,100,99,104,110,98,102,126,114,101,100,109,93,104,113,102,105,114,108,105,101,103,100,120,102,104,120,90,98,95,97,103,106,112,133,104,123,113,108,101,104,124,114,101,117,106,99,118,104,114,120,113,108,91,111,111,92,102,99,112,101,105,94,97,83,101,102,95,94,109,109,84,105,100,107,105,104,106,129,119,108,104,104,105,106,123,103,101,105,111,106,106,121,102,111,87,110,99,99,90,107,108,85,100,108,109,115,108,105,96,97,112,95,101,108,101,108,112,105,95,110,100,106,103,101,97,101,103,108,96,97,101,105,113,102,99,97,106,102,113,113,121,113,102,111,102,111,107,102,92,93,105,108,103,98,111,106,106,103,111,105,102,97,111,115,97,108,104,109,99,109,110,106,101,102,100,108,107,96,102,117,104,108,103,101,102,111,108,94,97,110,105,96,97,109,111,99,104,106,105,112,108,101,114,116,110,100,107,102,105,108,107,93,104,85,98,105,95,107,99,108,96,106,96,98,99,100,112,110,108,103,89,109,108,99,101,97,107,110,110,98,116,96,103,108,105,107,100,119,101,108,108,102,99,114,109,104,93,68,99,94,105,100,102,81,100,95,108,101,100,105,98,96,94,87,101,96,106,88,105,98,103,109,115,101,101,94,113,97,98,107,104,118,72,87,100,106,102,96,109,104,100,111,115,82,124,119,111,103,95,108,103,113,91,92,110,105,98,92,111,116,105,105,110,105,100,100,116,95,108,92,103,107,106,95,112,93,110,98,101,120,95,117,105,91,108,91,102,100,111,93,98,104,109,106,105,100,115,104,101,101,109,103,101,100,92,87,100,98,102,109,93,95,91,106,98,108,113,107,99,107,97,109,97,102,117,100,96,107,108,103,108,103,81,111,111,106,130,99,109,113,113,105,107,109,107,97,102,103,91,106,115,100,96,100,112,111,111,95,99,90,101,107,110,106,99,113,85,100,100,105,85,107,103,105,103,90,100,106,104,109,101,108,110,118,104,102,89,77,111,95, +497.78381,99,86,96,106,96,102,95,92,108,103,94,99,99,103,108,113,103,115,108,113,101,99,114,100,109,95,95,101,92,86,105,112,102,106,101,111,104,92,95,104,110,89,90,102,101,102,97,103,104,96,97,86,88,109,104,96,104,109,102,97,103,109,103,69,100,107,99,106,103,98,111,102,78,99,107,112,85,112,97,115,100,94,97,97,96,89,109,98,109,96,105,90,92,99,108,100,109,101,108,98,103,103,105,102,96,103,106,106,105,106,108,101,106,100,98,95,106,118,107,107,94,97,103,106,108,113,105,93,114,107,116,101,97,106,106,109,94,103,96,99,95,97,95,93,95,105,108,96,91,105,94,98,98,91,90,98,120,92,93,109,99,102,104,102,116,102,124,102,108,96,104,107,99,97,109,121,104,105,107,118,98,110,103,110,101,107,93,87,118,100,104,97,100,102,111,103,98,94,96,100,104,93,108,108,99,120,101,112,103,121,104,105,108,93,105,105,103,108,103,105,107,113,102,103,104,114,109,109,107,100,110,107,117,105,106,98,107,104,99,98,93,110,107,102,113,98,114,101,95,105,93,110,108,86,109,104,106,110,102,103,102,103,112,110,83,107,110,97,99,96,108,96,98,98,103,97,101,102,101,94,103,104,96,102,95,103,101,100,103,104,100,103,92,104,101,105,114,108,105,107,112,106,98,107,105,91,119,105,98,97,98,103,116,102,104,88,115,104,116,101,102,94,105,98,126,103,99,87,110,108,92,99,114,98,99,110,111,91,101,104,94,99,98,113,110,100,105,102,107,102,104,113,98,108,112,98,114,116,99,104,100,99,91,102,91,99,106,111,100,94,111,103,104,102,100,94,112,112,106,109,111,82,96,103,98,96,111,103,99,102,108,99,101,107,100,100,93,72,99,102,92,105,108,95,91,102,99,108,86,103,98,90,111,95,107,94,95,98,101,109,105,74,109,107,112,96,100,98,100,129,99,101,113,105,97,112,94,91,98,108,106,113,91,107,101,103,99,98,104,104,107,107,98,101,106,109,104,97,100,111,112,104,110,113,124,106,106,106,99,94,99,105,109,105,95,98,97,113,97,114,110,109,117,105,98,106,107,88,86,107,112,115,109,106,110,107,97,95,104,100,118,107,109,104,110,103,103,98,113,100,101,104,103,107,103,96,107,111,104,98,104,106,108,107,111,104,100,112,108,103,100,105,116,106,101,121,114,112,94,100,94,100,97,102,109,88,114,112,107,97,105,100,99,106,100,96,98,104,91,103,109,88,87,104,90,103,112,83,104,98,104,115,102,107,97,105,111,85,109,105,103,99,123,101,97,96,124,102,108,102,99,100,98,102,104,108,103,116,110,107,101,110,95,110,103,101,95,98,103,109,73,108,98,99,93,104,106,100,127,106,93,111,97,99,102,94,112,99,107,113,108,97,101,113,102,101,107,78,98,108,109,108,99,99,103,104,108,95,112,107,103,102,103,102,115,113,105,111,100,96,109,94,117,104,95,109,100,102,107,85,111,118,102,103,108,104,104,94,104,108,103,108,109,107,94,105,105,103,109,101,106,98,101,117,113,107,98,105,108,94,103,105,103,104,92,106,109,96,107,102,96,104,121,94,106,72,100,111,102,103,107,93,118,116,93,99,88,104,101,103,92,99,108,91,100,95,107,106,99,108,104,103,105,111,102,107,109,108,99,113,105,109,103,102,101,89,109,105,103,106,96,112,106,105,100,101,95,98,101,100,115,108,106,96,102,108,95,104,102,114,99,102,111,108,95,110,100,111,105,113,104,106,96,112,91,100,103,102,116,107,95,95,109,101,114,110,105,99,105,86,108,108,102,92,102,104,115,114,100,110,98,111,103,109,105,110,108,93,107,100,101,98,112,102,110,106,107,106,100,121,102,116,112,113,98,97,104,99,111,105,108,95,100,110,95,89,105,97,105,111,99,113,93,105,110,100,109,112,121,109,106,110,106,103,102,116,106,103,109,100,91,104,102,120,92,108,73,106,103,108,102,110,110,98,111,94,98,96,95,103,100,108,111,105,96,96,113,103,101,108,95,110,111,97,105,107,108,102,113,113,115,99,108,101,111,116,115,96,107,97,103,102,105,115,100,102,104,100,99,104,101,99,99,95,104,103,99,103,104,117,113,108,106,105,108,106,107,97,105,100,109,116,109,102,100,99,105,101,104,105,103,112,103,107,102,99,110,95,101,70,86,100,111,100,117,113,79,99,101,105,128,106,107,101,94,96,107,99,109,112,108,106,111,107,98,103,99,104,96,99,94,102,106,104,104,93,109,101,105,102,102,115,84,98,106,120,104,94,104,105,104,93,95,95,82,104,87,107,92,103,103,112,95,102,83,108,108,106,118,112,99,108,107,105,92,109,108,108,100,103,99,101,102,113,111,105,118,90,111,91,108,102,99,102,74,112,96,106,104,106,96,112,115,100,96,113,100,101,107,112,107,100,93,91,93,91,109,112,99,96,124,97,102,96,103,116,112,100,100,101,92,109,104,115,105,95,105,108,105,110,98,102,102,107,101,105,105,100,97,108,102,114,97,104,110,100,103,106,111,102,93,101,95,113,109,113,101,98,111,94,109,110,121,106,108,124,110,99,121,100,106,69,104,101,112,97,110,100,109,103,93,106,103,110,108,101,102,104,106,105,106,110,104,104,116,99,110,108,110,104,108,98,106,113,117,112,95,103,107,108,102,113,108,98,116,112,111,99,105,105,96,111,100,101,104,106,108,125,95,98,116,114,102,109,108,100,94,122,98,101,96,113,103,110,114,104,116,94,111,114,82,112,100,110,106,121,96,105,103,98,98,104,106,124,106,104,108,106,105,104,96,93,118,96,107,98,96,117,89,95,98,102,100,111,103,98,112,95,107,113,91,111,109,106,98,92,92,82,111,112,110,116,101,110,97,113,109,104,101,108,109,112,105,107,96,108,107,108,117,105,99,104,99,96,106,108,104,100,108,111,115,107,111,98,117,96,112,99,107,89,104,112,113,109,111,105,112,110,92,112,103,106,106,117,109,99,99,103,109,95,98,95,99,95,106,110,105,106,94,114,96,125,106,103,108,107,125,96,106,96,102,109,101,119,100,101,99,100,109,102,108,97,100,121,94,98,101,108,109,95,99,98,100,104,107,111,93,98,102,103,107,104,103,104,99,106,108,97,105,113,116,101,93,100,100,104,93,109,105,125,99,109,100,110,107,95,103,106,106,102,96,107,115,117,100,105,105,108,106,101,101,98,109,104,96,109,102,105,112,107,108,100,108,110,93,100,105,102,120,99,97,101,123,106,104,100,96,94,98,93,95,118,81,108,121,102,121,105,103,98,118,100,99,98,113,96,91,114,104,95,100,97,93,102,101,104,110,102,106,96,107,99,100,110,107,104,97,101,104,108,113,117,104,107,91,114,102,104,99,102,102,108,100,100,99,92,113,98,104,85,108,94,108,111,103,73,113,106,72,107,106,97,98,111,97,85,105,119,91,104,109,109,104,105,101,113,103,109,98,111,104,107,116,114,104,109,101,114,103,107,95,117,112,110,103,102,108,90,108,109,97,103,96,112,98,108,106,94,110,100,101,109,98,103,87,108,110,108,105,102,108,103,112,102,113,96,106,105,92,103,99,105,113,104,107,95,104,104,112,108,114,105,108,100,101,106,105,98,105,95,106,94,102,108,121,105,107,98,87,101,105,103,104,103,109,97,115,103,98,104,108,99,109,96,110,103,104,103,111,121,102,99,108,105,108,96,102,101,110,114,105,103,116,115,96,95,107,114,98,123,121,108,109,108,117,101,118,89,106,106,114,111,101,113,108,113,101,110,100,101,121,105,103,105,98,117,108,98,102,95,96,120,71,107,94,111,113,107,103,92,109,109,96,105,116,110,100,95,113,111,105,101,116,98,103,100,105,105,107,97,110,121,91,97,107,99,118,103,107,106,111,110,95,98,92,105,106,94,100,111,94,103,104,111,113,99,102,98,94,88,112,104,113,101,124,114,80,107,114,105,116,100,111,126,95,92,113,112,110,111,106,104,108,99,100,105,104,105,105,105,107,99,103,95,103,103,95,106,103,113,108,90,112,117,99,107,110,100,108,99,99,90,85,111,116,100,123,104,104,107,102,106,103,91,104,101,115,103,110,108,104,91,104,96,106,110,100,98,115,102,115,99,104,108,95,96,108,101,105,105,102,92,100,93,93,102,106,102,95,106,98,104,103,99,97,100,102,97,110,100,115,107,108,100,118,114,75,96,93,105,103,102,96,105,109,112,98,107,102,111,109,97,108,94,107,104,105,101,116,107,113,101,112,106,101,101,108,112,102,114,115,105,104,107,104,114,108,104,99,110,105,103,109,100,118,111,102,108,103,101,106,98,103,97,112,89,91,113,112,108,120,110,76,108,107,98,96,105,96,111,111,111,93,104,108,98,102,97,102,106,91,87,106,100,102,103,102,85,107,120,87,89,79,106,113,107,90,107,100,113,98,110,111,107,97,112,112,105,105,101,101,107,97,102,101,103,112,100,113,90,105,102,101,115,100,111,111,99,103,106,104,105,99,108,108,94,95,99,93,120,102,110,113,101,104,114,110,87,101,97,110,105,99,106,105,101,116,102,101,110,94,103,106,100,111,109,111,101,101,106,99,104,102,104,111,95,105,98,97,94,101,104,102,108,98,95,100,102,100,95,112,95,121,111,112,107,100,102,92,105,107,100,100,106,86,107,97,107,101,104,102,103,106,101,117,110,107,103,107,109,96,101,92,100,104,119,96,89,95,96,107,95,88,92,104,120,107,98,96,101,101,121,94,101,103,100,93,97,87,96,102,104,97,108,108,91,110,102,89,103,104,103,100,101,102,95,104,93,97,101, +497.92444,115,104,95,99,95,115,110,99,107,102,101,109,114,117,115,112,96,106,110,98,104,92,113,105,97,95,102,100,121,116,103,71,110,99,109,113,118,100,102,112,102,104,95,88,101,120,101,99,90,107,99,76,105,102,100,106,95,93,106,101,96,86,104,92,114,97,102,108,113,103,113,102,97,85,108,121,103,85,99,106,106,100,95,104,106,100,110,101,104,105,111,106,100,99,103,121,105,114,104,117,110,110,90,91,107,109,94,109,108,110,97,94,97,100,77,109,97,105,103,103,103,96,105,103,106,98,106,100,96,106,113,110,104,96,102,98,113,120,105,107,115,104,100,99,96,94,101,111,107,99,97,105,85,108,102,95,108,96,107,96,101,113,106,103,117,102,119,94,99,117,113,111,105,103,121,103,95,105,92,104,104,102,104,108,119,98,90,97,102,107,106,109,110,105,99,98,104,98,105,106,102,106,101,101,105,103,100,100,99,116,117,105,102,108,103,99,99,102,89,101,103,106,106,113,109,102,112,103,91,106,97,108,91,96,100,102,99,110,108,104,104,100,99,110,94,113,101,114,116,105,96,142,109,90,100,114,108,108,107,107,102,103,104,74,100,105,98,104,122,96,103,117,103,112,107,98,106,99,98,91,106,98,109,103,109,92,101,133,121,114,104,111,115,103,108,105,106,122,106,94,114,101,116,99,98,107,110,98,107,102,94,103,103,101,108,104,108,107,89,109,99,105,113,112,122,102,108,95,105,114,103,98,87,105,105,107,102,105,107,113,98,99,115,108,114,105,108,108,108,106,104,125,103,95,101,110,104,114,104,110,103,106,107,99,103,103,108,117,110,103,100,114,113,103,103,100,112,119,99,105,107,107,106,105,105,108,108,118,108,98,105,106,102,100,107,106,101,82,110,105,107,98,103,101,106,102,104,101,105,98,99,100,118,117,106,91,109,107,112,107,95,96,105,111,116,99,108,86,110,121,97,102,107,99,112,109,100,106,104,99,115,103,100,97,105,118,103,102,112,114,110,106,111,101,113,75,99,79,94,113,98,94,108,105,122,109,109,114,94,96,111,106,106,109,91,99,105,103,99,116,102,100,102,108,112,94,101,101,105,106,124,103,101,105,107,100,110,103,128,107,113,109,117,103,113,107,103,100,96,102,103,116,108,114,94,103,110,109,108,103,123,100,105,109,122,93,103,99,109,102,88,102,104,101,107,104,113,114,108,125,106,105,98,98,105,112,106,117,113,106,98,94,116,93,78,97,95,100,92,103,103,111,114,106,115,106,112,108,108,104,102,104,107,80,105,106,104,99,107,107,110,94,103,104,99,116,104,110,114,99,122,118,110,108,109,107,104,104,101,105,109,110,112,110,99,107,124,109,112,108,113,111,102,105,100,97,109,110,113,117,110,112,105,105,102,110,107,100,97,107,104,102,90,110,95,97,109,106,117,98,105,103,100,102,125,97,107,110,112,106,94,105,106,109,102,111,104,121,90,110,108,107,109,102,111,111,98,99,107,107,101,107,102,109,96,118,100,120,109,115,120,111,114,109,101,103,105,106,112,110,103,110,100,114,108,103,109,108,105,104,121,88,88,102,103,111,102,111,106,101,97,107,100,100,96,99,106,111,113,108,119,104,111,111,106,110,103,107,86,111,108,105,99,102,100,113,122,109,109,100,93,111,98,96,110,110,101,108,106,118,116,94,103,103,104,102,104,97,112,105,112,95,102,93,96,98,99,109,107,88,98,124,112,99,104,102,103,101,113,98,104,101,102,108,99,106,100,105,109,108,112,107,108,109,95,108,106,108,107,100,106,103,107,111,106,108,100,99,94,100,121,108,89,98,104,113,110,105,102,103,100,114,106,105,99,110,110,98,100,106,109,106,112,105,102,106,108,105,117,105,111,117,113,107,103,104,97,107,109,92,99,95,103,105,84,107,107,104,102,104,105,108,102,116,99,96,104,99,109,102,101,105,102,105,97,111,102,101,99,92,98,128,108,110,107,103,106,112,106,102,100,108,111,111,92,98,97,112,105,99,101,102,112,95,103,111,104,102,106,109,117,88,117,115,104,102,103,110,95,104,107,107,112,103,104,107,98,98,118,105,106,105,105,116,97,107,112,128,98,103,92,89,108,100,118,120,112,112,101,120,109,106,100,111,116,99,95,104,116,102,101,95,103,92,113,105,90,105,100,108,103,113,103,106,99,101,105,102,110,110,92,98,107,79,99,112,110,102,97,119,101,98,107,115,98,96,103,100,104,105,99,96,108,95,111,143,105,94,92,117,95,101,106,100,91,109,108,108,98,97,106,101,95,104,116,105,107,96,99,104,94,101,103,110,105,95,114,113,100,105,100,109,99,98,110,104,107,106,88,94,106,98,123,108,103,100,114,115,106,107,107,112,108,106,109,96,102,96,110,101,103,116,106,100,103,110,107,109,104,106,112,106,96,103,101,114,107,89,109,98,108,116,89,102,95,102,112,99,120,98,108,110,102,111,97,110,102,115,105,103,108,108,95,103,108,118,115,101,106,111,110,94,100,101,98,107,119,115,104,95,105,108,108,107,111,96,100,115,89,108,112,99,99,108,102,94,100,96,103,97,104,95,117,113,94,99,101,102,117,101,109,97,103,110,124,106,100,104,102,93,97,114,113,95,95,116,107,105,104,104,113,106,111,95,97,106,112,105,117,100,102,113,104,110,107,107,100,105,109,102,112,110,111,103,108,114,101,113,99,101,102,111,104,94,106,110,98,107,98,108,105,106,96,107,100,93,99,107,103,103,104,111,99,107,99,102,115,102,101,113,106,95,107,100,102,121,95,114,99,111,102,121,102,102,112,103,112,79,102,76,110,111,113,120,111,104,102,108,102,115,104,100,112,128,117,94,100,107,131,113,110,103,105,117,95,107,112,106,115,127,96,105,114,100,111,119,106,117,116,100,113,115,114,102,103,112,121,116,98,105,107,117,117,106,87,107,97,96,112,103,116,105,104,95,115,101,117,109,121,109,103,106,101,104,105,104,97,113,122,108,101,104,102,98,114,109,107,114,107,96,107,105,107,109,102,67,102,102,99,113,91,114,98,107,104,102,109,106,109,89,118,98,108,105,102,110,111,107,102,99,111,89,105,100,113,98,96,112,99,109,105,100,106,105,107,106,112,96,109,106,104,109,105,105,96,101,109,98,112,104,102,108,104,109,99,100,96,108,113,105,116,112,103,102,101,105,113,101,116,109,109,113,111,106,103,103,98,106,100,112,98,99,106,104,106,101,97,95,107,106,103,91,108,112,97,106,102,94,106,115,103,112,105,95,108,99,110,117,106,102,92,113,125,97,109,103,95,104,108,95,129,114,107,123,116,96,98,109,103,99,116,109,101,118,106,113,109,113,112,101,104,102,99,104,103,103,108,102,109,98,105,113,101,94,104,108,107,110,107,98,112,101,103,121,100,111,99,103,80,93,103,106,109,99,98,107,109,104,105,105,75,106,117,114,96,97,108,98,104,99,112,99,105,112,96,109,102,107,99,109,100,98,106,106,106,108,106,100,86,105,103,104,100,104,100,105,106,99,106,110,87,100,106,106,104,112,105,104,106,103,104,109,114,95,109,93,109,108,96,104,100,113,113,100,108,109,100,103,106,104,104,115,106,109,105,90,95,104,104,99,99,106,105,109,104,98,115,109,116,101,98,99,83,107,113,77,98,102,92,129,103,117,102,105,95,106,99,103,106,98,107,103,96,108,100,105,112,111,117,112,109,105,95,103,100,109,103,103,105,101,93,95,109,103,97,102,108,103,102,106,111,112,110,105,104,124,110,105,90,100,101,106,104,109,110,108,115,100,104,105,88,103,97,97,109,119,104,100,98,94,106,102,100,102,110,106,112,99,96,112,105,102,97,102,110,94,106,104,108,109,103,108,116,102,113,109,114,106,110,104,102,107,96,106,100,107,104,108,105,113,98,101,104,106,112,98,115,121,98,111,102,88,94,108,100,98,117,110,110,105,108,97,117,94,105,108,102,113,105,104,100,105,107,98,107,115,97,111,111,121,105,108,111,105,100,99,99,97,110,118,101,94,99,115,106,109,105,111,113,113,108,94,106,115,105,111,111,92,105,105,109,91,103,97,101,105,109,97,99,101,103,100,105,91,98,104,109,107,104,103,108,115,103,108,101,123,104,105,106,109,118,109,109,101,99,113,103,100,102,115,112,99,102,112,103,107,102,113,105,98,109,111,108,109,108,112,96,112,96,95,107,105,108,104,98,99,96,110,104,106,104,100,102,102,102,99,108,104,106,116,94,112,106,102,99,106,100,102,101,99,105,95,109,107,109,102,109,99,99,106,107,102,105,106,104,101,103,97,111,102,102,113,110,91,109,90,110,107,100,97,104,92,103,108,103,104,102,92,111,104,105,103,95,101,103,99,92,97,110,112,109,105,102,104,105,109,96,108,123,106,105,100,109,106,101,99,114,80,104,103,108,100,113,102,95,108,110,102,94,111,107,95,92,104,96,90,111,99,106,104,100,111,103,101,116,76,104,108,97,94,109,106,110,96,103,104,108,109,91,108,105,100,106,100,106,106,107,105,110,102,107,119,95,101,113,112,104,95,114,98,106,105,104,105,98,98,121,121,102,141,115,94,107,107,105,102,113,105,104,99,99,101,100,99,97,96,101,104,105,107,107,99,105,105,115,88,110,99,98,98,102,113,103,111,104,94,105,100,111,106,112,99,118,93,103,95,102,107,104,106,108,112,108,114,102,112,102,99,106,108,103,100,103,98,110,126,113,102,108,110,100,100,106,106,96,102,106,100,97,99,77,119,92,109,111,114,94,106,104,100,117,99,99,110,108,82,59,96,97,108,99,120,116,101,102,92,113,102,99,95, +498.06506,109,97,98,109,98,97,107,94,90,111,97,112,116,116,110,100,103,112,99,112,108,91,95,94,112,109,120,96,102,101,111,117,99,99,119,103,107,109,120,105,94,88,102,102,100,104,116,119,99,106,99,114,105,105,103,109,109,107,102,100,100,113,104,109,99,104,107,102,105,111,116,110,99,117,107,99,95,94,103,101,109,102,120,100,109,104,108,99,97,118,104,102,97,104,111,94,103,109,95,113,112,92,116,113,106,104,98,95,101,95,98,105,111,97,103,104,97,107,105,108,113,108,103,121,115,108,112,113,118,107,117,108,121,111,118,117,95,119,94,108,96,112,96,96,96,105,110,110,112,103,103,105,113,104,102,111,109,109,111,100,109,105,106,103,110,110,106,102,99,110,102,107,100,104,95,101,114,91,112,111,110,102,99,98,100,103,100,101,118,118,95,111,111,105,111,103,102,86,98,103,105,104,98,102,105,98,112,109,112,109,98,111,113,105,108,101,100,111,112,108,109,109,106,109,107,98,109,103,101,101,105,104,116,100,118,122,112,103,104,106,104,110,112,102,104,117,109,108,99,99,104,106,106,102,109,125,94,103,97,108,110,115,106,91,107,112,110,109,99,109,102,109,115,113,97,116,100,107,104,99,99,107,102,110,96,96,95,99,103,97,117,116,123,110,112,107,98,115,104,111,115,98,106,113,113,109,108,89,107,108,106,124,98,123,97,105,95,106,114,107,105,99,108,106,109,104,88,91,107,103,103,128,107,109,108,111,120,124,99,110,93,104,99,109,110,114,101,110,115,110,113,111,105,106,126,106,106,109,99,99,114,85,121,97,108,96,102,108,95,114,100,108,86,91,102,114,105,111,105,107,119,111,109,121,95,101,107,100,111,110,106,103,96,116,94,126,107,105,91,123,94,108,102,104,100,105,108,102,111,96,109,110,103,120,100,107,104,103,112,101,96,102,112,104,95,110,119,86,107,109,100,104,109,111,112,110,105,115,106,110,117,96,103,108,108,128,97,94,113,74,112,91,95,92,105,109,102,107,102,100,97,101,107,100,123,117,105,106,120,102,104,109,103,104,69,111,119,112,112,106,102,112,104,96,102,102,107,102,103,104,113,104,108,105,107,115,105,105,106,83,117,113,105,110,101,113,101,103,105,103,95,110,111,111,100,102,92,101,99,105,102,106,102,104,105,102,106,102,105,112,98,100,106,111,108,109,101,103,106,114,113,118,113,98,104,99,103,106,120,112,108,109,124,109,114,117,107,101,95,100,112,106,96,109,113,103,121,103,107,98,99,95,107,100,103,137,104,112,105,101,104,108,108,109,107,102,107,107,119,105,111,107,82,114,110,114,107,99,109,120,103,110,103,102,96,112,108,95,107,105,103,107,118,113,116,106,117,117,113,105,116,104,116,100,94,106,98,96,108,104,99,92,100,91,91,107,96,102,121,112,125,98,103,104,108,102,107,96,105,87,128,105,107,101,109,107,108,104,113,109,109,99,108,103,92,124,113,99,100,99,108,121,114,107,103,117,111,114,102,107,107,114,119,97,115,100,101,105,108,112,109,114,101,108,101,93,95,108,102,105,89,104,112,117,118,107,104,110,108,99,106,99,108,109,98,113,107,112,109,105,112,116,114,110,92,103,106,106,105,124,122,116,98,116,103,100,104,109,107,107,106,116,104,109,110,104,112,115,100,97,88,104,104,113,117,104,80,102,104,101,102,110,106,128,91,105,101,111,100,113,109,101,113,106,106,103,100,98,106,102,111,111,117,103,116,102,113,112,99,107,117,105,113,126,105,113,107,95,110,104,108,109,100,120,82,107,109,107,113,102,114,115,103,105,110,102,88,103,125,91,98,115,115,108,107,114,107,96,107,95,116,106,103,113,118,118,104,111,102,100,105,110,107,104,91,89,102,104,112,100,122,100,106,109,119,124,99,116,93,107,92,100,119,104,106,99,75,114,112,100,99,109,110,103,104,94,99,108,108,107,104,110,109,121,106,93,101,110,120,111,110,90,113,119,108,94,111,105,113,112,98,113,116,100,114,102,92,100,100,101,104,99,93,95,108,101,113,103,104,107,109,112,107,107,108,109,109,113,112,99,111,111,91,108,102,81,97,117,103,98,104,109,111,107,109,112,108,120,110,105,107,113,103,109,105,111,108,109,109,109,112,102,107,107,102,108,92,124,99,104,104,111,104,107,109,101,119,103,103,98,102,105,101,106,88,100,103,103,84,108,106,107,100,99,98,95,115,79,116,110,83,106,88,108,115,105,108,107,97,101,91,113,111,97,95,111,113,97,104,103,118,97,110,98,103,102,110,106,90,112,109,103,104,99,107,102,100,109,105,112,111,102,112,102,116,107,110,115,102,117,143,115,116,104,99,105,99,114,106,108,116,109,110,100,96,108,133,102,105,101,98,110,108,105,103,109,106,117,107,106,97,107,105,110,117,100,110,99,115,107,101,109,103,96,103,102,97,107,109,121,112,100,102,102,97,107,111,110,98,104,101,117,109,116,108,118,113,117,111,117,112,109,98,107,104,109,107,110,114,98,109,114,112,110,111,102,112,102,113,98,103,103,100,93,104,109,112,98,113,94,92,99,105,110,115,108,106,104,102,121,99,101,102,96,104,96,99,101,105,107,115,118,104,106,111,100,87,109,109,115,103,99,102,115,104,107,110,109,104,109,103,105,103,104,97,103,108,105,112,115,106,104,125,101,100,119,101,104,127,116,101,120,97,100,109,105,98,117,96,103,115,121,102,94,106,113,108,119,118,97,105,120,101,110,104,95,106,102,117,108,103,96,98,110,115,109,109,112,111,105,98,113,121,104,106,118,111,113,105,111,105,110,99,105,94,98,101,110,102,116,121,117,117,108,104,110,107,107,117,120,108,112,112,115,95,110,109,101,108,103,125,103,111,103,110,116,123,110,107,100,106,95,103,101,102,99,112,99,102,105,101,103,112,109,102,114,98,114,117,109,116,96,105,110,117,95,114,101,104,106,106,115,104,111,110,107,95,113,110,107,111,109,113,113,120,93,112,120,113,108,98,104,96,111,86,103,104,102,114,108,113,102,102,104,103,116,103,109,111,97,106,98,107,116,113,99,101,110,111,103,102,111,102,108,106,91,103,96,89,104,96,95,113,98,112,116,114,94,109,105,109,95,104,103,99,106,106,107,107,101,100,109,100,106,102,114,95,101,105,116,103,100,110,99,92,100,108,106,107,107,120,104,113,105,106,100,107,103,103,97,111,91,113,101,102,104,103,112,104,105,98,106,96,106,108,106,103,113,100,105,107,107,98,99,103,121,86,98,102,107,100,95,95,110,101,120,102,105,108,107,108,106,111,105,98,99,106,99,111,110,113,99,98,106,108,106,113,97,102,105,104,103,102,106,108,117,107,107,106,102,112,102,105,112,108,99,105,102,103,105,113,98,103,91,112,106,109,99,106,96,91,110,103,110,93,98,101,111,104,102,105,119,110,120,106,99,107,113,103,102,101,109,121,115,100,113,104,102,87,116,76,120,104,95,103,120,85,106,112,100,111,105,110,102,105,105,102,112,111,108,100,105,106,103,98,103,103,114,99,109,111,109,113,96,107,87,104,111,105,113,100,104,121,98,104,105,105,108,109,120,95,101,101,106,116,104,102,102,107,107,95,112,111,113,127,98,105,113,115,103,121,110,106,109,117,105,112,98,107,101,108,111,83,107,104,107,105,107,106,91,107,103,102,94,94,101,106,112,112,112,101,105,91,94,106,110,105,113,103,88,115,119,100,98,105,99,109,108,94,106,109,100,108,99,94,104,100,98,92,121,100,109,108,102,99,120,108,94,116,104,102,120,96,100,102,98,100,106,106,107,105,108,106,101,121,105,111,108,100,94,112,108,106,115,102,107,113,103,108,101,105,111,79,105,105,102,119,118,108,100,94,105,96,112,100,99,108,105,101,107,120,111,99,102,109,116,98,106,106,108,106,108,113,98,105,99,103,91,91,104,106,102,101,112,120,106,123,100,108,116,102,102,97,103,77,108,104,106,103,100,107,105,107,111,95,108,111,100,115,107,105,100,111,103,112,101,106,103,112,120,96,109,111,90,97,115,107,95,113,112,95,87,95,106,111,95,98,107,106,108,94,96,100,99,101,104,93,108,98,99,121,103,103,105,99,114,98,95,97,98,120,93,110,109,114,98,106,111,97,101,95,98,97,103,99,117,94,120,103,102,97,136,96,99,96,106,99,108,106,106,91,105,110,113,104,103,109,106,100,105,101,99,109,108,117,119,106,104,103,117,97,115,103,110,104,99,115,101,106,98,105,96,76,113,112,96,115,106,99,103,100,107,121,120,117,119,121,124,108,102,107,116,105,121,107,97,106,110,116,96,99,98,111,95,103,106,102,105,102,99,114,113,97,107,104,87,102,97,99,113,96,106,100,109,110,98,98,111,102,98,108,87,122,102,114,120,102,107,112,116,98,96,103,102,105,113,108,105,99,90,97,100,112,109,115,110,95,111,109,97,112,103,99,86,96,112,110,105,116,108,113,107,100,101,106,108,116,107,92,106,114,109,103,102,111,101,111,100,111,99,106,106,100,109,102,102,106,106,99,100,98,97,100,124,111,101,110,102,108,99,112,109,109,95,101,101,104,97,97,111,96,103,113,102,117,108,109,106,111,86,99,110,101,110,113,101,97,99,94,100,95,104,105,111,96,101,113,92,93,108,102,99,102,99,98,101,96,107,112,110,102,116,90,104,98,106,101,105,90,88,97,96,112,110,99,105,98,96,103,98,109,92,90,93,103,115,98,114,102,112,119,101,98,107,89,109,91,103,102,91,105,102,104,92,99,84,98,102,93,93,102,96,90,103,106,100,99,96,96,92, +498.20569,101,106,101,80,106,106,81,90,79,100,109,98,106,75,101,122,133,103,105,71,92,85,107,114,104,109,105,95,86,113,102,103,101,95,103,93,95,96,112,106,107,116,90,95,100,90,104,110,106,117,113,117,104,100,116,103,106,93,91,104,101,103,106,103,111,116,99,100,100,92,109,96,92,97,105,103,112,96,98,103,99,100,111,90,96,110,95,101,114,96,116,108,85,98,99,99,108,98,100,104,108,104,99,100,98,103,105,99,106,104,100,92,99,104,100,96,97,116,105,103,96,94,113,97,108,111,104,76,106,110,107,91,99,103,98,81,95,106,105,98,95,104,98,104,99,91,97,105,72,111,109,105,113,96,108,75,105,94,110,112,111,103,111,105,105,103,105,98,99,103,90,117,86,109,107,103,102,105,110,94,98,100,99,115,104,102,98,100,106,104,96,112,97,95,90,108,109,101,104,109,100,98,100,113,103,104,100,100,99,111,104,112,108,107,99,78,97,110,104,91,105,107,104,90,90,96,112,110,106,111,102,112,108,102,112,104,94,108,106,112,94,90,113,91,93,112,117,108,112,111,122,103,100,115,105,86,112,99,100,108,95,110,102,106,96,98,98,92,103,96,96,109,111,103,100,102,98,91,92,93,100,107,98,106,109,102,117,113,105,108,123,114,101,91,116,104,99,102,103,100,99,100,109,113,99,108,105,108,95,108,94,102,102,97,100,110,117,105,95,108,103,103,99,102,105,95,92,101,95,103,105,97,104,96,98,102,103,102,104,99,98,105,103,101,109,104,104,117,103,106,101,110,103,101,111,100,114,105,106,106,105,109,111,90,101,101,102,104,103,102,99,105,104,94,101,101,113,97,80,111,117,107,109,100,108,88,101,99,112,94,100,89,110,107,99,104,101,104,102,110,102,104,107,103,106,130,108,98,104,114,99,108,99,117,104,84,105,110,96,95,89,92,103,98,94,96,108,106,94,115,102,106,106,87,98,91,98,110,104,114,114,100,106,121,103,100,99,112,105,105,105,105,98,126,105,96,102,101,110,124,103,107,102,106,123,110,109,118,96,107,116,101,102,102,97,93,99,101,92,112,100,113,95,98,93,108,102,106,106,94,106,110,106,101,88,103,101,104,102,87,116,109,107,99,102,109,92,113,113,95,100,82,100,104,110,112,109,111,121,120,118,116,106,116,107,95,110,104,106,100,112,96,92,100,99,113,101,123,103,107,94,91,108,107,111,99,108,102,118,99,100,107,101,98,99,94,104,113,109,97,102,97,105,110,101,105,96,101,94,98,103,100,115,107,100,110,103,100,98,110,95,108,106,105,106,108,117,97,106,99,113,103,100,106,109,106,92,102,100,98,100,107,104,91,94,98,95,109,91,97,98,97,110,114,103,105,107,98,112,115,100,105,92,102,109,115,96,112,111,107,112,104,104,109,105,103,110,90,105,116,107,112,112,95,102,95,106,113,94,133,102,99,103,101,102,105,110,98,111,107,107,104,118,107,88,98,108,117,105,95,103,101,95,106,95,95,104,98,106,92,112,105,105,94,100,103,98,102,98,110,116,100,101,121,99,113,113,113,106,90,97,95,98,103,106,113,111,100,93,108,102,101,100,98,106,100,96,96,92,102,106,104,104,110,102,100,98,99,99,89,101,102,102,101,101,95,102,99,106,99,115,96,136,103,119,107,105,99,85,107,111,97,103,104,121,105,104,113,104,114,111,104,109,99,103,103,100,109,87,93,111,110,90,102,108,103,110,99,102,100,83,107,104,104,103,134,106,110,100,107,116,103,101,101,95,115,97,87,100,101,94,91,96,73,123,95,100,110,105,92,107,109,101,100,108,98,105,102,108,105,98,111,107,104,104,113,103,103,112,110,101,102,95,100,98,114,120,101,107,97,101,101,108,105,83,89,96,102,103,105,93,99,101,92,103,109,107,113,102,114,106,99,102,96,102,106,109,101,103,101,97,113,106,106,101,112,109,97,111,96,105,102,110,101,98,106,110,115,111,109,84,108,109,107,107,104,95,108,111,107,102,118,97,108,101,107,94,104,87,118,106,107,106,134,106,94,94,106,95,90,91,99,90,109,121,98,103,99,109,102,101,110,108,102,98,115,97,98,113,98,108,99,113,108,105,109,110,121,103,106,102,104,94,112,105,108,105,109,100,90,108,127,109,117,115,103,99,98,103,100,104,103,112,112,117,108,103,94,97,106,102,108,100,78,108,102,93,119,103,99,102,105,108,111,106,101,111,108,100,97,110,93,102,101,103,98,115,107,96,99,100,104,95,108,102,101,110,96,93,105,117,102,112,110,107,128,93,101,105,92,104,109,112,100,106,90,104,107,90,102,103,100,91,108,103,101,107,102,99,121,98,123,106,121,93,107,95,114,106,104,106,115,118,102,103,101,96,109,104,76,101,109,95,99,100,109,90,106,110,101,106,111,87,100,99,108,101,94,108,117,87,112,95,98,110,98,112,110,106,110,106,101,117,112,117,107,98,116,99,108,104,99,106,105,107,104,111,98,92,97,117,91,109,107,105,108,98,108,101,106,104,105,99,88,111,101,83,99,100,99,92,96,99,106,103,94,100,101,107,94,107,104,103,106,108,102,107,106,102,119,109,96,100,105,106,110,103,105,110,98,100,94,106,111,114,96,98,104,106,107,99,109,104,105,98,115,113,106,106,106,113,107,111,98,102,100,101,104,115,99,129,110,78,119,113,102,102,100,105,109,87,113,103,103,107,112,101,107,95,104,107,109,107,107,108,76,109,129,111,98,101,96,105,102,109,110,116,110,108,103,111,106,109,109,113,108,115,110,109,96,119,105,97,106,108,104,93,112,100,122,99,104,111,99,113,103,104,112,103,103,109,103,113,95,104,95,107,109,96,118,97,118,111,95,102,124,103,96,99,107,109,100,100,119,94,103,97,99,103,106,111,117,105,118,111,98,102,109,103,100,109,103,111,101,100,125,115,105,103,101,99,121,103,111,95,97,112,107,96,104,106,90,112,108,101,103,109,100,117,97,108,115,103,92,88,96,103,115,105,107,110,118,98,109,96,103,117,107,114,105,110,109,106,99,104,101,124,103,98,104,100,103,102,111,106,108,87,95,100,101,108,101,121,104,109,112,100,106,105,116,111,109,91,110,114,105,98,99,105,117,99,105,94,110,113,111,111,110,104,106,102,105,101,82,105,100,91,103,103,110,94,125,94,108,105,119,121,100,121,102,104,110,113,104,101,94,94,109,88,108,112,105,102,101,104,88,112,102,96,104,72,97,97,106,111,110,110,105,105,102,108,109,105,111,95,117,106,116,105,77,97,117,115,102,91,105,103,120,112,97,96,109,96,91,96,99,110,96,97,108,108,97,94,98,110,108,119,105,106,100,100,121,106,113,93,112,109,103,99,98,101,98,99,92,104,105,105,102,111,99,113,121,102,94,110,106,112,99,104,98,109,98,106,105,95,118,112,111,105,106,118,106,101,95,108,105,103,108,109,94,107,104,105,107,99,100,104,102,106,98,97,110,106,140,109,113,109,109,92,109,111,101,110,106,96,106,99,100,102,103,96,112,101,115,107,92,109,105,99,102,94,106,105,104,108,94,108,112,106,113,102,108,102,99,99,101,98,96,97,113,94,104,96,113,95,106,98,106,100,96,108,101,88,101,104,105,101,101,99,97,105,107,107,112,101,104,102,120,108,93,104,108,92,104,97,100,102,91,107,98,101,103,91,89,99,109,109,106,109,104,112,113,113,100,104,99,107,98,105,104,103,98,104,111,98,112,106,103,93,99,117,110,74,97,111,99,116,100,109,100,101,114,110,100,102,109,120,115,109,105,105,98,108,101,107,106,102,103,108,96,103,103,108,108,112,105,117,99,101,103,101,103,117,103,102,100,95,101,99,105,107,90,102,101,103,100,103,109,120,118,103,115,103,95,99,106,118,111,110,101,96,88,95,102,98,100,104,97,97,98,100,109,101,98,100,99,103,109,114,97,119,88,111,108,106,104,117,100,102,110,103,92,91,75,111,102,113,101,106,124,100,106,109,106,92,102,92,98,105,101,106,109,92,104,95,91,88,99,103,103,109,102,110,96,115,117,93,102,104,107,104,101,99,108,102,97,98,112,101,100,114,102,98,94,101,103,101,95,101,95,92,124,103,99,111,99,97,108,115,100,94,117,124,97,104,101,117,108,98,117,99,102,102,124,104,100,103,100,98,96,97,103,100,102,90,98,97,98,94,98,91,109,112,113,110,106,84,87,106,114,101,116,116,103,107,106,113,98,106,118,108,102,100,102,102,100,95,102,103,94,116,91,104,100,106,110,115,94,108,104,109,104,103,108,110,102,114,114,110,115,100,120,104,121,106,81,106,104,101,96,97,127,108,91,104,102,102,108,104,105,107,111,92,89,94,105,97,110,103,100,102,98,99,104,105,100,105,104,107,100,109,89,99,92,98,112,96,113,105,108,100,94,97,104,105,101,100,102,92,102,106,124,117,103,95,93,105,98,117,105,105,106,95,100,95,97,111,99,105,100,98,111,111,100,70,101,103,105,96,98,104,102,111,107,120,88,109,94,138,120,101,103,114,98,107,102,104,112,106,100,116,116,100,109,104,99,113,126,112,106,105,98,125,101,101,96,96,97,104,114,105,106,92,97,96,106,96,109,96,91,91,99,112,100,66,100,111,94,105,101,94,99,103,114,104,115,116,101,106,121,92,117,111,101,94,100,104,109,105,106,99,105,99,101,98,96,104,96,107,109,99,106,111,111,96,109,102,103,96,92,99,104,95,101,113,96,111,104,110,104,106,102,98,91,98,99,100,106,109,99,100,92,100,111,116,112,108,105,103,90,100,91,98,92,99,118,107,103,83,92, +498.34631,100,101,99,97,93,99,115,103,97,109,87,112,95,105,94,110,111,118,109,97,103,99,99,106,105,101,94,80,103,113,96,91,108,100,100,103,107,117,92,100,91,118,92,101,114,109,114,113,102,97,104,88,87,116,104,100,92,112,62,94,100,117,92,97,101,100,103,99,87,106,105,107,99,110,72,103,104,107,107,107,118,106,89,97,102,109,110,103,105,113,101,109,105,106,99,114,109,98,108,117,113,105,96,98,105,119,100,96,101,104,104,99,109,109,103,86,99,127,102,104,108,96,103,99,119,117,115,87,113,103,102,99,103,97,99,106,97,112,104,102,104,107,91,105,108,101,102,113,103,103,103,114,116,102,105,112,98,95,107,103,103,117,107,112,113,101,97,100,108,102,120,98,100,111,113,103,110,104,103,98,99,108,114,102,118,95,108,98,108,104,99,125,111,100,100,106,104,117,104,108,105,105,99,107,98,117,108,106,114,109,101,103,102,106,112,98,111,106,96,106,101,113,105,101,110,95,103,108,106,109,103,98,105,109,103,104,113,114,110,113,109,105,107,110,95,106,104,115,104,111,114,110,104,107,98,98,106,100,100,107,98,107,104,100,101,108,120,107,109,92,98,105,106,105,103,89,95,97,106,103,109,103,112,109,105,103,93,115,106,92,102,106,104,101,100,104,114,97,109,104,103,106,95,102,109,110,98,108,101,94,99,105,101,108,109,103,96,104,117,101,99,106,117,121,112,100,69,89,120,112,91,96,106,101,112,106,113,113,102,98,82,94,111,106,106,100,99,102,108,95,90,99,103,103,113,110,106,100,103,114,105,99,105,100,99,100,99,110,107,109,113,102,109,105,109,89,116,84,101,101,103,99,114,115,102,73,100,102,97,99,108,104,104,116,104,106,96,113,103,114,94,108,106,109,95,105,106,109,103,100,97,104,100,107,120,90,117,98,98,103,106,101,101,97,90,98,111,104,101,100,108,124,106,110,99,96,100,99,95,110,103,102,103,112,110,66,97,93,106,127,99,117,117,128,105,111,97,100,96,112,112,106,95,103,134,116,104,105,106,115,90,99,105,119,93,89,100,116,105,109,104,99,118,111,106,104,112,103,105,104,104,110,107,93,95,116,103,102,109,95,106,112,109,107,99,108,108,98,108,109,113,100,105,106,103,105,109,109,121,89,109,98,106,104,112,96,112,114,100,100,105,104,103,75,101,121,109,98,109,105,104,107,99,108,107,109,109,107,106,120,111,115,107,112,99,108,111,102,100,108,99,100,97,96,99,115,104,116,109,100,100,86,95,121,109,113,112,105,106,95,107,105,109,115,100,103,104,106,101,112,103,127,102,118,107,104,101,93,117,108,106,101,101,117,104,99,100,89,112,99,108,111,96,105,112,108,106,99,99,109,107,104,113,105,100,137,116,117,104,114,100,96,103,99,103,124,119,101,104,110,105,108,109,98,105,94,110,108,108,120,103,125,118,107,107,108,107,109,108,102,102,108,100,105,96,119,105,100,101,99,110,115,107,104,103,108,111,104,106,113,108,108,102,98,94,105,102,131,102,110,110,108,98,110,111,93,109,109,103,97,109,96,111,117,120,104,102,107,111,110,102,114,100,102,101,91,106,108,104,103,110,99,99,118,106,104,119,109,112,106,115,118,87,101,97,97,107,109,108,103,109,96,106,111,99,141,102,113,89,89,115,102,98,108,104,106,103,108,109,91,87,98,89,107,101,100,94,97,117,109,90,100,120,106,106,104,94,132,101,100,106,107,113,103,93,122,95,114,98,121,114,109,108,107,118,105,108,99,103,110,114,97,109,101,103,94,111,108,111,105,109,104,102,101,118,102,106,110,97,116,98,100,115,98,116,108,122,77,96,110,93,125,110,121,97,106,114,105,113,95,93,99,109,96,105,102,97,102,108,112,104,103,100,109,106,91,109,99,102,108,104,108,110,123,96,121,90,100,108,102,99,110,110,96,111,116,110,101,98,112,100,107,96,100,108,104,106,104,91,81,117,101,98,106,89,97,104,105,106,105,113,115,99,109,94,109,102,109,107,126,101,95,84,98,107,90,100,107,98,109,115,100,110,98,92,121,106,106,99,106,99,114,101,99,97,110,100,83,108,103,104,115,101,114,107,107,102,102,104,109,96,110,107,100,96,107,113,83,94,98,116,108,100,111,101,98,100,99,105,124,87,91,111,102,91,99,67,96,96,103,102,109,112,105,96,105,95,103,110,92,85,92,100,95,95,93,109,98,107,96,99,92,103,100,103,101,120,107,105,101,86,105,102,104,95,107,106,98,98,99,105,105,113,100,104,111,99,95,99,96,106,108,111,106,101,90,97,85,112,114,123,83,110,101,105,105,105,108,101,105,111,103,102,101,103,108,109,92,105,112,100,105,109,100,110,104,107,103,109,96,102,114,99,101,99,106,96,111,102,105,99,99,95,109,105,101,102,87,115,100,95,106,99,95,94,92,106,96,113,104,113,106,108,105,105,101,75,96,113,97,112,115,129,105,108,107,100,102,95,100,108,119,99,94,104,102,100,106,110,99,109,110,97,93,108,104,103,111,97,107,109,100,94,107,100,102,103,95,117,107,111,100,97,102,106,83,109,96,109,104,102,100,113,98,88,104,92,95,100,112,106,100,105,110,100,107,108,104,103,113,109,113,96,96,107,101,113,98,98,115,104,98,103,104,98,107,100,96,93,103,103,109,110,97,96,121,106,101,102,98,110,107,109,123,99,117,112,110,111,110,105,83,117,111,107,114,106,103,103,104,105,99,97,106,100,83,102,104,103,108,119,130,106,101,115,107,111,109,95,97,104,94,107,103,97,105,99,110,91,109,111,99,112,105,114,99,112,113,100,104,110,111,104,113,108,103,102,110,107,106,105,105,97,120,113,108,107,96,111,106,120,95,100,103,105,104,118,94,105,102,102,105,94,103,96,106,87,98,98,112,108,106,96,95,113,109,109,106,91,99,106,113,112,106,113,99,114,88,108,105,100,113,117,106,104,118,103,106,120,104,95,107,104,101,103,102,105,109,107,119,106,118,101,104,95,102,104,101,103,105,95,100,102,117,102,93,109,108,103,103,114,101,107,111,107,104,94,111,100,106,104,98,104,107,101,102,102,110,104,98,99,104,101,103,111,102,90,98,102,103,106,96,83,102,99,103,111,105,107,102,96,116,110,107,101,102,104,104,95,102,104,112,107,106,108,102,111,90,116,100,91,113,109,103,102,98,101,110,100,106,87,99,102,106,65,104,103,89,113,105,107,97,81,100,105,117,116,100,87,117,116,103,104,106,108,100,96,106,99,106,97,102,103,104,111,104,125,102,105,113,94,106,107,117,104,92,107,97,109,99,100,108,119,109,107,111,98,100,102,102,101,90,107,109,95,93,102,94,113,92,109,94,99,108,93,116,102,113,95,102,106,106,110,100,102,104,109,101,97,98,103,103,107,112,98,103,113,105,119,113,120,111,81,106,103,110,113,113,104,94,107,101,95,105,106,95,102,101,113,101,101,100,109,103,101,105,98,120,106,113,99,91,105,104,105,100,95,104,105,99,109,93,107,106,105,109,110,96,123,98,90,99,100,95,98,95,100,117,105,113,104,111,99,101,113,101,97,106,101,114,106,103,102,102,107,93,99,105,115,93,91,106,105,96,99,102,102,104,103,107,108,103,107,100,110,99,98,102,101,103,101,114,103,100,100,107,102,108,103,97,114,109,106,97,103,110,94,102,106,107,97,96,98,105,103,101,98,99,118,107,94,112,99,106,105,101,113,108,90,102,113,101,116,111,113,109,101,105,102,107,99,113,106,102,106,109,106,99,97,91,101,99,103,100,118,113,104,102,89,94,98,97,105,97,102,121,98,103,98,92,105,114,102,105,116,96,110,85,93,105,101,108,107,105,102,109,101,110,116,111,102,112,99,117,104,102,109,105,90,105,104,107,118,106,103,92,116,97,97,110,101,105,91,108,95,101,103,98,92,112,111,98,102,103,110,111,104,105,98,100,101,109,96,95,114,108,109,102,109,112,91,133,100,101,103,102,97,106,98,91,94,117,99,102,117,124,95,104,109,109,119,105,104,106,107,109,125,82,113,111,116,100,107,106,118,99,108,109,100,118,100,99,96,94,106,108,112,105,98,102,103,104,95,92,103,104,103,103,112,99,104,102,105,101,122,116,100,100,106,102,117,106,104,104,107,113,96,112,96,103,104,96,93,102,96,116,89,103,101,102,99,117,114,103,78,117,109,97,94,117,108,104,107,109,111,111,111,115,87,109,103,108,108,99,97,102,105,113,106,104,100,84,100,95,106,96,101,99,98,109,95,112,105,113,108,110,110,93,83,105,106,120,115,97,102,107,108,97,101,112,100,88,95,99,100,116,100,98,104,106,112,103,99,93,91,93,104,96,101,109,101,99,98,110,97,91,102,109,98,101,101,104,96,107,97,98,105,86,101,105,105,108,99,95,104,96,99,104,107,104,87,91,96,97,123,99,102,94,105,112,89,112,99,117,103,86,110,104,103,102,110,98,113,101,102,62,113,100,95,87,86,105,117,99,102,88,91,104,104,91,108,108,105,102,104,124,97,109,111,99,108,119,102,103,91,107,110,117,102,109,94,94,111,110,97,104,98,98,121,97,97,107,106,83,106,90,108,110,97,80,106,109,101,104,94,106,105,100,98,103,105,108,101,111,105,103,98,100,104,105,106,95,107,104,102,107,101,110,99,101,101,98,88,93,108,107,108,92,90,105,88,93,103,110,97,109,85,109,93,99,121,104,101,91,112,104,106,106,102,101,105,106,93,106,91,105,99,97,107,119,86,103,112,113,110,103,103,106,105,94,117,98,103,108,113,101,106,113,83,72, +498.48691,104,107,96,102,102,105,113,90,101,106,112,94,101,96,112,102,108,104,104,84,102,84,97,102,103,108,109,100,118,109,102,104,93,108,107,108,101,94,101,105,100,97,90,96,111,113,103,111,98,120,76,105,106,111,103,107,98,96,112,105,112,104,103,100,100,107,100,110,106,93,104,110,102,104,107,120,109,102,115,108,96,111,105,95,115,110,103,111,103,114,99,102,129,106,107,88,110,94,103,102,103,98,108,99,90,101,96,108,99,95,99,102,108,102,110,101,96,106,112,104,109,74,92,112,110,112,98,109,121,117,111,113,113,121,107,100,100,95,108,102,100,90,103,94,103,108,100,92,93,92,79,109,107,91,94,116,109,97,99,94,97,109,109,113,99,105,103,106,108,108,113,105,110,116,113,112,98,104,87,110,91,107,104,103,91,106,106,105,111,95,102,118,99,115,110,99,112,119,107,105,106,118,106,99,99,110,99,110,103,116,86,110,99,115,115,74,111,114,99,92,104,87,109,99,86,106,117,106,110,109,113,103,106,99,110,113,99,93,114,102,111,117,107,115,95,102,104,95,109,104,103,109,91,96,96,91,115,99,105,115,91,109,114,98,98,98,99,106,101,117,107,101,77,100,106,90,103,108,105,103,106,101,106,99,100,105,99,99,101,113,120,106,104,109,103,113,108,101,100,105,105,105,100,108,100,117,109,107,104,105,105,111,119,105,98,81,100,107,105,110,112,79,97,101,109,99,106,108,104,104,104,103,105,109,102,114,89,101,95,100,73,120,113,92,113,103,102,113,99,111,113,103,108,125,125,109,122,120,103,102,112,104,108,98,103,89,115,105,81,111,113,101,102,103,99,100,100,105,86,104,108,105,101,98,105,105,112,104,111,99,115,100,102,119,103,109,104,99,111,114,122,111,100,104,113,99,107,103,110,106,105,109,99,115,118,109,104,110,109,108,103,94,113,99,110,101,121,98,113,111,98,106,98,116,118,112,122,109,90,106,109,107,106,113,100,98,104,102,125,109,92,103,78,126,107,126,101,108,102,99,113,108,107,109,116,119,104,106,95,95,117,103,103,103,100,104,103,108,102,106,107,111,115,95,97,107,114,103,111,114,102,114,105,119,102,103,107,117,107,95,111,113,105,105,105,121,95,100,105,96,106,102,102,111,101,98,111,104,116,118,98,126,106,111,113,112,129,97,106,121,102,103,114,105,113,100,115,99,101,104,110,101,110,92,112,112,106,103,110,108,110,104,108,122,105,98,98,101,100,97,105,101,95,102,97,113,113,116,114,106,100,112,109,113,107,94,107,94,118,91,108,106,109,99,114,106,109,96,109,95,117,117,109,110,108,122,106,105,106,102,131,104,110,107,110,105,95,104,115,103,110,103,102,103,96,109,96,99,110,105,99,104,106,107,116,104,101,115,104,108,99,95,106,92,99,103,99,107,100,95,109,105,102,100,101,99,87,104,110,76,101,101,112,104,111,108,107,119,121,108,119,111,118,120,103,101,103,93,116,108,95,108,113,102,109,131,106,110,94,118,85,112,105,114,97,101,102,107,110,95,91,105,104,108,105,116,100,108,97,109,112,100,111,105,118,116,109,113,108,109,106,68,102,102,97,114,105,103,101,115,117,102,109,110,106,101,95,101,112,108,108,110,103,99,96,96,113,105,102,101,101,115,114,112,108,113,113,100,99,113,108,108,99,109,105,104,98,96,118,106,109,107,112,96,108,104,101,112,109,95,123,106,94,102,110,112,94,115,103,99,104,105,106,110,96,107,99,110,103,107,107,112,108,123,110,105,108,104,134,104,113,100,102,102,116,116,111,103,115,114,112,100,108,106,99,110,105,110,110,109,102,111,108,115,101,117,115,108,129,113,111,117,115,106,98,114,118,100,108,104,107,100,114,100,92,100,106,94,104,101,109,101,104,106,92,109,105,112,110,110,110,116,111,106,110,101,97,109,117,108,103,113,98,98,100,105,100,92,116,91,119,102,106,105,110,110,103,104,104,96,105,107,113,111,117,98,108,118,115,104,95,105,112,110,89,101,98,110,100,110,109,111,114,110,107,94,102,111,108,103,105,116,122,109,92,99,121,100,112,106,116,110,90,114,111,96,84,105,103,106,107,109,103,103,100,100,101,113,109,105,118,119,103,113,100,106,100,107,113,106,117,104,116,93,100,115,116,99,96,103,90,104,102,99,100,106,105,99,93,105,98,106,102,107,101,111,112,108,100,107,101,109,115,119,97,105,107,91,110,109,107,105,101,97,105,107,111,97,102,107,93,105,104,114,95,112,98,101,104,95,111,99,106,98,111,110,111,111,112,107,103,104,98,99,94,82,95,104,106,98,103,90,107,102,105,92,113,106,100,100,107,105,102,113,107,100,123,110,103,107,103,92,101,102,107,100,106,108,106,98,108,99,108,100,98,113,106,73,103,92,103,104,123,114,112,99,97,101,114,108,107,103,114,102,102,117,107,98,109,102,115,100,117,103,101,115,91,122,105,99,111,80,102,105,117,103,106,109,105,108,101,100,115,109,101,99,94,88,93,112,98,116,108,98,106,100,92,100,102,104,110,117,99,109,99,102,109,85,119,98,115,107,107,102,130,99,100,109,99,105,101,101,99,97,102,102,113,108,110,98,95,106,107,117,110,72,114,114,103,112,104,113,106,107,102,108,105,106,98,105,109,105,110,103,98,110,99,87,113,100,101,110,104,83,98,103,106,106,97,102,102,108,93,108,113,110,103,109,103,109,105,108,96,109,102,90,119,109,116,106,103,102,92,102,120,106,104,94,103,105,108,91,105,85,109,102,101,107,100,101,105,112,103,96,106,106,108,110,82,105,108,98,113,103,105,104,113,99,108,97,100,101,100,115,102,111,101,123,95,116,91,65,109,95,106,88,107,102,115,105,108,106,102,98,109,112,112,116,108,88,104,113,105,104,100,120,106,117,108,102,101,116,100,96,102,120,97,107,105,103,127,113,101,109,107,92,107,100,105,106,109,90,110,111,112,116,101,105,112,99,102,98,97,98,113,101,80,93,124,92,104,96,101,105,106,108,83,105,108,108,110,109,114,104,105,103,99,109,103,103,109,107,105,112,109,103,102,115,99,103,103,101,101,106,105,108,113,107,104,119,94,92,100,107,108,104,110,100,112,110,104,105,106,102,108,105,100,103,98,110,95,112,111,109,100,117,99,97,109,102,109,101,90,100,100,105,105,101,101,107,107,100,117,110,104,102,102,119,109,114,111,99,98,101,111,117,95,95,102,103,92,97,100,90,101,111,100,104,123,102,99,89,105,109,107,116,98,95,108,101,104,114,108,98,107,104,103,100,110,108,93,107,101,105,101,96,106,98,91,114,114,112,110,106,117,110,101,104,106,94,109,102,106,112,103,104,112,99,100,109,111,105,105,109,98,108,101,113,109,103,106,102,99,90,94,107,102,96,95,112,105,102,107,101,108,111,95,108,120,95,106,105,101,110,113,101,107,103,97,98,108,103,104,104,107,109,114,110,99,111,96,103,113,86,113,113,104,97,102,113,105,95,111,113,102,106,105,105,103,120,102,114,114,109,105,114,116,123,103,107,98,96,104,111,106,118,95,99,102,105,106,102,80,120,97,108,95,102,107,108,94,103,101,112,96,109,95,106,102,101,110,111,109,101,106,104,103,111,111,107,107,112,116,106,96,102,102,107,102,99,94,111,112,99,112,110,98,100,101,98,108,103,114,100,111,104,107,111,104,103,103,112,106,110,105,120,101,107,90,113,100,106,105,127,105,103,107,109,100,111,109,95,100,106,105,108,114,102,113,110,103,107,102,109,107,117,111,90,104,97,116,106,99,105,102,98,95,89,103,91,92,101,132,106,103,109,105,116,97,96,91,94,104,104,102,102,111,108,105,112,120,94,101,105,105,110,100,108,111,100,104,106,119,107,103,106,116,108,99,103,105,112,115,111,95,106,106,99,92,102,91,100,104,94,98,109,100,102,115,104,97,113,112,113,94,98,106,106,124,98,107,108,100,98,117,102,98,119,119,100,109,103,104,111,93,91,108,118,100,100,109,90,102,103,100,100,105,103,96,104,101,106,106,102,113,98,106,94,109,104,99,107,99,106,107,99,98,102,101,106,118,75,105,102,108,101,104,103,100,112,109,112,115,104,106,111,97,121,105,99,97,120,77,104,113,92,113,103,110,98,107,98,107,111,95,110,94,98,106,102,96,113,107,106,109,105,96,101,105,106,92,101,111,101,109,114,107,98,94,98,107,92,112,99,108,105,101,105,110,99,106,118,109,105,106,101,107,113,97,113,98,107,107,113,110,100,104,113,103,113,105,107,112,114,106,102,107,106,99,106,117,111,103,109,103,99,111,111,107,110,107,87,84,103,109,102,109,107,90,108,120,110,105,99,95,108,107,111,107,106,102,99,123,113,101,105,92,102,100,99,96,96,99,93,103,100,98,105,103,110,94,97,116,102,100,107,106,84,102,99,110,114,95,105,104,111,92,106,104,104,112,114,104,95,104,104,105,95,108,105,106,104,119,99,122,99,97,103,98,99,106,113,101,93,78,104,108,98,104,112,101,105,108,117,105,103,103,99,111,94,112,111,103,109,99,97,104,112,107,107,88,95,117,93,105,91,109,101,101,95,89,103,106,104,113,109,109,104,79,100,108,116,94,117,94,105,105,101,97,104,116,89,97,100,99,101,131,100,113,105,129,110,102,104,93,98,113,104,115,96,97,96,118,120,108,98,109,98,101,102,105,94,97,105,105,109,88,107,86,110,112,105,91,104,96,95,106,114,102,107,91,113,101,85,91,108,102,84,105,108,106,104,90,101,100,77,102,104,93,79,114,96,87,94,96,97,90,96,103,103, +498.62753,119,98,103,101,100,101,98,115,102,101,101,100,97,97,93,97,103,107,113,106,106,94,112,92,79,97,116,102,110,102,110,101,105,108,106,102,116,106,108,106,97,109,92,108,99,102,95,106,100,99,117,106,115,84,102,88,102,97,98,106,94,108,95,93,112,111,79,97,100,107,104,104,95,85,93,112,105,93,121,97,103,113,111,104,103,107,107,109,105,103,110,97,100,95,86,99,113,94,102,91,101,101,111,104,112,117,106,102,101,95,94,99,103,87,113,99,92,121,100,109,111,107,111,104,109,115,95,102,118,116,125,113,84,112,88,96,106,99,104,103,103,82,101,104,93,90,106,100,93,99,107,103,110,105,90,106,107,98,103,109,94,104,103,103,110,111,102,100,98,87,98,105,104,102,104,114,103,97,106,98,99,106,101,105,107,108,107,88,98,90,96,106,94,100,98,111,95,104,100,107,108,104,99,97,96,102,105,98,109,120,99,109,105,105,99,102,107,105,111,97,109,98,103,108,105,104,90,93,111,109,103,96,101,112,87,103,112,108,100,113,98,113,106,108,108,110,103,112,91,106,112,110,101,99,96,106,93,117,97,98,100,109,100,108,105,107,109,103,100,110,101,110,106,103,106,118,108,97,103,105,107,99,101,107,99,108,95,100,99,93,104,106,97,99,117,110,108,95,98,124,99,99,104,106,95,112,107,108,99,115,113,103,110,106,99,103,102,106,107,113,98,100,109,99,100,99,112,109,92,109,109,105,112,114,111,104,109,103,95,98,103,108,106,94,107,104,99,107,110,107,105,115,109,118,112,106,101,105,130,91,95,99,113,96,103,119,104,109,96,113,121,80,109,94,100,97,105,106,104,114,101,100,99,109,91,94,99,94,126,94,106,104,107,127,97,109,98,101,110,95,101,121,97,102,105,103,71,94,115,101,108,102,93,119,108,102,100,102,102,99,98,101,95,108,96,94,106,105,90,99,94,108,117,107,112,95,96,109,117,101,121,104,104,117,108,92,112,98,110,114,100,103,100,118,103,105,110,109,99,107,99,100,104,96,120,103,116,108,99,97,109,117,108,106,106,95,107,100,106,105,117,113,112,106,113,108,98,109,99,72,103,99,97,103,90,100,95,111,101,94,106,117,109,115,94,94,99,112,115,102,110,99,111,109,103,113,112,112,103,96,112,110,107,106,99,110,115,105,100,100,100,105,100,114,96,101,110,97,112,109,101,109,103,93,99,109,103,108,106,103,99,107,110,95,104,104,107,103,102,110,117,109,99,108,106,98,113,107,108,106,103,91,96,120,98,104,111,108,83,95,109,116,119,106,109,110,107,113,112,107,104,116,83,116,107,103,110,98,116,95,79,114,112,97,89,126,110,113,107,107,105,95,105,111,106,99,112,100,101,117,110,108,105,112,109,108,107,110,114,101,109,102,75,102,83,104,111,95,105,105,107,106,101,92,103,91,110,100,104,98,99,112,108,113,107,115,110,107,108,104,104,103,101,109,111,104,99,90,99,106,100,91,108,100,97,94,104,97,115,104,113,107,118,75,102,112,91,99,95,119,76,100,119,112,106,108,107,111,112,102,111,100,101,114,110,102,102,102,100,100,104,108,110,125,97,99,103,104,91,100,99,87,94,105,94,94,104,98,112,130,102,99,112,103,121,94,101,108,110,109,108,97,104,99,109,110,112,101,108,115,110,104,104,92,96,121,99,116,98,96,116,92,101,110,117,106,95,100,117,86,117,104,112,100,91,98,100,96,103,103,101,103,91,101,103,103,94,107,106,109,87,106,103,111,96,116,111,112,121,110,105,105,99,92,102,97,98,97,100,100,114,106,101,116,105,103,109,99,95,100,109,104,117,110,104,128,103,104,116,106,118,110,103,106,104,118,99,109,102,99,91,113,102,103,108,105,104,107,99,95,92,105,98,74,118,111,104,89,95,98,100,110,106,106,102,117,100,109,106,107,109,135,115,93,111,104,63,91,112,97,105,96,100,105,111,100,107,114,103,118,105,102,102,110,105,104,106,98,109,108,110,109,104,98,108,96,102,105,102,97,121,94,114,105,107,102,90,113,111,96,105,113,117,108,102,106,106,112,101,92,106,95,104,102,91,106,99,103,98,106,106,110,105,101,113,100,113,109,114,112,106,112,106,113,103,109,92,98,99,104,121,108,110,99,108,111,106,105,105,107,103,95,97,102,97,98,107,102,101,89,108,104,104,113,120,92,103,105,111,112,112,104,99,99,100,106,106,103,97,95,104,113,109,101,109,109,102,104,99,105,108,102,96,106,100,106,115,98,94,109,109,110,102,100,102,97,109,93,106,112,114,99,110,102,112,93,95,116,104,95,94,113,104,102,107,105,109,90,97,113,110,106,88,64,102,101,103,96,103,99,110,108,105,93,99,110,103,108,114,104,85,109,103,106,112,95,112,105,94,103,100,98,107,110,107,98,102,116,113,99,106,103,97,91,113,100,98,117,107,106,113,82,104,107,103,108,113,102,102,94,100,108,106,100,99,113,103,106,101,99,103,108,111,108,137,99,103,108,103,98,97,112,111,101,104,88,101,105,104,98,101,100,101,124,101,102,100,99,105,105,101,113,118,108,102,104,113,104,99,104,104,93,98,102,99,87,104,97,108,97,91,99,105,100,98,109,102,114,110,98,110,95,118,104,98,106,106,113,94,111,105,114,111,108,105,108,105,85,107,96,113,95,106,94,99,106,108,99,108,104,111,110,84,118,114,88,100,104,99,116,96,116,97,101,102,110,96,111,104,105,95,113,110,98,74,98,124,94,119,99,115,97,109,104,101,113,98,106,105,110,113,100,115,103,100,108,104,105,98,111,117,85,98,109,109,101,112,109,102,94,109,106,109,116,95,97,109,103,113,104,101,108,95,96,104,109,101,105,108,117,100,108,111,102,98,93,113,101,113,99,121,95,111,105,105,101,118,110,107,112,112,110,93,105,110,102,105,99,110,101,108,110,106,97,103,111,110,109,91,108,111,107,97,103,115,113,110,101,87,106,105,103,95,104,116,99,103,104,107,100,111,102,96,108,96,116,106,114,103,92,104,106,103,98,113,97,107,104,104,102,114,111,139,115,116,110,107,111,106,101,90,102,116,100,96,95,112,94,105,99,108,94,100,107,103,103,107,88,81,103,103,104,101,98,98,107,105,107,83,105,118,109,105,112,108,99,109,94,126,104,106,94,104,102,102,76,113,101,105,103,107,102,108,109,114,96,103,134,93,79,96,105,101,109,115,103,109,108,98,100,96,94,101,107,93,109,107,98,113,101,113,105,105,103,110,101,105,104,98,85,102,107,98,101,102,100,105,98,103,108,101,99,110,106,92,100,105,101,93,92,106,111,94,106,108,92,106,125,104,103,102,103,107,110,106,104,106,110,101,106,99,130,105,107,108,112,100,103,101,102,108,102,108,106,104,108,108,105,108,98,98,103,113,101,104,109,105,110,104,115,101,109,109,108,100,102,106,99,102,109,99,97,105,108,72,102,100,110,106,109,99,103,106,89,91,112,101,103,103,98,103,101,99,104,87,99,109,99,103,93,91,100,96,108,108,104,104,110,93,93,89,102,107,96,94,98,109,106,115,105,97,98,85,98,95,105,100,99,104,105,100,95,95,114,102,98,85,107,111,95,106,104,102,108,100,107,106,109,100,102,121,102,113,103,105,100,108,102,113,104,107,107,113,103,103,104,101,89,124,102,97,102,99,109,108,119,108,103,102,108,105,102,113,86,106,109,113,109,107,106,109,96,99,113,107,98,105,100,95,100,117,119,105,120,105,106,92,110,94,105,98,100,104,96,106,113,116,115,102,97,98,108,110,111,103,112,105,106,98,109,117,100,108,105,105,102,95,101,103,102,103,104,103,116,105,103,115,106,112,105,97,99,109,114,102,91,104,99,114,106,101,97,98,94,106,110,107,103,108,97,100,99,91,100,113,101,103,106,92,99,108,108,91,107,121,102,105,102,120,108,113,96,105,101,93,112,113,106,107,97,115,116,115,100,112,108,105,109,106,90,111,106,102,102,101,100,98,96,100,98,107,97,111,107,110,113,103,102,103,95,103,111,104,111,97,98,99,103,113,108,100,99,89,119,113,102,105,102,92,96,101,94,113,109,107,97,132,98,101,97,112,110,106,97,108,98,102,113,106,114,99,103,104,99,103,113,111,100,97,97,108,93,100,96,103,111,104,93,122,86,97,104,105,99,101,103,105,95,98,109,106,103,108,93,103,90,110,96,102,98,113,99,97,113,101,90,102,103,107,115,106,109,111,107,102,104,103,112,96,111,97,97,117,114,109,105,94,103,102,107,99,107,114,112,95,108,111,105,103,95,104,117,105,108,89,87,119,111,111,109,101,87,97,95,105,87,97,94,111,81,108,97,102,101,110,98,75,98,95,110,107,115,105,102,87,94,88,101,98,102,105,93,116,98,105,105,103,110,90,121,105,93,99,113,108,110,117,101,105,106,95,99,105,112,99,104,100,109,106,95,106,104,103,106,108,105,94,102,105,108,108,95,104,102,97,104,103,111,101,94,105,100,101,95,99,107,86,90,102,115,113,94,87,106,105,104,100,107,101,105,95,101,112,92,95,109,114,96,111,99,101,109,96,100,90,99,102,99,112,117,94,83,100,100,116,89,110,101,109,100,99,106,100,112,102,98,104,96,107,96,100,108,100,102,103,92,102,100,103,109,92,97,108,95,103,86,102,92,120,99,101,95,100,102,92,77,107,96,113,102,101,102,98,96,98,94,107,109,103,89,108,98,88,103,96,95,96,107,111,106,86,119,101,93,107,102,89,119,116,91,110,95,107,87,105,96,128,90,115,106,117,100,110,89,111,84,102,96,75,84, +498.76816,115,100,101,98,90,108,95,110,101,94,103,113,98,103,92,100,87,100,90,105,119,98,90,105,119,104,114,96,104,107,102,103,103,109,106,111,98,104,89,100,107,103,109,98,107,112,98,97,84,99,94,110,112,107,105,101,107,109,114,84,98,111,91,96,103,115,93,124,94,114,96,109,89,108,94,119,91,111,124,101,118,97,104,118,96,98,102,86,103,81,95,100,95,104,96,102,90,108,110,97,94,133,112,94,90,104,109,107,101,100,105,109,97,118,111,106,96,106,104,100,109,95,113,113,94,105,111,101,104,124,87,115,112,96,102,98,102,107,103,114,109,117,100,100,108,100,104,109,101,100,119,107,101,91,100,102,109,94,110,109,101,116,69,109,108,87,86,103,111,94,109,104,109,105,110,109,94,103,96,98,100,97,101,109,111,94,97,93,99,102,114,96,95,104,107,100,109,96,111,100,113,110,103,108,92,95,102,104,106,115,110,107,112,102,95,111,112,104,106,113,106,117,106,103,97,98,88,95,103,104,109,103,104,95,113,110,111,105,114,97,105,106,111,104,106,104,85,104,108,106,102,95,105,109,95,95,101,94,95,99,104,107,120,104,90,109,101,101,103,108,108,100,107,107,106,95,99,109,108,96,106,108,110,94,109,97,102,108,103,105,112,97,111,107,109,108,116,110,116,104,94,101,108,105,98,104,110,112,105,96,83,117,101,105,112,106,100,106,99,106,122,102,79,113,111,105,112,102,109,110,101,99,118,96,95,104,104,97,106,102,101,87,102,97,103,108,101,108,120,103,102,97,113,123,102,104,103,103,112,101,83,104,106,99,106,99,112,110,99,109,78,108,106,101,105,96,98,114,105,98,106,110,105,114,100,104,103,103,102,100,105,112,98,84,102,103,94,107,109,101,107,89,101,109,107,102,108,109,105,107,106,108,112,107,99,91,112,118,99,99,106,88,98,110,104,99,104,99,107,106,103,93,109,97,94,101,105,106,95,105,112,99,102,112,97,97,92,95,109,102,102,105,99,114,110,100,103,95,102,108,116,104,118,109,99,111,99,95,106,90,111,104,111,97,96,111,105,111,115,105,112,110,108,102,98,104,108,105,108,96,103,91,108,102,99,105,99,91,108,109,97,117,109,105,100,100,97,104,107,109,106,103,105,92,96,115,101,111,102,97,102,98,109,105,104,102,98,100,98,93,102,94,110,100,115,106,112,95,103,117,96,106,104,101,120,104,98,103,102,113,104,109,103,100,95,101,113,102,105,110,101,96,101,103,107,103,112,111,119,106,111,105,102,104,110,103,90,99,103,116,109,111,114,107,92,102,106,106,106,105,108,107,105,107,99,108,110,116,112,105,116,94,109,86,96,106,87,95,105,103,108,98,116,90,104,113,104,98,109,113,102,103,100,107,113,99,100,107,95,110,113,109,109,114,85,116,99,104,109,114,104,108,107,108,114,110,110,86,107,100,103,99,113,102,109,106,108,116,109,92,121,115,121,107,99,109,106,94,92,97,102,110,102,109,94,102,75,90,108,96,103,91,102,104,107,103,92,108,73,102,103,105,103,95,102,93,108,104,113,95,99,101,81,97,108,105,114,104,96,105,110,98,112,109,96,103,110,107,108,111,109,119,108,115,94,87,103,101,101,101,99,104,99,100,108,101,107,95,108,106,104,100,102,103,108,92,100,114,98,111,121,103,96,96,107,110,102,92,107,102,103,102,97,105,108,107,109,100,101,98,103,107,108,116,74,106,105,97,95,104,89,109,105,99,103,107,98,113,102,114,111,94,108,104,96,103,120,115,104,110,93,98,118,90,102,110,102,111,105,107,122,104,106,95,108,105,106,112,115,103,102,121,104,110,101,99,101,111,108,96,107,95,110,107,106,90,98,109,109,114,101,100,113,99,103,100,70,103,105,105,102,97,93,87,102,109,103,98,96,106,116,96,98,91,96,102,83,76,118,103,103,123,104,106,113,101,103,99,101,105,90,107,104,109,106,105,96,103,83,111,113,98,138,108,99,93,94,97,100,99,98,114,106,109,115,98,136,97,102,90,120,100,107,113,104,110,94,101,101,102,103,102,98,103,109,112,112,101,98,101,108,100,112,105,104,102,100,103,108,104,109,97,113,115,97,101,105,105,108,104,98,103,108,90,103,109,116,104,111,110,102,104,101,99,119,91,91,109,109,87,113,89,104,93,109,93,102,99,95,108,100,96,114,102,108,95,105,94,106,106,96,99,101,109,100,107,108,99,105,110,100,102,105,100,109,109,92,96,68,110,100,108,108,104,103,100,135,91,86,103,119,108,102,106,95,108,102,107,99,104,108,109,115,101,110,103,104,107,107,111,100,108,105,99,100,102,89,93,107,92,104,101,105,105,99,104,104,127,106,100,108,102,103,107,112,108,108,104,105,110,104,102,98,108,113,112,117,98,107,106,92,89,104,117,104,102,106,104,102,103,116,103,95,92,95,101,100,100,103,117,111,108,117,101,103,109,97,101,105,110,127,103,102,101,107,100,98,108,104,109,98,97,74,97,98,113,113,86,107,110,99,120,106,118,106,99,106,96,95,110,108,105,89,114,103,107,111,98,106,102,126,106,105,103,107,107,93,107,98,112,92,104,81,90,105,105,112,107,105,101,107,82,113,101,99,104,96,103,97,108,101,108,106,115,108,112,120,106,98,109,100,110,99,98,108,108,102,99,98,108,107,113,105,106,97,107,107,118,91,108,96,104,106,112,105,114,108,109,108,106,107,104,94,99,108,88,104,100,95,98,110,103,94,90,98,97,114,112,115,111,100,109,110,97,109,103,105,121,108,118,107,103,109,109,103,94,112,109,100,118,97,91,108,104,83,103,103,108,98,106,113,114,117,110,113,97,106,104,117,109,97,100,110,106,96,91,114,119,101,110,96,93,94,111,108,102,94,119,117,107,115,105,110,98,100,106,105,106,101,98,91,100,103,101,112,104,104,115,107,104,108,97,103,91,107,106,112,104,109,98,98,93,101,101,114,104,108,108,98,96,111,113,107,107,102,106,96,99,109,99,99,98,112,99,108,85,100,105,97,93,103,105,116,93,111,92,100,98,107,88,107,99,110,103,110,104,103,110,90,98,107,105,89,108,113,115,105,103,104,98,103,102,107,102,102,117,108,105,115,97,101,96,91,102,104,102,98,100,106,101,106,99,94,113,101,107,108,108,101,113,102,105,108,100,87,96,91,108,107,94,107,102,114,110,96,108,107,105,101,99,96,95,111,110,101,103,100,87,98,105,107,95,94,102,106,105,79,100,103,100,118,112,112,108,95,103,94,101,107,101,102,113,108,87,95,118,110,100,102,108,116,100,109,106,104,112,106,99,110,108,115,111,86,110,111,103,96,106,102,107,100,103,107,96,92,95,94,108,103,105,106,103,108,97,106,106,110,96,112,102,111,102,107,110,109,109,112,98,105,113,102,80,95,95,105,105,100,118,104,101,104,98,104,108,111,94,101,103,105,106,113,112,119,106,100,98,103,112,111,90,113,109,98,108,107,104,103,103,100,99,103,100,98,107,94,115,102,105,103,98,100,97,100,107,103,116,101,93,106,109,96,100,99,112,108,108,105,104,114,112,110,102,106,101,113,87,107,104,112,96,97,103,115,106,104,100,95,100,107,96,72,103,98,100,100,115,97,110,107,83,94,95,106,94,95,91,106,101,100,101,102,94,106,102,107,97,108,102,96,96,95,102,99,104,99,102,99,97,108,92,106,86,110,105,88,101,104,104,108,109,106,110,101,106,101,103,107,100,103,112,95,103,100,102,101,116,112,92,90,102,110,108,99,99,87,107,95,106,106,104,91,107,100,96,104,99,99,100,117,96,94,108,110,99,104,105,108,89,86,100,107,106,98,91,100,96,97,104,93,94,105,96,98,99,99,99,92,113,105,118,98,106,98,104,99,103,101,101,85,102,101,105,104,102,105,104,106,106,88,102,112,109,103,97,106,101,97,102,94,105,85,117,99,94,106,97,116,106,98,103,90,99,93,98,100,117,91,99,109,104,104,99,112,85,95,113,116,95,95,95,100,104,103,103,102,110,116,114,109,98,105,103,107,104,108,107,105,106,104,101,97,102,91,103,104,108,69,106,68,100,98,102,105,109,102,112,107,116,100,93,102,94,99,116,99,110,103,105,115,99,107,98,93,100,96,93,103,99,108,102,105,108,113,99,97,109,105,99,91,98,92,106,99,106,102,106,102,103,103,102,131,93,99,102,103,94,104,103,87,106,103,98,108,103,111,92,110,103,97,101,95,94,101,117,102,112,99,103,102,115,91,84,102,104,112,104,96,105,96,110,111,106,106,101,105,107,106,108,100,103,113,121,95,109,103,115,108,103,104,96,96,93,102,117,104,111,96,97,99,99,108,95,104,100,104,108,92,91,96,99,102,111,104,94,106,106,119,94,106,98,100,91,99,104,105,108,110,103,107,96,99,91,96,102,107,102,107,106,108,99,92,96,107,102,97,105,99,103,96,103,100,104,94,106,96,99,75,99,99,101,105,94,120,83,95,108,99,100,104,108,97,94,112,120,105,98,116,103,92,97,112,94,117,104,90,103,113,108,103,104,80,102,95,98,106,106,101,98,104,90,93,95,101,98,102,90,107,106,89,100,93,101,103,104,97,91,102,107,90,100,106,116,109,117,88,108,91,96,106,97,101,105,103,105,103,107,74,95,102,98,107,97,96,83,91,109,96,110,95,102,103,119,100,96,94,101,102,109,98,101,93,96,96,105,96,120,109,100,108,105,101,96,107,117,109,105,98,110,112,111,92,96,100,124,90,104,91,92,114,103,100,96,109,109,91,94,106,102,98,100,109,96,102,92,108,124,104,114,113,105, +498.90878,106,115,97,105,117,92,103,103,95,104,92,94,81,115,97,97,80,95,109,110,111,118,113,102,107,108,85,95,109,110,114,107,119,114,94,97,109,98,102,102,99,100,95,101,89,91,99,103,103,108,104,106,96,102,99,102,99,104,99,98,98,102,111,105,106,105,96,112,105,100,98,122,109,95,112,110,96,99,105,100,96,108,104,97,104,109,100,95,103,112,99,101,94,108,98,104,108,110,87,93,108,104,113,105,93,105,97,71,104,104,111,97,100,103,99,100,93,105,87,100,97,100,108,102,109,112,107,101,106,96,113,103,106,99,105,117,99,100,94,92,101,99,104,103,108,97,106,106,100,96,96,104,107,103,98,106,108,110,103,99,105,95,104,108,110,105,102,102,113,92,103,116,90,99,117,97,107,95,98,106,112,97,99,111,85,101,101,94,103,90,101,98,103,105,99,104,96,117,111,108,106,113,129,100,101,107,92,67,116,90,107,111,105,116,104,111,95,105,107,107,105,95,99,114,99,103,98,99,101,109,105,106,96,106,100,116,98,113,99,95,102,108,97,117,99,102,96,113,104,110,111,113,112,96,94,109,113,105,108,95,101,108,101,99,96,93,105,88,106,102,105,103,107,109,103,113,102,100,97,108,96,96,100,103,125,123,92,105,109,111,113,95,111,109,104,107,109,101,98,93,107,105,101,107,107,105,103,103,100,93,105,99,105,111,100,100,98,103,113,108,102,91,107,109,110,109,94,92,110,113,105,96,111,110,108,103,105,97,84,106,112,107,98,89,97,103,105,104,110,113,108,108,96,105,109,98,103,99,98,100,104,95,100,98,112,101,67,105,106,108,108,99,105,99,102,112,108,98,106,98,109,101,100,104,107,94,105,99,98,90,117,103,88,115,91,100,102,103,107,112,96,117,95,101,104,107,104,83,132,107,104,110,107,104,82,97,105,97,83,108,94,104,103,101,127,99,90,115,99,96,91,103,107,105,105,109,94,117,112,104,104,98,117,112,102,94,103,103,113,106,95,93,102,106,104,105,109,95,112,112,99,113,105,118,111,116,106,105,107,97,108,108,107,109,122,107,100,114,105,104,101,101,109,113,108,90,110,117,104,99,101,117,112,100,97,102,120,112,105,97,121,105,96,108,110,113,100,107,109,87,107,116,104,112,103,104,122,118,104,106,117,111,105,105,111,117,111,104,99,102,103,108,113,98,98,109,106,96,127,113,92,108,103,107,104,93,107,102,106,116,103,116,113,100,125,106,108,99,95,114,115,105,97,102,107,99,116,101,106,102,68,96,93,107,98,102,100,90,112,100,108,102,104,109,101,102,103,120,103,116,105,110,101,103,105,116,110,106,117,109,116,98,102,105,96,105,113,97,113,104,113,112,105,103,118,84,118,109,99,105,110,106,117,106,116,114,101,111,111,109,104,107,105,90,97,109,101,100,104,99,108,102,107,105,105,100,98,109,101,98,96,110,98,117,72,117,106,108,109,109,103,101,116,116,109,98,100,86,99,107,126,112,113,106,104,98,94,111,113,95,113,113,114,104,107,98,111,100,104,97,101,102,113,102,102,106,107,103,103,99,104,102,108,103,107,99,106,102,93,95,115,101,110,88,96,97,104,106,103,106,108,97,110,107,102,99,110,107,106,101,103,104,126,103,92,99,108,110,111,104,99,112,97,97,105,94,99,100,111,108,105,106,81,105,110,100,104,103,105,93,110,109,107,102,101,113,105,113,104,102,104,90,125,103,95,102,98,110,117,100,107,108,111,99,101,112,98,107,99,108,109,98,104,113,94,107,100,106,104,110,108,104,107,99,106,85,118,95,106,106,106,106,116,110,108,109,108,104,117,110,105,118,109,102,98,123,117,106,113,98,105,88,104,107,101,86,111,99,95,113,112,96,109,101,62,97,110,100,116,104,101,96,109,105,110,77,102,105,116,110,117,101,106,118,121,93,106,112,110,113,96,125,104,104,105,95,113,107,98,104,101,98,101,104,108,95,107,117,104,101,108,98,98,114,115,94,106,103,108,110,114,109,99,109,102,93,103,99,103,108,108,102,111,115,104,98,98,101,101,101,100,97,100,102,111,106,122,102,105,106,109,104,109,114,104,106,104,104,102,114,105,97,103,111,99,98,104,112,102,113,105,94,115,104,101,113,113,113,108,79,109,113,105,100,103,112,97,104,104,113,101,104,104,99,107,105,108,95,91,103,93,107,103,107,102,94,101,92,104,103,101,114,100,112,105,115,90,117,100,107,103,96,95,105,120,104,110,107,91,113,101,102,101,109,106,102,96,119,94,100,116,114,110,105,105,111,105,100,91,103,107,104,93,83,113,88,103,102,102,105,90,100,110,83,104,101,104,103,99,105,98,99,106,106,105,92,104,94,115,100,102,109,104,96,111,102,93,105,105,103,83,108,95,106,102,92,106,109,73,104,103,106,108,106,96,110,105,104,112,104,107,100,111,89,102,106,110,108,112,94,128,109,102,104,111,107,119,113,109,102,90,102,114,121,116,101,97,102,93,115,109,110,106,103,107,111,124,114,108,98,100,99,101,92,96,113,96,109,94,110,107,102,96,112,97,110,107,95,100,119,107,102,107,106,109,99,115,98,107,94,114,107,101,98,96,88,108,116,113,111,108,109,101,113,99,111,109,96,107,102,100,99,118,114,98,122,103,112,102,104,104,102,111,100,107,103,113,95,113,109,86,115,118,104,108,118,102,109,113,106,112,110,113,115,103,117,113,110,116,104,106,122,115,99,107,92,101,104,121,100,108,101,102,105,103,109,99,104,106,115,105,96,111,106,115,104,105,98,108,100,101,102,109,111,106,99,115,70,95,117,105,98,102,100,104,115,98,124,102,93,93,117,109,96,96,111,104,148,105,99,108,106,118,102,103,105,104,111,106,116,113,86,105,105,98,110,109,96,113,103,109,120,117,73,97,107,119,98,101,84,114,71,104,109,106,107,116,116,100,107,100,99,103,99,97,112,110,108,99,102,97,94,95,111,116,112,98,115,103,106,116,97,103,107,103,116,108,107,105,134,106,115,101,113,117,99,99,104,94,94,110,103,120,103,102,100,116,107,106,118,100,93,104,129,108,102,109,108,117,112,108,105,108,105,98,111,111,99,108,95,109,102,141,106,104,104,113,97,103,100,120,122,104,125,94,109,108,112,110,116,96,109,111,102,106,96,93,110,105,95,102,102,115,102,114,96,101,100,101,100,111,99,106,104,115,105,100,120,107,110,102,100,109,103,78,108,109,100,106,136,106,101,111,108,103,97,109,106,106,101,113,115,104,119,110,103,105,98,99,103,98,104,99,96,132,106,100,97,112,103,108,108,102,106,113,113,104,112,107,109,106,108,101,107,95,102,107,102,113,112,102,107,104,106,113,110,106,113,113,99,104,96,93,105,99,112,101,112,108,102,98,106,114,98,105,106,100,105,99,121,98,97,94,99,98,109,92,113,99,109,103,109,109,102,99,99,106,101,117,101,108,107,100,115,96,99,125,110,103,117,105,116,103,100,106,84,99,109,104,109,112,112,96,113,121,107,104,112,98,96,111,102,98,106,113,114,99,99,112,99,95,87,117,117,94,95,94,110,90,111,112,106,100,107,104,116,114,89,109,111,102,103,111,111,99,102,106,104,116,107,83,114,106,102,109,96,107,108,106,98,108,106,97,113,116,106,103,101,98,106,104,100,109,97,104,86,116,110,99,113,107,91,104,97,110,102,102,117,106,106,104,98,128,113,106,113,110,101,105,94,96,113,100,104,116,113,116,117,101,101,100,98,108,96,109,103,94,113,124,108,93,109,110,101,99,104,107,102,110,100,98,110,99,116,97,103,100,109,106,109,105,101,103,103,97,109,100,101,96,94,111,99,88,104,104,115,94,106,96,116,108,99,101,122,106,100,114,112,103,99,112,100,94,108,119,106,108,104,107,110,99,107,108,99,102,96,113,103,109,92,103,111,111,106,98,101,97,95,91,106,100,97,104,100,106,95,116,110,123,104,105,103,117,106,95,114,93,97,122,106,108,103,90,114,111,102,114,109,121,95,127,88,104,117,106,120,113,103,108,119,105,104,110,104,116,105,99,105,101,109,118,103,96,98,104,114,101,102,106,102,103,116,93,105,102,107,100,118,101,108,107,106,102,112,110,107,113,109,95,114,116,109,87,96,116,104,117,106,100,108,110,100,106,113,120,112,110,111,103,94,95,106,106,104,92,101,100,111,99,102,98,117,111,102,104,102,98,106,98,113,105,96,88,113,113,113,106,104,109,118,110,104,106,104,111,102,120,94,113,93,93,103,106,91,109,115,106,101,102,112,99,116,114,106,93,103,112,100,107,110,106,94,107,102,114,107,101,112,101,101,98,106,104,122,96,100,111,91,94,98,115,118,87,104,102,113,98,102,100,107,82,106,123,99,115,102,105,116,98,109,100,111,112,102,104,112,112,99,101,109,107,96,103,120,103,92,113,112,101,95,97,103,97,92,107,95,106,124,105,103,103,114,97,113,99,105,98,102,136,103,110,93,83,102,99,109,101,100,97,112,103,94,108,100,107,109,101,101,113,102,104,110,103,99,105,106,113,128,93,103,100,111,107,93,97,98,115,105,104,99,100,113,102,95,94,99,118,99,92,109,110,99,113,109,107,99,118,100,97,99,93,110,106,106,113,117,94,102,109,94,118,106,95,75,115,104,94,87,100,108,105,104,102,91,105,105,87,112,119,115,107,89,103,97,109,121,128,110,109,99,112,106,109,93,90,102,108,101,97,84,99,94,98,109,91,107,101,105,97,111,113,106,104,103,97,110,96,105,100,96,92,112,93,102,93,98,128,110,109,84,113,91,98,95,113,96,106,101,98,112, +499.04941,105,105,101,76,105,114,98,96,110,101,90,110,92,99,103,92,87,104,101,111,110,94,97,103,93,100,100,118,107,118,107,114,97,107,99,100,97,94,93,95,100,102,96,108,112,114,93,102,103,95,100,101,128,110,101,95,92,106,104,75,111,108,99,93,99,104,103,109,76,97,102,89,91,105,90,97,102,111,99,102,108,101,84,111,101,107,109,105,100,103,106,105,112,100,112,90,105,118,91,95,99,98,94,98,99,99,105,100,106,108,105,105,106,79,116,109,106,100,112,100,95,114,90,92,102,101,110,100,110,122,103,107,109,98,107,99,106,104,112,101,99,100,94,111,96,110,101,98,112,100,99,98,105,92,89,100,101,105,100,100,107,107,103,104,112,92,104,92,114,99,100,94,99,96,96,110,99,92,106,93,103,102,105,108,95,99,91,104,100,103,111,108,102,93,92,103,103,108,106,97,102,98,92,102,96,112,92,101,102,122,90,100,111,96,101,99,96,97,92,100,102,103,115,99,105,105,114,112,90,103,105,104,90,103,103,106,93,94,101,104,110,102,106,109,89,124,100,104,98,99,95,102,97,106,111,110,102,96,96,103,97,101,97,105,90,108,103,114,86,101,105,99,111,110,106,101,109,98,98,95,102,100,110,103,109,98,102,106,111,101,108,100,100,94,108,107,101,103,107,104,101,109,106,108,91,96,117,103,91,104,91,106,101,112,94,105,99,107,113,102,105,107,96,106,113,100,96,98,113,101,102,95,104,95,100,106,91,101,105,105,102,86,97,109,97,96,102,104,109,88,98,103,99,100,101,117,103,109,105,104,108,96,100,91,112,107,100,115,101,106,121,110,115,107,102,103,110,105,95,111,117,101,99,98,94,94,93,101,106,94,117,103,101,109,98,93,95,106,101,100,103,102,98,107,103,102,90,105,103,96,104,97,98,112,104,106,101,103,116,106,109,99,95,100,108,97,118,112,121,99,116,95,108,99,110,104,100,102,104,108,117,98,103,95,108,106,105,101,100,113,101,99,101,109,112,112,105,103,89,100,98,113,113,118,110,103,112,98,94,94,92,102,112,100,102,106,102,105,98,96,108,108,105,110,97,90,105,102,104,104,110,68,110,98,103,102,98,117,101,97,105,109,103,106,112,113,74,107,106,97,115,112,109,106,95,113,105,108,125,89,102,98,105,99,99,95,95,105,109,109,101,107,143,100,110,95,103,104,123,100,101,103,96,119,102,107,79,103,100,106,113,117,109,103,106,99,109,91,102,116,110,110,89,101,93,107,116,99,90,97,94,109,111,104,114,100,105,128,107,99,112,108,108,99,109,106,103,109,102,94,106,97,108,94,103,111,113,105,112,111,96,116,105,98,98,102,98,110,108,110,113,108,108,111,108,113,102,96,109,99,113,108,107,99,108,100,95,104,95,109,112,100,105,91,98,118,103,89,108,94,101,109,107,99,103,100,98,94,102,112,96,100,106,96,113,104,108,126,106,106,98,103,104,110,98,119,102,94,99,103,119,98,110,103,91,114,105,109,111,93,96,92,117,92,93,97,104,107,87,90,107,118,95,99,109,119,105,104,87,98,105,93,109,100,103,111,125,106,100,106,104,104,100,111,93,95,93,129,78,100,107,109,108,96,101,108,104,101,99,103,108,108,103,100,100,98,103,106,114,91,102,102,94,108,115,105,103,108,102,103,114,115,107,118,96,100,105,105,104,105,106,99,105,94,106,101,92,118,101,113,118,109,103,109,92,113,97,102,107,93,101,96,102,108,110,103,103,106,99,106,108,116,99,107,102,106,105,107,112,103,114,105,104,83,103,105,104,103,111,93,101,113,109,136,106,113,111,105,96,107,103,113,106,114,104,106,113,105,103,99,97,105,99,104,101,109,99,104,122,98,99,107,103,101,103,99,99,107,110,98,107,88,109,105,100,122,97,110,106,105,102,102,96,115,99,105,102,108,109,106,104,100,105,108,92,98,104,97,105,97,104,106,99,121,104,98,105,104,95,106,100,109,103,110,111,103,99,103,97,101,109,112,116,103,100,95,106,111,103,116,104,107,121,107,82,100,94,104,109,110,110,79,106,116,105,109,100,110,116,114,106,107,111,108,106,105,99,103,102,112,97,97,102,112,101,101,105,115,110,105,102,108,117,118,100,103,98,114,109,106,110,101,119,94,107,103,100,104,111,105,100,110,97,98,100,103,112,104,94,109,96,109,102,103,96,97,96,99,105,110,104,89,112,100,96,104,122,109,96,119,99,104,93,102,99,103,98,112,96,117,101,115,100,98,102,121,103,101,115,103,92,96,108,105,105,98,106,104,103,102,101,108,105,103,92,104,102,117,99,106,104,101,105,104,99,99,104,92,92,107,101,98,94,101,99,106,90,95,104,106,109,109,108,116,106,98,106,91,91,99,101,102,106,109,106,110,102,100,102,107,101,101,94,105,115,104,99,99,104,121,101,103,114,97,93,81,114,110,105,105,109,109,103,102,102,113,97,108,97,116,121,116,101,100,87,99,102,108,98,98,111,88,105,106,97,100,97,112,103,96,90,92,116,102,105,102,92,97,88,90,116,98,107,116,102,102,113,100,113,91,111,109,102,102,93,99,98,111,104,106,108,105,113,93,94,115,113,116,105,91,95,116,96,99,104,100,104,99,111,109,100,102,102,107,110,117,113,111,100,113,106,97,120,104,105,104,98,111,103,99,110,98,117,98,100,108,105,113,102,100,111,116,105,107,106,122,102,120,103,92,113,110,116,116,107,100,101,92,102,117,109,122,104,101,102,104,94,96,111,88,113,116,112,88,104,97,90,109,105,114,103,101,105,105,110,98,104,99,105,102,100,96,106,109,109,99,95,103,109,101,110,109,97,110,98,105,124,108,100,103,101,103,107,95,100,112,112,98,113,116,104,116,109,105,115,111,106,97,114,102,96,111,97,110,103,110,99,105,106,103,107,106,79,87,105,103,101,104,103,92,106,98,102,91,102,106,115,109,114,95,115,88,94,112,120,100,83,102,109,108,106,96,101,107,109,101,103,112,106,98,96,110,107,97,98,98,97,105,103,97,97,118,92,92,116,106,116,94,105,106,105,121,100,113,110,106,99,109,110,104,104,99,110,107,119,100,99,98,101,103,99,97,103,104,109,105,99,95,101,106,101,109,92,104,107,105,106,102,105,110,100,95,94,98,101,106,110,98,96,116,115,111,92,114,109,99,102,83,114,103,105,116,110,86,106,102,92,108,98,109,112,83,106,94,102,102,101,101,109,100,116,93,110,109,99,108,111,104,97,94,112,102,105,100,105,102,99,101,102,102,65,93,103,112,104,102,103,101,100,106,108,100,105,124,117,113,107,106,102,92,106,98,106,107,92,103,108,95,99,96,104,107,103,108,103,101,113,113,98,110,106,101,112,105,98,95,112,93,99,113,108,105,111,98,99,109,106,94,104,103,93,98,102,95,110,110,112,103,105,117,84,106,93,106,106,100,119,96,113,104,111,94,99,106,95,100,103,109,102,99,101,103,112,109,98,100,96,98,101,113,104,102,101,114,105,117,104,117,97,106,107,112,98,101,110,99,100,94,107,97,106,106,114,103,103,105,101,119,115,102,109,111,111,97,100,94,93,101,102,115,105,105,94,112,84,99,93,101,101,94,107,112,105,95,88,100,120,103,113,101,104,91,105,127,106,98,107,106,106,102,100,98,112,114,105,102,101,95,105,105,95,100,96,101,104,104,106,110,114,95,99,99,107,106,106,106,106,124,107,106,118,97,84,111,100,103,108,108,102,107,109,109,91,113,104,106,110,107,102,107,105,112,93,102,93,117,103,108,108,97,99,104,104,86,113,108,102,114,107,108,98,105,94,113,96,105,108,99,91,100,108,117,105,109,100,136,117,107,103,104,104,84,108,106,95,97,102,101,107,102,105,103,109,100,102,111,64,98,96,93,112,113,98,115,111,94,104,105,101,100,113,92,101,100,118,104,101,99,103,109,124,109,117,98,106,107,101,98,116,105,108,108,96,112,97,95,105,114,109,116,117,109,94,94,96,114,102,96,99,101,107,102,111,118,97,100,106,111,107,109,112,103,91,108,108,112,90,104,99,95,106,101,91,82,107,107,104,109,100,107,111,88,109,108,99,97,105,114,95,109,99,105,115,107,104,101,96,102,109,105,110,96,91,113,110,105,101,95,98,110,109,84,102,97,103,100,100,119,99,95,105,98,110,103,91,99,113,102,107,91,105,92,98,90,107,101,116,79,97,106,105,105,94,100,95,99,102,106,103,89,106,103,100,100,100,110,110,102,107,105,104,97,105,103,112,106,109,105,95,113,97,107,100,104,107,105,97,103,109,103,66,111,106,110,113,111,109,110,105,112,84,93,106,121,99,105,121,91,99,103,101,103,102,97,99,97,103,114,96,109,109,114,110,103,95,93,113,100,104,98,107,95,106,100,99,105,96,77,107,98,106,106,102,108,104,119,105,101,93,108,98,98,107,106,110,100,109,104,95,106,104,109,99,104,95,108,92,99,100,99,108,99,105,103,99,108,102,94,99,115,106,97,110,110,107,100,102,105,111,110,109,109,104,103,93,109,110,96,113,117,117,94,101,95,101,113,83,107,116,106,98,101,110,113,92,100,107,108,108,109,96,82,106,95,98,100,104,98,105,108,101,108,104,109,103,119,98,91,102,99,109,87,93,92,102,98,106,100,112,89,103,99,99,115,92,105,109,112,96,106,108,112,107,103,105,98,102,111,106,100,95,113,109,101,95,97,98,97,102,105,119,96,102,96,96,104,103,113,96,97,106,103,97,89,104,101,86,110,107,97,85,99,124,93,106,74,105,107,100,93,111,106,101,106,79,117,96,104,116,106, +499.19003,121,107,98,92,92,102,116,105,101,109,99,93,99,105,103,100,101,110,111,105,121,94,90,95,102,107,94,107,106,106,105,99,99,98,109,101,112,91,96,93,97,107,104,97,95,102,102,114,112,105,103,100,98,101,104,113,103,96,100,85,103,116,117,91,84,99,92,96,102,111,108,111,94,93,110,114,94,97,111,116,117,98,105,97,111,97,95,113,109,113,106,78,109,113,114,107,100,103,104,75,104,95,102,107,114,94,105,115,108,109,101,102,109,99,122,112,104,123,100,108,111,109,100,97,109,86,106,105,106,96,107,106,128,121,108,98,99,95,111,103,105,102,101,105,96,106,106,110,101,109,100,96,113,105,104,100,120,100,113,117,99,102,105,111,115,106,105,87,103,91,98,109,100,95,93,99,106,102,91,93,105,96,95,108,119,109,114,103,99,93,91,98,101,94,99,89,108,104,107,104,105,103,99,101,114,115,90,107,113,109,114,98,107,114,94,107,105,91,81,102,101,101,108,90,100,107,104,121,109,117,101,105,106,96,99,99,106,104,104,105,100,101,106,104,100,101,110,112,102,110,106,100,94,97,94,111,91,79,101,109,106,103,97,108,94,102,93,96,111,105,108,97,91,93,98,95,95,66,95,99,95,105,93,100,103,102,103,100,114,89,102,99,113,114,97,109,115,106,104,109,116,103,100,103,88,104,112,103,105,96,82,107,111,103,100,98,100,100,99,101,104,110,113,110,106,99,105,98,106,101,106,99,116,93,106,98,96,97,113,104,93,90,100,104,112,110,113,105,98,107,113,102,106,97,100,103,110,106,99,102,107,110,91,102,105,101,98,104,94,98,98,108,100,89,98,101,106,100,103,95,114,112,99,96,104,91,94,84,102,94,102,102,101,101,102,105,96,95,111,102,106,106,95,111,107,100,95,101,102,102,99,107,112,107,103,83,96,117,111,100,102,103,101,112,107,106,98,109,103,121,94,100,92,103,104,99,105,109,109,97,102,107,104,102,101,104,114,106,93,111,105,116,110,107,102,103,112,106,108,97,82,107,107,108,115,106,99,104,91,100,117,109,104,98,93,91,116,114,95,106,98,106,105,104,111,100,105,103,98,90,101,104,97,95,93,106,94,100,111,105,112,80,103,113,103,104,117,103,109,101,120,115,112,108,97,103,109,102,109,94,99,119,99,109,114,102,110,100,122,113,100,93,111,110,102,104,108,118,109,114,95,94,104,99,123,109,105,106,118,113,89,76,103,107,105,103,104,91,106,104,115,122,97,118,104,104,106,107,97,99,92,100,96,107,116,104,102,121,107,106,105,101,117,105,96,101,102,104,116,94,104,103,103,98,102,94,98,103,109,98,93,101,97,97,117,110,118,99,103,109,99,105,107,101,107,99,103,105,104,107,95,117,100,112,112,121,127,103,84,98,97,119,102,96,65,100,98,94,105,100,104,106,106,99,94,89,89,103,112,102,98,107,116,107,94,100,106,111,101,99,99,111,113,108,98,104,98,109,106,111,104,94,108,107,109,107,109,98,107,104,101,95,98,118,93,109,101,110,108,95,117,108,108,112,105,103,128,121,103,100,105,100,109,112,108,111,105,114,105,99,103,109,94,109,106,103,106,106,99,103,103,95,101,109,96,99,112,68,93,126,103,121,108,93,95,100,121,113,123,103,100,106,110,111,109,102,108,112,108,108,108,107,106,116,106,108,108,105,109,92,100,102,96,104,105,105,99,116,107,98,108,98,104,104,105,88,97,92,96,98,101,111,110,101,113,108,110,116,111,112,106,109,105,117,107,99,108,108,112,110,88,86,104,99,117,90,97,108,106,97,107,99,105,103,110,101,112,112,104,96,104,98,97,101,104,112,109,102,94,103,106,99,106,102,98,115,106,110,100,104,97,108,111,104,92,104,116,95,104,109,108,84,101,104,100,101,102,106,112,102,123,100,92,115,93,92,101,120,102,109,109,110,91,101,98,102,103,113,109,89,102,101,102,107,97,94,103,103,103,96,110,106,109,110,98,102,93,100,113,96,99,107,104,104,112,96,103,107,106,98,115,102,94,108,107,105,102,101,104,100,113,91,113,103,104,97,108,106,111,97,100,103,125,99,104,102,95,108,103,101,98,100,103,96,99,103,101,112,113,112,108,100,106,109,106,113,114,116,103,102,117,105,110,100,103,102,116,94,103,97,100,113,112,100,97,103,106,94,100,99,90,108,109,93,99,99,103,112,116,102,98,99,103,107,104,95,98,102,101,93,115,92,107,98,120,92,101,115,96,107,97,111,93,88,106,103,103,101,89,119,117,101,113,86,115,116,106,109,109,121,110,98,111,94,105,92,108,104,105,101,97,101,104,91,93,101,105,100,89,95,94,109,106,101,98,104,95,100,113,107,98,104,112,109,88,103,116,101,106,98,94,110,112,112,94,94,113,107,102,111,93,117,107,102,98,117,94,95,102,119,97,98,88,112,109,111,111,116,101,98,104,112,101,106,98,102,104,109,104,114,94,121,94,108,106,100,91,102,97,101,104,103,97,99,104,107,91,101,103,97,100,105,105,79,95,121,97,108,78,89,95,99,105,108,98,106,97,108,111,106,113,100,112,102,105,98,95,101,101,83,102,94,105,78,104,106,112,100,105,102,91,100,116,99,99,98,102,114,107,104,91,109,100,92,111,109,97,101,112,101,108,98,109,125,102,104,105,93,115,98,104,103,117,104,106,101,100,105,108,102,104,106,93,107,98,105,104,108,119,101,102,109,92,110,108,102,110,96,105,106,104,97,100,94,104,98,111,107,120,108,99,103,90,75,101,96,102,87,113,108,100,103,97,101,99,93,101,115,95,114,101,104,111,101,100,117,113,96,98,98,110,107,108,95,104,96,93,109,99,97,89,101,97,94,95,105,109,109,112,95,97,103,92,107,108,103,107,103,107,104,104,106,95,98,103,92,105,104,105,96,98,104,69,94,103,92,106,101,100,99,113,89,105,104,106,102,102,108,108,100,101,101,110,99,110,104,113,108,99,99,102,91,112,99,103,100,109,112,105,110,95,102,104,114,104,87,91,96,108,91,104,90,112,99,100,93,98,112,89,83,96,112,101,109,106,111,101,99,109,106,93,92,95,104,106,96,103,100,114,90,109,80,112,102,95,105,113,102,97,116,106,93,92,104,94,104,90,104,105,108,109,105,119,74,102,98,98,105,99,108,105,107,93,98,101,93,100,89,99,96,109,113,99,102,103,97,104,103,95,111,93,98,109,96,106,105,102,98,99,111,94,101,115,104,96,117,107,106,107,93,101,89,104,94,105,115,122,87,97,115,91,106,83,108,102,105,100,116,101,98,108,105,91,91,110,92,99,95,105,103,103,100,103,105,99,109,97,105,103,114,86,75,117,110,111,118,109,98,99,102,88,109,99,93,91,87,112,99,109,102,105,97,96,103,107,103,105,113,108,106,99,97,107,102,102,96,110,117,109,105,92,117,89,101,108,104,99,95,100,99,102,98,102,102,98,117,94,93,106,117,112,105,112,100,96,114,81,113,98,107,103,101,114,88,78,112,103,102,107,98,96,103,130,114,95,109,105,89,109,96,96,92,97,98,99,101,98,107,112,75,89,116,113,95,106,108,92,100,101,91,100,100,96,113,107,109,103,101,94,94,92,70,97,102,95,97,116,109,102,93,95,113,106,101,109,109,99,104,113,98,89,109,107,99,107,97,110,101,114,104,106,100,106,83,97,102,107,111,96,96,96,96,110,106,102,83,102,100,104,97,114,105,92,94,113,93,104,97,106,105,110,102,110,100,98,108,99,98,110,107,112,112,105,101,112,104,90,103,102,99,110,97,105,100,114,97,95,103,104,89,108,112,103,107,118,116,113,101,97,84,102,98,114,100,103,91,101,111,101,106,105,98,99,105,107,78,110,101,102,105,98,112,93,110,93,103,101,93,110,107,106,114,103,91,114,91,105,93,102,104,102,104,91,96,99,89,112,113,103,112,95,105,98,109,104,112,100,97,113,91,97,96,110,94,110,112,101,94,103,96,107,93,98,94,90,98,101,108,113,100,109,101,107,101,102,109,95,103,105,113,102,101,115,120,116,116,107,104,105,96,99,95,105,109,96,113,106,113,104,102,107,95,97,101,96,85,100,101,97,91,113,104,108,103,120,102,93,110,99,105,116,109,107,106,98,101,112,107,106,96,109,105,88,105,106,100,101,101,105,91,98,104,104,109,103,95,109,106,103,109,101,105,80,104,100,110,95,87,97,110,108,107,104,106,99,107,109,108,105,109,97,114,114,104,101,98,106,119,94,106,105,100,97,121,103,100,109,102,104,104,109,109,109,127,100,101,108,100,102,103,112,98,99,105,119,89,99,94,102,84,98,96,89,96,90,98,98,100,94,95,106,96,92,89,102,103,88,121,113,93,114,99,109,101,96,111,98,99,112,110,98,98,95,89,101,111,101,109,96,89,96,107,107,103,107,97,99,108,104,96,97,91,115,96,98,106,103,105,107,92,109,101,108,76,102,105,104,111,97,105,106,96,118,80,92,106,102,95,90,91,104,94,101,104,99,116,88,96,111,98,106,94,105,103,106,101,103,113,103,105,99,98,114,99,106,93,116,112,103,98,96,120,109,100,93,105,115,109,105,98,92,109,110,96,106,108,91,100,101,100,97,102,106,111,107,92,98,93,100,111,100,100,98,101,100,104,107,100,116,96,98,101,97,105,96,88,107,110,101,103,102,108,94,105,112,104,110,99,119,103,100,93,104,93,96,105,96,103,98,96,97,95,106,99,113,100,104,111,103,104,99,84,96,106,109,108,101,109,89,90,98,109,107,103,93,91,94,104,94,95,100,105,105,102,104,106,95,87,95,99, +499.33066,112,92,96,103,91,98,98,110,94,96,99,93,98,77,109,101,103,87,103,108,93,114,97,96,97,102,95,107,103,115,100,101,108,96,109,90,104,103,104,136,90,103,111,102,98,111,99,114,100,92,106,109,91,91,97,104,102,102,95,100,101,105,96,99,104,98,108,113,107,140,106,107,91,100,94,89,102,106,113,99,106,109,94,113,117,105,96,112,102,103,114,108,98,95,102,106,100,101,107,91,84,103,86,105,96,95,111,102,90,82,104,136,105,88,99,108,98,94,110,111,101,105,98,102,97,100,122,102,109,98,104,104,106,103,95,96,95,106,94,96,108,97,91,104,99,98,129,94,115,98,100,90,108,106,113,113,112,108,106,107,112,111,104,110,110,118,98,103,113,96,101,103,80,106,122,109,100,99,101,111,105,110,101,117,117,109,96,99,118,108,91,107,105,101,110,93,96,109,103,112,107,105,110,109,107,106,101,111,99,105,87,103,105,105,92,89,98,107,89,91,98,107,99,95,116,107,110,98,110,104,108,98,98,100,113,113,87,106,113,90,94,95,102,104,97,97,105,105,110,111,107,107,95,99,99,133,103,122,98,108,97,108,103,97,94,101,117,82,107,92,77,109,105,67,106,121,112,102,106,97,111,102,105,109,103,90,95,110,99,111,99,102,106,98,110,105,100,92,103,110,100,95,102,114,103,101,112,113,112,121,92,109,116,119,102,101,99,99,111,97,97,99,126,101,108,106,98,82,101,117,102,100,103,93,105,102,100,112,112,100,95,106,97,104,109,105,109,98,108,90,113,95,92,87,104,103,108,104,113,113,97,99,114,96,91,96,113,100,105,110,104,98,108,96,106,108,99,104,101,108,116,107,93,102,106,95,116,108,110,98,97,91,87,103,102,99,92,126,99,105,92,94,93,100,96,106,113,108,113,95,102,99,94,98,98,105,91,104,106,103,96,96,108,105,106,96,94,82,107,113,97,107,101,112,114,94,90,105,102,102,104,105,120,95,94,97,92,100,118,112,105,100,100,115,106,91,91,136,100,102,110,100,105,110,95,103,94,98,99,90,106,103,109,95,106,105,90,108,109,99,105,105,99,98,103,98,120,99,107,85,97,99,105,83,97,109,110,105,99,87,108,112,96,103,102,105,103,109,118,84,83,110,109,98,113,105,117,99,103,96,117,90,107,113,104,99,117,109,99,108,109,100,100,91,110,108,116,87,105,115,91,123,105,100,107,104,101,107,107,99,95,105,100,88,115,100,119,104,102,103,105,110,108,100,113,112,113,93,83,107,98,97,97,114,146,99,116,94,100,104,98,98,79,101,109,89,108,97,111,122,106,103,94,94,119,104,112,108,114,103,102,106,83,101,95,98,94,107,102,97,108,98,115,113,102,99,83,106,100,96,100,107,108,100,109,102,99,114,92,96,98,107,104,107,107,114,91,100,106,109,115,128,100,104,107,102,103,103,106,91,101,102,102,98,100,125,99,114,95,109,103,113,114,106,86,99,98,87,108,101,104,102,106,96,92,101,99,129,112,89,106,90,100,78,96,91,110,100,96,121,100,99,100,107,113,105,96,103,96,102,96,100,95,99,107,108,95,110,102,99,107,98,111,97,96,97,105,96,99,94,117,95,102,98,101,106,103,97,104,116,102,93,103,106,98,102,101,113,107,106,94,98,102,98,96,100,108,103,90,109,114,105,112,109,99,99,108,108,114,92,106,117,112,114,99,103,90,102,92,101,110,101,103,113,94,112,111,102,112,97,103,106,110,90,102,108,103,110,100,102,113,106,113,109,113,99,112,99,95,100,114,100,121,113,105,104,106,91,100,76,111,104,100,90,111,104,120,100,95,103,84,97,109,113,101,101,101,116,108,108,109,99,104,109,97,91,104,103,106,118,104,124,104,85,99,100,112,105,102,109,109,101,99,104,105,103,100,107,115,100,103,94,93,108,96,109,101,105,113,107,102,101,117,98,105,102,101,116,95,99,101,109,92,100,98,94,100,117,100,110,103,105,100,110,112,96,105,100,104,117,91,114,103,107,93,103,99,116,108,97,110,108,105,107,99,102,98,98,105,106,98,101,107,106,101,99,95,98,102,113,106,120,104,106,94,100,96,96,99,119,109,108,101,117,104,105,99,107,101,104,98,101,92,99,101,104,102,102,99,110,101,99,100,102,92,91,109,95,99,100,83,105,101,98,98,108,111,101,99,104,95,113,91,112,114,107,106,100,84,102,103,103,109,106,97,94,94,88,98,105,97,91,100,106,107,107,113,106,102,99,111,100,94,106,106,99,104,120,100,88,106,110,111,101,109,110,106,98,92,105,100,105,108,116,102,101,101,100,113,113,98,104,97,110,93,104,98,91,102,101,109,109,102,93,96,94,103,107,106,109,104,112,101,106,102,99,102,105,100,103,100,106,110,104,94,106,83,106,98,104,97,96,125,103,118,102,92,111,105,99,108,101,100,107,110,95,92,106,119,100,104,109,111,91,101,110,92,111,100,97,116,103,103,95,118,96,102,107,102,103,116,108,123,110,104,106,99,114,112,113,105,108,114,102,96,109,117,104,105,93,103,97,92,115,102,99,105,102,105,103,112,108,102,99,106,100,114,109,113,103,106,97,113,111,98,109,101,96,109,103,99,110,109,112,109,113,117,84,104,115,109,109,111,104,106,117,121,101,106,116,98,104,81,113,100,105,121,105,100,123,94,113,98,118,97,95,107,105,111,113,105,111,107,116,125,111,98,104,100,98,101,114,99,104,109,107,85,90,103,117,111,108,113,111,106,99,113,108,98,106,112,112,107,100,106,111,106,100,107,103,109,100,124,111,95,91,121,104,97,110,94,97,109,112,108,93,116,104,104,103,106,105,111,115,102,109,111,111,114,116,107,111,109,107,109,117,107,99,112,92,115,107,101,82,98,104,114,107,107,110,113,125,100,106,97,98,103,111,91,108,104,109,98,102,119,107,107,110,96,102,122,98,101,107,125,124,101,112,98,93,98,100,103,110,111,125,113,110,104,110,107,113,111,104,108,96,115,103,117,95,109,95,101,80,98,99,100,112,109,103,112,103,117,113,106,102,99,112,92,114,109,110,102,105,106,105,108,108,110,109,98,92,115,100,106,107,103,102,104,105,99,103,113,101,116,97,107,95,92,111,99,100,100,102,100,112,107,84,108,110,106,101,98,106,84,106,108,98,105,112,101,108,98,100,105,93,113,102,100,108,109,99,106,121,107,103,78,114,114,106,99,121,106,102,106,101,99,115,109,110,91,98,117,123,115,99,112,106,103,101,111,110,104,114,93,103,100,108,99,114,106,106,113,100,102,109,97,108,102,106,107,83,111,104,112,93,108,95,95,113,107,105,102,104,104,102,102,111,108,106,106,90,120,100,105,96,108,106,110,103,109,109,107,108,95,110,103,89,100,108,103,127,109,98,111,101,107,106,99,112,116,118,86,96,100,107,103,100,101,105,100,90,112,115,107,109,94,102,117,102,109,91,99,111,111,99,103,116,103,111,112,111,107,97,121,128,101,105,112,113,106,101,104,110,104,106,117,121,119,98,101,98,109,111,107,100,106,98,105,122,106,113,107,108,100,101,112,106,113,94,111,113,109,99,109,117,114,96,114,109,108,104,113,106,96,111,100,107,109,106,108,107,116,107,101,101,104,143,108,112,113,115,111,111,107,113,108,99,109,106,109,113,98,106,100,106,104,104,115,104,119,113,110,92,109,109,103,103,104,104,104,112,105,106,105,110,109,105,112,98,81,103,112,116,109,112,107,103,119,108,104,105,110,102,110,98,107,94,110,106,108,99,103,97,100,114,101,106,107,103,97,111,113,110,108,111,102,112,101,117,108,103,102,104,120,99,107,107,107,110,99,113,101,101,98,107,114,92,108,105,117,104,107,123,89,108,102,103,97,117,107,103,101,109,110,105,103,98,102,107,104,112,109,105,97,105,103,116,105,117,114,105,108,118,111,113,111,96,108,116,127,100,105,110,106,105,107,116,110,86,107,103,102,106,103,107,105,102,117,100,106,100,106,94,106,112,106,98,100,101,112,97,101,103,110,106,103,121,109,128,99,107,99,88,121,95,109,94,99,100,103,97,112,112,119,105,107,101,105,109,105,101,119,76,105,108,107,104,107,112,103,104,116,85,109,115,117,110,100,113,110,97,115,93,108,101,105,111,94,99,112,104,113,93,112,105,102,110,107,99,113,99,118,105,108,111,102,99,89,107,92,106,103,106,100,119,100,98,100,102,111,105,109,98,95,108,103,107,109,118,99,101,105,109,99,111,99,107,101,112,102,126,104,104,99,99,97,115,103,109,88,96,109,115,112,104,126,108,108,101,103,105,98,104,102,110,104,102,112,110,105,95,114,117,119,115,102,110,104,111,97,105,99,108,108,95,109,114,109,104,116,100,94,112,100,115,105,106,109,98,140,91,103,106,104,111,98,99,97,105,106,95,109,99,106,106,123,116,96,106,103,106,101,94,118,114,105,106,81,117,106,98,76,103,111,102,120,108,105,104,84,104,108,103,99,121,95,116,100,101,94,118,96,118,105,113,113,103,105,106,100,116,91,107,111,109,103,94,112,102,114,97,108,104,112,102,114,109,108,98,102,103,109,105,97,117,107,95,107,117,91,101,98,95,95,113,103,110,93,99,107,107,99,121,107,101,113,99,87,115,117,98,111,106,113,94,109,97,99,106,105,107,96,113,117,105,100,103,121,94,106,103,101,104,100,102,78,98,95,110,107,105,108,112,103,118,102,103,95,108,117,113,109,110,114,99,109,98,98,103,95,108,114,99,94,97,96,94,121,100,80,100,91,103,106,101,97,109,108,87,117,111,115,111,114,98,98,102,112,101, +499.47128,108,106,98,102,105,108,105,102,116,107,104,100,100,109,91,103,97,103,96,107,113,89,89,109,109,98,100,106,108,99,100,113,100,103,111,102,95,102,104,107,92,114,114,107,110,118,110,103,108,99,102,95,95,110,94,114,99,101,108,103,105,103,94,92,105,107,116,99,99,109,103,111,96,111,109,93,104,110,115,102,105,109,105,99,113,92,97,100,103,113,104,101,112,98,102,104,99,94,109,107,105,113,102,112,103,101,112,73,105,105,105,101,104,98,102,95,96,121,102,102,102,110,109,86,99,109,117,99,106,109,112,99,103,110,123,103,96,100,103,114,89,100,101,103,68,89,116,100,103,106,106,116,111,100,106,122,117,109,102,105,104,104,112,95,111,104,119,105,112,105,113,113,110,98,110,107,107,101,122,107,95,102,102,125,103,112,96,94,116,111,110,106,111,104,106,108,100,115,104,119,110,109,109,104,107,97,107,117,105,121,104,98,119,107,106,110,95,112,106,101,100,102,103,100,109,100,117,109,108,106,115,100,111,103,100,102,106,106,106,111,107,102,97,116,94,109,106,99,106,115,103,103,122,102,99,117,99,100,107,104,82,112,95,106,93,117,104,95,106,114,104,109,103,105,105,118,108,108,98,98,113,108,107,106,98,113,91,103,114,104,105,101,111,112,107,95,113,110,103,108,99,108,101,118,106,113,103,107,103,100,100,99,124,101,121,101,106,100,111,100,104,103,103,86,117,103,95,95,109,106,69,109,110,110,118,113,120,112,102,99,94,113,97,101,102,110,110,123,111,92,106,107,110,106,111,120,105,118,110,117,102,112,109,97,102,108,104,109,107,100,120,98,106,95,109,97,103,110,105,95,96,109,103,112,112,91,92,106,105,94,113,106,108,104,112,102,102,98,103,99,101,107,112,97,109,99,98,108,106,104,97,101,105,106,107,100,106,102,116,105,89,99,94,106,109,110,114,97,96,102,102,114,113,103,105,113,95,115,100,110,107,100,94,108,103,106,102,100,108,105,106,108,121,105,98,101,113,114,103,109,107,110,94,104,113,100,106,122,105,106,122,90,104,109,115,121,104,97,100,108,100,99,105,107,104,94,103,104,86,96,118,107,108,96,115,110,102,128,110,105,111,107,104,103,98,115,92,97,102,107,95,92,118,105,105,103,106,99,108,95,100,87,99,102,112,89,122,100,110,102,104,106,104,104,103,99,101,100,107,105,108,108,108,98,115,89,113,120,111,98,116,110,107,109,107,100,114,115,99,95,108,115,103,109,99,104,111,72,105,108,94,90,102,112,117,104,102,105,104,98,101,101,106,119,116,105,108,108,101,105,107,111,107,102,112,106,107,114,102,105,107,108,96,99,96,112,101,115,108,106,101,103,101,117,108,109,93,97,107,100,102,107,94,113,111,104,105,112,105,101,95,97,100,100,95,108,98,98,114,102,98,99,109,102,100,99,108,102,110,111,108,99,106,114,100,107,113,115,110,105,103,102,106,102,95,115,106,119,106,103,121,108,115,109,105,113,107,118,101,105,88,105,114,90,97,110,113,100,108,110,112,95,99,94,94,101,106,113,100,94,103,93,103,100,100,110,113,107,104,108,91,95,101,103,107,102,111,98,105,113,109,105,103,110,113,80,94,111,106,110,100,109,101,112,97,104,121,103,116,104,104,105,114,113,111,118,122,108,118,110,113,100,129,107,108,93,108,97,116,107,115,98,111,119,106,104,101,101,96,105,107,113,106,105,99,103,92,100,103,99,95,102,105,111,100,108,102,105,92,118,104,107,107,107,103,107,100,117,114,105,86,98,111,107,100,107,96,113,111,109,110,102,96,107,118,113,128,113,113,96,107,111,110,109,102,110,110,109,113,106,117,99,109,110,95,111,109,113,107,104,105,114,119,89,99,119,101,96,80,117,114,94,98,103,108,108,101,108,91,96,105,102,104,108,103,102,81,106,104,91,111,118,103,114,98,104,110,112,118,112,96,113,96,101,113,103,98,117,110,115,120,110,109,104,112,104,103,116,104,108,102,104,120,96,113,89,111,117,95,102,99,93,103,123,115,97,95,104,104,98,111,105,113,103,103,110,109,113,107,116,113,111,110,113,109,114,99,103,109,99,102,110,95,105,105,110,103,97,108,100,111,84,99,97,108,99,105,106,108,97,117,105,98,107,104,112,96,105,109,105,95,104,96,101,102,113,102,92,94,102,96,114,108,103,102,105,99,101,105,95,102,96,110,98,107,112,108,108,104,118,103,76,106,131,95,104,104,96,96,94,101,124,108,99,100,102,111,98,102,112,105,105,94,118,114,100,108,108,108,85,101,99,100,110,107,106,98,98,103,103,100,97,104,103,100,102,102,77,87,107,111,102,105,106,100,111,102,100,108,103,106,104,112,104,96,107,107,104,112,104,105,113,103,98,95,98,111,102,110,105,98,105,101,106,113,110,108,115,105,102,117,98,107,104,102,108,107,99,107,112,108,102,110,109,105,109,105,96,102,109,97,108,95,114,100,111,105,102,95,109,104,109,105,100,106,101,109,99,106,102,115,104,109,92,103,103,80,113,99,97,100,100,97,94,111,92,109,99,81,100,104,100,101,101,97,98,100,104,108,105,103,98,111,90,107,114,95,105,106,112,111,109,113,106,91,99,110,115,111,105,139,104,99,114,93,102,120,101,97,101,113,110,111,99,107,104,94,90,105,118,114,101,111,100,100,112,99,99,103,116,99,107,115,103,105,94,101,114,104,102,96,110,76,98,101,120,97,97,104,112,101,99,94,107,101,107,102,104,110,112,112,104,114,109,105,99,107,109,91,112,100,105,94,98,90,99,110,110,94,108,112,96,90,100,112,103,100,92,107,114,125,103,104,108,110,109,109,103,98,108,107,115,106,93,99,87,97,102,102,104,103,107,100,106,97,115,102,110,102,106,100,104,106,117,98,101,102,101,102,125,101,106,103,103,102,109,95,99,94,87,114,112,105,103,110,100,112,92,105,106,103,110,100,108,113,100,99,105,107,105,105,100,105,96,102,98,100,96,100,113,100,101,113,110,105,98,106,101,106,106,111,106,103,104,104,83,114,106,102,112,101,105,107,107,109,101,104,95,110,107,103,87,103,99,100,105,114,91,109,83,101,97,103,105,107,94,103,99,99,106,104,98,112,98,94,109,112,103,113,98,109,99,102,104,101,113,101,113,107,100,120,108,99,98,92,109,102,88,115,105,100,106,118,117,96,99,96,101,94,102,93,99,98,102,100,101,113,89,104,96,102,106,88,97,117,96,99,92,112,111,106,95,105,121,112,107,102,91,99,99,104,107,77,100,114,107,95,101,100,99,104,98,103,110,113,102,115,97,111,99,92,102,103,91,107,96,105,112,112,102,95,96,101,99,102,96,100,105,104,108,104,110,98,102,101,103,102,109,108,106,107,116,102,113,102,100,112,103,95,102,96,91,100,110,108,97,103,116,103,97,120,101,103,110,113,110,104,92,104,106,114,108,100,103,95,107,113,106,103,108,102,98,108,94,101,115,95,98,111,111,113,102,103,114,98,98,118,89,123,90,106,108,100,114,99,110,105,106,101,109,97,107,89,102,101,100,108,113,104,106,112,90,121,116,91,100,107,101,106,105,103,97,110,114,100,108,80,114,113,100,110,101,97,107,104,107,109,105,108,92,111,96,109,105,113,120,107,114,99,121,98,99,111,101,106,103,111,105,105,83,89,98,104,97,96,113,115,100,113,115,113,105,106,85,103,88,87,88,112,108,103,110,99,101,109,116,112,107,105,104,109,113,100,95,111,115,105,101,109,108,88,106,108,95,107,113,111,116,105,93,105,102,94,106,98,118,106,99,99,108,108,144,98,110,100,97,104,100,106,98,109,101,104,124,84,101,107,96,110,110,107,99,98,118,106,103,102,105,100,109,101,101,102,95,90,97,105,101,106,104,100,92,102,109,114,109,100,105,92,104,103,113,113,82,103,108,138,106,95,100,106,108,107,95,104,91,107,95,110,106,107,114,94,96,110,104,109,90,119,106,96,100,113,104,111,102,96,99,115,100,109,111,109,109,111,120,100,100,115,107,102,103,91,107,98,102,99,97,105,109,93,102,106,100,99,81,110,104,98,105,108,89,104,102,111,94,110,104,106,93,119,106,102,107,106,107,104,104,98,110,104,112,102,108,102,107,107,114,98,131,108,101,113,104,112,86,97,105,105,98,104,96,105,109,96,111,102,88,97,99,103,102,107,98,106,109,106,108,109,113,101,106,113,107,105,98,98,106,109,101,114,104,106,99,98,120,107,114,101,107,102,97,106,112,102,111,100,106,107,106,103,110,117,97,98,108,102,94,96,107,112,104,121,95,110,102,101,107,103,94,72,100,101,108,99,99,109,110,101,96,93,105,103,97,104,101,98,114,108,105,107,101,98,106,98,104,106,101,111,110,101,98,113,108,99,112,108,111,100,108,98,91,103,99,102,103,97,93,87,110,97,93,105,95,106,103,95,101,95,106,96,103,100,95,107,95,108,115,106,115,94,116,102,99,104,108,106,106,105,103,100,100,105,109,99,103,111,106,103,101,99,101,105,108,114,104,98,112,112,91,113,107,107,101,117,95,104,108,90,104,94,92,92,104,101,108,100,102,86,107,95,104,93,93,107,139,102,109,104,103,109,110,102,96,109,105,103,95,106,90,99,103,106,99,99,108,104,97,106,108,102,95,104,99,98,111,100,98,104,106,92,103,118,100,103,103,113,98,106,97,112,105,104,102,80,107,104,111,110,105,107,101,97,103,103,109,114,107,90,98,94,99,111,117,95,102,95,105,107,92,94,106,109,117,118,91,94,95,112,95,78,93,91,95,118,102,96,100,94,96, +499.61191,114,111,93,104,86,111,95,102,110,103,96,112,96,101,101,117,108,108,116,90,99,107,106,110,106,105,103,93,101,99,87,87,109,107,90,114,99,108,98,111,101,97,113,109,100,100,121,110,94,115,110,118,93,73,97,105,102,99,103,105,95,97,102,102,116,107,109,105,69,105,111,106,108,110,94,98,97,117,105,102,104,101,102,108,106,90,98,109,96,108,91,102,87,103,107,90,103,96,87,95,104,93,98,89,103,97,90,87,97,103,113,102,94,104,98,105,99,95,117,109,89,100,83,110,108,107,108,95,108,99,90,106,96,105,108,102,102,104,103,106,90,100,120,94,95,97,114,97,100,107,94,105,93,113,89,106,103,102,107,102,100,106,107,98,99,98,95,110,93,103,75,96,107,109,108,106,103,81,112,106,95,97,103,108,102,108,104,103,103,103,118,101,96,107,109,103,104,109,103,102,108,102,119,105,126,109,110,112,111,110,103,101,108,105,110,114,108,105,118,108,102,108,99,106,108,108,116,107,94,108,106,97,105,109,100,96,108,107,109,108,103,97,112,102,106,97,96,113,104,114,95,115,106,109,108,103,98,100,107,104,108,97,101,98,98,102,103,96,97,100,106,113,89,97,101,103,109,105,110,97,97,92,118,95,103,111,96,125,95,110,95,97,115,114,119,110,118,100,91,95,75,108,104,110,99,103,83,107,120,108,108,105,110,98,109,88,104,110,107,102,103,93,114,112,99,106,77,86,102,98,95,105,106,109,108,119,114,101,112,90,100,117,106,94,106,102,111,95,103,95,95,102,103,102,102,108,108,94,98,108,116,99,117,99,86,103,88,103,113,101,102,103,104,100,108,105,99,104,101,120,115,103,99,109,100,110,90,99,102,102,78,92,109,104,95,107,107,104,110,107,107,104,97,107,108,98,83,110,106,107,105,84,115,102,105,101,104,103,113,102,101,102,77,80,103,114,107,101,125,114,96,103,111,106,106,103,117,108,92,111,117,106,103,86,94,124,104,99,102,111,114,98,101,106,104,98,98,107,112,104,91,104,118,100,113,105,99,104,101,98,106,113,101,108,98,93,104,113,102,95,113,117,116,90,101,91,117,96,105,113,103,106,113,107,100,101,102,99,116,115,125,106,99,119,102,96,100,102,84,107,101,88,114,98,110,117,103,98,109,86,102,109,120,114,101,97,99,100,92,103,102,113,115,110,101,97,98,102,100,109,109,104,100,86,123,97,107,97,111,105,105,113,112,94,111,102,110,113,114,106,93,99,111,98,107,117,109,99,108,109,99,109,106,109,110,103,98,98,104,107,102,111,102,107,96,108,121,104,106,101,97,114,114,104,117,107,96,99,101,108,102,114,109,107,95,100,99,88,116,111,103,114,94,125,109,102,107,109,101,115,103,109,107,118,93,99,100,107,110,105,102,114,92,108,95,112,107,100,113,104,112,102,112,97,102,101,119,105,106,112,109,123,112,106,84,99,112,114,114,102,106,105,113,96,103,102,111,100,104,101,106,109,117,115,96,99,110,113,102,102,109,109,110,92,97,100,104,100,93,100,103,103,102,110,107,105,129,114,112,91,109,102,96,103,105,76,105,110,96,106,100,106,110,100,104,102,89,101,91,104,109,109,105,104,101,103,105,100,113,111,105,117,112,115,106,110,102,105,135,96,114,105,106,113,117,100,108,102,112,104,98,102,98,105,111,110,100,104,97,97,106,104,100,110,89,113,96,110,114,97,112,104,104,95,100,107,108,95,107,105,97,95,113,112,106,122,98,128,102,103,109,128,104,105,101,110,102,107,110,112,101,100,99,106,112,68,103,100,102,102,108,107,106,119,107,106,113,109,107,104,113,121,114,108,103,100,115,99,69,105,110,109,100,107,106,117,112,101,105,112,95,103,104,99,97,102,102,96,93,90,103,99,87,110,102,115,117,112,103,95,95,94,117,112,104,108,101,99,107,113,93,99,129,97,99,125,125,97,100,108,102,99,86,106,98,105,108,117,109,98,103,113,98,111,106,105,98,113,105,98,108,119,107,105,91,72,111,113,98,115,103,113,113,110,95,101,97,100,103,97,95,100,105,105,106,108,99,113,120,109,123,94,116,106,103,116,102,102,103,104,102,101,103,116,111,102,102,107,104,107,106,101,115,95,97,103,104,94,109,104,112,111,107,108,94,98,100,100,102,111,89,109,99,114,102,116,106,109,87,99,96,101,108,94,118,89,105,113,97,102,97,97,117,105,90,87,102,98,71,110,105,98,110,104,106,106,108,108,98,103,103,95,99,107,104,103,98,103,101,95,108,105,110,102,106,100,108,108,112,87,91,107,112,108,117,103,112,108,119,109,104,113,98,112,111,89,103,106,93,120,105,94,107,100,109,108,101,117,115,98,96,103,110,105,90,94,105,107,101,105,112,103,109,92,102,90,112,106,100,93,103,83,93,108,116,119,84,91,102,99,69,117,111,83,99,102,113,118,113,98,107,102,108,104,109,109,111,96,121,104,105,111,105,100,105,106,104,105,104,109,101,113,95,103,96,109,108,105,117,104,110,110,104,94,111,100,107,99,100,106,107,98,95,123,90,94,103,95,111,104,108,100,102,109,93,106,98,100,110,104,107,109,100,84,109,105,102,110,107,103,115,109,116,101,105,113,108,114,106,109,106,103,109,112,114,87,115,100,102,99,114,101,109,107,116,108,96,104,109,106,107,109,107,99,100,104,98,99,98,122,105,99,99,115,102,112,104,109,93,101,103,105,107,98,101,108,112,116,107,100,102,111,92,99,106,100,104,110,108,114,118,117,105,89,98,103,117,100,105,114,89,103,106,107,100,100,74,98,95,124,112,101,108,113,110,103,108,116,105,108,103,113,110,111,113,108,117,106,103,113,108,99,113,97,109,110,106,97,105,96,105,115,102,91,108,108,102,103,106,99,105,103,113,100,100,110,99,92,116,100,106,109,111,108,115,111,122,121,102,112,114,100,114,105,117,103,112,108,98,92,103,98,106,116,117,107,113,103,101,102,102,111,104,107,99,86,107,102,99,99,103,104,110,111,96,113,104,105,98,103,111,108,104,106,80,104,123,101,92,88,106,114,97,113,113,100,95,106,101,113,107,67,100,109,106,91,101,103,97,117,108,86,115,99,89,106,117,107,109,108,117,99,105,101,94,112,106,103,96,101,95,115,100,112,105,99,101,110,92,100,105,104,96,98,105,104,97,108,113,104,108,109,112,110,109,95,104,111,100,90,101,101,106,110,103,108,103,103,106,107,104,108,105,97,106,106,107,110,106,96,104,113,108,107,93,113,108,109,97,96,115,106,101,104,90,95,95,110,116,98,98,114,101,95,105,106,99,97,108,90,107,94,103,103,105,115,106,104,106,96,101,113,103,103,87,108,117,109,111,97,107,99,99,95,110,100,92,104,102,96,105,116,102,108,91,104,110,107,90,100,108,105,111,103,108,116,99,96,109,100,109,106,99,105,102,105,106,106,99,98,117,117,105,95,72,141,95,108,97,105,96,97,113,98,102,109,105,119,91,111,113,99,95,109,104,98,97,99,110,97,102,102,97,105,113,108,106,103,102,97,101,103,99,99,94,93,99,106,110,112,95,108,103,104,115,90,115,106,112,98,101,91,106,105,107,102,86,98,109,97,89,105,100,109,100,113,106,101,104,109,100,95,112,91,110,103,114,110,98,106,106,113,96,94,100,101,112,102,100,110,101,103,103,105,110,110,107,106,108,106,94,94,112,106,98,103,105,110,124,117,91,107,103,102,107,114,93,108,103,107,102,105,104,109,107,105,105,102,96,100,109,100,103,100,103,117,99,91,112,110,96,94,104,95,108,109,100,109,109,106,115,100,104,107,94,97,107,100,102,106,109,112,102,93,101,102,104,122,104,100,99,100,102,98,103,109,101,99,128,73,103,106,97,104,104,110,108,98,98,101,115,103,102,104,113,99,92,101,106,109,142,106,76,87,109,107,99,99,105,105,96,101,102,116,93,94,107,99,117,105,116,121,100,102,109,118,102,122,97,108,106,109,110,105,100,98,106,109,108,100,112,109,100,104,104,116,91,119,111,97,99,102,107,107,100,95,111,111,116,103,97,104,107,96,115,100,110,113,114,111,107,108,112,96,99,97,121,103,98,101,108,112,102,88,112,110,103,110,119,102,115,118,109,106,108,105,122,101,99,113,118,102,99,105,109,103,102,109,81,102,70,111,101,106,97,111,86,94,103,107,106,105,99,91,100,109,99,101,100,105,106,95,108,100,97,104,110,102,110,89,104,108,104,106,95,103,92,99,103,112,101,100,106,109,110,112,103,101,97,105,94,110,111,135,106,112,111,110,108,106,112,102,107,99,101,113,114,115,95,98,100,95,106,119,92,111,116,102,91,95,106,104,105,98,101,101,113,102,103,110,106,98,114,109,97,106,102,94,106,114,102,99,106,115,106,101,100,108,94,119,109,102,109,109,108,95,99,101,104,109,95,81,110,92,111,111,104,110,88,107,92,98,113,111,111,106,101,104,105,97,98,108,124,102,109,107,102,100,102,100,110,95,98,113,116,102,105,115,99,98,103,120,102,103,103,113,96,116,124,90,101,108,107,71,103,97,108,105,106,101,98,82,107,102,101,109,100,110,102,79,98,97,107,105,107,98,99,108,106,101,106,117,108,102,95,95,99,96,100,100,98,91,108,94,121,105,103,108,114,95,104,107,102,102,107,105,113,105,99,104,99,128,95,108,107,106,94,102,110,108,94,118,103,107,101,111,99,114,108,113,111,99,110,108,117,106,104,107,94,106,115,101,121,102,102,105,100,98,111,91,100,106,105,110,109,105,98,107,99,105,102,115,109,109,115,98,97,90,106,93, +499.75253,92,107,91,98,98,106,96,98,109,131,99,110,105,113,100,109,101,100,113,127,100,116,104,96,119,101,118,103,106,112,106,128,115,131,108,100,105,110,109,109,106,95,97,93,105,102,113,117,99,112,103,115,112,103,111,103,103,103,106,111,99,105,98,82,100,107,103,100,108,83,100,100,101,104,101,100,106,107,100,106,116,85,97,116,105,105,105,106,100,104,94,103,106,111,101,117,104,74,109,112,100,100,90,106,112,99,103,97,100,108,103,100,110,98,106,115,82,108,95,103,109,110,104,94,103,115,109,113,102,108,109,116,99,105,103,104,117,111,92,114,112,117,105,113,105,104,110,109,107,113,90,102,105,98,105,90,108,96,113,108,106,111,98,107,120,113,104,100,110,107,104,105,122,99,114,116,124,108,99,124,113,107,87,100,103,95,110,98,102,109,110,105,107,114,97,98,106,113,110,101,102,105,104,94,119,104,116,100,115,113,94,109,96,109,121,110,111,114,98,100,109,114,108,103,117,121,121,104,117,98,112,106,120,105,103,98,98,121,119,92,104,105,107,109,98,104,94,108,106,104,104,100,102,107,99,112,96,111,100,99,102,94,97,98,109,109,98,103,89,102,105,100,107,104,104,106,98,102,98,95,104,99,116,99,111,109,100,112,105,107,103,128,107,113,109,104,100,102,116,106,105,109,93,106,103,116,109,105,112,121,78,105,103,105,108,117,106,103,108,91,102,105,111,98,111,104,105,93,123,119,124,100,106,101,114,111,99,102,101,95,106,115,108,108,110,98,97,105,109,98,105,112,101,94,111,109,108,77,110,112,98,94,108,100,90,106,105,116,100,106,109,105,114,112,92,96,108,106,108,108,126,104,101,102,91,99,101,107,109,102,108,102,99,109,106,109,95,114,104,108,104,99,106,99,97,103,103,115,102,102,104,104,105,98,109,86,98,103,118,120,100,123,94,118,91,102,101,107,110,113,106,107,112,103,112,100,101,99,101,109,100,103,105,107,95,114,106,94,102,112,98,111,121,100,106,104,109,115,108,101,103,126,106,113,113,106,99,106,101,118,110,99,110,101,121,104,121,108,99,106,102,120,108,100,106,109,105,111,109,106,109,111,106,111,99,103,102,102,110,104,103,111,110,109,102,116,103,108,110,96,108,102,103,104,104,93,103,107,110,107,107,103,99,114,114,99,101,111,102,110,105,115,106,98,113,112,105,101,104,100,110,105,101,101,113,108,103,99,113,111,102,106,111,112,109,105,106,100,111,111,110,97,100,112,97,106,113,86,108,98,117,99,106,111,107,110,110,105,107,109,100,103,99,93,107,111,107,111,101,99,108,104,108,106,114,121,104,107,105,104,103,119,118,108,86,111,96,100,103,117,105,108,112,105,106,109,107,103,112,110,105,105,107,109,105,95,112,106,108,121,96,100,99,125,97,91,97,94,117,110,102,127,100,105,103,103,102,118,106,108,94,108,110,114,107,112,113,121,107,112,111,99,123,102,89,96,103,100,114,104,113,110,96,99,101,108,108,113,108,103,106,112,126,94,111,106,101,113,106,105,103,116,112,118,113,100,101,119,106,99,101,108,89,103,118,110,111,100,107,110,103,96,100,108,116,98,79,99,119,107,113,103,104,98,97,102,123,108,119,105,106,85,95,98,111,99,119,97,118,102,103,95,102,103,132,114,91,113,106,110,107,126,109,97,110,104,102,108,110,112,112,105,112,104,105,106,109,91,102,112,112,105,114,111,96,109,89,106,112,108,97,105,108,101,105,111,98,108,105,103,118,100,110,116,105,103,93,100,130,111,102,102,112,87,111,96,102,108,100,109,141,107,106,104,111,104,114,113,115,122,108,108,114,104,99,98,99,87,112,105,105,109,112,114,107,113,84,108,101,115,103,101,100,107,105,112,133,107,98,105,107,105,107,107,111,90,100,113,104,94,111,94,110,93,104,114,103,110,110,104,108,113,95,109,109,99,102,106,109,101,99,101,103,101,105,105,110,103,106,99,106,105,112,106,91,106,108,110,102,113,110,106,109,109,112,80,97,104,104,110,108,107,105,116,105,103,105,107,94,93,113,113,104,103,111,94,91,112,97,110,108,105,114,108,95,104,103,100,108,95,114,107,100,96,108,110,104,96,105,103,100,110,113,111,98,112,112,114,102,117,112,117,95,103,113,107,109,113,105,113,100,102,98,117,106,111,118,110,99,97,95,105,107,85,103,104,96,95,105,108,97,114,114,127,100,103,106,109,105,111,84,97,110,112,116,103,117,105,101,107,92,98,110,116,99,105,103,97,111,110,104,104,107,106,110,105,99,105,115,108,107,108,105,97,103,97,102,114,113,89,105,103,101,116,98,101,103,108,101,100,120,98,92,102,86,107,97,102,83,98,78,110,95,99,109,99,108,114,109,115,105,117,96,106,104,94,116,98,106,88,117,111,85,106,106,109,114,109,96,110,109,94,104,105,109,103,107,93,112,107,102,110,106,100,106,101,94,117,99,108,97,118,103,110,109,109,108,113,103,117,102,109,117,103,113,128,111,92,110,103,98,79,112,105,111,89,105,123,96,112,105,95,84,116,104,94,112,116,106,91,110,106,120,109,107,110,120,99,92,115,112,105,104,98,108,119,103,96,107,106,120,113,94,103,110,112,106,108,108,113,102,99,112,98,104,118,119,101,111,112,105,102,102,104,94,103,102,97,109,104,111,101,101,103,90,111,107,104,112,108,112,101,94,112,104,106,104,118,106,106,109,107,108,102,103,105,107,107,106,106,96,105,106,105,107,112,118,125,103,107,104,106,106,96,103,105,108,113,110,107,106,104,102,109,98,123,107,106,113,110,114,98,113,122,115,101,109,106,111,110,113,96,95,110,115,112,100,105,113,113,112,98,107,96,103,107,111,99,99,99,108,105,110,106,92,105,106,100,99,91,94,122,90,116,101,111,117,105,114,102,116,102,105,109,117,113,100,100,102,91,114,107,101,115,107,102,103,86,105,113,107,102,101,107,116,113,100,100,116,108,100,106,127,102,109,102,109,95,102,112,110,108,112,102,117,105,106,100,110,110,104,118,109,103,113,102,92,86,99,107,100,101,84,108,113,92,99,96,108,111,92,102,100,70,109,100,107,110,93,117,103,99,96,109,105,102,96,100,116,95,114,99,106,99,109,112,108,108,113,109,92,100,107,103,104,97,104,104,108,101,108,105,99,94,101,93,110,101,113,85,109,107,111,110,102,112,98,116,106,110,98,100,98,102,107,111,101,106,110,118,103,109,112,120,106,117,112,105,104,108,109,112,108,94,103,120,110,100,104,99,98,109,106,101,92,82,99,108,113,108,105,109,119,110,97,114,113,112,100,107,105,107,101,103,111,99,111,100,99,103,93,110,108,104,98,105,106,97,102,110,87,103,101,99,108,104,103,104,100,121,109,111,102,110,109,132,107,117,103,103,101,108,110,103,106,103,92,115,101,103,99,107,115,106,106,100,110,113,103,106,108,103,106,107,108,108,116,110,101,91,113,114,103,109,105,110,108,102,105,112,106,105,92,104,109,97,104,95,115,120,114,103,95,108,107,106,108,103,107,111,92,78,95,105,112,105,117,93,109,106,107,112,113,111,104,110,100,104,110,96,103,108,102,100,110,106,96,116,105,109,114,107,88,105,98,104,104,108,110,114,119,108,112,108,116,104,93,107,111,113,110,96,109,103,110,104,112,100,93,110,106,102,103,104,121,105,108,99,116,116,112,97,102,102,107,87,107,113,106,106,105,100,112,104,113,98,85,113,104,107,112,112,121,111,106,124,120,105,109,95,116,113,88,103,92,101,117,111,104,112,107,102,101,107,99,116,102,131,101,103,102,102,121,102,109,92,119,95,98,110,101,112,98,96,98,107,112,101,102,98,107,104,110,111,105,110,101,109,114,101,95,107,99,108,108,142,119,108,103,105,98,101,106,107,104,105,110,117,97,107,119,97,100,97,119,117,109,99,111,105,103,102,105,104,107,104,105,103,122,101,116,95,97,117,115,111,101,112,121,102,113,91,109,110,101,106,113,111,109,107,104,124,112,112,108,100,94,99,102,109,109,99,100,104,101,114,108,96,103,109,112,94,99,110,107,122,102,111,106,105,106,110,102,94,108,101,107,110,106,100,97,102,114,117,122,136,109,117,109,110,102,111,109,111,99,97,113,103,107,98,115,104,108,95,102,109,103,116,119,98,105,106,109,104,102,104,110,104,99,116,112,109,109,117,109,113,99,90,101,105,99,107,109,93,81,106,98,109,115,108,114,105,125,108,106,108,100,108,104,105,120,108,110,110,106,113,103,126,109,107,104,102,109,103,108,106,109,102,109,101,103,110,116,104,110,79,104,104,119,97,107,102,96,102,100,100,89,121,99,97,107,107,108,114,98,100,97,106,95,112,101,111,103,106,105,113,117,112,101,107,93,106,109,106,114,103,103,113,95,102,101,95,104,93,110,109,112,100,107,96,88,107,97,104,99,108,95,112,92,106,91,109,89,115,125,110,94,117,110,105,102,115,109,91,106,125,107,106,96,109,99,94,108,113,103,74,108,102,109,111,100,112,93,106,111,111,121,107,99,119,132,102,104,111,113,100,103,106,116,113,110,87,121,98,100,102,118,106,119,105,103,106,96,98,97,97,99,120,114,100,108,99,110,101,109,100,111,96,103,97,99,101,106,100,108,107,110,96,106,107,103,97,105,99,105,104,87,110,105,83,102,96,101,94,108,85,112,90,103,107,107,97,106,103,100,104,87,110,106,96,104,111,92,105,108,115,92,115,106,101,87,112,90,93,104,97,103,90,116,97,106,106,108,104,112,102,98,85,94,88,104,96,104,108,108,95,105,101,113,128, +499.89316,100,104,107,89,86,106,107,92,89,91,114,100,114,111,102,117,104,108,102,85,99,92,94,108,105,96,103,105,102,93,107,100,96,109,109,101,94,112,104,112,103,94,105,105,110,107,110,102,108,98,106,91,80,98,94,94,95,97,95,91,108,102,102,99,91,109,115,96,108,104,106,105,98,100,100,114,108,100,111,93,100,107,112,102,95,89,111,121,90,98,110,122,96,105,128,97,111,102,102,109,104,113,101,108,98,95,97,107,108,123,99,99,98,99,120,98,106,112,103,98,105,118,104,104,100,103,103,109,108,103,93,113,101,108,107,103,102,108,99,91,104,95,96,98,96,108,99,102,93,100,96,96,107,97,87,105,106,102,112,102,106,106,109,98,108,89,91,96,103,112,106,121,94,106,120,122,101,110,107,111,95,93,98,112,101,91,96,87,104,104,105,113,111,100,98,100,100,106,101,111,100,106,104,117,105,107,96,95,112,76,113,92,108,100,106,106,111,104,98,107,106,104,111,114,94,98,92,107,112,112,114,113,107,99,109,101,92,113,103,114,103,100,121,100,84,95,106,103,103,102,105,82,95,104,95,102,102,103,115,106,102,74,107,102,108,105,113,104,100,98,105,100,102,91,102,96,97,109,95,103,103,111,105,92,103,104,99,91,105,104,100,106,102,101,108,66,98,99,105,113,105,99,104,117,112,110,112,104,129,107,90,107,121,114,104,100,102,104,100,102,105,104,117,97,104,89,99,91,111,106,106,84,102,101,98,99,110,129,86,110,117,104,107,100,117,97,104,104,112,110,110,103,99,100,104,108,111,110,100,112,111,99,108,99,108,100,95,121,109,111,122,109,103,99,106,105,110,98,95,100,114,120,108,95,97,104,108,101,105,104,108,97,112,108,116,94,99,87,103,109,110,98,108,102,107,95,106,129,99,108,92,113,95,100,110,100,95,110,109,99,110,99,101,104,107,109,113,95,97,110,106,95,110,98,93,110,104,97,113,102,109,107,94,112,89,93,113,98,100,100,100,106,111,111,96,117,103,126,107,107,90,91,104,109,95,100,106,111,106,101,94,115,103,104,102,106,104,113,107,102,107,106,103,102,104,115,116,105,104,104,103,102,94,106,93,98,112,107,101,100,118,99,102,102,104,91,100,104,109,113,106,112,104,102,106,106,100,108,95,113,107,85,107,99,103,98,111,120,109,91,97,97,103,93,97,111,108,97,113,100,103,106,105,98,113,100,114,105,95,109,102,108,103,112,134,99,100,98,103,87,94,103,107,100,98,103,99,96,106,100,119,95,97,103,109,115,98,105,108,96,106,101,101,98,100,105,109,117,115,99,96,122,112,90,105,103,91,109,104,116,117,99,117,106,93,98,94,103,100,116,98,111,103,100,116,106,99,105,104,94,104,108,104,105,107,98,96,110,110,110,100,107,110,106,103,104,104,96,109,105,112,103,101,91,103,109,91,106,109,127,99,116,103,116,106,95,113,106,94,102,106,114,113,105,97,105,104,107,109,97,102,121,112,100,79,86,99,106,109,109,108,113,105,101,92,108,105,102,101,98,111,99,111,119,112,92,117,90,94,85,106,75,99,94,100,115,100,102,113,103,110,107,99,105,109,109,102,98,108,97,103,102,118,122,94,95,100,106,117,113,105,103,102,101,105,106,103,106,120,102,102,112,111,103,100,109,111,113,109,103,98,104,95,104,108,112,94,96,109,106,114,106,103,105,95,112,110,102,98,97,100,91,74,99,93,100,119,112,95,69,117,115,116,106,114,112,103,112,108,117,104,114,111,99,101,97,108,112,115,110,110,105,104,112,107,105,114,106,118,104,91,99,101,110,109,103,100,95,114,108,108,109,105,108,110,106,109,103,112,107,94,102,111,112,106,101,99,97,105,117,109,92,111,105,106,100,108,104,103,106,103,100,103,100,95,125,100,98,94,100,101,98,104,98,108,108,104,106,117,107,104,105,110,117,109,104,106,95,102,101,113,103,116,98,85,123,106,103,104,103,102,104,108,99,110,105,114,130,121,94,101,110,102,106,113,98,107,112,104,102,116,103,99,96,107,97,103,101,103,104,109,103,99,106,103,104,127,98,98,100,93,101,104,109,105,101,103,98,105,107,111,116,119,112,105,100,99,109,109,102,101,105,107,97,100,102,110,99,100,110,117,111,107,104,105,104,104,100,107,94,105,102,105,99,104,109,105,92,106,96,108,100,103,99,102,113,94,94,103,104,87,107,106,96,114,102,106,116,102,98,108,92,100,103,93,117,132,122,98,101,98,105,107,103,102,108,106,113,107,103,106,105,108,83,101,97,113,99,109,90,107,110,117,114,110,109,100,97,117,100,118,98,100,97,107,96,112,96,102,100,99,113,102,95,105,109,104,100,106,101,103,82,106,113,88,118,92,106,106,98,102,101,97,105,106,111,103,104,99,100,97,98,115,109,97,116,104,103,103,114,100,107,118,64,94,94,102,112,112,107,107,97,119,101,101,133,97,101,112,74,120,107,103,112,95,108,106,106,104,113,107,94,116,108,109,102,101,98,106,108,113,113,100,113,95,103,93,123,102,104,114,104,100,107,108,93,104,107,110,91,112,115,115,106,113,111,109,100,101,96,107,110,104,98,107,113,103,94,106,97,112,117,116,102,94,117,95,101,101,115,106,107,101,110,113,112,107,90,112,106,97,106,91,102,99,106,99,98,112,116,101,116,111,99,119,111,109,108,91,105,114,110,102,105,94,109,105,117,106,94,110,110,113,112,99,102,102,100,98,107,117,109,101,115,108,105,106,100,97,112,106,105,98,97,99,98,101,102,106,100,100,101,108,100,115,102,107,104,101,106,118,117,99,76,114,102,98,112,114,121,109,108,104,110,108,110,105,110,107,114,89,110,108,101,109,104,104,105,121,106,94,113,98,98,96,112,107,105,112,109,104,102,101,119,100,101,112,113,105,104,105,103,105,99,98,103,112,107,99,107,117,115,106,110,116,99,105,97,100,107,98,102,109,116,125,102,113,105,100,104,95,102,100,98,108,99,106,110,105,107,73,114,111,99,96,102,106,96,105,107,102,113,104,110,96,104,106,109,95,102,104,92,116,109,110,101,100,112,105,107,111,110,84,105,109,110,114,90,110,90,98,116,100,103,97,110,92,102,107,107,80,102,97,114,116,111,114,109,115,110,103,110,86,95,78,112,108,106,115,107,109,103,105,110,95,104,116,104,113,110,117,101,106,105,108,88,98,100,98,92,112,106,99,102,105,100,91,101,106,102,105,112,108,109,112,105,116,92,102,97,105,99,105,112,95,107,106,115,107,103,116,107,110,96,102,103,109,106,101,95,106,98,108,106,98,113,104,100,96,84,104,102,101,103,94,103,100,96,100,107,102,111,104,110,101,103,108,106,100,111,106,120,104,106,97,105,110,104,110,113,108,103,72,113,113,105,110,91,111,99,117,106,111,110,96,98,104,100,111,95,101,106,102,115,104,98,92,104,97,109,108,117,106,104,105,102,110,107,108,105,96,117,95,103,107,121,92,110,107,105,116,120,108,109,100,105,93,96,105,103,108,109,102,94,108,97,105,99,111,106,102,117,97,97,106,98,112,110,97,108,112,99,112,94,88,90,114,107,107,74,99,109,97,106,107,102,94,103,106,107,100,115,99,115,102,96,113,104,107,92,110,104,99,99,115,112,107,113,100,96,104,103,102,92,105,101,101,99,96,100,108,107,103,104,117,102,123,115,109,108,97,101,95,103,108,114,95,95,110,102,104,107,94,110,103,109,121,99,105,111,103,104,107,106,98,109,103,88,93,118,99,113,92,104,90,103,115,106,123,109,110,107,97,102,103,101,102,116,95,106,99,101,100,93,97,105,100,94,101,109,112,105,99,115,111,99,105,99,108,104,101,91,108,104,105,109,107,101,112,106,102,113,112,87,91,109,98,96,94,99,108,71,104,100,102,107,117,100,98,109,108,105,104,105,101,102,125,101,116,106,120,105,104,99,100,100,116,111,108,113,113,97,110,99,107,108,103,111,98,103,114,92,113,109,102,114,113,103,103,101,102,109,96,106,108,108,99,111,103,109,103,98,104,101,101,112,101,111,110,106,93,105,109,113,104,109,114,105,114,111,109,91,103,94,100,102,107,98,109,103,102,110,120,105,108,112,91,110,112,103,112,100,116,113,111,102,116,105,102,105,119,96,106,100,98,92,100,116,105,100,99,104,119,104,96,130,102,109,94,93,101,96,99,112,103,98,100,112,110,118,113,103,108,104,107,112,108,107,106,114,116,110,99,113,111,110,101,109,102,104,99,92,109,101,107,98,129,104,100,120,105,107,91,106,102,96,106,95,104,109,116,116,106,97,92,104,107,110,103,108,94,96,113,106,103,103,99,106,106,108,101,105,102,97,102,104,101,78,99,107,116,113,105,99,97,92,97,96,104,111,104,99,107,102,100,108,95,101,97,110,96,111,100,121,95,111,115,96,107,105,101,113,106,101,108,102,110,109,103,108,101,106,105,113,101,104,124,96,119,104,110,111,103,107,103,87,105,94,97,99,94,80,99,103,121,102,104,99,105,117,91,109,115,112,99,113,107,105,100,108,109,107,102,96,112,108,100,109,112,101,91,104,109,110,100,92,108,109,105,103,94,102,104,109,95,80,103,97,103,100,91,110,108,96,94,104,105,107,102,104,103,97,100,102,107,106,104,100,110,102,104,102,91,102,90,103,94,106,103,108,94,91,101,106,111,105,104,122,104,103,95,107,109,102,106,105,100,110,86,102,112,112,105,110,95,118,103,101,110,109,108,101,110,99,106,103,107,100,105,77,104,111,113,107,106,88,104,110,91,99,117,102,91,99,102,104,103,102,120,103, +500.03378,107,107,88,105,97,97,96,105,90,103,106,98,91,113,96,103,104,109,105,96,121,97,101,103,83,106,103,108,102,108,103,104,100,102,108,108,106,97,109,103,104,101,102,100,109,107,111,103,95,102,102,95,111,106,105,105,96,102,113,113,106,105,101,94,105,103,103,111,107,98,103,118,100,108,108,112,103,107,102,116,106,111,111,104,109,97,105,94,98,105,107,106,99,104,101,108,91,98,103,99,87,108,98,96,106,91,95,108,98,91,101,106,120,109,112,104,98,112,97,101,94,106,106,113,105,111,115,101,117,97,109,95,101,104,102,110,100,111,101,103,98,103,99,106,99,100,108,100,104,104,96,97,131,98,90,107,100,113,106,88,96,101,97,99,95,111,99,103,106,93,99,117,97,106,97,100,105,103,101,114,105,109,109,102,126,95,98,99,100,99,90,100,98,95,99,92,106,110,102,114,122,117,101,102,106,110,97,111,108,111,94,105,98,107,116,110,106,99,88,99,106,110,94,94,105,102,91,104,101,98,100,114,102,101,101,89,108,110,82,100,100,100,119,106,107,91,109,111,96,96,101,108,98,127,100,103,104,103,105,118,104,110,100,93,99,105,110,109,96,98,104,104,113,98,112,103,95,109,91,92,105,101,89,106,104,97,99,100,99,95,100,111,109,111,115,102,96,100,99,104,109,101,95,109,123,104,110,108,106,109,111,98,93,109,105,90,109,99,116,106,113,91,112,92,105,100,101,97,112,115,116,105,97,108,106,102,104,93,96,103,112,113,121,99,108,110,109,119,108,100,119,99,109,104,113,112,107,110,109,106,102,105,96,108,101,101,100,103,102,110,99,103,103,103,117,108,105,99,101,121,113,112,98,104,98,105,96,112,98,89,110,93,107,117,103,103,109,105,99,105,111,111,95,95,99,105,106,101,101,112,100,106,99,104,97,109,97,109,105,97,99,97,104,68,102,104,108,102,104,100,98,106,96,107,112,103,102,113,111,100,99,103,92,99,94,100,109,102,114,120,101,101,104,95,101,101,103,113,105,93,97,106,112,106,106,88,101,105,103,107,110,104,117,107,102,106,94,123,93,104,109,106,112,91,105,100,103,89,97,100,104,115,95,104,106,113,96,103,111,110,112,103,119,109,109,117,94,112,108,99,112,97,101,112,109,98,102,105,97,84,103,102,107,102,103,99,103,111,109,106,94,100,113,111,108,89,104,100,103,109,88,99,103,92,108,112,120,99,103,121,106,106,110,91,110,105,107,104,99,107,99,100,104,103,122,104,108,117,114,101,96,106,117,115,103,110,100,90,128,101,100,107,103,97,106,102,103,106,104,105,107,99,101,113,111,111,107,105,120,99,107,99,105,102,100,101,98,104,102,109,111,107,104,102,96,113,101,111,107,99,105,107,110,102,102,102,103,99,90,98,110,100,112,100,102,106,109,100,102,107,105,104,72,99,106,102,102,107,103,105,132,112,118,104,101,105,99,110,95,108,96,102,101,101,98,106,98,97,98,102,112,102,104,106,111,108,96,109,131,102,107,107,109,106,109,107,100,102,91,96,106,102,106,108,109,102,105,103,112,98,101,104,99,95,107,107,113,91,109,106,99,110,100,89,106,98,108,110,113,111,107,103,107,105,87,103,107,88,113,114,107,88,107,91,114,104,105,94,109,105,117,93,114,108,99,100,111,107,95,103,108,103,114,102,101,107,100,112,116,102,95,109,103,106,109,116,94,104,96,101,89,113,105,106,104,104,101,103,111,104,115,101,110,106,107,99,109,106,94,108,100,114,106,120,99,112,104,108,104,111,73,105,102,114,115,101,113,106,111,112,116,106,109,86,105,93,109,95,103,103,108,101,100,102,100,98,101,100,107,95,103,110,92,103,115,103,112,108,113,105,90,94,103,105,105,101,100,88,109,101,105,97,102,113,99,109,104,106,94,99,96,95,108,91,100,101,101,104,105,105,103,115,103,103,100,119,100,117,88,104,104,104,83,117,116,118,116,102,99,106,103,109,107,110,105,93,114,110,99,91,99,106,112,104,111,97,115,101,86,101,95,115,103,109,117,97,95,105,101,101,96,109,104,113,99,115,102,115,106,106,109,121,105,109,103,103,131,103,98,101,102,99,106,107,100,101,109,98,105,99,92,98,90,121,111,106,105,106,129,105,102,99,106,105,107,95,93,103,86,110,103,103,109,102,101,101,108,96,101,105,115,105,106,100,107,116,99,110,99,106,101,91,116,107,92,102,96,93,96,103,107,93,102,113,110,105,101,99,103,96,100,102,113,109,110,101,111,106,102,93,114,88,111,109,103,102,108,108,96,102,113,98,103,108,115,99,104,101,102,92,100,103,73,99,104,89,111,94,102,105,104,105,92,100,103,110,96,84,104,105,103,102,105,94,101,95,99,110,104,95,98,113,99,108,104,100,101,101,113,106,97,104,91,110,116,111,91,106,108,124,108,100,101,101,91,96,98,103,115,115,113,105,115,112,124,116,104,108,100,96,108,105,113,89,109,91,114,95,107,106,119,108,93,107,100,114,110,106,111,101,107,100,97,94,92,109,104,104,107,112,100,107,97,107,113,94,105,110,115,89,110,108,107,110,107,109,106,103,95,95,111,88,117,100,103,105,111,100,102,100,109,111,108,96,98,104,111,102,102,109,113,108,108,107,101,106,102,75,102,95,112,101,106,106,94,122,106,108,101,86,101,110,98,104,117,114,99,83,109,90,107,101,96,117,109,122,113,120,110,101,110,121,111,105,107,102,104,108,119,99,102,109,110,118,101,104,98,111,120,109,111,102,109,101,102,109,106,86,121,93,103,106,116,105,88,111,111,118,108,113,99,99,109,104,97,102,89,103,106,114,102,99,113,109,128,104,102,111,106,110,121,111,97,96,102,107,114,95,105,108,100,123,108,108,102,102,99,97,106,101,108,106,108,106,117,129,125,116,106,100,104,97,98,109,116,114,114,110,100,96,93,102,106,108,108,105,116,98,103,100,107,103,110,108,109,109,106,94,114,104,100,112,96,119,113,113,102,101,105,104,115,112,87,109,108,110,102,106,102,103,112,112,108,95,99,102,99,107,94,94,104,107,126,99,113,106,104,108,113,114,118,95,101,106,103,113,110,106,104,105,107,103,96,96,100,107,101,113,110,110,111,101,105,109,100,110,104,106,96,91,99,104,98,103,100,105,113,111,102,117,114,107,100,87,101,111,108,89,115,90,98,100,109,104,101,107,101,114,101,112,109,106,111,102,113,104,103,95,113,96,102,108,87,110,111,102,107,105,94,108,118,107,110,116,109,107,96,110,91,107,108,110,111,98,109,89,100,92,97,110,96,115,95,110,100,90,100,108,105,119,110,110,99,108,100,99,100,107,104,108,88,101,116,103,110,107,117,92,92,117,100,102,112,98,110,108,102,103,110,99,110,115,102,110,125,100,107,113,105,103,99,105,103,89,118,110,111,110,115,111,110,109,110,107,104,93,114,120,104,108,94,105,108,107,100,116,109,112,98,104,109,113,100,98,118,101,116,100,113,110,102,96,103,108,115,120,110,90,95,99,100,109,92,106,109,93,105,98,99,106,100,109,112,113,103,107,110,113,105,109,117,107,112,104,99,102,114,98,105,101,94,104,108,112,107,108,110,109,112,103,106,109,109,99,115,116,106,105,117,93,113,107,105,104,113,74,98,116,113,99,88,109,104,88,112,110,106,100,103,111,108,98,109,107,104,103,110,102,105,109,103,108,113,104,119,102,109,113,111,104,97,103,93,105,108,106,98,107,91,109,111,105,92,113,102,109,109,103,101,97,104,115,110,100,104,100,111,109,103,100,97,113,90,101,103,114,108,102,109,106,106,97,100,104,108,116,96,100,97,95,98,97,100,112,107,107,112,101,109,107,122,98,113,105,95,113,113,100,107,116,114,110,107,108,101,98,114,106,100,113,121,105,97,98,102,98,83,101,103,104,115,114,109,105,137,110,113,108,108,113,119,104,109,103,86,99,110,108,109,103,104,116,112,108,122,109,103,105,105,103,109,99,109,105,95,119,102,103,89,112,98,109,104,108,98,109,100,114,109,113,117,99,107,108,99,104,112,106,121,103,109,94,115,109,108,117,108,109,104,89,103,93,95,97,103,111,105,118,105,95,110,107,112,106,107,106,104,104,110,112,116,103,110,84,100,96,102,116,109,112,113,96,102,96,96,102,99,112,106,91,103,110,105,103,110,108,102,103,98,104,110,105,107,106,109,126,107,96,112,110,92,113,71,113,105,100,112,94,103,99,104,109,107,115,106,111,102,108,99,101,105,83,110,101,101,108,114,95,104,104,92,114,113,108,104,104,85,102,108,103,100,118,108,114,95,119,103,84,107,91,100,99,106,104,93,110,109,116,87,107,112,107,103,101,100,85,112,107,103,95,101,113,106,100,102,92,106,110,101,95,99,136,105,106,101,121,98,85,108,115,109,121,103,103,111,113,119,105,105,96,115,102,113,94,110,96,106,103,107,98,102,111,95,109,110,99,112,94,95,97,105,106,106,102,99,107,102,91,112,91,95,98,115,92,104,103,105,111,102,117,98,114,102,104,97,106,101,89,104,103,106,107,106,122,106,99,94,100,99,105,107,108,101,108,93,97,94,116,95,111,103,122,105,98,111,101,109,102,90,104,100,115,108,101,107,90,102,113,110,95,94,103,101,115,109,95,110,88,97,104,96,108,93,106,95,99,105,104,101,106,90,105,91,101,100,98,107,104,103,102,106,80,101,99,111,105,99,122,101,108,104,97,99,103,106,84,108,119,106,113,108,110,100,105,92,109,94,108,112,104,109,132,111,90,100,90,108,116,115,105,108,105,79,101,109,106,100,99,72,106, +500.17441,110,109,88,103,90,101,117,110,105,97,70,97,113,104,98,107,106,106,115,108,104,86,99,98,104,107,105,113,94,99,110,105,111,113,101,113,102,98,122,118,79,107,112,113,107,97,107,119,98,106,106,100,102,98,101,101,99,99,112,92,99,114,95,103,104,100,92,98,102,111,107,101,94,93,111,103,114,93,113,112,113,96,114,111,104,91,107,100,98,117,113,105,106,108,106,104,101,99,107,95,106,108,105,107,110,104,103,103,99,99,97,107,98,109,103,98,107,81,100,113,109,106,103,122,98,104,104,100,98,109,103,104,95,121,108,96,105,114,108,107,109,104,114,111,118,110,108,98,92,97,105,103,104,96,100,96,106,103,99,102,106,103,100,103,118,116,97,102,92,114,83,109,101,103,99,106,105,89,109,112,96,100,93,105,112,101,105,100,111,106,92,100,108,114,105,109,109,107,104,120,111,107,94,93,109,92,106,100,109,105,113,106,107,91,103,122,108,98,94,100,86,111,97,106,97,106,118,107,103,107,102,107,111,104,116,116,109,109,115,110,104,105,117,99,99,104,109,100,103,110,97,97,107,98,95,117,118,101,100,110,106,106,108,115,106,104,105,130,105,106,92,113,91,101,98,114,96,108,104,116,101,96,99,105,100,106,116,100,112,98,110,107,103,112,106,111,114,96,111,108,93,113,94,109,106,102,105,107,109,109,101,107,104,117,110,101,93,94,95,102,112,98,115,108,102,104,100,96,104,105,106,102,133,100,110,96,98,112,78,105,100,106,103,94,109,116,114,110,111,111,105,112,116,105,110,101,124,118,98,109,100,108,105,95,102,95,115,108,104,107,113,105,109,120,105,100,123,119,92,102,99,121,90,107,104,118,101,101,108,101,113,89,98,126,99,117,103,104,104,105,110,110,102,95,105,105,110,101,113,115,97,92,100,113,99,114,121,101,112,116,103,116,100,111,100,101,80,96,101,114,106,99,114,106,89,115,109,103,104,102,107,113,123,110,109,108,103,106,122,97,114,117,111,112,106,104,105,120,105,100,95,95,113,109,108,113,107,108,107,125,114,108,100,98,106,98,99,104,108,106,105,110,120,95,102,95,98,104,110,117,99,113,130,114,103,101,90,97,91,110,122,108,107,117,106,97,105,115,97,99,102,106,106,98,103,78,105,94,107,104,105,109,120,111,101,95,104,98,72,111,105,109,107,103,121,116,107,99,108,102,100,93,101,102,105,110,106,108,105,96,70,105,112,114,106,121,123,102,108,100,103,100,100,102,94,103,104,98,106,102,115,95,111,103,108,108,102,96,107,110,114,104,99,99,113,97,99,100,96,101,98,109,102,99,116,108,112,108,110,99,100,109,112,118,106,106,98,95,113,110,90,108,112,115,109,109,105,92,98,107,106,134,109,108,113,102,102,97,78,114,103,112,106,115,95,105,106,93,105,108,103,111,93,103,87,84,112,117,104,105,99,103,107,97,113,100,99,134,99,114,118,110,113,103,100,89,117,101,100,103,102,109,103,103,97,107,99,111,103,104,126,104,121,100,106,110,117,114,111,87,108,115,112,107,110,95,99,117,102,100,87,113,112,103,118,112,102,103,84,109,103,104,108,104,105,104,107,102,102,104,120,97,99,103,103,101,89,106,108,93,104,120,113,101,101,106,112,106,114,99,95,98,104,111,110,108,99,120,103,117,106,110,103,125,114,115,94,111,105,106,109,103,116,101,121,105,101,102,98,103,102,116,113,108,116,111,105,107,77,101,107,109,111,102,101,110,109,114,99,109,99,106,112,116,103,107,93,118,100,101,114,99,97,103,101,103,102,106,99,91,116,103,103,98,113,101,106,111,105,118,113,109,120,101,110,110,121,111,106,108,109,102,108,98,110,111,108,108,104,108,105,111,116,107,90,110,95,111,105,105,108,102,107,94,105,108,105,110,114,110,104,105,91,113,121,102,102,102,115,120,110,116,113,116,108,106,115,100,106,104,101,103,90,109,108,109,103,112,102,108,115,110,99,112,103,100,102,111,95,101,103,106,106,86,116,91,105,110,110,103,99,100,109,114,116,99,93,108,113,102,121,112,111,103,96,110,104,107,102,107,107,103,119,124,92,109,99,117,125,105,111,94,121,110,104,102,105,105,115,99,108,104,95,103,110,99,109,112,111,97,120,108,95,98,104,110,98,98,105,98,87,107,116,103,114,109,104,101,107,102,98,102,107,75,111,113,103,98,96,107,105,97,98,106,126,98,90,102,94,115,106,105,107,97,101,108,94,113,105,109,106,109,105,100,110,106,101,104,103,96,114,104,95,96,108,97,105,115,101,102,109,107,112,106,113,104,105,111,104,111,102,114,99,116,103,98,107,125,98,94,116,112,102,96,99,81,105,118,109,107,103,94,111,96,110,95,106,111,110,91,106,119,103,108,86,111,104,94,100,99,115,110,97,101,115,106,113,101,116,96,109,105,118,103,94,110,110,107,106,116,104,100,106,115,112,106,104,100,111,116,100,100,96,104,107,111,110,107,75,101,93,102,119,98,108,118,99,95,99,102,104,106,101,98,116,85,95,102,103,98,112,106,109,112,106,118,99,109,114,102,104,93,108,110,105,100,116,110,112,98,112,106,114,98,88,101,107,108,107,69,107,113,111,110,109,106,111,96,112,108,92,105,100,103,104,107,128,106,111,110,104,100,110,71,101,114,104,87,95,103,92,107,116,91,101,112,104,106,112,97,88,115,107,105,117,105,108,110,102,99,106,111,98,106,103,113,104,109,112,117,101,125,110,106,103,107,102,98,108,106,102,116,106,92,107,109,108,114,107,102,98,104,110,110,113,105,134,110,104,113,110,113,66,104,103,113,99,107,87,102,105,111,118,119,109,102,108,107,100,95,103,103,117,109,100,113,94,107,109,103,102,109,109,103,117,103,96,97,99,105,106,118,97,109,97,92,106,113,108,122,104,115,115,93,106,97,107,93,103,104,113,109,106,107,114,107,104,103,118,104,109,95,108,103,117,109,105,112,113,110,99,94,99,105,95,96,102,83,104,97,103,116,109,107,105,106,98,91,116,112,95,108,102,110,110,119,100,94,104,102,99,105,100,113,110,88,101,115,101,98,101,103,101,112,102,109,103,98,102,97,94,99,110,116,111,115,116,101,96,121,104,110,103,110,99,113,103,111,113,106,104,111,110,100,96,95,103,103,101,105,116,108,100,106,102,99,106,117,101,99,106,104,117,103,111,100,103,106,113,105,103,106,103,109,101,102,107,100,102,90,111,99,102,104,95,108,100,101,102,105,100,103,108,107,127,93,118,105,109,103,92,105,111,129,106,101,112,113,97,99,98,89,126,140,102,90,122,97,114,92,107,106,99,104,104,101,103,106,109,105,90,98,95,88,92,101,118,99,105,108,105,92,117,96,119,103,109,102,107,113,103,104,104,102,93,100,114,100,98,100,120,105,101,111,98,103,106,113,116,108,107,103,107,101,106,98,112,113,100,93,110,104,113,110,112,102,111,102,115,108,105,113,108,105,117,113,101,99,100,85,103,111,107,112,102,97,108,110,112,108,103,109,121,114,107,107,108,92,113,106,107,100,103,107,91,102,111,114,107,103,98,112,103,98,102,102,125,100,102,104,103,112,116,106,105,110,91,104,99,101,121,106,107,127,106,101,105,91,104,109,106,107,103,103,110,106,105,104,98,91,102,101,102,116,112,99,99,108,101,114,99,109,104,98,104,90,106,97,101,98,114,100,100,93,103,110,104,95,115,113,102,97,98,107,108,104,114,112,116,105,104,94,115,87,114,109,112,106,104,111,99,102,100,105,101,113,97,109,102,104,102,81,103,106,105,108,92,115,111,110,104,120,112,110,104,111,113,98,116,108,100,100,108,94,108,105,115,104,99,107,92,104,106,102,104,117,100,103,102,107,104,108,99,102,96,115,99,117,102,103,106,116,106,113,99,112,97,114,106,119,98,111,98,104,108,110,113,119,115,95,115,100,114,108,106,102,107,108,110,108,109,111,113,93,108,102,108,102,105,100,108,113,108,105,105,107,105,112,105,105,106,104,110,126,91,102,104,113,120,101,97,116,121,112,107,118,108,105,103,104,107,105,109,113,102,117,98,101,114,98,116,99,109,98,98,102,108,126,104,107,113,108,114,105,102,104,91,117,111,113,111,91,102,116,101,98,108,108,113,99,106,98,100,103,98,105,110,111,103,102,93,99,114,115,102,113,98,105,102,104,113,97,104,106,104,95,102,110,91,126,139,107,118,106,104,91,84,104,107,106,99,103,107,94,105,106,111,104,105,99,115,117,108,114,112,97,106,103,113,119,101,105,115,110,106,102,110,111,99,90,103,114,107,99,105,103,107,103,108,99,102,106,109,106,103,112,115,105,105,102,89,108,106,100,102,95,99,108,107,123,103,113,99,100,101,112,103,102,111,104,111,100,104,111,113,107,76,104,82,113,102,85,75,101,103,109,101,83,104,101,93,108,98,92,95,113,91,124,107,104,100,96,108,100,96,117,96,106,106,98,104,113,100,108,120,117,119,106,108,111,106,100,100,116,110,105,102,107,100,121,130,105,94,114,103,109,101,104,109,94,100,101,102,105,106,107,110,120,115,109,96,107,112,106,105,98,100,108,107,96,102,99,107,101,104,111,115,123,103,99,106,117,111,94,113,99,100,112,106,103,93,88,94,86,111,98,107,102,114,103,105,98,95,107,93,104,97,103,104,103,98,104,103,107,109,108,118,96,94,109,103,112,101,99,94,117,98,103,112,91,115,99,100,107,118,112,105,108,114,107,106,119,87,92,91,81,100,98,116,95,94,122,94,82,118,109,111,102,107,111,102,95,107,92,105,99,117,101,103,99, +500.31503,87,87,137,109,98,113,102,89,64,107,97,102,98,99,95,92,90,107,86,113,114,92,98,102,90,100,106,107,121,101,107,87,101,115,113,88,94,111,109,100,100,99,102,105,96,105,93,99,96,100,98,105,104,101,97,105,99,94,98,82,95,100,92,103,104,107,93,97,100,92,98,105,95,97,105,113,107,98,95,94,108,103,92,98,105,96,101,102,104,108,81,98,94,95,95,103,99,102,94,103,128,106,122,108,109,90,83,104,98,97,98,97,97,101,105,98,87,112,86,117,108,103,99,109,100,100,102,92,96,111,98,121,91,96,100,100,98,121,88,102,97,80,109,102,120,96,104,104,109,92,105,90,98,90,97,101,99,99,111,111,97,102,99,104,108,92,128,98,105,109,88,106,97,99,116,116,102,105,112,88,109,87,125,102,120,104,99,87,114,95,96,96,102,96,104,109,102,102,113,101,89,106,102,106,113,103,108,102,103,99,99,97,117,109,109,96,92,104,110,104,98,114,104,105,101,109,108,124,95,105,100,110,96,96,115,99,102,92,98,112,107,95,111,100,104,99,108,114,96,111,102,108,107,102,104,108,91,100,103,108,110,100,111,105,95,107,108,110,98,98,105,112,96,102,94,114,104,108,102,107,92,102,108,100,117,102,86,99,96,105,100,92,107,107,113,114,98,110,97,104,95,101,104,108,100,109,105,105,111,68,99,113,119,104,104,108,90,112,102,113,99,104,101,95,114,99,100,88,106,110,103,93,99,116,108,112,103,107,97,129,102,102,105,102,111,114,98,93,108,113,105,93,106,106,96,104,99,109,107,110,105,105,96,109,96,98,105,98,102,100,109,102,124,99,127,104,110,106,98,104,98,112,106,106,100,84,110,108,97,96,98,99,96,95,96,104,109,104,104,127,113,99,101,97,102,104,94,109,90,101,99,95,102,81,112,94,95,103,98,96,114,102,111,73,97,108,105,102,102,101,112,103,88,99,101,88,117,93,109,112,104,94,106,97,103,106,108,99,109,103,97,87,103,109,104,97,105,111,105,106,102,110,104,116,103,106,108,100,110,102,96,95,103,98,106,99,99,117,109,104,100,102,107,105,109,101,104,100,104,92,109,108,107,103,98,104,103,114,97,106,104,109,92,112,96,111,98,108,103,106,105,110,105,103,102,104,98,107,105,97,119,115,113,96,112,109,113,101,102,103,82,101,94,104,99,106,107,109,89,98,108,110,102,100,114,103,102,104,96,104,113,114,89,105,113,93,106,113,104,101,103,103,109,106,101,107,103,107,103,104,101,96,100,109,105,103,102,102,110,111,111,99,91,100,96,99,135,96,113,96,104,108,102,100,103,94,105,106,103,102,98,104,100,109,113,98,89,61,105,107,94,101,107,100,112,111,93,121,101,113,109,105,107,106,103,116,101,104,100,106,106,86,96,99,92,96,99,96,108,100,99,89,112,94,104,102,94,117,108,92,105,114,100,108,103,106,108,106,111,102,97,92,105,118,103,103,109,104,123,97,101,106,120,94,107,102,92,95,104,114,98,100,94,95,105,101,107,105,95,102,102,101,102,97,100,97,108,103,108,101,105,94,87,107,104,103,105,106,102,98,113,103,112,94,102,90,110,108,104,108,113,100,99,103,98,102,102,109,100,96,104,106,108,94,86,96,96,108,108,106,102,103,100,112,105,116,105,101,123,114,104,99,106,100,131,113,106,99,99,98,101,111,108,108,100,106,95,110,103,96,102,96,109,100,91,113,110,94,82,107,94,110,121,99,92,106,104,102,80,106,107,105,100,100,97,97,92,109,104,110,100,104,96,100,99,113,98,112,108,102,101,98,108,99,102,97,104,113,100,110,103,135,105,100,108,101,104,107,125,103,100,99,112,90,102,111,109,102,113,103,108,112,112,91,104,103,105,106,106,99,110,103,109,106,99,108,102,99,107,100,93,95,108,100,93,96,106,107,96,104,99,115,110,108,114,102,105,107,97,109,102,95,101,96,103,110,105,114,97,109,104,113,100,105,104,99,106,95,100,108,103,105,109,104,99,107,105,94,104,98,96,103,106,106,102,92,95,100,109,100,109,86,107,107,100,97,109,104,102,102,108,104,100,113,103,98,102,96,101,100,101,102,103,110,110,105,95,108,123,106,104,103,104,108,109,106,121,96,98,103,97,111,100,110,109,109,103,118,119,104,95,101,110,99,99,91,103,102,104,107,96,87,109,103,107,101,108,94,89,102,111,99,100,106,105,92,94,94,95,94,120,103,101,107,112,100,108,107,94,113,94,105,91,118,96,100,95,92,102,96,104,101,121,87,95,101,101,103,116,125,110,97,103,96,105,100,109,110,107,102,97,103,110,101,98,97,98,105,101,103,111,113,104,103,96,105,93,106,94,99,109,102,103,113,111,130,104,94,105,117,91,106,88,100,100,102,110,108,108,103,111,99,105,106,99,100,99,103,118,109,102,106,104,121,105,104,99,104,113,104,113,98,104,113,119,94,97,91,99,98,105,115,100,105,123,100,109,94,97,107,107,104,90,102,102,104,106,112,115,89,112,123,131,91,102,105,105,103,105,112,103,122,96,114,99,102,104,112,71,99,116,101,109,104,104,99,116,128,95,105,98,93,115,92,108,119,106,104,111,109,100,96,110,107,104,106,109,108,99,107,112,110,80,101,109,109,114,104,105,116,125,106,109,102,106,111,103,104,104,104,111,100,103,102,101,100,104,109,105,112,106,109,99,115,105,108,104,105,124,99,120,101,109,93,113,99,102,97,93,99,106,103,97,111,113,106,115,104,99,107,102,93,114,96,95,104,111,114,110,117,105,115,113,105,102,106,107,106,108,107,112,92,96,111,95,96,104,96,109,106,107,103,98,110,101,106,101,95,107,111,113,105,100,108,106,90,106,101,97,80,102,89,101,108,115,108,104,102,103,111,102,109,116,103,107,109,98,106,103,123,99,95,105,102,106,109,78,108,108,88,109,117,108,107,103,105,109,101,102,108,106,79,105,106,107,101,99,109,105,111,105,97,103,108,105,105,112,99,96,98,105,105,88,111,95,100,99,95,113,102,101,99,103,100,97,86,103,91,122,102,102,106,102,108,110,115,99,118,110,95,98,105,95,104,103,92,99,100,106,98,101,107,106,121,95,108,102,99,100,121,120,90,100,98,103,103,95,111,103,104,86,108,107,116,104,99,97,101,109,104,113,106,105,94,99,107,106,115,111,113,105,96,107,125,107,98,97,98,112,117,102,99,116,102,104,106,110,109,107,93,102,94,111,106,73,99,96,96,110,93,114,102,108,103,91,95,98,94,83,103,115,104,107,105,103,102,96,102,110,99,112,125,122,105,113,101,123,95,120,98,97,109,99,105,107,101,96,99,99,109,103,102,96,113,111,102,115,101,97,103,106,106,111,97,98,103,87,97,106,94,87,105,105,106,89,106,102,103,97,110,105,107,113,99,102,105,97,96,115,109,104,103,106,108,100,113,108,118,99,106,110,101,98,100,103,109,103,118,103,106,113,115,100,111,98,98,98,105,105,103,110,96,88,99,92,107,113,102,93,96,130,104,106,96,110,102,109,103,114,109,104,109,113,108,91,99,99,104,97,104,106,103,105,103,98,105,107,101,95,101,103,106,115,109,105,101,101,105,113,105,102,106,98,108,97,101,108,98,108,101,102,113,114,114,112,140,108,103,100,90,103,98,102,88,110,106,101,112,108,103,101,100,86,100,103,104,110,107,105,103,128,91,91,106,107,101,109,106,107,102,105,91,108,115,102,92,108,103,96,104,106,110,98,116,92,111,98,105,92,102,95,106,113,102,96,83,102,109,119,100,102,102,103,97,101,105,111,104,102,109,107,109,110,101,96,102,104,107,95,110,110,98,96,107,104,100,109,92,109,105,117,112,100,117,101,72,100,99,109,100,103,98,111,98,105,101,108,109,97,109,95,110,100,89,98,106,97,109,87,100,109,109,107,108,93,93,111,107,91,99,113,102,102,95,111,98,109,101,103,97,105,102,103,98,116,103,107,102,106,102,105,102,117,112,105,104,116,100,99,112,109,109,99,104,112,94,88,102,104,99,109,103,113,102,106,106,121,103,98,100,106,102,93,92,103,94,129,98,104,106,113,91,96,93,95,104,103,111,106,106,102,105,99,102,102,110,116,97,104,95,110,97,102,106,101,80,97,92,93,109,94,93,101,109,97,108,103,105,99,104,96,103,98,96,100,103,95,119,100,107,102,111,103,107,116,106,97,102,94,98,100,113,104,99,104,99,101,96,108,116,102,99,92,106,112,108,102,103,105,107,98,109,106,103,92,93,103,102,108,88,114,105,107,97,101,103,106,110,103,108,110,100,111,99,113,111,95,112,107,108,105,93,109,116,96,113,83,109,101,98,106,101,99,90,105,99,107,105,110,91,93,111,125,101,103,88,97,111,116,103,101,99,111,107,106,101,101,98,96,113,105,98,108,121,105,112,105,100,95,104,111,99,114,101,110,99,112,92,102,100,98,94,96,91,91,102,89,105,71,110,102,105,88,88,103,112,98,117,106,91,107,99,111,109,112,117,94,105,111,96,103,101,101,92,106,111,109,109,106,108,98,107,109,96,111,104,109,106,106,106,86,110,89,94,96,85,92,98,113,110,96,107,99,98,102,103,104,117,106,96,98,104,106,109,92,89,65,101,87,106,98,110,88,88,104,109,114,98,102,110,101,103,109,98,98,108,102,116,103,96,96,101,93,108,96,96,104,101,72,91,102,101,87,96,102,105,92,95,98,109,105,92,109,112,100,98,96,104,100,88,92,92,94,109,103,98,96,109,123,99,111,92,100,67,98,101,93,98,125,86,112,105,94,101,116,106,119,103,103,87, +500.45566,115,93,103,97,132,106,87,87,75,98,98,99,95,95,108,101,100,93,105,109,103,109,97,106,106,108,104,105,106,105,113,92,92,104,85,110,100,96,101,102,93,103,101,101,104,114,97,108,80,106,94,101,99,99,108,76,102,106,98,101,95,106,95,108,99,106,98,112,90,111,113,110,96,100,96,74,93,104,114,102,110,99,103,95,108,98,111,108,89,105,100,108,105,102,104,99,103,86,126,88,103,106,114,104,104,104,103,92,102,98,116,105,108,102,101,112,107,108,102,114,95,104,118,117,106,107,108,113,117,75,102,112,109,98,104,121,101,106,107,98,106,99,96,111,97,102,104,105,101,106,95,107,99,101,104,106,104,110,100,109,109,105,113,112,108,104,98,117,103,106,110,104,93,98,102,107,99,92,115,101,105,114,109,103,112,106,101,103,94,101,116,103,102,113,101,112,99,103,116,108,105,97,114,93,108,108,105,110,93,114,101,110,118,106,102,104,114,105,100,106,111,117,113,103,108,75,113,93,96,107,106,108,100,103,118,112,106,107,112,103,103,121,86,99,97,102,124,100,106,101,71,103,101,115,109,108,99,111,100,103,106,108,74,117,109,104,110,109,107,104,103,114,107,92,109,70,100,109,97,102,84,97,90,105,111,113,102,94,121,114,86,99,100,109,98,104,106,112,105,95,95,108,141,97,100,105,96,111,96,114,105,91,102,113,100,109,119,104,101,97,107,101,114,94,99,109,103,106,115,109,107,107,112,83,99,106,96,109,98,102,108,79,106,91,116,112,117,111,102,110,102,103,84,112,110,113,113,114,95,99,107,101,112,104,103,107,111,103,105,108,107,99,115,112,120,99,96,113,101,101,101,105,107,107,99,107,103,103,106,99,107,110,101,105,97,110,107,127,111,100,96,107,107,102,108,108,97,112,116,109,96,99,98,103,107,98,96,113,107,87,106,109,96,103,101,100,98,99,100,102,104,106,123,95,104,116,94,100,108,101,109,109,102,100,96,113,100,102,106,106,115,114,118,108,103,107,109,120,107,101,106,100,100,107,100,108,103,98,98,96,113,105,96,99,108,101,110,105,106,115,87,116,109,97,101,94,107,104,113,97,112,100,114,125,100,118,117,105,109,100,110,103,111,101,96,104,104,95,104,96,87,86,101,107,109,100,110,103,102,96,103,117,106,102,111,109,101,100,98,101,100,113,109,98,103,109,99,94,112,109,100,100,104,100,101,92,100,110,102,109,106,110,119,86,95,96,106,103,114,108,103,109,98,113,111,98,114,112,101,104,104,105,98,111,107,100,93,108,96,85,101,101,109,115,124,110,117,115,96,96,101,109,105,107,117,108,104,107,112,99,115,106,105,105,107,116,93,97,107,103,105,109,106,102,113,106,108,86,106,86,108,105,110,102,99,110,113,105,108,106,117,102,101,107,106,108,111,105,91,97,121,103,99,96,102,104,96,107,118,106,101,105,105,100,110,112,78,119,104,114,128,103,96,111,117,103,113,103,100,111,115,109,116,93,100,122,118,91,97,107,109,112,102,91,90,97,98,94,104,99,120,101,95,113,107,108,117,115,128,97,99,100,108,103,88,107,112,105,104,106,100,105,109,101,114,113,103,112,108,97,102,128,114,112,105,97,105,111,102,114,109,111,112,99,108,105,98,103,104,101,113,105,120,105,116,123,114,103,101,110,117,109,103,104,103,114,100,115,108,113,104,98,94,95,94,92,102,110,100,105,115,112,102,106,103,99,101,106,106,105,104,102,109,117,113,106,103,108,111,109,109,109,98,125,105,107,90,95,112,108,104,117,97,111,92,101,112,124,111,141,109,106,114,109,112,89,109,106,112,106,98,125,111,106,109,105,117,110,108,117,104,107,110,113,103,106,112,101,108,87,106,112,104,99,107,99,100,105,105,109,104,110,108,111,116,117,110,99,97,104,96,103,107,113,108,110,100,105,109,111,98,112,114,114,105,115,106,110,100,109,114,101,100,101,115,94,96,116,98,106,106,85,101,108,106,113,101,102,114,110,105,100,122,101,101,105,106,113,106,101,125,113,116,105,98,106,99,121,89,101,109,109,107,99,98,120,97,114,110,109,105,104,119,108,104,102,107,108,112,90,105,115,104,100,110,108,102,108,109,116,106,114,96,106,104,99,99,110,98,99,115,98,114,91,117,121,103,100,108,110,96,111,104,97,110,110,103,86,99,117,98,101,106,103,99,106,104,110,101,102,104,105,117,102,93,108,106,102,105,105,108,102,108,104,140,101,105,104,107,100,113,120,98,109,115,108,112,106,100,99,107,111,95,105,94,113,113,105,103,102,93,109,110,101,106,106,113,111,114,100,113,102,105,109,92,108,107,100,107,115,104,101,115,115,93,97,109,103,112,90,91,103,108,109,106,93,96,99,116,117,93,99,108,103,95,99,100,113,103,95,104,109,110,117,116,122,97,103,113,105,110,111,76,101,79,112,100,98,100,97,106,110,105,75,110,106,109,110,106,94,102,114,102,104,107,106,93,100,100,107,118,109,112,107,110,107,96,110,109,104,101,101,101,103,108,95,97,102,100,103,89,107,102,117,96,92,105,105,87,111,108,104,114,109,109,103,107,105,113,106,113,102,103,91,110,108,100,106,109,108,104,95,108,125,88,110,103,91,114,98,107,117,99,110,107,103,115,103,106,102,92,105,112,106,109,110,105,110,105,107,104,112,111,103,103,111,85,109,110,107,108,108,84,108,108,116,117,110,131,111,108,116,99,103,110,105,121,108,107,108,102,100,91,102,116,102,125,101,92,128,86,106,105,109,105,103,106,109,92,110,108,112,101,106,95,108,95,119,107,83,103,97,91,105,107,107,99,117,108,106,110,113,104,118,106,99,105,113,98,94,97,102,107,103,85,117,108,97,109,101,99,111,100,108,112,103,100,114,113,98,106,102,106,100,102,98,104,97,91,96,100,108,104,106,108,102,104,112,109,109,115,107,99,110,99,107,115,102,92,101,100,105,95,116,87,108,103,85,101,107,106,104,115,101,110,110,96,103,113,110,96,108,105,99,121,114,105,98,101,100,93,109,107,99,111,89,105,94,99,101,102,97,116,98,101,109,107,99,107,103,93,97,116,108,111,103,96,99,102,99,104,102,112,100,99,107,108,93,109,119,111,105,117,116,104,110,102,103,99,99,85,117,99,97,99,104,95,98,99,107,106,111,101,127,96,92,104,91,125,103,100,102,102,111,104,106,97,106,109,91,107,109,105,91,105,117,97,95,105,107,104,97,110,98,107,104,109,94,101,99,102,90,103,94,95,109,106,95,104,95,99,102,95,100,102,106,107,113,114,102,99,106,102,96,98,100,115,100,94,106,101,99,96,96,113,97,91,93,96,103,99,109,93,95,114,90,102,102,103,109,105,100,91,104,93,96,103,111,102,99,104,108,94,96,98,112,112,74,102,102,95,107,108,104,106,106,104,102,103,98,97,121,99,114,102,123,98,107,105,98,113,101,97,99,104,106,117,113,107,110,105,97,102,98,104,95,95,96,108,113,105,122,112,111,108,107,98,104,112,98,106,101,101,108,100,109,104,94,113,104,113,92,103,103,112,104,111,100,113,107,104,111,104,105,106,105,118,97,102,95,97,100,106,110,98,112,104,93,106,94,108,103,106,107,98,116,103,121,103,106,96,98,101,118,104,100,109,96,101,100,94,101,108,91,105,96,99,108,103,98,102,102,99,90,115,112,109,110,96,108,94,91,101,103,106,106,101,103,103,109,103,103,113,98,99,97,105,109,108,106,104,111,110,113,111,120,112,94,100,101,91,103,92,92,88,91,109,102,108,107,100,111,100,110,94,113,96,91,102,112,101,98,110,108,112,106,110,103,109,103,108,95,105,113,112,111,117,103,120,102,102,81,113,100,101,100,106,100,95,101,102,110,105,100,99,100,106,110,103,107,107,107,92,101,112,97,102,106,89,98,103,102,102,112,98,102,93,107,96,109,123,106,80,111,102,115,98,108,102,108,109,111,113,103,103,102,104,111,107,104,104,98,111,96,100,110,95,102,101,103,110,119,101,105,96,105,108,97,95,90,104,109,78,102,104,104,95,107,106,114,102,100,85,88,99,100,102,106,107,113,110,105,101,98,109,118,115,98,96,112,114,101,107,117,101,113,95,116,109,103,110,118,104,104,100,107,112,103,104,107,104,106,94,101,97,108,111,98,105,103,107,91,96,105,99,106,96,101,92,109,113,102,101,102,100,102,97,105,96,105,97,103,102,113,107,99,98,99,98,107,105,105,106,98,104,110,97,103,97,105,110,98,106,93,107,100,117,111,103,118,111,104,95,104,105,115,111,96,99,101,108,108,112,96,106,106,105,106,109,93,93,114,105,91,106,103,101,118,104,98,110,73,113,96,105,102,104,92,103,89,105,103,91,108,105,87,93,107,108,107,104,98,106,95,113,100,110,104,106,90,99,98,106,103,107,103,111,117,96,92,102,100,111,91,100,93,105,112,99,103,110,104,103,110,96,105,100,118,105,104,102,114,103,102,101,95,112,91,92,97,107,93,105,98,113,94,98,104,110,109,101,91,104,107,105,95,112,114,106,98,133,102,102,103,106,104,108,97,88,102,104,88,104,94,86,87,115,95,107,105,99,107,100,102,88,100,102,108,102,99,104,96,108,104,102,96,105,104,92,100,106,98,102,102,99,89,96,89,96,100,95,118,82,97,88,94,99,119,95,91,101,116,110,80,104,111,108,116,96,104,129,106,88,92,102,102,92,94,99,102,109,112,96,87,109,107,105,99,108,102,106,99,104,88,99,100,93,100,95,101,113,101,106,108,110,91,108,104,92,100,100,105,101,104,95,105,109,101,106,104, +500.59631,103,96,92,91,98,105,103,87,98,109,104,91,117,112,103,98,94,101,103,96,107,90,91,94,106,111,92,84,108,105,105,111,97,104,112,101,105,93,108,87,110,105,95,108,106,100,108,96,79,114,94,97,106,88,100,104,100,109,94,105,101,105,110,99,98,112,88,104,97,101,99,108,104,96,89,108,92,94,112,102,82,93,98,119,105,91,96,106,82,90,120,109,113,103,100,97,89,94,106,115,114,102,106,75,96,98,104,105,105,105,98,107,115,116,112,118,95,101,105,100,102,104,95,100,99,95,106,110,106,96,106,116,101,103,101,94,111,94,89,114,97,109,96,102,99,117,101,98,112,95,101,111,95,101,96,113,108,95,108,97,111,101,109,107,95,105,105,111,100,100,110,102,103,120,115,106,91,96,114,109,93,112,103,99,101,105,109,101,102,97,95,98,103,102,94,108,105,127,113,100,84,91,86,113,108,111,94,102,112,119,92,104,115,108,108,114,106,102,102,101,107,105,98,111,108,104,107,114,100,103,105,110,81,110,96,95,102,114,114,102,100,104,104,98,94,95,105,106,91,107,107,110,129,111,114,105,105,105,100,102,106,109,101,104,92,121,101,105,101,90,103,126,110,98,103,94,129,110,99,108,83,97,99,99,112,95,102,88,106,113,81,98,112,105,109,102,106,106,103,86,100,113,90,106,105,112,100,114,112,109,105,105,104,75,105,86,105,101,99,104,107,74,105,95,105,108,98,110,109,110,109,96,99,107,118,99,103,100,93,101,102,109,101,99,104,103,101,103,118,108,112,99,102,110,95,110,111,112,97,101,104,105,93,108,98,87,96,109,95,97,120,142,110,104,121,87,90,97,95,94,103,94,97,107,114,98,117,98,96,98,105,107,102,109,102,99,97,106,101,109,100,105,92,128,103,107,99,100,101,104,107,116,107,112,102,102,96,121,105,90,98,107,89,107,107,99,104,95,99,108,91,96,110,97,112,107,101,104,100,86,114,98,102,96,100,87,105,92,113,100,115,104,104,101,106,108,96,104,107,109,114,107,109,98,107,102,98,97,98,98,118,104,104,103,106,88,99,107,108,98,98,103,109,96,99,89,110,97,114,94,108,109,107,116,98,99,107,109,103,102,121,111,109,106,109,88,102,102,92,102,101,102,108,108,105,99,111,88,105,101,105,108,108,102,99,108,116,96,106,97,130,100,95,103,97,103,93,117,104,109,117,109,107,101,103,84,94,91,121,125,105,101,96,100,103,93,98,105,101,85,105,97,105,114,99,100,100,103,108,99,100,95,107,100,109,123,99,94,90,101,105,101,101,95,106,95,105,98,112,107,106,102,110,114,117,102,109,93,104,99,103,113,109,105,95,91,95,98,104,100,103,100,96,97,102,96,105,105,109,100,99,100,92,106,96,95,95,106,109,98,105,102,98,99,99,109,108,94,98,106,97,108,107,103,103,102,78,92,114,121,99,106,114,105,108,106,103,109,120,114,99,113,112,105,103,109,91,102,92,104,105,103,103,105,104,110,107,105,110,107,109,109,98,104,101,96,95,100,103,105,114,111,109,111,102,101,110,116,97,96,92,94,100,101,103,101,104,95,106,106,97,101,94,109,94,99,94,99,97,103,108,105,107,120,90,111,107,111,103,109,114,114,105,103,105,98,101,98,109,107,117,100,105,115,112,79,112,117,109,118,110,96,103,105,100,100,106,104,112,97,100,92,97,111,97,106,104,106,113,102,117,95,116,111,104,95,109,98,98,107,106,122,112,113,114,110,94,114,102,97,100,104,103,106,103,96,107,105,105,109,109,106,95,94,104,91,86,107,98,93,95,94,99,88,106,92,110,105,113,109,112,108,107,94,95,99,98,96,96,112,113,97,107,107,97,108,112,97,104,99,101,103,99,108,110,105,97,99,93,93,90,95,104,102,88,94,98,104,104,101,95,119,98,106,96,95,110,113,110,110,99,105,98,107,91,109,108,105,96,100,98,97,104,110,100,102,101,114,103,104,97,103,110,108,121,105,105,96,107,107,102,113,104,103,113,96,92,95,83,99,102,107,102,107,110,99,101,109,112,102,109,99,108,92,105,100,103,101,74,101,106,101,107,99,111,94,97,105,117,109,95,102,103,114,98,105,107,103,109,110,97,71,97,111,97,103,108,99,102,104,99,107,103,107,95,101,115,102,107,103,99,103,106,105,99,100,108,98,90,100,107,117,97,96,108,104,111,98,93,102,108,104,102,106,117,105,98,110,101,113,111,108,109,104,103,106,102,99,115,97,113,109,109,117,79,93,103,103,114,118,110,107,103,92,104,116,100,105,103,101,99,99,104,94,105,107,95,102,115,106,96,107,105,95,110,107,106,99,95,105,109,105,114,100,102,100,103,125,110,92,100,103,104,116,96,99,87,107,104,105,95,105,109,98,102,113,94,98,99,105,117,104,107,123,85,103,86,95,116,121,107,109,113,101,105,101,99,95,106,107,101,105,113,94,105,108,93,111,99,109,107,110,117,89,102,91,109,102,92,112,105,102,85,109,106,110,107,111,102,103,107,117,110,104,114,97,112,105,104,98,109,65,105,103,95,102,102,99,106,108,104,104,105,106,110,100,110,109,107,108,109,88,106,97,107,101,98,107,105,108,116,106,106,116,107,110,101,102,97,109,99,107,109,112,109,105,107,91,84,111,110,106,108,102,114,109,108,105,94,107,109,113,119,106,100,106,106,109,108,99,113,120,92,117,111,111,99,97,103,96,103,100,108,112,109,88,109,104,98,100,95,100,99,109,115,103,120,110,96,105,110,108,107,105,120,106,102,107,103,114,93,105,105,103,101,102,104,118,99,106,98,109,90,113,108,106,106,102,101,110,147,108,106,106,96,84,108,91,112,121,94,116,106,113,107,117,83,104,95,85,91,103,104,102,102,90,99,109,107,101,95,96,107,108,108,109,87,117,105,110,104,107,97,106,103,104,103,123,91,108,109,102,95,112,112,104,105,103,102,111,102,96,100,110,109,112,111,100,99,129,104,103,111,106,112,105,111,92,105,102,101,115,104,112,107,113,100,107,109,103,81,109,112,102,106,100,103,103,96,114,95,109,101,102,103,110,100,93,107,100,106,93,106,102,104,82,104,91,98,106,100,96,98,91,108,117,102,113,118,109,104,100,98,110,108,120,110,113,107,102,89,95,106,104,109,105,111,104,100,110,97,111,101,106,93,100,114,113,112,136,111,109,105,117,101,104,116,95,98,95,99,108,94,91,102,107,111,97,100,129,110,94,101,107,106,100,110,101,99,111,103,69,107,89,114,111,121,104,102,116,98,103,112,108,90,99,102,105,103,108,94,99,119,101,106,105,102,95,111,91,111,109,103,115,111,96,105,108,103,101,104,98,117,116,102,102,105,93,104,103,103,106,109,104,109,101,114,111,103,100,114,115,93,103,111,95,102,105,100,102,109,112,101,108,103,92,115,101,106,116,103,99,107,103,105,106,103,111,92,98,111,119,105,110,93,112,109,118,109,107,112,112,110,101,98,98,95,111,105,89,106,102,120,101,113,104,108,102,111,94,105,98,94,105,103,103,108,108,103,100,94,101,105,111,106,116,95,98,99,92,98,104,118,108,102,104,115,104,111,92,97,98,113,108,103,100,107,104,106,111,106,104,105,115,104,92,114,108,106,88,107,105,100,96,119,125,118,105,98,109,101,101,95,105,107,113,116,103,110,101,116,114,112,102,112,99,109,108,101,97,103,98,99,128,101,96,112,96,113,107,100,108,102,109,101,106,102,104,106,98,96,103,106,111,102,98,93,107,101,110,103,106,105,98,98,110,99,96,101,99,110,102,100,95,107,117,101,121,118,96,105,109,98,101,110,107,99,104,85,95,95,99,87,116,105,95,97,101,115,108,116,107,106,109,107,108,99,96,101,113,100,101,108,120,103,116,96,108,103,105,105,111,109,106,101,99,101,101,102,109,109,120,100,76,107,96,102,104,103,104,105,99,94,104,117,102,105,101,97,99,104,113,96,102,103,109,96,99,111,106,108,103,101,107,96,107,99,124,108,98,104,105,107,113,107,108,113,122,106,101,101,109,105,107,106,110,102,96,114,102,109,111,100,108,105,102,98,110,110,103,112,88,98,103,100,99,111,101,102,102,133,104,103,105,105,110,92,103,110,104,114,76,106,107,111,107,108,109,99,109,113,102,107,101,104,92,104,101,107,102,102,105,109,106,98,104,104,106,117,117,110,109,107,105,106,106,96,102,83,120,98,116,95,108,110,101,116,98,95,122,105,92,102,95,100,95,110,97,118,104,110,100,107,109,104,103,107,111,109,116,96,111,97,111,103,123,102,111,108,90,110,113,109,119,109,105,100,102,112,99,97,96,112,100,94,113,93,96,96,86,102,104,96,94,109,108,105,96,90,102,99,110,105,103,111,101,99,110,100,108,103,115,105,103,119,112,112,114,97,109,96,110,100,94,97,98,97,106,100,106,101,91,96,99,102,101,111,106,86,110,103,105,97,98,104,109,107,93,96,106,102,119,112,104,96,108,106,109,102,110,120,97,106,101,98,97,109,104,102,99,92,127,107,98,80,106,104,112,106,103,98,101,111,105,105,113,102,121,103,98,102,92,111,105,102,95,101,110,109,103,105,116,130,98,111,108,105,104,95,89,102,99,110,104,112,102,100,100,88,99,94,102,115,109,115,96,92,83,117,103,108,104,101,105,102,103,90,106,101,112,116,89,95,95,113,110,91,99,92,111,110,107,113,95,102,109,86,69,117,101,108,113,84,107,99,105,112,102,122,113,109,105,101,101,100,102,94,98,106,88,108,106,102,96,106,108,100,102,91,116,111,101,109,96,85,107,98,111,85,135, +500.73694,97,126,101,107,107,98,87,99,99,95,94,105,96,89,112,97,95,93,111,103,116,109,94,105,106,110,109,107,102,102,93,97,93,100,108,102,106,94,105,95,97,99,97,95,103,100,102,100,104,102,99,106,100,97,112,87,98,90,121,96,97,95,95,100,100,117,103,92,104,106,85,113,97,102,98,97,91,101,102,98,99,139,111,113,109,99,101,96,87,97,103,114,93,103,106,104,92,100,99,87,96,105,106,110,110,101,108,101,102,92,104,96,99,107,106,94,106,97,106,95,102,117,102,111,95,101,110,99,121,104,96,88,64,89,100,117,100,104,93,101,76,104,110,100,103,96,107,100,97,95,99,103,79,104,96,110,110,102,110,108,110,99,105,101,102,99,106,97,103,102,112,109,91,102,101,101,109,96,121,110,107,100,102,106,109,101,96,99,97,105,109,111,97,89,98,107,95,111,101,113,101,108,101,104,91,111,101,99,98,105,112,98,95,88,92,94,94,102,100,97,105,104,96,96,96,113,91,105,86,95,95,100,96,117,105,104,90,108,97,101,91,94,120,108,104,101,100,103,107,113,110,104,100,103,108,106,99,102,109,103,97,110,99,109,102,100,106,94,113,104,108,106,105,109,111,108,98,104,98,114,105,104,107,113,109,95,92,104,105,108,93,102,109,104,116,111,107,115,103,129,107,105,100,114,104,105,113,117,101,111,81,119,107,106,100,104,99,105,96,103,102,100,96,98,109,101,114,104,90,107,100,104,110,103,100,108,101,90,100,97,116,105,97,95,95,106,104,113,108,102,95,95,113,108,104,118,90,101,118,118,96,110,98,99,102,97,110,102,103,112,97,111,100,97,95,102,114,113,92,102,102,107,91,103,108,94,98,97,108,108,106,94,107,107,105,109,99,110,106,115,95,111,112,102,120,99,101,101,106,111,91,94,98,95,94,112,95,96,87,113,97,96,102,109,97,97,100,101,102,103,108,105,104,94,107,95,95,94,99,93,100,112,101,96,98,93,96,100,104,114,98,97,80,100,92,94,92,96,101,100,110,95,105,96,124,103,106,103,116,106,102,103,92,109,115,101,103,116,99,103,108,106,114,113,110,106,101,99,89,100,103,108,105,104,101,115,97,93,101,99,116,101,102,106,94,104,105,102,113,97,106,112,102,106,100,107,109,101,101,105,101,99,109,94,88,110,107,105,99,94,99,103,112,87,99,117,113,95,94,99,94,102,99,101,100,94,116,95,108,114,112,109,116,102,109,111,97,100,97,111,101,96,104,99,104,105,112,108,106,97,100,97,105,97,102,106,99,105,105,105,99,103,95,98,100,101,109,100,96,109,96,106,100,91,100,110,101,101,107,105,99,121,122,95,94,101,112,106,101,109,107,99,112,102,99,102,89,108,105,102,117,93,120,94,98,100,96,94,104,103,96,97,105,101,94,88,90,101,106,115,107,89,103,97,91,103,104,112,108,116,101,112,99,102,104,107,107,103,99,112,113,98,106,75,102,109,105,109,117,96,114,99,111,97,118,108,106,99,99,98,100,110,119,109,97,108,95,106,114,108,83,107,99,103,110,99,115,98,101,93,114,101,103,100,100,110,98,98,100,96,97,109,93,91,98,104,105,92,107,86,95,107,93,109,102,104,102,104,102,104,95,104,109,96,113,103,114,107,91,100,121,98,112,82,95,105,98,78,88,106,104,92,106,101,110,100,113,99,101,98,93,113,92,97,107,112,99,102,95,112,103,108,102,112,98,104,100,97,107,98,104,111,107,113,101,82,102,105,106,117,82,103,91,109,102,117,104,111,121,102,105,100,89,117,105,97,87,107,99,104,121,103,113,102,98,96,112,110,109,98,104,108,98,94,113,104,109,136,103,100,104,103,119,106,105,107,103,119,112,105,97,108,94,103,100,104,107,100,97,93,103,99,93,98,95,106,95,93,97,104,105,107,113,103,95,113,96,108,92,110,104,96,115,117,106,97,110,103,98,109,117,105,99,110,100,98,85,106,102,102,113,105,101,95,92,104,107,104,93,97,98,89,122,103,95,114,97,113,119,106,114,97,101,117,92,99,95,98,105,104,99,108,107,98,103,103,87,108,108,100,111,102,106,105,105,94,92,113,104,98,105,94,112,110,93,100,99,115,118,95,112,106,96,105,110,104,106,112,99,101,103,108,83,98,127,111,98,99,118,110,109,103,105,96,109,102,109,70,100,83,95,95,116,105,94,86,90,102,102,105,108,99,90,115,106,94,103,94,98,107,99,97,104,100,108,99,113,101,99,101,93,108,102,110,104,107,97,106,95,102,107,101,101,83,106,113,107,105,94,91,111,100,98,93,112,96,112,110,104,101,95,103,89,101,92,102,96,102,101,94,99,107,111,103,108,105,94,107,100,106,109,107,95,104,104,120,103,109,107,103,102,109,113,108,108,98,104,98,109,86,98,107,107,110,108,114,109,101,107,114,99,101,133,105,104,116,108,110,111,108,113,109,117,106,113,99,96,107,103,119,105,115,104,102,107,106,109,113,101,106,111,107,120,101,103,98,100,110,111,99,92,105,101,98,88,98,108,90,106,98,99,97,97,102,91,99,110,101,106,98,119,97,110,109,113,98,117,104,114,110,102,97,88,103,112,99,107,100,113,104,110,101,104,94,113,101,105,106,100,107,101,109,108,100,94,103,108,91,90,105,105,99,97,103,103,119,92,113,103,111,111,86,121,107,110,105,107,99,99,104,105,109,102,97,99,110,97,102,111,94,104,109,95,100,113,113,108,108,105,112,98,113,101,104,109,93,105,106,102,102,107,101,99,116,106,100,111,111,99,103,113,110,99,117,97,88,100,104,102,107,87,104,108,102,107,91,103,99,109,113,99,112,106,108,107,102,109,111,109,106,125,104,113,111,100,96,97,105,105,98,96,102,122,95,111,108,108,96,104,103,98,105,112,101,101,110,109,90,94,96,97,109,98,94,107,112,105,106,100,102,102,102,102,108,109,86,109,98,113,95,100,90,101,105,95,102,100,102,106,101,102,113,106,102,116,109,95,91,104,118,108,113,92,103,106,99,115,95,105,111,132,105,123,102,107,104,97,107,92,103,102,124,101,106,101,94,100,102,111,113,123,102,112,111,108,97,105,100,113,108,96,95,99,106,102,91,113,97,105,123,112,116,115,99,106,111,101,112,107,96,103,103,106,109,99,95,98,107,108,101,99,113,104,97,102,109,105,85,105,103,106,100,98,109,108,92,110,105,104,110,99,103,116,102,100,101,84,105,123,111,98,97,111,91,92,112,102,92,98,100,100,87,112,110,100,105,101,102,96,105,106,96,99,98,93,94,93,104,104,107,108,128,107,116,113,123,103,100,106,88,106,110,105,100,96,99,106,108,105,111,89,102,100,101,98,97,114,102,112,110,94,108,103,98,98,102,108,109,108,87,100,101,106,102,100,101,108,105,92,97,101,103,103,96,93,103,101,112,103,107,107,109,104,103,99,97,98,100,101,100,94,104,107,96,116,95,104,102,108,112,102,109,105,107,106,101,106,115,113,104,96,102,106,102,102,103,113,102,100,89,99,99,100,110,93,89,105,92,101,110,107,110,99,119,100,110,110,109,101,104,105,99,97,98,106,90,103,108,111,115,96,68,88,106,102,102,109,108,105,81,120,115,104,99,100,81,98,99,101,97,107,92,98,111,104,104,109,89,89,106,108,96,119,99,99,88,112,106,97,95,102,104,105,98,102,97,100,112,99,101,111,94,99,105,105,94,100,94,112,102,87,99,95,100,109,98,108,102,109,98,111,110,106,111,111,115,104,105,95,108,103,96,99,107,97,98,100,105,99,121,106,104,99,108,104,108,102,104,102,94,107,104,104,101,103,100,103,96,98,101,88,106,108,99,106,98,92,82,104,112,107,106,105,104,103,102,92,98,113,117,103,104,103,112,106,99,106,99,92,104,100,106,97,108,105,116,106,109,95,107,102,101,99,90,122,101,92,98,112,106,112,107,101,107,107,112,105,95,97,105,97,113,110,106,96,106,97,102,108,98,94,107,113,94,102,111,101,103,85,100,99,99,101,106,118,101,94,100,90,105,100,101,95,107,104,103,112,103,116,104,108,99,104,103,100,89,100,100,108,110,107,108,87,90,108,100,110,105,93,91,106,113,102,106,97,98,98,113,109,100,122,99,108,106,104,104,102,97,101,103,109,106,99,104,91,97,115,105,113,99,95,106,101,106,101,93,117,112,102,105,108,110,99,100,104,101,113,90,93,114,99,99,100,114,105,98,103,101,98,111,104,98,102,102,109,103,105,112,104,94,96,96,100,100,87,100,110,99,96,115,91,107,130,102,100,98,105,98,94,99,111,96,109,113,102,102,111,99,98,102,102,95,104,99,104,90,91,103,98,111,106,105,112,100,102,100,90,99,100,96,100,109,102,98,112,92,101,105,114,103,116,93,110,111,104,110,103,115,100,113,91,88,100,108,87,132,93,104,91,104,99,106,107,97,82,112,114,105,111,102,98,103,87,104,93,107,104,99,97,113,85,103,109,113,105,86,102,101,88,99,93,100,101,96,117,113,103,108,101,100,91,98,110,109,99,106,107,107,104,117,96,98,109,102,110,106,106,113,103,98,90,100,111,87,109,106,113,101,103,98,120,71,102,102,103,99,91,106,103,89,105,115,121,106,104,93,99,117,105,100,103,131,103,106,105,104,109,102,112,109,105,93,107,109,117,106,97,127,99,92,100,113,107,111,100,93,110,105,101,116,99,99,101,90,94,124,105,106,105,105,112,98,111,102,109,95,111,108,94,95,113,100,91,93,104,110,103,83,105,91,104,112,104,110,102,110,87,119,76,108,105,99,97,110,102,106,98,109,104,93, +500.87756,100,94,98,109,110,113,101,100,94,104,94,103,108,107,98,112,105,98,114,109,96,104,93,109,102,105,104,104,100,98,104,97,107,85,113,98,99,103,107,89,97,106,97,97,97,108,102,97,102,101,101,104,117,106,103,90,103,101,99,109,100,93,91,101,115,106,96,103,94,112,112,120,112,105,102,98,106,104,100,93,98,104,112,98,102,97,89,105,97,111,111,102,97,122,115,112,104,105,117,94,99,114,110,102,98,98,94,115,104,107,101,101,109,106,103,109,99,103,100,95,97,103,98,106,101,106,104,101,127,108,101,98,103,105,109,95,106,116,108,86,99,114,89,91,106,102,114,102,93,101,108,110,96,73,103,114,96,78,103,111,98,91,104,112,101,96,103,100,97,101,99,99,106,99,113,101,104,102,108,96,102,90,102,104,98,95,95,97,110,108,101,105,106,101,100,105,107,106,90,102,100,100,104,105,96,105,100,117,105,109,103,129,112,111,111,128,109,108,102,108,120,105,108,113,99,100,109,104,102,95,115,114,101,103,95,105,103,113,105,87,105,100,101,109,102,100,92,103,92,110,106,100,103,102,92,106,106,105,99,108,105,107,102,102,93,108,99,95,112,88,94,96,109,99,110,96,106,118,109,104,101,105,101,94,105,101,100,90,106,95,105,104,111,108,120,108,100,98,98,99,101,91,101,92,113,103,98,92,99,105,92,101,92,90,98,101,111,100,99,117,101,99,103,104,103,107,99,98,107,95,111,109,100,95,107,110,98,104,96,116,105,94,100,105,97,110,120,111,115,102,103,101,103,108,99,104,110,104,102,112,106,90,107,107,95,102,100,110,114,101,107,93,104,102,101,91,76,110,83,102,105,109,106,98,100,100,95,91,104,102,111,95,98,98,106,116,104,94,104,110,95,103,117,113,107,100,90,101,102,104,117,112,98,98,101,90,93,108,109,103,109,111,100,105,99,107,104,99,101,104,96,120,113,85,97,113,100,101,110,96,102,102,111,102,103,97,113,100,100,104,110,100,93,108,104,94,113,113,105,110,97,106,107,106,105,113,98,102,107,114,106,102,97,113,109,99,103,122,101,110,98,103,108,106,112,113,86,96,111,106,101,110,104,99,97,100,102,103,123,102,105,108,98,101,111,112,114,114,99,106,99,108,108,81,96,102,98,116,103,101,102,96,116,108,101,104,104,98,114,101,96,101,104,108,108,101,110,97,101,99,99,100,110,94,111,100,109,107,101,108,95,100,109,105,91,103,110,105,96,94,109,120,96,101,97,96,93,97,104,97,108,102,106,104,106,95,111,101,109,102,105,101,73,94,95,100,99,93,100,95,70,104,102,99,111,109,100,113,103,101,100,106,100,98,103,103,105,87,105,98,103,101,97,111,99,94,100,82,97,105,95,116,105,101,102,114,108,103,105,95,109,95,93,102,110,101,110,100,96,109,108,102,109,103,100,89,96,118,119,113,100,107,99,111,112,100,112,108,103,113,101,101,89,103,103,115,105,107,109,101,102,90,92,94,88,113,109,104,108,109,105,103,111,93,122,117,89,112,100,96,103,118,107,102,107,104,100,106,103,91,96,96,103,108,110,93,105,108,116,104,102,105,102,106,110,103,98,103,112,99,98,103,100,99,100,103,101,105,104,109,107,102,100,103,91,116,107,95,120,99,114,96,100,99,114,99,102,90,91,97,108,104,110,106,110,95,100,99,102,119,103,106,96,100,103,107,87,109,107,98,104,79,102,96,86,121,82,115,101,92,135,115,99,109,110,112,96,101,110,107,112,102,97,101,99,108,96,104,96,112,116,105,90,97,126,101,105,112,109,113,91,106,101,110,106,102,89,97,105,108,102,109,94,100,102,113,108,100,104,107,108,98,106,113,98,107,96,103,111,106,83,107,101,109,103,99,97,96,98,100,96,112,92,104,113,105,103,109,92,104,100,97,116,93,97,107,102,111,125,96,101,108,91,101,97,110,112,91,106,112,101,116,108,103,104,95,82,109,104,99,109,104,108,111,114,95,117,110,105,98,98,104,96,105,95,101,92,111,100,105,98,102,104,101,84,98,108,109,115,101,104,115,98,116,105,110,108,94,101,109,103,103,99,103,103,103,97,112,99,102,104,104,113,95,96,99,109,99,109,96,109,103,104,104,117,108,100,92,101,101,115,104,103,97,104,79,96,98,111,114,98,95,108,95,105,107,85,99,104,103,103,108,104,98,100,129,76,88,100,105,102,115,99,109,100,110,99,102,105,109,110,89,104,97,90,89,117,116,87,94,101,107,102,107,96,104,108,106,102,98,103,98,95,82,95,102,100,101,102,111,85,101,107,102,111,92,89,104,105,112,97,105,115,87,95,93,99,111,95,106,105,94,107,99,83,102,100,111,80,108,94,93,109,109,101,106,104,110,106,111,92,99,116,109,106,99,92,102,106,101,108,104,96,109,95,98,102,104,121,112,110,114,129,95,103,97,112,121,105,113,90,108,105,111,98,102,113,97,115,104,79,125,110,102,112,93,109,87,97,114,117,92,105,109,108,101,101,107,106,105,104,85,91,83,111,123,105,102,105,118,107,108,103,114,96,102,109,112,116,85,112,102,113,106,101,106,117,101,125,100,95,110,102,100,108,103,115,82,105,92,98,107,98,107,105,93,104,90,107,105,119,95,118,101,98,107,110,99,110,103,108,106,101,106,92,120,99,92,107,97,99,111,109,103,106,106,114,121,107,104,104,100,97,103,103,109,99,101,109,95,124,100,100,109,105,96,76,95,119,97,110,99,93,103,113,106,115,98,107,97,110,112,121,95,97,101,106,103,114,103,115,102,106,115,102,112,94,102,109,106,114,110,91,96,112,100,109,109,98,113,95,107,100,109,110,98,95,109,107,107,119,103,95,113,112,112,110,85,99,106,98,109,88,101,91,110,110,97,107,108,103,104,99,104,102,113,95,113,110,99,112,109,101,101,102,103,102,109,112,114,93,117,108,108,101,99,109,108,108,106,103,95,115,106,105,110,111,103,96,96,102,106,99,111,101,112,101,95,115,104,90,100,95,97,95,105,107,91,95,105,92,113,108,109,118,100,106,107,103,107,115,106,112,113,114,101,107,116,104,97,101,97,111,92,112,107,91,109,93,115,106,95,96,100,112,119,104,117,97,114,113,117,89,109,111,105,104,104,115,99,100,105,105,81,100,117,103,99,101,98,103,123,104,111,103,110,105,116,114,109,104,71,108,114,100,99,96,117,101,105,104,97,109,101,100,116,103,99,107,107,100,101,97,95,103,112,107,101,108,105,108,107,98,109,102,97,108,96,105,90,101,103,115,105,110,100,101,109,103,109,105,102,97,103,93,99,93,105,94,90,104,107,103,103,103,110,98,96,120,108,110,106,119,106,105,99,102,106,93,103,102,104,98,102,102,98,103,105,91,96,105,101,102,104,99,102,112,106,111,104,100,111,105,97,101,91,72,105,111,104,105,106,99,80,107,110,81,97,104,99,98,94,95,96,112,97,112,122,99,101,108,89,108,100,104,71,105,110,94,97,98,102,111,98,101,97,94,103,97,101,101,92,98,102,104,102,119,103,104,96,101,103,107,102,95,100,102,99,108,101,100,107,105,103,100,115,100,101,97,106,106,115,112,121,97,95,107,108,101,95,102,106,102,97,99,103,95,103,111,98,92,100,112,106,106,99,95,105,110,97,99,105,99,94,103,88,102,97,103,100,106,100,97,98,98,109,103,106,117,100,99,99,103,102,99,94,95,116,111,99,109,115,111,113,103,109,95,110,102,111,111,103,107,102,109,102,95,95,99,114,87,115,101,103,102,111,105,96,88,96,104,100,107,97,103,102,95,99,102,108,95,100,104,87,109,105,123,92,100,105,107,101,97,107,104,108,105,104,116,102,111,112,95,94,98,106,117,106,107,105,104,111,98,96,104,95,104,103,93,105,99,110,103,105,109,104,100,101,101,105,99,108,104,113,113,91,103,94,106,100,108,97,110,103,101,110,108,108,102,112,108,105,107,112,111,111,114,94,106,99,109,101,110,77,90,102,103,103,99,101,107,111,102,110,107,100,90,114,98,109,108,108,108,106,111,104,108,109,105,108,102,102,114,99,104,97,80,84,100,105,106,98,106,112,100,106,101,103,91,102,113,108,109,102,104,98,99,103,111,123,99,111,110,111,99,103,130,105,101,115,104,120,89,113,96,102,99,114,92,98,103,119,106,102,99,114,109,95,103,95,91,102,107,108,99,97,111,104,107,106,96,109,123,95,105,97,105,102,101,105,105,96,117,99,92,100,103,94,104,106,102,95,97,107,117,91,105,122,115,99,119,99,103,101,96,103,113,95,100,104,113,108,103,105,121,122,103,111,102,106,102,104,109,96,112,95,64,111,93,110,113,99,99,111,95,79,100,92,99,112,105,100,99,100,103,96,100,96,113,99,101,103,105,91,110,108,95,93,112,119,99,93,114,109,114,103,105,88,87,67,100,95,98,105,92,102,98,100,110,102,104,101,103,92,105,123,87,103,113,106,107,119,102,102,113,100,107,106,95,102,98,100,98,103,110,113,100,106,104,102,95,94,105,100,107,95,96,102,101,94,109,110,105,98,97,108,111,102,105,99,102,102,106,109,97,99,105,112,105,99,95,98,98,109,98,113,120,110,93,87,94,95,100,112,112,90,105,89,91,102,121,87,117,107,96,95,106,99,100,111,111,110,104,108,105,100,102,107,96,99,104,106,121,112,99,106,109,110,99,90,107,100,115,102,96,102,93,117,91,92,109,90,99,106,116,92,95,101,93,100,104,111,97,89,95,83,105,89,110,94,103,102,102,106,100,92,93,117,111,103,102,92,100,99,92,107,99,113,113,95, +501.01819,106,110,109,105,104,107,112,103,108,95,102,108,102,103,110,92,113,104,117,109,107,103,102,99,110,105,124,96,102,102,109,95,99,106,106,102,113,83,93,100,108,115,116,101,108,115,107,102,101,107,121,106,110,93,90,95,95,87,112,98,93,101,108,102,102,96,100,102,86,94,105,120,100,101,102,108,107,104,118,110,107,108,103,104,108,92,107,118,108,87,105,110,99,112,101,95,103,98,92,108,94,107,98,107,98,109,89,104,106,114,105,102,107,119,95,105,109,112,102,92,109,104,114,108,108,116,102,104,103,105,102,109,113,116,102,99,106,79,113,108,98,109,105,94,104,99,100,107,107,108,107,115,108,93,103,98,103,98,101,103,110,108,109,112,115,107,109,109,113,95,114,107,104,91,100,100,109,109,105,111,112,111,114,106,113,101,94,104,100,113,112,101,100,115,110,108,108,107,96,116,108,103,99,102,96,108,104,117,115,91,106,102,107,102,114,90,119,106,109,88,105,102,93,110,94,116,109,101,110,111,96,115,106,103,104,95,103,111,116,96,108,102,113,106,101,92,97,112,104,105,94,90,98,109,115,113,107,111,96,103,104,119,103,108,103,105,113,97,104,109,114,98,100,99,107,107,95,102,94,110,112,114,107,104,107,124,95,118,104,102,103,110,116,103,114,96,109,108,100,101,112,79,110,121,94,104,116,105,108,109,86,109,116,106,103,91,99,100,98,97,95,102,114,110,112,107,115,89,113,124,114,101,101,120,106,110,105,118,103,112,106,109,105,91,109,90,109,105,106,114,117,113,109,103,110,110,109,117,94,102,103,102,107,101,97,111,118,94,95,102,108,104,79,108,101,115,113,105,98,98,115,112,92,91,111,94,109,112,95,106,105,97,103,107,100,109,95,106,98,113,109,113,98,95,115,108,92,112,106,99,100,98,94,112,105,103,109,103,117,100,104,94,106,103,96,91,103,95,109,120,111,99,106,105,108,96,100,103,107,105,107,101,108,109,95,100,122,81,111,103,106,112,102,111,130,102,110,106,111,107,126,104,100,107,110,115,106,112,111,118,74,115,106,108,112,99,96,115,103,112,109,99,114,101,98,106,113,111,103,99,108,111,112,114,108,108,105,100,101,116,106,112,114,103,117,101,108,110,108,96,107,101,101,103,105,103,112,116,107,108,104,109,105,94,102,103,119,104,100,103,103,113,107,112,100,108,108,96,107,120,103,106,99,92,110,98,98,96,106,102,102,108,102,95,96,125,93,114,112,95,104,99,99,112,102,100,110,103,98,124,99,103,112,107,110,109,109,107,107,104,104,108,112,90,114,120,103,106,115,99,117,109,93,109,102,99,120,107,108,84,92,109,110,96,113,113,98,109,99,108,105,113,110,106,108,106,111,105,104,99,92,92,98,99,102,106,90,117,110,104,106,92,115,109,102,98,110,96,106,109,124,109,113,111,104,113,95,103,99,102,96,118,81,133,113,111,112,115,104,98,109,105,105,124,105,103,111,97,95,106,98,103,96,112,102,115,101,104,111,111,110,107,96,100,99,106,101,110,94,105,84,108,108,108,105,120,104,118,116,96,106,81,104,107,101,110,113,110,99,109,116,100,108,108,118,106,105,102,95,99,103,96,100,109,98,94,101,98,106,110,100,118,92,114,104,108,105,108,107,106,117,98,129,103,111,111,114,106,114,103,109,87,114,105,102,102,113,107,109,98,119,108,105,104,104,103,100,103,91,103,111,110,111,111,98,115,108,96,100,98,102,109,104,120,100,106,117,104,110,113,114,109,104,120,119,104,99,99,116,106,116,99,108,96,124,99,104,100,117,102,109,112,101,110,111,115,106,105,111,94,103,102,106,102,104,106,109,117,112,106,101,115,105,95,109,100,124,92,119,108,96,106,107,100,98,110,100,111,113,105,103,107,113,106,105,107,104,120,101,101,113,104,104,117,104,119,109,101,106,110,102,97,100,105,103,105,118,104,110,108,97,117,100,117,119,99,108,113,102,107,111,104,109,109,111,102,109,115,108,108,110,107,107,100,125,97,101,103,96,99,102,105,112,133,115,103,100,111,108,106,111,106,121,102,129,114,113,91,107,94,101,118,111,104,104,107,110,108,102,98,104,106,106,107,111,102,117,109,101,103,106,111,113,101,105,110,110,103,89,112,104,105,109,107,111,120,106,95,105,106,105,108,125,102,111,121,101,103,111,109,93,108,95,96,106,101,114,98,118,89,107,108,107,97,90,102,116,114,99,109,103,99,87,106,105,101,100,108,97,112,99,114,90,109,97,107,116,110,109,107,124,113,100,115,117,97,107,104,94,105,112,102,99,96,98,99,102,102,106,104,105,121,96,109,106,106,106,97,96,106,105,112,105,109,110,104,110,104,121,105,97,104,101,106,98,105,104,104,105,104,102,108,92,107,105,109,121,102,108,117,99,97,104,99,111,102,105,103,112,99,104,93,102,120,110,126,92,102,105,94,113,104,105,96,105,107,109,108,96,110,103,116,101,91,109,110,94,120,100,95,116,85,103,103,101,101,105,108,116,100,105,101,111,102,93,91,113,98,102,90,96,96,104,102,111,99,106,105,110,107,105,115,102,105,93,98,110,106,100,109,102,103,112,103,107,104,104,95,113,91,98,95,102,102,108,112,138,102,106,105,107,112,95,102,94,108,111,111,116,104,97,99,100,96,104,109,98,102,100,102,83,117,124,105,106,109,109,116,104,99,96,105,95,104,112,88,95,101,112,118,114,107,107,106,93,102,98,107,105,84,110,105,107,113,110,104,112,102,102,118,105,104,99,88,107,98,101,101,111,104,113,117,100,101,83,109,105,110,106,109,103,98,103,98,97,115,100,104,93,128,112,98,107,99,101,103,109,105,109,102,105,106,108,112,98,105,112,96,115,102,86,113,104,100,105,76,106,113,99,113,87,116,91,115,101,102,123,112,106,114,107,108,106,109,104,113,104,103,105,99,106,103,99,111,105,105,108,106,101,100,117,109,105,111,100,106,94,101,106,101,106,115,106,99,103,100,103,80,99,107,96,113,105,100,98,103,97,103,108,100,94,93,102,99,113,95,104,100,106,97,99,108,107,99,97,102,91,87,112,110,94,87,110,112,107,99,108,102,100,106,97,95,95,107,102,103,98,103,96,105,122,98,87,124,102,112,105,99,120,98,105,104,95,75,77,89,99,74,106,97,104,94,101,97,98,101,96,105,112,104,106,102,106,105,100,98,102,105,99,99,100,105,104,99,102,119,102,112,111,101,106,103,106,103,104,76,99,94,109,106,113,108,110,90,101,89,100,98,106,100,106,109,104,98,106,109,99,102,102,112,98,111,105,99,105,105,92,102,101,97,107,115,109,98,98,108,102,102,103,101,95,95,110,100,101,103,103,103,106,109,98,103,104,113,110,102,106,105,96,106,102,104,106,98,98,96,84,96,100,104,104,123,96,90,104,113,89,95,107,108,93,104,98,103,100,99,98,105,101,87,102,102,104,109,99,107,107,95,95,104,102,104,104,104,129,105,96,93,102,113,101,98,95,111,99,113,97,105,98,95,100,104,101,107,92,103,112,112,99,98,98,103,104,104,80,90,106,108,101,102,93,103,107,102,95,98,88,102,104,108,101,107,109,99,99,95,90,107,105,103,103,116,111,97,98,94,105,112,103,93,90,105,117,113,105,109,100,95,107,87,98,101,102,100,101,98,99,102,95,92,99,87,107,116,102,99,110,103,108,103,101,109,104,89,111,94,103,95,109,107,89,119,92,102,105,102,103,118,115,109,112,100,110,117,97,98,102,88,103,109,105,101,96,93,96,109,106,105,103,101,102,95,103,103,98,91,99,107,114,109,105,110,98,111,100,98,104,99,98,95,108,94,111,85,102,97,98,90,98,107,105,103,113,105,116,106,105,102,102,98,101,103,101,99,106,101,109,101,105,103,106,121,108,106,105,95,103,104,100,105,105,97,88,106,111,89,102,98,95,98,118,112,70,104,104,103,108,87,106,100,103,93,96,91,106,115,100,102,107,99,110,101,97,110,103,105,100,123,102,91,108,100,99,111,105,108,90,109,98,101,99,111,95,112,110,120,91,104,108,99,103,93,98,93,103,98,99,91,107,104,93,96,88,97,106,102,107,104,95,99,117,91,102,107,100,98,101,112,97,110,105,103,107,95,98,102,101,104,107,107,101,92,107,106,107,104,98,96,98,72,103,99,99,98,111,92,109,91,116,109,114,91,108,101,98,104,109,98,99,106,104,108,102,91,74,101,107,108,95,109,99,98,107,103,108,101,109,103,99,106,109,109,113,118,103,97,103,104,106,106,93,98,108,98,101,103,104,105,91,91,100,106,101,102,107,107,104,112,105,94,98,95,102,115,99,105,91,100,103,94,109,99,110,98,95,107,102,108,117,101,106,102,97,106,109,117,103,105,110,109,99,100,96,82,103,106,97,109,102,101,96,102,86,118,91,104,106,98,95,101,99,95,108,110,93,100,87,112,81,109,97,100,107,109,93,109,99,100,103,105,99,107,117,104,93,112,105,105,101,99,100,102,123,106,101,93,93,103,101,109,94,108,95,116,89,91,108,97,105,116,109,108,98,102,106,91,103,112,123,95,102,101,109,113,101,99,105,92,111,113,95,97,102,103,97,112,106,107,93,107,104,102,94,95,102,98,107,97,104,95,103,104,105,90,96,95,88,106,103,109,86,103,109,104,102,98,102,110,103,91,95,124,115,113,94,99,102,104,112,87,101,91,97,108,109,119,103,109,112,105,98,87,112,103,95,76,106,106,95,111,75,98,96,95,107,95,104,95,85,142,111,104,115,102,95,106,76,104,103,91,88,107,107,92,95,98,106,106,113,114, +501.15881,90,104,93,100,84,116,100,107,119,105,91,82,104,82,94,95,95,111,103,96,113,101,102,104,115,108,113,94,108,117,101,114,92,99,109,103,108,99,102,93,91,115,115,113,110,95,125,117,112,97,109,98,102,96,105,92,118,99,99,98,108,113,118,104,100,102,95,111,110,111,106,119,97,107,102,109,100,105,108,99,103,94,90,100,104,99,112,121,118,108,102,113,110,110,99,100,86,103,99,106,96,97,97,128,133,101,101,108,112,103,102,112,113,99,102,104,113,100,92,96,96,103,100,99,90,113,105,93,108,99,100,108,92,92,112,92,100,104,107,105,96,115,94,103,89,101,102,93,84,100,95,100,114,86,106,105,103,94,96,108,110,101,81,111,109,103,112,105,105,104,103,117,113,104,102,103,96,106,111,109,114,105,84,98,90,94,101,87,113,99,103,105,99,109,92,101,100,108,105,100,100,105,101,101,110,114,103,103,108,124,109,96,114,118,103,98,114,112,101,106,90,99,114,105,104,116,111,100,110,110,101,102,109,106,102,103,102,118,105,107,101,113,107,112,96,102,108,106,99,95,119,102,103,111,104,112,98,114,103,110,114,96,104,138,91,108,103,114,98,112,100,103,99,122,112,99,109,94,90,92,104,112,109,105,117,104,112,111,99,103,105,107,103,100,114,105,111,94,113,103,108,100,100,86,113,117,110,119,90,104,88,106,106,106,106,105,105,100,105,112,108,74,99,117,100,91,108,105,106,104,102,106,106,97,112,98,103,100,103,110,111,108,109,118,113,107,105,115,102,125,105,112,79,112,99,105,97,105,110,106,112,111,103,98,110,90,109,111,104,99,109,101,103,90,108,104,96,109,101,82,107,108,98,117,107,110,105,104,108,104,106,98,98,95,101,108,107,103,101,114,111,100,98,104,112,121,102,102,118,87,106,91,108,107,103,71,71,105,106,109,112,100,113,91,109,107,98,105,92,100,108,105,105,99,102,104,114,109,111,98,115,104,108,113,109,118,103,106,109,100,98,111,109,97,107,95,105,138,112,105,111,108,113,116,97,109,100,108,110,105,102,91,95,105,94,100,95,106,105,106,102,105,102,98,99,95,104,106,99,94,116,99,111,105,94,106,91,104,106,107,109,112,104,116,97,105,91,93,99,102,105,109,106,99,104,105,113,102,102,102,119,104,119,105,99,112,112,116,105,104,99,94,105,97,77,108,101,106,102,123,91,102,91,110,98,105,101,98,99,107,98,106,108,102,87,108,99,106,99,101,99,107,119,107,126,103,109,106,115,103,95,109,108,113,119,104,104,113,112,91,103,108,104,105,100,110,120,99,105,121,106,98,105,104,79,121,98,102,112,110,108,99,104,110,111,94,97,107,103,91,106,108,100,104,113,102,106,103,100,100,103,98,118,98,109,116,95,107,101,100,96,109,99,102,103,92,96,105,100,96,80,107,112,98,109,100,101,98,81,111,99,105,100,106,101,109,107,90,117,113,111,81,105,98,119,107,109,91,111,113,111,104,114,110,105,117,103,100,102,103,107,112,101,98,102,103,107,102,96,109,115,101,109,115,115,99,109,101,99,108,103,105,94,102,111,110,105,117,79,111,107,110,113,93,94,96,107,109,108,123,112,104,108,103,99,105,100,100,107,106,117,101,118,109,110,113,114,97,112,96,103,100,104,96,112,104,102,102,109,101,112,113,105,100,103,95,110,110,125,115,107,106,101,120,100,115,99,111,110,102,130,101,106,110,94,107,116,109,109,105,110,114,99,102,101,110,104,105,134,101,100,122,98,99,117,112,101,112,116,103,109,101,99,107,103,87,102,104,108,108,111,107,103,101,103,91,101,103,110,91,99,109,115,102,109,108,116,102,96,103,107,105,116,109,122,109,103,107,115,106,100,102,93,104,102,111,95,107,103,101,99,104,109,101,101,100,108,106,100,106,100,106,109,103,114,104,103,102,99,100,106,114,110,103,104,106,104,108,111,113,115,96,104,122,100,105,104,108,121,109,107,103,102,117,103,102,110,109,109,109,94,105,104,110,107,102,96,110,109,97,109,109,110,107,103,112,106,117,99,106,93,101,107,125,105,94,94,109,101,97,103,110,103,106,104,107,108,115,110,106,96,103,102,98,106,116,108,107,100,79,104,112,101,108,113,103,113,104,102,109,110,101,111,105,115,105,106,103,93,99,104,109,109,103,105,99,98,96,94,110,104,113,108,96,121,105,105,104,95,111,103,106,97,102,98,104,105,98,87,105,113,104,105,107,120,104,113,97,103,94,101,105,104,112,109,109,108,108,98,109,114,101,108,102,105,97,102,110,113,86,99,102,110,124,111,86,112,111,102,91,115,115,97,98,106,104,103,106,89,95,109,96,111,96,99,110,99,117,101,98,89,109,105,105,88,96,101,89,111,83,94,95,110,101,104,106,97,111,96,100,85,100,104,109,120,113,114,98,110,111,113,121,110,109,117,101,99,123,117,100,103,110,112,98,104,102,102,95,106,109,105,116,106,106,110,107,94,108,115,104,110,109,99,107,104,91,99,113,114,98,100,115,98,101,105,101,102,99,110,97,113,108,105,110,116,108,123,111,112,98,106,107,109,107,108,102,113,96,90,99,101,114,105,108,112,111,124,89,115,106,110,114,110,100,100,106,124,107,100,105,99,105,111,119,106,106,120,110,117,108,101,103,99,108,100,106,100,113,112,115,120,140,111,101,116,101,105,101,109,110,114,115,108,92,111,110,104,105,109,103,102,106,105,112,104,105,101,109,104,91,95,104,107,113,112,106,106,119,103,111,107,107,103,108,110,106,108,112,103,106,112,111,103,111,100,96,105,100,100,118,103,139,105,109,111,101,106,110,111,105,113,99,111,110,112,94,105,115,96,103,114,110,118,103,109,102,105,96,121,113,98,105,100,107,92,108,104,87,107,99,100,101,104,112,98,110,122,113,110,116,124,101,104,109,116,128,103,109,103,100,107,102,91,108,106,97,108,102,120,112,108,109,94,114,110,104,111,112,95,109,109,110,110,108,110,97,120,94,105,104,138,109,104,107,116,96,104,103,106,106,95,116,99,104,114,100,106,105,104,104,102,102,110,120,94,84,113,117,109,112,98,98,107,108,104,104,95,101,101,100,110,105,100,104,106,95,106,94,98,106,134,121,105,102,125,92,104,103,113,102,114,104,110,104,106,94,96,102,114,102,114,97,105,109,103,105,96,95,105,107,99,107,103,117,98,105,108,105,115,106,102,97,108,114,103,108,101,96,107,102,109,99,101,111,98,116,105,97,109,96,104,109,98,100,110,100,105,108,106,92,108,99,105,102,95,106,114,117,102,105,89,107,113,105,108,107,115,91,110,94,116,101,107,98,99,104,106,112,98,100,98,108,113,98,98,121,104,108,98,96,99,106,66,100,117,101,100,113,97,97,102,105,109,110,106,97,101,99,101,99,112,112,101,102,101,106,111,123,108,111,120,113,98,107,117,99,105,108,100,108,109,107,104,109,102,108,112,110,106,102,105,112,99,135,98,112,102,103,104,107,104,108,112,97,98,111,107,108,113,108,106,105,101,109,107,104,109,101,105,110,87,105,106,101,113,113,103,106,101,122,123,129,107,106,100,106,106,101,103,107,106,102,108,116,106,109,95,110,107,105,109,103,105,98,100,103,112,110,115,103,116,102,107,103,102,121,103,105,100,98,99,100,108,107,120,102,106,98,108,107,104,95,109,98,107,110,113,100,107,88,103,106,110,107,98,107,108,107,114,105,96,108,104,108,103,103,121,111,109,123,108,115,99,105,109,110,107,108,95,134,103,115,107,97,96,99,113,105,106,108,105,112,99,95,102,106,91,102,112,89,105,103,103,99,102,106,106,107,109,116,107,98,105,94,105,105,107,102,103,84,110,109,109,101,101,107,97,100,110,111,91,90,114,100,113,100,109,107,100,105,101,108,87,104,102,99,105,92,95,106,99,113,99,106,108,107,105,97,102,111,84,109,117,105,94,102,126,104,107,107,102,107,94,103,98,119,102,100,121,110,103,109,113,92,87,104,101,108,109,118,102,98,120,111,100,102,99,112,70,100,91,98,116,110,112,106,94,95,113,110,97,93,108,104,103,103,116,103,109,108,105,99,100,94,110,79,109,111,107,104,105,102,102,99,117,107,109,108,106,108,105,102,114,103,104,106,104,77,106,93,105,98,111,103,108,96,107,109,120,105,108,104,118,109,105,114,106,123,112,102,103,97,118,111,112,100,112,96,111,113,98,113,112,113,102,108,90,110,99,118,116,111,99,106,101,102,95,102,113,102,117,99,107,102,106,103,119,88,105,111,97,94,108,109,91,108,115,100,96,110,94,112,95,103,99,125,110,108,104,102,99,95,101,105,95,107,99,101,111,99,112,113,84,88,105,105,111,100,106,111,97,109,101,111,106,110,103,98,106,117,97,105,113,97,107,88,104,98,101,111,112,104,105,112,98,106,109,113,98,98,91,107,103,102,110,117,113,93,108,117,100,83,110,101,113,71,102,95,133,109,112,103,109,99,94,96,108,113,103,106,113,102,104,103,114,102,104,93,95,118,108,105,106,102,105,105,107,115,102,103,109,119,99,102,104,101,111,104,145,115,98,101,102,108,105,104,91,107,106,93,107,99,104,104,102,96,107,102,104,102,100,103,109,102,102,113,108,106,91,100,105,95,100,118,110,121,87,95,106,104,102,102,110,103,107,101,99,94,100,105,102,103,112,95,112,101,98,98,100,104,103,98,108,95,99,98,97,100,110,82,104,103,106,102,105,110,100,106,98,99,94,102,99,100,100,112,97,105,111,93,116,104,97,98,105,97,95,110,116,95,85,91,100,100,108,118,114,83,123,90, +501.29947,73,100,98,98,69,114,123,83,110,105,98,103,103,99,112,97,103,108,107,99,124,90,96,109,90,101,107,99,93,101,102,112,92,102,124,95,97,102,96,106,94,90,109,97,105,91,102,101,105,108,78,97,102,103,102,77,106,108,105,85,107,108,113,91,110,98,96,108,93,101,113,104,98,95,110,111,100,100,103,94,104,95,102,107,99,102,102,100,114,110,109,110,108,95,101,95,104,97,92,99,93,90,100,106,100,98,97,108,113,97,104,98,102,99,106,109,88,105,117,94,120,99,109,101,109,112,112,99,106,111,98,105,99,97,101,105,103,99,112,110,95,106,91,103,95,105,90,109,101,96,95,106,115,97,91,100,98,99,113,103,92,97,111,100,108,104,136,108,105,110,101,100,96,122,112,104,98,90,114,102,111,89,93,106,101,94,79,89,104,103,108,109,92,99,99,91,99,102,112,99,111,99,94,104,106,100,120,103,114,109,100,122,97,98,101,112,101,104,96,98,102,92,103,103,102,119,107,100,121,108,96,106,105,103,111,105,92,100,104,100,98,100,101,106,93,105,122,98,98,113,96,110,109,96,99,117,103,105,101,112,91,100,105,100,97,105,114,107,104,94,109,105,105,88,108,95,98,109,101,108,94,93,98,112,107,111,95,101,113,102,102,98,101,108,121,105,113,106,95,105,107,104,95,108,107,101,101,107,96,106,101,105,101,106,105,86,90,107,112,99,102,110,105,117,110,97,99,94,107,103,109,96,108,99,111,104,98,117,100,106,92,99,109,105,111,92,106,117,118,111,108,96,105,107,105,105,108,109,101,118,103,97,96,105,108,100,96,104,101,105,99,106,115,106,102,94,109,112,90,100,123,106,87,109,95,112,98,106,100,98,103,99,107,99,104,87,97,102,99,104,109,116,100,114,113,100,105,95,105,106,100,96,101,101,109,113,108,109,93,94,93,109,117,94,108,89,108,110,113,109,94,94,91,116,104,107,103,105,100,104,109,85,104,105,108,104,104,95,104,109,111,102,104,100,102,91,97,107,97,103,98,106,106,104,104,112,99,102,110,108,118,106,102,99,105,106,113,106,102,111,100,112,114,69,96,95,103,104,95,100,116,87,105,112,98,67,97,101,106,111,102,107,99,103,106,116,99,104,111,97,111,98,100,122,101,88,100,103,104,107,100,109,109,94,101,103,117,95,100,102,100,112,101,105,110,105,98,106,102,106,123,98,104,96,97,103,99,106,108,109,110,106,109,101,109,98,117,97,99,91,82,109,113,101,99,97,108,99,98,97,101,94,107,99,109,101,91,105,100,114,110,115,111,116,88,114,104,106,110,102,109,120,100,111,120,102,105,108,95,103,89,105,101,84,109,103,107,108,106,110,106,96,109,102,103,91,105,104,112,100,113,105,95,101,109,108,87,114,107,103,91,99,97,98,100,100,94,103,106,99,109,97,94,106,116,96,100,109,106,113,97,100,95,104,104,108,106,110,104,100,111,116,100,92,100,106,99,107,102,108,107,109,95,81,100,107,104,98,102,99,97,87,112,103,108,98,96,104,108,104,109,118,113,102,113,103,106,106,95,101,92,108,101,110,96,107,108,119,96,104,103,99,114,108,101,108,96,98,113,103,97,87,130,111,95,103,93,112,109,106,96,106,90,100,106,104,107,107,102,95,66,113,101,115,113,109,111,114,96,96,105,100,108,99,112,111,106,109,103,104,94,95,89,102,103,107,98,107,113,105,102,100,111,105,104,115,95,101,110,104,110,105,104,103,94,103,105,103,97,124,112,92,109,106,100,114,107,108,95,78,97,99,109,111,108,105,101,101,100,113,108,95,101,83,112,104,113,110,107,74,104,113,99,102,97,103,111,98,100,108,108,116,100,100,105,102,98,104,103,107,90,93,112,102,111,105,97,87,108,97,73,110,107,98,98,94,102,95,102,102,103,108,108,99,101,94,99,104,107,94,102,107,102,116,95,100,77,82,102,103,111,107,109,107,103,90,102,110,99,113,96,98,98,101,102,76,105,101,105,102,95,101,101,96,101,92,103,112,92,97,105,98,89,111,110,93,88,121,105,105,112,100,100,106,98,101,99,92,90,97,118,108,109,112,125,93,100,103,103,108,102,110,98,109,109,90,99,101,100,102,111,106,102,111,100,102,105,115,121,98,101,107,114,105,100,116,99,104,99,99,103,98,103,96,96,111,99,71,109,101,96,98,94,112,99,82,103,108,111,107,110,102,101,93,105,104,97,91,104,122,101,98,95,106,121,103,106,110,103,101,95,104,106,89,96,108,111,99,107,91,112,111,113,100,107,96,96,99,110,101,96,95,109,110,106,97,98,107,78,109,95,113,122,110,110,86,101,115,95,90,108,109,101,96,112,102,104,107,103,116,81,110,106,98,106,93,103,117,99,60,99,101,97,107,105,99,112,91,90,102,99,104,96,114,98,96,97,107,107,110,111,106,100,104,102,104,109,95,116,97,102,99,116,116,95,92,107,107,113,112,102,108,107,107,117,103,91,95,86,100,104,101,88,104,102,117,107,98,106,109,108,92,127,96,104,104,94,113,98,108,99,99,104,117,101,102,103,114,100,113,120,99,100,99,112,94,113,112,98,107,105,92,100,109,107,114,116,96,98,98,108,100,100,104,106,100,79,99,112,109,108,104,101,106,103,108,112,98,107,97,113,109,105,109,97,93,110,97,95,103,106,123,107,108,98,116,128,95,101,113,106,94,107,109,102,106,106,105,104,110,107,106,99,108,105,101,102,110,109,105,102,116,105,115,106,111,102,104,115,107,105,108,105,105,94,106,109,107,104,104,98,116,113,105,111,109,103,95,110,114,103,110,104,107,101,92,100,105,109,104,108,104,112,107,121,107,99,107,101,111,83,106,106,110,110,107,99,97,88,103,114,103,90,92,108,108,106,103,101,96,103,110,97,100,98,105,109,112,101,115,116,108,88,110,113,106,108,127,100,103,111,100,107,103,107,108,105,109,108,109,102,95,104,104,105,91,108,98,107,97,109,103,101,105,111,104,103,109,109,108,99,97,102,108,108,117,99,104,111,119,109,109,96,103,101,95,98,102,103,103,106,107,101,110,104,101,116,119,107,117,106,100,92,112,101,99,108,95,109,109,100,112,105,105,114,107,102,97,99,110,114,107,109,117,105,114,107,93,101,111,100,106,98,92,99,106,94,112,100,105,96,102,96,103,103,100,131,100,106,102,107,107,113,102,108,108,99,108,120,108,104,107,101,105,111,100,93,116,101,106,102,98,108,110,112,108,114,104,113,104,105,105,110,114,95,115,94,99,109,107,106,113,106,96,105,109,108,99,103,101,94,109,109,112,97,99,103,109,104,97,104,100,100,98,107,112,107,97,106,102,95,114,109,102,94,88,111,86,110,106,99,95,107,103,106,102,107,107,103,104,106,114,97,94,106,116,110,105,112,105,102,99,100,99,105,98,108,92,104,106,115,102,101,107,100,99,119,108,96,108,103,103,100,114,103,96,87,112,107,95,105,98,111,109,106,110,100,123,91,96,113,101,105,101,113,104,98,104,107,106,102,101,110,108,106,118,97,93,104,113,101,112,108,110,110,88,112,100,109,100,103,93,110,77,101,109,114,104,96,120,96,99,107,112,105,116,105,116,103,103,103,115,96,105,105,109,98,99,94,104,108,119,99,98,97,112,97,102,101,88,105,107,97,105,110,104,108,108,112,112,109,99,110,105,101,111,104,99,104,115,95,96,107,109,97,99,99,96,102,106,109,101,102,104,107,107,103,115,104,98,126,123,107,118,99,96,111,100,98,107,117,99,108,114,101,100,110,97,101,103,105,114,105,107,111,97,101,108,99,106,120,98,91,103,106,102,102,95,104,101,96,104,103,95,106,104,108,98,100,95,117,108,114,108,103,110,102,113,109,107,99,115,92,103,101,114,95,106,96,108,112,110,111,111,108,102,110,113,81,98,94,104,101,110,101,101,101,102,113,109,111,101,106,114,116,106,119,104,108,70,102,95,108,107,106,101,96,93,109,101,111,110,102,101,103,104,106,90,104,97,110,113,109,116,106,113,98,100,98,105,98,125,107,111,101,111,110,107,87,109,98,96,102,103,118,101,94,105,98,126,95,107,100,104,105,97,110,98,101,104,95,105,110,108,112,110,104,102,110,107,90,114,76,104,96,111,94,113,107,88,102,97,118,95,107,114,106,102,77,91,95,98,96,111,95,114,102,115,105,103,113,91,104,113,106,100,124,104,100,102,108,98,105,100,103,101,108,112,109,109,104,109,103,106,106,102,106,104,99,104,110,98,109,99,106,100,107,102,112,86,101,101,110,115,103,107,114,117,104,115,96,106,102,99,102,109,108,115,105,106,101,102,100,98,99,103,102,101,111,90,118,103,113,113,90,105,87,102,97,98,113,109,104,100,102,100,111,106,109,100,97,96,102,114,110,101,120,104,106,110,95,107,95,107,97,119,106,103,107,94,107,115,97,117,76,100,103,87,113,105,91,104,102,102,122,106,99,102,106,94,108,113,106,105,83,103,97,104,106,110,69,93,108,106,115,95,94,109,95,104,102,106,109,116,105,124,105,105,108,94,104,104,104,87,107,108,102,99,104,102,95,94,112,110,108,103,97,103,108,95,102,115,97,121,103,105,102,104,99,98,92,98,105,117,91,92,96,100,100,100,98,105,110,97,108,99,121,113,105,109,106,119,107,99,99,114,100,119,105,104,78,85,79,113,99,106,101,93,101,96,81,110,99,108,104,108,110,107,107,112,116,105,101,102,104,115,99,92,93,108,99,98,101,98,96,106,93,123,105,98,102,99,99,100,122,96,102,92,101,92,99,98,103,91,90,101,106,118,115,92, +501.44009,114,89,104,113,98,101,97,104,96,99,95,109,82,99,106,100,117,116,104,102,108,93,106,106,104,98,85,75,98,111,108,106,109,104,69,107,106,91,106,103,92,101,84,100,109,117,100,111,106,101,96,95,102,98,97,102,113,104,105,97,90,108,93,98,95,102,91,103,91,109,111,99,104,80,98,107,105,101,114,99,103,101,94,106,106,87,79,101,106,99,114,112,105,106,105,106,99,97,111,109,106,85,93,92,104,116,99,113,106,92,106,99,117,120,109,118,96,103,118,109,101,96,118,105,105,105,105,99,99,104,103,102,102,94,114,106,94,97,96,96,102,96,109,101,96,108,126,100,74,90,100,103,117,99,99,97,108,79,98,90,114,112,103,107,99,107,101,101,112,105,119,104,104,101,114,95,105,94,103,113,102,104,105,106,103,102,108,104,104,113,95,96,96,104,102,95,106,107,105,102,102,99,81,77,98,106,88,105,113,110,109,99,97,94,104,106,97,103,108,106,118,108,117,99,102,103,105,111,101,102,93,106,108,99,95,105,78,111,104,99,116,100,112,107,102,102,115,110,100,108,112,107,109,99,106,106,101,98,101,110,93,107,114,102,100,126,104,103,98,99,103,105,113,93,105,101,116,113,107,115,106,106,109,101,104,106,97,107,104,88,101,104,97,107,119,103,101,98,109,105,103,114,102,106,100,111,107,113,99,105,90,101,109,103,105,104,101,110,112,106,109,110,101,108,99,113,111,101,113,94,99,98,106,103,106,118,111,106,100,98,108,94,100,103,103,107,109,88,102,115,101,107,101,102,109,100,105,112,97,106,102,109,120,111,98,98,105,121,98,115,108,112,113,102,101,97,113,109,105,98,108,109,101,91,109,110,105,87,115,121,113,99,97,108,113,101,105,99,120,106,108,114,67,102,106,104,97,114,105,100,94,103,115,105,109,111,104,100,101,97,102,102,104,108,100,109,102,97,95,115,101,97,101,111,90,102,94,96,111,106,112,102,105,103,101,102,104,105,97,86,99,101,105,117,105,92,103,118,106,91,105,95,105,103,104,108,102,103,94,89,94,104,107,108,107,103,99,110,93,97,110,105,114,99,112,105,110,102,100,102,111,129,100,93,106,103,96,110,98,100,96,121,102,102,109,107,93,105,104,103,111,113,94,103,106,108,101,99,110,103,103,102,104,97,108,113,114,122,108,113,91,90,124,99,101,114,104,106,102,113,105,118,103,110,121,103,88,106,103,109,98,98,114,107,105,109,104,74,93,100,104,100,95,108,115,120,93,107,104,105,100,120,98,112,100,122,110,99,109,107,107,98,113,108,99,98,113,108,108,101,102,71,96,102,99,108,91,114,102,105,118,96,110,101,101,99,108,99,112,107,110,99,110,109,107,111,105,103,97,111,105,107,105,95,115,107,105,112,100,111,114,96,105,106,100,109,105,91,118,113,113,112,113,102,108,107,108,91,96,113,108,104,98,110,96,104,68,86,117,116,111,116,108,98,109,120,92,92,116,105,115,118,121,101,109,100,107,115,106,101,108,117,120,97,102,104,100,99,103,108,95,105,97,108,113,100,105,108,100,102,104,97,115,94,103,105,107,108,100,111,112,107,100,108,103,93,96,97,106,97,106,110,101,112,100,96,110,105,101,110,99,104,94,93,102,108,114,103,114,106,103,106,110,102,94,99,105,106,95,113,129,101,108,110,112,105,107,99,107,100,100,95,103,105,98,104,91,97,109,101,121,112,110,97,106,99,115,111,112,104,98,109,112,117,100,113,102,104,101,104,101,74,117,108,99,101,95,110,106,112,104,99,100,107,103,104,103,98,99,98,119,104,116,112,128,104,124,108,117,100,112,104,111,102,104,106,106,91,109,111,107,108,109,105,103,100,120,112,96,107,102,105,117,101,103,97,104,105,96,96,109,95,99,109,108,109,89,105,105,98,110,87,108,113,109,103,108,106,127,81,118,109,98,97,110,119,99,109,95,103,111,110,106,137,94,104,93,103,112,105,115,87,95,108,101,78,101,104,107,87,121,109,114,110,108,114,110,114,96,108,99,104,103,108,95,94,109,84,109,109,112,100,103,95,100,107,111,113,104,100,103,106,123,106,98,112,103,105,109,102,101,104,98,107,101,101,102,116,106,108,102,106,101,98,123,107,100,106,117,121,103,116,99,112,107,101,99,111,104,109,98,108,99,112,100,108,107,94,105,101,95,101,101,99,109,117,96,99,101,99,103,98,104,103,111,113,112,95,124,100,115,95,95,97,106,110,101,104,109,105,96,101,103,102,108,112,102,101,107,95,102,107,98,94,100,97,110,105,109,103,116,103,91,105,100,95,97,104,90,104,101,100,97,94,102,99,96,109,103,99,97,106,112,111,103,98,96,95,104,102,101,100,95,92,86,75,100,113,108,93,103,101,99,103,86,109,103,112,105,107,68,113,90,114,103,116,104,105,110,101,106,132,104,100,102,100,107,94,104,98,105,104,118,114,107,121,114,85,98,100,109,107,113,83,122,90,101,106,106,95,95,101,103,109,110,88,108,113,112,109,97,102,113,109,101,100,110,108,77,115,113,94,104,107,96,95,98,117,106,97,115,97,108,102,110,109,110,109,114,111,103,96,104,95,106,114,93,104,109,91,102,96,106,113,99,103,100,98,109,109,108,88,97,117,111,114,103,111,101,106,104,112,108,102,102,99,102,104,99,102,111,113,105,104,111,108,99,108,101,110,106,101,122,109,105,114,107,111,105,101,107,118,85,107,114,116,104,109,103,115,92,121,108,105,115,107,94,101,104,108,119,101,104,103,96,110,106,98,116,102,111,109,112,101,98,94,109,102,117,103,104,108,107,109,106,111,102,104,105,96,105,107,109,92,99,95,112,110,93,108,110,117,99,101,108,109,112,110,109,113,85,116,99,108,101,104,98,88,113,96,102,112,102,103,102,103,105,112,103,95,107,107,103,112,103,119,101,117,105,110,112,103,92,109,107,107,122,116,101,102,100,101,112,102,103,98,109,106,112,108,90,100,100,98,115,107,107,101,97,102,106,108,102,108,104,98,99,112,105,99,104,114,112,109,104,109,106,115,102,102,114,113,102,100,106,92,94,110,109,110,102,91,104,115,107,107,104,116,99,102,103,101,98,114,91,115,119,106,107,110,106,106,93,118,91,102,99,96,101,99,123,109,102,99,103,109,101,114,95,109,103,104,92,120,92,101,106,108,112,105,107,100,105,116,102,104,103,112,109,98,102,95,117,106,104,99,101,101,101,109,108,100,112,109,103,111,104,103,117,98,106,109,98,101,114,90,107,90,102,105,107,103,100,105,111,105,117,105,121,105,110,104,106,112,91,112,101,95,102,93,96,105,105,109,96,95,103,103,109,103,102,114,105,110,90,97,103,102,106,113,89,101,106,98,110,89,103,117,107,105,98,104,109,102,94,69,112,107,104,96,115,98,108,110,99,94,109,99,118,108,110,105,105,105,108,69,105,114,117,106,113,104,110,104,110,114,106,106,103,110,117,99,111,110,110,111,113,117,103,109,114,110,79,110,117,109,108,100,104,107,98,105,100,120,109,103,109,104,107,96,96,108,113,116,98,105,109,117,112,100,102,103,92,102,102,99,101,103,108,113,105,110,106,100,102,97,92,102,119,90,108,108,104,109,114,101,98,108,125,97,107,109,111,112,106,94,101,97,106,97,119,110,102,100,107,107,103,99,102,113,99,93,116,117,109,92,116,109,100,104,112,102,108,111,111,109,102,104,114,107,97,111,99,103,103,100,101,109,97,102,117,123,109,112,104,105,96,111,103,110,100,110,96,99,98,108,104,113,106,103,109,110,103,104,82,102,95,99,103,107,100,105,97,101,91,61,107,101,90,106,101,106,109,99,104,105,113,124,93,89,110,112,101,103,96,109,104,107,104,120,99,112,88,109,104,105,92,102,87,100,112,126,102,110,103,103,100,97,99,107,97,109,109,91,144,100,101,96,114,105,104,101,97,100,102,83,104,103,96,103,95,107,98,112,106,106,113,110,109,99,108,100,97,106,107,109,97,96,104,101,106,109,107,109,111,105,104,110,99,117,107,110,99,113,110,103,114,108,70,111,104,92,100,102,93,105,104,105,108,98,105,112,97,106,80,99,112,108,104,98,131,113,103,103,109,117,92,107,98,98,105,98,100,109,106,96,118,107,113,102,103,102,86,78,103,105,100,101,105,101,110,87,104,105,101,87,83,117,87,99,96,103,103,105,99,105,103,105,108,108,103,108,106,102,98,103,94,94,104,111,97,105,107,105,111,110,116,102,116,94,104,104,93,99,99,105,97,90,115,112,111,106,98,117,102,117,105,103,97,99,102,96,100,108,135,90,99,99,117,94,100,104,92,113,104,104,95,100,105,119,107,105,100,101,107,101,93,109,99,93,103,101,99,109,125,92,108,106,82,101,88,103,90,95,101,105,102,117,99,108,107,102,97,117,99,98,109,98,98,109,99,77,101,94,100,98,113,88,106,110,94,99,102,97,104,106,102,103,109,94,106,111,104,115,102,102,111,109,93,106,93,75,91,112,104,94,95,99,97,120,95,103,111,114,108,112,101,97,98,116,112,102,104,102,102,96,124,99,99,101,91,116,98,107,104,98,107,96,103,100,112,101,105,106,93,102,117,111,111,106,106,112,104,107,98,109,110,91,107,91,101,104,98,99,106,113,106,104,109,102,99,94,84,100,94,112,104,106,113,104,95,120,119,99,84,106,107,99,102,107,100,91,99,91,85,87,92,102,103,100,113,97,99,106,107,103,91,100,91,103,95,110,96,106,105,95,92,104,108,100,106,102,115,85,96,110,103,113,91,104,102,103,98,94,110,115,126,106,99,116, +501.58072,95,91,87,107,102,110,107,95,103,114,97,85,114,105,114,108,105,109,115,101,98,100,112,102,98,105,103,103,97,104,103,101,101,100,117,90,108,101,112,98,97,103,112,101,101,117,106,117,105,109,105,101,108,107,99,110,102,96,120,91,112,102,97,112,98,123,100,104,111,97,108,111,108,106,91,118,99,112,111,114,107,112,112,100,99,108,107,110,114,103,108,101,104,103,98,96,109,117,97,104,113,110,113,108,107,111,105,96,120,94,105,107,110,109,91,111,111,105,109,114,99,98,104,107,99,104,112,98,98,104,106,102,102,120,101,105,109,94,97,101,108,113,99,104,116,112,110,106,91,104,99,98,107,95,110,101,100,104,108,112,117,108,110,108,106,112,101,92,107,86,119,113,91,112,109,98,125,108,104,102,99,104,105,111,99,101,98,93,94,105,102,102,116,100,106,113,112,104,118,108,103,109,91,97,94,113,114,104,96,107,94,103,103,105,114,94,90,107,96,96,106,104,98,103,106,113,106,115,104,105,102,102,103,108,99,102,95,111,108,97,104,104,124,107,98,108,103,107,100,106,118,106,108,125,108,127,107,115,105,102,94,116,99,95,100,115,100,104,102,99,101,99,91,106,105,99,102,108,104,111,114,109,104,113,103,105,109,101,111,122,100,107,99,117,129,116,107,106,109,104,106,110,109,104,111,111,122,105,94,109,99,111,113,120,108,116,107,102,91,120,115,92,110,105,103,87,106,95,114,114,109,101,109,100,111,106,99,111,104,112,99,99,98,112,104,84,109,111,106,114,91,99,102,104,98,105,108,111,112,102,107,130,100,101,104,120,98,102,104,117,103,90,106,104,109,106,118,100,100,103,103,107,102,111,99,105,93,112,113,95,106,99,100,89,117,105,100,105,95,107,113,95,89,95,99,95,79,108,120,112,103,107,107,109,119,101,109,112,104,92,109,101,97,104,111,103,95,106,100,117,96,107,102,110,102,123,106,108,103,110,108,110,104,94,114,102,103,118,90,107,100,101,111,112,106,107,103,108,106,102,123,104,106,112,114,109,106,106,99,97,110,104,113,107,103,103,117,112,108,102,103,109,117,103,106,104,118,117,105,102,111,114,107,110,106,104,101,106,103,105,116,118,106,99,107,106,103,103,110,115,112,103,100,123,111,95,114,104,99,114,108,125,128,106,108,99,119,105,110,112,118,106,103,106,118,114,115,100,120,98,108,116,92,106,105,101,110,100,96,110,103,110,112,108,105,98,119,105,101,104,95,118,102,112,106,105,106,108,103,111,110,98,109,110,107,109,93,93,116,105,107,103,94,102,101,117,110,120,107,107,123,100,117,106,108,104,109,108,117,100,105,100,118,98,92,100,106,106,103,105,116,95,111,108,105,93,108,99,89,105,102,103,105,95,116,101,106,113,109,108,103,102,116,114,104,115,98,105,96,110,122,106,95,108,112,105,102,100,121,106,114,114,104,105,114,107,106,103,101,101,117,112,106,103,92,104,117,117,103,100,102,105,111,106,108,115,110,106,103,102,111,106,96,93,103,107,108,98,106,116,109,98,110,112,103,94,101,102,115,105,110,99,96,112,123,116,106,121,99,102,102,101,111,108,86,92,96,111,98,91,106,106,106,119,98,100,97,104,99,103,114,98,103,96,106,101,104,111,114,110,112,99,109,101,99,101,79,112,102,107,115,112,91,107,101,92,110,110,100,109,105,100,107,99,99,103,104,109,98,109,112,98,116,98,110,102,103,97,107,104,103,108,108,118,106,108,118,109,86,101,108,110,102,112,109,107,109,120,113,125,109,110,107,106,104,102,112,112,109,103,113,101,98,105,107,89,108,100,107,99,96,104,110,98,118,107,107,118,113,109,112,96,100,112,104,113,105,100,103,103,109,107,100,106,101,102,90,101,105,96,109,105,104,111,110,107,111,118,101,100,105,121,106,109,102,111,108,118,116,117,113,101,95,94,88,97,103,106,94,108,103,96,111,100,105,112,107,96,109,114,111,108,116,111,106,109,106,103,110,103,104,106,103,99,104,100,114,117,102,105,102,107,121,76,108,99,111,104,109,103,88,99,113,110,107,105,110,109,89,90,95,108,118,104,101,103,103,94,118,107,109,101,95,99,113,90,123,103,100,111,108,108,122,109,109,113,103,116,100,104,91,107,106,95,111,96,96,100,113,108,94,102,121,105,106,104,103,93,96,93,99,103,105,108,108,105,108,100,110,101,96,105,110,112,114,108,101,96,120,122,113,101,112,118,108,110,119,107,98,114,99,105,95,105,95,106,105,102,109,91,106,112,103,112,96,101,110,106,69,103,106,101,123,108,109,96,128,115,106,113,105,111,102,112,99,95,104,97,95,104,102,99,98,111,112,102,115,117,118,104,98,113,109,88,102,102,101,106,102,102,101,114,108,112,103,111,118,108,105,100,106,111,94,114,121,110,108,109,99,113,112,113,99,102,92,101,97,103,110,104,119,103,99,103,100,113,99,103,117,112,98,110,107,102,108,103,114,102,95,101,109,105,94,113,109,98,107,116,96,99,102,108,101,109,100,99,105,110,109,90,107,109,125,116,103,95,102,107,104,96,110,112,106,95,107,106,83,106,99,108,95,97,108,96,117,106,107,109,116,106,96,105,106,111,96,105,108,115,95,111,104,117,103,105,115,119,92,105,117,105,93,109,111,112,105,123,107,104,106,114,109,112,115,95,112,103,113,116,106,106,105,113,100,117,110,108,102,120,105,106,102,112,103,114,107,114,99,117,104,106,100,108,96,108,102,95,106,105,123,124,110,111,114,117,90,106,112,113,120,108,105,106,106,110,112,107,106,109,107,109,106,96,98,95,98,103,99,123,104,111,121,99,115,113,98,102,83,109,104,103,124,103,99,104,102,108,100,101,115,125,98,106,100,102,103,105,120,92,104,101,96,110,107,113,109,106,97,101,114,99,108,118,101,103,100,122,83,109,97,112,124,102,109,112,122,104,116,102,100,100,99,100,109,109,121,110,102,93,99,107,108,106,117,98,108,111,116,112,112,103,101,99,103,101,109,106,108,112,110,109,90,113,117,110,103,106,112,111,103,103,106,100,102,115,111,100,97,109,103,105,102,111,98,112,111,107,108,91,96,105,74,97,115,112,102,108,81,101,102,90,108,132,104,115,98,118,111,107,113,95,89,91,102,110,110,97,108,117,99,100,103,115,105,105,110,95,107,98,108,112,102,103,116,116,115,102,113,107,109,102,116,100,103,106,102,115,111,102,102,110,97,105,108,107,101,116,120,102,95,99,104,100,98,110,117,113,111,96,101,113,97,95,99,99,98,105,98,110,111,91,88,123,104,103,96,99,116,102,116,98,106,113,98,121,102,95,101,95,106,108,102,72,93,113,110,111,107,103,110,109,96,110,113,103,97,106,104,108,99,103,125,103,102,98,102,116,109,102,109,108,97,107,107,108,99,111,113,101,110,93,109,107,106,109,110,110,107,117,104,115,106,107,107,106,103,108,106,107,102,115,111,110,117,105,103,106,101,116,106,114,116,105,106,112,107,103,92,99,109,94,102,116,126,109,102,109,100,118,109,114,98,105,107,106,104,108,98,94,93,81,103,108,96,110,106,109,116,98,106,94,91,91,108,104,104,109,98,105,111,107,108,120,104,107,100,103,100,100,113,97,112,103,104,86,107,124,115,112,117,91,119,102,103,93,108,103,111,109,102,112,98,99,114,88,107,105,97,103,90,109,108,113,108,109,90,91,103,93,100,123,102,102,85,103,109,98,117,108,96,103,105,105,116,122,108,99,112,75,107,106,101,96,108,123,100,107,111,110,103,100,104,103,106,115,107,118,106,99,107,108,102,106,111,112,98,99,91,111,100,97,95,105,106,106,96,103,92,95,104,104,105,99,100,106,112,112,103,104,108,116,97,101,96,108,100,99,113,107,84,90,114,114,107,119,111,100,125,106,100,118,105,104,89,115,112,125,103,102,107,108,119,113,104,102,109,112,114,103,101,91,110,119,95,101,106,116,103,106,107,100,121,113,107,106,97,109,109,110,104,107,122,112,115,120,102,108,104,120,102,113,108,105,121,120,105,90,107,87,99,116,106,87,114,107,99,100,107,117,104,113,115,107,103,76,100,98,98,91,99,102,109,95,107,103,120,99,102,116,107,108,100,105,113,105,104,99,105,105,100,109,109,112,91,115,103,103,116,97,101,101,102,115,116,108,116,110,102,105,108,94,107,102,135,101,106,118,114,104,103,113,97,98,117,115,103,95,111,100,103,107,140,97,105,106,112,102,99,103,107,127,106,99,111,107,100,111,106,102,110,103,110,98,113,124,99,108,99,100,111,105,106,109,93,107,97,102,112,111,111,115,101,98,103,106,124,97,104,107,116,111,108,108,76,99,103,97,102,102,101,110,113,102,102,112,107,100,106,97,97,100,110,99,108,115,111,100,97,99,100,112,102,118,100,113,101,103,101,118,103,101,87,98,119,106,109,106,109,94,107,98,99,109,100,96,96,100,103,115,100,105,95,118,111,113,101,104,109,98,98,108,105,109,95,101,104,112,109,96,88,90,103,107,114,113,99,106,101,99,102,102,112,103,112,105,107,113,100,105,100,105,108,101,92,108,100,94,110,107,111,103,102,107,91,104,99,109,102,102,114,102,97,108,125,126,108,99,100,110,99,110,99,106,113,101,93,98,111,124,97,115,106,79,103,102,102,92,110,109,110,103,102,106,105,100,97,104,94,113,91,112,74,100,106,96,114,100,103,113,107,106,95,91,103,112,107,90,108,99,99,106,122,110,103,122,100,110,102,105,107,99,110,117,102,105,95,108,108,104,103,89,98,96,122,91,106,113,99,116,105,102, +501.72137,109,85,103,91,104,99,89,95,122,102,111,115,66,112,98,90,107,110,104,96,106,114,113,118,98,106,98,122,93,105,98,112,100,96,106,109,103,116,99,104,108,109,101,90,113,120,81,107,99,105,110,95,108,92,104,101,88,114,103,109,108,102,113,108,109,101,85,117,111,102,114,112,99,114,114,115,95,107,108,103,119,92,100,116,95,109,107,97,105,102,114,87,106,98,105,101,110,102,109,105,103,109,89,117,100,114,103,102,99,94,92,112,105,94,106,87,83,111,101,75,113,110,95,110,101,115,107,100,112,104,110,112,108,98,111,95,107,120,99,113,103,111,105,111,105,101,102,116,108,110,93,98,108,98,101,98,109,98,100,102,101,114,108,108,110,109,107,103,84,118,103,100,102,98,99,115,103,98,121,104,104,106,105,108,112,109,132,106,108,101,102,111,117,117,97,104,107,107,109,120,97,102,99,105,113,107,104,116,105,107,101,117,116,107,109,105,99,106,104,111,106,106,96,110,108,110,121,110,109,95,105,105,95,100,100,109,108,108,99,99,107,103,107,99,103,98,106,114,106,105,103,106,107,101,111,107,96,99,112,93,99,119,97,113,102,106,108,98,102,100,106,104,109,117,116,110,105,106,99,100,113,117,99,105,104,106,97,105,90,103,104,108,105,101,114,105,91,113,112,103,107,104,117,114,93,101,116,102,106,111,91,123,116,103,105,111,99,101,106,89,108,106,109,102,105,104,86,99,102,98,104,117,101,105,101,104,96,110,92,117,89,100,86,92,113,112,99,112,117,107,95,117,101,101,113,106,102,116,109,106,104,97,109,105,96,100,117,102,102,94,106,101,106,105,102,110,100,107,110,96,107,121,107,106,111,94,103,104,90,116,115,94,85,103,103,113,120,116,106,100,115,111,106,113,71,105,103,115,105,114,96,104,103,99,113,116,103,101,113,119,95,101,91,109,100,87,100,109,108,114,109,109,102,107,83,105,99,106,117,107,110,99,101,107,106,109,103,104,108,116,99,106,110,110,111,95,99,99,106,103,91,91,105,116,110,102,107,101,113,98,105,110,109,129,101,104,98,107,99,98,119,117,102,100,104,104,105,103,103,99,100,105,112,96,117,107,113,99,113,97,87,94,101,99,100,109,115,97,109,103,109,75,117,112,98,87,110,100,105,94,109,100,100,124,114,102,107,109,98,114,99,107,113,104,114,101,107,117,111,111,107,105,101,91,98,99,111,105,101,120,104,102,108,107,106,96,115,111,104,109,116,109,118,102,106,101,92,112,113,89,109,88,102,106,108,98,103,104,110,120,115,118,108,118,103,101,111,108,100,107,112,95,96,107,113,107,111,104,114,109,95,96,110,88,107,98,100,104,102,113,91,110,109,109,100,103,105,106,103,128,113,98,130,102,117,99,93,110,98,108,117,102,94,112,110,109,87,100,107,100,96,114,108,110,98,103,106,92,96,114,101,100,101,121,108,114,107,112,106,118,107,111,118,110,93,108,102,111,114,108,100,112,104,99,107,116,108,106,109,109,116,98,108,101,99,107,105,98,114,88,106,112,114,106,109,101,91,105,102,112,94,93,104,104,106,112,104,108,111,102,104,105,114,119,96,101,104,101,89,114,96,117,108,107,100,97,98,105,113,100,105,102,96,111,113,111,103,102,104,112,113,110,95,103,99,102,108,104,113,108,112,107,112,108,99,104,110,106,101,92,90,102,104,107,100,117,98,111,124,104,111,125,119,99,118,107,107,95,106,107,110,105,110,112,108,114,106,103,106,115,102,108,99,118,101,108,104,103,103,106,102,112,106,110,109,100,94,112,108,109,102,104,116,90,112,102,125,101,109,111,109,117,113,99,104,112,111,104,114,108,121,95,106,103,84,100,104,105,115,107,101,104,107,102,104,113,105,95,110,93,105,109,105,112,101,99,114,103,100,106,121,106,105,105,92,86,100,103,110,103,123,112,99,107,106,106,113,87,103,106,109,103,111,106,103,112,103,111,121,94,102,106,119,107,110,103,111,127,112,113,118,107,107,115,106,99,129,103,108,116,100,106,107,102,106,101,106,102,109,113,95,106,115,118,113,99,109,123,98,110,93,124,111,99,114,96,95,85,108,111,108,95,100,112,98,103,103,105,99,99,109,102,94,114,106,107,106,117,105,99,117,117,112,114,105,103,108,101,107,98,113,102,103,104,113,103,103,101,97,96,110,112,105,103,101,92,105,100,117,105,101,100,103,108,101,109,99,104,97,109,95,107,105,122,109,123,96,105,142,100,83,105,113,109,95,102,116,112,108,108,119,101,106,98,98,113,101,103,116,105,108,117,108,93,103,98,109,104,95,109,95,104,104,97,93,102,120,103,109,104,100,96,106,95,113,99,101,109,103,105,101,110,99,111,104,100,105,94,124,108,93,73,110,125,101,104,100,107,111,131,104,94,95,103,113,100,103,99,109,98,111,93,115,101,95,102,95,105,106,112,113,103,114,110,109,100,102,101,100,99,98,104,110,98,105,101,102,105,107,98,102,102,104,110,120,121,109,106,110,105,110,109,97,104,102,104,110,93,93,96,111,106,94,103,98,86,108,102,106,109,104,99,105,100,99,104,106,106,111,113,107,107,114,112,100,99,104,91,113,103,88,103,107,112,103,95,91,102,109,98,102,101,103,98,111,107,109,110,111,103,105,101,101,101,101,114,104,97,103,98,83,98,103,101,95,111,119,115,125,109,99,110,95,121,100,105,117,102,113,102,103,106,101,105,97,99,111,108,112,114,105,102,100,111,104,121,107,102,108,117,111,104,113,105,125,105,112,123,112,105,101,103,106,97,113,105,107,117,102,112,97,108,97,103,109,122,109,114,95,96,113,113,118,121,106,108,108,97,111,113,105,113,113,108,98,106,105,118,110,72,112,98,99,106,109,107,97,111,76,110,107,110,106,112,108,100,106,106,93,95,104,113,95,92,107,117,115,119,108,103,102,102,104,111,99,110,110,111,107,108,105,106,112,86,103,111,100,102,84,113,105,112,112,114,104,95,102,93,108,99,87,110,107,103,97,107,105,119,100,111,104,112,102,101,103,110,106,110,102,90,104,105,105,109,108,102,91,105,107,99,97,104,92,109,112,104,116,105,93,119,100,95,104,106,108,97,105,100,109,110,146,106,90,105,102,105,103,101,106,102,102,105,106,106,89,95,101,96,100,108,102,95,95,112,107,121,101,87,105,93,95,109,111,111,100,105,115,107,108,108,107,115,109,105,104,98,107,102,113,116,114,100,100,104,100,109,96,112,107,92,106,114,117,106,108,102,107,99,110,104,101,102,110,107,111,95,90,95,99,106,96,123,103,103,109,111,104,110,108,109,96,109,106,104,108,114,106,119,98,108,100,108,106,102,83,109,113,113,105,98,99,104,111,109,109,95,92,97,109,107,105,103,98,109,94,99,116,96,116,84,100,110,104,96,112,117,113,108,112,105,89,112,102,108,113,112,108,98,102,79,89,111,102,106,105,112,105,105,111,103,101,113,95,104,101,107,112,104,106,103,98,90,96,110,106,103,104,104,112,82,103,105,99,105,114,115,109,99,115,110,101,112,110,108,105,90,102,104,102,113,100,113,110,106,106,90,103,104,110,109,100,106,112,115,91,100,96,104,106,108,105,98,114,126,104,103,113,100,102,87,101,99,99,108,112,112,113,96,97,98,99,99,113,107,106,104,99,120,114,101,108,108,120,92,103,104,87,119,99,106,100,106,95,100,102,105,103,89,97,110,113,114,87,117,99,96,100,108,99,105,116,110,103,101,113,115,103,102,112,106,105,105,109,101,107,93,105,117,96,82,109,112,101,99,104,105,105,108,103,103,102,98,98,96,114,103,107,108,103,91,96,95,91,98,91,99,107,102,105,100,87,103,94,104,97,105,105,119,112,110,104,106,94,107,104,115,109,95,99,102,111,109,102,107,112,98,89,113,114,108,96,111,97,98,116,98,98,99,100,106,108,100,107,93,99,105,105,98,101,96,107,107,95,98,109,96,102,106,114,115,100,105,99,93,96,114,107,105,107,103,104,98,101,102,103,109,98,101,104,105,104,108,105,108,106,102,103,116,105,106,70,105,98,109,103,107,112,106,115,102,105,107,101,99,98,121,112,96,105,104,99,100,117,107,103,111,113,110,120,101,97,103,109,103,106,105,104,98,98,106,79,130,109,107,106,106,102,96,108,101,98,99,111,99,97,98,98,102,109,112,105,94,103,94,106,99,103,109,116,109,110,127,110,106,107,109,90,105,102,114,100,105,112,105,99,92,101,100,98,108,101,108,93,67,117,96,102,97,106,99,98,100,106,109,110,100,106,103,93,108,103,112,100,101,95,105,99,96,101,101,101,95,103,113,98,104,94,109,108,96,121,117,115,109,104,102,107,104,97,96,86,96,107,98,99,105,112,98,77,99,111,105,114,113,107,111,91,99,94,104,91,117,101,113,108,96,112,96,107,100,93,85,111,104,105,102,106,89,98,101,112,120,108,99,120,109,111,109,107,96,98,109,110,104,100,103,93,102,106,109,102,79,107,108,112,109,109,89,107,118,94,97,98,106,101,107,112,105,100,104,119,101,128,106,100,98,105,112,116,99,105,98,101,101,95,88,101,91,103,113,96,98,116,106,107,102,99,103,99,103,93,113,102,113,92,97,103,100,96,94,104,96,80,108,93,102,104,105,99,92,101,95,82,100,101,104,103,98,98,103,100,100,97,104,105,107,104,105,114,106,97,97,123,96,102,101,97,105,88,95,96,106,102,105,102,102,96,101,103,104,96,102,85,95,86,107,68,90,99,100,97,104,98,101,88,96,116,96,102,88,108,93,94,111,101,102,99,108,101,96, +501.862,96,113,101,104,103,113,104,109,92,98,96,100,106,97,122,122,95,101,104,100,102,89,93,98,102,108,108,111,95,110,99,104,96,113,101,99,102,100,106,98,104,84,102,101,95,109,81,128,113,101,108,103,110,93,108,94,98,99,107,85,109,106,95,97,103,105,94,99,97,100,109,131,126,131,103,121,92,110,100,103,100,97,101,83,108,94,113,106,109,111,105,115,103,91,95,114,108,92,108,86,88,93,100,102,88,103,108,99,91,102,100,88,117,104,103,105,89,91,112,73,104,102,102,107,113,90,109,94,110,103,114,110,110,113,111,91,107,110,100,101,106,108,101,114,101,102,109,106,100,91,92,106,111,99,97,112,98,109,103,107,88,95,106,122,97,110,104,78,107,102,101,97,103,111,107,113,100,103,122,94,109,103,104,103,100,103,110,92,106,100,90,105,82,102,121,84,110,101,109,102,109,105,113,104,97,112,102,107,105,112,97,108,99,104,95,107,99,107,95,106,102,103,118,124,102,104,105,109,106,104,99,101,100,111,85,95,99,107,102,100,106,86,126,113,102,101,103,105,107,101,117,98,99,99,94,108,103,96,97,107,91,98,97,109,97,103,105,105,98,100,96,104,116,111,92,91,93,99,102,104,83,104,98,100,107,109,97,100,117,105,103,99,108,108,116,98,101,103,100,102,94,94,112,99,105,97,70,108,98,109,88,99,104,110,102,107,105,101,107,106,111,99,103,109,100,100,102,97,102,114,105,95,99,106,100,105,103,99,105,102,101,111,98,99,94,109,95,111,103,101,105,112,101,102,113,97,109,111,103,98,97,93,106,100,99,109,103,106,99,113,116,103,114,106,113,108,102,110,105,92,116,105,85,100,105,112,97,107,100,103,101,99,130,107,103,100,103,99,96,96,107,101,104,104,92,96,104,98,106,103,103,103,92,120,100,107,113,110,123,94,93,104,104,98,104,101,115,103,95,124,106,103,102,97,95,108,97,115,113,99,126,95,98,107,110,97,88,102,113,120,106,101,115,109,98,101,104,110,110,91,92,106,109,103,106,104,109,99,105,108,105,103,107,104,96,112,109,98,98,102,97,120,113,96,110,99,115,107,103,99,108,117,104,94,101,106,104,107,105,104,117,106,107,100,108,95,109,100,103,113,86,101,114,103,107,113,110,99,104,99,82,112,99,98,120,99,116,112,114,106,95,115,105,114,94,101,97,113,106,99,102,106,102,107,113,105,107,90,102,102,103,114,107,126,104,82,109,104,97,98,107,109,98,109,102,104,110,107,109,108,109,74,112,106,107,96,107,96,99,104,100,99,102,78,103,100,107,105,104,105,108,114,96,101,118,102,103,110,100,110,100,103,91,98,118,97,86,94,88,119,114,111,101,114,112,107,106,100,92,113,113,117,101,107,102,91,113,101,93,107,81,98,101,115,95,105,109,96,114,94,102,110,117,111,109,103,102,103,108,114,97,106,110,108,98,107,99,103,108,100,108,90,103,88,98,105,113,116,108,115,119,96,107,111,102,107,106,106,109,99,112,111,121,103,109,108,102,102,98,103,112,94,90,119,104,117,103,107,107,104,98,104,103,102,104,109,110,112,107,102,110,104,105,110,94,110,113,104,101,99,111,108,107,105,102,98,121,118,103,119,109,94,100,90,81,103,106,104,102,98,122,99,103,95,100,92,103,101,101,104,108,98,103,100,108,107,106,110,106,112,101,121,87,97,107,108,99,103,118,112,114,95,114,111,98,105,100,108,95,106,104,118,123,114,94,111,106,96,98,107,111,82,95,99,88,103,76,103,107,108,101,102,116,106,110,106,101,95,105,101,105,105,110,105,119,109,122,106,112,100,94,98,103,127,114,100,108,90,109,108,99,106,131,102,106,112,100,138,108,105,99,107,106,98,113,107,101,99,101,98,128,100,106,109,103,108,104,121,100,95,107,108,111,100,86,87,91,79,117,96,103,108,109,99,103,104,108,109,103,107,95,98,104,109,96,99,104,134,103,102,100,107,111,104,110,107,107,100,114,107,99,99,109,104,105,102,102,99,98,100,110,95,123,109,111,95,96,107,108,101,111,95,108,106,100,99,105,100,112,119,105,110,105,106,104,99,97,93,106,105,100,104,115,112,93,87,112,108,98,104,98,101,107,108,105,104,112,110,98,102,112,121,105,100,113,119,103,98,101,105,103,102,108,100,109,94,97,95,102,120,115,112,79,98,110,69,106,103,109,104,94,96,114,99,97,94,92,103,101,101,112,103,94,94,106,110,108,103,102,110,100,100,104,116,109,111,105,98,88,103,121,102,108,97,99,100,113,107,117,116,106,104,128,102,92,105,109,105,107,92,91,104,90,98,100,107,111,96,104,97,106,116,102,109,106,115,109,123,107,114,99,100,104,106,106,106,91,90,98,102,112,111,105,102,100,99,106,106,116,114,98,101,105,111,105,107,107,96,127,104,107,112,107,105,109,95,100,96,103,117,94,104,100,96,94,101,95,116,98,111,98,103,113,110,102,92,103,113,100,111,100,97,110,108,109,102,115,115,95,104,103,110,112,101,105,107,105,106,105,105,103,109,110,98,108,96,109,109,128,98,90,99,107,104,100,103,113,95,107,110,107,100,110,90,112,111,104,111,102,106,98,105,83,109,117,108,110,113,112,100,103,97,101,123,113,112,106,108,116,104,122,135,105,98,112,109,104,103,117,119,112,110,109,111,104,116,110,103,102,102,104,93,110,109,110,103,105,107,117,102,95,99,112,95,113,119,115,112,114,110,94,103,101,99,113,103,99,97,97,105,115,101,99,108,101,113,103,117,122,102,104,115,122,104,106,89,95,109,100,108,114,109,110,107,113,105,112,101,96,108,98,105,102,110,110,106,125,105,114,103,108,103,112,94,117,110,103,97,113,110,108,114,110,110,93,97,116,105,106,102,106,110,94,104,112,118,103,108,99,97,99,99,95,97,106,115,96,102,104,99,108,110,93,102,101,105,99,95,106,109,108,102,97,109,121,99,103,107,112,103,103,90,116,114,107,102,103,98,123,97,99,111,104,108,105,101,106,146,98,128,98,112,106,114,101,95,114,97,100,101,105,106,107,101,113,98,131,117,97,104,105,96,117,103,105,101,104,73,101,112,107,99,102,104,103,102,99,96,105,102,118,99,99,108,98,96,105,96,100,104,95,134,98,88,111,95,96,109,103,105,104,110,90,115,96,96,102,98,106,99,102,116,110,129,113,103,109,116,100,99,103,98,97,95,106,113,112,94,88,103,107,119,95,112,120,98,107,99,104,104,110,109,102,110,97,97,97,86,103,116,103,107,104,104,98,104,105,91,112,99,101,99,102,100,104,100,106,106,107,95,129,105,98,102,110,107,100,115,113,99,103,103,99,116,98,113,112,104,95,112,91,98,104,105,100,92,95,87,108,93,101,111,98,98,79,96,119,129,105,98,104,100,119,99,92,112,101,101,114,103,112,112,94,105,100,114,105,98,99,105,102,115,113,110,100,107,95,112,99,108,98,99,100,103,112,107,97,92,99,115,107,100,113,103,116,108,113,93,96,95,101,110,104,104,106,96,106,104,109,91,105,97,106,99,105,92,110,90,110,118,103,96,101,103,94,105,116,94,110,106,102,107,107,103,109,92,90,102,105,109,87,100,106,105,109,100,110,107,100,96,99,100,107,81,104,103,110,98,109,100,95,118,112,99,118,97,104,109,121,102,101,112,103,100,105,108,95,100,104,97,126,104,107,112,102,100,92,103,102,105,90,106,99,103,115,106,98,103,118,107,112,104,106,111,94,108,111,106,94,114,107,106,115,107,117,105,109,110,98,102,114,105,96,105,113,103,101,118,108,91,107,117,108,102,106,96,108,101,95,112,96,108,80,107,105,93,104,97,107,99,104,107,101,114,92,103,119,95,99,107,100,104,112,114,93,100,102,109,101,102,103,96,101,98,75,103,105,129,105,122,109,103,100,103,107,106,104,109,113,99,98,101,110,114,101,95,102,113,111,100,107,113,107,96,106,110,112,102,108,114,102,86,105,128,96,100,104,102,98,101,103,115,105,110,102,118,107,104,95,96,84,107,109,112,108,109,112,107,111,96,87,103,99,108,103,98,119,121,95,108,83,96,93,100,101,102,72,99,111,102,100,89,116,96,122,108,83,111,109,103,126,108,108,108,95,111,108,88,109,116,105,111,107,98,109,101,93,106,96,88,106,117,110,103,107,99,102,112,114,118,112,94,103,104,110,100,110,107,97,105,107,106,104,109,101,100,108,95,101,117,102,112,107,92,88,113,116,107,100,117,106,95,102,101,106,105,103,99,94,97,117,94,118,116,103,106,112,125,106,103,102,112,104,104,97,95,90,108,105,116,104,101,81,79,100,101,99,108,104,100,95,103,96,92,89,99,99,90,108,113,96,114,109,110,119,94,102,108,104,91,106,88,102,108,92,125,100,107,64,96,102,104,98,109,116,102,108,104,108,108,107,91,110,103,100,99,101,94,97,79,107,112,95,113,90,98,116,94,98,100,103,104,97,102,100,106,96,102,98,103,103,101,104,103,110,106,112,109,97,81,113,103,110,113,101,103,93,100,118,94,110,100,95,100,113,108,99,107,97,104,91,103,102,87,98,97,100,102,105,105,107,115,107,99,115,98,97,106,111,86,95,107,105,112,103,104,106,94,84,90,93,107,109,116,115,105,97,100,108,105,118,106,109,102,107,101,119,96,114,105,91,109,105,101,110,110,108,109,98,88,103,102,111,101,96,91,101,101,93,105,112,95,101,92,113,108,100,96,93,107,116,102,100,101,94,118,95,100,101,89,110,98,102,100,91,103,113,110,93,91,104,94,107,111,110,104,84,115,93,98, +502.00262,102,133,95,103,102,105,103,95,113,115,94,108,99,96,109,97,105,111,102,110,91,105,106,99,102,100,109,101,116,113,105,94,101,100,104,99,98,97,118,90,109,112,99,112,103,102,97,107,102,106,104,105,94,103,80,86,109,103,117,110,98,107,99,104,112,109,92,105,95,110,99,98,100,94,99,105,97,113,109,113,117,105,101,105,99,92,107,94,101,99,84,113,106,113,70,90,107,104,114,100,96,78,99,73,94,98,111,104,108,93,97,110,118,112,107,104,104,101,102,116,119,106,104,100,120,113,99,100,100,103,101,102,103,109,109,101,101,106,95,78,103,104,96,105,106,104,105,107,95,104,92,104,103,96,101,105,123,108,104,106,105,99,119,105,114,107,97,105,104,98,110,107,111,99,104,112,96,124,106,107,102,100,101,103,103,104,108,98,106,107,109,100,105,109,103,104,93,98,106,107,103,100,104,92,104,115,95,124,110,102,91,106,103,106,111,110,106,108,99,92,113,103,104,91,103,101,104,114,91,116,107,105,106,102,89,105,106,85,108,96,102,95,107,106,109,105,102,88,108,102,117,104,99,109,101,107,100,114,103,104,98,97,98,91,90,94,108,106,100,111,102,89,99,94,109,117,109,103,114,101,105,115,100,98,107,104,98,103,106,106,104,96,109,99,113,111,99,105,97,105,116,94,103,115,99,103,107,113,98,114,93,112,100,106,108,90,110,98,95,103,101,98,114,102,105,114,108,102,124,115,108,110,88,94,106,94,110,104,88,104,91,97,106,106,103,112,110,108,103,109,92,103,93,108,87,96,93,110,107,112,110,99,111,105,107,103,108,89,113,98,103,120,120,100,114,107,103,110,99,101,111,102,111,99,91,106,111,91,116,100,116,102,103,114,105,110,103,109,82,108,108,102,122,103,116,97,92,89,108,101,109,104,113,106,123,104,107,110,98,101,103,96,99,101,98,100,106,99,119,120,103,105,101,104,103,97,109,116,91,104,101,113,116,126,91,117,102,99,97,108,102,111,98,112,112,106,103,104,105,100,109,104,98,107,106,100,104,111,93,103,108,103,108,106,106,106,95,105,96,104,90,103,116,99,101,92,105,100,117,101,103,114,112,108,94,100,98,100,98,101,107,93,96,96,103,101,89,107,114,101,91,99,102,105,104,105,97,103,103,103,98,111,97,114,101,107,96,110,106,114,98,111,106,114,107,101,105,103,116,109,101,99,98,122,105,106,111,112,104,107,103,106,109,100,118,105,100,100,105,103,105,92,106,94,97,103,101,103,114,110,97,105,106,108,100,108,105,100,97,111,96,100,105,84,110,110,112,101,96,92,113,115,86,97,94,93,101,98,106,109,101,76,116,109,107,131,108,107,99,106,121,108,100,100,107,96,104,112,109,105,105,98,103,118,106,108,92,96,109,104,114,99,101,117,95,87,87,102,113,108,101,116,106,109,108,101,109,101,94,106,101,93,111,109,105,103,114,104,104,100,106,114,130,106,109,98,100,106,101,97,105,109,113,99,112,102,103,99,113,111,98,102,108,98,103,95,128,107,107,107,110,108,93,117,104,113,125,105,107,105,91,105,103,94,97,110,115,109,109,110,110,95,102,99,114,111,106,122,141,91,107,94,101,113,88,103,108,113,101,115,108,117,119,106,110,89,108,105,99,116,114,97,100,101,107,92,96,105,99,96,105,107,104,111,92,100,110,103,116,99,114,97,90,90,106,105,91,112,105,94,97,109,111,101,99,101,116,98,102,98,104,105,121,107,96,103,120,115,104,103,106,107,106,118,105,99,104,105,121,110,85,95,114,108,104,107,108,108,99,101,108,101,101,98,110,105,110,100,99,110,104,109,104,98,107,107,111,106,109,94,116,97,106,110,110,106,109,113,103,104,109,105,100,96,105,108,97,101,111,98,109,111,95,102,93,100,83,103,118,101,116,107,109,107,109,118,107,113,105,104,111,108,103,101,118,107,107,121,95,106,97,102,95,101,108,104,103,108,109,115,111,113,98,99,115,99,104,113,115,110,115,110,98,99,97,103,101,118,101,109,96,110,120,107,104,105,90,117,101,101,110,104,99,95,102,100,100,101,120,117,94,108,104,109,98,104,98,114,110,108,110,101,110,99,107,103,101,105,102,99,113,108,114,118,105,96,95,109,96,109,115,117,106,83,103,110,94,111,95,109,98,108,103,98,99,112,121,101,102,95,109,105,113,109,99,102,108,106,100,103,116,111,128,108,112,99,97,104,86,107,91,99,104,98,115,112,99,105,92,106,101,110,102,103,105,106,114,109,90,111,104,113,94,98,104,105,105,108,109,102,108,104,104,102,101,93,98,110,113,122,102,124,112,103,106,95,99,90,103,110,107,98,105,105,106,96,98,110,94,96,96,105,94,117,90,104,91,111,86,104,99,108,100,95,106,105,94,94,118,113,101,124,102,116,119,114,107,106,117,91,111,111,107,88,107,112,106,102,91,102,108,118,118,95,112,102,103,100,95,103,98,96,118,114,110,98,122,101,109,96,96,107,100,108,105,105,109,113,110,118,111,106,101,107,79,94,101,114,90,104,106,110,106,107,104,113,108,105,102,91,103,92,110,106,114,100,103,104,112,101,108,136,113,114,104,110,99,128,121,102,112,96,121,112,116,99,102,98,120,96,109,102,113,113,110,108,91,112,108,116,115,101,91,89,104,95,101,108,104,103,100,112,109,103,109,102,109,106,115,95,103,116,98,109,106,112,110,116,116,109,103,117,94,119,107,106,113,105,107,98,97,103,103,105,93,109,117,116,105,100,106,115,109,103,111,145,113,100,99,105,112,110,112,115,106,107,108,110,116,112,119,83,127,115,102,105,101,106,93,105,108,101,112,116,121,96,104,95,81,107,99,102,106,106,98,114,109,109,116,105,105,109,97,98,98,103,99,105,99,116,103,113,103,114,95,105,108,107,103,109,96,104,108,101,100,114,107,102,97,107,106,111,112,111,109,106,112,107,108,110,110,103,113,105,105,103,89,113,113,107,100,118,106,112,102,115,112,103,103,107,108,111,98,100,102,105,109,111,119,98,107,107,121,107,109,102,122,92,105,107,91,98,97,127,109,121,96,111,113,104,104,104,105,111,112,105,96,92,93,104,120,111,100,107,108,110,112,95,110,105,113,109,110,103,95,113,110,107,114,110,97,113,100,99,111,100,109,102,111,113,107,105,110,104,101,101,102,107,108,106,125,107,113,98,103,115,116,119,96,107,86,111,113,96,100,116,116,112,112,109,96,104,112,105,84,104,99,90,103,90,107,104,116,115,109,92,103,106,112,99,132,109,105,115,106,97,103,104,102,116,101,113,103,103,96,111,115,110,104,102,100,99,97,98,104,115,109,112,106,106,90,95,121,105,119,112,115,100,111,110,105,109,100,100,105,98,113,115,102,103,113,109,102,99,98,113,115,107,109,111,103,112,96,104,104,103,123,105,123,104,108,100,100,108,98,109,100,110,121,119,108,100,109,108,113,115,106,112,104,98,106,112,113,110,115,97,101,120,102,128,125,103,109,98,118,112,111,104,94,98,97,113,106,102,94,119,101,104,110,99,100,104,104,111,103,99,102,117,107,125,105,104,126,117,110,105,108,108,94,95,108,106,108,104,111,117,92,113,112,103,105,103,115,98,107,104,110,116,94,100,107,100,103,107,105,103,105,123,108,100,102,104,110,116,110,108,106,117,109,108,109,77,103,106,116,105,107,93,119,105,108,96,120,111,106,102,96,99,113,108,97,112,95,110,103,104,108,106,106,99,111,95,116,99,91,94,104,101,99,104,102,121,108,115,105,99,104,103,104,99,97,100,106,106,107,116,105,99,139,105,105,106,99,100,98,113,109,97,106,106,99,102,105,112,107,112,109,98,101,112,96,114,109,105,90,119,105,99,125,105,98,101,110,100,102,104,108,96,102,112,85,113,111,99,104,109,105,121,106,106,104,104,91,106,105,107,110,103,109,102,119,98,102,101,109,99,117,100,105,102,110,108,105,100,114,101,101,94,104,100,109,98,109,106,93,105,100,110,106,109,110,108,113,109,95,117,105,89,112,103,108,110,84,107,87,109,100,101,107,109,102,98,106,102,104,105,104,108,102,126,109,100,117,98,113,97,108,102,120,104,112,106,105,113,114,108,101,109,117,102,102,97,112,106,100,127,98,99,95,100,101,115,102,102,99,103,100,104,110,109,96,103,104,109,112,97,105,101,100,110,109,95,114,112,79,132,99,106,92,103,105,112,102,101,100,105,92,102,104,102,108,122,109,120,104,104,92,108,106,120,104,99,108,105,103,96,112,129,112,97,100,102,104,90,103,107,101,101,103,95,102,109,112,115,98,103,98,104,108,110,105,81,95,101,104,111,110,113,101,100,103,109,96,105,109,111,98,94,106,113,112,111,107,119,108,101,111,105,108,105,97,102,106,109,101,101,104,102,120,103,95,107,100,119,107,99,111,104,100,103,83,102,103,111,109,100,109,111,109,100,103,106,99,100,99,113,103,99,102,100,101,104,109,94,102,101,100,104,101,98,103,88,106,124,105,104,95,99,102,106,101,95,103,108,105,97,98,98,110,83,112,106,104,106,110,100,108,103,100,101,89,99,104,112,102,96,131,110,108,112,108,94,106,130,117,103,109,103,101,107,91,104,109,100,107,108,102,113,94,103,119,106,102,105,102,94,116,105,106,112,104,108,105,112,102,92,105,73,109,105,96,112,106,106,109,105,110,89,94,123,116,113,101,97,115,104,84,99,105,125,110,90,104,105,112,107,83,77,101,98,113,100,117,101,102,106,103,107,117,101,100,100,107,98,115,106,103,100,104,85,116,109,112,104,118,106,120,107,114,85, +502.14328,99,92,101,104,95,102,87,125,90,96,100,93,100,103,66,78,96,115,100,105,74,90,104,107,90,110,112,97,109,100,100,116,102,114,111,93,106,96,95,88,113,99,94,99,109,106,93,111,98,99,99,99,112,104,116,115,99,104,106,101,116,95,112,106,99,111,109,102,104,105,103,107,103,91,99,115,99,112,101,105,101,99,111,96,93,95,98,96,104,94,104,104,100,94,114,98,105,107,102,89,109,102,111,105,98,110,102,108,108,108,107,95,112,107,96,103,96,104,115,93,111,101,112,113,107,110,114,103,108,100,101,110,107,96,96,95,107,103,97,106,99,96,82,94,96,114,97,76,95,102,104,99,98,98,107,103,102,97,115,109,113,101,106,112,96,87,95,106,97,103,101,105,101,91,105,94,98,112,104,105,108,94,93,105,106,101,99,100,111,109,106,109,95,105,102,99,100,92,95,95,110,96,106,105,101,103,104,107,93,113,104,100,107,87,101,105,105,117,107,98,107,110,94,99,104,113,130,95,91,109,97,106,112,106,105,109,116,114,107,104,105,95,109,101,98,104,115,108,111,112,112,112,100,103,95,105,94,100,105,108,105,121,105,113,88,87,96,99,110,101,97,96,104,106,109,95,103,110,100,97,105,117,105,106,105,111,106,99,98,95,103,112,104,118,102,102,104,97,105,72,98,102,97,113,104,101,108,113,111,100,102,106,107,95,102,99,110,100,98,102,100,102,101,113,102,103,109,117,113,109,95,96,104,99,106,101,115,86,96,110,103,109,107,105,65,97,95,116,107,98,95,92,107,104,116,99,93,99,95,107,103,106,115,103,97,96,95,105,105,109,116,110,108,104,113,96,104,102,104,107,100,112,101,99,65,109,103,105,108,108,100,87,106,103,107,103,117,106,111,117,117,102,105,94,103,104,103,108,110,100,98,113,120,100,92,106,107,106,103,108,110,101,104,110,98,100,98,99,100,123,98,102,108,101,98,89,103,95,108,94,102,112,101,89,101,84,96,98,100,101,109,102,104,108,102,109,96,107,102,99,108,99,115,106,116,106,106,101,98,108,102,114,113,111,93,99,105,110,110,110,109,117,106,104,94,103,106,105,99,103,113,100,110,105,106,100,102,116,113,106,108,103,99,106,106,101,98,100,102,110,116,104,101,104,89,111,102,114,117,95,107,117,107,96,105,96,103,107,101,106,93,100,93,101,107,100,112,109,90,110,101,105,100,101,94,106,102,96,118,105,108,111,97,110,110,100,99,101,105,108,100,104,106,103,103,99,114,120,113,101,103,91,101,105,101,95,107,107,95,113,123,106,100,108,111,99,112,94,100,108,98,104,102,105,102,111,104,104,98,118,109,112,104,112,85,94,107,99,111,102,111,101,107,93,125,100,107,100,106,109,109,103,118,104,107,113,110,99,101,104,113,116,106,116,96,112,109,100,84,114,105,104,99,104,105,100,91,105,98,105,100,95,109,103,102,104,102,109,107,95,103,105,107,103,78,107,95,112,92,113,106,101,107,103,112,114,90,95,108,94,100,102,100,103,99,108,111,99,101,102,110,105,105,105,116,107,115,115,104,104,99,97,99,109,121,112,111,109,99,103,94,109,94,103,108,105,103,117,103,106,95,99,114,102,97,105,95,102,98,95,72,107,117,105,95,107,103,99,112,92,106,100,109,111,98,107,100,103,98,106,102,104,109,110,105,115,100,113,100,101,102,108,111,96,98,100,99,113,100,104,108,108,105,104,117,104,107,99,96,87,117,102,120,110,96,108,87,119,101,75,104,105,105,109,109,109,91,96,108,103,101,96,107,107,112,101,101,111,88,101,108,112,106,97,108,99,85,106,112,89,103,102,91,109,105,107,104,106,104,109,103,101,111,88,101,98,102,100,112,108,104,119,103,106,90,104,98,95,111,93,106,112,100,110,101,102,114,105,100,103,112,106,99,113,109,99,87,110,110,96,94,107,103,97,101,97,114,115,102,97,94,103,113,103,104,100,105,103,120,106,97,105,104,113,107,96,107,105,118,103,103,109,101,104,99,87,93,115,103,113,106,107,114,99,95,106,107,105,97,113,79,104,130,116,104,98,106,107,115,102,113,109,109,107,98,112,97,96,94,103,101,100,132,110,97,109,97,100,99,105,100,109,95,104,105,97,100,103,114,105,111,107,109,95,97,106,108,113,100,72,100,104,103,105,107,124,97,109,111,105,99,103,109,104,107,105,113,102,109,107,101,101,115,111,113,99,99,108,101,109,99,109,99,104,112,110,111,105,100,114,95,119,109,106,93,98,100,110,101,113,108,99,94,88,103,105,101,103,98,113,99,110,93,105,107,97,104,106,117,108,108,104,97,101,102,107,95,102,108,104,95,116,102,96,97,111,101,98,100,96,103,85,103,110,96,96,94,102,110,113,101,112,97,91,98,101,135,106,90,101,102,100,92,111,108,102,99,107,111,123,113,107,97,104,88,108,103,100,111,109,113,114,111,102,113,113,105,103,120,117,104,103,101,95,99,98,103,106,104,99,103,107,108,117,105,102,120,93,89,108,102,109,112,102,110,107,107,109,87,61,104,106,109,108,101,101,103,97,104,95,105,105,109,99,111,113,113,107,104,108,103,99,113,94,119,116,106,105,112,97,105,101,113,96,114,106,109,108,106,101,101,108,85,113,102,104,115,93,132,105,86,115,107,106,101,96,114,97,91,110,104,108,112,111,93,113,102,104,117,98,111,97,101,107,105,107,100,107,109,114,111,101,106,98,112,98,108,111,109,115,100,103,84,108,131,91,109,110,104,99,112,105,116,102,110,111,103,110,106,103,112,105,106,95,80,107,108,113,113,107,100,101,106,102,106,97,102,103,104,96,110,112,109,112,106,99,108,102,108,113,106,112,103,107,100,102,98,105,104,108,102,117,116,100,105,101,105,105,119,101,108,116,103,106,100,94,105,111,105,94,98,112,105,100,102,116,95,106,109,100,106,97,94,93,109,108,108,108,103,96,94,88,101,112,115,117,101,113,98,104,109,109,120,104,116,110,104,94,101,99,104,112,96,113,98,104,105,111,103,95,115,117,102,100,122,106,99,78,99,97,112,102,108,99,106,103,108,73,93,97,98,112,94,102,90,99,103,99,102,108,106,104,95,114,99,106,94,105,99,118,101,94,104,111,93,108,117,103,106,111,101,106,95,94,99,94,103,98,116,99,100,106,99,100,110,112,114,118,111,106,104,116,112,124,106,106,96,106,105,109,106,93,109,98,100,100,87,113,113,105,105,92,102,104,101,101,113,104,106,89,114,112,114,103,94,98,106,112,104,95,96,107,95,112,103,94,100,95,104,108,102,116,113,113,103,123,102,111,94,100,104,99,95,110,97,75,103,109,110,98,106,108,102,104,97,107,104,97,102,97,91,101,98,91,98,105,121,109,94,109,104,96,103,105,117,111,107,106,100,116,96,109,86,98,101,98,107,110,104,105,108,105,109,106,104,117,112,100,94,93,113,90,95,105,105,94,100,102,108,104,97,108,104,101,115,112,95,110,100,105,114,97,100,112,103,111,74,100,101,93,98,109,114,95,102,94,102,111,94,109,101,103,116,118,97,91,111,102,119,123,106,99,103,96,106,109,101,101,117,73,97,96,106,99,98,109,102,108,110,101,100,105,103,100,98,100,92,94,98,101,109,103,115,107,122,108,77,106,109,105,110,114,97,97,101,109,105,104,91,112,101,101,107,95,111,97,100,96,97,109,108,96,102,103,101,116,110,95,107,90,103,110,88,106,94,93,111,96,99,101,102,107,107,97,99,102,112,116,103,106,104,99,109,104,104,117,95,95,105,105,94,109,105,106,102,108,91,109,89,100,91,98,101,113,103,101,127,102,107,103,100,113,106,113,104,107,110,106,113,102,100,94,106,112,108,100,95,107,101,95,107,129,106,109,100,104,106,99,97,106,105,104,100,111,106,89,109,105,110,87,115,107,95,113,108,113,105,97,104,107,107,108,98,100,110,109,112,97,104,95,100,95,100,106,113,98,120,93,110,101,105,95,100,100,95,108,97,101,106,113,110,99,98,108,101,113,106,104,84,109,106,102,107,107,100,105,98,104,102,108,95,105,96,99,109,108,105,118,110,127,118,100,104,93,114,91,103,104,96,107,106,100,117,101,114,104,98,103,94,110,137,105,109,69,100,104,108,98,87,123,112,105,102,99,100,106,104,119,98,104,99,103,102,106,99,107,96,106,108,116,106,104,104,96,103,93,111,97,105,94,103,107,104,108,99,110,116,98,106,112,102,97,103,114,105,101,103,112,104,106,110,96,99,107,111,94,96,105,108,96,97,75,97,107,105,99,105,118,99,98,100,111,98,111,100,105,110,105,106,97,98,105,107,106,110,115,101,87,94,97,106,95,108,116,103,98,108,114,105,109,113,105,116,103,104,96,101,108,88,104,95,99,109,99,101,104,107,106,97,101,121,101,109,102,106,109,100,105,111,101,108,102,108,101,123,103,114,97,96,106,114,93,109,98,107,109,104,107,96,96,102,118,103,112,112,106,96,102,102,109,101,107,100,112,108,102,96,107,106,113,101,103,99,107,93,104,103,105,103,98,103,93,109,94,111,99,119,105,83,91,103,105,110,113,107,105,103,117,114,119,104,96,110,88,98,105,112,102,105,77,109,100,109,102,108,103,106,116,107,98,98,94,102,104,108,98,108,95,107,105,103,101,102,109,105,101,108,95,97,104,109,103,95,110,96,101,114,105,110,94,118,95,98,107,100,105,107,105,100,111,103,94,100,108,109,100,112,95,102,110,115,113,96,101,96,105,96,106,106,98,105,103,100,107,105,98,94,113,93,97,103,70,96,110,99,93,110,99,103,115, +502.28391,101,99,108,100,119,93,108,116,113,103,98,102,108,114,65,117,100,113,99,93,116,109,94,100,106,97,108,99,107,117,108,94,112,118,95,112,79,95,121,110,96,94,95,114,93,126,107,120,102,107,99,104,106,103,109,97,100,88,108,105,102,108,95,95,110,108,102,96,112,97,104,103,102,87,112,112,83,104,99,108,100,92,101,113,103,102,87,114,95,108,97,108,98,101,98,110,108,106,99,106,103,90,100,102,102,102,108,103,110,101,103,99,86,111,113,107,91,119,102,103,104,99,113,106,87,108,104,99,113,112,96,106,101,104,108,108,96,109,101,90,109,113,105,120,102,107,109,108,112,109,111,106,100,103,88,107,92,106,98,99,99,104,101,112,114,117,120,109,106,103,103,108,101,105,110,103,107,107,118,101,105,113,111,109,100,99,102,110,105,109,105,102,108,92,84,107,105,118,109,109,107,111,105,101,103,100,104,102,105,109,101,110,104,113,112,109,109,102,101,113,107,107,101,108,95,121,115,111,100,103,104,100,106,106,99,84,99,107,110,97,93,112,113,113,100,112,99,109,114,111,84,105,103,112,109,108,99,106,108,107,101,111,109,96,98,103,113,101,95,109,121,100,112,106,108,100,108,108,98,107,112,109,110,90,105,107,102,100,102,125,106,110,117,104,100,100,100,100,108,105,103,102,105,100,108,108,99,104,109,110,96,111,114,105,97,115,102,118,104,91,108,98,103,103,112,93,90,91,122,112,105,110,113,105,102,99,101,91,97,107,84,111,107,93,105,98,99,105,105,105,110,112,100,113,127,114,107,99,104,110,103,112,101,96,112,107,110,111,101,109,111,105,99,113,109,99,111,110,107,104,116,110,109,108,112,101,105,112,107,97,113,109,95,103,108,95,100,104,103,110,95,106,101,99,102,93,98,112,101,97,105,103,113,102,97,87,108,114,107,105,103,102,111,113,82,91,106,113,112,111,108,113,111,106,103,108,100,110,104,93,113,101,95,106,104,96,102,103,116,102,95,103,110,125,115,110,96,102,119,98,108,110,105,115,114,97,115,107,104,84,107,103,114,103,109,101,104,113,105,107,111,112,105,115,96,102,120,94,96,123,109,110,111,115,101,101,94,103,99,101,124,87,106,117,112,100,100,100,118,104,115,108,103,104,115,107,116,103,108,100,115,108,107,102,108,109,114,113,101,103,95,96,95,99,109,108,101,101,79,104,103,109,102,111,112,94,119,99,103,105,103,105,113,113,114,109,106,94,104,104,104,97,97,98,79,88,105,100,101,105,100,108,107,114,106,114,108,114,103,112,106,106,104,99,109,95,103,120,105,115,113,107,90,107,102,123,104,102,106,109,115,115,110,104,100,100,99,97,112,110,109,114,107,106,108,109,106,97,105,104,108,103,107,106,106,110,103,110,104,115,101,91,101,101,104,104,109,106,101,107,103,103,107,101,103,100,105,105,110,101,96,100,128,104,117,115,98,102,114,106,111,125,107,113,96,113,118,103,100,96,116,104,112,109,95,103,103,113,89,117,98,118,113,103,101,108,102,112,120,107,106,102,103,105,99,108,89,83,91,97,92,104,109,99,103,118,100,100,104,110,110,104,106,96,102,96,93,106,104,100,104,105,109,115,102,104,114,109,117,106,113,116,109,107,109,117,106,108,127,111,114,96,103,120,107,102,97,100,120,115,109,103,110,104,98,95,106,108,105,107,114,103,91,106,90,109,105,106,109,106,108,121,124,112,104,108,103,105,110,99,103,108,105,109,109,104,125,112,94,107,110,97,105,101,115,121,106,109,108,106,93,104,101,90,97,85,102,106,116,108,115,108,93,91,110,67,109,99,96,110,122,111,110,101,107,104,104,103,100,115,103,108,110,102,103,110,104,105,109,103,87,108,106,99,116,99,117,97,105,101,108,103,104,115,104,97,104,105,94,107,102,107,103,105,101,93,77,88,129,109,101,98,97,104,101,103,111,96,107,93,85,110,108,104,109,103,92,114,108,104,113,104,94,108,111,103,91,120,103,101,113,103,107,112,104,112,104,109,101,120,110,109,107,104,114,105,93,108,95,108,102,105,100,120,98,83,95,99,106,111,107,110,95,108,90,103,105,98,114,110,113,104,106,108,104,96,112,109,103,108,124,106,103,114,116,110,107,104,99,96,105,99,87,96,112,102,106,101,107,112,97,115,100,103,100,93,113,103,89,96,100,121,99,113,96,105,110,108,98,116,98,104,118,94,106,97,108,103,93,113,108,100,106,98,109,105,112,112,99,114,80,109,99,104,104,98,118,101,107,97,117,108,118,94,110,103,99,110,112,95,106,95,122,103,112,103,106,99,112,78,90,103,94,108,110,96,100,94,99,106,112,98,103,97,107,114,91,98,102,99,102,108,107,105,106,111,96,104,98,99,101,111,106,96,106,103,123,110,110,101,107,96,101,130,109,120,112,102,113,106,105,104,112,105,101,108,99,113,119,111,114,116,112,112,98,116,112,103,99,100,101,106,107,107,106,112,104,97,94,105,110,116,90,104,104,120,100,112,98,93,109,101,107,105,102,99,103,103,104,102,103,103,102,113,91,105,106,92,106,115,112,102,107,101,112,110,115,106,108,115,110,97,105,96,110,107,104,101,114,107,111,98,99,118,96,103,113,102,112,110,104,115,97,105,102,99,115,118,98,106,104,103,104,110,103,104,100,107,102,115,107,110,108,112,112,102,96,98,81,108,104,104,105,105,121,98,107,103,106,108,112,109,76,105,109,98,101,105,108,102,106,113,111,112,100,97,106,111,96,110,107,112,100,100,109,93,105,102,104,113,103,106,99,98,95,104,103,115,95,103,118,96,109,113,103,104,108,105,100,107,119,101,125,100,114,106,110,107,113,108,97,91,109,109,117,118,108,109,103,105,104,104,99,106,102,104,100,104,95,116,105,104,128,103,95,124,102,108,92,119,97,113,80,103,117,107,98,107,97,105,110,106,96,113,101,103,104,109,110,98,117,105,105,111,107,107,106,109,118,89,95,112,110,122,109,109,123,104,115,108,103,105,105,106,98,100,102,105,117,107,105,101,97,100,96,110,108,106,100,108,107,102,119,107,119,101,105,100,108,105,101,101,107,108,114,113,108,106,115,95,100,105,113,108,103,98,104,100,111,116,109,101,102,108,110,102,107,116,112,95,112,105,98,104,117,106,96,113,112,100,113,103,88,103,100,97,103,104,114,122,106,105,120,110,105,98,95,106,101,108,109,109,105,86,103,107,100,98,106,98,106,110,111,111,111,109,112,106,117,98,113,117,103,106,119,105,113,95,108,112,94,108,101,98,94,110,115,114,110,108,108,120,112,115,102,101,101,110,113,98,99,113,104,110,122,113,105,96,103,99,96,107,109,107,113,107,113,106,109,95,101,108,110,101,112,99,102,109,110,100,102,121,103,123,94,105,106,102,104,109,108,110,102,98,113,100,107,112,102,102,119,110,98,115,106,102,102,102,103,94,103,97,108,110,108,114,102,104,103,102,99,108,117,99,105,99,107,107,106,115,114,100,124,95,115,110,101,105,113,95,97,98,106,109,97,97,107,102,111,107,94,106,106,109,100,97,101,106,108,113,97,113,107,101,98,107,90,98,105,104,96,95,111,103,93,102,104,112,95,108,108,107,109,106,104,105,92,111,110,102,112,106,92,116,130,113,108,106,102,107,98,103,114,104,103,106,103,113,108,103,117,98,96,105,103,101,132,104,102,108,106,102,96,116,101,91,98,103,124,102,107,119,103,115,104,106,103,114,109,104,100,111,111,103,107,106,122,112,101,117,99,109,110,105,105,108,107,96,99,101,96,87,106,111,116,100,112,100,105,111,103,95,101,106,104,100,89,112,99,110,103,117,115,106,86,98,101,93,104,96,106,92,88,109,100,124,100,108,118,97,114,104,110,106,99,86,103,105,91,99,102,93,105,119,107,104,105,105,110,99,109,117,98,113,107,108,106,101,100,110,109,114,98,108,116,112,98,128,104,106,104,94,108,101,100,111,96,114,106,95,104,99,109,106,111,104,98,104,98,101,106,110,113,104,99,113,104,115,106,112,111,95,107,104,103,108,117,108,105,104,94,105,103,109,99,107,107,115,103,112,101,103,98,101,104,118,106,102,105,110,99,115,109,97,107,107,111,120,109,98,109,95,110,103,111,110,101,99,96,105,108,97,92,103,103,104,109,111,114,113,106,112,109,108,108,120,100,100,110,91,111,103,107,106,113,100,101,105,98,100,105,111,99,99,102,108,94,98,118,110,99,108,109,108,99,103,110,99,98,96,109,107,98,105,115,102,111,129,99,93,102,102,103,113,116,120,103,100,107,92,98,113,103,106,102,111,98,111,110,103,100,103,100,115,103,105,111,106,109,102,109,115,102,108,113,97,99,102,91,109,102,112,101,106,102,100,120,100,102,112,96,109,99,116,101,111,95,91,112,127,108,104,106,109,109,111,100,106,114,103,103,98,100,79,105,103,100,109,105,105,105,102,107,97,111,104,112,103,113,99,115,98,98,79,98,80,106,102,100,113,103,89,99,118,124,102,107,104,110,104,107,108,92,102,93,115,113,110,111,107,94,103,95,111,115,110,99,103,102,96,106,96,109,122,102,114,103,99,110,102,96,89,114,108,120,111,138,103,100,105,108,128,113,105,104,98,114,100,105,99,106,83,99,108,117,117,111,96,111,84,113,92,109,114,120,105,103,121,112,108,110,103,103,110,105,115,118,99,116,101,100,105,101,104,105,98,100,105,105,98,108,106,101,107,118,105,103,102,96,91,102,106,94,108,95,99,104,117,110,105,95,95,101,94,108,98,105,91,107,98,114,105,100,110,112,107,108,105,107,97, +502.42453,94,96,103,98,89,97,113,101,90,106,115,101,102,102,99,117,102,103,106,96,80,104,100,104,102,105,102,111,116,106,109,107,113,98,106,99,105,98,108,119,108,116,108,98,82,98,102,96,90,103,106,102,112,107,93,102,104,83,114,92,118,105,92,102,105,102,91,99,105,114,106,99,101,101,97,114,91,100,100,93,99,103,106,105,102,91,116,104,110,106,94,103,103,122,111,113,105,74,97,100,102,79,97,100,91,94,91,101,112,92,106,101,107,99,115,102,102,105,102,90,108,103,108,116,110,104,101,90,107,100,100,102,109,106,99,101,100,110,108,106,86,103,89,110,98,99,102,85,103,105,108,103,105,85,101,95,93,100,109,105,96,104,96,106,111,113,96,85,114,116,91,112,97,103,98,101,89,93,101,108,110,113,101,103,116,90,97,112,101,96,104,102,105,108,96,98,103,109,113,104,90,103,99,98,106,108,103,107,108,109,98,99,96,104,104,97,121,108,87,111,113,108,108,99,100,109,95,106,105,99,96,102,112,116,106,105,63,94,118,107,99,110,102,99,108,72,118,105,101,102,108,100,113,102,98,109,99,103,104,103,96,121,99,106,100,99,109,107,108,99,111,104,110,93,99,107,108,114,108,107,101,109,109,107,110,106,102,105,102,108,101,100,108,96,95,117,104,104,115,96,103,67,94,110,98,103,111,110,113,107,94,102,105,110,105,101,95,94,103,105,109,100,108,110,105,100,109,90,110,108,115,105,105,103,88,123,105,104,92,101,102,105,110,96,93,108,102,109,87,103,94,97,100,128,97,104,113,102,101,100,109,115,115,100,105,99,100,109,103,101,107,93,100,103,99,99,108,102,100,94,103,112,93,102,109,117,101,111,99,102,110,95,102,106,74,95,105,98,107,100,102,104,97,95,107,103,99,106,100,103,108,108,110,93,110,92,100,95,108,109,115,98,101,101,96,98,118,106,105,108,105,104,106,105,93,111,95,101,89,103,95,105,114,94,104,113,99,107,114,112,94,107,116,109,101,102,98,99,105,103,102,100,112,113,112,105,104,101,101,109,112,117,103,100,108,85,112,90,109,104,106,100,120,106,104,111,104,103,108,83,102,106,100,102,98,97,71,102,109,102,103,97,95,103,101,101,105,105,105,105,119,99,101,105,101,104,96,96,116,100,95,113,100,109,108,102,105,90,98,107,90,102,105,102,97,110,98,93,101,111,97,111,102,83,101,106,104,111,102,115,105,99,104,102,101,84,103,106,105,104,106,108,94,100,103,107,109,99,98,101,103,112,103,99,112,101,103,113,89,95,110,114,103,93,96,103,98,99,89,101,111,106,102,115,116,122,96,99,108,105,99,97,108,103,120,114,74,106,95,102,124,106,106,99,104,96,100,95,108,100,122,106,104,100,95,112,101,97,104,111,108,99,109,105,124,101,112,95,102,99,108,124,105,105,100,107,103,102,109,116,104,105,101,91,109,106,99,100,102,111,109,112,108,104,86,88,105,105,101,105,117,106,103,112,96,113,96,105,107,106,108,104,105,100,98,101,119,115,101,95,121,112,106,111,111,98,90,97,104,105,104,101,101,109,88,112,101,98,103,103,106,102,102,109,95,101,109,87,107,107,110,100,109,114,95,96,102,95,125,109,121,97,100,96,97,98,106,83,114,106,105,105,105,101,106,103,115,101,115,117,114,102,96,104,101,89,113,105,112,106,112,102,86,114,97,93,97,94,100,109,102,96,106,90,106,101,96,104,95,110,110,91,119,114,109,112,99,103,108,117,106,109,103,105,106,99,101,103,101,118,114,104,110,109,111,103,113,117,93,108,87,102,104,107,116,111,108,107,98,106,108,105,100,106,106,104,115,102,98,100,104,98,107,109,103,140,116,111,106,101,105,105,114,102,91,110,103,94,96,110,91,110,95,106,107,90,109,103,103,112,104,101,96,94,95,97,88,118,111,116,111,104,109,108,93,94,115,103,102,101,108,91,117,103,100,109,107,102,108,102,99,109,90,105,102,96,99,110,111,97,112,101,121,106,120,101,114,105,102,104,99,110,112,112,96,91,86,108,102,101,89,101,116,104,112,99,113,104,111,97,105,102,110,109,100,94,96,106,103,115,98,101,100,99,110,92,95,116,116,97,105,98,102,106,99,104,101,96,90,101,109,85,105,100,101,101,94,97,101,96,114,91,99,103,100,109,87,98,103,116,111,106,99,106,106,96,107,91,103,100,116,110,103,99,103,99,96,108,68,113,106,98,97,108,100,110,91,106,107,105,82,108,91,110,113,109,102,94,103,105,98,117,112,103,114,105,104,121,100,109,98,102,106,102,91,87,111,107,111,106,107,94,118,112,96,102,90,108,108,107,105,103,106,87,108,103,101,101,110,95,104,100,120,113,103,88,101,108,115,99,107,113,103,110,106,111,106,114,98,112,102,100,91,111,118,92,98,103,103,142,105,103,100,110,99,109,102,110,108,123,103,94,105,109,104,106,113,90,120,98,97,92,118,106,107,105,93,102,104,99,107,98,106,106,101,88,115,104,120,106,111,121,98,97,97,110,99,110,106,105,90,110,100,106,102,99,100,112,107,100,117,104,86,109,103,96,116,94,98,120,112,104,72,104,104,120,110,103,113,113,96,113,101,103,105,96,113,105,107,98,109,107,108,108,113,106,107,110,113,102,95,118,114,100,104,110,81,103,101,107,102,98,94,113,106,109,108,117,106,117,115,109,108,124,107,96,108,126,94,124,114,117,97,105,113,98,100,101,108,100,96,121,103,108,99,93,115,108,105,109,108,98,111,95,86,101,98,102,101,111,111,106,99,109,101,107,104,90,92,109,106,103,102,103,102,117,107,118,87,102,122,107,104,100,121,107,95,105,105,117,113,107,113,111,107,95,101,116,102,117,105,107,103,104,91,100,96,99,107,121,102,116,105,102,107,112,117,114,103,70,114,102,105,99,108,115,95,109,102,98,104,108,99,111,107,93,113,112,112,113,108,109,102,105,103,109,110,115,101,107,107,113,104,99,112,106,109,114,109,116,108,89,111,106,106,107,100,101,110,105,105,106,108,110,109,94,94,110,108,108,106,93,101,73,108,96,101,96,107,103,106,86,103,101,105,87,104,99,117,98,120,87,101,111,108,113,88,95,104,109,110,119,96,121,101,101,110,108,97,104,105,103,105,120,105,96,108,99,113,101,104,99,110,98,106,101,96,108,113,112,106,101,121,112,107,110,104,107,102,102,110,101,99,106,92,97,108,109,106,115,107,94,74,105,96,110,121,105,111,93,108,103,123,99,108,106,103,101,120,96,101,100,102,106,102,108,102,106,105,99,96,97,105,109,114,106,102,104,101,108,99,106,115,108,99,108,109,102,107,99,94,111,106,113,109,101,102,108,124,101,110,108,110,112,91,110,108,120,102,103,100,107,105,109,96,93,113,111,106,99,103,102,109,98,98,107,117,90,107,99,95,117,129,122,112,104,107,118,91,95,112,108,123,104,105,107,107,113,105,111,105,112,103,102,112,112,107,100,113,111,113,94,106,101,100,112,105,90,107,101,106,88,94,124,109,116,109,114,104,129,87,101,106,104,103,97,106,100,99,112,109,102,111,105,109,104,111,113,103,112,97,97,113,123,95,120,112,113,110,102,97,106,99,104,106,117,97,104,121,101,110,100,103,117,125,99,108,114,110,101,96,114,101,107,112,117,105,112,104,103,114,107,102,106,104,104,110,122,113,101,110,102,110,107,102,105,99,99,103,105,108,102,98,119,109,101,105,117,105,108,113,97,113,103,98,106,106,113,109,117,118,107,102,105,116,112,102,99,103,99,107,103,104,114,105,111,101,95,116,97,99,102,113,100,103,104,107,102,103,103,104,111,102,107,104,100,107,101,104,108,110,104,122,105,99,98,109,104,105,110,103,100,109,103,113,113,103,117,77,103,98,124,94,106,116,103,108,101,100,99,109,106,109,102,115,95,104,105,103,98,112,100,108,111,103,102,110,110,103,113,115,106,99,94,109,114,109,106,99,110,112,100,105,113,114,115,117,108,93,111,101,100,108,103,112,116,97,109,93,117,115,111,111,109,112,113,106,107,113,102,108,106,103,100,103,103,103,103,100,98,126,104,98,90,91,107,103,104,93,96,114,113,108,106,117,123,99,112,103,105,111,80,105,109,109,106,107,107,108,109,113,93,101,109,104,107,102,105,121,99,98,112,106,106,115,93,98,102,106,105,105,103,119,105,96,112,109,102,103,102,103,103,104,127,109,111,121,110,98,111,103,107,110,96,112,109,101,101,111,113,108,106,120,108,101,116,103,100,106,103,65,99,114,111,100,103,104,103,110,105,109,116,110,111,113,111,105,106,116,99,94,80,123,100,93,113,91,112,112,105,108,110,110,95,101,74,105,101,103,117,103,111,110,104,106,100,99,101,104,107,102,89,109,103,102,97,101,111,101,111,94,103,108,96,121,107,109,99,112,106,93,100,112,87,99,108,116,104,98,109,95,104,107,88,107,106,106,120,102,104,94,109,102,110,85,104,106,96,111,106,98,93,106,103,106,106,117,102,98,85,112,95,115,109,99,106,114,102,103,93,114,103,99,101,108,97,114,106,122,101,97,99,102,100,107,109,108,111,98,110,105,109,105,100,114,106,109,105,95,109,115,106,102,98,105,103,105,106,93,125,107,107,100,98,105,96,121,93,121,114,113,101,106,108,102,103,107,101,110,111,104,112,101,111,109,110,115,104,89,97,100,110,101,92,116,116,106,112,100,113,108,95,101,111,116,111,104,113,101,113,98,102,100,104,107,111,98,99,78,88,113,112,99,94,96,87,114,115,115,105,97,99,112,105,108,105,101,104,111,86, +502.56519,113,103,97,107,101,90,102,112,100,108,94,103,86,109,102,97,93,107,102,100,106,100,97,106,107,102,106,108,107,105,114,98,97,100,100,93,112,97,101,103,106,109,113,99,105,109,87,103,99,116,88,99,97,96,99,92,86,100,105,110,97,95,102,94,108,122,110,97,100,111,104,99,97,102,101,107,105,91,108,104,111,100,94,92,109,99,117,107,100,115,100,99,114,101,104,99,109,95,98,104,99,118,101,123,111,102,97,89,94,111,92,99,109,114,95,103,104,102,112,120,103,95,101,115,103,99,100,94,115,112,113,113,104,105,110,104,93,94,99,108,109,109,103,109,95,92,88,98,103,91,103,105,117,97,116,97,100,101,117,100,105,107,100,110,102,110,93,105,105,107,104,98,99,93,101,96,110,90,104,110,109,104,108,99,109,98,96,90,90,111,112,101,103,109,101,106,103,110,106,111,91,99,100,108,114,103,110,100,105,112,99,103,106,104,103,106,112,88,104,101,112,92,116,103,102,99,109,101,101,95,115,116,101,100,99,108,109,102,100,115,102,96,108,109,107,87,104,102,99,99,103,98,108,99,98,103,87,105,90,99,105,99,99,100,103,106,106,106,111,112,113,103,114,102,103,100,101,103,83,110,104,109,110,99,109,106,99,101,111,109,107,102,107,105,84,112,109,117,104,106,101,105,93,113,103,100,111,107,117,119,104,88,105,103,112,92,101,114,107,109,100,95,111,101,105,94,103,93,98,108,110,83,104,106,100,88,106,119,113,112,106,101,100,101,96,105,109,114,94,97,109,83,101,105,100,91,104,100,101,103,100,113,109,101,110,95,99,116,103,112,105,103,91,104,110,106,122,83,105,103,104,105,102,101,108,107,112,100,115,108,99,114,95,113,104,101,101,100,97,104,99,103,100,102,110,110,100,110,110,101,86,108,105,82,104,94,108,102,119,94,101,99,102,115,108,90,96,89,98,110,109,111,112,100,112,118,116,110,105,105,110,105,108,96,106,104,106,76,100,113,109,108,103,108,108,101,108,92,110,110,98,109,109,111,107,112,107,102,104,100,118,107,98,103,97,100,107,108,105,103,97,106,112,91,111,122,96,122,105,105,106,117,119,104,89,105,95,105,94,109,104,117,106,108,99,98,106,100,94,114,124,94,101,105,99,109,115,104,103,95,103,109,102,108,98,94,111,103,99,106,94,100,101,101,102,105,98,101,105,125,111,107,105,102,105,95,101,111,109,96,105,111,113,103,130,99,108,96,95,109,97,118,108,95,112,106,99,100,92,88,107,109,93,109,122,113,108,98,94,102,99,109,101,99,101,97,101,100,109,108,104,112,87,100,103,111,95,110,101,106,101,119,94,99,95,103,98,110,100,107,105,106,107,110,112,100,111,106,107,105,107,108,117,99,98,92,96,105,108,113,105,101,103,109,101,106,100,96,97,117,105,107,94,106,101,105,103,95,99,109,111,100,102,114,105,96,110,96,89,99,106,108,99,97,96,98,103,114,97,112,94,111,88,106,95,107,105,103,117,102,103,108,110,103,109,102,100,97,104,99,88,107,99,107,114,98,106,114,100,103,101,106,93,101,101,111,95,103,104,101,98,113,100,105,94,83,99,103,107,108,129,112,100,109,110,92,111,108,105,110,91,95,106,106,95,103,114,104,112,102,121,99,99,105,100,106,98,107,92,97,109,108,111,108,90,112,105,103,92,106,103,99,112,106,105,102,105,109,111,102,109,110,109,112,105,100,108,98,103,106,108,90,107,106,106,108,105,103,103,92,99,110,97,116,99,99,106,98,102,128,100,109,104,107,108,106,98,99,95,109,109,110,106,101,108,102,114,105,106,104,100,110,107,107,100,103,118,98,120,108,101,99,112,103,102,109,106,115,102,96,106,108,90,81,97,104,96,106,103,112,111,104,98,110,98,102,95,105,108,93,107,104,102,117,101,92,111,113,107,85,94,101,105,113,113,96,95,106,92,103,99,101,101,122,93,100,105,99,96,99,105,106,89,95,102,85,123,99,97,107,99,105,113,112,105,102,95,105,99,106,100,107,103,116,103,110,106,106,103,112,98,106,108,97,105,92,102,101,102,106,95,110,96,113,109,81,109,93,95,103,99,111,103,91,105,103,114,98,88,112,108,103,109,102,113,109,114,95,100,113,101,109,95,102,104,112,90,94,97,99,102,101,113,107,98,95,110,99,103,83,98,102,102,110,93,96,103,99,98,104,107,102,102,99,105,112,101,104,101,108,97,108,87,106,89,107,99,107,93,113,91,106,109,116,90,90,90,113,101,98,116,111,105,94,102,108,112,99,100,90,102,125,108,93,113,105,106,116,106,106,95,100,107,96,91,100,104,105,117,109,103,102,108,99,88,101,104,116,94,108,94,100,108,102,104,99,100,101,108,104,95,117,102,94,99,100,108,98,98,105,107,103,107,117,103,104,117,111,113,100,110,105,100,100,105,113,104,97,118,98,111,98,106,94,116,111,104,114,87,111,106,116,98,110,104,106,102,107,116,105,110,101,128,109,94,102,105,91,110,107,105,115,103,113,98,103,119,102,85,101,108,104,96,99,107,103,108,77,113,90,112,101,106,110,103,98,98,110,106,102,114,105,107,98,109,106,100,105,103,94,109,111,106,103,95,108,95,87,113,105,114,101,118,116,117,114,101,103,119,107,107,104,106,110,104,103,112,101,108,107,106,104,114,93,117,101,102,103,111,101,106,111,97,104,118,120,116,115,108,108,96,100,99,98,104,116,106,112,103,103,103,113,104,106,111,109,95,95,102,115,113,115,108,102,77,107,107,109,106,113,117,100,108,124,112,101,108,107,111,110,112,105,102,106,110,104,106,108,100,109,113,111,105,108,105,108,97,98,98,105,103,110,114,99,104,84,108,110,119,109,106,115,97,110,136,110,106,98,94,99,110,114,105,102,111,103,106,100,107,112,107,104,108,105,113,111,109,112,111,102,91,96,107,106,113,96,116,114,105,111,103,108,96,115,121,110,110,98,106,86,90,102,109,100,109,110,105,110,113,106,93,113,113,106,91,106,95,112,97,116,106,109,111,100,109,95,116,100,116,102,106,115,99,108,99,110,104,108,113,115,111,104,111,104,97,111,99,107,98,104,96,95,99,118,116,115,98,102,106,111,106,91,104,100,109,101,96,103,110,120,107,114,79,116,110,95,108,111,97,114,112,99,113,109,102,105,105,99,109,94,102,113,114,119,116,100,103,114,104,102,97,104,120,99,99,107,107,110,107,110,100,107,98,99,107,102,109,116,112,102,109,107,108,105,96,107,98,100,108,111,95,110,106,102,108,111,110,100,113,113,102,112,112,97,110,100,103,84,96,98,115,120,116,97,107,102,103,100,100,103,104,108,113,110,100,104,104,95,118,112,104,109,101,82,109,105,100,100,96,105,111,108,105,108,103,108,114,106,94,111,120,115,101,95,112,112,116,110,105,109,109,107,103,105,99,111,99,103,111,110,106,105,104,107,100,109,112,112,99,90,98,108,102,109,110,120,100,107,99,128,109,108,104,87,102,112,113,104,102,95,105,115,75,108,104,81,104,104,97,103,109,106,103,109,99,83,115,108,113,90,104,113,103,106,106,110,113,105,108,106,112,114,121,108,107,103,98,102,113,110,122,116,106,109,103,103,112,110,107,93,107,105,105,112,113,103,111,109,115,94,128,100,99,86,111,113,106,72,98,105,99,96,102,111,103,97,99,107,104,102,105,105,102,106,100,110,101,84,116,91,89,114,123,113,111,102,108,111,106,103,99,112,117,109,110,102,107,109,104,116,99,108,102,103,107,109,110,109,107,103,104,113,113,106,115,108,112,100,100,114,102,107,109,105,110,98,98,96,105,100,105,100,103,117,98,117,119,101,124,98,112,108,113,112,104,110,122,110,112,108,113,95,116,115,90,99,119,102,105,115,96,101,102,98,106,98,105,104,103,96,98,109,96,110,102,106,113,114,111,104,96,102,103,102,102,104,107,98,122,108,120,100,96,98,107,107,103,104,111,100,116,100,102,97,110,115,95,103,112,105,110,115,106,111,111,106,103,106,95,105,96,77,99,108,110,115,113,108,83,102,108,141,105,112,102,101,89,109,124,126,105,96,92,110,115,109,105,108,106,97,124,102,99,106,100,110,102,117,73,110,112,98,103,121,117,112,100,97,114,114,122,116,116,105,113,101,107,119,88,117,121,107,112,106,109,103,101,109,108,98,108,100,121,104,105,101,112,104,96,102,101,102,110,105,99,103,101,111,113,109,103,104,108,110,119,102,101,108,109,112,110,99,123,74,107,104,105,99,106,111,101,109,111,122,99,109,108,86,110,93,116,111,104,106,96,98,108,122,106,97,104,101,103,87,106,105,104,112,94,102,117,117,119,96,105,104,112,104,107,98,113,107,104,117,116,100,99,106,105,115,84,117,107,94,106,110,106,104,96,99,88,101,105,109,108,99,99,134,106,93,98,108,106,116,106,115,96,99,97,108,105,109,106,97,115,95,106,116,98,107,98,109,103,109,101,105,93,102,108,98,104,110,106,96,117,116,106,100,110,99,106,115,104,108,107,115,111,121,98,113,103,109,91,98,107,100,105,97,99,120,111,93,102,95,110,106,112,104,114,101,106,75,105,102,98,96,112,102,94,121,100,103,131,114,103,107,94,100,109,107,99,105,117,108,105,103,115,100,119,99,104,112,113,104,123,107,103,104,113,102,108,110,102,111,106,108,109,113,104,105,112,109,73,113,112,117,106,111,104,120,102,95,110,103,83,101,95,95,98,111,113,102,98,102,98,111,96,101,118,91,129,106,108,104,121,101,91,95,108,96,121,104,110,119,91,116,97,99,103,93, +502.70581,99,110,96,113,80,108,104,105,106,98,88,92,98,99,107,96,111,105,98,93,103,83,102,121,99,101,106,101,115,121,96,108,100,98,114,100,104,101,98,116,111,78,102,103,105,99,105,106,115,100,111,103,102,99,93,102,95,103,113,115,110,107,110,106,96,110,108,96,108,94,102,109,95,104,92,117,97,102,121,96,115,111,86,97,111,99,106,110,98,103,109,101,116,91,108,96,120,95,108,99,99,108,96,98,111,110,108,112,105,98,106,95,104,100,112,111,102,101,106,107,102,105,113,95,103,110,116,102,116,109,114,105,97,105,72,116,98,98,102,99,83,109,89,106,89,96,107,99,100,108,110,113,115,100,111,97,108,110,96,97,98,71,109,101,116,112,102,100,113,98,104,105,103,104,115,109,100,100,112,110,107,108,96,109,109,94,93,107,105,98,103,113,100,94,87,98,101,105,97,102,94,105,103,114,103,110,92,95,110,108,95,100,113,121,99,104,100,109,112,101,112,105,97,105,99,101,104,91,104,96,110,110,102,95,97,107,97,113,94,123,104,102,112,105,115,98,95,108,103,95,118,99,104,109,86,103,109,109,101,101,94,109,96,94,94,107,108,108,98,104,97,91,119,108,111,95,94,114,102,108,104,104,108,111,99,98,89,100,99,106,96,109,98,94,116,108,106,114,95,113,92,113,99,101,109,108,119,97,103,101,102,106,112,101,111,109,100,98,100,75,97,106,106,97,92,103,112,99,110,103,103,95,100,100,105,96,101,90,102,105,106,107,102,110,113,110,106,101,111,100,101,116,106,103,104,110,112,94,108,102,129,109,96,102,96,100,94,108,96,104,104,96,118,107,104,108,107,99,106,113,99,102,104,117,109,100,113,92,93,87,105,108,105,102,106,116,108,98,96,107,99,106,104,104,103,103,108,98,103,111,109,103,109,105,110,109,103,135,118,104,109,103,101,111,94,105,106,130,109,101,103,111,103,112,116,96,91,105,111,116,103,100,102,98,101,101,108,107,110,109,103,111,98,100,105,103,102,99,97,104,102,114,106,109,98,104,98,97,101,100,101,109,107,110,98,112,107,98,91,106,103,109,104,95,106,108,107,112,103,101,102,107,98,94,101,98,96,97,100,99,99,107,120,107,108,97,96,124,104,99,105,96,108,104,103,90,110,101,106,90,113,104,107,105,118,98,115,117,95,92,106,98,96,97,104,109,110,116,104,116,108,113,107,103,112,109,102,112,115,108,103,105,102,87,115,98,104,102,100,102,109,99,94,114,103,91,107,107,109,103,100,102,100,112,111,104,101,113,105,103,103,99,88,107,102,107,105,92,95,101,100,102,102,111,110,105,106,124,103,100,109,95,105,97,94,101,102,114,108,99,110,101,107,104,99,101,103,100,110,94,94,114,110,106,111,107,101,108,105,104,106,96,103,104,98,109,95,131,103,104,106,111,108,96,110,104,104,103,104,110,95,108,115,96,100,110,103,113,112,107,104,110,94,118,98,95,104,96,108,104,100,103,119,105,77,108,98,99,111,106,103,109,105,94,103,97,103,108,108,104,100,107,103,108,99,98,106,104,105,103,102,101,112,96,110,98,107,101,111,104,98,118,99,100,91,99,96,105,96,111,93,93,117,95,93,87,91,116,100,120,104,108,101,105,108,127,118,105,118,98,104,103,103,91,106,107,112,120,71,108,109,106,102,101,100,103,100,127,125,101,106,117,94,110,91,104,92,107,94,105,103,113,111,106,111,93,105,95,105,111,103,99,105,106,108,105,101,101,98,108,99,108,105,100,105,109,104,95,112,102,110,98,90,96,95,103,124,83,108,106,112,106,97,104,99,104,103,95,110,114,109,101,106,105,94,110,104,94,106,99,90,103,112,99,123,107,97,101,102,113,117,107,109,134,104,102,104,94,90,102,104,106,96,106,104,102,112,104,95,106,106,104,107,106,109,116,106,113,105,103,91,114,101,106,99,106,108,108,102,108,98,96,112,100,91,109,104,111,103,79,100,97,97,103,102,102,108,107,81,104,114,104,109,106,86,108,97,95,107,111,104,121,106,103,106,95,98,103,102,100,105,101,105,114,102,104,100,102,108,101,95,114,113,103,90,101,118,102,109,97,105,107,106,96,105,94,112,109,107,88,124,101,119,102,116,110,105,106,94,111,116,115,107,105,116,100,102,108,107,106,98,103,100,109,97,116,100,93,100,99,108,86,96,98,115,113,101,101,108,107,102,106,107,100,108,100,102,103,106,105,109,94,88,103,106,109,125,94,88,104,97,107,103,106,101,113,86,106,104,100,110,88,94,100,110,96,105,93,99,103,114,95,94,87,113,93,104,103,108,101,113,94,97,99,98,91,98,94,95,103,99,99,94,113,103,84,104,103,110,112,117,109,103,108,104,102,95,114,107,99,84,104,113,114,91,111,94,102,106,102,105,91,96,115,104,101,116,112,111,101,107,100,102,98,92,109,95,88,103,95,101,102,116,101,110,107,97,98,87,109,110,113,115,121,93,100,111,109,106,100,107,105,95,107,74,105,102,105,108,90,112,124,109,103,103,108,91,99,106,94,89,99,102,103,76,104,121,99,120,105,98,98,109,115,104,101,112,114,102,96,111,91,110,95,95,115,90,108,116,93,113,93,101,108,101,109,104,104,108,101,108,104,99,111,109,111,113,111,105,109,100,112,76,113,98,118,102,104,112,112,117,95,121,112,107,105,76,109,113,97,102,101,103,107,101,116,113,104,79,99,111,94,116,97,110,98,98,107,114,102,102,101,104,103,103,103,104,92,111,112,98,102,108,91,102,81,105,117,108,108,112,94,108,108,101,93,99,119,104,108,118,115,107,116,95,109,109,108,110,107,110,108,117,114,109,109,103,104,116,117,117,109,116,105,94,111,108,99,109,105,100,101,105,98,111,109,113,100,116,109,106,100,100,110,96,103,104,108,108,108,103,102,93,100,102,104,107,104,102,106,113,103,101,102,100,117,96,102,106,109,106,97,110,109,99,104,102,109,100,104,90,121,113,104,98,106,105,95,101,115,111,99,100,102,107,101,109,116,141,97,93,111,76,118,120,105,114,91,99,81,102,106,115,116,117,99,103,109,108,120,105,106,105,108,116,92,113,95,108,98,91,107,103,102,115,105,105,99,105,98,106,121,109,109,108,96,107,99,108,80,105,109,101,111,107,117,107,104,97,105,114,108,99,109,102,100,105,98,106,107,102,111,108,118,105,98,105,109,106,69,111,104,108,103,102,99,107,116,109,117,90,86,101,100,110,115,113,107,113,103,98,96,90,108,106,96,100,93,96,93,108,110,94,105,98,106,106,111,96,112,105,108,112,113,106,99,105,107,100,106,115,109,109,117,92,114,105,110,116,96,116,120,96,109,97,101,72,95,109,109,110,94,104,106,96,123,99,108,107,123,98,109,101,100,98,123,112,113,107,100,120,103,112,105,113,105,108,102,115,108,104,98,109,104,99,110,116,85,99,102,107,98,109,110,99,107,105,108,104,92,109,108,100,109,115,122,109,98,109,127,117,110,114,104,105,115,105,110,104,108,110,104,102,119,101,99,111,91,109,104,103,107,111,102,104,103,106,113,97,103,104,105,116,111,108,101,112,104,108,110,95,97,98,109,104,99,110,120,104,106,107,103,110,106,103,113,103,102,113,99,115,106,104,95,101,100,114,92,98,103,109,92,95,97,106,98,93,106,102,108,100,109,79,102,95,102,106,93,104,108,104,114,87,113,113,108,100,82,116,100,102,110,102,95,128,107,101,113,97,91,105,111,109,96,113,110,103,113,96,106,110,101,101,101,98,91,110,99,107,104,100,120,109,100,101,104,111,107,107,104,107,105,106,94,120,95,105,91,96,97,106,109,101,96,106,103,100,108,98,100,110,113,104,85,111,113,119,113,96,95,100,109,120,128,97,100,112,102,102,104,106,90,110,105,100,103,103,103,102,120,104,99,117,98,105,103,101,96,112,102,110,106,110,98,101,99,107,107,124,94,112,114,104,94,104,115,100,106,116,109,114,99,111,113,112,102,105,103,92,109,108,110,111,119,103,104,99,104,99,97,116,101,113,101,114,116,102,105,110,111,111,102,100,117,104,99,105,99,101,105,111,99,109,97,104,100,112,113,107,102,99,101,107,98,98,109,95,95,116,116,107,100,101,97,102,99,108,105,110,104,127,104,115,109,110,96,117,112,110,107,106,102,99,110,98,102,106,103,102,104,104,105,106,100,125,109,123,102,98,106,112,104,103,106,93,108,105,103,101,97,112,108,99,102,110,111,108,107,104,104,109,103,100,98,103,111,100,105,103,108,98,101,111,106,98,104,107,107,95,108,96,95,98,123,113,117,108,103,103,92,110,89,98,105,112,98,93,96,111,116,114,109,98,100,99,103,101,111,100,97,103,116,83,103,118,83,97,97,113,100,102,95,90,92,113,103,111,106,108,102,94,104,98,98,117,112,109,96,92,107,102,102,87,106,100,113,91,121,91,104,104,103,105,105,97,109,87,107,122,102,98,120,121,103,95,95,94,101,105,98,102,99,106,108,105,96,108,106,94,109,110,104,89,100,92,107,115,111,101,95,87,111,97,108,102,111,87,88,105,88,95,111,111,105,113,100,94,109,114,99,97,94,82,99,115,102,112,100,96,94,101,109,106,122,104,99,104,106,103,105,101,93,94,102,113,93,109,103,109,104,112,108,113,114,111,116,105,93,107,101,113,115,111,97,96,102,81,107,111,95,101,102,89,98,95,103,102,103,102,113,111,95,105,85,115,113,102,98,93,105,110,109,98,95,101,120,98,101,110,109,104,92,99,98,109,103,88,113,101,93,118,100,104,85,113,96,104,102,112,120, +502.84647,104,105,103,89,100,109,96,111,100,92,90,99,96,103,114,99,124,97,112,101,109,101,100,98,97,109,103,106,94,116,109,101,101,109,120,97,93,99,96,99,111,105,105,104,96,112,101,117,101,103,98,99,108,109,98,108,115,109,100,99,104,118,110,92,99,106,92,97,121,96,116,113,105,107,98,109,112,104,99,107,105,104,106,105,96,98,108,116,98,97,103,116,101,104,114,100,108,92,111,118,101,103,113,96,103,110,98,109,106,91,101,95,107,98,109,84,102,94,96,103,105,121,114,106,112,101,108,103,101,117,105,107,104,93,107,113,98,111,104,102,99,109,79,111,105,99,98,110,102,104,106,104,110,105,102,107,87,114,109,104,104,106,103,110,104,103,108,125,112,119,89,107,105,103,122,106,105,108,114,91,105,97,103,111,91,103,105,99,110,102,96,100,111,89,110,107,110,111,113,102,108,98,86,106,98,101,97,113,109,103,114,97,109,99,98,110,106,104,108,104,107,112,98,95,100,99,108,110,107,102,101,102,115,109,100,102,111,102,110,90,115,135,116,125,110,107,110,114,107,113,100,104,103,107,108,115,102,112,102,104,103,107,93,102,94,100,106,111,116,101,108,102,113,116,110,96,93,100,109,105,103,109,113,103,99,105,96,100,117,100,101,101,107,95,126,106,113,109,109,105,99,105,115,117,101,107,111,107,111,111,112,113,111,112,106,122,106,100,94,107,106,79,91,100,99,107,105,99,105,110,100,104,116,110,110,100,95,89,107,110,101,107,103,119,104,112,102,90,110,92,105,99,102,98,107,117,116,107,103,100,91,105,114,106,91,102,93,108,92,108,106,113,105,94,111,104,105,98,101,111,114,113,103,116,104,107,93,96,96,94,104,107,91,103,98,109,103,113,100,119,97,104,114,106,96,103,102,105,95,113,96,108,112,104,107,104,96,104,98,112,110,107,101,103,104,99,102,103,110,117,105,109,105,106,101,106,97,113,103,103,113,111,102,108,100,107,68,101,102,103,112,99,105,100,106,108,104,102,121,103,99,108,108,103,109,112,129,83,109,105,104,103,102,107,102,99,108,114,104,109,97,96,111,108,100,97,101,105,94,99,98,68,102,105,94,102,100,108,109,109,111,87,110,101,102,109,94,108,111,109,107,100,134,107,102,104,104,123,108,102,100,120,119,110,111,91,99,100,95,95,98,106,116,97,120,108,122,103,103,102,99,100,93,107,95,100,105,103,121,110,105,115,114,100,94,108,109,100,99,105,107,107,99,114,96,100,100,96,99,122,104,101,104,108,99,105,98,84,101,105,106,83,104,92,71,101,105,104,97,98,108,113,115,104,104,102,101,109,102,107,106,102,111,112,99,100,112,103,100,105,104,90,112,103,109,99,106,113,108,107,104,104,106,106,100,111,111,99,102,110,102,94,94,110,100,110,104,96,99,100,102,106,96,112,96,102,112,111,106,109,106,108,123,105,105,105,102,84,101,114,116,112,100,116,83,103,109,98,106,113,115,101,100,109,111,114,107,116,111,101,103,103,100,98,93,98,102,113,98,118,100,93,85,105,100,109,106,111,94,106,119,102,100,107,104,109,117,100,118,97,105,99,103,94,111,104,74,100,99,100,108,102,100,104,86,93,109,99,120,117,102,120,109,103,103,107,103,123,114,103,111,98,101,105,108,102,105,117,82,106,113,106,105,91,103,103,111,102,107,102,117,112,100,105,99,107,102,104,118,103,107,108,101,109,102,110,94,117,99,102,103,109,121,112,99,90,103,99,103,80,106,104,98,107,107,100,118,111,93,114,92,97,100,104,110,108,109,93,102,110,110,113,101,103,103,97,97,113,109,99,109,104,102,106,116,107,97,99,102,99,103,94,115,92,112,104,120,104,104,113,96,106,114,99,104,105,98,104,108,113,109,111,95,107,99,99,114,105,95,113,113,106,113,100,101,91,89,110,109,113,117,98,107,111,111,103,100,95,102,108,114,107,107,108,126,114,106,118,110,105,125,114,90,110,105,84,104,95,102,109,98,103,105,106,106,103,96,99,102,106,110,110,125,102,95,96,101,109,96,110,110,101,113,113,108,98,106,104,104,104,99,106,107,99,94,103,96,100,109,112,106,99,108,103,100,103,105,106,104,118,108,109,103,105,106,109,104,122,100,108,109,118,100,91,95,105,119,100,101,105,101,102,100,105,106,96,83,87,96,99,101,115,111,102,104,100,103,104,109,109,99,113,115,108,98,92,110,113,123,106,97,101,77,90,105,107,104,106,113,111,113,100,105,108,113,105,104,95,104,101,109,104,106,106,92,116,108,103,108,97,110,103,108,95,109,99,100,108,91,99,105,100,101,108,103,98,109,82,98,109,108,96,105,101,107,107,102,114,95,99,95,95,101,108,117,99,101,97,101,108,90,112,98,113,100,96,110,112,98,100,95,101,103,111,113,113,95,90,114,103,95,110,99,93,109,109,105,107,104,94,134,104,108,105,105,139,93,105,103,105,104,107,106,104,104,102,96,100,106,102,104,100,104,99,106,97,95,104,106,95,96,103,91,92,97,98,102,104,108,101,96,92,101,101,103,112,97,109,112,102,97,102,117,108,108,101,99,95,106,104,105,114,98,113,113,103,105,96,105,102,103,95,105,107,95,104,109,104,119,107,103,100,98,105,111,111,118,102,100,107,99,105,105,120,98,107,127,99,104,97,101,108,89,98,102,109,109,108,103,95,92,106,95,103,107,111,112,106,106,100,109,110,104,94,100,108,95,109,107,111,95,104,93,104,111,95,103,97,110,109,132,99,102,101,110,123,99,111,110,119,104,106,98,104,107,113,110,105,92,98,112,103,106,98,92,106,100,90,108,106,95,116,106,95,107,102,104,97,99,107,120,93,106,96,103,112,101,103,102,111,108,102,96,97,98,111,98,105,106,96,104,106,104,101,101,99,95,102,98,103,102,95,95,117,118,99,102,106,109,107,112,96,109,106,109,108,117,103,120,107,100,95,98,98,94,99,95,97,96,96,98,100,113,93,95,98,106,104,107,109,97,112,133,110,91,109,106,91,104,106,119,110,111,100,104,97,106,106,103,102,105,95,113,110,108,102,103,102,98,109,106,96,97,109,101,99,108,110,104,100,111,107,95,95,113,99,101,98,106,106,100,97,94,102,97,102,109,103,107,103,95,97,95,103,102,100,105,102,99,103,99,107,98,96,97,98,101,93,112,105,109,107,103,104,100,87,91,107,100,99,98,102,101,100,104,92,100,102,103,93,118,102,105,112,105,85,108,108,101,113,105,110,112,92,109,106,118,100,110,105,102,114,118,99,109,102,102,100,92,110,106,103,102,97,100,100,103,103,104,112,106,106,96,104,109,106,106,107,104,106,105,114,109,109,101,111,80,107,104,71,100,102,97,102,109,115,103,103,96,113,111,106,103,110,96,112,112,116,102,102,115,97,109,104,96,104,101,98,117,108,94,105,103,104,96,102,113,103,100,111,103,107,100,117,120,112,112,117,103,118,103,110,108,99,108,101,104,97,100,111,107,120,112,98,116,109,99,94,99,109,103,113,108,101,113,102,103,103,103,106,105,104,114,109,95,108,109,97,110,107,99,97,101,120,103,108,109,105,108,113,111,108,107,99,98,99,90,113,97,97,105,109,102,99,100,92,110,105,109,110,102,95,108,101,113,106,101,107,104,94,102,105,91,106,105,102,108,105,98,95,94,93,118,91,97,103,98,102,103,114,109,102,116,113,108,108,108,97,115,105,101,92,91,100,118,102,111,113,117,103,104,107,100,110,104,101,100,106,103,116,94,109,98,101,101,107,99,104,111,102,109,101,102,105,111,99,105,97,102,100,92,101,99,102,100,100,108,102,109,109,99,100,107,99,104,105,98,108,108,114,117,107,111,105,103,106,109,104,96,104,105,115,103,98,100,108,100,101,100,98,82,102,105,99,122,113,112,106,94,131,103,112,103,100,98,101,82,102,105,108,110,110,116,111,99,98,112,105,105,100,101,97,91,104,121,103,100,104,109,97,103,112,100,112,104,108,104,100,100,105,113,112,98,106,117,111,99,102,84,100,104,115,97,99,99,114,100,113,95,100,100,90,107,106,96,100,103,105,107,103,108,107,109,103,105,106,104,101,98,107,119,110,99,105,110,110,106,95,103,100,109,111,118,113,99,108,110,97,97,100,115,100,109,92,92,110,98,109,109,89,112,103,112,95,98,102,106,99,97,105,118,98,71,99,105,93,104,113,105,110,98,104,98,99,99,99,102,94,100,101,100,113,116,103,120,104,95,112,102,109,103,109,103,109,100,108,104,102,95,102,94,91,97,100,98,115,100,94,110,113,109,104,102,106,110,93,102,132,99,95,109,101,92,100,88,103,108,102,106,96,104,107,109,102,101,103,102,98,102,103,106,121,101,112,98,99,109,91,98,100,97,108,106,103,91,99,105,96,100,100,100,104,98,117,107,116,106,98,100,95,111,118,102,102,109,112,106,96,100,113,121,113,104,95,99,106,106,107,93,106,102,88,108,102,104,98,95,104,99,103,106,100,105,113,106,98,102,100,104,100,100,92,97,113,95,112,105,100,107,100,106,93,101,106,102,98,106,103,108,101,97,95,121,95,103,100,102,113,100,99,95,95,109,106,89,100,109,91,99,106,90,91,96,102,113,94,115,94,103,80,92,97,100,107,101,101,102,106,104,105,104,105,100,114,104,90,104,110,99,100,110,103,108,101,105,111,98,101,99,100,116,99,105,92,85,108,96,105,95,108,124,101,74,119,108,107,101,89,105,98,127,90,98,89,95,99,93,96,102,111,95,98,103,102,99,117,105,108,98,95,94,105,113,103,96,106,80,103,100,111, +502.98709,101,92,81,111,94,102,91,91,94,100,99,102,97,104,100,102,96,98,109,98,96,102,110,99,100,98,116,115,107,106,107,96,86,102,108,99,88,107,116,88,102,105,103,106,113,107,86,107,102,105,110,103,96,100,103,113,96,98,108,94,106,99,108,98,99,89,110,105,104,95,108,106,104,106,95,125,95,101,107,127,143,106,103,94,104,93,104,98,100,109,105,99,98,94,100,105,109,104,102,109,98,105,106,109,93,91,101,98,102,99,105,110,106,107,109,103,102,109,117,128,100,113,112,115,99,112,100,106,105,111,111,110,99,101,110,100,75,121,100,102,103,106,117,95,96,111,102,106,110,101,109,95,106,112,116,103,100,111,125,102,93,92,108,104,94,92,127,99,113,103,111,101,92,97,102,101,98,99,107,116,104,105,110,111,105,99,102,97,105,109,103,105,111,98,96,105,97,113,109,105,114,109,98,103,97,105,101,105,108,105,96,105,111,114,103,103,109,102,104,100,112,106,103,106,102,108,99,118,113,117,96,104,113,92,105,108,107,109,110,103,98,108,117,102,102,118,104,97,109,91,108,110,105,99,108,108,106,96,104,91,96,108,103,99,106,105,96,108,105,101,100,110,99,98,114,114,104,110,99,101,108,104,106,98,103,109,105,106,96,96,95,109,107,105,102,101,100,103,104,103,103,95,102,114,112,107,76,100,110,107,105,101,101,137,108,114,101,119,100,99,98,100,115,117,99,101,109,101,105,117,105,106,103,107,112,100,101,106,105,113,122,104,102,97,111,104,141,97,108,103,110,91,105,79,102,99,107,98,97,113,96,93,109,98,99,102,108,104,91,107,114,102,105,107,110,105,105,105,101,104,103,100,109,94,95,100,113,105,103,102,112,96,113,111,106,99,98,118,102,99,98,104,106,111,93,103,103,102,106,98,96,115,101,99,104,100,99,109,107,100,106,106,102,117,103,102,106,118,97,109,108,99,98,89,106,110,105,103,105,112,117,122,113,108,101,114,101,101,111,121,107,108,108,112,114,100,112,111,115,96,104,112,102,107,115,108,108,122,97,106,106,109,112,110,100,111,96,96,117,108,100,106,114,99,100,102,101,105,102,103,105,115,106,97,99,107,99,104,103,103,104,119,111,105,95,109,101,99,114,107,107,104,106,108,108,87,110,108,107,104,95,96,109,105,113,109,112,102,105,101,101,110,98,105,103,106,110,99,100,105,102,106,105,108,98,112,103,112,81,108,113,111,120,107,108,103,107,105,113,98,104,110,101,106,113,106,109,104,114,100,107,108,100,95,107,105,110,103,108,112,102,104,106,102,113,114,99,114,113,110,105,98,98,97,107,103,103,109,90,110,90,106,95,87,108,125,104,105,102,109,96,100,111,117,117,96,91,96,97,105,102,116,102,112,105,95,104,96,102,114,110,118,110,119,105,97,116,100,107,106,117,119,95,115,102,94,107,99,104,109,107,103,110,116,98,101,107,108,99,109,95,115,110,98,99,104,113,101,103,102,118,99,105,99,94,118,114,121,133,104,107,103,115,105,80,101,96,104,108,97,99,111,98,89,110,108,106,97,116,95,102,90,97,92,105,109,100,114,91,100,104,108,104,111,73,114,103,98,96,102,104,107,99,112,96,109,98,129,97,110,99,109,105,102,106,121,113,103,120,91,107,108,99,107,107,107,95,106,108,107,117,106,103,96,103,111,100,100,115,104,112,97,112,105,100,106,119,104,102,100,101,105,112,109,109,124,102,100,108,102,99,110,107,113,105,96,114,109,100,104,112,114,102,104,103,99,89,112,108,107,100,102,106,114,107,110,112,107,103,121,114,112,98,111,103,101,101,110,100,105,96,103,117,111,108,105,115,100,110,108,101,105,113,109,96,106,93,80,105,106,118,105,114,97,102,112,100,105,107,87,99,106,103,96,101,115,108,114,103,100,105,114,107,94,104,104,100,99,112,113,107,103,96,103,99,106,98,110,105,106,109,111,106,101,90,86,101,78,105,98,101,104,102,103,104,104,100,103,113,98,105,116,113,106,102,99,94,121,104,105,106,112,111,105,105,109,96,113,98,104,106,109,109,115,110,98,105,106,116,112,101,107,105,110,104,110,104,102,108,108,96,121,107,107,104,95,111,100,99,111,98,109,106,101,117,118,103,109,108,97,96,108,96,111,110,110,82,102,103,108,107,108,103,95,109,120,104,101,107,107,104,104,105,97,111,104,102,100,90,97,101,101,106,87,104,97,97,92,105,113,89,111,113,104,117,114,99,100,99,102,105,107,98,115,104,113,105,108,102,116,112,122,101,118,103,110,98,106,115,98,103,116,104,102,110,105,109,101,110,105,116,97,94,123,97,112,105,102,100,98,106,112,108,110,106,121,104,104,102,105,101,102,104,100,108,104,114,104,96,114,104,117,106,111,119,121,107,101,98,104,98,99,101,106,121,106,109,100,119,104,115,102,107,108,111,103,99,102,94,112,104,101,102,101,102,106,99,117,103,119,99,110,113,95,102,101,111,106,98,121,114,108,111,104,100,104,103,117,109,96,99,116,103,99,106,103,106,109,104,98,107,113,104,110,111,107,102,115,101,111,109,98,109,124,117,106,113,105,117,102,106,94,120,105,108,113,108,91,98,110,104,107,115,106,105,108,103,94,113,117,111,117,110,110,99,117,117,98,112,107,111,106,116,106,108,102,104,110,111,108,118,99,112,111,109,106,115,105,107,106,107,103,98,113,95,101,118,109,102,105,107,102,102,109,85,105,113,108,104,109,105,116,105,105,100,99,111,116,110,110,106,95,100,112,101,106,107,107,111,110,101,111,96,112,102,108,94,104,117,113,95,102,107,107,98,95,101,106,97,115,111,118,97,118,103,103,95,112,114,107,112,116,117,102,109,115,122,109,123,107,110,113,104,106,106,88,112,103,105,113,100,103,109,110,124,95,107,107,102,101,116,103,108,101,103,104,114,115,101,93,115,99,105,97,103,113,106,105,110,110,103,104,105,118,115,105,113,114,108,102,100,109,102,107,111,108,105,103,97,119,95,107,94,105,104,95,104,102,92,108,102,107,118,104,112,96,121,107,103,117,108,110,102,107,109,109,93,94,105,95,115,104,106,101,100,97,126,102,103,101,92,105,110,106,106,111,103,106,113,95,108,100,108,112,102,100,114,103,107,109,103,108,98,105,109,87,112,103,82,110,116,103,98,100,99,107,97,91,106,114,111,98,111,115,117,99,101,106,109,115,109,108,112,106,107,99,100,117,108,112,98,96,108,97,87,112,119,99,104,116,104,94,99,112,105,105,113,103,111,105,113,112,97,105,99,117,104,113,114,113,108,108,76,112,111,105,100,109,103,102,114,100,118,110,96,109,100,100,108,102,106,94,115,110,115,98,97,99,109,112,119,95,107,99,113,107,107,104,97,107,101,107,106,96,105,107,100,120,103,96,109,115,99,105,104,105,99,83,112,91,109,122,107,110,113,96,120,108,98,103,106,117,101,116,102,114,79,110,107,111,109,111,113,109,114,110,102,98,90,103,132,91,89,116,97,109,126,117,114,98,97,100,113,102,110,104,117,121,113,110,102,105,117,104,92,101,108,104,102,107,103,101,116,104,103,104,99,110,101,116,104,104,103,107,113,95,96,112,102,112,105,118,111,111,102,103,116,116,99,109,106,92,104,112,98,108,104,109,111,100,121,101,99,86,112,111,110,102,101,111,113,106,103,105,99,121,112,97,105,108,106,106,127,102,95,102,106,87,105,99,105,118,109,107,108,104,99,113,96,101,117,105,106,116,107,95,105,109,107,107,109,117,104,104,103,109,113,105,103,108,102,98,100,118,113,103,105,110,113,104,93,118,105,98,113,107,105,110,108,107,107,113,105,111,105,102,125,105,101,105,118,105,108,102,105,103,104,105,108,103,94,116,113,102,96,105,106,102,97,98,90,106,110,105,95,111,113,117,107,116,101,111,98,112,106,100,110,102,108,113,111,101,114,106,106,99,113,104,106,109,114,116,105,78,115,115,108,112,107,94,110,106,108,98,105,105,105,103,111,93,110,103,98,105,106,104,101,99,109,113,109,105,99,98,116,108,123,102,99,86,113,100,93,107,108,101,96,112,112,102,99,107,97,108,98,104,116,110,106,107,106,104,101,122,98,117,99,111,100,108,113,100,105,104,100,114,100,107,102,116,109,105,111,91,97,106,105,108,105,103,99,119,105,92,99,107,109,96,119,97,110,106,115,124,115,102,112,105,96,111,112,101,102,102,107,92,100,108,108,116,104,106,93,108,110,107,99,106,102,113,103,97,102,114,101,96,103,94,110,111,101,98,116,111,97,103,106,107,118,104,102,110,115,115,97,104,113,99,99,106,100,94,94,110,93,100,109,101,113,114,102,75,102,103,131,109,87,111,118,90,123,103,106,111,108,104,101,109,116,89,87,99,108,103,96,115,95,110,91,108,101,103,102,104,113,94,119,107,84,106,95,106,101,105,108,117,101,110,109,109,95,101,109,109,109,111,112,106,110,107,107,113,115,107,117,103,113,105,105,103,90,101,111,105,113,112,100,105,112,107,102,119,114,105,91,121,102,117,108,95,108,101,100,97,113,94,104,106,110,112,95,105,111,109,106,108,98,99,107,111,93,107,97,113,107,115,108,111,96,92,113,108,120,113,108,100,107,104,102,107,103,100,97,105,106,100,104,108,91,87,118,102,99,102,101,100,107,101,101,104,104,99,99,108,109,108,108,101,97,97,117,103,102,97,108,103,117,109,104,116,111,107,94,98,108,105,105,117,102,102,119,106,98,114,84,109,106,91,102,110,83,105,97,95,105,104,105,115,127,106,100,100,97,95,104,109,115,62,107,81, +503.12775,98,104,92,116,99,68,90,113,101,99,101,88,98,108,111,96,103,128,102,93,113,104,105,105,101,108,104,111,99,119,123,96,105,105,119,99,101,96,113,104,109,100,91,110,101,94,101,102,107,105,102,113,107,96,101,114,108,93,113,95,105,101,102,93,108,113,110,109,97,98,109,108,103,111,91,107,102,98,103,108,104,103,106,116,107,105,103,91,106,105,100,110,105,101,106,102,98,103,101,106,100,101,97,102,96,99,103,109,98,92,100,108,107,101,101,105,94,107,106,107,104,105,111,99,115,111,95,100,112,108,111,108,94,99,108,109,93,101,103,95,101,104,101,105,84,108,110,98,102,118,109,110,98,104,106,113,100,113,115,105,101,105,99,122,99,116,106,96,103,101,88,101,60,99,90,103,96,94,107,108,109,108,99,121,99,92,96,96,97,105,102,102,108,105,114,117,91,108,112,105,103,102,98,103,109,115,99,111,119,108,102,116,112,96,103,103,104,103,93,87,100,103,105,103,109,99,87,114,109,103,96,102,96,104,102,110,105,111,106,105,96,95,107,104,94,116,113,91,105,99,111,122,96,100,101,103,106,111,102,90,91,99,107,107,90,102,114,99,102,91,111,106,103,105,103,103,104,117,96,95,112,96,96,107,77,99,102,99,111,114,116,99,112,89,114,109,101,95,104,108,101,99,93,112,104,104,104,101,96,105,94,95,109,87,102,94,87,118,95,100,102,112,100,106,100,80,103,104,107,113,106,95,98,83,117,105,100,105,105,101,101,99,96,104,102,110,111,119,114,106,104,116,105,107,87,97,107,116,105,102,108,112,105,99,97,99,104,107,98,106,107,105,101,87,100,106,104,103,91,119,113,103,100,107,78,99,108,98,99,102,113,88,93,101,102,103,96,117,105,105,100,102,102,99,95,100,97,96,111,92,90,110,102,102,100,92,90,101,99,95,118,105,116,113,118,100,113,107,111,107,104,115,104,103,100,95,91,95,89,101,115,100,101,101,102,103,102,95,103,124,98,99,104,103,94,103,107,117,99,103,103,99,114,99,116,111,105,111,100,112,95,103,110,91,94,97,105,105,106,113,109,110,108,94,99,104,108,111,94,93,107,102,102,108,103,105,102,101,95,91,107,104,106,99,97,100,99,98,87,112,108,105,81,107,113,94,103,107,107,102,110,94,112,109,100,105,99,107,99,113,99,106,95,115,95,99,106,100,99,111,104,101,104,103,104,111,104,100,116,110,103,124,107,94,99,110,100,98,97,105,103,95,101,102,94,107,107,101,103,102,102,84,107,102,89,107,110,90,96,114,106,104,97,99,104,97,96,111,95,102,94,120,95,94,102,109,104,107,102,95,110,106,96,94,111,102,113,100,103,100,103,102,102,97,108,115,107,108,106,105,110,109,106,98,118,93,104,103,90,102,107,94,90,103,98,101,91,106,109,105,95,95,98,106,106,98,82,97,114,109,99,90,99,96,105,101,93,101,108,95,106,105,99,105,100,100,103,99,111,116,95,107,110,104,100,106,96,102,119,104,99,116,114,101,101,111,106,113,98,119,110,107,104,100,107,116,106,108,109,103,104,89,102,107,110,100,108,87,97,101,104,104,107,109,113,103,87,109,108,99,105,95,102,99,102,112,100,113,102,108,111,94,99,100,99,108,108,95,114,117,112,94,112,124,110,113,109,109,102,105,103,106,100,99,109,109,127,110,104,94,105,114,105,103,107,119,95,107,106,104,124,109,109,107,105,103,98,105,108,94,108,99,99,98,105,94,95,100,95,111,114,109,106,116,108,102,97,105,105,121,103,112,109,83,110,111,101,108,111,109,106,100,105,109,101,95,104,109,96,100,100,106,109,86,105,100,112,112,102,96,105,111,105,91,117,103,99,106,102,100,113,99,106,116,113,96,102,102,107,103,107,91,96,103,104,99,113,92,100,108,108,110,91,105,105,100,105,109,121,119,92,107,103,97,95,96,105,100,99,103,101,113,108,106,98,106,95,118,105,96,108,102,98,105,109,97,95,113,99,109,101,109,115,102,102,109,95,104,94,101,98,110,112,99,109,106,104,117,113,106,110,116,119,107,99,110,113,102,97,111,109,117,96,104,93,100,97,114,97,103,98,104,102,109,101,105,124,106,98,98,97,95,111,95,103,112,98,113,103,114,108,106,73,96,103,100,80,97,92,105,95,110,102,95,93,109,95,92,95,100,108,107,108,103,94,102,107,95,109,96,105,100,104,102,94,102,103,105,93,97,103,112,104,106,116,104,106,106,95,108,115,110,109,114,101,128,98,100,89,97,113,110,109,94,102,99,114,96,106,101,113,104,99,103,108,88,106,103,124,109,97,98,105,110,97,90,99,98,94,101,95,117,112,100,109,112,70,102,100,116,101,96,105,107,104,87,105,105,104,95,98,117,98,99,110,110,99,115,110,103,104,112,100,104,113,127,112,112,104,113,120,114,108,100,101,104,104,101,99,110,97,110,103,96,97,112,95,101,107,105,110,109,106,106,99,93,102,106,117,94,109,101,98,107,102,95,115,98,99,100,109,120,99,102,111,110,90,107,107,93,117,101,111,119,108,108,116,97,96,94,122,106,109,91,111,100,107,104,91,101,108,100,91,98,110,107,108,102,108,110,94,88,108,113,100,99,100,110,113,97,104,113,98,104,106,112,107,102,116,97,96,97,112,101,98,109,99,95,99,112,111,102,103,102,106,115,101,110,108,99,104,109,89,99,112,101,99,109,122,91,100,103,99,96,102,95,104,108,109,108,104,94,95,107,109,108,104,103,106,121,109,103,109,104,100,106,92,105,111,113,109,103,94,117,105,100,95,104,105,109,99,101,115,109,113,102,106,100,95,103,115,95,95,99,108,110,106,100,105,100,104,84,103,105,108,103,107,103,111,97,99,125,99,100,107,105,102,89,100,112,98,109,98,101,104,103,108,103,101,100,95,107,99,107,105,108,106,94,94,105,107,105,105,110,119,102,94,104,100,105,98,93,94,126,105,96,100,108,94,105,94,106,116,93,115,87,96,109,121,93,108,114,91,95,102,96,98,103,114,95,105,109,116,109,113,100,96,114,111,111,100,111,100,96,84,110,100,103,102,98,102,97,107,109,84,101,106,106,95,102,104,100,104,100,108,111,92,106,118,109,113,95,102,102,95,109,100,115,108,105,100,104,107,105,99,102,108,99,100,101,105,101,102,106,104,109,104,107,111,99,101,113,108,110,116,100,108,108,91,103,102,95,108,109,95,117,91,102,108,89,89,90,104,94,101,102,114,88,97,97,100,110,98,109,97,107,93,103,95,108,97,102,105,100,112,98,105,106,110,94,106,109,99,111,102,106,94,100,102,99,110,94,120,99,104,109,91,101,98,90,103,110,100,104,105,105,120,96,107,109,91,102,88,110,105,102,101,104,105,105,94,103,112,108,106,103,111,92,87,101,101,100,113,99,105,106,108,89,108,111,117,104,101,107,102,106,98,100,95,108,101,100,98,109,108,118,111,108,92,115,100,104,110,85,99,108,99,114,91,106,101,104,111,95,76,121,100,105,103,89,104,113,111,111,106,110,107,93,104,102,95,95,122,108,108,95,105,96,107,116,101,92,112,99,101,84,100,89,83,93,102,103,108,108,102,107,98,113,107,92,113,111,99,116,101,101,110,101,97,112,103,99,118,104,109,98,104,81,113,102,98,103,100,98,92,98,111,108,106,89,94,108,104,100,112,105,99,114,104,95,107,98,107,109,107,87,92,111,131,108,101,102,103,106,107,102,101,101,93,101,91,96,102,102,106,104,102,77,84,107,105,112,110,100,112,97,101,94,117,102,112,93,102,104,105,108,105,100,98,99,109,108,107,98,106,110,106,102,97,113,107,102,131,111,102,115,106,102,98,85,109,107,101,101,85,110,113,99,113,95,97,105,103,106,98,102,101,104,97,94,100,99,97,96,92,102,91,130,101,103,104,103,90,109,105,101,97,113,104,95,119,107,107,101,93,103,107,105,119,110,107,107,96,83,109,107,98,94,109,115,108,95,91,102,110,114,110,102,102,93,100,103,104,115,106,123,101,106,108,99,103,97,99,99,100,91,90,105,104,102,99,90,101,102,101,103,101,107,105,85,107,93,104,101,104,91,105,111,99,98,105,99,105,105,110,96,103,108,104,109,105,109,112,120,96,106,98,95,96,113,106,98,67,113,113,102,99,104,101,103,106,101,111,103,102,105,106,99,104,104,91,121,93,107,113,100,111,97,104,100,110,113,98,100,111,104,98,102,101,112,105,93,123,100,112,102,99,104,110,97,96,104,101,98,106,102,113,111,107,117,102,99,115,98,87,109,103,108,104,109,100,115,106,109,114,100,98,116,107,107,108,96,106,113,105,108,103,97,107,97,101,109,104,90,115,99,94,102,102,92,109,101,100,94,110,97,98,100,113,97,100,94,114,96,95,95,100,110,102,109,91,103,114,102,97,103,98,97,106,99,106,92,114,88,109,102,99,90,114,104,106,108,90,96,99,106,109,101,104,91,117,94,119,113,91,105,97,106,96,100,98,94,97,112,111,98,98,117,69,95,106,112,108,109,95,104,107,110,97,98,91,92,103,107,109,113,106,109,99,99,92,100,111,103,116,98,101,105,98,108,91,112,115,103,99,90,104,88,107,107,93,98,105,97,106,98,91,101,89,104,106,91,98,101,101,105,117,106,98,107,111,88,109,103,98,110,99,103,97,98,94,101,71,96,101,109,102,85,107,116,106,111,115,106,90,91,109,116,99,98,120,95,92,116,99,104,100,106,100,102,113,106,101,117,85,103,88,98,102,94,103,103,109,99,115,97,101,95,98,100,102,115,105,97,117,98,107,100,98,103, +503.26837,109,111,88,107,80,115,95,106,95,104,100,111,101,68,90,99,109,104,99,86,105,101,103,106,93,117,105,101,131,114,112,104,98,113,104,105,99,102,101,108,87,96,98,104,94,100,99,108,102,110,95,98,104,116,103,106,107,91,113,101,104,106,92,112,103,96,103,71,96,83,111,103,105,117,106,114,101,91,113,98,112,104,98,92,98,116,95,94,104,86,102,107,107,109,97,102,108,101,91,100,101,110,96,114,118,98,95,79,104,97,98,104,109,113,106,109,96,107,107,109,112,103,92,106,107,113,105,101,97,103,99,97,93,105,102,108,93,100,105,89,94,106,106,107,118,104,110,107,101,120,99,92,98,104,108,88,101,102,107,104,102,110,114,98,119,106,102,100,107,95,96,100,95,105,116,100,105,91,101,95,99,103,107,100,101,100,96,95,77,97,87,91,104,105,99,100,108,112,107,104,111,102,101,103,116,110,108,104,95,112,101,99,95,103,116,111,83,115,92,93,101,112,106,118,96,102,95,113,105,103,109,100,109,114,112,111,105,113,72,97,99,105,99,111,86,99,102,107,105,98,98,112,103,116,97,101,103,103,97,93,104,96,103,97,110,96,99,95,93,96,89,94,111,107,102,119,107,104,108,99,98,98,110,104,113,101,97,97,109,98,98,95,108,110,114,100,100,102,132,101,112,97,99,107,98,104,107,107,100,103,99,112,99,94,103,81,92,110,98,96,95,100,107,105,96,105,116,96,112,103,99,113,110,97,111,81,102,102,104,115,100,102,127,102,102,100,108,110,116,106,116,97,96,104,100,105,108,97,95,105,96,104,88,95,100,102,109,109,99,104,101,93,122,108,99,97,105,100,96,105,112,102,112,95,113,94,106,108,105,114,109,98,102,123,109,106,109,104,101,108,106,82,101,88,110,100,100,110,96,110,93,101,115,105,105,101,105,94,104,106,113,98,110,102,109,97,102,91,110,96,87,96,112,101,105,109,107,104,106,91,105,110,95,94,105,105,106,96,106,109,111,98,108,116,109,99,102,104,107,96,104,90,110,113,101,96,103,103,103,77,106,105,108,97,97,101,107,111,117,109,95,103,100,97,100,98,104,106,111,98,97,102,110,94,96,104,105,95,82,105,131,97,111,102,103,108,88,102,108,103,109,105,100,102,95,106,104,105,99,106,98,104,98,105,102,105,105,110,105,105,106,96,103,100,92,98,115,90,85,103,106,110,104,67,99,106,109,99,100,94,95,99,101,103,98,76,104,101,99,100,102,100,89,91,100,109,109,100,105,109,94,104,105,107,112,113,103,100,86,121,119,120,87,100,98,97,100,92,108,100,116,115,104,98,102,100,100,103,103,108,96,101,105,105,92,105,100,98,103,97,103,106,98,110,109,87,99,96,110,107,94,107,111,99,106,107,105,98,102,111,104,98,94,111,108,79,83,92,111,119,103,106,101,107,108,89,107,108,113,110,104,109,112,109,106,106,105,105,109,95,111,102,108,100,95,103,104,102,114,112,116,100,99,112,103,102,92,101,105,105,117,105,113,96,112,92,108,113,105,101,103,101,100,102,103,99,103,106,102,95,99,99,92,117,104,121,109,101,99,93,109,98,106,84,112,105,98,109,101,104,108,100,113,106,101,96,97,110,109,111,105,105,96,94,112,104,112,98,118,101,95,106,108,112,109,106,98,113,99,102,111,96,111,110,94,108,106,99,117,98,116,100,100,90,101,100,102,102,102,107,111,103,100,110,99,104,97,97,80,108,109,102,116,111,111,98,114,104,103,114,98,92,100,96,99,100,110,106,116,93,108,94,105,100,116,112,102,103,103,104,106,109,98,100,108,109,105,104,98,92,101,122,96,101,101,106,95,118,106,111,108,100,113,106,96,105,113,106,107,107,99,97,112,94,104,114,104,101,97,109,109,96,100,100,94,109,99,102,103,108,121,106,110,111,103,96,103,109,114,114,101,111,116,106,105,103,110,109,100,103,110,105,113,112,95,99,104,112,109,113,90,101,105,104,121,102,101,106,105,106,98,114,110,104,98,93,107,102,95,89,109,111,108,107,105,109,95,107,86,108,100,107,122,104,106,103,108,87,107,105,126,107,105,102,104,120,106,109,103,99,101,107,97,108,119,99,84,107,102,104,109,117,101,104,102,105,71,120,103,106,87,120,105,94,112,101,97,110,108,97,94,105,103,105,102,94,105,82,98,99,96,101,86,96,110,92,97,71,111,96,93,93,104,101,104,99,96,115,109,103,98,105,116,105,99,128,101,105,95,105,90,117,103,109,103,99,99,104,99,103,111,111,99,114,111,105,90,106,108,99,90,103,108,108,113,99,119,115,102,107,88,116,106,101,105,94,95,103,103,113,84,120,103,118,107,103,93,108,115,95,107,100,100,103,104,101,105,101,101,109,107,115,103,95,103,95,106,95,95,102,97,105,101,94,103,122,102,104,115,107,110,98,104,100,93,116,112,108,96,111,86,99,103,91,100,113,103,103,106,104,100,83,97,111,102,106,104,98,100,113,99,76,108,108,106,96,100,93,109,101,102,96,103,101,123,109,106,113,99,102,109,92,103,95,116,96,102,101,117,115,115,99,108,111,91,118,102,96,97,101,107,106,111,97,106,108,106,99,106,104,113,112,108,110,107,93,105,98,108,108,117,109,89,102,105,101,97,96,114,87,92,104,119,100,96,103,100,92,99,102,101,118,98,100,110,107,102,108,103,101,98,110,99,104,108,112,98,117,112,105,108,98,103,108,95,102,100,128,112,107,99,100,101,111,112,102,98,101,102,98,103,94,99,104,106,103,106,112,111,101,102,101,95,106,102,103,94,111,100,105,105,88,103,103,101,104,100,112,109,101,101,103,112,102,105,107,93,100,116,109,109,106,109,92,96,111,100,91,100,98,97,113,99,100,108,109,110,107,108,128,102,98,97,98,96,106,106,102,89,97,110,109,91,106,112,113,100,102,105,106,109,111,109,112,103,105,103,94,105,95,95,101,98,116,111,95,102,102,93,117,101,104,98,108,98,107,107,98,111,111,97,95,102,107,93,111,108,102,115,113,119,100,92,102,121,69,105,99,109,104,102,107,102,120,106,110,100,107,103,113,99,93,103,104,104,99,108,101,99,108,96,114,107,134,123,112,104,79,115,105,108,105,121,97,107,107,108,105,102,112,98,96,109,101,105,91,102,98,105,111,100,110,96,97,106,95,100,101,105,101,108,105,100,107,114,115,105,117,101,109,99,108,107,109,104,107,100,113,104,109,106,91,102,104,128,102,112,98,103,100,122,121,96,110,117,98,98,105,107,90,101,116,116,90,111,108,95,101,109,101,94,112,108,107,102,99,96,96,108,101,105,91,104,108,92,119,107,105,101,102,121,113,107,109,97,121,115,79,98,113,95,102,101,105,101,105,100,109,97,111,106,105,87,98,85,105,100,100,90,100,100,103,103,95,108,116,117,97,96,106,97,107,115,104,98,111,105,112,119,95,107,105,112,121,111,105,105,103,121,112,90,113,109,84,110,102,93,112,102,93,104,101,107,102,88,100,106,102,91,104,112,104,91,113,98,113,113,117,94,104,102,93,105,101,106,101,113,105,93,101,108,112,117,106,99,101,108,101,98,97,107,99,98,123,101,98,95,105,108,108,106,116,100,102,103,108,92,98,112,110,104,104,106,104,94,100,109,104,98,98,97,105,108,114,103,113,102,96,99,106,98,103,93,101,103,100,103,94,69,122,96,101,105,94,99,106,114,105,110,109,102,103,99,106,100,106,101,83,104,105,113,110,105,104,98,94,101,94,134,106,104,111,100,105,101,123,99,119,101,104,114,97,126,127,100,109,115,99,99,87,102,97,98,101,101,90,106,87,109,105,102,97,117,105,109,110,106,89,105,98,97,104,115,108,107,107,99,111,104,121,91,103,101,93,101,111,96,106,99,103,96,104,102,120,88,106,100,97,105,99,108,77,99,107,108,109,100,99,112,94,106,109,101,95,105,96,102,102,102,114,103,101,87,96,119,109,100,97,98,94,116,102,102,106,109,106,106,106,102,72,99,108,103,106,108,116,85,111,98,105,101,107,94,111,108,103,97,96,97,116,112,76,93,110,112,102,104,107,97,107,121,102,100,92,78,98,103,92,101,89,98,113,101,107,81,105,106,114,109,110,107,114,99,108,104,106,109,108,104,99,108,121,92,110,103,107,107,110,93,102,103,99,99,103,92,114,87,102,88,101,104,106,105,95,93,102,120,99,112,108,99,95,103,99,104,121,102,96,104,104,95,100,115,104,105,94,109,111,101,93,110,99,110,105,102,93,103,104,79,107,99,110,112,109,98,105,107,112,108,102,101,109,98,107,87,101,119,103,112,108,101,106,84,104,110,104,88,95,103,97,103,104,111,95,99,105,116,106,87,101,100,98,106,88,93,94,110,102,113,110,103,111,100,109,93,116,105,90,99,119,100,92,104,99,107,92,109,102,113,91,102,96,94,113,100,105,94,107,96,104,93,110,104,102,108,96,109,94,107,103,107,106,99,103,89,76,111,82,92,109,102,97,99,116,92,112,93,99,98,116,107,97,99,110,92,103,86,102,108,101,105,99,109,99,105,109,112,108,97,105,103,83,100,131,98,94,103,105,109,113,109,102,101,101,115,99,103,99,104,97,101,108,92,103,113,99,117,102,100,90,108,100,107,99,104,93,105,96,84,89,101,89,107,98,95,106,103,95,101,106,99,101,110,100,103,98,99,95,98,107,90,100,104,96,116,98,98,96,100,117,91,95,96,118,97,102,101,99,106,106,105,107,105,90,105,107,97,107,104,97,110,94,104,108,124,105,101,103,102,98,103,109,110,79,114,114,100,99,103,106, +503.40903,91,97,87,106,112,97,101,101,85,104,93,111,90,104,110,86,105,108,98,97,105,94,103,107,104,90,104,105,100,109,108,111,118,101,108,102,123,89,99,100,101,112,107,107,120,110,92,101,105,106,96,109,98,84,119,94,100,105,97,104,108,115,104,97,103,100,98,104,99,100,102,111,111,99,98,112,116,95,106,100,101,96,100,102,109,105,106,109,94,111,96,98,106,105,99,98,110,110,100,106,105,106,120,105,106,98,92,101,105,105,103,77,109,107,119,96,113,115,101,108,119,91,115,105,92,131,107,109,102,111,101,112,102,104,111,112,108,103,113,98,109,101,118,105,105,103,103,97,99,108,110,108,108,94,111,99,94,108,114,118,100,100,111,103,108,98,97,100,106,95,105,110,101,107,95,95,108,106,106,105,117,124,101,79,113,106,103,102,99,100,99,119,104,106,104,99,114,98,110,109,109,105,101,104,105,99,96,112,117,111,104,105,104,100,106,108,112,112,105,104,117,102,92,103,92,107,95,104,108,102,101,107,103,88,105,105,106,97,104,100,103,101,111,110,91,97,109,114,98,102,100,94,119,115,119,116,113,114,105,95,97,110,99,99,90,108,103,100,116,97,107,100,108,91,111,111,97,110,100,93,115,89,118,104,107,113,108,100,106,105,98,118,107,104,120,109,115,104,107,112,102,113,95,110,97,111,102,113,112,109,92,113,107,106,102,112,63,102,100,110,90,106,100,104,108,108,118,91,106,103,107,100,108,102,101,100,102,92,114,109,95,100,106,109,115,110,103,109,120,110,124,106,100,99,97,99,115,93,121,102,104,109,97,102,103,94,124,111,105,106,104,102,110,95,101,98,122,104,109,99,100,108,111,107,101,103,115,109,106,104,110,110,104,105,102,99,96,107,104,107,113,116,109,103,104,111,104,100,100,120,97,111,111,105,99,105,96,104,111,101,97,107,106,106,102,99,101,102,106,113,101,100,103,106,116,99,100,112,114,97,113,103,101,87,103,112,111,85,112,105,110,115,107,99,109,102,105,105,109,108,110,117,113,106,99,115,96,105,102,98,116,98,83,95,100,106,101,114,95,101,98,100,116,102,103,91,97,104,106,117,97,106,100,108,116,104,103,108,103,103,104,104,107,104,99,102,107,94,117,114,114,107,103,112,110,90,103,98,99,99,102,90,98,111,112,103,105,113,106,115,94,120,110,109,96,116,71,96,106,95,96,107,100,105,110,98,108,116,101,109,114,103,97,117,107,111,104,110,120,104,104,102,95,124,108,104,102,105,96,104,94,104,106,102,111,116,102,105,98,105,99,98,109,99,98,104,105,107,108,119,100,109,116,99,112,105,101,97,106,110,119,99,105,108,121,116,101,101,103,105,109,100,106,109,114,93,95,98,91,104,96,114,103,101,118,114,90,98,95,82,103,114,98,108,92,106,114,94,106,105,103,118,101,105,94,95,95,107,90,106,111,108,109,108,106,111,108,112,99,117,109,108,110,113,91,102,109,108,97,98,104,110,97,97,100,113,98,102,112,92,111,104,88,109,95,104,100,116,106,109,105,104,103,103,101,105,110,97,101,102,105,97,104,110,95,99,98,111,104,108,110,118,110,100,103,105,113,106,91,98,109,115,105,109,105,106,102,138,110,103,107,124,105,107,105,99,107,98,110,98,108,98,102,101,97,103,107,108,104,99,118,103,99,104,116,108,110,106,107,99,117,113,93,99,107,78,114,101,100,113,108,94,107,112,119,99,100,94,113,113,101,114,93,110,112,97,99,107,95,114,104,101,111,106,132,95,99,83,103,96,103,106,113,107,102,103,101,100,101,109,106,103,106,98,112,100,100,114,97,99,96,111,117,96,108,105,134,116,107,101,108,104,103,94,102,96,102,112,113,109,115,96,108,108,112,106,91,91,82,110,111,112,103,110,96,109,98,108,98,95,112,113,123,107,102,109,101,113,108,120,100,105,101,112,97,101,116,91,106,104,104,104,78,109,105,97,103,104,104,95,115,110,105,113,96,118,104,109,113,112,90,107,103,103,102,112,102,91,104,106,103,101,110,105,114,90,107,95,99,114,100,103,116,104,116,113,105,99,90,112,101,105,107,99,80,109,107,115,102,101,97,95,102,111,97,114,105,104,94,110,102,108,79,106,112,109,98,109,121,100,109,99,108,110,106,104,96,104,108,109,96,87,113,84,109,104,116,100,98,110,103,110,112,98,98,102,104,95,120,101,105,106,109,98,114,117,95,101,105,113,99,96,97,86,109,101,98,115,94,108,102,103,108,106,108,104,108,100,109,106,106,117,100,94,104,102,104,106,117,103,106,99,114,109,100,102,114,115,103,109,108,97,69,102,101,97,106,114,113,92,104,121,99,98,103,91,108,112,115,105,105,117,104,97,104,95,107,105,102,107,101,113,107,96,106,109,93,92,98,97,101,91,102,111,113,115,104,81,105,101,102,102,103,108,97,98,113,109,95,93,92,107,109,118,106,116,101,96,100,103,93,107,106,93,101,92,104,105,87,125,99,109,106,109,103,105,84,112,110,95,113,99,98,93,100,103,106,113,109,98,105,91,96,109,112,101,115,101,111,107,103,109,108,96,101,99,104,107,100,106,100,107,106,95,121,95,96,104,102,97,98,77,114,94,92,109,104,91,109,92,109,99,105,107,105,99,112,99,95,90,111,95,105,106,93,109,95,105,107,98,94,98,110,103,113,105,110,107,108,112,101,96,103,101,114,100,98,112,103,100,105,100,103,104,100,95,103,100,106,100,105,109,110,104,102,94,104,108,108,102,109,104,106,98,105,95,125,100,100,68,96,93,121,110,91,96,106,98,113,111,111,103,103,112,108,98,103,87,98,102,104,99,106,105,108,115,104,96,108,98,109,110,106,104,103,108,104,113,95,92,108,104,133,111,102,106,107,101,106,110,104,112,103,101,109,105,104,98,95,98,98,93,100,109,106,106,105,102,110,99,92,106,95,111,101,110,105,101,92,107,96,85,103,110,104,107,125,89,101,95,111,111,121,101,100,103,118,95,86,110,102,113,96,107,97,94,101,103,96,95,108,106,102,101,111,103,99,95,100,106,92,109,96,106,113,128,98,99,98,100,103,97,103,113,118,103,101,106,104,95,100,96,103,94,100,102,106,100,105,107,108,100,108,120,103,118,98,102,108,100,109,102,110,95,116,102,106,100,93,108,88,97,101,97,98,104,109,106,110,95,109,89,103,102,96,96,100,111,93,98,109,99,97,110,107,95,105,108,94,101,102,107,101,108,105,109,113,106,95,102,119,117,119,115,107,124,80,105,104,103,105,107,110,113,113,108,98,110,97,95,110,100,112,103,103,97,105,104,113,98,115,86,95,108,99,87,98,106,110,100,103,99,106,112,93,102,111,105,106,101,101,96,113,102,98,117,107,95,100,113,117,96,102,101,107,97,108,100,108,97,122,84,88,90,102,114,102,86,109,88,102,115,106,108,104,116,106,102,110,92,97,110,101,113,110,106,98,107,96,109,89,113,116,103,98,95,96,110,119,105,111,106,97,96,105,103,108,90,104,103,102,88,93,103,104,102,107,95,105,107,110,110,110,108,91,85,105,106,110,115,107,112,113,85,111,101,112,105,94,116,115,107,106,111,94,112,83,86,114,103,118,114,96,115,105,92,99,105,105,107,102,101,105,108,110,97,112,103,106,107,103,95,115,110,103,101,93,99,101,100,88,107,102,104,98,102,95,97,110,107,99,104,111,105,101,92,105,99,132,98,91,107,114,110,112,76,106,115,91,108,123,98,113,110,106,98,114,98,110,113,97,107,97,105,100,102,105,116,105,110,105,108,100,109,102,101,116,103,111,102,104,110,103,104,112,101,111,97,102,104,107,81,106,109,116,97,107,111,102,106,91,103,112,99,110,102,105,98,98,100,108,106,104,96,101,113,90,105,99,99,113,102,100,98,91,113,95,110,107,109,115,95,104,106,107,97,87,107,110,107,110,101,112,111,99,102,101,90,119,105,90,95,95,109,106,99,99,110,104,112,100,106,108,97,87,119,111,100,101,96,96,111,96,111,103,121,107,106,112,89,87,108,95,92,106,107,84,99,106,100,102,97,110,101,100,99,102,103,125,104,117,109,108,102,95,107,113,87,102,92,104,104,94,109,92,105,98,104,106,101,98,106,106,104,101,103,105,111,100,103,121,100,110,94,102,103,100,120,108,103,113,100,107,97,107,101,106,100,103,112,103,94,110,116,99,92,102,92,87,111,95,113,103,109,105,108,94,97,120,103,104,111,105,109,98,104,102,106,102,98,115,94,110,99,105,114,97,108,117,108,113,100,106,103,103,94,98,85,110,102,93,91,96,99,98,105,91,99,113,98,96,102,102,117,105,108,98,104,106,110,97,108,96,88,102,99,88,114,106,112,84,106,104,106,98,108,96,92,110,110,84,90,116,108,102,113,95,109,103,102,106,109,95,117,95,111,104,106,106,106,95,108,113,93,100,87,101,97,87,101,100,108,105,102,112,95,93,103,112,101,97,102,103,111,103,104,110,98,108,101,106,97,103,121,101,104,109,117,99,91,91,95,101,95,96,106,102,135,97,80,108,97,104,98,110,105,102,105,115,91,89,102,106,102,115,84,113,96,113,106,105,108,101,102,103,97,96,109,106,101,107,104,105,90,94,99,94,110,105,97,99,91,101,103,104,104,97,93,113,93,107,119,99,106,94,95,96,101,106,100,107,98,92,107,111,110,115,105,101,100,104,100,110,95,110,106,117,97,92,110,107,102,99,99,115,103,94,113,105,99,79,103,98,94,83,107,93,99,109,107,91,113,104,95,104,100,97,109,96,92,123,112,111,104,112,99,98,101,104,134, +503.54968,115,104,102,112,91,100,96,97,115,99,94,92,104,113,118,116,108,110,108,105,104,104,104,101,117,108,100,104,100,101,114,102,110,112,99,109,101,95,104,105,105,101,125,106,86,110,92,98,99,102,87,111,105,103,100,102,101,96,107,116,93,105,105,94,89,125,99,123,102,112,92,109,112,112,106,111,109,107,121,86,102,103,107,105,98,98,111,111,101,103,110,107,111,99,107,118,99,104,107,99,104,122,95,105,110,110,108,99,110,104,97,102,107,100,107,101,106,108,100,104,110,96,106,105,99,104,107,103,113,107,104,108,100,108,99,111,127,114,96,116,103,109,98,100,113,102,99,104,92,83,100,117,109,93,98,110,113,114,108,99,94,94,105,114,108,114,107,97,97,97,98,97,96,96,110,106,108,104,112,109,108,95,100,107,108,113,117,107,108,103,109,104,107,103,100,118,101,113,96,115,99,107,99,108,109,97,97,97,115,106,100,109,103,107,109,108,116,92,110,105,107,137,107,109,105,107,116,113,105,109,112,102,123,102,121,101,108,112,110,104,112,123,104,103,101,109,95,111,104,102,106,105,101,117,104,107,91,103,92,100,106,115,104,107,106,99,104,99,96,102,103,110,107,104,99,105,100,111,113,101,99,105,95,109,107,111,105,113,100,95,102,93,90,102,111,94,106,110,102,100,109,95,112,107,107,114,96,117,113,100,103,114,101,102,108,103,98,98,102,101,99,91,104,108,107,109,99,98,103,108,112,97,114,108,119,104,102,94,101,105,110,110,92,105,107,109,121,113,114,94,117,111,105,94,110,104,102,107,108,100,97,98,103,108,95,90,105,115,105,105,117,104,106,102,93,100,100,95,98,112,109,94,98,101,100,95,97,102,104,106,121,98,94,104,112,105,96,107,99,118,109,106,96,102,107,102,97,102,101,102,95,103,96,100,100,85,109,98,109,105,104,111,118,110,108,88,107,108,102,114,95,105,94,107,104,99,99,105,98,103,115,110,109,103,111,104,99,102,102,116,107,91,110,115,100,111,107,114,112,110,111,82,107,101,113,99,108,113,116,88,114,108,106,97,111,119,105,112,104,113,105,104,117,96,98,98,102,98,104,99,80,106,118,106,103,106,96,111,103,112,113,105,105,99,112,107,99,110,106,96,100,108,118,102,103,118,102,112,124,101,114,113,110,112,106,103,103,106,109,115,105,123,115,102,113,82,105,98,107,101,102,106,105,101,104,98,108,99,110,109,116,112,100,107,99,102,113,105,108,99,126,107,104,107,107,73,108,98,96,100,106,99,103,109,102,95,88,103,106,105,113,103,93,114,102,103,102,107,106,98,105,112,113,111,106,102,91,109,100,110,98,108,104,104,106,116,83,106,109,95,112,106,90,113,113,105,109,109,118,116,114,104,96,96,106,99,97,98,111,92,86,110,102,104,95,108,111,97,91,117,123,94,99,101,105,103,109,106,104,111,98,99,118,109,126,106,100,104,116,100,100,98,98,102,101,108,103,102,97,109,109,103,108,95,99,99,107,123,112,101,104,117,100,114,94,107,102,109,101,117,96,92,98,99,108,104,108,95,107,99,105,97,101,93,101,72,104,99,95,113,100,103,106,101,98,104,107,97,88,97,102,106,115,111,104,107,104,94,120,117,103,103,122,95,95,118,113,102,110,108,116,95,79,101,117,107,111,109,112,111,104,106,112,117,98,103,110,103,115,91,94,103,91,107,108,119,102,109,110,97,112,95,98,98,104,122,103,107,102,90,100,106,106,112,104,111,109,110,108,106,110,110,103,114,108,106,101,99,110,111,102,114,111,114,109,110,109,107,108,102,113,103,102,109,103,111,104,101,103,118,109,109,102,104,111,106,104,106,107,101,99,93,108,106,119,109,100,102,97,104,96,109,103,102,105,117,125,104,92,97,100,109,122,103,98,115,95,94,99,106,104,109,109,104,99,94,108,103,113,114,107,104,102,114,96,105,125,116,97,116,107,105,109,110,85,100,110,103,108,95,107,105,115,110,105,90,105,101,96,103,102,111,111,86,110,113,113,110,107,109,108,112,103,108,112,104,113,111,91,119,103,108,106,109,102,97,126,105,112,109,109,109,99,117,99,106,106,109,103,104,108,107,116,94,105,103,102,108,110,79,113,111,108,103,102,104,104,102,107,118,112,106,108,102,106,121,100,110,109,112,106,109,96,104,98,114,111,110,90,99,98,104,102,97,106,113,92,113,108,98,108,105,106,96,95,108,94,107,104,109,117,84,114,109,109,106,108,107,108,108,110,117,96,105,100,107,96,125,93,99,101,112,107,102,101,101,102,90,106,88,102,88,109,109,109,99,99,103,107,92,99,94,113,113,85,103,104,92,104,104,107,106,109,103,100,104,116,95,100,96,100,109,123,112,99,96,99,96,104,68,102,112,100,115,96,109,99,103,104,109,61,101,103,101,105,115,103,111,102,101,107,102,114,102,95,103,110,99,125,112,113,84,115,103,98,104,97,108,113,111,102,111,103,109,103,107,101,106,105,106,97,112,103,113,106,106,98,111,101,101,102,117,104,115,103,116,98,109,107,106,109,106,104,107,108,106,111,112,113,102,113,97,109,117,104,107,113,110,104,116,105,107,109,104,109,111,95,108,114,105,116,100,99,114,93,99,102,120,118,106,109,108,91,98,109,100,111,110,87,111,104,99,110,113,105,104,105,101,104,98,107,89,112,83,107,112,98,110,100,104,95,106,104,114,122,95,110,108,98,107,107,109,97,111,119,110,98,105,99,105,100,110,100,109,99,117,110,99,110,121,127,110,111,103,106,112,110,103,100,96,110,105,96,109,101,113,124,75,91,109,139,107,108,109,111,95,103,112,112,116,109,103,103,109,100,93,68,101,93,105,109,99,108,97,114,108,109,107,104,106,107,116,111,106,103,104,85,93,107,103,113,110,104,109,106,118,98,98,99,96,102,101,100,109,108,108,91,102,101,122,116,113,98,121,109,108,112,100,101,103,100,99,113,118,113,77,101,102,95,113,111,118,117,125,106,101,124,110,117,116,95,127,101,100,111,105,106,103,108,108,106,95,94,103,117,105,108,104,105,91,94,101,110,111,117,99,109,105,113,108,108,104,101,106,103,105,102,134,103,106,101,123,113,97,110,107,102,98,98,119,111,109,102,103,108,132,110,111,102,95,101,102,108,95,96,103,113,114,104,105,106,92,94,103,110,104,103,103,112,116,103,107,114,97,103,93,108,109,100,112,99,90,105,106,98,93,109,115,102,109,99,99,106,109,105,109,102,116,101,97,111,109,109,111,100,106,105,100,113,97,103,104,126,94,116,110,115,108,100,92,106,104,103,107,109,97,102,97,106,109,78,100,113,118,110,109,89,112,103,95,98,105,105,100,104,102,98,97,117,113,103,106,109,100,115,101,110,116,106,105,94,104,115,105,102,116,106,109,106,98,106,100,107,108,107,107,100,108,102,109,103,115,82,107,110,97,105,103,113,112,97,116,102,109,105,108,105,116,106,118,106,109,107,88,102,114,103,104,110,112,106,101,112,94,102,121,106,114,102,103,107,102,98,116,105,113,97,105,113,102,107,108,107,101,103,99,117,115,96,128,110,103,79,110,105,111,107,108,108,107,104,101,110,107,96,102,107,109,99,102,100,111,101,110,105,94,106,95,99,107,82,102,113,106,106,105,116,106,99,94,99,105,106,95,107,97,98,109,101,106,98,108,104,89,108,113,117,117,101,107,102,119,113,102,101,94,104,100,117,97,106,108,108,95,90,99,100,113,106,85,104,121,115,99,98,109,93,120,106,110,102,102,113,100,100,117,111,90,104,99,87,96,104,114,113,109,105,104,100,99,103,112,109,123,95,104,115,99,100,103,113,100,102,101,104,100,105,106,103,87,100,107,116,98,105,109,92,104,114,106,107,127,100,122,103,93,106,86,96,96,109,99,102,103,113,99,94,104,112,89,102,116,99,100,110,104,101,108,141,113,110,104,100,103,108,105,105,117,110,100,108,104,99,110,113,117,95,103,106,141,96,110,98,110,104,114,94,106,95,85,103,103,104,75,114,106,107,116,110,108,100,104,98,101,106,115,100,106,107,107,115,105,100,118,100,102,126,101,110,128,110,105,109,113,115,97,119,93,88,102,98,101,119,101,105,112,106,114,120,99,120,87,111,106,94,92,116,117,95,111,110,113,109,106,104,104,96,110,99,105,96,103,104,101,108,111,107,99,102,92,110,98,123,114,100,110,108,100,103,102,112,96,104,112,99,105,107,109,106,101,104,114,109,98,117,106,104,105,111,104,107,104,98,109,102,110,112,113,113,105,103,111,91,105,109,111,113,99,115,110,104,119,120,101,99,100,109,103,107,95,97,91,93,106,104,117,101,103,100,114,107,103,101,104,108,112,102,110,122,104,106,103,113,108,115,113,94,87,100,102,104,108,110,108,99,103,101,105,100,109,103,106,107,107,113,108,108,99,109,103,102,94,113,101,95,104,106,117,109,96,110,94,98,106,107,106,96,101,109,112,111,113,109,103,102,99,106,104,109,109,114,103,115,99,120,100,107,123,103,99,105,100,107,110,91,109,119,114,94,103,105,93,117,92,104,109,104,117,115,123,109,103,102,87,101,106,104,77,113,108,100,117,101,116,105,105,119,124,99,118,115,113,121,100,105,120,106,103,102,120,91,102,112,108,106,108,117,113,108,104,100,102,113,103,99,100,115,103,99,98,84,111,115,110,100,99,111,93,99,109,105,110,113,98,115,107,109,105,91,110,111,100,91,103,107,91,116,100,142,94,105,104,100,105,104,104,101,98,106,99,114,90,102,113,100,102,103,115,102,105,103,104,100,105,91,104,102,108,88,102, +503.69031,101,106,98,92,97,91,86,103,94,95,107,100,96,107,115,95,101,115,101,107,103,101,103,111,105,89,100,85,116,102,99,112,93,95,107,99,111,97,103,93,99,102,110,102,104,107,94,103,94,100,99,99,104,100,111,79,98,110,96,107,96,107,101,101,118,111,105,99,92,109,94,99,92,112,91,115,100,94,116,92,95,113,113,100,104,98,113,106,104,105,102,99,103,100,112,105,103,91,100,98,105,110,95,100,102,102,116,101,103,105,105,97,104,101,95,109,104,94,111,117,105,95,117,100,95,117,99,101,106,110,94,123,91,96,90,110,105,101,103,97,97,109,98,86,89,84,101,105,111,108,105,102,98,97,102,106,142,103,111,97,111,104,113,99,103,112,103,112,114,99,98,102,77,100,97,111,106,116,107,102,106,87,94,106,98,94,90,94,111,90,111,107,98,105,105,106,119,91,109,110,101,98,92,106,98,91,97,98,109,106,108,108,109,124,101,93,101,113,107,110,94,96,102,104,97,104,109,105,104,94,104,119,97,102,99,71,99,110,111,100,104,99,100,96,101,120,96,102,125,113,102,104,104,90,100,106,101,95,107,107,94,101,104,91,98,98,95,108,104,97,102,105,114,109,95,106,107,103,108,99,100,92,95,104,94,101,94,91,101,109,101,110,108,114,107,108,109,105,109,104,104,101,88,112,110,102,105,111,106,110,87,116,99,96,99,105,111,98,111,97,98,99,102,94,101,75,115,90,106,108,102,107,114,106,111,113,120,101,104,100,109,105,103,95,108,113,102,118,103,101,98,87,95,96,103,108,94,105,96,117,103,97,98,102,98,102,109,110,114,86,111,109,113,101,105,99,110,108,95,97,109,103,90,102,100,88,108,98,107,93,117,95,97,104,105,108,90,105,101,125,96,101,123,108,108,89,103,95,112,111,88,100,107,110,107,98,104,93,103,102,103,96,103,102,97,94,103,106,98,96,105,100,104,109,98,102,111,109,98,90,88,94,102,107,99,108,98,88,130,111,111,98,100,101,98,91,110,94,110,78,105,100,128,98,106,116,101,124,96,95,98,102,101,96,106,91,122,112,101,102,106,105,95,95,76,104,105,111,83,96,135,97,91,111,96,104,105,106,99,98,109,88,117,94,113,98,97,94,100,108,107,98,117,117,114,100,96,102,109,92,116,109,112,111,100,104,113,100,100,111,95,104,108,107,114,95,100,104,103,99,81,103,105,107,100,107,104,105,108,115,93,107,112,98,98,97,107,100,111,100,105,104,96,100,98,99,85,87,103,95,99,98,97,95,99,113,102,94,111,112,117,95,107,101,104,114,107,121,119,105,107,106,103,100,99,101,105,99,104,104,110,102,116,113,101,95,110,104,113,105,100,92,104,84,100,104,115,103,102,99,85,103,102,97,96,111,98,100,107,101,102,78,98,119,88,109,93,96,106,104,111,107,110,103,114,109,106,91,100,101,101,105,93,112,98,105,108,126,105,109,104,97,95,119,111,109,106,99,113,98,103,89,98,106,101,107,99,99,100,102,111,101,105,114,89,100,71,99,100,102,94,101,102,117,97,100,102,88,122,95,101,99,94,124,105,110,102,105,96,100,105,109,122,105,97,92,104,94,104,101,103,101,101,102,99,99,107,105,97,110,109,109,105,108,102,105,114,113,105,92,97,86,99,106,107,97,115,121,108,105,99,105,99,107,100,95,102,92,108,97,112,113,102,110,82,104,100,101,102,108,104,106,106,101,101,101,117,99,95,98,113,98,111,108,108,105,121,102,95,102,102,102,110,106,94,103,88,103,101,101,105,106,91,109,111,99,112,103,94,110,110,94,113,98,96,101,95,100,109,86,99,105,109,103,99,116,100,102,110,102,101,103,110,90,98,114,121,105,96,102,108,97,107,106,84,106,91,108,98,95,108,101,105,120,107,104,113,109,103,103,106,99,97,85,100,98,104,100,98,113,102,108,94,99,91,109,98,92,97,105,106,108,107,109,103,114,98,110,104,96,104,105,103,109,108,97,113,101,87,117,93,107,103,116,101,104,94,96,104,105,96,109,115,112,105,96,98,107,111,114,113,123,106,109,99,121,105,95,101,96,97,113,102,104,96,103,88,106,110,100,107,110,108,119,98,113,91,92,97,103,90,94,113,108,96,103,104,100,98,104,97,99,98,72,91,98,113,112,97,117,98,106,108,101,100,110,90,103,104,100,95,112,92,96,100,109,102,95,105,103,105,100,97,95,94,104,99,101,103,109,99,90,106,98,100,100,87,97,105,103,87,100,115,103,99,102,99,79,99,93,104,107,99,107,110,104,108,81,101,98,108,109,105,98,108,84,99,102,95,101,95,96,99,104,94,104,106,96,105,106,103,111,107,86,88,98,98,101,99,105,108,106,105,107,95,102,103,106,105,101,110,102,88,104,103,100,96,99,87,91,98,109,106,100,88,106,104,106,111,122,104,101,106,104,114,104,110,111,109,104,106,94,113,117,105,103,101,99,109,111,100,120,106,107,100,95,105,104,96,112,97,98,109,112,104,108,106,112,106,87,110,98,102,108,104,108,84,108,110,88,101,111,100,102,94,101,108,113,117,113,106,86,112,125,102,113,114,102,90,106,105,85,105,91,107,106,94,109,106,106,108,102,115,109,102,92,95,106,105,94,104,91,108,96,106,114,111,102,97,104,98,108,107,119,94,106,110,102,95,92,107,105,100,98,114,108,95,112,119,104,104,104,105,99,115,109,113,105,104,105,100,100,115,101,106,105,112,99,122,119,94,98,95,111,101,92,105,108,107,116,101,101,106,103,106,105,100,109,108,108,111,97,112,108,101,112,104,105,100,110,114,104,106,107,107,101,97,114,109,113,112,106,110,108,103,97,115,102,113,100,102,95,99,100,108,93,96,101,92,106,81,109,99,103,117,107,93,106,111,117,98,103,99,117,81,95,112,97,106,81,105,93,112,102,112,107,113,107,108,106,97,110,109,112,113,108,107,101,96,121,101,99,108,109,107,106,103,105,108,99,111,126,112,92,107,146,92,94,101,109,101,99,69,95,112,103,109,101,98,109,115,106,104,101,120,100,104,112,108,103,107,112,99,105,109,96,92,108,103,106,99,94,92,100,100,106,99,107,103,104,103,104,106,109,97,112,104,100,113,104,106,106,102,111,95,99,104,95,117,103,100,92,96,95,113,105,104,112,111,98,116,107,98,104,99,99,104,99,114,96,112,106,113,106,83,106,103,104,108,107,98,91,105,99,100,103,98,107,107,110,108,85,92,110,103,101,106,106,107,99,95,107,106,89,102,110,97,104,88,95,91,112,114,108,120,101,121,99,108,106,98,108,114,104,100,104,100,100,104,105,98,116,99,113,90,103,101,101,99,113,117,110,112,102,93,90,101,100,125,112,107,108,106,93,96,112,103,107,108,105,102,112,98,103,92,95,95,110,91,95,101,113,103,95,109,100,106,100,108,100,104,108,105,112,107,112,100,100,100,101,93,109,113,106,94,106,109,107,109,108,103,101,108,102,112,107,106,104,105,100,108,107,65,110,98,113,109,99,116,116,104,103,102,111,116,105,105,102,110,96,108,113,107,101,100,99,115,101,95,106,119,117,111,117,111,97,95,105,100,111,98,104,112,117,96,109,105,112,88,95,107,80,103,114,101,104,114,98,108,104,109,99,103,99,97,99,97,108,116,103,108,104,109,96,104,111,113,108,92,92,111,104,96,99,100,102,103,102,91,95,108,106,97,96,97,102,111,92,107,104,104,110,104,105,131,108,103,105,110,111,106,109,100,98,107,106,112,97,98,127,100,116,106,105,93,108,107,106,112,95,114,107,104,115,96,94,94,106,103,83,103,109,103,102,107,93,106,99,112,109,95,109,99,100,112,108,105,100,101,101,110,107,111,108,102,80,115,106,116,105,103,91,103,106,96,88,96,92,106,109,124,93,121,106,115,91,98,111,96,110,104,117,102,103,115,98,102,105,97,93,107,106,95,94,102,108,113,101,106,110,98,111,99,97,93,109,113,117,90,104,105,99,102,105,93,109,84,96,110,90,106,109,101,108,109,114,97,110,121,103,105,97,104,109,97,103,117,105,108,104,114,98,95,112,116,106,105,95,103,115,91,99,96,94,102,127,112,108,105,110,117,102,112,94,113,97,113,115,110,107,113,92,100,111,107,105,109,108,98,110,98,103,105,101,89,109,103,101,111,99,107,108,98,88,106,92,103,99,100,110,116,102,115,108,103,100,103,93,91,99,98,107,104,90,102,102,103,104,100,104,112,110,111,113,99,113,109,122,105,119,119,109,105,96,107,102,99,97,106,99,97,106,102,99,107,110,114,101,99,97,106,76,101,97,98,99,99,115,104,98,94,96,105,115,102,106,101,114,103,102,106,112,97,100,109,101,101,101,103,126,108,108,106,106,110,101,96,100,107,107,102,101,93,100,106,105,114,98,94,109,92,105,98,99,106,93,99,108,99,104,99,93,102,97,99,117,103,95,108,101,93,101,100,99,102,105,108,103,128,109,92,108,94,111,101,115,104,102,99,87,100,102,113,109,84,103,103,108,121,102,107,92,105,101,101,106,115,111,102,108,103,101,117,106,111,91,103,132,107,101,97,108,106,111,106,99,103,99,123,80,89,94,91,95,100,108,111,97,105,105,119,119,108,100,102,101,112,95,98,114,103,107,88,119,104,94,97,110,102,98,101,105,107,94,96,100,92,103,104,101,101,96,103,113,91,111,113,102,92,92,100,99,103,98,105,101,84,94,100,102,96,95,96,106,107,71,105,112,100,105,120,101,85,100,91,87,91,103,111,90,101,103,99,105,115,98,100,101,104,92,94,105,117,112,112,103,97,110,93,86, +503.83096,103,118,95,101,105,105,103,109,96,99,97,88,95,107,111,117,102,105,105,109,95,106,98,104,96,118,95,112,81,100,111,106,101,107,109,108,94,105,101,97,94,112,108,94,90,103,86,108,97,112,102,103,97,95,109,110,107,114,110,101,102,105,92,91,106,97,96,115,87,99,118,121,89,105,96,110,99,101,107,101,105,112,102,112,110,86,110,98,105,96,94,96,111,102,104,104,114,105,112,110,101,105,102,93,101,118,106,93,113,99,101,111,109,104,113,98,108,106,96,104,100,99,92,105,101,103,109,91,102,96,96,104,98,103,100,101,98,104,96,98,110,98,110,96,107,104,114,97,102,96,97,92,96,104,116,108,106,100,115,101,97,97,98,110,113,105,95,101,98,101,101,99,107,105,102,97,78,93,107,106,105,103,108,110,91,94,92,87,98,105,99,100,114,98,104,85,102,102,107,110,91,98,109,103,101,106,104,99,116,111,108,99,113,102,107,99,102,106,96,109,112,110,103,104,104,103,101,91,106,98,100,116,104,103,109,106,108,99,109,100,91,99,103,106,95,95,98,104,104,115,102,113,95,85,108,97,111,99,110,116,113,100,100,107,99,97,101,110,107,92,103,100,99,100,119,109,108,99,101,101,118,105,106,96,91,95,94,90,110,103,105,97,109,103,104,91,110,107,99,104,110,112,95,102,98,106,109,101,104,121,99,115,102,101,101,97,97,92,109,112,103,95,114,113,103,96,105,104,101,104,104,101,105,108,106,108,99,107,105,91,102,87,99,93,91,94,104,103,110,101,100,99,103,106,117,109,106,98,99,116,99,103,99,103,94,107,106,108,102,88,113,106,107,109,97,100,107,92,101,101,105,103,98,105,109,96,104,106,107,92,120,105,91,94,104,94,100,79,110,95,109,99,105,105,101,100,108,107,101,111,105,100,102,99,100,98,107,91,113,107,103,104,101,106,103,87,97,92,105,112,98,104,102,110,103,92,100,99,96,104,114,108,101,102,112,95,108,76,111,101,113,106,100,104,103,105,106,98,102,108,96,98,99,96,98,99,100,107,84,76,103,109,94,97,108,102,106,109,102,102,111,111,105,111,87,106,109,98,111,94,113,98,97,99,91,94,103,104,107,108,113,103,100,98,104,114,102,92,96,104,108,95,106,93,103,99,91,110,90,104,104,94,107,103,137,101,95,127,107,97,91,103,105,102,103,95,105,98,108,100,94,103,104,110,101,100,106,107,99,102,86,105,109,105,106,109,104,99,96,102,101,119,100,92,102,108,102,102,109,106,94,109,98,103,99,110,119,102,106,101,116,102,100,98,114,97,89,94,98,99,102,102,100,99,97,119,102,92,113,121,100,98,113,110,92,99,91,102,108,121,111,103,112,105,101,98,109,113,95,107,106,103,105,104,99,102,100,117,104,120,95,116,86,105,102,101,97,104,95,115,114,101,99,103,72,104,105,72,108,102,89,106,92,99,109,107,102,106,104,94,102,108,109,99,92,110,106,94,106,99,106,96,106,94,107,103,104,113,119,102,96,101,106,99,101,114,109,108,102,102,108,108,111,94,120,99,91,102,101,96,103,97,100,107,106,102,105,107,108,99,90,103,94,102,91,96,80,84,105,105,107,97,104,108,109,93,97,112,111,118,108,103,92,95,100,100,96,111,107,94,100,102,111,112,111,92,94,98,113,121,117,98,103,98,100,96,104,113,105,91,108,96,104,105,84,116,90,113,102,107,133,98,107,113,103,100,98,106,94,104,101,113,111,100,101,105,94,114,99,106,106,118,114,128,102,96,97,101,109,106,107,111,108,108,102,99,105,110,104,102,96,107,92,107,99,98,110,114,120,102,88,105,107,113,102,83,106,101,106,105,113,100,102,103,105,101,98,100,99,105,87,71,109,100,85,108,99,100,113,99,105,73,99,99,101,105,95,104,104,98,114,95,100,103,102,107,112,110,109,109,112,87,99,101,97,97,93,102,117,107,110,99,94,106,108,105,95,105,112,108,115,86,105,100,99,90,110,105,99,104,136,104,96,104,102,103,102,106,109,99,109,90,95,112,84,103,106,104,91,121,122,101,106,100,107,106,102,114,106,104,100,108,114,110,91,93,106,111,111,99,102,105,99,114,121,109,102,108,94,86,101,108,104,108,109,105,113,105,90,91,95,106,98,99,106,101,98,103,112,107,113,107,107,100,135,102,104,106,101,101,110,100,81,101,90,102,106,95,90,104,106,102,83,113,104,108,90,108,101,97,101,100,99,97,98,105,101,111,100,120,102,93,91,109,104,94,110,101,106,101,112,103,103,102,103,119,96,105,105,98,101,101,95,80,87,97,99,106,100,101,103,102,114,99,90,99,100,109,105,104,97,101,100,102,95,104,113,106,109,108,99,110,96,101,103,91,89,107,114,107,98,109,99,106,110,101,86,108,94,90,103,109,89,106,107,116,114,108,97,100,108,100,115,110,95,95,115,105,115,111,97,95,112,94,110,100,101,113,98,110,106,108,95,107,103,115,107,99,104,118,120,98,101,101,106,116,96,107,102,102,98,114,107,108,107,97,108,108,96,99,93,112,101,106,104,108,104,103,121,110,111,105,106,95,102,110,105,102,98,113,97,116,103,102,111,107,103,96,113,102,99,93,112,99,120,91,117,110,117,111,113,107,107,106,122,103,113,111,94,105,80,105,109,105,143,117,94,97,110,93,102,108,103,86,110,118,108,105,105,109,111,108,102,99,108,96,100,121,97,102,112,110,106,101,99,97,97,103,101,113,101,114,101,114,100,91,106,101,117,105,112,104,107,107,116,106,113,101,93,109,97,108,99,103,108,108,80,108,99,111,110,95,104,117,107,99,102,114,116,101,108,101,111,113,119,101,110,111,107,114,106,98,106,105,105,109,101,119,103,106,117,121,93,92,122,115,114,100,100,110,112,112,98,113,104,112,101,112,103,107,96,112,109,96,103,107,118,109,102,109,98,98,115,95,113,115,102,106,102,108,97,107,110,110,106,94,104,118,105,95,110,114,117,116,110,106,109,115,102,107,109,108,82,111,109,107,102,100,100,109,106,118,106,104,114,83,116,98,99,101,101,110,100,108,89,99,104,99,128,102,95,101,107,98,101,86,108,105,97,96,110,112,105,99,105,104,102,94,110,124,97,110,101,117,99,109,95,109,111,96,105,103,100,105,95,103,103,102,105,106,98,117,106,101,109,105,110,109,106,98,100,117,107,107,110,100,101,124,90,98,100,99,101,100,104,106,100,104,105,111,107,101,107,93,102,108,117,105,102,97,91,108,118,108,92,113,83,98,115,109,113,108,108,102,117,106,121,110,109,111,96,110,110,95,104,99,101,97,98,105,121,107,106,112,107,102,102,98,105,111,90,107,108,102,96,98,105,109,105,108,104,103,110,103,95,110,100,107,100,120,101,106,102,105,85,92,109,119,99,101,110,95,100,113,108,108,106,98,105,98,99,108,87,104,102,110,100,100,101,107,107,106,102,96,95,102,108,102,87,107,93,102,103,87,113,103,105,108,104,117,105,96,98,104,106,109,114,96,112,101,80,110,104,117,112,105,100,103,103,100,89,100,111,112,111,96,107,99,99,98,99,106,103,109,99,97,117,112,106,109,103,107,120,105,108,107,86,102,105,117,101,111,103,95,94,109,109,97,109,103,106,103,117,113,97,107,103,120,102,101,99,94,87,97,106,108,106,106,104,99,111,99,95,103,105,111,105,103,111,103,103,106,97,99,104,100,98,102,103,106,104,132,108,112,112,106,91,108,110,100,111,98,94,104,109,102,102,101,105,106,104,108,93,106,87,102,99,95,105,105,108,105,98,113,105,84,91,102,102,110,92,99,103,104,104,85,113,99,101,110,99,100,98,120,103,107,126,111,98,89,111,117,103,106,103,106,103,103,112,105,97,102,92,113,96,92,105,106,100,108,110,100,116,104,103,76,107,104,97,103,105,109,102,98,109,98,98,107,116,98,104,100,103,93,111,97,107,100,113,99,109,106,98,97,105,111,118,94,95,101,101,102,110,105,97,108,99,107,102,100,102,102,101,106,99,128,83,111,108,113,114,104,101,102,99,95,114,94,103,95,102,102,98,106,104,112,105,108,106,113,111,109,99,91,109,110,112,110,93,96,100,109,102,110,108,110,94,103,100,105,100,83,97,96,105,102,92,101,109,109,117,98,116,103,110,105,121,112,109,122,92,101,100,105,102,108,95,99,92,98,102,92,106,99,101,105,98,98,107,113,101,115,79,112,95,106,113,100,99,109,97,100,101,107,107,110,85,99,92,103,112,104,108,109,103,125,108,102,108,107,89,99,105,108,103,104,95,104,113,106,115,107,93,104,106,109,96,107,99,108,113,93,103,97,91,104,99,107,109,110,113,110,94,119,106,98,90,97,106,102,105,98,94,96,96,97,103,108,90,100,93,102,98,107,105,110,104,118,81,95,91,105,99,102,117,103,105,108,105,99,104,111,100,108,102,102,105,109,99,104,91,104,102,95,119,103,96,95,108,94,99,103,112,100,112,109,111,113,91,109,103,92,95,125,100,92,108,111,94,96,96,108,102,104,89,100,108,112,102,101,103,105,112,95,113,92,103,109,103,108,101,104,94,99,100,111,99,111,103,107,97,117,102,111,117,107,100,100,100,90,108,110,99,108,108,93,110,113,107,96,100,90,107,93,98,95,109,91,129,96,96,94,98,93,86,95,109,107,102,104,87,102,97,113,109,103,112,119,102,112,103,101,110,93,100,95,97,97,105,111,113,98,98,101,106,108,79,91,87,95,81,87,87,113,99,107,98,104,102,87,102,97,99,76,93,102,101,111,95,88,95,107,101,114,100,102,116,102,109,110, +503.97162,104,114,91,103,96,112,113,105,98,77,113,87,98,100,88,97,101,120,103,113,92,108,95,101,109,104,98,127,114,102,105,99,100,92,112,100,97,108,97,99,103,106,94,98,99,104,90,91,95,95,88,97,106,110,104,115,99,102,122,99,103,116,108,91,103,105,100,92,94,92,109,104,114,102,84,120,91,99,115,118,108,108,96,110,83,94,97,106,106,93,110,99,84,95,105,97,107,96,109,106,95,113,91,94,106,110,99,96,88,100,91,100,106,100,80,104,94,82,108,105,105,105,104,98,100,97,105,120,110,110,98,100,95,98,102,117,101,109,121,96,95,97,86,106,96,101,112,104,108,99,99,102,94,100,102,106,95,96,108,100,101,107,113,107,97,102,100,98,103,104,103,101,128,98,89,109,98,94,104,102,117,103,102,94,95,94,86,107,100,99,129,116,110,89,96,99,108,104,100,102,100,94,106,107,110,108,96,109,103,106,91,97,115,99,104,104,97,101,107,109,114,115,114,109,112,114,96,103,105,114,101,100,108,105,104,99,96,103,96,99,102,104,102,83,96,90,109,111,109,105,114,110,94,115,105,103,108,104,100,99,93,89,103,104,105,117,107,103,98,105,103,101,97,101,97,111,96,105,106,95,105,106,100,97,95,100,94,109,112,103,103,102,102,106,115,94,99,107,112,95,106,108,106,115,98,110,119,104,106,110,100,106,99,102,105,104,109,109,100,104,94,109,106,113,99,104,100,98,103,106,106,96,97,110,95,100,106,96,98,98,112,107,96,100,98,105,102,94,99,88,115,108,100,103,105,111,129,113,102,101,100,103,103,107,94,97,95,102,102,90,107,104,105,103,101,104,107,107,101,107,107,112,118,109,102,87,106,98,105,97,117,92,108,105,105,91,102,99,105,105,98,96,113,114,102,96,99,108,110,108,98,89,107,97,103,106,118,108,116,97,108,103,100,102,107,99,104,102,87,105,93,97,107,105,103,114,97,116,90,106,107,106,103,101,103,102,94,107,115,104,101,117,107,120,95,108,105,110,106,106,113,105,110,111,82,110,103,95,114,100,101,126,104,102,102,99,102,122,109,110,103,104,109,124,102,95,103,113,108,113,105,109,100,101,114,113,92,98,105,106,103,98,108,102,97,94,100,110,107,105,96,95,105,104,109,114,93,99,96,97,105,97,95,107,110,98,104,94,106,101,84,102,109,107,105,100,94,107,100,104,100,105,100,99,98,107,97,96,94,104,107,104,113,95,110,111,99,106,95,109,96,110,106,101,97,104,100,104,100,103,108,105,105,108,104,109,79,106,92,106,101,97,96,88,95,101,101,119,97,103,116,102,93,102,112,116,103,76,110,110,106,98,102,104,105,109,93,101,85,92,98,102,101,106,110,97,100,105,105,108,96,108,105,97,114,104,102,86,96,104,103,106,98,105,98,107,91,89,95,99,97,112,117,101,106,100,102,99,111,103,79,109,109,82,109,104,113,131,104,111,118,76,108,104,96,105,98,92,101,110,112,121,102,102,104,105,104,104,118,114,103,120,116,105,100,106,107,108,101,94,94,105,109,107,100,102,109,97,109,91,103,107,98,106,97,100,111,84,93,103,88,107,102,113,95,93,99,95,78,111,104,96,108,106,109,100,92,85,111,114,95,108,105,98,95,85,102,91,100,101,92,106,105,106,104,104,91,96,90,108,109,100,101,99,101,100,114,106,107,103,99,101,94,87,106,103,93,112,98,110,105,110,107,108,99,116,97,99,104,102,107,101,101,105,98,104,101,114,109,103,110,106,95,110,102,111,98,87,103,113,89,106,103,109,104,104,122,100,105,103,106,97,101,103,106,105,103,119,121,82,112,103,108,108,111,110,95,107,103,115,96,99,122,101,117,109,96,101,121,109,98,99,96,114,114,94,105,109,107,97,106,107,115,110,105,110,88,107,103,95,98,96,108,115,99,102,95,99,106,78,106,110,99,101,101,104,111,95,95,84,106,107,93,112,96,113,99,107,111,101,103,108,117,105,98,105,84,107,104,107,107,112,96,107,103,106,98,99,98,111,114,108,109,95,109,106,102,120,101,109,96,111,79,100,116,100,100,103,97,95,95,101,102,95,110,105,113,111,113,94,104,107,102,104,105,95,111,105,104,75,97,107,104,115,101,101,98,114,109,102,107,91,90,110,111,97,84,110,92,120,97,115,95,105,106,110,110,92,95,102,95,117,114,110,99,101,118,85,108,115,111,105,112,100,106,99,111,93,93,100,101,98,90,109,109,106,104,88,96,108,96,110,100,104,95,94,108,101,115,111,101,97,96,95,107,122,86,99,107,86,94,100,108,98,106,101,100,117,108,104,97,105,92,102,98,102,114,106,97,83,100,101,96,118,106,106,113,103,102,85,98,111,104,92,101,110,105,95,112,104,110,101,102,95,124,108,105,99,100,81,113,105,80,102,106,117,102,117,116,116,95,100,111,94,99,111,102,106,112,110,114,101,109,106,112,113,108,96,96,100,117,111,100,104,102,107,112,102,105,103,101,108,108,104,113,103,106,76,113,95,107,118,115,104,107,102,109,110,94,106,96,86,118,106,109,135,127,105,116,106,107,97,100,116,102,110,103,102,102,98,107,96,100,88,116,117,101,105,106,99,98,99,117,116,102,109,92,106,112,102,114,107,107,101,107,111,108,113,119,102,105,115,104,113,117,106,95,98,99,98,113,100,103,105,114,107,111,103,95,102,107,106,115,96,105,98,117,107,94,120,101,106,98,99,106,112,122,115,100,106,102,110,111,109,93,109,100,106,115,103,112,104,111,97,103,107,94,109,119,113,117,108,108,106,88,100,106,88,117,95,99,110,102,101,101,107,107,106,116,115,119,106,104,107,92,100,93,114,108,98,110,100,116,106,83,111,104,107,106,103,137,113,109,89,120,112,96,98,100,108,101,105,89,110,109,106,111,103,92,102,104,92,99,109,107,101,104,112,111,100,92,110,105,108,113,95,109,101,101,107,104,100,106,104,105,106,113,112,91,108,106,104,114,101,105,105,97,105,105,96,112,108,105,108,99,97,108,111,94,109,105,103,106,112,112,113,109,115,96,107,112,107,107,112,108,98,98,102,120,98,112,105,101,109,105,121,99,104,105,106,93,98,103,112,89,106,102,95,102,114,110,109,105,96,95,85,125,100,113,108,106,104,113,104,104,96,110,96,108,98,107,111,107,102,104,112,98,141,107,94,103,92,101,99,118,106,107,126,110,105,86,102,105,103,99,100,87,109,111,103,98,98,108,103,100,103,107,109,105,97,110,109,106,100,105,107,97,95,108,104,115,107,102,102,99,119,110,119,94,102,105,96,107,106,109,109,94,91,95,105,98,103,111,115,105,98,104,97,108,105,93,118,104,109,104,113,103,106,102,96,110,102,99,111,102,99,101,112,106,97,95,107,110,116,101,100,107,103,123,96,115,108,108,108,100,98,99,114,106,103,90,99,104,92,108,100,118,102,91,108,103,112,101,122,91,107,108,109,111,125,89,105,103,91,91,100,94,99,104,99,106,100,97,110,102,104,110,111,100,98,102,108,105,108,104,101,104,99,95,105,98,105,101,108,106,99,109,111,103,102,106,97,113,113,102,99,103,96,120,101,103,110,96,113,83,105,97,104,109,108,100,107,96,96,104,110,104,106,109,95,108,81,98,103,112,97,100,106,107,92,113,102,100,109,106,113,93,107,104,102,109,99,109,105,83,98,85,101,102,101,106,95,103,104,93,107,98,89,104,113,113,103,99,111,114,113,105,112,106,109,130,89,113,102,101,98,104,108,97,115,105,116,95,100,103,102,104,103,99,92,95,97,105,101,102,70,99,102,112,94,104,113,115,91,101,88,102,97,96,108,115,94,108,102,91,87,111,91,101,101,100,85,92,107,92,108,104,105,96,105,105,119,100,107,109,112,98,101,95,89,108,119,112,98,105,91,106,104,106,107,87,97,102,92,106,64,94,116,107,87,120,109,103,110,109,103,105,103,109,103,105,89,96,107,102,135,104,97,109,80,100,104,94,113,96,112,105,105,103,90,102,117,103,96,108,106,115,107,105,105,111,115,98,105,76,112,113,105,106,106,99,71,100,99,104,95,101,112,101,109,119,108,120,94,105,110,107,115,107,98,109,102,104,98,102,112,105,102,110,106,113,113,98,112,120,108,101,106,103,100,102,105,104,107,95,97,116,108,102,100,88,111,106,112,107,104,100,104,110,113,96,110,117,107,105,102,112,103,103,104,97,104,109,94,102,109,109,105,107,106,99,96,108,98,96,74,93,103,107,114,105,97,111,109,89,99,108,96,110,139,104,107,109,111,97,102,123,111,103,103,110,115,108,119,98,104,108,105,98,106,105,89,105,98,98,117,93,110,108,110,126,106,103,113,108,105,93,100,96,89,109,96,110,98,100,101,112,101,104,96,99,101,103,110,111,104,118,83,102,104,94,104,114,103,133,115,115,91,100,102,112,99,102,96,99,102,104,100,99,104,107,119,113,92,111,109,106,111,115,109,105,94,120,93,111,98,91,109,100,89,94,95,112,109,100,108,105,106,106,99,104,109,115,104,103,103,113,106,102,124,101,100,103,101,111,100,107,97,101,108,99,103,118,117,91,104,103,116,105,100,94,101,99,104,101,110,113,87,100,100,113,106,111,101,106,97,77,100,118,95,109,113,83,109,109,98,107,87,98,108,119,105,101,97,91,106,104,112,91,105,107,94,97,101,107,108,100,95,109,105,102,107,97,98,92,111,107,104,110,117,106,111,91,81,102,98,100,104,117,100,105,107,98,87,96,111,100,123,113,92,100,92,59,99,101,108,95,112,95,116,101,109,91,95,106,101,108,90,111,99, +504.11224,98,95,108,103,105,106,101,96,102,105,96,113,84,103,93,110,100,105,108,107,102,108,104,119,104,93,103,96,106,104,100,88,101,94,117,106,99,100,101,98,117,108,96,104,114,110,104,120,95,99,93,123,106,97,91,115,110,95,110,109,111,98,107,115,84,104,91,108,85,98,89,109,99,100,98,121,98,105,100,100,110,102,101,104,93,99,97,111,103,108,109,100,106,110,100,100,99,104,92,74,106,103,103,102,112,110,103,93,110,103,95,97,102,107,112,113,104,95,80,99,104,93,106,101,98,103,112,97,107,114,91,114,102,98,98,105,100,97,90,107,109,103,99,101,99,108,107,94,92,101,101,104,100,105,95,104,103,110,95,102,117,106,106,98,112,76,110,74,121,104,110,101,100,102,104,116,111,101,106,105,101,94,94,93,87,94,106,102,111,104,101,97,109,100,98,94,98,108,105,112,102,99,108,118,91,114,107,99,102,110,78,110,109,101,105,100,113,101,110,108,118,104,106,97,99,97,103,118,111,108,101,88,102,91,109,107,133,105,113,111,103,91,113,102,101,98,95,94,108,109,96,108,100,109,104,112,95,101,99,69,96,116,103,115,96,102,118,103,109,91,104,113,121,105,113,105,94,112,95,101,96,90,108,106,104,110,91,102,122,105,105,102,106,108,110,97,117,113,114,88,106,99,110,114,92,101,91,100,104,107,102,109,108,106,115,109,101,106,101,93,82,102,100,108,110,101,99,96,119,111,102,96,105,85,103,86,95,100,106,112,96,97,95,102,116,79,116,113,109,103,103,106,111,102,87,106,110,101,117,79,102,99,97,99,98,104,98,97,103,94,110,109,108,103,111,92,109,118,106,102,100,104,98,108,107,105,103,106,117,115,116,96,100,112,103,103,107,104,103,114,105,101,124,109,105,99,97,81,104,110,89,104,101,121,109,98,104,103,101,105,109,110,95,108,106,93,97,104,99,108,108,113,97,137,119,103,93,101,100,97,111,103,106,104,90,97,98,103,95,102,91,102,106,100,98,94,126,121,98,103,105,94,107,101,109,116,105,97,92,115,118,103,110,105,103,123,104,119,88,112,107,102,108,87,106,104,116,112,99,113,108,108,101,105,91,95,100,99,108,97,107,114,70,121,101,102,93,105,104,91,96,101,97,104,109,113,113,106,109,95,118,100,103,99,100,108,109,94,94,96,102,100,94,109,97,105,104,97,98,101,101,114,90,113,111,105,105,88,109,112,109,112,107,112,108,102,97,105,96,109,100,100,84,94,102,100,106,97,105,103,102,111,112,117,113,113,95,94,99,101,76,90,101,105,102,95,105,95,99,97,101,110,106,89,107,95,110,105,106,108,108,111,117,95,99,105,102,101,87,110,90,103,99,113,113,107,103,101,112,92,100,106,96,104,104,108,99,115,108,108,108,95,100,106,98,105,100,100,104,95,115,109,113,112,109,106,112,95,106,101,113,102,101,100,92,111,101,114,105,95,100,110,88,92,95,103,108,95,112,107,111,108,109,106,90,112,109,107,102,105,107,110,97,96,96,103,97,86,111,120,94,110,97,110,106,115,110,113,98,99,91,107,108,109,87,104,91,99,104,102,100,101,113,101,95,115,109,113,102,108,112,114,109,99,93,110,92,94,106,113,98,105,97,103,98,101,97,104,118,105,106,103,102,97,106,100,101,113,91,97,105,99,86,94,92,104,109,101,105,96,98,95,94,111,96,120,107,110,104,95,98,103,111,102,110,108,110,94,97,98,123,107,105,99,104,113,96,107,101,102,104,110,112,106,105,108,105,105,120,94,94,111,102,109,108,113,97,106,100,107,109,97,101,100,104,118,114,107,114,117,95,116,113,97,111,107,104,94,107,110,99,115,103,113,102,97,109,84,107,114,107,109,99,96,98,99,101,107,108,93,99,104,104,100,112,116,105,114,113,108,100,102,100,108,86,98,98,106,100,105,89,82,93,94,115,109,100,99,92,105,96,111,95,103,103,106,104,115,103,95,106,100,102,116,100,123,102,101,104,106,117,102,97,100,105,96,96,113,74,104,103,99,110,111,111,112,93,108,112,102,97,103,99,113,100,104,112,100,106,116,97,98,137,105,102,101,110,105,124,110,105,100,99,101,95,98,105,112,99,100,93,100,101,109,102,111,92,102,94,105,109,100,104,99,118,109,109,108,106,109,122,104,111,95,99,97,93,90,98,109,122,96,112,105,105,110,95,97,103,114,107,100,103,97,105,103,100,98,97,129,101,95,101,94,110,103,116,103,98,94,97,109,114,105,103,98,99,107,101,96,108,103,103,96,110,97,96,110,88,111,120,101,115,112,110,90,102,103,112,100,93,107,93,109,108,113,101,102,87,101,116,101,108,108,108,104,105,101,111,94,95,114,98,106,105,96,102,104,104,114,87,113,99,108,98,110,102,106,99,115,115,118,92,107,105,106,110,92,117,111,116,105,105,96,109,106,105,106,112,104,108,109,113,109,104,116,97,106,101,101,112,117,100,105,96,110,105,121,90,114,118,111,104,114,107,109,108,108,109,109,112,97,96,115,107,99,112,120,106,106,108,85,106,125,112,111,105,103,117,102,117,111,116,108,99,102,102,108,94,110,113,95,109,102,98,113,129,118,115,100,106,101,100,107,110,104,114,89,111,103,113,112,102,99,117,112,110,99,106,103,114,111,110,108,107,119,126,101,110,106,108,113,108,92,108,110,107,110,92,94,105,95,97,106,113,110,116,114,107,104,93,101,102,109,106,98,94,110,103,106,96,115,105,118,122,102,69,117,110,125,105,108,112,98,101,116,103,114,113,109,108,105,114,105,104,99,109,105,101,110,118,102,113,116,118,101,100,109,98,110,106,108,92,113,104,117,110,87,102,112,112,96,119,110,104,104,107,103,109,113,108,111,101,110,110,107,113,113,121,108,109,113,102,110,109,108,108,111,105,105,95,109,104,96,107,106,99,111,99,99,113,117,96,116,117,102,110,91,116,105,106,98,108,103,108,108,114,109,121,112,104,104,115,104,105,106,108,112,100,119,127,116,108,109,99,95,94,108,107,105,103,109,96,110,115,98,106,99,105,106,120,107,100,98,119,96,103,108,105,106,109,106,109,92,109,110,115,98,107,112,81,125,104,107,119,103,96,107,115,91,102,108,105,108,100,110,109,118,113,103,95,99,99,102,109,100,105,110,96,114,105,112,110,100,103,110,121,103,106,97,101,110,113,113,107,98,107,112,108,108,108,102,119,103,106,112,106,119,117,106,108,111,99,118,113,99,116,113,106,96,92,105,119,103,110,112,110,100,106,117,92,111,110,107,101,110,101,112,104,103,97,106,111,110,95,116,110,109,105,106,109,114,111,105,103,120,107,90,118,103,94,106,103,111,101,113,103,94,107,116,103,98,109,102,99,106,115,107,119,100,108,111,101,75,109,107,122,103,105,105,104,102,106,101,98,99,115,97,117,113,99,114,91,114,106,91,79,114,107,104,104,107,101,106,111,104,110,98,109,114,102,104,107,108,112,94,102,118,114,103,109,96,107,114,110,102,110,101,108,109,98,104,102,111,105,97,112,94,103,105,97,108,105,107,107,100,104,101,108,110,101,110,109,105,99,105,109,113,112,112,103,106,102,112,99,104,106,112,110,100,113,111,105,98,111,103,107,103,106,125,110,105,97,110,118,105,104,109,103,102,95,95,104,102,101,107,109,110,105,106,105,101,115,100,110,104,114,99,106,91,99,123,104,99,118,92,109,97,115,114,98,100,99,117,95,107,103,99,106,106,116,101,116,104,108,106,115,98,97,113,103,90,109,92,106,102,115,101,102,119,113,112,104,112,106,106,99,110,100,103,97,103,110,100,100,115,110,97,115,102,116,106,109,116,98,107,106,105,111,101,106,110,109,113,94,103,107,106,104,104,109,107,88,106,107,106,106,108,112,114,102,114,110,101,103,101,107,103,114,105,74,110,105,111,112,99,106,109,103,104,85,110,113,107,105,114,110,113,107,94,103,97,94,104,109,103,100,105,117,88,101,104,114,104,103,107,109,112,94,112,115,114,105,110,106,103,93,100,120,109,99,100,109,109,111,102,107,120,115,96,100,96,108,116,98,101,109,104,107,110,116,113,105,90,103,102,104,109,105,99,108,95,116,109,106,119,102,100,112,96,108,105,103,118,116,112,102,109,96,111,115,102,113,107,98,102,112,125,111,104,101,95,103,105,101,117,99,101,97,105,102,105,124,108,102,93,99,99,99,107,111,89,106,100,104,106,109,98,110,121,100,101,113,106,125,109,96,102,100,113,103,89,112,109,106,106,105,124,113,116,102,100,114,111,106,108,100,104,109,97,109,109,109,99,117,107,104,112,110,116,105,94,103,116,115,114,104,102,99,102,108,107,105,104,100,97,101,92,100,111,85,111,106,95,110,95,109,99,114,106,102,106,102,111,99,105,103,99,102,107,102,107,104,104,110,114,112,126,103,98,97,92,110,101,101,89,101,115,104,100,111,114,109,98,115,111,104,122,104,100,96,110,103,104,94,109,116,101,94,99,96,100,109,107,112,113,118,89,105,122,105,97,111,111,103,109,113,104,110,108,102,88,123,101,107,100,114,107,105,90,96,114,113,129,102,102,107,95,98,99,97,114,100,116,112,108,115,116,98,112,107,116,109,68,104,114,101,101,103,104,101,117,99,104,106,112,114,109,114,107,124,102,108,102,115,101,109,115,92,102,83,104,103,113,110,116,100,105,108,98,100,99,103,104,101,111,99,98,100,100,101,98,96,93,99,104,105,100,96,126,120,108,100,119,104,104,113,105,117,102,93,99,101,85,99,96,94,104,101,86,98,106,99,115,113,99,109,107,99,101, +504.2529,107,96,95,100,88,105,99,103,92,82,96,104,98,99,116,100,100,102,106,111,113,95,100,100,99,110,118,108,107,106,107,106,101,132,112,107,82,96,113,102,95,107,104,100,118,98,97,113,87,104,105,97,109,99,83,95,98,97,106,86,107,94,104,96,112,107,100,107,104,78,105,98,98,98,94,114,94,99,105,99,114,104,102,102,100,101,106,92,99,107,98,109,100,94,97,91,101,91,100,104,111,99,114,99,114,102,94,105,109,102,89,112,109,95,91,104,99,99,113,109,102,101,101,95,106,121,111,95,108,122,96,112,106,95,100,102,107,105,90,91,87,107,108,103,101,109,99,114,121,97,110,103,112,101,106,117,88,95,104,103,105,106,94,120,107,109,94,113,104,107,106,98,102,105,103,86,108,97,106,102,96,108,103,101,103,98,98,93,109,94,106,110,94,110,105,100,112,113,102,109,108,104,96,101,104,104,100,95,104,112,97,97,97,115,97,109,109,112,96,116,110,103,112,106,95,104,92,108,95,102,86,100,109,95,95,103,111,109,101,95,105,101,116,105,97,97,102,115,103,101,108,119,102,102,105,127,113,114,102,97,100,107,105,101,116,111,108,99,109,102,104,90,93,100,101,105,100,107,96,102,100,104,104,100,95,116,104,83,114,103,107,112,94,98,115,104,98,103,107,104,85,101,111,105,94,111,100,99,99,111,104,116,101,107,104,90,109,101,103,96,100,101,93,109,103,112,96,107,126,124,100,90,103,111,100,108,112,92,101,106,107,94,109,104,101,107,129,106,103,114,104,89,100,98,108,98,106,101,118,104,105,111,91,108,94,77,100,116,95,110,107,124,118,122,107,114,105,105,101,110,104,107,99,113,88,96,106,100,116,89,114,109,105,105,106,93,97,105,99,106,103,117,98,98,107,115,103,108,119,102,100,101,104,119,107,95,96,114,118,99,99,114,89,111,83,99,101,95,98,121,107,93,112,109,93,93,112,107,109,113,107,105,109,97,99,104,96,100,101,104,101,101,110,108,81,101,113,95,106,97,96,98,103,106,108,101,102,107,98,108,100,114,97,102,101,92,103,107,107,108,100,104,114,109,113,107,109,106,103,107,111,124,110,95,96,116,88,96,95,98,118,103,106,110,94,101,103,108,115,100,108,101,114,109,109,107,105,98,104,95,107,107,105,114,103,102,101,97,96,103,81,91,108,104,119,103,99,100,102,118,105,114,105,79,113,100,99,104,114,101,101,104,102,99,100,99,111,100,105,107,100,117,106,107,92,118,109,103,93,103,115,97,103,98,100,107,113,98,101,106,103,106,107,93,104,104,104,100,103,96,116,109,99,111,111,110,105,108,105,114,102,104,101,101,95,109,108,104,110,108,115,97,100,99,110,94,119,115,113,99,110,117,104,99,109,101,104,109,96,105,106,105,100,109,104,104,92,102,107,104,107,119,95,99,98,100,107,98,110,106,95,102,109,105,97,111,105,111,120,114,127,98,111,110,110,105,109,109,104,93,121,100,90,98,100,98,110,92,111,97,102,111,86,114,101,92,108,100,97,114,110,105,109,108,99,112,83,116,99,102,107,133,103,94,128,101,104,113,97,91,103,106,95,94,101,99,96,114,106,101,103,91,98,102,102,109,103,124,100,116,107,112,121,104,91,103,102,117,111,101,113,102,113,102,95,115,111,120,110,105,121,104,86,94,108,108,102,91,102,101,104,104,105,114,108,99,88,98,103,91,108,107,108,112,104,103,110,100,99,113,102,107,112,101,103,107,102,112,108,106,95,102,103,102,109,97,96,102,114,109,86,103,95,107,117,109,120,106,96,93,104,110,100,100,100,114,124,103,109,82,101,109,112,106,95,102,111,109,104,110,105,109,110,112,91,108,103,99,96,99,99,108,109,99,90,111,110,97,111,91,108,93,104,103,103,93,97,121,103,98,103,100,118,104,104,113,101,101,110,108,103,102,102,105,93,102,104,108,113,104,113,104,95,94,108,108,109,132,108,112,103,111,110,76,113,112,105,114,103,110,114,111,106,114,106,103,102,117,108,97,98,109,110,94,104,109,105,110,100,96,131,105,95,100,99,102,111,104,112,112,94,125,102,97,104,105,92,112,117,106,99,102,105,107,105,103,111,80,92,100,107,95,109,126,97,109,97,103,101,94,118,104,108,87,99,99,87,102,94,116,110,95,100,99,96,99,91,100,94,107,90,104,111,107,104,113,108,112,113,96,103,90,94,94,104,96,113,124,101,98,93,104,98,95,111,103,120,98,97,99,94,102,114,104,115,107,93,101,97,102,98,113,112,98,121,109,110,91,96,110,101,109,104,109,102,101,101,106,106,105,113,97,119,98,82,105,109,122,106,107,98,99,97,105,108,102,106,99,110,100,100,107,104,105,111,101,93,106,98,87,104,104,95,107,102,101,100,87,106,105,97,115,95,104,105,95,94,98,120,101,105,109,99,92,112,111,100,106,103,100,98,102,104,105,110,112,99,101,97,100,98,106,99,96,107,99,103,97,81,106,107,125,105,103,96,112,95,111,104,99,113,104,113,107,112,109,117,107,99,98,107,98,114,117,98,106,98,103,103,94,104,100,106,106,99,102,100,107,102,121,107,102,104,84,111,115,91,103,112,98,103,102,101,105,105,101,107,103,118,115,106,100,98,104,104,101,119,109,108,113,96,113,106,101,105,96,106,119,103,103,101,113,99,101,99,92,104,111,104,96,96,97,102,117,106,103,92,108,115,91,112,99,100,100,104,108,111,130,92,102,98,111,112,113,106,106,108,75,94,106,119,102,99,92,101,104,113,103,119,96,87,102,100,98,96,98,103,94,92,110,111,100,99,113,113,105,107,107,111,96,115,104,91,94,112,103,102,99,84,112,105,113,105,106,107,101,96,107,108,108,106,98,104,109,101,106,109,95,88,109,93,110,105,107,94,95,90,104,99,104,111,102,102,102,106,113,105,95,104,102,104,107,101,98,102,113,107,109,105,104,108,101,107,100,112,110,99,103,106,103,102,105,90,105,96,104,99,104,114,101,105,109,92,109,95,107,109,107,106,102,99,104,119,110,102,105,112,84,102,105,103,104,100,111,109,101,110,98,109,101,100,88,100,128,96,112,106,104,108,94,101,103,103,101,113,113,110,102,109,107,108,108,96,98,98,108,102,111,118,92,96,104,82,98,98,97,94,106,94,100,109,119,110,104,100,117,104,95,125,104,98,101,103,118,99,98,106,109,99,101,103,102,97,86,102,81,88,131,105,95,96,105,100,100,99,103,99,107,103,111,98,106,99,95,103,103,100,100,102,98,97,111,100,104,102,105,100,106,117,98,100,100,104,103,104,95,88,100,102,104,95,103,92,104,107,108,100,93,110,101,96,109,106,99,99,102,101,99,75,114,106,94,98,96,113,108,105,108,94,97,103,97,95,108,104,73,96,107,96,96,121,99,100,90,98,105,110,93,116,91,103,101,91,120,91,92,97,97,101,82,115,104,93,100,95,124,105,98,106,98,98,81,101,99,101,102,96,109,108,113,105,108,124,99,106,107,101,102,122,95,103,105,101,106,110,101,103,104,104,91,99,95,89,93,94,97,107,112,99,102,109,103,113,99,107,108,107,100,110,99,102,105,106,89,109,105,103,99,106,101,101,102,116,100,99,98,92,95,106,109,110,117,106,111,113,108,104,101,99,102,114,94,105,109,99,106,99,97,104,96,113,97,95,99,100,109,95,105,106,85,108,93,113,99,105,97,99,114,101,97,97,110,88,117,109,98,109,102,109,102,100,95,112,75,106,115,98,110,105,107,95,99,106,101,89,108,100,108,104,96,98,110,105,105,111,104,109,105,109,103,105,108,115,86,97,99,116,106,101,119,110,106,104,90,102,106,94,94,100,101,101,100,105,110,98,109,101,96,117,82,96,112,93,83,108,105,96,101,101,93,104,105,102,106,101,119,108,109,107,102,115,100,91,101,105,105,98,107,94,110,101,96,99,115,106,113,115,104,99,112,116,125,103,106,115,103,117,124,106,113,123,101,103,97,99,106,85,108,98,103,100,105,111,121,99,105,108,108,110,104,104,99,103,94,113,106,100,100,104,97,105,96,110,101,107,109,98,109,113,96,84,100,99,115,95,102,101,99,107,98,103,90,108,104,106,106,91,100,102,102,111,100,96,111,107,104,106,106,102,98,107,99,109,100,96,115,98,98,112,100,104,91,94,94,97,88,100,97,104,109,103,100,104,104,102,106,102,96,98,117,90,105,101,94,101,97,108,111,126,104,116,103,115,120,111,99,97,101,103,103,111,92,102,85,106,106,99,97,103,106,105,118,106,109,100,105,94,106,106,102,92,103,103,103,87,105,105,103,108,102,102,108,97,106,109,105,99,94,113,107,101,107,106,105,99,97,101,93,94,105,102,99,103,101,91,113,105,109,109,101,110,108,97,110,90,97,100,107,98,113,98,100,100,109,103,113,98,99,109,99,108,91,104,101,106,104,105,106,94,111,120,103,109,96,110,104,96,97,99,95,91,114,100,105,98,123,106,112,89,90,94,89,103,123,94,102,101,102,101,98,104,110,88,99,104,114,114,103,99,104,117,105,103,95,99,97,111,100,108,105,104,94,114,117,103,100,100,98,105,88,93,92,111,85,106,110,98,100,94,102,99,106,103,92,87,101,102,96,94,109,107,95,119,106,111,102,100,92,97,114,106,113,112,94,101,89,79,109,113,109,100,111,75,96,108,95,108,102,116,104,102,105,100,90,97,108,102,100,104,98,106,91,94,115,98,102,93,95,79,97,97,106,83,99,92,106,108,114,105,102,103,106,91,97,107,103,102,116,102,97,115,99,102,89,85,104,109,94,107,99, +504.39355,116,76,86,103,124,107,100,106,91,112,95,88,101,89,97,90,99,108,103,101,125,117,93,105,75,108,116,107,113,93,106,117,87,91,101,121,105,97,100,83,104,102,101,95,95,98,102,94,97,116,95,112,99,95,73,104,93,96,107,97,105,102,108,113,101,107,104,102,104,94,105,104,91,99,78,109,106,95,114,98,102,86,96,94,97,97,96,96,121,106,81,94,105,102,98,106,85,106,105,102,97,104,100,95,97,102,95,99,102,96,101,112,101,109,98,109,106,104,116,104,105,96,101,105,118,124,106,101,108,106,109,117,90,99,106,97,102,116,102,97,104,105,100,104,97,95,101,107,94,92,105,90,129,96,100,107,91,105,88,93,88,98,98,118,87,94,94,103,112,70,106,113,99,109,102,105,103,107,106,96,108,102,115,107,96,102,102,105,105,73,100,105,104,102,99,98,106,102,97,110,113,104,97,99,100,106,96,104,94,98,113,113,103,119,107,98,96,104,94,105,101,106,103,101,105,105,105,110,96,103,93,109,105,96,107,104,105,112,104,101,93,96,108,103,115,97,80,115,103,103,105,119,99,104,106,106,105,104,96,107,97,110,96,100,93,111,102,113,104,99,91,112,103,105,96,100,102,95,101,93,105,114,105,109,126,98,104,111,110,96,103,98,110,105,117,127,109,108,119,95,111,108,93,127,97,108,103,110,110,109,102,104,98,95,108,113,120,95,103,105,106,103,106,102,93,91,92,94,111,104,110,109,104,96,103,98,97,97,97,103,107,116,91,102,110,104,106,105,121,96,111,107,112,102,100,106,102,108,109,96,103,100,107,104,94,118,110,97,117,106,117,101,91,104,88,95,120,97,121,102,129,98,99,126,101,105,101,86,108,111,117,98,102,103,123,104,113,118,101,106,108,103,101,104,107,105,96,113,106,102,104,102,104,108,113,103,95,103,104,100,107,102,115,94,113,83,100,98,95,90,106,107,113,105,96,88,88,108,98,99,116,105,109,102,115,96,106,88,104,118,68,99,99,79,106,91,111,112,98,108,97,94,108,116,95,95,109,111,105,97,105,111,103,97,105,103,102,113,102,98,112,110,117,104,103,110,101,103,109,96,98,107,108,107,103,107,105,100,110,108,92,105,98,109,108,105,103,101,78,103,137,96,104,102,99,140,97,98,104,104,109,90,105,99,106,83,111,105,106,98,105,94,98,92,96,103,110,101,110,101,101,90,105,108,103,112,108,109,105,99,100,107,111,102,103,101,104,100,98,104,105,110,97,105,114,103,101,108,105,107,109,109,126,104,105,99,96,102,101,96,98,98,109,105,106,103,101,120,100,100,108,103,99,115,109,96,95,96,103,107,93,101,103,108,109,104,106,96,87,106,101,113,95,106,103,100,101,107,105,115,90,99,105,106,109,95,99,108,97,106,103,116,105,107,94,95,101,95,106,119,100,93,112,102,96,94,102,104,98,125,104,102,108,106,122,100,99,99,97,111,113,106,102,102,100,100,110,112,87,104,117,107,121,98,114,105,113,104,103,100,92,117,91,103,111,100,101,126,101,99,102,99,103,106,107,100,113,115,101,108,92,111,102,104,96,102,104,109,103,106,106,108,105,92,105,112,117,112,102,106,118,113,119,100,104,109,98,106,106,97,109,108,104,108,111,111,101,98,111,107,110,100,103,104,113,102,108,101,108,107,112,96,114,102,105,117,96,104,107,94,98,100,94,99,99,102,95,98,110,105,106,100,100,114,106,94,110,94,105,115,108,104,109,105,99,112,105,108,105,106,98,110,106,102,79,102,104,109,103,106,98,105,101,99,106,113,96,110,107,117,108,109,101,99,107,103,106,109,105,109,105,115,108,116,107,107,114,83,111,102,109,117,99,108,103,96,115,109,108,97,93,104,91,110,114,95,132,113,102,96,99,102,97,106,94,118,111,90,100,91,106,118,98,101,122,99,101,103,109,104,108,102,120,103,104,104,99,104,110,100,102,99,108,103,95,98,94,112,85,111,107,119,110,106,118,96,111,108,110,98,105,103,105,105,109,102,99,101,102,106,100,104,114,105,116,94,80,111,107,114,103,103,108,105,114,90,106,97,90,111,105,106,89,97,98,101,102,105,106,110,100,109,104,108,105,85,112,105,101,101,112,98,104,107,97,107,106,110,101,105,121,113,102,101,99,108,95,106,106,96,98,98,99,117,104,91,104,110,102,109,101,113,95,99,113,97,108,117,107,102,104,119,103,96,104,112,106,94,92,105,112,103,105,91,95,104,107,108,107,107,105,100,94,101,100,111,105,104,103,99,115,99,108,99,106,107,117,111,117,108,111,103,107,114,122,89,117,99,107,114,104,97,92,120,106,99,124,90,100,108,113,103,106,94,111,103,109,101,107,106,100,99,102,107,111,102,107,105,97,111,100,120,105,106,106,109,101,107,108,104,78,108,87,108,119,97,99,101,112,98,107,103,100,102,93,95,105,110,102,109,107,112,105,90,102,111,116,95,112,100,103,117,98,108,125,103,105,109,87,107,101,105,75,107,104,108,102,106,111,96,114,107,118,98,113,104,94,107,92,90,99,110,99,96,122,101,104,115,99,109,102,105,111,99,112,98,98,98,110,106,109,88,96,102,112,102,87,112,105,98,95,126,117,115,107,98,104,94,109,127,96,103,109,95,97,104,106,97,102,100,84,100,106,106,89,114,112,107,99,106,121,94,111,106,106,103,101,100,94,108,112,95,120,96,108,96,99,114,109,94,115,107,106,100,110,106,124,106,104,114,101,117,100,107,99,95,105,89,106,117,115,111,104,94,104,108,108,103,105,97,115,104,115,101,103,107,101,116,105,103,127,108,97,107,107,108,98,113,83,88,107,80,120,113,106,97,98,102,94,107,106,112,113,94,95,109,101,100,112,105,103,105,104,107,111,101,113,98,105,113,119,98,111,114,105,113,94,105,104,100,85,104,99,101,108,94,103,101,97,91,89,109,110,110,102,103,111,95,103,105,114,95,98,105,99,107,99,127,109,106,89,109,106,106,112,106,106,99,109,106,95,98,106,101,107,97,109,102,104,105,112,112,102,103,113,98,76,105,104,103,103,104,109,105,109,101,90,95,109,106,101,98,105,112,98,94,100,101,101,95,103,98,106,105,117,111,105,101,93,99,106,95,92,91,94,103,96,109,100,103,103,104,105,99,104,106,93,98,113,91,101,102,98,99,101,92,106,93,109,96,100,92,104,120,105,110,98,106,95,98,107,103,109,100,98,103,99,121,105,103,119,93,100,108,98,108,115,108,106,102,97,104,102,109,96,107,106,87,98,101,110,116,102,104,96,100,104,95,98,109,101,110,120,91,99,111,115,113,107,107,100,103,105,108,100,107,109,112,112,105,105,118,109,113,103,98,108,109,109,107,93,117,104,99,104,106,106,113,101,102,110,110,99,103,109,105,93,100,108,104,106,102,103,101,105,104,109,103,100,109,104,110,98,102,110,104,94,103,105,114,99,116,104,113,101,98,115,109,102,112,101,106,109,99,99,98,109,96,108,115,96,105,104,110,114,109,115,108,113,105,90,107,95,105,101,99,107,102,108,120,107,110,100,109,88,86,110,96,103,106,122,104,113,107,132,96,104,101,99,125,101,105,102,110,88,102,83,99,106,113,109,102,97,101,98,104,100,101,98,128,87,100,96,102,123,104,105,101,105,95,95,101,99,105,107,100,108,95,107,107,97,107,94,106,107,105,100,108,95,110,103,106,107,104,103,108,104,116,110,83,110,113,104,102,115,97,112,92,109,103,111,107,99,99,103,103,109,103,107,113,107,120,97,101,106,106,123,89,114,95,102,111,113,106,107,103,103,111,102,103,108,105,100,110,113,104,98,100,109,126,111,110,105,96,95,112,102,97,100,108,99,98,105,102,97,104,111,98,114,99,89,121,98,106,109,96,103,106,103,91,107,114,113,108,115,97,108,105,92,105,92,96,97,108,106,89,109,109,108,114,102,98,105,108,101,108,108,109,109,87,113,107,101,91,116,107,91,108,102,92,111,98,103,117,111,113,100,102,98,102,101,100,105,99,107,104,93,112,107,111,100,94,105,116,108,90,110,101,102,109,109,106,95,103,106,112,109,106,116,100,103,101,111,117,97,99,117,100,100,100,95,107,104,97,113,102,102,101,103,97,98,107,107,112,110,99,102,105,102,109,110,103,109,101,94,95,114,109,106,99,108,103,104,96,107,116,104,108,96,104,105,66,107,111,117,100,107,97,103,116,120,110,95,95,95,100,112,94,114,94,113,93,106,103,113,109,102,118,102,98,103,95,104,108,107,95,113,105,109,96,105,106,92,104,102,102,109,109,100,110,97,105,105,103,97,116,98,99,99,99,116,93,109,100,97,104,107,103,116,99,106,112,81,94,98,108,96,98,106,113,96,97,109,104,111,104,108,112,103,101,110,103,107,104,100,104,101,104,94,97,101,112,84,121,107,104,111,101,96,110,103,97,102,100,104,100,100,105,95,106,90,103,101,102,106,113,102,88,109,101,108,100,108,94,93,104,99,108,95,85,98,106,116,100,103,112,104,107,97,108,108,104,105,113,116,116,100,111,92,103,114,109,99,89,104,106,77,105,85,82,97,103,104,103,88,90,97,108,103,74,100,99,106,104,119,125,113,101,95,100,102,107,115,107,102,106,100,104,117,90,112,109,96,105,101,95,99,94,103,117,104,106,111,99,105,104,89,106,101,98,98,106,108,106,110,103,109,93,102,113,102,88,109,95,108,120,107,110,105,101,108,91,106,99,103,102,104,102,98,105,97,107,102,113,103,102,86,105,105,102,106,118,103,111,100,102,116,111,105,105,106,102,99,102,102,103,117,93,95,88, +504.53418,105,108,99,108,92,90,107,102,94,108,90,98,98,116,107,89,103,112,90,103,110,99,111,94,104,96,107,121,112,121,98,103,101,110,118,105,108,102,105,97,102,97,75,105,100,117,101,110,103,93,85,104,98,100,114,107,99,106,99,98,116,88,95,91,114,122,105,111,100,99,106,105,104,119,107,109,64,99,95,109,113,109,97,96,99,105,107,113,104,99,87,89,113,98,100,98,101,105,91,95,97,105,103,96,105,105,99,104,122,102,95,103,107,109,103,103,131,95,110,94,107,100,104,89,100,102,121,107,106,105,102,126,96,107,111,109,102,100,101,110,92,124,97,100,112,94,111,105,101,97,100,98,99,117,104,102,109,88,103,102,104,113,103,106,115,103,99,107,97,97,105,108,104,107,104,111,102,99,115,104,104,103,110,110,94,100,98,96,113,106,106,99,110,96,109,101,100,78,104,138,110,103,103,108,106,101,103,103,110,116,105,113,122,96,109,117,85,115,106,105,94,108,113,94,104,99,102,102,97,110,106,101,115,102,107,99,112,108,107,117,92,98,105,98,104,95,89,96,106,101,108,105,102,107,100,97,96,103,109,106,93,109,107,96,92,108,106,113,100,87,107,96,105,114,103,99,106,108,104,105,93,115,100,122,110,113,99,109,99,99,104,104,108,97,113,98,114,104,99,106,121,96,105,99,100,100,114,109,111,118,104,113,113,128,99,103,100,116,112,79,97,101,98,105,115,114,106,107,116,113,105,105,112,96,118,102,110,99,95,99,109,102,98,113,102,106,114,116,106,107,109,113,90,109,104,104,111,107,104,102,101,100,95,93,112,100,99,106,101,105,109,113,107,122,102,98,105,109,105,105,113,100,105,100,99,107,102,104,118,94,115,95,105,102,101,100,113,100,99,112,86,111,108,114,97,98,108,121,108,105,97,102,119,109,98,99,118,104,105,102,87,113,94,102,112,99,90,100,112,107,104,113,110,113,106,104,105,113,102,102,110,104,96,111,104,100,100,111,103,109,108,106,106,103,98,106,110,119,112,73,82,105,105,100,105,104,110,95,103,99,106,106,110,102,108,97,93,113,110,112,104,101,117,103,98,103,118,101,103,108,105,114,104,97,100,100,109,100,102,110,109,95,100,101,102,104,102,103,100,108,97,117,105,99,104,97,94,93,97,98,112,105,109,109,90,94,116,107,109,98,108,108,106,97,109,103,107,95,101,97,106,98,109,95,106,113,105,105,108,95,97,107,104,103,88,96,100,106,97,89,101,121,74,101,104,103,102,89,103,102,92,100,109,110,107,110,95,105,98,99,103,102,114,98,113,118,112,112,107,104,99,98,110,99,126,113,108,109,114,107,112,103,114,108,101,96,102,106,109,100,106,100,109,119,109,97,99,105,106,106,84,98,76,105,98,95,101,101,107,97,109,99,96,108,116,98,104,109,73,98,109,102,100,106,102,102,115,101,102,108,104,107,99,71,104,96,111,102,117,103,107,109,96,100,105,98,119,95,97,103,113,117,107,108,111,97,99,99,105,106,104,103,110,94,105,106,99,106,92,93,111,111,100,99,118,103,114,102,103,87,102,108,106,110,99,110,123,116,110,114,109,102,102,90,98,106,105,105,106,104,104,96,102,105,95,104,87,120,116,113,113,106,113,108,101,114,115,113,114,99,116,100,96,113,108,106,100,105,100,106,117,88,105,101,93,105,107,87,110,96,107,94,98,107,107,103,104,107,95,100,100,96,107,109,91,109,101,114,106,111,102,113,105,113,94,102,101,101,107,109,105,117,107,114,115,106,99,118,104,115,109,86,106,95,99,99,117,107,126,106,107,98,113,103,110,108,100,120,118,112,107,114,127,110,110,104,107,101,106,99,105,99,101,105,102,108,103,114,105,102,92,114,101,102,105,102,108,98,113,106,96,92,102,108,95,99,116,102,103,108,110,114,115,99,111,102,105,104,100,106,109,104,100,117,108,102,84,109,106,111,109,93,101,92,103,99,101,105,109,106,107,105,113,107,116,84,109,107,101,97,104,111,109,117,103,106,108,122,98,106,100,110,104,110,125,94,109,115,97,109,123,108,104,109,100,100,107,87,103,103,103,111,112,106,102,110,102,113,103,110,107,108,107,99,88,103,112,109,115,103,117,109,110,110,96,106,107,116,102,116,93,109,100,98,109,106,111,100,93,105,95,112,104,94,109,109,106,107,107,104,105,105,86,105,99,101,100,95,106,100,101,98,105,101,104,102,102,99,99,100,96,95,108,95,107,133,110,97,104,102,97,86,109,108,106,111,98,106,120,105,105,109,101,100,108,110,112,105,109,104,98,100,101,100,103,100,105,107,107,113,85,97,93,102,102,108,101,106,104,101,112,113,104,104,109,110,106,102,98,121,102,113,98,106,112,103,98,104,99,101,107,114,99,106,96,76,106,112,103,109,93,103,102,112,111,112,105,107,102,111,125,113,103,101,111,99,100,105,111,107,107,103,120,101,99,120,82,99,102,105,102,109,92,64,104,97,96,114,97,128,95,99,103,105,103,98,109,106,113,106,109,110,94,105,99,107,112,104,106,95,105,83,106,99,118,110,109,91,84,91,105,96,102,117,99,101,112,94,113,106,109,98,117,100,106,118,106,98,115,116,98,100,104,115,70,106,87,99,104,101,96,108,101,107,100,102,113,127,91,106,101,103,104,108,103,109,97,103,109,92,120,107,102,114,109,111,109,102,105,104,119,116,110,113,103,105,117,110,122,110,98,100,105,101,103,100,99,102,115,109,105,99,102,115,107,105,109,89,104,109,111,102,110,100,103,102,100,104,111,109,117,114,113,120,93,111,116,105,74,112,114,117,100,113,102,108,121,104,103,117,116,106,95,108,102,104,115,95,107,88,108,118,97,106,103,111,102,105,107,107,106,123,99,91,100,103,109,124,84,110,97,105,96,103,112,102,91,112,97,102,98,90,105,95,113,110,98,103,105,110,106,104,121,109,103,100,110,108,97,102,104,109,106,106,114,111,100,102,116,108,105,105,116,102,103,104,106,102,102,99,106,106,93,100,94,110,109,107,97,116,111,106,114,111,115,109,113,101,107,102,108,101,99,80,120,106,129,108,110,100,106,105,105,109,99,101,109,97,106,94,104,100,117,100,108,108,100,102,111,105,102,103,96,108,104,101,109,102,107,105,100,84,104,120,106,101,109,104,101,102,107,99,105,87,106,106,104,104,112,105,103,102,118,106,108,96,101,104,96,107,104,100,118,92,102,98,105,100,110,94,107,96,111,103,102,107,127,104,103,104,114,102,113,99,95,110,109,114,132,97,94,88,100,113,105,110,102,99,125,100,103,109,109,96,96,110,99,99,106,100,121,106,90,116,110,104,97,109,106,100,81,102,103,106,105,109,105,99,97,108,97,99,107,100,111,92,98,108,105,107,102,99,96,97,108,109,107,103,93,107,95,91,92,93,113,102,102,109,112,89,101,107,108,107,109,111,100,105,105,98,93,105,100,113,100,121,75,83,107,108,119,99,113,110,121,103,95,102,117,80,111,106,106,103,111,103,101,110,113,98,96,107,90,103,99,107,107,102,98,107,103,111,94,107,113,91,108,112,115,109,95,106,109,101,106,109,109,105,110,102,95,113,101,103,103,98,79,106,121,107,118,111,110,100,107,101,111,107,69,84,111,100,98,114,111,105,114,111,113,98,113,114,106,95,105,112,117,95,97,109,103,98,109,99,108,101,111,98,97,113,110,92,109,103,92,93,94,108,113,100,97,106,97,89,101,100,105,106,97,104,103,103,109,97,99,119,105,101,102,103,101,109,105,119,100,104,106,96,107,101,105,105,111,121,108,96,108,104,115,109,105,90,113,101,113,102,104,105,92,101,96,124,99,110,104,99,95,101,106,92,108,108,113,106,100,106,102,96,104,108,102,103,104,114,90,112,103,112,105,106,91,107,96,107,101,114,92,93,105,112,98,105,109,107,115,99,110,110,107,113,107,111,113,100,107,102,113,102,110,100,104,98,102,110,102,109,102,105,113,111,114,109,109,127,106,109,103,88,102,101,106,109,101,117,113,105,111,106,98,98,108,106,100,106,101,98,125,98,110,98,101,108,98,107,90,101,124,70,107,121,113,91,102,109,104,102,99,113,104,99,101,92,103,92,121,118,92,109,103,114,103,108,104,115,100,114,106,87,99,107,91,105,99,106,103,102,117,113,109,86,99,106,103,91,105,118,107,122,112,101,97,105,109,102,96,108,103,98,102,109,91,113,98,84,92,96,83,98,106,110,110,109,104,105,117,102,109,91,95,106,109,105,112,99,99,97,104,98,97,106,123,111,96,113,110,106,104,110,103,104,102,112,110,117,108,107,109,109,112,103,102,97,105,105,96,109,71,108,124,104,112,95,109,88,102,98,106,108,109,109,111,113,102,97,119,97,111,97,112,97,94,108,102,114,101,102,94,102,115,98,99,98,101,103,104,107,103,102,84,106,95,89,97,100,99,98,105,99,96,110,99,108,96,101,91,89,104,99,106,102,104,107,111,99,118,111,103,104,101,94,96,105,118,103,115,105,107,101,97,104,104,106,104,99,102,113,112,111,95,106,115,80,113,107,101,96,111,107,108,89,110,101,118,109,98,114,109,105,92,97,113,112,108,71,106,105,107,103,101,96,115,116,112,104,108,97,101,108,96,103,116,106,97,101,105,104,101,98,100,102,109,98,109,113,95,93,118,90,105,109,113,110,113,99,104,100,111,119,98,95,103,96,103,101,108,98,97,97,95,113,111,108,93,112,100,111,112,104,100,99,105,93,96,75,81,106,94,105,110,93,103,108,108,101,108,97,110,92,117,106,87,106,112,110,118,102,99,104,112,114, +504.67484,99,137,120,125,103,100,101,105,114,107,112,98,98,107,101,98,108,96,120,104,96,99,94,111,106,100,104,101,113,104,84,122,88,92,105,85,103,96,107,94,104,102,108,104,101,116,109,111,107,110,113,107,106,97,90,112,106,108,99,100,90,93,105,74,91,107,104,111,108,94,96,106,108,95,105,98,105,96,94,105,103,82,109,114,114,103,96,104,96,100,108,98,109,97,108,100,105,94,98,99,98,111,114,110,110,99,102,110,104,100,93,112,87,108,108,120,104,103,100,109,116,104,105,104,108,105,102,102,108,114,107,104,108,96,101,104,97,96,102,101,109,106,110,101,94,94,103,117,93,105,102,101,110,95,97,106,111,100,99,96,102,94,105,118,110,106,109,104,109,88,115,99,108,104,100,104,95,103,106,86,95,110,105,104,111,101,98,97,104,88,106,107,109,115,104,101,96,98,103,97,104,103,109,107,104,106,103,108,107,101,78,100,107,100,107,107,105,96,97,96,104,108,110,88,98,113,110,104,107,110,105,120,98,104,107,110,96,114,115,97,100,89,100,104,105,103,106,98,100,103,114,108,97,101,103,115,99,104,104,102,102,111,103,107,104,95,102,90,97,113,107,96,115,98,100,104,105,99,105,103,112,103,117,104,102,103,99,105,101,111,101,105,97,102,123,112,90,109,105,109,98,94,99,106,101,116,128,112,101,109,73,113,100,95,105,105,105,103,101,95,94,97,102,113,106,104,99,92,113,99,86,100,104,114,104,99,100,109,110,94,102,102,100,88,102,98,105,111,114,103,109,106,84,102,98,105,73,95,102,100,109,98,103,92,93,88,111,117,97,94,108,112,125,106,86,102,116,117,108,95,110,106,86,108,134,93,106,118,105,101,116,91,113,111,103,111,95,105,103,113,91,97,106,94,103,106,93,113,125,109,95,99,101,104,106,98,113,109,108,91,101,96,100,103,109,106,111,101,101,114,98,98,110,105,92,107,104,116,101,103,115,104,113,111,99,107,107,103,108,103,86,102,96,99,108,101,117,117,105,109,104,90,97,107,103,116,110,101,103,110,104,107,94,117,94,97,108,105,108,102,100,98,108,103,94,89,104,108,104,105,114,117,108,102,92,110,87,100,101,102,120,97,104,102,101,114,71,115,109,93,103,107,94,94,109,104,90,107,106,104,108,83,101,81,71,109,113,99,99,106,97,108,108,105,96,101,102,108,106,114,90,98,108,95,112,108,136,109,111,109,108,109,109,98,99,93,101,97,96,111,109,99,111,111,100,104,112,115,95,108,96,103,114,98,99,112,102,96,101,112,106,108,111,98,107,96,107,93,95,107,98,120,97,92,106,106,98,109,108,108,109,106,107,95,99,101,101,104,99,99,102,107,109,99,127,104,125,113,102,110,99,111,104,111,104,95,99,108,100,111,104,101,96,107,100,96,110,112,97,107,108,104,105,101,98,87,105,103,101,99,97,104,103,92,98,104,99,116,94,109,102,99,108,98,101,105,118,102,109,109,107,120,104,101,109,92,113,116,93,112,101,105,108,104,94,98,97,97,103,109,105,100,109,117,105,105,100,108,107,99,109,114,103,98,108,97,108,120,110,96,113,104,98,108,98,85,99,94,107,100,86,109,104,104,104,98,95,98,103,112,109,108,120,109,97,104,107,106,113,100,103,98,102,109,110,105,104,101,109,114,124,97,106,99,94,107,111,99,117,103,99,120,104,114,107,105,97,122,103,107,113,106,118,102,99,103,109,94,83,110,105,93,110,108,86,111,101,99,101,106,89,97,104,108,112,103,97,110,100,94,95,105,100,109,110,112,95,106,101,97,112,106,113,101,117,109,115,111,100,103,110,102,102,110,86,102,113,116,108,102,96,101,117,108,100,106,104,106,110,120,103,113,110,103,97,100,111,94,94,102,100,99,99,107,103,105,105,104,101,108,100,104,109,114,103,101,110,107,108,114,104,101,102,107,106,92,96,100,97,107,104,112,96,110,111,110,95,101,102,110,99,93,101,98,106,92,101,101,98,105,118,109,102,105,106,105,95,104,102,106,96,117,95,102,95,97,99,117,102,120,102,108,103,99,109,98,95,112,103,104,100,108,103,98,106,111,118,112,100,100,115,113,139,110,102,109,114,101,106,109,107,94,102,116,114,96,107,106,103,99,113,97,102,105,109,96,113,99,95,95,106,109,101,100,94,105,99,100,92,97,104,101,103,95,99,113,98,97,105,115,99,106,94,112,95,91,97,107,101,102,93,113,91,93,116,109,98,101,90,109,98,92,96,123,101,107,97,105,106,95,114,106,99,110,98,111,106,96,94,96,98,120,99,99,107,93,112,109,88,81,103,117,102,105,92,113,108,101,110,98,93,100,115,102,98,101,101,106,116,108,107,117,110,113,93,110,105,105,106,100,101,97,107,109,122,105,111,111,109,93,99,105,104,112,109,105,103,96,121,107,122,103,98,98,103,113,99,105,104,106,103,107,108,108,103,108,115,97,101,95,82,124,104,92,97,113,101,103,91,117,112,109,92,110,117,105,104,103,110,111,110,117,99,105,121,112,98,109,102,99,101,93,101,109,100,107,106,110,103,101,106,112,106,104,96,106,106,98,105,110,100,99,112,104,87,115,106,105,116,109,105,91,110,104,101,109,110,96,106,87,97,107,93,102,103,104,110,106,108,123,101,109,102,101,100,101,108,107,95,111,105,110,114,105,96,105,99,113,106,92,75,96,116,127,105,87,102,100,109,103,102,116,103,105,114,107,99,109,109,101,102,92,98,113,111,104,106,103,120,102,98,106,110,105,109,96,109,120,108,104,104,99,104,107,96,104,99,108,101,104,112,87,104,116,117,102,103,101,103,95,117,105,96,99,102,109,96,92,116,109,103,100,110,122,104,110,98,98,121,102,104,109,98,85,99,104,107,104,103,113,110,102,105,107,103,109,111,105,99,113,95,117,99,92,99,101,93,104,103,106,112,108,98,104,113,113,111,109,101,98,108,101,87,80,103,100,118,104,101,92,104,102,110,100,107,104,110,97,100,103,104,107,98,105,108,100,108,104,112,111,98,97,93,105,100,96,99,110,104,100,102,96,105,113,100,120,111,103,111,95,124,105,108,97,96,85,126,100,95,115,104,103,110,91,93,88,100,108,99,112,103,104,88,106,109,108,112,106,104,98,106,101,104,104,108,114,109,108,102,110,108,105,108,98,107,94,111,99,110,103,117,110,113,113,107,113,98,110,112,113,105,92,102,100,108,103,103,95,104,100,87,95,104,114,84,122,105,105,94,108,100,106,113,106,103,103,99,96,111,110,105,96,105,100,101,106,112,109,107,105,109,105,108,103,93,99,109,110,100,100,99,107,118,103,100,103,102,107,102,84,104,104,116,108,100,104,104,105,104,108,124,111,94,104,102,94,102,117,107,99,104,105,105,106,104,108,104,100,110,94,113,108,116,103,104,96,93,97,104,101,110,99,104,103,105,105,105,109,102,91,114,93,105,105,106,104,102,107,101,106,101,98,109,98,103,105,105,99,99,119,102,106,106,102,96,105,106,104,109,99,103,117,104,105,117,101,104,103,100,109,97,121,102,107,102,106,113,96,100,103,65,106,111,111,102,101,100,132,105,111,100,99,95,103,110,107,109,100,100,103,117,107,110,102,100,95,105,109,105,94,104,106,102,105,109,102,107,106,108,98,106,101,106,96,84,104,98,105,101,102,112,96,100,84,120,106,95,100,105,98,104,103,97,104,96,103,94,105,97,106,104,105,87,101,101,104,107,116,110,107,102,108,110,95,105,123,91,100,96,111,91,107,97,102,98,101,103,112,109,108,101,126,98,104,100,121,113,110,103,102,103,106,113,104,109,86,105,78,106,100,99,99,105,96,103,105,119,102,115,101,107,112,106,102,118,111,94,107,114,100,109,104,106,103,98,108,103,108,98,104,111,107,115,102,110,89,113,111,93,114,120,103,99,106,109,103,92,109,99,106,106,78,102,99,101,104,113,91,113,102,105,96,92,102,111,103,105,120,106,109,103,103,90,91,110,106,112,109,107,109,111,102,102,115,105,104,102,110,95,110,101,96,113,107,88,131,113,123,109,97,114,98,97,108,100,98,93,108,111,121,110,104,104,92,110,118,113,106,109,88,101,104,102,94,101,102,97,114,103,103,119,107,107,114,114,112,104,109,95,113,99,102,97,99,107,96,102,109,105,104,104,97,94,115,122,99,107,105,110,108,116,85,106,121,95,103,108,96,94,107,117,105,112,104,112,103,120,109,110,114,82,95,109,121,106,122,103,105,105,103,99,108,103,103,113,104,109,110,100,96,102,112,105,99,88,94,109,104,108,103,117,104,103,99,91,110,118,100,114,96,97,108,97,98,90,121,98,105,99,104,116,107,93,102,100,106,107,93,100,105,103,117,100,99,95,97,113,93,108,99,105,111,109,108,117,112,106,102,109,97,93,106,108,97,107,102,107,106,100,109,96,102,103,98,100,93,93,100,102,107,96,99,116,107,100,101,117,98,102,104,103,108,102,96,96,103,113,101,102,96,105,85,106,111,106,93,102,101,93,101,107,100,106,107,96,106,105,101,106,86,101,102,104,111,110,95,108,105,119,100,103,96,98,107,109,87,96,94,98,95,117,106,104,114,104,128,110,94,102,98,102,112,107,111,95,93,89,103,110,103,116,98,91,106,99,103,98,91,102,98,117,104,103,107,98,110,100,105,95,99,105,106,99,92,93,101,111,111,105,107,96,92,104,96,104,98,108,96,105,111,100,112,97,102,108,107,101,116,90,102,122,102,95,97,99,112,89,108,113,92,108,105,109,99,115,85,100,105,82,102,106,87,105,103,67,96,94,98,93,99, +504.81549,107,93,87,82,90,86,93,101,99,110,90,102,106,78,100,93,108,99,94,100,102,109,96,105,119,99,72,96,110,96,94,100,96,98,87,99,102,110,96,105,106,105,103,97,110,115,95,110,104,113,95,102,106,98,106,104,99,98,104,102,101,90,109,93,101,103,104,103,107,80,102,107,109,93,101,104,98,83,100,96,99,100,84,98,103,92,104,116,107,95,80,97,105,97,105,97,113,96,96,96,101,103,112,86,101,103,104,103,106,106,104,108,96,109,91,80,96,101,102,97,105,101,95,104,105,107,120,99,103,96,95,98,97,100,104,97,101,101,116,99,90,97,101,106,97,106,101,88,103,103,105,101,120,92,110,102,97,97,100,114,103,97,96,102,112,100,109,108,112,105,95,102,107,107,97,95,107,100,100,97,106,108,109,107,107,98,90,98,113,98,102,109,95,102,109,96,99,106,106,101,94,104,120,94,114,92,100,108,103,103,97,100,101,105,104,105,95,103,93,92,102,101,104,91,105,108,106,110,107,106,113,107,116,94,96,103,93,107,111,96,95,101,120,106,102,104,95,97,107,88,103,113,91,108,106,95,94,116,96,102,103,103,101,110,97,126,98,104,106,97,133,107,108,82,111,91,93,98,110,91,107,104,110,102,98,99,96,100,104,96,98,102,103,117,113,98,106,106,104,101,108,105,104,115,90,117,113,96,101,109,94,116,105,106,109,100,98,107,94,101,109,89,102,104,104,102,103,95,106,105,108,104,109,110,122,111,114,97,92,95,108,102,106,95,94,106,103,94,98,96,93,104,102,96,91,102,104,124,101,115,96,101,104,96,90,95,108,103,108,84,88,117,115,98,105,102,103,111,108,106,105,107,104,103,99,104,98,91,99,87,113,124,100,99,96,106,95,106,104,106,98,105,107,106,104,106,117,104,110,104,96,101,112,88,98,95,101,98,97,91,105,105,102,99,102,96,107,106,110,111,91,97,102,99,94,102,93,112,101,103,95,115,105,105,106,113,97,92,104,104,105,102,99,112,102,97,101,101,102,100,94,101,104,106,100,113,110,97,100,100,102,117,98,103,85,103,92,113,99,105,101,116,108,101,98,92,106,108,108,106,93,103,107,104,93,111,96,101,99,98,116,105,105,88,103,95,97,101,109,104,104,104,103,92,110,96,94,104,100,91,97,96,105,95,99,103,110,100,96,94,94,105,101,104,100,101,104,100,101,111,90,98,100,88,114,89,92,103,102,145,112,104,106,95,109,106,95,102,101,100,91,103,97,101,109,100,99,99,112,102,93,78,112,102,101,114,91,100,99,104,104,98,114,90,104,96,107,110,112,106,99,102,105,95,82,105,101,104,110,100,110,108,95,102,95,106,109,110,108,98,79,106,91,108,112,100,96,99,118,102,118,87,113,91,110,107,100,105,101,99,105,100,93,110,95,102,107,97,96,99,101,98,110,97,98,101,108,100,87,106,94,104,108,116,99,91,92,110,92,97,99,103,101,105,92,105,103,95,116,96,103,108,96,109,112,112,103,103,100,94,102,109,118,98,100,94,96,101,106,96,113,112,110,108,105,105,98,110,108,84,105,95,103,110,99,87,105,99,102,102,99,98,110,102,98,109,99,116,101,115,115,95,106,96,96,95,105,115,91,109,103,102,104,94,88,111,100,97,103,107,114,107,93,104,107,106,113,108,106,98,116,94,104,96,101,105,117,103,99,98,92,102,106,92,105,105,114,95,105,114,102,101,100,108,97,96,104,102,99,95,98,121,99,108,102,103,107,112,84,105,123,104,101,105,103,89,96,110,91,101,104,99,106,104,92,107,99,116,105,101,120,110,88,107,79,102,118,98,102,126,101,102,99,111,103,99,103,77,107,99,109,104,99,101,98,89,77,101,105,98,102,109,104,99,96,94,102,94,100,98,101,98,97,107,91,100,106,102,105,75,94,94,96,116,92,97,101,94,106,101,104,106,101,103,93,86,95,87,91,97,101,132,113,103,96,107,104,87,97,98,97,111,104,99,109,101,104,101,101,100,102,112,96,95,99,93,102,91,102,110,105,105,106,111,104,95,100,120,113,108,96,109,106,103,98,105,104,103,140,108,116,104,105,98,98,95,98,101,112,102,100,87,109,116,105,105,99,83,99,105,108,117,110,113,103,94,95,97,99,82,96,87,115,101,108,94,97,110,115,99,104,99,102,122,105,103,111,100,97,98,93,103,95,88,105,104,103,100,99,90,95,98,101,105,106,87,87,104,97,109,90,101,103,104,104,108,106,99,105,101,96,115,97,110,103,109,107,101,103,103,108,105,121,105,105,101,103,97,101,109,106,113,112,98,112,114,96,116,113,108,88,104,124,99,98,98,108,97,95,105,99,104,118,91,100,91,101,104,93,100,106,104,102,105,98,104,99,106,104,93,105,101,109,115,99,98,91,106,105,97,111,107,103,115,106,107,97,105,99,97,103,108,115,97,108,108,103,101,93,121,105,105,116,103,108,104,111,111,99,100,91,97,105,108,105,96,113,110,100,97,103,101,108,116,104,109,93,107,106,107,101,108,113,100,104,109,98,110,99,95,105,99,91,116,104,103,102,122,116,103,104,102,118,102,104,108,96,110,116,106,111,97,101,98,107,116,99,99,112,99,102,105,113,113,103,107,118,99,120,104,102,111,100,115,103,99,112,107,99,113,95,104,101,96,104,100,103,108,108,101,119,105,105,100,105,106,112,117,96,114,105,110,91,106,108,115,106,113,104,96,112,121,109,100,112,99,109,107,116,104,105,111,106,108,104,107,109,110,113,110,113,103,99,121,120,115,98,111,101,93,100,99,102,95,114,109,96,97,119,102,107,102,94,102,111,114,113,102,104,117,103,125,107,80,111,110,109,112,98,108,107,104,108,100,107,106,110,104,104,101,102,103,88,111,105,109,101,100,108,94,112,105,98,107,111,94,100,98,96,106,99,113,81,104,104,106,98,113,108,106,113,122,106,120,113,102,107,107,91,98,110,101,98,103,106,101,103,110,100,114,99,103,102,102,115,94,98,99,114,115,105,109,111,129,90,106,121,101,103,99,109,100,100,105,113,105,96,115,113,109,110,111,101,112,100,106,117,106,130,106,99,105,105,100,111,95,94,99,110,105,113,102,109,98,98,103,109,106,113,99,110,100,103,111,106,101,70,110,113,115,102,108,95,103,102,108,109,102,101,91,113,88,104,92,111,117,90,94,104,101,96,91,108,113,121,110,109,106,98,112,113,105,72,101,99,101,93,102,122,110,109,97,113,101,109,111,102,102,104,107,107,103,98,108,101,107,113,100,110,103,90,120,106,94,105,115,114,107,109,102,80,101,104,94,110,104,111,111,102,101,113,98,100,102,99,113,99,96,110,106,91,114,101,98,108,101,108,109,107,111,119,99,101,101,104,101,106,98,113,108,113,112,117,107,106,107,113,108,99,105,104,99,110,99,108,99,99,96,107,99,118,116,96,115,105,105,98,113,107,106,111,99,106,105,113,107,110,107,111,103,74,103,109,110,97,112,73,117,113,112,112,90,103,117,104,123,95,114,109,109,108,100,94,107,111,101,105,109,98,100,97,108,102,108,121,107,103,110,113,105,111,99,113,105,102,109,108,108,96,125,103,97,120,115,108,95,102,107,105,101,108,104,114,105,104,123,106,112,95,115,109,101,103,96,116,97,108,112,124,95,102,107,98,104,113,111,109,104,104,104,97,116,109,107,106,112,105,102,107,113,111,87,104,112,112,103,108,98,113,106,103,119,104,118,108,101,104,111,93,114,113,109,112,111,103,113,108,109,95,88,99,93,93,124,120,103,117,107,101,96,104,103,108,102,110,91,99,110,105,108,105,102,121,100,112,95,94,104,98,104,106,103,100,102,115,105,111,96,111,102,110,103,101,121,105,114,105,114,106,109,109,104,103,119,105,107,115,104,107,99,107,100,99,109,100,87,113,107,103,111,95,116,101,120,110,96,103,100,109,117,104,104,105,79,104,103,105,106,108,102,110,112,103,88,80,117,105,111,101,105,112,109,109,98,110,115,101,104,125,91,99,109,104,105,117,115,96,114,102,106,98,103,102,110,116,107,102,108,96,109,119,95,95,105,98,115,112,110,112,117,90,100,106,101,109,106,107,104,110,107,108,132,112,105,101,107,109,108,105,96,108,111,98,96,109,107,106,104,105,116,123,111,103,107,100,95,113,109,97,97,100,114,116,116,108,104,100,111,108,127,99,105,104,115,102,96,109,101,94,105,119,100,95,93,109,110,106,105,95,114,115,96,102,97,112,106,112,106,84,105,120,111,106,112,97,111,113,103,111,106,102,113,109,105,99,86,118,106,105,103,105,111,95,109,107,101,111,116,131,112,109,92,112,112,124,105,91,94,99,99,115,96,98,104,105,106,99,98,101,108,101,117,102,103,106,74,93,100,103,104,98,102,109,98,93,87,102,92,102,99,105,95,101,109,95,120,108,106,108,106,99,114,107,106,115,118,115,100,102,113,103,106,101,100,100,102,110,96,107,114,98,104,112,95,103,113,96,107,109,102,118,100,100,115,117,101,113,104,107,110,95,107,113,107,99,100,106,116,111,106,117,96,112,108,100,106,105,112,110,92,95,100,115,113,98,106,98,105,113,92,113,100,100,102,103,101,116,103,97,105,94,108,110,106,102,89,100,94,83,104,91,94,91,104,109,95,116,99,105,103,106,101,97,93,88,96,103,101,113,105,109,110,104,122,103,91,110,113,109,107,100,106,128,82,103,79,100,103,107,117,121,102,107,100,113,101,103,106,90,108,100,103,113,106,90,99,101,103,107,95,93,102,107,100,110,107,96,101,121,102,105,103,106,95,104,99,103,102,115,101, +504.95615,100,93,81,116,109,112,97,103,104,104,116,97,110,97,103,110,75,112,126,106,113,96,105,67,104,109,100,105,108,115,99,102,91,103,98,104,109,109,108,109,91,101,98,101,115,107,80,108,99,99,107,106,105,119,104,100,106,117,108,82,100,103,103,103,103,99,104,97,98,109,106,98,95,103,92,99,92,113,103,113,118,98,108,103,98,99,96,106,101,104,99,111,102,109,102,94,98,112,101,102,105,95,101,106,99,99,93,109,103,93,105,114,91,97,111,103,101,100,100,105,98,106,106,103,120,112,105,92,115,104,109,110,100,100,111,98,113,118,88,99,99,121,99,102,102,100,110,108,106,104,139,105,104,97,93,107,118,101,114,91,108,98,97,92,112,84,95,100,104,100,118,116,108,100,101,101,103,93,111,102,99,97,111,103,107,101,95,100,104,94,91,101,101,99,110,102,97,101,115,108,97,92,94,109,105,106,99,115,105,106,110,102,99,105,97,98,103,109,96,112,115,112,103,101,104,107,85,114,104,105,109,113,110,111,112,112,104,113,97,101,99,104,108,117,98,104,110,128,122,102,104,106,112,107,102,117,103,89,118,115,102,108,106,102,103,112,104,108,104,94,83,108,114,99,111,100,108,112,108,114,109,104,112,103,112,106,95,114,102,104,109,101,102,114,118,116,104,112,100,105,112,103,68,102,107,114,106,106,103,107,100,116,108,99,112,90,102,109,91,103,103,98,109,106,104,115,106,112,116,119,102,108,108,108,100,102,103,104,104,108,101,106,103,98,99,106,111,114,110,105,114,109,101,98,94,122,112,108,105,98,114,102,99,104,102,109,95,95,111,109,104,110,110,97,96,110,106,104,103,109,109,112,99,94,108,96,105,106,102,102,108,102,102,116,106,105,105,107,114,75,108,112,109,96,115,103,103,105,103,109,102,100,105,109,115,100,117,103,92,108,106,96,105,109,101,90,108,84,105,101,95,117,103,98,99,107,99,81,99,104,115,102,94,99,90,119,106,91,99,109,112,112,95,106,105,106,93,105,109,97,105,94,112,95,100,104,106,109,114,95,111,109,103,104,96,97,99,107,99,121,103,103,108,103,97,102,109,98,80,98,104,111,103,94,112,109,97,93,100,96,109,107,114,107,97,111,99,112,98,105,109,112,106,113,105,99,115,102,106,97,108,109,102,106,102,119,115,118,98,116,100,112,102,112,105,115,104,108,103,102,106,95,105,100,107,77,113,104,113,101,103,108,111,101,99,99,101,98,102,99,115,108,104,110,109,116,106,107,107,114,108,104,98,109,101,105,106,101,106,102,109,94,107,112,102,106,107,99,98,94,106,109,105,123,123,112,105,104,117,90,103,106,120,109,117,96,95,97,111,113,97,112,109,104,106,94,108,100,104,109,112,101,101,114,106,113,94,105,106,98,87,98,92,104,96,98,87,106,118,112,105,105,99,91,98,85,93,103,107,103,115,102,107,106,104,117,83,110,113,102,105,108,91,106,92,106,111,107,87,106,108,90,116,94,98,101,109,95,102,101,109,111,102,101,101,102,97,105,119,96,105,112,107,106,111,101,106,115,100,101,107,107,102,102,108,107,108,125,94,106,112,95,98,90,100,101,98,104,96,96,98,114,111,109,94,108,119,104,101,111,110,107,113,102,101,99,118,111,115,99,132,96,104,104,107,108,106,109,112,95,120,106,111,110,113,98,108,117,103,95,107,103,99,103,103,104,85,93,105,107,107,100,109,103,102,112,116,109,104,104,108,102,129,110,117,111,102,109,101,110,103,105,106,106,98,104,113,96,103,103,100,103,112,107,104,108,107,105,107,105,112,105,107,102,118,111,108,100,101,110,107,120,100,99,107,103,109,110,99,100,94,82,104,102,105,104,107,98,120,107,106,110,91,103,110,81,99,97,105,113,98,100,108,111,103,94,125,99,97,105,105,116,105,98,101,96,104,101,104,114,101,101,106,116,103,108,99,125,98,93,107,113,114,99,96,120,103,103,122,116,98,105,113,107,112,103,117,113,100,96,91,111,121,101,109,105,91,106,91,102,106,107,104,105,106,99,95,117,117,106,92,98,113,105,100,110,103,104,105,99,101,121,102,116,103,112,111,100,120,116,108,103,107,101,106,96,117,100,101,113,105,109,100,107,112,99,113,117,97,116,107,110,108,91,115,106,108,109,109,97,109,82,93,95,98,111,94,99,99,100,100,118,94,106,100,105,105,100,110,102,105,105,116,101,108,101,91,116,102,110,95,111,102,95,102,104,118,118,104,102,101,117,90,107,113,105,113,113,103,100,112,103,94,101,107,98,96,94,95,101,99,105,105,105,103,92,115,102,127,108,95,96,100,99,109,107,107,95,107,118,111,99,101,100,95,113,93,109,112,114,100,84,93,104,119,94,104,107,84,100,101,107,93,105,107,105,100,104,92,96,109,103,107,130,105,113,95,93,105,105,101,106,103,108,91,97,94,100,106,109,100,93,108,113,96,113,95,96,102,105,100,98,110,104,98,99,104,100,106,94,108,93,102,105,122,99,111,110,102,96,85,101,112,97,104,109,104,109,105,106,115,100,109,97,92,103,110,111,100,99,111,94,111,102,98,101,102,115,121,105,120,95,105,92,105,114,102,106,105,113,95,96,98,95,110,109,91,107,101,100,94,124,102,104,113,111,100,106,100,102,92,110,102,116,71,100,106,106,100,104,97,89,105,91,114,106,116,107,99,86,103,115,89,100,103,99,101,110,93,107,112,108,95,104,108,116,90,106,108,105,103,113,98,94,94,107,106,113,107,99,101,94,102,89,102,82,112,108,93,104,98,99,114,99,106,103,109,105,102,118,116,101,117,114,110,95,87,109,88,121,108,103,103,114,115,110,92,100,87,115,102,112,105,99,100,100,102,98,109,115,97,96,90,109,99,107,111,98,111,101,110,113,105,108,99,78,98,112,93,103,106,104,107,97,109,103,101,92,94,81,98,100,104,111,109,107,108,102,93,96,102,96,101,104,107,97,98,90,96,103,90,118,117,96,102,93,107,91,102,101,102,111,109,99,95,97,104,109,91,104,95,111,107,106,109,99,108,91,104,90,100,95,107,107,103,95,101,106,95,105,108,94,96,106,99,91,108,96,106,105,95,105,108,100,103,105,99,126,98,101,94,88,100,113,91,113,106,98,99,103,102,106,109,105,107,102,113,107,96,106,105,112,107,92,99,91,107,107,106,104,113,110,113,106,116,103,102,109,98,103,105,98,112,115,100,94,97,101,109,104,110,100,98,81,91,108,112,104,97,96,109,104,101,108,103,111,107,99,112,98,100,102,100,103,106,107,105,111,92,101,101,117,108,109,103,100,96,110,108,112,95,95,108,101,105,106,100,104,115,104,91,105,111,107,101,102,96,104,99,95,102,101,97,95,100,106,93,104,87,108,102,96,105,75,102,96,104,96,97,99,95,110,110,92,102,107,99,113,102,107,92,94,97,114,106,98,115,99,120,94,106,94,105,99,107,91,102,112,98,99,111,105,105,93,113,103,102,97,106,103,109,99,92,103,109,99,100,98,98,97,104,101,95,103,103,112,110,103,107,105,93,100,102,107,108,103,103,105,102,111,105,103,106,110,103,97,101,101,114,104,109,96,104,117,105,80,95,102,112,105,105,110,98,107,105,100,102,110,105,100,107,109,109,105,105,108,102,113,104,105,106,111,101,105,115,106,109,97,99,110,112,95,101,110,104,105,100,92,104,104,95,112,107,92,94,93,103,105,103,103,105,96,103,109,70,98,97,84,97,101,106,103,105,96,103,107,101,101,92,117,103,108,108,102,91,101,104,106,102,99,101,121,108,102,100,98,112,101,104,107,110,96,99,97,101,99,91,89,95,94,94,116,99,105,96,113,120,100,103,96,109,113,106,111,92,106,104,104,99,111,98,96,120,110,101,114,100,96,102,108,99,94,100,100,106,102,102,112,120,104,104,99,83,105,107,98,102,113,106,108,99,88,108,86,96,99,111,108,101,92,116,112,107,97,103,107,99,109,113,110,104,98,90,101,113,106,97,98,119,111,109,95,91,110,103,106,104,114,103,99,108,113,112,102,105,108,108,111,98,109,120,102,102,103,118,113,106,107,108,106,109,116,97,101,107,100,96,107,105,105,109,107,103,106,113,99,106,108,115,107,117,102,103,104,113,98,96,105,97,105,101,107,95,110,97,100,106,116,112,100,115,105,98,108,96,93,105,105,98,100,100,102,116,103,102,109,110,99,100,104,100,103,104,110,114,104,106,105,99,120,120,103,109,95,111,106,102,99,100,97,94,106,104,102,108,99,105,92,100,107,111,100,116,114,102,110,101,103,100,94,96,98,106,111,91,95,102,107,105,105,94,99,95,100,97,102,98,103,104,101,106,95,83,89,98,100,100,104,102,100,97,101,87,95,108,87,92,82,94,101,107,100,108,98,91,94,104,119,87,83,105,103,109,120,105,105,100,120,100,85,95,83,115,94,101,99,113,98,106,93,102,104,98,97,106,106,105,104,103,105,94,123,121,97,108,119,99,104,106,95,101,101,104,102,112,113,98,104,106,101,116,107,97,106,112,98,101,103,89,104,115,97,113,96,113,99,106,106,115,98,102,107,95,102,107,101,99,94,105,98,104,95,106,115,108,100,116,93,90,104,121,113,105,107,95,95,91,100,87,104,91,91,99,98,102,94,99,126,94,110,119,104,97,112,98,91,113,92,109,98,103,98,103,125,95,94,101,95,93,90,99,104,95,112,90,84,104,64,89,82,108,101,87,91,107,99,112,90,98,105,113,102,100,100,99,94,102,105,113,111,110,104,94,85,101,97,98,100,114,101,114,99,91,98,95,93,89,99,73,116, +505.0968,119,97,101,103,102,78,94,105,103,108,114,101,110,113,97,100,108,110,120,92,98,102,102,109,95,122,108,116,117,97,98,108,119,98,101,105,108,99,106,97,104,100,96,99,104,103,104,119,107,101,101,111,109,108,86,106,110,88,106,99,109,91,108,101,101,106,102,114,110,93,105,96,87,129,104,104,103,116,109,86,108,99,105,127,107,98,105,117,130,101,106,105,102,100,111,104,107,99,92,97,110,109,104,100,106,101,104,113,113,76,102,107,104,115,117,114,98,102,105,90,107,83,111,102,98,107,109,92,103,99,99,106,109,112,115,100,101,103,103,105,117,103,98,97,91,98,105,101,100,96,94,107,106,90,90,109,104,97,106,94,107,105,102,95,114,101,90,105,97,98,92,99,107,105,103,116,107,121,110,84,115,109,101,110,99,105,93,96,99,97,107,104,109,105,106,104,107,109,108,110,103,114,116,98,99,96,106,106,113,100,102,105,99,104,99,98,118,91,100,115,118,113,99,99,117,99,112,106,105,120,100,99,111,88,110,114,92,120,110,95,101,101,103,102,102,100,106,105,99,111,104,101,100,98,110,100,106,121,97,106,105,105,118,85,98,99,102,98,103,110,101,106,118,112,118,102,100,116,106,95,107,107,103,107,108,111,90,107,109,103,89,98,95,118,106,108,96,102,100,99,111,91,88,108,94,111,116,104,107,109,108,105,98,104,107,105,103,114,97,112,93,110,99,108,105,96,93,97,103,106,104,103,106,98,106,98,113,99,101,97,120,91,105,108,102,98,108,106,120,101,111,106,124,100,104,100,96,110,103,103,95,130,111,99,107,94,109,111,105,98,95,122,113,104,105,102,99,100,110,112,109,100,105,104,93,103,93,104,109,105,108,90,111,100,92,93,100,105,106,100,98,103,109,98,115,108,103,107,120,99,88,102,103,104,102,105,103,103,99,100,104,96,110,105,101,94,102,96,99,104,95,85,104,99,106,101,114,102,75,107,112,113,105,113,101,118,112,103,102,105,86,107,110,104,106,107,108,108,102,111,98,101,113,107,116,105,108,104,97,122,96,110,103,91,96,96,109,107,114,103,98,99,103,103,98,80,104,113,113,109,103,113,108,94,93,84,109,93,107,116,111,107,104,111,115,104,100,79,101,87,110,105,97,108,110,111,102,108,109,107,117,103,118,107,100,104,121,118,107,97,105,113,100,110,110,99,101,109,105,109,115,109,107,95,114,112,102,100,95,105,100,111,110,100,102,87,102,108,105,104,109,104,94,115,116,104,90,103,110,95,105,75,118,112,108,102,107,96,104,104,102,69,99,100,96,96,103,110,94,105,103,96,94,118,118,115,109,104,106,104,108,106,106,120,98,107,106,99,105,106,94,104,100,107,107,101,107,106,99,111,96,104,94,99,87,109,112,93,106,107,95,101,108,111,99,100,104,109,108,108,102,102,113,102,114,104,99,106,113,97,111,110,100,106,110,102,109,123,113,102,108,113,99,115,104,102,110,115,106,97,106,103,109,65,106,100,103,103,103,109,107,108,104,101,97,111,105,111,115,112,109,101,104,102,113,96,105,104,102,96,104,110,101,98,73,119,101,108,100,86,93,105,110,106,96,104,99,107,106,99,112,92,117,101,103,102,104,106,106,116,112,102,109,107,101,109,108,97,113,112,103,110,109,108,113,106,107,111,109,114,106,87,117,103,121,106,107,101,104,109,115,118,103,115,105,100,102,100,99,104,117,105,103,88,98,101,105,93,111,105,103,122,111,115,94,112,92,108,102,120,105,108,118,104,99,104,103,103,102,112,116,101,124,107,109,105,99,112,109,128,102,102,111,97,110,105,102,102,107,106,126,110,113,103,111,115,106,120,105,106,116,109,110,109,106,113,110,104,111,104,98,103,99,113,100,94,101,95,103,104,103,94,101,105,102,116,106,103,86,101,105,111,107,111,117,96,103,107,98,116,105,112,91,112,107,106,100,90,100,110,113,94,102,101,104,106,114,110,94,105,105,113,112,105,104,110,107,117,100,105,111,99,112,107,107,87,111,95,106,118,111,121,104,110,100,93,105,106,96,103,81,103,71,104,95,107,99,110,112,106,102,110,109,102,109,107,93,99,113,101,102,103,95,102,104,99,108,101,103,115,106,105,109,85,103,113,109,90,108,116,112,108,107,96,111,117,99,98,100,107,100,98,100,95,113,97,96,113,101,115,107,108,100,108,94,105,107,112,98,98,90,104,127,93,101,94,84,106,108,104,103,100,102,106,99,129,105,111,98,103,91,107,97,116,104,102,101,102,98,105,84,103,86,112,110,103,107,121,106,97,107,102,99,106,101,108,99,107,109,97,96,105,94,105,97,109,99,115,98,105,105,98,100,107,105,103,98,99,105,100,99,106,102,105,108,90,106,105,104,100,104,97,116,105,108,101,103,108,123,105,99,105,111,99,104,110,92,104,119,99,112,111,103,104,111,92,106,113,107,111,103,108,108,103,111,113,110,99,110,112,120,116,106,104,116,111,103,110,104,110,111,106,113,114,100,105,91,112,114,109,99,110,102,105,113,100,109,113,104,113,112,107,97,121,104,96,94,110,106,115,113,98,114,110,111,109,114,97,111,101,106,84,108,96,100,104,102,94,110,93,116,108,104,121,99,122,103,99,95,112,101,104,102,94,113,111,106,101,97,117,102,99,100,108,80,97,100,111,108,110,112,124,103,103,116,106,110,100,95,94,103,99,95,100,103,115,116,79,106,110,99,112,102,98,117,105,101,117,110,102,106,95,95,109,105,95,106,102,110,103,98,110,109,104,106,108,112,112,105,115,90,114,113,109,112,98,102,105,108,105,114,97,106,103,107,107,111,110,107,119,111,106,98,111,115,99,109,108,108,108,106,96,105,102,106,107,102,119,106,108,110,107,102,94,94,121,105,100,107,110,122,105,94,111,107,106,108,104,109,113,109,108,84,94,111,105,93,101,114,105,113,105,107,108,108,105,100,90,110,102,113,105,91,117,103,102,91,96,113,101,106,113,120,98,114,91,95,92,119,112,106,107,100,102,90,101,100,77,103,118,104,103,118,113,107,105,106,112,103,100,110,116,107,116,111,106,102,105,99,104,110,98,103,104,109,99,118,99,108,110,108,99,102,104,105,106,108,103,83,98,115,112,102,98,105,105,119,98,99,103,104,110,105,102,105,101,106,123,95,120,102,112,109,109,99,98,108,102,106,102,92,95,111,107,111,103,94,105,100,120,102,111,104,108,80,98,98,106,115,105,105,107,112,99,104,102,99,110,103,102,114,109,107,117,117,100,104,111,113,97,109,107,106,102,118,113,96,98,107,106,94,107,99,104,99,104,106,107,100,93,113,103,106,79,106,120,99,112,112,85,101,106,112,107,105,102,110,104,100,98,109,103,110,106,112,96,117,105,96,114,110,106,106,114,104,96,110,100,97,99,103,109,106,112,110,105,115,120,106,74,104,105,104,107,104,104,101,115,99,103,107,103,104,110,111,95,110,113,93,107,107,108,87,95,103,88,82,118,103,107,106,96,109,100,99,111,106,107,102,112,99,110,107,106,107,91,108,105,119,114,110,108,111,98,90,114,107,122,111,98,111,103,109,95,103,112,103,93,109,110,111,100,94,115,107,113,107,107,107,104,102,105,98,96,106,105,109,110,116,108,108,92,100,108,95,96,108,106,107,110,109,111,112,97,104,112,113,106,106,103,108,113,108,104,114,106,98,105,117,110,109,100,103,109,90,105,99,121,107,107,112,115,98,106,113,110,110,113,104,98,111,75,118,109,117,120,110,101,109,112,103,106,113,98,102,112,95,106,102,115,108,103,104,101,99,108,102,108,99,113,102,104,101,95,104,101,103,116,96,106,100,96,117,97,120,105,104,103,123,92,116,102,102,108,103,106,96,108,109,98,103,113,89,102,106,101,103,106,102,114,108,96,102,102,102,103,102,102,98,108,103,117,94,91,95,110,106,112,114,102,113,105,104,128,122,107,112,115,108,107,112,107,97,105,115,104,99,103,121,121,104,96,104,102,101,103,120,98,114,106,110,105,107,113,115,103,109,111,111,123,104,106,96,109,95,104,92,110,112,95,107,100,105,120,99,116,102,117,108,103,98,117,94,108,104,113,129,113,106,83,115,92,100,111,111,102,110,104,108,107,108,106,113,101,115,104,115,110,106,98,109,125,113,102,104,114,109,108,104,103,86,105,108,97,101,102,100,112,127,107,112,105,114,100,105,105,92,117,92,105,106,106,111,100,112,106,96,102,105,104,97,106,101,110,99,109,119,97,110,91,99,112,110,101,96,108,108,106,102,121,107,105,91,102,107,103,78,86,105,104,113,107,100,112,105,130,113,107,122,100,103,95,107,98,104,107,98,108,97,106,113,106,123,102,105,104,101,111,104,110,101,91,110,113,110,102,101,91,100,112,96,104,101,109,118,110,97,94,110,112,114,102,95,108,116,104,89,106,113,94,102,102,104,108,98,103,93,106,105,95,114,99,89,106,111,84,87,100,107,104,110,109,133,109,102,103,118,109,94,104,110,97,113,101,114,99,103,104,100,115,117,104,106,107,109,122,117,100,116,111,103,100,116,101,98,106,107,102,116,98,104,95,106,109,103,95,97,112,116,105,98,92,101,105,98,96,109,105,104,101,112,110,103,105,109,111,96,101,108,92,95,106,100,103,98,103,119,101,102,110,96,95,104,102,107,117,100,112,104,110,92,109,107,111,88,99,112,99,113,96,90,94,111,130,112,94,79,106,103,110,112,95,87,113,99,125,105,112,103,103,102,116,106,117,117,108,106,99,103,111,107,99,112,97,98,103,118,107,100,110,97,117,106,112,112,116,121,115,108,99, +505.23743,103,109,107,90,91,103,100,105,102,99,83,99,114,87,100,102,103,101,110,94,96,90,89,101,94,96,110,100,98,108,92,105,104,77,101,90,101,88,99,96,104,85,102,95,116,105,93,98,88,100,105,113,88,133,109,75,94,100,109,95,114,64,96,80,101,107,97,124,90,91,87,98,120,99,95,100,94,116,92,97,110,95,90,100,107,104,94,105,99,110,100,100,94,104,102,94,91,99,112,109,99,97,88,94,99,105,108,104,105,95,99,93,104,111,101,112,101,119,94,97,107,97,122,103,103,122,116,105,116,98,91,90,102,114,104,106,95,106,94,108,100,109,99,109,101,103,95,98,98,93,95,113,103,93,97,109,102,103,98,83,94,113,100,94,99,102,112,98,102,105,110,110,93,98,104,96,101,96,104,106,104,91,101,100,101,87,105,91,102,97,105,120,96,100,111,94,95,104,97,90,100,113,106,108,95,98,95,96,116,111,117,107,112,112,104,114,104,104,101,99,92,114,93,107,106,101,108,122,90,117,92,101,99,87,105,99,93,109,109,97,92,98,110,117,102,107,102,98,107,125,83,101,103,125,95,104,104,95,97,116,101,106,109,87,96,103,95,77,85,95,104,105,102,104,96,99,101,105,105,99,108,106,98,100,95,113,103,101,103,106,92,104,95,102,98,101,107,105,95,92,103,104,105,110,95,101,102,98,89,125,97,107,97,88,114,101,107,112,109,100,104,86,108,102,98,103,99,94,106,100,94,98,106,99,101,95,104,113,101,119,101,105,96,98,93,114,108,106,118,96,105,103,101,102,102,102,99,98,103,107,101,98,112,106,97,103,80,97,105,96,102,114,103,92,106,101,105,105,107,124,108,103,108,98,98,106,104,109,103,105,106,105,93,107,102,105,108,92,98,103,101,105,108,105,104,88,113,92,100,104,90,111,103,89,104,94,108,93,122,95,99,95,101,97,107,102,105,111,91,108,101,105,108,101,112,88,103,96,92,94,104,105,117,96,91,96,102,97,116,105,91,99,104,106,100,111,100,109,100,108,105,118,94,116,117,123,106,108,97,104,107,125,105,110,106,104,95,116,100,104,112,113,106,109,112,98,104,103,102,99,102,108,104,94,75,97,87,107,118,107,95,105,114,113,103,116,99,94,91,99,108,98,91,108,92,101,96,106,91,87,98,104,102,113,90,112,100,110,93,106,103,102,106,91,104,105,105,102,88,95,105,112,95,106,95,108,112,101,105,109,96,102,115,104,103,100,104,99,67,107,97,109,91,107,112,109,102,108,107,95,126,103,114,105,105,108,113,93,98,122,89,107,101,117,98,114,108,104,98,103,99,100,101,104,111,106,103,97,101,114,107,102,101,99,101,106,100,100,81,93,111,99,96,102,113,99,106,99,106,112,111,116,97,103,97,113,102,100,114,103,112,103,105,111,102,106,96,101,107,103,100,117,92,104,106,96,99,92,104,104,100,102,104,100,101,104,96,103,104,102,99,107,104,101,105,94,96,100,108,103,107,95,102,103,98,97,100,108,113,109,104,108,103,107,108,105,104,96,101,105,108,106,103,114,105,101,103,105,101,101,113,91,103,102,106,101,110,105,98,100,114,104,98,94,103,96,97,94,110,106,103,110,89,92,103,101,96,113,104,108,94,104,112,105,99,101,90,100,112,95,126,94,94,105,104,105,107,104,110,113,109,109,88,103,104,102,118,100,116,100,113,99,93,104,104,103,96,104,111,99,104,106,100,108,106,114,118,121,103,98,98,103,101,103,101,108,103,100,104,114,109,108,98,106,117,101,99,118,91,111,101,108,91,92,102,99,92,92,109,104,107,100,104,103,114,100,91,93,103,110,108,107,98,100,112,108,117,110,109,107,106,103,111,102,105,110,108,94,102,100,110,101,104,108,98,97,108,99,107,105,87,107,106,120,99,90,104,96,92,100,112,101,95,97,93,101,106,89,101,94,99,105,105,103,104,103,108,105,90,96,100,100,114,100,95,103,88,105,106,114,99,107,104,109,98,112,92,88,99,102,112,117,101,96,124,96,93,111,99,106,87,108,117,80,110,104,101,108,97,115,98,106,115,112,118,105,109,111,85,116,113,105,95,103,104,102,88,129,106,102,101,100,100,109,102,102,104,94,104,115,105,104,94,100,114,101,105,105,113,103,101,98,103,99,112,141,114,96,112,132,111,94,101,92,95,113,118,97,97,107,102,106,94,90,105,91,99,90,98,102,109,97,106,104,102,104,108,113,94,106,104,92,110,95,101,114,81,101,95,109,91,103,99,112,105,100,100,113,99,102,102,105,106,104,104,101,94,101,97,99,112,101,104,101,120,130,101,115,100,94,107,102,97,100,107,100,93,104,103,105,97,99,100,94,104,95,109,92,102,94,106,107,93,106,109,106,105,120,105,95,96,101,97,88,104,104,110,95,90,101,109,99,107,85,105,110,111,92,107,113,104,102,122,99,99,110,102,110,110,109,114,95,106,113,108,101,103,90,102,108,113,113,102,117,118,97,104,101,90,102,91,107,109,92,107,108,106,118,99,91,103,111,104,99,98,113,106,112,100,121,113,98,105,108,109,108,107,104,103,112,112,109,109,98,113,116,103,106,113,116,103,100,101,100,108,95,98,109,107,104,114,117,98,104,95,100,100,100,93,109,101,93,110,102,110,98,107,107,105,115,108,106,105,107,95,117,101,87,110,98,111,99,97,100,110,117,104,112,111,116,103,117,100,106,81,108,104,117,103,94,99,107,112,103,118,116,101,102,107,105,101,100,103,95,105,113,109,101,109,111,112,106,102,87,103,99,111,106,110,106,113,95,107,107,106,109,100,96,103,111,104,92,105,107,111,100,111,112,104,121,106,109,96,123,105,114,106,105,107,117,98,96,109,103,102,98,95,94,104,109,99,106,97,105,103,112,104,90,116,89,96,100,124,103,88,80,98,108,107,107,109,113,115,115,117,111,103,102,93,106,110,110,110,113,100,90,103,106,119,82,80,94,100,106,97,101,102,101,106,104,104,103,110,109,98,100,92,104,99,97,111,101,94,100,104,103,110,107,99,99,115,108,113,103,109,100,107,110,113,98,106,111,105,98,116,100,112,105,99,100,92,101,110,107,104,104,113,102,121,107,93,99,111,105,112,107,95,100,121,89,94,109,101,104,112,93,111,120,105,105,114,106,116,120,100,91,106,104,136,115,108,92,92,97,92,107,105,98,117,110,105,96,109,118,95,107,105,113,98,105,104,105,115,109,109,93,76,105,105,103,92,90,107,106,100,95,94,102,103,106,104,103,116,106,111,104,97,112,92,95,99,102,99,101,103,100,107,105,110,104,93,127,99,104,103,107,110,100,100,110,96,85,95,105,100,107,105,103,110,107,99,108,121,112,100,102,116,104,108,114,111,96,116,112,109,109,106,107,107,103,103,105,100,103,98,102,99,109,103,104,116,102,98,113,99,108,104,116,107,117,101,105,107,102,113,112,98,88,111,78,111,108,101,116,108,107,110,133,109,101,104,111,112,100,102,99,93,116,99,104,101,103,110,109,73,112,106,101,101,96,102,112,119,117,107,95,106,93,116,95,96,106,95,93,107,104,108,100,103,112,113,105,107,114,112,96,91,92,91,106,105,90,103,113,89,104,112,103,107,104,108,111,106,105,108,98,105,107,85,102,128,101,101,115,99,102,103,112,95,101,111,98,115,112,86,117,106,104,93,107,103,104,101,99,98,108,101,102,106,106,93,96,96,102,120,95,108,97,111,104,104,106,108,70,111,90,112,101,100,109,111,108,108,101,111,116,108,100,112,105,111,95,95,94,108,107,113,94,111,100,85,106,111,99,106,103,104,100,94,103,106,105,85,95,107,93,106,103,112,110,112,100,111,104,106,102,92,102,105,87,101,97,113,108,93,99,98,101,112,105,98,102,103,107,107,103,98,101,91,107,118,110,109,105,113,97,102,115,97,109,107,105,90,98,100,113,102,116,111,95,116,112,91,97,101,107,113,125,104,67,108,102,105,107,111,101,104,98,94,105,105,101,109,112,104,107,95,102,106,100,108,96,107,94,104,103,95,80,112,104,111,101,100,110,100,110,106,121,99,112,95,91,107,115,107,100,103,104,99,113,72,95,96,104,108,103,98,104,108,97,109,104,116,109,109,96,103,106,109,104,89,106,97,107,102,116,122,96,107,101,112,125,107,98,112,102,99,108,103,106,102,100,125,114,106,88,108,112,101,114,101,105,119,105,111,108,100,100,109,113,114,108,107,136,95,99,102,108,108,107,100,104,113,104,102,104,106,100,113,96,95,113,95,109,99,108,116,102,105,100,108,87,103,116,113,102,103,108,98,108,102,105,118,102,93,96,105,101,96,92,94,96,99,109,111,97,105,113,102,93,92,103,102,107,95,101,110,87,102,118,100,96,106,100,106,103,94,109,102,92,112,101,102,113,103,116,111,110,95,106,108,97,100,112,112,107,117,119,102,100,89,109,102,102,112,108,100,106,106,103,105,95,95,104,99,99,111,102,119,100,102,107,113,99,110,129,105,103,102,96,116,95,95,109,119,109,87,105,101,113,100,94,104,91,114,105,97,104,103,98,101,96,110,102,109,112,103,107,75,109,83,101,64,106,105,89,100,97,107,79,99,96,103,104,106,97,95,111,102,103,102,106,113,108,104,104,91,94,106,99,103,112,103,122,102,97,96,104,100,91,91,106,92,107,102,92,94,94,107,87,116,102,103,102,88,101,104,103,106,106,112,105,103,98,106,89,98,103,98,100,103,95,91,92,105,95,103,113,101,104,105,87,78,95,88,108,82,112,108,105,80,111,101,107,101,95,114,111,95,100,104,108,106,122,95,107,95,104,109,104, +505.37808,110,83,94,109,101,110,103,106,100,94,102,104,107,99,104,89,107,101,105,99,94,108,95,104,104,89,106,92,109,102,110,110,91,97,111,96,105,110,98,101,73,107,90,95,105,112,92,100,107,97,101,115,112,102,106,92,107,96,108,101,88,90,111,87,105,101,123,108,99,94,106,113,92,112,99,97,90,102,98,100,103,87,97,114,89,103,96,99,106,104,96,117,89,115,98,106,106,103,80,111,109,110,107,108,82,97,107,105,101,89,101,100,103,113,106,104,96,104,103,105,99,100,111,112,103,117,103,86,66,96,89,105,100,118,100,96,100,102,101,103,100,113,101,101,105,104,90,99,102,113,94,99,100,86,97,96,118,99,88,103,94,100,101,95,98,101,106,102,113,102,105,130,98,86,109,98,99,104,112,98,101,83,111,100,99,105,99,101,99,104,101,103,99,98,111,112,103,102,90,108,97,105,96,101,113,105,99,102,101,103,99,96,107,108,101,96,103,97,105,98,77,97,87,97,100,106,94,103,113,98,97,107,103,108,113,100,100,112,100,94,101,102,109,99,92,110,101,107,106,112,108,92,99,95,94,97,94,94,103,112,99,103,106,104,106,102,114,112,94,106,108,96,108,107,113,113,112,106,113,113,118,97,95,107,110,104,70,97,103,91,102,105,112,103,109,109,101,87,105,110,107,87,105,106,94,105,104,112,101,108,102,94,104,101,95,108,96,111,110,112,95,93,110,103,109,105,104,96,118,108,99,110,106,89,104,98,96,95,90,102,98,113,109,105,110,83,103,120,103,104,113,106,95,105,112,108,116,104,96,99,108,84,106,94,94,94,103,109,100,99,103,97,100,97,105,102,101,101,93,105,109,123,107,113,107,105,82,95,96,101,115,98,105,104,105,102,104,102,95,112,109,102,104,102,103,99,104,100,103,108,99,96,96,99,96,88,108,108,110,102,105,95,103,90,106,91,109,100,97,108,91,98,88,110,103,109,83,101,115,105,93,110,105,94,102,94,99,105,101,99,111,100,109,111,97,109,104,102,97,94,101,103,102,106,115,106,99,122,112,92,112,116,104,99,100,91,125,128,107,113,95,95,110,102,106,106,105,98,86,114,106,107,106,96,111,106,94,100,101,100,109,114,97,100,101,101,102,104,109,104,106,101,98,101,103,102,105,98,107,100,100,109,100,100,100,110,111,104,109,102,106,110,103,103,99,94,98,97,114,138,105,112,104,103,108,110,105,111,99,102,92,95,100,117,117,116,64,97,110,107,98,98,101,98,96,108,91,101,108,102,92,98,101,108,108,117,108,117,101,92,113,99,105,99,102,88,105,111,107,107,106,103,102,91,108,119,109,104,104,107,102,110,113,105,94,106,113,113,96,100,90,86,96,102,104,103,102,94,97,111,104,103,124,95,108,102,102,92,94,107,102,101,104,106,108,97,99,106,99,118,96,99,101,102,102,97,107,105,110,104,92,110,107,101,106,114,99,110,86,110,106,105,108,100,109,111,107,106,111,100,99,106,117,98,108,116,99,105,103,106,99,99,110,87,113,101,112,107,100,107,105,107,101,110,86,112,116,104,109,87,98,97,90,97,105,111,102,108,102,103,104,110,103,98,114,112,95,109,98,102,97,100,108,101,104,101,89,107,106,105,113,111,105,101,103,103,106,100,104,115,129,96,95,92,106,100,97,114,125,103,114,109,120,90,110,93,96,100,100,95,113,102,101,107,101,111,84,108,96,104,110,104,105,99,101,99,108,95,104,95,106,117,108,107,101,103,106,108,102,129,112,103,99,106,97,113,94,95,112,103,113,106,119,99,92,106,100,112,115,99,113,95,99,103,84,102,83,108,85,109,92,117,106,96,109,102,99,104,101,85,87,125,103,100,96,110,103,111,95,101,113,109,105,105,108,89,93,100,101,111,96,114,102,90,101,113,105,103,100,106,103,109,97,108,98,106,108,106,113,100,100,99,105,102,96,98,102,95,96,105,95,97,97,94,91,102,94,99,110,107,80,104,103,107,110,96,105,108,103,103,86,104,115,103,104,100,104,101,88,64,100,99,110,115,89,105,89,99,87,88,117,100,107,108,101,114,112,111,102,100,96,97,99,103,92,106,107,95,103,110,100,111,102,99,111,109,118,103,93,107,95,108,111,114,110,106,103,112,89,95,99,114,107,100,101,100,103,106,104,93,98,107,101,98,111,101,107,97,107,86,95,109,100,96,101,109,112,98,97,117,93,109,103,92,95,99,113,95,120,104,105,87,100,92,105,98,99,101,92,95,107,97,101,98,95,97,106,104,98,103,104,113,76,100,102,99,109,112,94,97,96,109,108,97,93,94,74,101,109,95,101,105,100,95,108,96,113,79,92,101,117,105,90,95,107,100,91,100,105,107,99,104,102,110,110,103,113,99,96,105,86,113,92,103,92,108,103,100,99,102,96,109,104,101,112,116,120,104,110,99,104,109,113,94,111,109,94,98,106,111,113,94,111,94,100,109,99,110,109,103,90,110,97,104,92,97,114,102,108,103,108,93,100,113,92,94,105,105,71,93,104,116,102,97,90,104,104,105,109,92,107,100,96,97,96,92,102,113,94,101,113,111,103,93,99,95,104,100,113,106,105,87,97,96,114,112,101,103,108,106,100,99,95,106,111,98,97,101,109,108,99,92,109,97,111,109,106,93,92,101,109,92,99,98,118,100,102,91,104,98,108,116,87,104,126,139,99,99,99,116,106,108,98,114,99,111,110,113,102,108,105,101,98,105,90,101,101,113,106,99,93,102,97,91,113,95,101,108,116,107,108,99,103,95,104,97,110,101,105,102,112,111,111,102,95,104,96,104,99,117,105,113,109,101,108,106,98,105,99,109,109,118,105,105,109,92,101,104,96,107,99,111,106,103,103,106,101,101,97,106,102,103,95,92,94,113,108,95,89,105,106,117,92,104,95,106,103,116,92,111,97,107,102,111,104,112,100,109,116,105,118,97,97,98,103,104,116,109,97,99,94,94,101,113,110,99,91,112,99,112,110,102,97,104,102,100,105,95,90,104,88,100,104,102,99,114,101,89,106,91,104,106,106,118,109,99,97,95,99,77,102,99,101,102,115,98,104,92,111,100,106,115,106,102,98,94,96,103,97,102,105,97,93,107,110,103,103,113,110,101,104,97,110,95,99,111,114,100,109,104,108,104,109,107,95,92,97,114,102,103,102,98,95,103,109,96,100,102,104,106,99,104,100,109,98,99,88,101,105,104,95,100,106,100,97,110,100,102,95,111,108,98,105,106,97,112,107,95,105,102,89,108,89,112,104,102,96,98,100,106,103,87,94,100,94,103,99,85,95,94,109,100,103,103,133,98,98,104,104,101,107,99,92,102,102,110,102,89,105,102,109,109,104,106,108,101,106,100,96,110,107,103,104,103,90,102,104,111,97,76,107,99,102,70,87,99,106,96,110,93,106,105,112,108,108,98,99,100,107,104,102,133,105,106,99,94,104,109,95,97,90,101,97,108,99,120,107,108,105,116,105,120,108,89,99,113,103,107,110,113,108,90,93,108,105,103,104,95,98,91,105,102,98,93,99,99,86,95,95,108,97,108,109,110,99,109,103,106,103,107,103,115,107,102,95,102,115,104,98,94,104,109,101,103,98,97,98,98,99,94,115,112,108,109,90,113,99,103,99,95,110,99,101,110,121,106,104,100,104,84,109,95,101,97,106,107,97,108,109,97,103,114,112,104,110,102,112,110,125,101,109,99,110,110,113,111,95,99,98,102,106,109,104,108,107,95,106,100,107,98,102,103,120,111,112,103,105,96,113,104,87,110,105,92,92,103,113,89,103,109,86,104,102,102,98,89,97,98,96,103,109,109,90,108,112,103,111,106,102,93,96,109,109,94,102,107,106,109,111,97,103,96,99,104,100,113,113,105,99,106,112,99,92,97,104,112,106,104,98,108,103,95,100,107,104,101,103,96,107,108,94,113,91,107,111,102,106,101,103,111,103,109,103,100,101,107,113,100,106,101,96,111,105,105,100,101,99,98,111,102,98,75,120,92,100,114,99,115,92,104,98,94,104,106,102,111,89,109,103,105,101,106,98,106,105,113,106,100,101,96,103,98,105,103,92,102,97,132,96,111,99,106,95,76,104,100,98,114,100,101,114,103,95,109,87,99,94,98,102,94,114,109,109,98,111,101,106,113,101,103,98,107,106,81,99,110,113,117,99,101,110,93,109,98,93,103,92,107,100,104,99,87,85,99,120,113,100,103,98,112,79,101,109,113,102,103,103,105,99,118,105,119,103,100,105,99,123,101,100,100,110,90,112,108,103,97,107,107,103,105,104,103,115,112,92,99,102,84,101,89,96,99,88,107,107,102,106,109,121,89,96,101,85,105,108,103,84,95,108,101,98,98,110,96,98,92,81,102,106,111,101,105,98,108,97,98,91,105,99,113,91,122,100,107,100,110,99,109,102,95,105,106,98,106,99,98,128,107,94,91,99,98,99,99,125,96,100,97,107,100,104,105,86,99,75,97,104,102,99,104,99,110,109,99,100,102,109,96,96,97,104,92,98,99,110,87,91,105,90,98,110,96,97,95,98,114,113,102,89,109,113,102,103,98,95,104,104,108,106,94,92,100,101,95,109,100,101,110,90,88,99,108,111,106,108,93,105,107,103,89,107,104,89,96,99,88,102,96,100,95,99,88,108,103,106,98,95,103,98,114,104,77,113,101,103,87,95,97,103,98,102,101,98,102,89,96,97,102,101,99,106,102,98,93,101,114,117,87,102,102,114,111,78,89,110,95,104,87,105,97,109,99,114,111,97,98,96,87,104,96,94,107,111,90,106,100,93,113,105,96,78,94,96,99,102,104,108,99,102,102, +505.51874,99,104,99,123,94,124,101,102,121,105,97,97,98,96,115,96,111,103,91,107,112,103,102,94,113,88,104,116,104,102,99,97,99,90,121,88,94,116,96,89,101,97,101,110,76,108,97,103,91,120,99,93,106,102,103,103,100,90,102,80,96,98,94,108,107,105,108,96,108,99,108,109,122,102,111,113,109,106,99,100,104,106,97,94,101,97,101,103,95,103,113,114,104,106,96,118,101,104,95,107,115,102,100,107,103,99,104,108,101,93,114,102,111,105,109,97,100,96,97,97,117,105,106,109,107,121,104,102,110,111,104,107,104,103,92,109,109,108,97,105,107,99,99,99,100,99,112,113,104,100,108,92,107,109,105,102,89,114,99,114,95,109,103,114,77,117,122,98,87,103,103,102,104,104,103,105,95,109,105,101,95,107,107,105,94,105,99,97,117,101,100,109,100,105,107,103,102,99,102,102,101,129,114,101,103,91,116,111,114,105,98,107,106,111,109,101,97,102,93,103,112,106,106,85,99,106,101,114,93,117,98,99,114,109,107,107,101,111,114,106,107,99,117,102,109,101,105,112,81,105,103,105,126,112,87,108,103,106,95,98,101,115,104,107,88,106,100,105,88,115,103,104,106,113,102,101,101,107,107,108,108,78,109,105,106,105,95,103,110,101,102,100,100,109,107,118,108,100,116,114,97,114,99,104,99,103,100,117,106,108,68,107,114,95,108,101,111,106,114,97,108,96,116,104,103,106,100,72,112,101,108,110,109,86,113,99,115,102,88,103,106,113,99,108,115,120,113,105,113,110,101,112,99,110,105,100,103,114,108,105,97,100,113,101,99,104,118,111,108,124,110,97,115,128,104,117,108,96,92,100,104,109,105,108,101,99,110,111,119,110,111,108,96,103,105,103,103,107,112,113,127,104,96,118,107,114,100,97,111,109,100,99,97,103,109,97,97,118,100,105,106,104,104,110,103,98,110,99,98,103,111,100,102,103,111,113,111,96,94,104,113,103,108,104,106,100,108,98,94,113,102,89,108,119,113,107,98,102,106,99,105,101,110,102,114,103,106,117,101,102,109,99,102,108,106,107,107,115,98,118,104,109,116,97,97,95,109,116,106,105,102,105,95,109,100,106,92,112,112,115,107,102,106,103,93,112,98,87,104,93,107,102,109,121,110,106,102,125,106,101,103,107,101,109,112,107,112,99,104,117,99,111,101,92,93,106,101,115,102,110,98,111,106,105,101,100,106,95,118,107,106,108,109,104,99,103,103,95,113,100,104,108,108,105,94,114,123,101,110,101,92,110,104,91,110,102,106,108,102,108,116,101,106,105,104,91,111,102,100,104,105,102,126,104,113,106,104,110,107,112,107,99,106,96,98,109,103,106,118,88,93,108,108,99,101,101,102,109,113,96,108,100,106,105,109,111,106,82,102,96,113,121,113,107,99,111,107,104,114,106,108,103,110,75,109,107,104,104,105,115,99,107,101,102,100,106,94,106,104,109,95,107,96,120,100,107,105,109,106,94,116,101,97,97,108,107,112,110,100,95,111,108,110,95,104,109,122,103,102,93,103,112,100,107,113,108,108,108,111,106,90,108,121,89,129,107,109,119,105,100,105,94,119,102,93,116,103,107,109,92,106,100,103,110,104,94,111,109,122,107,98,111,98,105,106,103,116,94,111,99,108,102,103,109,101,120,100,108,101,94,104,99,95,110,112,98,108,108,113,100,104,106,103,96,100,107,92,103,108,108,124,113,105,100,102,95,114,96,104,109,100,102,112,102,118,128,98,115,114,123,114,104,110,98,98,100,107,110,117,115,99,114,99,109,99,78,103,106,99,104,79,113,106,119,108,116,115,109,116,104,122,109,112,112,108,100,109,109,114,104,105,105,112,122,111,121,108,104,97,95,110,120,91,104,103,104,118,102,99,107,108,113,108,114,105,120,105,110,99,99,112,101,109,114,107,111,99,106,121,106,113,103,109,88,95,114,102,101,97,89,122,80,108,104,115,109,102,105,105,103,115,117,110,103,108,100,106,117,105,109,102,116,101,100,101,109,106,101,109,91,107,109,108,107,80,83,103,100,103,108,124,106,106,108,100,111,91,118,101,117,100,104,113,104,104,118,101,102,111,108,113,107,77,113,108,95,106,100,95,105,111,105,108,122,99,105,113,111,105,109,112,116,106,104,108,92,91,106,119,100,113,102,106,105,95,114,108,102,101,98,102,101,96,108,108,104,108,96,109,103,114,108,108,104,108,111,100,109,110,95,110,86,101,109,103,110,114,116,99,108,90,103,107,100,101,98,103,102,112,102,110,109,105,110,107,109,103,113,111,84,107,114,117,105,98,107,113,112,109,106,108,96,89,119,122,91,99,100,106,107,104,109,108,96,115,106,107,113,121,95,97,107,109,109,115,139,98,103,104,92,114,129,72,108,93,105,104,99,105,97,101,107,103,100,102,100,93,102,104,103,109,101,99,98,116,98,116,109,116,120,103,109,114,104,103,104,102,107,109,103,94,111,105,94,103,110,108,85,103,104,101,107,102,103,92,81,102,100,109,101,124,111,83,104,104,102,107,112,94,110,110,109,82,107,106,104,113,107,98,100,110,105,111,106,109,91,111,119,104,99,96,94,106,74,120,96,97,113,114,106,96,101,103,111,98,104,106,104,107,109,113,99,102,112,109,110,118,110,112,119,111,98,105,104,97,108,108,106,107,99,100,107,111,114,103,104,99,107,123,114,108,103,106,112,97,110,109,139,107,110,104,114,103,101,104,112,116,107,107,111,104,105,102,111,106,111,103,110,101,92,103,105,105,102,97,105,105,108,108,111,117,113,110,103,103,112,108,113,82,112,104,114,102,106,113,104,102,99,107,110,110,96,107,109,99,107,112,101,91,108,115,106,111,106,107,111,106,116,112,103,122,109,100,104,104,107,109,103,113,109,113,103,110,107,117,113,105,116,108,103,106,99,106,110,110,103,106,100,99,113,111,93,93,108,108,89,106,124,106,76,99,106,109,106,119,113,109,110,101,107,108,111,100,109,99,113,106,113,117,106,97,106,101,103,90,102,95,115,112,107,119,119,116,95,103,107,109,112,99,98,102,109,99,123,123,110,100,119,111,114,98,91,101,110,104,113,84,103,105,104,104,112,107,107,102,100,108,112,106,109,108,106,92,109,96,105,117,112,108,108,101,101,103,110,111,94,101,112,111,90,97,120,103,94,113,110,116,107,103,106,100,103,104,115,117,101,112,100,103,97,107,106,115,125,99,110,104,105,100,109,99,91,86,106,109,105,113,108,106,104,108,103,108,107,96,103,109,102,106,103,96,105,101,113,96,109,104,109,111,98,89,109,105,107,97,110,104,104,114,93,104,101,102,109,124,106,102,112,108,102,100,108,95,109,137,97,102,108,117,94,107,124,98,103,107,104,107,108,99,107,108,121,106,106,94,107,116,109,103,103,123,98,110,103,99,108,113,116,94,108,107,100,99,123,113,108,101,110,115,102,96,107,112,109,113,101,111,104,105,116,94,101,108,109,115,103,108,99,105,93,110,108,100,109,103,111,113,104,108,78,108,98,111,111,103,91,100,99,101,112,99,99,97,108,100,89,113,112,112,102,98,125,119,113,104,105,108,96,108,98,98,96,96,98,99,118,99,102,96,91,102,102,97,114,99,105,117,109,106,109,104,117,104,123,111,104,101,106,111,100,87,106,98,100,79,111,92,110,112,89,95,99,111,119,98,102,101,99,107,113,106,96,106,96,109,97,103,109,100,108,97,99,105,119,101,109,115,110,111,86,104,105,102,98,108,108,107,105,105,111,104,106,98,109,101,100,108,99,117,115,113,106,108,108,102,106,108,102,101,105,108,94,109,106,103,115,106,107,87,90,110,114,114,100,99,102,107,100,121,102,107,98,111,106,100,116,98,99,117,107,109,103,101,118,113,107,98,113,103,106,108,95,97,113,122,104,96,102,99,108,103,117,100,110,111,102,102,106,120,99,107,109,118,97,108,115,102,121,106,108,112,108,109,116,116,102,105,119,103,99,100,97,116,98,105,112,99,68,97,97,91,100,103,106,120,104,104,117,98,102,105,105,120,112,105,112,105,98,104,109,101,103,105,98,114,107,100,112,106,114,107,109,105,103,101,94,115,106,100,104,102,118,94,116,106,111,102,115,111,107,113,101,96,106,110,104,105,106,107,111,98,103,110,107,107,109,91,100,106,120,91,108,117,102,95,103,99,106,110,116,100,104,129,84,100,123,111,98,103,111,83,104,101,101,114,115,110,100,100,104,108,105,117,106,106,95,114,102,108,108,113,98,117,109,109,97,105,104,106,107,112,103,97,115,113,109,100,111,98,122,112,115,104,105,104,109,113,104,105,95,106,99,94,107,112,107,103,110,103,95,100,105,101,107,116,105,102,103,115,107,101,114,108,94,102,91,107,109,112,104,95,98,109,110,95,100,105,119,105,111,101,107,102,106,104,96,108,107,108,97,108,101,95,91,105,106,101,107,73,116,98,103,96,105,92,98,107,97,101,103,90,115,106,109,118,104,117,110,106,102,101,94,107,115,111,106,106,98,96,103,112,99,95,117,105,104,96,104,112,103,113,113,110,102,115,102,116,113,99,94,101,116,85,96,91,104,106,116,104,130,98,92,103,123,101,105,104,101,117,101,105,115,112,99,113,105,102,119,106,107,109,102,105,99,95,115,103,104,89,93,120,110,104,106,106,111,101,112,99,116,101,110,85,113,103,112,102,93,100,94,100,100,110,89,101,95,130,111,110,79,116,108,106,113,105,95,113,117,93,94,113,82,112,106,104,97,95,91,102,98,102,99,119,104,117,92,114,109,94,113,110,99,98,107,101,90,99,104,105,93, +505.65939,118,99,101,85,101,98,92,114,98,107,123,94,100,95,102,108,95,108,71,97,98,110,115,101,106,95,102,103,109,110,97,119,96,113,105,110,101,94,106,99,102,112,97,108,108,95,109,87,97,105,103,93,91,102,81,98,97,113,111,101,91,102,96,103,107,111,105,117,92,109,102,99,105,115,105,103,99,102,107,103,112,111,99,114,100,97,98,119,77,106,101,113,112,101,98,110,97,95,94,92,101,98,96,98,97,103,108,108,100,108,101,103,108,91,114,106,99,110,89,101,103,106,111,110,125,100,113,102,114,94,108,109,95,117,105,102,98,102,103,104,106,100,97,100,107,98,107,104,98,100,109,95,106,97,104,101,91,104,110,104,99,106,107,96,107,100,98,91,103,97,95,114,90,94,116,99,109,102,110,91,103,115,100,102,108,103,89,96,117,94,109,104,99,103,100,106,100,87,102,91,115,95,99,104,100,101,103,106,89,125,87,94,109,98,120,90,97,105,103,102,104,92,103,99,94,111,101,108,95,89,104,104,103,102,108,110,78,98,113,82,103,103,116,99,102,109,84,101,99,118,106,106,107,107,99,113,95,106,112,99,105,105,98,94,94,86,94,98,102,99,94,101,99,101,117,104,106,105,117,97,110,101,105,100,106,110,101,120,95,100,102,100,103,115,100,93,113,115,97,102,92,103,96,98,105,124,109,111,100,103,90,107,99,108,107,110,98,113,106,102,96,80,102,108,96,105,97,105,101,103,103,98,103,104,90,99,114,95,94,99,94,95,103,104,110,107,100,98,100,99,99,102,101,112,111,99,110,113,97,104,110,105,103,107,105,98,99,111,94,108,108,104,106,100,121,94,96,108,104,101,104,108,112,112,104,99,110,103,106,105,117,98,108,102,96,123,99,99,111,98,80,98,109,94,105,116,111,114,107,102,100,102,106,113,106,102,119,109,115,95,100,100,88,102,113,104,109,74,105,106,113,114,99,102,96,105,107,101,91,112,107,102,112,106,110,106,91,104,116,101,91,113,100,107,104,103,105,94,104,103,104,100,102,106,108,99,112,87,91,95,111,107,105,107,109,97,104,126,108,105,108,108,115,113,105,105,92,126,106,103,118,108,109,110,103,103,114,101,105,110,93,102,88,102,95,104,78,102,105,98,115,101,91,92,95,98,109,106,107,94,110,112,102,102,105,113,104,106,100,114,91,109,113,100,104,118,79,95,106,106,109,95,95,112,118,94,116,96,100,103,107,107,106,113,96,110,113,107,113,107,98,106,105,103,117,99,100,112,111,98,95,103,113,122,105,104,99,105,113,87,105,103,104,105,102,105,119,116,95,108,105,105,106,103,119,107,104,103,90,100,101,118,109,107,114,109,100,105,105,91,111,94,103,121,102,91,106,91,104,105,115,112,97,100,102,111,106,103,113,104,107,108,102,111,98,107,92,122,108,102,107,109,104,109,95,83,105,100,97,106,105,99,105,97,94,114,107,106,102,81,102,111,102,101,100,120,97,101,104,113,100,99,99,107,103,106,119,104,109,95,104,131,106,92,92,107,103,95,113,109,104,108,100,106,95,103,106,106,105,95,94,104,110,95,95,116,103,106,93,93,103,94,103,110,101,103,80,104,103,82,100,102,102,113,95,97,96,109,110,92,112,100,109,111,104,97,103,105,113,100,104,101,96,98,110,129,121,118,93,103,86,105,107,110,102,101,111,109,106,116,95,106,95,100,97,101,95,99,93,97,102,110,95,99,108,125,111,111,85,105,102,104,114,115,104,99,98,102,107,113,107,112,108,106,85,104,103,112,114,96,104,110,109,104,94,103,90,106,105,104,107,104,103,89,111,102,113,102,104,109,91,104,102,111,101,106,108,106,112,109,101,109,96,105,105,105,101,107,100,100,96,104,107,109,102,109,104,102,104,105,115,85,94,106,79,104,136,87,106,107,99,108,108,95,99,107,99,103,115,99,102,113,87,90,102,118,98,112,110,116,103,100,109,98,101,103,102,108,107,101,102,114,95,105,98,89,105,102,104,101,98,107,92,107,106,102,101,104,98,110,98,93,106,117,125,103,111,100,105,107,107,109,120,110,113,101,102,101,105,106,103,108,108,108,103,107,100,99,104,102,106,105,98,100,108,100,106,112,88,105,105,130,112,110,103,109,113,70,96,96,115,106,116,94,113,93,113,114,102,100,94,108,104,103,105,96,99,108,96,90,112,100,109,95,100,107,101,114,100,100,104,108,96,101,100,89,96,113,91,107,95,108,106,90,100,106,104,84,90,99,100,89,99,106,100,108,103,105,102,91,103,97,110,93,103,97,112,106,99,120,98,99,98,100,108,95,97,120,108,107,108,96,86,101,103,102,103,108,107,100,113,99,114,100,105,103,101,106,109,115,96,102,117,101,109,96,89,105,109,93,94,116,95,103,98,114,96,98,97,69,101,101,102,108,96,99,96,109,103,104,95,105,113,102,109,105,71,105,95,113,112,102,105,106,117,117,96,91,104,103,102,111,114,101,110,96,106,110,115,109,99,103,110,101,117,106,104,108,98,103,98,114,107,68,113,109,98,92,96,102,97,99,91,103,94,116,102,86,83,96,105,104,108,103,104,107,110,106,110,103,120,92,111,94,104,106,96,104,107,95,103,96,104,113,98,102,103,97,113,103,104,90,104,99,104,108,99,103,106,107,105,101,103,140,102,106,98,107,95,116,100,107,114,99,105,106,115,122,108,107,106,106,102,110,107,108,100,109,98,98,104,100,102,97,110,114,107,96,103,97,103,121,88,108,104,101,107,109,103,105,107,103,100,99,102,114,107,100,97,102,106,112,106,101,107,102,105,102,104,105,105,108,105,104,102,94,98,97,99,103,96,99,97,120,104,110,88,95,106,113,100,105,100,96,101,106,100,102,108,100,121,104,104,104,94,113,110,107,111,101,95,117,90,114,96,94,116,123,97,91,100,105,106,113,118,103,106,116,108,97,115,111,100,98,105,109,103,92,111,100,114,106,99,112,108,107,104,100,107,106,98,94,103,102,109,95,103,100,109,103,109,99,114,113,104,106,99,102,106,99,113,102,99,103,108,115,97,103,107,103,106,108,103,110,109,105,114,100,106,101,91,97,101,106,113,105,102,111,112,114,107,107,116,92,107,104,97,108,106,104,109,111,90,111,91,108,108,109,116,102,106,103,98,101,103,109,103,99,88,108,102,114,88,104,101,76,120,124,103,107,91,103,97,124,105,103,90,107,93,102,108,99,117,102,99,107,99,101,112,108,102,95,111,106,103,114,100,114,108,91,103,103,99,114,99,109,105,102,109,101,96,110,94,98,105,109,115,102,107,98,93,110,108,108,95,113,95,110,105,89,101,115,97,109,87,103,107,100,101,103,102,104,98,113,105,90,114,105,114,114,96,104,102,111,113,98,90,106,104,92,109,99,94,92,102,100,118,110,106,102,110,104,104,99,102,110,104,102,108,109,113,98,109,110,119,112,109,116,107,95,113,109,100,114,107,112,104,107,101,100,97,114,111,110,100,113,101,104,104,119,103,102,100,106,93,115,109,91,105,95,108,99,109,77,97,103,108,103,100,115,104,106,108,133,108,92,104,101,109,112,97,109,104,109,99,105,101,102,110,98,110,111,109,109,107,103,101,106,107,91,94,104,111,105,104,105,123,100,93,92,88,115,112,103,109,98,94,95,110,100,108,103,101,103,90,107,103,99,107,95,104,102,114,106,102,106,114,107,105,104,108,104,107,95,82,105,97,107,109,102,109,98,95,110,101,108,102,117,104,106,106,108,105,82,107,113,108,106,77,102,95,106,81,109,97,96,116,115,112,101,109,102,94,98,110,100,108,125,102,104,108,105,102,102,110,109,121,99,79,100,113,115,111,97,101,105,101,97,108,118,100,105,104,106,99,100,105,97,111,109,106,111,98,123,95,130,129,109,107,110,101,103,102,108,99,119,109,117,104,95,106,109,95,101,98,91,102,104,105,93,112,113,101,98,109,104,112,106,110,97,113,106,93,96,118,111,103,83,108,110,106,91,93,109,90,102,88,102,120,99,112,113,98,107,110,116,104,105,112,105,84,109,95,95,100,114,99,113,97,86,97,93,90,120,98,113,103,92,110,121,105,103,107,97,98,101,106,102,99,104,110,111,100,98,103,119,102,109,103,100,104,101,108,106,102,116,107,93,100,108,102,112,106,102,100,104,108,105,111,108,96,99,105,102,92,112,101,93,101,140,92,90,111,103,104,82,110,97,105,107,99,100,100,100,111,104,97,104,99,116,100,83,116,103,111,112,102,103,93,117,104,83,94,106,103,99,104,108,100,116,110,92,106,123,97,103,103,112,104,110,102,111,101,123,97,109,103,100,101,102,106,107,102,104,77,115,108,99,107,96,113,113,96,102,95,98,95,109,94,108,95,103,104,106,103,103,106,109,108,91,103,101,103,105,106,106,105,113,102,97,104,100,86,110,103,109,101,112,98,96,111,99,97,115,110,105,105,103,100,98,103,112,105,116,105,114,117,114,104,109,104,107,113,89,99,106,101,109,105,103,98,104,117,107,100,117,103,100,106,99,90,86,85,111,117,111,105,126,103,105,101,101,85,103,111,99,107,114,106,105,98,109,101,104,104,98,111,87,94,110,95,102,109,117,98,102,89,102,89,110,108,103,111,106,96,90,102,110,105,96,100,97,95,101,98,94,99,96,94,104,92,101,119,99,116,92,95,115,101,102,91,104,95,103,95,103,107,95,100,97,102,105,102,100,108,103,94,102,95,98,103,90,76,106,111,99,103,94,96,91,93,103,111,105,103,102,105,110,95,105,94,108,120,113,105,102,111,105,123,97,103,105,98,93,109,94,107,104,107,93, +505.80005,109,102,92,106,81,108,116,100,104,110,102,99,108,108,93,92,109,101,103,114,108,95,94,88,103,97,106,99,111,126,93,107,96,105,100,102,107,106,84,108,98,108,121,100,83,101,110,106,118,95,98,130,105,95,104,98,104,110,112,110,99,105,120,88,105,105,88,102,96,98,112,108,112,96,103,105,102,108,112,78,101,82,81,107,110,93,100,93,71,106,103,103,105,120,104,89,104,107,109,103,92,103,100,102,90,91,105,102,109,103,100,104,108,107,104,103,109,94,110,99,118,95,113,98,107,120,110,103,111,108,96,103,100,104,101,100,106,115,100,112,78,104,86,109,98,98,109,119,89,105,106,99,117,104,95,102,93,102,97,101,96,105,96,109,100,99,98,95,104,92,103,109,113,97,103,103,113,102,100,102,112,119,90,94,114,100,107,100,109,112,102,115,99,107,96,105,85,108,94,106,108,100,104,101,103,98,102,108,105,91,109,98,99,106,110,97,110,108,120,102,100,107,88,96,97,123,97,104,102,99,109,111,112,102,109,102,107,118,107,92,99,97,114,95,95,99,99,110,108,111,108,107,113,107,99,97,104,110,97,98,119,99,104,98,89,96,98,98,103,98,96,99,105,95,108,108,100,107,98,105,110,109,100,102,96,119,107,77,98,104,100,101,105,103,107,109,101,103,104,109,102,97,107,112,97,112,101,98,107,110,97,107,98,105,110,117,98,103,112,103,96,93,112,99,104,101,101,102,98,103,101,102,95,109,99,98,108,106,101,109,111,102,104,112,104,106,102,112,112,108,108,103,101,95,99,96,99,115,99,118,103,110,104,110,101,100,103,113,98,113,105,105,104,98,112,109,101,99,99,114,113,108,108,105,100,100,117,94,101,103,104,100,97,114,102,117,99,105,112,109,105,100,100,99,82,101,113,100,109,100,100,95,104,99,95,110,96,104,102,107,113,105,105,100,116,107,105,94,103,113,101,109,104,112,109,96,110,112,104,113,104,104,106,111,112,106,114,104,103,112,101,107,95,113,110,102,115,109,105,109,118,94,109,114,102,104,99,108,108,105,108,124,107,110,73,112,120,126,105,96,114,101,103,108,113,109,108,105,113,111,89,97,101,109,101,111,98,105,104,111,127,99,109,116,113,103,115,105,107,104,122,101,103,107,103,112,96,91,111,90,109,108,106,109,110,102,103,103,104,108,104,108,96,104,103,112,100,92,101,106,108,87,102,98,109,91,105,103,91,108,102,109,104,104,103,114,102,101,92,107,102,96,101,108,92,100,116,106,103,96,99,101,109,103,99,114,94,106,108,100,99,110,93,94,107,109,101,113,109,103,110,102,97,107,103,105,110,105,102,105,114,95,101,86,100,97,99,97,93,104,97,109,99,116,109,89,101,99,103,98,113,105,115,91,95,96,95,103,102,99,101,103,99,96,92,77,99,107,107,94,99,106,98,96,99,92,95,107,95,111,102,101,86,104,95,107,91,104,106,110,105,95,94,102,107,112,110,99,100,102,105,113,96,106,103,108,102,96,119,132,109,108,110,97,96,96,109,105,117,108,109,103,106,102,95,103,102,96,87,74,113,116,100,98,100,102,105,94,112,106,98,103,108,102,112,103,107,102,95,96,102,94,100,110,112,91,100,80,106,97,103,99,101,95,94,111,94,101,106,103,108,108,91,101,108,102,108,106,102,103,116,110,83,105,106,109,112,107,117,102,117,102,87,109,107,105,104,103,91,106,111,98,96,113,104,102,100,97,109,91,98,110,116,121,105,100,102,96,98,105,106,113,106,103,109,106,94,107,101,102,102,91,101,111,90,117,113,100,100,121,109,103,103,101,100,102,117,103,115,94,111,101,102,108,103,101,100,114,116,114,109,103,100,95,114,114,106,109,101,103,114,100,108,99,92,99,93,106,101,100,104,96,98,103,99,99,109,99,99,101,108,102,110,105,94,111,94,104,120,109,114,107,109,123,114,97,109,105,107,101,99,94,84,113,109,113,97,109,110,109,98,107,109,117,97,113,101,105,100,101,95,106,103,87,113,98,100,104,92,110,87,102,98,104,103,102,101,109,104,96,97,96,101,116,103,97,106,99,98,100,101,98,98,102,92,105,105,111,104,99,109,107,108,112,118,100,108,111,104,112,87,103,98,113,108,104,113,101,104,98,103,102,126,110,108,102,95,109,100,104,98,106,95,105,101,110,100,96,114,101,103,105,102,101,88,115,100,107,119,87,106,98,112,91,108,113,98,107,101,105,101,105,104,110,113,95,108,107,94,112,99,105,99,97,105,113,109,101,105,114,103,107,84,96,118,110,109,105,98,100,102,109,87,105,117,101,108,107,115,99,101,107,122,99,104,98,97,97,96,113,117,102,95,98,100,104,91,90,111,94,89,107,98,109,97,109,113,104,103,100,93,118,99,104,97,105,104,110,96,95,105,103,102,102,98,113,110,88,102,92,114,102,97,96,103,102,110,102,112,106,101,87,104,93,95,101,103,115,98,114,106,109,99,102,109,106,97,101,100,103,94,101,102,99,101,103,101,111,105,94,109,116,89,109,89,105,110,113,103,108,108,84,102,111,104,115,103,100,111,88,110,88,110,103,104,102,112,102,109,105,104,102,112,103,104,107,109,104,69,104,102,87,115,99,105,93,102,99,104,107,102,105,102,111,103,123,95,102,100,119,106,109,99,113,101,99,113,103,107,104,110,103,115,99,102,96,103,100,145,97,109,101,93,116,103,113,101,101,93,110,110,109,95,106,113,95,104,116,102,102,97,100,90,105,95,100,108,100,101,134,97,95,107,103,106,101,105,106,115,132,101,117,108,117,113,108,102,108,118,93,103,121,103,101,110,99,104,119,109,104,102,94,113,117,103,105,105,98,93,106,106,105,103,92,107,93,102,109,98,102,119,103,104,101,104,105,90,105,96,100,110,101,103,104,103,100,120,101,98,112,75,104,93,96,100,111,102,105,87,106,110,106,101,105,108,108,119,110,102,103,107,103,91,117,95,107,100,101,102,99,98,116,110,105,103,104,103,101,102,91,98,98,103,107,101,97,99,106,110,91,113,126,94,113,110,101,102,108,103,107,96,132,93,108,92,104,104,116,106,99,106,101,110,100,117,90,103,107,98,105,101,100,105,112,108,105,103,104,96,107,111,99,105,109,99,109,111,109,108,99,99,108,108,105,106,82,89,98,106,105,105,113,109,113,101,99,100,91,107,107,99,95,110,111,95,87,103,115,101,102,91,107,103,95,96,100,99,108,104,105,104,101,115,102,99,104,102,107,101,108,100,104,105,104,102,96,111,102,103,102,95,105,98,100,102,109,100,96,100,102,106,89,114,91,101,108,108,103,103,99,117,109,100,98,96,106,95,105,110,104,106,107,99,108,101,91,100,117,97,111,90,107,104,86,95,92,110,111,101,101,105,101,100,105,94,115,113,91,91,85,102,105,110,104,107,113,103,99,106,98,103,115,101,100,111,102,95,92,105,102,110,95,93,111,100,107,92,104,95,103,96,84,91,102,114,113,105,102,109,111,106,101,113,106,101,98,101,102,104,89,102,107,100,100,100,95,112,102,97,100,105,132,106,103,106,98,96,116,102,100,107,112,109,105,108,101,94,93,106,112,112,103,113,110,105,106,104,111,101,88,94,109,108,106,104,125,104,112,108,105,99,103,108,99,99,100,107,98,117,101,90,105,109,102,107,101,113,101,100,102,96,99,102,98,102,110,95,96,106,100,106,99,101,100,96,109,99,95,115,107,94,105,99,112,109,96,98,109,109,97,98,99,116,105,108,112,105,105,104,118,101,112,101,110,99,96,103,110,112,84,102,99,108,112,116,103,98,100,96,98,101,87,103,95,106,94,111,98,107,100,111,98,102,113,101,112,102,105,112,97,106,95,117,96,112,106,92,98,102,104,104,110,94,109,104,107,109,98,98,102,96,108,100,103,106,104,100,113,96,101,98,95,95,101,110,97,102,104,102,103,105,109,94,91,94,96,108,108,99,98,95,97,107,103,107,106,102,108,104,97,110,104,110,90,107,106,107,112,103,98,106,99,110,105,107,117,101,129,91,100,99,104,108,108,99,109,101,104,99,97,106,96,106,102,94,106,108,110,107,93,96,98,111,124,95,115,97,103,102,102,109,113,110,102,109,109,98,109,102,105,108,97,108,94,100,91,106,102,108,107,119,106,109,93,103,94,102,105,96,94,98,107,107,102,105,98,96,92,95,94,105,106,85,106,104,113,100,100,91,111,100,107,93,110,111,105,92,83,115,103,102,105,107,105,114,86,95,82,99,102,109,97,108,108,109,104,100,71,109,82,94,116,89,107,103,104,106,102,109,99,100,109,105,109,96,103,107,117,101,100,84,105,79,104,98,96,75,89,106,98,114,115,98,87,105,87,113,92,103,103,97,95,92,103,99,93,92,107,108,96,98,102,97,115,95,93,104,99,102,98,111,98,102,108,111,110,101,105,100,103,105,102,105,99,107,84,98,78,101,110,109,116,103,119,110,104,128,116,96,106,112,77,106,97,106,105,95,98,91,92,97,102,111,102,105,98,89,102,111,109,102,95,96,108,109,107,100,111,107,87,125,97,100,91,108,113,111,104,102,81,99,105,112,108,94,104,111,102,120,94,98,107,102,82,109,109,98,103,92,112,90,105,108,109,96,99,99,104,107,86,107,98,102,107,104,95,94,99,96,96,112,108,102,107,101,103,107,93,96,112,90,101,109,103,104,99,105,91,109,99,98,99,118,100,93,106,102,110,95,72,107,104,91,107,101,109,98,111,102,108,124,121,96,99,115,110,89,89,105,92,89,109,91,105,103,102,93,93,101,102,91,85,105,109,102,96,77,97,93,83, +505.9407,132,108,104,95,104,105,90,127,88,101,93,105,108,105,128,84,91,103,105,66,101,113,103,108,103,102,116,100,92,101,104,102,102,99,98,112,90,114,100,105,103,127,95,106,111,107,97,102,94,113,96,98,109,105,109,98,103,88,99,97,109,97,114,105,85,99,106,91,112,96,116,101,89,115,104,113,108,108,103,113,109,98,106,101,120,101,109,106,104,114,102,102,111,106,117,105,105,102,104,101,100,115,110,81,107,94,120,109,104,100,106,100,96,99,99,103,96,121,113,105,96,106,100,103,88,105,102,95,101,108,108,103,99,117,112,98,111,101,109,95,98,100,86,118,105,103,106,106,96,105,110,93,112,105,95,98,100,112,106,99,98,105,113,96,106,113,109,106,113,97,117,108,115,109,117,125,94,97,118,93,101,113,100,97,110,106,99,93,105,105,105,105,95,107,98,112,101,102,106,121,105,116,111,105,96,94,99,112,108,110,109,111,104,104,98,112,106,108,101,108,94,114,112,102,92,111,99,98,94,107,103,98,106,107,109,93,103,116,108,102,107,95,108,113,98,106,95,94,103,109,106,101,98,115,99,98,100,110,101,118,104,117,101,98,109,99,98,102,105,105,92,106,92,96,104,113,105,104,107,104,105,116,98,105,103,108,96,110,107,95,99,99,107,97,122,101,109,109,103,98,105,109,102,113,98,90,109,119,102,104,109,106,101,109,103,120,112,112,99,107,104,105,103,99,109,101,101,99,100,114,111,95,124,97,106,101,116,110,96,97,105,87,112,99,107,115,104,109,100,107,101,118,90,97,105,99,117,104,106,106,110,99,103,113,102,116,112,122,100,105,110,110,105,98,98,94,109,106,102,90,102,95,110,104,95,106,104,112,100,108,122,93,97,99,102,100,104,103,101,112,117,109,101,99,105,94,105,98,108,95,112,104,110,106,104,100,121,102,103,103,105,108,102,117,113,103,100,109,102,102,97,110,107,102,91,96,92,103,93,100,116,107,116,106,100,102,95,99,103,102,129,98,111,95,103,100,107,111,114,114,104,105,100,110,117,98,105,106,93,111,101,116,111,99,103,107,113,109,110,96,100,104,107,116,104,108,106,106,101,103,97,105,114,107,98,110,110,108,99,100,110,108,99,95,108,106,110,101,100,109,101,102,109,117,113,103,94,93,104,107,101,100,126,107,91,100,107,104,92,106,115,112,103,93,96,99,107,109,112,114,107,113,108,98,106,107,109,98,98,102,109,98,91,107,96,103,104,104,118,105,91,112,104,104,109,99,108,111,89,94,110,122,90,112,110,110,96,105,114,96,116,101,104,102,108,90,109,112,113,102,112,107,95,106,99,95,108,103,100,117,108,117,102,108,103,96,99,109,108,99,95,109,103,117,111,102,112,100,109,110,112,97,101,91,98,99,101,90,109,104,109,113,96,99,108,104,106,102,119,117,98,89,97,106,113,105,111,99,111,103,104,112,101,108,112,91,114,107,110,103,116,106,116,112,87,103,112,97,106,119,127,117,113,96,104,106,111,95,107,115,109,102,103,93,83,108,107,110,103,107,118,108,101,104,100,108,89,102,106,95,104,102,103,99,100,103,109,110,109,115,99,106,118,111,101,118,105,103,109,104,112,104,102,110,96,112,121,86,121,111,102,110,99,101,99,113,106,103,108,95,114,110,95,100,98,95,91,109,95,110,111,110,114,88,106,100,100,104,106,106,121,99,104,112,93,109,94,113,108,103,119,106,105,103,91,106,102,102,107,106,97,112,107,108,104,112,119,100,106,103,92,100,110,104,102,105,112,109,102,118,99,115,108,104,111,106,112,102,115,106,113,85,107,99,114,100,114,112,101,114,113,113,105,115,108,102,110,114,111,111,105,109,102,97,100,103,99,108,100,102,113,103,112,80,97,120,102,100,101,102,95,113,101,96,100,110,100,97,106,104,105,115,104,111,112,100,92,96,117,103,108,112,97,106,98,97,103,101,102,103,101,104,110,98,110,104,97,125,106,94,101,107,102,107,102,104,99,94,112,106,100,117,85,107,104,107,109,100,121,119,117,109,109,103,113,96,107,100,96,110,98,113,107,97,100,113,102,114,99,100,78,110,101,103,118,98,101,99,111,106,111,115,109,114,103,107,109,113,113,106,109,104,118,98,107,104,108,106,108,101,107,111,112,104,103,102,114,98,104,100,100,112,84,103,94,101,108,103,110,100,109,98,106,96,108,98,102,95,101,104,109,95,113,101,116,112,109,103,109,102,102,92,97,112,113,92,98,112,103,101,78,118,113,104,107,104,111,102,95,107,111,104,112,97,100,109,106,102,101,98,119,106,114,101,138,99,105,107,104,101,84,110,95,104,102,108,102,100,102,105,89,112,102,104,115,106,104,96,108,104,104,106,107,116,108,107,103,102,121,99,106,104,101,97,108,105,104,93,95,105,104,101,98,110,84,104,106,96,106,107,109,108,92,103,80,104,109,106,111,113,110,113,108,105,90,103,103,98,96,105,99,120,99,102,97,102,106,104,105,107,103,106,108,107,108,103,101,103,104,103,100,129,110,105,116,100,99,102,75,103,95,95,111,97,110,109,107,105,104,102,121,110,109,102,111,98,108,105,107,101,101,103,113,101,103,99,102,103,106,95,113,109,99,98,104,103,96,111,101,105,103,102,106,105,103,107,120,104,106,107,107,96,96,100,109,111,100,103,111,101,100,108,100,103,113,114,101,117,98,112,108,106,97,114,90,95,105,106,100,102,106,100,101,100,109,106,89,104,130,112,101,99,95,104,109,95,104,103,100,103,108,105,106,91,113,100,106,108,91,105,87,98,109,95,95,103,99,109,96,100,95,96,107,91,116,93,112,105,103,103,106,107,111,110,115,101,104,99,93,108,98,95,103,102,113,106,112,103,107,113,110,117,105,106,97,94,109,104,122,106,98,95,100,103,113,110,104,106,106,102,106,106,110,99,103,112,104,116,96,102,104,103,108,106,109,99,111,106,111,102,95,127,107,117,96,81,102,108,102,107,115,100,104,100,102,96,113,100,103,111,106,106,98,106,102,127,103,115,111,103,106,111,105,105,104,91,107,107,91,103,109,112,67,99,101,103,100,108,103,104,114,103,107,103,98,102,89,105,103,98,109,100,111,113,102,111,105,103,108,102,95,107,112,111,99,100,85,103,107,105,97,105,106,97,103,110,104,100,104,100,100,105,105,93,110,102,112,94,113,100,122,88,96,109,111,112,112,115,97,105,110,114,116,100,97,100,103,101,120,106,101,98,121,103,103,108,106,94,97,106,109,103,98,99,108,101,87,112,103,99,92,112,94,96,90,112,104,106,107,106,104,86,96,113,108,104,99,96,98,106,106,113,108,96,115,104,99,111,110,115,87,109,100,106,93,99,103,91,102,86,101,102,109,98,102,112,90,102,137,90,102,100,99,103,92,109,112,102,105,108,103,105,106,100,110,112,98,117,125,100,113,108,110,100,106,89,108,111,98,121,108,122,102,109,100,110,101,101,111,107,106,97,102,114,94,88,108,94,108,110,123,96,104,107,101,100,95,99,99,88,104,97,103,113,94,104,95,85,108,98,104,109,102,110,104,90,114,110,107,108,109,110,114,102,95,91,99,117,100,101,105,105,110,98,104,108,106,104,101,84,106,117,111,106,101,91,94,105,108,86,111,94,100,105,102,100,109,110,108,101,105,106,102,101,102,108,110,106,95,123,99,72,97,104,100,110,111,107,94,109,111,104,112,101,100,104,97,104,103,100,106,100,105,106,116,93,108,112,99,94,106,95,111,104,108,109,95,98,109,97,95,111,99,117,105,97,113,88,104,105,95,115,98,106,105,102,95,104,104,113,108,110,100,98,104,105,113,95,111,98,102,113,102,108,104,100,107,104,101,101,94,94,91,106,102,102,102,110,107,103,92,106,101,110,111,108,103,94,96,113,109,110,104,97,102,103,102,107,111,108,104,113,109,110,111,110,95,109,106,120,106,103,85,104,101,105,109,111,101,96,103,106,98,111,113,102,111,95,106,101,94,112,105,87,115,112,110,91,94,103,98,111,98,116,108,107,113,106,100,100,113,103,111,104,105,98,105,101,102,112,113,105,99,103,111,95,92,114,98,112,103,98,95,99,108,94,103,96,105,75,109,105,108,104,113,108,106,113,104,107,110,110,110,87,103,102,116,100,105,121,105,101,101,104,101,116,100,97,109,92,93,118,99,106,88,109,100,105,94,108,104,91,120,101,87,113,104,101,112,106,110,110,108,103,105,107,113,102,120,121,98,107,115,104,109,113,100,98,103,96,117,93,101,98,106,98,99,99,98,106,105,96,115,107,103,101,99,104,105,106,110,93,110,113,81,109,105,104,101,104,90,104,100,108,101,107,100,116,108,106,115,107,104,99,90,105,108,98,99,111,108,109,103,105,124,106,92,97,94,105,109,93,101,113,107,112,95,105,102,107,101,108,109,114,113,109,112,97,101,106,100,100,102,127,103,116,100,108,101,96,102,70,115,118,108,111,112,98,102,106,103,109,105,104,98,108,95,114,102,106,101,106,113,99,115,95,109,108,101,105,98,121,100,106,83,109,106,101,122,96,95,111,105,103,124,98,104,118,97,112,103,95,103,109,101,102,103,99,100,109,99,103,90,102,105,107,105,96,108,109,102,105,104,100,107,102,107,112,106,110,88,99,98,96,113,113,99,105,94,106,102,105,113,93,99,99,95,112,88,101,101,116,107,103,109,99,108,97,104,99,108,107,117,98,104,101,102,109,111,106,100,78,103,109,102,83,97,106,103,99,108,116,95,101,99,104,109,113,105,101,109,109,104,102,126,98,107,117,103,102,104,94,115,106,96,92,101,96,93,117, +506.08136,94,94,101,103,113,102,94,102,105,103,121,103,101,107,107,103,96,113,101,98,94,116,103,125,104,100,106,108,112,113,96,111,105,107,129,106,100,94,101,110,105,111,104,107,104,95,105,98,106,123,110,110,92,109,98,97,90,98,114,97,100,96,111,106,103,108,107,105,101,106,105,110,99,106,104,103,98,95,102,101,107,106,111,100,113,88,94,113,101,101,104,92,79,99,103,115,110,100,115,108,101,97,99,99,93,112,108,121,108,99,109,103,91,108,110,105,109,103,109,97,106,107,108,94,112,109,110,112,96,101,99,107,106,106,108,103,102,105,90,107,99,109,106,103,118,105,104,109,104,96,114,117,111,90,104,110,105,106,96,100,105,107,106,108,97,101,101,104,115,111,108,105,108,99,105,108,96,103,126,111,90,103,102,99,98,103,101,98,112,94,105,99,104,100,97,104,99,101,114,113,98,101,103,103,95,98,101,105,121,97,103,99,103,98,98,85,103,111,97,98,101,107,97,111,93,111,108,107,106,104,103,107,103,87,103,97,103,102,95,103,107,103,110,109,95,120,116,114,102,104,103,105,101,100,109,104,102,102,93,110,96,104,110,98,93,105,106,102,109,105,114,100,109,104,99,110,106,107,99,105,105,97,97,94,102,105,87,107,110,106,102,111,107,108,104,112,112,109,103,101,103,107,100,110,81,103,103,118,103,106,108,83,109,107,106,108,102,107,95,117,105,97,102,112,110,120,99,105,118,116,100,99,104,96,108,123,107,107,104,105,92,109,121,106,114,101,102,118,103,113,102,108,96,112,109,103,117,103,72,121,103,101,102,113,105,101,99,107,110,115,105,117,110,126,101,101,108,103,111,110,100,110,102,113,102,91,113,110,104,92,109,106,104,113,110,103,103,99,102,104,91,106,110,100,103,109,100,97,116,114,85,99,97,107,107,102,106,99,99,104,112,100,97,98,110,108,103,97,103,104,93,108,114,89,111,109,94,111,105,105,105,114,102,116,95,106,101,106,109,125,107,103,109,108,105,106,108,115,103,111,114,95,108,106,119,117,109,109,102,107,106,125,112,107,108,87,106,113,104,143,114,105,116,109,100,111,99,101,99,100,107,100,100,96,93,107,106,100,106,96,107,112,103,114,108,115,96,99,108,102,103,100,92,109,101,102,114,100,107,103,108,101,105,103,101,98,108,103,107,114,98,106,98,117,112,114,106,106,109,114,106,133,94,98,108,104,112,115,104,105,101,101,114,114,91,109,102,96,95,104,99,95,109,122,98,102,103,97,100,101,99,96,108,104,100,109,98,113,97,107,112,95,97,102,107,88,111,112,103,108,121,99,111,116,112,116,105,99,110,95,102,111,116,103,106,92,104,100,115,114,96,99,112,102,108,101,100,104,105,82,97,96,105,89,115,106,112,107,105,99,96,113,108,102,103,108,99,103,104,99,111,105,97,103,103,102,100,96,104,97,102,105,103,99,112,101,112,110,110,111,116,104,98,111,104,98,110,89,107,114,116,96,106,98,96,101,99,114,104,90,112,107,103,93,98,105,103,109,104,102,105,99,109,110,108,108,95,101,100,101,107,101,101,101,105,99,104,102,106,107,107,100,102,91,102,99,96,97,104,103,102,102,97,107,99,84,94,109,99,115,111,95,95,105,99,100,106,97,102,101,118,103,101,100,109,107,102,113,107,120,102,91,96,101,106,113,103,103,95,94,103,105,95,108,104,112,101,97,123,93,108,102,102,100,110,106,113,97,108,107,103,118,102,108,105,105,99,107,107,104,114,112,113,107,104,107,98,117,108,110,105,100,101,116,103,104,115,117,102,105,111,99,108,111,105,114,124,95,112,110,107,103,109,94,100,109,105,107,109,107,113,105,111,105,98,105,103,100,105,92,115,102,117,101,129,104,104,101,99,105,105,102,98,113,103,115,100,105,103,108,82,113,98,119,107,116,99,105,103,99,106,104,99,108,86,96,108,96,99,96,101,110,97,97,96,112,99,128,110,112,111,112,113,115,108,96,86,105,99,111,99,69,107,108,104,110,102,109,106,109,101,101,111,110,116,106,112,111,115,105,108,103,104,98,108,95,102,108,113,89,108,106,99,105,101,100,96,100,102,83,104,108,102,109,101,106,114,101,110,109,108,111,98,116,106,94,117,143,105,107,124,103,98,106,106,98,103,104,109,107,110,98,108,107,92,113,117,114,95,104,105,101,98,109,103,107,107,100,104,111,99,99,110,97,105,115,105,109,116,104,109,96,122,110,115,96,114,100,113,118,100,101,101,113,103,113,95,109,99,105,105,111,109,94,113,107,97,89,103,113,109,113,108,83,104,111,106,120,99,100,109,107,105,124,105,106,105,100,97,107,100,106,112,102,114,101,108,119,95,110,105,99,97,100,104,83,99,101,109,106,93,106,100,117,100,140,105,107,94,89,89,97,102,99,109,106,110,119,107,102,102,103,123,93,108,91,98,99,94,111,116,100,109,107,96,103,103,101,117,95,114,127,103,109,105,98,107,107,95,103,99,103,99,99,96,88,100,101,99,101,101,76,96,101,81,104,108,89,96,102,106,101,94,98,98,100,96,106,109,94,106,101,123,109,106,102,103,102,79,97,105,113,103,104,95,105,104,98,91,103,97,96,105,103,88,103,98,101,103,100,103,100,111,112,112,103,107,91,102,97,96,104,101,108,92,104,102,96,108,98,98,101,113,100,102,109,111,110,100,110,136,96,104,108,113,105,109,108,92,109,114,104,104,98,78,96,101,119,106,98,103,106,101,107,104,101,107,102,100,112,115,115,105,111,103,100,105,102,86,101,127,114,115,109,90,95,117,106,103,103,97,99,104,111,102,101,99,90,116,106,95,117,109,110,115,105,96,105,108,102,114,96,108,104,92,108,110,105,109,110,109,112,102,112,106,105,102,100,79,103,108,93,100,110,100,110,104,104,98,95,87,117,123,116,109,113,102,109,107,110,102,96,96,109,137,107,112,99,105,103,112,104,99,113,103,100,113,101,103,120,90,99,114,116,100,94,107,100,115,99,105,110,92,109,115,104,111,102,109,96,112,119,109,105,106,111,109,110,101,97,108,100,102,99,109,102,102,103,103,99,87,107,94,102,106,101,105,100,105,101,100,97,111,88,114,117,97,102,102,109,94,108,104,109,104,98,109,109,106,96,105,98,109,96,106,100,96,98,122,109,108,109,98,89,96,115,102,92,112,98,115,104,119,108,101,106,101,81,96,105,99,101,108,100,94,98,97,106,99,97,95,96,105,101,92,117,99,105,108,92,114,103,108,103,107,117,113,99,101,101,96,112,101,101,105,96,105,98,103,103,98,110,93,107,100,110,98,104,105,99,106,109,97,97,106,92,104,101,102,110,102,101,104,107,119,95,118,93,103,108,101,100,114,109,103,117,102,105,100,100,100,100,98,97,116,105,108,102,106,103,106,96,99,107,109,108,109,107,107,106,104,105,97,105,101,102,104,94,104,102,103,106,107,106,99,108,113,103,115,96,105,101,111,98,98,117,103,98,105,104,113,101,98,94,84,109,100,106,107,102,103,112,94,110,113,100,99,110,116,95,96,113,117,131,109,97,98,104,102,120,100,104,100,100,117,101,102,107,106,107,103,104,117,106,105,107,95,109,104,112,104,105,106,110,98,91,103,106,117,101,100,108,102,97,103,101,100,80,94,92,113,111,100,83,97,100,110,105,98,117,75,93,105,118,106,79,103,106,99,106,111,95,116,87,109,101,103,100,110,101,93,115,96,111,105,90,99,108,112,100,113,92,103,103,92,103,104,101,99,115,84,95,107,117,100,113,115,98,100,112,99,101,110,103,95,97,114,103,106,102,101,110,89,95,106,120,105,103,104,97,98,94,99,104,88,96,101,89,94,104,95,98,104,105,100,102,105,87,120,98,102,118,99,104,103,109,97,93,97,101,98,106,103,101,98,98,114,109,104,92,113,115,100,108,100,96,95,94,109,107,112,113,93,99,120,102,98,91,101,109,108,107,93,92,111,106,113,95,98,104,110,91,114,91,96,95,105,98,108,95,109,100,102,105,112,113,105,110,95,99,97,90,102,103,108,109,116,105,103,92,115,101,103,110,106,98,114,98,92,104,102,91,94,99,99,94,111,101,109,102,101,112,125,103,101,108,99,113,103,105,100,108,106,112,99,99,84,91,102,105,106,102,99,107,104,104,114,100,109,94,99,107,100,105,101,102,83,112,100,113,111,106,114,111,105,106,102,99,95,100,110,113,96,103,108,105,89,80,101,104,97,117,108,104,92,102,103,101,100,105,102,88,99,103,104,103,106,101,112,116,105,100,106,93,89,80,104,98,98,96,109,100,116,94,93,104,116,114,95,120,117,100,94,103,87,100,95,96,107,106,108,108,114,95,92,103,104,97,93,111,91,99,120,103,104,99,104,105,99,98,105,106,100,98,111,108,105,101,99,125,113,95,91,110,102,107,104,73,114,94,101,102,88,108,112,98,90,108,103,107,100,99,92,98,95,98,96,106,94,95,104,107,107,104,102,112,99,87,96,106,104,88,105,93,105,95,106,90,113,113,98,88,116,107,81,100,99,101,108,100,99,100,110,99,102,113,109,95,103,105,81,92,110,98,112,94,101,98,95,98,103,112,98,100,112,117,93,93,86,98,102,120,95,85,101,87,100,103,90,108,100,105,102,101,94,115,113,104,110,90,106,99,109,97,100,104,101,108,93,94,113,104,105,103,99,123,116,103,116,97,114,110,114,93,96,87,95,95,100,79,116,113,106,89,116,98,117,101,105,99,111,95,102,103,98,98,98,95,101,98,106,100,106,100,101,95,99,99,107,110,108,106,100,108,105,97,125,96,104,99, +506.22202,130,100,101,112,97,103,102,107,79,104,101,86,96,90,95,105,106,94,100,102,111,124,102,105,102,108,113,95,105,102,112,93,104,97,111,101,95,106,114,108,95,64,110,96,94,105,108,109,91,106,108,95,91,109,121,94,100,89,110,98,94,107,107,101,110,105,100,95,101,98,106,108,105,105,101,117,95,103,99,116,106,119,106,102,106,108,104,109,105,98,96,100,82,102,101,96,101,96,95,96,103,107,100,102,109,107,95,99,105,101,105,100,111,115,88,108,99,104,93,105,99,103,105,98,111,118,111,101,97,107,93,118,105,91,103,101,112,104,112,110,108,108,103,114,90,105,110,115,102,105,105,117,99,102,100,98,105,122,110,102,97,113,94,99,108,104,111,104,109,105,98,100,99,115,103,118,117,97,115,90,106,114,101,106,116,99,95,102,101,112,107,96,116,110,107,106,108,104,104,108,103,102,94,101,97,102,104,117,108,110,109,90,108,102,108,80,103,95,90,107,112,106,96,101,94,100,106,100,95,101,99,104,103,106,107,115,102,103,94,110,109,99,113,92,109,98,105,110,100,107,95,107,100,113,94,110,94,110,98,114,96,111,110,99,106,118,95,94,94,103,107,101,100,104,104,103,97,109,95,101,117,100,118,98,116,91,97,106,108,94,111,109,113,107,102,117,115,101,102,107,107,104,110,113,92,112,84,106,104,109,103,119,101,105,104,106,104,114,99,110,107,99,99,111,112,109,106,99,108,106,117,95,103,104,104,112,95,113,100,99,98,101,93,108,120,114,132,118,113,110,110,112,107,111,97,118,114,113,119,98,103,101,110,102,112,105,113,110,111,100,110,97,98,103,105,103,108,99,103,108,105,103,116,107,108,94,102,109,109,118,107,91,105,113,92,110,112,103,103,103,104,117,101,98,99,106,84,102,110,110,83,97,101,98,103,95,114,113,98,103,108,97,106,113,105,106,94,108,95,114,110,109,107,95,109,111,103,112,110,96,98,109,124,106,101,105,97,110,88,95,109,105,113,124,86,99,97,91,109,113,101,103,105,115,103,116,104,102,107,108,108,102,110,103,106,101,108,119,107,124,109,109,102,97,107,102,105,102,99,98,101,113,115,100,93,110,100,113,110,101,110,86,109,112,114,97,113,110,102,98,108,97,111,109,99,100,104,107,95,95,102,110,103,122,108,96,100,106,106,104,103,100,105,102,111,111,111,99,102,110,103,104,103,101,104,95,106,107,113,102,101,112,113,115,100,112,109,101,105,102,96,110,103,103,104,97,112,108,109,108,94,109,108,109,97,114,97,113,90,100,105,85,102,102,99,108,105,99,108,98,102,103,95,113,102,106,117,114,109,107,96,114,105,101,103,118,96,106,110,109,106,105,94,103,113,105,110,107,116,103,113,106,99,107,102,114,95,103,113,95,102,97,100,106,92,100,109,111,108,103,122,113,113,87,105,90,96,106,115,98,108,94,108,115,97,85,101,124,109,100,116,114,107,95,98,103,118,109,101,103,112,108,112,95,110,107,113,116,99,112,111,99,98,94,99,107,106,111,104,109,95,110,108,105,98,125,109,68,101,91,98,92,90,110,109,104,110,101,109,102,107,91,116,102,108,117,104,113,101,116,106,97,112,106,107,77,111,100,113,96,104,115,109,102,96,97,101,110,96,105,110,88,103,102,100,82,113,104,104,107,88,93,103,100,98,112,107,100,114,91,95,103,106,108,104,103,110,100,109,104,100,106,104,109,117,97,106,95,104,110,110,109,111,98,106,94,112,102,97,107,104,101,114,106,100,113,97,105,111,109,113,111,99,100,121,83,105,108,107,95,107,113,108,91,111,109,122,112,113,96,106,100,111,100,104,99,109,106,116,109,106,101,105,107,110,113,99,96,106,108,108,90,111,107,106,96,98,110,96,112,107,107,100,106,117,108,109,111,101,114,104,99,91,107,100,106,98,117,113,104,109,111,104,110,107,110,99,96,111,107,112,106,100,119,94,102,102,105,106,113,101,103,109,116,104,108,106,103,88,109,104,108,106,96,112,100,109,116,109,94,116,107,100,111,115,104,104,102,89,99,107,100,109,101,98,97,104,96,107,105,87,114,95,113,101,110,98,102,108,102,95,111,99,124,106,106,105,111,105,118,99,111,102,100,107,128,108,101,107,120,100,119,115,103,105,110,100,101,115,113,118,96,107,109,104,108,106,101,98,109,95,108,104,109,111,96,103,104,110,81,111,98,101,107,110,109,104,105,92,105,107,115,106,100,115,94,136,94,106,110,103,100,91,112,118,95,110,103,107,100,108,106,117,104,98,108,106,101,99,104,102,113,111,98,111,105,104,110,100,94,108,111,109,111,103,92,113,106,100,101,105,121,91,102,108,107,93,90,100,106,98,123,105,106,106,84,81,107,100,96,87,119,101,103,115,117,98,100,102,109,100,97,95,95,123,92,108,107,105,104,105,99,111,107,100,108,104,104,120,103,107,105,106,97,100,112,91,101,104,110,105,117,98,110,97,109,109,101,101,108,107,102,101,110,111,104,121,93,101,107,105,103,95,93,103,97,108,105,102,99,114,99,101,102,101,105,101,104,105,117,104,106,111,103,115,116,109,106,93,95,115,95,96,98,101,113,103,97,106,100,100,102,102,106,105,100,109,112,112,102,104,100,107,104,114,119,99,95,100,108,103,96,107,102,107,102,109,105,94,99,111,96,105,109,102,118,111,96,98,113,102,102,104,110,108,102,110,110,110,92,113,108,104,108,114,89,110,95,100,115,92,109,109,110,104,107,108,94,104,111,97,94,103,103,104,98,92,107,96,102,107,100,108,116,102,101,100,112,98,103,102,98,95,89,105,97,106,136,103,102,101,95,110,107,120,103,108,103,104,117,116,87,111,117,94,109,117,109,107,106,109,112,97,108,105,113,103,104,109,108,102,113,75,116,103,102,107,111,96,102,111,109,102,106,102,94,110,109,95,106,106,104,100,106,105,95,110,109,106,106,108,101,98,110,99,114,102,102,119,85,97,112,114,106,100,108,107,101,82,108,114,97,107,110,116,104,124,102,100,109,105,116,103,108,113,98,112,100,87,108,112,105,99,115,115,104,113,97,101,97,103,106,105,109,117,82,108,102,93,101,112,113,99,114,91,106,108,104,106,106,98,104,106,97,104,102,107,110,109,107,101,116,97,110,102,87,94,107,106,101,101,106,120,99,99,109,102,98,115,102,106,113,97,111,95,119,100,114,106,102,115,107,104,100,102,102,110,95,105,109,109,91,100,102,109,105,108,124,104,94,103,96,111,103,104,110,117,101,105,102,104,102,104,104,95,91,114,106,108,97,99,106,100,99,99,103,96,116,99,102,109,114,110,95,105,108,94,101,109,95,102,106,107,104,100,98,112,110,112,103,97,112,104,113,106,100,99,121,104,98,114,102,98,108,102,96,109,98,95,108,108,104,85,75,110,102,102,98,111,100,110,106,108,112,117,116,102,103,100,101,118,107,106,113,105,112,108,108,104,121,101,108,97,109,100,107,87,107,96,96,102,105,117,105,99,104,108,99,102,98,93,105,92,102,100,101,101,116,91,107,103,106,106,112,98,91,111,106,103,109,98,101,102,87,99,103,106,106,73,107,96,96,104,105,108,96,98,112,113,113,99,118,103,109,96,88,102,105,108,103,98,92,113,109,101,107,109,102,117,96,103,86,100,97,102,105,109,102,97,110,104,105,102,100,112,100,89,97,115,99,105,77,105,111,100,104,98,98,106,106,100,98,98,110,116,107,123,109,109,94,109,98,109,105,106,97,101,109,96,104,105,102,109,98,94,99,117,108,98,107,107,95,103,100,104,108,109,102,95,109,85,109,100,98,100,95,105,107,98,99,106,93,112,106,98,106,110,121,111,116,101,106,109,108,110,102,101,112,108,90,107,109,103,111,108,111,103,94,113,101,107,97,100,106,107,108,102,102,101,101,103,107,102,113,108,104,102,113,108,110,110,103,101,103,100,111,116,98,105,102,106,97,101,94,101,109,107,112,107,100,109,114,106,104,113,92,96,110,97,107,99,108,93,111,104,108,102,109,99,109,109,101,103,109,107,104,129,95,105,103,94,89,100,107,94,101,101,98,109,107,108,102,81,101,111,108,100,107,111,97,112,127,105,103,100,107,97,98,104,100,94,91,98,99,112,108,94,105,102,108,103,91,107,79,96,110,105,111,109,91,94,107,101,102,105,103,95,98,100,102,109,102,108,105,110,108,99,95,94,117,106,99,90,113,110,103,104,112,108,108,111,112,107,104,102,108,107,112,108,111,115,101,107,106,103,100,106,108,109,109,106,101,109,113,104,105,85,106,113,104,98,109,109,103,95,115,115,99,108,85,105,94,99,112,106,102,98,111,107,92,99,112,104,90,103,91,102,98,100,84,103,105,108,99,100,104,101,94,74,110,95,100,103,108,97,94,99,100,108,93,98,88,91,117,99,105,98,99,107,104,91,101,105,97,100,91,103,94,94,105,100,105,106,110,101,102,102,91,108,114,103,111,113,94,101,105,104,103,99,105,96,99,104,96,105,100,105,103,103,80,97,105,96,115,102,114,110,106,125,109,99,103,112,109,101,103,99,106,104,95,91,93,103,103,83,92,104,110,108,101,112,102,121,101,106,103,110,100,111,108,115,109,110,107,97,98,107,110,104,107,106,113,100,91,91,97,93,107,104,108,119,97,107,102,102,98,108,111,116,102,99,103,104,109,113,104,97,104,103,97,93,112,114,80,102,98,118,99,102,93,92,102,111,103,100,95,97,106,98,110,132,90,84,106,114,112,102,109,102,111,108,105,98,105,87,90,107,95,119,98,104,100,95,97,99,101,93,107,105,95, +506.36267,130,102,105,103,110,112,99,99,104,95,78,116,104,99,90,103,102,106,107,117,100,100,106,98,98,103,100,103,110,108,111,79,100,104,119,107,107,97,107,106,80,91,98,108,110,101,90,99,97,108,99,95,107,101,98,96,100,101,114,99,108,102,101,97,95,100,111,116,96,100,108,114,94,108,103,113,98,112,101,105,103,102,109,106,101,110,108,105,93,100,110,109,98,108,98,105,100,128,96,99,100,114,98,97,106,99,96,123,111,95,99,103,109,109,99,99,109,104,110,100,100,116,104,116,101,109,103,89,108,100,112,109,112,109,98,103,106,103,117,96,109,104,92,109,97,83,112,99,102,104,109,84,100,95,100,110,106,101,96,107,101,104,96,103,106,115,109,102,93,114,102,107,104,97,95,121,112,99,108,101,98,102,120,125,124,94,96,93,91,97,96,111,98,104,85,98,100,114,93,101,103,99,95,107,79,107,117,100,115,98,108,100,101,103,104,95,105,111,93,108,109,95,100,104,105,104,108,107,105,105,103,108,107,113,104,103,112,110,107,102,106,103,108,110,113,107,101,106,112,115,99,112,92,106,104,109,88,108,92,109,98,107,107,101,104,102,119,114,105,85,110,104,84,97,114,101,101,104,91,102,120,99,98,103,100,112,88,117,98,106,107,102,99,94,111,94,112,109,98,103,97,105,91,114,115,104,108,92,105,112,101,109,107,99,99,100,103,111,107,110,93,86,115,111,103,95,108,103,108,108,94,97,133,101,105,98,104,110,94,99,108,91,120,114,94,107,100,102,122,101,97,116,100,110,99,94,110,108,113,109,114,107,102,91,99,97,104,109,101,105,101,109,101,103,106,110,117,105,107,99,102,102,106,114,109,105,97,102,109,95,109,107,105,117,88,105,105,103,118,113,96,104,107,102,103,109,97,110,106,103,96,104,99,107,103,98,114,112,105,105,101,90,102,102,101,106,106,101,113,96,106,99,110,96,116,103,107,113,113,100,110,95,98,100,109,105,108,74,111,129,104,107,107,101,98,115,99,107,103,103,96,114,97,102,104,101,111,112,99,101,111,123,129,107,108,98,106,118,107,92,97,108,109,99,99,98,107,113,105,99,141,100,107,101,109,112,99,99,107,101,102,99,117,99,98,103,95,102,103,105,127,97,110,99,105,113,106,107,99,95,112,94,106,107,109,92,102,122,101,94,103,102,118,104,104,112,101,105,81,113,107,115,108,97,138,106,107,97,111,111,99,103,106,101,101,104,103,113,91,90,114,113,100,113,106,107,114,117,107,104,107,108,115,112,102,109,95,114,107,99,109,105,101,105,106,103,107,109,108,103,105,114,96,100,109,107,105,116,100,106,107,111,96,83,101,110,107,111,104,100,102,110,103,108,117,109,97,103,104,120,106,112,103,97,114,106,99,119,103,90,103,97,120,105,107,108,102,103,103,99,108,99,104,113,106,107,96,104,104,116,97,105,112,100,101,100,102,113,105,99,86,111,104,124,100,84,104,102,105,106,118,105,113,113,96,97,108,108,107,103,104,105,113,108,96,114,103,111,109,106,100,112,112,103,96,106,105,117,103,109,96,102,104,103,112,95,104,86,97,113,100,105,97,101,116,116,111,110,103,99,96,105,117,107,91,109,103,109,112,109,112,99,98,98,106,105,96,104,105,94,108,95,100,93,114,108,105,97,87,113,113,94,101,104,101,103,101,101,118,101,112,99,103,107,103,102,102,107,97,104,111,99,100,114,101,111,114,106,105,103,106,105,105,114,110,114,99,101,106,112,109,113,110,124,107,103,105,110,116,116,104,99,101,141,105,90,107,86,111,108,113,103,103,99,115,107,112,108,100,103,112,114,99,96,105,97,117,111,107,105,112,105,105,116,96,118,114,102,110,113,110,118,112,110,93,104,101,95,113,101,105,92,94,103,112,105,108,99,101,116,85,100,107,90,107,104,94,103,100,117,92,107,101,107,104,104,104,109,117,110,98,100,109,102,105,91,96,112,97,110,115,102,107,113,103,95,115,111,112,98,104,100,116,106,103,103,103,109,107,104,107,105,99,97,111,119,106,117,103,120,114,96,112,106,106,97,103,110,109,96,111,99,96,114,104,102,99,109,107,110,121,104,88,113,103,117,111,110,106,107,103,103,115,114,102,102,115,110,123,95,106,107,109,103,103,108,105,112,83,100,104,96,111,97,103,110,107,103,106,104,99,116,120,106,101,116,95,100,100,97,103,101,108,96,104,104,101,112,105,110,99,113,103,106,110,107,94,107,104,105,108,108,94,104,92,111,100,103,89,117,115,118,107,110,113,108,100,112,101,105,111,104,100,102,117,87,103,110,122,104,96,109,99,107,109,107,108,108,114,104,116,109,99,97,107,100,95,110,106,107,105,105,107,100,110,104,95,107,103,109,104,135,91,110,99,104,110,103,102,109,104,97,93,117,103,119,101,113,105,115,106,106,110,95,104,124,103,107,116,97,102,117,106,108,108,94,98,99,103,106,105,108,113,102,100,82,99,99,88,115,115,104,103,104,103,107,115,113,108,111,100,124,97,121,103,98,103,106,100,105,107,96,95,110,110,99,101,99,99,95,103,95,103,112,103,104,99,100,96,99,107,98,96,94,112,109,93,95,105,101,113,102,82,110,115,100,103,102,116,103,98,110,85,103,105,133,105,103,80,103,108,106,95,105,116,110,106,107,92,104,109,101,111,105,114,114,115,111,106,106,106,96,101,103,97,99,95,111,112,103,106,110,118,88,99,102,100,111,110,108,101,108,103,89,99,100,108,100,106,107,105,103,105,91,102,116,110,112,105,119,95,108,102,102,95,103,101,115,110,94,111,110,106,105,107,98,98,104,110,117,104,101,106,104,108,100,76,95,113,106,111,103,106,110,101,123,99,102,111,106,102,104,98,103,102,109,112,99,100,102,95,109,97,108,99,99,107,98,70,101,101,110,90,94,104,112,103,102,109,106,113,94,102,117,105,106,102,101,101,99,103,98,98,109,106,109,105,113,101,99,102,103,111,97,101,97,105,97,106,109,109,106,94,107,96,107,99,103,104,126,115,110,104,108,109,96,102,107,84,96,96,98,94,112,106,106,128,102,99,102,107,100,104,99,107,94,108,105,83,112,93,102,107,109,104,100,103,105,109,100,108,87,90,97,103,106,117,108,103,101,99,98,102,102,104,108,101,113,100,87,106,111,92,99,111,115,114,94,105,103,102,112,108,117,113,89,109,136,101,91,102,100,115,108,116,114,109,104,113,101,114,94,103,107,115,110,118,83,100,111,94,105,115,97,103,75,109,112,98,100,91,91,106,108,113,103,104,103,107,110,97,106,96,103,86,105,105,97,105,95,104,86,106,113,103,116,100,87,109,110,104,112,93,101,107,116,108,88,130,104,114,90,109,109,96,104,107,98,104,103,95,109,103,97,103,103,98,110,103,120,103,102,88,105,100,94,95,95,107,107,107,100,107,112,99,105,96,96,92,89,102,99,101,108,93,101,101,105,107,96,91,99,100,103,108,101,97,95,102,109,109,97,98,102,102,99,98,109,96,104,106,106,97,112,97,100,105,110,108,101,89,103,98,114,112,91,112,102,101,110,113,104,106,101,94,96,101,101,102,106,96,99,103,110,98,101,98,105,114,112,103,104,100,93,93,117,113,104,102,102,92,94,116,101,101,116,98,106,106,94,99,96,95,91,104,90,94,102,98,103,117,105,104,69,104,108,113,123,105,99,102,105,111,97,101,99,104,118,103,115,103,100,106,94,102,99,91,104,85,97,108,104,110,94,90,99,104,89,109,111,96,116,95,100,104,106,94,103,112,99,98,116,95,97,104,109,96,105,101,108,102,86,102,94,103,102,100,94,93,101,96,95,95,104,100,105,95,92,97,93,98,97,83,109,102,111,98,98,105,103,113,107,111,116,115,102,106,100,93,104,100,101,99,104,99,108,112,104,114,90,105,86,99,98,102,99,103,106,107,93,97,92,100,101,100,92,112,104,105,116,107,108,100,105,100,104,109,110,106,93,98,100,104,105,109,103,101,103,97,94,105,102,106,106,109,90,99,109,83,109,97,98,107,102,92,107,121,92,97,98,97,106,98,92,114,86,103,100,112,102,97,100,96,93,96,104,112,107,117,103,102,109,102,73,115,111,92,98,98,108,100,103,101,87,104,100,109,101,98,113,107,97,105,96,92,116,75,109,93,70,109,75,104,98,93,99,98,105,108,92,109,89,101,79,98,95,103,91,100,107,106,103,109,95,108,97,106,97,99,108,105,96,95,108,101,111,106,106,102,108,107,99,112,98,95,111,111,105,104,108,114,95,111,109,115,108,95,118,94,98,103,102,104,111,87,100,105,96,117,90,96,90,102,109,96,91,96,101,113,111,101,100,94,117,102,98,100,95,92,96,91,114,99,100,103,98,96,105,97,96,100,92,105,108,107,111,103,103,100,88,106,99,104,72,101,94,108,96,105,105,101,102,112,89,107,108,111,105,104,91,95,99,99,112,100,91,125,101,105,99,106,109,95,96,102,94,92,115,90,98,93,105,99,101,104,96,108,97,101,109,95,93,100,103,99,100,94,106,105,100,99,98,99,91,100,94,103,99,103,105,110,97,102,105,100,111,99,100,99,100,95,93,96,103,99,96,103,109,113,102,82,111,120,111,112,79,103,103,98,100,96,104,104,109,111,96,114,99,113,109,110,102,114,110,98,96,111,112,105,85,100,92,108,103,105,104,114,100,101,85,93,102,98,108,98,93,100,92,96,109,109,116,99,89,107,100,120,87,92,105,99,100,105,114,79,103,110,108,111,100,94,101,83,89,106,98,92,101,97,108,102,114,105,93,96,97,91,102,112,114, +506.50333,100,97,100,102,108,112,105,96,95,114,109,114,93,103,119,111,90,110,114,107,109,103,106,101,98,106,112,96,97,90,95,108,105,100,104,95,112,83,99,79,111,102,83,103,98,107,103,108,108,106,118,101,111,100,100,110,109,104,114,97,102,108,108,104,95,104,103,103,96,106,104,103,104,96,92,103,96,112,113,94,105,92,85,78,99,99,114,117,92,102,107,98,110,98,104,102,121,93,108,90,113,103,101,99,113,108,116,104,103,108,112,102,111,96,110,106,104,95,117,117,95,103,113,98,97,111,112,104,105,109,113,100,96,105,108,99,109,109,102,102,106,109,88,109,99,109,106,108,102,104,121,105,104,97,111,111,104,89,94,111,103,108,89,109,111,98,105,103,108,100,102,79,103,97,112,109,113,107,108,115,90,97,96,109,110,91,108,95,100,114,95,94,137,102,105,102,109,107,99,126,120,101,103,97,112,107,102,112,98,106,104,106,106,95,107,110,97,113,105,103,106,115,105,105,97,114,106,111,113,116,100,93,105,111,119,104,90,99,129,102,113,120,105,98,103,109,101,111,99,105,109,108,107,116,110,105,98,106,114,105,107,116,111,97,102,94,96,94,95,101,111,111,107,98,117,101,92,96,93,112,83,114,94,105,105,95,104,106,89,102,95,109,104,103,101,113,95,104,94,109,107,98,103,116,94,95,125,106,94,116,93,108,112,113,110,102,110,109,108,113,93,104,109,105,106,120,98,108,105,101,109,92,105,98,94,101,108,112,109,100,98,108,107,99,105,105,101,106,100,117,91,105,100,103,123,90,98,99,112,107,104,104,110,77,102,103,104,110,105,102,114,96,105,116,105,95,90,97,100,106,115,104,105,103,110,103,101,93,116,107,116,104,103,103,101,93,106,100,104,76,105,109,95,106,109,103,98,102,102,109,103,100,104,99,112,99,74,93,103,103,106,108,106,109,108,106,118,102,104,106,110,103,96,95,124,112,96,118,102,115,106,111,95,110,92,92,96,102,106,109,124,100,107,106,98,101,107,112,108,108,109,99,100,104,104,118,102,106,96,110,106,109,110,109,102,97,113,104,104,99,108,121,107,112,113,107,99,117,101,103,111,119,103,86,100,102,102,99,101,95,122,109,111,118,106,108,89,102,107,99,102,104,99,119,104,102,109,113,100,97,114,106,100,105,103,105,113,83,118,113,92,105,103,106,81,103,100,105,101,101,101,102,95,107,117,119,118,101,117,110,109,114,101,101,98,109,100,104,99,94,105,109,96,120,105,103,125,106,99,105,99,97,102,112,101,103,96,101,103,98,103,92,103,113,104,98,108,99,105,87,99,111,111,104,109,101,116,106,109,104,102,81,109,107,107,110,94,101,114,101,98,104,103,111,107,96,103,95,107,103,112,114,105,128,102,91,101,92,116,92,105,104,106,111,113,123,100,92,110,109,107,104,111,111,97,103,95,91,92,106,106,103,103,100,115,99,97,106,84,82,113,103,99,107,98,103,102,115,108,109,103,111,106,109,106,109,109,111,97,102,117,104,107,86,104,100,103,105,106,105,92,114,117,116,102,109,104,82,108,97,106,115,98,105,96,110,122,117,115,103,112,101,110,107,99,104,110,116,95,101,110,119,102,107,105,99,103,106,109,102,101,112,103,110,105,96,104,102,110,108,95,102,108,101,99,109,99,122,98,109,106,104,105,107,105,106,104,106,109,105,115,100,105,102,98,104,94,94,111,93,103,103,107,112,97,103,107,107,106,110,110,99,100,106,102,102,122,101,108,118,106,112,114,106,102,95,103,116,108,109,108,96,104,102,104,109,100,99,104,100,113,108,114,100,108,111,110,109,105,106,94,111,112,105,95,120,107,94,107,96,102,100,116,100,107,105,108,101,102,102,101,106,111,115,103,113,105,101,98,103,108,104,93,99,104,99,105,109,103,106,110,103,104,100,99,102,98,108,105,109,97,115,111,107,99,106,103,110,101,116,121,103,102,107,107,103,102,104,97,95,103,109,99,109,98,106,105,116,95,101,109,105,106,102,109,94,100,110,75,106,102,109,122,96,113,90,95,107,115,107,107,99,95,121,110,107,106,103,109,104,117,105,92,116,108,106,95,135,110,99,88,107,107,110,109,110,99,95,104,105,109,116,111,117,116,113,110,96,100,102,113,117,104,101,124,114,98,105,96,101,102,115,100,107,114,106,99,95,115,101,109,107,90,88,92,106,109,99,98,107,109,97,95,92,110,97,98,101,106,104,109,95,109,105,112,95,101,98,94,122,93,111,101,103,106,105,102,105,101,103,110,90,108,91,113,95,91,96,108,110,105,97,103,102,111,116,106,98,99,106,99,109,104,108,100,99,105,103,99,92,104,113,96,99,98,103,88,106,103,103,99,97,108,102,103,105,92,108,106,102,96,104,107,107,101,104,106,102,98,113,102,100,99,100,102,109,99,101,112,106,107,112,117,105,103,113,118,114,103,115,112,96,111,89,91,106,96,100,111,99,113,117,118,107,119,102,105,104,101,95,124,95,91,99,113,102,109,104,103,96,112,100,111,110,100,100,102,99,129,92,107,92,111,98,103,102,109,102,102,101,107,103,93,117,113,112,121,110,110,99,93,100,98,98,100,109,111,100,106,105,99,102,114,107,112,93,109,111,111,99,101,105,109,111,100,109,111,111,106,102,108,109,101,105,97,106,96,109,117,103,108,113,101,105,107,118,104,97,79,113,113,103,110,115,103,109,99,115,103,109,117,107,106,98,114,99,98,112,113,113,102,116,113,102,106,97,107,105,94,109,118,100,107,105,103,117,101,101,98,97,111,109,101,110,99,108,102,106,110,105,122,110,108,107,109,111,114,112,100,105,93,100,99,113,108,109,95,107,107,105,106,107,109,108,109,108,101,101,112,99,115,106,100,102,108,113,112,99,112,109,110,93,99,101,101,107,116,124,101,101,101,105,105,110,95,110,111,97,104,106,113,105,109,117,121,103,117,112,103,101,107,108,114,115,112,104,118,107,89,91,96,113,109,106,106,121,115,104,104,103,130,112,105,105,100,95,92,95,107,94,109,111,113,100,117,106,110,102,99,114,110,112,104,109,110,99,102,112,116,110,97,87,108,115,109,84,96,109,104,105,102,94,101,111,102,103,102,102,99,107,102,102,100,122,111,91,119,121,104,111,103,100,115,98,102,106,91,112,103,91,100,96,100,111,122,105,91,102,125,105,106,105,112,123,88,113,106,118,105,100,100,113,110,125,125,109,107,111,107,105,101,115,107,109,105,123,106,104,109,105,112,106,112,97,99,102,97,78,104,102,99,109,109,115,115,110,115,109,110,96,107,121,113,116,108,104,108,91,101,99,126,111,95,108,104,106,93,96,109,99,106,106,105,107,102,106,95,96,114,116,104,114,91,105,98,105,104,105,109,95,103,110,105,102,102,98,101,105,96,102,106,114,107,109,80,115,110,99,108,102,92,109,79,107,124,103,109,101,103,93,115,104,109,96,112,103,102,113,98,108,89,106,115,112,113,115,110,109,113,102,110,93,108,112,112,106,99,111,103,94,104,107,113,110,94,100,99,99,110,107,88,107,105,110,106,111,109,98,100,108,109,101,103,106,116,108,119,117,109,104,105,110,110,96,84,97,98,114,112,104,69,108,116,127,101,104,116,104,107,104,90,97,112,113,111,109,105,121,106,102,96,105,102,96,113,116,97,102,104,111,91,109,102,114,106,120,106,100,113,104,108,103,116,102,110,98,110,101,96,103,83,84,103,117,107,101,109,115,107,118,104,114,128,105,111,111,99,100,112,106,101,102,108,105,106,99,109,94,102,105,101,110,109,101,117,91,93,117,99,108,109,105,102,98,95,118,112,105,110,109,102,103,102,102,106,96,96,93,105,111,105,95,101,103,106,113,112,110,113,108,112,105,96,108,107,109,100,112,104,107,113,116,113,107,108,118,106,99,97,105,108,113,94,116,103,102,105,109,99,98,114,116,108,101,121,105,112,112,109,103,104,107,103,101,108,92,104,112,113,97,97,103,102,107,89,101,105,104,91,105,123,106,103,98,113,103,103,105,112,117,109,107,100,105,101,114,106,108,104,100,99,99,101,100,102,124,100,105,100,93,102,109,110,92,105,107,121,104,96,100,107,110,105,103,113,111,99,98,106,128,121,103,117,99,99,102,117,115,98,102,111,102,112,113,98,102,116,124,97,103,97,93,104,103,104,101,99,101,109,99,97,98,119,109,96,92,105,99,90,113,98,111,105,81,98,101,106,88,99,106,89,88,115,113,99,102,104,103,92,101,104,95,101,103,105,87,121,98,101,100,114,95,105,113,106,103,110,103,105,99,102,105,96,104,103,128,90,122,114,91,105,90,120,98,102,98,102,108,108,104,112,99,113,105,109,111,98,87,106,108,107,100,107,120,94,99,111,99,104,102,92,95,116,98,110,113,100,94,103,114,102,102,95,106,101,116,114,103,98,94,96,104,104,108,114,95,104,102,106,100,114,100,110,106,104,95,109,104,110,106,100,108,116,110,108,111,121,104,82,103,109,78,107,101,108,110,118,89,108,104,104,112,101,104,107,103,94,113,101,108,105,109,65,108,111,105,124,103,103,92,103,107,111,104,103,100,106,106,106,96,83,99,102,111,103,104,95,110,101,110,101,117,111,104,116,110,86,103,107,117,99,98,101,114,111,110,108,100,110,106,117,81,105,114,102,95,95,109,100,107,103,104,111,113,117,110,111,102,97,100,108,100,87,101,109,102,111,108,105,102,104,99,102,97,99,104,100,110,101,96,100,106,104,111,95,92,94,101,95,101,100,107,93,100,113,114,97,110,105,89,99,113,115,111,108,108,107,109,92,78, +506.64398,114,101,98,105,106,113,94,101,96,104,91,104,104,100,96,112,110,110,80,97,128,101,101,92,95,107,99,102,105,103,99,102,93,91,104,107,99,99,106,106,101,121,106,106,118,111,101,101,109,113,102,98,103,106,109,98,116,77,101,113,96,94,93,99,100,111,93,104,108,111,101,113,95,98,95,111,90,112,100,100,99,103,99,113,99,107,101,103,102,103,107,109,103,98,117,116,100,102,108,103,91,105,104,62,90,97,91,111,103,94,100,98,93,96,106,103,99,103,99,109,99,104,117,105,109,104,104,114,100,86,96,106,97,111,94,80,87,102,87,100,106,102,106,103,100,86,104,104,99,113,99,112,104,66,92,97,123,100,117,110,103,99,102,97,107,102,93,97,93,105,110,94,96,94,119,102,100,106,97,101,109,93,98,103,103,108,110,93,99,106,105,101,83,104,89,98,102,101,105,113,107,102,103,98,100,99,96,99,110,110,96,103,98,118,118,100,100,103,110,95,112,108,101,100,89,107,101,96,106,117,106,93,107,105,107,113,102,103,113,111,108,109,105,99,113,119,102,112,106,106,100,97,92,112,98,105,109,96,88,98,91,102,93,94,94,100,101,98,103,93,113,108,109,111,104,112,97,117,96,102,105,113,96,100,101,117,100,116,98,105,94,109,108,106,105,97,110,101,109,102,87,110,110,127,99,110,100,91,98,103,107,111,109,98,114,100,107,102,85,103,105,100,99,100,107,110,91,117,101,110,109,97,105,101,104,104,113,105,107,103,94,107,98,93,96,94,109,95,96,104,92,104,104,94,104,102,95,110,110,108,102,105,99,101,98,101,107,104,101,120,104,103,105,102,109,106,110,79,110,101,105,125,102,102,103,100,97,100,108,92,98,98,111,120,108,107,103,98,99,114,104,108,110,93,102,105,106,107,103,101,106,108,105,87,93,92,96,88,100,110,95,103,113,104,96,109,110,95,114,111,97,103,97,105,108,104,113,109,104,99,106,103,94,111,104,107,97,96,100,114,107,105,99,116,99,106,120,103,114,104,101,107,99,116,120,110,108,97,85,100,109,110,99,93,97,97,105,109,93,106,102,100,108,99,104,98,108,100,90,103,102,111,101,101,101,110,105,97,112,107,103,100,111,101,109,111,94,108,107,103,107,96,99,116,99,110,112,100,111,102,105,107,103,107,92,104,98,104,104,106,111,109,101,117,112,113,126,95,103,109,98,95,112,99,104,106,105,92,103,103,110,102,99,104,105,98,117,76,106,97,105,110,104,103,100,105,100,103,96,99,100,101,112,108,106,99,99,109,111,104,117,85,104,89,96,109,107,110,96,100,119,106,91,96,111,93,104,114,101,96,105,102,105,114,87,100,95,112,107,97,98,99,99,104,115,97,116,106,98,108,92,105,100,107,109,108,89,91,98,99,107,108,95,108,103,100,102,101,108,96,106,102,102,97,106,87,90,102,118,116,94,98,103,101,112,105,103,129,101,120,99,113,92,112,114,95,107,102,106,102,116,98,97,99,98,104,100,111,98,103,111,106,106,108,87,86,100,94,99,110,91,113,109,117,111,109,92,107,109,96,103,83,103,105,122,101,113,101,99,110,106,100,96,98,111,112,105,107,83,110,97,99,105,96,94,97,117,109,94,92,108,114,102,100,98,104,113,100,110,111,105,111,105,118,103,110,102,105,106,105,116,99,106,101,108,99,103,102,106,121,109,105,108,110,103,108,103,105,105,108,114,105,110,106,106,110,97,112,114,116,99,122,112,108,98,113,96,110,97,109,106,109,113,102,98,113,105,103,109,115,105,104,109,106,104,98,112,108,108,103,112,93,109,111,113,103,106,104,112,100,102,99,100,113,102,108,120,110,103,106,110,96,115,100,102,117,114,115,109,115,92,116,108,96,94,112,95,109,105,101,106,90,109,113,103,101,122,109,113,107,91,109,98,101,106,117,103,110,117,103,100,106,107,106,104,99,110,105,99,109,118,98,104,109,94,94,119,94,111,106,101,107,117,110,100,99,108,115,104,115,109,106,103,103,98,90,111,101,100,110,103,104,104,103,101,99,98,102,100,108,96,99,113,106,112,111,109,96,111,103,111,118,107,75,75,96,72,95,106,109,99,116,108,101,95,99,106,108,105,96,112,99,107,109,105,106,111,108,99,108,99,116,111,101,104,95,101,106,102,101,137,124,107,99,102,106,87,99,97,117,105,107,108,103,95,95,102,100,102,116,99,94,109,90,113,121,100,114,103,107,110,97,121,105,117,116,105,100,91,76,102,97,106,108,109,112,105,112,100,113,97,104,98,88,110,111,97,107,106,99,107,97,107,94,96,95,98,97,107,107,99,102,113,113,98,98,107,112,111,103,99,115,110,99,106,108,106,104,110,102,111,101,105,104,107,96,105,109,105,107,98,105,93,108,104,106,91,100,88,108,110,98,108,113,108,110,94,99,117,95,101,101,112,104,96,99,101,103,117,70,121,103,77,94,106,114,97,118,99,84,105,109,110,110,105,96,105,112,94,93,117,102,103,92,116,110,100,116,113,104,116,106,104,96,112,108,103,113,105,102,108,108,91,105,109,83,102,100,116,102,103,100,110,99,104,103,93,100,107,112,98,101,104,102,102,116,90,113,107,95,109,107,102,106,105,98,103,102,113,113,117,122,107,106,99,103,99,107,105,103,104,106,104,132,102,111,107,93,103,110,102,116,111,99,107,121,102,104,96,90,99,107,101,105,107,99,102,120,103,106,112,113,91,103,108,102,100,123,106,103,93,98,93,96,94,87,103,102,90,101,105,93,109,101,100,122,100,98,101,107,100,104,113,96,110,113,101,106,102,113,98,99,103,106,110,90,117,108,104,110,107,102,106,113,101,110,110,102,94,109,96,106,105,99,98,108,105,101,100,106,113,114,100,103,107,106,104,85,111,99,116,101,99,102,105,112,99,103,102,103,113,85,91,106,108,116,111,104,102,96,102,98,102,101,109,89,103,103,114,90,107,95,100,104,117,111,104,95,97,106,108,107,109,110,133,109,108,98,110,112,109,95,100,98,90,109,102,72,90,112,102,109,99,107,100,105,114,106,108,97,114,99,112,102,97,108,106,106,108,100,103,106,104,106,111,94,112,108,114,109,108,95,102,117,124,95,108,103,110,110,102,106,103,108,103,135,93,101,103,108,116,112,113,101,105,108,99,121,108,103,92,110,115,104,108,106,110,98,112,102,107,104,119,115,102,102,117,105,105,98,99,102,100,103,104,113,109,107,92,104,100,109,92,111,98,112,109,99,108,102,110,105,102,104,106,109,82,115,82,97,107,100,93,97,106,109,115,113,106,98,106,108,114,107,98,105,112,98,111,96,111,96,106,92,105,105,104,106,97,107,104,106,95,114,102,102,104,102,107,112,110,97,102,103,102,101,106,116,101,108,86,103,97,101,106,100,102,109,110,102,113,107,109,100,99,100,108,111,105,105,107,99,101,109,103,119,84,121,106,115,112,103,106,110,107,110,105,120,112,118,102,101,101,97,101,106,101,114,94,114,102,98,103,101,110,109,115,100,95,106,97,108,107,102,98,108,107,104,104,96,104,107,99,102,102,102,109,107,101,106,103,119,108,99,106,104,99,105,106,101,90,100,92,102,95,102,117,107,124,100,106,121,111,113,90,95,103,110,117,74,91,98,117,101,102,100,110,109,89,104,100,100,109,98,105,101,98,103,118,98,106,95,90,105,102,106,108,103,105,106,103,108,110,109,104,98,105,101,117,100,108,101,94,113,109,103,98,111,105,87,106,105,104,104,117,116,101,101,105,96,118,117,98,109,109,110,104,107,113,97,103,113,108,102,109,109,105,97,96,92,92,98,106,99,104,112,101,94,109,109,99,104,103,105,99,106,112,101,107,98,109,99,114,103,96,109,109,104,101,105,84,102,95,123,90,102,113,104,99,113,108,97,88,110,101,103,106,110,102,113,87,106,113,113,102,104,102,98,115,109,112,106,99,97,106,105,113,103,101,108,103,99,102,103,111,109,104,107,108,103,104,102,106,100,93,101,91,102,107,97,107,103,107,100,95,107,104,103,104,102,101,104,106,104,115,130,106,98,106,98,104,108,99,113,112,108,104,103,100,119,105,117,100,104,119,103,109,102,99,98,114,103,109,110,113,106,110,113,112,123,114,109,111,114,88,100,90,106,99,112,108,118,101,106,109,102,87,107,113,99,104,91,106,99,105,96,102,97,107,105,136,90,100,102,98,104,109,97,98,97,107,97,102,103,104,112,120,97,103,111,106,100,96,115,119,106,97,102,85,114,110,101,107,97,104,103,109,101,105,110,101,83,112,94,106,101,113,116,105,108,107,107,108,106,105,117,108,112,108,101,99,95,104,96,99,89,103,96,103,99,108,109,107,103,114,106,97,108,93,108,107,94,99,109,110,96,95,110,102,113,102,97,128,120,109,100,110,99,94,113,101,103,95,103,102,93,115,118,108,108,101,94,100,105,105,105,103,111,89,104,125,96,99,92,110,113,87,94,121,106,96,103,105,104,114,118,106,112,100,95,99,95,110,113,116,103,105,96,106,98,109,108,106,106,116,104,94,110,112,92,109,96,105,99,106,100,115,101,106,118,95,112,94,99,101,98,110,117,101,90,92,108,112,107,112,84,109,106,107,105,107,102,112,105,115,101,100,107,94,89,101,87,105,115,125,113,110,108,116,110,116,113,99,109,114,78,91,88,105,99,100,98,122,114,92,99,117,102,106,101,95,120,109,94,106,120,99,113,96,113,110,96,99,108,105,108,117,106,104,107,124,111,96,121,104,108,105,100,115,105,76,90,98,104,113,97,114,109,103,100,106,100,107,105,87,98,96,109,113,104, +506.78464,117,107,122,96,114,104,100,111,110,107,110,101,97,99,113,105,87,94,108,108,89,104,105,103,96,123,98,109,107,100,102,99,97,87,115,87,118,79,101,105,94,88,108,101,100,112,99,109,102,108,102,105,108,107,106,99,113,95,125,84,108,108,109,90,116,114,95,93,99,122,113,103,89,111,96,109,95,109,96,113,103,107,109,99,108,112,93,102,103,98,104,105,107,102,101,103,103,90,104,120,100,120,100,92,89,102,98,100,107,99,93,97,100,102,91,101,101,107,96,105,113,106,135,106,98,106,105,91,106,98,103,109,108,108,109,110,119,104,103,94,98,99,106,104,107,96,121,98,106,107,95,103,105,104,83,106,114,98,99,105,100,102,110,120,94,92,113,73,105,98,111,105,101,104,109,112,107,96,112,105,105,98,105,95,106,101,103,109,121,101,100,124,112,106,94,105,103,96,106,97,98,108,114,100,97,109,108,103,99,100,102,110,114,105,97,98,99,101,92,110,111,103,106,83,97,102,101,99,89,110,109,107,121,113,116,104,99,108,107,99,111,114,95,112,100,87,103,103,113,117,100,82,98,92,111,98,119,116,99,99,94,94,89,101,109,104,93,87,104,98,112,102,95,113,109,107,98,106,99,105,107,112,110,113,116,100,103,99,95,123,100,95,105,107,107,100,107,107,102,109,100,107,101,106,118,109,110,107,106,109,83,109,102,102,102,102,105,99,91,106,100,113,109,108,124,102,131,91,114,108,112,106,115,98,98,105,99,97,103,91,107,105,105,103,109,91,100,107,114,106,127,97,104,98,114,103,105,103,111,114,112,98,108,96,94,108,122,107,100,109,98,103,121,100,119,100,115,100,105,104,102,116,104,103,106,95,114,107,105,95,108,97,99,108,114,97,107,106,106,117,92,103,104,100,96,105,94,109,113,112,103,99,104,101,101,114,103,99,112,113,101,99,104,95,105,105,98,104,102,108,105,107,112,109,103,107,104,108,102,106,108,108,108,98,110,111,98,103,100,106,104,100,113,111,107,105,105,102,111,109,105,101,110,113,105,81,106,109,103,99,103,107,111,96,98,100,117,115,101,122,94,102,108,93,94,106,122,110,108,106,116,118,103,100,101,125,103,110,114,109,114,97,110,88,115,103,102,120,108,100,101,112,97,113,106,103,109,103,100,103,94,88,101,101,123,109,107,107,94,91,95,103,108,95,97,120,104,105,101,108,108,104,97,99,102,111,107,107,121,103,107,122,122,102,102,103,99,113,100,103,138,103,109,111,108,104,107,99,105,111,99,114,117,112,106,109,101,97,101,100,100,108,104,86,102,122,104,116,116,99,104,104,103,111,107,108,106,93,108,109,110,115,112,100,102,107,92,101,83,112,97,107,105,101,123,96,104,101,121,101,119,108,103,112,140,105,95,68,103,115,105,114,96,103,97,111,98,106,103,103,94,111,101,91,104,97,89,76,108,105,94,105,104,101,109,103,104,106,113,105,108,104,113,98,111,104,106,100,107,106,107,104,109,110,109,119,96,109,109,84,108,114,98,92,95,90,94,109,104,101,100,106,104,115,108,100,97,107,99,110,100,108,109,106,100,112,99,104,89,104,108,96,113,113,104,100,96,112,121,122,98,102,104,99,97,113,103,96,101,109,101,118,106,106,115,104,114,107,106,99,103,101,107,108,106,89,104,91,104,97,113,105,82,101,97,99,95,106,112,96,105,96,100,110,87,109,104,109,94,110,111,111,89,102,102,103,111,105,107,102,95,99,111,103,118,103,96,107,111,108,110,107,121,114,106,116,107,106,120,113,102,119,100,107,105,106,108,112,100,114,104,90,113,99,116,107,115,117,119,104,108,112,116,110,95,111,106,112,112,111,105,102,103,117,90,103,100,100,107,104,117,125,105,121,86,101,106,92,115,98,98,109,118,100,98,103,109,109,109,102,93,104,104,102,82,104,104,100,117,104,111,100,99,116,113,106,107,96,104,93,116,115,103,100,102,109,105,112,111,111,115,115,100,106,113,105,122,115,90,100,101,119,123,97,104,100,100,122,101,99,113,103,101,113,99,104,109,109,109,104,106,91,98,98,113,100,104,103,104,116,91,104,95,113,101,99,91,100,90,106,113,109,109,104,104,103,111,88,96,106,99,116,107,110,107,123,107,116,106,87,110,111,88,107,105,108,119,101,105,103,101,107,105,107,95,105,109,92,107,114,97,106,106,99,106,106,98,86,104,109,103,96,115,99,102,108,101,113,104,99,106,101,118,104,107,98,115,102,101,99,95,104,104,107,101,107,102,107,96,104,105,102,100,108,108,106,114,101,113,114,98,108,105,99,97,90,105,107,106,101,116,101,98,102,104,114,91,96,96,105,106,107,108,107,106,101,99,85,105,93,96,102,110,109,96,96,95,102,112,101,98,102,89,108,107,105,106,104,114,105,102,106,92,100,105,103,99,111,106,90,106,100,94,107,98,101,106,105,102,88,99,103,98,89,105,108,91,105,109,108,99,117,117,96,119,95,104,105,98,103,113,110,107,100,99,111,117,75,111,92,114,102,103,114,77,114,102,102,96,107,114,106,95,112,104,99,109,104,90,107,113,106,104,101,103,116,105,100,103,110,108,91,117,100,115,105,112,100,105,105,108,93,115,109,91,106,94,104,106,116,98,109,102,106,109,108,115,99,97,105,89,105,95,115,103,107,106,98,104,92,111,106,110,96,102,117,104,100,109,117,105,121,104,117,103,107,102,124,111,109,103,107,109,105,106,109,91,102,108,106,102,121,93,96,98,100,103,106,109,100,101,104,96,107,106,113,112,104,110,109,95,107,111,110,97,115,90,103,100,98,111,103,116,98,115,104,107,102,105,105,95,97,98,110,103,106,118,98,125,109,104,97,99,109,91,103,104,108,102,98,100,108,107,113,107,102,109,93,115,100,102,114,105,105,93,112,101,98,100,106,96,92,104,106,115,116,102,99,123,94,106,102,108,106,93,111,103,103,93,103,94,88,104,113,130,105,102,100,118,106,103,98,105,102,129,100,111,127,104,111,98,105,110,97,93,114,102,105,101,97,118,127,110,96,114,102,103,107,97,96,89,108,106,106,103,99,104,116,106,107,96,102,110,100,104,104,99,103,99,116,89,105,108,106,108,111,92,111,105,104,107,90,90,109,104,110,93,104,109,113,106,107,91,104,102,100,106,107,101,107,122,98,91,99,117,105,98,106,123,108,103,102,114,116,109,95,116,108,84,108,110,103,105,83,110,95,107,107,103,106,103,95,99,104,99,106,109,102,105,119,111,102,113,111,110,111,92,102,110,100,106,113,100,104,107,101,106,107,113,98,102,107,114,100,98,109,106,102,103,102,102,107,113,113,110,97,84,108,105,105,99,117,112,103,111,107,113,99,110,101,109,95,96,103,98,96,105,118,108,103,105,108,102,103,101,100,106,108,100,111,112,106,98,105,101,109,108,100,112,119,97,110,102,106,107,103,98,107,102,100,128,124,104,107,109,104,107,105,102,107,96,109,102,96,105,113,108,101,97,110,116,105,95,124,104,102,99,96,118,91,93,103,98,112,106,97,101,127,95,98,110,110,98,110,116,105,114,103,93,100,111,103,104,111,115,101,103,99,95,99,100,105,101,106,112,102,104,104,112,101,112,103,101,106,98,105,109,103,111,100,103,111,87,101,111,105,104,98,102,97,103,100,122,91,104,119,98,111,117,107,109,96,98,102,120,96,121,113,97,106,90,104,115,109,110,96,110,102,111,105,93,98,105,102,105,96,101,100,106,104,116,106,103,95,107,98,107,92,97,113,88,110,105,116,110,103,111,120,107,102,101,96,104,100,107,108,101,104,107,101,103,111,109,105,105,102,102,102,100,114,96,105,105,105,103,103,103,102,108,110,102,105,97,105,99,112,108,111,97,102,106,104,88,107,100,112,95,111,104,104,105,95,103,102,96,114,115,104,99,113,108,107,95,104,116,110,103,108,109,96,109,119,101,108,104,99,99,102,104,80,110,107,98,103,103,110,88,102,108,102,111,108,107,98,108,108,97,98,95,109,103,107,101,118,107,105,99,101,106,109,108,99,109,122,102,98,96,101,113,106,98,90,95,99,109,102,105,103,90,105,98,100,107,96,113,103,85,94,117,102,105,106,109,100,110,105,98,138,105,105,111,98,108,113,103,102,97,107,98,101,103,99,102,112,95,107,113,102,106,109,112,126,109,97,104,103,98,110,95,100,99,106,113,109,104,98,109,85,102,111,93,101,113,84,97,98,102,96,100,110,98,96,111,103,102,102,97,102,99,95,102,108,99,112,103,91,101,106,105,104,106,96,117,99,98,98,107,106,106,100,114,111,106,106,97,102,107,93,104,106,96,99,102,101,113,101,97,114,101,101,127,108,101,92,83,87,111,97,112,105,111,103,97,104,105,106,105,100,105,109,95,92,105,106,73,109,96,104,102,103,97,111,99,111,120,108,108,103,99,98,98,104,132,102,106,91,114,118,96,110,105,104,101,115,108,102,100,101,99,112,105,109,102,89,108,101,112,101,96,111,99,98,98,113,111,101,102,103,101,111,113,97,102,109,89,117,114,109,108,95,116,101,108,99,101,98,99,116,88,106,99,102,107,101,105,108,104,105,110,98,105,106,108,106,99,97,108,101,108,101,108,97,99,115,105,102,96,95,109,67,96,117,104,103,96,113,117,98,108,88,105,87,103,104,97,103,100,98,102,113,105,104,114,111,103,106,98,96,101,102,107,106,95,102,104,118,96,112,104,103,115,95,105,95,112,108,105,96,116,103,109,101,110,109,101,117,112,106,124,103,95,114,102,105,105,110,112,116,90,95,94,105,84,104,76,109,85,105,105,86, +506.92529,112,112,106,93,90,96,110,91,99,98,91,102,102,106,106,103,113,98,107,105,114,101,96,90,96,109,103,99,107,124,104,107,91,105,106,104,107,113,97,109,93,108,90,93,106,99,103,127,100,88,94,101,100,101,96,117,106,112,105,96,113,106,101,112,91,113,107,114,114,108,100,99,104,115,107,112,91,98,115,102,103,96,121,104,88,100,92,112,109,116,108,108,100,110,96,114,94,102,109,79,103,108,105,101,107,88,104,108,104,99,106,105,109,101,95,109,100,105,104,120,117,99,111,113,119,113,109,97,105,94,94,111,109,113,121,111,96,94,100,97,98,105,114,113,98,103,110,109,103,103,104,106,106,106,94,108,101,103,104,101,111,99,106,96,109,102,109,88,99,104,121,101,102,94,112,102,106,98,104,120,99,104,111,108,103,106,101,88,109,101,104,96,111,91,108,103,111,117,108,108,103,110,107,110,102,112,99,117,114,98,93,100,110,103,97,93,98,108,98,104,106,110,109,102,107,111,112,98,117,125,107,104,107,104,103,105,107,115,76,109,105,104,95,104,88,84,103,110,85,109,103,105,113,99,109,117,108,107,101,103,107,106,108,99,91,109,104,103,104,104,111,99,111,97,106,102,109,111,109,105,100,105,95,106,100,96,106,113,95,107,98,99,102,110,104,109,114,117,117,107,104,91,103,105,104,115,105,108,102,108,109,100,105,106,106,103,108,97,103,103,108,102,96,103,95,102,100,95,104,110,112,88,103,112,86,106,112,105,107,104,95,105,103,107,94,101,107,112,109,111,115,110,109,98,119,105,116,113,91,101,106,105,112,104,98,104,107,110,101,110,125,111,111,114,103,98,99,108,89,116,109,108,98,110,119,110,108,102,106,91,115,101,96,109,103,108,101,114,104,109,105,94,118,101,109,108,98,109,104,100,105,98,136,120,108,107,95,106,107,97,100,105,113,102,98,105,102,105,106,99,99,115,100,103,118,102,101,112,109,103,114,103,90,109,99,103,104,102,109,125,100,104,105,110,96,111,103,95,113,90,108,109,104,102,110,107,107,108,107,106,107,109,117,101,104,109,107,124,113,90,110,113,107,109,89,114,111,111,93,101,103,103,104,100,103,105,112,97,119,100,116,114,104,105,99,104,102,105,96,96,100,101,109,107,103,111,110,110,108,102,100,133,112,101,102,106,109,114,97,115,105,108,104,105,118,104,102,88,105,112,113,107,110,84,103,110,109,114,117,117,99,138,103,125,104,97,104,102,102,105,105,101,107,108,105,100,126,100,106,116,90,104,114,87,122,88,105,100,108,103,108,100,103,105,95,104,105,117,105,102,140,111,112,114,108,116,107,117,101,106,108,105,109,110,99,114,101,98,117,105,113,108,108,110,96,100,99,101,121,110,106,113,106,112,100,94,87,100,105,111,108,119,104,106,100,102,98,100,106,102,102,125,111,88,98,104,121,98,122,102,102,103,108,107,103,107,108,109,103,110,107,97,102,111,95,99,103,90,115,110,110,110,124,103,99,102,107,108,101,99,111,114,114,99,96,97,93,111,103,105,103,104,112,100,100,116,94,96,100,93,99,112,101,109,106,112,99,105,105,90,114,95,106,95,96,95,120,109,109,109,112,96,109,114,107,103,100,100,109,102,98,114,110,97,79,105,124,110,118,101,95,100,104,110,103,109,114,105,106,109,110,116,114,108,98,109,117,107,106,121,103,113,101,101,107,103,107,115,113,91,106,111,109,98,94,109,107,90,87,109,109,101,110,102,118,112,99,105,107,117,106,104,109,114,102,124,112,99,112,100,100,102,105,115,99,98,106,103,99,104,103,121,113,101,113,123,113,118,110,106,101,96,103,76,95,130,110,110,115,103,109,107,107,86,102,111,106,93,115,101,98,107,110,87,114,102,96,92,100,104,106,109,108,93,121,111,105,108,111,116,112,104,118,104,106,101,101,105,112,116,94,111,100,114,98,95,109,96,104,106,101,107,114,104,98,117,96,114,108,117,116,116,104,110,106,89,106,108,97,104,115,97,104,104,110,110,77,109,106,101,112,90,82,100,103,99,99,107,90,101,95,113,109,110,102,103,101,98,100,104,113,118,108,116,107,121,94,100,102,100,109,95,103,104,99,100,121,101,93,130,106,120,105,105,100,114,104,107,107,102,112,102,120,99,102,96,88,101,95,103,81,110,108,100,105,107,115,99,95,100,96,109,109,105,99,111,103,109,106,110,121,114,117,99,100,109,118,113,84,105,98,92,101,108,108,101,105,111,108,117,91,97,107,114,104,126,96,114,99,112,108,95,110,95,123,111,116,113,99,99,104,101,109,103,102,96,101,111,99,113,96,113,101,96,110,102,113,107,104,108,107,112,94,101,98,114,105,110,101,107,108,88,105,110,103,117,104,92,92,97,94,105,111,101,107,105,104,115,111,102,96,98,91,102,110,88,106,116,108,104,89,100,111,110,101,101,96,109,112,110,101,112,105,102,100,114,101,104,101,82,97,117,111,95,97,98,96,103,91,110,109,110,111,94,94,107,87,114,109,102,96,106,71,105,99,109,93,97,109,113,110,133,100,112,109,106,94,105,94,121,100,114,106,101,91,97,99,94,96,104,99,108,91,94,98,99,106,106,100,115,120,109,103,102,104,102,104,102,112,94,97,119,96,103,103,109,116,105,115,108,107,102,109,110,95,106,86,103,105,107,102,104,112,93,108,117,106,110,106,106,108,112,115,101,115,100,115,115,101,107,111,109,104,101,119,94,93,105,114,108,107,117,107,105,102,107,116,102,105,97,88,100,109,84,113,108,110,102,95,104,107,113,105,102,99,106,109,102,106,116,99,124,101,110,96,98,105,96,79,114,125,103,109,116,100,106,102,107,106,109,99,107,96,111,110,117,96,113,109,106,101,114,102,100,104,106,99,95,112,104,106,103,107,72,112,104,105,120,98,116,97,102,104,110,102,111,101,111,99,101,121,105,106,95,115,110,107,100,102,100,108,101,109,102,113,110,101,99,95,102,91,104,112,91,102,105,103,102,111,103,101,104,109,103,106,109,87,108,105,106,110,113,111,104,117,104,116,98,117,100,106,108,100,111,111,98,99,103,98,107,100,94,95,103,108,94,112,94,96,104,98,104,99,102,77,103,102,107,110,107,102,102,108,99,97,111,111,96,108,107,99,98,112,101,104,79,99,98,111,88,102,103,98,102,106,99,126,98,118,106,101,109,113,102,109,103,104,104,108,98,112,94,87,105,113,104,109,100,109,106,121,100,98,109,110,110,120,95,99,102,96,104,91,106,95,124,98,105,108,97,100,134,96,92,99,109,108,105,109,114,103,117,107,121,105,109,99,91,101,94,109,98,110,109,108,120,102,106,103,111,94,103,100,95,109,90,114,106,101,111,100,108,102,107,105,104,113,107,107,110,105,108,112,104,99,99,111,92,103,99,100,105,115,106,108,107,100,100,108,96,119,107,100,89,108,98,101,105,105,100,110,107,106,104,109,94,101,108,106,115,107,74,109,103,99,106,96,100,102,104,106,114,109,116,99,107,109,106,96,99,81,102,96,103,98,103,104,113,99,101,98,105,99,99,107,101,105,104,104,98,108,98,95,96,98,106,104,104,99,104,94,110,108,102,102,102,95,109,103,110,106,109,112,108,75,95,101,104,113,107,107,102,105,111,113,103,102,106,104,103,103,97,100,105,93,105,114,101,130,106,113,91,102,100,118,95,118,104,81,107,104,99,107,105,102,102,107,97,112,107,92,96,101,106,109,104,106,113,100,106,110,101,110,106,102,103,96,100,112,106,85,112,118,92,120,99,106,109,109,100,105,101,78,90,128,101,97,107,106,120,100,117,107,109,111,103,115,98,105,104,107,102,96,100,105,105,113,99,96,107,117,111,107,101,98,108,101,106,119,104,82,99,92,103,104,99,112,107,107,102,114,104,104,99,112,103,94,91,109,112,99,98,109,105,106,98,105,93,105,101,103,106,100,108,94,101,108,105,99,110,105,104,107,119,90,104,113,96,114,92,98,98,87,118,107,108,99,121,103,111,104,105,115,105,100,104,99,111,95,102,100,99,111,99,109,105,102,102,113,110,94,98,107,104,95,103,106,115,114,106,103,106,110,83,110,104,104,102,96,108,102,93,97,110,96,117,102,110,103,106,107,105,109,96,101,105,98,101,116,107,110,101,100,103,96,105,106,109,104,104,108,106,88,116,93,101,94,100,108,111,101,97,98,106,110,107,105,100,91,99,116,104,111,104,102,103,96,100,117,125,91,85,110,94,106,98,99,106,94,103,107,99,115,107,107,113,93,104,109,107,101,99,111,106,103,100,101,107,111,106,109,105,107,103,104,105,103,107,100,107,107,97,103,102,104,95,96,109,107,111,122,108,105,73,99,106,96,103,99,115,100,105,116,103,110,98,96,102,95,109,94,96,101,104,116,106,111,115,93,112,108,112,99,108,103,110,106,95,102,102,105,102,110,84,107,92,109,112,103,68,105,109,112,108,95,108,102,93,106,95,93,108,116,117,99,107,110,115,110,100,100,95,98,109,114,107,108,101,105,101,109,102,102,111,92,106,99,108,108,110,100,101,103,116,103,106,106,104,107,103,100,87,110,108,115,106,95,116,119,94,113,103,102,108,99,112,112,117,112,112,96,107,103,105,106,97,106,89,102,98,103,84,92,98,99,98,106,104,115,113,108,110,96,108,96,100,100,113,93,112,99,116,96,104,135,87,104,102,94,101,111,100,101,105,98,108,103,112,109,108,104,120,107,106,108,103,109,91,98,96,105,113,98,117,98,103,109,102,105,112,112,112,117,94,124,92,91,100,103,90,115,90,97,108,103,113,101,98,97,111, +507.06595,128,94,95,96,102,101,120,99,102,102,72,91,101,93,103,105,103,127,102,91,95,100,106,103,105,96,102,122,92,121,90,96,102,99,110,107,100,97,106,101,100,98,108,91,106,114,115,113,95,100,99,108,108,98,98,84,106,101,94,89,104,102,98,93,105,95,101,104,109,101,101,106,103,102,92,98,104,88,117,99,93,97,98,101,95,93,108,104,111,107,120,108,102,91,102,103,103,102,101,101,104,104,96,100,104,89,105,108,91,95,93,99,112,110,101,79,98,109,97,100,89,109,100,103,98,107,107,117,113,104,97,97,98,101,94,91,108,130,96,101,101,105,99,90,108,93,95,106,90,108,99,100,95,100,97,92,95,100,89,94,107,92,108,111,102,108,106,107,102,95,96,102,91,107,119,92,106,101,110,101,98,103,101,100,104,67,95,92,85,107,104,91,113,118,103,105,98,97,109,90,99,112,114,96,101,104,103,114,106,119,93,105,99,111,101,106,99,99,104,103,92,100,106,109,101,121,99,132,96,108,107,103,110,103,139,97,108,108,106,104,98,110,97,109,99,108,92,97,104,101,99,107,105,96,88,105,100,112,98,113,96,113,102,104,102,108,105,88,107,105,109,97,108,102,124,94,99,106,114,106,99,105,103,109,103,102,109,110,109,99,98,104,111,96,100,113,102,98,101,99,98,113,107,116,101,123,108,107,98,101,93,115,90,112,91,103,116,101,99,92,98,107,110,123,108,102,99,104,94,104,110,101,113,100,98,106,105,102,86,110,109,82,108,96,107,107,98,100,121,104,94,96,106,99,102,99,104,105,99,105,97,101,99,106,112,109,89,111,95,104,104,99,99,107,104,105,99,107,106,101,110,102,104,95,128,99,95,102,111,109,109,89,106,101,93,98,99,109,104,115,106,100,97,97,100,91,90,98,102,93,95,98,106,96,111,99,98,76,116,108,86,101,103,119,103,103,110,110,107,108,99,105,96,96,101,83,103,105,100,102,100,106,102,92,96,101,108,108,111,103,104,113,99,113,99,103,108,105,109,97,105,109,104,104,97,104,95,97,122,107,105,108,108,99,85,95,102,116,114,86,105,105,112,114,102,108,106,101,106,90,90,100,99,110,100,99,99,109,100,94,100,97,107,100,106,107,106,97,108,105,107,100,103,101,105,106,113,102,105,100,101,103,95,95,108,107,107,110,107,97,106,108,106,103,98,107,107,96,109,107,90,107,108,114,110,114,114,101,100,111,101,103,99,100,102,104,108,97,108,98,101,102,100,98,72,103,105,107,96,102,92,102,100,109,109,110,101,89,110,103,112,99,112,95,96,99,107,106,105,97,93,102,105,104,111,116,105,99,112,92,95,96,117,98,117,94,95,108,103,103,105,90,105,102,108,96,113,116,85,107,105,103,99,109,109,102,104,105,90,90,110,105,106,94,103,107,108,100,99,115,98,112,103,107,104,96,105,106,107,101,99,99,102,101,100,108,97,107,107,113,101,105,92,105,102,100,104,97,109,102,108,109,104,107,106,103,104,83,105,103,100,95,102,95,107,97,101,105,95,104,103,116,96,105,71,99,104,106,112,100,98,99,96,108,112,106,118,107,105,111,108,104,103,106,106,116,115,106,95,102,93,101,96,111,117,104,105,98,103,95,116,108,98,102,97,125,83,108,105,101,105,111,99,99,102,105,110,106,99,106,96,112,108,103,96,99,96,110,101,102,106,114,98,94,86,107,85,103,106,104,98,99,108,113,110,107,111,107,110,105,100,114,97,123,105,95,120,100,103,103,98,99,94,114,110,93,117,102,109,112,109,111,91,100,107,103,101,117,106,105,105,119,98,109,103,98,116,114,92,100,102,111,100,106,119,101,98,99,99,99,100,111,105,113,103,103,105,105,102,115,97,113,102,85,100,119,84,95,101,102,110,108,103,117,90,101,108,119,98,94,102,105,111,98,116,109,86,98,104,100,111,105,103,122,98,97,105,90,98,98,84,103,109,96,108,105,114,109,112,108,104,113,92,104,108,111,104,96,73,109,93,111,101,93,113,105,96,112,106,103,100,98,107,104,100,92,95,114,102,92,105,107,107,131,107,113,101,87,105,101,112,117,117,109,102,99,99,97,100,96,110,102,112,103,105,90,106,109,108,107,105,105,108,99,116,107,109,114,112,98,124,116,101,109,100,100,112,90,108,96,112,100,111,100,100,111,102,103,107,92,98,102,115,108,110,103,99,108,97,101,115,101,98,107,115,107,107,99,96,108,101,131,104,90,113,101,95,100,96,109,109,113,107,108,103,99,94,104,108,94,95,95,107,104,104,108,105,126,103,99,106,108,109,96,101,94,99,114,108,112,104,102,100,98,106,93,90,100,97,95,103,120,102,101,116,112,83,110,83,108,102,109,103,114,101,113,97,102,104,88,95,109,91,104,102,108,84,109,98,105,116,93,128,101,116,109,107,83,110,109,106,104,99,103,102,108,95,106,112,101,108,107,111,114,84,94,91,106,107,102,101,107,107,107,104,99,110,116,115,104,112,128,93,97,108,107,93,105,103,109,105,108,106,89,100,103,105,104,109,108,110,88,116,105,101,103,102,94,104,98,119,114,112,109,98,122,102,104,115,102,85,98,101,88,103,107,114,97,100,96,98,105,108,91,108,102,107,95,103,100,102,95,104,96,92,111,114,95,102,111,94,102,113,90,106,112,111,104,104,112,98,113,105,91,109,106,100,107,111,95,105,102,111,110,105,109,108,107,101,111,100,93,107,99,119,131,106,102,97,102,109,106,113,104,91,104,90,105,101,108,106,103,100,95,103,96,101,95,92,101,102,107,100,98,101,108,94,111,99,105,83,102,112,106,101,106,94,98,103,114,99,105,100,119,108,100,107,100,100,105,106,99,107,109,116,112,97,106,102,127,97,105,95,105,104,104,98,96,107,109,96,103,106,110,111,106,94,95,99,117,100,91,112,93,103,109,108,101,96,105,100,97,108,108,104,109,91,100,107,103,106,107,98,108,103,110,109,91,103,113,108,108,105,95,105,103,100,106,126,98,88,114,102,109,112,105,92,105,113,103,98,106,100,91,106,84,114,116,117,103,87,102,113,103,120,100,101,106,110,109,97,100,99,104,103,100,111,105,103,106,99,99,115,112,100,109,116,107,99,99,88,102,101,96,104,102,106,109,99,99,90,102,83,105,110,112,104,108,118,104,109,104,103,103,98,120,95,89,113,102,108,110,92,91,106,100,121,105,105,108,109,110,108,100,94,91,102,101,108,81,101,110,104,107,92,109,110,87,120,103,111,107,107,107,106,92,99,113,106,103,85,105,99,110,102,104,100,106,103,102,103,106,101,105,108,98,105,113,102,107,95,95,94,101,116,106,92,113,112,110,104,108,96,117,108,103,105,98,109,101,100,94,107,102,95,112,104,113,113,105,94,104,103,104,103,107,100,114,95,93,105,99,110,95,110,97,106,95,85,120,108,106,99,101,109,112,91,105,99,93,103,100,108,105,112,101,110,116,91,110,94,108,109,110,100,100,97,96,108,104,99,98,96,96,99,111,96,104,110,84,98,104,104,115,101,95,115,102,98,99,90,98,110,110,94,97,100,97,117,117,98,102,104,81,105,106,111,96,107,106,107,96,103,102,95,93,104,104,106,105,98,113,108,105,108,92,85,105,114,98,101,99,97,103,107,92,103,116,103,103,112,102,94,101,109,107,117,102,106,108,111,111,99,118,118,110,86,104,110,103,108,107,104,125,95,96,102,96,102,96,103,102,100,113,108,100,109,111,95,121,98,102,104,103,101,104,101,91,105,88,102,114,95,99,111,117,105,106,98,87,110,96,103,99,113,101,108,109,105,109,96,102,109,112,114,99,108,105,105,105,96,116,102,105,97,98,102,97,97,109,99,117,113,97,109,106,102,103,98,114,101,105,84,110,98,107,109,97,104,110,104,105,103,101,101,106,79,102,100,93,107,95,114,101,96,99,102,109,109,111,95,100,70,99,98,98,108,101,116,98,103,103,93,100,100,110,95,104,75,98,108,109,102,112,95,89,104,100,98,110,111,104,107,91,107,109,104,110,92,106,109,103,104,116,110,99,100,99,100,104,97,99,104,105,105,95,118,90,111,110,114,94,110,75,106,111,110,106,104,100,103,106,111,79,96,107,106,125,99,113,100,92,111,96,99,99,97,109,103,94,104,117,113,81,96,103,99,107,106,100,102,104,108,108,100,116,115,102,100,121,110,101,109,111,113,104,111,91,109,113,106,109,103,96,100,103,104,108,108,116,102,102,110,118,104,112,106,107,104,99,112,93,93,96,107,103,107,110,90,99,85,121,106,102,100,106,106,109,108,94,110,104,101,112,94,115,107,104,110,95,96,90,103,98,95,106,104,110,107,88,107,102,97,89,99,99,96,111,111,123,98,106,104,103,102,99,99,105,98,98,97,98,99,104,96,107,100,100,104,110,100,105,113,102,120,99,103,116,101,94,90,100,94,107,105,100,122,115,100,98,102,98,109,106,120,106,104,98,108,107,101,90,102,98,104,102,105,100,93,97,103,104,101,107,99,103,106,100,79,105,121,101,111,108,107,104,102,105,97,101,126,105,111,119,105,95,113,94,115,112,77,106,106,70,100,107,87,109,106,73,97,96,98,74,110,98,109,101,100,108,100,97,108,100,102,112,100,105,120,100,99,105,109,117,106,102,109,103,108,111,96,82,106,104,98,107,106,111,123,92,105,98,125,78,98,106,102,92,105,85,94,108,116,82,108,95,113,108,83,105,87,99,95,98,106,94,110,97,103,106,101,98,98,97,111,112,105,111,115,90,84,96,80,88,114,111,114,123,98,87,111,106,95,95,97,108,98,98,105,100, +507.2066,101,106,100,103,113,95,94,102,96,112,89,102,95,91,99,110,116,80,101,100,104,99,104,100,126,100,110,102,89,104,98,106,100,103,100,93,98,99,108,104,99,113,99,107,103,107,91,95,102,107,102,105,110,100,92,114,105,91,122,91,110,96,91,78,117,100,80,99,103,99,106,108,102,110,105,104,102,96,104,109,102,104,85,98,96,98,97,109,117,88,105,97,97,111,88,104,103,108,102,92,102,99,102,107,96,105,104,109,88,99,97,103,99,106,116,109,101,103,110,101,105,105,101,104,101,91,102,91,112,137,109,102,101,97,108,113,104,103,102,103,115,108,127,95,98,114,109,99,99,94,94,99,103,90,99,100,99,103,109,110,110,106,103,107,107,103,103,103,104,102,106,111,107,103,110,119,110,103,108,104,92,98,107,110,102,98,102,102,105,97,99,102,99,106,109,91,105,98,94,102,105,107,95,103,99,100,111,81,116,103,108,103,108,104,98,111,99,105,99,107,97,106,106,94,94,103,102,101,109,99,105,101,88,102,109,95,112,113,103,110,97,94,99,108,113,79,111,109,105,92,102,112,101,99,109,80,85,108,93,108,105,96,103,104,93,93,99,127,121,101,95,99,108,106,109,100,108,121,90,100,95,109,109,101,111,110,92,112,104,100,95,97,98,106,106,109,101,103,112,101,108,109,100,105,99,102,113,103,111,109,87,108,116,105,109,102,112,95,114,100,92,100,110,119,109,99,105,97,111,117,113,102,111,99,112,104,117,106,102,100,109,97,94,105,105,120,112,103,99,111,100,106,107,107,109,116,111,115,102,122,99,104,104,89,99,103,103,110,98,105,101,111,115,102,113,92,114,105,96,103,110,105,107,114,105,114,110,105,107,102,110,86,116,99,100,106,105,102,102,113,103,106,101,104,106,92,98,109,113,104,102,106,90,119,94,101,108,106,107,101,96,111,101,104,107,100,102,103,99,105,107,111,111,100,104,103,104,106,114,107,95,99,99,109,99,106,111,95,94,110,110,101,111,114,107,79,105,111,107,99,109,109,105,101,113,103,104,109,111,102,98,98,107,97,90,103,108,96,106,114,99,94,115,105,100,110,109,102,105,102,119,102,101,101,92,107,95,105,92,102,105,98,112,104,112,106,91,102,116,94,108,112,106,105,110,98,105,107,113,105,109,107,114,109,101,105,120,114,106,104,105,105,109,115,130,111,94,98,107,104,98,105,92,98,122,101,108,97,103,89,109,107,114,96,98,106,109,98,106,107,104,114,107,106,101,91,100,99,107,106,99,110,103,97,97,108,99,98,105,107,120,110,99,96,96,105,107,104,108,103,107,106,96,91,107,111,111,108,107,109,101,98,100,97,95,95,108,106,103,105,101,108,100,99,120,102,103,117,112,99,115,110,92,103,113,107,101,120,108,107,104,101,94,101,95,106,106,98,106,105,104,109,110,105,93,98,95,110,111,107,109,112,112,89,104,116,108,113,101,104,112,99,129,106,97,101,109,96,121,94,116,102,102,109,114,105,103,109,111,114,106,113,98,98,101,111,93,108,128,104,98,99,103,104,104,105,105,98,117,93,99,102,100,104,112,109,104,87,101,104,112,103,105,113,124,106,120,114,106,121,119,104,107,116,100,105,108,113,107,91,110,98,102,99,108,106,103,123,103,108,101,118,106,108,95,107,110,103,103,99,112,100,111,103,101,108,96,110,108,109,100,102,106,108,96,103,107,103,98,100,104,100,106,91,94,113,114,122,117,102,103,108,103,109,105,119,104,89,122,107,105,107,114,110,114,103,96,108,100,103,104,102,96,108,116,114,102,100,101,113,117,100,90,92,117,105,108,98,106,90,96,107,106,102,105,105,109,97,104,107,109,118,94,100,105,104,104,96,111,107,110,102,112,114,102,99,112,100,104,109,103,97,103,105,94,116,98,99,108,111,93,100,106,109,93,98,98,108,102,117,100,106,102,103,98,102,107,100,103,121,117,126,101,111,106,116,100,108,98,89,102,106,107,107,108,110,105,107,111,111,101,123,103,104,108,101,101,111,97,102,95,103,105,112,94,108,99,113,106,97,108,120,105,108,107,104,103,104,103,106,100,110,107,108,98,101,111,97,105,106,110,106,107,105,87,104,104,100,99,105,105,95,112,113,113,100,119,114,97,111,109,97,97,97,95,104,101,98,103,97,113,104,109,95,104,114,105,96,111,99,94,106,102,95,98,107,107,100,107,103,111,106,91,114,102,91,96,114,102,107,94,91,102,105,104,97,98,108,108,111,97,90,97,103,104,116,98,107,103,106,108,109,106,91,113,110,112,106,106,96,95,112,120,106,121,98,113,99,108,107,93,76,95,105,107,101,105,114,101,111,103,103,95,106,105,103,110,110,106,107,92,97,103,117,112,111,107,93,103,111,108,118,93,102,103,122,97,109,101,89,108,108,109,112,110,110,115,101,112,106,108,112,106,109,104,115,119,109,104,102,105,95,109,107,106,98,108,104,113,115,95,88,121,99,107,100,106,106,105,101,109,107,109,102,109,105,112,110,110,102,106,103,113,114,83,114,110,103,100,101,109,106,104,106,101,98,106,106,105,97,109,94,110,106,102,103,106,117,100,109,114,93,114,94,107,121,113,101,110,99,100,101,104,117,106,111,120,100,117,97,108,104,109,113,113,112,113,97,113,107,110,108,106,105,98,107,106,106,112,100,103,89,112,109,110,105,107,89,101,101,120,107,103,106,102,104,110,105,97,108,106,109,99,101,104,117,99,104,108,104,120,123,92,117,95,105,112,102,108,110,111,98,114,102,103,103,106,103,105,104,106,106,121,113,108,100,97,100,111,108,101,105,108,111,109,99,86,108,106,116,116,97,100,99,105,97,96,101,107,108,105,113,106,100,104,92,89,109,129,113,98,98,107,108,89,117,97,104,119,110,102,116,98,117,97,96,112,105,100,107,96,93,108,102,100,106,98,104,104,110,128,98,108,105,103,103,105,103,99,105,104,98,101,110,111,109,99,103,99,111,97,93,114,105,104,113,99,104,103,113,108,111,92,116,124,106,104,116,99,108,101,106,102,104,116,104,111,98,94,95,104,104,109,108,105,114,108,97,98,98,108,117,100,108,102,101,101,109,91,95,96,102,102,101,102,95,108,101,114,100,99,98,97,107,101,110,99,110,107,126,104,92,106,101,104,100,108,111,94,80,89,112,105,103,108,102,115,108,105,104,106,112,117,118,111,96,100,110,100,109,111,120,103,113,104,102,102,106,111,91,101,106,106,109,91,113,123,113,102,109,117,99,112,107,92,93,99,112,117,107,105,105,109,106,112,101,109,116,114,98,90,106,113,98,99,110,107,99,105,105,98,107,97,116,111,102,96,105,95,102,98,112,110,94,108,96,102,105,98,108,118,100,100,99,105,95,114,95,111,108,107,109,109,109,101,108,104,102,98,105,107,100,106,113,110,109,136,99,105,106,99,111,102,108,106,108,92,103,99,125,100,100,95,114,91,107,99,106,117,102,110,106,112,101,104,103,95,111,108,106,111,101,104,108,117,99,106,102,109,95,107,105,116,106,93,111,107,104,99,99,96,116,114,99,102,79,110,98,111,110,100,113,99,104,94,106,81,105,101,104,107,103,104,115,96,111,99,116,106,103,105,110,91,102,101,98,99,105,106,100,110,105,112,101,107,103,109,107,99,113,99,104,103,101,112,110,95,101,102,103,111,102,105,99,121,111,106,96,89,101,110,99,104,105,109,102,100,88,114,96,101,98,94,107,109,79,112,108,115,103,117,101,108,102,106,99,97,97,89,112,117,101,93,105,102,111,112,111,119,108,113,104,88,99,102,108,112,130,130,101,108,103,103,99,102,102,107,103,113,98,104,111,102,106,105,112,102,100,100,97,105,116,110,98,114,110,110,97,102,107,109,100,102,106,87,121,96,111,104,105,114,100,92,105,83,108,99,100,111,98,101,117,103,108,104,105,99,104,112,105,109,95,95,102,113,102,109,101,104,95,111,107,109,95,107,117,98,101,102,103,117,97,110,97,101,108,96,96,123,106,100,100,77,113,107,100,102,109,115,101,108,108,112,98,95,106,110,102,95,72,102,115,100,95,83,113,110,94,94,107,105,95,94,105,105,107,109,113,102,96,113,100,113,109,106,107,109,117,106,107,100,100,103,116,101,113,109,106,111,98,99,109,109,95,109,111,106,105,102,91,104,107,120,72,100,124,109,103,102,105,95,108,106,114,109,107,98,99,106,93,65,107,117,106,99,99,103,118,113,114,122,107,103,97,113,110,96,113,109,101,102,101,107,95,97,107,104,115,102,106,103,104,125,120,109,108,98,108,99,104,77,107,81,122,108,112,105,107,125,75,93,104,102,115,111,95,107,102,103,95,99,102,97,101,99,96,106,108,100,100,106,107,95,96,104,105,101,100,101,114,104,93,99,95,107,97,92,113,107,102,102,101,101,120,105,104,114,104,100,109,109,108,102,109,103,103,107,111,95,101,108,99,113,111,105,108,104,84,111,104,98,97,116,109,102,109,108,113,110,104,103,102,116,117,117,113,100,95,104,112,104,98,97,109,109,116,101,93,108,104,100,97,104,103,105,73,111,98,113,86,99,86,112,101,106,98,96,103,107,89,92,99,104,89,102,136,102,89,113,109,117,112,109,98,105,107,100,109,106,104,117,103,92,96,106,98,110,102,99,118,102,94,96,106,104,98,111,105,104,102,108,116,104,104,108,95,119,101,102,114,104,110,109,100,93,124,92,107,91,99,100,105,92,87,113,88,103,103,67,113,102,105,107,99,104,110,109,119,91,98,106,101,100,89,111,118,101,97,101,103,113,106,104,109,104,93,114,115,104,83, +507.34726,110,98,100,106,110,83,110,100,94,98,98,95,107,99,111,108,91,107,145,92,108,114,99,100,112,91,102,106,98,108,113,105,103,112,111,104,107,99,106,103,106,95,110,107,82,113,92,96,91,102,128,102,95,98,94,107,102,108,106,95,106,94,103,103,112,111,104,98,111,100,101,110,99,106,98,122,81,95,117,109,89,105,98,105,80,101,106,110,117,88,110,114,91,119,102,100,119,114,105,96,99,106,111,98,90,100,84,114,100,113,99,95,110,102,109,111,97,115,101,114,104,112,122,101,107,104,96,101,103,95,103,104,103,112,114,99,95,107,101,104,99,104,105,99,103,112,119,101,119,99,95,98,104,89,92,103,112,110,107,102,112,99,106,112,110,99,107,96,118,99,99,103,101,100,113,90,106,99,114,104,106,115,107,109,103,99,96,107,108,113,123,123,96,110,111,99,105,112,108,103,97,94,101,102,104,115,113,101,110,105,108,116,103,96,93,107,104,100,114,108,102,109,107,104,113,108,104,98,90,114,104,101,109,104,105,107,110,102,113,101,103,98,100,96,109,102,97,103,106,108,107,108,95,118,98,105,86,111,125,108,102,108,110,103,97,114,104,99,101,113,108,111,102,105,114,106,108,111,98,106,112,100,107,120,101,103,104,98,97,115,101,98,108,109,111,104,105,91,109,104,102,108,108,86,81,109,106,105,115,108,92,116,102,98,116,107,99,88,112,114,102,108,110,93,109,87,109,111,103,118,95,112,108,102,98,114,111,114,98,98,100,91,109,98,108,111,110,98,108,106,102,105,105,104,101,99,103,104,107,76,115,109,99,97,102,103,104,103,103,106,106,109,108,100,98,105,107,93,106,107,110,111,106,103,114,87,111,121,108,104,108,105,98,108,105,98,96,104,99,109,107,111,92,101,93,107,101,110,113,101,107,110,102,102,112,108,94,113,101,98,98,107,92,108,112,99,106,75,108,114,100,133,106,105,105,119,100,108,107,99,118,105,107,110,106,97,106,101,112,108,111,109,101,116,101,93,98,96,96,96,103,96,122,110,104,106,104,99,94,108,105,111,110,96,104,101,98,105,90,110,104,109,118,105,114,115,109,104,101,94,115,107,112,95,105,80,116,100,107,98,114,108,105,119,106,95,103,109,109,101,112,97,111,112,105,102,103,106,103,98,100,103,107,100,106,113,103,106,112,105,95,110,103,100,110,105,108,113,111,112,110,101,102,98,110,95,86,101,114,104,108,111,108,113,117,99,107,113,109,103,113,102,102,106,105,101,105,101,82,110,106,102,114,113,104,106,111,89,99,121,103,111,103,96,111,104,108,98,100,103,100,106,101,102,113,114,103,107,102,105,112,103,109,101,101,107,103,107,108,108,103,110,101,103,99,98,87,98,96,113,115,111,116,104,105,109,106,120,118,105,106,120,98,103,105,103,99,97,120,105,113,110,115,97,106,97,132,94,109,112,101,96,110,91,101,101,96,96,121,109,92,107,110,100,99,106,91,112,117,98,115,103,102,105,106,100,102,112,112,108,115,107,106,91,120,91,87,101,99,105,108,114,114,108,99,100,102,110,102,95,103,96,95,95,110,87,102,113,100,107,107,94,97,95,110,109,104,102,99,107,99,92,107,108,93,106,96,99,104,116,111,113,110,111,109,105,105,106,107,93,83,107,100,104,101,100,102,95,105,111,105,103,90,96,106,100,95,98,120,90,102,110,102,110,94,104,104,100,98,99,111,99,111,108,106,110,108,100,95,101,86,118,100,73,100,112,107,106,104,116,97,103,110,110,94,103,100,106,97,110,105,112,104,75,99,104,105,105,103,111,108,92,98,101,116,103,105,98,115,109,98,100,109,102,108,111,107,121,107,105,106,87,100,111,109,103,97,100,107,100,99,100,102,104,105,97,105,116,100,110,97,102,108,104,94,120,95,120,102,111,93,105,100,111,121,112,94,94,103,110,99,108,97,103,114,105,116,98,99,99,102,111,99,107,102,92,94,116,121,105,95,116,94,113,109,112,126,107,108,100,103,108,103,97,116,99,110,94,97,96,111,103,109,95,99,93,105,100,98,102,105,116,96,100,109,108,95,104,100,109,107,104,107,109,106,103,104,95,102,89,98,106,115,104,100,98,106,100,106,112,100,104,115,104,106,104,107,102,86,91,119,90,99,87,102,105,110,106,102,114,95,109,108,98,105,99,105,107,96,98,103,102,92,98,98,104,92,93,103,112,100,104,103,111,117,105,96,108,103,107,112,96,125,103,104,95,107,95,103,95,100,108,109,102,93,108,110,102,97,106,107,104,109,106,106,99,101,102,101,99,109,103,112,97,107,86,116,113,129,103,102,98,106,99,101,91,106,117,99,112,100,122,107,100,102,99,100,110,112,106,110,113,101,101,116,100,88,99,114,105,103,100,105,111,102,107,99,108,103,108,104,119,101,108,96,105,101,99,111,104,106,107,111,97,99,110,104,98,106,116,118,100,104,108,105,110,110,103,100,106,96,112,97,100,107,104,110,111,112,107,118,127,104,108,106,111,100,103,101,108,120,114,111,110,113,109,104,103,100,107,102,113,99,103,103,103,98,105,114,102,109,90,110,119,110,115,110,103,117,105,107,91,108,86,101,104,93,103,109,117,106,100,107,99,107,113,108,123,97,106,114,107,102,109,114,109,119,107,102,97,91,110,110,104,111,114,100,98,102,111,114,112,104,104,97,102,98,104,101,101,112,97,100,102,96,108,95,115,112,100,110,110,104,104,112,114,95,106,104,98,100,111,101,103,104,102,102,108,107,113,109,103,117,100,100,106,111,88,94,111,94,108,102,106,116,106,93,100,105,112,119,99,102,118,112,95,101,114,104,106,107,112,99,113,110,110,112,102,106,119,107,104,116,82,100,106,104,106,98,103,107,112,96,103,113,102,97,109,101,108,105,92,91,106,112,111,100,107,114,94,103,103,115,84,90,105,114,111,105,104,106,107,106,98,98,101,104,105,101,112,107,104,103,118,107,94,109,106,104,113,107,111,105,101,111,100,106,106,118,109,112,103,102,109,103,113,109,100,116,101,103,98,113,106,110,97,107,105,102,112,110,106,101,93,110,129,97,90,106,104,99,98,96,109,112,102,108,93,97,109,100,95,105,72,109,123,107,96,112,107,120,102,93,109,110,99,106,103,101,112,110,109,98,104,103,114,102,102,104,91,119,110,99,100,102,77,73,107,113,110,96,99,108,119,119,106,71,107,100,113,109,102,106,102,106,111,95,107,94,109,96,102,117,108,106,105,99,112,118,100,113,109,109,93,98,110,108,96,109,109,106,100,103,99,106,98,110,114,101,117,116,99,107,108,102,98,101,109,106,101,108,111,100,112,99,106,113,100,106,106,98,110,109,110,105,112,108,106,112,103,95,64,104,105,103,99,109,109,112,67,101,106,111,117,100,97,109,104,104,103,101,104,113,104,94,97,111,107,109,96,117,119,104,104,119,115,107,105,108,103,103,114,110,119,108,126,106,110,111,114,98,111,112,99,105,133,99,106,108,113,108,101,105,101,101,113,113,109,104,101,110,117,103,109,103,111,112,102,106,111,94,87,103,96,105,112,110,100,113,112,113,114,121,103,103,102,113,106,112,109,104,102,112,107,100,110,102,98,99,105,102,108,110,104,102,102,103,105,122,102,112,103,97,112,100,102,112,103,111,97,107,111,108,108,100,116,116,102,91,102,109,100,118,96,108,107,109,99,95,120,113,108,105,115,95,97,94,93,110,114,107,107,99,108,133,126,104,105,101,109,105,95,102,93,103,117,103,99,104,117,102,84,100,105,98,113,107,111,106,91,102,118,104,104,101,89,103,105,113,105,98,101,105,103,110,111,106,113,100,100,109,103,106,105,96,110,106,107,107,100,107,102,109,111,100,113,102,103,98,99,107,105,109,109,98,108,105,106,106,107,90,111,111,108,107,107,107,95,101,103,108,119,99,112,110,103,109,105,108,109,116,113,103,123,97,103,103,99,103,109,111,104,110,98,110,110,108,95,102,95,98,108,107,111,96,96,99,99,98,106,100,103,104,111,70,108,99,107,108,114,108,105,105,95,107,112,103,99,104,102,108,92,99,113,109,126,100,114,98,102,111,98,98,87,118,104,100,105,99,91,130,117,112,98,106,108,106,109,120,109,118,101,97,93,100,105,103,105,100,102,118,97,109,107,101,100,107,105,107,109,110,110,106,103,102,100,98,105,109,121,96,101,112,101,106,98,136,92,89,97,91,112,112,117,98,109,106,102,99,115,99,109,99,100,109,110,99,96,107,104,114,107,102,113,93,104,113,107,113,100,99,106,113,106,113,102,98,102,106,102,91,106,130,111,121,124,123,114,95,103,109,98,105,125,92,110,102,122,97,98,105,98,100,103,101,108,113,101,105,120,103,113,98,108,102,96,89,111,101,112,107,106,104,99,109,105,95,106,99,106,91,108,96,103,96,100,109,100,100,114,105,98,98,108,116,98,103,106,105,99,99,99,102,94,93,114,82,86,110,104,100,113,95,109,106,105,103,102,92,103,100,106,111,111,99,100,98,113,102,107,89,101,101,110,108,110,110,100,116,108,101,104,93,66,108,104,121,106,101,95,83,110,95,112,91,108,99,90,107,90,99,105,102,107,102,98,101,91,110,110,102,104,98,118,102,98,99,105,104,109,85,100,97,101,91,95,100,97,121,109,103,97,125,95,107,93,103,108,98,109,104,117,103,112,102,98,83,98,105,106,90,94,106,97,102,120,109,103,98,97,103,108,89,95,110,117,107,116,84,109,111,105,98,99,97,107,101,100,98,89,109,98,104,101,103,92,88,109,95,107,119,95,104,103,99,105,99,90,119,101, +507.48795,104,121,115,102,94,114,76,97,103,112,102,109,104,101,99,88,92,105,127,108,109,111,100,103,112,100,102,107,115,111,114,105,94,110,86,105,96,92,97,106,101,109,99,97,87,105,105,110,98,102,116,101,101,107,108,103,92,99,116,103,106,115,110,102,113,119,108,101,105,82,105,111,102,104,100,119,120,100,107,129,108,109,105,98,102,89,98,108,107,122,92,109,112,102,95,91,99,102,121,106,101,105,84,102,110,90,101,113,100,96,105,109,108,104,105,108,113,113,107,126,105,99,91,107,105,115,115,95,100,105,96,103,105,104,98,102,99,93,117,80,99,100,107,97,102,107,106,105,91,106,113,106,103,101,100,77,111,100,109,103,91,113,118,99,102,99,105,133,115,114,103,102,94,99,117,107,109,90,93,109,104,98,104,111,104,101,98,105,121,105,102,100,99,99,98,108,100,120,92,125,94,96,108,97,90,100,110,122,102,108,110,97,118,107,95,107,109,113,102,103,109,104,94,106,113,104,103,105,100,121,103,109,98,107,107,102,106,111,122,97,98,108,107,78,111,112,98,113,106,95,109,113,97,113,95,98,100,105,100,103,96,103,104,104,92,107,113,104,106,107,103,99,112,102,104,104,111,105,84,106,105,106,106,111,97,102,98,113,106,107,96,101,102,110,108,105,101,100,101,82,104,112,96,106,105,109,110,99,105,118,110,113,108,95,114,103,103,102,95,106,95,102,97,125,118,100,106,94,102,116,108,113,98,105,102,96,103,107,98,109,111,100,116,103,110,104,98,106,106,106,109,105,117,107,115,103,99,106,110,98,103,103,95,100,111,109,102,106,103,107,112,103,107,111,108,106,111,89,102,99,113,104,103,102,110,109,115,101,118,108,104,95,116,99,113,109,113,97,98,115,104,110,109,104,106,98,105,99,93,108,98,103,106,104,97,126,92,105,122,99,103,100,95,102,111,88,103,100,97,121,96,106,105,103,104,102,99,106,98,94,117,116,103,116,89,119,98,98,113,112,113,111,101,122,106,100,99,101,112,100,99,97,111,116,112,83,113,113,104,103,108,92,109,99,97,106,117,106,115,111,103,113,114,98,110,104,111,105,112,105,107,114,98,116,104,110,101,102,111,106,116,99,95,105,109,110,110,109,101,96,99,111,105,107,112,103,102,108,95,94,109,114,112,100,122,107,109,99,112,100,112,107,120,112,99,105,109,106,101,105,105,113,100,101,110,104,100,110,108,111,103,114,98,106,98,107,105,90,97,105,109,117,105,110,106,95,107,97,99,109,95,101,99,102,102,117,104,99,107,109,108,104,112,97,104,103,100,102,105,103,114,120,109,108,102,98,97,100,112,98,114,111,110,109,109,103,108,106,114,99,104,107,102,96,102,96,105,83,95,95,117,119,110,108,102,93,114,115,104,94,100,111,101,95,109,98,103,100,109,99,102,118,105,93,117,110,108,99,109,108,100,104,105,87,100,102,99,104,109,104,109,112,112,95,105,98,113,95,115,117,109,105,102,103,106,114,103,107,115,103,109,105,100,119,112,108,117,102,115,113,108,105,95,112,105,105,123,115,108,94,106,99,113,106,100,100,108,88,108,107,118,107,102,100,104,109,105,112,100,114,104,88,113,93,99,104,107,106,112,114,108,100,101,92,93,127,104,106,105,119,110,93,106,112,106,96,103,104,102,113,121,85,84,103,100,100,104,106,123,110,96,119,121,98,101,104,102,89,114,114,113,103,106,101,92,108,112,108,104,94,97,117,108,112,117,102,102,111,102,111,102,110,98,115,114,110,108,104,113,112,103,112,104,112,104,99,108,121,112,108,109,104,104,109,102,102,112,102,99,100,104,100,101,104,113,108,110,109,109,110,102,113,106,106,107,109,105,105,106,117,110,115,109,102,103,96,111,100,110,102,113,102,110,98,101,112,105,104,107,99,112,96,96,108,107,103,98,102,107,106,105,108,99,105,98,101,104,108,94,103,105,99,92,105,104,106,99,109,100,115,105,103,108,94,103,100,115,109,104,108,103,116,103,107,109,108,97,116,92,108,94,108,110,101,102,96,87,102,93,109,102,100,103,110,100,102,96,105,100,117,108,112,121,103,102,110,96,99,102,124,125,101,79,107,107,104,104,106,129,103,95,107,100,111,122,110,113,109,103,124,119,110,100,100,117,107,89,99,93,111,113,112,106,99,99,109,101,115,109,121,97,94,111,120,102,101,101,101,106,106,99,110,109,108,108,104,93,101,109,97,104,111,101,105,101,111,101,111,90,105,98,105,98,104,87,112,105,107,106,112,112,97,100,79,104,113,102,106,98,102,104,112,102,106,117,91,106,103,101,98,104,102,102,121,101,111,98,104,101,94,95,116,97,103,99,113,101,102,112,104,69,102,113,102,97,97,100,107,94,98,102,124,94,101,106,114,109,109,96,95,101,106,106,87,114,109,80,105,115,113,113,105,95,102,104,89,93,70,114,107,105,104,110,106,109,112,108,102,105,108,77,114,109,98,95,112,101,98,102,98,109,131,96,114,104,100,101,95,99,100,113,111,102,95,110,103,92,97,98,106,100,96,100,117,97,101,112,105,108,102,113,106,99,108,110,101,88,102,100,99,105,93,106,97,108,109,96,90,104,94,108,103,98,105,123,100,104,116,110,116,107,106,104,113,95,96,97,109,104,101,112,98,101,117,107,111,108,97,91,107,102,113,105,92,91,99,90,101,104,103,109,108,103,105,112,111,103,113,105,115,103,109,96,105,113,96,95,98,98,102,112,119,100,108,104,86,103,113,112,97,108,109,103,97,109,109,112,106,93,95,99,88,108,111,107,99,134,115,97,103,102,102,103,104,98,108,105,104,106,107,100,102,110,103,110,101,103,95,104,100,86,111,113,110,102,108,104,111,90,117,106,107,106,112,101,100,106,95,106,103,104,95,103,115,94,105,105,110,107,102,96,91,104,103,106,104,112,106,100,109,108,103,100,104,113,100,116,110,111,104,101,98,102,99,113,76,109,95,116,96,107,96,102,92,99,100,125,105,98,122,108,113,106,97,102,106,105,105,106,85,88,108,109,108,94,100,112,104,113,113,100,100,106,114,117,109,106,108,105,96,112,105,105,109,88,96,122,103,109,113,95,94,104,120,100,111,98,104,112,91,98,112,102,101,99,95,107,103,102,105,104,97,100,102,96,109,103,104,112,104,93,97,97,104,111,94,86,100,106,90,117,112,110,109,108,101,105,72,96,105,110,99,102,107,99,102,93,110,114,104,96,98,111,97,105,117,95,95,101,110,113,113,107,106,112,113,99,102,100,105,95,97,91,99,116,99,116,98,112,109,104,107,122,92,109,121,112,98,110,101,96,105,105,96,107,106,109,109,100,106,93,105,101,101,103,106,96,72,102,106,113,102,90,106,94,104,81,121,104,86,108,108,96,98,120,82,117,103,107,101,99,107,105,96,99,113,106,117,108,96,99,99,103,109,112,108,105,100,111,96,105,98,99,117,94,103,108,109,104,116,98,118,106,100,108,108,109,95,97,112,104,98,92,125,103,109,98,110,96,97,101,106,114,100,105,113,102,105,106,101,98,112,113,112,95,115,113,106,108,101,103,110,107,101,110,105,106,101,102,119,103,106,112,106,107,111,99,111,104,115,102,110,106,102,102,119,104,104,103,105,103,94,102,120,90,112,98,116,95,71,98,115,98,116,110,113,83,95,108,108,105,98,97,77,101,103,110,110,102,108,109,108,102,101,107,107,104,97,112,108,114,91,95,112,105,105,116,110,95,102,106,92,103,106,105,99,101,94,101,98,103,105,104,105,106,104,102,101,110,108,131,102,112,107,108,101,106,103,110,106,103,106,102,99,102,100,106,104,110,96,103,99,114,105,112,105,107,104,99,109,110,97,112,101,104,105,113,110,101,108,103,106,98,101,105,102,99,104,107,105,106,98,105,109,105,108,105,104,105,113,107,108,102,112,103,95,97,105,106,109,108,112,101,105,111,92,113,107,114,110,109,110,96,105,99,120,100,106,99,107,101,112,111,100,96,117,105,102,102,108,89,107,89,94,112,110,99,97,97,120,107,90,102,105,104,111,113,104,102,101,99,97,102,100,105,97,105,91,117,112,101,93,107,99,109,117,107,101,95,101,114,115,100,106,106,110,109,106,100,103,108,99,95,96,109,116,97,102,105,114,102,104,105,105,102,104,110,99,101,100,97,102,103,105,94,106,107,100,105,105,110,101,107,112,116,126,110,95,62,106,103,113,119,101,99,102,102,92,106,115,104,111,105,102,106,100,97,103,90,96,96,97,102,107,103,94,112,112,110,107,90,101,115,115,98,92,108,113,94,106,106,105,101,96,121,116,104,104,104,103,107,103,88,93,103,100,104,100,100,102,115,112,98,98,111,101,84,103,105,121,100,106,106,105,112,100,104,102,106,92,102,103,88,103,109,118,94,98,92,94,94,105,95,112,111,100,107,98,106,98,105,103,95,105,111,109,110,105,110,101,106,103,99,105,112,112,103,87,108,108,113,93,116,90,103,102,101,105,96,101,106,104,106,115,103,96,109,96,104,106,109,119,100,108,102,105,104,103,111,111,75,105,100,104,119,104,105,111,98,101,109,89,108,107,110,110,101,103,98,89,101,98,108,108,107,95,119,99,112,105,104,120,111,97,115,111,91,100,108,95,113,99,97,115,104,104,103,82,102,107,96,102,109,104,112,102,104,106,113,101,100,104,100,106,101,101,102,95,96,94,105,106,104,94,95,110,110,95,113,90,102,94,122,105,117,107,104,98,108,104,105,100,97,99,103,92,97,97,110,114,93,87,96,95,97,98,109,108,92,102,124,106,111,95,96,103,100,110,117,96, +507.6286,104,115,113,101,91,107,103,107,96,108,106,104,105,99,98,83,104,95,86,106,102,105,109,102,97,92,92,101,116,109,102,81,103,120,102,112,103,113,100,100,96,104,101,120,97,104,103,99,100,103,101,114,112,110,96,100,91,99,120,96,76,93,101,97,93,121,95,100,100,95,121,108,103,99,104,121,97,107,96,109,112,100,102,97,104,95,121,110,104,105,87,95,91,105,85,99,108,106,104,113,103,101,91,112,105,106,94,104,96,96,73,99,107,110,94,92,90,95,107,117,99,100,100,102,105,102,106,93,96,115,101,118,95,121,109,107,99,114,102,108,98,103,107,105,97,93,98,99,94,117,110,103,105,103,104,111,109,107,96,106,113,109,104,105,118,104,99,105,118,111,99,101,97,96,110,91,97,99,99,109,99,79,105,95,95,110,103,93,101,101,94,108,106,104,100,102,101,95,87,99,105,101,101,107,94,104,101,104,110,95,113,104,115,102,101,113,113,104,95,113,116,93,107,104,109,117,100,98,118,105,99,83,104,111,105,106,132,97,112,120,104,100,107,109,99,100,101,108,91,105,103,103,101,108,107,109,112,110,105,103,105,105,107,111,105,111,107,92,113,105,99,105,103,97,116,90,91,113,100,102,87,99,105,98,101,106,108,106,97,97,104,103,106,100,107,113,101,103,102,108,111,110,101,105,122,105,100,114,113,100,100,108,109,105,114,103,107,110,108,104,111,88,106,112,101,91,105,102,116,108,103,113,99,94,104,100,102,102,98,101,109,100,97,96,98,105,99,106,102,113,95,96,103,103,108,121,95,107,108,104,105,99,109,96,99,104,95,100,103,98,110,115,119,94,129,77,113,118,97,94,108,103,93,99,107,102,111,99,104,99,103,111,109,94,101,102,93,92,96,104,98,105,93,94,110,103,107,105,102,95,105,106,110,100,85,97,91,108,108,103,105,101,98,103,100,94,101,99,108,112,96,103,101,114,103,117,106,109,96,105,113,109,113,104,87,110,109,104,91,109,105,100,104,105,110,108,108,109,105,101,105,100,103,118,113,104,107,73,99,99,112,104,93,99,104,94,94,100,118,101,99,113,105,99,106,115,104,103,106,115,112,101,106,110,105,102,104,103,97,104,104,103,107,100,113,107,105,102,97,107,120,101,112,102,114,92,103,111,114,103,73,113,110,99,110,104,109,105,98,103,100,105,103,114,118,112,110,104,112,108,106,108,109,97,110,99,100,102,100,101,114,113,99,107,100,114,98,105,97,96,114,94,101,104,101,105,93,97,108,105,100,105,111,98,100,110,101,107,93,102,98,113,110,96,110,109,103,107,113,108,103,109,102,89,113,113,116,108,119,100,122,87,113,89,108,106,93,98,106,108,98,98,105,100,101,110,104,102,117,111,105,108,99,109,110,88,106,107,103,110,100,113,102,111,110,106,95,101,103,109,109,114,104,107,106,99,104,96,104,116,94,101,98,114,106,107,111,111,107,104,110,108,103,115,95,102,102,97,111,123,97,98,108,116,105,108,106,99,110,100,93,106,111,106,99,110,95,106,109,103,104,110,115,112,106,108,110,103,128,102,112,101,106,101,102,119,112,107,105,105,117,97,109,106,100,104,111,101,85,113,109,95,102,116,97,105,109,112,126,104,110,117,103,99,98,94,111,101,112,103,104,103,99,105,104,110,123,103,93,105,110,72,93,105,99,100,102,100,106,100,96,95,103,98,89,94,115,98,102,102,110,100,106,85,101,112,108,101,106,112,94,109,118,114,94,109,98,113,94,113,116,112,107,105,98,111,103,102,104,112,92,113,109,102,109,117,104,100,100,105,100,105,101,106,116,114,121,104,114,105,98,102,99,110,117,106,112,102,112,104,105,96,116,105,95,97,115,106,104,109,106,105,112,100,99,103,97,104,110,104,102,118,102,107,98,102,111,108,106,102,109,103,117,102,113,99,99,98,104,112,102,103,99,108,98,110,97,105,109,104,97,100,102,107,94,106,102,105,126,98,112,113,122,108,110,100,108,90,102,105,105,103,111,83,110,96,104,102,117,93,94,107,105,106,109,97,105,96,99,93,105,105,84,95,100,113,108,104,113,109,92,116,106,127,105,120,99,107,103,73,103,103,88,114,106,109,104,108,107,113,106,104,96,93,111,102,113,96,99,107,96,111,109,112,96,106,103,119,109,101,98,101,109,106,102,104,107,102,96,104,102,98,101,101,100,105,108,107,99,99,100,97,110,109,96,96,94,110,93,102,100,94,103,104,105,96,91,107,109,106,79,106,106,105,100,108,102,99,100,102,97,96,108,103,106,104,101,105,107,107,96,107,102,98,112,94,101,125,108,99,107,112,106,96,94,102,112,109,100,111,104,107,112,102,70,98,97,105,110,89,109,99,108,104,107,112,101,97,98,101,102,107,114,97,120,113,98,105,104,109,106,121,99,96,123,120,110,104,94,100,99,105,111,96,109,112,120,94,98,100,110,115,116,116,102,107,111,100,104,95,106,107,102,105,107,92,106,118,90,110,107,105,105,107,111,111,108,110,95,100,97,117,105,103,73,113,96,107,91,100,95,95,99,98,110,103,108,94,111,104,102,100,119,118,111,101,103,105,93,101,111,99,104,93,99,106,128,102,105,93,102,101,100,103,121,101,103,116,112,106,95,100,96,111,103,101,112,117,100,112,113,106,108,103,97,103,101,94,95,101,108,111,102,115,100,105,110,101,103,109,102,112,107,94,102,111,105,98,98,120,94,98,92,112,111,94,104,106,105,113,106,121,116,118,108,108,109,105,107,108,106,111,105,106,117,112,111,110,108,105,109,101,109,106,99,105,92,120,100,117,101,98,119,108,111,107,114,104,107,102,110,104,120,102,103,105,108,96,104,107,106,91,99,105,100,99,100,114,102,97,105,111,100,101,131,117,111,107,109,105,108,107,107,111,104,104,107,109,95,106,95,109,109,101,103,115,112,109,102,110,100,97,99,125,103,121,107,113,95,104,108,100,98,104,110,94,116,102,93,116,105,104,102,102,96,118,106,109,107,117,106,98,98,104,104,102,116,99,111,105,99,120,110,102,117,101,108,103,108,100,113,115,106,118,115,101,102,105,107,106,106,92,106,107,123,101,103,105,115,100,103,94,108,100,98,112,108,103,114,110,108,109,96,105,104,105,108,106,106,98,105,96,108,103,105,102,106,90,112,86,103,112,93,99,107,101,95,91,118,102,100,114,107,113,106,104,116,108,107,112,104,102,110,105,105,103,96,100,125,113,124,101,103,102,94,111,113,105,108,94,107,104,98,109,114,98,106,82,102,97,92,97,105,99,104,120,116,112,102,110,109,106,118,114,102,103,120,103,109,106,116,113,99,98,97,108,94,110,105,122,112,112,102,102,111,117,101,101,105,112,91,88,107,103,92,113,111,99,113,105,101,95,108,106,100,95,101,100,109,116,111,99,117,102,115,88,101,102,111,103,106,105,102,106,91,111,118,108,99,87,114,117,113,94,110,101,103,90,100,108,113,100,99,100,112,99,96,109,103,94,107,104,99,107,98,110,93,104,114,99,94,98,95,86,115,107,104,95,98,120,95,105,109,104,106,110,109,106,106,108,104,113,105,100,105,93,110,99,106,111,99,100,105,102,102,102,113,94,99,97,105,108,82,102,109,106,97,102,105,104,109,96,96,105,109,100,94,101,109,97,102,108,99,94,96,102,109,101,112,112,105,102,105,103,104,103,102,106,100,98,102,76,112,104,95,108,105,98,124,101,101,111,92,120,117,104,97,100,109,111,107,99,115,111,112,105,106,96,108,108,99,112,106,114,100,103,108,95,99,105,88,113,101,100,106,97,96,92,95,99,103,97,106,94,99,94,99,113,100,111,103,103,109,90,105,113,111,99,106,100,112,93,84,102,99,108,102,96,116,101,103,113,94,103,114,97,112,107,95,100,91,94,91,111,102,87,97,109,106,127,100,135,94,98,113,97,110,112,115,105,101,113,112,100,109,115,109,101,113,111,107,100,98,108,99,108,110,106,102,115,108,93,109,102,103,112,110,116,111,103,114,110,112,125,114,101,105,110,107,104,113,98,103,100,119,113,98,96,100,106,103,95,98,109,108,98,95,100,113,99,114,95,104,100,105,104,103,106,102,98,109,88,106,104,113,98,113,106,121,105,115,92,102,109,102,102,108,105,98,95,123,94,100,107,102,93,94,109,108,85,99,110,118,101,115,110,89,98,108,95,108,103,98,104,103,104,107,107,95,110,109,107,110,98,99,105,119,113,116,116,110,104,107,104,104,91,102,109,98,107,99,102,100,102,102,105,114,100,103,113,102,112,103,111,102,101,108,98,109,96,107,96,98,112,100,120,103,105,101,96,104,96,112,103,99,98,97,82,110,101,99,97,96,96,99,98,109,105,107,107,107,116,117,106,94,102,110,101,107,99,108,106,94,99,102,135,108,101,105,96,97,104,107,107,109,101,113,106,106,116,98,107,95,89,106,102,101,104,111,100,96,99,101,108,102,100,105,104,95,108,101,110,103,87,103,99,99,119,109,80,103,140,109,103,107,103,108,105,99,89,86,106,98,105,98,106,99,105,110,102,91,87,101,107,104,105,102,104,105,105,116,102,118,101,101,98,116,104,103,80,100,101,97,105,90,94,99,93,99,101,110,109,97,102,102,97,108,109,99,107,106,98,108,94,107,86,117,97,99,102,102,84,91,109,95,107,105,85,115,95,100,116,103,104,102,112,102,98,91,94,97,68,102,101,100,103,101,102,96,107,96,104,97,116,106,105,103,76,90,99,99,105,89,105,99,99,79,98,103,100,104,116,100,94,96,108,96,114,98,101,124,87,113,100,133,106,95,114,112,93, +507.76926,101,104,84,99,101,93,122,100,99,111,102,92,131,128,128,118,109,112,96,95,105,95,110,112,98,103,114,100,105,96,106,95,107,102,118,105,97,114,105,106,101,105,119,97,103,116,103,113,102,114,99,108,109,105,109,108,121,100,110,103,98,121,109,125,95,105,98,109,92,107,109,100,101,98,105,113,102,98,100,108,95,96,101,95,102,107,101,111,104,97,110,103,98,117,111,100,100,103,104,103,107,96,102,106,99,98,100,109,121,107,103,108,106,79,100,102,101,109,105,97,96,95,108,103,96,109,100,89,134,107,110,115,107,105,111,121,105,108,105,97,121,102,97,96,93,108,115,104,95,109,105,99,96,104,105,95,100,94,104,104,73,96,102,100,91,91,103,104,111,105,97,103,103,104,116,104,116,97,97,100,118,97,107,100,118,109,97,108,99,84,106,109,104,108,98,111,103,63,102,91,99,98,98,120,106,103,105,98,110,114,97,92,98,108,108,104,100,101,95,100,108,98,95,106,104,114,111,116,111,100,97,95,103,96,120,102,90,105,95,96,109,99,112,103,84,101,109,99,105,104,100,105,95,105,116,109,118,116,102,112,94,100,106,86,98,113,100,123,113,105,108,100,106,98,105,101,100,108,99,106,91,105,103,100,100,110,94,109,103,105,106,100,110,106,106,99,103,110,116,95,90,103,98,103,88,87,98,99,116,110,102,112,106,104,102,100,109,110,107,102,96,106,112,105,127,98,99,98,114,103,126,96,107,101,106,107,100,116,94,111,109,99,106,84,70,119,111,106,102,105,111,104,109,103,105,112,108,111,106,102,101,97,109,105,109,100,103,113,100,99,111,100,96,100,102,89,109,107,103,105,117,106,96,99,107,129,112,104,106,110,90,93,94,109,112,113,112,109,70,100,109,105,103,129,106,70,95,100,108,102,103,99,114,109,107,109,102,104,106,112,100,98,99,105,96,103,103,106,100,108,99,89,105,104,110,103,100,113,98,95,111,102,95,107,83,111,113,102,108,122,100,107,105,117,110,103,99,103,114,98,117,112,112,111,107,112,108,95,106,108,107,103,108,93,105,102,104,111,100,108,96,108,101,97,102,105,99,111,99,104,100,114,118,109,110,118,97,101,108,106,115,101,96,113,108,89,98,108,103,106,103,117,100,108,101,104,101,122,100,97,107,107,111,110,111,104,107,103,99,103,103,104,106,113,107,105,117,98,104,88,104,109,106,104,102,102,91,99,113,104,108,99,93,106,102,111,108,97,111,97,92,97,107,114,111,100,108,100,111,104,121,100,113,99,107,109,110,113,111,132,105,101,107,104,113,108,122,111,108,97,111,114,96,106,105,115,104,97,98,94,106,105,105,111,92,103,102,102,102,100,99,116,99,103,109,101,104,112,100,113,111,113,105,106,106,92,110,113,98,111,113,97,109,112,100,102,108,106,104,116,111,86,112,103,116,105,77,92,101,110,101,97,120,100,99,97,97,98,103,111,112,101,102,109,95,106,108,108,112,104,125,105,102,96,95,102,99,105,100,99,104,113,86,104,94,107,112,106,121,112,105,108,100,111,96,105,111,96,99,95,94,101,112,115,101,106,115,102,98,77,109,109,113,109,95,96,104,102,94,102,98,98,111,107,92,110,104,102,101,98,105,102,95,110,104,93,89,95,112,109,114,100,101,106,109,99,100,94,95,120,109,101,109,96,110,109,105,137,121,102,99,105,96,70,107,110,105,104,107,107,112,95,121,103,110,107,101,110,101,95,101,100,115,109,105,111,106,109,94,112,110,102,99,120,94,105,102,102,101,117,100,114,102,101,113,108,99,108,103,94,108,102,98,109,119,114,118,110,99,86,111,105,112,103,108,115,106,108,111,90,103,104,106,107,117,111,103,104,106,104,102,111,100,110,104,106,109,97,105,106,113,102,102,105,89,101,95,102,91,119,98,110,110,105,104,109,101,102,124,110,101,114,100,113,106,100,106,106,97,100,107,111,99,103,109,110,96,113,99,104,117,116,106,110,109,101,103,96,98,98,101,90,108,89,120,101,105,107,103,95,94,107,115,104,103,102,103,106,104,103,109,110,100,118,107,113,101,100,106,100,103,119,100,109,110,94,106,100,89,110,107,112,99,95,104,94,103,102,97,104,104,95,107,108,115,110,103,105,101,117,119,133,106,101,105,100,103,104,95,101,104,110,106,91,96,104,108,96,101,100,96,90,101,110,110,112,105,96,87,99,99,105,111,106,105,98,105,101,96,104,114,99,100,105,112,105,116,109,99,105,91,108,102,106,91,105,105,97,102,107,102,97,101,116,109,109,105,137,115,103,105,98,106,98,104,100,107,101,104,99,114,102,110,105,105,100,114,102,116,99,108,114,105,109,100,100,87,107,99,103,116,103,101,114,103,108,98,104,106,97,98,102,110,104,99,113,96,103,95,105,103,95,107,104,107,104,105,100,105,112,105,105,99,97,126,103,103,103,107,116,108,107,95,113,108,103,113,92,116,98,102,111,108,109,103,100,84,94,90,102,101,99,98,103,95,99,112,111,119,113,104,112,96,95,115,100,105,103,98,105,114,101,98,101,112,100,96,100,114,103,108,99,111,87,101,100,82,105,113,111,109,103,114,99,102,108,110,106,110,110,106,104,117,104,106,103,129,107,125,111,102,111,95,124,100,98,111,102,106,93,94,102,111,121,101,104,111,103,96,115,98,121,107,98,106,107,114,99,107,107,108,103,104,107,103,108,107,102,101,102,109,104,102,108,117,109,95,106,118,109,99,108,105,110,106,111,101,112,94,104,96,105,115,100,90,115,106,103,106,107,120,104,106,105,117,96,100,102,95,115,114,98,119,125,109,110,111,113,121,121,105,91,96,105,100,100,109,69,102,103,96,102,109,99,110,107,102,109,104,105,100,89,110,99,93,106,96,104,99,104,103,104,103,94,112,103,113,87,100,107,102,100,106,99,111,106,102,100,110,97,95,115,117,99,98,98,95,92,98,102,99,97,102,104,116,92,115,96,115,105,104,109,121,93,100,117,99,112,113,111,102,90,111,116,94,109,107,106,107,103,102,111,101,114,116,105,111,98,108,93,106,110,99,106,105,112,99,103,108,97,104,82,120,108,101,114,108,101,105,110,92,87,113,104,114,113,99,83,103,98,106,106,109,100,111,99,108,97,102,116,102,99,101,113,105,105,105,103,103,98,84,104,104,106,108,114,104,109,100,109,106,95,98,113,102,103,112,102,98,101,114,99,102,97,97,103,100,103,104,105,109,93,97,108,107,109,108,96,108,98,105,110,127,103,108,117,118,101,109,101,103,95,106,104,104,107,104,106,96,107,102,124,101,112,112,102,125,99,106,108,106,113,101,101,123,106,101,100,117,90,92,104,119,111,101,110,105,88,91,110,101,102,94,102,105,103,106,105,106,93,84,102,102,91,107,94,99,105,100,96,107,104,111,91,103,102,95,109,106,101,97,104,97,112,111,106,108,109,109,109,116,109,109,105,110,108,118,109,110,104,98,107,110,107,102,110,104,111,99,110,118,106,112,109,103,73,114,98,101,122,100,110,106,110,103,96,106,96,95,108,87,110,97,108,107,105,113,94,102,112,96,103,107,96,111,104,103,111,94,114,103,111,107,102,100,105,105,98,113,94,92,107,98,107,98,106,113,103,111,100,108,105,94,100,101,107,112,104,111,102,106,105,105,91,103,102,99,119,118,95,97,70,99,106,104,103,107,95,117,115,107,94,110,100,88,105,103,100,106,103,104,111,112,115,113,105,103,112,103,113,83,110,104,107,96,100,108,102,93,116,103,112,113,122,106,103,102,93,102,103,103,103,95,104,103,100,106,104,106,114,101,102,95,92,97,98,110,102,94,102,100,104,85,111,102,109,101,99,107,108,102,100,103,103,98,97,110,98,111,98,100,105,98,103,100,110,105,102,93,100,110,105,108,116,100,99,113,102,93,109,104,107,94,100,111,92,96,109,107,108,102,115,104,100,116,106,97,98,118,88,97,102,101,123,107,104,110,90,85,104,126,99,93,103,91,108,111,114,106,87,102,97,107,102,126,111,96,108,95,104,112,110,109,105,114,100,110,98,94,108,96,96,106,114,112,119,109,107,108,103,115,108,101,77,101,94,104,104,99,88,107,106,98,107,103,106,88,113,102,104,106,95,103,112,98,103,115,105,107,110,107,87,103,109,90,105,106,118,100,97,107,87,103,106,102,98,109,101,119,109,94,99,113,92,107,97,84,93,103,102,100,139,86,100,111,105,103,100,95,109,103,102,101,106,102,129,97,104,98,98,105,108,110,90,104,109,104,100,102,108,87,120,109,114,98,112,122,102,102,109,80,111,109,113,105,108,106,110,113,85,109,100,109,99,96,106,103,106,103,107,98,94,106,98,108,108,101,112,105,113,113,96,106,104,102,105,84,97,103,109,107,100,121,107,109,95,104,110,102,109,109,92,88,103,109,102,104,105,99,87,108,101,103,104,127,108,111,100,92,108,107,100,111,108,103,84,100,98,106,96,101,91,115,112,82,113,105,90,102,104,95,94,107,98,107,106,92,102,91,102,109,120,113,102,102,100,106,105,109,93,102,97,118,91,94,106,96,113,99,96,96,103,114,105,100,106,103,113,105,110,101,105,94,114,104,100,102,112,103,89,91,103,106,100,101,101,91,102,103,92,90,96,74,112,110,102,104,91,104,98,113,91,112,118,99,94,103,94,102,105,109,103,110,95,108,114,102,96,83,105,103,98,109,105,108,103,99,93,101,98,113,102,104,112,106,111,99,116,103,117,105,106,96,108,96,108,95,114,107,104,111,83,105,112,100,90,112,111,109,101,100,121,93,108,101,101,90,98,93,73, +507.90991,105,105,108,88,93,98,110,91,102,106,85,113,101,109,110,95,91,101,111,105,102,106,88,108,101,97,105,121,135,110,100,126,102,98,101,89,125,106,92,93,94,104,110,98,71,97,115,104,99,102,99,103,92,90,107,108,99,87,104,109,118,101,123,101,94,99,85,75,97,102,106,96,102,105,111,99,109,97,109,116,91,98,100,95,100,99,108,103,82,98,104,105,100,102,102,100,103,94,90,108,92,98,103,97,99,112,104,103,98,105,101,97,109,90,111,98,103,94,104,122,79,106,103,110,107,98,101,87,110,112,108,113,96,114,107,101,100,110,103,101,95,88,113,100,93,102,107,107,106,97,88,99,101,91,104,105,99,106,104,102,95,101,129,97,102,104,103,106,107,113,92,101,121,102,112,101,102,101,106,104,103,114,84,124,104,107,102,89,106,105,110,101,104,104,84,79,97,104,83,109,101,98,102,105,96,114,104,114,103,103,98,113,108,99,114,104,99,108,116,109,109,98,98,102,103,116,101,116,106,101,109,113,93,103,93,105,102,101,121,100,106,111,95,103,100,101,99,110,99,105,107,106,107,102,102,116,95,111,95,108,96,118,111,103,99,107,108,116,100,105,106,102,101,88,100,86,95,106,103,105,102,116,107,110,105,105,106,94,107,105,110,101,108,103,110,109,100,98,112,105,98,98,110,98,111,107,103,111,115,110,96,102,114,104,100,102,98,112,100,103,121,99,106,103,100,103,109,105,106,107,112,104,104,105,107,106,101,72,99,99,111,105,96,98,102,103,102,102,102,116,107,124,95,99,99,108,114,115,107,100,109,111,112,106,99,106,126,107,105,108,115,98,109,101,92,107,109,106,101,110,104,104,115,114,103,109,101,94,108,115,67,110,106,103,105,108,112,96,113,106,99,117,109,104,112,103,99,99,110,102,93,95,104,102,90,79,72,100,123,104,106,100,94,109,103,92,89,110,102,109,93,100,102,108,96,109,94,103,93,113,108,117,105,107,97,88,97,97,107,106,105,103,100,113,102,103,104,95,106,106,99,111,106,104,112,110,108,111,105,111,106,114,106,89,107,110,105,94,106,109,100,118,105,101,99,104,108,111,102,105,114,106,85,109,102,98,128,105,93,116,92,106,107,109,103,93,83,109,101,106,104,102,111,110,98,109,114,106,109,103,107,110,115,101,109,103,105,105,107,121,94,115,114,95,102,102,119,95,110,110,103,99,100,112,110,100,110,109,105,98,106,108,137,107,104,99,109,108,94,102,113,99,99,112,102,96,112,95,107,102,86,109,101,98,103,109,109,95,99,101,103,98,109,95,96,95,114,97,98,98,128,108,103,100,111,112,109,104,100,106,100,97,110,109,123,97,94,108,105,103,100,98,88,107,112,106,106,114,117,120,117,120,111,118,87,115,96,101,106,113,109,111,104,111,106,98,106,103,101,105,110,124,109,104,100,104,105,120,111,115,102,102,95,113,105,103,100,114,105,122,112,95,112,108,105,106,108,106,100,110,114,104,104,102,105,117,111,108,109,101,102,108,113,97,109,96,101,99,105,113,137,115,102,110,122,101,99,100,106,65,114,109,105,108,100,122,104,112,98,107,114,113,107,98,108,128,105,113,102,104,100,106,109,109,104,103,114,101,112,108,112,115,96,111,100,83,111,101,117,107,117,108,98,114,102,112,102,103,109,111,112,101,109,102,98,103,106,101,109,112,107,114,105,104,95,104,98,98,115,99,101,92,114,114,101,105,110,108,98,105,110,100,103,100,115,103,100,97,106,117,112,103,109,105,104,109,113,100,99,107,104,99,97,98,118,104,117,102,99,115,103,106,98,107,124,108,107,119,103,102,109,104,104,104,117,111,123,109,113,103,110,93,103,106,101,105,96,108,106,111,125,106,102,109,100,113,98,106,107,113,102,103,102,113,98,101,117,110,96,107,99,112,111,112,119,105,102,111,115,109,117,106,111,113,101,108,107,101,107,104,105,113,106,104,115,109,100,113,111,98,104,106,106,116,114,110,97,104,126,120,115,100,103,106,114,103,104,103,114,105,107,118,132,115,108,102,97,112,120,115,115,108,102,118,112,96,110,111,97,101,99,106,98,104,98,113,103,99,96,113,112,98,114,108,110,105,109,106,94,109,117,101,118,107,122,106,87,118,113,106,106,112,106,114,76,104,102,103,111,119,103,111,104,111,98,99,105,103,108,101,99,121,94,100,104,112,100,99,95,115,96,108,113,111,116,108,99,101,96,113,110,108,83,109,107,114,109,104,105,102,103,104,105,107,89,121,103,102,108,119,114,98,110,106,109,115,101,117,112,107,117,108,118,102,104,98,104,105,131,94,100,96,108,88,104,106,99,103,111,98,111,99,99,110,101,103,101,98,103,106,101,108,113,102,119,92,94,100,105,100,97,108,93,111,104,105,108,117,101,94,84,107,104,101,100,102,102,107,113,99,101,110,107,104,103,95,107,99,107,111,110,104,98,98,103,99,95,108,104,96,102,124,101,114,98,107,99,104,107,109,108,107,94,113,98,98,92,111,111,113,101,109,108,102,104,99,113,117,98,114,102,96,98,99,104,112,102,110,105,101,113,103,104,105,108,104,113,106,115,98,99,95,104,100,102,118,109,95,105,92,103,111,98,108,108,93,105,116,107,120,111,98,97,115,101,105,107,100,106,111,100,95,106,104,96,106,116,125,99,105,116,100,102,111,94,115,105,102,104,103,110,103,104,111,105,125,103,124,101,113,112,113,102,111,97,101,109,101,107,101,110,99,94,100,106,108,122,116,108,107,113,100,117,91,94,93,120,100,109,104,109,110,115,108,110,103,109,114,105,95,106,77,108,102,99,81,116,96,94,109,107,108,103,100,103,102,113,93,106,96,102,102,117,99,97,116,94,96,103,94,94,120,102,95,102,103,101,94,102,111,100,99,103,97,95,94,107,106,103,96,121,111,99,101,108,116,114,95,103,101,104,99,99,111,96,113,104,115,91,98,101,106,105,100,110,106,109,105,103,106,107,113,106,102,105,106,101,110,101,102,103,119,104,110,109,103,94,97,117,107,113,120,113,100,106,92,99,101,99,107,107,109,101,103,112,102,95,97,97,97,100,94,105,92,112,89,98,112,112,105,108,98,105,99,101,88,81,98,101,113,102,117,107,93,107,114,106,111,100,100,113,97,129,106,100,98,106,92,100,113,101,103,89,101,104,105,109,100,119,95,116,104,106,106,110,99,93,109,98,99,101,95,105,98,95,108,100,101,111,113,111,99,101,111,106,112,110,104,105,105,107,103,98,112,109,109,95,109,103,102,107,99,106,111,100,104,98,104,105,108,91,111,99,96,104,99,98,107,119,98,107,99,101,97,115,112,109,100,113,98,95,105,106,97,102,110,102,113,106,102,98,96,99,103,98,104,86,90,104,116,102,101,110,101,94,96,118,96,106,103,111,101,100,106,101,99,102,97,106,98,105,109,105,108,102,99,90,101,97,91,114,107,105,108,99,95,98,108,102,116,99,115,95,106,100,106,100,95,105,110,98,101,111,110,105,117,109,104,108,101,89,97,100,102,110,101,100,124,96,103,93,99,107,99,99,106,105,102,99,121,108,102,108,97,101,98,104,83,105,107,103,104,99,103,92,102,104,98,110,113,105,117,101,110,105,99,101,109,91,107,99,102,100,99,100,93,99,95,98,109,104,105,126,97,105,106,116,92,108,100,95,100,99,98,110,106,104,99,92,106,100,99,116,109,92,93,109,99,99,108,104,104,91,108,103,92,110,98,98,104,102,104,101,106,115,102,108,119,107,115,95,113,99,109,101,103,105,96,99,106,101,104,100,106,101,98,109,105,84,95,79,104,98,99,103,113,91,97,103,98,99,94,105,103,107,102,105,101,107,105,90,101,116,101,99,103,113,109,109,105,100,110,93,95,121,103,101,115,91,83,117,101,100,117,94,105,104,96,108,105,96,104,104,105,102,100,107,105,99,113,103,115,111,91,107,104,108,92,105,104,100,111,100,100,102,121,107,99,103,104,100,92,103,93,102,107,106,107,98,108,102,104,105,111,99,106,88,110,99,95,113,102,104,113,99,97,103,117,110,94,99,105,98,107,113,109,100,105,101,103,116,102,101,96,106,98,99,100,98,98,102,102,111,94,102,101,100,109,102,107,108,108,116,112,98,109,98,108,101,108,104,102,103,107,107,99,114,100,109,100,91,109,102,96,114,108,97,105,102,103,107,108,103,109,103,103,101,94,93,102,103,99,97,109,95,115,99,94,103,106,117,111,107,100,112,113,102,114,99,97,105,102,105,101,105,102,110,110,110,102,106,112,109,95,98,102,113,103,106,103,106,100,113,105,100,82,109,99,97,90,124,98,96,68,99,93,111,101,102,89,117,103,100,103,107,91,92,100,99,102,110,103,104,87,109,112,101,108,87,104,98,102,106,103,110,104,95,85,103,107,109,117,105,102,105,96,95,102,103,101,96,103,103,109,96,97,112,113,97,112,107,109,103,101,112,116,106,105,106,117,99,106,112,93,88,110,106,98,98,101,99,113,103,98,95,104,113,101,98,109,112,98,107,103,103,104,104,100,102,91,100,106,109,101,100,104,107,103,115,103,91,102,103,120,106,93,91,100,99,97,107,116,123,113,102,94,102,119,110,94,103,107,109,115,99,99,104,102,111,99,83,108,105,114,96,92,106,109,104,109,113,98,102,109,108,94,95,107,108,98,105,94,105,97,75,99,92,97,98,100,98,101,99,102,100,102,109,98,99,115,88,103,111,95,113,104,93,93,109,111,108,104,99,95,98,102,100,112,101,91,104,99,108,91,103,102,100,102,99,90,80,113,105,111,108,92,98,108,98,103, +508.05057,103,83,130,102,90,95,102,100,100,106,109,103,111,101,95,102,102,107,120,109,113,80,111,108,78,120,105,91,96,102,95,103,112,94,109,86,97,97,95,110,109,102,101,100,105,101,96,106,99,106,88,110,103,106,106,104,101,87,103,96,83,98,97,92,123,123,94,110,110,100,96,105,106,103,104,114,98,99,87,101,113,86,94,93,100,102,106,110,102,96,96,122,115,87,108,91,110,98,96,120,105,107,96,115,98,101,98,99,106,112,106,88,98,113,101,104,96,98,111,100,111,100,106,122,110,114,99,101,112,113,91,112,110,113,101,100,91,113,99,109,106,97,93,97,109,92,91,110,104,91,103,109,109,110,109,104,101,103,108,95,97,98,101,119,118,97,99,91,105,95,99,105,109,104,109,106,107,109,99,106,107,107,99,108,99,102,90,110,108,96,102,74,88,97,113,108,114,105,102,90,95,98,104,81,89,101,105,110,99,91,107,103,115,99,109,111,110,106,104,96,100,103,113,98,105,109,90,107,89,117,105,84,103,106,104,96,98,106,105,95,102,97,105,115,98,99,118,103,99,119,98,98,106,90,92,104,103,103,102,124,95,114,114,95,101,100,97,104,105,104,105,100,110,82,105,96,99,99,113,89,107,102,106,112,98,102,90,89,101,98,112,115,105,105,106,108,104,103,87,106,106,113,108,117,109,109,110,104,110,105,95,104,91,104,107,92,112,117,109,110,103,98,108,111,96,113,92,97,106,100,98,121,112,98,104,107,108,121,108,112,91,105,102,94,99,112,104,102,102,109,95,91,95,110,99,112,105,107,101,124,98,109,96,96,93,93,88,97,103,106,107,102,110,94,105,104,112,110,111,112,96,112,105,106,108,98,102,95,141,97,123,105,105,114,110,102,109,98,94,112,101,112,115,73,106,88,104,98,88,117,112,104,99,106,111,99,96,92,110,98,103,105,106,103,103,90,102,99,122,110,91,105,95,106,109,90,88,113,107,105,109,107,98,111,94,116,79,95,133,97,91,97,115,116,106,98,101,115,103,100,104,108,99,86,113,103,101,105,104,91,110,109,102,97,97,93,91,103,104,93,66,103,109,100,99,96,81,103,108,97,108,96,99,106,96,104,99,113,99,103,107,109,112,99,96,117,111,99,103,95,113,96,100,107,112,111,92,106,99,101,102,100,96,113,92,109,117,99,107,114,116,101,90,106,95,132,102,104,104,102,102,107,93,101,113,96,97,98,102,106,111,98,106,95,104,104,100,102,99,102,110,83,105,131,106,106,103,102,105,99,106,99,105,106,111,103,102,104,104,104,107,105,104,105,106,95,130,100,108,98,103,108,107,99,110,103,105,114,110,112,100,112,108,103,102,95,107,102,107,105,102,98,106,108,89,95,94,115,109,99,97,110,117,98,91,102,99,113,93,92,102,114,96,104,105,103,101,108,101,98,110,108,99,100,91,98,92,104,101,96,95,108,95,112,105,112,95,100,98,104,100,103,111,107,97,99,106,98,95,91,98,103,105,96,101,109,112,95,110,97,99,106,86,109,90,90,101,96,104,86,105,103,102,114,102,97,121,95,102,102,94,102,98,104,81,128,115,110,108,114,109,100,101,103,107,108,92,90,100,98,100,100,102,99,91,102,110,92,109,114,105,111,113,110,84,107,98,100,109,99,94,114,102,110,112,95,114,108,94,105,102,105,113,101,103,100,115,95,116,102,95,129,105,117,96,106,91,104,100,111,104,104,106,107,84,96,112,115,103,100,105,101,101,113,114,105,100,116,104,113,107,108,101,105,103,104,91,98,102,104,112,100,105,115,116,100,113,106,109,101,113,99,100,97,103,100,107,107,104,99,102,109,104,104,117,113,105,101,103,102,105,101,110,89,94,105,112,92,103,113,109,112,104,102,102,96,97,100,106,99,105,96,106,100,92,105,100,100,109,103,106,99,103,89,99,75,108,104,105,94,96,109,79,107,90,94,110,121,106,78,101,95,106,109,91,107,106,98,105,106,100,100,118,102,111,96,100,99,107,97,104,101,113,92,109,107,103,105,100,102,105,100,99,105,100,94,86,107,106,101,107,104,106,116,103,93,103,107,96,107,105,109,106,86,104,107,93,103,100,95,113,115,108,106,91,102,96,108,102,107,107,105,121,109,114,98,92,102,76,101,107,108,102,107,95,97,94,106,95,111,100,102,102,110,99,108,96,100,100,102,106,115,109,101,106,106,90,104,109,88,97,100,103,98,109,118,100,101,117,106,96,101,94,105,96,106,95,102,109,109,97,102,105,96,90,99,103,110,105,87,104,125,110,106,107,94,113,104,115,100,106,102,116,98,98,99,94,90,112,108,120,110,100,94,94,116,100,109,95,104,109,104,112,94,115,104,115,108,104,104,121,108,98,109,110,95,99,83,96,101,87,108,99,99,100,94,123,107,107,101,108,93,95,104,114,103,98,96,98,113,97,99,109,108,109,117,120,94,112,115,116,107,111,98,103,117,106,108,114,104,108,110,110,102,88,106,113,109,103,126,112,102,92,94,90,108,96,101,99,110,107,109,112,102,113,101,111,100,89,97,117,103,97,113,105,98,105,106,104,102,116,104,129,108,105,109,101,85,104,106,101,90,103,101,107,100,105,99,121,105,96,104,108,113,96,106,123,93,113,101,106,95,96,117,103,108,117,103,110,111,97,98,107,118,99,120,81,98,102,89,104,103,112,106,111,102,116,119,107,109,112,109,107,102,102,105,112,123,110,91,109,105,112,100,108,89,108,104,115,102,121,111,102,105,113,100,99,98,112,107,115,105,84,105,106,107,114,127,104,111,107,97,101,105,100,91,114,115,110,109,113,96,113,112,110,111,108,110,93,112,109,125,106,116,111,99,102,96,113,103,98,101,103,113,101,120,89,102,116,94,112,103,98,103,113,105,102,108,98,99,113,107,100,108,115,107,111,113,102,121,99,117,99,98,110,108,120,97,114,101,111,105,110,106,106,91,116,115,99,109,106,102,101,113,105,104,108,95,102,98,108,103,104,106,107,107,114,108,109,111,95,109,105,108,101,103,103,104,107,107,100,116,113,104,111,119,118,100,113,102,104,117,94,115,102,107,101,129,108,105,108,90,108,113,112,105,98,104,111,105,106,102,102,103,103,109,95,91,102,111,110,90,106,106,90,99,111,105,110,110,106,102,108,108,99,124,118,91,93,103,106,104,106,108,103,100,104,99,118,102,95,113,100,118,102,105,100,110,91,100,102,100,108,105,120,112,103,95,117,115,105,98,100,104,93,110,103,93,102,114,109,100,104,109,108,104,102,103,107,125,101,115,100,102,99,111,81,104,89,130,108,109,121,96,105,107,102,106,105,100,102,106,100,112,107,95,97,101,101,96,102,104,107,99,109,106,106,102,94,116,102,99,118,91,102,103,104,95,107,100,107,99,109,106,113,113,105,101,105,113,113,112,99,108,102,109,110,107,106,105,106,109,99,96,104,110,75,112,99,87,105,111,112,108,101,108,102,106,98,111,106,121,107,101,98,99,99,110,112,104,100,97,83,107,107,104,95,124,98,93,107,108,107,105,93,112,105,108,112,105,107,108,115,107,113,90,99,109,110,109,101,102,103,104,102,100,104,108,123,108,94,125,108,102,109,100,111,108,108,100,116,109,106,105,91,102,101,96,106,96,107,108,112,113,105,107,111,107,105,97,112,98,109,91,121,118,113,95,113,108,99,99,116,96,106,108,75,103,103,108,118,98,110,108,115,99,100,105,113,108,99,99,108,104,99,103,111,103,102,111,106,105,112,108,107,114,104,97,109,113,104,107,100,108,100,102,107,117,113,107,99,112,109,103,108,114,78,99,107,115,101,105,98,97,98,99,112,93,105,106,109,89,106,103,109,100,104,108,96,100,100,105,114,102,94,107,105,106,109,111,107,121,99,111,91,113,106,93,100,102,96,102,109,106,108,95,109,100,108,101,101,109,107,114,117,103,98,101,101,103,107,103,107,106,114,105,98,107,112,107,93,92,108,100,108,99,105,97,125,93,112,100,115,108,108,115,104,103,104,99,97,109,104,102,107,109,106,108,93,106,105,119,116,112,105,112,115,102,107,112,104,98,116,100,105,110,110,99,107,94,99,91,105,93,111,105,114,97,103,104,121,110,117,116,108,115,106,112,90,108,105,101,105,103,112,99,99,97,114,95,113,105,109,103,96,99,111,117,100,102,99,100,108,103,91,109,103,111,98,111,112,113,122,112,104,99,115,108,120,103,101,117,81,109,106,116,98,100,102,113,95,107,113,104,107,110,113,111,107,82,105,101,112,108,107,105,110,101,131,105,115,109,108,119,92,103,110,109,90,109,111,107,106,112,111,110,103,113,108,117,95,94,84,99,109,112,105,100,99,95,106,109,110,99,99,113,102,104,94,106,109,99,107,103,106,105,108,98,104,107,112,108,96,99,106,107,100,100,109,109,110,115,95,105,97,105,107,101,106,92,66,106,107,80,117,100,94,123,102,107,109,112,111,97,91,102,105,112,117,106,103,109,112,97,110,96,99,103,79,99,113,87,103,106,117,107,102,104,102,107,107,110,109,111,113,98,110,107,115,117,121,100,102,94,114,109,105,99,99,101,127,111,109,101,97,93,92,117,105,91,96,104,100,111,102,98,110,99,110,103,113,112,108,99,103,90,106,91,109,90,109,106,79,94,107,113,113,102,107,99,104,95,107,102,105,104,102,102,107,110,131,107,107,102,112,90,98,105,102,109,103,100,118,107,109,102,113,115,94,103,103,100,102,102,102,105,102,109,104,109,140,107,86,110,101,112,98,102,87,105,105,113,97,102,115,102,91,96,107,103,103,109,104,101,103,94,104,94,107,118, +508.19125,109,88,101,117,101,107,122,97,105,114,108,103,99,111,102,92,100,81,99,116,105,110,110,113,112,101,104,107,97,98,102,97,63,106,115,104,108,111,78,93,103,97,91,110,111,104,105,103,101,91,103,103,97,102,100,109,105,108,98,92,106,100,117,92,113,113,100,103,112,102,110,106,118,112,99,103,116,103,120,106,104,98,93,104,107,85,103,99,90,98,113,117,102,109,86,110,104,86,102,95,110,99,96,95,91,115,97,109,94,101,109,104,109,91,108,102,100,110,122,106,108,109,100,98,112,114,116,104,91,102,102,116,95,86,101,108,110,113,109,99,107,110,97,102,99,114,104,108,102,104,110,104,96,88,99,109,96,103,107,99,104,97,105,103,110,90,100,103,97,112,98,116,109,98,102,100,101,95,95,111,100,121,102,107,98,99,98,95,118,95,97,105,105,114,106,104,104,130,108,109,87,98,106,107,106,113,102,102,113,97,105,87,102,100,97,110,100,110,83,104,109,113,99,106,108,110,105,110,106,99,104,103,99,101,117,96,110,100,107,106,106,136,96,109,113,104,100,93,116,103,100,110,104,106,103,101,97,101,108,119,98,114,119,108,93,108,113,111,106,105,113,110,100,102,110,93,105,101,104,96,105,103,107,110,101,109,98,95,108,104,106,104,110,116,110,116,101,129,99,115,98,95,102,119,101,105,112,115,112,101,97,102,97,107,110,106,102,98,102,107,95,87,106,109,111,108,97,107,98,112,105,89,95,104,104,102,115,110,103,107,121,104,101,106,103,91,98,98,86,110,109,98,108,108,96,105,81,101,112,109,108,100,95,102,103,105,102,108,103,110,105,110,109,105,114,99,105,98,99,106,107,106,104,106,104,92,96,113,110,100,112,109,75,107,104,109,114,97,105,102,85,117,113,103,123,104,103,107,98,105,105,111,106,115,118,104,101,111,112,114,94,102,109,92,100,109,105,91,102,116,107,98,99,103,102,100,102,105,96,101,110,125,89,81,93,109,104,88,117,109,108,93,111,103,110,115,109,100,109,106,108,112,107,113,109,91,102,112,101,105,118,107,102,108,104,101,99,105,110,101,110,105,107,104,109,97,90,88,98,107,107,106,108,105,98,94,102,107,103,102,122,113,120,111,103,111,101,95,92,97,106,106,100,111,106,96,102,114,100,97,108,102,108,96,101,89,119,96,109,104,99,104,111,108,107,102,117,108,98,95,107,105,94,99,105,109,115,116,109,125,97,109,112,117,117,99,101,95,105,102,112,113,97,133,123,121,106,112,112,109,98,85,116,102,112,107,109,108,108,112,112,102,108,100,99,101,107,108,102,98,106,111,105,110,112,110,104,110,99,126,111,105,106,101,107,100,107,101,108,109,105,106,105,112,114,103,109,103,101,95,111,107,100,109,103,105,117,101,95,101,109,107,99,99,113,117,99,87,103,123,110,111,95,109,106,99,108,93,96,96,101,98,109,100,96,107,106,115,109,106,107,112,107,106,103,121,97,91,106,109,102,102,109,105,88,107,111,107,105,103,109,113,89,63,96,110,99,96,101,109,107,113,103,114,114,93,117,130,98,96,110,108,101,99,114,122,110,117,102,107,119,105,109,95,110,99,108,101,110,93,105,94,121,108,126,103,94,108,114,111,114,120,106,96,95,107,104,109,108,105,112,110,98,102,106,106,98,91,108,105,109,100,96,105,107,103,113,99,104,111,104,122,98,114,95,107,97,106,105,108,109,105,111,105,109,109,103,111,101,113,103,106,112,110,111,104,103,117,103,108,102,101,105,104,110,104,104,101,107,108,105,127,104,105,108,109,120,106,108,105,116,109,106,96,111,111,97,108,115,114,100,106,109,107,107,104,109,104,104,108,101,116,112,105,100,107,109,98,113,105,105,106,106,105,109,112,97,102,96,112,103,100,98,116,113,111,119,106,106,112,99,91,115,94,105,103,94,105,113,104,97,101,105,103,109,109,108,108,112,99,91,108,110,78,104,99,99,117,120,106,103,107,87,95,110,106,111,110,109,103,108,122,100,90,105,96,102,108,102,107,109,107,115,97,103,102,109,74,111,105,108,109,102,110,114,98,107,105,102,96,112,99,110,121,110,104,96,105,129,108,110,103,102,107,113,111,120,122,105,107,109,107,106,108,114,110,139,110,100,95,99,117,105,109,106,98,98,107,108,104,100,108,113,100,89,112,100,111,99,100,107,113,110,98,105,103,105,111,120,120,98,93,101,100,122,95,104,104,102,80,110,94,104,104,115,102,108,101,104,107,88,105,97,105,93,116,101,102,110,100,118,109,110,102,108,99,107,108,114,112,113,115,110,106,105,95,113,112,120,90,103,106,103,102,105,103,103,108,97,98,101,103,100,126,108,96,104,106,96,106,91,95,100,101,100,86,97,107,100,102,88,103,103,112,95,105,107,100,99,109,96,105,94,104,106,101,102,105,110,95,115,102,108,101,100,84,114,122,113,113,111,103,110,101,96,108,108,106,103,109,99,108,107,98,102,102,99,91,108,112,113,100,105,89,121,103,93,105,106,116,112,116,96,106,98,104,102,101,102,100,117,102,95,103,106,95,99,107,106,104,104,105,107,107,95,95,112,110,113,98,104,93,91,94,109,104,117,107,109,109,100,108,114,87,99,123,112,115,92,89,117,95,111,98,107,115,107,98,111,100,128,116,111,102,113,119,111,99,99,108,108,99,110,112,136,109,108,99,103,96,106,105,98,109,112,109,112,131,107,108,102,109,106,89,80,107,113,107,112,108,99,100,102,106,102,99,116,104,113,100,113,106,97,108,94,111,95,98,112,98,113,115,106,106,98,101,113,103,104,111,106,106,102,106,108,110,121,113,106,115,108,110,109,109,81,101,106,111,111,106,98,109,117,107,115,106,94,113,117,117,102,99,114,100,113,107,116,110,102,102,102,112,108,115,106,110,104,99,113,99,99,111,112,93,106,100,114,123,97,103,103,103,95,109,97,104,117,101,106,106,108,109,105,122,111,109,116,104,96,121,105,109,110,99,108,107,107,106,99,109,116,105,102,110,94,89,101,119,94,108,112,111,117,95,111,104,124,97,99,105,105,107,115,116,108,107,100,107,100,107,94,102,116,102,103,106,102,107,91,113,115,99,93,112,99,94,110,94,105,101,117,98,109,106,101,104,98,112,99,86,104,107,99,102,109,76,103,109,105,105,100,112,92,105,106,108,104,102,108,80,112,95,101,110,111,111,100,112,110,104,101,103,111,99,111,115,98,108,108,117,92,93,108,121,91,106,104,83,108,93,107,105,101,122,109,105,108,104,101,103,109,108,106,101,113,106,95,106,100,106,98,106,119,102,111,104,98,113,110,97,102,108,103,100,105,110,104,114,109,106,100,96,117,100,105,118,95,102,102,101,112,101,93,112,103,106,104,94,102,107,109,113,102,96,136,94,107,109,105,104,116,105,98,87,93,119,103,102,111,105,108,105,117,103,103,104,90,107,107,100,111,112,104,110,103,110,98,107,99,106,100,98,104,105,109,107,102,110,116,103,106,116,102,98,105,109,105,99,100,99,98,104,98,105,103,104,110,100,97,108,99,91,115,100,112,99,101,102,95,109,94,90,109,104,108,106,95,103,105,97,111,110,111,112,93,105,98,110,94,98,123,98,105,104,97,96,92,89,102,112,108,99,105,116,103,99,103,104,95,96,103,109,100,104,97,137,110,106,103,105,108,109,101,105,107,103,102,92,102,95,106,100,115,112,87,112,97,103,100,106,94,106,106,115,104,109,106,110,106,106,107,95,107,106,109,107,107,98,97,109,95,113,104,104,105,104,105,97,104,111,103,98,95,110,99,106,105,111,105,100,87,106,105,105,104,108,87,103,112,90,104,98,93,104,108,107,105,103,113,85,110,104,103,101,108,119,117,115,108,109,133,111,108,115,99,111,108,113,99,128,102,108,106,106,106,96,122,105,95,104,102,118,110,111,92,105,100,100,112,109,112,101,94,99,116,110,105,104,111,106,101,105,102,109,114,101,104,101,108,113,111,109,112,85,102,116,110,91,125,106,114,113,126,112,103,111,78,94,105,103,104,103,109,108,107,126,99,97,108,87,103,117,101,113,105,107,99,101,114,101,112,99,95,101,71,102,119,121,105,93,103,107,109,77,111,104,94,108,99,100,110,110,110,103,103,86,106,103,99,103,106,94,123,111,100,105,103,102,101,83,102,109,106,98,100,107,103,105,105,103,105,106,119,115,113,92,107,94,99,105,116,108,111,125,111,120,100,102,109,107,99,102,108,109,107,79,107,99,99,95,117,105,101,123,108,106,111,95,106,99,99,100,104,107,113,95,102,104,98,115,101,117,98,111,102,100,109,97,100,110,104,102,98,95,111,108,106,108,110,111,106,112,98,105,105,115,105,121,101,103,105,105,113,107,112,102,103,126,90,102,108,106,109,116,111,106,110,106,100,104,103,113,93,102,113,102,96,91,116,100,102,109,116,101,106,110,111,108,108,99,109,110,112,104,99,100,103,100,98,105,92,107,103,100,105,117,102,106,90,112,104,93,105,110,108,94,113,97,87,97,99,95,108,111,104,105,105,102,87,100,95,106,105,107,101,87,115,100,98,116,111,102,100,97,109,96,103,95,96,85,88,92,101,113,90,101,111,113,110,110,111,109,112,101,100,96,102,102,102,95,99,99,97,117,106,101,113,94,106,104,102,95,101,101,94,97,96,100,110,99,92,102,94,100,99,89,104,108,95,91,120,89,97,109,95,102,113,113,116,101,105,97,117,104,101,93,106,95,102,116,98,102,96,91,101,133,90,108,104,104,103,108,94,99,100,98,105,102,100,101,111,109,105,98,103,97,102,102,94,100, +508.33191,103,100,97,91,99,103,107,86,98,95,103,94,93,101,108,94,105,121,98,97,108,94,97,99,111,88,102,102,119,102,104,116,80,100,95,103,102,104,86,103,103,88,97,93,110,98,90,105,103,94,107,104,97,92,91,98,91,95,99,96,102,92,98,103,111,116,102,100,109,118,108,109,88,96,98,100,82,105,106,114,114,101,105,99,95,93,129,113,101,111,101,104,114,102,104,107,89,107,98,99,111,90,95,89,108,100,96,108,104,105,88,98,106,107,96,109,98,108,104,109,101,107,87,99,91,95,106,101,107,105,97,118,105,104,105,107,109,122,101,109,109,98,99,103,110,103,116,103,110,112,110,107,107,100,98,110,106,106,110,93,97,98,102,114,101,112,124,103,118,105,105,103,97,102,102,103,104,95,78,114,98,110,97,110,99,104,97,98,100,98,106,109,105,113,104,98,106,116,108,104,91,98,99,111,105,107,72,104,109,100,102,103,112,107,100,91,101,110,100,102,100,105,99,120,106,117,108,106,104,120,105,110,108,99,107,113,103,112,105,105,113,106,108,89,99,96,99,107,108,99,93,103,87,102,101,104,99,112,97,109,95,93,103,100,94,104,98,109,107,113,109,109,101,98,105,111,112,106,105,99,104,96,109,100,93,97,100,95,115,101,109,96,114,102,116,109,100,99,104,101,113,123,104,103,85,95,104,104,103,103,101,112,98,96,103,98,101,94,106,105,108,104,113,101,96,103,106,102,107,111,107,103,101,100,117,99,109,101,105,108,110,108,106,93,112,96,106,112,106,112,107,105,91,103,106,113,107,130,115,104,111,102,103,97,94,97,109,100,120,106,103,92,113,109,105,93,105,105,103,109,100,116,98,104,92,102,100,104,114,102,108,96,100,111,94,105,107,112,103,115,100,103,106,104,117,98,110,113,117,113,92,99,105,101,111,101,109,105,109,114,100,102,117,116,97,97,107,95,106,116,101,103,102,98,114,115,93,116,97,98,104,95,109,100,95,101,100,96,100,107,99,96,102,101,100,107,107,106,103,99,99,105,101,105,110,96,108,91,108,109,105,116,93,94,82,101,101,108,103,102,103,106,107,91,91,95,116,106,106,96,113,115,112,97,96,116,107,101,104,107,99,104,108,109,104,111,107,105,110,102,114,107,110,109,95,104,102,107,103,116,108,95,102,116,104,117,106,101,100,106,101,111,107,106,104,102,120,105,92,103,99,101,94,107,111,98,112,97,103,111,105,117,103,116,95,105,109,115,107,99,113,106,108,105,102,116,102,109,95,103,92,102,80,109,105,95,111,107,97,91,106,82,102,106,91,83,114,102,98,88,108,100,98,106,105,104,98,111,105,100,100,99,102,98,102,107,107,117,108,112,94,84,114,117,107,98,103,116,108,102,97,105,110,106,102,109,90,107,100,134,104,102,103,120,76,121,87,107,111,79,109,103,113,95,104,102,103,104,90,106,94,104,117,106,109,103,116,102,104,104,103,115,91,103,109,103,105,102,111,122,112,124,106,106,100,106,105,95,107,107,115,105,99,95,103,100,113,98,95,92,104,99,106,100,105,118,109,105,97,105,106,108,103,92,111,107,115,103,88,103,114,102,97,111,104,108,112,106,103,97,103,106,113,104,109,100,108,97,101,113,121,106,100,92,109,95,111,88,103,101,110,106,99,115,113,102,118,112,100,110,126,112,107,101,100,108,96,103,104,101,110,110,91,101,101,94,107,108,92,106,101,106,105,113,97,103,103,107,104,105,108,98,108,111,105,116,95,95,99,106,108,107,103,99,96,100,109,101,106,114,111,101,98,109,104,108,105,108,101,105,78,93,119,105,104,106,106,103,96,103,104,103,104,109,101,112,105,105,111,123,111,111,104,107,89,113,116,104,108,108,107,117,105,98,109,102,95,98,111,121,107,102,101,93,134,114,91,99,99,110,108,96,99,97,111,113,82,105,87,115,107,105,113,101,107,101,109,97,104,117,96,109,95,107,106,111,102,114,109,105,114,121,107,123,111,107,114,109,98,107,94,103,108,109,109,122,101,103,104,102,106,109,115,102,121,94,117,113,102,99,114,101,95,103,105,91,106,102,107,95,105,114,121,105,117,120,105,105,107,105,105,112,107,104,79,102,91,102,113,107,100,115,108,106,108,101,108,107,99,112,110,114,110,105,109,107,103,96,116,106,101,109,106,97,107,103,110,101,110,100,96,109,123,102,100,108,104,94,105,98,107,84,107,99,116,105,106,116,108,103,98,99,88,117,107,106,110,105,104,112,92,112,107,118,108,112,96,105,104,102,125,114,113,103,107,102,104,91,110,109,103,92,100,100,117,101,105,106,109,108,107,114,105,100,87,106,104,109,97,104,109,105,111,120,102,111,104,100,98,101,111,100,112,108,108,104,100,100,100,105,101,116,101,87,110,95,103,98,99,104,89,107,108,110,110,102,115,109,99,96,104,98,99,94,96,97,103,97,107,99,100,99,109,97,97,106,104,101,98,108,100,106,107,105,102,99,110,103,103,107,117,107,103,128,99,100,102,112,105,119,96,96,109,111,103,102,106,101,102,101,100,100,102,106,94,98,102,95,112,97,110,109,109,106,117,105,97,117,105,110,102,88,102,95,106,107,98,110,103,117,104,98,113,95,105,104,91,85,96,98,95,105,103,98,96,104,108,99,106,105,102,114,101,104,102,103,100,97,114,106,116,112,110,113,94,93,106,112,111,114,109,101,104,107,103,107,112,102,102,99,109,107,101,117,108,103,87,110,110,99,106,101,97,104,91,95,106,99,106,111,105,116,110,99,102,110,105,108,104,92,100,120,110,125,99,112,106,98,104,106,112,95,102,114,106,96,106,107,104,116,98,109,111,107,102,102,107,103,97,110,117,108,120,105,104,117,99,104,107,103,105,104,90,93,99,102,106,100,120,81,96,103,109,94,95,101,105,106,100,108,91,109,93,103,94,117,148,111,101,108,101,99,95,126,95,104,98,109,111,111,106,88,97,103,116,115,94,102,102,110,105,98,103,105,110,109,104,101,103,107,96,108,104,99,109,94,102,102,96,101,97,109,106,95,119,87,96,106,92,107,102,107,92,132,98,107,102,97,106,103,112,80,101,111,104,116,96,102,98,104,102,108,93,96,104,95,101,112,105,102,111,106,105,96,99,99,109,107,106,96,87,95,96,98,103,101,109,108,87,115,102,105,109,99,107,113,102,99,123,110,107,98,105,112,104,104,116,121,96,103,95,106,104,106,103,100,98,92,110,98,79,115,93,99,100,126,93,108,92,112,112,103,102,95,98,107,111,101,107,98,97,109,106,92,90,103,102,103,113,104,106,113,98,100,103,98,101,107,107,94,99,109,110,102,111,99,111,115,110,105,94,99,104,108,95,93,100,108,125,89,104,96,100,108,97,112,67,112,113,109,100,106,102,89,127,111,117,110,110,100,107,112,95,104,98,102,103,99,115,101,108,114,112,112,109,117,103,102,104,101,104,105,107,95,91,110,105,109,101,103,105,112,107,102,106,105,93,93,133,100,119,89,103,105,106,109,105,107,99,101,101,103,77,116,98,101,117,105,98,111,94,107,113,109,102,97,109,99,95,116,100,111,97,110,91,104,114,100,81,114,102,103,104,103,107,98,105,109,100,97,120,119,104,114,90,102,107,96,116,80,100,105,104,102,94,92,110,101,96,97,111,98,106,113,97,95,112,109,96,104,102,96,104,100,99,106,99,104,105,98,98,104,107,98,100,106,101,91,105,93,96,115,93,104,89,100,116,110,90,116,108,100,130,99,108,109,109,103,95,113,94,109,103,113,98,112,107,111,94,99,103,104,105,110,118,109,100,102,98,101,120,110,99,109,103,101,99,104,92,95,113,109,110,122,105,104,112,106,93,100,97,92,117,96,102,104,109,83,108,104,112,96,114,121,99,112,109,103,109,106,113,113,99,114,106,99,89,96,98,116,115,100,90,89,115,99,97,101,105,99,99,104,102,100,108,106,113,99,98,97,107,105,104,105,115,101,93,108,103,101,114,97,103,92,109,103,105,103,106,107,128,106,99,106,108,112,102,108,108,73,94,114,119,104,106,108,120,112,120,99,102,111,96,106,99,108,102,102,107,102,105,111,95,104,106,107,106,96,117,105,99,102,109,103,103,92,112,106,107,94,99,105,109,100,108,109,103,99,107,109,107,100,110,92,110,112,103,112,94,91,91,109,109,94,95,106,104,100,115,98,101,104,108,96,104,94,104,107,100,114,96,99,111,92,95,107,104,106,107,103,113,104,105,102,113,101,99,95,100,99,114,97,104,109,105,95,107,96,104,105,102,111,79,99,102,106,112,99,106,113,105,102,97,113,98,112,108,108,109,105,103,95,107,101,108,109,109,112,112,95,117,106,102,96,106,96,96,90,106,119,95,101,110,103,97,94,99,101,99,102,103,113,107,100,102,91,109,107,99,109,103,92,97,114,101,103,98,101,110,99,110,100,101,113,109,101,108,99,106,103,121,102,98,99,102,100,102,86,107,116,109,93,112,108,102,108,118,95,95,95,116,110,107,105,105,98,101,107,100,104,96,101,119,105,94,110,110,99,105,103,105,92,120,106,110,100,100,108,108,92,108,103,126,107,120,108,109,102,110,98,87,97,102,102,100,104,88,91,94,103,109,114,108,109,107,92,105,104,108,101,99,95,102,96,104,108,114,98,112,98,100,105,100,101,109,93,100,111,101,105,96,98,119,102,101,105,107,105,108,108,114,105,101,98,96,99,91,106,107,99,93,103,86,93,97,108,95,105,99,113,108,113,95,109,96,116,100,102,96,118,113,95,93,101,113,101,91,108,101,96,112,96,92,80,101,98,106,84,96,96, +508.47256,99,118,93,94,102,89,101,103,98,95,111,88,95,99,103,115,99,102,100,95,105,102,91,112,103,99,104,116,103,112,100,101,88,93,111,106,91,88,90,104,93,97,108,93,93,105,98,108,108,98,95,94,103,109,93,100,117,93,108,92,96,98,98,96,95,111,93,128,100,103,112,102,94,114,96,106,100,115,103,101,102,104,98,99,95,105,105,82,100,85,112,95,105,99,96,109,99,88,110,92,93,101,101,101,96,110,109,99,93,110,98,105,110,109,106,108,96,109,103,99,103,106,107,108,105,96,120,90,99,116,73,98,99,102,108,104,104,95,120,97,83,99,96,107,107,102,106,110,105,94,97,103,114,101,98,122,109,106,109,114,105,104,94,107,112,116,104,115,109,106,109,100,109,85,102,119,106,109,104,101,98,108,91,105,97,105,96,97,110,108,102,97,105,103,98,98,105,91,116,96,93,103,93,98,100,106,100,98,104,104,96,125,103,91,112,95,91,92,111,98,118,101,118,101,93,110,95,105,98,109,104,100,108,107,110,102,114,98,107,104,122,100,103,95,109,108,100,117,103,115,108,88,101,101,87,104,114,100,106,109,97,105,106,111,97,113,121,104,97,93,101,107,101,104,113,94,95,104,103,94,105,99,98,103,92,101,101,100,114,108,104,102,109,122,107,103,98,98,107,102,99,96,100,114,114,141,109,117,98,105,104,117,102,107,109,104,101,90,108,106,102,108,108,98,106,109,92,100,106,122,105,102,104,100,104,107,110,88,108,94,112,105,110,123,99,113,111,105,78,104,106,103,117,110,105,91,122,112,104,112,103,106,103,89,103,107,99,106,110,116,104,93,110,108,102,94,107,98,112,112,99,102,114,107,110,105,95,122,113,106,103,108,95,108,84,101,95,113,118,100,99,93,91,111,102,118,106,126,100,106,95,101,100,106,104,109,107,100,101,100,102,106,113,117,106,99,114,97,82,102,99,106,101,97,100,125,104,75,98,102,112,100,104,102,101,97,107,101,110,101,111,98,102,115,107,130,110,114,104,108,107,102,109,114,104,111,100,98,123,97,102,99,100,96,105,103,107,102,115,107,107,107,121,102,103,109,99,98,107,97,95,114,106,97,109,113,89,116,108,102,109,109,105,117,100,103,99,105,115,86,98,95,108,105,97,98,96,99,103,94,109,112,100,117,106,81,110,108,110,101,95,98,99,107,110,91,97,111,109,100,99,99,113,99,119,107,111,109,103,108,100,104,106,114,117,108,115,105,104,95,103,114,96,126,95,104,108,115,105,109,100,88,117,106,113,99,95,108,102,109,113,103,105,109,107,112,106,104,105,116,92,86,105,97,103,97,90,105,114,106,91,104,101,99,99,102,105,114,100,102,104,106,114,107,108,105,101,95,104,87,111,111,94,109,112,103,100,98,96,104,110,108,95,109,92,100,113,92,111,98,116,98,110,95,106,101,101,114,117,111,104,108,106,109,100,105,107,110,107,105,108,105,99,110,94,111,112,95,118,107,112,92,96,100,94,107,91,111,95,101,107,112,98,97,102,119,96,107,109,98,105,111,94,103,111,100,109,102,106,114,99,114,103,108,102,111,101,110,110,103,106,105,105,98,96,122,104,110,96,104,102,100,108,113,98,105,103,110,108,108,116,114,91,104,105,105,94,92,96,101,105,124,105,113,91,98,112,101,103,110,112,104,104,101,107,101,100,106,107,102,106,100,103,99,96,129,92,108,105,106,99,118,100,91,100,98,109,91,122,116,100,114,112,102,98,107,91,104,105,103,105,112,110,99,105,124,100,101,103,99,109,108,99,105,108,117,99,110,117,111,113,99,95,107,98,104,105,116,114,99,98,114,117,96,114,103,106,90,108,112,97,107,109,93,103,114,110,114,105,107,85,111,117,109,97,117,79,110,103,90,113,104,94,103,114,84,117,114,121,110,110,101,117,100,111,109,104,96,109,112,99,121,96,109,99,93,103,106,109,105,113,100,100,103,114,111,92,105,110,96,73,106,100,99,94,99,104,104,99,86,95,116,104,112,106,104,108,109,115,96,114,105,103,114,109,144,90,106,117,104,109,103,111,117,111,105,113,105,109,108,106,118,109,102,95,114,106,99,109,107,109,99,101,95,104,100,99,113,108,109,114,101,111,104,111,91,113,106,111,96,109,94,96,84,107,105,109,97,99,100,98,110,108,91,109,107,105,99,102,112,96,99,106,102,117,107,101,99,100,103,104,109,101,115,101,94,102,105,81,94,107,113,104,106,97,95,100,93,104,143,102,96,106,102,103,117,110,110,96,90,110,110,99,109,99,108,122,109,103,109,105,108,106,96,114,88,110,102,104,105,100,109,102,94,110,99,102,96,99,105,110,72,102,125,108,104,101,97,108,90,94,115,104,102,97,89,113,103,88,104,99,116,102,90,114,116,117,99,117,110,109,101,106,113,109,107,108,110,103,117,109,100,109,92,104,105,108,96,108,105,91,111,93,108,94,120,105,98,114,99,99,108,112,107,102,117,103,96,100,108,109,100,128,100,108,103,100,100,98,100,105,113,115,87,97,102,109,112,105,95,115,108,98,104,106,104,101,104,112,101,110,102,111,113,103,114,104,109,116,111,105,101,106,98,115,103,100,104,104,104,104,106,105,111,106,100,110,102,91,98,96,104,98,107,109,115,126,110,103,99,105,102,105,111,108,111,102,95,111,104,114,114,108,103,109,123,117,99,111,102,104,102,109,102,104,111,106,101,110,91,106,106,106,131,105,105,98,100,84,109,96,99,94,111,93,77,93,101,109,116,110,111,115,99,104,96,99,99,99,120,101,107,110,100,109,94,104,103,114,102,111,102,105,108,119,105,101,110,109,116,99,124,97,113,109,100,100,98,99,107,100,109,108,103,113,103,109,112,102,92,117,105,107,101,102,104,100,101,101,123,102,111,98,109,110,102,102,121,104,106,101,108,95,97,116,133,104,98,95,108,103,101,107,98,106,89,113,115,122,111,66,112,97,113,115,107,96,104,130,104,110,100,108,94,104,96,118,108,129,107,99,107,101,105,83,112,115,96,83,102,110,110,102,106,116,100,107,117,89,108,108,95,99,104,109,116,115,108,105,116,102,111,110,112,93,99,116,109,120,113,115,103,110,106,108,117,105,113,106,106,100,98,90,91,107,105,110,110,102,118,102,105,119,110,94,108,109,100,93,102,116,104,113,115,108,102,107,92,115,106,113,110,117,108,105,103,100,121,108,109,121,92,107,112,110,102,104,100,111,105,107,116,115,104,126,111,100,103,111,100,106,100,108,106,102,121,86,106,102,102,107,113,99,97,92,110,107,103,98,105,88,98,102,121,109,111,102,95,95,109,100,103,111,106,111,104,100,104,96,91,81,103,95,98,92,99,97,92,121,104,103,106,111,100,104,104,114,101,107,94,99,102,102,105,90,96,113,113,104,102,105,111,104,113,97,104,111,103,112,122,80,98,104,107,110,104,92,100,100,100,112,103,105,105,105,117,108,117,102,95,89,117,103,100,107,89,101,98,123,103,119,106,107,136,121,100,104,105,98,110,99,103,93,113,108,104,108,106,106,96,93,112,112,108,116,105,107,103,106,99,100,113,107,87,131,93,107,97,114,94,102,95,92,102,105,108,110,105,108,105,93,106,91,104,98,115,113,106,106,97,96,104,104,98,102,111,113,104,103,97,93,105,115,98,112,105,105,105,110,113,109,115,88,108,116,106,104,104,104,115,98,112,107,99,105,102,112,93,111,98,102,113,113,113,107,107,87,117,106,105,105,98,100,105,115,112,101,87,102,107,96,110,103,101,106,109,109,103,105,107,96,114,116,104,104,112,101,99,102,102,105,94,100,112,121,102,101,101,103,104,112,104,101,100,102,101,103,104,102,103,102,109,107,99,100,101,100,95,101,105,99,97,105,111,103,108,104,102,102,102,106,109,98,105,98,109,111,97,107,119,109,116,108,112,112,94,106,91,109,97,115,104,111,105,95,104,96,107,109,108,117,103,76,99,103,102,111,95,105,110,106,98,101,108,101,118,102,106,96,109,98,98,105,114,120,105,98,67,106,102,111,109,111,111,104,102,122,103,91,107,107,104,110,110,105,110,116,104,117,109,98,120,108,109,96,99,104,99,96,100,101,117,98,105,109,103,94,113,105,107,103,105,108,101,103,102,102,92,100,80,113,106,112,99,104,107,104,108,105,113,101,106,106,110,105,111,103,94,119,100,106,71,103,102,106,113,102,94,98,118,110,109,104,99,109,108,108,111,85,122,106,96,102,119,108,112,110,103,102,107,111,100,103,98,100,98,110,107,104,101,104,114,126,98,98,102,101,105,111,109,99,109,95,107,111,111,117,110,121,97,111,111,112,102,109,81,100,107,88,104,111,105,104,103,100,99,93,92,102,118,113,104,108,105,99,91,101,99,105,94,88,113,103,95,98,95,106,111,109,111,90,89,105,96,97,104,102,112,100,96,104,101,91,100,103,94,111,95,111,105,102,111,96,101,100,122,79,100,83,110,117,110,121,108,94,72,106,104,105,107,109,131,102,101,108,91,101,102,108,112,88,98,97,109,104,100,96,80,97,103,112,114,97,112,107,99,111,102,107,111,104,82,103,98,96,99,110,102,98,94,107,101,98,112,104,93,105,103,107,103,97,113,111,112,100,98,98,94,84,104,95,99,93,93,92,107,111,98,116,98,112,117,108,112,90,111,105,101,116,98,98,100,97,96,103,102,112,113,103,93,107,100,104,100,73,101,90,109,108,112,119,109,99,95,107,90,109,110,109,111,97,103,105,113,101,99,97,102,118,92,98,87,117,104,130,106,87,110,110,93,106,108,118,88,97,105,119,107,102,107, +508.61325,112,90,107,112,99,104,104,103,94,109,96,102,96,116,106,113,101,113,114,109,111,102,112,111,93,109,107,102,88,110,109,94,97,115,103,123,99,103,106,116,96,109,117,111,101,107,106,109,116,114,104,95,103,106,101,102,107,100,103,103,95,81,106,100,104,106,101,113,109,105,103,104,97,111,94,107,93,104,107,109,98,104,101,101,121,99,112,97,104,108,124,98,117,105,109,112,104,99,90,96,97,118,101,99,101,99,103,106,102,111,105,103,110,100,105,108,106,98,115,99,111,107,104,103,108,103,110,103,108,108,108,106,107,101,105,104,93,105,117,107,116,106,95,97,107,104,109,96,111,103,101,105,112,102,94,110,103,98,109,108,100,98,102,117,97,101,99,105,95,108,101,97,107,106,118,113,91,116,102,117,106,118,69,103,101,106,104,101,117,94,90,112,107,111,102,98,109,114,109,107,97,105,104,100,105,116,109,117,112,115,98,104,122,101,117,105,104,106,102,94,101,111,107,119,95,104,114,117,95,98,104,106,101,104,103,104,104,113,104,109,95,102,117,107,105,101,107,97,103,104,104,103,104,95,106,114,107,103,93,104,109,128,104,110,102,110,103,97,105,101,119,92,104,102,120,116,86,114,119,100,103,98,108,106,89,108,98,112,109,113,105,114,109,106,106,115,102,92,102,101,113,100,99,107,104,119,113,115,112,105,105,90,101,94,104,113,107,102,102,97,99,113,115,115,89,104,94,98,100,112,109,100,101,106,104,107,105,113,108,111,102,114,71,99,106,114,106,123,110,115,112,104,92,108,113,108,108,121,100,109,116,95,105,108,101,112,104,117,107,110,100,102,104,100,105,93,111,97,111,109,110,101,94,98,95,101,102,110,102,102,118,93,98,107,102,99,96,110,107,108,102,113,103,106,100,110,106,99,107,109,94,97,108,112,96,108,96,101,99,114,107,110,101,102,104,104,107,96,106,105,104,116,103,93,110,100,108,113,97,110,113,91,105,113,104,103,92,98,105,105,96,97,98,108,98,104,99,102,105,108,108,101,104,117,122,114,114,103,111,104,96,102,103,102,99,104,133,103,113,107,101,113,104,87,109,105,99,106,107,110,100,111,103,108,110,103,96,112,117,92,105,110,103,123,101,104,89,99,91,110,106,96,102,100,96,99,108,101,96,101,105,103,102,98,109,96,110,100,101,113,111,105,108,109,93,98,98,104,94,111,108,115,99,103,104,103,118,100,117,108,108,100,107,113,97,100,107,100,99,97,103,114,102,100,103,105,110,100,96,109,105,105,102,109,112,100,108,91,109,96,99,111,107,103,109,96,98,110,109,101,107,114,109,99,112,114,106,100,104,109,102,100,109,95,101,104,112,104,105,109,102,107,105,108,107,107,116,94,90,109,108,111,91,87,102,116,110,107,99,99,109,106,109,109,109,100,99,95,112,95,104,119,108,104,107,95,120,99,102,101,110,113,112,101,92,125,90,115,107,102,108,123,108,124,93,96,108,99,99,101,109,103,114,102,103,102,112,108,116,125,100,108,103,97,91,109,116,107,116,109,113,113,106,98,104,110,116,108,103,103,97,101,113,107,117,108,104,116,95,103,109,107,104,97,99,94,95,106,112,108,92,118,108,110,97,106,90,107,109,113,108,102,106,89,108,108,104,115,99,102,113,102,121,104,104,102,113,102,110,114,126,105,115,111,110,106,105,120,110,99,102,106,109,103,100,90,99,125,98,109,99,106,120,104,101,109,113,108,107,109,95,110,115,95,101,118,109,112,105,117,106,107,104,112,114,111,104,111,106,117,105,104,109,107,117,102,116,113,104,99,117,112,105,111,95,98,109,128,103,105,105,100,118,117,109,110,107,105,99,103,108,108,94,101,107,108,107,107,110,114,97,116,111,95,119,110,100,121,115,101,116,90,96,119,102,106,103,100,100,110,103,107,99,112,108,111,109,100,111,104,105,115,101,95,105,111,116,93,90,108,110,120,104,120,70,103,98,109,116,112,105,108,111,104,117,97,98,112,105,104,111,115,107,100,109,106,104,112,98,98,94,123,108,113,124,106,96,109,110,104,101,104,108,108,112,105,83,83,100,111,100,98,103,109,99,99,100,115,117,104,117,98,108,102,95,102,105,105,105,109,99,100,102,114,114,100,98,103,100,119,109,105,94,96,112,101,97,110,102,106,101,136,113,104,93,100,113,104,90,103,109,104,99,106,98,106,94,103,97,101,103,98,108,112,98,100,98,110,110,104,101,108,105,101,105,107,106,103,109,115,101,109,103,102,110,98,101,76,105,98,104,99,100,104,100,109,99,103,117,95,108,95,117,109,109,85,101,102,104,87,104,107,104,105,96,107,95,109,103,106,107,107,112,106,106,92,106,98,113,103,104,103,110,114,99,102,106,98,111,105,104,107,105,99,106,96,105,99,104,95,106,101,95,99,111,111,117,112,108,106,114,102,109,102,101,83,97,103,113,104,107,105,104,108,104,102,109,100,103,106,86,107,109,109,110,84,110,108,100,109,116,109,108,112,100,83,83,106,107,97,102,114,113,98,105,117,106,104,109,96,106,101,100,107,99,117,99,103,104,108,103,106,108,107,101,103,107,105,100,107,95,90,113,92,95,88,109,98,105,101,98,108,108,104,100,118,107,107,110,112,96,97,101,113,106,110,102,95,103,136,87,107,103,102,110,97,99,104,104,94,111,92,113,98,102,108,109,119,100,99,108,92,94,101,113,108,110,124,114,108,108,101,96,113,103,115,106,114,106,104,106,109,100,110,107,77,113,107,113,105,115,98,115,92,115,103,104,110,102,109,98,115,99,113,108,100,110,105,102,110,117,103,103,107,102,98,114,116,106,108,110,104,110,112,107,106,113,121,100,106,102,106,119,105,95,109,89,113,100,123,106,106,105,100,115,114,110,102,103,118,102,104,112,113,103,111,107,106,101,109,95,115,111,115,109,102,106,109,103,119,107,100,115,103,116,101,101,98,117,104,110,89,104,119,103,113,108,103,107,110,101,117,121,101,106,102,110,97,108,104,106,114,98,104,101,101,113,106,105,107,96,111,113,99,102,102,106,111,112,105,102,101,98,111,116,101,87,112,107,97,99,104,115,106,106,107,116,105,103,106,109,103,111,124,111,112,104,95,96,106,109,98,116,117,97,115,104,98,102,106,107,110,105,99,104,93,117,106,110,108,109,111,93,105,121,102,95,108,94,98,112,112,97,102,106,102,112,110,129,108,100,113,102,110,113,99,112,97,103,102,107,102,107,116,102,108,95,98,94,111,104,93,94,116,109,109,90,109,97,98,103,101,103,98,102,107,102,96,110,113,90,110,106,102,111,113,100,105,96,109,112,108,92,107,93,118,92,109,115,93,102,115,102,106,96,100,98,102,109,123,106,109,103,102,104,138,110,107,104,101,113,99,103,85,110,97,105,111,110,102,111,110,104,95,99,110,111,104,105,85,117,110,111,98,115,90,111,92,113,103,111,105,104,111,111,109,103,97,97,104,111,114,108,110,95,112,103,103,98,110,110,99,100,115,99,120,107,127,107,100,105,100,109,110,102,116,105,96,102,94,100,109,108,108,106,115,112,124,112,112,113,97,107,95,95,102,104,105,107,102,102,109,103,112,96,107,100,100,113,111,112,109,101,103,101,117,96,105,112,108,103,96,109,115,102,121,88,97,105,96,101,105,99,101,108,100,103,108,113,102,109,98,102,99,101,117,108,114,104,106,110,95,111,103,113,106,108,99,82,107,106,109,114,118,106,110,107,107,95,107,113,103,113,108,95,108,94,97,111,98,101,112,107,97,113,109,112,113,109,96,104,106,108,99,111,102,94,113,102,105,104,98,107,101,103,104,103,94,97,99,120,108,102,107,112,103,107,94,103,95,124,101,117,101,103,98,109,104,106,80,110,105,93,109,97,104,101,108,97,103,108,108,93,112,94,112,111,102,110,100,110,128,97,108,109,103,112,101,104,105,115,84,103,102,103,99,132,104,101,108,112,101,111,117,110,108,99,96,103,92,103,110,111,98,105,103,100,105,106,97,100,110,107,114,118,103,111,106,104,124,106,101,106,117,99,106,108,107,111,90,114,94,117,106,112,110,114,99,104,113,112,107,118,99,110,101,98,98,102,112,112,113,116,119,108,117,95,103,116,113,96,108,112,105,107,108,103,88,109,108,119,101,102,105,102,106,104,108,109,100,84,100,101,98,119,119,107,98,108,102,108,110,103,106,114,109,113,100,102,107,98,115,116,113,97,105,109,103,106,112,110,99,108,98,105,104,108,104,91,104,115,119,125,100,92,104,109,101,103,116,107,113,107,108,99,103,107,108,99,100,104,113,103,120,109,99,110,110,108,101,100,104,105,107,102,109,112,98,106,107,117,102,90,110,103,97,93,110,111,105,111,100,107,112,107,97,111,103,109,121,104,98,97,113,94,106,107,116,111,113,98,113,99,108,104,120,98,100,106,100,98,109,97,113,104,96,106,105,103,116,105,103,102,107,102,98,95,100,116,111,111,95,110,103,106,118,111,108,103,100,107,102,109,120,112,99,85,102,103,105,98,100,105,113,95,109,110,96,104,111,104,113,101,104,111,106,110,113,98,98,96,96,104,97,107,99,104,109,91,109,115,95,110,106,97,110,104,103,105,100,93,111,106,108,119,116,111,99,110,115,100,108,94,98,95,90,107,90,95,102,109,105,105,108,97,98,121,117,100,115,97,106,117,106,115,111,94,112,72,99,96,66,104,102,98,101,119,113,121,96,102,97,93,108,103,102,100,104,109,105,106,117,96,90,102,108,98,105,101,87,102,102,104,100,120,100,110,111,99,109,118,107,106,104,97,105,107,108,140,95, +508.75391,109,109,108,102,96,108,116,106,102,109,103,95,100,112,102,106,110,105,103,114,103,108,103,98,110,104,126,107,105,106,100,112,124,94,109,100,114,102,98,107,91,110,100,118,99,104,113,109,100,108,113,98,100,103,99,94,106,92,103,102,110,108,93,100,99,116,114,106,108,89,108,90,112,120,108,116,110,103,135,104,102,101,114,103,100,105,101,104,115,100,93,82,104,113,101,94,107,102,114,99,116,104,105,106,96,109,101,114,111,103,103,105,104,110,100,110,104,105,109,89,85,104,80,104,118,105,111,106,114,116,105,113,106,119,115,104,107,109,105,114,101,111,96,102,113,107,98,109,108,95,114,105,109,92,91,115,104,104,113,105,106,105,97,112,109,94,105,102,105,94,106,102,82,108,106,109,91,102,107,105,109,115,104,107,113,113,99,95,98,100,104,107,106,100,104,99,120,107,95,109,110,119,108,106,96,104,106,101,111,107,97,115,121,124,107,107,72,107,94,104,110,109,97,96,90,105,107,100,99,114,99,100,117,118,104,101,105,98,104,101,110,105,115,121,102,102,113,98,110,107,112,113,110,100,98,108,105,111,107,108,97,101,72,109,116,91,104,102,109,107,113,105,112,109,107,100,109,117,107,101,98,113,103,101,111,110,107,112,95,107,119,95,114,110,104,109,106,102,112,107,94,107,104,108,105,114,118,110,118,95,120,116,117,105,101,98,91,103,111,109,104,100,103,111,95,103,101,108,111,111,111,92,104,107,108,97,117,109,105,109,99,103,107,107,115,111,94,103,103,114,97,105,105,114,107,99,111,108,96,111,107,106,105,100,105,104,104,105,120,99,106,87,95,94,112,109,112,107,102,129,108,119,85,108,98,99,100,94,108,102,99,103,113,116,90,116,104,101,109,101,102,116,104,101,100,106,106,114,103,110,90,96,107,103,109,96,99,101,114,120,112,107,108,104,107,106,98,108,97,113,104,103,104,113,114,105,106,115,107,108,113,113,105,102,111,108,117,109,104,116,102,97,116,122,105,105,113,104,118,103,111,109,112,104,96,107,104,92,107,106,113,111,97,96,107,107,102,108,103,105,102,110,99,96,97,104,106,117,104,101,113,106,103,105,91,110,104,97,96,112,103,104,81,112,112,106,102,97,102,122,99,114,107,104,110,103,98,104,103,101,102,105,103,110,114,108,113,116,104,118,101,103,107,108,101,112,116,93,105,121,105,111,104,106,105,107,100,107,117,133,105,111,117,104,96,91,96,99,107,94,117,101,99,108,109,117,111,107,113,105,106,114,117,126,100,102,102,102,97,101,106,106,103,114,101,97,116,94,109,106,109,100,106,136,107,89,103,109,101,111,107,101,114,80,108,99,106,106,113,106,101,108,118,84,122,107,100,82,104,107,112,103,114,107,101,119,104,119,99,117,104,100,116,106,106,95,105,95,101,112,110,107,106,93,98,94,100,111,116,107,107,109,99,104,89,115,100,113,99,112,104,103,112,103,104,101,108,106,100,97,97,113,110,105,95,116,104,93,114,120,110,116,105,105,97,111,110,106,97,111,108,99,104,101,114,79,108,109,101,97,108,117,108,116,106,103,113,110,97,105,99,92,99,106,100,112,108,101,108,113,98,99,118,104,82,102,108,105,107,104,119,110,111,107,101,114,110,109,112,94,97,117,113,114,111,108,111,113,117,105,106,105,109,99,118,91,116,104,104,117,110,107,104,117,100,104,99,97,97,110,114,101,108,105,109,114,100,110,118,102,99,114,109,113,97,106,108,109,112,107,102,113,99,110,116,113,104,107,106,104,108,103,103,115,112,121,101,105,112,102,124,99,104,105,94,103,105,112,96,119,103,117,104,106,112,121,105,115,118,108,94,118,117,111,98,102,100,105,106,109,108,105,102,74,108,100,102,110,106,101,109,100,110,109,105,118,106,105,113,108,111,105,113,113,98,108,114,113,117,113,104,113,90,98,99,97,105,109,101,117,111,91,98,108,101,110,98,109,133,108,111,113,96,106,103,100,96,90,105,83,108,136,110,112,106,108,105,112,86,110,108,110,112,99,95,110,98,95,99,114,121,103,113,113,107,108,108,106,91,91,104,109,106,110,103,98,107,113,102,113,94,99,112,106,108,102,109,102,100,121,113,102,109,112,114,110,109,105,88,110,120,108,108,105,97,108,103,108,101,100,110,121,75,120,116,110,107,95,107,110,102,113,98,113,109,97,103,102,117,117,110,109,118,110,93,95,106,112,101,110,101,101,104,108,115,104,103,103,104,98,118,115,97,117,105,119,108,90,99,103,112,109,110,101,108,110,108,101,105,99,104,115,114,91,104,105,111,119,109,102,94,93,105,91,101,108,106,118,106,99,103,117,106,100,120,110,108,105,106,94,113,90,106,111,101,110,110,102,90,107,102,108,99,102,136,100,100,120,98,109,109,103,98,104,100,99,109,100,109,105,105,103,101,106,112,98,108,99,104,115,102,110,111,104,101,117,107,92,112,93,114,101,105,126,107,101,102,102,117,106,103,102,110,108,108,103,109,100,127,103,104,121,119,110,99,114,99,95,93,113,99,106,107,103,103,99,91,99,111,105,108,102,112,102,101,94,109,103,123,108,96,95,110,107,104,113,102,100,104,96,95,119,115,108,102,106,116,103,108,109,114,99,102,105,94,108,111,108,113,111,103,106,104,113,110,108,96,104,101,91,105,116,117,107,102,105,127,99,109,96,113,110,111,100,110,111,115,99,103,104,99,116,100,99,107,109,108,110,102,113,104,118,113,111,116,106,109,110,101,106,111,111,119,117,100,108,102,117,103,100,124,111,100,103,104,111,109,106,117,102,110,85,98,109,96,101,110,107,115,101,104,110,115,117,101,104,101,105,119,110,91,106,107,99,108,106,100,124,100,125,95,116,99,100,95,108,101,99,102,104,107,105,114,102,116,111,105,110,123,97,120,103,106,103,109,110,113,123,116,105,107,110,107,85,113,106,99,105,121,89,109,90,101,113,111,107,99,99,112,116,97,100,123,107,106,107,114,102,115,113,108,115,115,91,112,101,102,100,103,101,109,116,100,102,102,103,114,99,97,125,103,105,106,108,103,102,103,111,106,103,98,108,115,104,116,102,110,103,108,90,99,95,100,106,105,106,97,110,107,121,113,107,101,105,97,107,113,92,100,104,102,113,107,100,105,94,104,103,110,117,99,109,99,98,102,99,104,95,106,106,123,104,106,99,107,93,102,113,99,99,94,96,110,108,104,108,106,102,116,107,115,108,128,112,106,105,107,107,107,98,112,110,107,113,110,110,107,94,120,100,103,112,112,108,110,100,106,110,104,85,110,123,102,112,100,101,102,106,118,103,104,111,95,102,108,98,107,102,105,94,107,118,102,100,106,115,113,102,113,105,97,103,100,106,75,110,111,118,105,101,102,117,100,107,107,100,108,102,124,107,112,126,105,103,114,100,120,102,98,109,113,116,100,113,100,117,113,104,109,111,111,91,101,108,115,111,136,110,100,107,97,113,102,112,110,116,102,99,105,127,114,106,106,116,104,105,110,106,104,87,98,95,106,104,95,110,100,95,112,98,105,118,108,111,113,104,108,100,101,109,108,99,105,104,107,100,103,98,91,113,103,97,107,105,105,117,99,119,110,91,109,111,102,110,101,103,103,109,114,100,109,98,103,112,112,117,116,106,105,119,106,110,103,104,108,125,96,108,103,110,107,111,103,98,106,110,116,111,120,104,107,103,98,117,107,99,117,116,109,110,110,100,100,106,94,111,105,107,112,122,117,97,108,96,113,99,101,91,102,115,101,119,97,111,109,103,111,112,113,113,109,92,110,108,106,102,114,104,99,111,104,109,104,112,110,114,109,98,95,102,109,105,106,102,104,115,107,109,108,110,99,103,110,96,106,104,102,116,116,104,121,107,92,95,108,104,96,100,104,113,107,108,104,99,106,102,113,111,114,111,109,112,100,105,108,112,99,93,108,109,109,102,100,112,106,107,114,99,110,104,112,103,103,100,110,83,103,105,106,105,108,117,117,103,99,106,104,113,110,105,103,102,97,110,110,112,105,111,110,107,108,119,104,103,105,111,101,115,104,102,102,101,104,104,103,110,109,87,103,94,108,109,107,106,111,105,108,106,113,110,120,102,111,113,108,109,111,105,97,111,121,129,104,107,102,107,117,103,109,113,99,102,108,107,93,95,112,113,103,94,110,105,107,100,124,107,91,115,103,96,107,104,93,103,107,103,115,97,104,97,100,103,106,114,124,109,101,112,112,106,112,99,110,95,109,110,108,109,106,89,109,104,113,110,100,104,103,92,112,107,107,92,109,114,124,103,108,111,108,94,114,114,102,112,106,116,106,109,87,102,94,99,103,107,103,105,92,111,94,107,104,103,100,101,105,101,103,99,99,123,115,106,96,105,104,103,120,104,110,110,103,102,105,110,100,107,122,105,99,101,108,114,113,102,105,112,103,98,101,99,92,107,120,107,104,102,110,94,106,102,106,111,99,108,112,109,108,102,100,126,104,118,120,103,107,110,107,105,107,111,107,109,104,104,110,112,110,99,107,100,104,100,102,92,113,108,107,103,102,102,113,102,106,104,92,104,108,100,99,103,113,97,100,102,95,100,94,103,109,93,117,107,116,107,104,104,96,104,103,110,108,107,95,98,100,105,107,102,97,112,115,110,87,107,113,107,115,114,110,103,116,103,99,115,97,104,76,105,109,101,91,100,107,107,112,100,100,88,108,105,97,70,106,102,93,105,102,108,99,107,107,67,107,112,108,103,93,113,113,102,97,107,108,108,96,78,94,106,113,87,110,95,103,112,83,94,101,106,104,107,98,103,101,109,103,116,107,103,99,97, +508.89456,94,113,101,103,101,99,66,86,102,78,96,110,98,101,113,107,99,108,104,99,94,107,91,116,112,108,102,102,103,106,93,110,81,99,103,118,105,93,104,101,92,102,107,84,111,111,112,106,109,113,101,98,97,106,96,105,111,103,111,114,100,105,111,94,115,115,103,103,111,108,99,106,93,111,102,99,105,100,105,117,110,107,94,98,96,97,104,102,101,99,108,103,78,100,100,105,110,88,103,105,104,90,106,110,94,96,90,104,105,89,103,100,104,92,112,110,99,107,114,98,103,104,115,114,100,97,110,80,106,95,108,105,115,115,118,105,93,101,100,108,108,97,109,80,117,97,112,99,98,116,100,96,118,105,109,93,95,104,104,107,99,98,121,109,112,106,104,101,101,105,110,103,103,103,106,100,106,102,108,94,107,105,106,109,102,94,79,111,103,102,111,103,84,100,108,117,97,107,98,120,121,117,115,111,104,105,103,111,118,113,97,107,106,103,105,118,97,100,102,106,110,120,115,98,104,109,114,113,109,116,97,107,100,117,110,112,116,96,104,97,104,103,93,104,106,104,104,112,110,118,111,95,96,106,98,106,104,119,100,105,109,106,97,98,110,117,103,105,101,105,103,104,113,98,97,105,114,114,110,100,98,103,108,110,100,104,108,108,105,114,106,105,116,106,124,102,100,94,105,92,98,103,102,105,88,110,114,103,103,105,100,100,101,98,105,97,118,106,105,92,116,101,103,106,107,103,104,108,99,105,105,101,112,113,92,107,99,89,98,95,109,94,103,100,114,109,93,116,106,129,112,98,110,107,89,119,108,112,109,117,109,102,95,96,113,125,97,117,103,117,104,104,105,103,98,109,117,115,112,103,109,112,103,100,93,84,104,113,102,114,99,98,94,93,99,105,103,104,110,111,117,95,90,93,103,99,98,97,101,98,89,107,96,114,120,89,108,97,100,107,107,101,101,112,109,99,88,99,100,114,100,104,102,94,94,103,96,108,106,109,98,104,99,106,91,110,96,106,89,99,101,99,106,100,101,95,105,99,107,98,88,91,109,110,85,105,95,105,103,102,102,98,98,99,114,89,98,119,108,97,105,124,111,105,103,116,98,112,103,104,101,112,107,89,100,99,107,100,110,96,113,101,94,105,98,113,104,101,100,105,109,100,102,118,113,99,94,104,92,95,100,124,102,114,107,100,110,94,114,115,107,103,103,100,96,109,96,103,106,102,108,111,95,109,93,99,108,108,105,102,109,114,103,108,99,100,104,106,91,104,97,104,118,116,102,106,103,93,98,110,100,104,103,109,109,105,92,114,107,102,118,109,112,97,106,110,77,106,106,115,100,110,111,107,109,106,113,109,100,111,99,117,116,103,104,111,97,104,97,103,103,95,117,97,100,103,98,99,106,122,110,97,111,108,121,97,105,96,111,114,109,107,106,109,71,107,99,99,100,102,108,105,100,94,106,101,106,103,114,100,103,113,103,122,103,111,101,114,112,91,104,112,107,114,100,114,103,108,101,103,116,104,104,109,91,102,122,102,108,100,109,107,107,107,93,102,90,104,93,112,107,109,101,109,102,108,106,102,103,91,106,100,99,102,112,91,104,99,109,98,110,115,101,98,95,94,99,116,98,113,118,96,105,105,93,113,114,98,95,114,112,113,104,104,99,109,99,97,105,99,109,99,110,97,106,109,101,99,101,115,110,96,112,119,115,101,101,108,105,102,91,93,99,97,99,106,110,115,95,92,123,95,110,104,108,118,95,101,106,93,101,104,105,106,102,105,107,94,104,113,126,124,110,109,115,116,104,108,100,117,95,104,91,102,125,103,99,101,109,103,102,103,98,101,108,109,98,110,110,104,125,111,101,117,102,106,106,103,116,110,112,105,104,108,98,131,108,110,112,137,103,94,109,108,109,103,104,110,96,103,110,99,104,107,116,114,95,99,113,99,94,98,106,116,127,109,106,106,99,99,108,120,102,108,107,109,100,101,98,117,103,95,99,112,98,96,99,106,99,99,111,103,108,112,109,119,105,101,101,107,102,89,106,100,110,101,97,107,99,112,100,107,115,98,103,113,92,99,113,100,112,107,102,108,114,102,106,97,106,99,95,108,103,109,117,100,113,99,114,114,102,99,107,103,101,87,106,120,99,105,105,114,94,114,110,98,110,94,103,106,105,111,101,105,96,110,105,101,97,94,93,109,104,106,106,117,116,95,96,110,104,111,108,104,113,97,103,101,110,105,107,112,106,101,100,105,111,88,118,102,103,115,104,103,106,94,97,102,102,96,96,106,104,112,121,101,105,106,99,95,110,119,92,94,105,102,103,102,115,98,95,103,112,98,80,108,94,116,99,95,102,109,113,95,107,94,109,105,88,110,113,99,99,105,90,115,119,102,100,96,72,102,100,105,94,132,104,96,105,104,108,104,96,112,103,98,103,114,109,101,91,96,98,104,110,107,106,95,91,108,106,101,110,104,97,106,105,103,102,104,106,106,123,94,114,111,101,111,114,108,108,112,102,109,115,112,110,93,106,116,110,106,106,84,105,92,101,99,111,107,94,103,110,98,106,107,104,89,97,103,105,103,96,100,99,105,102,111,106,104,107,102,83,104,102,108,110,107,103,99,99,105,87,113,93,112,102,108,112,92,100,114,105,105,101,100,110,102,110,102,108,105,125,115,109,114,120,112,102,108,102,96,94,107,111,106,106,97,102,99,105,106,123,103,113,105,110,110,110,98,104,106,109,109,101,108,106,104,94,95,97,116,96,115,102,103,95,102,110,112,95,95,104,113,98,92,107,100,99,110,107,117,105,104,94,113,96,101,107,102,121,116,118,101,106,115,81,118,90,102,68,109,109,109,104,91,89,105,110,101,107,100,109,106,97,92,81,107,100,109,109,98,103,107,103,92,106,114,112,109,106,112,88,109,97,92,109,117,106,103,114,114,105,102,99,87,122,119,109,99,100,105,100,105,103,109,99,89,104,99,115,98,99,109,107,100,128,108,113,95,105,100,101,118,111,105,104,109,105,101,95,108,108,98,105,107,132,98,109,117,103,114,105,107,107,97,109,93,101,104,110,107,121,102,109,111,115,109,110,100,107,94,96,104,111,95,92,109,97,108,104,100,106,99,110,99,113,101,92,98,107,102,103,99,100,99,98,97,78,107,102,92,87,97,102,107,104,110,106,111,106,106,104,99,108,100,112,105,104,100,115,78,99,104,101,103,101,101,103,96,97,107,110,106,105,116,110,101,99,94,109,99,102,102,101,95,105,94,111,103,102,88,123,101,93,99,102,101,105,102,102,99,103,115,101,102,92,94,97,98,88,75,95,119,95,102,106,110,113,100,104,108,106,109,103,99,108,102,108,100,98,109,107,98,103,75,102,108,116,115,115,107,116,106,106,108,102,115,105,99,96,106,103,108,106,104,109,111,96,109,101,104,97,105,90,109,107,84,104,88,111,111,108,102,101,104,110,104,108,91,97,106,98,103,107,108,92,102,99,103,108,80,99,110,106,95,107,115,103,118,116,99,98,106,109,114,111,109,104,103,108,101,110,105,107,102,100,99,108,94,94,92,109,98,109,108,98,104,105,102,95,100,107,106,110,97,112,98,102,110,109,105,112,104,99,92,108,108,110,92,97,104,106,97,101,110,105,105,98,107,96,111,100,91,103,123,95,100,109,106,101,110,104,131,108,110,108,66,93,108,94,104,102,95,109,105,102,104,111,103,110,108,117,105,101,116,102,110,104,106,97,96,99,112,104,103,104,92,98,108,104,109,107,104,96,109,90,96,112,100,108,100,97,104,101,115,120,91,114,111,100,102,95,112,105,108,123,106,111,100,120,99,106,100,104,114,101,102,103,106,101,90,97,118,101,97,106,102,103,102,111,90,104,104,95,109,100,96,111,100,107,102,116,91,95,111,100,110,108,109,103,102,104,120,95,104,102,124,103,100,113,105,98,109,107,101,101,113,97,118,100,106,111,110,106,93,113,93,109,109,105,106,104,107,110,108,105,107,107,103,105,113,102,106,117,110,86,99,113,108,102,101,102,109,106,108,99,108,100,106,111,103,105,113,104,110,106,111,105,103,110,99,105,109,113,123,112,105,111,121,106,76,103,117,101,113,111,100,102,116,103,114,103,102,109,106,113,106,119,105,108,112,114,100,103,102,102,106,110,101,111,115,71,65,110,107,111,99,110,103,104,92,117,109,109,119,108,109,107,102,109,101,99,112,105,102,95,106,103,94,98,100,102,106,110,95,107,102,105,103,118,99,107,105,114,127,99,89,95,106,106,102,98,111,104,112,98,101,113,104,104,110,112,110,126,103,104,99,108,95,94,99,116,112,93,107,106,99,108,107,103,107,114,102,103,107,97,116,113,102,96,102,98,107,102,113,98,101,105,108,108,105,107,91,91,94,94,99,104,104,107,97,105,111,110,88,98,94,117,96,101,107,111,108,102,103,91,108,111,102,108,100,100,110,109,98,103,100,97,99,109,101,99,103,113,97,97,117,94,108,105,106,98,103,103,91,109,96,105,100,107,104,91,117,102,103,104,99,103,99,91,80,105,100,119,92,104,107,125,106,106,103,106,109,95,100,97,102,103,112,103,98,102,108,106,99,99,106,111,98,102,99,103,108,107,93,103,100,106,94,100,103,99,101,97,91,112,99,101,99,128,113,99,98,101,98,115,100,95,104,107,85,108,107,100,97,116,95,104,106,103,110,96,103,93,112,101,108,102,106,107,106,98,84,105,96,99,99,104,114,103,87,100,109,99,105,105,103,95,84,76,105,101,106,119,116,111,104,102,97,99,117,106,107,103,95,94,100,104,110,99,111,106,88,107,100,99,104,106,92,107,107,91,91,97,101,125,109,105,113, +509.03525,117,108,106,95,103,110,101,106,98,108,100,111,107,94,97,85,95,101,108,95,120,110,120,102,86,111,106,111,107,107,98,95,94,99,116,107,102,105,102,109,73,107,110,90,96,106,115,108,106,102,100,106,110,104,72,103,117,110,100,98,98,118,91,110,108,90,101,99,114,95,102,122,107,106,101,114,105,103,96,114,90,99,102,105,95,99,123,109,91,114,101,117,98,108,104,98,108,98,107,93,95,105,108,102,103,105,100,110,97,112,100,113,106,98,109,105,110,116,111,109,112,97,102,107,94,111,103,98,111,106,104,109,105,104,95,94,112,115,97,102,100,104,98,98,108,101,114,108,105,120,103,105,117,98,105,108,94,99,96,99,99,101,119,110,117,90,101,101,100,99,98,111,103,106,114,109,113,98,103,109,108,88,103,104,100,104,101,108,103,99,107,104,106,101,98,101,86,105,116,125,101,109,99,113,99,94,106,109,111,100,100,111,100,102,101,95,114,116,110,111,101,120,116,99,114,104,108,98,111,114,104,106,104,114,103,109,108,122,125,112,98,117,104,112,110,110,103,106,110,103,102,96,106,113,102,105,104,105,96,110,96,101,98,116,99,100,106,115,96,105,97,111,94,101,113,98,96,107,108,108,102,109,104,105,108,107,100,97,93,107,93,112,103,117,113,109,106,106,110,104,90,100,109,105,97,111,107,119,103,116,103,114,109,105,109,91,96,116,104,108,103,106,121,99,104,104,124,99,120,104,104,94,107,108,103,100,103,104,100,115,101,104,108,99,112,113,103,107,108,105,91,109,108,101,113,108,83,103,110,97,107,106,99,106,107,107,110,127,110,117,110,111,120,103,113,104,109,117,102,127,110,119,107,109,111,71,117,107,113,110,117,92,99,102,103,102,98,104,109,113,103,102,93,99,103,113,90,105,100,130,93,106,116,107,108,114,99,108,98,110,106,101,102,113,112,99,110,110,100,109,117,107,105,109,86,95,114,108,103,114,101,108,95,110,105,111,92,105,106,118,109,116,111,110,109,108,107,106,107,107,96,99,106,109,105,104,110,114,117,110,104,112,109,102,119,97,114,110,100,104,99,118,110,99,111,110,102,109,106,107,111,106,101,123,104,111,102,109,107,113,112,102,108,110,107,110,102,103,94,98,112,94,95,111,103,101,78,95,100,112,98,108,99,110,113,109,117,113,87,109,101,100,112,101,120,107,111,100,97,105,101,104,99,81,108,113,111,109,100,105,101,115,100,109,122,104,109,103,104,98,99,97,107,99,107,101,108,112,100,111,114,106,116,105,110,95,110,98,99,108,106,101,100,106,92,97,106,98,105,107,105,97,109,106,129,117,101,116,109,111,96,111,110,106,102,104,101,106,107,101,111,122,109,122,114,101,113,103,113,100,115,117,113,100,99,105,114,107,104,120,114,111,94,99,109,101,100,104,117,115,122,109,106,100,118,108,109,81,113,104,105,112,113,103,103,105,102,108,123,118,109,116,110,116,107,108,122,94,106,88,104,113,114,99,100,105,99,100,110,107,109,102,100,111,107,115,118,106,116,117,102,108,106,115,106,104,107,104,108,76,95,124,98,109,91,104,97,109,120,105,107,98,105,106,106,101,109,104,99,105,107,115,103,110,109,113,95,105,105,101,99,117,117,99,100,107,117,104,114,113,99,100,108,105,96,114,108,112,100,111,118,104,100,116,105,113,110,117,118,97,109,116,114,103,98,110,104,104,115,110,113,105,93,104,104,106,98,117,102,109,104,106,113,104,96,97,106,101,95,113,110,112,100,113,114,77,103,113,102,94,110,104,100,100,119,99,96,112,110,118,107,104,109,107,102,101,113,111,133,84,109,100,103,105,109,105,113,109,110,107,98,102,112,100,114,103,111,104,102,112,107,97,117,106,102,102,94,99,110,95,104,110,102,100,105,126,93,109,113,106,99,104,101,101,115,115,106,96,108,109,111,99,106,110,77,99,124,112,113,107,104,105,107,111,104,106,99,121,111,110,108,111,97,110,101,114,110,114,111,112,109,122,114,107,110,102,108,98,91,106,111,113,106,107,124,113,102,113,104,102,114,128,120,117,120,105,109,101,109,104,114,121,125,106,97,110,112,100,122,109,106,120,109,107,110,138,112,110,114,112,112,110,104,114,114,102,105,101,110,110,118,106,106,100,116,105,100,106,100,107,103,112,100,107,117,105,105,104,108,115,115,112,106,104,99,96,104,103,100,107,109,112,110,105,112,108,109,119,107,114,108,99,93,106,97,105,100,88,107,69,107,116,116,112,107,109,98,98,112,100,101,107,114,111,110,103,114,97,116,112,98,117,107,112,98,96,105,108,107,113,98,96,100,92,108,105,105,117,82,104,108,108,107,94,121,97,102,103,110,106,104,114,98,87,108,102,110,121,106,113,111,111,108,102,114,103,103,113,103,104,96,100,106,105,109,111,108,91,107,92,119,113,100,103,100,106,91,85,99,109,114,105,105,109,111,90,100,112,103,102,106,120,108,105,117,112,102,99,108,114,97,103,107,95,110,92,116,94,106,96,99,109,97,106,104,108,96,107,92,105,89,107,93,101,101,111,111,99,113,100,106,102,107,99,100,114,108,111,103,102,112,84,100,93,103,112,88,109,121,94,93,98,110,95,109,110,108,97,115,107,107,108,87,97,102,99,108,106,101,106,103,95,107,101,102,84,120,88,107,107,97,104,105,109,99,104,102,111,104,102,109,99,97,91,108,105,105,118,104,103,100,107,105,104,93,112,95,110,111,104,106,110,102,124,103,98,113,98,104,95,104,104,117,97,95,103,105,117,103,101,110,106,103,107,109,100,108,103,109,118,110,98,105,109,110,104,102,102,98,103,103,110,118,106,84,110,100,105,105,104,96,113,112,107,106,103,106,112,113,105,103,107,96,95,101,92,103,111,122,111,109,100,100,110,83,112,104,98,86,99,89,109,98,99,96,102,112,110,92,100,105,111,105,99,105,94,100,107,106,104,104,90,109,115,112,108,112,105,103,111,99,102,113,92,98,97,94,107,102,97,102,113,97,104,122,106,101,105,96,100,108,98,102,107,107,96,104,96,103,102,104,104,91,103,100,95,96,116,110,117,101,91,102,90,126,103,102,112,102,106,99,96,114,111,107,106,112,111,111,113,112,108,100,94,96,100,108,105,99,103,95,98,106,110,100,106,99,122,113,106,103,93,92,101,110,104,106,104,107,102,105,106,106,111,93,104,118,109,112,114,105,102,121,99,110,109,113,102,104,116,105,106,101,123,95,100,113,97,101,94,100,100,112,117,106,107,100,120,96,95,96,111,91,99,103,105,95,107,110,103,98,120,106,111,107,112,94,102,104,120,99,110,99,102,91,98,100,103,112,105,108,104,87,105,133,106,105,113,96,115,104,104,98,107,98,109,108,107,104,97,109,112,98,104,123,102,91,102,96,104,103,109,103,94,91,106,103,110,99,112,101,102,109,109,99,104,113,91,104,101,113,112,99,75,98,129,113,104,106,109,103,112,102,107,115,119,94,111,108,98,110,103,98,107,99,111,117,106,95,108,98,111,118,110,116,114,113,119,125,97,119,96,106,112,108,102,103,105,108,105,103,111,100,109,104,102,101,99,103,109,104,100,105,111,97,106,105,102,98,99,96,112,106,103,95,100,104,109,103,101,92,102,115,100,107,113,111,102,100,109,106,102,112,95,102,102,118,103,112,100,105,97,101,99,105,99,102,109,99,109,109,107,103,116,102,96,121,99,116,106,102,110,106,117,109,105,108,105,111,107,109,112,102,97,116,104,95,102,99,106,97,109,104,109,105,113,104,127,105,98,108,102,107,102,95,103,108,100,97,98,94,105,95,103,106,94,108,91,108,106,97,107,106,99,95,105,101,120,102,98,96,105,84,105,114,102,98,111,111,110,136,101,105,114,82,109,113,94,110,106,96,102,106,104,103,103,100,101,95,94,108,107,106,111,106,100,92,112,102,119,105,114,109,94,110,101,111,88,98,102,94,101,96,107,109,103,105,104,103,106,96,97,97,103,104,110,109,108,103,104,123,105,100,117,103,118,104,116,92,107,99,102,98,104,111,112,103,97,94,110,110,97,107,99,120,114,109,119,112,114,109,96,96,98,112,111,98,98,105,99,108,110,113,106,99,107,109,104,107,120,101,105,109,104,91,104,98,100,112,108,111,105,103,104,103,100,107,113,107,87,98,92,112,105,108,102,96,100,116,102,101,114,100,117,113,105,116,100,98,103,94,101,94,110,112,102,105,103,102,111,111,99,102,100,108,107,102,97,102,99,101,98,97,117,118,102,113,102,96,107,100,102,116,110,99,123,103,97,107,109,107,108,125,114,102,110,107,104,88,102,94,100,104,101,104,109,101,105,110,102,120,103,99,96,100,92,105,104,99,101,112,106,109,109,133,101,108,95,113,95,97,105,74,106,122,96,124,100,104,100,107,102,101,110,105,110,107,98,93,92,98,111,104,100,91,102,110,74,118,106,99,112,99,99,94,96,110,102,94,115,102,91,108,100,104,95,117,105,96,98,98,109,117,109,107,103,110,100,102,113,95,99,110,105,108,103,109,117,117,114,113,91,99,103,109,106,102,105,96,104,105,104,121,102,97,97,103,112,131,92,98,104,103,105,106,95,105,105,107,100,79,116,99,98,102,105,111,98,104,106,87,114,113,108,97,105,102,103,119,104,110,108,108,94,107,101,97,104,100,100,119,107,100,111,106,102,102,102,91,112,112,91,92,93,100,105,105,106,101,116,112,105,112,110,95,101,103,116,106,114,123,113,107,98,86,100,93,95,120,95,95,108,86,110,107,106,103,111,97,96,106,108,99,104,92,99,100,116,105,104, +509.1759,105,101,109,92,87,93,78,105,109,84,125,86,75,110,99,101,99,113,108,101,107,109,119,99,100,95,106,100,80,112,96,101,106,102,106,104,96,105,110,92,96,102,94,105,101,109,97,95,91,106,89,102,107,100,112,89,113,110,103,106,106,110,106,94,94,122,96,107,109,109,117,110,103,113,95,119,96,103,129,111,102,102,85,102,108,109,111,112,109,102,91,105,109,99,103,100,100,94,99,102,101,99,102,102,97,90,109,109,92,110,120,113,111,118,104,98,119,108,102,111,96,109,101,104,103,112,101,109,111,107,106,99,73,105,100,90,96,112,94,110,106,112,98,103,103,93,98,108,117,109,90,77,100,97,91,98,106,122,116,107,104,101,115,101,108,105,109,89,115,105,105,103,111,104,109,100,110,89,104,112,100,109,103,104,105,92,102,87,107,94,81,99,87,113,103,101,97,119,105,96,85,121,106,100,96,103,104,106,102,116,87,110,104,95,110,117,95,112,89,103,106,102,105,100,107,111,104,112,109,104,93,107,110,100,106,102,109,100,121,105,109,106,97,113,116,110,106,103,97,104,103,104,108,92,96,101,118,111,101,99,110,123,101,99,86,96,106,105,103,105,103,98,122,113,91,116,99,101,113,111,115,100,103,107,107,118,107,111,111,117,108,103,103,99,91,104,108,104,112,98,92,101,121,98,96,88,95,110,99,89,103,116,103,112,110,104,110,100,113,98,103,84,111,94,96,98,102,109,115,109,100,102,109,103,99,106,103,90,105,109,98,102,112,100,87,103,104,94,103,111,106,110,94,108,110,118,104,106,99,111,113,97,103,100,94,101,118,108,93,104,122,102,101,106,105,100,117,103,109,111,104,121,123,111,136,99,97,104,112,104,97,97,97,109,112,101,94,104,110,102,95,78,111,93,109,100,108,104,106,100,97,100,108,102,101,101,121,110,110,98,99,102,101,102,98,114,103,114,102,102,97,113,109,95,103,110,101,110,106,107,104,102,96,94,102,100,103,114,77,106,104,103,108,92,94,107,107,129,105,108,102,113,99,104,98,110,119,98,103,108,100,113,112,90,98,101,99,116,105,104,104,108,105,107,116,102,98,104,104,113,104,96,104,109,90,105,97,91,107,100,110,102,111,100,109,103,105,112,99,105,105,101,103,111,102,113,104,105,101,116,104,113,109,104,113,101,108,101,96,99,94,112,110,99,95,113,109,98,105,113,109,110,115,104,99,109,103,95,113,120,102,111,107,112,96,112,99,101,104,98,104,102,92,107,117,103,113,102,99,105,97,96,107,110,100,102,113,101,103,104,97,97,104,114,105,99,109,119,113,103,125,114,110,117,105,104,96,101,96,106,97,107,108,101,96,122,103,109,124,107,95,103,100,100,108,104,107,89,113,109,105,95,103,99,108,107,101,105,74,102,104,114,112,109,109,112,120,97,105,107,111,105,99,97,105,116,104,112,115,106,107,110,103,111,100,114,111,95,108,116,107,100,106,105,101,88,108,80,106,104,122,114,110,107,106,115,108,99,118,107,100,103,104,87,93,97,96,105,99,110,100,99,98,108,99,103,96,107,102,104,108,99,106,107,106,114,111,105,104,104,106,106,113,99,96,103,98,100,111,99,84,108,111,119,91,97,99,102,96,95,106,108,86,101,102,99,113,92,99,99,103,101,102,104,116,105,102,99,104,114,101,101,99,104,112,104,104,96,112,106,94,96,83,101,98,92,89,97,103,106,117,106,101,114,97,97,97,104,102,101,114,104,98,101,104,120,104,87,104,113,90,117,94,107,100,95,99,106,111,103,105,109,99,99,117,104,110,109,124,108,108,96,101,117,111,109,116,100,116,109,104,105,89,95,106,107,105,108,105,104,99,97,89,102,88,107,110,108,109,104,104,107,100,110,102,113,76,107,129,92,108,91,94,115,97,106,93,106,102,112,92,105,99,101,104,103,104,105,102,106,108,133,108,106,104,109,111,89,116,103,102,104,101,114,100,102,109,101,111,107,111,103,99,107,117,104,99,98,104,108,125,107,112,106,101,107,113,96,97,103,104,88,117,96,112,92,101,93,99,116,111,101,112,103,104,110,107,102,114,111,100,103,116,99,109,110,108,99,103,100,92,106,96,101,108,112,108,117,114,107,111,113,108,110,139,106,77,101,106,105,111,97,106,97,101,108,99,87,97,123,102,115,100,111,92,102,102,102,115,94,111,113,99,102,100,113,104,103,109,105,99,102,107,104,100,100,101,112,113,105,99,95,111,104,99,107,111,110,97,110,99,111,107,95,108,103,100,112,106,105,113,113,101,94,96,98,106,95,112,111,100,106,102,103,100,102,90,113,109,104,104,98,107,94,114,112,106,109,98,79,98,103,99,121,108,113,101,97,113,109,101,107,102,114,109,105,95,103,99,94,90,106,105,109,113,90,105,111,101,107,101,105,104,105,104,111,102,78,120,100,99,113,95,85,97,106,113,95,115,96,108,95,96,117,117,112,104,101,108,98,110,106,112,110,121,105,105,88,95,99,98,119,104,103,115,90,101,104,102,99,102,115,105,108,96,98,103,101,112,110,107,93,102,103,106,99,118,107,104,113,108,113,111,116,99,104,107,112,114,84,105,99,96,102,102,117,99,100,104,112,120,103,103,106,103,113,101,118,105,108,100,113,105,108,111,102,103,93,110,111,101,114,125,106,95,102,95,101,103,108,114,114,97,109,110,111,111,115,104,98,105,99,94,108,102,109,124,94,107,102,99,93,100,111,117,101,105,101,103,107,104,101,102,117,110,105,103,111,95,95,102,105,112,100,106,101,106,106,102,109,96,109,95,95,83,105,99,104,114,92,103,104,110,112,99,102,99,103,112,112,108,97,117,106,102,79,108,87,89,121,107,100,109,99,101,104,104,106,95,99,108,102,113,109,95,111,96,108,113,102,110,107,78,105,104,103,115,119,102,100,88,117,95,106,99,110,110,109,107,101,104,101,114,107,110,99,99,107,111,103,112,102,95,107,107,93,111,100,105,101,104,96,105,100,117,90,105,99,110,91,107,107,100,108,100,106,108,106,106,117,101,113,103,109,104,100,107,95,97,120,116,96,115,117,114,103,101,98,111,100,81,95,115,98,113,101,99,97,100,113,92,99,104,107,107,106,101,97,104,113,113,101,108,112,99,95,107,103,107,93,93,83,115,108,96,98,115,101,119,92,117,109,94,116,104,103,105,83,112,114,107,105,114,108,108,113,99,116,101,102,113,107,113,99,105,108,102,101,103,107,111,107,107,110,106,115,104,100,95,87,115,106,120,118,106,105,101,103,94,97,94,113,102,98,110,105,98,107,112,101,110,100,99,129,108,98,96,112,104,99,109,105,97,94,103,102,107,107,116,106,99,99,107,99,108,116,123,103,100,117,99,100,105,105,97,110,107,108,106,105,116,108,104,106,94,98,102,97,94,98,100,102,116,104,105,111,116,113,101,99,102,114,100,102,116,107,93,108,108,96,96,106,99,115,102,99,108,97,100,107,108,107,119,92,111,105,98,102,106,104,120,113,108,91,111,104,109,95,95,91,106,109,103,95,95,100,104,102,100,115,104,99,106,106,106,94,107,96,72,105,99,101,103,99,121,105,91,104,109,107,116,98,102,108,107,106,113,108,107,107,107,114,112,102,95,108,110,106,105,107,115,109,99,109,99,117,110,72,107,91,103,102,106,102,111,117,111,99,114,107,101,95,110,107,101,112,95,104,104,92,111,97,107,102,99,91,106,104,103,107,97,106,105,85,99,100,104,105,99,112,108,107,107,115,113,112,93,90,99,112,91,110,102,95,98,114,111,102,108,111,106,100,100,107,104,92,113,113,107,98,103,90,117,111,108,97,105,93,111,104,111,106,106,103,107,106,117,100,104,101,87,92,105,99,112,104,90,96,108,86,103,108,95,100,99,94,113,99,97,105,95,96,109,104,110,107,111,116,123,107,106,98,107,106,110,99,83,105,100,116,116,98,103,108,108,101,128,104,102,102,103,95,92,105,107,95,100,109,109,102,117,116,108,109,109,95,87,113,101,81,109,110,104,109,111,114,95,119,103,107,118,100,99,91,99,101,97,107,115,109,112,98,92,113,95,102,104,109,107,111,110,102,110,110,113,99,107,107,95,106,103,108,99,108,111,104,115,102,111,117,103,110,112,113,101,95,112,101,113,100,106,99,104,112,103,110,112,110,113,102,100,118,120,102,101,99,111,103,100,106,110,97,104,103,110,107,100,96,105,108,107,109,106,95,103,107,102,102,109,115,98,130,97,69,114,92,101,103,102,102,103,95,102,113,100,107,106,93,101,112,103,108,103,119,100,112,110,84,105,103,105,107,106,108,98,108,105,99,118,89,106,106,99,99,101,96,91,98,115,110,113,116,111,94,91,100,102,102,104,105,103,119,120,119,103,95,113,102,103,99,98,106,109,93,107,106,99,106,106,96,95,103,98,117,100,102,108,114,110,94,93,100,103,72,92,114,97,113,105,110,113,113,101,104,103,98,105,91,102,106,106,98,113,99,109,101,109,103,95,106,106,98,102,117,105,106,101,118,98,72,104,105,74,86,98,100,102,102,105,99,105,100,108,103,110,103,100,107,99,113,100,96,109,104,79,103,100,115,111,91,105,105,95,113,105,98,114,105,103,100,100,99,107,106,93,102,99,92,113,98,88,102,108,107,106,101,86,100,85,103,105,93,110,102,105,97,103,105,99,94,102,90,119,100,105,113,107,95,94,99,111,88,104,104,110,83,101,96,82,112,115,102,101,120,105,102,109,103,98,96,115,120,93,107,90,107,110,113,102,93,107,103,99,107,99,106,100,119,109,108,107,106,95,106,105,96,106,89,99,99, +509.31659,105,107,96,99,96,96,100,99,110,106,104,102,107,96,115,104,102,102,93,93,105,106,83,114,108,123,100,97,105,99,104,100,124,97,112,80,67,96,105,114,105,106,107,85,99,112,90,94,106,88,113,109,103,100,97,101,102,102,103,94,98,118,103,104,94,108,97,113,113,78,103,104,104,104,102,120,97,98,84,102,100,107,104,91,107,98,110,106,112,98,100,101,95,121,102,95,106,101,106,101,97,100,106,87,105,97,98,96,99,109,99,99,105,96,101,100,99,92,109,107,105,97,99,99,113,113,111,112,107,98,102,103,100,103,102,103,104,102,98,109,96,103,102,90,97,105,97,98,97,111,102,99,114,110,112,97,99,101,104,104,111,98,113,112,103,102,110,97,111,112,96,103,100,100,86,99,98,106,109,115,105,110,107,108,108,107,102,92,103,101,106,105,66,112,99,114,102,102,87,104,100,108,110,110,79,101,102,110,103,107,110,113,103,110,109,101,98,100,98,94,109,105,100,108,109,101,113,105,102,107,91,102,102,107,106,109,102,103,108,95,105,91,111,108,103,102,120,110,105,101,105,116,101,105,106,98,110,91,110,112,121,118,98,101,73,100,102,108,101,93,101,108,111,101,94,105,105,107,100,96,106,93,103,101,108,98,94,109,110,97,100,103,99,106,111,123,112,117,105,106,97,105,107,112,103,109,91,118,116,117,95,106,114,99,102,103,108,101,97,112,105,109,100,87,119,104,109,99,109,108,127,94,104,109,99,102,109,103,110,103,102,105,106,106,117,113,94,112,106,109,115,98,73,114,111,109,118,101,105,112,97,100,108,107,107,107,104,105,104,107,113,107,112,122,106,100,113,105,106,114,103,100,108,107,95,100,99,103,113,103,124,94,109,112,107,105,104,108,102,106,114,102,104,100,95,97,108,89,100,111,96,96,105,114,108,100,112,107,109,114,107,105,78,111,110,110,101,110,90,106,97,112,99,109,112,91,95,108,102,102,107,108,104,103,85,102,109,102,106,112,93,107,100,102,107,99,85,115,106,109,103,113,106,97,108,110,110,104,114,105,110,112,116,101,107,103,104,101,97,113,104,96,101,91,96,108,108,98,108,86,108,111,107,109,95,97,101,104,105,101,117,107,109,111,104,106,95,105,98,97,105,112,96,87,113,102,113,105,97,101,101,105,107,107,96,116,107,112,107,104,103,131,116,101,103,118,94,106,113,109,101,108,91,110,115,105,110,112,95,114,102,114,110,105,113,101,109,116,99,99,113,113,97,107,106,99,106,132,120,115,100,104,101,106,104,105,109,97,100,103,120,104,109,96,111,111,102,101,94,101,98,106,103,99,117,108,102,110,114,113,108,111,103,107,106,102,104,103,105,99,102,114,121,104,106,103,105,80,106,103,109,112,97,111,105,107,102,99,104,109,111,107,111,104,98,107,101,98,111,105,97,118,100,105,104,99,104,103,121,114,111,105,103,94,101,114,104,113,112,103,102,112,113,115,97,112,99,110,106,109,105,110,113,78,107,113,111,113,111,96,105,75,108,97,99,103,99,67,113,102,102,105,103,121,122,105,110,117,111,97,139,97,111,111,99,108,121,105,102,102,104,99,121,100,104,110,96,104,101,108,115,105,99,105,114,108,74,117,102,113,103,100,103,96,99,113,98,110,124,110,114,100,105,114,105,98,114,106,105,100,108,95,114,103,100,115,113,101,113,113,98,103,106,108,99,102,107,110,105,107,114,99,104,94,100,94,109,117,105,100,104,95,107,111,103,114,100,96,112,113,101,107,103,113,104,120,105,104,107,113,95,110,96,98,105,105,111,93,117,106,123,100,106,100,117,114,96,116,97,107,104,114,98,116,119,98,113,106,102,67,109,110,103,99,113,96,109,104,112,102,101,112,110,108,102,109,106,96,124,117,103,106,92,105,89,89,108,107,115,112,101,96,107,101,92,96,99,107,107,114,111,94,107,110,95,101,117,100,102,105,99,92,117,109,104,104,101,110,113,106,121,107,107,99,110,97,97,101,97,99,110,111,86,98,117,107,115,93,98,85,103,113,111,105,107,104,103,98,96,111,103,103,99,107,109,100,106,103,79,91,103,114,109,99,92,104,106,106,116,107,109,105,120,108,96,99,102,100,106,108,100,102,106,112,113,114,94,101,105,95,112,121,112,107,110,102,103,99,105,109,101,105,117,94,101,107,115,98,106,106,107,103,100,96,104,104,113,99,105,99,103,124,102,129,95,103,95,111,106,96,99,105,95,110,115,118,99,103,93,85,93,118,104,106,104,107,109,98,100,92,118,108,112,92,107,103,95,104,109,104,113,113,110,106,109,94,102,107,105,109,100,108,96,105,91,105,111,100,105,99,93,110,113,116,101,67,103,102,107,113,121,110,106,105,113,73,95,95,118,100,94,102,101,98,91,105,122,112,96,101,91,96,97,98,103,111,114,90,119,107,110,106,115,106,104,96,97,112,110,105,115,121,103,95,98,110,99,87,108,108,100,128,102,86,111,103,97,99,116,113,100,110,93,92,97,98,103,97,116,105,110,102,120,95,98,101,106,97,109,96,99,101,104,105,106,111,103,111,107,106,114,104,102,95,109,101,121,113,99,102,105,104,110,97,102,102,113,108,106,110,109,107,101,103,111,106,105,91,119,111,108,104,96,109,103,117,115,106,93,107,97,107,113,112,99,100,111,96,105,110,111,103,105,102,102,113,104,111,99,108,105,120,107,117,113,115,103,107,109,102,117,121,113,112,102,121,110,116,113,113,78,106,106,104,111,97,103,97,109,94,112,98,106,103,97,106,92,103,96,106,103,108,106,125,102,106,105,111,101,103,73,107,97,104,105,98,105,124,95,108,103,108,113,115,107,99,103,122,115,105,102,99,112,115,104,93,103,106,111,121,111,104,80,105,115,100,100,103,102,104,99,123,106,104,101,107,104,105,106,101,99,108,104,95,105,104,103,117,99,100,116,100,102,110,108,111,107,100,103,103,121,105,102,107,106,92,108,96,108,102,104,103,87,116,108,97,118,94,99,107,112,102,110,93,98,102,105,99,109,116,104,114,113,116,113,99,86,107,109,112,95,102,108,109,109,103,120,112,110,104,107,97,95,104,100,103,97,100,97,84,101,109,124,113,95,100,106,94,106,106,100,110,99,113,115,104,117,100,110,102,114,105,107,99,104,106,109,103,103,111,107,111,116,103,108,102,97,106,112,102,110,108,115,120,110,114,113,103,104,106,95,92,105,110,101,102,103,111,106,91,105,107,104,111,112,101,112,103,113,96,113,98,100,94,109,105,97,108,99,111,98,117,96,109,109,106,107,99,112,98,92,116,107,100,99,110,101,107,106,109,92,108,104,110,100,96,90,106,116,114,103,104,114,105,106,111,107,108,121,103,111,93,98,108,108,97,126,109,110,108,112,110,112,106,98,102,107,101,100,95,110,109,101,102,108,108,87,103,105,82,110,109,132,111,107,119,108,99,100,94,109,113,111,91,89,134,101,110,111,106,112,103,104,110,104,112,104,107,115,124,110,105,112,111,108,103,100,102,100,99,104,101,91,111,104,98,104,99,103,103,101,103,104,107,106,95,105,109,105,112,105,99,113,100,109,89,111,103,113,108,95,100,98,100,103,117,96,105,94,111,106,106,117,94,104,100,111,106,107,81,115,113,109,109,102,102,116,106,113,92,84,106,104,94,113,105,96,105,106,92,99,109,109,87,102,111,108,105,107,98,113,108,103,104,101,101,106,88,108,101,116,106,108,106,107,106,127,108,103,95,95,102,104,101,103,105,112,96,104,120,100,102,98,99,81,95,119,109,106,104,97,105,93,99,112,105,97,103,109,105,99,101,102,116,103,93,105,106,105,101,93,108,107,111,92,102,119,92,108,97,80,101,104,93,94,105,96,101,103,127,106,104,94,106,109,131,111,95,106,112,99,105,100,92,107,99,105,105,102,104,109,119,105,100,104,101,103,114,105,109,120,109,103,109,102,98,108,99,106,102,107,96,101,116,117,113,103,98,123,100,92,102,103,107,111,103,101,98,106,91,112,107,105,109,106,111,103,102,108,103,99,95,103,115,127,104,120,118,105,105,106,100,113,96,96,100,105,115,105,110,109,90,106,98,104,115,98,101,101,102,105,119,105,91,106,107,99,113,105,105,105,103,100,107,101,89,102,83,107,97,103,105,114,104,107,106,105,103,115,103,100,99,112,108,103,107,107,102,101,123,96,108,111,103,89,113,111,108,94,106,105,105,69,109,101,100,103,92,99,109,104,108,104,121,109,113,100,107,109,110,104,104,125,113,100,109,107,102,110,118,94,98,111,119,105,99,106,104,108,99,107,105,107,103,93,108,106,101,109,108,106,96,109,109,102,113,106,104,99,109,111,104,95,98,93,103,98,105,114,107,102,113,94,100,105,111,109,108,114,106,104,105,97,108,111,102,109,98,102,124,89,90,89,106,112,102,107,110,99,100,97,100,110,96,98,108,108,98,110,94,105,104,109,105,113,110,105,99,102,106,107,104,113,113,91,93,103,109,111,116,85,95,109,118,116,124,112,103,101,109,106,102,100,104,102,107,108,122,92,102,98,112,94,111,115,107,98,109,103,104,104,109,101,106,103,109,103,93,108,89,108,99,103,102,106,95,99,103,92,91,107,110,106,121,105,101,100,117,109,100,105,100,103,129,124,120,98,102,112,113,105,116,109,88,110,113,109,95,111,101,98,106,123,106,104,107,102,103,93,111,97,98,112,108,115,102,92,100,98,104,123,85,89,104,83,113,104,92,113,103,117,108,92,94,113,104,94,110,116,110,100,101,101,107,109,110,109,104,103,102,118,101,111,99,98,98,91,97,98,100, +509.45724,104,109,101,106,71,109,98,119,100,101,108,94,101,106,95,104,99,108,106,100,109,100,101,103,101,100,106,91,107,107,106,120,102,106,94,103,97,112,110,114,109,98,95,104,99,119,101,103,96,98,103,105,93,101,94,88,97,102,97,107,94,106,99,98,102,107,94,111,107,97,101,110,80,117,96,108,110,104,113,107,82,109,109,103,102,109,107,111,109,98,104,95,116,96,99,106,99,103,99,103,100,99,98,101,101,105,108,121,102,113,90,107,103,106,114,102,101,109,107,109,98,103,111,98,105,114,120,112,119,99,102,111,96,111,99,99,83,107,106,97,90,106,103,101,105,108,103,111,95,104,110,87,105,105,116,125,95,106,107,101,103,108,105,117,110,105,100,99,104,99,107,100,108,107,115,102,102,99,126,91,98,108,97,99,97,102,114,96,109,101,104,96,95,96,108,104,112,103,100,111,91,117,106,111,98,113,109,107,113,110,104,107,106,112,101,103,99,101,96,99,117,115,92,95,101,109,106,102,117,106,99,99,114,110,107,121,100,118,112,96,113,103,107,105,102,102,114,109,111,102,103,97,110,122,95,101,102,117,105,107,95,113,116,100,106,99,99,100,101,108,105,106,105,105,101,94,104,104,104,112,112,98,96,100,95,102,104,105,115,99,101,105,100,107,127,98,110,111,99,106,98,96,104,98,86,101,108,110,104,108,109,121,124,106,106,98,118,114,105,110,100,109,104,102,102,110,105,103,111,89,102,103,120,96,125,102,104,95,104,104,106,105,114,103,104,100,103,111,112,97,97,106,103,107,98,121,103,114,109,105,107,108,95,118,107,99,98,114,105,106,103,109,117,114,105,97,112,111,112,108,110,120,112,112,118,99,100,94,105,111,113,97,96,112,106,95,114,107,106,106,107,106,99,92,99,110,105,98,102,78,96,97,95,102,105,109,112,97,109,110,104,109,108,109,98,110,107,102,110,106,91,104,108,103,108,101,105,114,94,111,102,119,105,117,111,141,96,106,105,121,82,96,111,117,99,120,108,101,103,94,97,111,112,106,122,110,111,110,107,106,101,112,111,113,111,103,111,103,107,106,99,103,103,96,113,102,114,100,102,105,113,106,105,111,95,97,107,96,100,98,106,107,100,106,112,105,100,114,112,99,120,108,99,112,103,108,102,105,99,106,110,108,108,87,96,108,106,107,106,111,103,107,94,105,97,99,104,94,120,112,96,111,100,99,104,92,109,99,104,109,90,108,112,107,103,95,120,108,110,95,110,102,109,116,105,113,100,106,100,96,101,101,105,102,109,107,87,111,107,82,105,88,119,86,111,109,113,101,104,92,96,122,105,112,113,107,109,113,105,119,97,107,102,112,97,110,105,104,98,96,92,124,106,113,113,101,105,97,105,108,112,116,101,108,107,97,96,112,98,109,114,103,102,116,121,110,98,104,103,115,89,100,95,96,101,94,102,114,109,98,105,121,109,105,113,113,107,116,109,118,112,105,107,100,100,107,110,107,110,107,110,114,97,96,99,105,106,108,101,120,110,101,105,97,100,104,102,84,109,106,103,116,111,110,104,101,94,112,103,98,107,108,97,107,107,114,100,99,103,97,110,106,105,99,103,104,114,105,108,115,106,102,101,108,100,107,99,121,109,109,71,113,91,108,109,116,100,103,108,100,112,107,110,103,111,111,98,108,98,114,125,115,111,82,101,102,90,91,99,105,114,103,107,112,105,129,108,109,105,109,105,95,120,106,104,121,107,106,114,104,110,98,111,107,94,114,101,112,99,105,99,115,103,108,101,100,108,111,116,108,107,104,96,108,100,102,107,94,114,113,118,95,108,104,116,100,99,95,78,116,107,109,101,99,103,111,104,101,108,102,113,101,107,103,102,116,105,103,113,103,110,108,109,103,110,116,103,99,92,98,106,104,110,109,100,101,100,106,107,109,98,105,113,112,107,107,98,111,111,102,94,109,102,94,98,107,111,112,109,117,115,111,104,105,110,109,97,116,109,100,100,108,100,112,108,98,105,103,82,91,100,112,101,111,96,109,108,102,96,100,102,114,120,94,106,109,92,107,100,110,113,111,106,109,98,110,120,101,95,97,110,99,107,105,108,111,105,100,116,117,101,111,107,112,103,94,101,116,114,109,103,105,105,98,108,102,112,100,97,111,105,92,106,112,119,99,112,103,107,112,99,97,94,101,110,121,95,102,108,106,96,109,100,106,101,108,99,113,104,104,104,102,104,106,95,106,104,98,121,97,124,104,104,99,103,116,116,101,124,109,105,112,112,103,109,80,110,105,106,108,112,107,113,87,98,115,107,100,106,99,126,105,110,96,98,102,98,112,99,99,117,109,99,115,105,111,109,100,110,103,97,108,100,103,98,113,104,89,109,103,112,100,90,105,108,109,109,77,99,98,98,105,92,116,112,107,112,107,109,101,96,107,91,109,99,105,109,97,103,110,115,109,112,103,104,114,105,120,113,94,100,100,124,109,113,79,99,107,118,94,113,99,108,113,110,100,101,114,103,107,113,105,113,108,112,108,105,102,99,88,109,109,96,103,102,105,100,100,102,119,100,99,94,93,92,104,100,104,102,98,111,102,109,107,109,113,104,103,111,100,117,116,102,98,106,109,105,94,122,99,111,103,97,105,107,104,108,115,107,102,109,112,100,102,104,118,112,96,114,105,108,96,113,126,108,102,103,100,111,99,98,103,93,111,91,104,104,112,94,102,109,105,109,110,106,105,113,110,108,98,122,110,99,113,105,112,105,104,100,112,94,107,110,105,112,97,97,109,108,111,114,108,103,94,103,111,111,102,102,108,113,112,106,111,115,96,104,106,96,117,112,95,98,104,115,91,100,100,107,107,111,112,110,96,107,97,103,115,96,117,113,102,116,100,108,98,102,102,119,100,102,103,116,102,104,112,109,118,121,107,92,109,107,111,99,96,113,113,94,102,112,108,103,105,104,96,96,109,109,108,111,100,111,109,114,104,103,115,113,96,110,105,114,115,113,106,113,103,104,108,106,113,115,93,103,101,115,104,99,107,98,101,106,109,101,106,103,102,105,105,111,109,105,108,102,98,104,104,110,97,103,117,82,101,111,101,96,102,113,101,94,103,101,102,104,99,107,112,94,102,98,108,117,100,109,102,104,104,113,116,128,108,109,99,100,103,104,108,109,108,100,111,89,95,113,108,110,108,95,105,101,97,106,103,106,105,100,102,107,99,94,104,106,121,107,116,105,100,109,98,108,109,97,103,96,99,113,112,113,108,108,108,104,106,106,108,118,98,88,107,101,99,104,103,107,101,100,101,93,107,116,102,98,106,96,104,99,109,100,100,106,106,108,103,99,98,106,103,99,82,105,104,104,99,118,101,112,105,108,107,104,108,101,103,103,99,106,93,106,106,120,102,100,104,99,107,111,103,106,115,99,110,109,106,97,99,102,104,117,99,113,98,107,103,101,108,101,101,117,105,102,103,102,120,110,108,107,102,111,105,120,109,103,109,106,111,87,118,102,112,96,104,109,82,105,105,97,97,94,109,111,71,96,119,109,106,101,107,111,102,99,116,116,104,108,113,109,99,102,110,90,111,107,107,111,97,108,102,115,146,101,93,112,96,102,115,99,102,105,105,107,95,94,123,92,105,108,106,104,108,113,103,98,101,95,100,108,99,105,101,101,97,93,105,103,109,110,100,101,89,100,110,102,98,115,103,108,96,99,100,112,108,107,101,104,95,100,102,106,116,97,92,120,113,107,96,114,94,116,109,99,110,108,115,109,105,103,115,104,108,114,109,86,98,112,102,95,106,93,92,104,98,109,76,94,103,109,120,114,101,110,94,117,108,109,108,108,94,96,99,115,97,105,106,107,107,108,77,101,106,110,102,105,103,111,98,113,102,98,104,100,108,112,103,106,111,109,102,102,101,108,103,96,102,111,95,105,104,100,96,96,102,94,98,103,112,116,100,109,101,103,125,108,110,102,104,103,101,113,99,114,98,105,103,111,97,107,106,111,106,115,108,102,100,101,100,99,108,117,98,102,106,106,117,101,107,108,109,100,113,92,106,106,109,108,127,100,117,100,90,107,102,103,112,100,104,115,112,110,100,96,113,105,106,97,99,102,101,112,105,107,113,111,99,100,108,100,104,96,99,108,110,107,103,104,114,102,103,101,102,97,114,104,112,112,106,88,99,97,102,102,99,110,95,105,94,115,104,102,95,91,107,112,106,92,104,101,108,121,107,112,142,110,111,106,100,114,90,101,111,109,93,110,107,105,104,106,94,105,117,112,116,111,89,111,112,107,99,105,103,108,100,103,109,113,108,107,95,112,98,104,94,111,110,98,87,98,100,107,111,101,100,102,102,110,99,96,109,101,92,91,98,104,92,97,101,103,110,121,103,105,115,104,106,99,102,110,94,99,100,96,94,122,102,107,97,98,102,109,100,94,99,74,110,104,102,104,102,106,106,91,100,110,104,106,107,114,99,95,128,96,107,100,92,101,91,103,101,104,102,105,113,103,95,100,98,105,107,106,113,95,102,112,107,109,122,104,104,108,110,98,113,102,98,107,113,115,111,99,104,98,104,115,108,66,103,103,113,105,107,112,98,98,93,99,111,117,108,112,113,105,102,78,99,90,89,106,101,98,91,112,92,100,94,100,103,100,105,112,94,98,111,116,91,99,93,88,106,108,102,78,98,95,109,100,100,104,106,102,100,104,92,92,91,85,95,107,104,99,102,95,109,110,109,108,102,109,100,102,100,106,97,109,98,104,94,107,117,109,106,106,113,89,108,96,97,112,108,75,110,112,103,107,112,97,109,94,104,102,97,100,97,101,104,111,95,72,109,93,111,101,93,115,102,96,106,110,117,100,113, +509.59793,115,105,117,87,98,109,113,108,98,109,110,99,82,117,110,96,105,105,103,104,105,103,114,106,100,88,97,113,113,116,98,111,82,95,108,96,95,98,112,107,110,95,107,102,98,108,102,106,94,106,99,103,101,107,108,85,96,95,97,94,120,118,108,102,101,104,105,125,104,102,118,111,106,105,84,106,93,98,104,107,113,105,101,104,100,95,114,91,106,109,115,109,121,97,99,119,88,110,99,102,96,107,99,97,102,101,107,107,103,114,111,97,111,108,110,99,97,95,120,113,130,112,92,100,96,100,113,106,93,112,104,106,100,104,102,102,106,106,104,113,85,110,109,102,107,105,124,103,112,105,100,95,103,91,83,102,100,107,103,107,102,108,110,96,112,107,98,101,104,104,117,106,105,112,113,92,92,102,110,104,111,103,102,100,99,104,93,96,92,102,97,95,95,113,112,104,84,100,106,100,105,118,109,105,94,105,110,105,112,110,97,100,107,117,99,94,105,108,107,104,113,100,113,109,94,107,108,110,105,113,90,112,108,103,94,105,105,104,114,101,98,100,107,119,103,105,109,122,106,106,114,104,109,105,101,114,103,105,95,110,95,104,91,101,93,107,112,102,101,105,117,99,101,110,102,103,100,103,102,102,101,109,106,109,95,94,119,103,113,96,103,99,115,100,118,109,116,106,119,99,112,105,103,116,110,109,106,99,108,100,113,111,113,109,108,109,101,102,115,117,100,101,108,108,116,88,90,110,107,118,111,106,106,115,113,116,102,108,104,110,103,113,103,100,110,98,88,110,107,103,111,111,96,103,101,106,107,112,101,100,108,107,117,100,97,95,101,106,108,112,101,109,105,106,92,105,105,106,105,109,109,106,108,109,104,90,102,113,110,90,107,92,104,107,107,113,104,96,105,113,100,109,100,104,108,103,100,101,95,102,108,104,106,103,109,107,101,111,106,98,106,100,104,100,107,110,102,108,110,114,114,91,105,102,105,102,102,111,104,92,110,109,112,103,99,108,111,112,104,111,113,104,94,103,109,117,98,103,106,111,95,103,106,116,103,100,99,105,99,102,116,102,113,104,108,111,96,115,116,121,101,102,105,103,117,99,108,108,112,104,105,112,94,105,94,110,122,102,95,106,96,100,101,103,95,110,92,109,106,110,113,113,113,98,101,101,103,83,110,105,105,97,99,121,96,103,110,109,101,110,99,106,106,125,95,97,116,98,118,111,99,104,108,110,108,114,90,110,110,112,100,111,100,102,93,112,103,103,105,117,109,100,101,107,107,100,110,114,110,116,97,102,99,111,97,104,104,104,109,109,91,101,101,100,107,102,107,104,115,99,117,110,88,100,106,107,107,95,101,98,106,115,108,104,104,101,106,109,109,100,111,116,108,100,109,106,100,96,115,108,108,104,100,110,103,107,110,88,103,113,107,97,104,103,100,114,98,103,109,115,113,119,100,114,96,84,100,100,106,110,105,102,101,115,106,106,103,113,100,100,109,94,104,107,104,99,108,104,87,111,114,108,101,116,104,106,125,107,101,107,103,115,107,104,113,104,97,98,104,79,110,108,106,112,96,111,114,103,110,101,113,71,109,106,99,110,104,112,105,104,113,107,100,107,106,101,123,104,114,111,105,99,123,115,110,103,109,105,102,116,92,105,96,116,107,105,106,92,110,101,104,91,110,103,101,111,109,112,96,100,117,98,92,114,107,113,107,110,109,107,101,107,96,117,91,105,100,117,100,115,117,103,108,92,105,106,103,106,108,109,103,110,113,95,99,90,108,104,100,120,108,88,101,102,110,104,115,99,105,121,108,102,99,113,109,111,105,105,109,114,115,98,106,106,122,99,122,106,95,105,104,115,101,106,103,116,107,114,110,99,98,92,111,100,105,102,90,99,115,111,105,100,111,110,98,106,111,93,104,102,114,109,106,108,97,105,105,94,91,133,105,104,117,96,111,112,96,105,120,102,108,107,102,105,103,109,117,105,112,92,112,90,94,112,99,104,102,116,110,108,110,100,105,109,100,107,107,100,102,126,102,113,109,110,111,105,104,102,99,99,98,107,112,114,109,91,109,98,109,107,110,101,100,100,99,100,111,83,79,102,102,112,116,119,87,103,101,113,104,114,94,108,99,110,111,104,115,95,106,98,117,105,117,108,113,103,104,102,97,106,95,109,105,95,102,74,71,101,103,108,102,117,100,92,99,99,99,103,92,107,105,103,99,104,116,115,94,101,92,103,101,110,118,109,94,135,90,109,91,101,110,98,78,106,101,99,107,106,92,105,105,112,92,110,100,111,111,100,104,98,107,110,106,93,115,113,107,103,118,109,105,99,101,111,116,95,90,98,95,104,104,110,118,107,109,115,107,102,100,102,104,112,109,112,117,111,96,117,106,99,105,108,107,112,91,104,105,104,110,108,108,127,118,103,106,111,97,100,113,109,107,112,102,109,111,109,144,101,116,115,104,112,96,108,98,113,98,89,99,103,97,105,93,110,99,114,104,101,116,107,100,114,105,109,110,100,90,100,101,107,100,101,95,95,81,108,125,102,96,103,104,110,102,111,86,102,100,105,92,97,105,103,103,101,108,105,80,113,101,101,109,105,109,112,110,105,106,88,99,99,99,97,102,89,104,126,97,110,98,102,96,109,113,95,109,101,100,98,123,113,114,108,109,113,106,106,117,113,106,101,98,96,118,103,108,108,103,92,101,112,109,105,105,95,120,103,104,100,98,100,98,113,99,120,107,103,114,114,96,103,112,111,93,115,116,105,112,115,100,111,101,103,109,99,122,110,113,99,99,109,98,122,98,88,107,109,107,95,90,99,102,107,108,100,110,95,93,96,103,106,108,107,113,109,120,78,113,107,100,104,123,106,98,102,108,96,104,103,96,119,103,99,107,100,109,105,104,101,110,103,108,111,105,95,93,109,111,104,113,95,117,109,95,96,107,105,105,97,106,97,102,115,104,105,99,104,107,100,109,109,100,103,97,99,95,106,99,99,106,107,109,106,96,105,116,100,103,105,106,101,84,93,109,99,115,102,101,101,103,96,113,101,103,111,109,100,99,110,103,104,105,106,108,103,96,90,109,112,84,109,102,112,107,102,102,108,108,113,115,102,104,99,92,93,105,103,110,110,92,100,109,90,108,112,99,116,113,96,96,92,113,97,111,104,116,108,105,105,110,106,104,106,104,93,103,96,101,104,98,101,90,106,95,123,106,102,117,88,110,121,99,103,112,124,96,107,100,113,109,113,90,127,105,103,107,117,104,100,101,108,104,102,111,108,107,112,102,102,110,99,97,110,106,115,103,105,87,110,103,91,80,107,106,95,100,99,99,96,110,102,105,110,106,93,103,105,100,113,106,92,108,110,112,98,108,103,100,98,107,102,97,107,104,99,107,105,103,100,107,100,104,79,103,115,110,104,100,110,105,110,103,144,114,107,108,112,103,93,101,109,97,90,109,97,86,112,107,102,102,98,106,100,106,106,105,104,101,105,94,100,108,98,102,104,100,107,97,100,91,112,95,104,109,109,114,106,103,101,115,118,107,100,109,109,105,104,103,103,99,103,104,109,109,78,132,99,110,115,108,99,88,121,104,100,112,102,105,103,113,111,97,101,103,104,82,101,105,96,105,107,98,82,104,103,108,102,104,111,95,107,103,113,89,106,95,96,102,102,90,93,98,96,100,103,107,112,108,121,103,108,99,98,103,103,107,111,102,95,110,103,108,106,112,96,118,101,89,87,97,99,109,103,111,139,97,111,87,98,120,102,95,107,106,109,79,95,100,113,72,107,103,103,102,116,101,113,127,95,109,104,102,100,99,110,102,117,109,99,95,96,100,126,104,102,102,99,127,108,97,110,103,84,111,109,98,105,97,110,94,100,105,99,117,117,109,102,98,105,111,101,94,102,112,98,111,123,108,116,109,103,100,99,102,105,99,101,105,104,100,98,102,101,100,108,79,114,108,109,102,117,116,108,95,105,102,96,106,112,102,110,111,100,109,100,99,103,98,97,114,104,98,107,98,97,106,105,102,111,107,96,104,104,101,89,118,113,105,108,107,102,117,104,96,99,104,113,98,115,120,102,107,104,103,92,128,113,115,103,99,104,91,91,100,106,106,121,108,111,110,94,115,108,99,99,98,104,109,107,113,99,104,109,106,108,105,104,111,106,101,95,113,111,111,101,104,108,112,101,100,117,103,98,110,102,102,108,99,112,110,109,109,103,106,112,99,106,97,101,101,97,110,100,107,107,102,113,112,115,92,106,102,107,113,75,104,100,105,102,101,106,100,114,107,99,94,112,103,101,99,103,102,101,98,105,98,95,108,102,98,105,108,104,110,111,103,102,101,96,101,104,103,103,98,116,108,108,103,125,99,111,95,95,97,104,106,107,107,110,107,111,116,121,88,92,99,94,101,116,103,112,110,106,118,102,118,90,102,97,104,90,106,98,110,99,97,100,102,110,100,104,96,110,107,95,98,101,69,100,106,102,86,105,101,116,97,121,104,109,100,104,104,98,103,116,98,99,92,94,102,113,104,103,96,95,97,99,105,102,98,107,112,101,103,109,110,107,99,106,103,110,116,106,95,104,96,93,96,107,98,102,106,104,116,95,98,101,101,93,95,108,99,99,114,102,96,92,112,108,120,111,98,106,95,114,112,93,109,100,96,98,99,111,107,100,103,103,103,93,104,94,101,95,104,115,99,107,128,100,84,102,101,94,81,99,93,89,113,106,102,95,95,108,102,111,110,111,116,99,77,94,122,107,106,109,94,110,104,108,122,103,110,86,109,106,112,100,114,108,103,107,109,114,95,102,88,103,106,102,68,106,87,104,118,94,105,110,105,116,133,106,110,104,98,103,100,103,98,100,94,127, +509.73859,126,108,101,100,103,107,102,125,99,105,106,90,105,98,87,119,103,108,102,101,105,96,110,102,96,108,98,95,106,105,108,100,101,102,108,95,112,102,95,111,92,99,100,100,100,107,106,96,87,105,102,99,116,105,111,90,106,100,116,106,91,105,99,86,109,105,100,94,106,93,98,107,111,99,97,121,100,94,112,113,112,98,104,100,108,102,100,99,109,102,93,105,96,102,111,98,103,97,104,102,113,121,94,108,103,104,103,107,96,107,103,112,129,99,94,99,98,105,103,106,100,105,100,103,115,105,97,105,107,110,91,108,115,96,108,109,113,105,106,85,87,102,102,105,101,98,108,96,97,100,97,104,107,98,104,100,95,96,96,116,107,107,110,96,113,108,101,103,91,106,106,103,98,106,106,103,114,97,116,97,98,109,110,90,116,101,105,102,95,92,99,90,99,108,99,102,95,108,100,112,106,102,102,113,108,141,100,120,105,114,107,98,117,99,105,103,99,76,104,112,111,99,96,107,85,109,105,112,109,98,98,108,103,91,111,99,119,103,102,96,98,91,108,107,100,111,99,104,110,107,106,112,95,103,104,105,104,120,97,96,111,110,106,98,100,108,101,108,81,94,97,104,102,99,107,95,96,106,105,103,106,94,106,120,127,103,105,105,101,109,113,98,104,114,129,109,102,99,104,110,113,113,107,117,106,113,113,106,106,101,93,129,107,114,106,105,97,106,114,91,98,99,105,110,120,114,110,111,90,96,100,83,108,101,95,85,117,98,98,103,108,100,99,99,94,101,108,95,102,101,101,99,103,108,97,111,102,98,108,117,105,109,111,99,104,120,104,102,103,113,102,102,104,101,99,109,99,109,100,84,98,106,99,112,107,99,115,101,104,111,111,83,97,115,104,100,83,95,109,107,101,120,101,91,100,106,105,119,111,90,104,94,99,86,98,102,98,107,115,106,116,100,87,98,103,106,108,103,106,122,95,114,108,100,107,108,91,107,104,109,115,98,104,106,106,105,99,95,103,132,111,116,98,96,96,120,108,101,100,106,100,114,95,109,109,116,110,100,104,91,113,98,95,101,111,96,96,135,116,104,100,109,102,110,107,107,104,120,107,87,120,103,120,104,104,100,96,103,104,103,110,111,104,106,98,98,108,110,110,102,104,106,114,124,109,109,98,96,99,100,111,106,104,90,100,106,107,110,104,106,103,104,103,106,105,109,103,99,76,115,104,100,86,102,104,103,98,107,103,113,106,105,89,102,99,105,95,112,96,104,117,106,108,117,109,98,101,99,107,109,105,98,106,84,90,107,109,104,99,104,107,98,115,102,110,106,109,98,96,98,96,99,101,106,102,102,104,98,105,96,105,101,107,112,109,103,103,107,106,108,106,109,117,109,103,112,103,104,94,105,105,101,112,117,107,103,93,107,110,106,95,120,100,130,94,105,104,99,99,102,111,112,112,99,90,113,114,102,101,109,100,96,116,105,100,100,110,116,92,118,125,104,107,105,105,97,86,95,109,68,104,100,108,98,98,101,114,99,115,123,112,100,105,106,98,97,102,98,106,100,109,104,110,112,92,117,104,95,98,93,102,97,107,95,99,106,106,110,95,113,99,102,109,90,110,101,112,105,106,99,112,101,104,104,103,100,95,99,99,103,102,102,107,94,107,103,104,104,106,98,101,100,96,100,98,109,112,110,138,98,100,88,104,107,104,111,103,112,114,96,99,104,96,104,95,96,100,93,102,97,104,105,94,99,99,106,101,107,110,91,106,114,114,100,90,109,105,108,90,109,103,109,95,109,104,116,120,99,112,112,114,99,92,98,110,104,99,117,97,99,99,113,106,105,99,100,104,97,105,105,100,108,109,108,111,109,113,106,90,110,93,96,105,99,97,110,92,106,108,113,109,104,101,99,103,96,101,98,103,99,96,109,117,111,110,113,115,104,88,102,119,83,100,101,105,101,103,100,91,102,97,103,89,107,103,93,99,100,106,103,114,109,82,105,102,105,91,111,98,109,106,111,108,116,103,102,104,98,98,104,102,102,103,99,118,105,113,121,99,102,87,101,109,117,107,106,99,105,116,108,125,105,99,103,96,106,99,105,106,105,100,97,110,111,129,109,95,95,113,101,104,95,100,98,101,106,106,98,97,103,108,103,113,102,90,116,102,99,101,107,111,99,106,101,105,100,100,101,88,95,110,102,125,101,99,104,94,105,102,107,97,96,107,101,121,103,112,102,105,108,98,111,104,102,107,94,110,102,108,109,97,112,97,102,114,110,105,108,98,101,96,113,109,86,116,98,116,101,110,97,96,101,118,94,117,104,108,105,112,98,108,75,103,105,109,97,102,116,101,107,117,104,115,103,86,114,87,108,63,81,112,110,93,106,88,108,98,101,114,94,104,109,103,97,107,102,101,96,82,99,108,105,99,90,91,105,109,96,91,97,100,107,99,105,105,121,108,108,104,109,116,99,98,97,95,102,106,113,113,99,115,96,95,108,95,113,101,103,103,98,107,113,105,108,110,117,102,108,94,102,103,100,88,107,96,100,102,113,99,110,95,110,113,104,108,111,94,98,101,88,104,99,102,113,104,115,103,108,100,109,103,108,116,112,109,98,106,112,102,102,98,98,112,102,105,117,108,100,107,100,97,107,108,105,99,103,101,105,103,103,100,99,95,104,106,102,107,109,115,106,109,99,106,106,119,93,102,99,99,105,123,107,111,111,94,109,93,111,104,106,106,104,105,110,105,109,95,102,113,96,117,115,98,109,99,104,112,113,109,97,102,95,88,104,111,113,116,109,113,101,110,108,101,102,94,100,108,103,98,109,109,100,92,113,107,94,102,99,105,106,105,102,107,109,95,85,97,102,106,107,104,103,105,112,110,112,103,105,99,106,103,99,115,109,109,93,110,97,104,98,105,102,92,100,113,110,97,102,109,106,123,102,95,107,81,103,103,107,95,111,98,101,103,98,111,116,96,116,112,90,103,105,110,94,110,100,100,106,120,107,100,107,103,100,102,87,102,104,102,102,110,110,104,99,103,104,110,112,106,109,95,107,95,98,95,94,111,104,101,106,102,117,101,102,108,101,95,109,117,97,111,99,109,96,104,99,116,102,105,96,110,90,116,109,109,100,109,100,105,98,102,71,101,96,106,106,109,99,99,116,109,121,102,114,92,102,108,111,109,125,92,98,99,104,99,88,102,109,98,101,104,103,109,117,100,115,109,106,104,76,105,112,109,114,109,119,114,110,93,106,115,101,107,105,104,104,102,105,97,103,115,93,117,113,100,106,102,96,117,107,118,95,104,109,103,99,103,98,106,102,76,111,109,102,95,117,82,108,117,102,100,129,121,106,95,103,115,104,97,104,100,111,102,104,101,100,103,65,108,116,112,106,111,115,99,102,101,101,94,110,95,96,98,103,100,103,110,95,100,102,100,112,104,111,105,111,113,94,87,97,98,107,99,107,101,109,105,87,95,104,111,109,110,111,107,109,112,103,90,90,88,93,100,111,102,98,104,105,113,112,96,111,102,111,117,111,94,116,96,117,111,106,103,103,107,102,100,97,127,103,109,103,97,106,106,94,100,106,104,109,101,106,105,98,101,119,106,103,95,113,108,106,115,101,94,95,106,99,99,88,106,96,105,110,76,106,99,97,111,116,98,116,104,107,102,95,102,98,103,100,111,107,98,113,98,99,107,115,101,112,111,118,101,96,105,102,104,92,106,101,109,115,101,100,102,110,105,92,108,102,103,107,103,102,118,95,95,95,105,109,95,102,104,92,105,104,114,102,107,112,98,103,104,94,89,94,105,113,100,101,107,101,113,112,87,117,117,102,105,97,95,113,106,102,105,98,112,108,99,106,106,100,99,101,102,99,100,96,109,93,109,99,106,107,100,106,106,95,106,95,109,104,111,116,103,108,103,99,107,103,113,115,103,110,92,104,98,103,102,102,97,100,106,107,101,100,100,106,110,108,104,95,99,101,96,94,94,94,101,99,112,103,108,94,101,111,108,97,106,96,112,102,97,103,117,103,114,111,115,120,104,107,104,95,95,111,115,95,107,98,102,91,111,104,94,101,104,101,99,105,95,99,114,109,98,117,116,111,104,116,103,104,106,107,96,102,96,102,103,96,103,88,106,107,104,105,110,113,97,95,103,108,120,110,108,105,113,99,110,108,108,91,102,120,101,119,116,110,102,110,94,95,91,105,105,101,111,111,110,101,101,101,115,103,101,100,104,91,106,116,109,105,117,105,99,107,105,94,84,104,110,113,106,103,118,104,105,98,90,109,107,83,107,99,113,102,108,99,105,110,96,102,106,133,103,109,93,102,101,102,105,109,106,102,109,107,105,106,101,80,89,111,120,114,98,117,105,106,109,108,102,98,103,114,93,106,102,110,101,103,106,100,99,109,107,106,105,100,105,116,107,87,98,112,109,99,96,91,116,99,96,113,104,105,120,94,109,101,80,111,106,100,98,104,109,96,99,105,109,83,89,95,104,105,107,108,105,117,71,101,101,98,102,122,68,111,108,96,99,110,101,101,98,105,99,94,104,92,97,95,89,91,99,108,112,95,107,105,99,119,102,121,114,94,106,96,108,116,91,107,104,108,105,100,106,92,102,91,113,116,96,97,88,98,95,110,110,107,110,99,97,92,98,98,103,102,108,104,95,104,103,105,104,128,111,103,109,96,109,98,67,101,95,102,114,109,110,106,99,98,102,96,107,91,95,96,95,100,100,107,96,103,113,106,125,102,116,103,99,107,100,107,107,95,113,106,102,106,105,98,101,104,93,100,113,125,107,105,103,108,98,98,98,91,105,103,103,100,109,101,108,104,101,93,100,102,101,113,86,100,113,97,108,76,106,97,112,96,98,108, +509.87927,101,104,108,112,87,107,89,98,103,95,110,96,91,100,101,98,88,102,108,95,112,100,118,102,105,109,104,108,96,122,102,100,105,67,95,98,103,106,118,97,110,104,96,110,110,114,102,102,97,107,97,100,101,101,79,76,101,96,101,110,106,102,94,110,99,114,96,101,103,118,98,109,85,99,86,113,104,106,95,105,96,105,109,103,103,107,102,105,89,109,97,95,92,102,100,111,113,99,95,106,105,117,103,112,107,104,139,101,104,109,101,108,103,82,106,108,104,109,114,104,99,102,109,106,106,102,103,91,104,107,111,107,106,113,106,119,109,107,105,100,100,110,100,119,88,97,95,92,93,104,110,95,100,111,107,90,90,96,108,111,99,110,110,111,110,104,119,96,106,106,101,115,105,113,109,102,103,113,122,110,96,116,98,105,96,102,100,103,99,102,111,107,112,97,102,110,94,109,94,87,109,106,113,105,102,109,110,121,110,113,80,93,108,108,113,109,96,105,105,97,104,102,92,99,89,112,122,102,93,105,117,93,106,113,83,100,107,106,114,104,82,98,107,100,120,99,128,114,102,105,105,109,99,107,109,105,96,97,96,110,112,111,103,108,100,108,121,98,120,97,108,95,105,91,103,108,119,108,103,111,113,128,106,101,100,107,93,108,107,107,107,107,104,99,114,103,105,99,109,104,99,95,95,114,98,105,109,103,99,110,92,113,100,108,108,107,100,102,104,100,89,107,94,114,115,115,93,93,103,110,100,103,106,107,91,102,119,113,113,103,76,104,93,110,102,109,125,107,104,108,109,117,106,100,100,113,103,101,89,110,127,103,108,98,105,99,109,114,102,106,100,113,105,101,110,111,104,107,109,100,112,118,114,109,114,103,109,101,102,103,109,89,98,107,96,92,94,98,100,104,106,88,102,106,105,100,118,103,104,98,103,103,103,104,108,109,108,92,107,106,102,105,95,111,101,94,94,74,98,110,105,111,100,98,97,106,103,105,101,102,107,96,98,104,91,110,109,106,110,108,104,99,102,107,117,100,98,97,106,100,103,104,107,106,101,103,120,108,103,99,102,114,99,102,91,123,109,104,117,105,121,103,112,99,104,96,99,98,106,102,107,103,114,104,98,102,94,95,96,103,113,106,104,107,107,94,97,109,102,110,104,104,112,114,100,104,104,107,117,117,108,112,115,97,115,91,97,125,109,107,112,111,105,107,96,103,102,113,94,111,95,107,97,98,111,105,106,107,113,103,95,101,98,106,99,106,105,84,101,105,103,109,93,120,96,109,93,121,114,102,104,106,103,99,101,106,110,101,104,104,104,100,99,105,104,110,111,109,108,99,104,101,90,99,106,103,111,103,107,105,111,99,98,97,99,103,95,96,101,111,108,114,102,110,109,94,90,94,109,110,102,102,111,97,103,112,113,110,108,109,97,105,107,103,97,85,90,109,104,99,115,96,109,109,105,97,101,99,113,103,105,138,109,101,94,106,104,113,117,107,103,102,98,105,86,108,105,106,93,107,102,99,112,99,97,99,104,97,104,100,111,100,105,103,104,94,89,82,86,107,97,99,102,106,113,112,102,113,118,91,112,104,108,109,105,110,105,111,87,110,107,107,106,104,102,107,99,106,105,100,100,105,112,112,105,96,104,108,99,118,105,105,102,101,96,99,98,99,115,105,118,68,94,100,96,100,109,103,98,109,117,114,113,103,103,107,102,78,107,103,108,107,105,105,104,108,113,112,105,105,117,92,109,101,103,106,85,101,89,99,116,106,104,111,104,103,106,105,105,102,118,114,99,107,110,105,100,104,117,117,99,99,95,105,113,116,114,103,104,105,112,99,102,95,103,100,106,103,105,103,103,100,104,114,105,106,108,102,118,104,97,95,101,103,99,102,118,99,104,100,108,101,109,111,103,110,104,112,110,101,114,103,102,90,101,147,147,114,96,113,95,94,116,102,108,102,106,112,103,110,99,108,97,107,105,108,112,97,103,98,101,97,90,95,95,102,99,103,102,114,117,102,101,113,110,100,116,105,102,106,94,104,108,107,104,92,94,109,105,107,103,109,115,105,107,100,100,107,96,115,113,111,102,106,99,105,96,85,103,111,103,102,103,101,92,97,104,104,98,111,98,82,88,102,100,105,104,111,109,103,96,105,107,111,108,95,105,111,95,109,108,104,109,97,111,102,113,100,95,90,102,104,102,95,104,87,103,104,103,107,85,113,112,90,90,109,90,104,114,107,108,103,110,100,107,96,102,101,104,104,111,98,109,110,105,104,112,98,91,115,97,110,98,114,113,99,95,106,107,99,107,103,106,93,104,121,108,105,107,109,112,99,104,105,94,113,102,110,105,95,118,82,97,105,109,96,100,102,106,98,109,107,105,91,109,87,99,112,102,100,100,110,107,82,112,97,104,99,102,102,97,116,109,115,115,112,108,109,119,112,104,98,105,120,112,102,106,112,102,109,121,94,95,92,99,109,105,103,108,96,99,101,115,106,105,107,98,100,104,104,99,118,108,105,102,95,102,109,96,105,117,100,104,100,103,99,98,113,98,70,102,111,117,97,106,95,99,105,114,95,93,107,104,103,107,101,96,97,100,100,105,105,111,100,109,100,107,104,107,104,104,95,106,99,99,100,100,98,106,106,105,96,102,103,101,97,106,106,105,98,111,102,88,104,99,106,109,101,117,107,97,98,103,97,102,98,105,94,108,107,101,109,93,96,93,93,102,91,99,99,101,105,105,100,116,111,103,115,105,103,105,112,104,102,98,104,108,94,102,106,107,105,98,107,96,111,100,109,88,98,113,99,95,93,100,100,105,101,106,97,117,116,99,98,100,108,92,101,96,107,107,97,98,100,100,103,89,105,99,114,97,110,101,110,106,97,102,103,109,105,101,103,119,90,109,93,102,104,106,100,94,106,97,112,99,109,112,103,108,93,97,100,97,106,109,89,104,115,100,99,99,109,99,104,111,106,100,105,105,105,109,103,92,96,118,106,108,104,91,101,112,96,94,112,112,98,113,101,98,104,98,107,104,92,102,118,108,104,121,98,131,113,96,105,113,103,103,94,103,98,104,118,103,99,102,93,115,98,105,113,113,106,100,102,102,99,98,101,98,98,99,104,90,107,96,74,115,102,98,105,115,98,102,110,107,102,104,98,113,105,108,96,90,101,95,102,101,109,110,109,102,107,103,99,111,98,104,103,105,105,106,106,88,102,113,114,109,100,99,97,115,109,101,104,114,108,94,112,112,93,109,99,100,101,100,98,106,107,107,95,102,97,108,111,101,103,98,101,104,96,93,106,106,101,123,97,96,106,96,96,104,93,106,107,109,116,100,102,98,95,104,106,110,99,104,101,110,104,103,104,103,95,104,87,102,105,106,102,105,106,101,108,107,100,97,111,112,99,94,109,101,99,108,102,106,79,83,100,108,98,101,108,95,111,98,102,100,99,101,120,108,105,112,107,109,102,107,110,102,112,107,102,102,103,108,111,107,113,120,99,102,99,98,102,95,113,96,106,108,95,104,106,104,105,108,110,105,115,101,123,112,91,109,100,116,106,85,85,108,97,98,105,89,112,97,97,98,105,96,108,101,97,95,99,99,94,100,101,116,96,112,105,111,113,100,96,96,98,97,105,95,105,91,109,98,99,98,109,104,109,97,101,107,115,112,106,99,90,116,103,101,98,105,108,104,106,102,98,100,94,104,95,104,70,101,105,102,104,106,97,98,119,95,101,99,108,103,111,104,96,100,104,112,88,103,102,103,91,107,106,84,104,113,113,102,114,102,112,105,98,101,92,94,102,99,93,98,96,105,103,95,106,111,106,110,97,105,108,107,94,121,100,99,95,99,99,105,103,111,110,105,101,106,105,99,97,96,109,109,94,112,103,105,116,112,91,106,92,101,104,114,91,95,114,89,105,106,112,102,96,94,104,95,96,97,100,105,107,94,110,106,104,97,106,103,94,114,101,106,106,104,83,103,104,106,94,98,100,109,106,117,94,108,113,104,105,107,101,99,110,98,104,91,108,102,108,102,97,100,113,91,102,108,103,99,105,101,102,103,105,110,106,102,107,103,109,95,105,108,95,101,90,97,127,93,101,101,101,107,103,103,104,98,107,105,114,106,100,100,105,105,98,96,100,98,106,105,108,105,100,107,104,100,114,103,110,78,99,107,103,108,105,101,108,98,110,112,92,91,115,109,101,102,95,105,98,103,102,107,94,105,88,113,118,109,92,103,101,103,96,96,106,96,104,107,98,98,97,94,99,109,112,113,113,95,102,89,98,116,113,106,102,112,101,105,107,108,108,111,104,105,112,91,104,95,99,115,117,113,108,111,91,102,113,97,102,104,114,99,106,113,111,110,112,100,110,103,106,111,100,108,89,99,109,98,109,93,94,104,101,96,110,97,83,89,94,116,100,95,111,109,102,92,106,115,98,113,96,110,97,99,105,106,104,122,121,99,103,125,102,94,102,109,99,94,104,104,94,105,102,100,92,103,99,89,97,98,113,94,102,109,105,104,95,110,107,102,110,99,102,98,103,105,108,100,108,100,107,101,93,103,105,97,108,110,98,111,99,93,113,100,110,106,105,113,95,109,109,114,97,110,95,106,100,98,97,100,108,104,102,115,105,99,88,105,98,112,110,100,98,103,113,107,99,103,96,108,101,98,95,84,109,105,80,107,104,89,100,65,101,103,103,110,101,112,108,127,94,115,102,108,105,102,96,111,99,116,98,98,101,99,110,95,113,102,98,100,101,101,109,92,96,109,93,94,91,98,103,104,134,99,104,89,111,123,95,100,91,102,109,101,106,92,99,93,81,103,102,130,91,103,91,111,105,101,113,96,106,104,125,102,102,95,101,105,94,107,95,102,110, +510.01993,105,86,121,104,101,78,107,121,102,91,100,100,104,109,104,94,88,117,100,98,105,100,101,117,101,105,91,110,90,112,111,106,106,107,99,103,104,99,103,100,108,108,95,101,103,105,101,102,98,95,106,105,93,105,102,102,97,101,115,101,101,113,100,94,99,102,95,106,100,92,101,102,94,111,103,103,101,103,122,106,99,118,101,99,94,88,104,128,102,104,115,94,107,103,107,104,99,113,103,99,97,107,105,105,90,92,84,102,109,98,100,102,109,102,97,102,104,106,101,102,103,100,102,121,107,111,92,106,95,104,98,106,95,103,103,102,105,112,112,102,105,88,108,105,103,102,112,101,98,95,97,101,93,100,87,103,101,105,109,94,103,101,109,99,100,107,113,95,109,101,108,103,105,101,83,106,112,106,122,110,103,94,96,102,101,94,97,99,105,97,103,96,96,101,100,108,99,107,95,103,99,103,96,98,106,118,94,109,107,94,103,97,95,99,100,111,88,108,111,103,105,109,110,102,104,94,102,116,106,104,101,101,108,102,105,122,115,104,93,105,95,100,104,94,101,101,110,111,100,112,109,101,90,101,99,101,108,111,102,100,101,114,101,102,100,110,114,103,91,96,108,99,104,115,103,101,110,109,100,102,113,118,101,100,94,99,98,114,104,93,101,101,113,116,100,106,108,117,97,100,106,92,113,120,95,108,113,103,95,97,101,109,105,106,106,108,113,117,104,101,105,101,100,100,93,110,102,86,110,101,110,117,102,110,120,99,110,96,99,121,103,94,76,94,108,100,98,116,99,102,97,99,114,101,108,100,109,112,103,99,98,101,99,105,103,107,112,110,103,104,111,99,121,109,99,113,105,115,98,93,103,105,96,107,112,113,92,90,105,90,106,103,99,113,95,102,97,111,98,103,101,99,102,105,95,104,100,100,107,106,106,90,98,107,99,103,102,107,95,91,93,108,90,98,95,101,101,94,93,114,101,117,105,100,106,103,99,110,111,108,110,111,104,108,108,107,110,95,112,113,116,112,101,115,104,99,113,105,99,110,109,103,104,101,107,101,105,95,93,103,93,100,102,115,94,92,89,118,113,112,107,100,118,98,103,101,110,102,91,95,109,100,113,105,103,120,99,110,95,97,109,111,106,99,87,113,97,96,112,98,112,106,110,120,111,111,104,101,92,105,102,98,130,112,108,96,109,101,101,104,94,102,96,90,99,108,109,100,99,106,100,74,95,104,87,108,111,95,112,99,104,107,101,99,103,104,106,109,103,127,114,104,107,102,100,111,117,101,111,102,105,94,108,103,97,114,111,96,105,106,98,82,101,91,113,98,110,108,109,98,106,105,110,113,99,108,107,96,104,122,112,110,98,95,102,104,104,114,69,104,105,109,104,98,107,96,114,106,110,103,106,114,116,96,90,98,98,104,104,96,112,95,95,100,112,113,109,77,100,106,112,101,107,107,97,98,114,96,106,104,102,110,113,105,111,100,98,88,106,113,108,104,110,88,104,108,92,86,100,101,102,95,100,101,100,121,113,110,96,93,104,91,104,101,98,66,98,108,109,106,100,103,101,110,95,102,92,108,105,98,107,99,103,102,92,100,101,96,88,99,100,112,111,100,102,102,97,140,94,98,100,87,116,109,94,95,96,100,107,112,103,99,106,95,95,103,113,95,106,117,106,107,100,98,109,75,106,103,114,112,115,94,109,96,104,107,95,99,98,100,106,102,109,96,106,108,100,117,102,100,104,94,108,110,105,109,101,103,101,105,109,91,100,84,95,100,98,104,110,107,102,107,104,100,112,105,100,87,105,96,99,106,96,101,109,103,98,117,105,101,108,103,105,95,98,103,100,109,101,118,109,124,100,106,104,102,94,107,115,96,103,103,98,110,97,107,99,110,105,103,99,102,122,123,99,111,97,90,114,98,111,111,98,99,83,107,108,106,98,99,111,103,98,103,106,99,104,69,104,113,107,110,102,105,106,106,113,89,107,94,95,113,109,111,105,106,98,110,105,107,103,99,99,96,111,101,96,115,100,107,108,104,110,79,111,97,95,91,97,106,102,102,110,103,86,97,97,107,101,105,96,102,101,95,108,101,111,102,93,106,103,112,121,103,103,93,105,112,113,104,109,99,101,108,97,103,105,112,97,116,104,100,109,113,111,104,93,105,107,103,112,94,105,103,100,105,102,100,99,109,105,113,107,102,104,104,100,96,84,99,105,106,110,81,101,91,92,105,104,97,104,109,107,98,105,111,99,117,90,116,108,109,109,106,104,102,106,104,112,108,102,111,117,103,97,101,99,109,105,102,106,111,100,88,109,98,108,104,113,101,106,97,105,104,104,91,99,103,108,114,99,99,109,100,95,99,106,106,91,104,104,101,114,95,99,98,106,97,113,91,107,114,125,104,94,73,108,83,94,101,99,122,105,109,102,89,107,94,94,106,108,95,104,110,101,110,90,101,110,109,109,104,98,92,98,101,97,89,99,94,102,99,110,71,104,110,99,109,104,99,101,115,99,96,109,106,115,101,107,99,99,100,104,103,104,98,110,99,99,99,103,101,118,83,95,102,102,102,94,94,95,106,103,103,93,103,107,87,105,109,108,101,116,102,104,104,100,98,117,98,95,93,72,88,100,104,106,106,91,106,103,105,108,102,109,106,109,98,110,86,105,112,97,115,111,108,108,110,101,102,93,103,115,102,103,106,108,102,115,104,109,104,98,105,112,111,86,94,109,107,98,105,109,105,104,113,102,96,104,101,85,110,94,91,113,94,102,104,106,116,99,110,102,93,96,101,103,132,101,105,98,100,105,117,101,106,98,114,108,106,111,106,105,107,100,107,91,102,107,110,91,100,101,116,110,98,105,107,111,94,110,96,100,117,95,100,112,99,99,113,108,105,99,99,102,96,106,97,117,98,104,105,95,99,100,106,107,109,108,96,100,122,115,95,102,105,104,99,103,94,88,103,101,99,109,104,100,80,104,97,110,116,99,109,94,106,102,109,107,97,105,101,97,106,114,109,95,95,105,107,100,101,116,92,104,109,105,104,89,106,104,106,104,109,109,96,105,106,96,99,102,101,106,113,106,109,110,113,106,113,113,113,120,106,112,100,92,104,98,103,103,104,111,109,105,98,109,105,107,94,100,102,100,105,130,95,97,92,100,99,105,101,96,102,84,98,109,120,106,93,103,84,100,113,104,101,84,107,117,94,121,91,96,102,92,91,110,73,104,98,106,100,103,103,94,95,103,106,89,119,99,84,101,96,96,91,112,97,111,102,102,92,97,99,103,107,106,100,112,100,98,103,102,101,102,117,108,98,92,100,91,113,105,91,96,109,109,107,105,99,87,106,110,102,96,92,89,103,104,110,119,100,96,94,102,104,101,108,109,104,91,104,105,105,102,102,71,102,116,107,98,98,98,101,101,109,107,103,101,102,106,104,109,103,100,104,107,96,106,102,108,102,98,99,108,103,116,105,99,101,107,112,98,108,113,107,104,107,101,108,110,101,97,106,106,111,106,101,96,98,95,99,102,102,110,108,99,105,97,113,105,92,99,97,108,100,94,104,109,106,99,106,116,73,113,103,106,95,109,115,95,104,108,101,116,99,105,113,103,87,101,115,110,104,107,93,98,101,100,119,101,100,103,100,91,96,91,102,100,106,87,108,110,109,99,112,101,102,102,110,114,109,95,104,100,104,103,101,108,106,103,113,105,103,103,110,108,99,105,97,109,97,80,97,105,106,96,105,105,100,98,103,104,102,112,96,99,122,102,106,113,111,87,103,111,100,106,106,103,91,106,102,106,107,100,98,105,107,95,107,102,108,112,105,94,100,123,102,104,98,113,107,96,103,109,91,95,95,96,101,110,107,104,113,100,98,98,108,115,107,93,98,101,106,94,96,100,99,104,100,99,104,110,113,93,110,101,107,99,103,102,98,113,111,106,105,102,107,88,109,107,105,104,99,91,101,103,103,107,98,105,117,103,117,105,112,104,89,100,108,109,104,99,94,107,105,109,91,104,78,113,102,103,99,104,117,104,98,120,115,98,111,109,106,108,92,98,100,99,103,113,111,99,107,106,106,109,97,101,103,109,102,102,94,104,90,98,91,102,130,109,91,95,102,99,100,108,112,102,99,92,91,97,98,95,106,113,101,97,94,107,102,94,96,110,105,104,98,110,112,106,94,107,86,94,97,98,122,100,101,116,98,106,103,109,111,113,112,97,108,128,98,109,100,98,105,102,95,95,108,102,93,113,100,102,99,101,89,91,101,104,113,98,105,99,96,109,105,108,111,100,109,98,104,117,109,105,100,102,109,92,109,104,113,103,104,104,96,109,108,99,86,122,113,85,106,100,99,96,105,95,113,107,103,106,103,101,112,102,106,101,101,93,100,104,85,103,93,117,97,115,100,101,95,110,104,106,105,89,108,100,122,109,93,107,97,95,116,94,97,102,104,112,100,100,98,94,94,110,95,100,97,108,101,98,93,92,102,106,109,106,98,93,100,105,101,100,100,100,105,97,106,81,102,105,100,108,91,102,110,104,109,111,107,90,103,103,109,100,105,97,98,96,106,114,103,111,99,101,112,102,109,96,105,103,108,103,106,119,100,115,104,97,94,112,97,102,89,93,95,94,97,97,77,103,90,98,103,112,111,97,104,108,107,100,101,114,98,101,98,100,104,121,105,124,94,95,107,100,106,91,101,102,99,112,94,103,107,103,98,101,88,113,103,99,102,95,100,89,108,94,101,111,119,100,107,106,111,100,105,98,103,105,91,103,104,90,104,98,93,132,103,115,99,96,94,112,132,92,105,103,116,89,121,102,96,99,102,108,98,102,113,80,105,96,98,109,121,125,110,100,107,119,89,102,116,102,91,113,84, +510.16061,105,100,80,101,109,128,91,110,101,100,123,106,114,97,98,98,104,101,97,106,108,93,102,95,98,99,103,107,121,103,95,112,96,113,111,85,97,106,99,107,105,94,94,102,83,103,97,102,103,106,92,105,95,101,98,99,105,87,105,106,101,101,100,96,104,119,109,102,96,98,99,109,96,110,98,108,95,98,105,101,104,110,89,109,105,105,95,99,96,103,98,98,110,102,102,114,101,100,104,78,104,93,105,96,112,102,93,106,94,96,115,105,107,119,105,88,99,102,102,102,88,95,107,103,99,101,113,108,85,104,116,116,105,114,99,109,102,95,109,114,100,97,94,99,106,96,124,100,101,98,104,84,104,98,103,106,95,93,94,98,103,97,105,102,106,96,97,93,106,105,107,97,106,97,102,113,99,100,98,106,108,109,103,110,99,97,95,89,106,108,106,96,103,95,104,94,115,104,111,100,88,100,95,95,106,103,114,96,100,100,91,97,111,98,102,109,118,109,106,105,83,106,106,104,102,112,107,102,103,103,109,105,94,109,112,104,101,111,99,91,126,109,121,108,90,97,99,96,100,105,96,105,103,103,95,93,113,113,105,99,102,114,98,108,95,102,105,103,105,102,121,101,83,101,104,109,106,109,98,105,102,105,100,103,101,103,89,101,110,107,98,102,111,106,98,107,106,108,106,96,114,100,111,103,103,113,112,109,111,105,99,109,86,113,96,101,96,117,106,106,105,116,99,114,106,104,117,94,111,112,104,97,102,90,109,98,105,113,106,112,113,117,111,97,106,97,95,115,101,105,95,97,120,105,117,113,107,104,114,108,107,95,102,94,112,109,115,105,116,102,103,103,113,113,103,100,100,105,109,114,110,104,88,119,97,106,112,99,99,101,113,109,95,110,106,101,96,107,98,116,114,113,103,101,106,104,101,113,102,115,102,89,109,117,108,99,90,106,107,109,111,101,103,104,104,94,99,102,109,106,92,107,104,110,99,103,94,105,101,106,105,114,99,104,101,102,106,100,114,111,97,104,100,106,111,100,110,110,104,104,105,98,102,113,100,117,109,96,107,107,109,106,99,122,112,97,107,94,103,103,114,120,104,112,110,98,98,104,105,103,106,108,99,93,98,104,91,98,97,97,106,103,98,105,107,108,106,111,104,94,98,114,103,105,109,108,101,93,104,96,100,103,108,99,108,105,107,104,101,104,109,110,104,112,106,102,102,89,103,99,98,109,100,91,110,109,96,100,105,110,99,108,110,107,108,95,106,98,105,98,120,94,101,117,119,104,103,108,103,104,99,110,97,111,99,109,103,105,103,101,99,85,114,103,99,109,108,104,91,106,112,105,106,116,113,109,111,110,101,101,92,101,102,104,107,104,99,96,101,108,100,110,90,95,104,100,110,97,108,115,100,104,118,121,104,112,100,96,97,100,94,105,105,120,100,119,103,106,109,104,110,100,109,98,104,104,103,95,96,99,104,105,116,97,76,109,104,100,106,104,124,123,110,103,93,80,108,96,115,108,103,112,100,95,101,96,109,98,117,94,106,118,116,100,96,98,101,101,98,95,92,118,101,106,104,98,107,111,106,103,110,110,98,106,99,117,110,111,93,126,113,100,109,100,101,99,107,99,112,96,111,103,113,110,104,91,105,109,109,113,108,102,85,94,99,91,95,104,112,102,113,84,109,107,105,110,92,109,104,101,113,89,72,107,109,99,102,110,112,117,95,104,95,111,93,111,118,107,98,95,100,108,112,108,104,104,92,89,104,104,124,96,94,112,102,106,102,105,111,107,108,121,113,103,108,100,116,127,115,102,101,97,109,99,109,120,109,92,104,105,107,107,101,104,109,109,117,105,110,102,99,108,89,113,99,112,98,100,105,110,121,106,101,98,103,110,93,111,103,108,102,94,102,98,107,105,95,100,109,103,91,114,104,109,114,101,84,99,108,101,101,110,98,112,106,110,102,108,116,95,96,107,100,111,102,113,120,117,105,100,108,103,95,100,99,107,85,112,108,99,94,107,106,94,108,103,97,101,98,97,96,98,91,109,105,106,100,98,104,106,110,101,106,103,111,96,102,117,109,103,104,111,100,95,109,87,107,108,89,109,88,91,100,112,112,111,94,113,113,111,117,105,103,109,105,100,99,105,111,103,106,108,103,103,109,116,103,124,96,111,107,99,137,90,107,105,107,113,101,100,101,103,106,116,96,114,118,103,99,110,99,106,106,104,93,94,113,97,107,104,79,99,109,96,87,113,88,106,104,113,100,97,102,102,107,96,113,103,111,104,106,108,87,115,106,108,111,100,102,97,116,111,124,94,106,104,101,111,104,95,108,107,103,94,97,100,100,121,111,102,98,97,102,103,105,96,101,110,105,118,125,84,108,102,92,103,102,109,94,101,96,99,102,103,106,114,108,113,108,105,103,106,103,91,109,101,106,102,107,91,105,107,101,114,100,108,90,100,113,109,94,98,105,101,104,106,104,100,108,128,106,108,119,108,102,98,109,95,101,92,109,120,105,121,113,106,117,110,99,107,103,96,99,102,102,112,96,113,122,109,107,113,105,99,96,92,109,86,97,104,111,97,106,115,102,103,115,101,98,108,109,104,114,109,99,102,116,115,94,103,105,97,104,104,97,111,100,89,102,95,105,99,101,101,114,110,103,109,112,107,107,104,96,126,97,104,112,106,108,116,109,108,120,96,103,109,109,89,108,96,105,108,110,92,99,102,102,112,106,108,113,108,93,98,98,116,94,116,99,104,104,107,109,117,130,102,104,112,100,128,99,113,100,103,102,116,117,101,112,110,113,107,109,108,113,96,102,117,101,105,113,114,100,113,115,110,119,109,100,106,100,117,95,113,103,101,108,107,91,96,107,99,97,106,100,105,109,101,113,108,103,100,109,103,107,99,113,101,125,107,97,105,106,103,98,109,94,108,104,109,107,100,102,104,104,110,113,101,94,90,101,113,100,92,114,114,108,113,99,104,107,111,105,107,109,102,104,102,83,106,109,102,96,102,107,109,110,106,114,102,106,104,99,92,111,97,116,99,98,111,101,106,84,99,72,103,114,114,102,113,113,104,99,95,113,110,115,109,103,95,113,106,99,103,108,94,107,114,101,99,100,100,104,111,108,106,104,108,132,99,81,112,105,121,104,103,97,97,110,109,114,121,99,116,91,104,120,108,109,104,104,108,102,107,103,104,96,101,102,102,106,113,101,80,113,100,102,113,116,103,100,100,109,107,109,110,132,117,90,106,100,109,111,102,112,112,103,91,101,99,116,109,86,107,107,111,107,97,95,99,103,109,102,102,109,118,113,99,105,108,101,102,106,106,104,103,101,99,101,106,96,105,106,106,88,100,96,111,100,104,102,108,122,103,106,94,95,95,112,99,97,112,112,97,107,94,129,98,102,105,104,106,115,106,106,99,98,103,102,105,114,103,106,79,99,113,116,126,101,106,110,102,99,102,105,108,96,104,111,106,109,100,101,112,115,94,112,107,92,108,108,102,101,106,112,105,105,108,93,106,110,100,106,106,119,101,115,108,109,113,110,121,107,113,105,107,102,111,116,108,100,92,98,110,108,102,100,105,100,107,116,104,115,110,87,105,116,113,113,111,98,110,107,107,115,103,107,90,105,107,112,93,102,109,111,105,109,116,97,108,110,104,108,114,98,102,96,94,100,93,107,99,107,107,112,101,121,112,106,90,108,105,93,108,105,107,114,111,110,100,106,104,107,109,100,104,101,110,103,101,94,103,111,105,102,99,99,88,123,108,109,116,97,103,107,103,109,109,102,104,113,97,106,119,108,105,101,96,89,125,96,105,103,108,109,112,103,92,101,110,106,107,117,112,117,100,113,106,96,108,118,106,103,99,99,92,101,103,99,116,101,105,106,117,100,109,103,107,101,100,109,108,100,122,102,104,91,108,107,95,115,113,108,106,98,105,98,101,99,93,92,104,113,111,101,108,103,100,101,113,108,118,105,103,120,100,99,106,110,105,106,110,106,102,96,95,112,101,119,108,100,103,98,105,97,107,101,112,106,105,104,97,94,100,114,93,100,93,113,108,105,114,107,116,109,108,114,98,110,105,102,115,105,98,111,106,114,99,98,103,95,94,97,103,106,119,108,101,113,110,99,115,96,67,99,110,105,106,99,96,101,103,109,103,90,107,82,112,100,91,108,91,109,105,111,113,106,104,115,112,105,99,109,69,102,108,106,104,113,104,100,100,103,107,101,108,102,88,101,99,102,98,102,87,113,101,106,109,99,106,96,116,116,112,103,95,102,98,113,104,116,111,112,100,115,115,115,105,107,99,105,104,104,111,101,109,101,114,116,110,109,107,117,106,103,108,106,109,66,96,107,98,103,116,108,110,106,107,108,95,117,70,113,110,102,97,105,102,112,106,120,101,102,100,110,98,103,98,99,109,107,102,105,115,102,118,111,113,113,102,103,108,107,98,106,103,97,124,106,101,87,99,93,104,102,110,103,89,108,103,103,96,95,92,115,109,104,106,97,112,106,119,106,98,111,113,96,95,109,106,105,98,122,104,106,92,107,106,89,112,97,102,94,105,110,101,103,84,106,102,96,97,88,98,113,114,98,107,107,97,115,117,110,94,98,98,111,109,106,99,90,100,85,113,100,115,98,102,115,102,108,115,111,107,109,107,99,101,91,100,110,111,107,104,102,100,110,96,116,103,101,106,94,111,96,106,119,95,91,99,98,100,99,97,107,92,104,104,103,106,95,100,105,100,106,115,106,99,96,110,99,105,98,114,103,95,91,107,102,93,109,109,87,101,103,116,92,89,102,112,105,106,101,109,97,97,92,106,106,90,111,102,135,95,103,117,88,111,94,103,107,111,95,106,101,105,113,96,97,92, +510.30127,95,94,92,106,96,103,100,97,87,103,130,99,101,100,107,110,97,88,110,102,100,98,104,112,121,109,97,95,107,106,108,102,102,100,109,113,102,103,101,102,102,105,104,104,105,100,96,110,103,103,106,105,107,100,94,95,99,96,116,100,95,100,97,101,99,117,116,106,95,109,108,118,114,112,100,99,99,112,101,101,108,106,104,100,99,98,94,102,102,106,97,106,95,115,75,99,103,93,103,95,109,111,95,101,79,101,97,90,101,110,102,101,108,91,100,102,102,110,100,102,81,102,109,95,104,100,114,94,117,95,94,106,72,93,96,101,93,98,90,106,100,98,97,111,97,102,110,99,91,93,101,100,109,95,104,103,108,103,109,90,101,95,112,95,113,117,100,105,105,96,98,100,96,91,111,89,106,99,106,114,97,105,110,99,104,99,104,84,116,112,104,93,98,111,94,109,112,103,104,108,108,108,102,102,106,115,102,101,104,106,104,119,97,116,117,101,107,111,107,97,96,109,110,110,95,110,95,105,83,110,96,103,99,117,132,122,105,102,111,107,100,103,118,102,101,95,107,116,93,102,117,108,103,109,101,99,107,109,107,98,99,98,93,105,94,107,103,100,100,98,98,121,99,112,96,96,106,111,97,118,96,107,97,106,95,109,91,93,99,103,112,109,117,117,101,105,103,97,101,113,102,113,104,106,92,102,104,92,101,112,104,96,101,107,110,106,96,101,107,85,99,119,102,103,104,103,113,106,105,107,110,100,94,105,114,100,115,106,100,85,105,105,113,99,107,102,111,110,121,77,99,112,115,95,106,103,109,121,99,85,107,96,108,105,104,101,99,101,109,113,89,109,108,99,109,116,112,108,95,80,111,108,93,92,114,108,106,95,104,109,111,101,100,109,108,113,101,100,90,87,101,104,93,112,104,101,110,114,103,103,105,103,111,109,108,100,102,107,113,100,104,94,107,98,117,92,100,94,104,118,100,109,101,94,119,113,99,111,109,107,103,101,101,117,107,107,87,95,113,100,98,95,100,104,95,107,105,107,107,98,115,104,113,107,108,112,99,100,100,105,107,101,109,104,113,102,104,106,108,110,125,119,107,110,100,104,102,102,108,112,101,113,101,104,96,111,109,99,113,100,117,100,106,105,100,100,97,102,106,106,105,95,103,106,97,99,118,99,117,109,110,103,110,103,106,110,104,97,108,95,91,102,97,106,99,103,109,94,89,105,103,106,111,103,107,106,85,104,106,96,99,112,104,112,95,106,107,97,104,113,110,99,99,103,106,113,97,100,101,102,108,97,90,96,103,101,108,114,100,103,99,109,116,96,108,107,106,107,112,110,110,115,102,105,105,102,92,115,91,114,99,101,110,107,119,97,95,102,96,111,103,120,118,110,103,101,106,99,107,112,98,110,115,106,98,102,110,105,111,111,109,112,84,129,105,105,100,100,110,101,107,108,109,124,108,102,101,98,107,110,103,93,105,108,111,107,102,103,119,109,110,110,94,102,130,91,109,102,102,103,99,112,103,95,98,109,108,90,106,104,99,104,103,103,110,101,101,98,109,95,105,107,120,115,103,98,118,94,108,105,95,103,108,94,102,106,117,102,109,112,90,101,99,105,103,105,88,102,94,98,110,109,102,117,98,96,102,106,88,107,99,111,109,104,109,100,101,112,118,100,113,105,94,106,105,99,110,112,90,118,107,109,108,86,102,100,119,103,102,105,105,110,104,102,99,106,107,108,106,106,107,107,109,102,104,105,105,105,92,112,100,103,109,109,108,109,110,98,105,112,114,109,98,111,87,116,105,108,111,101,100,119,102,103,108,111,107,112,100,103,103,101,111,106,105,101,126,121,96,98,115,103,110,117,110,99,94,99,100,107,101,119,101,106,104,112,108,113,101,108,104,98,103,105,108,108,107,110,121,105,113,100,106,104,99,121,101,113,106,100,93,92,98,104,106,99,99,111,125,101,103,103,106,105,110,97,108,100,96,102,107,109,96,96,96,99,103,103,109,101,100,109,111,105,104,104,106,109,99,108,109,113,103,100,105,105,108,100,105,102,102,115,110,104,121,103,109,116,100,104,105,105,109,108,110,88,109,98,107,98,103,110,101,108,93,95,113,102,101,102,107,96,96,98,104,105,116,91,112,102,97,81,116,107,116,105,92,101,99,96,99,117,96,93,117,95,102,94,109,100,112,119,104,113,111,103,103,98,93,105,105,102,102,108,108,99,94,112,114,92,110,115,104,98,107,105,87,104,107,110,107,91,101,110,102,115,109,98,94,118,94,104,103,111,105,104,108,92,96,107,107,105,99,98,112,98,102,103,111,103,107,100,105,109,94,100,103,108,102,94,96,105,97,106,88,103,109,107,96,95,110,109,99,123,99,109,102,111,121,105,128,105,97,106,98,100,125,104,110,99,87,121,92,109,98,112,96,102,103,95,98,76,94,99,105,95,98,105,103,98,104,91,106,121,90,100,108,91,104,98,98,96,113,139,98,106,99,112,105,107,104,109,112,109,105,95,112,112,112,96,100,99,87,89,86,99,109,111,97,112,111,111,107,87,115,88,98,94,101,101,104,91,100,104,89,92,100,115,115,104,103,101,111,103,94,95,109,109,98,101,100,92,91,100,102,114,110,101,99,83,96,100,113,105,89,106,97,102,104,121,116,115,110,93,105,103,113,103,77,106,99,113,102,103,107,98,102,94,97,99,97,103,106,116,99,113,119,97,104,89,113,96,104,105,101,117,110,125,91,103,107,111,94,96,105,117,103,109,98,112,101,113,106,103,106,101,127,120,99,108,98,102,101,87,109,118,98,111,102,102,105,95,108,105,87,104,116,110,104,117,99,99,107,106,103,99,96,108,105,109,111,94,109,112,104,94,106,104,99,106,106,104,120,95,111,113,100,107,101,102,98,104,104,104,105,101,105,96,111,114,95,103,105,99,103,104,106,120,99,98,109,99,108,96,111,114,97,108,98,111,106,100,104,124,113,83,109,120,97,92,97,104,92,110,107,120,108,103,108,113,105,108,95,94,106,104,108,90,95,104,99,106,95,100,93,102,112,106,101,95,102,102,101,96,111,100,111,93,109,97,102,117,96,107,107,95,113,106,101,115,100,99,101,105,92,102,107,100,96,97,105,125,107,100,109,108,103,106,109,108,108,100,113,79,105,103,98,111,99,102,89,102,111,96,98,104,104,108,98,106,102,99,87,102,104,95,99,103,103,97,102,105,100,104,105,107,108,103,94,109,100,108,100,97,94,95,90,108,106,105,99,98,106,108,111,104,121,94,107,102,101,104,98,96,113,113,111,107,108,110,100,120,107,108,117,104,101,109,112,108,102,113,113,107,91,101,110,93,118,98,101,105,102,113,106,102,103,107,111,106,99,98,100,111,103,113,98,95,103,111,98,99,120,103,104,100,101,108,95,97,106,98,97,90,90,106,100,112,101,110,109,98,106,112,99,109,99,96,112,96,136,103,95,94,97,97,109,96,105,99,123,111,76,121,110,106,109,105,112,106,91,115,110,106,111,102,99,104,122,117,96,97,107,103,106,110,98,99,109,102,103,107,91,113,104,101,87,100,108,101,103,106,106,104,96,101,119,110,100,76,108,101,102,106,105,93,102,109,91,109,108,105,112,110,96,94,111,106,105,103,111,99,106,108,81,115,112,110,109,79,107,97,99,98,128,94,103,85,115,103,109,93,96,93,111,102,91,111,111,116,107,96,107,95,115,98,101,100,116,102,101,99,103,97,104,98,101,105,99,110,101,112,91,101,108,102,107,99,101,114,110,105,80,100,109,121,101,105,110,108,90,103,110,96,101,105,113,107,88,102,100,109,106,113,121,91,107,99,101,116,99,108,87,105,106,94,95,102,105,97,107,106,107,102,105,82,101,103,107,101,108,99,115,111,100,110,103,105,116,100,107,106,104,105,113,109,106,112,106,101,112,73,91,104,111,108,104,108,109,125,108,105,88,101,93,104,92,99,99,91,116,103,103,102,101,107,112,95,102,107,117,106,101,101,121,121,98,99,112,105,105,120,102,105,103,109,108,113,96,97,113,112,103,109,121,103,97,111,108,111,100,103,97,97,110,106,102,95,94,100,85,100,99,114,99,109,99,107,109,99,105,103,103,90,99,94,113,104,104,98,96,114,99,89,103,109,110,116,99,95,110,102,96,105,105,103,106,111,107,99,103,101,99,104,97,105,105,115,96,113,96,94,96,98,97,107,102,112,103,102,106,92,110,98,94,92,108,95,100,123,106,108,106,100,108,106,104,113,92,108,120,109,95,102,94,101,103,102,105,113,120,97,102,101,100,110,107,102,104,102,93,113,108,112,98,99,102,107,98,117,99,109,109,112,103,108,97,106,110,117,97,105,110,117,99,102,89,95,89,96,109,106,103,99,94,106,117,92,92,99,102,103,120,108,105,100,101,110,97,92,75,101,106,101,95,82,106,101,106,103,105,92,104,105,105,95,97,110,98,100,102,98,93,101,100,116,105,109,101,100,115,106,95,113,101,106,102,92,105,98,107,109,112,108,97,99,108,96,101,127,88,98,101,101,104,104,109,109,112,100,98,101,102,104,108,94,113,109,125,113,105,98,107,98,114,92,114,114,100,106,94,91,111,114,105,98,113,100,103,98,116,95,105,104,95,112,110,94,99,101,109,110,101,102,101,105,100,96,97,109,100,114,98,103,102,101,100,98,112,114,104,97,100,111,104,102,104,105,107,117,106,104,75,128,107,93,110,82,103,84,105,104,100,83,97,117,101,102,72,114,106,78,98,105,109,94,91,96,109,96,112,97,102,102,91,104,104,103,103,121,95,105,107,108,106,109,101,109,83,107,103,105,109,104,116,76,113,100,104,91, +510.44196,102,99,101,110,113,107,102,103,107,110,116,112,108,96,99,107,94,109,124,95,104,106,103,91,109,98,104,109,91,111,107,110,96,107,107,108,109,101,101,95,103,96,121,111,110,112,104,105,108,100,96,106,106,94,113,99,118,93,113,98,87,105,110,106,114,104,100,108,107,110,108,107,104,107,96,120,111,105,103,117,112,105,99,94,106,122,92,120,105,98,99,104,108,103,103,103,109,98,103,104,90,106,92,102,105,104,99,114,100,95,106,106,111,107,106,101,103,116,116,105,90,108,100,115,103,102,101,99,109,93,101,103,101,102,113,112,104,113,100,102,97,113,110,113,107,92,99,117,102,101,83,105,114,91,112,108,107,107,102,96,98,117,101,107,124,95,109,109,104,100,95,107,129,105,105,93,107,98,103,106,106,111,104,97,110,103,103,109,101,90,112,98,105,105,108,102,107,104,109,99,101,113,106,104,103,112,115,124,120,104,112,111,111,105,126,100,101,108,109,97,109,113,112,107,104,103,102,117,109,112,104,110,113,99,107,94,104,105,93,105,113,106,113,119,102,103,86,83,95,108,108,118,94,110,88,113,113,112,102,98,105,117,104,113,100,117,107,108,106,70,95,95,98,115,110,104,106,110,96,106,105,113,118,103,109,89,101,105,103,100,96,95,118,113,107,109,108,110,128,105,99,105,117,125,115,116,108,110,103,104,107,112,100,103,105,107,107,111,99,98,111,103,109,108,111,97,105,101,112,114,104,92,130,104,104,106,96,103,104,108,109,95,113,97,103,117,108,100,104,111,105,103,103,111,86,98,107,117,97,105,117,102,103,100,107,104,106,112,98,106,116,104,104,122,111,114,107,108,106,97,100,110,102,96,110,107,104,72,114,98,116,81,110,113,99,103,100,90,102,104,105,105,109,116,108,94,104,109,121,102,96,100,106,101,108,99,102,99,100,115,95,102,104,90,98,105,94,100,102,117,97,95,101,107,101,102,98,102,125,113,106,116,94,103,102,109,99,107,105,119,94,105,102,112,122,104,104,106,108,99,95,90,106,113,106,116,110,106,104,104,101,108,113,103,94,114,105,119,99,109,91,108,121,108,95,103,101,106,109,100,113,113,111,112,112,113,110,98,108,109,108,105,94,122,114,104,106,97,116,107,121,98,110,116,103,113,105,108,100,96,110,103,119,107,106,104,117,113,107,115,97,113,101,95,103,103,106,109,95,118,100,96,95,99,123,98,112,96,102,112,90,117,98,95,100,108,110,94,109,96,112,116,113,110,103,99,99,102,101,97,99,105,97,104,111,104,106,97,113,107,110,96,95,93,106,107,105,112,117,108,106,112,104,100,121,108,92,102,113,108,99,100,105,100,107,105,94,105,108,111,101,103,110,108,137,117,99,99,106,105,99,103,98,103,91,89,100,113,110,116,103,111,96,106,102,111,104,102,100,102,120,111,111,112,103,87,105,106,98,109,101,105,104,82,103,107,100,100,114,113,107,113,93,112,99,117,103,91,106,121,118,111,108,101,119,117,110,106,107,103,110,106,117,104,103,110,102,91,112,103,113,105,103,115,103,107,104,100,118,88,102,91,110,118,108,95,114,106,106,104,117,117,101,108,108,97,112,109,102,97,95,96,106,96,99,121,112,100,108,104,109,92,89,112,115,103,104,95,105,102,76,110,96,104,106,103,77,108,104,105,109,101,113,105,99,104,100,99,105,108,95,115,100,109,89,111,100,101,96,104,94,105,100,103,101,114,107,109,99,99,102,105,109,103,92,102,112,112,103,105,111,112,101,114,106,104,112,107,100,99,115,114,98,100,122,115,99,105,110,108,104,110,105,106,110,107,104,111,105,98,99,125,109,107,107,106,106,100,105,115,103,105,105,97,106,99,102,105,106,107,97,115,124,104,97,107,116,105,109,109,120,109,103,108,99,117,106,115,111,109,101,116,122,103,109,111,103,113,107,103,98,111,103,110,107,101,109,109,90,104,118,100,96,114,105,111,95,106,105,113,109,103,106,108,105,104,98,103,105,92,100,113,113,113,101,100,107,105,96,101,99,104,105,105,96,94,110,105,95,103,101,99,117,106,108,101,108,104,108,100,95,109,95,108,90,112,91,97,115,111,101,108,99,105,108,102,109,111,81,121,99,103,113,107,107,104,113,101,95,109,103,112,96,110,99,85,120,110,99,111,97,106,93,106,100,86,109,97,104,83,98,104,103,117,105,95,110,112,107,106,109,113,103,109,92,110,109,92,111,108,109,117,110,107,115,110,108,108,72,104,98,112,97,103,101,98,96,100,102,105,107,110,96,100,102,110,98,109,109,104,104,103,94,105,107,94,106,113,99,108,95,115,108,106,96,107,100,116,109,103,117,108,96,108,103,108,103,110,98,103,96,106,117,101,101,107,104,122,108,107,97,107,119,110,115,91,92,99,99,91,93,105,97,102,109,123,96,100,114,117,112,102,98,99,103,97,102,99,104,109,102,96,120,90,99,108,108,99,124,113,105,111,119,102,109,91,100,108,96,103,101,87,92,108,102,101,112,108,112,101,113,119,102,94,101,100,103,101,105,92,104,93,94,104,100,101,101,97,90,104,107,102,105,100,99,97,110,107,96,104,108,99,104,79,98,108,110,101,107,101,101,91,109,99,108,99,113,95,100,97,98,90,101,105,108,103,124,107,103,103,99,115,108,99,90,110,101,103,100,94,108,105,98,108,111,114,102,96,109,105,98,107,91,96,108,105,94,111,100,97,106,98,102,108,102,96,108,85,106,100,97,116,90,122,100,106,112,105,109,97,99,100,92,90,106,101,104,93,110,102,105,103,86,109,97,108,119,97,96,108,91,98,104,106,109,103,101,98,91,93,113,100,102,109,110,102,101,108,103,109,110,101,105,104,108,93,111,108,98,95,101,104,100,105,97,105,98,96,98,109,101,104,109,110,100,105,105,107,101,96,107,101,94,96,109,134,99,106,108,94,109,111,102,94,107,101,107,109,128,90,96,95,102,122,100,96,108,85,94,116,102,106,109,96,88,103,102,119,110,100,99,118,95,91,98,113,99,107,97,106,85,104,105,112,113,103,98,84,116,106,111,102,103,110,103,102,90,103,108,102,111,107,106,96,100,114,100,102,104,97,93,108,95,99,100,99,108,98,105,105,101,110,107,108,103,105,109,105,109,111,83,128,101,93,109,100,87,108,91,109,95,107,102,102,91,101,100,95,123,107,103,105,104,102,103,108,112,108,94,112,113,98,95,108,106,115,102,104,107,92,114,106,105,106,91,106,98,102,95,81,113,112,108,96,96,108,102,104,106,101,102,94,95,101,106,109,110,117,96,104,110,105,98,91,103,110,116,108,115,82,101,102,108,105,107,93,100,105,104,109,94,94,128,102,97,96,106,101,101,102,95,94,109,102,100,95,108,104,101,104,100,108,103,101,99,106,104,105,106,109,116,116,95,99,97,119,90,96,110,105,121,99,90,114,106,108,102,98,108,103,117,75,116,99,107,106,104,81,110,111,95,96,98,106,101,97,113,108,116,103,109,101,98,109,94,105,113,105,104,101,103,104,109,100,111,102,106,105,90,99,111,92,95,108,104,102,120,94,106,99,97,108,112,113,101,100,99,97,101,105,96,103,92,97,104,100,97,105,100,96,87,111,97,104,118,115,107,109,99,122,103,106,110,116,115,97,114,97,113,88,100,105,95,98,128,104,107,99,111,99,101,112,115,94,99,99,101,90,102,86,117,102,87,92,103,98,104,96,98,98,101,105,103,97,104,99,95,107,104,105,102,90,108,103,98,98,105,98,92,94,103,104,101,108,103,103,108,102,103,100,110,105,96,100,106,95,116,114,105,100,100,88,106,97,105,93,110,118,108,96,94,102,96,102,93,97,104,99,103,93,110,93,114,98,100,105,96,103,100,95,100,98,106,98,116,101,106,105,93,110,96,100,107,104,98,109,106,117,102,106,106,104,101,109,102,104,103,97,94,113,99,92,100,97,102,112,106,93,107,117,112,103,109,93,101,102,110,100,118,96,104,97,102,103,99,108,108,107,101,88,102,101,107,100,98,111,105,102,107,116,90,111,100,104,104,106,99,112,108,105,102,91,111,128,92,111,106,100,103,115,106,98,107,91,112,106,96,112,110,100,100,115,111,90,99,109,97,101,88,103,104,105,95,91,101,102,82,100,102,113,107,99,102,113,95,85,96,98,99,96,88,99,99,105,104,109,92,104,117,106,101,111,105,103,85,91,99,105,104,104,98,95,93,93,110,105,103,105,87,109,115,102,110,95,117,95,106,94,94,91,111,100,91,106,104,106,109,93,98,101,108,103,100,104,101,97,103,108,99,103,98,114,113,120,107,106,112,105,94,117,98,90,102,105,100,105,103,105,112,109,108,108,107,92,106,97,92,98,98,104,97,125,103,101,81,107,115,96,102,107,99,89,100,103,104,99,106,105,116,95,100,97,96,106,111,103,98,101,108,103,99,96,93,97,95,116,111,102,110,93,110,105,91,92,100,105,102,95,111,97,99,102,107,101,99,110,99,92,104,108,114,88,102,105,100,105,101,119,105,115,102,110,104,95,99,112,103,98,117,90,102,108,108,113,101,107,107,108,107,104,94,102,101,101,89,95,89,96,105,92,106,91,115,97,121,108,99,106,110,95,94,103,100,101,100,101,108,81,103,106,104,96,98,100,112,103,95,91,108,113,100,109,100,107,100,95,102,110,101,88,100,103,105,94,83,109,97,117,107,100,108,99,95,108,98,114,95,106,100,106,104,86,56,96,109,89,91,112,96,102,95,113,98,100,100,92,90,98,104,105,99,95,106,99,109,83,101,106,127,96,98,113,98,106,110,105,114,112,108,101, +510.58261,104,106,105,115,97,105,104,105,117,120,99,95,109,112,105,102,107,107,93,105,106,95,125,111,105,126,111,105,112,97,91,106,95,107,105,108,102,116,103,104,97,97,111,107,98,105,101,101,91,101,91,95,88,99,98,96,92,88,98,88,101,100,106,100,111,108,91,115,114,88,104,105,100,111,105,125,91,96,109,100,109,102,91,117,114,97,94,106,99,110,106,102,117,99,95,99,94,108,105,98,100,105,106,109,106,109,90,92,122,96,94,99,103,101,100,90,89,103,103,116,103,90,105,118,110,124,106,91,106,101,101,99,103,99,97,104,103,94,98,100,99,108,99,112,111,106,107,114,96,94,97,98,94,97,96,86,101,101,106,109,113,105,112,97,88,102,99,109,108,93,103,111,92,103,111,103,107,95,106,90,99,110,100,98,96,101,101,94,104,91,105,95,95,104,99,103,99,110,96,102,98,98,109,90,97,111,101,107,109,113,98,99,111,106,108,99,96,109,103,99,106,101,109,110,103,109,105,102,104,96,116,120,111,96,103,97,110,110,104,91,92,98,112,99,109,109,108,101,105,99,95,104,104,100,94,109,111,96,94,102,90,108,103,97,101,86,112,94,85,84,99,100,102,106,103,113,101,103,113,103,103,95,80,100,96,94,97,90,102,109,87,103,98,100,102,107,99,93,114,105,111,102,103,102,105,103,107,91,105,105,88,113,102,113,93,101,99,103,98,97,97,110,96,111,97,95,98,87,117,124,99,94,102,97,112,106,102,101,104,108,96,105,88,101,96,105,107,96,99,109,107,102,111,119,104,103,95,108,112,95,109,84,112,100,108,100,98,98,103,99,83,80,109,100,115,97,106,95,114,85,112,104,98,108,109,103,99,95,116,98,99,90,109,95,96,97,75,97,99,109,103,106,95,102,117,108,102,105,104,110,97,115,105,102,104,96,114,106,107,100,98,101,103,106,112,97,95,101,100,109,99,115,100,104,108,97,94,121,90,121,112,93,100,106,95,91,107,103,111,108,110,100,106,105,110,104,71,108,104,98,90,99,100,108,91,113,104,99,97,98,109,114,99,115,105,94,103,100,111,106,115,103,98,96,99,96,96,70,103,111,103,101,118,110,105,105,105,106,107,102,98,102,99,113,105,103,110,102,106,99,102,103,94,116,90,105,108,109,98,83,117,102,109,106,132,90,111,101,96,97,98,105,94,99,92,111,108,95,108,112,106,102,98,103,100,99,113,104,101,132,102,100,93,101,102,99,107,92,94,96,95,103,98,110,97,102,114,108,103,94,111,101,98,112,103,106,104,108,109,109,113,93,108,90,107,109,113,109,115,101,94,113,95,99,89,105,100,110,106,94,102,101,103,89,99,111,95,108,106,101,106,110,100,106,99,103,107,96,100,108,114,103,100,102,114,105,92,100,95,95,96,103,107,106,103,98,102,105,107,93,91,97,107,109,104,98,102,98,95,100,98,118,103,100,105,87,95,103,104,94,76,107,99,112,105,98,99,95,98,110,112,97,102,106,122,105,108,109,107,107,104,102,105,98,90,101,110,99,99,101,106,108,94,105,95,114,108,106,110,98,107,119,95,96,100,111,101,105,104,92,110,95,96,100,115,111,94,106,104,93,113,103,104,115,104,111,111,98,107,126,119,106,111,102,109,100,108,95,102,100,106,91,106,98,99,106,104,102,95,90,110,103,107,96,95,100,114,99,108,101,110,115,114,98,94,113,91,109,101,101,109,98,105,119,97,106,98,105,100,110,118,107,103,110,108,96,106,101,104,103,102,107,110,111,100,108,102,108,109,99,95,118,102,101,107,113,99,101,114,96,104,102,113,103,96,116,101,95,103,103,100,95,100,98,99,103,107,97,116,103,108,105,103,99,112,108,101,87,107,103,82,112,117,96,103,100,102,95,86,92,99,106,100,102,95,95,84,106,107,107,95,117,92,105,102,114,95,106,104,106,111,111,101,111,139,96,99,108,89,95,107,108,102,103,111,121,96,116,99,109,106,117,102,116,99,105,130,82,93,128,100,123,108,105,107,100,104,98,96,98,105,111,109,89,108,104,98,110,114,104,93,98,112,117,111,83,106,109,97,103,118,112,112,133,98,109,103,106,108,99,104,99,98,106,105,110,103,101,104,114,104,102,111,93,117,100,107,73,93,104,107,110,113,102,118,96,95,102,98,108,104,96,120,117,99,96,94,104,107,101,98,104,106,87,92,122,107,97,100,98,112,104,102,100,101,117,101,95,104,95,104,102,118,108,111,103,100,104,101,102,96,106,109,109,107,108,91,103,110,95,112,108,94,94,98,91,106,94,102,92,107,101,94,108,105,94,102,112,106,102,101,105,104,105,91,99,112,107,117,111,113,107,105,118,107,76,107,95,109,94,101,108,108,106,117,103,89,106,95,98,91,102,95,106,103,111,105,107,96,100,104,87,100,112,110,111,104,106,104,106,95,108,104,93,107,108,102,105,112,100,109,102,106,97,108,117,124,101,110,106,103,107,116,115,111,98,103,88,95,104,93,106,97,120,96,111,100,106,106,106,90,118,109,94,112,106,113,100,115,91,97,112,92,109,97,106,108,108,108,103,112,105,110,96,102,108,107,106,112,108,103,110,96,96,93,109,96,94,128,89,101,98,101,106,103,109,107,113,102,106,103,100,106,109,100,104,112,106,102,113,115,109,107,106,103,114,120,90,105,112,105,88,111,112,117,111,113,114,98,104,100,95,107,106,97,111,102,108,101,95,117,91,100,98,116,93,105,103,104,113,82,106,94,106,106,102,120,83,107,112,111,104,101,101,106,99,109,101,95,109,98,102,98,104,112,104,105,90,98,110,113,90,112,108,106,111,104,118,97,102,95,99,104,102,100,100,113,104,103,104,94,105,91,112,105,111,111,106,105,100,110,105,101,101,106,99,103,100,100,103,98,97,91,103,98,88,121,107,97,99,95,104,104,105,105,113,105,106,105,98,112,102,99,101,95,106,109,104,104,105,110,111,97,117,101,104,98,109,93,120,108,102,107,97,105,92,111,101,105,111,95,102,111,95,98,99,111,93,114,103,115,110,97,105,100,105,107,100,96,114,99,98,111,111,107,107,105,103,105,104,117,90,88,103,96,94,110,102,110,114,108,99,118,109,95,102,112,96,99,99,94,109,95,106,101,116,117,99,107,99,100,99,100,112,106,103,106,107,100,106,101,113,103,112,104,89,102,99,112,92,111,104,119,120,119,113,95,123,110,101,91,102,119,106,100,99,106,104,102,94,109,72,102,106,96,85,115,102,110,103,107,103,89,94,94,108,112,99,112,95,98,112,105,97,100,114,110,108,101,105,100,102,102,98,99,107,113,97,98,108,104,96,102,118,96,112,105,114,103,104,100,94,124,100,91,101,117,76,109,110,107,94,102,100,99,102,101,103,116,102,96,97,107,108,103,108,111,117,111,95,96,106,100,105,105,113,100,100,110,98,113,100,104,114,107,114,107,109,95,101,101,108,103,109,107,98,109,102,72,99,92,97,106,109,108,104,98,103,110,87,110,103,91,102,104,102,111,105,105,76,100,75,101,97,89,110,99,96,108,107,104,111,97,115,99,110,106,105,112,107,91,108,118,106,105,112,101,98,98,112,112,115,116,97,100,99,89,108,108,91,107,118,101,94,92,96,99,114,101,106,106,95,115,112,102,67,96,95,103,96,104,106,103,106,108,107,106,117,103,111,110,111,107,98,105,113,102,110,102,103,113,108,109,116,137,98,107,100,98,114,98,100,102,110,115,115,105,99,106,108,115,114,107,113,105,112,116,103,99,104,100,101,99,119,111,115,102,106,96,92,111,105,106,97,104,102,94,105,91,103,111,105,94,102,106,112,110,101,107,90,106,100,112,107,98,101,105,101,103,102,101,117,99,113,99,106,101,99,108,119,109,95,100,98,87,112,105,96,106,98,105,109,109,119,108,104,114,94,101,118,111,101,103,99,118,95,93,99,108,111,115,109,100,85,105,105,103,96,100,106,99,99,97,107,102,112,98,106,131,79,100,93,115,90,109,106,111,108,102,100,108,100,100,107,108,106,103,112,103,110,104,100,112,95,111,111,103,116,96,97,103,111,94,116,101,100,84,96,99,113,105,106,103,96,103,98,112,99,102,97,113,103,107,98,100,106,99,109,101,107,106,104,97,101,116,100,99,101,105,87,104,99,122,99,105,105,99,104,113,95,114,106,109,98,101,99,99,109,105,106,106,102,112,99,102,108,106,98,96,106,97,115,104,97,106,106,104,101,116,104,97,104,102,104,112,106,104,116,96,121,87,111,111,108,118,102,98,104,102,104,114,113,103,107,95,98,100,100,102,106,115,98,100,92,114,107,103,102,84,102,93,106,106,101,114,108,100,93,104,107,110,106,95,104,99,105,94,97,83,107,104,114,98,106,117,96,94,106,111,92,107,97,124,115,99,100,98,102,118,107,104,96,95,121,94,109,102,116,112,97,100,95,102,97,107,112,103,103,102,99,103,99,103,97,120,99,100,105,108,95,107,117,117,106,105,111,109,97,97,99,96,99,99,111,102,101,114,100,105,114,103,93,101,103,96,113,83,111,105,104,107,109,105,103,89,120,93,100,109,106,110,98,91,114,90,107,96,113,108,106,113,109,105,103,102,104,124,102,100,111,114,115,113,104,117,101,109,105,101,112,107,105,103,105,96,100,104,97,107,112,106,116,109,109,122,102,100,112,100,110,117,98,104,107,107,113,110,100,106,123,117,103,104,106,108,96,96,82,102,142,114,93,104,95,106,106,103,92,98,113,106,98,87,94,91,113,107,102,105,104,98,98,97,113,109,99,104,91,112,113,113,113,108,117,110,97,100,106,109,98, +510.7233,106,108,100,93,99,105,98,104,92,91,98,106,110,105,104,105,107,108,102,101,101,93,100,107,108,106,98,105,104,100,93,115,97,108,104,103,96,104,115,91,89,94,96,104,106,106,102,97,94,110,98,103,101,111,93,104,111,116,104,110,105,104,102,94,109,101,107,102,103,83,97,104,107,92,122,107,108,104,101,100,111,100,100,103,94,103,107,101,103,106,105,99,106,96,112,72,93,106,117,107,98,103,107,98,101,114,100,94,82,104,102,97,104,108,98,113,96,99,99,109,95,99,110,108,103,110,108,92,124,104,116,117,111,109,109,97,98,109,109,102,111,101,109,100,104,99,100,101,106,104,104,96,98,100,99,107,112,93,109,110,99,107,104,109,109,112,96,96,107,106,112,109,109,96,108,104,113,95,115,106,95,100,109,104,110,104,105,100,113,95,106,78,87,124,134,97,109,107,109,120,105,105,95,115,116,106,100,114,114,107,105,96,108,101,110,98,104,114,100,107,117,104,122,112,94,109,105,117,109,103,97,113,111,99,108,105,102,100,112,92,102,106,105,115,111,101,114,117,109,111,106,102,102,98,109,99,103,102,102,102,101,109,102,108,102,104,88,109,102,106,104,100,102,95,113,118,97,105,107,101,87,95,107,116,105,104,100,113,103,114,106,117,122,108,112,101,98,117,101,95,104,109,112,109,96,102,109,103,108,126,99,110,113,104,91,96,109,96,103,113,109,87,112,106,96,107,101,92,102,110,98,103,97,110,105,106,101,112,105,103,100,105,105,108,112,104,102,115,118,105,109,111,108,96,101,103,112,112,116,121,108,106,91,99,99,111,106,99,106,121,110,107,117,105,113,101,111,98,110,112,105,110,94,105,103,101,102,105,110,102,106,100,97,111,95,97,106,95,103,110,99,108,88,99,111,106,95,96,116,102,94,102,101,116,102,108,111,100,107,92,96,97,102,102,106,109,107,98,109,113,91,112,105,116,109,103,90,106,96,112,95,110,106,108,95,104,100,108,100,109,101,105,98,102,102,109,91,99,109,107,100,103,102,100,106,114,105,99,110,101,115,107,117,108,95,102,108,108,112,128,107,106,108,95,104,104,101,110,99,110,95,103,108,115,94,120,105,90,107,105,113,100,103,99,105,118,110,105,101,100,113,126,110,107,103,107,112,106,95,94,109,111,104,104,106,109,96,104,103,108,104,99,109,104,103,112,95,92,124,110,98,109,96,112,113,115,106,105,111,105,114,116,109,107,103,102,107,98,108,113,107,110,101,106,107,104,112,110,101,104,96,108,105,99,100,107,86,112,111,104,101,90,104,112,109,100,103,98,112,106,98,106,110,109,116,102,103,110,104,93,111,102,100,94,117,109,99,101,111,108,112,107,110,105,97,104,100,100,103,105,99,101,110,104,105,103,99,96,99,107,103,113,109,103,105,112,103,95,106,110,122,108,109,98,104,100,109,102,107,112,100,117,94,103,100,112,122,86,106,115,108,111,111,105,101,100,99,92,106,113,106,113,109,109,96,101,107,97,109,113,106,94,97,101,116,107,102,113,106,104,112,96,100,113,100,99,109,101,94,103,109,108,105,115,111,116,117,109,114,129,100,101,100,105,106,117,103,105,117,107,100,94,119,110,108,115,98,107,107,111,104,95,100,99,104,100,109,104,112,91,103,99,103,105,99,108,104,97,94,108,113,104,103,105,92,95,107,104,108,110,104,105,99,105,111,104,106,103,110,75,114,108,114,100,96,106,101,108,104,115,99,116,112,104,109,114,87,95,91,115,107,110,96,95,110,99,114,117,111,100,100,102,102,74,115,109,105,100,99,113,109,110,107,102,122,101,106,103,111,105,95,116,105,104,117,103,122,98,133,109,108,107,100,104,102,107,97,108,103,100,105,103,106,113,100,104,99,109,97,107,102,105,95,109,108,111,118,112,109,95,103,98,119,105,115,104,109,100,111,100,105,105,100,103,109,104,111,96,103,106,109,109,87,98,113,128,96,115,107,104,97,112,98,97,112,110,109,107,104,114,113,113,109,108,108,95,107,105,91,97,112,102,107,100,121,98,110,104,100,111,115,108,109,115,98,104,93,118,94,94,104,104,112,106,97,99,93,105,99,97,120,90,104,101,99,98,104,105,116,101,107,112,100,97,99,121,100,112,105,109,108,99,119,86,108,108,106,98,99,108,108,110,100,110,98,119,112,104,106,104,102,109,116,99,112,93,107,111,112,106,105,96,103,100,102,114,107,110,101,106,113,105,114,96,101,107,109,109,101,109,98,111,107,107,99,107,102,98,99,107,103,110,105,81,114,109,90,112,105,101,99,105,106,123,108,102,94,113,107,99,109,108,107,105,109,100,113,106,100,105,104,110,89,111,100,81,97,105,110,93,105,109,105,109,104,92,111,106,86,100,96,103,100,98,97,116,98,111,88,108,103,105,96,106,96,99,99,98,103,100,111,118,99,100,100,93,103,111,107,121,109,102,107,105,112,103,98,100,116,105,97,116,109,94,97,108,114,102,105,104,108,110,101,99,102,109,99,103,103,101,105,113,118,106,104,106,107,92,115,110,102,100,106,106,109,107,116,105,112,102,113,109,108,116,103,119,111,96,101,113,110,97,103,98,99,102,109,105,112,103,104,100,117,100,109,96,83,111,101,81,110,106,103,101,114,112,120,94,117,112,104,102,107,120,109,110,95,101,113,93,102,113,106,109,92,85,102,109,104,100,117,119,92,101,96,101,109,113,106,104,96,107,98,99,110,109,110,114,83,106,104,104,102,96,109,107,106,109,98,111,104,97,114,94,103,104,111,102,99,106,92,117,111,100,100,96,117,104,102,111,108,105,90,106,104,101,116,107,114,99,113,102,118,108,103,103,107,91,107,108,114,107,113,107,106,98,97,118,98,100,85,114,114,97,112,112,102,105,109,112,103,102,97,125,84,116,97,104,99,102,101,104,102,106,113,93,95,95,106,105,110,113,111,106,112,104,96,97,111,109,99,88,95,116,102,105,99,107,102,95,98,109,109,97,131,112,84,102,126,87,107,112,107,103,106,112,100,103,104,95,106,117,92,110,106,92,102,98,100,91,97,102,115,113,100,105,104,115,114,94,104,90,103,98,106,100,101,103,110,104,103,103,110,95,121,111,103,101,109,104,132,110,102,106,100,104,108,113,100,105,114,99,127,107,93,110,107,95,91,112,104,104,99,126,99,99,110,105,113,108,108,88,113,109,105,106,103,92,110,117,104,89,112,103,106,109,102,95,109,97,99,71,111,106,112,102,109,102,103,109,105,103,100,109,106,100,90,95,91,100,102,106,111,104,106,108,98,112,105,106,103,109,105,104,93,107,99,107,105,100,96,87,95,97,105,103,106,108,98,116,93,98,107,109,95,98,90,115,105,106,103,101,96,94,106,106,110,102,115,103,106,107,108,107,104,110,102,111,106,100,106,102,85,93,100,94,93,83,103,113,110,96,98,106,107,121,109,102,107,100,112,102,92,112,89,102,109,98,94,108,104,98,102,110,108,115,105,102,107,109,105,111,99,109,102,107,106,116,102,96,103,107,109,106,105,102,110,112,108,105,97,101,103,102,94,114,105,109,98,104,103,103,107,100,112,102,111,92,108,116,101,93,97,112,91,106,104,107,106,98,95,112,89,125,88,100,101,104,111,107,109,105,102,100,90,103,108,101,117,98,105,96,111,98,84,106,112,99,109,112,96,98,102,87,96,108,107,112,98,104,97,98,94,106,104,101,106,91,110,76,101,112,101,112,102,115,100,111,113,97,107,108,110,109,103,110,96,95,117,102,103,125,111,91,107,108,115,99,96,98,98,108,101,94,106,104,95,98,97,106,102,86,98,99,104,100,111,107,94,97,106,106,102,109,103,104,94,81,107,91,106,95,110,97,94,111,106,107,109,100,102,99,102,114,95,100,94,97,111,107,102,102,100,91,108,101,103,109,102,111,117,99,99,69,118,99,97,85,106,98,104,101,105,100,106,92,110,118,104,97,110,108,81,102,115,129,109,109,99,101,99,112,103,96,102,106,94,96,102,105,106,116,104,67,87,100,105,99,105,111,108,105,128,109,95,98,96,94,103,112,97,92,101,98,79,105,103,121,108,92,103,95,100,96,102,106,90,91,95,102,105,105,104,104,104,116,93,128,101,108,107,103,131,99,108,102,105,102,102,108,101,108,105,109,104,99,114,107,103,98,112,104,116,108,98,109,94,99,112,102,115,97,93,105,99,98,97,105,106,106,98,116,102,100,103,100,101,97,103,108,108,102,111,100,108,106,94,112,87,80,109,95,120,98,103,91,96,119,94,101,98,101,113,99,89,103,97,118,95,100,117,103,108,99,101,117,110,112,105,109,109,87,103,108,98,104,97,108,96,106,110,96,93,101,110,107,90,98,103,111,104,106,112,111,114,97,109,113,118,100,119,96,103,107,106,95,107,112,100,104,98,100,106,117,101,105,105,100,111,105,96,105,99,95,101,104,92,117,104,104,105,97,115,108,113,97,109,104,97,104,92,98,97,97,104,106,104,110,103,98,102,106,114,120,106,113,99,102,105,106,109,99,109,100,114,111,97,109,109,106,101,91,110,97,99,100,105,103,100,95,106,109,105,103,106,96,107,106,104,105,88,96,102,111,106,92,107,95,99,97,110,107,98,112,97,104,79,94,93,98,94,90,90,102,103,104,107,102,102,108,109,104,98,138,94,91,102,102,97,109,95,113,101,105,106,109,115,105,105,95,95,88,104,103,106,99,100,105,102,99,113,104,94,106,107,95,100,103,104,109,103,120,116,117,102,97,94,98,99,105,93,88,98,104,116,97,111,102,94,121,83,97,106,90,121,100,95,103,129,112, +510.86398,105,99,94,113,99,111,111,96,100,115,109,88,104,116,102,103,97,106,86,111,106,113,112,106,114,117,100,104,108,115,101,114,112,103,117,92,112,76,103,112,90,104,101,91,105,92,112,111,92,103,106,101,96,115,105,70,78,108,106,94,101,103,91,102,109,105,102,107,100,103,113,118,103,107,88,110,108,108,99,99,101,107,103,95,104,98,99,96,109,97,108,113,106,104,97,106,107,100,101,73,112,113,107,100,120,102,107,111,107,109,113,97,109,97,104,101,105,100,105,83,96,102,106,106,105,121,109,95,104,106,95,105,97,108,102,114,117,111,105,92,96,115,97,106,100,110,110,95,112,97,110,109,109,110,99,106,118,107,102,99,108,88,115,91,110,104,113,104,107,111,102,100,87,103,104,112,112,97,124,100,108,115,102,111,113,101,109,99,103,108,109,100,103,108,105,102,112,115,110,104,108,105,103,107,108,102,103,118,103,102,104,107,110,99,115,113,102,103,97,103,111,108,111,90,98,121,115,100,113,99,106,94,107,108,101,108,99,118,96,117,106,111,101,106,95,105,87,97,107,106,107,101,103,104,101,113,108,98,101,101,101,117,91,88,95,107,117,99,104,100,89,99,84,100,97,110,107,97,96,99,111,109,105,106,99,101,98,104,110,107,108,106,108,108,98,103,113,112,110,105,108,113,104,97,101,102,118,113,105,103,101,106,108,103,100,112,109,103,104,105,101,105,102,99,103,104,91,100,117,107,103,96,110,110,110,103,101,103,96,109,98,113,104,91,84,112,103,88,111,102,103,114,96,105,113,112,109,128,118,91,108,106,106,98,100,106,106,118,102,108,105,102,112,94,104,98,111,106,105,99,110,115,105,118,88,105,106,98,93,91,116,104,92,102,108,94,97,105,106,125,108,108,102,96,106,100,120,105,109,116,71,100,108,97,100,100,94,94,114,105,109,67,96,104,103,90,100,120,110,98,114,95,113,108,95,108,93,111,116,122,112,103,99,98,112,114,109,93,94,113,111,104,109,124,107,113,98,84,108,97,110,100,103,106,102,112,102,110,116,114,105,113,107,105,107,104,107,119,119,109,110,104,122,114,103,103,115,114,94,96,105,109,106,105,102,109,105,109,99,103,109,106,105,103,117,103,101,88,113,91,117,95,95,115,104,108,111,105,113,106,112,95,96,106,103,104,88,96,111,109,109,105,114,109,92,94,98,106,107,105,101,99,101,97,105,100,124,112,112,108,107,108,111,123,99,102,121,114,101,107,114,111,99,111,106,106,112,111,109,102,103,102,96,104,107,106,103,97,103,108,101,95,114,104,100,117,116,97,109,106,99,105,93,102,112,112,97,113,113,111,98,83,120,105,103,119,111,97,103,96,98,114,129,108,94,100,103,95,106,113,107,100,100,98,99,110,109,108,94,107,92,102,106,106,69,99,109,106,99,108,114,103,117,114,104,105,108,91,104,106,102,103,102,98,98,102,108,103,105,106,117,112,113,103,91,103,108,109,102,93,124,113,106,91,95,103,107,104,117,104,108,101,122,104,99,96,109,102,110,103,106,102,106,95,102,108,115,114,109,99,114,108,111,110,106,111,100,97,109,112,99,104,106,104,101,111,104,110,99,99,96,102,109,98,112,109,107,102,113,102,113,104,105,116,112,110,107,98,104,122,103,102,114,108,113,111,99,108,103,110,113,104,107,103,94,110,102,104,112,117,104,115,96,122,102,107,99,113,93,82,106,109,108,106,94,101,106,116,100,94,103,103,108,111,110,110,100,108,105,119,120,115,110,113,114,103,102,112,106,108,102,101,97,112,100,102,107,108,99,108,114,98,102,114,103,101,116,117,115,112,102,106,109,116,99,105,107,109,113,105,105,97,101,88,103,110,128,103,99,105,97,102,113,84,113,107,104,103,109,102,117,99,106,109,107,107,130,107,103,109,113,112,101,98,103,101,99,106,111,107,103,116,107,118,102,102,115,112,98,102,124,109,105,75,114,104,102,110,99,106,112,105,117,113,97,105,99,107,95,99,99,111,113,111,118,90,100,108,96,107,105,114,126,109,102,107,104,105,105,93,103,102,125,100,114,90,113,107,102,101,117,115,98,107,118,99,99,119,102,114,106,86,101,104,95,111,110,116,103,118,102,103,113,100,109,108,101,112,97,108,86,118,109,103,95,103,113,105,103,98,101,108,102,110,102,101,109,102,92,103,101,109,106,112,104,107,100,111,102,97,104,105,121,109,114,108,94,105,107,108,103,116,107,104,112,105,97,106,107,106,96,107,112,117,96,109,102,96,86,96,104,90,100,95,112,113,112,108,99,105,110,114,115,96,112,98,110,109,99,99,111,114,95,108,113,103,113,116,106,105,100,92,110,101,112,105,103,114,103,106,102,102,105,103,104,102,103,104,112,113,114,118,116,106,106,103,109,97,99,117,93,94,110,110,93,110,102,103,109,119,115,105,109,103,100,109,100,113,119,100,111,106,107,115,108,103,102,87,108,105,106,107,111,113,102,111,106,106,95,109,110,121,105,117,104,101,99,105,113,107,110,115,106,108,99,114,117,117,79,105,103,97,82,102,101,103,107,107,115,104,99,98,108,103,109,101,104,111,109,112,106,105,120,101,95,99,103,113,110,99,109,100,111,116,112,99,104,101,100,111,110,106,92,81,102,112,110,99,107,101,112,106,96,101,95,114,110,95,112,100,115,106,104,114,100,109,99,109,109,96,104,104,100,93,116,110,103,110,104,97,117,117,91,100,117,107,100,106,113,99,104,108,101,89,108,98,102,144,107,110,106,99,116,103,108,113,107,125,98,103,116,99,109,106,102,106,105,99,106,107,112,98,103,106,106,107,119,100,99,108,104,113,113,103,109,104,108,106,103,119,111,110,113,107,104,102,101,96,96,104,104,111,113,106,107,106,106,105,102,102,98,107,101,103,109,106,105,110,108,105,117,113,107,102,110,116,104,112,102,113,111,104,105,111,116,92,112,110,102,115,102,100,107,121,112,112,105,107,95,104,103,112,89,96,106,108,110,108,115,107,107,103,104,76,94,102,99,107,98,99,108,96,116,116,111,118,118,124,107,102,110,105,106,106,108,103,108,102,101,99,102,87,94,97,101,106,110,110,98,109,94,100,108,100,106,106,100,110,112,104,124,114,91,111,123,102,111,102,112,103,102,110,107,106,98,96,109,105,105,107,108,105,107,95,113,100,104,103,114,98,91,98,112,103,106,104,106,120,106,104,120,113,114,96,103,105,100,98,107,97,112,105,100,117,103,108,104,103,112,100,102,103,104,108,104,110,103,104,104,109,105,109,98,105,108,100,100,112,111,104,101,108,103,108,103,110,113,111,123,96,97,103,96,104,108,106,117,116,105,110,100,109,110,108,95,103,107,103,106,105,116,100,108,101,101,108,99,109,101,101,110,101,110,108,104,103,103,101,101,93,112,110,106,97,109,112,109,110,116,104,109,116,105,104,104,119,108,111,98,99,115,121,103,99,100,104,113,98,108,109,111,102,117,110,113,116,133,121,109,99,121,124,107,91,113,98,109,106,107,74,106,106,100,100,123,103,111,116,103,109,97,104,97,111,111,105,107,113,105,119,103,94,115,98,102,99,110,100,92,96,102,96,107,120,99,111,112,106,113,116,98,102,104,103,109,107,100,103,89,106,111,113,99,114,104,96,113,107,103,93,109,113,113,98,107,94,116,104,103,104,105,103,111,101,110,109,103,99,104,102,94,106,107,80,112,96,96,91,113,95,101,105,102,102,114,104,109,96,113,100,134,113,117,113,103,97,109,106,108,112,86,93,108,110,103,106,120,116,116,95,100,108,110,114,107,113,109,92,104,109,102,106,110,105,108,112,111,96,114,98,103,98,98,102,90,102,96,89,104,102,92,95,102,107,104,109,95,108,86,100,96,118,106,115,99,123,100,111,116,107,98,101,106,103,99,88,96,109,107,103,102,92,100,102,114,110,103,105,100,112,106,104,106,92,106,100,121,109,108,103,113,108,105,106,104,113,97,115,109,111,104,98,107,105,105,101,106,104,97,95,110,106,96,103,106,121,103,118,97,102,107,98,113,112,123,120,103,99,103,112,104,109,101,109,100,100,108,124,102,107,120,113,97,101,101,106,108,114,112,108,83,100,109,105,109,115,100,94,79,121,99,101,111,103,109,99,113,109,100,104,97,98,100,98,104,108,109,85,110,95,104,105,110,108,97,99,90,108,93,109,103,110,102,105,120,94,98,100,93,111,100,117,107,106,100,115,106,105,104,109,107,99,106,105,123,112,102,106,105,101,108,100,97,96,100,101,111,102,117,107,107,105,112,104,103,102,101,88,100,98,99,109,110,99,102,104,108,111,111,109,109,101,100,107,99,119,102,113,102,108,121,101,109,103,104,110,104,97,109,117,98,100,99,103,113,100,105,107,110,105,107,102,105,105,100,95,104,106,112,106,102,103,117,101,106,96,106,110,106,111,100,100,100,100,107,109,118,113,103,109,107,114,99,108,101,113,99,97,100,116,94,106,95,102,109,115,106,112,98,109,113,106,105,111,85,102,109,90,96,96,100,103,91,96,110,104,93,111,99,113,117,116,113,107,114,108,103,72,115,115,109,108,100,99,84,108,113,91,108,102,102,100,106,96,109,117,104,101,89,106,100,101,86,102,98,100,108,105,110,91,109,88,106,101,103,76,102,95,106,98,98,106,105,107,110,113,95,99,114,102,96,100,95,108,103,103,112,99,114,96,106,108,99,104,112,106,111,109,103,113,112,99,117,86,104,87,102,104,102,107,104,97,109,93,95,99,94,107,98,113,112,93,97,98,134,120,102,114,109,104,103,105,108,100,94,110,107,90,105,104, +511.00464,98,115,98,101,89,116,96,98,99,95,104,106,99,105,109,104,112,108,121,110,96,91,107,98,116,98,104,104,101,96,107,82,99,112,100,83,104,99,80,88,92,113,101,104,106,107,98,107,104,109,100,106,97,110,94,97,110,95,102,103,94,108,110,102,106,96,99,106,89,95,111,86,103,93,87,99,99,106,99,112,95,97,114,95,100,100,99,101,104,104,106,97,96,96,108,104,113,97,106,97,113,105,108,102,95,109,80,108,105,99,102,108,111,108,103,104,106,118,99,103,100,109,100,98,113,108,105,98,111,95,104,97,101,121,95,99,107,114,105,105,109,99,97,96,95,98,110,101,105,101,102,104,112,96,103,101,90,101,113,111,99,105,101,103,104,92,106,101,109,97,94,92,105,96,105,97,98,93,109,103,99,113,104,103,104,107,103,100,107,68,108,98,106,103,104,95,95,102,101,121,95,108,109,96,112,102,105,102,99,108,109,99,112,105,116,99,102,100,103,105,99,105,103,102,95,113,89,107,117,93,96,116,118,112,112,100,103,110,99,100,93,110,102,112,103,106,100,102,105,90,98,101,116,67,112,104,100,112,93,107,98,101,100,108,104,111,100,105,106,103,102,98,109,109,111,90,114,104,99,92,106,95,95,104,109,110,110,94,108,118,106,109,105,110,95,109,111,101,99,92,95,102,105,109,86,99,105,109,97,110,100,112,101,111,98,111,103,104,110,115,104,105,108,104,95,114,103,105,109,103,105,95,113,113,107,103,118,87,100,100,106,97,100,108,109,109,104,107,105,101,97,95,111,96,95,100,100,103,106,103,102,109,111,102,97,78,108,105,97,109,107,105,118,100,107,96,110,103,101,111,110,107,101,106,95,102,109,100,111,108,109,100,106,91,100,100,98,108,109,125,113,119,90,96,104,102,95,97,102,103,95,114,105,99,111,104,102,95,70,100,102,105,95,98,105,99,91,96,100,107,91,94,107,97,105,104,100,97,91,99,104,85,107,100,90,112,102,108,99,97,113,111,83,101,97,110,99,103,101,104,103,114,101,116,104,112,116,106,100,115,96,115,120,91,103,96,107,112,128,115,108,107,114,108,101,102,105,97,111,99,104,107,119,105,96,109,109,99,111,103,105,94,103,116,102,95,99,103,105,99,107,109,101,118,105,106,114,120,104,96,113,113,107,103,108,113,116,109,105,96,100,103,98,90,98,108,106,99,108,110,106,100,103,101,99,105,101,101,103,121,99,118,99,102,95,100,94,102,109,99,111,110,104,92,100,103,109,104,114,105,90,103,98,88,97,106,105,117,112,107,106,99,106,103,102,107,122,104,111,89,99,105,101,112,100,101,94,105,95,99,103,95,93,106,100,109,109,102,113,100,112,104,108,117,111,106,106,110,98,95,101,111,105,100,105,94,95,108,100,104,104,108,97,107,99,107,101,101,105,114,106,101,111,101,100,94,104,96,107,106,106,123,105,91,112,109,111,103,105,112,96,105,107,111,102,88,108,112,119,110,105,114,104,106,92,109,106,108,120,100,109,109,112,98,104,102,93,109,100,93,100,105,114,105,93,102,108,99,105,110,100,107,104,95,102,113,112,112,103,113,103,110,108,102,119,106,96,101,108,102,103,95,106,98,105,105,102,89,98,113,101,96,113,104,88,99,93,98,107,103,108,109,109,101,116,125,104,106,99,98,109,101,109,115,109,114,101,100,99,100,96,105,106,117,93,94,102,104,112,99,116,97,114,106,103,109,99,108,101,106,99,106,117,111,116,108,107,104,99,107,104,117,106,122,110,100,117,105,115,95,108,90,99,92,106,97,109,109,109,96,107,104,107,112,109,108,121,106,111,102,107,107,109,105,101,105,116,105,109,109,110,113,80,113,95,115,104,95,105,97,78,108,104,109,99,100,110,100,116,101,100,106,100,107,95,107,116,107,97,113,107,87,92,104,108,96,109,105,128,114,89,103,108,114,113,105,104,108,96,98,97,124,112,106,99,103,103,102,99,107,102,107,112,94,91,109,118,118,78,113,104,118,108,104,104,100,97,103,92,108,106,103,98,104,98,119,104,102,108,101,127,107,104,108,106,106,97,99,108,97,110,104,95,104,109,113,103,105,112,72,101,103,101,87,101,114,112,106,88,98,96,114,82,110,113,128,95,121,97,112,120,110,114,105,117,104,100,95,106,99,113,99,104,100,114,110,105,107,101,114,100,106,106,106,95,103,102,100,107,90,111,102,103,96,111,90,99,100,114,106,112,106,112,106,100,97,102,95,98,116,106,103,81,107,66,107,110,86,91,114,116,115,117,102,107,100,96,98,111,113,95,114,100,102,91,106,98,106,121,107,100,101,95,93,112,92,99,117,94,101,112,101,105,125,108,111,106,104,99,99,100,108,96,102,101,109,79,107,105,101,94,112,99,103,105,100,108,98,106,102,112,109,112,104,116,85,128,87,100,109,113,88,97,98,91,103,111,100,102,95,95,102,117,107,109,114,104,94,100,104,94,111,120,108,133,96,94,104,108,114,113,105,116,102,122,97,101,102,107,107,102,115,106,103,107,90,98,100,106,93,91,101,109,106,91,103,99,98,102,108,104,92,106,88,100,116,118,106,123,99,114,100,105,104,106,96,87,97,108,104,104,101,113,109,102,103,103,102,112,104,117,106,113,105,105,112,117,96,109,110,105,100,120,100,90,102,111,99,106,111,108,96,116,117,116,113,94,108,105,103,106,114,110,107,108,103,99,110,107,122,96,117,86,107,112,105,98,103,103,96,105,110,108,114,98,87,103,113,108,112,114,90,105,106,103,108,105,99,101,104,108,108,109,118,100,107,89,115,112,109,112,101,111,103,108,102,108,111,104,105,109,107,107,109,115,113,95,100,105,110,98,119,98,105,91,111,105,98,106,106,105,113,107,103,99,110,113,98,112,110,96,106,110,109,109,100,108,108,105,111,109,113,105,94,115,106,113,105,114,113,124,112,92,108,106,97,98,112,108,107,98,108,107,104,105,94,108,101,113,105,101,96,108,91,116,108,98,111,118,104,113,106,101,103,102,107,96,111,108,101,112,102,108,83,106,107,116,112,103,104,105,98,96,102,91,112,82,113,100,105,111,107,107,112,105,111,100,107,99,110,105,100,110,120,105,106,90,98,108,105,109,105,113,106,123,108,106,114,113,102,110,115,99,96,105,100,106,101,98,105,106,106,102,96,93,109,110,108,112,110,116,120,106,105,107,100,106,103,100,108,101,112,108,102,101,109,106,97,106,106,109,116,94,111,109,109,96,103,99,108,115,113,107,110,110,101,106,98,110,124,108,110,101,104,106,109,105,121,111,102,98,107,104,106,98,114,102,108,102,96,102,98,105,101,119,103,108,102,110,115,102,95,103,103,94,105,102,103,102,118,105,108,106,100,91,98,115,111,83,99,119,117,103,101,111,103,115,121,108,106,103,100,95,104,98,113,105,105,110,101,102,113,90,116,125,115,102,103,99,102,102,110,105,100,108,113,102,119,110,109,102,111,105,110,107,110,133,113,104,115,103,107,103,104,113,104,100,99,112,101,103,125,106,116,125,103,104,98,102,97,94,103,93,104,105,105,106,110,99,98,107,114,116,110,102,92,90,96,99,101,98,104,98,106,101,105,107,106,97,110,118,112,105,101,91,105,104,105,98,107,108,111,103,116,98,103,98,105,108,97,99,107,92,95,117,99,101,109,90,103,105,110,101,112,108,88,96,103,101,111,114,94,103,108,77,112,108,93,108,96,95,97,98,98,104,128,115,102,102,103,105,103,110,93,98,112,116,108,104,114,99,119,97,116,105,104,112,107,112,102,100,110,110,107,113,104,89,102,102,106,105,113,100,98,104,101,105,87,118,101,98,98,98,107,100,103,101,103,114,98,98,106,112,108,100,83,98,92,102,108,94,120,113,116,100,103,71,110,102,104,99,105,94,95,104,98,108,106,105,114,106,121,104,118,117,108,103,99,109,104,111,115,108,115,85,109,108,82,116,97,105,107,109,99,103,107,111,103,112,108,103,110,109,112,99,102,107,116,114,99,111,105,109,100,100,111,105,109,98,109,107,98,103,110,106,120,115,104,113,85,105,95,99,107,116,105,107,98,102,106,112,113,112,96,104,100,107,99,110,104,107,111,106,101,104,128,98,118,96,97,103,114,99,102,112,102,114,103,94,99,104,105,108,99,107,129,107,110,104,102,95,106,105,104,106,100,82,106,101,106,110,111,102,89,112,99,103,92,100,98,109,103,102,114,107,98,111,103,96,112,103,96,107,96,109,115,95,105,102,109,108,99,101,101,105,99,118,110,117,122,124,109,106,118,100,105,108,106,104,107,101,107,100,113,104,103,103,115,111,100,101,90,97,117,119,108,90,95,100,91,125,124,109,93,110,104,109,98,97,109,106,107,97,96,104,101,99,105,106,104,102,90,102,102,111,91,117,112,97,103,101,95,99,101,106,99,108,107,111,88,85,100,114,104,99,113,102,104,115,90,107,87,103,84,102,106,111,99,112,95,103,102,99,117,110,95,107,106,110,96,105,98,104,108,92,96,99,104,109,100,101,113,101,108,106,126,112,105,103,95,98,103,120,121,113,111,112,99,84,106,107,97,107,97,105,92,110,93,105,94,103,99,106,109,119,115,115,100,113,104,112,113,104,105,102,101,101,116,113,96,90,97,100,95,101,91,106,96,110,125,98,94,96,111,106,116,101,106,112,110,95,117,117,112,109,105,106,99,106,126,112,96,98,97,110,108,113,107,105,106,103,98,105,99,107,112,110,102,104,110,99,87,116,93,95,88,92,104,117,97,105,109,93,111,120,104,100,104,114,109,118,100,76,73,106,103,117,102,108,86, +511.14532,104,119,105,95,92,93,95,97,98,108,100,97,108,118,114,101,89,110,113,99,98,105,107,106,98,105,95,101,110,96,99,102,99,85,101,121,107,86,97,90,134,118,91,95,104,97,99,103,109,93,98,119,118,103,116,99,106,106,111,90,96,112,100,98,117,107,94,104,122,116,104,106,97,100,94,115,98,106,93,108,107,100,95,109,103,98,109,98,96,101,107,96,102,107,109,102,96,110,104,92,101,105,96,101,101,101,97,95,108,76,92,104,119,105,102,101,116,95,112,117,99,105,118,110,103,100,104,99,110,83,95,100,103,95,99,101,91,87,103,91,110,113,95,106,98,94,106,112,94,108,95,92,89,94,101,111,94,100,99,93,82,90,107,105,122,81,105,90,92,97,102,99,96,99,106,106,113,92,106,98,102,97,98,101,101,92,95,80,105,103,107,101,100,98,105,101,114,105,105,102,99,96,104,100,103,115,96,103,104,114,98,89,94,96,104,104,90,108,104,101,113,114,88,102,95,96,81,110,112,115,95,102,104,105,97,109,104,102,106,96,99,112,104,91,97,116,99,108,104,102,96,100,101,111,96,108,101,110,100,96,107,104,100,93,92,117,100,109,95,95,103,96,102,102,108,110,100,108,118,87,100,104,103,86,104,100,103,105,114,99,119,105,94,105,103,113,108,102,87,76,98,111,98,72,96,103,105,104,104,107,104,112,98,105,103,98,99,104,99,104,101,95,106,96,101,111,109,98,109,116,108,102,113,105,109,104,113,109,105,97,94,92,91,103,102,110,108,117,113,113,109,101,110,85,99,102,112,106,99,108,95,93,101,106,106,105,114,105,99,110,108,103,109,94,106,106,104,99,104,104,102,108,103,105,110,100,99,106,111,105,107,99,102,109,97,102,100,105,105,119,98,98,111,95,98,105,90,107,115,106,97,111,98,107,94,97,102,101,106,108,105,105,97,95,104,103,106,95,110,99,109,99,99,94,116,115,103,96,103,99,107,120,104,106,109,114,95,105,101,111,96,102,93,107,101,89,115,107,106,108,97,101,100,106,106,103,102,111,91,101,115,111,95,91,105,91,100,99,108,115,94,110,102,90,100,104,112,105,101,98,112,104,99,96,102,99,99,100,119,108,115,110,103,112,105,97,107,98,99,105,107,100,92,95,106,95,99,100,101,102,110,104,118,101,99,98,109,122,113,105,97,104,98,116,99,106,102,97,99,104,100,92,96,105,100,102,107,106,106,98,104,97,100,104,97,118,92,90,104,84,103,108,104,104,86,97,114,103,100,109,95,101,105,115,104,106,101,100,105,102,108,97,106,101,103,103,103,105,92,101,107,99,100,102,113,114,104,96,103,92,95,99,95,97,120,104,96,100,96,111,102,102,107,102,109,99,96,88,90,107,117,115,114,106,100,94,99,103,98,91,101,102,87,91,104,108,100,99,100,118,110,108,107,95,117,113,95,88,110,109,111,93,97,95,98,109,110,100,120,94,112,107,104,104,99,96,109,101,107,96,106,100,118,95,103,108,108,109,109,99,70,103,98,97,91,101,91,99,99,108,106,99,103,104,101,99,113,117,99,95,103,91,105,109,118,115,101,96,100,114,108,114,98,95,111,107,91,89,104,92,102,103,108,110,107,103,100,111,108,119,99,95,127,91,106,109,105,106,118,109,120,95,109,118,113,117,96,111,108,106,100,106,97,97,103,94,91,99,114,101,109,100,105,117,99,123,127,104,113,107,106,100,110,94,89,105,107,113,106,102,108,112,98,103,102,98,98,106,104,108,109,99,86,107,118,116,95,98,99,106,118,112,104,103,106,111,100,110,93,94,117,110,97,102,108,108,106,89,104,115,105,101,108,114,120,116,108,91,113,104,113,91,104,94,92,105,97,112,112,100,107,106,104,94,81,111,81,91,105,103,109,103,102,116,93,112,97,100,92,99,112,110,104,102,104,112,104,105,105,108,109,102,104,106,103,105,97,98,106,86,102,119,117,77,111,99,89,118,100,103,109,124,108,105,76,93,96,112,88,108,103,108,101,91,94,98,106,99,87,104,108,111,109,111,106,104,95,87,92,107,104,99,107,107,102,94,103,88,94,104,108,100,99,95,101,113,101,100,98,102,109,101,103,99,89,104,113,93,100,94,106,104,113,109,95,101,108,102,100,83,99,114,92,105,105,92,101,111,96,113,101,102,94,90,90,100,104,87,106,104,104,109,114,87,98,109,97,95,103,104,106,108,104,101,105,105,113,101,100,95,108,109,108,99,107,108,97,101,87,106,91,112,106,89,103,99,91,105,107,95,85,107,110,96,115,100,113,105,117,107,95,106,111,101,106,107,102,96,109,101,92,105,105,90,105,100,88,111,98,104,106,106,101,104,107,108,99,102,105,99,90,102,93,109,94,111,100,98,121,99,113,110,106,91,99,104,100,97,104,89,102,113,99,106,100,98,103,105,97,112,108,109,101,93,109,101,110,104,110,102,97,99,92,105,102,101,109,121,118,108,79,104,112,102,95,104,106,98,95,100,111,113,101,102,109,104,100,108,104,104,106,116,110,102,103,108,112,109,99,93,103,103,120,110,103,109,116,97,113,101,103,94,107,96,104,101,98,97,102,114,118,96,104,100,111,108,105,97,111,100,92,110,82,107,115,89,110,103,105,113,92,110,94,91,119,111,111,116,85,108,110,111,109,103,116,103,103,100,100,102,79,111,113,100,105,105,99,104,101,98,117,99,91,93,103,107,104,95,99,108,117,102,100,102,95,109,87,125,102,104,96,100,97,106,100,110,110,109,93,106,99,112,99,90,106,110,105,109,95,112,100,103,121,106,99,109,101,120,94,123,108,106,101,107,99,109,94,103,108,110,110,100,136,120,109,103,87,102,103,113,97,111,109,101,107,113,105,101,101,118,102,101,117,99,111,106,103,104,98,103,94,105,104,104,109,95,112,111,114,101,105,109,96,102,103,110,115,107,95,105,113,102,105,108,111,109,111,102,109,110,107,122,109,109,98,98,109,109,104,94,104,110,111,94,100,102,110,106,98,112,107,104,104,105,94,109,103,112,98,100,95,113,111,103,116,100,91,108,108,106,114,119,98,122,88,105,107,102,96,112,113,105,87,92,116,100,113,106,110,98,102,109,103,110,123,110,114,106,96,106,112,103,92,105,110,110,105,87,99,105,98,108,108,106,113,99,104,105,104,109,107,101,109,108,105,102,111,100,114,98,110,109,110,115,122,98,102,100,102,80,103,112,111,101,105,104,91,116,101,104,103,103,121,105,108,110,106,109,102,102,109,100,98,110,117,103,100,91,111,108,101,112,101,100,105,95,106,103,108,110,97,115,89,110,100,102,109,102,114,71,92,96,98,87,107,106,97,104,128,108,78,104,115,113,100,104,109,107,94,120,95,101,107,108,112,111,99,116,93,99,117,97,102,103,91,109,97,101,109,99,99,103,110,99,93,113,97,100,104,98,101,106,98,103,110,106,107,82,105,103,112,101,101,111,102,114,113,106,102,100,104,103,95,114,117,103,117,105,111,92,113,99,97,103,102,102,101,103,101,103,109,105,89,105,106,92,104,123,109,104,101,110,108,112,108,100,113,106,112,113,107,108,86,106,94,104,110,105,97,129,110,101,108,108,115,112,110,107,116,107,110,106,105,108,104,96,110,111,96,100,109,93,101,106,110,110,118,96,108,96,109,104,109,106,105,101,111,103,99,106,120,96,104,100,110,101,104,112,109,105,110,109,109,116,103,101,105,99,106,104,115,104,106,102,98,109,112,102,104,106,112,116,86,116,105,111,100,91,95,111,101,115,117,106,96,68,95,111,104,95,91,114,75,111,104,109,104,89,117,108,114,105,103,97,103,110,116,102,99,105,109,94,106,115,102,107,98,99,106,102,101,103,111,117,101,116,115,107,85,101,105,99,96,101,103,102,102,105,108,101,99,116,110,101,108,109,106,111,111,109,114,100,101,99,111,95,100,104,102,107,103,95,106,108,94,110,105,113,111,107,113,98,101,98,103,103,106,124,89,102,90,98,104,112,101,103,103,107,115,99,100,99,98,96,98,106,101,103,100,97,105,114,105,103,113,116,103,92,111,100,99,101,123,101,94,117,106,101,113,123,118,117,104,89,131,109,114,68,103,91,109,98,108,105,107,106,98,102,105,105,103,108,112,105,100,112,116,96,113,105,111,102,105,103,95,114,97,107,107,103,94,116,111,102,104,115,113,109,99,124,113,103,103,108,99,105,109,106,91,113,95,109,113,106,103,101,104,104,106,111,112,110,99,105,121,91,102,106,116,109,110,98,99,102,106,92,116,107,105,94,113,128,115,109,100,91,92,105,105,93,93,109,118,119,107,95,106,116,100,93,100,97,106,100,100,113,94,104,98,102,102,100,106,105,98,103,95,107,113,109,95,99,105,104,102,106,105,92,99,105,96,86,99,97,106,103,103,102,117,107,95,85,105,115,107,91,110,100,102,93,94,95,109,98,101,101,103,102,96,108,96,99,100,95,96,115,108,107,97,104,117,111,103,103,100,106,104,100,99,109,108,94,101,105,110,104,101,87,117,105,98,115,100,101,102,117,111,101,104,93,93,95,104,104,112,102,109,104,106,106,97,114,106,105,108,107,102,91,107,71,102,121,95,98,101,101,118,111,95,102,102,116,107,113,95,98,106,112,107,103,98,108,103,108,100,99,90,108,98,110,102,109,105,112,90,93,111,107,103,106,98,106,103,111,99,100,92,101,102,106,91,99,108,110,103,99,104,113,99,120,95,103,105,100,95,95,106,105,103,117,106,104,104,111,92,107,94,113,93,101,106,111,100,98,97,107,106,102,93,118,120,96,102,99,110,107,112,102,104,101, +511.28601,116,103,97,103,98,115,118,97,102,107,116,88,99,101,104,111,100,102,102,95,100,94,75,101,106,109,108,95,109,110,101,102,103,113,103,109,104,99,107,106,99,94,104,101,108,106,107,101,113,91,110,102,104,113,101,100,98,100,102,97,102,109,101,91,105,98,102,107,105,110,102,107,101,95,82,105,101,115,108,101,101,99,103,105,100,106,93,103,103,94,111,105,93,108,107,89,108,99,103,98,101,99,104,111,94,98,110,121,101,103,94,104,100,107,108,99,101,98,101,100,96,100,98,100,103,107,109,91,111,105,96,109,114,97,114,95,107,100,77,97,106,115,101,95,110,89,121,105,103,97,99,102,112,73,101,105,109,85,106,105,98,111,105,109,121,105,112,101,104,93,99,102,83,99,109,114,108,100,108,110,95,102,98,120,107,98,105,93,104,107,113,100,101,112,107,125,114,103,98,111,109,94,102,106,104,101,105,67,116,103,101,107,108,108,106,108,96,103,108,100,99,106,102,113,104,96,97,113,108,114,103,98,110,102,96,106,99,113,108,109,102,94,115,117,105,98,100,112,103,117,103,117,106,89,92,107,100,103,111,107,94,98,100,107,92,100,114,116,109,105,81,97,104,102,105,107,104,111,102,100,107,105,95,109,109,105,97,101,101,114,95,99,108,112,97,102,109,97,94,111,106,113,103,116,109,105,96,111,107,107,97,103,114,111,104,114,101,121,100,109,105,106,83,106,104,108,103,90,107,98,97,99,110,113,117,101,109,100,103,92,101,98,111,100,101,109,111,106,104,112,101,91,98,115,94,102,106,107,102,112,102,103,121,115,120,94,98,110,112,99,113,99,100,104,91,105,107,108,106,110,110,105,107,102,102,106,105,101,108,99,134,105,98,103,89,111,93,107,93,129,105,96,101,106,89,109,99,109,114,108,108,87,106,104,108,107,119,96,116,100,110,91,95,112,100,110,105,110,98,98,112,110,112,99,104,99,105,120,108,109,106,103,100,94,101,105,102,87,101,107,110,105,103,107,103,112,111,111,108,103,107,101,99,97,109,103,106,107,99,96,102,112,104,107,114,103,103,112,107,109,97,105,109,105,108,106,105,105,105,102,114,113,111,114,101,107,104,113,110,114,113,104,106,101,107,96,101,104,81,95,109,99,100,111,107,105,113,98,100,102,105,106,101,106,114,104,106,112,111,104,104,102,99,105,94,103,112,120,110,104,102,106,109,94,115,106,109,106,109,102,114,81,103,123,111,117,102,106,114,86,103,107,96,101,120,93,110,113,104,104,95,105,117,108,111,100,105,109,126,112,106,100,93,91,100,96,102,110,107,102,110,107,101,105,104,117,116,90,114,107,103,103,106,106,103,115,96,105,79,107,102,108,106,101,115,100,99,105,99,103,102,98,115,108,109,105,111,102,110,107,101,107,98,114,98,109,102,116,100,103,116,109,112,105,104,96,100,105,123,95,102,101,106,108,98,109,104,103,106,101,105,119,105,105,104,102,91,92,108,104,112,115,105,118,91,118,108,106,100,107,115,112,88,85,94,117,105,106,91,101,109,110,110,109,93,107,100,103,103,112,111,99,95,103,99,102,96,103,109,102,95,108,111,107,108,112,95,116,108,105,104,105,104,114,103,104,102,96,109,97,108,121,109,109,74,104,104,102,107,106,99,85,89,100,106,69,104,100,96,135,122,100,95,99,109,112,100,115,108,94,106,102,112,94,100,111,99,109,102,104,106,95,107,97,105,118,104,113,104,95,109,79,108,109,103,112,114,104,105,121,105,105,116,102,109,95,101,98,98,113,102,109,118,100,108,105,100,102,107,118,83,92,105,96,100,90,119,104,109,106,103,102,112,104,104,111,120,101,119,115,104,111,103,121,86,114,105,102,101,99,106,109,122,98,101,106,97,102,93,100,102,99,112,116,100,115,109,90,105,108,97,102,118,95,102,98,104,113,106,104,111,105,105,105,108,117,106,100,110,109,109,107,106,98,109,111,108,108,101,115,117,102,112,106,104,106,104,108,116,98,103,123,112,107,103,111,91,115,94,97,106,113,117,110,107,105,102,109,104,108,104,108,106,94,106,98,99,104,107,104,111,103,105,100,104,105,103,119,100,116,101,109,107,96,110,88,98,117,105,117,106,95,108,101,101,104,97,121,101,99,105,108,113,106,103,116,107,102,97,115,94,91,116,97,93,100,106,100,104,102,117,110,107,106,110,117,111,102,91,108,116,110,106,97,101,105,102,105,100,109,110,95,97,96,117,102,104,102,102,112,108,102,94,113,92,104,110,101,77,106,104,88,108,92,118,112,100,110,112,109,106,111,103,121,115,105,102,116,102,91,105,106,101,99,110,112,112,108,95,114,103,89,111,103,103,114,94,104,100,105,98,109,106,102,99,106,104,104,91,102,102,123,102,109,95,106,106,102,86,96,92,104,100,108,92,105,101,92,106,117,122,107,102,87,94,106,100,121,107,97,89,102,104,108,102,119,104,107,94,121,109,105,102,102,109,112,95,110,95,102,108,109,104,105,108,106,102,110,100,100,111,125,105,112,103,97,113,97,107,102,106,107,95,109,98,98,100,111,107,102,101,114,108,91,104,106,107,97,102,107,116,107,97,103,107,105,111,106,107,107,90,102,95,97,99,113,102,105,107,117,86,105,101,112,101,104,112,109,98,101,109,105,119,115,99,108,107,86,109,103,107,109,105,106,103,114,95,106,108,96,107,105,94,108,106,123,102,105,99,102,99,103,98,106,116,99,101,103,99,103,108,99,92,103,103,112,95,111,108,112,94,91,113,96,99,101,104,103,110,114,108,102,102,139,108,110,101,101,100,103,109,110,109,99,99,92,102,101,108,103,109,108,88,104,102,115,97,104,103,110,112,104,106,117,91,101,114,106,111,100,105,102,107,109,109,110,100,106,96,102,106,103,100,109,105,107,104,103,99,110,102,85,108,110,100,106,100,97,87,107,111,104,108,104,113,92,126,109,104,106,98,103,117,116,116,109,117,114,111,108,94,101,100,101,92,106,110,104,111,101,107,106,98,107,104,103,102,110,104,96,104,112,113,103,110,107,99,109,99,104,105,105,113,118,97,103,113,95,101,107,102,103,102,100,109,102,102,99,107,98,103,107,102,99,105,117,98,100,109,108,101,87,96,99,107,102,108,104,109,100,93,109,87,105,111,99,108,116,101,94,95,108,101,101,106,100,104,112,109,108,105,109,118,106,104,109,99,113,108,108,100,108,103,105,96,109,107,106,117,100,99,91,108,102,104,115,112,105,102,98,119,99,119,102,105,111,106,100,108,110,96,106,110,107,111,130,109,99,120,103,98,103,105,103,108,109,91,96,116,100,107,105,96,116,114,106,105,106,109,102,95,118,117,112,86,100,106,92,102,113,101,104,102,99,91,110,100,104,94,111,109,105,99,106,98,105,74,95,101,99,105,112,105,117,107,109,103,110,109,107,98,102,110,111,109,98,105,110,102,94,98,112,107,112,100,112,102,111,95,97,96,108,107,108,118,106,90,101,97,108,107,103,102,99,100,97,110,108,100,91,108,92,102,107,112,100,99,109,99,107,111,104,91,96,104,94,103,104,113,104,107,113,108,104,102,94,101,96,101,102,111,98,99,109,101,112,109,104,106,110,127,114,99,117,94,102,109,103,113,91,128,91,100,96,103,113,108,97,113,101,99,100,103,95,105,109,107,107,101,102,100,112,103,94,105,105,110,104,118,106,111,99,109,99,105,110,105,108,112,106,109,94,101,99,113,110,104,111,103,105,109,99,113,94,94,105,120,113,103,105,100,106,105,110,111,101,100,111,102,104,117,102,107,97,98,114,96,102,98,99,114,105,76,115,102,105,95,101,97,104,102,104,106,100,106,98,100,101,103,108,102,102,113,106,98,108,99,113,102,97,117,101,92,100,105,112,100,98,98,95,100,113,94,128,101,107,100,104,95,115,94,105,102,81,105,99,105,94,117,109,99,98,105,100,104,106,103,109,113,104,101,103,100,105,100,92,104,105,106,99,97,100,98,112,101,106,106,103,110,112,101,96,106,113,114,107,100,89,124,108,113,100,104,103,115,111,110,104,113,109,100,107,104,102,109,100,109,99,103,97,102,100,107,92,74,107,104,101,99,98,108,116,107,102,108,105,108,95,120,108,102,109,103,103,100,108,104,115,93,117,113,96,98,108,106,98,102,106,100,100,91,103,109,123,99,98,91,103,101,102,101,99,108,103,102,103,103,96,98,99,88,103,101,112,109,99,103,98,104,98,105,113,100,100,121,105,113,103,91,102,99,100,109,109,106,81,111,109,104,103,102,111,112,111,101,97,109,108,110,103,92,107,104,96,95,95,95,108,105,91,91,96,105,87,104,99,110,94,99,102,108,108,104,109,109,95,102,109,99,112,105,105,105,111,104,90,102,99,80,112,100,92,109,103,105,101,102,99,110,101,103,93,98,108,97,97,93,111,95,104,98,109,87,94,102,110,104,103,101,108,99,113,105,94,112,98,103,104,103,116,103,113,106,100,98,103,107,107,101,96,100,98,88,114,104,115,111,111,98,108,97,101,104,100,99,100,106,92,110,104,101,101,102,123,104,104,122,102,106,106,102,102,105,96,96,97,101,104,116,103,111,108,101,108,112,101,116,108,109,92,98,108,112,106,97,98,101,93,107,91,94,94,93,98,105,102,114,94,104,110,102,80,111,132,95,99,95,107,109,105,93,103,117,104,97,96,104,102,77,97,101,99,101,106,100,107,95,102,86,106,90,100,101,107,97,110,108,105,105,96,110,93,106,109,104,116,100,105,103,101,103,127,99,100,115,103,99,120,91,100,96,106,94,94,120,113,117,102,99,110, +511.4267,115,94,66,105,99,109,98,95,108,115,103,106,103,100,106,91,99,101,110,110,107,99,98,100,94,104,104,100,102,114,109,111,108,100,109,101,94,109,139,111,107,110,85,99,103,106,106,106,99,117,105,120,103,109,100,96,134,104,106,99,96,104,102,104,110,108,80,113,118,102,91,108,100,108,91,106,93,114,99,98,121,98,103,99,102,112,110,116,97,90,105,113,117,115,104,98,102,114,75,111,101,97,106,105,112,115,99,108,96,106,97,107,116,99,101,100,90,108,101,114,105,125,113,100,104,118,108,93,102,100,109,103,104,107,133,96,96,112,106,102,108,112,97,109,106,109,115,93,110,91,97,112,114,90,94,112,101,101,114,106,105,103,94,107,94,108,103,106,100,119,108,97,105,107,104,104,109,104,85,108,109,113,117,103,109,100,111,96,107,98,118,106,95,113,103,109,98,102,103,108,102,98,97,99,102,106,93,91,107,106,99,104,109,90,111,105,101,101,105,102,105,104,94,110,95,120,116,98,116,109,95,107,108,120,79,106,114,110,100,115,104,100,111,103,90,113,108,91,110,96,105,94,102,100,104,98,102,99,93,104,101,103,109,97,92,116,105,107,109,98,102,104,105,96,89,112,106,107,103,97,114,102,105,112,103,96,106,106,107,99,107,112,104,105,108,109,98,102,105,102,95,102,106,117,90,114,101,107,100,109,100,118,103,112,98,104,98,96,98,109,105,112,113,104,104,102,104,100,112,108,104,106,107,104,108,103,107,102,113,99,94,112,97,97,100,117,100,101,99,109,112,105,106,102,112,100,126,104,99,107,118,112,112,91,111,104,102,115,95,105,107,101,105,106,97,95,107,90,136,113,111,106,95,110,101,110,107,101,109,115,103,99,109,96,100,107,101,123,97,103,112,122,98,101,105,100,95,106,109,119,103,98,108,109,107,110,103,105,100,94,98,98,101,102,84,110,113,101,112,113,105,103,126,109,96,99,102,99,94,107,113,97,103,114,112,107,108,103,113,109,99,106,114,105,103,104,109,108,115,103,111,104,111,112,113,108,120,124,115,101,116,120,108,99,110,98,101,114,113,105,104,103,113,115,94,111,105,107,104,105,110,116,101,108,101,106,100,116,100,96,121,91,107,108,121,98,101,103,116,91,113,114,99,103,110,112,110,104,98,101,111,114,110,107,99,103,107,109,111,116,102,88,116,103,100,113,113,97,107,99,87,100,95,110,115,105,112,107,109,116,118,111,111,106,101,102,96,111,107,105,103,105,109,98,101,102,102,100,99,106,101,111,104,99,121,111,104,110,102,102,110,102,102,83,95,109,112,117,108,102,104,115,104,106,117,115,115,107,112,106,99,100,100,110,88,100,91,108,106,95,100,100,100,108,114,99,109,96,116,104,110,110,102,90,103,116,100,92,108,96,111,103,121,113,100,114,95,111,106,111,117,101,114,107,116,99,104,104,100,108,107,115,108,115,106,98,108,105,103,102,113,108,120,106,114,99,105,103,112,106,111,111,108,99,107,108,109,108,103,113,109,109,103,100,115,95,104,108,96,100,112,105,97,109,118,114,105,85,110,100,95,91,103,114,111,104,108,107,100,137,114,102,121,104,101,108,111,105,109,98,93,110,102,99,100,92,107,114,117,103,113,107,102,107,108,105,107,89,107,103,111,109,114,100,105,105,101,106,104,87,112,101,104,109,101,104,111,96,114,98,102,98,96,103,111,112,115,104,110,108,110,109,112,103,104,127,111,106,130,105,109,110,117,110,98,112,122,106,103,110,99,108,111,99,115,109,101,98,109,97,108,105,103,100,106,100,98,110,110,100,102,100,102,100,106,109,112,111,114,110,100,111,114,109,104,110,117,101,115,111,102,109,125,103,94,100,96,106,112,110,92,116,108,83,101,111,115,103,79,104,100,105,107,110,106,108,99,109,108,106,116,109,106,114,92,105,99,99,111,108,109,102,102,110,103,106,107,102,100,93,97,101,102,94,116,100,110,108,129,107,75,118,107,114,105,102,106,109,93,109,107,118,96,105,106,104,113,103,104,105,109,107,106,97,98,109,110,106,99,104,103,107,117,113,104,114,100,107,114,102,115,108,117,97,108,112,105,104,95,104,102,104,106,103,113,109,109,108,103,110,110,111,96,109,108,102,111,114,105,85,106,108,95,106,117,105,93,108,108,105,107,115,122,105,97,102,107,104,96,118,92,110,104,114,112,138,105,103,95,82,103,102,107,117,97,104,103,108,113,109,114,117,103,98,110,106,106,98,95,111,99,106,109,107,108,108,107,94,96,105,105,95,80,128,122,103,106,99,107,104,104,129,110,115,111,102,114,86,106,105,106,116,104,100,109,121,109,100,113,108,104,111,110,79,101,94,100,95,106,97,102,117,101,106,99,93,110,107,114,99,106,128,114,108,92,104,105,118,108,104,101,114,103,112,109,106,109,104,117,108,117,97,114,103,104,114,111,106,109,116,102,98,103,95,108,105,107,96,105,106,117,124,108,96,98,101,102,106,111,103,106,99,107,98,115,117,116,120,105,118,109,112,116,93,117,108,112,112,101,103,105,107,99,113,103,82,112,109,113,96,104,110,117,109,103,98,104,108,112,113,106,83,112,111,121,107,101,113,109,109,113,107,111,101,109,106,104,94,126,107,102,104,112,98,110,102,115,114,71,110,101,108,107,130,111,101,99,96,116,102,94,104,122,113,108,121,109,106,108,104,109,104,104,105,116,107,100,108,96,99,115,107,108,99,109,109,100,106,111,111,105,109,107,120,109,95,100,108,102,109,101,101,108,101,103,120,106,116,102,104,86,105,102,91,105,98,104,112,101,102,104,112,95,108,103,97,104,100,104,105,102,101,107,106,112,95,104,121,110,109,114,101,121,104,102,115,102,114,113,110,101,102,109,92,93,102,105,81,101,105,102,105,97,113,99,98,103,86,103,96,118,108,113,119,124,101,97,110,112,105,111,110,107,97,117,95,103,99,107,102,102,103,97,102,110,115,109,85,100,105,117,97,104,104,122,102,107,101,110,110,96,107,110,107,101,109,107,113,105,102,121,109,109,116,102,115,103,112,95,97,105,108,118,100,117,107,108,112,105,107,112,99,106,118,100,105,109,113,111,106,104,104,99,113,102,102,109,102,110,80,81,112,106,102,103,111,105,113,117,78,101,105,104,106,118,106,100,98,91,102,100,102,108,99,115,104,105,104,109,119,118,102,105,110,106,102,115,104,105,113,108,96,105,106,103,116,107,100,106,100,109,102,113,107,84,105,102,94,108,109,109,122,105,109,101,95,107,101,116,107,98,111,102,99,123,110,116,103,108,98,105,105,96,98,115,108,113,103,100,109,103,100,105,113,121,120,98,108,105,115,101,113,115,107,106,105,111,103,99,103,102,105,107,92,115,97,104,104,108,120,112,100,82,104,107,105,106,105,105,97,102,102,97,101,104,113,133,115,120,106,116,106,104,112,103,103,102,109,108,92,103,103,98,108,107,110,117,108,100,112,117,112,99,104,113,108,112,104,99,103,100,105,143,111,99,91,109,100,106,91,95,114,91,113,105,111,106,109,114,108,90,111,110,109,103,106,103,136,111,109,103,111,112,103,102,108,102,114,108,119,105,102,109,110,94,99,97,101,115,100,99,114,113,113,104,96,101,120,116,102,103,105,110,113,96,93,117,97,107,97,126,106,96,109,95,122,105,108,114,87,105,113,113,102,117,98,115,107,108,108,108,105,108,101,96,104,118,99,104,99,105,114,98,117,106,105,107,108,104,117,94,109,108,102,95,115,108,91,103,106,98,108,108,107,102,108,113,112,106,104,105,116,112,108,104,97,113,117,108,117,109,106,105,108,111,99,103,102,100,101,103,121,94,113,103,98,104,104,102,87,102,106,109,117,118,103,111,112,98,105,111,115,114,123,92,112,98,100,121,122,106,111,101,108,98,101,114,119,102,123,114,107,115,110,97,103,96,99,109,112,116,83,97,114,109,98,113,94,99,103,106,108,98,104,99,101,107,105,109,107,110,121,116,111,97,108,106,107,109,99,112,99,102,102,105,103,114,123,96,106,115,101,101,83,95,108,108,113,100,96,104,111,109,106,96,90,105,110,96,94,110,106,99,110,102,106,103,102,104,108,97,99,111,95,103,108,102,109,106,97,139,99,102,101,81,113,111,109,101,108,116,99,102,103,104,108,115,96,112,105,118,73,102,107,111,104,104,103,97,109,97,99,106,113,96,107,103,95,93,107,103,110,104,125,113,104,107,99,107,75,97,106,102,108,121,104,108,107,97,106,109,102,131,111,111,97,111,92,124,103,81,102,103,99,106,101,108,113,104,110,103,109,104,102,99,111,109,105,94,97,92,102,110,106,109,117,92,104,96,98,99,118,102,108,98,102,106,102,115,108,106,117,90,104,109,102,104,99,110,110,105,109,96,107,102,106,97,105,94,102,99,121,104,117,107,112,114,110,98,110,116,104,108,100,113,115,95,113,103,110,111,112,101,102,115,99,107,101,115,106,100,114,117,97,119,102,105,106,95,101,105,101,110,111,106,93,104,108,106,94,101,102,110,120,111,119,113,99,113,116,112,110,102,105,120,105,107,104,73,101,108,94,110,103,104,105,97,95,101,105,88,107,108,100,95,93,107,115,99,94,98,112,110,103,110,102,103,87,109,96,103,109,101,99,98,106,106,86,113,94,106,98,91,101,97,102,105,107,106,101,100,103,110,109,99,118,106,105,109,92,104,96,116,106,111,104,105,116,95,100,114,90,110,122,138,115,90,102,104,93,92,119,118,107,111,94,89,104,113,105,108,105,109,99,110,104,106,116,105,96,113,109,118,112,101,93,100,123,99,105, +511.56735,90,91,83,97,95,100,94,98,90,101,97,99,93,104,101,91,98,113,95,108,114,99,92,109,110,105,95,119,107,90,79,93,120,80,100,108,117,109,99,117,104,98,102,108,110,125,101,109,112,103,95,98,106,104,93,117,91,95,107,104,110,116,109,99,100,111,106,101,108,118,117,108,101,112,91,100,99,97,94,109,107,103,112,95,101,110,115,107,104,106,108,95,97,114,104,109,101,103,85,103,104,109,91,109,102,117,103,116,113,96,95,98,117,105,102,108,120,98,111,101,101,102,106,105,91,103,120,97,111,88,102,109,106,99,99,108,99,105,111,111,102,104,107,104,98,112,124,100,103,100,93,102,105,101,112,96,99,108,82,100,103,104,101,91,96,72,102,97,103,107,111,105,107,108,92,102,110,105,110,110,113,105,103,102,104,94,108,107,111,101,93,95,116,102,112,119,110,112,97,125,100,110,75,109,105,112,120,108,102,105,112,108,106,97,109,114,114,105,102,109,104,107,102,96,102,98,109,108,109,111,104,111,110,102,102,98,95,120,109,99,94,118,116,103,96,109,109,90,123,100,97,105,110,105,115,99,99,108,105,107,107,107,94,109,109,99,109,117,108,112,101,104,94,122,111,112,107,108,109,102,108,105,109,101,99,97,103,105,111,109,109,103,117,106,113,115,113,113,103,113,113,97,96,115,96,111,114,104,87,108,101,111,97,104,113,98,97,111,117,103,104,106,104,113,107,109,100,107,111,110,112,103,105,100,112,99,107,105,105,106,97,102,104,110,100,116,113,103,114,101,109,133,117,103,114,106,98,116,115,106,106,95,120,101,109,106,98,111,102,96,108,68,110,107,108,111,108,117,102,103,115,108,100,98,109,114,99,107,102,116,107,99,103,111,116,96,108,109,103,105,97,103,108,109,112,100,108,101,107,110,94,109,118,98,122,104,104,106,113,113,98,97,96,93,99,106,112,99,106,101,104,113,123,108,103,101,101,114,95,115,117,115,114,99,108,107,114,101,99,120,103,100,103,117,105,103,112,115,106,109,96,112,113,104,115,108,102,103,112,98,102,117,109,104,94,105,100,119,108,115,105,112,100,100,109,105,101,100,100,98,114,116,100,106,109,96,105,108,106,110,115,134,109,115,105,97,107,118,104,105,103,107,114,108,107,108,105,110,89,113,104,94,108,105,113,114,109,107,100,111,105,103,96,115,106,113,99,110,109,110,115,110,113,94,108,117,96,97,100,110,106,108,125,116,100,104,106,101,118,99,97,105,118,101,106,109,106,100,110,107,112,104,104,110,112,106,109,101,102,103,94,121,112,105,118,109,102,90,111,106,106,108,100,109,114,107,93,95,110,95,101,104,123,106,95,108,129,109,111,109,106,103,107,109,104,90,108,100,103,111,85,98,84,109,103,108,99,94,106,116,104,96,101,109,102,112,89,107,109,93,85,96,107,103,106,114,107,111,87,107,95,103,102,106,94,105,101,112,105,101,108,105,100,104,102,93,105,102,107,105,110,105,109,93,96,110,98,117,118,104,121,102,122,100,94,112,96,102,103,117,92,109,97,96,112,95,110,104,104,109,100,80,108,100,105,110,109,113,120,109,107,113,105,100,97,105,105,98,95,105,98,108,93,121,99,105,107,105,100,111,114,111,97,79,99,118,114,107,113,113,124,104,109,113,101,96,106,117,91,107,102,102,100,104,112,135,102,104,121,103,102,98,109,109,98,87,92,105,110,103,107,117,116,95,92,103,106,113,103,105,112,100,102,105,99,105,106,109,116,111,108,116,98,113,101,101,108,114,111,111,102,112,111,103,113,89,89,111,115,106,116,105,109,105,122,114,116,106,120,102,119,111,115,110,99,108,118,107,112,112,105,109,107,113,114,110,92,82,77,104,106,113,102,114,107,106,116,91,103,111,111,109,110,103,101,100,111,111,109,103,108,109,114,108,106,105,110,112,114,101,108,116,104,108,90,105,107,99,110,103,103,100,118,106,109,91,99,109,88,101,105,122,86,102,106,106,103,110,110,117,115,88,95,101,103,101,116,103,106,99,113,119,112,111,104,108,122,113,102,105,114,101,117,99,122,106,115,106,123,99,103,111,104,106,85,109,104,100,114,113,117,107,116,103,97,102,115,100,96,79,110,103,111,115,104,115,108,125,103,100,104,106,99,110,111,106,104,106,104,101,99,109,107,91,99,93,103,103,111,98,109,102,108,107,106,97,101,95,97,105,110,114,103,105,107,104,105,117,98,108,86,108,108,105,112,115,113,94,101,110,102,106,115,104,111,98,109,97,113,97,106,114,105,93,106,106,106,109,114,99,118,96,104,100,116,96,106,97,102,107,100,114,101,103,101,102,102,95,101,102,108,103,112,104,92,102,98,86,106,96,102,111,94,98,96,103,97,106,112,95,114,108,118,109,104,98,101,94,95,123,101,109,102,99,104,105,116,109,111,104,103,101,106,99,102,113,110,106,108,112,98,102,113,99,111,102,103,105,105,102,101,116,110,91,116,96,106,106,92,116,84,104,102,101,110,84,103,106,94,109,102,99,112,107,111,104,122,104,101,94,110,100,104,121,117,94,99,113,108,102,108,99,98,103,117,75,109,118,118,97,107,101,104,111,116,105,105,92,112,96,105,109,115,112,111,102,111,105,119,109,113,107,111,103,120,106,102,105,101,112,101,111,98,112,101,115,115,109,105,108,109,111,104,109,109,108,108,98,115,97,105,103,102,107,118,113,106,112,111,103,112,108,102,107,111,96,108,113,108,107,103,107,109,107,106,111,112,105,110,110,116,103,108,102,88,104,102,112,111,113,114,106,118,98,102,99,108,115,94,124,112,95,115,104,108,117,110,123,99,111,107,103,112,117,114,102,108,102,105,114,108,111,111,93,102,112,99,110,104,109,104,103,116,101,97,110,106,106,113,90,95,111,109,123,104,104,107,116,100,104,95,100,95,84,125,113,94,114,103,109,104,95,94,110,101,102,105,98,106,106,110,101,113,111,108,113,109,100,105,106,98,108,110,101,112,107,96,107,101,96,96,109,102,108,98,107,105,100,114,113,91,95,113,97,66,100,101,96,109,106,105,115,109,103,107,96,108,99,104,101,106,109,114,97,104,106,99,103,104,102,96,105,103,108,105,109,105,97,120,111,107,99,105,95,113,113,102,103,109,102,91,104,118,111,124,95,91,99,115,110,119,103,77,104,105,105,106,111,108,102,108,109,111,117,109,97,108,113,98,110,90,107,112,104,98,97,101,99,83,109,104,111,103,109,121,117,111,105,107,95,106,111,110,106,104,112,101,95,113,106,105,103,110,104,100,105,100,105,100,120,98,109,100,117,99,104,104,101,97,110,108,100,102,111,111,106,107,107,104,107,100,107,113,102,100,110,109,108,103,117,97,102,91,108,103,99,113,109,105,112,105,116,111,99,101,116,81,100,100,96,111,96,99,101,112,113,104,102,112,121,94,107,102,106,117,113,109,105,106,97,105,103,101,103,106,110,124,105,96,122,91,107,108,107,104,102,101,107,95,113,113,108,113,108,106,89,106,102,108,91,102,105,107,115,114,103,100,105,111,109,109,103,98,98,110,93,112,106,113,111,104,105,111,106,114,122,130,109,104,111,108,105,111,78,100,99,104,117,106,106,103,106,104,109,102,107,108,103,116,107,120,96,113,106,100,112,99,108,117,105,111,99,104,103,112,101,108,94,104,76,110,103,111,112,105,109,115,103,99,91,105,108,112,112,112,95,113,102,103,103,113,95,93,119,100,111,110,104,108,120,109,97,112,83,102,104,123,109,104,116,103,102,101,100,117,104,102,113,122,107,105,103,101,104,110,114,102,98,94,110,123,108,108,109,105,101,115,104,66,94,103,107,102,98,110,109,99,104,113,96,106,102,117,100,113,102,99,104,114,103,113,109,97,124,96,107,117,102,94,96,117,102,105,108,116,105,106,110,88,109,91,105,98,110,100,103,86,109,105,101,111,106,112,94,106,98,108,116,124,102,108,124,94,84,95,98,102,113,107,108,111,102,106,110,99,102,103,104,107,103,115,97,106,116,96,105,109,107,109,95,109,114,117,112,106,113,99,99,109,108,109,100,91,113,107,110,93,99,104,110,102,102,100,101,104,98,106,104,107,102,106,93,123,98,114,116,91,108,111,111,98,109,105,112,105,102,114,106,111,102,108,102,103,109,103,117,103,109,109,99,99,112,104,109,116,110,111,109,104,94,92,108,114,115,98,100,100,98,103,107,109,113,96,99,97,99,104,109,99,106,104,102,107,109,109,93,114,96,110,114,99,101,108,113,109,106,111,108,105,108,102,104,103,106,119,104,108,106,102,100,102,105,101,109,115,104,108,110,109,115,99,101,101,98,98,108,104,105,108,109,103,111,98,104,111,95,102,100,107,107,108,116,94,106,106,91,107,104,101,108,102,101,105,108,116,103,109,105,102,112,97,100,106,103,114,111,122,113,95,113,99,101,107,98,111,106,106,103,95,107,99,93,104,117,99,91,107,114,100,108,107,105,117,98,105,108,100,113,96,117,118,105,109,104,110,106,105,105,94,98,99,116,102,93,115,110,106,116,107,105,112,105,102,83,113,98,107,111,107,118,76,109,118,98,102,93,104,98,106,100,93,99,108,110,98,107,112,103,113,108,90,111,107,96,97,97,103,111,108,104,106,99,107,109,96,106,114,106,117,110,102,104,105,100,99,91,103,104,105,111,110,100,112,103,96,98,103,106,94,103,101,104,111,106,98,105,112,102,113,110,101,102,108,107,110,75,107,105,97,102,111,107,91,105,106,99,97,107,104,103,105,106,99,109,109,97,93,107,99,102,113,106,105,106,108,79,102,107,107,105, +511.70804,117,99,100,106,92,117,93,98,108,101,106,112,95,110,112,97,101,104,100,103,100,97,107,108,114,108,99,100,110,107,103,115,109,107,108,99,94,92,109,111,89,98,108,109,114,105,102,103,104,105,118,105,99,106,98,106,112,98,113,102,100,105,110,122,88,109,101,97,107,101,105,115,103,112,109,107,97,104,115,99,111,113,104,111,111,97,106,96,97,100,94,96,95,104,88,103,101,90,105,109,110,93,109,99,95,105,95,105,110,88,108,106,110,107,114,100,102,114,100,116,99,103,104,106,93,108,109,95,97,94,96,95,107,115,108,98,102,85,105,108,93,99,113,102,95,94,103,96,99,103,116,114,116,107,102,98,102,85,106,109,97,104,117,91,104,100,110,99,100,89,104,100,90,104,104,100,121,104,105,98,96,115,104,107,107,108,100,86,97,99,119,100,117,117,102,109,104,92,99,113,107,110,103,105,109,114,102,110,108,102,103,107,111,104,110,106,97,107,125,102,103,115,106,100,103,96,104,105,99,100,108,111,99,99,97,110,112,105,119,113,122,104,103,108,100,116,110,101,102,109,107,120,108,105,107,108,95,104,98,101,91,106,93,107,102,105,108,101,100,105,96,94,106,96,95,106,104,106,118,118,107,108,107,100,98,115,105,103,103,108,104,102,105,120,109,104,94,97,111,100,118,105,107,118,91,101,108,114,100,110,96,103,101,115,99,104,97,118,104,109,93,109,99,102,108,103,101,94,108,98,102,99,109,98,106,115,97,99,104,104,95,115,117,99,91,93,102,108,106,114,112,101,106,103,112,100,125,119,129,112,89,107,104,107,116,112,108,108,117,103,107,109,110,97,128,108,103,117,101,99,102,110,102,107,97,106,98,117,101,77,112,99,104,114,96,100,102,101,101,103,117,99,107,100,99,109,108,105,110,107,103,95,120,114,109,109,109,116,106,113,101,122,107,96,108,105,110,98,104,98,99,103,104,102,105,106,103,113,94,112,104,90,106,102,109,111,106,93,101,110,100,115,104,100,99,112,103,95,100,112,103,96,107,118,107,106,109,110,98,103,107,104,86,106,122,114,99,111,102,102,94,110,104,107,112,98,106,111,98,100,102,113,112,92,102,104,102,103,116,104,120,105,110,94,100,108,105,109,106,99,117,105,99,115,112,106,100,120,104,82,107,108,96,104,90,109,116,112,102,100,102,106,103,104,106,105,102,109,95,98,105,111,110,108,121,112,105,99,104,101,104,99,108,109,105,101,102,113,95,102,97,104,113,104,109,106,107,101,101,100,98,101,110,105,115,114,95,100,96,110,103,101,110,122,106,98,103,97,83,102,106,116,108,110,106,106,102,101,103,110,109,97,110,103,111,99,98,103,103,112,105,104,118,90,108,96,95,105,105,100,111,109,99,122,105,104,109,110,104,90,113,109,104,109,102,106,112,96,114,104,104,105,107,108,112,92,102,105,113,104,95,99,105,101,102,97,105,106,101,113,108,106,115,102,94,99,120,104,98,106,118,116,103,97,109,106,95,102,109,99,113,105,101,94,98,118,102,87,95,109,105,103,101,95,103,110,114,110,100,106,106,105,101,107,103,120,116,115,118,107,103,96,108,96,110,98,95,87,109,102,113,103,103,102,81,105,108,109,112,110,107,112,103,115,100,98,117,109,101,102,104,102,100,105,107,99,107,106,104,121,115,118,107,91,107,119,103,108,111,106,109,115,102,111,105,116,101,105,110,103,114,106,108,108,108,98,101,107,116,91,113,100,120,114,106,108,115,113,96,118,118,110,106,108,98,120,105,109,103,128,104,104,100,102,123,103,106,110,103,108,99,98,96,105,102,104,110,111,96,117,99,111,110,97,101,93,96,108,108,113,105,96,101,113,108,111,110,100,116,100,94,109,101,97,123,100,100,99,99,98,97,109,104,106,104,105,113,105,106,99,115,99,110,116,106,106,108,98,91,113,110,109,110,114,119,99,111,106,111,103,108,100,104,105,101,115,102,112,101,97,99,107,112,105,111,95,102,105,105,103,106,107,109,98,105,96,106,98,94,72,103,130,104,109,90,105,101,112,109,103,108,106,90,112,100,116,96,109,116,99,101,104,102,84,92,108,98,102,107,95,104,98,102,106,104,95,112,105,101,102,113,102,106,97,119,105,97,125,111,104,105,114,109,101,98,103,90,112,98,103,100,110,96,104,104,104,105,114,102,101,108,118,84,94,120,126,101,100,106,99,94,97,108,98,110,95,103,109,100,104,109,94,105,101,114,118,105,100,108,97,99,114,103,87,120,107,95,101,109,93,116,125,108,99,103,105,110,103,105,105,115,96,134,109,101,104,118,113,101,106,102,111,97,107,104,99,69,109,106,106,107,105,109,113,101,117,99,117,96,104,113,103,106,117,113,99,92,99,112,111,115,104,113,104,100,113,102,118,91,110,98,109,75,117,106,112,102,92,112,111,110,101,96,99,102,109,101,102,113,103,111,98,108,93,103,101,108,107,99,97,108,112,117,106,104,114,104,102,100,100,110,110,125,110,112,108,113,101,90,100,107,110,107,106,96,110,117,115,113,106,109,96,105,106,86,95,122,109,111,110,105,110,108,98,103,104,115,102,102,106,102,91,109,105,110,107,115,97,116,107,107,147,114,104,106,104,103,120,112,107,99,101,88,99,115,116,110,112,109,109,106,108,113,105,104,97,127,106,117,116,102,106,112,103,91,115,104,99,104,100,113,86,103,123,87,106,117,103,115,95,107,120,104,117,107,102,106,102,116,114,99,97,93,107,88,112,105,102,105,113,110,100,107,115,100,109,99,119,101,116,113,104,106,98,95,101,94,110,104,108,106,101,113,101,108,106,103,110,102,101,119,105,110,102,101,110,106,103,108,118,103,115,109,121,101,105,116,111,119,108,96,103,97,103,101,116,116,103,107,122,101,113,100,99,110,106,94,113,105,101,103,115,101,105,97,111,99,114,101,91,110,108,111,115,114,99,112,110,108,105,100,106,102,112,110,111,106,112,107,108,107,106,110,111,113,102,111,103,108,111,110,109,100,106,106,104,109,114,96,100,108,109,111,106,109,117,112,92,97,110,118,95,116,125,106,108,108,119,99,105,105,112,106,100,94,102,87,99,98,100,88,106,100,115,104,103,105,110,102,107,101,102,103,110,110,108,106,117,110,107,97,101,90,101,98,106,99,98,104,109,120,103,107,120,111,109,112,123,116,110,98,101,98,112,101,118,113,110,102,108,100,103,107,94,109,104,117,106,119,94,114,89,99,102,90,87,103,108,107,103,98,112,93,98,103,113,106,116,105,104,109,102,94,109,115,106,103,101,94,108,113,121,103,104,92,96,88,105,106,104,107,117,98,107,114,120,109,107,109,111,106,112,104,109,102,121,110,96,94,107,113,117,91,95,98,111,88,98,100,105,108,107,106,103,104,106,108,101,99,87,101,112,101,99,112,110,104,99,106,95,89,103,100,113,107,111,109,118,106,102,110,104,110,112,98,106,106,107,100,108,98,104,115,101,120,101,106,113,107,103,110,107,98,96,99,113,103,111,107,107,89,112,112,103,101,97,105,99,106,109,98,104,117,112,112,103,110,104,107,107,103,110,111,121,108,95,113,108,103,103,102,100,94,110,102,109,102,103,99,116,95,105,124,92,101,106,105,98,117,103,99,106,124,83,90,84,107,104,97,102,106,102,98,110,113,110,111,117,109,99,101,101,104,83,105,101,109,113,101,85,100,102,98,105,108,103,119,102,111,118,103,115,116,105,111,120,106,104,99,108,106,101,104,109,99,96,110,110,110,107,112,122,98,106,101,117,121,96,119,102,104,104,112,97,128,109,107,99,106,106,104,110,95,106,103,114,103,102,96,103,88,94,96,112,102,100,106,118,110,97,101,107,110,94,109,113,108,117,101,103,99,117,94,111,103,99,104,108,97,106,100,97,95,96,107,69,109,111,100,100,108,111,111,98,107,106,101,101,106,106,114,104,110,103,103,103,106,100,110,97,121,135,100,107,109,111,113,77,106,90,104,106,102,103,109,107,102,108,104,112,94,109,108,109,110,104,102,116,109,103,109,104,105,122,112,103,127,111,109,107,102,106,94,119,115,112,89,103,94,123,103,112,111,101,94,96,99,108,100,98,94,104,110,108,118,107,95,111,111,109,103,98,112,96,110,116,109,103,100,99,101,101,117,112,98,114,102,114,88,109,98,111,113,110,105,108,102,104,109,104,117,95,103,98,98,128,106,110,108,106,108,111,94,112,102,103,125,102,100,110,106,105,113,104,102,104,109,122,101,112,112,100,106,95,111,102,106,112,80,102,115,106,110,108,103,116,106,95,103,113,116,115,113,113,107,109,99,98,113,101,91,101,103,104,108,106,102,99,110,105,121,109,111,110,101,108,99,97,103,108,109,106,105,95,100,99,108,101,116,106,88,103,107,104,95,102,108,82,95,109,103,106,109,108,109,97,106,95,102,99,101,102,99,110,95,112,105,114,96,105,100,109,106,94,114,113,100,99,108,102,110,110,103,100,109,104,109,106,105,92,101,95,103,101,103,109,113,101,95,104,108,113,102,115,106,114,105,113,91,106,120,96,107,97,105,108,109,112,103,107,114,106,109,99,96,101,103,112,103,90,104,100,111,114,107,101,105,97,104,96,110,106,106,114,113,109,107,94,115,94,103,99,104,103,98,105,101,99,102,111,117,101,114,103,100,106,102,100,91,106,112,87,85,104,85,113,107,107,103,116,99,104,116,99,113,90,107,119,105,115,98,106,109,97,113,93,103,102,101,103,102,114,93,110,93,98,112,99,91,118,108,104,105,114,102,97,113,110,102,84,115,88,105,99,103,109,101,102,100,106, +511.84872,105,95,102,110,86,105,104,96,101,106,97,103,108,105,102,104,97,89,99,93,101,98,105,104,105,110,109,105,94,117,104,99,107,115,119,106,98,103,104,104,111,99,92,106,109,102,99,106,93,103,109,101,93,94,110,94,107,101,110,96,105,105,98,84,107,103,85,98,100,100,124,103,109,109,101,110,107,102,107,104,109,83,87,103,111,99,108,124,104,115,104,106,103,100,85,69,117,99,107,89,100,105,105,108,100,118,98,106,98,101,98,98,104,122,113,104,101,103,105,105,105,91,110,107,104,122,100,103,101,108,97,100,95,110,103,104,94,95,116,97,96,103,113,79,104,116,111,97,105,98,102,104,117,98,101,91,104,100,105,99,107,98,107,121,107,103,103,104,100,102,108,104,92,99,99,99,107,105,107,108,103,97,103,113,111,107,110,101,107,96,110,108,109,106,118,101,99,102,109,116,115,107,104,106,112,113,118,105,111,102,110,108,112,101,111,106,95,102,98,107,107,103,95,106,102,118,107,94,83,111,102,99,121,95,103,112,105,104,111,96,96,120,107,101,107,118,107,107,103,116,107,108,116,94,109,117,99,100,112,101,103,105,105,112,108,100,105,100,105,102,103,113,107,98,98,107,98,114,108,106,104,112,106,100,104,103,108,103,113,102,103,110,103,106,117,104,108,105,109,113,103,108,100,94,98,99,111,86,110,112,108,109,103,107,101,103,112,101,102,96,108,93,103,101,111,96,99,102,102,111,105,97,99,112,114,120,119,111,95,109,104,108,91,98,99,112,98,111,106,101,107,93,105,74,95,100,101,105,109,108,106,106,115,95,100,117,103,111,97,85,70,106,114,96,120,114,101,103,111,118,109,116,101,118,108,105,111,91,119,100,115,96,95,112,111,103,99,113,105,115,104,109,125,114,107,102,103,107,104,109,107,100,122,98,119,75,101,95,111,99,107,95,91,104,99,109,103,100,88,110,107,110,111,94,117,109,101,98,101,97,94,116,102,107,104,108,99,102,108,107,110,102,100,107,113,102,101,103,111,107,104,83,99,113,104,103,110,107,96,112,117,105,111,106,98,103,103,119,90,102,118,100,109,100,109,95,103,107,109,111,118,107,103,107,91,110,100,107,119,104,105,104,111,108,99,116,96,112,114,123,129,107,98,91,117,112,102,109,101,103,99,109,118,102,111,119,113,107,102,102,96,103,106,93,103,114,106,88,106,106,104,105,99,112,105,104,95,95,106,94,108,119,102,106,97,100,103,106,95,106,106,104,102,103,114,109,108,103,104,95,90,106,105,96,95,111,108,102,113,109,101,106,82,102,116,108,107,94,106,95,98,106,107,110,117,99,102,113,109,99,103,114,98,98,106,98,101,102,109,103,98,99,112,105,113,109,113,100,114,98,113,111,109,104,112,107,102,119,108,107,111,110,120,112,110,104,110,107,108,115,108,110,101,109,103,106,105,102,103,106,111,104,116,106,112,102,93,94,71,100,101,106,95,106,100,104,99,105,113,112,92,111,97,113,103,106,105,112,119,105,99,118,106,98,112,100,105,110,100,107,106,103,104,111,100,100,105,106,121,96,110,108,104,114,105,109,113,102,109,95,110,116,115,104,105,119,113,108,114,97,110,105,107,115,111,111,99,98,116,116,98,101,107,101,111,110,105,108,98,108,107,107,106,117,98,99,116,107,95,110,121,98,108,112,106,105,109,105,105,111,96,109,91,94,99,105,104,107,101,98,120,93,109,125,99,112,101,103,104,96,98,113,121,109,108,124,115,90,120,113,103,101,111,113,111,103,106,106,108,101,99,102,88,105,120,98,110,103,99,99,111,108,102,108,111,110,100,108,119,96,114,111,105,109,104,105,117,101,115,104,111,111,117,103,104,101,100,107,103,109,93,108,114,102,98,107,102,93,100,100,102,98,105,101,109,111,109,111,93,109,93,95,90,114,113,107,100,98,93,110,102,108,107,113,106,104,109,125,94,98,112,99,115,86,106,105,114,117,99,101,97,104,108,105,112,101,101,113,111,114,96,110,97,113,105,112,102,102,110,113,103,119,107,102,104,102,101,111,106,108,110,125,112,103,120,104,105,108,105,103,102,110,115,105,125,107,104,87,107,108,111,112,114,98,106,103,111,85,108,113,120,116,110,102,117,107,108,101,109,111,108,120,98,104,100,106,94,115,108,103,106,113,106,105,96,110,112,101,109,101,99,101,102,118,111,106,108,102,101,113,88,111,111,116,108,110,111,104,105,105,102,117,94,105,102,103,98,86,105,103,109,116,116,101,96,102,114,108,116,112,112,105,95,96,107,97,97,108,91,102,106,106,95,102,110,103,95,102,107,104,108,104,100,109,112,100,105,108,97,105,103,109,104,109,104,112,109,115,82,100,102,115,104,101,101,103,97,95,125,114,105,106,114,110,97,106,110,110,106,98,101,98,103,110,103,100,102,111,116,109,101,118,102,104,110,102,107,103,113,113,93,96,107,100,104,105,97,84,109,107,102,109,102,100,100,99,119,110,117,96,108,103,101,98,96,112,98,104,102,117,119,109,109,104,103,112,106,97,108,104,98,94,112,106,104,96,121,113,108,100,108,112,104,110,109,103,99,110,115,108,132,107,117,87,100,101,99,101,107,108,101,112,107,116,105,91,113,106,106,96,103,102,108,109,103,100,108,113,100,93,117,114,99,109,100,112,107,99,109,109,100,117,112,103,106,104,112,100,101,101,107,113,102,101,96,106,96,109,101,103,113,92,105,109,117,106,104,102,99,96,107,110,99,96,102,109,108,101,112,100,103,111,105,101,111,99,80,103,93,92,106,110,115,106,98,98,108,107,101,101,109,106,109,107,115,108,99,101,108,99,110,110,107,112,104,98,106,101,109,103,109,117,99,119,106,113,111,104,112,110,104,124,95,105,104,112,112,97,117,109,110,109,108,99,103,100,110,106,101,108,114,102,99,106,108,114,103,110,106,109,102,108,98,109,119,107,111,92,99,108,107,135,111,111,99,104,102,106,109,102,121,84,109,92,101,91,103,95,113,104,107,92,104,109,100,92,106,99,105,105,110,95,91,102,98,100,111,112,116,88,100,107,105,107,113,104,99,104,86,105,101,102,110,111,109,108,104,99,88,105,98,105,99,105,103,96,104,103,107,105,110,104,105,106,121,106,102,104,92,100,102,101,106,109,113,75,96,112,101,115,102,106,97,104,111,100,104,95,123,105,118,105,104,112,102,98,102,110,113,102,105,111,107,110,98,97,108,102,122,98,102,105,88,107,113,80,105,102,105,99,110,111,93,116,113,108,108,107,105,99,110,95,110,101,106,97,100,101,105,98,88,112,111,102,103,107,107,106,94,105,96,105,91,105,102,104,101,100,103,97,92,101,103,110,102,109,104,106,104,113,104,110,101,104,110,103,112,103,107,100,112,102,101,107,104,99,122,91,109,112,100,107,95,107,98,103,105,107,97,104,113,111,107,117,102,111,108,104,106,106,87,99,108,108,95,112,104,103,97,78,99,113,103,120,111,116,109,118,96,82,107,104,105,98,123,106,98,100,104,105,107,99,116,105,101,87,104,105,100,106,107,126,127,105,102,81,92,102,102,102,103,111,109,112,110,107,108,95,100,109,89,100,108,100,101,103,118,107,103,131,113,103,86,107,102,88,99,112,104,105,109,107,102,103,98,105,98,101,97,103,96,109,102,106,100,110,103,96,114,105,112,102,115,77,108,108,110,102,106,104,101,109,104,105,104,109,104,109,99,101,97,96,91,117,102,106,95,97,113,107,110,96,115,114,100,102,106,106,108,109,92,105,105,108,99,102,103,109,103,109,109,103,106,118,98,101,108,105,98,115,110,116,84,100,105,95,96,90,107,104,102,82,113,105,105,112,102,108,106,100,99,100,109,96,95,111,105,77,117,96,103,108,98,113,103,102,86,113,107,108,103,114,95,103,102,102,110,99,89,104,99,112,99,102,104,97,103,101,95,110,104,111,99,100,130,98,105,92,102,99,114,101,98,105,103,109,111,105,108,103,109,100,97,104,110,102,107,110,106,105,114,105,105,106,92,122,108,120,94,109,109,108,116,119,102,129,99,111,97,102,83,94,110,105,102,68,104,117,111,106,109,100,99,91,105,106,111,104,97,103,106,109,111,109,100,103,97,107,92,99,98,94,104,111,108,102,125,101,105,109,105,70,108,108,95,110,111,99,103,104,97,97,109,125,106,106,99,103,94,106,103,119,110,110,112,103,100,100,98,115,111,110,113,102,107,94,100,111,99,104,100,87,113,105,108,106,97,95,105,104,101,96,117,99,107,94,106,102,108,98,101,103,113,99,112,113,115,117,105,100,98,92,104,95,103,97,102,106,102,102,111,103,98,97,92,110,109,110,87,94,103,99,95,94,102,91,101,103,104,106,108,102,108,103,98,105,98,96,102,105,106,107,116,110,71,112,90,100,108,94,106,101,108,107,121,102,105,111,107,102,89,97,105,99,96,107,110,101,109,103,96,96,100,105,106,98,109,115,103,99,96,104,111,97,109,105,109,114,107,99,100,112,107,106,90,101,91,99,107,112,98,90,97,114,106,110,104,104,88,102,106,102,112,112,108,106,110,90,103,115,92,98,103,90,94,76,103,105,117,98,97,94,127,109,113,87,104,100,101,99,100,104,102,106,99,97,97,95,109,97,99,100,90,96,92,116,102,92,129,101,102,101,110,100,103,96,109,87,113,107,103,105,75,115,93,105,95,114,112,113,88,105,116,79,102,99,104,94,91,96,112,101,102,102,117,97,110,109,89,108,117,102,91,116,99,105,93,103,106,104,117,107,112,105,104,103,98,83,100,92,113,90,108,98,112,106,97,101,94,103, +511.98941,97,100,87,98,113,104,108,98,102,100,103,110,104,105,95,97,103,110,98,101,98,96,113,99,109,98,88,98,98,93,91,92,109,98,110,92,114,94,103,105,95,95,91,88,105,107,91,99,90,106,98,91,108,106,110,98,86,94,96,94,110,100,118,98,114,111,103,96,108,105,84,108,92,90,104,105,104,115,108,96,101,100,106,108,96,91,94,109,101,98,95,103,112,97,99,100,99,95,107,100,110,88,104,100,99,93,103,105,94,94,113,90,95,99,107,109,101,105,102,91,112,104,101,103,100,103,105,97,103,110,106,107,97,116,95,106,98,112,105,102,109,108,103,103,99,106,103,94,105,100,97,99,122,99,91,103,114,111,105,99,76,69,107,97,94,106,109,112,99,109,105,105,106,106,105,105,84,110,107,110,90,105,106,100,109,98,91,95,111,99,103,103,107,101,82,99,106,99,112,96,105,113,100,102,87,106,107,103,102,103,100,99,107,94,85,114,103,95,100,101,109,92,95,101,108,114,75,104,100,110,93,109,92,101,112,106,98,109,104,105,94,103,108,103,114,103,110,103,99,109,97,103,102,104,108,106,93,103,90,107,97,97,99,104,102,105,98,109,102,96,105,103,109,105,96,111,85,106,122,110,101,103,101,103,98,109,110,101,105,95,106,110,108,131,117,99,107,104,92,114,105,93,111,110,111,104,114,102,111,106,95,101,108,104,93,107,120,111,107,112,108,105,68,115,106,91,104,102,111,102,127,113,108,110,107,101,104,108,78,106,100,112,115,103,101,104,90,122,106,109,118,108,119,104,102,117,99,117,104,106,103,112,102,93,99,94,111,102,99,104,108,108,111,105,107,107,107,112,99,107,101,110,103,103,104,114,121,112,101,115,121,99,91,111,102,98,113,96,103,108,109,115,100,91,104,100,102,107,86,115,104,103,99,106,111,92,105,102,117,101,107,71,129,101,122,104,113,102,107,107,97,100,110,102,100,109,95,93,103,110,95,98,103,95,97,105,101,84,107,110,101,113,105,95,104,81,104,96,106,98,116,94,105,113,101,115,112,113,102,99,96,110,101,106,99,95,120,113,106,118,110,107,102,84,99,101,99,108,103,85,98,99,106,102,95,103,114,81,121,97,102,125,101,102,110,117,112,97,114,93,111,96,103,105,111,98,109,101,90,105,92,110,101,95,99,104,98,90,102,109,95,95,92,75,101,108,102,105,108,113,113,104,91,105,116,97,95,108,107,97,103,104,85,105,105,97,89,109,97,95,104,95,104,78,105,109,112,99,109,90,94,101,103,104,105,103,112,113,105,105,109,97,102,106,107,102,104,105,96,107,106,101,109,94,105,115,106,100,103,105,103,101,106,111,104,100,91,95,101,103,104,98,118,99,102,106,104,104,116,103,115,96,105,98,100,86,104,107,103,101,105,100,101,116,94,106,107,95,95,106,99,109,96,98,90,99,95,105,108,95,105,103,105,112,102,100,103,110,88,101,106,102,101,99,86,103,110,98,106,103,102,114,104,107,87,103,108,106,104,108,103,112,107,98,98,98,107,108,103,87,104,100,96,116,107,94,99,110,106,109,98,97,101,100,116,106,118,99,97,100,100,97,98,110,103,89,91,91,96,101,101,96,104,105,105,112,102,97,101,101,112,102,101,97,87,123,116,97,104,102,103,105,105,111,104,112,108,109,106,116,108,106,97,108,104,96,109,99,109,111,100,100,103,92,96,122,101,115,101,103,106,131,118,99,98,110,111,112,111,104,113,102,110,109,106,113,116,101,97,107,95,107,97,106,99,98,101,97,104,114,102,103,95,117,107,111,102,107,108,102,104,102,98,103,117,103,106,111,91,112,108,101,109,104,113,103,110,118,94,109,112,94,95,120,93,104,110,113,105,106,99,117,113,117,96,106,103,100,107,94,100,104,114,107,98,108,91,99,111,108,96,108,94,99,99,95,93,106,108,104,102,97,91,99,96,104,104,109,93,124,109,110,106,104,104,89,98,106,108,108,104,120,105,108,113,97,97,100,95,108,98,108,100,105,111,101,101,110,94,98,120,109,98,111,110,97,101,98,116,107,107,101,114,123,107,89,106,96,110,109,73,99,109,122,98,102,103,97,116,111,98,95,119,106,95,105,102,72,104,107,104,102,106,105,103,99,123,100,93,110,105,102,113,109,106,103,110,110,114,125,97,115,117,97,105,95,101,105,111,108,98,105,83,98,90,103,109,93,111,89,122,99,98,102,102,91,100,101,106,115,109,99,101,103,114,101,109,99,90,96,109,106,100,105,99,105,100,97,92,95,113,104,106,91,100,115,106,95,93,109,108,113,105,105,100,102,109,109,119,94,86,116,105,109,105,105,104,97,105,115,116,95,100,105,109,104,108,112,105,109,97,103,102,99,100,97,114,116,111,101,112,103,96,110,114,100,99,102,88,106,105,111,107,108,104,114,106,112,115,104,137,107,101,119,98,105,100,102,100,104,113,105,99,107,113,111,106,92,100,100,103,110,105,103,113,100,103,106,94,109,106,103,109,103,102,106,105,96,94,98,107,114,109,105,106,102,101,101,108,107,109,116,108,91,108,116,107,105,117,99,108,98,122,105,99,99,109,95,106,102,98,88,90,100,106,101,94,103,95,106,108,103,107,113,95,102,108,99,111,101,108,96,93,103,85,103,102,110,105,104,102,111,105,105,114,111,91,99,105,103,105,102,108,112,105,101,109,96,87,114,113,109,96,94,98,118,102,97,93,104,105,99,106,101,93,107,102,102,102,104,107,108,103,104,105,91,103,106,81,125,103,94,113,98,103,94,100,113,103,114,113,90,95,106,104,97,117,111,106,110,107,104,100,107,103,103,107,126,102,108,121,96,99,122,104,95,99,81,106,102,112,112,89,94,104,103,95,104,97,100,101,104,111,112,105,91,103,108,100,112,100,104,109,108,99,99,102,109,109,97,128,105,99,104,107,121,105,114,111,111,103,115,96,116,99,73,75,102,114,100,102,99,113,107,106,96,103,103,101,95,97,98,100,93,104,95,110,96,107,105,107,105,86,114,95,107,104,96,95,110,87,104,105,95,109,79,110,106,97,95,99,119,107,101,113,102,103,106,97,93,104,108,110,105,105,102,107,111,94,102,108,99,109,101,103,108,108,99,105,104,120,106,104,99,99,107,113,112,115,98,88,84,97,100,98,102,101,103,117,97,102,113,115,111,88,100,95,101,108,92,106,100,102,111,112,103,92,111,109,106,102,112,101,104,101,98,82,95,108,104,103,107,120,114,109,100,115,102,108,97,98,103,107,106,97,93,102,93,100,98,97,110,95,120,104,95,101,112,113,99,97,113,96,106,102,110,106,115,107,102,108,109,109,104,103,104,112,113,105,112,98,115,98,96,102,97,106,98,93,96,108,105,99,107,102,89,109,113,98,100,95,109,110,107,105,99,121,104,108,106,101,102,112,96,95,109,110,103,106,104,106,107,114,106,108,104,108,100,98,103,106,114,95,107,109,106,111,100,105,84,116,106,116,99,114,115,95,104,93,112,107,101,103,102,107,113,111,93,97,103,103,102,108,105,108,108,103,104,98,96,109,106,106,99,111,104,95,113,105,120,97,106,111,120,102,104,100,94,109,116,90,99,113,106,91,100,114,123,115,107,108,113,100,110,100,96,109,110,98,105,104,118,111,100,113,106,104,99,107,99,106,109,110,90,133,102,84,105,100,100,111,100,106,98,108,108,111,117,107,111,110,117,110,93,102,109,105,105,105,100,97,110,111,96,89,88,114,95,105,121,106,93,99,124,100,101,72,106,99,104,95,97,103,103,104,98,109,98,117,109,102,98,107,97,101,112,104,93,102,103,106,98,99,102,108,99,100,101,105,104,94,101,93,111,95,102,115,100,106,100,111,104,119,102,96,108,102,101,101,107,100,108,91,104,104,61,99,99,99,95,121,103,91,117,105,109,96,109,105,101,106,113,101,94,112,91,107,88,102,102,99,110,107,96,115,104,106,102,110,100,106,99,72,111,121,105,105,102,110,101,91,102,99,112,104,112,99,113,110,103,95,112,94,96,102,111,106,111,109,96,113,106,104,113,103,116,102,108,101,101,98,105,90,105,101,96,99,104,109,109,93,107,112,96,90,109,107,114,86,106,102,111,99,98,103,112,100,116,108,108,112,116,100,102,102,103,96,93,102,112,108,97,105,102,107,99,111,103,109,101,87,105,109,106,105,103,101,95,105,102,98,101,109,106,99,95,106,107,96,103,102,112,105,107,99,108,102,113,102,113,109,109,109,98,106,102,101,96,93,111,102,124,101,96,97,94,106,99,100,107,98,109,102,106,101,106,103,100,116,113,96,106,110,101,101,101,100,109,105,107,96,115,107,109,99,103,109,95,111,100,113,100,102,99,100,115,111,99,105,109,104,98,96,101,99,104,98,97,112,109,108,100,101,98,107,101,106,112,103,104,113,90,101,110,100,112,103,111,106,103,104,103,108,95,92,95,115,108,99,108,101,93,107,101,95,100,106,100,95,105,103,113,105,120,101,110,101,111,119,106,93,80,104,100,120,104,101,109,100,111,100,101,101,93,102,110,100,101,100,103,108,101,117,99,104,91,116,122,115,93,95,103,117,108,105,93,103,106,108,110,106,101,112,115,97,101,103,95,98,106,95,103,99,114,101,96,105,106,101,94,93,85,83,96,98,104,104,100,91,108,113,116,111,113,99,103,109,113,95,63,107,100,99,102,107,101,98,101,109,96,100,98,103,73,116,109,124,113,97,94,110,101,92,103,117,112,100,117,108,100,113,117,100,111,100,79,87,97,110,100,103,107,107,92,117,104,89,102,106,100,89,109,100,96,93,101,107,112,93,110, +512.13007,99,106,102,96,110,116,97,96,102,103,77,111,101,114,91,102,102,121,102,90,100,103,102,105,104,103,99,99,102,97,101,105,100,110,95,109,95,101,109,100,86,101,98,102,102,117,101,104,94,116,107,102,120,96,106,105,96,98,116,93,98,97,98,102,82,101,93,107,105,99,113,96,74,110,93,94,100,104,108,91,96,97,94,87,93,127,106,96,104,104,118,99,108,105,98,104,120,102,91,98,94,100,107,100,110,105,106,100,104,104,120,100,116,116,102,100,107,109,109,101,110,102,109,105,103,105,102,109,113,103,99,109,98,109,102,94,103,110,113,103,104,98,95,110,100,103,114,97,115,104,98,102,108,97,110,110,99,106,91,86,105,83,109,118,96,87,104,99,104,99,97,114,103,95,106,90,108,109,104,110,111,108,96,95,101,91,98,90,100,92,104,99,109,110,108,99,101,120,123,103,95,106,99,111,98,92,104,99,142,113,99,112,96,101,103,99,94,108,105,108,116,111,95,113,97,106,103,108,103,100,103,104,107,105,108,103,117,101,98,105,102,100,115,107,94,102,98,126,97,101,109,103,112,99,103,103,103,104,98,108,87,98,106,90,109,97,104,102,99,95,98,113,109,85,105,100,101,96,99,103,102,109,106,104,97,108,93,104,108,97,101,108,110,88,107,99,105,103,98,110,99,113,107,118,96,103,110,101,99,107,115,102,109,97,98,98,115,96,99,107,91,87,110,95,106,112,102,100,118,102,111,113,117,88,111,96,97,105,109,95,106,85,105,108,105,114,95,100,112,104,99,98,100,114,96,107,102,99,101,99,105,101,97,104,100,91,89,115,97,96,121,103,104,102,103,86,109,103,103,92,113,110,91,106,125,100,105,100,102,100,114,98,99,104,92,107,96,104,106,100,105,114,100,91,96,96,111,109,105,94,104,104,91,109,94,102,110,84,104,94,99,100,102,95,97,80,108,100,99,101,94,101,100,102,110,105,98,110,95,103,109,99,99,122,109,106,107,102,117,110,113,95,91,98,103,100,107,104,121,111,97,90,100,110,106,108,100,96,108,95,110,101,95,91,103,126,102,96,96,106,99,91,113,97,103,107,95,97,103,99,133,106,103,103,73,110,107,116,102,91,120,105,105,104,105,107,91,102,98,105,101,101,106,93,104,103,112,110,101,91,85,108,110,92,102,110,89,114,102,101,98,115,103,90,95,110,106,109,112,110,96,102,118,101,117,94,98,107,118,114,108,107,125,99,110,108,89,105,100,102,113,102,100,115,107,102,120,109,99,103,96,109,95,102,113,105,107,107,106,103,109,104,119,98,108,97,104,113,118,108,106,101,98,105,105,116,99,107,90,109,99,99,104,112,82,108,104,102,93,102,112,107,109,99,110,102,108,106,103,96,121,119,104,106,114,106,90,111,102,100,110,106,87,107,112,105,111,106,108,97,106,103,101,111,105,104,114,114,100,112,99,110,109,118,99,98,105,112,103,109,116,111,90,98,97,83,108,99,102,99,106,110,103,108,96,100,101,101,103,97,112,104,105,101,109,108,83,110,113,111,100,95,108,104,100,99,103,90,104,94,95,112,104,116,114,102,113,101,109,106,91,106,108,108,92,105,98,115,104,108,104,101,108,111,94,104,114,99,109,114,107,97,110,104,98,114,110,100,113,97,107,112,101,109,106,110,103,102,106,122,103,100,106,96,117,118,89,98,103,104,96,116,114,103,105,113,100,90,104,99,108,95,95,98,102,110,104,106,112,105,103,105,118,103,106,113,114,113,89,108,118,99,101,113,102,104,99,105,111,107,109,96,106,120,135,108,109,107,101,93,103,95,117,105,107,104,116,94,110,103,104,103,110,99,116,114,113,101,112,123,99,105,105,117,101,114,109,95,98,115,102,110,108,101,103,105,100,104,107,98,97,96,103,126,94,109,111,96,96,124,108,104,95,95,110,98,101,107,113,98,103,112,104,103,126,108,91,109,102,109,114,116,99,98,102,110,98,111,104,100,110,114,107,105,102,107,79,111,94,101,107,110,121,109,94,112,98,98,105,93,112,107,109,101,113,101,98,115,114,110,98,111,106,109,98,115,108,95,97,103,119,96,107,98,92,118,97,109,101,116,97,101,110,102,86,99,98,104,117,98,98,101,112,116,98,108,109,101,101,112,111,109,98,105,105,107,112,104,110,109,99,97,108,114,98,105,102,101,100,103,79,82,111,107,108,105,105,106,105,105,118,92,103,105,103,102,112,105,115,102,110,95,106,99,120,101,105,100,97,97,96,98,103,104,97,106,109,100,91,110,108,113,107,134,105,99,102,99,102,93,99,106,109,117,102,100,106,121,111,98,97,110,87,105,102,105,105,100,101,112,111,107,103,95,88,105,108,103,97,107,84,98,102,100,101,101,94,102,99,93,108,115,103,100,115,111,109,111,96,98,112,123,75,112,100,111,98,94,125,98,92,104,118,105,108,116,108,107,104,93,97,98,108,104,96,103,113,110,103,109,106,107,113,117,113,106,102,113,97,108,103,105,88,103,107,103,110,117,111,104,100,111,105,102,109,106,98,111,105,107,96,98,79,96,113,107,106,128,103,116,109,105,116,106,106,104,102,105,102,108,92,105,99,103,107,105,101,105,107,108,99,107,104,115,115,106,101,102,104,114,91,101,107,105,97,107,105,116,109,102,101,99,112,106,95,105,105,89,112,100,100,99,116,102,105,109,108,112,105,105,106,107,108,108,107,124,95,104,110,95,108,105,99,99,98,106,116,112,112,112,103,102,103,105,106,107,106,110,98,109,102,105,105,101,94,104,103,110,101,94,113,107,110,95,110,116,100,102,100,89,90,94,92,97,108,112,96,118,104,96,105,115,103,99,106,101,106,101,102,121,96,99,113,104,102,102,106,108,108,107,95,110,98,98,100,95,105,107,106,113,109,112,110,106,101,104,106,110,105,96,97,103,112,111,98,100,104,116,114,99,103,78,102,103,108,102,114,109,113,108,104,108,104,111,104,96,97,102,84,101,103,98,101,113,108,101,104,96,113,108,112,99,109,104,106,117,102,105,105,106,117,110,106,101,99,97,103,107,105,69,104,105,106,114,103,114,109,106,102,101,106,97,109,113,102,101,106,105,111,105,110,103,95,108,120,108,121,102,115,107,113,115,100,102,112,100,101,104,96,94,99,109,109,119,98,93,110,105,99,100,110,104,99,105,91,109,111,109,109,104,101,113,101,110,110,106,109,96,108,106,106,107,112,106,105,97,109,67,98,87,109,112,107,113,99,110,101,99,102,91,108,113,100,91,105,101,101,77,96,103,99,103,95,102,104,107,104,97,104,106,99,105,92,119,109,104,103,113,103,99,107,109,97,112,103,101,109,102,107,104,99,108,113,106,104,108,101,80,100,114,102,103,99,102,105,102,95,103,113,106,91,106,98,103,86,104,104,117,78,103,106,111,98,105,102,107,104,113,111,106,103,109,97,113,112,103,99,100,93,104,95,104,100,111,110,118,106,129,99,106,103,90,106,108,105,112,106,101,91,115,100,97,108,107,101,110,113,117,113,99,99,92,87,105,105,108,105,95,106,107,83,106,101,99,99,101,102,101,107,113,103,109,99,116,99,110,104,99,99,99,99,107,105,107,113,111,107,103,103,102,101,107,112,108,98,106,107,99,104,105,107,108,111,118,110,100,87,104,100,98,90,100,109,94,102,101,120,106,104,101,112,99,106,94,107,102,105,105,120,105,113,94,105,96,95,102,117,110,99,107,96,108,112,112,105,99,108,102,103,104,110,97,114,99,99,103,95,104,99,98,107,109,100,94,103,99,105,113,109,102,96,98,108,96,97,113,74,89,110,96,116,112,95,95,107,96,101,111,97,105,102,113,117,102,106,91,101,98,108,115,107,109,111,93,103,112,105,107,113,102,94,97,120,103,114,102,88,105,93,110,110,117,112,108,99,99,102,104,90,102,116,117,110,101,114,107,104,105,106,100,113,106,95,114,103,102,107,95,113,102,104,110,101,104,109,100,106,101,111,113,103,80,103,110,99,114,108,96,107,105,95,109,104,114,113,111,108,109,104,110,109,111,113,113,107,105,116,105,94,102,104,95,102,101,113,101,113,107,107,101,104,97,109,111,99,115,99,102,121,104,102,118,105,120,109,102,111,98,105,104,118,104,102,98,120,104,91,110,105,111,94,107,103,87,105,103,115,103,104,111,93,97,107,90,92,95,108,107,93,107,113,104,119,108,111,108,113,106,100,115,97,108,106,102,103,99,99,100,109,93,96,94,102,84,103,111,106,102,86,102,113,104,94,94,106,101,110,109,101,98,98,111,103,108,118,100,109,105,101,102,102,99,109,110,104,103,100,106,87,104,110,105,109,106,101,104,97,103,111,96,85,112,113,91,113,109,110,93,95,108,106,103,111,88,107,99,108,102,106,103,100,100,104,105,111,98,111,113,107,104,103,94,100,104,100,96,110,100,111,104,94,93,101,107,111,112,117,108,107,108,101,114,102,103,111,98,103,93,101,112,105,103,88,103,95,100,110,95,105,98,99,103,98,100,107,100,104,94,108,99,102,77,101,120,94,106,103,111,108,109,103,108,121,98,112,107,113,96,104,117,102,100,113,114,106,107,106,108,91,106,108,109,105,103,104,81,114,112,115,97,114,93,104,99,105,100,109,96,101,113,94,109,99,108,110,114,102,102,108,102,99,98,92,107,97,107,110,106,94,101,99,114,100,98,113,114,99,118,95,107,109,102,115,114,104,121,89,98,103,89,119,97,91,102,109,103,100,98,99,108,105,102,108,95,107,110,94,114,105,115,123,100,93,93,120,95,97,104,94,113,116,94,113,113,116,112,111,107,94,97, +512.27075,93,101,105,106,91,104,110,99,106,115,115,105,91,100,125,109,112,111,100,105,113,109,122,101,105,107,107,94,108,104,101,96,108,102,95,109,116,125,114,114,91,111,117,110,106,111,91,113,87,106,111,95,107,91,106,107,116,99,115,112,106,115,105,106,110,104,99,110,108,97,110,107,92,103,101,122,112,119,100,118,100,98,113,103,108,95,99,101,103,104,116,104,108,114,95,95,106,96,100,111,105,102,100,101,106,107,116,100,87,100,109,101,109,97,125,97,102,112,95,110,114,97,111,104,106,115,113,101,105,113,109,116,100,98,110,104,112,100,105,96,99,100,99,92,97,98,107,112,104,105,108,107,107,104,105,93,109,96,95,95,87,99,108,113,101,109,109,103,98,104,101,99,103,101,112,108,108,94,97,108,101,103,109,105,103,100,101,97,109,88,110,111,98,118,93,96,100,107,108,108,111,100,103,101,105,107,103,100,118,102,97,113,118,104,107,111,95,104,96,130,107,104,87,110,103,112,115,104,110,115,102,103,104,103,97,100,103,109,105,103,97,99,113,107,103,105,105,96,103,106,101,102,110,103,102,102,110,106,104,101,87,108,103,95,94,112,101,101,108,91,106,109,110,96,111,106,106,98,109,107,99,84,112,103,105,95,94,103,100,121,101,102,115,108,100,114,110,117,97,102,122,104,113,119,105,98,109,103,110,117,112,113,106,86,100,94,103,108,104,97,110,111,96,103,98,101,96,109,117,101,100,98,114,113,100,104,107,106,112,89,130,102,101,100,91,109,102,104,106,121,110,110,84,116,113,115,115,99,94,109,98,100,114,111,102,105,98,109,102,103,103,104,104,104,93,105,102,114,109,108,107,106,110,108,104,91,100,110,106,99,101,110,111,120,103,103,101,97,111,107,99,105,103,99,104,99,110,98,120,95,95,106,99,112,111,75,98,100,105,87,110,99,101,105,107,88,121,100,104,106,113,106,109,111,92,101,100,112,125,97,104,105,104,110,98,102,102,108,99,108,110,106,98,131,102,108,95,95,116,105,105,113,91,96,107,111,103,98,112,108,108,106,98,107,110,98,105,120,101,102,105,110,92,106,99,107,106,105,103,105,95,107,114,105,90,117,94,115,109,106,102,97,113,104,98,100,103,98,109,104,117,104,107,79,102,109,101,96,111,102,107,107,103,99,109,112,90,108,104,106,107,95,105,110,107,108,99,106,105,105,107,105,118,102,115,98,79,102,118,105,108,109,103,102,86,103,109,96,106,94,112,108,100,74,112,98,118,109,103,88,98,110,105,101,105,105,109,109,116,102,108,108,104,102,107,100,98,111,128,106,110,106,104,119,104,107,101,99,109,99,109,111,105,101,107,105,110,96,103,115,111,114,109,106,102,124,104,100,120,112,114,102,110,89,104,107,110,74,117,105,99,112,103,103,99,87,84,92,105,108,93,100,102,110,103,103,109,101,105,103,100,102,103,104,112,104,99,107,107,101,109,105,113,106,100,80,99,103,117,120,119,114,109,110,96,107,101,100,105,94,114,107,99,100,103,108,102,108,109,91,103,106,103,119,102,101,110,106,112,100,107,95,98,105,101,119,105,104,115,108,106,108,98,94,107,98,115,111,103,102,103,110,111,104,95,110,109,102,113,108,107,102,106,108,102,107,104,102,98,96,106,98,96,112,99,113,110,104,106,106,114,107,106,116,106,109,107,106,107,106,110,95,110,113,98,97,103,108,102,97,107,110,113,91,99,104,93,103,102,105,109,102,115,104,114,108,106,99,109,115,109,104,102,103,117,104,110,105,120,96,97,95,118,101,110,102,100,104,109,104,105,122,111,98,95,103,94,83,114,100,113,117,100,111,102,92,107,101,98,92,116,106,110,104,93,109,104,101,112,99,117,105,90,97,112,102,99,104,103,103,109,91,106,109,102,105,101,104,103,106,103,103,94,110,105,109,114,103,93,104,108,107,108,112,108,93,104,107,115,95,108,106,105,78,105,106,101,100,117,121,105,111,105,111,118,102,109,99,104,108,104,100,106,97,107,98,124,114,103,109,108,112,107,114,108,112,98,99,106,104,125,104,118,107,117,108,110,113,104,94,109,112,116,114,110,104,98,102,95,113,108,110,93,102,105,116,101,104,86,104,101,110,108,99,104,106,105,104,105,105,115,102,117,113,94,120,95,92,108,102,105,96,109,100,107,96,105,101,99,113,100,115,102,101,117,106,98,102,104,98,104,117,101,109,95,95,91,107,96,103,106,105,105,105,107,104,100,108,108,107,106,105,103,96,117,112,103,108,108,100,114,95,96,91,108,87,100,112,95,101,108,108,99,104,97,99,99,112,105,111,113,115,101,113,112,107,107,106,101,95,106,107,106,83,103,94,99,118,101,98,99,116,107,105,103,113,109,114,103,122,95,123,97,95,103,121,103,97,102,101,104,107,106,118,98,98,101,97,109,110,102,105,107,106,109,114,117,107,102,113,98,96,107,104,106,103,89,102,117,110,128,109,113,96,103,102,106,104,113,90,111,101,112,105,92,95,112,142,128,112,103,103,110,112,106,103,101,110,110,101,115,103,102,101,100,107,106,106,111,100,103,98,109,113,108,109,101,101,106,103,108,105,110,99,97,94,95,112,100,110,113,107,118,95,102,106,120,110,111,103,105,116,103,89,106,98,120,102,101,111,98,103,117,99,102,117,92,94,102,111,102,111,99,91,101,106,99,104,96,91,104,103,117,109,105,120,101,110,105,97,96,97,93,107,103,110,104,101,97,109,92,103,105,108,112,110,105,104,108,128,95,131,97,94,97,105,107,100,98,99,113,99,99,92,93,107,93,103,107,98,129,104,105,94,99,102,102,111,104,110,109,96,67,88,104,95,102,93,110,109,120,98,110,112,97,105,112,105,103,104,95,117,98,98,108,120,98,99,97,118,113,97,91,102,101,105,110,117,108,99,81,113,104,99,108,94,115,116,100,117,103,106,99,117,108,112,107,108,114,102,112,106,100,121,110,105,101,105,119,112,100,93,118,99,109,106,123,95,113,101,108,102,100,103,100,109,102,106,100,96,101,98,103,100,101,91,107,102,106,124,113,115,107,111,103,106,95,108,105,91,107,106,99,106,108,103,107,104,104,99,96,95,116,107,120,104,105,100,112,103,109,112,106,117,86,101,112,110,105,110,107,129,105,109,101,99,101,108,120,110,116,113,95,100,106,101,104,109,113,111,100,92,94,104,113,108,100,96,96,106,100,100,111,116,116,94,97,98,116,97,100,102,96,118,106,119,104,99,102,109,120,113,115,108,106,102,109,98,105,100,94,105,111,104,124,106,108,106,105,105,104,108,113,94,108,99,109,102,109,106,97,100,108,110,107,100,104,98,117,110,100,82,103,102,101,108,110,101,116,101,108,98,101,97,108,120,108,109,99,98,105,100,89,106,102,103,100,102,108,102,104,112,102,102,106,102,99,98,111,115,87,83,96,105,113,120,136,105,98,92,111,101,97,106,107,106,104,96,101,106,88,94,110,105,99,100,104,120,99,104,112,91,95,107,98,99,93,106,106,107,107,97,98,97,106,94,102,103,100,101,98,102,110,106,105,89,106,95,105,110,97,102,95,104,105,98,97,96,102,109,104,104,101,119,94,105,117,105,115,102,104,113,90,112,102,107,104,105,124,106,108,116,95,113,118,103,98,102,108,96,110,104,99,98,102,105,108,102,113,102,106,98,100,100,109,127,91,100,95,102,104,108,106,101,105,97,92,96,107,107,108,102,96,107,104,100,102,111,92,101,103,98,102,104,96,94,114,103,106,112,107,112,98,105,113,92,78,103,97,99,100,96,103,111,112,94,102,107,92,101,99,106,103,106,103,106,97,96,96,102,116,91,104,94,108,101,100,103,113,98,116,100,103,104,105,117,109,102,100,100,104,102,110,117,109,106,115,95,102,111,106,90,95,111,106,105,98,110,104,107,87,108,102,114,99,91,105,103,100,100,116,98,113,109,104,93,106,107,107,111,105,100,91,96,83,103,104,99,120,98,109,105,113,100,97,107,108,99,106,102,101,104,105,117,100,117,106,93,95,104,106,107,114,114,126,104,106,106,88,107,102,101,102,104,85,89,107,111,105,111,84,97,105,108,107,99,100,79,108,91,102,111,110,104,94,104,96,110,102,101,111,107,108,107,112,107,116,102,98,108,94,98,106,105,106,92,101,99,115,99,96,117,101,105,106,104,94,101,98,103,114,91,109,109,100,97,92,92,95,119,111,105,112,107,116,98,103,88,99,120,99,112,110,115,117,109,103,104,99,111,103,116,96,108,116,114,110,107,108,98,107,113,112,96,106,105,110,108,99,101,100,98,97,91,103,113,101,107,109,110,117,111,96,90,112,108,99,105,103,99,113,101,105,91,104,99,109,102,111,99,109,94,106,88,102,104,105,105,111,111,109,101,111,95,99,121,85,93,113,99,99,103,99,108,88,103,104,99,99,101,100,81,98,102,101,96,102,106,103,105,109,102,111,100,113,108,110,96,89,109,115,105,95,105,105,112,119,102,108,108,98,112,85,112,105,115,101,95,99,111,106,106,104,113,109,106,99,102,101,98,94,108,108,106,96,98,113,111,104,100,98,102,114,99,107,100,107,103,117,100,100,92,103,103,91,108,108,103,117,97,106,109,117,99,103,94,116,117,98,118,96,91,96,100,99,105,100,69,117,109,100,111,97,96,100,104,109,99,103,103,109,94,113,127,98,95,96,102,102,115,104,111,93,103,107,106,115,99,105,97,110,110,95,97,124,95,101,97,103,109,102,110,83,87,98,101,98,115,120,101,114,93,111,95,108,105,97,108,106,104,103,96,98,80,103,104,101,103,84,99, +512.41144,111,110,106,109,107,101,112,98,106,97,103,92,104,98,107,101,98,97,102,101,102,124,106,88,94,101,105,99,98,112,103,105,101,105,112,103,95,99,93,119,95,95,97,82,102,105,99,98,95,105,93,101,102,98,114,104,91,89,107,93,106,96,101,82,106,96,108,103,120,123,104,118,101,99,107,110,101,99,107,108,103,105,101,109,108,100,97,110,102,122,97,104,95,104,103,98,99,94,107,95,97,111,99,104,106,107,86,101,99,97,102,99,106,99,114,114,100,92,112,104,110,97,112,113,105,119,117,96,107,108,104,92,102,93,98,109,105,94,112,108,98,103,100,94,94,115,97,96,104,105,105,103,110,96,98,101,103,110,111,109,96,100,100,110,114,109,94,100,113,100,87,101,104,108,102,114,105,101,114,101,104,102,114,108,99,91,99,95,86,113,111,97,101,110,110,107,105,110,100,92,101,102,112,112,111,106,102,100,106,104,105,103,103,100,107,97,105,117,133,103,94,100,117,101,104,118,100,107,119,122,104,102,116,107,102,116,100,113,111,115,101,98,108,116,89,107,103,107,103,108,108,113,97,109,103,95,83,101,86,114,88,110,81,103,96,105,110,97,100,105,106,76,109,96,112,101,112,95,108,101,91,101,103,106,104,114,100,102,103,100,104,103,102,115,107,111,104,101,119,107,96,105,105,119,98,100,101,88,103,113,100,113,101,108,102,106,101,115,100,92,103,108,94,101,106,110,105,94,129,99,88,104,105,110,103,101,108,104,104,105,106,73,95,89,99,105,104,111,95,126,103,102,111,118,106,103,103,116,105,104,85,91,104,90,105,97,100,105,105,106,106,104,97,102,108,103,113,104,97,105,96,118,99,111,97,110,92,95,102,98,113,90,108,89,94,116,94,91,106,102,95,111,110,101,103,102,92,105,105,97,98,99,108,97,113,99,94,93,90,103,112,103,115,113,115,101,91,109,108,108,95,104,106,102,106,99,98,94,108,100,108,109,111,114,100,106,104,90,108,98,101,112,92,107,103,105,93,110,108,97,103,87,102,106,95,118,113,99,109,99,94,112,108,105,108,110,99,103,102,102,100,96,112,93,104,104,95,96,97,104,107,105,96,109,96,101,93,97,107,104,103,121,107,113,118,111,92,106,109,101,107,104,106,91,141,113,118,106,99,100,95,102,105,102,111,106,109,106,102,101,83,109,101,98,108,106,109,115,86,107,110,111,102,101,100,98,107,99,110,109,115,115,104,111,118,98,99,97,97,94,101,106,103,104,108,98,115,99,105,96,103,96,100,95,120,108,105,101,102,100,73,91,108,86,118,103,109,103,99,105,98,93,94,111,108,94,115,88,107,120,100,109,113,106,97,98,101,99,103,110,110,104,100,99,114,114,103,98,95,103,109,100,89,99,106,117,110,108,121,102,103,110,112,104,70,112,104,106,118,104,115,108,124,99,99,102,87,107,106,103,100,110,103,103,104,110,104,98,112,104,118,109,87,102,104,107,90,104,122,103,107,106,116,91,101,115,112,108,109,104,106,98,120,101,108,103,103,102,107,108,114,103,110,114,99,107,103,106,95,110,105,98,113,106,105,103,112,104,100,102,96,94,103,109,98,105,105,104,110,99,106,100,110,105,115,103,105,107,111,122,100,106,99,111,94,109,98,101,124,101,108,107,112,104,102,109,116,98,106,106,95,94,91,113,113,105,111,106,109,109,97,105,110,101,101,113,82,94,107,104,94,95,96,99,101,106,106,99,101,103,104,104,106,107,94,112,106,99,99,110,113,112,101,104,103,103,95,92,107,103,96,102,104,94,112,107,108,108,140,104,108,99,120,105,116,102,101,109,102,100,106,140,98,104,109,114,89,96,118,116,107,101,105,92,103,106,112,104,106,104,103,103,101,112,103,100,98,107,100,103,108,110,104,111,94,103,113,105,91,117,118,118,99,99,103,105,93,104,116,102,104,106,99,100,110,118,116,100,119,104,114,95,113,82,95,110,99,105,119,98,107,117,109,100,102,107,101,108,98,103,111,110,105,99,113,103,94,102,96,107,107,117,108,105,105,113,106,97,103,98,110,103,106,108,107,103,87,112,100,107,104,103,107,110,103,102,92,105,101,103,100,108,105,106,105,100,103,113,104,102,95,97,111,114,114,119,92,104,104,94,104,101,115,100,109,107,106,105,118,103,97,105,106,98,109,109,113,99,94,109,104,105,95,101,91,100,96,98,101,96,103,118,112,100,105,97,110,115,108,103,106,103,103,101,106,96,113,107,96,104,101,111,112,115,112,103,108,107,99,106,107,96,96,95,109,111,106,95,117,116,95,110,105,113,107,86,93,113,105,105,115,106,104,104,106,93,100,109,99,94,85,120,107,104,122,116,110,104,107,100,110,106,107,90,108,104,111,106,103,107,113,113,104,110,96,92,103,100,91,107,100,107,99,107,105,109,102,95,124,110,98,102,119,116,102,103,110,100,106,114,103,102,98,102,99,101,89,98,123,112,114,104,109,106,104,98,110,114,84,110,107,105,98,104,104,109,102,105,100,99,106,109,108,106,112,113,99,103,108,104,113,103,107,124,101,120,106,116,108,108,109,101,110,106,117,99,106,112,98,110,113,100,107,107,106,104,65,104,101,106,91,108,110,90,106,110,111,102,106,103,107,103,88,115,99,101,108,108,105,111,112,111,118,110,95,108,109,100,107,102,105,112,111,103,100,101,91,100,115,103,107,108,106,102,127,91,104,117,111,107,125,115,93,99,103,118,107,76,111,107,104,105,108,107,91,117,115,110,107,105,109,107,113,104,93,102,115,88,112,128,89,105,91,97,107,114,102,103,102,102,101,110,109,103,138,100,109,116,99,110,105,116,104,112,106,101,106,93,106,114,124,123,116,98,99,111,102,118,114,116,103,111,98,113,106,115,104,108,101,98,109,102,102,107,112,102,114,111,111,102,112,93,103,104,106,106,98,96,107,103,100,103,99,111,111,98,103,104,108,98,98,104,91,112,110,105,104,109,119,100,100,103,122,97,110,108,114,110,98,102,107,99,112,102,103,102,98,115,119,113,112,117,103,101,103,104,108,113,96,120,107,106,103,111,104,99,104,98,113,105,107,96,109,124,102,108,99,101,105,112,104,101,115,102,108,115,105,87,117,104,105,102,109,109,114,107,109,105,108,116,97,104,113,121,109,104,106,108,115,94,103,109,104,104,106,97,105,109,105,106,104,67,101,106,113,110,109,124,94,103,125,104,110,92,85,108,105,97,102,92,98,91,112,98,111,110,104,97,102,111,98,105,106,102,100,105,101,102,95,100,111,104,97,102,95,105,105,112,99,96,107,116,114,113,104,105,97,105,88,99,97,109,107,107,111,108,92,102,104,132,99,118,109,110,94,109,112,108,105,106,102,101,104,109,99,95,107,116,97,110,96,107,112,86,116,106,106,110,104,101,110,105,106,92,94,105,113,104,77,106,98,112,115,112,91,107,104,102,103,98,104,107,94,113,104,99,103,102,101,133,92,102,111,92,116,87,98,96,103,109,122,89,117,108,108,114,104,105,97,85,112,93,94,104,108,100,108,108,103,104,102,109,111,100,103,100,110,104,108,120,92,112,107,107,88,87,102,112,116,111,103,100,93,128,113,101,100,108,112,102,103,116,110,113,102,109,117,107,126,107,106,107,132,111,103,103,117,99,113,102,110,103,100,98,113,103,116,118,102,107,102,99,95,109,116,107,104,104,107,108,101,106,112,101,104,105,110,94,116,112,93,118,99,106,115,92,99,92,97,110,105,92,107,104,99,108,103,102,100,108,109,117,93,101,109,96,100,97,69,101,109,105,103,120,104,98,91,107,103,102,114,102,107,95,111,94,104,105,112,101,95,98,97,110,94,107,96,97,98,109,105,100,108,73,112,102,105,127,97,106,112,111,93,105,100,102,101,100,100,110,110,101,95,110,104,108,113,105,94,109,99,91,95,100,110,106,98,100,113,102,101,95,96,104,108,110,105,93,102,106,110,118,99,95,100,110,99,104,108,101,112,96,101,102,104,99,103,106,113,100,76,109,113,104,104,112,99,108,109,102,112,101,108,106,123,104,103,112,105,99,91,100,102,85,102,100,100,112,116,100,95,96,101,94,104,97,105,102,95,102,102,111,93,111,112,102,123,105,112,117,111,95,95,101,100,110,107,102,96,105,108,105,109,103,108,112,113,120,106,91,95,107,101,98,102,107,99,108,99,108,98,94,101,99,104,98,109,92,102,113,96,111,106,101,86,93,99,110,111,108,109,104,110,113,101,104,105,98,105,109,112,95,117,106,98,104,83,104,103,102,106,117,128,95,119,107,109,105,115,114,113,100,97,114,117,103,102,103,108,115,107,90,113,107,100,117,104,116,109,109,103,103,113,91,124,100,99,95,100,107,110,100,109,108,113,104,94,97,99,104,103,106,107,92,109,102,112,105,101,106,100,97,113,109,99,105,110,113,93,102,110,102,107,113,106,96,106,111,105,111,103,112,97,109,104,101,96,103,92,91,105,111,113,105,108,109,96,100,105,105,103,93,133,106,103,94,107,99,91,115,115,91,96,103,95,106,88,109,94,98,100,91,94,110,104,92,105,102,122,110,102,126,108,104,94,101,94,98,115,99,103,109,96,100,103,110,110,88,101,100,103,107,110,107,104,106,108,101,108,105,120,108,103,99,99,114,97,99,106,91,95,98,93,105,93,105,111,107,102,112,100,103,102,106,97,104,112,104,116,112,111,103,113,103,103,95,115,124,107,95,113,101,77,103,101,92,121,76,104,102,103,106,96,115,104,96,102,100,108,105,117,98,102,96,111,85,112,117,94,102,110,98,102,119,122,99,101,111,106,97, +512.55212,105,116,106,106,93,113,111,96,113,109,105,99,95,99,106,97,106,102,99,98,116,100,116,103,96,95,112,90,105,110,98,102,114,110,110,123,109,103,94,104,118,95,108,113,102,88,119,103,98,109,96,106,109,99,105,103,100,104,119,99,106,99,106,98,102,109,101,114,101,96,109,95,107,100,99,103,97,105,94,101,109,99,94,117,95,98,120,118,112,107,102,99,100,98,91,93,98,107,107,107,104,91,101,101,115,99,93,113,106,115,100,109,102,105,103,115,104,115,113,102,118,104,91,105,110,105,116,103,106,94,98,105,107,102,112,101,102,90,108,80,95,89,100,106,102,89,109,90,102,98,114,106,105,104,104,105,94,93,96,92,81,113,100,104,119,103,100,92,105,101,93,111,108,105,105,105,119,96,106,103,108,102,99,104,100,92,87,94,110,92,113,87,103,87,99,109,116,103,105,101,96,117,97,109,102,111,91,101,104,96,102,106,104,115,113,98,106,109,100,103,129,117,112,115,104,95,105,110,112,114,112,100,109,97,104,108,96,114,104,92,108,115,115,104,100,95,110,110,95,104,118,102,99,108,106,107,103,96,104,97,95,101,90,99,100,95,107,103,100,96,109,111,112,106,117,89,79,120,104,101,93,105,103,100,96,134,102,104,120,118,103,99,100,92,116,100,113,78,104,110,106,104,105,127,101,94,111,117,104,104,112,118,104,118,102,105,106,104,120,107,67,112,106,101,100,108,107,90,99,96,118,101,103,102,101,109,129,98,100,99,110,109,103,100,102,128,112,109,102,109,113,97,94,101,105,105,111,110,103,101,90,114,106,111,87,100,79,110,132,121,108,99,115,103,108,114,114,103,115,122,105,99,95,103,104,111,106,97,84,100,108,105,109,117,108,99,109,109,104,113,105,109,103,104,111,104,93,104,109,109,106,112,104,105,93,115,94,105,112,98,115,86,108,105,90,107,102,108,108,117,109,102,113,112,103,111,107,116,100,104,106,105,97,99,109,106,95,95,95,104,106,99,100,100,104,96,115,102,94,99,106,98,102,109,111,112,103,104,104,105,110,101,101,95,105,106,104,111,111,107,113,110,119,110,101,113,108,103,105,103,104,108,115,107,87,104,98,66,109,106,109,95,110,108,107,112,102,105,113,112,110,103,112,99,119,108,117,103,108,101,106,107,108,114,105,108,125,115,99,97,103,102,112,99,101,102,101,106,103,102,99,105,108,96,116,104,103,100,108,105,83,107,103,102,109,100,101,110,99,84,113,101,115,101,112,96,117,108,91,101,104,103,111,102,99,103,113,107,111,110,112,95,109,97,115,105,112,109,115,101,104,101,112,100,108,110,143,116,107,103,95,99,114,108,99,106,102,98,107,110,105,97,117,103,117,107,112,110,111,102,103,106,106,101,101,98,104,101,105,112,114,102,104,106,87,116,107,109,110,95,94,106,109,96,108,96,109,106,75,101,105,108,99,100,107,104,103,106,99,110,103,110,104,109,96,109,117,103,107,102,111,118,121,95,104,110,102,101,115,107,110,106,66,105,91,104,100,112,107,112,97,112,118,119,98,105,105,101,109,102,109,102,107,103,107,104,110,109,97,100,98,102,104,112,106,99,106,105,108,96,97,106,96,91,112,114,107,95,104,107,128,108,96,95,106,104,111,105,106,88,112,89,103,99,106,108,116,94,111,114,103,102,101,109,108,102,110,113,114,143,111,99,105,113,104,94,112,113,100,94,116,112,112,98,108,107,113,110,117,113,108,114,107,141,99,105,108,106,101,113,110,116,119,112,91,99,108,103,111,112,102,99,114,103,110,105,107,106,108,105,120,123,111,113,109,101,115,106,115,112,103,104,112,109,105,113,106,108,115,106,102,108,113,118,104,112,125,100,101,111,95,98,104,104,95,112,96,100,99,115,106,96,116,112,101,103,95,106,110,95,86,90,98,107,90,93,108,121,122,105,114,102,100,101,101,106,115,104,115,102,99,116,95,99,95,96,92,96,110,114,106,109,108,101,104,96,108,110,99,102,113,103,101,99,107,104,103,96,95,111,108,111,113,101,101,96,101,110,102,112,92,99,103,107,91,99,110,100,114,111,104,111,100,107,103,88,102,99,102,112,107,99,108,73,116,104,101,100,103,121,105,98,100,100,113,108,97,106,113,108,130,99,83,87,116,114,101,103,90,94,94,104,107,99,97,105,116,105,105,113,96,110,105,97,98,95,104,102,109,105,96,101,106,113,109,102,106,109,105,101,95,98,110,85,113,106,110,95,90,99,97,101,103,118,122,103,106,108,108,111,120,113,107,101,109,102,106,115,100,100,107,95,114,121,100,99,106,125,105,103,107,100,105,99,110,98,96,101,113,106,111,103,92,84,112,110,95,108,98,106,108,109,99,105,99,101,112,104,102,114,103,112,103,94,103,113,100,103,99,102,109,100,88,112,99,111,112,95,97,112,113,99,93,109,101,99,103,102,100,110,103,109,98,110,91,111,107,113,96,100,106,117,103,117,112,107,98,114,107,113,108,107,84,100,91,107,97,121,110,94,101,113,121,112,111,88,99,100,95,103,110,108,104,108,100,109,96,110,100,109,126,109,113,100,94,111,103,99,113,101,110,109,115,100,108,122,104,100,112,81,106,98,110,107,104,112,103,107,116,114,100,100,108,100,111,103,96,103,117,103,112,102,109,87,108,106,106,102,96,114,102,100,108,108,98,119,115,112,106,102,115,109,111,98,114,98,112,110,103,107,99,110,105,101,99,103,100,107,100,107,98,106,96,111,106,107,96,105,109,98,108,98,110,89,99,104,100,100,97,102,120,105,109,106,105,99,100,105,105,110,106,104,106,95,109,100,103,112,107,102,102,102,109,117,97,106,111,94,116,115,101,125,94,113,104,106,93,112,101,112,109,108,101,91,106,107,102,92,102,101,113,120,96,100,99,100,106,113,109,113,103,105,103,107,101,114,98,98,92,104,100,113,79,116,104,111,110,113,95,96,100,103,90,116,106,113,82,104,104,115,100,109,104,112,106,100,116,113,105,88,99,101,109,117,110,91,101,96,115,96,89,121,102,101,102,95,102,99,96,96,97,102,106,128,106,98,106,104,101,108,98,111,108,98,104,103,117,108,106,97,106,103,99,106,102,102,95,109,99,106,101,109,109,97,103,120,105,107,104,105,115,100,107,100,99,91,99,107,102,98,114,98,95,103,104,96,106,98,86,107,112,81,102,105,108,102,121,94,104,100,108,106,104,110,99,107,94,108,99,100,100,104,103,96,108,112,102,109,104,109,98,99,106,106,109,122,102,110,121,110,87,104,98,105,105,116,102,109,119,86,110,104,96,108,103,107,112,100,113,87,103,102,87,96,110,108,101,99,107,116,118,109,106,107,100,105,101,116,115,108,101,96,95,97,109,98,106,125,94,100,101,83,108,94,100,117,104,101,120,100,98,103,103,104,97,102,80,99,103,105,101,104,95,120,110,93,100,102,110,95,97,108,94,105,99,104,103,106,105,100,113,95,115,104,103,112,113,111,98,116,114,105,117,101,107,114,102,104,94,110,97,85,99,106,107,98,114,92,94,102,99,91,105,101,108,94,88,106,99,113,101,109,99,117,126,113,104,107,98,112,103,95,104,106,103,109,98,105,115,108,105,99,97,109,95,91,101,97,104,103,100,83,109,106,109,102,105,102,104,107,101,94,98,108,102,95,116,111,103,103,117,109,105,108,104,101,104,107,94,98,113,101,92,107,102,105,98,84,101,108,99,105,112,103,89,98,108,103,102,110,103,94,99,106,94,86,96,112,108,108,93,110,117,98,105,104,109,97,100,104,93,102,104,102,115,109,94,97,100,97,94,102,101,108,108,105,104,102,66,100,103,109,101,94,98,100,109,103,101,104,95,92,106,102,99,100,103,108,108,117,97,106,103,107,102,116,91,117,96,86,107,101,103,98,101,112,95,102,97,105,99,117,99,109,112,100,72,101,111,103,107,97,109,90,100,131,81,97,93,96,110,109,99,102,102,105,105,99,107,96,106,108,122,117,108,107,107,94,96,94,105,96,106,106,121,104,102,114,91,108,103,104,104,104,118,113,110,98,103,99,98,104,100,100,102,64,112,100,108,114,102,102,101,95,107,104,119,109,99,108,100,100,105,114,106,108,102,106,105,109,101,102,105,101,116,104,91,100,105,103,104,108,103,107,101,101,99,107,100,103,79,108,121,98,92,113,99,94,113,103,102,98,108,109,98,95,110,86,104,92,95,100,102,105,101,100,97,102,106,139,105,106,105,98,110,109,109,100,105,99,98,105,107,108,108,109,109,112,102,95,99,109,114,101,101,113,109,109,110,108,97,110,105,100,112,107,95,101,117,119,103,97,99,106,102,107,93,95,101,98,111,109,106,96,97,110,98,99,93,95,98,93,98,104,96,106,106,99,99,103,100,101,105,104,106,116,100,102,105,101,99,100,102,98,101,90,93,102,92,102,95,95,116,103,103,99,107,119,94,101,96,110,92,105,111,97,108,109,102,105,95,102,106,104,100,106,105,95,108,103,103,100,99,99,114,104,106,121,102,106,100,103,103,101,98,112,102,120,87,111,107,102,95,98,92,96,105,106,114,106,93,105,105,116,95,109,110,105,100,95,102,108,97,110,93,90,101,100,102,109,104,98,101,104,105,100,135,87,110,91,105,100,94,106,105,103,99,89,112,83,110,99,107,98,77,95,89,110,95,94,99,101,103,92,91,105,98,105,96,99,102,101,104,88,106,106,107,99,105,97,109,91,96,96,95,95,101,98,96,105,103,105,102,96,105,113,85,95,92,109,110,102,93,94,94,99,101,107,99,103,100,101,103,99,99,94,113,113,103,113, +512.69281,106,94,126,115,104,102,87,104,95,96,117,106,102,108,83,91,94,103,99,107,100,108,99,103,113,104,100,102,112,109,120,98,102,108,116,95,87,91,106,108,85,100,122,107,122,109,110,98,97,98,103,112,99,105,128,99,112,97,101,107,97,107,98,102,110,111,108,96,96,103,104,114,104,112,88,118,94,116,97,109,113,100,134,104,105,117,100,106,106,114,100,63,110,118,97,101,97,97,108,99,109,110,90,112,109,112,112,100,83,91,102,110,92,102,102,107,80,112,104,97,107,97,107,113,114,120,121,103,108,103,105,88,106,105,101,98,98,112,102,109,95,106,98,118,94,106,103,120,87,109,108,102,109,115,110,96,116,100,98,88,94,110,99,103,96,123,117,92,99,99,109,95,111,100,104,81,105,87,113,94,107,107,109,112,118,96,107,93,102,101,124,96,97,100,107,112,95,104,111,114,96,98,110,92,102,109,99,109,113,98,98,94,107,105,95,108,108,96,103,105,101,111,108,101,101,103,115,98,116,111,93,117,109,113,107,108,105,106,95,109,130,112,109,103,100,118,113,100,95,99,75,110,106,103,98,95,103,104,111,106,96,106,99,118,94,99,96,125,98,107,102,103,94,113,108,121,94,108,104,102,141,106,101,107,120,100,102,91,95,94,103,113,98,99,81,106,104,126,98,104,95,96,104,98,97,106,105,95,108,99,97,100,91,112,99,97,93,94,109,111,111,103,99,110,121,92,106,94,106,107,116,101,103,109,104,95,107,101,107,115,88,102,105,106,111,114,101,109,101,109,108,112,109,108,99,106,107,101,93,110,104,113,102,94,100,87,96,114,96,110,109,111,109,103,102,109,112,100,105,116,107,111,106,107,99,104,98,103,93,97,109,107,101,107,110,113,92,98,98,111,102,99,109,91,94,95,107,100,104,101,106,107,112,106,124,105,102,98,110,109,101,86,103,98,94,99,103,98,96,109,106,97,102,102,91,118,98,101,118,115,93,89,101,129,91,103,97,104,105,109,101,108,105,106,113,108,98,97,102,127,114,100,94,109,102,108,102,115,101,104,99,113,112,89,94,97,103,104,105,113,97,107,120,94,106,108,114,121,109,104,106,113,107,105,92,94,111,108,100,100,109,100,103,102,111,105,96,94,108,99,104,102,111,114,103,95,118,87,101,100,106,106,109,113,108,108,96,104,99,100,109,101,96,104,93,103,106,108,106,117,113,112,112,102,113,105,108,89,111,96,106,98,90,104,88,91,108,102,102,102,94,110,100,109,101,113,101,104,91,102,102,101,102,106,89,100,97,97,100,112,104,105,109,94,108,90,113,108,100,95,98,102,108,110,107,107,97,103,99,113,100,101,109,118,88,106,99,99,107,99,105,105,98,97,92,101,115,108,100,98,112,100,104,104,101,98,92,93,107,104,97,98,110,104,97,104,104,94,110,99,132,96,109,100,102,99,96,101,106,98,93,101,96,100,110,105,105,105,99,111,108,114,102,101,110,95,112,101,103,108,111,98,109,99,117,103,107,98,103,104,104,108,98,97,100,104,108,99,102,107,108,101,110,111,101,102,103,112,109,100,102,101,106,103,100,107,100,102,108,109,100,97,79,97,88,106,82,99,91,95,109,94,111,110,95,105,92,106,126,86,110,103,100,116,108,97,103,104,109,99,105,89,97,102,108,117,110,101,107,106,110,91,98,98,111,110,107,95,105,101,98,99,101,96,100,90,92,125,103,94,101,97,99,90,101,99,111,113,110,100,103,108,116,103,102,107,102,99,115,108,95,106,105,109,101,104,105,102,101,106,103,111,110,118,98,97,113,111,101,106,103,87,114,101,98,100,104,99,111,98,111,127,103,114,102,107,122,106,77,86,102,103,105,109,108,103,107,107,100,94,95,101,101,108,105,103,87,95,105,95,96,113,101,102,101,107,95,104,99,103,100,92,99,111,102,102,107,106,115,102,104,85,107,105,94,98,76,101,105,100,96,103,100,92,100,96,95,112,103,103,101,118,111,102,113,93,119,109,102,112,103,114,104,105,91,103,113,96,107,89,103,116,99,113,105,106,102,113,98,111,103,106,102,99,109,96,102,136,96,109,103,111,125,98,94,114,100,119,98,107,109,114,110,111,105,106,117,105,99,103,101,105,100,90,111,103,104,105,100,105,106,125,109,125,98,108,108,111,120,104,110,116,116,107,98,104,105,107,103,109,109,108,107,111,98,106,107,99,106,106,108,84,110,94,93,116,98,108,116,109,105,96,102,102,102,102,106,117,94,96,77,108,94,98,94,113,103,96,100,98,111,108,100,105,102,101,103,104,92,102,109,106,107,92,108,97,95,112,109,109,106,103,87,130,97,110,102,101,108,107,123,99,102,119,103,110,98,109,98,99,113,113,114,109,109,100,103,112,96,106,112,104,116,118,111,112,102,94,111,97,101,108,92,113,103,79,106,102,106,103,91,103,107,103,98,94,102,110,106,107,109,111,102,105,104,107,116,105,106,107,120,127,97,102,113,103,102,98,117,111,118,97,107,97,113,105,117,106,99,98,107,109,105,133,101,107,106,108,105,98,96,99,97,110,104,100,105,88,102,90,114,100,117,98,106,95,98,91,102,105,108,95,113,95,103,92,118,107,117,83,106,103,119,98,113,102,96,117,112,109,113,98,103,95,104,107,127,103,94,109,99,96,113,112,109,100,110,100,91,108,108,103,108,99,115,114,113,103,102,113,104,108,95,115,103,102,107,121,99,110,107,110,101,112,119,100,118,100,104,108,103,115,99,100,100,109,107,100,109,121,108,108,110,91,103,108,103,113,99,94,102,105,97,97,101,100,98,112,112,120,113,101,106,94,126,103,107,96,110,101,100,99,113,111,109,112,97,100,107,115,102,109,119,105,110,109,97,120,107,104,107,113,108,105,117,113,104,98,100,104,108,106,94,105,109,101,108,101,100,119,123,108,108,107,104,112,111,106,124,113,99,106,101,116,106,109,111,107,115,108,100,91,104,108,102,113,94,112,105,105,105,105,105,104,109,107,104,101,110,115,101,110,115,108,102,94,106,102,114,106,121,113,100,106,120,113,111,105,96,114,101,109,104,112,112,106,96,112,110,99,104,107,113,112,116,109,103,103,102,110,107,98,115,106,102,111,111,95,113,113,106,109,99,107,104,114,113,115,107,102,98,93,92,97,111,80,109,109,120,114,105,103,100,101,111,112,106,100,112,100,115,106,103,114,107,106,100,106,113,105,96,103,117,109,90,113,110,99,109,102,114,111,123,109,105,108,109,101,113,97,114,107,113,107,112,103,102,109,108,106,102,110,99,106,110,101,108,106,94,106,107,106,104,109,100,115,99,104,104,80,108,100,108,104,121,106,94,110,109,110,95,112,111,111,100,102,114,94,116,106,104,101,88,114,107,108,116,104,90,109,105,115,107,110,92,105,110,97,106,102,104,105,107,98,100,106,115,115,98,98,100,113,97,116,109,100,95,106,105,102,97,109,104,95,99,113,103,103,106,110,116,110,109,113,111,119,100,109,101,99,72,100,105,110,109,101,104,112,112,92,104,108,104,111,102,105,114,106,95,108,108,98,122,100,97,108,106,107,119,113,106,108,106,98,105,108,103,108,113,124,107,109,101,102,98,100,105,95,112,98,107,126,93,89,99,98,104,104,117,109,106,95,104,106,102,113,112,106,116,107,112,105,103,105,98,96,104,117,115,109,93,98,100,107,110,81,114,114,115,103,97,106,105,98,105,114,98,100,110,108,101,96,102,109,111,95,109,108,108,85,98,89,106,107,102,104,106,104,105,111,108,115,107,99,112,116,109,108,94,101,119,112,103,109,104,102,109,114,108,92,96,101,102,102,103,99,108,98,103,106,97,98,104,102,98,90,97,103,106,105,101,103,106,101,114,101,111,109,88,109,104,108,92,102,97,104,101,105,95,104,100,98,109,104,104,112,101,103,106,106,105,107,103,104,106,108,111,112,105,96,107,102,105,111,105,105,116,106,98,107,109,104,111,88,106,113,100,90,110,107,100,97,109,105,99,111,103,103,102,117,110,88,110,102,108,116,110,103,104,117,121,106,101,112,112,109,110,110,107,102,109,108,103,114,82,112,112,114,107,146,107,98,116,96,104,100,104,102,102,103,110,105,111,109,113,116,107,100,108,109,112,109,102,106,113,97,109,107,102,107,119,97,113,107,89,100,103,107,114,101,97,111,125,101,103,97,100,118,101,111,107,102,103,108,98,96,107,103,107,98,103,120,108,91,112,108,112,105,87,109,109,113,106,110,98,109,110,120,109,111,114,95,105,108,116,101,119,108,112,110,100,106,113,85,97,101,109,101,92,118,108,115,110,107,108,107,102,102,108,113,100,103,103,111,100,77,95,96,129,104,110,106,96,96,106,100,104,95,100,111,104,110,111,107,116,103,119,123,98,102,94,116,100,104,110,106,98,107,108,106,103,112,102,112,97,105,114,102,107,104,98,96,104,103,99,105,113,113,109,104,108,103,117,108,112,96,109,101,108,107,92,96,98,91,100,103,108,102,100,106,105,99,85,109,118,109,110,104,111,104,121,111,105,103,101,107,93,95,103,101,132,98,109,105,106,95,110,121,112,111,128,105,104,110,110,116,116,99,124,111,98,101,105,111,101,112,114,109,98,87,107,117,106,111,92,96,112,91,98,98,96,106,104,105,106,85,111,106,115,116,111,109,95,104,95,92,108,113,102,104,111,105,99,113,97,102,116,106,105,113,109,110,114,99,105,111,110,99,111,109,108,90,102,107,108,85,108,109,102,93,101,100,107,108,84,113,100,90,116,108,104,112,102,106,105,103,110,107,107,117,114,104,111,103,105,104,101,101,107,113, +512.8335,90,122,90,91,93,113,101,117,111,101,95,91,96,100,109,108,106,107,92,103,109,111,94,112,114,96,107,98,108,107,102,110,90,102,114,104,104,84,110,75,103,111,107,100,98,102,96,112,99,105,94,94,100,113,120,104,107,98,112,97,113,104,98,86,106,111,100,102,109,94,113,100,96,111,99,112,105,89,107,99,104,116,130,89,100,87,93,113,107,121,98,92,85,106,112,91,99,105,99,105,106,107,100,92,105,99,97,104,106,112,111,100,102,100,101,101,101,104,108,110,89,106,108,108,102,104,107,100,106,110,101,105,100,111,106,108,94,122,103,107,99,76,101,103,94,105,104,110,103,103,98,119,95,95,106,96,98,100,105,109,91,100,102,110,89,100,102,99,104,104,107,96,99,109,108,99,98,98,105,112,107,115,112,103,107,101,93,97,110,110,109,112,112,116,105,100,103,108,100,77,107,100,99,97,106,100,96,119,102,109,98,105,103,108,100,94,106,104,107,100,104,96,103,112,98,92,107,102,126,107,111,118,103,95,94,113,102,94,106,102,115,109,104,106,109,119,113,107,108,106,107,94,96,102,102,104,100,113,91,112,100,108,119,111,97,93,104,104,103,111,100,104,109,103,112,95,111,107,103,107,104,104,105,130,109,104,102,110,117,102,91,100,105,102,126,95,117,110,117,107,109,111,108,101,103,98,117,105,105,111,102,110,102,104,109,103,102,101,107,100,108,106,103,100,110,99,104,90,100,118,110,101,105,101,112,108,84,107,102,113,111,104,105,103,111,107,95,108,103,112,104,108,113,108,108,101,113,107,100,108,98,95,103,100,95,90,104,122,107,101,106,108,129,100,109,98,111,107,100,118,112,104,104,124,95,104,114,103,77,111,106,96,100,104,95,96,116,100,109,104,109,103,104,90,97,105,96,99,120,103,102,106,99,103,103,95,106,113,99,107,105,102,99,100,106,108,119,103,89,109,95,107,101,121,101,96,108,119,101,101,102,108,99,107,87,105,97,95,113,122,127,107,102,122,102,109,115,103,110,113,94,90,98,113,107,103,88,106,98,104,114,100,108,104,117,107,106,108,105,117,104,113,100,90,88,117,106,108,88,100,99,111,120,104,100,103,103,102,109,102,104,103,101,107,108,110,94,96,96,106,114,111,118,104,116,94,100,104,110,96,110,108,110,98,113,103,101,96,125,109,96,103,99,99,104,91,89,98,100,106,104,105,107,102,102,102,112,114,110,104,83,108,104,106,100,95,100,110,98,107,108,109,92,107,106,106,105,106,109,113,109,104,107,106,109,103,108,100,107,102,103,96,103,104,109,121,91,115,97,104,107,108,110,102,82,105,112,118,101,117,107,120,107,103,107,106,101,107,108,105,99,107,113,105,104,100,118,98,115,110,112,103,118,101,107,101,109,96,120,113,107,106,113,90,111,109,99,88,98,109,106,102,101,97,103,110,109,109,102,104,87,106,111,117,96,106,109,97,109,110,108,111,105,103,109,112,111,92,109,103,116,106,113,113,94,110,103,116,109,100,102,110,106,117,95,99,102,106,96,114,96,94,103,112,115,108,96,100,101,94,107,95,104,108,107,102,114,104,96,106,106,103,98,94,98,95,98,83,98,106,112,102,102,104,122,105,99,112,107,96,101,98,109,93,102,102,93,92,102,109,114,80,96,95,98,106,107,115,89,102,92,99,96,101,106,106,101,101,115,113,104,112,92,105,107,114,105,100,98,102,114,110,114,110,94,116,84,115,105,96,114,106,92,93,99,115,114,97,104,117,97,123,108,122,96,113,102,104,105,107,89,100,98,108,110,104,119,111,106,108,106,84,104,104,116,100,103,109,121,103,107,99,106,111,120,111,103,99,112,98,98,107,92,107,105,110,115,106,116,121,109,109,114,109,108,110,114,110,104,101,102,98,95,105,111,103,105,102,103,104,106,118,103,104,102,105,106,100,113,105,110,107,98,103,100,106,109,94,116,106,100,118,108,111,112,111,102,110,119,109,99,101,98,92,114,98,99,109,95,106,120,103,108,113,100,86,109,103,96,109,111,103,112,108,108,105,105,111,102,98,97,108,107,100,100,99,98,111,107,129,102,105,106,107,99,97,122,101,98,102,104,111,115,108,106,107,104,106,105,105,117,111,111,101,107,102,107,94,92,106,114,100,108,105,114,74,108,103,102,114,110,111,112,108,101,97,115,105,101,109,114,118,113,91,90,95,102,97,104,104,93,100,98,113,104,98,110,104,104,108,104,114,114,108,104,110,114,95,102,107,99,109,107,118,98,93,89,103,102,107,118,107,111,96,108,103,119,95,105,99,105,111,91,109,103,100,117,113,104,121,112,110,103,84,105,115,107,107,100,105,103,109,95,94,98,110,104,91,110,115,98,108,91,99,104,104,99,107,106,106,100,111,104,95,113,105,107,103,101,99,96,116,98,107,96,101,99,84,112,114,116,108,107,105,93,100,97,106,113,86,108,117,98,99,91,112,108,101,102,107,103,117,108,94,99,100,110,106,108,105,122,105,108,105,104,109,99,113,115,102,107,117,105,103,105,100,99,102,103,124,106,98,98,95,102,111,106,109,113,109,111,112,124,105,106,106,112,111,93,105,111,89,108,102,86,101,102,102,106,107,95,105,99,93,94,110,99,92,91,104,99,91,95,106,116,104,109,92,110,88,99,110,109,110,98,110,106,106,94,95,103,106,96,95,110,101,108,102,91,107,105,90,109,102,77,94,98,103,101,102,108,114,85,99,97,100,101,109,113,86,103,105,106,112,106,96,109,96,105,116,100,102,103,91,112,109,103,102,103,98,95,108,100,99,112,100,113,108,107,106,105,98,102,108,96,102,100,110,101,107,111,91,102,109,100,87,105,101,106,116,111,97,114,105,117,101,92,106,95,99,104,110,92,96,80,107,98,97,106,111,112,93,93,102,88,106,106,108,105,101,109,108,89,93,104,92,106,106,104,107,94,117,95,96,114,104,92,101,103,109,103,93,102,95,110,105,101,95,114,113,106,100,114,83,102,106,99,90,108,105,96,85,93,108,99,103,104,101,106,94,106,106,98,103,118,112,99,112,117,109,108,101,103,104,98,102,98,102,101,102,98,110,95,101,105,104,98,95,106,104,99,100,81,95,98,106,119,100,111,109,99,105,97,107,109,107,109,108,102,101,86,101,104,143,95,104,104,108,106,107,96,103,100,88,95,102,99,98,111,94,111,106,110,104,110,98,101,110,107,110,110,92,109,104,104,98,98,109,100,101,94,98,116,106,98,107,91,81,87,96,99,84,95,117,100,105,91,92,113,106,106,98,98,92,104,95,106,85,108,104,100,99,113,94,105,96,98,106,98,108,105,98,98,101,99,99,111,104,112,100,95,107,96,113,103,99,108,96,78,113,96,106,104,92,113,110,101,114,101,106,100,100,95,102,105,97,109,123,99,95,105,103,107,113,104,107,100,127,105,115,111,107,99,104,107,110,109,99,96,104,103,111,109,119,105,103,108,106,107,101,96,95,104,99,119,114,106,101,99,100,110,100,101,108,108,104,109,95,93,95,88,106,103,102,101,99,107,113,102,106,99,108,113,103,103,105,108,102,115,105,107,105,107,98,96,115,99,93,108,103,92,116,117,94,104,108,97,107,109,111,105,112,108,104,100,96,104,103,107,99,121,91,124,99,113,97,115,99,90,92,91,113,102,98,106,99,104,101,108,96,95,93,115,91,106,118,106,108,121,106,104,97,108,101,113,104,105,105,104,110,93,120,111,116,103,110,99,113,106,103,109,98,99,101,106,102,105,92,91,103,85,114,110,101,105,102,109,104,91,99,107,75,98,101,125,105,105,96,109,103,109,110,97,99,113,89,113,94,98,101,103,97,97,105,113,101,104,103,108,91,100,105,103,104,105,83,99,122,103,97,101,106,105,116,105,111,75,105,94,101,109,138,116,113,95,102,95,112,91,109,104,94,88,105,99,106,100,107,94,100,89,97,100,105,106,102,113,97,107,113,94,100,111,113,87,117,112,105,105,99,107,110,108,121,96,100,112,97,98,98,103,102,110,83,102,94,94,102,104,99,104,109,109,98,103,98,95,95,108,95,86,87,106,109,98,91,100,105,110,112,101,98,103,101,113,111,102,92,100,98,106,87,105,95,109,98,104,109,105,94,96,102,104,101,103,98,108,98,103,100,110,96,92,101,108,111,103,112,105,116,106,95,106,99,101,104,108,106,97,112,106,109,106,104,87,107,95,101,102,96,104,101,106,101,100,113,95,102,79,125,104,111,104,105,107,90,108,105,105,108,95,100,101,99,111,104,85,100,110,97,116,104,112,105,103,96,94,112,90,99,95,90,116,106,99,105,91,112,105,102,97,93,101,109,90,108,104,103,96,102,117,100,103,98,104,88,102,93,106,107,112,102,106,114,105,97,96,107,100,100,94,100,105,99,98,100,95,106,97,104,101,93,94,102,97,117,96,106,102,99,97,100,110,103,108,92,108,113,113,92,117,95,104,100,94,103,98,89,99,105,107,93,96,106,109,109,88,100,99,109,108,103,95,111,107,103,95,110,103,88,99,112,111,92,114,102,98,100,108,97,85,98,108,97,112,110,104,103,103,98,103,101,96,107,103,96,94,92,110,108,102,110,95,103,95,110,100,98,102,108,106,113,111,114,105,99,99,90,92,110,101,101,102,102,111,93,103,99,111,102,103,103,105,102,106,85,100,94,96,113,99,88,116,97,106,100,102,97,102,108,98,108,110,94,94,102,74,107,105,95,89,111,108,97,103,103,100,91,101,111,104,93,109,105,90,105,88,101,110,100,94,102,99,90,83,97,97,104,103,96,102,104,109,88,112,106,101,109,97,102, +512.97418,104,108,89,100,97,100,107,98,105,103,101,97,94,120,117,92,99,120,98,101,101,90,103,107,104,111,104,94,88,90,104,111,105,102,116,108,106,105,103,103,105,107,98,101,108,108,96,116,96,122,105,101,112,111,113,98,106,103,98,107,102,94,91,115,98,113,104,88,105,108,95,112,104,101,96,111,93,105,100,104,105,96,108,109,106,102,100,94,99,100,92,108,113,100,105,100,86,113,97,102,110,105,98,102,107,105,101,101,94,93,110,107,109,98,111,100,96,108,113,106,117,106,90,118,113,104,101,108,114,102,108,104,116,96,111,103,106,106,95,106,109,96,99,105,98,97,116,104,102,95,109,103,93,105,92,102,107,109,96,103,101,111,108,102,139,96,111,101,94,96,107,100,103,99,97,96,113,100,100,108,102,97,114,109,106,108,95,102,121,101,102,108,95,106,112,102,104,81,104,105,100,100,105,87,114,94,108,99,118,108,105,117,115,115,111,100,104,118,106,87,91,103,85,95,102,102,105,109,111,108,106,102,100,112,97,131,96,115,101,103,101,108,110,95,103,101,105,107,105,109,113,102,107,112,114,109,105,101,102,110,99,114,97,104,100,100,117,97,101,97,100,103,109,109,109,103,117,119,94,113,98,109,118,96,91,108,105,115,110,108,112,113,107,107,108,121,106,102,102,114,104,96,110,98,109,107,102,111,117,114,120,110,114,105,101,95,82,100,101,114,103,100,109,96,107,113,109,102,96,100,105,106,105,110,112,113,104,95,98,98,94,96,94,93,102,106,109,117,108,103,101,95,95,103,99,109,103,109,107,101,106,97,110,106,113,105,101,125,95,107,113,100,102,118,121,109,108,99,125,100,112,103,113,105,99,109,113,110,102,110,110,101,100,103,112,104,113,118,103,116,101,119,107,98,107,103,104,112,107,110,92,99,108,105,105,109,105,97,108,114,113,107,107,100,102,89,95,98,100,95,114,97,106,101,92,109,104,106,120,98,100,99,102,117,96,104,104,105,90,113,96,106,100,110,103,104,113,102,112,105,96,98,101,98,111,103,113,109,99,103,110,138,105,104,110,107,106,108,104,99,105,120,111,117,105,91,103,102,113,100,116,105,108,105,98,104,102,105,102,102,108,107,104,112,96,101,91,93,112,113,112,102,107,113,113,97,100,103,105,83,115,103,104,104,112,107,107,108,96,103,98,110,103,108,106,112,113,116,102,112,96,114,111,104,115,105,103,115,114,108,113,112,106,110,98,105,104,96,109,105,103,91,102,109,101,100,99,103,99,119,101,95,99,104,93,105,98,110,107,118,108,103,108,95,95,100,112,95,108,105,128,95,108,104,110,100,105,107,108,124,113,109,118,107,97,95,93,107,109,96,111,104,86,100,103,100,94,101,110,103,112,94,103,105,118,110,93,121,107,108,108,105,105,100,94,104,109,96,109,109,108,108,82,110,93,101,99,97,113,116,109,117,105,105,84,108,107,99,109,106,107,110,108,109,108,100,106,80,101,106,110,116,102,113,87,98,95,104,114,101,104,112,100,98,107,114,100,100,85,116,100,105,93,100,111,102,117,112,107,94,102,109,106,98,120,109,117,114,104,101,94,95,70,99,99,99,109,111,107,104,108,106,111,113,101,98,107,111,109,74,114,110,103,103,101,106,99,113,116,101,118,97,98,99,101,111,109,106,101,105,120,108,112,103,97,110,96,94,103,105,112,94,102,104,115,110,109,109,108,110,101,105,121,113,107,110,92,111,102,98,118,106,118,94,109,112,104,114,104,109,101,104,104,102,100,106,94,108,111,105,103,91,113,112,111,114,110,106,104,115,107,99,99,109,105,104,117,100,104,111,97,110,119,109,98,99,112,102,108,105,98,99,106,108,104,112,105,107,104,116,100,106,103,110,111,101,106,106,107,109,101,122,98,100,105,109,102,109,103,105,90,112,106,105,99,104,102,110,106,101,107,106,111,113,115,117,106,101,102,112,95,103,108,110,115,112,99,108,108,104,103,94,106,99,102,96,108,108,107,101,103,106,102,105,94,105,109,109,91,102,122,112,109,124,111,102,103,111,113,117,106,113,105,104,105,103,99,106,106,109,109,100,110,101,99,108,100,113,100,105,91,111,95,105,113,93,97,103,99,106,102,112,103,102,117,107,105,98,113,109,111,117,104,101,86,105,98,109,102,101,112,103,109,95,105,93,106,103,90,102,95,106,95,111,106,104,102,104,114,84,111,111,99,109,96,94,112,113,95,113,106,113,96,109,140,113,106,98,101,100,95,98,106,124,113,106,107,96,100,101,114,105,97,105,117,105,122,108,101,113,103,105,114,109,99,91,101,109,103,97,108,101,105,109,99,112,106,104,107,95,113,102,108,113,115,117,104,98,107,107,105,116,111,108,100,101,109,110,110,100,104,108,105,106,109,111,99,101,109,101,99,102,98,128,108,103,113,104,110,105,111,101,106,100,98,105,113,103,109,104,101,97,107,95,109,113,99,113,103,101,106,104,107,98,106,94,97,113,108,103,112,102,114,107,109,112,113,117,109,98,114,108,101,98,106,100,98,110,109,107,100,94,110,111,110,102,115,119,105,94,106,97,100,101,104,107,106,99,112,94,107,113,111,86,106,105,106,111,114,103,108,104,125,98,94,100,105,114,106,115,103,116,110,96,103,106,113,97,106,122,106,113,96,100,102,103,108,102,109,102,114,101,109,107,101,109,116,112,100,99,92,95,111,100,103,115,108,108,116,98,108,116,106,102,103,97,99,111,113,105,104,114,110,105,108,104,97,105,103,115,106,95,111,103,106,91,105,106,111,105,109,108,106,108,99,104,95,106,102,117,109,111,106,105,103,94,103,112,99,105,118,115,114,93,120,100,99,98,92,112,98,119,109,117,103,113,105,105,115,109,102,107,99,88,95,104,101,112,104,102,102,111,107,100,98,101,115,111,111,76,102,97,108,97,96,108,101,100,87,97,113,116,104,99,107,114,108,103,74,104,105,98,96,112,107,99,100,107,112,117,108,101,100,97,107,100,114,108,101,110,106,107,109,107,85,104,95,104,95,104,107,106,94,108,74,110,104,94,106,101,103,116,112,110,109,116,90,99,100,113,105,94,104,109,107,95,106,111,102,109,106,106,103,117,94,111,104,113,108,112,109,96,97,114,95,111,108,108,114,111,101,110,103,123,109,101,105,124,111,106,105,98,111,95,96,107,107,106,117,104,113,107,109,114,104,109,104,101,94,106,108,107,105,103,106,106,100,100,103,107,114,99,93,103,117,103,106,88,104,89,120,108,104,104,96,113,104,89,93,100,113,112,109,98,106,98,107,103,104,109,97,103,104,108,108,92,103,110,109,101,113,107,101,104,105,104,100,109,103,111,105,107,105,109,105,97,106,102,103,104,109,98,106,107,98,100,94,106,109,106,113,110,126,113,109,95,103,100,90,98,113,95,100,101,87,104,120,99,107,109,112,120,106,93,104,111,111,101,113,102,121,111,125,110,113,111,116,107,100,99,111,107,128,101,120,105,109,115,107,103,103,103,91,110,101,107,100,107,98,92,106,83,100,106,101,113,109,113,108,98,99,105,112,106,103,102,112,110,98,104,102,111,115,116,102,97,112,102,104,111,92,111,109,95,103,112,105,98,104,103,108,104,119,99,98,105,105,114,116,105,106,97,116,104,110,105,114,88,106,97,106,103,97,97,106,104,96,107,106,107,120,94,110,97,100,109,101,104,112,99,98,115,107,114,98,95,91,106,95,102,98,116,93,110,109,105,110,108,95,106,109,100,99,109,111,121,111,101,111,108,102,109,106,104,105,103,107,97,125,96,91,103,102,104,107,104,106,108,108,96,100,95,110,100,101,100,93,99,101,103,95,106,101,100,100,109,106,83,98,98,94,107,109,92,101,110,109,90,105,104,88,98,107,99,102,104,94,105,138,107,98,92,102,110,108,101,111,113,115,113,106,115,113,112,117,117,99,103,105,100,105,103,112,104,102,108,109,101,94,102,105,101,108,87,112,111,100,90,121,96,123,112,102,102,106,99,128,92,97,104,109,98,101,102,97,110,111,118,96,92,103,106,106,101,111,109,111,98,99,114,97,95,99,111,109,120,113,100,112,108,98,100,102,103,103,101,110,104,101,108,98,110,103,118,100,103,94,98,113,105,116,92,120,107,112,101,110,114,109,103,113,98,102,80,110,105,109,107,111,108,100,103,105,104,105,106,108,104,102,108,112,107,119,106,101,96,108,100,101,108,103,99,107,79,95,100,98,96,109,108,101,102,114,109,106,109,99,101,96,107,120,98,115,106,104,112,88,120,103,109,108,107,114,100,110,108,101,103,102,95,109,96,97,108,95,113,109,105,101,95,100,105,107,106,111,98,108,98,112,109,107,118,100,112,93,96,95,92,100,106,93,99,123,101,98,113,113,100,107,100,102,111,111,110,101,116,110,107,105,101,98,99,102,93,110,104,97,109,103,104,98,84,96,114,97,94,113,113,112,102,93,123,106,107,116,105,103,100,110,96,102,107,94,94,107,94,106,102,97,99,108,94,100,94,102,106,102,102,114,104,103,111,99,116,104,103,110,107,97,79,99,106,95,95,98,122,121,94,113,96,99,103,102,91,111,90,95,115,109,98,106,107,97,101,99,103,109,111,96,104,112,104,104,106,92,108,105,87,96,105,101,83,97,115,97,97,94,106,99,98,110,93,106,104,105,97,102,100,97,101,94,95,92,104,111,101,105,118,109,102,109,99,98,100,86,90,93,111,100,108,109,103,94,102,124,106,101,91,96,121,81,102,104,97,111,110,101,107,120,89,113,84,95,99,103,105,103,106,107,97,95,110,105,111,106,106,86,105,109,98, +513.11487,107,89,99,87,86,102,98,113,100,115,108,99,95,101,116,122,115,87,104,97,90,108,113,117,95,108,102,104,94,104,112,111,95,94,97,102,95,102,106,106,98,116,110,105,121,108,108,121,98,105,110,117,102,102,102,125,106,113,106,109,88,96,111,101,118,107,99,91,104,105,120,105,101,102,101,110,96,96,100,105,108,105,93,98,105,114,97,100,82,101,101,102,103,110,97,102,96,94,105,120,93,100,96,101,99,105,107,102,116,105,114,101,104,100,103,99,101,100,109,104,102,110,110,95,98,114,103,108,102,106,109,99,93,102,117,99,107,114,112,92,106,107,99,120,98,98,93,105,109,104,97,120,102,91,94,98,106,93,98,101,104,93,107,104,102,120,104,98,98,105,109,123,103,99,106,108,104,110,109,98,106,115,109,105,101,101,101,104,107,109,101,113,104,111,104,105,100,92,101,105,92,104,99,111,97,124,126,111,103,101,87,99,100,102,102,105,96,88,103,109,102,104,112,97,115,102,97,112,91,107,100,115,109,100,104,110,103,107,117,105,110,101,121,102,106,108,103,102,108,104,102,106,109,97,103,113,100,95,103,107,100,105,111,101,104,95,114,106,105,102,96,106,99,108,105,92,115,103,101,102,103,102,98,101,108,116,90,107,88,118,105,100,100,103,110,116,121,117,119,87,100,95,94,106,108,117,109,105,112,103,107,104,102,104,102,114,108,105,112,103,80,99,100,104,102,98,109,89,114,125,101,95,104,104,115,116,113,105,106,113,106,95,102,105,101,109,98,108,104,113,102,106,103,111,100,101,94,109,98,88,103,97,96,91,105,108,105,110,122,100,110,104,116,117,103,103,99,104,100,103,110,100,98,101,99,108,86,87,106,102,119,93,101,107,96,96,104,110,103,116,105,105,122,111,100,98,92,112,98,104,111,95,111,106,115,95,112,102,108,96,106,112,116,103,115,105,103,105,105,121,103,99,128,105,111,94,97,118,106,108,114,105,100,111,94,102,103,85,96,102,86,112,107,119,103,105,116,98,108,112,101,102,109,108,109,115,101,102,99,109,96,104,106,99,108,121,110,105,107,105,102,109,107,106,103,91,113,98,98,101,106,106,108,104,103,106,109,110,105,109,122,97,72,103,100,104,93,101,103,112,103,95,106,99,113,104,104,114,96,105,110,101,105,122,115,113,112,113,100,109,97,102,92,101,103,100,110,117,111,106,102,112,101,102,95,125,104,96,112,100,99,115,95,97,100,99,76,99,115,105,113,111,104,121,100,110,107,103,94,101,109,107,107,99,100,113,103,105,95,106,99,97,106,109,99,99,104,97,106,111,96,105,95,102,119,97,107,114,111,104,108,108,106,92,102,110,104,117,105,104,110,104,106,102,104,95,106,109,119,102,102,98,102,96,104,114,109,103,108,109,99,117,106,106,93,101,104,91,104,108,105,88,99,103,104,97,102,97,103,106,99,107,106,99,104,113,108,105,120,100,107,110,100,96,98,108,101,95,110,106,124,109,103,117,100,101,108,110,102,102,113,115,112,100,101,110,106,122,101,101,103,100,112,103,111,101,106,95,103,98,112,99,96,113,118,112,113,112,111,112,108,114,110,97,101,108,96,115,106,106,108,109,99,107,70,99,106,106,105,106,108,100,106,106,110,106,110,105,119,104,112,101,113,107,100,113,132,120,102,110,114,98,106,99,110,112,113,103,114,102,104,109,95,106,105,104,102,111,109,88,105,101,115,103,95,114,105,109,117,85,107,104,104,106,99,106,103,103,110,105,113,95,104,99,100,91,105,104,105,105,116,95,90,94,127,100,101,110,104,111,114,101,106,98,114,107,102,108,107,98,106,122,101,102,123,101,111,109,104,104,98,104,99,104,81,111,120,113,96,98,111,104,103,103,106,94,112,104,107,99,106,98,103,102,96,95,96,102,110,93,99,97,105,109,114,111,89,110,110,96,108,114,101,108,98,100,99,99,118,99,111,108,113,106,102,106,97,102,99,105,106,117,105,98,105,106,101,110,101,108,101,108,96,113,117,100,97,109,125,112,106,80,107,113,107,106,102,113,93,117,101,102,113,99,104,103,94,118,108,94,106,111,105,76,99,112,114,94,85,101,101,103,107,101,109,116,105,96,106,104,107,99,116,107,108,98,118,116,113,100,107,101,95,107,100,107,96,111,111,113,96,86,101,100,95,109,104,103,99,103,107,100,95,110,123,105,103,101,100,103,103,107,102,94,101,101,87,115,106,112,113,112,100,91,103,116,110,108,96,113,99,110,90,103,103,109,109,103,102,109,115,102,107,95,102,107,97,117,111,92,108,113,106,98,117,109,115,120,104,109,109,110,100,116,93,103,97,113,98,103,99,108,110,105,103,105,102,114,70,112,101,105,101,94,107,104,103,108,108,100,106,98,105,110,99,113,109,98,103,101,101,106,92,104,116,117,102,104,108,95,88,102,110,90,100,114,103,96,113,107,102,91,108,92,124,104,115,99,109,106,101,107,106,104,106,95,102,106,94,105,84,108,102,113,117,99,97,105,114,102,103,109,104,103,102,112,102,106,104,89,99,98,103,108,100,98,105,102,104,92,108,103,114,104,103,112,115,103,99,102,109,92,91,98,99,98,108,101,105,93,95,108,111,100,111,111,102,113,106,99,103,106,111,106,102,98,106,96,107,113,113,100,107,110,102,105,108,106,98,104,103,104,98,104,123,108,111,101,101,107,112,103,105,99,111,109,105,109,99,97,107,109,103,92,103,110,101,109,107,103,99,97,102,99,109,102,102,113,111,91,112,98,102,107,102,104,116,112,108,115,120,97,107,107,105,109,98,109,117,112,114,111,107,101,114,98,117,100,115,100,100,103,128,108,105,103,109,108,99,120,101,102,99,106,118,103,111,107,101,110,95,110,105,99,99,103,116,101,110,108,106,98,102,113,102,94,118,101,94,102,91,103,105,92,108,101,106,96,105,105,89,110,99,113,105,91,109,93,107,92,104,109,105,124,105,105,110,101,99,108,106,105,109,98,98,93,93,109,95,103,94,110,97,91,100,101,105,70,130,106,102,119,118,97,99,100,101,104,104,111,92,108,111,104,106,93,98,101,107,116,99,98,106,101,100,117,105,102,92,103,84,100,105,108,102,101,99,95,98,99,114,109,100,113,111,111,109,113,96,107,104,104,97,109,100,100,108,99,117,109,104,106,105,111,103,106,106,106,112,90,108,112,108,100,119,104,102,102,109,101,106,109,110,103,107,96,99,100,111,93,123,94,105,107,92,101,104,105,105,108,111,109,105,107,113,105,101,101,103,96,110,107,103,96,103,110,94,101,104,102,106,107,95,117,98,100,111,108,105,95,130,115,97,97,104,102,99,108,105,100,99,98,110,103,96,106,103,105,111,80,108,116,110,101,98,100,98,102,85,93,99,101,103,103,98,102,99,100,103,100,109,104,114,102,109,115,104,102,105,105,99,99,105,112,103,103,102,89,97,103,117,108,102,111,102,91,104,99,102,107,108,113,107,105,100,112,112,114,95,105,109,106,99,115,136,106,91,117,102,97,71,101,104,113,120,100,113,102,90,102,100,115,102,108,112,94,113,120,103,103,93,103,105,103,100,104,91,104,111,97,103,102,98,115,104,100,108,115,95,99,98,91,89,103,112,104,100,94,106,106,113,112,106,100,93,93,92,113,99,100,111,107,103,111,111,113,110,111,93,105,100,101,101,95,110,108,100,122,110,110,104,98,95,107,99,111,100,91,111,93,105,108,98,102,104,98,111,109,88,100,114,105,103,103,104,102,101,96,93,106,102,109,98,112,108,92,109,110,103,93,102,102,113,94,103,107,95,99,106,87,83,109,112,100,104,96,116,103,101,84,103,108,108,94,101,106,109,105,99,106,102,109,101,93,100,111,98,102,110,105,103,113,95,105,107,103,104,106,108,100,91,115,98,85,113,100,91,98,102,105,112,113,96,107,104,104,93,114,112,112,110,105,109,105,102,110,109,99,112,106,106,102,72,102,105,101,110,108,100,103,108,115,98,101,99,105,100,96,100,72,107,108,101,106,99,110,117,92,86,87,92,96,96,99,110,106,86,105,109,114,91,102,97,106,107,111,109,90,107,93,103,96,111,92,120,112,104,104,100,101,105,119,100,102,111,111,89,103,104,101,118,110,99,107,100,104,106,99,98,113,108,106,118,98,109,106,110,105,105,107,91,88,97,99,98,101,105,105,107,97,98,95,112,110,106,109,109,100,91,112,109,82,99,112,105,98,99,99,110,93,109,101,112,101,100,95,103,116,107,98,108,104,113,95,108,104,94,95,102,96,105,98,111,111,100,104,109,99,105,110,91,95,104,108,97,109,101,102,104,97,93,84,102,104,96,96,112,103,118,91,105,102,112,104,103,93,109,91,99,97,103,113,98,106,97,94,103,98,113,93,115,105,98,105,105,91,100,110,104,94,98,97,104,99,101,101,110,116,100,97,104,112,98,101,108,104,103,103,91,107,98,99,89,111,106,112,105,101,97,101,103,104,107,99,106,108,97,110,93,119,88,91,108,108,117,124,108,106,92,98,103,96,88,98,95,104,107,94,113,96,105,96,105,109,95,92,117,92,109,104,98,99,115,113,100,112,106,101,101,98,117,104,102,129,111,94,97,106,94,91,107,116,107,112,105,103,98,117,117,89,98,95,91,107,110,104,90,98,101,100,96,94,121,103,95,93,94,99,98,110,88,103,107,104,98,93,99,105,101,102,106,107,98,90,99,105,96,103,85,88,82,101,100,83,108,109,101,100,101,94,91,93,97,89,94,103,106,88,106,99,105,104,103,97,77,106,86,111,81,100,106,86,108,100,108,107,106,77,96,71, +513.25555,114,82,103,102,88,105,101,103,108,105,126,88,101,122,98,111,100,94,103,112,109,93,97,108,110,113,113,114,97,98,79,101,108,102,119,101,105,100,99,107,112,107,117,127,110,99,101,118,97,103,109,96,106,69,108,103,90,113,102,96,86,94,95,112,114,93,98,110,105,110,112,106,114,101,98,108,95,104,99,106,108,102,94,96,107,102,94,98,95,102,107,93,104,103,104,107,86,100,99,102,95,100,106,95,109,95,103,104,94,112,82,96,112,90,96,102,105,113,97,102,97,98,106,109,105,113,107,95,119,103,110,114,106,101,120,101,105,114,104,106,113,106,104,113,110,100,106,114,113,104,107,99,107,95,93,98,104,84,103,104,109,96,102,114,112,94,111,116,98,98,105,90,104,96,104,105,105,99,119,99,110,99,107,120,103,94,99,110,100,87,109,106,108,109,95,105,117,108,110,112,103,91,104,105,109,90,113,108,101,102,91,120,111,99,108,106,111,98,109,107,108,99,95,108,99,98,119,117,105,102,103,105,106,109,105,96,103,108,103,116,104,94,122,115,121,92,104,108,109,104,100,94,93,110,106,116,109,104,74,111,103,109,99,98,93,102,109,105,120,96,110,103,96,109,104,105,96,101,107,109,103,100,102,98,95,105,120,109,106,103,109,109,113,104,105,112,117,109,99,99,101,102,106,114,108,108,87,101,100,106,110,98,110,109,101,100,102,102,112,110,104,102,113,101,104,104,103,99,103,102,100,99,109,122,99,108,118,96,114,101,98,110,102,108,107,109,108,111,107,109,104,111,112,104,71,112,109,104,93,97,117,113,99,109,103,100,111,104,99,112,117,111,102,133,112,95,98,107,97,102,106,111,105,105,103,108,96,105,110,102,105,99,94,103,103,111,105,119,108,117,100,109,99,103,99,88,98,103,110,114,98,105,109,105,104,108,104,112,106,91,104,99,99,94,97,104,113,109,106,104,109,111,107,107,106,105,98,122,107,106,111,105,102,112,99,111,106,95,106,112,110,107,94,105,112,102,111,114,122,97,102,106,99,106,109,97,111,100,100,108,110,126,103,98,98,100,102,111,99,112,100,95,112,100,103,117,104,102,101,103,105,104,110,109,105,101,95,102,99,101,99,113,101,98,103,108,105,120,102,101,99,105,111,108,101,112,99,107,96,116,100,105,110,93,106,100,108,86,111,108,95,106,108,98,101,99,112,102,105,125,109,102,108,113,112,73,109,99,109,107,104,110,86,103,106,111,106,114,104,109,103,105,99,111,113,103,107,108,119,96,99,117,115,98,109,111,109,110,100,119,102,96,107,99,108,90,110,96,111,104,107,108,110,99,141,122,107,115,114,106,115,109,106,88,116,92,104,115,100,105,104,101,109,93,112,102,103,116,97,103,107,102,99,120,122,106,107,104,112,103,106,107,97,103,105,110,100,126,101,117,98,107,119,107,121,96,91,91,116,109,116,85,105,104,109,106,112,113,105,106,112,118,109,108,91,105,107,102,107,106,102,110,106,108,99,107,116,97,122,89,106,107,89,110,113,113,101,111,103,102,99,109,104,102,109,107,108,110,112,94,102,103,102,113,103,100,120,102,102,105,102,103,98,68,105,107,104,107,104,105,109,125,121,112,100,105,120,112,104,106,118,102,104,99,100,110,103,101,102,109,107,111,106,96,103,96,124,111,104,108,106,109,101,101,101,106,106,111,119,112,110,113,105,89,96,102,101,108,122,94,111,104,99,103,105,95,114,104,119,107,109,102,98,114,113,103,110,105,103,100,111,90,102,103,107,105,95,109,108,100,91,108,100,99,99,102,114,102,111,113,104,96,104,113,107,106,104,105,118,101,105,110,105,109,103,101,107,97,103,104,110,111,111,115,98,111,112,120,111,99,114,107,105,97,107,104,94,98,101,103,104,106,111,111,104,112,110,112,107,108,103,103,113,100,103,109,109,102,111,113,120,111,84,104,103,97,83,95,102,94,104,107,107,118,108,97,109,105,101,101,103,107,113,107,109,99,98,103,104,104,105,113,110,96,113,104,85,104,88,98,102,109,113,110,99,102,83,100,103,107,101,105,119,94,105,108,111,107,94,115,96,106,103,112,96,101,83,108,110,107,100,100,108,99,101,116,92,104,115,118,115,102,104,115,92,124,109,118,96,113,104,100,106,95,102,103,83,104,99,75,87,107,107,100,99,104,106,108,103,95,108,106,103,96,109,94,102,102,106,98,112,104,92,108,106,101,105,127,99,108,90,112,103,95,110,101,102,110,88,114,108,114,98,103,108,103,109,106,105,108,107,105,108,93,103,107,121,110,112,101,104,95,110,96,108,100,104,125,111,96,106,112,112,100,113,118,105,110,91,100,101,94,105,104,111,112,107,90,116,112,95,107,109,111,110,112,103,95,126,103,103,105,111,110,107,96,108,100,95,104,120,90,101,116,110,104,102,105,106,108,108,119,106,102,109,108,101,96,120,107,107,104,113,108,98,106,100,93,103,111,107,140,106,130,107,102,92,90,102,108,110,103,107,101,105,92,100,113,100,110,103,99,107,101,102,105,102,111,96,97,99,102,100,109,98,106,113,101,104,117,106,99,109,92,103,113,107,108,95,106,92,105,113,100,103,113,115,116,106,105,99,106,113,102,117,102,97,96,102,106,116,100,109,101,108,109,104,103,102,112,110,93,97,106,118,112,95,94,109,113,103,100,97,109,105,108,110,98,98,96,101,119,102,95,103,98,95,113,103,103,106,98,109,128,108,101,97,104,116,116,98,100,106,108,122,113,107,117,100,121,114,108,113,92,105,106,112,99,105,105,113,103,107,114,112,98,108,117,91,114,112,108,100,112,108,101,107,111,99,112,114,112,104,108,103,114,103,104,110,111,109,95,112,105,105,94,101,105,94,120,110,105,107,117,107,109,100,113,99,114,102,105,97,106,102,111,98,108,105,109,102,112,102,106,102,141,119,109,106,115,108,111,102,105,111,117,122,97,113,98,108,113,98,114,108,100,109,112,76,116,95,115,113,107,82,105,103,106,103,103,109,108,100,109,106,98,104,88,104,109,109,107,112,102,111,102,107,102,102,116,86,107,102,126,108,99,102,111,121,109,99,98,102,90,100,107,103,104,105,109,105,90,107,104,110,108,95,109,119,106,101,106,111,112,108,108,109,110,115,104,130,106,90,112,107,93,108,92,105,90,104,110,97,104,116,101,113,114,120,106,112,120,116,106,103,96,113,108,112,115,99,123,104,69,109,98,91,99,112,105,96,93,99,111,98,96,114,109,106,103,114,102,99,95,99,108,94,91,91,105,106,95,105,102,95,101,108,112,98,101,119,107,113,99,98,105,99,110,119,99,100,111,91,117,107,114,98,111,100,97,122,101,112,100,97,104,110,102,115,111,107,105,107,109,106,113,105,109,108,105,108,106,96,105,105,112,112,109,105,91,109,110,113,93,99,114,100,108,108,102,110,111,98,96,106,105,113,120,92,105,110,101,105,114,105,116,103,97,97,115,105,101,105,108,110,107,96,102,113,93,108,113,111,108,107,106,86,108,109,105,113,103,109,107,104,112,105,105,110,102,99,105,119,102,109,98,102,102,101,107,106,101,112,98,98,101,99,95,106,97,91,96,80,103,108,99,96,109,102,112,106,110,105,96,102,97,108,103,95,127,103,112,100,99,111,96,104,104,103,103,107,108,93,99,103,98,109,74,96,112,104,99,110,103,109,96,109,106,111,103,117,109,109,109,101,104,100,103,101,106,98,99,115,98,104,88,111,87,104,95,108,99,111,100,94,94,109,96,109,107,98,93,103,105,105,104,120,99,109,106,103,100,102,102,104,110,98,107,106,101,102,110,95,99,104,97,103,107,91,111,100,110,119,97,109,101,107,103,101,101,117,104,112,109,97,107,105,102,104,94,110,105,109,108,109,107,125,101,97,104,98,108,106,107,98,105,94,123,109,113,107,97,101,103,110,94,107,96,112,109,112,104,106,115,109,106,112,112,87,102,108,115,94,103,99,113,113,96,110,110,109,98,99,103,117,111,112,113,107,107,101,106,116,106,104,106,89,108,105,94,108,121,106,111,113,104,108,102,131,102,100,107,105,98,109,104,108,106,102,107,117,124,107,97,105,108,103,118,88,102,106,121,99,115,103,101,110,108,108,107,111,106,99,112,106,112,106,103,101,96,115,105,102,100,100,100,104,100,104,114,109,89,112,106,107,96,106,110,125,125,107,112,109,102,105,98,103,101,108,102,92,97,111,106,95,99,76,113,116,103,88,106,102,108,113,96,108,103,106,101,127,106,113,98,105,103,109,100,104,113,106,104,103,99,102,107,103,104,109,112,108,121,97,102,110,105,100,119,96,100,98,112,101,110,98,101,94,105,67,113,96,102,112,107,110,89,103,105,97,100,115,115,105,96,113,101,102,103,108,113,94,109,101,104,108,103,110,101,97,100,106,105,102,115,99,107,95,104,105,102,98,109,98,100,104,97,109,106,107,109,103,102,99,108,114,109,102,107,92,90,105,117,109,106,101,106,114,103,104,91,106,95,105,108,110,109,99,102,107,99,108,100,104,100,99,97,121,105,103,102,100,99,97,116,118,108,106,102,102,110,100,115,105,107,109,101,112,104,109,94,107,101,111,112,104,104,108,104,101,109,103,106,115,98,102,91,108,104,106,96,107,87,95,116,95,107,102,102,100,94,103,110,99,111,96,99,101,102,103,96,113,104,97,106,101,104,121,95,109,98,116,100,105,97,101,106,115,112,105,98,109,112,108,125,112,101,112,102,102,109,102,98,88,92,88,103,99,101,108,85,105,97,104,108,120,104,111,99,100,93,110,94,112,104,98,103,108,103,101,103, +513.39624,100,111,104,99,92,115,103,101,101,107,113,104,102,106,106,104,104,115,97,103,96,109,109,110,98,99,102,113,101,96,99,102,108,100,103,104,98,94,92,99,113,100,103,106,121,121,103,69,110,109,86,96,111,104,99,99,104,105,99,101,112,104,102,109,116,101,113,104,99,103,108,103,101,110,94,112,109,102,83,115,111,110,114,111,93,108,107,103,99,102,105,112,104,100,113,103,107,109,101,87,102,101,103,102,97,105,80,100,110,103,102,94,106,97,96,105,94,102,105,117,102,99,106,113,105,117,101,94,108,99,107,105,95,112,107,121,110,104,119,105,109,102,95,89,105,92,107,105,99,100,101,97,106,92,103,97,108,109,103,102,108,98,91,92,110,98,113,96,106,109,103,100,115,102,102,107,88,103,102,125,99,111,105,112,104,98,101,100,100,99,79,112,102,106,108,108,142,107,105,109,99,110,98,92,110,101,107,99,100,113,100,102,106,108,109,101,109,134,113,105,110,116,102,115,110,94,107,94,105,102,98,100,90,102,108,108,102,95,111,111,103,95,120,103,106,107,105,111,104,121,111,102,102,92,104,116,108,95,99,99,104,108,106,103,92,104,111,101,112,109,98,100,111,101,103,106,105,104,93,102,103,96,113,104,113,113,95,98,116,103,118,113,98,110,93,123,116,117,112,99,105,116,110,98,104,102,112,113,99,114,108,120,100,104,104,87,103,103,99,102,107,107,103,110,105,111,101,98,99,106,105,104,113,106,99,112,110,104,105,108,105,108,101,99,100,105,101,125,97,110,99,112,116,101,108,102,82,108,102,103,109,98,99,104,99,111,96,103,104,110,111,108,102,113,103,107,107,92,108,112,110,109,101,98,106,104,102,108,111,93,104,95,102,113,94,102,103,103,104,113,93,101,109,98,104,107,106,117,126,99,102,96,94,99,108,96,102,99,98,97,109,100,104,105,104,104,113,98,108,102,95,107,104,112,102,99,110,99,106,111,107,99,114,112,100,105,101,105,111,101,108,114,109,92,97,93,103,104,102,91,100,123,107,112,108,119,97,99,99,101,105,112,98,107,106,100,97,115,112,103,102,115,100,96,109,98,103,97,101,105,108,98,114,99,109,101,109,93,107,109,111,91,110,104,98,108,95,109,116,103,110,104,109,103,102,103,105,112,97,108,110,103,120,120,106,99,98,99,101,99,110,108,92,106,103,104,104,108,114,113,107,85,116,100,103,110,110,109,103,108,106,113,102,103,101,84,106,76,100,106,94,113,90,115,98,103,113,106,98,104,100,107,111,101,103,106,99,103,108,104,110,99,103,97,108,105,106,111,107,109,85,111,99,104,108,101,96,96,98,114,105,98,114,100,107,106,113,109,99,110,96,106,110,94,101,115,101,110,108,114,107,107,108,94,110,119,102,109,118,103,105,101,110,112,95,103,115,101,107,104,116,117,113,87,105,103,107,100,109,109,108,98,113,104,109,112,114,104,100,113,105,98,109,95,101,100,88,94,101,109,106,110,104,100,103,119,106,111,112,104,109,105,115,78,104,106,106,116,112,114,109,95,105,109,120,109,113,108,111,99,117,112,125,98,103,115,113,109,114,107,113,107,105,98,99,109,108,117,103,114,107,99,113,112,110,100,103,100,105,149,103,116,118,113,105,105,87,117,119,99,95,95,98,104,104,104,102,104,97,112,94,88,107,104,103,99,110,104,108,109,104,103,93,105,99,92,101,112,110,106,99,105,114,97,106,110,95,110,114,98,101,115,115,103,106,120,105,118,112,120,118,105,106,113,110,108,103,112,106,103,107,105,104,102,109,99,87,116,111,102,113,110,110,96,114,107,110,104,105,103,99,87,113,100,107,106,98,112,111,108,99,108,103,118,108,114,104,102,105,102,106,105,104,114,101,101,102,105,97,93,108,105,100,110,107,101,128,105,127,107,124,95,115,111,103,99,102,102,110,110,104,114,108,113,109,110,116,91,105,92,103,104,111,95,115,110,100,114,110,102,109,114,109,99,105,119,97,109,86,107,99,106,116,103,100,120,99,111,90,105,113,109,115,93,105,94,108,112,120,104,111,108,123,109,99,98,109,107,112,114,108,95,97,105,112,105,101,95,115,108,112,104,114,116,107,92,106,98,94,108,107,101,112,106,100,114,100,96,99,108,98,114,95,101,105,107,94,107,107,115,97,88,96,102,93,98,113,105,95,103,110,104,117,107,103,93,102,97,103,102,107,102,109,95,99,99,105,101,116,101,102,101,105,101,103,99,102,97,101,94,96,119,101,91,102,107,109,92,107,106,102,97,92,94,102,101,100,96,108,105,104,101,112,109,111,92,103,109,99,121,123,99,100,107,95,112,108,99,97,104,96,108,104,108,138,90,107,107,103,100,97,104,99,105,102,103,110,105,100,104,90,104,109,99,107,95,116,102,107,102,97,110,96,113,103,108,87,105,118,106,102,102,101,96,98,97,108,121,108,88,97,98,116,107,117,106,106,100,109,113,102,110,107,113,102,101,103,109,99,122,115,104,104,101,114,109,94,104,104,108,92,98,118,110,95,122,110,106,109,89,102,109,106,115,95,97,116,105,109,99,100,92,103,105,100,118,112,106,108,105,99,99,112,102,110,115,88,98,103,106,98,104,95,111,97,101,110,110,110,93,109,106,94,105,113,102,110,102,102,98,99,101,112,110,94,91,98,99,109,103,98,104,98,93,104,93,105,103,101,102,109,106,100,121,110,109,104,105,95,112,94,111,100,107,104,103,100,111,92,106,109,99,108,106,109,104,112,104,98,104,105,106,113,103,106,104,110,108,87,103,102,109,113,102,117,89,103,98,111,116,125,96,111,106,112,104,101,109,113,108,115,125,111,109,101,97,106,101,98,117,99,102,112,105,115,102,94,102,106,120,99,105,115,102,107,112,110,113,91,98,97,98,107,107,107,111,111,115,102,99,104,110,105,93,103,100,84,110,111,103,99,121,99,117,121,109,99,112,107,128,107,104,111,117,106,102,83,100,106,102,103,100,82,96,99,99,111,106,111,102,91,96,117,110,104,103,90,102,108,105,102,110,109,101,104,98,99,103,116,106,105,110,109,147,106,96,99,109,102,104,105,105,107,109,100,87,109,94,111,99,111,100,100,118,101,117,108,108,106,107,104,112,99,102,102,113,100,109,109,99,93,103,108,106,111,117,111,110,103,98,122,105,109,88,100,99,109,104,110,91,106,94,106,102,108,98,99,102,106,103,95,96,100,104,106,99,111,105,109,96,98,94,106,101,103,101,116,105,105,95,101,80,101,117,110,101,100,94,98,110,99,117,119,92,105,97,107,108,117,106,98,83,111,107,94,115,101,96,103,98,102,109,103,94,107,108,98,100,96,98,104,99,104,100,97,103,106,111,111,106,96,87,103,99,99,105,115,118,111,112,107,107,111,100,117,95,114,99,102,126,113,104,95,92,98,103,98,108,114,98,115,106,107,118,100,98,130,79,95,112,103,109,106,102,115,114,111,109,103,107,105,103,119,93,103,100,97,107,95,115,113,103,103,113,100,104,107,101,117,109,91,115,114,113,105,110,108,104,116,111,92,108,99,104,88,90,111,98,101,111,100,105,108,104,98,102,94,100,105,105,96,108,107,102,106,101,101,107,102,104,100,109,106,101,103,98,103,99,108,103,110,106,109,106,114,101,104,94,92,109,95,101,98,104,103,105,113,108,111,106,109,98,102,104,103,86,113,100,116,100,100,97,111,108,98,89,107,90,106,92,113,95,100,113,114,101,111,102,108,100,98,108,113,105,101,103,100,107,112,113,117,104,103,91,104,96,113,102,104,113,105,117,103,112,103,99,113,103,108,104,102,95,102,99,90,98,110,100,76,113,114,104,107,102,106,104,110,106,113,121,100,124,99,107,104,115,112,103,104,99,105,105,99,112,107,99,113,110,108,107,96,87,97,103,105,102,107,117,106,105,110,98,103,103,109,100,104,100,105,83,112,101,117,108,104,110,104,110,103,100,108,105,91,105,91,105,112,107,102,94,98,108,100,98,109,109,106,106,107,100,112,96,119,102,103,100,102,100,112,113,105,105,107,104,108,106,99,102,113,106,125,113,108,106,109,100,104,99,113,112,104,109,108,90,104,104,100,103,89,113,106,93,117,100,111,106,100,112,106,113,100,92,105,109,115,113,105,108,105,110,101,106,122,101,108,101,95,106,95,96,99,113,92,104,100,110,98,106,103,97,114,110,111,110,101,101,116,100,105,92,104,112,113,99,109,111,106,108,103,114,107,113,104,107,102,108,101,103,102,103,115,98,109,108,94,99,100,113,101,94,98,121,103,109,105,102,111,96,100,100,113,113,114,107,136,101,103,66,102,98,95,97,101,108,109,102,113,106,98,98,104,104,91,115,93,106,97,99,92,99,119,103,103,96,83,88,103,104,75,89,110,101,98,95,99,109,105,96,106,105,120,105,91,111,103,104,107,103,94,101,95,99,106,107,90,107,108,107,103,104,96,109,105,98,100,94,97,94,112,106,91,105,111,110,109,104,108,117,110,96,120,98,109,112,105,109,96,105,81,110,95,101,101,111,107,93,116,111,107,106,104,103,106,106,100,101,118,103,103,106,97,109,111,117,111,108,92,72,99,106,107,100,103,92,105,111,105,119,113,102,111,107,92,113,110,106,99,106,108,103,99,105,91,102,108,85,115,107,98,116,106,106,113,112,121,105,91,103,104,103,96,101,110,100,102,104,123,118,117,106,106,82,105,101,105,111,108,115,111,116,112,105,108,109,99,108,110,121,110,98,103,98,108,95,95,107,95,102,94,100,106,102,61,89,107,102,102,122,95,103,108,98,94,100,100,103,93,95,113,88, +513.53693,123,99,89,102,88,103,106,108,97,95,98,106,94,110,116,91,102,112,110,109,106,105,97,105,114,108,88,103,104,117,100,105,101,109,104,122,99,92,104,103,108,96,102,99,104,100,96,99,99,100,105,105,97,69,105,101,120,116,108,105,99,100,113,89,95,112,103,82,94,100,116,112,89,103,104,100,105,98,117,101,109,107,106,89,107,100,95,91,112,95,98,97,116,119,112,101,85,101,95,102,105,97,102,101,106,97,96,92,107,101,105,104,100,98,106,100,109,104,114,87,97,100,98,104,108,105,108,104,109,95,102,115,105,109,99,95,112,100,81,94,104,101,87,87,98,106,110,105,110,118,105,95,110,97,107,115,98,94,93,102,104,104,114,110,111,107,104,115,99,97,96,105,105,96,109,99,107,109,88,106,105,100,103,97,100,110,94,107,102,97,103,104,106,96,95,97,107,87,100,107,101,97,110,114,96,107,97,107,104,95,105,103,104,110,103,110,96,96,90,103,95,109,93,109,106,110,108,114,105,105,103,96,102,103,103,101,118,110,103,107,116,98,106,102,91,108,108,107,72,106,110,111,105,105,110,110,106,116,97,88,101,108,111,102,113,105,96,93,101,90,108,101,102,101,112,106,87,106,109,101,97,98,97,92,106,99,103,114,105,100,104,105,106,110,99,98,105,108,107,108,106,114,88,102,98,119,106,106,84,104,92,110,103,99,102,104,108,105,95,120,117,100,116,106,103,96,87,88,108,100,109,100,102,101,102,99,103,100,92,109,115,100,106,103,96,106,95,106,107,101,88,104,103,104,102,107,110,112,102,98,97,95,106,100,102,106,104,90,88,111,117,100,108,106,95,101,114,105,91,104,117,98,107,106,92,99,106,94,103,67,93,94,99,106,110,105,100,105,95,103,107,124,93,102,117,105,100,104,112,105,114,107,104,106,101,97,101,114,100,98,104,96,110,104,101,98,97,96,136,114,105,110,99,105,107,96,97,103,109,105,100,112,113,110,119,102,108,96,109,117,111,99,96,113,103,100,101,111,106,100,105,109,108,103,114,109,109,102,110,105,108,92,104,98,100,110,100,108,99,109,100,105,107,90,99,102,104,112,106,102,101,117,104,116,109,96,108,97,107,110,117,100,128,98,105,96,91,106,105,108,104,110,95,110,98,103,103,97,104,103,103,101,89,93,104,103,111,104,102,113,102,112,106,97,110,103,96,110,100,108,98,98,98,108,115,103,98,100,109,99,90,109,99,102,89,93,104,98,104,102,116,95,102,99,106,101,114,104,94,99,122,87,104,108,96,108,99,106,106,98,107,113,107,102,119,104,101,117,103,105,100,101,114,103,98,107,101,96,103,109,106,113,101,106,105,100,88,111,121,106,80,96,84,107,111,100,98,112,117,115,99,105,101,100,105,103,95,104,104,79,104,108,113,108,96,99,107,104,98,114,105,94,98,100,94,112,109,102,100,113,112,102,104,109,101,105,86,100,104,97,110,95,102,95,99,109,99,102,98,103,110,106,106,110,89,111,116,105,122,111,114,98,112,100,83,105,122,103,109,95,110,100,74,104,107,104,97,110,95,98,103,97,104,103,90,93,92,102,110,100,102,111,108,109,105,101,103,107,130,92,106,94,104,113,93,110,95,105,110,114,109,108,112,109,108,100,114,91,135,102,113,119,104,98,111,95,104,108,104,107,112,113,101,99,105,106,106,106,101,100,95,106,68,108,95,91,100,105,113,112,110,104,111,103,90,110,102,102,110,101,98,115,103,99,107,111,104,103,111,108,103,107,93,114,105,105,82,117,102,110,105,108,95,100,98,94,114,100,104,93,110,101,111,108,108,110,110,105,115,102,122,104,112,104,101,105,110,110,102,96,102,105,123,97,102,107,107,103,109,93,116,109,99,96,99,92,107,93,94,101,99,104,95,109,105,112,105,101,104,102,112,104,107,107,105,110,95,114,110,97,105,114,103,104,103,108,100,96,104,104,109,106,99,110,101,104,103,120,108,104,100,114,106,110,99,106,105,104,102,116,105,109,108,105,105,103,87,99,109,112,105,102,110,103,102,99,97,107,102,100,103,107,93,104,114,101,102,99,103,116,103,106,106,120,103,95,100,101,126,97,103,106,104,109,99,95,100,103,118,107,110,93,101,106,107,91,100,108,113,110,89,115,92,100,104,106,107,101,90,100,91,101,98,99,101,107,109,95,103,76,109,109,105,93,101,103,101,105,101,102,101,92,102,96,98,104,104,101,108,92,108,105,99,110,106,96,101,99,105,107,92,110,99,108,107,97,75,101,107,107,124,94,101,98,104,95,114,100,113,113,93,105,111,103,106,99,106,109,97,107,100,111,103,106,111,101,101,103,108,103,100,92,109,112,105,99,105,97,97,93,105,108,91,109,96,96,108,111,100,95,100,101,96,102,96,110,95,104,105,119,97,115,105,119,105,112,100,90,103,120,96,101,104,112,109,94,102,103,107,113,99,91,101,112,96,98,99,105,100,108,102,126,98,108,108,96,94,116,106,100,112,109,105,110,93,103,103,112,99,102,101,109,101,103,99,114,99,109,108,106,99,100,104,99,95,97,107,115,105,95,119,109,111,112,112,111,104,112,97,103,97,78,96,117,98,104,102,104,106,109,106,99,106,104,84,98,102,96,96,97,105,101,104,116,107,109,103,101,108,108,108,109,104,96,100,97,95,82,113,101,107,102,102,112,103,110,103,105,101,114,102,105,99,99,117,112,101,115,106,103,110,94,90,99,106,101,95,120,113,103,102,99,118,103,94,105,104,105,108,111,112,96,107,95,106,95,108,108,97,117,103,96,99,102,109,113,100,112,117,108,105,98,96,111,109,115,102,108,102,103,147,104,107,104,102,87,113,108,91,102,99,121,108,97,91,84,107,106,102,114,105,106,103,106,105,114,110,96,102,103,103,106,98,111,109,94,102,103,104,105,117,107,106,94,102,109,101,103,110,105,104,92,102,94,105,108,115,102,101,103,107,105,96,111,110,109,106,103,106,107,98,108,100,107,111,109,106,98,120,105,113,117,106,106,114,86,110,102,111,87,96,114,107,106,112,96,110,102,92,110,119,99,107,106,108,101,98,112,106,105,118,92,111,107,117,98,102,108,101,96,88,104,102,109,106,101,113,113,112,117,113,107,103,99,98,112,110,106,106,90,105,102,112,105,100,102,98,111,84,80,107,113,104,104,92,120,108,102,107,105,128,110,106,109,111,98,111,117,102,107,101,100,102,98,96,68,107,110,117,101,109,112,104,107,105,110,100,98,98,114,99,113,106,104,93,105,105,100,103,100,103,117,105,100,101,98,102,113,108,117,97,106,103,95,119,101,108,99,116,88,103,102,99,108,76,103,108,100,114,103,105,107,112,109,109,102,105,115,110,84,84,117,120,102,107,102,107,108,99,105,103,90,102,112,100,111,109,93,96,93,106,119,105,116,115,95,102,113,113,101,100,110,107,111,112,113,109,98,100,105,108,110,96,121,107,99,103,86,109,115,91,102,113,113,105,104,108,103,117,115,101,100,103,108,99,99,107,101,109,93,116,95,101,112,112,106,108,99,96,117,101,87,111,108,105,104,104,101,110,117,103,94,104,97,103,109,100,96,96,105,105,101,111,102,85,97,94,115,102,95,106,93,104,112,92,101,110,116,102,111,115,96,110,104,109,100,115,108,102,109,101,104,95,107,113,97,105,99,104,99,113,100,93,109,107,106,110,112,100,100,107,112,98,106,110,99,102,108,120,97,98,105,108,108,103,102,108,113,108,129,96,92,98,111,105,103,92,91,113,87,92,109,109,98,103,109,102,102,109,98,112,119,107,101,92,104,96,73,118,95,112,91,102,108,125,94,110,103,99,95,100,105,105,98,104,95,100,109,106,108,104,101,94,107,99,105,103,104,114,98,97,99,99,103,101,98,99,105,108,93,109,105,91,113,104,109,104,121,103,99,105,100,97,113,104,96,98,95,99,106,107,98,99,109,103,102,108,107,113,115,106,91,105,106,104,116,110,108,101,102,100,110,105,105,98,107,104,106,103,93,121,108,117,101,111,105,101,105,103,92,111,102,100,109,91,109,88,108,100,104,96,103,103,104,107,109,109,71,120,89,107,108,96,96,111,104,100,108,107,95,105,115,95,102,107,113,105,110,97,104,108,91,120,105,102,98,109,107,98,100,104,90,105,101,87,112,102,111,105,109,107,99,109,108,100,110,99,111,110,95,105,102,109,111,94,106,94,101,91,113,99,110,105,103,105,108,108,92,108,101,96,108,124,113,124,106,110,99,96,107,108,109,93,105,102,103,113,105,108,116,106,98,122,106,101,89,97,99,104,113,106,94,110,109,98,106,107,106,110,105,122,101,116,110,89,96,94,108,102,103,114,103,106,99,99,100,112,98,110,107,83,117,100,108,94,99,104,88,102,98,89,100,103,103,106,107,107,120,102,98,104,104,100,105,105,113,112,107,106,103,88,101,107,92,104,102,108,103,102,113,107,100,93,104,98,109,108,102,99,99,107,115,105,102,110,105,112,113,100,109,104,107,90,103,105,100,115,97,105,113,96,110,121,106,97,108,102,114,119,107,106,111,96,109,102,101,102,101,87,106,101,90,108,99,108,99,97,105,113,117,110,92,111,84,98,98,117,101,77,116,103,116,112,107,106,100,92,104,105,101,102,88,111,101,93,103,110,105,108,108,111,102,94,117,118,101,115,99,103,112,106,118,104,110,107,112,112,105,102,109,107,86,110,101,107,95,106,80,113,98,113,96,104,109,111,101,95,87,101,108,112,100,113,101,95,102,103,94,109,87,102,107,104,92,89,98,106,84,102,86,100,102,103,101,117,103,106,101,90,91, +513.67761,106,92,106,100,99,104,112,117,92,93,84,87,98,94,94,114,102,111,104,101,109,100,108,109,115,103,105,91,108,111,108,101,106,110,119,103,93,98,109,104,117,93,99,109,97,101,115,91,105,105,91,98,112,106,103,88,95,101,107,72,94,101,109,96,102,120,100,109,107,88,101,111,84,101,94,93,92,94,116,101,104,105,106,104,115,91,105,104,95,95,100,122,105,99,99,92,101,96,108,104,109,108,96,105,100,99,101,122,97,97,93,90,98,101,117,100,105,110,96,96,99,100,114,108,105,95,112,98,110,108,99,103,96,102,105,111,98,105,101,120,101,113,101,95,101,97,104,100,92,95,107,100,106,102,100,99,110,109,104,86,107,91,111,107,114,98,111,106,101,95,104,118,92,118,101,115,94,100,114,103,109,99,87,109,107,94,117,106,111,97,104,101,98,114,106,106,99,101,105,96,100,111,106,113,114,100,108,117,105,104,106,91,102,115,113,119,105,102,105,115,117,123,102,100,110,126,91,102,116,99,107,117,113,105,102,106,98,103,112,104,108,100,109,108,105,108,88,107,123,108,107,101,103,102,109,103,93,103,100,112,86,121,109,104,102,95,108,100,102,100,106,102,96,100,107,110,96,117,108,107,100,113,109,109,89,100,101,114,102,108,106,105,114,114,108,103,95,100,102,104,105,107,106,106,117,107,125,112,104,114,91,107,111,122,105,103,91,112,97,106,97,103,112,94,100,104,104,102,97,102,111,107,112,101,100,122,101,103,108,110,104,99,83,92,107,97,107,96,111,97,104,105,102,113,99,89,94,113,106,111,119,106,108,97,96,103,109,103,101,105,104,99,114,101,84,100,88,106,103,110,111,105,107,110,98,106,83,103,95,88,114,104,101,93,94,107,104,93,110,100,104,108,103,98,98,100,98,101,110,104,106,98,107,99,106,106,91,99,94,120,120,89,95,108,106,99,104,106,109,110,101,100,99,94,101,116,97,100,129,109,112,96,104,111,91,80,92,104,104,100,106,107,108,118,99,100,108,117,119,108,106,101,103,126,101,112,99,107,107,104,108,103,110,104,109,105,104,95,99,100,98,101,110,114,108,94,108,140,100,105,106,118,102,100,91,100,101,107,100,113,111,116,106,95,110,103,105,109,94,108,106,111,101,100,106,111,115,102,93,114,109,96,106,106,98,97,113,99,96,100,106,95,103,114,108,102,91,94,102,96,96,111,73,105,105,117,102,112,95,106,98,133,117,107,107,106,114,105,109,102,106,103,90,120,106,104,116,114,98,102,91,105,85,104,108,106,112,95,97,111,103,100,109,81,106,96,91,104,105,87,103,108,115,98,109,108,98,105,71,115,93,94,97,107,104,102,105,88,96,98,101,105,106,99,104,95,108,118,87,97,117,113,106,106,101,109,105,100,110,104,97,108,106,103,107,104,105,77,103,97,113,104,120,112,96,95,97,107,100,103,101,94,105,110,103,111,110,107,103,109,111,111,105,105,91,98,110,78,101,125,106,102,97,107,105,117,106,101,107,98,112,107,103,98,102,107,103,110,113,101,100,100,104,113,98,96,104,117,109,103,100,98,105,103,127,108,108,113,78,96,101,84,100,106,100,91,125,100,104,102,84,100,105,118,99,123,120,106,117,113,92,121,90,107,101,105,108,100,101,107,109,92,98,113,113,78,102,103,100,106,106,90,96,114,100,112,110,108,126,109,114,104,104,112,101,106,113,98,105,102,104,104,114,108,106,118,103,110,102,109,117,101,105,93,119,102,96,105,94,107,110,105,103,104,101,102,103,102,109,124,105,109,117,118,108,108,115,103,99,109,113,109,109,95,115,108,102,107,119,112,75,116,105,103,116,111,98,91,95,95,120,78,109,101,121,99,102,95,108,99,106,120,110,106,117,109,101,99,104,107,110,93,86,109,100,108,102,100,105,108,111,103,116,100,105,103,117,133,115,101,94,106,102,112,108,110,115,99,109,113,112,107,108,100,97,98,102,114,94,94,104,106,101,92,112,103,96,101,98,104,93,103,109,101,103,83,111,128,95,104,103,109,112,120,101,110,102,106,91,117,92,98,109,109,107,67,95,108,102,106,110,108,112,112,98,108,97,100,100,106,102,98,106,111,102,90,102,122,110,98,119,103,111,118,110,119,103,106,105,113,111,105,100,96,105,116,101,113,104,103,95,106,111,99,103,95,113,103,97,112,107,122,105,97,109,100,107,107,101,98,112,102,101,112,120,107,105,135,97,113,94,100,103,109,104,104,110,100,100,113,95,111,92,111,107,104,104,110,103,102,106,112,98,102,98,100,91,105,103,108,106,115,118,103,103,97,100,112,105,117,104,101,110,99,93,106,111,109,108,102,109,113,102,105,111,117,104,109,97,114,91,105,105,104,114,100,102,111,87,98,103,110,96,112,99,107,102,110,93,95,108,111,98,108,111,107,103,101,111,103,118,105,112,89,116,100,106,113,107,109,108,95,91,109,121,117,103,106,101,124,103,110,109,101,103,96,101,108,103,112,117,117,110,88,95,109,106,107,103,96,102,125,111,100,97,116,96,102,93,99,99,93,102,106,107,111,114,109,113,103,117,110,107,96,94,96,107,102,103,113,108,62,103,102,95,128,108,94,105,96,95,109,100,101,99,102,111,103,111,107,109,109,101,104,120,95,103,99,110,107,107,107,112,115,113,110,98,108,106,115,105,106,98,103,102,104,109,116,108,110,112,90,98,91,107,92,114,112,106,103,114,112,105,97,109,107,105,101,101,99,102,105,94,111,105,98,107,103,110,102,112,102,121,93,103,98,107,110,92,100,103,105,100,113,105,102,108,103,100,92,106,105,108,109,110,103,100,108,104,107,101,102,124,120,107,104,96,100,106,109,100,107,99,100,116,117,106,110,109,108,104,116,97,95,108,102,113,101,103,105,95,103,96,85,104,109,90,98,102,104,99,113,109,100,109,110,104,104,102,97,107,102,104,93,113,104,111,80,104,100,96,96,109,117,118,101,99,94,102,99,100,113,108,109,111,112,110,106,129,99,99,106,112,106,102,101,94,106,114,104,110,107,101,105,106,105,120,100,91,118,111,102,101,107,130,112,96,97,106,98,109,109,101,94,106,121,113,106,93,108,112,86,121,100,93,104,102,91,106,109,102,98,100,107,105,118,109,108,112,104,95,100,102,107,108,102,109,109,104,93,115,105,105,102,107,105,113,102,117,104,101,106,107,105,109,114,104,114,102,115,104,106,104,109,98,97,102,115,94,124,105,102,98,108,103,111,100,115,100,103,118,105,111,79,106,95,110,113,117,103,111,109,83,109,97,108,105,100,109,107,107,103,102,117,102,95,115,116,89,98,133,104,107,105,105,111,106,110,106,109,103,111,113,102,96,128,103,108,97,119,102,106,109,103,104,109,102,104,102,103,104,108,109,97,89,103,108,116,98,105,108,114,96,101,113,101,98,102,111,111,113,106,108,103,106,113,109,107,95,103,120,116,106,94,105,110,109,105,101,104,100,92,97,95,115,106,100,104,116,114,105,124,112,108,98,105,100,107,102,104,110,106,103,96,113,117,115,106,95,109,98,111,103,94,109,102,109,110,112,108,107,100,102,106,98,95,113,101,111,105,102,111,100,107,114,100,97,111,102,106,113,116,102,115,104,80,105,101,107,101,102,87,104,114,115,108,117,114,105,113,122,108,101,95,103,96,112,98,112,113,97,98,101,106,100,105,121,113,99,109,110,111,96,111,103,95,93,97,103,106,97,111,110,112,103,100,101,117,99,106,109,103,116,109,99,104,103,105,118,118,97,121,104,103,98,98,109,121,103,94,100,101,107,111,112,114,109,99,113,102,118,99,117,104,121,102,106,106,119,108,98,94,101,106,98,106,110,98,108,101,105,112,112,108,94,74,95,100,103,104,97,109,105,110,97,116,101,106,103,105,94,102,108,108,100,74,104,109,103,105,100,110,97,96,101,97,117,101,107,106,118,96,110,98,102,99,107,99,104,91,107,115,111,100,118,124,110,105,117,113,106,95,102,109,108,116,90,98,108,101,107,105,108,105,111,117,110,105,99,110,116,100,101,102,110,118,111,110,74,111,105,86,111,110,97,106,98,111,104,92,102,100,103,94,99,102,102,123,110,117,99,99,109,103,112,105,102,107,103,117,98,109,108,106,97,133,113,102,92,110,105,94,111,104,113,104,106,107,104,98,96,112,106,113,95,103,103,109,113,116,119,106,116,108,96,120,111,90,104,120,114,107,113,113,113,108,95,102,124,116,98,94,111,101,113,102,123,111,97,103,113,93,107,95,112,108,110,113,92,99,113,106,103,105,73,129,105,106,116,103,109,105,111,104,104,93,104,115,106,122,95,99,99,91,92,102,113,106,98,109,122,106,87,104,99,103,100,103,104,112,103,111,105,105,102,86,112,106,114,104,98,123,109,101,100,113,105,106,95,104,97,101,91,104,108,110,101,108,87,91,115,100,101,112,94,113,99,112,104,99,98,108,112,98,105,105,96,102,94,107,95,111,104,99,108,95,107,113,98,108,103,98,105,106,120,115,102,107,95,98,96,101,112,97,94,96,107,102,77,90,101,96,102,107,94,108,122,104,97,107,92,97,105,97,97,106,102,96,93,105,100,101,104,112,77,112,85,102,94,98,86,101,117,103,87,105,92,95,102,96,99,98,92,105,107,83,112,100,110,119,111,102,108,87,83,97,88,131,113,84,99,84,114,113,111,98,122,96,97,109,123,100,103,99,109,102,88,101,85,106,91,105,102,105,107,103,107,105,92,95,109,105,95,99,80,117,99,109,124,95,98,91,109,103,117,117,99,107,96,104,95,110,102,102,98,99,103,99,106,103, +513.8183,105,98,100,96,105,91,99,100,99,105,106,94,103,107,109,94,102,112,108,98,114,116,95,112,108,84,88,111,104,109,130,110,103,109,105,110,114,108,96,102,97,106,101,101,109,119,99,103,96,129,100,98,97,110,121,108,99,103,111,114,108,111,91,99,124,116,97,105,102,98,119,113,98,109,108,112,105,105,109,101,114,121,75,109,104,110,102,99,100,83,112,95,96,105,109,92,105,113,111,107,103,115,112,107,100,105,112,117,96,96,103,117,97,110,109,114,103,110,103,97,103,110,105,101,114,122,103,95,111,98,116,100,107,97,103,106,113,109,122,103,99,105,97,89,99,97,101,109,96,109,104,97,103,95,102,103,98,110,121,113,106,109,103,103,104,103,94,97,78,95,110,103,100,101,105,102,113,103,96,94,102,97,103,114,113,98,105,101,102,103,90,113,111,107,93,111,102,110,103,111,105,102,93,110,112,108,97,101,108,101,113,116,107,112,111,102,103,130,105,111,100,115,96,102,96,117,104,103,99,100,114,101,102,105,113,111,107,112,100,86,101,105,118,101,95,103,98,101,114,96,104,105,107,110,108,104,100,106,101,106,103,104,95,103,88,105,114,104,108,103,94,115,104,105,99,118,102,113,108,104,96,108,103,106,108,116,104,109,112,110,93,106,102,103,91,114,100,115,106,105,107,112,116,112,109,113,101,102,121,108,99,106,105,84,111,102,100,101,113,100,97,113,103,104,106,107,116,100,114,109,111,100,116,112,104,112,104,108,104,101,97,104,89,107,94,115,111,98,103,104,100,99,104,87,107,110,104,109,103,112,108,114,99,102,108,108,108,105,104,103,104,103,105,109,109,94,112,113,110,100,108,110,103,106,102,107,98,99,95,108,109,103,111,109,99,104,94,108,105,104,108,100,102,100,104,98,114,109,106,113,104,96,105,103,102,102,110,114,105,97,98,102,105,107,94,101,105,102,105,119,102,112,94,107,103,99,114,102,100,109,108,105,77,111,113,104,98,101,110,105,103,105,100,110,96,112,112,99,102,110,102,110,97,112,106,107,108,97,107,114,101,97,90,130,90,101,86,109,103,95,117,113,104,108,116,99,100,106,99,99,109,108,113,110,101,107,110,110,110,111,110,113,97,100,90,107,106,115,106,107,105,116,103,107,103,99,113,104,92,100,100,113,110,106,107,109,122,110,108,99,104,79,102,98,102,108,106,100,104,93,102,101,100,119,103,102,96,96,109,98,106,108,121,98,108,106,99,92,99,107,106,108,94,105,103,94,114,116,104,100,96,103,101,98,102,109,101,112,100,104,106,105,105,107,106,110,94,108,105,97,113,119,111,103,107,108,94,106,108,107,110,107,105,103,96,108,101,107,107,99,121,106,100,94,106,106,108,109,103,103,116,108,104,91,101,113,98,114,108,113,105,101,100,102,112,102,108,103,103,108,102,103,124,109,105,95,106,113,103,96,104,111,113,112,116,108,107,106,87,112,106,117,109,107,125,99,113,100,109,102,108,106,101,108,103,107,97,112,98,100,111,110,112,106,103,105,122,96,102,99,106,109,102,119,100,94,95,87,116,106,111,105,114,104,104,112,109,98,112,103,99,118,116,94,96,108,105,108,99,98,111,104,104,111,104,99,108,120,108,89,89,107,118,99,90,100,112,101,100,98,108,106,98,100,102,111,118,95,98,120,102,102,106,100,83,110,101,103,107,106,107,105,103,102,95,99,91,112,107,105,110,119,108,100,107,101,124,104,118,105,120,112,112,100,109,113,98,113,113,105,116,102,103,109,104,100,101,95,98,108,107,112,103,108,110,102,107,107,100,85,120,102,109,100,109,102,119,107,108,109,109,106,103,99,99,106,109,109,105,103,101,100,115,98,102,105,105,113,110,104,100,100,111,97,102,113,93,111,91,117,109,99,112,112,98,101,101,101,94,116,109,108,109,109,94,93,97,115,107,101,108,107,112,103,103,100,103,92,108,106,114,103,112,103,107,114,113,105,84,104,105,108,112,106,101,102,103,108,93,99,104,109,92,103,94,100,95,105,111,109,107,126,103,117,109,103,77,109,96,108,98,108,104,100,99,98,111,104,97,118,98,105,79,106,96,98,113,102,110,105,104,92,88,104,112,92,73,99,106,104,112,96,112,103,104,93,106,116,94,98,113,109,111,102,110,104,103,112,106,99,103,84,109,102,103,94,104,114,102,97,101,106,95,109,107,101,99,108,99,95,97,89,98,103,101,109,105,106,116,116,105,99,98,103,119,108,106,111,100,101,96,116,99,106,103,97,113,99,109,103,113,113,103,91,98,103,104,100,102,121,116,100,101,109,108,99,105,121,113,107,103,113,95,108,109,103,106,103,98,109,103,106,140,110,104,101,105,113,115,105,98,108,103,104,90,87,101,111,90,99,97,106,87,102,101,112,103,104,97,108,94,103,104,112,95,108,109,112,120,111,110,107,100,110,111,104,102,91,107,113,105,83,99,100,94,111,98,112,102,97,103,117,101,99,115,108,100,99,96,117,118,105,105,119,116,113,106,114,111,97,99,107,106,100,94,116,95,112,102,95,98,93,113,94,103,99,120,104,103,90,120,97,112,104,123,113,100,107,89,91,100,95,103,100,111,100,100,102,108,99,113,104,101,98,94,101,103,99,112,103,107,105,96,120,109,110,100,96,112,109,106,108,121,84,102,114,108,103,102,105,109,106,101,113,109,100,115,108,97,98,68,107,111,109,108,109,105,108,104,106,102,98,106,108,106,92,111,94,106,96,110,97,91,99,108,105,107,104,107,110,76,113,99,92,94,102,112,107,110,109,103,84,112,103,105,111,106,109,98,107,106,100,101,102,105,74,100,103,110,111,117,110,106,99,110,96,99,113,107,112,97,100,104,116,121,97,106,95,110,107,105,106,103,128,109,98,94,104,108,104,100,109,99,125,106,94,106,107,101,110,109,96,101,110,76,115,100,111,100,127,105,95,91,107,116,97,113,102,102,113,106,93,104,98,100,100,107,98,94,91,105,95,100,105,99,107,105,112,104,105,110,103,94,100,104,108,102,94,104,94,111,102,104,105,94,96,100,111,116,105,92,102,107,90,108,112,104,98,104,105,106,101,109,114,100,69,107,79,104,106,112,80,117,109,112,92,87,101,111,109,100,106,103,102,96,109,108,106,103,95,86,102,105,105,105,97,110,97,97,100,89,100,100,84,97,109,102,111,111,108,101,109,108,109,103,125,95,102,112,109,101,99,104,113,97,108,133,104,104,113,102,93,93,106,109,97,104,95,112,101,106,94,95,101,122,115,105,102,103,109,105,111,107,92,95,97,99,103,108,117,102,102,98,104,101,109,99,99,97,87,95,115,106,93,116,101,82,108,99,96,99,100,101,97,112,106,111,102,103,111,93,97,109,127,108,104,113,97,102,109,100,113,92,103,104,99,105,120,95,104,104,101,91,107,90,96,100,89,112,90,96,99,95,107,108,107,90,101,99,99,93,104,111,108,101,109,112,98,98,103,100,113,108,101,116,111,97,91,94,119,116,91,95,107,99,102,84,103,98,102,116,87,99,109,102,102,109,98,104,106,100,96,104,96,112,95,104,104,106,99,110,100,106,107,96,99,104,101,92,95,107,108,110,102,97,103,100,109,95,103,95,104,106,86,96,101,100,104,109,88,113,111,101,109,88,102,104,109,104,102,102,110,97,100,95,101,101,108,104,106,117,90,105,92,108,110,106,111,97,99,104,97,106,106,101,99,97,105,100,94,113,106,107,107,102,104,103,102,106,98,118,100,114,98,107,104,94,102,96,102,92,109,103,97,106,115,109,81,121,111,108,99,105,107,102,109,106,113,112,106,112,102,110,104,104,106,95,101,103,109,96,102,114,99,110,94,105,107,104,93,99,109,112,108,110,105,98,112,101,101,105,104,111,102,98,131,92,102,112,104,100,110,113,105,110,107,97,101,94,103,103,114,112,100,108,90,102,102,120,102,120,89,112,119,105,102,108,113,117,107,116,98,95,114,96,104,106,107,126,98,109,103,105,94,104,98,107,104,98,96,109,112,110,107,106,108,100,106,101,93,108,102,110,108,109,102,103,111,102,103,99,92,111,101,98,96,113,104,103,101,101,87,95,99,76,110,110,101,100,92,95,92,104,112,95,113,123,114,99,100,105,97,125,100,98,104,127,96,112,101,101,98,110,99,103,102,108,123,105,114,105,98,113,105,109,104,102,91,101,92,109,89,113,102,88,99,110,95,104,115,108,105,104,105,106,104,113,103,102,110,110,99,112,107,107,91,103,99,111,109,113,103,108,78,98,100,107,103,101,90,108,117,121,99,107,109,100,108,110,117,102,106,103,104,105,103,105,111,105,91,102,95,104,111,104,99,100,103,97,93,87,95,116,98,101,84,88,97,101,99,103,113,107,117,103,104,97,114,110,107,102,101,95,100,101,110,106,106,105,98,103,103,111,98,113,106,104,106,96,95,79,113,109,104,104,100,105,111,109,109,102,94,96,98,105,113,107,94,108,97,104,111,110,104,90,112,123,91,98,96,103,100,105,109,112,104,109,105,101,115,96,103,109,108,102,107,110,119,113,102,89,103,106,111,115,96,116,116,89,98,89,110,110,95,89,104,107,100,97,95,112,98,99,100,109,97,104,105,100,111,107,104,93,95,104,95,91,102,101,104,95,97,98,103,109,105,108,105,105,109,113,91,100,97,110,102,109,98,110,103,96,111,105,111,102,117,118,105,110,95,94,104,101,97,103,104,104,121,100,116,102,101,99,96,110,103,104,97,97,101,104,90,113,109,102,101,102,99,109,104,102,91,94,113,96,95,95,81,107,102,119,113,107,105,109,86,95,112,93,94, +513.95898,96,102,99,104,101,89,106,92,96,109,93,88,105,89,115,106,108,109,75,106,100,108,96,97,107,105,104,98,111,95,90,104,107,111,112,105,120,100,81,86,79,110,88,79,100,106,105,99,102,104,104,98,100,115,90,99,99,96,105,92,105,100,98,99,109,104,112,101,103,111,113,96,103,81,104,101,91,94,105,99,89,106,99,107,106,104,109,100,94,95,98,110,101,104,102,95,99,102,96,104,113,103,97,109,95,103,94,101,97,103,105,79,105,113,105,106,103,102,107,90,97,108,102,107,110,104,106,102,105,102,110,109,98,108,100,120,96,104,109,104,95,105,104,101,64,105,107,106,105,89,89,104,100,99,110,107,120,113,106,104,113,102,104,107,106,99,108,104,103,94,103,96,108,100,106,100,108,105,115,104,110,112,107,106,109,104,102,110,93,88,105,95,99,109,103,105,101,97,113,108,102,118,97,102,87,106,102,118,105,107,89,103,109,107,104,108,95,97,100,109,114,105,103,100,99,111,113,113,111,108,97,106,100,104,99,101,97,101,103,100,98,94,104,103,105,103,97,107,102,112,96,107,102,114,117,103,101,107,108,103,96,97,101,107,97,110,106,117,93,94,103,117,108,102,109,95,92,113,104,100,106,112,106,106,103,105,106,102,104,114,98,99,95,77,107,100,121,105,111,105,105,112,106,104,102,108,98,122,104,105,100,109,106,98,98,103,114,104,103,105,114,101,98,105,115,88,125,93,100,106,106,83,104,110,113,109,101,111,104,104,103,104,94,102,102,100,89,95,121,114,94,105,91,110,121,112,100,102,99,117,105,100,105,100,108,109,100,112,116,90,103,91,105,104,102,108,113,90,110,99,99,97,101,107,110,105,99,103,104,101,109,104,101,96,96,107,92,100,94,108,97,101,96,95,108,98,121,108,105,107,99,116,110,100,107,92,101,108,92,101,103,106,112,109,99,94,101,117,104,103,93,101,94,110,104,103,104,108,108,104,105,98,109,104,110,100,103,98,107,122,112,93,94,107,109,95,119,102,111,99,105,106,109,107,96,99,106,95,95,96,98,103,100,104,101,100,102,103,107,110,104,106,117,102,96,88,102,105,106,95,106,94,103,104,117,105,106,104,107,109,112,103,110,103,104,104,113,101,113,96,98,103,92,107,112,100,99,107,107,104,105,103,110,108,101,94,100,107,95,110,91,102,109,85,104,109,105,94,86,109,99,105,109,113,98,108,108,102,111,111,104,113,104,107,106,95,113,109,113,103,106,105,111,137,106,104,112,121,105,100,106,100,114,105,103,122,95,110,96,107,113,113,99,97,105,102,104,106,99,113,103,101,107,110,114,104,101,99,107,104,109,92,100,105,104,103,100,108,112,96,98,104,104,109,108,100,95,108,110,99,103,100,109,105,98,92,104,96,99,103,106,94,99,98,97,116,108,105,109,104,112,99,107,104,97,100,108,101,105,108,86,103,102,121,101,135,109,109,116,101,99,107,102,114,101,110,101,106,98,106,112,114,106,115,104,105,94,99,102,103,110,117,108,107,101,104,101,100,104,110,108,96,105,103,105,98,104,96,71,98,102,102,97,108,97,103,116,114,93,109,113,112,95,104,106,118,100,100,104,109,107,101,104,108,103,104,108,95,91,104,106,108,108,106,102,122,109,94,110,94,107,105,99,113,132,91,112,96,94,109,104,98,102,97,113,87,114,111,115,117,108,107,108,110,107,112,100,97,96,91,104,108,99,102,96,111,101,111,106,100,99,114,116,108,120,108,106,105,91,94,103,99,102,105,110,104,98,122,104,106,101,108,100,98,109,108,103,103,105,103,111,95,100,91,106,96,108,96,104,100,109,115,101,101,105,102,109,105,114,111,109,105,103,104,91,104,109,94,96,104,112,110,96,99,110,92,97,117,98,107,135,108,101,105,100,93,108,103,90,116,109,113,104,100,104,101,107,99,106,95,100,105,108,110,96,97,112,101,111,106,110,99,96,98,93,105,103,105,104,117,101,103,99,104,102,112,106,110,98,89,100,108,109,102,110,88,110,100,103,101,96,106,104,102,113,105,101,101,91,113,101,99,99,108,101,102,92,92,100,107,98,113,100,99,93,94,97,105,103,126,106,102,94,97,107,103,106,114,98,109,109,118,116,90,104,116,105,106,102,100,104,106,91,105,110,105,97,111,101,107,103,103,100,101,96,96,113,107,110,102,101,102,108,108,113,98,101,97,99,112,97,104,113,104,74,97,99,100,117,87,102,97,104,95,108,113,88,107,121,113,95,108,106,108,103,105,112,102,106,94,91,101,110,97,106,105,100,109,107,112,121,113,112,108,112,114,91,110,101,85,95,108,100,109,103,112,104,96,105,108,102,95,111,99,99,98,103,99,121,86,106,102,105,113,105,75,102,102,112,101,98,106,109,114,101,106,98,110,90,98,81,101,103,92,108,106,111,103,106,107,111,111,114,95,109,114,116,69,102,113,98,117,111,106,100,111,120,95,104,89,109,109,94,98,113,99,102,105,116,115,111,101,100,112,99,102,105,104,108,99,102,98,100,99,108,100,108,93,109,105,108,87,106,110,101,99,110,109,107,104,106,121,111,106,102,117,114,102,109,103,110,93,107,87,110,111,100,115,112,119,113,112,114,115,69,101,106,111,117,107,118,108,114,98,96,109,98,80,105,109,115,107,110,109,117,106,108,113,119,108,102,102,102,115,80,100,106,110,106,116,99,100,108,102,105,112,104,115,100,111,107,105,100,107,104,103,100,112,117,114,105,97,92,117,110,98,113,110,113,106,104,101,107,102,106,114,109,104,89,111,106,108,98,100,112,108,98,109,100,111,112,108,103,111,107,94,119,103,107,109,113,108,104,105,108,107,98,112,113,110,98,106,117,100,106,99,110,100,105,103,102,104,95,101,101,99,89,106,115,108,111,106,97,109,108,111,115,103,101,99,105,102,104,104,111,110,100,106,99,95,112,105,99,101,108,99,99,90,98,110,96,120,113,112,100,101,105,103,100,103,112,106,110,93,111,102,106,106,111,108,107,99,101,108,107,95,111,106,105,110,112,128,112,108,117,99,105,116,108,98,114,104,105,96,103,106,108,98,103,100,88,111,104,111,95,101,113,110,106,97,96,101,103,122,103,116,109,110,101,107,117,123,113,121,101,103,105,102,111,107,117,110,102,112,99,98,91,107,106,104,114,100,103,115,108,93,104,111,102,95,106,118,101,103,100,103,109,113,100,109,108,103,101,103,103,110,96,111,110,104,104,91,101,100,111,109,115,98,103,110,104,109,100,104,106,101,108,96,111,111,104,108,108,105,101,118,95,103,114,103,109,111,114,102,99,110,109,107,107,104,113,98,102,114,108,101,104,107,120,105,113,111,102,94,109,110,103,95,117,119,104,105,104,112,103,102,94,116,105,116,103,104,104,109,107,105,100,106,111,89,103,110,86,120,112,110,90,109,111,98,108,107,98,107,115,86,104,70,103,107,113,111,112,107,100,108,115,111,108,101,105,107,99,108,115,103,100,99,106,105,113,103,113,105,92,104,103,99,104,97,100,91,63,100,91,93,103,108,106,101,101,101,100,103,106,95,105,110,108,100,102,103,97,116,98,102,96,120,115,114,108,105,107,94,104,97,94,114,98,85,111,108,113,105,103,105,108,103,127,96,106,108,112,111,114,116,116,111,105,103,104,104,112,99,109,97,108,105,105,100,87,99,94,108,119,106,98,99,116,108,109,100,102,102,103,104,100,98,103,102,109,111,99,107,112,99,103,104,106,120,107,92,108,102,109,103,102,97,87,104,105,121,104,112,118,109,105,108,109,98,106,88,103,119,106,98,106,111,99,103,110,105,105,98,113,110,104,120,101,111,109,102,107,107,98,94,128,95,102,104,108,87,132,105,96,107,113,108,105,104,106,112,103,96,105,112,113,117,93,109,105,105,105,108,96,111,109,110,104,100,107,111,94,104,119,106,99,100,108,103,116,111,106,111,110,102,106,103,96,103,102,118,104,92,108,110,104,103,106,105,114,107,112,104,99,98,111,105,105,105,104,124,105,116,104,107,102,109,93,116,110,116,95,106,112,102,99,103,108,120,109,111,113,104,106,107,104,119,110,110,100,102,106,113,111,108,108,89,102,101,109,107,105,119,111,115,100,121,102,103,96,99,113,102,102,125,109,112,119,112,112,101,108,98,107,113,119,140,100,106,98,103,113,91,112,104,94,105,108,104,106,107,116,105,114,103,104,106,112,98,82,110,105,108,119,105,108,108,100,106,108,111,105,103,113,109,105,117,104,99,114,98,106,106,113,94,102,107,114,108,100,106,108,117,95,110,109,109,103,115,113,71,109,103,100,99,98,91,106,111,105,96,108,104,103,106,107,95,107,104,109,105,102,101,108,119,122,114,76,109,118,114,100,107,103,104,99,111,96,90,107,105,103,103,126,105,110,86,100,104,107,102,109,119,109,118,117,101,105,92,102,104,102,107,113,105,85,111,98,124,104,106,102,113,93,107,122,94,109,110,101,103,106,105,104,111,104,107,106,95,104,102,100,102,117,103,118,102,95,102,106,105,101,120,112,114,109,106,95,103,119,107,99,113,127,108,111,112,118,102,109,96,106,109,112,109,109,88,114,104,106,100,98,100,113,112,107,110,102,97,109,114,118,109,92,105,95,102,104,103,91,91,103,94,99,111,116,97,108,120,99,86,99,104,93,97,105,104,108,114,99,112,107,105,107,103,95,110,104,108,97,99,95,103,107,99,101,113,100,112,100,101,93,105,112,103,111,99,102,123,97,104,95,94,98,98,95,98,97,99,102,96,117,96,106,113,102,99,98,101,103,115,90,91,103,106,92,99,88,98, +514.09967,109,102,106,101,96,112,116,103,99,92,105,102,105,104,104,102,98,75,102,102,114,105,91,115,106,106,105,100,98,107,106,102,101,111,108,98,91,105,106,109,99,114,108,96,102,109,105,100,103,105,99,110,103,111,109,98,97,104,97,105,114,107,100,88,110,99,100,99,99,105,117,116,117,91,105,106,104,109,104,99,105,112,101,111,102,90,101,112,103,101,113,116,114,97,117,106,99,97,99,95,124,108,94,93,111,104,99,134,94,98,109,96,103,95,103,106,103,102,100,109,104,110,119,95,106,106,119,112,120,110,99,103,99,132,100,103,105,100,103,104,105,115,101,107,105,107,100,105,106,88,106,96,104,105,94,100,114,101,116,104,101,112,103,112,113,97,104,116,109,100,111,99,87,96,105,86,84,76,98,106,114,103,108,106,92,106,100,109,103,89,109,100,100,100,100,101,91,99,96,91,100,102,103,113,103,118,111,103,105,100,105,90,116,102,91,106,105,105,101,109,111,112,102,98,94,112,114,103,100,107,105,89,110,104,108,101,89,82,106,98,104,105,98,108,97,112,105,104,121,106,97,112,91,110,98,110,94,102,109,113,95,90,108,104,86,116,94,102,102,96,105,100,93,109,105,115,110,99,101,111,113,101,111,98,98,98,101,112,101,102,100,95,104,96,112,106,103,103,97,107,108,95,113,105,109,109,113,114,108,106,92,99,100,109,104,111,119,101,95,110,108,99,108,102,110,115,114,102,109,104,108,103,103,103,107,110,102,94,102,101,104,99,105,103,106,92,97,107,109,119,111,113,99,115,108,115,117,105,104,94,111,110,105,106,101,79,105,92,109,112,91,97,104,97,104,106,106,108,107,114,101,107,101,101,94,108,107,109,100,114,113,101,101,85,100,98,114,95,96,113,94,102,86,114,121,98,99,97,105,95,94,101,112,99,107,110,103,103,96,96,111,98,109,104,113,103,107,101,104,112,99,110,102,100,107,108,98,106,97,105,110,113,108,112,92,99,107,104,99,89,108,105,117,125,110,114,106,103,115,105,103,103,99,102,110,141,103,96,108,106,112,115,110,106,99,100,106,100,100,107,104,108,102,105,109,116,107,97,99,113,101,113,104,102,103,107,102,102,107,112,114,105,96,106,115,116,109,115,105,105,112,94,95,120,99,103,116,102,98,114,114,99,107,98,105,108,106,109,106,103,98,127,95,107,102,106,103,113,95,112,107,120,106,104,111,106,101,105,88,103,106,106,112,105,103,105,117,98,108,96,102,106,97,116,103,102,94,98,95,103,98,96,109,109,111,108,111,99,101,122,103,100,103,111,101,118,106,109,99,115,99,105,112,107,108,109,105,105,114,104,99,104,112,111,95,102,113,115,103,107,121,102,105,113,110,102,102,97,112,108,98,91,114,113,129,109,118,110,102,95,83,112,102,119,106,106,103,104,97,113,94,113,106,108,97,109,106,104,103,109,123,100,104,106,118,115,117,113,99,94,117,111,108,101,99,104,104,99,112,106,105,102,105,110,104,112,100,110,106,102,99,103,109,103,108,104,117,118,95,116,102,104,101,117,106,110,103,108,98,98,100,97,117,107,86,110,97,110,102,105,112,106,106,102,105,107,105,105,107,87,108,98,99,120,102,104,103,114,102,108,108,93,98,100,106,117,102,109,109,106,111,105,91,118,106,112,110,104,98,110,109,94,102,90,108,101,104,105,112,105,112,112,120,119,97,107,112,106,111,108,102,92,106,99,112,104,102,106,106,108,94,89,91,114,104,108,106,103,104,109,110,95,95,104,110,105,105,111,102,99,100,107,104,107,95,106,100,112,109,108,106,110,108,110,108,110,107,103,97,119,115,113,132,116,108,110,111,105,117,109,107,119,100,110,107,101,123,108,102,107,99,110,104,99,103,93,103,108,107,84,113,100,105,110,86,97,109,96,102,109,108,98,117,113,118,99,108,109,112,96,113,106,103,111,103,110,104,110,111,106,110,105,103,116,116,99,96,120,97,115,108,106,105,103,121,94,92,105,113,105,107,112,114,103,110,113,99,93,97,100,101,101,115,97,104,92,99,104,106,86,118,94,106,110,117,110,108,99,92,110,102,119,100,115,118,70,96,111,97,108,102,89,99,110,98,102,103,103,98,103,114,111,113,104,107,105,113,109,107,110,109,121,100,109,122,106,101,110,109,100,92,102,93,111,115,90,102,101,98,97,112,118,107,109,104,85,108,90,109,95,104,112,110,91,101,99,95,98,99,114,105,109,105,93,99,114,105,96,90,103,94,106,104,98,97,108,105,92,93,107,92,116,96,97,102,120,107,98,102,112,110,106,117,108,117,87,96,117,96,105,104,99,103,114,103,95,109,96,101,113,108,109,99,117,114,112,91,103,119,108,107,107,111,110,101,104,104,104,110,101,100,106,120,119,91,111,107,107,96,97,113,101,102,102,103,110,100,111,126,109,111,109,109,114,96,107,87,95,123,105,105,104,103,103,106,105,94,102,102,112,120,113,108,111,112,102,118,107,108,97,103,112,104,117,103,104,103,103,117,112,115,109,117,105,114,99,112,100,109,96,111,108,101,102,108,115,103,106,116,98,96,103,103,106,114,82,113,104,98,100,106,92,97,105,112,113,117,92,109,97,102,118,108,102,105,100,116,104,114,107,111,100,94,108,107,107,105,101,99,105,103,106,107,120,118,107,107,97,111,112,108,105,119,105,67,110,114,109,101,105,111,108,97,107,110,112,109,110,110,111,120,106,102,91,99,109,105,113,103,105,100,93,99,111,111,116,108,99,105,102,81,98,124,98,110,102,115,104,103,101,94,109,107,111,96,105,91,104,83,108,118,102,97,104,104,111,106,109,99,116,105,95,117,119,113,122,99,108,104,103,107,106,91,115,102,111,99,112,103,104,111,106,101,104,112,99,100,124,103,106,91,107,93,105,106,117,102,104,108,103,93,101,108,103,103,113,106,106,113,94,111,103,100,97,119,107,104,113,110,109,115,107,103,110,109,109,108,110,102,115,108,111,106,96,96,116,100,99,110,111,100,104,113,113,103,106,111,94,111,117,121,109,117,105,109,102,106,102,100,100,116,94,102,110,107,107,106,105,103,111,105,101,104,110,102,93,108,102,102,103,110,105,101,116,110,110,104,108,109,105,87,106,96,109,105,100,113,113,97,107,98,110,100,104,97,96,103,103,107,109,103,109,102,104,101,75,111,100,113,103,100,112,110,116,117,109,105,121,115,104,105,105,115,94,99,98,95,110,106,105,106,96,107,102,102,103,114,103,102,107,107,105,108,93,103,110,109,102,112,94,105,109,98,98,108,111,100,108,117,109,109,99,114,101,80,104,115,101,118,103,114,97,107,107,100,115,105,102,89,98,96,106,92,106,111,94,104,101,108,78,100,81,105,111,102,107,101,107,99,104,102,104,101,100,102,105,108,92,107,106,106,116,104,105,106,105,106,107,107,102,105,104,97,104,106,108,101,107,119,115,107,106,113,99,97,104,114,117,105,111,128,113,99,104,102,109,106,110,108,110,106,106,107,92,108,106,101,96,102,99,114,106,119,112,106,101,105,101,109,101,98,106,94,98,111,100,106,94,110,111,98,102,102,105,105,99,114,104,104,107,113,106,99,106,96,112,101,108,99,105,103,109,89,112,105,108,105,110,115,93,108,105,97,109,90,102,113,109,110,113,83,102,107,106,103,112,111,106,99,109,102,112,120,94,110,111,109,101,108,111,103,110,107,102,107,115,104,105,106,98,113,110,101,104,107,117,103,106,107,107,111,110,108,94,115,102,110,101,105,95,94,113,105,103,99,116,120,106,97,109,107,107,101,104,106,113,107,94,110,103,111,109,103,99,98,102,96,103,96,98,98,94,108,111,102,102,104,112,105,104,100,108,118,106,107,109,114,96,107,96,105,99,102,110,109,113,108,88,102,106,106,99,96,115,119,103,118,119,102,105,108,111,107,102,107,87,117,102,111,120,107,99,115,122,107,103,111,89,109,101,108,102,103,96,105,103,102,100,100,105,108,89,108,98,102,114,105,110,110,101,105,114,111,120,106,110,98,111,89,108,95,102,104,103,116,114,111,104,114,101,107,101,93,105,103,106,106,103,104,115,97,102,99,104,96,99,107,103,94,102,107,104,98,114,93,125,101,123,114,106,107,103,110,105,114,103,106,109,99,104,112,101,98,104,100,107,114,94,105,103,97,109,105,103,104,105,98,103,104,109,107,110,112,109,102,97,98,85,107,109,106,124,99,135,102,99,97,104,99,115,102,96,114,112,112,103,100,107,105,112,108,111,118,99,101,105,109,116,107,98,102,113,102,99,96,105,121,103,106,105,94,114,108,102,112,105,111,117,103,112,113,103,98,101,102,120,103,96,106,107,127,120,104,95,107,101,106,104,109,104,113,108,105,113,104,103,96,99,117,101,98,100,103,106,104,99,103,109,84,105,97,101,108,117,109,87,114,99,106,96,111,104,104,110,102,106,103,101,89,104,110,98,105,98,111,113,92,112,91,107,106,109,110,95,87,106,113,104,117,125,108,113,116,108,106,92,105,109,109,101,118,100,108,99,102,97,114,105,104,94,103,108,95,109,105,113,118,123,107,118,110,100,103,108,96,103,104,99,103,103,95,94,92,102,109,111,103,108,105,93,104,102,96,112,105,92,104,90,100,99,100,97,101,103,105,109,99,90,107,104,115,96,105,72,99,99,101,114,103,101,101,105,101,94,99,108,91,108,105,108,102,99,96,104,119,113,92,113,102,112,102,109,107,102,102,111,102,99,100,104,109,98,104,112,102,108,114,115,96,110,98,96,101,89,109,104,108,110,104,101,120,117,100,112,98,101,104,95,95,103, +514.24036,112,106,104,103,133,110,106,97,104,114,109,93,101,106,107,108,99,93,101,101,102,93,105,95,106,103,116,112,108,97,105,111,100,93,100,108,91,101,101,102,110,113,104,113,121,94,100,106,102,106,99,110,105,109,97,98,92,117,132,99,106,97,107,113,92,101,104,104,90,92,108,87,103,103,100,101,101,125,104,106,104,95,92,116,90,115,101,108,92,75,79,97,104,114,95,101,105,99,106,120,98,106,101,103,98,94,100,97,110,109,96,117,103,98,108,100,106,103,106,80,97,100,94,109,113,106,102,109,109,116,127,113,101,105,110,97,106,113,101,109,108,105,102,106,107,93,113,101,105,112,95,95,114,97,101,90,107,105,97,104,103,101,104,94,107,104,92,110,129,99,100,104,106,112,106,100,93,76,106,102,108,94,104,103,95,114,94,68,119,106,102,95,89,109,103,100,100,110,96,87,100,113,94,98,95,94,95,105,102,129,102,103,111,106,104,102,101,102,104,89,105,106,93,96,106,110,117,105,104,110,96,112,104,109,105,108,87,112,97,108,102,101,123,100,108,98,96,103,103,102,99,105,90,105,73,97,103,98,109,109,106,105,110,98,97,99,102,104,105,98,97,105,107,112,107,104,87,107,112,101,107,107,105,93,109,99,96,114,103,103,96,97,106,109,104,95,104,125,105,99,96,107,106,127,100,85,104,115,101,102,98,109,73,99,69,96,114,110,106,107,95,101,98,104,116,98,112,109,114,102,101,90,110,98,117,102,106,102,90,115,94,108,99,106,108,96,104,92,110,101,101,95,90,100,104,99,97,100,101,105,113,103,117,102,109,86,104,99,104,104,102,94,96,100,97,102,99,103,117,100,94,105,113,95,100,97,102,110,105,106,103,90,103,100,104,111,109,104,100,107,104,110,100,98,107,107,99,98,109,105,99,91,111,104,107,91,119,99,104,97,104,98,113,106,101,94,101,91,120,108,95,99,115,99,100,94,95,108,104,92,103,92,104,116,89,110,101,107,109,117,99,103,98,110,98,112,107,96,110,96,111,99,100,114,110,109,108,97,101,122,97,97,109,111,99,105,96,99,101,104,101,114,123,104,95,104,104,95,131,104,99,113,108,99,99,117,108,102,111,93,120,106,102,115,93,118,106,106,93,102,107,103,80,97,100,128,110,105,107,108,100,116,112,103,100,111,109,102,106,94,94,96,110,98,108,109,98,108,100,105,108,126,104,98,101,88,105,106,100,103,119,106,103,103,120,99,104,105,111,102,106,101,103,108,111,101,105,95,107,105,96,105,103,98,104,108,101,90,100,81,109,95,110,99,137,102,105,100,97,101,104,115,96,92,102,110,103,101,118,89,109,114,105,97,99,103,99,95,116,112,105,120,104,103,98,111,106,95,116,102,104,108,103,99,108,97,94,100,95,89,105,96,112,86,87,95,119,99,101,110,115,105,91,109,107,94,99,95,98,104,97,100,120,108,109,98,98,107,104,106,111,123,104,103,101,90,105,99,103,106,101,103,85,114,101,103,109,104,96,112,106,106,84,92,109,102,109,95,98,110,103,125,107,101,102,99,116,95,103,98,103,93,102,99,87,109,87,106,103,102,110,104,110,104,92,104,118,102,93,99,100,104,97,105,94,97,100,111,111,110,107,99,75,106,98,94,107,94,109,116,103,108,100,104,99,92,114,115,104,112,106,100,102,101,88,109,94,106,95,111,96,96,99,102,97,102,99,102,105,98,91,107,102,108,94,116,101,98,101,109,101,111,104,106,110,114,111,99,105,105,117,117,112,91,99,104,104,102,97,115,100,115,65,108,75,100,129,98,95,101,106,108,100,94,108,109,114,100,105,107,112,95,109,100,108,92,106,107,116,84,109,114,102,101,103,105,110,107,117,100,98,106,90,108,101,105,98,90,109,99,102,99,90,104,99,90,100,110,72,105,101,95,96,115,93,96,109,120,113,113,112,103,101,112,103,116,92,86,95,110,99,101,96,101,94,102,99,104,110,98,113,103,106,102,116,95,95,110,103,104,101,114,91,105,113,109,109,94,97,112,110,110,107,97,104,106,104,105,103,95,108,115,103,102,106,102,100,116,104,92,108,111,98,105,92,99,98,104,121,94,90,104,112,106,110,115,113,96,97,111,101,109,112,111,109,119,109,102,98,104,101,115,93,107,98,103,99,97,106,106,101,104,99,112,110,102,103,95,103,116,104,109,112,89,90,106,101,114,99,110,114,109,102,103,104,96,92,113,104,102,103,96,106,100,102,108,114,101,105,96,78,116,96,102,104,116,104,92,96,106,103,100,112,99,99,106,105,103,102,100,109,109,100,97,100,97,95,117,108,109,102,98,104,96,74,104,99,139,102,84,104,111,111,100,90,99,111,105,111,101,101,114,101,107,99,98,104,105,103,93,111,114,105,110,103,109,105,103,99,99,112,88,77,99,105,99,104,103,108,110,110,101,116,100,95,109,105,99,103,110,96,105,91,113,111,116,100,94,121,106,116,114,104,106,101,112,96,109,108,103,98,117,100,107,102,103,106,110,113,101,110,102,100,103,104,118,112,90,95,94,110,97,96,108,93,108,114,95,95,108,103,104,116,96,111,107,115,109,104,112,88,99,113,94,101,102,101,97,104,95,112,102,110,95,90,114,115,105,117,108,94,96,97,106,104,100,100,108,101,99,99,112,105,106,116,107,104,84,97,105,99,99,98,104,98,100,98,113,91,98,83,95,103,103,107,102,107,107,102,104,115,103,100,113,105,109,99,111,99,104,115,114,99,109,112,103,97,96,102,102,122,106,101,114,100,99,103,105,114,105,97,98,97,106,94,89,99,106,98,118,108,84,101,99,108,91,94,121,98,102,114,107,103,104,108,109,104,102,92,95,112,102,120,103,107,103,100,105,111,92,104,102,96,107,103,112,117,107,111,111,104,100,102,107,105,97,100,123,102,98,105,94,102,100,111,104,92,96,83,107,101,109,112,102,103,100,98,111,97,108,102,103,108,103,115,104,103,111,103,103,100,99,106,102,108,113,103,98,109,73,104,102,102,103,105,96,108,118,102,99,100,107,99,92,112,96,99,113,97,105,99,97,103,107,100,96,92,112,85,105,113,108,99,105,101,86,90,100,88,107,103,106,122,104,104,92,108,97,102,106,101,100,89,108,99,105,101,90,97,87,98,118,103,96,95,94,120,99,101,103,98,137,101,105,91,108,103,103,111,112,102,104,124,104,101,106,100,110,88,109,100,109,112,104,107,100,87,109,102,98,100,96,107,112,96,100,98,104,118,105,96,106,108,114,119,94,105,94,116,106,101,106,109,108,94,110,102,94,118,108,99,99,107,117,101,114,101,93,115,97,75,92,102,112,98,102,94,100,109,96,102,100,102,100,104,91,102,102,112,99,117,101,96,98,101,93,103,99,98,101,102,107,102,100,96,98,104,140,111,112,85,107,109,103,103,114,107,104,112,109,103,113,98,96,114,101,100,102,89,97,125,90,92,113,118,99,107,115,105,106,102,102,99,106,110,113,103,101,97,97,106,106,104,115,102,92,97,95,95,98,103,98,105,102,94,93,105,98,103,106,96,97,105,97,98,91,112,105,101,102,106,104,110,108,83,98,103,96,96,115,90,104,111,94,100,99,102,113,103,96,112,109,85,99,97,104,103,104,117,104,113,99,113,108,85,112,103,106,102,107,88,100,104,90,107,102,101,109,95,104,99,110,97,105,101,100,119,113,114,103,110,116,101,106,122,100,108,106,112,106,96,67,100,128,101,99,99,110,114,102,110,74,112,92,99,92,113,97,91,101,95,106,102,98,102,102,99,107,99,114,109,103,69,116,111,114,96,93,101,95,104,96,110,111,102,92,111,100,120,101,106,99,111,98,110,102,106,109,102,107,92,85,101,93,93,107,105,100,100,102,121,103,105,106,107,76,102,108,94,93,112,129,99,101,106,80,102,95,113,112,106,104,104,108,101,121,108,107,93,103,111,100,101,102,105,97,113,93,97,97,99,103,92,99,107,121,98,105,99,98,99,106,112,98,107,104,109,110,94,93,104,100,105,101,95,102,107,107,90,114,103,87,103,110,108,97,105,106,117,93,112,101,125,108,108,108,101,108,108,103,107,106,99,109,108,113,113,104,104,110,105,101,95,109,104,108,101,109,110,110,108,103,124,99,105,106,105,102,94,99,115,105,109,102,96,102,111,103,113,104,105,98,106,117,103,103,90,102,101,104,88,99,107,116,103,92,101,98,90,100,87,124,100,102,98,100,97,96,98,112,104,82,112,107,112,108,104,110,111,99,104,95,106,94,108,71,111,99,105,105,103,86,116,103,108,108,105,105,105,101,108,117,103,108,99,109,105,108,113,97,98,95,109,101,104,116,113,98,100,89,98,108,99,101,108,100,108,92,94,101,111,110,104,99,100,113,94,113,103,101,98,100,102,108,95,99,102,118,97,102,97,99,104,106,101,100,93,105,110,105,104,98,95,105,103,97,96,119,87,112,109,96,109,105,112,87,101,105,96,99,84,105,101,106,91,103,107,90,91,99,90,87,91,107,101,115,108,109,98,97,112,96,99,106,103,101,94,99,107,95,102,88,101,94,99,102,101,102,106,101,101,108,115,119,111,104,87,105,101,101,103,103,113,103,119,101,112,103,89,87,98,95,108,120,90,106,100,98,111,101,95,90,98,113,105,98,103,99,97,101,110,90,99,100,101,98,98,105,109,101,116,106,118,94,107,106,107,106,108,86,100,103,103,104,109,69,105,115,95,94,117,102,86,95,107,119,93,105,112,104,97,103,103,105,99,100,91,108,98,117,90,103,107,90,102,105,108,120,105,88,109,89,93,99,99,94,105,95,110,95, +514.38104,100,93,104,88,87,101,95,105,89,99,101,105,98,97,98,101,101,111,113,83,102,112,88,103,95,109,105,96,105,106,107,93,99,109,95,95,106,91,103,96,107,107,90,92,97,102,107,101,102,101,109,100,105,110,98,105,95,86,108,105,114,108,113,109,99,116,100,104,92,101,103,116,91,98,106,99,106,85,101,96,94,127,94,101,100,85,94,118,90,104,97,111,113,101,101,102,94,103,88,110,96,97,100,92,98,103,104,106,100,93,91,90,101,108,105,107,104,110,108,91,110,103,100,107,104,114,107,103,105,107,102,110,114,120,111,101,102,98,99,95,96,104,102,104,103,101,92,105,86,105,100,99,107,96,90,100,99,106,99,99,95,103,112,104,109,103,101,113,101,99,118,105,105,96,130,109,105,99,107,104,104,103,103,102,95,101,104,99,101,100,100,103,94,77,90,102,98,101,94,99,91,104,103,114,101,108,109,103,114,110,86,95,103,107,97,103,118,108,91,101,109,102,102,110,94,102,90,90,99,118,101,103,109,101,100,94,109,117,101,110,97,117,108,102,90,101,104,112,104,125,96,103,96,108,113,97,99,109,106,101,95,108,102,89,92,101,103,100,103,106,111,108,116,103,110,102,101,106,106,116,100,94,100,112,101,105,97,101,107,111,102,111,104,90,103,122,99,98,103,102,111,99,100,114,99,112,98,100,115,83,98,97,105,95,99,106,105,81,104,102,101,107,107,105,106,99,99,99,112,120,108,110,104,101,98,108,96,108,105,80,108,104,116,92,115,102,103,106,109,105,106,96,98,104,99,103,99,115,102,108,94,105,102,97,96,107,110,103,118,108,98,106,109,98,114,99,109,91,107,108,108,112,102,105,108,97,102,101,94,93,114,75,98,104,113,100,105,99,108,107,106,100,86,110,82,99,100,117,105,95,106,100,103,108,111,105,110,116,111,100,96,90,102,93,95,96,95,107,99,103,99,101,95,109,101,104,110,108,117,112,108,119,109,113,93,128,102,98,91,102,100,105,94,111,106,102,105,113,114,105,98,92,106,107,96,102,94,97,98,107,113,107,108,103,98,93,95,115,90,114,88,106,110,105,109,108,110,104,114,103,101,113,100,104,98,107,99,110,110,101,99,102,112,106,118,104,100,92,111,119,111,94,97,104,102,101,115,113,111,106,86,101,103,113,103,92,108,111,98,111,95,105,106,97,104,106,109,93,111,101,104,120,97,110,101,111,117,99,108,105,105,106,99,115,103,100,103,94,96,97,110,109,96,98,97,112,109,101,103,107,98,99,105,98,95,114,99,88,109,107,108,105,100,110,95,102,107,113,108,99,112,110,103,106,115,108,106,108,110,111,105,108,109,103,103,109,104,105,102,109,95,101,101,106,110,103,102,110,101,105,111,102,109,96,104,105,97,84,97,88,103,99,95,103,90,95,92,93,103,100,111,106,104,116,103,99,99,101,105,104,116,104,115,99,118,103,106,105,95,90,108,114,99,107,100,107,102,89,109,91,106,103,110,117,95,108,112,99,102,92,99,110,128,95,109,96,101,106,108,100,116,105,91,108,101,99,101,114,108,76,101,100,106,90,125,109,102,105,107,102,113,111,110,122,105,99,97,102,104,87,98,99,100,117,93,95,94,105,101,122,118,99,99,136,105,99,99,89,109,102,111,102,111,104,107,90,102,103,105,104,104,92,90,97,104,99,104,106,112,104,70,109,84,78,91,94,94,101,96,99,116,103,109,95,98,109,94,104,105,111,96,98,103,109,114,96,118,108,100,105,105,100,101,114,101,101,103,96,108,100,108,99,97,94,109,76,94,104,101,99,113,98,94,79,116,92,103,102,103,91,100,120,99,103,95,99,107,119,99,103,105,107,102,98,114,102,112,102,108,111,108,105,106,93,95,98,96,115,101,110,98,103,101,106,101,109,98,108,97,98,99,96,99,106,98,97,92,106,98,106,77,113,105,101,99,99,100,101,91,107,93,100,98,121,109,102,97,109,98,83,96,112,80,111,103,104,111,108,110,102,109,106,100,116,104,110,100,96,101,101,102,108,106,103,105,101,106,104,104,91,106,121,105,105,117,97,106,94,116,111,108,96,111,97,104,103,92,108,94,100,100,105,99,108,108,93,94,108,108,103,108,116,97,100,109,124,105,103,103,99,100,114,107,104,102,104,100,94,111,104,100,115,90,104,112,107,109,110,111,99,105,114,107,103,112,104,90,103,108,90,99,94,104,108,107,105,100,104,103,88,108,98,105,99,110,111,104,115,108,105,103,114,104,89,111,101,110,93,103,96,118,101,117,97,100,93,101,101,109,114,108,107,115,86,106,96,114,105,101,109,97,106,105,111,102,100,110,103,96,107,101,101,110,98,101,122,113,99,110,108,103,105,94,98,102,108,95,100,92,102,100,111,117,94,104,95,102,103,105,95,106,102,101,109,110,130,101,105,115,113,106,107,107,102,113,110,107,92,83,112,106,106,114,102,120,102,113,98,107,116,97,112,103,107,99,98,76,91,87,97,92,103,98,104,106,103,108,107,99,103,107,115,102,101,71,107,108,113,111,96,87,93,84,101,105,110,99,94,104,74,109,107,110,106,106,98,107,91,105,103,107,88,111,86,103,111,103,81,92,106,98,102,102,115,120,111,113,109,106,104,112,106,97,110,111,107,100,115,97,111,98,107,112,104,93,103,109,88,108,99,115,115,99,98,99,107,112,112,102,110,100,106,105,99,109,101,94,108,105,101,112,94,96,99,102,106,101,96,107,112,107,108,97,112,110,99,102,106,109,123,113,104,104,101,117,107,106,89,107,99,112,119,104,121,105,102,99,115,109,111,101,97,103,100,125,108,104,101,114,104,108,113,109,95,118,102,109,112,109,111,114,112,106,113,106,104,96,103,100,95,106,107,113,100,92,104,108,92,102,110,117,111,117,113,110,96,108,102,99,112,107,98,109,107,106,99,95,102,103,109,98,103,107,100,107,104,99,107,106,98,108,95,106,113,108,114,97,98,97,107,108,109,110,94,113,106,103,104,117,104,99,104,104,103,100,105,108,99,104,102,77,106,111,72,104,100,105,108,110,94,103,121,101,95,113,103,114,103,115,110,114,107,108,105,106,94,109,99,103,110,68,120,109,105,100,101,100,97,110,85,106,102,106,103,91,106,116,112,112,98,87,104,98,103,95,111,106,92,126,111,114,107,91,102,101,101,105,102,109,100,103,109,102,120,109,96,103,104,102,108,87,101,97,103,98,91,106,109,104,97,111,101,109,114,91,111,108,105,110,106,108,113,94,101,112,114,105,106,98,107,96,106,107,105,98,106,113,120,92,121,99,90,96,98,92,103,113,106,98,98,111,112,91,98,103,96,71,104,121,120,91,105,106,100,97,98,105,115,95,120,109,100,106,111,112,100,111,109,100,112,111,100,98,104,101,105,104,88,100,92,117,107,102,108,107,101,107,89,106,104,107,109,108,101,103,105,103,108,103,108,121,108,110,97,92,100,101,113,104,112,106,93,94,110,109,112,110,102,102,110,100,93,105,91,99,101,102,111,99,105,85,100,101,96,112,104,115,100,108,114,108,108,111,102,94,109,107,106,104,104,91,101,111,106,111,99,103,104,103,96,106,88,114,102,90,134,73,105,104,108,100,110,99,109,97,104,103,113,102,136,105,99,87,93,100,109,109,108,106,102,104,105,109,103,109,93,110,112,95,110,98,100,101,101,100,104,103,123,105,113,94,98,95,106,107,108,95,98,108,104,101,121,95,102,101,97,114,99,107,106,111,96,109,94,113,105,105,108,103,100,94,112,106,91,96,108,124,96,106,99,96,109,97,99,107,106,113,103,107,109,91,102,103,103,92,97,105,101,95,99,109,99,105,102,107,106,103,97,120,104,101,105,102,101,108,115,106,110,104,109,109,105,100,99,108,103,106,101,110,102,106,104,101,98,102,100,113,109,99,113,98,110,103,106,120,111,105,104,105,111,102,99,98,104,98,107,109,97,120,97,105,101,97,109,109,114,104,95,109,112,99,107,101,94,78,110,106,99,108,95,104,112,102,107,108,98,98,107,97,96,109,97,106,102,108,100,100,116,101,102,104,99,102,107,81,97,109,80,123,103,103,97,102,103,101,112,97,120,101,96,102,99,107,107,109,102,112,117,107,103,104,100,108,99,112,105,104,107,112,115,106,97,95,96,105,109,111,97,101,104,91,98,95,111,103,107,104,85,97,94,99,117,111,104,103,99,108,104,94,121,107,101,96,113,109,103,112,97,106,113,96,99,112,111,104,104,107,110,104,113,113,92,106,99,105,133,98,109,112,111,107,104,110,100,110,99,97,104,114,95,116,110,116,98,98,89,117,110,108,100,107,109,95,103,102,112,105,98,107,92,106,108,96,110,105,109,95,116,94,103,104,109,93,98,103,106,106,105,109,97,99,105,105,99,106,109,105,113,114,125,97,93,96,111,102,99,100,110,99,90,90,96,111,117,99,101,95,107,109,97,98,93,98,99,95,103,110,110,105,102,102,108,119,104,109,103,102,102,94,95,103,105,110,114,106,101,113,104,102,89,103,96,106,107,105,117,106,117,108,92,104,110,101,98,102,96,100,106,111,118,101,104,107,93,92,83,96,104,106,103,96,98,111,107,109,103,114,96,85,98,105,114,111,108,81,102,102,87,94,95,90,95,94,107,103,107,106,99,110,104,103,107,109,118,117,97,98,95,105,94,104,108,106,102,102,100,101,104,105,107,97,90,97,101,98,99,104,110,109,106,105,110,108,122,113,98,108,110,103,99,112,95,128,93,100,91,109,112,96,95,100,97,101,97,94,91,93,94,102,101,119,98,106,113,119,108,106,103,100,92, +514.52173,108,109,97,99,92,107,121,92,114,97,115,112,107,101,100,94,84,108,108,107,102,104,96,100,105,117,94,113,118,113,101,104,98,83,106,114,120,108,83,102,101,97,70,116,100,94,102,93,94,101,95,122,105,100,96,81,86,124,107,105,106,104,92,113,102,97,91,125,94,102,114,100,88,100,103,111,108,92,94,102,99,116,101,123,94,105,89,119,109,108,113,104,102,109,93,89,117,113,94,95,82,93,92,100,90,95,102,96,98,112,94,93,105,110,102,106,94,107,94,103,100,74,115,116,109,102,90,105,121,106,95,108,105,109,111,99,110,104,84,101,111,115,98,102,97,79,104,108,101,111,108,97,107,95,96,87,99,105,103,106,92,107,101,86,105,102,114,99,91,104,113,106,102,99,102,98,112,102,111,106,107,109,102,103,108,109,98,105,104,90,94,100,124,105,100,109,97,105,109,116,118,112,97,98,93,98,112,100,106,113,110,105,109,103,102,99,104,106,114,84,96,102,104,102,94,94,109,105,110,98,110,102,109,100,116,117,104,102,96,107,91,88,116,111,113,105,113,104,108,103,99,108,122,111,91,112,107,107,120,95,101,103,98,109,92,108,109,99,99,102,104,115,109,94,105,121,112,104,103,101,103,96,104,108,95,105,90,110,115,104,109,103,114,103,106,107,102,97,100,100,98,101,107,108,98,104,101,104,111,101,94,116,100,104,100,101,105,93,102,108,112,100,107,90,105,117,102,103,106,114,120,90,98,103,108,130,110,106,103,104,111,107,104,102,102,107,95,113,91,100,100,92,106,105,106,100,104,106,96,108,96,101,104,103,112,91,103,105,107,113,102,106,114,117,112,105,112,101,111,106,114,120,96,93,101,116,106,91,113,95,116,107,107,107,102,111,96,98,103,108,103,102,105,90,104,100,112,95,103,105,100,99,100,105,120,100,91,95,118,100,107,90,96,107,108,110,108,116,103,94,105,96,96,104,99,113,103,85,106,94,112,106,106,102,101,106,100,105,91,100,87,100,90,121,78,91,101,102,105,98,107,103,95,109,110,107,109,99,104,115,112,88,121,101,103,104,86,112,104,102,93,107,108,110,92,105,105,107,104,99,100,111,113,100,104,104,98,106,99,112,106,103,82,100,96,118,106,98,100,107,73,100,102,109,79,103,109,101,96,101,103,94,103,104,110,104,113,103,114,123,103,114,101,109,103,100,111,94,106,103,103,102,106,86,111,102,92,105,109,112,100,110,101,104,98,99,94,112,89,113,107,99,103,115,109,108,99,108,103,95,113,108,108,94,94,109,104,102,102,103,109,109,105,119,100,104,120,90,104,92,109,99,94,103,93,102,88,100,110,104,100,110,93,88,105,97,108,113,99,107,99,106,102,104,105,105,110,111,98,109,94,102,109,100,107,96,97,109,104,104,108,114,102,115,107,112,100,100,103,102,108,116,107,103,108,83,104,104,103,113,105,107,110,109,103,107,110,105,102,114,107,108,102,104,104,122,109,112,116,105,109,108,96,113,92,112,105,110,107,99,103,102,86,106,104,98,103,107,110,102,107,100,107,109,103,112,106,100,123,106,97,103,102,95,117,108,107,105,101,95,105,94,114,99,106,102,97,102,100,105,121,102,101,103,95,104,113,105,117,94,100,100,108,102,99,95,108,97,87,107,119,103,94,103,100,101,103,104,106,111,106,105,90,107,111,104,90,110,108,109,111,94,67,89,99,102,92,107,116,105,100,108,95,113,110,114,109,110,108,107,97,100,114,99,102,102,112,103,104,108,85,101,114,104,112,110,106,102,107,112,95,117,99,97,103,99,103,114,103,112,117,99,101,93,87,101,109,111,104,105,101,104,103,110,109,130,101,100,106,117,103,105,114,100,99,88,110,107,112,110,95,111,106,91,107,108,106,99,115,96,102,116,114,111,97,111,117,99,102,105,120,112,110,105,108,102,104,113,113,101,99,111,104,114,128,110,93,107,95,125,116,108,109,107,101,106,101,110,102,99,108,108,106,103,103,104,96,110,111,105,100,118,108,100,104,113,103,98,104,114,102,106,112,111,98,103,107,104,116,112,113,109,101,111,101,103,91,101,115,110,113,99,103,120,83,111,106,115,105,106,94,106,110,110,90,113,101,113,104,107,117,105,110,101,108,112,95,114,99,102,105,117,120,101,101,97,108,100,97,114,101,106,99,107,103,95,112,116,105,105,110,109,114,107,99,102,108,107,100,106,105,100,98,103,95,105,105,113,106,102,96,101,99,109,102,98,98,91,92,118,93,105,113,123,98,101,109,102,119,94,112,102,98,100,99,115,108,97,111,105,113,103,110,96,114,100,96,108,102,116,109,118,110,106,99,117,103,104,110,126,106,113,116,95,106,95,101,100,103,108,107,109,105,111,112,118,110,112,95,96,100,101,92,110,103,107,105,109,84,96,107,109,110,104,103,104,103,104,110,98,114,116,103,102,104,90,109,107,108,106,117,100,123,109,97,107,110,102,109,99,112,114,98,109,107,104,102,108,103,105,101,112,105,93,103,116,102,115,124,100,111,117,106,88,114,108,95,97,88,90,106,100,105,105,120,98,103,104,104,106,97,103,92,120,98,109,89,100,98,118,94,82,113,102,104,105,93,96,102,99,108,111,114,104,101,103,95,109,117,99,104,109,104,113,113,106,113,102,92,115,89,106,101,103,103,107,99,101,92,101,92,96,105,95,106,106,110,104,111,98,98,100,108,120,108,117,101,124,110,102,117,122,102,100,103,111,97,111,111,109,101,114,105,109,110,116,104,110,113,114,100,109,109,99,114,108,116,100,104,104,107,110,108,95,105,95,104,105,105,103,102,100,108,108,141,114,102,105,106,106,107,97,99,107,102,104,110,110,94,111,94,102,111,107,112,107,109,113,108,109,105,113,98,105,107,107,106,100,113,136,106,95,110,109,100,110,105,101,98,106,101,106,118,95,109,102,102,90,103,97,112,108,90,98,97,101,106,104,104,111,113,96,91,97,110,103,101,105,104,107,102,93,99,106,106,109,112,118,104,102,98,133,113,97,97,109,110,110,103,108,114,112,104,106,98,97,74,112,111,100,111,110,104,111,87,102,113,110,106,104,96,99,111,101,108,97,109,102,113,108,93,101,113,110,103,120,99,112,117,99,127,113,95,106,97,100,105,106,112,98,110,100,113,98,103,94,99,95,97,111,106,104,88,100,100,95,112,100,112,107,99,102,105,118,107,90,113,107,105,104,113,89,127,102,108,109,91,113,114,94,106,101,108,110,97,106,113,106,106,97,109,107,106,100,109,103,101,105,107,110,97,95,97,110,106,102,111,110,107,102,101,108,104,108,96,99,104,88,116,100,103,105,106,107,102,109,113,113,97,106,87,102,94,110,106,100,99,106,106,107,117,100,104,98,101,111,112,101,98,100,109,96,100,94,106,101,106,98,97,94,107,108,104,105,111,100,92,106,107,104,116,102,102,106,107,107,99,102,110,101,106,102,101,112,100,99,104,110,109,103,103,121,104,95,108,101,97,111,96,101,113,95,113,106,105,106,122,116,99,109,112,106,100,106,105,104,111,101,108,113,101,112,101,99,105,99,113,111,93,99,91,103,113,107,98,114,104,91,112,108,96,99,98,98,101,105,109,102,89,105,104,112,110,98,93,109,108,106,121,95,105,96,120,107,96,99,107,98,102,93,109,111,102,97,107,102,119,105,110,109,99,113,96,107,101,102,102,108,107,105,113,100,107,110,111,105,117,113,110,110,110,128,98,104,112,103,116,84,95,86,95,100,95,98,104,106,108,92,106,109,100,110,110,99,94,99,109,108,104,99,100,103,105,107,120,106,110,96,100,111,102,95,102,105,110,108,112,107,114,112,109,92,104,110,106,106,102,96,103,105,110,94,116,96,88,101,108,101,105,72,106,109,116,99,105,108,99,99,95,107,104,99,108,115,106,100,94,111,101,121,98,106,102,105,112,114,102,105,112,103,112,99,108,98,101,103,109,103,112,111,103,107,90,100,101,99,97,103,112,103,100,92,109,93,92,102,105,106,86,101,106,106,105,114,103,117,98,112,106,91,96,99,97,106,103,103,85,106,104,108,99,111,108,95,95,99,97,114,103,104,112,94,96,97,110,81,120,98,91,104,101,120,103,109,107,103,126,109,103,110,118,101,105,108,108,105,104,97,105,104,109,92,116,109,102,98,101,97,116,99,111,98,102,109,112,108,94,110,104,102,101,104,104,99,112,102,108,102,103,95,96,90,99,101,105,94,99,87,110,110,110,111,107,100,106,107,106,119,113,96,107,96,106,108,107,106,108,116,103,113,100,108,104,103,98,103,101,105,105,111,92,112,97,107,95,100,113,113,104,100,109,89,100,112,83,114,104,98,99,106,118,121,104,95,106,103,99,101,106,95,120,111,107,115,103,94,95,113,103,100,109,95,95,106,103,88,94,103,95,102,115,116,68,99,108,102,103,116,99,105,110,106,111,113,103,93,116,93,107,102,93,124,116,113,99,100,103,99,109,115,108,93,105,103,112,112,93,109,91,105,100,99,95,109,112,90,103,112,102,104,102,118,104,98,112,84,106,103,109,104,87,116,104,101,108,101,116,125,109,101,97,102,112,97,100,95,116,100,105,103,112,101,101,105,106,107,111,108,99,104,98,103,110,88,98,102,117,80,101,95,96,98,102,94,108,99,112,100,99,96,115,109,99,113,104,101,97,104,105,107,99,114,97,105,98,102,107,109,110,101,98,107,105,94,107,98,104,110,107,106,97,106,94,95,120,113,111,112,106,106,108,111,104,112,93,98,96,109,93,94,105,97,104,66,98,104,102,107,108,108,116,111,103,108,108,101,100,115,82,97, +514.66248,103,112,90,93,122,107,93,96,107,99,115,93,110,95,108,109,102,103,116,98,105,109,91,108,111,116,108,104,116,106,94,93,103,105,106,104,113,97,95,102,101,98,101,114,109,97,112,100,114,113,102,100,94,101,96,112,100,107,100,94,98,101,94,99,108,111,103,110,111,119,105,105,107,107,93,108,106,104,92,96,124,100,93,97,103,109,96,100,104,89,112,109,105,103,94,103,113,104,101,120,103,101,105,106,100,99,102,108,113,108,112,107,104,99,102,105,108,107,117,96,108,95,118,103,101,102,105,98,106,96,108,117,107,101,108,99,104,101,106,102,112,101,116,106,104,77,67,105,108,107,106,104,109,102,108,110,113,101,111,111,91,123,103,95,105,112,107,102,108,108,101,107,96,110,109,107,97,100,93,103,100,100,101,100,100,100,105,113,107,108,111,109,104,103,100,114,99,110,102,111,100,103,105,111,113,103,100,99,103,96,100,110,116,101,108,108,108,101,130,124,99,93,100,98,103,100,101,101,102,109,104,93,98,109,121,112,111,110,109,95,102,99,108,104,104,114,102,110,99,114,103,106,107,98,108,101,94,119,105,101,99,102,115,88,97,100,109,116,109,97,107,111,103,92,111,75,111,114,109,114,103,111,99,111,104,99,108,88,118,101,93,109,117,98,112,114,94,107,116,111,116,109,106,105,100,106,114,113,113,100,96,118,107,106,114,97,106,117,114,95,98,107,107,105,108,102,113,93,113,101,101,99,94,113,109,97,103,99,94,106,102,106,113,109,97,114,105,115,117,107,93,125,92,101,105,123,110,109,108,104,91,102,75,97,101,110,118,111,104,104,111,99,107,102,106,100,109,113,117,106,122,118,105,114,114,109,105,104,102,107,110,112,104,103,95,86,105,116,110,107,102,107,113,113,116,102,107,109,108,95,103,89,106,111,99,103,99,95,104,106,101,110,112,101,99,100,103,101,99,111,106,111,92,118,102,98,103,104,116,104,113,95,99,110,115,97,109,115,105,120,119,97,105,104,107,103,111,109,102,107,117,103,102,99,107,110,95,101,111,105,106,119,97,105,98,103,103,111,100,102,102,107,110,100,94,98,101,102,119,102,99,100,108,116,101,113,105,113,91,99,116,101,106,106,111,117,107,111,103,103,111,113,109,112,103,101,95,118,102,109,100,105,94,107,107,109,111,116,99,104,99,108,102,109,99,110,103,115,89,101,105,97,114,119,115,114,108,99,105,106,108,112,109,95,125,104,100,102,99,103,112,107,113,110,99,103,108,112,94,95,111,100,109,113,101,99,104,96,110,104,111,77,102,106,99,103,103,122,107,105,105,121,103,108,107,107,95,111,123,115,104,118,106,111,104,108,96,112,106,105,92,96,113,104,118,105,101,99,106,103,104,104,108,100,108,130,112,94,110,105,109,101,100,121,104,100,103,103,116,114,109,100,104,102,107,103,117,106,104,108,112,107,104,98,105,116,95,117,104,106,108,107,112,107,88,106,109,93,116,113,117,105,108,112,103,123,107,95,104,109,117,107,107,121,120,105,104,121,108,107,114,118,106,101,100,100,101,106,97,103,96,105,106,108,89,109,107,109,104,110,101,96,105,99,109,105,106,101,104,99,99,103,115,122,102,115,100,96,103,106,112,107,105,103,95,102,117,100,114,112,105,102,106,102,103,109,110,108,109,109,110,104,107,119,109,118,112,96,112,111,105,105,113,82,95,102,99,88,101,103,123,111,107,99,96,73,112,103,116,98,111,112,109,101,109,111,99,117,144,101,109,104,108,110,110,110,106,101,106,110,108,102,101,124,117,95,109,101,109,107,102,107,104,109,108,107,106,108,109,100,107,114,111,108,106,99,112,109,112,95,109,111,104,120,104,109,109,106,114,100,113,106,113,115,84,100,101,103,99,82,103,109,116,119,99,104,112,114,104,108,108,111,111,107,111,101,95,100,111,105,111,113,107,103,106,105,107,112,106,96,106,94,110,109,111,110,105,112,99,123,96,114,112,94,95,105,107,118,110,112,108,113,115,114,107,114,106,103,95,103,107,106,106,102,91,98,99,103,98,95,97,99,99,96,105,84,107,100,104,104,107,117,99,114,99,115,103,104,103,120,97,106,105,105,95,112,104,101,99,101,105,100,100,116,117,112,109,114,99,109,107,106,106,103,110,98,100,106,104,108,102,96,104,103,92,103,113,98,91,98,111,106,133,104,108,117,105,109,103,112,108,102,106,103,103,106,98,108,104,109,103,99,105,103,104,105,122,112,104,97,99,105,119,108,103,94,102,107,101,97,107,104,114,92,87,107,107,89,103,96,115,102,103,116,110,91,94,109,104,117,113,106,99,108,105,105,109,104,106,94,83,115,104,105,103,99,100,105,98,102,106,108,112,98,105,99,107,114,105,104,105,110,96,106,115,119,103,88,95,104,106,115,84,99,107,105,93,92,112,116,101,117,95,102,88,102,108,113,103,107,107,102,106,106,109,107,99,103,114,114,96,120,103,116,107,92,108,106,99,98,103,94,101,101,101,102,105,85,117,93,106,122,108,100,99,110,112,110,106,71,104,103,105,110,93,95,126,107,104,99,111,105,116,103,106,88,104,81,101,93,107,98,79,99,99,107,102,94,117,100,109,107,108,103,110,99,101,110,102,102,103,107,102,113,96,111,114,104,113,108,103,104,103,104,100,104,106,103,108,107,113,103,125,104,106,101,101,115,103,108,117,98,95,95,113,107,106,102,111,79,109,124,99,94,106,96,113,113,108,113,103,119,101,104,107,107,121,106,103,95,113,98,109,96,99,98,107,117,98,100,98,107,98,101,100,106,108,99,98,106,93,100,111,103,107,102,104,94,101,102,109,106,131,104,103,113,102,103,90,106,103,121,117,106,109,108,93,99,99,94,110,109,79,105,101,113,101,106,94,114,88,109,113,120,101,108,110,102,109,106,97,96,96,99,99,91,111,115,99,102,112,119,105,116,94,103,115,111,108,102,97,97,95,117,105,104,103,105,103,100,112,106,103,106,104,98,114,112,113,102,103,102,104,119,83,105,97,96,104,99,105,108,107,102,101,100,95,101,118,98,106,110,104,119,109,102,92,114,114,95,112,99,92,104,91,90,105,96,109,104,100,102,105,113,105,94,105,99,121,104,76,112,93,118,82,104,110,105,121,109,95,103,103,107,107,102,92,96,113,105,96,109,91,94,109,96,94,100,95,99,102,108,113,99,104,111,103,98,109,113,89,115,109,94,105,105,101,114,112,101,68,94,99,97,92,102,105,106,104,101,105,116,126,100,131,88,107,100,106,101,101,109,96,96,107,110,119,101,103,105,91,105,107,99,106,117,115,101,99,102,103,117,104,106,98,114,111,107,103,119,99,116,103,105,100,103,111,97,102,103,113,93,112,112,121,101,99,108,99,88,116,103,104,98,120,99,102,113,101,112,110,94,102,99,110,113,107,112,98,98,113,120,109,99,105,103,97,101,105,107,106,98,101,103,108,98,121,102,102,104,95,105,87,107,109,105,110,110,115,103,111,87,94,94,94,109,107,101,109,92,100,105,96,113,101,97,106,110,108,113,93,101,112,100,109,102,106,105,107,103,103,102,108,106,104,87,98,100,117,105,108,111,111,131,98,108,101,103,98,102,115,116,101,103,112,111,107,107,99,97,110,106,98,107,102,101,100,105,100,100,98,98,113,103,112,97,109,103,108,100,106,112,93,113,113,103,104,107,106,105,110,112,104,102,96,109,108,108,114,93,102,102,96,110,104,98,104,105,100,106,107,104,111,98,91,100,116,109,94,109,91,128,113,103,106,102,105,103,105,123,115,105,96,110,94,100,93,93,104,97,118,108,84,101,105,104,99,106,98,102,95,102,106,110,107,110,107,108,104,96,85,105,100,108,112,116,105,104,103,105,104,113,100,116,97,103,102,108,102,111,69,108,101,103,101,115,116,110,93,106,102,106,97,110,106,109,102,106,120,114,119,106,95,107,113,111,108,109,112,103,106,111,98,102,111,111,89,114,116,92,119,108,112,112,105,115,109,95,114,94,102,107,108,107,104,114,105,112,104,103,113,117,84,97,105,112,106,98,111,86,101,100,103,112,106,113,108,100,113,94,104,98,93,95,117,109,112,100,108,120,108,106,109,106,107,106,108,100,98,111,102,106,108,101,103,116,107,93,101,112,103,97,105,103,110,126,106,108,115,106,96,102,111,100,104,109,96,89,94,110,88,94,112,100,115,95,109,102,100,105,112,103,106,104,108,107,101,105,103,117,110,105,104,102,104,117,101,111,101,107,101,109,125,117,100,95,107,100,76,103,114,108,95,121,100,105,108,100,92,111,101,112,107,111,111,95,108,107,110,102,111,87,101,94,112,115,97,117,105,83,101,108,92,104,107,105,92,103,99,102,99,109,112,94,102,109,97,99,102,109,107,104,102,102,104,100,113,102,108,105,106,105,104,127,116,94,113,106,106,109,108,84,99,100,98,121,90,100,103,98,99,106,107,98,103,95,107,101,117,120,98,105,104,107,95,108,111,104,99,97,96,103,95,96,114,113,101,109,101,107,97,104,105,114,110,95,109,108,107,100,112,109,108,104,110,99,67,121,103,114,110,106,109,104,104,108,105,100,104,111,101,122,113,104,102,73,109,108,104,98,71,104,94,96,100,96,99,90,86,120,95,97,96,108,104,114,115,109,95,112,97,99,98,110,106,104,104,104,102,101,98,109,102,87,99,89,108,100,106,98,105,127,100,112,114,122,93,101,106,112,104,77,94,102,102,102,102,94,101,99,126,95,102,105,100,125,99,98,102,85,99,107,106,103,109,106,101,119,114,92,108,93,128,101,100,95,105,106,98,112, +514.80316,108,104,95,104,103,77,98,106,80,98,114,100,93,102,96,102,110,110,101,103,116,111,102,91,100,107,85,101,110,101,94,95,90,96,103,86,87,102,113,115,90,111,104,102,104,106,101,113,90,100,100,111,102,95,99,102,92,108,120,113,109,111,91,86,100,108,105,104,107,105,95,91,104,110,101,105,87,117,113,98,104,96,95,92,93,106,100,112,89,107,108,118,102,104,95,98,105,90,102,99,97,94,103,87,109,107,101,100,104,106,105,100,110,112,102,105,98,100,108,101,107,102,112,105,109,109,116,95,107,104,109,116,99,105,100,116,99,107,103,102,99,94,99,106,110,101,102,108,94,109,107,112,100,93,88,107,109,98,109,102,121,111,111,107,114,113,101,105,101,103,95,95,98,106,105,95,103,97,106,109,95,85,107,105,99,92,95,74,116,103,99,103,95,107,101,96,106,103,115,103,87,114,105,115,104,92,94,102,112,103,97,113,112,108,104,106,114,108,102,96,104,118,98,104,101,102,98,97,109,91,100,113,108,103,106,106,123,107,101,97,105,101,113,110,105,83,107,102,114,106,99,103,104,81,100,108,101,111,109,107,91,104,98,101,103,87,95,103,98,100,95,101,103,118,104,106,107,99,85,109,101,110,100,102,104,87,105,114,108,104,106,112,108,88,115,115,103,124,105,103,101,97,98,114,105,110,102,103,105,121,104,96,92,93,107,113,107,104,109,95,113,86,113,101,105,95,107,98,103,101,105,106,106,93,101,100,111,107,106,96,102,102,109,98,106,93,102,108,120,101,102,124,93,98,115,99,106,98,92,107,98,102,112,99,109,108,113,96,78,97,99,70,103,95,98,102,103,91,109,92,100,109,106,122,96,107,89,99,109,105,108,106,93,107,97,106,99,101,117,113,106,106,96,111,102,109,106,97,109,95,99,97,104,101,118,100,107,99,107,106,118,116,86,99,101,101,109,110,107,114,109,112,107,112,110,94,109,108,111,98,113,112,105,108,68,103,97,103,100,99,104,100,100,109,103,106,104,98,100,103,108,99,110,120,111,88,107,100,109,95,108,135,109,112,94,110,104,95,99,100,101,101,115,97,98,100,111,99,98,110,98,106,125,100,114,102,106,105,98,114,105,98,90,104,96,116,87,100,109,105,105,106,114,103,97,102,112,103,108,87,119,101,103,94,102,99,109,108,105,111,108,96,92,112,102,102,109,101,91,108,103,116,110,103,112,91,107,103,108,117,107,103,100,104,100,105,103,114,95,102,111,104,134,98,100,108,108,107,114,96,107,104,94,108,93,107,100,105,98,109,107,109,105,99,113,92,107,105,111,100,105,104,102,99,108,103,103,108,99,95,109,105,106,107,98,76,84,112,112,90,101,103,95,128,105,96,102,98,99,108,112,110,103,100,98,98,97,103,106,96,104,110,94,100,89,107,98,104,102,112,107,122,100,98,105,107,113,104,102,109,88,101,106,100,104,95,105,96,85,100,101,105,97,89,119,104,98,90,119,107,104,110,110,106,99,112,93,100,115,98,102,109,103,103,96,94,101,103,107,79,95,111,101,87,96,98,104,114,105,110,103,89,112,101,95,122,105,107,108,98,95,104,113,107,109,99,99,99,94,103,113,99,100,104,92,105,105,111,101,112,98,114,108,90,106,113,108,104,91,99,110,98,104,97,117,99,103,99,100,102,104,121,103,108,99,98,105,96,114,97,112,97,108,111,96,111,101,82,93,107,99,104,111,101,86,100,111,104,110,107,87,109,110,92,105,117,103,109,91,116,109,99,89,106,109,111,100,97,108,111,98,97,108,106,96,104,102,103,109,109,102,102,101,95,103,108,101,103,116,98,97,110,103,123,108,107,101,111,119,110,104,95,100,102,104,88,116,119,96,109,106,109,108,103,104,92,120,98,104,107,112,109,111,104,104,98,113,111,103,95,101,103,108,116,98,102,105,110,113,101,97,103,106,100,102,104,92,103,109,109,99,104,106,100,91,98,112,113,109,112,98,111,101,109,112,100,92,106,99,100,104,110,113,105,106,90,93,106,117,96,95,94,104,106,106,97,104,109,107,96,103,106,62,86,118,107,100,117,107,106,114,116,99,104,105,113,98,107,112,105,93,90,117,111,111,103,112,100,107,99,111,94,117,101,111,113,105,100,104,120,96,114,114,99,112,99,108,93,102,104,109,105,101,103,109,111,109,99,109,97,107,97,102,93,99,93,125,99,109,113,105,108,115,108,99,102,100,91,108,101,103,89,92,105,86,129,96,101,95,104,90,104,70,111,89,96,111,99,106,93,99,109,107,92,99,103,113,97,98,101,78,100,106,100,96,97,95,98,113,101,108,106,95,98,106,102,100,123,118,114,103,108,109,101,106,98,99,98,108,104,112,110,107,108,99,96,97,106,114,91,100,100,98,101,106,92,115,98,100,95,99,103,103,100,107,100,97,99,116,105,121,107,97,96,107,100,108,99,109,98,105,90,110,102,104,104,102,98,94,109,105,107,113,103,102,96,106,109,105,102,116,106,104,72,86,97,91,102,111,109,103,105,99,108,103,106,101,95,92,95,111,103,93,112,99,100,118,106,112,100,100,116,115,107,100,121,107,104,110,106,105,101,104,105,116,103,99,85,114,97,108,116,112,113,101,105,115,96,113,110,96,107,125,97,85,101,111,106,98,92,98,105,96,115,97,103,110,104,104,107,103,109,92,103,104,101,102,113,98,108,102,111,109,105,102,105,99,96,106,113,110,96,103,117,109,88,98,101,113,91,102,109,98,104,97,107,97,96,91,110,108,74,100,104,100,98,101,109,102,105,112,98,108,106,101,105,100,102,110,104,104,96,102,119,98,85,97,102,99,102,109,104,105,102,105,117,105,103,94,102,96,100,105,98,103,105,107,105,115,105,100,118,90,91,100,109,104,114,74,106,110,102,93,100,94,111,100,111,103,117,98,104,109,99,104,103,83,109,96,104,107,90,101,98,115,94,95,105,101,101,104,99,99,117,117,99,96,103,103,103,95,113,102,98,108,97,96,113,112,108,101,111,103,102,97,101,91,95,93,105,101,108,101,92,106,113,105,110,103,131,113,102,108,99,97,100,94,99,116,104,105,94,100,96,111,98,96,96,101,104,127,100,104,101,117,86,104,96,109,99,109,105,96,117,105,104,113,103,105,102,96,105,98,96,94,95,105,104,107,102,111,108,103,95,94,102,103,97,117,96,104,105,120,116,96,109,113,106,103,109,98,108,111,92,99,94,100,113,107,95,105,93,97,102,103,96,110,106,99,106,116,112,99,104,110,110,101,91,112,112,96,102,109,111,93,87,105,115,103,96,103,83,105,105,112,104,95,110,95,109,100,99,103,109,97,113,103,107,117,100,79,108,90,101,87,104,109,107,106,99,91,95,102,103,100,94,103,96,92,120,112,88,109,94,102,111,102,97,127,109,97,106,101,99,106,104,110,91,106,95,105,117,102,109,97,111,103,104,106,103,109,106,96,113,112,98,96,102,109,108,100,111,107,98,93,102,99,105,91,107,126,106,98,105,99,99,105,104,105,120,98,98,110,106,106,103,109,98,109,111,96,103,105,107,105,108,95,94,99,113,103,96,106,108,104,106,105,98,109,94,109,79,110,113,87,103,95,99,110,107,88,97,102,97,108,96,104,102,113,101,103,104,99,113,105,95,104,108,100,102,96,103,99,96,99,100,105,107,107,100,99,99,110,96,102,88,102,119,105,103,101,103,99,103,113,103,95,95,109,108,106,100,107,106,109,109,110,112,105,113,106,95,97,99,103,93,101,94,100,106,101,100,105,115,102,109,102,105,102,117,91,91,100,99,106,113,109,97,109,110,106,110,97,94,98,95,105,98,103,102,104,104,97,107,104,98,90,98,107,97,113,97,111,105,102,106,103,112,109,104,95,112,104,104,98,117,98,94,93,102,103,102,94,104,106,105,106,100,87,109,93,98,101,115,106,101,75,95,99,101,113,102,107,101,108,101,109,92,104,100,101,106,102,109,105,106,102,100,112,94,106,102,115,99,102,107,101,105,110,101,104,102,99,101,96,106,98,103,105,100,92,90,97,114,103,95,98,90,105,98,99,96,92,111,104,83,100,116,106,103,104,96,109,105,102,99,97,100,98,104,110,114,96,102,94,86,103,102,108,103,113,108,111,100,101,82,107,101,100,105,109,96,108,115,94,107,97,88,101,63,96,99,115,124,103,98,109,109,116,97,100,83,109,101,99,111,98,101,112,109,100,100,109,112,100,104,90,99,101,113,108,113,107,106,106,98,112,103,106,93,108,98,99,107,100,97,120,97,100,99,103,109,107,111,103,104,113,99,102,105,91,104,117,100,108,109,105,105,109,117,106,103,109,102,92,93,96,110,97,101,106,104,104,105,90,106,101,103,111,107,96,108,94,99,94,104,99,97,103,100,99,92,100,102,97,103,102,100,102,104,99,93,97,109,114,94,90,105,101,102,96,101,103,104,104,111,109,96,104,80,107,106,92,102,102,109,99,99,105,112,107,94,110,97,102,116,101,114,113,106,97,105,104,115,98,93,100,109,102,106,93,95,112,112,84,104,103,101,100,100,105,87,116,87,104,82,100,102,94,103,99,102,82,108,112,93,104,101,98,101,116,105,99,99,100,101,99,100,120,110,108,95,105,130,95,91,95,93,98,92,109,91,108,93,102,94,116,94,103,96,102,102,103,117,94,98,87,105,94,99,93,102,108,116,103,99,95,95,102,100,110,103,120,98,117,113,103,108,87,104,101,107,102,98,97,96,105,94,94,101,111,97,97,102,109,74,84,87,124,93,118,95,120,106,98,111,97,122,95,94,92,106,99,93,105,75,106,106,106,101, +514.94385,99,101,99,96,89,104,92,99,92,96,92,96,99,99,103,108,94,88,94,106,113,99,119,98,105,118,94,102,107,105,102,95,91,104,129,85,96,97,109,93,85,99,92,94,96,117,87,102,90,124,102,98,99,103,106,99,109,96,99,105,103,111,99,104,94,108,88,99,108,108,95,104,100,108,96,110,95,98,110,113,106,99,100,104,104,100,106,99,98,112,107,117,121,119,111,107,108,97,108,94,105,117,99,99,102,96,101,95,105,107,106,104,105,119,90,104,99,95,92,106,114,100,109,109,108,105,116,106,110,101,122,105,93,96,111,111,110,95,119,102,102,116,106,114,98,99,88,108,89,93,99,99,104,93,99,105,105,104,117,108,100,116,104,104,96,98,97,91,106,114,104,108,109,103,100,101,100,98,108,119,110,106,112,102,110,109,100,96,104,86,109,107,74,120,106,118,104,73,103,104,98,107,99,97,97,99,105,96,104,114,105,99,99,112,103,94,105,105,98,109,99,101,109,106,113,102,108,104,109,99,93,104,110,120,115,106,109,103,99,104,107,113,122,105,102,101,106,102,104,98,104,101,104,102,113,100,102,109,100,104,100,100,100,130,103,106,108,94,117,105,111,100,104,103,103,100,112,105,104,109,101,96,96,103,105,108,94,101,98,104,124,88,101,110,106,107,107,100,110,76,79,109,110,112,98,106,102,104,107,103,93,105,107,103,101,95,105,107,102,111,105,100,96,111,106,105,108,93,117,103,112,100,94,105,112,105,105,105,99,102,102,110,95,96,100,106,104,103,105,109,104,108,94,105,95,101,105,105,103,102,103,106,96,115,100,118,113,100,101,114,104,112,117,121,122,105,115,95,99,106,98,114,108,110,102,104,105,106,111,100,126,93,106,116,113,105,101,98,111,100,110,105,96,95,110,105,96,104,106,92,96,79,102,101,99,96,104,96,110,106,103,102,97,99,117,98,105,104,111,84,105,88,102,102,102,114,105,109,99,99,111,99,100,110,95,116,116,100,92,110,109,105,108,110,105,95,104,100,110,93,100,104,98,111,100,102,108,100,99,107,102,115,104,100,126,104,100,113,102,102,121,117,109,106,98,98,105,106,112,98,95,111,107,97,97,97,109,108,124,104,122,92,98,110,100,105,105,109,108,104,99,105,111,102,104,104,107,107,98,104,118,100,103,87,103,104,112,107,96,110,116,107,102,112,115,102,112,104,111,120,111,104,98,107,107,105,107,104,96,98,98,102,109,96,112,102,106,98,92,108,110,115,100,102,112,100,97,86,98,107,100,101,96,104,103,103,105,98,98,122,101,104,107,109,100,96,123,105,113,108,115,104,103,117,111,124,112,120,109,104,102,117,107,96,121,103,106,103,112,104,110,106,111,105,111,101,108,96,115,95,105,109,102,106,109,102,91,102,110,117,88,109,101,105,110,102,116,100,99,117,111,110,101,105,100,109,100,110,121,121,102,104,113,114,112,103,119,112,98,110,110,96,110,104,102,98,116,136,102,100,97,112,110,99,112,115,108,112,113,108,100,96,109,99,105,105,102,116,110,113,109,109,99,107,110,97,116,98,99,103,98,104,102,102,103,109,117,100,105,106,104,105,120,103,96,103,101,108,89,109,105,104,104,110,106,109,99,98,104,115,101,95,104,87,99,121,108,105,109,99,105,98,106,114,112,96,101,110,104,107,102,106,108,107,107,102,102,103,95,101,101,104,96,102,99,109,105,90,112,100,108,112,105,115,107,99,110,112,103,106,109,110,111,116,107,108,108,103,102,108,99,106,113,110,113,111,113,108,102,111,109,113,88,107,109,112,113,105,109,113,106,99,102,105,94,112,99,106,99,105,101,110,119,98,110,104,118,107,106,104,108,104,121,101,93,109,105,105,98,106,104,101,107,95,101,110,109,107,107,99,115,100,113,100,100,109,113,99,102,114,114,95,99,103,103,97,92,115,107,112,105,116,100,116,102,112,111,106,117,106,111,98,106,100,100,98,109,110,101,108,113,111,102,93,107,100,104,99,109,109,113,105,105,97,107,106,87,112,117,124,104,106,98,102,92,103,108,108,91,108,100,100,111,105,101,90,112,102,98,109,81,104,109,106,108,112,95,102,120,117,107,106,104,119,101,102,87,87,101,112,123,105,113,114,108,106,107,106,108,107,108,110,106,108,106,95,109,105,99,105,99,106,98,89,109,112,100,109,104,107,104,109,121,110,103,103,104,103,109,102,106,82,105,99,96,90,102,102,106,108,96,93,101,104,91,103,102,106,102,113,104,108,92,110,96,98,101,104,104,104,88,106,114,91,111,104,97,120,109,85,103,106,112,91,106,100,91,109,114,103,103,118,101,107,104,109,92,133,91,110,96,104,106,104,101,112,103,101,106,114,110,87,102,110,109,115,100,114,108,106,104,114,103,105,100,96,93,101,112,102,107,102,96,119,104,108,122,112,102,116,108,113,108,86,104,107,110,113,112,101,96,113,103,91,93,112,106,104,89,122,97,107,111,99,96,94,109,107,101,109,120,87,104,81,104,103,100,115,113,98,94,107,110,91,101,102,95,96,102,95,99,107,104,110,96,108,124,100,113,99,115,112,122,103,83,108,110,106,112,100,105,101,110,96,105,108,114,94,105,106,116,112,104,112,115,107,103,107,121,107,100,108,111,98,105,108,103,95,105,106,119,102,100,106,94,118,109,100,115,100,113,100,109,79,118,115,68,109,101,84,110,109,104,107,104,108,106,102,102,100,101,103,101,98,103,106,106,109,110,100,103,110,100,102,100,112,105,106,128,100,75,107,116,99,104,102,104,105,103,106,111,108,103,104,98,103,106,111,99,109,104,103,100,107,105,84,92,101,100,98,113,110,111,87,115,102,105,103,106,113,115,105,104,111,94,99,100,104,100,106,102,105,106,117,107,113,108,123,103,108,90,85,112,108,112,99,107,101,109,107,108,101,98,104,103,108,113,100,116,91,106,102,105,102,121,105,102,112,110,118,104,103,100,117,100,95,111,109,105,113,98,107,109,110,107,105,115,98,116,98,108,105,103,113,103,108,96,109,98,100,112,96,104,107,116,99,119,104,103,99,111,102,87,113,108,109,105,103,118,100,113,93,109,113,92,98,104,97,105,99,99,114,97,112,108,105,100,96,109,102,128,107,100,104,105,102,113,97,106,104,104,112,104,108,108,103,102,90,105,118,109,115,92,106,84,91,125,110,96,104,98,107,109,116,113,104,123,107,116,109,95,94,113,105,139,107,108,107,102,108,103,98,96,104,90,111,108,98,109,100,107,100,128,110,119,101,113,98,101,104,105,105,106,87,112,106,106,107,92,104,108,104,100,100,107,110,109,104,108,102,101,97,102,113,103,100,132,108,116,105,97,103,101,109,74,93,105,106,106,97,112,107,102,103,97,108,105,99,103,97,114,104,121,101,91,103,103,108,96,107,95,98,113,103,105,101,109,102,110,99,108,108,108,104,100,111,111,112,104,108,117,106,119,111,110,98,105,107,109,100,99,104,113,113,115,104,99,125,98,112,112,111,106,104,109,104,100,100,108,113,87,92,99,101,109,103,111,106,117,106,96,112,99,110,101,106,102,105,124,109,101,134,109,102,116,114,95,109,109,112,106,108,106,114,97,102,100,112,107,113,105,119,105,105,99,92,113,136,101,103,115,98,121,112,103,103,104,100,99,106,94,122,113,107,99,107,108,93,114,95,83,110,99,113,113,116,106,104,103,103,110,84,90,124,98,104,107,103,95,96,98,106,113,103,110,102,115,112,102,115,108,113,109,105,104,117,107,96,95,123,103,108,109,112,110,97,107,96,108,105,105,89,97,126,105,110,107,99,114,111,99,105,97,107,107,98,96,95,105,114,100,106,114,115,92,102,111,103,110,105,103,104,106,83,107,110,108,107,127,103,106,108,106,102,104,107,110,107,90,101,106,115,100,100,111,105,107,106,108,109,102,103,100,114,114,101,106,109,93,75,112,110,104,113,106,109,103,93,103,99,102,98,103,106,111,105,104,110,123,113,105,103,110,98,104,105,121,107,117,116,106,109,110,109,105,114,108,114,113,103,101,94,98,107,105,107,98,101,124,111,100,94,108,103,99,116,96,110,109,106,107,102,103,104,105,112,103,113,104,99,115,102,113,119,104,96,98,117,106,109,101,99,102,100,103,99,100,99,105,102,112,111,100,108,102,100,110,102,105,99,95,97,112,105,79,108,95,99,102,104,100,101,113,103,112,114,79,101,105,101,102,109,103,98,92,113,101,97,112,109,106,101,106,103,109,97,109,109,104,105,112,108,106,105,106,99,109,94,100,96,104,102,103,109,95,104,107,110,109,105,97,115,105,97,90,100,103,101,98,91,105,107,105,94,94,102,104,89,101,80,115,110,101,95,96,104,102,108,92,107,107,111,103,110,94,109,104,107,98,109,103,98,95,110,106,94,96,98,102,97,100,104,94,110,103,112,89,121,103,104,106,101,107,109,102,117,108,99,96,118,103,102,102,98,112,107,104,112,105,96,105,109,113,101,108,113,131,111,96,95,113,100,103,105,111,98,108,109,101,117,104,117,103,95,92,104,113,102,113,98,98,103,106,109,107,104,112,116,111,111,110,92,113,99,121,107,103,98,117,116,107,104,113,110,103,98,93,107,95,83,102,90,117,110,102,105,108,93,112,92,95,104,97,110,99,104,116,113,103,94,92,122,117,103,109,99,94,110,90,91,87,108,140,106,89,107,103,117,98,110,112,95,105,114,107,100,99,104,99,100,90,110,102,90,114,109,102,117,81,101,110,114,87,85,98,102,105,111,109,92,116,124,101,100,116,109,101,101,114,94,106,100,116,92,121,112,104,92,95,104, +515.08453,100,101,96,100,103,117,98,100,102,117,96,87,106,103,97,107,109,100,104,100,101,110,108,102,103,101,103,106,105,99,121,103,100,89,111,89,104,81,100,103,97,95,96,96,109,118,103,106,119,97,115,82,101,99,115,86,92,96,108,96,96,100,101,86,98,116,139,99,109,113,100,110,91,101,105,99,96,101,109,98,91,98,102,98,98,95,98,111,95,100,112,103,109,102,91,100,91,106,94,99,102,100,103,97,101,98,106,99,99,95,69,103,99,102,94,114,103,113,108,94,98,105,98,124,101,85,120,98,103,117,112,104,109,100,103,100,104,109,105,82,97,111,102,117,107,97,105,121,88,100,100,106,102,105,118,112,102,105,102,112,94,108,97,113,104,99,103,104,102,98,118,97,101,94,115,101,100,106,111,86,115,103,108,109,93,103,109,94,105,99,126,105,104,100,99,84,115,107,99,106,107,96,88,111,115,99,97,109,104,102,90,104,103,98,99,108,107,103,94,114,105,105,93,96,105,103,112,98,112,109,115,113,118,103,102,102,107,121,103,96,118,105,108,100,103,99,107,103,104,103,117,100,95,124,112,115,102,101,104,95,93,118,98,113,102,107,110,101,95,113,102,98,98,106,125,95,99,90,100,81,105,92,104,110,96,99,107,104,108,114,103,86,114,101,111,109,107,107,103,109,93,103,121,119,100,95,122,118,95,108,96,110,106,91,89,99,99,94,104,106,108,92,98,96,98,91,100,89,106,107,117,100,103,112,99,96,105,104,102,108,111,99,106,87,114,119,109,103,108,117,103,100,110,94,111,98,110,105,112,107,108,108,112,109,90,109,93,100,103,103,116,101,101,106,103,95,104,101,97,107,108,107,101,97,110,100,94,104,105,107,124,101,111,103,100,108,102,94,100,111,68,102,106,96,90,107,104,109,116,112,113,107,107,105,121,70,91,105,93,113,114,97,109,101,102,93,107,95,106,103,95,92,106,104,105,103,109,90,67,122,124,97,102,123,118,85,108,98,100,110,91,100,109,97,107,98,106,113,102,89,102,108,95,107,98,112,100,112,105,100,94,106,121,111,101,99,96,104,110,100,93,109,107,97,99,103,102,99,95,119,108,103,113,72,104,105,101,104,104,96,109,103,74,103,103,103,93,95,119,114,106,106,90,103,111,105,103,99,98,99,110,91,104,100,99,99,125,103,103,106,105,104,106,101,101,105,121,100,104,112,92,122,85,106,96,100,104,95,104,108,104,111,91,108,94,109,104,101,98,95,116,100,94,99,100,105,103,112,97,103,105,113,103,112,104,105,109,109,103,108,107,108,112,105,99,108,103,124,117,98,88,91,97,103,110,98,111,95,106,103,101,119,104,101,105,84,108,101,102,109,92,121,109,107,116,102,105,109,108,104,109,109,91,100,110,96,111,102,107,100,101,106,105,79,92,113,105,100,104,114,106,120,103,114,98,109,96,101,104,102,104,103,107,108,105,103,107,114,108,120,121,110,100,104,110,116,109,108,108,96,105,109,100,108,104,120,105,106,146,106,112,91,121,101,83,108,105,105,109,101,110,102,107,104,102,99,94,107,103,117,103,104,110,105,104,103,108,105,81,101,114,109,109,115,103,114,100,108,109,104,100,106,99,97,96,101,114,110,111,103,109,106,86,111,99,101,103,106,107,91,111,99,122,111,100,99,95,104,98,107,97,102,110,96,103,118,96,101,98,99,100,91,101,106,80,100,100,98,108,110,105,99,104,103,95,117,107,93,104,100,92,106,103,91,110,108,104,103,97,118,107,105,106,103,112,108,99,104,113,121,78,98,101,105,106,104,107,110,106,105,106,96,102,95,105,105,117,102,105,104,104,110,102,96,104,112,93,108,103,93,107,104,121,109,99,108,100,113,108,103,103,100,117,101,77,120,103,103,99,99,104,98,97,109,105,91,94,108,105,103,103,97,96,104,92,110,105,95,113,115,105,125,119,116,109,105,105,88,110,107,110,102,97,108,100,111,112,104,91,96,111,105,117,103,111,100,94,102,101,109,94,104,112,103,91,100,96,114,111,108,91,110,107,108,103,100,102,91,70,99,112,115,112,116,103,97,97,103,105,115,113,99,91,101,101,92,107,106,117,110,98,107,121,114,118,98,104,97,99,116,107,111,106,100,109,121,100,95,98,116,114,100,107,90,118,106,109,99,111,112,108,111,101,106,102,111,100,84,109,110,112,111,104,106,106,121,105,106,98,108,93,107,97,105,97,107,114,105,104,113,98,106,100,94,103,116,124,101,98,111,100,103,110,117,103,113,109,101,100,102,110,101,104,104,91,110,100,97,114,102,109,96,111,101,114,100,106,113,106,106,88,104,113,100,87,99,134,105,90,100,110,95,90,109,94,101,106,99,111,100,112,104,117,101,110,102,93,112,115,126,110,108,104,99,100,102,114,103,113,94,103,100,96,103,117,109,100,95,87,108,110,126,100,99,109,102,108,76,110,109,115,100,84,110,102,108,113,107,106,106,104,109,106,116,105,104,107,125,104,102,140,103,96,109,100,93,113,109,108,120,111,113,110,102,125,89,102,100,95,90,109,95,105,123,99,102,97,97,108,101,103,104,103,91,98,113,93,107,104,98,106,111,109,106,108,104,101,102,101,102,108,94,84,111,109,108,99,105,103,95,109,121,98,105,113,114,108,109,109,109,108,104,79,100,115,106,109,100,116,115,103,118,106,112,105,104,106,102,91,99,111,110,101,100,94,107,103,106,107,99,109,98,103,89,84,94,109,116,106,82,109,106,72,106,106,109,117,105,108,109,114,113,106,99,97,100,91,114,100,108,96,102,107,106,121,109,111,115,102,102,105,105,101,101,113,105,115,106,108,104,100,106,107,112,113,95,104,94,114,106,100,110,96,95,109,103,101,91,109,103,120,101,99,105,106,107,110,106,103,94,108,110,102,100,100,100,119,119,102,105,106,108,93,107,102,98,109,109,103,111,107,107,102,106,88,119,101,119,105,111,102,109,104,99,112,105,105,107,104,95,103,115,119,100,102,107,103,105,101,109,105,106,108,107,107,92,105,108,114,102,105,106,89,110,112,96,120,91,106,103,106,96,118,100,121,104,116,107,107,113,103,103,136,105,75,98,107,112,107,87,95,101,109,95,105,116,95,108,121,96,105,110,102,106,103,107,99,102,110,95,106,116,106,105,109,117,105,108,103,98,108,100,95,107,100,102,114,96,98,75,93,104,103,98,98,100,105,94,113,111,102,104,106,109,99,95,103,110,114,107,113,109,90,109,99,108,109,101,115,102,105,114,107,107,97,114,94,104,82,102,100,111,102,96,109,102,112,99,112,108,114,103,112,107,106,101,96,92,101,110,114,105,98,102,100,103,101,108,113,90,91,106,103,107,98,95,113,96,105,107,115,107,110,104,99,101,102,100,115,98,102,85,109,109,77,105,123,103,101,108,106,101,111,110,99,104,111,99,124,99,106,112,98,101,117,104,103,102,99,118,109,121,105,109,106,111,105,115,104,104,104,108,92,120,103,102,107,103,107,117,117,102,105,106,108,104,105,109,112,95,105,99,110,106,116,103,107,96,111,96,98,112,111,117,96,106,110,105,111,112,103,106,115,108,94,103,106,100,98,112,113,110,105,100,98,109,112,106,105,96,108,109,113,96,106,98,107,102,115,98,132,94,113,119,104,112,106,104,116,102,103,102,107,102,103,112,105,94,107,98,109,112,98,100,88,104,111,110,101,100,112,104,103,119,109,101,99,105,100,107,102,128,97,94,117,102,115,110,111,98,105,93,103,99,107,106,115,95,109,112,108,116,106,100,100,104,104,106,114,112,107,115,108,115,107,107,96,107,109,103,103,95,92,99,119,108,99,86,100,92,99,96,101,99,103,100,113,96,112,92,101,93,111,99,103,102,104,99,114,103,113,107,114,110,92,106,105,109,103,100,110,98,102,109,120,113,103,102,96,111,132,106,114,109,103,105,90,105,108,99,121,95,98,106,104,101,109,87,102,109,111,107,109,94,113,115,98,109,106,104,103,111,98,80,112,106,110,113,116,113,117,104,103,113,94,108,109,113,103,109,101,102,115,106,112,95,102,101,103,99,102,108,95,103,105,102,98,101,111,91,106,109,127,99,110,103,115,100,99,106,101,113,108,98,105,104,117,119,108,97,106,103,105,98,114,104,81,103,109,104,107,103,106,95,108,98,111,111,113,105,88,100,99,98,104,102,117,89,98,103,121,95,105,110,118,98,106,104,110,103,102,106,116,102,91,104,100,110,111,103,113,98,113,97,101,106,97,105,104,112,124,96,106,103,108,105,97,131,100,111,101,100,109,114,101,104,101,109,103,92,105,114,96,109,96,96,113,103,120,99,110,107,108,96,104,103,99,106,129,92,112,94,102,94,98,91,104,98,101,108,105,115,116,102,106,97,102,93,109,105,102,101,101,97,100,108,100,108,95,106,98,113,85,109,102,103,105,107,102,97,94,113,101,82,99,105,112,103,112,105,100,111,97,94,111,108,104,94,99,102,107,105,105,93,104,101,106,102,105,102,111,90,103,116,108,109,104,108,104,101,95,107,97,106,103,114,106,105,104,113,108,110,92,105,110,86,108,100,109,98,92,115,109,110,103,102,95,94,105,96,84,99,99,106,106,89,109,106,111,98,118,106,112,95,103,108,108,99,88,98,101,99,104,101,101,93,105,99,106,101,102,109,109,109,96,99,120,110,95,99,94,109,109,102,120,112,101,99,113,105,111,127,106,113,96,125,101,103,120,107,109,104,98,108,108,112,99,113,96,111,123,120,112,110,109,98,109,109,111,102,107,98,102,85,108,92,102,98,105,105,115,104,79,121,105,106,101,103,106,93, +515.22522,107,103,111,94,103,103,104,112,102,102,101,88,104,104,94,109,120,106,101,86,96,100,100,111,108,99,95,100,106,108,95,100,92,104,107,96,88,93,118,97,100,77,86,99,99,106,105,107,102,111,98,98,106,100,110,101,105,88,102,93,103,105,107,101,100,100,96,103,104,100,102,107,96,98,94,104,95,93,117,75,87,105,98,105,95,96,96,101,101,97,104,100,109,100,103,101,106,102,90,98,97,104,105,91,97,90,76,110,100,109,105,100,101,99,107,76,101,106,111,99,108,97,105,99,115,101,107,100,96,102,111,95,97,97,105,73,104,108,99,106,109,111,97,115,95,92,103,108,106,95,106,97,118,101,105,97,107,99,110,105,109,91,104,108,103,102,116,94,107,104,106,110,111,99,106,109,109,101,115,114,103,109,109,105,99,98,103,81,108,96,89,105,119,111,108,102,103,105,114,109,96,113,106,103,101,105,103,103,117,101,96,103,100,102,105,90,102,130,101,107,108,103,109,102,98,104,102,103,93,115,99,103,106,109,101,108,116,113,96,99,106,118,93,105,91,104,114,97,110,95,101,104,103,105,85,127,92,122,109,108,94,99,100,106,103,110,106,94,112,105,97,108,105,90,98,106,101,104,102,93,120,105,105,110,96,106,96,89,106,105,108,105,102,102,105,112,108,97,108,106,100,111,99,105,101,113,102,104,93,111,97,128,95,103,115,106,99,108,107,96,108,102,101,106,99,100,118,113,110,114,100,109,104,105,119,106,97,100,94,103,108,122,91,98,99,121,109,112,107,144,100,95,95,117,109,110,100,120,108,113,105,108,98,101,107,94,106,106,105,120,108,104,107,100,111,102,101,107,87,106,108,122,105,108,102,98,90,84,102,86,103,108,107,100,108,96,98,110,107,111,103,99,110,96,96,104,98,102,109,100,96,95,134,106,109,111,104,108,100,97,95,96,108,112,102,102,118,96,110,110,101,106,105,98,113,105,104,98,115,100,113,95,108,109,99,99,113,97,99,107,100,103,94,104,94,98,99,113,107,102,101,103,106,102,108,109,102,103,111,98,100,95,103,112,110,101,109,112,97,110,106,104,117,99,101,105,127,82,93,104,105,107,98,109,99,105,109,109,101,109,106,103,111,121,111,97,109,105,114,109,122,101,97,114,109,96,96,107,90,109,109,104,112,105,123,86,102,99,105,95,97,98,108,109,99,104,109,107,86,103,112,103,101,104,114,108,112,101,99,115,99,103,104,109,113,108,114,109,92,106,101,105,95,100,106,106,113,110,109,122,96,87,99,103,112,107,103,103,103,104,106,109,96,94,99,109,116,104,100,101,80,106,103,110,111,100,116,114,121,99,96,108,103,97,107,127,98,109,94,110,95,103,124,103,95,105,110,104,106,117,103,91,107,98,103,110,95,104,93,103,110,110,101,109,101,105,99,93,106,97,104,103,94,96,113,91,101,98,117,108,106,101,108,114,101,108,102,104,105,82,111,114,117,111,98,98,109,87,102,100,93,114,107,115,100,110,104,103,105,110,107,110,111,89,95,103,90,97,102,105,120,95,102,113,96,100,114,94,104,79,98,92,122,99,101,99,102,106,105,94,104,109,91,105,98,100,94,109,109,99,108,101,102,106,104,102,86,124,101,111,99,103,112,105,107,103,111,98,114,118,95,92,98,106,98,106,93,108,106,110,104,110,110,114,103,103,104,100,105,116,112,120,118,92,97,104,95,100,104,105,112,94,112,104,99,98,89,117,110,110,107,112,126,103,100,107,95,107,108,106,112,100,96,119,97,112,101,94,98,97,98,95,99,95,109,113,97,102,111,100,116,93,127,96,107,97,109,103,106,110,103,112,104,99,126,102,108,97,106,105,100,91,103,103,102,107,94,97,108,109,103,110,111,91,119,110,104,85,103,103,113,99,97,90,94,109,108,95,105,113,93,98,106,110,109,96,94,99,110,102,109,118,100,109,102,90,107,115,99,99,111,99,109,110,103,102,95,109,92,105,101,112,101,100,110,91,99,106,107,104,95,87,115,113,110,107,99,96,105,101,104,107,114,104,109,110,100,108,106,93,97,124,109,108,102,98,101,96,117,114,111,112,107,102,103,99,91,91,105,97,99,102,84,96,106,109,103,106,103,101,101,99,100,102,109,106,101,110,96,113,107,117,109,108,111,93,106,110,114,109,95,113,91,106,113,114,109,105,87,98,122,108,111,105,103,103,104,92,98,101,121,103,110,95,96,102,106,99,98,103,105,116,96,100,115,113,103,103,91,115,97,100,103,106,111,113,110,91,107,115,109,124,102,95,101,100,100,98,118,96,96,103,107,101,116,98,98,102,109,99,104,99,104,98,105,95,113,108,103,99,104,106,97,95,102,87,98,103,104,104,92,111,104,107,107,104,104,99,107,105,106,119,107,100,114,101,96,97,107,109,91,103,103,113,113,109,100,99,123,101,107,100,106,100,96,110,103,110,107,100,103,107,117,118,104,109,106,101,105,95,114,104,113,106,100,101,75,106,103,104,108,102,102,116,117,115,108,106,102,99,98,103,103,108,112,105,100,107,106,90,113,105,99,107,109,111,104,125,102,100,105,97,117,97,114,119,109,106,103,116,117,101,102,99,110,120,116,94,129,105,95,102,96,122,97,102,96,102,109,98,99,110,110,118,91,105,108,105,101,110,109,109,110,110,105,111,120,91,101,107,108,103,108,114,114,97,117,109,78,115,109,113,114,91,108,118,106,118,105,110,106,104,95,101,100,98,116,100,109,108,103,99,101,112,105,103,100,114,109,110,100,105,104,97,112,105,93,108,107,104,102,107,98,97,109,100,99,116,102,106,109,95,112,112,95,104,113,117,117,89,105,113,102,106,117,100,116,100,99,103,101,113,98,105,91,105,96,107,117,99,112,117,92,104,93,99,95,101,130,96,90,109,95,83,114,104,97,92,99,99,92,108,109,103,95,104,99,103,117,105,119,109,107,102,118,99,110,92,102,99,104,100,105,102,103,102,101,96,114,89,107,120,108,90,115,103,106,104,109,121,106,120,91,114,103,106,90,106,99,129,90,107,95,99,110,100,110,119,115,99,107,96,106,114,102,99,104,99,95,104,103,96,100,107,105,91,106,98,98,102,101,112,104,104,106,102,111,101,111,139,105,106,113,99,101,96,99,111,109,105,100,100,97,105,85,94,101,120,109,116,94,112,93,99,98,100,104,100,110,95,86,113,115,115,108,77,117,110,104,100,106,112,104,108,96,105,103,104,110,107,100,80,108,97,102,116,103,109,99,102,110,113,99,106,106,107,104,103,112,104,91,98,101,102,101,107,108,98,110,91,87,117,106,106,109,104,86,119,94,102,95,122,105,99,84,95,102,104,114,103,94,117,99,101,122,83,107,111,108,108,104,98,119,97,107,87,110,91,108,100,106,103,108,101,111,95,105,86,117,102,112,120,105,112,102,99,104,114,109,104,107,110,99,113,108,111,115,106,111,104,107,121,106,102,95,109,106,108,100,105,105,103,114,100,104,111,98,105,104,105,102,106,108,111,109,105,110,112,100,107,100,105,100,101,108,101,100,111,104,109,108,108,113,107,113,98,114,110,110,107,109,102,119,113,109,90,90,97,115,103,86,110,102,118,101,102,84,121,101,112,103,113,121,110,98,99,109,115,103,106,110,107,102,107,112,109,108,111,106,104,110,94,108,99,99,111,104,105,98,104,98,101,108,95,103,106,102,95,112,101,99,101,98,109,103,105,90,103,120,109,105,110,91,110,91,105,105,107,101,102,103,110,106,102,92,111,97,102,99,109,99,108,103,109,113,101,110,109,100,97,105,104,101,107,112,108,108,108,107,101,108,121,103,100,99,99,103,104,97,104,109,94,105,103,106,109,105,114,110,94,108,108,112,109,101,112,104,109,103,111,107,123,97,101,111,104,119,105,109,101,99,90,99,108,120,102,111,92,101,107,118,100,102,94,92,107,105,96,113,113,107,107,108,105,99,98,104,111,108,106,115,101,112,91,112,108,117,104,108,109,105,102,107,113,103,102,115,112,107,103,106,78,107,125,100,103,102,102,97,109,110,109,111,110,98,109,103,98,98,107,91,116,109,102,110,120,105,104,103,109,97,104,114,88,97,114,109,105,103,100,106,111,116,96,111,109,107,106,113,117,96,109,104,106,120,98,96,107,102,104,103,104,109,106,102,104,99,111,109,104,111,116,122,105,110,106,102,105,108,102,103,97,116,95,107,118,107,105,95,113,109,107,100,110,121,94,99,102,106,109,109,108,102,106,106,102,101,104,104,105,99,113,105,112,118,98,110,145,104,100,100,99,100,94,103,107,102,112,98,107,114,113,109,110,105,104,106,99,106,106,98,99,103,104,101,98,103,98,102,99,120,108,96,103,106,96,99,102,100,106,108,102,102,105,95,90,100,87,99,108,112,100,102,104,100,102,97,105,100,105,104,103,109,105,110,111,108,111,112,97,112,101,101,87,107,102,109,109,108,101,82,103,101,107,94,93,99,103,103,103,103,96,108,103,97,140,113,110,96,98,106,98,103,110,127,103,107,93,99,112,105,96,108,81,102,94,103,107,105,88,113,94,99,103,110,100,107,106,87,102,111,101,107,109,114,99,109,100,111,107,115,84,86,102,106,96,102,112,112,104,115,106,128,79,110,95,108,109,114,93,95,117,101,103,112,100,102,101,96,108,102,85,95,107,103,94,101,107,120,92,76,93,108,110,95,101,106,102,93,87,101,103,100,96,115,92,93,104,107,95,104,102,96,101,103,115,73,121,114,118,108,116,108,93,102,120,83,101,104,84,107,104,99,98,100,104,99,89,104,91,110,107,110,101,119,113,108,112,102,109, +515.36591,114,101,98,93,92,107,106,95,102,101,102,100,94,73,112,108,116,95,94,109,89,118,105,95,107,99,104,113,123,115,100,80,113,101,92,104,101,104,93,93,113,100,105,105,91,106,105,97,97,111,96,98,92,91,108,91,106,97,101,106,102,106,107,99,110,97,100,100,105,101,103,110,111,101,105,108,113,91,112,77,100,99,94,99,91,96,90,103,109,99,91,104,100,90,101,106,108,94,110,96,97,99,105,99,111,106,94,95,112,104,92,121,112,103,103,102,112,93,114,97,113,99,95,110,105,103,115,98,93,109,107,102,104,122,100,102,102,104,95,94,103,100,117,103,93,104,96,101,87,98,109,101,98,115,103,110,106,99,106,102,101,98,101,109,102,96,112,109,110,106,98,100,100,103,112,112,94,141,97,103,103,105,115,109,103,100,108,107,112,95,105,107,106,110,103,97,92,108,107,91,119,106,99,81,96,101,108,104,110,107,106,98,108,110,108,105,96,103,121,99,104,99,111,99,92,111,101,99,103,109,96,112,97,105,95,106,76,104,103,106,94,92,114,102,108,103,107,92,99,115,96,105,92,98,102,108,98,100,102,91,92,103,94,96,99,104,98,113,108,100,127,90,113,102,105,100,92,102,115,95,109,94,102,98,101,111,91,106,115,103,103,111,114,109,108,77,108,117,107,101,92,95,104,117,106,113,118,102,97,115,94,118,125,113,93,112,112,98,102,94,105,103,129,107,93,95,87,84,98,104,96,98,103,110,104,105,104,87,94,134,109,88,93,99,95,92,108,101,103,108,108,94,105,89,101,106,102,101,99,101,98,90,87,99,99,113,97,107,81,100,91,93,103,102,97,107,113,100,96,112,103,107,108,109,102,107,110,97,104,93,106,100,104,100,99,103,98,106,110,105,94,95,98,109,102,79,103,109,114,103,101,88,104,108,103,105,88,101,108,92,101,105,96,108,90,88,103,100,99,104,93,103,95,95,107,100,104,110,87,106,110,112,106,107,113,105,114,102,113,105,103,98,108,120,111,102,109,97,113,96,101,102,103,108,98,114,105,101,112,107,109,109,109,99,101,109,110,107,87,107,109,101,109,100,105,108,95,99,97,99,102,93,100,98,91,96,104,106,106,102,119,105,109,108,104,108,96,113,95,117,114,107,99,120,112,97,93,97,106,97,101,101,107,98,96,112,100,101,100,99,99,113,102,104,104,100,112,102,107,110,109,107,101,94,107,109,102,100,106,105,105,108,108,102,101,105,95,116,102,108,98,106,105,108,111,109,101,99,104,92,105,100,109,110,101,104,100,103,100,107,95,109,99,85,100,102,96,113,97,97,101,99,100,103,111,110,89,100,111,101,108,87,122,104,100,102,101,109,106,104,94,95,104,84,110,95,96,92,101,98,104,113,112,97,101,95,99,102,84,102,96,102,103,107,98,100,100,90,101,101,102,102,116,102,98,107,98,113,98,94,99,104,101,111,108,109,95,106,110,113,108,98,90,91,107,103,104,94,114,101,108,112,106,98,99,107,121,101,107,90,106,111,107,103,104,102,97,103,93,109,110,95,95,98,106,95,106,100,107,108,99,101,101,100,106,105,121,105,104,97,98,99,104,85,92,110,99,107,91,102,118,85,100,104,97,84,102,97,96,108,100,103,94,97,100,96,104,102,96,100,116,69,102,99,101,100,92,114,106,99,112,90,106,103,100,101,115,97,111,108,107,103,108,94,94,101,82,114,105,99,113,100,87,104,113,112,113,103,105,101,105,107,112,97,106,102,106,104,97,110,117,105,102,104,110,110,104,99,105,109,97,101,101,95,117,98,116,82,110,105,115,102,99,99,100,95,103,97,97,103,106,111,102,98,110,109,108,106,96,99,108,86,104,117,100,94,101,115,105,104,101,99,101,92,100,99,104,97,80,89,114,97,72,101,105,113,106,105,107,101,101,101,107,103,103,98,104,97,109,104,100,109,103,110,100,99,100,110,101,101,87,93,123,109,102,99,94,109,108,105,97,117,107,103,104,94,99,94,108,96,113,106,107,101,108,110,94,106,100,81,120,95,116,105,109,101,98,108,114,113,114,99,111,117,91,100,99,99,104,104,104,112,97,104,95,102,104,91,103,99,103,92,110,106,94,103,110,105,101,94,105,100,102,118,103,101,106,104,106,99,110,102,104,102,111,105,101,104,103,94,98,92,99,107,87,95,114,95,107,106,101,129,110,109,103,81,107,90,114,94,92,104,109,105,105,99,86,104,97,100,91,98,91,99,105,102,110,108,86,104,98,100,99,104,109,104,93,127,102,91,103,104,121,94,100,102,103,113,106,106,100,94,108,104,106,105,102,112,109,99,97,106,112,101,104,113,99,105,99,90,110,100,91,100,94,100,98,93,92,105,107,118,108,99,99,117,101,118,92,97,106,118,98,99,95,101,94,109,85,95,101,102,116,100,108,97,105,101,95,99,111,108,113,103,113,98,102,100,111,109,116,102,96,108,106,102,90,96,113,103,107,108,111,99,100,91,105,110,95,110,104,105,105,108,106,99,100,100,106,93,101,120,99,102,98,102,96,87,110,101,121,103,94,110,101,103,95,108,65,100,108,110,96,107,99,109,98,105,102,103,121,89,105,105,107,113,108,98,101,105,110,102,112,105,113,107,104,116,115,97,93,101,94,100,99,99,95,109,124,105,95,129,110,113,105,102,108,114,107,102,97,115,110,96,100,106,92,113,107,104,104,104,107,109,94,105,105,113,107,97,108,110,93,94,104,98,97,107,111,103,102,95,104,98,96,94,109,104,106,108,115,93,106,104,107,95,102,107,98,102,102,98,109,103,105,107,104,105,101,110,112,103,118,107,108,116,87,105,106,110,109,105,96,114,95,95,106,106,103,113,91,103,106,104,103,100,104,111,109,105,103,116,108,108,102,98,107,114,101,106,103,113,106,101,101,99,90,105,99,93,102,103,95,108,91,109,100,100,115,90,111,108,99,111,109,105,100,114,115,106,114,98,99,107,103,115,104,105,98,107,107,106,113,87,107,100,104,111,111,113,100,122,94,97,112,116,88,102,104,110,105,109,102,96,107,95,108,102,106,120,103,114,107,109,102,102,100,104,108,98,99,104,102,109,109,106,113,103,100,84,103,108,108,99,111,83,100,87,98,105,105,95,103,99,108,104,115,105,107,107,107,99,100,94,70,106,111,102,108,102,117,105,103,93,113,98,111,102,113,117,98,106,111,108,102,113,105,113,98,108,91,106,94,112,99,106,105,103,99,104,106,108,98,93,100,129,116,105,105,102,104,103,108,101,93,96,110,99,112,103,113,105,105,99,97,99,88,92,108,110,103,108,108,106,102,107,105,105,111,107,111,108,105,143,95,113,96,102,108,105,92,106,120,108,95,85,113,106,108,104,105,97,98,102,89,108,106,105,98,90,110,102,104,105,95,97,99,100,100,107,110,95,110,106,91,105,104,100,107,100,102,107,95,107,101,110,96,106,107,107,109,105,107,108,102,101,100,99,98,103,109,117,90,108,101,103,88,104,105,109,108,91,107,102,95,114,103,108,127,96,104,100,102,109,115,93,109,106,105,109,87,119,112,113,106,102,107,100,109,106,84,110,106,95,102,101,113,98,105,110,105,99,111,121,98,105,99,106,100,102,109,117,121,105,94,106,104,109,95,102,112,102,109,106,107,106,102,99,122,91,109,99,102,101,115,102,115,120,105,87,96,103,99,101,108,106,113,117,70,106,126,104,104,98,100,103,112,104,120,100,90,112,96,104,122,87,106,102,98,105,105,103,116,108,108,107,106,99,117,108,92,115,96,99,106,106,99,107,94,107,100,120,99,106,96,105,109,124,101,111,101,107,98,108,106,117,120,104,125,105,116,98,103,115,100,98,108,108,111,109,104,99,102,101,92,110,107,108,103,100,105,108,107,103,108,86,115,124,105,106,108,112,98,100,103,113,100,105,101,108,96,111,102,89,103,104,117,100,99,100,113,107,103,107,102,100,100,99,102,104,105,92,100,91,120,101,117,108,98,110,77,109,102,105,107,110,106,102,96,102,101,110,104,109,106,110,96,112,108,108,95,97,116,114,118,119,109,107,109,104,99,91,99,101,104,107,91,116,121,107,117,96,102,89,107,100,108,95,104,91,112,105,121,116,112,107,95,109,103,111,113,115,115,94,106,106,110,107,109,109,119,108,103,91,104,95,108,100,117,92,101,110,104,91,99,99,97,102,110,113,113,81,120,103,104,98,102,106,103,104,103,99,107,102,111,99,98,102,109,108,109,101,112,92,101,103,112,108,113,114,108,128,103,111,106,107,111,104,109,104,112,102,81,103,100,106,107,108,104,98,89,106,110,89,105,105,106,108,108,100,107,108,99,106,99,113,108,98,106,98,111,121,103,79,99,93,98,98,101,99,112,102,107,103,106,92,92,96,112,116,107,100,115,99,103,96,101,109,104,113,110,109,98,112,95,104,104,104,102,104,106,101,96,108,104,112,103,92,95,112,98,89,92,94,93,95,106,94,100,105,107,109,107,95,98,107,107,95,100,90,109,117,107,112,115,104,102,99,106,96,88,108,92,106,105,108,102,119,114,101,114,104,113,98,95,98,106,101,100,110,104,102,100,111,101,107,103,104,105,98,108,70,101,109,99,106,112,102,97,102,100,102,102,107,97,94,106,111,105,87,104,100,103,107,104,106,103,105,106,96,98,113,108,112,91,99,104,126,93,92,116,104,108,99,104,88,96,104,97,115,101,84,88,101,99,105,81,104,102,109,135,106,90,98,102,102,105,98,98,105,109,104,99,106,101,95,100,85,113,101,97,103,98,95,103,108,99,108,119,97,102,103,87,106,116,102,89,101,94,100, +515.50659,112,91,106,83,99,99,102,107,106,101,122,92,116,118,109,95,102,99,102,104,91,114,101,100,92,111,114,103,98,104,102,102,85,104,98,100,104,101,90,108,96,98,112,126,97,121,70,99,105,105,93,95,115,92,95,84,94,92,98,87,106,111,96,100,112,109,104,103,101,111,99,102,116,105,113,123,102,105,109,113,105,103,97,103,118,99,104,114,113,110,108,109,108,106,100,103,102,103,95,96,99,111,94,106,125,111,107,102,101,107,95,102,114,96,91,111,97,102,114,126,99,91,102,103,91,107,116,102,98,99,95,95,94,95,114,103,104,112,111,106,99,102,102,121,94,110,125,89,87,102,111,102,109,103,97,102,106,99,113,103,99,107,99,108,75,97,92,99,104,103,104,108,98,99,99,109,103,107,117,90,110,114,98,99,117,101,109,103,105,101,68,106,113,99,116,117,111,94,101,94,99,108,105,119,111,101,101,116,113,104,105,104,97,100,97,88,97,112,105,104,100,100,89,101,91,96,97,105,107,115,101,110,105,107,96,97,118,96,99,121,113,105,87,106,96,104,100,100,107,113,110,98,114,97,101,103,100,113,100,117,92,105,91,94,113,103,111,105,115,112,100,105,97,102,108,99,102,104,100,112,122,107,109,99,85,117,95,109,101,114,103,91,124,104,117,102,92,112,97,101,102,101,113,104,96,95,110,111,100,110,75,111,105,84,111,103,98,90,103,96,124,101,110,115,103,102,122,101,109,103,71,102,101,104,126,101,120,99,106,112,107,98,105,105,110,105,95,102,94,106,100,103,104,106,81,106,110,105,111,106,89,100,98,112,114,117,105,116,103,110,114,95,106,101,100,98,107,109,116,87,109,120,83,100,106,91,95,101,95,111,103,97,104,107,100,110,102,103,103,107,103,109,107,102,99,99,94,106,114,109,99,94,99,107,97,99,107,103,105,101,101,105,109,99,100,97,100,98,90,122,107,117,110,99,108,100,98,110,83,98,103,97,104,102,101,106,101,108,111,110,105,101,108,103,91,105,112,110,117,98,100,108,108,106,103,106,104,102,108,96,110,105,94,106,105,100,101,105,113,103,114,113,121,101,104,106,90,112,97,85,113,111,110,103,110,106,107,116,110,105,103,110,106,97,112,113,99,105,109,101,122,104,102,102,97,102,98,95,104,90,115,98,121,107,104,99,99,110,103,106,107,108,117,96,99,110,97,111,108,94,107,100,104,117,115,112,100,99,99,98,108,103,107,103,95,84,103,97,105,98,112,103,103,99,108,98,100,109,105,104,96,103,104,103,99,97,104,107,103,118,104,95,113,103,101,96,104,103,108,112,106,113,107,98,110,90,102,97,112,101,110,101,109,102,103,106,115,99,89,104,100,109,112,108,112,105,97,100,108,105,109,98,108,109,105,108,105,110,104,110,98,113,98,93,95,109,103,110,121,101,110,114,109,111,120,112,100,112,94,103,95,96,72,117,113,106,117,109,103,110,108,100,100,105,96,111,113,100,100,95,105,105,100,106,104,98,106,117,103,112,104,100,112,105,100,81,91,95,114,94,121,114,112,114,99,107,107,120,109,106,118,104,103,107,106,119,83,119,92,107,115,111,105,100,104,106,108,117,92,98,98,96,92,99,103,95,110,104,104,96,98,107,98,105,118,114,81,106,115,96,115,109,105,99,104,121,105,107,105,95,102,110,110,103,100,111,104,107,108,110,100,112,104,114,94,104,101,113,109,100,98,96,109,105,100,106,114,106,108,91,102,111,105,93,93,113,100,103,97,110,110,104,105,96,104,112,107,107,98,98,88,102,90,103,96,100,104,105,95,101,115,101,102,104,109,84,96,107,97,112,98,109,101,110,102,104,98,105,107,90,114,130,102,106,107,104,95,105,108,106,97,112,103,100,96,100,102,100,98,86,102,91,116,120,101,104,102,107,113,91,91,124,100,105,101,103,97,106,95,103,105,104,114,112,103,105,98,117,96,116,109,72,107,92,95,108,111,110,104,106,110,104,106,121,103,113,113,74,102,90,99,105,119,108,124,108,99,101,109,103,108,117,109,107,99,82,105,107,105,109,113,105,111,104,97,98,115,113,101,108,97,111,85,114,109,104,99,107,102,110,126,95,102,95,99,112,99,103,112,114,114,106,114,107,120,106,106,107,110,103,94,109,112,105,106,100,100,102,108,102,105,95,104,100,98,106,107,94,100,109,94,95,112,102,104,106,102,100,99,92,104,98,101,94,101,107,100,107,105,104,99,109,107,97,109,106,113,104,95,99,107,102,105,104,102,110,106,108,108,101,127,93,108,99,99,113,99,95,100,110,93,102,99,114,94,117,101,105,104,100,101,120,107,90,99,109,113,98,104,105,114,86,104,87,100,106,96,118,109,103,109,111,114,114,101,104,105,104,115,96,98,111,99,100,98,107,101,101,105,95,112,79,113,98,116,110,102,99,106,110,97,107,102,106,91,107,108,116,109,106,96,106,97,98,110,121,98,105,116,98,110,110,94,99,114,102,112,109,95,116,98,98,107,106,113,112,91,110,116,108,120,113,91,95,97,103,113,101,97,104,85,113,97,100,105,108,90,80,102,108,98,105,110,104,113,99,105,100,107,101,100,109,106,93,103,100,97,113,112,107,100,102,110,116,106,109,120,92,110,113,99,113,100,117,110,104,127,100,109,104,107,117,107,109,104,106,100,99,96,117,99,106,119,103,114,115,113,116,94,106,117,98,108,108,104,119,107,112,105,105,115,119,108,114,102,112,110,105,112,89,104,106,97,112,115,113,103,108,105,120,106,100,108,111,108,102,102,102,106,106,103,105,109,121,101,89,96,114,113,105,102,113,113,107,112,113,107,96,107,120,112,102,116,109,117,119,116,118,105,106,112,113,107,99,109,114,103,113,103,109,105,117,100,102,108,126,99,92,109,105,94,105,108,105,107,108,107,113,100,104,111,104,104,102,119,105,110,92,105,106,106,100,108,100,96,102,121,111,112,100,113,96,94,107,104,113,87,98,104,97,115,96,94,105,113,109,107,107,115,106,102,104,102,100,96,101,107,119,107,114,109,107,113,95,99,106,107,119,97,111,106,97,88,107,112,96,117,92,104,124,105,95,105,118,111,88,105,104,106,108,98,96,107,107,85,110,104,112,103,109,103,101,104,117,95,99,111,102,101,110,102,106,99,113,108,109,102,101,98,95,112,99,100,101,103,112,113,95,120,105,109,109,112,108,102,85,103,102,106,99,94,98,107,102,103,95,105,105,121,103,105,108,111,102,108,97,111,110,113,105,106,106,116,103,106,105,98,108,122,100,115,99,109,106,102,107,110,100,107,105,109,105,109,107,105,102,109,109,134,103,113,106,110,139,101,103,109,113,103,111,113,112,102,108,107,84,103,98,96,104,99,87,87,99,99,106,117,110,106,99,104,120,112,103,102,107,104,106,110,109,101,104,94,99,99,99,112,99,115,89,112,114,101,119,84,107,95,100,100,104,110,107,125,106,99,79,99,106,103,124,103,112,71,106,93,105,101,100,107,103,96,92,111,107,103,100,99,107,105,102,91,98,109,101,99,105,113,108,110,117,100,105,103,99,105,96,107,109,106,104,99,116,101,106,106,105,106,96,95,109,105,99,105,111,109,112,100,105,118,107,128,113,113,102,97,103,102,115,109,109,113,114,97,113,97,101,103,122,105,108,115,114,99,103,97,101,108,109,102,105,105,105,106,107,100,111,112,104,106,111,104,103,94,104,104,99,103,101,108,111,118,99,102,113,103,99,98,106,96,108,110,98,97,96,109,116,119,109,109,120,102,114,106,104,106,105,98,111,105,100,110,110,114,109,103,107,108,117,107,85,96,108,106,108,118,96,104,102,98,106,106,100,111,105,103,104,108,101,98,95,110,110,105,110,109,109,89,111,96,103,109,107,84,106,106,108,98,110,109,101,106,109,109,108,107,104,100,113,100,104,111,113,99,104,106,113,99,105,112,112,112,105,103,102,99,117,110,107,98,99,108,92,102,117,106,110,98,119,109,103,102,108,108,100,113,112,114,100,101,115,117,98,102,111,109,114,113,107,115,104,111,112,109,113,113,106,107,94,99,105,109,91,109,107,98,108,109,102,107,111,105,111,96,100,116,84,90,124,107,96,114,94,121,103,102,103,98,109,104,118,124,106,99,122,114,118,113,99,114,99,115,109,113,109,111,106,105,109,110,94,118,99,108,99,96,115,110,109,110,100,109,108,109,81,98,108,103,96,96,103,108,107,104,106,105,107,98,102,104,112,98,111,107,106,111,106,99,99,107,106,105,97,92,100,122,104,119,108,95,107,103,130,112,113,111,116,109,110,119,112,99,122,103,101,96,90,114,102,106,109,101,97,105,100,98,112,104,105,143,112,110,109,80,95,92,111,95,89,115,99,117,114,109,104,101,96,107,108,102,113,116,116,102,109,101,105,103,104,111,113,104,101,98,109,112,114,107,112,93,98,101,101,105,105,105,97,100,108,96,109,92,114,104,104,104,94,105,90,103,106,104,105,98,101,100,103,103,108,103,118,93,105,137,106,114,112,105,105,109,101,101,105,109,99,108,109,106,96,94,95,65,112,99,94,99,110,111,102,106,113,108,110,97,110,107,117,100,106,104,113,108,104,100,106,104,116,102,103,108,103,109,104,116,109,100,95,102,99,115,97,99,106,106,104,99,84,109,110,102,101,107,103,108,102,101,96,84,106,110,108,111,104,103,107,109,120,120,103,113,103,77,105,115,97,91,111,102,108,84,99,106,103,96,113,112,94,109,112,96,111,110,109,117,121,91,99,97,87,99,103,115,97,109,93,124,101,113,112,118,96,125,115,98,111,98,113,107,90,102,112, +515.64734,122,110,93,110,103,103,103,100,104,102,105,88,93,104,105,102,96,105,108,105,101,101,104,119,105,103,74,94,116,104,99,107,99,107,104,103,114,99,98,111,100,104,88,108,100,104,96,97,96,116,92,104,102,96,90,102,110,101,107,111,108,105,109,103,96,96,108,112,103,98,109,109,97,103,105,100,101,112,112,101,99,107,101,96,125,101,105,105,102,102,103,113,101,109,107,96,106,100,101,102,117,106,101,90,79,110,105,119,99,96,98,98,118,102,100,101,103,108,105,99,107,110,104,129,98,109,100,95,116,105,117,114,90,100,102,110,90,100,96,120,100,115,108,99,102,93,108,101,81,100,107,99,107,116,95,99,109,100,100,99,106,116,114,98,96,107,101,97,98,97,100,114,87,105,97,98,104,86,116,102,106,105,106,99,103,102,98,93,105,103,88,107,108,103,97,95,95,96,117,98,96,99,104,108,84,103,94,109,105,99,109,101,111,93,97,108,91,101,99,99,98,108,95,99,105,120,99,100,108,107,103,111,109,110,106,113,96,109,85,100,109,91,98,112,96,98,106,99,103,106,107,102,102,116,109,102,109,109,111,100,115,99,93,112,103,101,100,102,100,105,92,109,106,118,115,100,105,111,103,92,126,96,127,107,102,88,103,100,102,105,92,103,100,95,98,116,113,87,108,111,97,103,99,110,101,108,108,105,103,111,98,109,114,107,101,112,101,123,109,110,109,104,104,114,112,103,114,97,102,113,96,99,106,99,102,107,96,109,84,105,104,106,107,115,98,121,110,106,99,111,109,100,121,107,100,105,106,108,101,113,74,106,109,93,108,106,109,104,108,105,110,108,108,108,107,102,106,103,105,108,109,101,106,106,101,98,93,110,111,103,111,92,103,98,102,105,104,97,103,106,99,98,101,107,83,112,102,117,109,100,104,109,106,104,103,111,95,101,106,100,105,84,106,118,99,103,112,99,94,99,101,117,105,108,105,99,96,105,110,102,69,107,93,105,122,103,107,109,105,111,103,100,108,99,109,96,121,107,108,108,106,112,113,99,116,118,105,100,104,108,101,101,107,103,99,102,106,100,106,96,105,128,113,106,106,105,114,109,103,109,104,100,113,114,88,114,104,109,112,113,103,114,124,103,99,100,106,109,101,95,114,99,101,100,105,108,110,106,65,105,113,99,104,113,104,106,100,102,104,106,84,106,99,98,107,109,96,104,107,104,108,115,97,99,108,101,101,109,98,112,103,108,102,108,96,119,105,109,114,100,105,93,102,99,98,105,110,109,113,105,108,96,102,104,96,103,101,97,110,106,101,106,100,96,98,111,104,97,112,113,107,112,106,96,118,114,104,102,106,102,117,91,100,98,96,117,110,106,98,106,103,104,107,111,103,100,117,107,106,99,113,110,111,99,107,103,98,107,106,114,118,92,95,111,90,111,96,101,99,99,110,102,103,96,105,105,103,99,101,103,96,100,104,104,117,102,104,108,117,111,112,121,113,102,101,116,109,129,106,110,111,78,90,113,91,109,101,113,110,108,112,109,110,107,103,96,96,105,102,98,106,126,97,95,109,96,106,106,101,87,100,92,106,99,105,106,105,102,101,102,104,106,112,98,105,109,111,98,97,107,113,101,101,95,99,99,103,105,99,103,107,105,90,106,105,99,106,103,114,105,121,102,94,114,108,91,97,111,109,102,112,97,110,102,128,100,103,108,104,96,110,105,103,99,86,105,103,78,104,95,105,97,113,105,108,105,102,110,110,118,108,103,108,99,106,107,106,103,107,101,111,103,106,114,107,110,109,107,109,102,99,103,95,102,118,103,100,108,108,110,117,104,97,101,115,109,100,99,106,104,108,106,72,110,117,117,106,96,104,102,107,112,98,86,95,85,107,108,114,105,95,94,104,106,109,103,102,108,101,96,100,104,82,110,85,110,104,105,100,103,109,108,104,102,102,101,97,114,105,96,94,110,108,103,95,95,103,86,85,103,93,120,110,114,99,105,106,120,113,105,102,112,104,111,110,98,100,98,100,97,103,127,108,103,116,97,97,113,103,110,100,101,109,112,106,100,91,107,94,100,98,100,107,102,108,104,117,91,99,109,94,104,100,121,110,103,91,99,104,92,107,109,105,103,99,95,105,106,102,145,110,109,103,112,113,106,89,112,101,102,104,105,100,104,105,101,99,116,105,87,105,95,114,96,106,100,118,103,96,96,91,118,103,111,103,108,113,99,111,108,97,101,111,102,112,105,99,107,97,96,105,105,96,98,106,97,103,100,96,111,100,90,93,114,98,109,114,109,115,92,104,117,110,103,89,100,104,104,105,90,97,103,85,99,109,88,103,107,102,99,114,103,102,98,107,95,117,97,108,124,107,100,106,85,109,104,105,109,110,105,108,117,114,112,99,113,108,113,106,104,94,111,103,93,106,104,99,106,110,105,95,96,74,83,115,114,95,67,110,107,110,117,101,99,106,104,97,105,113,113,99,104,109,105,114,90,117,98,102,108,103,114,97,111,109,95,94,116,96,110,112,110,106,94,103,110,94,111,111,112,105,111,105,104,110,96,102,104,106,104,108,112,91,111,101,89,102,100,101,91,118,94,125,114,113,93,103,109,99,106,111,96,104,93,113,110,102,98,110,96,93,107,109,96,104,99,108,97,103,103,105,100,112,111,105,97,82,99,104,103,109,115,113,102,107,104,110,98,108,115,111,106,99,105,108,106,98,111,104,111,121,94,98,114,102,117,113,109,105,99,108,116,110,96,102,109,130,110,102,109,99,125,105,112,114,103,107,102,113,99,119,108,107,106,106,118,109,109,106,112,110,99,112,108,98,99,99,104,100,110,84,100,107,112,115,109,104,106,108,112,102,108,110,102,119,101,103,99,109,114,112,102,111,100,106,115,107,106,100,104,108,109,110,105,106,113,103,99,102,106,108,104,103,95,98,99,114,111,91,104,112,117,83,98,113,98,108,113,110,102,98,104,104,109,96,108,110,110,103,106,116,96,99,122,102,111,110,117,107,116,106,103,80,112,106,104,98,103,104,98,108,106,106,100,95,95,103,103,103,103,109,112,106,101,111,104,119,104,119,110,110,108,116,100,87,103,102,107,104,102,99,109,94,110,111,99,106,99,87,105,105,113,113,113,106,108,108,112,110,104,117,99,93,101,108,109,104,106,103,117,108,109,109,118,110,101,95,107,110,100,115,107,103,102,109,94,90,92,108,115,107,103,107,106,113,104,105,129,110,95,98,103,117,101,109,99,98,104,109,105,79,94,109,116,120,106,121,110,108,98,103,107,103,101,109,98,118,101,103,107,104,117,96,90,100,121,123,103,106,109,112,108,116,106,99,111,108,119,111,108,102,108,102,104,126,107,108,108,119,104,111,104,109,96,98,93,105,98,100,90,96,102,127,98,106,116,104,99,104,95,108,116,92,103,106,104,92,110,107,110,110,109,112,88,92,98,110,111,99,93,102,100,114,114,103,120,105,91,101,98,109,103,114,103,109,112,108,100,98,120,109,110,108,106,106,81,89,99,112,105,110,101,106,110,117,114,101,107,102,110,101,108,108,110,111,101,115,105,100,103,105,105,107,90,110,94,86,96,95,87,101,100,101,93,101,102,120,107,102,109,103,105,112,106,103,99,88,135,107,88,99,118,105,102,98,100,105,124,103,103,100,82,110,109,100,99,132,107,95,103,101,99,109,113,114,108,96,100,106,100,93,91,100,101,103,102,105,109,111,97,105,113,110,105,112,117,84,98,101,104,105,96,105,99,119,100,110,109,96,103,106,104,108,101,105,117,99,112,107,105,96,107,101,102,112,89,99,96,108,109,91,100,95,100,99,112,95,99,105,110,100,108,76,101,115,102,111,94,100,114,113,132,116,107,117,105,112,109,109,95,103,96,119,114,105,100,97,103,110,109,115,103,115,106,112,102,93,99,96,102,102,110,102,111,104,99,109,96,99,101,97,107,109,96,104,111,100,106,106,111,99,95,103,105,109,110,114,98,118,105,117,107,104,106,115,102,104,110,110,100,95,102,102,106,104,101,106,93,97,110,104,124,110,135,105,113,106,99,87,100,113,113,112,112,109,118,109,108,103,95,136,100,91,104,102,110,105,112,105,109,110,95,112,101,109,106,112,108,96,101,97,98,117,106,106,109,96,114,110,120,116,107,107,102,111,96,115,105,102,103,97,98,110,106,98,99,114,106,103,103,111,104,115,95,93,89,112,112,114,105,107,107,114,107,93,109,115,111,99,93,108,107,110,104,104,107,96,96,107,103,93,106,87,112,107,107,105,104,104,110,100,89,107,103,114,100,95,99,103,116,125,101,107,114,105,104,110,103,105,105,96,105,108,93,90,92,107,120,116,96,97,103,104,91,102,106,99,102,106,113,110,110,92,111,104,105,85,103,103,105,109,127,97,103,97,102,100,107,87,105,96,112,106,110,110,121,99,99,116,88,72,94,102,106,111,108,105,105,105,97,102,98,95,104,114,102,108,100,102,104,97,100,101,99,99,98,85,95,103,100,99,110,104,103,94,107,100,108,102,106,107,99,116,103,120,108,113,104,96,77,103,99,101,106,105,110,105,102,98,69,115,104,121,103,109,68,100,100,113,108,94,107,112,107,92,108,109,104,101,99,109,111,123,100,107,93,102,109,108,96,104,97,109,102,92,103,116,101,104,96,116,100,98,100,103,105,102,109,112,105,117,105,106,102,95,105,117,70,97,108,100,109,94,109,112,99,108,107,102,107,98,101,97,87,105,97,98,109,106,123,109,93,75,106,125,109,101,98,88,98,96,99,103,112,105,113,112,110,115,90,103,124,98,99,98,97,97,106,104,109,109,95,68,100,112,106,99,106,100,86, +515.78802,99,103,109,96,105,112,105,104,110,107,97,89,90,98,97,103,90,108,102,94,107,105,116,94,82,96,95,99,106,113,113,98,104,102,107,114,95,96,98,94,91,119,101,102,96,129,101,105,100,107,96,103,117,89,108,101,94,86,109,104,113,113,110,99,110,112,89,92,95,101,108,95,106,99,108,107,111,104,104,95,107,85,111,100,105,105,94,109,108,98,111,95,98,101,94,87,106,103,96,107,109,107,121,98,92,100,108,109,97,96,104,106,103,109,96,112,103,110,105,117,105,96,110,100,103,109,109,109,122,112,97,104,102,112,122,95,103,107,93,105,103,114,122,109,102,93,116,108,107,102,111,113,108,92,116,99,99,95,93,97,96,109,107,93,108,100,106,113,123,100,105,105,99,104,101,109,108,112,105,102,90,79,98,104,93,83,109,92,100,96,105,101,101,103,106,112,97,106,115,106,103,110,109,108,104,103,105,110,105,114,107,108,104,102,100,101,108,111,105,98,113,109,112,95,116,105,104,105,127,96,103,105,108,109,105,99,98,118,125,104,100,99,112,109,99,95,119,110,113,101,101,110,110,112,100,115,106,100,114,112,106,123,108,94,107,105,115,112,111,106,103,111,105,106,102,103,97,102,90,98,110,104,111,100,109,100,92,112,100,111,107,108,111,110,104,122,98,97,107,99,107,104,105,109,98,112,103,100,102,114,88,105,105,98,112,99,101,103,96,111,114,109,107,99,107,97,102,79,113,113,108,105,117,102,110,108,109,108,110,103,107,102,112,113,94,104,116,110,107,107,94,103,102,106,105,111,110,113,108,109,108,79,107,98,90,112,104,103,96,97,106,104,106,93,110,98,107,100,114,115,120,102,112,105,105,111,113,105,105,100,120,107,90,108,109,103,102,100,97,112,100,100,104,111,92,107,106,93,113,105,104,107,116,112,104,100,108,104,104,120,111,109,104,103,102,103,101,103,114,113,120,120,103,96,106,102,110,105,111,110,104,112,106,117,85,107,100,114,108,117,109,100,99,113,101,112,102,107,112,122,95,81,102,109,111,102,102,90,113,99,101,111,95,97,107,105,112,101,104,132,101,92,108,105,105,97,114,106,111,95,100,120,109,100,106,98,87,114,105,124,105,102,110,103,98,120,92,100,103,100,118,102,105,106,105,98,114,107,94,107,113,87,93,117,103,112,108,106,76,106,107,111,103,99,107,99,88,92,117,110,95,118,109,112,108,94,107,104,99,106,106,116,116,107,107,94,100,111,109,106,110,100,100,104,113,77,113,96,99,106,83,115,101,99,103,108,106,105,87,106,102,123,104,96,112,102,105,105,98,103,99,104,96,98,106,102,106,101,117,100,105,104,116,102,91,105,96,95,104,105,105,100,106,102,102,97,100,102,103,100,111,94,107,104,109,106,113,103,113,103,102,109,101,116,99,96,83,109,101,105,106,106,92,99,115,102,106,106,113,107,104,103,109,105,115,94,108,107,104,101,109,106,107,108,102,113,103,102,97,104,136,104,106,102,86,103,109,79,111,99,117,98,107,104,102,96,100,105,102,98,109,107,98,111,101,91,95,99,107,93,110,97,104,104,113,103,113,119,106,113,100,100,108,97,109,107,94,112,114,109,107,102,107,112,104,100,97,98,115,114,105,84,102,100,101,105,120,99,117,102,108,100,96,112,109,108,105,109,100,108,126,117,110,115,95,105,106,108,114,94,109,90,110,105,90,98,107,107,104,110,99,98,112,103,99,105,98,102,119,100,98,111,109,100,108,104,105,105,115,105,103,118,117,101,98,103,100,105,105,102,106,86,91,100,103,101,99,108,100,104,109,108,95,94,109,101,105,104,117,110,110,104,103,98,95,118,106,101,109,98,107,99,94,110,112,98,107,108,95,106,111,101,115,99,98,99,106,111,109,102,99,103,99,109,100,101,107,112,92,133,111,95,107,100,116,105,100,98,107,103,121,105,90,86,105,104,111,97,102,106,112,106,104,111,108,110,111,106,117,103,111,115,106,108,108,104,117,110,98,111,124,100,99,106,114,106,101,92,103,95,97,100,100,117,111,118,99,104,108,121,112,112,112,107,88,98,113,108,109,98,117,107,103,89,104,106,101,97,103,110,109,105,103,109,109,102,104,99,105,99,107,121,99,112,113,117,109,105,99,112,122,111,99,116,133,110,106,99,107,95,100,117,95,113,101,107,107,111,97,109,111,108,107,113,106,102,107,98,136,101,99,106,107,98,101,101,98,112,99,101,104,103,96,96,100,115,99,113,100,104,103,86,112,105,106,109,110,109,98,97,100,116,91,100,112,104,100,96,94,102,108,113,104,101,109,100,95,115,115,98,109,111,99,102,113,99,108,103,115,80,114,94,109,97,102,105,106,103,101,105,93,113,130,98,91,114,109,102,112,105,105,105,104,110,98,115,100,115,93,108,96,103,109,105,103,98,106,103,102,107,116,100,99,95,118,113,114,99,109,107,109,99,111,105,114,106,113,92,115,91,104,106,102,101,111,105,106,112,92,103,99,106,96,105,105,115,98,114,107,103,99,120,111,93,104,113,112,96,96,113,104,106,100,118,105,111,109,108,110,106,99,100,113,121,83,107,108,102,111,100,102,108,103,92,108,102,116,97,111,104,117,101,106,102,121,113,103,113,109,105,93,112,102,101,108,83,133,113,104,110,97,105,108,112,102,103,99,84,98,116,99,113,105,101,99,104,108,110,102,105,105,105,106,110,118,98,104,103,104,99,102,109,107,99,106,110,106,107,104,103,106,118,112,111,117,112,108,99,101,108,109,109,117,97,91,101,102,98,102,110,113,115,111,109,105,99,101,103,98,112,113,117,104,117,138,108,102,113,93,108,99,106,99,110,105,95,102,100,105,114,103,113,112,108,108,111,108,100,109,105,111,121,109,109,96,115,108,105,104,115,98,112,106,112,112,90,101,113,94,109,113,102,95,102,110,103,107,106,115,110,106,103,103,106,105,98,102,104,99,109,116,99,101,104,107,97,99,109,103,104,105,110,82,109,105,109,115,108,101,105,106,111,106,99,110,104,96,63,108,99,104,116,108,100,115,94,112,105,110,106,102,100,102,109,95,105,106,101,102,107,101,89,107,103,108,109,112,102,106,110,102,105,101,108,106,94,118,100,90,112,108,93,102,98,110,111,100,95,95,113,107,113,109,104,110,90,105,101,110,107,107,120,113,104,109,99,101,100,100,88,108,105,106,118,105,115,112,102,102,107,113,106,112,106,108,77,108,108,109,105,100,99,94,106,106,100,108,110,112,107,107,98,122,109,115,115,103,110,108,95,102,108,113,103,99,108,111,98,100,109,105,108,105,105,96,105,109,117,112,113,113,102,94,100,108,107,119,110,106,97,101,88,102,114,101,108,97,105,101,109,100,91,99,108,103,109,112,95,110,107,76,107,114,96,99,100,114,118,108,112,114,106,101,122,111,107,112,108,109,104,100,110,88,116,108,113,104,105,110,99,103,101,109,106,115,107,104,110,105,100,103,107,87,102,110,103,120,104,109,112,106,86,117,101,112,110,111,105,104,99,107,91,96,101,104,123,113,99,84,109,114,100,105,101,93,109,104,116,103,106,115,108,107,114,107,96,103,101,112,102,105,81,120,113,109,106,99,100,107,112,107,97,109,110,126,92,103,93,104,109,117,111,111,109,104,111,109,96,104,99,94,106,103,108,107,111,107,111,90,97,100,108,98,105,118,136,102,110,109,110,102,104,110,106,99,116,108,104,103,105,101,115,95,113,108,116,110,95,106,110,106,121,108,102,109,106,98,104,100,118,102,110,102,98,106,100,122,109,115,98,106,102,95,105,101,101,111,113,96,107,116,107,102,126,107,94,110,109,82,105,107,87,102,100,104,106,99,108,101,103,111,106,112,107,94,115,102,127,105,112,109,104,112,106,110,100,95,88,105,104,102,111,108,114,105,106,114,121,113,113,106,101,96,107,113,109,96,118,119,99,102,113,97,101,103,109,118,104,106,112,98,112,98,101,109,110,98,117,112,100,102,107,107,113,100,112,106,112,116,102,101,101,91,109,113,110,110,116,90,114,109,95,109,100,97,114,116,87,107,97,104,95,100,105,101,107,107,95,102,100,108,104,102,103,104,116,102,104,104,113,102,75,102,85,106,112,98,108,113,107,123,96,104,108,81,104,106,111,111,97,101,112,106,102,113,105,107,101,117,109,116,107,111,101,94,113,102,101,96,109,116,99,100,102,107,109,104,103,109,116,110,111,98,94,119,109,106,117,114,117,114,117,120,107,116,102,108,122,108,103,100,99,108,102,122,103,110,90,107,98,123,109,103,96,104,107,93,118,98,102,108,119,108,72,105,113,104,102,94,111,92,107,96,117,95,111,98,104,104,103,102,105,115,100,93,105,76,107,94,111,98,112,104,103,111,94,101,110,95,112,102,92,95,112,103,108,100,118,113,113,102,108,94,119,87,110,121,106,102,122,97,97,101,100,100,126,110,106,118,107,102,104,103,110,109,102,109,113,104,113,99,107,117,101,109,112,109,100,101,97,103,99,106,113,102,96,109,104,101,104,104,97,109,100,110,116,102,110,105,99,106,110,103,101,111,102,73,103,113,105,91,92,103,98,90,100,106,113,115,104,111,103,118,110,113,107,110,96,109,108,105,98,99,112,105,100,110,100,97,101,108,107,102,90,93,107,120,113,99,104,112,96,106,110,89,113,104,114,98,103,105,114,105,108,97,100,96,103,116,103,90,104,105,80,100,106,103,118,109,103,95,100,105,87,106,99,117,96,105,108,90,116,102,110,95,88,96,95,115,85,113,108,108,83,100,99,85,100,118,94,109,102,77,104,106,105,109,102,94,112, +515.92871,101,92,77,104,107,91,100,103,101,98,108,102,97,100,118,107,97,111,116,117,105,121,97,125,99,108,108,115,97,104,123,91,108,98,105,107,92,101,112,108,102,97,96,95,97,106,96,97,103,91,118,97,105,103,96,106,100,101,103,101,95,92,105,86,106,104,108,100,85,99,115,106,94,108,102,107,95,109,110,88,108,102,93,102,106,101,104,99,105,114,103,113,113,95,103,102,102,96,101,103,91,101,101,105,110,95,113,113,102,95,101,107,108,72,89,99,100,109,105,105,108,97,111,112,99,112,118,95,99,97,97,108,104,103,105,115,99,113,106,99,86,91,107,94,99,101,132,109,102,104,106,100,108,102,113,99,103,102,116,105,93,99,94,108,121,96,113,95,101,104,100,102,97,101,97,104,95,93,100,101,107,112,105,105,111,102,102,109,111,107,97,95,105,86,96,97,104,96,112,112,103,113,91,108,98,85,111,101,111,103,101,104,119,101,108,102,97,107,109,117,87,107,109,107,79,104,105,109,103,105,87,112,104,106,99,89,100,102,107,107,93,110,105,110,108,94,109,109,100,103,94,104,103,97,113,111,98,101,99,114,97,121,103,109,104,90,105,96,92,104,113,117,110,95,99,102,108,104,99,104,106,116,120,99,101,106,108,100,102,116,138,106,104,100,102,110,108,101,97,104,105,111,110,117,99,90,106,101,83,112,99,103,108,98,111,107,108,108,109,95,117,108,119,108,107,96,103,129,111,123,108,98,109,101,125,103,85,114,108,95,105,95,99,102,107,103,100,99,111,107,97,110,105,74,109,100,104,112,98,113,112,106,95,103,111,101,91,107,97,110,106,108,117,113,95,96,104,107,97,101,117,103,96,102,101,95,100,100,100,107,117,102,103,116,102,105,96,109,93,101,101,116,102,106,97,96,95,105,109,100,92,105,122,92,108,105,97,97,105,100,104,98,109,96,91,101,103,91,108,120,108,99,104,102,98,104,98,109,107,109,113,107,106,95,108,91,110,107,107,109,98,106,101,106,104,95,97,108,92,103,103,108,97,123,110,102,116,95,104,105,104,117,102,120,91,103,98,107,105,109,110,119,103,100,121,137,126,96,96,105,111,110,110,108,86,104,100,108,118,104,121,109,94,91,112,114,104,101,110,109,115,111,120,110,110,109,112,104,106,102,109,123,117,137,101,101,104,105,108,109,99,110,100,98,117,107,109,98,90,112,102,100,90,97,99,103,121,100,103,113,86,108,125,109,112,100,107,112,110,103,105,101,116,98,101,101,98,108,98,101,109,108,105,106,108,113,109,111,97,116,107,101,106,104,109,87,103,114,108,90,106,96,98,90,115,105,99,113,113,118,116,107,110,115,112,108,100,101,98,121,106,98,110,91,107,111,110,96,102,112,107,99,103,102,118,105,103,111,101,98,108,120,101,104,102,107,110,104,101,110,111,98,99,118,107,113,97,111,112,98,115,92,106,104,126,99,100,118,100,101,105,109,98,99,96,99,105,105,98,101,101,110,108,120,115,109,97,129,109,99,102,112,117,101,105,112,102,132,110,105,111,119,94,102,114,93,108,87,100,95,95,101,100,114,96,99,120,113,90,108,105,105,99,104,110,96,102,108,104,103,63,98,93,114,103,106,122,110,98,104,110,112,105,96,96,109,106,101,98,93,94,106,114,93,102,105,114,101,104,100,119,109,106,107,99,110,96,93,108,97,101,94,105,106,104,108,96,97,124,109,109,94,116,122,101,104,106,105,113,94,103,110,109,118,111,106,108,124,97,116,104,113,103,105,103,98,104,116,110,101,104,108,95,107,105,100,105,100,90,114,110,115,118,106,95,112,114,110,109,99,105,98,117,115,103,110,112,100,102,107,103,104,90,106,93,109,109,112,105,107,98,111,106,94,98,101,110,105,116,105,107,100,110,108,104,94,94,97,105,95,99,103,98,108,108,102,101,105,114,107,105,117,97,101,105,112,103,93,109,101,111,103,108,109,104,108,105,109,124,104,95,123,105,100,126,95,95,113,115,99,108,94,106,101,104,96,103,109,94,112,104,93,99,110,113,112,99,95,108,103,109,124,104,114,103,111,101,101,94,113,105,118,106,116,99,106,108,112,106,114,117,129,100,109,104,106,99,103,108,105,106,109,112,115,106,94,105,94,104,98,99,108,105,100,99,99,105,102,99,102,102,101,96,96,110,107,104,98,85,116,96,111,102,100,101,105,91,107,104,99,94,94,104,94,101,101,108,95,107,104,106,108,98,94,104,109,84,99,100,107,96,102,110,134,105,105,110,117,105,107,96,112,99,84,105,93,102,109,110,95,110,89,109,101,98,92,88,113,94,110,91,107,104,113,102,97,106,104,115,101,104,103,101,108,109,98,106,100,110,104,88,113,107,111,99,104,100,95,110,104,118,121,107,108,102,107,102,106,99,97,86,73,111,108,108,109,111,100,116,97,117,95,96,94,96,80,106,107,110,114,106,98,106,103,112,98,100,104,102,100,96,111,107,101,111,105,93,109,115,103,101,105,88,110,101,106,113,112,106,109,107,126,107,98,110,101,100,102,95,100,92,95,103,113,119,109,100,108,94,67,108,107,109,99,74,94,99,101,100,107,98,99,100,116,114,108,103,94,106,105,99,94,110,95,101,116,98,97,110,95,100,93,99,110,104,102,120,105,94,109,93,111,96,97,113,108,99,100,102,103,113,103,97,100,111,121,93,109,98,98,105,94,110,90,111,101,96,116,105,113,104,97,111,103,117,116,107,98,98,97,97,102,99,97,104,100,96,96,114,107,118,105,100,103,104,110,122,105,112,103,100,105,108,106,96,92,94,112,108,107,92,103,108,104,107,116,114,106,99,109,109,90,111,111,104,94,106,103,115,109,103,109,111,124,103,106,114,104,112,104,102,111,106,102,116,94,108,100,102,104,105,114,104,95,106,105,103,109,98,94,102,116,100,102,97,107,111,105,110,116,106,113,90,97,104,103,104,100,109,103,99,99,92,97,102,108,107,76,99,99,110,91,115,98,103,105,100,104,103,113,96,96,109,108,97,118,110,98,96,105,119,109,104,108,104,98,117,87,97,103,77,111,101,109,110,106,86,101,115,97,104,91,107,101,98,105,110,102,123,114,88,101,102,104,105,104,103,100,108,102,114,101,101,96,100,115,113,98,104,105,95,102,110,103,102,105,93,106,107,104,109,109,102,109,113,109,106,97,108,86,101,103,100,120,116,104,95,106,110,102,98,91,102,96,105,99,109,114,104,105,103,94,105,100,90,122,93,111,93,97,102,110,92,94,105,101,101,108,111,73,96,100,95,102,107,95,113,112,112,103,108,106,107,103,101,108,109,101,108,107,98,87,107,123,97,98,100,99,109,105,102,102,98,95,99,100,95,118,95,109,97,98,103,101,99,109,92,104,98,103,87,107,108,106,97,105,100,98,111,104,95,107,102,98,116,78,88,91,102,91,102,106,104,72,104,114,102,108,91,97,120,108,110,103,97,113,106,112,104,109,109,112,98,100,99,103,102,95,103,104,108,91,98,102,109,106,91,97,94,93,105,102,97,106,116,105,109,104,109,115,111,108,109,89,109,104,97,100,114,108,99,109,111,102,117,97,105,93,105,110,105,107,104,95,102,102,104,106,106,69,97,97,103,104,98,106,109,97,101,114,103,101,105,100,108,111,109,115,99,92,100,100,108,102,121,100,108,104,118,105,102,102,88,103,97,106,103,101,103,102,101,103,114,104,104,111,99,103,96,108,95,106,103,109,110,94,100,107,95,103,109,94,105,105,99,91,98,104,101,116,111,114,103,108,102,104,93,101,103,102,102,106,99,112,101,92,95,104,95,98,99,88,98,91,113,101,103,104,108,101,109,98,101,116,103,100,108,97,101,94,119,115,117,103,113,112,94,95,99,77,102,97,107,101,98,102,109,111,104,101,113,109,99,108,102,74,100,115,98,98,97,98,91,105,93,110,107,108,105,106,103,89,100,102,109,108,100,98,107,95,106,105,104,114,107,103,113,91,106,87,108,96,113,96,92,99,109,102,116,99,110,101,94,106,98,106,106,101,99,111,109,105,105,102,112,109,106,129,92,109,96,88,98,101,102,113,101,104,103,98,107,97,104,95,116,113,104,88,96,99,102,104,98,112,107,99,99,106,109,107,102,114,107,113,104,98,105,101,99,112,107,100,96,99,106,102,106,107,95,98,96,94,106,105,95,108,87,113,106,92,107,99,98,101,97,102,94,96,96,92,94,112,104,93,103,109,109,103,92,96,86,99,107,109,101,112,103,104,99,97,115,92,111,95,105,98,126,111,107,97,102,99,109,113,95,113,111,103,104,102,106,114,90,104,104,89,104,111,97,97,107,100,97,94,98,121,102,104,114,111,107,112,94,102,113,97,96,108,104,103,120,104,113,107,105,93,91,93,109,106,107,98,103,103,111,107,101,99,103,106,93,107,103,103,97,116,91,104,94,94,98,105,106,94,102,109,117,95,102,99,101,88,70,117,98,89,101,97,112,106,99,116,120,98,124,112,103,103,89,109,90,113,113,113,99,109,103,108,102,97,101,106,102,81,97,93,91,118,109,110,89,94,104,109,109,101,115,109,99,107,99,101,103,100,97,100,100,107,108,124,92,104,102,105,90,94,107,124,99,125,95,97,108,90,105,102,99,107,96,108,97,101,83,105,95,114,106,92,103,98,93,105,99,103,94,94,111,111,101,112,108,101,96,108,100,106,102,109,108,94,94,81,111,98,114,98,93,98,112,98,116,104,103,116,76,98,113,101,102,101,99,84,99,115,109,107,95,108,107,86,101,103,100,97,81,90,105,100,84,101,113,107,98,97,109,101,111,97,102,108, +516.0694,108,90,95,102,93,108,96,103,106,116,106,99,98,110,107,98,116,102,103,95,102,103,103,92,103,112,98,99,104,97,110,107,106,102,110,93,103,89,109,101,109,98,104,96,97,117,79,105,108,106,78,107,103,109,100,96,90,93,111,95,106,95,102,103,96,108,102,104,97,95,107,102,110,105,95,109,95,120,102,96,112,106,112,103,96,96,109,100,99,95,96,99,104,98,111,87,99,97,92,115,108,89,95,107,108,100,105,103,103,119,106,104,101,104,107,96,102,107,114,104,103,106,104,102,107,115,108,102,107,111,110,97,112,97,114,114,99,102,100,110,95,91,109,118,88,96,111,120,97,95,87,104,110,96,91,105,104,88,107,108,102,113,104,104,111,113,109,94,113,96,100,92,100,101,106,104,116,110,119,102,97,95,100,113,108,120,110,90,110,108,97,109,96,101,103,106,102,113,117,111,110,104,100,109,114,105,111,94,112,107,108,95,106,94,113,114,103,101,96,106,108,106,99,109,110,112,107,117,117,112,95,110,109,110,110,112,111,114,110,108,100,120,108,125,103,100,118,97,111,109,98,108,113,99,112,105,103,97,100,102,112,104,86,104,101,113,105,111,104,88,100,98,102,112,115,119,124,108,101,98,96,102,105,102,95,116,107,102,110,103,108,104,90,98,114,107,102,118,106,108,103,109,98,104,95,106,122,100,106,106,105,113,108,105,103,91,112,107,108,107,97,115,97,106,95,104,96,107,106,114,125,108,104,114,109,103,109,105,115,110,107,102,99,78,107,103,101,107,116,100,109,106,100,113,102,116,108,102,113,91,103,104,97,89,111,109,103,113,105,111,106,102,110,104,108,78,109,109,98,102,111,115,104,100,95,98,103,108,106,104,116,82,97,109,104,104,100,102,103,118,101,95,102,106,120,102,110,100,108,95,97,101,112,121,117,110,104,116,108,99,104,102,94,120,102,108,107,110,116,105,95,102,104,116,105,106,92,114,106,100,121,106,117,118,111,109,120,105,102,103,91,104,103,113,100,108,104,107,102,94,92,109,107,118,123,99,129,105,109,100,117,107,104,97,110,99,106,111,110,104,111,103,116,98,109,99,106,104,105,111,110,114,104,109,109,108,93,91,104,102,117,98,114,102,95,102,105,98,107,100,111,120,109,101,99,103,109,105,71,101,118,102,102,101,112,101,117,106,94,94,94,114,101,108,98,99,109,91,109,111,91,99,128,111,115,100,106,116,103,108,106,109,110,113,94,95,115,110,105,104,107,109,109,109,103,107,103,108,104,111,98,101,111,99,102,107,102,104,105,103,103,96,108,101,105,106,108,106,113,110,104,106,87,109,103,107,101,96,109,106,110,111,105,90,117,108,114,117,100,93,116,102,103,113,105,104,100,105,105,116,91,110,104,99,106,103,104,105,114,99,99,102,109,102,103,94,108,108,104,103,111,106,103,96,99,91,105,95,109,104,98,102,108,111,108,102,102,110,103,106,96,99,103,110,79,114,113,100,115,103,106,106,107,110,101,104,94,107,107,115,108,103,108,101,94,100,106,112,100,79,97,110,111,105,105,89,105,99,101,99,99,85,108,105,120,102,99,105,103,121,99,110,104,90,104,103,114,104,91,90,106,94,98,106,112,104,100,98,79,115,95,103,92,98,102,100,88,95,98,98,114,104,97,100,104,99,106,96,101,113,115,106,114,102,103,112,94,109,106,101,108,100,99,99,100,113,101,95,95,104,104,94,113,108,99,101,118,103,105,106,104,105,102,104,99,102,109,111,93,117,107,100,100,109,103,101,84,106,100,111,104,98,100,109,109,97,100,112,102,101,122,100,104,98,135,107,100,106,103,93,113,108,103,98,104,110,102,107,98,99,104,113,95,94,113,112,102,107,103,118,95,99,103,106,108,102,112,101,97,103,104,106,113,85,100,110,115,96,100,111,92,111,97,112,99,110,98,101,88,107,111,108,103,110,93,108,113,98,114,105,108,112,100,117,92,115,96,112,125,111,104,107,109,114,100,104,111,94,105,114,102,103,96,108,118,102,96,114,108,108,104,111,104,98,116,103,102,106,95,99,118,115,103,110,105,110,110,98,110,111,105,112,94,117,115,101,111,104,110,99,102,120,130,98,104,104,105,115,104,112,108,111,103,113,113,108,104,115,111,112,104,117,99,108,103,99,91,103,119,104,100,109,102,93,104,114,106,105,114,107,108,105,106,110,99,117,102,101,99,105,114,100,109,123,102,108,113,113,103,114,109,102,107,97,107,106,105,83,96,108,86,111,112,110,107,96,105,96,106,98,101,105,109,92,108,104,111,94,105,107,108,97,111,103,99,107,108,99,116,96,107,113,92,116,109,105,107,92,100,98,95,103,96,99,102,96,106,106,113,102,112,104,96,101,94,87,103,100,110,92,104,104,104,99,120,98,103,109,103,102,96,100,96,106,119,96,103,90,104,101,99,103,102,93,97,112,110,100,99,113,98,95,107,107,107,106,108,103,110,112,106,107,104,98,108,95,99,101,105,111,95,97,105,108,97,104,107,78,101,110,100,111,107,92,109,108,115,123,109,91,103,90,98,102,101,92,107,94,109,106,94,94,112,88,95,112,125,113,107,102,104,104,111,93,102,83,108,105,104,104,109,108,117,115,97,99,123,108,100,106,95,104,104,108,99,118,106,93,98,112,95,101,118,100,95,102,96,111,110,94,107,94,112,111,102,107,115,110,107,94,104,98,90,108,99,116,96,112,89,103,110,106,103,97,106,108,106,108,103,111,100,102,90,109,117,96,106,98,111,115,107,85,98,111,99,104,113,95,110,107,101,100,99,102,98,105,113,104,108,109,115,107,106,112,114,108,107,107,113,110,111,99,103,105,89,87,111,101,112,110,77,102,117,102,101,111,109,101,101,103,104,103,102,111,105,101,102,100,109,111,107,109,104,96,111,117,117,107,109,108,103,102,109,115,105,124,100,92,117,106,121,113,102,107,109,96,119,106,109,94,113,105,101,106,102,104,109,95,104,119,91,103,113,112,106,101,116,97,117,104,114,109,111,105,104,96,104,101,110,100,110,120,112,106,91,106,119,101,104,102,67,129,104,107,107,109,94,108,98,96,110,92,104,106,89,104,111,97,110,100,103,104,101,114,106,109,103,111,110,98,110,102,106,102,107,114,110,98,94,108,113,98,104,102,109,95,100,110,108,105,109,120,97,102,117,104,108,106,109,102,112,103,103,98,98,106,102,105,109,100,95,104,101,110,110,105,105,99,97,93,111,104,97,106,98,109,108,106,98,102,113,98,102,113,104,100,91,104,96,98,95,120,109,111,76,121,117,96,105,105,103,104,106,100,100,105,104,104,99,116,116,110,108,102,100,111,103,106,107,106,92,104,104,104,102,107,101,105,99,111,103,106,111,104,103,106,107,119,102,94,107,100,103,101,102,107,102,96,94,93,113,105,113,101,102,105,105,103,112,102,110,118,109,111,99,97,102,110,111,106,106,107,92,109,93,110,108,105,109,105,110,105,103,96,109,109,113,108,106,100,102,104,95,104,99,106,106,103,101,91,101,102,116,106,83,99,109,107,106,100,103,104,112,108,94,101,103,100,108,91,103,97,108,100,105,104,99,98,91,120,97,99,100,108,103,98,102,106,101,94,105,109,99,99,94,102,112,98,102,115,107,102,104,113,95,97,102,104,101,97,110,110,109,107,102,111,114,96,102,98,111,96,101,90,106,107,111,102,125,102,102,104,107,93,105,103,101,97,120,105,105,97,84,95,114,102,105,100,104,105,107,98,120,104,98,109,107,88,100,111,98,109,96,100,102,110,100,106,103,99,109,105,106,98,112,113,114,113,99,102,107,96,112,96,103,95,103,101,103,108,95,91,108,102,100,98,101,111,112,108,113,92,104,105,103,110,107,103,116,107,104,125,98,90,106,108,103,98,99,106,108,103,103,100,96,106,106,95,98,112,106,104,91,101,116,99,103,101,103,92,78,117,103,100,108,107,111,104,98,82,111,103,94,93,111,108,110,105,94,111,113,106,110,95,100,107,98,102,99,96,113,108,94,99,96,113,98,108,94,87,112,97,97,119,112,118,116,100,98,95,120,109,107,105,116,111,117,99,120,109,105,102,114,110,96,102,106,109,90,96,131,101,101,102,87,93,119,108,101,107,104,104,106,109,109,94,98,102,99,114,101,107,100,98,110,107,89,107,107,106,103,98,105,105,100,105,103,94,104,107,117,105,95,87,98,102,94,102,98,103,110,92,103,110,105,101,106,99,95,109,98,94,102,100,113,98,95,101,98,97,106,108,111,104,108,97,105,101,101,103,102,106,104,121,96,112,104,109,112,119,98,115,103,120,113,95,102,88,87,114,108,92,101,112,104,116,111,111,102,105,109,106,108,108,95,100,98,109,110,103,102,105,105,108,103,109,94,103,112,104,101,102,109,121,105,115,95,107,99,96,106,88,104,103,96,95,93,94,84,105,97,108,106,92,102,99,96,104,105,101,120,96,101,96,104,113,102,101,107,109,109,118,108,110,108,99,105,99,106,107,109,94,107,117,109,101,103,99,117,102,108,106,107,90,91,106,105,111,116,108,112,97,108,99,103,115,109,106,109,99,101,98,107,103,108,99,112,105,109,89,109,95,108,98,102,106,105,105,106,109,121,106,109,121,101,109,99,91,104,99,97,108,61,106,105,107,97,122,98,111,109,101,68,97,84,97,93,106,97,113,101,108,90,107,111,100,97,102,99,104,107,108,96,99,109,99,109,104,97,118,109,103,97,106,113,116,102,107,98,87,100,105,88,116,109,102,102,103,116,102,114,97,106,98,103,95,112,98,97,103,92,118,79,108,101,94,107,106,98,106, +516.21008,100,99,116,107,96,104,101,92,100,102,103,95,111,109,103,112,104,117,106,92,105,92,115,109,100,107,102,120,100,114,112,101,95,109,96,96,113,103,98,99,95,104,106,108,100,118,113,100,108,111,107,96,112,104,109,98,95,107,103,107,95,98,108,95,102,107,87,117,95,100,112,114,110,98,103,109,97,112,103,101,129,110,107,103,114,101,102,103,99,97,99,112,105,96,105,119,103,102,125,101,104,95,104,92,110,95,113,108,91,100,97,111,102,97,103,100,103,109,121,88,106,97,91,109,108,115,106,96,97,103,111,106,76,116,112,96,97,100,99,100,97,105,96,103,105,100,107,100,99,102,109,101,115,102,109,104,108,103,115,112,105,100,110,105,100,102,97,95,116,99,121,101,113,104,107,123,107,101,107,109,92,86,103,108,113,102,118,100,112,95,103,108,109,111,102,100,117,106,95,106,100,100,96,98,109,99,101,105,103,108,104,98,96,105,115,94,100,101,96,109,107,108,80,105,87,113,104,100,101,93,104,107,103,106,100,100,106,106,103,113,100,98,115,115,110,103,100,104,94,104,98,113,100,107,104,109,87,111,96,90,113,92,103,100,106,106,107,106,109,110,109,101,114,108,101,99,105,117,105,105,98,111,111,103,103,107,90,106,87,115,111,106,117,105,110,105,110,104,109,101,107,101,70,92,80,106,102,113,99,99,101,108,107,113,89,108,105,98,116,101,104,102,113,103,104,129,93,105,102,109,101,105,105,101,108,103,103,102,102,104,104,103,104,70,92,104,102,95,104,108,99,101,112,95,108,114,110,102,95,100,103,102,107,88,108,100,103,100,103,110,110,115,108,117,104,99,102,108,81,109,101,96,105,118,93,104,99,102,109,100,109,98,97,107,114,93,99,103,107,113,93,102,91,102,104,99,103,96,104,98,94,92,110,106,114,108,101,113,109,102,101,105,100,109,99,104,108,108,109,106,107,104,95,106,95,95,102,101,104,104,108,108,101,108,90,104,106,100,117,104,103,102,95,109,110,104,97,110,113,100,92,110,95,108,105,103,103,101,106,101,98,105,98,86,100,104,102,109,100,112,102,108,107,105,111,93,110,101,106,96,99,107,102,119,103,101,102,106,90,91,104,104,98,112,106,103,106,97,113,107,100,109,102,98,95,96,111,98,107,107,112,93,88,92,108,103,102,104,102,108,100,110,106,110,109,101,116,107,99,103,105,114,98,108,107,107,100,110,104,108,106,99,113,95,99,111,113,99,106,104,100,103,94,113,100,105,107,105,101,101,104,106,104,107,107,105,103,96,91,110,105,108,102,98,109,104,131,111,106,93,110,93,103,107,117,104,104,108,103,106,99,100,103,104,102,93,103,111,94,107,122,114,101,113,97,96,103,106,99,111,108,108,103,107,102,100,92,108,92,95,94,102,103,99,106,112,98,101,108,99,109,98,103,110,104,93,104,108,102,114,100,105,99,106,106,100,94,111,94,100,103,103,103,103,94,95,95,105,109,104,109,103,106,103,100,104,89,105,96,101,111,99,105,96,93,103,95,103,103,108,96,100,99,103,107,111,103,105,106,104,100,104,97,125,109,100,111,91,103,110,80,97,96,99,102,118,90,99,98,100,95,90,116,106,100,94,98,102,107,106,105,99,92,101,99,104,102,99,103,100,110,98,103,104,110,92,94,77,106,114,119,121,102,104,109,91,95,103,113,104,88,106,99,109,97,91,122,100,110,101,109,90,107,102,103,110,90,84,101,106,99,109,104,110,98,107,103,106,103,111,94,107,116,95,96,103,99,107,114,100,111,95,84,109,104,106,109,114,95,101,110,112,98,98,99,106,98,98,95,104,100,98,100,112,100,106,113,105,102,112,100,98,107,114,125,112,113,110,103,101,113,104,103,118,98,100,98,109,94,116,107,99,110,102,101,106,119,97,105,89,112,109,103,107,106,118,109,105,102,100,107,111,107,104,97,98,108,100,117,100,109,104,113,104,99,110,108,108,98,114,95,108,116,111,99,92,101,117,108,107,105,105,114,103,113,70,88,105,90,105,113,100,99,110,96,102,104,111,106,113,108,102,90,106,100,96,104,105,106,104,101,118,106,110,96,101,139,107,95,115,105,113,109,92,122,107,96,104,97,105,111,92,106,105,111,98,96,99,102,106,107,106,99,115,96,104,103,99,104,102,94,100,113,94,90,100,107,106,101,114,82,105,94,91,92,104,95,100,98,109,103,94,102,105,96,96,86,112,104,99,106,99,106,105,114,107,102,96,105,112,99,99,110,90,107,104,90,101,112,103,106,106,100,99,113,105,103,105,118,116,114,99,111,104,95,95,105,108,98,102,108,105,101,104,107,103,99,99,100,101,98,105,104,106,120,102,102,94,99,109,103,112,103,100,108,94,102,100,106,109,110,105,100,118,102,108,89,99,101,88,108,105,94,102,106,98,104,102,119,100,109,111,105,94,102,101,114,94,112,108,107,107,108,115,102,98,109,111,99,102,105,108,108,108,104,108,102,90,105,115,111,99,108,103,111,106,113,126,98,112,117,100,113,117,107,107,98,107,99,82,108,93,97,89,95,101,98,103,108,106,111,105,116,101,99,102,100,101,118,106,98,97,99,100,122,107,113,104,99,88,108,75,103,100,116,103,102,104,114,99,83,110,104,110,99,99,96,96,113,89,94,97,106,103,101,100,112,99,107,108,109,107,112,110,105,102,106,108,102,112,109,110,99,104,113,104,101,100,99,106,106,107,105,101,91,103,105,102,99,103,96,106,108,119,110,105,109,120,103,108,92,104,103,96,106,91,107,108,108,96,105,115,110,106,101,108,117,108,107,108,100,105,114,115,105,104,123,101,104,116,109,109,92,97,102,112,113,104,120,108,111,102,109,81,104,102,108,113,110,118,102,98,99,105,114,112,92,106,105,117,117,102,105,96,107,104,112,101,106,102,121,103,110,97,111,100,101,107,100,111,114,109,108,103,110,107,99,114,104,105,107,107,98,115,94,103,88,98,115,124,102,104,114,109,116,104,98,106,112,102,110,87,101,98,107,96,103,99,98,100,105,100,106,107,109,99,113,102,112,97,103,113,112,113,99,105,104,93,109,103,114,107,100,107,110,105,108,98,95,107,110,97,83,106,123,99,108,118,99,132,114,101,101,113,102,105,117,102,102,105,100,99,102,108,109,101,111,102,105,114,109,105,106,106,106,119,95,103,113,100,107,104,94,112,110,115,99,114,94,102,95,104,99,105,111,123,109,110,107,109,104,98,100,109,106,111,108,113,104,100,126,114,100,105,103,109,96,103,104,101,105,109,104,101,69,88,105,104,111,97,94,103,113,108,108,95,109,103,102,97,110,106,105,121,104,109,121,116,113,101,102,98,110,97,107,110,92,99,99,117,100,94,104,97,100,100,106,106,95,113,92,117,80,96,91,97,109,106,105,121,104,100,105,99,95,99,111,99,103,102,107,94,87,108,102,103,94,105,95,104,108,95,110,88,112,113,106,110,110,98,104,95,113,91,107,115,102,112,97,117,107,102,105,110,108,117,103,111,113,92,96,94,104,94,104,121,97,122,108,109,98,96,112,106,93,103,104,106,103,114,101,101,109,106,105,96,107,104,116,91,92,107,103,100,101,106,113,106,99,124,107,110,116,98,97,106,116,100,112,104,116,111,112,122,103,97,105,102,100,108,98,113,102,109,98,106,103,91,100,103,111,111,102,92,110,99,111,111,105,113,103,101,107,95,113,97,100,107,112,95,111,105,101,112,104,109,102,96,108,97,121,98,85,108,112,111,109,110,100,106,101,111,104,83,110,110,99,101,108,113,102,104,107,100,108,97,95,107,88,98,100,70,98,99,108,108,115,98,94,115,105,114,116,112,96,94,106,111,111,102,106,102,108,101,100,111,113,100,105,98,118,134,93,115,98,95,105,109,103,111,97,101,108,114,103,115,102,103,117,98,107,114,100,100,115,103,92,103,112,102,112,102,98,106,98,102,106,95,97,107,86,104,83,102,104,109,98,104,103,99,110,101,131,117,89,107,101,106,97,96,95,107,102,95,90,102,94,105,109,106,113,112,105,107,111,100,106,103,98,98,102,97,97,103,102,113,103,106,107,117,108,103,102,99,100,102,110,101,98,99,95,114,107,103,109,108,107,103,105,101,106,103,108,112,106,108,107,111,100,99,112,98,106,92,99,113,102,120,108,110,106,106,105,101,99,94,107,105,110,110,112,104,106,101,100,110,106,101,93,106,98,98,94,95,105,112,111,112,98,112,115,100,100,101,104,96,100,107,92,108,105,109,108,95,93,105,105,97,115,108,113,111,100,118,92,97,96,100,111,109,106,116,113,111,103,103,103,109,112,103,97,98,100,116,105,113,98,99,107,97,100,107,106,94,104,95,89,94,98,108,116,103,112,109,100,99,92,107,101,102,96,98,104,108,108,104,96,107,100,98,92,100,104,96,107,115,107,103,113,110,103,96,95,98,103,96,106,111,107,111,104,101,95,101,102,95,100,103,115,99,104,100,132,103,115,102,109,108,99,100,100,93,90,105,111,100,111,103,102,107,92,102,106,95,103,96,100,106,109,110,111,102,105,97,97,96,112,106,111,98,100,93,100,102,92,102,113,120,106,96,101,95,103,108,106,105,112,85,99,106,103,100,113,121,103,94,101,101,93,83,96,107,99,85,107,104,102,100,112,113,98,101,109,108,105,101,90,109,111,106,103,112,110,110,99,95,114,100,111,102,104,101,108,118,103,95,92,110,110,102,107,106,105,103,107,103,101,88,106,120,96,104,93,101,109,120,100,99,109,108,138,93,101,104,103,108,96,92,101,100,116,101,106,104,104,93,105,106,110,114, +516.35083,109,108,109,112,104,118,107,110,108,102,111,106,126,80,101,107,103,108,111,102,105,92,103,107,83,102,98,112,116,101,96,111,104,106,114,99,107,97,109,90,98,101,84,102,102,101,106,108,104,102,91,115,100,115,102,90,96,96,105,107,112,91,122,93,106,103,102,100,106,96,114,105,93,116,96,98,107,100,107,96,98,114,102,110,103,105,92,113,103,96,105,106,101,116,111,109,111,89,102,105,109,105,105,116,99,94,116,99,103,105,105,98,101,108,113,99,100,103,105,106,113,99,118,101,107,99,113,95,111,105,101,104,101,102,99,121,99,118,107,111,99,88,99,110,102,110,111,108,86,106,104,105,105,87,98,97,102,102,103,102,100,113,101,101,105,98,103,99,111,103,114,99,97,99,114,102,100,93,116,111,109,94,93,117,102,111,112,93,109,97,103,114,100,100,98,98,101,103,102,93,101,115,118,107,102,95,103,95,106,98,110,106,101,96,103,75,114,92,119,118,110,107,93,108,105,92,113,120,101,108,106,106,109,99,99,103,101,101,95,118,94,108,98,110,98,105,105,102,108,91,109,105,82,116,116,115,72,106,90,109,100,113,121,109,98,108,110,117,103,116,103,115,107,104,108,109,109,105,95,102,104,119,108,101,96,109,102,100,94,108,75,98,108,95,109,101,104,116,95,109,94,102,95,104,96,90,102,117,79,103,103,90,95,104,117,107,109,104,102,101,104,100,106,101,116,101,114,94,111,102,90,102,117,103,96,102,103,104,104,108,113,110,100,114,110,103,113,105,111,97,97,102,110,106,117,102,114,108,105,103,91,106,98,103,96,102,100,105,104,124,107,102,95,111,104,96,106,102,92,113,102,103,103,94,95,95,98,110,107,106,111,106,101,106,100,109,107,113,105,119,98,115,94,100,103,95,97,117,107,101,98,101,110,110,93,111,95,100,108,100,103,106,93,103,109,101,104,91,94,109,94,101,109,113,107,107,100,117,87,99,113,92,103,104,105,95,84,101,119,106,95,94,92,112,111,113,107,107,99,101,92,99,112,97,91,99,102,99,101,84,112,111,108,107,104,113,99,113,114,116,104,109,108,105,101,115,95,102,105,109,110,114,103,112,110,108,100,94,118,107,129,101,121,112,105,98,90,117,103,114,102,115,112,104,108,106,107,98,102,103,121,111,118,98,111,110,113,111,102,95,101,102,99,99,106,108,108,100,111,104,100,101,110,103,106,108,104,98,119,104,115,103,94,103,92,102,117,92,100,104,112,111,110,107,91,110,111,105,106,95,114,100,105,107,110,103,105,103,108,102,101,117,103,114,91,108,109,116,90,102,96,116,97,99,109,104,101,114,118,116,102,116,103,102,96,116,105,80,107,96,99,100,97,104,107,108,114,116,124,107,119,111,97,107,110,118,107,111,106,99,101,112,97,105,96,111,102,101,107,66,110,105,98,114,105,92,100,78,101,119,106,106,110,109,109,111,106,94,94,102,102,104,100,108,95,98,113,102,109,108,109,115,91,100,104,110,112,102,100,108,102,107,103,102,106,100,105,110,101,99,105,102,96,107,102,108,97,103,110,110,110,94,100,99,94,108,114,113,102,105,108,121,95,88,95,103,104,94,103,121,117,101,104,114,103,84,108,99,108,116,121,99,104,104,100,103,111,100,109,89,109,101,98,105,100,104,104,109,103,112,117,112,95,112,95,98,94,104,104,108,113,103,100,104,97,102,105,101,94,95,107,105,99,100,87,95,108,103,94,101,104,100,108,109,105,97,107,102,113,109,98,117,98,112,104,108,71,105,121,104,96,102,98,104,109,112,110,103,109,104,107,104,104,109,108,108,105,103,110,111,111,105,95,107,108,116,109,102,108,105,103,99,114,98,106,109,114,102,105,95,106,93,111,99,102,102,105,98,108,97,102,106,107,104,104,103,99,93,111,105,117,100,101,107,95,105,92,98,101,108,107,121,92,102,98,91,106,97,115,100,110,112,107,105,103,111,104,103,113,109,102,110,104,99,101,107,100,103,105,95,104,109,103,114,104,88,94,107,99,109,105,113,114,98,108,106,101,93,107,108,110,111,103,113,102,98,99,111,108,102,102,110,83,100,108,96,100,102,98,99,105,113,102,102,102,100,113,112,101,104,92,102,129,101,107,105,101,102,108,117,90,105,104,102,115,98,93,93,105,94,96,96,98,95,107,118,109,103,100,101,102,122,91,102,109,84,103,112,91,106,103,106,110,99,102,98,96,104,108,118,104,83,90,112,96,105,99,81,105,96,96,110,103,116,79,108,120,96,101,107,98,101,102,91,99,96,100,105,107,100,106,111,123,94,111,103,103,105,104,108,99,108,90,95,102,96,110,98,105,107,114,104,110,90,104,106,100,95,109,92,92,102,103,109,110,101,99,108,105,106,111,114,108,103,114,102,123,107,101,98,92,113,102,108,104,113,91,99,110,105,101,105,105,101,96,104,104,97,110,107,97,106,93,109,116,102,108,114,112,112,102,112,117,101,97,96,119,106,94,105,110,105,107,96,101,118,101,109,92,104,124,102,107,102,120,104,98,93,110,110,123,117,107,104,97,110,106,100,101,98,104,91,118,109,101,94,117,104,100,107,108,94,111,98,108,111,99,97,116,101,103,95,99,105,100,112,110,102,109,117,100,96,108,112,100,104,103,98,98,115,100,105,109,104,103,106,97,103,100,105,96,105,98,114,106,116,108,103,99,105,101,105,96,107,103,100,102,117,94,111,121,112,102,99,111,114,100,112,109,109,98,104,96,111,98,92,102,107,102,113,111,125,112,101,116,102,120,102,104,99,110,103,106,105,110,108,106,122,102,99,100,100,100,104,92,106,95,102,103,132,107,110,107,100,105,101,126,104,96,113,106,103,121,106,109,108,106,101,106,109,109,106,109,107,104,106,102,106,111,104,112,106,106,92,98,104,101,99,107,105,101,100,112,107,99,104,111,103,104,100,102,104,100,107,107,85,102,102,116,133,102,108,102,104,109,109,100,105,104,117,100,93,105,109,98,100,100,120,106,110,102,95,95,94,103,102,110,99,110,94,109,106,124,96,107,105,91,106,106,90,100,104,103,112,106,99,89,107,94,108,110,100,107,116,108,99,111,109,114,78,96,99,105,128,104,106,113,96,110,111,100,120,97,97,103,102,117,96,98,117,104,108,101,110,96,101,94,102,97,93,88,112,100,100,106,99,107,109,112,103,108,95,114,107,112,119,93,107,100,128,101,103,97,100,98,106,105,104,99,102,104,96,115,103,108,105,105,104,113,81,111,99,105,106,121,110,94,109,98,111,99,107,102,107,85,91,111,97,107,95,109,98,116,97,90,116,94,106,117,112,106,104,110,98,121,104,110,105,75,97,95,107,73,113,113,97,114,94,94,104,100,104,105,93,64,117,105,119,98,94,107,89,106,99,103,91,116,104,111,93,102,115,107,89,103,109,113,104,107,77,107,109,113,104,105,101,108,117,103,104,103,92,105,117,95,105,102,101,109,110,110,108,95,96,104,96,104,104,109,121,103,106,105,96,88,100,108,104,100,102,94,109,104,113,108,108,102,107,103,101,108,117,120,103,107,103,108,112,105,102,98,99,106,87,101,103,106,112,107,95,105,112,110,97,102,92,103,100,91,110,98,112,95,99,104,97,113,101,103,95,104,108,107,103,107,103,106,99,110,101,105,94,99,102,100,108,105,110,104,110,107,108,104,117,111,97,86,115,106,108,105,107,109,87,86,102,103,104,104,105,105,105,94,106,105,101,117,110,94,108,91,96,109,115,92,101,108,89,93,112,91,106,98,100,101,99,97,111,111,106,95,119,103,109,106,109,69,113,100,102,105,114,100,99,102,112,105,105,97,105,114,99,106,114,106,108,124,92,115,95,103,98,111,109,97,80,112,91,108,108,108,104,101,107,105,97,105,105,109,96,123,104,92,111,100,110,100,95,108,109,110,117,96,102,110,112,101,99,101,104,89,100,105,101,107,98,111,107,108,105,104,108,105,87,113,119,95,120,103,107,128,112,107,109,99,120,103,100,79,106,102,104,96,100,106,108,110,111,113,112,109,110,112,107,110,116,95,106,117,113,101,95,96,118,103,105,108,102,103,111,104,91,95,108,88,95,105,107,100,98,99,100,104,99,100,104,97,99,109,109,100,105,98,108,98,92,95,105,95,103,90,92,103,102,114,111,123,105,113,105,96,112,107,112,95,101,100,93,104,102,116,111,111,112,102,105,94,105,99,95,98,112,92,102,107,105,120,98,102,105,111,99,117,93,78,112,106,103,102,109,98,95,114,105,110,93,101,114,102,103,95,107,102,113,104,124,119,95,108,96,111,76,117,103,89,107,128,94,95,88,95,105,101,113,92,104,90,104,112,91,81,99,101,119,87,104,95,99,101,119,88,116,118,98,109,89,106,106,118,113,105,97,98,100,107,106,102,95,109,95,92,99,101,114,110,100,102,107,100,91,98,103,105,90,118,95,96,117,117,100,102,110,71,98,109,111,114,101,111,100,117,113,113,100,107,102,117,118,100,93,104,92,94,101,98,95,98,103,94,97,104,118,111,106,114,106,108,102,94,121,106,98,118,105,102,106,99,110,92,106,92,102,105,104,106,106,103,99,100,107,103,110,120,105,102,112,95,94,92,96,103,107,109,102,106,104,101,99,99,97,98,102,94,101,106,117,104,102,98,107,117,95,105,104,102,102,91,105,108,102,101,109,96,102,94,100,95,96,103,101,116,89,103,101,108,98,103,101,97,83,106,105,118,98,111,106,95,111,117,100,98,102,104,92,107,114,90,120,113,93,95,130,105,106,108,102,87,99,106,105,94,96,105,101,101,100,103,103,92,101, +516.49152,109,95,100,96,96,103,101,106,103,99,96,93,109,113,120,109,108,110,103,90,105,109,105,99,112,102,109,116,106,124,112,101,106,89,105,102,110,124,96,95,88,113,114,114,103,89,103,100,109,114,84,110,97,103,96,88,103,100,115,99,108,106,102,99,94,108,101,101,99,103,104,106,107,104,99,101,105,105,109,96,99,120,99,108,93,100,101,94,95,102,99,91,105,109,109,105,108,101,105,101,90,101,108,113,100,103,108,95,113,101,103,104,100,105,95,92,110,120,116,105,100,102,108,115,115,99,104,107,113,113,107,99,100,104,120,100,113,105,108,98,113,99,100,102,112,97,96,99,100,102,93,92,108,106,91,111,99,94,111,103,106,94,104,102,103,113,102,106,106,105,112,106,108,96,108,100,101,95,116,104,106,110,94,104,114,99,104,95,104,109,107,111,112,104,102,98,113,99,116,121,99,100,95,100,113,101,91,93,116,100,97,111,101,104,113,86,104,98,96,102,124,118,106,90,101,92,103,101,113,100,100,110,106,109,97,108,120,130,110,80,105,99,120,100,98,102,101,91,101,109,100,110,106,102,115,103,98,108,91,106,111,106,103,88,95,102,111,104,102,106,108,106,104,90,115,112,94,111,106,108,117,104,105,103,110,111,102,102,99,106,108,107,113,122,123,104,128,110,103,89,95,114,100,106,107,102,102,90,97,119,92,101,95,105,104,108,115,106,106,105,109,97,105,101,112,106,102,108,83,111,120,96,112,106,113,105,111,99,100,105,110,100,107,99,101,112,96,102,129,94,105,98,101,100,109,100,109,102,96,105,109,111,93,98,99,107,92,128,110,71,111,106,101,79,109,102,96,106,120,100,106,103,109,92,103,111,98,100,108,99,93,105,104,110,99,104,109,94,95,107,90,107,102,95,91,109,106,108,106,100,95,101,113,110,107,91,107,118,106,109,100,100,103,99,112,96,107,94,104,111,83,108,109,101,106,100,98,104,104,96,104,101,97,98,98,103,103,95,104,100,105,106,105,110,105,109,109,96,137,99,109,104,109,116,121,102,102,95,106,99,93,112,112,101,104,97,106,112,105,115,107,107,126,95,92,107,103,103,111,103,108,110,113,99,105,105,114,115,116,104,125,102,112,98,102,106,95,109,104,104,107,105,110,98,111,100,97,99,113,88,105,107,118,95,104,108,112,95,102,101,104,101,107,115,97,102,101,92,120,113,110,107,96,109,120,98,87,104,113,111,110,116,102,105,83,108,109,102,102,94,113,109,103,96,103,94,110,110,104,103,96,99,99,113,117,108,104,104,109,107,105,101,98,98,96,102,109,109,95,97,117,101,108,100,106,117,102,128,116,115,98,108,107,112,105,109,124,109,122,105,106,104,116,99,117,93,102,107,106,100,97,102,109,95,98,92,100,108,108,105,109,106,104,107,94,111,81,104,103,96,101,106,100,102,114,96,102,121,100,109,112,107,115,116,105,107,104,103,107,106,109,108,103,113,101,111,106,97,105,117,113,77,93,111,100,120,110,98,106,98,94,91,119,92,98,100,98,109,98,109,111,107,102,112,97,101,103,100,105,98,100,89,110,90,99,112,102,111,108,101,97,97,100,94,97,93,106,109,106,99,109,100,94,115,105,109,103,99,107,112,103,102,107,102,87,105,98,101,103,97,124,99,113,109,118,114,69,110,100,114,106,107,96,106,109,106,114,109,106,112,106,110,101,109,108,103,100,107,102,100,106,98,112,111,106,106,98,115,106,99,105,108,99,108,107,110,104,99,98,107,104,110,103,85,103,103,80,114,100,114,100,97,98,96,106,105,117,113,71,105,110,106,97,109,105,103,106,111,103,98,114,102,117,108,109,105,98,72,114,113,114,100,101,114,108,102,110,105,108,99,99,107,107,97,110,112,100,99,104,93,115,102,102,100,109,103,96,102,102,140,106,100,116,100,105,105,95,110,111,118,103,111,104,83,106,103,118,96,119,97,86,100,109,115,105,105,100,114,108,107,103,100,105,117,114,110,108,105,106,107,96,119,107,100,98,99,107,113,92,104,99,103,123,99,102,103,93,113,98,103,105,114,105,105,104,79,104,75,97,112,102,118,107,116,96,104,96,105,100,115,106,113,110,114,100,109,92,107,99,103,105,107,114,109,102,109,121,92,96,111,111,108,93,100,113,100,101,127,97,115,92,86,114,99,101,104,101,98,99,110,109,97,108,97,113,121,109,107,115,105,98,106,98,88,96,103,89,100,106,106,82,110,105,101,120,110,94,112,103,96,90,97,105,92,112,99,95,99,106,104,115,97,102,99,112,98,100,94,97,94,106,110,100,99,105,100,99,107,101,112,115,100,112,99,108,105,112,109,101,97,101,99,101,95,104,99,96,103,100,109,107,110,105,104,99,94,99,105,110,102,87,117,93,104,112,104,109,102,98,109,95,98,99,99,102,104,107,111,113,108,101,95,114,111,112,98,103,98,109,106,105,102,116,104,100,122,100,99,114,100,103,111,102,109,100,109,109,102,81,117,111,110,84,106,97,102,94,99,114,102,108,109,112,106,99,110,95,94,100,106,111,102,97,104,106,100,113,99,108,94,102,111,117,105,108,99,111,111,119,106,102,100,110,95,107,114,111,95,107,108,115,104,104,111,105,100,121,105,98,113,104,95,120,109,109,107,110,106,94,91,104,101,102,99,104,120,116,106,93,88,117,107,108,105,111,106,134,104,100,97,108,102,105,113,115,108,106,114,100,107,106,123,109,117,103,111,94,109,113,113,98,111,101,103,108,105,107,113,110,108,117,113,106,110,103,95,98,108,113,107,105,107,107,90,91,99,77,107,100,114,105,115,110,104,119,116,106,100,99,106,107,114,92,104,98,102,115,103,69,110,100,105,106,113,102,122,95,102,114,107,101,110,85,104,96,108,107,108,116,108,113,121,86,119,90,103,93,124,103,106,102,107,104,113,121,107,96,115,99,117,103,101,103,101,109,96,121,120,124,90,110,68,110,116,108,99,111,112,105,116,109,112,89,94,110,108,112,105,110,100,106,109,100,103,105,114,106,80,110,132,113,113,100,103,114,97,113,106,101,87,103,116,109,105,113,105,103,107,95,107,104,96,114,116,106,108,106,107,105,114,107,94,120,110,107,116,106,102,101,102,111,102,97,104,107,107,107,100,117,116,101,112,104,107,124,116,108,100,106,117,110,108,103,104,113,103,101,109,120,107,91,106,111,115,111,120,110,92,107,102,94,113,101,97,117,110,91,119,100,109,116,113,101,115,113,101,108,106,94,95,97,103,103,105,118,117,111,87,122,101,117,109,117,90,99,113,113,103,108,111,106,106,110,95,105,102,97,100,100,103,108,119,99,107,94,106,106,99,109,108,104,100,108,107,98,115,97,109,101,112,98,109,112,91,108,103,109,95,107,102,99,102,107,102,99,107,92,95,99,102,110,105,105,103,100,110,106,112,126,111,117,103,107,115,112,87,111,103,100,103,114,116,100,114,105,109,113,99,97,108,103,96,100,107,112,110,107,125,113,111,103,99,110,108,113,120,98,105,105,92,107,109,114,98,102,121,107,112,119,108,102,114,112,105,108,109,104,92,98,121,113,105,102,107,102,107,104,103,88,113,85,107,110,97,107,103,99,113,111,100,106,107,104,127,109,95,119,106,99,96,111,104,103,109,120,107,108,99,106,102,113,96,126,100,115,108,98,104,101,107,100,113,107,110,103,98,104,110,115,103,111,103,89,103,104,106,104,106,114,97,94,103,108,117,106,95,102,102,102,107,104,104,107,98,116,109,107,91,100,114,108,106,103,106,101,98,102,108,98,100,102,98,103,127,99,105,91,105,96,106,105,104,97,107,99,97,106,100,97,104,103,113,104,88,104,93,112,99,100,113,111,96,103,104,98,113,94,103,103,105,102,109,96,107,104,102,106,96,104,107,126,108,72,102,101,96,106,109,103,118,117,103,94,95,115,104,97,99,104,112,113,97,97,106,116,94,117,106,112,108,104,117,110,109,115,109,111,105,95,118,100,97,100,109,98,108,119,103,104,107,106,94,91,107,87,107,114,114,97,102,95,107,109,98,122,112,94,104,95,111,114,92,105,102,109,106,103,100,109,107,98,103,109,98,106,106,105,108,90,98,103,109,111,111,105,118,100,103,114,108,101,109,104,100,97,103,112,106,113,107,98,101,114,106,79,104,100,117,106,101,104,106,97,104,105,100,96,102,89,94,105,105,106,102,108,103,102,94,102,119,100,105,109,101,111,107,106,106,100,109,115,106,103,103,114,99,110,107,99,102,121,98,113,108,104,105,112,135,116,110,103,109,104,114,105,99,113,111,109,99,108,105,107,125,80,104,106,105,90,90,96,84,99,112,121,104,86,107,98,108,112,111,112,89,101,96,108,107,108,114,97,103,100,110,95,107,110,98,73,116,91,89,97,105,117,101,97,125,108,110,101,73,94,107,109,89,98,111,91,106,113,97,106,94,100,102,105,109,109,110,104,102,103,109,102,88,105,103,100,108,111,106,101,96,121,91,120,93,83,85,101,106,106,119,111,105,101,95,111,102,103,94,111,109,109,110,106,111,103,128,123,100,116,99,102,100,107,96,105,101,99,100,102,95,113,95,110,102,109,105,103,95,103,93,99,102,100,106,97,96,98,109,82,112,107,107,120,93,105,94,110,107,100,91,111,92,113,100,117,113,99,107,108,96,100,106,110,107,104,95,98,117,127,100,112,120,119,90,98,81,102,109,116,93,113,105,87,124,91,81,116,104,106,126,108,102,93,105,108,99,107,104,116,105,102,122,107,105,97,100,112,87,106,102,111,110,116,94,95,99,106,106,106,102,119,98,100,91,97,111, +516.6322,104,91,99,107,91,109,109,106,102,105,96,107,97,110,101,113,104,114,108,94,100,102,89,101,95,90,127,114,106,108,109,100,97,101,99,123,103,100,101,103,106,100,94,98,85,101,126,101,94,102,100,100,98,76,102,86,94,102,92,104,109,103,118,95,106,108,91,106,107,110,102,104,108,99,102,95,96,106,108,98,101,90,113,98,100,100,113,97,108,91,105,113,100,110,96,112,92,99,101,100,97,107,100,110,100,101,109,100,92,104,99,102,115,106,104,107,105,119,93,91,97,115,118,116,85,104,105,100,108,103,108,106,120,110,108,112,104,101,109,100,109,110,104,102,103,101,109,110,106,106,102,92,109,105,111,111,105,106,104,99,97,92,100,97,104,101,96,96,104,104,127,100,109,103,110,102,113,99,102,104,104,107,105,115,106,100,115,95,108,103,108,107,99,115,98,98,103,96,113,104,108,84,95,95,93,109,105,100,114,118,113,97,95,107,105,100,94,109,108,106,106,116,101,93,103,101,104,98,104,111,111,122,116,105,128,108,97,107,104,109,113,94,94,102,98,104,112,115,102,120,108,101,106,111,94,117,109,107,99,108,118,100,108,101,101,101,105,105,104,107,104,105,104,107,103,108,105,105,103,98,111,116,106,108,119,103,106,113,107,115,105,107,98,112,111,112,109,113,105,95,106,98,107,105,106,107,114,112,109,113,104,117,105,98,105,100,100,107,102,112,98,106,109,112,106,104,103,114,109,111,106,110,108,109,110,103,100,102,113,123,105,102,122,99,103,112,112,113,100,105,103,102,99,102,100,110,103,105,93,101,105,97,121,93,121,101,99,104,103,106,109,103,108,109,102,109,118,98,127,100,106,104,104,110,91,108,118,102,119,100,80,90,105,94,98,105,100,104,100,116,102,97,107,98,111,96,112,105,107,108,96,99,109,118,103,101,105,101,109,113,87,106,95,108,96,101,94,104,98,111,95,92,96,104,99,108,109,105,95,100,112,106,93,95,104,109,106,99,113,109,112,94,98,111,103,111,100,100,112,96,102,107,102,108,93,107,111,104,100,106,94,115,117,96,113,93,91,108,117,114,117,103,122,100,107,108,104,99,103,108,113,117,115,102,99,102,99,113,114,100,103,107,101,107,104,115,91,105,112,94,107,108,103,113,94,110,109,105,99,104,100,104,129,99,103,109,105,97,102,112,92,99,105,100,107,117,109,91,108,94,95,108,102,105,109,107,114,94,112,102,120,103,106,117,99,110,101,101,105,103,121,108,101,123,104,102,103,89,98,103,110,106,100,96,121,99,101,103,107,105,109,86,112,106,91,107,111,115,106,97,114,110,117,100,109,114,104,98,106,106,103,107,117,102,98,98,93,106,104,110,112,95,100,110,112,109,102,98,110,112,104,120,95,93,106,102,88,108,114,108,91,109,108,103,105,108,103,96,101,102,103,104,106,95,103,109,103,91,116,113,105,105,95,104,112,103,109,99,106,102,111,105,103,94,103,99,107,90,103,103,100,103,104,102,114,102,109,106,103,109,98,112,124,114,102,99,108,105,104,105,104,101,109,112,105,102,107,108,103,110,98,101,91,100,114,105,110,108,98,107,107,112,99,101,89,100,103,93,101,112,107,108,93,121,124,102,95,113,114,110,109,124,94,95,129,108,108,106,111,108,113,104,109,84,114,107,102,108,112,115,113,83,108,99,100,106,106,110,111,105,108,73,102,99,104,110,93,108,113,100,113,105,88,106,92,108,105,104,102,100,98,97,107,105,96,104,107,101,105,119,114,85,115,115,114,109,96,112,101,107,111,99,83,87,105,114,109,111,108,104,113,111,106,103,110,114,115,113,101,107,116,101,89,103,110,110,113,98,110,104,100,107,122,94,110,111,118,113,104,120,93,103,105,100,102,110,97,115,113,95,106,110,101,105,90,100,116,68,109,104,97,107,112,100,113,112,106,110,112,97,108,108,109,99,102,108,106,105,113,110,98,113,105,108,104,101,87,103,104,111,103,106,102,96,104,96,111,88,100,96,109,117,105,106,114,114,102,104,108,104,117,100,117,111,105,97,115,111,103,98,105,96,109,112,94,101,116,105,109,105,98,113,101,105,79,93,109,111,106,100,100,108,106,110,102,106,93,110,96,110,105,109,117,113,105,115,100,98,111,115,113,107,110,98,108,106,107,103,100,111,95,99,114,116,108,113,112,101,105,101,91,109,99,97,103,106,109,106,107,105,109,106,110,103,94,115,106,95,98,106,109,99,103,106,97,117,112,107,96,105,105,103,116,109,103,102,99,105,108,97,103,100,114,105,108,101,103,96,111,97,107,100,109,87,100,95,116,116,102,95,104,107,102,105,90,118,114,89,115,104,101,98,105,93,111,97,95,93,105,106,98,94,97,109,109,100,100,111,104,95,112,103,102,103,113,114,113,107,96,109,105,98,109,103,102,115,103,99,100,104,107,105,116,113,101,98,106,93,113,108,99,98,100,104,96,106,106,103,110,110,105,114,97,101,100,90,106,102,89,117,96,108,101,101,96,108,101,116,101,98,119,106,109,91,95,106,113,103,95,88,98,104,115,121,93,115,105,113,92,109,117,104,103,112,103,113,106,110,95,109,95,98,117,98,110,116,103,89,110,96,101,91,107,105,106,99,98,99,89,120,110,106,77,102,110,99,109,110,113,113,98,109,115,125,100,130,111,113,101,116,101,93,106,104,107,103,102,116,100,112,100,104,102,115,112,113,98,120,105,94,109,111,102,101,113,110,91,103,113,113,91,110,109,112,102,102,109,104,91,112,104,101,107,112,98,114,107,117,98,111,91,116,101,116,114,98,110,104,109,108,117,103,113,113,93,108,106,102,104,101,100,103,96,110,100,96,100,103,105,108,102,103,107,107,104,94,115,100,84,113,108,106,108,109,94,95,105,98,94,117,98,103,107,97,106,106,104,116,108,105,101,106,108,93,119,102,113,112,129,83,120,106,109,124,108,95,106,106,114,106,114,83,103,109,112,109,106,104,102,106,117,108,108,101,110,98,109,104,99,103,110,112,107,108,96,107,110,116,102,102,98,113,105,112,102,104,107,103,99,94,102,117,107,111,115,100,103,112,110,109,99,102,104,107,103,95,111,105,99,108,102,99,101,108,106,91,114,98,110,101,98,107,100,99,111,108,120,101,97,98,113,107,107,94,101,96,106,68,101,99,97,104,102,95,94,107,108,113,116,112,102,95,111,112,106,98,95,116,110,115,105,112,112,102,109,95,104,98,103,109,98,102,108,104,106,100,101,118,102,94,112,100,105,95,101,102,106,112,102,101,100,100,95,101,111,100,97,103,113,108,100,106,108,96,112,103,94,125,97,94,103,99,107,105,109,113,117,104,106,101,112,113,99,113,102,111,92,102,136,109,103,113,112,99,99,117,109,94,109,105,108,100,110,107,112,103,107,107,113,104,118,113,104,98,104,119,110,114,108,91,108,104,93,99,111,103,102,97,113,106,112,124,112,101,104,109,106,104,112,95,100,99,103,98,94,109,98,99,113,105,105,105,97,109,81,106,102,103,99,116,99,109,103,105,107,106,110,98,112,115,83,109,111,107,112,105,100,103,107,114,94,100,110,100,108,104,128,102,109,100,108,91,121,115,106,105,93,110,104,109,106,111,112,107,114,100,90,103,109,118,103,103,101,100,102,111,98,101,109,103,107,98,107,107,117,111,101,102,103,104,97,107,110,106,109,108,109,105,84,99,113,96,107,107,105,118,116,109,95,112,105,104,109,96,104,99,103,106,105,118,107,105,113,117,102,95,106,87,99,107,99,95,101,105,104,110,96,104,113,113,99,117,107,108,103,104,120,109,122,107,112,98,106,103,101,91,100,107,104,100,92,111,109,107,105,100,112,101,105,112,108,106,112,108,101,108,95,115,84,106,100,64,107,96,104,104,128,100,103,95,112,107,102,109,105,104,102,97,80,108,106,105,101,109,107,107,92,107,115,117,115,106,104,107,117,98,112,100,94,105,106,95,97,118,102,101,111,135,115,111,104,98,116,109,93,107,105,106,109,99,98,107,106,110,114,110,102,109,108,104,109,107,103,112,104,107,111,107,120,109,108,108,105,115,108,105,98,106,111,106,114,112,112,100,113,104,113,108,106,109,108,113,110,105,102,106,96,112,116,116,98,97,102,103,101,110,110,108,107,104,109,102,105,102,110,102,109,123,112,93,102,102,111,100,104,100,107,122,113,102,103,98,117,92,110,113,98,97,104,111,113,118,112,103,108,101,96,106,103,113,123,87,113,106,111,110,118,107,106,105,117,104,111,108,99,99,101,111,109,108,93,100,98,112,98,97,106,108,102,106,113,112,113,119,76,109,112,105,103,78,96,101,108,104,101,107,113,106,111,141,113,108,104,116,103,99,88,111,108,94,113,103,111,106,108,99,98,106,120,109,103,100,114,94,96,104,109,111,104,99,97,92,116,104,109,95,103,93,101,107,113,105,105,117,99,112,94,113,101,97,106,102,106,102,108,92,119,112,113,120,105,116,112,102,97,109,109,103,90,111,102,97,102,105,79,115,95,107,101,111,90,100,104,113,100,107,100,109,105,102,114,98,104,115,102,98,109,99,95,99,108,98,108,102,109,101,113,99,94,100,93,106,103,108,109,103,84,108,105,98,100,115,97,91,98,91,97,97,85,103,91,98,100,96,106,120,110,94,116,105,112,92,108,91,106,118,114,113,96,101,107,101,102,109,99,102,108,105,108,124,106,103,105,108,91,86,103,108,89,83,105,96,108,102,101,105,103,112,82,105,102,102,102,116,100,110,93,100,105,118,103,111,101,103,102,91,99,114,111,104,106,102,108,99,100,86,109,109,112,92, +516.77289,100,109,117,93,103,100,108,102,95,106,103,105,97,108,106,101,108,108,108,78,106,112,99,103,105,108,112,107,104,107,114,102,100,86,116,115,103,93,102,96,110,111,107,109,105,106,124,101,61,99,101,95,104,113,99,96,106,88,105,101,105,109,108,98,117,107,101,106,106,97,102,105,94,112,96,101,95,94,102,98,99,108,101,100,108,106,119,92,109,102,103,102,100,96,100,87,104,85,99,95,104,99,107,106,94,90,97,98,89,103,106,105,102,106,116,102,109,98,105,108,102,103,96,112,108,103,113,106,117,100,113,113,106,131,110,106,104,105,102,112,103,109,93,97,100,101,106,100,102,109,105,107,106,102,105,107,104,104,109,107,101,110,108,114,104,106,102,100,112,90,107,95,100,96,99,108,111,102,114,113,82,105,97,102,95,97,106,101,108,104,104,103,110,98,110,114,99,116,99,100,103,103,105,116,112,113,99,107,124,104,105,109,115,105,102,104,106,117,97,101,110,111,96,105,93,96,105,105,109,111,105,108,109,110,107,96,107,118,109,83,106,115,108,105,105,100,98,80,100,118,101,106,111,102,102,109,88,110,107,100,96,102,106,113,117,97,110,105,116,101,90,115,113,100,125,106,100,114,102,108,112,114,110,113,100,108,102,97,109,102,104,96,108,108,122,104,104,106,100,109,98,103,99,109,99,117,130,108,114,103,101,98,109,111,106,104,104,112,95,110,107,97,103,107,111,102,98,104,112,101,106,105,98,106,115,94,108,104,103,98,110,119,110,97,103,110,109,106,111,96,103,104,104,105,95,109,113,108,107,109,111,95,98,90,106,110,104,102,103,109,104,98,108,121,107,112,109,111,114,110,117,109,102,99,106,105,94,106,99,98,113,105,100,117,112,103,98,98,112,115,108,102,113,101,103,101,94,125,107,102,98,95,103,122,122,82,112,92,107,94,105,102,100,107,112,94,100,109,94,111,121,112,101,119,83,102,83,123,83,99,110,118,111,97,107,114,103,109,91,106,114,101,101,117,117,104,96,106,105,101,110,73,104,111,107,105,103,102,94,103,108,121,113,94,96,95,107,110,109,116,104,101,114,105,86,100,114,101,99,102,103,103,110,95,97,99,101,108,107,103,108,99,107,99,111,107,111,100,100,96,106,102,109,96,111,93,104,103,115,106,100,98,103,112,100,111,101,117,108,104,105,94,101,107,103,112,94,101,117,107,117,101,103,108,102,96,113,120,100,99,97,113,99,117,102,105,94,94,99,104,105,111,95,114,114,106,108,98,104,106,102,95,108,105,105,107,97,107,107,111,102,81,100,99,116,106,116,124,106,104,103,113,112,104,114,120,107,114,108,110,102,107,98,109,105,106,101,103,88,116,98,101,96,109,119,95,111,101,104,101,107,82,82,111,104,123,98,103,100,112,100,116,110,107,99,103,95,97,111,104,94,105,106,95,112,95,105,106,105,120,102,111,94,108,113,110,111,110,107,110,107,104,94,115,105,118,110,107,110,109,101,106,96,103,104,106,104,108,94,108,108,105,114,97,103,107,108,108,105,118,91,108,97,105,110,92,88,113,109,108,109,101,99,110,112,117,107,122,92,100,116,101,111,113,112,94,99,86,110,100,103,99,112,102,104,120,101,117,111,110,108,111,92,102,101,103,110,96,104,106,92,90,106,103,111,96,101,99,113,108,122,103,113,100,108,113,103,95,105,100,95,109,88,93,99,78,109,115,97,103,107,107,94,108,105,96,110,95,106,98,109,96,98,119,99,110,96,100,105,119,109,109,91,107,110,101,105,107,97,107,113,109,105,106,127,82,107,94,105,108,110,79,98,100,118,110,109,106,98,106,105,104,100,105,96,112,106,112,119,113,112,97,103,109,107,106,105,113,113,108,100,107,114,115,104,97,110,120,105,90,112,107,70,99,104,108,111,102,95,96,108,108,102,108,104,101,99,100,102,105,103,110,105,116,98,98,101,108,101,103,107,105,103,109,105,121,109,112,106,110,117,108,99,106,110,103,93,115,97,99,109,103,104,104,99,97,112,101,106,98,103,116,107,99,113,106,103,112,105,102,100,112,115,109,109,101,111,113,98,106,96,99,121,103,97,119,102,108,108,115,102,110,109,91,97,103,108,103,104,113,125,103,113,86,102,109,97,97,83,105,112,118,101,95,104,101,104,88,110,108,98,106,103,109,106,102,104,94,102,111,99,101,107,108,118,109,103,105,101,100,110,100,102,96,98,106,104,105,100,117,106,110,86,95,114,112,107,117,90,109,107,121,92,112,93,105,96,90,110,99,116,106,114,113,113,103,104,108,95,100,98,110,110,108,97,103,113,90,106,109,99,110,81,104,104,70,115,118,101,104,97,108,104,125,108,108,100,106,111,103,109,112,110,104,121,90,91,111,79,101,101,111,98,101,103,116,104,97,113,100,98,108,92,103,104,111,106,100,121,113,88,114,116,94,105,108,101,110,114,112,90,104,99,96,112,100,108,112,110,106,108,120,95,110,108,94,116,111,97,116,110,113,107,107,111,104,100,108,116,102,116,119,102,92,91,109,110,94,115,100,110,99,109,96,107,102,106,99,116,98,116,95,120,103,102,107,115,104,106,110,108,107,93,97,102,102,115,98,100,102,109,94,104,103,106,103,110,103,118,98,110,111,105,102,106,108,107,109,108,103,110,99,104,100,105,97,113,108,106,92,119,111,107,107,107,110,107,104,109,99,106,100,117,106,111,103,107,106,95,102,105,108,104,128,112,118,109,105,102,124,105,109,109,107,108,106,95,107,103,105,108,99,105,107,117,112,102,115,102,109,96,105,110,104,104,108,93,107,99,100,87,101,99,113,106,113,104,110,108,108,110,109,101,117,104,114,110,112,99,97,107,113,117,104,113,111,103,100,116,108,108,109,111,103,97,107,100,104,106,104,108,117,92,103,110,104,110,99,110,111,97,113,110,108,111,119,110,95,106,94,114,109,105,108,104,105,116,100,104,114,111,97,101,116,108,120,113,116,102,115,102,101,105,99,109,98,104,116,122,103,110,106,104,102,105,94,110,102,108,94,98,107,111,93,106,99,114,118,117,97,104,106,101,112,109,96,112,117,108,100,101,99,108,98,104,104,111,94,102,106,101,112,101,110,108,121,116,101,109,108,107,108,114,106,112,96,107,105,103,112,96,96,95,108,107,103,103,108,102,104,111,106,90,94,105,117,110,98,106,109,106,116,100,114,111,115,72,101,115,98,113,98,128,114,94,103,114,109,104,118,111,109,114,107,100,105,103,106,100,123,102,106,100,99,117,107,102,104,103,91,134,111,104,108,125,105,103,106,99,99,94,108,106,112,94,102,97,102,109,104,119,102,105,104,107,103,104,114,103,106,104,103,98,115,100,111,100,104,112,99,113,97,97,98,101,109,114,84,108,101,103,100,107,104,97,110,111,103,131,106,122,106,102,104,108,105,105,95,111,88,105,98,108,97,104,102,110,115,101,101,112,112,100,101,107,115,113,95,96,105,103,110,111,116,103,104,99,106,105,107,107,106,105,112,110,116,108,116,97,87,99,107,106,119,105,133,118,101,107,116,108,113,106,115,121,104,103,104,108,113,111,106,112,101,116,97,99,112,109,103,111,96,105,98,112,115,112,107,94,97,115,102,112,98,97,104,111,106,113,117,129,109,88,99,99,102,106,108,101,105,112,109,111,108,105,98,102,104,104,102,103,98,110,120,117,103,101,111,115,107,104,108,104,104,108,99,102,94,101,102,104,108,124,102,109,101,103,119,105,108,101,104,114,116,103,100,98,99,95,101,96,103,100,105,100,107,101,97,103,104,102,107,107,104,104,110,102,113,99,109,118,113,102,113,100,113,99,123,109,108,96,104,100,121,106,106,112,105,118,92,88,109,106,104,111,103,106,108,110,115,103,88,99,106,99,102,109,102,106,113,109,124,101,111,102,106,112,101,106,110,105,91,82,105,113,106,98,102,100,97,99,99,97,106,106,107,114,99,123,131,110,106,102,99,108,115,106,105,106,105,107,117,96,103,112,107,123,108,113,98,106,121,105,99,113,94,109,103,107,105,104,101,99,117,105,111,112,110,105,110,97,103,100,96,104,100,101,116,135,102,117,102,101,99,114,101,115,108,99,98,107,99,121,113,102,106,117,99,103,116,111,99,106,85,108,119,108,107,109,108,106,96,112,101,106,99,106,111,106,104,99,102,112,101,95,103,101,121,100,95,99,101,124,109,89,105,111,105,99,117,102,103,103,96,102,103,98,101,126,111,100,102,113,108,100,95,96,108,103,112,115,107,112,110,100,100,90,110,105,108,108,117,110,114,101,91,132,94,111,97,103,106,102,110,106,108,113,107,87,97,105,103,104,100,113,105,108,126,108,105,106,107,84,94,130,103,100,98,117,123,104,109,96,107,110,112,106,110,133,110,101,89,94,107,117,100,105,99,102,112,106,101,101,106,101,91,107,120,103,110,101,98,104,100,112,103,101,99,101,102,100,112,110,130,104,110,99,103,104,94,111,109,108,99,91,117,110,98,96,101,102,100,97,120,117,99,88,115,104,110,103,108,96,113,98,113,107,123,107,118,116,104,107,107,111,94,97,106,108,101,104,108,105,107,105,105,112,94,110,85,97,104,106,117,108,87,103,100,111,104,112,112,107,101,101,109,83,113,107,93,103,91,100,113,113,106,101,104,105,92,113,102,104,99,86,105,103,104,109,103,106,104,103,102,118,103,118,108,87,100,114,107,89,101,92,107,95,110,110,111,120,95,112,111,105,114,108,112,116,91,108,111,91,106,96,115,102,104,101,95,105,111,103,102,111,110,118,110,108,98,100,116,98,90,104,100,107,91,104,83, +516.91364,84,95,98,87,120,113,107,101,91,83,87,109,102,116,101,97,101,102,108,99,112,89,88,109,109,116,107,108,102,106,98,106,100,107,76,100,80,96,110,112,106,105,100,91,89,111,103,106,74,105,105,102,105,102,106,96,114,98,103,102,102,96,103,99,99,117,105,110,105,120,107,97,95,116,110,116,90,114,110,104,94,104,102,108,102,116,112,107,98,98,108,103,106,97,96,110,105,101,99,99,118,113,102,99,98,108,108,121,108,106,108,92,100,103,101,100,107,99,107,100,100,105,115,106,114,108,126,77,120,110,96,101,106,110,104,101,111,106,95,106,101,98,95,126,115,106,103,98,103,101,97,109,106,110,96,96,114,112,109,99,91,102,111,106,113,94,114,105,101,101,107,110,104,105,117,104,105,118,104,101,109,99,94,93,106,101,110,98,95,100,92,99,101,112,116,106,108,119,70,94,100,92,109,109,120,112,109,108,103,112,102,104,106,111,105,101,105,100,87,102,110,107,76,108,96,106,103,102,105,113,98,88,95,110,109,105,109,104,112,97,103,99,110,109,109,106,110,112,116,110,100,114,104,110,104,109,93,115,99,106,107,114,99,105,113,112,107,92,105,101,106,105,122,118,94,106,98,94,103,103,103,106,105,103,104,112,92,106,112,105,105,115,120,104,110,119,102,111,115,92,100,101,110,119,95,106,106,110,98,113,87,107,100,100,97,101,93,104,117,120,104,95,106,111,101,110,100,95,106,113,102,109,97,102,103,105,98,107,102,95,110,100,102,100,108,100,109,98,108,100,97,103,115,93,105,98,109,108,114,109,105,97,103,91,100,103,99,102,109,109,103,106,95,95,116,105,103,112,101,98,98,109,108,112,109,101,99,106,108,95,98,95,107,110,104,110,97,96,109,106,105,109,101,97,101,108,112,113,109,108,101,95,119,102,111,118,96,109,98,104,116,107,101,121,103,102,105,101,105,106,107,78,124,100,113,84,105,102,101,129,105,99,103,117,97,106,100,102,91,111,90,108,105,122,106,114,99,103,106,94,105,108,76,99,103,109,91,108,105,98,106,112,99,109,100,102,102,104,89,106,106,120,112,109,109,107,96,109,112,99,104,107,104,99,94,113,100,110,119,95,105,102,107,101,113,111,96,113,102,109,113,116,117,121,107,117,99,105,118,100,109,101,110,111,105,109,96,105,101,98,100,88,106,100,95,113,112,100,97,115,102,112,92,103,113,107,112,102,94,114,99,105,98,104,110,100,99,79,110,107,97,102,105,119,100,106,97,96,85,105,102,101,100,110,102,110,103,105,111,107,111,112,105,107,109,109,112,107,101,101,107,107,115,97,105,110,103,107,104,102,99,107,89,98,106,104,105,104,124,121,102,117,108,100,107,114,99,105,106,103,107,103,110,103,105,101,103,102,117,110,82,117,105,112,99,103,95,97,95,105,101,108,103,111,106,99,104,97,109,103,97,107,102,106,104,113,110,106,96,118,108,112,107,82,94,106,109,90,95,107,120,105,107,110,87,108,109,94,113,101,105,109,112,98,95,102,96,118,115,106,108,110,104,103,104,116,105,108,101,92,99,98,106,106,102,118,115,108,105,101,104,84,105,107,95,105,99,104,103,112,101,102,102,103,99,97,98,101,112,113,97,103,93,113,105,103,111,117,105,103,102,104,106,107,115,111,113,119,96,106,113,97,100,102,96,108,97,107,104,97,107,108,113,90,101,100,90,108,101,108,113,94,112,91,87,85,100,115,107,100,90,101,107,115,96,113,96,116,112,109,100,104,105,116,111,105,110,117,105,109,106,106,108,105,108,117,106,108,89,110,108,98,100,101,107,104,106,114,108,99,103,107,94,105,99,110,109,104,112,116,109,97,111,109,113,100,112,100,91,107,104,117,110,104,103,102,97,104,106,99,103,99,111,118,106,107,118,101,95,104,110,104,98,101,107,106,100,106,115,89,115,115,109,95,75,105,114,99,101,104,109,98,102,106,106,99,105,105,100,108,119,110,105,118,104,68,117,105,104,118,103,122,107,109,115,101,106,101,107,105,103,106,107,110,114,107,109,112,107,115,109,117,109,90,98,102,107,96,104,104,104,113,112,113,112,104,107,99,108,107,113,114,110,105,102,109,103,116,104,106,97,109,84,102,99,104,104,102,96,102,117,112,120,99,98,96,109,104,95,116,97,93,109,105,104,105,106,106,100,114,109,106,109,100,103,99,107,110,108,97,115,106,106,101,103,109,96,100,98,118,99,99,106,105,107,107,100,109,110,101,103,108,110,112,104,108,110,104,98,103,91,116,90,104,94,105,103,76,102,120,111,107,100,103,101,111,100,115,105,100,109,110,85,114,105,98,109,102,103,103,126,88,101,112,107,109,103,105,109,92,107,106,97,120,97,104,102,107,102,99,112,107,98,102,110,103,110,105,96,110,108,101,85,109,99,108,82,90,119,104,104,115,109,114,89,98,101,102,108,117,102,95,103,110,110,102,95,106,108,115,101,110,100,95,91,100,106,94,75,104,100,103,106,113,92,94,100,109,105,104,108,114,106,99,100,108,108,104,104,102,110,100,102,107,104,96,105,111,104,105,104,99,109,105,100,99,103,103,108,108,95,87,104,90,109,111,111,87,122,91,108,106,102,119,102,100,104,92,101,95,109,95,104,107,107,105,115,112,116,103,100,121,103,99,106,112,112,98,104,110,114,93,115,102,95,111,102,105,102,105,100,102,125,98,109,109,99,111,103,106,110,99,99,104,114,91,109,110,111,108,91,105,105,101,98,98,100,99,113,106,105,105,122,107,110,102,105,105,110,98,99,98,108,102,103,100,94,98,94,110,112,103,111,104,102,104,103,117,99,102,115,101,128,102,111,102,96,93,99,118,115,99,113,97,112,106,101,99,99,104,113,113,106,100,106,101,104,100,110,105,109,102,99,104,99,100,113,103,109,101,97,102,98,90,112,113,107,98,92,105,104,113,106,99,112,109,104,95,113,105,115,104,116,112,107,104,99,96,103,117,102,105,110,103,107,110,103,95,101,99,95,112,105,107,90,106,106,105,117,102,110,109,99,101,78,102,108,103,102,108,107,95,98,113,103,99,102,117,105,100,100,100,112,94,100,104,117,85,95,108,95,109,106,103,107,104,101,114,108,93,96,107,106,100,103,106,104,96,117,104,127,105,94,99,99,100,98,97,109,111,105,113,99,109,112,100,108,108,107,101,104,110,105,105,110,106,114,108,94,98,106,100,106,103,108,113,98,110,132,109,112,92,111,104,94,108,106,93,98,108,111,113,100,121,106,103,106,102,98,112,108,105,101,114,102,112,105,106,111,102,93,102,111,105,98,80,105,101,112,101,116,109,98,104,103,68,114,115,117,101,101,113,99,126,81,114,103,92,108,111,100,104,95,103,103,102,95,107,99,96,110,97,101,93,99,110,91,104,103,109,108,113,109,97,109,101,103,107,111,98,104,114,94,103,108,113,97,97,104,103,111,104,104,112,95,105,98,103,105,113,90,109,108,112,106,91,103,112,97,104,103,115,112,116,98,102,87,98,94,111,94,105,108,108,111,108,116,98,116,108,107,113,104,95,99,100,96,99,104,107,101,100,100,101,110,91,106,106,101,85,106,105,108,107,107,110,107,102,98,86,108,96,104,98,96,101,100,97,106,94,102,91,103,104,117,113,106,102,91,99,99,130,113,98,95,110,102,101,109,103,98,100,104,97,100,101,97,104,88,103,94,91,106,99,99,97,107,97,104,107,125,93,97,116,104,102,111,104,94,96,106,104,104,116,99,112,96,97,101,110,100,103,104,108,92,101,104,108,97,64,99,104,99,106,111,108,102,103,109,114,115,98,102,106,93,99,86,99,100,98,107,113,92,99,109,108,104,97,113,115,108,87,107,101,102,98,116,108,106,101,101,113,98,103,90,92,108,112,90,91,105,104,108,98,108,94,91,91,94,99,102,100,112,115,99,113,98,105,110,100,114,113,101,88,103,111,105,100,110,107,105,108,97,101,104,102,97,107,97,104,99,99,121,101,117,119,106,101,112,103,110,101,101,107,104,101,93,107,97,102,113,91,99,107,101,102,111,111,96,98,113,96,92,104,116,92,102,110,102,114,97,98,75,107,103,107,105,102,103,97,94,100,104,113,104,104,110,95,109,101,101,103,98,103,109,104,102,101,107,107,102,97,109,114,98,88,118,111,99,93,97,105,131,104,95,100,95,110,107,95,107,85,103,102,99,102,104,102,88,113,106,106,107,102,104,101,105,97,110,115,105,94,103,95,104,102,108,99,99,102,101,105,112,109,107,97,101,108,110,105,105,106,103,105,102,100,103,106,98,85,102,113,108,95,87,103,102,107,97,91,109,93,102,101,117,108,110,112,100,106,113,104,101,91,114,119,97,92,99,109,110,104,101,119,96,103,100,125,101,108,99,99,104,116,86,114,99,102,96,96,100,116,99,104,102,106,108,141,93,103,87,112,92,85,98,117,106,109,116,107,102,105,96,93,106,115,96,117,112,99,98,104,101,105,119,96,99,100,97,92,92,113,101,102,120,95,102,102,110,100,102,101,112,103,104,113,94,90,111,80,118,101,98,98,112,94,110,102,96,98,99,105,101,110,105,89,104,103,87,96,99,101,100,106,97,104,104,99,98,101,109,97,105,106,94,105,98,97,101,101,90,101,100,107,104,99,107,94,116,94,98,100,95,90,102,120,104,105,100,107,92,98,99,77,117,116,106,96,101,108,101,105,117,107,109,83,106,109,96,98,95,107,101,87,83,100,107,110,104,96,99,112,105,117,97,87,92,97,105,109,114,91,100,103,107,88,103,92,99,95,101,96,102,99,95,106,113,94,99,79, +517.05432,107,107,93,103,119,110,110,107,101,105,88,92,101,117,101,92,114,97,118,103,106,102,88,100,124,95,98,100,105,107,102,110,105,93,98,119,120,81,90,107,91,108,104,99,120,99,94,112,107,112,100,104,110,105,103,101,102,97,92,115,96,96,114,97,101,105,92,90,99,103,98,120,103,87,97,101,105,123,107,106,120,101,117,113,101,98,104,114,104,90,95,111,111,86,115,108,102,99,96,112,105,109,107,109,102,106,100,110,109,112,117,113,98,105,99,114,112,111,111,106,107,101,98,111,105,108,107,99,109,114,108,105,114,100,102,81,94,104,106,117,112,104,104,96,102,121,119,107,114,107,103,116,106,98,101,107,87,93,108,101,105,121,118,98,102,102,95,102,102,97,92,100,99,109,123,117,104,99,118,107,97,103,104,107,100,112,110,97,98,113,98,117,101,107,106,106,95,106,99,95,99,99,108,90,105,109,96,104,106,105,105,100,100,115,97,106,99,108,108,96,102,115,95,99,104,107,100,105,111,112,100,114,107,126,100,114,104,94,103,101,79,113,111,119,111,101,111,99,106,118,101,114,104,99,114,113,85,107,109,105,105,106,111,112,99,104,93,109,114,100,110,109,108,82,104,106,105,106,105,94,106,110,99,96,103,106,105,97,113,113,102,86,107,117,102,102,99,109,110,107,90,92,96,112,100,116,102,97,126,103,100,113,105,115,117,102,98,107,101,113,104,91,100,108,104,102,110,102,102,136,110,95,106,114,108,103,109,94,108,107,110,100,110,101,104,102,93,118,107,103,109,106,102,115,105,101,105,102,107,104,100,113,99,83,102,70,98,118,112,112,98,102,110,115,91,102,107,113,81,102,113,96,98,115,109,92,103,98,103,105,123,96,102,105,99,111,95,106,98,105,94,110,96,104,96,106,102,108,89,102,99,100,104,109,105,102,110,109,108,98,104,106,102,103,90,106,110,103,95,104,103,109,108,111,108,113,101,107,109,108,109,109,100,100,104,98,119,93,104,105,98,116,107,107,121,95,94,125,101,105,93,104,110,97,109,111,104,98,109,100,105,112,108,102,101,100,96,102,107,113,101,108,98,107,107,114,110,112,111,103,104,101,114,103,80,104,116,93,93,104,107,103,93,88,104,99,112,106,103,98,105,107,104,110,104,112,106,109,95,98,106,91,103,114,106,95,108,108,102,101,105,102,104,100,105,117,106,93,95,107,112,107,108,110,99,126,120,103,109,95,104,99,107,108,98,113,107,103,104,114,104,111,109,97,101,123,106,102,109,101,102,100,113,112,108,108,119,93,88,108,111,104,111,99,98,102,118,107,99,110,109,111,102,114,117,106,97,97,99,98,107,109,121,108,92,86,101,100,105,126,98,108,119,101,117,95,112,111,109,108,108,105,106,101,90,96,105,108,102,105,115,95,110,105,100,97,93,100,117,102,121,112,113,99,107,104,117,103,116,113,103,101,79,101,104,99,111,103,104,114,112,117,99,104,105,106,109,105,113,107,111,99,98,99,110,110,122,103,129,98,103,108,106,80,113,107,103,103,99,102,108,107,115,104,110,105,94,92,100,103,104,93,107,90,117,97,120,109,110,110,97,100,109,88,94,109,101,107,111,101,105,99,99,113,102,94,100,109,107,91,106,108,98,91,112,101,101,106,106,103,105,115,94,116,112,98,108,113,104,105,105,101,108,105,103,120,104,101,105,90,113,100,94,96,96,114,96,111,112,91,108,103,114,102,108,122,113,105,103,98,109,102,114,116,95,103,105,113,105,105,101,85,100,111,113,109,105,112,88,104,100,88,95,109,108,101,96,110,101,102,106,111,98,110,113,110,113,114,102,97,109,107,109,107,102,106,121,102,108,107,106,107,117,95,112,102,112,92,99,98,101,108,110,96,90,96,107,99,93,99,102,105,103,104,99,111,108,105,100,105,105,95,102,98,99,101,100,99,118,95,101,113,103,110,102,95,100,94,96,103,112,105,95,100,100,111,100,118,90,137,103,110,96,106,98,103,112,100,112,111,104,116,114,110,112,104,95,100,113,113,103,123,108,115,113,93,104,94,104,99,118,107,100,108,113,105,96,107,107,102,97,108,112,105,101,107,113,110,111,100,109,107,101,108,100,100,102,96,109,105,105,109,113,106,99,112,100,109,100,109,107,110,108,100,109,100,67,105,99,83,97,103,109,104,122,107,107,102,94,107,104,104,100,109,101,93,104,112,109,98,99,107,110,102,99,97,95,113,97,107,111,99,102,103,105,94,107,92,110,107,97,97,105,109,104,104,117,102,102,100,110,106,97,105,105,105,110,99,111,101,99,105,86,102,112,100,97,97,109,113,104,114,100,102,98,98,93,105,101,94,92,117,98,92,102,106,102,89,92,108,103,99,99,111,111,114,103,100,99,95,104,121,94,117,111,105,98,91,113,103,109,106,94,96,106,135,122,99,112,123,105,104,103,90,100,99,100,95,108,103,106,98,107,101,104,113,113,107,103,94,102,116,104,106,107,97,102,104,88,115,113,101,105,109,109,114,95,102,111,121,100,113,107,106,107,110,103,106,97,103,99,112,108,109,85,106,88,105,115,102,115,105,114,119,113,119,112,102,106,99,106,101,115,91,109,118,112,109,106,98,108,102,114,101,94,108,94,104,107,102,107,117,108,105,109,125,104,105,102,112,102,116,103,113,85,112,100,79,98,104,98,108,98,105,100,112,100,111,109,108,103,117,93,102,106,112,104,109,100,113,111,103,109,112,108,103,98,104,95,104,108,93,101,121,102,98,118,108,105,108,102,97,116,112,112,103,94,105,102,109,108,111,113,106,101,99,107,97,103,117,107,104,99,106,95,98,110,100,92,107,103,89,112,121,99,118,88,103,100,104,100,105,113,106,109,116,100,113,103,109,114,101,113,104,103,113,101,113,129,106,110,112,106,116,100,111,106,101,107,109,104,108,106,91,102,98,115,111,99,106,103,109,107,98,106,97,123,102,91,100,108,106,97,118,117,111,104,99,101,112,98,107,107,84,112,105,111,104,108,104,99,99,107,105,103,110,98,102,110,98,102,127,121,112,110,95,114,100,105,103,107,123,101,114,108,110,110,102,106,99,104,104,103,113,125,105,108,95,105,137,112,106,104,108,110,106,111,109,108,105,119,107,99,113,102,102,113,111,112,103,105,106,96,113,113,108,108,110,102,95,106,102,105,95,116,106,114,103,104,100,99,111,102,100,121,105,99,115,109,102,98,109,116,108,106,104,112,93,98,99,105,113,112,117,105,95,105,111,97,109,99,124,109,111,108,105,106,102,111,99,105,106,111,92,91,100,104,102,111,111,117,103,117,102,106,101,103,113,108,102,110,109,96,109,112,97,103,119,104,103,113,108,110,113,113,109,102,98,107,104,97,112,96,102,103,104,102,116,118,112,109,121,85,102,111,102,109,93,132,109,101,103,107,98,115,109,120,107,108,116,96,109,102,114,110,115,102,110,107,107,113,114,106,103,107,116,113,103,102,109,105,117,109,115,121,107,96,95,109,112,113,102,93,111,95,119,106,103,111,99,99,105,110,117,105,110,103,112,120,99,95,97,99,110,101,110,104,111,102,124,102,106,96,70,111,104,99,123,101,104,104,109,112,117,102,113,103,105,106,104,105,103,115,102,107,99,104,106,117,102,113,112,108,108,91,113,99,92,119,113,102,94,109,106,104,99,117,113,102,91,101,108,110,108,85,96,96,100,101,100,99,95,94,106,99,105,101,99,100,118,101,110,112,99,104,100,101,121,104,110,107,113,98,104,107,113,109,97,106,104,105,108,98,104,109,108,112,96,108,103,97,109,104,111,110,110,98,94,103,111,106,97,102,105,117,112,100,90,92,100,110,102,114,101,92,98,100,127,109,117,102,103,111,106,98,109,96,99,110,101,96,108,104,103,108,103,108,103,111,109,113,103,105,108,102,102,102,108,98,106,112,119,96,109,116,121,106,106,109,112,116,100,84,106,111,100,103,97,113,90,119,103,98,115,110,102,101,105,87,101,105,98,118,112,103,104,103,103,104,97,114,124,104,103,113,105,96,109,109,107,99,111,103,114,105,117,106,107,105,113,95,99,95,102,98,103,108,104,115,103,106,106,101,92,111,100,108,114,107,101,101,107,105,112,84,117,78,97,115,115,113,103,109,106,90,94,107,109,98,113,103,109,102,95,110,70,117,108,120,98,100,99,102,108,103,96,96,108,113,111,111,112,105,109,96,101,105,111,92,105,107,127,104,105,83,100,103,101,116,109,110,98,116,110,87,108,90,117,112,108,113,108,103,108,99,98,121,103,111,107,102,120,111,106,112,103,108,90,105,100,112,111,107,107,110,117,108,104,91,99,105,113,95,106,90,115,102,86,95,107,107,109,108,110,113,100,109,101,101,106,109,112,109,101,129,95,106,113,83,94,105,110,95,107,98,109,116,127,86,95,87,103,107,99,115,107,98,99,105,118,89,105,95,102,98,115,107,108,92,106,111,80,104,100,105,99,92,100,91,90,96,112,106,107,103,113,102,110,101,111,101,110,110,96,105,92,101,82,99,102,96,107,106,101,94,109,109,122,116,105,112,99,109,97,106,90,100,114,119,89,99,102,112,108,112,111,107,99,102,114,99,94,99,105,118,102,101,99,109,98,126,106,101,108,105,109,95,100,109,97,112,104,117,104,104,103,104,109,101,97,104,98,114,99,104,109,93,102,106,111,106,91,104,98,99,100,107,110,103,91,88,117,95,108,98,75,95,99,103,104,108,96,91,94,104,98,102,119,99,104,99,105,81,107,94,117,98,102,114,96,115,120,113,97,97,109,104,122,106,105,102,107,102,111,95,99,85,108,90,103, +517.19501,95,112,107,95,112,102,113,109,101,110,84,94,104,101,91,111,103,114,104,105,91,110,100,111,111,107,95,93,99,106,101,107,98,107,105,108,85,97,114,118,98,102,104,93,92,102,105,111,100,103,109,96,80,106,90,100,111,101,100,98,98,114,90,96,102,120,105,101,99,88,100,132,100,106,70,103,90,106,103,100,95,114,84,101,110,80,102,103,100,97,103,95,98,105,93,105,104,100,96,109,109,100,85,109,96,103,106,92,104,104,102,101,101,114,99,100,104,91,107,98,101,97,108,102,112,105,105,113,98,99,111,83,98,112,110,107,100,106,75,105,94,97,102,98,99,95,103,126,100,115,100,108,104,97,97,103,110,112,105,97,103,87,104,101,100,95,102,105,117,111,106,103,101,102,105,92,110,106,103,84,91,102,96,113,102,89,113,96,101,107,105,93,86,116,96,104,100,105,104,103,113,112,97,92,96,96,102,110,107,107,100,90,111,98,100,99,108,109,109,118,105,98,98,105,91,105,109,105,103,104,93,106,117,97,102,119,98,112,102,95,112,94,100,104,104,104,110,106,106,117,116,106,96,98,96,102,105,100,98,95,78,109,96,106,106,111,95,113,116,112,109,98,101,93,114,102,113,92,100,109,103,102,91,103,100,100,99,113,101,101,104,101,104,99,111,113,106,99,105,89,107,92,102,97,97,96,110,109,97,102,94,111,109,111,100,80,105,81,94,102,95,92,105,102,105,109,107,93,112,108,105,107,114,101,89,99,116,99,97,112,111,104,97,84,108,101,102,110,103,106,98,113,103,109,115,100,106,107,93,95,94,97,112,107,98,105,105,106,97,103,96,106,96,105,104,101,104,115,99,101,125,108,97,103,96,99,113,90,112,112,106,103,102,103,96,96,110,105,102,112,99,111,103,90,112,110,105,95,101,95,98,108,105,95,113,99,111,102,112,99,85,110,93,101,111,105,99,98,94,110,102,111,114,113,102,99,100,125,101,112,107,97,99,112,90,80,107,96,97,112,103,97,120,99,95,104,114,100,110,97,90,113,110,106,108,97,108,98,105,96,98,114,113,103,102,104,108,123,120,112,102,110,111,100,110,102,106,91,103,91,119,116,100,121,100,94,102,102,108,99,103,101,113,107,104,108,97,126,101,110,103,96,95,128,109,106,123,100,105,88,122,100,95,98,107,101,102,95,104,92,103,109,113,105,112,115,91,98,98,105,104,113,106,94,97,106,102,91,108,98,95,119,109,102,97,121,100,103,107,101,104,99,96,128,113,100,113,99,103,99,89,97,96,103,98,103,102,106,106,101,108,88,65,101,117,104,115,114,109,103,119,125,99,95,115,99,104,110,64,97,92,102,106,97,94,99,106,96,107,112,107,106,107,99,101,98,96,107,112,100,111,114,96,102,106,113,101,103,104,108,100,105,100,106,94,98,100,100,121,103,111,103,105,98,86,96,105,96,107,109,105,105,98,108,98,94,95,99,106,108,107,110,104,103,96,103,109,86,110,99,101,102,107,110,87,101,106,109,110,100,109,109,101,97,110,98,102,90,96,101,108,100,99,105,103,113,109,92,105,103,102,105,114,113,93,111,109,115,106,96,104,115,95,101,101,92,97,98,99,105,103,101,83,115,114,99,107,96,107,95,98,108,93,106,107,93,102,97,105,92,121,90,106,93,87,110,104,109,102,108,106,101,111,108,108,120,112,109,99,100,99,122,102,103,99,117,113,107,106,99,102,97,108,109,90,114,98,100,109,111,89,105,108,122,102,107,104,98,88,109,104,116,94,99,108,74,100,101,103,110,113,120,97,103,109,106,104,91,98,111,108,103,96,74,99,95,113,107,102,106,110,104,99,109,106,94,118,87,104,81,102,104,107,105,104,97,94,113,112,99,111,112,106,108,115,98,99,95,111,103,96,96,97,103,85,97,121,99,110,109,101,104,94,105,105,111,102,108,104,111,107,110,107,109,108,103,101,104,96,99,106,96,110,102,114,101,106,103,115,96,111,102,105,104,113,95,106,102,102,99,99,99,109,99,98,100,103,105,109,90,106,102,122,98,102,98,91,110,97,103,101,109,112,102,105,109,121,94,117,109,100,106,102,109,96,120,92,102,100,111,96,104,109,113,95,101,102,105,95,112,110,105,112,97,107,112,103,86,95,95,104,111,102,94,105,110,94,104,96,94,96,100,101,117,101,114,135,95,82,107,96,122,111,110,111,90,91,106,107,99,104,106,103,92,98,104,95,103,82,109,101,103,99,114,117,101,112,102,101,107,95,101,102,95,95,119,84,100,108,106,108,101,106,100,104,112,109,88,104,116,92,108,107,106,107,98,97,97,106,108,102,96,91,103,95,91,98,100,90,101,98,96,104,107,106,103,90,100,90,106,105,98,102,107,109,103,99,104,108,92,98,109,104,109,98,105,102,105,106,99,106,100,101,122,105,107,108,111,113,100,110,98,98,76,92,93,104,111,109,100,103,97,103,105,113,100,110,104,100,95,94,108,103,108,99,107,107,103,111,105,72,121,105,119,121,93,97,115,104,76,109,121,97,104,106,102,106,110,92,113,98,80,90,113,117,101,109,116,102,123,117,103,107,113,98,108,113,106,109,106,100,111,109,105,99,103,102,102,108,98,113,109,121,115,113,104,106,103,109,105,108,100,106,87,103,106,110,101,99,118,111,113,102,108,96,112,95,107,103,102,97,115,102,98,111,105,103,106,113,112,99,105,99,107,112,102,113,110,110,89,105,113,100,110,105,105,106,116,103,104,101,113,105,118,104,111,104,94,120,113,111,107,99,108,106,106,112,101,106,112,96,109,101,92,101,105,95,99,98,102,109,95,107,110,102,104,101,103,108,105,100,102,106,117,99,97,104,99,96,109,106,109,99,100,105,112,109,102,105,104,116,118,88,97,100,113,109,113,107,116,108,109,109,114,102,117,101,101,103,102,113,107,107,97,128,108,117,100,107,107,110,95,109,110,123,97,99,100,107,110,115,100,103,106,107,101,112,108,100,119,106,114,110,99,102,97,111,91,107,106,99,118,104,107,90,97,105,99,109,99,110,105,118,123,112,102,113,96,110,109,108,99,112,104,108,102,115,103,103,109,103,96,101,99,113,98,115,104,113,104,95,106,105,112,121,105,99,113,109,99,106,102,109,114,105,91,108,111,91,122,100,97,101,87,106,109,113,102,106,118,103,104,112,106,88,113,108,102,119,109,115,108,92,117,128,99,101,107,104,104,87,108,103,106,100,110,108,112,109,112,115,113,99,106,98,105,104,103,100,103,101,103,98,101,87,107,101,95,108,102,99,104,98,81,117,100,96,97,109,104,101,113,109,105,99,112,112,96,92,103,108,94,104,77,110,100,112,106,105,86,94,114,103,108,103,113,107,99,85,111,99,91,102,91,103,95,99,102,124,99,94,102,106,102,104,102,120,99,108,101,110,116,95,98,96,103,109,90,110,103,112,117,101,112,110,96,101,98,99,96,103,129,91,117,115,98,102,106,101,109,101,116,115,115,116,108,110,115,105,116,106,81,105,125,101,109,106,99,104,96,100,106,95,111,103,100,105,95,97,106,100,104,108,117,116,93,120,108,102,108,106,106,117,105,102,104,107,107,98,112,105,108,90,104,98,98,100,102,108,107,110,101,123,111,100,115,102,100,112,116,103,100,111,116,94,104,108,107,104,96,113,104,105,104,108,107,87,96,119,106,110,112,109,96,107,98,107,108,116,111,113,96,88,99,94,106,96,122,113,106,109,107,97,97,98,83,115,106,103,102,119,111,99,105,108,100,114,104,103,98,93,110,114,111,100,99,108,105,119,98,100,105,103,101,110,101,100,108,105,101,117,109,100,93,108,105,93,95,100,102,103,106,106,100,98,105,109,112,94,106,101,99,114,115,102,95,107,103,131,101,109,113,105,110,93,110,98,112,102,109,106,102,98,104,106,108,100,90,100,111,105,113,92,114,106,95,113,99,103,99,101,113,90,108,108,124,103,113,110,95,95,110,105,110,99,107,86,108,103,95,99,98,105,98,105,90,104,132,108,112,110,107,103,94,114,110,99,116,103,126,71,107,102,107,100,107,106,95,103,100,109,98,98,100,101,105,107,85,117,101,114,101,101,110,118,98,107,105,101,107,110,110,99,106,107,110,105,122,111,103,115,105,95,107,76,96,111,113,102,110,110,96,108,100,101,109,117,100,104,95,97,106,99,103,108,99,93,103,106,99,104,101,108,107,98,103,101,103,92,115,91,105,99,107,108,108,106,95,112,113,98,92,121,109,110,101,112,97,96,98,115,114,102,98,105,111,100,92,96,131,109,108,110,118,106,94,109,111,109,107,96,101,113,111,98,112,100,125,108,108,97,102,101,110,107,111,101,111,117,82,99,115,98,105,108,101,94,100,101,110,98,103,107,102,109,88,113,107,103,100,106,90,102,100,112,107,92,106,87,99,97,112,92,92,115,92,102,106,113,107,98,101,106,103,96,106,103,112,99,106,106,104,114,107,102,98,111,98,110,103,99,104,111,104,103,107,99,98,96,119,106,94,97,103,100,106,105,111,89,117,106,109,105,98,103,119,117,108,92,120,111,107,104,105,112,95,104,113,107,106,103,103,112,100,98,108,99,90,92,109,90,88,98,107,118,99,112,102,99,103,111,113,99,101,93,91,111,103,95,93,117,109,107,113,104,93,94,131,110,98,102,92,95,99,90,93,100,110,87,107,83,99,95,104,106,104,76,107,110,96,103,102,105,93,105,113,105,115,99,109,94,112,109,81,99,96,94,97,98,101,108,68,98,106,99,106,85,97,100,101,105,103,99,95,104,97,99,110,96,113,121,98,120,87,94,102,98,96,92,90, +517.33569,110,113,104,113,103,102,105,104,110,100,107,119,98,101,105,103,104,99,99,98,113,102,108,100,106,105,101,97,113,107,100,109,99,98,111,101,92,91,89,94,96,101,101,105,107,108,93,100,92,100,102,97,93,97,100,92,99,90,108,93,91,101,99,101,115,99,106,90,92,105,87,106,100,109,108,110,98,103,111,99,103,104,91,116,103,106,108,96,112,100,114,99,97,101,104,101,109,93,91,104,103,107,105,107,92,125,108,107,99,109,101,112,94,98,114,107,102,105,104,108,106,94,113,113,105,99,109,87,101,117,101,99,106,106,101,103,100,90,97,94,82,96,95,109,102,112,97,105,98,106,100,103,95,75,94,97,114,101,111,113,97,104,112,101,100,109,85,109,91,102,108,102,105,93,93,100,102,102,114,97,107,99,103,99,88,106,117,87,106,108,98,97,120,103,104,108,105,120,97,104,122,94,83,109,101,91,100,103,112,104,99,108,103,114,106,103,103,125,96,101,108,100,110,98,94,107,109,105,105,107,104,108,98,104,104,98,90,95,104,79,98,105,102,101,96,102,100,105,109,113,103,113,110,110,95,103,108,106,93,97,104,103,115,108,92,114,103,96,109,69,102,113,110,105,106,95,98,114,97,95,105,100,92,105,100,98,94,104,101,113,96,109,107,96,107,105,117,108,103,114,98,106,95,98,94,111,115,118,99,100,104,108,100,97,104,108,113,112,97,109,103,105,104,113,92,96,93,107,102,104,98,111,104,101,117,95,105,103,121,106,117,94,98,99,105,110,99,110,110,110,109,102,95,102,107,100,94,115,96,110,97,103,102,104,102,106,111,100,97,114,105,104,96,104,104,108,109,99,106,99,118,121,106,108,100,103,92,102,109,96,112,91,93,122,104,100,106,105,102,125,103,113,105,104,99,104,110,101,101,96,97,94,108,110,108,103,114,101,105,100,121,108,93,110,110,99,99,107,104,108,90,103,114,99,112,105,103,109,99,105,101,108,95,101,109,115,102,95,102,112,99,95,108,114,107,104,80,101,104,117,102,91,111,113,92,104,95,103,94,102,112,118,108,87,91,104,106,115,101,109,111,106,114,97,92,98,108,93,105,111,105,100,113,89,98,110,96,106,115,100,115,111,103,104,103,118,108,113,104,104,120,111,109,109,104,103,104,95,109,99,102,99,116,103,101,94,104,100,105,105,110,114,105,108,111,113,87,113,104,131,107,95,103,109,108,118,106,101,105,99,102,105,111,104,98,106,88,96,101,118,108,109,103,105,112,100,105,105,105,110,99,105,100,111,103,104,102,94,105,104,115,114,107,98,112,98,111,103,91,109,98,101,109,97,112,103,111,108,111,89,103,88,112,115,103,108,103,110,101,110,97,104,113,76,113,94,99,95,114,104,112,104,96,117,100,112,115,103,101,89,99,95,102,107,98,100,100,93,113,112,104,91,109,111,106,100,107,104,101,105,105,110,102,112,98,108,100,103,111,101,93,101,107,101,88,100,120,103,103,98,103,96,113,99,102,99,106,100,116,96,94,105,90,93,82,102,103,113,105,108,106,94,101,112,124,120,99,107,100,101,94,105,108,96,66,102,114,106,98,98,109,91,99,98,94,101,100,90,107,86,102,101,103,108,102,91,121,106,94,103,110,96,92,97,89,101,96,103,113,103,110,99,107,113,118,105,112,97,89,102,103,108,96,110,103,104,99,95,113,113,104,113,91,117,98,112,109,104,91,109,92,101,99,115,106,105,96,119,93,101,100,106,105,93,94,103,97,103,99,108,100,102,101,111,116,107,103,74,110,113,116,111,95,115,118,100,110,111,105,104,110,112,107,114,106,99,108,108,102,103,95,107,108,100,107,109,104,103,96,101,107,93,99,97,111,104,117,110,104,118,108,108,81,110,96,94,101,92,92,113,100,95,96,105,97,90,113,105,100,95,99,95,120,113,110,96,96,102,102,114,103,104,102,100,102,104,109,107,104,101,88,96,116,112,113,99,99,108,103,104,114,107,93,99,103,104,103,101,112,105,106,112,94,95,114,109,97,97,97,95,96,94,102,98,92,110,103,100,111,97,113,90,104,112,105,109,98,102,102,101,93,113,112,109,100,93,92,110,91,109,112,107,90,106,102,106,107,105,101,95,102,104,108,110,108,107,102,102,100,97,108,109,105,113,103,102,107,105,95,97,117,95,106,106,98,109,112,105,94,112,103,108,108,104,102,103,103,101,104,96,99,105,93,117,93,97,102,108,98,108,95,100,97,104,83,103,109,95,90,104,91,112,110,110,103,110,114,93,111,96,115,114,118,99,106,86,107,99,121,100,111,113,107,102,104,113,103,112,107,95,105,103,95,92,99,109,105,100,98,95,102,105,110,97,103,109,104,97,100,103,85,108,101,96,94,106,116,107,98,97,95,113,101,110,104,127,105,104,110,105,101,112,101,100,106,102,103,107,120,110,102,113,113,101,102,106,104,101,107,110,93,96,107,106,98,110,118,107,100,95,110,105,103,101,115,96,90,111,104,114,105,102,108,107,119,105,110,97,97,102,101,108,112,111,99,114,104,95,109,112,112,105,117,110,106,106,130,99,105,95,118,111,114,106,97,106,108,115,110,104,88,102,98,95,104,113,108,115,115,96,111,98,113,105,100,103,105,107,108,112,101,108,109,95,92,113,121,99,100,94,101,100,110,107,112,136,107,101,109,107,102,95,108,92,103,124,102,106,113,98,111,103,105,97,107,102,97,106,111,106,107,110,95,109,79,106,101,118,123,114,116,114,96,115,102,101,98,104,106,109,98,100,113,95,93,105,106,100,92,102,106,105,100,103,94,102,105,103,103,106,108,108,101,110,119,103,102,113,98,99,92,107,100,117,102,98,109,80,103,111,100,107,115,100,117,105,97,98,119,103,104,108,103,102,98,116,88,99,99,120,110,109,109,106,109,110,104,100,100,90,99,98,112,89,112,94,106,113,107,107,104,113,95,113,110,103,92,105,105,90,97,106,100,109,97,106,104,96,101,103,100,123,102,113,107,97,116,110,106,101,95,107,101,103,100,93,95,103,106,109,110,116,110,100,119,104,125,102,98,103,107,105,106,104,108,101,91,106,108,102,108,109,109,109,106,99,96,106,114,115,105,97,114,106,113,108,133,105,112,108,117,87,98,109,106,113,101,115,106,111,102,95,112,109,116,114,102,102,104,111,109,106,104,125,105,102,78,101,102,107,109,91,109,113,111,94,112,106,98,117,106,106,106,111,105,100,101,115,109,104,104,104,95,112,103,123,102,111,93,98,116,109,95,100,108,106,110,98,104,102,97,95,118,112,111,110,111,104,97,102,95,92,112,99,117,108,103,106,102,100,99,104,114,102,102,100,104,102,112,113,106,111,106,123,98,103,115,105,115,103,116,104,96,111,98,92,113,108,104,99,110,108,125,99,93,99,80,90,106,99,106,123,107,103,97,115,115,107,104,109,104,102,102,106,104,93,104,129,105,112,102,97,105,118,103,112,108,104,108,105,104,110,115,107,113,112,109,107,102,109,97,110,112,104,99,96,119,109,103,116,105,109,103,112,121,112,117,108,105,103,104,75,103,106,105,107,112,105,112,105,109,114,112,96,96,107,97,102,98,117,106,102,102,124,98,116,114,111,106,102,115,108,91,117,94,104,99,101,107,87,109,103,114,110,102,119,103,110,99,110,99,105,108,99,108,105,113,95,109,101,108,100,97,98,98,101,98,109,107,100,125,101,99,103,94,105,105,98,101,106,102,107,108,107,81,108,106,108,95,100,111,106,114,105,91,118,106,103,114,104,97,109,89,99,98,101,108,94,103,98,109,108,109,108,108,135,116,109,111,104,104,104,108,90,116,99,106,106,100,110,106,116,111,101,103,96,116,112,101,92,99,107,117,103,114,117,119,105,101,104,105,103,97,114,112,107,103,88,100,84,103,99,94,105,111,100,100,102,112,103,110,100,107,107,103,92,103,100,109,113,108,106,106,118,95,108,103,127,113,99,109,102,102,112,107,110,103,100,113,112,104,103,107,102,109,106,94,95,112,93,94,112,92,108,109,99,99,105,105,99,100,101,113,103,112,115,95,101,112,92,109,98,98,113,114,104,104,101,107,99,115,105,102,96,100,103,102,89,106,104,110,107,121,83,113,132,89,102,107,113,111,112,102,104,101,98,103,106,104,110,110,85,102,109,92,100,104,107,107,100,96,106,127,104,100,113,101,102,101,99,102,107,108,95,107,107,101,99,116,100,113,115,101,97,99,102,110,108,109,100,115,105,107,106,109,97,121,118,95,113,106,98,118,107,112,109,114,99,113,111,100,95,115,111,105,108,111,109,102,96,94,109,102,110,106,104,108,103,98,97,101,95,104,100,117,110,100,106,119,83,113,112,109,104,103,91,109,103,108,102,91,75,104,109,98,115,100,100,103,107,106,103,103,98,99,115,104,100,104,115,91,105,100,104,106,116,117,95,113,94,104,101,97,102,113,90,115,112,100,93,109,97,107,107,102,110,109,90,98,96,107,108,108,92,107,116,102,95,85,111,107,114,98,113,113,108,106,105,104,104,107,117,104,123,108,115,102,107,100,111,112,105,102,99,106,107,113,103,102,117,90,109,108,105,110,79,98,112,111,109,75,98,110,103,111,106,101,110,103,96,105,108,133,102,105,96,102,102,104,87,93,105,100,114,102,111,111,89,105,95,94,115,106,121,112,106,105,93,95,110,99,107,111,109,111,95,99,96,113,103,93,106,112,104,101,111,112,113,103,115,127,106,96,105,109,116,106,107,108,112,120,111,90,115,102,99,88,99,105,95,104,115,94,106,99,106,99,106,123,107,102,104,93,95,102,105,110,120,98,92, +517.47644,91,126,85,93,99,86,100,110,120,118,106,93,93,84,108,96,100,101,106,100,107,106,93,100,100,96,113,95,105,99,92,108,107,104,112,106,97,103,101,91,106,110,102,99,106,102,99,92,111,112,109,94,106,97,114,97,100,101,93,95,99,95,89,90,99,114,85,101,80,114,110,99,107,101,95,103,98,107,104,98,92,94,102,107,101,103,106,115,103,101,124,97,105,128,93,91,98,98,94,97,100,110,99,100,101,92,86,94,109,98,95,112,109,93,88,74,95,100,87,102,104,104,118,115,94,112,99,99,99,76,112,104,102,99,106,103,101,118,104,92,102,93,103,103,104,112,92,97,101,84,101,86,106,104,92,109,102,102,104,108,100,120,125,108,101,112,105,100,99,112,98,96,96,109,107,101,98,118,106,102,104,97,98,103,98,93,117,102,93,99,99,77,106,94,102,97,106,116,110,105,121,103,97,114,94,102,99,97,95,107,98,99,99,90,99,109,94,108,104,83,108,130,98,97,92,107,103,104,101,90,93,98,109,105,106,95,98,106,98,101,101,103,109,105,101,99,101,97,91,100,98,113,103,102,106,99,97,97,95,113,86,99,94,102,90,103,100,109,106,103,97,103,101,99,102,89,101,115,90,100,101,109,112,93,115,117,92,105,112,103,97,112,98,99,112,103,95,99,104,101,100,105,101,105,96,98,101,109,99,102,98,85,109,101,101,93,100,97,101,91,116,99,100,97,128,96,100,96,113,105,105,96,118,99,104,109,106,104,111,105,100,111,96,94,102,92,107,118,112,105,109,100,108,97,109,103,102,101,104,108,99,111,109,116,90,113,92,117,88,112,98,105,103,100,97,112,90,104,112,104,100,106,101,88,101,96,87,98,134,113,94,83,109,103,103,114,121,111,110,114,108,103,105,102,86,106,101,97,108,103,93,109,108,99,96,93,95,109,110,103,104,94,87,113,107,95,109,87,98,114,94,104,98,112,94,93,102,107,99,110,97,100,104,98,95,106,96,91,100,117,108,111,101,99,113,99,106,106,109,104,106,111,97,113,107,95,94,91,125,95,114,106,104,112,99,101,78,115,102,103,105,106,104,102,94,102,102,105,101,97,101,95,102,101,77,99,94,106,94,92,108,92,95,104,106,102,84,103,108,102,107,102,117,102,95,113,112,94,103,94,98,106,95,103,97,113,110,99,98,102,107,100,92,100,107,107,108,91,102,108,114,108,103,99,85,91,106,108,98,95,112,124,92,98,109,100,102,96,109,104,106,93,107,109,97,91,95,109,100,96,104,96,69,120,115,107,106,98,117,113,97,109,99,89,84,129,109,95,99,96,95,111,108,117,103,104,118,94,94,92,98,79,118,99,87,96,87,103,120,99,109,102,100,104,104,102,114,108,107,101,103,110,101,75,107,95,84,112,94,102,102,96,101,107,94,94,107,102,100,95,95,104,107,101,106,103,103,102,105,100,96,104,106,105,109,102,99,100,97,118,105,107,121,89,107,104,120,95,109,100,104,106,116,99,91,99,98,105,107,117,104,103,93,76,98,98,97,99,98,109,107,113,111,100,100,96,103,109,108,92,110,104,110,103,105,111,104,107,114,114,94,93,105,89,93,98,101,106,93,109,95,107,97,99,113,96,100,95,104,105,106,95,112,110,97,92,102,88,116,102,109,99,99,104,104,111,97,108,101,107,121,109,116,99,114,115,106,107,108,102,104,109,97,112,99,96,84,97,105,109,118,95,98,112,98,109,110,102,112,107,97,109,107,111,106,105,98,97,83,104,99,101,115,88,93,95,98,108,81,99,97,105,108,108,99,106,103,99,95,93,107,99,114,102,100,101,101,88,106,99,103,94,107,112,105,103,99,100,105,111,109,106,105,103,98,88,102,104,105,100,103,105,95,99,99,86,100,96,96,84,114,98,120,109,92,104,107,105,102,88,105,114,98,107,112,96,91,105,117,100,105,110,100,101,91,108,120,86,97,101,106,103,106,98,107,108,99,108,111,107,104,97,104,106,112,107,105,107,102,105,104,107,112,100,122,102,96,103,103,103,106,118,114,102,102,90,100,114,104,100,107,107,111,106,100,100,108,98,104,111,98,110,106,96,91,109,101,101,106,96,97,106,112,112,104,100,103,107,101,106,98,97,123,112,96,117,107,106,83,120,87,105,107,123,116,117,109,102,110,109,98,110,96,105,117,109,100,97,102,107,110,118,103,94,104,91,104,109,100,112,106,97,97,99,87,106,107,77,94,108,103,104,92,106,112,104,114,101,93,95,88,93,110,100,105,111,95,99,107,102,98,92,99,98,101,109,100,94,114,109,110,105,120,90,117,107,99,95,95,118,103,98,100,76,100,100,103,103,102,108,106,107,130,104,93,97,105,94,106,93,91,106,103,93,105,100,95,110,95,99,95,128,110,123,102,95,103,104,106,100,98,106,97,112,100,112,113,108,125,93,102,113,98,70,101,103,111,104,105,113,105,103,109,104,102,106,104,107,97,99,98,99,115,106,99,104,107,100,104,108,100,109,96,110,106,91,88,109,117,104,112,128,116,95,99,95,107,102,106,89,103,97,90,106,112,92,109,107,97,98,113,97,101,83,110,122,102,99,107,107,106,96,105,103,99,108,106,106,114,106,113,97,124,114,90,109,117,107,97,103,98,109,117,111,93,110,106,99,104,103,110,106,118,102,109,106,103,143,105,105,115,90,102,105,108,104,96,102,102,104,100,112,88,102,114,103,113,99,96,104,113,96,110,103,108,111,100,111,113,117,100,110,96,101,110,104,98,109,104,113,112,108,109,106,115,95,99,112,111,104,113,105,108,102,104,101,103,107,110,103,100,99,101,99,99,110,104,100,102,112,109,101,103,113,118,108,114,92,94,105,92,98,112,109,116,102,105,103,104,125,112,114,97,108,109,116,101,113,108,118,111,105,105,100,94,117,112,105,96,99,104,113,101,103,104,110,105,103,111,89,107,107,109,108,117,104,99,106,108,106,102,101,105,107,109,109,103,107,94,106,118,99,111,91,104,93,116,99,109,101,112,104,94,108,113,97,104,100,102,85,83,116,107,117,110,92,109,105,114,101,99,103,103,106,92,101,94,105,105,115,96,102,99,108,108,105,105,101,116,101,99,94,112,103,98,104,108,113,100,108,110,102,111,103,108,99,106,104,103,104,99,76,115,115,118,92,101,94,94,89,105,105,100,92,105,93,107,109,90,105,108,106,108,113,117,96,105,117,114,99,106,107,113,87,102,102,98,95,105,92,113,98,104,110,121,115,126,104,116,96,103,107,99,100,102,101,108,99,102,106,111,115,95,113,109,109,106,92,112,99,104,113,105,115,89,98,110,101,117,100,95,91,95,117,103,99,96,115,97,106,95,104,101,103,108,90,123,108,107,97,115,103,99,108,112,112,96,103,92,93,102,110,109,106,98,128,80,100,91,99,106,111,115,102,98,104,96,101,117,108,107,106,128,107,107,105,115,102,107,86,108,101,87,104,102,102,99,110,108,109,107,107,97,105,99,107,103,109,104,91,91,99,104,98,96,109,102,92,106,109,114,107,100,102,108,101,113,103,95,106,101,107,110,102,102,95,111,107,98,102,106,84,97,107,109,95,116,92,102,103,101,115,104,99,102,98,94,107,95,86,104,107,106,93,101,105,95,110,99,104,104,98,105,104,110,110,94,101,94,102,100,98,100,106,99,96,100,109,110,106,95,99,105,114,113,107,104,98,99,89,102,117,121,103,120,102,116,92,112,98,104,111,99,118,114,111,117,114,101,98,102,102,107,116,106,106,112,110,90,103,107,99,95,112,99,107,99,111,124,87,80,107,103,107,94,100,116,106,113,101,112,101,109,103,99,93,107,99,99,92,74,110,113,102,89,72,104,104,89,113,103,109,107,98,121,108,90,108,119,105,101,113,109,102,119,103,109,114,103,123,110,113,106,114,96,114,105,98,102,108,108,106,102,92,114,101,120,108,111,107,100,93,102,109,99,112,105,98,102,100,104,106,105,110,109,120,113,96,115,99,93,109,96,98,100,102,113,108,107,99,115,105,104,106,107,118,92,112,101,108,106,109,107,97,102,101,100,96,109,101,109,136,102,97,95,108,104,121,117,95,108,107,111,91,108,121,94,96,116,113,99,95,99,114,104,99,100,105,108,97,108,108,103,101,97,94,97,106,87,110,106,98,91,106,97,105,110,106,99,95,103,102,104,108,95,109,107,108,94,116,87,80,111,101,105,105,99,128,93,121,85,105,100,105,107,107,110,103,102,106,93,105,109,105,114,95,100,99,102,97,102,95,106,110,97,112,105,113,105,107,100,98,106,101,99,121,105,106,108,97,98,115,98,113,91,99,101,103,106,102,103,99,97,106,93,109,104,112,101,112,119,113,105,107,95,108,102,113,99,106,105,111,120,95,100,113,100,105,104,118,103,100,109,105,114,109,101,107,111,85,96,90,113,105,110,109,103,110,105,113,110,93,88,101,103,110,116,108,108,110,125,102,91,100,99,103,96,93,102,100,96,107,109,103,100,101,115,110,106,104,107,104,100,119,99,98,108,92,111,97,96,109,112,98,105,110,107,113,104,99,117,116,91,104,100,88,117,109,101,109,112,96,103,106,105,92,99,95,89,109,108,92,105,104,99,96,110,110,108,100,98,109,91,108,104,96,100,100,92,104,104,109,97,116,109,91,94,107,65,102,92,97,104,111,97,91,99,102,104,101,99,104,100,98,107,106,115,104,92,97,107,103,108,107,117,105,113,106,104,105,102,100,84,98,107,98,102,103,98,80,111,92,94,96,103,117,84,81,98,89,124,103,89,89,113,96,107,113,91,109,86,105,100,111,109,99,102,109,98,99, +517.61713,94,101,90,92,78,117,102,116,121,101,103,108,101,101,114,114,103,126,110,106,114,64,90,104,129,105,109,106,107,104,96,104,110,111,85,101,92,114,108,99,108,95,103,106,110,114,112,98,108,109,87,109,106,87,106,105,98,105,109,96,106,99,109,109,118,116,95,101,106,91,125,96,101,104,115,108,105,99,105,101,103,95,93,117,107,104,92,118,98,115,116,111,110,103,96,106,121,113,96,103,95,113,113,105,105,122,109,103,106,99,82,107,115,101,95,113,112,116,127,98,93,108,91,98,102,108,99,100,99,100,116,108,102,110,118,98,97,107,105,102,95,100,108,103,102,108,107,101,98,105,102,104,91,106,102,110,106,116,116,104,122,106,87,109,98,103,115,103,114,81,103,118,105,109,98,104,114,126,113,109,100,104,101,101,105,121,98,103,102,98,94,115,102,109,94,131,100,99,105,111,103,100,99,114,128,114,105,105,110,100,113,113,106,94,109,107,102,100,89,106,110,101,104,96,94,112,105,113,121,104,107,101,94,97,121,111,100,116,110,121,127,89,100,102,98,97,118,81,100,119,107,102,99,107,104,105,101,114,97,113,107,88,99,109,111,102,100,109,103,98,98,103,110,103,104,109,109,112,105,113,116,106,99,103,105,99,109,104,115,114,104,93,123,91,117,103,94,103,102,109,118,138,109,118,106,108,130,109,107,109,109,114,103,113,110,101,105,120,105,108,103,99,111,107,112,97,100,103,116,103,100,102,102,108,117,109,94,106,111,124,91,111,107,116,111,103,105,107,104,114,105,113,95,109,108,88,118,106,102,106,104,104,107,109,92,105,112,111,96,112,113,110,100,112,104,103,117,118,91,117,106,127,106,106,113,106,110,106,112,100,107,106,112,111,107,88,106,110,107,109,108,107,97,110,101,94,98,124,109,99,84,110,103,99,101,103,98,93,103,105,109,109,100,106,102,120,118,109,102,112,100,105,99,99,116,101,109,109,112,92,114,131,108,100,104,98,85,98,108,111,99,101,103,113,113,107,101,109,105,103,97,95,104,102,139,109,117,109,117,96,100,123,109,122,113,97,93,109,105,117,99,107,108,96,103,100,79,112,103,103,108,109,107,111,94,106,109,105,112,117,111,102,111,101,106,96,91,98,106,110,106,101,106,109,109,104,119,111,101,101,105,95,106,95,95,108,108,114,104,104,117,94,116,109,101,117,115,95,96,112,102,103,99,99,110,93,110,105,110,102,107,123,101,104,110,79,90,105,124,107,99,107,102,118,108,103,97,99,102,110,105,104,102,107,113,104,114,103,105,112,109,107,105,115,102,96,112,105,111,99,107,112,94,138,105,98,99,105,113,98,100,101,112,107,100,99,93,110,123,105,103,98,113,109,116,121,108,99,106,100,109,115,105,112,102,110,94,113,125,106,105,102,99,125,95,117,99,96,117,99,104,117,107,99,103,102,105,114,118,109,103,117,106,117,102,109,111,129,103,101,111,92,103,100,101,113,102,106,120,107,117,100,104,114,96,116,109,120,115,113,111,97,99,112,110,113,110,113,107,100,111,104,103,101,106,98,100,110,106,104,105,110,113,110,106,106,109,103,112,103,114,111,104,91,109,109,104,117,106,103,118,112,103,110,103,106,97,103,118,111,108,98,112,106,97,105,101,92,104,103,106,95,99,110,108,116,108,109,112,99,99,101,108,100,105,104,99,97,111,107,100,82,109,117,75,93,105,106,111,108,127,112,122,106,116,104,101,99,112,107,106,123,103,117,105,110,102,107,109,98,103,110,105,107,105,108,108,106,113,112,106,108,98,109,114,107,116,109,103,90,108,89,105,109,108,107,111,108,89,100,107,120,120,96,111,103,82,114,95,90,119,102,107,109,105,100,114,109,107,112,108,117,96,91,97,110,105,106,109,95,111,107,94,85,109,97,105,119,106,103,118,102,109,107,95,109,94,105,108,109,107,117,103,104,107,106,104,111,107,95,110,111,97,120,98,103,115,95,111,110,113,107,112,96,118,102,108,111,105,113,120,116,108,110,110,117,102,116,104,106,102,112,109,106,106,112,101,110,100,109,112,111,106,118,103,95,105,117,109,113,101,106,113,107,107,106,114,102,111,103,112,108,100,104,97,103,109,107,87,104,106,109,115,111,114,103,114,96,107,121,115,106,107,106,111,111,109,117,93,114,108,102,104,107,101,98,100,116,103,108,100,112,107,99,107,108,113,127,101,101,102,98,101,106,110,99,109,98,108,112,104,109,99,101,103,112,110,115,101,98,109,117,109,111,107,102,123,105,105,110,94,105,108,108,103,105,114,100,114,106,112,98,107,93,98,104,96,117,106,108,109,102,103,99,95,98,104,107,74,114,104,103,109,96,109,96,94,109,119,101,107,107,106,110,107,103,101,108,100,109,86,118,100,99,101,103,108,101,100,98,109,103,105,113,103,105,108,109,113,117,116,95,106,113,102,108,105,111,92,101,108,101,106,111,72,107,107,102,95,115,94,102,105,108,113,94,107,109,94,96,133,100,106,113,116,104,103,90,124,100,98,103,73,103,112,103,100,99,104,100,96,105,118,113,104,98,112,84,108,95,109,88,107,100,107,104,109,99,104,96,108,85,106,98,100,111,95,108,101,93,92,101,110,111,107,107,113,110,117,106,101,104,98,106,102,116,121,102,108,94,102,107,107,97,103,104,94,109,112,110,110,107,109,102,85,107,115,110,103,127,87,106,109,114,109,104,93,103,111,104,93,104,102,106,113,101,99,108,103,104,102,103,100,111,115,88,96,113,102,133,116,104,104,101,99,117,115,109,111,104,95,121,104,115,104,107,106,115,99,115,98,96,112,103,104,70,110,112,107,108,101,95,113,115,108,109,99,108,97,123,102,118,115,99,99,111,102,95,109,101,110,119,98,100,116,107,116,117,120,106,99,108,101,112,94,106,106,100,104,102,95,97,94,102,97,110,109,108,104,106,106,104,105,103,113,103,121,108,91,102,123,106,105,103,101,108,98,112,103,105,106,120,108,107,105,120,109,103,101,121,109,109,103,104,95,110,99,99,96,106,102,106,99,92,113,107,114,106,102,109,103,110,100,106,94,95,99,111,118,103,105,99,104,118,108,94,101,113,106,104,108,113,110,110,97,107,96,98,114,116,101,98,116,106,119,91,102,107,109,111,107,88,104,112,112,107,116,104,106,113,112,110,113,132,112,112,103,95,125,105,100,97,97,110,107,99,104,106,104,109,99,119,103,102,120,103,106,113,104,108,104,110,111,107,113,102,104,99,107,107,111,113,110,92,99,108,90,100,103,101,106,112,89,94,99,112,99,131,109,95,108,106,105,102,104,105,104,91,102,97,108,109,104,104,95,111,109,113,106,113,89,107,107,108,104,107,112,90,120,113,103,103,108,107,105,99,99,94,108,103,104,102,112,92,116,110,112,105,106,109,108,103,100,99,93,106,107,106,103,105,103,104,96,110,108,99,103,111,105,96,107,100,102,106,105,109,105,112,105,114,105,107,129,93,115,91,93,104,106,123,114,104,103,102,89,101,105,104,102,106,94,98,92,112,107,102,103,104,108,110,94,109,106,87,108,121,105,111,111,106,103,113,106,112,88,113,106,96,91,94,102,106,117,115,104,93,99,102,98,108,103,107,116,109,102,107,108,108,112,114,97,106,95,110,104,108,99,106,103,102,108,105,107,113,112,112,104,104,103,91,106,99,115,99,104,113,113,104,116,104,97,107,101,107,108,92,113,97,99,101,83,109,95,85,108,99,109,117,105,108,110,100,107,102,112,118,104,105,103,117,96,109,94,116,103,105,99,112,106,108,94,110,105,100,99,103,106,93,103,101,107,103,92,92,105,105,98,97,98,96,105,100,93,109,95,113,120,101,120,98,105,109,114,94,100,107,106,106,107,111,112,101,102,102,103,102,103,112,104,109,114,104,111,111,107,113,102,107,70,111,98,109,94,111,103,91,107,102,114,103,99,104,100,116,101,111,113,109,102,119,109,108,107,104,105,103,105,110,109,102,106,94,116,85,98,109,101,113,109,81,105,103,94,96,87,117,82,113,93,106,92,107,112,89,95,106,107,105,103,105,103,96,103,102,101,99,100,103,104,107,101,101,91,96,103,106,108,100,104,104,111,103,111,106,111,108,102,114,101,101,92,109,109,115,103,100,103,105,104,108,108,101,101,113,104,96,102,110,100,111,90,105,100,98,88,94,98,103,102,90,111,96,109,99,94,108,97,99,103,86,103,84,108,101,106,109,105,112,110,107,113,109,118,101,106,108,110,78,103,112,115,95,97,107,94,101,98,107,109,101,106,115,120,92,116,112,98,109,96,112,112,108,115,106,101,94,106,128,108,110,97,91,105,105,96,128,91,108,104,92,110,96,94,97,97,102,91,106,109,108,109,117,125,94,101,99,90,94,111,96,93,106,91,93,99,109,103,105,108,95,94,99,100,102,112,107,105,98,95,95,108,100,106,107,112,107,99,109,98,96,98,95,107,96,106,121,111,104,108,93,105,106,115,105,103,97,105,108,93,91,103,98,98,110,99,107,92,87,99,113,95,110,105,97,100,109,105,100,101,103,111,99,120,101,98,99,97,124,97,108,97,108,106,121,75,98,111,105,98,113,100,102,108,119,110,99,101,108,113,117,112,100,103,98,100,104,113,100,104,104,92,101,94,105,93,88,105,99,101,101,108,105,105,97,106,114,86,114,100,101,105,99,117,72,105,115,103,102,107,89,92,106,98,98,122,97,98,92,116,97,113,86,104,86,113,103,103,90,106,112,100,96,114,106,100,116,99,102,113,101,124,83,99,111,105,113,110,98,104,96,107,100,102,102,104,106,93,108,100,90, +517.75781,103,94,102,104,94,103,96,98,90,112,106,110,108,96,103,117,110,104,102,110,98,91,95,104,106,109,107,98,103,110,86,99,114,101,110,105,107,104,106,105,119,110,105,115,103,111,101,99,94,109,93,106,116,104,82,92,109,103,113,99,93,116,98,95,109,104,102,109,100,112,101,103,98,109,105,102,100,100,105,124,109,102,95,102,103,91,98,99,94,96,101,121,92,103,98,100,107,85,98,100,108,98,94,104,105,113,96,109,104,99,101,113,94,105,108,106,107,100,107,99,105,95,98,109,87,125,97,112,107,102,95,99,94,102,109,105,90,103,97,100,108,107,100,112,96,117,100,103,99,103,92,110,105,98,105,94,113,112,109,141,109,99,97,115,110,114,109,99,108,88,104,104,102,93,107,98,104,94,115,101,100,96,103,114,104,108,98,119,114,96,98,104,106,99,105,116,102,81,100,114,105,100,100,102,106,96,106,98,107,114,96,98,77,98,93,108,97,108,98,104,101,98,96,102,100,117,107,116,109,109,104,94,109,101,102,100,103,116,104,90,105,104,93,100,95,104,105,101,115,105,112,111,122,105,109,102,102,90,104,102,96,101,113,101,103,111,107,87,108,95,110,101,113,93,134,100,120,112,97,103,106,113,103,96,104,96,95,108,104,108,114,103,92,103,112,99,108,104,99,105,96,104,99,100,97,111,107,104,109,115,101,107,109,97,108,103,111,90,101,107,102,99,110,87,103,110,99,90,97,121,103,100,103,101,112,105,109,110,91,106,107,99,109,103,107,113,107,109,106,109,104,103,114,99,106,106,108,109,101,99,98,105,87,91,113,98,109,107,110,101,94,108,103,96,102,99,108,110,114,98,105,122,101,112,107,90,110,96,101,97,107,85,105,114,99,86,108,103,102,125,100,107,102,93,99,100,109,106,90,105,104,95,110,129,104,91,102,99,127,100,107,98,101,121,84,106,98,105,94,116,108,109,110,95,97,98,98,104,100,103,110,100,115,111,102,98,97,106,107,103,106,93,103,112,95,98,109,95,105,104,110,104,98,95,106,102,95,110,98,92,102,95,99,103,105,98,91,84,100,110,96,95,114,89,109,109,109,111,101,105,108,100,105,116,95,111,92,97,109,105,108,103,101,112,101,111,101,108,113,101,107,96,101,102,108,101,107,104,114,107,113,123,127,119,93,104,100,108,99,98,98,100,109,102,103,102,102,103,100,102,109,104,97,108,105,110,106,105,83,97,113,97,94,97,97,105,100,109,96,100,111,102,98,106,100,101,90,103,117,87,98,101,106,102,101,93,99,101,104,107,109,109,108,103,113,106,99,100,108,113,103,102,99,105,85,104,96,109,114,102,105,114,108,106,107,109,105,101,96,113,104,105,91,99,113,94,111,91,122,97,104,113,100,105,100,106,98,94,116,107,93,110,111,76,101,107,88,103,115,105,102,116,103,103,107,98,106,100,113,110,111,98,95,98,112,107,112,108,104,103,108,106,105,103,108,105,109,108,113,111,98,129,106,90,105,109,100,99,105,103,99,107,110,97,89,95,113,101,113,83,97,97,107,116,103,93,104,110,101,99,84,84,93,104,94,124,80,100,99,98,108,104,108,121,105,102,93,106,101,109,112,110,115,106,102,108,116,107,106,121,117,117,104,108,106,90,97,118,101,104,110,101,104,104,105,102,112,103,97,98,108,88,101,102,109,99,97,98,106,102,104,108,80,91,91,84,100,114,98,103,108,109,107,106,97,109,107,85,108,105,108,102,109,101,109,101,101,106,107,110,109,120,96,106,103,111,104,110,116,90,101,93,66,106,106,106,95,106,103,112,110,98,100,113,94,109,105,117,102,91,104,105,133,127,95,122,108,104,105,103,99,114,106,93,103,103,96,101,107,112,116,103,95,96,102,103,101,107,110,100,95,101,118,105,98,110,115,103,96,109,74,110,95,106,110,112,110,111,121,99,109,98,99,108,97,110,113,104,106,106,100,112,101,92,101,105,109,113,108,110,97,109,98,97,98,92,112,122,105,106,101,109,107,110,99,96,110,110,96,104,98,100,102,102,98,101,97,102,118,94,98,105,108,108,125,104,114,104,99,102,96,120,107,101,105,121,100,100,111,111,100,106,100,115,88,111,91,100,99,109,96,94,109,104,116,105,99,103,98,96,111,113,98,97,93,104,92,103,109,103,96,112,108,103,113,98,102,96,96,101,103,106,100,106,95,102,97,104,100,98,101,99,96,102,108,101,108,103,109,106,100,112,103,108,109,113,121,106,104,108,96,107,98,113,94,98,99,94,98,116,98,102,107,96,110,102,102,95,108,111,107,100,106,90,67,107,101,103,116,104,104,98,85,98,104,96,106,112,116,100,109,88,95,112,86,95,101,119,113,106,90,114,97,96,101,96,109,107,114,102,105,100,105,113,93,110,107,105,107,104,114,107,99,106,111,104,87,102,111,99,109,121,110,108,112,108,107,95,113,108,115,97,105,112,103,114,99,98,100,95,79,107,103,96,91,104,104,95,98,105,111,104,100,107,109,118,109,121,110,96,102,117,102,109,98,108,105,115,104,111,81,98,105,106,102,93,110,105,102,99,118,107,101,102,100,109,111,107,114,108,92,105,105,107,96,113,138,92,91,86,95,104,125,100,109,105,107,100,103,103,95,113,100,97,104,110,110,91,92,106,106,94,116,107,98,109,91,100,106,97,100,106,116,72,99,116,105,115,101,95,98,107,100,98,93,97,103,105,95,99,109,101,105,106,104,99,105,117,115,110,106,110,106,114,106,100,113,105,104,119,109,97,103,106,103,109,111,109,109,99,95,115,103,116,103,107,107,91,103,109,104,100,95,98,109,104,102,90,103,116,109,109,115,92,105,100,106,103,100,105,96,102,106,101,109,108,103,86,92,104,110,113,96,97,97,112,101,99,110,111,109,98,96,113,97,106,107,94,105,106,106,120,85,95,81,101,101,96,115,112,102,106,103,111,115,112,122,103,110,100,123,91,103,111,118,100,104,106,101,108,106,106,98,111,99,109,109,106,106,84,100,110,100,104,99,105,108,107,105,101,108,104,101,112,130,101,113,103,110,99,102,117,102,108,95,95,99,102,105,96,104,84,101,103,100,110,104,107,113,108,99,102,103,112,104,99,105,109,118,98,125,106,102,117,106,98,91,84,89,78,94,101,99,106,100,101,112,104,90,104,100,108,94,99,114,100,113,96,99,115,110,106,106,119,90,107,92,98,99,102,113,90,107,103,119,102,98,106,113,103,102,99,90,91,98,112,106,100,109,104,96,114,109,94,109,93,102,100,99,101,89,102,99,102,113,100,95,104,100,121,101,106,104,100,94,95,98,100,92,110,93,115,97,103,95,115,98,99,85,97,106,109,117,114,93,113,106,108,105,97,100,99,109,117,102,109,100,102,94,99,93,102,100,99,108,102,107,100,102,103,99,106,107,99,104,110,102,103,104,106,108,118,99,97,103,105,103,106,97,100,108,102,116,108,106,103,105,97,101,103,99,123,113,104,79,101,106,103,113,104,104,116,107,93,98,105,75,94,110,104,92,98,95,107,112,96,109,103,94,96,102,112,111,111,101,107,110,108,105,110,98,116,107,102,114,95,111,96,103,105,116,101,103,117,99,99,105,106,102,124,115,125,100,99,119,90,110,104,102,121,117,137,110,106,112,97,109,107,99,101,120,114,105,97,100,103,95,106,114,97,105,104,101,105,101,100,88,94,106,97,98,92,95,103,99,104,100,97,117,94,97,106,64,103,91,96,110,108,98,97,107,95,91,103,109,105,108,98,110,100,109,107,98,98,98,102,103,100,110,101,105,105,95,113,109,113,79,103,106,104,102,91,100,107,106,96,109,91,97,101,99,106,111,99,103,100,112,110,104,94,106,109,106,107,101,107,111,109,106,98,104,116,118,109,103,97,100,111,85,103,117,105,107,116,90,98,104,103,96,108,105,104,98,103,76,97,105,103,107,91,121,110,93,100,104,111,97,91,110,102,116,103,110,101,102,113,103,108,103,102,104,107,105,105,100,106,106,113,95,104,99,125,109,115,107,102,104,107,109,101,89,101,108,83,108,113,100,100,108,111,102,83,92,106,100,99,104,107,106,106,100,105,105,108,102,103,116,104,102,104,118,127,116,101,93,112,100,106,99,102,116,101,106,108,113,93,100,98,111,96,107,98,96,116,103,98,93,106,114,97,113,101,113,102,106,105,98,115,96,100,91,104,114,99,100,111,97,92,105,99,97,109,118,99,98,110,96,107,98,113,100,112,101,104,101,97,109,114,109,109,115,83,127,107,104,97,100,95,113,101,102,105,109,141,101,100,102,109,103,108,109,101,106,118,100,109,100,104,96,107,90,93,98,101,118,111,105,109,107,102,100,112,92,102,102,106,86,95,90,103,120,111,95,110,100,98,102,113,104,98,98,104,111,104,103,105,105,100,102,101,98,98,90,111,99,113,112,105,105,103,110,94,109,108,103,109,105,82,114,90,110,107,102,97,106,117,101,96,104,97,93,121,110,89,105,106,100,108,100,106,108,107,109,113,99,105,105,104,100,102,104,87,98,110,101,119,98,96,102,106,102,109,105,108,109,98,114,99,92,99,100,101,98,99,97,89,97,96,96,103,99,96,100,87,102,109,98,106,108,96,95,111,105,108,93,101,106,105,97,112,98,113,107,103,112,91,104,113,106,77,109,107,110,105,96,112,102,112,98,99,96,97,106,103,98,103,103,97,104,103,111,99,104,100,107,104,104,104,92,106,106,116,95,95,94,113,99,105,100,90,100,99,94,116,106,114,105,103,105,91,101,101,102,105,106,106,110,114,116,113,88,106,100,105,72,78,97,96,98,88, +517.89856,100,96,99,91,94,97,98,97,104,97,88,107,111,128,91,113,104,98,114,106,107,98,99,101,101,101,103,98,108,117,117,94,98,121,125,93,94,110,107,104,106,115,96,99,129,110,106,99,101,115,84,100,114,107,110,96,106,95,103,106,109,108,109,112,107,115,103,100,71,123,104,122,108,98,108,111,76,112,108,104,108,99,100,109,92,114,113,109,102,73,98,100,122,100,101,90,105,96,91,100,103,97,105,96,99,98,104,104,102,96,95,95,105,96,111,104,94,107,100,107,80,98,104,99,102,107,109,101,107,117,105,117,95,95,99,93,105,104,104,110,93,102,95,112,106,98,104,104,103,97,110,95,113,94,95,110,111,89,99,106,106,101,97,104,110,103,105,100,109,100,99,106,97,91,109,103,90,90,92,95,95,105,104,105,113,97,98,93,103,114,102,107,102,96,95,99,107,100,100,103,120,103,99,106,107,102,88,128,109,107,88,98,117,98,109,100,99,101,96,102,103,108,107,118,110,111,108,100,96,94,104,97,115,92,93,107,98,85,109,104,105,109,110,94,113,117,105,79,106,73,112,105,103,105,111,115,96,102,105,100,103,98,104,108,105,101,102,99,108,103,117,92,115,105,106,92,101,95,116,100,109,119,96,111,112,107,112,95,99,113,107,104,108,111,101,107,106,95,105,108,99,102,113,109,107,113,105,101,97,121,87,106,108,96,110,105,100,113,99,94,109,100,111,104,114,104,102,92,107,108,106,94,110,102,96,116,99,106,115,115,93,105,100,98,104,108,107,104,111,99,116,99,111,99,105,109,106,107,105,107,97,100,108,96,98,108,110,116,99,106,112,106,110,106,111,97,101,118,100,101,103,108,81,110,108,110,102,110,99,110,120,93,94,108,113,109,118,97,100,123,107,97,108,99,104,106,103,109,101,105,113,107,103,109,105,101,130,116,113,96,101,113,90,118,110,95,106,100,110,99,109,100,115,92,110,112,108,108,109,98,99,112,98,110,102,106,99,106,106,112,99,111,80,108,99,105,104,100,101,103,101,115,99,107,111,109,125,100,108,87,109,117,103,103,104,93,91,112,107,108,95,104,111,102,121,91,104,102,104,104,103,96,109,111,110,91,100,91,111,103,104,97,101,112,102,106,100,110,103,97,109,107,101,88,109,102,88,111,101,97,104,101,103,113,91,107,102,95,102,99,109,106,102,112,103,112,117,105,95,99,89,97,104,96,103,101,98,104,99,95,109,112,93,106,91,103,110,107,91,104,104,91,102,110,99,108,97,105,105,105,105,94,110,119,88,102,106,102,100,106,100,105,84,105,99,99,110,100,111,107,112,111,102,112,115,90,83,108,104,102,98,119,106,104,95,97,96,105,108,108,104,95,103,113,110,120,95,101,110,102,104,107,112,98,107,98,102,108,100,110,104,102,107,101,96,104,100,101,104,89,99,93,100,104,108,87,85,98,93,113,107,92,105,109,110,104,103,113,109,108,112,93,108,110,104,103,109,102,110,92,105,110,105,102,102,115,101,106,105,112,105,108,110,98,101,92,99,104,103,98,104,98,109,112,95,101,109,105,101,102,104,114,105,106,110,110,121,97,106,111,106,116,111,100,100,97,109,97,107,96,102,99,109,110,91,102,101,101,106,108,102,125,118,106,104,89,113,107,102,96,115,112,96,106,102,105,101,104,103,95,107,105,106,113,100,110,105,109,99,103,101,101,84,99,100,113,108,94,112,106,107,90,117,110,102,78,96,92,113,103,110,113,96,113,99,95,107,93,96,118,100,103,133,121,92,110,99,102,96,109,103,113,98,100,110,101,106,109,109,102,117,112,108,96,107,112,104,106,104,94,112,111,106,114,96,103,111,102,97,103,108,106,119,103,85,95,122,104,116,105,99,100,110,100,101,115,104,101,101,100,97,109,102,104,97,123,104,109,103,112,90,106,99,100,111,100,98,120,108,104,104,112,100,103,108,102,110,104,96,99,95,104,112,97,105,113,100,105,104,102,103,109,103,102,110,98,117,103,99,100,114,103,102,103,111,103,102,114,85,98,110,103,108,106,74,107,100,103,87,96,99,107,114,114,113,107,104,81,107,96,89,114,124,109,108,101,110,102,113,109,89,99,99,90,116,104,107,111,108,114,113,107,100,108,111,108,103,106,112,109,117,105,113,105,117,96,92,100,116,117,97,105,107,101,108,106,107,103,107,106,102,99,99,103,112,117,104,109,101,117,114,121,101,106,102,92,108,109,102,105,101,108,100,96,116,94,109,104,109,110,93,83,101,109,92,106,109,104,104,106,126,113,107,103,96,100,113,102,98,105,99,102,107,92,91,82,102,100,106,103,101,110,116,104,92,114,93,108,110,110,102,103,107,118,100,90,107,104,113,97,100,112,113,114,112,95,99,114,102,100,115,114,126,100,100,108,115,96,102,98,112,104,100,110,116,96,100,96,117,102,106,107,106,106,106,103,93,104,101,115,98,108,113,98,108,108,101,102,99,94,102,107,104,96,109,110,100,109,109,110,96,95,99,109,100,110,115,98,111,105,108,120,105,107,104,100,106,104,118,94,110,104,109,102,105,110,106,108,106,104,113,102,105,103,104,102,86,103,106,97,100,95,102,101,113,112,107,107,111,100,109,97,98,90,104,104,98,102,101,109,120,105,90,94,114,96,113,105,118,106,110,101,101,110,89,99,101,109,99,103,110,112,100,95,109,107,113,103,115,107,95,94,94,107,104,117,104,115,106,105,106,110,109,103,112,108,103,114,107,111,102,112,101,105,109,97,113,109,107,104,103,110,110,107,97,109,112,113,101,106,107,116,102,113,103,101,98,110,108,106,109,99,104,116,117,111,68,100,109,115,114,104,109,120,100,112,100,114,104,114,93,103,113,101,96,109,99,100,108,93,111,108,94,113,91,109,95,102,107,96,95,102,103,106,95,121,103,109,106,102,115,107,113,95,100,107,105,110,102,95,106,99,104,104,102,113,117,91,95,114,110,109,104,111,115,106,106,111,101,97,91,99,114,107,108,103,108,113,116,101,105,97,111,99,103,103,114,107,106,99,103,113,97,105,116,102,107,107,95,97,108,107,102,106,108,107,100,104,108,108,108,99,109,110,88,98,100,105,107,107,121,97,115,106,74,107,106,102,111,98,107,106,107,111,93,100,106,96,115,120,94,105,106,108,101,104,108,94,110,83,110,106,113,108,107,106,105,100,91,105,110,111,108,115,119,111,91,98,109,96,101,101,107,110,107,116,102,105,110,114,106,100,117,105,89,98,115,104,116,113,108,104,98,113,112,106,98,105,101,108,95,106,103,97,96,96,107,107,111,104,95,110,112,99,98,108,106,103,110,93,114,116,114,102,99,108,123,100,106,113,100,116,104,109,107,108,103,102,108,101,104,111,99,111,112,100,116,98,106,97,102,109,99,106,99,104,102,115,98,97,111,112,113,101,106,110,98,103,136,111,104,109,109,122,111,103,112,104,112,105,101,90,101,103,104,105,109,99,127,103,105,105,109,102,116,103,135,99,107,99,106,102,108,98,102,100,105,113,95,99,112,97,102,113,109,105,100,98,117,94,112,109,109,117,107,98,116,109,108,102,101,106,113,88,109,104,107,105,111,105,105,95,114,101,106,96,111,95,109,102,104,105,101,119,102,111,94,111,119,136,104,107,97,107,109,103,112,99,88,110,95,105,96,104,104,102,121,103,112,103,98,100,109,99,94,101,110,110,107,103,111,112,103,101,111,89,108,88,104,112,110,111,100,99,104,107,116,97,92,110,126,109,97,105,106,108,103,73,104,89,102,108,102,111,105,112,108,110,106,94,116,100,99,84,108,112,102,111,104,97,116,109,97,101,93,96,99,103,105,94,105,101,114,81,103,98,104,111,115,101,115,98,106,106,117,107,105,109,112,117,107,103,99,113,100,114,113,110,113,113,111,109,101,116,105,109,99,100,99,109,116,112,102,101,112,99,90,118,96,111,119,105,101,103,123,112,104,89,99,113,104,102,98,83,115,109,105,133,100,105,117,109,95,106,101,128,105,98,81,101,116,103,106,116,103,109,100,105,112,107,106,100,104,111,114,107,104,108,105,109,92,106,100,106,96,116,102,107,109,112,115,103,103,109,104,94,103,97,109,107,110,108,102,105,101,91,106,110,112,101,106,113,115,109,92,94,104,100,87,102,109,108,105,108,98,105,98,91,117,109,98,104,95,108,109,105,106,97,117,105,105,105,116,120,110,117,111,97,105,90,105,101,95,96,102,97,109,106,98,105,112,112,114,101,119,102,99,108,111,94,104,99,111,112,113,104,121,107,116,104,98,106,112,105,89,110,107,79,102,107,110,90,102,91,101,128,107,107,100,98,96,103,111,113,102,106,96,98,103,109,113,101,106,99,96,98,107,95,105,117,100,101,109,98,97,108,90,109,113,101,115,102,104,104,111,105,105,107,106,104,97,93,91,105,114,104,103,109,100,99,99,106,106,105,113,105,93,113,84,94,105,104,105,112,94,102,97,99,109,81,108,117,113,97,100,112,100,100,103,107,97,105,102,107,108,120,112,99,108,113,103,107,96,104,106,97,111,95,108,101,105,107,104,96,106,103,108,105,88,111,104,117,102,113,113,99,113,96,113,102,98,107,103,101,94,108,100,98,104,108,102,102,105,102,94,102,109,110,102,102,98,103,102,108,95,110,108,112,100,103,102,101,116,107,94,96,104,103,113,93,105,101,108,115,108,106,105,106,108,99,100,111,90,102,100,107,101,105,99,111,124,100,102,109,116,99,100,101,102,110,94,113,99,102,102,120,108,83,109,100,112,95,104,117,100,106,103,107,103,102,104,109,111,106,92,107,103,95,83,86, +518.03925,117,108,100,115,102,101,107,113,118,115,84,101,99,119,106,100,96,106,107,106,91,94,105,101,112,98,106,106,102,103,103,79,113,101,108,102,108,101,100,106,96,108,108,110,116,111,81,102,93,117,104,110,107,118,115,113,112,102,105,101,90,124,91,92,103,115,96,107,99,108,81,99,106,99,98,113,95,106,104,89,92,111,103,101,105,93,91,106,115,100,119,100,92,105,101,113,102,92,99,95,94,113,97,102,100,96,109,76,101,92,99,106,88,104,111,108,116,108,99,116,114,100,104,108,113,103,103,106,118,99,102,102,111,107,106,89,104,89,102,93,98,102,104,105,85,114,111,88,103,106,103,92,99,95,103,112,100,108,110,114,98,105,116,105,112,100,105,102,107,94,97,107,97,95,107,108,99,92,107,111,104,115,101,105,105,103,109,102,102,108,107,95,107,103,103,107,110,108,94,103,100,99,104,91,114,116,118,107,98,112,111,87,112,105,144,108,97,100,99,106,89,98,104,100,105,104,105,102,117,108,110,103,111,95,100,106,97,111,106,98,98,112,103,103,113,93,105,110,77,105,104,110,113,105,98,99,104,106,105,102,108,109,102,101,109,114,114,105,105,113,107,102,94,101,97,106,106,107,106,103,109,105,104,106,102,111,98,108,100,95,88,109,111,109,129,114,107,99,104,100,99,103,106,117,112,103,118,109,105,107,95,104,97,111,114,98,104,109,109,106,95,99,112,116,92,102,99,100,114,110,108,113,103,101,111,109,104,108,98,106,115,100,83,102,107,109,84,122,107,111,101,91,108,108,103,99,116,107,105,104,97,107,100,102,97,95,127,94,100,110,103,102,102,102,106,107,103,106,106,112,119,106,99,102,100,99,102,66,91,98,128,104,95,104,103,107,96,101,95,102,109,98,98,105,83,91,99,104,103,96,94,112,88,105,104,109,96,106,104,102,95,109,89,96,110,104,104,99,105,134,95,117,107,108,116,91,104,100,104,97,102,110,103,111,104,108,115,99,104,115,100,104,112,100,83,107,88,111,94,107,100,102,110,122,112,102,98,94,124,98,103,108,120,109,102,88,107,108,99,103,88,98,112,110,107,102,116,106,99,104,99,114,97,121,99,95,108,104,112,104,102,106,108,103,110,107,99,97,110,105,105,98,91,121,107,88,100,104,113,94,108,109,101,110,97,111,104,113,85,102,110,104,94,107,101,108,99,80,108,102,103,98,106,102,117,106,116,114,108,107,117,106,102,106,116,114,97,104,105,109,111,108,101,107,103,115,90,104,118,105,113,105,115,116,127,104,102,97,109,101,111,109,107,87,105,111,114,102,103,96,116,118,106,101,120,99,107,106,103,112,108,99,102,109,98,106,105,117,92,120,100,81,108,100,106,96,108,110,97,108,103,109,117,113,98,103,105,100,104,104,100,114,98,113,102,123,99,103,104,112,109,106,106,105,102,106,106,100,109,112,102,112,104,117,108,107,118,105,114,101,107,111,111,98,106,106,107,97,103,110,113,98,114,109,96,109,110,119,104,101,104,100,99,104,95,99,107,99,98,106,103,106,103,111,104,104,70,106,113,108,107,100,102,105,120,106,105,94,96,112,116,111,124,107,99,100,106,108,111,96,103,100,107,116,96,109,114,113,108,105,102,107,99,106,109,107,102,103,110,106,106,108,110,101,113,112,94,113,119,109,103,97,108,92,112,95,108,112,110,99,104,99,102,104,103,109,105,107,91,109,114,105,119,112,108,97,101,105,92,124,105,96,103,113,109,102,114,106,97,100,113,107,109,110,100,117,104,105,121,100,105,107,99,100,105,102,107,115,112,121,109,99,90,101,107,96,112,110,107,87,108,117,125,105,108,108,95,94,113,111,113,99,119,109,83,108,130,115,106,113,102,81,110,101,103,123,102,113,109,95,104,108,91,118,112,114,111,116,110,102,95,111,110,109,109,117,103,110,127,109,117,113,103,110,103,105,104,104,113,97,103,107,112,118,111,109,98,105,108,113,118,111,101,109,107,103,113,121,108,87,104,102,109,98,114,106,97,111,112,107,101,110,106,112,110,107,105,115,99,99,114,101,117,116,108,93,100,99,110,106,101,109,103,116,106,121,102,100,105,112,99,101,109,108,104,102,108,108,118,107,108,90,107,118,110,102,104,113,125,108,117,110,118,110,113,104,106,105,100,109,105,106,104,102,104,109,106,105,96,109,102,106,109,108,100,105,116,102,112,111,99,117,101,113,106,112,101,103,105,112,103,111,106,106,111,96,103,100,104,110,117,106,103,112,98,101,98,90,104,125,115,117,103,98,97,108,114,91,116,97,87,102,99,113,101,100,107,97,104,103,131,105,97,110,80,108,88,97,89,99,94,105,99,94,106,110,109,99,100,104,103,112,111,102,105,127,95,98,104,102,97,112,98,114,114,112,98,102,91,96,84,100,104,111,102,94,99,118,95,102,106,116,104,96,109,106,112,107,108,91,109,91,97,99,115,100,100,105,122,116,100,104,105,110,106,104,102,102,94,113,97,102,101,105,104,104,99,104,97,125,119,116,103,99,97,116,103,103,111,92,102,100,102,98,111,109,80,102,109,99,117,109,100,105,110,87,99,109,100,114,118,107,110,97,105,104,93,102,106,104,109,99,105,105,99,105,120,69,109,115,106,109,103,112,101,105,113,97,98,107,111,113,95,113,101,109,109,93,102,120,105,110,101,108,108,103,114,121,105,96,103,105,92,106,106,99,105,106,109,106,104,105,99,104,105,102,98,103,85,118,101,112,102,100,111,101,103,110,111,111,96,97,98,100,98,101,96,98,105,105,103,103,113,106,109,102,93,121,108,102,107,114,104,114,126,107,107,80,102,120,100,106,107,116,96,104,104,113,104,121,103,113,106,108,107,102,108,91,100,100,99,108,91,99,110,108,102,102,95,102,108,99,118,112,110,108,106,109,114,99,99,110,103,109,107,112,105,110,102,102,120,113,108,93,122,112,106,105,104,103,106,85,97,106,124,98,105,100,106,101,100,109,105,104,102,97,112,94,95,114,98,107,102,98,93,115,102,108,105,87,99,102,100,94,104,92,116,113,110,113,103,101,107,103,110,105,83,120,108,99,98,89,96,108,109,113,111,103,102,104,109,102,112,99,95,110,101,102,100,112,99,105,94,100,102,113,105,99,111,105,98,94,104,110,94,88,97,99,103,114,108,93,107,106,107,102,109,102,115,104,109,125,102,109,109,104,106,113,104,94,110,110,99,107,100,104,112,104,96,108,106,104,116,112,99,104,100,105,108,110,103,108,103,102,113,120,94,106,99,104,94,111,104,103,106,107,115,117,108,96,89,103,97,111,113,102,98,94,106,103,107,111,109,113,101,110,83,111,100,109,84,103,106,112,101,95,94,105,111,123,97,95,113,106,108,105,109,101,96,111,102,88,105,107,98,116,96,109,103,102,111,107,99,98,92,105,111,99,113,99,109,114,91,109,112,129,104,109,101,94,109,109,109,103,98,118,91,109,105,117,103,101,98,102,106,103,107,92,106,107,112,106,103,102,103,112,115,116,98,104,101,107,102,106,102,106,95,108,111,107,95,105,109,99,103,96,105,112,103,103,109,116,105,102,104,92,109,116,101,111,105,96,102,106,101,107,105,106,110,111,99,102,110,114,88,95,108,124,114,98,107,107,109,108,106,114,95,104,113,92,108,109,101,102,109,102,107,101,110,101,101,97,99,101,94,113,105,101,95,105,103,98,116,102,105,105,95,98,102,112,95,124,95,107,112,96,105,109,109,99,110,95,119,117,94,110,102,110,105,112,100,112,110,101,110,95,107,103,93,96,99,94,95,104,102,103,106,118,105,127,98,107,105,108,107,95,102,108,100,103,95,105,96,91,106,98,101,102,104,99,100,102,101,99,112,104,114,107,100,106,97,99,98,99,102,103,107,104,92,95,104,102,99,96,100,114,99,113,106,114,99,107,106,101,116,105,103,101,107,103,118,106,113,113,100,103,107,105,111,100,106,100,100,102,103,109,111,100,103,99,102,111,100,105,87,101,109,103,99,108,105,113,106,94,106,102,103,108,116,106,114,112,97,100,104,102,113,103,98,91,110,93,93,101,100,111,99,98,101,90,103,100,113,96,104,102,94,108,109,101,113,105,103,100,113,94,103,127,110,109,113,95,110,104,101,94,98,98,92,106,84,99,113,99,100,102,113,113,96,94,94,103,103,102,101,113,93,98,93,105,98,102,109,111,109,98,105,95,100,111,105,103,90,113,117,94,113,115,109,105,87,95,112,102,106,102,113,110,99,108,103,101,107,106,124,104,105,93,100,110,94,108,116,110,100,80,120,110,96,105,116,116,108,117,116,108,111,115,102,96,98,101,97,108,92,104,98,110,101,129,101,101,103,96,105,109,105,97,105,102,106,99,110,103,97,100,106,106,101,105,110,97,99,109,104,107,94,99,108,102,88,100,112,110,111,105,107,115,102,117,91,102,83,104,104,100,110,96,119,104,124,103,102,96,95,110,105,105,103,101,84,106,98,91,102,99,98,102,112,100,98,102,103,106,104,104,114,101,99,105,104,102,100,96,106,96,105,106,102,116,107,121,103,106,94,117,111,102,113,107,99,103,110,115,102,104,119,111,104,107,106,98,109,110,100,96,118,96,115,104,111,103,94,99,102,109,101,98,105,105,89,100,102,106,99,101,88,108,109,98,105,95,98,99,110,107,117,116,107,100,113,124,93,110,89,101,86,85,110,101,93,95,117,104,97,100,94,114,105,105,107,115,104,92,101,106,111,107,106,112,96,104,89,108,91,104,102,100,111,114,112,100,102,112,99,94,95,132,87,113,103,102,102,99,112,80,104,112,102,98, +518.17993,102,87,105,111,100,109,99,104,94,95,113,97,109,102,120,101,102,97,95,94,102,119,110,94,99,102,111,95,109,109,106,96,105,108,92,106,108,105,91,98,109,105,95,110,105,111,103,105,98,108,107,112,96,99,117,95,99,103,99,104,103,106,105,101,105,108,97,99,117,106,95,108,102,94,102,109,97,99,101,106,99,107,114,89,106,96,103,99,103,98,107,112,103,102,91,91,99,98,105,94,74,107,101,101,100,95,103,107,108,102,99,105,105,108,117,83,99,111,97,91,112,101,105,106,101,100,135,104,107,107,104,92,95,103,106,98,83,95,115,94,100,105,91,109,102,102,88,101,101,100,92,103,104,112,104,100,107,112,91,107,105,106,99,110,101,101,103,105,110,116,99,102,108,113,107,103,109,96,107,105,103,108,103,97,109,90,102,97,106,95,103,106,110,107,90,104,110,112,116,97,107,107,101,102,110,106,100,103,106,107,93,106,102,103,109,106,105,101,103,103,105,112,96,94,103,107,100,97,96,105,94,109,101,109,106,100,104,104,108,100,114,100,104,103,106,104,116,99,107,105,105,100,99,111,94,114,99,99,94,106,96,104,82,106,105,112,113,96,92,105,113,100,110,110,106,110,110,117,98,96,105,104,94,122,106,113,107,107,112,102,107,112,100,105,102,101,103,116,108,102,113,102,115,116,100,121,119,104,116,109,90,103,103,114,129,110,102,113,96,95,104,103,98,103,91,86,106,105,110,111,105,85,110,101,109,112,103,72,104,98,100,96,116,102,95,96,114,106,103,113,101,108,100,110,103,114,95,102,98,107,106,103,96,87,98,105,106,102,98,108,101,119,102,117,101,104,101,101,102,107,109,116,105,98,98,103,110,110,110,95,107,104,99,116,98,109,98,106,103,106,99,109,101,99,101,92,102,93,114,106,108,103,113,103,100,104,105,103,110,97,91,100,102,94,102,95,106,103,102,105,108,107,113,111,111,91,107,107,106,111,99,111,104,109,98,110,103,114,113,113,106,101,99,118,108,100,104,108,134,102,87,108,114,120,109,112,106,112,123,104,112,103,104,107,108,102,101,103,110,106,108,108,110,104,104,86,103,118,103,83,95,110,105,108,103,108,98,108,112,104,119,100,111,108,112,109,103,112,113,98,108,108,111,103,99,113,104,106,99,102,102,113,105,116,113,120,110,104,104,97,109,93,90,105,111,111,111,107,110,125,112,111,106,107,101,101,105,115,104,100,98,113,104,97,103,101,101,97,99,101,111,110,100,113,114,121,104,102,92,108,120,102,113,105,113,113,97,109,100,112,100,105,112,111,101,76,104,106,101,125,107,106,105,113,110,117,100,107,92,117,104,106,112,121,110,110,98,109,90,105,85,105,121,109,117,103,108,105,114,104,105,114,100,92,103,114,99,98,107,106,106,113,116,103,97,102,112,101,108,78,97,105,97,108,104,94,104,113,106,115,92,111,110,96,101,108,111,115,102,115,116,105,107,114,98,104,103,103,113,102,95,113,107,103,116,106,105,105,103,102,102,97,104,112,104,115,109,113,109,99,105,103,108,117,100,100,111,108,108,116,108,102,99,107,104,110,116,118,102,97,111,107,106,117,106,94,110,95,113,106,103,119,112,129,117,112,105,89,101,101,103,112,106,96,113,103,98,98,112,102,114,95,103,98,99,93,112,115,105,103,99,111,108,101,92,111,103,112,100,99,96,108,96,88,114,79,102,114,105,106,114,108,104,108,104,99,114,94,88,103,101,101,119,111,111,112,113,104,98,113,117,103,99,98,112,117,103,116,99,106,116,97,95,110,100,119,99,112,102,106,116,105,113,96,121,100,118,111,113,98,109,97,108,103,95,106,103,118,110,106,101,110,102,102,111,107,120,109,105,111,107,100,105,107,105,101,88,105,104,100,104,104,80,108,98,109,91,102,110,96,112,101,111,116,109,116,110,116,104,102,106,104,102,110,101,92,108,116,106,105,95,106,101,106,102,104,81,111,105,114,107,103,105,117,111,97,96,104,102,105,107,107,104,105,114,109,105,106,101,107,113,129,98,105,102,92,112,90,103,109,112,106,116,103,114,116,95,111,108,127,109,102,109,102,101,99,98,116,110,96,101,112,106,117,104,106,113,108,96,104,102,112,129,107,102,104,114,144,109,96,109,104,103,103,96,109,105,96,101,105,96,100,103,113,105,98,101,98,113,104,104,101,90,110,103,95,108,110,103,94,125,98,108,102,98,98,108,103,103,101,101,107,107,109,107,117,107,110,119,109,92,100,99,110,105,100,101,109,95,104,92,110,109,92,93,101,101,91,94,94,114,111,115,108,99,108,111,81,105,108,100,114,101,107,101,113,117,95,102,71,122,116,99,92,90,113,112,109,102,128,96,113,109,114,99,107,115,107,102,94,95,112,94,106,104,109,106,107,108,126,105,110,108,109,108,112,106,99,111,98,109,100,99,102,109,104,93,106,107,112,91,118,105,99,104,103,104,98,133,99,102,101,107,112,83,78,119,107,100,97,112,98,91,94,105,112,113,103,102,107,107,108,109,103,100,108,111,100,106,105,101,104,98,101,111,104,108,95,116,92,123,121,107,108,102,104,100,107,107,106,103,104,112,95,92,104,108,109,98,98,116,120,121,87,109,109,95,100,113,103,118,106,101,105,89,112,116,104,100,106,111,98,109,96,101,93,97,101,104,126,112,103,87,103,108,99,106,102,116,129,112,103,103,103,108,100,102,100,94,100,103,110,119,107,106,111,119,103,96,122,104,102,92,103,109,95,100,104,117,117,110,112,108,85,90,102,110,126,96,98,103,104,109,116,100,97,94,110,111,115,105,100,104,118,115,120,106,102,106,108,108,99,109,112,100,111,101,116,100,107,107,107,109,110,108,107,104,98,100,117,101,110,88,132,118,102,107,104,96,98,106,111,113,103,123,104,93,99,111,105,109,98,102,113,102,103,99,113,108,108,105,113,97,106,102,112,104,95,112,99,109,109,109,103,109,104,98,101,98,98,96,109,102,100,95,100,97,94,121,98,104,98,92,94,98,104,111,102,93,101,104,117,103,107,115,100,104,98,104,104,100,108,103,109,101,110,96,95,105,90,116,106,103,106,93,104,106,99,88,102,100,94,106,114,104,112,104,105,102,108,121,104,95,104,103,105,96,86,116,101,111,104,109,98,105,91,118,103,99,109,107,104,88,114,105,112,112,105,126,82,105,113,102,96,112,106,106,115,103,106,98,100,107,107,98,117,99,99,108,82,100,100,83,111,94,108,105,104,111,104,100,105,103,122,99,114,108,99,106,101,102,111,104,103,77,96,103,106,123,107,98,101,110,105,99,113,96,102,99,101,94,107,99,105,108,116,105,109,105,98,107,98,97,110,104,103,102,96,101,108,105,103,102,110,100,94,107,110,100,103,96,105,105,109,105,108,113,90,102,103,116,103,103,94,91,108,107,103,110,107,104,101,100,104,101,105,106,110,102,106,111,99,99,107,100,104,102,99,100,97,104,96,96,106,104,111,106,101,102,103,106,106,100,104,113,112,117,120,108,101,64,102,101,107,104,96,91,109,90,98,101,97,105,99,110,95,116,93,115,111,106,105,94,119,99,97,107,99,108,104,100,99,101,104,95,108,110,90,116,120,103,105,109,111,100,99,106,100,109,99,133,100,96,101,109,103,119,104,104,99,97,104,102,108,98,103,106,97,111,100,102,109,100,98,103,101,116,95,113,110,121,106,104,102,104,112,101,92,95,96,93,116,102,84,107,104,115,116,106,110,94,113,103,108,105,106,102,109,108,107,104,112,107,95,88,113,98,95,108,96,111,100,125,100,106,105,100,104,104,100,106,106,99,111,108,93,100,105,105,92,109,104,118,114,104,103,108,106,99,88,106,109,110,96,108,107,113,111,102,115,127,102,100,105,89,107,104,113,98,102,106,102,113,109,103,96,86,108,110,111,106,103,97,100,104,112,97,104,128,84,109,100,96,100,100,103,108,94,104,104,98,105,94,104,99,98,101,100,109,96,106,107,103,108,104,108,104,108,95,116,95,100,99,116,102,117,91,109,117,101,102,107,85,112,95,108,103,109,114,109,103,90,99,97,98,103,104,106,111,91,100,100,106,100,104,97,104,113,95,92,108,110,100,83,104,98,113,101,103,101,97,98,96,112,100,91,102,105,144,116,101,100,112,100,101,103,107,102,107,108,104,99,117,93,104,103,114,112,102,108,102,96,106,106,91,102,100,103,104,97,96,109,98,103,95,103,113,101,100,79,98,111,119,104,116,95,98,121,103,86,103,105,106,110,102,106,105,102,108,99,94,96,102,107,97,105,117,109,104,90,99,108,102,116,102,108,113,103,98,106,108,91,104,121,103,103,99,99,106,100,103,120,103,98,103,99,93,104,106,101,83,107,106,104,102,97,103,102,94,111,105,93,99,109,103,108,100,100,110,114,98,90,101,107,94,100,103,103,93,113,89,92,105,105,103,106,132,101,111,104,113,102,108,114,100,101,108,93,102,99,102,116,106,106,101,113,101,94,99,97,107,96,94,107,106,100,117,97,94,102,99,97,91,99,109,118,106,116,102,85,125,95,109,96,108,100,113,140,100,97,96,104,122,105,103,103,108,99,95,95,102,99,113,104,106,105,92,110,97,94,104,113,101,108,94,92,97,97,102,99,94,109,108,100,128,93,74,101,121,105,107,103,115,94,102,75,100,99,128,104,89,112,100,108,99,102,113,113,100,109,112,111,102,111,99,110,90,104,97,94,115,93,93,109,108,104,107,97,113,95,101,105,105,96,103,104,100,83,112,107,113,100,108,94,99,104,94,94,112,92,92,93,103,96,109,79,106,110,112,96, +518.32068,97,122,113,101,98,118,101,102,110,109,98,104,107,107,106,102,111,106,101,98,108,99,84,109,114,86,109,93,114,101,100,100,96,109,107,106,109,96,106,102,103,110,102,94,106,109,100,106,116,107,98,98,104,109,99,79,102,101,104,101,97,107,100,90,100,112,94,104,77,111,105,88,98,96,90,112,111,95,106,84,114,116,100,108,116,100,107,105,105,99,107,91,94,108,100,107,95,99,88,90,94,91,96,91,105,110,95,102,112,101,101,109,102,113,108,94,106,109,104,113,106,114,107,93,103,111,112,98,95,104,94,98,103,100,106,113,94,96,105,89,102,103,110,95,96,110,117,102,100,102,104,94,104,91,92,111,106,94,119,117,99,116,106,117,106,106,111,113,103,94,108,119,104,113,96,98,101,99,111,104,103,111,100,104,96,105,105,99,110,102,109,88,99,100,100,111,98,103,102,101,106,97,98,99,95,97,94,101,98,98,112,111,95,104,98,103,104,110,117,105,105,107,103,105,103,98,123,110,100,106,94,92,116,105,118,106,96,91,110,106,110,107,116,100,105,93,107,105,105,105,122,109,73,99,102,103,98,109,92,108,101,96,98,101,100,114,110,108,108,108,108,110,102,100,96,98,98,104,102,99,99,117,101,106,106,109,101,107,106,107,106,103,107,108,100,107,103,103,93,111,101,95,99,113,107,108,109,113,96,109,73,98,103,100,89,103,103,99,104,97,111,108,107,110,106,98,112,87,106,107,98,108,107,107,104,108,115,106,114,94,88,107,112,103,105,105,99,107,105,103,106,105,101,91,92,108,107,99,108,106,101,104,95,93,97,96,104,102,101,106,100,101,106,103,115,100,100,105,107,107,108,106,109,114,95,96,106,98,108,93,107,109,93,105,96,97,99,105,108,118,99,93,109,91,93,96,95,102,115,109,102,114,98,103,102,108,102,110,109,101,115,101,101,105,110,98,109,108,105,121,107,116,93,102,106,133,126,102,106,111,107,101,99,120,101,103,103,100,107,108,107,103,102,98,101,100,105,107,106,100,103,114,106,111,110,102,114,98,110,91,107,71,99,107,106,105,101,106,107,115,97,98,113,98,88,110,94,103,109,94,105,110,120,95,109,112,101,105,101,101,103,109,106,108,102,108,108,116,101,73,88,90,104,103,101,110,103,106,91,98,111,104,100,111,104,100,105,104,88,103,97,106,98,104,96,106,100,94,109,95,87,115,94,89,104,99,98,117,99,84,100,105,102,93,110,101,99,98,115,95,100,103,100,108,91,96,90,105,110,100,97,97,89,90,88,106,99,100,105,117,117,69,104,113,104,104,106,106,109,111,110,110,95,108,119,104,119,105,107,98,115,109,102,103,118,90,89,95,103,102,106,92,106,103,110,98,99,101,104,97,104,104,105,97,111,95,100,101,98,102,99,105,86,99,87,112,103,104,97,117,100,105,107,105,110,110,102,106,101,106,98,106,107,109,114,101,102,99,94,108,107,97,113,103,90,110,84,92,96,110,99,109,105,107,109,112,101,100,98,101,101,105,104,105,99,112,100,109,99,99,104,99,104,115,79,114,115,114,108,97,111,102,103,100,83,98,109,94,103,114,102,100,117,104,112,105,70,114,106,105,102,78,96,106,98,92,114,100,90,112,99,95,99,118,108,105,110,103,106,102,114,102,113,103,104,86,90,112,97,104,112,99,102,106,97,112,110,99,106,96,105,98,94,105,119,107,96,108,108,108,111,100,107,101,111,119,112,100,97,110,103,122,97,100,109,114,113,98,101,98,104,100,91,106,125,105,94,100,103,99,97,136,104,105,101,111,100,108,101,100,112,107,95,108,108,103,110,99,116,108,111,107,113,107,105,107,108,103,116,97,112,107,108,103,104,102,102,101,91,108,95,104,109,100,100,104,94,87,113,95,95,82,111,110,105,111,107,109,106,102,83,100,113,108,103,77,96,114,120,109,107,101,115,110,107,100,99,105,101,111,108,100,106,94,112,113,105,103,110,96,109,117,116,108,104,100,92,96,99,107,114,103,101,87,113,101,104,111,102,104,112,105,110,106,102,91,112,113,113,104,106,105,108,111,106,103,114,117,98,106,100,109,97,101,105,104,98,101,108,91,101,113,108,109,99,103,87,105,98,107,93,106,99,70,102,110,101,103,111,103,100,98,99,93,109,90,101,104,98,103,96,106,114,121,110,105,117,104,106,100,114,99,105,99,106,104,101,102,106,97,100,116,101,109,98,97,105,92,96,106,104,105,103,113,105,114,111,103,103,109,109,98,109,105,101,96,114,109,102,109,109,104,89,94,103,102,103,97,111,105,108,105,107,105,103,91,108,119,102,96,104,105,96,105,110,102,114,96,100,105,106,108,124,94,94,93,89,113,97,103,95,106,101,110,99,100,84,101,109,94,111,110,110,106,110,106,90,99,112,95,112,113,101,86,110,105,103,84,116,103,109,106,117,113,117,83,108,109,110,108,109,94,103,97,109,107,114,104,104,106,91,106,105,91,121,105,105,117,105,101,108,109,104,112,95,102,88,98,107,107,102,115,119,101,97,104,107,104,97,85,95,106,106,99,105,108,112,94,108,100,110,109,102,104,102,107,107,109,87,100,104,93,94,97,92,105,103,109,105,98,120,107,112,101,96,105,104,97,108,105,107,93,89,122,103,108,108,104,102,108,104,112,112,82,115,104,113,100,117,99,107,106,97,103,114,101,107,116,105,102,101,116,108,74,102,100,108,111,77,106,105,104,91,98,108,95,86,108,114,115,105,102,109,102,97,104,103,111,92,108,101,100,105,99,106,104,99,98,109,111,105,113,109,95,108,109,96,110,102,99,104,108,87,111,108,111,104,113,106,119,105,103,112,103,101,95,94,108,102,113,103,105,99,102,113,117,103,108,99,113,109,111,107,119,114,95,106,94,91,111,103,108,100,115,87,106,102,108,104,104,108,106,108,109,107,102,100,103,114,98,99,109,96,111,103,96,102,116,110,111,105,90,95,103,107,110,100,110,113,108,110,97,111,106,117,68,111,98,107,98,109,105,110,113,96,104,103,95,107,91,107,111,117,113,106,89,123,102,108,94,92,95,112,105,110,100,102,108,110,111,101,108,98,109,90,94,98,107,105,83,105,95,100,105,103,107,108,106,90,104,111,100,101,105,93,78,100,70,102,116,98,106,106,102,102,97,93,96,100,100,98,108,93,100,100,106,101,109,109,113,109,117,106,113,101,90,106,110,95,110,102,106,97,112,109,106,103,106,105,102,110,95,104,133,107,94,98,96,99,102,113,109,112,103,112,103,102,95,118,109,112,112,98,104,91,104,90,110,91,94,99,127,107,97,100,102,110,101,102,97,101,123,97,104,108,99,104,106,106,124,107,105,100,100,108,97,94,101,97,110,99,100,94,91,110,107,109,115,93,100,99,104,113,101,99,103,110,116,108,102,101,104,104,97,105,115,101,105,108,112,100,106,98,108,102,96,103,112,105,106,105,113,109,110,103,112,95,97,107,114,121,100,114,107,103,112,97,101,103,108,108,91,104,106,103,107,101,103,101,98,103,105,98,103,95,94,104,98,93,124,87,100,109,105,97,102,97,99,105,95,109,103,116,110,102,101,82,100,103,105,96,102,101,103,108,104,100,102,107,109,108,99,107,114,96,96,100,100,111,109,109,101,113,107,107,84,112,115,113,93,106,109,96,98,96,101,105,104,115,97,112,84,99,105,114,105,94,112,104,104,96,109,96,109,96,107,100,106,106,103,103,119,107,88,102,109,109,108,100,97,106,93,133,106,109,103,102,95,119,106,102,103,88,111,96,111,101,97,73,89,99,94,97,99,98,80,103,99,92,103,95,108,116,99,113,118,91,90,110,108,100,103,102,102,105,87,108,99,110,103,107,107,112,108,111,99,92,108,95,106,96,107,95,104,102,97,98,103,101,104,103,95,107,101,102,100,108,101,90,115,100,117,113,116,99,108,107,100,100,108,108,102,94,89,95,109,109,100,97,105,107,109,98,114,112,113,116,101,112,112,110,101,110,96,95,116,104,112,92,103,97,121,106,120,110,107,96,111,122,99,103,114,112,105,103,115,109,111,87,100,112,96,96,108,113,105,111,101,104,108,100,93,112,109,105,110,121,95,109,107,113,104,115,101,108,106,116,111,109,108,113,96,108,103,96,102,102,97,96,129,105,100,104,91,109,99,101,106,101,106,91,107,100,105,115,109,85,102,104,81,114,94,112,97,96,94,111,105,110,93,130,107,102,97,105,102,100,109,113,101,99,107,114,103,111,99,101,112,80,91,100,100,105,111,107,106,97,99,109,108,93,95,112,108,101,104,115,107,90,101,99,115,103,108,96,103,112,110,87,102,102,88,104,110,93,111,101,91,111,99,115,107,92,102,112,86,108,96,107,101,98,127,107,98,104,94,96,113,105,101,113,85,77,109,87,101,101,120,107,98,101,91,95,103,108,73,108,98,83,102,103,110,91,102,99,110,92,89,68,96,113,101,99,102,107,100,97,96,101,92,94,117,106,111,134,108,99,91,92,106,109,102,99,107,107,102,103,103,115,107,98,105,105,85,109,98,119,102,114,107,111,103,104,105,114,103,96,98,98,105,101,112,100,113,91,91,106,101,102,101,94,95,98,99,95,108,100,102,93,90,102,101,121,107,98,94,109,117,111,92,87,94,94,98,112,108,105,114,109,95,105,96,109,120,96,113,108,107,113,117,104,104,95,106,99,97,109,114,102,103,92,96,106,107,103,98,102,120,89,108,112,98,98,94,101,106,98,97,63,92,91,95,90,96,89,95,103,63,105,100,102,99,106,100,105,108,112,105,99,101,104,95,99,116,87,107,87,95,99,103, +518.46136,102,106,95,115,85,110,75,102,128,89,103,105,98,99,101,99,93,118,117,105,108,88,111,103,101,94,104,90,107,113,101,98,114,96,115,94,97,89,112,82,117,97,105,105,99,102,104,107,98,98,110,110,98,102,109,104,116,94,100,105,93,104,112,94,100,117,110,108,95,101,95,107,117,116,87,110,98,102,92,95,103,103,103,105,105,100,109,116,108,108,109,110,95,117,102,95,100,102,100,109,94,111,98,104,88,109,101,123,96,112,104,94,123,102,103,113,110,106,99,105,117,110,98,112,105,109,106,109,111,113,110,108,110,105,99,100,110,110,88,105,107,102,111,105,99,109,118,112,98,92,103,91,113,102,103,100,103,108,104,88,103,106,106,115,106,92,100,100,107,101,111,114,102,113,106,105,113,93,99,98,98,104,90,92,111,94,107,107,109,93,106,105,101,96,101,115,95,103,106,113,101,92,98,97,111,100,96,101,112,97,99,103,107,109,105,105,101,115,99,106,86,100,91,99,97,103,97,98,109,105,95,105,108,121,110,101,102,105,102,108,104,103,109,111,97,105,98,95,102,110,91,114,107,103,122,104,98,108,82,108,107,103,111,97,96,114,107,101,107,101,106,105,100,109,116,113,106,106,109,104,103,106,118,101,73,102,103,104,108,93,102,117,113,109,113,109,118,108,109,89,95,101,98,113,83,95,105,117,99,101,104,101,97,97,103,116,118,92,99,111,98,98,108,101,107,85,100,98,119,119,113,109,115,108,108,125,105,102,106,108,92,100,117,94,116,111,111,113,101,101,115,102,102,109,104,103,110,108,98,105,95,93,98,100,97,109,110,95,105,125,105,109,112,95,114,102,107,109,95,113,99,112,104,106,107,110,117,102,108,95,120,103,103,115,114,105,109,114,93,142,95,108,121,114,118,104,106,103,101,104,100,106,91,112,98,82,112,92,113,109,102,89,108,113,93,100,103,107,109,102,99,114,96,109,107,98,99,119,102,104,113,116,121,106,106,108,101,107,106,104,103,117,102,100,103,110,113,109,106,95,90,101,103,108,106,95,109,102,102,114,103,97,121,112,105,105,104,108,112,87,108,103,108,112,99,104,101,108,116,98,116,104,114,106,95,109,87,91,137,113,120,71,106,105,100,104,105,106,107,92,102,107,80,103,114,98,101,110,112,106,109,105,111,100,107,108,115,106,99,98,101,75,99,109,91,101,107,97,107,105,110,99,107,93,104,100,111,94,112,101,102,108,77,109,91,114,109,117,108,101,90,104,95,112,111,92,97,104,108,106,106,100,104,112,94,101,108,99,100,108,102,97,112,108,100,112,113,96,110,105,113,113,100,111,115,90,109,119,106,108,105,110,108,100,103,99,96,119,104,101,104,93,108,109,111,108,94,116,109,103,98,95,105,100,112,112,103,112,107,120,104,99,109,116,105,106,117,86,106,101,96,100,104,102,101,97,106,99,112,106,101,106,100,114,103,110,102,115,113,110,122,106,111,101,70,103,105,110,85,108,110,100,109,107,103,111,112,104,111,87,113,110,104,103,109,109,101,105,108,114,105,110,111,103,99,100,112,106,109,96,101,88,113,118,108,117,84,109,98,113,104,91,113,107,110,110,96,104,107,100,99,95,112,99,102,103,98,103,100,105,100,116,92,112,96,113,108,96,108,103,94,104,114,110,102,101,103,111,104,93,101,103,116,112,108,108,107,106,105,105,121,103,101,100,109,108,112,113,95,103,121,108,109,105,101,101,98,98,111,97,113,117,119,104,110,108,97,110,101,106,121,102,103,110,101,111,99,104,106,98,110,98,104,105,107,112,101,103,105,106,116,109,110,117,108,107,108,105,101,122,106,127,98,106,114,115,112,99,112,107,104,107,114,105,100,103,105,100,123,107,91,111,103,111,101,104,100,107,106,107,122,110,108,115,97,93,102,117,116,98,107,101,101,98,108,106,100,110,121,109,98,99,103,100,102,109,97,95,120,99,100,99,101,99,83,108,105,114,108,95,112,116,104,111,106,97,101,110,97,109,103,109,105,104,91,109,107,111,102,109,119,107,97,104,95,112,88,107,103,107,109,90,114,105,96,105,109,112,113,107,106,112,100,118,101,107,95,94,99,110,94,100,97,118,117,105,103,120,111,99,93,112,99,113,104,110,104,97,108,108,102,110,103,100,109,107,95,105,114,92,95,115,106,112,99,104,106,93,116,103,104,106,106,100,121,76,109,91,112,103,87,102,113,100,96,113,111,98,102,113,110,91,105,112,89,114,109,94,101,108,100,110,100,107,106,101,110,101,108,103,118,107,110,103,108,89,96,109,91,110,103,111,110,105,114,102,103,111,101,103,113,99,84,101,106,104,105,93,94,98,113,109,104,106,105,104,108,109,106,108,104,112,107,118,102,107,129,100,113,113,94,102,113,118,93,94,95,111,103,104,107,117,98,89,111,120,103,98,99,102,105,103,115,96,98,97,101,96,111,116,102,84,114,107,72,105,102,112,105,108,110,106,106,102,112,92,98,111,101,108,108,85,97,99,112,112,98,102,117,114,109,105,102,91,110,109,124,126,103,115,103,103,97,104,105,99,104,112,110,93,97,103,111,106,109,108,104,107,109,101,95,99,103,106,110,120,98,104,120,104,112,94,106,109,121,97,99,104,104,119,101,117,103,68,104,97,119,101,103,109,111,99,99,108,102,112,112,103,109,103,109,100,109,104,98,109,105,116,105,106,112,105,107,117,107,113,112,113,104,106,103,102,92,101,104,111,106,104,107,103,97,110,115,109,101,105,106,104,114,100,117,103,104,110,97,112,102,103,101,97,113,115,102,120,106,101,104,117,107,108,110,84,107,107,109,117,106,106,89,113,108,104,98,122,123,105,115,124,110,119,105,115,105,110,107,106,102,102,109,99,112,110,96,105,106,113,114,102,114,112,107,115,88,96,104,91,113,103,105,91,107,102,99,95,110,118,102,109,102,116,91,95,98,110,107,121,107,103,113,106,99,96,105,105,110,114,113,114,92,104,96,115,104,114,115,104,101,111,116,108,97,110,112,103,105,105,90,109,118,94,122,116,122,108,124,97,117,100,108,105,109,107,103,112,119,109,105,98,98,110,109,99,105,96,113,106,101,95,100,108,98,96,105,110,109,113,109,98,107,106,116,102,104,112,114,106,112,103,109,97,105,107,114,103,103,97,118,110,99,101,102,113,101,99,106,110,105,93,105,102,102,110,104,103,101,107,108,113,100,109,102,90,111,112,92,111,100,104,102,93,103,107,105,109,110,95,112,103,104,113,112,97,100,109,110,102,109,94,104,95,115,106,94,102,110,107,102,120,130,99,95,117,107,113,101,114,120,102,114,106,99,106,113,104,119,108,103,102,109,100,101,116,111,101,112,111,119,108,96,110,104,102,105,105,109,104,108,106,95,107,117,102,111,109,100,112,105,113,91,91,111,106,105,92,95,126,105,108,115,104,102,110,101,94,111,105,93,107,113,92,111,121,106,116,112,117,105,108,109,121,104,103,111,79,110,98,109,103,105,116,109,102,111,105,98,108,100,105,121,104,96,107,109,110,112,94,111,101,103,95,107,123,100,113,105,101,99,125,112,105,112,108,105,104,114,99,110,104,106,112,111,98,103,108,105,95,107,101,102,107,96,113,99,107,107,111,107,108,116,105,108,103,103,111,109,102,106,108,106,112,99,111,101,102,74,108,108,109,96,105,111,119,117,97,106,104,105,107,108,111,102,108,98,92,102,99,115,104,106,98,95,103,107,111,109,114,114,100,101,112,103,98,115,120,99,107,108,92,98,105,103,91,110,108,95,104,100,107,107,98,97,110,98,109,110,109,110,100,104,112,106,99,101,100,103,119,112,113,112,91,105,103,101,96,107,122,117,96,110,95,102,106,103,110,104,108,111,112,115,107,98,109,112,126,109,97,110,109,104,105,106,111,103,104,108,97,117,104,102,95,111,112,102,104,110,98,94,105,106,111,113,106,100,106,103,113,110,103,106,109,105,103,102,104,101,116,101,117,99,100,105,113,114,110,105,98,91,108,103,95,112,103,116,111,105,100,108,114,116,106,98,102,111,102,94,96,100,104,105,107,94,96,110,108,121,108,94,116,115,112,106,92,113,97,113,104,97,114,106,106,106,99,113,105,103,101,103,102,96,73,108,120,94,103,106,98,114,104,124,107,116,96,115,111,115,101,96,126,117,104,104,96,109,120,105,103,100,107,105,103,109,98,107,104,109,101,85,92,96,109,107,113,108,117,90,99,104,95,98,109,114,110,113,109,102,98,93,106,108,101,110,73,87,113,115,110,106,102,110,102,116,100,106,110,103,113,113,110,96,104,96,114,113,107,105,105,110,109,98,95,100,93,98,99,103,89,97,103,103,107,114,108,100,93,104,98,89,97,106,104,106,102,111,101,103,111,105,94,112,102,95,92,87,92,107,103,104,116,97,102,106,101,102,109,76,91,98,94,96,108,107,106,105,103,110,114,103,93,100,113,107,98,98,110,100,101,110,106,102,96,108,121,104,104,113,98,103,91,108,108,111,111,106,114,107,94,107,100,102,107,99,100,98,112,117,119,108,113,108,103,118,115,111,102,103,110,95,95,102,104,91,105,103,115,100,105,107,102,98,108,93,96,91,103,106,103,107,102,103,109,102,106,107,103,110,95,95,101,105,97,102,105,110,97,104,104,102,100,109,106,105,105,93,109,88,102,99,98,96,102,97,118,118,78,103,103,110,111,107,103,110,98,101,105,105,119,104,112,95,100,126,114,94,96,105,117,106,95,102,107,98,97,109,115,110,108,97,82,98,102,105,109,101,98,117,91,89,83,99,107,107,97,98,95,110,101,103,104,104,102, +518.60205,100,96,94,94,98,106,106,121,103,104,104,93,97,107,64,97,124,101,102,86,106,98,98,87,110,112,125,103,106,106,92,101,75,98,105,104,110,87,109,104,101,121,111,95,99,102,105,109,101,132,103,112,112,100,111,110,103,99,106,121,112,95,92,111,120,115,101,100,101,93,104,91,90,106,83,116,93,106,104,99,106,114,98,110,86,103,99,112,75,102,102,106,117,90,95,101,103,109,100,100,94,108,111,100,109,107,104,98,104,114,99,100,99,91,110,98,104,116,115,103,70,106,119,114,104,103,104,102,106,105,103,101,105,112,118,91,113,94,98,108,96,110,109,96,102,104,107,115,102,103,95,104,97,106,102,98,101,106,107,101,110,117,101,102,105,106,93,106,98,112,105,112,100,109,101,104,113,101,109,108,94,116,95,117,100,114,98,101,117,93,105,98,121,103,104,95,106,122,100,90,98,107,108,112,103,100,110,106,117,113,101,95,103,101,109,104,97,104,98,100,107,99,112,96,96,110,98,108,109,112,115,113,115,95,108,95,124,123,99,101,100,110,101,104,103,104,112,111,95,103,115,100,83,106,99,105,103,109,108,91,107,91,94,98,105,109,107,99,102,100,117,108,107,103,103,100,102,104,100,105,95,106,102,103,103,109,101,95,98,109,91,98,103,107,110,103,105,113,99,100,100,97,106,106,101,113,95,100,116,105,105,102,108,96,113,107,117,109,98,99,115,112,78,109,107,109,106,94,106,100,101,97,113,110,104,112,107,113,92,104,114,106,101,98,111,121,105,110,107,101,97,94,103,92,104,114,106,108,104,90,100,98,106,105,104,106,95,119,94,115,102,106,104,132,105,104,100,91,98,98,89,103,107,105,106,98,102,102,110,97,115,104,106,121,110,91,121,105,102,107,108,94,96,103,106,101,110,114,112,96,95,110,107,85,112,98,77,94,104,91,96,107,102,109,91,104,104,99,107,106,102,103,98,122,103,105,116,105,97,113,107,109,99,104,96,107,106,118,102,103,107,102,108,114,102,102,95,100,115,109,106,100,103,99,102,117,109,110,106,112,120,108,98,104,96,96,115,113,105,103,96,107,113,95,107,109,117,125,99,101,103,113,100,104,107,102,101,106,99,115,107,105,110,114,113,90,103,109,99,103,117,102,102,107,110,109,124,105,113,99,97,105,108,112,101,113,97,102,110,108,102,111,99,89,106,98,109,117,100,112,100,95,113,96,102,95,101,104,115,121,105,118,91,98,95,107,123,95,109,95,99,98,105,111,99,91,104,105,103,104,102,98,87,105,94,102,110,109,98,94,106,99,117,104,100,113,110,104,97,101,109,107,107,109,113,106,105,116,99,103,108,105,105,101,105,117,99,101,95,105,110,113,109,98,110,104,105,97,95,111,110,106,121,94,116,101,94,113,103,98,99,108,103,105,103,100,113,96,116,115,100,97,99,117,106,97,106,105,115,117,103,110,103,101,108,102,105,122,95,100,100,108,101,109,78,109,107,107,114,99,99,113,108,105,103,103,110,110,111,104,109,112,104,105,92,104,100,107,102,109,101,110,101,108,99,102,111,106,117,98,104,102,69,108,104,96,103,98,113,97,114,105,111,95,103,111,106,95,95,112,103,97,93,108,100,109,92,97,109,113,104,105,109,99,106,109,93,101,103,112,114,100,99,104,107,106,105,105,94,106,110,103,95,106,105,116,100,105,113,103,99,103,101,101,112,114,95,104,105,96,107,102,103,111,108,94,91,109,95,107,108,96,110,105,110,108,98,106,96,109,99,101,95,111,110,122,91,104,116,108,105,101,107,99,114,96,108,110,105,106,115,110,122,105,99,99,106,96,109,99,102,104,102,108,106,98,112,111,98,95,104,105,115,101,96,112,105,111,98,129,101,98,103,111,106,111,95,94,106,105,110,93,97,106,100,100,109,102,106,98,88,116,107,112,117,110,101,97,107,87,97,91,105,111,100,96,87,100,103,85,103,106,94,103,113,96,104,111,99,103,118,115,101,100,109,108,104,114,95,110,110,100,106,116,97,108,91,113,79,104,103,107,119,100,111,97,111,119,113,104,104,105,105,95,110,108,88,103,106,106,92,110,98,108,95,107,96,99,111,104,101,108,106,110,97,94,100,98,111,100,99,106,120,107,108,106,97,108,96,111,102,121,102,101,104,92,106,99,111,109,98,114,98,105,99,111,102,99,111,103,107,102,105,112,100,108,93,99,97,104,107,108,105,102,101,98,94,77,107,110,98,105,97,101,108,108,106,110,110,117,107,113,103,101,119,103,96,114,108,108,102,107,110,104,109,120,103,110,106,101,112,109,99,107,116,104,109,123,104,104,118,109,89,117,102,110,113,91,109,106,102,99,103,91,113,105,99,105,104,95,109,96,106,113,91,110,96,108,112,95,91,116,101,118,99,114,73,100,113,102,107,104,89,102,106,102,98,102,124,110,103,98,113,102,99,103,112,110,114,108,107,119,115,103,109,108,97,104,104,82,105,107,100,113,111,111,104,103,100,104,110,102,95,118,119,108,110,102,106,102,104,114,103,94,93,95,99,105,90,103,98,96,97,92,98,109,97,98,103,105,106,107,112,94,94,120,109,115,99,101,101,97,107,97,104,109,110,110,106,140,105,105,100,101,108,110,103,108,103,102,89,100,102,110,108,108,114,106,102,103,112,113,111,96,108,100,112,111,101,102,99,103,100,119,123,120,108,102,104,109,105,99,98,119,104,115,109,107,99,99,113,109,123,104,103,100,113,103,110,109,99,116,106,102,113,98,115,109,98,108,100,96,102,101,135,106,112,104,108,106,98,105,112,103,105,101,107,96,112,112,100,104,102,116,108,104,95,111,111,103,113,103,104,111,102,104,113,97,109,101,103,115,107,111,98,100,104,99,74,119,107,106,104,92,106,94,97,114,107,106,96,104,104,121,103,119,104,105,91,97,109,107,101,124,114,107,109,100,105,104,106,115,103,105,104,115,113,117,105,106,113,81,94,113,114,121,97,102,136,99,100,117,103,93,109,115,102,109,109,96,94,121,106,111,106,112,102,83,101,104,107,109,101,110,118,101,101,95,102,94,103,111,99,107,106,104,103,105,109,110,102,92,102,102,99,94,104,115,93,103,86,101,100,106,108,101,101,96,108,102,107,100,105,108,109,99,106,99,102,114,109,104,100,116,115,98,94,104,119,100,106,109,105,111,100,104,102,108,112,108,104,106,111,105,100,100,102,102,103,81,102,106,102,104,105,95,104,106,108,95,92,88,98,109,101,109,136,105,104,97,104,110,104,105,104,105,99,109,105,101,95,92,105,94,98,102,100,101,102,112,105,110,123,102,117,103,99,109,116,93,97,120,99,113,110,96,117,114,109,103,91,110,103,123,107,107,97,93,118,110,99,102,102,95,109,115,106,104,99,104,125,108,101,104,98,112,118,105,100,101,114,101,115,116,91,104,108,115,108,102,101,112,105,105,135,98,105,107,101,97,105,103,99,107,102,104,116,101,100,100,97,103,98,103,96,111,91,109,105,107,94,107,113,106,107,102,98,100,102,112,112,103,96,108,106,110,102,100,107,101,106,109,108,112,91,90,102,96,121,115,107,100,101,108,109,94,104,98,109,109,99,103,101,111,100,107,103,127,108,97,108,105,127,99,106,107,106,99,110,95,108,102,117,105,106,109,108,104,109,101,92,98,110,99,116,113,108,105,95,95,110,123,98,103,109,112,104,99,106,106,107,99,107,99,99,109,103,107,102,113,101,109,113,106,104,103,109,109,98,108,107,97,109,89,99,106,96,109,100,91,98,102,91,105,103,106,104,102,115,102,108,114,111,112,104,105,95,113,91,110,108,109,106,107,98,83,116,94,102,115,98,111,116,98,109,106,107,97,114,101,109,116,109,107,101,99,112,114,129,95,97,95,104,106,100,102,104,100,97,95,114,108,92,99,109,109,98,107,82,106,90,90,103,84,113,110,105,108,102,116,94,89,104,104,105,105,108,99,103,92,108,113,107,98,110,114,104,96,117,105,102,93,92,98,106,113,96,117,103,99,115,88,87,103,110,94,84,99,103,120,109,101,69,95,99,104,112,103,100,109,113,114,102,109,110,103,83,114,116,120,103,101,106,105,115,91,135,96,104,92,109,108,111,107,113,91,101,94,103,113,101,109,105,99,98,104,106,108,98,87,102,101,105,105,103,97,104,103,123,105,109,106,112,102,92,95,98,105,105,103,110,98,109,112,113,96,99,99,102,105,111,110,96,100,91,103,113,111,108,108,100,99,98,98,105,97,98,65,108,104,102,97,106,100,102,104,104,115,103,113,95,115,98,104,105,113,116,117,108,99,90,122,100,103,106,95,107,98,99,90,109,97,103,101,104,108,109,101,106,104,107,99,103,104,101,110,90,94,90,109,105,108,111,106,99,113,102,103,98,102,99,99,97,97,104,111,103,113,101,103,97,123,88,102,117,107,114,105,106,111,106,106,109,93,106,94,98,103,101,106,103,103,92,110,105,81,100,92,113,96,93,107,118,105,98,104,102,111,102,114,102,99,107,103,107,89,105,102,110,100,121,109,103,115,89,104,103,92,112,107,95,102,109,112,100,111,109,100,94,97,102,95,103,99,95,104,102,106,108,99,102,115,101,106,109,89,120,108,106,96,100,102,113,102,91,105,103,111,119,118,104,104,107,111,106,111,102,102,101,113,110,107,95,93,104,107,105,85,95,95,91,96,105,97,98,96,95,96,106,102,98,106,112,113,98,99,87,117,113,79,102,84,97,102,109,109,117,106,104,118,98,106,101,111,91,120,118,99,112,102,104,102,101,104,113,94,105,105,102,104,99,105,101,104,115,94,122,93,103,101, +518.7428,93,102,92,115,92,98,99,101,94,112,87,103,95,92,108,108,69,103,104,92,102,105,101,113,109,113,98,103,107,112,110,105,113,97,104,106,105,120,102,94,103,112,99,115,109,103,102,108,95,99,105,106,114,94,101,107,106,109,99,92,99,94,99,107,91,109,83,109,132,104,111,108,100,102,91,113,95,98,107,105,116,108,96,109,107,106,108,81,106,93,93,114,97,113,99,112,111,105,91,108,98,71,91,107,114,103,100,92,111,99,95,110,101,109,99,124,106,102,121,95,100,106,99,107,96,100,98,104,111,104,111,103,101,112,103,109,101,114,103,109,100,111,96,100,115,93,107,115,98,98,104,103,107,90,92,109,116,105,101,113,99,103,113,87,109,111,102,107,100,104,109,114,114,92,97,104,105,96,84,106,110,105,109,106,115,102,99,124,99,95,97,109,111,106,109,104,107,111,98,100,108,110,103,112,112,109,99,104,114,123,104,92,100,107,97,113,99,112,87,106,107,98,100,95,100,108,97,102,104,117,92,112,110,95,98,107,106,112,107,119,111,107,107,92,95,104,110,100,99,114,101,98,103,112,121,106,106,114,110,94,96,104,100,100,82,105,109,99,107,100,102,104,119,95,106,93,106,106,100,102,104,113,118,107,112,99,97,102,101,96,102,104,112,97,103,103,105,102,96,105,104,103,102,100,100,120,104,105,95,104,98,108,104,107,113,90,101,110,115,96,101,98,105,100,107,104,107,94,108,92,95,107,93,99,106,120,103,115,110,103,95,109,111,98,95,104,92,100,103,100,97,98,105,101,107,100,86,101,114,101,120,116,98,106,105,96,105,103,101,107,99,108,113,108,97,110,104,108,87,96,108,106,102,107,91,90,120,106,110,108,114,87,103,109,105,103,96,101,112,111,103,111,104,97,114,110,98,115,104,101,99,118,96,106,110,102,102,109,104,105,106,103,109,99,99,105,111,108,91,87,92,109,105,96,100,109,107,104,115,110,99,106,97,102,102,106,97,104,98,110,105,104,102,113,100,102,88,108,95,101,110,105,101,98,110,116,103,98,106,102,103,100,105,101,101,100,102,110,114,108,105,108,122,95,100,102,91,106,95,103,102,114,114,110,101,105,97,104,113,89,130,100,94,104,102,93,99,105,115,82,111,108,101,96,109,107,108,103,98,101,101,99,103,99,105,106,120,109,99,102,108,101,100,104,108,117,108,116,111,97,95,104,100,108,111,103,108,98,106,103,109,95,108,89,97,98,117,101,98,108,99,105,92,94,107,106,108,110,103,102,102,109,101,102,106,112,106,101,105,105,94,108,102,99,94,106,112,113,103,96,112,107,102,113,100,106,103,101,105,94,93,105,98,98,112,108,102,101,91,96,103,91,106,96,109,105,107,98,123,107,117,104,108,113,87,82,96,103,104,117,98,107,104,98,95,102,103,90,98,105,101,119,94,95,101,111,86,108,90,113,95,114,110,109,96,115,103,104,105,106,106,114,104,112,102,96,99,105,119,110,109,107,96,100,104,104,103,107,99,92,107,98,117,97,100,97,73,99,101,109,108,110,89,112,105,113,106,98,100,95,105,101,109,110,95,112,106,101,89,108,103,96,112,97,109,117,95,107,105,93,104,100,103,119,98,104,98,105,98,104,107,98,100,106,99,108,102,106,111,101,98,107,109,102,95,101,125,109,98,101,107,96,110,103,98,105,95,103,112,115,96,104,99,102,92,107,98,108,112,132,99,109,104,100,109,113,103,99,108,91,112,109,103,98,98,105,109,118,101,101,104,95,100,109,101,108,105,113,105,94,109,115,98,104,96,87,96,108,117,105,110,112,106,104,106,105,109,104,104,101,106,109,117,106,110,109,111,101,105,104,109,89,109,104,103,100,104,110,117,113,104,105,115,96,100,106,94,108,102,109,94,99,110,107,92,113,109,101,107,102,103,101,108,94,105,121,94,103,109,103,99,113,101,98,102,104,107,103,94,105,106,108,116,100,97,115,99,105,114,117,107,102,101,107,99,109,113,99,99,128,99,108,96,111,128,108,104,93,99,95,112,104,112,103,107,86,82,105,112,112,104,106,103,107,121,104,113,114,84,107,106,113,101,110,105,104,104,95,108,98,121,107,96,114,112,84,111,91,104,104,100,103,103,108,101,106,98,112,97,99,102,109,115,98,109,92,92,111,105,114,99,96,106,98,93,98,102,103,106,113,90,111,103,99,116,117,99,96,91,107,108,82,100,97,101,101,95,87,101,105,98,96,96,110,105,111,113,102,112,122,106,113,118,73,117,103,98,116,101,100,114,116,102,99,90,97,102,108,105,105,107,100,109,103,122,102,100,96,101,89,105,92,106,107,98,95,92,104,95,106,104,99,98,111,111,102,106,100,106,102,101,106,99,111,101,107,97,101,108,99,101,106,108,102,104,98,116,88,97,105,104,106,91,103,113,104,115,98,112,98,100,84,105,113,109,108,108,99,113,119,106,90,107,100,101,108,95,95,100,125,129,113,107,107,99,112,98,112,101,96,115,113,103,101,102,108,114,99,112,92,108,101,110,100,107,100,104,100,104,98,105,93,112,106,107,119,106,95,100,98,111,112,109,94,101,106,107,105,100,99,104,97,100,99,103,102,106,98,115,91,95,102,102,96,113,108,104,103,114,109,100,102,97,121,109,119,109,104,112,105,110,112,99,118,110,111,107,96,101,112,112,117,101,118,114,105,108,96,112,103,106,100,105,113,98,109,110,109,102,101,100,106,97,96,106,93,103,102,105,104,107,100,105,108,101,105,94,106,96,110,105,101,121,92,112,103,102,97,104,104,98,120,110,119,102,92,115,124,97,106,106,113,109,96,112,112,105,102,99,113,106,98,114,108,106,124,101,111,111,113,109,97,113,106,105,110,102,103,108,99,102,106,94,108,117,109,103,98,95,107,104,104,93,114,107,104,106,124,107,106,100,107,108,101,106,115,102,105,105,102,93,112,105,96,105,116,116,104,113,113,95,109,107,112,119,100,97,93,90,109,110,98,99,106,98,91,97,104,106,111,107,95,103,109,99,104,102,102,103,87,99,110,92,95,123,99,109,117,99,96,94,104,116,106,109,96,101,114,98,110,112,104,105,97,117,102,104,101,105,102,117,105,108,98,112,113,108,95,109,117,110,106,103,96,100,106,111,120,108,100,97,109,93,112,104,100,103,99,96,97,122,106,112,104,110,95,97,96,109,126,117,102,117,107,108,100,115,113,94,100,110,102,109,103,105,102,101,113,102,111,92,96,98,112,92,103,103,104,107,96,111,111,109,97,113,99,113,101,106,107,98,107,95,95,98,112,99,112,103,105,99,102,108,98,105,104,96,106,104,99,111,98,101,91,94,103,97,103,123,106,107,100,108,116,94,112,110,110,94,98,84,98,103,88,101,110,114,94,96,105,102,98,112,108,101,110,86,109,111,91,125,109,101,101,106,98,100,106,106,109,109,106,111,121,105,97,95,97,112,94,113,99,110,120,111,106,96,94,106,94,109,112,116,111,104,102,104,100,99,103,117,117,105,103,97,118,110,96,102,102,117,119,101,94,102,110,109,104,112,111,97,101,103,101,101,100,107,106,122,100,99,110,128,105,104,104,102,83,99,106,101,109,114,95,96,103,104,106,102,109,113,93,95,111,85,108,105,113,89,123,103,108,100,96,100,109,106,115,102,96,107,109,107,105,104,76,100,102,117,107,109,118,93,107,111,113,103,104,100,108,102,95,105,106,109,99,110,98,103,98,111,104,104,113,104,88,108,103,100,107,103,110,94,108,97,104,111,102,93,96,97,114,102,99,107,99,113,100,98,106,104,95,98,104,106,104,107,103,106,96,106,97,97,99,109,109,103,98,92,93,101,108,97,99,104,103,109,112,99,96,113,95,101,99,91,118,117,110,116,113,94,108,111,94,100,107,103,104,94,108,98,113,104,111,110,95,109,99,97,104,100,119,105,102,107,106,99,108,106,102,108,106,105,103,107,105,118,97,111,113,107,99,101,106,100,100,124,113,99,105,100,93,103,98,128,102,99,94,92,100,104,100,116,108,108,114,106,100,99,103,101,113,89,110,106,105,121,107,104,104,101,86,91,106,102,121,102,118,102,98,111,104,104,95,116,110,115,100,99,106,121,103,113,89,99,112,101,94,109,99,107,114,97,103,118,98,98,98,111,109,96,106,106,93,94,107,101,112,108,106,91,109,108,100,116,108,107,107,104,105,70,87,74,84,98,105,96,101,97,94,104,104,103,117,102,93,99,115,102,104,94,104,113,107,109,78,104,95,103,100,98,102,94,109,105,110,99,105,104,109,96,102,106,122,100,117,116,95,97,110,105,99,105,120,100,104,99,111,106,95,83,98,99,111,93,119,106,103,116,101,108,98,98,96,92,113,95,107,95,103,98,102,105,101,101,104,108,106,107,102,112,90,80,109,94,107,91,102,103,128,102,92,106,109,104,104,107,106,99,103,93,114,101,107,103,104,104,115,87,116,123,99,101,95,117,108,87,107,110,109,99,109,102,102,109,113,101,111,103,110,108,104,109,104,88,113,103,106,102,96,105,102,102,110,113,109,114,116,72,103,110,113,108,99,94,92,112,111,106,109,103,100,108,94,98,99,109,91,107,102,96,94,107,104,109,104,86,103,104,113,83,107,101,100,95,88,95,115,113,89,118,119,96,110,94,99,98,103,109,100,112,101,111,115,102,101,115,98,87,98,127,99,92,108,100,120,106,109,101,104,107,103,104,90,116,106,103,99,100,101,116,84,100,95,116,94,102,104,98,96,132,115,96,97,110,107,108,93,113,102,69,100,104,106,106,103,83,106,112,113,92,104,105,95,118,105,116,125,87,67, +518.88348,99,96,94,101,81,97,99,93,83,106,103,95,86,108,108,104,94,108,113,100,98,88,103,104,107,115,110,116,108,113,108,95,105,93,99,88,101,104,98,114,99,97,114,105,110,106,103,102,94,106,105,103,111,103,110,108,109,90,100,101,110,109,102,101,102,108,99,100,102,123,95,105,96,114,97,103,91,92,115,98,93,105,106,112,90,99,102,108,101,95,91,99,113,104,115,98,98,100,111,108,111,108,91,102,95,106,96,98,109,98,94,89,116,106,93,105,98,105,101,109,84,105,112,110,95,101,108,101,100,99,92,99,103,91,107,107,114,102,95,110,96,98,116,97,105,90,112,103,93,96,95,100,107,103,87,114,96,110,110,106,93,106,93,103,101,83,69,101,78,95,99,98,104,95,97,109,103,103,106,93,101,105,99,109,105,98,92,88,104,92,79,96,103,101,115,102,77,87,96,102,104,103,101,101,96,101,101,107,115,104,108,92,90,112,99,104,98,106,74,104,107,109,101,98,88,94,100,108,95,92,106,110,107,109,101,103,102,95,111,103,101,92,108,106,93,86,102,85,116,115,110,88,105,99,79,125,106,97,99,106,95,102,109,107,103,103,101,97,96,97,110,105,101,113,99,95,102,97,97,98,108,99,105,103,98,99,101,108,103,106,106,113,104,98,102,101,100,100,108,97,112,113,112,105,99,100,115,113,99,110,95,95,108,106,103,112,100,99,97,100,100,100,104,108,82,94,95,99,103,104,113,92,103,89,110,107,98,101,116,104,110,80,101,103,91,95,100,106,111,106,101,95,100,97,91,109,91,101,95,98,99,122,101,103,114,109,104,106,85,111,105,102,109,108,110,102,95,104,98,105,95,94,104,101,115,97,108,101,114,99,108,104,112,97,102,102,102,120,81,113,108,110,99,87,99,95,99,108,105,92,94,113,98,112,111,97,100,102,110,95,104,100,95,101,96,99,97,86,97,106,99,95,97,98,95,111,103,94,111,87,106,100,103,92,100,106,103,111,103,108,102,94,93,113,113,94,99,90,98,94,95,101,113,111,106,90,98,91,102,103,102,96,110,101,96,93,98,115,105,110,105,106,108,106,95,129,100,105,102,93,98,103,112,95,100,103,96,108,83,98,110,103,100,107,93,104,105,92,106,104,101,106,102,99,110,108,106,108,107,95,106,106,117,102,106,92,103,94,107,93,90,92,95,106,128,100,97,105,101,93,95,106,95,105,105,105,107,77,106,109,111,111,101,105,96,118,94,98,106,113,107,109,103,94,87,88,98,113,102,106,84,86,91,95,107,112,104,96,74,111,100,90,109,105,111,104,99,91,96,99,91,122,119,98,110,93,75,104,99,101,95,93,108,98,98,102,95,92,86,94,99,100,121,123,107,99,100,118,104,119,95,100,113,94,104,99,94,114,108,105,94,106,94,109,96,105,103,103,112,102,101,90,106,101,102,87,91,101,94,100,102,97,87,117,100,106,110,110,103,103,107,100,88,103,101,105,120,96,102,95,112,104,107,102,98,98,104,109,97,104,97,95,112,99,91,102,100,82,107,106,107,110,101,108,112,95,94,104,106,87,106,98,103,94,100,114,75,110,90,91,103,96,103,104,106,115,96,105,106,99,106,102,90,105,99,101,93,109,109,82,109,103,93,90,98,105,92,106,118,95,87,102,108,100,102,113,111,107,110,107,107,99,96,96,106,92,103,107,99,110,102,113,87,101,95,105,94,100,100,110,120,107,112,104,101,104,99,107,99,87,104,114,99,103,106,105,108,107,104,101,99,103,108,100,105,95,91,111,110,108,113,84,95,96,110,103,102,104,99,95,100,106,95,95,112,106,103,103,103,93,92,109,98,106,99,87,116,98,107,68,97,99,95,104,111,108,109,99,107,100,102,116,107,101,104,80,99,97,106,97,94,100,91,105,109,110,113,108,92,91,104,105,91,100,112,110,92,102,105,107,104,101,88,108,94,102,106,112,101,105,100,101,107,111,90,113,109,99,118,100,108,109,94,65,99,98,104,99,108,95,90,86,97,90,99,105,96,102,108,102,111,105,114,100,95,101,101,100,103,98,109,106,110,106,99,102,102,96,88,96,116,109,111,100,94,109,103,105,98,112,97,111,100,105,111,105,108,110,112,100,106,100,101,109,105,87,116,115,100,98,102,108,107,99,108,96,105,110,104,94,105,98,95,97,103,95,114,99,100,96,90,102,106,95,94,94,94,96,103,89,98,100,103,82,102,88,106,98,97,97,108,113,107,103,104,92,104,107,97,115,105,98,87,92,103,103,106,86,105,103,96,86,65,99,109,102,95,106,99,98,95,106,95,103,105,96,100,100,97,98,104,105,94,100,92,99,97,99,87,100,105,113,107,101,107,97,97,112,106,98,98,104,104,102,113,97,86,102,99,100,92,100,111,106,107,92,102,108,100,106,101,105,111,96,115,102,114,106,113,114,109,121,97,106,113,109,100,103,113,112,123,97,105,102,96,93,104,91,116,109,98,100,98,104,88,106,96,105,99,106,107,108,105,94,100,113,105,112,108,110,105,117,99,105,107,105,106,114,99,96,95,94,100,104,116,106,87,98,104,101,111,110,99,95,105,113,101,89,97,99,96,97,105,103,106,111,95,100,126,99,104,102,97,95,105,112,105,103,105,110,100,105,105,100,98,122,108,102,112,98,106,106,110,109,101,110,96,92,103,112,105,113,110,103,112,109,118,105,102,102,106,104,101,108,109,98,98,94,102,109,104,96,91,95,97,102,108,106,103,99,100,91,96,111,102,115,111,104,98,105,98,101,98,99,107,106,117,96,99,112,109,105,102,107,87,112,111,111,94,104,99,107,102,103,110,100,108,95,107,116,112,105,105,106,111,109,105,102,108,102,106,108,99,102,105,104,101,98,110,99,97,98,94,100,94,105,96,97,108,106,91,117,105,115,108,108,105,108,114,113,111,99,94,103,103,97,95,103,119,99,112,109,103,98,104,104,119,103,103,102,107,92,84,107,109,107,113,112,106,102,119,111,119,102,110,98,103,102,108,95,99,105,99,106,93,100,84,111,94,109,106,102,101,100,113,103,107,107,104,99,108,74,106,107,99,100,97,83,105,94,91,109,93,105,109,103,108,111,118,112,93,98,108,105,106,116,114,105,103,102,100,98,81,114,95,100,102,109,102,106,102,75,100,100,111,94,110,118,95,110,100,94,102,104,96,110,101,98,110,89,97,108,107,114,106,100,101,105,100,98,102,106,103,104,106,97,102,104,108,93,103,95,112,105,105,110,95,97,104,102,105,115,95,113,109,110,101,114,104,98,98,96,99,95,105,111,104,102,115,104,103,104,107,116,104,106,100,103,100,94,96,109,85,116,108,115,91,113,87,104,112,110,104,103,92,105,99,97,101,108,99,102,103,102,106,102,98,118,92,93,103,102,93,104,102,110,118,87,103,92,99,102,96,90,92,113,109,99,111,98,124,109,93,98,103,108,85,103,80,114,112,107,103,110,106,105,108,103,99,112,106,102,97,97,98,106,106,109,108,107,112,108,100,107,108,104,105,103,107,92,104,98,111,107,99,102,105,109,110,107,103,108,106,109,100,95,96,108,112,103,96,113,100,103,110,98,91,103,95,103,99,94,97,102,106,98,98,107,97,104,102,109,99,113,91,88,102,91,87,104,91,98,92,100,117,103,115,100,111,72,99,109,101,108,112,91,103,107,115,101,103,100,95,103,106,102,96,100,104,112,94,101,108,106,94,101,106,115,104,105,94,113,87,112,106,93,107,101,99,104,109,99,102,97,105,113,114,98,113,94,103,109,103,106,109,103,104,111,102,107,103,102,95,96,109,104,98,113,97,116,109,100,104,96,110,94,105,107,100,101,95,102,99,103,112,110,89,81,107,101,77,100,105,108,107,107,115,106,103,99,104,107,95,112,94,102,108,95,111,97,108,105,106,87,103,92,113,116,92,100,100,91,100,113,107,93,103,106,120,104,104,106,92,131,111,113,115,109,107,103,106,109,116,112,114,104,103,106,98,99,103,96,107,87,112,106,95,97,102,107,107,102,96,106,99,101,97,111,95,112,109,93,108,81,103,105,101,98,108,99,99,103,94,97,96,104,109,103,107,98,98,90,101,96,95,102,109,106,102,98,104,103,110,104,90,98,100,95,104,96,111,112,106,106,104,101,108,108,98,108,102,104,108,91,100,100,115,106,106,104,100,104,103,99,106,101,125,96,95,113,106,81,106,110,96,111,106,90,103,109,104,111,95,123,107,95,107,102,96,94,102,108,106,108,100,112,108,92,91,102,111,108,99,101,98,97,110,100,104,106,102,98,87,112,94,118,107,107,107,100,98,103,103,115,94,95,103,103,97,92,107,90,110,105,102,97,93,101,111,99,109,101,88,89,103,103,105,99,100,103,80,99,101,106,115,109,100,95,100,98,102,98,101,111,105,105,101,99,115,103,102,107,105,113,106,108,101,99,95,105,105,92,111,102,110,118,105,96,107,102,101,96,82,109,104,100,105,95,102,101,98,107,109,99,104,102,120,106,106,86,109,103,106,108,105,110,104,99,91,99,109,104,110,85,101,105,105,104,91,101,99,101,108,107,107,105,107,100,106,97,97,87,95,106,100,105,100,91,117,94,100,99,95,106,102,104,113,100,102,99,104,106,93,100,104,97,106,96,106,97,108,95,98,90,103,96,94,98,99,106,102,114,95,110,95,106,102,104,98,98,100,94,113,111,100,114,115,109,101,101,93,98,102,104,104,98,97,94,104,119,111,95,102,95,102,108,117,89,110,100,112,91,98,109,109,106,105,89,108,100,108,95,95,109,104,87,95,98,94,90,121,105,104,66,91,85,100,106,110,109, +519.02423,97,88,112,89,104,100,90,99,95,98,97,103,96,102,87,103,96,116,104,99,104,101,109,103,101,96,106,99,81,108,103,94,108,100,107,91,104,89,97,100,98,108,116,99,98,102,86,98,110,101,114,107,75,95,115,95,112,91,99,100,76,99,117,118,101,113,109,121,102,90,105,132,95,92,94,122,110,96,106,101,90,109,111,112,100,118,90,109,107,118,98,116,100,108,121,101,98,110,113,104,114,101,107,101,94,119,103,102,101,105,112,113,95,100,95,100,107,117,106,105,99,108,99,101,109,112,121,109,112,106,96,112,99,111,113,106,91,110,106,113,101,94,107,92,103,92,108,92,96,108,109,106,99,110,105,116,107,108,108,96,100,98,98,121,103,98,113,104,110,104,95,105,96,101,113,107,103,99,109,104,81,98,110,115,98,103,105,99,98,92,108,107,109,104,110,109,98,99,103,104,91,98,106,101,103,99,96,105,110,105,99,102,116,113,99,99,92,107,102,95,106,97,105,102,99,107,108,108,109,110,97,107,104,104,92,114,107,105,101,108,103,105,106,99,97,99,109,103,111,112,101,93,105,105,109,115,97,129,101,98,89,104,102,96,102,108,104,109,100,100,96,105,111,94,98,104,109,95,101,107,100,114,111,104,99,113,110,113,107,110,100,106,109,110,92,107,98,96,105,101,93,117,103,111,110,123,106,101,101,115,111,111,99,114,111,97,109,123,104,95,104,112,81,112,105,99,105,93,101,109,109,104,107,101,104,92,108,103,104,95,109,89,96,106,100,106,91,100,109,107,101,100,105,104,97,125,104,114,111,113,92,97,96,104,105,102,86,107,111,101,99,95,117,96,100,102,107,109,108,116,102,123,102,113,100,104,110,96,82,108,105,105,106,95,93,91,95,113,99,103,105,105,109,103,99,91,111,109,108,114,95,96,104,103,103,109,100,95,102,99,100,101,83,112,104,95,104,100,109,111,93,113,104,102,106,92,98,108,102,105,103,107,102,96,96,118,98,84,112,105,97,101,96,112,95,101,107,105,116,97,104,110,105,108,112,109,102,110,102,105,107,91,118,117,83,98,107,113,97,102,103,110,111,82,106,108,109,104,99,107,106,113,106,107,99,97,98,101,113,99,106,95,131,99,102,113,104,86,108,123,96,92,104,107,98,95,97,96,105,110,111,103,107,106,109,113,116,109,94,104,113,102,96,111,105,112,94,104,95,115,101,104,100,112,111,118,101,104,90,114,103,102,113,105,90,104,99,111,114,95,101,102,99,95,93,99,102,84,95,99,112,111,98,99,105,110,91,95,104,113,106,104,106,110,110,98,113,111,107,102,100,92,110,105,105,104,104,98,98,107,108,109,104,116,110,109,98,99,114,111,113,97,120,99,111,102,115,94,129,102,106,102,94,94,99,101,98,78,99,106,104,99,99,110,93,112,90,110,112,102,104,107,103,106,97,101,102,105,114,113,103,112,95,99,98,102,106,112,97,107,111,116,98,106,90,101,90,105,100,106,109,95,117,107,93,100,98,102,110,125,101,106,125,106,96,106,98,104,111,99,103,97,96,113,96,109,104,106,107,105,97,102,110,117,107,106,108,106,94,103,105,104,106,98,104,107,99,114,105,109,110,92,102,103,114,130,104,110,90,114,111,93,98,100,97,97,117,108,108,96,99,97,105,104,113,114,106,109,96,110,117,102,103,107,92,113,108,99,121,104,107,102,87,100,99,115,104,108,99,107,113,103,116,109,105,106,105,104,98,95,103,106,113,113,123,106,103,104,103,121,99,109,106,108,112,112,105,109,100,100,102,107,105,120,100,103,102,105,109,117,120,98,108,103,109,97,113,106,96,109,100,102,108,98,95,103,111,113,113,88,103,102,105,94,105,104,112,100,110,107,105,108,127,108,107,95,111,105,109,108,93,107,109,116,88,114,109,107,96,101,101,107,96,109,101,108,104,97,110,110,99,106,104,101,96,105,108,104,120,113,109,117,112,110,100,93,102,115,106,115,98,109,100,100,107,93,98,109,106,115,112,100,102,100,109,96,111,100,94,109,113,104,103,100,101,104,109,99,104,103,125,112,97,105,103,114,114,117,112,104,107,128,102,107,99,91,102,113,105,101,90,102,108,112,99,106,88,102,96,102,103,108,106,103,105,111,116,111,106,95,99,109,114,102,99,101,90,102,106,105,104,103,112,105,104,120,92,104,95,103,92,115,106,102,98,102,87,103,95,95,100,117,105,110,92,95,116,98,94,104,105,105,94,96,111,105,107,88,107,106,97,103,99,99,101,102,107,109,109,100,101,109,102,98,88,105,112,110,111,111,114,112,113,126,108,100,98,103,111,106,115,106,111,105,95,98,101,104,105,108,114,111,106,94,104,104,95,112,101,114,88,118,101,114,106,103,96,106,103,100,110,108,97,109,99,101,113,101,104,116,103,102,100,113,114,102,100,97,116,96,104,103,103,92,107,105,120,109,105,108,114,120,100,108,100,108,88,108,104,111,101,111,111,113,107,97,109,110,101,111,100,99,104,109,98,98,125,107,110,100,96,125,113,101,87,112,110,96,105,97,92,106,93,112,123,113,99,100,121,102,116,121,101,115,106,106,102,113,110,109,115,106,109,103,106,108,108,104,104,105,104,111,105,105,94,98,98,103,119,119,104,101,112,102,102,111,109,117,100,112,106,98,122,109,89,108,108,103,104,121,106,113,113,105,110,110,111,102,99,108,106,128,112,107,104,104,94,112,102,84,107,103,102,99,99,104,112,113,98,99,102,109,93,112,106,110,111,114,102,106,112,108,95,88,109,104,103,105,109,102,104,108,104,105,101,116,104,103,98,110,103,105,111,107,108,87,108,111,106,105,107,100,96,123,98,93,104,110,111,110,103,104,98,109,106,105,105,101,108,101,104,115,102,111,109,108,103,97,101,109,108,114,102,106,101,112,106,102,104,95,90,76,100,105,117,120,102,98,103,109,108,113,100,103,104,126,113,109,109,82,125,96,99,111,98,110,90,124,96,104,103,93,116,107,113,105,107,96,113,109,102,91,100,113,104,99,102,113,108,116,100,113,110,109,114,109,119,99,110,101,109,103,104,110,107,119,97,113,95,105,104,90,106,116,115,99,110,99,105,113,98,104,104,94,111,116,92,94,105,100,100,103,86,105,106,102,104,106,101,106,98,95,96,107,104,94,106,99,113,109,100,87,92,120,105,107,106,101,113,100,116,107,108,109,112,101,97,112,93,98,101,110,95,102,109,110,100,103,109,117,105,109,101,102,106,107,103,96,106,103,113,112,103,110,117,98,110,103,106,102,110,112,107,115,100,109,120,95,109,95,106,112,105,98,102,107,108,98,110,102,117,99,96,95,105,99,100,108,96,109,103,106,113,116,101,101,100,105,99,110,88,96,114,99,94,109,116,112,102,102,107,98,94,96,110,107,104,103,94,107,105,107,114,98,107,110,110,101,98,99,107,103,101,112,105,111,119,96,101,107,95,99,107,115,97,104,102,115,95,105,94,106,98,101,100,102,101,95,102,123,109,112,107,92,98,119,98,101,106,107,106,106,100,104,103,112,98,109,118,107,97,99,98,105,106,101,100,96,115,105,108,100,109,111,102,107,107,100,112,107,104,96,114,96,98,78,100,109,98,97,99,99,101,111,102,108,105,107,109,101,124,106,101,108,98,107,107,109,103,99,105,103,96,98,105,117,105,87,116,106,111,99,92,101,102,98,107,103,110,116,112,110,101,117,99,103,95,98,108,103,104,99,109,117,102,102,102,108,113,103,106,103,106,109,101,102,100,103,97,108,95,111,100,107,95,103,90,119,73,103,106,104,109,98,113,117,89,106,93,85,108,102,104,96,112,100,104,109,102,112,113,96,109,101,104,107,99,106,102,93,95,103,114,112,99,119,110,76,107,106,105,113,108,110,94,83,99,104,97,101,105,121,109,107,102,105,109,111,94,117,105,100,106,121,107,97,100,97,119,100,115,109,101,103,110,95,95,98,115,108,108,99,110,95,109,107,103,101,111,109,103,111,101,103,109,105,108,102,110,96,91,110,101,111,109,95,97,107,99,99,110,96,102,105,107,102,95,110,103,107,109,99,89,116,113,105,96,111,109,107,106,104,106,90,99,94,112,99,110,84,111,113,113,98,107,104,102,104,100,99,101,91,111,112,102,104,105,107,96,101,121,110,106,110,101,92,110,109,101,101,101,98,113,100,98,118,98,96,113,124,113,101,105,95,87,102,107,98,97,111,105,116,112,99,97,105,110,95,113,101,113,102,117,106,110,108,103,100,103,106,109,107,107,98,117,106,111,111,106,102,111,108,111,128,104,97,99,101,92,102,109,110,116,114,105,99,105,106,106,113,96,92,101,120,91,105,95,110,112,90,109,116,97,103,104,109,94,105,104,107,102,99,102,105,102,98,107,113,110,111,109,108,108,97,96,104,96,113,97,103,98,113,98,104,100,112,108,92,92,102,97,110,101,112,117,113,98,121,109,98,91,88,98,98,103,92,102,122,107,98,107,103,103,113,98,106,96,107,106,116,106,97,104,107,112,118,102,91,112,93,102,113,101,116,105,100,119,101,113,99,92,98,99,98,108,104,113,120,95,107,100,104,111,100,90,112,102,103,102,91,107,102,94,103,116,98,112,83,84,105,104,122,106,104,110,104,110,94,91,106,105,117,101,102,102,102,104,105,104,100,77,95,105,106,104,116,91,111,113,107,113,100,112,94,105,101,105,90,115,99,105,98,96,105,95,101,96,112,111,100,105,87,69,97,84,111,105,117,96,94,106,112,103,101,97,108,111,109,109,107,99,102,103,106,107,93,95,109,108,96,117,95,101,88,92,103,91,112,103,93, +519.16492,113,97,97,83,109,101,96,108,93,99,97,112,102,109,105,98,102,107,108,90,102,106,104,102,100,108,98,102,118,105,113,100,108,115,105,106,105,102,105,102,96,100,114,92,106,98,99,122,98,105,101,93,109,93,103,98,104,101,118,99,114,113,99,96,105,102,76,98,113,108,97,109,110,98,97,103,91,107,91,101,109,101,105,107,107,92,98,95,75,104,99,108,109,99,80,107,114,99,95,95,108,94,101,97,93,103,86,107,108,95,110,108,114,106,101,105,129,99,104,95,110,105,98,109,111,116,98,96,105,108,115,107,108,96,100,107,93,94,95,105,110,98,106,105,100,90,115,103,101,105,96,103,112,88,105,102,106,129,110,98,108,102,105,104,104,107,112,108,102,100,105,111,101,101,115,99,100,96,107,96,99,113,100,92,105,91,86,86,99,101,92,110,109,113,107,111,95,108,110,98,110,96,104,104,90,104,109,116,108,106,94,110,114,103,104,114,102,110,110,98,103,107,103,102,106,107,99,110,93,97,99,109,108,104,101,104,101,109,112,99,87,110,111,103,111,106,93,107,109,104,99,82,97,105,101,104,107,103,93,94,104,98,112,108,100,107,105,107,93,109,91,88,111,97,100,128,97,120,100,101,111,135,104,95,111,104,104,110,76,113,90,104,114,114,106,108,111,105,107,112,94,107,102,111,95,109,108,100,89,105,96,101,106,103,97,106,95,105,100,102,117,101,102,113,99,109,108,101,106,106,111,105,117,100,110,112,114,95,99,98,103,102,104,96,119,107,90,106,105,111,92,111,106,101,100,111,111,97,112,111,83,97,113,105,109,104,106,113,107,109,108,99,111,109,109,102,100,110,105,109,111,107,109,105,107,116,105,101,99,112,98,106,99,111,103,121,118,99,99,115,106,110,107,104,89,105,96,106,109,103,103,105,87,90,100,103,99,97,106,103,97,98,104,112,113,96,96,102,103,105,117,105,108,98,99,105,100,102,109,108,115,106,100,109,107,106,103,99,119,111,97,105,93,112,108,107,108,107,118,103,99,116,108,103,94,107,106,100,106,96,105,106,94,107,98,108,105,109,100,110,140,114,118,103,95,106,110,109,99,107,118,112,105,109,102,112,97,105,101,107,98,105,110,104,105,114,100,99,114,110,120,110,98,101,95,102,111,103,100,100,107,101,116,106,121,106,112,99,100,104,131,109,92,97,106,111,104,101,104,103,109,94,104,101,103,100,104,108,94,97,112,107,107,108,101,110,107,103,102,104,112,109,105,115,116,102,110,101,111,109,95,103,92,100,93,105,109,102,110,92,111,102,121,111,101,107,112,108,102,101,119,109,108,113,113,100,107,111,112,104,92,103,109,105,106,117,103,114,102,111,108,109,113,109,115,104,110,109,106,103,111,110,113,102,114,117,102,114,106,104,102,91,109,109,98,97,92,96,119,107,112,106,113,111,107,109,96,112,99,106,101,101,97,109,111,110,114,106,105,109,101,113,109,116,105,102,107,95,106,116,102,91,116,99,97,94,113,100,97,100,91,116,118,107,100,110,101,106,112,113,108,109,101,110,107,101,114,115,110,96,105,102,99,101,106,98,108,103,82,112,108,103,108,101,106,109,110,112,109,105,109,94,90,112,107,103,104,100,108,107,115,109,119,110,99,107,102,105,117,103,112,101,104,105,113,112,105,104,98,103,115,103,102,110,74,126,108,113,113,118,103,108,100,105,101,107,94,111,106,105,107,112,97,114,112,109,100,104,109,104,102,106,113,103,108,113,122,112,106,103,96,108,85,109,121,99,112,113,122,105,109,98,108,109,117,105,110,106,108,115,109,106,100,100,98,97,117,111,99,103,101,105,106,114,101,99,114,101,113,105,112,103,97,123,84,103,112,109,116,106,113,109,113,108,98,105,96,99,99,101,99,102,104,100,105,110,103,102,103,93,110,111,95,106,122,102,85,99,113,100,107,116,99,102,110,106,110,93,100,101,106,107,104,103,102,120,109,112,86,94,105,104,110,116,89,103,101,105,103,109,102,98,104,122,112,112,102,98,105,113,100,108,117,107,100,92,100,102,104,101,97,102,121,110,100,102,114,90,107,109,102,104,112,119,107,103,104,104,119,106,97,99,115,117,119,96,109,109,103,107,109,99,105,113,107,104,119,101,95,99,109,110,104,103,110,102,105,114,111,106,100,109,87,99,104,107,117,95,98,110,115,115,106,104,110,102,107,98,92,100,110,98,105,114,106,106,108,102,89,101,114,120,92,96,106,89,99,108,107,104,104,109,113,110,113,104,101,99,99,101,98,114,108,93,107,97,100,90,111,105,104,110,113,100,105,105,105,105,111,118,94,100,103,102,94,99,99,103,108,115,103,104,108,96,95,117,107,113,113,122,94,99,110,105,105,105,110,102,97,101,103,109,97,105,92,102,107,113,91,106,89,100,78,106,102,111,99,91,120,103,102,113,99,106,101,106,106,104,100,92,106,108,100,98,102,110,110,104,106,101,102,106,117,110,112,98,102,111,107,98,113,113,100,106,97,106,97,113,111,102,109,117,111,104,105,104,114,107,108,94,96,100,94,113,95,111,107,105,71,108,104,109,109,100,104,93,100,106,108,108,110,103,105,101,113,104,107,102,105,93,98,98,103,112,116,106,119,111,109,111,117,101,100,110,109,105,106,106,85,95,113,102,123,109,96,110,97,98,105,110,101,109,134,107,104,105,111,107,103,99,72,107,107,107,81,106,113,114,106,97,107,98,107,101,111,118,104,119,104,104,99,92,113,105,102,109,112,110,95,111,91,96,120,101,100,98,105,110,99,104,108,105,103,100,111,102,97,108,98,103,100,92,113,116,114,105,99,105,112,103,98,100,93,117,109,98,92,95,110,114,111,104,108,95,112,110,103,105,106,101,100,113,105,91,97,104,102,115,106,113,104,104,101,109,109,96,103,109,93,94,105,104,86,104,94,104,95,108,105,103,111,105,109,101,105,98,102,107,109,105,112,109,104,116,108,108,112,110,117,114,98,101,121,113,98,109,104,103,110,111,103,101,111,104,88,114,100,108,106,104,119,105,112,99,106,97,112,112,102,103,106,107,106,101,107,105,111,111,112,132,115,96,99,103,109,101,107,105,105,103,98,101,99,101,103,95,111,112,100,106,113,105,106,115,118,113,103,109,98,103,102,102,101,103,106,101,107,111,100,104,118,106,105,98,91,96,103,91,113,95,96,107,112,108,110,102,103,105,82,106,94,102,116,105,121,96,106,99,79,91,99,104,106,119,107,111,108,99,110,106,100,90,108,108,105,103,119,110,113,105,102,106,104,103,111,108,111,113,101,95,101,88,105,111,106,99,102,100,94,109,113,100,92,108,98,94,103,101,117,94,99,99,109,107,113,109,111,116,103,114,99,94,105,99,102,99,107,93,101,108,96,102,92,99,95,104,95,110,112,97,111,113,114,102,106,101,116,96,117,105,116,108,102,98,115,106,71,89,102,100,115,106,97,109,99,104,114,104,111,95,96,103,100,107,97,122,95,115,106,105,110,107,98,96,99,110,115,96,121,108,103,102,105,101,100,99,108,98,99,112,105,118,110,113,113,107,105,110,94,111,101,106,110,108,106,90,99,104,107,108,77,106,120,117,110,106,98,115,112,94,109,108,105,108,93,102,114,107,94,91,87,99,98,110,112,92,110,110,102,107,108,112,107,103,114,107,107,105,105,101,111,102,104,112,103,130,108,110,106,108,110,104,110,98,113,97,110,104,117,108,98,136,100,108,106,89,108,108,103,110,112,105,106,99,104,105,108,105,109,110,108,105,115,95,104,101,106,105,117,100,113,106,111,118,120,99,106,102,108,111,109,102,103,99,111,106,104,104,98,104,104,103,119,111,106,96,106,102,105,112,106,98,108,99,100,101,106,99,96,96,99,116,99,106,101,107,111,99,102,111,83,112,102,103,104,110,109,99,94,107,106,104,106,109,109,108,92,99,83,99,102,100,102,102,101,96,110,104,127,97,117,112,112,98,103,106,97,113,109,99,105,101,105,114,96,96,114,84,106,108,102,103,90,111,108,108,108,105,103,107,101,100,122,110,92,104,105,106,114,109,105,104,108,99,105,107,98,99,115,109,105,106,104,101,115,105,127,106,94,99,110,112,111,110,121,98,101,99,114,98,117,114,95,86,114,103,111,95,97,102,109,109,111,119,98,99,99,107,115,94,102,107,103,99,83,118,102,102,112,100,107,105,106,102,113,117,106,106,86,105,99,113,87,102,120,103,93,106,125,114,105,103,95,119,95,96,91,109,108,111,108,95,96,115,95,95,111,105,107,99,101,106,121,102,98,103,113,124,98,84,124,112,115,94,105,103,104,109,126,106,101,90,102,108,105,111,111,108,117,104,105,123,112,99,93,116,101,103,109,108,97,104,107,122,116,108,83,103,113,94,118,103,97,102,124,111,107,104,113,111,107,97,101,116,107,109,97,108,89,108,99,109,98,102,109,105,105,110,104,97,96,89,108,112,106,94,108,103,110,97,110,104,108,97,109,102,104,99,105,104,100,100,106,107,105,114,105,105,91,97,112,98,102,111,120,104,105,102,108,100,105,104,102,112,105,111,108,118,99,103,96,113,115,103,105,104,122,95,98,102,103,104,96,113,106,106,106,109,106,93,109,95,118,113,109,108,121,109,100,103,106,93,106,106,109,105,102,86,99,94,102,94,96,110,104,98,98,110,102,90,114,106,105,108,118,115,94,109,113,100,95,98,110,103,110,98,88,102,106,93,112,99,109,100,111,111,102,99,115,78,107,106,103,104,92,103,92,91,106,103,88,111,99,105,99,110,107,110,106,109,121,113,111,114,115,114,97,99,103,103, +519.3056,110,91,98,95,114,100,96,90,88,102,109,102,98,112,106,103,110,91,102,108,98,102,90,112,103,102,109,95,99,106,103,101,91,114,103,95,119,112,103,101,98,71,100,96,103,105,108,104,110,109,92,111,100,112,105,93,102,101,101,105,92,110,95,113,104,112,117,107,102,100,107,104,95,100,98,110,99,111,112,109,92,110,125,100,105,106,103,103,92,93,100,102,99,91,115,98,105,102,121,107,101,96,99,114,110,113,101,101,98,96,104,100,111,109,106,109,93,99,107,109,101,107,100,112,102,109,101,93,110,108,89,104,117,109,106,101,101,115,91,101,100,107,100,111,99,100,107,100,100,102,82,103,104,83,107,91,113,105,111,108,101,108,104,99,101,110,103,108,109,103,108,109,112,107,110,100,115,97,99,101,100,102,99,109,101,99,97,101,112,108,98,112,108,104,95,102,111,96,105,110,102,101,103,110,100,102,97,98,106,117,100,108,108,108,108,104,97,103,114,97,108,112,112,95,96,105,110,104,106,106,101,109,107,110,110,112,107,104,102,95,103,104,121,106,99,106,104,102,106,109,101,102,99,109,107,117,99,108,95,99,101,105,102,103,105,113,105,110,116,100,109,107,114,103,114,108,90,107,108,117,100,100,103,130,107,109,101,107,101,107,93,102,103,111,106,107,104,108,106,113,112,108,113,125,104,115,109,105,105,91,99,120,107,108,113,103,106,103,106,109,115,106,113,102,108,105,101,97,119,125,94,108,111,104,110,103,97,99,106,107,109,94,99,94,120,108,99,108,113,108,114,107,104,108,114,112,117,105,121,111,106,104,104,102,103,100,110,107,99,118,109,99,106,96,114,103,102,116,98,81,119,114,89,87,103,108,108,95,99,114,107,117,97,120,97,97,95,99,100,109,103,92,106,88,114,104,123,113,102,107,67,97,101,102,115,103,113,108,103,98,101,108,80,116,112,102,108,103,100,115,104,107,99,96,111,96,96,118,104,103,114,108,117,118,109,105,95,111,108,87,99,105,112,101,113,107,96,107,105,117,110,108,102,99,103,111,109,107,99,101,109,122,105,110,105,100,104,108,109,109,107,107,107,93,108,105,109,104,104,103,110,102,106,116,102,99,100,102,107,96,107,97,103,99,124,109,95,101,99,70,107,118,103,104,114,106,101,107,95,106,100,100,108,107,101,100,110,117,106,99,106,108,117,106,101,101,108,107,102,103,106,111,98,111,114,104,103,105,103,113,105,128,116,109,98,112,107,103,107,103,93,106,104,105,109,118,97,104,108,84,100,101,80,122,90,102,102,107,109,103,105,100,109,102,111,104,96,100,104,104,101,103,107,103,97,117,97,106,102,105,111,101,77,98,96,104,95,102,106,107,89,103,96,110,123,111,113,100,104,109,115,99,130,104,116,108,103,110,116,114,104,102,104,105,86,108,100,96,97,109,104,102,100,106,109,113,104,113,112,113,119,105,109,102,104,103,107,118,112,107,104,107,118,101,104,112,107,109,103,106,108,98,107,110,100,105,104,102,99,99,110,114,109,97,102,105,94,108,109,112,113,107,100,103,121,110,103,99,115,97,85,101,96,105,116,110,115,106,105,105,105,111,109,102,93,108,103,100,104,101,98,101,101,106,106,88,124,103,96,105,110,110,99,109,95,104,110,98,111,106,109,112,119,92,107,112,107,115,100,110,110,103,110,96,93,105,107,115,100,102,103,100,95,113,101,109,94,104,107,104,107,104,117,108,109,122,103,106,99,107,113,125,110,109,108,113,105,109,106,117,116,109,103,119,104,103,109,109,111,108,108,101,103,124,106,116,108,101,100,106,112,91,99,95,104,111,109,93,111,103,97,100,104,121,89,105,104,122,105,103,100,106,124,93,108,107,108,110,101,104,100,106,106,107,99,98,103,123,102,106,116,110,91,105,110,82,106,105,100,106,108,100,104,92,97,115,92,112,119,103,110,104,106,99,104,110,108,109,103,107,96,88,98,102,81,99,80,125,103,104,103,108,117,101,107,101,96,108,117,115,101,103,105,110,115,102,112,106,112,106,106,110,116,100,107,97,77,108,104,114,94,113,117,100,104,103,114,103,105,107,104,112,98,94,101,103,117,97,108,114,118,110,111,107,83,104,91,102,99,94,110,96,111,102,115,104,106,117,103,90,112,106,103,108,98,111,114,112,106,96,109,99,110,95,98,110,79,106,112,99,109,102,99,104,100,102,99,105,91,98,108,114,99,106,106,126,113,107,100,105,111,73,104,108,99,102,110,97,101,69,101,105,112,99,90,72,103,99,108,120,108,110,73,105,99,107,96,117,102,92,107,111,109,104,116,98,94,110,105,106,124,100,105,128,93,90,108,97,101,111,93,114,95,103,92,108,114,99,103,106,89,107,101,114,112,106,104,104,102,99,101,104,99,107,98,112,100,95,101,113,100,102,99,93,113,98,103,92,102,103,87,80,107,98,106,93,98,104,122,105,113,90,110,115,99,102,91,108,107,100,106,122,104,115,95,110,104,99,95,115,105,97,106,111,106,108,92,111,70,105,94,109,98,99,95,102,93,108,105,91,101,101,90,105,101,107,105,99,116,107,108,104,101,109,104,99,110,107,97,107,108,98,97,104,110,100,101,107,95,87,94,84,100,95,107,99,95,99,111,102,116,103,100,108,94,111,100,103,101,98,104,94,102,99,99,101,100,100,114,109,113,94,111,104,113,103,101,108,105,95,94,102,96,100,119,91,97,105,100,128,99,99,112,95,104,103,104,109,109,99,103,105,81,102,99,100,116,106,98,104,113,113,106,107,105,102,106,102,89,105,99,92,107,94,102,102,104,114,111,110,106,113,105,104,108,108,112,95,97,120,110,98,100,113,105,102,99,109,112,105,115,100,106,89,102,104,104,110,102,100,99,111,101,101,104,101,105,101,101,107,100,107,93,105,98,103,106,92,97,106,93,107,106,100,103,115,104,112,101,98,100,107,98,103,116,108,88,108,105,95,104,102,99,104,117,105,100,101,103,115,107,108,112,103,100,84,114,106,116,108,106,109,109,103,106,109,104,128,109,109,101,110,92,108,106,98,102,79,102,107,99,107,109,108,114,101,106,105,94,103,102,100,97,105,107,108,101,98,96,105,87,98,114,100,106,103,108,120,105,109,115,87,78,105,109,113,102,95,93,112,102,103,101,109,107,103,103,100,95,109,111,94,99,97,109,90,110,101,116,106,105,101,102,106,105,110,104,109,98,103,111,109,98,95,109,101,94,104,98,87,109,109,108,103,100,102,102,100,102,118,96,106,79,109,102,103,110,99,105,112,107,120,122,98,108,107,98,110,111,102,103,112,92,107,92,98,100,110,100,112,110,111,95,105,109,120,102,108,102,110,105,86,101,111,95,99,99,109,106,110,97,107,101,101,110,108,102,112,113,107,97,102,100,94,94,105,108,107,103,99,92,105,117,108,100,110,104,108,100,113,106,100,94,111,100,102,94,112,98,111,112,108,113,105,102,98,95,106,107,122,108,106,102,103,113,108,107,105,102,115,101,103,120,109,107,106,100,99,110,100,105,98,91,105,115,109,102,103,104,107,80,97,102,107,102,109,81,100,107,107,103,103,106,95,101,100,117,99,113,102,105,101,104,103,103,103,104,103,98,109,103,100,103,104,92,109,104,103,102,108,106,90,108,108,104,91,91,107,97,96,91,105,98,112,112,104,107,91,99,104,97,85,101,104,108,106,112,106,104,94,106,92,113,100,112,106,106,95,116,105,96,101,104,109,105,106,102,78,98,102,109,100,100,103,74,107,99,98,102,106,101,105,104,102,98,100,87,112,110,108,112,108,96,103,106,110,106,104,103,101,102,114,104,95,92,106,109,95,109,94,81,103,94,111,92,95,101,84,114,96,111,111,120,97,77,120,116,117,93,95,105,107,107,107,100,99,93,93,106,91,105,116,103,98,107,108,102,106,96,109,105,103,111,96,109,109,95,101,103,106,103,99,114,101,104,100,109,89,105,99,107,107,100,101,103,102,98,98,108,98,104,112,108,107,111,95,99,111,107,130,114,97,108,105,117,106,88,116,107,103,107,102,104,106,102,107,94,110,104,109,108,106,110,102,107,98,108,106,103,98,105,96,106,96,102,106,101,94,102,103,109,112,112,111,107,100,111,110,102,111,102,91,100,98,103,110,103,104,107,100,100,76,105,96,114,105,102,109,100,106,108,105,109,99,95,106,98,106,104,105,102,102,111,97,112,110,104,107,105,107,100,105,104,103,99,96,107,100,104,106,124,98,96,100,98,103,103,95,109,112,117,101,99,96,106,117,105,101,110,107,94,92,104,105,96,102,95,108,106,109,106,106,107,95,109,104,93,84,101,107,87,97,110,111,104,99,104,99,101,92,114,97,99,109,99,100,88,83,96,110,99,107,98,95,107,103,108,99,107,90,106,98,102,126,103,102,102,80,97,106,96,101,115,96,103,65,93,96,113,101,105,108,94,110,100,113,103,110,113,99,108,106,105,107,104,92,99,113,96,113,91,120,113,100,102,112,93,102,99,103,110,89,104,107,103,100,94,108,109,109,116,109,94,104,116,101,102,107,98,105,123,95,105,99,90,99,106,94,106,109,104,92,114,97,101,102,89,102,107,105,94,101,105,113,103,99,106,103,116,100,110,120,103,100,109,104,117,98,103,106,93,99,100,108,110,98,101,91,91,121,101,104,99,111,115,100,101,105,93,108,108,123,101,123,100,100,102,102,102,108,95,96,106,99,98,98,93,99,107,79,115,100,96,104,83,111,92,102,109,94,101,116,102,98,106,118,108,106,109,98,101,103,113,97,104,98,101,103,100,99,111,143,103,94,108,95,91,109,94,102, +519.44635,103,96,100,94,98,106,93,110,110,94,107,113,95,113,104,111,104,104,106,109,96,110,90,105,89,95,106,127,111,101,120,99,100,102,95,100,104,93,104,87,104,100,103,110,96,115,109,95,114,108,91,94,92,108,100,109,82,121,107,94,107,107,104,109,98,112,98,94,112,102,62,96,96,106,93,100,103,103,121,95,95,87,100,111,94,100,92,104,108,96,109,91,105,97,113,94,77,105,94,111,109,93,100,104,103,100,101,94,88,100,108,110,111,99,106,96,112,130,102,115,95,100,105,117,112,104,108,95,114,96,105,113,120,104,104,97,103,111,106,115,108,105,108,98,104,93,104,113,127,98,114,99,104,106,97,101,107,97,96,113,105,115,107,104,102,116,102,98,106,121,100,108,101,90,106,96,106,100,99,101,100,102,100,106,109,101,101,105,95,101,98,95,103,100,109,82,104,88,104,104,106,105,108,103,105,106,121,105,99,114,94,114,106,129,103,99,99,106,102,109,117,114,104,118,96,116,113,114,110,116,108,106,107,101,98,109,113,103,105,111,87,107,112,93,100,108,105,107,102,98,89,102,108,92,109,94,97,117,107,100,101,96,97,100,102,105,99,104,106,95,106,105,108,99,104,97,96,103,117,113,111,100,94,92,99,101,84,94,118,94,95,101,118,109,106,103,96,105,107,108,105,109,92,108,100,114,107,102,109,113,95,108,100,81,95,104,104,96,101,108,110,107,103,103,95,98,99,83,113,106,102,106,109,113,109,107,102,106,100,97,98,98,96,91,105,98,105,114,90,102,104,105,99,99,105,110,111,115,94,103,108,96,99,91,106,103,100,112,106,102,102,109,104,106,108,111,116,95,92,104,97,110,102,110,117,99,106,98,109,95,92,101,104,97,103,110,106,116,104,111,98,90,97,103,108,100,88,100,109,121,97,98,106,98,105,91,103,113,103,100,83,102,111,95,102,98,103,114,105,107,103,93,108,111,98,108,104,108,101,99,118,116,94,104,92,125,106,103,126,111,103,96,111,110,112,101,110,99,89,113,100,111,103,97,106,110,101,89,116,97,107,114,111,107,103,96,110,107,91,113,95,104,108,110,105,100,116,107,96,104,107,109,104,99,81,103,108,100,102,102,113,108,104,113,103,106,97,107,109,94,108,85,111,91,102,103,114,104,101,99,98,133,110,107,108,96,118,105,112,100,108,105,111,96,95,106,84,103,100,109,106,104,104,105,108,103,110,112,106,106,102,102,105,108,94,115,106,112,81,95,110,100,94,116,117,75,109,111,104,100,111,102,105,105,100,108,96,95,105,111,97,102,109,105,103,107,108,110,87,103,100,102,103,101,116,107,107,110,94,98,104,109,117,100,112,89,110,95,112,107,101,102,115,100,112,98,102,106,103,104,99,103,97,101,104,111,88,90,97,114,109,113,101,112,101,107,93,101,109,106,106,100,101,112,103,98,101,94,108,117,108,92,105,104,99,117,105,114,103,109,92,97,103,99,96,113,97,102,101,92,105,96,121,114,108,107,109,106,103,100,110,103,102,88,99,102,107,111,131,96,111,100,95,104,100,113,108,108,94,95,111,95,113,95,108,115,105,122,92,97,112,107,97,104,103,95,96,84,118,100,109,103,73,104,96,106,111,98,115,123,108,106,96,93,106,105,96,104,99,99,120,108,105,105,113,111,103,107,107,115,108,100,91,102,111,99,93,115,120,100,106,90,110,103,109,85,104,99,109,97,101,119,102,114,105,94,91,107,109,107,104,97,124,101,111,99,78,105,101,116,103,104,100,114,111,105,96,111,100,109,76,98,109,108,112,99,105,109,119,94,113,103,97,104,111,102,108,109,107,99,114,103,104,116,104,101,108,111,108,105,117,104,99,97,104,111,108,110,90,121,97,87,110,93,104,104,79,95,104,101,108,98,101,116,98,109,111,92,95,105,101,109,108,99,99,107,105,91,113,92,90,103,100,113,94,110,112,88,111,111,108,105,79,102,92,109,86,98,98,96,108,108,110,117,111,105,112,95,104,108,106,108,97,95,98,96,113,96,93,103,112,96,101,115,117,96,104,109,105,107,103,99,106,104,108,86,106,107,100,88,114,103,106,94,99,104,96,110,116,110,117,104,103,104,105,107,95,96,110,97,112,107,116,106,110,107,106,105,94,117,109,114,116,93,115,105,105,105,113,90,99,119,87,107,91,102,114,103,99,95,98,109,101,94,97,86,96,109,109,103,117,90,104,96,106,102,101,95,103,101,108,99,109,109,100,109,106,112,101,108,94,113,111,116,101,97,117,106,109,98,105,109,101,104,104,111,118,106,100,100,107,96,126,109,116,94,103,96,104,91,105,108,91,108,102,99,114,103,104,111,90,115,96,96,100,103,96,107,114,118,99,112,113,108,95,98,108,105,101,105,100,109,97,99,96,111,106,117,100,101,98,112,103,121,112,106,99,96,97,97,113,126,121,92,102,107,100,103,110,113,97,110,102,117,107,112,93,112,98,109,105,111,97,103,92,100,100,113,102,103,108,99,110,106,102,102,105,85,119,100,100,112,104,98,100,113,96,101,89,83,102,99,94,102,100,104,105,105,108,100,106,95,104,116,99,103,97,106,105,102,105,102,102,100,107,113,97,104,111,113,88,103,113,96,93,109,97,113,93,99,103,105,106,95,116,91,110,102,95,116,92,98,112,106,91,121,97,105,100,104,109,110,106,103,104,95,110,106,106,107,113,104,100,112,107,106,111,106,103,96,105,79,110,101,108,112,103,95,99,105,110,110,108,103,95,111,110,107,104,106,103,116,107,95,95,101,103,105,100,108,99,106,101,104,93,102,98,113,101,111,106,97,106,114,105,89,96,99,106,101,104,110,117,116,108,95,107,102,101,106,109,99,102,101,100,104,104,99,106,106,100,99,100,94,109,110,107,75,107,90,106,98,82,112,127,99,102,103,106,84,96,95,99,106,97,108,115,108,99,98,102,111,99,109,81,113,109,107,106,108,106,92,109,92,105,100,107,110,94,104,108,107,106,102,100,101,91,102,104,96,111,103,114,113,103,107,101,117,108,112,91,117,106,115,120,101,112,123,93,91,118,108,99,112,114,99,95,122,100,107,78,99,114,114,95,103,101,102,111,100,92,117,109,101,104,110,103,99,98,108,112,85,99,102,105,106,110,102,100,114,102,107,102,108,94,102,105,95,98,98,141,107,86,99,103,106,107,99,107,94,114,114,100,113,112,106,97,109,98,107,97,98,112,97,103,107,103,78,108,96,102,111,101,109,103,121,100,95,93,105,98,99,102,111,113,117,104,97,102,99,105,100,102,102,122,99,102,92,106,110,88,112,88,107,106,99,96,102,116,99,110,104,101,104,106,112,102,99,105,98,100,91,110,107,94,106,113,107,107,100,91,100,100,108,106,120,113,98,96,112,98,110,106,100,92,112,106,111,101,101,107,95,109,90,96,113,105,110,115,107,107,117,106,105,98,102,105,101,109,104,116,110,106,117,106,108,101,95,103,91,103,111,115,112,98,104,108,108,104,105,108,93,97,99,98,92,107,113,125,95,100,93,99,99,104,105,104,92,99,105,105,105,111,97,99,92,112,109,105,113,97,103,90,100,98,93,96,102,116,96,110,94,106,115,100,100,97,98,100,109,117,121,102,104,94,106,106,110,102,112,101,101,96,102,92,104,119,105,112,95,104,102,101,106,110,96,114,102,106,107,118,92,110,100,100,103,106,107,102,98,108,101,98,110,108,99,79,101,87,102,112,102,99,112,112,103,104,117,112,91,102,90,109,103,108,102,111,107,110,90,99,102,109,94,111,98,107,113,115,103,87,102,98,95,100,98,97,107,92,106,106,96,110,101,101,114,116,106,104,105,107,111,104,95,99,90,112,91,109,92,108,101,103,114,107,110,103,100,104,110,101,100,98,111,102,106,105,103,101,103,100,99,107,104,106,98,112,110,97,106,93,104,98,102,108,105,95,105,100,112,132,105,106,106,109,115,121,100,119,101,99,109,105,98,113,103,105,100,104,96,107,100,111,106,105,101,95,106,109,98,108,104,115,108,104,108,101,105,104,107,103,116,91,100,94,109,106,109,108,97,100,90,101,100,103,110,95,103,98,101,108,97,97,95,97,98,95,100,76,104,109,97,108,95,102,100,93,110,105,102,116,99,108,106,111,105,116,99,96,108,113,99,108,100,91,87,104,95,103,109,95,112,106,107,103,104,100,106,108,106,97,98,106,104,96,119,95,111,93,105,99,104,110,97,109,103,108,98,109,112,110,103,108,98,100,101,104,96,106,106,111,93,113,95,99,105,102,114,107,104,106,112,119,99,63,105,113,99,108,116,104,103,118,106,84,111,108,100,104,98,96,95,87,116,105,109,96,99,101,104,120,103,99,104,96,96,105,96,100,109,109,112,101,106,100,98,104,101,93,107,105,109,104,104,106,119,94,107,95,102,102,107,90,106,93,107,106,105,102,97,91,94,104,126,119,100,90,98,102,101,99,113,101,91,96,109,107,96,103,106,94,105,103,110,100,107,102,100,97,99,96,90,111,102,99,92,110,107,112,102,96,102,116,78,104,94,109,108,102,90,110,101,87,96,100,107,110,94,96,105,111,106,107,94,99,121,110,101,109,84,101,116,94,99,94,92,104,105,95,106,111,108,96,106,103,96,101,102,103,106,97,98,98,105,95,115,122,99,113,103,93,97,98,106,112,105,94,107,105,108,107,102,78,105,109,107,102,101,76,105,109,95,117,117,104,111,95,106,77,104,111,94,93,95,114,91,106,117,106,95,112,99,116,104,103,109,106,107,93,77,91,108,109,91,115,108,105,104,96,99,111,108,102,107,105,103,99,85,70,101, +519.58704,100,97,98,109,102,101,98,97,85,102,95,109,87,102,102,108,106,100,98,90,105,110,106,110,103,105,103,105,112,93,100,92,120,111,101,111,104,105,119,92,94,104,98,91,96,108,106,106,110,100,101,97,87,103,100,103,90,103,112,89,102,115,83,96,111,93,105,99,102,103,88,107,101,99,95,110,112,105,109,88,106,98,96,106,104,86,111,107,93,96,99,93,104,108,84,110,71,101,81,101,95,94,92,102,103,105,107,104,102,95,102,106,104,99,91,109,103,112,99,108,117,100,117,102,106,121,97,96,102,105,104,106,117,113,98,99,104,101,96,104,105,97,99,111,107,94,104,102,99,102,70,101,103,92,88,135,104,108,105,103,104,114,113,111,105,110,104,105,101,97,103,108,102,127,102,117,99,113,105,116,121,109,103,113,100,108,107,100,106,98,110,122,106,103,101,106,108,99,108,110,102,99,96,111,94,102,108,103,117,100,99,89,99,102,102,102,111,103,102,103,94,107,109,108,91,109,101,101,103,106,109,121,104,101,102,114,101,106,97,111,100,102,112,111,103,114,94,101,114,109,108,98,99,101,104,108,108,110,105,95,100,128,111,99,105,103,115,102,99,106,105,101,109,105,95,102,98,104,98,95,87,102,120,106,85,104,97,104,105,107,96,100,112,108,98,105,99,102,103,96,102,106,109,108,97,107,104,117,104,101,96,115,111,102,103,115,117,100,105,105,104,97,99,101,102,101,99,107,100,104,103,107,103,98,113,108,104,104,102,109,96,102,100,87,103,107,87,111,115,77,98,109,98,110,95,111,108,115,104,101,107,105,98,102,100,107,102,115,100,109,93,104,115,115,114,109,94,98,98,120,109,113,105,107,97,106,103,103,109,105,111,92,109,114,103,109,96,107,117,112,104,90,106,121,98,95,100,108,101,103,87,112,105,106,100,92,99,82,117,114,104,91,99,114,95,106,102,104,134,100,106,104,104,109,96,101,101,103,94,105,106,106,104,113,101,108,96,76,107,108,88,100,110,104,104,96,105,93,111,101,95,102,107,97,103,111,107,101,103,100,100,102,111,105,105,91,99,106,97,97,100,104,105,100,102,109,105,110,86,99,105,103,114,114,99,101,105,102,127,97,104,108,99,100,91,105,96,103,113,94,108,110,105,105,74,119,104,104,115,105,109,101,107,100,112,109,114,92,114,112,106,110,100,102,112,115,110,113,119,100,105,99,102,116,102,102,99,104,104,100,104,102,111,105,98,103,103,100,100,104,104,87,105,96,112,115,112,102,107,110,94,108,93,105,110,106,102,108,112,108,108,113,108,95,100,114,107,118,106,110,103,107,104,104,112,111,100,102,98,101,107,103,111,98,105,126,104,103,102,96,108,71,114,104,104,108,108,110,99,104,104,108,113,110,103,102,107,94,103,110,98,109,106,117,105,98,106,98,96,112,89,110,102,98,103,100,102,101,111,99,95,105,100,106,98,109,100,114,102,100,111,109,113,108,107,102,100,84,117,106,102,114,108,102,94,104,110,98,101,99,102,107,108,100,109,103,91,115,99,113,87,113,102,116,120,101,107,108,105,107,104,96,110,112,109,109,93,114,96,104,105,101,99,102,103,102,95,107,99,93,99,104,91,114,98,95,95,115,106,115,103,114,100,101,91,110,105,94,97,109,89,109,93,102,112,95,100,105,106,109,114,103,99,105,107,108,100,97,111,107,95,113,99,107,100,103,101,94,81,98,104,102,104,91,99,94,108,101,101,93,112,100,117,108,102,99,117,123,107,108,110,113,105,104,102,97,105,96,115,114,98,97,100,109,98,98,98,103,111,110,122,96,100,100,114,104,97,103,108,100,107,110,106,99,97,108,111,97,101,115,106,121,111,100,95,113,119,95,105,106,106,106,99,100,108,98,101,108,98,103,111,75,104,108,110,97,101,105,106,105,102,106,97,114,123,108,98,118,107,103,110,114,106,105,101,91,110,104,117,111,101,106,103,102,100,97,105,116,99,105,99,97,105,112,109,100,118,106,100,112,100,101,108,105,109,110,110,105,102,109,98,110,107,106,100,97,88,122,91,118,107,104,105,109,107,103,102,113,112,99,99,107,115,102,99,103,112,105,107,115,113,94,109,116,91,102,116,110,95,99,99,98,108,90,104,106,102,105,105,111,118,105,93,99,99,97,109,110,93,109,103,92,109,100,103,106,111,101,102,115,96,101,103,99,110,110,100,103,104,101,114,94,116,95,98,106,112,117,98,104,104,104,98,118,107,97,106,108,95,104,105,99,110,103,97,102,105,107,106,95,91,107,96,100,96,104,107,104,114,105,104,107,96,98,103,106,109,110,108,113,119,103,107,99,91,107,103,104,101,105,93,103,107,92,109,107,106,96,100,109,104,112,100,98,94,74,93,111,99,117,97,102,91,113,94,94,110,116,97,100,102,95,96,103,104,103,104,104,106,85,107,108,108,89,87,91,90,103,93,100,112,87,111,85,93,106,122,99,105,94,88,104,94,102,100,102,94,111,103,102,104,103,98,105,106,103,106,117,99,97,112,105,98,104,96,103,114,98,132,91,97,112,97,107,97,105,109,100,115,113,107,98,78,117,102,108,99,93,95,120,98,101,103,105,113,103,112,96,95,95,109,111,110,101,105,107,107,103,109,113,104,100,103,103,113,112,101,109,95,106,110,110,114,111,96,97,117,99,99,108,109,95,119,106,116,109,108,102,107,100,117,95,101,101,114,93,103,123,99,107,108,108,107,95,107,97,109,100,97,100,105,112,97,109,104,95,108,99,98,113,109,100,107,102,108,106,95,132,92,101,97,116,112,106,109,106,95,107,98,92,92,89,112,113,106,102,103,97,101,104,110,106,94,109,119,101,100,112,107,103,98,113,110,103,106,106,102,111,109,98,97,109,104,108,110,122,94,93,101,105,103,115,115,107,102,128,91,98,115,86,103,104,95,98,101,109,107,104,99,95,107,107,91,100,92,95,112,114,88,107,106,102,99,110,113,111,103,97,97,117,104,98,104,97,105,104,119,102,115,103,103,112,101,111,109,113,103,105,107,108,108,99,113,106,103,107,113,106,99,116,105,113,101,117,110,104,106,104,102,104,118,98,108,104,92,106,99,94,95,142,113,109,115,106,110,104,98,103,107,104,113,94,100,109,94,105,102,95,104,95,98,100,93,109,104,97,108,98,108,105,97,113,100,108,98,101,108,111,99,111,108,103,95,121,104,102,106,113,95,100,98,105,105,99,98,114,101,102,113,106,112,116,98,107,94,103,98,101,107,99,120,107,109,98,114,112,98,115,112,87,100,106,99,98,94,105,106,104,102,106,104,111,104,108,102,106,98,98,93,103,103,105,99,100,97,112,99,111,113,102,97,100,108,105,103,104,93,101,109,110,112,97,96,112,87,110,109,115,102,109,103,103,101,125,98,96,114,116,101,104,112,96,102,99,110,111,98,111,101,109,106,110,93,108,117,95,102,107,95,105,107,98,104,115,107,99,104,87,100,107,91,119,109,109,109,102,96,108,110,106,97,103,93,112,98,106,99,99,107,94,96,101,99,105,105,104,110,108,106,93,101,106,102,96,99,105,102,103,108,100,109,104,121,108,111,111,120,104,112,106,101,111,106,123,93,108,99,105,110,109,89,107,101,114,94,96,109,97,99,99,110,109,106,111,102,99,99,108,100,101,102,97,91,95,104,102,109,107,108,98,100,87,104,103,96,96,95,103,101,136,87,101,116,109,111,102,115,103,108,115,110,120,114,116,112,115,115,101,99,103,109,98,94,103,107,105,111,113,106,105,92,107,94,98,109,97,114,106,106,88,96,110,117,116,110,103,107,106,115,115,94,112,121,95,105,99,108,103,98,113,106,103,108,121,101,103,119,105,100,113,90,93,110,123,102,100,103,112,108,112,100,104,97,103,105,97,91,99,96,95,105,94,108,102,100,107,102,91,97,103,104,116,105,102,97,101,99,112,112,99,112,104,99,111,108,101,108,103,111,112,108,120,98,112,107,99,105,98,100,113,115,91,106,102,102,105,107,98,108,97,99,104,95,96,109,83,102,104,108,103,104,99,99,106,106,107,114,103,103,93,102,92,69,106,112,94,106,105,108,95,101,98,91,94,98,126,95,95,102,138,98,111,115,101,105,101,102,103,109,109,106,103,90,118,104,92,105,95,116,98,94,93,119,109,103,115,110,89,110,95,95,101,120,100,102,107,93,92,103,105,95,111,117,99,91,95,107,101,101,116,91,115,102,111,108,106,94,91,99,102,108,109,109,103,98,92,113,88,105,106,113,100,96,102,109,116,112,104,102,105,93,94,99,100,85,116,107,110,117,116,95,102,97,111,113,102,108,105,115,108,93,96,92,97,99,111,98,108,103,109,118,107,113,104,103,94,97,90,117,107,120,105,99,99,109,99,102,107,113,105,103,98,99,108,104,102,103,97,104,106,99,107,101,98,105,91,100,106,97,97,104,106,98,103,103,108,101,115,106,97,103,110,101,93,106,101,96,106,105,96,103,115,109,101,102,114,107,110,104,96,88,96,102,108,101,103,97,106,100,108,102,116,102,102,100,96,106,109,90,105,109,92,97,88,90,112,103,109,94,98,99,108,103,88,100,102,103,95,96,108,105,103,97,108,103,112,103,119,107,102,106,103,107,113,98,101,105,99,93,98,96,115,101,118,106,94,107,103,100,95,95,88,101,101,101,94,97,108,93,104,79,93,116,114,129,103,95,105,114,107,97,110,102,96,112,113,122,93,112,99,109,101,101,103,103,109,94,95,104,85,92,95,101,121,88,108,104,109,108,89,116,94,128,104,99,102,105,104,95,93,108,96,104,120,106,96,104,116,128,89, +519.72778,96,107,111,106,98,102,115,82,93,92,95,109,96,116,123,104,91,103,100,108,106,96,98,105,108,109,106,106,107,100,100,88,91,94,101,106,107,90,97,98,103,115,98,104,106,112,97,110,81,109,105,103,100,102,114,102,91,99,113,117,110,105,108,103,99,104,100,106,89,107,100,103,105,96,90,120,89,102,102,117,113,104,104,104,108,105,130,104,101,103,92,103,112,96,108,100,110,91,112,104,89,106,110,97,95,121,102,111,105,108,98,90,114,101,105,101,102,102,101,103,94,107,98,108,115,106,96,102,108,109,109,99,120,112,101,96,97,100,97,101,105,103,105,100,95,116,104,98,107,106,91,109,100,97,106,94,103,100,98,110,93,99,118,106,109,111,95,102,107,96,113,82,103,113,105,93,117,86,109,108,110,98,99,113,104,90,96,97,95,107,96,100,87,114,106,102,100,108,108,104,100,99,106,113,108,103,98,104,113,102,94,108,100,110,102,99,101,104,113,103,101,109,108,108,97,107,105,114,106,108,113,103,113,96,86,107,99,113,118,94,101,100,107,108,107,106,83,95,111,100,108,105,100,105,94,94,109,110,103,106,114,97,110,102,104,111,100,101,100,130,95,88,110,104,106,104,98,97,101,100,114,108,104,94,108,104,100,108,84,118,95,92,124,99,110,114,105,108,98,100,101,85,120,105,100,125,103,97,112,113,98,130,96,116,102,112,95,99,110,100,96,107,107,108,102,91,95,101,107,113,109,114,109,107,99,106,96,97,107,113,111,98,105,98,99,101,113,103,119,107,105,100,104,103,105,91,109,143,108,102,106,97,109,92,91,102,114,91,107,102,112,101,111,102,107,101,112,98,94,78,109,102,104,114,105,101,104,105,105,75,106,101,104,99,106,115,106,107,93,117,107,114,100,99,104,95,105,97,111,98,98,101,111,116,101,100,99,103,107,100,111,96,105,100,116,96,107,77,100,100,88,103,106,70,101,110,109,105,108,99,109,99,102,71,101,107,120,106,110,108,109,100,109,114,100,96,108,100,117,87,91,108,101,102,109,107,92,115,113,94,103,111,102,108,102,104,102,109,95,110,98,103,111,107,107,102,100,96,102,100,124,107,108,121,101,109,99,103,107,100,115,102,103,109,116,103,117,108,102,95,103,118,113,90,100,103,112,109,95,117,109,98,105,102,118,108,103,106,106,99,104,99,109,99,104,102,98,102,102,110,94,99,103,109,108,97,112,98,104,95,112,102,117,103,103,103,108,110,103,88,108,106,104,108,103,108,102,95,100,96,112,100,98,107,97,104,100,100,102,98,118,98,103,100,100,106,108,96,103,103,109,105,96,106,99,120,90,107,113,97,102,103,120,91,104,105,96,108,111,107,108,103,98,110,104,105,103,106,93,100,108,102,106,103,117,99,96,114,99,99,96,95,127,112,81,116,99,97,113,101,107,100,107,99,96,92,100,96,104,121,101,105,107,110,109,109,106,112,99,115,115,118,107,104,100,115,108,113,98,114,117,104,125,112,103,101,109,106,113,102,110,91,96,108,103,102,109,99,101,115,98,107,112,101,99,101,107,107,103,105,118,104,101,105,105,108,104,99,112,105,108,93,101,100,99,100,106,94,110,110,100,95,99,104,99,92,110,104,94,109,116,107,104,103,95,94,106,93,105,86,101,94,110,120,106,86,107,110,91,112,107,99,99,97,101,110,101,109,107,93,103,104,106,104,106,110,86,116,109,84,78,92,86,104,116,99,118,110,100,87,106,101,112,102,109,117,99,115,114,109,102,107,106,104,112,109,116,106,115,96,112,107,97,108,115,103,111,112,104,113,99,106,98,108,103,93,120,110,92,97,98,110,88,101,107,114,103,108,121,94,103,102,99,106,111,110,104,97,101,101,110,102,108,104,106,112,101,95,98,106,107,106,101,102,114,113,97,93,103,98,104,97,90,107,113,103,92,105,105,111,106,101,110,133,138,98,107,104,107,123,101,125,100,110,100,103,106,118,111,104,101,113,84,124,113,112,95,104,94,96,113,99,109,97,117,96,103,106,114,103,112,113,116,90,107,94,97,101,90,120,95,90,105,109,97,104,116,105,103,95,126,97,105,110,83,104,108,98,108,102,108,106,96,113,81,99,95,98,103,78,103,97,116,108,115,104,113,109,98,89,115,102,114,90,98,94,103,87,91,114,105,115,83,100,111,102,104,109,117,107,108,108,94,103,106,111,107,108,112,105,110,99,107,98,98,102,106,125,98,104,108,104,109,109,109,116,105,102,100,107,102,111,109,102,96,119,102,109,102,65,101,102,103,97,102,95,98,79,102,108,110,104,100,100,105,102,72,100,101,95,99,100,97,94,93,101,110,113,93,101,103,103,104,103,111,98,109,97,103,106,103,99,112,97,99,100,101,102,110,101,92,108,82,109,103,106,100,103,102,107,110,95,111,109,105,104,101,94,97,105,112,104,113,97,93,116,94,108,101,103,99,102,110,102,115,105,105,100,93,110,101,109,103,102,97,101,97,133,103,110,108,103,101,96,101,109,112,113,113,99,107,120,105,106,100,102,95,107,102,96,105,102,98,121,103,114,110,106,109,119,76,95,107,101,103,100,109,94,98,104,114,98,115,98,113,112,112,104,109,108,104,112,109,103,108,104,104,110,103,95,89,103,102,117,100,106,118,111,116,109,95,101,105,106,104,104,102,109,113,116,101,109,99,108,110,101,117,104,109,105,113,107,101,105,104,104,105,102,81,108,121,111,110,104,108,100,104,107,109,101,103,106,112,110,108,98,113,121,99,112,105,112,106,92,99,99,109,110,108,113,109,103,104,114,101,96,108,109,98,105,104,102,106,113,110,105,103,107,103,96,121,111,113,109,101,103,108,101,99,106,115,120,121,110,107,107,96,110,110,103,105,114,114,119,113,104,100,105,102,108,104,97,99,106,118,105,98,99,92,114,94,115,93,98,103,113,105,106,98,105,109,112,111,115,110,97,118,105,105,104,111,103,102,99,92,101,101,99,112,111,102,98,100,101,106,106,104,98,115,112,106,98,106,102,105,98,107,99,116,108,99,109,110,107,105,105,97,82,105,101,112,102,111,109,104,113,107,113,108,106,104,87,100,104,105,108,112,100,102,110,105,98,110,95,107,111,109,113,104,119,109,103,103,105,99,107,114,104,101,102,102,107,95,109,114,101,111,105,101,103,113,109,101,99,111,109,101,103,113,111,110,96,107,95,112,103,104,102,97,101,104,102,104,93,109,103,112,101,103,104,117,94,101,108,118,104,108,111,105,105,115,111,99,116,107,107,95,107,110,97,99,99,100,101,97,100,115,101,100,108,101,92,103,101,106,97,112,116,79,110,104,105,108,101,106,112,108,95,104,94,96,105,103,103,98,117,108,107,111,103,102,101,99,113,113,108,96,120,113,97,111,108,105,104,112,104,118,99,104,102,105,96,118,106,97,111,72,110,103,99,106,113,98,111,94,101,114,104,98,119,106,98,103,132,115,109,107,105,95,107,109,99,95,109,102,102,101,111,109,110,121,87,110,110,93,123,92,107,122,102,105,109,96,119,105,113,100,106,110,94,103,112,107,112,102,105,103,105,114,113,100,106,110,95,113,85,95,103,113,120,105,95,102,91,107,100,108,104,100,105,127,112,100,108,99,107,100,103,101,99,94,94,99,105,110,88,112,109,109,101,96,102,107,100,119,110,100,106,105,104,100,99,106,100,117,100,106,96,113,93,101,108,104,105,106,94,100,109,124,95,109,100,99,99,115,91,100,108,106,98,106,109,107,113,92,97,113,99,102,99,102,105,107,92,104,108,94,97,88,100,106,97,104,116,110,116,117,103,91,96,105,100,102,105,103,96,98,104,103,111,84,91,108,111,100,103,109,100,101,109,104,102,113,90,105,94,111,107,102,108,104,96,107,97,103,109,113,123,99,106,109,104,108,104,109,103,109,103,108,114,118,98,109,84,114,112,100,106,104,112,116,109,110,104,112,109,93,104,108,107,125,106,92,98,109,110,115,109,106,114,111,98,98,87,103,110,111,104,97,106,103,110,107,112,110,117,94,108,108,104,106,109,96,105,111,113,105,93,112,95,102,110,96,111,119,104,116,102,103,104,110,107,104,119,98,99,112,109,101,92,109,105,111,115,103,111,104,107,118,102,108,105,105,104,103,103,100,98,105,117,113,100,98,108,100,96,116,102,113,106,97,92,103,101,119,100,104,111,104,102,99,110,102,97,108,102,96,106,95,105,108,110,114,103,106,101,83,105,92,102,110,113,112,94,103,115,111,102,106,95,99,100,98,106,102,121,100,104,103,104,109,116,109,110,100,103,106,106,94,113,107,107,106,113,109,105,110,102,103,98,96,86,103,120,110,98,109,110,104,116,123,104,106,92,95,86,103,110,100,116,104,106,104,102,84,101,95,95,103,118,105,109,104,102,109,114,102,97,98,101,99,100,94,109,104,108,113,101,113,98,95,112,122,107,117,91,109,93,116,110,113,105,101,101,107,117,107,101,100,125,106,107,104,108,101,114,113,113,88,100,89,100,103,100,110,111,95,105,121,97,91,99,95,98,122,102,94,123,99,105,108,73,98,98,102,108,105,102,109,101,99,101,104,106,89,103,109,101,107,107,98,102,110,107,106,105,105,100,104,92,124,102,104,104,117,101,91,96,102,97,106,95,111,108,97,98,85,101,107,107,118,92,95,98,111,104,109,104,112,105,102,103,99,104,94,105,128,100,97,109,103,90,93,96,104,97,95,116,85,87,90,105,98,98,118,108,113,136,110,115,87,115,108,110,102,94,105,90,104,96,92,97,102,106,110,93,83,108,92,105,108,86,110,99,117,94,136,97,101,97, +519.86847,89,99,103,88,105,99,103,118,97,106,95,102,99,100,99,94,98,103,105,115,108,108,82,105,107,114,104,104,100,108,90,113,96,90,107,94,114,113,104,103,100,119,101,115,102,101,94,108,101,99,104,110,103,97,98,100,98,100,100,85,101,112,89,105,101,117,99,100,88,96,92,95,101,114,109,108,111,96,109,107,117,102,106,115,96,96,103,98,115,71,108,111,91,107,111,107,99,103,99,102,105,99,98,110,106,98,100,106,104,95,97,105,106,113,103,82,100,103,117,94,114,111,105,110,117,105,102,100,105,110,99,96,91,106,110,105,100,102,98,94,89,102,89,105,107,99,100,109,107,99,101,104,98,85,97,110,101,97,110,107,112,108,108,99,103,104,95,108,106,98,105,106,112,100,100,118,96,92,113,101,90,100,94,103,77,97,94,84,107,99,102,96,97,93,109,124,106,94,108,99,120,96,95,109,104,103,104,100,98,128,96,101,107,100,88,105,98,116,108,104,104,92,109,96,93,108,105,107,107,107,108,106,106,112,106,108,104,114,99,112,125,99,118,108,100,107,101,114,99,107,117,106,93,103,117,116,102,99,100,110,103,102,104,96,103,73,112,116,111,96,108,106,113,95,98,91,104,107,104,117,99,98,120,101,103,105,94,109,104,104,110,101,93,109,104,101,113,101,101,110,100,126,107,98,102,104,114,113,105,117,93,118,116,103,109,116,102,95,100,103,105,97,106,98,101,106,113,95,114,120,99,109,106,94,106,96,115,100,107,102,96,111,101,110,100,103,102,99,117,115,103,103,109,97,94,98,101,109,103,110,94,95,103,106,97,110,103,100,114,101,99,102,95,110,117,102,113,98,108,93,121,116,103,116,103,102,102,106,107,97,103,99,98,112,103,107,116,99,75,107,84,108,110,105,114,100,105,113,107,96,114,101,99,109,109,103,107,102,108,105,105,112,102,102,99,94,107,107,105,116,107,103,103,117,107,100,99,84,99,98,102,110,94,88,104,104,101,101,106,108,116,111,109,114,111,103,100,103,116,103,106,108,112,109,97,103,86,111,105,99,104,100,107,106,99,99,100,117,106,98,96,106,105,103,102,113,98,89,101,101,100,114,112,102,90,122,105,115,104,108,95,108,101,96,98,103,110,114,105,108,97,108,116,101,106,108,98,104,96,91,108,96,112,98,97,110,107,112,97,111,113,105,103,104,106,101,100,113,114,108,97,110,98,99,115,102,103,104,101,112,107,100,102,113,106,104,108,111,108,111,111,107,101,108,112,112,112,108,115,90,98,100,106,101,115,108,100,98,115,73,111,106,110,108,98,107,115,102,99,113,106,111,111,84,108,112,103,112,106,106,108,107,103,109,97,103,104,94,113,103,101,105,119,126,109,110,108,112,98,100,111,108,112,83,116,101,113,115,96,114,120,102,107,99,116,108,101,105,111,110,111,110,113,103,109,107,86,103,100,102,111,115,96,97,103,137,117,107,103,115,107,117,109,114,100,105,104,100,106,113,103,106,115,99,95,111,101,112,100,110,103,112,102,83,103,108,111,108,107,103,103,99,99,106,117,105,106,102,101,100,99,109,102,105,117,120,107,112,98,113,110,109,105,111,98,115,95,114,113,105,84,97,105,111,99,103,116,109,103,114,112,121,98,97,105,99,109,118,106,112,116,98,111,118,110,106,126,96,112,101,111,114,111,102,108,99,98,99,118,119,104,124,99,118,79,116,106,101,113,113,110,97,110,104,105,106,105,112,99,97,113,112,98,104,104,88,107,109,132,109,107,111,109,112,109,105,96,104,100,107,122,100,82,104,103,118,99,121,123,93,107,110,116,97,104,129,108,112,107,100,114,112,114,105,112,104,113,109,104,101,114,100,106,103,113,101,102,111,98,102,104,105,109,99,99,109,106,108,99,89,108,104,105,104,101,108,104,116,96,95,100,117,103,110,102,98,99,103,108,116,103,109,112,94,100,111,103,108,107,104,103,111,103,114,102,115,100,118,108,100,108,103,115,93,121,101,116,118,90,105,117,99,103,97,108,106,105,100,122,122,112,117,117,111,113,96,102,104,103,103,102,108,105,97,96,105,112,116,109,101,110,106,98,102,96,112,95,114,108,112,109,106,115,98,101,105,99,103,108,114,104,100,105,101,109,113,73,100,107,100,117,100,111,91,120,93,93,107,110,95,108,106,100,95,99,106,109,99,87,101,99,110,96,99,96,109,105,113,99,103,102,95,101,98,95,118,100,113,97,100,90,93,98,101,116,112,111,102,88,110,90,93,96,115,108,95,110,113,103,110,110,105,109,102,95,84,94,101,111,101,94,106,107,107,108,92,105,108,105,107,106,99,102,104,106,99,109,89,101,101,105,121,109,110,105,95,104,111,122,109,99,108,97,114,105,98,102,99,104,110,108,105,98,99,104,110,98,107,104,96,98,108,102,75,104,107,112,74,105,102,108,99,110,100,88,104,101,103,100,111,95,101,110,92,105,116,101,86,113,103,102,126,100,99,97,94,112,105,95,110,104,112,115,99,100,109,101,88,104,100,102,116,99,100,93,98,99,105,105,108,114,102,95,96,107,88,85,93,104,117,111,106,111,105,103,103,108,108,98,106,99,101,100,94,97,111,104,105,110,117,96,99,108,115,104,100,107,99,112,98,109,92,87,110,121,99,109,94,100,107,103,101,102,115,110,102,113,96,102,107,101,103,109,98,106,116,105,118,100,112,100,113,84,111,117,109,105,83,100,100,102,105,146,103,101,105,99,116,98,99,100,113,89,113,103,106,102,107,105,100,103,102,101,95,106,101,101,113,99,110,101,120,107,108,90,107,108,114,95,121,113,104,81,113,107,78,107,107,101,101,109,104,102,107,99,99,107,110,105,109,102,108,108,96,117,104,102,106,102,95,102,112,106,106,95,112,117,100,110,112,114,111,113,107,94,102,94,98,108,92,97,111,112,94,105,118,112,98,107,103,113,111,103,117,115,110,96,108,110,103,92,106,115,103,128,106,99,100,93,117,109,102,100,97,96,105,114,95,113,95,97,103,102,103,107,99,113,99,107,93,96,134,102,99,114,113,106,99,90,110,107,108,102,121,106,104,109,111,101,100,94,98,104,113,106,103,104,107,113,98,86,110,100,99,105,110,104,87,114,99,108,103,105,105,100,102,101,101,119,103,88,109,117,97,110,103,101,102,95,105,96,91,95,98,119,89,102,99,127,101,108,116,92,102,114,110,96,112,103,112,95,108,99,111,117,109,98,103,105,111,104,106,91,107,106,105,100,97,104,97,116,103,98,97,108,109,104,94,104,102,109,103,97,96,107,111,97,105,107,94,97,91,107,91,105,116,104,101,95,107,103,102,84,112,98,109,100,108,121,105,99,106,107,98,95,111,112,109,103,93,101,97,103,94,102,109,106,102,104,104,95,106,98,98,96,110,105,107,107,94,99,105,100,102,114,116,91,105,99,102,109,105,94,106,107,96,100,101,108,93,106,119,100,108,108,109,102,120,101,100,104,101,99,106,104,102,101,109,94,102,109,97,104,108,120,103,103,104,103,99,94,102,96,97,108,107,103,108,111,101,97,108,98,110,102,98,104,97,104,120,104,98,106,109,105,107,107,107,110,117,96,101,97,106,98,108,93,121,101,110,105,105,105,76,93,105,99,98,116,96,96,98,109,110,102,101,98,100,102,97,94,109,97,101,88,93,106,99,115,97,111,129,106,100,102,111,95,108,99,103,106,94,100,108,102,100,101,132,101,102,98,103,101,115,118,101,117,110,105,113,110,110,111,94,103,102,107,98,79,101,95,107,109,101,105,123,107,92,109,101,103,107,113,99,94,117,98,104,105,103,93,106,101,89,105,95,104,103,94,99,104,101,99,104,95,108,108,94,99,103,111,102,108,94,94,90,105,99,100,109,91,109,98,103,105,103,105,108,98,117,98,116,105,113,103,103,99,92,99,108,99,94,92,102,109,101,95,92,109,109,102,113,95,98,93,100,107,104,100,92,105,96,105,113,98,102,93,86,108,99,94,104,101,100,106,107,106,95,110,97,102,108,101,88,110,94,106,86,105,100,97,112,113,112,104,105,104,105,101,88,106,101,106,99,102,109,103,118,107,94,101,100,99,97,99,113,105,99,105,101,104,103,104,107,86,113,91,83,101,106,98,117,98,95,116,96,108,91,104,97,107,92,105,98,107,102,99,101,109,99,106,103,98,106,92,109,95,105,113,105,93,131,117,100,103,104,109,90,93,120,101,94,111,99,103,90,108,104,104,119,97,110,104,104,109,94,112,105,102,121,111,106,97,110,103,91,114,113,109,106,107,105,100,102,109,97,108,106,101,100,101,84,101,102,95,107,102,106,111,95,86,101,108,91,94,91,104,105,105,98,76,113,113,104,86,87,105,111,97,104,99,81,103,104,108,108,95,105,97,109,96,99,95,100,94,115,100,110,101,104,98,93,113,98,103,97,114,102,90,106,99,107,97,94,113,108,116,108,100,101,91,81,108,93,106,105,101,102,91,97,106,109,97,96,99,110,106,99,87,106,113,80,109,108,101,110,100,110,102,98,93,111,97,102,113,113,100,99,99,106,112,92,108,96,110,94,104,94,98,102,102,105,105,105,101,88,99,110,118,98,102,92,95,107,119,111,101,106,102,91,102,100,114,99,103,104,102,92,100,91,72,98,100,114,118,117,105,99,109,102,107,89,103,115,92,101,90,105,105,94,107,96,106,108,103,106,102,101,106,101,100,118,114,98,107,100,102,104,105,94,103,65,100,118,113,103,97,99,111,105,101,104,109,98,95,104,87,95,102,94,110,101,96,114,97,101,99,109,87,105,104,109,106,113,98,102,100,102,104,92, +520.00922,104,91,96,102,107,111,100,113,123,111,111,115,98,103,100,97,91,104,78,99,90,93,106,103,99,100,98,118,96,113,111,118,95,90,103,98,108,91,104,101,100,108,83,101,102,106,105,106,104,120,116,104,114,95,114,102,108,104,104,108,109,105,98,112,108,106,87,102,103,100,119,93,99,105,103,111,107,98,111,124,109,99,101,97,119,105,101,99,92,105,77,112,103,102,98,98,117,104,114,109,99,101,94,92,95,112,94,115,97,102,107,111,114,95,95,112,102,99,111,104,102,116,95,103,97,107,109,107,106,117,104,112,102,117,97,106,100,117,93,97,103,99,96,102,100,98,101,103,107,89,104,104,117,103,101,102,105,102,98,99,108,104,102,99,135,124,108,102,107,105,100,102,112,100,100,109,107,90,100,106,86,106,112,123,98,110,99,108,108,104,101,101,117,99,90,87,103,97,103,110,109,103,115,112,119,108,106,103,117,114,102,106,98,110,110,109,105,105,104,103,109,105,114,89,100,108,115,114,111,98,101,105,128,117,109,109,100,112,105,82,101,98,119,95,107,115,112,104,105,102,98,101,98,91,95,114,104,111,92,98,97,104,98,103,75,129,101,101,98,102,108,97,107,114,110,94,94,95,100,98,109,105,113,99,106,105,101,110,83,78,104,98,108,132,95,99,112,105,111,105,121,108,106,88,110,100,124,108,102,108,109,118,122,118,103,105,99,100,110,110,102,97,108,111,106,107,105,96,107,104,103,101,105,107,108,114,110,108,83,116,96,121,100,102,111,103,101,109,112,116,103,106,98,105,104,104,75,113,114,106,98,97,103,102,105,94,109,107,92,103,106,108,104,109,117,104,94,102,106,99,108,111,110,106,99,96,102,109,103,93,105,101,105,120,99,101,110,92,96,108,91,113,111,96,103,96,107,109,95,106,90,108,93,106,96,110,104,108,112,98,101,99,112,109,110,97,105,104,94,107,94,113,121,103,108,106,105,103,106,95,96,103,106,104,97,103,110,97,106,99,109,110,108,114,106,94,105,102,103,116,108,98,101,107,107,104,95,109,99,101,131,104,105,95,99,102,107,116,99,102,94,120,101,101,96,97,125,101,99,102,101,107,83,136,104,96,105,104,99,105,113,110,105,105,75,105,92,118,110,103,121,106,101,111,111,100,105,112,108,112,104,98,109,106,105,99,124,109,97,103,106,104,112,108,99,99,114,113,102,122,95,104,111,107,122,108,106,94,102,112,90,114,104,104,108,99,97,97,104,102,109,110,98,101,103,103,122,108,106,101,99,115,98,105,112,103,101,109,105,103,105,110,107,103,137,106,106,101,104,97,105,108,118,110,112,113,103,100,112,104,110,108,103,101,90,99,97,101,92,104,98,105,107,98,98,105,128,106,104,99,94,102,110,101,81,105,114,99,103,112,103,104,97,110,99,109,124,96,112,112,108,115,108,100,102,106,102,102,107,121,111,115,107,105,96,109,113,118,113,117,109,113,101,107,107,101,103,97,106,95,104,109,123,106,101,108,101,106,105,106,107,112,117,98,100,98,91,107,108,96,111,104,103,112,112,103,92,108,105,104,99,94,105,107,95,102,106,103,109,96,101,112,103,110,100,98,115,98,99,105,103,101,97,106,93,78,98,110,95,109,109,111,107,104,97,111,109,97,96,106,109,102,101,107,106,102,91,98,107,106,117,104,97,109,112,119,112,99,93,108,107,109,99,91,103,106,102,110,109,106,98,102,106,91,114,112,107,94,122,108,109,108,109,114,97,80,113,113,98,108,69,120,106,105,114,97,107,102,109,102,99,96,92,109,120,120,108,102,87,92,105,94,90,106,111,107,107,102,110,113,102,102,117,120,108,103,100,106,117,103,115,110,104,99,112,101,125,92,108,105,110,107,106,110,109,110,104,108,107,109,100,106,108,102,97,104,100,101,112,101,101,108,113,107,113,87,98,91,109,107,103,103,102,119,98,99,112,103,105,96,100,95,110,106,114,101,106,106,113,105,108,116,102,106,108,114,104,99,102,102,113,107,96,91,92,107,100,94,94,108,113,111,98,101,108,110,96,109,99,110,103,106,116,99,113,114,98,109,96,109,105,128,108,102,91,105,106,110,95,106,106,101,114,113,100,100,105,103,107,106,103,132,103,94,101,102,108,104,79,109,111,90,115,99,102,107,105,101,100,103,96,99,113,103,113,102,118,108,88,100,118,111,90,105,94,109,113,99,90,100,110,91,97,94,99,98,98,100,103,101,98,102,101,100,108,109,104,101,105,103,102,105,97,127,105,108,99,103,94,100,104,99,101,100,111,92,114,115,109,106,113,114,110,98,97,98,110,109,104,104,120,107,89,98,97,99,105,120,92,96,100,108,102,108,105,103,101,107,104,107,88,107,102,113,108,95,101,111,106,96,90,110,97,95,103,102,109,105,106,99,111,107,109,106,115,103,104,106,115,100,107,103,104,99,79,103,119,110,96,108,101,90,112,101,98,112,109,110,95,104,120,120,99,94,103,103,96,109,100,99,107,105,116,116,97,97,119,101,105,89,101,115,93,105,106,94,116,105,101,114,111,110,91,117,105,100,110,121,97,95,112,104,119,107,112,110,108,114,87,87,100,82,106,105,109,106,69,110,114,107,91,103,107,112,91,111,87,104,109,108,114,111,113,116,110,114,108,108,107,97,100,103,108,103,121,103,117,124,105,99,96,116,105,100,99,96,97,113,100,107,106,112,104,109,114,103,108,102,107,99,103,110,100,111,106,118,107,120,117,107,105,84,99,112,118,110,129,136,103,100,82,103,110,94,103,115,105,92,107,98,119,109,118,115,89,98,96,120,99,109,95,117,103,109,103,108,109,105,107,102,105,105,108,109,111,92,107,103,101,103,124,108,112,111,108,108,97,102,103,101,104,106,103,101,108,117,103,105,106,100,110,110,112,117,100,100,106,111,105,104,102,109,100,97,112,105,128,110,105,105,101,102,109,97,112,115,112,104,97,99,108,124,109,116,102,118,103,112,99,115,113,110,114,92,109,98,109,103,101,111,96,109,94,113,112,95,108,112,111,92,122,109,107,102,104,97,105,104,93,108,102,107,104,109,117,102,111,117,94,109,106,96,101,98,111,102,100,117,103,102,101,95,102,107,112,105,104,113,98,106,108,115,108,120,108,105,96,98,120,109,109,105,104,108,106,89,110,96,96,116,116,111,99,100,104,97,104,96,102,105,106,105,105,119,103,108,103,106,104,104,94,95,113,118,111,108,103,96,97,103,108,102,104,99,95,113,100,114,93,97,106,101,95,115,105,112,92,98,106,104,96,112,113,100,107,113,110,96,98,110,104,125,101,104,110,104,99,97,103,91,103,108,121,108,91,110,107,111,114,113,109,92,101,105,110,109,113,108,101,116,118,99,104,106,124,103,101,107,89,96,108,107,104,110,103,99,100,108,103,109,109,117,85,91,111,109,106,100,104,104,111,109,109,113,117,97,96,106,98,102,106,101,97,110,82,113,101,104,101,104,116,104,107,104,107,107,95,94,105,106,120,91,102,115,95,99,114,113,108,103,109,117,95,98,107,120,107,106,107,97,96,100,112,107,110,100,104,120,100,105,105,109,118,101,101,98,107,111,93,116,101,114,98,102,108,109,95,106,99,109,99,116,94,102,97,108,105,100,109,95,106,101,103,108,104,98,107,102,101,89,83,106,92,102,106,110,113,91,109,95,91,104,98,103,101,98,111,117,108,114,96,92,102,111,98,98,110,106,112,107,113,113,105,112,113,99,114,107,100,113,110,105,108,108,106,110,110,107,87,111,113,108,96,108,106,92,102,96,112,98,102,103,90,102,118,99,98,104,103,105,85,106,106,97,103,105,110,106,103,97,101,104,107,108,98,104,112,91,108,105,99,107,96,98,109,90,104,101,107,98,105,102,104,108,101,104,104,109,107,98,104,106,91,110,102,108,98,107,99,123,107,98,101,112,103,99,106,106,114,112,111,109,103,110,103,110,106,99,106,97,105,102,98,116,119,117,105,98,106,96,108,102,103,111,104,110,94,102,119,100,121,110,104,106,113,108,102,107,106,112,118,100,102,116,97,85,100,110,107,107,92,96,98,102,94,94,106,109,104,109,130,112,98,94,101,100,118,101,107,93,109,112,105,101,108,104,95,106,107,87,95,113,108,110,101,104,94,103,104,118,113,95,113,99,98,109,111,99,109,99,103,108,97,88,109,98,99,101,103,106,111,103,103,104,118,87,102,102,107,100,106,102,108,101,94,72,110,97,102,110,107,106,111,97,103,98,113,109,95,103,114,99,91,103,109,102,117,83,107,93,104,99,113,102,105,105,106,103,97,108,116,97,114,106,97,108,98,113,112,110,98,101,109,122,114,110,105,103,103,122,113,98,98,117,93,97,111,99,106,111,111,86,102,110,109,100,101,100,105,96,109,100,91,110,105,115,107,114,94,108,107,94,101,119,98,102,110,105,101,106,108,103,105,105,106,108,96,103,96,99,94,109,108,101,109,63,102,103,98,113,99,112,114,88,111,112,104,116,101,105,91,106,104,107,107,105,100,101,110,100,95,108,100,118,108,107,112,109,92,92,111,97,98,98,106,96,108,106,109,112,96,95,95,109,111,104,113,99,109,93,102,105,96,104,113,101,104,109,103,86,92,110,117,98,105,100,104,98,118,96,88,93,101,102,111,95,110,103,89,101,114,101,85,110,110,110,86,106,114,119,97,107,119,113,117,107,96,94,104,109,104,108,111,83,110,99,104,115,106,94,112,97,102,107,107,98,95,99,90,102,91,117,99,102,90,113,100,97,103,109,90,111,102,92,95,108,103,84,97,98,99,113,91,85,90,126,97,107,99,91, +520.1499,100,103,93,99,103,106,113,107,102,109,113,94,102,97,91,109,98,104,101,120,126,92,99,91,93,106,116,104,108,103,105,105,105,114,95,98,111,92,97,83,99,99,103,95,108,108,112,95,92,114,99,104,105,109,105,91,99,116,104,101,109,112,104,94,110,118,98,113,106,102,112,106,97,108,97,111,109,98,105,83,98,111,100,98,92,99,105,88,97,108,111,102,119,108,126,95,112,105,100,119,133,115,112,100,100,109,121,110,102,92,109,102,105,91,119,104,101,103,103,110,99,105,99,107,111,104,108,94,104,100,104,111,103,91,107,109,103,96,91,109,103,109,91,79,102,105,107,100,106,100,97,102,102,97,111,110,125,112,111,103,100,106,104,114,110,105,115,95,114,104,104,113,103,106,107,106,110,87,95,103,95,98,102,102,103,90,99,95,106,103,113,107,99,104,97,108,103,100,108,100,115,109,103,110,103,103,107,100,103,116,100,102,101,109,111,108,100,113,115,105,112,91,104,96,93,116,101,94,103,97,103,106,110,99,86,102,124,113,104,88,110,108,100,103,104,99,105,110,103,110,95,81,89,100,109,109,105,93,103,116,100,110,102,111,107,106,90,104,108,93,95,107,105,95,116,109,110,100,108,101,91,101,111,112,103,102,98,99,109,125,115,112,110,108,95,103,131,93,100,104,107,102,99,108,110,111,102,105,104,100,93,106,103,104,97,117,113,100,107,98,99,119,88,105,108,111,100,101,114,90,106,104,104,110,105,99,115,102,97,112,113,98,108,106,107,95,103,112,103,104,99,108,107,105,111,129,117,111,104,113,93,106,99,102,107,99,100,110,99,100,111,98,95,107,105,99,123,95,107,103,119,104,103,125,95,92,100,91,103,102,107,102,109,113,105,106,125,97,106,104,102,111,108,120,103,94,105,99,106,110,96,111,97,102,105,83,107,115,108,99,107,101,108,103,110,95,108,92,109,109,115,106,94,95,115,107,102,106,114,108,109,111,101,107,103,107,109,107,102,118,103,103,110,102,111,107,115,104,121,120,95,116,107,100,124,100,106,95,109,103,110,107,114,112,106,101,105,107,103,109,94,110,95,111,97,99,106,98,108,107,110,121,107,90,98,104,106,98,100,101,107,100,117,108,107,107,98,106,104,107,110,94,105,104,115,98,107,106,122,112,110,107,102,97,108,111,112,103,114,110,101,104,111,114,108,102,109,113,113,110,118,110,101,104,123,102,98,123,114,110,111,110,105,115,114,97,113,99,111,102,102,114,114,110,101,106,101,103,98,103,116,109,97,93,93,104,107,106,105,103,109,116,96,99,102,91,112,107,99,106,112,112,113,112,110,111,96,107,116,106,105,113,123,110,101,102,107,114,103,112,108,103,104,102,97,110,103,104,117,98,107,98,116,112,107,113,109,104,104,115,93,105,107,110,97,108,99,93,107,94,103,110,100,100,97,102,96,99,110,103,108,115,116,120,107,106,113,108,117,116,92,98,113,113,113,106,109,111,118,100,119,108,101,103,106,96,102,105,102,105,123,103,107,91,95,87,104,104,109,109,95,101,107,94,105,104,114,108,111,95,106,93,98,91,116,107,115,102,109,106,104,92,102,105,109,101,105,99,108,105,103,106,99,105,96,83,105,106,116,109,105,117,99,128,97,88,104,104,114,105,113,105,112,92,95,110,96,113,99,125,119,101,103,102,87,106,96,101,115,94,108,105,108,110,98,91,87,95,103,112,99,100,107,110,107,108,100,104,102,95,105,109,108,105,93,105,103,104,99,107,97,99,108,109,104,107,111,105,109,120,94,90,110,115,106,117,116,100,94,82,117,101,105,103,105,95,109,117,105,103,106,106,109,111,108,102,105,102,113,108,115,105,110,104,105,109,102,102,104,99,95,99,94,109,94,105,103,97,113,104,108,101,100,109,105,105,99,106,108,98,101,121,97,108,106,114,106,113,111,107,107,102,100,94,101,95,102,100,110,101,104,107,112,100,105,100,105,111,90,118,115,117,101,107,113,107,100,108,119,113,103,126,122,87,111,117,104,109,104,104,122,106,113,115,109,101,109,107,108,112,98,108,104,106,102,119,112,95,114,105,102,112,112,106,104,117,97,117,107,109,110,102,107,110,100,102,105,93,96,103,103,108,104,102,115,100,117,121,90,109,102,113,106,103,102,106,113,119,117,92,107,101,104,106,102,108,109,101,96,121,111,116,107,101,105,100,107,106,106,110,107,90,114,115,103,102,103,100,104,112,121,105,100,100,109,100,101,113,103,105,104,117,108,104,105,111,106,116,98,100,104,101,105,99,113,103,125,98,117,102,102,99,113,98,107,102,102,106,101,82,99,106,111,100,94,103,104,113,113,103,98,92,107,94,111,104,109,110,121,108,100,112,108,96,113,107,102,103,105,109,98,88,104,95,100,110,109,100,100,102,101,87,104,104,104,104,83,105,111,112,105,100,107,108,106,117,112,108,113,94,104,102,112,95,117,105,85,107,109,112,105,110,113,106,107,110,92,108,98,107,113,106,112,105,91,101,114,104,105,100,95,124,108,68,129,95,98,108,99,99,108,98,91,123,119,97,108,112,110,91,99,109,119,100,99,68,102,90,111,109,104,92,110,104,116,119,105,105,107,98,110,101,112,106,107,101,105,107,105,103,82,113,94,109,116,110,88,108,107,99,99,104,106,106,104,109,100,108,111,96,86,93,107,103,88,107,112,107,102,95,100,103,101,113,104,108,105,113,113,106,106,112,111,108,103,109,100,87,110,106,91,101,100,110,106,101,105,107,106,113,106,96,106,102,108,108,105,113,96,105,107,101,100,104,97,113,109,113,103,112,100,115,106,100,110,98,97,112,111,106,114,114,108,110,99,99,110,105,113,101,105,105,100,99,111,108,95,104,107,81,92,103,102,100,106,105,113,98,105,111,101,111,101,114,106,107,106,116,92,104,100,105,111,115,106,111,113,105,95,98,106,106,109,116,108,112,116,112,107,103,116,95,102,108,110,108,109,105,128,94,83,112,109,104,108,96,111,105,117,105,106,113,96,115,100,107,107,133,103,100,97,106,113,95,114,104,112,100,106,97,106,105,110,108,99,105,101,104,98,106,113,100,119,89,99,103,81,105,102,101,104,104,125,109,110,110,106,106,105,115,84,102,98,105,116,114,99,106,105,112,103,107,106,99,101,106,105,107,110,111,81,116,109,97,100,107,117,99,106,103,103,109,106,112,100,108,89,117,107,92,104,102,111,115,107,102,105,101,107,101,103,94,106,104,112,127,103,94,108,105,111,110,106,105,104,114,120,101,116,114,97,105,114,103,108,92,115,97,111,106,93,95,108,95,99,102,106,93,100,95,102,115,106,100,117,111,105,108,106,103,96,102,98,99,104,100,102,99,103,107,115,112,107,101,96,103,104,105,99,93,103,116,103,112,109,110,100,98,119,108,120,98,103,102,101,108,104,109,100,107,100,113,97,106,108,101,104,110,107,95,111,101,110,108,96,106,102,102,107,123,109,104,102,96,105,118,112,101,115,104,104,119,108,110,99,107,99,92,106,103,105,111,106,115,96,105,100,112,105,104,98,115,110,105,101,116,116,99,96,113,91,102,115,110,115,111,111,101,120,102,100,104,108,116,87,102,102,104,116,102,112,116,104,101,96,109,106,109,100,103,110,110,106,106,102,109,109,115,102,85,100,106,96,95,98,94,96,113,108,101,108,101,99,113,111,109,114,97,105,99,102,98,98,101,112,105,90,107,114,100,92,104,102,118,96,105,107,104,114,116,116,101,109,116,98,108,106,108,91,107,86,120,99,103,109,103,106,103,115,92,106,106,130,109,102,117,96,112,99,99,102,103,114,114,118,106,104,100,95,104,103,106,89,105,106,104,103,103,112,99,107,104,126,117,101,111,94,103,98,109,113,113,99,109,107,113,89,111,105,108,97,108,98,98,104,114,102,109,95,105,109,94,96,107,120,100,109,105,113,120,112,104,98,102,106,108,109,94,102,94,98,105,94,99,112,109,107,102,105,92,95,99,109,102,107,107,108,107,102,116,100,113,123,103,109,108,96,110,102,102,115,99,108,86,94,109,112,121,109,108,104,100,95,107,115,99,101,112,101,112,86,90,106,90,103,99,109,95,99,99,106,106,101,91,116,108,94,100,99,102,102,110,96,106,104,104,107,96,96,114,105,97,96,103,97,103,89,104,113,96,94,103,100,94,94,110,100,102,90,103,75,130,108,113,92,94,113,100,102,103,73,103,103,97,106,102,106,110,103,107,102,108,107,113,105,102,103,98,95,118,99,109,106,110,97,103,104,110,100,98,104,115,110,97,94,96,91,109,106,107,113,106,85,105,109,112,92,102,98,97,96,107,106,102,98,103,103,106,112,101,105,99,104,96,102,86,94,99,100,103,92,105,102,106,105,88,96,99,100,107,84,108,109,101,97,110,97,103,108,108,96,102,94,101,103,111,111,112,106,97,97,110,117,94,112,100,111,102,103,110,97,116,113,110,90,102,99,95,96,98,111,113,117,106,100,97,113,83,97,94,100,89,101,106,100,111,93,103,107,107,102,106,99,109,105,114,98,113,88,92,101,103,108,100,106,103,118,105,102,105,98,96,103,92,102,90,106,103,95,97,103,100,100,113,122,95,112,102,96,97,109,105,106,88,108,94,95,104,101,109,95,102,106,97,132,102,116,100,102,113,106,109,99,109,105,103,99,115,121,103,108,102,104,106,87,114,96,92,117,94,108,105,105,98,112,124,98,103,113,103,106,94,107,98,104,102,102,105,94,94,94,104,120,103,101,107,105,96,112,89,103,93,84,104,105,95,104,113,104,94,87,96,112,102,102,110,107,106,93,86, +520.29065,98,102,92,106,110,93,105,112,103,107,98,106,108,110,113,103,91,99,96,106,116,97,88,100,103,114,113,92,102,117,108,112,104,111,108,103,103,94,105,99,91,116,115,109,106,107,103,112,114,92,95,101,94,108,120,101,99,97,107,104,109,103,89,98,121,95,100,101,100,103,98,109,101,105,92,104,98,99,101,117,102,106,105,103,103,108,101,107,104,94,109,94,107,99,97,99,113,103,99,106,108,111,96,90,104,104,108,107,100,105,110,101,112,92,100,103,104,114,120,115,108,113,103,100,116,94,113,111,115,107,93,103,104,108,106,102,105,102,101,113,101,95,118,100,102,108,107,95,105,112,103,84,106,96,95,98,92,93,113,120,94,99,113,105,112,108,100,94,115,104,120,94,101,89,114,106,101,114,101,76,107,106,104,98,110,109,100,101,103,103,111,118,102,106,110,99,116,101,103,110,98,92,107,104,105,101,110,103,108,105,101,102,109,111,103,103,108,108,95,103,99,102,101,105,99,109,101,108,104,117,112,114,98,99,108,95,104,113,110,104,105,105,121,103,113,99,113,107,113,109,99,121,110,105,95,109,101,95,109,97,105,112,107,100,99,114,104,111,100,113,107,97,108,101,102,97,104,81,107,124,98,116,113,103,113,112,103,99,110,104,107,113,107,108,115,103,105,109,104,109,110,88,121,100,108,113,103,110,105,113,101,106,95,106,102,102,112,103,106,102,107,96,101,101,110,102,99,102,111,104,108,106,111,96,111,112,113,114,83,111,96,112,98,101,114,79,103,110,112,107,119,99,115,100,100,108,113,107,113,109,99,108,101,104,100,100,89,119,102,110,105,118,106,102,104,104,102,105,101,106,109,104,97,115,90,99,99,114,113,98,117,99,100,107,105,105,98,102,95,105,107,106,103,104,99,102,105,99,108,95,112,87,101,101,99,104,103,130,109,96,104,101,112,91,104,78,107,108,106,106,105,109,100,106,117,100,99,116,99,97,108,104,100,101,101,105,104,107,94,122,100,108,94,113,108,105,108,102,114,99,110,97,107,100,97,111,110,116,105,103,99,114,112,87,112,93,106,117,109,116,102,104,109,109,102,105,107,104,103,105,107,116,119,102,113,107,94,101,110,99,106,109,102,108,101,112,97,104,118,106,104,105,116,104,104,106,101,102,99,101,105,114,117,102,109,106,124,102,103,104,116,96,110,104,102,109,109,98,107,98,93,108,113,102,105,98,101,107,98,98,111,112,97,106,107,117,91,106,99,101,116,107,106,103,100,86,105,87,113,110,95,106,102,116,98,88,112,103,95,113,110,104,110,111,100,99,114,102,115,104,104,117,97,106,100,105,107,97,113,113,92,103,95,114,114,99,103,115,99,99,107,110,98,98,109,109,120,101,113,116,113,108,100,110,101,109,106,102,101,109,109,109,105,108,102,113,105,94,116,97,114,106,104,99,104,100,102,111,109,104,93,109,104,104,103,98,104,112,109,100,104,108,116,113,102,105,97,108,97,115,105,101,104,106,90,109,110,111,109,110,108,105,105,101,97,99,93,104,96,102,107,109,107,91,98,114,107,105,93,92,108,105,101,109,108,114,109,107,107,106,106,112,112,100,103,102,92,105,111,98,106,97,113,106,103,108,113,102,138,98,104,108,91,108,95,94,109,99,113,104,116,102,97,84,109,118,78,104,111,100,111,102,85,109,117,112,102,107,107,98,104,107,95,117,116,93,95,119,102,100,105,117,105,109,94,100,90,92,118,107,83,95,114,95,96,110,111,120,104,113,105,87,113,114,110,100,102,109,112,109,101,102,93,103,106,108,107,103,103,103,109,94,103,101,108,99,103,101,95,108,105,114,124,114,117,98,112,103,117,108,88,96,107,106,105,103,111,106,103,111,96,106,114,105,103,107,101,100,125,81,106,106,114,102,98,103,130,98,97,103,100,127,105,119,109,104,99,102,107,105,103,120,103,113,100,114,101,98,101,102,109,109,107,102,98,111,98,111,115,103,103,108,98,109,109,96,112,98,105,113,112,108,119,109,114,83,92,112,100,102,111,123,103,100,99,104,85,103,108,116,114,99,106,103,98,100,110,103,109,107,97,103,103,107,113,95,99,107,118,89,98,108,107,102,106,105,95,113,105,98,118,99,100,111,115,97,101,110,92,118,136,100,93,104,106,117,94,105,106,102,94,99,96,95,98,121,121,109,89,102,110,111,93,106,86,106,109,102,103,102,104,100,112,120,104,102,117,102,100,100,106,101,107,97,90,118,99,113,98,104,95,112,104,112,110,106,94,98,104,106,119,142,106,96,95,105,106,104,103,110,112,122,113,104,110,97,98,95,107,113,110,94,99,109,97,113,102,107,100,104,109,87,111,110,117,98,102,116,104,102,98,110,103,99,106,87,93,113,98,105,88,106,107,105,112,115,110,107,105,100,96,98,97,91,99,107,114,109,117,106,102,115,103,107,104,110,96,93,102,103,115,96,105,101,94,110,105,100,102,104,99,110,103,102,109,109,103,95,108,99,113,100,103,97,120,108,99,120,112,86,105,104,100,111,94,95,101,108,105,109,100,103,111,112,91,98,113,109,112,105,115,106,109,108,103,107,117,101,119,109,115,100,117,105,119,112,90,115,101,105,92,106,103,110,90,102,104,118,102,100,108,102,99,100,103,112,113,105,103,107,96,101,73,123,92,93,117,91,114,116,114,70,98,115,112,117,112,122,117,102,114,95,110,110,107,116,96,106,116,97,106,115,104,105,105,106,119,115,119,100,111,112,113,110,98,104,102,97,114,112,111,103,120,102,89,106,106,112,102,108,107,105,120,101,106,102,110,109,97,98,104,101,107,92,112,99,105,115,109,118,96,114,115,114,106,105,88,99,98,78,99,98,106,97,79,112,98,95,102,103,101,101,100,115,105,105,116,109,106,117,104,114,104,109,107,107,103,113,100,112,109,106,108,94,107,113,108,114,105,99,103,102,86,111,104,108,108,108,106,97,104,90,92,103,111,105,106,93,105,118,105,107,105,92,106,107,111,100,102,104,113,103,112,109,102,109,105,101,103,103,106,109,99,98,113,117,118,112,98,107,112,95,100,120,103,99,99,99,110,116,106,100,108,109,101,102,103,112,110,100,120,107,98,113,116,100,90,106,110,113,96,101,104,114,101,105,126,114,105,108,99,106,109,94,109,96,97,115,99,106,96,98,106,112,101,113,106,106,106,101,103,102,96,108,105,108,97,104,105,105,101,92,113,103,107,92,105,108,102,104,108,122,107,111,110,123,103,104,107,97,103,109,106,138,90,101,97,107,117,112,102,99,101,99,110,101,109,97,120,105,97,107,111,113,109,108,119,112,100,100,111,111,101,104,82,104,102,104,109,117,84,117,98,105,105,109,105,106,109,101,95,109,107,91,118,105,102,96,103,114,107,108,99,107,98,112,96,111,110,116,112,109,108,98,100,102,106,104,95,113,108,106,104,107,103,119,120,100,101,105,118,102,106,106,112,104,110,113,111,108,101,95,110,106,118,115,105,73,88,108,116,99,104,103,111,134,98,102,102,107,110,115,113,121,107,104,92,104,99,85,112,113,106,108,123,95,119,105,113,123,99,127,114,112,109,100,86,100,102,117,114,96,104,97,97,100,107,103,110,105,100,112,105,120,103,105,110,110,115,101,95,116,96,131,100,102,123,101,101,105,105,97,106,110,104,107,105,112,97,95,98,112,96,105,108,98,109,99,103,120,99,97,97,98,95,110,94,102,91,104,100,108,98,94,105,123,108,108,98,110,126,79,98,102,117,114,104,120,84,110,102,98,103,113,95,107,100,98,99,97,97,109,97,107,111,105,98,109,115,113,109,109,112,104,104,94,99,99,97,103,113,98,98,100,103,101,120,101,108,96,106,104,121,110,110,108,112,109,121,108,117,94,100,110,94,106,94,111,112,99,102,106,99,103,106,110,92,99,111,104,105,114,101,107,120,90,107,97,87,109,110,129,104,113,116,114,110,112,112,105,112,107,94,88,106,112,99,104,110,110,125,107,105,100,121,94,100,111,106,98,104,108,102,107,120,114,108,107,107,102,101,117,101,113,102,118,98,107,102,100,114,88,102,111,137,99,109,109,110,102,104,108,105,108,106,96,108,104,102,103,97,95,111,105,96,100,98,106,103,106,120,108,99,101,99,97,113,95,114,116,121,110,105,113,101,110,108,84,98,115,101,104,113,90,106,108,93,102,112,102,97,110,106,112,100,111,110,102,100,106,101,109,109,111,115,104,107,113,111,107,105,112,113,113,116,96,109,115,102,99,130,113,108,108,103,102,119,95,107,97,101,124,113,102,106,99,100,101,104,110,101,124,105,101,103,94,105,113,105,105,96,94,106,103,107,92,97,126,125,110,120,107,109,95,98,102,100,84,99,111,112,104,125,110,91,107,107,100,104,108,109,90,94,109,104,96,105,99,98,99,101,109,100,110,121,101,113,98,87,106,97,106,97,96,114,106,112,106,98,116,116,102,117,94,87,107,95,88,102,91,102,103,98,79,97,100,98,106,96,104,103,97,102,117,103,100,106,105,116,98,103,103,100,74,93,107,112,105,104,99,110,115,109,92,113,98,110,98,114,98,92,98,104,114,103,99,104,117,111,103,107,105,106,116,110,118,109,98,99,108,96,107,102,98,113,100,125,105,98,108,98,100,96,107,106,103,97,105,113,100,114,107,113,91,102,105,119,108,119,105,109,103,109,98,89,112,91,99,106,98,117,109,99,108,102,106,99,96,108,99,115,102,89,105,109,95,103,94,118,90,105,108,89,98,93,112,105,110,115,90,105,100,98,98,115,124,111,117,97,107,102,97,84,93,93,110,99,104,99,93, +520.43134,93,103,89,123,95,101,88,93,97,95,97,110,106,106,104,88,106,114,108,104,114,110,108,95,103,106,98,111,99,116,101,100,116,95,91,109,116,101,100,100,100,108,97,111,95,103,106,104,91,114,109,98,100,101,99,100,100,107,102,112,123,110,109,86,109,111,102,96,110,111,109,109,103,99,65,108,97,101,97,109,106,103,110,97,102,100,99,91,95,105,105,98,103,106,106,100,110,91,106,104,96,96,113,109,109,109,105,101,98,86,104,117,115,103,105,110,101,99,99,103,91,100,97,116,96,105,101,107,94,102,94,107,99,83,68,108,96,111,99,96,97,108,104,120,102,100,95,106,105,106,103,102,106,100,108,109,101,94,113,96,101,99,106,101,103,108,108,95,113,105,90,105,117,105,111,102,103,104,105,112,112,106,94,98,104,107,97,108,95,96,96,104,115,117,105,94,100,106,110,109,112,112,101,110,100,108,111,102,112,106,103,98,104,107,105,102,99,107,109,124,115,109,105,98,96,110,111,102,108,103,100,102,110,107,106,107,113,105,103,109,99,98,102,105,105,93,104,109,108,107,100,117,97,98,104,107,104,103,97,110,94,110,113,107,104,106,106,102,110,108,115,96,128,100,107,99,102,102,106,105,108,104,108,114,108,98,101,100,104,88,100,98,110,115,115,108,113,112,101,105,95,94,108,91,94,104,103,109,110,107,99,102,109,107,100,105,115,114,99,106,103,96,106,116,105,108,99,101,102,98,102,107,114,106,101,107,108,90,96,94,104,110,107,101,96,108,104,109,112,109,104,118,116,108,96,96,107,105,106,100,100,98,109,98,100,95,118,121,116,109,112,106,103,107,108,104,112,101,88,111,97,99,112,111,92,102,110,99,105,109,105,91,92,96,96,95,100,107,105,102,86,103,102,95,113,98,115,104,102,103,99,100,108,103,104,92,101,104,110,111,100,108,99,104,106,89,98,98,105,103,97,101,110,107,109,96,95,114,97,106,101,101,100,113,108,109,100,95,102,103,116,104,107,93,101,116,103,107,101,98,84,98,96,99,102,106,114,104,99,112,101,116,94,102,107,91,123,113,101,104,110,113,104,92,112,109,103,94,94,96,97,115,113,82,103,110,98,97,110,108,99,98,111,107,104,112,101,90,101,104,106,103,101,103,104,94,108,121,111,94,107,108,107,116,86,107,107,107,107,94,108,115,89,111,101,99,99,125,104,122,93,102,107,87,108,98,113,107,106,94,99,114,104,111,118,107,108,104,108,107,94,109,98,101,107,106,112,96,99,104,90,76,104,113,120,99,107,101,89,107,104,101,114,112,99,116,121,112,116,94,87,78,93,110,98,105,102,105,98,87,97,119,107,102,112,103,96,101,97,98,110,99,113,106,111,109,103,82,116,106,105,105,99,110,100,120,104,106,94,116,108,115,108,99,97,99,107,108,111,111,103,110,95,102,112,106,101,123,111,108,98,109,109,109,112,106,104,105,101,110,103,114,105,104,104,113,104,92,105,102,121,107,107,112,105,106,107,112,114,108,108,113,116,96,104,103,90,113,105,103,121,104,115,138,108,102,106,118,88,93,102,103,97,105,105,120,108,99,108,102,103,109,109,101,104,107,85,100,102,109,103,101,96,120,90,103,100,110,98,112,111,104,101,91,107,105,109,98,111,108,113,97,106,102,121,98,98,112,107,104,104,97,116,111,123,106,109,104,108,109,101,108,110,109,107,108,97,109,112,82,112,72,105,106,101,109,109,103,114,121,108,111,110,115,109,104,109,122,107,97,99,104,110,109,111,107,103,104,100,95,107,102,101,107,118,109,102,102,99,107,108,96,96,112,108,96,107,96,108,104,105,106,104,103,102,106,101,115,109,103,111,104,106,109,100,112,99,113,114,113,104,103,102,116,117,100,96,112,104,98,79,104,106,105,109,103,107,102,98,98,100,104,111,98,105,110,110,105,109,109,113,111,106,118,101,103,103,105,113,101,110,109,94,107,101,106,108,97,103,109,105,104,101,93,107,116,117,101,113,103,119,98,109,101,111,95,99,100,95,99,126,103,109,107,103,100,96,101,91,102,107,114,110,106,109,96,103,100,111,99,95,87,98,105,106,96,111,99,103,100,98,106,109,107,106,118,95,112,106,107,120,102,105,105,108,94,107,100,87,100,107,104,113,104,110,85,116,104,113,109,101,132,105,99,102,106,91,103,98,100,99,117,93,108,108,82,100,102,97,94,116,94,102,99,96,102,100,95,103,106,119,104,94,102,107,95,108,107,96,84,94,109,99,99,116,99,98,107,110,105,94,115,96,100,103,109,108,110,108,110,114,87,96,94,107,101,114,105,116,103,104,110,105,113,119,109,103,97,100,95,103,113,111,94,100,97,92,126,107,109,101,115,102,110,104,109,105,96,94,104,91,105,106,97,122,91,109,106,98,99,105,110,109,111,94,107,106,85,108,84,104,97,108,110,99,112,130,102,105,99,110,98,91,97,94,100,111,109,111,114,99,114,113,111,100,99,102,98,94,109,109,115,98,108,103,111,107,122,101,91,97,103,103,112,98,103,106,106,101,80,102,109,92,109,113,93,98,103,102,100,104,104,113,114,108,107,106,105,109,97,110,97,99,102,111,101,101,113,108,101,113,97,106,99,105,104,97,89,93,97,112,89,99,113,110,95,108,102,104,103,111,121,107,105,102,107,118,102,97,108,112,111,109,112,109,108,107,112,102,95,109,96,101,102,106,117,100,105,124,110,115,114,105,107,92,107,106,112,104,111,100,111,99,102,94,112,112,100,113,101,111,102,114,87,94,98,104,106,102,109,107,93,98,106,103,101,97,105,107,100,106,120,107,101,110,86,96,102,112,99,107,102,106,118,112,92,92,93,121,111,101,109,128,105,93,117,104,111,104,107,102,104,103,105,103,121,112,121,101,117,104,113,103,106,103,115,109,110,97,90,106,111,106,109,99,97,108,112,111,103,110,111,109,106,106,107,107,106,113,105,107,93,101,110,99,106,108,107,111,99,106,113,101,106,109,105,120,104,120,111,99,96,97,106,99,107,101,105,107,102,111,111,113,103,113,95,94,98,114,103,110,111,106,106,101,122,103,114,106,98,108,103,109,91,104,100,107,104,95,100,94,106,102,105,106,98,113,102,108,127,104,99,98,112,102,102,124,95,101,103,108,113,105,108,108,98,109,109,103,117,106,111,100,103,102,115,115,103,114,104,100,100,98,115,114,103,108,110,105,114,67,98,107,113,108,111,104,103,74,96,96,97,98,99,111,99,120,112,106,103,112,99,98,105,99,115,103,112,106,99,96,111,106,101,107,101,108,84,110,106,103,108,102,111,100,107,121,103,110,112,118,108,121,101,109,105,103,106,113,105,97,110,121,109,99,102,117,111,92,105,98,98,104,100,109,112,103,107,101,104,116,111,101,114,100,72,102,101,101,113,107,106,101,117,102,109,109,116,117,108,103,108,118,95,103,85,114,103,108,111,109,104,83,113,101,79,107,102,120,117,90,102,106,101,103,92,91,101,106,106,110,102,107,107,115,105,104,94,102,116,108,104,114,101,101,108,103,101,97,94,98,78,90,138,109,99,119,107,110,113,110,106,113,118,105,98,104,103,103,110,121,99,107,103,91,109,99,103,96,117,99,111,106,112,94,105,114,115,103,86,95,102,113,110,111,107,101,105,102,94,106,103,101,95,117,105,117,105,105,104,103,99,107,105,104,112,107,104,108,104,95,95,122,108,102,100,117,117,96,99,94,121,105,103,116,82,100,109,92,104,108,100,111,111,109,102,107,90,104,113,96,114,96,108,104,105,102,109,108,94,106,101,105,98,113,109,113,110,100,91,103,100,99,76,114,99,99,79,103,107,116,94,99,111,103,99,115,111,115,96,108,101,108,112,96,109,103,107,118,100,105,108,100,116,109,93,98,112,100,102,103,113,110,97,105,111,121,109,100,100,112,110,98,96,126,106,109,119,112,122,100,114,98,109,107,105,116,114,114,113,102,104,110,107,111,104,105,106,119,113,108,99,105,107,108,101,103,111,102,88,97,108,105,108,116,105,109,103,101,114,110,85,90,113,106,112,100,105,100,110,114,102,95,96,109,111,96,90,107,100,97,102,102,91,104,100,108,107,104,101,99,103,104,99,114,106,90,109,112,106,121,103,113,109,102,106,112,110,105,102,104,100,110,107,100,112,92,95,97,102,109,100,108,113,113,107,98,109,104,105,110,107,111,78,109,101,100,101,106,104,110,104,97,95,90,114,105,102,100,103,109,103,117,106,104,94,96,71,108,111,104,102,103,68,104,92,99,100,107,98,106,112,117,105,97,106,111,90,110,113,104,96,108,115,90,102,102,106,99,104,95,108,103,106,97,115,103,109,106,103,115,100,117,105,95,104,109,115,87,112,109,124,83,72,104,108,105,93,101,105,101,87,109,93,101,110,80,92,95,110,93,111,98,115,108,108,112,100,110,104,100,90,109,98,103,91,110,105,107,95,99,107,100,102,106,101,108,108,109,113,119,113,90,107,105,100,105,106,104,90,102,108,112,94,129,109,89,100,109,101,121,105,100,104,100,107,106,100,108,98,96,116,90,99,95,105,110,89,102,100,106,106,82,109,105,95,117,108,92,108,88,102,103,104,95,103,111,102,106,108,104,97,98,97,102,117,103,98,96,100,107,102,98,118,102,109,103,110,109,102,95,108,99,100,119,101,92,105,129,100,114,101,114,99,110,98,98,109,100,94,103,93,96,106,115,97,102,108,108,88,105,110,101,97,106,106,102,109,87,106,76,105,108,105,96,109,93,99,95,94,108,96,111,91,101,97,99,120,102,101,115,94,106,118,68,109,102,102,127,87, +520.57208,106,110,94,99,91,105,107,102,87,107,95,103,114,107,108,91,103,104,110,99,105,106,102,124,99,78,104,101,110,107,96,95,101,106,100,104,112,114,119,102,101,99,92,103,103,117,103,93,96,104,100,106,95,99,114,104,100,107,97,106,115,105,98,99,112,104,103,104,101,109,113,109,94,101,102,108,111,98,114,113,75,104,86,95,105,89,109,98,105,88,104,102,110,104,100,92,117,104,103,100,111,100,101,105,95,100,108,105,112,95,99,104,94,105,101,108,103,95,103,107,104,98,121,101,97,111,106,104,116,95,107,125,104,100,112,110,105,96,105,99,105,109,99,112,97,89,109,100,110,99,98,110,109,100,112,99,104,108,115,96,99,125,101,103,103,108,90,98,109,97,102,104,84,123,103,100,116,110,103,108,95,110,99,111,103,100,98,95,94,95,100,115,112,108,103,101,101,107,105,111,93,95,95,105,105,108,107,90,116,118,94,111,114,110,114,110,96,105,119,104,111,111,110,96,109,109,116,103,102,105,102,108,111,110,106,106,109,115,95,100,104,99,116,107,94,87,112,108,97,118,107,107,92,114,106,101,105,114,102,108,109,103,97,105,97,99,114,117,104,97,102,106,124,98,107,104,108,101,118,119,116,107,102,121,107,109,101,105,100,114,106,109,88,88,130,106,108,105,102,98,101,116,111,113,110,120,110,105,114,118,96,108,85,108,103,103,102,113,102,96,94,95,118,108,102,101,90,95,103,111,104,112,81,101,118,114,101,104,95,106,102,96,132,95,112,109,114,123,101,90,99,104,92,91,105,109,100,111,110,120,83,103,108,99,98,90,108,107,99,114,111,104,107,107,102,92,110,103,106,118,113,109,111,108,105,92,100,102,109,94,101,96,108,109,100,112,113,101,96,113,100,102,98,94,102,104,103,108,106,106,114,95,106,100,115,99,97,97,105,93,107,104,95,103,95,110,108,96,100,114,98,111,106,110,109,108,113,102,101,98,108,94,103,95,98,101,107,109,107,99,109,109,102,121,102,103,105,114,106,109,105,104,90,103,91,106,105,112,117,96,100,99,90,109,113,108,99,118,103,111,103,119,101,96,102,96,116,102,103,103,105,110,103,104,115,114,105,97,103,113,122,106,107,90,103,106,98,109,104,105,107,113,106,103,97,104,102,98,96,92,116,102,100,110,106,109,111,104,114,114,89,124,105,89,105,97,84,110,116,92,92,98,103,100,98,122,96,110,102,102,108,91,108,99,105,107,101,103,106,83,109,101,99,113,110,104,107,102,103,110,105,102,94,100,92,100,96,116,106,114,102,93,112,95,98,105,97,109,95,100,99,99,87,107,127,104,105,96,101,96,106,122,103,110,105,113,101,104,92,106,107,104,127,112,119,103,99,109,116,117,109,102,120,100,107,103,109,120,107,106,109,110,112,111,73,104,109,78,94,103,106,108,111,112,110,104,105,111,111,122,95,103,98,98,106,94,100,96,111,103,102,105,109,110,97,108,107,104,122,100,113,102,103,94,95,103,111,94,99,110,114,104,95,110,101,110,113,92,103,106,106,116,98,103,111,98,98,104,106,106,108,96,87,101,102,104,102,110,110,103,122,108,106,117,91,98,99,86,98,99,106,105,106,113,107,100,94,105,95,118,105,99,99,100,109,87,106,97,117,98,104,104,102,100,106,122,109,107,97,108,79,99,101,104,106,109,108,104,113,91,106,113,93,110,88,107,109,100,109,106,111,90,119,107,106,103,102,104,97,101,108,95,94,104,107,81,122,103,108,102,106,116,109,106,108,105,112,111,109,121,98,97,116,102,106,112,103,135,113,107,106,101,106,101,113,108,103,98,99,103,106,114,129,117,110,103,117,104,100,95,112,100,100,109,112,115,111,111,115,98,105,106,117,98,140,104,101,105,113,99,117,87,106,102,101,95,104,104,112,108,94,105,107,106,100,98,103,101,112,100,107,102,116,92,94,107,102,104,102,104,98,91,117,104,98,101,104,102,101,100,100,114,114,116,98,98,99,110,100,102,117,106,109,100,105,100,102,108,105,106,108,115,128,113,95,96,97,113,103,102,109,105,106,104,99,100,100,106,109,104,97,104,103,104,101,105,111,97,104,103,117,109,113,102,110,102,104,98,108,109,105,101,107,103,91,99,112,103,102,105,101,121,107,85,104,108,100,103,98,109,99,100,120,96,107,108,116,104,110,111,104,99,104,95,112,104,111,117,104,100,107,104,93,111,111,100,113,103,109,100,105,109,104,95,101,94,113,107,83,99,102,103,103,114,107,106,113,98,95,76,103,105,124,101,109,118,99,110,123,111,105,119,107,97,107,101,102,101,104,103,110,111,86,98,108,105,101,95,110,113,95,103,113,94,113,103,106,101,98,108,91,100,106,103,108,102,110,98,113,102,86,100,99,110,106,108,97,105,127,105,89,109,92,98,93,99,98,93,111,95,102,97,95,107,101,106,98,113,100,99,90,116,104,107,106,110,111,108,99,110,90,109,100,102,105,116,102,107,116,105,110,99,108,117,110,96,116,103,109,111,91,107,106,95,101,110,103,111,113,105,99,100,118,121,112,106,101,108,110,100,109,107,98,95,111,102,110,111,91,111,95,102,101,94,114,108,108,110,104,99,113,113,109,112,105,110,109,105,100,108,109,107,103,103,100,97,109,105,96,99,86,84,105,110,97,108,112,106,111,115,101,110,108,94,103,111,90,115,89,114,114,107,108,104,104,115,103,110,102,100,105,114,110,94,98,114,100,106,117,112,101,119,101,98,87,105,102,105,101,113,106,116,108,101,81,108,107,111,103,113,110,113,115,109,114,111,101,99,102,109,102,109,105,105,114,101,112,99,101,116,92,107,108,117,111,100,111,109,99,98,103,109,112,104,104,105,95,102,109,102,111,110,99,109,101,105,104,108,100,112,110,107,124,117,111,111,117,105,100,94,100,103,104,117,94,102,108,111,101,110,99,112,90,106,115,122,102,117,109,116,103,103,99,102,102,108,113,98,96,102,111,94,115,99,111,108,112,110,107,98,97,107,100,112,97,100,105,115,102,101,110,121,109,113,108,110,113,91,88,133,109,105,113,102,105,108,109,107,105,101,111,97,99,101,100,102,105,111,100,103,117,108,106,111,112,100,115,102,100,111,107,93,97,102,97,106,105,101,138,102,103,98,102,108,116,99,102,109,109,117,92,112,110,102,101,94,94,103,113,116,92,92,113,117,112,103,101,117,111,115,97,94,108,106,113,110,109,102,108,103,104,99,111,100,93,110,121,99,104,105,115,110,105,112,118,105,97,89,108,102,105,105,101,101,101,113,114,98,128,104,100,106,99,91,100,110,104,106,112,108,102,110,110,114,107,102,103,104,110,102,89,105,110,120,90,116,98,99,100,104,109,103,99,98,104,115,113,114,96,125,113,105,111,107,96,101,103,108,116,91,107,107,110,103,101,88,106,111,111,101,106,109,102,106,102,95,111,105,102,98,106,133,98,119,102,110,105,103,109,114,111,111,109,102,112,111,106,121,115,107,112,89,101,105,121,109,103,109,101,105,102,105,94,104,104,109,112,98,101,108,103,102,99,119,106,114,108,108,106,104,110,106,114,101,112,106,109,106,110,113,108,111,109,107,106,112,118,106,108,112,102,113,101,103,115,96,111,103,112,125,88,103,116,103,91,100,103,132,65,91,109,111,104,109,99,107,106,100,103,97,110,97,113,96,112,95,112,107,108,107,103,111,112,114,109,103,104,98,115,106,100,117,107,117,120,112,115,110,112,103,112,98,100,109,104,122,101,110,89,108,107,112,109,105,113,102,115,104,104,106,98,113,105,110,115,98,98,100,102,121,103,111,113,102,105,102,97,103,95,100,125,102,106,106,105,103,100,100,112,102,121,133,103,104,106,134,104,107,109,100,103,108,99,111,112,110,101,98,102,102,86,108,101,107,105,111,133,110,104,104,101,109,100,106,110,120,106,123,106,103,103,102,99,108,94,95,119,110,102,109,117,100,81,104,114,118,101,112,111,108,105,127,103,103,99,102,104,110,102,104,114,104,102,104,104,111,106,105,107,104,104,107,97,111,109,121,114,104,98,106,98,109,95,100,113,99,111,111,115,110,109,105,102,101,102,71,109,107,107,99,67,109,107,105,111,107,99,112,104,105,112,103,108,102,92,96,102,97,99,108,110,100,101,105,118,104,103,107,103,113,119,97,104,95,83,91,100,98,107,106,112,111,129,98,98,104,102,89,104,102,93,110,107,101,101,103,109,106,98,103,107,113,112,104,114,113,99,110,117,101,101,102,104,106,113,94,103,110,102,106,113,111,118,107,101,101,104,107,106,113,115,110,99,109,108,105,101,83,88,107,95,97,100,99,100,103,103,101,112,100,110,94,101,108,110,94,99,104,116,105,119,104,109,108,113,96,96,97,99,105,91,105,113,112,107,102,108,112,106,113,100,105,108,93,101,129,110,103,113,98,100,109,105,106,129,98,105,106,117,108,115,95,115,105,97,92,111,100,98,106,99,99,119,116,103,103,106,115,107,99,95,96,99,104,100,110,109,89,99,121,98,99,106,113,97,110,106,99,119,98,107,104,99,112,107,104,105,105,108,115,97,115,100,104,94,106,110,106,105,94,106,104,98,107,99,106,113,119,112,103,89,103,107,106,119,111,98,108,103,110,111,109,108,111,111,109,107,105,110,106,102,106,102,105,106,104,116,113,113,116,96,99,96,120,101,127,113,96,103,108,102,99,111,96,109,115,106,107,99,95,102,115,98,91,92,98,106,98,82,106,107,103,96,110,106,119,105,99,110,99,106,99,102,100,110,107,105,131,107,76,129,98,98,108,113,100,111,108,100,98, +520.71277,99,111,104,101,119,95,91,102,110,110,111,84,114,90,118,98,97,116,102,110,104,114,102,102,107,111,100,65,113,100,108,112,102,104,93,108,119,104,104,105,100,106,108,100,107,75,113,117,86,114,107,104,113,103,123,91,110,99,92,106,100,108,100,99,105,107,105,106,78,105,110,103,95,103,109,109,101,98,111,104,100,101,99,104,99,97,101,103,106,118,99,104,108,99,102,106,96,109,86,97,92,107,95,115,98,112,102,97,104,105,99,102,103,107,99,98,100,109,95,99,109,99,117,98,102,113,100,99,109,113,101,106,110,110,109,107,110,91,98,106,97,102,104,101,98,99,106,107,107,103,119,99,101,90,103,90,99,109,116,113,97,96,101,104,102,99,103,98,87,104,103,103,94,97,102,99,103,100,109,85,100,99,109,96,109,90,100,108,114,117,105,108,101,112,98,106,97,108,93,102,103,104,103,94,115,103,107,99,109,105,107,90,104,108,110,101,95,110,103,105,113,111,100,106,105,86,105,110,108,101,83,97,101,100,111,117,102,118,102,105,107,97,107,110,101,110,105,105,115,114,102,104,99,97,99,99,100,108,126,109,109,107,94,99,100,110,102,103,106,103,113,112,108,117,107,109,103,87,111,96,129,104,119,90,115,96,94,103,99,115,97,104,110,103,105,100,100,106,102,120,112,99,107,117,104,106,106,102,101,75,104,115,100,106,105,111,125,100,107,99,100,106,105,107,106,91,98,99,116,117,112,107,97,99,118,111,104,103,107,105,106,119,91,96,114,117,108,109,91,105,115,99,103,114,106,105,108,107,96,113,108,108,107,112,100,102,119,102,103,104,103,99,114,95,124,105,110,97,89,95,107,105,113,90,120,101,78,103,107,97,80,90,102,125,105,103,93,107,102,111,98,87,107,109,89,105,104,103,106,105,97,89,111,100,117,92,92,106,110,112,106,109,93,109,95,92,109,102,91,113,110,113,98,107,107,97,113,98,74,110,107,106,99,123,105,111,112,107,98,118,95,106,102,119,103,110,105,98,105,102,101,113,122,114,109,100,109,94,108,107,100,111,105,115,102,101,109,118,105,112,106,117,123,95,108,98,106,106,125,111,107,108,107,105,100,98,101,108,114,121,108,95,101,108,109,111,96,103,101,107,111,105,113,105,109,105,105,105,111,100,99,88,102,121,105,112,95,101,106,98,97,99,105,101,103,96,113,94,113,109,105,125,98,107,114,100,89,96,103,98,105,114,114,109,99,98,104,103,125,91,105,102,95,112,100,111,111,105,111,108,102,106,103,98,110,112,104,104,95,99,104,101,110,103,94,104,103,111,97,113,111,113,100,102,102,99,102,103,106,103,101,104,106,110,107,103,113,100,103,109,111,109,96,110,108,91,114,108,121,102,98,108,107,110,107,110,102,106,91,98,98,100,107,103,103,104,122,104,112,99,104,111,114,106,114,99,100,95,111,112,100,104,104,111,98,107,106,98,117,118,109,101,104,112,86,102,99,101,96,104,117,102,110,111,93,107,107,104,105,93,92,108,109,97,104,106,101,109,101,100,102,101,105,111,98,100,109,96,110,95,109,101,103,100,112,100,113,110,120,96,122,105,104,108,100,109,99,101,103,132,96,123,112,104,98,105,95,97,111,114,114,102,99,106,102,103,100,107,108,109,102,86,113,110,121,104,113,109,107,99,107,101,106,106,106,109,105,104,110,82,103,115,109,103,71,102,107,104,106,123,110,94,111,105,127,114,91,99,125,100,105,105,116,109,108,106,118,114,97,96,110,107,112,113,104,102,106,117,118,103,104,101,97,84,110,103,112,87,106,108,108,98,99,98,112,119,103,103,116,100,92,106,111,103,107,97,98,88,105,102,113,103,107,100,112,108,105,109,108,105,102,102,108,91,105,114,114,104,100,107,104,105,108,109,101,109,108,95,108,110,108,73,101,91,109,101,98,114,114,108,101,114,107,110,101,93,106,105,95,103,101,126,102,110,121,90,108,114,121,112,103,97,110,106,114,111,117,103,95,98,99,103,102,107,101,106,100,108,99,101,106,122,101,99,107,99,88,117,102,113,102,112,97,114,103,98,106,102,101,113,99,117,86,117,91,97,117,95,104,110,113,106,106,110,103,101,109,119,93,110,107,94,106,98,107,108,105,106,95,113,103,101,115,110,109,105,95,114,100,101,89,108,101,107,97,104,105,104,103,81,100,106,107,116,103,106,119,96,97,112,101,105,105,96,106,113,101,99,118,106,92,109,109,97,105,112,105,109,91,116,95,112,105,101,104,112,100,89,121,101,112,106,103,96,105,78,112,103,105,108,111,108,118,94,116,91,110,120,118,109,112,112,101,113,103,114,101,112,100,103,103,105,112,90,113,116,114,104,108,102,114,107,96,109,96,102,104,108,100,104,94,109,79,105,109,103,98,106,101,106,95,105,107,110,113,109,111,72,114,92,106,105,105,106,98,104,105,82,111,109,105,101,118,96,104,114,98,109,96,116,110,107,105,99,115,113,114,102,98,106,104,98,104,91,116,98,99,111,113,108,111,107,102,110,102,100,118,92,105,93,95,97,111,105,95,106,102,105,96,102,107,97,109,110,96,98,106,112,118,117,113,92,111,99,86,125,119,106,110,105,117,104,110,102,106,98,101,97,108,101,114,114,101,105,99,102,102,102,93,111,108,99,108,102,99,111,91,101,113,96,95,109,113,103,109,104,67,122,98,102,113,103,106,97,120,102,103,102,91,96,108,108,92,114,110,100,99,106,127,102,115,102,103,93,102,106,100,117,99,108,104,97,94,104,103,110,120,105,100,82,116,111,97,106,102,99,104,108,97,120,104,116,127,103,103,94,109,105,108,108,101,111,112,100,113,101,107,103,111,118,118,96,101,103,81,114,98,106,112,102,107,109,103,99,96,111,95,120,95,101,102,115,100,100,102,98,77,103,105,96,102,101,91,103,111,111,92,102,102,102,115,109,103,105,114,91,117,104,111,95,88,91,124,102,106,99,102,97,112,104,111,102,113,98,98,99,104,105,106,101,103,105,108,122,89,96,106,105,100,108,102,111,103,76,107,86,97,99,105,88,107,105,104,106,114,108,95,98,112,110,113,96,100,108,111,103,101,107,104,103,100,106,100,101,111,111,115,109,114,110,112,97,116,101,98,116,110,101,104,103,103,97,99,109,96,100,99,88,107,133,111,104,102,97,108,106,100,108,117,101,102,91,112,108,114,109,104,109,95,97,109,100,106,102,91,106,92,103,113,96,98,121,100,103,115,81,97,116,108,110,118,102,88,106,97,98,109,96,111,104,93,126,99,106,108,105,109,110,100,110,109,107,92,105,103,113,111,104,95,108,117,100,104,103,90,99,103,114,112,106,103,95,94,116,104,104,108,102,103,106,94,99,104,109,106,111,104,113,107,101,106,108,107,87,88,99,108,97,108,107,109,103,99,96,87,104,100,108,119,106,94,111,112,97,108,111,108,107,112,97,117,106,107,119,108,107,121,105,112,97,90,108,101,95,115,104,102,93,101,102,102,90,94,107,108,102,100,103,110,96,101,112,94,104,107,109,99,94,89,108,103,111,103,102,98,104,107,99,114,94,113,102,109,87,102,104,102,100,96,111,103,106,102,89,96,111,106,107,107,117,82,125,96,114,89,101,90,117,107,113,102,84,111,89,103,95,107,101,106,102,101,91,112,108,109,107,106,107,108,99,97,103,99,100,117,117,102,102,101,102,110,111,112,101,124,96,105,94,107,102,98,99,102,108,95,100,105,105,104,121,101,97,103,110,105,107,100,106,100,107,100,107,95,112,96,110,109,109,107,100,108,102,100,108,114,114,110,99,95,83,107,99,102,105,109,92,102,109,105,113,101,112,109,105,91,99,115,102,113,91,106,100,108,107,100,106,110,91,112,106,118,95,100,113,97,109,95,94,109,103,98,99,97,104,96,95,90,103,95,106,97,110,119,106,111,110,100,102,115,117,106,97,101,107,104,110,108,113,97,102,117,117,109,113,99,107,104,109,117,112,99,97,108,102,94,100,111,109,103,98,103,107,98,103,97,115,112,100,96,100,105,100,98,117,103,111,128,98,100,108,101,93,102,110,102,95,99,113,105,110,112,105,94,101,103,113,99,105,109,105,97,101,102,102,107,106,99,107,103,102,100,98,107,99,96,110,106,102,109,113,105,113,106,110,109,105,96,112,99,95,97,101,103,100,98,114,99,108,103,94,121,98,106,93,110,99,115,101,94,111,113,102,109,112,112,112,94,105,111,115,108,111,105,114,115,94,99,115,104,105,96,102,107,96,103,100,107,101,106,100,102,96,101,110,93,106,101,92,98,127,93,101,110,103,99,95,109,95,104,101,94,97,102,107,97,99,96,95,92,124,106,101,103,102,95,115,115,114,100,101,101,107,101,111,77,94,111,102,101,99,105,101,105,116,114,105,99,115,102,93,91,100,93,113,116,109,97,111,107,103,113,105,93,109,110,104,97,104,103,108,132,94,114,100,102,97,114,81,104,91,95,113,123,101,104,107,79,104,102,106,105,104,100,124,93,107,103,98,106,95,99,103,141,101,93,120,103,109,105,97,104,110,105,102,112,108,100,98,104,94,97,68,105,99,107,105,116,103,90,111,88,99,87,107,120,105,113,105,111,108,94,99,112,108,101,113,101,104,101,95,113,96,92,113,92,131,109,108,112,110,114,108,111,104,102,90,104,99,81,102,92,100,96,114,96,109,114,98,116,112,101,85,99,112,82,103,101,105,121,108,110,104,86,105,100,86,105,99,110,137,123,101,107,110,94,102,91,101,111,113,102,100,99,86,107,103,104,97,104,96,103,91,104,98,101,96,103,105,102,100, +520.85352,92,103,102,105,96,96,104,114,100,100,105,92,102,119,125,112,124,107,102,103,120,94,106,107,128,109,91,97,95,112,110,91,92,98,114,109,110,106,97,91,104,100,99,100,113,100,109,99,101,113,82,91,100,109,110,102,110,88,109,98,106,105,110,96,106,110,111,103,93,109,117,109,101,103,113,90,108,106,91,117,107,110,106,91,104,103,99,105,109,99,98,103,94,106,106,113,112,98,100,115,92,106,100,109,104,94,113,111,101,96,109,103,117,92,96,99,96,105,96,100,98,101,108,109,105,117,122,98,115,113,77,117,107,103,103,98,112,109,97,116,100,97,103,118,108,111,104,102,113,109,99,97,115,101,94,107,106,105,104,110,101,105,107,99,104,110,103,98,104,104,101,98,101,105,116,98,110,98,112,98,112,103,104,105,105,101,106,92,110,101,98,111,111,101,103,97,107,91,113,104,96,100,105,104,111,102,104,107,103,107,107,96,109,110,94,91,117,124,97,122,97,108,86,95,103,113,102,112,109,111,103,98,112,106,95,101,113,112,111,98,98,112,103,115,103,107,82,107,107,114,117,113,106,109,107,116,107,133,110,110,104,104,113,101,101,107,126,92,101,104,111,98,107,111,109,110,110,108,102,104,86,120,111,108,109,112,97,103,110,95,111,112,109,98,100,110,107,97,90,102,104,105,104,120,90,101,94,104,117,107,109,106,109,105,72,109,111,101,111,94,102,96,99,112,114,104,98,101,108,109,91,102,120,95,95,105,113,94,108,109,106,114,102,99,107,105,90,117,116,118,97,118,113,108,109,101,89,112,107,119,115,112,102,103,94,106,106,116,120,117,101,114,108,100,114,98,109,100,69,111,115,108,96,111,104,114,97,99,91,107,113,93,105,104,106,99,104,112,99,112,105,105,107,91,101,118,115,102,103,105,85,115,117,103,101,103,111,120,123,104,100,106,100,108,99,102,106,105,122,91,94,109,113,101,103,106,100,110,105,102,106,102,105,101,101,107,112,76,96,125,105,109,106,116,110,103,107,122,113,109,103,106,114,117,105,114,104,103,115,118,101,104,110,92,107,106,103,122,107,100,100,108,103,114,110,97,117,106,72,109,100,102,113,98,96,110,104,112,111,107,110,107,108,110,104,113,110,112,110,96,107,113,123,108,107,98,111,99,106,99,106,114,105,103,101,112,109,114,113,114,100,99,91,91,96,109,106,114,98,102,78,113,100,107,102,107,110,98,103,106,102,123,95,105,92,96,108,103,117,105,95,109,101,96,118,110,115,99,93,110,96,94,103,97,113,99,114,121,107,109,110,107,99,92,82,109,112,104,100,110,100,113,95,103,117,133,100,106,104,106,99,114,103,115,119,111,100,113,106,107,108,106,78,111,103,108,100,112,111,113,92,111,98,109,113,84,100,102,108,110,121,109,98,108,107,110,113,94,110,101,111,110,103,105,102,110,96,101,117,114,103,92,106,105,110,107,109,111,116,115,99,120,109,103,104,107,104,110,110,109,109,102,95,111,104,113,108,82,112,107,119,107,115,109,109,114,103,118,96,102,110,102,119,101,109,126,79,107,110,105,110,98,108,105,102,113,89,94,102,104,103,98,98,104,111,107,93,111,99,112,114,108,106,101,108,110,93,113,101,118,116,107,97,101,113,100,102,107,109,99,105,113,105,103,109,107,103,112,100,118,106,100,96,110,114,107,98,109,100,111,95,124,97,101,94,97,103,114,116,102,99,110,105,117,103,108,113,110,92,97,114,109,106,110,112,108,86,101,109,102,98,114,108,109,103,109,99,108,100,99,99,101,102,98,119,109,96,108,112,96,102,112,103,88,105,118,108,107,111,99,106,114,103,120,107,81,115,102,102,99,106,122,105,112,113,91,108,112,105,109,97,106,100,133,99,115,111,93,96,116,113,92,90,109,104,105,117,102,117,114,110,96,97,117,102,98,99,104,121,95,111,106,106,95,106,109,113,90,109,110,117,103,108,110,73,113,99,110,108,110,102,101,114,105,102,103,117,129,98,102,104,107,101,94,111,103,90,103,87,111,109,103,114,109,112,98,112,116,101,95,112,111,102,97,113,103,125,102,93,94,99,114,116,114,96,103,101,108,109,100,105,100,107,106,103,107,98,107,114,105,113,107,104,116,120,119,110,111,97,104,107,104,96,99,118,102,99,107,102,111,124,109,107,102,104,109,110,93,113,96,109,99,102,108,102,102,97,104,114,121,105,102,107,103,104,102,104,109,108,109,109,111,114,97,112,98,103,105,103,116,101,112,104,103,104,102,111,105,109,102,100,121,94,100,103,102,104,105,113,100,112,96,112,101,111,104,106,116,95,104,118,99,103,91,102,100,100,91,102,104,117,100,104,110,96,113,101,109,110,99,104,106,114,113,107,98,110,98,104,110,105,114,100,109,102,126,116,105,105,109,99,109,101,114,107,104,113,115,120,108,106,103,103,109,100,114,103,104,106,111,113,108,106,89,107,92,104,103,104,87,104,112,102,109,101,103,110,105,103,103,106,92,88,102,102,110,125,107,94,109,104,104,118,114,111,110,101,112,101,103,108,102,107,110,99,99,108,106,106,101,105,100,113,106,104,106,110,102,95,96,103,99,104,95,111,103,106,110,109,108,105,97,105,100,108,103,104,104,113,99,89,109,92,119,98,111,111,119,109,112,89,114,107,92,108,114,96,104,108,110,112,106,110,100,93,86,106,104,104,93,95,112,111,117,107,101,116,110,106,98,108,110,99,106,106,100,105,106,112,106,105,102,103,110,110,100,99,115,96,109,110,96,115,92,103,103,105,113,100,105,106,101,113,100,99,101,89,108,94,108,106,105,111,96,108,93,103,111,99,108,98,101,103,109,108,103,110,109,108,109,111,108,99,110,106,104,103,98,111,94,100,79,96,108,107,108,117,88,110,119,103,112,108,125,105,108,121,100,98,105,99,107,113,94,102,110,91,113,104,110,100,110,96,99,109,84,107,100,113,102,100,97,105,121,99,110,104,106,120,106,104,106,110,103,90,106,102,96,113,99,108,100,107,107,104,102,103,109,87,108,110,113,104,97,110,103,96,107,100,115,105,96,108,107,104,99,104,112,112,111,104,107,99,112,106,94,100,81,95,97,104,99,98,106,110,95,70,106,98,109,94,116,96,95,81,110,108,108,113,101,97,110,105,106,106,85,103,93,100,108,98,114,99,91,108,117,101,109,109,115,109,117,104,121,118,103,100,116,109,110,104,98,103,99,104,102,105,98,103,109,91,96,104,94,83,98,105,111,102,93,101,106,111,103,111,108,99,100,106,103,108,104,99,96,107,109,107,102,116,105,102,99,107,115,109,94,99,102,107,99,106,90,109,110,104,95,101,105,106,107,87,115,113,101,100,108,98,108,102,111,119,100,112,105,109,106,104,103,108,129,113,99,104,101,87,96,93,98,111,104,104,109,110,119,96,100,113,113,115,108,98,104,110,106,103,108,102,105,110,105,111,98,101,122,98,103,101,100,93,110,97,105,112,95,104,109,109,105,117,109,107,106,101,108,112,112,109,101,107,101,94,100,90,105,102,113,111,98,103,103,96,113,107,109,98,102,106,106,114,109,99,95,110,103,104,106,102,98,94,105,103,117,101,105,94,106,95,107,95,106,107,108,101,100,94,91,108,104,111,90,97,108,106,109,103,113,97,104,105,94,100,109,101,101,122,97,109,102,104,108,102,100,104,86,103,104,85,96,79,94,113,100,99,99,101,101,83,105,112,94,109,109,112,98,107,99,102,87,104,85,98,95,102,92,103,101,101,106,103,110,93,99,108,101,97,110,102,98,110,103,91,101,116,103,116,110,110,94,117,110,100,106,109,101,105,107,103,104,92,99,102,106,110,96,112,100,121,98,110,118,97,102,113,103,107,105,105,101,115,101,103,106,99,123,103,103,97,110,97,94,105,106,120,113,111,97,110,126,103,98,100,105,106,106,115,99,91,114,103,120,99,102,116,99,102,107,105,111,120,101,117,102,98,114,104,116,96,102,104,107,93,84,117,93,108,98,113,115,88,109,103,102,102,94,102,112,91,115,101,98,107,108,111,104,108,113,99,99,75,102,99,96,103,106,108,101,102,108,106,114,108,117,99,92,113,97,109,105,112,100,112,109,109,112,105,105,103,114,102,96,111,104,87,105,105,105,106,104,93,99,95,94,101,86,108,114,127,105,101,112,110,110,95,99,106,100,98,106,115,106,103,97,106,105,110,102,107,99,99,102,103,115,111,112,96,101,105,122,109,108,105,86,106,95,111,105,100,99,105,112,101,107,98,99,105,109,116,107,106,113,106,100,107,105,93,108,113,105,117,96,105,103,108,109,98,108,100,111,112,97,115,103,101,112,102,88,100,112,98,109,106,99,96,102,102,94,89,103,100,97,112,106,109,121,102,94,103,93,105,105,99,104,109,121,124,113,106,102,102,108,110,99,111,98,96,100,107,100,105,109,95,105,104,102,93,94,116,114,101,100,102,107,102,120,100,110,106,95,107,98,100,112,105,102,109,104,106,98,101,112,111,97,103,98,114,99,100,96,111,101,101,108,100,120,100,102,103,104,98,106,124,101,103,111,117,101,108,96,105,113,108,94,102,91,101,92,104,104,101,98,113,98,106,108,116,105,105,116,107,105,115,115,82,114,102,101,109,99,100,91,108,100,95,108,105,92,104,93,114,109,103,102,113,112,91,94,99,104,110,111,97,118,102,112,100,107,75,121,113,109,101,103,100,113,93,97,96,97,119,87,95,101,108,104,101,106,104,103,100,110,108,107,87,110,109,99,108,100,113,93,106,100,103,98,103,98,104,113,97,107,105,83,125,119,113,106,112,99,102,106, +520.9942,106,91,94,105,102,110,101,86,91,112,95,105,93,107,100,93,93,111,109,107,94,122,114,87,100,108,108,103,108,122,116,92,112,106,110,116,105,101,105,104,94,112,101,105,100,114,118,98,108,99,102,106,93,105,109,105,100,99,109,122,98,108,101,84,96,88,87,95,114,90,100,102,106,107,92,112,112,105,95,73,131,101,102,100,102,91,96,111,90,100,126,101,109,102,98,104,106,101,100,102,110,99,102,90,107,100,111,97,100,94,97,112,91,104,128,96,102,104,110,102,99,99,104,112,105,96,95,103,113,99,99,100,100,105,97,99,105,110,107,99,105,104,126,96,103,97,102,101,108,112,101,100,115,92,95,108,103,94,104,110,107,84,118,105,107,89,109,98,110,98,103,105,99,100,108,108,99,101,109,91,116,113,105,103,103,126,109,107,97,105,109,105,103,109,109,98,95,93,105,108,105,95,96,110,109,104,95,99,106,102,98,103,102,107,119,104,115,106,106,98,99,110,98,99,104,110,82,107,106,107,98,93,92,117,86,100,108,102,109,106,101,107,104,112,94,99,99,110,108,113,102,107,97,110,100,122,94,104,95,96,116,102,105,114,93,103,108,115,105,116,103,101,111,105,105,102,105,103,107,111,99,118,109,103,110,110,106,107,100,101,107,101,108,103,103,113,103,99,108,114,97,106,111,114,109,105,117,128,112,104,105,121,107,118,115,101,113,98,100,101,110,94,120,95,100,106,108,94,105,103,101,103,106,114,113,104,105,104,95,112,106,111,103,104,114,99,109,105,101,95,113,107,117,105,108,102,94,103,106,103,105,119,106,102,99,104,112,112,106,115,104,91,97,102,106,94,102,109,105,106,103,102,102,103,107,110,100,105,103,105,110,102,91,110,102,97,98,99,96,113,112,117,107,79,113,104,97,109,101,100,101,94,101,96,117,105,102,103,106,104,98,101,106,96,98,99,97,100,91,109,100,117,110,101,103,104,109,113,101,119,100,114,106,112,106,113,97,100,106,113,107,93,100,122,107,100,108,112,101,104,105,110,87,105,120,114,108,99,108,117,103,106,99,95,98,103,113,116,102,118,113,117,116,112,92,104,107,112,101,105,100,104,113,107,90,108,90,101,109,100,112,102,113,101,116,101,99,104,117,109,110,108,120,84,112,78,102,110,106,94,100,105,109,105,105,101,111,94,130,97,106,106,105,108,105,113,100,104,120,97,101,106,104,102,126,100,108,99,106,102,101,101,111,111,93,123,103,93,104,105,109,102,95,114,111,103,95,111,105,109,98,101,100,105,111,100,104,98,96,108,108,104,101,106,96,117,118,100,109,102,94,112,81,108,124,106,110,79,108,104,105,108,102,103,100,101,106,98,113,113,111,112,118,109,121,101,111,107,107,121,110,109,110,103,112,97,103,108,99,98,105,99,109,107,99,94,103,108,104,88,102,117,120,104,104,95,98,99,108,101,94,103,89,102,99,104,109,108,102,109,106,108,104,111,92,106,128,109,108,101,99,101,100,98,98,115,119,106,117,94,103,114,103,109,88,102,94,97,102,99,92,107,107,113,103,104,98,99,105,97,113,90,96,89,122,101,99,106,114,115,98,110,103,102,99,107,101,109,114,99,101,100,104,110,84,105,107,98,105,109,103,110,105,107,99,97,102,104,111,100,104,91,106,87,106,111,99,104,115,106,109,105,105,108,109,102,109,133,119,120,106,114,98,97,97,95,97,102,107,111,110,97,110,104,104,99,99,102,115,96,115,102,107,103,99,114,109,106,82,107,101,105,104,107,115,99,112,110,83,105,109,100,97,107,103,106,101,99,116,109,109,102,105,111,115,112,103,103,116,104,103,99,114,102,107,102,107,106,104,109,87,97,102,98,108,109,117,104,104,103,104,112,108,108,103,112,111,103,113,106,103,98,89,113,99,105,118,104,103,114,108,121,95,103,105,104,111,113,103,100,107,109,89,102,103,105,110,95,99,106,106,111,113,104,106,100,108,109,103,105,101,102,106,98,104,91,102,107,93,106,118,115,121,106,109,109,95,91,109,97,108,106,103,99,104,101,104,109,90,105,101,93,106,72,108,100,108,117,98,104,104,103,106,116,113,111,111,105,113,112,103,99,86,110,99,107,102,106,88,108,110,114,105,120,98,104,108,109,101,132,122,98,122,110,106,89,94,104,105,112,94,86,110,93,92,104,116,86,103,96,91,117,106,108,99,104,100,106,101,102,111,96,104,101,99,108,97,109,98,99,111,106,101,99,110,97,104,103,108,107,102,91,99,118,106,117,98,91,113,113,106,105,109,104,96,84,100,106,108,104,112,110,99,104,126,93,99,97,109,100,108,114,95,102,103,114,106,107,94,103,104,111,102,93,110,98,102,100,105,107,110,101,113,104,113,117,102,104,97,100,105,114,102,108,106,106,102,107,92,100,111,104,101,105,113,106,107,98,110,120,94,106,105,103,109,93,105,95,134,95,109,99,100,104,109,103,106,109,107,108,98,102,102,103,102,107,98,105,104,110,97,99,103,99,88,103,106,110,106,99,96,101,102,102,107,94,101,113,75,94,95,99,89,107,100,103,98,109,110,104,105,104,105,116,95,100,107,104,107,111,108,110,104,110,116,103,98,106,108,100,98,81,100,91,103,90,103,102,118,106,101,93,103,115,102,89,104,108,99,115,99,92,112,113,91,104,109,83,108,108,95,106,95,105,107,113,107,106,105,116,108,104,101,104,106,108,93,97,101,97,102,105,103,99,103,99,102,93,104,84,106,103,97,116,108,103,103,115,102,109,100,101,91,109,104,105,103,106,103,121,108,101,110,112,97,95,111,112,96,114,109,105,121,108,101,93,108,108,104,97,111,103,104,108,100,102,109,109,107,106,93,105,121,109,103,99,100,116,115,99,108,104,106,117,110,101,90,105,79,109,109,113,109,111,108,101,114,112,113,95,104,104,91,102,103,102,107,110,109,105,104,106,104,109,96,113,112,102,104,97,81,89,96,98,100,105,106,103,107,107,117,108,104,109,107,110,94,95,100,105,107,91,102,104,99,87,105,94,99,97,107,103,108,86,101,96,103,106,102,97,111,104,92,111,109,109,124,106,105,99,107,113,107,120,99,89,104,104,111,99,99,103,111,102,104,106,102,93,96,114,98,105,109,102,102,107,109,106,111,103,104,109,109,104,97,89,113,109,99,96,113,111,102,92,102,102,111,94,110,99,114,102,99,101,93,103,105,110,105,80,104,105,116,103,107,111,100,103,100,104,100,104,98,95,102,106,109,110,91,108,107,104,100,68,99,110,104,91,104,112,99,102,122,115,105,100,98,97,97,103,95,110,100,109,95,85,110,94,96,105,111,106,104,106,115,88,95,95,108,98,93,104,94,100,99,102,101,102,116,109,112,91,92,98,111,103,102,106,89,102,106,109,111,96,100,105,108,103,103,100,101,114,109,116,123,105,96,100,104,104,108,104,75,104,99,109,95,108,108,98,99,112,120,104,110,100,100,121,117,112,110,102,105,97,111,104,98,109,95,106,105,102,113,92,105,95,112,94,99,107,104,108,107,105,100,108,109,98,99,103,96,102,113,97,101,102,105,111,105,105,106,93,98,107,104,101,99,94,100,102,104,92,99,108,99,107,104,107,108,102,101,110,101,114,105,104,102,100,105,96,98,101,107,110,105,100,73,96,98,93,102,107,98,96,110,97,93,96,116,96,103,99,104,101,90,108,109,101,89,96,103,101,97,102,101,98,97,96,115,105,91,113,103,110,104,110,84,98,105,98,115,106,125,106,104,99,118,105,109,107,103,109,95,116,92,109,115,105,108,96,99,98,105,96,74,78,84,108,100,102,113,108,105,101,101,107,90,90,109,96,111,96,91,104,103,101,120,103,111,106,105,103,109,101,112,106,106,107,109,112,103,92,102,113,100,109,102,100,96,108,105,102,99,103,99,96,121,109,95,100,102,90,93,109,94,106,88,113,74,98,116,108,97,109,110,103,119,113,109,104,111,110,109,100,85,106,104,108,95,98,97,92,116,115,104,114,110,99,94,94,115,113,102,108,103,107,112,113,96,105,106,94,109,101,107,110,110,99,103,112,109,103,108,104,103,107,110,97,105,96,98,116,95,108,111,91,108,96,100,105,99,112,94,100,107,99,92,110,92,104,119,114,108,96,108,105,110,105,112,109,110,98,102,101,102,100,102,99,95,91,97,89,112,109,93,100,100,90,96,110,102,100,112,97,94,101,100,107,101,107,98,107,104,103,106,102,115,102,112,106,111,99,100,119,99,107,117,96,114,106,100,103,98,111,111,92,107,103,96,110,100,107,94,103,103,107,113,109,121,97,104,100,102,94,106,100,100,94,99,97,102,96,108,105,106,113,111,104,117,92,107,115,92,105,98,106,98,101,112,99,105,108,92,100,109,116,89,99,103,96,109,95,104,123,108,98,115,102,93,91,119,105,91,102,103,104,111,102,102,99,93,95,97,100,93,103,103,124,94,106,106,90,91,107,95,98,89,96,63,94,108,98,102,104,89,91,109,103,117,90,98,111,101,104,110,113,124,110,103,105,75,111,103,96,108,106,121,98,81,83,111,90,106,115,104,113,108,101,104,90,103,88,115,115,89,109,92,100,96,97,95,109,112,102,100,87,101,101,97,95,103,99,109,111,98,107,92,102,73,102,102,92,101,112,100,93,98,108,113,104,111,92,96,105,100,82,97,112,96,100,113,106,112,80,114,100,107,90,103,93,107,91,101,104,124,113,91,112,102,117,87,111,108,106,113,96,100,117,106,100,111,107,95,113,95,114,101,89,104,96,102,115,101,93,109,116,107,92,104,105,111,106,106,110,104,114,102,108,113,82, +521.13495,99,97,106,110,113,99,98,115,89,113,101,94,98,106,112,95,113,99,97,118,116,101,110,98,104,92,103,108,104,116,106,101,91,99,102,109,103,106,100,91,101,101,97,97,100,109,102,94,110,98,100,103,92,99,102,103,114,103,119,89,95,111,114,98,99,90,101,103,105,98,107,106,103,118,98,112,108,112,115,83,109,96,101,97,99,97,112,103,100,92,104,98,112,98,109,113,113,92,84,94,91,104,110,90,119,125,103,108,102,105,103,102,104,106,101,103,86,104,121,104,116,100,110,114,81,110,112,93,104,99,109,96,96,94,110,109,101,102,97,96,102,102,104,111,103,95,111,106,105,107,113,105,134,102,111,105,102,100,108,109,90,108,104,91,110,98,104,94,112,93,103,111,107,99,108,101,109,101,110,102,96,101,108,112,102,96,95,95,98,96,94,96,99,102,92,104,113,111,107,105,90,108,100,121,95,103,95,107,96,100,109,105,105,95,95,95,109,106,94,97,102,97,111,108,97,106,101,112,109,118,104,113,100,100,101,101,107,112,105,111,101,123,106,104,106,112,106,99,96,112,107,102,103,103,91,96,105,107,99,112,101,133,99,94,96,105,107,107,109,108,113,113,116,102,102,113,83,108,96,95,96,98,117,102,126,101,94,105,118,120,108,109,110,115,97,116,104,104,109,106,113,103,101,107,101,100,103,110,110,111,98,103,102,106,107,103,108,113,104,108,100,96,98,97,105,112,93,97,110,109,108,105,106,104,87,101,108,105,110,104,106,107,99,93,106,120,99,114,98,109,86,108,113,102,108,110,111,102,106,99,99,109,105,107,106,104,113,113,109,102,103,112,103,105,114,98,117,98,95,108,95,103,97,95,101,107,101,100,104,95,97,98,110,102,107,90,90,92,100,104,101,99,110,112,98,100,102,104,102,97,96,104,103,103,105,97,109,100,113,91,103,102,106,95,102,105,111,97,107,98,100,112,105,92,98,99,99,94,106,108,96,104,109,92,96,99,104,105,96,99,97,104,101,112,105,101,86,95,100,107,105,95,109,98,107,100,106,113,101,103,107,110,99,101,93,102,94,111,104,103,110,109,110,99,110,97,106,114,101,99,112,105,114,100,90,97,112,94,99,74,95,94,101,108,98,95,95,122,109,103,127,92,103,98,102,119,109,97,110,101,98,99,104,112,114,111,99,109,104,95,100,92,99,84,100,109,105,94,104,125,99,108,102,98,87,97,103,111,101,106,109,118,103,108,98,96,108,99,104,108,101,105,98,109,102,105,91,111,102,106,92,104,103,102,109,107,98,115,99,105,104,94,119,106,101,86,108,101,106,103,106,104,100,117,112,104,110,106,96,95,116,108,107,115,106,95,95,106,99,112,106,103,99,100,102,100,106,96,112,114,101,95,94,100,123,110,96,111,103,103,102,100,95,109,99,132,96,105,116,102,98,116,101,100,103,99,102,103,108,118,95,94,106,102,103,95,98,99,102,105,113,113,94,101,95,100,100,104,102,116,102,111,101,101,109,113,120,102,107,106,112,102,113,95,99,97,107,103,98,104,100,107,91,114,101,106,89,108,101,96,95,104,108,102,97,104,110,110,106,107,102,91,105,113,105,103,94,101,105,97,102,106,105,105,89,110,106,99,108,106,103,96,111,101,102,110,102,101,111,112,89,102,107,109,112,102,107,107,102,97,104,108,96,95,99,115,92,111,103,120,98,112,106,100,107,104,96,104,100,104,111,112,113,108,98,109,101,114,108,94,104,102,100,105,102,117,116,118,84,107,97,101,107,103,106,108,104,102,112,91,107,113,104,103,108,110,99,96,107,104,110,92,111,102,111,97,113,103,113,109,109,103,107,107,105,101,96,100,106,108,102,99,100,125,98,104,120,95,104,110,99,101,86,111,110,95,97,95,98,103,105,97,104,110,99,105,104,109,103,95,106,89,103,109,103,102,106,104,107,95,109,108,109,109,113,114,108,103,106,106,107,117,104,107,87,107,108,116,103,100,110,111,102,111,106,96,105,109,107,112,100,113,106,101,104,111,97,96,102,107,112,107,110,106,103,108,92,104,98,112,105,111,100,109,107,98,101,105,100,105,109,110,94,97,105,113,103,102,101,116,109,103,85,107,104,100,106,113,112,107,110,112,100,109,97,126,103,88,91,106,96,99,93,90,104,117,103,96,100,113,99,116,115,104,107,112,103,91,110,95,92,104,103,97,100,102,111,113,108,99,110,97,113,99,110,93,105,109,121,111,106,96,96,102,109,100,93,107,102,105,104,100,92,114,100,74,104,95,104,90,106,115,86,100,96,99,102,100,99,105,109,104,102,104,100,103,104,91,95,96,99,99,99,117,93,102,91,109,103,101,98,104,104,110,92,94,108,107,83,92,114,102,107,110,105,89,98,108,109,103,85,81,106,112,102,102,110,115,98,104,105,102,96,108,109,98,105,104,103,103,112,104,106,104,82,110,117,97,124,98,103,95,112,124,97,106,93,97,100,113,116,95,105,106,110,106,108,106,103,109,104,114,100,106,104,104,100,97,109,84,100,102,110,98,106,111,94,98,103,103,107,107,107,107,105,100,104,105,99,97,119,99,106,99,97,101,107,104,106,109,108,103,110,89,105,107,96,103,107,103,104,106,106,108,118,96,113,107,100,106,92,112,107,110,122,104,118,103,107,100,121,97,100,106,105,107,91,91,105,113,103,105,115,108,114,107,99,101,109,100,109,122,116,103,110,113,103,102,110,105,106,113,103,103,100,113,116,114,106,97,101,104,108,103,101,102,100,114,102,105,111,112,110,91,80,106,103,118,100,123,95,110,113,110,96,104,108,109,105,112,106,113,103,100,102,110,127,104,110,100,109,119,108,110,110,95,100,99,95,111,107,106,108,99,102,107,112,100,98,125,107,102,108,99,101,112,101,93,96,100,118,107,94,106,105,84,97,109,102,111,118,104,106,118,105,98,111,111,113,108,102,115,108,92,100,96,105,119,108,107,120,103,92,104,107,89,110,94,108,84,104,78,109,106,100,111,105,109,104,100,101,100,106,77,92,105,98,105,100,105,113,105,98,98,107,97,109,112,116,112,112,105,98,120,108,99,108,103,102,92,75,97,101,103,121,101,105,105,102,106,106,113,129,113,110,109,97,102,107,113,108,110,107,104,101,109,108,110,104,117,110,101,102,99,98,101,109,94,88,102,105,102,102,104,104,105,114,106,111,107,111,108,110,110,105,113,104,134,96,84,101,94,101,104,94,105,97,103,111,97,113,103,107,115,97,104,90,112,113,99,106,101,106,113,106,104,119,97,103,98,105,115,113,103,99,103,108,100,102,104,103,63,105,96,113,106,102,104,109,95,102,98,111,106,101,102,104,101,113,105,101,107,104,102,111,119,110,103,102,104,95,106,106,103,103,91,98,124,103,119,102,111,99,105,103,102,108,107,98,103,100,102,112,101,102,100,125,109,104,101,97,106,100,104,119,112,112,110,93,83,102,103,100,107,100,94,104,100,70,108,104,100,99,92,98,109,104,104,111,111,100,106,101,105,109,115,97,100,113,103,104,107,102,113,109,109,103,111,92,109,88,106,126,103,99,94,87,105,102,110,114,111,98,98,99,104,80,103,100,95,88,98,106,101,103,100,85,115,100,105,98,104,112,108,109,94,94,116,105,105,91,95,98,92,108,107,103,104,98,94,96,84,97,107,100,102,114,112,116,97,121,109,101,101,104,92,97,85,105,120,109,103,97,85,106,95,95,95,110,98,102,107,95,111,109,104,112,112,70,99,109,101,98,106,100,104,105,91,97,105,88,104,115,97,98,117,104,108,110,109,126,116,105,104,102,112,108,92,106,106,105,80,114,100,104,102,105,110,113,99,102,107,85,106,106,94,112,106,99,101,102,108,112,100,106,101,100,113,102,110,103,115,110,108,102,107,112,105,108,111,112,109,102,100,103,95,106,106,108,110,113,110,96,104,108,99,100,113,94,100,105,96,110,108,100,92,112,109,99,103,96,109,112,106,100,108,97,108,111,95,96,105,94,104,101,101,117,114,113,98,99,100,88,105,102,104,101,93,106,96,107,114,101,108,114,100,117,104,113,120,105,93,92,107,104,102,112,91,106,102,115,101,105,83,103,99,115,103,101,101,110,108,110,104,106,105,108,113,105,107,111,95,109,101,100,99,103,104,77,105,104,95,105,104,96,109,110,105,113,105,102,102,98,106,96,106,101,103,102,110,117,105,114,108,107,109,108,99,95,102,100,116,95,113,103,98,103,100,103,114,98,94,115,97,105,112,104,102,101,103,114,113,103,101,115,103,118,115,118,102,104,117,105,113,108,106,93,107,100,103,106,103,100,109,106,100,105,109,98,96,101,102,98,107,101,106,98,108,94,91,102,104,101,98,100,98,92,105,95,103,100,101,120,104,101,104,110,96,106,101,103,98,108,100,117,107,100,101,89,88,105,102,105,103,113,110,95,103,103,103,114,100,110,91,109,107,105,102,102,100,114,106,99,104,111,105,110,106,102,98,99,112,115,105,90,101,110,88,99,107,94,104,108,107,106,118,103,97,112,110,99,103,92,112,106,104,101,104,109,101,108,111,107,103,102,103,118,106,95,99,105,105,120,108,98,115,103,110,89,100,103,99,102,101,108,108,108,108,81,104,111,117,110,95,98,100,105,103,111,110,101,100,95,97,107,114,102,107,110,103,90,99,95,108,104,91,115,112,108,86,101,106,119,100,101,108,109,102,102,110,106,98,112,84,106,97,92,95,105,110,96,119,111,108,104,95,102,106,100,128,98,107,99,107,113,109,93,91,118,76,96,94,105,101,106,95,93,93,113,100,100,109,109,100,113,86,106,127,96,77, +521.2757,101,96,98,108,97,101,100,103,97,106,84,108,104,116,114,88,101,101,116,108,114,109,106,119,107,101,102,100,111,70,97,113,106,101,102,110,107,95,112,118,99,94,96,103,115,109,110,98,103,104,106,95,109,111,92,104,113,101,95,101,99,90,121,105,94,95,112,109,109,110,78,102,95,104,107,105,87,108,100,108,105,112,102,98,109,97,101,104,101,95,102,116,99,94,103,98,106,121,113,94,95,103,94,98,108,102,111,108,99,110,103,97,107,99,98,103,107,107,109,90,99,103,99,101,116,97,99,88,104,105,88,103,99,100,100,97,108,106,111,95,121,109,114,110,105,76,99,101,98,98,96,102,108,103,96,122,91,106,101,103,107,99,106,108,120,96,109,98,106,111,104,108,103,102,102,102,105,96,104,103,105,112,108,113,111,106,119,108,112,113,108,116,108,103,104,90,109,108,101,102,97,103,103,105,88,114,97,101,103,110,101,105,103,105,105,102,108,99,101,111,103,113,103,100,105,106,113,105,103,100,102,91,99,100,105,106,118,103,107,99,104,101,103,113,106,95,95,99,105,109,107,100,95,109,94,110,99,106,101,113,107,99,99,115,109,109,106,100,107,93,88,103,104,112,104,91,99,97,108,108,107,106,109,109,102,101,102,101,102,105,112,112,103,112,112,100,108,104,110,114,108,104,100,105,97,104,111,111,103,118,109,115,95,102,113,103,108,115,103,107,102,114,101,117,102,106,102,95,101,117,109,101,114,90,107,106,117,86,104,121,101,109,108,98,110,99,104,104,109,100,112,107,101,105,119,98,99,123,86,100,96,108,103,103,99,93,103,107,101,95,98,99,107,109,115,110,113,104,100,102,108,99,90,105,116,85,98,113,103,107,107,90,96,118,105,124,98,107,99,103,99,101,91,100,101,101,101,112,112,118,108,82,104,106,105,95,110,96,87,102,99,104,106,106,86,102,104,86,116,100,106,109,107,104,104,110,104,109,100,112,113,90,115,107,102,97,107,98,106,109,109,101,94,109,112,110,103,102,84,106,117,101,109,121,110,111,107,100,94,113,107,110,105,101,107,113,101,106,102,105,93,117,115,102,78,102,96,99,108,107,106,110,116,99,114,114,94,95,100,107,114,103,112,112,97,108,109,111,109,96,114,97,106,97,99,89,99,109,110,99,101,111,104,101,101,99,97,103,106,104,106,110,100,109,104,112,98,121,101,100,108,98,99,106,105,106,98,96,113,122,111,93,109,108,109,99,116,92,97,113,99,106,117,105,88,112,113,101,100,116,98,109,102,113,104,106,93,105,106,110,78,98,87,98,102,108,111,118,136,103,114,107,95,103,105,118,110,100,103,81,105,103,117,100,99,108,95,110,107,101,121,106,105,109,101,109,104,108,105,110,111,115,86,95,102,97,104,106,109,107,104,100,112,104,100,106,108,106,103,90,106,108,114,105,103,105,102,105,103,112,97,112,96,111,105,106,113,106,106,95,110,105,109,113,98,106,103,100,109,112,136,84,66,110,95,112,112,99,83,98,95,110,131,100,114,109,101,113,102,95,107,97,98,108,125,99,109,108,112,100,104,118,107,103,105,104,104,110,98,103,106,99,105,99,109,101,108,120,101,101,116,99,90,111,98,100,104,107,105,132,96,118,103,89,115,100,103,98,117,99,114,112,89,103,107,96,116,102,104,113,117,84,97,102,99,117,109,109,109,105,105,98,106,100,100,99,100,102,100,96,101,95,90,95,113,117,109,114,97,101,104,95,103,116,107,105,101,107,102,112,107,107,111,120,103,100,103,86,112,104,107,102,101,100,111,111,104,100,106,100,119,98,103,109,105,110,108,113,98,111,95,109,97,107,104,119,124,106,105,104,103,115,110,106,95,112,101,106,105,104,102,110,109,105,112,107,100,97,108,107,104,91,112,93,96,112,98,111,119,109,95,104,89,113,112,117,100,109,112,98,104,112,123,107,103,108,103,97,104,98,117,100,105,110,105,102,99,100,108,108,95,121,114,107,107,104,103,105,108,122,110,112,112,97,112,115,109,112,109,103,122,99,111,100,103,108,95,104,94,101,104,108,110,114,102,109,106,103,110,106,98,104,98,110,111,105,109,97,103,105,109,96,95,101,108,104,114,107,115,102,110,106,104,114,105,119,127,116,104,95,106,103,87,114,106,100,103,101,112,94,99,110,107,105,105,109,111,101,96,99,97,108,94,103,111,105,98,121,105,97,111,94,110,104,120,110,99,112,117,108,95,106,105,95,97,108,102,101,109,109,102,108,100,110,102,101,94,108,97,100,106,111,101,111,97,118,103,90,102,98,114,106,112,91,106,93,104,111,99,102,110,109,105,118,83,106,103,92,99,105,109,92,74,117,110,106,94,106,109,100,102,92,99,106,104,92,98,77,100,98,101,99,102,113,110,110,110,93,105,99,109,110,101,119,109,98,97,98,115,108,104,111,108,105,101,103,105,106,109,111,108,96,109,107,104,109,102,100,93,110,99,110,113,116,114,89,98,101,75,100,108,103,104,104,104,112,113,104,95,127,128,127,102,105,112,109,103,101,102,109,108,88,99,116,102,105,113,113,111,102,113,91,108,106,107,79,108,102,117,112,103,100,113,79,112,109,113,109,110,106,99,105,105,107,105,98,112,99,74,107,115,103,108,113,110,107,106,102,100,101,100,117,114,100,104,99,104,99,102,106,104,107,104,95,113,106,111,106,101,100,115,114,103,98,99,110,114,107,115,103,110,105,111,100,93,105,95,103,117,111,109,112,96,114,111,105,117,98,114,112,99,77,111,104,107,97,119,103,109,117,106,116,105,92,106,110,102,98,95,114,101,120,112,119,115,99,129,106,110,100,106,108,107,102,113,98,108,97,104,113,107,118,121,116,105,120,101,107,143,108,107,119,102,105,110,107,105,100,112,107,108,101,105,116,106,85,106,110,112,96,98,110,95,105,107,110,108,107,98,108,110,80,111,106,90,112,110,90,99,104,103,91,110,110,117,107,113,115,136,111,113,95,95,109,117,104,106,104,105,112,97,99,106,105,104,111,108,109,103,112,108,112,87,106,112,110,104,99,106,107,117,103,105,112,108,100,103,103,108,107,105,100,109,111,115,113,95,91,120,107,107,107,109,106,114,110,109,96,109,112,102,100,94,102,114,103,115,103,108,112,113,89,112,110,88,107,100,104,99,94,94,113,96,93,114,101,105,106,121,92,123,98,110,120,102,107,104,126,108,103,107,112,95,105,96,109,102,104,102,83,107,107,120,119,114,121,109,94,95,102,116,106,105,111,107,102,106,100,107,84,105,99,116,98,96,110,94,104,111,116,100,102,98,97,103,107,99,106,98,93,96,102,107,107,101,109,107,103,106,90,99,110,127,113,103,103,101,117,111,96,106,103,108,109,97,103,102,110,99,113,102,98,108,97,113,120,80,96,104,90,101,111,108,104,98,108,106,113,109,121,109,117,106,115,107,110,103,113,106,97,100,110,115,106,106,101,116,106,102,106,117,113,123,106,97,103,106,96,104,109,119,102,105,106,104,103,107,113,104,93,107,95,104,120,95,110,109,109,111,119,98,107,98,112,95,102,108,116,92,120,114,107,106,105,113,104,116,104,118,107,98,120,103,99,104,108,105,111,100,102,101,102,104,91,117,99,102,113,104,98,95,104,105,103,96,106,102,106,98,91,106,104,113,98,83,111,104,101,99,98,100,112,106,99,105,106,108,108,95,102,111,120,99,87,108,118,111,106,109,92,103,105,96,95,110,94,112,99,108,122,110,106,94,106,99,127,100,100,93,109,103,105,108,100,109,113,101,108,114,113,104,114,104,106,115,104,100,110,91,87,100,106,92,104,107,73,113,95,105,109,101,106,107,106,89,111,115,105,101,99,100,112,108,112,107,111,102,108,113,102,104,106,99,105,102,108,102,105,106,100,101,105,103,112,101,105,98,109,99,113,102,110,102,104,118,104,109,109,97,114,107,111,107,73,102,115,117,105,115,110,104,103,108,110,107,125,105,109,104,91,119,101,99,97,98,103,102,109,98,101,108,111,109,107,105,116,87,108,114,112,99,114,109,84,109,111,107,97,116,103,101,101,95,114,97,113,107,104,111,106,106,111,108,107,102,103,111,102,90,105,108,103,91,98,105,116,112,117,109,110,98,103,102,114,103,105,99,116,115,108,106,91,105,96,107,98,114,112,99,92,108,103,115,107,95,106,87,102,105,122,116,110,99,104,108,107,113,104,95,113,91,109,110,116,95,106,102,110,87,115,112,116,106,109,111,109,102,114,115,99,109,108,103,102,105,131,102,120,106,110,78,112,108,103,90,109,109,105,94,95,121,113,106,114,102,109,114,102,108,103,101,102,107,104,110,98,104,106,108,113,113,93,105,85,105,106,105,107,98,107,108,94,98,109,108,104,102,104,113,108,97,115,107,109,98,124,90,103,100,92,102,101,99,109,104,98,117,109,105,116,104,96,103,94,106,103,97,108,105,102,105,112,106,100,84,105,107,94,115,93,107,106,113,106,106,111,108,120,109,108,86,97,111,95,99,97,93,102,117,97,80,98,108,116,99,106,113,122,102,106,109,116,99,106,105,105,110,100,109,98,96,113,97,106,95,101,117,105,101,96,116,96,100,103,87,103,96,109,96,99,108,114,112,113,110,104,105,105,87,110,91,104,95,96,103,111,118,107,112,110,115,98,101,112,91,101,115,103,113,102,94,125,107,108,110,101,108,101,104,114,108,112,112,87,108,96,96,99,97,98,111,105,102,99,113,106,101,86,113,110,101,100,95,117,107,91,103,107,94,109,103,112,112,119,109,98,105,117,83,96,97,99,107,106,106,111,98,99,98,105, +521.41638,102,105,109,96,96,97,118,101,98,105,102,90,102,97,106,97,98,117,84,100,107,101,106,99,103,99,100,105,100,97,93,98,105,94,112,100,116,97,104,105,109,106,97,102,112,104,106,97,101,110,107,106,77,102,96,98,101,108,113,112,100,105,91,101,99,118,96,113,114,93,108,108,111,107,89,92,105,112,102,98,118,95,102,110,107,108,102,102,101,107,109,94,101,119,99,102,68,104,118,107,99,96,98,94,133,97,97,88,113,96,106,115,98,118,114,89,118,109,104,109,107,108,118,100,112,110,110,109,109,103,99,103,98,108,104,102,97,101,102,111,108,109,109,105,109,96,95,117,113,109,100,107,108,105,88,108,101,101,116,104,111,91,109,80,107,103,107,113,107,95,120,110,102,109,108,120,111,105,106,104,116,101,103,102,109,108,99,107,100,91,109,100,100,106,103,111,109,105,106,113,105,110,94,104,115,109,100,92,110,106,93,105,103,105,108,115,107,107,104,109,107,125,116,107,106,106,105,122,100,102,103,88,109,112,115,107,105,114,107,98,102,105,107,96,94,103,108,106,117,112,108,107,106,113,109,113,87,99,100,103,94,110,108,102,109,125,104,103,107,100,106,108,114,102,108,103,92,99,100,95,108,106,110,110,109,117,106,105,97,111,96,100,91,112,109,101,106,105,102,106,106,101,101,109,98,112,116,109,102,110,99,111,108,113,98,101,98,105,103,113,104,99,105,108,113,94,118,92,106,100,104,105,103,103,111,108,108,107,106,100,102,113,115,100,106,135,106,114,123,101,109,108,120,112,108,106,75,112,101,117,102,103,108,102,100,100,98,120,91,111,103,102,111,107,112,98,100,100,94,108,112,95,107,109,111,101,101,101,115,103,105,113,95,114,113,98,106,100,106,97,96,99,106,110,107,93,116,106,91,88,99,95,91,105,100,106,108,104,113,98,101,104,109,107,113,94,99,101,100,108,106,95,96,109,106,105,96,101,106,105,103,102,110,103,97,98,94,97,94,110,96,108,95,98,109,102,109,109,102,101,104,99,104,116,109,109,99,100,87,107,110,111,109,100,100,114,108,101,114,105,109,110,103,109,100,89,116,101,109,102,100,105,111,104,102,105,100,98,98,104,101,70,123,137,120,96,96,107,111,95,119,113,108,107,116,110,107,105,109,87,104,113,104,106,104,103,114,117,105,115,103,75,92,97,103,121,107,106,99,113,106,105,107,111,108,113,110,99,108,101,87,110,115,113,103,106,103,100,113,112,110,112,98,121,104,105,133,112,125,124,106,102,96,99,107,113,103,106,110,110,102,108,104,102,89,103,115,97,103,109,94,102,105,113,104,107,96,100,101,91,111,103,116,101,102,101,103,94,95,99,98,103,100,101,100,113,120,104,115,98,112,108,102,104,117,91,78,94,100,105,111,101,100,105,100,106,102,98,113,103,108,104,113,106,94,102,113,101,116,92,104,119,115,101,110,103,99,102,104,118,108,109,126,108,97,104,105,104,100,110,142,105,113,104,100,112,122,102,100,109,127,111,102,99,98,110,101,94,92,112,106,110,102,122,110,105,95,100,108,101,101,107,100,105,96,97,94,106,114,106,102,99,98,104,89,95,106,118,97,77,107,98,117,108,98,103,105,104,93,117,107,95,99,114,97,114,109,97,111,108,112,92,107,110,103,99,114,113,97,115,108,86,116,103,97,104,101,109,108,103,114,114,95,108,105,102,96,107,102,105,126,98,102,91,110,116,103,94,95,110,113,106,107,97,111,109,108,124,94,112,103,112,112,111,112,105,108,114,107,120,107,111,109,90,112,100,107,115,98,102,95,106,100,103,116,106,94,109,91,105,101,120,110,115,113,110,126,120,100,114,129,108,102,88,107,107,110,119,111,112,97,102,98,102,106,106,107,109,110,109,105,106,101,106,97,118,101,108,109,92,104,109,109,116,105,97,97,108,114,124,107,101,103,106,102,109,101,117,101,94,105,103,104,103,110,106,100,110,114,111,112,104,107,116,118,98,101,109,113,99,111,113,125,100,85,104,114,104,91,103,112,104,108,98,102,124,109,108,99,113,119,111,104,115,112,87,99,109,104,106,97,104,107,113,104,107,95,103,119,100,111,110,111,101,107,109,100,107,107,111,114,98,121,113,107,103,114,100,109,108,100,99,103,104,110,104,100,101,111,102,106,111,103,105,109,91,106,108,107,114,107,103,102,99,105,109,115,104,104,117,117,98,105,101,99,92,104,101,112,94,116,76,101,107,105,101,110,103,95,104,94,113,107,113,106,110,114,96,105,105,121,118,119,100,95,101,100,108,110,102,101,94,107,105,109,90,99,116,105,102,107,108,96,102,90,100,108,102,104,110,110,113,116,110,123,112,102,95,107,95,104,108,105,100,104,99,114,106,97,103,99,109,106,110,102,94,94,121,103,100,98,113,102,99,104,101,102,95,104,113,108,119,105,101,98,106,100,93,106,106,91,97,123,98,109,117,104,103,112,103,110,128,118,112,111,80,110,83,106,96,106,87,99,90,96,90,108,108,106,112,99,112,111,103,114,98,98,111,72,98,100,98,106,105,91,108,99,94,106,108,95,99,118,105,101,102,121,100,103,119,110,93,100,108,107,105,93,92,112,99,112,106,115,113,109,109,110,101,107,105,96,103,99,98,101,109,115,115,95,113,106,102,105,102,106,117,99,99,112,117,90,103,102,101,104,108,108,107,117,108,92,100,113,109,98,102,113,119,114,111,103,112,90,109,90,97,100,104,104,119,109,100,98,100,82,116,107,116,109,110,107,102,111,103,84,115,116,103,107,106,105,118,111,91,100,97,91,112,109,102,102,101,102,98,114,97,106,118,114,103,105,119,112,109,118,116,112,112,104,95,103,109,113,106,78,104,111,111,116,101,101,109,98,101,118,109,110,93,110,101,109,98,102,116,108,113,110,118,109,110,101,114,104,101,117,105,107,102,79,96,103,94,103,104,109,96,100,103,112,85,107,104,95,89,106,109,99,101,99,113,102,101,112,117,101,102,122,100,96,108,105,116,114,117,103,107,106,99,111,105,104,117,111,107,106,121,107,104,97,104,112,117,104,108,116,102,114,113,101,102,113,103,99,106,102,98,108,86,100,110,100,115,103,108,102,98,109,104,98,113,114,103,99,100,105,103,107,108,103,105,108,107,104,101,104,97,108,105,115,113,105,95,98,105,101,101,96,100,102,100,107,104,103,121,109,117,98,98,98,103,114,106,94,100,115,112,93,106,110,95,112,101,96,117,103,104,101,115,95,94,99,103,100,94,103,101,103,95,112,96,106,101,87,108,98,109,108,101,102,116,111,107,94,109,103,112,107,116,109,101,103,95,102,108,120,110,101,109,114,125,105,124,95,111,87,108,104,91,98,112,105,115,113,106,111,107,102,114,104,117,103,101,104,104,105,102,98,105,105,95,111,111,110,106,115,94,113,113,113,104,108,109,100,112,117,102,102,98,92,111,102,112,97,109,101,109,99,110,97,107,113,103,112,116,102,100,103,93,107,98,98,95,67,88,108,88,99,107,98,91,97,100,109,108,124,106,99,106,102,100,83,96,113,116,95,121,107,104,111,111,106,100,103,101,111,80,109,107,104,112,101,106,87,104,108,107,75,125,96,98,106,111,103,111,96,102,111,100,97,119,102,106,104,94,104,102,119,111,103,105,103,103,100,117,97,108,100,110,110,105,102,105,104,108,102,114,103,105,113,109,102,117,111,103,117,91,118,107,102,113,97,107,97,108,108,119,93,103,88,108,108,94,112,102,113,108,76,98,106,98,116,101,112,108,83,109,106,101,99,105,106,105,107,103,104,102,108,72,102,111,113,92,98,100,106,95,125,105,108,113,103,99,92,127,116,91,104,104,98,101,109,105,113,102,113,106,101,109,98,106,103,110,101,105,87,104,104,80,93,107,110,101,99,109,97,104,81,87,99,108,112,105,106,114,113,96,90,106,119,69,119,103,106,106,105,98,109,94,107,98,116,106,99,107,105,113,99,101,111,100,100,103,105,108,104,115,108,105,101,100,107,109,107,99,112,107,100,101,95,106,118,92,104,104,94,102,102,105,116,102,103,105,101,98,114,113,101,111,102,100,108,99,102,101,101,101,111,101,106,99,108,102,106,113,105,92,106,116,105,109,107,112,101,110,99,107,106,120,93,109,97,105,108,87,111,109,111,102,101,104,106,98,108,115,98,102,106,111,113,109,107,107,108,104,112,111,109,106,103,103,100,96,100,97,101,94,101,94,109,118,98,107,96,107,112,103,99,107,101,109,135,104,96,112,98,83,110,113,114,109,102,110,109,106,100,109,121,116,111,104,107,109,93,106,104,106,100,106,102,97,108,91,105,97,99,108,112,105,104,112,110,74,100,104,99,111,99,107,109,111,97,108,102,108,105,120,101,101,107,100,111,107,98,104,116,103,112,88,130,95,100,104,98,86,104,98,104,102,99,107,92,106,110,96,111,97,106,104,113,115,98,105,103,80,102,107,113,96,98,115,103,121,104,115,110,121,101,98,102,108,90,94,119,117,97,106,110,87,100,117,95,62,105,107,98,109,117,108,106,102,107,111,103,96,102,109,105,100,111,113,98,95,106,109,113,95,109,98,92,103,107,96,91,104,95,105,105,110,106,107,98,94,95,109,100,99,100,96,109,117,96,102,101,97,101,100,101,105,130,116,112,100,102,99,103,92,98,99,97,100,103,101,103,102,113,108,111,97,102,106,105,108,135,104,102,100,96,93,89,106,80,97,100,96,99,94,111,100,110,110,99,111,97,95,101,80,97,99,99,104,102,94,105,94,106,105,99,97,123,83,100,89,96,105,107,90,105,101,103,104, +521.55713,99,103,92,98,102,112,112,99,113,94,106,100,101,104,108,99,90,104,109,101,119,98,110,110,99,100,102,109,98,105,112,104,91,111,104,113,113,99,119,112,116,106,113,104,107,117,105,111,105,102,96,105,102,104,99,103,97,111,108,102,107,100,79,97,99,121,104,99,104,95,115,98,95,105,97,109,100,96,119,113,94,104,108,106,104,103,96,106,103,105,105,108,95,106,104,106,102,99,98,99,96,117,103,98,105,108,102,99,103,106,99,95,107,106,104,106,116,105,97,107,104,102,106,105,100,106,107,104,116,103,108,111,101,96,87,90,90,101,92,103,99,101,111,99,109,97,117,98,98,121,96,120,104,97,104,79,100,100,109,115,100,99,113,106,100,100,99,90,109,102,102,123,116,96,114,118,107,123,116,104,100,103,108,102,108,99,102,94,103,95,94,107,95,106,105,110,102,106,106,111,109,108,106,117,111,109,115,104,106,107,98,108,118,111,108,116,117,111,96,108,100,103,95,101,105,108,116,115,103,100,104,105,111,104,99,115,111,107,103,108,96,101,106,113,108,106,110,109,110,111,112,109,98,114,103,101,110,97,91,109,71,112,101,107,98,105,101,109,103,110,105,106,111,109,115,103,109,107,104,96,118,115,112,98,119,116,110,108,94,106,101,109,109,112,108,104,95,86,105,107,92,117,103,99,103,107,108,103,104,112,108,117,96,112,113,97,107,108,104,111,95,99,121,107,126,104,102,95,121,110,100,113,108,105,94,103,99,100,106,100,100,108,112,107,100,114,99,109,103,102,104,108,116,103,108,96,104,105,104,101,91,104,82,77,109,104,103,108,99,114,122,91,107,99,103,94,101,107,103,109,74,103,84,110,108,103,99,101,109,99,115,125,101,105,108,120,95,105,105,98,112,103,107,103,105,109,107,105,110,103,99,110,101,114,105,107,111,102,125,90,110,98,88,107,103,128,106,102,108,102,100,100,96,105,111,102,104,101,105,104,109,104,118,112,101,111,104,112,112,107,95,100,100,100,99,103,98,93,114,104,111,113,119,108,106,118,104,96,110,114,112,102,104,100,106,100,108,94,104,98,100,114,110,113,119,101,108,105,109,119,103,99,111,104,99,117,94,113,115,108,105,95,110,102,102,104,106,106,112,99,124,104,102,128,115,108,110,102,107,96,109,108,103,102,110,121,106,109,101,105,108,99,110,105,105,92,100,95,106,115,124,115,100,97,117,111,104,109,108,111,104,106,106,127,105,96,106,93,105,95,96,99,111,115,118,101,115,108,97,111,103,93,105,108,112,110,98,108,110,112,107,114,113,99,105,97,100,104,113,107,106,117,106,111,109,107,104,118,105,98,110,109,105,99,110,101,113,98,100,103,98,103,113,108,102,101,109,109,101,108,107,113,95,109,116,107,96,105,99,96,106,96,105,110,99,111,104,97,92,118,110,106,96,99,99,114,106,112,122,96,102,107,92,111,101,120,108,101,106,100,107,112,104,103,102,126,100,100,102,106,110,98,114,102,111,114,99,102,114,96,106,118,108,110,105,107,92,107,104,101,109,105,109,110,102,101,100,114,105,106,108,100,103,102,114,111,111,113,110,108,99,108,105,106,70,105,109,107,109,100,108,104,101,103,102,109,104,102,123,110,114,102,118,102,101,112,111,105,112,110,102,104,110,108,99,106,109,112,113,105,75,104,110,104,120,121,100,105,103,105,96,102,108,102,96,108,99,114,104,102,112,108,100,100,104,107,105,101,99,103,99,102,111,104,103,111,99,120,106,110,107,104,107,105,110,103,102,100,113,97,109,102,105,105,118,105,101,104,105,114,114,115,101,99,115,105,110,99,104,98,110,107,112,94,105,102,108,97,117,106,91,126,111,115,106,109,74,116,118,100,110,112,99,96,111,106,106,103,113,95,97,114,113,118,106,111,109,107,106,108,99,113,97,116,110,109,111,112,113,91,115,113,100,104,105,105,107,98,102,101,92,99,104,84,99,110,99,110,137,110,97,110,107,103,105,102,117,102,102,100,103,109,108,110,107,100,98,105,93,97,111,87,117,111,94,99,103,104,110,106,120,112,117,97,98,95,95,94,94,122,115,112,108,109,101,115,97,101,105,118,97,105,123,106,91,98,101,103,96,93,100,86,101,116,114,114,116,92,96,108,110,106,112,96,110,106,87,106,115,95,97,101,106,110,101,101,115,102,111,102,99,107,100,116,95,95,103,113,107,105,107,115,113,99,88,101,101,104,101,100,106,95,100,117,103,103,99,116,113,99,105,99,106,110,106,104,99,106,99,102,116,95,119,104,108,107,99,114,102,108,111,112,115,101,109,95,99,121,103,108,105,113,103,104,92,111,99,100,102,117,108,123,109,93,120,100,106,101,118,108,101,114,99,127,116,96,97,111,103,96,98,105,105,107,104,106,110,100,117,99,132,108,105,104,108,110,97,108,113,103,101,101,96,101,100,111,105,92,93,113,117,98,107,102,88,94,109,113,105,107,112,116,94,106,106,105,92,101,97,107,100,101,106,102,101,106,79,106,103,103,109,99,116,109,91,111,112,99,96,91,95,98,98,105,112,109,111,90,100,103,106,98,110,98,102,98,129,102,110,107,102,99,99,94,105,101,102,111,95,97,110,101,113,100,91,98,99,101,90,112,94,116,111,108,100,105,97,113,101,110,105,113,97,110,107,128,100,70,97,96,98,111,95,105,102,107,106,107,98,80,100,104,99,104,104,113,100,103,95,105,109,102,108,96,95,100,102,105,107,103,103,102,94,100,99,121,125,99,108,104,109,106,109,82,105,111,98,103,103,88,99,96,115,99,107,94,105,106,100,105,105,93,110,104,98,106,96,112,108,109,108,119,101,108,112,98,94,93,107,106,109,107,104,102,100,95,105,99,113,122,112,110,92,106,105,101,107,83,106,102,100,114,107,113,98,102,105,100,97,100,96,109,101,95,107,100,101,110,121,99,116,95,99,103,116,103,116,105,105,104,109,106,97,102,106,102,117,97,94,106,83,106,105,98,112,113,114,102,104,107,100,101,99,94,102,100,104,111,110,92,94,113,103,105,100,94,104,106,101,105,109,104,97,119,100,104,101,99,103,115,111,100,92,103,102,95,110,104,97,91,113,91,112,103,106,105,98,103,117,110,100,105,104,108,105,106,102,100,105,102,98,104,102,87,107,102,96,98,108,106,107,103,98,100,101,114,103,109,106,94,109,109,107,115,106,94,96,81,93,92,95,109,98,113,108,94,83,94,119,98,110,102,113,111,107,111,100,70,115,103,115,103,105,91,107,108,96,82,106,99,106,101,108,116,114,109,98,105,113,100,96,99,102,105,109,105,104,96,114,93,96,96,94,104,106,108,96,101,115,123,99,99,108,100,95,109,99,100,100,103,91,109,99,101,103,104,95,115,116,96,103,100,107,73,106,113,116,95,104,106,104,70,104,100,100,106,107,101,99,84,91,111,105,109,103,95,109,102,110,95,111,94,103,95,105,100,105,99,101,115,108,99,102,100,119,107,105,101,103,107,112,94,90,92,101,105,103,109,92,97,105,104,100,104,104,100,100,99,111,105,103,109,99,102,104,96,103,106,107,103,101,106,102,110,99,107,93,104,100,95,97,96,87,98,99,102,93,106,91,97,112,105,101,125,104,102,113,111,99,124,101,108,105,107,106,91,117,102,107,63,106,99,97,94,102,97,103,107,103,104,106,95,97,97,129,105,96,106,99,111,117,102,86,137,108,93,111,109,111,109,118,116,99,106,108,101,94,110,97,107,104,101,108,102,109,104,107,100,106,104,104,103,105,101,98,99,107,95,109,105,113,101,105,101,92,95,98,98,112,117,103,101,106,95,106,103,97,103,93,96,113,92,105,107,102,100,103,106,116,100,104,104,117,102,94,110,100,96,105,102,85,100,98,110,105,108,97,105,91,92,110,116,105,96,111,119,105,97,94,103,95,102,114,102,98,98,106,96,103,93,109,101,102,103,101,99,107,112,99,101,99,102,109,101,106,100,105,110,104,98,98,95,108,109,110,95,111,89,114,95,106,101,91,106,94,105,78,109,94,119,102,96,93,103,110,112,102,111,111,102,96,104,101,108,104,103,100,109,108,91,118,110,110,109,108,100,98,100,100,98,94,114,108,98,107,103,109,106,104,89,101,87,97,103,113,99,106,106,129,104,100,100,101,107,105,112,101,116,112,95,112,108,103,111,104,108,96,106,112,100,120,96,105,99,97,113,123,98,111,96,109,97,95,95,101,91,101,105,102,117,100,120,105,98,93,108,103,96,91,109,100,95,102,107,72,94,105,91,103,97,102,121,102,105,108,111,107,108,96,105,100,108,110,102,96,106,109,89,104,97,97,105,95,108,97,108,98,87,103,93,108,99,96,100,100,97,98,94,99,105,95,97,96,97,95,98,104,95,117,103,97,107,106,106,101,103,108,110,109,105,103,99,115,110,91,99,113,115,111,91,104,107,115,99,114,95,108,107,104,85,102,89,105,105,102,96,107,107,102,99,101,103,123,103,104,110,104,110,85,121,106,91,107,107,102,108,98,106,105,99,113,96,106,113,95,88,110,107,102,97,97,113,109,96,100,87,110,107,87,95,99,102,98,98,96,111,90,104,117,107,91,104,105,103,88,106,104,102,108,101,135,106,106,101,98,97,103,86,95,93,107,104,97,99,107,100,102,97,92,115,89,113,124,101,97,96,93,86,104,98,110,102,102,91,101,101,104,96,96,110,115,93,100,89,102,98,105,93,113,117,113,99,105,101,117,109,110,106,102,90,102,97,101,90,95,115,106,105,110,67,79,92,110,111,102,110,100,95,102,105,109,104,99,116,100,87,95,80,102,105, +521.69781,101,99,96,101,91,108,70,95,107,104,110,90,87,92,106,112,98,109,106,102,107,109,129,100,112,103,107,83,105,112,104,106,111,104,105,99,110,96,98,73,89,90,95,126,107,106,106,96,93,110,107,93,108,102,110,115,103,94,95,99,110,103,92,99,96,99,95,119,106,104,103,99,104,101,108,102,101,91,99,105,114,104,114,106,103,118,98,118,103,112,104,106,108,100,96,94,97,109,78,100,100,102,107,106,85,104,109,118,99,93,105,104,111,110,106,119,114,97,106,104,107,119,110,102,101,98,111,97,109,109,120,121,91,99,102,98,97,109,98,104,103,99,99,104,93,102,104,100,109,96,105,108,105,92,87,102,96,104,102,98,99,93,104,107,103,112,113,105,96,99,137,113,106,92,109,87,100,101,106,109,101,108,99,98,92,126,108,87,98,105,96,94,102,99,103,96,104,113,110,104,105,102,110,102,108,105,106,111,67,103,93,109,105,116,99,103,100,100,93,105,107,104,90,105,95,110,104,99,114,106,99,106,115,103,116,104,99,111,124,102,102,116,113,106,98,108,103,122,101,110,103,105,102,95,100,88,111,100,106,105,79,114,98,109,100,92,106,104,100,107,106,95,127,113,102,123,98,108,109,100,99,114,106,106,111,108,94,109,104,103,94,106,116,107,109,113,111,105,103,100,102,99,107,112,99,103,113,104,98,106,116,113,117,116,107,87,90,99,100,101,106,117,108,106,108,110,110,98,95,117,103,112,103,104,108,126,98,100,102,125,98,105,96,98,98,96,113,95,109,104,101,121,105,110,119,122,96,106,100,108,109,95,109,113,110,105,119,105,100,100,103,99,112,100,114,90,110,87,99,102,97,105,108,84,104,100,100,105,117,92,107,107,109,107,104,82,113,98,102,120,97,96,109,105,104,103,106,99,111,106,117,108,105,113,106,97,86,103,108,110,100,105,93,101,103,98,100,105,99,106,102,109,103,100,103,120,105,104,95,100,117,102,119,120,92,107,98,104,98,111,106,99,100,102,111,95,104,100,114,117,114,117,102,103,105,116,104,91,95,104,101,103,100,111,101,102,107,105,94,97,109,106,107,100,110,108,105,100,91,106,114,107,105,113,111,111,93,106,111,103,116,99,108,104,95,117,101,101,115,108,124,92,111,99,102,95,107,104,108,96,98,100,102,110,117,105,121,92,103,101,96,113,99,115,101,104,112,101,100,108,118,113,104,105,102,108,102,108,105,112,103,110,93,93,100,106,104,138,103,114,106,106,107,97,111,85,91,102,113,102,109,95,118,108,107,100,100,73,110,106,117,95,110,97,95,96,101,104,108,107,110,97,109,111,106,108,99,91,108,125,99,104,106,99,106,103,104,102,91,105,98,96,98,105,104,104,106,106,113,106,114,114,93,90,96,100,107,95,106,116,101,104,102,108,102,103,110,91,116,113,107,93,97,109,95,98,92,101,105,115,95,96,92,99,99,95,100,109,91,103,102,113,94,106,100,106,120,103,110,106,103,113,101,117,98,97,109,106,103,105,108,103,110,108,105,105,100,99,101,106,125,105,103,94,98,96,103,103,110,115,104,96,110,101,99,107,107,99,98,106,103,108,99,113,100,104,97,95,107,101,108,94,108,106,90,96,108,109,108,108,115,107,100,102,107,101,107,95,120,113,101,105,85,97,124,108,97,100,95,105,114,103,89,104,104,107,93,88,102,101,114,130,93,105,88,114,98,104,102,109,114,110,94,97,107,110,92,103,103,97,112,94,116,109,100,100,74,103,103,105,104,97,111,116,111,109,105,122,109,102,101,120,81,95,95,103,108,103,111,114,95,101,94,108,98,107,106,108,119,104,105,107,114,111,120,114,118,106,110,117,116,87,105,91,111,116,106,108,120,117,108,110,113,114,104,94,95,99,101,91,64,94,104,106,88,97,109,110,101,105,102,111,92,99,101,107,104,107,103,98,97,109,137,106,101,112,103,72,117,95,96,96,103,116,101,98,94,98,103,104,111,107,109,106,113,110,108,112,97,92,105,95,113,107,99,101,106,110,104,101,106,105,94,113,94,106,103,95,100,96,107,95,110,108,111,99,100,92,85,114,107,113,91,107,106,116,104,112,105,103,111,105,109,101,104,97,110,92,104,113,106,114,112,105,108,119,94,103,100,87,113,95,100,107,110,99,119,97,109,105,99,108,111,104,104,101,103,87,104,90,100,96,106,95,108,96,92,106,110,99,101,115,108,104,103,94,110,108,107,114,99,106,105,89,100,111,89,112,105,106,95,111,112,112,98,98,97,105,107,112,109,109,101,91,95,107,102,101,114,102,107,106,108,108,108,95,96,87,100,90,101,102,102,82,98,102,94,103,105,103,114,108,98,95,96,105,102,116,115,95,90,109,104,114,113,95,93,107,92,99,103,103,86,99,106,102,106,109,93,98,98,108,97,103,107,112,106,88,120,113,102,120,101,111,102,90,106,98,103,106,112,107,98,106,96,102,99,108,106,103,91,107,104,91,90,105,99,103,105,109,94,87,97,105,117,105,103,111,107,107,93,106,106,104,99,94,102,120,108,76,106,98,94,109,99,110,107,101,102,102,100,96,106,109,92,102,106,101,105,102,106,114,90,91,116,116,96,101,102,124,100,107,104,108,100,107,107,103,108,108,109,97,93,114,104,98,101,108,92,108,98,103,116,102,95,97,108,111,92,98,94,104,109,103,107,114,99,113,104,107,101,113,108,108,108,105,98,103,103,101,96,119,106,102,116,99,109,98,109,116,112,99,93,124,100,95,100,110,105,117,111,102,112,100,101,89,92,111,105,102,112,104,116,103,107,100,123,110,109,106,95,96,118,102,84,100,98,110,99,115,100,101,99,109,110,106,107,107,88,107,93,112,105,103,96,106,105,108,129,146,93,105,97,105,99,96,107,99,110,115,96,94,95,107,103,104,108,100,121,98,100,118,109,108,116,115,108,106,115,94,107,104,104,109,111,114,105,127,106,111,116,88,95,108,118,101,112,104,99,102,107,115,113,109,99,117,109,109,105,102,96,96,99,93,99,104,110,100,112,121,110,109,128,105,113,112,101,105,111,103,103,105,102,114,102,99,106,116,107,106,104,97,77,91,95,99,115,102,110,95,91,102,113,110,107,95,108,95,110,112,103,116,100,113,105,105,100,99,109,93,103,105,105,108,106,100,92,103,93,116,101,86,94,119,96,112,116,103,106,90,116,102,103,106,97,105,98,99,98,97,107,109,108,102,101,111,107,99,95,89,96,100,110,97,108,114,97,102,114,103,111,108,106,106,115,107,100,61,106,98,106,103,102,94,106,113,106,104,107,108,96,105,106,101,112,91,109,106,115,99,111,103,101,90,87,113,105,97,100,103,105,99,97,112,107,103,111,104,118,106,101,106,109,99,102,104,95,108,86,109,101,108,75,99,107,107,107,104,101,110,108,105,109,95,112,106,105,119,113,103,111,113,110,110,100,99,117,98,113,98,99,98,103,105,104,107,135,96,106,112,112,109,99,99,107,121,97,93,97,98,102,104,112,97,103,101,108,108,98,96,99,105,100,103,106,110,103,99,90,91,87,102,116,103,101,101,103,74,96,105,96,90,112,85,100,96,108,109,103,108,118,103,99,103,102,112,83,102,113,102,91,113,120,112,109,99,116,110,100,106,103,109,88,106,109,98,108,105,92,101,90,107,102,102,92,102,110,92,102,97,114,103,94,106,105,123,104,92,101,117,98,109,105,100,95,104,107,96,115,105,103,125,107,121,103,108,122,105,116,118,96,99,126,94,101,115,108,102,98,105,99,111,106,113,98,109,95,104,104,100,95,104,105,96,106,91,102,105,122,105,105,98,105,102,111,103,91,100,94,101,101,100,106,114,100,100,98,95,90,97,108,115,113,106,111,115,111,109,110,103,108,107,104,96,103,103,113,96,99,105,94,92,96,105,106,133,102,107,100,114,115,113,99,102,108,105,93,106,86,117,110,115,103,103,113,113,77,110,115,117,104,110,96,104,108,113,104,107,109,106,101,112,93,106,103,109,87,116,96,106,113,101,109,104,106,108,91,107,104,95,99,97,105,88,110,107,106,117,99,106,104,105,100,99,111,109,97,93,99,102,103,104,110,97,108,105,97,101,118,112,99,94,106,104,82,110,96,104,116,100,112,107,99,113,107,104,95,104,104,100,95,99,98,96,100,107,108,106,107,110,68,103,106,106,95,107,102,101,104,105,102,109,125,113,111,108,101,90,100,104,103,102,122,115,115,87,99,104,104,111,106,102,114,94,108,101,112,104,101,105,102,98,116,99,109,99,107,100,99,100,103,99,112,110,109,97,105,92,105,94,98,96,103,92,102,106,95,99,106,96,101,103,88,107,107,114,110,111,110,111,121,100,103,91,112,101,100,108,113,111,103,106,113,102,96,100,101,112,112,110,101,104,106,107,103,99,96,98,97,106,90,87,102,108,99,95,105,124,108,109,105,109,100,98,109,116,98,114,119,94,108,93,92,108,98,113,93,110,117,109,97,109,122,106,117,101,109,102,102,91,98,99,101,105,103,102,98,92,105,93,108,110,115,101,95,105,139,98,87,95,104,100,103,91,106,94,93,95,102,105,93,99,91,96,89,107,105,91,112,108,108,98,103,107,108,96,104,106,107,100,98,98,112,105,99,97,95,97,93,104,98,94,103,112,111,91,99,109,115,126,115,95,109,92,111,85,103,103,104,99,97,96,94,95,116,102,98,84,84,109,123,106,100,102,106,98,114,114,103,113,116,97,95,102,103,98,96,107,94,121,95,121,104,103,92,103,72,115,104,101,107,98,97,109,102,97,107,111,99,100,102,111,110,100,111,112,93,93,112,110, +521.83856,88,95,96,104,96,91,95,100,109,105,101,105,106,109,104,104,104,113,107,92,103,109,107,104,95,110,114,112,97,108,97,107,100,100,109,102,101,105,97,99,107,109,107,104,103,107,100,99,102,109,100,100,112,90,117,105,103,90,105,93,94,129,106,97,108,115,103,113,97,100,100,102,106,100,101,108,109,111,101,100,106,104,100,116,100,104,93,107,102,99,107,109,111,99,104,104,117,98,100,109,95,99,106,102,114,113,94,113,105,99,106,105,111,87,110,106,97,102,108,108,94,118,120,100,100,103,115,109,115,105,89,112,97,103,99,105,108,98,97,108,95,109,104,86,98,111,114,101,103,92,130,92,107,101,91,91,116,99,105,105,106,106,104,111,101,103,104,103,85,111,104,114,103,98,112,100,102,99,107,101,114,101,106,110,104,94,108,97,91,104,110,103,87,81,114,102,111,119,96,106,102,106,99,100,108,116,100,114,110,87,101,113,106,102,118,116,101,112,97,128,119,102,113,118,103,105,105,106,104,105,106,105,112,102,99,106,105,105,113,98,93,124,110,103,103,118,101,103,116,109,102,110,107,102,109,100,103,104,98,113,95,102,90,95,94,114,108,100,116,106,96,99,107,104,112,113,95,108,105,100,112,98,107,104,107,96,92,100,113,84,82,97,114,99,115,96,112,117,103,119,99,115,108,106,106,106,95,101,96,104,107,112,102,103,102,96,106,110,97,103,94,112,106,110,80,98,104,92,117,104,100,114,95,109,114,109,107,101,109,110,119,98,104,87,106,110,91,87,117,102,103,94,109,101,92,113,107,111,107,113,105,106,97,105,100,108,108,121,98,115,112,102,109,97,109,114,104,114,105,112,110,104,109,105,97,108,108,110,105,102,111,105,103,108,101,103,97,105,108,112,101,110,100,102,112,112,118,101,103,103,100,101,107,96,105,107,106,92,113,105,100,99,91,109,105,113,102,108,104,104,96,102,104,98,100,119,99,109,108,105,107,99,99,102,100,104,102,106,113,98,104,108,101,112,108,93,96,98,113,104,104,106,109,100,107,102,113,104,115,102,103,110,110,95,103,109,108,119,111,105,109,109,104,103,111,100,106,101,102,108,106,101,106,107,92,102,100,104,106,102,94,108,103,103,94,104,110,95,106,105,103,106,105,101,100,106,104,94,112,95,98,107,98,101,98,96,102,99,110,107,96,104,107,112,75,102,102,106,115,113,99,118,95,108,125,105,123,109,111,93,106,99,110,91,81,100,103,89,98,110,105,114,109,92,96,71,98,98,116,108,104,107,103,104,114,116,105,107,87,113,109,104,101,107,99,116,111,103,80,112,113,104,88,99,111,100,114,98,105,94,94,112,98,108,109,102,108,85,92,106,100,105,93,102,98,108,104,105,103,115,98,111,103,97,103,106,102,99,102,102,94,102,97,99,100,105,107,103,98,94,120,104,107,97,99,103,101,95,114,112,102,88,103,108,101,103,99,102,111,105,108,114,98,105,92,106,94,96,110,108,100,101,105,117,99,95,113,104,121,114,96,105,105,101,103,99,94,98,105,112,108,97,108,108,98,99,107,118,97,99,112,102,99,111,108,100,120,103,104,113,97,103,109,88,98,107,105,92,110,98,112,108,115,95,104,109,101,108,118,108,128,115,102,98,110,110,106,109,106,111,111,99,99,104,117,119,103,125,104,111,113,98,97,109,118,101,110,102,105,100,99,108,94,102,118,108,110,101,104,101,107,96,112,114,110,105,99,114,110,108,112,108,101,113,110,106,98,108,106,113,95,109,94,91,107,102,101,108,100,101,103,108,99,100,103,105,86,101,99,104,107,105,101,104,109,109,104,110,112,104,107,91,105,106,103,102,122,105,113,86,111,104,118,100,104,104,96,96,105,118,103,114,105,108,103,100,96,100,112,105,102,98,107,113,105,108,98,104,103,113,112,109,101,103,103,103,97,104,105,110,114,107,110,107,109,95,110,112,111,103,113,108,106,105,98,95,111,100,75,102,106,108,99,102,104,109,106,105,111,107,100,93,99,115,104,111,102,99,106,109,121,98,107,115,104,108,97,102,101,103,108,100,104,102,103,101,129,108,115,101,106,99,101,103,93,107,107,104,105,101,105,105,93,111,109,109,97,98,97,112,94,120,114,108,100,105,108,104,128,97,103,90,106,108,109,103,101,111,96,106,87,100,111,113,102,109,111,102,100,86,101,118,104,107,106,116,101,105,97,97,111,99,134,107,106,117,101,99,104,107,103,98,103,109,105,91,100,99,100,104,109,108,101,103,105,113,97,101,105,96,107,116,112,104,116,99,104,99,112,141,112,105,104,106,95,97,109,95,105,96,113,104,93,97,100,102,103,105,108,109,104,96,113,106,94,111,103,105,107,111,97,112,104,94,99,109,108,68,110,95,98,100,100,104,98,100,94,108,109,105,105,103,108,107,107,105,103,91,109,117,101,103,107,95,103,105,108,94,110,108,108,118,107,105,111,107,109,103,108,101,103,115,116,103,108,85,93,111,97,117,100,109,102,104,102,112,98,101,110,107,102,115,100,98,102,104,96,93,94,105,100,93,91,120,91,97,100,116,96,98,104,96,119,105,102,90,110,101,99,72,113,93,99,87,107,113,108,102,99,102,114,102,94,104,108,96,114,103,106,101,98,111,106,93,102,104,113,91,102,103,99,95,110,116,104,109,115,103,108,104,107,115,109,95,112,108,101,110,103,115,95,113,90,101,107,120,102,112,101,98,104,107,101,107,121,108,110,110,113,92,100,100,102,106,105,108,102,98,103,113,108,105,110,96,91,103,106,106,113,110,107,106,109,111,98,104,99,103,92,114,63,88,86,117,102,103,111,105,121,107,106,98,106,113,105,99,106,97,100,119,121,109,113,100,111,94,113,103,103,108,100,103,94,105,106,118,95,107,78,93,104,103,103,121,99,106,108,105,102,121,91,106,103,101,102,106,111,106,104,99,103,106,109,108,117,117,104,83,100,87,115,94,101,105,105,93,102,98,107,96,103,103,105,110,102,108,101,103,99,104,94,109,102,112,121,98,116,102,113,103,113,106,105,104,114,106,102,105,101,98,97,117,111,109,118,107,103,103,95,101,108,97,103,109,104,94,100,105,101,102,106,101,103,98,107,109,106,96,109,111,102,110,100,111,99,102,93,105,105,104,95,107,102,95,96,106,98,102,103,109,106,96,97,104,97,111,115,84,99,98,105,104,105,117,102,101,104,124,105,109,103,99,104,97,112,107,105,115,99,110,111,104,126,99,104,103,111,107,109,99,96,109,93,114,113,100,102,76,80,106,109,121,99,98,111,100,95,101,107,105,110,104,104,88,98,101,100,100,94,106,113,108,96,103,102,113,101,109,119,121,104,111,112,101,105,105,107,97,100,107,104,106,91,103,106,116,101,99,95,105,97,117,78,96,104,106,102,96,101,100,99,97,102,106,99,101,105,100,120,95,105,100,104,110,101,110,100,101,117,103,111,105,97,112,97,105,102,117,99,106,108,90,127,109,104,119,112,117,97,116,107,98,97,101,106,111,98,103,106,104,104,104,103,112,110,105,117,103,100,96,102,96,120,116,107,100,95,101,109,116,95,107,113,100,101,99,115,95,97,115,105,113,111,98,106,85,88,104,96,108,102,106,102,103,110,93,101,70,106,102,119,104,84,106,112,98,108,106,99,111,102,107,105,103,107,99,106,103,99,97,109,105,103,105,106,102,105,101,108,103,100,101,103,111,115,103,91,99,104,95,106,108,91,125,99,96,130,110,93,116,109,102,81,103,100,102,102,100,93,116,98,100,107,101,91,100,125,110,112,91,95,103,101,117,99,97,112,100,109,109,98,98,100,113,108,106,103,96,98,96,105,105,100,96,106,95,102,106,107,95,99,97,110,117,108,103,101,104,110,110,105,102,96,96,99,97,105,87,93,106,93,98,110,99,104,106,107,112,94,104,98,117,107,101,108,101,100,123,107,102,123,105,103,106,100,101,108,104,115,103,111,100,99,105,105,98,105,104,110,97,115,108,100,111,88,111,100,111,109,92,103,109,99,113,117,105,97,104,108,110,104,105,102,102,105,107,106,84,115,106,93,108,129,104,108,119,109,105,107,114,101,97,96,121,95,104,98,102,94,102,109,119,121,98,102,101,99,117,103,102,113,107,105,100,101,96,104,109,96,104,112,90,105,87,102,111,107,119,108,113,100,94,114,103,94,128,104,105,102,110,103,94,101,100,104,103,112,102,106,105,114,116,98,94,84,102,106,105,99,116,112,110,119,100,106,104,113,107,126,103,110,96,99,96,123,98,102,92,113,113,100,115,102,114,104,107,98,113,104,100,96,103,106,103,103,105,109,118,96,119,96,98,101,113,108,103,95,107,115,94,110,95,108,95,93,103,102,102,99,100,104,108,121,105,101,94,103,102,104,100,121,109,110,102,101,109,100,97,100,107,94,99,101,100,103,93,105,105,96,95,90,87,112,104,106,87,107,107,98,99,104,109,87,104,95,109,107,94,105,113,120,115,112,99,109,101,116,109,98,92,103,107,98,113,109,109,100,108,76,109,101,103,110,119,107,111,101,109,117,99,111,106,104,99,106,90,112,104,92,98,91,98,126,100,96,107,99,105,102,107,100,102,107,100,105,121,106,82,107,94,99,112,107,111,118,115,105,102,105,104,111,105,99,101,103,98,113,97,104,100,101,105,95,117,100,106,101,95,90,79,108,100,112,98,110,103,113,98,96,110,100,105,105,100,106,101,102,119,112,103,104,101,100,93,128,108,104,98,94,94,103,99,101,98,93,110,106,105,121,90,105,94,106,95,107,104,98,103,83,100,88,106,97,110,110,87,108,106,103,92, +521.97931,108,85,91,110,107,105,106,109,95,105,96,107,93,109,103,94,73,90,104,110,102,95,92,94,85,90,106,93,106,96,90,118,109,105,112,103,112,99,98,96,98,102,88,95,106,110,90,107,102,107,81,116,95,92,95,98,104,103,110,103,108,102,115,93,99,107,84,98,96,114,111,100,98,104,98,113,93,105,94,105,118,110,105,125,93,99,107,87,99,98,122,106,97,108,105,105,98,104,102,109,102,100,101,98,100,98,102,97,96,107,95,103,107,101,110,108,96,95,104,97,100,110,98,100,105,111,112,98,102,105,102,100,97,116,109,109,103,111,111,102,95,103,112,99,94,107,114,112,111,85,86,100,93,107,101,101,104,90,112,99,87,104,97,105,98,102,112,93,102,107,96,91,103,100,106,115,111,97,104,108,107,99,96,115,98,119,97,101,106,103,105,106,109,109,100,103,107,103,101,116,110,122,99,72,104,124,100,113,112,116,98,112,102,102,112,101,116,111,91,107,105,111,98,109,102,109,105,104,116,102,99,104,105,104,113,112,113,99,112,74,100,98,114,99,91,100,101,110,107,110,105,101,104,105,97,97,109,111,95,109,110,98,94,100,96,107,113,112,106,110,94,102,109,101,116,94,98,108,111,104,114,89,101,108,108,103,110,99,102,100,103,101,110,99,104,98,104,114,101,94,102,98,108,103,105,112,95,119,77,108,87,100,104,107,100,101,100,93,97,109,109,91,77,99,112,99,108,91,112,112,95,94,105,104,107,106,107,85,106,111,107,105,109,100,96,108,101,102,106,113,99,94,91,99,111,113,111,68,97,104,109,99,107,95,100,85,103,107,110,106,93,110,105,104,116,104,112,107,91,100,91,99,90,105,104,97,105,86,100,105,111,103,107,114,113,94,98,99,102,103,105,110,84,95,119,98,99,86,112,102,95,106,105,108,106,92,106,103,109,98,102,95,118,117,105,95,104,104,92,110,98,120,90,94,108,102,99,107,104,109,111,104,108,99,93,112,98,101,98,109,116,107,101,113,101,107,102,99,82,107,109,117,98,99,104,105,104,86,117,91,109,99,104,101,108,99,103,120,100,108,93,98,117,105,100,96,86,115,108,99,98,100,102,97,111,96,110,106,113,105,106,104,113,104,112,105,91,90,103,100,114,121,91,106,103,106,110,104,105,107,113,103,107,101,107,107,97,115,96,111,109,108,114,101,92,101,99,92,99,94,104,99,107,96,102,95,116,99,108,111,100,106,99,102,98,103,107,94,91,99,117,98,108,109,103,100,111,120,101,100,97,98,117,104,110,107,116,101,107,111,114,115,104,106,102,99,104,91,103,114,107,109,103,105,106,96,106,113,113,102,95,119,103,109,100,99,107,100,101,112,101,109,100,101,98,96,109,97,114,104,78,89,100,107,121,107,94,99,102,106,110,110,104,115,99,104,101,106,109,110,119,101,109,105,90,93,103,99,87,107,105,112,106,109,99,100,102,108,102,98,115,114,101,79,112,104,106,102,133,110,107,94,128,116,99,108,99,100,125,105,101,109,100,100,78,108,96,108,106,106,102,108,103,92,106,119,121,114,105,103,107,99,104,108,104,104,91,108,100,102,101,97,113,105,110,98,107,103,100,110,108,101,101,108,98,117,104,110,110,111,112,103,103,101,87,94,100,111,95,113,118,110,102,109,95,102,101,103,96,108,106,99,99,111,93,95,97,108,104,103,100,108,99,107,106,95,102,103,105,108,104,117,113,104,106,112,105,110,101,109,114,105,117,103,101,99,121,111,96,110,107,103,103,110,103,108,100,119,99,106,102,113,101,99,104,94,94,105,99,92,118,103,107,96,108,106,104,111,108,103,103,113,104,103,94,117,110,103,89,104,111,104,108,111,105,111,99,118,106,104,103,99,106,104,101,105,118,106,110,87,103,97,99,105,107,110,111,116,120,97,102,98,104,113,108,105,96,104,110,110,117,113,102,107,114,103,108,107,111,109,113,103,94,109,96,91,91,110,112,92,98,103,104,104,121,91,100,110,111,132,100,104,115,97,105,95,104,115,102,99,102,96,103,108,96,101,106,100,113,104,108,102,123,94,107,110,100,95,119,107,103,103,112,119,100,110,116,91,103,101,102,103,116,101,98,103,106,102,94,112,109,100,108,106,105,101,107,119,100,103,96,99,107,94,97,110,94,100,98,104,114,94,95,92,111,85,98,97,104,99,101,104,97,104,103,105,110,100,117,100,95,98,112,100,96,92,113,111,96,102,104,100,108,113,98,109,110,91,100,101,102,101,104,104,100,111,110,120,108,91,111,109,95,110,97,99,91,90,107,107,101,91,122,95,96,92,100,119,116,97,86,93,109,107,104,106,109,102,93,112,100,106,110,105,100,97,99,105,103,99,104,105,108,101,102,104,116,120,100,108,98,106,107,103,94,104,82,103,89,98,99,103,101,117,103,119,105,107,110,111,110,108,105,125,105,109,88,111,117,103,110,119,109,94,98,113,98,111,109,91,99,116,103,118,116,111,116,114,98,108,128,101,96,111,109,95,108,102,113,107,109,109,106,102,113,108,96,102,106,105,108,98,113,100,102,108,111,106,104,106,105,78,102,114,97,99,102,94,102,103,115,97,105,93,104,95,109,98,104,113,96,106,103,96,95,111,106,88,103,102,106,109,117,93,112,116,104,105,109,106,100,109,108,106,101,96,105,96,106,99,104,101,107,102,103,104,103,105,109,112,103,99,107,105,106,104,90,99,117,101,108,107,100,100,105,96,104,107,101,99,100,103,100,99,110,96,114,102,107,113,118,108,112,101,101,105,109,117,97,95,98,111,98,111,109,100,109,103,98,109,101,63,98,110,100,105,108,105,105,110,97,87,114,117,102,103,109,110,108,112,107,102,109,108,106,103,105,109,91,101,109,114,102,111,108,102,116,99,115,110,95,110,111,113,109,99,102,114,100,90,100,81,101,103,106,119,110,107,98,105,103,108,98,107,113,99,106,90,105,117,107,95,95,116,114,102,115,102,105,115,113,109,109,112,107,110,116,101,109,105,98,115,100,91,123,99,105,103,94,105,110,107,115,115,112,108,110,96,108,107,90,109,104,111,112,101,107,116,105,104,102,97,108,66,113,98,106,97,102,105,120,101,106,99,104,113,101,124,112,125,100,104,89,98,113,103,114,124,113,112,104,88,111,102,96,106,93,117,118,110,106,107,79,99,112,102,110,125,112,110,103,101,102,110,105,108,104,117,101,115,100,109,103,98,109,111,110,112,103,104,111,103,102,100,103,110,111,96,104,107,109,108,104,109,112,106,99,107,103,96,97,107,105,106,98,116,113,108,105,115,91,100,101,101,104,116,124,98,106,113,99,113,104,103,102,104,104,104,113,106,96,117,104,102,93,113,104,123,116,106,105,109,102,102,112,102,112,124,103,94,93,101,119,106,96,112,109,105,108,88,120,111,111,107,98,91,116,102,116,109,106,109,96,104,109,117,93,106,91,99,108,108,102,101,98,94,110,105,95,99,105,93,87,95,120,107,99,106,128,110,112,100,107,100,95,115,93,106,108,95,121,105,103,118,108,101,99,103,108,115,97,104,114,96,100,111,108,106,99,107,100,100,103,115,114,106,116,103,104,111,99,99,95,109,100,101,91,104,103,109,109,109,109,93,92,100,110,116,102,109,91,104,106,119,107,103,110,111,111,108,103,107,112,109,113,102,111,109,107,98,101,103,113,108,115,100,107,109,106,103,108,102,117,116,109,98,99,98,105,109,103,95,99,115,101,103,100,95,111,108,106,115,112,105,112,103,107,94,101,106,119,123,105,89,111,105,109,107,113,98,98,105,97,113,99,106,104,109,108,114,104,117,80,106,109,113,104,105,101,103,104,97,103,94,110,103,100,105,124,105,100,98,103,106,106,100,100,95,117,107,96,106,103,107,98,109,115,102,98,98,94,107,99,105,103,116,109,123,95,113,110,119,98,108,106,97,108,101,109,100,113,113,111,106,108,104,105,101,98,104,103,108,101,113,104,112,106,113,92,109,105,103,108,105,93,99,114,111,106,110,94,99,95,99,112,102,105,108,99,107,113,96,116,106,119,121,122,97,103,96,105,99,100,115,96,108,104,97,106,109,100,104,98,96,111,113,102,113,95,103,116,113,98,105,106,110,105,100,99,100,108,104,102,95,80,106,106,100,99,107,110,98,104,106,104,107,99,95,105,100,110,105,114,109,100,94,100,104,98,102,108,103,76,121,100,115,104,105,104,104,113,116,110,103,98,96,92,108,103,117,104,105,94,98,109,110,105,102,86,104,113,97,103,106,101,99,98,105,100,99,103,101,112,97,105,117,106,100,102,101,105,117,107,108,96,110,105,104,111,75,101,90,100,106,99,107,108,112,90,102,117,105,111,100,105,90,94,103,109,110,113,99,104,102,105,109,103,88,109,86,105,105,110,117,98,110,110,112,107,95,95,105,93,121,94,103,102,107,107,89,97,108,95,99,104,113,108,103,110,103,111,100,108,72,104,98,105,113,106,104,96,97,115,101,108,96,108,113,94,99,90,88,104,108,100,100,116,113,94,110,90,114,102,102,95,101,96,98,92,103,110,103,97,99,100,79,113,103,106,99,95,103,103,104,92,101,109,106,103,94,100,108,103,97,100,105,106,105,94,104,104,116,101,109,102,92,104,94,106,109,105,105,106,100,105,100,98,102,101,102,98,99,115,89,99,95,101,104,96,105,109,96,108,106,96,103,99,108,112,87,109,97,100,106,103,105,96,101,106,110,117,102,103,100,108,107,109,113,108,94,98,105,95,101,102,109,106,114,114,100,92,98,101,100,99,110,107,99,100,107,103,105,104,125,114,101,105,102,103,106, +522.12,101,116,102,103,102,108,112,94,115,88,105,120,101,112,98,99,106,124,100,103,109,107,100,103,100,106,102,102,95,105,104,100,98,107,116,91,101,96,101,100,101,112,107,118,100,108,105,115,106,112,83,101,103,105,100,111,99,105,109,102,98,117,103,103,102,109,103,109,97,99,111,107,122,103,105,110,105,111,108,102,109,114,102,107,102,114,103,113,105,103,100,113,105,115,106,98,101,106,103,92,108,107,119,102,113,100,106,101,108,116,117,95,101,111,106,94,105,103,109,107,102,106,105,117,94,112,124,108,105,124,105,99,108,116,105,108,102,98,96,89,104,104,93,103,102,104,106,101,101,98,106,109,112,92,100,109,99,107,97,103,107,102,110,108,108,112,111,111,108,108,105,109,105,102,103,106,102,88,108,120,105,108,110,107,121,113,99,91,99,102,101,104,105,100,94,101,112,109,105,125,102,86,109,101,99,101,117,111,110,112,104,104,110,113,98,106,105,113,96,98,109,105,113,105,105,107,96,106,107,111,105,103,110,98,104,102,107,103,92,99,103,118,114,112,88,114,100,101,109,105,99,105,103,101,103,98,105,106,103,113,101,106,110,95,94,99,106,107,90,106,109,103,107,98,109,105,100,103,116,109,93,95,96,105,103,106,106,109,100,105,107,112,114,105,116,113,107,112,107,109,95,116,105,103,100,107,108,100,114,107,92,115,106,105,110,114,106,109,99,100,105,106,113,117,103,101,103,105,120,130,106,94,113,105,101,115,115,103,100,103,104,111,98,99,106,122,117,115,124,117,125,94,109,111,94,104,103,103,108,108,103,109,112,105,89,102,106,113,102,108,107,118,100,105,100,94,103,103,103,103,97,122,112,141,108,114,102,102,113,97,107,108,109,109,104,100,101,104,105,113,111,114,105,103,103,99,77,103,103,95,86,105,100,111,105,92,121,106,107,109,113,96,115,108,115,113,106,103,103,109,99,102,113,102,103,113,92,100,103,104,109,99,103,109,94,103,110,111,116,105,99,102,107,123,102,107,105,99,105,106,109,97,108,90,100,95,108,113,109,125,109,117,98,100,107,99,94,120,100,109,124,116,102,104,100,117,110,104,106,102,110,120,90,93,102,107,99,103,105,97,94,111,113,108,102,114,109,108,95,93,112,105,107,101,114,115,87,102,94,107,114,97,113,116,107,98,91,108,102,101,109,103,105,113,116,109,115,109,104,101,104,111,100,91,104,104,108,87,125,108,102,99,115,103,108,102,108,108,95,93,100,106,97,114,106,79,105,106,110,105,94,99,80,109,106,106,108,105,93,108,105,90,84,108,96,78,109,97,106,91,113,118,110,105,116,107,102,107,107,106,95,106,111,98,113,97,106,108,94,110,102,92,104,105,94,94,110,100,115,103,110,124,95,89,104,107,102,97,102,102,102,102,109,117,113,108,108,107,123,102,108,114,99,103,99,96,95,101,106,110,103,111,112,99,107,99,112,102,107,112,114,107,101,116,111,94,106,97,95,105,98,96,108,99,96,91,117,117,121,97,106,103,104,94,93,100,102,90,93,103,109,104,102,103,106,103,100,102,96,97,102,103,95,100,111,110,107,100,103,108,105,101,104,106,113,103,104,94,107,106,118,110,101,112,99,108,113,103,106,86,105,100,109,103,109,110,102,104,115,97,104,108,103,105,111,100,101,103,105,105,108,103,100,108,109,99,109,110,97,98,107,111,107,97,102,114,106,104,99,105,108,101,107,102,102,124,92,110,109,114,95,102,116,111,115,105,97,110,106,117,109,104,99,107,97,107,96,107,102,104,99,106,109,94,100,96,102,107,113,107,112,100,104,103,108,92,110,113,109,110,109,101,101,109,80,117,110,100,100,106,132,103,107,102,110,122,102,103,121,106,101,105,101,117,105,110,94,107,111,101,107,97,96,97,103,99,99,101,104,107,107,101,108,100,104,105,96,111,108,98,109,116,102,104,105,104,110,102,105,100,96,102,102,103,110,101,129,107,108,102,106,111,100,111,110,104,106,104,97,111,103,107,116,104,102,108,98,101,98,107,100,102,104,115,117,107,89,98,115,104,89,103,118,102,117,101,101,106,100,99,105,112,115,100,109,111,89,121,103,112,113,108,105,100,108,103,105,110,105,115,107,121,111,101,122,103,106,102,87,95,101,95,105,101,108,103,104,108,105,106,91,105,104,89,107,116,109,105,103,107,104,102,90,115,113,83,104,100,108,104,108,103,98,103,109,103,108,113,109,104,112,98,88,108,109,109,107,100,91,94,112,106,104,104,108,112,105,100,112,98,105,107,98,101,114,100,106,96,87,112,114,121,105,97,95,107,112,116,112,110,100,118,92,107,101,102,105,96,102,97,110,106,93,107,102,113,104,108,104,104,108,110,109,109,104,92,97,118,102,99,90,103,102,98,106,103,114,106,92,108,109,107,91,108,100,111,81,95,108,116,115,112,112,89,96,112,79,110,115,109,91,100,112,100,109,93,90,104,102,97,108,113,98,109,102,102,92,101,104,105,117,105,86,95,97,110,99,100,103,88,113,114,97,102,113,98,98,103,105,104,91,106,104,119,96,107,103,103,113,98,115,113,109,92,103,101,102,101,108,111,109,91,101,91,108,108,100,113,103,101,108,99,105,110,119,102,115,104,106,101,107,112,103,100,99,103,116,115,105,108,100,100,102,104,68,101,114,100,106,110,105,116,109,116,99,109,89,113,92,108,92,97,100,108,93,99,102,106,100,110,105,104,101,109,110,83,99,104,104,114,109,99,99,106,104,107,110,102,104,105,111,119,106,109,108,100,101,111,93,110,93,92,105,96,98,95,103,109,105,115,109,109,101,94,99,104,102,109,109,105,106,102,110,121,93,112,107,104,105,105,113,93,112,106,105,113,109,103,109,92,102,105,98,85,94,104,103,111,109,107,98,100,100,113,111,99,107,109,109,109,102,102,92,100,102,110,108,110,91,96,112,102,104,110,110,101,105,107,106,108,105,98,91,104,117,80,107,93,105,94,100,108,117,102,101,110,101,93,104,99,98,117,91,92,90,113,87,106,105,101,108,111,105,102,110,99,110,101,92,105,107,101,105,105,99,105,108,112,101,120,106,92,105,97,98,102,105,108,89,102,90,108,104,91,109,117,91,93,112,113,106,98,98,104,96,103,104,108,109,99,87,104,105,96,106,98,99,114,104,104,110,102,89,92,104,113,105,97,112,101,108,95,105,110,99,85,90,117,99,102,119,111,109,116,125,108,100,105,100,106,108,102,104,99,98,97,100,100,100,97,110,101,96,118,100,102,99,96,97,109,96,97,104,94,97,106,107,107,101,97,103,99,117,98,105,92,91,95,98,93,100,95,101,112,110,109,105,107,110,86,109,115,100,105,119,101,113,92,106,94,98,117,96,95,100,104,106,109,88,105,104,97,116,109,91,109,101,97,116,99,109,87,103,103,100,100,107,99,111,104,108,99,95,113,103,100,117,93,101,92,106,107,103,102,99,107,114,117,96,103,106,104,113,104,109,106,102,101,100,115,105,113,103,103,95,108,113,108,114,99,95,110,101,111,103,108,117,105,105,110,83,95,108,87,112,103,114,89,100,103,108,105,97,118,96,93,106,96,101,106,96,108,112,105,110,114,101,110,105,83,113,100,111,107,102,111,103,100,106,97,98,87,108,110,91,101,102,102,108,93,103,101,111,104,105,104,102,115,105,96,109,105,112,124,102,83,109,101,102,101,117,100,109,109,98,93,100,96,99,103,98,102,87,98,100,105,108,111,98,108,108,98,110,112,113,120,102,87,95,107,98,113,100,81,111,113,111,106,107,104,101,116,108,117,112,92,103,102,113,111,91,109,102,108,117,90,108,97,109,102,100,109,91,87,98,99,103,99,101,99,91,104,103,98,96,109,116,121,99,99,101,106,113,106,99,99,109,102,95,102,100,117,99,104,94,110,112,91,109,98,105,116,104,96,96,119,109,102,96,102,110,89,100,102,106,92,106,113,113,93,108,102,93,105,112,105,103,102,111,111,98,110,106,109,109,113,98,104,108,109,108,109,97,96,100,98,100,109,91,96,107,97,102,107,97,104,106,109,102,113,100,103,99,114,111,98,108,115,101,107,92,107,101,90,99,101,83,95,108,86,104,108,106,99,106,108,111,104,101,103,116,104,100,110,103,109,110,109,98,117,107,101,105,106,95,100,112,101,90,105,91,105,98,104,105,109,99,96,106,106,104,90,103,102,114,109,95,90,98,89,98,108,103,99,101,102,103,107,111,119,104,100,95,102,102,114,102,112,104,97,107,105,88,102,102,101,105,109,90,109,106,102,102,103,102,104,106,94,95,103,104,101,98,109,104,104,113,95,91,99,98,97,120,100,102,101,103,100,116,108,108,104,103,95,107,101,113,97,116,107,95,106,102,108,91,102,116,103,109,94,97,105,103,113,92,108,87,93,91,105,110,104,100,95,89,107,93,93,94,103,98,83,80,98,102,111,94,104,94,100,102,96,103,103,95,105,108,102,107,89,91,109,98,116,100,101,104,105,102,102,105,104,103,109,94,101,101,98,99,108,100,105,98,113,116,109,101,112,105,112,105,105,111,97,110,105,110,106,101,82,99,97,96,93,89,108,99,96,113,96,118,110,105,106,103,116,103,124,96,110,87,99,97,97,111,108,115,101,101,91,98,100,89,115,97,106,108,106,107,101,104,105,107,102,94,105,127,107,113,100,102,97,111,109,102,112,105,116,102,106,94,97,97,101,107,107,106,98,99,93,110,105,99,104,104,114,110,102,97,106,96,107,112,87,106,99,106,97,97,90,82,98,83,97,108,98,106,96,94,102,109,111,104,98,110,115,98,106,96,100, +522.26074,100,103,104,102,97,99,86,108,100,102,108,102,86,103,119,100,105,99,109,104,94,79,97,100,100,101,95,103,109,112,87,121,96,97,95,106,93,87,101,99,127,115,102,100,109,92,94,103,94,114,101,112,98,103,91,90,92,96,109,87,89,105,103,91,106,105,97,115,101,107,105,105,113,94,95,118,111,94,105,116,102,99,102,104,102,94,113,106,106,110,110,112,103,101,100,100,102,92,99,101,84,93,99,109,107,106,101,101,97,100,104,119,105,119,100,93,102,108,97,90,112,107,98,103,100,112,111,106,107,100,104,104,98,100,100,101,107,92,106,97,103,98,97,112,90,94,101,104,101,91,107,105,103,137,97,101,109,92,106,102,101,110,99,98,106,107,101,95,109,110,109,99,92,104,99,97,116,101,122,101,111,89,115,106,101,105,95,96,113,110,104,96,103,105,105,121,115,96,94,102,108,95,113,111,101,103,102,108,116,99,102,102,117,99,109,107,104,107,104,101,101,99,97,102,102,113,97,109,99,105,100,106,101,107,112,121,96,108,102,100,110,94,111,109,110,111,112,98,94,119,95,117,95,108,94,109,99,109,109,104,102,100,98,104,98,106,104,97,111,113,106,94,106,99,102,112,99,101,98,101,102,105,107,100,109,101,100,106,106,107,108,102,101,89,109,115,120,116,99,115,106,66,102,108,97,111,109,98,94,109,95,114,113,108,100,102,99,105,105,104,113,100,104,97,108,104,100,94,107,119,101,100,94,112,124,110,106,107,99,93,85,103,98,97,99,103,112,109,109,112,105,108,96,119,112,92,94,132,117,113,107,115,104,98,93,108,105,123,107,128,110,104,103,108,109,96,104,81,99,102,100,105,103,102,101,101,108,95,113,117,102,98,96,91,104,108,100,92,101,110,109,108,102,104,103,110,103,106,112,112,74,91,109,95,135,98,107,91,105,118,113,119,104,95,90,95,103,104,98,103,104,104,97,100,102,95,95,106,96,114,109,110,96,96,106,97,102,99,102,118,111,108,109,110,106,104,103,101,112,103,90,103,128,96,97,109,105,108,98,107,108,107,104,108,95,107,103,108,101,119,114,108,117,102,92,91,111,106,115,106,97,105,96,93,81,98,102,105,95,101,97,109,102,104,100,106,107,87,100,105,96,107,98,103,101,105,106,88,106,113,107,109,102,108,108,113,117,72,95,112,90,109,87,94,103,110,100,99,113,101,91,113,97,110,100,106,111,108,107,117,111,110,106,104,94,99,111,104,101,96,112,102,108,99,96,108,100,104,98,108,108,94,100,108,107,104,110,95,103,100,105,113,94,96,88,100,111,111,99,94,102,110,93,104,108,101,93,108,108,99,87,100,113,100,108,105,101,104,106,95,102,104,109,107,109,105,112,105,107,95,110,118,93,106,101,114,110,94,104,102,90,91,92,117,102,106,94,111,94,105,100,111,101,108,105,104,108,102,116,112,105,99,101,106,100,96,115,110,114,110,109,100,89,111,108,110,105,101,113,100,99,112,98,102,76,112,100,93,107,105,104,108,103,104,96,99,107,97,106,100,104,106,102,114,113,110,102,106,107,93,106,105,108,99,112,107,102,109,96,102,106,97,113,107,102,91,103,117,72,91,100,106,103,112,100,113,120,87,88,112,103,106,88,115,97,103,98,92,111,98,108,112,96,101,106,101,103,106,99,91,114,105,106,104,98,113,92,98,109,116,104,98,105,112,103,99,93,111,103,98,120,103,102,100,104,108,112,116,97,83,105,105,105,110,104,101,106,111,113,109,104,100,111,112,109,106,104,92,96,114,96,110,71,100,105,102,114,107,75,104,124,117,108,108,108,103,106,76,101,109,108,96,104,97,119,107,98,107,108,109,115,94,104,97,104,101,107,102,114,103,100,114,109,109,91,93,108,101,105,110,107,96,102,104,98,90,102,105,112,97,113,90,102,100,122,96,95,97,88,125,112,98,101,105,97,97,99,121,101,95,111,104,97,114,100,96,108,111,98,113,104,103,101,114,93,101,111,110,118,106,102,101,115,87,102,98,98,93,105,98,108,110,108,112,101,114,114,112,104,98,115,113,106,105,113,107,105,99,115,103,120,113,124,100,101,107,98,98,105,102,100,128,93,106,101,105,99,104,109,112,109,112,134,105,111,104,66,95,126,113,116,87,96,109,100,103,101,97,95,108,94,104,107,105,92,110,102,110,79,97,106,125,102,105,100,105,95,104,93,105,104,92,96,106,91,102,105,109,107,112,88,109,107,100,100,111,101,96,106,103,99,103,103,98,99,103,105,102,95,110,109,105,113,71,100,102,100,113,98,98,101,83,97,105,117,98,98,98,108,101,95,111,108,110,95,107,102,103,112,96,107,110,102,107,96,112,106,102,106,105,92,102,96,111,104,103,104,104,105,106,90,102,97,107,82,105,113,107,104,109,96,97,91,110,109,111,108,99,121,106,97,114,104,92,104,104,101,109,116,118,114,87,113,103,106,113,92,104,114,98,111,114,98,113,110,94,105,103,87,101,100,106,94,96,104,111,108,96,106,104,114,115,96,104,102,96,106,95,107,104,103,87,96,105,102,91,93,97,108,95,118,101,90,113,97,97,100,101,114,113,114,95,99,100,106,107,102,97,114,107,100,106,101,104,104,103,104,104,111,105,111,111,89,107,89,112,113,102,109,100,100,113,103,110,105,103,101,117,96,113,103,102,106,99,94,96,105,95,102,104,113,103,120,112,113,105,104,107,108,112,106,100,107,98,108,103,104,113,109,104,100,113,111,99,102,104,110,102,110,117,109,100,106,103,98,102,109,107,102,104,106,112,104,106,109,95,107,104,96,106,113,121,104,100,108,103,108,103,105,106,108,108,103,106,107,95,103,69,108,121,103,117,119,118,102,105,98,102,115,101,121,108,97,108,117,106,104,103,101,106,103,112,100,113,90,94,100,116,88,107,105,104,92,107,104,109,101,110,112,121,123,112,101,95,109,105,112,106,102,104,105,104,95,106,108,102,96,78,115,96,127,104,103,143,94,109,102,105,115,113,107,99,107,113,101,98,101,107,101,103,109,106,112,106,112,113,107,107,98,99,98,127,92,110,102,99,110,108,95,100,99,115,100,101,100,96,98,110,106,88,94,95,92,111,97,114,92,101,104,103,108,100,107,102,88,107,113,108,112,106,101,107,103,109,88,106,107,102,96,109,108,104,94,97,112,89,107,88,108,85,104,109,101,106,103,96,99,107,90,104,106,110,106,99,101,111,111,100,106,110,109,95,101,116,119,107,105,101,101,96,106,102,116,106,111,99,105,96,108,101,96,101,103,91,98,97,101,112,107,93,100,109,122,109,104,99,100,108,103,106,101,112,96,99,105,116,107,98,108,115,105,92,103,110,104,97,111,96,109,103,100,100,112,104,111,95,104,97,101,115,99,108,108,103,100,99,87,109,101,107,90,105,100,100,99,107,108,104,111,98,113,123,106,116,107,104,99,101,93,108,96,111,99,107,105,106,108,104,94,111,104,101,117,106,111,97,99,103,108,116,103,90,108,109,102,114,106,100,107,96,102,109,118,104,108,107,104,119,102,112,101,111,117,116,108,103,109,99,100,104,101,103,109,97,100,112,105,77,103,106,110,100,111,110,106,99,100,100,106,100,118,109,107,108,104,94,96,106,101,100,92,88,104,106,99,104,110,108,92,96,92,106,98,103,110,105,102,104,104,117,96,101,99,109,109,112,101,98,106,99,119,99,114,106,113,99,118,119,98,105,101,109,101,64,107,112,120,95,109,102,119,104,113,67,101,103,106,116,104,110,97,112,115,117,94,100,116,108,102,101,99,107,101,104,109,117,109,105,101,105,116,104,103,107,98,98,104,93,99,96,106,108,96,98,99,96,100,99,105,92,91,104,102,102,98,95,100,107,102,103,107,111,108,103,96,103,90,105,91,102,108,108,95,102,92,97,89,105,104,105,109,105,100,99,102,105,85,112,106,105,110,106,105,110,96,103,97,101,105,95,106,104,99,107,111,103,113,102,119,106,79,106,103,101,105,108,106,101,101,100,105,103,104,104,96,86,113,107,93,106,98,99,102,102,93,104,107,97,104,105,112,102,103,98,96,109,112,106,90,103,105,102,104,101,117,109,97,108,98,88,93,94,106,80,108,113,101,106,101,98,113,115,104,120,97,112,104,109,104,107,120,103,101,109,101,109,104,111,99,90,99,99,116,106,110,102,91,97,100,113,100,106,111,98,112,113,100,85,86,102,106,106,77,103,95,110,102,111,109,104,108,96,119,109,138,102,103,104,109,98,102,93,105,131,99,95,115,105,95,98,104,103,107,111,99,100,104,113,103,97,92,99,102,101,103,109,108,112,103,102,113,100,109,102,101,113,105,111,106,104,122,107,101,101,104,99,91,101,100,110,109,105,108,111,107,102,101,83,101,99,99,101,96,96,100,92,106,95,104,110,93,106,105,103,99,110,99,98,109,105,97,112,100,99,90,103,91,92,104,84,102,90,104,85,103,104,99,106,98,99,95,102,104,102,98,119,106,108,102,111,113,96,109,104,107,102,91,119,109,99,106,98,96,105,99,106,108,96,107,95,103,90,91,99,101,117,96,105,118,102,87,96,93,127,97,100,101,114,103,97,96,105,99,99,99,95,119,100,104,99,110,103,118,106,97,105,115,104,104,105,109,112,93,91,111,99,102,100,112,104,114,94,94,106,103,109,100,92,98,104,106,100,94,109,105,103,102,105,111,111,109,103,96,94,111,106,100,106,98,103,111,106,104,102,97,105,98,119,112,102,112,108,107,99,99,101,104,100,110,88,101,101,103,106,104,95,108,104,102,99,98,111,90,102,100,109,106,111,97,108, +522.40143,110,91,97,109,93,103,107,109,93,111,98,100,106,95,120,107,93,99,104,78,101,101,100,90,104,96,113,99,100,105,107,108,109,102,101,100,106,96,101,100,117,110,127,99,102,113,111,115,103,104,102,89,99,107,104,113,104,104,96,105,108,108,101,104,99,105,102,105,93,101,110,106,108,109,88,109,94,104,100,103,108,70,112,101,99,112,106,106,88,103,115,92,98,97,107,106,109,97,108,113,101,93,103,97,93,100,100,100,95,103,96,102,112,88,107,95,93,100,98,91,107,95,107,110,102,115,114,97,99,88,98,96,102,105,111,106,104,106,104,101,103,99,101,103,110,105,98,103,105,108,105,86,114,102,98,103,105,101,112,96,99,106,105,110,104,92,105,97,112,106,91,102,87,109,107,97,98,93,107,109,91,102,96,110,106,95,94,100,111,111,101,113,82,102,106,106,103,96,104,104,100,117,100,109,100,104,99,107,112,115,109,107,106,101,115,105,103,104,108,90,105,109,92,110,103,104,104,106,96,98,86,108,104,99,94,108,101,108,87,100,101,108,109,109,92,105,102,110,112,114,117,110,106,112,95,107,104,102,104,109,95,110,94,101,95,109,96,104,106,107,110,103,102,89,95,103,116,109,102,105,99,104,70,112,104,112,102,116,114,91,103,100,105,108,110,89,103,108,110,104,111,95,108,107,97,99,116,107,101,108,105,122,101,107,105,98,105,110,103,107,106,104,109,100,103,117,107,97,109,108,103,98,113,104,108,112,106,127,106,103,108,111,94,106,106,107,103,121,120,106,112,97,109,102,95,104,105,114,112,100,96,111,98,94,104,102,105,114,100,102,98,103,95,98,106,103,95,102,96,108,117,111,104,106,95,100,110,105,106,85,120,107,94,105,100,117,108,105,117,104,104,111,103,103,112,104,96,100,108,110,91,104,94,103,100,108,106,103,104,98,109,95,94,105,104,111,103,103,104,116,115,106,100,98,109,92,115,115,100,90,113,94,114,96,98,104,100,104,113,118,118,98,104,103,104,109,103,104,101,99,100,102,111,91,107,105,109,110,112,98,107,85,108,106,111,103,118,109,98,89,92,98,110,90,101,113,111,108,123,94,95,111,102,104,106,110,102,102,104,96,107,105,93,113,101,106,88,103,110,110,109,101,111,107,114,134,113,101,110,102,103,106,128,102,119,116,110,106,98,99,93,108,100,100,110,108,99,101,91,107,96,105,113,102,96,99,112,105,131,111,104,111,106,109,100,98,105,107,107,97,106,109,95,104,98,101,108,128,90,101,66,106,115,96,95,112,102,87,109,93,109,110,110,117,101,117,100,106,96,97,112,102,99,111,108,109,109,107,109,105,108,112,120,100,99,108,87,96,99,113,98,117,110,111,107,102,107,103,101,99,103,109,109,107,110,114,106,117,113,106,94,105,95,116,101,82,97,107,118,101,100,99,94,110,103,107,106,114,113,100,108,116,101,90,100,96,117,105,99,104,106,105,123,115,104,104,93,102,96,97,111,104,106,96,99,106,108,120,102,104,100,101,98,99,107,96,102,97,109,92,97,121,103,101,121,108,100,109,103,113,108,94,109,113,102,106,95,104,114,90,94,112,98,104,96,106,114,98,109,110,85,108,108,97,98,116,110,101,102,108,108,106,112,102,110,103,106,106,105,109,109,101,113,115,102,104,105,106,99,98,93,87,104,109,106,111,102,101,108,112,105,98,94,112,103,103,107,95,117,105,109,109,103,103,112,94,107,123,104,103,104,105,103,96,95,110,107,111,103,104,106,109,98,121,111,94,107,112,103,110,108,94,118,117,113,101,107,104,103,102,113,86,97,104,96,98,112,105,108,91,103,112,104,100,107,101,106,99,109,106,98,106,112,108,106,103,111,101,109,108,103,108,112,109,98,102,86,102,110,108,94,101,104,104,99,104,109,98,108,113,107,105,109,103,95,111,104,99,120,107,117,104,100,93,99,110,114,103,113,104,98,117,105,95,99,103,100,98,98,102,100,112,104,98,100,85,104,104,114,110,102,98,111,100,110,110,114,102,98,91,99,107,126,134,111,99,102,109,105,107,97,92,112,101,100,109,109,100,107,111,106,107,103,107,103,109,111,97,100,103,110,109,113,109,100,107,111,101,98,104,110,104,120,112,111,109,103,109,101,83,112,103,101,100,112,101,96,108,101,103,95,104,107,95,104,112,102,95,82,106,96,98,90,106,108,99,101,107,112,102,107,114,107,103,110,100,100,109,105,104,105,102,87,101,98,98,109,108,102,117,109,106,97,107,97,104,105,101,98,83,109,113,108,98,104,110,111,79,106,107,98,111,108,115,111,90,94,109,91,96,107,110,105,108,103,119,109,104,99,119,109,101,105,105,108,106,101,103,129,96,91,119,117,110,106,96,106,101,101,95,103,113,108,103,104,97,112,87,109,98,83,84,107,110,121,102,103,99,111,114,113,115,100,93,101,107,110,105,102,102,112,106,106,115,107,114,97,109,107,109,94,111,115,109,100,107,106,95,101,97,97,100,102,111,86,96,106,105,111,107,102,108,105,103,110,118,111,92,103,105,109,108,104,108,99,104,99,110,84,99,92,119,115,113,106,102,116,102,108,105,117,98,111,95,115,105,116,97,117,100,102,106,110,119,104,110,112,99,118,106,101,117,101,105,119,105,129,112,91,113,109,98,111,112,102,107,106,98,114,112,110,121,108,107,102,107,106,111,93,110,109,104,113,109,106,96,95,108,100,99,101,104,98,106,110,104,116,108,115,105,106,104,101,115,111,100,115,106,97,111,95,107,108,97,106,95,102,74,104,92,93,97,110,104,102,117,105,110,109,103,91,112,100,100,105,94,102,110,104,110,109,89,111,109,106,100,111,90,108,122,105,104,117,97,100,111,103,104,104,123,92,132,98,98,113,118,94,110,102,100,117,112,97,107,112,113,106,106,103,99,103,109,106,106,108,106,98,95,100,87,111,109,112,102,105,104,108,103,103,107,102,97,111,107,120,108,100,103,102,113,105,105,113,95,106,102,110,116,85,97,105,94,104,105,104,114,106,110,108,102,98,103,111,109,118,109,100,97,100,99,96,110,99,116,106,97,113,111,109,100,109,108,113,103,101,102,99,106,100,98,98,103,113,98,114,89,111,106,115,115,118,100,94,102,97,106,111,97,116,98,106,110,112,99,99,107,96,127,103,115,109,119,98,106,107,94,113,109,115,104,97,98,120,117,100,105,107,121,99,87,91,102,121,109,91,107,101,109,113,145,119,111,108,112,111,121,106,106,113,103,111,109,110,104,105,107,108,109,103,102,110,109,107,107,108,122,100,102,111,100,100,97,113,105,107,108,93,98,105,112,95,115,109,101,105,102,98,107,107,109,102,96,103,121,101,97,103,118,103,113,105,102,106,112,114,102,121,109,112,108,107,112,114,107,106,92,96,100,110,101,101,108,108,109,109,115,107,110,112,91,102,123,92,105,113,105,102,103,116,102,103,111,110,108,109,109,99,104,108,111,108,114,125,102,110,113,105,111,113,121,107,96,103,106,100,108,111,113,110,93,108,102,111,112,103,105,101,110,116,102,98,111,118,111,108,106,102,105,105,107,112,109,95,111,100,104,94,93,101,101,95,98,110,104,105,117,102,103,101,106,104,88,103,99,111,104,108,106,106,116,130,103,104,107,107,116,101,99,106,97,101,97,105,103,96,103,109,95,105,113,114,112,111,94,106,109,98,110,117,104,109,103,103,100,99,105,99,106,102,107,95,113,104,106,102,118,91,107,104,102,110,85,110,83,98,106,102,93,97,128,97,108,104,106,109,107,104,92,93,108,105,89,102,109,96,117,106,107,113,102,102,108,108,103,109,100,114,100,97,112,106,97,104,105,97,121,117,99,102,102,111,103,106,102,107,103,115,119,103,107,96,104,96,103,93,111,113,109,102,114,102,110,105,101,109,117,106,104,93,95,101,104,101,111,109,95,102,99,106,81,100,105,110,106,99,103,110,101,103,117,98,107,110,105,110,108,104,96,108,102,111,103,98,102,106,102,108,106,109,99,110,105,106,101,105,106,103,100,117,121,109,104,98,97,94,105,102,96,117,109,110,103,104,113,101,99,107,108,114,99,112,98,106,95,103,99,109,109,92,111,106,116,112,111,116,103,106,108,112,102,111,113,109,101,112,107,99,90,112,98,113,99,85,117,125,103,107,113,103,98,109,115,107,101,105,110,98,100,110,113,110,107,117,108,102,109,98,93,91,105,116,99,107,104,105,104,115,118,79,103,99,99,99,92,102,94,98,117,105,99,121,114,112,107,107,96,107,104,112,110,107,109,105,94,113,112,94,98,104,118,100,117,112,112,98,101,106,119,96,97,105,103,104,108,90,109,120,106,95,96,111,101,100,91,109,111,93,100,107,122,115,112,113,113,113,96,102,95,99,99,111,104,99,108,103,107,113,121,97,111,109,97,98,113,108,106,96,114,98,108,108,101,117,101,104,103,109,116,109,101,100,102,107,97,104,95,104,101,76,103,97,109,113,101,98,98,96,105,98,104,98,93,101,104,116,108,98,109,106,117,105,102,105,94,102,108,103,110,104,111,101,107,113,119,76,108,112,98,104,111,98,108,103,110,101,96,104,109,103,91,103,102,105,103,101,91,107,100,105,103,111,115,103,117,97,95,93,97,107,110,101,102,78,103,103,104,105,100,110,109,101,98,103,107,86,107,94,109,103,83,99,101,99,109,113,99,111,88,115,95,106,113,110,102,103,99,99,109,114,99,106,101,104,106,106,107,109,101,106,94,110,112,102,94,108,102,103,79,114,96,104,98,96,88,100,100,106,114,95,104,82,88,74,101,103,97,99,113,93,90, +522.54218,107,108,90,118,100,113,105,90,106,111,105,95,110,104,104,113,104,117,116,125,105,97,104,109,103,112,112,121,109,114,105,116,114,115,108,106,92,107,104,91,100,103,110,75,92,114,101,77,95,114,117,106,106,101,99,99,97,101,105,105,117,109,96,107,113,109,101,116,104,107,116,112,115,101,100,121,108,102,116,110,98,107,106,122,97,102,109,114,118,105,101,95,97,99,94,107,121,110,108,99,94,115,101,107,100,102,97,112,103,90,125,108,105,104,110,100,95,130,116,107,110,109,103,108,107,111,120,93,88,117,101,111,106,110,107,117,96,95,102,115,77,105,107,118,110,103,116,110,116,91,116,109,119,108,103,103,104,142,110,106,111,106,108,110,106,103,100,116,120,95,80,108,102,106,112,100,110,100,109,105,92,107,112,111,104,113,112,109,104,103,118,83,108,105,101,117,104,103,87,114,105,84,113,109,113,103,121,110,107,108,97,103,109,104,104,112,90,108,113,109,105,105,109,102,99,92,100,101,104,108,103,98,101,108,117,100,110,105,111,95,109,91,106,108,94,103,103,98,114,119,100,104,120,109,101,101,112,112,97,110,103,119,110,94,99,105,103,112,113,111,111,103,106,107,105,106,111,116,90,111,117,101,117,109,108,112,109,102,110,111,118,110,105,105,105,113,110,111,99,109,107,113,110,110,96,111,101,113,113,101,100,122,108,94,114,114,108,101,97,102,116,85,90,100,106,86,106,109,111,104,111,102,99,107,107,106,99,116,99,123,104,121,102,113,111,113,113,111,109,114,97,102,118,96,114,113,111,107,109,101,101,112,115,102,104,99,106,115,108,107,102,106,104,113,116,106,110,104,107,114,110,104,104,98,103,109,107,105,104,103,106,101,97,99,98,110,87,94,95,114,116,106,103,106,99,98,111,110,117,95,95,108,124,105,116,98,115,101,88,110,111,97,99,108,94,108,97,90,99,95,118,105,104,99,105,103,100,113,103,104,104,102,91,105,117,105,102,104,91,110,91,109,108,117,106,110,104,105,110,105,98,104,103,110,112,108,112,107,102,100,106,113,105,121,108,92,112,91,109,116,111,105,101,94,102,105,112,106,104,114,99,103,110,105,100,99,106,112,111,100,116,105,109,121,106,114,111,104,113,108,106,97,105,113,109,104,101,109,110,109,109,100,110,107,115,103,108,109,107,102,103,105,111,106,95,106,106,92,111,115,103,112,104,106,103,99,75,103,104,116,112,121,118,110,113,128,108,102,103,114,103,105,106,100,111,106,121,97,110,98,111,105,102,105,112,99,110,105,100,109,104,109,94,102,110,98,115,115,107,123,111,114,107,102,102,116,104,102,102,112,108,107,112,99,94,99,104,107,101,101,98,115,108,115,104,117,115,104,113,100,107,107,103,105,111,98,110,111,110,114,98,104,94,108,107,107,115,100,110,115,115,104,109,111,80,102,107,110,110,111,93,112,103,102,105,105,112,107,101,98,101,102,100,112,115,102,119,105,113,94,108,119,99,114,106,110,101,108,108,104,117,122,123,94,117,100,96,95,106,122,102,114,109,110,100,106,105,103,108,96,99,108,102,112,97,113,115,120,93,106,106,105,113,100,106,96,104,97,98,103,113,105,96,117,101,91,105,108,117,113,107,113,113,107,120,109,118,95,108,107,98,98,107,99,102,116,112,118,108,123,105,99,110,98,106,117,99,110,105,122,110,109,112,98,101,117,103,100,104,99,106,105,107,102,93,101,102,106,104,105,101,112,112,110,103,109,119,120,103,97,101,109,104,102,111,110,114,109,110,106,101,107,99,90,111,101,101,111,116,101,115,101,110,119,114,95,106,102,104,107,102,103,103,107,108,108,114,107,102,105,101,110,102,108,109,119,115,99,109,128,109,110,109,103,103,108,110,112,120,103,111,102,106,113,121,102,103,105,89,111,99,93,107,78,113,103,100,99,102,97,106,102,116,120,107,104,111,104,101,108,96,98,100,85,118,105,103,117,98,112,109,87,104,102,100,99,108,106,110,106,106,101,113,108,107,106,107,112,96,109,102,125,109,103,104,107,102,102,110,110,93,101,102,112,109,100,104,100,109,120,95,115,102,106,99,77,109,95,100,99,125,106,112,103,108,104,105,121,112,114,120,106,106,116,104,102,113,105,103,93,121,108,102,108,109,97,113,100,109,103,97,101,93,99,91,102,110,97,103,96,106,105,100,105,109,96,108,94,104,107,98,110,110,105,111,98,100,116,97,97,114,104,92,94,105,101,116,103,98,109,100,104,88,111,104,103,100,103,111,105,105,95,105,104,98,106,98,112,110,111,109,99,112,85,125,106,102,107,110,89,101,124,111,118,80,112,91,96,102,106,100,99,101,103,111,106,109,105,95,93,94,105,110,105,99,100,103,103,104,105,99,105,108,104,106,81,104,105,105,92,110,103,80,102,120,109,102,100,117,94,91,107,103,106,109,110,104,108,107,107,91,98,108,100,107,104,105,107,107,90,101,114,113,101,103,102,109,108,103,104,102,118,105,91,121,101,100,109,105,106,99,94,106,114,113,112,113,101,116,98,100,99,106,105,110,104,103,112,94,96,103,97,113,102,103,104,117,115,107,117,107,108,108,101,102,108,99,112,104,105,110,102,112,106,99,112,106,94,120,104,109,89,99,108,110,106,121,110,100,106,106,85,111,102,108,111,108,102,109,96,108,103,103,104,98,121,108,108,110,99,120,113,95,110,106,104,113,109,103,107,119,109,108,98,106,104,102,101,109,106,105,112,94,112,125,106,98,90,114,117,101,95,114,100,102,105,100,100,98,114,107,99,119,130,96,103,109,95,105,99,120,105,83,109,106,108,111,104,103,95,110,95,112,111,98,107,104,120,108,109,100,97,102,104,99,105,102,110,120,115,113,114,103,103,105,100,101,105,107,98,104,103,106,113,106,113,109,110,101,112,100,99,97,97,109,106,111,102,115,105,115,114,93,108,104,104,103,102,102,99,103,102,99,79,111,106,117,103,101,113,95,113,101,104,105,109,114,100,113,108,105,108,109,112,108,99,97,117,104,105,112,105,95,96,100,113,119,105,102,104,102,99,108,106,111,88,95,106,96,102,100,102,107,108,106,98,107,115,103,88,116,92,106,113,108,102,102,92,99,116,111,89,81,107,113,101,106,95,99,111,100,101,93,109,108,90,85,110,109,105,114,99,110,104,98,87,104,104,106,99,110,105,109,107,104,105,112,120,113,113,96,113,111,95,100,100,102,84,106,106,125,88,114,103,102,112,112,105,105,112,103,105,107,106,112,108,93,109,87,100,99,145,119,107,106,100,111,103,116,99,110,117,112,112,98,111,117,107,97,95,104,95,102,103,108,111,105,98,103,105,108,113,104,102,106,115,85,109,113,105,99,94,110,118,140,97,106,112,96,113,104,111,102,112,117,107,102,108,93,100,109,119,113,99,100,108,102,84,117,110,116,114,102,108,104,106,103,100,100,108,106,112,103,120,111,107,107,106,110,109,106,108,98,121,117,110,104,104,102,111,115,98,102,120,106,107,90,130,105,94,106,111,108,107,103,113,107,114,99,95,96,119,102,107,119,101,119,101,113,110,111,101,124,118,110,107,107,105,85,115,106,106,105,102,102,112,99,117,105,101,103,114,111,106,106,102,97,106,116,114,112,102,96,107,96,117,78,88,113,105,102,111,113,109,117,104,106,95,99,113,110,100,92,105,109,118,97,80,111,104,108,108,107,110,121,104,104,104,113,108,81,102,105,102,113,107,108,112,96,110,98,105,110,109,107,116,107,107,102,107,93,111,101,112,95,102,119,106,106,108,107,113,112,107,101,109,108,101,109,108,107,106,101,100,101,98,106,103,112,109,113,84,86,103,101,98,106,97,108,105,95,113,107,99,109,108,106,108,114,100,117,113,107,115,102,104,109,94,99,90,103,106,103,103,106,119,96,112,91,112,109,96,110,108,107,119,99,107,110,104,104,113,107,99,112,108,115,108,105,116,117,106,92,108,106,113,106,110,110,113,110,102,109,126,115,107,95,112,101,105,100,116,113,121,110,120,113,115,103,96,109,122,111,113,104,106,116,103,95,100,106,109,113,109,113,112,102,115,110,104,108,103,110,111,97,104,103,114,106,116,110,116,107,119,99,113,103,98,104,118,109,102,117,109,104,110,109,101,105,108,101,105,108,97,115,121,106,105,115,105,111,122,120,102,107,114,95,91,106,113,99,109,108,98,108,105,101,98,108,118,101,103,103,108,99,107,95,109,108,114,110,98,93,102,113,99,105,95,105,121,114,87,88,102,103,103,104,112,103,103,106,93,112,101,103,109,113,98,104,104,104,119,107,100,103,109,102,106,120,110,104,98,104,95,105,101,108,101,121,106,134,96,100,100,102,108,103,96,114,106,98,119,102,112,112,98,123,106,112,100,99,104,102,102,91,109,113,99,113,115,99,106,97,104,112,102,101,102,105,105,96,107,91,100,109,111,115,109,98,108,111,106,99,110,105,114,111,99,105,108,107,105,117,101,112,124,107,111,106,105,109,105,104,114,124,99,98,99,97,111,110,106,117,109,108,110,98,105,108,119,112,97,115,101,108,93,118,107,111,113,96,94,99,111,100,95,99,112,100,103,82,104,103,107,108,100,98,102,118,103,103,123,104,119,99,109,102,99,117,97,104,100,98,115,101,95,95,110,108,102,122,106,101,106,104,101,95,108,80,121,87,106,102,117,101,100,117,101,96,105,101,103,101,91,101,100,98,106,103,85,113,101,114,110,92,113,102,105,115,109,125,103,100,100,97,108,106,106,98,108,101,105,108,106,99,91,99,99,122,93,109,104,114,101,98,123,106,104,112,93, +522.68292,98,96,93,94,103,109,86,97,117,100,101,101,98,117,99,102,84,117,110,92,102,97,107,104,112,112,116,97,95,92,83,98,102,103,95,109,97,96,109,103,86,97,112,113,94,106,114,100,101,111,105,105,106,75,114,95,112,102,104,101,96,103,91,107,96,110,92,97,107,106,93,104,109,103,96,94,100,95,67,91,96,107,100,98,103,99,117,99,106,86,94,100,91,93,102,98,95,99,104,100,110,96,111,93,108,97,114,105,92,103,95,108,106,100,107,98,107,103,99,103,96,100,101,115,113,101,105,99,110,105,109,104,94,105,97,115,102,92,96,99,103,102,111,93,100,95,101,104,104,99,94,112,114,94,106,97,98,95,99,93,103,94,121,96,105,107,102,98,114,99,95,99,121,91,98,96,87,93,105,90,98,102,90,114,110,90,99,94,101,91,105,117,96,94,109,97,105,102,101,109,96,98,102,113,112,107,100,106,112,103,96,104,113,93,103,101,98,101,99,112,106,105,104,101,99,115,106,102,103,103,100,95,102,106,93,114,106,88,100,110,100,96,113,117,97,113,107,123,98,107,108,102,103,106,111,102,95,94,103,103,120,102,103,113,98,104,107,119,102,93,97,115,67,102,101,109,92,110,101,91,103,101,98,95,107,99,96,100,112,98,108,109,102,112,92,100,125,100,104,104,92,104,107,106,100,110,116,109,102,104,90,108,103,103,103,87,102,96,102,105,98,101,88,103,106,107,106,112,122,106,97,102,110,103,109,99,111,100,92,108,98,113,100,97,106,97,94,105,106,107,114,112,117,103,101,99,108,107,102,103,90,66,102,99,108,105,113,95,114,108,111,112,107,109,110,116,119,100,111,102,94,104,91,104,95,103,107,103,103,113,107,101,101,96,98,92,109,103,108,107,105,97,113,88,106,98,103,106,104,109,102,99,114,102,109,105,98,116,94,100,94,95,92,98,98,101,102,102,105,115,100,103,121,109,95,107,90,94,112,94,114,105,106,100,94,100,110,99,101,113,88,116,110,103,107,110,90,109,119,110,96,94,106,100,108,108,107,99,111,106,105,112,114,121,107,105,107,106,110,101,99,105,103,112,100,103,106,107,95,97,121,109,100,103,97,113,99,116,107,104,105,102,101,95,100,99,88,101,109,106,115,99,115,104,111,110,104,113,118,97,96,102,97,116,105,105,115,99,94,111,105,74,107,114,95,112,77,111,100,113,96,102,99,102,103,101,124,111,112,110,99,110,103,108,106,100,98,107,109,100,105,103,99,105,92,97,106,110,107,108,109,113,102,103,90,114,109,117,107,99,121,92,96,104,109,92,109,100,111,99,110,103,114,95,96,97,95,112,99,102,96,108,91,99,95,89,109,112,108,100,95,95,115,99,106,101,107,106,104,98,107,111,100,99,110,105,109,111,102,119,82,97,106,104,104,115,110,100,102,114,117,103,105,108,105,86,100,92,100,117,103,100,108,103,109,105,96,96,101,104,102,122,109,97,94,97,111,102,109,107,106,106,109,119,113,102,104,95,106,99,104,109,121,107,94,109,105,102,98,99,103,104,101,107,99,101,101,113,100,114,115,116,111,106,94,111,105,111,104,116,102,105,103,107,96,106,104,108,114,85,96,90,103,102,98,101,96,95,104,103,93,107,95,97,98,100,101,99,112,106,111,109,114,108,109,108,100,101,101,112,113,105,97,97,99,104,104,100,116,99,113,98,105,92,95,92,89,103,93,106,110,107,115,100,99,102,95,107,116,107,107,106,115,103,95,95,99,98,101,123,106,106,98,110,116,86,100,95,100,93,98,101,99,102,104,91,109,109,94,103,113,98,109,97,110,104,105,106,107,100,99,98,102,105,108,106,102,102,105,113,101,113,111,115,96,97,103,103,97,112,102,108,101,110,117,101,94,107,104,120,96,95,99,104,99,100,90,114,105,102,92,104,96,102,112,104,101,117,106,124,102,107,97,101,82,96,107,103,102,100,101,109,117,93,106,102,92,110,100,100,99,117,96,103,108,104,90,100,104,109,107,92,96,113,94,116,108,104,96,108,105,108,105,108,97,111,107,103,124,102,98,108,102,120,112,106,99,108,100,95,106,96,108,115,97,106,111,107,113,98,101,111,104,108,110,95,108,114,111,102,112,104,111,105,96,96,99,100,100,107,112,107,98,103,100,83,100,101,99,90,112,101,111,105,98,113,104,100,110,105,105,105,96,97,105,109,93,102,104,108,115,110,106,104,102,105,101,93,109,110,101,96,106,104,106,99,108,115,101,97,94,102,101,110,97,111,113,100,114,105,94,98,90,92,107,100,102,94,100,99,105,98,104,95,106,95,101,103,103,102,101,109,102,104,113,105,95,110,90,115,103,110,109,102,91,112,102,113,95,103,107,102,101,94,105,94,100,97,101,101,95,112,99,98,102,118,111,101,99,107,94,104,99,115,96,103,103,107,84,111,117,94,109,107,104,113,111,111,136,104,111,97,105,99,111,117,107,113,117,123,98,117,108,106,99,99,94,111,99,107,103,112,106,107,107,96,107,94,98,113,102,115,108,88,109,117,98,108,104,95,97,98,95,107,104,92,93,92,109,107,116,101,105,103,113,76,120,103,103,123,88,102,99,76,97,116,106,102,112,90,113,103,121,98,94,93,97,97,112,109,127,99,98,102,113,111,104,108,96,120,97,108,117,103,91,110,74,100,101,111,119,104,102,96,118,108,107,103,104,108,100,106,101,110,107,115,105,107,101,105,99,100,109,89,104,109,91,92,105,129,98,103,99,110,109,100,109,100,107,108,110,120,102,107,96,111,107,103,102,88,95,106,96,107,104,92,122,106,98,100,102,90,114,100,112,106,95,124,103,102,102,96,94,114,99,95,99,121,98,95,110,104,107,104,103,96,103,94,111,107,110,109,82,99,100,102,105,95,124,109,99,105,105,102,96,93,91,111,95,97,96,107,100,105,112,106,107,117,107,102,107,99,104,100,105,105,95,98,111,94,105,107,109,107,110,111,104,102,99,91,108,113,114,105,105,95,99,95,99,105,105,117,100,105,104,104,102,97,106,90,99,111,103,103,113,100,112,98,99,100,106,95,103,135,106,100,95,92,103,107,95,106,105,97,98,113,101,108,107,101,87,93,116,112,103,108,98,97,102,108,101,103,102,99,102,102,108,101,100,109,105,103,103,99,100,113,103,94,96,113,102,105,93,99,94,106,98,100,100,83,107,105,108,121,113,108,111,101,107,102,103,98,104,110,98,114,98,118,104,89,106,113,107,115,109,97,105,109,110,101,75,111,116,109,112,123,103,89,132,104,98,107,104,93,107,105,104,97,103,103,110,108,105,105,108,134,104,96,106,103,98,104,107,113,103,109,95,108,103,109,69,112,100,93,115,104,103,100,106,111,102,112,100,119,101,101,112,101,102,108,110,106,117,109,94,102,106,102,119,105,116,118,107,113,98,107,79,98,111,111,97,100,82,104,104,104,96,99,108,105,95,102,102,105,103,99,104,111,107,105,103,113,111,91,103,100,88,107,110,118,102,114,108,111,104,105,104,92,88,95,103,105,101,97,103,98,106,101,109,130,84,101,104,102,105,100,113,102,104,108,98,115,101,89,106,93,110,95,117,107,116,101,112,101,99,100,109,101,109,94,102,98,103,100,106,90,108,92,105,94,110,110,93,120,107,99,100,109,111,104,105,105,101,113,101,108,99,100,109,93,95,110,100,108,109,99,94,103,108,109,100,87,103,106,98,103,99,97,110,113,100,111,104,105,109,105,118,99,105,103,113,106,99,102,100,109,101,100,121,109,102,113,115,108,118,106,104,102,106,101,96,110,104,96,106,97,91,98,98,108,105,106,83,103,83,105,99,97,105,106,107,95,100,96,97,104,93,95,121,80,91,104,114,99,97,104,101,112,132,86,124,105,101,114,104,102,98,108,107,104,108,98,109,102,102,95,112,106,104,108,106,95,92,98,102,84,97,104,109,82,106,106,108,107,112,108,105,102,116,110,110,100,107,100,101,103,100,92,99,93,102,111,109,93,90,105,101,107,106,115,111,119,109,106,104,113,107,118,100,104,96,103,93,113,104,103,104,96,103,120,106,103,105,98,99,105,94,108,98,102,91,107,107,104,108,100,112,102,111,117,107,104,111,107,100,108,94,117,115,101,104,105,101,111,104,117,102,102,115,106,85,103,107,100,114,95,119,102,102,96,98,110,109,95,109,105,104,99,96,97,99,88,99,106,109,112,102,95,135,99,113,113,113,97,113,102,104,104,96,124,110,107,117,112,109,102,119,104,102,112,111,91,97,90,87,104,90,91,104,105,105,98,95,117,98,115,105,108,107,109,101,99,106,112,113,101,125,113,112,109,92,100,94,107,100,102,91,98,109,116,119,90,114,89,103,99,101,97,105,100,102,111,107,95,87,114,97,102,102,105,104,104,102,96,114,106,106,99,99,113,137,91,106,112,102,116,98,104,103,100,106,104,102,87,106,106,112,107,108,103,97,110,98,111,112,87,100,99,109,88,103,113,107,106,96,104,94,111,92,95,111,92,105,95,95,104,104,105,90,102,107,104,100,109,106,106,110,99,124,145,98,103,111,107,109,103,110,96,103,96,90,95,98,97,98,103,109,98,111,100,106,102,106,100,97,104,112,96,105,105,108,101,110,99,89,91,109,110,98,99,96,99,109,98,104,102,103,88,127,107,105,101,100,99,113,101,104,107,96,109,98,105,110,110,105,110,99,113,104,102,99,90,103,97,102,95,100,112,89,109,89,102,106,132,104,104,99,116,107,104,99,92,91,117,102,110,105,103,100,106,95,100,91,97,104,105,96,105,104,111,98,104,108,98,88,94,100,102,113,112, +522.82361,116,100,104,101,109,105,116,111,89,99,98,103,95,109,118,101,96,113,113,98,107,104,112,110,103,96,99,111,113,105,108,101,99,113,114,112,89,96,95,101,108,105,95,106,118,121,96,99,105,101,124,102,101,113,106,119,105,107,99,108,108,106,97,99,96,111,91,118,106,97,112,111,91,111,94,112,98,104,101,120,106,100,99,98,94,103,100,100,110,95,107,95,92,100,99,109,96,107,100,97,99,97,99,105,107,112,101,102,104,106,92,100,109,114,103,106,105,112,96,101,100,99,116,113,105,106,108,97,112,99,99,107,112,105,79,104,108,74,102,110,95,92,102,104,106,100,101,95,104,101,96,112,96,100,105,111,103,100,103,100,110,123,113,99,106,104,123,113,100,101,110,108,102,95,102,113,101,105,109,103,108,126,110,102,92,98,95,88,95,113,101,98,108,112,117,108,102,114,98,113,109,98,104,105,116,105,112,106,103,109,104,111,106,110,114,94,95,113,109,88,134,108,104,102,100,106,114,90,108,109,96,105,105,105,103,106,115,113,107,77,101,107,78,114,90,89,100,101,110,124,103,100,104,108,114,103,99,109,103,108,91,105,77,109,105,109,102,100,102,128,99,100,101,104,107,103,97,92,102,108,99,104,94,118,111,114,110,105,103,112,103,106,106,107,90,110,110,110,109,112,95,105,115,110,100,113,103,120,111,111,101,107,107,104,99,109,101,80,102,103,110,105,109,109,103,113,104,101,120,111,117,100,105,108,98,102,112,111,110,98,99,109,117,102,100,119,112,112,102,109,109,116,101,108,102,118,111,116,97,102,110,102,102,109,98,110,113,109,88,106,113,107,115,107,114,107,111,112,100,99,106,117,104,109,111,107,117,96,112,99,113,102,96,103,112,106,106,101,101,110,105,116,108,100,110,103,100,103,105,76,109,105,105,114,106,98,87,99,113,95,99,99,94,110,97,99,108,100,98,96,99,110,102,103,112,114,108,132,111,100,108,110,109,101,100,103,105,103,109,108,97,100,106,103,103,110,102,114,108,106,109,111,106,119,116,109,96,109,109,96,106,103,104,103,103,112,106,106,110,110,115,99,94,117,96,114,121,118,95,90,103,99,111,118,94,95,109,99,105,99,132,98,100,103,106,105,105,108,111,110,102,100,81,107,105,101,102,108,104,98,98,97,108,107,106,98,106,103,95,114,100,93,113,111,96,99,102,109,94,119,100,103,108,105,114,98,109,103,103,111,115,88,99,100,101,105,109,110,108,95,97,108,103,111,118,113,99,95,107,101,102,101,105,106,110,106,105,112,112,122,107,98,97,93,113,110,102,102,103,107,100,110,99,113,114,107,108,113,105,102,101,110,104,109,109,94,112,100,109,107,108,104,74,114,107,105,97,103,102,113,95,112,117,103,108,100,99,120,102,109,98,109,110,104,104,108,114,102,110,95,103,117,107,100,97,97,99,98,103,110,100,105,105,109,102,107,112,102,98,88,113,109,107,110,114,108,102,98,112,100,125,122,102,97,131,101,97,107,95,104,106,107,116,106,112,91,94,98,116,96,113,94,96,113,113,106,97,101,102,99,109,107,98,102,100,114,112,110,122,113,90,102,102,100,105,100,101,108,97,100,108,108,95,113,95,100,109,107,132,110,108,114,95,100,96,110,106,102,108,110,101,91,103,104,103,98,99,116,105,130,123,107,103,103,113,113,107,110,111,96,99,96,99,99,102,104,108,106,104,114,114,112,106,104,98,111,123,113,135,103,109,104,100,104,102,123,117,105,109,115,114,116,106,103,105,103,104,98,115,102,95,100,99,103,113,107,108,115,120,121,92,102,106,102,104,101,112,102,97,100,106,109,109,102,95,88,109,104,104,101,101,107,111,115,102,92,106,103,102,114,113,107,112,100,103,100,100,105,115,108,106,98,131,109,102,116,101,112,101,107,104,98,99,102,105,111,104,105,104,101,113,103,101,96,107,115,108,110,98,106,98,110,99,121,98,84,99,108,94,102,127,108,107,122,114,104,103,109,92,106,105,111,102,91,110,107,99,114,91,106,107,93,96,103,105,117,109,107,102,109,117,108,117,106,102,113,114,105,119,104,102,105,99,111,98,118,117,110,109,104,102,99,124,111,112,112,102,101,119,104,100,106,99,113,103,111,118,107,102,112,117,105,113,95,106,97,112,106,107,114,106,116,102,97,108,97,68,109,115,112,100,108,105,102,108,99,98,110,112,110,110,97,108,105,107,112,113,112,113,92,111,99,102,119,95,106,120,105,101,104,89,103,93,126,105,103,107,100,100,91,107,107,106,93,92,96,104,106,101,104,102,120,103,115,115,95,111,111,105,102,113,106,98,103,91,104,111,112,101,107,109,114,114,104,99,102,115,108,110,101,101,111,103,114,105,102,110,102,105,105,98,121,91,109,110,95,103,105,109,103,116,105,105,88,112,122,95,117,116,112,109,106,98,98,99,112,108,113,88,110,100,97,117,104,107,111,98,116,106,104,106,110,109,91,109,113,100,98,104,121,107,108,102,100,117,113,99,102,112,113,106,119,102,104,104,115,111,107,100,92,115,121,104,119,131,105,105,95,116,103,109,84,112,107,107,107,128,111,112,112,105,96,105,97,110,106,102,104,109,100,100,109,107,110,93,101,114,91,107,109,102,113,114,107,112,101,113,99,109,100,97,111,96,118,108,119,92,120,98,131,90,97,109,90,102,115,108,100,105,121,105,91,92,100,105,106,104,121,100,106,94,104,105,104,107,102,89,122,108,113,92,113,108,102,95,88,112,108,100,107,95,103,107,110,103,107,97,100,111,96,102,97,96,112,103,97,109,99,102,117,119,101,109,110,113,75,100,100,107,108,124,116,106,107,109,103,102,106,87,103,107,115,120,103,103,112,105,102,116,99,103,103,98,105,106,108,103,102,115,104,95,113,115,108,112,100,95,103,96,100,97,86,117,99,106,103,106,103,106,102,94,106,108,109,110,102,102,112,111,101,110,113,98,99,107,113,105,99,96,111,101,112,102,98,109,108,125,113,104,106,105,105,104,103,90,104,104,105,105,106,102,111,102,98,108,113,109,105,103,102,106,104,96,101,115,103,126,103,109,111,101,109,108,89,105,91,112,101,103,104,93,102,104,97,105,105,94,77,116,124,109,103,113,103,106,126,103,118,120,103,104,111,121,105,95,106,119,106,99,115,109,100,93,107,117,97,95,108,109,109,109,101,102,111,114,103,108,79,101,109,103,76,101,102,100,104,101,103,99,107,105,103,107,100,107,112,98,112,106,100,110,92,99,111,102,108,105,105,112,104,108,101,80,106,111,131,111,102,104,98,108,101,108,106,101,105,103,91,110,94,104,100,97,106,98,106,103,118,102,102,108,108,112,102,108,101,111,127,111,103,95,117,126,112,112,95,109,97,107,90,109,99,104,99,112,103,99,108,102,91,102,107,100,127,98,120,115,106,103,99,106,104,97,110,105,105,89,105,105,79,117,94,106,99,107,117,117,107,103,90,98,98,105,105,103,110,104,108,111,117,102,106,106,107,101,105,104,99,113,103,101,108,112,97,100,109,98,111,100,100,105,104,113,97,106,102,106,98,116,110,91,111,110,107,93,108,110,111,98,102,100,97,101,133,103,109,101,116,103,110,107,110,109,103,88,104,97,122,106,101,102,120,100,95,105,100,110,103,103,91,98,104,98,108,114,106,101,109,99,98,101,93,107,106,104,105,98,117,113,95,107,113,96,80,94,111,82,106,107,107,109,115,99,102,110,81,115,100,101,102,113,108,111,98,94,108,109,102,89,108,104,102,106,95,97,106,115,95,100,112,95,110,107,94,113,101,103,102,103,103,95,96,104,112,107,99,115,102,101,104,103,107,98,103,114,101,91,100,97,95,110,103,110,103,95,110,104,101,105,97,102,99,104,116,103,110,100,100,94,100,96,104,95,105,114,101,107,99,101,97,98,84,97,110,106,102,100,100,112,106,102,115,103,108,95,100,104,95,108,99,109,108,93,110,94,102,95,81,111,101,113,118,100,92,87,99,103,109,117,99,97,98,98,112,102,109,100,107,106,96,107,106,121,122,107,121,101,103,101,108,105,98,100,108,99,99,102,101,107,101,116,109,88,101,102,105,96,100,101,100,110,66,109,94,105,114,112,114,105,102,105,110,105,113,110,123,70,91,99,113,119,98,104,116,99,119,99,105,109,104,92,103,111,105,93,101,105,95,102,99,113,91,99,104,97,94,107,107,101,105,106,112,117,108,93,104,106,107,104,117,107,75,109,102,104,111,104,95,127,108,104,96,91,99,109,109,104,105,100,113,101,90,128,111,95,104,103,105,101,113,116,111,106,104,106,111,117,92,120,105,97,105,94,82,95,106,96,106,88,107,108,108,98,87,98,115,97,101,104,106,102,121,109,96,105,96,105,88,103,98,98,103,99,106,95,94,104,121,98,100,98,101,108,102,107,101,105,113,71,83,123,96,96,102,97,110,102,112,102,111,93,99,105,97,101,95,100,103,91,99,96,110,108,96,107,116,95,92,99,99,106,92,110,97,111,103,104,113,113,104,113,80,108,120,108,104,94,104,103,96,104,97,99,109,109,111,105,108,97,96,92,98,114,106,88,109,98,107,108,105,105,97,102,99,97,102,104,102,100,87,94,119,116,100,113,107,94,102,119,110,101,103,98,102,104,87,111,96,100,106,110,96,101,105,105,106,99,115,91,95,102,104,112,93,112,93,106,104,120,101,94,100,108,94,105,96,84,110,103,100,103,103,105,107,102,121,105,110,108,94,98,101,106,101,99,113,95,114,109,101,101,91,100,94,95,98,101,130,110,105,100,90,105,110,104,94,104,100,114,104, +522.96436,90,95,100,107,89,96,102,96,100,110,97,107,115,96,108,123,101,104,101,111,101,109,108,107,90,107,110,119,100,114,88,109,109,101,99,100,104,113,101,113,102,111,102,108,106,105,106,102,96,103,104,105,110,95,110,85,106,105,114,108,107,105,99,100,105,114,98,112,104,95,105,106,116,108,99,106,99,119,103,113,103,103,106,94,112,93,120,116,102,103,115,98,103,104,105,103,111,109,105,99,101,98,85,107,94,104,106,104,105,88,99,101,107,95,103,102,112,104,100,112,107,102,100,117,124,112,107,109,110,100,101,106,102,103,100,112,103,113,105,112,105,110,92,105,91,100,112,110,97,93,98,103,118,98,103,124,103,88,116,115,92,105,100,102,104,107,113,110,102,101,104,107,100,88,94,114,104,104,111,99,110,110,98,110,90,90,108,90,108,92,111,112,95,106,100,96,108,102,104,103,98,106,94,108,103,113,114,110,110,120,109,102,100,108,104,92,79,107,97,110,106,101,103,93,100,113,99,98,111,108,107,101,103,99,104,114,105,102,110,105,98,98,112,109,117,117,104,113,94,107,118,118,99,113,104,107,92,117,101,112,105,113,113,107,99,102,103,124,114,108,95,100,108,130,104,100,102,109,113,103,108,105,94,100,109,111,95,99,99,98,102,111,103,110,117,101,96,114,110,105,98,106,105,106,97,111,111,107,106,106,111,106,108,104,108,81,123,103,106,120,102,111,99,104,105,101,114,90,110,117,111,94,115,112,101,108,111,106,91,99,114,108,78,104,114,107,107,104,122,104,113,106,108,105,92,112,110,112,105,101,114,118,114,113,97,107,107,113,109,105,113,99,89,120,106,114,92,111,93,103,126,111,99,102,103,109,84,104,104,104,108,105,115,98,102,115,100,101,110,112,104,105,105,95,95,99,103,107,118,105,111,105,97,110,113,92,105,115,105,102,97,109,105,106,103,111,90,95,112,103,106,108,98,95,103,96,98,118,98,110,106,109,101,94,98,114,105,107,104,107,106,105,98,100,104,106,106,115,112,103,98,106,106,110,109,98,115,108,105,114,100,110,98,97,109,101,100,94,110,108,88,108,107,105,103,107,109,111,100,100,105,108,102,67,100,95,108,103,97,114,112,102,88,97,130,105,98,101,104,106,108,104,121,110,92,103,115,93,107,100,101,105,109,98,96,105,115,112,111,107,97,103,101,111,107,102,108,96,99,112,101,105,115,101,107,112,106,104,106,105,99,114,97,105,93,106,113,99,96,118,101,95,124,112,93,108,117,105,112,107,100,101,109,104,110,106,100,109,108,95,100,101,105,107,100,107,109,103,100,104,115,123,101,112,125,112,99,114,105,110,106,105,96,108,109,105,112,103,98,86,115,115,103,103,109,108,105,103,113,109,113,100,98,104,106,101,108,108,114,112,102,100,111,101,103,99,109,109,115,93,115,119,99,106,99,105,102,97,109,104,104,114,115,116,93,109,109,117,113,93,115,109,100,119,110,104,100,110,100,108,114,102,104,96,112,71,110,105,103,104,107,103,112,87,98,88,89,98,102,116,117,109,108,111,97,97,107,109,97,109,105,102,108,70,102,108,105,105,83,111,106,100,105,103,102,114,106,103,101,104,101,102,119,111,101,103,107,109,129,104,100,107,95,112,106,101,88,103,115,98,115,103,107,101,109,121,102,100,100,115,108,101,105,108,101,106,98,109,110,108,111,102,99,106,103,107,115,95,104,102,90,100,117,111,100,101,112,108,103,121,100,107,107,104,104,109,104,103,87,113,106,102,102,123,90,105,103,120,103,107,99,104,100,111,114,112,104,101,106,101,112,106,101,108,107,118,116,122,108,101,104,115,107,116,90,110,119,94,108,105,103,103,117,101,111,108,119,113,117,103,102,107,105,106,96,105,110,112,94,101,99,111,92,106,104,113,97,103,107,103,101,107,106,106,102,95,103,107,114,110,98,108,100,112,110,106,121,108,98,95,105,104,100,103,118,102,102,103,135,109,104,104,110,104,101,97,103,98,95,112,108,110,105,105,102,98,102,105,86,110,116,118,104,102,115,108,100,101,107,111,103,103,97,95,113,107,113,98,103,88,106,102,110,104,105,122,101,95,104,110,105,108,91,107,87,107,113,107,113,102,107,102,120,112,114,102,108,106,109,119,119,107,107,101,79,99,99,104,113,106,103,100,99,95,94,108,101,98,109,101,101,109,117,80,99,104,100,115,99,91,108,103,110,102,97,108,108,112,88,102,107,93,91,98,97,100,113,108,116,109,93,113,109,122,92,112,105,103,107,104,99,105,102,102,107,99,109,90,106,92,108,102,106,116,111,116,112,112,108,111,112,117,102,106,99,93,105,114,99,112,104,110,117,114,105,113,109,116,99,87,96,97,100,102,76,102,85,112,95,107,99,114,112,114,111,107,104,96,101,101,113,98,92,112,113,104,107,108,117,109,113,112,117,105,103,97,112,90,117,111,112,107,111,103,112,124,86,112,101,109,99,118,119,110,108,103,108,101,100,112,112,111,92,109,108,121,108,113,103,109,95,121,107,98,112,97,102,110,110,99,107,106,108,104,110,105,103,108,117,105,103,99,107,116,105,101,111,101,105,113,112,90,108,105,95,92,102,110,102,109,101,101,94,120,110,95,111,99,110,105,117,107,94,114,108,120,109,110,116,110,108,102,117,108,99,102,105,106,101,97,106,111,109,128,110,110,105,111,102,102,95,110,112,113,105,117,104,112,105,116,107,113,105,100,106,104,91,107,111,102,94,103,116,103,104,106,104,101,93,118,99,104,105,101,102,105,101,111,115,108,127,102,113,113,109,106,103,99,109,132,109,108,96,117,103,98,100,104,104,98,105,109,106,100,99,99,104,97,102,96,104,107,109,99,111,121,118,106,106,112,111,104,92,103,95,87,85,104,100,116,107,102,105,95,105,91,103,109,112,103,105,112,103,112,111,100,101,98,101,90,97,116,103,102,105,100,103,106,112,117,105,92,97,112,103,100,109,99,104,115,109,97,111,100,116,96,108,104,108,104,100,117,86,112,109,106,106,107,99,98,80,120,116,95,100,91,110,102,96,98,103,104,108,94,88,106,119,112,103,101,100,95,97,103,109,94,105,98,111,109,95,108,111,110,103,105,94,99,106,103,84,100,98,111,107,101,103,104,106,97,97,118,100,100,110,104,92,98,102,101,98,101,100,103,105,99,106,106,114,106,112,105,94,102,117,103,109,108,93,102,97,95,110,100,94,99,87,103,110,98,103,105,107,105,101,103,101,104,72,105,106,101,103,105,107,109,108,100,112,110,102,102,110,106,108,108,106,107,112,101,110,90,109,89,113,110,102,105,106,109,99,106,101,105,108,100,88,103,81,102,95,103,97,104,109,109,104,99,102,106,98,103,94,109,97,96,91,115,106,91,113,88,112,92,95,80,99,102,101,100,104,96,112,120,106,102,111,105,110,105,96,99,100,102,106,98,102,108,121,100,112,105,102,120,112,103,102,106,107,104,120,102,117,104,109,105,108,105,103,104,111,107,90,108,102,90,95,102,110,96,81,104,111,99,97,113,95,97,108,112,103,100,106,90,105,103,121,106,102,111,105,108,97,99,95,95,107,107,102,105,104,99,95,107,97,95,89,104,120,118,106,106,101,102,107,105,110,106,100,105,103,99,108,108,100,119,105,94,110,94,96,104,97,101,96,87,100,90,112,76,96,104,102,107,92,109,105,96,113,101,103,111,112,122,109,104,104,97,111,117,114,108,105,112,101,92,104,110,94,116,108,110,104,102,98,111,80,99,93,115,106,111,126,110,84,110,107,113,105,93,106,107,113,101,105,115,104,98,106,99,88,106,95,101,101,96,116,100,105,102,104,103,110,102,104,121,103,112,101,111,103,94,107,104,112,99,104,115,108,100,108,97,109,111,111,123,102,111,100,101,96,106,104,109,106,104,98,103,109,107,102,108,98,125,94,85,110,102,89,107,114,102,111,101,107,95,103,99,95,104,118,109,98,95,111,120,103,109,104,104,106,112,100,107,108,104,113,101,102,101,117,101,96,106,106,113,96,100,98,110,106,104,107,100,103,97,110,110,95,111,100,97,96,102,97,100,93,110,106,114,107,109,104,109,110,107,99,110,108,132,105,107,89,73,110,117,106,98,108,108,106,108,100,112,126,105,106,98,112,114,103,109,109,103,96,104,102,109,109,93,94,104,117,107,101,98,94,101,101,107,99,102,115,95,104,102,106,100,91,123,100,98,109,103,104,95,118,95,117,113,122,104,113,100,106,106,109,109,107,100,109,92,89,105,104,99,94,119,106,113,99,109,100,109,91,109,109,103,108,105,100,108,113,104,100,104,115,113,103,104,97,102,94,108,99,110,108,98,109,102,113,116,104,92,100,104,108,104,105,102,102,112,104,108,107,103,112,101,105,103,99,98,94,74,103,105,106,100,99,104,102,87,99,111,105,95,99,98,107,105,67,105,97,110,110,101,106,105,91,111,103,110,105,101,110,106,113,104,104,117,93,108,105,99,102,111,110,100,98,107,100,104,108,104,115,86,103,109,113,111,113,99,113,101,103,92,109,107,108,104,106,97,104,104,101,97,111,95,105,105,101,96,107,112,99,115,104,106,106,110,106,113,99,105,89,105,119,109,89,105,103,109,110,85,72,115,102,99,105,103,102,107,109,94,99,95,101,93,106,104,108,107,98,96,96,104,102,96,82,104,101,99,106,96,100,94,95,93,114,110,99,98,109,95,95,100,98,103,105,108,117,105,96,102,101,106,92,111,104,99,103,102,80,94,101,100,100,94,84,95,92,97,107,77,91,104,90,93,103,101,105,103,91,97,121,106,99,99,104,113, +523.1051,126,98,96,114,97,101,85,108,108,115,99,103,107,106,108,100,104,117,97,99,110,105,100,112,109,100,103,113,99,110,104,114,101,97,79,113,85,90,99,112,102,104,102,98,100,112,101,107,104,78,106,104,103,98,101,94,118,95,97,98,99,114,105,107,101,100,104,106,85,108,102,108,102,101,94,104,72,105,105,102,100,101,109,109,100,103,107,100,109,104,103,97,104,108,83,95,99,114,99,94,99,110,87,105,106,100,98,97,91,104,104,105,120,99,89,110,105,106,101,119,111,95,98,105,117,105,113,99,99,99,98,110,105,107,103,109,106,105,103,105,99,117,91,104,103,98,100,103,83,99,107,103,105,100,98,103,99,99,99,102,97,103,104,116,110,110,100,99,113,101,100,97,100,102,95,108,98,104,96,90,102,104,109,106,98,93,101,107,100,105,108,99,110,106,99,111,105,105,85,101,93,98,101,107,107,110,126,114,111,107,100,104,104,108,105,111,109,101,111,108,118,93,111,95,90,99,102,104,107,97,99,82,104,110,103,99,101,121,109,102,104,110,116,103,97,102,104,116,119,116,96,100,103,107,95,112,105,100,97,105,110,110,97,98,102,107,117,105,100,92,96,101,103,109,115,116,106,115,117,106,105,97,105,103,103,106,95,105,109,114,94,93,113,112,107,103,114,96,102,103,101,102,95,109,94,116,116,109,102,92,101,106,111,91,119,102,100,103,110,122,100,107,112,100,101,104,110,85,119,109,103,103,102,110,111,83,97,92,104,101,102,101,96,99,97,111,105,105,108,98,85,103,105,98,99,113,109,117,122,102,100,107,102,113,102,105,105,99,99,97,92,109,110,104,103,119,95,102,106,112,110,107,105,105,101,106,91,102,113,104,114,100,102,102,97,108,103,110,113,104,109,104,111,107,101,107,112,103,108,116,92,97,107,102,112,106,108,111,108,103,94,100,115,112,99,108,106,111,88,115,101,108,106,114,108,111,103,100,97,109,99,105,102,108,103,103,102,106,102,110,109,104,102,106,106,113,110,110,113,102,98,96,96,96,111,104,101,105,93,102,98,107,109,106,116,103,100,99,99,121,103,121,122,91,109,104,101,99,120,104,100,112,102,94,101,113,83,100,103,112,110,95,112,79,112,107,100,110,106,103,112,100,120,125,111,118,111,114,99,96,103,102,108,104,100,111,110,96,99,108,98,104,113,100,92,101,114,105,103,105,93,107,102,104,111,105,111,104,101,92,102,111,104,107,103,104,111,103,105,105,111,103,102,96,100,104,100,94,93,107,95,100,113,108,106,118,99,100,104,102,111,97,106,102,101,107,102,104,104,98,102,104,97,107,134,108,110,108,111,106,112,117,109,103,101,92,98,120,96,93,106,116,112,103,105,100,101,104,113,113,113,121,99,104,106,98,102,99,96,110,87,102,111,108,109,108,107,98,114,109,103,111,112,102,117,99,103,99,99,119,105,107,112,110,104,106,101,102,103,125,120,101,103,110,101,99,108,106,103,112,113,106,105,107,91,103,98,107,117,95,128,104,116,101,125,103,113,104,90,102,108,106,98,117,93,108,107,99,98,98,80,113,105,107,91,115,116,110,104,109,103,104,107,114,105,92,90,101,108,93,112,123,104,111,105,110,93,103,111,108,107,97,114,96,111,108,110,95,111,109,110,88,105,93,99,101,111,112,101,111,109,94,101,103,100,105,104,83,106,101,105,106,104,112,87,115,105,101,98,118,105,111,99,96,89,111,104,98,93,114,71,99,104,99,105,107,135,114,104,99,112,106,104,112,108,95,100,81,106,113,101,103,96,107,104,106,108,99,104,109,107,100,119,106,105,115,107,115,113,100,112,112,82,114,109,110,117,113,105,99,113,104,106,76,103,111,113,121,99,106,94,100,107,114,120,97,121,104,110,103,117,93,104,108,100,110,119,96,104,106,117,101,110,98,108,110,101,112,115,98,116,102,110,105,92,109,107,84,114,106,114,122,110,99,100,117,91,114,106,100,111,108,105,117,110,95,100,121,105,94,113,110,103,115,108,120,107,115,99,114,105,105,111,117,97,100,112,101,111,110,130,103,100,111,96,105,98,104,105,101,105,91,101,99,97,99,101,109,107,109,102,109,111,116,97,107,105,105,101,100,103,100,127,114,112,107,97,117,99,125,96,105,102,117,111,113,103,104,110,96,82,103,113,104,107,111,98,97,99,109,104,107,107,95,105,81,86,101,125,104,110,104,108,101,111,122,93,97,109,118,87,114,102,106,108,111,106,106,103,104,109,109,86,94,107,94,100,108,108,94,107,88,103,112,105,106,103,111,108,111,102,101,114,103,103,98,108,107,103,107,99,108,104,96,97,115,93,105,107,96,109,116,112,104,109,103,113,94,101,110,98,102,104,112,110,105,105,110,101,108,121,119,106,111,106,114,105,98,105,95,100,106,93,108,102,106,107,105,103,113,107,111,95,98,97,107,96,91,111,95,108,108,95,100,111,109,93,107,100,120,104,118,108,98,123,104,113,102,90,113,104,124,101,107,102,100,103,112,112,108,100,128,124,101,115,111,102,102,100,107,83,105,93,113,103,109,114,92,110,109,111,96,105,99,113,104,104,103,103,132,100,99,100,101,110,128,105,108,114,104,117,109,106,105,87,115,106,109,110,100,99,98,105,110,113,109,106,103,117,101,106,100,109,111,105,96,102,90,108,108,104,108,100,122,109,117,110,108,112,106,93,106,113,102,107,113,103,104,112,100,117,96,94,101,101,106,99,110,128,111,97,102,98,106,124,107,106,109,104,107,109,110,118,97,99,109,107,112,104,111,105,99,100,113,104,111,112,117,95,110,112,108,106,111,119,96,95,113,91,108,113,103,107,111,110,109,99,108,104,113,109,121,115,109,110,105,112,112,100,114,103,106,98,102,99,107,99,99,103,102,110,102,101,109,112,117,105,112,97,107,107,91,105,116,106,114,101,132,101,93,113,107,98,98,121,98,115,97,102,102,115,99,97,122,117,118,112,111,101,105,104,112,122,102,104,112,105,111,96,100,104,116,110,113,93,108,109,99,94,97,115,117,105,108,110,106,112,102,100,109,113,119,98,103,121,92,107,121,107,108,107,99,90,121,107,112,101,107,104,112,109,109,123,109,109,110,114,105,106,112,107,115,87,110,108,105,107,102,113,97,105,102,99,123,101,98,106,114,105,108,107,104,99,118,112,106,97,108,108,113,105,119,105,110,109,108,107,104,119,98,103,105,101,100,106,106,103,102,100,99,110,97,104,105,107,95,106,104,113,97,105,109,102,108,102,104,94,103,106,95,98,103,108,102,99,100,111,105,120,107,109,106,117,107,106,93,120,86,101,110,101,107,102,108,102,95,102,99,105,94,95,105,112,103,106,97,106,115,109,98,104,102,101,113,73,106,113,108,111,104,111,110,97,102,129,106,103,111,111,106,102,124,103,107,101,112,105,101,117,106,113,117,87,107,102,102,105,107,115,110,109,103,113,104,110,98,111,109,99,119,110,116,108,110,108,87,97,110,109,113,106,109,98,99,125,103,95,111,99,97,102,101,105,115,112,102,120,101,100,100,111,94,109,95,108,100,107,106,111,122,103,130,87,100,109,103,104,100,110,99,117,88,90,89,102,107,108,110,112,80,111,107,101,99,103,102,110,93,110,104,110,106,109,112,102,101,105,109,109,99,104,99,100,101,105,98,104,102,104,104,109,108,95,101,106,105,98,106,106,118,112,95,117,116,112,93,98,102,117,106,93,98,91,99,105,110,103,102,111,104,100,104,115,110,109,102,100,93,109,112,99,101,110,102,103,109,105,100,107,104,100,115,98,113,102,106,104,95,84,95,95,108,99,105,98,96,103,113,104,106,101,89,94,105,102,103,107,105,106,102,99,101,116,109,102,126,100,111,105,99,110,98,82,121,102,104,89,94,110,106,84,118,102,103,105,105,95,97,89,102,103,109,100,106,117,95,109,103,108,117,116,103,88,107,98,106,116,98,99,104,103,107,108,102,108,124,98,99,96,96,113,109,103,102,105,112,94,104,110,98,103,105,109,102,103,102,108,95,97,104,103,100,105,116,95,101,100,109,120,77,108,100,102,103,105,111,113,117,111,107,107,89,106,102,101,97,108,93,100,102,109,105,107,104,113,105,104,105,108,112,117,93,100,108,102,99,105,109,111,106,103,99,102,110,100,95,106,100,97,110,107,100,103,120,101,89,96,99,107,97,107,88,103,105,113,103,98,101,99,104,98,115,108,113,105,99,106,106,145,107,109,102,107,104,112,106,113,116,91,100,97,101,117,102,116,107,99,107,107,111,102,91,106,104,110,101,118,104,111,134,100,110,108,103,102,108,113,112,92,101,105,116,106,114,106,117,101,98,104,101,107,100,96,95,97,100,100,106,107,99,126,106,106,90,99,95,105,108,103,106,94,105,90,112,113,103,117,103,97,105,100,104,98,97,116,117,118,91,89,110,101,112,110,96,111,113,108,115,101,87,108,106,96,105,104,113,101,76,103,109,90,104,100,108,104,97,102,93,108,101,103,103,100,112,103,104,116,107,112,111,97,104,106,91,99,124,98,108,86,99,108,108,113,105,105,98,111,111,95,113,111,105,102,102,95,109,102,103,104,98,104,105,103,118,102,95,113,104,103,103,112,105,105,106,103,108,102,100,105,107,95,94,97,107,105,113,110,101,100,104,104,110,79,101,99,95,86,108,99,99,105,102,94,107,113,114,102,102,100,102,106,81,109,105,95,102,95,113,99,106,111,104,98,100,109,108,113,121,101,107,113,110,96,100,112,116,113,112,96,136,100,107,114,100,88,97,118,104,107,98,106,108,98,105,116,106,105,105,106,99, +523.24585,110,113,84,84,102,102,93,102,105,100,106,101,108,104,101,106,105,115,97,102,108,116,97,98,105,99,109,102,102,106,96,88,112,107,99,100,120,98,94,99,92,109,103,94,109,97,103,113,100,109,104,110,113,117,105,101,93,106,115,98,97,96,104,98,103,107,100,114,104,106,105,105,102,102,102,110,111,102,99,96,102,102,108,109,114,105,129,105,110,107,104,109,105,103,99,106,100,100,101,111,99,106,102,97,99,108,108,93,119,96,117,95,103,104,106,95,109,99,114,100,103,105,118,109,102,98,118,103,123,105,106,106,111,106,106,104,106,99,106,95,101,98,79,96,101,106,109,104,106,102,96,112,105,96,109,105,105,101,104,114,97,105,106,97,102,100,96,118,105,98,93,113,111,110,91,104,114,102,112,120,98,100,95,106,106,113,105,106,102,98,98,114,104,112,101,108,107,116,99,91,108,112,99,97,101,109,100,116,119,107,104,110,111,95,100,100,99,104,99,109,100,106,117,92,104,97,107,103,110,100,107,101,98,89,109,100,112,115,105,99,128,108,112,99,113,102,110,100,96,109,111,106,96,106,107,110,97,104,104,102,93,107,108,98,100,97,112,75,109,94,108,104,108,100,113,117,101,110,80,96,100,119,94,109,101,94,99,75,102,104,98,110,107,100,110,114,106,103,100,103,103,108,102,90,110,103,105,87,100,112,96,110,89,98,112,100,102,104,104,96,101,100,95,104,99,95,101,99,105,102,113,110,113,112,113,96,101,79,102,98,112,100,97,101,104,106,103,97,107,113,107,103,99,98,103,104,102,111,96,99,110,121,106,100,104,104,107,87,105,92,115,104,105,105,100,103,111,90,104,115,106,108,103,104,98,100,100,95,106,101,108,100,92,107,109,103,97,102,114,100,90,102,94,109,102,112,109,103,104,107,104,102,113,114,107,109,102,94,114,119,107,103,105,106,96,97,103,104,91,112,104,105,117,103,100,98,108,108,94,101,115,104,102,108,93,113,103,104,99,96,95,105,112,112,128,102,114,91,116,106,95,98,108,112,106,102,114,96,110,105,108,98,105,111,103,105,85,100,113,99,110,95,108,114,100,105,103,106,103,103,122,113,109,99,104,107,110,114,99,99,110,106,102,111,110,108,109,109,108,108,98,105,104,106,99,98,108,97,97,103,99,95,107,117,100,99,104,95,107,109,104,104,102,94,101,112,110,94,107,101,101,105,103,104,118,76,102,108,104,109,99,106,99,97,94,104,108,98,84,100,102,109,108,109,105,116,97,99,103,107,90,114,112,113,117,106,107,106,113,106,114,109,108,111,108,105,105,104,96,100,114,102,91,103,104,108,88,115,114,104,108,99,111,104,107,104,96,99,101,101,103,82,105,103,111,106,101,110,106,103,104,110,92,108,106,105,104,104,109,117,104,112,93,108,96,97,106,99,99,103,102,114,114,104,102,99,103,98,102,107,104,100,101,103,112,98,104,107,106,105,107,118,103,97,100,103,105,105,115,105,114,106,107,114,114,109,98,104,105,105,110,101,107,91,84,109,109,117,98,104,108,100,114,103,99,104,93,99,107,103,111,102,102,108,101,107,112,102,95,110,109,102,127,99,100,106,122,108,101,103,98,91,106,103,98,104,99,96,117,116,116,99,98,94,110,105,110,124,107,105,100,110,107,94,110,104,107,116,116,105,105,98,96,100,106,106,106,96,108,107,113,99,101,103,103,99,110,103,104,105,110,109,113,99,105,113,103,104,97,101,104,115,106,101,98,129,108,114,105,115,117,102,104,111,120,122,99,112,94,99,103,94,103,99,120,126,107,115,104,106,116,107,95,101,103,97,103,118,105,100,104,94,109,109,102,119,101,105,105,111,115,112,102,120,102,101,107,107,117,104,108,117,107,101,106,101,106,102,103,108,104,110,107,95,104,108,110,111,109,100,102,104,104,100,105,112,82,124,110,110,102,109,107,118,99,115,112,92,104,93,101,101,111,105,107,103,105,103,106,105,103,107,120,99,100,98,87,105,118,98,114,110,102,98,101,97,109,100,103,109,101,102,97,112,100,103,102,107,98,97,113,108,109,101,109,100,96,113,114,124,106,119,99,107,95,96,108,101,109,102,101,102,107,107,98,104,107,104,94,97,111,102,103,99,93,101,101,110,106,104,101,99,98,98,98,98,91,104,106,97,105,101,103,106,98,109,90,107,106,108,98,106,108,107,99,100,105,99,105,109,119,106,108,110,104,100,108,94,104,105,106,98,106,107,109,103,116,98,110,110,109,68,111,106,95,113,120,103,100,99,113,117,103,96,98,106,107,111,100,100,117,96,106,103,107,97,93,120,104,107,102,102,116,84,96,99,113,94,102,98,108,115,114,109,98,105,107,108,107,110,112,107,110,109,112,90,106,110,111,128,99,106,110,103,104,110,101,99,101,93,97,109,93,103,108,102,111,97,108,115,98,95,96,106,92,103,97,111,110,109,108,105,109,100,102,107,96,108,102,93,103,96,105,109,101,97,108,102,95,98,109,105,106,96,109,101,76,95,122,108,111,102,108,101,103,102,116,110,91,81,98,89,98,110,98,101,110,115,107,104,102,101,118,103,107,87,116,107,97,103,108,101,107,91,114,87,85,122,98,86,120,108,101,104,109,97,109,99,86,117,107,103,96,103,92,89,104,103,101,112,98,109,105,114,105,111,122,109,91,100,102,120,103,103,108,97,108,115,100,107,102,104,102,105,110,100,109,105,100,98,107,108,119,106,99,87,105,106,110,91,104,107,99,106,119,110,98,102,100,117,102,108,115,104,95,101,101,115,109,113,113,98,121,107,95,110,104,113,90,99,103,87,97,100,118,105,94,101,114,109,102,107,95,113,106,98,109,107,104,112,100,98,114,104,105,103,85,112,103,117,108,111,101,113,91,105,113,96,107,117,108,99,94,106,120,92,110,111,95,102,95,102,105,101,116,117,114,103,108,103,112,112,94,103,101,93,103,96,103,103,103,104,104,106,106,106,98,110,120,100,107,107,113,104,101,97,94,105,93,112,105,89,103,103,97,99,97,102,99,104,97,115,94,109,104,116,106,116,91,95,100,101,90,107,94,103,88,100,92,110,100,95,96,100,103,96,96,104,103,102,102,120,111,107,102,113,87,101,104,105,112,99,102,100,98,103,105,110,113,110,105,97,106,124,94,110,106,99,109,109,103,114,96,101,106,105,93,107,90,109,98,113,110,87,106,99,95,118,98,108,108,108,112,111,91,104,99,113,100,111,94,103,107,102,117,94,109,101,110,90,98,106,103,117,108,99,106,91,111,105,107,113,117,70,100,112,112,94,89,105,100,98,101,110,101,110,98,105,98,118,104,104,101,112,88,104,106,111,115,101,102,114,109,107,103,114,102,98,97,106,102,101,108,108,107,100,102,109,110,114,102,104,106,100,98,112,100,107,112,105,102,110,102,101,110,115,108,99,97,96,102,116,98,105,84,103,109,104,105,105,116,117,106,113,107,102,96,101,111,110,103,125,107,110,110,108,110,112,97,100,107,102,103,105,93,106,117,89,98,104,100,102,94,112,105,108,87,94,106,97,103,104,103,96,99,100,102,109,108,105,103,102,116,111,110,104,112,106,98,99,102,104,92,105,98,91,112,103,101,125,107,88,95,99,101,110,110,106,113,102,113,109,97,108,103,109,118,107,105,91,100,115,83,104,110,100,100,114,97,96,98,103,99,98,107,105,112,100,110,100,111,93,103,93,102,98,100,112,115,105,95,106,116,106,101,101,114,102,112,83,115,100,98,106,106,113,120,99,86,98,102,116,108,115,101,100,113,101,115,102,105,105,99,101,104,95,92,95,104,100,114,105,100,103,104,98,96,109,98,113,95,110,98,101,110,106,105,93,103,104,99,105,114,85,103,97,107,112,96,107,92,98,100,108,83,109,99,100,106,107,107,106,105,92,99,97,102,106,108,102,102,105,95,111,121,113,101,98,103,104,103,94,102,99,103,104,106,115,104,103,111,104,83,106,111,127,98,92,96,105,117,100,93,102,112,97,102,99,107,105,101,99,102,107,107,115,102,115,95,103,97,97,116,108,109,104,105,105,104,101,107,100,109,98,106,104,97,109,102,100,102,99,97,97,104,102,106,116,110,101,104,112,107,108,102,104,102,114,107,111,109,99,109,117,83,88,102,106,87,95,107,100,104,103,103,102,104,117,104,103,99,90,112,99,83,112,104,100,97,104,112,142,99,102,107,105,97,112,107,107,100,101,103,115,108,113,113,111,100,106,104,104,101,110,111,100,95,99,99,99,109,100,111,94,106,95,93,113,103,101,107,99,100,103,79,102,109,107,92,109,99,106,109,103,69,105,96,107,98,89,97,94,95,105,102,99,112,114,108,99,117,107,104,101,97,97,105,100,106,116,109,108,89,99,96,99,103,109,130,100,104,89,99,104,96,93,113,103,101,96,99,107,105,116,87,99,97,106,111,98,91,108,105,112,92,114,107,101,104,94,101,96,93,100,105,93,102,102,101,109,99,112,89,100,103,104,96,97,103,104,109,94,108,102,103,103,104,103,108,98,103,95,107,113,105,105,110,113,103,92,105,98,113,85,106,93,108,99,100,96,105,111,102,111,97,116,105,101,100,95,95,108,109,109,106,96,109,98,105,98,104,90,102,100,98,111,90,95,102,105,103,109,95,101,105,108,105,106,90,112,84,104,104,112,102,111,90,101,105,105,101,104,96,95,85,90,107,108,108,116,96,103,100,104,97,111,100,110,86,98,105,98,103,88,104,99,98,92,112,94,98,105,99,93,104,103,104,105,91,104,110,104,110,91,94,96,102,101,105,102,108,114,89,90,104,109,117,110,104,104, +523.38654,107,105,107,90,92,105,101,103,94,100,91,104,92,110,98,97,101,76,107,95,115,117,86,113,100,117,113,101,107,119,97,94,115,99,96,101,84,98,100,98,95,98,101,102,98,106,108,120,101,103,102,105,96,105,111,99,111,100,100,118,104,107,105,105,104,102,99,138,100,89,91,113,86,112,106,101,74,109,97,106,105,105,107,108,103,108,104,94,100,102,96,103,102,110,112,115,111,94,105,95,92,102,103,103,109,99,110,96,115,101,111,108,110,100,105,103,97,109,101,108,105,105,118,113,109,103,104,89,107,97,98,102,95,104,106,108,102,108,104,104,92,108,96,95,92,98,106,100,96,87,99,100,104,101,89,93,68,105,104,94,99,105,103,110,94,109,101,107,107,108,106,99,94,107,99,95,122,114,117,102,106,103,104,102,102,107,84,99,95,96,102,103,82,110,97,103,104,101,103,116,109,106,108,97,104,105,122,90,117,117,101,107,107,98,104,104,115,111,100,90,102,103,104,96,95,104,87,106,108,101,105,105,109,109,101,108,124,104,96,97,97,101,99,109,112,98,91,99,107,94,94,103,99,83,96,101,108,121,93,101,107,113,113,90,98,112,112,109,98,105,109,104,104,100,109,102,101,112,109,98,109,103,105,105,104,90,97,108,100,98,102,93,91,102,104,116,102,106,106,97,91,106,103,104,99,126,98,100,106,110,105,114,104,120,96,90,113,100,110,94,70,99,99,99,83,74,95,96,109,113,92,100,101,114,96,103,107,106,110,108,107,98,102,108,93,100,99,100,110,90,88,109,112,98,101,112,104,112,102,99,91,104,106,97,102,84,104,105,113,108,90,120,101,94,116,93,109,118,111,106,102,103,104,100,97,102,89,109,101,102,99,103,95,97,92,94,104,103,100,101,105,101,105,100,96,100,98,97,107,110,106,100,101,109,118,103,107,100,107,101,113,102,97,107,104,106,105,103,118,105,100,111,106,113,109,104,99,103,104,108,105,97,106,105,97,108,113,110,97,114,101,98,98,106,102,108,110,113,100,98,111,101,93,103,80,107,109,89,111,99,98,112,104,111,102,104,102,107,108,103,103,117,114,111,100,106,112,96,102,101,103,99,101,99,89,108,99,119,96,103,114,96,109,101,109,96,94,101,107,96,103,122,95,108,101,122,100,101,113,98,100,109,122,101,95,101,106,114,113,102,94,99,104,97,98,104,98,104,105,107,103,100,93,97,108,105,104,95,108,106,101,111,94,105,76,101,111,104,109,109,99,97,90,106,115,109,111,99,99,96,103,103,112,99,103,102,100,89,106,98,112,91,98,103,104,92,109,99,99,118,106,111,104,104,109,97,117,102,119,99,99,97,108,100,111,110,99,103,105,112,99,99,111,100,108,99,120,109,120,97,113,105,99,103,103,115,99,104,106,106,107,106,101,105,101,106,107,75,107,100,112,103,95,110,116,100,109,116,108,105,80,115,102,91,95,114,112,97,99,95,126,108,108,99,97,100,106,106,104,94,115,102,107,95,96,96,114,108,104,97,109,105,114,100,104,109,112,117,98,114,119,118,102,96,111,99,109,100,107,105,114,100,100,107,96,104,99,98,114,100,113,101,108,110,96,113,114,109,102,103,102,108,105,113,101,106,115,96,101,101,100,116,98,109,104,102,113,101,108,104,102,107,95,105,104,104,104,103,100,112,95,106,109,99,109,108,107,103,110,100,107,109,106,114,99,108,105,100,98,105,116,109,97,106,99,117,99,102,104,109,116,100,119,92,89,104,112,126,110,97,86,106,107,102,114,108,94,107,106,112,99,105,98,105,107,110,106,100,109,112,112,129,105,99,115,112,105,100,112,101,97,109,101,111,104,98,101,115,104,96,113,101,109,107,105,108,108,103,107,99,99,110,113,109,115,128,117,105,107,99,113,105,106,114,101,101,105,106,90,106,113,113,114,110,107,94,133,101,96,98,113,102,117,115,102,96,123,101,111,109,105,107,107,97,102,108,100,111,98,102,101,105,105,88,110,96,102,103,104,94,112,107,112,111,102,103,125,99,108,111,111,101,104,104,104,102,102,103,101,99,101,100,118,119,98,113,86,98,104,119,104,113,111,105,107,104,105,103,100,117,114,100,104,107,100,99,88,109,104,126,108,101,113,101,106,97,111,108,100,97,90,108,106,96,117,101,109,99,106,102,101,92,112,107,84,97,94,95,100,101,117,101,100,109,100,96,103,99,121,106,93,93,107,104,99,102,108,88,88,109,100,113,94,111,106,112,106,102,96,114,103,100,91,110,95,107,121,102,106,105,116,102,109,105,109,117,99,104,107,101,109,109,110,101,109,99,90,99,112,96,92,113,113,99,92,105,100,101,91,105,109,102,102,118,104,117,97,94,100,102,106,106,99,102,117,81,109,113,104,89,88,107,98,101,99,114,108,97,100,96,106,100,96,107,99,103,100,89,101,105,100,98,104,110,100,101,102,99,97,93,100,92,99,101,100,113,96,94,109,103,121,108,110,98,93,84,102,110,93,101,113,109,100,101,122,94,104,108,102,106,106,112,109,100,98,113,101,117,94,113,94,96,102,109,109,101,110,108,117,109,113,105,97,120,109,110,92,104,105,124,109,101,103,107,118,100,105,94,102,94,101,108,103,101,107,98,103,104,104,106,120,122,107,112,94,104,106,107,90,108,110,94,104,125,104,121,99,94,94,96,103,102,113,114,101,97,107,107,111,106,119,99,104,97,102,113,119,83,103,97,109,109,94,99,119,102,104,106,105,110,104,101,105,110,109,112,87,98,109,101,100,102,100,111,92,105,109,111,87,123,109,108,94,105,91,104,103,109,107,110,99,95,102,109,109,116,120,101,129,106,97,105,105,112,98,113,93,95,113,100,105,98,109,97,100,108,100,111,99,111,108,113,99,103,105,101,101,122,108,109,99,114,100,105,106,97,104,91,115,109,101,103,100,96,106,114,96,105,111,103,104,102,106,105,101,114,105,107,109,98,110,103,114,109,102,104,96,113,108,105,94,98,112,102,94,106,109,106,117,102,106,111,102,136,103,98,77,119,93,103,106,109,97,99,106,107,104,95,109,100,97,97,105,111,105,91,109,114,108,103,112,111,106,109,100,92,101,105,106,107,108,100,79,113,97,96,103,109,102,110,105,114,95,98,110,104,108,103,109,112,108,103,93,110,96,102,92,99,111,106,104,109,103,95,92,111,103,99,118,102,104,105,120,110,116,98,113,90,101,91,104,92,96,95,95,107,104,105,114,107,108,119,80,115,100,104,113,110,105,103,101,101,102,99,113,105,94,96,111,108,94,115,106,95,104,102,106,105,111,112,101,102,109,105,101,99,99,105,100,99,105,104,101,110,95,100,107,107,107,102,111,104,110,101,103,99,95,109,96,98,106,112,108,98,94,103,97,106,106,102,105,98,103,111,104,101,104,108,102,90,110,96,100,96,112,103,104,95,109,98,106,114,110,108,94,105,120,109,102,96,108,101,120,113,111,94,112,112,109,109,96,95,103,110,103,99,104,110,100,105,111,105,110,97,95,104,103,108,101,99,102,108,100,109,95,102,104,103,97,102,104,104,101,103,98,91,105,106,109,108,105,128,107,110,96,97,117,102,103,108,106,105,109,125,101,90,92,111,107,107,112,116,104,100,100,99,106,96,106,99,104,102,100,111,103,91,96,97,98,100,99,101,101,104,100,110,99,103,95,103,93,113,110,93,95,116,91,114,110,103,104,92,117,108,111,104,104,87,107,103,96,94,106,111,96,99,112,98,113,99,103,109,109,103,112,102,101,99,94,104,97,120,95,102,111,104,105,94,116,99,102,110,95,105,110,98,98,114,85,99,99,113,111,104,106,106,99,105,99,105,92,110,94,100,79,93,108,100,106,106,105,99,103,115,101,105,102,124,100,103,103,106,105,106,91,106,106,106,103,105,70,124,99,100,108,104,99,107,102,106,93,100,106,103,110,97,104,101,98,94,111,100,104,96,102,102,104,98,99,114,97,102,95,110,102,77,102,104,109,94,113,97,117,114,100,114,98,102,103,110,116,105,106,101,100,110,99,104,96,102,120,107,100,111,104,107,102,100,105,110,98,101,94,100,100,109,97,109,109,108,120,115,103,95,101,111,119,100,105,99,92,100,112,102,106,101,91,93,117,103,109,104,102,110,98,104,104,101,106,106,108,110,102,99,102,104,107,114,107,95,100,105,105,95,104,96,101,104,105,103,105,105,104,103,86,100,91,108,92,114,95,109,95,101,134,112,109,106,107,100,110,106,120,103,106,91,101,103,95,98,99,92,124,90,107,109,105,109,105,106,105,104,110,102,72,100,112,102,104,97,95,103,92,103,103,102,113,106,112,92,93,73,111,95,94,113,108,84,98,97,113,109,110,108,104,102,98,103,101,115,108,122,98,101,100,100,105,95,104,106,94,112,109,107,105,103,102,96,99,105,98,102,97,100,106,104,99,110,99,88,95,104,96,98,108,108,114,94,109,102,99,98,102,112,106,102,112,99,96,105,96,110,103,107,102,96,98,100,94,104,93,104,113,111,103,110,100,104,115,100,108,110,99,108,96,99,110,106,101,99,114,107,120,112,100,89,89,101,99,117,100,97,113,106,100,108,98,100,95,99,102,92,119,107,111,112,94,95,99,109,103,101,112,102,109,91,99,109,111,93,99,101,111,109,105,110,102,104,109,103,99,95,104,108,100,96,101,103,85,95,92,125,98,113,97,112,107,113,109,103,95,114,100,109,95,102,96,112,100,79,102,87,116,102,104,98,97,101,96,94,101,115,94,109,107,99,95,115,106,99,97,101,106,83,104,99,96,111,93,90,110,102,90,101,99,115,113,100,83,121, +523.52728,90,103,111,102,89,107,98,99,98,94,98,64,106,117,121,92,82,105,95,97,103,109,108,92,96,99,108,96,94,107,96,94,90,100,107,101,89,95,87,109,90,101,103,100,112,105,101,101,104,120,97,104,107,93,106,82,114,110,97,104,97,103,93,103,100,106,104,93,101,100,105,99,95,108,89,110,107,91,104,117,109,103,90,105,91,96,100,106,95,87,100,105,105,101,107,88,115,86,85,96,101,91,91,108,87,96,110,95,79,93,86,101,105,97,103,99,114,97,105,107,96,96,99,114,116,106,102,120,98,98,95,91,90,105,113,98,99,106,103,101,121,105,91,98,103,101,108,100,105,101,99,91,100,94,111,105,98,73,104,105,101,103,113,109,103,107,101,97,89,91,104,91,101,94,110,106,109,99,108,95,108,102,106,96,98,99,113,91,103,115,110,97,97,92,100,109,96,99,102,106,93,105,99,100,114,107,94,107,113,100,95,109,101,95,96,98,105,104,98,99,104,110,106,98,94,98,108,101,97,112,101,106,102,106,109,92,110,109,108,97,97,82,116,94,92,93,98,81,112,93,106,98,101,100,100,105,104,94,112,119,115,109,101,117,98,92,117,111,93,96,99,107,98,102,103,104,103,104,96,94,101,106,99,104,102,101,86,102,108,101,103,101,103,106,105,104,90,95,100,101,107,98,107,101,97,100,107,105,108,99,99,109,109,106,96,108,120,109,97,111,114,105,107,106,118,98,93,87,96,104,107,100,103,110,109,107,99,110,88,110,105,88,106,98,102,104,110,94,115,104,99,100,96,100,106,110,103,102,111,111,102,104,116,108,110,94,97,96,112,103,114,110,105,107,107,100,100,101,99,108,104,112,102,98,110,88,98,114,105,106,105,102,93,105,112,108,107,104,97,103,100,101,91,95,97,105,103,111,112,107,102,96,106,90,87,105,103,94,109,103,102,102,96,101,94,119,95,90,88,107,68,96,94,109,93,108,108,106,102,104,101,99,93,105,91,86,93,108,113,103,86,105,95,100,97,101,101,101,102,111,95,101,95,109,113,101,94,93,106,108,117,118,105,96,108,107,94,113,97,92,100,113,107,118,98,107,97,91,105,94,104,109,99,112,101,114,106,107,108,107,109,96,110,100,103,113,99,103,95,99,112,93,105,100,102,101,104,110,101,85,99,104,94,94,101,106,97,98,104,103,95,115,92,103,99,107,111,96,94,101,76,94,103,93,104,89,108,97,100,102,95,113,111,108,104,94,109,95,92,100,99,100,103,111,70,93,106,106,99,103,104,111,99,105,94,96,98,105,91,107,107,94,99,98,96,112,93,107,94,110,101,110,81,101,103,105,98,85,112,119,114,96,108,99,97,82,97,108,110,113,112,106,113,104,106,88,109,94,107,94,125,100,102,106,117,103,99,100,113,102,99,95,96,102,100,115,113,98,95,102,107,105,107,103,94,89,110,97,100,107,114,105,92,112,102,118,116,99,102,112,113,83,101,99,102,102,109,98,96,109,103,113,98,108,102,101,113,95,88,109,86,98,112,94,86,107,101,99,103,99,104,109,99,111,99,94,118,94,111,96,114,110,102,102,97,104,98,114,106,102,102,106,103,99,112,100,101,100,104,104,102,100,101,104,91,100,104,93,112,122,108,100,103,98,101,97,90,106,99,92,109,103,100,111,94,95,104,110,92,100,100,99,101,99,109,106,94,109,98,91,91,99,97,101,89,94,107,100,100,97,99,100,99,101,105,103,98,106,99,89,100,103,102,98,104,120,106,105,100,107,99,99,110,103,102,109,116,90,83,106,103,87,95,106,88,113,103,103,101,99,105,98,98,97,104,91,101,113,93,110,110,105,109,96,94,103,98,102,97,98,104,105,106,114,99,91,99,95,99,91,101,102,99,90,91,97,96,105,105,100,93,96,94,99,91,98,103,104,103,99,90,105,106,99,103,100,101,101,120,99,101,96,101,98,100,104,106,113,101,108,109,112,102,94,101,100,97,106,111,96,99,98,87,99,107,99,101,97,99,98,112,112,114,120,111,82,91,109,97,95,100,74,101,98,129,117,100,129,91,109,109,96,91,109,110,106,110,89,99,101,107,106,93,102,93,105,91,102,94,89,115,105,107,95,112,104,106,121,109,99,114,103,100,98,106,115,102,103,101,96,96,96,103,97,99,107,112,108,109,100,103,106,95,93,98,99,99,67,101,96,98,111,105,100,100,98,98,104,108,103,111,105,112,110,106,98,121,110,88,99,104,102,109,107,109,96,107,103,104,106,105,111,94,119,86,107,108,100,92,99,105,99,103,99,88,95,111,90,130,95,107,108,106,97,104,101,131,101,103,95,107,110,94,101,96,91,96,105,104,100,123,112,108,98,115,98,103,100,99,95,106,103,104,97,102,97,105,103,91,108,101,110,100,109,94,135,95,105,92,106,79,104,98,115,104,99,98,95,110,107,91,101,101,97,100,96,102,98,105,109,103,96,105,100,100,114,98,108,105,108,113,109,103,115,120,106,107,116,102,101,106,99,110,116,101,106,113,94,103,110,99,107,113,99,104,110,94,102,99,98,102,87,103,109,93,98,109,110,109,97,121,98,101,119,101,125,105,99,112,103,105,103,110,105,117,102,97,115,121,113,99,91,104,106,98,98,98,99,110,116,76,101,107,98,112,104,82,105,103,111,109,97,109,103,103,87,109,87,103,117,97,101,101,101,93,112,103,108,91,100,90,116,105,104,99,97,109,94,97,110,101,109,99,104,113,113,113,112,112,105,117,110,106,119,108,100,99,106,124,105,106,113,103,94,100,111,117,115,89,98,111,112,112,91,103,105,107,127,94,121,110,109,110,107,104,115,99,119,100,93,102,107,98,115,110,111,105,105,103,105,100,102,114,102,106,111,110,95,112,123,102,94,103,95,108,108,99,97,95,101,108,109,100,99,106,100,120,106,106,108,99,75,99,109,114,102,103,102,98,107,107,107,107,115,106,108,111,111,104,96,110,102,110,102,116,103,99,96,107,107,100,111,98,106,109,98,113,98,112,105,104,119,102,98,92,105,103,100,105,94,113,118,109,115,107,100,113,108,100,104,113,105,100,113,116,97,101,104,98,104,105,103,102,116,105,100,110,111,97,105,100,81,104,100,94,117,108,107,98,97,108,104,100,108,111,101,106,107,111,99,100,108,110,97,119,101,103,113,91,105,99,98,98,65,112,103,104,101,106,98,109,114,101,112,101,105,103,103,103,113,98,95,109,116,101,92,98,102,106,103,109,103,103,102,106,107,110,96,113,98,107,105,106,109,115,80,97,100,108,109,104,85,111,110,110,114,101,116,102,107,85,105,112,114,109,101,113,99,104,97,89,112,98,99,77,103,113,100,104,98,99,102,108,111,111,99,135,104,111,102,99,87,99,105,98,108,100,109,105,99,91,100,108,111,105,97,104,101,98,106,96,123,105,98,98,100,116,96,108,105,104,101,108,97,112,96,104,106,100,97,113,115,74,101,114,102,110,104,97,106,107,117,109,101,94,108,96,84,101,106,102,99,113,98,96,117,116,108,99,93,113,94,95,103,117,107,95,110,99,103,98,111,120,113,104,108,102,112,83,109,93,103,103,107,100,97,106,108,98,108,105,95,111,106,106,102,112,109,103,101,117,109,95,97,97,99,112,98,109,102,98,91,110,105,97,107,116,109,95,102,110,98,73,100,105,109,103,101,99,101,107,102,101,124,106,98,104,101,82,108,112,110,112,100,108,104,103,101,120,109,103,100,99,106,103,112,109,108,101,98,113,103,109,109,109,115,98,110,108,116,101,109,101,104,97,101,103,107,107,100,105,108,108,111,119,121,113,97,103,98,95,112,97,121,104,111,109,104,83,103,94,102,107,99,102,104,98,97,107,111,105,105,106,110,101,111,92,95,115,105,100,106,105,104,109,112,93,102,101,102,100,109,111,106,108,123,97,103,102,109,107,105,100,91,102,98,101,110,95,101,107,99,102,105,107,102,98,111,110,101,117,102,98,116,108,108,115,109,109,104,111,108,104,114,105,105,103,100,110,99,109,103,99,101,95,94,106,110,96,105,100,106,109,106,103,103,106,108,103,111,75,103,86,108,110,96,113,112,103,93,107,97,95,94,110,105,104,110,114,94,101,106,111,110,99,116,106,71,109,100,108,103,113,109,96,102,107,105,106,112,113,90,94,94,105,89,104,108,103,102,93,113,103,98,106,98,108,100,112,111,100,98,110,100,110,89,114,96,87,109,117,99,121,112,102,96,110,98,106,107,106,104,112,102,111,102,106,115,108,108,104,107,114,100,110,98,108,113,104,110,99,93,106,94,96,87,106,100,116,112,91,112,111,102,108,105,96,109,112,111,105,105,99,80,112,115,97,112,104,97,104,103,88,102,90,105,97,105,109,107,101,107,105,105,103,91,111,99,84,100,104,95,100,98,113,95,108,110,87,83,95,110,89,99,103,101,99,101,113,104,97,100,98,117,100,107,109,119,105,94,110,99,95,119,115,102,83,121,104,101,95,105,114,95,102,104,99,103,104,99,97,94,72,111,114,97,112,104,96,95,101,94,106,103,108,120,102,112,122,109,101,95,104,104,95,109,100,108,129,107,95,99,103,110,105,103,117,107,103,93,100,113,106,97,107,109,105,99,109,107,104,100,104,99,89,104,111,94,97,106,88,105,103,100,95,86,99,114,97,109,104,97,106,97,87,104,93,96,99,105,95,90,88,112,99,104,108,91,107,100,106,120,93,87,108,116,98,116,114,91,104,104,103,105,120,101,114,101,89,112,110,121,99,90,107,100,102,108,105,94,100,111,85,100,97,105,108,110,88,98,112,102,113,91,102,104,100,108,89,99, +523.66803,107,100,114,96,101,107,74,94,100,102,94,87,103,98,106,93,104,103,117,103,111,103,97,98,108,119,107,112,104,107,104,108,92,108,110,99,98,102,105,110,91,96,107,96,112,118,103,102,96,119,105,109,107,114,99,88,113,108,106,101,93,103,118,94,108,113,91,97,118,86,124,97,99,110,100,115,103,116,94,106,104,102,105,96,101,104,102,103,105,114,101,101,108,95,107,106,95,99,110,102,97,110,114,106,115,115,116,101,109,103,103,92,101,103,113,117,100,97,108,104,80,108,96,116,106,105,111,86,126,104,108,109,103,108,101,112,102,104,100,78,106,104,86,98,97,88,100,108,82,113,95,110,105,102,114,112,109,95,97,110,87,103,117,109,103,105,112,100,114,98,103,103,104,99,110,101,121,106,109,95,117,117,102,121,114,104,104,97,103,97,112,102,100,96,106,105,111,103,100,99,113,102,105,110,101,107,106,108,102,104,101,108,102,109,116,99,109,116,112,112,110,104,110,99,86,112,98,105,109,107,113,96,103,103,112,101,101,112,113,101,104,92,111,113,113,102,97,110,101,72,107,93,98,94,107,107,96,106,99,78,93,94,104,86,106,98,108,95,99,97,109,111,111,105,107,93,103,110,100,117,104,108,107,102,109,88,105,101,103,124,108,114,105,104,117,113,73,115,94,110,102,119,104,104,99,104,107,145,97,100,108,110,85,99,125,101,109,99,94,107,102,96,107,104,110,109,104,101,110,108,100,121,109,94,107,95,95,103,94,110,107,108,102,98,100,97,110,115,104,114,117,106,93,105,101,109,118,99,112,106,105,108,95,110,105,112,120,106,108,104,107,90,101,103,108,96,116,110,110,119,110,105,99,113,118,97,96,96,92,101,92,102,114,122,113,105,105,99,107,111,119,100,94,95,112,100,111,112,102,101,97,68,118,109,95,100,104,130,105,108,112,106,99,108,102,112,108,103,79,110,111,108,104,94,100,104,109,121,114,113,117,121,102,110,98,109,95,108,102,103,103,95,81,109,109,113,104,116,112,98,104,110,118,100,105,101,105,105,104,115,112,104,106,92,112,103,103,118,104,94,108,95,123,107,104,112,107,96,94,96,107,106,100,95,90,104,96,119,100,107,96,102,103,107,113,103,100,108,110,110,106,105,112,104,114,114,110,111,84,114,99,108,114,104,104,121,90,130,107,116,105,116,104,103,111,113,110,102,110,117,100,111,105,104,92,104,113,109,104,103,103,91,114,107,104,100,104,105,100,102,101,99,104,105,103,114,119,120,104,102,106,111,105,103,108,92,120,107,111,101,105,106,118,97,106,107,110,110,109,100,105,109,109,106,122,108,112,103,113,99,114,117,109,115,105,112,94,101,101,106,100,109,110,120,119,108,124,110,114,110,104,102,112,102,102,104,100,106,112,121,108,118,103,92,91,116,100,113,108,112,112,113,95,101,105,94,100,90,101,105,97,111,107,102,113,112,106,111,107,102,100,102,106,99,101,113,96,117,106,104,113,100,107,96,103,113,108,121,109,97,112,108,102,98,105,107,98,108,107,109,99,108,99,103,109,104,113,105,107,97,98,114,107,112,100,103,106,108,107,106,102,112,103,103,90,110,115,106,97,113,100,108,106,115,101,101,101,112,111,120,112,117,92,107,95,106,104,95,110,105,98,96,116,99,116,112,99,114,112,107,106,129,118,101,107,106,80,94,123,105,109,103,123,97,116,105,105,113,97,98,111,114,113,102,104,103,110,107,105,109,106,80,102,106,108,114,111,106,100,92,116,105,109,113,117,117,97,102,110,112,109,111,115,109,98,93,107,111,63,107,116,109,108,96,105,117,115,114,110,110,91,99,107,119,124,96,103,107,116,101,112,108,100,110,96,91,114,109,118,111,98,110,104,104,121,101,102,109,112,101,103,98,113,107,104,108,99,113,109,113,104,105,109,103,102,103,100,112,96,111,106,102,122,124,111,100,104,107,108,100,108,115,109,105,106,100,106,110,105,108,100,109,106,100,108,99,102,108,106,75,102,116,111,101,93,99,99,109,108,115,113,109,94,108,114,107,106,97,95,124,110,109,92,110,103,105,97,103,93,103,117,118,112,106,105,96,105,96,107,112,105,105,106,111,99,96,103,121,102,114,106,105,119,116,114,106,102,114,108,107,108,113,115,103,103,98,102,87,113,112,108,112,118,104,82,101,108,108,96,100,94,118,99,104,116,105,108,101,101,91,90,88,103,106,100,111,113,114,95,103,121,113,103,112,116,104,118,103,102,111,92,118,120,105,116,87,109,106,106,102,103,94,110,113,99,112,110,116,110,100,114,103,113,112,108,104,101,108,98,96,106,108,100,92,108,87,105,98,100,104,102,113,106,108,107,102,113,104,113,112,102,115,103,112,108,96,97,104,107,101,115,112,103,100,98,110,103,109,98,109,103,104,104,100,110,104,107,105,110,106,99,102,102,101,98,111,107,110,99,103,100,100,103,108,104,108,100,117,107,115,96,114,111,110,104,125,102,108,96,109,101,106,103,136,96,99,98,109,110,101,97,100,108,107,120,100,103,98,103,104,104,107,94,101,93,103,103,109,102,104,94,108,126,102,95,113,119,92,107,105,100,102,102,91,111,103,116,93,100,94,109,96,100,104,112,103,102,102,100,101,103,116,94,106,106,106,105,102,96,107,106,96,95,111,97,113,110,113,104,102,99,104,102,104,106,97,113,103,109,103,100,103,108,106,103,110,99,107,102,100,99,96,103,144,107,111,105,104,79,121,102,103,91,104,110,94,107,109,98,111,98,104,99,117,107,97,108,104,83,94,101,102,109,123,98,108,110,114,104,109,108,100,112,101,103,99,101,113,103,108,109,102,97,107,108,101,89,97,106,102,102,101,110,106,112,113,105,113,106,97,80,111,102,107,99,100,113,105,105,90,107,105,98,95,109,99,129,108,110,109,109,91,106,100,104,104,106,117,104,112,111,107,99,108,106,111,100,103,106,95,109,102,94,100,113,105,103,114,112,113,112,101,117,104,98,104,105,109,102,114,106,109,108,100,109,112,104,98,94,105,103,103,100,97,109,98,104,99,112,108,108,120,108,100,114,114,124,109,107,116,131,100,99,96,114,110,113,108,100,98,92,105,105,113,108,108,107,104,105,114,113,101,97,100,100,105,107,106,112,99,105,107,92,121,95,100,110,109,104,111,103,104,99,99,113,90,102,103,101,93,112,98,102,112,110,98,96,103,100,104,102,104,111,103,98,105,112,104,102,109,104,98,105,103,104,108,105,108,105,101,91,101,101,101,104,113,103,102,105,89,103,102,99,101,104,101,106,95,93,99,100,98,112,99,103,111,115,92,110,91,110,105,92,102,112,102,110,103,102,93,100,100,104,112,111,99,108,108,104,109,106,108,99,102,118,116,103,113,102,107,107,98,113,100,108,99,105,106,101,100,110,102,112,105,100,100,115,104,113,99,100,106,105,112,115,99,106,117,109,111,112,103,95,120,114,110,109,101,105,93,99,117,110,104,115,103,101,109,101,106,108,109,95,105,106,92,105,87,99,97,96,101,108,95,104,117,113,112,110,107,94,109,105,111,103,99,104,99,95,113,114,113,99,107,107,108,109,83,106,99,106,106,117,109,100,103,96,95,95,99,107,114,109,102,96,103,107,99,96,106,106,108,99,117,106,103,108,83,103,104,106,116,101,104,102,99,103,98,111,95,111,105,108,98,113,104,111,108,124,101,100,101,99,109,98,107,95,98,107,122,109,108,100,111,102,100,110,101,91,104,94,102,99,112,87,104,114,95,98,107,104,114,102,100,102,104,91,104,100,118,101,95,102,108,111,106,99,90,90,106,107,100,104,99,112,96,95,100,63,106,104,96,106,99,98,106,105,93,106,104,102,108,109,106,97,106,101,103,111,103,109,95,102,111,94,112,110,103,105,120,110,106,121,100,101,105,96,106,104,114,105,117,105,105,110,101,98,94,96,105,110,102,102,105,118,102,112,97,103,100,105,101,99,99,112,100,102,101,95,111,110,110,116,102,96,107,117,103,99,103,110,101,99,108,103,102,106,114,93,109,103,102,112,115,103,115,103,105,106,93,103,92,104,110,100,106,102,109,119,114,105,104,102,98,101,110,99,95,102,100,104,106,103,112,99,106,90,109,105,102,101,95,110,100,97,116,101,101,113,94,113,106,95,109,101,86,97,116,97,112,116,99,102,103,122,70,110,100,103,119,113,107,102,102,100,87,113,97,97,112,103,94,116,117,108,111,104,110,107,113,100,97,106,98,129,96,97,78,106,108,110,109,91,100,103,94,100,100,115,104,104,103,118,110,97,115,108,98,105,96,106,118,98,106,102,100,110,99,116,100,93,90,121,111,101,109,105,96,96,106,93,99,98,90,105,108,99,104,103,88,102,102,110,104,95,96,120,113,96,113,101,94,93,104,98,104,95,112,95,98,100,99,101,99,100,101,109,97,109,101,98,99,99,96,112,105,102,101,94,102,96,63,101,110,97,105,105,104,114,106,99,101,114,117,107,100,113,109,101,107,101,90,110,99,109,116,111,103,106,102,102,105,102,117,112,82,112,101,107,103,108,113,102,99,111,105,117,107,106,123,107,101,99,109,91,113,114,102,95,95,108,102,95,112,111,107,94,110,114,108,91,101,103,111,100,95,112,114,103,110,114,110,101,103,98,98,106,93,108,85,107,106,89,106,114,78,107,109,115,101,117,101,104,101,109,109,109,107,101,103,108,100,92,87,115,100,95,107,108,100,104,75,92,107,100,100,98,93,94,106,101,107,105,89,76,100,69,78,96,104,85,102,110,92,118,105,93,94,103,104,107,110,101,102,92,92,108,95,91,100, +523.80878,99,95,87,106,88,109,94,103,90,98,94,94,93,96,100,106,94,81,73,100,104,111,102,106,97,112,106,95,94,104,113,98,90,77,107,107,100,116,101,104,111,100,107,109,103,95,112,123,97,106,107,102,93,112,101,90,109,106,101,106,100,103,87,79,105,101,105,112,103,87,105,84,96,105,97,115,110,96,105,104,112,111,103,108,100,111,102,95,96,100,87,111,105,115,105,95,108,110,104,97,104,103,104,103,96,98,110,105,95,112,91,104,109,96,108,84,110,107,105,119,99,102,103,118,105,95,103,93,110,94,107,108,101,96,107,101,100,102,103,85,96,105,95,102,103,96,103,101,101,91,96,104,114,102,84,101,101,103,90,100,105,105,104,80,100,104,104,76,99,99,133,103,97,99,106,117,92,103,102,108,107,101,102,118,106,111,96,101,105,100,90,109,107,95,102,99,106,105,98,103,100,101,97,101,93,96,106,105,108,110,93,113,108,113,103,91,95,101,102,103,109,98,95,97,94,94,113,107,107,107,104,114,107,101,109,102,97,100,98,99,100,98,106,105,102,97,113,96,98,112,114,106,116,107,106,100,109,98,90,113,100,108,105,101,110,109,101,104,100,102,112,101,107,89,113,94,103,107,87,113,109,106,97,101,125,116,87,101,94,112,101,104,109,106,111,114,103,101,107,101,104,109,99,117,96,114,108,115,106,112,108,105,116,105,102,98,118,108,92,105,106,104,100,106,102,113,109,97,109,111,111,110,105,109,119,111,96,105,93,118,103,99,94,106,102,102,106,107,104,103,109,98,98,106,91,105,107,95,108,107,97,87,102,106,101,110,100,97,103,108,117,90,107,97,109,91,106,100,88,106,102,106,97,114,102,110,101,110,81,113,108,114,104,89,87,94,104,94,103,119,106,103,104,109,109,104,99,92,109,97,107,103,94,111,69,101,96,98,116,108,82,110,98,100,106,99,103,89,106,104,105,109,98,112,107,117,95,110,98,98,96,100,104,109,87,97,100,93,105,109,107,108,105,111,107,112,101,104,118,96,96,101,96,101,88,116,89,104,106,107,107,110,97,103,102,109,83,109,101,111,97,104,113,105,106,96,104,96,100,106,117,112,107,106,96,103,110,101,103,108,97,91,94,102,113,104,99,99,112,100,109,104,97,87,110,100,95,110,101,104,97,97,113,94,104,105,108,110,106,103,104,108,99,112,96,96,112,94,110,99,101,111,97,108,109,119,102,116,95,109,107,101,107,98,106,98,91,104,99,105,101,111,91,104,79,103,95,94,99,87,91,97,104,103,103,107,102,96,96,104,112,90,108,93,105,86,104,111,111,106,107,113,99,104,107,84,94,104,114,104,106,106,107,107,103,98,92,90,106,109,91,101,100,106,101,103,103,98,99,78,105,113,114,106,76,96,91,95,107,99,111,95,98,102,94,100,108,102,108,98,107,103,89,101,103,100,102,81,102,108,105,96,98,98,117,106,109,104,105,99,93,91,88,105,103,111,76,99,121,104,100,112,105,93,105,101,104,121,106,128,110,102,103,90,107,105,109,112,100,112,98,120,109,100,108,102,109,113,105,109,101,102,103,78,93,110,86,106,111,90,67,94,101,93,93,111,107,106,105,106,110,114,100,110,104,98,106,104,115,110,105,106,104,131,96,103,110,103,95,105,117,112,105,85,107,96,98,114,99,102,99,96,104,105,100,102,102,104,107,108,113,100,96,100,105,91,108,110,98,93,108,113,104,92,88,97,106,81,101,103,111,68,118,106,87,108,105,96,97,104,107,108,101,113,111,123,94,105,104,113,113,96,96,97,101,100,101,89,92,105,128,103,106,77,98,99,107,93,105,98,117,105,109,110,107,108,115,121,111,106,105,108,110,103,95,105,81,109,111,105,100,102,100,110,99,107,101,107,97,90,103,97,109,111,95,114,100,94,105,113,107,100,121,117,112,102,108,99,125,95,105,107,105,118,110,105,117,92,80,101,92,102,113,107,104,105,104,110,103,101,108,107,107,95,108,100,108,108,95,117,97,109,109,91,99,95,109,111,97,97,98,114,100,114,104,105,109,104,108,109,101,103,99,101,103,101,117,104,108,100,91,118,107,106,107,100,116,110,103,103,104,120,107,115,102,97,105,112,100,108,106,101,118,110,118,107,118,107,100,111,102,103,100,79,107,107,113,101,100,121,95,98,108,103,102,104,99,95,100,107,98,112,112,119,122,111,98,102,99,101,108,112,110,102,98,107,104,95,98,92,103,102,104,120,103,99,107,101,95,110,100,111,102,92,106,105,105,99,97,100,103,103,95,101,98,108,92,121,110,103,108,106,109,117,114,104,111,96,108,100,108,106,98,108,103,97,98,108,101,121,111,113,109,102,109,110,125,105,97,100,98,101,110,112,110,97,112,96,104,107,96,110,114,105,106,87,112,111,103,75,103,107,104,101,103,99,109,104,106,104,104,107,85,104,112,101,95,97,104,112,100,101,104,101,101,114,98,99,101,103,105,108,107,117,101,102,96,84,102,108,105,108,92,95,111,114,109,117,119,114,105,108,104,91,102,107,105,98,105,98,98,111,100,94,115,86,108,99,108,101,95,90,100,101,108,106,107,105,95,116,107,134,98,104,101,109,96,98,105,93,107,99,114,103,114,99,101,100,99,98,100,93,101,114,104,114,82,107,101,104,97,103,104,115,101,96,100,100,109,105,103,96,119,112,104,115,115,102,99,98,102,103,108,118,101,103,97,114,111,99,103,100,107,117,96,101,96,96,96,94,106,100,99,113,103,106,107,106,97,105,109,101,107,86,102,105,116,104,107,98,116,95,95,88,104,111,104,105,98,109,107,106,87,105,107,106,107,101,102,96,116,109,114,109,84,111,100,96,93,112,105,101,114,103,87,108,95,107,95,106,113,106,107,103,99,110,103,107,104,107,94,116,93,116,109,106,107,121,94,84,96,95,100,113,98,99,100,110,98,109,101,120,103,117,103,106,98,108,124,105,102,103,109,111,114,93,104,98,109,117,105,104,101,103,102,98,109,105,99,107,87,98,102,113,101,105,109,98,105,102,117,111,105,101,104,109,116,122,98,105,108,108,106,106,111,116,116,102,109,99,115,96,107,99,96,109,102,108,97,101,93,110,117,98,105,102,106,97,101,112,121,95,102,111,100,92,103,101,113,100,95,99,106,92,105,101,108,94,95,109,112,103,99,104,102,99,102,103,114,103,104,106,116,110,119,89,107,123,95,112,99,88,98,111,107,110,110,102,99,96,93,89,108,110,99,106,87,109,109,114,112,100,100,101,105,111,111,102,103,78,98,107,105,95,98,102,92,102,99,116,95,93,83,99,105,101,102,99,95,92,100,90,98,99,102,96,106,94,101,91,91,90,106,100,100,107,113,109,105,117,103,99,104,89,117,98,99,105,107,100,111,114,98,109,97,104,103,101,99,102,102,109,89,113,98,114,99,97,103,89,99,111,107,104,98,105,103,102,103,95,101,101,101,105,102,99,114,102,97,106,116,102,111,100,97,107,105,104,108,125,103,91,100,102,101,98,103,111,107,92,94,99,99,96,108,101,101,99,107,108,90,104,95,105,91,109,103,103,103,105,99,124,104,97,106,92,106,99,87,95,100,99,108,102,87,95,96,93,108,97,116,101,100,96,108,96,102,105,105,76,129,102,88,100,100,104,107,106,101,94,98,109,105,98,103,109,96,108,111,103,104,109,97,115,100,109,122,96,97,110,96,100,100,99,88,98,101,101,99,105,96,106,100,103,104,99,104,121,101,109,104,101,105,109,100,89,103,99,95,103,104,109,97,103,96,104,96,109,108,82,100,103,117,98,110,112,104,100,105,90,101,110,100,101,113,100,108,94,99,113,113,106,105,107,101,106,105,93,113,105,96,103,107,68,114,106,90,103,112,100,106,106,107,91,105,110,102,102,113,103,102,112,105,106,106,91,106,116,110,104,105,105,98,100,115,91,112,102,108,112,100,95,101,105,105,114,106,105,103,104,113,99,107,111,107,107,96,89,100,95,112,109,103,104,101,105,97,103,110,108,104,105,101,108,107,102,102,110,117,97,98,110,104,109,112,108,113,95,105,117,101,92,102,114,100,98,96,114,112,104,78,107,99,94,103,88,110,95,96,108,111,99,105,103,107,104,103,101,109,105,90,104,101,94,105,106,92,108,113,110,102,98,110,90,103,99,103,103,104,118,100,85,108,95,99,110,99,101,103,108,103,113,115,86,91,107,106,101,103,115,94,96,100,94,117,105,99,90,98,111,107,107,111,106,108,109,95,101,103,95,102,111,92,71,99,121,102,117,114,99,107,111,110,102,98,102,110,102,103,105,95,99,109,107,95,96,105,104,99,92,96,100,92,105,88,98,103,87,91,85,99,100,93,94,90,85,96,111,104,105,111,120,108,111,104,100,113,116,104,98,107,62,99,98,109,103,98,95,100,109,100,96,102,100,100,95,69,99,105,94,95,87,99,102,94,115,97,112,105,116,103,100,100,102,94,95,99,102,110,96,92,94,114,99,105,99,100,120,113,96,104,101,99,112,107,123,107,106,98,133,108,109,103,92,90,104,103,111,99,105,103,100,102,109,103,97,94,95,106,105,100,97,108,94,103,108,97,109,97,92,95,98,106,103,107,105,103,92,97,101,117,105,113,104,100,113,94,106,103,90,109,100,90,90,104,82,92,95,99,107,88,104,95,88,76,99,103,105,101,103,89,113,101,102,103,98,99,114,108,117,103,92,95,98,106,102,105,103,95,88,129,95,107,97,99,85,103,104,108,99,99,102,88,91,89,101,101,91,97,112,83,100,106,95,104,96,103,106,101,91,102,83,100,103,97,106,97,68,111,95, +523.94946,87,116,88,96,100,105,104,100,108,107,98,97,98,94,134,101,88,107,104,93,101,99,104,104,96,104,99,130,121,105,109,99,97,96,121,96,96,105,111,107,109,103,121,105,93,109,98,106,111,116,101,94,110,104,102,112,105,114,89,110,105,82,111,114,109,111,111,107,110,94,113,106,100,101,87,112,105,115,99,114,108,97,106,97,116,107,107,121,105,98,98,108,106,102,106,100,104,103,100,91,96,99,102,105,104,101,125,96,96,101,99,104,119,111,109,108,104,103,114,99,110,98,104,111,109,109,114,105,112,114,115,113,105,98,111,98,100,110,110,105,98,95,107,104,106,105,113,111,116,103,100,119,109,87,111,112,117,117,96,95,104,96,92,115,102,113,101,103,116,113,119,97,109,104,111,109,111,103,98,116,87,99,109,108,95,100,104,95,95,123,97,98,95,105,107,105,105,116,97,99,106,88,100,110,101,103,99,114,115,110,98,108,105,102,113,105,107,100,87,111,101,104,103,105,104,110,104,105,96,108,98,106,95,108,93,111,115,100,114,108,107,99,98,108,99,100,110,116,104,99,100,106,106,104,93,111,104,115,101,99,111,110,77,115,108,109,103,98,106,97,102,91,105,112,117,103,101,110,105,108,96,102,96,111,106,108,94,105,100,107,90,107,106,119,108,113,112,109,96,102,106,99,98,112,114,106,107,115,101,115,109,99,112,105,102,104,93,117,106,102,105,109,112,98,104,108,100,101,114,104,88,108,75,102,114,99,109,103,105,120,121,94,105,94,101,110,95,91,111,112,99,98,110,105,104,109,107,102,107,98,113,99,84,112,102,113,109,120,100,105,114,100,110,103,107,113,86,108,117,92,102,122,103,103,100,103,110,111,113,109,113,92,101,103,100,97,94,98,109,107,97,82,102,95,107,101,113,99,99,100,96,107,113,120,109,87,124,116,98,96,113,99,100,98,105,108,108,111,117,89,91,107,103,106,102,108,106,108,97,105,109,102,94,105,98,98,99,101,100,112,101,110,100,98,112,101,100,109,103,98,104,107,122,76,114,117,105,95,106,103,109,112,89,100,94,106,113,113,105,103,104,121,115,98,104,114,108,98,100,107,111,106,107,105,96,104,119,116,104,115,89,107,96,105,98,113,114,116,103,92,114,104,100,99,113,93,106,100,97,101,114,107,110,109,114,101,112,121,96,96,110,104,104,107,97,105,106,102,108,113,120,112,110,103,104,101,115,108,107,108,117,116,109,82,112,102,98,98,101,103,100,98,100,109,86,82,126,90,103,104,103,115,119,112,101,107,98,103,113,94,115,107,107,119,106,83,110,114,110,104,99,103,109,107,112,105,107,107,113,106,110,100,101,121,107,111,101,95,92,120,100,100,113,106,108,104,105,99,92,109,97,110,112,115,116,97,126,102,111,102,110,104,107,97,93,112,98,104,116,109,114,107,95,96,127,101,106,94,110,130,97,107,105,96,110,114,101,107,115,104,110,107,109,110,105,94,101,94,112,118,104,110,101,113,107,110,108,103,101,97,117,111,119,107,99,105,111,87,103,117,106,106,113,115,110,110,101,101,109,90,106,106,96,111,113,91,105,106,104,105,110,102,124,112,103,108,104,96,114,109,91,79,110,117,103,103,112,111,109,101,105,112,100,101,108,134,114,101,112,103,112,99,98,99,98,99,118,117,99,111,118,114,91,110,101,103,101,110,107,110,71,98,114,92,96,140,115,118,105,104,117,117,107,97,100,95,112,100,108,102,109,114,113,113,109,124,112,106,103,104,98,110,103,109,103,112,102,94,103,98,92,106,101,111,106,112,109,112,112,100,117,106,101,94,116,105,136,95,101,108,108,98,106,109,117,114,105,108,110,118,108,95,111,103,99,114,105,99,116,97,106,106,107,109,110,104,100,101,118,100,108,99,106,114,96,114,127,113,95,103,111,107,120,105,105,109,107,110,116,101,113,96,106,116,111,99,114,100,98,104,103,110,116,112,113,107,95,125,110,96,100,129,110,107,111,103,100,100,117,121,109,115,115,119,89,114,86,109,102,109,110,108,109,106,117,100,117,106,96,105,115,116,109,109,103,96,101,103,105,111,106,116,110,100,94,103,88,104,118,114,99,103,107,104,97,107,111,100,105,117,115,102,104,109,127,99,105,112,70,101,103,98,106,101,99,80,104,119,100,110,97,98,106,117,114,89,107,104,96,93,110,131,101,104,96,96,108,114,133,103,125,95,101,108,91,99,110,111,106,107,114,102,111,99,108,97,124,112,92,108,106,113,97,100,105,109,102,70,112,109,102,100,103,104,108,97,105,104,117,111,107,109,102,108,107,94,98,105,106,112,109,110,107,98,111,102,118,95,95,106,101,111,110,112,113,101,121,102,107,100,105,101,103,106,101,94,99,100,107,99,105,103,97,103,105,108,96,107,112,98,94,102,92,102,102,111,111,116,112,111,105,107,98,100,102,100,98,116,112,120,99,88,78,101,109,104,112,103,114,94,98,106,117,117,110,105,84,98,108,104,116,116,98,103,83,94,83,115,100,100,109,108,96,99,96,116,100,107,109,100,135,96,105,116,101,107,112,95,101,107,117,102,118,100,113,121,101,115,100,117,103,93,108,102,106,126,104,95,113,105,98,114,106,105,102,98,105,102,101,101,94,96,94,105,107,110,106,109,103,106,108,104,106,122,95,117,105,99,111,112,111,98,113,99,113,112,110,109,91,110,93,108,102,118,115,104,113,103,96,103,103,104,100,109,97,113,100,93,99,104,110,102,92,101,111,103,86,98,109,110,111,104,110,100,107,110,108,108,108,113,94,101,125,109,111,99,98,98,104,108,107,106,117,103,102,91,107,104,112,101,114,98,117,94,111,101,113,95,98,107,100,109,96,104,98,110,100,106,116,96,103,107,113,103,107,110,106,100,106,111,99,104,91,100,102,115,112,113,116,110,98,119,107,110,115,102,107,102,109,88,102,109,84,100,115,108,100,106,110,108,101,104,103,111,106,99,96,94,103,90,110,102,107,107,110,99,106,108,113,97,102,109,103,108,104,100,114,104,109,103,120,117,116,112,111,102,106,113,100,106,113,114,99,109,99,99,102,88,107,103,95,106,113,109,101,92,104,96,103,103,100,125,105,104,105,117,106,111,98,99,101,108,93,111,102,108,113,105,87,98,120,105,116,91,106,91,100,110,99,107,99,120,102,106,106,98,111,107,112,102,111,109,96,117,107,103,106,121,108,108,108,114,102,88,96,95,99,97,109,104,98,115,103,100,100,108,119,104,103,135,105,107,102,105,113,109,96,110,107,98,88,113,102,97,112,110,115,107,112,109,100,111,106,104,108,117,100,114,99,101,112,95,111,106,106,96,99,104,94,81,103,68,110,120,109,107,116,98,109,103,114,91,105,108,96,97,102,112,113,106,100,109,117,108,100,99,104,98,95,108,98,110,113,72,90,111,106,91,105,101,104,102,92,105,108,102,80,99,113,105,103,101,99,117,102,100,107,99,101,104,105,108,108,95,112,114,98,106,103,109,104,102,103,111,107,100,114,92,95,99,113,99,113,84,105,112,106,100,111,94,106,94,116,110,113,107,102,99,101,114,121,109,110,100,100,97,98,100,108,102,104,81,103,102,101,105,107,113,112,113,110,105,116,105,99,110,109,104,105,88,112,107,107,104,106,101,115,114,110,104,97,109,117,102,107,104,99,113,103,103,101,94,92,93,106,104,123,97,103,100,107,100,111,104,106,99,105,103,116,104,107,101,111,109,99,116,104,107,105,101,105,103,117,109,82,101,97,99,113,104,100,113,101,104,109,103,110,97,104,111,104,113,100,98,97,107,104,102,102,110,98,103,97,99,79,103,99,101,108,100,102,104,104,107,111,118,106,77,107,103,103,105,105,106,106,113,91,67,117,96,97,106,100,110,104,99,106,103,102,102,102,106,104,101,106,100,105,102,108,101,110,112,105,102,98,126,95,104,86,102,112,108,113,102,113,108,99,106,109,104,118,112,105,95,116,108,112,105,103,103,101,101,109,102,104,116,104,109,120,114,113,117,103,113,100,102,95,112,104,103,104,109,111,107,100,113,109,103,100,110,87,102,68,103,102,98,107,107,111,115,107,107,97,104,100,101,99,116,103,103,95,115,104,93,111,104,95,120,116,107,103,112,74,107,115,107,111,95,97,103,102,89,111,104,98,104,107,106,96,101,99,91,110,104,103,107,95,112,105,105,96,91,113,107,102,91,101,94,96,105,92,108,102,107,99,116,113,100,108,107,108,103,110,90,92,102,106,124,106,106,103,99,107,109,108,87,106,101,93,100,104,103,124,102,100,103,106,105,108,123,102,106,107,106,95,95,112,107,92,91,79,95,107,100,105,105,94,101,106,98,107,100,98,95,96,100,94,96,93,96,108,118,102,98,108,76,95,96,99,99,96,107,102,103,104,104,87,102,96,102,93,130,116,104,101,104,108,108,107,103,105,110,112,99,105,113,102,103,103,108,136,99,102,95,111,104,98,100,113,107,108,103,108,96,109,108,112,87,101,88,108,97,99,116,94,105,108,99,100,97,105,102,100,103,89,105,104,104,105,100,117,96,99,101,110,109,85,109,102,101,102,117,103,109,102,97,81,97,108,98,106,116,96,106,112,107,67,107,102,112,112,103,101,93,86,101,102,111,98,101,98,94,102,109,109,94,88,102,104,95,107,104,127,97,93,114,92,98,118,81,83,107,95,97,108,94,104,94,112,99,106,108,93,97,99,110,104,110,104,120,117,98,101,113,104,103,107,80,97,98,105,96,105,112,97,99,103,101,105,96,103,100,105,111,94,108,94,110,106,105,102,113,113,89,88,113,84,94,105,104, +524.09021,108,109,114,103,90,117,113,113,95,108,106,96,91,84,91,98,105,121,110,102,110,99,99,78,101,100,100,109,113,107,86,103,89,113,100,102,91,88,85,100,91,110,103,111,120,106,107,105,115,111,112,100,98,101,106,92,98,94,108,101,103,105,103,95,98,122,83,92,104,100,105,105,115,107,90,112,96,102,105,106,99,104,106,85,95,99,106,104,97,99,106,100,106,108,110,114,104,107,86,99,100,113,107,89,104,116,97,107,98,121,97,98,99,95,98,95,107,106,114,97,106,109,101,110,100,108,109,102,94,110,92,108,91,104,121,98,109,105,103,95,109,99,109,107,96,92,115,96,95,105,111,110,106,103,93,108,105,107,91,99,94,111,109,100,113,100,108,94,107,102,102,100,102,96,101,108,99,101,99,92,107,103,111,105,91,105,91,95,93,108,112,109,109,107,102,116,100,95,134,94,108,106,106,120,107,99,112,95,107,112,105,108,106,106,89,106,104,98,95,108,99,98,116,111,104,114,113,100,108,99,114,101,106,101,124,104,94,111,107,105,102,98,86,101,99,99,82,111,95,99,103,106,97,104,117,104,97,95,101,104,99,116,101,90,101,106,102,93,103,102,94,105,101,101,104,108,114,110,118,105,107,109,87,101,107,99,100,94,100,104,98,99,102,96,105,112,99,110,102,105,108,117,103,103,92,112,113,99,104,92,94,113,113,89,110,114,101,114,109,98,102,99,103,99,105,97,111,109,120,103,113,103,118,105,103,106,96,104,120,111,99,100,113,106,107,102,105,96,109,98,104,92,104,115,95,102,114,106,105,110,99,98,105,98,111,107,101,102,103,109,104,96,104,111,113,108,109,112,96,109,109,108,104,110,96,103,104,107,104,97,119,99,107,104,108,92,106,95,98,110,116,106,95,109,105,98,103,114,109,103,94,96,105,103,98,109,105,113,108,109,102,111,96,106,102,97,101,112,107,105,89,101,83,117,105,102,99,103,111,121,117,109,92,105,104,95,103,105,95,122,101,116,78,98,104,100,98,102,98,96,101,105,104,96,108,104,113,71,97,106,111,111,100,104,113,93,97,98,85,101,97,107,106,96,108,108,117,104,103,107,113,98,108,108,96,88,98,107,110,97,107,101,90,99,109,106,104,102,97,113,112,108,102,97,105,107,104,102,100,102,110,105,108,87,105,117,115,112,112,105,104,105,102,97,104,104,103,108,95,107,102,134,101,104,122,108,101,105,105,105,107,96,95,107,114,100,100,107,105,112,111,106,104,112,102,105,97,115,92,118,91,112,104,106,103,108,100,117,122,116,89,100,117,101,107,107,118,108,110,96,102,132,99,106,108,104,86,113,113,102,98,104,110,106,95,118,101,118,102,123,100,113,95,104,113,99,106,102,101,92,106,102,111,103,107,104,94,117,113,104,96,98,101,103,87,101,105,107,102,98,103,103,99,96,94,97,95,117,109,126,103,107,102,94,107,106,108,107,108,120,97,109,128,122,105,97,105,104,120,110,95,104,113,100,94,107,111,111,102,99,105,100,116,101,96,102,101,108,112,108,95,82,105,100,108,92,106,104,104,93,100,110,103,97,100,112,103,106,119,105,98,114,99,92,101,103,101,107,104,91,111,96,98,98,101,102,98,105,99,105,104,99,104,105,104,93,103,105,77,93,111,108,105,102,110,106,112,109,98,97,113,98,112,106,106,100,111,101,125,97,105,105,99,93,102,100,102,111,109,115,106,106,107,104,103,107,105,109,95,110,111,98,114,115,101,104,102,104,107,100,98,100,105,96,98,97,116,113,108,109,107,113,92,116,107,104,109,104,109,106,113,100,101,101,109,102,114,87,105,116,93,106,103,111,106,116,133,109,104,108,105,99,102,104,103,108,106,101,93,111,97,99,97,94,111,102,101,116,110,101,89,91,107,116,98,95,98,104,112,105,114,105,105,104,102,94,110,116,78,96,99,124,105,113,105,110,100,94,97,110,107,107,105,111,104,107,95,108,104,104,120,109,100,107,106,100,111,107,110,115,104,114,94,110,107,110,101,105,118,97,116,106,107,111,97,102,112,106,99,127,106,100,114,103,113,109,100,83,110,110,96,111,107,111,103,114,107,111,98,101,97,110,101,99,108,96,110,106,82,88,104,101,105,113,103,122,128,113,96,111,106,95,111,89,110,86,100,106,100,102,84,83,108,93,100,113,103,98,103,95,116,113,70,104,106,111,97,108,98,100,106,96,108,110,109,98,104,113,99,101,110,116,109,112,109,103,128,95,102,102,104,107,100,110,92,102,113,108,105,103,110,116,103,95,117,109,98,100,105,102,114,110,107,99,117,102,113,100,103,89,94,101,108,101,105,105,108,99,111,111,104,110,111,102,106,114,108,100,98,113,102,116,104,118,98,105,112,117,103,103,108,116,71,108,98,109,95,99,95,101,105,109,88,98,114,108,108,106,116,101,98,129,102,94,91,103,102,110,101,97,100,98,87,105,107,114,112,103,77,104,106,104,107,99,109,114,105,113,105,106,105,105,101,99,106,115,117,108,113,110,87,128,97,98,111,97,96,103,104,101,97,98,100,114,107,84,117,109,108,91,95,79,94,116,121,108,106,99,106,109,85,95,108,88,106,103,98,115,108,97,111,95,113,110,105,105,102,96,112,104,117,93,98,104,102,104,108,107,99,125,102,108,110,104,101,102,100,106,104,111,97,99,111,107,114,110,118,106,106,109,98,124,95,120,107,131,117,132,106,135,111,107,118,112,112,110,98,106,109,113,109,112,107,110,107,109,98,118,106,114,111,106,120,108,104,92,111,120,112,111,105,112,119,113,98,111,110,112,102,107,110,103,105,105,114,98,105,99,105,94,107,103,100,114,112,96,104,108,94,108,101,99,111,101,105,108,110,123,86,95,113,111,91,103,99,108,109,86,110,107,98,101,103,122,104,116,103,115,105,111,99,106,90,116,108,103,109,111,102,116,109,106,96,107,121,101,110,106,101,99,110,103,109,117,109,119,104,108,94,134,100,109,101,109,103,101,106,92,115,99,104,93,99,92,95,100,114,109,109,109,114,122,95,108,101,107,117,104,103,107,99,100,113,108,110,103,102,108,106,109,98,99,120,97,110,99,102,106,101,114,91,107,116,106,101,105,117,102,108,110,102,110,93,103,99,105,130,114,108,110,108,102,120,112,109,97,97,120,106,112,115,108,101,101,104,113,103,97,76,101,109,109,102,120,118,107,104,119,102,99,96,100,113,106,111,98,101,115,80,99,100,109,94,102,105,107,118,108,113,103,106,97,105,122,108,105,110,108,112,102,101,110,105,101,104,98,101,105,87,102,121,100,105,106,108,95,104,100,96,103,103,90,94,103,105,116,100,107,104,110,103,110,111,112,102,115,110,111,107,102,98,107,100,102,104,96,114,117,107,105,109,98,104,97,99,100,111,105,93,101,91,107,106,99,99,103,108,100,104,104,107,102,98,104,116,113,98,128,109,114,119,105,97,102,105,103,112,101,110,115,95,102,114,99,116,105,106,101,106,121,107,111,117,101,120,99,102,108,105,67,94,113,101,106,95,104,101,106,114,108,95,105,110,107,107,110,99,96,110,113,103,113,113,111,102,69,97,101,110,115,103,125,105,116,106,97,94,116,106,107,91,112,113,97,99,112,108,109,96,101,96,111,114,99,106,94,95,106,108,97,111,108,93,111,99,117,99,113,108,99,104,103,99,102,102,103,111,117,99,96,113,99,117,100,105,102,101,101,115,105,103,98,96,121,106,108,92,110,98,108,102,95,115,92,91,104,112,100,113,116,96,117,112,111,110,107,116,95,119,101,112,107,107,97,129,96,105,93,113,104,108,98,92,103,106,108,101,105,96,135,103,104,108,96,104,98,107,91,104,109,73,95,95,102,115,104,103,102,108,101,100,104,98,108,104,105,105,98,91,96,121,106,105,110,109,106,102,104,102,93,106,104,97,117,113,104,112,105,124,103,109,112,107,103,112,97,111,128,97,87,107,103,109,111,107,107,104,98,100,113,104,91,100,91,104,108,106,89,98,78,112,102,105,97,103,110,101,118,103,110,104,100,110,102,106,114,88,113,109,108,100,107,95,104,102,112,104,113,126,104,125,81,99,111,111,100,106,102,105,101,115,101,106,108,106,99,102,114,115,103,107,107,110,111,103,102,95,113,108,105,108,101,100,93,119,100,108,121,99,112,105,115,100,110,111,100,100,109,104,104,106,107,111,96,99,103,108,112,94,120,91,110,104,112,121,94,97,108,100,111,112,111,102,107,101,101,117,98,87,104,106,99,99,106,119,102,102,112,110,97,105,99,118,114,107,99,111,108,105,106,111,115,99,95,107,97,109,96,101,114,109,98,97,106,101,112,93,102,108,95,105,99,116,100,93,99,92,103,108,113,108,103,113,108,107,102,109,104,113,100,97,107,102,94,103,103,98,107,106,109,102,96,104,103,100,106,99,102,95,99,97,92,102,105,112,105,93,114,93,106,96,98,98,106,102,102,112,100,114,100,117,116,103,101,95,103,112,101,95,108,101,105,113,106,95,119,122,105,94,108,110,98,111,105,98,95,77,105,99,100,108,103,103,120,118,103,112,106,100,109,102,104,113,106,80,108,103,93,95,117,108,105,107,104,111,93,112,97,96,101,110,92,112,102,124,112,96,99,101,108,87,106,98,94,91,97,106,109,109,94,104,96,106,101,106,96,104,109,101,108,95,105,106,95,89,76,105,108,99,90,99,99,102,104,121,105,105,117,104,109,117,104,106,107,107,111,93,102,110,108,91,111,95,100,102,113,102,95,109,102,96,108,94,95,98,105,103,113,105,101,110,107,92,96,116,110,122,99,103,87, +524.23096,99,98,107,98,86,100,94,102,107,113,98,99,109,102,103,105,105,109,101,97,100,112,102,115,94,125,103,107,104,131,116,108,103,106,108,107,91,96,92,96,103,117,80,104,97,113,99,95,92,87,96,93,99,90,98,97,105,110,117,97,112,103,112,97,113,108,97,109,101,94,114,107,98,96,103,119,112,100,112,105,102,104,106,100,86,105,101,112,96,105,90,109,105,102,102,89,111,97,97,100,105,109,89,92,106,116,104,114,105,105,108,89,104,104,104,106,106,108,106,113,105,107,114,107,108,121,113,101,107,90,103,109,104,102,97,109,110,103,117,95,95,117,101,90,102,101,99,107,94,105,98,104,104,100,104,99,91,97,110,109,95,98,98,107,99,112,109,87,95,113,107,104,116,110,104,104,112,92,103,111,100,112,108,103,112,106,110,89,104,96,100,99,103,95,93,108,93,106,104,107,106,105,105,110,105,104,96,111,105,110,105,103,100,102,104,92,91,99,84,99,104,99,99,104,105,114,106,108,113,119,102,117,111,110,101,104,96,103,97,106,111,104,106,94,105,94,98,111,110,113,117,103,139,103,104,121,103,88,91,103,93,98,104,109,101,101,99,103,101,97,98,104,100,110,117,83,109,110,104,110,114,101,106,89,97,103,106,108,105,108,102,101,98,107,110,113,114,120,105,105,95,108,97,103,110,98,104,96,101,109,105,104,106,111,110,103,108,108,99,98,108,107,98,123,103,102,94,84,106,114,98,110,103,103,105,111,92,97,112,111,97,106,120,114,120,94,113,120,109,101,92,90,106,123,110,101,104,106,101,110,100,103,101,89,109,104,92,110,102,95,114,97,115,104,93,97,103,99,108,98,111,114,107,103,95,85,106,97,116,95,111,94,107,109,95,112,102,107,105,111,108,109,95,96,100,96,108,108,105,102,101,92,112,94,96,111,102,114,102,106,108,105,105,106,113,98,99,105,96,111,100,113,112,99,111,111,103,114,100,99,115,95,98,100,98,100,96,99,110,101,84,102,101,110,101,84,105,104,108,102,106,108,107,103,110,103,107,112,105,112,108,98,105,99,103,105,100,108,104,112,114,100,109,106,105,90,106,129,114,101,108,110,93,104,95,97,91,106,101,88,111,104,101,112,89,101,98,103,104,106,109,105,101,100,104,115,98,97,101,104,114,101,90,100,99,95,111,101,101,114,98,106,109,100,97,109,101,98,103,101,91,110,103,100,107,105,109,111,104,98,105,105,113,99,113,94,102,107,112,111,94,118,101,105,102,97,111,102,111,103,109,104,104,107,111,100,106,105,100,102,100,99,100,109,107,92,106,102,114,115,108,104,105,107,117,106,108,109,121,102,111,109,100,101,112,104,108,108,105,101,103,106,107,107,110,98,105,104,94,104,112,102,103,93,99,104,98,110,111,86,91,107,95,83,96,103,105,102,95,92,113,100,108,99,101,92,105,95,101,106,100,108,109,101,109,98,92,113,97,110,97,117,105,106,96,109,116,110,102,97,110,106,111,104,108,119,107,105,104,100,105,101,120,117,104,104,108,107,140,97,107,106,104,104,118,79,101,100,69,99,98,110,110,96,100,108,107,110,106,112,102,106,106,95,113,90,97,106,118,99,92,96,102,109,92,95,95,100,123,108,104,111,97,96,118,107,113,93,106,87,98,95,103,95,94,112,103,108,103,101,95,102,112,102,109,104,96,99,112,87,108,109,97,106,101,107,97,103,100,110,100,112,109,97,102,105,102,98,106,98,103,98,131,108,97,115,115,94,96,93,106,90,117,113,97,114,105,109,87,95,98,121,105,105,111,117,108,111,90,105,113,98,99,91,94,117,99,113,104,102,110,119,107,104,104,110,100,110,102,98,98,105,96,99,96,106,101,100,99,99,101,109,105,104,121,103,103,92,106,102,94,104,97,102,91,91,129,116,80,104,109,81,111,105,105,64,103,106,103,104,95,103,121,118,92,108,106,99,103,103,117,101,106,102,112,92,112,109,98,105,105,108,99,100,108,100,106,90,100,104,108,120,108,104,108,106,99,115,102,112,95,101,107,93,96,91,116,98,98,103,105,111,117,87,92,114,100,108,108,108,106,102,105,106,113,103,94,98,107,105,100,100,97,102,92,103,116,99,96,112,107,103,94,112,113,104,104,98,109,107,105,103,99,99,119,107,113,100,117,98,96,102,102,112,106,116,120,91,122,95,94,105,101,103,101,109,99,102,112,108,105,104,109,95,100,87,94,109,103,108,98,107,105,95,119,103,106,103,93,101,106,104,96,105,100,100,103,101,94,104,94,133,96,99,114,107,101,83,117,100,96,92,121,98,104,102,115,112,111,110,89,103,105,95,96,101,103,121,104,113,100,103,101,103,107,108,105,114,107,117,100,113,95,94,101,103,91,106,108,92,104,108,96,100,93,98,98,116,99,99,105,117,104,106,106,117,94,110,104,104,113,102,114,121,102,87,114,103,106,95,107,108,108,103,105,110,107,108,84,102,106,107,105,116,96,93,105,106,102,106,92,110,97,96,103,102,94,113,91,105,108,109,106,101,98,77,90,101,104,94,107,90,101,104,116,104,110,96,115,112,127,102,108,95,109,93,103,101,120,98,100,89,100,90,83,112,99,104,114,101,106,92,113,111,105,105,100,118,118,111,98,109,98,105,90,102,107,117,100,105,99,99,114,95,104,102,97,95,105,94,93,103,109,89,96,100,106,103,103,118,103,102,95,104,104,92,99,96,90,97,104,98,83,100,103,94,99,92,111,83,106,106,101,108,112,108,101,102,115,95,104,102,114,105,109,103,102,106,103,120,99,104,110,105,100,96,110,106,106,114,104,103,105,100,110,116,115,111,102,97,111,95,109,95,106,101,102,111,98,98,95,109,106,98,106,113,97,99,110,94,108,108,101,104,104,98,107,102,95,108,104,106,87,117,106,101,103,101,107,84,103,105,108,99,109,107,108,99,106,102,115,104,100,102,106,111,97,111,99,90,115,106,100,108,102,108,105,103,97,120,106,111,108,96,103,104,107,126,109,100,114,104,107,107,94,95,95,107,112,107,108,97,99,115,105,101,107,102,117,109,89,107,108,116,100,104,83,101,101,108,99,103,97,105,101,102,107,106,107,105,93,103,108,106,109,105,110,93,106,107,112,107,92,109,91,107,116,112,106,113,108,100,108,102,106,92,98,102,100,101,108,108,109,106,99,108,101,113,107,97,105,113,109,113,105,112,102,112,99,107,99,111,107,93,106,112,108,95,113,106,110,106,96,117,106,98,117,109,100,106,111,102,91,104,105,101,83,94,102,109,102,105,102,108,102,95,98,112,115,107,105,104,105,113,105,106,113,99,100,100,106,100,101,94,107,113,95,103,98,102,84,103,104,107,101,92,108,97,109,96,108,85,105,88,102,103,99,95,105,107,99,109,114,91,98,80,107,101,107,99,117,115,109,92,100,92,103,107,93,107,103,98,104,107,106,105,105,108,97,100,112,119,77,102,102,114,112,111,96,103,100,100,96,110,111,104,98,105,104,109,118,99,112,96,113,99,104,105,96,93,105,107,98,101,103,96,115,90,113,120,99,112,106,111,108,113,103,107,107,107,101,94,107,110,109,95,91,94,99,95,98,103,105,110,104,105,101,100,107,105,94,108,104,101,97,95,96,102,105,101,111,92,116,113,103,111,106,97,95,98,106,96,113,102,101,106,96,109,120,115,96,106,75,96,99,102,98,97,115,109,100,98,104,103,103,108,94,103,110,110,100,100,97,102,106,108,99,108,90,92,100,96,101,105,96,88,104,96,105,98,91,109,104,106,101,105,110,96,105,107,101,143,102,106,137,100,98,106,113,111,102,101,99,107,117,109,104,92,100,97,101,105,102,101,105,92,111,109,100,108,112,93,89,105,95,120,107,97,98,102,99,110,94,110,102,96,95,105,99,106,110,88,103,107,102,91,115,99,95,112,94,102,74,106,106,100,87,102,97,98,106,107,100,99,112,98,104,103,111,83,107,102,90,103,108,103,99,116,126,93,107,100,107,102,80,103,110,96,104,103,103,121,100,101,106,110,104,115,103,108,98,113,117,113,113,112,113,108,103,117,102,109,83,119,102,118,94,104,108,98,113,100,104,106,110,108,104,111,93,104,107,97,103,104,113,105,95,119,107,97,103,103,107,104,102,105,139,108,107,84,99,107,96,105,93,101,121,92,113,100,108,103,111,109,108,108,112,98,105,107,101,91,128,113,118,100,112,101,112,96,102,111,114,98,108,103,100,110,100,104,103,104,103,120,112,103,107,115,114,98,101,93,105,104,103,99,103,93,108,110,110,107,99,106,114,115,118,107,106,103,87,115,100,102,101,107,102,109,120,106,97,95,109,103,96,105,97,96,99,98,108,106,98,91,109,106,94,95,107,120,111,104,92,103,94,96,112,109,100,118,109,101,102,96,103,106,102,109,120,99,95,115,96,106,104,110,106,106,100,93,85,102,107,92,104,117,110,94,116,110,113,127,105,110,101,101,98,110,113,86,92,113,102,113,85,106,99,100,96,78,98,84,111,107,87,112,96,109,98,101,115,118,94,93,107,115,95,106,104,98,87,98,97,104,106,128,110,111,113,124,109,114,104,100,105,103,114,111,95,101,91,100,104,107,110,101,109,105,98,99,99,115,108,96,109,101,110,98,90,96,99,117,94,100,100,99,104,109,98,107,97,94,88,108,115,95,101,109,103,107,106,97,87,130,104,99,94,94,93,103,103,90,96,96,107,110,102,96,101,99,117,83,101,97,122,107,116,104,100,98,108,106,117,100,100,101,96,108,109,109,104,116,100,106,87,106,117,112,110,104,87,105,102,95,83,93,99,118,108,97, +524.3717,114,95,93,106,94,109,104,106,66,111,67,118,96,104,109,105,84,99,118,103,98,99,92,96,98,108,101,103,111,106,106,97,103,117,111,120,106,100,92,98,101,99,104,112,117,115,103,107,104,107,116,110,95,99,103,101,108,107,112,101,99,107,107,100,93,107,99,115,106,104,89,124,99,92,98,99,106,108,99,102,119,102,95,107,100,106,99,107,95,101,104,113,94,102,99,110,104,126,111,103,105,103,107,112,107,108,97,107,103,108,118,100,119,117,104,104,107,108,118,105,98,88,99,125,109,106,105,108,96,107,108,121,103,92,112,106,123,110,109,91,97,105,104,104,102,106,106,104,89,105,112,113,99,95,106,85,117,115,102,104,100,97,102,113,115,90,108,99,96,99,110,102,133,98,103,97,112,94,104,106,107,105,102,108,107,101,97,100,107,114,101,94,110,104,103,98,110,104,108,115,108,97,99,108,110,124,99,105,98,100,101,103,96,101,103,105,107,98,120,108,113,104,113,105,109,111,104,107,108,94,106,104,103,103,112,116,90,102,97,106,97,113,95,101,95,102,102,107,96,124,119,110,94,99,110,106,102,104,103,93,98,104,103,102,98,108,110,106,97,101,104,101,99,99,116,103,104,87,109,103,121,110,103,108,99,103,98,110,101,72,112,106,121,115,105,98,107,106,95,102,103,106,107,103,97,100,112,116,97,94,104,105,114,116,104,99,112,99,123,112,109,97,107,113,107,109,109,107,109,106,106,104,104,90,109,109,102,106,95,92,112,104,107,110,103,112,106,112,104,114,105,93,112,120,104,110,99,114,121,95,110,102,97,110,94,112,108,99,113,105,116,105,113,106,112,108,120,115,104,114,102,80,117,116,99,94,112,101,107,102,116,100,109,114,111,90,114,100,109,114,105,106,103,101,104,101,98,99,118,112,103,109,104,108,108,99,110,110,104,113,103,106,119,103,121,101,117,100,97,123,104,105,110,91,102,99,102,100,111,107,104,110,101,103,114,104,109,111,110,111,108,98,113,104,109,103,108,94,117,110,110,102,115,114,117,106,100,104,100,120,125,109,107,103,109,105,99,105,98,106,102,108,113,101,137,114,118,106,94,98,105,100,102,99,101,103,97,103,83,103,116,119,108,116,98,100,87,120,98,101,118,109,113,107,91,114,101,96,91,117,105,97,107,111,131,100,112,119,90,108,87,103,122,99,106,119,101,95,99,104,100,109,93,114,112,102,109,106,100,114,99,109,107,110,101,124,109,94,118,103,109,102,93,112,94,105,108,109,116,110,87,105,105,92,112,101,97,104,99,118,108,91,114,99,108,101,98,115,99,110,117,106,96,106,116,100,108,107,111,110,111,108,103,103,113,107,109,112,110,94,108,99,104,114,110,102,107,99,104,95,102,110,111,106,105,128,91,107,110,109,99,110,109,112,94,111,107,103,104,111,108,109,122,108,99,92,112,107,101,122,103,109,105,101,109,103,105,99,88,104,108,113,100,129,107,108,119,97,107,98,112,102,116,91,110,115,95,98,106,98,114,98,104,100,92,106,103,99,107,111,116,110,126,104,92,99,116,114,114,100,109,104,100,111,94,108,113,113,103,94,106,106,107,112,98,105,102,105,108,84,91,111,104,117,93,111,103,104,116,114,97,107,111,105,101,95,97,110,76,117,98,108,107,102,105,99,93,110,99,93,111,97,99,113,104,99,104,99,112,102,107,105,89,93,104,112,106,101,110,104,112,118,108,107,100,113,99,101,93,104,119,110,108,98,102,87,110,91,116,109,111,110,109,112,102,95,99,106,99,111,111,98,100,126,100,113,101,115,111,66,113,109,100,94,107,120,108,99,104,91,105,124,107,114,98,105,108,95,99,97,99,79,109,120,109,106,102,97,108,108,104,97,108,107,112,116,101,107,100,103,101,94,100,108,95,98,105,122,102,107,115,104,122,106,100,102,104,104,108,99,104,110,104,111,98,125,119,111,110,95,119,106,121,106,106,102,126,107,105,100,110,101,99,113,107,72,98,107,98,104,102,106,104,100,109,107,116,112,100,99,99,89,109,112,96,103,95,112,104,97,111,104,107,103,107,103,99,104,100,105,106,97,112,110,98,105,98,107,96,101,102,114,103,101,98,113,107,109,111,104,117,107,98,120,105,105,99,102,109,102,95,109,115,99,105,111,96,100,110,107,100,106,138,100,90,108,118,86,81,117,97,92,104,100,91,102,101,103,116,109,91,95,103,107,104,99,104,100,111,125,104,100,105,105,103,108,108,106,95,99,104,87,106,104,110,103,65,90,104,100,104,105,114,91,101,100,110,108,120,112,100,103,104,118,95,93,99,110,92,96,100,103,104,104,100,109,104,97,107,106,110,105,109,68,107,100,99,110,102,99,95,107,99,102,97,107,102,117,110,103,96,102,96,115,107,109,109,103,103,89,82,97,97,104,107,113,94,110,104,99,115,118,120,105,92,116,110,114,114,113,105,98,109,115,107,106,89,110,106,102,104,126,114,108,110,106,100,102,93,104,111,112,99,106,116,105,89,112,121,115,106,111,101,102,96,100,104,103,110,107,108,97,95,102,102,108,110,108,111,109,114,111,117,98,108,119,110,133,111,105,108,104,110,96,111,118,111,102,104,94,102,101,110,101,108,120,108,111,114,110,111,100,95,105,102,112,107,100,104,118,106,102,117,104,102,102,96,103,104,112,75,103,99,104,109,114,110,119,97,100,99,98,91,109,102,112,101,117,103,103,102,116,111,104,103,95,105,99,103,99,92,113,105,110,103,105,104,107,107,109,98,91,93,96,102,89,108,115,100,111,102,103,102,109,114,104,101,103,99,101,108,100,92,102,113,84,102,100,103,98,113,107,109,109,104,104,105,114,91,109,102,110,113,111,104,110,97,106,106,109,105,110,106,74,105,118,111,99,114,107,101,96,98,108,113,109,109,104,103,117,84,113,104,92,119,101,103,100,98,104,120,98,95,99,115,93,116,102,117,94,112,103,103,117,110,96,102,104,106,96,111,99,104,88,111,113,117,107,87,104,115,99,102,110,103,100,98,98,102,110,106,121,99,98,107,98,106,112,102,90,112,110,101,114,108,99,104,105,101,109,101,106,117,108,108,106,105,98,104,96,103,94,105,110,106,120,106,108,103,76,108,98,106,105,105,122,116,108,119,104,101,99,106,98,97,90,114,102,106,109,109,109,116,96,110,108,107,102,110,108,113,103,103,106,101,96,109,105,95,119,106,104,112,71,89,97,103,113,108,106,100,87,112,96,103,117,111,98,111,100,120,100,100,103,109,112,99,103,99,94,99,104,107,103,99,104,91,98,99,100,103,109,102,92,98,115,109,101,101,109,109,101,106,105,105,115,105,117,114,122,105,99,99,89,102,110,104,106,106,99,100,102,101,102,100,105,97,105,106,98,107,107,102,101,98,108,109,108,106,93,95,123,103,87,102,99,105,95,104,106,101,121,102,107,113,99,106,100,99,104,105,100,102,105,99,111,108,111,107,124,100,116,109,101,106,110,98,105,104,107,104,104,103,113,99,106,109,110,108,102,95,107,105,106,101,125,102,100,114,91,100,98,103,116,113,85,109,97,106,95,113,92,106,111,106,108,110,121,107,119,97,109,102,103,88,98,110,109,106,112,96,105,105,103,97,97,113,105,105,86,107,102,99,90,101,92,107,109,100,87,105,100,102,113,100,65,112,92,94,113,108,96,121,113,103,110,111,107,105,97,102,95,104,97,103,106,92,98,111,76,97,100,99,111,95,94,114,108,99,99,109,99,96,98,101,104,97,104,98,111,85,113,79,99,103,111,124,107,100,106,110,106,102,108,91,98,99,98,108,99,95,84,104,107,102,98,109,108,99,108,91,108,112,102,111,105,72,104,97,94,103,104,96,103,107,100,106,93,108,103,101,101,80,120,110,101,102,111,105,106,102,107,112,100,109,110,118,100,113,116,109,102,100,106,106,104,105,91,101,104,109,104,108,110,109,104,113,111,113,97,111,93,93,103,105,107,97,102,110,106,122,110,104,106,98,121,98,100,105,108,109,94,106,109,103,105,109,84,100,93,106,102,109,102,102,102,111,107,105,92,100,98,99,107,96,103,111,110,99,106,113,93,92,105,99,102,104,99,106,102,106,98,102,102,98,110,114,111,95,107,107,110,101,101,94,107,111,105,102,109,102,89,91,94,103,112,109,116,94,97,96,112,116,93,105,101,105,99,113,114,108,114,115,112,108,93,93,100,102,115,88,109,121,99,99,119,106,111,108,108,107,116,96,113,115,100,91,109,105,98,119,104,102,103,102,97,107,107,102,109,101,116,110,109,105,91,104,108,105,110,98,105,113,115,106,84,99,104,106,103,104,99,92,102,105,106,96,97,105,85,117,100,109,103,92,105,85,97,120,100,97,108,96,94,98,97,87,106,102,118,104,106,104,107,101,119,109,103,105,102,111,110,98,120,103,103,106,98,100,102,103,106,102,102,120,96,109,104,115,112,108,99,99,96,109,98,98,103,105,102,103,103,85,92,104,121,105,112,101,106,93,102,114,106,121,97,83,98,125,95,101,102,104,102,103,91,97,123,108,112,110,94,102,92,100,92,98,103,97,94,99,97,103,101,104,98,108,109,109,104,109,99,108,104,82,106,107,115,114,96,103,103,121,106,106,107,97,103,94,87,104,95,102,93,95,103,98,102,103,94,107,93,113,102,98,103,105,110,87,104,98,102,80,83,100,114,100,99,107,99,113,100,101,91,107,94,98,94,110,101,103,96,110,106,119,93,97,111,99,86,102,117,96,117,91,117,88,105,113,83,101,103,92,92,100,101,115,87,115,96,94,91,80,100,96,101,106,103,106,105, +524.51239,112,117,98,104,97,121,105,92,96,96,107,93,105,100,105,98,90,109,96,106,101,106,83,106,108,101,104,103,93,104,131,98,95,96,111,111,92,104,99,123,101,111,92,82,93,102,93,112,94,115,103,114,101,98,115,110,103,100,103,105,103,101,110,104,112,108,109,109,92,104,98,107,109,104,96,107,94,105,105,113,112,110,100,99,97,101,105,106,108,117,112,98,100,102,107,95,103,97,105,107,95,102,97,98,133,112,108,112,114,99,109,108,107,104,103,99,107,109,121,92,105,111,97,120,96,106,113,99,108,109,105,107,112,81,109,105,96,109,98,110,95,110,100,109,100,101,112,120,96,97,105,113,104,106,104,109,114,103,102,103,98,85,100,100,111,105,106,109,118,103,112,112,94,96,109,112,107,92,78,113,105,108,103,115,105,108,109,103,100,103,105,96,105,109,103,102,102,101,108,116,83,112,110,99,103,99,90,125,109,105,106,102,112,108,107,94,100,102,116,110,95,104,106,99,93,103,108,111,126,103,107,101,98,106,107,105,98,106,110,106,104,103,104,109,108,108,104,100,107,95,112,127,102,92,102,110,103,103,115,111,100,117,85,94,100,95,108,110,102,100,113,97,126,100,115,113,119,112,99,114,113,99,111,111,121,106,92,105,105,104,86,105,106,106,104,109,116,94,111,107,102,104,97,110,96,108,110,107,111,114,103,114,107,113,115,106,97,115,101,88,110,115,110,106,104,108,91,104,113,110,100,98,109,102,110,103,104,102,103,92,102,108,113,101,103,109,109,121,104,92,103,102,116,105,107,106,112,117,100,96,108,92,95,112,99,98,109,113,113,104,111,112,108,96,112,112,108,116,108,111,105,112,75,106,91,97,109,102,109,96,100,107,92,113,118,106,105,115,122,84,116,106,97,105,115,104,111,100,105,89,100,107,105,97,112,118,99,102,98,107,109,106,109,116,102,98,94,109,107,105,91,118,105,99,105,104,93,108,108,109,108,104,117,113,101,110,102,95,91,108,104,101,72,102,94,111,106,101,92,105,110,106,107,102,101,108,92,103,104,102,94,113,118,101,94,106,115,106,115,101,103,125,105,91,96,108,110,108,90,115,111,103,111,83,99,96,96,121,114,95,122,105,108,104,98,111,104,103,110,102,116,108,99,107,110,100,99,85,110,94,68,104,88,101,101,109,108,103,94,111,87,105,103,103,104,94,113,95,102,114,107,100,104,108,106,97,120,98,99,87,119,120,102,118,98,110,113,105,96,109,100,104,102,95,113,108,91,104,113,98,96,98,98,106,113,104,102,87,100,103,118,111,104,105,102,113,114,109,95,118,109,109,112,99,104,111,109,113,101,110,102,88,112,111,102,90,94,97,116,76,107,105,125,103,106,104,104,116,101,101,102,95,108,110,101,115,106,97,100,104,96,110,98,106,95,109,99,103,91,113,110,99,104,98,104,96,97,106,98,102,95,102,99,108,99,115,115,107,109,114,109,104,108,101,99,113,95,102,113,100,112,100,105,105,111,114,100,106,121,91,90,91,116,96,104,101,102,99,110,113,100,106,108,101,105,107,99,101,90,112,100,111,104,109,92,105,105,116,96,106,125,106,95,107,105,110,108,95,102,109,97,110,93,106,102,95,95,100,118,111,106,124,99,111,105,94,102,107,108,102,107,105,92,104,108,99,89,107,113,111,110,101,105,94,95,108,101,105,98,98,114,115,108,107,93,119,108,108,96,89,112,107,110,109,105,117,128,105,99,106,103,107,110,115,106,102,113,109,94,103,99,102,110,104,102,87,108,99,106,99,105,107,111,94,119,107,103,101,98,103,91,103,109,100,105,99,100,108,101,96,95,107,112,104,113,108,110,108,107,109,97,122,110,109,88,99,117,106,110,108,98,112,115,108,110,107,94,101,91,103,107,102,88,112,108,97,110,114,103,100,96,111,94,106,110,109,100,99,107,105,108,100,93,99,114,91,116,92,101,100,108,104,107,108,106,97,100,109,94,105,95,111,105,104,110,101,125,107,98,113,105,103,101,113,102,100,103,101,91,107,101,115,100,114,118,97,105,103,116,106,107,99,108,105,98,110,91,107,102,112,89,103,105,101,103,107,99,113,105,103,104,111,101,102,106,107,114,113,105,95,106,103,106,109,101,102,108,111,109,104,107,100,92,104,123,107,93,100,104,99,110,116,113,94,113,102,97,114,113,104,92,107,76,88,104,104,104,89,90,100,105,92,105,101,100,91,99,83,110,105,107,99,98,105,103,108,103,123,99,114,98,93,97,110,114,106,91,92,101,105,109,98,102,91,110,97,110,100,109,109,109,104,118,97,103,100,100,109,92,92,95,97,105,95,103,99,95,94,96,104,116,99,115,103,105,99,107,113,103,94,99,107,117,95,106,105,84,104,82,104,99,115,109,92,109,106,101,103,95,103,95,93,105,109,103,114,99,110,103,95,97,115,108,97,109,105,103,103,106,107,106,100,110,105,111,109,104,114,98,114,96,113,113,106,107,96,110,119,104,83,101,95,100,104,106,100,108,115,104,113,109,106,99,106,109,100,102,113,90,97,85,117,101,119,106,95,106,108,113,105,109,105,108,114,118,114,111,113,113,107,128,112,124,91,108,105,102,110,109,109,120,102,117,110,110,108,107,96,96,106,109,107,118,109,110,117,115,88,95,106,103,104,104,101,100,104,110,105,108,102,117,110,109,99,112,114,117,106,106,105,103,111,109,97,114,120,91,110,96,98,109,119,113,111,104,102,113,113,100,96,114,95,98,124,106,102,103,109,98,91,105,105,108,116,99,100,108,109,116,96,133,97,101,112,100,105,108,111,104,106,112,91,124,96,102,117,109,106,109,109,98,99,106,117,107,95,102,107,110,113,95,96,110,101,102,109,104,107,117,97,106,105,107,111,104,118,98,111,116,105,106,101,93,105,105,108,112,109,124,106,99,102,107,106,104,108,90,124,103,111,108,104,104,107,117,112,105,110,109,102,107,114,109,107,105,113,105,103,92,109,104,111,110,104,102,78,113,110,99,90,109,117,101,113,102,95,107,113,104,92,112,110,109,106,115,112,107,111,106,107,109,100,108,114,109,105,109,106,111,111,112,109,92,109,103,105,104,96,104,89,102,103,115,109,111,112,109,106,88,110,99,108,95,120,101,108,104,113,120,103,110,98,95,117,107,96,106,105,100,111,105,103,109,107,104,103,102,101,110,106,112,116,103,114,100,115,98,108,109,97,96,93,94,96,109,97,105,105,105,101,98,110,115,104,96,100,102,100,104,109,100,129,106,97,105,104,109,101,109,97,99,111,104,95,105,93,107,94,103,111,99,106,103,115,108,99,95,108,104,103,102,109,107,103,111,104,115,109,111,111,114,103,109,108,109,104,97,94,99,107,105,105,102,108,107,104,102,109,96,107,111,95,102,99,115,105,113,101,96,98,109,109,101,93,107,119,105,100,114,104,103,100,109,111,93,106,110,115,105,99,112,109,105,120,109,112,108,115,102,107,100,107,99,103,104,99,101,100,105,113,123,116,102,105,106,87,100,100,104,103,113,90,106,118,104,103,108,108,109,98,111,96,117,96,99,112,127,124,95,121,118,107,100,99,111,106,104,102,105,89,104,106,102,102,105,106,103,109,121,106,108,110,106,107,112,104,97,115,94,89,104,103,78,119,104,91,102,99,91,102,102,92,121,113,102,106,104,104,91,98,110,99,109,106,108,114,94,107,95,99,128,102,105,97,105,103,97,104,107,105,100,72,99,103,101,106,101,108,98,115,110,98,119,112,114,111,104,101,103,111,109,109,111,105,96,98,120,109,108,98,107,108,117,106,103,98,111,102,96,87,115,101,110,101,102,106,106,110,113,102,105,92,103,106,109,115,126,111,102,98,105,108,109,92,109,106,108,99,112,109,97,114,89,105,94,98,113,104,108,98,104,115,109,100,96,114,109,108,94,124,109,106,105,109,102,110,97,116,106,105,110,109,100,101,106,108,106,104,104,108,134,104,101,101,107,101,91,109,115,104,100,98,107,100,101,110,100,112,102,102,106,117,93,114,108,98,104,110,96,100,107,108,112,116,108,102,96,103,120,105,89,98,128,101,109,111,105,109,105,101,122,107,101,106,101,110,101,92,106,109,111,96,114,114,86,108,118,113,120,107,111,113,117,100,105,102,109,103,102,107,113,113,107,105,110,123,92,112,99,100,103,97,102,103,99,90,98,104,117,100,105,110,108,108,114,108,99,110,98,115,103,112,107,109,71,111,110,109,104,122,95,99,140,103,103,106,107,104,95,90,105,99,108,108,112,91,118,113,115,98,104,108,111,111,105,109,109,110,120,91,111,99,92,111,104,100,111,116,109,102,108,102,96,95,110,109,110,110,110,108,105,113,100,100,99,95,106,114,100,113,104,103,113,109,106,105,101,96,109,99,103,106,82,97,101,105,96,105,104,114,99,91,109,106,105,101,104,105,100,100,101,105,104,113,108,110,114,120,111,110,110,95,113,99,106,112,99,102,112,102,99,103,109,109,97,114,94,95,104,99,103,95,110,106,96,102,104,109,100,113,106,99,116,105,112,110,107,105,105,112,103,98,121,104,97,100,105,111,112,104,111,110,117,100,98,104,110,106,103,101,91,97,105,116,127,107,111,97,107,113,96,98,107,96,106,99,98,109,95,84,104,113,98,106,102,94,104,101,123,94,108,109,94,91,104,96,91,89,112,94,112,108,102,100,115,97,96,95,101,105,102,92,104,114,101,105,102,117,100,96,121,88,100,106,103,104,115,112,100,95,101,98,109,108,102,109,101,113,106,103,110,113,126,95,113,70,94,107,109,97,121,105,91,115,95,114,100,99,73,97, +524.65314,108,101,108,106,90,107,94,98,94,115,112,97,102,121,101,112,113,104,110,107,91,95,110,98,94,110,112,97,113,105,107,104,112,105,109,99,102,123,102,89,99,104,93,94,100,105,88,112,105,100,106,118,105,103,112,89,114,96,114,95,88,100,117,93,81,103,108,97,114,105,93,102,92,117,101,101,110,90,116,115,101,94,100,96,102,77,109,107,99,103,105,101,106,98,89,91,106,97,105,105,92,107,97,99,100,103,96,100,92,94,113,105,97,105,94,105,108,99,110,77,87,98,104,104,101,106,111,122,111,113,106,95,99,117,94,102,97,99,97,96,91,104,95,102,102,95,118,105,108,109,106,87,108,95,102,100,93,108,98,86,85,88,106,112,105,99,93,101,103,101,110,102,96,98,96,97,106,102,109,109,96,93,105,103,96,100,100,94,104,117,105,102,105,82,104,90,106,106,99,101,98,96,96,107,99,119,112,108,91,106,101,103,95,101,119,96,105,105,114,122,105,103,101,101,115,104,103,113,103,106,97,114,108,103,126,102,97,106,103,98,96,109,99,99,92,107,109,111,98,98,95,95,102,112,98,102,95,98,108,92,94,94,109,102,102,102,102,102,97,105,110,96,104,100,78,93,111,88,95,88,108,113,77,106,93,104,97,62,103,109,103,106,100,104,112,113,92,98,103,105,92,98,105,100,105,113,101,110,95,98,98,100,91,106,110,99,95,107,108,107,103,116,96,108,107,101,91,101,93,102,98,91,102,109,113,93,98,90,105,105,99,97,112,105,95,90,107,110,111,106,108,100,105,118,98,91,99,107,105,99,94,94,111,90,93,107,90,106,112,104,94,92,128,106,111,95,103,108,99,105,91,107,101,107,105,105,102,104,108,98,109,98,96,94,101,102,97,98,96,118,109,90,100,108,106,85,107,103,112,98,95,100,114,110,111,103,91,90,117,104,104,106,101,96,92,97,107,94,104,117,98,115,105,97,109,104,99,107,97,105,101,94,99,113,101,110,100,92,113,103,105,101,100,111,105,89,111,98,112,99,106,106,96,110,120,98,109,102,97,99,117,109,103,96,120,113,104,112,107,95,95,111,111,91,96,98,106,102,102,97,99,102,99,105,95,95,104,111,100,113,107,115,105,101,86,118,96,98,102,100,110,104,97,101,104,105,113,102,103,92,97,93,111,97,108,106,97,109,102,95,100,108,105,101,90,101,103,105,92,99,90,108,93,110,101,97,96,106,94,91,103,108,100,91,100,103,103,101,106,101,92,118,97,106,105,100,98,111,91,102,100,101,101,93,97,100,96,98,80,113,97,92,98,100,105,116,95,108,109,103,87,101,125,105,101,118,118,104,97,102,96,105,105,101,96,100,105,102,102,94,102,101,106,117,106,98,104,103,110,100,103,109,107,117,107,102,88,112,98,96,99,98,105,87,111,121,92,89,102,88,99,123,87,97,103,101,103,103,97,106,100,104,91,99,109,125,87,113,97,103,75,101,118,101,91,99,100,109,96,110,101,98,106,99,107,86,107,94,105,99,102,99,101,99,102,93,103,104,92,104,103,102,98,102,91,103,107,111,102,110,111,111,113,96,94,90,103,109,105,102,113,102,117,106,101,104,102,95,99,106,80,112,102,72,96,96,97,103,91,99,100,81,88,96,97,103,97,91,109,97,103,106,108,111,100,97,103,97,101,95,109,103,105,104,102,107,118,108,105,106,109,100,96,108,94,102,87,105,102,106,99,107,105,96,102,105,99,104,103,99,103,109,109,123,106,115,103,101,97,100,104,98,96,110,102,112,111,99,104,117,96,105,114,102,102,101,100,100,73,109,109,96,98,86,96,94,99,104,98,80,99,98,116,98,99,104,107,104,108,91,100,111,112,99,105,107,95,108,110,109,91,108,98,100,103,102,112,108,102,93,107,118,105,90,100,107,109,102,107,100,97,94,95,106,109,115,101,122,110,100,105,74,106,101,90,101,111,104,95,92,92,102,108,110,106,95,98,100,112,98,109,100,113,89,100,98,75,108,94,106,106,111,98,106,105,104,102,98,98,104,89,96,112,95,99,100,100,106,109,101,108,94,112,105,87,107,101,110,98,108,99,104,106,114,109,89,122,105,94,104,106,113,108,108,86,100,108,104,92,106,104,89,94,91,112,101,112,101,113,102,100,109,116,95,104,101,114,105,82,96,97,106,100,99,97,106,95,94,96,92,113,102,103,91,99,114,96,80,101,100,104,107,96,104,99,104,98,106,93,108,86,98,100,107,96,97,94,99,96,104,87,105,87,111,98,103,91,99,86,95,102,101,106,96,112,106,109,95,98,87,110,100,114,114,113,84,96,111,107,103,94,120,86,110,109,100,98,112,96,97,90,112,104,94,100,94,117,105,105,103,105,109,109,95,96,104,99,112,106,92,106,115,106,111,116,109,104,105,96,95,93,92,91,106,115,108,101,110,114,109,108,112,97,103,103,103,121,122,104,98,93,102,101,116,104,109,96,106,117,106,103,112,111,83,109,98,105,107,99,106,101,103,107,90,95,119,111,114,104,102,102,109,111,95,87,99,99,107,104,102,113,87,107,99,102,99,106,102,108,100,111,90,106,98,113,90,113,109,109,113,107,106,110,86,109,106,97,106,102,87,117,119,122,107,102,92,111,101,108,92,100,103,111,100,102,110,103,105,87,111,98,98,113,106,98,114,117,116,109,107,97,101,115,113,105,72,100,101,107,98,104,110,102,100,113,107,103,104,97,108,113,104,112,114,113,96,105,100,109,120,101,104,96,115,105,101,114,96,109,101,95,111,112,105,109,107,106,105,113,116,88,116,105,105,99,106,100,104,100,112,111,97,101,106,106,97,120,102,96,117,111,93,119,112,87,98,112,104,99,101,110,104,112,108,109,113,111,102,117,108,96,115,109,103,108,103,94,97,91,101,105,98,95,95,116,100,101,102,108,85,97,120,87,101,109,100,104,103,102,95,96,102,103,103,78,92,91,95,102,102,110,89,81,113,110,102,99,98,113,101,117,107,107,102,109,100,113,105,111,103,113,112,114,117,93,105,102,97,107,106,114,114,104,99,104,94,113,102,106,101,99,98,120,96,91,107,83,112,116,100,84,90,110,88,106,101,104,102,99,113,100,83,120,107,99,100,102,122,99,109,111,110,99,100,100,99,111,102,113,95,103,99,103,105,106,106,103,99,106,105,109,117,99,95,99,107,93,110,107,99,109,109,108,117,109,99,100,93,100,98,90,98,95,109,102,115,104,104,102,102,99,102,87,101,100,98,113,91,105,110,103,109,105,101,97,107,103,124,104,102,105,102,108,100,119,102,103,109,108,90,103,100,113,108,94,113,101,103,101,109,109,84,113,101,109,109,104,102,113,96,101,105,97,114,106,111,106,98,99,100,102,109,96,110,113,108,96,105,91,105,93,109,106,85,82,110,98,106,102,95,100,114,103,98,101,115,108,91,103,94,111,106,95,104,108,100,103,98,101,91,100,98,106,135,100,109,107,112,112,91,99,110,119,111,95,103,106,111,114,108,101,98,92,105,76,99,100,98,107,97,105,104,108,110,107,95,99,97,104,99,91,117,100,110,101,95,124,115,107,107,104,97,102,101,103,94,106,102,113,94,100,101,113,113,101,94,99,105,103,102,113,111,107,101,108,70,108,109,112,92,108,95,108,106,108,101,98,85,105,94,111,99,106,105,102,113,103,109,122,113,113,113,102,102,109,103,101,100,104,108,102,99,91,108,96,109,82,102,112,116,107,102,96,108,104,101,100,101,89,108,88,107,113,101,111,94,96,102,98,85,99,108,107,104,100,86,104,116,99,103,102,125,102,102,100,98,103,102,95,100,108,102,94,103,107,99,113,95,99,95,104,107,115,103,101,100,107,106,108,97,96,109,102,100,97,103,95,92,102,104,93,104,106,114,98,105,105,113,108,98,99,100,99,105,105,95,107,101,101,103,105,95,106,109,110,102,93,107,112,111,104,106,96,96,115,94,110,100,93,97,101,108,102,92,116,112,120,102,94,114,97,118,102,98,98,116,116,101,100,96,108,109,98,96,101,115,100,116,107,103,109,125,108,106,98,107,108,107,104,78,107,97,103,101,98,108,98,103,104,107,98,100,102,101,103,94,106,104,106,97,104,102,98,114,103,98,107,123,106,101,104,98,101,103,114,100,96,100,106,116,105,102,99,114,112,122,101,92,110,99,86,107,91,104,100,105,97,111,93,94,106,91,105,111,113,112,92,105,94,117,112,111,105,100,91,108,91,108,99,110,103,106,91,112,102,105,99,109,90,110,109,94,99,109,106,104,92,100,107,90,101,110,115,120,109,103,106,102,112,110,89,109,105,109,99,108,112,98,103,97,105,89,109,106,104,105,78,96,103,96,106,102,113,96,98,99,99,104,107,102,107,102,99,98,95,99,100,102,102,107,98,103,94,108,100,101,105,104,96,99,104,94,101,107,96,100,102,102,95,106,92,94,98,99,108,102,104,106,102,81,99,111,100,102,97,106,113,111,100,99,93,92,99,101,99,101,105,98,104,103,95,91,110,102,105,103,90,102,71,115,104,101,99,101,89,95,107,109,99,95,111,98,101,86,103,98,98,105,108,101,120,100,94,97,114,98,103,105,93,98,85,97,113,109,100,92,108,98,92,110,109,88,113,107,98,110,112,96,101,92,103,88,117,107,110,96,98,95,101,101,97,99,101,95,117,105,108,110,110,91,94,95,109,95,102,91,106,92,104,97,109,106,96,99,108,78,110,113,109,112,112,98,95,110,102,123,114,98,108,94,106,108,106,106,88,109,94,97,87,99,97,112,104,98,103,88,94,107,101,82,108,104,97,94,93,104,98,101,102,91, +524.79388,103,98,95,109,66,108,97,78,99,98,101,104,108,104,95,113,107,107,112,102,114,95,90,88,105,93,95,95,104,110,87,88,111,101,93,97,101,92,99,108,87,96,109,104,124,118,99,106,103,115,101,137,101,105,96,101,105,101,98,105,100,97,104,87,84,111,97,109,103,108,100,117,99,108,102,100,96,105,108,114,100,103,111,103,112,107,129,113,111,91,104,104,120,108,105,97,108,106,101,99,120,102,105,97,100,103,104,110,105,108,104,90,107,99,119,102,103,107,110,102,108,110,107,101,106,110,106,101,108,106,100,100,92,108,105,95,104,108,98,95,94,100,106,95,100,99,92,101,95,111,104,104,106,90,109,115,112,105,95,108,67,88,105,109,103,109,104,92,105,103,105,104,109,110,92,106,80,98,112,118,98,98,101,104,107,117,105,92,105,102,98,113,101,112,104,107,98,95,101,107,100,108,102,98,101,107,117,89,104,102,113,102,103,107,106,116,115,90,107,102,103,104,99,94,99,100,106,110,111,102,104,102,91,100,98,79,102,108,126,108,73,103,110,115,102,106,103,98,96,95,101,102,107,104,108,106,107,97,107,102,92,94,95,91,78,102,105,99,96,101,107,97,104,108,99,106,114,101,109,109,105,116,100,106,118,100,91,107,100,100,100,114,109,101,107,103,104,105,102,100,107,99,113,112,96,114,106,94,113,100,101,104,109,104,109,98,109,109,105,103,105,114,107,103,96,100,94,91,107,110,117,107,101,98,112,98,104,109,106,83,105,108,91,103,110,104,104,107,97,101,100,106,99,104,105,82,107,95,110,111,99,128,99,105,106,84,98,116,99,93,105,110,103,103,87,106,102,101,96,100,107,107,116,116,99,106,104,115,103,108,105,93,98,112,114,100,108,96,112,121,109,98,102,107,99,107,104,104,117,86,89,101,122,101,105,104,118,87,113,104,109,104,105,114,100,91,94,99,105,108,96,105,104,101,106,96,101,111,103,107,114,115,100,87,103,103,95,95,108,102,101,95,108,109,118,96,96,104,105,110,104,106,102,115,111,117,100,100,103,97,98,114,99,100,85,107,109,112,101,95,106,103,108,108,108,103,104,105,100,101,111,119,101,102,97,108,108,101,110,107,108,101,96,114,99,96,97,103,118,100,122,113,103,104,97,106,106,98,105,126,95,100,103,102,114,106,100,119,108,107,95,89,109,104,104,120,113,95,109,101,94,98,92,114,141,126,107,113,97,97,100,108,106,109,114,112,108,99,102,108,99,104,97,113,100,105,114,109,113,100,92,87,113,109,102,111,103,104,105,106,121,83,102,100,104,104,112,117,121,90,108,99,98,107,109,116,99,136,105,106,104,106,87,100,114,97,108,81,96,100,111,108,101,103,108,95,107,90,105,100,107,105,110,99,110,118,97,98,113,105,105,103,104,92,106,102,98,98,102,107,111,104,110,99,106,97,98,97,110,99,98,100,117,105,99,80,105,102,108,105,114,101,95,108,102,95,108,97,101,97,112,98,113,101,102,113,102,111,109,112,110,103,117,109,116,99,103,108,103,118,103,106,99,113,110,105,107,105,108,95,101,93,103,110,101,118,108,110,98,83,112,110,109,102,94,93,102,104,114,102,109,101,116,103,104,107,110,87,106,106,108,107,106,106,94,115,106,99,109,108,119,100,95,118,104,99,94,95,120,110,115,113,111,103,108,118,112,102,107,108,98,96,94,97,105,109,115,113,110,126,109,109,109,99,99,111,107,98,114,102,101,100,117,105,106,112,110,105,106,116,101,110,108,106,114,101,100,107,103,99,99,117,122,104,104,99,116,113,112,106,102,108,101,99,112,94,106,109,118,100,105,104,97,105,111,106,95,114,103,99,100,99,110,99,110,96,103,101,106,120,97,99,105,105,112,118,112,91,103,104,109,93,110,106,100,109,102,91,108,103,111,100,106,111,98,97,100,100,95,107,96,115,102,99,101,97,109,103,105,106,97,109,100,95,96,115,113,104,110,110,103,116,104,92,104,97,104,96,114,101,102,110,108,109,108,83,95,103,101,103,106,125,110,109,113,96,108,118,103,108,105,104,109,96,109,99,101,91,100,110,102,99,101,120,97,94,107,102,105,117,108,101,109,113,105,99,107,109,106,94,106,96,112,107,109,108,118,106,98,114,105,113,100,110,114,100,91,112,102,109,101,100,100,107,95,119,110,96,115,93,110,99,108,94,96,102,109,110,114,106,88,111,97,116,107,99,101,104,103,112,104,103,112,93,108,109,112,113,109,103,97,111,127,107,116,91,96,101,99,106,109,100,103,90,111,105,94,111,119,105,117,104,100,108,109,94,110,101,99,110,91,127,91,105,99,104,109,104,97,111,111,103,100,109,95,94,98,114,93,106,92,104,116,104,111,103,103,100,119,87,98,109,100,105,101,110,112,109,95,99,92,102,101,79,102,107,106,95,112,113,104,99,99,106,96,106,100,102,118,114,105,96,98,103,106,102,112,91,91,103,106,112,108,95,103,96,96,106,83,103,102,102,100,102,110,106,107,108,107,104,107,107,105,96,102,89,110,105,100,75,104,94,101,110,102,87,101,102,116,105,102,106,100,101,97,106,112,92,97,111,108,97,96,99,107,104,111,104,112,106,101,101,107,100,117,91,105,110,117,107,105,105,95,111,102,98,109,97,117,100,97,100,100,97,96,109,95,73,106,101,102,114,103,91,102,104,109,97,103,111,95,116,95,107,97,107,96,111,112,111,110,116,107,109,95,103,107,98,100,99,99,88,106,102,96,99,96,65,96,109,106,105,98,95,107,106,102,107,105,106,89,104,107,100,96,115,112,115,101,101,101,97,102,103,100,105,103,95,106,99,104,125,102,107,112,92,99,106,99,105,103,128,117,107,106,104,97,102,107,107,76,101,108,103,95,112,105,104,89,128,96,109,110,112,93,101,117,104,113,109,100,99,86,114,110,107,98,106,98,102,108,99,106,104,101,98,116,102,110,97,94,101,102,105,110,95,98,107,116,100,117,93,110,96,106,111,102,98,95,102,101,106,107,97,98,102,108,106,95,98,108,108,107,100,103,96,109,101,97,97,96,100,109,108,100,108,98,113,75,120,103,92,98,99,105,98,93,95,91,91,100,92,104,104,99,111,100,114,109,105,112,104,98,102,110,111,100,117,105,113,105,84,106,101,108,94,101,103,104,111,103,105,91,109,104,103,118,101,98,98,109,124,103,110,86,91,108,107,118,99,87,107,109,102,101,104,89,103,108,107,91,119,98,114,102,110,112,104,108,100,97,107,109,108,97,102,109,101,105,93,101,114,104,95,105,106,111,106,99,106,99,106,114,107,104,99,102,98,98,124,101,111,96,91,106,101,107,111,110,99,107,107,100,102,100,107,112,95,103,109,89,99,102,98,102,102,89,100,107,107,108,103,93,114,103,106,102,107,107,84,98,96,105,101,105,86,109,99,107,105,99,105,99,98,110,104,119,101,109,91,100,97,100,97,96,100,129,98,105,97,106,96,102,103,104,99,95,109,108,107,106,93,96,103,107,113,107,107,94,84,96,107,113,87,115,106,107,104,96,100,99,105,112,76,108,99,102,99,98,119,103,104,112,112,110,100,89,92,108,117,88,103,99,106,100,99,95,110,115,103,119,119,104,106,111,106,99,108,110,107,104,105,106,110,102,106,110,107,120,100,100,106,113,101,107,99,108,106,104,106,92,102,104,94,95,119,106,111,109,102,72,108,106,108,106,105,96,102,109,81,109,119,99,101,117,100,105,108,99,106,100,96,107,115,97,107,104,102,104,115,107,108,94,109,109,88,107,117,106,105,100,96,112,114,102,108,119,103,103,104,99,87,108,111,103,113,114,110,109,103,98,99,88,100,93,99,108,101,94,105,101,110,104,102,105,98,89,104,104,113,110,109,111,101,96,101,88,99,96,109,100,98,102,115,108,107,111,107,106,121,95,107,102,104,102,95,104,102,99,103,108,105,103,112,105,100,122,95,107,103,105,117,105,110,99,111,94,103,113,107,113,106,106,117,109,111,93,106,95,109,111,107,113,99,112,107,114,108,101,109,104,111,109,99,100,106,121,95,82,109,102,98,102,101,108,94,102,89,96,106,101,120,90,112,107,95,112,106,112,108,110,95,108,111,114,79,67,107,100,101,105,97,100,95,98,106,115,101,108,109,107,100,98,103,94,107,99,102,102,94,113,108,112,112,108,113,101,110,107,109,108,98,117,107,101,103,106,103,100,98,107,117,110,123,91,105,109,97,111,111,95,101,98,104,117,103,102,104,105,111,123,96,120,111,111,103,128,111,104,107,108,95,103,111,91,106,111,117,99,112,105,105,98,97,101,117,104,106,113,111,102,92,102,108,90,122,102,98,109,113,102,106,104,102,101,101,105,98,108,106,106,113,106,100,116,106,108,100,103,98,97,104,98,99,113,117,110,105,94,102,98,104,104,113,112,99,119,102,107,113,111,101,109,99,102,80,107,98,96,97,93,103,106,108,91,107,109,109,103,100,102,103,98,99,98,106,109,105,107,110,91,101,95,110,92,102,101,96,102,75,105,104,95,95,97,109,121,117,102,103,108,118,100,103,105,103,106,113,103,107,104,96,100,114,95,115,108,111,110,105,97,107,101,105,107,109,109,96,110,109,93,101,101,113,110,97,106,101,101,101,94,95,100,113,112,116,111,99,96,112,131,109,94,106,95,101,105,100,100,103,107,113,111,106,120,106,91,99,98,106,95,110,116,98,91,95,97,102,126,117,106,99,70,120,104,113,112,107,100,109,114,110,101,111,102,115,96,108,111,95,106,80,122,106,96,111,108,115,113,93,100,112,101,106,95,104,91,111,97,99, +524.93463,100,98,112,88,94,105,100,92,107,99,104,108,108,101,113,95,95,95,95,111,114,100,115,90,110,83,97,100,100,104,98,106,110,111,89,109,108,103,101,101,113,92,91,90,101,94,103,95,93,103,104,97,100,97,95,91,106,101,101,92,107,116,92,102,99,117,104,115,100,97,88,118,89,112,96,111,97,101,112,114,105,103,105,96,115,98,100,109,91,99,102,91,105,92,100,101,120,103,104,109,97,108,95,93,100,95,92,107,98,113,105,99,110,113,112,100,95,103,100,109,112,102,109,108,118,93,111,112,103,97,89,101,76,107,95,107,97,99,105,104,110,103,92,93,102,98,96,96,95,103,96,105,107,98,104,105,106,102,98,112,96,104,102,109,91,101,121,103,105,100,98,104,113,99,106,100,113,83,113,111,96,104,97,115,109,92,100,105,109,88,99,99,106,108,108,110,102,103,116,96,98,103,106,94,107,108,112,98,104,114,109,104,115,92,109,99,103,116,114,109,104,111,104,78,98,95,106,109,102,109,101,114,104,105,111,109,97,101,109,94,107,107,99,99,91,94,110,103,99,107,106,109,97,110,109,102,108,105,97,107,105,106,108,104,114,98,109,91,91,101,108,107,105,113,104,105,102,112,97,112,106,109,99,88,97,105,101,106,105,109,106,81,105,104,108,111,110,94,100,96,103,96,106,97,104,106,99,104,100,99,97,100,99,96,114,103,118,75,104,111,111,99,108,96,112,111,100,91,106,122,107,104,109,112,115,98,100,113,97,117,120,113,101,109,112,115,106,97,100,113,98,109,103,110,109,103,115,103,101,113,110,107,114,96,103,95,100,112,114,102,108,102,106,118,112,105,109,109,102,101,121,120,101,107,112,104,96,97,110,95,104,99,98,103,99,102,101,100,112,120,112,93,104,98,72,98,104,101,104,107,90,99,105,107,84,113,110,105,104,104,102,107,92,109,107,103,113,102,105,106,101,98,106,120,104,98,109,112,100,98,104,99,97,95,109,110,97,110,96,111,107,102,99,110,101,106,102,106,99,104,100,106,116,106,111,114,101,114,107,96,109,98,106,95,109,111,94,115,111,104,105,116,108,88,99,102,112,91,108,96,106,106,98,109,93,108,115,103,91,101,114,98,112,104,99,112,95,92,108,102,103,101,95,95,106,121,95,114,100,96,103,114,105,100,109,107,113,105,105,100,114,100,103,99,105,105,108,99,106,105,112,114,114,105,104,95,99,106,101,106,109,115,111,109,100,104,100,99,102,99,100,111,96,102,109,95,95,102,99,106,102,93,109,113,112,103,106,99,99,92,108,107,95,94,88,88,136,93,107,94,118,99,103,102,100,106,113,108,110,97,102,88,102,112,101,112,100,90,102,121,105,103,110,110,112,101,99,110,108,100,99,115,111,118,111,95,93,109,104,113,95,110,103,100,100,113,101,100,101,103,103,105,111,81,99,107,107,99,92,108,104,95,103,107,107,99,101,98,108,104,108,121,101,105,108,83,97,95,106,116,89,92,99,102,102,106,111,90,104,103,122,104,102,100,90,114,102,123,110,109,99,104,108,107,104,110,103,111,104,102,110,111,108,102,112,102,113,114,110,87,103,102,69,105,99,107,103,109,108,88,106,99,113,105,107,110,100,110,113,113,110,103,110,111,102,102,104,105,110,107,105,112,122,102,111,99,102,107,95,102,103,108,103,96,103,99,99,106,104,115,111,116,97,92,94,101,103,103,105,102,108,106,106,87,98,110,106,103,108,104,102,104,116,92,94,101,113,102,108,112,110,95,102,112,104,105,98,104,117,113,108,107,102,94,103,94,101,74,112,107,99,98,102,105,106,91,105,117,113,108,113,99,107,90,114,129,109,127,104,75,99,107,104,105,106,104,104,105,100,101,96,109,120,107,98,96,102,98,102,103,105,104,107,99,84,105,105,108,95,109,101,98,104,97,107,116,113,106,109,109,96,107,114,96,94,100,115,102,129,84,102,110,114,103,108,112,109,102,116,109,102,118,106,108,105,94,107,103,111,109,105,117,96,122,115,92,96,113,93,95,120,102,105,111,98,104,106,94,102,107,114,103,111,108,100,103,107,104,98,102,128,89,82,118,96,107,106,105,107,66,89,106,115,112,116,103,104,110,101,99,106,106,97,96,112,130,116,108,107,114,107,115,113,94,107,102,100,101,108,107,107,110,98,99,96,110,105,104,95,106,106,104,99,109,97,95,109,103,100,110,103,83,104,99,95,97,104,102,106,108,101,109,116,99,111,106,111,120,101,110,101,100,102,120,94,102,110,103,105,104,96,115,116,96,122,102,100,106,97,106,117,92,110,98,112,97,110,109,96,105,89,97,110,99,102,100,106,92,104,109,103,109,118,110,105,87,97,100,100,107,99,100,104,134,106,118,107,107,98,101,105,100,112,112,104,108,109,113,108,119,119,104,95,108,106,105,106,113,120,124,115,105,113,100,115,98,110,99,117,105,100,104,105,102,97,102,99,100,106,107,105,124,105,111,110,100,112,110,102,106,100,99,100,103,104,116,97,110,104,77,102,114,112,112,114,106,108,106,95,102,91,104,110,119,114,107,104,113,105,102,116,113,99,108,100,104,106,122,100,116,107,104,110,109,106,106,108,102,124,112,106,103,100,113,108,112,108,115,129,114,92,93,101,95,99,105,110,107,122,115,103,104,96,95,101,109,101,107,96,88,100,103,111,98,111,111,100,96,96,113,111,102,110,97,108,113,108,119,105,108,108,110,99,108,111,104,108,119,112,117,97,108,105,106,108,102,107,101,116,103,113,116,112,104,109,100,121,107,95,102,121,103,109,114,109,115,102,90,106,117,106,105,108,111,107,104,116,113,114,121,103,117,105,107,104,113,96,107,99,102,105,108,99,110,92,107,106,104,105,119,111,102,122,94,111,119,110,99,112,98,108,110,112,112,108,114,110,112,110,106,117,101,87,100,104,111,106,98,115,109,104,102,115,113,99,113,99,112,101,99,109,101,101,122,121,111,108,105,103,106,107,104,103,103,91,116,109,110,122,102,116,113,106,104,102,96,103,106,106,118,97,124,101,83,120,101,102,107,116,123,99,114,108,128,117,103,99,124,98,109,113,87,109,98,104,107,111,106,111,88,100,102,120,114,103,103,122,106,129,118,92,103,109,115,107,113,107,114,109,112,106,104,121,106,111,96,109,104,119,103,95,93,109,103,105,119,119,123,117,113,105,101,117,111,115,109,111,103,105,102,111,101,103,100,107,109,103,125,108,110,109,120,108,108,109,114,116,109,93,109,106,106,104,130,114,103,107,126,113,108,102,115,112,111,100,102,114,110,117,123,109,103,111,122,109,117,113,120,110,101,108,113,84,110,110,115,99,114,98,103,98,102,123,114,107,117,103,107,115,108,111,106,103,123,110,117,95,110,117,111,110,113,110,107,134,106,108,108,101,107,98,105,106,108,102,107,107,101,111,104,125,123,117,108,121,116,98,78,101,98,99,104,106,112,103,108,122,103,102,116,104,109,113,101,100,126,107,108,102,108,88,111,104,117,109,121,113,106,108,99,99,82,109,113,118,100,115,101,100,112,107,108,106,111,113,105,113,100,89,117,109,98,113,94,114,96,106,100,111,111,107,109,108,99,99,108,104,120,106,103,113,111,91,117,108,111,104,116,110,107,117,109,120,115,124,95,112,108,109,102,110,108,101,100,107,94,103,96,114,105,111,116,110,106,106,99,104,124,113,106,111,88,123,112,82,106,103,107,106,123,108,106,114,120,104,108,106,113,107,101,110,100,115,103,98,113,119,99,102,102,110,108,105,104,107,105,100,108,110,110,99,104,103,102,121,109,105,103,65,108,90,108,106,118,107,109,113,121,122,88,114,84,97,100,114,111,103,93,110,109,102,106,121,102,94,110,110,113,111,98,108,114,110,108,105,110,104,137,111,114,109,123,110,101,103,109,114,108,115,103,111,117,106,102,117,102,101,109,109,121,116,101,103,111,112,106,115,124,109,110,101,140,91,106,113,106,110,88,106,104,115,106,107,107,106,110,77,110,103,106,107,111,118,124,112,115,106,128,109,114,122,97,116,102,105,103,111,100,107,113,98,117,108,114,105,106,109,104,122,106,114,105,97,103,110,111,101,102,106,100,100,106,112,103,102,90,109,113,106,118,102,110,102,112,100,111,105,98,109,103,103,104,105,104,92,107,107,115,104,109,105,112,114,101,109,112,104,115,112,117,103,100,118,111,100,116,103,99,109,106,85,94,126,110,118,115,120,108,111,120,109,108,109,108,101,110,114,114,123,100,100,90,106,120,95,101,117,117,131,112,107,113,124,116,95,104,103,104,106,104,98,108,112,108,104,108,105,111,98,104,104,104,115,111,115,111,99,109,99,107,116,102,67,103,115,103,107,91,115,97,113,110,113,114,102,100,107,107,111,100,97,101,114,107,118,109,101,106,112,112,116,101,105,107,119,107,103,102,111,127,102,118,103,119,108,119,112,117,110,103,106,109,100,105,100,101,106,92,102,100,123,123,113,112,95,102,112,110,115,101,111,114,108,110,112,108,85,107,113,99,119,121,94,103,117,113,90,105,98,119,111,102,128,111,142,106,108,104,120,98,93,109,108,109,93,101,90,103,106,91,105,102,106,125,115,103,119,111,106,100,101,112,103,107,114,111,117,106,95,103,113,109,114,122,99,112,111,106,116,76,104,104,113,101,101,108,110,105,112,122,101,109,108,110,108,111,107,109,104,105,116,113,100,112,108,101,114,102,105,112,106,88,98,89,112,98,118,110,120,103,102,105,91,97,111,119,103,130,108,92,107,110,109,101,95,108,132,103,91,88,108,106,110,111,119,115,111,110,114,102, +525.07538,90,98,96,105,99,94,113,94,113,101,105,117,105,94,108,107,96,97,102,101,106,103,107,109,99,112,108,97,103,103,95,109,99,103,100,104,85,90,109,98,100,98,92,107,95,102,112,101,121,93,100,104,101,115,110,87,101,91,102,92,94,117,105,100,110,101,101,96,103,106,98,105,104,101,90,98,94,111,115,98,118,100,113,116,98,104,117,120,108,92,107,102,118,99,105,96,95,105,105,111,103,105,87,104,95,109,103,95,97,102,115,83,99,108,104,106,101,108,98,103,111,118,104,105,102,117,109,93,110,105,98,102,109,102,103,104,106,114,71,91,94,106,98,117,105,91,99,92,105,116,101,102,99,110,96,101,105,104,103,97,87,109,109,112,97,92,102,106,100,100,112,105,112,101,109,106,110,109,98,109,94,106,103,118,100,112,80,102,111,102,99,96,109,105,103,99,98,109,93,123,91,107,103,114,95,103,100,113,103,91,105,118,109,96,107,114,100,110,115,103,103,110,104,98,100,98,114,109,113,95,106,117,113,103,110,101,105,114,93,105,107,108,105,116,103,102,103,105,106,104,112,109,115,107,98,102,104,103,100,113,102,106,104,103,98,94,104,97,113,96,108,108,102,106,99,105,102,108,107,100,109,103,106,99,105,106,105,111,110,103,95,122,116,108,120,100,107,108,98,109,104,103,108,110,111,111,113,118,112,109,103,111,99,99,107,91,95,104,113,105,109,103,99,104,113,111,118,100,108,110,116,104,120,102,106,106,105,95,102,117,101,110,111,109,98,102,102,116,113,100,99,95,96,91,112,107,112,112,91,113,103,85,80,101,107,114,106,119,100,104,105,106,111,96,96,111,115,107,113,86,111,112,98,110,108,110,101,112,103,86,108,83,102,118,103,111,122,109,107,109,97,101,114,92,116,103,91,106,105,115,101,101,101,95,105,114,101,112,108,89,108,106,109,117,114,101,107,92,99,102,102,97,115,101,106,103,96,84,103,111,102,100,106,109,105,111,96,103,113,125,88,100,111,127,109,105,101,113,111,114,115,110,90,111,108,113,114,111,107,105,101,98,96,98,113,101,104,110,111,100,105,103,105,101,106,104,107,116,107,100,104,104,108,103,111,109,102,104,93,104,109,105,113,101,104,103,96,107,102,105,117,104,103,106,105,103,99,114,108,101,105,105,97,106,113,99,118,103,102,107,107,108,112,102,98,110,108,109,113,108,98,94,109,109,104,101,112,101,95,108,90,110,95,111,102,95,110,96,110,102,100,102,105,105,102,107,105,109,93,101,99,88,108,96,106,109,103,110,92,106,96,89,119,101,101,113,111,116,116,98,107,100,103,108,123,115,101,91,107,123,99,106,111,95,97,96,103,105,85,109,108,102,124,100,105,104,100,106,116,99,108,100,113,91,105,113,119,105,116,92,104,107,102,99,103,103,101,98,115,101,109,106,101,106,103,104,99,100,90,109,98,110,112,100,108,114,111,114,103,112,114,101,100,98,94,100,102,99,108,100,126,110,104,113,110,117,111,95,108,102,86,112,101,101,105,100,96,106,112,101,105,110,104,124,114,101,120,119,95,99,100,103,99,106,100,122,106,109,98,100,110,122,113,103,101,99,105,106,114,102,117,109,102,104,106,99,102,77,99,107,101,104,110,101,74,96,90,100,113,94,88,103,103,106,110,117,110,92,106,102,108,100,109,100,98,103,86,114,109,107,107,93,103,108,101,108,107,115,113,106,109,112,101,101,99,113,100,125,110,98,89,117,104,105,90,98,106,104,122,117,108,91,86,102,110,116,103,105,101,108,112,92,110,103,103,87,110,96,109,93,119,99,105,101,109,99,111,111,106,97,115,110,100,108,95,103,108,102,108,100,114,104,102,93,110,103,112,108,98,98,113,107,112,108,101,94,107,103,95,98,103,101,107,109,109,100,99,100,106,101,93,95,106,108,95,113,106,103,117,104,101,108,98,108,104,104,101,108,104,102,101,104,102,124,113,100,107,105,94,105,96,99,97,95,110,104,102,113,95,107,99,101,99,115,94,95,95,104,92,101,114,109,107,111,104,99,106,107,88,106,100,102,108,103,103,116,99,107,101,102,102,105,109,113,104,106,95,111,104,104,106,105,115,105,109,108,111,97,103,107,98,101,110,103,104,109,107,86,91,110,107,103,94,102,89,109,99,94,70,95,100,103,101,109,103,103,99,99,100,104,94,108,106,91,102,91,112,111,125,114,98,112,101,106,101,104,108,121,104,113,122,113,95,88,110,104,107,113,116,104,100,104,101,108,101,104,103,83,104,103,109,106,104,94,104,108,102,87,105,116,108,113,101,105,105,105,91,104,100,103,101,100,107,91,100,105,97,107,100,105,108,109,106,109,108,107,109,102,108,117,95,118,102,101,101,103,120,114,100,105,99,112,103,104,97,102,94,108,104,108,100,99,103,94,90,100,102,107,111,101,91,103,111,98,108,87,102,105,112,103,93,109,110,97,101,111,111,87,102,112,101,115,99,108,105,101,106,106,98,90,98,99,109,118,112,103,132,103,108,109,98,105,108,97,95,100,99,97,106,99,107,112,97,108,99,103,120,103,107,109,110,103,113,103,107,95,107,93,104,105,106,92,105,96,112,117,113,107,103,95,108,101,113,95,98,107,109,104,113,106,97,104,100,94,109,109,105,100,99,105,97,90,99,100,120,113,84,98,98,101,99,122,108,103,105,114,100,109,111,104,116,112,92,105,111,104,109,101,107,105,107,103,97,100,103,113,120,98,97,96,97,105,103,103,105,111,110,100,117,105,111,113,114,104,97,94,107,101,119,110,102,126,116,110,101,102,96,102,105,116,96,99,102,107,99,101,97,107,98,116,91,102,97,112,103,101,108,110,105,108,100,123,97,109,98,111,103,106,96,123,103,107,94,100,112,114,104,91,96,104,106,112,102,98,88,107,110,79,117,109,117,100,112,99,106,109,107,94,98,109,110,100,92,110,123,105,115,99,96,96,99,92,97,108,119,100,103,115,111,102,109,100,111,94,101,105,109,106,120,113,115,115,94,103,99,83,103,107,108,110,87,99,101,98,108,118,105,104,96,104,118,109,104,121,102,99,99,105,102,103,104,102,110,116,93,105,91,104,96,91,101,101,113,87,100,109,94,99,104,100,107,95,109,113,103,108,113,105,96,105,89,97,105,104,110,86,109,112,114,101,105,108,104,93,110,108,104,101,113,109,109,104,111,117,116,103,106,109,103,103,100,104,108,95,116,117,98,108,125,105,99,101,97,107,94,107,104,110,106,99,115,113,102,106,93,113,93,103,113,107,106,107,99,104,93,103,117,102,116,99,100,109,100,105,98,104,103,107,98,119,105,97,106,107,102,104,108,109,106,107,96,113,110,98,98,100,102,103,104,112,98,100,105,105,102,107,81,99,100,101,98,105,107,107,108,102,114,105,108,100,94,94,112,100,113,105,105,93,112,101,112,101,103,106,108,114,97,111,105,98,110,101,105,108,98,97,99,106,105,104,106,109,98,101,101,108,100,116,115,104,98,99,109,108,104,117,105,105,102,88,102,90,101,123,101,102,108,102,101,95,93,104,103,101,98,92,105,111,106,110,100,101,110,111,102,110,111,105,103,101,112,110,100,110,91,95,112,111,100,93,109,112,90,102,102,115,99,119,110,115,98,100,106,111,110,98,110,105,103,76,105,102,104,104,101,97,90,103,98,84,105,110,103,98,118,110,99,98,120,114,127,98,111,104,91,104,98,87,115,106,112,105,101,104,106,102,100,106,108,105,109,105,113,98,115,100,103,97,105,113,101,115,102,101,105,101,113,100,102,104,95,109,99,103,110,110,114,93,93,95,104,99,99,101,111,105,111,95,104,112,98,112,109,105,103,96,106,104,98,100,96,103,106,110,97,98,95,102,114,102,102,111,109,108,124,96,104,108,113,101,110,105,106,110,98,81,106,109,102,105,104,96,99,113,113,107,95,99,100,108,103,109,109,106,105,113,103,97,108,101,108,113,94,121,101,106,108,112,113,105,105,90,110,102,116,98,104,91,112,104,112,104,100,112,103,116,95,114,112,101,117,101,85,104,103,115,105,104,109,108,125,94,94,99,98,90,99,108,106,106,101,95,93,91,105,103,107,98,96,92,117,103,103,108,98,113,109,113,105,108,120,123,102,103,114,102,117,108,110,105,104,105,99,108,102,108,107,106,102,101,101,103,107,111,102,127,89,106,105,113,98,95,116,101,101,116,109,92,91,109,67,97,103,88,96,109,116,104,105,116,108,104,114,115,101,108,106,107,107,105,118,102,96,109,106,89,103,89,107,109,113,104,115,109,99,98,105,104,103,110,104,99,113,112,96,98,87,111,101,105,117,97,109,98,106,96,95,102,104,96,94,106,121,101,100,101,96,95,111,103,96,105,99,105,96,103,110,102,105,94,115,102,95,100,93,96,110,103,101,106,87,90,98,109,115,100,102,91,108,98,94,89,108,103,90,116,105,109,99,91,96,111,91,102,100,98,112,97,100,99,103,89,109,100,110,113,104,105,104,99,96,88,108,102,94,98,97,101,110,109,109,99,104,104,107,100,109,101,98,109,106,72,102,101,112,105,114,112,107,101,106,94,103,96,100,105,106,104,91,97,95,120,96,99,109,104,112,102,102,100,106,115,104,105,102,91,95,88,104,111,102,103,113,105,107,104,98,99,109,98,107,109,101,96,88,100,108,102,99,96,101,105,105,114,104,106,104,119,94,107,111,99,95,102,99,114,104,91,104,100,106,104,107,103,99,105,111,101,109,105,107,68,97,116,107,94,112,98,109,89,98,97,107,87,102,101,99,112,112,106,106,107,92,99,107,109,108,105,104,96, +525.21613,104,99,88,103,91,90,98,113,93,106,110,102,126,100,106,94,99,110,95,104,123,111,107,105,109,98,109,113,107,113,107,100,98,104,106,118,114,104,102,104,94,108,98,108,104,107,110,106,96,111,122,101,112,114,101,105,91,79,114,101,106,95,94,80,100,85,100,106,100,100,104,99,89,111,107,115,103,104,108,113,91,110,102,80,103,101,100,118,96,89,106,106,104,121,119,83,103,100,105,94,103,98,95,106,103,110,96,101,109,93,118,94,116,92,94,108,105,115,106,102,107,106,97,110,106,105,101,109,111,110,108,105,110,112,94,119,100,101,101,103,94,105,114,93,98,98,99,108,95,111,113,97,104,94,92,103,114,102,107,92,101,93,96,100,113,104,99,100,90,112,109,91,105,101,121,100,107,90,106,107,104,104,104,105,107,98,101,101,98,92,99,86,105,105,101,104,104,109,107,107,98,109,85,110,99,100,92,110,104,110,96,106,116,109,113,107,103,119,91,94,106,105,93,108,107,100,105,109,102,105,107,122,106,110,114,111,91,119,111,102,93,99,112,117,99,102,104,113,113,111,108,84,94,111,114,87,103,124,92,101,110,107,103,102,78,110,110,113,102,120,108,92,109,109,109,92,105,92,100,107,102,103,113,110,108,103,102,105,94,97,109,118,107,101,102,111,110,83,106,104,102,92,100,112,101,106,104,92,113,107,99,108,105,114,105,109,121,105,113,101,99,99,100,111,107,98,105,101,103,98,111,103,108,109,119,112,109,118,98,129,112,116,97,97,95,110,104,111,102,110,99,102,104,106,97,85,101,94,101,105,97,113,109,112,104,113,105,112,117,103,107,106,103,113,116,105,106,96,108,103,109,113,103,114,109,93,113,106,107,98,124,100,105,103,125,106,109,98,113,111,104,101,105,106,116,114,107,107,114,100,97,94,98,106,103,123,110,98,105,108,103,103,103,105,99,100,97,110,94,116,91,102,68,114,114,100,101,112,94,108,104,109,109,111,96,121,96,107,104,99,112,103,102,113,112,106,99,111,85,109,103,109,117,107,100,124,110,105,109,105,117,101,107,93,103,93,110,112,109,113,110,107,113,94,96,97,105,94,96,100,106,104,95,101,104,104,93,108,106,97,108,95,101,119,97,106,90,106,103,109,117,112,102,108,110,95,114,103,109,110,105,103,112,107,117,104,101,113,102,101,116,106,102,121,107,105,107,111,107,108,105,107,109,113,109,103,105,109,111,79,111,105,117,107,103,115,112,110,95,80,93,110,99,100,113,116,116,113,102,97,112,120,107,118,115,105,110,99,104,107,106,115,109,109,107,94,105,94,106,98,113,104,111,99,103,128,95,101,105,97,103,112,110,103,112,105,109,107,97,103,105,102,108,109,129,94,116,98,104,117,103,102,114,118,117,98,95,111,105,109,103,114,99,102,109,98,113,97,118,101,112,98,115,102,96,98,111,106,108,102,100,103,100,100,109,112,105,124,99,102,121,102,122,114,95,112,109,109,100,100,105,95,106,105,99,112,115,104,117,94,102,107,107,105,94,101,88,109,105,99,89,109,105,111,95,113,101,103,102,108,106,91,100,103,105,103,108,106,93,109,104,110,104,104,105,107,108,121,111,108,105,94,109,116,110,108,85,96,121,110,108,91,99,105,108,103,107,96,102,113,111,107,96,93,108,116,116,97,100,108,117,92,103,101,102,101,105,105,102,110,112,105,104,101,86,108,108,111,104,94,108,93,103,111,110,106,92,103,103,104,110,109,103,110,109,109,100,89,109,109,107,109,109,108,100,112,99,103,100,117,110,116,115,106,93,104,106,107,111,91,119,110,110,107,106,113,107,112,98,104,102,105,100,102,116,114,104,101,99,123,101,103,114,93,98,107,109,100,105,102,106,114,106,99,108,105,108,96,103,90,93,106,112,112,101,105,124,106,107,106,103,113,103,117,110,77,91,117,103,114,119,114,102,103,114,108,107,91,109,98,105,114,114,150,107,112,93,112,116,109,104,117,100,124,103,103,104,99,113,107,114,109,107,101,87,108,108,102,113,117,108,118,103,100,104,106,108,106,110,100,116,103,118,112,101,100,103,112,105,97,101,117,112,109,102,106,96,114,105,102,98,112,107,103,108,102,116,109,107,94,110,113,115,117,104,100,102,103,103,123,98,105,95,107,112,105,98,105,103,108,94,116,120,104,110,100,114,99,107,116,113,112,106,109,111,84,106,104,107,95,108,103,105,99,100,107,109,100,105,98,105,107,105,106,105,94,99,103,99,104,101,108,103,113,103,117,109,108,87,118,109,112,93,96,114,119,110,107,97,99,106,110,106,99,107,109,104,114,104,105,97,114,95,104,93,110,108,112,112,96,133,90,108,106,117,94,108,114,98,107,103,110,106,99,99,106,112,104,101,103,104,102,111,84,106,97,106,112,104,107,106,109,96,117,111,105,97,104,131,114,118,114,104,104,96,108,108,106,110,123,106,107,107,107,102,114,97,102,104,111,98,125,107,99,107,111,97,111,103,102,120,105,90,112,96,118,100,91,101,110,102,112,117,100,84,103,124,98,113,98,104,99,103,101,107,73,108,115,108,102,110,110,106,120,112,117,104,106,91,105,115,102,111,88,113,108,110,113,107,71,106,102,116,121,103,111,111,109,110,102,114,116,98,102,113,110,108,112,103,109,90,112,109,102,111,115,102,102,101,109,119,111,106,106,105,113,102,106,95,102,111,94,111,97,106,94,117,106,108,97,112,115,106,115,95,105,87,106,115,109,97,110,100,110,115,105,95,103,103,88,105,101,108,94,109,95,114,101,125,90,110,104,106,101,112,104,98,117,105,102,99,93,111,92,98,91,109,112,116,114,106,86,109,117,111,121,123,109,111,113,102,107,120,112,93,91,101,105,111,111,104,108,95,104,110,111,115,113,98,101,98,107,112,114,111,95,120,103,110,109,89,107,110,114,98,116,93,102,102,98,103,112,108,117,110,103,106,104,119,88,114,94,110,107,110,94,128,103,104,108,105,94,108,92,102,112,107,108,114,101,95,111,104,100,93,110,112,112,111,107,99,107,107,110,108,92,109,108,100,108,102,106,106,111,113,108,109,104,117,105,103,101,105,100,116,108,110,105,100,106,101,109,90,102,106,108,106,98,106,112,110,107,108,110,109,105,97,109,112,103,96,105,79,104,114,97,98,73,103,102,104,113,102,95,117,110,97,101,116,97,112,107,106,115,113,114,96,109,101,114,111,105,102,107,113,98,108,93,82,82,102,104,103,103,95,107,113,105,97,109,95,107,108,114,115,103,96,107,108,104,102,103,114,102,107,115,103,112,102,104,98,101,107,102,107,108,110,117,104,98,121,97,105,109,111,96,99,106,108,102,94,88,92,117,112,113,108,103,107,96,104,100,95,121,94,115,101,114,106,106,120,96,110,103,95,101,109,115,110,107,100,85,113,106,106,114,98,96,94,105,108,97,96,104,108,110,108,105,103,101,116,107,107,107,100,103,104,103,120,115,97,112,110,106,110,118,97,108,102,112,108,103,103,102,100,110,95,102,112,103,85,106,127,97,107,104,110,98,102,98,88,96,117,113,106,94,94,99,103,111,110,94,107,107,106,112,101,91,109,112,108,109,116,116,105,85,114,107,102,91,102,118,106,97,99,101,100,95,117,105,120,101,112,102,103,89,106,88,110,101,108,116,103,105,119,105,112,110,104,111,108,100,85,109,100,104,101,99,103,104,103,103,111,100,102,99,105,106,108,106,94,102,104,103,109,114,100,110,107,98,99,103,105,108,112,113,105,96,109,102,95,120,102,106,108,104,106,113,113,98,98,103,98,100,108,131,125,84,105,116,93,113,104,98,107,99,110,95,98,96,92,99,107,105,94,105,106,104,107,113,108,100,99,107,101,115,110,111,113,105,101,128,100,99,101,111,109,100,95,103,117,101,109,103,94,113,105,106,110,105,97,107,104,105,101,84,100,110,113,111,115,95,105,102,99,107,107,83,106,100,111,123,109,115,106,105,102,106,109,110,113,103,103,107,97,109,107,105,98,96,104,101,108,107,106,111,124,108,101,111,106,103,109,112,110,97,100,99,109,104,101,114,117,95,99,95,107,109,109,116,107,100,95,100,106,98,95,111,107,96,99,109,106,114,116,106,104,109,110,102,103,87,96,109,101,108,117,104,121,102,110,103,123,98,112,106,111,110,112,98,112,113,103,105,105,112,110,105,112,102,111,109,110,107,68,102,102,101,106,113,105,114,106,87,106,100,104,114,101,120,113,113,106,89,103,93,107,106,109,104,105,102,110,104,101,112,107,101,117,112,108,103,92,111,104,117,116,127,111,107,97,116,102,106,106,105,115,111,112,97,107,108,94,106,101,99,94,106,114,100,108,104,90,109,94,98,104,110,106,105,103,90,106,104,107,102,101,107,113,96,93,109,100,96,91,115,104,104,107,105,109,94,97,122,98,102,95,96,98,101,105,103,96,110,94,109,115,103,110,97,91,98,101,102,106,114,100,98,103,93,105,117,116,104,96,91,114,107,91,113,103,91,124,119,116,103,102,97,101,112,86,107,86,113,114,112,97,112,101,101,108,108,93,114,103,94,116,110,106,119,103,105,106,113,100,116,104,107,104,98,107,100,106,113,113,100,105,111,101,97,109,107,101,106,114,102,88,117,83,92,109,110,102,108,114,94,96,104,95,104,109,94,108,90,111,101,112,102,95,110,104,103,107,104,107,100,103,118,113,115,106,95,107,110,117,113,111,100,109,102,101,93,100,109,103,102,107,103,87,102,106,113,91,100,97,101,94,91,104,100,109,93,115,98,95,98,109,111,100,101,102,100,109,92,108,105,92,106,90,97, +525.35681,118,102,98,105,85,103,117,90,98,112,96,118,103,113,118,110,94,104,92,97,103,126,115,106,96,111,94,111,102,102,104,116,115,82,107,100,102,93,105,113,102,109,106,96,104,122,97,108,111,97,105,84,94,112,108,108,95,101,108,97,107,104,114,100,105,93,108,108,112,111,102,111,106,116,103,109,99,117,99,101,95,106,112,105,112,93,112,92,107,104,110,96,102,104,96,108,109,105,100,105,90,120,114,103,101,105,102,102,102,102,108,105,117,99,99,117,114,112,103,105,108,104,113,108,97,112,108,80,116,99,92,109,107,118,102,106,103,110,112,96,103,105,100,98,116,103,99,92,107,104,107,111,95,106,82,111,100,98,108,112,96,103,103,101,109,105,68,102,98,97,109,99,99,89,108,125,117,100,118,102,104,109,105,87,109,104,98,96,103,95,114,96,101,109,100,105,99,104,105,105,110,94,114,110,108,108,103,98,100,108,105,102,103,106,105,105,103,111,100,110,116,112,93,89,109,105,109,108,111,108,109,108,99,115,100,105,101,107,118,103,108,110,112,99,111,106,105,107,103,113,99,118,108,119,108,113,105,109,103,106,110,107,93,122,103,110,108,105,109,112,82,105,98,101,120,100,107,110,116,102,106,101,104,115,108,103,98,105,95,102,106,112,105,102,114,128,110,105,115,113,106,130,107,107,108,104,113,104,109,103,106,103,110,100,98,107,109,97,105,101,105,109,105,101,113,99,104,107,114,105,111,104,109,114,105,110,102,107,120,134,104,108,102,119,108,114,98,115,116,96,109,105,110,106,105,107,113,104,113,110,105,99,102,116,100,105,113,107,112,104,107,109,106,99,117,105,121,101,101,115,118,103,79,112,97,110,104,106,107,99,108,108,112,103,104,105,101,111,84,108,106,105,91,108,117,98,99,97,113,100,102,102,139,107,99,104,84,100,96,98,99,98,100,113,99,103,108,96,106,114,103,109,104,113,109,111,104,109,106,106,111,115,108,108,108,104,103,103,124,118,110,112,102,107,114,115,106,102,136,99,104,113,103,108,111,115,105,108,114,99,97,99,105,102,106,97,105,110,113,108,104,106,111,95,110,105,105,102,108,108,102,109,112,111,101,122,91,108,98,103,108,110,97,125,87,114,98,104,113,112,107,106,109,103,110,109,109,97,99,106,101,105,107,92,106,103,116,102,103,106,106,112,108,113,99,101,99,107,109,101,105,104,98,95,115,75,107,110,113,114,102,113,100,104,102,116,98,102,102,103,99,109,98,110,98,113,110,108,94,104,107,100,118,104,122,110,102,102,104,96,96,103,109,94,106,107,104,106,116,99,113,108,95,101,108,111,104,97,110,95,104,106,111,103,101,103,91,108,105,105,106,106,112,108,115,118,107,111,106,115,105,111,110,111,95,107,102,111,99,108,92,116,110,99,95,105,106,87,101,102,104,105,114,98,95,96,109,96,113,108,109,101,108,101,118,83,112,107,106,94,109,119,100,103,109,110,125,98,107,103,108,107,113,101,108,111,109,117,108,95,104,109,109,93,106,107,105,110,118,113,116,110,111,114,108,108,94,111,116,101,104,105,104,114,95,110,112,116,95,113,107,108,103,104,98,110,122,107,121,108,96,106,111,107,103,121,104,109,104,113,113,108,102,69,100,105,112,110,100,106,113,95,117,80,104,108,105,101,103,110,117,103,95,90,109,96,113,105,99,111,103,98,99,113,110,109,107,116,98,101,99,110,107,94,102,103,105,113,99,104,105,109,119,70,106,104,114,107,108,104,111,111,122,126,103,106,97,96,108,113,103,105,100,110,98,104,103,113,103,106,110,101,109,106,112,112,108,105,108,137,107,108,108,101,104,106,102,104,113,96,104,105,103,114,108,106,105,113,102,98,105,113,104,100,97,115,99,100,103,111,102,98,116,100,100,87,112,104,96,118,105,113,106,99,114,102,96,112,76,113,112,114,107,105,97,103,107,99,98,113,104,105,108,94,125,104,113,114,109,94,106,121,109,107,113,117,111,106,104,112,108,110,114,114,102,121,102,100,98,109,105,113,101,101,107,92,102,111,95,101,115,110,106,100,110,107,99,108,111,107,99,106,96,108,109,104,101,101,101,107,97,139,109,99,102,101,102,115,93,125,102,102,111,106,111,110,111,106,98,113,111,99,106,97,101,100,99,92,101,105,111,96,121,111,98,106,101,108,105,111,108,114,97,104,117,103,104,104,105,103,104,117,111,108,99,100,88,106,103,120,95,106,109,98,106,106,109,95,104,105,98,109,105,123,97,99,97,113,106,106,122,108,113,97,104,100,103,100,107,100,111,94,95,98,118,105,107,112,110,105,102,105,103,106,104,96,91,116,96,91,109,100,109,105,114,106,105,102,100,111,98,108,105,104,102,99,103,103,114,109,98,109,109,100,106,114,106,101,97,92,108,108,109,104,112,105,108,97,113,103,125,109,103,95,102,89,96,115,111,102,101,108,106,104,99,90,105,84,120,94,107,107,104,103,101,106,110,106,105,110,109,109,98,95,101,115,112,103,108,109,111,99,117,114,107,102,106,101,109,95,109,103,114,106,99,109,114,105,98,105,113,100,109,100,99,100,109,121,97,101,93,102,107,84,91,98,81,100,97,96,101,106,100,120,111,102,112,94,106,98,108,102,113,102,99,103,107,105,101,106,99,112,96,118,98,109,108,118,101,104,101,103,101,118,107,99,94,75,111,99,120,113,104,95,102,99,107,117,116,102,118,101,109,112,113,99,102,100,105,100,99,100,111,111,100,116,115,113,112,109,111,114,119,108,94,107,131,118,109,116,102,105,86,102,103,109,94,102,117,122,107,119,101,98,113,104,108,104,108,105,98,104,108,108,106,101,112,98,106,113,106,121,105,112,91,106,103,107,102,110,113,111,106,105,109,106,115,106,110,98,96,115,117,106,101,98,100,114,107,110,112,107,100,92,99,113,108,94,110,106,109,97,105,109,112,103,103,103,106,98,102,99,103,119,104,107,105,102,94,99,95,108,103,103,103,108,109,96,100,121,95,105,115,99,102,94,105,103,109,90,115,104,103,96,119,113,109,105,128,106,103,111,109,112,69,106,83,112,95,113,100,98,102,106,103,116,109,116,109,90,114,99,108,106,117,107,108,95,111,109,120,128,117,94,95,112,102,103,109,106,110,116,100,103,116,105,102,121,102,109,112,105,102,74,98,113,108,110,120,96,104,103,108,99,108,108,103,113,101,96,107,108,104,101,111,117,102,113,110,115,107,107,97,105,113,110,123,102,104,116,113,107,98,102,119,104,102,101,106,95,106,93,92,95,78,101,106,117,93,101,104,99,115,112,99,111,99,113,104,103,105,93,106,116,100,114,111,105,106,104,108,104,99,107,107,102,105,101,106,93,89,97,113,104,109,106,104,116,117,107,107,103,102,102,110,121,114,105,109,108,113,124,113,93,106,106,99,68,101,91,117,96,109,115,106,106,113,96,107,110,109,103,107,112,105,96,126,108,98,105,84,102,100,101,104,113,118,101,103,123,106,102,99,106,108,101,110,100,110,98,95,112,111,110,112,98,92,109,115,103,99,105,100,102,96,117,105,110,99,115,102,107,115,125,95,109,98,95,116,105,107,106,102,101,101,105,113,100,107,109,111,111,100,116,111,104,109,103,104,108,77,116,115,111,107,101,102,105,110,99,105,105,109,106,99,102,106,106,99,99,95,105,94,100,103,100,100,97,106,99,113,100,105,103,131,109,101,106,103,93,102,102,107,109,114,96,138,104,96,107,99,102,103,105,103,116,106,105,112,116,98,116,112,97,104,103,111,72,98,96,106,111,108,101,112,109,119,126,102,113,107,110,86,101,92,106,100,95,108,98,105,109,117,107,110,108,115,111,102,100,94,100,111,93,98,104,96,117,101,114,95,109,114,109,105,108,100,103,108,104,102,113,113,108,100,102,94,110,111,102,99,125,102,106,91,106,106,104,104,113,112,95,116,104,104,100,115,104,109,104,108,109,108,108,109,110,106,108,106,99,112,100,107,109,108,101,96,102,113,101,102,98,105,113,102,111,108,104,105,117,109,102,106,105,102,110,104,111,111,113,90,105,102,102,98,105,100,112,104,102,106,107,104,100,84,107,118,102,98,103,110,98,119,122,101,94,105,104,108,125,115,105,103,104,104,100,102,88,109,100,99,94,99,96,102,103,104,103,89,94,108,103,104,103,107,124,107,105,100,100,108,102,127,91,101,106,104,99,90,101,89,109,112,107,113,104,102,111,112,115,109,116,108,105,103,102,106,107,99,105,108,104,117,103,99,92,108,108,110,109,107,107,102,104,99,98,102,116,98,99,100,99,121,108,100,109,107,100,80,89,99,105,100,113,110,115,105,109,103,117,89,116,98,103,104,109,101,105,117,110,98,106,113,85,108,115,92,109,109,113,101,100,110,105,98,97,103,117,111,122,109,98,101,102,116,103,111,109,96,102,96,100,98,107,103,107,109,117,125,94,98,107,96,106,90,109,91,110,107,116,114,108,98,113,121,109,95,110,100,109,98,111,108,97,123,95,112,105,98,112,100,113,98,113,110,116,112,116,95,102,125,102,135,102,105,102,113,101,112,104,99,120,110,99,103,103,97,103,97,107,101,105,113,110,75,85,101,108,97,99,103,109,112,106,102,116,108,112,79,98,104,93,83,113,121,91,109,97,102,121,94,86,93,104,118,108,104,82,99,99,100,117,111,110,98,106,95,96,116,98,94,100,107,88,101,101,117,112,97,96,114,109,122,91,104,102,109,107,102,108,103,105,74,98,101,119,94,108,110,108,102,96,95,102,113,97,100,92,104,83,112,104,110,100,109,110,89,116,102,105, +525.49756,79,111,103,100,97,111,105,97,96,102,109,86,109,107,102,90,99,102,95,94,125,93,93,117,116,91,100,99,101,96,103,93,103,99,95,98,94,114,93,102,98,94,94,79,106,100,99,102,94,104,109,108,97,137,105,92,105,104,110,100,109,84,106,113,102,113,103,106,105,98,107,100,100,105,92,108,104,98,99,104,117,122,90,114,99,95,99,110,94,101,98,110,77,105,104,99,104,86,101,103,91,90,104,107,104,117,101,104,96,85,106,95,114,90,109,98,127,112,103,101,104,114,92,115,117,112,108,109,112,101,97,100,101,99,125,99,106,107,105,107,111,103,94,104,102,103,109,103,109,100,104,111,102,90,93,101,98,106,109,109,88,92,106,122,92,106,108,91,122,102,101,120,100,103,120,111,112,98,114,92,105,99,98,105,96,98,100,101,103,106,95,102,104,103,105,106,114,124,96,113,94,104,108,98,91,109,102,98,118,106,102,106,110,113,96,115,117,103,95,106,99,116,115,94,99,98,108,104,103,113,96,94,103,91,98,103,89,113,112,107,108,107,109,103,73,98,94,108,116,108,102,103,106,113,114,109,101,107,94,108,90,100,109,114,103,106,102,104,95,109,98,106,113,100,104,105,104,117,109,103,114,109,101,119,101,109,103,111,106,96,104,99,109,120,107,92,110,108,109,114,114,103,110,113,113,110,106,97,108,135,80,111,97,98,101,107,93,99,92,104,104,92,118,100,120,87,97,103,120,119,100,103,102,97,120,107,109,115,94,100,99,98,97,99,99,106,105,113,106,111,96,91,105,102,107,103,128,106,104,104,91,103,97,95,106,103,100,110,103,108,105,101,100,101,110,100,113,102,95,112,109,109,107,114,103,92,96,98,100,103,107,101,93,113,105,113,104,109,97,108,109,107,100,102,106,102,113,109,117,95,108,106,110,101,105,100,98,98,108,91,117,92,108,107,105,98,104,114,110,107,88,113,111,105,113,98,99,114,102,103,114,111,100,88,103,103,110,92,97,88,99,99,102,100,107,106,88,84,116,101,104,120,112,108,110,99,113,105,109,107,111,116,93,96,95,92,101,125,104,111,110,104,112,105,99,111,96,90,103,99,107,98,112,91,102,91,103,101,102,103,121,103,103,108,103,98,106,114,95,120,117,103,95,110,99,104,109,107,95,98,108,136,94,103,109,102,79,101,111,109,99,102,119,101,104,116,97,105,100,102,97,101,97,85,107,100,103,99,105,87,112,104,101,103,112,108,117,110,107,113,84,103,107,89,109,118,103,105,102,104,118,99,104,114,108,108,102,99,109,104,102,105,104,105,92,113,113,106,106,109,101,111,101,93,120,103,92,104,105,111,104,117,93,97,114,103,91,116,103,96,106,107,99,108,118,102,106,103,105,83,115,109,94,109,84,95,100,92,107,96,99,102,107,102,96,105,105,104,117,108,110,111,108,109,102,106,100,106,110,106,98,108,113,102,96,98,96,106,103,98,117,115,106,107,101,105,100,97,102,98,105,104,109,104,104,106,112,98,105,109,98,109,112,104,86,102,118,108,112,109,121,100,95,116,100,101,104,108,110,106,98,109,97,111,103,112,95,102,88,108,102,102,110,111,117,116,107,108,109,111,105,102,104,107,115,94,88,106,101,89,110,101,111,100,105,105,107,105,118,105,104,97,110,104,107,94,110,100,110,107,96,110,97,101,103,116,107,100,115,91,115,93,106,100,106,98,107,103,103,110,90,108,101,109,102,109,106,101,105,105,115,99,109,106,113,107,77,107,109,96,125,103,97,107,103,99,104,104,95,109,101,106,104,108,108,110,107,104,108,100,103,93,133,113,114,89,104,110,102,106,95,121,113,95,113,105,105,100,105,116,108,92,99,116,87,95,103,102,109,98,105,107,122,99,107,95,98,102,100,91,109,98,95,106,100,108,99,110,111,109,115,100,105,115,106,112,96,109,108,101,109,126,103,129,93,114,104,100,105,101,109,111,106,106,105,101,115,111,107,105,107,108,86,94,109,96,106,104,101,107,110,109,103,100,112,102,91,102,97,112,110,106,112,94,102,78,101,95,113,114,99,108,102,111,109,115,96,109,88,107,108,100,123,111,98,98,98,106,104,103,113,102,101,113,105,103,103,111,108,109,98,101,104,105,106,115,103,115,91,116,117,96,108,101,114,112,102,108,97,90,111,115,106,94,102,115,114,92,108,114,101,95,111,97,96,98,98,107,96,109,105,96,99,100,90,100,89,99,104,102,111,95,96,94,113,102,109,105,103,98,101,102,117,104,105,112,96,98,99,98,104,126,107,107,106,100,117,107,95,112,103,110,101,108,99,105,110,110,110,116,108,113,115,103,108,90,102,95,95,93,113,90,98,101,104,90,106,106,114,100,104,102,99,103,104,107,106,106,116,96,101,111,108,103,98,105,106,111,102,64,79,96,106,101,101,93,96,98,106,104,103,100,102,90,98,98,103,101,104,101,103,108,113,94,101,100,99,97,99,105,102,109,109,97,108,93,103,102,92,95,99,101,101,94,116,104,105,110,100,99,109,110,105,91,113,97,88,99,101,87,95,108,116,111,101,110,103,97,95,102,103,111,115,104,103,94,102,109,111,104,94,102,104,105,101,111,102,108,109,102,95,98,100,109,105,113,101,98,99,107,103,107,99,114,109,110,109,110,107,104,112,115,105,98,98,97,102,99,108,124,112,108,103,98,93,108,98,113,116,91,117,105,109,88,95,110,105,103,84,95,110,114,106,102,81,100,99,107,117,96,103,102,117,111,105,96,97,107,116,70,105,100,98,94,93,103,111,103,94,93,99,94,125,104,106,113,91,108,109,110,104,91,109,109,109,116,108,99,115,99,98,105,104,112,124,105,94,92,98,109,99,97,103,107,95,100,93,101,101,109,110,109,85,103,107,101,108,101,110,104,106,104,96,110,96,95,112,112,103,96,107,101,106,106,114,96,108,110,106,105,99,99,107,109,96,104,105,95,101,116,106,101,100,104,98,101,96,86,99,106,99,114,129,91,101,88,108,102,122,77,107,108,121,102,100,98,110,103,105,98,95,113,104,98,110,94,101,94,95,107,113,111,95,105,105,84,104,109,104,101,108,100,111,95,126,111,104,92,90,87,93,101,110,107,111,102,98,99,106,98,106,97,103,117,105,106,108,116,99,94,105,103,102,103,110,100,95,95,90,117,102,117,122,101,98,117,97,107,107,111,100,107,99,109,101,103,108,105,104,103,102,93,102,109,120,93,106,115,107,94,87,111,97,96,99,104,105,99,92,97,122,96,103,117,108,100,83,89,91,80,103,97,104,91,104,108,99,91,110,111,93,104,107,83,111,114,107,105,106,109,102,92,111,97,104,90,101,110,99,102,101,116,106,102,114,111,106,111,93,106,94,103,104,101,105,108,101,98,75,117,99,94,106,92,100,92,104,106,92,94,91,95,105,99,98,98,99,71,109,76,106,110,105,102,119,80,106,127,100,108,103,104,108,128,94,99,109,123,104,102,103,96,107,106,109,103,97,98,105,103,100,123,104,103,109,95,107,98,106,97,98,98,94,111,97,91,94,91,105,102,97,102,109,109,84,106,102,97,97,108,106,105,111,123,105,91,109,107,108,114,98,92,99,100,96,110,112,108,101,88,99,115,95,81,97,115,103,107,102,92,100,107,106,103,112,103,102,102,106,107,106,99,108,107,101,104,107,103,95,112,92,94,98,109,98,95,101,111,112,94,105,103,106,102,102,105,105,95,106,102,102,102,102,115,112,92,118,102,93,75,105,104,105,103,91,111,104,94,107,98,104,103,110,99,95,106,106,85,78,98,97,99,97,105,100,95,113,100,104,99,98,106,87,94,108,95,91,104,90,105,90,97,101,105,87,92,107,99,108,102,88,90,112,108,107,117,111,89,97,107,96,100,98,107,96,104,108,87,103,96,101,101,101,105,105,105,100,104,88,108,107,100,101,101,99,100,95,98,113,107,108,92,101,111,96,100,108,91,117,97,117,107,100,105,110,100,107,107,107,103,94,97,104,100,93,101,101,101,102,86,105,108,106,98,110,108,100,96,99,101,113,93,104,110,110,112,105,104,71,95,93,88,98,96,100,108,104,96,97,107,102,99,103,94,107,106,104,104,105,98,108,109,99,95,94,90,94,101,117,105,109,110,102,101,119,103,106,90,101,98,103,108,109,109,111,92,104,99,110,93,100,101,98,93,101,99,96,105,100,110,101,100,103,101,103,98,94,115,98,109,103,92,94,115,95,105,99,80,104,102,120,101,114,102,104,95,105,99,100,99,105,95,92,109,99,79,112,108,106,95,76,93,113,101,106,102,104,117,101,104,91,92,109,103,95,101,102,113,114,92,96,100,110,113,96,103,100,103,92,106,110,99,109,93,98,109,94,100,105,108,101,112,99,105,86,98,100,101,109,98,112,97,117,105,100,133,99,102,97,104,101,91,100,104,98,99,95,102,117,88,100,97,102,94,95,109,105,112,103,96,95,113,92,90,106,99,109,98,104,112,104,94,88,95,98,96,111,105,91,108,93,107,111,110,99,107,99,81,100,107,101,100,110,109,102,96,107,111,104,97,99,100,102,99,104,95,99,87,107,94,85,104,99,108,94,96,114,96,98,102,105,103,109,100,102,86,100,98,116,96,105,111,108,98,103,105,102,108,95,101,101,102,99,133,100,103,132,102,103,95,105,105,103,94,109,104,92,97,95,102,103,105,101,113,113,94,115,104,96,101,109,99,120,83,101,105,112,109,108,98,112,104,86,100,98,98,101,108,93,83,98,109,95,101,99,107,109,114,105,109,100,100,97,113,107,91,85,100,98,93,114,80,92,101,99,81,105,106,94,100, +525.63831,110,109,115,92,93,95,104,92,94,109,101,113,100,100,99,98,108,113,99,109,99,105,95,103,106,78,104,101,107,106,107,93,92,102,110,95,107,91,99,108,99,108,95,113,103,96,120,96,106,111,105,101,116,113,101,101,103,108,99,91,92,99,112,97,96,103,99,81,97,96,106,114,106,103,98,105,88,100,102,102,109,105,101,107,109,107,101,105,105,103,114,102,113,111,104,102,101,102,98,96,103,105,106,100,125,105,98,106,100,83,99,99,106,105,102,101,83,109,125,112,108,109,104,122,109,140,95,98,100,110,105,105,105,92,105,98,98,113,95,95,107,103,108,114,101,95,106,100,110,117,100,111,120,100,110,112,105,99,94,94,107,97,109,111,100,99,108,104,107,105,83,106,106,91,111,101,104,101,104,104,90,102,106,107,104,105,101,92,100,100,114,108,104,102,94,107,104,103,86,113,90,101,104,110,96,105,105,109,107,93,94,94,107,107,100,106,101,113,96,95,103,112,100,94,99,104,97,105,106,105,110,105,110,127,98,114,105,111,109,104,104,97,104,102,102,108,109,108,100,101,107,104,95,105,105,104,95,106,102,110,95,98,106,103,95,118,119,108,100,104,104,101,112,112,101,108,101,105,107,97,100,101,104,100,101,111,106,108,106,116,104,101,113,119,101,103,117,102,101,82,82,103,97,106,103,114,114,122,105,106,107,106,111,112,94,95,108,110,105,91,102,96,114,102,107,116,69,106,117,104,112,112,100,116,109,92,102,103,98,113,106,100,104,103,104,98,97,100,112,99,105,98,112,108,94,105,118,109,103,105,101,96,95,104,90,109,105,108,109,102,104,114,104,99,106,113,101,100,93,108,101,110,109,107,103,87,116,108,110,107,110,106,100,113,99,97,107,108,113,104,107,113,101,103,106,99,102,112,103,95,100,110,99,104,108,113,96,105,114,95,99,109,92,104,99,95,106,102,96,114,104,100,107,104,109,100,105,109,99,106,106,105,100,114,104,109,97,103,105,108,97,97,102,106,112,94,103,96,103,103,99,104,115,110,116,97,104,104,107,103,113,105,112,107,96,95,100,103,110,107,112,103,113,106,116,104,105,105,110,106,105,100,103,109,103,105,100,103,107,99,99,105,117,118,102,113,97,95,98,101,103,112,94,90,108,92,101,94,116,97,99,105,108,112,104,105,109,102,99,105,100,95,103,104,106,106,105,104,103,114,107,102,116,114,115,99,111,109,118,105,102,113,108,103,99,116,107,93,103,120,108,107,106,92,107,81,105,102,121,104,101,100,105,110,91,99,114,104,108,104,108,109,112,72,106,91,109,105,115,110,110,83,106,108,112,104,101,120,104,111,117,99,125,108,99,104,101,113,101,94,118,112,106,108,112,95,95,105,109,109,99,101,104,104,104,111,103,98,95,124,101,98,102,107,110,112,104,96,102,101,106,125,130,102,111,125,101,108,110,102,97,96,104,104,99,111,104,105,94,105,104,108,98,118,106,106,110,102,129,103,99,98,102,109,104,106,111,106,106,93,107,104,102,71,97,98,97,99,102,96,116,113,109,121,108,99,113,103,114,115,91,109,106,93,108,109,109,110,103,136,108,114,107,104,119,83,109,117,115,101,103,101,114,116,113,100,115,109,100,113,119,102,78,109,104,99,113,97,100,106,101,105,102,99,105,111,103,105,108,110,97,103,108,95,99,106,98,113,112,103,111,119,114,115,102,100,97,108,102,107,115,106,118,103,104,100,106,114,111,99,108,104,107,105,100,103,104,113,107,97,107,97,103,108,109,110,104,106,104,108,105,102,92,114,117,112,100,113,100,99,100,101,113,106,97,117,108,111,111,115,100,101,110,116,96,110,94,102,115,104,113,112,110,100,113,107,100,105,116,104,104,100,105,95,99,100,111,104,114,107,93,95,102,104,99,105,108,101,114,100,102,107,102,105,97,109,105,111,112,106,106,114,112,98,119,100,115,97,105,98,104,112,113,113,102,86,102,109,105,110,104,109,108,113,116,110,103,101,100,112,102,102,106,98,106,105,109,111,90,104,104,106,108,106,102,118,96,109,104,97,109,109,111,110,103,105,103,109,109,103,104,114,110,109,100,109,90,104,107,104,88,120,98,103,103,105,103,112,123,109,105,105,109,93,106,104,102,100,99,100,113,116,103,91,113,99,102,112,107,104,110,114,119,102,98,122,104,112,99,95,94,107,98,106,102,103,101,108,95,105,99,106,100,113,103,104,107,95,101,103,119,92,123,101,117,96,106,107,94,101,94,97,107,97,104,113,104,99,93,104,109,112,102,110,115,103,94,105,91,109,109,102,100,107,109,88,106,113,97,85,105,120,98,110,107,88,105,114,110,106,110,101,106,111,101,93,107,106,117,96,95,107,102,111,95,100,120,99,110,105,100,101,104,107,113,104,88,87,110,94,96,99,96,105,106,113,116,109,116,108,89,100,110,91,100,83,109,108,108,120,109,86,121,113,92,107,109,102,103,100,98,110,112,99,108,111,113,112,88,117,98,95,115,109,108,111,115,108,103,94,105,113,112,106,109,111,101,116,105,108,102,107,99,113,106,95,108,98,116,119,117,103,120,109,103,101,101,107,110,95,92,99,99,100,113,102,113,98,114,106,109,105,103,106,109,113,103,106,103,103,118,94,102,106,109,103,104,118,104,110,111,99,102,98,113,104,114,102,106,107,105,106,113,116,98,108,109,117,87,116,108,103,98,114,109,103,95,102,112,104,109,110,100,103,95,109,106,114,104,96,107,101,110,114,109,107,103,107,96,107,103,97,109,101,105,106,108,110,112,104,88,110,106,101,114,95,107,109,110,101,109,98,105,114,108,100,104,109,103,94,108,105,112,117,102,105,103,107,107,102,115,117,102,106,107,108,105,110,97,98,107,97,105,102,104,111,109,103,115,107,106,121,103,101,101,99,109,101,111,107,93,111,104,100,102,111,114,101,110,109,117,97,107,119,113,110,98,104,99,113,114,115,100,98,102,102,120,106,112,109,120,105,98,99,108,98,91,100,108,101,106,106,117,116,98,121,104,108,106,98,117,109,114,110,124,103,114,88,109,103,100,98,120,99,117,110,100,108,93,87,112,98,112,90,101,113,102,95,113,103,98,102,104,117,100,106,113,113,110,106,106,104,101,115,105,111,113,116,112,100,107,108,103,119,105,96,112,98,104,109,106,104,116,95,102,102,100,98,117,103,114,104,107,83,111,112,93,106,110,95,108,125,90,101,103,102,106,100,106,104,118,102,109,107,108,105,108,110,98,107,102,107,110,122,103,105,100,103,109,92,104,104,102,107,109,101,93,111,106,100,106,91,105,107,107,106,110,106,114,104,115,110,101,111,108,111,115,113,112,102,102,110,104,116,89,106,105,116,109,105,105,102,107,108,108,108,85,109,112,107,107,99,109,119,98,111,98,113,105,103,108,96,107,96,93,109,103,108,113,98,99,116,109,81,109,104,112,110,92,113,111,102,82,103,104,101,108,112,109,110,105,112,123,107,112,113,94,109,106,106,106,105,102,112,106,115,102,102,107,104,107,109,102,112,118,109,96,102,97,95,98,98,114,96,111,94,107,113,103,116,96,99,104,109,105,99,121,124,105,107,113,106,98,101,102,109,103,108,109,104,114,110,110,105,113,105,112,108,118,103,124,103,93,111,106,116,114,120,100,99,114,108,114,103,106,91,102,116,108,113,116,111,113,101,96,91,95,95,117,96,98,105,108,101,104,108,111,96,116,112,104,110,97,103,102,110,111,113,102,105,108,101,99,119,105,89,101,100,91,118,98,114,99,105,89,113,101,104,101,103,97,110,108,107,111,111,111,83,99,103,90,97,92,107,100,102,101,107,98,104,103,107,110,103,110,126,117,106,112,106,113,95,126,112,99,104,109,99,105,109,110,104,107,110,99,119,105,112,111,95,103,110,105,102,106,102,116,112,109,108,88,101,117,114,119,105,105,111,93,105,105,107,101,103,103,101,123,104,113,106,109,91,114,104,115,116,111,91,119,104,106,104,107,95,106,104,113,112,87,96,106,80,113,109,112,125,104,121,107,112,109,100,117,113,107,121,116,117,102,96,113,70,104,100,115,103,107,111,107,106,123,104,111,105,112,99,113,111,102,99,104,107,107,111,89,115,97,112,102,111,117,101,99,110,106,97,109,111,112,101,111,102,97,93,98,106,122,105,110,102,98,103,112,109,102,107,105,100,104,118,104,103,108,100,92,70,79,116,98,120,102,75,95,111,116,77,113,98,94,110,100,108,109,114,104,102,112,98,109,108,102,108,100,102,97,110,112,109,103,105,104,113,121,107,100,116,107,107,99,107,111,102,111,103,108,100,119,107,102,120,93,96,99,116,105,87,98,106,108,97,113,102,98,102,107,108,96,97,109,108,106,115,106,110,90,98,102,107,107,115,104,107,103,112,86,106,112,99,99,99,90,101,94,115,106,109,104,104,107,106,108,119,104,100,99,103,96,107,104,113,102,107,110,92,98,103,94,113,101,113,108,117,102,98,94,104,111,109,102,102,102,103,104,113,97,110,107,107,105,108,117,110,116,108,102,105,115,110,101,113,112,91,102,107,115,109,98,106,117,104,106,94,108,102,101,109,84,98,106,104,104,105,111,95,103,99,113,103,103,113,112,108,124,107,108,97,103,112,116,91,100,124,94,108,106,96,74,105,120,99,102,99,113,103,107,102,101,103,112,118,94,113,106,125,84,102,111,111,102,108,108,92,132,97,102,93,105,116,109,105,106,96,91,103,116,98,105,102,107,114,109,119,100,111,101,106,91,99,94,95,122,96,111,101,106,105,106,108,94,111,103,107,106,104,98,112,104,108,104,92, +525.77905,105,125,99,92,99,98,93,99,101,104,88,94,105,103,97,102,109,108,104,100,100,94,101,93,97,108,102,95,107,94,104,99,99,85,109,101,99,103,98,96,97,109,97,101,102,120,110,116,98,103,87,99,102,123,100,114,107,92,108,93,101,103,93,98,114,123,118,89,100,105,105,94,101,99,98,92,107,99,110,107,109,102,95,101,112,95,103,101,95,104,101,114,100,109,101,98,108,99,113,84,64,96,100,86,97,103,95,102,99,99,96,102,114,93,107,103,93,96,105,89,118,90,106,106,98,95,114,98,97,116,104,115,97,103,109,116,103,98,111,105,99,116,99,104,100,98,101,94,97,94,93,101,111,98,98,103,102,99,95,95,91,96,102,109,97,108,112,86,109,97,104,116,103,105,106,103,96,100,84,110,108,95,103,100,111,96,105,91,104,92,99,99,102,103,110,100,102,100,97,103,97,115,91,103,105,103,107,107,98,105,90,104,103,98,101,105,99,109,113,105,110,99,96,111,92,113,109,102,120,102,105,92,109,100,106,105,114,93,102,94,98,114,112,103,102,101,97,105,93,114,110,111,93,106,106,106,97,106,95,98,100,117,88,104,100,98,117,106,107,112,90,101,111,97,90,114,91,101,94,100,111,104,100,124,110,106,86,106,108,94,111,106,102,116,107,101,102,120,91,99,116,94,93,100,94,105,118,115,103,109,90,90,107,101,105,97,94,111,100,115,97,103,130,102,105,106,102,96,96,106,102,94,107,99,110,107,109,101,98,101,104,94,87,93,96,107,98,107,105,95,112,98,108,111,115,99,110,114,101,110,110,100,99,88,100,106,108,105,110,111,104,96,113,93,122,103,113,112,90,116,102,98,76,102,106,114,103,95,96,99,109,100,95,104,105,101,107,109,92,109,105,96,100,104,90,115,105,112,109,98,104,107,88,109,103,102,101,97,101,101,104,90,97,97,111,100,94,93,104,101,88,104,106,101,100,104,98,111,101,97,104,98,111,103,102,102,100,103,103,104,101,90,103,108,88,100,93,113,104,107,91,97,112,112,111,100,125,111,102,113,111,112,102,96,96,102,97,107,110,110,95,123,106,114,99,112,92,98,105,101,98,100,96,101,113,86,109,107,111,104,115,96,109,107,98,100,103,109,123,104,103,72,93,110,97,99,103,100,110,104,75,113,109,113,99,90,106,110,109,98,108,113,104,100,96,107,101,116,112,95,100,99,95,110,106,74,103,95,102,105,91,102,94,101,94,101,110,111,110,103,101,101,108,112,106,105,104,101,90,94,100,107,89,97,115,96,95,109,100,104,109,98,104,82,104,93,96,94,97,99,103,102,109,100,113,105,104,101,102,97,100,105,103,103,100,97,103,100,113,107,97,103,105,104,103,95,95,104,94,104,98,115,96,101,98,101,97,94,99,107,87,98,87,102,98,98,99,101,106,103,108,98,104,101,103,91,99,103,106,100,103,111,92,98,105,106,72,108,99,116,101,123,102,105,101,104,113,94,106,113,116,101,100,106,101,101,103,103,89,112,95,99,109,94,106,104,101,107,103,98,92,94,99,116,105,101,102,106,95,101,107,102,96,104,110,108,97,104,101,105,113,104,97,99,108,92,81,97,90,97,120,98,96,100,90,116,111,116,111,104,107,110,94,104,102,94,109,103,106,101,110,99,113,99,95,93,101,101,93,105,113,100,91,93,101,101,100,100,104,100,108,99,93,108,101,100,78,93,94,102,83,102,106,97,110,77,98,98,113,105,107,109,107,102,102,101,106,92,91,102,99,125,107,108,102,113,92,103,98,105,104,102,100,98,108,103,115,97,91,110,109,99,92,127,111,104,109,103,101,113,103,106,98,103,113,112,91,102,99,101,109,103,114,98,103,108,106,104,111,100,117,103,102,108,91,116,86,98,114,87,110,104,90,94,91,104,100,89,91,96,108,94,94,96,100,107,96,101,105,107,99,116,107,120,105,92,113,96,107,98,99,104,100,109,105,96,95,115,102,117,116,112,121,97,107,105,114,111,96,117,107,113,108,104,108,102,104,101,105,101,101,117,110,107,108,104,101,104,105,107,110,97,100,105,108,94,97,106,123,109,99,93,108,110,91,103,74,94,95,104,108,100,105,101,93,104,96,101,98,107,107,106,98,99,105,110,113,109,87,99,99,106,88,97,106,103,100,82,111,101,113,109,101,104,108,105,106,82,116,98,98,109,97,97,85,118,95,95,105,103,89,98,102,112,100,101,105,93,109,100,106,108,114,106,110,77,109,109,106,104,93,94,104,94,106,106,101,96,112,95,110,110,107,103,102,107,96,87,91,112,105,98,109,107,113,106,107,93,107,101,102,102,96,106,105,107,107,97,109,109,100,103,94,104,103,120,95,104,95,102,98,112,113,104,110,110,104,103,110,102,104,104,98,95,124,99,101,108,99,98,109,101,101,105,114,110,102,99,106,111,110,107,106,103,87,103,102,94,99,102,112,104,116,116,109,107,101,108,110,99,89,110,112,109,111,112,106,99,95,102,105,115,103,109,91,108,98,95,114,135,98,107,101,105,124,102,92,99,106,99,109,96,101,109,98,104,116,109,120,98,112,95,113,96,96,104,99,106,112,110,105,98,101,100,108,100,91,82,108,103,98,124,102,106,97,119,90,85,98,103,103,113,101,96,83,109,104,103,92,112,97,86,113,110,106,99,96,117,108,106,104,109,105,101,100,109,109,110,112,108,111,106,114,99,103,111,120,114,128,95,104,111,75,107,98,102,96,103,96,99,104,112,102,99,114,99,114,104,100,119,121,90,94,105,104,127,105,103,106,110,124,102,108,110,113,121,109,71,110,110,120,106,105,111,107,102,97,115,105,112,105,98,98,117,102,96,92,103,106,103,109,99,98,102,108,111,102,110,108,112,103,97,83,98,111,108,95,109,97,106,99,100,84,112,105,107,100,112,104,110,110,99,105,100,117,102,99,98,94,106,92,109,108,106,126,99,119,109,103,95,100,93,103,104,102,106,107,117,107,112,104,99,110,109,98,104,103,101,98,101,113,112,107,103,102,95,109,112,113,104,114,110,125,98,106,105,111,112,111,101,113,119,105,109,108,93,111,110,106,102,106,105,102,116,110,98,107,100,97,107,92,98,111,101,116,114,104,101,110,94,112,85,100,114,100,108,101,106,119,113,86,115,94,101,99,97,103,101,117,96,105,97,103,104,108,106,102,108,111,102,106,107,103,121,107,104,98,111,115,101,111,106,110,110,97,103,109,101,121,113,109,104,117,112,116,107,96,123,99,94,104,106,98,105,105,113,98,92,78,97,112,111,113,99,101,95,97,111,78,109,94,104,102,103,95,113,105,98,98,109,99,118,102,111,101,109,96,104,101,103,93,110,118,106,99,83,106,100,103,94,95,91,96,104,108,105,103,110,97,101,109,117,100,109,103,103,110,101,104,102,117,109,92,103,108,102,103,96,99,107,117,102,97,109,98,103,101,117,103,95,120,106,102,105,103,112,115,102,97,113,90,100,100,103,107,115,112,105,112,116,110,104,105,106,117,103,105,110,100,93,95,92,79,111,114,104,102,106,102,105,120,108,108,107,113,99,119,100,109,106,109,105,103,104,106,105,106,91,106,120,97,87,96,112,96,100,100,105,111,95,111,102,106,107,101,109,102,104,110,117,102,96,107,112,104,105,98,115,106,92,109,102,104,84,113,101,105,106,104,113,104,105,104,113,112,109,111,101,114,101,101,89,95,99,106,102,105,103,111,102,93,114,105,105,108,108,102,96,111,98,106,114,109,103,102,100,100,105,101,113,103,111,102,105,109,100,102,106,109,96,112,111,99,111,107,112,99,91,113,116,103,105,100,94,106,102,96,102,99,101,103,107,124,120,109,118,106,109,112,120,81,115,106,108,96,99,108,113,94,107,99,124,103,106,102,105,105,118,104,98,98,114,100,103,116,103,99,89,105,106,109,104,88,113,109,96,101,101,111,110,115,100,91,94,90,110,111,105,110,110,103,99,105,98,84,108,112,96,110,91,106,112,104,111,108,105,103,99,117,103,99,117,113,118,105,109,101,103,108,102,107,117,117,102,105,119,101,98,98,99,105,102,111,113,116,109,108,108,106,111,107,99,101,99,108,99,116,106,107,99,105,105,109,99,105,101,115,118,105,99,104,101,109,132,104,107,104,108,109,114,110,100,95,102,116,98,117,105,104,109,101,91,115,110,94,101,99,100,95,106,108,96,110,112,99,77,106,105,100,108,103,107,104,106,109,112,104,98,99,105,109,103,118,110,115,98,109,103,99,111,120,96,102,113,112,94,108,120,106,121,101,109,112,110,103,121,110,110,106,105,106,75,103,106,98,108,108,98,102,87,99,111,107,107,103,109,107,105,110,104,109,102,109,98,112,100,104,96,106,99,99,108,103,86,103,104,108,103,113,108,97,87,107,107,101,106,98,105,100,109,98,103,92,117,111,129,105,99,113,92,95,106,105,102,98,105,99,116,116,100,99,120,116,117,98,104,98,100,120,111,90,112,108,108,115,100,95,114,91,99,79,92,103,95,94,105,103,109,94,107,102,108,104,97,105,118,104,113,97,109,104,101,116,97,106,116,105,101,105,104,105,95,107,104,97,96,98,114,104,98,106,101,106,91,111,103,114,92,99,107,117,110,104,102,117,99,99,99,92,108,111,94,97,116,91,102,107,95,124,95,109,100,122,117,109,94,106,103,118,104,97,94,105,139,109,112,103,90,109,98,118,106,112,106,110,108,100,106,95,102,105,89,103,100,101,100,100,101,106,107,109,111,107,108,108,109,95,98,110,109,103,99,103,98,104,97,93,105,101,91,109,92,98,105,108,104,101,87,123,90, +525.9198,95,100,109,103,103,109,97,106,103,101,103,109,114,102,121,102,110,100,91,100,112,97,104,112,91,114,97,112,96,106,101,100,90,113,99,104,97,109,108,93,101,99,97,101,101,101,97,119,106,97,108,111,99,99,109,108,105,103,107,104,87,112,98,93,95,111,99,104,92,111,110,98,101,100,94,109,94,98,103,79,125,104,112,100,100,96,107,112,104,100,137,106,108,107,98,78,105,107,93,95,99,104,106,105,96,104,103,106,102,93,96,107,98,112,93,92,92,108,108,90,99,92,102,117,97,107,111,106,114,106,100,96,99,86,105,106,67,105,101,101,105,103,110,98,101,107,111,101,89,109,102,101,114,91,105,66,84,97,99,113,101,96,101,105,115,108,117,93,101,95,107,98,93,113,99,115,110,104,111,79,86,111,113,99,95,100,108,101,99,99,99,102,95,110,106,108,115,100,99,103,111,95,98,105,102,116,95,115,107,96,106,98,105,99,106,95,107,108,110,95,108,110,101,105,92,102,99,108,90,112,91,112,117,108,98,101,100,112,116,117,109,108,121,99,94,102,103,103,110,100,107,114,105,96,108,106,100,102,101,90,88,98,102,107,104,102,108,95,111,102,83,100,98,94,112,99,104,103,104,116,102,113,99,99,101,99,98,99,98,117,94,107,112,112,83,117,108,75,104,102,114,115,108,118,99,109,106,109,96,115,108,98,113,102,107,113,111,93,107,95,107,102,99,114,112,85,108,94,100,113,101,99,102,110,100,109,66,95,86,104,82,101,86,97,125,103,97,118,102,103,109,110,114,99,101,107,106,117,109,112,108,101,105,103,91,93,100,106,109,99,83,106,107,109,106,88,111,105,112,94,111,130,101,99,112,99,102,98,106,89,101,103,102,100,84,107,100,95,105,102,105,108,96,88,102,100,107,95,105,103,99,101,104,102,106,101,98,103,95,100,61,101,94,87,97,87,102,93,105,105,99,109,99,90,112,113,101,101,97,113,102,113,110,111,97,105,109,109,100,113,100,109,103,102,103,95,97,110,108,100,100,106,111,110,102,104,99,110,109,101,112,103,101,104,121,96,107,109,106,99,114,92,113,94,86,98,108,113,101,107,112,107,109,107,92,92,110,104,108,95,108,100,91,106,94,101,96,100,101,97,100,94,107,102,102,106,104,102,91,93,104,112,110,106,107,105,117,118,72,100,91,101,103,105,94,113,108,99,92,111,91,99,102,98,108,103,104,108,102,103,121,121,113,105,96,102,105,99,108,99,110,92,91,97,103,105,109,101,101,101,97,106,111,106,104,96,105,106,97,97,106,100,102,105,103,93,109,101,104,99,103,107,101,103,122,107,96,98,113,101,100,105,109,106,99,106,84,96,103,99,103,106,105,99,110,93,97,97,105,119,91,92,101,102,91,92,105,97,100,106,104,111,93,111,94,103,90,82,98,95,94,112,110,107,69,95,107,110,114,106,96,99,109,111,108,104,103,109,103,108,106,106,94,113,95,90,110,110,105,109,108,107,106,113,102,107,113,99,109,103,121,109,109,100,101,106,117,101,99,105,107,100,120,119,98,100,88,99,95,100,104,108,98,100,103,96,108,110,101,106,114,110,96,114,104,103,100,91,97,96,100,109,106,99,96,95,109,105,94,111,105,99,106,117,119,91,107,100,111,107,116,91,91,101,107,97,101,103,106,111,103,104,102,104,100,99,118,103,99,104,103,117,97,89,93,113,100,118,105,97,117,102,98,101,95,106,94,95,104,97,110,102,105,104,106,81,99,96,101,104,77,99,105,103,104,103,99,113,109,102,96,106,93,106,101,118,113,100,94,104,103,104,104,99,111,85,102,111,109,104,102,112,94,98,101,106,99,106,109,109,109,98,114,109,107,107,103,101,90,114,102,102,103,99,96,97,100,97,90,89,108,104,107,101,97,108,107,104,101,105,106,92,106,100,113,103,96,100,114,102,103,98,106,99,109,113,112,97,99,94,106,99,91,103,94,110,99,111,100,101,103,83,98,108,98,109,103,104,91,101,103,103,106,110,103,96,109,101,95,98,98,115,109,103,114,102,94,117,114,100,100,95,99,105,100,93,108,100,96,109,95,107,98,105,98,96,106,89,104,99,106,105,105,100,105,93,104,109,111,108,96,88,96,102,109,110,99,110,104,110,100,99,99,96,104,85,102,109,109,110,95,101,97,117,98,101,101,99,100,103,95,112,99,107,107,111,99,106,104,123,97,105,103,96,103,103,100,100,91,112,104,110,96,105,96,106,87,100,94,108,101,101,100,97,105,109,110,108,96,102,111,98,103,101,97,100,90,81,104,92,100,98,102,96,111,91,109,88,108,99,67,115,98,122,95,102,108,107,111,105,118,104,106,87,103,109,105,102,100,105,96,107,93,99,96,101,99,96,94,92,105,105,97,117,100,94,109,99,89,82,91,89,98,109,106,120,100,109,138,102,106,106,111,115,117,111,104,102,103,112,116,102,102,102,97,108,89,99,104,101,103,107,119,115,103,107,98,109,97,102,109,95,102,101,98,109,97,113,124,94,101,96,102,88,108,96,100,95,93,95,113,96,93,105,90,95,94,113,100,97,106,107,107,116,101,120,96,101,94,112,113,97,104,87,98,106,82,102,104,96,105,103,121,109,92,98,104,102,100,100,104,109,99,111,104,99,118,100,91,102,98,104,105,105,93,102,103,120,110,94,104,123,100,96,102,91,110,102,102,108,99,116,103,110,109,112,96,117,103,92,104,111,94,89,103,97,113,96,102,109,93,108,114,106,108,112,101,112,105,101,104,107,128,104,120,98,103,104,110,102,101,103,98,95,97,101,101,88,106,100,112,94,109,102,99,106,102,109,111,114,109,115,107,110,98,97,105,112,105,117,112,105,102,111,97,107,97,94,96,98,105,112,96,106,106,109,116,96,105,101,105,98,92,108,104,107,102,104,100,94,104,108,102,103,115,97,107,105,106,104,113,110,109,94,117,106,105,108,100,93,103,106,91,116,111,107,99,98,94,104,107,90,102,101,133,110,107,98,103,115,107,106,98,99,110,101,107,110,101,102,102,112,107,108,104,97,103,101,94,111,106,109,103,96,114,83,94,94,108,110,95,109,108,102,96,108,106,100,104,96,109,94,105,105,110,114,109,105,106,102,95,102,105,101,119,109,108,110,95,125,108,103,108,94,101,101,91,105,102,109,115,106,95,95,99,106,105,94,93,84,111,110,113,110,104,91,104,117,92,100,106,99,104,103,109,103,99,102,99,106,72,99,113,102,95,97,95,117,111,124,108,105,98,112,101,112,101,97,104,102,113,117,105,101,93,92,115,97,114,98,94,95,104,116,101,113,96,107,107,98,108,111,107,101,114,112,102,104,102,105,102,110,95,115,106,110,105,99,109,107,103,99,97,95,107,95,118,104,103,100,108,112,98,98,97,100,91,101,96,99,106,110,108,102,91,96,104,106,117,90,112,107,105,106,97,103,107,100,90,113,93,106,105,101,99,104,102,108,101,108,100,110,105,116,106,90,106,117,114,110,111,111,101,118,96,105,101,98,115,102,92,102,94,110,100,97,112,91,104,92,99,103,110,128,108,110,104,106,108,97,114,107,107,101,73,104,98,96,99,98,108,102,106,115,102,97,101,106,113,107,103,100,110,109,108,105,103,102,106,112,103,105,99,121,94,84,111,103,113,95,96,103,112,112,102,107,103,111,99,105,111,104,102,93,113,106,97,91,113,102,109,99,98,107,106,103,97,94,118,102,107,98,95,115,110,107,97,113,117,100,113,97,101,98,100,106,100,117,112,106,98,108,104,109,94,120,111,102,112,104,74,106,130,104,105,109,117,107,100,105,97,96,109,98,95,102,111,113,95,102,115,89,103,101,95,97,96,98,99,102,106,104,99,103,108,105,104,100,105,113,95,106,96,110,100,114,105,88,98,112,108,98,100,102,102,95,98,104,105,111,97,103,109,103,112,107,119,105,106,115,109,73,99,97,112,108,118,106,112,87,113,99,99,102,106,104,103,96,106,99,118,109,109,100,98,95,91,110,111,100,101,103,109,117,110,110,98,120,105,99,101,95,93,105,93,113,99,98,91,102,109,111,98,99,98,96,109,106,121,113,106,105,105,112,107,104,93,89,102,96,103,112,100,93,99,104,91,83,101,105,112,100,103,95,102,95,96,97,106,112,113,71,111,111,95,91,104,112,103,102,110,96,107,108,94,96,108,109,99,108,113,104,119,121,108,81,106,102,97,115,101,106,115,109,99,109,108,120,105,104,106,106,112,98,103,106,117,106,101,91,113,99,93,99,85,69,99,86,112,105,102,117,122,104,99,99,94,105,91,104,101,106,100,108,99,109,113,101,87,108,110,94,103,103,101,107,101,102,113,100,108,95,105,79,105,103,93,107,92,95,107,117,113,96,117,90,114,109,105,101,103,86,97,106,101,114,92,109,100,96,95,104,98,106,96,109,102,110,97,110,110,114,107,113,88,104,109,109,99,105,113,111,110,100,102,96,94,102,108,105,100,97,106,98,102,103,98,101,99,97,98,101,105,98,103,103,101,116,103,110,110,106,104,110,98,105,109,107,108,100,95,103,106,94,102,104,113,106,98,68,101,132,99,102,97,100,108,102,95,98,98,96,105,104,100,93,100,108,100,102,118,99,112,100,91,100,116,98,95,107,118,104,105,103,106,101,99,99,107,101,101,104,101,89,100,102,104,103,95,108,109,94,88,114,97,106,116,100,101,99,99,96,102,96,95,100,97,92,100,97,106,98,85,101,103,94,93,101,100,118,112,89,98,98,88,103,107,100,116,138,93,102,105,100,102,100,102,64,99,106,100,104,102,91,101,103,88,79,114,95, +526.06055,105,99,95,100,101,103,98,101,105,110,115,100,110,104,109,95,105,115,109,112,102,99,109,100,102,113,92,100,117,99,110,101,113,106,112,100,113,96,97,98,99,94,87,111,102,103,98,104,101,113,88,99,102,92,103,101,102,103,120,94,106,108,109,86,108,93,112,103,93,101,114,113,100,106,99,104,103,107,93,107,106,101,106,105,105,112,95,102,103,99,90,118,105,105,110,95,117,84,100,103,100,100,128,85,108,91,103,99,96,90,101,106,101,90,109,104,105,101,93,95,93,107,110,110,113,115,108,104,107,108,94,105,99,109,112,90,103,109,103,100,111,102,100,112,94,99,118,96,105,92,110,87,113,108,86,101,100,110,105,96,104,94,110,103,94,94,103,102,108,90,93,94,101,104,120,104,90,100,109,94,96,99,100,110,115,96,109,113,96,98,101,101,98,108,111,100,100,106,113,104,109,108,107,96,101,101,103,109,104,115,98,101,97,106,110,106,112,106,100,105,109,117,107,107,95,114,100,103,110,97,101,113,107,100,112,100,108,107,98,97,131,108,108,108,107,100,104,108,106,107,100,99,120,107,96,124,99,101,108,108,103,108,97,99,95,100,117,95,101,103,93,101,108,103,103,98,105,107,102,99,102,111,115,95,115,106,93,102,91,104,103,105,104,109,116,110,111,118,99,99,105,111,99,117,107,105,110,121,108,103,106,111,114,102,100,105,105,122,118,109,115,103,113,102,113,103,98,113,98,112,107,112,106,111,104,102,114,94,93,102,109,104,95,110,106,100,109,113,107,109,101,106,95,106,100,103,106,109,104,115,102,120,107,96,101,87,106,101,104,103,106,101,108,103,98,111,111,104,95,98,105,101,100,121,105,105,94,100,89,109,122,95,105,106,114,104,104,107,114,112,91,103,102,102,93,102,103,107,110,105,99,108,107,110,97,91,101,104,102,100,102,83,110,98,107,102,94,88,102,107,111,103,97,102,99,108,120,110,100,111,98,101,113,101,117,103,109,97,104,108,105,108,111,103,104,97,93,93,104,115,101,104,121,114,125,108,93,105,107,112,121,114,108,93,95,104,94,103,105,103,103,107,120,108,104,108,99,106,102,104,109,106,110,94,98,103,100,106,70,100,109,100,109,102,98,105,103,109,117,101,94,101,109,97,112,113,100,104,119,121,98,110,92,109,94,107,113,107,106,101,98,110,105,117,99,97,112,99,101,125,104,107,93,122,107,104,120,94,127,106,99,93,101,104,108,101,107,98,101,106,96,106,95,113,97,125,108,113,108,101,107,111,113,102,96,111,110,97,92,98,112,111,104,102,98,114,112,103,105,110,115,116,105,107,104,106,95,105,122,112,107,103,119,110,106,100,113,98,96,102,107,102,108,107,104,108,104,95,92,94,113,107,108,112,109,104,105,111,98,113,106,90,109,109,104,122,113,99,111,107,106,105,101,99,93,101,101,99,105,121,103,100,103,101,112,106,113,107,108,108,125,92,110,108,92,100,108,106,108,116,104,109,113,102,101,102,101,93,104,94,111,106,117,100,100,99,106,73,105,117,132,108,110,106,105,110,113,103,102,97,100,108,101,102,101,115,113,110,108,96,105,106,105,95,85,98,102,106,112,100,104,103,107,108,92,102,110,87,108,101,107,110,93,113,99,105,92,113,112,110,105,97,117,101,89,106,111,102,109,116,108,102,99,103,100,106,104,122,109,97,94,94,110,94,87,102,99,96,114,98,108,113,106,105,113,93,114,83,116,97,101,115,103,102,108,108,100,103,95,110,106,105,103,111,104,121,115,104,101,95,99,104,102,95,109,107,106,100,95,109,102,105,98,98,95,99,104,109,114,114,106,118,114,92,98,91,109,99,117,110,103,100,109,94,113,111,114,106,104,120,101,108,105,113,117,105,100,94,97,105,106,105,106,108,92,125,101,102,101,101,95,126,107,116,118,110,100,124,118,96,107,106,106,105,93,98,106,106,114,105,100,108,101,112,102,116,95,111,100,104,107,101,105,105,96,104,103,119,112,90,107,99,104,107,115,92,103,101,111,98,97,140,108,101,99,103,114,100,95,105,110,117,105,112,108,99,97,87,104,92,100,103,97,114,110,111,100,97,115,106,107,110,115,110,97,108,96,106,109,95,116,110,108,105,96,107,113,102,104,104,111,104,105,113,113,82,96,112,108,111,98,105,105,102,99,102,102,96,102,110,103,104,110,102,98,91,104,115,95,100,110,94,111,103,101,111,108,112,100,106,109,110,104,96,106,108,100,107,105,100,99,100,95,119,116,103,101,94,102,114,117,104,113,104,109,111,106,106,113,104,109,101,104,106,111,104,95,112,111,99,119,110,123,100,102,118,107,99,98,105,106,116,72,108,107,95,97,104,91,116,101,101,100,115,107,94,108,103,94,104,95,116,118,104,100,95,106,93,100,100,104,107,101,107,105,113,102,116,117,98,106,97,102,100,105,96,108,99,111,91,105,106,110,93,106,101,102,103,99,99,109,113,107,101,107,115,103,104,100,112,112,99,85,105,103,107,106,89,103,97,106,108,109,109,110,108,103,92,115,105,104,100,100,110,110,107,104,98,114,98,123,119,113,102,94,115,102,120,112,102,93,95,103,109,116,111,105,95,110,87,96,109,112,108,99,102,110,106,98,121,109,91,115,71,102,121,115,99,117,94,106,103,106,111,109,105,112,81,117,105,103,114,115,109,104,113,109,99,111,103,110,127,103,103,96,110,107,97,119,100,98,106,117,104,106,104,103,97,97,121,99,108,98,112,106,119,104,113,111,109,99,109,105,92,111,106,112,100,117,112,108,112,108,112,112,99,95,99,121,117,100,113,101,106,115,94,105,106,86,112,108,106,112,109,113,104,123,100,106,117,110,119,104,108,100,119,117,111,123,115,114,107,99,85,104,103,109,120,102,117,109,111,95,105,113,98,114,115,96,94,107,111,106,97,108,115,109,112,92,111,109,115,104,116,105,106,110,110,94,106,113,108,106,99,115,102,113,99,108,92,112,110,107,98,108,115,109,101,107,79,103,101,97,103,94,105,103,94,110,113,102,113,113,105,106,107,104,109,106,112,111,95,104,109,116,112,102,107,111,84,94,102,107,108,105,115,118,103,107,106,99,84,101,111,104,106,95,98,117,106,107,103,100,118,113,108,113,110,109,99,113,114,91,127,106,92,97,108,111,103,102,102,98,105,109,104,103,101,112,106,110,106,102,92,122,104,100,105,101,106,108,108,110,106,117,107,100,103,109,95,101,91,99,115,98,107,116,112,102,113,113,103,103,94,99,120,108,117,112,103,109,105,90,109,115,113,113,103,113,106,92,107,123,113,92,104,98,103,103,102,103,111,107,102,110,103,108,106,92,99,99,104,95,109,103,102,105,119,100,106,101,89,106,100,94,108,105,95,103,100,113,108,106,112,99,110,113,107,104,86,107,105,106,105,106,102,114,107,108,87,111,111,108,115,113,103,97,104,110,104,100,115,109,119,98,100,113,117,102,97,103,110,110,118,106,104,103,94,117,127,106,117,106,106,105,110,94,101,99,103,100,95,100,117,99,104,106,102,98,113,102,109,112,116,117,96,107,105,108,117,97,104,116,103,99,99,94,97,120,119,109,109,101,108,104,113,94,101,117,111,106,99,99,111,97,104,109,106,109,110,103,99,121,104,95,112,110,105,107,98,107,103,101,101,97,113,113,108,113,99,98,98,102,98,107,107,121,101,82,105,110,105,105,101,106,99,102,112,114,110,107,111,106,104,112,99,105,104,107,121,115,114,107,81,112,110,100,105,102,117,102,114,86,107,107,102,106,75,116,85,103,109,99,112,104,92,100,111,97,105,107,108,106,105,115,99,96,108,101,112,90,103,107,101,108,107,111,95,106,102,104,111,112,107,97,110,106,72,112,99,110,112,94,109,99,104,95,109,112,111,102,105,111,106,110,98,99,100,103,105,117,103,107,102,112,103,101,101,116,117,104,103,108,106,100,116,112,107,109,91,104,99,96,92,120,96,106,106,104,97,117,108,105,104,112,108,106,85,110,89,109,113,101,97,104,102,87,114,109,105,106,104,109,109,107,110,107,77,91,91,115,101,103,102,101,113,102,108,83,78,113,106,106,97,98,103,115,108,110,93,110,84,96,110,112,111,97,99,112,117,110,106,98,103,104,95,98,110,100,85,116,112,101,105,109,110,105,105,107,102,100,100,115,89,104,107,101,101,102,97,101,106,116,104,110,106,103,116,102,113,103,99,108,120,104,96,104,103,110,112,106,113,99,100,113,105,103,106,84,104,104,95,106,106,98,98,102,107,104,111,107,98,104,121,110,102,112,110,102,119,100,112,107,109,97,100,105,113,113,106,109,92,95,102,112,109,93,106,103,90,101,100,106,101,109,98,102,105,98,99,102,109,106,113,101,96,108,105,112,113,106,100,116,122,112,108,107,110,104,103,97,106,107,109,113,104,123,101,89,106,98,102,101,96,110,108,99,114,91,102,108,120,120,102,106,115,92,103,100,104,87,111,101,101,97,104,103,111,99,111,107,98,106,117,106,91,108,104,107,99,105,112,109,105,106,105,112,108,113,112,106,118,105,87,101,106,118,119,109,103,98,109,112,109,114,108,110,114,112,97,102,107,106,111,107,104,115,106,108,95,108,108,103,85,108,101,107,99,102,101,91,107,110,104,114,98,104,97,100,96,110,97,90,103,117,103,79,91,112,104,102,105,102,102,98,99,97,101,107,125,100,105,99,105,101,111,98,93,106,113,130,94,109,114,113,122,95,112,100,104,108,122,114,100,111,124,104,103,113,95,103,106,124,113,109,116,106,106,98,98,95,106,92,125,106,87,103,101,108,97, +526.20129,103,85,99,102,86,103,108,99,100,117,102,110,93,98,113,103,101,113,99,107,107,101,94,95,106,93,109,104,102,102,99,95,109,91,103,118,99,108,98,96,94,106,107,93,103,110,103,95,105,100,101,113,108,105,107,138,98,102,105,96,98,103,96,93,104,102,94,105,114,99,112,117,93,116,102,103,108,95,114,112,100,102,115,94,92,95,103,95,104,104,108,110,95,103,107,97,98,108,97,94,101,99,71,104,100,108,97,109,84,109,98,90,108,83,105,102,114,100,100,108,116,109,108,113,109,109,104,99,120,102,96,112,109,95,105,101,106,98,106,108,121,98,103,102,93,109,110,97,95,103,105,106,110,95,97,86,104,102,108,109,107,105,134,110,106,103,101,99,98,94,75,99,94,103,109,102,100,96,102,92,102,102,105,108,107,95,96,97,110,109,102,101,105,102,91,94,102,90,105,89,107,101,106,105,107,97,101,107,116,110,109,99,114,102,99,97,101,95,113,98,107,94,90,102,103,104,97,106,107,109,99,101,95,114,113,101,111,106,96,101,102,100,105,103,101,108,105,104,99,105,100,113,103,108,119,107,87,96,101,104,77,101,105,100,98,109,89,103,106,94,104,101,97,101,105,88,117,101,99,104,99,108,117,109,104,112,88,113,109,93,107,106,103,108,105,118,88,103,101,108,111,108,114,94,96,103,98,108,102,93,96,100,113,105,95,106,105,92,100,111,99,97,140,110,101,104,102,100,100,118,113,103,104,109,108,102,108,104,96,108,102,113,99,93,92,103,98,102,105,94,99,109,103,103,110,122,107,110,98,104,107,93,98,98,90,101,105,116,99,105,113,97,103,92,93,103,109,110,99,104,98,107,97,115,107,93,103,102,102,98,104,106,108,110,105,102,103,103,110,105,96,88,102,95,94,100,95,108,101,105,91,101,99,109,99,106,102,97,96,98,111,109,93,119,87,94,95,109,107,110,94,108,104,103,113,106,99,106,119,113,114,104,98,114,98,82,109,101,113,109,107,98,113,109,115,114,118,90,100,112,92,99,96,106,115,88,110,109,98,107,102,113,106,99,105,104,98,119,115,110,98,107,103,105,109,98,111,102,98,91,73,96,104,103,95,100,107,94,112,102,104,99,103,97,102,110,88,102,107,100,105,120,90,109,96,90,100,101,104,109,105,127,109,101,107,107,109,108,100,104,92,105,113,99,87,102,102,105,101,113,105,111,101,116,117,101,99,95,100,103,95,108,101,103,96,98,110,110,108,94,99,106,103,107,108,107,119,101,99,97,98,92,96,92,114,102,108,103,105,111,114,105,107,99,127,112,116,106,106,102,100,101,111,118,102,103,98,105,99,103,100,107,109,106,99,107,102,105,96,108,108,102,117,105,102,103,100,105,114,109,107,98,113,107,108,100,91,109,108,112,90,100,115,103,107,106,97,99,105,104,111,105,104,118,98,93,107,106,105,103,105,104,112,100,108,107,109,100,100,90,112,98,103,105,91,104,103,106,99,106,113,97,109,101,110,105,102,101,101,103,107,97,103,90,103,100,103,96,97,130,99,100,86,113,124,102,100,100,102,93,103,91,100,108,99,105,104,105,103,105,89,104,99,106,111,94,91,88,106,100,101,97,104,99,96,100,101,105,105,106,99,98,92,94,97,94,110,96,107,108,101,99,107,102,109,98,113,102,88,103,101,91,108,101,99,94,96,120,103,105,106,104,108,99,102,115,95,103,108,95,111,94,94,104,101,109,100,114,91,95,102,103,104,101,95,111,100,101,91,113,118,116,107,98,104,106,108,109,104,119,101,91,95,120,114,112,104,96,112,99,110,104,113,104,108,103,109,102,112,101,94,114,103,112,96,107,109,101,104,97,118,96,109,103,108,108,106,105,120,102,95,102,94,95,100,95,108,100,95,96,105,96,102,96,107,97,103,106,93,112,107,104,100,106,110,112,91,107,94,102,106,114,102,102,106,104,98,100,104,99,92,99,114,96,100,104,102,108,103,102,97,74,108,111,117,97,82,98,104,97,110,112,112,100,104,95,95,109,102,102,101,103,113,112,105,103,110,95,108,99,117,99,111,100,102,105,98,106,105,102,91,88,105,109,109,100,105,98,99,110,110,107,121,108,103,108,101,113,108,106,81,113,111,102,117,83,92,102,108,103,112,100,98,96,104,106,93,97,107,100,109,102,92,109,103,103,99,95,102,90,111,99,110,97,101,112,122,105,93,114,101,93,126,101,107,103,95,114,110,111,98,100,108,104,100,99,99,94,96,102,103,111,96,101,97,94,102,90,105,107,110,107,108,101,100,103,102,111,111,99,104,102,108,106,99,91,96,98,115,105,106,100,113,104,96,106,96,105,105,114,110,102,109,94,95,103,109,109,105,101,95,97,100,102,102,104,103,113,103,94,95,107,94,88,116,96,112,108,104,104,105,111,110,110,95,100,105,106,100,108,108,97,102,91,99,99,99,102,108,103,105,105,113,82,103,105,103,105,109,109,105,109,98,99,107,91,99,111,92,110,108,105,99,107,108,102,102,95,102,113,109,97,106,94,113,101,103,108,111,95,101,105,103,100,98,106,107,112,107,102,102,87,113,116,94,103,92,101,102,122,106,106,105,93,101,108,102,109,108,92,104,107,113,99,99,105,107,104,115,97,108,114,107,104,96,100,99,101,102,104,83,104,104,95,108,110,105,85,98,116,104,108,106,103,95,99,97,111,104,113,82,101,106,107,93,111,107,110,103,97,106,112,99,103,102,115,96,102,100,117,101,107,101,103,104,94,107,102,101,103,105,101,124,105,102,109,103,100,106,104,88,112,108,109,108,105,109,96,99,111,113,105,93,109,98,100,108,93,99,115,105,98,99,116,95,105,106,107,108,114,118,121,100,101,108,92,106,97,102,106,105,100,88,105,108,103,110,87,110,114,103,111,99,101,112,93,99,101,109,105,97,106,96,102,108,111,104,98,82,106,100,103,105,107,99,105,105,99,105,107,103,111,99,107,109,105,109,116,96,108,110,103,115,112,109,109,101,89,113,106,101,100,111,106,100,96,102,112,104,94,83,111,107,100,99,94,116,95,104,99,92,111,115,102,112,105,94,113,93,89,86,100,92,105,105,95,109,116,109,120,94,104,98,109,123,105,105,91,103,98,100,97,114,102,98,113,99,120,104,105,98,100,102,101,111,95,101,113,100,100,88,122,111,125,101,104,111,99,117,96,103,103,113,113,117,98,100,116,99,108,112,97,112,105,117,110,101,105,104,69,106,95,109,103,114,103,107,104,117,110,100,101,106,104,86,111,104,95,112,107,103,118,104,112,112,103,95,111,101,102,102,109,91,109,109,95,104,91,99,91,104,104,102,133,108,115,90,113,109,103,106,112,103,106,98,111,98,92,105,108,103,99,108,98,102,103,98,104,105,99,111,97,93,99,103,111,116,97,99,91,80,101,117,104,109,98,107,90,113,99,103,81,106,108,105,109,103,99,95,113,107,106,98,114,106,103,84,110,109,106,92,108,107,94,114,105,96,90,103,86,77,115,111,109,98,109,95,110,97,92,96,110,112,105,120,99,106,103,81,96,105,105,108,110,98,98,109,110,102,116,102,103,94,103,107,96,120,103,102,103,99,109,102,105,91,108,91,103,104,117,113,90,100,105,102,97,107,115,98,104,100,111,118,103,103,90,126,105,110,110,105,100,104,87,102,100,106,97,107,95,99,99,116,91,119,106,100,101,102,95,92,99,107,98,104,97,102,101,89,101,93,102,100,115,104,107,103,107,103,104,118,102,106,109,103,108,100,108,113,103,108,114,102,94,100,101,108,108,101,101,113,101,102,112,111,124,103,99,100,95,109,105,102,107,103,97,102,94,100,96,110,110,115,99,108,112,104,92,111,89,101,102,125,115,101,105,110,102,107,104,98,112,98,105,113,105,96,99,110,104,105,104,98,106,106,105,96,115,103,122,109,104,99,110,118,108,100,105,108,98,109,115,101,102,108,107,119,105,94,97,105,117,97,115,108,112,94,109,88,89,126,96,114,100,125,124,92,105,94,95,102,107,99,96,103,116,93,104,104,96,104,103,116,112,98,120,113,110,87,118,98,107,121,112,101,113,106,114,99,122,109,112,100,103,112,84,116,113,93,106,88,111,108,105,108,115,97,113,117,104,120,100,105,95,115,102,103,98,102,97,105,109,97,95,88,96,115,106,109,109,103,98,106,108,97,109,98,105,106,104,94,117,105,103,109,109,94,101,101,98,107,113,101,107,99,101,103,95,98,110,102,101,110,107,105,104,112,101,104,99,116,98,111,103,108,99,90,99,98,109,103,93,114,104,102,111,97,123,91,110,100,102,101,110,105,113,103,115,108,100,94,109,117,109,116,107,95,98,109,94,108,107,97,106,98,96,104,92,110,113,98,106,108,103,118,108,116,102,104,100,107,94,95,103,105,96,98,102,104,88,100,111,119,102,87,104,104,88,97,96,106,93,98,90,99,87,113,93,106,106,97,110,108,88,92,105,105,105,94,97,100,103,102,105,100,95,98,112,94,97,92,101,112,118,104,98,99,104,88,94,89,103,85,100,100,100,100,104,100,104,113,105,112,98,103,113,107,92,106,103,100,100,103,127,87,106,99,96,105,91,104,97,102,99,102,103,97,107,108,103,103,104,107,101,102,105,98,100,101,106,130,104,91,96,109,102,99,98,92,107,96,109,115,103,109,111,104,94,93,105,100,100,100,87,100,92,113,94,94,102,105,108,107,108,122,91,102,137,102,105,109,91,102,101,103,109,97,97,102,109,95,102,100,102,99,91,99,102,102,88,109,126,101,101,118,105,112,98,108,91,101,91,97,84,113,104,104,108,99,94, +526.34204,87,95,93,105,97,104,102,99,113,91,101,109,93,95,105,111,87,112,92,110,99,100,100,106,118,111,106,113,108,95,107,100,101,101,106,97,95,95,113,94,103,98,101,93,111,100,89,94,92,113,102,93,114,106,109,96,110,117,117,102,106,102,100,97,95,121,103,100,108,107,103,91,118,114,107,114,96,112,92,116,106,119,99,108,109,102,104,99,87,99,106,106,99,96,99,96,108,99,110,87,98,98,101,108,97,103,100,100,97,97,97,98,116,98,107,67,104,101,112,92,101,107,94,101,104,113,109,102,97,109,74,96,105,97,98,74,107,100,109,103,112,106,102,99,130,113,109,110,105,106,101,107,92,110,93,97,103,114,112,126,98,117,106,105,90,87,108,97,106,90,112,111,97,114,99,103,98,103,115,111,105,123,106,101,108,118,112,104,89,91,108,103,102,105,109,99,105,90,108,94,103,98,112,74,104,103,102,104,109,96,109,112,115,114,87,103,110,110,106,93,117,92,92,104,112,95,102,115,105,116,107,96,108,83,98,110,95,91,102,91,100,105,95,106,80,97,106,113,101,108,105,103,102,96,106,114,101,108,102,97,101,106,103,99,100,118,100,101,108,97,105,107,118,105,108,106,107,97,99,108,113,108,104,111,100,114,103,105,85,98,96,105,102,104,99,90,116,97,113,96,112,103,104,117,107,128,106,104,107,104,102,107,99,107,98,104,104,103,94,108,97,96,104,86,96,117,98,101,106,115,100,110,102,109,111,106,110,102,96,106,105,102,108,101,90,102,108,117,101,97,111,117,105,107,103,92,113,107,101,108,95,99,95,109,96,91,107,101,110,100,101,108,114,104,135,92,108,103,113,106,104,113,102,105,113,99,107,105,95,96,118,104,104,110,99,111,98,104,94,110,116,100,99,103,101,102,73,100,109,99,97,82,100,99,99,95,108,114,98,97,101,108,113,103,113,102,95,102,95,108,103,95,116,115,96,111,98,110,102,109,117,101,89,104,109,99,108,112,98,107,100,105,96,112,106,108,100,108,93,100,105,106,120,103,108,111,99,108,108,98,109,103,99,112,101,105,98,101,104,104,91,109,107,110,105,109,105,106,94,98,104,98,103,111,91,104,110,102,97,111,101,106,107,123,94,92,111,100,100,81,107,116,108,107,103,115,109,106,100,109,107,105,110,108,111,121,112,112,110,101,106,101,91,112,108,105,103,92,107,104,98,113,103,102,93,103,102,93,120,105,100,121,119,106,114,100,103,102,112,98,102,110,111,100,108,96,106,99,106,99,95,116,112,102,109,84,114,108,98,109,111,104,94,113,107,94,103,109,112,102,88,110,108,112,109,103,107,108,105,106,108,101,105,106,107,98,96,95,105,102,112,102,98,107,109,114,99,104,105,111,100,96,107,99,109,103,95,109,106,92,114,106,96,101,98,111,104,100,96,107,101,108,101,103,104,99,112,96,108,116,97,115,99,109,95,105,92,112,111,109,101,107,102,102,110,119,113,86,98,109,109,96,107,91,101,107,96,108,114,105,109,103,101,99,95,96,103,117,104,105,110,111,91,107,101,82,105,105,101,96,106,98,93,102,131,104,108,109,137,102,104,102,103,95,108,102,105,106,83,93,98,100,108,110,87,90,105,100,106,109,97,106,100,100,96,108,99,104,107,107,108,92,103,104,64,106,112,122,89,118,106,95,111,108,110,110,95,102,107,95,98,106,98,106,108,103,105,110,102,95,102,104,110,113,108,100,110,100,114,103,116,96,104,113,106,106,100,100,93,105,110,95,105,113,99,99,100,90,100,108,104,110,95,108,108,104,102,85,116,92,98,104,110,102,103,97,94,117,110,101,107,110,105,103,106,108,105,100,112,107,108,97,108,99,100,109,109,105,122,109,99,94,109,108,121,108,105,105,103,113,121,92,90,109,86,101,99,83,91,96,100,98,107,105,98,110,110,118,111,109,103,114,114,100,88,110,106,90,110,105,103,102,105,105,94,111,107,111,106,103,99,109,97,108,106,86,108,104,107,105,97,104,111,105,103,106,117,104,93,98,108,114,110,97,100,101,102,94,100,112,103,104,108,93,95,96,100,96,102,93,85,104,99,114,101,117,102,105,121,106,85,101,96,114,99,103,98,99,108,100,110,99,102,88,99,113,105,98,91,94,105,107,105,101,109,106,98,98,106,107,99,105,113,99,105,99,95,90,94,98,96,110,82,101,109,103,107,108,96,103,102,107,103,88,88,112,98,102,99,118,105,114,109,111,99,114,101,101,96,105,100,102,115,112,103,103,93,106,101,101,109,110,117,117,108,101,107,99,111,102,100,109,107,118,100,95,91,103,87,104,95,110,97,107,94,111,105,116,89,101,110,103,106,110,112,112,96,114,96,103,108,95,97,108,96,114,106,108,99,105,100,118,106,114,106,92,98,116,101,82,99,111,104,112,112,105,102,106,98,102,95,104,114,98,108,108,117,112,113,103,120,113,95,107,106,113,105,97,100,111,108,124,112,116,116,101,104,103,98,111,100,108,98,101,117,109,103,100,104,106,99,117,116,112,96,114,111,94,112,116,106,91,110,110,106,108,110,114,111,102,110,109,109,101,106,102,115,103,99,109,103,103,111,104,108,105,116,107,106,108,105,97,114,103,96,105,92,107,105,97,108,99,106,115,117,109,112,115,94,102,106,104,103,105,96,93,98,109,105,108,105,122,108,109,110,119,112,103,100,108,100,107,113,108,121,108,100,108,95,109,79,110,92,91,106,110,93,103,104,105,109,110,109,110,110,113,99,131,108,120,107,104,97,102,109,109,110,106,102,104,110,118,100,102,107,111,104,104,79,105,110,101,104,117,108,102,108,114,105,111,114,107,102,108,100,110,98,106,95,117,100,112,117,98,109,112,113,98,109,108,104,109,103,109,107,115,104,107,99,105,105,108,103,105,96,102,110,104,106,95,97,109,103,107,113,125,116,96,113,98,104,106,102,103,101,103,115,119,109,105,98,95,106,108,108,105,109,109,80,93,103,130,117,103,98,97,105,107,107,99,104,123,99,112,105,111,104,108,110,106,118,110,113,109,110,86,99,104,98,103,109,107,114,108,115,99,91,105,109,110,109,91,96,98,104,112,103,101,123,103,91,109,105,96,109,110,107,110,104,110,115,100,113,102,109,110,108,111,106,116,106,104,99,102,107,109,100,98,101,103,105,102,109,103,101,99,105,95,114,102,119,118,109,110,112,94,103,112,103,110,117,106,113,107,109,101,98,103,111,101,104,111,111,112,107,100,106,108,107,108,101,119,99,104,100,114,99,97,106,108,109,101,98,116,121,109,108,108,104,102,105,112,110,94,105,118,106,104,111,99,112,97,109,102,107,100,102,98,109,99,103,107,103,116,104,105,103,99,110,102,104,115,99,101,108,103,104,108,78,110,128,106,106,104,96,104,108,98,114,104,120,112,106,104,95,117,103,117,102,114,104,108,106,117,124,109,116,110,107,106,117,113,111,113,110,114,113,98,110,118,96,106,107,95,109,109,101,112,112,114,80,101,107,111,104,107,98,100,128,111,107,95,105,109,107,118,102,106,109,113,102,109,99,107,116,94,101,115,115,106,108,118,106,104,110,99,110,111,92,106,89,97,108,106,113,112,98,115,110,104,115,112,103,113,107,107,109,98,100,103,112,103,99,109,103,102,102,100,116,99,100,100,100,101,111,102,121,106,100,115,101,99,99,95,112,102,106,108,105,116,96,101,105,105,110,96,90,98,114,110,102,100,103,102,104,107,112,103,105,102,109,99,117,98,103,102,99,104,102,109,99,104,112,108,105,113,106,110,99,95,96,98,100,115,99,105,122,105,108,96,105,103,110,94,98,97,98,99,101,114,106,112,108,107,111,105,113,96,109,94,95,101,110,112,103,118,109,110,110,116,107,103,98,116,109,102,107,105,113,105,109,104,109,106,98,105,111,121,111,116,113,108,105,90,107,100,104,96,115,108,103,107,130,113,105,99,102,89,113,107,113,103,102,101,77,101,102,102,110,104,109,106,117,94,102,110,136,111,96,105,112,116,100,107,106,114,119,102,111,112,107,102,109,104,116,107,104,102,97,118,106,95,104,114,112,106,111,107,105,107,113,98,94,89,106,101,98,94,99,99,138,108,105,111,107,105,112,109,102,112,103,114,110,103,114,108,99,113,107,99,107,87,108,104,97,103,105,105,104,103,117,105,117,100,106,101,105,114,114,111,77,99,115,110,110,105,112,99,97,119,100,99,106,104,102,110,102,105,98,107,99,104,114,105,109,108,112,103,94,106,113,111,107,99,112,106,102,108,118,112,112,113,113,106,91,102,106,106,91,110,109,110,101,112,100,117,101,120,109,98,97,105,100,109,98,109,104,107,111,109,107,110,92,93,101,97,91,112,110,116,99,115,102,107,119,82,107,103,121,98,101,103,108,103,72,106,109,102,102,77,92,102,100,96,105,109,113,113,91,103,90,99,104,110,102,109,103,110,110,105,99,99,104,109,103,112,102,92,99,107,90,116,104,103,99,102,97,109,100,98,101,87,99,113,117,111,122,102,108,104,104,110,100,105,106,104,111,103,112,100,100,107,111,96,99,102,107,121,116,105,87,111,110,115,110,95,95,95,106,104,106,101,98,108,108,103,102,103,106,108,102,113,108,113,106,99,105,99,110,96,104,97,114,109,100,128,117,85,114,97,117,106,106,107,105,96,101,107,104,103,109,103,94,86,98,100,96,108,101,99,109,96,111,100,111,113,106,111,99,108,103,117,94,101,99,116,118,111,103,111,103,113,91,117,101,100,94,108,112,92,104,99,109,105,143,100,106,106,99,95,115,101,102,107,82,106,105,97,102,101, +526.48279,112,102,113,95,95,109,106,100,111,104,108,111,98,103,103,99,103,100,107,102,133,97,85,100,105,86,89,117,103,80,106,98,78,105,109,91,109,106,103,103,110,101,106,88,119,103,111,106,96,104,83,95,83,107,103,102,101,106,98,91,97,105,92,99,91,103,92,94,103,101,101,80,98,103,91,103,101,95,100,105,109,86,93,100,99,96,107,107,96,108,107,103,90,98,99,106,103,98,112,93,115,113,90,102,132,105,101,108,88,99,96,102,108,104,95,93,111,99,101,94,99,90,105,109,107,105,110,100,107,106,96,93,95,99,97,108,95,97,87,96,95,105,97,102,94,97,98,103,95,110,110,99,105,100,110,100,100,85,107,107,101,102,106,110,92,107,98,99,101,94,94,99,101,102,109,105,103,99,105,105,96,106,99,103,112,113,104,89,102,97,101,101,98,100,96,107,104,108,106,104,100,103,98,104,105,95,103,105,105,100,91,95,106,110,91,107,98,106,108,108,102,90,97,96,106,112,100,101,105,104,102,98,98,106,114,105,98,108,105,108,90,98,98,97,99,92,120,90,107,112,108,89,102,97,111,100,108,102,109,106,99,116,104,101,95,96,97,105,110,87,107,102,97,95,114,109,112,107,104,115,94,99,91,102,98,117,106,91,101,109,102,109,101,112,96,104,100,102,104,96,104,106,99,108,118,110,99,109,97,104,96,114,111,110,103,110,106,95,102,99,104,107,90,105,106,102,102,84,109,99,106,101,105,104,105,97,102,96,89,100,101,106,106,96,102,98,98,107,104,96,115,96,105,109,114,98,103,82,99,117,109,103,101,104,114,109,106,71,108,103,105,79,100,104,93,107,106,105,107,104,110,94,122,95,98,115,98,101,112,107,113,99,103,103,99,99,94,107,95,111,100,89,90,98,115,98,93,109,102,105,95,106,108,95,104,100,110,98,111,100,102,105,97,108,98,88,95,92,88,95,96,107,116,110,101,103,102,106,104,100,106,116,100,102,103,102,99,107,107,98,101,93,99,100,110,92,108,96,111,112,131,100,112,101,95,112,105,102,112,104,103,107,99,97,104,110,95,98,98,117,113,113,113,104,102,100,104,105,113,105,102,101,99,103,95,103,90,109,96,107,110,103,97,109,113,100,104,104,110,105,104,101,110,105,93,97,99,108,104,98,100,105,110,108,104,102,108,100,104,102,93,113,109,97,109,109,116,104,108,105,76,115,93,108,96,86,101,118,107,106,101,117,106,101,92,103,92,97,104,107,65,105,114,106,106,101,110,97,109,105,105,105,101,111,104,109,98,92,105,107,112,100,91,102,111,82,103,107,94,109,108,99,101,102,124,109,108,94,105,117,101,108,104,102,104,105,110,95,100,99,114,100,93,97,104,107,110,103,100,97,107,111,98,96,95,115,105,98,107,109,107,99,104,102,97,96,111,98,94,101,108,100,100,103,101,97,105,103,101,107,112,105,96,117,99,108,100,104,112,99,111,103,104,110,108,98,118,105,103,107,102,113,94,106,98,103,105,102,111,99,108,105,105,100,105,101,117,113,99,96,110,120,105,103,102,98,100,110,102,99,95,102,87,105,100,103,97,111,95,91,105,105,108,96,95,100,100,119,116,104,100,92,106,99,90,82,105,94,99,104,111,104,100,99,106,98,100,103,105,105,87,103,107,100,105,92,102,105,105,103,103,98,104,117,95,109,99,110,108,109,103,98,104,95,99,116,102,98,100,106,89,96,101,104,99,91,101,94,97,101,104,95,103,110,103,111,106,102,116,110,106,106,107,107,116,113,97,99,95,104,101,95,93,93,100,97,116,80,104,108,96,104,98,101,107,106,98,100,108,117,95,96,109,100,106,112,96,98,98,108,106,98,93,100,107,108,106,101,111,114,101,102,114,112,97,95,105,106,91,95,109,97,99,109,104,104,114,113,103,103,108,91,102,101,108,110,93,111,101,117,118,73,114,104,100,101,107,93,104,98,112,104,106,105,115,103,104,95,109,94,97,110,97,107,98,96,90,104,109,100,110,97,104,106,105,88,104,96,98,100,110,87,102,104,106,101,121,100,104,112,111,87,96,117,105,100,93,109,96,104,101,109,117,114,105,98,101,92,107,113,90,98,103,103,108,102,99,102,93,102,92,98,106,102,104,107,111,101,94,87,107,129,99,101,115,106,103,101,76,112,95,102,109,96,109,105,99,100,88,94,101,100,105,109,113,103,110,106,110,103,111,108,99,96,107,97,113,104,92,98,105,107,109,101,109,99,110,107,102,100,75,120,94,109,108,105,110,104,100,113,125,102,110,103,103,103,98,106,103,92,106,102,104,101,106,99,92,106,109,98,97,109,101,101,102,99,96,98,117,104,99,102,97,103,92,114,100,104,103,98,117,107,100,100,108,106,98,103,114,105,91,117,102,101,104,104,104,105,104,106,94,98,98,116,109,95,95,111,107,108,109,103,104,93,92,100,98,105,105,111,110,104,103,104,96,106,105,104,111,102,103,116,106,115,100,88,99,113,99,100,104,83,100,96,105,98,94,105,109,97,98,98,102,105,102,104,102,103,99,110,94,101,105,109,89,100,96,94,107,87,102,104,112,101,101,108,111,114,104,107,106,115,104,95,91,110,100,102,100,91,99,111,104,100,99,88,110,96,106,102,108,107,114,100,104,103,104,107,92,106,103,99,109,110,92,96,106,105,106,104,100,96,110,106,106,107,112,110,103,100,105,100,89,113,106,98,103,104,109,100,88,111,99,109,106,106,106,74,108,99,105,108,96,100,113,105,100,103,119,99,109,95,100,100,96,109,107,106,105,110,108,101,91,113,110,104,104,102,110,96,97,106,104,108,104,110,103,109,94,102,102,105,106,107,95,102,108,108,101,105,93,110,110,97,108,110,101,99,113,113,105,115,105,112,110,101,113,102,96,105,102,100,99,115,116,106,102,102,96,102,115,109,114,96,107,117,100,105,92,98,103,115,111,115,108,109,108,104,111,101,103,101,120,110,108,95,109,109,105,110,103,95,109,100,102,107,111,98,108,98,102,103,108,112,89,101,95,124,105,100,115,100,107,109,104,105,97,101,104,111,102,98,105,99,110,100,103,101,114,108,99,95,109,89,112,113,103,112,102,106,95,100,131,102,98,104,107,102,110,112,99,107,98,109,114,106,101,124,100,100,110,111,105,93,101,100,111,100,104,112,115,87,95,110,104,103,113,97,106,103,104,115,111,107,88,98,108,118,102,98,102,109,95,90,96,102,110,101,117,107,99,97,112,116,89,105,101,79,111,109,109,102,100,107,95,99,101,89,113,103,90,110,111,87,99,98,116,103,111,94,101,101,105,105,101,94,105,96,101,99,96,116,102,108,111,91,106,95,100,105,104,97,143,105,99,94,106,98,103,111,103,103,100,119,99,103,112,101,97,108,119,110,104,103,113,101,113,99,106,102,104,100,102,97,114,97,112,116,107,94,105,103,92,92,99,109,113,113,101,105,97,103,102,106,108,101,104,103,121,98,91,112,110,108,96,103,104,120,104,111,113,112,102,108,106,121,97,97,107,112,113,104,85,99,102,104,102,88,98,104,92,97,109,91,92,108,104,107,101,105,98,96,106,107,98,97,103,104,106,109,100,106,107,113,105,99,97,103,105,102,108,105,97,104,109,119,99,100,105,93,106,111,115,112,115,109,64,94,110,98,107,96,102,102,106,102,100,103,108,105,96,99,103,106,106,102,97,96,103,92,102,100,102,105,96,96,115,88,98,109,91,123,97,108,108,97,113,103,102,119,103,110,107,107,101,106,103,95,102,120,99,103,101,96,106,95,125,96,104,113,100,82,93,72,104,90,98,102,95,128,110,97,123,100,109,92,98,104,102,91,109,100,104,104,109,112,98,92,113,100,92,104,100,107,89,110,100,104,117,93,90,100,103,106,109,100,98,100,98,122,111,108,96,100,101,100,103,108,99,100,103,108,98,109,114,109,105,109,103,107,116,112,114,108,103,101,106,102,107,98,114,101,110,103,104,102,107,114,115,108,114,104,100,105,108,106,107,112,93,106,107,102,93,102,90,105,103,101,90,106,99,108,108,103,79,109,98,108,101,115,101,112,112,107,99,102,111,104,104,99,98,97,108,99,110,101,95,100,94,104,103,98,95,106,100,103,96,109,100,113,110,118,95,107,105,101,92,110,105,100,107,108,97,87,98,102,107,109,92,101,91,99,106,94,113,95,97,99,98,103,106,96,120,94,98,94,108,90,95,116,122,116,110,108,105,114,109,99,108,102,108,102,107,106,99,107,106,119,99,104,111,109,87,99,105,108,114,86,106,115,99,119,106,105,100,94,102,111,109,108,95,109,103,119,96,108,99,106,105,94,105,111,98,112,100,102,104,106,100,96,105,108,103,103,113,105,88,108,105,91,104,110,108,94,104,85,98,95,98,101,99,102,93,106,108,106,87,97,107,111,94,111,87,104,109,93,109,106,111,105,83,95,109,107,110,93,95,116,90,95,117,92,100,115,109,98,104,100,103,104,103,97,107,111,104,119,102,103,106,95,98,81,106,113,100,99,97,102,93,109,121,104,98,111,113,101,99,99,110,97,96,115,97,96,116,113,98,101,110,111,100,105,102,113,104,91,101,96,105,101,104,96,110,110,105,101,111,112,93,100,110,111,102,102,109,100,108,106,103,97,93,101,96,104,95,108,117,95,109,117,105,96,100,112,107,102,101,115,82,103,104,94,95,100,94,105,104,99,92,74,103,103,101,101,102,103,101,101,93,98,110,109,75,106,100,92,107,100,93,104,100,99,95,97,108,100,102,109,104,102,117,106,111,120,120,104,98,108,107,97,97,105,113,98,99,102,109,116,103,99, +526.62354,108,104,87,97,94,94,82,105,111,108,104,94,84,86,100,106,103,87,98,109,96,113,92,95,107,103,104,95,91,116,86,104,98,108,95,80,100,108,108,104,91,96,105,104,118,113,97,98,104,106,112,102,92,113,110,105,104,107,100,103,109,97,96,87,106,108,112,106,104,111,91,113,108,95,76,106,95,88,91,104,102,108,99,106,99,112,110,103,105,105,105,83,103,103,89,105,100,100,102,105,90,87,92,102,102,96,104,107,100,106,99,105,98,87,98,111,101,95,102,87,93,101,100,118,103,113,120,102,107,111,94,105,111,113,115,102,102,116,103,103,101,108,121,113,89,90,113,91,102,90,103,98,104,99,99,95,104,100,107,96,99,103,114,83,114,103,109,85,91,104,96,109,110,89,104,95,101,108,106,103,97,103,102,106,107,112,96,96,102,96,108,95,100,109,103,114,93,98,100,101,97,102,98,93,101,101,99,82,105,100,97,115,105,107,84,108,94,101,80,99,74,100,96,97,101,102,103,96,111,98,107,103,85,106,96,109,107,116,96,105,87,96,111,96,99,92,123,95,102,91,100,104,99,102,104,106,87,101,92,103,94,93,89,107,90,113,105,109,105,95,102,96,104,106,105,96,105,99,98,109,96,107,108,102,104,122,92,103,100,94,98,103,102,92,108,107,106,111,103,109,101,112,122,108,100,115,104,99,86,108,91,111,107,117,109,114,107,97,95,93,106,100,100,98,104,94,104,99,110,108,106,102,95,115,97,112,110,104,101,111,108,109,94,100,110,102,98,99,114,100,105,98,104,117,105,114,97,112,103,103,105,112,115,108,114,99,105,113,97,101,111,95,109,109,113,98,100,97,96,89,101,106,102,118,99,118,100,110,119,101,116,103,104,102,104,84,100,97,106,111,96,94,94,106,94,107,102,98,100,103,91,108,96,103,117,104,108,97,107,105,99,115,107,103,104,89,107,92,99,109,105,99,95,108,105,95,96,100,92,115,113,99,91,109,103,92,113,112,92,115,100,93,107,126,99,116,99,103,103,100,97,97,112,114,102,112,98,111,101,101,87,109,100,93,106,96,99,97,105,107,101,111,109,103,103,110,99,102,86,113,98,118,112,103,84,109,105,99,114,105,109,96,96,107,112,94,93,83,99,105,108,96,110,87,103,110,99,99,116,88,103,102,106,99,112,108,117,113,105,109,86,106,91,96,90,95,112,104,110,120,105,96,97,95,111,91,120,103,107,100,103,103,108,99,102,103,104,104,94,94,100,99,96,95,109,108,105,104,108,96,99,99,101,98,101,95,109,98,94,120,99,96,106,91,114,102,100,104,98,88,118,103,113,88,108,104,101,104,109,99,105,100,104,105,103,97,106,105,105,91,108,101,121,110,100,95,113,105,96,96,101,108,102,96,115,97,98,98,104,109,94,113,106,110,99,113,102,105,108,101,116,94,106,85,100,79,108,104,94,104,66,105,97,95,97,109,117,109,114,104,106,105,106,78,118,101,105,94,111,106,100,111,96,108,101,101,113,95,108,102,99,97,106,103,106,112,109,106,100,102,105,103,94,108,109,101,111,98,104,99,104,100,106,106,105,101,100,103,84,95,105,106,109,108,102,117,101,115,99,101,90,100,103,108,101,108,106,104,102,103,98,101,102,94,102,108,108,101,103,106,109,104,105,107,106,95,100,104,106,84,99,97,105,104,102,119,110,96,109,111,110,114,104,110,93,114,101,89,106,101,116,115,92,119,96,108,98,100,98,100,119,102,106,112,95,107,102,97,107,104,110,107,111,113,111,114,100,104,105,103,68,98,104,101,95,96,97,109,108,109,125,90,97,105,107,108,109,99,104,102,110,115,100,115,112,98,116,100,108,108,100,111,107,100,106,110,92,104,111,103,96,116,109,125,101,100,97,92,102,87,109,99,110,98,90,105,107,91,100,98,95,118,103,103,103,102,103,105,98,102,95,112,98,118,103,92,107,95,104,106,103,106,105,97,91,100,101,107,104,97,94,108,105,116,113,110,98,105,105,109,115,95,102,108,108,103,95,120,102,102,104,96,100,103,112,103,94,100,109,113,93,101,93,109,104,104,104,104,105,109,101,103,105,104,98,95,91,99,110,102,95,99,107,112,101,96,117,121,105,114,97,109,106,114,104,108,133,98,105,101,104,108,100,109,98,109,84,117,106,109,96,117,109,108,90,109,112,84,98,98,101,95,99,108,104,110,110,98,101,95,90,107,112,103,94,106,92,102,83,109,102,108,100,104,118,121,116,106,110,102,103,99,99,108,94,103,104,101,89,104,124,105,118,96,103,95,98,106,108,107,110,102,104,113,88,103,100,114,106,100,105,112,94,101,96,104,92,106,79,111,120,114,105,106,96,100,93,97,104,98,100,101,106,108,101,101,110,99,98,98,95,120,80,97,110,100,109,113,114,95,107,91,105,112,106,100,113,107,101,108,97,109,103,108,100,87,108,103,117,102,96,101,105,98,107,126,108,103,108,105,98,112,99,108,106,105,99,94,105,92,103,118,101,113,108,115,103,108,123,120,101,110,109,101,104,98,106,101,102,97,98,102,106,102,104,113,113,100,110,106,117,97,95,112,91,113,109,103,106,106,104,97,95,98,96,106,123,108,103,107,94,109,111,104,109,112,111,106,121,114,99,109,103,109,96,107,114,107,111,110,81,113,112,113,104,110,97,88,89,110,98,107,104,128,106,116,109,105,102,92,101,94,101,114,112,109,121,108,110,87,102,119,90,110,107,102,100,112,111,99,100,109,105,108,105,104,99,107,110,109,103,109,105,108,113,99,96,97,101,99,97,98,117,99,101,103,99,111,115,111,102,96,106,99,94,111,101,110,102,108,103,113,95,115,104,98,91,110,98,110,99,100,111,75,101,113,102,103,103,114,109,116,104,103,99,87,99,101,104,118,110,103,115,104,95,93,109,108,109,97,105,99,107,99,106,107,95,114,102,99,105,101,101,101,105,96,114,110,116,100,103,99,98,106,107,104,108,112,108,104,107,106,106,99,106,92,105,103,103,106,104,100,99,116,111,102,102,115,106,103,110,77,103,93,104,102,96,123,120,109,105,114,100,111,108,108,102,102,109,95,98,109,96,107,91,101,100,106,101,98,92,104,115,104,100,111,98,106,104,93,117,96,99,107,117,106,105,90,99,110,135,109,105,112,102,92,108,112,101,92,112,105,101,97,102,101,97,101,116,95,106,99,104,108,96,92,103,100,111,111,110,93,103,101,104,102,107,109,112,111,101,95,113,103,104,101,135,94,101,96,105,128,113,103,108,72,102,112,105,112,107,103,100,105,104,100,102,125,112,102,98,114,110,99,112,102,107,106,104,92,120,106,105,114,121,113,107,98,100,104,102,109,95,99,126,116,112,108,109,105,94,109,103,93,109,101,107,89,100,128,109,109,106,101,96,112,111,107,106,99,102,104,109,110,96,101,101,103,103,105,112,87,94,105,113,100,94,102,94,104,97,102,105,99,106,124,113,112,94,109,94,109,103,106,108,111,109,107,86,109,110,99,112,110,96,115,95,113,94,104,109,108,112,105,131,110,92,103,106,111,91,100,99,98,95,105,111,119,114,107,93,88,104,107,102,117,92,109,103,105,108,110,111,113,82,125,98,103,103,100,109,115,97,107,104,104,92,108,120,102,111,107,122,100,103,116,66,108,102,115,97,108,109,106,104,95,103,96,101,102,108,109,111,101,112,108,91,106,137,97,111,104,103,104,112,106,111,100,93,101,105,104,108,96,107,114,107,90,105,113,105,99,96,103,94,108,111,104,97,104,102,102,102,98,100,102,117,100,101,99,107,110,109,107,95,113,102,102,109,107,105,104,97,112,105,99,104,122,97,101,105,102,105,101,99,86,107,112,107,112,113,109,110,107,101,108,96,103,109,93,110,106,113,107,105,97,113,112,102,102,98,114,110,113,109,109,105,104,101,100,107,98,97,111,102,89,109,96,103,109,115,108,99,118,95,108,101,105,116,108,106,112,99,107,116,98,111,109,120,103,103,104,90,96,113,119,101,98,103,110,104,102,117,105,99,117,102,104,109,110,101,115,113,95,94,127,111,98,99,110,104,86,115,106,101,101,121,109,98,105,108,102,105,101,101,98,108,106,101,101,109,108,108,106,117,99,104,116,101,101,108,103,115,68,104,101,113,106,120,108,104,83,104,103,102,103,115,100,110,97,99,104,104,98,96,117,96,109,108,102,106,112,113,96,102,103,105,98,103,110,110,94,103,101,113,88,107,100,113,115,95,96,117,105,109,99,106,110,109,109,98,106,107,107,79,96,105,109,110,104,105,105,79,109,96,102,102,109,105,96,110,112,108,111,113,105,119,99,115,97,96,98,113,103,116,107,106,111,111,107,110,99,109,109,116,89,97,99,114,109,93,117,112,94,117,101,99,106,104,105,98,109,108,107,96,100,103,99,111,97,109,110,88,101,109,101,103,123,106,91,107,115,89,110,89,96,83,115,97,105,110,108,92,91,91,100,113,103,99,97,102,98,113,113,118,97,115,109,98,102,91,111,105,114,96,96,106,104,108,102,98,101,117,98,98,105,79,117,102,94,103,102,116,88,102,100,85,93,107,110,101,97,118,98,100,115,95,101,104,105,105,112,111,109,102,101,114,108,107,120,111,113,113,100,96,105,102,107,111,93,100,106,94,112,92,100,109,98,98,105,98,107,95,99,112,108,106,109,104,104,99,104,98,119,113,99,103,111,98,112,86,95,106,122,100,95,106,99,110,96,101,104,104,105,98,105,102,139,95,112,119,80,87,91,103,100,101,106,92,108,106,103,92,100,108,102,98,112,107,112,112,102,103,98,121,110,104,107,96,80, +526.76428,82,102,111,97,87,92,103,86,105,99,98,108,101,95,107,100,92,106,104,101,105,104,93,106,103,101,93,105,105,109,105,118,102,104,116,103,104,94,100,96,97,115,99,103,109,117,101,102,105,117,104,111,127,96,95,109,105,103,102,100,103,99,99,100,111,112,99,102,108,108,103,106,109,96,103,119,112,99,114,108,96,111,83,109,117,98,100,105,94,107,95,113,93,110,100,95,96,98,101,92,95,91,87,98,91,104,105,98,93,100,94,86,109,105,100,99,100,105,88,111,96,115,96,101,104,104,122,95,103,105,107,108,101,109,112,105,104,113,92,102,104,100,111,95,91,100,115,105,96,102,101,92,105,102,113,118,107,120,100,96,99,105,114,99,111,96,87,105,104,106,102,96,96,89,100,103,113,88,85,99,114,99,99,116,115,108,103,104,102,97,104,92,102,106,94,101,98,107,94,106,102,112,102,114,107,109,97,109,103,117,97,92,99,109,108,108,94,95,103,102,110,106,100,98,85,99,98,108,108,103,94,99,115,110,114,104,99,109,112,102,103,102,99,105,101,109,111,125,88,99,105,108,106,99,99,97,94,105,93,101,103,106,102,116,92,102,99,100,113,112,103,106,117,111,105,108,110,113,105,117,122,108,100,118,110,103,102,100,105,104,106,111,105,99,117,106,91,114,106,105,110,94,112,115,106,105,100,103,107,106,94,101,113,105,111,102,119,105,103,104,117,104,90,97,106,118,94,98,109,104,102,112,99,110,108,100,110,105,104,110,105,89,94,97,101,114,102,113,105,119,97,103,109,100,101,102,105,110,108,108,104,111,100,101,105,95,121,111,106,100,100,80,102,99,112,97,110,104,88,106,99,102,98,104,107,112,102,101,90,100,120,104,96,112,100,96,110,100,107,109,101,105,102,94,105,113,95,81,98,105,113,95,103,113,98,81,110,97,100,102,109,95,108,102,103,102,96,95,98,109,103,92,110,102,100,105,102,114,111,110,103,110,105,103,97,102,104,95,108,103,92,115,105,121,107,107,98,102,107,101,100,106,83,116,116,95,105,107,98,102,112,108,100,95,113,98,104,103,109,108,107,107,103,98,95,99,106,108,108,99,106,125,96,108,96,101,107,99,114,104,117,104,104,71,111,109,77,110,107,112,107,104,107,96,99,124,108,111,97,94,98,105,106,76,111,103,106,114,94,99,109,105,101,107,100,103,99,87,99,116,98,88,103,94,101,114,121,105,108,82,95,95,98,97,89,105,109,104,101,104,103,111,106,105,103,124,105,104,109,92,104,113,109,108,110,104,99,99,105,99,78,95,103,101,103,98,104,95,110,105,107,107,103,110,109,105,90,94,99,108,107,107,95,87,106,103,94,112,106,108,94,114,107,109,105,108,107,116,117,113,109,127,98,93,113,96,100,106,103,104,100,100,107,118,108,106,96,103,94,107,105,99,97,101,93,92,100,111,113,103,97,108,102,99,108,106,111,106,109,107,119,104,85,110,83,103,105,104,109,108,98,108,117,98,91,108,68,111,104,96,102,104,101,106,116,103,108,92,99,93,109,106,100,120,107,101,102,102,106,116,104,106,103,113,98,95,104,104,116,108,107,109,86,101,96,114,102,97,110,106,107,103,105,107,103,102,109,102,79,114,113,98,105,103,103,102,99,96,103,120,109,107,116,106,100,102,106,108,108,108,112,103,102,105,99,111,103,102,90,104,116,102,95,111,113,101,103,99,103,101,111,111,105,106,95,107,109,110,100,108,110,95,108,109,73,112,102,118,75,110,114,109,105,105,110,113,108,99,108,114,109,111,109,108,110,68,102,102,101,114,114,113,90,99,111,106,119,106,102,101,108,98,104,110,110,101,101,106,94,115,102,106,104,103,105,115,102,108,117,117,103,98,117,102,100,91,95,102,96,101,103,99,104,97,99,102,97,105,103,87,78,99,93,104,103,102,96,101,112,93,107,112,98,101,102,105,113,108,79,103,102,117,103,103,84,108,98,112,112,110,105,114,104,107,97,107,102,110,96,110,95,117,105,103,104,94,102,110,102,91,110,108,110,98,107,103,120,105,95,102,116,105,94,107,105,103,105,108,110,106,100,112,107,110,93,103,95,94,105,108,107,117,112,103,102,98,97,111,104,115,94,111,105,98,111,96,100,116,73,121,111,109,96,100,109,105,105,112,103,110,93,107,108,91,108,100,108,95,111,102,108,102,99,112,108,108,110,94,101,121,113,114,103,118,108,96,104,77,105,103,120,96,100,105,108,108,106,104,98,83,101,98,115,117,99,104,98,106,106,112,129,105,95,100,109,105,86,114,103,126,114,102,103,104,106,100,85,109,101,98,107,111,104,92,106,115,117,114,92,94,112,103,88,127,91,110,98,102,116,98,96,101,111,113,82,95,102,109,106,121,105,104,102,115,109,97,114,108,95,105,110,106,97,104,109,119,107,112,105,107,113,109,99,95,105,71,107,104,107,109,98,111,112,111,102,103,111,102,105,101,108,122,106,109,105,108,120,106,105,110,67,99,94,98,107,101,110,105,108,104,106,121,101,112,111,102,102,108,103,107,100,100,123,111,106,102,114,109,101,99,113,110,91,111,108,103,102,81,91,109,94,113,117,108,103,106,114,121,102,107,97,100,98,102,119,109,106,95,107,103,106,116,106,113,109,116,102,108,98,106,105,112,97,107,109,101,109,98,106,115,99,102,109,99,117,116,110,110,104,99,105,99,95,108,114,109,119,102,116,101,113,93,112,105,125,98,109,115,98,103,101,106,95,105,112,106,110,104,101,116,101,104,103,117,106,101,109,110,112,115,102,105,107,109,100,94,98,113,109,105,108,111,103,109,106,96,104,116,109,102,113,105,102,112,103,113,107,109,100,105,107,106,113,106,114,99,104,89,113,104,97,105,107,102,95,112,97,106,101,112,106,102,108,113,107,102,105,99,106,106,102,109,91,109,105,109,91,104,102,101,99,117,101,109,99,101,121,105,109,92,112,115,100,95,110,103,108,112,108,118,112,114,119,117,106,100,105,109,110,113,99,112,111,107,107,111,110,110,104,99,119,102,120,101,106,108,103,111,113,102,113,110,92,104,107,94,100,105,104,103,100,73,101,83,81,104,112,96,101,102,103,98,106,103,105,102,101,110,113,118,108,108,103,102,100,111,111,107,113,113,111,112,108,99,109,110,105,117,98,100,124,107,107,102,95,103,105,107,113,109,96,109,113,105,104,110,102,116,98,109,106,89,103,105,102,99,104,108,97,105,103,111,106,115,104,96,104,98,104,94,104,114,102,89,107,116,101,100,120,113,98,110,105,91,108,114,102,124,113,108,97,108,96,107,101,106,109,97,97,112,108,108,87,107,112,100,99,112,107,96,99,107,112,112,103,106,106,102,120,112,108,112,103,106,99,108,98,107,95,102,106,102,117,108,98,105,113,100,114,99,98,105,113,103,98,114,106,108,111,99,108,100,105,102,112,112,105,101,100,130,108,100,105,107,95,99,114,113,94,105,106,106,115,107,105,119,102,102,98,108,104,118,106,118,110,109,104,106,117,99,106,109,113,108,106,114,105,108,102,103,93,108,105,111,101,107,102,112,119,116,83,102,99,97,94,114,97,102,102,109,101,106,108,101,104,114,100,111,105,109,109,113,103,98,104,98,104,105,97,103,106,108,101,106,116,100,102,113,106,109,97,113,105,87,125,113,99,105,126,103,97,111,108,71,106,103,111,102,113,102,106,105,106,105,113,109,110,105,114,101,103,109,111,126,107,111,109,101,113,98,111,110,105,104,111,87,108,104,109,111,107,113,103,116,117,100,105,97,102,109,106,108,103,96,103,113,114,109,111,109,102,100,124,109,105,110,117,94,101,115,96,110,110,111,112,106,105,109,113,105,102,99,106,97,99,102,102,94,117,103,98,114,104,105,108,91,101,109,101,104,100,99,99,95,99,113,96,103,107,109,112,99,114,109,104,111,109,107,103,94,91,114,103,106,105,104,106,101,105,102,99,111,102,116,74,94,104,100,105,110,107,110,102,103,95,113,108,102,102,99,97,106,84,110,105,126,101,115,127,113,109,103,95,107,106,109,106,100,111,101,111,106,111,113,105,121,100,107,107,100,108,92,95,112,111,104,110,110,95,98,130,110,110,106,106,108,121,104,102,113,118,107,108,101,88,107,101,94,105,109,101,103,115,99,106,101,109,116,101,92,91,99,102,109,108,107,102,101,106,105,115,109,122,109,106,104,103,102,104,114,115,87,95,107,113,100,102,92,107,138,118,106,101,111,100,96,98,90,103,102,112,101,108,93,100,106,102,120,102,119,103,98,75,108,109,94,109,104,124,95,108,120,104,99,114,110,92,95,112,109,97,105,101,121,97,103,99,105,110,98,107,107,111,108,97,104,93,107,112,106,103,96,106,108,110,95,102,103,91,104,111,98,96,106,103,113,96,111,109,101,101,102,92,117,116,99,109,98,104,108,106,100,104,108,99,102,114,107,109,103,109,105,110,102,121,110,94,91,113,105,104,100,115,97,99,105,115,119,102,111,105,102,113,101,113,103,118,98,103,105,105,106,102,105,104,112,111,114,109,100,113,102,104,94,87,109,98,115,108,101,94,96,113,110,103,115,99,106,107,99,102,106,108,122,104,112,109,111,106,97,118,109,134,103,102,110,99,102,101,108,96,105,98,102,100,95,105,107,135,109,111,98,97,99,105,98,103,124,116,97,113,91,120,107,113,97,106,97,105,99,107,112,104,97,98,111,103,107,103,102,99,104,129,102,105,101,109,106,103,121,109,108,102,93,98,106,86,100,103,102,105,107,98,100,100,84,109,99,96,99,97,96,104,89,119,98,96,106,96,91, +526.90497,94,86,103,94,101,106,101,81,111,116,96,96,95,98,103,103,106,89,109,87,100,110,108,91,101,112,101,113,104,115,98,110,143,96,109,90,112,103,106,105,106,110,98,99,95,108,107,114,108,110,93,106,99,105,103,97,96,88,98,96,111,116,104,99,108,110,108,102,103,96,99,103,102,110,104,128,87,103,102,110,95,114,120,99,108,106,114,93,111,97,105,105,106,111,121,102,102,96,112,110,105,108,102,100,95,107,102,103,103,100,97,98,102,98,105,98,95,101,102,117,109,102,113,110,97,106,101,96,109,108,104,101,89,100,117,97,101,96,94,100,99,85,116,98,98,105,113,101,101,102,105,87,100,95,114,94,104,86,102,103,97,108,99,112,110,106,101,101,97,95,103,109,93,104,101,104,114,72,107,115,108,108,92,106,106,104,97,104,103,93,99,91,112,99,96,111,103,101,107,90,109,96,107,117,108,107,95,103,111,104,91,122,95,101,111,109,100,103,64,107,110,102,117,97,107,99,98,96,113,108,84,103,111,100,106,100,96,109,103,94,114,99,107,97,97,87,102,96,103,98,103,99,90,95,101,105,103,104,104,97,102,98,105,101,103,100,88,105,105,82,96,100,117,112,105,105,106,123,99,104,102,113,143,121,86,90,102,100,81,105,109,102,95,92,95,108,100,104,102,106,102,86,91,97,109,98,95,116,101,94,99,116,100,114,102,116,108,106,96,98,106,101,108,94,111,108,94,99,99,114,112,100,105,100,100,103,121,106,105,103,102,93,102,98,122,110,110,105,95,112,106,109,106,103,117,105,106,99,112,106,96,103,110,97,106,102,104,100,95,114,103,101,108,106,105,98,104,107,104,103,110,105,103,100,104,103,99,98,130,103,102,98,111,105,96,97,113,109,91,109,103,108,104,91,91,98,98,103,103,90,116,90,106,102,103,96,103,93,102,108,99,95,102,101,117,78,94,84,84,112,106,96,96,104,99,109,105,115,96,92,101,99,107,97,101,85,111,97,107,101,95,100,91,98,105,98,99,99,115,101,90,103,101,110,95,105,95,103,105,102,98,99,98,101,104,101,113,107,113,113,100,104,113,101,109,114,110,112,110,91,115,101,114,102,101,116,100,104,100,99,105,108,98,95,101,104,103,84,109,102,107,118,103,107,107,95,109,95,107,98,101,103,111,75,104,109,111,92,134,90,102,97,102,102,107,105,102,102,98,115,113,108,105,101,106,104,101,105,113,114,115,113,113,106,109,104,107,99,92,113,101,117,113,105,103,97,83,116,106,97,85,98,114,108,101,101,99,103,106,110,109,90,108,101,106,105,107,98,115,104,99,105,99,124,113,100,100,103,112,105,111,104,110,101,102,105,83,101,103,86,99,113,100,102,105,110,115,100,100,112,113,109,102,105,99,99,106,99,91,102,92,109,99,99,118,97,104,96,101,104,116,110,96,100,100,110,94,109,109,110,105,100,115,102,103,106,121,110,112,106,96,96,104,108,131,106,109,101,106,97,107,111,107,96,102,103,103,108,103,93,101,111,100,89,80,101,101,97,104,101,101,107,102,113,97,101,103,96,102,100,91,96,111,90,109,105,110,135,94,131,103,98,117,100,100,101,97,99,106,103,97,93,108,110,95,100,105,92,103,102,122,107,96,102,103,105,103,91,96,110,114,93,106,104,98,102,116,113,103,113,103,107,106,106,107,116,92,96,117,101,103,111,102,108,92,110,97,102,103,102,114,109,111,103,98,96,113,103,106,104,102,100,117,98,96,107,102,107,100,109,95,105,116,108,113,103,90,101,105,102,87,111,98,99,99,110,110,109,110,101,109,82,108,100,105,94,106,98,112,100,99,96,96,110,93,113,103,99,112,103,101,91,120,88,99,112,99,109,107,110,114,107,109,96,104,103,111,99,98,111,109,112,105,88,88,122,103,114,94,108,106,104,101,112,103,101,91,104,111,95,103,100,107,109,107,99,105,112,108,101,97,99,110,96,104,99,107,110,104,110,122,112,99,103,116,91,95,112,105,96,102,90,121,106,92,118,99,88,91,106,111,111,116,106,101,100,108,95,94,101,110,101,120,96,118,107,103,117,114,122,94,97,99,83,106,99,95,91,95,102,105,108,100,100,105,91,113,115,119,100,97,98,105,102,102,101,103,102,90,117,97,109,100,104,102,102,94,101,83,109,95,101,91,111,104,106,116,96,94,103,114,112,101,108,106,114,94,101,108,105,111,115,116,112,105,99,96,100,98,117,117,97,106,102,113,107,105,106,86,107,95,106,101,101,99,121,120,119,97,99,102,105,103,102,112,112,100,107,99,104,113,106,103,98,105,96,97,106,116,104,92,111,99,98,98,114,105,94,87,106,105,102,123,99,105,110,107,93,104,100,104,115,109,100,101,92,104,105,109,104,96,90,104,103,96,103,84,109,99,103,106,103,104,112,117,110,129,113,127,110,95,121,120,106,68,105,113,99,106,107,105,95,110,117,105,113,103,109,98,88,112,118,102,97,113,112,106,112,113,105,103,109,120,106,107,110,110,112,105,120,116,101,119,95,107,109,107,110,101,100,102,95,81,115,98,98,113,104,101,109,104,96,108,112,105,103,109,113,95,110,112,100,112,105,116,114,116,101,104,107,98,111,112,107,116,103,99,110,117,113,108,112,103,108,105,110,98,109,106,109,110,106,105,110,103,105,94,101,119,104,98,101,105,99,116,117,108,87,129,101,104,103,97,93,103,100,112,116,96,101,106,112,104,108,107,103,91,107,125,103,108,108,102,112,109,105,101,97,115,104,99,95,106,104,93,102,112,104,103,110,104,104,113,101,101,102,111,129,122,107,100,102,95,104,111,109,98,104,109,123,109,105,103,111,102,103,102,104,113,111,99,102,116,88,113,117,109,98,106,112,98,102,107,117,97,102,71,95,111,97,107,104,105,111,98,117,98,112,94,118,110,103,91,85,106,117,109,104,111,109,132,110,95,101,101,110,102,94,92,111,92,107,102,104,107,97,109,110,110,107,102,114,114,98,112,111,104,103,101,105,100,102,101,113,108,96,97,117,107,108,108,112,102,103,106,99,118,110,105,104,111,109,115,110,109,92,111,108,99,102,109,108,100,100,106,112,108,116,89,109,99,90,112,112,106,110,103,97,106,110,114,111,109,106,108,95,100,99,107,104,102,106,101,113,102,105,114,108,112,114,112,70,100,101,99,105,105,121,107,104,109,102,110,109,104,93,106,105,112,98,111,109,102,123,106,109,105,93,112,101,107,101,110,107,106,106,109,107,110,106,103,97,95,107,116,128,95,106,99,102,106,110,97,111,106,112,107,100,106,100,116,115,102,105,111,109,108,101,103,109,104,112,95,100,116,104,131,102,109,96,108,105,108,110,109,111,120,108,112,91,95,103,106,111,116,112,108,112,108,103,109,107,92,104,102,105,108,107,105,115,101,102,95,105,117,100,128,104,112,103,115,108,102,122,106,104,100,109,98,97,116,108,106,110,106,111,109,112,110,104,101,101,105,98,104,110,93,113,107,122,105,107,108,107,99,127,100,104,116,112,96,88,117,100,87,103,110,99,112,121,106,102,103,113,116,108,105,116,108,102,99,99,101,98,96,102,107,95,106,115,102,103,97,97,112,107,102,110,111,99,107,118,91,109,99,103,106,105,105,106,98,106,89,103,113,109,121,108,100,124,113,112,107,98,104,109,100,102,106,102,114,108,102,117,108,105,115,110,115,106,123,101,115,112,107,109,103,106,77,121,102,100,98,102,101,102,102,100,98,103,112,94,105,109,108,117,99,105,102,108,105,103,101,103,101,95,110,102,104,95,104,98,100,106,101,104,105,99,90,108,111,95,113,120,114,111,120,110,109,102,99,107,105,110,109,104,99,105,106,105,108,108,109,112,104,99,91,107,108,102,103,109,110,91,108,100,94,105,102,112,100,110,102,120,107,105,119,103,89,107,106,103,91,94,103,103,99,104,105,109,115,110,107,100,96,103,112,105,109,102,106,109,102,99,106,114,109,105,111,117,103,112,103,103,104,103,107,112,117,104,100,103,105,106,117,110,91,109,101,102,101,99,113,123,102,109,105,110,98,108,101,101,111,108,104,107,97,105,112,106,104,110,103,103,106,97,101,107,110,106,121,112,98,119,118,115,102,105,115,106,108,111,114,111,109,107,108,100,111,111,125,102,109,105,98,108,101,112,102,93,106,104,106,100,100,103,99,109,106,100,110,103,109,105,104,110,112,99,105,95,96,103,106,99,107,102,106,102,121,109,95,113,104,112,102,113,106,123,88,96,111,108,120,102,98,113,106,106,113,116,103,106,103,113,117,103,102,106,99,102,101,104,100,103,96,109,120,99,113,105,108,98,94,88,95,105,94,103,117,99,124,120,103,102,105,99,113,106,111,110,100,94,105,108,93,108,110,112,108,118,111,116,109,100,110,111,109,114,98,103,107,111,69,104,101,113,99,104,106,101,99,111,96,100,115,99,109,115,99,98,101,101,100,111,102,111,106,105,102,91,119,114,110,104,110,106,108,99,98,95,117,94,109,104,112,101,98,111,116,98,97,105,91,105,103,123,107,118,108,108,99,104,118,100,106,109,113,105,114,107,114,104,97,107,105,104,99,118,118,111,117,97,110,111,106,116,94,90,102,99,109,101,98,95,99,106,94,102,102,108,112,102,63,101,106,106,105,103,98,102,104,88,106,116,99,103,111,106,108,106,97,108,106,97,93,109,98,108,103,93,117,93,104,102,118,97,99,101,112,101,102,101,95,111,100,108,117,114,104,104,109,106,107,106,109,122,99,80,112,97,82,102,97,99,106,120,102,107,98,101,108,118,104,109,110,85,101,109,101,98, +527.04572,119,98,98,106,101,84,107,88,80,110,94,96,114,115,107,98,97,120,113,105,107,92,102,92,100,118,100,105,99,113,104,110,100,110,116,100,111,110,108,106,100,112,100,120,96,115,97,101,99,115,95,114,115,100,107,95,103,108,106,102,105,100,99,113,118,111,102,108,117,101,117,110,101,116,110,109,98,108,101,106,114,111,105,99,95,89,86,99,104,98,94,111,104,102,113,102,104,101,97,114,103,102,95,104,102,105,102,112,110,100,94,96,91,120,95,102,106,99,117,107,108,106,105,106,106,107,105,111,106,100,108,100,93,112,78,109,115,104,97,119,103,108,96,104,97,116,111,106,98,77,108,115,100,100,99,114,95,102,109,114,101,109,111,99,113,106,105,98,90,100,119,111,92,110,103,112,106,93,109,109,79,103,105,95,106,103,102,100,114,94,92,116,113,109,118,112,103,102,106,106,91,100,100,109,97,99,97,105,105,102,101,109,111,110,115,90,109,100,96,105,104,110,117,96,102,114,104,100,112,104,94,114,104,100,122,106,111,106,103,99,101,105,106,110,97,121,95,102,107,98,99,111,108,112,99,119,99,105,103,113,95,103,97,103,96,113,113,108,97,104,94,119,108,109,103,107,103,108,101,99,100,103,110,102,98,100,99,102,103,106,100,107,99,104,112,103,111,102,110,108,99,108,111,121,97,107,99,125,103,116,105,113,111,120,116,87,103,108,110,120,108,99,101,121,100,112,98,101,114,108,109,98,103,111,104,100,117,103,103,100,110,101,109,95,88,114,98,108,101,107,101,109,101,92,117,107,105,104,98,87,101,97,99,109,88,99,102,111,97,106,106,98,95,106,116,106,110,117,105,104,109,89,105,106,98,97,96,121,101,99,104,101,103,102,105,102,114,107,91,103,89,111,100,109,99,99,104,99,104,111,103,90,114,113,112,101,95,98,104,99,94,106,87,102,102,102,94,92,102,103,98,91,107,110,101,109,110,119,91,101,134,89,102,108,98,114,87,105,106,109,102,108,107,109,100,113,109,97,118,99,106,106,100,90,112,117,96,109,109,100,118,120,111,109,105,83,95,107,114,95,96,104,119,116,108,109,112,104,102,93,94,106,96,104,86,111,106,113,115,91,103,102,101,112,115,110,98,111,104,104,109,114,113,122,101,99,102,103,107,104,91,100,104,103,112,118,101,102,103,105,101,113,102,108,98,111,100,109,73,113,112,116,113,96,108,106,134,105,111,90,94,111,104,95,108,103,109,107,106,99,109,118,95,102,102,109,107,99,106,102,104,94,103,90,82,107,109,88,101,104,116,85,109,111,99,104,117,106,118,99,109,102,103,107,112,107,100,105,101,80,101,115,105,98,98,102,126,101,94,114,118,103,101,98,84,102,107,106,104,99,108,112,91,98,106,96,108,108,102,99,109,101,95,109,104,109,96,98,97,105,94,112,105,99,104,100,81,99,111,108,91,116,112,103,102,103,102,100,105,107,106,99,100,103,94,101,106,99,114,106,112,105,92,112,105,98,118,112,109,118,110,120,106,94,96,95,104,114,76,115,115,103,102,104,109,94,95,110,102,94,106,101,102,96,110,102,104,97,112,108,95,122,106,97,100,102,103,98,108,113,98,102,113,99,95,100,124,109,100,103,100,115,109,99,103,96,108,105,122,115,98,101,100,97,94,109,98,105,102,104,100,111,106,109,109,110,104,99,106,113,100,104,101,105,111,108,100,113,100,104,111,103,112,100,95,110,99,100,108,95,107,105,92,105,107,108,95,96,113,116,103,108,103,108,94,102,105,107,104,107,96,101,104,96,104,106,107,113,95,103,115,103,110,97,107,107,117,106,102,95,108,117,100,107,117,112,110,91,101,96,101,103,106,115,104,99,117,105,115,108,100,114,126,104,97,97,99,90,108,97,101,100,92,111,100,100,103,103,103,110,115,101,103,102,105,96,107,94,112,107,109,106,102,98,103,104,97,105,100,106,108,119,103,126,99,110,101,114,111,104,121,113,117,105,116,102,101,104,106,101,125,108,105,103,103,107,93,102,107,97,110,99,101,106,106,109,99,103,87,112,114,103,101,117,114,97,104,106,107,96,90,110,113,113,101,109,108,98,88,94,107,101,115,102,104,105,102,102,97,104,97,97,101,106,125,109,119,96,98,112,105,103,101,105,98,107,99,103,101,105,106,101,101,106,108,131,105,90,101,105,108,97,94,107,102,87,93,95,109,96,113,103,105,103,95,108,95,110,108,112,109,104,109,102,106,114,120,96,109,110,108,112,102,110,113,117,109,109,103,111,102,105,113,103,104,100,101,105,102,103,99,102,102,102,78,94,91,116,107,105,101,101,94,103,101,95,99,100,111,105,119,98,102,101,102,104,105,111,100,113,94,115,105,101,103,111,104,96,110,99,98,113,91,98,110,101,106,97,105,100,102,100,82,87,102,108,98,103,126,102,111,92,116,101,96,115,104,109,93,114,99,90,114,101,104,116,106,104,85,113,98,98,96,102,126,111,117,102,108,112,105,98,97,103,109,107,109,106,114,93,111,112,108,96,105,115,97,105,101,103,108,101,91,99,116,112,111,98,108,112,104,100,105,107,108,101,70,114,103,115,106,105,110,95,116,110,105,101,99,97,93,97,117,121,108,108,99,100,121,117,104,111,114,87,118,113,116,118,107,105,102,106,117,112,100,111,95,104,119,105,108,105,106,106,107,106,106,105,104,128,113,113,75,108,109,107,106,102,99,112,112,106,111,104,108,108,101,109,115,105,99,127,107,124,114,110,108,110,105,107,105,103,102,113,121,111,115,106,101,112,99,115,115,103,110,106,113,107,99,106,120,107,99,107,114,114,112,100,108,112,132,108,120,116,102,104,111,114,117,114,109,107,107,95,115,121,108,117,104,102,110,114,99,126,110,108,102,94,112,106,101,115,102,109,106,92,110,107,102,97,109,102,105,100,131,122,110,111,102,95,107,109,121,95,85,96,106,108,109,88,103,104,101,106,115,106,108,106,108,117,77,110,113,109,121,101,107,105,110,105,107,115,105,107,107,104,106,113,104,119,119,109,105,113,105,104,116,110,104,102,106,99,98,110,112,116,104,111,108,94,108,105,107,108,90,117,117,112,121,101,90,126,109,105,105,109,98,106,106,102,113,108,120,120,110,111,113,121,113,102,87,100,102,103,105,102,111,106,113,117,110,112,91,104,92,110,103,99,113,112,104,113,112,107,119,102,110,114,98,99,100,107,109,100,109,114,116,102,108,97,111,97,100,112,103,100,121,110,112,107,109,107,96,107,108,98,97,101,111,103,92,106,98,111,100,113,103,113,96,118,104,105,105,106,103,114,101,96,105,108,108,119,109,105,108,105,108,104,108,100,110,94,104,106,111,103,104,97,102,105,101,112,98,107,100,106,101,115,102,101,100,106,118,95,108,116,108,99,108,104,114,104,109,99,92,109,99,101,106,111,109,109,103,111,109,111,95,101,112,99,104,97,105,108,90,101,99,108,111,112,99,120,102,109,120,94,104,103,94,100,114,101,114,108,116,107,106,107,105,108,107,107,95,100,81,96,111,96,113,105,97,124,118,111,107,108,126,112,112,106,109,104,91,104,113,113,100,111,105,108,118,103,108,99,101,113,88,104,112,115,113,107,117,96,100,107,117,95,107,96,108,95,111,102,113,105,108,108,100,106,112,91,98,109,114,110,118,108,99,98,103,104,103,92,114,105,109,100,109,107,90,100,107,106,96,114,92,100,107,106,104,100,107,117,106,117,102,110,97,108,103,102,110,105,102,97,92,106,100,110,91,119,108,107,103,107,116,118,113,96,96,106,115,106,105,117,99,117,100,107,111,91,108,110,104,97,108,110,99,104,110,113,105,125,104,100,111,108,119,78,109,102,108,106,105,105,107,97,117,111,102,121,110,112,121,112,105,108,96,110,93,98,111,102,97,104,104,96,107,112,94,95,89,110,99,100,95,103,114,95,110,108,109,99,103,97,111,98,119,100,104,111,104,97,116,110,112,104,104,92,109,104,94,98,95,102,110,113,100,101,100,103,109,101,87,112,91,113,139,109,104,108,91,103,99,106,109,108,103,101,104,96,91,106,111,124,98,116,106,94,107,104,113,103,109,112,106,104,104,91,106,115,113,100,121,107,101,114,112,115,111,110,104,97,106,104,102,105,101,107,107,99,99,114,91,101,119,111,102,119,104,105,114,104,102,105,103,113,104,120,107,92,115,101,92,108,103,113,101,115,119,115,108,111,99,104,102,103,98,110,95,112,110,101,115,105,110,103,111,84,107,115,106,104,113,104,88,107,113,136,115,102,105,103,102,99,121,108,109,105,112,111,109,106,112,105,108,99,102,97,103,106,103,96,103,112,102,98,106,103,113,107,102,103,106,100,101,98,103,128,105,99,98,99,108,97,112,116,112,109,94,106,118,95,123,110,103,99,98,94,105,115,103,107,106,103,99,100,107,114,101,101,105,113,98,107,110,114,99,108,95,104,105,98,114,108,109,98,101,112,104,115,106,106,102,113,108,98,101,94,110,117,122,111,123,108,109,101,105,98,112,105,107,98,109,113,113,99,111,95,113,113,113,105,97,97,114,101,99,113,103,93,105,120,98,104,99,106,98,108,81,102,106,114,93,101,125,113,103,103,108,107,95,99,106,106,123,97,101,112,102,106,83,105,106,117,93,117,108,106,99,98,107,100,88,107,109,101,108,110,103,94,96,101,120,100,109,91,105,131,103,103,116,106,103,102,130,103,107,108,106,105,106,96,108,103,100,107,112,106,114,102,103,88,117,102,94,99,115,112,108,108,99,92,113,99,101,101,87,112,115,100,105,116,88,115,106,99,99,94, +527.18646,99,99,88,106,107,113,87,111,112,101,97,105,97,105,108,108,117,104,107,93,118,107,101,84,108,95,101,103,110,109,82,102,89,101,100,102,102,100,105,109,106,102,102,100,91,106,100,107,99,105,116,106,96,113,128,100,90,99,102,101,104,109,99,104,107,121,81,118,113,102,113,116,97,115,103,107,100,103,87,94,107,97,90,100,94,99,114,99,99,104,101,107,106,103,104,90,98,98,106,90,92,95,93,103,91,104,106,88,116,101,104,110,109,78,104,86,107,107,117,91,104,106,92,114,100,101,105,102,109,109,102,99,112,99,105,107,100,103,107,90,81,109,113,90,89,88,107,96,97,103,100,108,107,104,101,110,94,98,91,108,99,103,109,98,97,102,100,96,89,108,97,99,97,103,103,97,101,110,108,101,106,101,98,109,98,102,103,103,104,104,103,91,98,100,95,107,116,92,117,102,99,97,72,111,110,101,100,108,105,103,95,105,113,105,120,109,106,92,96,113,106,114,100,109,100,123,110,99,108,99,109,95,100,107,106,95,111,105,113,105,107,100,107,100,104,101,91,95,108,90,92,105,102,103,100,116,96,98,106,99,101,107,104,104,83,106,110,96,103,102,103,102,93,105,116,107,93,108,113,102,111,107,100,104,106,98,109,125,107,112,101,109,113,95,107,103,110,105,114,102,107,98,104,121,112,111,92,115,112,126,93,110,106,102,78,102,104,107,93,103,106,104,102,103,117,101,110,108,99,119,102,101,104,106,109,95,101,91,104,112,107,103,106,103,98,98,102,109,113,98,97,108,109,99,107,100,111,103,101,113,94,109,109,103,102,101,103,106,108,106,104,108,98,91,104,106,95,97,98,95,107,107,112,79,113,97,79,103,121,97,118,99,108,101,94,101,72,111,104,107,105,94,106,100,115,107,118,105,104,103,90,102,102,101,107,106,108,125,110,94,108,112,67,117,100,98,102,97,81,110,98,106,114,119,101,112,104,105,94,105,116,108,96,113,100,112,104,119,100,100,101,113,105,111,97,105,113,105,104,104,106,107,112,110,103,104,112,108,107,110,106,124,101,107,99,99,115,109,101,99,105,93,116,105,125,105,110,103,99,104,96,112,114,90,97,99,105,114,110,93,92,95,113,105,104,107,100,103,89,98,104,98,93,112,105,117,108,104,104,102,100,112,100,104,107,100,123,103,102,107,107,104,110,98,107,96,102,95,107,104,96,101,103,97,114,107,112,92,107,107,113,104,105,107,108,106,113,101,99,112,112,117,105,89,107,100,100,107,94,100,96,118,99,103,116,112,100,96,105,118,100,103,106,96,109,104,117,102,103,106,108,112,104,118,104,102,102,117,102,104,101,103,107,96,102,105,104,96,103,110,111,104,110,109,115,102,109,109,101,98,96,115,99,117,99,88,86,112,96,109,106,105,89,93,93,105,105,105,95,110,95,109,98,102,115,103,95,100,111,114,112,121,100,103,107,111,96,110,110,107,111,98,109,107,103,119,101,99,110,113,91,100,104,105,101,113,104,91,105,97,104,117,101,108,103,100,108,104,101,104,113,101,106,116,108,105,113,111,106,101,100,106,111,102,112,109,110,107,94,112,104,98,101,102,97,112,111,111,99,100,108,100,98,121,93,103,113,114,107,71,103,104,98,91,100,108,116,104,103,98,102,103,90,86,110,93,107,120,107,108,112,93,94,109,101,111,113,106,120,83,103,111,97,114,95,114,105,109,100,99,97,79,116,108,79,99,107,108,98,106,101,122,105,107,102,100,99,92,102,113,109,108,106,107,108,103,71,92,109,111,108,105,98,103,112,106,101,88,101,103,107,89,103,102,108,99,113,114,109,102,103,106,103,105,116,108,108,100,115,104,108,117,111,95,103,118,105,108,105,110,98,116,93,109,95,105,100,104,102,100,111,109,108,103,99,106,107,107,101,111,99,98,100,107,101,97,104,97,108,101,104,109,108,109,100,92,104,110,99,104,95,103,95,103,94,100,103,106,118,90,119,114,109,101,105,95,109,103,100,114,83,110,111,103,122,93,109,97,112,93,109,112,106,102,104,98,102,100,107,109,118,111,110,118,106,107,120,108,101,106,103,105,113,120,91,108,95,112,103,110,99,102,111,103,96,101,112,101,109,107,95,99,103,98,109,99,104,122,98,105,107,115,106,102,102,101,103,104,100,100,111,108,113,108,111,111,98,97,107,101,94,118,101,106,103,111,107,104,106,109,113,108,110,110,92,100,94,114,74,105,104,108,89,102,96,107,112,110,103,115,92,111,100,88,84,111,110,104,103,105,106,107,108,101,115,106,110,112,100,98,115,106,95,106,109,101,104,110,110,105,106,75,91,95,97,105,100,98,112,109,96,110,104,104,100,106,100,99,109,110,93,113,104,106,103,106,99,102,96,110,101,105,106,108,103,104,111,99,96,111,103,100,86,110,102,126,110,109,106,98,77,101,115,110,107,109,120,105,103,109,92,108,110,108,100,104,93,108,98,108,107,102,113,89,109,95,107,111,93,108,112,107,99,109,104,104,95,111,100,100,110,88,102,96,112,111,112,103,99,98,114,103,102,98,106,114,117,90,108,109,117,105,110,106,111,116,101,114,111,112,99,102,99,96,103,99,103,100,104,119,94,109,98,105,104,105,104,112,108,105,95,106,109,99,113,103,103,100,107,112,91,111,120,102,101,113,105,103,94,110,102,104,99,103,106,106,91,79,106,108,102,103,96,103,107,110,102,107,106,92,98,115,99,102,112,105,108,100,109,104,99,98,101,102,100,96,101,100,108,106,86,104,94,95,99,96,104,102,101,91,106,106,117,104,114,99,113,101,105,94,109,105,100,109,117,104,106,95,115,105,112,93,107,112,110,86,78,110,113,105,101,90,79,98,117,109,97,86,110,110,98,118,93,109,100,106,102,107,109,97,108,95,100,97,99,105,105,110,98,95,119,112,95,99,110,121,116,95,106,117,101,107,91,108,104,122,105,106,112,104,101,102,103,103,127,100,112,102,99,100,102,106,104,105,102,108,99,101,100,104,106,106,103,100,115,102,107,117,104,99,92,114,113,107,104,97,107,111,89,91,109,112,105,107,104,105,101,110,111,102,96,117,103,106,102,94,95,95,95,102,104,100,103,110,103,102,104,107,113,106,103,105,108,111,107,119,107,103,104,94,91,94,108,105,104,101,88,95,106,100,110,103,106,96,104,101,96,97,112,106,104,109,110,101,109,107,113,104,103,106,101,101,87,109,99,100,104,115,123,96,108,93,114,105,95,99,111,93,106,107,108,95,97,104,104,73,107,95,107,106,98,111,124,106,102,95,85,102,91,110,104,110,102,104,101,89,110,107,111,108,99,91,100,94,107,102,99,98,112,91,96,104,96,102,105,120,111,114,103,92,100,107,106,94,100,99,106,99,96,101,109,117,105,98,114,108,111,104,100,135,104,110,100,101,109,98,97,111,107,101,93,98,94,104,106,110,97,112,103,112,107,95,95,102,106,103,109,102,111,102,97,107,109,105,98,117,92,113,101,104,108,101,107,108,108,103,102,110,110,92,110,105,105,97,99,100,103,92,106,105,101,105,103,93,99,96,101,99,98,113,103,100,96,106,95,97,108,103,102,105,95,107,112,103,94,108,102,98,105,104,100,108,104,97,73,104,102,123,100,109,101,115,110,109,105,101,98,99,97,104,112,100,104,105,117,104,114,115,99,103,104,104,116,94,106,113,106,110,98,100,101,92,106,104,115,98,104,92,102,101,114,105,95,103,99,98,113,106,103,105,107,102,101,117,94,112,107,108,105,99,100,109,92,107,114,100,102,103,107,96,102,106,107,102,107,103,100,108,102,98,97,96,108,77,114,105,104,102,109,106,93,100,104,95,96,87,95,104,102,108,103,100,104,96,103,89,100,120,102,109,108,113,102,106,87,102,101,103,90,102,102,98,94,88,102,101,113,108,94,105,99,109,91,89,100,96,100,95,104,100,110,107,92,110,106,100,110,104,112,99,99,78,95,93,103,96,100,93,105,124,103,92,108,96,99,109,105,106,109,106,113,108,101,95,74,110,107,113,104,113,89,108,117,106,87,111,121,95,99,84,103,101,105,103,106,105,133,104,100,98,103,99,85,97,117,101,99,100,99,91,108,96,97,99,115,104,95,108,102,107,110,113,98,105,105,109,103,103,94,97,121,99,97,112,102,109,115,110,95,77,98,94,99,103,105,108,101,105,99,133,118,109,112,109,91,94,107,105,97,103,101,112,95,103,111,102,107,109,102,108,104,105,117,99,105,113,103,95,101,101,112,99,96,106,98,91,102,109,105,99,100,114,104,102,102,96,110,106,105,99,99,103,106,105,101,93,100,105,92,92,102,94,113,113,92,103,106,97,109,107,93,108,99,105,109,115,97,98,101,96,90,106,107,102,91,106,71,102,96,101,89,100,101,90,102,102,101,108,117,93,104,97,101,110,108,94,96,109,101,105,88,105,102,106,109,104,108,109,107,98,104,100,103,101,94,94,98,96,105,126,94,104,99,95,98,105,96,100,99,100,104,105,109,117,99,103,98,105,94,121,115,105,100,101,96,98,97,104,117,92,104,101,114,117,99,98,108,100,103,112,104,107,95,97,101,109,111,96,88,105,112,99,117,109,95,90,110,109,94,96,104,108,106,96,88,113,105,95,95,94,100,98,89,93,106,102,102,108,102,110,99,89,88,104,107,115,71,109,95,102,95,102,98,104,115,96,109,102,89,103,100,68,113,90,108,99,100,120,100,109,103,104,104,104,125,106,110,100,102,98,113,121,109,102,97,121,85,92,107,100,101,103,116,105,87,107,97,132,91,84,100,88,98,104,98,98,111,101,103,85, +527.32721,104,115,98,86,110,98,106,101,86,99,127,95,95,107,104,103,99,104,112,107,105,94,97,105,117,101,102,98,113,100,87,100,94,102,110,100,106,105,106,105,107,108,104,106,98,117,119,114,102,100,100,104,109,97,106,106,90,104,102,97,91,105,102,95,99,86,97,105,100,101,91,100,87,108,103,105,94,101,107,108,111,105,105,108,101,101,100,102,104,100,95,99,105,94,95,102,102,109,109,106,95,100,91,104,92,80,96,116,97,86,103,102,101,116,99,108,84,108,116,102,98,98,83,114,105,124,106,96,103,121,104,101,105,83,99,107,109,116,129,98,106,111,94,103,105,99,98,100,103,103,109,116,102,105,118,91,103,100,99,106,106,112,115,91,108,105,102,89,107,103,108,101,103,95,96,91,98,99,114,109,105,106,91,103,112,112,109,82,117,99,96,100,104,110,99,109,109,112,111,104,106,107,109,103,105,110,99,112,105,109,105,101,109,107,93,97,109,106,105,108,114,108,110,108,96,109,100,104,104,109,107,110,102,116,113,95,105,111,108,102,95,104,99,113,102,105,95,102,104,87,109,102,108,119,114,88,101,113,97,105,111,103,110,103,106,109,101,111,107,103,99,110,99,105,101,91,108,91,116,100,109,104,97,103,105,109,105,105,117,108,111,101,116,100,104,103,112,107,97,89,108,110,100,114,99,100,101,105,113,116,105,104,97,105,104,102,111,109,104,109,116,100,117,98,106,103,91,85,95,107,109,100,108,110,107,93,108,108,98,107,98,93,108,108,106,112,102,116,109,121,106,111,112,107,103,105,107,107,101,86,105,99,95,103,107,101,104,118,107,108,112,95,103,97,115,99,102,111,100,101,111,108,100,103,116,112,113,95,105,105,116,105,98,96,110,104,106,101,95,107,102,100,104,94,102,116,104,101,113,109,100,116,95,109,111,113,112,109,100,98,116,104,92,105,102,106,110,105,99,111,102,101,99,98,99,109,109,130,110,106,111,102,94,104,101,108,110,107,106,105,106,103,107,105,102,105,105,91,106,107,103,107,106,101,108,109,108,107,112,104,107,111,110,103,100,100,93,106,115,119,99,118,121,101,115,105,102,108,109,118,100,111,113,107,106,100,107,111,97,108,124,116,107,106,109,112,106,106,103,106,121,117,106,116,103,99,114,99,105,94,95,103,101,107,106,112,99,119,64,106,98,111,101,106,111,95,104,109,98,100,94,110,102,102,101,103,115,117,108,112,102,125,105,112,107,102,105,99,104,89,112,100,106,101,98,103,110,107,101,97,124,99,107,114,107,98,105,114,102,114,98,110,103,109,94,98,103,106,104,115,99,110,101,100,106,110,108,102,112,91,95,98,97,101,102,105,103,105,103,108,103,107,109,106,114,112,105,115,107,104,102,110,122,105,114,105,108,102,101,115,101,103,105,108,102,114,102,102,109,109,105,106,112,106,102,92,95,88,107,113,100,113,139,105,104,114,103,109,109,98,114,117,107,98,100,106,106,107,117,120,106,98,116,99,103,118,109,97,114,104,102,103,102,103,100,106,94,107,119,109,106,108,101,113,109,84,108,100,103,101,113,100,105,82,110,121,116,121,109,106,99,102,100,105,104,95,105,116,111,102,107,108,111,107,100,92,99,99,109,99,104,105,101,106,113,92,106,103,107,110,117,98,111,102,111,104,114,105,103,113,106,96,100,112,113,105,112,108,106,107,105,116,96,107,102,109,105,101,104,102,100,91,121,109,105,114,108,113,104,114,104,90,107,103,91,101,101,99,111,98,105,106,105,112,104,115,102,99,113,88,99,108,107,103,111,117,109,104,113,107,105,100,100,106,108,99,112,97,105,119,108,109,105,100,112,109,98,94,103,106,108,113,107,117,108,116,108,105,105,85,111,94,96,113,106,103,126,107,110,85,100,104,107,113,102,105,114,111,108,96,114,112,101,116,103,108,102,93,101,108,103,104,109,61,101,103,112,103,109,92,105,109,107,106,102,89,104,124,103,112,109,107,99,91,114,101,97,105,98,106,100,88,107,110,112,102,104,114,95,100,106,103,105,95,96,111,110,79,107,125,110,118,111,101,98,106,106,98,100,111,100,109,104,104,96,108,95,103,108,99,102,108,102,110,103,107,107,111,104,113,97,106,120,107,116,109,102,100,105,97,114,104,111,97,103,96,111,106,89,103,99,91,109,98,95,106,120,104,105,109,98,126,108,105,104,102,91,103,109,92,101,98,104,104,90,95,99,102,119,98,99,105,103,110,117,107,90,104,107,95,106,110,108,108,103,100,117,118,100,102,121,114,98,103,100,106,103,104,102,100,109,109,111,97,113,105,112,100,107,102,100,97,95,102,104,109,120,104,100,100,99,116,107,98,109,109,105,112,95,100,100,116,116,88,100,108,108,99,101,100,103,110,103,97,101,106,97,104,116,91,108,113,98,106,101,122,114,108,116,133,109,116,99,100,83,104,98,105,96,103,109,97,111,132,99,104,106,91,113,106,105,103,98,94,98,105,84,101,103,106,105,107,105,96,97,100,104,124,112,104,101,105,94,102,98,103,107,100,100,94,108,105,94,103,106,101,104,109,106,110,111,117,116,96,116,107,104,109,94,113,102,105,106,98,118,83,102,97,106,93,105,103,100,104,106,112,110,99,103,103,95,107,102,108,115,102,117,107,102,98,112,104,106,106,96,111,91,117,108,97,103,103,106,96,95,105,109,106,112,104,100,105,75,101,108,103,91,106,103,105,103,107,116,106,104,134,106,109,103,100,108,111,94,105,116,98,96,91,107,100,109,113,102,102,109,101,108,109,104,119,102,111,86,123,95,100,105,109,96,106,102,98,112,108,102,106,119,111,102,99,119,116,110,127,99,101,107,102,108,113,100,107,115,111,101,109,101,113,110,112,96,107,91,102,106,120,107,123,110,113,105,111,98,100,96,104,101,109,109,103,84,117,104,103,83,105,108,104,111,109,94,109,103,109,111,107,103,101,98,103,104,106,96,104,124,105,95,144,103,98,110,116,107,103,106,99,101,98,109,96,92,105,107,108,122,98,105,104,108,103,105,98,106,102,111,109,113,102,94,91,108,107,100,113,106,111,106,109,111,95,96,105,109,96,106,101,98,100,108,103,100,101,112,97,112,100,96,106,109,113,103,102,113,110,108,118,102,105,105,109,94,114,106,111,99,107,106,103,98,96,107,103,101,94,95,68,108,106,107,120,111,111,115,121,105,95,105,103,98,101,105,110,125,104,112,101,102,86,102,99,104,103,101,103,107,112,108,101,100,121,94,105,101,101,108,97,95,90,115,96,106,102,106,105,124,113,87,102,99,106,102,108,102,103,104,83,109,103,105,107,107,98,103,102,114,101,98,99,92,99,97,104,105,111,96,100,89,107,106,99,100,104,109,104,113,100,99,109,109,98,98,112,96,110,108,102,102,104,102,93,114,111,117,107,114,113,103,122,110,98,108,108,88,104,106,117,83,103,97,111,102,113,106,101,104,103,111,97,100,108,101,103,94,95,107,107,97,107,104,104,99,130,102,112,104,120,102,105,96,99,109,96,113,108,101,95,98,105,120,84,93,109,90,96,103,97,103,111,109,95,100,117,117,117,109,110,112,90,103,99,84,109,102,113,95,99,99,104,97,103,117,117,95,115,103,101,105,95,100,99,97,98,102,102,102,108,120,107,102,99,106,108,109,98,107,103,113,111,103,108,100,92,103,95,113,112,88,107,94,104,109,106,109,110,101,94,104,104,104,106,100,104,108,96,116,102,94,104,109,100,109,112,104,92,111,102,91,112,99,107,98,112,115,100,99,106,107,106,98,101,102,98,109,98,106,85,105,101,105,106,109,99,102,105,113,104,109,105,93,104,113,101,103,104,111,104,108,111,103,105,105,110,106,102,99,102,100,108,108,99,99,107,105,111,84,105,99,109,107,103,105,103,94,105,104,111,98,107,114,102,108,115,90,114,90,95,103,95,110,104,105,101,107,110,111,110,103,118,93,96,116,112,105,85,103,103,102,100,110,96,98,101,99,106,108,99,106,106,104,94,113,109,96,108,98,107,84,106,104,103,104,100,106,115,97,107,97,97,105,91,118,117,97,96,110,90,105,108,112,113,105,96,98,84,117,104,106,101,113,105,105,114,106,99,111,121,82,115,102,109,108,110,100,105,126,102,113,101,112,106,106,110,117,108,99,96,99,94,113,100,92,106,106,102,107,104,126,102,99,89,108,101,112,108,99,112,104,98,101,106,97,99,109,106,98,102,99,90,111,111,109,120,134,105,110,114,96,105,98,104,98,103,104,109,101,105,112,96,98,99,94,105,102,102,103,105,102,103,105,104,104,89,92,115,108,109,97,103,106,105,105,104,104,105,120,89,96,102,97,117,108,73,98,101,105,98,98,113,98,95,79,114,100,114,102,100,99,106,103,111,103,101,110,86,96,99,105,104,106,105,107,88,96,106,106,103,101,109,110,86,116,104,105,108,108,109,113,118,88,83,95,98,104,81,105,112,110,96,108,108,96,119,125,100,105,95,105,106,100,106,101,103,97,110,112,106,92,109,104,96,95,101,106,97,110,91,107,109,97,101,120,98,94,91,104,97,100,104,112,102,94,91,107,97,99,111,106,95,102,96,104,102,105,105,101,98,99,99,101,102,100,120,118,101,104,100,107,89,109,114,99,101,88,104,102,106,107,98,106,104,95,105,112,111,92,105,97,100,99,98,110,102,100,112,102,105,92,100,117,103,97,111,104,110,102,104,103,117,109,101,115,118,100,100,106,104,105,97,111,108,94,80,105,109,105,112,109,101,87,106,92,104,92,104,94,89,108,105,111,110,91,97,101,123,90,109,109,104,130,91, +527.46796,109,91,91,105,119,98,92,103,103,105,102,98,94,73,111,102,93,95,108,91,106,99,103,107,101,110,89,108,96,99,108,96,102,99,109,103,94,99,113,89,96,108,97,84,94,108,97,102,105,89,98,105,97,114,105,99,97,114,84,90,103,99,87,94,103,108,80,103,87,95,114,93,105,95,92,110,90,105,99,108,106,107,95,119,100,86,92,99,104,87,107,109,104,83,82,105,102,103,113,100,91,96,108,95,116,103,99,102,106,100,99,95,102,104,110,109,97,101,109,99,107,105,111,113,111,110,107,104,112,105,130,106,108,101,104,109,104,111,94,94,97,101,98,111,98,103,120,103,95,109,109,95,98,105,96,95,107,98,107,100,110,99,108,104,105,99,92,102,95,108,100,100,103,113,101,108,104,95,110,103,114,100,99,100,96,113,98,98,97,111,104,106,111,110,99,118,100,115,99,103,107,103,84,107,104,114,96,99,103,105,110,103,92,113,102,102,94,106,98,100,109,104,104,110,105,101,103,115,120,118,104,99,107,114,97,102,94,88,106,100,98,90,107,112,99,101,106,113,108,106,101,96,101,104,91,105,102,104,105,104,107,122,88,104,104,104,109,95,116,98,96,108,123,117,118,105,102,107,103,101,106,93,116,100,104,99,102,108,96,107,107,105,103,114,109,99,99,106,103,122,109,103,114,119,96,100,112,111,84,121,94,117,101,107,100,98,97,106,101,96,68,90,98,97,100,105,103,101,111,103,100,105,100,109,114,112,96,99,96,108,110,106,111,87,102,112,118,83,101,102,103,75,109,110,95,112,97,116,95,107,115,100,117,110,106,106,91,104,101,103,118,108,118,102,98,114,93,100,97,106,107,113,111,107,105,95,100,107,98,96,105,105,116,112,105,111,100,99,102,103,114,97,102,94,98,105,108,118,98,101,92,102,105,112,98,100,104,102,109,102,101,105,106,114,105,103,102,98,102,107,100,109,93,101,108,106,98,118,104,105,104,98,103,107,98,99,110,95,103,110,102,106,86,113,105,105,104,105,113,102,92,106,108,98,101,95,109,72,110,99,112,101,108,94,99,105,107,114,109,113,99,95,119,109,106,105,106,99,106,108,101,100,104,104,97,104,96,107,97,111,108,104,100,91,103,104,98,102,103,105,111,116,113,109,117,89,113,110,104,99,117,108,106,100,110,112,102,75,106,106,101,109,102,94,108,110,105,105,105,110,120,110,99,130,106,111,125,107,104,104,99,114,121,100,114,115,109,113,110,105,113,110,90,100,108,110,97,95,100,107,99,106,108,101,101,103,98,103,104,106,100,100,109,99,106,108,107,108,121,117,131,100,98,103,118,115,98,110,105,97,95,102,107,105,103,102,96,102,101,103,110,106,105,116,99,91,100,93,106,98,106,104,100,110,112,95,101,111,122,101,103,108,96,116,100,103,107,103,100,91,98,109,97,92,109,101,99,97,109,124,102,117,96,101,113,114,102,104,75,117,121,105,102,111,100,98,105,101,116,107,112,104,105,117,106,107,99,113,113,120,116,111,107,102,96,98,101,114,111,107,106,107,102,99,80,106,119,98,109,94,111,101,102,99,105,117,105,101,89,107,92,106,95,98,97,95,103,96,95,104,104,103,98,116,99,71,104,116,108,115,109,108,96,105,101,107,107,104,107,104,101,103,110,122,97,105,110,113,97,104,123,100,113,105,100,113,101,109,102,113,95,114,100,91,95,102,92,105,113,90,104,110,100,110,107,105,101,128,101,94,105,125,110,118,113,103,113,113,100,101,109,101,100,105,104,112,102,97,101,104,109,111,92,100,90,118,96,109,97,106,107,110,95,100,105,101,113,99,114,95,105,116,106,105,101,106,107,109,103,103,109,97,114,98,105,107,111,106,109,126,88,108,112,104,107,95,113,114,101,103,102,110,103,107,105,105,107,111,97,107,108,108,95,92,100,112,112,103,91,112,112,108,95,96,78,110,105,100,120,104,110,123,107,117,100,97,94,128,99,102,105,109,106,105,100,92,99,113,102,117,103,112,102,100,120,95,83,96,111,96,115,99,108,93,94,106,96,101,115,110,113,99,110,101,120,104,95,105,110,99,108,102,94,109,102,67,91,98,113,121,107,99,103,104,101,111,104,99,99,100,114,104,105,98,109,99,103,121,101,94,104,144,106,113,91,101,98,96,110,106,98,102,105,113,103,106,105,109,96,98,109,102,99,102,69,114,108,97,101,103,96,105,107,114,106,88,116,101,101,101,100,98,103,98,107,112,108,111,106,104,99,114,107,99,98,98,80,106,106,113,94,111,119,93,99,108,93,116,103,89,110,116,98,105,114,89,96,105,101,112,94,94,99,106,105,100,110,109,102,100,99,105,125,109,104,120,107,98,107,110,121,107,92,121,105,91,87,108,102,91,90,115,99,95,105,110,117,105,87,103,102,103,97,114,112,117,95,105,111,108,112,114,92,104,104,108,115,104,106,109,120,100,110,115,103,102,102,102,102,107,109,113,106,105,110,110,109,100,103,96,105,104,102,111,91,110,102,112,103,103,110,94,112,102,123,111,103,106,109,104,117,113,102,113,115,97,108,100,105,106,119,107,111,106,123,95,107,109,96,108,106,104,106,103,105,108,104,96,103,94,112,105,113,101,101,110,98,110,105,85,102,105,103,110,109,111,113,97,107,99,103,105,108,120,101,102,95,96,103,105,109,113,115,104,103,110,105,108,104,106,109,106,104,110,115,111,101,101,110,106,102,132,92,104,97,117,98,103,105,103,98,107,100,110,105,105,110,104,102,109,109,89,110,113,106,106,122,100,99,106,98,109,116,106,121,99,106,99,107,112,100,108,106,122,116,98,81,107,104,96,107,112,101,106,104,94,109,98,110,119,111,113,119,105,89,116,108,109,106,111,109,107,97,100,108,112,116,101,105,106,106,107,106,106,98,127,131,102,96,100,110,118,70,103,111,106,105,107,122,111,118,103,111,104,111,109,113,106,103,97,100,104,106,109,119,105,102,117,106,116,96,97,109,98,113,111,112,109,106,101,109,116,110,112,97,100,106,117,105,94,114,105,84,96,114,103,109,104,100,101,105,109,108,108,108,100,107,112,108,118,113,100,104,94,111,101,103,105,95,98,117,98,88,97,100,122,144,106,100,106,106,113,103,101,106,101,113,102,115,119,108,102,112,104,118,99,88,111,112,111,107,105,100,110,102,113,105,98,115,106,111,106,107,110,108,103,112,111,108,106,110,112,106,108,112,112,106,104,99,104,78,105,125,113,110,109,103,123,102,100,112,120,104,110,120,102,106,102,98,103,91,104,108,109,106,102,102,111,117,106,102,105,116,113,106,105,109,107,99,98,113,101,101,110,101,104,110,109,109,90,106,107,106,109,101,114,108,108,109,117,118,102,112,107,106,100,117,106,94,113,104,108,103,108,94,104,108,95,107,109,109,89,100,109,95,110,111,102,109,106,127,120,110,106,114,105,111,112,96,105,105,118,109,120,115,99,109,114,103,111,99,109,117,100,116,106,99,118,95,116,94,110,102,100,100,93,104,110,109,109,104,107,111,100,96,98,110,104,119,103,104,100,112,104,102,110,111,117,104,99,101,107,105,108,106,103,106,98,123,113,106,101,99,100,102,107,96,119,100,109,95,109,79,109,107,106,90,107,105,107,108,108,102,104,119,112,107,111,119,103,103,106,96,97,100,100,102,101,107,105,99,95,114,111,102,121,108,101,109,104,110,98,116,110,85,111,103,102,111,102,105,105,103,101,105,111,106,100,104,74,112,112,106,100,118,113,105,103,108,113,106,112,103,103,95,109,122,113,116,102,104,103,90,115,115,95,104,98,108,98,117,108,118,94,99,113,107,101,104,100,119,101,114,119,106,99,104,106,113,108,102,101,99,111,109,114,109,104,109,107,96,113,95,107,100,105,106,103,86,119,108,107,102,101,95,114,98,108,103,111,108,108,112,112,102,102,103,95,110,117,117,108,98,99,113,105,107,100,116,113,121,110,102,94,110,110,95,114,121,96,112,108,107,105,98,111,104,114,98,98,107,137,104,122,104,120,125,110,118,107,99,109,100,115,102,106,106,107,97,111,98,102,108,106,92,105,104,104,102,95,109,85,108,105,104,103,130,108,101,104,114,101,95,109,108,107,112,86,113,112,108,119,109,110,104,102,104,106,104,106,100,90,104,109,120,100,107,111,115,110,102,94,109,112,98,103,113,108,113,99,102,87,99,97,105,112,107,97,98,93,106,105,97,108,104,102,100,107,107,114,106,118,108,112,115,103,103,105,101,104,95,98,107,95,106,111,107,107,110,106,102,120,97,105,108,101,110,107,102,108,105,118,120,117,95,106,106,115,109,102,100,102,89,112,104,107,103,106,103,112,99,105,115,99,112,100,95,102,109,119,102,112,122,109,112,95,107,110,109,103,109,95,98,98,117,113,99,107,110,100,101,117,92,100,106,100,110,102,96,97,106,106,98,102,105,99,94,118,96,110,101,97,103,113,107,104,92,94,113,99,104,104,113,113,92,94,111,99,98,100,106,96,104,117,104,109,106,100,109,106,107,116,104,103,107,107,107,120,108,94,116,107,103,102,106,95,103,105,111,108,109,115,115,102,98,107,117,98,105,108,107,88,100,108,108,102,101,109,131,99,103,112,117,85,113,99,83,107,101,93,95,100,110,105,105,106,100,102,104,109,127,116,105,106,103,104,93,110,129,111,103,112,114,106,103,106,95,104,101,108,108,101,99,91,112,101,105,133,97,93,120,106,98,105,108,106,109,106,103,91,103,107,108,114,93,104,95,101,117,94,106,104,109,106,129,102,109,108,102,92,117,103,108,105,109,83,94,105,101,93, +527.6087,105,103,101,82,97,110,106,112,103,105,112,100,103,113,111,104,109,111,101,97,92,95,96,108,117,88,105,106,89,110,103,119,99,101,114,106,106,100,103,97,100,85,107,106,106,104,127,94,101,102,103,110,85,123,83,93,89,102,106,105,97,96,111,95,101,103,96,103,102,92,115,102,104,102,96,100,110,115,109,115,104,104,108,115,108,104,106,113,89,94,105,101,101,101,100,93,102,104,104,106,96,99,99,94,102,106,90,103,97,98,101,101,105,105,104,106,106,103,103,97,99,101,103,105,111,110,115,105,108,131,99,121,103,104,108,101,108,99,104,110,105,100,98,100,117,116,98,102,89,88,104,106,102,107,106,101,97,95,104,106,102,103,104,103,114,104,110,96,105,95,99,103,101,96,102,96,102,97,98,111,112,102,108,115,105,99,101,79,103,100,105,115,102,114,113,109,101,106,100,103,109,104,108,104,89,99,96,109,103,112,105,108,97,103,108,99,97,110,105,91,95,113,94,101,86,103,91,98,102,111,103,119,117,97,96,103,96,116,109,106,103,109,112,97,99,97,125,113,107,103,100,106,90,107,101,102,104,112,112,112,104,103,102,111,94,115,112,105,93,108,108,94,104,96,109,105,95,104,103,98,108,106,96,100,109,104,113,104,96,106,105,91,110,105,109,108,118,124,99,108,98,101,101,113,99,115,108,104,88,106,100,106,100,111,89,98,105,107,106,105,95,103,121,99,102,105,96,84,107,104,104,98,117,117,104,100,113,102,106,119,106,95,102,106,102,103,110,117,104,84,101,112,111,100,100,100,116,103,96,105,104,108,93,88,112,101,106,114,112,102,103,104,100,104,109,104,117,104,102,101,109,102,94,109,110,98,103,105,105,109,114,101,94,107,109,90,99,100,103,112,106,102,101,114,106,102,101,112,105,108,67,106,88,96,112,96,103,103,102,98,111,106,101,104,115,105,98,97,108,104,106,99,113,95,104,97,100,114,91,105,104,111,105,115,108,98,99,96,103,117,98,104,88,108,107,91,105,108,109,124,104,108,94,104,126,105,106,104,95,110,109,109,113,112,103,110,108,114,100,109,104,133,108,108,117,103,118,106,96,107,109,100,109,113,103,103,107,104,108,94,118,99,103,111,116,95,98,90,112,113,115,108,99,102,96,116,125,111,113,99,101,99,109,112,110,103,99,117,125,103,105,113,105,98,107,104,122,113,105,109,94,110,107,102,97,108,112,104,109,101,109,105,120,107,101,97,117,107,101,107,102,105,118,109,106,104,107,108,109,111,110,96,92,101,115,103,84,101,106,110,102,94,108,92,98,110,117,103,102,111,117,106,96,106,122,105,109,115,102,96,105,114,99,108,109,107,91,81,109,102,100,112,117,106,105,114,108,125,112,115,106,113,94,104,114,105,102,110,101,97,104,107,109,114,95,103,99,101,103,113,103,117,98,109,95,110,101,113,112,109,107,107,101,104,102,118,81,105,108,99,117,108,100,111,109,101,103,121,113,106,114,94,125,97,100,107,112,116,101,107,107,108,109,99,111,102,111,95,96,96,106,122,104,115,104,113,109,109,113,109,100,102,101,99,114,100,110,105,103,106,116,99,106,101,86,101,100,109,108,102,100,110,104,99,102,101,100,100,108,113,102,101,96,106,92,102,107,96,113,114,108,105,100,102,105,106,99,87,109,113,115,111,106,98,113,100,98,103,110,108,100,99,97,112,95,105,109,103,95,98,109,100,104,109,92,109,108,96,102,102,98,106,100,107,92,112,112,121,119,105,116,113,109,110,95,113,105,113,112,107,97,91,99,99,112,107,108,99,99,108,112,99,110,102,107,112,109,100,109,104,114,120,107,98,103,104,111,117,112,95,94,108,101,100,106,106,114,105,116,100,101,117,115,95,99,109,113,100,107,103,111,115,97,103,95,84,113,105,106,94,107,103,104,91,104,103,107,104,108,111,108,89,93,107,112,96,106,116,109,95,104,112,101,101,102,107,101,103,113,126,105,111,99,116,106,103,111,96,98,93,110,87,100,98,115,101,106,102,105,105,103,108,108,105,105,100,98,124,97,104,101,117,120,104,110,94,101,105,107,105,101,116,105,117,101,93,108,96,103,115,109,110,111,94,116,101,116,100,102,128,109,102,94,108,114,109,111,98,99,107,114,101,104,96,107,110,103,106,119,100,105,104,128,101,101,116,103,94,109,104,103,106,82,121,110,109,96,109,105,106,112,117,106,110,102,103,115,99,109,107,99,104,108,121,99,113,121,98,95,95,93,102,98,110,111,115,101,114,107,110,112,117,107,97,98,107,105,91,93,90,101,105,120,88,100,95,109,118,100,110,99,105,104,102,110,108,99,102,113,121,104,114,113,113,105,116,107,114,104,111,95,102,114,118,106,102,101,104,108,110,100,85,97,108,100,98,112,121,106,104,103,105,102,118,116,112,106,102,114,106,120,96,103,103,107,98,101,115,120,119,100,100,101,113,103,113,106,95,108,124,112,109,106,106,114,104,100,112,105,107,97,100,116,102,103,98,106,112,121,98,103,112,116,113,110,112,108,113,110,78,102,97,98,112,102,105,99,107,106,110,116,109,111,99,99,120,114,97,98,108,113,100,114,99,108,110,107,104,107,92,100,104,110,98,102,110,106,104,123,108,111,109,107,121,113,113,109,101,109,109,103,102,117,107,121,100,103,106,99,99,131,104,109,105,104,104,109,110,102,75,109,108,112,96,110,116,118,115,97,105,104,112,106,103,107,108,113,98,108,99,99,113,106,112,107,99,109,114,105,110,124,109,103,105,104,108,102,116,117,93,102,101,100,102,104,103,93,128,102,99,106,102,95,117,102,122,102,112,102,100,106,112,125,119,103,112,89,113,111,104,114,109,110,116,97,116,104,116,102,98,109,115,99,109,87,108,109,94,96,104,115,78,106,117,113,105,108,112,105,123,116,113,99,112,106,109,110,83,116,109,110,101,108,105,116,101,111,104,102,104,110,106,109,110,107,113,103,113,108,94,99,103,108,104,111,100,108,109,108,117,109,104,108,107,101,98,104,103,107,94,116,116,103,102,117,101,100,95,98,111,109,117,114,112,110,100,98,97,98,95,109,101,108,109,111,105,106,117,95,113,133,89,110,100,92,102,106,98,135,121,104,99,92,83,102,126,113,108,113,109,109,114,102,112,105,94,113,96,117,110,101,107,108,98,110,100,109,117,109,111,116,113,102,104,96,101,104,100,99,103,104,91,99,113,111,101,106,109,106,107,102,92,93,108,102,110,90,104,109,103,94,104,115,105,106,103,95,94,112,108,98,72,94,113,107,108,102,95,108,102,98,117,103,105,113,103,113,109,100,100,108,103,107,103,104,112,103,119,120,111,104,102,119,108,102,117,99,101,107,103,113,105,100,95,106,105,104,103,89,105,103,104,102,107,92,110,113,102,121,106,104,102,94,112,110,78,103,112,118,117,114,106,101,111,107,105,107,117,99,105,110,117,106,118,107,112,112,108,99,94,111,116,121,104,105,117,96,102,105,109,115,109,98,96,110,108,110,104,105,96,97,110,98,101,107,100,110,85,96,118,104,103,113,101,115,100,104,116,108,111,102,105,105,112,100,115,110,102,97,111,105,104,113,109,108,112,107,107,111,111,108,109,112,85,88,93,103,103,106,108,89,106,121,99,109,107,119,115,99,116,99,107,104,99,109,112,108,110,112,98,106,90,92,97,100,98,108,108,106,95,111,98,105,113,96,109,111,114,117,111,102,109,109,110,99,109,110,114,104,113,112,100,117,104,105,111,107,95,112,104,95,103,97,102,100,103,116,105,113,105,96,109,97,110,99,103,88,107,100,94,97,123,105,107,109,113,112,112,100,101,94,109,116,114,113,103,102,136,108,112,115,103,114,99,100,99,102,114,137,103,111,112,104,115,112,108,104,109,104,112,100,119,106,108,113,98,98,109,107,119,107,113,108,99,108,97,108,119,102,102,105,107,105,107,108,104,112,104,108,105,99,99,116,111,113,101,105,109,106,94,107,101,109,90,99,100,113,100,105,113,101,109,97,110,99,109,117,111,111,107,109,102,102,114,100,113,103,108,105,111,114,98,115,124,106,105,112,99,111,105,90,105,110,96,117,117,113,103,108,103,107,99,107,107,102,113,96,124,109,115,115,99,114,107,106,103,101,108,104,84,121,111,113,106,111,95,113,109,105,101,108,102,83,109,90,106,100,98,112,98,98,101,98,84,77,104,117,94,89,102,96,107,89,88,93,107,103,100,105,117,100,99,108,108,107,102,102,109,105,91,108,101,106,109,105,100,99,105,103,103,102,97,122,114,97,108,110,96,108,99,99,107,105,87,102,104,103,128,90,92,108,102,102,111,107,102,109,99,91,95,103,94,90,93,97,110,93,109,110,124,99,102,105,112,102,97,100,94,104,112,111,100,98,94,102,107,101,107,103,108,98,100,102,99,102,104,111,108,106,97,96,96,104,118,114,104,105,107,100,110,102,91,111,110,112,111,100,101,103,95,102,113,113,110,112,107,113,95,105,98,101,96,100,105,104,99,98,104,106,117,107,72,91,95,102,110,100,121,104,105,126,106,106,118,109,104,121,117,126,95,101,107,120,91,104,112,117,108,113,128,94,102,112,131,92,102,104,100,100,109,106,104,107,104,114,106,113,110,101,103,108,112,102,106,109,117,101,106,103,95,111,96,107,117,102,127,111,109,99,121,103,102,109,91,96,104,98,105,101,100,115,104,102,115,91,99,96,105,102,108,105,89,98,94,99,80,104,111,94,107,97,74,104,115,112,111,104,97,128,91,101,110,101,113,102,95,103,116,105,99,103,108,84,111,113,104,97,99,108,113, +527.74945,116,106,104,99,97,107,106,92,115,106,104,108,81,105,110,117,95,86,103,91,110,105,114,100,102,106,92,118,97,128,92,106,109,104,103,103,105,91,107,98,100,103,106,108,107,116,96,116,101,99,101,97,109,106,108,97,94,95,105,109,103,100,103,100,97,110,96,107,104,106,111,99,103,104,101,117,110,83,111,100,105,109,96,112,96,103,102,108,109,105,92,84,88,85,127,115,102,99,104,101,96,102,100,101,104,97,87,102,110,87,108,110,101,97,107,117,104,105,121,103,114,100,98,104,118,110,110,101,108,100,120,110,106,108,114,96,103,113,100,102,104,98,101,97,97,101,111,109,90,99,99,100,113,98,104,108,100,104,110,109,80,107,113,102,101,113,103,98,102,94,90,109,99,103,102,110,118,101,109,118,100,106,108,112,113,106,106,92,108,118,99,117,118,101,101,99,105,99,103,119,100,113,108,100,105,103,102,86,101,106,92,100,109,102,109,113,99,112,113,116,109,100,102,105,111,116,94,103,110,105,108,103,112,105,104,127,109,89,107,108,110,104,83,105,100,106,102,114,103,101,106,109,102,97,104,101,95,96,105,113,96,100,96,98,99,106,105,101,103,104,108,101,99,100,100,96,101,100,102,111,123,107,107,98,103,91,97,106,107,106,105,101,109,99,118,118,104,113,98,114,97,103,101,110,113,102,106,118,108,113,115,99,108,106,115,115,114,107,116,96,107,91,110,111,116,112,90,102,110,93,112,102,104,111,96,115,104,100,105,118,90,110,113,107,114,113,101,119,112,113,108,101,111,102,106,104,108,111,110,106,96,99,104,108,96,100,141,109,109,118,106,98,101,99,103,105,123,108,107,121,115,110,114,105,107,110,97,115,111,93,112,95,94,108,112,100,97,99,90,112,111,108,104,105,102,107,102,111,115,100,91,98,104,109,106,107,101,101,104,99,99,109,114,86,105,93,108,113,118,102,110,95,107,107,102,135,110,109,103,104,104,110,109,100,96,91,96,112,99,117,100,99,112,107,128,100,102,106,101,104,104,109,115,110,117,99,105,102,100,113,107,119,94,115,110,100,109,115,106,113,106,115,116,104,90,97,104,96,108,105,111,88,103,114,100,115,104,109,86,112,112,109,104,103,98,80,122,106,114,102,101,112,106,111,110,100,109,111,108,104,106,97,109,107,93,103,108,120,107,98,105,105,108,104,112,99,105,91,93,106,112,116,95,111,116,110,115,103,89,129,111,113,108,99,91,86,106,98,104,105,121,100,100,117,102,103,108,96,117,110,103,108,104,118,106,94,103,100,115,103,109,97,100,107,100,106,129,114,101,105,101,112,109,107,113,109,97,110,110,104,129,112,119,102,85,110,96,104,103,104,117,120,107,97,105,98,106,113,104,113,109,111,100,109,113,106,109,108,101,115,109,114,108,111,109,102,95,96,110,107,102,100,119,102,103,111,111,100,103,112,107,104,112,101,108,112,102,111,107,127,117,107,100,104,97,98,108,101,108,111,116,100,111,110,104,100,114,104,105,111,101,107,104,110,99,98,107,119,116,118,104,100,98,109,104,116,99,103,108,104,104,105,101,115,103,107,115,103,102,104,111,110,107,99,101,103,112,97,98,106,110,95,108,121,100,107,105,93,113,107,106,110,93,98,99,115,117,99,112,109,104,89,119,103,106,101,113,96,115,104,108,106,107,109,116,99,108,73,107,102,105,100,108,107,101,113,111,102,116,103,97,104,104,106,100,117,103,107,110,99,116,100,112,93,92,107,92,101,113,108,99,105,120,115,104,99,106,113,109,103,110,101,116,100,123,103,92,109,108,106,105,104,106,113,115,96,110,109,117,105,116,107,102,95,101,107,101,104,106,107,112,105,106,110,96,108,99,107,104,121,115,98,104,93,106,94,102,104,104,96,110,105,107,109,109,107,112,108,102,116,113,99,122,112,97,100,109,107,104,124,109,111,109,112,96,101,109,119,103,103,106,112,108,106,114,103,104,112,110,111,102,98,107,96,112,110,100,110,113,100,103,116,77,107,95,112,106,113,104,103,104,108,114,103,110,105,106,105,113,114,116,109,111,109,117,105,93,106,103,99,99,99,111,102,90,111,111,115,102,113,101,106,109,102,100,101,113,111,113,110,100,112,114,102,109,95,103,105,100,119,109,101,111,113,106,104,109,104,102,117,95,112,105,116,101,122,109,78,113,125,109,108,128,95,105,94,100,104,99,112,106,109,104,78,99,108,112,111,101,107,102,100,103,107,110,115,100,103,90,115,104,108,108,111,104,119,114,106,111,108,109,100,122,106,116,125,97,113,116,105,101,105,112,115,106,117,116,109,114,113,111,98,101,115,111,107,117,113,114,111,98,100,99,115,100,108,98,102,112,118,110,106,96,109,117,105,106,93,105,112,105,103,96,108,108,113,106,111,104,107,117,102,99,102,112,108,103,108,96,105,100,110,111,98,104,113,112,99,110,103,101,106,116,89,113,113,108,108,113,80,112,109,110,103,108,110,97,94,105,98,109,108,104,105,97,108,100,106,107,118,109,122,101,105,97,110,100,99,107,105,106,106,90,114,122,102,87,96,108,114,112,106,114,114,101,102,107,104,120,102,113,114,104,88,102,99,102,96,97,108,108,112,111,98,107,110,119,100,117,105,98,104,97,104,110,99,111,105,106,106,92,99,103,96,102,107,115,106,114,101,107,107,102,97,114,121,108,100,91,110,109,81,109,102,113,117,101,84,109,100,102,107,97,93,100,107,98,105,108,110,106,105,100,107,95,94,89,98,109,110,95,109,100,108,100,111,117,99,115,106,100,94,113,114,92,110,95,94,102,97,112,116,112,103,117,99,102,111,108,103,103,117,108,108,103,104,102,83,106,115,106,113,119,109,109,111,129,112,113,103,105,100,105,112,107,95,102,116,105,103,121,110,115,121,114,110,104,103,111,110,103,109,103,95,113,109,100,116,102,90,87,104,100,108,105,108,97,99,111,105,107,112,110,103,118,107,104,100,104,103,99,107,111,103,104,98,108,112,111,117,109,113,104,114,92,106,102,112,97,108,103,106,98,98,110,102,112,111,106,92,102,116,98,113,106,106,113,109,99,107,101,99,115,113,107,107,92,102,98,103,111,98,100,114,105,98,91,92,116,113,96,108,107,107,95,117,108,73,102,103,105,105,103,110,100,106,97,108,110,118,109,111,102,90,108,136,98,107,116,104,106,95,107,114,95,103,99,95,99,100,92,100,102,110,103,121,100,99,106,96,105,97,91,101,99,103,109,117,108,94,102,99,102,106,102,119,92,96,98,96,66,108,106,113,113,98,100,100,106,102,98,108,115,116,86,103,101,113,104,106,105,106,107,106,113,98,116,107,107,102,102,101,110,106,86,105,93,104,101,95,95,106,110,70,105,106,104,114,107,111,104,101,106,92,92,108,108,101,92,101,104,118,102,104,92,106,106,107,116,116,102,107,108,116,104,92,103,105,105,86,100,109,99,104,97,113,109,109,104,111,110,100,95,100,107,102,93,115,94,118,113,96,100,115,108,114,112,97,110,105,98,104,109,102,87,102,110,97,97,109,104,110,115,111,115,105,116,103,116,129,97,106,106,92,106,98,94,111,106,99,110,111,112,103,99,96,110,106,104,93,106,106,100,103,106,109,114,102,105,102,99,100,112,107,127,106,112,99,102,102,101,103,104,94,115,115,118,129,110,95,105,98,99,90,104,113,112,103,114,102,106,107,104,98,101,100,122,102,106,104,99,112,97,106,97,95,107,105,111,99,108,99,103,109,100,102,109,100,97,105,104,106,95,102,114,89,108,110,105,108,102,107,98,121,98,110,105,95,96,103,96,104,102,106,100,102,101,98,112,96,98,106,100,109,99,109,112,101,128,94,109,99,106,119,98,111,104,105,115,109,121,98,97,114,98,108,100,95,118,96,104,105,110,113,103,106,106,125,89,108,111,100,108,104,116,112,96,103,115,116,110,115,98,109,118,102,97,105,92,109,101,107,103,106,114,103,105,112,116,108,108,106,109,98,107,108,106,107,109,108,105,103,102,108,112,105,102,110,104,103,100,91,100,109,124,110,100,101,114,103,97,96,106,110,97,91,99,117,95,108,87,95,95,100,100,121,97,110,109,98,106,108,111,123,110,115,104,97,107,108,99,120,94,99,104,109,109,105,98,111,115,98,96,109,93,96,121,113,103,120,105,95,115,101,98,107,99,108,99,108,107,102,116,109,105,107,123,100,100,103,103,102,103,107,104,112,104,86,111,106,106,116,120,98,104,99,108,108,108,110,111,108,92,92,113,100,116,105,109,108,112,98,96,113,104,97,108,99,105,105,112,104,109,100,102,103,106,110,117,103,105,95,101,99,99,105,90,97,114,105,115,103,111,104,101,102,121,109,106,110,105,103,104,109,107,96,95,106,105,108,99,102,100,107,102,104,117,107,88,98,92,102,92,107,102,99,112,106,104,98,101,86,108,125,117,93,102,102,106,97,106,100,100,91,106,110,119,93,115,87,96,109,126,102,114,116,93,110,105,104,105,106,109,115,108,113,99,114,96,100,103,103,114,104,101,106,99,117,116,106,110,104,106,115,103,102,106,118,105,116,105,114,101,117,102,95,101,108,103,114,116,105,90,115,114,98,110,103,101,99,98,110,112,99,91,98,88,96,100,94,97,91,76,130,114,87,118,107,108,107,109,100,96,101,114,103,113,100,102,108,102,94,100,100,109,111,107,95,99,104,117,103,97,96,92,104,105,109,105,108,105,111,96,101,108,111,112,117,99,105,100,134,91,105,103,106,101,98,121,78,113,108,106,102,100,109,109,90,106,110,104,114,110,103,114,99,101,100,83,104, +527.8902,100,106,108,86,98,99,102,90,93,109,109,85,101,99,110,100,66,94,103,106,113,115,112,93,94,103,106,98,112,101,97,110,106,101,107,99,111,91,105,101,93,101,99,95,100,106,95,103,100,103,100,105,103,96,67,106,103,91,103,104,90,101,101,105,111,106,119,108,95,94,108,106,98,117,101,89,107,116,99,118,101,98,81,103,108,106,92,101,108,99,103,112,100,112,103,109,102,103,109,106,110,102,105,112,106,99,95,101,81,92,103,96,92,105,105,106,102,106,102,100,94,93,96,108,103,112,105,98,112,105,111,101,105,107,103,104,100,99,96,99,101,116,96,105,99,106,106,91,113,100,102,101,109,91,99,99,100,102,102,94,104,108,104,102,92,101,104,100,114,94,106,94,95,92,110,110,107,82,118,107,103,99,94,102,99,103,94,89,105,103,97,104,104,109,96,85,101,104,111,103,94,107,83,103,99,105,115,125,104,104,90,97,113,105,104,103,103,109,94,108,102,97,100,104,95,97,112,105,109,106,108,107,112,116,112,105,108,108,117,95,99,112,115,99,108,112,118,99,102,98,100,98,102,98,104,107,101,99,96,94,103,102,111,111,106,104,112,109,105,80,105,94,99,101,126,111,97,108,106,101,113,122,113,99,101,88,109,97,102,107,109,101,88,102,108,110,107,110,106,119,94,76,112,99,111,98,94,97,111,104,99,106,101,91,99,99,105,100,103,111,117,109,101,109,104,99,109,91,105,108,107,99,97,105,86,104,110,109,97,111,107,105,105,95,100,109,117,107,104,98,110,105,107,95,117,91,107,107,107,102,110,96,104,97,105,104,106,89,107,106,125,106,66,100,119,99,109,106,100,101,118,120,116,117,104,100,98,103,101,101,117,92,102,99,121,100,98,117,100,115,110,112,113,99,102,99,107,103,107,89,105,101,108,144,107,100,111,98,111,103,104,104,111,106,103,110,92,90,108,101,110,102,99,98,104,109,117,100,94,104,106,106,103,79,104,106,97,107,111,110,108,93,97,106,112,101,105,97,105,102,109,102,100,109,98,120,103,94,106,109,122,106,101,95,106,115,99,108,100,111,105,108,114,101,102,100,107,100,100,91,101,108,121,106,95,100,101,100,103,101,110,92,101,99,112,119,92,86,101,92,115,115,112,85,118,103,110,106,112,108,100,105,95,116,90,110,105,95,109,123,103,112,100,100,98,105,106,102,100,111,102,101,96,109,99,108,104,106,109,103,114,92,113,101,80,99,103,104,108,108,91,101,109,110,113,103,110,102,103,100,102,101,113,108,108,106,110,94,103,99,103,101,110,106,109,98,102,106,108,98,87,105,97,106,89,116,100,103,103,96,103,105,100,99,73,92,112,99,110,121,97,101,105,107,102,102,94,101,105,109,101,105,104,97,112,111,99,102,116,106,110,100,103,101,98,101,96,105,100,99,112,94,103,100,110,101,98,96,109,112,105,121,110,91,97,102,103,106,100,109,98,95,101,106,98,120,103,98,96,116,111,108,97,118,116,110,108,101,121,102,102,106,108,91,107,108,116,96,103,99,109,100,106,99,111,110,109,110,99,88,93,98,105,105,116,105,108,102,99,95,107,90,106,98,98,100,89,97,105,115,92,88,113,105,103,90,99,106,105,111,100,129,102,112,97,100,104,101,104,94,106,97,99,108,109,98,100,98,103,104,112,97,113,109,111,100,109,102,101,97,98,104,121,101,97,90,102,96,107,103,98,92,112,102,97,109,99,103,95,97,101,102,98,85,111,106,101,113,101,112,96,109,95,96,79,112,108,104,110,113,105,101,101,106,113,104,107,87,112,99,106,104,104,97,110,95,122,107,101,98,99,115,98,98,102,105,103,105,104,103,104,95,110,117,107,110,109,100,117,102,107,104,103,102,116,105,108,102,106,117,92,94,108,105,103,105,97,95,105,98,102,120,102,104,97,98,86,105,117,100,104,105,99,108,100,108,110,100,105,101,94,105,102,104,98,110,98,107,117,102,120,104,107,95,103,64,88,103,98,101,103,111,101,92,112,89,101,99,95,105,127,93,109,99,108,95,101,107,103,117,110,132,99,114,102,101,114,103,106,96,97,95,99,116,103,110,103,102,102,103,103,102,108,106,102,99,98,123,108,94,94,101,110,102,102,110,102,105,93,110,108,108,92,114,101,91,100,107,104,100,89,109,110,93,96,97,103,95,101,94,103,112,104,104,113,96,94,115,93,100,94,105,104,121,89,105,105,91,94,98,100,95,106,110,119,103,115,100,95,111,104,100,108,107,101,103,101,101,106,106,95,106,109,128,105,102,98,93,101,91,101,101,117,96,114,95,86,123,110,108,100,113,90,106,99,91,103,108,103,110,102,95,118,97,99,106,92,112,104,106,88,104,98,99,110,95,108,99,109,95,99,109,107,93,109,110,108,104,110,105,102,104,98,109,110,105,113,104,110,101,106,100,104,102,108,110,111,111,106,107,104,102,117,114,103,118,109,105,100,130,94,109,100,104,101,96,94,108,89,121,96,109,109,105,104,110,95,116,104,113,94,103,101,105,95,100,100,105,92,94,105,96,122,112,116,95,106,111,110,102,113,100,113,104,102,94,102,105,107,116,101,91,111,92,112,108,107,99,102,80,99,95,118,100,98,106,87,98,117,99,94,107,97,103,103,104,107,108,116,106,96,101,105,110,98,97,98,98,96,106,100,105,112,116,109,120,98,111,100,108,105,111,104,100,98,94,97,91,103,96,112,117,101,98,109,88,104,112,103,98,100,108,106,101,109,96,95,106,110,111,104,108,99,97,103,92,109,102,101,103,106,112,106,101,100,98,107,102,94,104,128,105,94,105,88,115,102,108,109,109,103,106,100,101,119,103,96,89,118,95,105,101,105,101,102,98,100,101,98,108,94,104,97,108,108,108,110,102,110,113,108,98,90,106,109,100,114,95,111,95,98,103,105,103,110,100,96,102,123,96,113,112,103,95,116,104,100,105,111,99,103,102,117,107,105,118,95,104,113,103,96,103,111,97,105,99,97,82,103,102,101,102,105,96,103,96,97,104,98,105,109,98,107,107,121,103,98,109,95,106,99,117,99,106,113,99,100,104,108,99,95,109,98,102,99,99,99,113,118,107,87,103,111,106,90,103,109,109,106,97,110,101,102,109,104,102,103,91,106,107,112,102,103,92,103,97,91,106,102,96,109,104,97,97,103,104,129,105,108,95,102,93,114,100,104,99,105,127,103,101,115,97,115,106,99,109,108,109,110,105,108,73,96,114,87,103,109,106,117,99,103,98,107,105,113,103,93,88,106,99,101,101,103,110,107,103,101,101,104,92,106,96,114,106,100,103,95,112,93,84,101,110,102,117,97,100,104,105,105,120,97,106,106,123,102,95,104,90,108,107,98,104,102,106,104,110,88,107,95,107,95,116,95,101,91,95,96,102,113,110,103,98,100,103,98,107,96,105,112,92,106,116,101,108,99,112,105,91,92,82,114,98,98,101,91,105,91,106,111,128,94,106,116,106,109,111,100,99,97,108,109,104,105,106,102,87,104,116,102,97,93,97,108,119,121,103,88,106,106,106,91,109,98,97,96,90,91,129,107,112,104,96,107,107,100,104,98,105,101,111,102,104,105,115,103,97,87,102,111,87,115,106,113,105,101,106,97,110,108,106,113,111,104,98,108,112,107,119,106,104,105,79,68,108,101,100,117,112,114,107,116,96,111,108,108,106,101,109,100,117,102,96,126,109,106,102,106,100,100,101,98,110,99,103,98,92,108,113,119,111,103,104,100,114,103,91,106,90,100,110,108,111,115,104,94,106,103,119,108,103,120,99,95,117,111,103,110,105,103,110,116,117,103,104,113,109,106,98,91,98,104,106,106,97,104,108,107,95,95,102,100,109,113,86,108,106,100,108,109,106,104,100,95,96,106,105,101,90,119,101,101,108,95,84,107,107,104,102,104,105,107,102,92,108,97,108,97,96,107,105,107,99,114,108,89,109,99,91,105,101,108,101,107,108,95,109,103,85,109,97,110,101,93,104,113,108,91,106,114,87,104,107,134,106,98,109,95,99,106,109,103,95,98,106,100,107,103,89,98,109,113,96,103,109,99,95,107,104,94,83,103,103,103,68,99,98,106,112,108,107,109,103,110,136,101,106,98,105,105,106,110,103,113,109,103,117,98,110,118,105,92,103,88,95,96,95,109,111,107,97,110,103,104,98,103,107,105,91,99,101,110,102,106,102,95,94,101,90,99,109,109,107,102,98,95,115,101,107,106,127,110,106,108,109,103,103,97,101,135,109,111,112,107,113,85,109,100,93,108,109,92,100,111,109,101,95,100,113,109,95,99,104,102,112,92,115,101,94,112,99,101,94,101,99,113,104,100,97,104,107,113,109,98,110,101,105,110,96,101,104,105,111,120,106,98,101,103,114,101,99,108,97,101,113,113,104,99,98,100,96,88,102,95,108,107,105,101,103,112,93,106,106,99,127,100,105,98,96,104,105,108,102,93,105,107,100,107,106,103,92,102,103,103,105,123,107,106,102,95,103,100,100,105,99,110,99,128,106,105,117,95,99,113,105,100,110,101,107,110,94,104,99,106,101,113,106,116,114,98,102,106,112,95,69,106,109,95,94,101,103,94,105,100,106,100,98,112,97,100,95,109,83,103,83,86,115,114,106,105,92,103,105,92,107,107,109,91,96,103,99,106,103,104,112,103,104,106,121,99,107,99,95,109,122,110,107,106,98,128,102,101,114,98,103,95,105,99,107,99,109,120,108,105,105,102,107,112,107,98,110,109,103,101,87,84,107,85,102,102,68,83,110,109,88,102,109,106,101,91,103,113,71,101,104,103,99,93,104,98,105, +528.03101,112,114,121,111,100,109,118,87,104,103,98,102,103,107,86,100,112,102,96,99,101,91,102,114,94,121,103,114,109,94,106,101,84,114,112,105,99,104,104,115,106,105,99,98,93,105,98,110,104,105,93,100,108,110,99,109,111,101,115,93,113,105,104,98,99,98,122,101,130,102,113,103,115,102,103,113,93,103,93,105,103,117,106,99,95,99,98,102,108,79,98,99,99,99,116,104,110,111,98,117,97,110,106,100,109,111,104,99,93,92,102,110,101,99,107,100,102,104,96,103,95,102,102,101,109,106,119,89,121,99,103,113,103,110,105,99,96,111,102,81,106,110,112,112,107,108,83,88,105,104,100,106,96,93,110,101,107,105,106,108,97,123,112,90,100,107,104,90,114,86,117,109,113,108,111,98,111,100,112,105,106,113,101,99,116,111,114,102,102,91,104,93,114,104,109,104,108,104,101,108,115,95,94,102,107,105,105,83,112,102,121,106,104,87,105,104,93,102,104,102,108,114,110,100,100,102,105,113,107,105,101,117,113,108,93,105,105,96,101,99,105,113,112,99,119,106,106,109,95,104,114,109,102,105,101,112,100,130,92,111,102,118,106,113,103,102,104,100,113,105,114,104,108,110,117,105,104,103,106,89,120,120,96,103,116,95,104,119,95,117,101,95,105,108,102,122,110,116,94,107,97,99,96,117,101,114,118,107,110,116,105,104,107,106,100,96,99,136,109,106,92,111,113,100,103,106,121,101,101,93,102,94,110,120,107,100,103,107,96,101,99,77,104,84,109,109,100,101,109,104,95,103,104,118,113,102,110,108,101,102,99,99,99,78,110,71,105,112,91,115,103,102,113,112,96,108,113,99,99,117,121,95,114,129,107,98,101,93,100,96,110,107,106,98,98,105,100,105,102,110,107,109,110,99,102,89,101,113,97,98,104,107,111,109,103,100,95,109,122,96,103,109,105,102,99,97,101,100,99,101,91,112,105,117,106,100,131,108,92,101,107,110,104,102,95,108,98,106,113,100,114,101,103,108,107,102,117,99,116,111,94,97,107,103,105,115,104,94,97,100,116,107,99,108,98,118,108,104,102,95,109,109,87,114,110,104,114,113,99,88,104,113,108,98,106,100,98,93,109,106,133,113,106,112,102,115,106,102,107,114,109,90,102,108,102,110,104,112,98,107,99,107,103,95,124,103,118,95,113,105,104,101,99,110,106,108,108,104,108,110,107,107,108,100,114,99,112,100,119,101,104,113,114,104,111,109,99,102,105,100,109,110,107,104,109,92,89,109,107,102,104,115,106,101,102,106,109,99,101,105,116,95,109,112,110,110,124,106,112,85,119,110,108,100,116,96,100,110,111,107,115,102,111,103,103,110,93,95,97,106,107,114,97,96,117,118,107,100,102,108,109,108,109,104,105,99,100,97,109,97,108,90,87,104,108,97,104,105,114,108,110,103,101,106,107,104,107,75,104,114,104,110,107,112,110,109,103,115,103,112,109,104,98,113,101,98,114,112,106,108,127,109,112,107,110,101,106,102,107,107,112,117,121,97,105,114,112,107,102,109,110,107,102,108,98,106,96,108,106,107,106,105,101,107,104,113,112,112,105,114,108,106,103,99,109,108,102,107,106,99,114,99,111,107,98,108,116,121,109,117,103,101,96,87,93,116,81,97,99,104,107,107,108,103,107,84,112,107,113,107,110,97,121,108,98,107,110,112,109,103,108,99,102,107,108,108,109,102,95,93,117,89,112,106,102,119,101,93,105,85,111,113,115,107,102,104,106,104,107,105,104,115,114,116,109,107,90,109,113,104,105,104,106,107,108,100,102,103,114,95,113,111,94,112,104,102,111,108,100,100,134,113,95,116,104,104,111,102,94,101,99,92,106,110,106,99,105,128,110,108,100,102,106,116,106,107,114,103,113,102,90,104,108,111,95,97,119,114,103,99,96,104,106,111,99,73,104,109,106,111,107,113,100,103,106,108,108,109,120,112,98,106,109,114,114,112,99,114,109,97,111,110,100,98,102,98,109,111,109,102,101,113,111,107,104,106,110,111,98,105,110,111,105,113,114,84,107,99,103,109,107,111,96,117,109,103,117,111,103,116,93,109,108,86,101,96,109,116,94,100,108,110,101,87,113,99,117,108,108,114,113,109,102,98,100,116,111,115,114,95,105,100,125,109,107,102,100,110,102,100,92,102,105,99,105,101,112,93,105,100,103,99,105,104,109,90,103,83,137,105,102,123,105,91,109,86,103,101,112,117,107,106,103,107,97,112,106,116,103,104,113,129,87,116,98,113,105,97,107,113,115,111,111,99,106,112,104,100,114,77,105,108,110,100,119,104,103,103,114,116,100,113,104,107,89,113,103,108,97,108,106,114,103,113,106,109,110,94,123,106,114,118,121,111,91,99,102,108,101,74,96,109,98,122,114,105,106,112,87,100,94,107,92,109,115,110,109,91,114,104,102,117,105,113,109,100,106,103,110,101,116,99,99,99,105,108,114,106,94,108,99,112,114,115,95,106,111,87,108,110,105,102,113,101,119,110,109,105,117,104,105,97,104,105,100,121,103,86,108,101,107,91,108,106,110,103,118,102,113,102,114,109,112,106,104,105,101,94,108,106,109,103,111,104,110,114,103,106,108,90,117,117,112,106,101,99,113,103,109,117,102,114,103,110,107,115,108,101,103,110,94,109,112,124,107,109,105,114,119,108,108,103,99,111,103,101,106,114,104,103,112,98,108,99,108,128,108,112,94,103,99,104,69,111,102,116,110,108,113,114,90,108,99,112,108,98,104,110,124,88,111,104,114,113,107,105,109,107,105,111,99,110,108,108,108,104,116,102,98,108,111,99,114,111,102,96,103,120,110,108,103,110,114,114,109,103,103,103,105,101,103,113,106,105,93,109,111,107,113,116,113,102,108,87,109,106,110,107,109,100,106,109,110,116,108,83,102,109,112,96,100,116,100,97,108,112,110,115,107,109,126,109,99,99,116,110,111,104,108,115,105,115,103,104,104,100,102,106,103,111,88,104,100,103,115,101,117,103,106,108,116,112,98,100,108,103,95,106,100,90,107,110,109,106,108,86,110,108,76,98,107,114,106,121,109,103,109,109,108,102,104,103,109,98,108,107,109,102,99,104,109,101,110,95,115,113,102,112,103,97,114,95,100,104,104,112,114,106,110,104,104,105,112,117,110,95,107,107,110,108,109,112,110,113,91,100,99,108,112,113,113,99,115,108,122,101,103,114,109,113,124,102,115,115,108,106,75,107,95,102,111,95,106,111,103,96,120,129,110,102,118,108,105,102,113,109,101,118,103,114,102,110,91,101,101,106,121,110,106,118,106,95,106,108,106,116,108,105,113,111,113,98,109,102,104,110,99,97,111,117,95,116,102,107,107,92,107,110,103,100,99,98,102,92,108,110,105,104,101,108,113,104,101,102,106,111,110,104,102,112,130,107,102,94,105,121,117,104,107,98,115,89,102,100,103,109,108,104,112,101,109,104,103,125,107,97,120,112,118,105,106,101,107,99,93,105,103,117,102,98,113,113,110,113,103,110,122,104,110,105,114,98,108,110,111,107,107,96,104,119,106,99,104,110,117,97,107,119,99,114,100,111,103,106,110,113,117,112,114,100,111,109,114,101,100,102,117,105,110,115,102,106,103,100,98,103,106,107,115,98,100,106,106,104,105,98,100,107,106,94,100,113,113,110,132,101,100,94,114,114,112,102,105,91,102,93,106,103,107,117,110,108,117,109,99,113,100,102,113,106,99,111,96,107,100,107,117,113,100,100,117,103,108,96,106,118,94,106,84,112,109,103,100,114,108,99,99,113,100,94,118,98,91,113,105,111,116,107,98,104,113,107,109,98,102,106,119,106,99,110,110,99,107,104,103,96,113,99,112,105,117,107,94,110,98,105,103,112,116,105,132,106,120,111,101,106,102,108,96,113,98,103,110,113,104,100,109,97,100,106,117,99,98,106,112,108,98,108,105,111,107,113,102,112,103,105,103,108,110,97,108,102,112,110,107,108,109,84,103,103,100,103,108,110,103,114,110,94,96,107,107,112,95,103,111,111,113,106,107,103,102,111,105,108,106,103,109,99,106,104,99,95,107,113,95,103,100,105,99,106,110,97,103,101,106,117,99,95,96,102,111,122,113,103,115,100,99,96,120,110,107,108,113,92,88,109,104,107,103,101,114,109,106,100,103,109,109,113,108,108,112,99,108,101,99,104,108,94,103,98,101,103,100,105,104,100,94,106,110,107,105,109,85,101,110,95,106,105,109,114,113,108,107,124,110,101,103,110,96,122,112,107,110,94,105,98,114,116,104,102,103,113,110,90,98,116,114,105,105,116,111,109,101,110,121,100,107,109,110,104,97,107,112,112,107,116,98,104,111,97,114,104,94,99,112,101,95,97,77,109,112,112,105,108,101,98,116,103,112,99,100,106,113,111,114,102,108,104,101,125,97,121,105,105,103,101,110,110,106,87,108,100,98,95,106,111,102,113,102,108,99,97,106,100,115,110,106,100,106,106,105,101,111,86,107,118,104,96,100,111,101,111,97,113,111,111,99,99,120,102,104,111,108,111,109,105,101,113,103,106,99,109,95,98,99,99,101,103,96,104,116,102,108,108,98,104,104,106,116,95,103,96,101,109,103,105,102,113,108,100,117,132,102,93,104,117,113,113,98,94,95,111,108,111,103,117,103,104,106,96,142,98,94,63,100,104,104,95,99,110,109,106,117,109,112,106,117,97,96,103,105,113,108,86,101,106,93,108,93,103,119,102,102,116,117,116,111,106,96,112,103,102,100,100,101,109,100,98,98,104,109,114,98,117,103,105,111,101,125,91,99,100,95,109,108,104,120,91,106,119, +528.17175,110,103,98,105,94,116,109,103,64,78,103,105,119,100,86,104,108,101,109,96,101,109,97,109,103,100,104,104,108,95,109,110,109,100,95,108,97,95,101,86,106,111,92,100,107,110,95,111,112,119,95,95,107,105,99,103,107,91,113,99,110,94,114,114,104,117,85,115,104,97,106,105,107,102,104,107,101,125,102,95,105,102,97,101,94,104,93,102,103,92,87,98,91,97,120,110,91,90,109,98,89,109,99,95,108,93,99,99,101,104,106,97,105,110,105,105,102,111,108,100,112,95,103,108,99,104,109,102,113,106,100,100,108,106,100,124,105,97,94,120,110,99,117,113,110,116,108,103,110,116,109,105,105,93,106,90,112,91,92,100,91,101,112,99,96,111,98,100,100,105,103,84,100,93,106,108,124,100,108,100,121,104,105,104,93,111,95,91,108,86,98,112,98,96,104,110,99,80,108,103,106,104,96,111,97,102,107,103,113,102,109,103,89,104,98,110,104,106,95,102,104,116,99,109,108,108,99,108,100,102,105,103,114,99,108,103,116,101,99,106,96,93,99,105,98,105,95,120,110,113,109,105,104,101,113,109,97,114,112,103,107,102,94,104,106,109,105,109,105,102,101,107,106,100,125,115,108,111,101,93,102,110,109,110,105,95,102,112,111,113,98,102,110,109,111,112,112,106,108,111,105,106,104,95,102,111,121,103,111,102,105,101,102,108,101,105,107,114,90,79,87,110,93,78,111,107,98,93,115,98,103,106,85,94,105,110,108,97,97,109,107,104,103,102,107,106,99,113,107,103,102,100,107,103,124,103,111,107,108,100,110,101,110,115,109,97,99,116,118,105,111,101,109,107,111,114,116,97,125,108,98,94,111,119,99,111,97,103,111,91,111,101,103,100,107,112,103,102,102,110,118,100,104,100,109,117,106,116,96,103,96,106,103,75,108,103,104,107,114,119,108,101,101,107,102,103,113,99,100,104,103,106,119,99,120,113,110,110,108,106,113,99,106,117,98,117,89,105,116,110,104,110,98,110,109,103,104,100,103,104,105,104,86,115,98,118,113,100,109,84,104,128,110,111,98,92,100,107,100,108,92,122,113,98,111,112,109,107,105,109,107,104,110,104,104,101,94,108,101,98,98,103,107,110,109,116,89,107,87,116,102,105,122,104,108,99,107,111,103,95,93,116,104,112,104,104,111,102,102,88,98,109,95,112,108,98,111,101,107,110,110,108,106,95,106,98,103,109,102,103,103,100,108,104,115,108,118,102,92,107,111,105,113,107,100,106,105,103,109,109,103,94,101,94,104,104,108,108,107,104,116,107,100,97,109,103,108,110,108,106,111,107,120,116,113,113,103,106,103,118,97,111,121,95,106,107,96,94,111,111,120,97,99,109,101,103,107,99,107,109,105,106,103,97,123,100,106,120,95,110,107,111,107,95,113,108,96,94,83,104,114,103,107,96,103,104,103,95,103,111,95,110,105,109,110,98,105,104,107,113,106,113,73,116,95,104,114,108,106,117,97,103,114,95,111,110,101,109,88,85,101,103,111,99,100,113,115,106,104,117,94,101,105,107,109,102,90,112,128,102,111,102,118,110,118,108,108,101,83,114,111,110,108,107,98,99,98,114,104,108,99,110,103,123,118,101,101,109,106,109,94,100,100,102,97,80,111,101,121,104,106,100,104,108,91,101,104,117,95,111,106,112,105,101,108,112,112,107,102,100,110,100,103,109,99,101,99,101,107,102,104,117,112,117,112,124,103,96,114,100,98,108,132,96,85,109,100,112,122,112,82,111,105,117,114,102,110,102,111,113,107,103,91,113,106,112,99,114,108,108,113,112,109,96,116,112,112,95,112,109,111,102,106,106,103,99,108,104,107,125,107,102,112,107,103,104,115,104,87,103,99,106,106,107,108,106,108,92,108,99,103,101,105,120,104,106,110,105,97,99,95,105,112,109,125,100,98,114,100,97,101,115,105,108,110,104,107,111,102,112,117,113,116,112,84,112,105,109,117,106,110,118,96,104,103,110,112,104,93,102,83,114,113,113,103,103,104,114,104,104,109,117,97,109,105,100,111,112,109,112,103,111,104,109,105,107,98,95,100,98,132,95,103,102,113,111,95,97,111,114,108,103,112,125,109,105,103,99,110,103,109,102,139,106,100,105,113,109,105,105,98,109,104,108,103,102,104,98,110,105,100,103,104,115,98,109,107,98,102,116,105,106,106,108,114,113,115,109,102,102,107,95,104,108,109,112,113,111,106,103,106,116,106,87,105,116,97,105,97,105,105,105,97,103,96,103,118,105,103,80,117,102,109,110,94,103,92,106,104,100,114,107,104,122,106,103,96,108,105,105,102,114,101,88,108,104,117,102,101,103,113,119,104,108,101,103,96,92,99,117,106,115,109,105,113,97,94,107,106,107,96,128,105,98,112,110,103,107,104,96,108,107,93,121,104,107,108,100,102,104,114,100,101,102,103,109,105,108,102,98,99,84,107,104,97,97,108,102,126,102,111,101,115,111,108,100,102,106,104,117,127,113,120,115,108,117,94,109,107,91,116,103,100,97,107,118,116,109,109,107,106,107,94,110,102,106,116,92,107,112,114,107,110,102,113,108,106,111,120,107,105,90,113,101,113,126,104,89,119,98,103,107,109,109,112,98,104,108,106,105,107,110,109,105,99,93,106,99,104,98,120,105,110,117,94,115,109,116,107,117,105,103,113,109,113,101,99,106,116,113,103,100,98,107,112,98,99,106,109,92,119,124,111,97,115,107,109,109,105,100,113,111,95,99,91,99,113,98,113,109,115,108,109,96,106,113,125,122,102,97,102,106,102,105,105,100,98,115,95,104,121,100,117,94,94,94,108,111,135,111,105,110,105,119,104,106,104,103,105,111,119,109,115,110,108,108,117,110,115,102,107,103,113,103,106,112,108,102,113,102,104,100,119,117,102,110,110,99,109,103,94,107,99,95,109,119,99,108,96,96,129,99,114,101,102,114,113,110,115,108,110,102,110,100,109,96,101,107,94,113,100,105,106,92,104,107,113,91,109,118,96,110,101,117,97,102,103,103,112,107,94,112,108,114,105,109,116,103,103,105,105,105,106,99,101,102,72,101,92,75,106,90,104,100,102,103,119,93,104,113,92,113,103,110,100,100,118,105,114,112,110,104,106,105,113,103,120,107,104,102,95,100,102,97,115,101,96,117,108,107,98,104,104,117,103,106,104,102,113,103,112,108,111,115,109,109,103,117,120,102,111,110,97,100,112,97,99,91,107,137,99,104,114,97,107,115,125,109,102,91,111,102,122,99,109,113,107,97,108,108,95,109,82,105,98,110,124,112,107,102,98,109,103,106,97,104,108,97,103,105,103,98,87,116,106,121,99,102,121,105,105,102,108,108,85,109,100,97,114,112,104,101,93,102,106,112,113,107,108,94,103,98,116,117,108,105,106,102,105,112,100,111,105,83,103,104,107,99,109,94,112,108,104,91,103,108,111,105,101,112,117,114,117,106,111,108,104,105,116,109,106,109,109,111,99,96,102,105,116,108,104,95,117,104,108,109,109,106,102,101,117,103,116,94,103,106,108,123,104,106,102,114,109,101,109,104,106,105,116,105,109,113,115,112,95,102,92,101,107,113,106,104,106,107,99,108,103,111,102,106,96,108,113,112,116,101,108,106,101,107,117,92,114,105,117,110,97,109,98,110,107,109,99,106,95,106,110,117,99,95,113,105,105,104,110,100,113,105,111,100,109,99,102,102,105,100,113,103,108,113,105,116,97,106,108,100,116,107,116,105,122,104,111,119,100,121,107,103,95,109,101,71,98,106,98,99,104,82,106,113,105,99,117,103,101,112,113,102,91,97,101,113,92,103,111,111,103,100,103,106,111,109,98,109,103,104,117,107,110,109,107,98,108,92,107,108,92,111,117,112,101,109,102,106,108,106,104,111,106,112,108,104,113,106,110,99,99,128,91,112,101,119,114,98,114,116,105,107,100,101,105,112,104,108,116,117,113,103,106,112,95,107,87,116,115,106,99,110,116,100,110,112,96,102,113,115,113,113,96,103,108,96,97,109,103,114,93,110,106,121,122,103,109,111,104,114,104,109,103,103,109,102,103,102,99,116,101,110,109,107,102,91,103,101,103,125,113,121,101,108,109,108,110,111,105,98,105,108,109,102,119,111,107,113,108,100,104,119,105,102,108,104,101,98,108,132,114,102,115,102,112,106,103,99,110,97,109,95,107,109,104,114,110,109,96,106,105,96,90,103,112,98,103,107,98,102,99,103,112,125,104,103,110,111,100,105,101,102,95,116,109,97,105,103,117,104,97,108,103,104,107,111,108,115,95,109,112,109,107,114,99,111,102,100,104,103,113,100,102,101,102,102,103,113,90,106,109,102,103,92,109,110,109,115,101,112,104,105,98,111,116,112,79,105,112,106,99,101,110,106,85,104,107,102,95,99,98,110,113,99,98,108,109,114,104,110,102,110,108,96,105,95,109,102,108,103,107,98,108,92,97,111,114,102,108,110,98,109,105,93,116,105,116,96,99,72,94,113,94,92,95,103,104,103,109,106,98,95,114,104,110,115,138,108,109,107,100,106,115,105,112,110,95,98,121,103,109,140,107,96,107,104,103,117,105,97,113,106,107,111,106,89,107,87,94,104,106,101,96,98,106,94,111,104,121,112,109,106,103,95,89,106,79,107,104,105,100,105,120,104,105,117,118,92,91,99,105,110,95,89,100,103,108,105,91,106,106,109,100,97,99,101,105,94,100,83,93,108,120,107,105,103,108,104,99,97,81,100,103,104,104,109,92,101,94,85,106,107,118,99,105,102,98,102,112,91,104,112,105,103,113,94,104,115,98,94,90,107,90,109, +528.3125,118,114,99,112,84,98,118,110,112,98,109,107,95,92,96,106,115,104,101,106,103,99,100,87,113,109,107,106,103,116,107,96,100,102,110,100,92,94,108,106,110,108,75,84,106,119,99,113,108,107,93,120,108,108,98,99,101,105,117,99,114,80,118,115,105,123,88,106,103,99,99,100,91,99,105,103,100,111,112,101,108,106,110,102,97,101,100,106,101,108,110,109,101,86,115,104,125,104,108,93,105,103,99,111,114,96,106,95,106,94,113,111,100,96,103,104,104,105,95,100,106,105,107,105,114,116,97,105,101,99,100,117,103,98,109,103,100,97,108,97,89,87,121,96,100,99,108,98,110,98,106,110,103,93,94,116,111,96,102,98,95,104,111,106,98,96,95,93,107,95,109,103,102,91,110,115,107,94,111,94,111,105,104,95,109,93,97,91,114,101,105,116,101,90,98,105,114,97,107,116,106,81,115,107,82,98,69,106,121,104,102,115,101,107,108,104,98,105,107,100,100,99,95,109,87,107,102,103,118,105,93,102,128,107,114,113,124,102,107,102,98,116,102,101,96,101,100,105,103,112,100,104,105,102,97,111,98,107,92,110,98,109,104,105,87,104,113,108,101,104,107,107,114,111,103,113,112,101,101,100,109,111,97,94,109,103,99,108,104,95,111,107,110,105,123,100,104,70,109,104,98,112,103,103,99,107,91,108,117,110,89,114,86,107,103,112,107,100,101,99,105,114,114,92,107,90,95,108,122,109,92,99,103,106,101,110,102,98,105,101,110,105,107,113,106,119,91,133,117,107,104,105,106,111,109,111,99,121,104,104,97,98,94,98,95,112,104,105,104,107,76,105,106,104,100,111,110,109,90,112,107,111,106,99,114,113,104,102,108,102,116,100,110,108,101,109,99,94,101,118,95,100,106,81,96,100,92,115,108,92,104,94,112,112,96,109,101,79,105,99,110,99,112,111,107,95,105,103,104,108,106,103,105,101,107,103,98,105,109,91,104,117,108,90,101,101,98,87,103,97,95,118,106,95,117,109,106,103,109,104,108,95,112,115,105,112,111,117,98,92,97,105,102,98,100,96,100,116,121,109,105,95,112,104,113,102,108,118,100,106,106,108,98,104,103,95,97,95,104,113,119,98,100,110,114,103,104,100,108,108,118,111,100,106,111,111,116,104,104,88,98,109,108,104,99,112,86,99,98,98,104,105,105,98,106,90,108,100,96,108,105,81,103,108,110,83,106,110,106,107,103,116,116,108,103,100,110,102,105,91,103,99,66,109,110,104,99,106,116,100,99,94,100,108,108,135,102,103,104,108,104,101,106,83,110,111,114,99,82,98,109,106,97,113,118,102,90,88,120,113,110,110,110,107,92,102,101,99,95,91,85,100,106,102,113,96,114,106,123,103,105,121,104,103,122,96,104,101,78,102,118,108,106,86,100,106,109,93,99,110,107,96,112,109,103,103,107,91,113,111,113,110,100,105,113,95,104,113,119,100,116,114,104,113,121,113,98,104,112,105,105,103,102,103,98,107,103,107,113,99,112,107,106,106,103,107,107,102,99,95,106,104,93,115,110,105,102,105,97,101,105,117,106,112,107,104,112,94,85,110,111,107,101,111,92,108,105,103,99,95,105,103,115,104,103,89,102,113,110,108,98,100,107,107,102,97,117,109,101,108,108,105,95,102,111,109,111,106,100,110,101,113,104,90,97,101,112,91,118,94,112,104,109,94,98,106,99,107,122,94,116,100,100,102,108,125,107,112,100,99,106,114,103,101,112,114,105,113,112,106,106,111,116,95,117,119,107,105,102,98,114,111,116,92,98,105,104,110,107,103,110,104,116,98,105,117,113,102,117,106,106,105,98,111,104,106,114,99,103,106,102,114,109,114,103,103,104,109,96,109,102,111,106,104,101,105,100,103,101,107,109,97,104,109,100,102,102,108,104,112,93,100,101,113,110,122,94,102,97,102,110,103,102,104,104,92,110,111,94,103,112,105,105,91,99,102,105,120,99,107,107,99,86,111,103,92,113,83,94,105,102,101,100,95,106,100,94,103,87,95,94,100,102,112,94,122,109,109,99,106,114,113,115,114,121,101,102,113,93,99,111,97,100,118,106,91,97,98,104,108,125,96,99,98,98,108,107,96,101,118,98,112,115,110,110,93,101,106,104,108,108,102,110,95,109,106,108,99,115,105,87,110,111,89,110,93,107,98,91,95,107,100,100,100,84,103,96,114,97,100,99,92,90,107,102,109,102,112,105,103,107,95,94,115,103,111,112,109,109,105,103,95,104,105,103,106,108,104,106,108,108,108,114,102,98,90,91,102,101,109,102,99,101,102,102,106,100,104,108,106,103,100,95,100,103,112,104,103,109,123,117,112,101,95,110,106,95,104,112,105,118,107,108,112,91,99,103,101,102,103,100,110,102,100,106,105,104,103,94,104,95,98,113,107,103,106,117,107,108,89,109,121,124,93,95,95,110,105,110,105,97,101,107,93,121,113,103,100,97,96,98,104,94,67,105,103,112,103,101,98,105,99,101,113,103,108,100,103,111,121,96,110,104,116,103,107,111,113,116,100,100,99,103,101,93,105,101,103,106,99,125,87,110,100,105,117,114,99,105,105,106,81,117,93,93,111,106,107,112,101,95,105,113,94,81,99,100,95,104,104,100,103,106,115,90,117,119,105,104,105,101,105,116,119,133,127,99,113,105,109,108,115,102,97,102,103,109,73,109,97,97,116,110,98,110,106,103,109,96,92,108,111,109,98,121,107,108,101,116,106,94,113,109,115,101,119,112,103,107,94,106,110,99,90,95,113,96,105,113,104,94,101,97,102,103,105,101,120,94,103,111,112,103,102,116,103,105,123,113,107,112,103,113,120,101,103,104,99,106,99,119,106,127,111,110,108,91,99,118,102,102,119,114,97,115,110,104,105,109,104,87,104,85,117,119,107,94,100,106,107,104,101,92,101,93,99,97,88,108,112,107,109,95,114,107,101,106,95,108,120,109,109,110,99,100,110,93,102,104,106,102,104,108,100,109,99,117,102,111,90,105,115,102,106,100,95,107,107,115,106,110,116,112,94,112,95,111,92,106,118,104,104,101,112,112,104,106,112,113,113,102,100,100,86,109,96,114,102,115,97,103,99,102,100,98,106,105,98,100,98,101,101,99,109,99,109,102,102,106,112,105,106,104,102,115,95,132,99,76,105,103,102,97,106,100,102,107,97,102,107,114,107,109,109,124,102,108,121,106,111,107,104,100,105,110,106,106,116,103,103,101,103,100,74,108,103,110,105,98,116,107,112,101,99,108,112,105,105,106,101,109,111,112,102,102,109,108,110,113,107,95,113,102,106,108,110,97,105,104,104,100,105,95,106,107,102,111,109,97,102,103,112,105,117,103,114,107,114,113,114,98,92,103,99,103,100,102,108,92,102,107,113,120,109,106,108,112,102,106,105,111,100,108,70,109,122,107,103,110,107,120,99,97,113,104,122,104,98,109,112,110,98,108,110,109,109,103,108,100,105,108,106,96,100,111,105,111,100,110,101,115,91,104,101,85,103,82,102,105,116,95,97,110,94,107,109,109,99,99,106,101,106,111,102,107,103,108,112,93,98,104,106,103,104,99,109,103,93,110,107,102,100,110,99,104,111,103,109,98,110,108,116,113,96,87,107,99,107,85,102,101,103,108,120,103,111,105,99,95,98,105,102,107,88,101,91,117,106,113,92,99,102,106,105,120,103,102,106,103,104,106,105,101,95,103,110,106,92,126,110,100,113,103,109,99,104,99,109,90,110,115,101,109,105,100,108,101,89,101,113,101,110,100,106,108,110,108,104,104,108,115,82,112,101,108,114,107,88,95,93,113,112,94,108,111,102,103,101,100,127,109,101,101,112,109,103,100,96,110,101,108,99,118,96,109,112,110,123,112,92,112,98,105,100,99,105,102,107,97,95,99,106,105,109,118,96,102,108,101,103,97,102,107,112,102,106,100,116,92,112,114,118,106,102,111,98,107,107,101,122,107,100,94,108,106,106,101,96,110,112,98,110,117,117,99,99,102,98,108,94,99,118,104,117,105,102,99,113,109,106,103,105,106,92,107,113,111,104,105,105,105,111,105,110,111,106,97,106,107,107,116,101,96,102,99,101,111,95,109,106,103,102,107,114,98,88,97,101,101,102,108,98,103,100,106,105,107,103,110,112,120,105,110,102,96,97,111,109,102,101,100,107,113,98,101,112,85,95,109,123,109,103,108,112,105,103,106,110,97,118,99,104,99,105,98,108,113,111,104,104,104,95,108,95,108,94,104,118,86,118,84,109,112,103,101,97,106,109,107,108,101,106,107,105,111,99,103,105,109,96,98,106,100,116,90,99,108,111,102,95,103,97,110,108,94,100,95,113,109,104,106,102,104,103,104,105,95,87,104,110,117,105,109,99,101,108,106,105,108,100,96,97,109,106,107,107,106,92,104,95,100,98,96,108,106,93,98,108,115,102,101,106,106,111,100,117,102,106,97,101,103,104,96,90,105,103,98,90,94,106,108,103,103,112,105,107,118,92,108,101,99,101,112,92,100,106,119,107,113,106,100,104,106,113,101,105,114,112,90,108,114,113,114,95,106,115,110,123,106,99,99,104,105,116,98,109,100,100,100,106,109,97,106,106,91,110,109,106,122,108,109,106,104,97,117,107,100,104,95,86,86,101,99,107,98,98,118,104,100,100,92,94,113,103,97,106,101,108,93,93,97,101,88,106,106,90,116,99,109,112,108,108,113,102,100,111,112,109,113,97,112,107,94,105,100,99,109,99,99,100,108,70,103,100,98,98,96,98,98,95,105,139,84,94,103,96,95,98,91,96,116,106,98,104,102,108,111,109,100,95, +528.45325,100,99,115,124,82,93,88,119,91,110,100,95,95,109,93,113,94,96,100,99,96,109,65,100,105,118,86,97,109,96,95,98,75,106,99,107,111,103,104,110,71,96,109,103,92,93,92,93,107,109,96,91,107,96,88,101,108,95,101,97,98,102,102,87,102,105,111,108,91,91,99,108,96,111,102,104,104,101,102,105,100,94,113,100,103,110,108,106,96,105,96,107,103,108,118,110,99,98,112,81,103,91,105,101,103,108,103,101,101,95,110,99,105,98,116,97,106,112,114,113,99,95,100,114,100,109,109,91,107,99,105,95,94,110,106,102,103,111,98,94,98,95,100,96,110,98,109,112,102,83,93,96,96,99,90,102,106,103,99,101,100,104,106,112,118,101,103,110,127,96,104,114,101,109,106,98,98,105,106,103,112,106,96,110,103,96,104,105,111,83,103,99,105,106,103,107,96,98,95,108,114,98,86,100,85,130,117,95,108,106,105,100,115,111,95,107,101,99,105,110,103,98,72,98,114,98,104,110,105,107,99,103,99,109,99,103,103,104,113,102,103,108,111,107,102,104,105,102,117,97,105,109,102,104,95,104,96,111,111,107,96,118,114,114,105,103,96,76,104,102,115,113,91,74,109,108,101,104,104,101,93,105,97,110,92,108,93,107,103,100,99,109,110,102,103,107,101,110,106,108,92,110,98,112,95,105,104,120,100,119,100,109,102,106,115,113,113,106,106,104,104,94,117,98,105,97,93,112,99,111,113,101,108,106,104,98,109,88,103,95,103,94,112,99,115,99,92,104,109,109,110,113,83,105,117,109,104,116,109,113,109,113,90,101,107,93,92,110,94,99,104,107,104,95,104,110,113,100,105,113,99,107,99,103,96,95,104,101,112,108,104,104,103,117,97,110,97,98,99,106,122,101,107,70,109,89,98,110,115,111,103,98,100,112,107,101,91,109,109,105,95,99,95,105,117,101,103,93,93,113,96,105,96,109,119,103,102,95,102,114,105,113,102,113,95,107,88,95,110,97,98,99,94,99,104,105,109,110,105,111,96,106,102,109,111,106,113,102,105,101,90,107,106,109,103,95,105,111,106,98,103,70,109,86,109,101,101,104,109,93,127,105,101,100,95,108,95,110,103,110,105,103,104,103,108,102,88,97,104,107,99,117,106,89,102,97,109,103,99,100,100,98,101,105,102,109,103,95,114,97,102,104,111,109,103,118,104,96,112,98,113,114,103,100,95,99,104,105,110,100,104,95,118,99,100,109,103,106,98,97,104,100,100,104,99,110,108,104,108,105,100,106,105,102,97,99,103,114,104,107,106,93,107,104,88,104,109,109,113,110,97,100,103,94,113,112,107,106,116,114,109,104,105,105,107,124,122,95,104,104,102,101,99,100,112,108,112,108,104,100,100,101,101,100,101,107,106,111,107,86,119,89,92,95,104,99,103,111,108,101,99,100,96,94,91,98,112,100,92,117,92,95,104,103,113,101,109,106,88,97,102,100,100,106,95,110,102,95,111,99,91,108,98,115,99,113,99,108,106,112,101,100,112,104,94,103,107,98,98,125,94,125,96,107,109,103,102,98,90,99,113,109,94,94,105,103,106,113,113,110,117,107,102,108,98,107,107,107,114,114,104,101,92,101,101,99,101,112,110,105,106,105,99,105,104,90,112,100,116,95,102,102,98,111,109,104,106,103,116,101,99,98,113,105,114,106,102,109,114,101,107,103,117,97,96,100,100,99,96,102,95,107,121,112,101,102,113,111,110,106,94,107,102,114,97,128,94,99,102,103,106,103,105,104,107,111,103,103,105,108,100,96,96,120,102,110,99,101,106,126,100,95,104,111,102,102,102,108,106,100,104,97,98,113,100,103,107,98,108,104,105,110,110,100,101,102,104,106,107,96,111,91,94,108,102,105,103,102,98,100,73,104,96,87,97,122,106,93,101,100,116,100,102,109,109,95,110,114,78,108,109,105,109,107,95,103,104,100,102,106,112,107,106,107,89,111,104,108,113,103,107,99,97,102,108,106,106,106,100,105,111,115,104,108,96,95,101,101,86,98,104,101,105,101,108,94,108,102,80,103,103,96,102,112,108,97,106,95,94,105,99,112,112,99,117,116,108,109,99,106,102,96,114,101,101,103,105,107,109,108,105,98,116,114,105,112,107,115,101,104,106,108,106,90,100,94,95,109,94,124,94,107,110,101,106,99,92,98,103,103,92,106,119,105,125,68,100,112,105,106,112,99,103,102,96,102,100,104,97,107,103,98,99,96,104,107,108,115,104,104,96,117,97,100,98,103,106,96,108,118,88,102,97,98,111,100,110,101,106,83,118,108,106,94,102,112,95,98,109,103,95,117,103,105,103,82,111,102,87,112,107,109,114,107,100,80,95,93,104,112,102,125,96,96,96,96,105,101,106,97,89,109,104,94,91,97,104,108,101,107,98,112,99,108,107,104,110,90,110,95,104,105,100,102,105,100,105,106,106,83,104,108,108,102,103,106,103,102,101,102,101,99,97,104,95,106,98,105,112,89,117,108,100,104,99,112,95,105,97,114,102,105,105,105,100,104,102,105,105,105,106,104,109,115,105,101,106,104,113,99,95,113,103,107,100,114,114,96,95,115,100,91,102,88,116,118,110,129,105,113,80,97,109,104,100,99,113,98,91,92,105,96,100,109,104,106,125,104,106,113,96,97,115,109,102,109,112,99,104,109,107,104,102,112,96,108,103,106,99,108,109,109,102,116,118,98,107,106,117,98,98,112,108,103,112,108,104,96,104,106,106,104,96,104,115,114,108,113,121,103,102,113,109,109,99,98,121,108,107,104,106,110,118,119,105,106,102,102,100,109,113,101,143,87,102,105,106,113,91,104,115,102,109,109,110,102,117,104,108,110,112,100,117,115,106,103,104,119,121,103,81,112,104,111,118,125,103,101,105,114,101,95,101,86,95,107,106,107,119,96,102,116,96,104,105,116,107,106,105,101,109,103,110,108,102,100,104,114,109,107,113,94,91,109,104,117,96,101,104,112,95,116,110,104,95,100,86,103,112,99,98,107,116,106,114,95,116,93,87,108,127,84,102,107,96,100,110,100,109,97,112,107,95,107,104,94,107,104,106,99,107,106,105,110,99,104,106,99,94,100,94,105,103,98,109,126,99,104,108,95,111,105,114,113,101,122,112,97,106,106,107,94,99,92,102,104,98,100,111,109,98,99,106,101,116,106,95,110,93,115,103,94,113,112,112,107,100,121,96,111,104,91,104,106,103,104,107,104,107,99,92,103,106,100,109,113,101,112,107,99,104,106,103,101,104,116,109,103,92,99,104,113,95,111,106,103,102,95,112,111,106,105,105,106,108,113,94,108,104,104,101,94,91,103,96,105,104,117,117,108,96,110,109,102,98,119,110,96,107,102,95,73,99,97,106,99,101,116,114,116,99,109,103,106,99,92,102,110,101,99,108,105,107,104,104,110,124,111,102,113,102,99,102,130,101,117,101,105,93,103,114,99,98,102,108,103,109,100,95,120,99,105,97,96,93,108,106,104,83,107,103,106,112,102,96,93,105,110,67,92,100,108,89,108,99,113,117,98,94,110,86,103,97,100,78,95,99,100,100,115,100,115,108,106,91,99,128,97,105,106,106,98,103,116,112,102,100,115,103,110,109,107,105,106,108,109,107,103,101,100,108,109,99,88,106,104,104,108,99,90,108,98,100,107,107,109,98,89,119,100,109,109,100,102,115,98,104,109,119,124,112,105,110,101,97,90,81,107,114,102,100,114,104,122,109,105,108,96,95,105,118,98,108,106,106,121,96,109,96,117,99,118,102,94,105,101,109,85,102,116,104,100,100,88,88,114,113,109,106,103,107,116,101,101,100,101,100,106,107,110,105,93,101,103,89,98,104,108,118,97,108,105,113,97,104,113,106,112,119,95,108,97,95,117,107,109,99,104,109,102,111,113,98,111,115,108,107,100,103,95,104,125,98,102,117,100,108,105,103,111,108,98,118,92,114,101,105,105,128,100,103,104,103,104,105,112,101,106,103,106,115,88,105,105,105,105,108,108,109,101,106,109,104,117,103,122,108,111,120,112,110,100,112,113,91,100,90,107,112,85,112,102,100,107,107,99,96,122,105,120,95,107,104,108,104,104,109,113,116,113,109,110,100,117,104,116,100,111,100,106,105,116,100,113,99,103,103,110,107,99,102,98,104,106,103,105,110,121,102,101,100,113,104,111,104,96,101,106,111,108,79,114,98,115,110,107,111,102,100,112,92,110,107,112,102,113,108,107,100,112,118,111,102,107,113,101,99,113,100,111,109,99,112,100,109,117,100,94,111,106,89,94,117,106,112,104,103,113,97,92,108,109,110,109,105,100,104,114,102,107,97,80,112,108,98,98,93,99,108,109,108,110,98,102,107,107,121,100,107,98,83,114,91,115,99,106,103,108,113,109,96,102,100,102,103,97,98,103,98,100,102,100,97,106,105,110,110,109,102,102,100,87,97,109,110,100,96,106,99,101,99,102,111,117,103,102,98,94,109,107,104,78,103,105,104,96,99,113,106,105,112,93,109,104,104,102,75,92,115,102,104,108,104,106,105,109,114,108,108,93,114,107,95,99,116,96,112,94,105,110,90,105,116,108,108,104,101,106,112,97,101,99,105,106,110,99,103,93,106,76,110,106,109,111,90,102,104,106,107,104,91,103,90,96,110,99,113,100,96,91,113,105,93,114,99,100,135,91,103,107,98,103,106,111,114,128,110,100,113,108,118,97,98,106,99,95,99,102,95,108,103,92,99,95,108,104,95,106,103,103,106,111,105,104,91,119,83,112,108,96,108,105,94,109,110,92,92,102,108,100,113,102,113,117,109,112,113,100,109,107, +528.59399,112,105,102,112,99,108,94,87,99,105,110,112,105,89,87,101,107,104,117,95,113,98,109,103,108,117,108,107,106,101,72,113,104,104,102,107,93,101,98,110,101,95,107,104,97,111,108,90,97,122,91,91,104,107,97,103,91,90,100,107,112,102,108,112,96,107,100,105,94,97,105,116,108,107,100,110,108,115,104,105,103,104,108,102,105,95,91,131,109,95,104,116,106,106,113,102,106,113,109,103,81,96,98,108,100,91,117,105,103,92,110,92,103,94,100,97,109,100,102,107,109,105,104,108,119,102,99,104,104,86,109,109,98,110,105,98,93,104,99,98,116,102,106,113,96,109,107,104,99,102,114,102,119,95,120,105,99,91,102,96,103,100,105,113,106,103,104,105,97,94,101,107,107,103,100,100,99,91,103,114,97,109,99,97,105,88,112,101,112,114,102,107,100,103,96,117,106,112,109,103,109,83,109,108,101,103,105,105,111,113,102,109,115,112,97,87,85,113,101,92,99,100,99,106,104,107,88,105,107,113,120,105,110,113,112,105,111,104,90,116,106,79,105,96,91,115,110,109,99,109,120,108,99,99,97,105,118,101,102,96,102,112,96,109,95,114,105,109,101,102,107,102,106,110,108,95,94,114,103,104,105,109,98,106,99,102,92,96,100,102,99,92,103,104,109,102,111,107,108,111,114,105,110,103,91,106,104,103,119,99,99,112,104,120,121,99,113,105,123,100,105,120,104,96,93,103,102,86,101,110,114,106,112,108,114,97,105,102,101,124,105,103,118,107,75,106,101,106,113,103,104,95,113,109,98,102,95,113,100,110,99,100,99,94,97,99,112,107,100,99,113,105,111,92,103,106,109,92,112,105,108,111,132,110,99,100,94,86,109,113,104,106,109,104,103,104,103,105,96,112,120,105,97,109,104,104,106,114,104,104,98,105,100,109,100,98,74,107,114,105,103,104,113,103,106,96,105,115,99,117,96,99,104,117,102,109,101,112,102,112,101,113,98,113,111,100,102,109,91,120,95,86,105,103,98,105,102,99,106,109,98,104,109,108,105,112,114,114,100,105,120,124,100,102,105,98,99,105,101,98,101,98,125,110,108,106,103,104,104,104,102,104,98,93,97,94,103,102,113,92,113,110,109,94,109,99,98,110,112,104,109,118,91,105,107,102,95,109,108,103,98,111,96,105,120,111,105,106,99,102,101,112,106,108,104,95,99,109,94,112,105,103,108,107,110,114,111,108,116,109,113,102,96,105,99,101,93,101,108,99,103,114,94,103,95,95,111,107,111,106,102,98,105,101,108,105,109,100,113,108,108,90,109,101,82,99,109,109,117,109,113,96,102,110,106,94,100,97,110,110,104,106,108,104,94,107,105,108,97,117,100,108,99,110,116,104,109,112,108,100,92,101,98,109,105,104,97,107,101,109,96,102,101,105,98,95,105,90,108,121,109,99,105,95,105,96,99,90,99,105,99,111,106,110,99,105,97,112,108,101,109,109,100,102,113,103,107,98,106,104,120,108,103,90,92,105,99,102,110,105,97,110,111,104,101,102,103,98,105,112,91,112,103,118,101,103,109,124,104,98,101,103,109,98,101,112,104,104,96,102,113,109,77,96,98,103,95,98,104,95,103,93,108,109,103,115,110,108,109,105,113,109,102,100,110,104,110,111,107,103,110,91,116,98,107,108,108,101,109,115,105,102,98,95,94,105,112,98,101,106,105,91,102,108,107,103,103,103,105,102,103,109,96,103,103,104,107,104,105,106,100,106,117,114,108,122,105,104,104,108,104,110,109,107,119,102,107,111,116,118,98,93,103,107,97,104,109,113,106,106,122,106,86,107,106,98,101,107,104,99,109,103,117,84,107,102,103,105,107,112,99,104,104,110,109,102,113,102,105,97,115,106,106,107,78,103,99,111,91,108,94,117,97,104,96,90,101,101,107,112,103,109,106,107,104,96,104,102,108,107,111,120,103,108,97,107,104,104,99,99,114,104,114,116,106,103,105,119,105,99,107,115,113,107,103,103,118,121,110,112,87,98,125,105,111,101,89,105,106,87,89,103,96,113,105,86,92,98,105,112,105,104,118,117,98,105,102,138,102,95,88,119,106,113,101,105,105,102,106,99,109,106,118,110,101,106,107,110,116,104,112,100,106,106,113,114,92,97,102,101,107,109,102,110,111,97,102,104,75,104,88,100,106,106,102,118,100,94,103,103,98,116,103,105,86,96,99,102,100,94,113,104,106,101,106,103,115,101,98,102,111,101,101,105,106,103,104,104,97,103,115,106,134,118,118,104,100,102,106,106,95,135,98,95,105,109,86,105,108,102,103,117,104,103,102,103,65,108,100,110,109,103,87,103,102,98,101,78,95,104,103,96,100,98,100,105,102,99,100,100,110,113,106,111,97,96,86,104,114,98,103,110,110,102,99,106,104,103,105,104,107,97,93,105,107,101,96,97,105,100,119,103,117,99,108,100,113,98,104,107,100,108,95,106,109,112,101,116,111,102,109,112,99,107,117,94,108,105,108,108,94,97,96,100,98,95,109,113,108,98,103,99,106,91,112,99,102,112,108,102,107,88,111,108,105,105,107,107,99,97,103,104,99,108,109,99,98,109,103,100,106,107,100,102,108,137,106,113,103,118,106,106,122,100,104,98,78,93,106,107,108,89,105,113,116,99,107,100,111,111,102,103,102,108,87,101,110,96,99,99,112,110,101,99,102,104,110,112,99,101,113,105,103,95,94,102,116,98,119,105,115,104,100,95,97,100,115,99,104,91,99,102,117,105,130,103,105,104,99,102,106,101,106,105,109,91,102,106,97,113,111,115,102,97,96,74,102,114,116,102,89,109,118,104,107,105,92,116,117,98,108,98,115,109,123,94,109,99,99,113,101,104,100,112,100,112,102,101,115,101,92,95,104,112,95,100,101,95,105,103,105,108,99,111,103,104,106,100,105,103,108,101,94,105,101,101,107,99,95,98,99,90,106,102,103,113,106,110,104,106,108,109,95,106,106,107,113,96,95,103,81,102,113,110,103,112,102,100,109,107,102,117,116,84,98,91,102,105,100,112,108,95,109,93,99,99,113,104,103,106,97,102,102,100,71,99,99,106,100,102,99,104,97,101,102,102,95,90,95,98,88,104,113,108,101,100,97,105,112,123,101,95,107,100,97,104,106,89,96,102,96,103,94,92,111,93,107,112,95,98,106,111,102,98,97,103,98,109,102,110,104,118,99,120,101,108,97,112,105,107,103,113,105,105,100,108,100,104,107,103,90,96,101,108,90,116,102,106,110,98,113,105,105,97,105,117,113,105,99,101,96,102,102,109,106,108,107,98,103,101,103,96,110,105,104,103,106,105,104,105,100,71,104,110,106,97,110,109,116,107,108,103,110,115,97,100,101,105,103,102,102,99,97,92,95,109,99,104,105,103,129,102,114,104,98,104,107,97,101,107,123,115,96,96,105,106,121,95,106,100,106,106,95,97,107,104,103,104,100,113,106,112,100,99,112,117,105,100,103,104,91,104,101,92,105,100,99,106,99,111,108,103,97,96,107,110,114,109,104,97,93,97,99,109,102,95,107,93,95,112,104,100,111,102,100,105,101,109,105,112,87,110,111,111,109,104,101,99,102,116,107,117,108,98,113,106,107,97,106,112,108,106,95,106,98,102,99,107,89,104,113,90,113,115,108,97,102,99,99,98,102,106,105,137,108,112,103,107,114,94,96,105,95,111,108,106,114,113,105,105,113,100,100,105,102,102,92,94,109,101,97,101,107,106,103,107,113,106,105,98,110,96,103,108,105,116,101,103,94,108,98,106,106,97,112,109,114,96,109,106,100,110,94,110,109,96,108,103,110,99,102,99,94,103,100,111,95,100,112,94,108,96,97,109,95,105,114,101,94,106,96,106,101,99,102,109,105,116,100,95,102,115,103,108,103,104,106,106,102,115,117,104,109,98,104,95,102,113,97,100,98,111,97,102,108,100,103,106,113,109,105,98,98,80,102,95,110,96,113,99,113,99,90,111,106,105,91,106,115,104,105,97,129,103,93,100,106,99,112,103,104,113,107,104,98,110,111,102,101,100,125,97,91,108,105,106,102,93,106,95,105,101,112,110,108,95,110,92,97,108,101,102,117,96,105,105,101,107,97,95,109,104,96,108,106,110,97,106,105,113,113,111,92,108,114,97,111,91,113,112,106,106,89,92,94,108,109,111,118,109,93,96,110,105,96,107,92,97,101,101,109,94,90,103,100,109,115,94,101,101,101,104,107,97,109,102,116,78,115,102,103,103,115,96,116,91,98,103,108,107,106,110,102,102,100,107,103,99,100,108,106,99,103,110,107,104,108,108,109,102,94,101,119,104,90,99,98,107,97,98,89,102,102,109,105,102,94,64,105,109,105,111,99,98,97,103,86,104,101,98,102,90,103,96,103,95,99,99,105,99,94,106,100,108,110,94,104,108,99,104,95,102,111,112,106,105,101,110,99,100,92,93,93,107,104,101,119,99,106,103,101,92,106,106,106,98,98,87,100,105,96,110,103,95,104,109,119,99,100,97,114,96,94,103,113,106,99,108,104,103,94,109,90,100,99,109,114,108,106,81,108,99,117,107,101,101,109,104,107,99,102,122,102,109,107,100,96,97,94,92,86,101,100,100,99,87,95,90,90,101,99,96,98,98,91,96,104,91,104,67,96,90,90,99,115,113,98,102,105,101,115,98,100,104,93,106,99,113,117,108,105,105,84,105,100,105,113,99,105,116,118,93,116,106,99,96,95,105,113,110,103,106,111,111,106,96,115,98,99,110,95,110,109,103,105,101,105,79,105,108,106,101,105,99,96,96,107,102,108,99,106,105,101,90,94,104,108,112,119,100, +528.73474,95,103,102,106,98,105,102,96,99,101,92,94,91,102,110,112,95,96,104,101,93,98,108,104,106,106,106,100,108,103,97,107,105,103,118,99,98,111,112,121,118,105,97,103,97,105,99,108,97,109,104,103,106,117,90,105,100,106,101,111,101,102,88,91,120,110,103,97,102,99,95,102,99,115,104,114,91,103,80,98,120,107,87,101,91,105,119,114,97,108,104,106,105,105,98,104,101,89,117,107,103,108,110,100,110,141,95,111,93,108,112,113,123,105,102,109,106,98,119,112,100,102,111,119,116,104,106,92,101,100,98,100,104,104,109,108,98,100,102,94,106,100,99,90,95,107,112,108,108,105,101,105,99,93,103,103,109,107,98,77,111,103,108,107,100,102,99,93,106,98,94,106,94,110,89,105,109,92,107,117,117,110,105,104,104,95,103,99,102,93,109,96,97,98,101,92,100,101,90,101,94,99,83,123,99,104,108,109,110,102,109,98,119,95,106,104,91,84,114,113,119,106,103,91,109,109,97,98,114,112,105,115,90,98,106,107,103,96,106,105,117,97,119,110,104,97,90,103,106,108,90,106,96,111,111,108,101,103,93,105,95,106,108,106,108,104,104,90,96,101,82,102,106,95,113,103,96,102,102,98,116,104,107,110,99,109,112,103,136,111,113,113,115,108,114,106,104,103,112,116,125,100,114,99,95,113,101,108,116,107,121,106,124,104,104,99,105,110,110,106,108,99,110,109,94,97,115,92,103,109,100,111,110,121,108,102,98,102,99,108,107,102,110,103,100,106,93,103,101,105,105,105,108,99,101,110,104,108,112,103,110,99,96,91,104,103,117,88,94,102,108,105,98,100,102,100,108,104,94,105,103,108,97,105,105,101,108,86,107,102,109,89,99,112,102,113,115,106,103,104,99,134,108,105,103,98,113,114,99,89,110,97,106,106,98,101,98,123,108,108,106,105,103,107,104,103,109,111,105,111,100,89,99,95,106,103,88,99,98,86,108,101,101,108,93,113,98,103,110,113,99,111,108,103,104,109,100,103,93,113,94,101,93,107,117,108,102,90,95,100,102,113,99,103,104,97,108,96,104,104,94,112,98,105,107,100,102,109,115,106,108,112,104,99,83,122,109,94,102,95,108,103,99,106,112,110,102,98,108,106,114,88,96,108,95,109,89,96,113,98,101,118,105,91,103,110,112,117,101,99,105,102,101,104,107,101,105,105,103,105,98,111,87,105,110,106,109,108,100,89,108,122,98,112,101,95,116,104,111,102,108,115,93,106,99,101,117,96,100,110,109,99,94,102,117,96,98,96,102,110,106,106,113,101,101,106,115,115,112,107,112,113,110,95,101,101,104,100,88,108,119,108,108,106,106,110,114,99,97,100,115,103,109,100,113,97,98,105,97,97,101,105,95,91,101,91,101,94,99,112,106,107,102,101,96,101,102,101,94,110,104,113,98,108,98,91,107,96,97,111,104,111,104,104,107,100,104,101,104,115,102,109,111,95,102,90,103,97,108,101,104,92,94,120,110,111,106,99,113,107,113,101,110,93,98,110,98,95,89,109,103,111,116,113,99,101,113,107,102,109,98,97,111,94,106,103,110,99,90,97,112,105,109,108,111,116,107,113,100,115,105,95,107,95,106,98,114,113,110,114,110,106,91,114,120,107,110,106,108,97,108,113,106,105,108,109,101,110,100,109,116,106,97,102,109,111,102,101,98,99,108,108,105,108,100,104,106,103,108,101,90,118,102,107,99,103,110,106,109,114,106,101,121,96,103,100,102,113,103,111,106,112,107,112,101,121,112,104,109,110,99,102,98,105,110,104,108,95,89,116,106,104,106,125,104,100,93,116,109,109,100,141,107,109,80,106,107,117,115,99,111,102,112,110,99,101,99,113,112,108,103,106,114,105,93,102,98,109,97,100,112,102,102,112,102,112,99,118,110,101,100,112,99,108,103,100,102,98,120,105,103,110,105,104,90,104,109,91,102,111,114,116,107,101,102,90,105,123,101,102,96,104,98,68,113,114,90,110,98,110,93,110,109,108,111,101,103,99,110,119,96,103,114,101,98,96,104,114,105,104,110,95,107,107,95,101,109,100,99,115,115,117,103,93,98,110,112,108,104,109,99,94,124,122,97,105,107,106,104,122,103,112,106,95,106,121,112,99,101,102,114,121,100,96,109,100,97,97,107,106,101,105,99,93,101,107,107,91,80,104,107,105,104,103,104,106,111,105,110,109,103,98,106,97,102,102,105,100,103,120,95,101,94,101,111,105,95,116,88,104,96,102,110,112,95,97,99,104,91,88,99,106,109,100,111,105,111,102,104,106,106,101,107,99,106,93,105,106,99,104,103,101,110,103,103,112,106,104,104,107,107,117,115,114,103,108,102,107,100,109,98,112,101,110,104,109,98,99,112,97,109,115,129,111,100,96,106,111,99,79,124,105,101,108,101,104,109,97,112,97,111,108,98,98,98,104,112,105,95,115,106,102,117,108,97,102,106,108,102,101,100,104,115,105,121,104,102,98,103,100,113,102,94,109,94,103,68,102,107,102,92,111,108,103,103,94,107,94,112,99,96,102,93,107,106,108,100,96,109,100,108,108,119,106,107,105,112,93,107,111,108,105,107,99,100,105,113,104,107,106,104,97,113,103,95,104,114,103,99,103,106,96,99,110,110,115,109,106,107,94,103,107,104,111,106,87,105,99,88,105,95,106,113,103,100,117,100,99,110,108,105,106,107,101,110,103,116,110,97,106,106,107,116,107,104,112,120,115,106,116,101,116,112,95,107,103,107,97,99,104,104,108,99,108,93,101,102,99,112,100,108,99,105,116,98,114,105,98,100,117,110,104,109,115,115,110,115,97,100,110,106,104,101,100,109,112,106,109,116,97,102,108,112,112,111,112,104,97,107,104,90,109,89,98,111,99,104,99,104,113,91,114,119,113,98,105,118,101,99,100,109,106,101,104,99,123,108,118,104,99,109,111,105,104,109,108,96,105,84,102,99,89,98,113,106,104,109,121,105,114,107,124,106,103,102,104,98,114,106,94,99,106,99,104,98,104,116,114,129,108,111,112,116,100,109,96,106,109,121,105,108,111,116,106,108,90,96,100,105,105,104,99,108,112,108,92,100,102,105,98,101,117,107,107,104,110,91,112,104,98,118,102,106,104,104,99,119,101,99,104,110,93,103,99,94,103,110,116,109,109,116,111,96,97,89,103,109,98,120,111,112,105,107,110,106,106,104,102,91,96,102,105,112,102,112,103,100,107,99,107,97,102,112,102,98,110,111,107,117,94,108,105,109,106,105,98,101,97,90,91,99,112,102,97,107,105,107,112,100,97,92,104,114,99,91,119,104,99,105,101,110,108,103,96,117,103,115,111,104,88,98,117,109,102,101,100,110,98,109,106,105,97,118,97,105,82,88,104,104,111,109,103,107,107,107,99,106,108,102,97,110,106,99,95,99,106,94,96,110,116,113,106,109,103,116,99,109,99,116,107,104,101,99,106,107,108,104,108,98,128,101,99,108,101,102,107,104,105,109,112,103,102,94,104,105,111,110,110,105,99,100,94,94,101,104,109,116,97,111,98,101,103,112,100,106,103,94,104,104,117,91,100,98,98,87,109,107,109,98,99,108,90,118,108,102,88,105,100,103,96,111,99,103,109,102,98,106,104,99,97,94,93,112,105,107,106,107,77,101,102,101,107,105,117,99,102,107,107,115,101,104,104,120,117,92,91,100,108,106,102,114,94,106,102,110,98,112,103,117,97,99,102,104,103,109,102,87,81,89,116,104,115,116,106,108,104,87,93,113,103,95,104,98,109,91,108,108,103,106,97,98,116,112,108,116,115,109,103,106,100,102,107,95,106,104,109,99,95,89,99,102,101,104,103,111,102,106,102,100,108,105,96,110,107,102,117,99,95,109,113,106,98,101,104,98,105,113,106,100,104,102,99,111,108,95,113,113,100,100,109,110,104,99,106,108,83,88,98,115,106,108,102,109,101,100,100,98,95,96,103,104,102,109,105,117,99,109,100,105,91,104,105,105,105,112,103,109,104,104,105,116,105,101,108,127,103,106,77,103,107,93,108,102,105,112,113,95,88,106,101,102,121,102,106,94,99,99,113,103,91,112,113,96,109,102,95,116,95,109,100,103,88,100,115,98,106,106,107,104,106,129,131,101,101,103,98,104,105,106,107,110,100,97,108,101,101,109,111,114,95,99,99,76,109,106,106,106,92,104,85,107,105,95,109,105,102,103,100,112,124,108,103,106,108,100,94,94,116,110,109,105,116,99,114,102,105,103,99,91,106,113,102,102,97,108,96,99,109,111,99,90,110,118,117,100,101,100,120,108,101,100,106,106,97,96,99,103,105,105,103,98,101,92,98,87,94,101,105,95,96,110,105,101,106,104,100,99,92,95,110,97,107,101,109,109,102,104,98,105,99,104,95,103,99,97,104,93,109,101,99,94,120,91,111,109,100,108,102,96,95,93,103,106,104,95,108,105,107,111,103,101,102,98,106,96,112,98,94,105,96,99,99,113,107,100,101,103,101,100,90,117,92,108,102,101,108,97,106,106,88,98,102,106,101,84,108,98,103,96,88,112,105,109,104,117,98,107,105,101,95,94,93,109,129,98,109,91,95,96,97,96,107,113,121,96,84,121,108,105,96,111,107,110,99,103,100,107,98,106,100,109,106,107,99,102,98,87,102,106,91,105,95,106,105,102,100,94,99,113,105,107,113,95,98,93,99,118,113,82,95,105,95,112,102,102,124,92,111,92,96,115,99,102,112,103,112,109,115,95,113,97,110,97,113,93,95,92,100,105,95,99,105,96,99,116,105,107,108,97,96,119,103,102,119,112,103,97,91,103,95, +528.87549,105,96,106,109,112,98,110,109,93,112,102,99,107,97,92,104,100,115,104,76,103,110,89,103,101,104,102,107,106,100,107,109,98,106,95,108,85,112,94,105,104,101,109,106,103,113,104,98,108,113,120,108,103,104,121,104,104,114,98,89,114,106,103,98,99,108,106,119,94,108,99,105,102,113,111,114,94,108,105,100,120,106,105,103,107,100,113,96,108,105,105,117,145,105,97,102,109,103,104,103,101,101,113,103,109,108,108,103,100,99,99,94,113,101,103,104,113,109,111,95,101,109,110,106,113,105,104,94,126,98,105,105,78,126,107,102,109,97,88,86,97,102,113,123,106,100,103,101,107,101,105,91,99,105,102,100,116,95,113,98,113,113,105,100,113,108,98,103,100,102,104,91,96,111,110,107,124,99,108,119,95,97,108,104,116,106,102,99,105,103,89,104,106,99,94,105,110,118,96,111,100,109,91,105,103,116,109,115,108,105,95,100,108,91,104,95,93,105,96,102,112,113,105,101,106,116,111,104,104,101,102,112,102,108,101,113,89,107,102,102,113,107,108,111,116,93,98,99,112,109,101,109,104,113,104,108,107,99,113,106,69,105,99,116,103,102,108,104,100,117,108,106,86,107,102,100,102,110,108,113,107,104,95,114,104,111,105,106,110,109,104,106,108,109,121,102,107,108,95,89,81,113,106,117,109,107,90,115,108,108,96,117,98,119,112,105,108,80,111,101,105,106,114,109,92,105,97,94,112,114,114,90,99,130,109,109,117,102,100,97,100,99,94,101,95,102,108,113,116,104,94,64,92,119,103,111,132,105,117,105,108,110,100,91,96,81,114,107,105,104,108,95,111,101,100,106,107,117,97,111,110,112,106,102,109,103,98,102,100,93,114,109,76,101,99,110,84,108,70,110,102,121,109,104,118,93,105,94,106,105,90,120,99,93,101,113,98,109,102,97,97,93,96,109,110,110,103,113,121,117,85,113,107,91,106,100,97,110,87,109,105,104,95,105,112,102,95,92,92,106,105,115,100,104,98,104,94,104,113,108,94,102,116,102,104,103,111,106,102,95,107,102,98,87,117,93,103,108,111,114,100,111,104,101,105,110,92,106,95,97,110,125,106,91,107,110,100,98,109,110,100,85,97,106,97,72,110,86,109,97,116,102,116,132,104,105,105,108,99,104,105,104,118,109,103,100,120,110,103,107,115,99,103,105,110,97,109,105,115,102,109,97,105,105,102,113,105,95,114,104,109,114,97,113,100,112,112,100,99,99,104,109,110,139,105,101,93,95,100,94,95,99,108,109,98,109,100,102,100,125,101,95,104,103,114,103,108,109,111,95,105,104,82,109,113,115,97,108,110,106,98,111,91,109,102,112,104,106,104,109,106,98,101,102,110,106,105,118,102,94,94,111,103,104,103,102,100,100,100,111,102,105,85,107,106,112,100,103,101,100,109,117,93,103,109,98,101,102,77,95,108,80,110,110,96,108,93,106,107,103,101,108,98,97,101,95,104,97,106,106,105,102,115,98,99,96,100,91,101,100,112,119,108,106,104,106,103,111,95,106,109,102,107,107,105,100,107,111,103,99,108,93,92,106,113,102,105,106,113,99,112,112,92,99,123,107,108,101,103,104,96,104,99,96,104,100,102,110,125,111,117,109,95,99,106,106,110,96,103,108,110,104,107,102,100,102,114,97,88,105,105,102,109,105,109,99,99,113,96,99,109,104,101,99,91,112,119,116,104,102,103,104,115,109,100,107,111,105,96,106,99,109,112,102,106,107,113,106,106,102,113,106,111,115,108,105,108,108,98,105,99,104,84,100,104,99,112,95,105,94,110,106,102,104,110,106,128,117,106,100,100,113,112,118,112,102,109,96,101,102,112,103,111,94,115,103,112,110,112,101,96,102,106,97,123,104,95,93,93,99,106,117,96,105,107,102,108,100,97,102,104,97,101,103,110,103,109,110,117,104,101,129,100,95,100,104,110,110,111,105,102,93,109,122,93,101,103,107,99,99,108,112,93,92,100,103,102,99,102,106,116,106,100,112,103,103,104,101,110,107,119,113,101,108,100,114,95,107,107,95,113,106,111,97,115,108,103,114,107,99,106,115,105,112,108,88,101,106,106,103,100,102,115,115,108,107,105,114,109,95,107,106,117,111,117,113,105,99,109,112,108,100,110,106,108,108,93,94,112,107,102,114,111,101,99,105,110,103,100,103,111,122,95,112,102,99,99,101,104,110,103,102,118,124,106,96,88,104,110,98,105,103,100,100,105,97,110,113,96,99,87,106,97,107,107,102,98,106,99,106,113,108,107,96,116,108,99,112,91,115,112,116,114,111,110,97,100,105,106,86,111,100,108,116,95,114,101,90,87,102,109,122,111,107,102,84,98,108,93,98,109,109,93,83,104,98,98,106,123,91,113,117,98,125,112,107,99,92,104,114,108,103,96,115,116,107,95,93,112,110,98,112,105,96,92,109,116,101,117,108,94,92,111,114,104,115,107,104,105,107,100,103,108,109,98,93,102,93,106,103,113,96,106,95,98,93,89,101,106,102,97,103,109,95,106,104,96,98,100,106,104,105,97,76,112,92,117,108,101,84,109,105,108,87,101,104,103,104,92,110,106,98,107,97,96,108,102,94,88,93,94,102,108,99,98,95,93,99,106,98,95,103,101,110,103,111,120,109,97,110,109,92,79,113,92,119,100,117,104,101,118,107,111,77,107,98,102,106,100,107,100,111,103,102,106,105,108,106,117,93,109,98,102,108,104,98,113,107,113,115,101,106,105,117,115,100,105,111,101,102,110,108,94,100,124,103,83,111,103,112,109,106,101,112,99,108,102,110,87,111,111,100,111,113,112,97,102,94,101,114,110,102,102,112,102,102,89,96,100,105,108,102,114,103,102,111,98,96,98,120,97,115,75,111,103,110,104,96,107,104,93,113,88,100,100,103,102,106,101,103,98,107,117,101,104,101,93,101,103,97,92,105,113,106,115,96,98,96,118,99,106,108,123,118,107,100,102,102,107,101,91,113,108,113,113,103,103,106,104,101,106,105,111,106,97,110,99,120,101,107,107,103,120,96,108,96,116,111,105,115,89,87,102,97,116,96,115,106,102,106,99,98,107,97,103,109,107,108,96,113,109,106,109,83,111,110,108,101,108,90,97,99,105,101,103,103,110,99,117,107,105,105,99,125,108,99,77,99,93,105,103,102,106,89,119,96,101,104,106,103,103,96,119,108,105,103,104,100,107,113,112,97,111,96,106,110,105,109,101,105,100,99,109,106,98,103,109,110,100,98,113,104,94,92,101,98,100,104,115,96,101,122,107,96,109,106,120,110,112,115,93,105,103,103,106,112,94,108,98,101,118,94,113,92,99,111,99,109,107,115,102,96,111,103,104,101,105,101,106,114,95,100,95,98,107,109,100,99,101,108,106,110,107,75,105,102,108,103,103,97,110,113,108,102,105,98,105,112,103,117,105,103,112,95,109,107,108,110,98,106,102,109,106,103,110,97,115,116,104,102,108,107,108,110,105,110,107,99,111,117,99,115,96,113,115,115,99,112,102,114,100,100,96,108,94,99,101,89,96,119,106,98,121,117,110,70,103,111,96,107,110,103,105,101,108,106,103,111,102,107,97,120,102,91,101,107,100,108,96,100,103,99,104,115,98,98,100,94,110,94,109,104,100,129,109,92,97,99,92,98,102,99,100,109,111,100,101,81,103,105,97,101,106,112,103,114,104,108,100,111,112,105,113,97,99,102,101,94,102,108,99,96,99,106,103,104,112,103,112,109,110,98,109,111,108,100,99,105,101,79,94,94,102,111,96,100,106,106,101,95,120,87,98,107,108,112,107,93,91,107,107,105,102,112,101,93,112,102,96,102,102,97,107,120,105,96,103,107,118,102,98,102,108,107,114,111,103,108,102,100,110,105,96,102,112,95,103,102,102,90,101,110,101,102,105,100,98,102,106,98,106,115,95,103,99,105,101,117,112,108,103,109,102,104,94,97,106,106,109,108,117,108,106,96,94,100,96,118,110,110,108,103,109,105,100,106,98,108,95,99,106,116,106,99,102,111,119,102,108,110,107,104,100,103,101,107,95,107,91,104,97,93,115,106,94,104,99,108,100,106,104,105,102,98,104,105,99,106,103,108,105,98,99,106,107,110,84,94,96,109,101,120,106,91,111,104,106,85,105,99,102,94,114,98,82,102,94,105,120,109,105,117,115,116,98,100,101,110,108,105,113,95,106,112,110,116,110,98,99,108,103,107,120,116,100,102,96,103,117,117,107,92,116,105,112,115,105,107,103,104,68,104,105,95,105,101,105,100,114,98,110,99,107,123,96,105,95,98,97,101,106,100,102,106,97,105,105,107,112,86,87,92,102,105,101,106,91,111,104,98,108,106,111,109,115,105,97,87,115,102,118,113,99,105,108,96,96,100,120,109,98,101,99,117,91,98,98,110,99,118,103,95,97,103,100,116,103,106,100,94,105,95,104,104,98,107,110,99,92,116,100,109,109,99,111,98,110,109,98,97,106,115,100,100,105,105,89,96,94,100,103,95,110,111,105,110,92,99,99,108,106,93,112,110,99,108,102,99,94,106,106,104,109,100,108,88,79,98,104,111,109,91,88,108,109,90,86,101,82,97,109,112,99,99,104,99,118,110,124,101,95,91,110,95,100,101,99,104,113,87,132,105,116,92,101,101,110,106,103,115,110,118,118,87,100,102,97,93,105,90,97,105,101,112,109,97,100,104,101,85,120,99,84,75,95,121,81,105,94,100,127,99,98,101,103,106,104,112,97,109,110,95,89,107,98,107,90,98,97,105,109,95,92,93,105,102,92,106,107,92,102,93,97,106,106,86,103,88,106,102, +529.01624,100,124,99,86,121,101,90,102,99,96,101,111,112,99,102,107,92,110,104,104,100,95,101,99,113,114,110,105,106,99,107,103,93,105,113,86,111,112,96,105,115,100,99,105,101,103,98,110,87,100,104,103,110,86,100,101,110,109,92,95,99,111,102,103,106,113,84,109,83,106,103,103,95,102,107,109,95,111,121,87,109,106,110,109,96,87,101,109,109,90,114,105,106,104,82,107,94,114,97,90,100,101,106,106,103,103,95,95,99,87,109,94,107,110,95,101,100,101,104,112,109,96,102,111,99,106,107,104,107,99,110,97,106,79,103,116,105,109,108,107,105,112,109,106,108,96,118,109,101,92,97,80,110,87,109,100,97,102,99,96,103,98,103,86,111,103,105,101,111,102,120,111,110,105,123,102,111,101,109,103,100,118,105,102,109,102,100,105,107,93,93,100,103,105,102,98,102,93,95,97,103,98,101,110,109,105,99,106,126,108,95,105,107,107,112,119,98,117,97,91,106,103,72,94,114,110,102,107,97,116,112,100,111,113,107,103,100,100,89,96,107,98,95,112,106,111,110,95,77,108,98,119,105,112,92,106,102,88,96,103,99,117,104,98,98,98,121,99,96,99,120,102,113,107,97,100,103,99,116,106,101,103,90,103,98,103,96,120,112,107,108,110,110,111,108,99,91,105,118,99,103,108,110,97,96,105,111,117,115,111,99,110,114,105,96,103,104,109,108,100,107,108,116,106,99,98,99,96,99,111,102,115,112,101,102,109,109,91,107,113,97,102,96,97,106,111,111,105,104,110,111,89,109,111,96,99,110,119,110,99,95,93,97,101,104,99,99,129,109,109,103,96,101,108,100,82,110,108,113,101,109,113,95,104,105,102,107,113,114,97,110,91,95,117,93,98,90,102,99,86,107,95,101,95,100,91,90,106,103,82,114,83,103,106,109,93,105,102,105,85,94,98,101,116,109,110,97,67,96,95,105,99,114,97,114,110,101,120,106,97,107,95,104,118,90,94,97,99,107,104,103,109,96,98,109,108,102,117,108,107,105,112,89,103,108,99,113,107,108,101,105,105,97,101,101,93,99,104,102,100,94,109,121,116,103,101,102,106,109,99,109,117,99,104,101,113,109,105,109,110,110,99,94,112,89,104,99,94,97,101,106,113,91,113,136,100,125,99,109,98,95,76,104,103,99,101,107,104,110,110,95,102,106,96,89,100,107,91,92,109,102,123,106,108,115,95,109,101,91,101,104,118,110,95,106,99,98,99,105,104,102,114,103,95,109,100,99,97,107,97,96,114,104,115,106,100,97,106,94,105,99,102,99,102,98,110,111,118,94,100,107,107,99,108,106,92,108,123,104,111,98,98,106,99,116,103,95,104,104,108,104,103,114,107,102,90,109,102,93,113,104,124,98,98,99,109,103,104,109,106,106,103,93,107,99,108,109,93,104,100,105,109,104,114,105,101,109,92,102,113,109,115,110,104,101,104,126,103,105,105,95,104,96,80,109,102,112,108,114,89,108,100,92,101,95,105,99,112,112,99,112,116,118,97,115,105,103,102,99,110,115,118,94,111,108,99,104,101,102,114,117,110,97,96,121,97,103,95,95,113,106,103,106,97,105,112,106,130,95,99,109,99,95,98,91,100,110,108,94,98,103,117,99,86,103,111,89,104,113,101,92,89,99,102,114,106,97,112,110,103,112,93,104,98,106,101,94,103,101,117,109,100,102,103,92,103,90,88,112,110,103,126,104,115,107,99,104,100,100,98,95,90,99,93,102,104,100,114,113,103,103,96,104,100,97,113,100,109,94,98,108,96,113,102,102,112,116,100,120,101,100,109,101,109,116,95,108,110,104,104,101,116,109,113,110,106,106,104,109,102,75,102,105,105,86,117,107,103,97,102,94,99,105,102,96,110,101,101,107,81,114,98,94,115,101,107,91,114,119,99,102,103,105,106,104,100,95,105,118,106,89,103,99,103,104,89,102,109,94,97,117,102,103,114,102,102,97,117,111,113,78,109,103,113,113,115,104,114,101,103,106,106,95,101,101,103,109,110,103,110,122,106,115,96,113,106,99,101,91,101,103,106,113,105,111,102,96,109,110,92,81,111,101,108,93,100,103,101,108,118,103,108,103,95,107,109,113,100,105,109,117,92,110,105,105,95,90,102,104,101,109,121,113,137,97,109,87,96,115,104,97,105,112,112,116,105,105,105,99,102,95,104,101,106,100,99,93,112,99,88,90,110,108,103,110,108,106,109,100,108,113,101,107,94,97,96,108,95,107,105,100,98,109,116,110,96,104,102,98,91,68,121,120,102,96,96,104,84,118,117,111,109,104,103,102,74,113,118,111,97,103,119,110,105,103,94,94,96,107,113,102,106,94,109,93,104,103,105,101,113,103,100,105,99,101,114,99,112,90,103,109,115,111,105,87,102,98,102,100,109,127,102,93,106,103,130,109,97,104,100,102,110,129,104,95,115,105,108,115,105,92,101,110,98,98,109,108,102,103,117,101,114,80,95,110,109,107,105,125,111,115,107,109,98,107,114,103,109,105,104,94,106,114,98,108,89,104,108,107,106,97,97,95,110,117,98,104,96,104,111,112,113,110,119,102,101,110,107,98,112,102,88,101,104,114,99,98,98,109,88,99,104,105,110,95,102,110,107,108,104,104,99,99,100,99,117,112,110,96,118,102,112,114,102,108,106,110,100,101,108,98,108,84,95,100,112,111,116,104,91,116,112,102,115,116,108,108,112,108,109,108,91,92,98,109,101,116,109,101,111,101,111,97,116,114,103,123,115,99,115,101,103,124,110,102,118,108,106,103,117,111,107,104,107,99,108,95,101,102,123,108,100,102,106,104,107,97,103,102,105,95,107,110,111,100,95,106,113,104,117,103,113,106,102,109,104,103,122,108,118,113,106,106,107,99,109,108,100,100,98,120,105,102,103,111,109,114,93,103,105,97,99,108,88,106,117,108,97,106,88,107,107,107,102,108,103,121,96,99,112,104,114,110,124,118,105,112,95,116,103,100,108,111,103,97,108,100,87,108,106,107,109,107,108,99,109,114,118,104,108,104,120,98,112,87,101,104,99,107,112,80,102,96,104,126,100,112,98,110,115,95,82,97,110,100,100,102,104,102,99,100,116,106,121,112,117,102,105,101,73,106,106,103,102,99,106,117,108,101,105,100,111,131,100,89,101,101,102,99,98,111,98,90,114,117,100,107,108,112,106,99,106,112,117,113,106,85,114,101,99,100,109,106,106,111,104,103,112,106,115,104,103,106,95,99,106,112,106,107,106,117,108,104,104,100,94,103,102,91,107,107,105,102,103,100,109,114,109,106,108,103,102,119,110,108,113,112,107,117,103,106,107,94,104,112,104,92,95,106,108,101,108,100,107,116,94,119,97,106,113,107,107,93,76,98,120,89,120,106,108,105,106,119,108,109,105,116,106,102,110,117,107,104,95,100,107,107,108,113,116,114,96,99,101,102,94,108,100,111,100,111,106,106,111,99,95,102,110,98,110,106,102,102,108,105,123,96,95,100,106,98,104,108,111,102,81,107,102,101,95,96,99,109,117,109,109,107,97,98,100,107,104,103,107,103,101,102,102,105,106,104,108,105,107,102,122,127,99,105,103,103,96,105,117,98,102,98,110,98,100,108,105,120,100,97,98,103,102,94,91,117,100,118,104,107,109,112,105,109,109,107,110,117,107,116,102,111,99,108,107,94,100,116,102,105,101,80,123,101,114,119,101,107,110,87,99,106,106,111,106,98,113,109,111,113,109,117,121,98,112,121,105,118,118,84,102,109,118,109,107,112,107,108,110,99,110,100,113,107,99,119,109,108,86,114,110,75,103,110,103,104,104,108,111,109,99,114,110,108,102,96,117,111,91,96,106,107,98,98,100,120,100,112,102,123,113,105,110,113,121,105,109,88,88,104,94,113,120,103,109,112,113,105,107,107,101,110,102,95,103,102,111,116,130,116,100,104,108,109,115,102,113,95,103,105,113,108,70,108,105,122,114,106,92,102,106,116,99,116,105,106,105,107,109,103,105,121,98,101,105,102,118,99,87,111,107,95,106,96,98,111,103,104,113,121,106,117,121,120,105,110,114,117,121,100,104,99,95,105,101,107,104,102,94,96,100,114,98,121,102,102,93,114,103,108,109,136,107,102,106,109,105,104,77,102,125,96,115,100,84,109,99,111,105,107,107,111,117,108,113,107,104,88,115,88,113,106,104,102,100,104,121,108,110,101,104,105,123,104,105,110,115,103,91,97,115,115,113,109,105,102,100,101,99,100,102,111,116,103,101,114,103,98,104,115,102,100,117,109,107,105,111,104,98,96,110,109,96,102,105,105,109,102,117,111,108,110,93,107,104,100,109,96,109,101,100,103,111,105,105,100,109,110,100,105,96,103,100,113,124,99,112,91,116,91,100,104,118,103,117,100,105,116,103,109,116,98,86,109,108,103,112,101,107,99,98,110,103,99,80,103,117,100,101,95,117,109,120,100,98,107,106,101,100,104,98,101,113,97,99,94,114,107,105,109,111,105,103,119,115,91,115,109,113,113,101,107,104,110,103,100,109,101,109,98,108,105,103,101,108,103,102,112,104,105,119,104,109,106,104,96,104,110,94,102,99,108,84,88,92,103,91,96,101,98,94,139,97,117,104,111,105,108,99,93,101,113,105,83,100,98,109,96,105,113,106,95,94,96,113,87,98,109,102,103,109,100,97,102,111,99,113,88,91,104,109,100,96,99,107,107,90,105,104,111,102,106,96,111,99,105,97,101,114,100,112,110,119,97,105,108,102,106,102,101,117,100,99,95,95,106,91,102,118,107,89,106,87,112,105,106,96,113,104,100,107,124,100,107,95, +529.15698,105,113,100,91,91,102,108,107,110,93,98,112,97,107,116,112,99,114,100,87,102,109,118,117,107,126,108,110,119,97,113,91,111,109,112,73,93,93,101,106,111,106,97,94,104,95,98,103,93,101,98,103,110,98,124,106,115,102,108,104,108,113,101,89,97,109,105,102,102,104,113,91,107,101,94,113,95,99,107,95,96,105,100,84,109,106,91,102,90,86,107,72,103,99,100,96,99,107,92,109,88,104,108,110,108,99,102,93,126,99,106,106,112,104,106,113,114,101,100,105,103,90,101,115,104,100,103,113,105,109,101,97,105,99,118,103,76,113,108,104,94,106,98,100,101,92,112,107,100,104,104,103,121,101,98,100,122,106,101,96,104,109,118,108,100,103,102,92,98,91,102,100,108,109,105,99,107,101,112,111,109,93,102,108,70,111,106,116,103,104,90,114,104,98,91,101,105,99,109,107,98,101,101,98,116,112,105,104,91,104,101,101,114,99,111,104,103,101,106,106,94,105,112,96,94,114,106,102,96,112,97,93,108,99,95,110,106,118,105,124,100,104,86,116,106,89,92,116,96,104,94,94,99,104,100,101,96,97,101,95,106,108,75,106,112,103,105,106,99,95,106,101,107,104,101,108,106,99,94,96,108,106,104,105,108,123,97,110,102,102,95,101,94,97,99,92,114,108,98,108,110,111,109,108,100,108,105,120,102,112,102,120,104,104,108,111,101,118,100,100,110,101,98,113,99,98,113,104,105,116,110,99,99,97,104,96,101,104,95,105,99,108,107,96,110,118,107,113,118,81,107,112,104,100,103,100,107,101,102,98,99,102,103,109,106,99,112,110,103,107,104,100,103,112,108,113,100,102,99,100,108,91,100,110,113,90,118,97,108,113,105,110,91,105,116,99,90,109,114,121,105,104,89,96,105,104,99,102,103,92,108,111,105,113,105,95,99,109,98,108,98,96,115,106,114,94,104,107,100,117,96,106,102,91,99,115,85,105,110,98,118,96,104,117,105,95,106,106,92,105,108,105,102,95,94,118,109,71,112,95,98,104,103,104,108,114,102,89,112,82,103,105,115,96,106,109,93,103,106,95,108,115,109,118,107,107,107,107,98,108,95,104,111,97,103,99,105,112,98,101,106,107,111,116,98,101,91,110,102,75,109,96,111,109,99,104,92,108,95,98,101,118,117,112,102,100,104,111,104,102,108,108,105,101,99,107,105,109,111,104,101,106,109,107,104,101,104,101,110,103,98,105,106,90,105,106,105,98,95,101,99,112,102,112,99,108,109,97,98,98,119,105,110,119,105,99,122,112,102,113,109,103,130,104,100,104,122,106,108,120,103,116,99,97,111,95,100,99,103,99,102,99,118,100,106,109,100,91,104,98,101,109,113,108,106,100,109,117,107,118,98,105,104,104,93,108,108,97,102,109,95,111,104,89,94,102,108,107,93,100,105,109,112,104,91,106,105,97,111,109,100,112,115,112,99,103,114,100,108,114,107,109,101,118,96,104,99,100,102,103,113,105,113,100,112,105,104,98,105,111,109,103,116,102,99,100,106,110,84,99,112,93,99,103,117,97,106,107,117,109,97,110,106,121,94,110,100,111,104,96,113,96,108,103,98,113,108,100,106,113,104,94,109,95,108,105,97,96,97,109,107,113,77,105,105,101,91,106,125,104,103,87,95,101,96,101,103,103,100,99,100,98,113,99,95,111,104,104,119,95,94,109,100,110,101,106,90,111,103,96,104,104,108,100,100,107,112,96,96,94,106,96,107,110,98,109,111,105,111,95,108,102,113,96,104,103,110,98,113,116,103,106,104,109,116,116,112,112,110,99,116,106,109,109,99,99,98,94,125,103,104,111,98,109,122,103,101,97,97,113,111,102,102,105,107,111,109,97,117,102,109,114,107,93,82,108,105,95,101,97,88,101,109,115,96,101,125,101,103,115,102,109,105,123,103,99,100,99,107,106,99,101,103,99,108,112,97,95,106,103,106,107,110,102,112,95,96,103,107,115,91,98,101,102,100,99,99,107,108,98,86,121,103,106,115,103,103,90,111,108,114,109,108,116,98,91,96,98,96,107,104,101,100,98,113,100,104,104,113,105,92,97,103,122,106,91,103,106,108,103,82,113,116,100,90,104,102,121,106,104,98,106,99,104,102,88,99,107,106,87,112,114,106,96,99,104,95,104,104,107,101,103,107,101,95,82,107,98,97,94,87,108,108,103,101,108,102,104,114,98,115,100,106,103,101,110,97,108,107,100,102,97,106,107,113,103,105,108,91,107,94,119,102,108,105,104,110,103,105,113,99,102,114,112,85,117,92,98,96,98,93,98,117,101,107,89,90,110,99,109,106,110,107,93,103,122,105,105,108,108,105,105,131,103,101,100,78,101,99,103,114,107,101,106,96,95,101,104,99,103,98,105,107,104,79,94,106,106,109,113,99,98,77,115,107,104,99,101,106,120,107,103,112,98,92,114,102,101,99,106,117,96,105,102,101,102,111,110,111,112,104,117,111,105,110,106,101,93,109,110,113,99,113,96,109,101,109,101,106,106,105,106,106,94,116,97,97,104,98,93,116,102,98,103,99,105,109,119,96,100,117,92,120,114,96,99,117,97,116,108,100,97,108,101,100,107,101,106,115,113,100,109,114,102,98,111,113,109,110,107,114,105,95,112,100,109,119,104,103,111,104,107,118,102,101,88,108,105,105,103,114,114,102,109,102,108,111,114,109,96,100,106,102,99,104,112,98,100,123,99,101,103,109,94,109,100,95,108,99,107,106,106,95,104,111,96,104,102,111,116,112,109,120,104,113,97,95,96,99,117,108,107,105,111,105,108,101,101,117,97,105,99,106,104,112,109,95,105,109,106,119,109,109,111,97,105,97,92,99,106,95,113,106,109,111,88,102,117,97,103,105,113,102,103,106,100,115,115,110,106,102,101,99,106,105,109,108,116,100,107,100,97,106,95,108,108,105,107,110,92,103,109,107,106,102,106,106,98,107,106,92,102,114,116,95,107,106,98,102,104,95,112,107,100,93,107,108,91,115,106,94,106,101,103,106,94,106,108,124,100,107,110,85,95,106,109,110,97,99,97,102,105,104,109,109,101,101,107,105,110,100,108,100,98,100,88,99,99,108,107,100,102,111,103,100,108,106,101,117,106,109,96,102,97,103,112,103,101,93,92,104,94,103,104,83,93,101,106,103,105,103,87,101,99,96,95,104,103,110,96,92,110,112,111,101,108,91,98,103,111,104,106,100,100,99,117,100,103,116,107,93,98,109,105,93,123,109,113,101,97,113,117,109,95,109,121,107,111,105,90,106,104,96,102,101,99,96,108,108,105,92,108,110,127,103,114,113,94,102,100,106,116,102,112,109,129,104,102,108,99,89,107,99,88,104,98,111,100,88,113,100,102,90,101,110,99,117,105,105,105,102,113,101,107,99,95,116,102,102,106,114,103,103,104,101,112,105,106,112,100,100,103,105,93,108,103,104,109,97,106,108,94,88,85,107,104,100,98,102,102,98,117,107,105,101,108,97,107,102,121,110,99,99,118,98,102,103,92,113,79,119,102,100,110,109,103,108,107,105,110,106,113,106,122,119,105,105,95,110,114,110,109,99,121,106,102,97,105,116,107,103,103,82,123,97,100,104,100,112,105,99,110,101,102,96,91,98,111,114,109,101,105,103,112,105,96,90,119,100,108,100,92,107,101,109,103,109,104,98,100,95,107,92,100,97,94,105,112,110,114,113,109,113,109,109,93,99,100,111,103,107,115,99,111,99,103,106,111,103,101,109,106,115,103,99,104,104,95,108,116,98,112,97,100,113,87,123,110,96,105,105,115,112,101,104,110,108,112,106,106,117,114,113,109,96,117,120,100,107,108,95,109,96,88,107,101,108,100,99,100,110,117,109,92,94,104,99,103,101,113,104,102,95,99,89,105,110,112,124,104,95,105,95,112,86,106,107,106,100,105,112,113,116,104,90,101,103,101,102,106,116,102,109,102,108,103,109,107,102,102,113,122,104,109,100,100,87,115,112,105,94,99,94,74,100,108,99,108,108,103,103,107,84,83,109,118,109,101,121,105,115,106,98,98,102,108,113,105,106,116,108,98,107,119,119,88,107,101,110,117,100,89,105,106,107,106,105,108,113,79,104,99,116,101,105,85,105,102,108,106,97,116,110,102,83,98,91,108,111,105,115,101,102,119,106,100,98,104,88,111,98,95,99,93,96,95,100,111,102,98,116,109,105,109,91,107,117,94,132,115,100,104,96,106,110,110,110,106,123,110,112,99,110,109,108,103,105,114,107,115,103,98,101,110,108,102,100,98,112,105,105,110,106,116,96,101,108,109,98,85,99,105,112,108,129,106,119,111,113,101,95,106,103,112,112,101,100,102,104,116,106,101,102,95,102,102,101,99,98,122,107,107,98,102,109,108,97,117,105,104,109,110,103,109,100,105,110,107,102,109,104,104,102,110,105,104,111,109,90,105,98,108,108,100,103,98,85,116,113,104,105,98,103,111,113,114,93,110,115,102,103,105,113,101,99,121,96,96,104,99,113,103,120,95,107,99,98,113,112,100,117,98,93,106,102,107,106,119,108,95,114,87,107,106,136,107,110,98,121,102,108,103,111,115,105,92,105,101,119,99,105,106,107,102,102,102,113,104,98,111,113,104,106,112,105,102,112,124,115,86,98,94,97,87,102,117,124,91,106,87,105,93,105,104,113,108,106,106,121,104,100,96,98,101,105,107,113,98,116,107,98,98,103,107,102,113,102,104,103,103,102,97,98,108,110,100,102,104,104,110,95,112,100,101,110,103,90,99,122,107,99,105,109,103,105,114,113,110,94,87,102,106,109,104,101,97,100,85,98,110, +529.29773,119,94,92,103,96,108,94,107,119,109,105,100,102,101,103,108,94,122,111,102,114,88,100,109,104,98,114,109,107,104,101,108,100,100,101,95,108,102,102,117,96,105,100,104,104,105,90,101,109,107,91,100,106,94,99,100,97,92,105,96,95,108,113,97,99,111,98,105,92,102,105,104,100,105,97,112,101,89,100,97,104,79,90,85,94,103,99,101,105,94,105,109,85,90,99,100,103,97,87,102,101,88,94,99,111,100,84,105,95,109,104,106,104,98,103,103,117,103,109,106,111,109,113,100,99,118,104,94,109,105,103,104,101,101,104,102,105,107,105,95,105,107,105,106,98,101,106,112,112,117,104,98,101,99,80,105,108,110,116,101,104,119,103,95,108,104,100,108,99,97,105,93,97,99,103,107,109,91,109,85,98,114,108,102,100,105,105,96,112,101,101,103,111,113,99,113,109,104,112,120,99,106,103,106,103,107,92,86,114,103,108,96,103,100,110,101,97,108,104,108,110,105,106,106,98,103,102,111,100,107,98,95,116,103,96,103,101,85,108,121,99,98,104,99,110,92,103,103,120,103,98,108,100,115,106,95,102,102,95,109,100,104,110,98,98,107,116,103,90,104,87,103,116,112,111,99,99,89,118,110,111,99,102,116,106,113,94,103,105,112,103,99,91,109,110,112,104,105,106,103,104,110,86,101,119,100,108,104,80,100,104,129,110,109,99,105,109,96,101,109,111,106,110,98,93,106,109,109,105,116,122,105,114,104,110,101,108,100,104,99,100,106,102,89,98,99,112,111,111,103,107,111,109,101,103,103,105,112,106,104,108,100,96,104,109,103,95,93,100,112,112,125,112,117,109,111,106,99,105,107,109,108,103,113,109,94,100,95,110,108,109,108,108,107,100,103,102,97,112,111,105,108,112,111,98,99,101,98,113,118,98,88,100,105,103,109,92,95,112,101,110,98,112,101,108,94,96,101,107,117,96,107,102,116,109,98,104,118,118,117,99,107,87,95,111,119,101,104,99,106,108,104,109,103,96,103,101,91,105,112,101,103,104,112,109,96,100,92,101,101,111,124,103,77,96,99,108,114,95,102,98,103,112,107,109,103,109,111,108,91,99,116,120,106,96,109,96,104,108,101,118,111,103,109,96,118,107,98,105,105,102,113,107,117,98,105,89,112,99,94,109,99,94,103,100,100,120,105,106,102,107,102,119,102,107,98,96,97,106,107,93,113,103,98,103,104,108,104,105,108,101,97,107,99,95,112,99,95,103,94,101,86,107,95,91,102,108,99,96,88,94,125,105,105,101,102,92,102,67,111,104,103,108,106,90,107,104,94,94,105,105,108,104,98,103,102,106,108,114,93,106,103,118,107,103,101,108,94,101,117,117,101,109,103,98,106,105,113,111,103,111,102,86,98,113,105,113,94,101,107,101,99,89,105,100,109,108,107,94,105,112,100,99,106,95,93,105,102,98,111,104,116,103,95,107,106,118,116,113,109,113,98,118,98,97,110,106,101,109,88,106,103,106,100,112,95,95,101,105,104,106,103,110,95,113,101,92,109,95,105,104,107,95,113,102,103,111,87,115,107,112,94,101,114,108,113,103,100,107,105,103,99,113,111,88,102,102,110,115,112,104,92,105,87,91,110,103,113,133,115,113,124,92,97,105,104,103,102,119,97,102,107,97,103,106,91,111,102,103,105,107,81,106,99,89,101,106,103,111,79,100,102,94,103,102,108,98,106,109,98,107,110,99,96,100,116,113,109,93,109,99,115,100,89,110,118,111,117,103,104,107,115,106,105,105,116,95,109,99,102,98,93,108,109,98,103,111,113,107,108,107,104,103,108,110,109,107,106,99,99,101,113,105,109,114,91,110,106,104,95,101,98,108,104,101,103,101,104,108,106,91,103,104,103,101,118,111,99,100,104,110,103,99,112,93,101,101,110,84,108,106,100,99,109,106,98,87,127,111,106,111,97,109,113,91,120,102,95,119,103,104,71,100,113,102,99,104,112,112,112,105,109,104,104,101,104,106,101,101,99,106,115,104,96,108,100,100,106,108,106,98,101,113,105,104,97,96,76,111,91,104,121,101,104,104,82,95,107,97,114,84,120,116,119,96,94,101,101,99,109,100,102,112,107,100,91,104,90,101,113,104,105,74,113,104,96,111,99,107,107,112,117,105,103,107,109,100,97,108,101,96,107,106,101,106,101,104,108,105,118,109,99,96,113,110,104,109,113,111,101,105,106,101,100,105,99,97,105,98,105,96,107,67,107,111,106,106,99,104,104,107,91,96,114,105,75,103,114,97,108,106,101,105,106,78,110,103,113,98,108,109,97,106,92,107,99,97,102,100,108,108,99,101,113,101,106,99,98,111,116,109,111,103,107,107,99,104,104,108,103,104,114,107,100,105,125,109,91,99,97,104,117,116,112,108,118,110,102,106,104,102,95,104,102,112,116,105,103,109,101,105,103,102,102,104,105,104,99,108,108,108,100,111,102,106,119,94,107,108,108,112,88,112,103,115,107,107,105,105,109,102,107,101,102,112,103,104,100,113,106,118,114,110,117,103,119,107,100,88,94,108,104,104,106,110,106,106,117,110,100,106,105,115,101,110,114,113,101,95,104,109,100,108,87,102,120,99,113,105,104,107,114,107,114,104,109,102,109,103,102,106,115,107,105,107,117,121,98,102,91,103,99,110,102,109,106,107,110,95,110,106,107,120,99,118,96,109,123,103,112,112,96,107,105,107,113,111,103,99,88,99,107,97,98,113,112,111,88,104,112,103,116,93,88,119,104,113,100,108,94,99,101,99,94,102,103,94,114,115,113,108,104,102,119,104,111,100,107,105,109,103,102,91,102,124,104,93,108,101,108,111,115,104,106,117,99,103,106,102,119,108,109,110,103,121,114,112,104,106,112,112,121,99,105,99,112,114,102,113,110,105,101,106,104,106,120,107,107,107,109,107,104,103,113,103,97,98,99,102,121,104,108,108,102,103,100,116,117,105,115,114,110,99,103,100,109,100,103,112,113,106,110,117,96,108,102,105,106,111,98,97,104,93,121,108,98,111,122,103,103,107,111,118,108,114,107,103,105,104,103,81,97,89,110,103,102,103,102,108,109,111,88,106,98,102,110,97,91,107,84,103,99,99,108,106,104,99,100,111,75,96,106,103,94,105,109,116,106,101,116,105,100,102,110,119,96,115,98,101,103,106,106,104,95,97,106,124,103,107,114,119,106,107,113,123,103,113,107,108,81,105,112,107,105,106,87,115,114,106,106,121,100,101,107,105,103,114,115,116,110,102,110,99,107,106,106,103,107,114,97,113,116,95,100,95,100,100,100,110,107,108,95,109,103,98,119,107,112,105,111,103,136,102,125,95,107,109,88,91,102,100,103,117,101,99,102,102,100,113,109,112,101,99,104,93,112,99,99,113,106,103,118,102,102,105,100,103,102,115,102,106,96,106,99,98,113,100,99,112,102,114,106,101,108,107,110,100,110,104,101,101,87,105,113,108,123,95,110,94,110,98,110,106,98,109,114,106,116,97,103,107,95,106,102,102,113,112,106,109,114,94,122,112,136,101,101,101,120,106,102,101,99,116,107,116,99,106,103,111,103,99,102,104,89,102,104,117,115,135,103,108,114,101,116,107,102,105,106,110,102,107,123,104,102,103,110,101,105,102,104,113,114,103,113,104,104,103,105,78,96,100,114,117,124,99,102,117,108,99,105,106,106,106,109,100,104,112,110,111,114,110,103,127,107,107,111,99,102,112,100,98,120,100,106,109,109,101,125,105,95,106,104,88,108,120,114,102,108,102,105,98,109,95,99,99,99,111,114,112,100,105,101,96,116,103,98,105,104,98,104,103,103,102,101,109,92,115,107,95,102,105,110,96,111,94,109,97,101,109,103,104,97,110,106,91,105,108,110,105,117,111,120,108,101,99,108,108,100,96,111,98,105,90,109,108,100,107,106,108,109,106,101,95,109,110,107,114,87,111,109,107,98,107,97,100,106,102,99,115,99,99,100,99,104,107,117,115,115,111,104,121,107,113,97,108,112,109,101,99,108,106,130,100,107,104,109,116,110,99,101,109,97,106,106,113,103,110,105,107,108,91,98,109,101,113,103,101,114,101,105,105,99,106,106,116,110,111,94,101,95,109,108,110,109,117,100,113,109,114,129,100,103,111,91,110,109,109,93,103,101,117,100,108,93,116,105,109,108,102,125,100,98,105,97,97,104,102,102,98,101,99,115,107,106,100,110,101,99,95,111,106,90,96,111,104,100,105,104,108,119,110,121,103,109,113,103,97,99,100,100,99,93,106,102,113,103,91,108,104,93,100,100,110,91,98,105,116,97,117,103,100,104,110,104,104,94,110,123,104,114,110,101,106,104,104,113,96,101,97,101,102,93,110,102,103,106,108,102,108,116,116,110,99,85,100,109,107,108,112,116,91,105,102,109,117,99,102,102,101,106,105,111,100,124,100,106,110,104,104,101,116,97,102,115,99,105,124,104,114,106,98,94,99,94,98,95,107,94,95,112,104,104,120,105,108,104,109,116,105,112,103,97,119,128,104,104,125,99,98,100,94,111,108,112,112,111,105,107,105,106,105,121,114,110,86,110,129,106,121,113,101,110,95,125,99,96,91,107,108,121,108,91,110,111,114,106,118,103,109,110,108,119,115,96,100,105,101,107,106,99,90,105,102,111,104,103,115,91,105,108,115,103,113,106,96,73,105,124,87,98,103,108,113,130,95,112,91,109,101,104,94,102,104,113,97,88,113,109,97,100,101,104,105,83,105,99,111,95,104,119,102,103,106,91,108,101,91,104,107,93,117,100,95,108,108,107,90,114,94,100,103,91,104,75,114,107,111,97,96,96, +529.43854,92,105,104,97,98,110,98,110,104,111,104,122,94,91,102,95,91,113,91,103,98,94,103,110,105,95,97,106,103,110,95,106,110,84,116,104,96,94,109,108,97,113,107,101,104,99,96,76,96,98,89,98,101,109,101,104,100,98,135,100,102,114,103,109,91,96,102,85,103,98,104,106,101,107,102,104,97,104,92,96,86,98,105,90,104,101,96,99,93,112,104,94,102,113,97,94,101,108,102,94,108,91,95,99,99,98,109,91,105,93,102,106,95,93,110,100,112,109,110,116,96,99,110,106,100,110,92,101,115,107,104,111,92,113,109,105,82,102,104,101,97,104,114,88,75,107,98,100,98,100,115,106,104,88,97,99,111,89,106,108,108,117,107,107,107,99,92,100,105,97,105,103,95,107,93,98,102,105,114,105,103,100,105,114,109,116,97,94,92,105,96,100,93,113,95,104,105,99,89,119,114,100,94,92,110,103,100,92,106,102,99,119,103,120,109,91,107,108,101,121,111,114,100,97,99,103,117,104,114,105,108,98,102,109,103,112,104,111,108,106,101,94,102,109,98,101,103,104,108,105,98,115,117,108,76,108,65,106,97,103,113,91,105,104,99,99,118,116,106,95,110,102,99,107,108,93,104,109,96,108,102,109,101,104,105,105,98,113,104,101,98,112,107,101,84,97,98,100,106,99,107,117,86,112,91,110,110,129,94,108,97,114,104,106,91,98,114,111,115,102,101,83,118,104,93,117,101,94,111,112,85,101,111,102,109,110,107,100,103,115,109,95,109,91,101,108,108,99,105,106,130,106,103,98,106,100,101,104,105,99,102,92,114,92,98,104,102,116,104,112,111,103,109,105,102,96,105,119,94,114,110,107,90,105,95,93,103,102,104,100,125,96,98,115,103,98,98,96,76,108,105,104,108,99,108,105,108,75,101,108,105,100,105,109,94,99,104,107,113,99,97,98,95,97,106,109,105,91,96,106,95,101,109,98,102,95,104,115,102,93,106,95,106,109,118,102,97,95,101,101,106,112,110,113,119,98,103,114,103,94,101,108,86,87,115,98,105,95,100,104,111,102,102,107,101,113,110,113,98,95,112,104,106,107,103,105,112,99,104,96,107,100,108,97,105,74,100,89,103,100,110,94,92,109,91,107,97,106,113,98,119,104,102,96,104,99,104,108,97,106,110,105,102,105,115,95,106,110,100,100,107,110,102,99,102,99,103,101,100,101,95,106,93,98,116,101,90,107,106,100,100,106,108,100,102,106,108,102,104,92,107,95,114,111,107,90,103,92,102,111,95,104,102,104,98,100,100,94,105,103,82,104,103,114,108,111,103,95,102,108,103,109,103,104,104,101,116,99,90,104,117,96,103,107,106,99,104,94,111,106,102,107,111,103,98,107,102,113,110,101,98,109,103,104,100,112,90,96,106,99,97,98,97,101,96,106,95,106,116,102,105,95,107,105,95,87,98,92,100,107,103,98,105,110,105,108,109,108,103,112,111,111,109,112,98,114,102,99,110,103,97,109,89,103,98,101,113,105,94,106,105,105,109,102,102,87,96,98,103,104,99,113,90,110,103,97,111,112,104,118,107,121,104,102,99,107,106,105,100,105,104,107,103,107,108,103,99,100,106,100,110,108,111,112,104,100,108,96,119,112,113,112,94,81,97,102,112,106,104,94,104,97,106,105,104,99,104,99,101,121,108,107,114,100,104,106,104,91,111,105,112,127,92,106,87,96,95,100,98,116,103,94,107,101,113,107,105,101,117,103,115,95,105,93,104,108,94,117,114,111,112,106,106,104,108,99,96,110,99,109,102,91,106,99,109,115,115,103,101,105,112,90,99,97,100,110,103,95,110,109,95,113,107,102,110,104,107,103,97,108,117,89,105,98,109,107,102,114,103,118,96,103,123,99,100,100,95,92,95,99,102,95,94,112,97,109,115,108,88,105,102,105,112,103,109,100,98,99,113,95,98,110,95,104,96,100,110,92,101,103,84,101,104,118,89,105,107,109,97,102,106,109,93,113,95,94,101,108,117,99,97,107,104,84,98,117,100,103,98,104,104,97,101,110,107,100,103,122,104,95,109,122,104,105,103,100,100,93,91,108,91,100,103,108,71,95,98,99,108,104,103,93,112,94,95,113,104,91,94,117,101,99,129,117,105,101,105,95,98,92,104,126,105,96,109,95,114,101,96,87,108,98,96,82,112,99,108,90,102,103,94,108,100,99,106,100,111,93,93,96,110,112,124,103,100,99,99,108,103,99,103,97,105,98,111,101,103,105,98,116,104,98,104,102,100,99,94,108,106,102,99,95,101,97,114,96,121,99,116,117,98,96,106,102,110,95,106,112,105,90,92,117,101,98,113,100,95,107,109,96,95,108,110,99,109,80,101,97,115,103,109,101,113,102,100,97,100,109,109,102,106,134,87,110,96,102,99,109,104,95,104,109,100,107,115,109,106,99,112,110,106,105,102,95,87,110,107,99,99,100,107,107,105,100,112,112,114,93,111,110,110,118,116,124,107,100,106,109,101,103,110,104,101,103,115,103,111,103,112,103,98,112,95,96,105,100,111,102,100,93,99,91,106,111,103,95,95,104,109,89,111,106,102,115,91,107,113,101,107,113,88,97,94,100,103,108,112,100,97,110,112,99,118,90,130,110,117,109,110,106,107,99,107,105,108,95,110,109,101,104,120,103,112,87,100,106,99,93,119,89,114,103,103,102,111,95,108,111,111,98,113,102,111,104,112,117,109,101,98,98,115,104,102,95,108,107,109,108,112,103,85,103,106,114,111,107,107,100,107,68,107,99,113,122,112,108,94,109,119,106,112,103,109,104,101,100,96,100,122,107,94,106,112,114,116,102,106,107,107,115,102,107,105,98,77,100,106,116,102,100,105,100,108,108,97,104,112,99,105,130,108,135,99,100,102,101,101,96,111,113,105,98,112,107,116,116,116,112,101,84,102,100,103,105,110,117,115,108,110,75,117,98,99,112,113,97,108,105,108,98,110,116,93,110,104,103,106,107,98,120,116,103,109,112,75,105,106,107,90,105,106,110,117,109,97,98,111,109,100,114,100,104,104,82,112,95,103,125,122,93,102,103,102,116,105,110,104,98,109,104,102,107,112,109,99,102,108,103,104,112,109,95,105,101,108,95,96,103,108,98,105,100,94,105,105,103,107,105,105,111,111,111,120,104,94,100,109,103,102,105,94,94,98,108,111,113,99,102,113,107,109,111,95,114,85,77,91,104,91,105,101,104,106,103,98,96,105,95,113,102,104,113,112,90,104,112,113,86,104,96,112,95,119,107,110,115,94,97,111,102,106,111,107,114,98,109,103,115,102,103,107,101,99,98,100,103,113,91,104,113,115,101,102,97,97,101,112,109,112,106,81,101,107,111,105,103,116,94,105,103,108,96,104,98,93,112,100,104,100,96,91,107,102,113,100,108,111,107,100,100,105,97,101,62,97,89,102,111,112,91,106,106,105,120,111,103,107,94,84,106,111,114,103,113,99,109,98,114,110,108,102,102,99,100,107,106,107,106,107,110,113,116,107,100,97,99,104,112,114,108,82,104,98,110,98,97,105,113,107,106,91,96,104,107,95,97,106,98,107,103,100,103,116,106,98,97,112,97,94,113,113,105,96,127,97,108,117,101,105,99,109,108,98,118,99,99,98,95,106,103,107,107,94,92,120,93,104,102,113,112,110,94,103,100,101,102,94,105,100,104,108,104,106,101,119,97,121,97,107,112,112,104,110,108,104,96,117,94,105,103,102,104,104,117,109,110,113,118,102,103,111,99,113,102,123,98,106,97,98,111,93,112,83,105,100,117,98,110,107,103,105,123,94,107,104,112,101,104,104,116,117,92,103,107,102,106,104,103,98,110,104,93,100,107,104,102,98,104,97,100,102,104,100,107,100,109,114,99,119,94,101,98,103,108,108,97,92,106,92,101,106,108,108,108,125,111,98,98,111,104,96,105,106,104,109,116,102,103,107,103,117,100,102,96,106,127,109,108,113,109,111,104,108,94,104,122,98,99,107,97,105,109,99,99,92,107,104,113,102,101,84,111,102,112,103,117,120,103,99,99,109,124,96,118,95,108,108,108,104,106,132,112,108,101,79,113,98,101,110,98,102,102,92,94,101,92,113,106,101,124,107,104,84,109,105,107,103,106,104,108,110,102,138,106,107,108,107,99,113,102,111,108,105,100,100,109,113,122,99,105,95,97,112,99,99,104,107,98,100,109,106,109,108,102,82,103,104,95,102,99,111,105,102,100,101,109,94,100,105,106,109,107,112,106,102,105,102,102,106,96,101,106,103,117,104,105,111,107,96,113,86,108,93,116,110,96,106,105,107,109,116,112,109,103,100,108,108,99,112,106,102,103,113,95,99,99,100,115,106,100,95,99,109,103,105,110,98,104,99,102,114,111,104,98,99,110,98,98,114,100,104,102,101,98,117,103,103,99,97,100,77,103,95,122,107,116,104,95,114,103,100,108,103,104,105,108,116,112,93,103,95,68,102,99,107,75,102,103,82,105,113,97,90,96,103,99,100,108,103,99,117,101,107,112,104,108,97,92,115,98,110,103,106,104,97,119,103,110,108,100,102,101,96,95,106,96,110,115,102,107,103,97,111,98,100,104,109,117,113,110,100,123,116,100,113,90,117,99,106,109,104,111,102,97,115,102,105,102,104,104,96,96,104,91,114,117,111,105,94,103,102,100,101,98,105,91,99,91,107,105,116,104,102,88,123,105,101,100,100,98,105,93,113,109,105,112,112,91,91,103,104,108,107,111,99,111,107,122,102,97,114,101,89,99,99,94,89,107,109,98,125,99,123,104,104,110,101,89,97,97,102,96,97,107,102,104,101,93,115,86, +529.57928,96,111,100,109,88,65,107,93,105,113,91,104,93,98,98,102,84,113,106,89,85,90,96,110,90,104,95,101,113,105,109,117,79,113,114,104,102,103,101,99,90,95,87,88,103,107,105,105,99,110,107,102,106,118,113,96,110,112,107,100,98,112,101,100,102,97,103,97,116,101,95,101,104,104,111,100,105,104,108,98,93,112,105,89,113,102,106,91,101,105,101,95,99,107,94,104,109,105,116,100,101,99,106,104,103,100,98,93,101,87,105,99,129,98,107,98,98,104,110,104,97,111,103,100,110,91,110,104,104,117,102,93,105,108,110,110,110,104,98,100,95,104,105,124,105,102,100,98,97,94,103,107,105,91,93,99,103,108,108,96,88,105,116,107,106,116,107,95,106,95,108,102,118,114,99,102,101,97,77,101,100,98,99,107,113,102,96,94,107,99,94,112,94,111,101,89,100,107,110,106,100,103,119,111,99,110,115,99,118,109,101,110,105,103,104,107,106,94,94,100,96,101,105,101,103,114,96,101,104,99,98,95,99,109,105,98,108,134,108,98,96,99,112,113,104,93,95,106,115,103,96,109,94,100,102,95,93,102,86,96,98,108,104,110,101,102,96,101,103,101,102,112,101,104,93,103,108,115,102,94,108,99,100,106,120,102,101,108,113,104,98,100,111,103,101,101,98,104,105,118,110,94,99,115,101,110,105,100,95,117,102,121,104,101,101,93,105,107,103,111,108,98,99,114,102,94,100,96,106,113,102,96,104,106,102,105,104,97,103,107,96,96,103,104,106,117,99,103,111,104,97,97,92,98,99,92,100,95,100,105,105,107,95,97,98,107,106,111,105,121,112,101,103,117,111,111,89,111,104,116,122,112,108,103,106,110,101,98,99,94,109,98,101,103,106,108,98,105,106,110,71,108,101,109,99,92,104,111,108,93,97,114,120,99,99,103,114,93,113,103,110,98,101,109,105,108,107,111,98,105,104,111,92,88,90,103,118,108,104,104,108,103,102,106,109,105,106,104,105,104,90,101,98,108,78,96,104,111,103,106,111,104,98,108,117,114,100,94,100,99,109,99,112,91,94,102,103,114,95,106,102,113,103,97,92,116,102,109,102,100,107,107,103,108,117,110,102,110,110,110,110,112,111,98,119,110,106,103,98,98,107,103,93,100,100,108,111,101,113,95,117,117,100,106,109,108,115,109,98,107,110,111,105,105,99,110,105,99,105,94,95,91,124,106,113,104,104,108,106,108,109,103,103,93,109,92,98,104,102,91,102,91,99,103,107,108,109,106,91,104,94,105,111,107,96,100,96,91,109,127,107,98,105,93,100,104,118,100,110,105,113,94,100,95,107,117,94,106,113,99,94,91,109,98,110,116,97,101,102,99,116,118,109,106,99,90,127,92,95,95,112,97,99,108,99,116,98,102,101,109,98,107,107,104,120,100,137,96,107,103,103,111,121,97,110,95,106,96,106,122,106,111,106,113,106,103,107,110,109,102,102,108,101,98,97,97,114,110,116,115,110,66,116,99,91,121,95,107,112,102,108,110,116,96,102,101,109,105,98,116,99,105,101,101,92,102,111,109,111,97,105,101,91,105,111,107,108,100,102,107,108,104,110,98,92,102,97,108,99,95,100,101,101,106,97,103,111,109,94,103,102,116,105,103,100,97,106,104,117,98,101,98,102,112,104,106,109,109,106,106,94,104,101,99,113,111,108,104,115,107,103,102,98,111,102,104,96,100,104,106,119,103,100,105,94,100,103,111,119,102,102,107,92,99,97,96,102,113,107,114,114,113,100,117,103,112,96,105,105,113,94,104,102,99,107,100,101,108,104,105,111,94,105,116,117,97,110,101,105,102,96,109,85,110,98,115,112,113,103,112,98,102,110,103,97,117,110,101,110,105,99,108,98,101,101,95,106,104,110,102,101,98,109,98,99,105,113,110,106,92,107,113,102,107,99,106,99,103,99,117,99,113,105,96,102,108,108,109,107,100,107,99,113,117,103,109,108,108,114,99,102,104,102,108,107,93,104,105,108,105,100,100,106,103,63,90,103,102,93,105,107,104,96,104,99,106,99,109,112,111,108,116,103,98,102,111,99,110,103,104,109,99,114,108,101,114,109,101,104,105,87,90,100,102,102,97,116,106,109,109,118,103,115,100,98,108,117,104,93,105,107,102,93,108,102,107,105,107,104,105,104,100,103,100,102,107,85,97,106,96,105,110,104,103,102,108,97,105,104,84,107,108,113,119,108,94,100,103,108,114,99,107,103,113,112,92,103,106,96,117,100,89,98,108,101,101,97,110,91,96,106,114,109,95,110,106,78,108,102,97,106,96,109,109,114,92,109,101,89,99,101,101,107,111,84,101,96,113,116,107,103,111,105,104,103,99,108,106,104,109,96,106,108,95,96,84,91,113,98,105,109,118,113,109,119,102,113,99,96,110,104,103,94,110,106,106,100,113,105,93,104,99,103,84,110,101,97,117,111,108,106,96,99,95,111,112,102,102,105,121,111,109,103,93,110,114,98,110,89,95,107,111,106,108,106,102,106,113,124,109,120,112,111,105,107,96,100,113,95,100,105,115,92,106,100,104,104,120,96,101,98,100,99,104,99,111,115,96,114,104,114,83,116,108,105,106,116,92,108,103,97,103,106,111,113,105,98,98,118,112,102,103,95,110,100,113,121,108,95,109,121,107,103,98,104,111,107,100,109,106,104,103,107,107,115,101,113,116,109,103,101,113,104,103,104,108,112,106,108,110,101,111,96,104,116,99,107,95,123,102,104,111,110,108,111,102,109,104,105,108,116,96,91,109,104,99,102,92,110,125,113,123,108,100,97,117,107,106,103,99,112,104,106,105,116,109,100,102,109,95,96,113,113,122,106,106,109,104,102,112,106,112,115,101,91,103,116,109,102,104,109,112,102,110,102,108,110,101,106,100,110,98,107,109,110,106,127,105,99,100,112,111,107,120,102,107,109,113,100,106,109,108,109,110,103,116,115,116,111,86,96,108,107,108,103,104,104,119,112,105,99,99,105,102,105,112,116,103,93,116,102,121,110,106,91,109,106,102,109,109,112,107,95,116,106,108,108,113,105,101,103,105,103,103,112,103,101,108,78,117,99,114,102,116,110,105,101,78,112,102,101,104,98,99,107,111,101,106,98,104,110,95,115,108,114,117,109,103,121,110,107,104,110,102,102,105,103,94,120,108,94,88,96,100,108,106,107,110,118,116,104,99,104,111,117,100,110,116,105,110,102,107,108,86,106,106,91,103,111,102,98,110,106,108,110,108,121,98,111,98,111,106,101,108,108,98,124,121,99,100,96,112,105,98,94,100,111,97,117,110,115,108,113,118,96,108,98,103,107,100,105,103,96,107,112,102,101,100,112,110,88,91,98,103,100,109,101,94,101,103,98,97,95,118,111,105,92,97,95,85,101,116,95,107,97,105,109,113,113,111,102,105,108,89,108,105,109,91,112,82,111,102,117,110,109,103,110,103,100,100,113,96,98,133,110,102,102,95,121,111,106,106,107,107,110,109,95,113,101,103,121,116,97,94,102,95,95,110,110,103,112,101,108,110,106,104,96,99,113,93,108,103,109,103,109,101,108,113,102,108,109,113,105,115,97,113,102,100,104,114,116,100,109,103,100,104,112,102,101,105,112,111,83,98,105,110,101,101,110,105,105,100,102,115,99,98,99,111,104,106,106,106,100,110,93,101,91,99,102,105,95,105,105,105,110,102,113,114,111,110,104,101,114,109,110,102,102,98,98,77,102,117,105,101,107,95,108,115,103,117,103,99,115,112,104,102,106,95,106,109,105,98,110,110,113,105,97,100,109,100,102,107,112,103,122,104,102,94,101,112,106,101,102,107,112,103,99,95,113,108,101,99,98,111,107,99,111,107,120,95,102,89,99,106,107,109,100,101,105,105,106,110,110,115,93,108,102,108,107,104,111,97,108,100,109,106,111,103,109,107,106,110,94,98,104,102,104,105,105,99,116,104,112,97,106,118,102,98,114,110,108,110,106,108,105,109,100,102,106,127,113,95,103,113,90,94,108,104,100,112,109,109,108,97,105,111,95,110,107,100,112,102,117,101,98,107,115,104,103,106,98,113,105,116,102,108,105,104,124,110,110,118,107,106,108,106,106,104,94,103,97,110,117,98,102,103,103,107,106,107,103,107,108,104,105,108,99,106,104,97,109,103,103,76,90,111,95,109,101,93,111,106,118,113,102,85,103,102,106,106,104,107,102,108,108,121,113,101,100,120,95,108,98,102,96,112,107,119,109,111,99,117,104,94,115,108,100,110,106,106,83,104,102,95,106,108,99,107,105,105,102,120,94,114,109,103,104,108,101,107,100,113,98,113,101,110,99,113,116,94,96,107,95,111,96,107,100,101,113,106,124,96,106,96,106,96,91,113,103,102,111,114,112,127,110,102,103,95,101,92,93,94,102,97,120,71,113,98,100,108,93,95,106,103,107,100,111,103,101,97,105,84,101,100,110,111,108,83,83,105,94,99,100,129,98,105,108,106,90,112,102,118,107,101,111,111,81,105,117,105,110,118,108,97,117,113,109,95,105,107,103,90,95,79,105,101,99,107,115,104,111,111,112,105,104,96,112,106,98,107,106,117,105,114,105,126,120,106,95,105,95,87,101,111,107,106,113,105,102,105,99,104,102,112,116,107,109,92,99,95,109,97,85,101,106,104,107,112,106,108,119,109,110,102,106,100,108,109,93,102,112,103,110,92,106,112,121,93,88,97,106,121,105,105,102,109,107,114,109,104,99,109,102,101,113,103,112,103,114,113,110,102,95,102,116,102,99,119,97,104,104,95,97,99,108,98,92,115,93,112,103,103,108,96,110,119,116,102,108,93, +529.72003,100,91,101,100,106,107,97,101,98,99,110,107,103,99,106,100,107,104,91,101,107,90,100,110,105,92,108,106,96,103,100,97,105,106,117,103,113,87,104,94,108,116,105,93,106,113,110,102,98,102,107,91,108,100,113,103,106,90,104,117,98,114,105,113,105,106,113,101,103,99,106,113,81,105,87,113,108,111,98,105,117,102,103,99,109,117,107,109,104,106,102,103,95,112,92,98,100,106,102,118,94,105,108,95,108,110,112,116,103,99,101,90,97,100,105,103,107,107,118,117,118,104,105,106,110,83,109,104,108,104,113,105,107,93,101,100,95,114,107,100,91,106,117,110,108,100,102,103,103,99,109,113,114,98,92,103,104,108,94,89,101,104,111,108,112,104,105,102,92,104,100,100,100,92,104,106,107,103,110,108,103,113,107,125,96,107,100,102,106,91,93,99,101,95,92,102,112,96,116,104,109,98,113,114,98,107,90,102,119,97,92,116,105,102,100,95,92,103,104,104,111,103,106,100,101,120,108,114,101,111,101,107,106,103,103,107,97,120,97,98,100,106,102,108,102,104,107,119,114,107,102,105,101,115,101,129,107,102,84,104,93,112,112,103,100,107,102,105,103,96,106,111,117,103,103,115,114,87,105,109,102,100,104,105,108,107,95,101,114,108,98,109,104,99,106,107,105,107,105,105,96,100,101,114,96,114,115,93,115,106,97,91,105,107,100,105,95,105,108,70,119,95,105,103,96,108,105,110,99,129,115,105,111,94,97,107,107,106,92,100,96,108,100,108,101,114,106,104,111,107,97,105,120,102,103,113,101,115,100,113,113,98,95,106,102,98,102,103,94,106,103,108,108,99,117,106,111,100,107,106,110,95,106,108,99,108,113,106,114,99,115,111,97,100,84,102,98,110,107,113,88,110,106,105,102,100,97,93,93,86,99,101,105,96,101,96,103,112,108,105,85,98,101,119,102,117,111,93,101,117,112,116,104,110,118,93,103,104,98,108,106,104,98,112,109,129,104,95,107,104,98,106,102,109,109,102,103,109,104,102,99,106,114,115,108,109,101,103,85,106,101,111,121,105,96,108,99,119,111,115,103,102,106,112,100,115,107,111,113,105,96,122,118,116,107,106,95,100,91,103,102,90,121,101,124,108,97,106,112,106,108,109,99,101,125,103,98,102,107,109,102,104,102,109,108,104,95,110,103,111,100,103,105,105,103,104,108,95,102,109,108,103,128,118,118,93,106,99,94,109,103,105,106,98,98,94,117,111,99,94,104,117,105,100,104,110,108,95,106,96,77,114,102,102,110,97,99,101,103,99,99,86,101,99,97,123,116,107,110,110,107,108,92,110,106,103,101,111,111,102,96,110,107,93,109,92,102,111,116,109,110,115,101,104,103,104,107,96,97,108,94,100,100,107,102,103,98,95,105,107,100,101,99,100,110,101,115,118,110,105,116,107,104,116,92,101,98,105,109,112,103,103,100,109,113,106,107,102,112,113,105,107,100,99,89,109,102,96,102,112,109,104,108,105,91,111,116,100,98,110,104,119,100,98,98,108,102,102,108,105,92,112,93,99,107,117,97,105,99,101,101,97,110,117,109,101,110,109,95,99,99,111,107,104,106,104,97,103,105,110,94,106,112,101,98,102,114,113,112,110,104,102,103,108,97,109,102,94,102,105,102,101,110,92,103,107,98,104,107,104,105,96,101,106,98,103,113,99,104,96,98,100,105,109,107,121,111,107,106,107,107,107,112,111,101,108,104,105,113,100,108,100,109,115,106,103,103,103,97,119,107,121,110,102,98,119,99,109,107,107,98,103,102,119,116,116,103,99,113,99,115,114,104,108,106,113,101,101,97,119,108,112,107,106,102,102,112,96,108,99,120,92,103,91,107,116,117,109,108,101,98,131,100,100,110,95,96,101,103,104,89,91,101,113,115,104,100,121,117,112,106,104,99,104,108,97,99,100,99,111,101,110,96,118,105,95,91,98,103,107,114,107,117,107,88,109,93,124,107,121,98,105,100,105,101,103,112,98,97,97,108,112,117,105,111,108,94,104,103,106,107,108,109,114,113,103,100,109,105,104,104,102,114,104,111,98,102,109,116,121,112,110,112,103,100,104,109,92,122,98,100,100,113,106,100,100,110,104,101,104,104,111,109,105,112,104,112,104,109,121,106,118,100,107,120,109,111,96,105,109,101,101,106,98,103,120,106,103,98,111,91,93,107,100,106,105,92,107,104,105,117,101,94,101,109,103,99,110,112,100,101,116,104,118,103,117,100,105,98,98,87,107,113,82,102,99,103,109,99,110,107,107,99,99,90,103,100,111,107,108,110,105,113,98,118,104,99,113,100,105,102,103,108,114,117,102,112,108,104,110,100,94,101,107,89,111,99,105,92,112,100,107,108,106,107,95,94,88,100,103,101,122,92,109,110,103,100,104,107,100,94,105,101,109,101,120,113,96,110,117,83,109,106,89,94,95,97,112,108,125,105,104,100,102,98,112,112,103,105,108,99,104,107,108,113,94,103,115,103,101,103,99,107,89,113,101,109,104,110,115,107,111,108,102,105,105,105,107,106,96,108,118,95,109,93,100,112,94,105,96,109,107,120,117,99,108,109,97,109,108,109,115,110,105,116,115,108,99,115,100,103,92,107,101,105,95,114,100,110,98,113,105,113,108,80,103,107,108,104,113,103,119,115,118,107,123,107,96,106,103,117,96,100,114,104,92,95,113,104,103,101,99,105,107,107,109,112,108,95,121,112,106,110,103,109,98,102,110,115,124,103,111,99,110,113,104,104,105,111,114,106,101,110,100,110,90,102,113,124,107,106,108,111,106,104,106,106,99,100,112,97,98,100,103,119,94,95,109,105,102,113,108,101,95,109,101,101,102,98,113,115,93,94,106,108,118,111,100,108,105,98,107,108,99,102,109,92,101,113,108,104,110,118,120,100,104,107,98,104,101,106,113,97,100,99,113,106,111,98,97,117,102,107,104,117,109,80,99,114,97,106,104,136,107,102,97,102,113,102,92,118,115,104,104,112,101,106,113,113,108,106,98,106,104,100,106,89,109,110,103,124,106,103,104,122,103,105,109,92,107,99,104,99,103,107,95,106,102,104,111,110,102,115,104,111,99,106,108,117,91,106,114,108,105,118,104,108,104,103,91,97,106,109,111,96,113,100,108,112,105,100,101,100,106,106,106,106,112,145,100,102,102,98,110,106,104,103,95,112,101,112,112,111,108,103,107,118,109,108,107,96,110,110,103,113,102,97,111,101,102,109,102,127,106,107,103,113,108,99,116,110,103,102,101,110,113,98,95,89,98,109,128,97,96,102,92,103,109,101,108,116,112,115,103,114,105,105,104,106,106,110,107,103,99,108,104,110,107,119,98,88,99,113,106,103,108,84,106,105,105,101,97,102,106,107,98,95,113,102,113,108,97,99,113,91,103,108,108,106,98,85,104,115,113,119,106,109,109,103,108,113,102,101,120,108,104,109,101,112,102,92,100,100,106,107,104,106,110,104,71,98,117,108,99,116,103,90,107,97,106,105,96,108,105,99,105,102,104,99,110,111,113,105,106,110,111,103,108,100,92,110,102,102,108,104,99,102,113,117,105,99,119,107,92,102,102,103,88,97,108,101,107,102,121,103,99,104,97,101,107,108,110,107,100,115,97,110,103,99,93,104,105,112,98,108,92,111,111,105,115,103,106,121,106,115,103,89,108,105,98,102,99,110,100,102,100,106,111,93,111,103,117,110,107,90,113,117,95,96,112,103,99,102,105,105,99,124,104,95,108,110,107,109,98,102,106,107,99,103,113,91,102,95,104,99,109,105,102,101,100,103,106,94,111,106,115,103,94,110,100,64,102,108,100,114,109,106,96,102,110,106,111,102,108,106,105,106,94,92,110,106,99,87,101,114,113,103,104,102,113,103,106,120,103,111,111,117,95,106,108,105,102,96,100,121,104,105,110,108,110,113,108,110,99,109,104,113,97,111,107,112,106,102,109,109,105,112,92,116,108,113,110,91,106,103,111,94,114,102,115,105,105,104,99,98,108,111,109,102,84,123,113,94,104,109,132,100,109,104,111,116,101,102,112,111,106,102,100,92,99,105,99,102,108,110,109,105,115,99,98,110,110,109,98,112,105,102,107,101,108,108,103,104,111,104,101,84,110,103,110,103,105,101,106,108,110,108,100,116,117,109,110,105,99,90,109,109,111,100,100,96,111,117,105,103,109,85,71,106,109,111,112,110,102,96,100,94,103,98,84,113,104,121,106,101,96,109,101,108,121,116,104,108,109,117,119,94,94,107,117,112,102,120,110,113,104,101,119,102,96,112,110,115,122,107,102,103,108,124,105,100,98,112,105,110,96,111,108,103,98,101,104,104,104,103,119,113,101,88,97,111,99,102,116,97,106,75,110,104,110,92,109,98,101,103,99,84,110,92,106,94,101,108,101,118,104,93,108,108,114,106,116,111,100,100,119,95,103,104,104,98,99,96,110,92,115,104,104,96,109,108,100,88,104,101,99,103,100,109,107,105,107,105,101,100,111,103,106,104,103,98,103,102,118,107,110,99,102,97,109,107,104,99,109,100,105,104,110,122,106,107,103,109,76,103,90,118,105,102,116,100,106,109,114,106,91,100,97,101,102,117,97,103,99,113,106,109,107,106,105,110,116,110,108,109,103,100,114,113,98,101,90,98,100,103,102,102,100,105,105,95,105,101,98,115,98,104,103,102,109,96,111,98,112,106,111,112,87,114,117,96,99,113,90,108,115,91,99,99,104,111,91,105,105,92,98,121,108,91,111,120,108,110,95,108,106,106,104,112,103,117,104,115,118,79,114,101,110,111,103,102,105,99,92,107,95,120,99,105,117, +529.86078,101,108,115,101,97,103,105,94,96,109,98,100,103,91,109,99,108,114,107,100,104,101,91,121,88,95,76,103,100,106,107,105,101,113,100,100,118,113,106,100,104,90,96,107,100,110,95,109,101,84,99,110,100,94,90,99,98,91,120,117,95,94,105,100,98,115,103,106,103,107,123,102,96,98,100,105,97,99,100,118,97,109,96,106,103,88,108,99,104,95,105,108,95,98,98,93,108,91,107,97,99,95,105,65,105,106,110,113,104,92,100,97,108,103,96,100,105,111,108,95,93,102,104,116,95,106,101,94,110,103,96,96,94,94,100,106,100,108,100,107,104,102,100,87,94,122,99,99,107,95,95,106,109,98,98,106,102,103,113,92,110,113,99,129,99,104,110,107,102,104,110,98,96,96,101,103,108,104,96,115,111,113,97,112,104,91,99,100,120,117,111,96,111,124,107,111,103,92,100,101,106,105,100,98,102,105,98,95,100,105,110,118,103,97,102,105,91,97,107,104,109,83,102,97,109,97,91,110,106,98,91,97,103,107,77,99,100,100,106,99,100,110,115,112,98,104,106,114,105,105,97,108,104,100,99,102,93,119,104,101,95,110,115,107,104,103,100,100,100,97,100,108,101,121,95,100,104,110,103,79,112,107,102,100,106,107,101,106,104,100,104,113,110,95,107,96,106,100,100,100,104,99,104,118,99,101,115,98,104,100,104,103,100,100,100,109,100,97,115,104,94,113,109,108,107,100,99,106,106,103,111,95,111,94,105,67,107,105,100,95,108,102,100,103,103,101,97,107,119,108,113,101,100,104,103,97,106,102,100,107,107,95,109,105,115,105,98,107,99,106,105,94,117,103,99,114,101,106,94,102,109,111,103,112,106,90,104,103,100,100,120,97,107,94,104,105,101,100,93,100,98,80,109,95,100,108,108,107,103,96,112,104,111,103,94,101,102,104,103,105,99,108,114,106,92,100,110,94,103,105,88,80,86,120,104,98,92,94,108,106,102,89,107,101,108,113,109,103,111,110,95,96,99,109,98,104,107,112,104,103,90,106,110,104,110,90,104,95,96,112,113,111,103,100,98,102,103,96,101,92,111,106,110,105,98,101,140,101,96,103,110,109,99,96,104,107,106,103,96,99,108,89,109,111,92,105,104,103,92,114,114,98,109,100,102,109,109,99,104,99,115,103,114,101,118,100,109,99,99,97,93,108,96,122,102,91,98,100,91,106,109,111,101,105,76,100,101,95,102,109,102,103,109,95,100,126,93,98,98,105,125,111,102,105,97,106,104,99,106,95,89,96,106,109,105,105,105,80,107,93,107,101,112,111,116,105,111,104,102,96,109,94,103,115,112,81,100,102,102,94,100,103,111,98,82,100,110,100,114,107,88,107,109,104,108,105,106,92,107,97,108,91,110,98,96,92,110,105,103,102,98,98,107,94,99,98,106,92,110,118,96,106,97,95,100,107,108,97,98,73,73,94,94,105,104,106,101,118,108,96,115,110,102,91,91,97,110,88,99,96,105,106,110,101,97,95,109,116,104,96,101,111,98,105,100,94,91,114,114,98,102,106,97,116,111,93,120,98,102,96,109,115,95,98,109,100,105,109,99,96,110,104,100,90,112,105,95,105,100,106,112,94,100,100,95,106,108,106,107,108,104,112,108,103,101,113,119,107,103,98,75,104,95,115,107,100,98,106,103,92,103,97,102,107,106,112,109,97,105,118,113,93,98,105,98,108,97,118,106,107,105,103,91,104,106,111,104,98,118,91,116,106,109,110,100,101,101,110,107,106,103,100,110,109,98,108,122,100,106,108,103,108,111,98,106,107,109,99,120,102,113,114,102,103,101,103,110,108,95,100,101,108,94,101,103,96,100,111,107,100,104,96,101,116,115,102,114,81,112,99,108,112,115,102,107,106,101,106,101,98,95,91,101,98,101,102,98,104,111,115,96,106,107,100,114,128,101,105,99,99,105,103,106,103,103,104,114,106,100,104,113,101,122,107,111,106,102,118,107,100,104,113,113,107,113,109,117,106,106,113,99,98,103,94,97,103,108,117,96,102,113,112,102,102,100,92,108,104,98,106,112,100,110,98,100,94,99,95,117,81,110,102,112,117,107,114,107,98,103,107,100,104,99,103,95,109,103,105,107,103,113,115,108,105,69,100,121,108,106,111,116,109,111,107,99,100,97,107,104,103,114,102,98,100,111,110,107,98,100,107,95,96,96,103,103,87,106,112,111,104,103,105,105,111,111,97,99,100,109,101,111,104,100,103,91,120,90,109,108,103,109,101,104,108,98,93,106,124,105,110,106,99,96,116,109,103,107,100,102,97,98,107,100,98,106,100,101,91,113,97,105,100,109,107,101,104,106,103,113,81,123,101,92,103,106,115,121,102,126,98,99,99,104,94,110,101,105,100,105,105,89,106,98,105,96,93,101,107,104,109,102,98,101,113,102,106,107,87,113,96,120,109,95,99,108,91,107,103,106,91,125,86,100,113,103,87,104,103,121,102,114,106,102,102,98,106,102,103,91,111,107,113,94,101,102,99,111,109,106,113,98,112,94,102,107,108,113,105,94,97,99,97,119,105,113,101,117,91,105,110,116,102,107,108,104,105,116,107,106,84,114,120,94,110,106,107,110,110,96,104,99,96,108,120,111,96,110,101,106,98,111,112,106,96,98,101,122,107,110,109,105,100,103,113,98,99,104,96,97,102,113,109,101,103,98,99,107,100,114,96,96,111,96,118,117,102,107,105,101,101,102,112,117,106,108,108,105,113,108,100,97,112,108,121,102,120,114,106,106,106,120,95,123,107,113,115,106,111,105,98,99,110,109,112,92,91,106,98,108,98,110,117,125,110,117,100,116,96,92,116,105,103,92,104,113,102,113,106,109,102,107,103,108,92,104,109,117,100,113,103,104,95,94,98,105,120,110,110,98,106,105,105,108,109,111,98,112,96,100,93,110,102,105,96,97,115,94,99,70,105,107,105,107,113,119,98,127,113,117,108,113,92,96,108,97,103,95,96,103,104,107,103,113,106,102,111,97,107,106,103,100,114,102,105,106,91,106,110,100,105,111,116,113,110,125,100,120,106,117,100,140,102,103,106,104,94,104,103,111,88,106,108,105,106,95,98,106,102,110,105,96,112,106,106,96,120,97,104,107,121,102,113,100,113,87,106,100,107,106,110,109,73,111,107,97,112,111,99,123,99,117,99,111,104,100,105,109,115,98,108,100,109,110,105,117,101,98,108,107,111,102,117,101,117,108,99,99,105,107,104,105,89,103,111,104,109,111,84,107,103,108,111,129,98,114,111,100,103,99,93,99,109,118,111,102,104,113,112,99,97,103,115,91,106,108,110,112,110,111,101,104,92,107,113,107,97,95,99,99,107,102,98,99,114,101,98,106,88,104,101,100,103,105,77,90,115,108,111,112,103,106,115,115,110,116,105,111,100,112,98,98,104,101,109,92,94,103,113,112,112,115,100,100,111,115,106,96,109,103,109,110,102,98,112,95,98,100,111,101,114,109,106,95,104,104,104,100,106,93,103,110,109,111,110,105,98,102,108,105,93,98,109,104,86,97,107,114,101,101,108,89,99,103,95,101,102,107,109,118,111,98,94,110,120,107,103,99,104,113,122,94,105,109,105,96,110,111,103,102,105,109,113,105,109,88,106,111,109,99,116,114,110,104,121,110,106,97,103,104,103,108,102,109,104,100,100,106,112,108,107,101,97,94,84,103,118,105,108,106,97,120,94,111,102,109,98,93,105,111,101,110,107,102,110,101,103,105,104,101,103,109,107,106,107,114,109,96,108,120,108,120,110,98,106,112,115,109,113,119,96,83,114,105,105,105,109,106,99,94,97,105,99,111,104,109,94,110,99,106,110,110,102,109,94,106,104,99,116,113,105,109,95,101,103,103,116,95,94,102,106,102,113,110,104,109,95,100,117,98,107,108,105,103,110,104,123,110,95,106,105,99,106,102,82,113,116,101,111,113,119,108,107,107,104,106,99,111,98,96,104,104,116,96,103,100,116,97,110,106,90,103,101,112,100,98,108,112,102,121,106,104,102,95,103,97,106,96,108,82,106,104,107,109,107,140,106,106,97,107,108,108,92,105,96,113,93,101,91,108,101,111,107,108,93,115,94,108,108,104,100,108,107,104,105,104,110,107,103,106,112,106,106,116,114,109,109,102,109,93,112,101,98,104,108,111,88,110,121,112,111,98,104,107,105,101,95,107,101,99,102,98,101,120,115,99,112,100,98,112,108,102,102,92,99,109,109,127,105,109,105,106,101,101,100,102,98,111,100,106,106,107,100,104,104,109,94,111,109,99,112,96,101,107,114,108,109,113,103,105,99,110,105,105,96,108,107,97,116,99,111,96,99,99,102,94,99,111,106,104,103,107,99,106,114,115,96,104,97,110,108,113,116,90,104,107,99,102,95,112,103,103,99,119,102,104,98,96,105,102,103,103,84,98,111,106,102,105,91,101,111,110,90,106,103,94,107,106,109,97,102,109,100,108,95,111,115,87,99,99,105,94,106,112,104,109,108,117,103,99,104,101,91,111,95,101,87,100,101,96,106,102,109,102,97,100,94,99,105,103,100,112,103,103,104,106,109,108,100,112,109,90,93,105,108,101,113,97,102,98,102,98,106,108,101,96,100,100,98,123,93,103,116,110,109,105,105,105,101,110,99,132,105,94,106,102,103,117,106,121,112,116,97,95,99,102,109,110,110,95,115,102,111,109,106,123,110,102,117,113,100,99,104,111,106,126,107,113,105,104,113,112,95,104,87,102,102,114,102,85,111,112,97,94,110,101,95,97,123,100,89,108,97,99,107,109,102,105,115,109,115,108,104,93,79,105,105,103,110,92,81, +530.00153,107,104,91,91,101,98,102,103,104,106,115,117,107,108,96,109,101,107,93,134,86,105,97,106,75,112,93,101,106,114,122,107,108,103,113,103,104,88,96,101,108,110,82,105,105,121,112,97,103,110,111,107,98,95,106,114,93,89,118,103,103,102,106,92,110,99,100,107,102,99,117,99,107,98,111,114,103,85,114,99,87,103,105,100,93,95,100,104,101,104,115,106,100,100,93,108,110,96,103,105,101,110,94,101,100,103,113,102,110,108,106,96,103,112,114,83,94,121,99,103,103,110,104,104,100,121,110,98,110,104,96,111,86,110,102,101,96,107,111,113,92,108,101,99,102,115,108,104,113,104,120,92,99,100,106,101,104,117,122,101,95,95,89,108,110,113,113,105,90,97,105,111,101,109,106,96,107,109,103,95,97,103,120,102,109,113,117,87,117,94,115,103,104,109,102,110,103,107,107,104,109,103,97,101,103,103,99,105,125,111,104,107,109,110,106,111,110,113,93,103,110,99,102,101,101,106,100,83,105,104,87,100,124,96,103,103,121,112,96,115,106,108,109,114,101,98,109,106,97,112,108,107,96,100,104,116,104,109,102,104,101,120,113,105,96,103,103,102,102,105,95,79,94,101,115,116,103,107,111,98,114,113,105,110,113,102,103,105,117,109,109,98,102,99,102,105,122,96,113,105,109,108,106,113,99,112,112,105,120,108,103,109,109,99,102,95,103,110,116,96,96,103,103,91,117,103,107,97,103,110,107,95,109,115,106,109,104,108,94,100,111,111,85,96,105,110,97,107,99,111,102,100,110,109,100,102,107,111,87,95,105,103,112,93,113,113,96,108,106,92,102,104,102,113,99,102,108,107,110,123,116,106,102,106,96,108,110,100,116,99,125,107,100,112,118,108,121,108,120,113,93,103,99,98,109,108,106,117,113,101,97,70,101,112,98,103,118,84,118,93,109,113,101,98,99,99,100,106,109,103,109,117,105,99,108,105,114,98,101,105,109,103,114,99,102,112,99,104,103,106,110,108,103,106,106,102,106,108,103,106,103,100,112,125,104,101,107,109,112,106,117,110,109,107,101,107,113,106,99,105,95,104,121,101,91,117,99,90,108,114,114,108,117,100,108,106,113,113,100,107,110,107,82,105,94,94,100,97,102,103,117,105,108,97,111,104,108,109,101,103,102,125,117,92,100,121,109,100,88,106,101,110,97,116,122,109,113,114,109,113,114,111,102,114,112,119,102,100,119,102,115,107,107,97,110,98,108,99,98,109,110,109,96,103,112,107,102,103,105,109,102,101,117,109,93,120,108,101,109,111,99,98,103,106,109,104,125,109,111,100,104,100,96,104,110,108,110,95,122,114,108,106,113,111,93,98,105,111,100,113,104,100,115,101,106,105,130,110,103,110,109,109,97,110,106,99,92,105,108,108,112,111,114,111,108,108,99,99,114,103,126,84,104,110,121,85,101,102,111,111,97,110,108,113,87,113,108,108,100,112,114,103,103,117,112,100,106,102,100,98,115,109,103,109,105,96,112,109,113,104,102,114,107,90,100,104,99,105,104,96,110,103,105,111,104,103,86,113,107,106,128,101,107,103,108,112,118,84,85,89,108,109,106,99,105,105,109,117,105,118,102,106,104,116,107,116,110,96,108,117,103,107,99,101,109,105,106,101,145,124,107,99,104,103,105,101,103,114,100,107,107,103,116,99,104,107,102,92,108,107,110,101,111,99,95,92,104,94,108,107,106,107,101,109,109,120,121,102,103,119,97,117,118,108,99,108,74,113,88,123,79,110,110,107,112,109,114,105,96,106,109,133,109,108,111,115,117,108,99,108,115,96,113,96,104,114,75,103,113,103,108,113,109,104,113,100,105,92,110,111,112,95,103,115,108,111,109,96,110,105,108,113,98,105,106,107,120,100,112,95,113,98,111,115,104,103,105,112,110,102,112,92,105,96,95,109,104,101,107,102,115,111,100,115,116,115,108,106,113,108,104,106,110,106,105,110,111,118,114,94,100,114,106,103,101,101,113,107,109,117,104,103,105,88,108,102,99,111,102,106,102,112,114,109,95,110,96,108,99,114,111,95,118,106,100,103,105,120,102,115,114,118,113,109,109,111,109,104,107,117,108,114,119,107,101,114,113,101,101,103,110,102,104,108,114,95,92,125,107,107,106,105,107,89,108,94,101,109,97,109,104,108,114,90,124,94,112,97,104,118,91,117,95,101,102,107,110,110,113,102,117,100,103,102,101,100,107,95,106,114,117,97,105,108,118,107,109,103,101,101,92,102,104,121,98,102,98,109,108,102,104,115,110,100,116,106,117,96,118,105,117,106,109,101,114,102,105,109,103,97,119,109,104,113,90,109,102,112,108,104,95,116,105,105,107,105,103,113,100,100,104,122,111,108,105,98,104,104,102,118,106,106,104,107,104,98,104,110,84,100,100,116,104,108,108,98,104,99,105,101,108,102,113,97,105,103,108,113,101,112,114,103,101,106,105,110,117,111,109,116,107,104,98,103,102,96,95,113,108,103,123,102,98,108,105,110,94,99,98,107,102,113,103,109,102,104,118,112,114,104,91,108,102,103,107,94,117,107,94,100,125,107,108,112,110,116,102,114,118,115,96,100,111,105,113,111,103,98,104,95,111,107,114,91,107,106,100,115,99,98,101,103,89,108,97,110,111,113,100,117,104,108,107,115,105,109,109,103,108,110,112,107,100,107,120,111,111,105,98,98,116,113,108,106,110,125,98,106,125,104,109,113,96,100,103,106,99,106,100,110,104,111,114,113,114,109,105,104,102,111,115,110,109,117,116,109,88,120,124,107,111,106,101,106,100,93,100,97,104,108,109,97,112,106,100,102,114,112,92,106,125,103,101,107,98,112,107,105,105,114,107,95,121,117,105,114,114,103,116,103,95,102,103,110,107,113,96,102,104,105,118,107,128,105,108,110,104,109,101,112,99,98,113,101,107,108,105,111,100,100,69,91,106,104,110,108,118,106,95,109,95,101,97,108,115,103,111,105,99,101,108,98,107,100,102,99,102,105,103,99,107,120,106,99,91,109,108,109,108,110,112,109,117,99,111,108,118,100,104,110,108,93,114,104,115,116,104,103,105,105,105,115,104,99,105,102,110,98,100,96,106,95,100,95,96,108,111,97,115,126,70,98,109,92,98,102,108,110,110,95,110,109,99,106,106,97,98,95,102,109,98,101,103,103,98,106,107,115,111,93,107,112,106,119,102,106,96,123,108,115,99,94,101,107,99,99,102,98,108,108,94,110,99,97,98,107,110,102,116,107,103,105,102,118,111,109,102,96,107,102,115,112,113,93,111,110,106,107,110,106,109,112,109,94,93,107,103,100,102,101,103,116,96,113,116,95,110,109,110,86,90,102,88,107,94,87,113,109,101,104,87,108,106,98,109,101,106,110,103,102,109,104,122,113,99,94,104,104,105,111,106,105,106,127,107,99,110,104,108,99,103,100,108,106,114,86,109,107,111,94,107,101,89,115,117,108,112,115,104,110,96,117,113,114,112,101,112,110,87,91,124,107,95,111,108,102,100,100,106,93,94,89,103,113,102,98,109,104,79,114,100,109,107,96,95,90,98,106,118,109,104,98,109,91,111,111,97,103,106,112,105,114,111,112,64,97,115,106,102,100,108,111,102,97,102,95,110,109,104,106,101,108,111,114,106,105,99,112,103,94,95,102,106,103,93,111,108,109,113,107,85,108,112,109,105,105,108,102,117,104,110,116,118,107,108,93,118,99,98,112,98,103,111,115,112,105,95,116,109,109,106,103,109,127,96,111,105,109,95,108,96,112,101,104,115,98,112,113,102,104,102,114,109,95,116,106,117,102,107,101,109,107,104,101,109,102,105,111,106,113,121,106,100,102,107,105,105,105,106,103,103,107,111,106,111,109,109,112,79,112,99,111,102,110,91,102,98,108,94,96,89,107,105,113,99,102,105,110,97,81,96,109,111,113,109,94,112,95,105,91,110,109,107,109,119,137,112,101,107,113,97,122,110,117,113,107,92,107,113,102,111,92,110,102,107,115,113,105,139,89,103,75,101,113,108,108,113,112,114,114,103,91,106,107,105,110,109,108,112,110,98,101,100,111,98,98,108,103,111,97,107,111,88,102,102,102,125,113,99,101,102,115,107,104,107,102,112,107,109,110,105,113,112,107,102,106,113,106,111,104,116,110,102,119,101,106,110,111,87,94,105,95,117,101,108,109,97,94,110,109,112,104,103,109,98,101,105,98,107,102,110,117,102,106,105,114,99,89,107,101,87,107,123,99,109,112,106,108,105,109,104,101,97,102,94,117,107,102,103,109,106,110,124,112,108,110,119,105,105,90,104,103,105,94,105,117,106,108,111,106,105,96,86,104,102,113,101,106,120,108,107,91,117,103,107,100,112,101,102,101,120,114,112,99,90,99,106,108,108,99,106,102,103,102,103,96,109,113,96,109,97,111,102,122,104,101,102,109,108,106,106,116,109,114,110,113,91,106,102,113,109,102,113,94,113,91,104,94,117,111,90,112,102,107,109,117,113,93,100,97,100,103,103,110,91,115,105,96,107,108,111,104,110,98,100,101,105,106,98,106,124,103,96,107,115,99,122,116,110,108,106,109,112,106,105,100,111,110,102,86,102,107,115,114,109,104,112,104,111,116,119,105,106,100,112,93,103,113,106,99,105,102,99,109,114,97,117,98,113,89,104,99,113,115,107,92,103,102,102,103,97,112,99,116,122,109,106,110,100,86,88,96,114,106,107,101,115,110,101,111,89,90,109,104,113,106,104,110,82,106,104,111,71,95,95,111,124,97,105,107,100,129,99,104,108,111,117,108,106,112,103,99,116,107,105,108,107,97,113,63, +530.14227,95,101,100,100,97,115,109,107,105,101,99,102,104,107,104,93,87,109,93,99,117,103,105,104,102,119,114,112,74,126,109,92,100,96,102,106,103,93,110,122,107,111,105,100,102,97,91,81,96,114,99,105,109,107,102,95,107,101,109,112,112,102,100,95,110,116,99,111,116,105,100,105,106,118,98,112,104,104,105,113,109,96,98,90,80,106,103,104,102,100,107,106,104,106,99,104,111,100,100,103,108,115,112,107,101,103,114,104,110,105,111,111,110,104,111,98,100,104,117,109,103,106,121,105,108,107,104,110,103,100,109,110,98,118,101,103,113,106,98,96,101,94,118,93,94,97,103,100,91,93,96,102,100,98,98,103,102,100,108,102,97,108,109,105,100,106,111,112,98,102,103,103,110,110,109,100,110,106,98,100,108,108,104,111,115,108,88,98,93,101,104,106,104,117,107,99,101,94,118,104,99,100,106,106,105,105,103,116,114,112,94,105,112,120,110,104,100,92,104,106,100,113,106,95,96,105,100,105,101,110,100,117,104,111,108,105,114,101,113,108,117,98,112,91,105,95,99,98,104,112,101,98,95,103,95,114,100,104,98,104,100,111,108,111,99,119,106,106,109,100,98,94,108,95,108,105,86,103,108,108,107,109,107,107,110,99,95,99,102,107,102,121,106,107,100,110,117,103,106,107,102,92,103,106,93,120,116,111,99,106,106,104,102,102,105,104,102,100,120,109,66,104,108,102,96,102,97,105,109,115,105,105,105,115,108,107,107,124,114,100,102,103,114,111,116,109,96,113,123,103,120,115,99,98,100,105,113,107,94,113,105,120,105,99,101,115,110,103,88,109,102,98,116,109,104,102,104,118,110,103,103,100,95,103,126,102,101,103,103,118,113,95,95,94,95,104,91,99,101,114,110,102,99,103,94,107,102,115,112,113,94,95,91,111,98,107,110,103,112,100,92,102,95,110,106,101,78,90,93,113,103,102,107,98,109,103,105,102,106,111,109,99,111,111,114,100,99,105,116,107,108,103,100,96,114,103,99,109,103,107,97,98,110,98,110,111,102,105,105,127,117,129,104,117,105,111,100,117,99,106,109,110,115,100,109,99,99,101,113,100,102,116,105,103,97,100,101,92,105,105,113,96,104,115,93,105,99,104,105,101,114,107,117,102,117,115,108,101,102,116,103,113,117,120,107,110,116,100,100,100,103,113,98,106,114,109,113,99,108,101,108,101,108,113,99,110,101,107,107,105,99,96,104,97,105,102,96,102,98,108,104,108,118,107,105,79,101,101,111,101,105,98,102,111,112,112,101,106,108,104,97,113,98,101,101,108,104,115,95,99,108,102,103,127,117,96,99,103,102,90,99,116,108,101,106,107,114,102,106,105,113,107,107,98,101,120,114,109,112,95,114,109,91,110,105,97,106,117,107,110,102,110,100,107,96,102,122,106,114,109,108,106,101,84,102,108,110,105,109,116,111,110,98,106,106,109,104,110,111,105,108,103,117,104,95,115,110,95,115,97,99,99,103,136,96,99,104,106,102,99,103,115,107,109,99,106,99,103,102,106,106,113,99,98,107,95,113,103,99,111,105,97,113,109,109,95,108,105,103,106,90,117,107,129,102,99,108,116,98,110,102,90,103,109,96,98,121,98,93,102,103,106,113,109,108,92,103,97,120,114,109,106,100,100,112,102,107,94,84,106,112,100,109,97,106,117,101,104,109,109,105,103,102,105,121,101,88,106,110,104,109,109,105,107,102,91,110,102,107,100,98,109,115,118,114,89,100,121,103,113,105,113,106,108,114,106,113,118,102,107,104,110,107,102,109,107,136,91,91,106,107,110,107,104,117,124,111,94,117,103,96,110,111,100,108,117,127,100,120,95,95,118,108,104,91,103,111,104,115,104,94,110,104,105,99,103,112,102,88,105,113,112,100,106,100,99,107,97,108,111,107,114,104,103,101,95,109,96,108,107,104,109,94,101,99,102,114,114,114,97,96,105,106,117,117,126,95,113,99,107,101,104,104,109,96,112,112,109,101,104,116,115,109,102,108,62,98,100,101,102,104,106,118,97,98,105,103,113,115,110,110,89,106,106,105,111,108,104,100,88,106,119,103,116,103,117,113,110,109,93,107,113,108,108,112,105,112,103,113,112,104,99,109,117,104,102,92,106,106,101,111,104,96,88,85,113,102,97,103,95,110,114,110,99,104,98,107,103,107,112,93,105,106,104,75,103,102,99,103,95,88,108,99,107,97,96,96,106,104,101,108,102,106,92,100,83,99,95,106,104,108,96,106,107,102,89,102,102,121,102,111,104,107,109,109,107,112,97,101,111,105,119,106,102,122,99,92,111,100,107,108,110,104,92,88,94,98,104,97,85,101,100,98,120,117,109,104,102,110,106,100,115,90,110,101,101,113,105,112,107,109,114,94,108,109,92,108,104,95,92,106,102,92,106,110,95,93,98,108,93,103,128,103,101,102,100,94,99,107,103,90,89,117,105,105,98,106,92,106,105,103,110,110,106,109,106,99,116,95,97,108,102,116,111,106,112,93,97,94,104,105,106,99,95,108,103,116,96,102,107,109,99,107,100,119,101,112,107,97,117,99,99,128,103,106,85,115,105,102,105,104,92,109,92,111,100,99,104,75,98,100,102,87,104,110,97,99,97,105,98,102,106,114,97,110,96,100,96,95,109,101,99,107,104,113,103,118,113,101,99,116,109,101,105,107,104,97,125,115,97,101,100,94,103,108,105,101,104,99,96,95,102,113,111,98,99,96,100,114,102,98,95,102,113,114,99,107,94,102,103,106,99,106,93,100,85,117,104,100,102,104,91,93,103,108,96,63,99,106,114,84,109,98,111,104,117,108,114,118,100,107,100,100,98,104,98,70,107,100,110,104,103,118,104,99,101,116,91,101,107,95,103,103,83,97,111,117,121,94,96,104,105,99,124,116,103,107,116,99,95,92,110,101,102,103,117,98,89,112,85,100,100,101,101,106,106,111,105,105,98,100,93,102,106,77,103,92,106,100,102,109,103,94,103,102,94,112,100,109,104,122,115,98,96,83,100,117,95,109,105,105,114,105,102,109,101,100,94,98,91,98,103,109,99,102,102,95,96,104,104,102,102,111,106,93,102,106,102,102,93,93,94,103,106,102,119,103,106,100,109,99,97,102,98,103,113,113,97,117,95,108,105,108,117,103,103,97,107,109,93,108,104,101,110,105,108,102,101,110,122,114,104,98,112,110,92,102,110,109,104,103,105,100,90,98,101,99,100,101,101,105,72,103,110,102,108,117,105,105,104,113,109,103,109,104,106,80,104,100,111,101,119,92,102,92,113,104,95,100,103,96,98,99,102,111,96,106,92,101,96,102,109,101,94,104,104,112,100,111,81,105,108,96,96,101,102,98,108,118,101,97,97,104,102,97,112,109,109,107,96,117,109,106,96,104,107,108,113,106,94,110,94,100,85,105,105,101,104,111,91,114,109,102,106,97,111,101,97,104,100,111,109,112,110,104,94,98,89,96,103,102,106,93,105,103,95,97,95,111,113,104,105,108,98,103,106,99,103,99,99,105,116,98,93,100,101,114,100,100,98,92,104,106,100,97,90,108,101,106,104,101,106,113,100,101,97,96,98,110,95,100,96,109,104,98,95,112,109,98,98,104,113,115,104,90,101,101,109,103,84,96,109,91,108,106,99,104,109,99,96,92,102,93,95,109,103,99,98,103,96,108,108,87,82,108,111,112,96,98,99,116,105,113,103,93,91,92,96,101,115,102,108,90,103,100,103,104,106,96,97,103,105,103,109,108,107,98,103,92,102,101,117,102,109,122,109,104,98,102,82,102,114,100,96,119,109,107,104,121,91,105,105,97,98,112,101,105,86,107,106,98,95,106,94,103,94,107,99,105,101,106,92,101,96,108,102,108,93,99,94,105,105,103,110,97,103,95,97,91,104,107,104,115,103,98,99,118,103,99,112,103,105,98,109,101,92,108,117,113,94,103,115,106,98,106,105,101,103,109,98,99,99,106,105,87,104,80,88,115,109,107,92,103,99,102,103,91,102,98,94,102,99,97,108,108,107,102,92,93,102,99,101,101,119,105,103,110,99,113,107,100,97,97,91,104,96,115,111,111,92,116,97,91,92,106,98,87,102,91,102,100,116,91,108,106,110,96,105,113,104,111,118,108,104,100,100,103,108,99,111,116,98,91,87,101,105,99,113,106,104,103,94,108,109,96,122,101,111,95,101,106,100,103,97,93,102,102,97,91,103,107,98,102,87,105,104,106,96,108,116,106,111,116,113,110,110,112,99,102,99,101,102,102,103,93,102,109,104,88,91,109,101,108,110,99,103,100,97,104,105,117,109,97,105,94,96,119,115,100,108,106,100,115,99,90,112,104,103,99,105,104,100,92,107,98,98,87,95,110,102,104,108,117,98,101,88,90,93,104,82,97,89,113,110,102,117,98,105,106,111,97,104,91,102,83,105,84,103,93,98,83,104,100,97,90,108,95,111,108,109,101,98,99,100,119,109,114,104,108,97,90,103,114,86,105,106,121,112,96,96,100,96,102,103,107,106,102,93,106,72,94,97,98,105,94,104,100,108,108,106,108,111,104,117,111,97,102,105,103,108,101,104,112,102,103,90,114,102,98,101,98,103,100,103,94,82,110,98,94,92,117,114,106,93,112,104,113,109,102,96,94,119,105,102,117,103,106,94,106,107,115,100,99,108,105,113,98,102,99,94,103,105,101,99,116,100,102,101,121,102,84,99,97,91,100,104,101,96,102,82,88,100,98,118,94,95,102,103,83,97,96,107,101,95,95,111,91,99,102,91,91,99,100,109,98,90,103,125,89,101,98,113,80,110,104,92,92,96,75,97, +530.28308,100,79,98,98,90,107,98,107,105,100,103,104,95,110,108,103,98,111,104,98,115,77,87,111,96,94,96,118,96,100,94,100,98,101,105,109,102,89,106,118,113,117,105,95,106,103,99,109,102,102,101,119,101,98,106,108,106,105,106,96,93,102,96,79,122,101,108,95,88,107,107,101,98,104,112,71,104,97,115,118,94,100,113,95,104,110,94,109,98,104,112,96,97,97,99,110,103,86,95,107,92,99,98,103,106,100,99,105,98,104,113,91,97,109,92,90,108,103,111,108,105,113,106,106,100,113,102,115,104,103,99,100,98,107,102,105,100,100,87,103,100,107,94,95,105,101,113,107,97,98,101,101,96,99,104,87,93,100,102,118,103,108,100,96,108,101,104,96,95,108,98,110,100,101,112,87,87,95,101,123,102,93,106,93,101,100,108,106,127,108,101,108,101,100,93,95,101,103,100,94,98,99,105,108,113,98,99,106,101,109,108,109,101,105,113,107,118,109,98,106,82,112,108,95,105,119,106,98,98,106,109,105,104,98,110,96,75,100,110,101,101,112,104,111,99,91,106,104,111,117,110,91,88,106,96,98,101,118,102,98,100,103,109,104,95,103,117,108,111,100,104,111,108,105,92,117,105,109,105,111,105,99,112,111,100,115,97,109,114,102,101,96,99,98,107,97,106,99,84,105,105,96,108,115,97,98,90,113,103,118,107,103,103,109,99,100,101,112,109,103,103,95,108,113,103,98,98,106,93,121,109,96,100,92,107,110,111,96,111,103,90,101,104,109,109,98,92,105,107,119,107,98,101,94,110,99,98,95,97,105,104,91,99,110,107,110,112,110,115,106,105,96,102,123,106,107,117,106,102,111,98,113,93,103,104,100,112,110,106,119,98,98,100,110,103,91,108,104,111,116,116,99,93,108,98,101,98,105,108,114,97,105,93,103,110,95,101,111,120,105,94,95,96,101,104,102,101,103,105,103,92,105,100,95,95,112,100,108,108,114,113,101,104,108,98,91,111,91,106,108,110,93,111,108,106,98,97,105,110,96,97,108,104,113,107,110,91,116,98,109,111,106,99,83,94,100,105,103,109,99,103,105,107,99,112,103,104,111,112,108,114,113,99,101,115,92,111,98,116,99,111,104,122,103,108,103,104,99,100,117,107,117,102,107,91,98,99,91,105,98,96,101,107,88,80,108,105,112,98,101,101,100,110,99,97,105,99,103,98,107,108,102,114,95,108,107,103,82,99,101,111,113,110,112,102,101,105,98,99,103,103,101,104,111,103,108,105,108,97,101,100,104,102,108,101,109,106,116,94,97,104,107,109,103,103,99,110,110,106,102,112,111,99,100,105,118,109,118,107,105,101,93,109,105,95,95,102,99,101,104,102,93,115,100,110,92,98,110,107,98,105,118,104,92,98,106,97,82,99,122,97,101,103,119,99,104,101,109,105,109,112,111,105,96,96,108,122,102,102,104,103,108,106,123,109,106,101,99,115,99,112,108,100,112,95,104,123,114,109,101,113,109,102,114,107,99,100,110,109,109,117,112,114,105,104,94,113,103,104,99,99,101,103,117,100,107,103,105,110,118,114,97,95,110,109,111,108,96,110,111,107,103,85,83,109,104,96,103,92,104,102,107,125,118,106,95,109,108,112,104,101,107,98,100,97,98,113,108,86,101,109,103,120,99,109,107,104,102,87,103,115,94,111,100,96,95,99,83,114,113,109,87,92,110,90,120,103,100,98,99,111,92,104,90,104,111,108,99,103,101,100,103,113,109,86,107,117,108,99,104,108,103,112,103,115,122,98,112,107,91,86,108,114,109,121,97,90,95,99,101,107,101,95,102,99,112,112,105,105,114,108,121,124,113,96,104,94,106,121,109,110,115,110,99,112,99,111,101,105,95,98,109,115,115,99,102,104,88,94,107,100,104,105,111,103,102,107,112,88,112,103,105,113,99,96,91,98,99,102,112,99,108,92,117,90,92,105,115,96,110,83,106,103,98,108,103,107,119,103,99,108,111,100,114,124,99,114,105,110,107,96,121,106,91,78,102,94,116,93,108,108,106,113,101,103,111,100,106,100,95,84,110,109,98,102,84,106,104,110,94,103,104,103,113,94,97,108,95,101,96,105,115,99,105,98,100,109,116,95,110,108,107,107,100,97,99,116,126,88,108,116,109,102,93,98,99,96,109,94,101,120,103,104,119,90,108,108,87,99,117,91,94,116,88,99,102,99,103,113,103,98,115,107,100,97,107,100,109,98,105,85,107,96,110,101,94,101,100,100,118,102,101,104,101,103,117,103,99,104,125,112,105,110,96,92,95,100,116,102,106,107,103,118,116,94,95,109,102,103,95,113,110,92,108,101,104,103,91,103,104,105,106,102,106,103,100,125,103,94,107,98,94,110,106,113,92,109,106,103,109,91,107,105,99,132,95,102,112,97,97,85,103,105,103,100,103,94,95,83,105,98,94,117,104,96,110,91,109,100,113,113,93,98,119,100,102,101,106,112,105,102,110,108,103,101,98,94,103,107,105,109,112,104,102,114,106,92,105,111,98,111,126,110,95,68,103,95,117,102,113,109,101,112,112,96,113,112,110,100,109,104,98,120,107,105,100,117,95,100,98,111,105,99,93,114,109,101,109,107,103,118,101,110,104,105,95,106,139,108,100,108,104,109,104,108,88,116,103,108,103,108,95,91,103,91,106,99,105,99,93,112,108,121,101,101,117,108,106,109,104,98,107,106,104,133,103,102,113,109,109,110,106,104,117,105,105,97,110,108,75,91,98,98,107,113,106,119,100,99,106,124,104,114,114,109,116,98,104,101,106,98,100,104,98,105,107,112,102,103,109,103,93,105,114,106,103,111,94,108,100,93,110,106,104,122,96,105,105,95,108,106,99,94,111,94,102,112,105,103,102,110,108,92,113,111,102,101,92,117,109,98,112,99,107,108,120,109,117,75,96,104,91,104,92,113,107,110,101,110,100,112,104,124,106,110,103,112,103,94,101,116,103,109,116,111,105,109,108,125,105,96,105,101,109,110,104,102,105,120,97,102,103,89,105,112,101,92,118,104,104,108,105,121,95,106,112,117,96,100,114,99,117,111,102,116,98,99,126,106,103,106,87,112,110,98,98,101,102,107,113,87,91,105,112,104,109,108,103,111,113,103,106,101,96,99,89,107,108,107,99,102,104,99,91,100,100,97,92,105,108,119,105,101,99,106,96,114,111,116,122,98,117,109,116,105,105,109,112,102,104,109,109,108,124,113,86,98,98,122,102,116,103,87,108,104,112,117,102,108,105,108,94,109,101,101,116,90,117,109,121,98,121,109,99,93,113,105,105,108,105,100,102,100,108,105,109,101,100,101,103,119,96,109,113,104,105,101,117,110,102,103,100,109,97,101,103,110,95,108,104,106,109,109,87,91,113,95,125,116,97,94,98,97,99,95,106,105,94,116,100,100,100,103,96,117,106,108,91,110,113,99,102,101,101,103,111,101,103,108,104,110,111,115,107,104,103,103,103,108,116,99,103,106,106,105,115,100,96,106,107,118,101,100,105,110,119,103,94,105,109,113,109,100,104,99,108,106,113,106,104,102,108,107,114,99,100,99,108,114,107,100,101,117,109,96,109,103,98,101,107,94,101,100,108,95,105,113,103,97,102,94,101,110,106,103,98,105,109,111,107,122,104,109,118,107,103,119,108,75,73,109,105,93,99,99,117,116,98,104,104,117,101,95,105,113,104,113,98,109,109,93,97,118,102,108,117,104,98,108,129,99,106,105,105,108,116,105,95,97,113,133,117,106,104,111,120,105,101,100,110,84,109,106,108,115,106,106,123,107,94,103,107,110,113,108,110,113,113,106,107,118,105,96,104,109,107,111,105,106,108,98,96,114,107,116,101,113,100,102,94,103,102,124,104,105,109,94,112,107,105,101,109,96,104,110,106,107,109,105,103,116,101,101,110,106,107,114,106,94,103,115,110,109,87,101,120,88,72,109,96,116,103,92,113,108,101,115,104,120,102,115,123,108,104,111,108,98,105,116,104,110,104,96,102,91,106,102,111,109,90,98,116,106,95,109,104,92,104,101,108,102,111,106,106,102,108,103,103,102,95,100,102,89,69,122,98,97,89,106,113,102,120,96,105,96,108,102,121,100,115,107,117,100,107,96,105,100,116,98,104,110,103,98,108,92,104,122,90,104,105,106,101,98,98,105,106,98,111,98,97,103,126,97,103,102,93,100,107,103,97,104,109,97,102,99,104,98,113,98,113,111,100,96,98,105,112,107,110,101,106,108,106,111,145,108,116,106,102,105,109,123,104,105,132,105,99,124,103,87,126,100,110,112,109,114,107,110,105,101,113,91,105,98,110,107,97,91,106,110,105,97,98,105,103,98,107,103,93,104,85,106,88,112,106,105,96,91,107,95,112,112,118,92,98,102,90,102,96,108,113,99,109,116,100,93,105,94,107,105,107,108,104,96,104,116,109,105,103,79,111,98,102,91,101,92,110,96,96,110,99,120,96,96,94,109,100,102,110,114,92,76,112,107,113,109,126,107,105,100,93,99,82,104,113,95,94,121,108,100,108,105,101,94,115,101,124,98,116,112,108,106,89,101,104,98,102,101,102,102,122,100,112,110,84,78,96,115,101,109,85,124,93,108,103,114,100,104,110,113,104,104,98,99,101,96,101,99,114,117,98,88,97,96,107,110,110,108,110,102,121,103,101,110,101,102,106,107,100,115,106,108,104,107,102,127,99,104,108,91,113,120,102,102,101,116,98,103,98,103,106,114,98,104,107,104,99,89,102,106,100,94,105,96,108,102,107,95,100,101,94,102,101,99,97,95,104,91,107,112,97,116,102,101,106,102,94,106,103,98,100, +530.42383,90,91,94,91,102,98,88,105,71,107,113,96,98,90,107,91,102,123,99,102,115,104,115,104,91,111,99,106,96,103,107,108,97,112,114,109,107,107,121,102,112,94,94,107,106,98,125,115,108,100,98,100,96,108,106,105,114,102,108,104,102,103,94,93,112,117,94,99,101,109,104,103,106,122,100,118,105,98,108,103,95,114,110,109,102,75,109,101,109,96,101,103,103,98,106,105,109,98,112,95,95,99,104,109,110,108,116,97,112,97,100,101,108,106,98,116,104,106,114,119,85,108,99,120,92,105,105,96,99,109,109,98,107,113,99,108,85,110,109,109,100,115,102,108,98,100,119,106,109,108,106,106,102,100,116,100,105,110,96,105,102,106,102,104,109,106,95,114,99,93,105,113,108,102,119,104,104,105,101,107,93,110,101,111,102,96,103,90,110,107,106,83,107,108,100,103,87,104,106,102,96,109,98,110,104,107,114,105,110,102,109,106,107,100,112,107,104,106,109,103,98,114,113,92,84,98,100,119,99,118,91,106,109,110,99,94,104,101,104,111,107,117,94,111,108,98,105,112,95,102,106,112,107,109,117,111,85,123,104,109,91,103,116,103,91,113,112,110,110,104,97,97,108,99,103,114,99,108,101,110,97,112,94,108,102,114,98,99,97,103,100,111,112,100,110,110,100,78,105,106,101,100,114,110,104,105,103,101,104,105,101,109,110,99,102,104,90,116,108,117,111,97,101,102,109,103,113,104,116,99,123,116,104,90,115,118,107,122,110,109,101,108,112,108,100,104,117,105,112,107,103,120,111,96,110,117,106,114,113,89,108,121,117,104,95,102,103,115,121,109,112,113,109,110,105,102,111,100,98,112,105,120,113,115,118,93,89,95,106,118,116,99,96,111,100,113,108,103,112,125,110,99,100,104,95,106,112,102,107,110,91,108,114,107,103,100,116,114,107,90,97,110,103,85,100,108,111,95,100,109,99,100,99,97,102,99,105,110,113,101,98,107,104,102,108,105,132,111,110,106,107,97,109,115,99,97,102,103,111,104,99,104,108,106,109,121,105,103,108,96,116,111,103,106,111,107,104,116,96,109,96,102,114,117,101,106,120,103,117,108,109,99,107,73,108,108,109,116,112,110,113,100,105,102,104,94,100,97,108,111,110,117,89,104,106,108,102,111,90,118,98,107,109,107,109,107,106,109,106,101,95,118,116,103,108,104,109,102,110,105,107,114,109,107,116,113,116,104,119,71,105,109,103,94,112,103,118,108,109,115,108,94,107,114,107,104,102,107,108,102,112,98,113,105,104,102,118,105,110,98,102,117,114,108,100,103,111,110,124,105,120,102,112,118,111,110,103,97,101,119,109,124,117,107,114,100,101,109,103,110,108,100,115,111,107,84,113,99,111,106,108,110,86,100,103,112,99,103,106,103,97,117,109,110,97,113,114,91,109,104,99,106,100,109,113,96,102,101,110,122,113,111,110,118,104,103,111,110,112,108,112,102,109,111,111,111,115,118,98,99,112,103,113,124,91,109,111,103,117,96,106,112,98,90,96,104,101,104,104,95,107,108,98,111,113,103,103,100,97,97,105,93,109,112,120,117,104,107,105,106,107,113,100,116,99,105,107,110,109,110,106,105,113,104,110,110,108,93,113,118,98,110,100,99,106,108,103,103,109,108,98,104,105,108,104,102,103,111,113,116,109,107,96,111,105,113,114,113,118,101,100,105,99,99,99,108,91,103,114,103,117,98,100,102,107,110,111,103,108,109,99,102,99,120,118,126,106,114,113,108,107,97,103,111,104,106,100,116,105,100,118,97,114,108,106,111,99,101,103,108,114,96,106,124,105,105,110,113,101,106,107,104,103,109,103,108,107,111,102,97,113,101,102,105,100,111,120,109,99,124,100,103,108,94,106,102,118,99,93,107,107,105,110,105,110,100,108,93,104,73,107,105,103,115,109,109,110,100,113,110,101,110,97,106,98,107,107,112,108,111,111,110,104,107,107,108,108,113,102,119,113,99,107,118,113,108,108,121,107,111,113,109,116,96,113,110,112,109,105,113,118,108,113,108,99,122,103,92,107,117,107,112,111,114,118,103,105,101,101,111,104,115,112,108,105,107,103,100,106,108,100,110,103,113,100,104,118,114,95,101,111,112,100,111,98,106,112,107,106,99,114,109,97,108,111,113,100,109,86,115,103,108,96,102,106,109,105,107,100,109,105,105,99,115,111,106,101,102,110,107,106,100,108,108,103,100,99,108,110,117,106,106,94,98,106,106,103,97,99,118,100,106,103,100,97,114,116,99,99,102,125,112,114,101,103,121,119,124,116,103,107,114,115,98,114,90,113,105,110,97,108,113,107,99,108,103,95,109,129,118,105,109,99,106,117,103,110,104,94,104,100,110,103,104,102,103,101,102,103,103,103,116,91,105,117,99,99,117,113,106,95,116,108,121,108,100,92,100,103,105,98,109,100,95,101,102,108,77,110,102,114,102,105,91,98,104,116,114,94,100,108,114,97,96,102,87,101,101,110,83,68,110,114,108,119,104,112,102,116,100,107,100,108,104,96,111,103,96,89,101,101,101,91,104,105,101,104,104,108,98,95,100,110,115,104,100,96,111,90,106,104,101,107,103,111,99,109,104,107,113,109,97,105,105,105,106,99,107,120,112,107,106,98,116,110,113,106,106,105,108,91,109,109,96,91,111,103,105,110,107,106,108,100,108,104,123,100,108,106,100,108,108,107,110,115,103,83,113,110,99,100,102,106,91,92,102,107,103,107,108,109,107,109,87,99,100,118,88,107,112,112,112,99,107,102,120,112,99,104,116,112,97,105,103,104,100,114,106,104,104,106,106,103,107,112,107,104,98,110,103,110,109,112,120,103,112,110,111,94,103,108,100,106,104,118,94,101,94,103,116,95,114,96,102,116,104,104,107,117,107,119,113,98,107,106,136,117,109,110,104,103,106,97,96,104,114,108,112,109,102,101,97,108,113,109,112,124,111,110,91,101,102,114,118,118,95,112,107,102,104,90,104,110,111,103,119,117,75,102,99,113,109,84,107,95,112,103,106,105,122,116,112,116,105,101,104,107,97,112,115,101,113,104,114,108,96,103,105,112,105,105,98,115,108,93,116,99,117,105,97,98,103,94,112,82,106,114,102,139,111,109,101,95,117,100,96,122,107,108,107,104,98,105,105,95,101,102,103,103,111,104,106,83,100,107,119,111,110,102,106,99,106,106,110,105,106,100,99,92,112,101,102,109,101,99,94,94,111,99,107,104,90,113,114,94,112,109,112,111,105,99,96,104,107,99,107,93,71,98,105,102,113,99,86,100,95,100,117,105,105,96,102,99,104,111,107,100,101,126,100,116,106,107,104,102,82,100,113,114,99,90,99,102,100,99,101,102,105,106,107,95,99,109,100,111,100,112,107,96,108,101,103,110,122,90,101,104,97,102,106,116,112,113,114,89,108,104,102,100,118,105,103,95,87,113,107,103,105,99,91,102,104,103,116,105,96,109,108,131,115,111,108,108,104,100,100,105,91,96,99,84,106,95,98,100,103,98,98,110,107,98,108,101,101,99,112,110,104,106,110,102,103,110,105,105,101,124,96,109,89,92,102,106,100,110,102,115,103,105,98,107,106,106,113,103,108,96,109,102,98,105,101,96,106,103,95,104,99,98,103,109,114,114,103,101,100,78,108,110,99,106,118,90,105,103,111,106,102,93,103,99,106,110,94,113,110,108,104,104,103,108,93,112,102,95,94,109,99,112,117,110,105,110,114,114,110,108,106,105,101,100,109,114,104,104,102,106,98,101,101,108,109,106,111,103,115,125,122,99,104,95,92,104,107,103,106,112,103,112,106,99,115,97,99,91,102,100,97,110,111,114,91,106,97,117,108,98,98,98,110,107,103,103,86,98,108,102,107,105,89,102,112,85,123,110,111,103,124,102,101,108,108,98,95,117,95,101,100,109,113,98,109,108,114,123,103,95,111,99,103,105,109,103,125,111,106,113,87,102,111,108,108,95,107,113,109,89,99,105,107,104,91,116,104,101,112,108,102,116,103,102,98,108,120,102,107,119,116,100,112,107,103,102,100,111,103,111,107,104,114,103,94,100,112,100,120,103,111,110,94,118,98,90,87,107,98,113,100,105,109,105,106,102,96,112,116,106,100,111,114,106,107,100,103,102,99,108,96,104,102,113,106,113,100,90,100,100,104,105,114,102,116,110,109,96,87,100,84,104,99,103,108,99,97,105,97,103,109,79,102,100,107,107,102,99,103,106,109,108,106,103,100,107,104,114,99,96,102,111,102,104,103,110,81,113,111,104,78,111,126,102,117,106,104,115,112,119,108,102,97,119,87,95,107,103,104,113,108,106,98,102,94,96,107,99,109,105,101,102,105,113,85,94,113,97,102,95,100,109,105,105,100,105,110,98,86,137,102,109,112,97,106,91,102,109,97,98,106,114,106,106,108,117,96,102,110,107,102,93,100,106,88,105,106,113,112,102,114,106,100,100,103,114,98,101,93,99,106,98,90,99,110,104,101,103,121,110,104,101,101,102,99,107,104,119,119,110,95,104,98,110,112,101,106,104,107,93,108,96,106,113,99,104,91,102,107,116,104,99,103,98,93,96,104,97,99,107,100,114,97,100,98,91,108,94,90,103,115,106,104,113,107,109,102,98,95,103,99,94,100,100,103,109,107,121,108,118,110,102,115,98,93,92,92,103,103,103,100,105,91,102,104,98,105,112,92,103,91,115,106,103,117,104,104,101,100,90,112,102,96,117,91,109,105,100,94,92,115,95,78,101,99,94,115,92,96,96,100,104,108,104,95,113,95,130,115,116,106,99,116,99,100,100,104,100,100,95,96,106,98, +530.56458,106,104,86,101,94,100,114,104,92,102,104,107,95,102,106,105,94,100,106,98,108,100,105,116,102,103,106,106,101,103,103,101,107,104,109,104,111,111,113,110,105,96,109,112,111,104,100,109,110,106,101,105,96,113,95,102,106,100,110,97,104,103,109,90,86,112,95,113,105,108,104,112,118,103,99,107,110,100,105,93,110,83,93,105,94,107,87,95,91,78,99,102,96,111,103,95,104,106,104,108,102,108,102,105,109,95,112,104,106,98,101,103,104,104,109,110,103,103,107,98,99,109,115,97,113,108,107,100,106,97,116,99,110,104,115,105,113,103,101,104,105,100,110,100,108,100,105,104,100,98,105,92,122,108,105,120,99,105,106,105,100,99,93,111,110,108,106,101,111,111,99,117,103,95,110,103,91,112,104,117,98,101,103,111,104,102,114,91,89,94,100,106,108,111,115,100,87,119,121,114,102,105,121,105,88,110,107,115,100,100,98,101,111,105,105,103,103,113,103,91,98,117,102,91,96,101,111,106,91,98,123,99,110,98,117,105,123,106,106,111,112,111,97,105,111,119,103,110,104,128,114,104,98,111,106,126,93,115,94,90,90,104,109,114,105,100,108,109,112,117,102,112,115,100,94,108,107,109,100,116,108,120,105,108,109,106,99,115,115,103,101,110,112,106,81,100,102,111,89,104,100,113,105,109,105,117,107,104,108,103,125,104,103,91,108,105,101,99,112,113,108,97,110,117,116,103,113,98,108,109,95,99,106,101,109,111,104,102,104,69,103,89,107,100,105,94,110,108,100,92,100,103,95,110,110,92,90,103,103,113,103,119,100,106,105,94,106,105,104,103,116,113,103,109,105,95,103,110,110,112,98,103,107,105,105,109,90,111,106,109,106,95,105,111,104,100,97,103,100,113,109,113,108,105,103,100,107,104,106,99,95,105,101,104,107,107,113,99,115,101,107,103,110,111,107,94,99,97,101,113,102,108,102,92,100,110,98,103,95,106,105,101,97,99,114,116,105,144,117,114,105,120,111,106,101,105,105,108,103,133,108,105,107,104,116,105,103,102,98,97,103,107,101,111,101,114,104,105,108,100,108,116,107,109,91,108,109,113,115,93,115,107,105,116,103,101,93,106,109,95,113,97,95,111,101,111,95,80,109,101,107,109,107,100,116,106,99,101,92,98,110,99,105,102,101,102,108,106,101,101,108,91,126,104,99,101,105,107,102,108,103,110,101,105,111,109,96,106,97,104,100,104,97,117,110,99,99,106,96,116,91,104,114,108,112,123,89,102,120,108,99,109,103,114,111,112,110,117,98,101,113,100,104,107,106,93,119,106,110,109,110,116,111,119,116,106,107,103,115,136,101,95,121,100,95,124,107,112,99,110,110,103,96,126,101,101,105,111,101,102,104,111,105,99,107,102,99,103,104,107,107,99,120,113,97,98,109,112,104,108,98,105,116,106,86,107,99,101,94,103,101,90,114,120,101,109,103,104,108,107,93,105,105,99,100,110,109,99,100,100,115,99,97,118,107,116,102,113,128,105,109,125,113,100,95,90,109,104,111,113,109,108,104,121,102,112,100,109,105,105,101,96,108,90,125,107,111,113,103,107,100,104,120,99,96,118,110,104,94,97,103,105,105,99,106,95,112,107,114,115,104,101,102,94,105,110,104,107,113,100,92,103,103,112,97,107,105,106,116,103,112,97,108,105,114,104,99,107,118,99,105,109,110,103,99,104,113,102,106,100,100,101,115,106,121,104,102,100,108,116,106,88,117,117,114,119,112,118,104,94,106,113,107,84,100,98,110,113,109,104,106,98,105,111,121,97,109,109,112,105,116,97,107,102,112,98,109,111,113,98,98,97,113,108,102,121,111,99,109,96,103,101,114,116,109,101,108,96,111,116,110,103,105,105,108,102,97,101,102,96,106,105,109,108,125,83,104,113,109,107,105,116,103,97,102,108,98,111,107,107,112,105,98,111,98,98,111,117,111,105,113,98,108,103,110,103,92,104,100,109,106,117,114,98,121,95,107,103,114,120,98,112,115,115,103,94,98,93,111,107,93,94,112,112,113,96,94,103,102,88,109,102,107,114,99,110,107,106,109,111,100,102,107,108,95,96,102,95,123,99,96,125,105,109,98,115,112,102,105,117,102,97,113,122,104,100,107,101,105,86,109,103,118,97,113,105,98,116,110,104,98,105,103,103,106,106,98,101,116,95,104,111,103,121,108,106,100,103,93,105,106,100,113,113,99,112,106,108,102,112,92,111,123,102,113,94,95,114,98,102,98,108,114,97,105,100,104,120,106,113,110,109,102,94,106,109,110,109,94,109,108,80,115,105,118,87,107,118,116,101,100,97,109,86,117,106,92,112,108,109,112,105,109,94,85,98,104,104,106,105,98,110,99,113,105,98,104,106,101,100,105,112,104,113,111,109,95,106,108,101,94,109,73,104,110,111,97,100,117,104,79,109,110,95,94,102,110,96,106,110,112,95,109,102,105,103,95,113,115,111,102,103,111,108,110,106,94,109,105,100,101,107,102,107,118,110,102,112,106,109,112,109,103,100,106,112,111,90,102,109,113,60,99,118,102,104,108,106,120,101,110,95,108,105,101,109,109,107,114,97,109,101,111,99,96,113,100,104,109,108,108,104,110,99,109,104,91,91,103,101,107,99,100,94,113,108,103,100,99,105,98,96,100,105,99,102,105,100,107,99,104,103,116,100,112,110,99,99,124,105,90,101,98,110,94,108,103,121,112,104,110,83,113,98,119,112,100,122,103,114,104,113,99,101,108,84,110,106,101,121,112,106,103,100,104,96,95,107,108,106,107,98,117,97,103,104,106,103,104,109,109,96,108,115,110,100,101,109,102,99,108,103,102,117,108,117,97,97,104,107,107,108,98,93,102,109,104,116,112,103,96,111,100,98,106,102,101,97,117,105,101,106,104,108,95,112,113,120,94,113,94,95,106,104,104,136,114,97,103,109,106,102,103,99,100,108,106,104,110,106,111,105,92,115,109,108,101,102,110,111,98,100,96,101,106,111,103,96,112,115,106,107,98,109,99,108,106,95,94,98,107,112,97,115,111,100,100,102,103,100,93,105,109,114,104,102,100,111,106,92,103,111,110,102,103,103,104,98,111,108,102,104,107,99,115,124,103,97,97,105,103,95,104,108,99,106,97,94,125,100,106,113,100,87,109,101,107,112,96,118,102,111,103,92,107,101,100,98,112,100,97,113,101,115,105,111,104,110,99,101,97,108,110,92,104,97,106,109,103,101,110,105,103,117,102,99,113,110,102,101,110,102,92,119,99,102,101,102,105,112,106,105,115,115,127,108,109,101,103,104,118,107,105,114,113,112,100,121,112,97,113,101,105,106,102,113,88,121,111,105,97,109,108,112,99,115,110,104,107,94,106,108,112,102,107,109,112,96,100,96,99,110,103,109,104,114,104,114,114,109,120,110,107,97,104,121,103,96,106,97,120,103,107,111,108,127,99,105,107,98,80,105,102,105,103,115,111,113,90,107,115,124,99,113,111,101,87,113,126,119,100,66,113,100,98,113,104,105,101,104,105,112,98,98,104,103,106,105,99,113,90,106,90,108,104,86,104,99,115,101,103,120,106,86,101,93,115,107,104,112,101,103,102,106,112,97,102,105,103,102,106,103,102,110,100,109,103,105,108,96,122,98,108,112,109,108,108,103,106,91,96,109,107,97,92,97,96,98,106,102,113,96,108,100,105,117,102,98,120,113,103,116,123,103,103,105,95,87,122,106,104,110,92,105,106,108,97,108,107,104,104,98,106,113,101,92,108,100,109,102,97,109,103,106,102,99,117,102,97,94,96,108,106,109,106,106,110,97,114,100,104,101,109,99,108,97,104,104,106,110,110,94,106,99,102,107,109,91,109,110,101,105,103,113,101,107,106,103,112,107,101,112,83,106,99,113,101,101,93,105,88,100,107,100,101,105,122,103,94,101,104,99,96,102,111,95,105,100,113,101,115,99,125,79,100,100,116,113,123,107,117,105,102,102,114,95,106,100,99,95,106,94,101,98,103,105,106,86,104,100,98,100,99,100,100,107,112,105,100,102,103,108,111,107,113,98,112,108,107,106,95,102,102,109,108,95,104,114,106,112,110,97,113,97,113,110,124,110,94,108,115,117,109,116,102,112,102,137,113,115,115,107,112,98,106,94,113,106,99,120,109,105,105,117,105,106,89,109,117,104,113,96,108,105,116,100,101,101,113,104,102,108,115,113,111,102,90,113,112,112,101,106,101,103,100,91,98,102,104,110,110,103,116,116,103,104,105,94,109,74,117,114,103,93,105,93,104,115,117,107,110,111,104,111,100,105,79,116,104,100,103,112,106,99,104,95,112,106,103,97,107,94,120,100,110,108,92,99,110,91,111,93,110,106,84,101,83,94,104,107,111,96,106,98,109,120,111,110,106,104,105,104,103,110,103,104,106,108,97,105,92,98,98,99,99,116,101,99,98,112,91,94,91,111,114,106,109,112,111,92,108,112,113,106,113,101,95,104,111,89,104,94,123,104,97,107,105,104,109,95,115,93,102,108,95,108,110,102,105,119,101,116,109,117,103,93,99,104,104,96,110,102,104,110,103,93,120,102,107,104,101,98,99,116,104,110,94,96,104,95,103,110,106,116,93,98,107,103,113,91,102,95,120,100,109,119,111,99,98,87,97,99,102,93,102,102,110,102,98,105,111,104,98,116,102,106,104,109,94,106,119,102,123,103,102,89,102,106,108,104,91,109,99,108,104,83,105,110,116,114,115,103,102,108,114,100,107,99,87,102,106,103,117,110,103,113,111,101,108,97,99,97,103,108,88,99,102,109,110,92,103,110,104,98,102,102,95,100,103,135, +530.70532,100,99,115,101,104,107,107,108,94,109,107,107,100,101,104,96,96,113,100,104,101,104,107,113,94,105,109,117,114,106,101,105,100,101,118,100,100,91,140,102,108,105,115,131,126,121,100,95,103,104,102,93,99,102,97,101,108,105,109,97,111,97,109,112,100,116,99,103,100,106,102,108,99,99,101,108,82,115,107,103,107,114,94,107,102,109,99,92,98,104,94,105,104,102,107,110,100,105,103,107,97,95,106,89,98,106,105,108,101,106,110,94,110,110,101,89,104,104,99,106,113,106,92,104,113,105,108,110,111,102,107,105,111,105,102,105,115,105,91,98,103,114,102,103,110,84,111,99,101,105,109,98,110,106,95,104,104,104,108,109,100,113,100,104,103,107,96,103,113,103,98,105,91,105,107,100,116,102,109,105,100,94,103,108,116,70,108,94,102,108,104,95,110,108,105,104,111,112,109,116,109,105,104,101,114,106,108,110,117,122,102,108,111,99,100,110,96,109,107,106,98,101,107,109,100,108,102,103,110,107,114,101,107,107,104,109,106,105,111,104,98,112,100,112,110,120,98,103,115,108,101,96,110,97,103,96,98,104,107,111,100,107,101,95,96,103,117,108,101,110,113,107,93,110,113,102,107,107,106,112,117,100,99,101,103,109,117,104,111,106,117,88,96,112,110,107,102,91,112,107,106,106,114,111,91,120,104,82,108,113,101,125,111,108,109,106,112,96,108,99,110,106,96,109,105,110,100,102,118,115,91,114,102,102,111,110,104,104,97,103,92,102,103,92,118,109,94,109,108,143,102,105,104,105,107,113,109,104,112,95,107,103,108,104,104,100,100,110,99,108,110,103,104,100,113,103,112,106,101,107,102,110,116,119,103,91,104,92,115,106,104,106,101,100,103,95,100,110,105,118,94,112,122,112,108,100,117,118,110,90,104,103,108,101,111,96,109,103,108,114,103,103,99,105,109,102,108,102,91,117,104,104,99,115,94,105,98,113,96,102,98,98,97,98,103,128,92,110,107,103,111,100,102,103,102,106,104,120,99,121,113,105,105,98,104,103,106,98,109,105,92,107,110,102,113,101,102,110,83,102,112,117,107,104,98,102,114,115,109,136,108,120,106,120,99,109,103,115,104,105,105,102,104,106,112,105,99,111,115,103,110,109,108,110,97,95,95,108,102,113,103,108,102,101,108,108,102,93,105,98,99,116,107,104,98,99,93,97,117,110,110,117,101,105,103,110,108,105,104,102,107,111,108,101,101,103,109,109,112,112,96,112,95,116,103,92,99,105,110,97,98,107,107,114,107,83,109,111,95,129,109,103,98,114,106,105,105,102,102,109,111,113,101,110,109,91,106,101,128,99,106,106,107,107,98,97,109,131,116,104,105,98,108,120,106,121,111,104,102,109,99,103,108,112,113,86,104,112,103,108,95,112,103,106,84,108,109,108,96,113,106,111,107,104,102,101,105,104,105,105,95,109,109,112,104,117,103,93,116,110,97,114,106,110,99,108,122,94,114,112,110,108,116,118,102,102,97,102,112,108,108,109,114,105,102,97,106,112,108,118,104,102,98,107,102,106,105,121,109,105,101,99,102,104,101,110,103,106,109,99,116,97,102,107,114,109,112,117,105,110,106,104,107,111,103,103,101,101,97,117,119,107,96,98,99,95,96,99,108,117,110,104,99,114,115,103,107,108,98,101,113,105,103,106,103,120,95,106,116,98,106,113,101,97,99,108,95,102,97,98,103,103,116,98,104,101,108,111,107,96,88,108,103,109,114,107,113,102,106,114,105,100,106,107,111,85,109,88,107,104,108,121,105,98,118,107,94,108,110,105,120,96,107,96,105,94,116,113,107,105,109,103,111,112,108,107,112,103,73,104,104,109,95,102,106,111,113,112,106,105,93,103,107,111,108,102,98,94,112,96,120,102,96,117,115,104,106,114,110,106,99,100,118,122,115,106,79,107,111,99,110,122,107,111,106,113,109,103,109,108,112,101,104,113,117,100,79,119,118,115,106,111,102,117,115,93,100,103,102,97,105,101,108,91,103,101,106,100,94,112,112,96,111,113,79,113,97,98,108,107,113,108,116,90,92,100,105,103,107,96,91,107,100,88,98,111,102,106,104,106,102,94,108,95,85,107,104,102,111,106,111,107,106,104,112,117,109,120,105,102,95,105,106,106,105,108,118,105,121,114,109,99,109,106,101,101,110,103,101,109,100,106,104,110,119,111,110,91,114,104,108,99,123,102,98,105,79,112,107,106,93,104,103,103,113,108,114,91,101,97,105,117,100,102,109,107,101,96,107,99,117,117,98,96,102,101,109,115,107,113,109,103,116,109,117,83,100,110,106,91,103,103,101,99,115,103,111,106,106,100,108,108,89,120,106,101,110,103,101,110,102,104,119,99,105,102,96,85,114,120,92,113,104,112,110,103,113,105,105,116,106,111,109,100,106,113,104,91,121,100,98,110,102,103,103,107,111,101,94,105,123,100,99,107,102,102,118,111,107,104,99,113,102,110,104,94,104,117,98,106,84,98,111,105,108,97,106,100,109,106,95,107,96,106,108,106,99,118,97,105,70,113,96,117,109,104,99,109,105,98,119,105,110,103,107,102,90,108,102,105,105,91,102,110,106,107,108,95,117,108,113,113,117,104,103,93,103,102,105,100,101,110,110,119,116,115,114,97,102,100,104,107,111,103,108,98,120,108,95,111,100,105,102,118,110,109,108,100,108,105,87,104,113,113,112,110,109,110,122,104,96,127,105,117,117,91,104,114,106,97,107,109,110,104,123,109,112,103,105,108,105,117,108,96,107,108,120,119,115,105,105,106,109,99,102,102,102,104,109,116,109,119,104,113,98,113,111,111,106,120,110,106,89,94,102,106,115,98,103,113,112,106,112,108,104,110,103,100,110,105,115,110,108,100,97,106,106,105,120,109,105,114,102,102,117,105,112,97,112,113,100,108,100,102,103,106,97,110,102,115,114,101,102,101,104,108,108,107,100,113,111,93,98,101,117,104,101,104,109,101,109,114,109,106,122,105,111,113,102,107,109,110,107,104,110,95,100,96,114,104,94,117,112,94,107,94,101,113,117,113,104,92,122,111,100,96,91,110,105,100,101,95,111,102,109,102,99,96,113,102,105,101,107,105,100,113,103,103,95,98,109,113,102,119,108,108,109,114,104,103,105,109,107,106,103,98,109,111,111,117,94,112,105,104,97,113,107,95,106,101,103,100,105,110,96,102,92,119,104,105,97,105,107,111,105,102,105,108,102,111,139,117,112,98,110,100,114,105,106,96,130,102,116,116,111,95,95,109,112,98,98,109,99,110,105,109,116,100,92,85,107,111,103,107,108,108,106,124,109,104,112,98,105,123,107,102,112,99,106,119,104,109,98,96,110,106,109,94,103,107,94,113,114,117,103,104,104,107,107,114,102,109,106,113,105,96,101,106,103,104,118,102,112,108,107,121,114,109,108,98,111,112,99,109,116,110,104,121,102,96,114,100,100,113,102,109,109,115,100,105,99,96,111,112,102,100,109,116,98,117,98,104,102,98,109,118,105,106,107,115,107,103,103,108,108,103,117,109,103,122,124,103,111,109,117,99,106,101,106,101,113,107,104,110,109,99,91,97,110,108,99,98,110,112,106,95,102,107,101,92,99,108,103,102,107,113,110,107,103,113,96,106,102,79,102,100,112,110,106,104,110,106,98,106,121,112,112,105,93,104,112,106,97,107,100,99,100,112,101,101,98,112,100,105,95,107,101,102,118,100,93,107,101,104,102,111,109,123,102,108,104,101,105,105,105,107,91,110,100,110,98,113,103,103,115,108,122,103,112,108,100,103,105,96,109,113,113,106,102,102,105,101,112,102,102,101,117,118,97,108,105,96,113,103,105,107,94,108,103,101,68,98,110,91,102,108,99,109,86,107,102,109,104,110,104,108,104,113,100,111,102,106,114,87,108,103,105,106,106,105,110,104,109,102,100,100,113,113,106,108,113,101,102,124,110,111,113,105,113,103,112,105,104,110,107,111,102,107,104,110,117,99,103,114,105,109,100,81,109,97,104,104,108,92,106,116,108,114,92,105,132,101,112,103,118,97,93,109,113,95,105,93,102,107,111,109,107,105,105,111,103,97,108,91,79,107,110,110,106,107,105,115,106,109,114,90,103,113,113,111,107,115,108,100,115,114,106,103,103,107,95,104,98,106,106,125,105,107,110,99,112,103,107,100,103,108,116,106,99,101,98,102,106,97,94,114,100,102,108,105,108,116,109,97,113,99,111,108,112,111,108,108,94,105,104,102,103,107,100,113,82,98,109,103,101,108,118,110,100,112,113,105,109,100,98,79,110,126,96,104,107,108,103,107,97,110,112,100,113,116,91,101,100,106,99,83,94,116,120,101,113,101,104,80,94,93,101,101,111,87,104,101,108,110,108,105,99,92,101,105,97,105,114,102,100,108,105,100,109,97,101,104,100,113,118,107,106,109,101,102,93,98,98,108,114,94,100,103,113,111,102,103,95,119,104,106,104,99,125,112,110,106,108,104,108,90,111,99,107,98,109,103,94,111,96,116,98,103,104,103,96,109,108,111,116,97,103,110,109,99,105,107,111,107,93,104,98,105,105,104,103,103,90,118,98,97,110,106,106,98,103,98,93,95,100,112,119,99,110,109,106,106,107,88,106,121,110,107,103,105,115,118,94,107,105,89,106,105,114,109,113,98,107,106,99,95,102,115,104,79,100,100,103,127,106,118,99,104,124,100,100,97,107,108,102,109,85,110,106,104,118,104,108,103,109,101,99,101,103,116,103,117,99,106,96,120,90,93,112,103,108,98,129,95,109,106,113,126,99,98,103,82,116,103,108,96,91,99,105,106, +530.84607,118,95,106,100,84,97,92,98,113,90,113,103,117,104,103,87,105,125,115,90,105,99,95,114,105,108,101,113,103,111,107,98,95,105,106,113,115,96,98,109,110,102,103,98,98,111,109,109,111,108,105,101,95,102,102,101,86,91,116,104,115,107,98,102,107,106,109,116,104,109,115,105,108,98,98,104,111,93,95,110,102,105,101,102,112,100,96,113,100,113,123,96,104,109,104,98,94,104,105,112,100,97,118,106,101,110,105,105,106,94,109,101,120,100,101,107,95,96,99,107,98,117,100,113,116,103,108,116,100,105,105,121,110,103,118,90,108,104,96,105,100,102,99,97,105,111,95,87,94,101,100,105,96,90,97,104,101,106,117,98,110,109,109,95,109,93,91,94,92,100,108,98,102,110,102,109,114,96,94,117,109,105,101,101,103,112,98,103,103,97,103,110,98,108,98,95,95,96,111,103,99,90,100,104,98,100,109,106,112,103,109,99,105,107,91,101,98,107,81,101,98,110,87,94,135,102,107,106,106,105,99,107,102,101,105,96,103,100,105,109,107,112,109,111,90,106,105,104,105,95,96,110,113,108,113,111,96,104,89,107,80,105,99,104,111,108,108,102,111,108,107,110,113,98,102,70,97,107,108,101,110,105,105,107,101,107,109,117,106,102,98,112,105,110,96,100,99,104,99,108,103,98,107,114,114,105,99,96,97,117,98,101,95,106,96,115,111,104,104,99,97,100,113,105,102,106,105,106,112,95,106,116,105,108,114,103,87,95,102,101,102,105,105,92,106,110,106,101,117,103,120,93,97,100,108,109,108,105,105,107,102,101,99,95,103,97,100,107,107,114,101,108,111,105,103,121,102,103,117,125,104,95,104,91,113,106,115,95,121,103,106,97,110,111,105,112,88,99,96,117,103,111,105,106,111,98,119,116,97,103,102,99,106,106,95,101,103,113,114,93,105,72,110,104,99,100,93,101,113,97,109,106,104,103,95,110,104,120,101,132,109,110,104,112,109,110,92,110,114,110,96,122,113,110,95,99,103,101,109,110,103,105,112,106,106,89,100,111,101,100,93,111,113,102,91,107,102,106,84,103,101,121,116,95,98,95,124,110,105,98,99,105,109,101,105,115,109,112,101,100,111,112,99,108,108,108,103,105,96,98,103,111,107,116,102,104,120,99,101,108,102,109,114,98,95,109,102,106,101,98,103,104,97,110,98,112,105,105,104,113,102,112,100,112,106,105,113,106,110,97,110,110,109,108,115,110,99,95,90,99,102,107,102,105,105,102,116,114,102,86,104,112,109,102,109,106,124,111,99,114,97,107,96,96,107,94,108,110,98,102,125,101,105,109,109,115,99,107,114,110,106,95,119,103,112,103,109,102,106,115,107,104,107,111,107,104,106,99,116,102,115,113,108,103,130,106,109,107,101,106,92,100,103,116,107,113,105,105,109,94,111,100,106,105,100,102,110,97,95,113,104,98,106,110,103,109,102,116,105,102,119,111,108,103,98,107,108,107,108,77,101,104,106,113,99,112,98,115,113,82,87,112,108,95,108,109,107,102,102,93,108,109,107,101,94,106,88,111,104,100,108,103,117,99,100,121,83,109,112,92,111,96,100,101,99,117,118,105,98,107,115,103,105,110,110,114,112,95,101,112,117,107,114,102,96,100,106,109,118,99,106,92,103,103,105,113,110,114,105,109,120,91,119,105,103,104,99,110,116,99,102,116,106,112,104,102,99,97,107,100,100,120,91,96,108,99,97,101,106,105,101,125,97,104,101,110,88,104,106,100,103,119,106,106,106,94,99,105,106,105,113,105,101,116,114,98,103,119,101,103,113,88,89,91,110,91,117,104,103,107,105,111,96,112,121,100,111,104,106,105,107,106,100,113,88,106,98,113,108,112,102,106,103,106,109,101,95,96,110,114,103,96,79,94,108,118,100,113,103,99,111,109,100,106,92,114,105,110,103,100,114,100,103,113,103,109,102,99,108,101,99,114,106,129,128,105,98,116,95,105,112,104,100,117,119,96,114,107,104,97,104,101,96,112,111,104,102,101,103,119,117,105,101,86,119,110,94,111,91,107,111,105,105,104,103,100,100,109,90,107,89,104,117,107,100,105,101,99,103,96,102,102,112,113,102,108,112,89,104,100,91,110,103,106,103,100,113,113,96,108,110,108,100,109,120,95,100,107,110,108,98,108,112,105,108,105,108,92,98,101,103,126,109,105,100,110,116,99,116,102,113,101,109,99,103,108,101,100,110,92,102,108,107,101,102,112,104,110,97,107,99,105,103,138,101,92,112,96,108,112,118,101,109,104,100,105,102,102,92,98,115,102,90,102,119,102,106,112,116,105,116,99,112,112,96,104,107,100,109,104,96,109,104,100,101,110,110,104,106,111,96,104,108,105,112,105,100,102,105,105,98,106,113,110,102,103,117,89,97,106,112,102,95,113,110,99,100,99,108,79,83,109,110,106,105,101,111,93,116,102,99,88,119,110,107,107,92,109,106,111,106,117,104,87,105,102,120,100,104,113,99,108,95,108,104,107,98,103,105,96,118,105,103,96,102,107,92,87,101,91,100,92,100,106,92,101,107,105,108,100,108,106,112,98,101,102,104,87,117,109,112,113,108,103,102,100,102,100,112,115,113,108,108,105,103,106,102,104,110,94,119,108,93,114,102,103,104,100,102,117,95,99,110,104,107,106,113,108,101,103,104,114,109,104,100,98,111,97,106,104,107,112,100,102,106,107,105,113,111,101,112,101,114,95,104,106,105,101,101,121,87,102,98,116,112,107,123,90,101,116,101,100,102,105,101,101,103,101,88,71,109,102,109,98,100,110,107,108,99,102,108,108,101,115,107,100,109,117,113,106,110,111,108,121,87,112,91,122,115,105,110,104,117,106,105,97,99,106,104,97,98,103,92,109,103,111,108,101,110,93,112,97,98,105,98,93,109,104,114,98,102,94,108,102,101,110,109,112,97,120,103,116,102,103,103,114,105,100,105,107,113,102,105,99,113,97,101,112,105,110,114,105,112,106,98,105,97,108,91,109,108,104,118,105,125,103,101,108,109,102,106,109,97,104,106,100,108,105,106,95,84,101,107,106,106,110,103,107,104,98,106,100,99,104,105,109,105,108,101,116,95,112,102,102,92,113,113,99,102,100,95,109,104,110,97,100,113,112,113,108,106,116,115,113,105,97,104,104,93,106,124,88,106,100,94,103,108,97,121,104,101,100,113,101,113,96,103,108,81,103,99,94,104,105,112,98,107,102,112,112,99,113,104,110,101,120,103,103,94,113,119,107,105,100,113,102,92,104,94,95,102,108,103,96,112,100,93,107,101,108,97,108,105,106,105,105,105,112,102,93,107,99,92,96,100,107,99,111,104,81,91,98,106,118,96,105,108,105,111,125,96,96,102,107,92,99,101,103,95,94,97,101,111,98,94,106,112,116,112,113,105,114,103,106,104,105,96,103,111,99,110,104,88,106,119,105,101,102,94,95,126,100,91,120,87,103,96,100,99,108,101,81,99,96,93,117,96,108,95,119,108,105,94,106,103,120,110,105,103,101,103,95,92,106,107,107,108,110,109,106,95,123,98,99,101,102,102,97,105,106,101,111,116,109,93,102,100,116,111,101,94,100,100,110,95,105,101,95,108,97,103,109,105,94,93,100,96,114,103,101,106,114,102,100,116,100,119,102,100,108,98,102,104,94,105,102,98,107,111,106,105,92,104,103,113,107,113,100,93,97,112,104,109,105,100,107,98,101,100,91,110,114,78,110,105,104,105,117,102,104,109,102,106,102,103,99,99,101,103,99,104,96,105,107,105,97,98,103,103,113,91,94,94,99,105,97,98,110,109,111,101,102,116,102,114,105,99,109,98,101,109,104,111,107,103,132,113,96,98,106,109,100,109,78,100,118,110,105,101,104,102,101,105,108,108,103,99,100,99,95,98,113,103,102,113,94,93,100,90,104,105,108,104,104,106,97,109,94,72,99,109,110,111,101,108,99,110,98,87,96,103,107,103,92,105,116,112,105,96,100,96,105,109,99,101,114,84,112,109,108,105,90,106,110,108,111,112,97,107,100,108,112,113,99,106,103,97,91,102,111,104,93,98,98,124,112,105,106,109,95,105,95,108,113,105,102,107,109,102,100,109,99,114,107,112,95,82,110,97,110,123,110,95,108,110,95,104,107,92,108,111,106,110,106,102,109,112,111,100,95,120,103,109,94,109,113,109,113,109,103,90,98,107,109,92,95,90,99,99,112,108,102,105,101,100,97,110,114,102,102,105,120,115,106,93,103,107,108,97,96,82,95,107,107,108,113,109,116,103,106,102,98,104,111,91,97,91,101,94,113,109,103,105,104,93,114,104,98,109,110,97,104,106,101,99,105,101,94,99,98,110,99,98,102,84,94,108,102,104,110,108,103,99,99,101,100,102,119,81,106,105,110,97,104,108,112,97,106,102,109,96,99,94,106,108,109,98,115,119,92,112,106,105,109,101,108,105,109,108,97,121,111,108,117,105,99,110,105,101,102,94,100,108,101,105,107,112,98,69,99,103,105,98,92,109,138,113,108,106,103,103,104,104,115,100,108,113,97,102,102,97,89,96,93,98,97,103,114,101,93,120,103,110,98,86,108,99,102,100,90,101,87,116,106,100,98,101,105,106,109,112,105,124,103,107,104,106,103,109,99,97,95,96,104,95,95,90,101,102,96,118,100,110,102,99,106,105,109,98,105,106,95,104,109,105,94,104,90,102,105,96,97,113,95,100,102,94,100,100,93,105,106,112,111,108,97,115,102,103,101,94,99,121,100,93,95,98,87,111,87,111,104,96,105,71,94,85,105,95,110,115,99,109,102,107,91,106,105,105,77, +530.98688,89,109,103,96,81,109,95,93,66,101,92,105,98,104,99,114,78,104,94,103,104,126,113,109,114,109,111,124,95,111,107,93,114,100,114,114,99,99,119,94,98,96,101,105,102,121,114,109,112,105,99,115,117,114,97,95,93,95,105,92,117,99,105,107,99,102,100,84,103,105,109,110,96,99,96,118,111,116,104,96,107,105,101,105,110,109,100,86,106,86,95,113,113,119,89,98,113,92,93,96,100,96,99,104,95,91,80,102,109,94,97,99,83,95,99,103,102,114,112,99,109,106,114,118,124,96,99,98,119,105,104,108,97,107,98,104,108,101,96,101,105,101,83,85,105,114,108,100,109,101,97,107,106,86,105,105,71,99,103,101,91,104,94,110,121,100,102,92,109,107,102,105,111,104,124,106,95,94,93,96,86,91,108,106,98,91,109,91,113,90,107,100,118,103,101,106,112,113,108,111,104,107,87,103,74,98,114,94,108,99,105,106,101,97,109,103,79,103,104,109,98,101,116,101,98,103,95,91,103,100,101,104,116,97,102,100,95,100,85,94,95,99,110,90,94,107,98,104,100,98,113,111,122,116,104,106,110,99,108,113,89,104,111,112,66,100,105,103,104,86,107,111,112,94,101,98,101,109,95,110,81,98,113,100,101,92,96,106,107,102,100,102,99,123,117,96,105,99,99,100,95,110,113,104,91,103,98,110,90,100,88,101,100,103,108,102,114,102,103,117,98,102,98,113,116,106,98,94,106,108,100,102,91,103,100,107,98,102,100,104,105,111,104,99,102,93,98,95,111,108,102,100,122,113,101,92,120,106,107,100,111,104,110,102,98,98,99,121,96,121,107,96,106,106,105,112,111,113,103,101,102,113,93,105,105,104,107,114,96,119,103,89,101,90,109,112,105,107,108,106,109,110,97,110,102,97,95,111,109,99,87,101,101,108,97,106,103,101,107,121,104,103,95,100,99,98,98,98,96,112,98,102,132,113,97,112,98,105,102,110,111,102,112,113,105,113,93,105,99,87,99,95,99,99,109,107,94,110,100,104,104,99,105,106,109,117,110,91,85,97,105,109,103,102,112,100,102,106,104,107,110,109,117,103,102,107,110,115,115,95,106,110,106,110,97,112,115,115,118,104,99,110,98,107,101,104,101,108,105,104,109,104,102,102,97,99,99,107,101,113,110,106,113,104,110,110,86,101,97,90,108,107,105,105,106,116,100,99,107,99,98,113,100,101,109,89,102,92,114,117,111,88,103,100,103,116,104,105,109,113,103,98,108,107,88,101,104,109,90,100,94,117,115,102,108,111,100,105,96,112,107,101,102,102,103,104,112,94,102,113,119,111,95,106,103,104,101,107,97,108,114,105,104,100,117,109,108,101,115,122,95,94,106,110,113,100,108,90,103,120,96,116,109,110,112,94,102,99,97,101,95,101,108,98,102,102,105,98,106,108,105,103,107,110,101,91,108,102,112,73,108,108,103,102,103,107,112,100,102,106,97,101,106,103,103,98,98,99,114,118,99,117,95,122,101,102,104,113,99,101,109,107,114,103,87,104,119,107,101,105,114,109,107,105,105,102,109,79,103,92,115,112,99,110,97,107,105,109,108,111,106,109,106,105,93,105,107,107,104,125,99,103,101,104,103,124,109,95,100,116,116,108,103,102,112,108,111,97,111,91,107,113,108,111,104,97,103,103,111,103,117,104,108,95,100,103,108,113,103,109,106,100,104,97,104,97,113,103,107,87,108,97,110,114,103,100,86,112,108,102,114,111,117,117,113,100,113,90,98,102,95,94,106,115,108,104,100,106,111,102,107,99,105,103,114,98,115,110,109,95,106,99,109,98,111,107,114,100,100,108,115,104,104,101,114,103,102,92,108,102,103,100,95,107,102,111,105,126,105,84,96,116,108,103,102,111,99,94,103,109,106,106,98,104,105,111,98,103,85,99,97,105,118,110,99,86,103,100,113,100,98,110,100,100,105,99,101,100,113,142,106,104,102,108,103,106,88,112,97,104,99,104,99,112,89,112,103,92,102,104,108,103,115,99,108,103,98,114,99,103,98,123,101,112,109,101,115,107,98,113,103,106,110,97,110,114,101,96,116,106,109,107,98,98,106,101,97,103,106,106,110,114,102,100,92,104,103,86,112,114,117,104,93,99,115,100,104,110,100,106,116,111,102,95,103,102,110,100,105,118,105,95,89,117,110,111,78,96,97,95,94,118,102,114,104,83,102,100,98,105,98,109,113,93,103,96,103,103,108,102,107,97,108,105,119,106,107,96,116,103,100,108,118,115,96,88,108,103,103,104,109,113,109,89,113,101,96,108,112,97,91,108,113,105,111,96,95,106,118,104,104,100,109,107,108,96,117,122,109,97,109,99,112,105,103,112,107,99,108,91,106,101,96,112,97,101,105,117,107,114,97,105,114,97,94,108,112,99,103,105,101,119,104,106,102,104,117,104,109,110,105,111,109,108,100,116,100,85,105,111,102,103,103,128,115,114,100,100,101,98,77,113,107,87,98,87,106,108,94,113,105,99,94,101,99,106,102,110,101,87,100,112,98,110,103,119,92,122,114,109,103,105,82,74,112,95,119,109,111,98,120,92,110,128,115,106,79,103,117,101,103,96,106,100,122,113,103,96,97,102,113,93,110,102,104,95,97,99,97,103,67,106,100,98,99,98,93,104,106,107,103,101,105,113,113,114,111,102,104,104,103,104,105,111,99,109,94,102,107,107,104,106,94,102,107,100,108,107,96,106,110,103,90,101,98,113,91,104,98,100,105,108,96,109,98,109,103,108,105,102,104,120,105,105,108,98,114,102,101,97,101,106,108,104,98,99,111,125,113,103,88,101,121,94,102,113,112,104,99,96,102,117,111,102,102,106,102,125,104,100,111,102,107,102,98,107,111,98,110,104,113,107,96,102,110,115,99,115,107,115,105,111,98,120,87,107,122,103,112,97,95,115,99,111,107,110,107,110,103,105,111,104,103,97,94,103,102,108,98,125,93,99,94,104,102,105,104,105,97,96,97,104,104,94,107,98,105,105,95,101,93,98,87,110,100,99,106,117,99,106,101,113,103,110,102,108,104,109,126,99,99,101,104,117,105,101,104,104,96,105,106,92,100,102,97,94,116,109,93,106,112,108,105,108,105,117,101,104,104,110,124,105,103,124,103,100,109,111,101,105,100,88,131,113,103,102,104,112,94,101,110,102,100,109,95,112,94,103,109,77,97,113,111,118,102,105,101,105,98,119,93,100,100,113,103,102,104,103,103,113,116,101,99,99,102,113,123,104,121,121,105,101,108,100,112,100,112,108,107,83,109,100,115,105,105,92,111,95,112,96,104,98,99,102,106,103,99,97,104,103,111,97,97,98,108,114,99,103,98,101,102,96,102,109,106,111,92,102,116,104,102,102,98,104,103,114,106,116,105,95,98,109,103,105,116,101,112,118,112,110,96,103,110,99,102,109,98,108,110,103,113,99,92,104,100,100,111,106,102,106,114,109,99,110,103,112,112,113,95,108,122,101,106,106,95,95,93,112,103,120,110,90,101,129,109,104,92,95,109,102,104,96,104,114,95,107,113,96,116,115,88,105,105,96,105,99,107,89,111,107,96,96,113,108,100,103,103,104,106,102,97,102,83,111,106,115,105,109,93,97,112,110,111,101,101,113,113,119,111,105,99,99,102,95,106,113,110,106,83,95,94,94,109,102,113,99,107,101,118,102,98,94,104,104,106,97,102,99,108,103,106,104,110,104,118,108,104,102,107,113,91,109,100,110,106,97,100,110,102,107,117,115,105,109,105,97,110,91,105,111,90,109,108,120,105,106,96,108,106,110,105,104,107,109,104,116,102,91,107,102,93,99,115,91,91,99,100,104,108,119,112,109,101,92,109,111,102,102,120,108,87,109,100,108,95,99,112,105,101,112,106,104,100,107,109,79,98,109,102,109,106,99,88,111,103,111,97,99,84,108,107,95,120,95,105,101,98,89,117,106,113,104,102,108,102,117,106,108,117,101,106,105,118,115,97,113,102,112,95,102,98,100,108,100,101,112,106,94,105,100,106,113,103,105,102,106,96,106,97,97,108,112,99,92,103,108,95,101,94,104,107,100,103,105,101,116,101,108,116,113,103,96,107,92,86,117,107,113,90,113,120,117,103,97,106,96,104,119,89,100,105,109,95,94,121,104,107,108,100,108,112,105,75,117,99,121,108,116,110,88,114,104,116,105,105,107,107,103,101,104,101,91,121,103,102,110,98,103,117,108,99,114,104,96,117,101,102,99,107,112,107,98,94,108,99,99,100,105,109,108,103,99,100,108,111,99,111,107,102,92,102,108,105,106,95,102,100,100,113,94,112,107,96,108,100,110,99,113,124,111,107,89,109,103,101,114,98,91,111,96,108,93,94,113,113,106,105,112,109,113,109,108,102,103,109,111,100,97,104,85,108,101,106,98,105,107,109,110,105,99,96,110,106,107,106,98,114,113,100,94,108,95,105,102,104,106,98,104,112,97,101,101,99,99,109,99,94,108,120,96,111,95,111,110,103,113,109,99,93,91,100,115,108,104,105,110,113,101,124,105,93,100,111,104,104,100,104,107,119,95,100,101,104,102,107,102,118,116,105,114,105,108,108,100,113,116,111,94,95,105,96,113,96,108,117,98,121,103,103,101,103,99,105,89,100,90,95,101,92,73,94,110,90,104,92,100,106,112,98,100,97,112,109,99,104,111,107,101,95,106,101,109,101,99,103,114,99,113,100,110,114,96,123,99,95,105,80,99,105,103,115,90,103,104,108,103,108,108,101,119,105,105,96,98,98,112,94,96,95,101,106,99,106,100,107,114,129,107,104,105,105,97,100,123,122,86,110,101,112,62, +531.12762,108,95,90,73,92,99,109,97,104,90,105,109,102,91,93,88,103,104,112,90,113,99,96,99,103,110,110,105,104,107,95,87,106,103,106,103,105,104,118,92,95,114,102,103,112,116,106,99,115,99,92,116,107,105,100,99,108,101,103,105,103,113,103,104,113,110,96,109,96,104,113,118,96,102,105,104,96,113,100,103,100,97,97,110,89,101,108,99,91,107,100,113,106,100,104,102,94,106,107,112,106,100,102,100,101,103,108,97,124,88,96,88,105,91,107,108,99,109,106,111,105,99,118,104,115,125,116,109,117,96,98,107,114,109,126,101,105,95,100,114,110,102,116,98,87,112,107,105,101,98,108,104,125,97,98,102,110,85,85,98,108,105,100,105,112,98,107,101,112,91,98,94,98,106,99,105,105,107,102,96,92,102,111,110,110,102,100,97,108,105,105,105,99,102,111,97,95,113,101,115,98,106,110,105,108,97,98,104,103,104,116,120,110,103,103,105,107,112,111,105,97,109,113,105,110,108,106,108,111,116,113,92,103,99,109,107,98,108,95,100,102,102,103,106,114,105,115,108,103,110,99,115,102,98,102,114,101,100,103,101,88,110,104,113,87,101,107,115,113,111,99,112,107,105,121,100,118,99,106,89,98,101,103,101,112,109,100,99,97,108,101,104,102,106,108,111,98,113,99,105,113,110,100,103,120,100,105,101,109,112,117,112,110,102,103,116,97,98,106,106,102,105,122,103,105,109,95,98,109,108,103,95,106,114,107,116,108,75,106,109,96,105,103,99,101,108,104,107,98,102,104,103,116,102,98,105,113,110,113,116,96,104,99,107,104,107,101,120,97,117,113,102,110,106,103,99,113,107,103,107,102,114,105,107,108,116,102,100,107,102,110,99,96,110,100,112,95,100,115,106,117,97,96,99,105,107,97,109,109,108,102,115,111,102,118,118,96,106,105,100,106,95,104,137,95,101,97,96,90,107,96,107,99,104,106,98,114,114,99,99,121,109,116,110,97,106,99,94,115,115,107,110,106,103,117,111,104,99,108,98,108,103,110,113,109,104,103,113,110,100,97,107,109,101,98,112,104,114,106,101,108,111,102,94,113,99,99,110,108,97,113,103,108,99,99,101,110,103,108,103,112,101,110,106,113,91,107,111,104,104,103,112,77,101,105,106,108,103,112,116,119,107,94,105,107,103,107,105,90,109,93,110,110,102,109,108,100,106,111,118,113,117,113,110,102,106,107,103,104,102,107,121,106,127,111,101,105,106,109,98,104,105,109,110,104,100,101,111,92,108,86,98,107,113,105,111,110,113,111,112,105,111,104,104,103,104,98,113,82,93,114,128,108,104,106,106,98,103,107,105,103,120,108,89,99,98,100,102,112,117,105,121,118,99,116,102,107,96,109,105,118,106,98,117,110,98,112,104,102,98,122,93,95,101,97,103,115,100,106,95,112,117,116,103,102,110,100,92,125,102,92,74,109,102,105,105,114,119,105,115,110,118,104,98,96,106,110,105,114,110,106,108,109,111,109,104,109,104,112,108,107,105,111,100,105,107,96,102,108,82,87,108,100,102,107,98,100,98,81,99,106,100,96,94,95,100,109,98,99,95,108,103,109,117,103,98,79,112,99,112,111,95,114,112,100,102,100,114,114,131,110,108,114,99,123,93,108,95,109,104,108,116,106,103,117,101,117,103,102,104,118,99,97,99,104,94,99,99,110,96,103,107,89,107,100,107,100,109,116,110,118,110,108,105,108,98,117,104,106,105,109,106,111,108,101,100,108,109,117,111,95,99,114,108,106,119,106,102,105,111,112,108,103,116,112,105,103,108,102,129,111,105,102,112,113,108,109,111,116,121,103,106,101,107,100,105,108,109,109,103,109,112,104,107,108,114,102,98,98,94,99,97,114,104,103,112,103,94,99,96,99,102,114,100,107,97,100,99,109,119,90,110,114,115,99,102,91,118,123,113,116,111,109,117,97,95,114,105,121,80,105,118,98,109,110,101,103,108,110,117,103,123,94,117,97,106,105,104,98,107,101,115,104,104,110,112,107,100,108,99,95,101,103,115,110,111,110,105,109,113,109,111,114,93,104,110,107,98,102,100,106,101,108,125,116,105,99,112,116,104,116,110,112,107,98,91,100,114,106,105,104,101,107,108,101,112,109,104,95,107,106,95,107,102,116,82,117,96,109,103,109,102,101,103,111,120,104,103,111,103,114,105,103,96,104,106,105,104,98,104,107,95,107,111,107,112,101,98,109,102,106,103,99,104,99,112,105,99,97,106,106,108,99,102,103,104,109,113,108,99,115,98,109,94,102,110,101,109,121,105,112,109,106,99,111,101,101,115,116,117,106,107,97,111,107,109,108,108,105,110,102,106,99,104,100,105,123,99,108,113,114,116,108,103,98,105,106,100,107,95,106,111,94,106,100,94,112,114,100,112,113,97,105,101,107,75,97,71,114,104,113,97,108,96,100,95,123,104,107,106,112,92,107,113,93,111,97,114,102,99,104,111,107,99,108,115,100,112,102,103,101,105,83,102,110,112,105,107,104,109,103,110,101,105,102,102,95,101,91,94,106,91,101,109,102,99,101,92,108,95,104,107,104,104,95,97,106,108,101,112,109,102,114,92,104,119,109,97,109,103,77,96,105,106,104,102,100,110,105,104,102,104,96,83,93,99,100,113,103,102,100,109,106,103,100,108,100,107,102,110,107,98,103,107,108,107,104,115,110,105,104,96,99,93,113,106,102,106,100,105,101,102,94,106,96,108,103,100,109,112,103,138,109,99,117,113,98,119,107,115,108,92,103,104,98,114,101,126,103,99,106,105,113,108,99,102,85,108,88,109,100,112,104,107,114,103,100,115,104,109,109,103,102,122,98,91,94,109,93,117,105,105,98,98,110,108,104,101,98,102,102,111,100,98,112,106,111,96,124,108,102,95,97,96,109,109,103,91,101,105,104,107,94,100,111,109,105,102,106,119,102,109,104,110,121,97,95,106,99,103,104,93,88,99,114,103,105,103,86,109,100,104,105,99,112,101,107,112,115,121,104,74,94,112,98,96,100,112,101,103,106,107,102,95,110,106,112,91,96,107,98,102,103,95,111,102,111,107,105,104,104,88,102,109,95,97,105,109,105,105,98,111,107,103,104,117,86,105,88,114,117,103,108,111,105,110,107,114,109,84,101,108,115,109,98,109,98,115,106,108,110,95,98,104,94,112,104,100,108,97,107,106,84,97,118,102,96,95,104,116,100,94,97,112,96,107,98,102,108,96,105,102,117,106,103,118,109,105,104,100,104,110,108,97,111,107,100,103,95,98,114,101,104,91,105,109,103,102,109,111,108,126,109,106,99,112,68,98,102,99,107,100,98,101,103,106,114,99,102,104,112,102,101,109,109,117,101,98,110,109,106,96,100,113,113,107,107,113,114,106,109,121,99,106,111,78,100,82,109,95,94,107,101,94,96,111,116,118,105,116,104,105,104,117,121,108,112,104,105,108,109,121,98,105,105,110,111,102,106,111,106,119,104,69,110,111,98,106,93,113,113,110,103,106,112,108,99,103,141,95,102,103,99,100,112,107,95,101,98,101,97,107,102,107,98,95,103,111,98,112,98,96,114,109,101,97,107,105,94,124,103,110,101,113,105,105,113,96,111,97,111,99,102,99,105,133,100,100,109,96,99,98,90,112,118,81,140,110,113,108,91,94,98,104,105,109,116,93,104,95,94,103,109,98,96,99,107,101,103,117,114,97,98,108,88,106,95,103,110,108,96,100,96,111,103,87,120,108,92,100,106,95,98,113,102,104,101,95,106,138,99,111,99,99,108,105,105,101,114,99,100,97,99,90,104,104,109,96,81,119,98,113,91,98,103,106,93,101,114,119,112,98,110,106,107,97,116,91,95,100,107,112,110,108,104,107,97,107,105,104,105,99,83,106,110,104,100,112,83,95,100,81,103,99,95,105,106,99,104,102,106,100,106,105,104,107,106,107,111,121,90,106,107,113,105,110,124,104,97,102,100,100,84,99,102,113,106,116,132,105,103,112,125,105,107,100,105,107,114,104,101,105,112,95,112,107,105,98,105,103,136,110,95,112,100,103,111,98,100,106,116,101,96,107,103,105,105,104,104,110,115,101,101,90,101,96,98,95,106,102,80,107,105,102,107,107,105,94,102,112,106,116,109,115,109,103,108,101,107,113,109,102,100,103,115,95,107,108,119,100,106,95,120,106,108,70,107,139,108,105,105,104,107,100,92,109,105,98,104,111,98,101,110,103,102,107,101,109,109,120,94,117,114,91,111,117,96,107,108,104,110,71,94,100,104,104,81,106,106,105,105,96,120,115,97,103,96,102,94,95,99,106,106,106,119,109,98,112,113,104,101,95,95,109,105,105,97,99,107,104,99,98,105,107,105,92,113,92,108,103,105,116,109,107,96,88,110,107,92,102,96,77,91,101,107,99,103,114,98,107,95,97,100,103,120,105,101,100,106,96,108,105,92,111,94,115,107,103,104,105,103,109,105,103,105,104,100,108,103,98,106,114,103,105,102,118,97,108,105,109,117,118,112,110,93,102,100,102,98,119,100,107,90,103,94,106,100,106,101,103,125,98,96,95,107,107,100,110,106,104,97,98,108,99,92,104,110,110,104,97,109,105,97,100,110,116,97,97,106,84,104,105,93,100,91,106,99,97,111,95,90,107,106,102,105,102,111,106,105,97,106,98,107,113,91,91,106,105,101,114,111,110,107,121,105,99,99,105,84,102,113,94,96,90,107,104,102,100,95,114,98,113,105,102,100,102,91,104,107,108,100,113,91,106,110,101,99,103,105,91,108,105,96,106,99,101,102,108,92,97,128,95,108,96,113,117,106,101,105,100, +531.26837,104,118,90,84,118,105,113,83,102,109,94,103,101,103,107,109,86,117,101,105,109,119,103,109,113,121,92,108,80,112,108,107,105,108,109,112,118,97,94,118,103,110,98,109,106,124,82,86,101,121,103,101,95,86,103,93,98,92,115,91,95,105,99,100,98,104,100,119,98,105,108,102,108,98,112,99,107,113,111,110,105,91,112,95,99,100,101,115,113,101,99,98,110,87,105,100,114,106,99,101,101,91,102,102,103,116,98,104,103,88,113,107,108,108,103,96,106,102,130,99,79,108,110,106,107,112,123,112,103,112,112,118,106,100,108,103,100,101,109,103,95,104,95,100,105,108,117,112,103,98,103,80,97,97,105,108,95,115,98,101,96,104,101,105,115,93,102,95,104,93,111,113,92,108,96,106,104,101,97,101,113,109,98,99,96,116,97,92,97,99,102,117,107,117,108,98,93,114,99,109,99,109,104,94,99,110,106,102,119,120,100,104,113,113,109,112,104,93,110,99,103,98,94,110,101,118,97,117,103,107,103,102,107,113,106,107,100,106,95,105,105,117,109,100,104,109,98,110,107,86,110,93,101,109,105,114,99,115,97,107,101,114,114,104,96,117,101,109,109,111,114,104,110,106,102,101,97,101,102,100,109,106,96,98,94,114,89,100,104,99,102,110,111,111,106,111,108,107,103,116,109,102,105,99,101,105,111,105,87,109,98,118,108,106,101,111,99,117,109,113,100,103,106,108,111,144,103,108,115,110,110,108,101,108,114,98,112,98,94,102,96,100,102,111,97,99,113,108,107,90,97,105,109,94,102,111,122,95,102,116,98,103,98,115,102,111,118,97,103,103,108,112,109,112,106,107,105,108,110,108,101,111,104,106,96,108,98,103,107,114,109,104,91,125,91,97,97,99,110,120,94,103,96,97,105,106,120,107,106,103,85,108,113,102,110,108,121,102,97,90,100,107,106,116,112,96,107,98,96,106,105,113,101,100,112,108,103,113,112,99,113,112,94,102,136,112,86,108,106,115,103,98,112,100,103,106,108,123,108,104,105,93,118,82,106,115,112,101,112,106,113,121,101,113,104,105,101,110,109,109,100,126,111,103,99,112,113,103,102,107,116,107,106,95,106,110,104,103,99,99,112,100,102,103,99,111,103,108,96,104,117,106,106,105,112,108,104,103,106,99,113,98,104,95,110,105,125,98,90,103,109,102,117,104,95,102,97,108,121,116,105,102,110,118,98,111,103,111,95,107,94,99,106,102,104,100,98,98,108,108,99,93,95,98,103,104,103,113,105,106,103,96,111,100,117,103,112,105,116,115,103,107,113,115,110,90,99,106,118,98,108,109,112,111,123,119,96,94,103,115,100,117,103,100,106,91,117,102,107,105,112,123,106,113,109,104,103,106,98,108,110,96,112,112,118,111,105,101,94,116,107,111,114,70,99,105,112,100,104,117,102,115,106,109,100,108,111,107,111,110,118,105,110,116,102,110,107,112,108,107,112,98,108,117,109,111,104,105,106,94,109,117,104,98,112,108,113,102,119,109,109,108,114,105,111,93,100,113,105,103,110,117,87,96,97,110,99,116,95,98,98,111,95,114,108,115,102,100,111,109,107,110,98,94,109,107,106,109,114,106,101,100,114,120,105,99,104,108,103,122,109,83,110,101,117,106,98,112,109,109,108,100,118,107,124,103,85,115,113,113,105,96,110,103,102,106,105,114,98,105,103,115,98,99,93,101,107,97,101,99,105,110,95,107,111,102,98,92,119,102,107,106,103,100,108,109,111,110,97,105,94,102,108,101,95,100,103,121,104,102,106,113,107,103,116,91,104,96,95,107,113,110,117,113,90,107,108,101,111,107,101,103,98,109,103,104,99,106,117,102,98,100,104,107,92,99,104,109,116,116,102,96,101,110,113,99,101,110,120,101,107,104,98,112,107,104,106,94,106,106,101,105,104,103,106,103,96,112,109,94,113,105,99,96,111,117,114,110,103,108,105,118,100,101,96,108,92,113,104,115,107,114,118,107,113,113,99,108,110,125,94,100,103,104,104,109,105,92,99,108,106,110,116,108,110,101,101,111,101,93,109,117,100,101,113,97,112,109,99,113,109,113,99,102,110,102,97,95,104,106,105,102,109,93,92,96,106,104,104,102,107,98,125,103,110,104,104,105,105,106,108,111,102,105,113,108,99,102,101,116,93,108,115,96,99,96,91,103,105,101,103,101,104,102,118,110,112,102,103,93,103,96,121,101,106,86,95,106,109,113,104,107,110,112,112,107,116,121,102,119,99,97,96,103,106,101,117,115,120,102,109,118,116,91,112,99,95,112,109,107,109,96,100,94,121,100,121,105,104,102,107,104,103,105,114,98,111,113,106,103,99,107,110,106,111,113,104,111,103,107,102,109,112,96,108,109,107,115,93,113,99,114,93,103,102,101,124,100,96,110,107,113,79,94,101,111,112,113,117,103,105,106,111,109,101,109,112,116,106,111,110,91,101,106,108,111,104,110,103,99,108,113,125,107,131,109,107,99,105,107,104,101,97,102,108,111,101,119,113,99,110,116,102,99,116,110,106,93,92,102,97,91,100,114,110,106,106,104,110,110,112,111,106,108,111,104,98,109,104,100,111,88,104,98,113,112,112,91,107,94,105,107,106,106,107,110,109,91,107,107,97,108,106,109,112,105,112,105,102,109,112,109,112,98,99,106,98,106,102,109,102,118,115,106,109,123,89,110,87,110,107,111,111,104,95,98,118,113,118,97,101,106,121,94,96,111,104,103,106,110,103,115,100,113,99,108,112,99,120,112,105,102,107,114,105,114,110,97,115,116,102,103,103,101,107,105,117,118,110,123,133,106,113,110,109,78,87,120,109,100,103,105,108,109,98,104,106,105,105,111,94,116,112,108,104,103,106,99,103,107,117,103,87,103,94,109,111,101,98,92,102,101,97,101,98,111,108,113,116,109,100,93,104,101,118,116,101,108,116,97,117,103,107,111,105,108,109,106,104,109,106,108,94,107,104,99,87,103,99,103,105,103,104,102,132,103,107,111,108,112,104,102,101,120,110,98,107,110,115,99,116,111,111,102,109,109,95,107,107,108,105,116,101,101,113,104,107,106,105,114,91,102,104,98,95,111,116,83,106,106,97,97,107,112,112,104,108,109,106,107,106,107,99,97,100,109,111,102,110,117,107,95,99,98,100,108,97,109,109,99,105,104,110,97,112,112,116,84,119,102,111,111,99,122,104,100,110,112,80,129,105,109,116,114,107,106,103,105,99,112,107,117,103,100,96,109,113,99,109,112,109,112,109,98,103,120,105,105,101,114,105,95,107,106,104,102,100,107,121,108,95,106,108,78,114,98,104,112,111,113,108,102,103,108,108,110,103,106,110,101,99,102,104,100,83,114,108,104,100,110,105,99,112,103,115,99,117,94,101,122,104,117,105,98,79,112,104,137,103,104,102,98,101,98,103,110,110,113,106,106,108,104,96,118,109,107,113,87,106,111,112,110,95,107,105,123,109,110,76,107,104,108,103,106,111,115,109,108,111,110,102,105,109,109,100,103,113,101,116,111,98,107,106,106,106,117,106,116,102,104,102,111,111,96,114,113,111,109,105,110,99,117,105,113,116,99,99,103,121,106,103,111,108,116,99,97,99,103,100,105,108,119,106,109,100,97,112,117,108,104,109,105,98,117,115,101,108,104,94,98,109,106,110,96,104,103,107,117,99,108,104,117,101,114,106,115,110,98,108,104,105,93,99,97,109,96,109,93,107,111,72,105,93,113,106,106,114,105,109,94,107,113,99,101,102,107,108,108,109,111,106,107,111,101,100,102,108,83,108,105,101,103,100,109,108,109,109,107,105,92,99,99,99,94,100,100,108,98,112,109,108,98,104,103,100,114,111,117,100,100,105,111,99,109,101,99,108,109,108,90,102,107,105,117,105,117,98,106,106,90,98,97,96,99,103,102,96,109,102,108,101,94,101,98,105,102,112,99,100,113,107,95,109,77,102,101,99,99,123,102,117,97,105,102,112,118,103,102,112,108,111,103,107,101,116,107,106,83,116,106,112,111,100,107,102,107,106,108,114,109,102,102,109,100,106,109,109,109,97,131,105,96,94,112,109,103,105,104,93,107,107,89,102,99,114,103,99,102,102,99,106,115,98,100,113,116,94,108,118,113,111,114,89,110,103,88,109,100,67,106,110,109,98,105,99,97,103,120,105,110,95,103,125,103,88,100,108,110,118,106,101,93,113,103,109,113,102,104,108,104,96,114,96,107,105,95,95,116,103,108,106,104,107,120,97,104,109,117,110,95,115,92,107,114,112,107,104,106,102,106,112,102,108,116,94,111,102,104,104,118,104,102,113,107,109,101,115,98,96,91,99,93,96,112,98,120,98,102,97,111,107,95,108,98,103,107,97,110,104,111,106,99,114,113,99,91,110,98,105,103,105,114,116,108,109,103,91,106,109,101,109,104,106,101,114,106,99,112,108,99,102,87,93,100,90,98,124,100,103,100,105,108,89,104,108,91,96,99,109,103,109,114,107,100,91,103,115,100,99,113,104,92,104,104,104,102,109,107,111,103,96,120,100,107,113,110,103,117,124,112,100,102,127,101,107,91,114,100,106,115,102,94,95,100,90,106,104,114,101,95,94,99,102,101,96,105,101,96,113,104,99,97,102,101,107,113,109,114,108,98,113,99,95,88,94,106,112,92,113,110,99,96,108,100,93,91,98,118,93,108,108,104,106,91,99,99,103,91,96,98,96,98,109,94,96,103,97,108,98,109,103,100,96,91,112,103,103,101,94,112,109,99,103,101,106,114,107,95,98,103,107,95,123,92,111,104,106,99,114,91,112,82,117,105,105,109,98,107,90,102, +531.40912,118,95,78,109,99,116,95,92,99,95,104,99,99,97,107,93,93,111,102,107,111,108,102,104,104,103,102,103,95,108,103,104,101,113,81,125,96,110,98,93,97,106,70,109,107,106,94,103,100,109,98,98,101,112,106,105,99,100,113,92,101,107,101,99,100,103,91,74,109,90,100,94,101,106,105,110,97,100,117,104,107,108,100,114,99,105,98,95,93,100,110,96,94,102,101,106,103,106,73,102,105,106,90,105,103,111,103,105,106,102,110,102,103,95,104,105,116,94,106,105,104,100,95,93,101,88,115,127,117,109,102,104,94,104,109,107,100,116,110,114,91,94,98,103,97,97,108,89,103,98,94,107,99,83,95,102,106,95,96,101,107,135,114,112,110,105,115,100,99,105,91,103,90,98,115,104,93,89,103,102,98,91,97,99,114,110,106,97,102,112,107,99,95,109,100,101,92,112,104,113,106,99,102,104,94,116,98,121,112,95,110,113,113,115,101,109,104,106,111,108,108,104,100,103,109,110,99,102,135,102,96,95,107,92,100,109,114,113,97,98,91,109,113,102,102,101,93,107,96,95,99,100,99,103,95,71,99,102,116,107,93,98,106,92,99,111,104,116,103,96,108,109,108,113,100,110,103,100,94,104,109,109,104,105,93,113,110,100,112,106,87,114,103,113,101,104,102,105,108,100,104,102,106,108,103,115,105,112,112,87,104,102,102,114,100,98,100,103,115,121,110,112,106,99,103,101,113,98,112,109,112,107,97,103,108,101,99,96,90,104,97,102,105,101,108,102,98,99,101,98,98,97,106,121,106,104,104,101,96,106,95,102,103,104,101,88,96,110,107,96,105,114,107,114,104,112,108,119,100,117,111,111,112,99,111,102,102,106,105,102,113,107,98,113,98,98,97,106,109,106,101,104,90,84,108,116,108,107,93,102,105,104,101,113,102,107,117,105,104,101,102,116,95,113,101,105,100,101,118,108,98,112,105,99,94,102,121,103,112,104,121,107,105,98,100,86,100,102,112,108,104,66,99,103,120,99,103,100,99,94,94,97,117,109,109,98,99,105,110,105,120,110,112,124,102,106,98,70,107,92,107,108,99,115,97,108,96,109,99,95,104,115,113,113,99,104,98,104,86,117,113,113,98,107,100,113,109,108,101,109,120,107,101,108,105,106,95,104,103,110,97,99,102,111,116,109,77,115,94,96,104,118,117,110,115,122,106,101,95,110,91,108,100,110,102,105,105,101,121,97,92,101,98,103,109,100,101,106,116,102,110,104,104,102,98,105,100,96,110,101,117,110,96,108,104,103,102,112,96,113,120,105,110,107,119,97,87,113,118,96,106,103,105,102,89,99,102,116,108,100,103,106,107,109,107,91,123,98,106,112,100,97,118,97,102,106,115,110,108,116,91,106,102,103,134,109,103,82,121,102,107,100,103,104,112,117,103,93,109,100,115,105,99,99,90,98,98,117,108,106,103,109,100,114,104,120,95,108,113,100,110,106,105,113,98,102,110,93,98,106,110,121,109,113,108,109,108,111,110,98,124,112,100,102,97,105,107,105,102,101,99,110,94,103,103,106,117,110,104,92,95,110,105,102,96,115,120,106,104,120,98,103,105,100,121,107,87,102,115,107,107,99,106,106,95,113,107,98,110,93,103,106,110,89,101,101,105,96,116,102,105,90,101,101,108,103,103,97,103,106,110,99,92,121,117,98,103,99,111,102,105,104,104,101,86,105,90,108,110,97,99,90,99,103,110,102,109,107,113,100,107,99,109,119,103,122,107,109,111,124,100,108,121,90,97,96,99,109,116,123,107,110,108,114,107,104,104,99,113,113,108,112,101,106,113,103,107,100,106,109,101,95,105,101,107,100,114,112,121,108,108,102,121,108,111,97,106,121,110,98,99,104,105,103,95,98,101,102,108,98,100,109,94,103,100,109,101,103,93,91,91,111,98,105,120,99,104,106,112,89,102,116,103,105,104,108,105,104,107,110,108,106,98,115,106,105,93,114,105,99,100,96,106,101,96,101,107,95,99,120,108,125,123,102,94,99,88,103,106,83,108,108,104,108,106,100,107,107,107,101,107,108,110,101,114,99,112,99,97,102,105,107,110,107,99,104,97,98,103,103,107,102,107,104,98,103,105,114,106,103,98,105,117,98,104,102,116,102,108,120,109,116,76,101,94,113,103,111,108,108,117,102,103,104,97,97,110,88,96,101,101,103,101,113,107,86,108,105,103,114,104,100,96,105,107,105,104,110,107,99,106,88,95,91,112,121,108,124,89,110,99,98,124,111,108,102,105,92,106,112,112,106,108,95,106,103,75,108,105,95,101,108,114,99,105,96,116,117,103,75,97,108,103,105,88,105,99,94,97,111,97,111,91,95,114,120,101,112,106,111,106,102,101,108,107,119,102,106,100,116,101,107,101,117,111,99,113,109,97,95,97,114,101,109,101,113,95,98,107,94,105,104,102,99,98,100,113,94,101,106,110,98,105,108,103,104,104,112,105,100,111,112,96,108,103,124,107,91,101,101,108,96,103,88,106,107,108,101,106,100,105,98,100,96,106,103,112,89,95,105,106,88,104,116,91,104,100,105,103,120,117,97,103,98,101,123,106,102,97,96,109,102,99,105,103,105,116,89,113,92,106,106,108,114,103,106,94,95,109,106,97,110,90,99,111,112,107,109,89,105,102,101,103,89,99,106,97,101,107,104,101,117,112,112,107,101,105,109,99,81,110,106,103,118,120,107,105,106,105,96,104,114,86,102,101,114,109,103,104,91,103,109,109,111,98,98,94,101,110,117,103,113,104,94,97,99,104,109,104,107,102,116,109,110,103,124,106,106,104,98,102,114,118,109,103,88,105,105,95,101,113,100,102,112,106,108,110,121,104,109,96,108,106,102,106,95,113,89,114,105,102,101,102,117,103,103,93,105,107,90,106,106,104,98,101,109,109,111,92,112,106,103,110,105,106,108,105,118,117,109,113,109,118,94,109,104,112,98,103,86,109,104,97,96,104,108,116,115,96,98,106,107,112,116,106,96,108,98,133,107,102,108,101,99,87,109,106,96,107,93,113,119,117,96,104,95,96,111,110,104,90,105,103,110,100,98,112,112,97,91,107,104,75,108,110,104,109,100,108,112,102,106,111,105,107,102,104,117,100,115,89,112,121,102,96,107,107,104,116,112,108,98,109,100,102,127,95,102,91,102,119,116,87,95,89,96,111,106,103,103,112,113,105,107,108,99,102,99,106,104,121,106,92,103,112,93,109,106,107,102,108,102,101,94,100,100,109,108,98,114,106,110,103,111,112,109,90,108,91,101,96,103,106,107,100,100,109,113,109,104,98,111,108,107,104,92,110,107,111,97,113,95,106,107,105,102,104,111,107,98,103,106,108,108,108,109,112,98,102,109,91,93,93,101,106,108,108,110,102,95,100,116,104,103,102,111,120,108,121,99,109,105,107,105,94,104,112,112,116,100,106,111,95,128,110,102,110,102,100,107,85,108,95,101,89,94,116,106,99,104,99,109,114,98,117,112,105,91,99,111,112,104,112,98,104,95,100,111,111,100,94,104,100,109,108,100,114,93,106,115,87,111,101,109,106,96,115,104,118,99,102,98,102,109,108,92,104,105,105,108,77,111,91,108,97,104,108,104,105,108,117,111,94,108,105,99,109,117,131,105,103,99,110,106,101,109,116,110,106,110,96,117,98,110,123,97,110,87,106,122,117,105,100,95,105,108,74,88,112,106,100,116,94,95,108,110,104,111,111,114,109,113,117,104,105,99,116,110,104,94,117,100,103,112,95,106,96,119,92,109,107,101,96,100,99,104,107,95,114,108,102,108,112,110,106,106,113,90,110,95,99,132,99,105,100,103,104,107,95,105,100,83,106,101,109,103,102,95,107,105,111,102,107,106,103,115,111,108,96,103,96,107,87,109,100,99,105,111,106,120,133,106,100,108,104,101,106,109,110,98,99,102,102,101,125,104,106,102,100,110,109,115,104,106,109,108,115,111,93,99,114,98,96,99,102,108,80,100,115,112,109,103,117,124,97,110,104,117,106,114,105,109,107,104,107,119,104,121,104,100,115,106,103,114,114,108,104,117,109,99,99,103,112,109,112,100,100,102,106,104,105,112,104,96,108,93,114,115,90,95,100,113,100,113,104,105,111,104,118,83,121,95,92,102,117,105,99,105,96,108,116,102,122,111,98,84,105,102,98,101,100,108,112,105,91,112,94,108,107,101,119,105,108,110,112,105,105,105,99,113,105,95,118,92,109,105,104,100,104,115,102,112,111,106,109,110,101,116,107,98,98,91,106,105,115,122,106,109,114,108,101,105,104,117,107,100,117,102,117,104,112,98,92,101,106,97,94,99,101,95,96,95,104,112,100,112,105,99,109,114,116,87,111,100,97,91,101,97,107,115,105,100,93,100,106,109,107,96,109,95,95,101,119,107,104,105,88,103,105,105,99,89,109,100,107,93,96,102,94,102,91,97,110,101,106,113,111,120,103,104,116,112,96,116,104,102,91,102,101,105,103,104,100,108,103,111,111,92,97,104,113,103,107,122,95,106,103,99,105,110,95,102,109,97,117,91,98,102,96,112,102,106,98,91,116,109,105,98,102,91,96,101,107,114,100,98,99,80,83,92,104,108,95,110,102,87,96,92,132,94,102,109,119,109,96,95,100,95,100,100,101,109,83,98,113,110,113,98,112,99,100,101,100,97,118,118,102,115,104,95,113,83,97,103,97,107,104,108,105,78,101,106,102,94,101,95,99,109,99,97,103,98,103,102,121,98,99,113,105,111,110,93,107,106,102,96,108,96,93,96,94,104,102,100,89,104,110,99,109,107,115,108,99,121,120,94,102,99,89,118, +531.54993,104,110,109,105,99,105,104,105,104,98,101,109,101,109,109,106,103,106,109,108,104,102,95,99,108,106,96,86,105,117,106,94,90,94,107,90,95,104,101,78,100,105,102,97,113,101,98,99,104,105,129,107,107,98,100,104,109,91,115,98,102,105,103,96,112,113,107,108,97,91,107,96,98,107,93,107,82,108,119,101,98,93,94,94,95,95,120,113,90,110,107,110,114,108,98,95,102,103,109,102,107,104,109,98,109,96,106,102,92,100,97,96,93,105,105,93,100,98,117,113,102,93,102,100,104,117,101,110,105,105,107,118,107,100,110,102,96,104,106,84,79,106,98,109,97,102,98,90,86,101,96,104,101,100,94,104,99,107,104,108,99,105,109,77,100,108,99,103,108,98,91,103,100,107,103,104,107,105,100,106,101,102,104,85,103,99,102,104,107,105,94,113,93,84,112,103,113,107,104,108,104,103,101,102,110,100,100,105,115,106,111,110,91,102,109,84,104,114,97,103,104,102,108,105,100,107,101,118,104,108,104,100,101,105,117,106,104,104,104,114,110,101,105,78,103,106,90,112,106,94,95,120,102,110,98,103,100,99,95,108,94,98,95,95,101,79,104,112,116,86,105,98,100,120,78,92,104,96,101,108,111,120,99,99,113,99,97,110,110,98,113,108,105,108,113,111,106,110,101,108,109,109,104,106,95,101,107,104,119,107,95,118,103,108,115,102,104,103,102,105,126,100,108,104,107,103,101,92,107,112,101,93,100,107,107,118,100,83,106,104,107,104,102,96,116,115,110,101,116,119,116,103,101,103,117,114,102,108,106,94,102,105,90,96,113,107,112,111,92,122,101,126,106,109,110,97,106,103,119,123,101,102,111,113,103,100,83,96,100,101,117,99,92,110,116,100,106,97,95,112,98,104,113,109,107,100,111,112,107,101,96,116,104,123,102,107,100,102,107,98,112,100,106,106,98,104,103,105,96,118,105,95,111,109,109,100,117,111,114,95,112,106,108,109,100,110,107,103,114,113,105,103,108,107,117,94,99,95,114,102,102,107,110,116,109,113,108,120,102,89,100,110,99,98,104,101,113,111,103,103,107,105,116,91,120,131,115,97,100,112,106,106,113,104,98,94,91,109,113,122,107,100,106,96,118,108,104,113,115,98,99,117,110,116,119,110,96,96,86,101,120,97,101,108,121,107,123,103,110,110,96,102,81,102,111,102,117,90,110,109,112,107,100,101,113,104,100,96,122,114,115,107,108,92,100,107,110,104,112,107,111,108,111,116,108,107,105,109,106,82,98,103,111,106,101,102,102,103,84,102,112,100,102,97,116,112,105,113,120,104,105,108,96,113,106,115,103,127,114,102,106,104,94,103,99,106,118,103,108,108,109,103,120,102,96,99,110,105,103,118,115,105,104,115,121,105,103,105,106,102,107,122,98,93,102,100,97,97,106,109,107,99,84,105,105,96,90,108,104,84,110,115,103,112,97,119,103,111,115,102,103,100,109,111,96,106,111,102,109,106,111,99,108,110,98,124,113,115,102,99,110,107,102,104,95,100,93,108,104,123,110,114,110,109,118,100,95,121,100,106,87,102,106,108,95,108,96,105,93,106,108,112,102,102,106,100,100,99,73,103,101,99,107,107,110,103,104,97,103,109,109,99,97,105,71,108,105,97,108,107,102,106,110,97,108,102,101,107,109,98,104,95,100,110,111,112,110,107,91,102,107,103,100,102,99,111,116,110,100,99,107,105,103,109,95,118,113,108,116,98,117,109,102,124,73,109,101,111,99,104,110,108,94,105,103,107,101,96,105,105,99,109,102,93,98,102,106,105,100,106,103,119,104,104,113,79,117,100,115,84,100,112,109,107,98,100,94,98,94,100,99,98,103,103,108,108,112,105,105,109,111,105,99,107,93,107,110,89,103,103,112,99,100,106,99,113,118,110,98,106,110,106,113,113,97,104,99,109,93,74,101,108,116,111,99,99,102,101,113,96,105,105,105,96,80,105,106,109,110,99,103,107,107,108,100,117,86,98,113,102,95,103,98,96,103,112,94,105,108,102,103,119,109,97,105,102,98,120,121,95,110,98,102,106,99,112,110,109,105,105,103,106,105,109,110,103,102,100,106,98,108,111,103,96,101,107,101,121,103,106,104,99,100,120,108,102,100,109,94,110,114,99,113,103,112,78,90,102,101,112,99,110,111,105,96,111,105,119,105,105,99,117,94,106,100,99,96,100,105,104,118,107,103,105,101,84,108,111,102,110,116,100,100,99,112,102,118,102,88,95,99,105,90,101,99,108,91,102,124,104,110,109,112,86,106,106,107,108,95,110,118,127,108,110,113,99,105,109,109,109,104,107,109,106,96,112,104,107,106,99,100,75,112,111,109,100,110,118,88,109,117,104,98,104,104,108,110,97,99,112,121,118,117,109,108,90,99,106,93,97,95,100,113,101,103,110,111,100,111,102,108,101,111,110,105,106,110,104,102,104,113,98,110,105,102,107,111,112,133,93,99,103,96,99,104,103,105,96,108,109,106,102,102,103,112,99,95,106,108,108,112,120,113,101,109,110,98,94,96,99,112,103,96,105,111,99,101,116,106,109,116,114,108,108,110,106,111,104,109,116,114,91,104,97,104,100,100,92,106,104,125,113,91,104,102,105,100,102,100,104,104,114,99,83,105,106,110,103,108,115,103,110,112,106,106,113,100,106,98,104,111,93,122,121,124,104,113,101,125,106,82,103,99,117,100,105,116,68,99,113,97,120,95,113,105,113,99,113,114,107,102,117,102,113,109,96,112,112,104,114,110,85,113,99,112,112,100,121,104,107,97,106,115,109,109,107,104,109,108,110,102,83,116,104,117,77,95,106,106,113,116,108,101,110,99,111,100,87,100,97,98,107,97,104,112,104,100,100,110,100,107,110,106,109,102,110,101,108,99,95,101,108,97,105,102,105,101,116,113,105,110,107,101,118,108,113,110,100,109,99,113,97,96,109,106,101,114,106,100,105,113,100,102,115,95,104,111,91,115,107,96,115,107,108,104,104,103,99,83,109,107,103,98,94,103,109,112,105,112,96,114,100,106,95,117,103,113,102,109,97,106,101,110,113,121,99,97,113,107,95,100,97,103,90,116,103,110,70,114,101,95,94,98,99,102,107,106,116,116,104,104,103,99,107,96,109,100,103,121,106,107,99,94,113,105,105,90,106,102,102,110,90,112,106,117,110,103,105,107,109,106,105,100,104,112,102,108,109,119,98,105,106,113,106,121,109,98,95,119,108,101,100,104,104,102,111,119,112,106,95,113,103,107,107,113,98,104,102,106,109,108,108,103,100,106,112,106,111,98,116,99,88,101,109,100,107,104,105,106,106,117,109,91,103,108,103,97,116,110,100,110,113,111,103,116,104,105,132,108,109,99,109,103,98,103,124,95,72,114,106,107,98,102,108,103,105,124,100,99,98,114,109,112,106,109,112,101,107,100,102,117,104,109,119,99,102,98,113,103,97,103,103,103,107,102,109,112,98,103,106,105,100,110,115,108,106,106,111,113,123,111,101,105,110,104,119,101,102,96,115,102,107,105,94,109,102,109,110,109,105,104,104,111,116,99,111,109,103,107,99,114,112,110,112,107,102,108,100,106,110,106,102,114,120,112,112,91,111,103,109,80,112,106,114,104,100,100,109,103,98,105,106,112,112,107,98,108,109,111,100,102,106,98,105,104,103,121,94,102,97,139,100,105,104,97,101,99,106,93,101,110,109,116,95,107,106,107,88,110,109,100,114,104,113,103,105,102,109,95,121,132,97,98,110,113,104,115,100,72,124,121,116,99,109,96,93,108,100,115,106,112,112,103,105,115,104,110,107,92,102,97,111,106,105,114,106,111,91,109,108,103,92,102,117,108,110,99,104,114,109,117,111,110,108,106,112,104,99,111,108,107,102,107,120,98,103,104,93,105,108,101,102,104,105,98,99,100,101,97,115,109,107,115,100,113,103,99,103,109,105,112,108,109,100,105,109,104,101,107,100,113,102,90,112,112,86,114,107,110,106,97,108,104,110,106,97,110,108,108,108,111,93,94,112,117,110,91,107,93,110,105,105,106,107,95,114,110,114,103,107,96,95,107,110,103,109,104,103,107,106,112,95,99,104,96,107,109,104,100,92,99,106,99,105,108,112,103,107,96,101,127,118,116,97,98,111,111,102,108,104,112,87,99,112,83,107,117,114,98,96,111,102,107,107,86,110,107,93,103,119,111,107,125,98,117,115,115,101,99,102,98,111,111,113,111,111,106,119,105,102,115,108,114,107,105,106,101,103,94,103,101,107,108,109,97,111,114,109,116,108,109,99,107,111,103,105,103,116,108,116,107,115,104,113,106,103,112,108,83,103,109,101,113,99,89,102,96,106,106,89,105,116,103,102,103,105,100,106,105,112,97,108,105,116,114,113,97,101,110,93,97,96,115,135,104,105,114,100,101,105,116,94,103,107,116,99,112,125,95,107,107,109,105,106,99,90,99,111,109,102,113,96,99,96,111,103,107,103,105,107,105,100,105,108,104,113,107,110,103,108,98,102,106,100,109,110,105,110,104,105,75,96,94,96,110,107,114,97,95,102,107,101,105,108,112,106,106,97,111,108,100,100,109,107,102,109,97,105,85,123,100,106,116,90,100,100,108,112,111,92,116,127,101,119,103,90,105,106,105,101,92,107,120,95,106,104,112,98,98,105,99,104,119,107,108,105,103,104,98,104,103,95,102,107,106,101,140,102,97,99,96,113,101,99,101,98,93,81,112,98,107,91,102,83,116,98,99,116,117,105,112,106,112,115,120,110,106,103,97,106,92,110,87,103,99,118,109,102,119,101,113,91,109,110,101,108,109,103,103,88, +531.69067,139,98,76,94,97,111,110,108,96,96,77,91,99,94,93,106,113,90,112,99,109,91,100,93,103,110,112,112,95,101,86,116,88,99,94,111,103,107,100,119,111,98,110,80,69,108,100,118,71,87,114,87,100,105,95,103,100,113,107,97,106,116,103,94,96,107,104,109,92,106,113,123,107,115,102,96,108,104,96,107,94,100,101,132,100,95,109,110,88,113,98,98,103,92,112,99,113,101,96,93,106,88,113,99,108,96,98,113,113,98,103,110,114,103,104,103,100,104,103,108,97,104,110,100,107,113,91,98,105,108,103,104,100,110,118,96,115,95,106,102,98,110,94,98,110,108,117,92,88,99,104,99,94,108,108,100,114,96,99,114,109,110,104,107,117,97,105,102,120,105,106,104,104,104,112,99,111,101,106,98,113,107,105,104,109,103,106,95,108,122,117,95,79,104,122,93,106,122,97,98,106,104,97,105,105,108,101,110,99,110,102,107,74,116,115,100,93,97,104,110,105,105,111,107,110,103,100,110,104,111,100,88,106,108,96,106,101,117,103,100,113,94,108,112,103,127,99,119,94,102,107,99,102,101,101,112,106,117,105,110,101,108,102,105,99,107,107,106,110,107,102,116,104,67,100,99,99,110,100,98,111,103,112,109,109,106,90,94,105,99,102,99,108,109,88,111,106,103,111,107,108,106,104,106,103,107,120,118,112,117,106,112,101,104,140,110,112,109,105,94,106,106,113,113,115,103,105,109,113,105,115,109,104,102,110,112,103,113,111,94,111,99,98,111,105,104,104,104,112,100,109,96,98,106,103,104,113,126,108,73,101,97,122,103,103,103,99,106,101,111,89,113,102,101,104,101,115,105,110,109,117,109,102,119,99,102,103,100,103,102,108,98,103,111,104,110,110,102,110,110,105,101,106,102,102,109,95,100,103,106,105,101,100,124,106,94,95,120,103,98,94,106,118,105,114,99,116,93,106,108,82,114,109,117,109,112,106,106,100,104,108,103,113,95,107,97,107,104,104,101,100,106,111,96,103,104,107,93,122,100,94,100,105,115,109,102,109,108,102,104,108,109,94,112,107,95,105,111,104,97,101,97,118,104,109,99,92,115,107,100,107,105,95,107,98,100,104,107,116,117,93,95,105,95,100,110,100,94,105,107,110,105,101,109,114,105,103,100,106,101,95,105,108,109,96,105,117,108,99,96,101,105,116,105,106,128,101,100,107,104,93,105,99,92,111,105,103,112,108,99,107,121,108,109,92,99,110,101,106,114,97,104,100,109,105,88,103,106,102,99,111,107,115,109,104,105,107,105,105,101,100,98,108,98,101,104,112,106,97,98,100,115,109,106,111,98,101,107,109,115,112,99,99,111,101,110,113,109,104,104,98,111,112,109,109,105,105,105,109,107,109,104,100,110,116,112,102,112,92,114,110,100,100,104,99,102,113,107,104,115,103,116,111,98,104,93,90,106,104,93,101,112,111,105,109,111,117,105,101,113,118,108,102,114,104,109,109,107,107,114,120,105,95,102,106,114,103,105,112,101,106,96,103,101,91,119,101,105,92,104,87,111,108,110,105,104,107,103,110,103,115,95,93,109,105,110,128,108,115,112,105,97,100,97,106,102,109,117,104,103,106,99,114,115,99,103,103,121,118,110,100,113,103,112,105,104,108,103,105,108,111,111,100,100,109,104,103,99,109,98,106,118,91,110,101,99,104,103,107,99,104,116,110,102,100,120,105,118,101,108,102,101,116,103,94,108,110,104,113,100,103,111,112,94,98,107,102,116,101,115,111,105,97,99,96,103,101,108,87,106,107,109,110,104,109,110,104,102,109,111,131,112,106,100,109,97,111,99,99,109,111,98,110,90,110,111,107,102,110,106,103,104,104,102,110,113,100,102,111,109,96,108,111,102,110,98,107,99,89,112,104,110,104,105,101,103,102,95,96,112,106,113,101,106,102,94,81,114,107,100,102,104,102,99,112,104,101,107,106,123,135,105,106,113,111,109,107,111,116,114,106,110,96,93,106,105,103,120,102,101,92,99,103,103,99,105,107,109,106,103,110,112,104,98,110,88,114,117,111,115,99,99,109,91,111,91,104,105,102,107,108,95,103,106,112,101,86,101,109,105,109,106,104,91,108,111,103,107,103,112,111,114,118,97,112,116,100,108,114,103,121,103,98,105,100,113,108,108,101,101,97,105,110,116,108,113,103,99,100,107,109,106,106,111,103,105,114,114,108,116,110,106,120,95,109,100,100,108,95,104,101,98,94,115,113,109,98,115,128,100,86,105,98,105,101,97,107,103,99,113,114,108,102,97,106,114,96,103,103,99,82,96,95,99,103,100,108,101,109,102,114,107,105,98,109,100,108,93,117,117,113,110,105,99,116,100,110,102,107,112,115,111,111,104,105,97,108,109,109,95,91,107,99,108,103,108,93,108,104,104,96,103,97,116,106,101,102,103,106,99,101,110,121,101,105,87,110,103,111,99,106,85,116,106,112,111,104,101,112,99,107,115,116,101,108,107,108,93,98,120,105,111,108,91,99,106,106,102,109,116,101,117,128,106,99,100,103,94,101,94,95,102,87,108,97,98,110,112,103,115,102,98,105,107,98,113,106,108,105,106,107,90,113,107,103,101,107,98,95,114,106,109,106,112,109,101,108,101,101,88,109,105,115,110,96,106,106,103,109,120,103,104,114,100,83,112,105,108,103,95,93,90,105,94,109,117,126,111,96,92,102,109,101,110,117,107,99,117,109,102,120,107,105,110,75,108,96,115,87,98,94,106,104,103,103,100,101,102,111,108,99,83,107,100,98,115,106,90,101,100,108,100,107,102,102,100,96,107,105,107,106,109,102,117,122,99,113,100,106,106,120,107,100,115,115,105,109,105,106,105,104,80,110,112,107,107,98,93,117,116,96,116,112,95,100,106,95,96,111,98,105,103,104,135,89,97,108,123,100,93,97,109,104,101,103,106,99,103,118,99,104,93,107,100,102,99,118,100,109,103,112,108,102,103,117,96,104,80,120,100,95,104,99,109,113,116,94,104,101,110,108,92,95,92,102,94,103,98,88,111,107,102,115,103,105,95,119,125,108,101,103,89,96,110,100,126,94,94,105,113,101,115,103,97,95,102,113,110,106,105,90,102,98,105,103,109,101,104,125,105,99,94,100,98,99,102,99,106,90,103,109,100,101,97,99,82,96,102,101,110,98,103,94,96,113,119,104,96,99,95,109,110,99,108,104,98,99,108,97,99,94,97,112,102,109,106,105,106,124,99,106,120,109,108,107,145,107,112,109,99,103,109,100,109,113,104,95,87,102,98,107,110,109,101,100,110,103,106,103,106,111,120,115,106,103,102,133,105,105,104,96,112,108,102,102,107,93,125,113,108,110,104,114,98,106,102,108,98,107,108,105,102,105,104,103,106,117,111,100,117,106,106,104,105,109,104,102,119,100,107,99,106,100,109,109,106,110,114,104,108,104,104,95,82,109,114,89,108,100,92,108,102,109,97,110,106,110,94,100,112,101,116,110,99,99,118,111,105,113,104,103,98,99,105,103,120,115,101,114,79,102,101,110,88,105,102,102,108,105,107,103,115,104,108,111,94,109,121,106,107,97,105,109,92,99,100,106,104,114,96,96,98,103,100,93,109,107,121,105,118,103,104,99,116,96,100,85,111,86,91,112,121,101,112,100,85,103,94,96,105,98,107,106,105,119,99,114,105,92,106,100,87,102,96,91,103,117,113,112,98,99,106,97,105,103,107,102,79,111,119,98,107,109,109,116,96,108,109,106,100,107,95,113,104,106,103,104,109,100,106,75,107,115,112,91,100,107,104,112,96,109,101,105,102,111,109,92,108,101,88,106,101,102,106,100,94,103,102,107,102,100,106,102,86,89,95,106,101,103,107,113,103,109,103,99,107,99,114,127,103,97,102,103,100,100,107,97,115,108,98,97,111,111,97,100,97,105,102,112,86,101,100,106,103,109,100,88,101,122,94,104,99,104,114,97,94,110,118,99,100,90,104,98,89,104,97,98,126,102,111,108,112,105,103,91,107,94,97,102,113,122,101,100,99,106,106,101,97,97,98,116,112,108,103,101,102,105,101,103,106,109,101,103,92,100,98,121,117,101,94,100,97,88,98,105,91,104,109,99,99,109,104,122,100,110,106,88,107,107,116,98,106,103,104,103,114,95,109,113,115,108,101,111,107,99,105,106,111,134,82,103,97,113,104,102,98,103,114,105,88,101,96,109,102,101,105,103,101,105,108,104,102,104,104,104,99,109,95,112,105,113,113,108,103,95,96,106,97,79,102,116,100,103,104,100,100,108,112,106,110,104,108,100,100,103,112,109,109,100,118,94,94,113,110,105,110,112,111,100,106,95,111,104,109,98,99,98,104,105,98,109,105,102,91,105,114,97,87,115,95,106,105,101,110,99,105,89,108,106,100,93,101,107,117,99,110,104,106,111,92,93,115,96,95,113,103,109,109,103,101,91,97,93,115,99,90,111,97,100,102,101,111,100,101,112,107,102,105,109,97,103,95,108,87,104,108,102,102,107,121,105,95,109,97,117,115,101,131,108,106,97,102,112,102,104,121,106,101,95,98,118,105,98,115,98,104,97,103,112,101,103,110,92,100,96,95,93,105,104,93,99,95,104,108,102,91,100,110,106,99,113,113,107,99,97,98,99,94,112,94,101,99,113,109,106,99,100,116,99,103,113,99,109,86,104,93,109,95,102,107,117,103,92,113,127,106,108,99,128,113,76,106,97,98,102,99,99,97,104,95,98,105,100,89,115,97,102,115,95,115,114,81,114,108,104,115,104,104,95,65,103,102,74,113,106,113,82,103,107,97,110,107,97,104,116,101,107,115,92,109, +531.83142,105,131,96,100,96,117,91,100,99,107,96,104,79,112,111,107,111,102,105,82,110,99,107,108,98,114,99,98,103,107,94,94,102,103,104,103,105,89,98,107,102,116,74,109,108,112,94,112,114,87,92,100,100,105,102,106,108,84,89,101,114,107,101,97,95,80,104,86,119,112,120,118,107,116,108,116,90,109,116,96,114,112,94,98,107,104,114,73,106,105,103,70,93,99,102,104,105,104,108,111,120,109,88,119,104,101,106,109,110,97,119,106,101,100,101,104,109,109,107,109,97,96,94,109,102,125,107,94,111,96,108,110,107,101,102,106,106,102,107,105,103,102,106,100,116,110,110,122,106,105,107,98,101,105,90,95,107,103,118,107,99,109,109,128,106,102,104,96,99,73,113,92,95,113,107,78,117,100,109,94,104,98,98,113,104,109,90,86,108,104,107,108,96,105,99,128,104,112,94,113,101,104,103,102,109,101,106,109,97,118,85,109,108,106,91,103,90,99,96,100,118,107,106,108,95,105,109,114,107,114,93,107,105,105,101,114,110,110,102,99,99,97,113,107,97,111,103,106,102,118,104,110,106,97,125,111,75,108,104,95,118,103,103,104,88,100,110,98,103,99,105,106,109,95,103,106,98,109,100,97,100,106,115,108,87,119,104,102,93,109,101,110,105,110,104,105,99,119,111,102,108,109,103,114,96,111,107,111,107,113,103,118,101,111,110,103,121,112,101,113,110,107,106,114,104,104,104,94,121,107,104,95,101,108,100,110,102,96,99,109,104,114,70,90,110,96,102,108,113,93,103,100,112,108,100,114,123,103,114,110,91,104,107,90,108,113,106,108,106,107,108,89,107,99,102,105,97,105,96,112,108,109,101,92,105,101,100,103,98,104,108,112,98,97,101,109,115,96,104,115,103,102,97,97,104,98,88,121,105,120,102,91,99,103,114,96,106,98,108,102,107,101,98,109,94,98,99,103,99,110,100,103,104,108,112,97,101,111,110,100,93,105,103,103,100,105,100,91,106,101,109,103,114,111,97,114,124,104,118,102,110,100,91,106,116,109,110,109,109,108,101,107,96,110,110,100,104,112,104,109,116,127,105,108,105,96,116,96,98,110,95,107,104,102,102,106,109,115,96,109,109,90,81,102,122,105,107,113,113,101,107,120,97,90,109,94,102,107,90,108,102,99,100,106,96,100,104,104,110,106,90,109,108,110,100,102,92,94,109,103,102,107,98,101,112,114,118,95,91,93,112,97,101,102,105,93,106,106,105,100,104,117,103,114,115,107,100,103,103,109,97,97,104,109,112,99,107,97,110,114,93,101,119,100,102,109,105,104,110,81,109,98,110,99,105,107,104,112,108,101,98,118,95,109,105,102,101,101,95,121,112,108,101,103,94,93,125,99,104,103,101,104,99,108,109,92,104,109,90,110,111,110,102,113,99,113,103,96,102,95,113,107,94,112,96,99,106,109,113,110,97,111,112,110,104,117,100,109,104,103,107,105,101,72,122,111,108,103,108,110,108,108,110,102,98,111,112,100,110,117,102,112,119,94,99,114,104,98,97,111,101,103,106,107,109,99,133,99,87,98,112,95,105,122,113,117,119,113,111,102,94,110,98,103,102,109,110,103,104,89,121,104,99,117,99,104,118,96,107,112,101,100,111,101,104,103,103,96,110,100,105,101,102,105,118,98,100,109,100,106,129,104,110,98,105,111,94,108,116,95,112,108,105,102,103,108,110,102,110,111,107,103,115,108,104,118,100,95,90,102,100,91,111,117,101,111,112,96,101,122,109,102,107,116,103,108,112,102,99,112,101,92,110,84,106,86,107,101,106,107,116,100,83,109,113,109,108,114,131,102,110,109,100,109,98,102,97,110,90,91,112,102,95,103,97,110,109,105,108,103,103,117,107,115,100,107,93,104,105,99,103,105,101,109,100,111,102,99,94,106,114,101,95,112,105,109,105,104,111,118,97,119,107,105,95,87,99,115,100,94,108,105,104,106,110,121,90,107,102,104,95,96,115,110,107,107,105,122,100,103,96,112,91,106,92,110,111,104,101,111,108,108,108,109,104,98,90,102,92,108,101,105,114,99,116,110,98,112,129,96,103,109,105,101,106,116,110,106,106,111,110,112,119,90,100,95,100,111,125,106,109,99,117,110,107,87,99,109,94,105,114,112,105,109,109,101,82,106,107,102,104,101,108,100,87,105,111,97,105,99,101,119,106,109,106,109,101,99,97,107,98,112,80,103,99,101,109,124,109,102,99,105,95,101,107,110,98,103,95,104,103,99,98,100,97,110,103,101,110,109,109,100,117,94,102,105,99,102,104,105,106,104,126,97,107,104,104,104,88,101,87,100,99,102,110,99,95,105,105,107,117,95,102,113,100,109,102,106,90,100,105,107,105,101,94,106,98,111,108,106,104,109,104,104,94,83,112,102,92,101,99,102,94,108,109,110,93,98,128,106,118,99,108,106,96,110,115,92,109,107,114,94,98,108,102,109,109,102,99,103,88,120,109,104,99,89,112,105,94,101,107,111,103,96,110,81,103,106,107,107,115,130,104,100,105,80,105,93,101,99,90,109,98,112,110,104,97,103,106,111,92,95,115,102,118,101,108,99,105,100,107,92,102,100,110,98,106,105,110,107,91,112,107,113,105,96,112,99,113,102,98,103,145,114,97,110,106,96,99,105,108,102,106,140,94,106,113,102,107,102,113,87,105,101,104,117,117,109,116,106,112,105,92,117,106,105,112,115,107,102,104,110,103,96,116,109,95,112,102,77,107,96,94,124,116,97,111,107,110,117,114,103,108,107,106,106,120,106,121,104,100,113,89,104,105,101,105,117,114,107,121,99,104,106,102,109,122,110,107,113,115,111,100,113,115,112,102,100,106,111,98,109,108,103,110,106,101,109,108,98,117,103,107,101,110,99,95,122,104,108,108,102,104,105,95,104,107,107,113,100,107,104,96,111,103,110,115,106,108,97,102,96,98,112,106,103,110,99,106,96,94,101,98,120,104,110,113,103,98,112,90,125,116,102,110,103,105,107,103,119,112,112,102,113,92,101,102,112,102,101,125,99,102,96,117,96,112,103,104,103,106,100,114,113,102,103,111,112,112,107,98,100,115,120,99,105,106,115,87,116,107,94,106,104,103,104,110,103,103,107,107,109,99,101,105,112,98,104,101,99,104,119,113,120,113,96,106,98,102,118,108,113,114,99,113,106,101,116,109,108,102,69,109,126,103,98,102,104,106,110,101,110,108,103,90,105,102,99,107,121,108,90,106,105,113,112,121,104,109,99,113,108,116,96,106,110,111,106,102,101,99,91,112,94,110,111,107,96,114,111,107,113,97,104,110,98,111,105,111,94,106,89,103,101,99,107,108,102,106,99,110,116,117,101,104,110,109,112,103,101,88,104,105,98,109,95,116,107,100,98,101,113,115,84,115,108,111,114,112,117,106,105,111,102,101,108,109,109,106,103,98,122,105,106,68,110,122,100,113,103,108,101,115,113,103,109,110,105,96,114,112,105,110,109,103,111,102,92,105,110,116,108,105,99,107,113,96,105,102,101,99,97,101,109,106,95,106,98,105,117,107,106,105,104,115,93,101,120,113,104,99,115,102,110,102,99,100,117,95,108,111,87,100,111,91,110,92,105,105,120,104,111,102,122,95,110,113,105,99,94,119,102,99,111,100,103,106,105,86,103,106,99,98,109,99,111,108,106,109,100,110,98,120,99,108,108,108,109,107,107,107,101,99,104,93,114,101,117,100,111,105,92,94,117,109,108,113,101,105,121,124,103,102,113,105,106,93,94,104,103,102,103,108,97,109,103,114,113,109,98,102,111,96,111,105,106,99,109,97,109,100,113,115,112,107,98,106,103,105,107,104,116,102,109,103,99,108,102,119,100,113,112,111,90,99,106,106,112,120,103,107,107,105,103,102,112,106,111,97,99,100,110,114,89,102,115,105,111,96,97,109,85,101,105,113,109,103,111,112,111,111,95,104,106,101,111,99,108,116,106,105,102,98,91,107,104,99,98,103,103,112,99,99,95,99,111,111,111,107,91,108,115,106,98,102,106,108,113,104,101,104,101,110,120,110,106,111,107,109,105,106,123,109,102,113,108,95,104,66,110,103,103,91,95,98,109,104,102,114,94,105,98,101,108,103,115,104,108,99,111,113,112,114,112,125,94,101,94,114,110,100,103,104,110,99,108,103,115,105,98,104,106,115,97,108,106,112,96,105,104,117,96,113,103,101,109,102,108,107,118,94,124,101,97,113,104,110,102,104,91,116,107,107,108,108,107,107,92,110,108,108,97,103,108,96,97,117,100,100,92,85,100,101,112,108,104,108,99,103,99,97,106,110,116,102,104,103,110,99,100,97,107,106,104,96,107,101,106,111,103,113,102,121,99,120,100,106,102,107,106,107,102,96,107,99,109,108,104,103,104,103,98,97,99,98,99,100,95,104,74,99,102,100,109,114,105,98,113,103,96,109,98,97,105,107,108,105,120,101,95,97,99,88,102,98,112,94,120,105,109,113,114,104,92,106,112,113,99,96,107,93,101,113,109,109,102,101,95,117,104,110,93,102,105,106,108,103,108,100,106,100,103,112,110,111,103,102,84,113,95,99,106,101,98,90,96,108,97,107,102,114,107,107,102,105,94,103,96,106,97,106,106,115,106,105,94,117,98,107,101,108,101,103,123,107,94,91,95,103,109,123,111,94,115,106,115,100,103,99,99,107,104,113,105,117,96,116,105,99,96,110,101,99,108,97,95,99,106,111,109,105,104,91,110,102,106,114,91,105,105,118,99,95,109,95,92,95,104,99,129,110,113,98,104,89,115,109,97,102,104,112,91,100,98,107,92,108,96,93,99, +531.97223,91,104,108,99,99,90,104,115,101,97,96,99,83,96,109,104,106,113,105,103,111,82,104,113,106,109,83,102,104,73,107,106,100,103,107,104,98,95,128,94,97,104,109,112,107,103,97,106,89,105,96,107,103,122,103,95,118,94,113,118,102,98,99,103,96,105,105,115,95,108,97,95,109,105,100,109,100,92,108,104,100,108,102,109,103,102,110,100,104,93,107,88,113,92,102,96,96,94,110,108,90,110,101,108,104,112,114,93,119,110,105,102,102,108,117,95,120,102,107,99,113,105,103,105,96,116,114,93,99,99,108,103,98,105,117,110,105,95,113,105,98,101,98,92,116,101,111,101,96,94,92,104,95,97,71,99,112,111,109,98,101,106,105,107,114,96,90,108,109,92,94,117,104,106,117,92,100,104,106,108,102,103,110,104,106,113,113,96,100,100,103,99,112,105,94,80,97,109,104,104,103,97,101,102,97,102,108,104,108,109,110,114,103,115,112,118,103,118,109,94,100,106,106,110,108,103,99,109,105,103,99,97,99,117,103,102,100,109,100,108,95,94,113,116,93,105,99,120,100,110,105,92,101,89,93,111,106,102,98,95,104,104,99,96,107,109,101,108,96,102,97,103,129,109,113,103,94,115,98,112,99,92,106,101,92,117,102,104,120,105,105,106,114,106,99,103,86,110,107,104,102,126,92,105,94,115,124,102,101,106,105,121,105,121,106,95,104,98,113,92,99,102,97,104,104,126,108,100,111,106,101,91,104,104,100,110,114,111,102,113,99,102,106,97,92,108,104,105,112,102,102,102,98,101,93,107,111,107,103,113,102,99,108,108,100,108,106,117,105,116,118,105,107,96,116,106,105,116,100,121,95,109,98,108,88,103,107,106,116,116,112,98,104,100,105,105,103,105,101,101,102,114,102,101,91,112,106,103,111,95,93,101,105,101,104,112,96,106,100,102,110,96,105,109,85,97,108,99,105,104,102,108,116,99,139,94,96,114,84,95,127,111,116,108,99,108,114,100,115,87,104,103,102,108,104,99,92,111,108,106,115,103,105,103,115,116,106,102,94,113,96,104,110,86,98,92,100,114,107,92,110,104,92,105,94,102,103,104,105,104,112,111,103,101,106,106,114,113,108,95,117,108,104,108,109,81,96,103,116,99,113,103,113,108,108,117,104,106,101,87,108,109,115,106,107,68,104,110,102,103,101,103,93,92,104,103,99,101,101,106,106,105,102,103,103,109,113,104,109,109,105,114,106,108,96,103,113,96,106,101,101,100,113,108,90,109,114,110,104,109,102,100,107,96,108,114,102,102,108,102,116,98,94,100,100,106,100,113,100,82,99,108,99,100,100,106,100,100,112,105,95,105,117,102,104,102,113,109,101,107,103,95,105,100,130,103,95,102,100,102,106,99,113,109,108,105,102,104,109,104,107,104,107,117,100,121,109,85,100,108,114,94,121,115,98,104,95,101,107,104,103,95,109,112,105,109,99,109,114,110,111,108,108,103,118,112,112,106,118,104,103,95,98,106,111,86,97,101,108,104,99,103,113,105,97,100,100,104,112,97,96,99,111,98,104,91,110,93,94,104,101,91,100,112,103,118,108,119,118,114,98,109,103,94,104,106,111,101,101,99,111,105,104,113,103,113,97,102,103,110,105,106,96,95,98,99,109,97,114,100,114,118,108,110,103,106,108,108,104,121,105,97,105,117,113,94,110,116,121,107,103,109,98,109,95,91,99,103,96,105,96,96,113,101,95,106,94,106,107,111,99,99,100,104,115,111,108,113,100,104,112,110,108,107,106,97,114,95,102,110,104,96,94,105,118,105,108,105,99,106,97,111,100,100,111,105,117,101,117,101,109,99,106,107,100,109,104,96,110,106,106,104,95,100,115,103,96,104,108,111,109,97,98,104,98,106,105,100,104,101,106,112,100,99,110,104,110,103,114,96,103,101,105,99,95,101,100,115,105,113,94,120,94,103,98,80,111,100,98,106,104,106,87,113,101,123,117,107,102,110,105,122,101,104,109,104,103,108,105,117,110,107,111,92,96,73,110,110,90,105,111,100,109,114,98,102,104,119,100,121,103,111,107,110,90,98,97,108,104,104,98,100,102,113,108,104,104,111,118,98,111,88,100,105,96,121,94,99,102,104,115,115,108,99,121,122,107,99,94,105,103,108,101,100,118,107,94,100,100,98,104,113,108,95,121,110,106,102,103,110,114,113,95,88,102,120,90,96,106,103,97,96,108,108,101,108,90,112,102,112,112,104,96,95,101,102,108,92,102,109,102,104,99,110,113,108,97,104,106,99,111,100,120,96,101,108,99,109,107,112,111,108,94,106,107,97,106,101,107,104,108,96,91,108,103,105,78,110,95,94,107,109,118,99,108,106,95,99,100,104,91,112,108,101,108,102,103,112,116,95,104,102,92,98,114,101,116,113,78,102,111,109,96,91,102,109,98,124,105,107,112,96,112,103,103,94,111,93,100,111,105,105,116,115,95,101,106,96,110,108,103,110,110,106,100,103,104,101,100,109,110,103,115,119,113,97,103,102,105,107,115,116,74,110,113,113,107,94,111,105,91,99,109,110,105,68,104,107,121,96,68,103,108,105,106,109,104,102,114,104,110,100,110,101,102,118,113,103,112,110,124,113,115,106,107,111,102,108,106,108,107,109,103,107,112,108,125,109,114,107,95,108,106,105,107,109,102,103,102,100,111,109,103,120,112,104,114,106,105,98,109,103,106,104,119,102,108,113,108,96,105,124,110,88,101,101,99,104,97,102,97,103,104,105,116,108,110,118,102,109,122,102,116,102,105,106,83,112,103,107,102,111,106,104,105,105,105,113,95,109,94,107,109,107,102,100,98,105,109,110,117,107,108,127,102,110,119,104,103,107,95,120,106,111,123,111,102,114,109,106,106,108,100,94,88,118,89,110,108,105,109,115,94,115,117,105,102,118,106,97,123,92,117,108,108,120,102,97,103,103,115,120,113,94,104,106,101,115,108,112,104,108,103,117,105,97,103,113,112,96,106,107,110,125,110,112,108,114,103,97,101,121,100,104,99,104,109,106,97,113,143,112,103,112,111,106,108,103,105,100,111,114,103,120,106,113,111,111,100,105,106,107,105,109,102,114,104,104,105,102,98,93,110,110,107,107,107,104,124,115,104,103,106,117,104,104,121,116,100,110,121,114,103,109,78,116,105,104,107,104,90,105,93,109,114,106,109,96,103,99,107,112,108,109,118,111,93,118,107,114,109,103,111,107,96,108,95,99,106,101,103,109,101,117,110,118,118,104,111,111,107,104,92,111,96,100,96,105,106,104,103,110,94,108,103,101,114,111,119,113,101,104,108,122,94,102,101,97,118,110,104,105,85,111,108,104,109,72,119,106,105,116,107,111,109,106,102,103,108,107,95,97,102,99,101,101,112,101,88,109,106,116,111,107,101,101,105,114,108,106,114,105,114,115,97,103,113,97,108,109,105,103,108,109,113,105,95,115,90,113,116,92,107,99,107,103,110,109,114,105,96,99,115,112,124,99,110,103,95,102,125,109,100,103,111,130,111,110,103,102,101,95,108,122,107,107,108,106,95,101,103,98,114,107,108,98,107,104,117,105,97,104,90,111,96,114,108,95,108,109,104,98,113,104,96,112,109,105,100,105,110,113,102,95,107,106,111,107,128,101,111,111,102,119,98,97,117,116,98,102,99,104,106,100,103,95,102,107,96,102,129,100,99,112,103,100,100,102,112,106,118,108,115,102,99,102,109,102,111,107,108,107,109,103,102,111,117,98,99,104,117,95,113,106,117,100,102,120,106,116,125,87,112,110,109,100,103,102,109,87,98,104,105,96,106,107,109,113,106,114,102,127,109,94,96,102,108,102,94,102,105,105,114,108,106,98,111,101,117,83,107,113,103,110,109,112,115,111,109,101,106,95,101,123,106,108,106,107,121,87,108,98,104,99,105,115,99,96,102,105,107,108,115,113,109,102,101,113,103,98,96,107,107,115,107,101,110,101,100,96,108,110,103,103,110,105,103,106,109,89,105,106,104,98,103,95,107,108,112,113,103,104,111,102,105,105,101,102,101,80,106,107,105,108,109,112,113,121,86,110,114,109,101,112,128,104,105,108,93,87,109,102,99,101,113,96,115,108,94,96,105,106,107,114,113,109,101,108,103,109,108,120,108,103,112,113,107,109,107,93,106,94,106,96,101,109,110,115,91,105,99,108,119,106,92,115,99,96,104,99,106,102,116,96,100,109,105,100,106,107,106,113,102,100,102,99,105,107,112,106,117,103,120,105,109,100,108,102,97,99,90,94,109,108,110,112,114,107,114,106,95,115,99,111,116,102,107,97,105,109,101,115,94,104,95,104,110,109,100,95,86,96,109,101,101,97,101,101,105,99,121,104,119,101,98,109,101,94,115,102,117,95,89,112,108,96,107,95,99,90,99,109,103,107,110,109,108,107,112,116,102,107,106,100,107,111,102,91,98,97,95,105,93,116,97,101,111,99,104,109,109,110,100,101,109,100,102,104,103,98,107,129,106,109,102,90,103,114,100,102,106,93,84,103,106,110,114,104,114,101,95,119,97,110,104,103,107,113,129,106,116,103,113,117,110,93,108,104,99,95,108,102,110,101,87,94,103,128,98,101,89,93,94,78,97,103,94,103,107,112,100,98,115,100,107,99,100,100,104,98,103,95,92,100,110,112,114,106,113,100,117,112,99,100,103,101,100,89,108,105,99,100,106,112,93,110,96,104,95,98,105,110,111,99,116,106,83,104,99,99,120,88,109,89,114,106,99,111,85,106,103,104,95,106,100,99,77,103,104,86,116,105,101,115,117,94,101,70,117,110,109,106,113,82,115,107,97,98,106,105, +532.11298,116,106,110,94,102,120,112,113,99,106,109,108,109,112,103,91,104,104,106,100,115,105,101,108,102,103,98,108,113,99,118,102,108,98,105,102,124,97,106,105,105,111,104,111,112,112,94,104,90,104,95,102,106,104,95,91,110,93,107,104,106,103,103,101,95,102,120,104,109,99,108,102,116,109,103,104,97,93,100,101,109,86,96,109,112,100,81,91,100,102,102,99,100,103,104,106,108,100,92,96,100,96,95,96,98,106,92,92,103,99,92,96,105,105,101,108,117,100,106,107,93,115,110,110,106,109,91,99,96,94,107,114,99,103,107,94,95,101,86,106,87,104,106,102,99,116,103,95,100,99,103,98,102,121,91,108,101,83,96,101,98,92,105,104,105,98,110,105,113,93,75,91,86,108,104,99,107,100,106,106,104,108,100,103,113,103,102,100,105,101,110,109,109,105,100,100,108,104,101,105,101,111,105,108,94,107,107,103,106,102,103,99,107,104,105,104,105,109,109,99,109,105,106,102,104,96,93,94,101,109,112,116,112,109,114,113,96,105,110,93,99,105,105,108,102,93,104,100,102,110,93,111,102,104,104,110,98,110,97,115,98,107,96,99,106,106,108,102,103,101,106,104,100,100,102,89,108,106,102,110,95,95,91,112,102,95,96,113,109,108,108,113,106,100,107,107,111,110,112,79,106,106,96,113,104,111,112,106,110,112,101,104,98,97,104,100,96,106,107,87,84,106,97,114,100,108,93,93,100,110,106,109,102,104,109,97,118,87,114,102,103,104,112,109,98,108,105,113,122,103,103,111,105,104,90,108,110,104,97,109,101,105,100,100,104,102,105,115,98,91,104,93,114,102,103,99,108,111,113,105,102,97,99,104,102,89,107,110,109,100,107,102,109,109,104,95,103,96,104,85,113,106,121,108,108,109,110,105,106,93,98,98,98,98,96,110,109,95,94,107,109,105,99,112,99,97,97,103,111,102,100,104,111,102,104,98,107,108,95,111,109,118,95,100,110,104,92,110,105,111,99,93,103,113,112,104,103,104,103,102,100,105,105,121,116,106,113,119,100,103,102,95,96,93,102,100,105,109,122,104,113,106,106,95,105,102,106,109,110,105,91,104,97,102,108,110,108,113,103,95,104,105,97,100,105,104,95,104,110,89,111,102,101,112,101,111,100,101,97,107,117,98,106,99,93,95,102,99,116,91,99,96,99,99,102,96,101,94,114,108,79,110,91,96,112,105,95,103,107,102,107,92,108,98,97,109,98,99,107,87,101,100,104,103,107,111,107,105,100,111,95,103,96,100,107,112,97,93,89,109,113,95,107,107,99,103,107,94,99,95,114,105,101,105,102,95,123,107,112,104,103,95,98,97,112,105,92,104,109,116,91,102,111,87,106,104,97,103,115,110,109,104,103,109,108,114,99,111,114,96,102,95,91,108,108,94,108,92,113,97,121,114,104,136,109,96,106,94,106,103,94,102,120,119,103,105,100,107,109,98,112,104,103,100,108,99,98,110,112,113,97,104,107,100,113,110,102,90,111,102,108,105,109,72,106,95,112,105,105,108,100,118,101,100,106,101,105,117,128,98,103,99,109,100,104,112,95,108,100,99,98,105,95,113,100,102,99,110,108,103,101,86,110,103,101,77,104,106,93,100,105,105,106,99,109,95,94,96,105,100,108,99,104,109,104,117,118,106,97,102,98,103,102,107,108,90,107,106,108,99,109,94,97,111,94,110,104,113,64,84,102,97,119,99,92,97,100,105,113,105,109,85,111,101,114,101,99,112,104,105,109,110,103,105,112,116,99,100,107,91,106,105,110,115,120,105,89,99,111,105,101,106,106,109,110,100,110,106,110,105,101,102,98,111,110,101,105,92,114,89,98,109,100,110,108,99,109,99,113,109,95,103,101,126,100,112,111,98,102,97,102,97,100,110,112,102,107,108,106,104,107,112,107,98,95,105,103,104,103,83,97,92,96,104,114,102,111,93,111,101,100,106,103,102,113,98,94,108,116,108,105,95,113,103,116,93,111,100,97,111,120,116,111,96,107,108,101,108,106,112,105,97,105,102,101,111,108,104,105,94,108,98,112,113,125,105,91,114,98,101,95,108,103,100,89,94,107,108,117,97,101,100,101,100,104,107,111,101,110,93,118,95,104,103,102,104,100,108,113,104,102,114,99,106,100,102,114,100,105,95,91,102,121,100,111,105,94,98,105,104,106,125,101,101,114,103,104,103,109,101,89,106,105,93,99,110,95,108,104,108,89,109,107,100,113,108,100,103,93,105,106,114,98,108,105,101,102,96,118,102,114,103,114,98,113,125,98,108,121,112,99,106,105,107,102,96,105,100,104,98,100,96,95,111,99,100,101,105,101,112,106,108,111,108,93,94,103,97,104,100,99,119,101,108,106,96,121,105,107,102,108,102,110,105,95,110,98,92,117,98,101,104,105,107,98,112,88,102,106,98,108,93,119,90,93,109,121,113,113,117,108,106,113,101,113,106,97,113,112,105,109,116,105,98,94,103,101,97,93,109,108,99,88,114,120,105,106,110,117,101,108,103,112,107,113,103,100,104,106,101,103,96,108,113,112,106,108,109,112,91,109,104,109,116,106,103,117,102,115,106,113,102,99,101,120,103,115,103,113,100,103,108,109,106,110,115,117,91,113,102,113,106,95,111,106,111,110,112,110,100,109,109,90,112,108,94,125,109,113,115,113,112,112,104,113,101,96,103,104,101,112,106,97,107,112,111,106,107,99,99,114,110,101,113,108,108,105,110,98,101,97,109,108,110,117,112,114,98,108,108,117,113,101,103,100,111,103,91,99,124,101,114,107,108,105,108,103,108,79,110,107,107,112,102,112,104,102,116,94,101,107,119,111,102,111,104,93,103,91,108,113,98,117,101,110,101,96,98,102,106,111,99,97,94,92,103,109,100,101,106,106,113,102,113,102,109,106,117,106,117,115,110,108,107,117,112,108,108,107,106,120,101,103,106,115,112,106,113,112,97,101,97,99,120,98,101,110,104,103,123,115,113,109,104,96,124,117,103,111,108,96,102,105,101,107,96,102,98,114,113,110,111,98,95,100,108,103,105,108,120,110,112,113,104,110,99,107,99,98,124,109,103,106,107,103,95,95,102,110,111,105,104,110,120,102,101,110,97,107,112,108,107,103,107,107,120,98,87,107,108,108,99,112,116,108,102,106,117,107,120,105,102,99,98,98,106,108,107,108,113,119,114,106,108,117,106,108,103,112,116,106,116,109,109,103,106,109,104,99,101,104,113,110,103,92,103,123,111,102,111,104,114,108,107,95,99,101,100,110,102,109,112,102,110,115,112,98,110,106,105,110,103,107,112,109,104,104,109,117,106,111,108,96,108,122,119,95,109,98,102,106,114,115,117,113,104,116,94,115,119,112,104,106,92,110,104,104,109,109,111,115,114,98,111,95,100,122,108,101,100,121,87,108,106,104,107,109,108,107,102,112,107,105,110,106,119,115,105,102,104,108,109,115,106,103,113,109,109,96,112,101,111,106,104,112,117,102,95,105,132,109,101,110,94,113,103,99,99,99,139,104,101,96,108,99,98,111,102,99,112,105,108,96,103,111,104,113,113,107,103,93,105,96,96,91,99,103,95,110,104,106,107,101,110,108,118,98,99,99,106,111,120,112,115,104,101,95,106,103,108,106,99,103,112,95,109,110,105,103,110,102,109,95,105,105,105,107,101,111,96,100,98,117,96,108,105,114,108,106,113,117,103,109,99,98,98,107,100,110,99,110,111,112,117,99,134,101,106,106,111,114,98,127,102,108,112,104,102,83,113,99,107,116,97,108,102,113,107,126,103,90,97,110,114,110,114,110,111,113,97,112,95,100,100,116,107,119,91,99,85,100,94,107,113,112,108,116,98,110,107,103,93,108,91,102,104,102,103,117,105,94,99,95,106,104,98,127,97,106,113,108,105,107,92,91,114,113,114,95,108,113,125,105,88,99,133,115,93,110,112,99,116,103,108,111,110,108,120,91,118,109,109,93,107,117,120,117,106,104,117,111,100,110,101,100,108,112,102,103,104,103,108,102,110,116,106,112,114,99,120,108,118,102,106,108,116,113,113,117,104,110,102,95,114,104,111,102,115,95,104,113,105,91,89,100,117,100,105,100,105,117,101,103,109,108,110,104,115,94,110,117,99,105,115,116,102,106,111,108,121,102,101,107,98,106,108,115,95,113,99,111,113,110,99,86,112,98,101,98,109,96,98,102,99,108,108,102,100,108,118,110,119,107,103,91,109,98,127,107,104,108,107,102,106,105,120,122,121,108,82,106,94,115,104,106,106,103,105,107,93,110,117,109,119,103,109,103,101,110,106,116,113,111,120,115,106,100,111,128,102,98,101,104,110,112,106,91,103,107,103,104,104,125,108,104,114,98,101,118,99,110,113,93,106,99,97,103,111,105,100,110,99,103,102,108,102,112,94,108,101,108,109,104,107,106,104,111,92,100,100,106,95,108,108,114,110,94,109,111,94,107,101,105,104,101,96,116,95,109,96,89,109,114,100,100,102,111,106,99,94,100,88,126,107,104,117,106,111,101,106,109,101,90,113,103,107,102,115,113,95,112,103,113,101,106,102,112,109,122,99,103,101,111,108,99,105,103,116,103,108,113,94,109,101,119,103,98,82,110,111,110,108,109,103,125,107,105,115,110,102,110,97,98,115,106,101,112,104,113,93,107,109,105,100,107,102,95,117,110,97,101,103,113,116,87,104,107,108,113,103,110,98,101,111,104,117,104,106,103,111,100,92,100,101,100,104,107,107,101,108,108,112,107,106,106,105,90,94,124,100,64,93,99,98,95,105,99,112,109,106,108,109,100,113,102,104,112,103,85,105, +532.25372,119,98,105,95,95,106,114,100,107,104,125,91,100,130,96,110,110,104,115,100,104,91,118,105,103,107,99,94,102,108,88,90,111,95,124,113,103,107,99,105,96,99,97,106,107,107,105,106,96,100,98,119,104,102,105,88,114,99,99,102,106,101,105,97,102,105,92,103,112,98,109,107,93,100,106,108,98,118,101,98,102,105,98,107,103,106,95,98,106,101,112,102,104,102,90,109,105,98,102,95,110,98,96,95,97,119,106,108,97,105,92,106,113,98,92,111,91,98,113,97,107,115,112,105,115,106,113,109,107,107,102,107,81,116,111,98,112,113,100,101,107,112,118,93,98,93,105,76,87,107,102,97,111,103,112,108,106,96,104,110,109,102,108,103,137,119,94,106,116,106,99,100,101,103,104,106,94,94,126,103,106,104,94,106,103,107,100,97,99,118,116,109,98,111,105,103,105,104,118,106,96,100,103,106,101,99,115,98,117,104,103,101,124,107,98,106,93,99,104,111,106,103,86,114,99,104,115,113,105,101,107,109,108,104,105,122,101,108,103,102,73,115,108,107,116,112,108,107,103,118,117,114,111,112,119,100,102,102,101,117,101,110,107,102,100,104,104,105,109,99,100,112,120,101,104,100,106,108,98,91,109,106,103,117,115,120,106,114,102,96,101,109,103,108,121,101,106,102,95,106,106,98,103,112,106,108,105,98,101,114,103,108,107,100,102,99,105,109,104,102,104,103,108,95,111,94,106,94,108,98,120,113,131,109,114,95,110,113,98,109,113,108,102,83,105,109,106,112,123,101,107,107,105,96,105,108,111,108,117,111,97,117,107,103,89,85,103,112,104,122,118,107,116,103,98,99,119,110,109,117,112,123,102,101,101,105,105,114,109,107,110,99,98,106,104,93,111,93,100,104,103,110,101,100,107,102,118,109,115,108,104,100,104,104,99,95,98,110,113,111,113,94,103,100,120,103,98,108,103,101,102,117,114,108,95,102,98,106,106,96,116,104,106,82,88,109,102,99,103,111,110,101,99,114,94,108,102,100,110,102,105,101,104,115,117,121,109,109,106,95,106,102,110,107,102,117,110,110,104,103,101,123,103,108,110,106,88,98,101,105,114,100,117,105,94,98,102,107,106,108,121,102,106,121,104,104,106,96,101,141,117,108,111,105,106,101,105,107,104,115,102,109,111,113,100,86,110,109,110,101,104,111,99,122,95,103,108,89,113,106,105,109,103,100,111,101,103,106,116,105,111,115,114,107,94,95,104,101,109,96,109,105,104,106,107,92,125,103,109,112,83,94,112,105,95,98,109,107,94,106,118,105,111,94,117,93,110,108,106,101,103,113,105,110,107,117,106,113,113,96,97,96,103,103,103,99,100,109,104,119,113,111,100,106,106,104,113,105,106,118,103,104,99,103,111,104,107,103,109,95,104,98,109,125,103,113,116,107,110,102,114,106,104,104,107,97,96,101,104,103,116,112,109,106,108,104,100,103,109,106,99,109,106,119,117,98,121,122,102,110,112,88,103,110,108,107,107,115,98,114,99,104,108,99,105,106,101,94,102,100,109,111,104,110,110,107,109,99,110,105,107,109,106,97,108,122,106,112,110,113,94,102,100,101,103,111,104,105,101,101,100,100,102,103,108,100,104,110,97,110,112,99,103,101,99,109,109,96,117,101,109,107,113,103,104,110,114,101,98,121,101,100,104,111,113,102,113,105,105,105,109,117,99,107,104,108,95,105,99,100,107,103,104,101,95,103,106,114,109,113,105,113,103,110,107,117,118,96,91,118,106,106,110,117,117,105,105,100,103,111,109,101,85,107,102,107,106,108,112,111,124,108,117,106,104,101,113,109,100,95,72,116,114,107,111,115,102,109,94,101,110,98,111,107,117,96,106,110,102,109,100,107,111,106,110,114,100,103,101,91,110,118,105,108,102,115,85,112,98,111,109,112,109,103,101,107,90,104,124,105,103,110,99,112,110,111,105,110,99,109,105,110,116,113,104,115,100,103,93,102,103,113,115,106,109,94,96,109,100,111,106,104,113,91,117,104,99,106,98,97,105,114,109,118,115,113,95,113,95,104,101,103,100,105,103,99,107,106,101,98,102,117,95,117,118,113,94,113,99,105,100,105,91,107,103,96,97,101,106,106,100,103,121,116,100,106,108,104,113,116,115,125,111,97,110,104,102,105,114,105,103,104,103,108,99,93,106,102,107,106,98,92,117,114,101,94,110,98,109,115,100,99,106,95,100,107,101,105,106,109,102,103,114,96,103,102,110,110,101,103,102,103,108,110,80,110,105,105,105,104,100,103,102,87,107,114,104,108,100,121,113,111,103,109,96,104,109,96,99,109,103,106,108,110,117,101,95,109,107,102,107,112,106,100,106,102,108,104,101,99,108,106,110,104,107,102,109,102,102,99,101,114,95,107,109,107,109,108,100,106,105,100,106,107,94,120,106,115,104,113,95,110,104,109,93,120,108,107,114,115,101,96,119,112,100,115,106,80,106,110,96,114,99,109,102,104,109,100,102,113,99,103,97,97,104,115,109,98,105,102,101,103,96,96,106,105,105,105,97,88,114,95,98,113,105,103,106,116,117,71,118,90,99,109,107,104,95,98,108,91,95,99,110,107,105,126,102,107,99,107,103,102,116,111,112,104,98,98,111,102,112,108,104,104,100,114,114,116,102,108,100,102,106,104,101,117,113,104,113,99,115,124,108,122,102,72,99,110,97,105,105,97,117,102,120,103,108,105,113,110,99,111,103,93,108,108,120,95,101,102,103,115,98,120,99,103,102,111,106,108,114,109,115,106,100,106,111,115,112,120,109,117,103,109,104,103,105,114,104,108,106,89,100,108,110,114,118,107,90,107,109,101,102,121,117,98,98,95,112,109,104,92,107,108,99,101,92,108,94,103,121,110,101,97,120,107,110,117,111,101,105,110,102,109,120,112,95,111,109,107,102,102,112,117,106,105,95,115,81,101,106,104,117,106,99,103,107,91,107,99,113,106,108,102,108,116,97,108,110,109,103,109,111,107,105,121,103,106,104,96,104,97,117,102,104,107,105,92,104,101,115,113,109,111,113,106,107,101,97,105,106,106,112,114,113,101,113,124,113,122,107,108,100,101,117,107,95,107,99,110,99,96,98,114,113,89,105,94,103,117,109,104,99,112,106,109,101,112,110,106,108,103,109,100,103,107,101,103,96,115,100,108,93,89,96,109,100,98,96,95,119,111,113,108,103,93,107,96,109,99,104,111,101,104,98,117,103,111,114,108,93,105,99,109,106,103,111,95,98,98,117,106,105,93,113,102,110,101,98,102,112,98,91,107,115,108,111,104,101,109,101,102,110,111,97,110,104,95,96,106,95,112,95,109,102,110,97,111,107,107,104,100,112,108,117,110,101,101,114,97,99,104,113,111,100,111,100,111,108,109,106,107,108,108,104,105,107,113,99,113,111,111,110,102,104,111,108,107,110,100,111,112,113,104,109,96,104,101,102,112,103,112,108,110,108,104,103,117,107,100,101,104,109,106,107,99,103,115,106,111,109,98,99,96,106,96,104,107,97,102,108,103,87,123,101,108,98,110,118,104,115,106,106,108,90,98,112,103,109,96,108,98,102,97,101,91,109,103,102,100,102,95,100,105,105,99,108,104,106,104,126,128,117,112,100,103,101,97,109,100,113,117,109,104,106,104,98,114,102,91,100,94,102,98,103,104,113,108,99,114,114,101,99,95,100,110,109,103,103,111,107,95,105,95,108,98,108,75,105,105,103,101,96,117,99,102,109,87,89,98,107,108,109,117,101,102,107,107,102,107,105,115,92,111,96,97,116,103,97,100,106,109,108,102,106,109,89,108,119,91,110,102,108,101,109,110,103,114,108,98,104,105,99,104,91,106,97,103,106,105,108,101,116,87,107,99,109,102,108,103,107,100,111,116,102,107,103,100,98,92,115,113,94,108,112,109,107,105,91,104,105,99,104,98,101,99,111,109,100,95,86,105,112,105,96,108,110,103,105,109,94,98,105,103,107,111,108,103,108,90,105,113,103,99,104,107,105,114,95,110,104,115,108,106,100,112,100,111,104,108,117,105,112,103,96,111,108,106,107,110,107,89,103,107,107,110,112,99,103,107,117,107,104,100,117,98,101,109,98,105,113,110,98,107,113,96,100,122,101,104,106,100,98,123,95,102,116,124,109,107,102,106,105,109,112,108,107,106,88,100,104,106,82,105,113,109,104,110,105,96,111,106,122,106,113,143,92,97,95,122,102,117,98,106,106,103,104,105,103,110,109,108,103,107,117,89,106,103,88,108,101,94,108,91,111,102,123,100,107,106,80,98,108,109,99,105,105,112,108,108,103,95,106,107,96,99,108,101,98,93,105,108,112,111,101,96,105,107,97,93,122,109,94,109,114,104,101,102,94,109,101,119,103,100,99,102,100,95,108,93,111,109,108,105,109,105,96,109,99,100,106,89,105,106,109,97,103,103,106,81,95,94,88,92,95,103,113,105,114,108,113,111,98,88,108,109,106,98,93,93,108,113,107,98,106,102,92,103,109,102,111,104,97,105,113,106,95,98,111,104,96,109,103,104,103,100,109,106,110,103,112,111,113,109,106,92,111,118,115,106,107,99,111,100,92,104,109,103,109,105,106,84,90,108,111,104,108,103,98,87,109,102,113,106,112,92,106,98,94,94,116,92,101,110,98,96,110,94,105,106,109,99,104,95,109,108,98,106,111,105,111,113,99,115,103,106,101,99,104,91,107,107,101,108,103,111,99,109,105,88,130,104,100,111,111,94,115,100,98,106,109,105,89,117,105,111,103,111,107,105,108,104,108,120,98,109,104,100,98,106,115,96,94,120,104,101,111,102,118,99, +532.39453,112,95,96,98,99,125,111,99,112,100,86,117,98,96,110,118,112,105,99,105,111,91,102,110,95,112,96,108,109,93,103,110,94,96,109,98,109,106,95,99,98,109,107,99,103,100,105,91,98,104,102,104,94,98,104,103,98,99,116,97,111,105,108,100,101,107,110,109,113,106,127,95,82,103,79,110,106,105,110,97,101,102,100,88,101,106,117,102,100,104,91,116,100,98,85,97,103,91,97,127,105,103,100,96,99,108,91,97,88,110,106,111,105,96,108,115,123,103,122,103,101,112,121,120,104,126,115,106,109,112,110,108,101,100,95,125,111,116,103,111,87,100,99,113,107,99,97,100,92,109,101,111,114,120,116,103,98,106,108,102,98,100,107,99,116,95,107,104,105,96,98,114,124,98,100,110,107,104,103,106,107,103,108,102,101,96,100,99,102,105,102,109,100,100,102,111,115,101,110,122,106,105,99,107,94,107,110,103,123,106,105,100,109,112,105,103,117,104,99,100,109,106,113,110,106,113,103,102,110,109,105,101,108,116,102,82,102,113,111,97,103,105,95,111,108,122,108,104,110,111,114,96,101,108,115,106,106,105,108,101,91,103,88,76,105,107,124,108,102,101,105,105,102,102,109,107,109,106,102,107,107,106,121,121,111,113,84,107,109,95,106,109,115,106,104,112,120,107,99,100,101,106,103,94,101,112,105,102,112,112,104,114,139,106,110,106,89,106,103,106,109,98,87,107,113,122,107,105,112,108,96,103,101,104,109,100,104,97,101,100,100,102,88,103,96,119,108,101,103,110,111,95,116,116,118,95,114,114,112,98,99,105,97,90,99,102,101,103,106,104,105,95,110,109,117,101,127,101,110,107,112,106,106,113,98,128,107,97,121,105,111,73,97,122,99,107,91,105,101,113,108,109,112,91,103,93,107,118,105,116,98,87,116,108,98,94,114,108,101,113,96,104,120,104,101,91,105,102,103,99,104,100,104,105,101,98,105,117,93,103,106,112,104,96,85,96,107,103,105,114,96,112,100,108,106,107,106,117,105,105,110,103,97,106,104,110,117,109,120,108,98,109,109,95,104,110,117,106,86,105,104,111,121,105,111,100,116,117,96,97,106,113,112,116,95,100,103,107,114,111,116,108,118,112,77,101,101,97,103,112,103,111,106,120,108,103,97,116,99,106,100,108,110,101,105,106,116,110,103,100,104,110,91,124,104,109,110,100,109,124,101,113,91,107,118,112,114,104,102,111,111,110,108,104,114,101,97,102,102,108,118,110,99,102,109,94,94,103,100,97,99,108,97,103,106,106,101,100,98,110,99,103,111,104,94,110,105,112,104,94,110,107,103,101,109,107,106,98,103,107,95,108,122,105,107,113,109,106,111,107,102,98,111,109,100,111,112,103,105,109,96,106,101,105,116,112,109,106,103,88,113,116,110,99,115,103,102,107,105,120,112,129,108,102,121,112,104,104,95,94,105,104,104,108,98,112,104,116,100,118,107,93,112,108,103,102,119,97,94,106,111,108,109,103,101,119,100,111,95,100,98,102,113,94,102,97,103,108,104,103,104,113,108,109,79,105,105,101,99,112,105,98,106,114,104,101,114,109,97,98,100,114,110,96,103,97,101,105,117,97,91,97,102,112,98,95,109,115,106,110,111,100,99,111,109,109,99,98,103,110,114,95,113,104,102,112,111,112,98,104,109,92,94,117,111,101,116,101,111,101,96,112,103,112,93,100,92,106,109,108,117,101,101,98,106,123,109,112,105,99,95,103,106,116,109,109,100,120,93,107,114,108,115,100,86,113,105,107,125,103,113,102,111,106,113,108,110,121,109,92,111,104,102,95,106,108,112,101,102,109,109,104,106,138,98,112,113,104,99,108,109,105,105,110,108,114,101,122,123,107,113,103,112,99,107,104,88,104,120,109,104,103,106,108,107,107,111,91,104,129,118,102,103,102,101,97,117,105,112,102,115,111,117,110,104,106,103,103,98,96,106,103,109,113,100,111,102,110,104,91,119,115,111,110,103,95,114,101,117,98,105,99,104,120,110,102,98,108,104,97,105,105,99,102,104,109,108,99,102,107,107,105,109,106,116,102,92,102,100,99,100,113,108,109,107,94,95,99,100,85,94,108,90,115,113,114,106,104,94,108,100,106,117,110,112,113,103,109,106,97,105,115,97,99,108,103,102,98,104,115,108,102,108,102,101,104,97,95,114,104,95,99,109,105,106,92,117,118,113,102,99,107,117,102,101,108,107,117,102,109,112,113,101,105,117,111,99,115,100,106,103,102,98,114,116,104,110,113,102,92,108,114,114,113,108,101,112,107,120,112,119,92,94,101,95,87,103,116,105,93,100,66,103,104,96,91,108,113,113,99,99,105,90,88,98,99,93,113,103,109,95,105,103,103,101,104,108,108,114,112,104,87,110,106,109,110,111,110,113,106,109,107,106,112,102,112,98,117,102,112,108,113,107,97,100,84,124,101,105,114,108,118,107,99,75,120,112,99,102,106,105,101,109,100,114,103,83,93,111,102,112,111,94,103,117,92,104,108,108,107,113,110,105,101,98,108,105,104,94,105,90,100,114,116,108,92,107,94,106,100,110,115,109,102,96,114,108,107,109,99,123,107,110,95,110,106,106,83,117,105,95,98,111,105,102,109,106,108,119,111,107,116,101,98,102,109,98,102,101,100,110,118,111,98,98,107,106,102,103,87,108,108,112,103,111,109,105,107,112,97,96,114,117,107,102,108,125,96,102,110,98,109,106,94,94,106,109,98,99,122,100,94,112,112,100,100,109,127,108,95,107,101,117,104,94,104,117,110,113,103,95,107,119,112,120,109,107,104,106,109,107,92,100,104,111,107,105,115,103,106,105,101,108,115,113,100,110,112,105,137,107,119,91,104,117,109,101,110,114,107,78,109,94,88,97,124,113,107,104,117,105,106,99,101,106,100,103,103,108,97,95,111,106,104,118,121,120,116,95,99,110,101,93,96,102,111,114,103,110,103,109,101,87,107,87,85,90,110,109,99,105,105,106,103,102,110,113,94,106,104,97,102,113,113,117,98,116,111,98,98,97,114,87,105,99,84,96,98,108,102,101,116,109,113,116,109,117,108,107,105,105,89,111,106,107,112,106,113,101,94,95,101,103,103,96,104,110,118,111,119,98,117,99,121,94,111,115,111,116,113,105,98,128,103,99,97,105,115,106,108,105,102,104,109,125,108,101,113,108,90,109,108,115,109,120,98,129,98,91,96,105,106,108,99,108,103,111,103,115,102,98,95,105,104,100,107,116,98,103,99,115,104,110,107,106,111,107,109,105,119,104,102,116,103,106,109,107,98,113,113,92,124,111,100,96,105,109,105,98,107,109,111,99,115,105,115,115,112,107,106,105,96,112,113,102,90,101,102,111,120,101,114,109,115,111,101,106,103,114,110,102,102,116,113,106,105,106,101,107,92,113,105,112,95,98,115,109,90,109,102,101,110,106,104,101,83,95,104,91,97,114,107,106,110,110,107,110,101,107,102,109,115,110,104,116,105,99,107,115,114,105,105,114,109,114,104,106,107,102,115,102,85,107,112,108,109,112,105,100,100,102,110,102,117,114,90,108,113,100,108,112,111,99,106,122,109,119,103,111,111,99,95,100,103,99,102,103,108,71,111,117,111,101,113,113,113,115,105,103,90,104,106,109,112,84,102,109,108,94,99,96,112,98,96,112,85,109,104,111,106,108,100,102,99,97,102,108,105,108,103,103,89,110,103,116,112,110,111,108,102,111,111,102,116,101,97,104,116,99,104,112,88,120,113,104,103,115,109,115,114,103,109,111,112,80,102,100,101,100,108,98,112,105,113,105,106,102,104,106,117,112,95,101,98,106,104,106,105,98,111,94,117,110,108,104,104,97,95,120,105,103,99,115,105,103,116,116,95,107,111,105,111,99,122,101,113,100,117,100,102,100,84,104,108,107,104,106,101,101,106,105,105,95,110,109,91,103,106,108,103,113,110,126,106,100,94,113,96,104,111,107,111,102,97,120,113,111,112,114,104,103,88,103,108,102,110,109,101,100,125,99,108,106,110,125,99,100,107,111,100,102,108,99,95,110,113,112,102,105,104,111,108,107,100,104,117,80,96,105,103,100,106,111,100,107,105,96,93,102,104,107,108,107,99,108,104,98,104,106,102,104,105,113,106,93,92,104,111,109,99,113,95,113,105,106,98,118,104,102,111,106,102,108,105,102,120,99,74,109,107,106,94,104,107,104,104,97,91,104,96,99,103,96,97,94,100,105,106,109,110,97,99,104,104,116,102,101,94,98,107,116,100,112,103,108,103,89,102,101,107,106,105,95,110,105,104,105,107,105,88,110,109,103,103,102,96,110,125,106,92,104,107,104,110,107,106,107,107,104,119,106,117,104,105,104,102,97,114,100,102,128,118,109,114,116,96,110,104,129,108,103,117,110,111,108,97,106,108,105,101,117,99,102,104,99,109,106,100,94,98,107,105,113,99,107,101,107,112,104,95,99,116,91,103,113,106,107,91,105,104,112,114,103,96,107,108,103,101,108,108,103,96,103,97,119,108,108,81,107,103,101,99,101,93,96,76,105,104,110,94,102,106,99,105,110,86,116,113,109,99,95,112,99,115,104,113,101,120,95,101,106,87,104,91,112,92,97,110,106,103,118,116,102,105,101,101,108,94,109,93,106,111,103,115,113,102,94,100,98,99,107,100,106,105,113,103,94,106,100,100,98,110,91,117,107,105,93,97,98,92,100,103,104,95,107,99,110,100,104,103,104,99,106,107,98,124,105,98,110,111,96,102,102,110,106,99,92,94,106,117,110,104,114,101,105,106,99,98,100,102,101,92,108,102,89,109,104,84,92,92, +532.53528,109,99,109,95,103,100,100,105,110,91,102,85,104,109,114,105,98,101,98,100,120,103,102,101,105,102,92,107,102,101,111,92,117,109,107,120,116,89,120,92,103,99,100,96,115,90,103,108,112,103,103,89,92,109,107,80,91,112,89,96,99,96,99,104,106,106,105,107,100,103,100,109,112,116,92,106,111,113,99,99,99,107,110,101,99,95,93,106,110,123,108,105,111,107,101,104,102,107,93,100,105,103,98,104,92,99,121,105,111,100,104,106,114,92,105,89,99,106,92,105,105,104,108,123,100,116,96,95,99,106,99,101,99,114,113,100,107,106,112,95,89,90,106,90,95,100,105,89,108,98,101,108,111,90,95,86,105,90,111,96,117,89,118,118,108,98,101,108,103,105,113,112,89,95,107,95,105,102,95,97,102,99,101,98,102,101,103,99,107,100,106,111,97,101,102,109,104,98,115,108,110,102,93,106,101,125,100,110,92,118,107,105,107,114,104,97,90,94,105,92,105,113,105,106,114,89,96,88,110,120,97,99,117,109,106,103,91,107,105,113,98,104,113,113,100,106,109,105,109,113,112,105,86,103,98,99,101,115,89,100,89,103,105,95,102,112,123,110,112,104,101,108,105,102,106,102,108,111,121,98,104,108,98,102,109,101,101,106,107,99,118,108,110,107,112,108,105,101,114,111,102,106,110,110,98,102,115,100,99,105,105,125,106,107,97,103,111,112,107,101,111,102,114,85,94,96,101,87,112,97,106,95,121,105,115,103,100,104,106,107,102,101,103,90,106,121,106,109,109,112,102,100,113,83,114,112,90,115,104,110,107,96,97,105,100,103,112,109,101,99,111,114,115,105,105,108,94,112,100,110,134,106,112,106,111,107,105,102,104,101,97,98,113,104,97,107,98,102,98,96,104,105,97,104,101,112,113,121,113,95,100,105,99,91,100,105,96,106,116,84,109,104,97,99,100,101,96,102,99,107,94,105,107,103,121,111,105,109,103,109,116,109,85,110,92,108,95,96,114,106,84,107,102,108,107,110,105,103,100,101,111,110,106,113,104,107,103,116,112,105,112,117,103,110,108,110,110,113,120,117,105,105,110,113,109,92,106,94,107,104,116,115,100,108,108,124,105,94,103,109,99,113,96,105,91,114,104,107,105,107,117,103,94,106,110,108,112,115,93,105,111,111,104,99,103,107,90,111,99,103,105,108,103,99,111,98,104,120,104,109,130,104,113,93,110,112,83,103,94,107,97,99,108,95,92,98,108,106,96,106,106,111,103,103,114,96,110,110,121,99,109,108,103,101,107,103,110,103,106,113,97,94,110,88,96,107,103,119,103,119,111,102,106,98,104,100,98,68,118,99,95,109,101,99,100,86,84,98,108,113,108,94,102,93,110,105,104,109,103,113,107,104,105,107,107,100,99,121,100,116,104,93,109,105,109,108,97,98,108,106,98,87,90,103,97,101,108,112,92,106,96,93,116,105,110,109,105,113,138,101,110,111,121,97,98,102,70,103,106,102,122,93,105,105,103,115,102,105,122,98,107,112,106,96,102,102,112,115,122,109,106,108,103,124,120,94,103,103,98,101,92,110,105,111,112,102,102,99,98,110,112,84,93,92,106,98,105,107,105,109,88,100,104,113,95,104,106,126,101,104,97,100,100,92,105,94,113,93,111,103,104,98,114,99,100,109,115,105,108,95,120,113,89,95,111,110,101,104,110,105,104,112,97,105,100,109,89,108,109,96,106,98,108,98,103,103,120,113,90,101,105,106,106,107,108,107,109,107,102,117,100,118,111,111,104,108,93,103,109,104,110,104,90,99,107,113,107,113,118,95,129,93,104,91,106,84,114,102,101,87,100,109,113,108,110,116,103,105,135,105,79,109,110,110,97,105,112,96,109,108,102,109,111,92,105,112,94,107,101,100,103,111,103,112,104,108,104,111,105,113,125,105,103,115,107,101,103,121,97,102,102,108,94,96,109,93,96,92,105,97,103,99,105,115,105,113,112,108,108,99,118,95,118,103,104,84,110,99,103,100,108,119,104,102,101,101,80,116,100,106,109,94,122,106,111,106,95,104,91,106,95,108,115,108,107,101,129,108,105,99,102,113,91,106,100,99,107,76,95,107,92,104,99,102,103,102,106,115,105,104,112,102,110,110,99,108,75,70,104,91,103,116,104,103,99,87,101,103,106,112,107,110,123,106,109,98,107,117,96,91,103,115,109,106,104,112,113,114,95,100,102,109,105,107,108,100,108,112,100,104,114,102,105,95,109,102,119,117,97,103,98,109,106,105,106,109,90,105,112,98,109,90,100,90,105,100,116,116,111,100,106,114,113,130,99,100,95,103,115,107,95,105,97,103,103,109,104,114,100,104,100,104,124,109,101,99,105,100,108,116,89,108,97,121,107,90,99,113,104,109,112,120,109,101,98,108,95,86,96,105,108,104,107,107,102,98,97,108,114,112,116,93,103,121,107,97,98,112,94,110,100,104,105,111,113,108,99,100,116,110,79,104,97,108,113,108,127,106,97,111,126,98,104,93,117,116,98,121,97,115,111,107,110,99,103,112,96,115,106,100,92,101,103,111,106,97,111,105,112,97,110,108,123,97,104,108,111,105,101,99,108,126,93,108,111,112,106,95,109,106,99,119,114,120,115,105,102,123,107,107,104,88,106,104,105,104,108,111,109,102,96,95,101,104,94,115,94,93,105,109,105,107,109,106,97,93,100,107,98,112,110,98,111,96,111,108,109,91,98,91,106,80,109,107,102,103,112,106,107,105,109,107,98,115,100,108,108,109,77,109,121,103,95,107,108,99,119,115,109,105,105,99,103,107,110,107,99,108,103,102,120,101,105,105,106,107,106,102,99,104,114,108,105,102,99,104,106,102,109,116,104,103,113,106,106,113,97,98,101,117,95,113,107,99,85,104,105,93,109,113,112,105,99,106,105,90,105,107,119,106,106,102,106,108,108,109,102,109,106,105,99,109,93,119,109,108,115,106,109,97,108,95,94,107,108,97,102,102,103,119,92,95,103,88,109,113,96,104,112,112,102,106,102,105,102,98,120,71,100,114,118,110,103,104,99,99,117,109,96,98,114,113,96,109,108,100,98,103,109,104,91,95,104,102,103,122,107,110,99,104,110,112,106,115,116,92,96,92,105,106,107,102,99,104,98,106,106,115,111,112,93,101,99,107,121,91,109,120,99,93,104,111,98,109,100,107,110,99,113,102,111,109,107,102,99,107,98,110,109,103,97,110,95,70,86,94,95,103,111,100,94,102,130,109,104,98,121,101,102,103,102,102,104,93,104,105,105,109,101,88,107,92,109,98,94,111,105,107,115,95,103,98,105,116,111,107,93,102,98,102,105,88,113,98,106,102,101,95,112,95,100,99,100,117,97,103,106,103,107,108,105,97,105,98,103,106,94,116,114,101,102,108,131,109,95,105,100,108,113,110,111,104,102,101,102,107,99,103,115,90,106,107,100,112,105,108,103,104,111,98,115,99,101,118,106,91,99,114,90,115,113,107,108,95,104,99,95,99,103,111,95,92,98,102,110,104,100,107,112,109,109,108,104,97,111,91,86,109,111,102,99,104,111,100,88,96,110,104,110,121,109,105,109,96,94,100,100,95,111,112,94,105,100,100,106,99,103,109,125,100,104,119,106,107,106,105,101,91,109,100,90,108,99,104,91,107,106,101,97,100,101,105,105,88,112,114,110,103,107,92,101,97,110,99,105,107,109,108,109,96,115,98,113,87,101,108,103,93,106,104,95,107,101,110,104,108,113,99,97,101,106,101,103,94,114,105,101,98,105,107,92,115,114,119,117,98,99,85,89,103,106,107,95,101,99,102,98,109,103,109,108,97,102,106,94,99,97,102,92,101,97,98,111,111,83,93,102,100,93,108,99,105,116,105,98,114,109,99,101,101,103,107,91,107,99,104,100,112,91,112,102,96,100,108,105,116,99,118,108,100,97,108,115,115,113,103,102,117,113,106,106,104,106,105,108,105,118,105,109,113,107,94,114,96,117,104,107,105,116,101,111,96,133,103,119,98,107,96,104,105,95,97,107,104,111,103,109,121,113,106,107,105,105,105,106,103,112,101,95,106,102,99,90,99,103,115,103,111,110,104,115,89,114,106,99,114,113,110,100,99,109,107,101,114,111,98,101,103,104,102,119,108,102,102,109,95,106,101,104,111,111,103,87,115,113,102,101,126,102,117,96,111,117,111,102,114,106,106,115,95,103,99,106,113,102,111,98,95,95,110,72,109,111,106,103,101,96,107,112,111,107,107,104,103,106,114,99,99,115,95,104,97,102,117,97,99,107,108,105,88,105,120,115,104,100,109,127,112,106,99,93,110,98,106,103,98,102,100,109,104,100,106,104,134,99,107,107,113,102,95,106,103,102,109,108,100,112,109,101,103,120,104,106,113,110,107,117,110,108,100,101,103,99,98,107,96,101,113,96,104,97,114,116,103,100,99,94,94,103,101,97,91,104,109,89,103,99,119,109,100,100,103,102,103,97,106,107,95,101,104,97,101,121,72,100,105,105,108,92,102,98,91,111,104,109,107,99,93,109,110,106,102,112,108,113,121,106,99,98,112,104,101,102,100,121,99,103,107,107,107,92,110,104,99,99,107,116,108,103,96,109,120,90,99,98,88,110,108,102,95,107,95,102,114,99,105,95,99,103,107,91,103,100,110,101,103,112,96,114,96,113,103,98,112,113,109,98,109,132,105,100,113,91,115,112,96,98,85,107,102,106,108,91,109,110,97,103,103,92,100,102,91,101,108,106,125,103,108,104,101,101,99,109,110,75,115,99,110,94,109,104,105,107,89,111,118,107,112,106,98,87,95,99,95,109,111,107,110,93,101, +532.67603,99,108,98,103,96,104,112,96,95,86,106,95,94,106,110,105,103,100,123,108,76,93,90,105,109,103,105,118,116,103,107,95,105,110,99,102,117,101,104,103,101,91,104,104,107,107,99,108,82,103,117,114,109,103,113,96,103,112,102,93,129,92,110,99,96,107,99,112,113,103,108,101,102,103,84,110,109,104,101,103,107,105,107,106,96,99,117,102,101,98,99,98,99,101,100,104,100,96,91,80,108,97,91,83,99,98,101,104,97,102,98,96,109,101,111,97,100,88,106,104,111,113,100,103,106,102,111,99,113,99,95,94,88,115,109,109,96,97,108,121,100,117,96,101,104,96,112,106,103,104,107,119,99,95,98,100,103,110,110,98,95,110,112,105,106,103,109,91,104,110,103,106,99,95,114,109,93,97,108,97,101,104,98,106,100,94,94,100,99,105,98,103,122,114,101,104,104,108,101,110,106,105,117,100,95,112,83,112,107,114,111,106,103,106,104,113,104,105,97,99,115,106,99,102,97,99,100,118,106,105,107,107,94,110,106,113,110,104,96,108,107,100,109,108,107,111,94,97,107,89,102,102,105,102,99,103,111,108,102,109,85,108,98,106,92,108,106,103,98,92,104,104,113,106,116,103,104,118,106,99,104,103,105,108,108,99,98,116,103,105,102,123,116,113,107,99,98,112,116,106,111,110,103,98,105,113,112,102,102,118,102,115,103,107,105,97,108,102,112,105,120,82,104,112,104,122,108,103,109,102,113,101,108,102,107,122,107,105,84,106,109,97,102,96,107,108,99,95,108,107,103,108,105,99,102,103,102,113,99,106,112,101,116,103,95,105,113,113,99,118,115,108,119,100,100,101,101,109,98,108,111,122,98,109,93,118,104,100,113,92,113,104,99,98,104,96,119,104,92,112,95,107,106,120,108,104,113,111,111,90,102,99,102,114,102,79,110,101,104,105,94,101,102,106,104,109,105,114,95,108,95,106,99,96,95,91,111,92,100,96,110,106,102,97,92,105,100,92,121,114,91,114,113,111,101,99,115,116,128,104,95,111,104,111,105,109,109,92,109,102,102,104,103,95,91,103,99,103,106,104,94,111,112,103,112,103,119,108,110,103,102,104,99,103,112,105,104,108,105,112,111,106,106,103,109,100,101,104,105,98,109,104,90,99,103,111,100,102,97,95,98,94,110,104,111,99,109,109,101,102,94,110,80,94,101,109,102,103,96,106,117,109,112,97,106,101,121,122,102,113,105,109,111,110,102,109,113,98,114,95,106,103,105,113,96,106,106,111,110,104,100,107,108,97,99,109,117,110,106,111,100,120,107,107,106,101,112,111,106,105,121,111,103,104,101,107,110,106,108,109,113,102,99,115,104,108,104,106,99,100,106,102,112,113,126,97,103,109,96,104,106,118,107,104,103,107,95,109,100,103,103,98,109,111,104,104,91,103,104,107,109,104,113,115,112,122,97,103,103,118,104,106,127,110,98,106,118,103,107,114,104,108,99,102,111,114,112,107,94,114,103,102,116,108,103,112,91,103,112,97,111,98,105,102,106,109,95,107,103,88,111,116,118,104,112,105,104,105,108,102,104,98,95,101,113,112,122,100,104,123,109,105,103,105,111,88,104,107,112,104,108,97,86,102,103,119,112,112,99,111,108,95,96,100,100,112,100,103,112,95,90,95,112,110,110,102,108,106,106,106,116,98,110,100,101,113,98,112,107,112,107,110,100,102,88,110,123,98,108,103,103,116,111,106,101,109,99,103,80,100,120,100,110,94,100,107,98,111,95,105,110,121,105,110,99,113,103,116,100,116,109,94,100,113,105,98,109,103,96,101,109,94,106,100,118,119,101,92,91,108,96,110,99,102,114,110,105,78,107,110,108,131,105,117,102,106,88,122,117,116,109,109,111,96,101,142,103,103,102,100,110,101,78,105,107,108,103,136,110,113,105,113,100,121,99,99,101,99,110,110,111,108,104,114,98,109,108,99,107,106,103,100,100,107,110,109,114,110,109,89,108,120,104,97,112,108,98,100,112,106,113,108,107,109,105,105,98,95,113,108,96,112,104,110,102,105,106,107,99,95,104,104,113,110,102,117,110,106,110,104,105,92,106,108,104,69,108,115,98,112,102,105,114,95,99,98,94,114,99,101,103,106,109,114,106,113,111,109,102,107,108,101,96,96,111,112,95,119,103,107,98,110,111,94,91,111,116,116,102,110,101,108,100,124,106,101,96,98,109,114,104,112,108,111,96,107,103,104,102,108,103,108,104,108,119,84,116,109,74,109,92,105,114,111,103,94,117,107,106,111,114,106,110,96,94,105,105,104,106,85,111,109,107,101,128,104,108,115,104,108,102,111,104,86,110,111,103,109,105,95,115,101,102,113,111,100,108,105,105,105,100,112,109,100,111,101,106,106,98,106,105,116,117,123,108,102,100,109,104,93,93,104,105,99,103,107,109,110,118,114,100,112,101,99,118,105,103,108,115,98,107,103,108,120,94,120,107,100,103,110,105,119,105,102,107,93,99,116,102,122,102,124,102,97,105,109,107,110,106,112,105,110,116,104,110,113,107,106,91,96,102,79,95,103,113,70,112,121,138,102,103,101,108,109,102,106,95,105,100,107,109,112,107,99,115,106,99,113,102,105,104,112,113,111,109,93,103,103,105,105,93,103,96,95,113,106,125,113,124,99,104,103,108,113,94,111,106,91,105,99,99,103,106,117,97,112,100,105,111,103,98,114,101,98,107,111,117,113,98,103,116,108,107,113,101,115,108,98,112,100,98,95,100,110,106,113,106,106,103,104,139,100,113,102,106,105,113,104,98,109,108,104,116,102,77,98,100,117,101,124,111,105,102,110,113,116,104,105,100,110,104,111,103,124,101,109,106,88,105,106,109,108,111,103,91,109,111,108,110,104,89,94,94,106,111,100,94,105,106,113,96,113,103,105,107,98,101,111,110,115,108,109,95,109,110,117,108,104,99,112,115,99,99,94,113,105,100,96,108,97,105,103,98,112,107,110,98,109,97,107,107,108,110,111,122,109,108,107,114,113,100,106,120,93,98,113,98,88,98,106,107,97,115,107,115,104,114,106,106,114,118,83,117,108,108,111,98,117,101,107,108,88,106,90,104,95,100,108,104,101,91,100,96,108,113,98,110,100,99,94,109,106,105,106,109,105,97,104,99,123,101,103,112,108,99,99,97,105,106,103,103,99,102,96,98,106,84,120,114,98,113,95,121,106,100,97,94,106,99,98,108,103,95,96,106,101,108,103,100,106,94,100,105,110,113,113,110,113,113,107,109,107,102,94,107,108,101,109,101,105,110,103,95,97,99,94,112,109,113,105,102,108,108,117,109,116,81,107,102,98,101,112,111,116,107,106,102,103,120,103,112,110,96,105,91,108,105,106,106,95,108,106,113,104,109,104,111,101,103,99,114,95,100,101,90,112,106,105,100,98,101,105,107,103,106,94,101,105,101,106,100,102,88,111,108,114,99,107,103,96,110,97,103,110,107,112,111,108,108,101,100,98,106,105,106,115,96,117,108,122,108,107,99,93,99,114,102,104,102,94,95,110,108,99,103,104,102,108,106,105,99,119,95,90,107,105,100,104,101,79,110,102,101,82,108,105,106,105,106,113,100,95,113,108,104,95,101,98,93,112,110,109,108,98,97,96,105,100,116,110,99,110,101,107,117,102,104,99,102,104,97,102,106,99,100,94,112,111,101,106,103,121,95,112,99,92,98,112,117,105,104,99,106,105,96,115,102,98,111,110,102,104,101,110,116,107,102,102,97,98,111,93,84,105,98,111,117,101,109,115,92,113,106,98,108,106,94,103,117,103,91,107,104,109,115,114,99,109,102,105,99,104,102,102,110,102,98,111,102,98,112,102,106,106,107,96,103,100,108,108,107,96,98,100,97,100,103,92,104,101,100,113,96,104,111,106,97,97,98,98,106,111,121,99,96,95,102,107,100,106,104,115,104,122,97,96,109,102,110,113,102,99,115,107,101,109,121,102,103,104,111,101,99,104,99,109,101,107,102,98,111,104,112,91,106,106,104,112,113,105,96,111,102,103,109,115,102,112,104,109,80,102,76,99,103,94,111,105,96,111,124,99,105,110,106,109,96,106,101,101,101,102,102,98,109,108,106,111,102,102,101,106,107,105,98,99,87,130,92,115,114,103,105,113,114,106,110,104,96,104,109,104,112,100,102,114,99,94,114,104,111,103,102,105,109,103,103,108,105,105,103,110,113,100,101,98,104,100,102,116,112,107,101,100,102,95,105,107,116,110,103,103,107,102,114,106,114,107,120,112,103,102,107,107,102,112,95,110,103,93,101,96,111,110,109,110,105,117,103,101,107,98,105,120,114,82,102,128,109,105,107,105,103,110,108,106,105,105,99,106,117,112,99,109,102,91,100,96,105,109,112,95,106,103,104,110,102,91,106,91,116,89,96,116,103,108,99,99,100,107,93,96,91,102,118,100,114,110,91,91,101,100,102,103,101,97,127,102,98,104,116,103,95,109,88,106,106,102,97,118,108,114,116,94,101,99,105,97,106,103,93,94,105,122,121,99,106,96,107,112,92,103,104,83,110,99,115,103,103,105,117,106,99,104,106,105,112,105,103,101,99,103,107,98,98,109,93,111,119,105,103,104,118,96,104,102,111,110,111,100,103,111,110,107,119,101,83,105,109,99,99,104,105,102,100,97,98,102,107,74,116,98,102,100,105,111,100,110,102,107,106,107,95,105,101,117,100,99,114,101,97,105,114,103,101,103,100,102,87,100,105,78,105,105,106,111,97,79,95,104,121,105,98,99,87,108,105,91,102,79,103,106,84,111,101,110,108,110,102,98,122,98,98,95,118,109,116,102,93,94, +532.81683,96,97,105,106,85,96,98,103,119,114,93,94,107,102,95,104,107,105,107,109,102,108,104,108,89,101,96,100,94,107,105,92,92,103,102,97,101,93,100,102,100,87,101,105,105,98,104,117,104,98,104,90,111,99,119,101,105,76,111,94,89,106,105,96,104,111,98,95,81,96,95,96,103,114,103,105,97,112,97,119,101,108,100,106,92,95,104,113,109,103,96,101,101,112,92,105,106,90,103,98,108,105,116,105,92,100,100,97,97,93,108,94,108,101,98,107,106,107,98,101,96,108,107,105,106,93,98,95,108,100,115,108,105,104,107,108,98,105,101,112,111,104,97,100,105,107,88,95,101,96,101,105,111,106,98,101,100,85,103,112,98,107,107,103,106,109,93,101,106,102,104,104,111,98,108,106,104,102,63,100,106,107,97,99,108,99,90,99,103,109,110,122,91,97,94,110,106,113,108,107,84,113,88,104,112,104,107,107,116,95,106,112,98,110,107,103,95,103,112,109,105,98,104,99,100,129,94,100,113,101,114,112,103,117,107,96,107,106,93,119,103,99,109,110,95,109,101,104,113,109,98,106,104,105,100,102,99,103,94,104,101,102,96,108,98,115,103,110,107,102,110,105,107,106,101,104,113,116,102,99,106,110,108,104,103,96,89,106,108,102,93,102,110,103,100,106,119,100,114,104,97,105,103,113,97,109,100,104,99,110,104,109,103,106,108,117,108,104,112,100,107,92,107,98,101,113,109,96,103,112,96,100,100,104,100,104,104,111,109,96,99,118,107,101,105,106,113,100,112,99,108,102,102,102,113,111,94,96,92,90,113,101,95,97,99,104,113,113,112,111,105,101,104,98,103,100,106,95,109,102,101,99,106,98,90,105,103,105,107,103,93,107,97,112,93,100,100,98,96,96,93,105,101,98,106,99,103,120,112,93,108,102,102,107,102,110,104,105,114,106,99,102,105,100,108,107,104,110,102,117,94,113,102,106,103,106,99,101,99,101,125,87,96,104,114,96,114,95,111,83,82,83,99,104,108,102,106,103,114,114,112,108,106,115,116,111,102,102,117,112,99,115,110,96,91,109,106,102,100,100,100,105,109,77,108,103,110,99,111,137,99,87,96,102,105,103,102,114,107,100,108,108,98,109,97,98,103,103,116,104,121,110,106,106,105,97,108,113,108,108,114,107,117,104,103,132,101,101,108,110,106,106,101,116,114,103,108,99,114,103,100,113,102,105,103,121,111,98,113,113,96,107,112,107,101,105,105,98,110,104,106,111,87,133,98,97,108,108,99,101,89,108,98,96,111,108,93,105,118,103,92,102,97,95,98,105,112,100,107,106,110,113,95,89,103,99,107,105,102,103,104,98,108,96,109,106,106,94,107,98,106,117,99,95,95,103,101,110,105,104,96,117,95,101,103,102,101,100,112,112,105,117,103,102,104,98,105,99,94,103,104,116,109,101,114,95,114,93,108,114,100,113,93,100,111,109,106,112,104,107,124,105,104,105,93,100,104,98,113,110,107,103,89,106,88,103,114,105,101,102,105,102,110,107,107,104,114,107,110,104,107,103,105,98,98,95,100,114,95,97,107,100,100,113,109,115,109,103,106,109,97,102,110,100,97,105,106,102,106,111,96,107,113,107,100,92,112,97,96,106,102,101,109,97,96,105,115,110,100,95,94,115,94,70,105,105,102,82,99,106,114,100,110,103,108,103,106,103,105,95,99,110,99,103,87,125,90,111,103,103,77,88,109,91,100,100,113,100,107,99,96,104,121,104,106,115,99,113,97,118,98,93,100,99,109,102,110,108,106,108,111,104,98,95,102,117,107,91,103,102,112,104,104,101,110,110,119,100,104,111,94,114,102,97,124,103,107,105,104,112,105,103,110,119,104,96,105,104,108,112,99,104,102,109,108,97,106,101,107,103,105,112,106,105,101,99,98,117,117,107,97,101,102,96,111,97,107,103,101,107,104,114,109,109,113,103,112,102,91,83,96,81,102,110,107,103,106,116,117,107,113,109,107,99,67,105,101,95,100,103,113,102,114,91,106,137,93,99,103,99,102,105,117,106,116,103,105,104,115,100,116,112,107,115,113,100,100,99,102,104,105,98,113,106,97,118,101,100,104,111,100,96,100,104,108,98,102,116,101,112,101,97,104,103,107,91,123,101,83,111,110,128,107,96,107,111,99,110,106,113,101,114,109,106,103,101,113,109,101,102,110,95,110,109,110,112,125,98,113,108,126,118,119,112,107,113,100,116,109,117,117,99,102,103,111,114,92,88,108,107,91,115,105,103,99,117,103,118,107,99,105,99,102,93,116,108,146,100,111,71,109,96,109,90,113,99,99,107,102,112,121,105,103,98,91,99,111,107,109,91,108,116,113,101,96,100,98,104,94,112,102,109,111,106,108,115,106,95,104,102,94,106,107,108,94,112,88,106,117,79,111,112,113,112,109,103,96,120,101,110,102,94,109,96,109,113,116,112,116,113,98,88,98,95,106,104,109,101,101,108,101,106,95,118,92,102,105,107,109,101,108,91,112,108,121,98,109,97,112,102,106,106,110,123,99,108,92,106,106,96,103,106,102,117,92,92,103,79,95,100,96,105,108,104,103,97,108,98,101,114,116,91,113,110,105,91,99,109,115,96,97,93,111,101,103,106,104,105,117,123,113,107,100,94,101,113,116,99,106,95,94,101,102,98,111,101,106,95,116,108,104,112,103,108,93,105,112,99,106,105,101,112,104,109,101,111,104,98,104,102,108,111,102,105,113,102,98,105,110,99,102,110,115,111,114,103,95,94,103,115,110,101,110,98,112,95,113,97,102,124,100,107,93,110,113,107,108,97,102,109,109,108,101,104,104,105,101,106,92,122,107,106,101,123,109,101,114,96,100,112,96,100,106,104,109,107,113,106,111,110,109,111,120,102,101,102,100,105,112,103,99,104,94,104,102,102,91,106,97,101,112,106,98,91,107,109,104,104,104,106,109,110,100,100,114,99,110,103,105,103,115,129,121,113,101,102,103,103,105,105,108,105,122,97,108,112,111,119,98,106,107,113,111,116,98,106,100,117,102,93,99,116,104,100,115,109,109,100,102,98,122,98,107,120,106,93,92,103,109,95,93,99,100,95,94,101,87,102,104,97,111,107,108,100,117,100,113,93,108,93,105,103,75,101,109,108,109,105,113,110,92,104,103,115,98,112,97,105,103,114,95,116,112,101,105,112,105,97,110,99,115,91,109,105,99,98,104,107,111,103,107,95,120,110,102,108,108,107,110,97,100,111,103,112,112,105,92,96,95,95,101,108,94,96,112,94,99,103,105,98,102,88,95,100,102,101,104,99,103,106,106,106,111,112,105,109,108,106,98,105,98,112,103,96,93,77,103,104,107,108,105,96,104,102,110,99,101,103,108,120,112,108,105,104,105,96,109,107,96,99,102,107,108,110,112,112,109,94,104,101,102,90,110,103,100,103,96,111,105,102,110,91,96,107,116,97,105,106,92,119,105,104,107,101,100,112,107,106,95,99,100,103,115,106,104,110,82,119,104,106,109,94,109,98,103,113,117,106,108,102,114,99,104,108,104,115,113,97,108,106,109,104,116,102,122,79,102,91,106,107,102,104,102,110,96,112,95,106,102,106,109,106,100,103,101,100,118,106,105,102,120,105,101,103,101,92,103,113,107,95,107,103,124,90,105,105,105,107,109,106,108,96,98,103,108,109,115,99,102,101,95,109,104,102,104,105,108,102,111,108,113,102,100,106,104,101,104,102,103,101,106,105,102,110,109,87,109,109,105,104,114,94,105,108,95,103,99,98,101,108,101,103,109,99,104,110,104,98,108,107,104,98,98,98,102,101,96,87,100,107,102,104,108,102,109,104,113,104,109,110,93,105,79,106,101,97,106,101,107,97,100,94,83,97,110,115,93,104,118,104,117,101,103,113,87,105,100,100,104,109,91,100,109,110,100,119,110,106,110,105,116,83,96,90,116,110,103,100,103,108,108,96,100,113,100,91,108,93,101,98,102,105,94,92,108,109,105,105,107,88,105,94,117,94,117,103,106,101,111,96,102,99,109,96,106,109,101,99,104,102,106,100,97,102,105,110,110,95,109,113,107,101,109,104,99,112,91,123,107,97,105,95,95,110,113,84,109,100,98,110,100,100,103,101,118,114,98,104,111,108,107,117,110,107,106,109,107,99,107,107,106,103,91,87,80,104,103,102,105,99,104,116,105,103,111,121,100,98,93,108,103,96,128,109,109,99,112,102,92,111,100,99,116,107,111,116,101,98,97,113,108,103,99,105,106,106,95,108,108,89,100,103,103,102,99,110,100,83,96,92,94,113,102,109,105,115,105,107,99,98,105,90,93,105,107,97,119,110,99,95,98,99,104,105,104,101,108,112,113,97,100,102,85,114,106,97,96,102,102,114,101,126,106,108,95,90,105,102,111,111,109,101,105,98,106,103,108,95,95,106,80,98,115,106,104,109,111,109,106,111,101,105,104,102,104,113,97,108,96,106,105,97,103,108,113,107,108,104,100,83,98,112,121,108,110,106,107,113,95,113,108,105,104,115,107,97,99,101,104,105,118,119,102,118,91,113,99,111,100,105,106,106,99,105,119,93,116,102,119,109,102,99,104,104,133,104,100,102,96,105,102,96,99,116,104,103,105,94,113,100,104,95,109,102,106,113,104,104,98,99,97,103,103,77,96,124,92,88,109,98,105,112,106,98,97,102,102,99,110,109,96,99,106,101,98,107,110,109,106,105,103,107,114,87,107,107,100,105,103,112,110,104,102,102,100,119,100,100,102,87,105,92,88,107,113,106,108,104,102,95,111,101,101,114,103,102,97,96,99,93,128,103,103,112,90,103,92,102,95,113, +532.95758,101,108,100,113,109,107,103,104,91,104,97,91,102,106,105,117,98,105,121,104,95,92,89,117,100,93,125,117,102,109,99,98,104,99,103,104,100,105,102,102,104,114,100,122,101,109,112,108,93,114,101,105,110,110,121,114,101,105,108,117,109,129,96,99,108,108,102,109,81,88,113,112,100,120,114,98,112,102,109,110,111,114,99,104,109,101,101,107,102,99,109,104,94,101,101,102,106,101,87,107,132,97,98,102,108,99,103,94,101,122,104,100,104,100,95,91,109,106,125,95,106,105,111,111,109,105,103,107,109,95,108,120,102,108,112,88,97,103,95,104,96,104,103,104,98,86,109,112,104,84,79,99,115,105,100,113,98,108,103,122,97,105,114,113,100,92,95,101,106,109,95,100,106,120,108,91,103,100,107,100,103,103,104,101,98,98,96,97,111,106,97,99,114,101,112,108,107,109,98,107,108,106,94,105,94,118,115,106,109,106,103,107,111,100,113,99,92,123,103,104,114,100,105,113,109,115,103,117,105,102,100,96,113,69,107,117,110,112,94,106,109,106,109,109,107,102,108,109,104,106,109,106,103,102,109,114,112,109,94,99,93,113,99,110,90,124,116,101,109,109,108,110,107,121,110,104,108,111,114,100,99,94,103,111,106,118,100,110,106,98,106,107,107,105,107,108,117,96,103,105,106,92,98,116,98,108,112,113,105,104,110,114,115,106,105,104,114,97,90,108,107,105,113,113,100,100,107,94,111,102,117,103,104,93,101,99,107,104,106,102,70,107,99,103,101,106,97,101,139,103,106,107,105,111,104,106,107,93,107,108,121,110,100,104,100,124,104,109,106,117,108,116,122,116,107,98,110,110,98,108,109,113,110,121,102,107,101,104,107,104,117,108,115,111,99,103,98,92,107,107,122,114,104,106,112,104,99,106,117,100,98,97,102,109,108,101,100,100,125,98,108,107,91,110,111,107,108,113,100,112,94,93,106,123,105,112,92,100,96,98,112,101,98,101,105,102,101,106,113,112,114,109,112,115,113,111,102,101,120,107,119,113,112,101,101,94,115,104,110,101,113,113,96,104,107,98,113,101,123,110,121,94,104,103,95,95,113,93,106,106,106,109,104,105,105,93,102,107,133,111,94,111,112,103,101,117,95,96,110,105,117,117,99,113,118,102,103,112,111,110,98,89,113,110,113,103,114,103,107,105,108,85,99,111,96,118,105,104,106,100,99,108,101,95,108,106,133,98,106,84,108,105,111,105,113,112,108,105,110,115,109,104,105,100,96,112,112,113,109,95,90,111,102,102,110,105,120,106,112,119,102,99,109,99,112,82,133,111,102,111,99,111,103,108,119,117,98,103,100,109,108,100,107,101,80,101,118,117,118,116,104,97,109,105,106,96,109,105,114,97,113,105,110,108,109,100,102,109,117,86,102,103,104,108,107,83,105,120,116,97,109,108,109,112,100,92,107,112,113,111,102,108,108,110,111,121,107,105,103,98,110,110,104,109,104,115,122,86,104,118,114,110,103,109,106,105,114,94,99,108,100,110,105,100,95,107,88,107,116,104,103,117,108,110,114,105,73,102,103,110,119,103,99,102,104,111,116,103,113,103,110,100,110,101,96,112,103,112,115,104,105,109,106,113,103,105,99,116,102,108,96,113,101,86,101,98,110,106,110,115,110,100,108,101,95,106,94,104,105,98,110,109,113,109,94,109,113,111,107,106,109,113,109,107,97,104,103,98,109,109,110,111,102,106,101,103,124,104,114,82,103,110,108,111,114,116,106,110,106,102,109,108,103,112,106,108,108,107,111,105,117,85,96,101,115,103,100,102,110,114,108,109,86,99,87,117,116,112,108,109,109,111,113,113,103,103,98,107,112,103,111,117,110,112,116,102,99,99,107,113,113,118,102,108,100,104,120,98,109,109,104,115,116,96,112,109,114,112,120,108,104,112,108,104,102,103,103,94,116,103,105,111,97,104,107,108,114,106,111,113,103,97,111,92,129,115,108,108,112,106,94,117,118,105,111,102,110,103,113,115,112,113,102,104,111,92,107,108,108,103,103,114,112,113,112,100,106,109,115,101,99,103,91,111,115,105,124,97,106,108,95,114,112,106,100,104,107,78,115,114,101,101,99,109,105,103,118,104,104,109,112,105,119,108,103,114,117,115,96,110,111,101,119,91,99,102,107,105,101,94,100,96,101,96,96,115,105,102,96,118,109,108,95,102,119,101,103,101,96,108,107,117,118,96,94,115,109,111,114,97,142,113,99,104,101,111,105,100,117,100,107,113,99,108,108,113,110,115,98,104,117,107,102,109,110,115,106,112,108,108,100,108,112,113,118,82,116,115,99,117,105,104,98,107,105,105,107,92,117,117,106,127,106,106,110,95,99,106,110,115,108,112,115,125,114,107,104,111,102,114,103,114,112,99,84,101,110,114,111,99,95,105,100,107,102,106,98,91,121,104,113,98,108,98,92,105,112,101,106,88,113,104,115,109,104,103,115,112,105,104,98,104,107,102,112,103,101,109,105,104,104,96,90,110,108,103,108,94,116,102,100,105,111,86,105,108,95,91,111,106,98,106,109,113,110,99,105,100,105,92,114,98,99,89,94,108,88,101,102,101,106,98,101,96,100,110,111,106,114,102,95,106,104,112,115,110,103,97,90,108,102,106,104,111,118,103,115,99,99,106,95,101,127,108,89,112,95,111,98,108,102,122,128,105,103,91,110,118,97,106,89,113,109,104,119,95,106,118,103,96,110,109,103,99,104,108,107,106,120,81,102,112,98,106,108,110,107,98,109,107,113,98,102,98,110,101,114,114,102,112,104,109,96,104,90,107,110,106,108,108,110,99,106,98,113,99,117,99,103,118,109,108,106,109,107,96,103,102,121,107,112,89,102,109,96,97,95,95,106,111,102,115,97,109,120,105,99,104,117,98,99,108,96,110,111,110,96,105,104,94,92,96,99,106,103,110,99,101,100,108,124,103,100,117,117,103,109,98,113,93,96,108,100,112,108,102,109,98,119,108,103,108,117,93,102,107,117,107,101,109,114,108,106,97,105,133,116,106,104,101,115,100,105,108,115,93,112,117,113,96,111,100,110,109,111,90,106,100,86,104,97,101,95,107,105,101,98,95,117,109,105,75,101,101,112,110,112,87,99,95,95,95,100,102,100,101,95,113,117,91,94,96,101,110,102,106,98,104,102,111,102,106,92,109,101,110,98,109,105,98,97,109,100,106,103,94,96,122,104,109,108,109,109,98,103,113,107,96,108,91,100,109,98,99,101,103,110,110,102,99,129,108,99,105,100,116,93,101,104,96,108,109,107,98,111,107,103,117,115,102,102,114,98,102,107,95,117,107,99,109,99,98,103,104,100,87,103,93,99,95,95,112,137,113,105,112,101,101,111,104,92,111,87,105,106,104,92,100,107,100,96,95,99,95,96,121,105,104,117,102,115,123,100,102,95,104,113,92,108,101,103,101,101,96,104,100,105,93,97,91,108,114,111,112,105,110,111,110,100,117,105,92,99,113,99,95,98,103,115,121,111,93,103,104,116,101,112,100,101,94,105,100,101,105,107,111,102,101,109,107,108,90,132,107,115,109,100,110,102,91,104,109,98,108,87,100,109,105,92,92,102,114,100,111,94,98,108,108,113,108,98,96,103,111,108,97,122,102,98,92,104,109,106,89,108,99,96,97,96,104,103,105,101,92,84,104,108,101,113,110,90,100,110,104,89,103,134,109,116,105,109,94,102,110,108,102,99,94,95,102,105,103,100,86,109,104,99,107,105,120,121,102,93,105,111,103,98,108,100,116,104,116,102,103,93,103,112,106,117,107,110,105,110,90,107,99,105,91,98,111,95,102,107,94,106,103,91,95,104,110,87,113,106,113,108,99,113,100,117,95,92,100,102,101,94,104,92,108,110,88,98,101,95,97,99,134,97,103,112,100,88,111,106,110,103,106,92,100,106,105,114,111,105,98,110,92,108,91,108,109,105,94,98,105,106,113,100,95,102,91,105,114,116,98,106,113,104,104,102,105,108,100,102,98,115,104,100,97,104,103,108,111,104,97,98,107,77,111,108,103,107,122,104,117,109,107,104,76,107,110,103,112,94,101,105,90,103,98,100,101,99,99,109,100,104,104,98,105,107,101,107,109,105,110,104,112,101,108,112,113,107,102,98,104,115,115,99,100,107,107,107,103,117,112,91,103,108,106,102,117,93,117,108,111,92,103,108,104,106,99,100,84,106,103,96,111,119,90,103,114,99,96,105,108,103,110,113,108,103,101,111,101,111,118,105,112,104,99,102,101,106,91,72,102,113,109,114,115,105,111,104,95,87,98,100,116,101,104,99,102,101,102,123,99,106,98,98,113,103,122,108,108,114,112,106,98,95,107,104,97,110,96,107,119,102,98,97,105,110,106,96,105,106,109,105,105,99,106,124,107,97,98,90,104,98,107,100,108,90,98,91,115,103,102,109,103,101,101,101,100,98,94,109,96,100,103,106,116,109,102,98,109,104,103,97,98,107,83,109,86,95,107,111,97,100,107,107,95,86,98,108,98,95,102,109,110,101,106,99,122,92,108,89,93,112,106,109,117,112,99,109,114,111,108,102,104,113,106,107,109,98,96,96,99,115,105,105,103,103,102,101,103,103,104,102,94,94,112,122,110,113,107,104,99,118,94,96,98,80,106,106,104,105,114,100,89,100,107,98,93,114,97,107,103,120,104,104,105,113,100,109,100,102,98,102,102,104,91,112,91,113,102,95,98,112,107,91,104,109,112,124,103,127,95,106,121,109,112,92,104,106,106,103,94,102,120,100,120,98,105,106,104,98,95,111,106,101,111,93,99,103,94,94,87,113,83,95,104,117,102, +533.09839,120,105,92,78,92,106,95,104,101,98,100,89,104,98,105,106,107,103,120,101,111,103,102,94,105,108,98,103,98,101,92,87,97,89,107,109,113,99,107,110,97,104,104,89,104,105,102,112,86,106,98,102,96,103,104,108,88,101,107,101,96,97,105,98,99,101,86,97,100,99,105,103,95,107,96,108,88,99,103,104,112,107,98,106,99,100,98,104,109,112,106,116,92,102,95,92,99,93,107,107,98,112,109,100,90,86,102,105,100,112,101,110,107,103,119,97,113,108,91,99,90,99,105,99,107,108,101,105,113,94,99,103,100,119,112,99,91,100,104,115,100,101,88,99,96,104,114,120,97,99,100,108,93,101,98,105,113,83,113,107,97,80,119,96,110,100,111,100,98,105,110,107,96,102,111,109,102,102,105,101,111,104,108,113,125,112,106,92,101,96,101,101,96,112,102,102,105,109,107,97,105,96,97,113,113,105,104,124,107,99,97,98,111,102,104,105,92,104,102,100,93,106,102,100,102,113,103,106,103,88,98,105,108,92,100,98,103,102,103,108,105,124,104,97,105,104,87,110,105,104,107,106,102,105,94,105,100,101,97,110,104,121,102,99,98,107,103,103,105,91,95,104,115,110,119,109,93,106,99,91,109,98,106,106,107,99,105,114,99,114,92,117,107,108,114,99,125,103,109,94,97,101,104,108,100,107,113,106,96,106,95,113,100,110,98,104,103,82,105,105,104,98,109,97,105,101,99,95,100,107,110,111,102,102,106,102,105,100,116,102,104,117,93,96,104,86,116,98,102,100,103,101,106,103,101,100,119,102,94,118,116,111,103,103,115,105,109,96,101,104,104,112,105,110,111,93,98,99,100,114,108,105,110,95,110,104,100,93,109,99,108,104,92,98,95,98,103,109,102,102,91,97,105,110,102,100,113,101,102,97,91,109,98,105,106,109,103,112,106,110,100,93,95,114,103,101,107,101,98,101,98,100,87,103,97,98,95,108,111,104,104,116,115,71,106,106,102,104,104,125,103,97,111,102,94,109,102,101,86,121,107,98,106,112,103,112,103,82,107,99,93,109,109,105,105,100,105,111,103,103,102,105,121,108,102,97,103,108,116,101,96,109,99,99,123,101,110,105,113,99,114,106,110,112,107,110,93,107,105,102,109,101,87,101,100,105,110,109,94,97,94,105,92,106,113,99,101,117,114,103,94,106,111,94,98,91,113,112,130,108,94,100,95,99,107,97,108,105,107,113,110,117,110,105,112,105,88,101,98,90,101,100,91,118,102,105,101,90,107,96,104,93,98,113,113,122,101,97,102,108,105,94,95,101,102,97,103,107,105,109,103,105,92,106,109,117,103,104,109,104,107,103,98,94,112,89,103,101,112,98,115,95,101,108,111,104,100,105,109,106,102,108,104,112,105,106,105,119,99,97,113,101,99,102,102,109,104,107,106,108,110,101,107,117,82,104,97,97,110,87,101,113,89,101,108,103,122,110,111,101,91,113,111,108,116,102,107,94,101,94,112,111,104,103,99,103,114,101,121,110,117,106,103,100,89,106,122,116,98,91,105,108,100,110,95,112,98,98,112,92,97,98,94,109,104,93,93,76,95,99,113,102,95,106,100,109,99,102,91,107,102,92,100,100,110,90,98,104,105,111,94,108,111,109,114,100,103,102,101,101,106,115,98,101,111,112,110,99,100,102,94,86,103,93,101,100,117,105,104,96,104,111,88,103,92,89,99,108,97,112,108,102,108,96,106,102,103,109,115,99,102,101,112,103,102,97,108,116,101,118,103,116,106,103,96,107,106,94,105,110,108,110,98,101,111,108,103,112,107,94,99,118,101,67,107,113,103,113,99,105,103,117,103,99,107,101,112,104,103,110,108,109,110,112,105,109,103,110,105,117,108,105,106,100,103,104,95,116,109,100,108,98,102,104,104,108,102,101,96,103,108,96,90,105,84,96,104,112,117,104,110,105,101,101,112,95,107,102,97,104,110,112,113,110,96,112,115,111,108,99,97,109,100,109,112,109,119,96,106,112,101,103,106,119,89,100,104,100,107,100,111,116,108,102,101,100,101,102,105,98,102,109,112,97,112,98,101,97,82,107,100,117,97,110,100,94,111,95,94,107,102,102,110,110,95,125,106,99,101,106,105,92,106,120,97,103,111,103,104,108,103,123,101,110,100,99,89,97,105,101,104,102,101,106,99,103,99,88,112,98,97,128,105,111,113,114,100,93,100,97,109,105,120,107,105,99,98,110,100,108,116,104,111,99,109,95,114,111,94,95,96,100,100,104,100,104,96,101,116,132,112,115,118,108,102,86,111,97,103,103,96,105,113,95,112,100,96,100,107,110,101,103,109,99,102,88,109,108,92,109,123,103,97,103,97,105,97,109,83,106,107,116,89,113,106,108,94,124,109,102,105,106,105,98,95,86,109,103,99,108,102,117,102,114,107,117,95,112,105,103,107,106,112,82,98,109,108,107,111,97,105,102,98,104,109,110,102,111,112,103,107,110,104,103,105,116,108,101,101,115,115,115,118,103,95,114,105,111,100,107,106,119,109,98,100,106,101,121,102,109,108,98,91,113,105,98,103,117,108,94,102,101,121,99,107,108,94,117,105,114,100,96,100,103,108,99,107,100,116,109,112,99,108,111,107,102,102,109,109,110,97,109,110,101,112,119,106,109,106,111,94,104,118,107,109,116,122,108,100,103,103,111,116,102,98,112,103,101,109,96,105,79,117,111,100,129,113,126,107,110,103,106,98,104,112,113,116,116,102,120,99,110,109,93,106,97,103,102,100,112,123,104,98,105,106,96,113,134,95,100,109,108,114,103,106,100,99,108,98,120,104,111,104,102,95,116,105,100,100,111,116,106,107,110,109,103,100,98,99,106,106,105,113,99,109,107,101,106,109,113,116,104,96,106,111,115,98,127,110,101,96,115,98,103,90,106,104,117,100,109,111,129,102,103,113,108,110,94,99,107,110,103,98,107,108,112,106,116,93,101,114,113,101,105,112,98,116,104,104,120,102,100,104,116,106,98,98,103,113,88,109,112,102,87,93,90,105,102,103,103,103,119,111,110,106,101,108,113,107,106,119,102,105,91,111,107,106,116,105,104,96,104,106,107,99,84,107,109,106,96,97,116,98,113,110,95,112,99,106,107,109,108,104,100,93,111,100,105,102,106,94,106,93,109,106,84,107,109,101,111,111,104,100,114,97,108,97,103,119,108,106,108,105,118,115,94,109,108,100,107,109,108,107,103,99,102,106,116,102,96,105,104,116,102,102,117,102,113,103,97,112,126,105,113,107,110,100,108,111,105,107,117,100,103,106,100,110,105,104,114,105,107,105,81,113,100,98,86,105,109,120,106,100,97,104,106,103,113,112,106,104,113,103,121,96,112,116,73,95,88,103,95,101,95,107,105,105,109,109,104,107,102,106,111,100,103,113,93,98,96,113,105,106,111,94,101,98,101,97,97,107,100,109,107,111,103,117,101,102,102,104,109,104,104,106,111,108,105,103,120,103,111,98,77,105,106,92,106,106,106,117,102,104,102,104,113,94,109,98,106,102,100,103,107,107,108,120,103,106,107,103,110,99,102,115,95,106,103,98,106,110,100,99,95,105,91,127,113,107,119,102,106,95,126,97,109,107,114,105,115,107,111,112,116,93,98,119,104,109,107,112,112,109,110,104,123,105,112,98,102,99,90,102,100,118,104,101,104,98,96,104,97,113,95,107,93,73,116,109,102,117,106,109,107,86,96,109,113,120,107,103,108,94,96,105,106,97,113,105,110,119,106,108,106,97,120,104,102,112,99,105,105,113,100,95,111,99,105,99,95,95,113,114,106,90,111,102,106,101,108,109,98,94,106,96,99,101,103,112,106,112,101,98,102,115,100,111,96,107,100,94,108,99,99,114,105,95,110,112,99,101,105,101,104,111,109,106,94,106,105,104,83,104,102,110,99,106,107,95,113,102,99,98,125,107,106,105,107,105,137,107,106,99,113,102,112,107,120,111,106,101,96,101,105,111,113,100,69,92,104,100,110,104,94,97,109,121,100,81,102,103,115,102,106,99,121,115,119,102,113,106,102,104,102,101,103,110,111,101,93,104,104,98,125,105,110,115,109,108,119,113,111,104,98,98,105,108,94,97,84,106,121,115,111,126,110,103,129,109,99,104,85,102,117,95,112,90,112,104,109,113,111,104,107,78,106,100,114,100,97,99,95,103,80,104,105,98,105,106,113,104,97,104,100,121,111,110,95,75,96,106,112,103,102,108,108,109,114,107,121,117,103,104,105,110,95,107,107,104,112,113,109,112,80,114,99,113,98,106,112,113,109,106,119,108,105,105,108,105,113,112,112,115,104,98,104,99,107,116,95,97,103,106,73,113,104,102,91,104,108,114,102,103,95,103,81,101,95,103,104,108,112,106,68,104,101,107,91,105,112,117,101,100,114,106,104,103,100,103,103,96,90,108,114,117,124,106,113,106,93,92,104,102,111,105,112,96,119,112,106,109,118,101,107,101,108,76,102,110,107,121,107,117,98,131,95,93,104,81,100,107,100,110,105,112,100,116,108,98,97,92,97,98,115,107,104,96,111,109,97,105,114,107,105,113,104,118,90,106,97,106,115,101,110,100,102,99,106,98,96,106,90,89,106,102,100,112,101,105,106,95,104,105,94,102,117,109,106,106,96,107,114,97,107,93,107,109,104,111,114,112,110,102,79,111,114,102,123,111,108,109,88,102,96,95,104,129,119,102,101,108,93,103,95,97,97,105,96,97,107,99,102,102,106,109,101,91,109,92,106,104,112,108,93,94,103,95,102,106,100,104,103,120,96,104,103,104,97,96,107,109,104,104,103,101,97,101,107,100,95, +533.23914,103,90,93,94,91,111,105,99,96,97,88,97,103,111,106,81,101,96,95,92,108,98,103,97,100,99,100,101,99,90,121,120,100,135,105,97,104,110,101,103,105,112,103,98,104,101,95,103,106,111,96,108,104,109,120,87,108,109,105,100,103,109,104,103,100,102,98,113,109,99,110,109,104,100,91,111,100,101,124,102,89,108,110,89,99,96,99,93,93,105,100,91,99,115,93,87,89,108,102,95,96,105,78,106,104,100,115,107,100,101,99,114,116,109,102,94,118,108,104,104,106,117,107,97,113,107,97,108,122,100,101,99,94,93,109,100,93,112,116,104,113,103,109,100,92,113,109,104,111,107,98,104,104,94,102,107,109,108,118,92,106,106,107,100,104,106,100,106,113,112,103,104,113,103,103,100,106,113,100,103,132,98,102,99,110,101,102,93,105,114,112,105,99,97,93,108,121,106,99,107,83,99,95,102,98,107,103,99,102,105,117,110,113,114,104,101,97,111,101,98,108,108,102,102,89,107,99,109,88,99,109,101,104,105,106,116,101,112,94,101,95,104,117,93,109,114,97,98,110,101,97,112,104,99,98,102,100,92,99,120,98,108,108,102,99,104,108,103,105,96,102,100,110,103,126,99,100,103,94,99,104,104,104,111,100,95,94,102,99,108,105,104,107,102,100,89,105,101,108,113,90,101,100,115,110,105,100,109,106,93,83,118,105,111,111,95,109,117,110,115,106,104,111,99,96,100,98,94,112,106,110,98,112,101,105,101,106,89,98,108,101,107,104,100,104,110,110,119,108,123,110,118,99,110,117,100,108,112,104,121,104,102,108,114,100,117,112,99,122,115,105,107,104,101,114,105,104,112,90,107,104,105,99,107,105,106,105,110,89,90,114,100,104,114,105,100,96,102,104,111,109,103,105,110,97,94,108,103,99,102,99,103,117,98,107,106,103,108,104,102,100,74,111,98,109,106,111,104,109,114,98,103,100,99,106,103,103,100,69,96,104,104,99,106,100,106,100,96,106,110,114,109,101,112,95,103,99,105,90,94,100,107,111,100,102,104,92,102,103,113,99,103,102,101,95,102,104,104,107,102,113,104,113,99,118,98,109,96,110,92,127,87,109,101,104,103,98,105,104,102,94,109,96,99,99,98,97,106,101,103,111,97,104,104,100,103,110,99,104,95,108,102,97,99,115,110,107,122,110,109,105,105,120,95,106,99,111,96,100,115,99,114,100,104,108,108,103,118,114,107,107,110,108,98,117,104,107,112,110,100,102,120,101,104,104,106,106,100,105,99,106,106,104,105,99,106,100,119,99,115,107,98,119,75,101,97,120,101,107,106,103,108,104,109,105,104,105,103,103,121,99,113,115,103,99,103,100,104,108,111,103,111,107,99,109,114,96,100,104,105,105,105,116,107,103,99,94,96,125,104,95,94,106,102,83,94,100,103,106,116,106,104,98,94,90,99,102,101,111,104,101,111,100,94,99,99,96,110,90,131,104,110,104,94,109,94,106,68,109,102,104,109,107,99,103,105,104,108,90,103,109,105,115,90,104,102,93,109,102,107,106,115,98,106,100,109,102,99,109,112,94,102,111,107,98,103,103,103,119,104,103,104,95,99,91,106,92,95,107,100,101,112,110,101,99,99,77,110,108,106,106,99,114,114,110,103,108,108,110,104,116,132,98,105,110,102,120,100,98,103,110,112,100,105,102,121,113,109,108,119,102,110,104,106,97,110,92,99,103,106,110,97,102,111,101,101,105,92,105,103,107,94,114,105,117,110,100,107,99,95,100,109,106,100,108,113,104,109,104,101,108,115,94,108,104,118,102,115,105,108,107,107,120,101,113,104,119,113,109,114,107,109,107,108,120,98,101,97,104,99,98,96,102,112,91,110,97,92,110,110,102,100,108,100,105,106,100,113,102,106,106,100,109,102,95,98,103,109,93,101,116,111,95,108,124,105,101,103,104,110,101,103,90,100,95,106,110,99,110,95,106,100,116,107,95,108,102,106,112,93,110,106,104,99,102,97,102,103,101,114,107,112,72,119,100,106,105,103,114,94,97,100,112,102,104,96,111,110,99,115,101,98,103,106,104,101,108,95,107,110,98,107,100,106,109,104,115,98,110,116,95,105,97,107,105,115,120,98,103,99,104,95,111,109,108,102,106,112,97,101,108,111,103,99,99,100,105,114,101,88,94,104,115,94,110,79,101,103,100,111,104,124,110,94,92,106,105,102,105,104,114,102,112,121,99,93,100,105,117,117,106,103,98,72,102,92,104,105,99,97,97,98,113,119,109,108,104,107,107,116,116,118,98,98,115,103,126,97,109,112,100,104,104,96,109,85,104,103,99,105,99,104,106,101,98,110,105,105,104,113,109,100,103,119,99,95,102,89,116,105,117,114,113,102,103,112,106,96,101,101,105,107,106,116,85,111,102,98,112,95,108,106,100,128,100,103,111,101,106,107,116,104,99,94,101,102,110,109,83,104,125,99,95,111,108,114,112,94,105,109,103,116,107,104,126,103,100,113,92,104,102,116,110,106,116,105,109,112,110,103,112,113,108,101,112,103,113,129,103,82,101,99,107,113,98,103,99,104,106,104,119,110,113,109,101,103,100,112,100,110,99,98,111,103,112,100,104,102,107,98,86,105,104,105,123,107,108,104,116,110,95,108,104,108,113,112,112,109,117,108,105,102,108,117,96,116,100,99,109,101,112,107,102,92,113,103,102,110,94,107,113,106,93,99,102,101,106,113,102,78,108,110,111,112,109,109,106,109,99,102,101,114,88,113,115,92,92,110,105,116,99,106,111,111,114,104,105,103,107,117,107,129,96,100,98,115,97,110,104,110,105,105,100,94,106,97,67,109,110,109,102,107,108,99,110,98,108,116,108,110,111,109,114,109,102,112,112,99,105,112,125,102,94,104,108,109,106,114,115,112,103,99,99,108,109,91,107,109,104,106,83,111,102,115,106,118,106,110,105,109,120,102,109,117,110,107,105,116,111,102,104,105,105,107,106,105,114,106,109,106,106,113,112,103,110,113,111,111,108,117,112,106,118,118,106,110,91,110,108,91,113,104,103,105,118,72,105,104,102,108,102,98,104,108,105,112,111,118,107,100,113,103,113,107,122,104,109,82,82,81,101,104,112,132,112,118,101,98,118,117,97,96,106,112,103,102,108,102,106,101,109,108,106,114,108,105,112,113,106,106,112,114,98,107,107,103,105,104,117,100,105,115,112,117,122,102,113,100,101,110,107,99,109,125,109,97,109,97,112,94,99,91,118,108,99,110,98,103,109,102,104,102,76,106,111,95,100,97,107,94,111,123,106,113,106,102,101,108,114,101,99,115,111,109,100,97,117,104,110,105,110,100,106,99,111,109,103,100,94,100,94,107,117,109,106,104,117,110,103,112,102,101,107,108,99,103,110,109,112,112,102,101,112,99,100,97,118,108,96,95,104,113,113,105,94,110,108,99,106,108,117,105,106,108,138,104,100,101,99,104,114,95,109,117,106,138,112,109,105,98,101,117,106,107,106,104,111,111,99,121,100,99,115,96,100,113,109,96,105,99,103,110,97,103,100,82,103,96,113,109,81,108,105,98,112,112,108,105,106,104,104,104,111,113,107,96,87,97,99,116,103,98,106,114,104,105,117,91,96,126,108,119,112,91,101,107,110,108,104,94,95,108,104,96,114,106,99,101,106,97,100,115,102,106,123,95,102,102,98,108,109,93,95,105,104,101,110,103,99,108,100,87,95,109,105,103,104,104,113,97,114,103,99,106,97,106,121,115,95,107,104,108,103,108,91,104,106,93,94,83,98,114,113,98,103,105,110,102,108,110,121,108,101,110,96,107,114,125,101,112,102,101,115,109,103,112,112,99,99,109,103,98,106,102,101,101,113,105,108,105,107,107,100,114,95,105,113,114,112,109,107,106,105,99,106,107,106,100,100,94,126,104,94,107,104,106,111,122,118,104,114,113,108,111,99,105,97,102,107,100,108,106,97,100,96,103,111,113,110,109,112,107,109,102,112,108,103,110,94,105,105,103,98,108,112,67,94,100,108,118,97,100,106,113,105,116,79,106,102,106,102,104,116,100,101,114,116,100,107,104,97,104,100,100,103,92,108,93,97,116,106,112,101,101,108,104,112,102,99,104,121,107,104,112,107,103,98,98,96,105,111,103,103,103,124,108,103,101,98,100,105,105,97,102,99,114,93,116,103,102,98,101,114,101,94,102,105,108,95,113,116,100,99,100,95,108,117,100,95,112,93,112,112,92,111,104,102,104,108,112,103,103,100,107,122,106,99,107,108,102,106,103,112,102,95,114,104,104,112,114,101,98,110,107,99,99,107,108,97,105,114,107,114,120,104,106,119,112,108,116,93,99,108,107,103,113,92,100,106,110,107,84,96,88,120,105,102,96,102,109,108,109,111,104,106,95,94,111,108,108,106,108,110,113,101,106,92,104,95,103,104,102,109,100,108,107,102,103,112,98,86,96,102,116,105,109,110,111,103,79,105,99,104,94,77,100,109,98,120,109,97,117,109,105,101,103,110,99,93,98,102,99,103,106,119,107,102,105,109,100,99,111,99,115,106,114,110,114,121,97,134,107,107,112,95,98,105,99,112,93,105,101,120,127,107,97,112,100,101,113,112,99,104,96,103,97,116,82,105,102,100,104,116,116,114,98,121,104,102,107,90,124,101,102,95,98,108,107,102,116,72,101,103,99,84,114,89,100,111,98,101,108,106,104,105,99,110,95,100,95,95,104,92,92,107,129,91,121,88,102,113,98,94,102,104,103,100,96,105,110,113,132,126,116,98,119,99,103,103,105,102,91,113,105,101,93,103,93,107,100,112,99,95,103,108,106,106,109,110,101, +533.37988,104,93,98,112,117,112,117,117,92,106,106,101,111,92,105,102,116,102,99,100,108,117,109,97,107,112,105,106,113,113,110,100,121,105,124,102,94,104,99,117,106,104,111,98,105,105,127,103,107,105,89,98,114,113,107,102,113,105,105,92,95,113,95,112,111,104,108,100,90,97,125,108,105,102,101,96,99,114,105,103,98,111,108,97,98,103,110,107,129,110,95,107,106,110,106,97,103,112,104,87,100,102,102,114,95,106,113,112,105,94,99,96,103,114,104,124,100,121,110,101,104,118,112,113,103,105,109,91,112,118,118,116,90,108,104,106,102,105,105,111,104,109,99,104,104,96,102,108,105,105,98,117,114,100,78,106,106,107,101,102,104,104,99,115,99,108,100,107,98,109,103,107,97,100,108,101,114,106,107,105,99,101,93,99,112,103,101,95,103,106,110,92,99,110,102,125,114,119,118,100,105,103,79,112,99,118,95,110,102,103,87,90,92,106,110,99,94,104,100,110,94,89,90,106,94,118,106,121,109,109,104,100,108,106,101,111,100,103,120,88,109,105,82,113,112,117,99,107,109,106,111,116,96,108,105,108,102,107,93,104,98,105,116,97,121,105,101,107,106,98,108,111,122,102,111,107,107,108,99,107,120,112,104,107,101,103,109,105,106,106,103,110,101,113,117,114,90,101,101,103,113,97,105,103,106,107,110,119,106,112,88,117,102,110,107,103,95,97,103,106,118,95,114,105,107,102,100,100,124,126,112,96,102,111,99,106,96,103,105,134,107,89,115,113,97,110,108,100,118,109,82,100,106,105,106,105,106,92,110,109,90,100,104,110,105,107,103,116,102,107,108,110,102,119,103,107,109,109,108,120,110,117,88,96,97,104,102,104,113,114,111,105,117,101,92,83,107,109,105,117,110,95,101,105,111,96,100,109,99,86,105,104,119,105,109,95,102,96,118,106,110,107,102,104,106,70,114,101,95,105,129,99,88,88,109,96,104,111,107,103,103,107,107,104,98,114,94,106,113,99,106,99,112,99,103,100,99,112,101,114,99,113,113,110,102,112,102,114,100,106,104,121,101,108,106,105,110,99,104,113,113,107,97,112,86,101,105,94,107,100,120,113,105,98,97,103,101,112,91,102,104,101,102,101,109,112,94,102,127,107,116,108,103,112,111,95,97,106,109,100,106,101,102,101,116,98,111,98,102,92,116,97,105,105,104,108,106,96,114,121,108,126,100,109,112,99,108,109,119,111,85,109,113,113,106,98,104,109,109,100,113,129,105,104,108,105,114,110,106,98,101,94,109,90,102,112,107,98,100,115,109,111,110,103,106,100,104,118,108,95,113,105,107,99,112,108,108,102,108,103,103,106,101,111,109,115,91,100,86,107,112,103,99,109,101,103,109,105,111,110,113,111,109,115,103,108,117,112,102,117,106,102,91,107,113,103,106,121,99,106,119,105,107,106,101,91,100,100,112,107,98,122,102,110,111,111,95,110,91,99,103,109,88,102,98,115,109,105,102,105,110,113,114,113,104,110,103,102,110,91,112,130,115,88,100,100,87,99,95,104,113,104,100,109,103,112,107,101,113,99,106,105,99,100,97,99,105,109,87,109,103,109,104,114,103,98,104,113,106,101,100,104,92,110,106,107,105,114,110,111,111,109,112,102,93,103,108,119,114,123,113,101,107,98,115,95,89,105,104,112,98,112,102,98,104,107,115,104,109,104,105,102,98,114,101,92,96,105,113,109,112,98,114,108,94,102,112,102,96,107,98,100,102,99,101,115,100,104,95,100,107,105,111,121,115,99,104,90,109,103,112,102,108,107,102,100,120,122,109,76,114,113,101,96,95,104,106,107,112,97,102,98,102,101,103,105,106,90,108,121,106,106,105,98,97,103,100,115,100,108,106,116,126,94,107,106,100,116,98,109,100,113,97,120,114,115,92,102,98,99,107,110,106,105,112,98,90,110,108,125,100,108,99,99,100,92,114,109,101,100,82,108,101,103,107,113,102,102,116,99,104,118,106,109,101,103,105,110,84,106,101,100,124,98,100,108,100,111,90,104,113,106,99,108,93,84,110,93,110,92,93,112,115,104,93,102,117,101,108,113,94,124,103,97,91,103,106,96,96,113,102,103,118,107,118,88,112,101,108,108,107,104,104,111,104,102,114,97,72,110,106,112,99,104,101,110,107,96,100,103,101,107,107,121,107,111,115,106,95,102,117,114,96,100,122,101,103,102,111,110,112,103,90,105,100,96,95,127,95,118,112,106,110,105,120,118,84,108,93,102,120,108,102,120,98,109,113,109,95,101,109,101,103,100,104,95,100,102,112,102,95,106,103,108,108,84,113,104,95,109,100,119,98,108,101,105,103,94,101,109,105,120,115,97,107,102,107,108,109,101,90,112,101,108,129,96,130,102,111,103,112,99,107,106,98,105,99,95,102,98,99,111,87,102,96,99,103,120,114,113,106,107,95,98,99,110,99,100,105,110,99,107,103,102,103,121,102,108,112,107,102,99,94,98,105,117,102,109,82,103,108,99,121,101,114,86,94,83,110,105,99,107,115,102,115,103,116,112,107,112,95,92,96,110,107,99,109,103,99,98,94,102,118,83,107,86,108,105,87,101,113,104,105,105,99,108,93,96,106,97,110,99,100,105,99,84,104,105,104,105,107,101,110,116,112,109,115,105,93,109,100,107,107,105,104,110,100,109,113,102,103,108,105,101,103,111,101,102,108,107,109,105,93,107,109,74,104,100,119,96,109,105,98,106,112,109,110,108,113,104,101,112,112,106,90,97,107,91,89,118,108,108,108,105,106,115,106,109,108,108,108,106,99,104,95,109,105,107,109,116,106,95,111,105,108,101,106,88,100,116,101,98,105,109,111,108,111,99,99,115,98,103,107,113,104,106,99,102,118,103,108,108,113,102,95,114,113,106,108,113,103,103,106,113,89,106,101,111,95,98,101,103,98,113,101,117,113,99,94,102,106,81,87,96,110,105,106,113,117,103,106,97,104,106,108,98,120,101,112,115,98,110,99,113,109,104,98,110,109,100,110,101,104,107,96,98,99,103,101,103,99,110,104,104,107,100,106,117,107,103,99,99,85,95,114,114,114,109,106,117,109,103,102,107,103,109,99,103,99,101,109,101,105,109,110,107,108,92,102,110,102,114,105,110,107,100,104,83,106,91,90,107,101,123,117,90,102,101,98,107,94,101,108,97,99,92,101,100,106,112,98,104,107,115,121,99,105,100,71,100,81,102,101,98,98,112,96,112,101,97,107,106,101,101,101,111,106,113,96,97,101,105,107,109,115,71,106,91,108,109,101,130,98,102,104,96,109,95,109,105,97,102,108,102,102,94,106,94,102,100,102,92,98,109,119,97,103,99,94,95,98,106,100,108,96,103,98,97,103,100,94,95,107,104,97,107,123,104,95,102,94,108,103,107,79,91,115,103,108,101,113,96,101,91,107,103,106,119,109,97,112,112,99,104,110,99,113,108,99,99,110,100,99,117,149,116,104,103,107,104,104,87,105,107,106,106,94,102,109,107,97,102,93,101,102,114,105,99,99,101,100,104,101,108,104,96,97,109,100,104,91,104,102,101,109,98,108,101,114,104,102,117,105,98,105,99,101,103,102,106,101,102,106,105,72,104,96,108,108,102,99,107,96,92,105,105,102,105,101,103,109,100,92,108,112,88,114,101,104,108,103,117,97,88,110,100,110,113,105,83,100,103,92,97,109,104,97,107,115,94,113,110,95,104,94,103,103,91,104,89,102,109,96,99,114,105,106,130,102,104,96,103,107,109,107,100,106,108,105,92,102,106,104,112,99,103,95,94,108,100,104,109,107,106,120,117,102,85,95,99,116,105,101,105,115,104,105,117,99,109,111,90,117,110,99,116,100,92,99,108,106,100,107,96,106,137,92,124,105,105,100,106,100,105,112,100,106,117,102,89,95,110,102,94,105,89,105,100,107,105,117,102,100,97,104,104,96,107,107,109,102,88,98,98,87,104,103,100,112,103,109,88,112,106,104,113,99,111,107,105,96,110,97,105,106,94,108,110,97,107,110,102,110,106,102,110,104,103,97,112,106,89,103,110,112,104,81,102,104,105,106,91,99,97,104,109,103,102,103,105,107,91,100,96,105,109,111,105,94,95,99,128,100,110,100,107,113,102,101,96,104,117,96,118,85,95,100,106,94,103,98,102,93,110,105,95,109,109,98,106,87,103,101,114,100,108,96,99,105,108,110,96,113,113,107,99,98,104,99,101,97,120,93,107,108,97,110,107,86,101,104,109,103,100,113,105,100,115,103,106,113,94,115,106,107,111,104,103,118,111,95,110,102,106,103,104,113,106,103,114,103,121,108,93,97,102,107,119,110,108,102,109,99,104,100,71,99,102,102,104,109,106,95,97,105,104,106,114,108,103,103,89,94,101,98,101,107,96,110,101,100,107,101,91,97,101,106,93,103,99,95,95,86,109,111,98,113,114,96,104,90,91,105,104,110,99,105,103,95,104,94,120,106,91,98,98,105,101,105,112,100,124,104,102,98,103,97,109,95,100,105,98,106,103,115,108,102,104,98,101,88,101,107,90,113,108,88,105,104,95,103,109,107,95,104,106,99,101,105,132,107,89,95,105,109,116,106,79,99,90,91,109,99,102,102,99,107,89,104,109,106,107,106,101,121,114,98,105,101,101,87,107,91,91,103,103,106,116,105,114,101,98,94,103,102,90,108,110,102,108,108,104,113,106,111,113,104,105,105,105,104,97,106,101,96,105,116,102,80,98,100,102,105,98,108,110,103,93,93,99,89,108,109,110,105,118,85,97,113,89,103,96,94,94,100,114,101,93,104,90,113,99,105,92,102,99,100,116,100,101, +533.52069,117,109,80,98,89,112,85,105,111,104,86,99,96,103,107,104,108,111,113,107,107,97,113,108,106,111,114,92,101,107,89,83,94,83,116,100,117,98,99,109,105,97,72,122,98,115,109,101,90,105,91,109,107,99,102,96,102,100,103,89,104,67,98,100,98,103,102,105,109,104,105,108,94,115,108,112,114,107,134,103,105,111,106,104,112,114,99,104,108,104,94,105,103,100,100,111,99,102,98,101,95,100,114,106,118,103,109,112,94,107,100,114,106,117,110,95,110,103,109,98,106,116,100,111,107,89,91,98,111,115,100,100,74,103,107,101,104,105,94,103,115,109,108,103,95,100,108,97,88,112,114,122,117,98,114,104,115,94,101,101,107,102,104,106,106,110,105,111,109,106,112,102,99,103,100,102,114,103,94,101,110,99,101,101,106,108,83,95,107,105,95,112,112,105,113,87,97,99,99,104,109,109,104,106,97,112,101,112,98,108,88,90,105,98,105,111,101,104,108,90,105,101,98,98,108,116,103,111,114,111,96,108,117,109,99,110,108,106,106,100,100,106,109,103,97,109,96,105,101,92,99,95,89,108,101,114,95,91,97,101,94,107,97,95,97,98,95,101,112,109,95,106,99,119,117,112,102,100,83,100,97,105,99,104,114,105,109,105,111,105,95,106,103,99,106,115,116,100,110,100,105,104,102,112,99,112,107,99,114,112,100,113,104,95,101,97,107,104,105,112,105,98,107,105,94,105,106,102,111,102,98,102,121,111,95,103,98,100,109,106,100,97,102,93,110,105,102,100,103,104,86,107,111,97,96,94,113,107,103,108,110,102,101,109,98,112,110,107,94,101,121,107,103,111,101,112,99,94,102,104,103,96,103,108,107,102,104,94,108,90,121,102,98,109,96,102,109,113,118,105,105,105,104,105,104,102,91,101,96,105,95,103,112,106,107,95,107,95,106,110,90,113,116,106,96,113,101,110,104,107,101,87,111,112,115,107,103,110,92,110,94,106,105,110,93,99,105,111,109,109,98,95,99,102,104,95,104,109,115,107,102,101,120,117,99,101,105,94,104,108,100,111,107,108,99,97,99,110,104,103,112,110,112,111,101,101,100,109,105,103,111,124,116,104,110,93,103,100,110,98,106,96,111,101,109,102,96,102,100,120,103,104,102,102,79,101,101,95,102,103,103,95,108,108,92,98,113,102,109,113,99,123,106,120,110,91,106,105,106,113,99,98,87,98,113,107,103,111,109,117,108,117,110,105,105,101,115,107,106,101,109,106,100,110,93,99,106,107,93,104,99,94,102,97,108,102,106,109,116,100,108,93,108,93,104,109,115,104,83,97,91,106,99,103,108,103,99,108,112,115,105,100,107,96,104,104,114,114,95,107,107,112,108,100,111,105,110,115,102,109,96,100,102,100,117,115,95,111,88,102,111,106,101,99,100,101,115,105,111,109,99,106,106,110,109,100,94,93,108,110,101,111,113,94,108,104,106,106,99,104,126,113,103,106,96,109,103,101,104,109,114,107,116,100,100,101,98,106,110,113,113,109,108,82,99,99,91,91,99,96,113,112,94,105,102,96,103,113,112,106,106,107,108,108,107,101,112,103,101,114,93,109,99,107,109,102,110,92,87,122,100,103,106,112,95,104,116,110,106,114,99,101,89,110,101,97,105,106,99,102,110,94,114,101,109,95,114,110,90,99,106,95,117,108,110,77,108,101,82,99,101,110,97,110,104,98,107,105,116,109,110,105,98,91,104,107,108,107,112,96,91,103,106,107,96,107,109,108,105,112,90,100,113,118,102,111,91,108,114,108,115,95,98,106,105,106,110,112,107,106,115,105,94,100,99,110,108,100,113,117,109,105,123,110,103,97,113,105,103,101,102,109,107,107,105,101,100,106,106,102,106,109,107,117,99,98,99,100,98,101,94,113,104,102,99,111,87,100,112,108,106,103,104,114,97,101,111,100,123,111,108,103,107,106,103,113,114,97,107,96,103,101,99,109,104,118,98,114,103,112,118,110,107,116,109,91,103,111,104,106,108,111,103,100,109,102,100,87,106,102,120,125,98,106,114,101,100,109,103,99,96,102,113,106,106,89,102,99,95,109,110,112,117,109,111,106,108,106,110,94,103,107,111,104,108,99,105,97,104,100,106,107,124,104,107,106,114,102,104,109,117,111,117,115,88,115,99,110,96,114,115,110,99,98,101,96,88,103,90,108,122,99,110,94,115,106,108,94,107,83,106,95,111,96,83,104,106,107,96,105,114,99,110,98,102,109,107,101,101,105,97,110,93,96,113,102,106,97,124,110,106,107,107,106,108,104,110,97,108,91,102,107,98,103,100,96,106,100,97,107,99,118,107,109,99,105,107,117,102,108,108,102,109,103,104,108,117,103,107,115,111,103,100,102,107,103,95,105,112,95,104,109,107,99,100,111,101,115,99,99,98,103,98,119,106,107,102,118,102,89,110,106,107,98,91,95,104,105,103,99,102,120,107,101,94,106,99,98,107,109,92,111,113,110,96,103,107,100,108,114,118,108,109,103,115,105,100,104,106,104,94,120,114,100,103,105,98,102,108,115,104,103,96,112,102,96,104,98,107,98,109,110,104,109,108,119,94,98,110,100,108,105,108,101,107,110,94,105,109,95,106,108,111,105,106,105,107,98,111,99,108,115,110,106,112,83,106,113,103,91,111,106,106,94,94,97,95,105,105,89,95,113,113,98,113,104,103,106,102,100,85,96,112,105,103,100,110,120,103,93,106,115,98,106,112,109,95,116,103,109,100,104,102,116,105,125,108,99,104,103,108,117,105,92,107,99,112,108,105,87,116,113,109,105,118,104,103,106,106,99,108,108,98,106,117,103,98,109,94,100,114,109,102,119,99,98,106,108,110,117,109,109,111,109,107,99,100,76,112,107,108,99,105,105,103,108,99,95,109,114,108,111,104,91,105,103,108,105,103,102,103,109,110,98,107,107,105,134,111,100,108,106,100,101,98,107,107,99,108,99,107,108,108,109,114,105,114,105,105,107,105,110,102,108,88,106,113,98,110,117,114,107,108,107,99,113,106,104,98,104,116,94,105,108,103,109,119,87,106,98,90,102,102,113,101,110,105,108,96,114,105,109,108,109,105,102,100,116,100,114,100,102,106,112,113,104,111,106,100,97,106,102,107,111,89,113,107,91,109,104,105,106,98,102,99,105,77,113,98,95,91,111,99,97,96,100,116,99,106,106,100,112,95,110,111,99,109,117,105,108,101,103,108,108,105,99,125,103,106,97,107,99,84,94,97,115,113,104,105,95,113,103,96,102,105,104,105,88,104,94,97,114,106,106,99,102,109,102,96,104,100,104,109,101,99,110,97,86,99,112,98,98,98,108,112,104,101,106,132,102,94,102,104,115,98,103,120,99,108,106,88,103,108,99,96,84,94,100,92,104,110,112,106,101,102,99,107,109,109,104,99,97,117,101,114,107,95,104,115,99,102,104,106,107,109,111,110,92,101,96,103,108,116,109,105,114,103,106,89,106,89,95,102,93,107,114,101,104,101,121,114,96,105,113,117,104,109,105,108,101,100,106,99,105,101,111,88,105,104,88,99,113,107,103,98,103,107,109,133,107,92,102,112,117,96,98,115,108,108,106,115,106,111,107,92,103,97,111,105,100,109,110,104,107,96,105,106,102,103,99,108,107,102,109,106,125,112,104,107,103,90,93,102,113,105,104,110,111,111,107,96,106,89,108,110,107,99,115,104,106,101,113,99,109,101,108,109,65,89,103,99,108,108,105,108,117,106,104,95,109,107,102,107,106,85,95,98,107,99,117,102,106,98,98,111,104,100,117,126,106,87,99,89,106,113,96,108,106,112,114,102,112,101,97,107,107,117,111,112,105,96,106,102,110,96,104,106,97,106,104,104,100,110,99,112,97,128,110,118,112,100,94,108,119,99,113,101,106,113,94,100,109,106,119,99,87,120,103,104,113,99,100,107,108,99,101,100,114,107,107,115,113,107,101,105,109,104,104,106,105,102,96,97,114,115,110,104,109,110,97,101,108,118,94,100,106,102,99,98,92,100,105,95,94,112,116,102,103,114,106,103,111,106,102,111,114,104,109,105,103,119,106,98,109,108,113,103,100,104,107,96,91,112,100,103,102,114,97,104,91,103,112,114,95,109,104,113,102,98,101,119,103,104,108,115,107,100,104,101,110,115,103,105,113,115,96,103,110,101,106,95,107,111,112,94,106,88,98,96,93,104,110,119,106,108,103,113,90,83,99,106,99,99,106,109,102,106,102,113,110,109,104,105,113,111,105,107,104,114,107,106,112,106,98,108,111,113,126,104,100,104,107,107,101,89,100,108,122,99,96,100,117,99,108,107,99,114,102,96,92,88,86,102,109,100,113,98,94,110,103,111,109,90,102,95,105,94,113,103,109,99,104,109,96,110,104,97,105,99,117,101,102,99,117,114,83,105,103,104,115,90,103,119,110,110,104,121,108,94,110,109,101,101,107,100,104,114,102,90,103,100,105,99,99,114,103,104,95,104,104,103,105,123,96,108,101,110,100,92,110,110,95,108,107,106,112,109,106,112,91,104,116,104,98,102,110,84,104,102,108,104,104,104,103,108,91,115,124,99,98,96,100,96,106,104,123,119,105,104,93,99,103,106,93,109,104,106,100,99,109,113,99,111,99,103,110,105,106,106,101,90,107,107,91,92,99,107,105,113,107,110,97,105,105,112,108,99,117,101,98,89,111,111,103,105,105,99,127,117,106,107,102,117,87,101,92,104,109,109,98,106,103,104,88,114,112,106,106,101,114,108,107,100,127,102,109,104,93,104,108,101,93,98,107,93,95,104,112,108,103,114,104,100,97,106,95,83,101,90,100, +533.66144,103,108,96,110,97,108,99,97,109,108,102,112,120,108,107,101,100,101,103,104,110,104,109,109,88,108,104,107,102,84,106,100,99,109,115,97,107,101,115,102,80,109,108,105,100,108,103,112,114,96,114,88,108,100,109,105,108,93,102,100,102,103,105,105,114,114,90,71,96,109,109,103,103,85,102,124,99,113,108,112,106,108,97,100,108,100,108,111,96,105,111,113,90,90,99,86,108,104,111,97,108,106,108,103,103,112,99,100,95,99,95,115,106,95,104,121,108,100,112,103,111,113,101,89,80,114,118,109,113,95,95,101,112,98,113,100,98,110,120,105,101,115,101,112,114,104,115,103,98,104,105,109,116,105,111,104,105,101,114,102,126,98,104,108,107,86,88,104,105,94,111,102,101,97,103,103,112,114,104,100,105,117,109,109,105,96,99,84,113,96,107,99,100,109,105,112,114,103,108,113,100,107,99,111,109,107,103,117,115,114,112,103,100,97,105,117,103,102,106,115,105,102,107,114,104,109,109,112,117,113,102,105,116,100,107,106,104,126,114,93,116,99,108,107,102,105,95,110,106,101,109,110,95,120,102,113,111,101,106,106,99,123,104,112,105,120,101,107,106,111,98,104,114,111,117,113,101,121,101,105,113,106,101,103,108,107,98,101,115,104,109,94,101,114,118,107,116,98,108,109,106,99,132,102,98,111,104,116,113,117,106,114,101,107,100,96,105,86,109,91,98,104,100,112,109,103,92,80,103,133,98,103,105,105,117,105,117,91,118,99,116,108,105,110,108,106,107,107,104,100,104,99,108,105,97,107,112,112,94,109,107,104,97,106,99,109,114,108,78,102,107,103,111,112,116,100,113,106,99,110,120,101,103,111,96,96,98,98,103,101,120,121,101,103,105,89,102,102,91,114,104,107,120,108,103,119,104,110,106,111,94,95,110,119,110,106,92,123,104,113,110,108,111,95,113,108,114,99,97,103,113,110,114,105,105,103,96,104,108,106,103,115,110,113,105,106,104,104,115,113,112,95,113,117,103,96,102,95,104,110,109,106,99,106,110,108,98,112,111,106,101,99,110,105,105,113,111,110,105,113,99,112,114,107,104,106,107,98,114,96,120,113,95,105,107,107,109,117,105,104,106,103,103,99,111,102,105,102,110,105,104,112,102,112,102,114,118,111,111,97,114,106,114,105,130,108,98,108,103,112,102,100,122,102,98,114,112,112,108,107,105,102,102,107,104,90,120,99,113,96,107,101,104,115,100,101,126,91,76,126,79,103,101,107,99,112,105,114,110,111,112,108,104,118,110,111,102,107,93,119,106,95,107,115,114,99,99,104,100,104,110,111,110,117,98,107,105,106,104,105,102,114,91,96,117,116,93,112,109,101,108,122,114,111,112,103,114,102,113,99,108,103,105,102,116,98,111,103,112,115,101,121,112,115,97,101,96,107,100,109,113,105,106,115,109,106,103,105,92,106,103,126,108,108,106,111,108,109,100,109,112,110,95,106,120,96,95,104,95,108,119,104,86,122,110,103,105,104,112,98,115,104,119,105,100,93,104,109,101,111,106,108,92,117,108,94,100,102,109,107,117,112,100,111,113,101,107,110,105,107,103,106,113,112,117,101,111,103,111,98,107,116,110,113,103,100,102,101,107,118,99,114,110,95,105,109,103,92,117,101,103,106,98,101,98,103,104,100,103,107,114,114,104,94,105,112,92,101,99,101,100,106,106,116,111,113,103,118,102,101,89,82,112,108,104,101,108,97,91,112,104,117,104,110,106,112,105,100,108,113,103,94,121,114,109,109,126,106,109,113,104,108,109,99,99,108,99,111,98,110,112,105,116,107,104,108,100,117,105,109,106,111,114,98,100,104,108,89,104,98,111,109,86,119,95,99,106,93,108,105,104,106,109,112,105,102,118,102,98,101,109,103,105,109,107,106,100,104,100,102,126,102,98,113,118,116,98,117,93,133,105,125,107,104,102,111,111,105,108,110,114,108,98,99,99,104,103,111,110,102,108,120,110,104,109,105,113,111,97,99,117,119,106,113,102,83,109,109,90,102,115,106,107,102,103,106,106,109,111,111,117,113,101,116,103,100,105,113,111,104,97,103,114,118,101,108,97,99,104,106,121,100,117,103,108,108,105,107,108,109,103,112,115,112,113,110,115,104,99,118,113,106,90,102,109,99,105,109,114,109,101,111,105,107,101,113,118,118,90,112,93,101,100,108,99,112,107,96,119,106,107,114,106,101,99,108,117,109,106,117,111,126,108,112,91,108,108,107,105,108,97,113,98,106,117,114,108,103,110,112,109,112,98,95,111,103,103,101,110,97,105,104,102,106,110,101,113,116,120,109,105,100,104,97,100,101,105,111,98,101,95,115,95,113,103,107,111,102,101,104,107,109,103,122,114,115,109,105,96,103,88,99,97,106,99,103,105,107,106,97,102,107,109,107,112,106,115,105,99,107,105,110,103,110,118,89,97,118,109,107,95,118,99,93,107,105,109,109,101,104,94,108,99,108,109,86,101,105,101,114,107,111,111,110,108,112,85,101,108,106,108,108,113,98,100,105,106,109,104,102,109,94,91,103,83,97,101,110,114,105,104,106,86,112,108,99,101,100,101,103,112,102,107,103,106,109,103,106,112,98,108,103,98,110,100,105,105,105,110,101,105,93,101,103,102,115,89,104,110,96,99,111,108,112,88,109,104,105,115,95,92,100,113,107,100,110,101,112,113,93,109,94,99,109,102,102,113,102,115,96,120,110,109,108,101,85,100,101,106,108,116,108,98,116,108,90,118,109,113,102,116,104,110,102,91,107,98,106,106,107,121,108,109,106,96,102,83,125,104,115,116,95,117,109,97,107,107,94,101,99,104,104,110,106,101,102,102,117,109,116,82,98,97,107,99,103,106,106,113,88,99,111,104,95,105,106,113,107,110,120,99,103,103,108,86,96,100,102,111,109,104,99,98,94,113,114,113,106,104,100,107,107,115,101,113,139,101,114,103,96,98,97,100,114,102,112,110,101,104,110,110,121,107,100,113,100,109,98,107,126,108,114,102,111,104,103,100,112,105,104,113,109,95,108,114,99,125,98,106,116,112,103,104,120,95,106,98,90,115,105,99,105,105,106,104,102,108,96,96,107,89,103,108,123,114,93,97,104,107,120,96,109,99,105,106,109,114,107,118,103,97,125,105,109,104,95,108,120,97,122,102,90,111,96,102,109,117,114,106,104,84,106,101,120,129,102,101,108,104,99,103,97,107,100,103,106,108,103,105,116,110,100,108,98,103,101,103,108,108,116,99,100,96,99,105,117,102,105,108,112,97,100,109,102,100,112,129,104,122,111,114,121,110,102,99,101,109,97,105,97,94,112,102,98,118,110,105,95,105,107,101,103,102,110,105,104,103,114,101,107,111,120,101,103,103,96,102,113,100,98,108,108,107,105,110,109,96,108,102,102,99,102,97,108,106,100,106,106,106,100,114,110,108,113,96,120,103,107,107,120,107,109,96,113,107,113,96,104,106,115,103,109,110,105,94,111,96,113,107,110,113,109,93,108,79,92,99,101,88,111,111,108,95,135,121,111,108,101,104,124,100,111,107,108,75,105,114,95,105,98,113,94,107,110,102,102,107,111,91,101,101,96,99,111,104,97,109,103,105,96,105,106,100,109,101,95,118,104,102,94,111,109,98,107,115,119,96,104,95,98,92,105,111,112,105,97,112,104,144,100,116,112,105,91,96,99,106,92,106,107,108,101,104,105,103,107,102,105,107,110,105,101,100,109,104,111,104,91,105,97,109,99,107,100,92,111,106,100,106,104,103,109,121,104,107,102,97,110,106,120,102,106,105,108,112,103,104,104,87,97,103,104,96,101,113,102,99,94,107,110,117,114,99,98,102,108,108,101,111,107,100,96,102,96,99,85,112,96,104,105,85,112,89,102,102,107,102,99,96,104,96,104,97,109,100,102,109,112,98,102,90,98,106,111,104,108,101,98,105,110,99,109,102,99,108,103,123,113,87,97,117,94,105,101,107,112,100,106,102,92,104,108,96,114,103,106,136,110,102,94,115,106,105,117,101,104,108,117,99,108,110,100,97,103,129,103,109,100,110,109,103,88,98,115,107,102,97,102,108,103,108,95,99,101,103,113,108,100,100,90,108,114,105,83,108,99,98,97,120,105,104,107,109,100,109,88,108,96,113,112,100,101,107,106,106,111,118,109,92,108,86,99,99,99,108,97,102,102,99,122,110,93,110,98,90,104,113,107,92,102,102,108,100,105,99,104,103,108,92,112,108,106,106,111,97,109,103,113,97,101,114,99,96,102,97,97,109,110,106,102,109,101,112,96,96,101,101,97,97,89,106,120,105,93,103,105,103,98,113,106,109,106,112,103,92,101,96,98,104,100,117,103,99,107,105,121,98,91,106,107,100,110,106,101,99,91,103,101,98,73,98,117,94,101,111,110,111,97,102,95,104,105,122,111,101,101,102,108,100,97,98,109,106,112,109,108,103,98,98,102,104,113,101,95,102,109,101,104,103,101,91,110,95,102,94,103,113,100,109,109,105,106,113,112,105,93,105,114,107,120,100,83,109,109,108,108,91,105,92,119,114,98,109,103,105,97,109,102,94,105,97,108,99,104,108,101,106,95,107,120,99,102,102,102,99,107,97,106,83,92,103,100,101,105,101,93,105,116,102,105,91,106,112,102,101,111,102,100,103,113,116,98,112,112,105,96,94,112,102,112,111,106,113,89,120,115,104,86,105,92,102,104,102,107,112,105,94,108,117,77,113,97,94,111,103,112,105,103,107,94,98,105,112,91,80,113,97,100,99,101,97,87,101,105,118,106,87,101,104,119,97,104,94,109,100,106,98,102,102,122, +533.80225,107,108,103,99,90,68,105,101,93,104,120,113,91,114,111,105,107,114,104,110,109,97,100,114,101,109,92,95,102,110,109,104,97,82,110,102,99,107,110,114,116,105,100,106,104,105,107,105,88,111,98,94,99,101,116,95,97,105,107,94,113,99,100,95,97,107,107,105,110,102,107,95,96,96,102,109,104,106,107,95,106,108,113,98,101,109,113,102,105,114,90,85,114,103,104,110,110,99,99,94,118,95,97,101,91,95,112,113,104,105,102,99,98,112,105,106,108,103,113,99,113,113,100,93,100,106,110,96,104,112,101,108,101,105,106,102,101,114,105,90,98,107,110,108,89,108,114,99,90,131,104,117,105,91,103,106,97,101,111,99,99,107,102,115,107,108,101,107,110,109,106,105,108,111,114,104,102,107,103,111,102,128,98,112,98,118,105,97,107,106,105,105,115,99,97,101,102,101,101,115,108,137,96,107,90,115,101,106,120,108,97,103,111,102,106,104,107,112,109,118,114,96,99,102,94,108,101,114,104,112,92,98,114,95,113,110,104,91,120,109,107,90,103,93,110,109,99,98,103,111,99,100,112,100,100,115,104,111,101,112,99,108,110,107,98,109,102,124,113,99,123,111,110,107,107,107,112,97,113,105,107,99,108,105,107,102,108,120,114,108,100,73,119,117,102,105,115,95,93,105,106,111,97,102,90,102,92,104,108,103,91,108,107,116,103,116,104,95,113,99,101,88,109,119,98,106,107,96,112,105,102,95,112,108,95,111,111,113,106,95,100,110,102,100,94,105,108,111,130,96,103,98,98,107,103,106,101,99,101,109,101,106,117,88,99,91,90,121,103,101,113,97,107,109,106,114,115,104,101,108,106,101,109,110,101,103,100,99,101,106,117,107,101,114,107,108,116,99,115,114,108,110,101,109,115,96,107,117,105,96,104,99,107,105,113,109,109,95,94,103,106,98,95,112,101,102,91,103,93,105,102,100,94,97,109,100,106,107,108,109,107,97,118,106,104,111,104,103,104,108,96,104,103,103,105,110,100,105,120,109,97,109,105,92,103,96,111,106,113,105,108,104,98,105,103,87,106,104,105,73,105,109,102,101,107,102,115,106,91,111,117,112,110,90,94,116,97,101,108,102,106,105,97,112,101,108,105,111,104,114,102,103,103,102,107,102,96,98,106,112,105,113,109,114,111,97,113,113,81,95,104,112,107,98,101,95,114,104,102,104,101,107,109,101,101,99,108,91,118,111,112,107,112,100,103,105,99,99,91,103,118,111,99,109,112,87,109,109,121,92,105,104,108,109,112,112,106,120,111,104,104,93,111,93,97,95,121,112,120,100,119,121,99,99,111,97,106,119,109,101,117,105,118,103,104,103,108,102,117,110,102,108,100,104,114,103,106,107,108,110,121,119,106,106,128,102,88,108,104,114,98,108,129,114,97,103,87,99,112,115,112,101,101,105,108,112,102,104,101,121,106,112,108,106,113,108,115,99,99,108,83,111,106,112,102,106,101,118,112,102,122,105,103,113,107,105,106,122,110,105,105,106,116,102,99,90,93,103,95,109,112,106,109,102,96,110,108,109,106,112,91,99,98,122,93,106,108,106,94,96,104,109,104,102,99,102,106,105,99,103,109,115,96,105,108,119,103,101,110,121,92,81,105,111,116,108,93,114,98,117,101,100,89,102,102,102,124,102,105,104,115,105,98,118,108,75,109,113,112,104,96,98,103,91,99,110,104,93,109,107,95,101,105,109,103,111,107,99,109,103,126,108,111,111,87,108,106,116,104,110,100,98,109,109,103,100,104,106,102,97,116,97,100,113,110,107,99,115,106,103,121,107,105,105,100,111,124,110,121,109,107,118,112,103,117,110,103,113,112,105,116,102,112,108,104,113,112,112,102,105,104,110,108,105,100,99,89,98,105,120,111,105,111,102,112,106,113,107,107,107,109,103,119,106,83,103,104,108,117,106,101,111,103,108,99,106,103,100,110,120,118,104,107,111,108,107,99,117,106,110,117,113,97,104,110,99,111,104,92,142,109,111,105,105,100,123,105,115,99,106,113,106,91,100,117,103,134,115,102,99,95,110,110,101,105,119,106,102,99,104,103,113,109,119,107,103,103,124,100,118,108,106,111,98,123,108,107,94,110,102,104,109,106,117,100,103,105,96,101,106,109,107,104,122,112,107,93,108,108,104,108,121,108,117,92,103,107,108,99,125,106,104,110,113,100,102,99,109,104,96,121,113,113,101,58,75,104,92,111,109,112,103,99,108,117,109,103,100,97,108,108,86,113,120,115,109,122,108,105,95,119,115,113,109,111,108,118,112,105,111,105,111,112,101,102,86,96,116,108,96,119,119,82,114,100,86,111,107,121,107,108,112,110,109,114,106,97,104,111,105,102,103,109,133,91,91,102,110,100,101,112,107,101,97,105,102,111,106,105,98,95,101,87,100,111,105,99,100,98,101,105,111,117,103,104,103,108,110,114,111,108,101,108,102,103,116,103,103,109,99,91,109,111,110,106,103,101,104,97,121,104,113,92,104,113,101,95,107,106,108,109,109,107,90,104,97,108,102,102,105,104,103,94,117,109,108,108,99,98,100,105,114,115,116,105,100,106,110,105,107,102,108,103,113,106,111,105,103,119,93,104,122,105,103,100,101,108,103,109,106,103,116,100,118,98,112,110,109,99,101,101,87,103,124,96,99,100,109,109,111,109,106,112,100,102,103,108,111,113,91,92,109,106,108,103,100,106,120,120,104,106,113,104,99,93,109,95,106,104,103,79,101,97,103,101,116,110,105,104,119,127,109,105,109,107,107,110,134,104,103,88,113,89,104,99,101,102,100,100,102,93,102,110,103,96,113,109,98,93,105,104,108,99,113,101,95,94,106,121,110,97,103,141,108,113,107,103,92,104,105,99,101,104,99,108,103,104,103,109,121,111,104,94,101,101,109,110,101,106,112,88,105,103,99,98,119,106,108,102,103,111,120,113,108,110,97,116,104,111,102,116,93,102,121,110,99,101,106,99,112,90,117,108,97,90,107,100,104,103,109,109,101,103,92,109,94,103,100,104,100,107,109,106,109,104,109,105,96,112,101,101,105,92,102,113,112,104,103,112,101,104,104,105,117,100,96,116,105,105,109,100,96,113,101,107,103,93,99,107,107,96,100,103,81,98,102,108,109,117,103,101,109,111,105,111,96,121,110,107,111,136,106,98,97,98,96,99,105,111,107,95,99,111,116,107,109,94,104,99,111,94,104,109,113,100,103,95,106,103,105,97,98,110,102,111,97,102,113,92,96,109,99,110,106,112,106,96,104,115,94,108,97,93,110,95,111,102,100,113,98,101,103,100,104,106,106,101,97,96,91,106,101,100,109,109,109,101,104,108,108,89,103,106,107,102,113,103,101,106,106,112,109,108,98,97,106,106,105,112,106,109,106,108,121,101,112,108,99,108,102,111,116,120,104,105,109,117,106,115,106,109,120,92,109,110,100,105,105,107,101,104,99,105,102,96,102,107,110,106,100,105,113,111,102,110,103,97,107,101,112,102,108,103,102,107,100,115,100,104,87,101,98,87,106,107,119,111,114,111,106,85,103,99,99,75,110,105,107,103,105,102,104,104,97,97,113,95,98,103,108,102,111,113,106,113,99,109,120,103,104,106,118,92,102,104,102,99,104,106,104,109,101,108,114,95,96,114,104,109,98,105,113,106,96,119,107,109,101,128,101,111,95,104,98,105,105,112,91,116,114,109,103,111,102,106,98,108,97,92,115,99,111,120,100,98,119,105,104,112,102,104,94,101,114,104,106,115,102,100,104,99,91,102,105,106,107,106,110,113,110,111,106,116,108,96,100,112,102,101,102,93,106,98,98,105,102,101,94,105,100,108,106,109,102,103,107,118,100,81,103,109,105,106,101,105,96,104,104,86,108,101,109,102,120,102,108,111,113,105,109,114,102,105,105,106,100,95,108,100,97,108,112,108,103,89,103,106,100,108,106,105,104,100,68,103,117,108,101,100,110,109,98,99,110,98,114,111,113,109,108,118,109,91,105,107,107,106,107,111,94,103,99,100,106,98,113,101,113,100,101,115,106,99,102,102,102,105,117,109,104,105,99,97,102,115,103,106,110,113,113,96,111,92,91,97,104,102,105,101,98,99,101,108,104,105,105,107,111,105,94,113,115,95,107,101,108,115,97,101,104,115,99,95,120,100,99,99,111,101,87,106,96,106,98,86,115,81,91,109,102,111,111,124,103,109,108,100,92,114,107,107,116,96,112,110,106,99,108,86,102,101,105,102,102,93,114,102,112,108,75,106,105,101,100,105,104,118,107,95,100,113,110,101,131,111,118,106,109,106,100,102,103,104,97,104,133,107,116,98,107,102,106,97,96,104,106,103,104,102,105,119,108,96,94,108,105,109,102,114,96,103,125,94,96,102,97,112,100,99,110,97,106,93,102,102,104,105,104,91,92,103,100,102,109,94,108,109,106,86,70,99,96,100,103,97,97,109,106,98,114,103,109,105,108,112,91,108,107,105,102,121,114,99,104,101,125,108,87,104,99,109,100,99,109,108,105,102,102,107,117,96,100,86,117,99,107,104,108,107,98,100,106,109,84,104,94,114,102,102,88,97,94,107,107,100,123,106,99,100,97,101,102,99,115,125,108,119,114,100,99,95,99,110,103,103,89,98,96,112,98,119,107,103,107,112,99,109,101,98,103,107,101,101,107,95,97,90,117,108,109,101,111,95,98,98,110,104,100,102,99,73,88,111,111,103,100,90,100,116,113,113,101,111,113,99,108,91,95,101,97,123,83,103,85,97,114,101,107,101,98,97,99,102,95,103,116,98,106,113,98,95,73,73,92,94,93,106,101,105,110, +533.94299,98,97,99,93,95,114,96,104,96,95,102,98,106,87,93,100,102,127,124,97,99,106,113,105,102,106,98,121,114,109,99,99,113,113,104,104,100,103,108,109,106,107,105,96,97,104,118,115,98,118,94,103,94,98,101,100,110,99,114,99,114,100,93,96,107,103,99,103,113,96,100,108,108,105,102,114,111,113,110,105,116,118,116,103,106,102,106,116,82,88,104,89,94,113,112,103,103,106,108,112,97,98,94,100,105,102,104,106,103,96,103,111,98,96,102,93,91,110,106,108,120,92,108,99,97,117,114,101,113,112,108,104,102,117,105,111,110,98,90,96,93,101,105,107,103,103,107,104,106,106,96,95,98,91,105,103,84,103,117,106,95,103,97,102,104,98,102,102,108,101,103,107,108,112,96,83,109,117,118,106,104,109,109,105,104,95,88,90,100,107,99,104,106,107,104,101,106,96,106,97,115,100,108,99,97,104,104,97,116,113,106,112,106,120,105,104,93,107,101,100,93,98,104,94,109,104,95,103,117,108,110,100,99,94,100,106,99,117,102,108,110,99,106,97,106,111,108,110,103,95,104,78,99,101,101,88,100,112,105,106,96,91,103,106,112,102,123,96,113,111,103,114,115,88,116,95,100,103,100,84,96,109,101,100,106,95,106,100,104,105,104,106,112,102,110,116,106,119,106,95,103,112,114,106,102,112,107,122,109,123,103,118,95,101,111,87,99,99,111,100,111,109,114,107,112,108,95,109,96,108,106,109,100,96,112,116,133,93,110,93,101,113,108,98,95,113,108,108,105,95,102,96,111,100,103,104,102,98,119,111,112,109,96,110,93,100,117,114,107,119,108,109,97,117,103,103,115,102,117,98,109,99,101,108,103,110,94,109,105,101,118,96,96,108,99,105,94,101,105,107,91,113,105,103,108,100,110,109,97,101,94,123,109,104,97,97,102,101,105,91,99,101,108,103,100,95,103,108,103,108,108,98,118,103,112,103,99,102,109,101,112,108,101,100,84,103,113,110,115,104,101,99,104,89,108,95,98,96,91,105,108,105,107,126,103,109,101,103,89,101,100,116,98,108,108,84,95,110,107,104,97,102,90,120,107,102,112,102,97,110,110,105,100,104,104,112,92,124,117,107,110,112,104,104,112,111,84,93,102,112,107,90,109,109,99,110,118,100,119,112,98,108,107,112,109,94,103,102,104,102,106,105,117,110,107,113,111,101,111,112,99,110,109,101,118,102,97,109,117,114,104,88,109,107,106,99,99,100,102,107,112,105,104,112,103,106,111,117,97,111,105,99,113,109,119,111,98,111,92,104,110,89,100,112,109,117,116,99,105,101,109,107,99,108,118,112,97,107,114,95,106,113,99,122,109,98,108,113,117,89,99,109,98,108,115,100,129,111,117,111,98,107,97,98,111,106,113,108,99,104,105,112,106,107,104,116,70,96,138,117,109,111,106,104,104,94,103,100,94,114,91,134,105,107,103,116,94,95,102,104,114,113,99,110,101,103,107,92,108,107,107,110,103,101,97,108,108,109,119,99,116,101,111,92,94,108,114,108,95,105,106,95,111,93,105,98,107,103,109,112,107,98,121,84,112,108,100,110,100,107,104,83,100,103,99,100,107,112,116,115,112,107,106,112,113,98,109,113,103,127,112,107,107,125,96,105,113,99,100,107,109,105,103,108,110,99,103,99,105,99,111,101,101,106,121,122,109,108,100,100,113,97,87,107,104,109,88,105,109,92,116,115,110,110,106,112,102,107,104,102,103,108,107,101,110,103,97,109,99,97,103,110,103,114,99,116,102,98,97,103,103,106,96,112,108,103,109,104,102,121,110,115,106,96,105,110,85,105,104,103,111,107,102,107,118,111,106,108,107,105,103,113,101,112,104,113,110,112,119,107,103,103,125,98,104,101,109,110,105,116,100,100,112,125,107,102,102,102,110,111,117,107,113,119,101,90,107,104,96,96,112,100,97,95,107,115,113,109,113,114,98,113,111,105,100,102,100,104,111,98,106,107,113,107,112,85,67,103,125,96,112,105,119,107,110,104,100,112,99,102,101,114,108,102,104,118,118,100,96,100,105,101,100,90,112,98,113,109,100,125,108,105,103,105,97,118,108,103,107,106,128,107,96,95,106,97,96,100,95,105,103,94,104,106,99,110,68,105,112,114,99,99,102,98,101,105,97,105,98,105,101,104,104,111,108,111,101,98,103,111,112,109,97,101,108,113,100,102,107,98,117,111,117,91,101,98,105,92,94,120,88,105,106,101,112,114,106,104,104,91,100,105,95,106,95,105,111,112,97,98,119,106,105,96,112,92,107,100,103,99,112,94,110,107,106,100,89,105,107,103,104,98,91,111,95,101,101,101,113,96,103,96,107,116,113,96,101,126,107,106,91,119,97,109,109,101,96,105,97,89,106,97,108,101,100,111,112,99,113,105,99,111,100,128,114,115,98,100,100,116,112,113,108,103,103,103,108,111,124,112,103,95,104,96,111,112,105,105,108,98,113,76,81,98,108,105,104,103,100,110,105,100,104,94,110,107,111,114,99,106,102,106,112,106,107,105,75,102,109,109,104,106,104,115,104,100,112,106,100,100,75,102,110,108,106,103,111,102,108,116,115,87,96,92,79,117,105,103,96,97,87,111,110,104,105,105,115,105,115,104,109,99,101,100,105,113,111,98,111,102,92,90,117,114,97,112,106,90,105,100,108,102,102,105,101,100,104,95,113,103,101,95,112,120,95,90,101,106,112,98,112,114,102,110,99,107,102,111,110,110,95,106,102,100,103,106,103,116,110,109,103,106,100,98,111,104,98,107,109,104,98,111,105,99,105,99,106,117,99,102,108,110,93,113,114,96,108,98,99,108,95,109,115,110,103,102,90,102,113,107,111,105,118,97,112,111,106,102,110,112,116,112,105,108,115,110,105,100,103,118,104,112,104,110,113,105,99,99,97,109,98,103,107,102,105,115,104,106,113,102,116,108,104,116,105,112,108,98,97,109,109,103,101,102,114,118,111,100,106,114,99,113,113,95,105,94,96,102,100,100,106,103,109,89,106,111,86,104,81,95,117,105,104,106,134,100,105,98,103,99,95,107,99,103,99,117,91,112,110,112,95,105,105,110,114,99,99,91,102,108,115,112,106,111,104,108,114,113,111,103,106,104,112,108,102,104,110,112,115,100,93,105,101,109,98,103,91,106,112,100,98,114,101,117,105,97,105,88,113,114,109,115,116,104,117,109,96,107,102,107,97,107,104,101,108,101,121,100,109,95,106,110,98,110,108,103,103,110,99,102,103,113,109,107,112,105,98,100,92,107,108,110,108,117,102,106,99,101,115,85,110,90,86,87,95,115,109,115,97,108,120,99,106,95,115,115,108,107,123,101,100,109,99,99,109,118,97,100,111,113,109,114,119,90,96,113,107,108,101,99,106,115,106,113,106,104,117,98,98,113,101,110,107,103,107,94,109,98,104,103,112,106,102,97,105,88,112,115,116,99,109,97,114,106,107,117,112,105,95,105,97,97,108,96,102,108,106,100,108,103,109,96,111,104,105,109,96,97,105,101,105,96,108,103,113,101,98,115,102,104,93,109,124,107,98,96,103,115,97,109,97,114,104,99,102,99,105,89,111,108,108,102,116,117,106,104,98,105,108,113,111,111,103,100,116,103,123,99,103,98,101,112,114,105,109,99,94,101,104,117,112,97,78,95,104,100,98,110,98,98,122,99,99,111,102,112,106,105,106,109,102,99,106,115,97,109,103,111,101,121,100,105,106,101,103,100,110,99,104,116,112,105,108,117,93,90,109,82,91,102,112,112,110,103,94,101,107,107,107,115,95,105,111,117,99,105,113,113,99,112,108,106,113,116,114,106,101,102,104,113,110,84,104,113,105,102,129,101,117,112,106,102,113,113,119,107,108,106,94,103,87,114,100,110,102,117,106,95,102,95,105,100,110,93,110,102,111,103,98,107,100,102,103,101,99,103,107,110,92,106,115,108,102,100,98,109,117,86,87,101,113,110,97,97,109,107,95,103,118,90,109,94,97,107,97,109,106,104,113,105,106,100,105,106,104,114,86,116,104,115,99,103,95,113,102,120,108,110,108,108,119,102,102,108,105,99,111,110,94,108,94,96,97,92,109,108,95,110,110,106,103,118,81,106,106,111,102,108,107,117,114,108,101,103,121,105,100,121,104,106,110,108,105,105,95,105,119,109,106,111,104,103,118,116,113,103,110,113,107,104,92,99,100,107,86,107,97,116,105,95,105,118,121,101,108,103,107,95,112,103,117,102,111,108,111,116,100,112,108,107,106,104,106,113,108,101,135,110,99,107,120,103,94,117,98,112,109,108,115,103,107,100,109,100,101,97,116,107,104,99,111,103,97,111,113,103,109,94,118,98,116,109,85,113,108,105,109,95,99,113,106,118,102,100,108,103,97,115,102,98,98,102,116,85,104,102,102,103,110,96,106,101,120,112,96,99,99,114,95,96,103,109,117,107,104,95,108,106,117,98,129,106,100,110,109,104,107,95,105,134,103,100,108,107,108,105,108,109,108,113,128,91,109,111,111,99,115,99,108,108,103,118,94,100,107,125,95,101,102,106,111,97,105,111,115,96,101,106,106,109,95,110,99,99,87,97,107,111,113,108,93,88,107,95,108,101,103,106,109,113,108,113,108,100,104,107,103,99,99,100,103,99,110,109,108,105,113,106,96,109,126,99,119,110,104,106,102,107,106,106,108,102,96,106,110,106,99,94,100,106,91,110,101,84,102,100,102,114,108,102,102,80,94,101,108,103,107,103,108,91,98,103,102,102,100,110,99,91,96,108,103,100,100,107,109,103,102,97,106,105,108,102,108,105,117,87,114,110,101,99, +534.0838,101,89,110,100,90,104,106,107,91,119,106,71,100,102,103,92,116,117,101,83,109,110,102,107,98,105,128,98,109,106,105,95,102,104,115,107,110,107,133,102,95,105,108,99,103,112,103,96,101,130,100,113,113,102,104,103,113,104,116,104,100,94,97,99,103,114,87,103,112,110,110,109,107,99,101,108,109,105,114,102,102,110,102,119,86,102,113,119,108,99,109,103,101,100,91,102,91,113,99,112,103,100,112,94,93,106,105,106,81,97,115,102,110,99,106,107,99,103,79,100,110,113,97,100,112,98,109,93,100,108,103,105,130,107,104,92,112,114,112,103,103,107,95,96,101,95,108,100,110,99,102,100,106,100,106,100,97,107,112,99,99,103,109,103,99,95,106,97,110,96,99,105,105,101,111,68,97,90,110,99,104,99,96,101,109,94,100,94,109,104,89,100,95,109,106,125,98,102,102,99,92,107,98,101,117,113,93,106,106,119,89,102,110,102,105,110,99,102,116,108,104,96,104,98,109,106,104,112,110,113,91,93,102,102,99,97,106,84,103,96,100,104,126,110,106,102,116,106,99,86,98,108,107,109,94,112,103,102,100,110,117,104,114,121,102,107,115,105,98,94,103,101,109,117,118,115,100,108,109,115,115,102,109,114,118,100,96,106,118,102,99,107,102,87,101,93,110,93,112,98,99,101,104,107,110,111,105,112,112,122,117,107,103,115,94,101,101,106,106,112,111,100,100,142,96,105,98,91,116,100,102,97,98,95,109,104,102,108,91,94,95,106,114,102,83,106,112,107,105,104,107,100,109,121,95,101,92,109,113,116,104,104,114,99,101,92,105,106,100,99,104,101,103,98,117,93,105,113,100,102,105,109,99,104,114,109,96,97,112,100,110,85,100,112,106,107,101,118,100,106,103,102,90,98,112,107,115,116,97,118,99,104,104,104,113,97,108,119,111,109,92,100,103,96,98,91,102,93,87,104,102,108,120,106,101,107,106,110,91,123,118,102,107,108,100,106,97,105,98,105,100,97,106,110,105,103,99,108,107,108,98,103,114,112,103,101,107,100,111,111,112,110,97,111,107,104,106,116,91,109,105,105,99,102,94,114,109,98,104,101,108,108,108,107,97,104,100,95,104,99,111,94,110,98,115,115,106,116,103,94,98,105,98,101,109,99,106,91,104,93,124,104,102,101,112,105,122,114,108,107,109,109,103,104,99,105,108,108,105,106,108,110,96,97,100,94,113,99,99,102,113,92,104,105,96,105,98,109,112,101,107,103,104,105,99,104,128,99,101,115,117,100,106,99,99,108,110,100,110,111,108,105,106,117,113,101,99,107,95,102,99,102,102,106,111,109,94,103,112,102,112,117,99,107,102,99,98,104,115,108,96,106,113,118,108,108,103,96,113,108,106,105,105,108,105,118,94,101,108,117,100,102,89,105,91,115,93,109,119,91,121,106,102,108,101,111,75,102,100,102,103,88,113,113,110,110,99,109,119,102,108,112,106,104,73,104,101,109,109,96,97,115,108,104,101,109,114,97,108,102,104,132,114,104,111,108,99,97,95,102,94,96,98,109,101,99,98,101,106,106,101,111,99,109,93,105,105,109,85,103,103,109,105,101,88,108,100,100,104,103,101,108,117,104,102,108,106,110,99,106,114,101,118,101,106,110,105,109,111,109,111,102,99,101,90,112,107,102,91,113,111,108,106,105,112,99,98,109,104,113,108,110,92,111,103,105,87,106,105,99,104,103,111,100,109,100,105,97,103,102,110,111,105,104,87,106,95,121,101,115,106,106,87,104,114,108,83,100,128,111,112,104,107,104,98,106,122,103,98,96,110,114,103,104,104,105,99,116,112,74,102,108,100,103,108,117,109,100,111,100,99,100,109,104,106,112,103,106,103,108,104,101,113,104,115,103,94,97,108,97,109,105,115,109,98,103,100,105,107,105,124,96,96,98,100,109,113,109,121,101,102,111,116,108,121,108,105,95,106,97,103,85,104,102,97,103,103,105,111,93,108,106,83,111,114,98,103,100,108,108,101,113,117,104,104,97,106,107,103,98,110,114,113,111,105,105,103,103,103,98,103,109,110,103,104,106,91,113,101,117,97,116,108,105,98,106,108,94,114,121,113,105,85,122,115,99,101,91,105,110,114,92,96,117,105,105,105,107,94,100,118,102,106,105,93,109,98,112,101,106,92,102,98,98,97,111,100,99,102,114,95,99,102,95,100,99,103,108,105,106,97,103,105,106,107,93,103,109,106,106,116,110,101,107,107,113,109,105,92,99,66,104,103,104,107,112,99,98,110,112,109,112,82,106,116,95,106,90,112,104,106,119,101,111,109,104,107,82,113,109,109,105,110,115,94,95,106,104,106,111,102,115,98,99,102,105,103,95,108,104,101,108,102,115,113,88,102,111,113,99,96,110,96,97,102,103,111,122,89,104,114,112,111,112,105,103,98,104,106,80,105,101,105,98,104,110,98,99,113,104,105,90,102,100,105,105,116,98,116,107,109,104,104,100,95,94,100,110,97,105,101,96,96,89,107,101,115,114,124,108,94,102,108,100,109,89,94,103,88,98,104,100,99,117,92,107,100,104,112,98,105,102,102,111,96,113,73,94,108,101,108,97,92,116,97,113,105,93,104,98,99,99,103,88,101,99,102,99,116,115,102,103,106,106,103,107,111,99,112,115,102,102,103,95,95,100,120,106,98,102,102,120,104,104,117,92,113,107,97,109,100,114,113,98,109,110,106,103,109,90,97,115,99,113,105,111,109,108,120,94,110,94,94,107,95,95,103,95,102,115,90,109,112,89,110,110,100,112,122,101,99,110,107,100,95,101,101,113,103,107,96,100,105,99,115,104,108,106,106,103,109,103,106,102,106,98,91,106,100,98,112,99,111,103,103,105,92,99,103,97,108,112,110,114,117,102,103,101,108,99,121,109,109,93,106,109,117,104,110,108,115,103,98,103,116,109,105,96,95,103,105,98,95,90,100,100,115,97,106,96,105,94,97,104,107,83,102,110,132,105,99,100,110,91,99,100,119,99,104,98,104,105,113,99,115,101,106,98,97,101,100,106,104,100,108,102,126,105,86,104,117,109,99,120,103,86,101,111,98,113,96,93,104,109,99,111,68,105,110,95,111,83,111,111,106,104,134,98,107,102,110,98,105,99,113,89,90,102,117,111,106,101,105,107,111,80,107,110,108,118,113,105,117,94,102,96,101,104,104,100,105,99,112,114,108,107,108,116,94,111,102,99,95,106,109,106,98,105,99,99,102,92,90,98,99,108,109,115,105,98,95,99,103,94,110,111,88,94,72,106,99,100,104,105,100,98,109,105,113,102,115,109,103,103,110,98,96,117,98,109,99,99,100,99,103,100,111,103,105,98,94,101,98,103,97,109,118,103,97,106,106,97,99,108,103,102,109,110,94,96,112,96,111,103,112,93,104,104,121,89,117,106,101,106,101,102,115,109,107,111,106,111,95,119,98,109,106,102,101,105,100,106,90,114,111,100,109,102,94,113,103,100,99,117,102,102,99,97,108,110,108,101,111,112,104,112,92,95,103,106,87,107,109,113,106,96,106,117,102,104,91,112,108,108,109,104,102,111,98,121,100,107,102,90,93,91,108,86,104,109,100,105,101,101,107,116,99,113,105,112,111,125,110,102,94,111,108,98,101,98,109,105,93,108,98,96,103,106,118,83,105,103,102,104,108,105,105,113,96,84,106,101,109,81,102,106,101,104,104,96,99,115,88,100,106,99,101,93,107,112,104,98,113,110,100,98,110,93,96,100,116,97,102,110,87,113,89,89,120,103,98,115,104,106,104,105,102,103,103,94,100,129,106,109,113,99,104,105,105,118,108,99,81,103,99,100,117,110,109,108,100,105,113,108,105,109,103,110,111,100,99,109,106,109,92,105,102,99,107,99,98,109,99,108,96,111,107,99,110,105,100,119,104,105,106,107,109,109,114,102,113,99,102,97,108,103,100,102,111,113,91,102,105,96,105,105,106,107,113,106,107,98,105,105,108,101,98,111,107,99,97,91,100,95,101,102,107,111,97,105,109,99,104,117,96,103,101,95,104,97,116,102,111,110,111,108,101,110,110,104,102,110,108,98,109,127,110,109,104,110,100,99,106,102,106,100,99,102,108,88,99,112,134,104,98,113,96,104,95,118,107,102,102,93,96,110,103,94,97,99,110,94,96,102,105,103,103,111,97,104,106,109,97,113,101,101,98,109,108,102,108,113,110,102,98,106,106,93,98,110,84,94,102,104,104,110,102,103,99,107,107,92,99,113,91,97,110,104,105,102,132,114,119,96,112,103,121,103,103,100,107,109,99,123,97,103,113,108,101,98,96,107,94,102,106,113,107,113,102,83,103,101,100,109,105,96,106,100,110,98,113,98,109,101,68,89,101,104,99,109,104,106,102,104,106,100,97,111,106,104,96,104,111,100,121,99,107,99,98,111,95,99,98,117,95,109,102,115,106,97,93,97,98,107,96,102,100,97,96,97,93,97,95,103,109,104,101,97,109,103,111,81,113,96,105,106,100,98,99,97,102,103,96,107,106,107,114,115,79,95,93,125,113,107,107,107,104,97,107,98,90,104,106,102,104,110,123,99,113,100,114,98,98,90,102,95,99,85,101,97,105,105,109,100,107,109,98,106,107,109,92,95,102,108,112,98,72,94,97,101,111,97,89,108,120,101,110,96,98,107,103,97,92,117,99,113,103,105,96,88,103,102,93,100,105,109,112,99,78,104,110,101,112,93,109,107,100,102,111,111,122,99,115,107,110,101,110,95,109,105,116,102,99,98,96,112,103,89,95,106,103,93,85,109,102,91,97,108,101,104,106,102,99,97,112,94,108,91,113,86, +534.22455,120,94,111,94,108,107,102,118,100,113,96,109,114,105,116,113,101,114,112,109,100,98,97,102,101,106,106,109,106,95,102,120,137,104,104,96,114,119,108,109,110,90,98,91,103,107,98,102,97,122,98,109,105,116,103,104,86,101,111,99,98,116,95,108,113,121,96,104,109,106,107,118,106,122,90,112,104,103,113,88,110,108,110,105,116,116,113,112,101,101,104,109,123,85,107,98,103,105,103,91,107,102,95,94,107,113,83,125,92,92,107,94,114,109,105,110,102,105,101,96,100,106,102,121,106,92,114,98,114,101,100,100,107,112,103,124,106,130,108,105,99,118,113,112,102,112,105,99,110,123,102,92,107,113,110,102,89,107,105,117,104,104,114,107,109,122,86,103,122,102,110,102,105,96,100,109,107,75,110,99,108,111,102,109,110,92,104,106,113,107,98,111,115,102,107,101,105,112,107,112,99,113,103,109,106,98,100,104,96,113,103,106,117,114,113,113,99,110,96,106,104,108,94,83,94,113,104,107,101,110,94,113,124,104,113,100,101,117,99,94,109,105,91,101,105,95,107,110,112,112,103,105,104,107,100,118,103,118,94,113,103,106,105,105,106,118,109,100,92,84,99,101,102,109,107,113,115,124,72,97,104,114,108,108,95,109,95,104,111,96,107,106,117,112,114,113,99,126,96,110,94,105,119,111,106,121,113,106,103,108,103,117,114,103,103,108,106,100,108,107,111,113,111,95,103,100,106,91,124,101,97,104,105,106,120,113,94,99,104,109,105,107,106,99,101,104,98,103,119,111,113,105,105,101,109,108,113,101,104,93,103,108,102,98,130,112,109,117,103,104,110,99,117,97,108,94,126,97,95,101,96,120,99,105,90,116,106,98,119,100,109,95,85,89,102,103,110,102,99,110,79,116,104,99,103,90,96,113,116,107,99,102,104,103,114,108,100,108,109,100,96,108,99,86,107,125,113,81,103,107,108,121,108,103,104,93,94,120,88,110,100,100,113,99,99,104,102,103,99,107,114,104,107,110,111,111,105,106,111,109,107,111,92,107,102,110,118,123,112,109,111,103,102,107,112,109,111,111,106,100,97,106,107,137,102,103,109,119,113,91,110,111,101,107,100,101,105,100,94,109,93,121,109,99,104,103,99,121,103,104,124,117,103,116,112,97,114,103,109,96,107,103,125,128,118,103,113,118,104,106,87,100,121,100,108,126,111,117,116,106,101,76,101,92,113,93,106,113,113,109,106,117,109,116,107,112,104,105,99,104,101,109,105,98,119,107,104,111,116,105,95,99,112,114,110,102,111,109,107,104,105,98,109,100,103,100,120,99,96,107,109,103,113,116,93,105,100,109,104,106,99,108,117,106,110,108,94,114,101,106,100,109,118,112,98,112,118,107,90,109,134,98,107,112,109,92,121,110,94,113,100,100,104,100,98,100,110,93,121,98,109,120,116,110,108,106,100,100,97,109,96,107,108,104,113,112,119,98,114,94,113,93,103,103,89,107,98,112,112,98,102,110,103,109,112,115,104,113,103,109,106,97,103,99,98,96,114,105,109,114,105,103,104,117,112,99,109,110,101,104,105,98,108,99,106,102,120,106,115,100,113,113,97,103,99,99,104,111,103,99,117,110,116,110,102,99,111,91,114,118,120,109,101,94,109,104,105,101,113,95,103,93,106,105,103,101,103,117,100,109,107,101,107,103,103,108,104,95,97,117,114,116,95,104,106,103,96,104,108,99,109,109,109,106,105,116,106,94,114,107,105,109,119,113,109,113,100,113,100,116,108,99,100,107,107,79,102,129,110,105,107,110,111,99,107,110,114,100,107,97,122,106,102,96,108,107,110,111,121,103,108,105,107,102,112,80,109,104,105,109,105,111,116,113,102,112,108,109,97,117,99,102,98,116,105,103,111,91,97,95,108,102,118,113,100,102,116,109,107,94,105,103,124,108,98,103,98,101,104,102,103,112,102,106,98,105,111,77,98,127,108,98,107,105,110,104,105,112,99,96,108,106,119,102,110,94,114,112,107,117,98,101,89,105,99,119,107,112,113,110,113,104,109,114,107,95,103,107,96,105,108,116,105,106,92,106,104,105,94,106,95,114,102,106,115,114,100,96,106,113,99,106,105,100,125,106,99,108,101,105,104,103,104,102,116,112,111,104,110,99,111,124,114,109,86,105,105,107,106,113,98,101,108,101,112,112,114,71,106,104,102,115,102,98,96,97,99,103,104,103,94,113,112,107,99,102,106,98,104,108,109,103,107,124,110,106,106,122,101,93,110,98,109,112,102,110,113,114,112,108,98,119,107,116,95,110,106,100,100,109,99,96,107,114,97,98,99,102,104,102,124,98,97,101,96,96,111,99,112,103,112,110,110,106,102,75,97,96,105,119,100,121,105,109,92,95,109,103,97,102,113,97,105,105,100,99,106,108,107,103,93,101,94,101,104,101,87,92,95,113,102,113,99,106,101,99,99,105,99,99,97,97,108,101,98,118,89,103,113,103,99,103,104,111,106,98,109,96,112,106,94,96,93,105,103,102,108,121,113,99,98,111,105,101,101,90,113,111,91,107,103,91,95,113,87,102,102,96,112,100,107,101,121,109,112,90,99,104,104,97,108,103,94,97,108,129,94,97,114,86,101,101,107,102,102,109,115,95,95,98,106,109,102,89,89,99,95,94,103,115,110,114,111,105,107,112,107,124,96,101,112,110,106,93,99,118,114,120,93,103,105,105,108,114,83,102,108,113,98,104,99,105,109,117,93,108,111,111,114,106,93,135,97,112,101,94,100,98,113,95,116,91,119,104,104,97,105,105,98,110,117,108,114,104,97,93,101,98,104,114,112,92,102,111,99,104,109,107,104,103,108,94,113,102,119,100,114,106,109,103,107,118,117,107,108,113,114,105,112,94,113,111,88,98,105,104,105,99,110,107,106,109,106,109,96,100,94,103,100,103,112,109,94,96,102,102,103,109,105,91,101,85,90,110,106,109,102,110,103,101,111,111,98,109,115,96,106,100,93,107,96,99,110,103,99,104,107,106,114,104,97,102,103,99,102,102,107,109,113,110,101,107,106,113,106,115,113,106,113,97,103,125,107,102,104,95,99,82,105,95,113,103,104,102,87,101,107,92,92,103,104,103,98,112,106,101,109,112,111,106,108,95,109,105,97,106,111,103,97,106,95,101,93,95,100,97,99,100,105,100,100,99,106,100,108,99,112,87,111,95,109,104,106,96,101,99,99,122,99,101,89,115,102,111,110,103,94,99,105,102,104,104,108,108,97,105,99,95,91,97,101,132,94,103,96,102,104,108,102,102,103,108,105,97,116,108,106,102,98,107,94,114,95,108,119,104,117,115,113,106,107,105,80,113,98,99,98,109,111,98,95,105,102,107,106,102,115,104,104,99,108,108,97,113,115,102,97,104,98,122,107,99,106,98,99,104,98,113,96,103,112,111,99,105,114,99,94,110,113,90,102,98,100,97,110,109,99,113,106,97,109,121,105,107,113,106,116,108,93,106,102,92,111,109,99,109,96,101,102,106,108,91,100,122,110,100,108,98,104,91,111,99,108,105,88,103,123,94,104,88,99,103,107,112,84,98,98,114,99,98,129,120,111,97,93,96,99,98,109,111,98,114,105,102,99,108,100,120,102,109,107,113,106,98,101,105,110,106,98,94,109,98,96,104,108,91,95,100,109,105,108,116,95,103,107,116,114,103,102,104,103,91,110,99,98,102,100,120,102,105,103,101,109,104,103,109,104,97,107,102,110,98,86,100,107,98,100,113,109,98,104,101,113,110,107,96,103,89,128,96,101,108,105,111,109,99,106,104,92,100,96,109,107,100,100,104,110,103,108,108,101,94,97,121,109,108,104,111,97,103,100,109,108,95,96,110,117,86,100,100,111,93,107,108,97,105,106,105,105,90,99,107,97,99,100,111,99,92,99,94,86,108,107,108,105,90,97,95,90,105,104,110,109,94,112,108,107,99,94,109,104,97,98,102,100,101,111,109,110,109,107,102,104,100,97,112,119,97,103,98,99,99,94,99,91,119,96,101,94,100,105,111,91,102,106,109,93,102,113,112,107,109,104,111,110,110,102,109,114,96,112,90,94,115,100,108,107,111,112,96,97,105,93,89,99,103,109,84,106,105,119,110,101,111,102,106,107,106,113,103,108,90,100,119,105,95,99,104,106,105,108,102,110,107,107,105,99,112,106,112,106,96,109,111,94,116,100,106,118,103,105,117,117,113,110,96,102,104,93,99,96,105,111,103,109,91,94,95,99,119,106,98,103,103,96,104,107,96,102,98,111,101,120,106,129,106,100,109,104,109,112,103,98,101,101,100,108,109,98,108,108,102,108,104,102,95,106,108,97,93,102,89,100,98,103,107,106,105,107,100,101,94,117,102,102,70,96,111,100,106,109,107,109,102,99,102,91,100,108,96,98,96,91,98,104,100,94,99,97,109,84,96,95,107,92,122,93,96,100,101,96,102,113,102,88,107,103,127,101,99,100,114,99,107,91,95,102,95,113,100,97,91,135,94,111,98,104,121,113,108,107,98,108,102,105,104,102,93,96,105,96,119,110,103,101,102,97,106,89,105,106,95,94,92,103,98,102,107,99,70,113,99,87,102,104,104,116,91,99,95,101,104,98,117,98,100,112,104,109,113,114,108,106,105,105,101,113,104,91,97,100,105,96,109,90,105,85,96,98,101,86,110,101,103,92,113,91,105,116,104,100,85,102,115,91,104,108,102,101,99,99,108,109,91,96,117,103,102,111,97,101,100,99,99,101,108,113,94,100,93,100,70,102,107,83,112,88,95,116,89,90,103,110,102,113,92,78,94,98,94,105,104,92,104,108,119,101,111,95,97, +534.3653,101,105,95,103,94,82,98,100,95,104,102,80,95,103,108,94,102,105,115,105,121,106,97,117,97,111,102,101,92,99,101,92,117,99,107,104,103,100,108,99,95,97,91,109,92,99,87,117,96,106,103,117,76,98,94,99,97,102,106,86,109,106,99,95,104,101,76,104,102,101,99,108,100,100,104,130,96,95,109,106,98,94,86,100,102,106,108,97,104,108,108,101,100,102,104,94,101,104,109,98,100,87,103,118,111,99,96,103,108,97,104,106,98,105,103,88,83,105,97,99,102,101,111,109,107,114,120,104,109,102,100,93,93,95,114,99,109,98,93,104,101,105,100,99,104,100,98,106,95,101,106,97,105,94,98,101,95,99,111,115,104,116,97,104,116,111,106,95,102,91,112,105,96,104,99,103,104,101,106,96,91,105,109,80,100,94,95,87,107,95,109,106,99,109,103,104,111,102,111,119,106,104,97,96,96,100,97,94,118,107,104,102,95,115,108,99,105,102,109,103,103,106,109,111,97,114,109,103,109,100,100,100,102,102,112,104,105,102,116,107,102,106,103,109,111,101,102,111,112,99,99,102,107,89,90,111,111,101,95,98,95,95,90,116,102,100,108,100,102,106,101,95,108,108,105,105,98,113,100,67,95,102,101,99,103,82,82,106,99,98,101,108,103,85,96,104,95,96,115,111,100,100,106,108,102,120,116,97,98,98,95,111,92,100,103,114,108,106,99,98,101,102,111,99,102,96,102,112,105,110,101,109,109,111,96,106,110,110,99,103,97,109,114,109,104,103,103,100,120,102,113,103,108,103,101,108,114,104,109,94,102,97,113,88,108,102,80,105,106,116,89,99,108,111,101,104,116,92,106,95,100,104,105,113,94,105,107,101,98,103,113,92,98,110,98,80,97,113,102,98,112,103,110,103,98,100,103,102,104,99,100,105,93,103,84,104,109,104,105,100,109,93,105,99,105,88,103,100,100,134,102,106,91,93,100,105,110,106,99,100,86,94,105,83,98,102,105,99,103,110,95,100,101,98,95,113,105,105,105,98,97,100,110,106,107,116,84,110,108,121,95,107,104,100,99,118,102,122,124,96,104,108,112,111,110,101,112,107,102,96,101,106,110,96,88,94,110,103,109,104,97,99,78,109,104,108,121,91,101,98,106,104,101,120,109,88,102,119,99,101,117,98,109,100,107,100,111,98,99,95,80,104,108,109,100,101,102,94,105,106,103,114,102,113,98,99,108,115,96,101,100,114,115,111,94,108,106,104,102,97,109,120,110,112,108,106,104,108,100,108,108,118,103,108,100,103,103,102,101,107,110,100,101,97,104,105,104,105,107,101,104,105,118,94,128,100,106,104,99,103,110,108,104,103,103,104,106,99,99,105,99,101,105,106,105,91,103,102,100,101,95,105,115,118,105,106,103,109,101,103,107,95,101,108,100,115,101,107,121,95,124,126,102,113,89,100,103,102,106,107,95,110,100,109,107,106,95,101,104,106,102,94,101,110,104,114,105,101,116,97,104,95,102,101,100,111,102,91,94,103,105,105,99,94,80,111,96,111,101,98,111,114,98,113,103,104,101,100,103,95,99,100,99,96,93,104,108,100,64,93,104,96,100,96,102,98,109,106,101,101,96,95,101,110,94,99,105,107,96,110,102,104,77,116,101,94,104,112,104,104,109,91,107,92,105,102,109,131,145,107,121,98,103,111,118,113,114,108,102,101,99,106,110,99,95,111,99,106,96,96,122,104,108,103,112,109,105,109,103,105,99,92,131,102,111,101,108,99,105,108,106,114,95,102,105,102,104,99,111,109,95,97,89,102,113,102,98,104,99,102,105,123,100,107,113,83,116,106,98,106,106,94,106,103,111,105,108,105,120,94,104,95,108,102,85,91,115,83,88,113,95,100,116,102,100,112,111,104,102,103,104,107,100,112,106,91,109,108,100,104,98,102,114,114,107,96,100,104,108,111,107,107,101,105,92,102,99,104,110,103,117,101,94,95,80,111,92,116,108,88,107,103,96,83,94,110,116,117,99,98,105,112,104,98,102,103,93,99,96,106,99,107,104,99,107,92,101,112,103,93,105,101,99,100,103,95,108,112,104,100,76,101,101,117,107,113,101,114,118,108,95,95,115,118,99,108,112,115,104,113,106,102,117,108,105,108,107,109,94,106,117,102,94,103,120,124,99,106,113,103,109,99,106,99,116,113,95,101,99,107,95,109,94,108,117,108,109,94,104,95,96,93,96,85,105,104,99,108,102,110,102,106,100,99,115,108,95,96,102,112,86,117,92,107,92,91,103,110,114,117,105,110,82,118,110,108,98,98,107,102,103,108,103,83,119,97,109,114,105,124,104,109,82,108,94,100,94,106,106,100,102,104,118,92,106,104,96,111,98,106,104,103,86,97,100,110,105,105,119,103,102,109,98,111,110,104,104,106,84,110,96,108,100,107,101,115,95,99,114,111,112,116,103,86,98,119,103,101,108,110,108,94,125,113,107,109,111,102,99,112,109,114,87,102,103,102,110,98,96,109,97,97,102,106,115,123,113,116,112,95,110,121,95,94,93,110,109,101,97,109,107,113,100,113,106,97,109,95,115,93,117,106,98,101,102,108,114,102,95,100,119,95,101,97,108,114,115,115,106,102,107,100,112,109,112,100,90,111,111,100,106,108,102,99,109,108,105,108,103,106,106,103,107,108,116,98,107,106,111,105,98,108,110,110,113,120,132,119,104,113,106,107,106,116,105,122,106,115,111,106,104,110,104,102,107,109,101,106,107,110,95,110,102,105,120,108,103,116,109,120,102,109,103,94,102,118,113,98,103,103,107,98,116,106,107,104,99,117,119,105,120,103,104,120,106,126,102,107,99,100,115,109,117,118,111,102,102,106,109,109,106,111,115,108,109,113,101,111,109,115,103,122,106,119,101,122,104,111,99,101,110,89,105,102,103,116,102,114,110,99,106,104,109,108,108,107,109,114,115,104,121,95,111,112,113,79,101,112,109,101,105,105,91,95,112,114,111,106,113,112,107,114,110,110,108,105,107,112,113,110,121,109,104,108,113,101,102,94,127,99,114,110,114,102,115,102,101,108,109,87,109,112,101,97,109,108,112,93,105,108,112,99,103,109,95,109,108,109,105,108,97,95,105,117,103,86,112,110,116,98,110,106,100,111,105,107,120,109,109,109,101,103,107,116,93,98,108,121,118,107,102,100,105,98,102,94,107,95,114,110,109,112,107,103,99,112,103,104,101,99,94,120,110,102,100,102,117,104,112,108,110,89,108,108,112,103,108,97,100,99,104,111,104,106,109,105,104,98,91,95,112,94,114,101,109,110,108,89,109,97,105,104,101,105,92,116,95,105,109,107,101,89,113,111,97,117,97,101,109,102,89,104,106,108,111,108,96,97,104,107,106,93,92,102,101,118,112,106,98,98,118,116,90,108,102,112,114,110,102,95,112,102,101,107,116,102,117,100,112,105,98,113,97,114,99,117,103,97,103,96,103,142,109,115,109,109,104,106,97,104,111,99,103,101,109,110,99,111,123,121,110,96,101,114,114,115,105,108,108,101,102,105,100,108,103,137,111,105,102,95,96,114,118,99,105,109,103,113,98,110,106,117,109,100,107,99,95,97,115,113,97,101,91,115,109,103,100,116,105,111,108,126,102,95,108,101,117,106,111,91,111,108,114,109,114,98,97,110,107,91,104,101,95,110,106,96,105,102,117,105,113,105,112,98,115,102,108,102,99,90,88,113,96,99,100,103,101,100,109,108,87,106,121,110,102,95,103,107,109,101,123,108,117,91,99,109,95,104,99,108,105,109,94,111,107,113,110,113,88,112,93,126,90,105,93,115,84,113,101,103,106,104,106,103,107,126,120,91,81,125,109,113,112,110,107,100,109,103,100,93,119,100,105,87,117,112,98,104,116,104,113,103,92,103,110,101,96,92,106,107,102,101,107,107,100,101,100,81,104,109,112,112,105,111,96,97,102,117,108,105,118,98,124,101,104,105,114,96,100,106,116,110,92,105,111,111,110,102,115,103,103,103,106,85,88,110,113,97,103,112,113,113,107,108,109,112,112,108,107,107,104,98,113,104,88,110,116,108,102,107,99,95,106,109,106,111,102,101,103,119,106,104,98,94,103,95,107,109,92,101,107,103,120,107,106,109,102,114,101,100,117,106,82,102,98,106,108,101,92,115,110,106,94,110,89,100,97,105,112,106,103,98,95,105,92,105,110,89,99,90,99,102,115,106,91,103,105,96,99,122,98,94,113,114,117,98,103,107,100,97,108,113,104,105,119,104,103,103,104,111,109,106,102,101,99,105,99,123,104,110,105,101,96,100,95,104,108,102,111,102,102,108,104,107,98,104,109,100,99,100,101,97,116,97,96,105,94,98,104,106,116,106,109,96,99,107,100,102,100,104,95,117,114,113,99,105,108,104,94,91,99,99,106,105,91,95,108,101,102,109,107,104,94,108,89,112,102,116,110,99,103,111,105,96,87,101,95,104,106,85,99,111,107,95,112,95,88,91,113,108,113,109,112,110,124,98,105,125,107,107,106,96,113,104,107,101,111,66,105,100,103,114,109,108,112,116,98,114,102,99,101,95,106,98,117,107,103,112,120,110,100,109,112,105,87,100,112,98,96,93,124,107,109,118,115,102,101,114,92,106,102,103,103,102,102,106,95,95,88,108,93,103,111,110,103,100,106,90,98,108,112,103,102,101,116,101,103,117,101,104,97,103,118,103,115,112,111,115,112,109,107,104,102,99,101,77,98,114,108,105,108,92,102,109,107,115,96,91,100,96,99,102,124,98,86,119,111,99,119,94,97,98,109,85,94,104,108,115,108,95,102,129,100,115,107,105,96,104,89,95, +534.5061,108,101,103,102,103,131,97,112,105,109,96,89,112,111,106,98,101,120,110,107,112,109,112,114,114,97,98,99,97,105,113,108,94,103,104,107,114,100,112,118,106,98,108,79,103,99,100,104,104,114,107,103,103,105,98,96,100,110,98,95,95,100,112,104,117,109,112,101,102,94,100,104,117,114,98,108,100,100,109,85,96,109,97,101,104,107,112,94,104,112,101,115,105,106,102,94,110,104,93,110,91,102,105,105,106,101,103,99,109,106,102,99,109,102,96,106,105,105,107,105,102,102,106,99,121,119,107,110,107,115,106,111,113,110,104,100,103,105,110,114,117,111,111,95,96,117,106,105,102,104,109,98,95,110,106,106,105,101,107,117,110,113,107,117,113,103,104,106,118,103,102,106,103,97,113,111,105,102,119,98,110,106,119,104,109,106,99,93,99,101,103,122,101,105,95,110,104,109,113,112,105,99,101,108,105,108,103,105,120,134,103,104,115,99,95,104,105,104,117,101,105,104,114,93,101,115,107,102,104,109,117,109,93,116,89,101,99,108,75,92,117,105,108,104,104,126,109,113,99,106,107,116,105,118,112,91,105,100,103,111,114,102,104,103,106,92,106,105,108,108,93,85,79,106,113,108,104,115,111,97,112,90,101,104,110,112,100,102,113,103,100,101,104,110,104,108,96,116,102,113,107,105,108,107,91,110,125,110,99,101,115,107,114,109,111,106,98,100,107,113,114,106,106,104,109,104,103,105,113,113,107,96,105,91,105,118,115,92,86,103,105,107,103,105,103,118,110,114,104,109,100,110,109,98,103,111,106,117,112,100,106,95,98,116,103,96,97,109,115,105,99,101,107,102,102,101,120,115,103,101,117,107,99,102,103,105,99,110,118,96,108,119,89,106,103,110,99,109,106,104,110,98,118,110,93,109,109,97,119,98,109,113,115,118,118,102,104,96,116,103,104,102,107,108,102,97,106,103,90,109,106,135,109,100,98,99,98,122,102,103,107,105,105,110,99,110,102,103,116,112,120,103,99,116,111,98,108,110,116,107,95,109,98,114,116,110,103,104,125,108,114,101,131,99,104,93,96,105,105,103,113,113,103,107,105,104,104,96,104,101,109,111,107,102,106,105,109,109,97,107,105,103,109,105,103,123,112,107,107,116,109,103,108,106,102,110,96,98,95,98,103,107,108,103,111,109,107,113,106,84,88,108,110,82,100,103,105,107,114,113,107,103,103,112,104,114,106,106,104,97,107,94,114,123,114,116,107,111,100,115,113,118,103,99,111,105,108,108,104,110,93,98,98,99,92,121,98,109,107,106,109,103,120,108,99,109,116,108,98,96,103,95,107,110,109,103,93,120,119,97,104,114,114,109,99,118,93,119,113,108,112,108,108,127,109,108,104,98,120,122,123,101,103,108,119,110,107,111,105,109,105,101,90,109,106,81,117,91,107,101,103,106,112,112,103,100,109,114,111,116,103,109,92,90,112,108,117,109,107,111,116,104,111,106,92,97,111,105,113,112,103,118,107,94,103,104,106,104,113,105,96,95,104,100,105,101,121,98,103,94,100,98,101,98,114,112,103,117,112,99,103,98,92,94,117,118,104,103,101,103,108,109,99,106,100,108,99,108,114,92,108,99,110,115,99,111,109,111,103,114,110,116,105,89,108,106,115,103,102,99,120,105,107,107,105,101,95,105,98,97,111,98,104,122,152,105,100,95,105,99,107,107,82,92,116,96,80,99,110,104,81,108,108,103,113,102,96,93,114,98,99,100,120,107,109,105,108,120,110,120,117,103,100,128,118,113,97,114,111,114,102,103,108,103,104,116,103,112,109,108,102,104,107,105,111,106,85,116,107,104,104,114,98,108,115,99,86,102,110,98,110,114,102,104,94,100,108,99,104,111,86,112,100,104,130,108,107,114,113,102,100,99,101,117,98,94,100,109,105,100,104,116,104,95,99,101,94,106,121,99,113,112,109,99,102,107,112,99,109,99,103,120,106,117,102,118,105,114,102,100,121,105,101,104,113,98,95,114,102,111,114,104,91,100,113,101,88,102,114,101,103,103,114,111,116,94,112,111,100,108,106,112,112,114,105,105,99,112,109,94,100,108,103,107,83,107,94,102,111,107,102,109,113,104,102,105,109,94,97,101,118,101,99,115,111,99,114,119,98,108,116,108,109,103,107,102,93,106,103,103,84,105,113,109,110,110,82,95,94,111,104,121,104,107,106,103,103,107,96,102,96,114,107,111,100,110,108,125,110,120,109,120,108,98,112,105,113,102,102,110,105,117,103,103,97,105,105,113,115,97,108,110,110,100,107,101,107,102,99,103,102,103,109,96,108,107,112,116,113,104,102,106,103,112,89,102,108,108,101,105,99,107,123,99,95,114,109,115,113,105,106,109,104,105,95,101,90,109,117,105,106,119,111,102,107,108,111,118,96,98,118,111,96,106,113,95,110,102,105,117,114,106,117,101,96,104,96,125,109,105,103,104,121,106,103,108,99,113,113,106,109,109,94,99,104,105,117,100,90,106,105,108,108,112,102,102,100,115,108,107,102,114,103,105,103,104,111,113,112,110,115,100,99,115,99,113,109,112,110,107,116,110,101,106,109,92,105,104,100,108,117,88,107,99,105,107,115,109,105,101,106,111,112,111,104,102,111,112,110,109,114,99,106,100,115,102,112,117,109,99,113,103,108,91,119,110,109,111,121,120,105,105,110,93,107,115,102,112,111,104,104,94,104,105,116,111,103,119,109,113,112,105,68,108,116,108,91,108,113,105,91,108,110,105,99,123,100,103,115,98,112,132,104,103,106,104,109,113,117,112,111,116,108,107,106,106,110,110,103,103,107,105,100,93,103,109,109,112,112,114,73,98,93,112,112,106,108,94,112,119,105,107,103,113,93,99,101,107,92,107,106,115,74,105,113,109,107,100,110,103,100,101,101,113,98,112,105,103,101,108,100,106,108,96,109,112,112,110,106,111,111,104,106,110,116,107,100,95,118,107,96,98,100,101,106,102,108,108,105,108,107,108,108,103,109,109,98,105,110,112,113,102,108,116,105,99,107,106,77,109,111,102,113,102,103,101,92,97,98,115,110,101,103,99,112,101,104,103,99,91,107,114,101,108,107,95,109,107,99,118,101,101,105,102,115,93,106,108,105,116,100,93,109,121,120,117,100,107,102,107,94,103,95,103,103,97,106,102,96,97,110,104,116,119,108,80,101,103,103,92,104,108,120,115,107,103,105,117,102,106,103,102,113,91,112,103,96,106,111,100,106,102,100,111,113,94,108,103,109,124,100,103,102,107,98,119,97,100,95,129,93,106,91,107,102,119,120,99,99,109,105,106,100,111,101,116,99,95,99,112,106,73,105,110,107,102,109,103,111,96,109,127,109,97,91,88,102,101,103,102,83,91,98,103,111,106,102,121,107,100,108,109,98,93,96,106,99,109,103,108,103,117,98,109,95,114,117,115,104,106,112,113,101,106,110,103,104,107,109,120,116,110,98,102,101,106,106,108,102,111,106,107,107,107,101,99,95,103,114,121,102,113,110,108,102,114,112,109,106,110,100,101,105,105,99,104,110,104,115,103,107,95,107,109,114,105,87,106,86,96,97,114,106,116,117,113,99,111,111,99,109,99,103,106,104,112,102,99,103,103,115,110,112,109,113,109,101,112,112,113,111,99,108,115,110,107,107,123,110,109,106,112,103,66,108,100,102,122,105,111,98,105,81,117,104,112,105,105,113,105,102,96,100,101,99,111,100,114,86,113,110,103,99,113,114,117,119,108,102,114,107,106,108,100,100,115,118,96,105,106,102,111,104,112,106,99,111,138,112,105,114,97,109,105,107,107,107,120,101,119,102,116,98,101,108,111,103,99,98,108,103,99,99,111,100,109,101,110,105,103,105,98,97,103,100,101,98,101,105,117,97,115,101,96,102,117,95,112,95,103,107,96,121,101,112,108,105,114,99,111,99,96,99,104,101,97,100,112,100,107,113,108,94,104,98,99,102,103,109,103,110,108,105,102,110,106,111,103,109,104,108,114,109,99,89,101,101,106,103,103,108,109,105,107,104,109,105,100,116,107,105,95,99,106,106,110,102,112,112,121,109,106,95,103,99,102,97,106,118,98,102,97,101,101,106,93,114,104,118,102,112,99,106,101,98,112,101,102,99,109,101,103,91,101,111,98,114,95,95,101,106,108,113,116,93,101,112,99,109,109,104,103,100,110,86,103,106,113,92,108,99,100,114,104,101,93,110,106,100,98,113,106,112,101,111,99,92,100,98,113,109,106,109,103,103,109,105,106,96,103,105,64,106,104,108,85,102,98,113,106,108,95,110,100,101,98,108,104,107,102,103,111,109,99,98,113,108,96,116,107,92,106,110,104,108,103,101,100,90,105,102,117,107,110,90,100,103,109,104,87,104,111,100,113,113,105,113,116,108,103,106,97,107,107,110,97,109,108,115,116,89,99,100,132,95,107,104,102,105,103,100,108,93,116,108,112,93,116,97,101,112,117,103,98,118,111,110,95,100,100,88,112,114,99,95,107,117,107,96,100,102,92,109,103,104,96,105,88,103,108,103,105,101,109,102,100,105,98,100,104,106,107,105,102,103,104,111,107,115,105,100,107,113,103,104,106,104,105,107,92,108,102,104,111,102,102,109,113,105,108,115,105,99,94,106,102,99,109,101,102,98,121,114,102,93,93,105,97,107,98,96,98,114,110,91,113,98,107,109,100,105,97,99,109,108,98,128,98,113,107,109,100,102,111,116,100,110,106,102,94,118,101,96,98,115,81,90,107,98,116,108,121,106,102,105,113,109,99,102,101,97,92,111,111,111,89,98,122,107,109,119,116,83,104,118,113,102,114,99,68, +534.64685,90,89,109,113,93,89,99,118,109,112,95,95,83,93,104,113,91,103,100,99,108,106,97,87,107,107,108,108,107,95,114,101,100,106,121,90,90,107,95,112,100,108,108,100,100,87,108,92,96,97,94,104,111,110,106,101,99,101,95,87,104,110,101,108,112,111,94,102,105,104,107,102,109,113,104,112,92,112,98,103,108,110,109,109,115,83,94,110,106,100,108,111,94,93,102,86,101,117,101,101,95,106,78,101,95,119,105,97,101,110,101,118,99,97,98,96,85,111,101,85,108,105,117,107,112,109,109,108,107,107,106,113,93,119,107,103,104,95,103,98,99,117,99,139,108,100,105,99,91,99,114,99,110,106,96,99,112,103,111,115,107,106,105,90,108,91,107,103,108,78,102,101,103,90,95,99,104,86,115,100,94,105,101,108,110,111,104,102,104,99,100,97,116,106,105,100,92,100,97,105,104,105,103,106,102,123,107,106,112,99,102,97,104,100,110,88,102,97,98,100,102,114,103,104,94,112,95,99,102,111,100,98,98,92,99,104,111,104,96,102,97,111,99,105,103,78,111,98,109,90,103,100,108,143,101,112,98,108,102,94,111,112,94,91,97,94,105,112,91,112,86,105,106,95,105,95,97,104,127,103,106,103,102,108,97,108,110,103,117,113,119,98,110,108,121,109,115,98,85,106,105,102,105,105,103,105,98,102,115,109,106,106,103,101,99,86,93,101,104,100,101,97,103,111,108,92,98,101,103,103,98,115,101,102,120,103,105,92,91,111,114,105,103,100,99,102,110,114,101,109,99,106,104,104,111,104,99,105,102,109,100,108,100,110,103,87,91,109,99,107,97,96,110,106,105,70,115,106,96,116,109,118,95,97,103,106,109,101,121,87,109,95,94,76,101,117,109,109,105,102,101,94,95,93,105,113,104,96,109,116,97,107,98,115,99,101,106,104,96,108,98,103,110,102,104,107,110,113,101,96,104,101,108,101,100,103,97,110,99,98,104,109,94,90,114,92,93,97,111,116,106,97,107,120,108,102,104,96,107,96,112,103,95,114,109,104,104,109,117,100,106,111,102,98,102,108,106,103,105,120,100,98,102,103,101,85,94,104,96,103,105,103,109,106,93,104,95,108,103,99,107,102,94,108,99,104,108,102,91,101,97,97,105,116,110,105,107,116,95,98,100,103,105,103,117,97,97,97,101,105,110,103,99,104,108,97,102,97,109,102,104,106,101,103,113,101,105,88,107,103,99,109,103,102,111,112,114,109,97,108,93,105,110,107,102,100,96,107,87,99,102,101,103,98,85,109,105,116,100,123,100,97,106,139,104,105,105,92,94,108,107,109,91,114,103,102,98,106,99,114,108,126,99,101,103,95,102,98,110,100,111,105,103,120,108,103,105,107,107,110,98,102,101,107,102,98,106,101,105,100,91,102,105,110,99,105,107,97,107,109,102,113,132,101,102,97,105,83,109,115,108,104,96,102,104,112,107,115,108,112,108,102,123,99,108,96,110,97,135,106,105,112,114,100,99,96,108,109,104,96,97,118,103,100,110,93,125,98,99,97,115,98,117,107,107,111,92,99,99,100,103,111,117,99,101,105,111,110,103,103,116,90,104,96,95,110,96,95,100,103,112,101,101,109,89,108,110,109,101,105,110,106,109,99,98,105,111,100,113,102,106,109,100,106,113,103,108,129,100,105,107,97,107,116,115,103,109,105,106,104,106,101,94,101,106,109,100,86,92,99,104,96,103,103,109,102,103,96,104,102,88,106,114,105,94,107,110,101,98,101,110,106,77,115,95,95,101,102,94,110,102,95,99,116,101,104,101,114,113,104,108,115,101,101,104,103,116,109,105,94,96,106,104,113,107,120,112,110,106,99,114,98,111,101,113,104,104,107,110,82,103,95,95,99,102,99,107,100,97,118,99,106,108,90,97,111,108,115,101,99,95,106,102,127,96,105,101,107,106,86,111,105,111,102,98,94,93,86,100,108,111,107,101,112,101,96,96,108,105,99,103,106,120,106,92,70,105,108,95,106,101,93,120,105,89,104,110,107,100,120,104,112,115,105,102,107,94,112,94,104,95,91,108,112,101,106,113,105,90,99,113,117,110,118,97,105,107,112,99,103,108,103,103,103,95,95,90,112,95,113,110,99,120,115,111,104,96,99,108,100,117,108,93,104,110,107,100,106,108,113,97,96,101,109,101,98,108,104,98,111,114,111,105,109,104,102,105,108,80,104,106,110,100,103,103,101,100,96,111,100,110,90,110,100,106,112,110,107,97,114,84,102,107,107,97,97,110,92,109,92,107,105,107,100,101,95,112,102,108,105,101,105,109,96,106,90,115,125,102,106,93,118,93,102,100,96,105,100,111,103,98,95,116,101,112,104,122,103,112,105,90,111,86,108,112,96,91,92,133,103,111,112,103,103,106,106,102,85,98,109,91,106,101,102,109,93,102,90,110,97,100,106,99,115,108,107,103,101,102,101,108,101,105,106,99,113,94,92,113,94,100,99,101,105,108,96,106,94,108,109,97,108,99,110,102,109,95,104,107,101,103,109,109,89,113,108,98,116,104,96,98,99,91,97,107,99,103,107,106,94,120,109,108,116,110,107,120,94,113,93,103,108,99,94,98,113,94,95,108,99,100,110,106,124,108,103,113,114,95,104,115,86,101,95,100,109,100,98,101,109,112,94,99,112,108,108,97,113,101,89,107,120,108,112,102,95,115,110,110,93,99,95,103,112,104,104,126,106,104,104,110,101,102,88,102,90,113,96,106,95,92,104,102,102,105,97,108,113,101,119,105,98,118,94,92,101,106,107,94,102,108,112,94,110,109,93,104,109,94,121,117,96,104,104,107,106,100,104,105,112,112,87,103,103,105,103,105,102,96,113,99,109,121,113,106,109,108,108,112,76,106,107,104,111,107,110,94,98,104,100,105,98,101,102,104,91,106,100,112,91,98,102,88,98,109,115,110,109,98,72,104,99,100,104,105,99,121,105,107,106,105,99,103,117,102,98,106,112,110,118,105,100,110,104,108,99,108,112,96,102,98,101,109,118,106,102,97,98,121,99,121,120,101,104,105,108,106,102,98,96,100,104,94,101,101,99,101,110,139,103,102,102,129,107,106,98,102,116,107,103,113,89,106,108,106,104,110,96,104,117,99,104,100,97,103,107,121,92,99,99,107,94,86,95,105,91,110,102,117,114,121,113,101,104,101,109,112,96,113,105,113,105,109,108,118,103,112,114,87,106,107,104,101,105,113,92,107,107,98,104,103,104,105,106,93,102,108,110,97,99,106,111,118,98,102,109,91,105,103,96,103,101,102,84,99,107,104,107,111,93,108,105,95,109,77,110,105,96,107,99,121,96,98,102,100,96,103,94,101,100,111,109,106,116,95,103,107,106,101,105,99,89,97,91,104,95,104,120,93,119,114,105,101,106,101,110,117,95,113,91,108,109,106,103,105,101,91,89,106,100,102,102,107,111,105,101,95,104,103,99,99,71,101,108,99,108,106,104,97,98,92,92,112,100,100,105,111,96,106,100,67,98,76,102,105,101,102,98,95,100,112,94,109,112,101,103,102,106,101,103,105,99,106,75,114,104,95,102,99,112,103,97,112,117,107,107,99,96,97,103,96,109,105,105,103,100,95,109,102,109,92,110,107,110,103,105,106,102,102,111,102,103,100,102,107,94,102,105,100,109,104,66,102,100,99,107,102,104,104,109,108,100,94,91,109,111,102,104,104,108,110,88,97,97,113,106,115,92,112,105,81,105,105,99,90,96,101,106,102,108,100,92,101,99,101,112,109,103,102,102,100,119,95,108,105,100,89,105,140,91,106,111,103,100,114,105,103,98,112,108,133,103,106,94,99,118,107,101,99,101,100,102,107,105,103,123,93,91,96,101,115,111,105,100,120,99,98,101,118,116,99,99,102,102,100,105,100,94,107,95,106,117,89,106,107,102,102,96,96,113,103,105,101,114,102,94,109,113,91,97,110,105,101,93,113,107,106,99,102,101,104,98,95,94,100,102,117,82,117,94,105,78,100,92,97,108,108,105,96,95,108,104,89,107,112,110,102,116,112,97,77,107,103,109,103,108,108,106,123,113,98,107,96,106,107,100,97,107,102,99,96,104,97,106,104,108,101,95,108,94,89,88,98,108,104,94,98,97,115,105,95,99,109,103,105,108,93,97,100,98,79,101,91,103,106,98,95,109,110,117,102,105,99,100,92,118,97,100,94,113,105,99,112,95,110,105,105,103,96,97,102,108,112,99,97,90,109,110,104,103,98,103,107,97,103,98,99,105,96,96,99,90,98,103,103,109,91,96,95,107,101,105,107,105,98,102,116,116,109,95,94,104,106,97,95,104,93,108,92,106,100,90,79,99,105,64,95,108,121,98,106,114,109,95,100,98,94,111,97,97,96,106,97,98,105,102,105,89,117,103,101,91,94,109,122,102,104,99,97,102,108,102,98,77,103,101,101,100,102,102,99,104,106,117,94,101,99,111,100,106,122,110,90,106,100,93,106,113,109,109,101,91,113,97,104,112,90,107,105,101,108,109,111,100,120,96,112,96,132,110,95,120,100,102,104,101,110,99,110,99,120,101,99,106,109,87,96,96,97,105,93,101,96,96,111,92,103,87,96,98,86,96,110,108,98,93,93,113,106,95,116,98,96,91,96,101,96,104,109,102,90,100,97,118,98,120,105,100,95,108,101,94,98,103,99,107,108,108,104,108,110,97,104,106,104,99,106,99,90,107,112,106,103,112,99,95,106,99,99,101,110,89,84,108,107,102,106,88,108,106,99,85,88,105,104,105,91,95,90,97,110,101,102,112,115,90,101,102,88,91,102,95,126,109,86,94,100,99,105,96, +534.78766,101,92,112,101,105,116,111,99,107,105,78,99,101,91,98,91,103,102,99,89,99,101,102,99,109,93,98,107,95,103,88,102,106,91,113,100,106,102,101,118,103,82,103,100,104,112,97,105,105,105,103,111,104,105,114,98,99,113,119,88,107,111,98,89,109,112,103,109,103,94,110,109,96,113,102,111,87,117,107,96,99,116,103,100,102,101,91,110,103,131,109,113,105,101,94,99,119,106,116,83,109,106,104,104,93,103,129,88,92,98,99,103,92,99,85,106,107,99,96,92,102,99,123,112,101,117,121,99,100,112,102,88,107,105,110,106,111,99,111,102,107,101,101,101,95,100,82,99,95,107,104,99,100,94,102,95,100,108,116,96,101,101,108,108,105,108,98,105,109,107,114,107,96,84,120,88,108,98,105,94,110,113,97,110,112,105,104,88,103,95,92,97,97,108,100,94,95,87,113,114,108,108,104,99,104,98,93,117,99,101,128,126,76,111,108,107,104,106,97,105,108,117,105,101,104,108,107,99,115,107,112,113,105,123,95,109,104,117,112,101,103,103,110,105,94,101,96,112,121,110,97,107,100,101,106,108,93,105,107,109,113,110,105,104,109,107,109,105,106,105,100,95,119,107,107,106,98,111,100,80,107,99,104,103,105,111,95,125,105,112,106,116,109,114,110,86,123,105,126,116,97,93,118,112,103,118,108,106,108,112,100,111,105,113,113,106,103,114,111,100,117,119,119,95,91,99,88,116,108,119,96,110,95,104,109,105,93,99,99,101,100,113,101,96,96,122,98,114,106,97,102,111,104,110,101,104,85,111,105,101,101,103,94,111,96,106,104,115,106,108,105,112,95,106,111,104,110,103,96,101,112,107,97,103,84,108,104,89,97,106,110,72,101,102,101,95,100,108,97,119,95,102,99,101,99,99,107,100,104,106,108,96,100,95,103,115,99,97,99,112,99,101,95,93,91,95,98,105,99,108,106,100,104,106,106,101,95,126,105,96,103,95,88,98,104,110,99,93,99,102,106,100,104,93,115,106,103,114,102,95,95,107,107,106,114,106,119,110,111,99,115,119,105,99,95,100,105,108,103,104,106,112,115,113,119,122,111,99,95,104,103,108,109,110,101,105,115,100,104,105,115,109,113,112,100,104,97,100,109,98,111,93,103,102,94,107,98,106,108,102,104,104,106,112,112,107,108,103,109,102,103,98,103,106,105,104,116,93,105,109,99,116,104,110,118,87,103,118,118,108,104,117,111,110,113,103,104,113,94,112,104,105,95,101,115,100,119,106,94,107,105,109,99,104,106,120,99,103,115,105,111,108,111,106,99,100,114,103,102,105,104,109,97,110,107,104,105,105,105,108,99,110,119,111,96,113,103,99,112,121,106,106,118,96,104,110,101,95,99,102,97,104,109,102,116,106,91,99,111,100,95,116,107,104,95,111,103,101,109,103,96,121,97,106,95,102,95,102,120,110,99,108,99,114,95,107,105,107,95,107,103,111,107,108,111,109,107,104,120,94,103,118,112,106,101,105,109,98,105,101,114,108,110,95,88,100,103,102,93,87,106,98,104,111,97,106,105,99,99,99,108,99,107,97,128,95,102,103,104,108,109,117,95,110,106,107,107,107,94,98,102,120,97,107,101,99,107,95,109,111,106,111,111,107,106,110,100,95,107,104,113,92,103,96,115,104,100,96,122,103,105,107,106,99,110,100,102,109,105,107,95,125,94,106,99,87,101,103,90,94,112,95,102,109,99,102,98,112,106,102,100,109,111,108,105,88,99,115,110,102,104,103,102,114,109,100,115,98,111,98,102,96,102,115,102,105,108,103,96,99,111,114,113,96,107,99,104,94,81,101,109,98,110,102,117,104,107,106,110,99,106,106,103,110,101,115,110,109,113,119,91,98,94,98,114,106,97,98,101,95,102,87,108,113,101,109,101,100,95,106,101,115,105,104,84,99,106,107,124,107,103,106,104,120,102,100,102,103,108,92,104,98,105,97,103,106,97,127,107,98,111,96,112,107,96,94,97,98,107,112,109,106,115,106,104,104,107,101,97,104,116,107,89,109,67,95,93,108,99,105,114,94,119,94,108,88,105,106,108,95,102,103,104,107,104,100,95,102,117,112,110,104,112,106,117,109,105,114,101,107,102,100,107,92,113,95,106,100,98,113,114,105,115,111,103,103,103,102,108,116,106,97,120,105,95,102,101,92,90,104,91,103,106,101,110,103,112,103,103,102,105,98,76,96,94,117,101,109,97,99,104,101,99,114,111,105,96,91,101,118,92,101,97,105,95,100,105,100,104,112,102,105,101,117,100,108,116,102,100,109,111,105,111,93,99,107,111,110,80,105,99,122,104,105,124,106,114,111,107,99,99,112,111,108,99,106,115,104,100,100,98,103,113,101,100,93,105,109,107,112,111,107,108,107,116,101,104,111,95,109,109,104,98,98,109,106,109,105,106,108,95,102,86,105,105,91,89,88,112,112,109,91,109,98,112,95,100,94,98,102,113,108,102,105,106,107,112,116,94,106,115,115,99,110,98,105,94,116,88,112,101,111,112,105,96,101,109,104,91,94,100,94,101,94,119,100,105,110,110,101,115,99,118,110,104,94,94,102,102,100,106,101,92,99,104,123,101,112,108,99,87,102,107,101,113,107,108,99,103,92,96,108,99,106,109,103,110,101,100,105,100,104,106,106,105,103,108,93,109,107,100,112,102,104,100,98,121,103,112,110,102,108,102,104,104,105,96,109,108,97,110,101,90,102,92,87,104,118,101,112,100,110,99,100,92,105,103,111,97,82,102,97,106,101,109,107,94,102,101,114,101,107,111,113,111,98,106,104,101,97,96,108,102,115,107,89,105,104,99,117,90,106,99,106,98,99,103,87,107,104,97,100,112,112,92,100,97,96,105,97,114,108,96,105,104,100,105,95,87,97,91,103,92,108,109,99,104,103,105,102,109,106,98,95,112,110,99,98,102,94,101,102,99,113,103,96,110,103,108,105,105,99,91,134,95,98,103,111,105,79,97,92,107,105,100,108,109,88,102,103,106,101,94,111,104,99,107,95,105,96,104,106,105,110,107,97,102,85,102,98,107,108,109,123,103,100,106,109,93,107,105,91,100,102,104,99,113,93,101,96,101,93,108,106,102,110,115,106,96,107,98,92,105,110,85,105,103,108,114,97,105,104,111,108,93,91,117,99,94,100,107,99,96,90,107,100,108,94,104,112,106,103,99,109,111,108,103,106,102,109,107,109,112,103,102,111,93,103,101,113,92,113,94,101,96,95,96,105,109,103,105,107,109,101,102,109,104,79,107,100,91,110,107,88,106,117,100,105,108,100,107,92,105,108,103,103,111,103,108,99,110,102,96,114,124,98,89,100,101,109,86,102,101,108,100,100,95,97,96,103,91,102,103,105,108,110,102,105,112,95,109,101,103,100,106,102,107,111,109,87,104,113,95,105,100,88,100,101,101,113,106,104,100,99,106,104,102,105,94,93,107,98,110,106,104,106,107,99,95,101,98,108,105,105,88,103,111,100,99,100,99,97,96,103,106,107,110,98,101,102,105,91,106,115,112,102,99,107,98,115,103,104,112,97,107,104,99,103,109,101,99,102,110,102,94,89,107,93,105,104,104,99,97,103,113,96,99,96,94,101,104,102,102,96,102,108,107,107,103,94,101,97,110,116,96,107,100,106,96,98,99,104,101,106,109,91,90,104,108,115,94,101,102,97,117,98,96,108,108,104,125,106,105,119,96,100,110,99,104,105,87,89,100,112,98,105,98,102,94,98,98,96,111,102,98,105,100,102,96,106,102,101,103,104,98,107,120,98,109,107,98,104,104,97,101,108,104,110,93,99,102,99,110,101,106,108,97,108,105,91,96,96,111,109,103,107,103,118,113,97,115,109,114,105,102,108,108,100,103,101,104,116,96,106,106,90,96,103,101,97,93,106,105,93,91,92,108,103,95,89,108,98,101,107,127,106,99,110,110,112,119,99,95,99,102,100,125,111,101,104,109,100,99,98,94,99,104,104,106,91,103,103,104,104,95,120,104,99,93,105,107,112,111,101,103,104,101,110,104,98,107,104,101,109,100,117,101,104,100,113,104,107,120,105,116,106,101,117,104,110,103,95,96,112,102,96,96,110,95,94,111,107,94,112,102,92,108,106,100,109,108,88,100,108,101,91,99,107,103,100,98,92,105,95,95,100,103,97,100,105,102,119,98,107,102,109,117,101,101,110,104,90,106,109,100,114,99,92,95,105,89,102,108,108,101,101,98,102,102,108,89,98,130,93,104,101,104,105,106,105,116,96,98,91,113,102,106,97,109,103,98,108,108,125,88,102,102,106,108,113,92,109,101,101,110,102,107,113,103,101,97,103,110,102,102,113,100,97,90,104,106,112,92,100,109,106,99,117,99,104,99,109,112,108,97,101,102,100,95,104,118,104,109,100,95,99,97,99,87,111,96,96,102,124,111,113,109,101,103,104,103,106,102,76,102,80,106,102,101,104,99,97,92,102,100,101,110,97,103,106,104,95,107,84,107,101,108,96,95,99,91,101,102,117,114,101,103,94,100,103,101,100,97,88,95,109,104,103,102,94,107,101,113,94,100,91,108,104,102,101,113,97,105,93,94,113,106,85,105,98,95,102,98,113,102,80,112,97,114,102,116,111,122,87,102,91,91,96,77,114,98,101,96,109,100,107,93,104,111,99,105,98,96,99,108,113,91,101,93,109,108,127,108,104,106,103,107,103,101,108,104,101,117,102,94,91,95,103,109,83,107,92,95,106,120,102,108,92,102,115,102,102,86,87,88,117,93,107,99,85,111,94,94,101,104,102,109,99,105,101,98,89,98,114,107,113,110,117,96,106, +534.92847,101,100,86,117,97,110,104,98,100,106,104,113,114,97,96,99,100,103,101,109,124,111,102,112,112,110,104,107,107,97,104,103,100,94,103,104,107,100,103,112,115,110,99,109,113,91,109,101,94,95,103,103,113,121,108,89,98,97,117,99,104,110,106,100,108,122,93,118,103,101,102,111,102,99,101,99,114,103,101,105,84,102,111,97,96,90,100,111,98,101,107,97,103,110,102,108,95,103,97,104,105,109,109,106,65,87,106,98,115,94,104,107,107,107,108,112,99,104,114,111,98,103,106,107,101,89,103,100,96,113,106,105,104,107,109,96,102,107,101,103,102,122,103,112,107,85,122,112,101,103,104,101,119,94,105,105,96,101,117,98,94,113,101,109,99,102,93,108,105,99,105,107,107,104,106,109,120,115,102,88,96,97,113,102,103,104,103,98,96,99,109,98,104,109,95,108,104,101,107,96,127,96,103,100,103,119,94,115,108,100,103,109,103,110,111,101,100,107,90,101,101,119,98,105,105,105,121,103,102,100,96,110,121,116,105,107,106,97,100,103,104,106,116,102,96,103,116,98,102,110,102,115,100,103,102,100,103,109,109,112,98,92,108,95,92,107,107,108,107,107,107,113,109,102,99,105,103,109,98,108,108,106,108,98,108,111,94,108,98,102,91,110,117,105,106,108,113,110,100,117,102,108,106,110,98,103,102,100,109,110,92,124,105,106,101,100,99,95,109,116,95,100,117,114,101,105,109,101,107,111,101,97,113,110,108,93,100,97,101,98,113,102,99,102,104,102,107,109,108,99,112,106,96,108,100,101,106,103,120,114,98,102,98,107,98,102,123,103,107,100,112,111,109,100,100,109,99,109,103,104,102,103,108,97,92,112,102,117,93,101,99,112,101,115,108,107,92,103,108,111,102,108,103,100,110,96,100,107,100,97,103,99,99,112,95,99,104,96,109,105,112,102,114,108,110,87,101,101,103,101,100,109,106,104,91,113,97,108,97,87,112,111,107,114,99,94,99,101,110,110,100,107,100,117,109,111,99,105,109,96,104,103,105,114,117,107,110,105,112,112,106,111,111,98,111,103,112,116,91,98,106,107,115,93,101,93,105,109,106,90,103,108,110,99,100,96,98,108,101,104,116,99,107,114,104,115,107,104,111,106,112,103,98,95,116,108,94,110,112,106,100,111,113,112,109,96,112,100,103,99,97,114,101,99,105,106,110,100,103,80,90,95,106,106,108,100,110,104,118,96,117,111,112,112,117,100,101,107,101,100,96,104,91,100,110,109,113,111,108,121,105,102,112,111,105,105,96,84,113,112,98,104,103,93,94,110,116,105,106,109,114,114,107,105,102,109,112,113,116,106,102,109,100,107,108,100,98,96,90,109,112,111,113,101,113,109,102,100,114,109,94,102,118,117,109,94,111,102,96,99,111,116,101,121,101,107,108,106,99,117,102,111,114,109,105,94,92,98,105,106,98,100,120,121,99,106,108,103,108,108,110,114,101,113,104,111,107,91,113,102,113,92,102,109,97,99,91,97,105,107,91,116,117,104,110,100,102,107,94,101,90,70,102,112,120,101,115,106,113,92,109,99,106,107,108,96,98,108,99,101,97,112,102,111,98,88,101,103,106,110,108,106,117,106,93,105,102,105,105,108,100,107,104,115,98,96,114,104,103,106,106,96,115,107,110,97,103,104,102,107,115,101,87,98,120,123,113,103,120,102,108,105,95,116,101,109,108,105,105,94,120,105,111,112,97,99,97,98,98,99,104,111,112,106,104,116,108,88,116,104,95,96,106,118,112,104,95,95,104,100,125,101,97,108,93,81,114,99,105,103,114,102,110,113,99,95,115,114,99,110,103,111,103,106,103,105,106,94,95,104,106,102,107,112,99,111,108,91,103,86,106,109,111,100,109,107,96,93,114,96,105,100,109,146,102,105,105,101,99,99,98,108,104,111,103,104,94,102,100,107,92,115,100,111,98,108,117,101,101,101,109,105,104,100,112,108,97,117,101,107,105,108,102,115,99,95,102,103,99,107,115,108,113,92,101,93,97,99,97,109,110,102,108,100,101,110,109,109,112,92,112,105,94,101,108,109,98,101,95,93,109,112,110,113,103,96,102,90,105,107,102,116,104,117,117,110,121,103,98,107,104,103,94,98,112,102,107,101,110,104,104,120,102,97,100,94,106,102,103,99,91,112,114,99,108,105,105,92,108,105,106,104,99,99,98,106,100,123,110,110,92,112,108,107,92,102,70,112,117,104,98,112,106,100,108,110,99,99,100,106,109,114,107,112,109,105,88,106,108,113,114,104,101,113,126,99,106,102,107,108,107,105,110,108,109,117,114,115,103,107,93,96,98,100,110,108,97,113,101,109,112,108,100,94,77,95,106,95,104,121,98,110,107,103,104,107,97,109,74,105,99,120,102,105,103,102,93,100,103,95,109,105,104,107,111,100,112,109,112,118,90,97,116,98,102,101,113,82,98,106,106,102,112,113,121,107,98,103,121,97,99,108,103,89,112,96,95,98,104,112,95,110,107,121,111,108,119,111,98,102,99,116,109,108,100,114,101,107,114,97,110,109,92,107,103,108,99,106,100,109,108,93,104,98,113,103,108,103,102,110,104,97,114,96,101,116,102,107,113,102,98,111,116,102,102,105,94,102,110,112,109,102,103,137,108,109,107,107,104,109,109,108,116,112,99,115,98,101,107,117,104,104,109,107,116,97,112,107,116,106,117,99,78,111,102,122,111,95,103,115,103,106,106,103,101,114,98,104,99,94,99,104,104,125,106,102,106,110,111,116,100,109,101,105,114,103,95,103,109,119,116,103,114,103,103,109,108,122,103,114,111,104,99,112,109,116,97,101,101,96,115,122,99,111,99,106,102,87,109,108,78,93,113,99,107,95,104,108,115,99,94,104,96,104,100,100,89,112,119,102,95,103,95,104,97,92,111,117,104,96,99,97,107,98,118,119,110,92,106,96,103,116,112,106,92,123,113,109,101,106,108,96,105,112,109,79,98,107,117,113,108,107,110,93,104,91,105,98,115,108,111,111,104,95,95,102,108,109,125,104,103,123,113,106,124,98,99,110,100,101,105,93,114,115,108,101,105,100,96,113,109,100,102,125,109,108,100,110,103,107,97,96,100,100,107,111,104,107,106,120,118,109,96,110,107,98,100,115,117,106,121,110,101,124,116,106,101,104,108,116,110,107,108,107,106,100,105,108,115,103,108,105,108,108,110,106,89,98,94,99,94,95,112,98,111,106,112,107,105,117,105,83,113,113,96,109,119,112,90,94,107,88,103,132,100,104,101,98,113,101,103,108,94,93,107,108,88,132,117,105,102,105,104,112,103,115,99,99,94,104,121,114,85,101,82,111,99,101,101,106,90,109,105,104,98,98,98,101,109,117,113,99,102,109,101,112,102,109,98,105,115,113,112,115,101,103,113,113,110,99,108,113,96,100,114,98,106,93,105,108,108,105,100,121,107,92,87,104,99,100,123,98,103,78,111,108,102,115,105,119,116,104,106,113,111,105,107,101,108,118,115,98,105,121,71,107,107,100,116,107,105,119,96,112,107,112,109,99,100,103,95,104,103,100,97,104,102,104,117,109,105,90,108,107,111,93,89,106,112,121,107,101,104,109,110,98,98,120,115,116,83,115,97,106,111,100,109,97,101,131,101,96,107,106,111,105,105,117,105,95,112,111,94,100,100,81,117,93,113,110,118,94,77,94,102,100,113,103,96,110,109,111,106,117,98,113,101,115,117,104,117,112,102,103,96,118,97,93,112,102,124,101,118,109,115,104,107,104,105,94,99,100,108,96,100,95,117,93,98,109,121,100,93,109,90,104,117,106,102,99,106,105,101,113,113,96,101,112,96,110,78,111,113,104,97,104,100,102,107,108,107,95,107,104,101,109,109,119,113,108,107,115,101,94,99,101,108,111,107,107,101,108,105,111,105,105,111,102,108,106,102,113,95,94,110,104,105,94,109,108,105,99,102,104,112,118,110,94,108,112,92,98,101,105,114,113,101,113,112,87,101,113,117,94,116,110,109,117,98,104,97,110,106,111,112,109,113,105,85,107,99,95,120,101,106,95,109,112,104,110,112,103,106,111,104,108,114,104,107,104,123,106,104,110,111,105,112,106,117,96,113,116,102,114,94,98,99,107,110,102,110,105,97,95,111,96,106,107,103,104,101,106,98,111,110,95,101,102,97,98,111,107,102,104,94,105,102,104,101,113,102,113,112,102,114,113,109,100,106,104,96,100,120,124,111,110,104,109,104,106,105,103,112,123,109,111,91,91,106,79,113,102,101,97,105,110,110,116,97,94,112,102,102,97,103,113,104,105,113,105,97,111,108,107,107,103,103,120,98,102,103,97,105,89,88,108,98,107,91,111,112,102,105,96,106,104,101,113,95,108,107,99,103,112,109,92,91,101,109,102,109,113,103,132,100,121,106,106,95,99,101,114,104,107,102,100,116,125,90,105,90,98,102,97,117,125,98,67,107,102,104,103,98,104,93,104,96,102,93,97,107,110,107,104,107,101,93,97,85,97,99,101,106,105,102,116,111,96,103,98,113,100,104,101,109,95,115,108,85,106,121,101,76,108,113,118,95,105,87,111,98,99,93,108,103,105,116,92,91,104,102,104,110,95,99,99,118,112,102,111,99,95,111,107,107,87,102,104,101,112,90,101,106,97,94,93,111,89,108,92,107,107,92,108,109,106,103,115,88,103,112,100,104,98,90,117,115,101,101,87,107,98,109,98,93,98,100,106,104,110,106,97,121,110,112,115,93,105,98,113,97,101,99,99,101,92,107,93,108,109,110,107,116,87,111,100,87,103,108,103,89,115,95,99,117,108,106,118,89,79, +535.06921,103,97,93,103,88,105,94,104,105,102,101,94,102,112,104,110,97,94,102,106,90,100,97,106,97,103,88,108,103,103,99,110,90,91,106,100,100,88,104,102,84,99,108,101,98,92,103,107,95,109,102,111,100,95,101,100,99,102,95,90,102,101,100,105,107,80,104,113,113,97,102,104,106,111,99,112,113,96,120,101,88,98,101,100,97,109,102,133,105,82,104,97,113,94,102,103,96,85,95,100,102,114,87,99,105,113,102,101,106,97,103,104,98,109,101,99,98,104,98,102,97,118,97,98,111,105,101,86,110,108,103,105,110,99,99,90,95,99,99,105,111,121,113,96,98,104,100,121,103,100,103,106,97,101,95,117,102,100,98,95,94,104,106,112,103,85,104,109,112,105,108,96,98,103,103,90,110,102,97,101,115,96,100,108,95,102,107,93,92,96,96,107,103,102,94,107,103,102,103,104,109,103,106,104,101,98,113,105,116,113,99,90,104,98,106,113,112,110,101,109,94,107,99,100,94,112,109,96,117,101,96,102,101,100,94,115,97,91,100,113,108,88,107,104,102,119,105,109,102,100,101,102,104,115,102,100,98,97,92,112,99,108,109,103,96,102,100,111,100,114,103,107,103,102,108,92,95,94,100,105,100,97,98,104,101,94,93,102,103,100,114,98,105,103,114,102,106,108,141,101,102,100,105,114,102,100,117,113,97,107,97,101,107,115,108,105,100,93,100,91,99,107,117,104,99,99,105,98,108,93,108,98,108,131,136,93,107,101,102,104,121,98,97,105,111,102,105,111,108,102,96,108,106,107,99,102,100,102,102,104,108,107,119,96,106,101,104,101,99,117,110,96,91,103,115,97,102,94,101,101,112,113,99,120,98,115,110,99,100,91,111,108,95,108,103,102,102,110,121,94,97,113,100,116,107,100,104,102,99,88,101,100,96,110,96,100,112,117,112,109,106,92,111,96,103,92,108,92,110,109,103,103,96,121,113,102,101,104,100,107,117,103,106,103,97,101,94,102,90,116,98,99,95,91,104,105,102,81,99,105,106,95,107,102,96,107,104,96,105,103,112,111,103,99,103,117,82,120,101,111,113,118,104,107,97,112,104,102,104,102,113,103,108,112,97,111,100,91,112,110,105,95,94,105,107,110,109,108,117,104,117,103,98,114,112,111,102,116,106,114,106,103,116,104,108,102,107,102,103,99,104,72,110,105,100,105,108,106,105,115,100,98,113,87,106,103,97,116,110,116,106,96,111,101,103,99,104,101,110,104,117,105,102,103,98,100,99,105,102,104,94,78,119,97,106,102,104,109,103,116,96,103,95,105,107,95,97,102,104,106,106,108,101,98,103,112,103,100,107,113,108,105,103,120,95,100,104,108,100,101,103,107,105,99,101,108,108,107,101,109,107,98,110,102,119,105,102,106,105,109,100,96,99,105,75,108,84,98,106,109,103,101,107,91,104,99,93,108,109,106,103,111,91,93,102,113,109,113,96,110,109,109,110,107,112,112,121,102,106,104,106,107,95,96,98,105,106,103,105,98,104,104,98,107,102,113,103,102,105,97,106,104,96,96,89,99,112,111,103,100,112,107,120,115,102,107,110,97,98,98,103,99,100,110,98,107,106,111,115,78,98,110,95,108,111,105,110,106,95,71,104,114,105,104,92,102,112,94,99,112,104,104,101,106,102,108,107,109,93,110,107,97,101,103,112,104,102,96,108,100,106,103,104,96,96,98,89,88,100,94,104,118,102,103,85,105,105,102,109,103,114,113,99,110,100,105,92,100,75,116,105,112,111,112,113,98,97,102,101,111,95,93,96,101,108,105,101,119,120,113,104,102,109,94,109,103,94,123,84,92,106,111,109,102,102,114,98,99,105,103,110,94,104,96,102,98,114,104,105,115,106,109,101,98,87,91,95,98,103,91,96,113,104,114,106,108,112,103,101,121,104,95,97,111,102,105,112,101,102,100,110,121,113,104,105,98,110,100,120,95,116,100,109,99,100,100,100,90,101,101,108,115,102,97,109,98,105,105,110,109,105,104,122,107,99,106,95,100,104,106,103,106,108,99,117,93,94,99,98,101,103,93,125,97,114,122,102,98,107,103,108,109,99,109,95,103,98,106,110,104,118,98,101,105,91,107,104,100,107,110,103,95,108,92,108,90,110,103,106,109,121,105,107,103,113,90,101,96,105,112,94,107,108,103,103,97,106,101,101,105,114,109,98,100,116,103,99,111,110,112,97,103,114,96,99,91,99,115,104,107,102,113,103,102,99,101,104,101,101,106,95,106,114,104,116,108,106,113,103,108,103,101,100,92,86,118,100,103,129,100,102,110,102,118,92,94,100,109,101,115,116,116,96,100,102,95,103,106,98,103,92,107,110,92,109,114,108,110,99,108,105,111,103,106,105,101,105,104,100,96,109,109,96,113,113,100,103,110,100,108,92,98,86,105,109,118,104,123,110,102,98,109,105,112,79,108,109,93,112,106,95,99,99,109,100,114,102,111,102,110,120,113,105,98,110,95,107,99,113,111,111,104,104,100,105,101,96,109,112,105,109,122,107,111,109,107,115,98,101,93,111,104,103,105,113,108,103,113,106,106,115,111,121,93,93,102,113,113,108,105,99,97,113,102,104,104,103,108,101,103,95,105,104,102,104,100,100,98,98,103,106,100,102,75,106,100,103,111,101,97,117,105,94,110,105,99,93,93,93,88,104,101,106,105,98,110,102,117,112,114,99,103,95,107,115,107,108,113,105,102,101,115,106,108,90,123,102,109,107,95,103,102,112,115,102,102,118,114,105,96,97,105,110,94,104,102,113,121,108,108,109,96,117,103,111,89,103,114,98,109,124,103,105,107,102,103,97,94,99,109,90,91,100,109,128,105,104,109,113,116,102,106,95,105,103,107,104,101,98,98,110,114,112,108,86,105,105,114,105,100,96,101,99,113,104,109,107,107,103,108,111,106,96,101,119,111,97,98,106,99,109,98,101,95,109,96,104,98,111,97,103,102,108,103,95,102,105,101,106,105,103,108,109,104,101,100,101,100,95,114,101,101,100,109,106,100,103,100,98,100,119,106,95,98,118,100,108,98,101,94,104,107,94,111,102,96,102,105,103,105,110,94,111,113,95,86,107,110,98,107,106,101,102,108,117,114,112,96,102,106,125,102,107,98,105,98,111,100,104,120,104,99,105,103,100,95,92,107,108,109,111,84,101,111,99,96,108,106,112,101,105,106,112,105,117,108,108,104,98,98,97,98,102,109,107,98,100,96,99,104,100,90,125,99,108,106,110,102,96,80,103,99,108,89,105,103,102,102,102,100,92,99,105,104,114,100,112,105,98,97,102,110,100,103,100,100,82,95,100,105,100,90,104,99,98,88,105,102,114,108,100,114,105,109,105,104,114,95,117,106,109,104,90,110,94,97,98,102,107,100,102,103,111,105,98,109,108,93,103,99,112,100,103,104,99,109,104,108,115,91,99,109,97,107,103,95,95,106,106,102,120,99,107,89,90,108,100,103,95,108,99,102,104,114,103,110,111,92,87,93,109,112,98,110,112,102,107,106,100,99,104,99,117,99,103,101,106,119,103,100,103,99,121,103,106,99,108,101,103,104,93,119,105,103,98,98,94,108,104,105,102,102,99,112,90,109,81,97,96,107,113,120,112,102,103,98,102,110,103,105,104,92,98,104,99,104,103,113,106,102,99,113,98,103,110,99,97,102,113,121,100,105,97,98,105,110,98,92,106,111,98,96,104,106,109,99,97,89,99,105,95,106,105,114,101,117,106,113,106,109,108,96,92,99,105,98,100,101,94,103,109,103,97,118,114,102,106,103,108,107,103,110,89,120,94,107,97,106,105,105,84,105,98,106,109,95,114,111,101,113,108,98,82,95,100,107,108,108,105,99,88,95,117,102,107,110,101,101,100,105,103,102,93,112,101,110,98,98,119,97,99,97,101,102,95,90,99,100,102,104,101,104,100,98,110,96,118,108,97,99,121,113,112,112,103,97,110,100,106,114,99,104,95,96,102,99,103,124,107,94,110,95,115,95,105,113,98,102,103,100,104,124,100,92,116,115,109,83,101,103,103,99,100,98,108,103,106,99,99,103,114,97,92,116,107,105,101,112,107,106,109,109,96,121,116,97,111,110,92,107,99,103,113,103,109,108,111,109,104,111,103,102,100,117,106,98,105,98,95,103,104,103,109,109,108,97,106,105,114,94,96,99,106,105,110,86,92,95,101,101,102,94,94,98,90,106,113,80,98,101,99,104,101,100,98,101,105,101,106,105,116,108,109,83,93,104,103,107,102,104,103,100,112,93,109,103,105,110,116,103,92,110,105,108,101,107,103,106,106,91,99,66,99,114,114,101,109,105,100,92,106,100,100,101,109,101,101,103,103,106,114,96,94,91,102,99,102,110,125,107,107,107,117,99,97,91,92,95,103,114,101,101,91,106,106,109,97,96,109,105,103,99,94,106,103,95,106,100,104,100,87,104,108,98,96,103,103,105,104,107,100,104,100,95,83,111,98,108,101,91,108,114,108,95,103,110,99,94,100,94,101,90,112,100,103,117,99,117,96,102,106,101,106,98,99,109,118,110,115,100,97,106,121,89,105,117,108,95,112,102,91,98,119,109,107,93,88,96,91,94,103,94,106,117,99,107,97,97,103,102,100,107,100,103,101,98,96,103,104,96,91,94,101,95,100,91,99,95,99,99,109,111,101,105,100,102,97,112,96,96,99,109,101,97,108,102,106,99,110,108,94,95,111,102,113,94,101,86,101,105,108,106,96,100,113,94,108,113,102,124,95,104,84,102,97,95,103,106,113,100,98,109,105,98,101,94,100,106,103,105,108,96,103,109,95,95,102,102,105,116, +535.21002,109,106,79,104,93,105,99,90,102,109,102,93,98,108,99,107,102,120,104,92,125,112,98,110,109,115,109,111,112,108,98,100,89,105,107,89,95,107,106,107,111,103,104,107,77,100,112,113,105,104,108,96,85,115,102,99,99,87,105,95,95,110,118,98,102,103,103,113,100,87,94,95,102,95,96,116,105,107,113,96,107,102,109,108,106,101,93,117,113,108,104,104,100,98,102,98,104,120,100,103,100,124,91,103,107,108,106,97,100,101,110,115,96,96,113,95,104,97,99,100,109,99,117,129,107,120,108,121,121,109,91,112,103,112,108,105,103,108,107,96,109,106,108,103,97,107,106,102,87,111,106,99,109,95,88,105,113,100,108,117,110,97,104,109,109,107,108,94,109,93,112,100,101,110,107,100,98,116,103,98,107,108,97,102,109,111,100,113,97,96,104,90,114,100,103,94,106,105,108,113,104,102,100,107,100,104,101,100,107,98,104,104,101,98,104,112,87,104,105,96,92,108,101,101,96,88,112,112,117,117,94,118,116,103,93,109,103,104,105,105,117,109,106,86,95,104,102,99,106,103,104,109,95,131,98,101,108,107,96,89,101,101,98,109,109,107,95,114,104,100,113,96,100,106,123,97,100,113,90,102,95,95,105,98,102,99,103,105,87,94,111,107,99,95,114,114,104,99,99,108,102,103,105,106,98,108,103,114,108,109,98,111,108,107,105,94,100,100,108,106,104,102,109,99,116,99,99,81,112,96,104,104,104,107,107,95,110,108,104,103,105,102,84,101,110,111,120,88,107,100,101,105,109,117,101,109,110,96,119,102,98,109,99,112,102,103,113,116,101,105,105,104,108,106,102,108,116,88,117,116,103,104,99,100,97,105,91,92,103,101,108,87,95,104,118,97,93,104,91,91,103,107,112,98,97,109,105,115,102,112,105,95,115,117,108,96,96,94,105,91,113,99,105,109,103,104,105,101,105,108,106,107,102,106,113,116,84,87,100,108,99,96,119,101,97,111,111,92,98,110,105,109,113,104,108,99,103,104,108,118,103,100,115,107,111,68,111,104,94,107,102,119,100,95,101,108,103,109,105,111,97,107,113,99,107,109,109,112,95,98,113,98,102,107,102,110,106,110,104,105,103,116,95,91,98,108,97,90,104,87,118,109,98,96,115,98,107,110,97,103,107,96,112,107,117,107,102,83,104,93,105,106,111,108,96,106,102,101,113,102,94,100,97,111,117,110,89,103,114,101,96,101,114,94,112,102,119,92,116,109,110,107,104,95,102,101,111,109,101,113,96,94,118,85,112,112,99,90,96,105,98,98,105,96,103,113,110,112,110,105,102,102,112,92,93,96,107,107,110,117,110,112,98,99,94,105,110,101,98,99,103,112,116,112,101,109,102,106,101,104,107,114,102,104,108,91,100,98,102,103,109,98,107,108,95,103,113,101,112,107,110,104,107,103,100,91,110,102,108,103,107,86,103,104,111,99,114,100,113,95,110,103,105,109,99,96,117,100,92,98,113,102,85,104,104,121,100,104,109,105,116,101,92,94,94,110,114,108,91,116,106,106,114,115,118,112,115,91,112,101,105,113,99,120,103,103,102,106,100,108,108,102,106,99,106,106,101,100,113,102,89,106,104,102,103,99,110,109,95,105,103,111,106,101,110,105,74,97,76,106,106,97,101,108,94,112,107,114,113,128,109,108,84,123,114,113,109,100,111,106,107,111,103,95,109,104,114,112,112,106,107,111,105,102,103,132,99,94,105,97,103,105,114,94,95,138,79,110,98,109,116,105,111,102,98,99,109,92,110,98,116,104,108,102,120,90,102,105,99,100,106,98,113,113,109,89,109,105,116,98,104,116,112,106,103,112,106,107,88,106,102,98,108,91,92,107,105,103,101,103,98,88,101,113,107,109,82,96,103,94,107,98,73,118,106,100,100,104,100,96,94,118,106,97,100,107,94,101,109,105,119,104,99,115,91,99,112,104,105,96,105,108,98,110,99,107,93,109,93,112,116,106,99,104,104,104,111,111,107,101,105,114,113,106,104,108,95,123,113,100,103,98,105,118,112,111,101,92,113,78,102,107,102,108,103,120,102,104,105,103,95,102,115,107,118,109,90,94,116,112,107,95,102,105,97,99,109,104,111,108,118,112,102,98,107,94,123,103,91,114,103,106,106,104,111,103,109,106,109,104,87,106,118,108,106,103,108,106,94,92,102,106,100,96,95,109,102,104,114,106,110,107,119,104,102,101,103,114,83,114,118,103,102,93,106,121,115,108,106,113,87,110,101,103,103,100,109,107,94,109,113,110,108,88,98,108,105,103,113,103,105,104,106,111,109,92,102,125,120,144,105,111,94,113,90,106,108,100,109,100,125,102,115,98,99,107,110,107,98,96,113,101,100,102,118,108,91,121,106,112,100,106,94,116,101,110,96,109,108,107,112,120,87,108,100,106,95,111,107,110,109,107,98,116,98,105,94,104,99,102,106,106,121,102,101,116,106,103,112,108,100,118,100,100,119,105,107,118,95,99,100,109,113,102,108,98,97,93,105,105,105,111,101,106,106,109,82,96,100,92,111,96,102,127,111,102,100,102,110,101,142,97,110,113,100,104,106,88,109,104,109,96,113,95,116,111,113,109,100,106,105,104,104,109,106,96,102,106,95,105,108,91,105,94,109,112,112,104,102,119,105,106,115,110,107,121,107,93,101,113,107,106,116,93,106,100,107,120,103,113,105,104,97,115,122,100,109,108,92,101,115,95,105,90,101,98,98,110,96,98,100,101,94,112,111,99,107,114,100,102,102,101,112,105,99,97,104,111,112,95,98,108,95,104,112,100,103,119,92,115,105,110,96,99,104,99,108,108,96,101,104,104,107,116,104,95,103,104,97,115,105,103,113,105,108,107,110,94,108,111,98,103,102,107,106,102,99,102,112,102,122,108,99,105,96,112,108,113,95,98,99,103,113,103,107,113,68,109,117,112,112,103,98,103,102,106,119,105,101,118,98,93,107,106,105,114,97,100,106,113,106,108,99,108,102,95,112,106,102,106,109,106,101,104,122,105,94,100,109,109,99,105,108,113,107,106,104,107,113,108,115,103,118,108,99,111,101,102,102,113,100,106,102,105,104,99,95,110,95,112,99,102,101,98,104,105,113,104,102,115,100,105,113,99,101,94,110,96,100,95,102,104,95,99,99,98,101,110,115,111,106,105,103,100,107,98,101,102,101,115,113,103,121,114,121,98,84,98,98,100,91,99,106,110,112,98,103,104,108,106,100,92,102,98,105,97,109,95,109,97,111,104,101,103,106,99,85,97,97,105,96,95,101,96,74,95,113,108,139,97,95,112,101,106,93,97,115,96,98,107,101,103,91,103,116,85,100,103,103,102,102,104,116,114,95,98,87,95,104,106,105,96,98,111,97,91,98,105,106,108,105,109,106,105,101,112,100,101,111,108,99,109,98,125,100,105,102,99,109,95,102,109,98,102,101,105,99,113,108,99,112,113,96,99,97,98,103,108,88,106,95,102,103,113,105,108,96,101,102,106,112,98,111,106,114,109,105,105,104,97,92,105,99,99,112,98,119,99,109,105,104,109,108,99,107,109,102,90,112,107,93,94,99,100,109,99,107,98,99,101,106,96,95,103,103,90,98,104,112,94,100,106,88,102,108,99,103,96,116,106,107,106,105,99,104,101,113,100,112,99,110,101,94,109,120,105,93,110,109,110,111,102,105,93,101,106,109,128,105,111,101,101,99,97,102,105,108,94,97,99,104,103,109,100,106,96,104,112,107,102,69,111,104,109,101,98,105,110,97,109,92,117,111,95,117,104,100,99,102,109,101,101,111,134,98,102,105,71,109,103,109,93,104,103,94,87,108,95,101,105,104,100,113,102,93,110,113,98,113,98,100,111,104,107,107,104,96,102,106,114,107,101,103,106,108,101,99,97,108,101,108,98,105,105,104,112,101,106,95,102,101,111,100,102,114,103,92,98,101,94,116,105,94,110,117,102,80,91,88,96,94,98,104,105,106,109,97,101,102,99,108,108,101,91,114,117,123,100,82,91,107,98,102,108,111,100,108,104,91,104,97,107,103,107,106,99,108,107,98,107,103,93,98,120,106,94,102,99,104,101,98,106,99,106,113,123,110,103,98,99,116,110,88,100,97,98,101,103,117,113,104,104,104,96,117,101,101,101,100,113,101,101,94,120,102,69,100,113,112,94,104,97,110,106,99,100,102,102,108,89,102,88,110,102,106,93,109,102,106,91,98,98,85,104,105,103,102,100,106,106,100,108,103,109,136,109,115,104,91,103,100,102,103,134,89,96,106,100,111,101,100,94,113,107,100,105,106,103,110,96,107,109,106,86,105,111,112,99,109,103,112,92,107,103,101,106,106,103,100,90,119,102,115,106,99,87,104,100,104,110,116,107,100,110,108,109,112,95,97,102,97,92,115,123,101,82,98,98,92,104,104,110,98,109,128,98,103,102,102,96,102,90,103,100,98,105,106,106,116,99,95,108,94,98,110,103,101,103,108,96,100,114,109,98,119,116,98,104,92,88,101,96,91,96,110,107,108,95,97,106,105,105,113,108,101,104,97,107,91,98,108,104,109,98,100,94,114,89,95,104,95,99,95,98,103,97,98,110,107,95,102,101,125,108,100,104,103,103,101,104,99,104,101,116,92,95,88,102,104,107,106,111,106,89,106,115,100,99,102,105,103,96,100,103,105,107,97,106,110,96,106,90,91,105,103,100,109,118,104,92,108,91,113,105,102,112,98,113,105,103,95,103,101,106,118,94,103,111,114,97,100,109,105,107,92,94,96,104,102,101,115,108,94,100,117,101,91,116,103,80,103,109,104,104,89,117,106,103,108,86, +535.35077,87,128,92,95,93,113,99,99,95,102,99,104,103,107,111,100,86,110,95,112,103,97,110,111,98,100,121,109,113,98,113,125,118,98,101,104,97,102,98,83,89,95,91,112,102,107,100,106,102,95,100,102,117,102,108,101,105,98,102,94,91,88,102,89,106,112,98,124,114,96,115,108,95,98,102,99,97,99,105,78,93,110,94,95,105,95,106,120,111,93,101,104,94,113,95,88,93,99,99,96,92,96,93,97,110,102,102,109,100,95,100,104,103,98,103,94,101,102,105,102,99,95,97,102,101,98,110,92,103,99,92,106,103,116,114,105,105,101,103,107,89,107,102,95,99,92,110,102,108,100,89,101,102,100,99,98,102,94,115,100,100,117,109,84,101,109,81,98,98,93,91,110,95,86,113,103,92,105,108,102,109,112,102,98,96,112,100,96,106,102,104,112,106,94,112,86,99,99,93,113,102,94,105,97,99,118,87,98,111,103,108,104,111,111,111,109,103,101,111,107,109,111,112,109,97,108,113,104,106,99,96,89,107,103,95,92,101,95,96,91,110,98,106,100,91,98,103,67,104,99,107,112,116,95,123,102,114,108,95,96,99,93,93,111,119,101,111,96,113,101,99,100,108,95,95,104,94,113,100,103,113,109,112,100,90,105,102,76,105,98,95,95,112,92,104,91,95,100,98,101,98,107,100,122,106,104,109,111,97,109,113,108,128,83,105,108,110,111,101,93,103,113,108,115,106,107,89,102,118,98,99,106,108,106,106,101,93,92,93,109,93,110,98,105,108,105,93,107,104,105,114,90,105,114,102,103,119,99,105,95,100,101,107,123,96,95,108,107,95,110,114,101,108,101,95,102,92,103,114,98,95,94,94,106,94,106,102,95,130,103,107,110,97,97,102,107,107,117,98,117,114,116,102,98,99,93,93,105,110,96,99,97,104,105,117,97,109,91,110,110,112,94,96,97,104,97,105,108,70,104,91,109,106,95,110,87,102,107,96,120,107,108,104,137,96,92,87,101,110,106,104,104,94,119,98,97,107,119,86,98,97,104,95,106,109,115,104,92,101,102,89,110,117,87,98,107,99,120,107,108,112,119,119,90,97,106,104,93,105,93,98,112,106,111,92,97,105,105,100,104,109,108,100,118,98,120,103,110,98,115,116,103,96,107,117,95,114,91,101,94,103,98,110,97,103,107,110,106,108,102,103,110,74,103,101,104,109,92,100,109,109,103,107,108,105,102,102,91,97,102,103,95,104,103,84,97,113,108,105,99,105,98,106,98,106,97,110,106,114,99,97,106,101,106,103,102,88,99,109,113,107,110,98,104,104,100,110,103,109,105,95,105,96,97,100,114,109,97,109,104,105,99,96,104,105,99,99,104,95,116,100,115,114,99,94,104,101,107,102,91,96,91,106,101,102,95,102,110,104,109,96,108,105,94,114,96,105,106,98,92,110,110,104,102,96,102,100,95,107,103,94,100,97,110,99,114,110,102,98,118,100,116,90,106,92,113,100,96,103,106,102,105,100,101,99,110,96,97,98,98,105,103,95,88,100,113,104,103,88,103,97,115,99,92,111,101,102,111,102,93,100,97,90,105,106,109,114,112,92,99,94,101,101,106,96,91,95,105,108,88,109,105,103,100,104,105,100,108,95,107,104,104,95,106,95,108,108,107,107,105,103,105,111,112,99,100,101,104,99,100,111,96,94,110,113,103,108,103,104,101,84,88,104,94,99,101,95,95,103,103,102,105,103,87,101,98,106,95,104,89,91,99,105,96,105,107,113,104,93,107,106,96,104,111,109,101,91,104,96,118,90,104,93,101,99,106,112,101,101,112,104,104,108,112,119,99,107,102,111,97,103,102,101,112,107,102,108,107,113,106,114,98,99,104,109,101,100,106,112,104,103,114,83,102,105,102,91,100,109,117,101,101,104,110,105,96,107,97,101,96,97,111,95,111,101,114,99,104,98,139,97,98,102,105,99,99,103,112,106,103,105,105,110,109,96,83,95,104,106,98,109,106,117,105,96,98,92,114,103,109,95,118,116,109,114,102,97,104,108,105,125,98,117,109,92,112,90,100,81,99,109,101,114,103,103,95,101,109,106,113,101,101,116,87,101,106,105,97,92,89,98,103,98,107,97,95,113,104,101,115,93,95,106,100,115,106,100,104,105,120,113,122,94,78,104,96,101,110,108,100,94,114,97,105,101,109,99,95,110,117,106,107,100,96,113,105,106,103,99,106,102,102,106,98,107,104,91,113,109,101,102,91,105,99,103,100,110,117,99,90,94,113,98,112,97,107,104,101,106,103,89,109,111,103,116,112,98,111,98,97,103,106,94,101,98,105,89,108,102,104,101,107,114,100,98,107,100,106,115,112,105,97,96,107,96,109,109,115,91,102,107,109,93,96,98,96,80,98,110,102,84,110,107,91,97,94,100,105,97,106,93,103,94,114,106,106,118,108,126,116,101,115,98,104,101,116,101,103,112,108,103,103,112,108,104,102,116,100,104,115,112,111,104,101,108,106,99,107,90,105,99,110,105,91,105,101,100,113,108,101,109,121,120,106,92,111,106,94,108,103,102,92,95,105,108,103,96,97,110,124,95,109,104,107,111,69,100,109,104,105,102,102,107,102,109,109,100,101,113,113,102,104,105,107,102,106,115,108,100,95,107,104,92,104,94,90,103,105,103,101,107,105,103,102,108,102,105,96,101,126,110,102,101,100,108,118,109,105,110,107,115,110,103,106,83,103,88,103,101,107,92,103,95,114,112,111,97,116,106,108,109,105,94,115,99,111,109,95,105,103,96,95,108,102,108,106,92,117,94,118,107,107,106,104,102,102,101,95,109,107,106,113,106,99,87,99,102,112,105,117,117,111,120,103,111,107,95,107,92,109,94,121,108,119,102,96,106,115,107,112,120,103,96,98,116,113,104,105,108,114,113,101,102,101,107,101,106,101,99,100,93,107,99,100,114,109,92,96,112,71,105,113,105,107,104,98,116,98,106,102,102,99,97,112,92,111,88,102,96,108,100,104,94,86,101,97,121,113,106,95,117,112,113,113,94,99,113,117,102,108,97,105,118,103,106,105,94,110,102,108,106,100,109,114,96,103,121,105,106,119,103,112,103,110,110,95,109,105,112,105,104,99,112,102,106,110,102,99,104,96,105,97,109,91,101,106,108,108,92,108,104,101,84,107,106,87,101,108,105,100,111,107,93,87,105,105,103,95,108,102,102,107,107,105,107,105,104,95,100,113,109,103,95,98,109,108,105,112,115,100,105,101,100,108,97,104,101,100,102,102,104,106,103,107,101,101,102,94,105,93,106,110,100,99,97,103,110,101,115,102,99,110,116,100,93,107,105,104,98,104,106,107,95,101,92,101,87,103,113,90,107,115,94,103,98,89,97,110,108,117,101,97,106,123,99,109,107,108,106,105,98,109,106,98,100,103,109,100,87,97,103,108,105,103,110,100,113,104,110,99,103,104,100,100,100,80,105,90,105,93,99,103,103,104,103,101,120,117,102,96,95,108,132,105,112,104,116,108,106,107,105,106,128,109,104,111,112,103,102,92,106,115,100,104,117,99,99,103,92,107,92,110,113,105,93,100,104,102,120,87,106,113,99,110,107,100,91,106,107,108,99,103,107,101,113,108,105,111,110,97,118,98,111,122,103,96,110,114,108,93,103,98,83,102,117,107,97,97,107,94,91,109,106,70,103,106,88,103,114,96,92,103,99,103,116,126,102,100,107,102,100,102,101,102,110,97,112,87,103,107,89,94,112,97,101,98,103,100,98,124,101,99,108,107,108,115,104,100,98,106,104,118,105,109,96,70,117,96,102,109,110,108,106,105,117,104,100,110,89,102,111,98,101,100,108,103,99,108,98,106,104,98,103,104,80,103,95,114,110,97,89,110,111,109,107,114,108,108,111,108,93,109,108,99,97,104,104,111,97,108,105,117,83,91,106,112,107,109,100,103,105,104,95,108,107,94,100,109,104,96,103,107,87,94,109,108,99,101,108,89,111,106,111,101,117,86,106,106,107,100,98,96,97,104,102,104,101,106,106,100,117,85,102,96,108,106,109,111,99,102,108,97,106,100,105,105,105,115,99,95,106,110,99,120,108,103,102,108,96,97,103,77,106,120,96,101,111,89,114,92,108,113,100,119,103,113,105,103,100,111,124,100,96,92,110,99,109,110,99,108,118,97,103,101,99,88,99,99,104,104,95,108,97,100,96,103,97,98,111,95,105,96,102,103,106,112,105,109,97,107,101,94,109,105,104,99,95,93,118,110,103,108,107,108,113,98,109,99,106,103,98,95,102,96,112,87,99,113,113,99,102,115,92,112,100,101,115,101,109,99,103,99,93,110,99,103,109,109,94,96,95,91,102,103,95,100,103,98,109,105,105,105,91,96,95,101,103,104,106,112,98,90,107,115,106,98,109,104,112,103,98,95,91,98,104,105,105,106,91,105,107,107,85,96,105,90,109,98,108,97,95,94,105,93,97,96,103,102,98,110,90,97,97,97,102,101,102,105,126,101,97,104,113,108,107,106,117,97,108,83,102,95,105,105,102,113,99,100,100,95,91,107,106,106,108,120,97,105,90,109,75,105,113,94,101,98,108,91,99,113,107,108,99,103,101,117,92,98,110,109,100,105,101,108,102,103,113,104,103,122,104,109,103,95,95,114,87,104,106,101,94,115,104,107,108,107,105,101,99,102,88,107,94,98,102,115,96,97,108,101,103,99,113,99,109,105,103,109,116,84,105,120,108,115,99,99,101,102,96,97,106,106,118,103,102,95,108,114,101,102,106,105,101,106,91,111,99,96,98,94,103,98,112,87,109,101,106,107,86,102,112,112,115,105,109,98,93,84,99,104, +535.49158,117,107,91,101,85,101,102,109,97,116,95,107,96,95,105,97,107,106,96,99,111,67,104,95,112,107,102,112,108,107,110,113,112,103,111,104,116,109,116,96,98,99,109,101,102,108,105,102,99,115,109,125,106,100,103,116,106,105,112,91,95,106,106,95,104,109,102,109,108,114,117,97,101,104,103,116,97,76,107,96,95,128,97,108,108,98,107,111,117,95,100,101,65,92,105,116,101,100,110,100,108,107,110,111,104,95,97,112,110,101,100,97,106,105,102,115,108,107,104,107,113,78,103,107,112,107,101,96,110,102,104,96,101,104,111,105,116,107,111,110,87,107,96,99,104,107,92,106,81,100,108,118,102,106,105,102,103,106,110,130,104,102,102,95,113,97,101,103,117,113,100,99,105,108,112,102,107,103,102,70,90,92,102,117,106,106,80,88,99,110,99,111,106,106,100,107,113,116,102,103,98,99,101,113,97,103,105,104,107,105,108,91,95,107,109,86,101,109,89,99,110,90,108,104,106,99,112,121,107,103,102,105,111,105,108,98,105,101,121,106,104,100,110,114,104,106,92,93,100,110,107,101,99,105,102,119,114,98,101,110,101,112,107,118,89,104,103,111,107,98,97,97,109,103,114,95,101,107,105,113,108,94,93,114,102,94,118,113,104,106,108,103,110,112,112,102,101,108,106,101,105,106,105,105,98,110,109,113,107,113,103,113,92,105,106,113,98,96,108,104,107,100,105,105,99,121,99,98,108,108,112,110,107,120,113,114,104,104,102,99,106,106,104,87,108,114,112,118,107,97,103,120,104,104,72,98,135,91,113,109,105,102,98,97,105,100,93,118,117,109,111,95,113,98,101,94,117,100,130,109,103,104,102,107,118,100,75,102,109,103,108,106,110,108,97,110,118,119,90,103,114,101,103,97,98,104,99,108,103,104,95,105,106,103,99,102,102,100,109,104,110,95,108,104,99,108,107,110,106,108,108,85,103,105,114,104,103,109,96,95,119,103,110,115,95,102,104,100,99,106,113,96,104,112,101,107,111,102,108,105,108,108,111,119,105,105,110,99,104,95,108,119,104,107,97,116,115,117,94,98,93,113,104,107,91,86,110,90,110,97,101,109,100,127,111,103,95,110,112,102,112,103,110,105,94,113,113,104,106,123,103,98,101,117,101,109,112,105,104,107,107,114,113,114,108,101,116,105,104,104,97,97,108,114,92,99,103,97,111,98,99,115,105,115,110,96,111,109,113,111,99,115,102,100,105,102,110,91,108,99,111,122,103,110,111,98,104,106,96,98,98,99,101,97,104,107,108,101,113,113,119,110,109,116,104,108,117,99,124,112,104,103,102,112,110,116,99,98,107,117,103,117,105,93,104,115,107,105,111,97,104,102,99,100,98,75,110,101,103,103,112,109,106,122,102,105,100,109,104,106,108,110,118,111,104,112,107,96,104,106,120,109,102,104,92,100,96,95,113,113,106,104,112,107,105,110,118,106,108,96,106,103,112,94,103,116,103,105,96,111,121,114,109,100,106,110,108,106,106,103,99,97,99,91,106,109,94,95,102,113,114,101,123,115,106,103,104,103,112,97,99,100,78,116,102,114,104,115,96,100,103,106,85,107,115,103,110,98,108,104,94,99,119,117,98,103,99,107,113,103,107,101,90,99,99,105,110,84,108,98,103,89,102,105,92,106,107,99,118,110,89,101,105,106,97,104,107,104,102,105,111,97,112,102,96,82,102,97,102,110,109,94,107,103,102,103,98,102,105,92,70,108,118,110,109,113,118,106,95,102,106,108,75,113,119,110,80,112,105,103,106,97,86,108,115,111,110,100,105,103,115,104,113,95,118,93,101,107,111,90,87,101,108,103,106,108,109,104,141,99,124,98,101,98,105,113,104,115,107,106,93,111,99,104,116,102,108,100,102,93,98,108,99,105,103,90,106,124,90,118,100,101,107,96,102,82,98,122,111,114,104,102,110,95,111,84,121,95,102,112,101,98,107,105,103,116,112,118,102,100,108,99,106,101,103,91,102,109,100,111,101,104,99,102,110,105,107,104,99,102,103,114,102,111,104,108,97,121,97,111,93,104,112,105,97,101,104,99,102,101,91,100,114,104,108,100,99,107,114,108,102,111,100,104,100,106,118,117,105,113,110,107,110,96,108,96,117,109,91,108,96,112,93,100,108,106,104,106,95,109,106,99,97,111,124,90,113,110,104,97,97,107,108,109,101,98,102,95,94,106,106,95,80,106,104,113,105,97,102,111,100,107,104,110,103,109,98,108,94,104,115,92,95,99,98,106,102,96,102,100,101,103,101,106,119,114,101,102,101,101,116,98,107,101,105,94,100,103,85,107,99,101,104,121,108,107,89,105,99,109,109,115,110,101,101,103,108,100,106,94,95,100,99,102,99,80,110,98,133,112,95,110,105,101,109,116,110,97,95,118,110,98,114,122,109,102,108,108,104,114,106,101,108,107,106,102,104,107,111,116,111,96,107,114,99,114,98,117,107,113,121,115,111,108,107,102,100,103,93,94,113,117,97,118,94,87,106,106,107,97,112,110,106,103,117,106,99,103,95,98,101,103,94,109,112,102,100,106,106,105,108,100,115,94,113,101,117,102,99,102,113,79,110,94,105,106,102,81,114,101,106,106,104,99,102,96,98,116,109,113,104,101,97,105,117,102,122,106,103,108,110,114,116,112,96,110,100,109,101,113,92,111,101,114,105,113,103,108,96,90,101,107,98,107,114,109,109,113,105,104,107,107,106,106,99,116,97,101,106,105,109,114,96,107,105,107,113,100,124,111,114,106,110,106,107,108,105,113,112,105,113,111,106,103,97,105,95,113,112,118,113,119,109,99,98,98,110,102,102,109,97,99,125,105,105,83,104,109,90,107,109,108,98,88,109,110,109,105,103,104,100,119,103,99,106,104,109,100,99,120,110,104,110,102,92,101,109,98,106,99,119,107,103,99,111,99,103,108,110,108,94,101,108,102,101,111,100,106,102,109,102,96,92,103,120,93,108,92,95,108,112,105,106,104,108,100,111,97,110,107,101,98,88,109,102,101,110,106,98,104,119,99,113,104,107,95,96,110,98,99,100,100,111,116,106,109,109,98,100,105,99,96,102,110,111,105,111,94,105,96,105,109,94,112,113,102,104,113,101,110,108,103,105,110,110,100,109,101,109,100,108,99,107,115,115,92,87,93,102,108,106,106,108,110,101,108,115,105,112,109,106,105,103,108,106,110,97,101,116,109,108,107,107,101,102,109,113,104,105,108,101,91,95,96,104,103,104,99,100,99,114,96,109,107,106,98,102,97,108,93,101,107,113,103,105,98,104,107,94,122,117,102,108,98,105,120,100,99,95,98,109,109,111,98,103,98,96,100,102,108,100,101,106,108,78,93,109,96,107,100,100,105,103,95,99,106,109,98,105,95,114,107,110,101,104,110,106,106,112,108,107,110,102,94,98,108,103,82,103,102,109,101,89,110,102,116,104,106,95,105,89,109,103,105,99,106,100,104,74,110,87,99,116,98,111,116,102,114,94,124,106,92,93,104,103,108,99,109,102,99,90,103,102,97,105,104,105,108,107,98,115,105,110,105,108,99,125,113,86,109,98,101,110,110,90,99,120,110,96,105,115,112,101,110,126,107,114,109,94,109,109,110,101,113,90,90,116,103,113,100,109,103,103,95,104,101,105,90,106,104,91,105,104,111,110,100,112,90,111,107,86,95,101,128,100,105,109,110,109,99,111,99,100,103,113,102,98,96,102,109,100,112,102,109,106,102,106,113,103,100,106,110,107,100,99,109,117,101,105,110,95,106,104,99,94,110,102,101,99,102,107,104,102,93,110,109,101,125,93,112,107,99,110,103,102,96,119,111,105,97,99,102,101,112,119,101,92,96,98,99,99,115,102,93,104,103,105,101,102,95,100,95,100,117,140,119,108,109,95,96,79,106,96,97,102,112,106,106,99,101,110,103,87,117,103,101,108,100,106,89,119,98,100,94,108,102,92,108,101,103,113,115,97,108,109,104,91,99,108,101,96,107,97,108,100,99,95,102,102,111,110,103,106,102,104,113,116,98,109,103,104,104,105,108,107,120,102,97,102,113,114,103,96,106,97,105,93,101,96,87,99,110,109,89,107,102,101,106,94,103,105,99,112,103,100,106,98,104,111,99,114,95,95,105,103,102,107,99,92,104,98,101,111,131,92,102,106,115,95,93,89,77,100,104,102,106,93,106,112,107,94,94,104,109,94,98,112,109,99,116,101,104,106,102,117,95,83,89,113,105,101,105,114,101,115,114,98,106,102,92,107,100,104,112,100,97,110,104,102,99,96,109,101,106,99,95,103,102,100,107,98,111,113,103,109,103,103,112,101,109,113,100,98,100,99,109,98,104,89,99,108,100,100,95,95,129,96,101,96,109,109,106,102,113,102,102,99,97,105,119,96,100,101,114,116,95,112,102,99,105,106,94,97,113,99,103,106,115,105,109,94,94,98,112,96,111,88,106,62,94,106,120,102,95,109,95,104,108,117,102,116,124,106,99,103,99,105,107,95,106,102,96,102,112,93,112,111,98,101,92,101,118,103,113,110,103,87,101,89,104,97,106,110,96,103,90,103,100,101,104,94,101,96,93,94,103,105,109,105,102,94,104,91,110,101,106,108,97,115,99,108,115,105,102,107,103,88,99,102,106,104,106,99,116,97,113,98,95,113,105,119,95,104,106,98,101,104,106,98,109,88,120,100,100,103,101,103,100,99,93,100,96,112,103,98,123,91,104,103,100,111,98,104,115,112,103,112,98,99,92,111,97,104,106,106,103,99,102,97,112,109,96,105,102,92,95,95,102,109,94,87,94,104,90,113,98,124,110,113,88, +535.63232,94,110,106,93,96,95,123,81,104,110,101,106,100,84,128,94,111,110,100,102,104,112,102,101,98,98,105,112,101,105,109,99,66,93,85,97,104,98,106,112,105,116,101,99,102,111,102,110,103,100,133,101,103,102,106,108,104,93,95,89,105,105,98,88,106,118,94,98,98,87,108,110,99,114,101,103,96,95,91,110,103,118,107,112,105,96,103,102,113,107,88,106,103,108,108,97,99,96,100,103,99,106,104,111,107,103,95,104,103,113,121,98,100,101,95,111,100,102,108,125,101,112,108,103,96,99,99,97,116,107,91,98,96,91,97,107,113,116,92,103,100,97,98,105,95,102,110,102,98,105,112,97,106,93,105,98,99,98,115,95,93,96,108,117,100,100,112,77,113,100,104,103,104,106,101,113,109,96,105,94,108,99,82,109,110,113,95,85,99,98,98,117,106,102,109,99,108,100,104,96,94,99,99,96,104,113,121,114,101,125,107,106,112,100,112,113,96,107,97,100,104,107,105,109,100,102,116,102,102,101,99,104,103,92,112,105,88,105,103,103,86,110,114,103,108,94,107,115,95,96,105,106,98,100,111,103,102,103,107,99,84,104,99,83,105,104,108,106,104,109,96,102,98,108,104,107,111,115,106,96,100,84,110,119,106,101,102,106,105,86,107,104,107,109,109,111,108,101,101,83,105,111,102,122,106,103,100,108,92,103,104,110,104,100,124,110,94,108,97,105,125,104,106,112,97,105,96,98,106,102,100,103,110,98,113,106,101,105,100,107,101,110,90,104,101,96,100,104,119,103,98,114,108,106,98,95,104,104,100,101,119,105,99,109,106,108,109,87,100,99,109,92,106,105,105,102,78,112,110,93,103,98,98,107,98,102,107,96,107,105,108,102,113,116,99,104,108,104,98,89,110,110,95,91,108,107,105,103,111,95,97,95,107,100,108,97,105,103,101,106,99,99,113,104,114,96,103,113,90,101,100,104,117,104,95,108,83,100,103,114,108,90,99,104,102,109,99,101,101,86,102,102,107,105,95,104,104,108,107,109,105,107,104,109,105,100,107,98,101,99,101,109,113,125,95,120,105,94,107,113,101,108,113,103,108,110,101,128,107,111,110,110,106,95,102,91,99,100,103,102,100,98,103,114,98,107,100,106,114,111,110,95,94,116,100,101,86,88,104,99,112,106,101,91,100,100,122,106,95,110,92,105,110,95,100,102,100,98,98,100,107,115,97,106,101,110,105,91,116,95,97,92,91,113,99,113,113,98,93,108,103,95,107,110,73,111,102,82,106,111,92,105,115,105,92,99,111,109,103,111,100,110,113,98,99,102,110,113,105,109,112,116,105,97,111,94,103,101,101,102,100,109,118,98,104,111,92,118,108,98,85,95,117,119,106,98,101,104,105,100,103,100,110,107,119,100,102,103,101,105,113,99,113,111,118,97,85,94,106,107,102,91,109,103,110,90,99,96,88,109,113,103,108,110,97,106,102,98,102,105,105,102,107,102,98,99,103,90,104,105,95,97,102,110,119,114,98,105,98,122,100,109,81,102,103,107,117,100,101,105,105,116,69,94,101,104,117,113,110,103,94,108,102,105,102,104,86,95,93,96,99,109,100,109,109,101,119,104,101,113,105,95,100,106,98,92,98,109,101,112,102,113,95,97,104,118,103,104,104,108,105,108,107,117,103,105,108,106,104,99,104,106,103,82,99,111,94,103,113,100,102,106,101,109,100,104,104,100,111,88,109,105,100,100,113,107,106,120,114,105,109,108,124,103,104,89,108,109,95,96,105,109,102,108,100,100,84,121,94,106,94,94,104,93,109,113,105,117,115,87,79,105,106,94,105,104,93,113,96,116,100,117,113,110,100,110,102,100,108,91,106,114,93,109,99,99,105,87,99,101,92,105,113,98,103,114,115,107,103,95,109,97,106,113,104,101,95,104,107,102,104,92,108,104,108,106,88,109,122,104,117,106,102,108,117,116,104,106,122,83,116,108,109,108,106,103,96,109,98,106,101,113,103,108,110,101,105,105,103,91,100,106,102,105,102,99,96,101,91,108,107,98,117,103,101,99,99,110,111,108,108,104,126,109,108,104,108,111,106,99,96,117,106,111,101,106,95,104,109,100,98,93,98,111,96,107,112,106,84,109,115,109,103,109,116,118,110,107,107,102,105,94,99,106,111,113,108,106,106,105,98,115,104,107,104,101,111,100,109,95,105,93,113,98,96,101,106,109,107,106,106,111,106,102,103,110,103,99,101,113,102,103,101,100,96,118,112,101,95,98,109,105,95,110,112,103,107,101,102,100,99,112,108,103,109,107,91,111,99,100,111,109,109,97,113,92,109,110,101,102,103,104,108,110,102,109,101,103,101,122,99,111,110,93,102,112,111,103,95,118,88,108,103,110,99,95,95,98,109,110,86,119,93,109,104,119,103,99,104,98,99,101,93,104,109,106,102,106,109,95,92,105,105,110,93,107,99,100,114,96,104,93,103,103,94,110,99,98,95,98,103,97,106,101,114,110,116,101,94,100,107,99,100,104,108,100,115,100,99,103,105,102,99,91,105,98,103,82,106,100,103,90,96,109,103,123,109,107,114,109,110,85,99,97,101,102,102,97,102,103,103,94,106,122,109,115,106,104,97,86,103,91,104,102,102,106,100,107,114,96,105,109,94,110,112,117,112,104,99,107,97,108,96,109,106,107,104,101,97,105,102,94,97,116,102,108,119,119,104,97,98,96,108,103,98,108,104,115,119,109,85,100,99,99,94,102,103,107,102,87,96,108,98,106,105,96,117,112,104,97,101,100,94,102,110,94,106,117,110,104,101,104,102,117,83,105,103,100,108,102,99,93,103,109,102,101,99,100,96,74,101,98,95,85,108,120,111,104,108,105,109,103,118,113,121,91,106,86,116,99,103,130,102,95,111,110,110,101,102,126,75,109,83,105,105,108,107,92,104,121,100,96,100,98,107,104,110,98,99,101,105,104,111,105,107,109,95,102,98,103,98,95,81,103,129,86,125,102,94,92,101,107,102,105,101,108,105,113,117,103,97,104,109,102,106,103,98,110,110,111,103,112,99,116,105,101,113,98,115,110,103,105,97,102,121,111,106,89,109,98,111,103,105,103,100,108,97,96,98,109,103,104,98,98,113,107,110,114,102,109,104,99,97,95,103,99,114,107,110,103,118,92,103,98,113,98,100,102,93,117,79,125,96,110,108,103,92,111,106,109,95,100,102,101,105,108,95,96,91,104,73,115,97,95,100,102,97,99,106,98,108,100,102,104,111,95,107,94,103,95,103,98,105,97,107,119,106,104,96,96,95,107,95,92,116,109,99,93,105,98,104,93,99,99,103,108,96,102,114,98,106,93,97,101,105,96,98,116,108,86,93,108,102,109,103,99,107,99,98,112,100,103,106,99,97,112,93,88,100,108,102,97,104,105,91,105,104,113,95,97,103,113,104,121,106,97,112,106,107,100,112,87,132,101,101,112,101,101,112,100,104,108,108,99,105,100,107,102,113,117,95,106,101,101,102,101,103,92,103,112,103,99,108,108,102,113,94,101,113,101,109,101,101,101,101,99,111,101,98,93,101,110,104,112,99,113,99,102,107,99,106,109,104,103,104,94,107,105,104,87,93,113,104,108,96,110,112,105,106,103,100,99,94,116,104,113,96,99,114,103,96,101,107,95,94,100,95,106,113,102,91,109,114,95,96,110,105,104,99,102,90,101,100,100,103,88,117,113,108,103,113,95,104,116,96,112,106,104,93,100,96,102,106,107,100,110,100,91,98,101,107,99,98,113,86,110,91,129,89,106,99,103,96,101,97,116,109,104,105,105,110,107,113,104,124,95,91,106,100,94,98,103,99,90,106,97,108,106,132,103,103,103,108,113,119,103,95,104,96,99,108,112,112,112,102,79,98,90,98,102,102,108,96,104,107,121,95,106,93,99,105,97,99,102,104,100,109,111,102,112,97,95,95,110,108,90,106,101,110,106,116,101,107,98,108,102,111,96,114,102,97,102,120,104,109,111,106,110,109,110,116,101,104,102,92,102,111,99,98,87,97,106,90,105,99,111,108,117,116,91,103,96,109,106,105,105,100,97,104,104,92,96,92,111,106,108,91,98,106,115,108,109,107,100,101,100,106,111,103,98,125,112,106,106,105,108,96,116,110,109,95,106,105,106,102,92,97,95,108,102,103,99,105,108,107,101,100,108,125,90,106,102,108,95,113,105,108,110,101,111,112,86,110,108,110,100,108,101,111,105,104,118,104,100,95,112,99,103,106,95,112,98,101,106,113,102,105,112,102,104,105,100,113,94,84,95,101,108,112,96,106,104,113,103,102,100,98,104,105,103,100,108,99,96,100,108,117,100,120,101,108,100,95,105,101,90,97,106,101,104,100,109,104,113,103,102,96,117,115,98,109,87,115,87,94,102,97,95,91,97,94,107,106,105,115,117,103,109,107,113,89,96,107,102,97,96,105,97,99,108,89,98,105,104,105,93,105,107,90,94,105,103,92,104,106,100,92,101,112,96,107,102,105,99,109,113,93,106,102,130,108,112,107,104,102,109,100,101,110,96,111,108,109,113,102,103,103,118,106,113,102,104,90,98,96,93,110,103,92,102,98,90,108,105,89,105,106,110,96,94,113,108,107,106,116,116,97,102,96,100,111,102,93,106,120,96,100,98,106,103,102,105,92,124,113,101,119,96,108,90,104,98,106,98,113,93,113,91,99,103,103,93,94,96,104,127,107,96,102,101,74,100,106,97,84,108,100,102,78,100,88,98,99,104,102,100,96,103,111,106,103,112,115,106,92,104,108,109,106,86,101,97,110,98,105,109,114,93,94,88,99,99,101,101,105,97,104,104,85,106, +535.77313,101,96,98,96,121,110,85,101,106,101,101,79,116,107,109,99,88,110,119,126,91,98,107,104,108,75,99,98,102,113,94,95,100,106,110,105,95,104,106,99,95,96,108,90,108,107,100,99,107,101,116,95,113,109,98,87,101,100,111,96,104,107,100,107,111,106,94,108,107,103,102,120,113,101,101,97,105,91,99,109,103,73,130,106,103,100,104,101,105,98,104,97,104,121,104,104,102,94,105,97,102,111,94,95,88,95,95,109,105,103,98,97,107,111,119,106,111,112,106,103,104,116,113,103,112,78,91,96,116,104,84,93,105,107,96,111,102,106,94,72,95,92,104,101,102,96,101,111,96,114,103,102,111,110,100,107,95,79,107,119,96,103,104,118,108,99,107,105,106,103,112,105,102,106,106,122,102,96,108,104,104,98,93,113,103,111,120,99,100,99,115,94,101,98,102,92,106,100,98,102,95,104,95,101,94,101,116,106,105,104,109,100,119,105,118,128,101,100,99,106,100,100,115,104,93,119,100,102,92,104,92,97,90,113,106,103,104,109,110,93,100,107,100,95,98,104,100,91,95,101,103,106,97,107,103,118,95,118,113,99,98,103,108,104,97,119,112,97,86,101,109,103,100,94,101,98,105,112,96,90,102,105,108,93,103,109,95,91,108,121,104,109,110,96,108,115,104,104,110,114,107,103,98,112,142,103,105,114,111,107,85,113,103,104,105,108,103,115,103,100,105,82,106,110,99,108,102,103,102,100,110,102,102,106,109,108,89,102,95,105,99,95,109,99,120,111,94,112,105,125,104,100,113,111,112,99,102,107,126,113,86,114,110,93,108,94,94,109,108,106,109,92,106,96,104,106,101,106,113,101,126,106,108,115,86,94,98,95,112,105,109,101,100,102,94,102,100,101,116,110,91,96,94,103,114,103,95,110,106,102,117,93,105,105,100,97,101,98,100,106,104,102,105,103,105,100,118,103,97,109,104,94,91,101,107,106,97,101,103,107,107,109,94,109,86,103,90,105,109,108,85,108,109,116,112,95,101,95,112,92,104,103,127,104,106,106,111,105,99,108,105,105,105,97,101,114,100,103,101,112,114,104,106,108,110,103,98,98,97,97,122,110,112,106,105,109,97,110,100,106,107,102,90,100,125,107,96,104,103,118,113,100,98,99,113,105,106,109,117,98,98,100,112,110,109,99,116,114,99,102,115,113,105,107,110,107,108,106,104,104,97,111,98,96,103,104,117,98,103,100,98,103,98,95,90,98,113,105,99,102,99,101,95,106,100,106,105,107,114,106,97,108,107,123,108,105,106,102,98,100,104,102,104,91,101,96,110,97,127,100,112,108,100,95,103,99,96,107,110,101,105,80,97,109,99,101,113,112,106,109,104,105,105,105,102,96,107,109,101,108,110,107,104,110,109,101,104,103,108,108,81,101,114,103,99,101,105,108,93,107,111,109,104,94,89,106,87,103,98,111,98,99,100,118,102,98,113,106,103,105,106,107,113,116,101,113,109,104,107,118,115,91,121,103,99,112,95,104,119,107,110,120,111,106,92,104,108,107,113,104,104,113,97,107,91,104,103,96,101,99,110,106,109,101,106,101,109,100,95,112,109,101,96,120,117,98,98,105,111,106,100,103,111,100,88,108,105,98,100,110,100,98,97,105,97,100,109,94,105,101,110,106,97,99,97,109,108,125,112,101,112,99,104,116,113,89,105,100,101,104,96,92,98,98,100,113,109,106,107,102,111,104,109,109,101,99,106,103,105,96,86,109,101,102,102,101,99,79,97,105,94,98,101,103,119,94,105,102,100,116,103,104,107,103,125,98,97,83,106,105,99,103,101,105,103,107,116,107,100,104,106,108,112,100,109,111,115,111,100,104,95,88,98,106,109,96,116,108,106,95,103,101,112,93,94,104,95,94,86,109,102,105,100,104,95,101,106,97,122,108,110,100,108,95,107,100,107,104,99,107,108,113,98,106,108,109,99,98,113,99,106,97,100,104,99,105,102,111,116,102,114,105,106,126,103,106,109,105,111,99,111,108,113,99,112,99,99,97,106,104,101,105,113,107,103,105,89,98,96,104,102,105,99,105,106,100,110,106,109,102,101,105,103,102,112,97,104,98,112,98,103,102,109,110,68,101,70,115,100,113,115,114,106,104,100,97,105,105,96,110,111,114,107,92,108,103,98,100,119,90,91,103,118,102,96,102,122,113,90,95,107,105,107,104,101,104,99,97,94,124,102,116,98,104,96,101,98,108,94,94,103,98,81,100,105,101,106,116,99,125,90,121,112,112,83,98,103,110,101,107,108,105,121,107,91,104,102,111,104,107,107,103,93,107,117,105,107,103,98,95,101,103,108,110,99,101,107,96,101,111,108,104,100,104,104,113,106,105,100,100,102,104,96,98,91,110,90,107,97,77,94,109,91,99,101,96,119,104,133,104,110,91,99,106,106,112,99,107,118,106,104,121,108,96,99,98,105,92,106,105,110,109,107,101,96,89,121,106,100,111,122,106,107,107,107,105,108,104,102,101,99,103,98,104,107,77,100,94,108,109,102,124,98,110,105,102,98,96,106,101,96,103,101,107,102,116,111,115,100,97,108,113,112,98,118,104,110,105,101,105,111,100,103,98,105,108,100,94,109,113,96,102,99,103,97,105,106,102,102,90,111,97,97,113,98,111,109,103,106,103,124,106,112,112,118,111,117,135,105,101,102,109,98,106,110,100,107,114,106,117,112,117,105,110,106,99,99,108,100,112,126,99,104,86,105,103,91,107,107,112,97,103,111,106,109,102,99,100,111,113,103,120,108,108,101,101,117,118,105,107,108,115,108,93,104,120,105,106,94,103,110,98,106,104,100,91,100,107,95,91,116,103,104,98,109,103,98,111,110,107,107,108,95,105,109,91,103,105,107,100,110,116,108,124,95,109,102,115,104,101,97,98,105,100,74,109,110,113,86,108,117,104,109,96,106,117,113,114,102,103,107,96,103,99,109,96,115,112,105,104,105,100,108,107,107,96,93,114,102,104,100,106,107,105,88,116,103,110,113,106,96,116,104,103,110,133,104,117,106,109,106,101,102,105,121,98,103,107,100,106,105,96,99,91,119,99,92,100,99,109,100,94,106,117,105,106,84,98,118,95,103,117,112,107,97,111,105,95,114,104,90,93,92,112,106,107,99,100,101,109,106,90,110,105,107,93,110,96,100,101,108,98,105,102,102,106,102,99,118,104,104,106,114,114,106,100,105,110,98,97,105,105,94,113,109,107,99,90,117,112,101,99,94,104,110,102,109,101,102,107,110,121,105,103,104,96,98,113,110,99,100,111,98,112,105,106,106,113,112,116,99,127,102,104,115,99,103,105,101,116,103,105,106,106,103,129,105,102,108,97,106,102,106,101,119,112,107,101,108,103,105,108,107,103,109,103,96,103,99,105,113,111,104,102,106,99,99,112,98,106,102,85,111,100,112,102,101,105,112,103,100,115,96,109,106,117,108,115,92,100,100,97,109,99,103,109,104,111,117,111,94,104,114,92,113,110,103,117,106,104,99,103,113,104,100,107,104,105,98,86,102,105,111,98,113,126,105,100,135,89,110,104,107,104,95,100,104,111,103,110,112,105,116,96,102,101,103,101,103,68,95,104,106,113,104,105,90,96,106,105,112,110,100,92,107,110,96,117,93,108,95,117,113,107,102,92,108,108,123,97,125,104,91,102,108,103,111,106,106,105,107,103,76,94,107,97,113,98,112,107,109,115,103,107,104,94,108,102,101,100,80,106,107,105,99,101,96,104,92,97,113,103,110,95,97,106,102,93,102,82,103,115,75,106,101,100,113,103,107,113,103,111,104,93,110,111,98,103,101,114,106,108,95,103,106,104,103,100,96,116,104,104,129,102,96,99,91,101,109,100,105,110,109,105,111,104,101,120,79,107,121,110,94,106,103,106,95,115,104,89,111,113,106,107,108,99,106,109,99,105,104,111,104,101,102,106,95,107,118,113,115,107,102,98,113,103,117,119,117,113,108,110,104,105,101,108,106,95,117,112,104,101,111,99,104,104,120,101,106,108,99,113,101,103,112,105,109,112,104,111,98,106,104,103,112,102,108,113,111,98,107,105,104,100,99,103,107,102,106,98,101,97,87,103,105,96,124,107,118,106,107,112,109,116,122,101,94,101,110,117,105,119,108,106,107,106,92,102,95,95,119,112,92,103,103,109,109,112,102,117,100,95,102,103,115,99,103,113,98,109,104,112,100,112,106,100,95,97,109,99,113,109,103,110,106,84,78,110,112,117,112,119,104,107,102,102,103,104,103,113,100,103,100,108,99,102,124,104,102,108,106,106,112,110,107,102,90,99,105,83,110,113,113,109,99,107,117,108,120,105,96,96,94,104,99,99,100,104,110,83,110,94,117,103,97,99,99,110,98,116,91,109,99,112,99,90,109,92,120,100,98,136,96,117,107,95,114,107,90,103,97,109,100,109,114,108,109,83,107,103,100,99,107,91,100,112,89,106,96,96,103,106,103,106,114,124,103,104,116,103,115,109,113,92,106,113,109,108,103,100,108,108,104,91,109,109,119,99,107,104,101,108,106,107,91,100,116,105,91,89,114,120,90,98,112,98,100,124,92,85,108,99,99,116,89,106,106,104,103,100,106,94,100,110,114,108,109,100,104,97,110,107,112,112,98,111,109,105,109,117,109,105,97,106,109,102,107,106,103,88,120,94,100,112,110,105,106,64,94,107,93,98,114,106,75,112,94,107,102,106,100,112,105,102,94,109,105,86,105,109,104,106,95,106,77,107,115,113,89,120,105,101,83,105,107,99,104,106,131,109,71,103,97,103,103,102,106,111,83,96,103,105,100,104,113,109,100,108,108,109, +535.91388,103,94,92,103,90,112,95,119,113,104,90,120,101,112,100,90,107,118,121,108,89,111,104,103,113,109,102,105,110,97,80,85,95,107,115,108,99,95,94,95,105,106,96,98,99,102,95,99,100,105,103,102,107,84,98,106,98,106,109,92,91,93,95,111,104,110,132,93,97,92,110,109,90,88,98,115,95,101,99,100,94,104,90,112,109,97,94,113,105,98,103,112,107,120,103,96,99,103,110,109,97,105,98,113,108,103,100,113,115,104,96,99,108,114,98,106,102,111,108,99,99,97,107,105,106,104,104,89,108,97,115,109,99,103,109,105,106,112,109,106,94,102,105,106,102,99,99,96,107,99,99,86,128,87,99,80,100,105,118,99,69,111,107,98,105,104,100,109,107,91,113,117,85,108,117,78,100,104,109,113,98,105,113,100,99,102,103,92,107,101,103,112,99,102,107,111,101,109,104,99,100,95,100,116,109,111,107,104,102,92,97,110,107,96,108,96,110,122,87,117,103,108,104,111,98,106,108,99,98,99,102,109,113,112,99,97,104,117,118,103,99,112,124,102,98,105,101,99,104,101,113,101,103,99,99,102,105,102,98,123,94,104,96,100,103,104,127,104,102,105,102,114,118,94,90,90,111,113,115,110,112,98,95,108,101,102,88,107,99,102,109,100,102,109,107,113,103,100,100,111,99,102,83,106,98,114,105,109,114,113,104,121,103,119,96,95,107,105,93,106,105,109,99,114,105,107,102,100,106,100,108,98,103,108,106,119,97,70,103,115,95,104,103,101,109,103,103,109,105,102,99,108,109,90,113,104,99,104,107,109,94,114,108,95,113,102,113,120,91,102,102,110,117,111,106,80,101,106,114,112,108,107,97,100,106,98,101,109,102,118,102,106,95,121,96,104,93,106,101,100,104,104,109,108,96,104,103,104,108,93,89,109,111,112,101,89,109,104,108,94,87,100,90,107,100,96,100,103,106,102,100,113,103,103,99,107,109,117,91,109,113,104,105,105,109,114,111,107,113,104,104,102,102,125,95,101,94,102,101,108,83,101,105,116,107,104,111,101,110,104,114,101,112,105,97,92,100,104,78,104,92,100,100,99,104,100,107,102,91,99,104,102,102,119,100,98,103,111,80,100,101,111,105,98,103,104,95,111,103,108,112,101,103,108,106,105,113,99,108,104,97,101,105,96,104,96,111,98,108,100,94,107,99,100,108,104,108,101,110,76,87,110,100,105,107,105,110,107,114,108,107,104,106,100,98,94,117,105,104,101,107,103,100,102,89,108,108,107,106,111,104,110,101,95,106,105,109,105,106,92,103,103,105,95,96,106,81,116,105,114,117,113,105,113,117,105,105,103,106,111,121,102,106,102,99,103,108,103,110,108,117,104,103,103,107,104,114,94,103,103,146,109,107,107,103,97,95,102,101,95,104,100,93,109,101,108,111,97,113,108,105,109,105,99,104,104,108,117,104,113,97,114,108,120,97,97,99,110,101,112,102,107,106,109,105,90,103,102,112,108,118,109,106,105,100,103,103,99,104,100,108,94,105,101,103,105,106,103,91,103,104,110,91,104,112,112,104,103,102,102,91,106,106,102,113,103,116,95,104,112,113,102,105,117,91,101,90,100,99,107,102,105,94,111,110,97,113,108,111,113,107,104,100,103,123,91,104,98,110,101,110,101,103,73,96,111,132,90,109,109,112,109,122,112,103,107,100,117,103,92,101,106,107,108,110,113,104,105,107,103,109,115,107,104,107,105,110,101,106,95,106,95,109,76,100,108,96,111,108,100,105,91,103,119,110,105,104,101,110,74,92,105,113,99,109,120,112,94,104,99,117,116,99,103,118,103,107,113,103,115,102,92,103,116,113,100,113,96,113,112,105,100,129,112,100,108,114,103,96,107,103,103,115,98,108,99,114,98,110,111,106,112,109,109,95,101,111,104,122,115,98,107,99,102,109,97,118,108,105,105,100,106,102,108,102,98,100,99,109,110,91,102,106,109,107,108,104,105,106,106,113,109,124,111,108,103,96,115,102,111,110,111,103,104,101,104,101,105,115,115,107,103,70,117,111,108,130,110,105,111,111,114,106,106,109,103,104,112,96,111,96,113,108,107,131,110,109,107,113,102,126,97,110,107,111,99,100,106,109,105,104,98,82,92,108,102,106,98,105,104,108,97,110,104,111,112,118,111,103,112,107,92,100,104,107,106,100,107,109,102,111,108,109,107,99,102,112,96,110,103,118,127,110,109,97,108,106,114,101,114,111,111,95,101,109,108,106,104,105,104,106,104,108,104,102,112,115,105,102,105,101,100,102,111,122,95,117,104,98,105,117,114,108,103,112,103,95,112,103,123,116,109,99,110,99,102,121,127,119,112,105,104,111,103,109,109,93,107,110,99,104,111,116,120,121,109,109,111,100,91,98,110,101,105,102,115,104,101,104,113,107,115,106,107,100,111,92,104,111,107,103,109,108,104,96,105,103,111,94,98,114,106,102,102,107,117,94,104,90,102,113,113,87,107,101,108,106,100,108,103,110,114,104,103,106,95,104,108,104,102,113,117,117,100,105,100,96,108,117,91,98,113,107,105,99,107,104,96,104,99,68,112,118,117,113,109,103,120,102,102,96,103,88,99,103,107,110,102,123,94,84,92,119,104,102,99,88,102,111,91,108,87,91,112,101,100,104,113,104,103,109,101,121,116,111,108,108,101,106,97,104,117,122,95,99,107,106,105,110,106,110,90,89,114,103,117,105,108,102,101,109,119,102,109,97,118,110,96,109,112,93,103,101,98,109,101,110,110,97,116,109,114,110,110,93,74,79,106,103,102,99,120,101,100,114,102,122,117,100,100,110,108,108,114,105,89,95,106,102,96,123,103,106,114,109,93,99,106,105,109,107,107,111,108,107,105,106,112,116,97,90,114,114,108,100,104,110,107,104,98,106,93,105,106,104,107,101,100,89,98,109,92,97,95,114,107,109,112,122,107,106,101,119,96,120,103,111,97,102,97,112,105,99,108,121,105,95,99,106,107,117,99,109,102,106,102,103,99,102,104,112,118,113,103,106,108,95,110,106,95,102,100,100,103,100,118,99,93,109,103,113,104,90,109,108,103,114,102,107,99,103,102,100,108,108,89,101,96,106,103,98,141,113,113,92,98,108,107,106,109,117,102,97,107,104,112,96,104,112,93,89,98,102,103,92,107,120,102,91,108,110,96,108,112,104,96,111,100,99,106,111,108,113,113,114,104,106,98,106,112,106,102,108,116,108,106,107,111,92,106,129,92,106,92,106,107,113,92,114,103,107,115,87,97,112,99,111,96,100,96,100,110,98,96,107,102,103,111,116,117,101,105,90,107,104,96,96,97,108,108,98,100,101,109,95,105,103,103,101,97,83,113,100,98,103,109,100,103,108,103,102,106,114,109,105,105,106,100,98,108,111,105,117,87,90,107,106,105,120,101,116,103,108,105,103,102,106,94,111,98,108,105,105,111,89,107,104,106,101,98,109,100,101,107,107,105,107,94,75,99,108,111,113,110,124,104,99,110,117,114,108,89,107,98,108,90,102,109,93,104,100,100,109,100,104,102,112,104,117,105,107,111,105,90,105,95,95,109,103,108,100,100,109,118,97,98,99,99,99,111,115,97,109,110,97,110,102,94,115,101,100,83,100,74,109,107,115,121,104,94,109,95,111,107,102,94,106,103,101,103,110,105,105,102,108,92,105,105,107,100,105,111,100,99,103,122,99,110,107,102,102,107,110,110,106,104,111,102,102,93,111,93,100,106,105,97,110,109,79,108,115,104,106,111,106,103,104,113,108,114,100,115,104,107,100,104,97,98,97,115,105,98,99,100,98,101,103,102,110,98,106,102,119,98,116,101,104,102,105,103,90,99,112,119,115,107,118,108,104,110,95,103,106,102,103,106,104,120,111,111,93,118,105,110,100,108,120,93,112,119,104,101,96,111,109,132,98,106,102,113,92,113,99,112,102,88,63,107,101,101,116,109,103,118,111,105,102,107,103,88,109,101,99,106,105,103,104,104,98,107,107,100,104,105,101,115,100,103,98,101,111,105,110,99,116,103,104,113,96,98,109,106,105,109,116,110,99,94,97,105,106,104,127,95,113,111,110,106,115,94,102,102,95,102,105,85,101,111,113,91,105,97,109,106,110,118,113,104,107,101,101,103,129,123,129,103,109,106,108,96,116,102,103,101,105,106,110,93,108,100,103,100,91,105,95,109,98,109,118,96,95,101,113,102,108,94,102,105,92,111,103,98,97,93,104,108,101,100,99,102,91,113,101,111,100,113,109,98,107,112,100,103,105,101,118,120,110,112,103,110,106,107,117,106,102,102,90,103,108,104,100,109,102,106,113,109,107,109,105,108,104,101,106,104,98,88,105,94,101,108,116,106,91,120,116,100,93,111,102,119,107,103,109,105,109,94,104,105,95,105,73,103,103,114,102,99,106,118,108,108,102,109,125,99,115,113,120,98,105,115,101,100,101,103,106,112,119,121,107,100,113,91,98,103,113,93,108,103,85,104,107,103,109,101,105,108,100,88,94,105,107,106,105,110,106,94,109,101,107,104,108,102,96,107,113,108,106,103,113,88,106,105,104,110,117,83,115,102,94,103,104,95,92,92,104,106,117,114,106,114,110,109,100,96,100,106,102,109,100,104,111,106,94,104,103,111,100,93,97,95,92,108,119,109,98,106,92,94,121,109,109,93,98,113,113,100,104,107,108,101,99,104,124,107,103,105,105,91,107,107,107,91,104,102,95,99,101,111,102,101,103,106,109,85,101,102,99,104,109,112,99,111,111,102,97,97,84,104,102,91,119,113,114,105,113,103,94,105,115,86,115,95,105,99,89,97,97,105,93,94, +536.05469,104,97,94,98,93,102,96,95,105,96,100,107,99,132,97,107,102,102,104,95,92,89,104,106,110,112,95,99,118,111,101,113,106,95,111,124,97,109,110,107,88,109,107,98,106,104,110,112,104,108,110,104,97,105,94,103,104,106,104,105,102,105,95,92,112,114,114,117,105,100,98,102,93,96,101,109,93,101,104,97,104,101,103,98,108,86,105,91,109,102,98,97,110,92,98,101,103,91,93,100,107,93,106,101,101,105,80,108,99,96,102,99,97,101,100,94,105,110,102,96,110,110,109,100,105,98,89,113,89,107,101,104,95,113,102,96,109,91,99,103,100,113,94,104,98,98,107,105,103,105,105,110,112,99,102,95,96,100,89,93,106,101,98,106,110,83,103,83,99,96,98,100,91,95,91,98,102,101,115,103,105,102,104,104,105,108,102,95,110,108,101,102,91,90,99,102,103,110,101,115,88,102,99,104,106,112,110,95,100,102,96,109,109,109,102,111,96,102,97,105,98,113,109,90,104,100,95,105,109,90,93,119,106,109,105,109,89,100,98,100,94,109,99,103,94,98,110,109,104,103,100,95,87,109,108,106,107,91,97,101,106,96,109,109,95,108,98,108,98,104,104,107,111,106,109,106,99,98,98,118,94,96,106,109,105,100,104,109,102,109,106,109,114,118,110,109,110,97,102,101,108,96,95,105,98,111,103,99,100,105,96,117,101,98,101,113,104,97,108,101,100,105,109,98,113,110,101,100,106,105,106,102,99,106,113,102,100,102,101,92,105,100,96,101,95,93,103,110,112,97,110,97,100,112,111,99,105,100,114,104,98,102,110,115,90,86,87,108,110,102,105,111,109,106,113,95,107,102,96,96,78,107,99,100,110,98,97,97,105,104,113,96,90,95,94,102,102,101,110,109,104,109,119,104,106,104,108,98,98,105,101,107,107,103,94,96,92,106,105,121,102,95,93,117,97,109,85,100,99,101,101,101,107,111,112,101,96,96,101,109,116,112,102,79,93,92,95,103,103,105,107,103,112,106,106,105,104,104,111,73,102,104,112,105,95,102,105,112,103,95,108,103,113,108,92,126,87,123,105,117,94,105,109,114,102,104,103,106,100,92,106,102,105,105,107,97,92,107,123,95,108,97,103,109,96,99,106,98,105,94,116,102,103,108,101,104,107,95,93,98,107,106,106,101,96,108,102,103,116,98,109,108,104,95,102,112,105,105,107,103,96,95,90,98,112,110,105,113,100,111,119,116,102,96,102,110,100,97,104,107,108,111,100,106,106,106,121,109,102,105,105,99,104,104,103,112,117,97,94,113,102,91,102,101,109,101,110,108,104,101,98,102,103,99,112,109,98,93,78,96,99,109,84,103,113,96,93,122,114,104,102,96,104,93,103,99,103,92,108,99,106,112,102,93,107,96,98,119,102,98,99,101,89,103,96,100,100,102,95,100,109,117,102,95,108,94,96,100,106,112,111,83,103,94,103,103,104,98,104,100,118,104,96,119,99,105,103,105,97,113,111,99,116,89,107,94,101,102,114,116,106,109,108,99,110,101,107,105,104,94,103,104,99,107,99,101,104,102,104,112,113,106,97,104,105,103,109,98,103,85,96,84,94,99,92,101,94,101,104,93,102,97,103,102,95,91,97,110,102,105,106,98,104,96,103,94,105,106,113,109,106,101,96,103,92,96,113,109,111,104,111,103,106,95,101,104,96,86,116,109,102,101,101,90,91,101,104,97,95,109,105,106,104,93,95,108,86,112,104,94,103,100,117,110,99,109,108,104,96,100,103,119,103,105,116,103,92,106,103,101,93,95,104,97,112,114,108,95,106,113,93,103,107,91,104,97,115,109,95,86,107,113,106,101,111,107,108,105,114,115,104,101,103,106,100,105,107,106,111,108,88,104,114,116,114,106,108,110,97,108,106,96,90,102,112,111,102,105,99,102,110,110,114,100,116,102,97,107,108,105,99,105,110,114,113,112,108,103,96,104,101,108,106,95,100,89,94,105,67,98,79,115,98,115,100,97,103,105,104,112,103,102,100,80,113,100,97,103,99,94,112,101,115,97,108,93,112,90,98,82,113,107,104,104,105,86,94,106,97,97,100,104,100,95,107,77,86,111,99,102,96,95,96,101,98,96,101,88,95,96,108,114,102,105,105,116,108,111,98,98,96,105,99,111,98,103,94,106,101,98,96,104,98,106,102,94,106,89,99,100,100,109,101,111,112,89,112,101,94,106,106,110,102,99,90,96,97,99,110,98,101,97,99,90,117,112,102,103,97,108,101,105,99,111,119,118,109,101,117,105,99,108,104,96,103,102,99,103,106,121,113,103,100,103,96,95,93,116,109,113,96,103,102,102,120,100,109,98,100,111,106,109,98,102,106,95,91,104,103,94,94,110,109,98,95,90,103,109,112,104,102,108,95,104,100,107,104,121,84,102,103,88,103,114,102,95,100,97,103,99,98,121,110,125,100,91,92,106,117,101,102,89,82,108,110,103,109,102,117,96,92,98,109,100,124,100,99,107,106,103,118,100,105,106,102,94,101,106,106,108,102,112,109,106,101,113,97,105,101,108,97,84,108,108,116,100,109,101,113,97,87,108,107,109,119,109,102,101,97,105,97,106,101,91,97,103,109,106,108,98,98,99,112,108,111,100,109,98,116,109,101,103,84,108,109,100,131,103,102,96,103,107,111,104,100,113,98,89,120,96,103,105,102,114,111,105,108,114,107,109,119,110,97,111,95,120,115,99,110,110,99,97,99,106,115,109,91,109,112,99,102,99,102,106,113,94,99,95,113,108,105,108,92,95,107,100,102,104,112,109,103,106,98,106,102,112,105,103,110,104,107,90,107,92,117,95,113,109,99,112,104,101,98,102,105,105,83,108,111,108,120,106,120,104,101,107,101,101,105,103,99,108,98,104,103,108,117,94,105,123,112,112,101,105,111,97,102,108,92,103,117,102,108,94,106,113,109,98,103,112,105,102,103,104,96,94,98,96,108,98,107,91,106,112,123,114,80,100,94,76,106,102,104,100,109,92,103,118,113,106,109,107,110,104,90,95,98,113,110,113,107,115,106,113,109,107,112,116,94,106,115,106,93,92,105,97,102,102,104,104,99,110,88,108,96,87,112,109,104,111,108,99,94,97,99,96,100,96,102,106,109,103,102,95,103,101,96,113,101,104,106,104,103,108,108,95,110,113,102,107,111,102,100,98,106,102,102,96,114,117,102,100,115,103,110,105,101,113,98,115,107,92,102,96,92,100,88,105,105,107,104,96,112,103,111,105,120,109,103,108,103,105,100,119,99,110,71,105,99,95,107,109,102,95,105,106,95,105,107,91,112,98,98,107,113,101,100,116,108,99,109,101,107,96,101,94,109,121,133,112,102,92,99,116,102,113,105,93,119,115,100,115,105,93,98,115,109,108,91,100,105,106,99,102,99,107,114,107,105,95,107,98,97,87,103,84,112,105,103,108,110,106,95,101,94,102,102,105,98,102,114,106,105,115,93,113,87,108,105,112,104,99,103,101,117,110,101,100,107,103,112,105,113,105,90,105,106,109,99,101,113,101,108,102,91,104,112,101,107,95,113,113,97,94,104,105,109,105,107,102,99,107,95,101,95,104,97,96,123,95,93,86,103,112,95,93,98,109,111,113,106,121,99,101,100,94,105,113,115,115,96,92,101,116,94,105,103,114,102,92,111,102,108,109,107,118,109,105,130,92,101,100,97,94,108,100,104,110,110,105,108,94,113,104,103,95,102,98,101,102,100,121,89,104,103,108,95,106,101,104,117,101,99,99,99,119,102,100,107,116,88,113,97,103,107,105,100,93,101,116,111,117,98,92,106,101,113,94,103,100,106,100,103,93,114,79,113,117,102,106,110,99,106,102,101,81,107,101,89,106,102,99,108,112,96,98,115,104,113,107,99,102,102,91,115,102,99,105,110,103,104,100,98,101,102,108,102,121,104,109,103,109,107,115,106,102,103,97,119,100,109,101,114,106,105,108,112,106,113,117,103,91,105,97,107,107,106,104,104,114,106,108,109,104,102,102,100,107,106,107,92,109,115,105,111,108,105,83,106,113,109,95,107,107,102,102,114,102,102,109,102,93,116,102,112,112,105,110,117,102,103,104,106,100,97,105,113,101,103,99,112,99,105,99,104,108,102,107,111,109,111,106,113,103,105,111,97,99,107,107,109,110,108,100,105,123,112,110,114,91,105,93,106,108,101,100,99,105,118,100,111,107,110,103,84,101,107,91,97,96,104,124,97,95,102,108,108,107,102,106,107,98,110,104,99,107,104,106,107,104,105,88,98,110,116,106,119,98,103,107,103,102,96,95,112,94,124,111,104,91,106,105,113,101,100,92,102,110,122,105,102,109,102,109,99,114,98,103,106,103,110,102,112,100,104,116,97,92,109,107,111,108,108,102,116,94,98,89,103,83,106,105,101,104,100,96,98,117,98,101,99,97,106,105,107,110,81,98,96,103,102,96,94,108,101,104,106,102,94,113,96,117,96,103,100,104,120,95,104,108,102,105,101,97,113,98,101,102,101,102,91,110,103,118,120,101,114,104,104,103,108,115,117,101,99,109,104,100,100,103,103,104,112,102,102,117,109,92,105,106,96,100,100,106,106,102,90,113,124,102,110,102,109,94,107,99,105,110,103,104,100,100,111,69,120,100,89,100,97,113,101,115,107,102,119,103,85,103,104,104,114,83,91,107,104,100,102,102,109,105,108,117,107,109,109,95,110,109,98,103,98,96,112,103,106,109,109,109,111,105,102,92,116,90,86,109,105,104,99,112,105,113,96,105,97,113,99,95,114,101,112,105,108,101,88,110,99,116,103,91,108,111,106,95,96,70,102,110,102,91, +536.1955,112,95,104,98,103,99,104,111,104,105,107,112,75,94,95,95,103,104,114,97,109,101,111,74,99,108,107,110,100,106,110,113,121,97,99,108,107,106,109,82,109,107,112,106,104,105,100,99,95,100,104,108,103,101,114,107,113,110,102,94,101,108,102,99,107,109,101,116,103,96,96,113,102,94,102,110,74,104,102,105,116,100,111,104,109,94,100,93,103,105,101,103,111,108,84,107,104,107,93,108,100,109,91,86,106,115,105,104,106,109,109,103,107,99,116,98,102,106,104,104,104,94,104,121,111,100,110,94,114,102,99,100,94,106,99,102,90,103,99,103,98,110,103,95,106,113,109,99,97,88,112,109,108,101,93,100,99,99,106,115,110,131,106,105,115,109,108,103,98,101,93,109,112,99,111,109,102,108,98,81,108,112,95,101,103,101,101,98,108,103,105,100,108,125,96,108,101,95,103,108,95,111,116,108,102,111,110,110,108,106,90,94,116,111,121,111,88,98,99,66,99,107,98,96,104,101,109,92,85,102,103,101,110,102,105,100,114,109,105,106,101,111,86,112,101,97,106,83,109,101,104,114,104,114,99,106,94,103,102,96,92,103,95,102,102,101,95,96,107,110,105,111,111,95,105,108,99,111,117,113,113,97,100,106,117,95,97,108,107,103,93,97,110,111,106,113,101,91,103,97,105,95,96,109,88,99,100,98,114,107,87,111,113,91,111,103,99,90,98,88,108,89,105,116,110,109,115,91,109,114,98,96,107,91,109,102,115,105,98,96,88,85,104,100,106,107,109,113,101,100,110,91,113,104,126,105,104,107,106,100,97,107,102,103,99,111,99,109,113,109,120,112,103,104,111,94,107,102,104,120,107,106,82,110,100,94,104,125,110,106,111,90,104,109,97,112,110,108,106,106,99,107,96,110,101,91,95,90,101,82,105,98,104,101,97,105,95,90,109,102,100,133,98,104,103,106,98,93,106,122,101,103,122,103,95,100,100,95,101,104,118,105,102,108,95,104,104,103,101,112,101,114,99,104,105,112,103,105,102,108,112,103,104,104,124,110,113,104,107,107,104,97,110,99,95,90,104,112,96,109,95,132,106,98,105,111,101,107,115,108,104,104,105,117,94,106,104,111,114,109,107,97,99,100,112,106,97,107,110,96,109,109,108,99,111,116,104,108,103,89,105,110,117,119,106,114,107,108,110,113,93,88,100,106,90,114,91,107,107,113,102,110,93,98,110,102,100,106,103,125,105,106,105,108,96,103,91,104,110,109,111,107,105,96,100,103,102,73,93,109,97,103,98,122,98,117,101,101,101,113,104,109,100,107,99,102,108,106,106,96,119,101,102,101,108,93,88,107,108,110,95,100,106,101,106,100,113,96,105,105,98,99,109,98,107,98,84,105,106,123,109,98,98,104,135,86,100,100,103,112,97,114,105,102,100,101,105,102,102,102,104,111,107,100,96,100,95,99,109,116,102,103,107,110,105,114,107,100,113,114,109,105,104,97,96,110,115,107,107,106,106,114,98,112,101,105,113,103,104,107,109,105,115,114,95,122,105,103,127,85,98,100,105,112,104,117,108,98,102,89,91,104,105,102,108,113,123,124,104,101,117,97,107,104,109,94,105,105,110,108,101,97,105,98,94,104,111,117,98,108,108,110,101,117,99,95,111,97,109,106,90,101,111,102,93,109,97,100,103,117,111,108,115,104,120,108,90,93,109,113,109,110,109,112,107,99,101,119,106,104,100,109,110,99,98,103,101,110,103,103,106,110,90,101,103,105,116,91,108,108,106,110,110,106,105,120,105,102,107,108,111,106,104,109,92,110,102,105,100,130,104,101,103,101,101,111,101,110,102,92,110,104,112,82,110,109,113,127,97,105,111,92,96,100,102,100,105,105,110,109,102,100,114,106,113,99,105,102,96,100,111,111,95,108,104,111,110,113,99,99,105,100,116,109,106,115,91,109,103,93,73,95,104,99,101,103,118,105,118,108,99,98,122,113,106,103,110,108,101,99,91,116,87,106,111,98,98,99,99,98,112,122,102,111,106,100,92,106,114,97,102,106,98,126,106,109,109,90,104,112,96,102,105,107,100,99,112,92,109,109,102,117,88,109,99,99,105,106,107,92,112,108,101,112,90,107,105,100,106,109,100,105,109,105,114,99,98,110,108,115,114,98,103,99,107,104,99,103,104,108,108,123,101,95,109,97,98,110,107,106,93,109,105,114,102,104,97,111,101,93,93,100,102,95,110,103,102,104,104,109,102,106,103,111,103,116,103,106,110,107,106,101,103,102,96,92,112,94,112,104,106,111,99,107,120,95,101,115,107,97,103,105,97,110,119,104,106,117,102,96,114,113,102,105,94,104,110,101,98,103,100,94,101,103,83,112,106,111,108,98,102,95,103,107,114,117,104,100,106,105,92,100,101,100,82,108,105,110,99,121,101,100,112,110,106,113,104,90,102,122,108,113,122,111,111,97,96,113,109,115,107,116,93,103,106,100,99,98,102,103,113,85,102,109,102,109,99,128,101,118,107,104,112,111,107,122,102,107,107,107,130,115,102,106,102,98,105,99,102,99,104,95,99,107,103,104,108,103,103,101,105,114,109,97,106,102,119,79,104,109,112,108,98,89,117,111,100,104,112,107,104,108,106,109,104,102,107,111,96,105,108,102,105,115,120,104,110,98,100,105,106,105,113,92,106,106,95,107,107,108,107,116,110,103,105,106,101,103,106,97,102,113,100,106,130,114,106,108,116,105,105,75,107,107,106,104,117,98,107,98,107,105,104,103,108,108,103,111,113,101,113,101,98,98,92,105,113,108,101,104,108,92,93,105,91,113,94,113,105,113,113,98,86,104,107,98,107,111,109,107,94,103,114,115,100,98,115,96,117,112,106,106,112,104,97,105,107,99,107,102,109,110,101,107,107,116,117,96,107,107,99,109,105,103,105,116,110,118,116,102,109,100,107,107,112,123,102,105,113,106,111,107,105,99,105,101,106,110,110,109,99,94,105,107,109,112,112,102,95,98,98,102,115,95,103,106,106,103,114,101,96,98,98,111,105,97,110,113,102,105,105,113,107,110,118,99,102,92,108,106,115,96,107,112,130,95,102,104,105,96,108,101,107,112,99,105,108,102,109,97,103,111,120,103,101,105,103,93,107,108,111,102,107,109,104,82,117,109,116,103,100,98,106,107,105,94,98,103,99,109,111,109,97,95,100,99,102,107,105,105,110,94,103,107,112,109,108,111,83,92,106,91,96,111,95,115,101,100,101,121,102,106,104,108,104,105,105,116,100,110,114,119,109,106,96,98,104,76,109,108,106,102,104,114,100,100,95,96,111,70,95,101,99,106,127,110,109,103,111,106,97,99,102,107,103,105,101,99,110,105,101,104,103,108,105,103,112,97,98,110,102,97,107,117,102,98,107,101,110,98,112,106,109,103,100,103,104,104,102,112,109,102,102,110,107,100,117,90,112,116,93,108,102,99,100,110,114,102,114,94,98,108,96,110,98,110,100,100,104,111,110,99,115,119,102,101,105,115,90,116,108,88,99,109,106,102,104,118,112,95,86,109,105,122,104,113,93,110,98,107,100,110,92,108,112,107,113,108,108,106,103,96,93,115,125,105,106,92,112,112,107,112,112,106,105,109,142,113,117,100,99,109,110,99,102,85,100,109,102,110,102,107,102,107,100,113,96,100,107,108,107,114,100,114,98,117,108,110,106,100,107,96,113,106,103,108,119,91,112,99,110,106,99,107,107,102,111,94,97,102,107,100,110,94,114,106,103,113,108,114,102,109,108,104,99,106,106,98,107,113,110,105,115,114,100,100,101,102,104,100,102,119,102,105,105,109,99,101,97,105,114,100,100,68,96,87,96,109,99,102,107,100,104,104,109,111,99,93,103,118,102,108,108,113,118,102,97,101,104,97,103,108,103,117,88,96,102,101,106,97,116,112,102,96,114,106,99,118,104,107,107,104,102,109,103,99,102,105,99,115,106,102,100,95,106,104,114,98,109,95,103,90,99,102,115,111,79,106,110,96,111,94,111,98,110,100,104,96,105,95,110,113,101,110,113,105,105,110,110,99,105,101,103,101,125,106,110,101,99,103,111,83,111,107,105,112,115,108,99,100,115,106,107,88,105,88,99,109,91,113,114,117,111,117,101,109,99,101,105,107,117,101,106,108,97,118,98,104,110,102,112,105,99,99,93,105,104,113,111,101,91,101,116,113,103,97,97,105,112,111,88,109,112,103,96,117,117,91,95,97,105,105,100,100,108,110,104,99,105,109,105,103,117,112,104,97,115,99,97,105,102,102,93,109,106,104,101,111,101,104,112,106,110,104,103,106,112,110,111,104,105,105,117,104,102,117,108,104,104,94,99,105,95,98,105,110,109,82,102,99,107,100,104,109,110,119,97,97,108,87,109,109,119,104,99,102,110,104,102,114,99,90,100,95,106,98,102,103,100,108,120,106,118,106,113,109,116,98,107,103,90,101,108,102,93,92,80,110,101,103,79,113,105,102,101,99,113,102,87,100,99,112,110,98,102,102,101,106,102,93,108,94,100,109,105,101,116,107,106,106,103,90,101,100,98,102,116,96,95,101,115,107,104,98,106,99,105,92,107,80,108,104,107,111,98,98,103,99,99,107,101,103,106,103,99,102,109,106,101,107,98,95,111,93,103,103,99,97,101,101,105,105,95,104,93,100,98,106,109,107,105,110,107,107,100,94,102,87,106,107,105,85,109,117,106,105,110,99,94,109,103,97,80,92,105,98,98,112,90,100,103,115,98,95,106,100,102,103,100,113,89,102,102,108,96,112,98,100,99,94,109,93,105,100,103,110,104,108,97,116,107,90,107,98,106,114,111,98,105,95, +536.33624,101,99,110,98,92,104,110,105,106,111,106,100,99,107,105,109,113,110,113,109,100,91,103,93,102,104,111,102,112,107,125,105,102,124,100,110,123,97,107,112,100,92,91,123,104,118,101,97,114,109,101,105,101,100,125,106,100,100,102,88,107,115,94,106,102,122,122,117,106,101,105,101,109,112,110,114,107,95,117,103,97,112,101,95,91,99,109,112,107,103,113,104,108,104,101,92,103,100,110,97,96,102,104,109,100,94,102,109,104,112,114,106,107,106,93,109,111,88,118,102,99,104,103,106,104,102,107,105,119,103,111,109,104,121,112,106,105,106,91,100,106,104,103,113,95,101,114,111,92,105,95,114,110,101,89,117,114,104,99,93,104,108,108,97,111,104,106,91,104,101,108,105,108,96,99,101,106,105,115,103,109,101,113,102,83,94,106,91,99,95,99,109,105,108,95,96,108,105,118,103,113,100,105,91,108,117,113,107,107,108,98,94,107,121,106,100,104,96,96,108,107,126,88,106,103,104,109,93,100,108,102,108,108,105,113,107,108,103,106,108,94,104,108,93,116,101,100,111,110,109,107,110,117,105,104,102,112,103,104,106,109,101,101,103,99,104,104,115,102,100,106,104,107,113,110,112,104,114,93,103,102,105,103,106,109,104,104,92,100,108,106,113,101,104,108,105,110,82,103,102,111,114,102,98,107,110,122,100,104,113,108,103,108,100,116,96,107,104,109,112,120,93,100,96,105,106,106,100,114,107,112,96,96,101,120,109,112,106,105,121,102,98,101,106,114,111,105,97,89,90,105,106,118,105,98,103,104,107,104,117,114,97,110,106,106,113,116,113,100,99,107,112,120,100,104,103,107,102,90,107,102,101,96,107,101,102,101,120,108,106,107,93,103,104,101,115,94,95,113,108,103,109,111,100,98,103,100,91,117,106,108,103,112,111,99,101,116,113,124,104,116,102,109,98,101,102,104,91,94,117,105,109,92,99,106,100,110,107,97,108,109,112,108,121,91,106,102,88,103,114,104,105,105,111,103,103,100,96,102,106,111,91,103,100,103,102,106,117,98,115,116,114,106,120,100,109,95,108,111,112,95,105,112,102,106,91,113,109,95,121,101,101,106,99,92,114,105,101,109,98,110,110,102,101,104,108,92,109,109,105,109,100,107,105,113,109,111,109,99,91,117,102,105,98,92,99,88,89,88,98,92,112,113,100,107,115,113,133,110,110,98,108,88,98,110,113,111,98,107,109,106,108,98,110,109,109,111,106,104,105,106,111,104,113,103,99,101,89,98,100,96,109,102,105,106,109,97,108,99,106,106,106,112,110,101,106,122,109,101,104,115,101,111,103,122,114,101,111,101,123,137,98,109,107,102,109,97,105,97,107,103,105,108,110,118,97,105,100,107,109,96,116,99,105,101,115,101,109,90,106,86,106,105,104,95,120,100,105,106,115,116,117,99,103,110,95,95,116,104,106,110,108,103,112,105,113,109,105,109,104,114,109,107,99,108,110,105,99,113,112,115,102,108,98,93,120,101,108,114,116,102,100,115,98,105,104,104,112,109,110,109,108,118,92,98,115,128,113,110,100,109,108,102,109,110,99,103,101,101,99,103,86,114,97,100,102,99,98,101,93,99,97,105,119,105,101,103,99,106,101,104,120,101,96,101,114,104,98,106,110,106,104,103,96,100,100,101,103,109,92,113,97,102,103,105,117,101,116,114,113,106,95,103,104,100,104,99,111,108,100,107,106,102,107,123,106,104,101,108,94,116,107,114,107,96,95,109,111,103,129,140,113,112,114,102,114,105,100,76,113,101,99,95,102,109,113,108,111,103,99,87,109,107,115,116,109,105,114,106,103,111,108,99,108,103,107,116,100,103,108,109,104,111,112,108,106,108,108,103,96,100,101,109,106,107,109,99,101,119,97,103,99,104,118,103,103,100,102,97,106,95,112,110,103,105,102,98,101,113,126,97,108,109,113,116,118,108,105,104,105,109,116,104,114,94,101,101,111,113,121,96,105,105,105,101,88,104,103,111,101,106,107,106,108,101,104,96,98,100,117,106,98,112,102,105,106,94,107,104,110,109,108,100,112,114,107,102,111,124,105,100,96,105,109,96,107,87,113,108,107,106,114,105,94,105,96,109,101,102,112,129,98,114,110,127,99,107,109,107,83,108,108,106,103,109,109,106,111,103,109,98,110,110,107,111,113,114,107,110,112,85,99,112,98,103,117,111,105,102,101,105,104,115,100,99,113,66,104,106,99,117,96,106,90,108,103,98,109,101,96,94,112,109,113,113,103,102,108,99,94,122,106,106,98,102,105,100,108,110,100,103,97,112,100,102,93,102,110,100,111,105,99,99,109,104,91,106,102,106,108,111,115,103,119,109,105,100,101,104,120,111,105,114,111,105,102,91,100,110,104,101,106,107,102,104,112,104,109,111,96,77,119,98,122,121,106,105,102,114,99,108,97,98,98,97,105,105,94,112,110,124,95,112,102,97,110,96,94,110,112,113,122,106,103,109,103,109,114,104,113,115,115,102,104,106,111,96,111,104,115,100,122,106,106,106,109,116,88,104,110,105,99,102,98,105,106,105,105,112,114,106,102,104,109,100,106,110,106,106,108,104,94,98,89,115,90,110,110,106,98,101,105,112,98,101,110,107,100,112,100,112,103,99,99,112,105,99,70,111,99,110,102,108,99,99,97,107,98,113,101,109,103,101,107,116,102,104,98,101,94,101,100,106,97,95,104,120,125,114,106,110,107,106,102,107,113,100,110,108,102,104,110,103,103,112,69,117,103,112,99,105,94,109,104,120,100,109,125,98,124,100,118,109,102,116,105,106,107,104,107,105,98,105,109,113,112,104,109,100,120,101,91,104,113,97,103,103,86,105,102,109,104,109,112,93,103,108,105,92,114,107,105,106,107,105,106,113,77,98,103,107,101,112,119,104,115,113,108,98,110,100,104,103,108,110,108,103,99,101,101,113,92,106,102,101,104,107,113,107,90,121,103,105,106,100,94,112,113,99,117,112,108,109,107,99,113,110,95,113,103,97,91,100,108,87,102,102,109,106,108,103,108,114,110,119,106,101,109,106,101,75,99,108,112,109,109,104,106,118,109,103,93,98,106,111,113,102,104,119,120,109,94,108,107,127,108,100,103,118,108,117,99,102,107,105,118,113,106,111,106,96,112,104,109,98,110,104,113,99,106,104,84,109,102,107,95,109,101,112,102,99,102,109,119,104,110,107,104,121,106,102,106,105,105,104,105,113,96,108,104,95,100,107,108,108,106,104,108,104,108,110,100,115,102,113,107,101,103,99,109,121,96,103,106,112,96,100,108,113,106,96,106,103,104,103,98,98,109,106,104,105,105,108,103,108,115,115,103,94,102,98,109,103,114,105,91,109,107,97,110,94,106,111,103,105,104,97,106,90,104,93,113,108,109,98,107,102,124,98,108,113,102,96,106,112,106,100,105,115,104,110,110,107,115,104,102,101,104,107,96,100,106,109,115,108,119,115,120,103,102,105,109,108,104,103,103,113,112,115,107,116,109,102,112,100,99,107,104,103,89,93,104,97,108,105,96,103,102,96,112,87,102,118,105,103,100,96,103,108,84,104,100,110,94,112,97,114,104,94,106,105,111,116,108,98,117,97,113,99,111,113,97,113,100,113,91,99,106,99,109,110,102,106,99,97,110,103,108,109,97,115,98,116,101,107,111,103,100,97,95,107,89,98,111,103,105,121,105,116,96,117,97,106,107,111,103,103,107,113,117,93,121,100,101,102,93,101,115,101,98,105,100,110,101,111,113,98,112,100,115,107,110,95,112,110,110,107,106,107,100,100,112,104,104,96,119,109,108,104,100,103,102,93,96,110,98,109,99,103,104,105,97,91,88,108,104,107,99,102,97,93,101,107,108,108,97,100,108,109,64,95,93,103,109,101,113,101,98,102,107,89,112,109,99,100,113,104,105,115,106,105,103,98,103,113,113,111,107,103,113,98,106,110,92,109,103,115,124,111,115,109,96,101,102,97,116,103,92,101,101,105,105,107,86,106,102,100,104,115,92,106,104,103,105,124,108,101,109,100,115,103,103,107,106,95,108,127,96,99,98,107,106,106,96,99,109,105,82,101,93,132,103,105,101,106,119,109,96,98,113,110,110,103,107,116,102,101,108,110,108,111,108,107,112,99,107,120,108,94,108,103,104,100,107,91,102,117,105,102,101,101,103,109,97,108,103,101,107,95,87,116,91,105,94,89,106,108,108,103,106,95,93,67,98,104,100,101,101,111,116,106,102,100,100,113,109,110,103,79,99,106,106,100,105,102,105,101,99,104,110,114,101,104,99,101,100,102,104,116,103,104,110,109,99,115,140,99,99,70,102,92,95,118,102,108,88,100,98,104,115,107,111,106,98,100,101,100,104,99,108,110,103,90,105,107,96,105,106,106,113,101,98,110,101,81,101,102,90,98,101,92,108,106,107,115,98,116,79,109,107,99,102,95,87,106,104,105,111,105,100,98,110,103,75,101,98,113,110,95,98,111,105,114,100,104,102,93,101,109,106,102,109,112,104,106,93,108,104,101,102,104,107,104,106,98,109,91,109,102,108,104,102,106,105,102,97,110,103,107,103,107,103,106,102,104,115,109,99,106,111,94,97,106,107,100,113,105,97,93,100,104,113,115,99,103,92,101,106,93,105,100,94,106,99,95,123,122,102,111,97,120,93,92,112,103,108,105,110,75,113,106,101,101,106,99,110,116,105,99,103,108,111,107,113,96,89,72,96,119,110,119,108,84,96,98,113,93,104,111,101,108,107,92,95,102,114,100,91,104,101,101,101,121,102,113,102,109,107,101,93,100,86,106,100,100,96,93,115,101,91, +536.47705,113,104,91,94,104,117,103,109,103,95,99,101,96,103,96,109,107,107,99,83,109,104,96,93,104,99,112,106,106,105,98,96,92,113,108,101,105,103,103,102,101,101,114,110,103,100,90,104,104,122,106,143,117,109,105,100,105,94,106,102,99,98,98,103,112,108,96,102,115,106,94,111,105,99,98,102,91,98,77,95,106,107,113,106,123,99,98,112,96,112,99,96,116,101,90,99,106,100,100,110,99,100,99,103,102,111,100,122,101,100,104,100,108,103,98,103,91,98,95,105,98,91,94,96,105,111,102,91,121,99,105,113,97,106,103,102,99,100,97,108,94,121,100,104,101,111,113,104,105,122,106,104,95,96,87,102,104,96,114,96,91,92,111,104,113,116,103,108,110,88,104,107,107,99,100,91,106,114,103,87,94,107,105,116,105,101,100,103,118,105,91,102,98,105,102,99,120,100,112,106,109,111,110,102,106,105,97,115,118,114,98,86,142,96,108,96,99,102,96,110,105,112,109,95,99,104,104,114,100,102,104,96,90,123,115,98,110,96,105,105,113,99,105,110,116,103,106,108,101,103,102,110,102,110,104,107,98,112,102,109,78,113,113,101,95,108,99,107,100,102,112,105,105,101,116,102,103,116,104,99,108,92,90,99,88,104,104,107,99,100,97,105,109,113,109,105,116,116,96,105,107,104,113,113,95,112,111,118,114,100,88,96,93,99,96,92,105,126,109,93,109,111,92,97,111,100,103,95,120,107,118,101,112,120,100,113,105,105,95,110,109,108,110,97,102,112,96,119,127,109,113,116,104,110,94,100,109,88,110,111,101,96,138,108,104,97,100,96,97,115,106,95,115,101,103,107,108,104,109,90,108,109,107,107,106,106,118,101,90,106,101,99,102,117,103,99,110,102,97,98,116,104,106,106,103,112,100,115,107,109,104,105,105,112,97,103,99,105,108,110,85,92,139,109,96,98,102,111,98,113,103,100,102,108,99,113,83,107,96,95,117,109,98,118,100,111,101,103,109,111,97,95,104,106,111,102,104,112,102,107,91,105,106,109,90,126,96,106,93,109,115,104,102,107,103,101,98,110,115,107,100,106,98,90,99,104,104,108,100,90,114,115,101,105,114,110,102,96,101,112,113,104,99,114,101,109,100,109,105,106,112,133,106,101,120,118,95,106,101,101,113,106,112,100,102,103,111,98,125,100,100,109,102,106,99,110,109,100,99,108,102,98,103,90,98,107,102,102,100,108,108,94,84,102,98,104,116,109,107,96,113,96,96,78,107,100,103,100,100,104,105,100,94,105,98,111,111,108,100,105,111,100,94,87,108,114,111,103,107,97,104,108,103,112,110,91,94,112,98,114,117,99,110,112,106,94,100,110,104,103,109,92,96,106,111,105,118,97,107,109,113,102,107,106,108,107,102,118,103,107,109,106,95,94,98,101,96,97,115,103,83,97,97,102,97,101,104,112,104,113,114,111,108,106,105,121,117,102,112,98,113,116,98,116,89,101,113,92,96,106,97,94,103,117,111,71,105,95,109,113,109,96,113,106,95,106,97,104,102,97,107,99,112,101,107,100,105,107,106,100,105,105,120,95,83,113,101,109,90,108,100,100,116,110,104,110,96,104,99,97,108,109,111,87,107,98,104,108,102,106,109,117,112,92,101,100,88,101,108,98,102,104,108,106,109,104,107,102,93,108,108,142,99,106,110,103,99,97,108,107,99,105,89,101,104,119,99,104,98,97,106,100,98,105,106,111,112,106,109,88,106,106,106,104,111,107,114,108,117,115,106,113,99,109,109,109,96,106,100,102,96,126,90,95,114,105,98,100,97,95,110,107,104,100,107,108,95,110,102,114,99,105,99,102,99,104,109,105,95,93,107,109,110,115,110,103,109,96,115,113,74,98,105,102,109,96,108,107,94,94,116,100,100,111,111,116,98,116,117,95,103,105,105,116,109,111,99,108,123,103,104,108,105,108,100,103,107,104,102,106,105,106,98,96,102,108,113,106,100,89,108,106,112,105,109,110,106,108,108,97,103,107,102,115,107,105,95,75,98,99,98,98,106,98,101,99,96,117,111,99,106,94,100,100,107,97,91,103,112,103,94,108,114,96,111,97,105,107,99,106,91,113,96,115,118,105,104,102,102,108,110,100,112,105,101,101,107,103,102,108,121,110,104,109,113,106,103,73,106,102,101,108,108,97,116,100,102,95,107,110,101,115,100,106,95,83,104,104,104,107,108,105,90,91,113,108,102,99,105,108,107,102,108,108,107,103,116,101,113,108,94,120,104,115,98,122,102,102,110,85,110,115,103,103,99,103,104,103,103,100,104,115,101,102,101,105,101,121,110,102,105,108,111,112,114,114,106,104,114,97,114,109,99,104,108,114,102,105,107,110,118,116,108,96,101,93,82,114,94,104,90,109,91,105,98,107,103,91,105,113,104,97,91,104,99,108,107,105,106,97,95,112,99,86,113,108,105,108,104,105,111,88,103,107,98,113,99,79,106,105,116,98,107,108,102,100,96,96,100,104,109,102,103,98,109,96,111,108,104,104,108,113,102,109,91,117,97,100,98,96,95,101,104,105,108,87,103,107,116,104,112,102,113,99,110,95,101,118,110,116,99,99,101,100,106,101,102,107,111,112,103,106,106,104,99,91,108,113,113,97,107,110,100,112,115,103,96,103,106,99,110,108,101,106,84,103,104,100,82,110,108,84,103,100,108,117,99,97,109,88,106,112,102,110,89,91,109,102,107,100,112,105,97,101,105,106,97,108,117,102,101,104,91,103,98,107,111,108,96,108,93,101,110,94,105,115,105,114,93,107,103,90,103,115,103,94,106,97,100,121,108,91,117,114,92,99,71,96,108,105,105,112,99,99,110,99,103,108,90,111,122,111,111,110,111,112,113,119,104,103,85,100,112,119,105,111,101,101,94,97,105,108,103,101,96,100,123,95,100,88,104,101,89,105,123,102,91,100,112,95,85,108,105,104,101,97,100,106,107,97,104,98,116,108,117,87,109,107,95,101,76,111,101,104,100,102,95,106,92,108,106,87,94,112,111,96,94,104,106,96,105,105,102,99,101,99,110,116,110,87,97,94,101,114,99,114,99,109,104,110,99,100,93,99,107,101,92,103,98,103,104,94,103,108,108,107,108,104,105,95,101,109,112,98,117,97,109,100,98,105,103,91,94,96,92,106,106,104,100,101,113,109,96,104,103,105,103,109,85,105,108,102,104,104,119,105,98,102,98,98,118,103,109,108,99,102,103,97,102,102,102,105,107,110,98,112,101,100,106,99,98,105,98,99,106,116,102,112,113,103,98,103,95,91,98,109,108,117,116,88,96,96,107,111,106,110,104,104,109,94,106,111,103,117,97,97,107,116,110,104,93,121,104,103,105,103,114,100,102,107,101,96,96,104,102,106,97,100,94,94,103,94,112,105,91,96,107,99,98,83,101,106,99,110,113,95,117,127,102,103,126,102,113,107,105,106,110,111,123,105,105,103,102,102,102,102,90,107,103,113,96,100,121,113,101,100,96,102,105,106,96,93,93,115,110,109,90,103,114,95,105,101,96,107,99,98,95,102,112,125,71,106,98,110,95,97,98,106,99,102,96,110,107,90,101,96,102,106,107,99,108,99,99,106,97,101,121,108,99,101,107,104,111,107,98,98,79,100,101,99,103,108,102,106,106,105,102,105,108,98,94,107,101,99,113,108,106,106,98,109,93,102,108,109,111,106,102,92,99,92,99,101,89,104,103,101,112,102,107,109,109,106,102,109,95,95,104,98,91,99,101,107,98,110,107,103,103,98,97,105,102,96,98,103,102,122,108,110,91,95,103,97,106,104,105,108,109,103,107,103,92,101,97,104,98,102,94,101,104,98,105,109,95,110,96,102,96,92,105,92,97,94,111,104,103,106,100,100,111,103,105,103,104,113,97,102,105,107,106,107,99,121,101,105,107,121,99,104,107,108,99,110,106,108,104,104,105,113,112,116,98,103,101,97,103,95,106,109,105,93,93,113,104,111,101,109,109,109,104,109,108,106,100,102,72,102,95,109,94,96,99,117,105,98,94,115,96,107,106,115,97,104,99,85,110,102,103,101,101,103,108,99,105,104,112,106,104,99,100,97,101,103,100,101,105,100,116,101,98,117,99,94,96,101,115,105,100,96,104,97,101,101,111,109,108,101,106,99,106,111,106,93,104,116,92,108,106,109,109,92,81,104,95,108,109,104,91,97,98,105,109,108,122,103,117,97,109,99,104,103,101,116,105,105,95,94,106,101,103,119,107,104,117,106,102,99,98,89,108,112,106,94,111,100,103,102,108,105,96,106,99,103,110,103,109,107,100,99,102,99,115,97,109,71,114,101,98,110,117,98,93,99,103,93,100,104,96,115,99,103,104,110,106,100,91,106,103,96,88,99,131,105,94,98,119,68,96,98,94,104,101,93,102,104,95,94,110,88,80,102,101,99,99,122,101,117,96,113,104,108,82,93,87,110,96,101,100,106,99,103,109,96,93,90,112,100,110,106,110,91,88,102,99,116,110,106,112,92,113,96,102,109,113,98,100,96,102,96,109,106,108,98,101,109,110,107,108,102,111,97,102,108,98,94,95,108,101,105,96,111,103,94,104,94,91,98,108,105,77,112,104,107,107,111,107,105,105,105,108,112,99,120,100,100,96,96,100,88,104,107,105,108,99,98,99,97,101,98,101,107,104,91,108,109,98,95,98,111,121,104,92,90,113,105,102,104,99,100,101,109,96,95,116,105,103,106,99,104,102,102,128,102,105,111,98,98,110,105,95,105,107,99,105,103,97,100,108,107,112,105,115,115,101,90,120,121,94,111,99,96,92,101,123,98,94,95,102,94,104,88, +536.6178,129,84,106,103,99,101,80,115,101,116,100,104,102,87,113,101,97,111,106,104,106,106,113,111,104,106,99,126,106,104,91,99,85,99,112,91,100,113,100,102,102,114,104,105,108,98,105,84,102,109,101,102,99,96,101,104,116,70,105,99,107,95,106,92,109,111,87,117,109,107,108,116,107,104,92,101,103,104,117,113,111,73,102,104,109,97,105,111,88,102,99,83,109,115,100,101,104,113,105,107,105,112,111,79,96,109,102,102,102,86,110,117,117,96,91,116,94,102,99,108,95,78,110,113,99,109,111,103,109,99,79,106,98,99,107,118,107,106,99,93,108,99,97,97,105,99,114,105,97,100,109,114,86,97,110,105,107,104,110,101,95,103,102,102,105,98,81,96,102,123,101,104,116,100,98,132,107,100,108,122,108,113,111,103,122,111,106,101,93,109,105,127,110,105,108,102,103,102,110,116,105,109,96,109,116,105,92,124,116,112,109,118,112,87,122,107,116,102,102,105,108,113,111,96,105,116,113,100,87,111,102,107,103,94,92,101,105,104,101,103,109,102,112,99,103,100,96,107,107,107,74,105,115,100,100,102,121,112,87,112,95,107,103,107,103,112,117,106,117,106,98,91,107,100,107,112,101,103,101,106,70,108,111,98,107,100,105,101,104,99,107,114,117,102,118,98,108,101,109,101,99,117,110,107,95,105,105,103,100,113,102,103,105,103,119,97,124,124,97,102,104,110,99,112,116,101,111,95,104,105,106,124,112,115,110,105,110,104,95,115,102,115,102,98,100,106,96,114,100,104,105,112,97,85,115,110,105,114,110,100,106,97,104,100,108,135,108,108,108,102,104,104,104,101,113,87,105,103,102,115,105,123,99,99,101,95,100,100,106,103,105,81,103,102,118,105,101,103,100,97,104,106,113,101,106,91,107,109,115,98,110,107,101,121,106,107,109,100,104,95,100,99,101,108,107,101,78,100,109,113,105,94,107,111,108,100,101,105,105,79,108,104,105,114,108,106,100,106,110,104,106,100,92,95,105,103,100,109,107,114,112,106,106,107,116,108,108,96,99,107,112,106,111,95,97,104,100,104,114,105,104,100,115,108,102,119,114,102,108,101,109,106,106,102,96,100,123,100,109,112,107,108,106,103,114,82,102,99,103,104,128,119,107,124,98,98,117,111,115,107,110,109,118,88,107,106,108,108,103,94,96,100,100,104,106,111,116,112,100,101,98,99,94,107,122,107,110,106,97,118,113,113,106,110,102,104,100,101,94,109,106,107,100,114,109,103,111,111,109,96,106,102,105,88,98,110,100,111,113,105,104,103,102,108,104,101,129,106,110,100,106,121,104,94,121,105,91,106,95,100,104,113,116,114,115,87,97,107,101,98,104,97,113,99,104,101,103,100,124,102,96,105,98,101,86,100,96,101,97,95,98,107,98,99,95,103,109,95,108,111,114,121,111,102,103,94,107,103,106,104,105,99,106,113,118,105,101,117,101,105,114,104,111,123,104,118,109,106,107,103,113,103,88,112,105,119,95,91,117,107,123,116,115,109,106,113,90,112,106,96,103,99,106,108,117,101,101,108,92,113,107,114,115,109,103,114,104,110,113,113,112,114,109,101,103,95,102,94,101,112,97,98,110,106,95,95,106,114,92,108,100,102,104,121,111,104,112,103,106,98,107,105,100,95,97,105,100,98,105,107,108,99,117,122,103,93,122,106,99,103,104,104,90,109,88,90,99,111,91,80,108,106,101,105,101,106,105,102,118,105,106,111,107,110,106,91,107,106,102,95,113,109,91,103,108,109,100,105,118,107,98,100,101,101,116,103,113,99,101,110,112,105,108,118,110,100,108,120,113,104,109,113,110,110,117,102,113,102,110,111,98,108,112,96,118,99,106,107,104,105,97,99,103,102,101,101,107,103,131,95,102,99,95,104,101,83,102,109,98,101,104,103,110,108,98,111,107,99,110,104,102,108,98,118,101,105,105,98,90,105,103,110,73,113,114,105,97,107,100,97,120,118,90,95,101,94,103,100,125,111,107,106,106,112,103,100,97,126,98,112,99,110,102,112,105,105,104,116,104,106,110,103,109,102,100,119,108,97,95,94,95,129,114,113,103,102,91,99,106,108,104,100,104,103,96,98,117,116,91,116,110,99,106,125,114,104,113,107,99,115,118,103,103,107,112,101,105,105,107,103,112,105,111,70,104,96,105,100,104,108,90,114,102,109,107,91,101,117,102,111,113,102,98,106,104,108,108,103,99,104,107,108,87,108,104,111,109,111,105,104,105,103,102,110,95,100,104,109,110,99,100,112,111,107,87,117,98,115,100,106,110,116,110,117,112,103,114,124,107,126,106,107,103,90,109,115,97,109,93,110,96,120,103,107,110,109,107,97,121,113,115,89,137,109,96,88,109,104,86,105,105,94,105,107,100,123,97,110,109,99,101,106,91,112,119,99,103,113,104,102,101,112,99,104,107,113,105,96,104,103,107,101,113,105,101,103,102,95,106,106,92,100,112,102,91,99,105,101,106,108,113,108,109,96,102,103,104,121,111,94,101,102,112,103,123,106,104,104,104,96,95,107,109,113,119,113,104,120,116,97,101,107,107,119,99,109,109,105,104,107,94,97,110,99,117,115,109,109,113,105,106,101,106,110,103,98,111,107,104,104,113,109,102,111,93,93,127,106,117,113,109,111,116,108,97,107,88,94,117,99,99,106,99,109,104,115,110,108,109,101,105,102,99,113,112,101,113,79,107,108,107,102,101,107,113,104,98,107,105,106,113,109,113,114,104,103,106,110,108,102,108,107,114,104,107,111,103,106,106,99,99,105,108,107,104,121,82,104,94,115,96,113,115,107,110,107,107,107,116,112,111,101,109,122,101,107,112,108,103,109,106,103,103,101,106,110,105,112,105,120,121,110,89,99,97,102,100,94,113,112,93,107,125,103,106,110,119,110,101,107,98,114,100,102,92,111,107,102,94,96,124,113,89,87,107,92,102,98,112,108,105,109,97,96,121,112,105,112,98,108,89,105,109,111,99,102,115,108,118,95,82,108,94,102,101,98,96,113,90,112,103,109,111,113,114,113,109,124,93,114,100,94,103,118,109,91,107,105,115,98,113,98,108,102,111,104,106,115,99,76,98,106,105,121,107,109,106,104,111,120,108,94,87,102,106,97,103,114,82,91,104,105,112,110,111,109,114,112,104,105,101,107,93,100,105,98,114,104,109,100,101,110,106,109,115,98,113,111,110,105,102,102,108,95,74,108,96,100,108,102,106,95,103,98,100,105,120,106,107,97,112,113,99,106,107,102,113,103,102,104,96,114,107,111,110,112,103,102,103,110,109,113,106,104,107,98,98,101,100,93,89,109,109,114,107,103,94,103,113,95,109,105,97,95,108,98,101,104,118,106,88,114,128,121,114,124,108,97,108,113,104,108,107,97,108,108,114,105,100,95,96,109,96,103,97,114,105,100,99,113,103,102,107,113,109,103,99,106,113,102,103,102,99,107,108,85,116,102,104,125,103,115,110,86,99,100,102,96,98,100,118,92,107,115,111,101,94,110,112,108,105,96,102,99,110,123,100,117,101,99,85,101,103,103,112,99,107,106,113,94,103,107,113,99,102,114,102,107,111,102,106,101,109,91,98,106,99,112,110,97,101,95,122,95,95,115,100,106,108,109,110,113,106,116,99,109,109,110,92,112,105,105,96,108,105,112,101,109,120,103,100,102,104,99,101,104,104,108,104,109,104,94,104,103,99,115,107,101,102,100,114,116,103,110,111,101,107,92,97,117,109,104,101,91,104,115,110,93,104,103,99,116,105,124,106,107,124,108,108,98,101,96,99,105,106,103,105,99,106,102,105,109,99,100,109,93,112,95,104,110,104,112,110,106,100,108,100,104,103,99,98,98,100,102,111,99,109,110,115,115,109,112,102,117,98,104,106,104,105,110,109,105,95,103,110,110,116,105,103,115,108,113,94,106,106,113,105,106,107,109,110,108,115,117,110,108,113,109,116,123,109,95,69,106,101,110,110,107,104,101,107,95,99,101,99,103,101,99,114,102,107,110,98,100,105,112,105,114,92,105,100,104,102,121,99,115,114,101,101,105,107,102,111,109,108,102,102,109,104,100,113,113,105,105,108,106,109,108,105,91,108,93,113,96,90,102,101,107,99,116,99,101,106,115,105,104,112,100,104,99,132,103,108,113,93,107,113,110,95,113,116,99,117,104,102,105,92,97,105,87,95,101,103,99,100,105,105,84,90,106,104,100,110,111,101,96,106,102,103,97,113,120,110,100,98,101,109,115,106,106,107,103,104,109,107,98,97,107,110,113,113,99,105,123,106,108,108,92,96,109,86,102,95,103,91,92,111,115,107,102,104,101,103,116,102,104,92,99,104,102,109,103,111,106,105,98,101,97,100,112,103,102,109,103,102,106,101,106,104,103,87,104,98,107,99,100,89,120,103,105,100,107,93,103,119,92,109,102,103,111,102,98,105,105,99,112,94,104,107,101,72,103,98,103,103,100,114,103,99,104,125,89,121,82,108,116,111,106,109,104,110,110,110,103,105,91,99,103,102,113,100,112,105,99,100,108,95,101,124,101,103,100,109,98,107,100,116,100,107,97,102,115,100,110,101,100,112,108,120,98,111,99,106,109,104,110,112,128,104,108,116,106,100,100,108,101,121,103,100,100,117,116,88,99,97,114,111,104,112,104,111,104,110,106,104,98,113,99,105,93,103,105,107,111,110,117,107,100,101,110,132,108,102,96,99,94,108,103,88,114,112,101,95,98,106,97,115,108,109,108,113,94,104,91,103,106,84,105,112,94,107,99,103,101,128,110,100,104,93,110,98,106,104,94,107,112,100,106,104,97, +536.75861,123,103,102,93,93,98,106,112,89,101,88,96,94,107,109,95,101,99,101,97,109,88,106,95,106,106,109,110,114,105,107,99,98,99,121,105,111,100,109,95,109,94,95,126,103,102,102,104,91,110,107,103,99,100,104,102,96,102,101,93,98,98,108,93,107,108,103,101,104,110,102,113,103,99,100,111,100,100,115,103,110,110,101,105,122,103,101,105,91,123,113,107,102,109,103,112,95,94,105,110,102,108,104,107,96,99,100,93,100,116,110,88,101,106,94,95,105,102,100,109,103,84,114,100,103,104,110,98,102,106,99,81,88,107,110,115,96,96,89,94,101,105,103,96,103,102,90,98,110,97,93,114,108,105,107,84,92,121,96,107,79,102,106,115,109,97,103,108,99,97,102,100,115,97,104,109,110,96,103,108,110,122,108,108,98,109,109,91,108,97,105,105,96,113,93,109,96,105,99,109,109,105,107,102,106,102,109,103,112,118,101,106,109,105,104,108,98,112,104,94,107,106,101,103,106,112,104,105,114,114,96,100,102,117,101,108,99,126,105,104,108,108,95,100,99,108,111,99,117,105,91,109,92,114,102,106,116,114,95,109,83,108,109,105,94,106,99,102,113,101,100,107,102,96,104,107,100,106,106,100,91,105,111,95,106,105,97,103,101,114,101,102,116,103,108,99,107,100,101,107,101,92,104,110,97,124,101,109,104,99,103,112,99,109,102,110,116,101,106,91,111,107,113,122,95,105,100,111,111,110,114,105,108,104,100,103,103,103,113,105,107,113,101,99,113,117,109,116,108,106,107,106,90,102,113,96,113,110,102,95,109,94,95,102,93,105,101,121,102,100,107,115,109,103,100,95,109,94,112,99,101,105,110,99,109,97,104,107,113,107,112,105,89,94,104,95,101,104,109,95,90,112,106,103,96,106,90,101,92,110,97,103,112,95,86,98,99,116,111,106,113,107,103,120,107,84,94,97,108,108,111,115,105,110,118,104,112,106,99,109,105,111,106,118,100,118,105,107,107,108,105,112,106,114,112,94,101,109,118,101,97,110,105,118,103,106,106,107,94,101,110,102,104,106,110,100,120,90,91,111,103,103,111,108,115,94,107,89,107,80,105,107,106,94,100,104,88,104,102,99,107,108,112,102,103,108,100,111,105,92,109,94,100,107,101,99,98,101,100,97,118,91,108,113,115,101,101,99,106,120,95,106,105,122,102,113,115,105,101,112,99,105,104,98,102,88,102,104,105,107,94,108,112,104,108,104,106,107,103,103,106,95,95,103,106,109,127,89,106,107,98,105,104,109,114,99,108,98,100,97,120,101,100,105,103,108,117,105,109,105,118,99,100,108,109,108,114,110,104,94,99,105,106,107,136,103,95,108,111,100,109,103,116,102,109,95,99,99,104,112,80,98,105,105,102,94,100,102,116,111,113,96,107,106,89,106,98,95,115,92,105,113,113,101,106,124,103,114,113,110,99,110,104,110,99,100,132,102,90,118,113,97,103,104,101,136,104,85,114,100,106,107,95,105,92,106,99,98,111,102,111,99,103,90,92,92,109,117,89,111,109,100,98,117,112,117,101,107,112,82,95,100,103,111,104,124,119,109,91,102,109,109,108,110,95,106,100,117,115,108,99,106,95,108,96,93,110,107,105,109,105,108,106,102,103,101,105,93,101,111,109,99,115,102,104,102,88,107,89,100,107,94,108,106,119,102,101,101,128,101,120,106,99,108,108,114,91,122,95,113,111,106,108,100,98,103,116,112,112,94,109,103,100,112,108,95,110,102,117,107,108,122,106,106,111,109,96,98,96,107,98,90,101,102,95,110,107,105,102,90,112,96,107,107,105,115,102,83,99,100,100,102,99,87,97,116,105,106,107,103,105,116,99,102,100,115,109,96,104,98,94,113,122,102,120,99,102,97,105,99,106,104,98,66,82,105,115,109,106,113,106,107,103,112,74,102,99,102,113,110,99,101,101,106,96,111,107,107,97,99,116,88,101,97,111,101,107,115,108,109,101,108,102,117,100,105,112,90,104,104,82,113,98,105,99,105,88,108,110,117,110,94,106,112,100,103,99,106,119,116,116,101,113,114,106,96,106,98,124,100,109,101,107,97,101,108,101,113,104,99,91,85,84,97,110,111,111,105,105,102,103,97,119,105,114,111,113,104,121,107,114,111,109,113,116,106,92,103,104,109,97,103,112,98,105,101,101,99,93,111,94,111,103,118,108,96,100,98,96,97,104,110,96,91,108,83,99,102,100,108,113,104,107,105,117,103,108,121,96,98,102,111,93,78,109,110,98,95,106,82,118,109,103,95,127,98,100,117,98,108,109,114,109,90,105,106,100,95,100,98,99,103,93,108,94,97,107,95,96,107,114,97,109,102,96,98,123,102,120,105,99,111,103,105,108,103,98,110,104,103,104,103,104,107,106,104,114,96,94,105,110,125,113,107,117,101,105,94,120,101,131,100,90,96,109,99,105,104,105,103,107,108,99,114,107,107,99,102,102,114,109,112,98,108,117,101,106,100,95,125,103,110,112,103,91,107,98,100,106,102,117,109,98,105,111,101,106,105,117,110,103,103,98,107,95,104,104,95,107,98,120,104,109,103,109,105,87,108,115,108,111,103,100,99,105,102,106,104,111,108,106,104,95,105,120,112,101,94,110,103,85,104,108,102,108,95,108,121,110,110,100,99,108,112,117,108,110,104,111,111,111,102,109,99,105,109,103,113,115,99,106,93,104,123,106,116,110,105,105,111,99,117,92,102,103,107,105,110,104,99,106,118,98,117,103,99,114,101,108,107,113,106,105,105,117,99,91,109,97,105,117,108,110,109,114,94,114,101,96,103,106,106,112,96,98,106,97,112,107,108,109,104,112,108,108,110,100,115,120,107,105,107,103,100,118,103,104,112,111,116,108,107,111,104,107,102,105,118,111,103,100,116,107,111,90,90,114,102,97,100,96,110,100,97,115,103,118,107,102,99,102,105,95,92,101,110,112,103,94,103,102,102,105,120,107,98,101,112,113,108,103,120,110,104,107,106,117,91,115,102,117,106,102,119,109,99,116,119,101,99,111,115,111,104,124,102,121,98,108,101,105,69,117,106,99,103,99,103,104,101,100,87,113,83,111,118,108,119,98,86,103,96,108,83,105,107,107,109,94,108,109,111,95,112,98,110,103,103,102,100,95,110,111,107,104,112,106,114,102,106,108,98,109,94,112,105,110,95,118,102,102,110,124,105,110,106,106,125,107,102,95,90,100,113,78,112,112,109,111,97,110,109,129,108,110,102,105,104,101,102,104,110,107,115,96,100,103,92,107,95,79,113,111,104,103,105,96,108,100,94,92,105,117,110,107,106,92,95,108,95,103,106,113,113,106,109,119,118,114,111,109,141,107,103,109,96,100,105,105,112,116,92,94,115,101,116,112,106,101,90,105,103,99,104,93,103,113,106,95,106,101,118,105,107,98,110,108,113,113,91,109,100,102,107,107,118,111,100,108,117,103,89,90,109,108,111,112,110,103,111,103,106,109,111,105,109,93,99,100,118,117,99,104,100,102,98,113,102,104,98,98,107,100,109,107,107,107,100,110,111,110,102,104,90,102,81,99,106,83,108,109,98,95,90,101,108,101,99,99,108,98,108,114,109,105,110,99,107,94,102,119,117,109,99,117,93,113,109,102,107,99,99,107,119,92,98,113,112,97,106,118,88,96,99,106,109,106,111,109,109,107,97,103,96,103,107,102,107,98,99,113,103,94,113,104,116,103,102,108,94,103,102,98,102,102,104,110,111,99,102,103,110,108,103,104,102,99,112,112,113,103,113,98,117,97,103,112,116,93,109,102,101,115,101,106,114,101,104,109,110,91,103,113,108,100,117,101,103,103,106,103,102,99,112,104,110,112,105,118,68,102,102,116,99,113,103,97,110,120,108,109,104,99,115,92,109,103,110,92,103,107,108,106,115,95,91,101,92,99,100,97,111,103,80,142,109,110,99,115,75,107,113,100,99,107,109,103,94,104,99,106,111,98,111,118,100,98,84,103,106,97,104,113,110,110,99,110,111,98,107,99,78,91,99,112,107,93,116,99,99,108,102,107,99,109,111,107,95,104,118,97,98,104,99,109,105,102,112,104,104,111,104,101,91,111,131,129,103,87,101,95,108,108,116,104,102,114,117,107,97,113,100,97,107,102,94,124,105,103,117,100,100,116,110,101,115,72,103,107,97,107,98,90,105,94,110,105,100,110,107,109,99,109,106,104,99,109,105,89,103,106,109,98,106,96,99,109,110,111,120,107,104,112,107,112,114,97,103,109,106,100,105,106,104,117,103,109,123,109,104,108,113,127,101,109,108,76,112,107,104,94,105,100,107,103,115,111,117,117,100,98,101,102,106,93,107,110,121,103,108,119,102,114,98,107,90,98,106,100,110,109,102,104,95,110,94,108,94,117,98,90,104,101,103,103,111,107,97,103,101,111,97,94,111,104,107,95,124,94,108,103,92,94,109,107,108,128,107,117,110,109,95,102,99,111,113,92,88,111,97,98,108,120,102,104,111,99,112,122,107,104,101,105,107,105,102,105,101,111,121,110,110,100,108,106,113,98,106,98,122,115,112,103,73,109,99,119,102,104,100,102,105,108,115,100,100,106,99,102,101,95,98,106,101,113,101,108,108,87,109,89,111,109,97,102,104,108,100,103,100,102,106,100,109,100,99,113,104,105,110,110,96,104,101,106,115,98,105,100,109,102,101,102,106,105,107,105,110,95,103,100,95,109,119,108,116,102,98,117,100,116,91,109,103,103,105,120,112,100,101,99,112,108,105,107,113,99,91,112,107,107,127,106,108,95,94,120,116,95,109,95,111,102,112,112,117,115,93,106,105, +536.89941,112,102,94,101,97,101,105,104,108,94,125,105,105,101,100,92,95,117,99,90,110,103,104,101,105,129,96,99,119,106,116,112,96,113,98,97,102,104,71,93,91,98,91,91,82,114,89,107,101,107,107,99,101,95,111,95,95,101,107,96,108,108,106,94,101,108,103,97,96,95,99,106,100,102,99,136,92,99,105,101,108,88,105,102,113,95,99,112,102,109,117,111,117,105,107,104,98,112,101,108,100,106,105,101,99,105,106,101,90,98,111,100,117,103,103,102,93,98,108,102,96,106,98,107,104,109,89,111,105,107,103,111,102,97,104,118,100,98,108,108,102,104,103,113,100,96,113,108,103,114,116,106,122,91,114,101,101,102,105,119,108,108,94,105,120,109,111,99,103,101,104,105,91,106,102,103,108,99,122,111,116,104,108,104,106,103,95,99,103,109,107,104,110,113,102,99,96,103,109,102,101,99,102,103,106,104,121,106,110,99,111,114,115,96,94,95,117,114,114,103,110,105,97,110,76,91,96,98,96,112,102,104,100,97,106,101,115,102,112,104,113,102,131,112,105,101,102,100,96,105,105,108,105,109,103,106,92,117,99,110,92,112,100,105,99,105,108,102,95,106,102,112,107,111,112,98,92,104,101,110,111,94,104,103,96,106,97,99,118,88,104,110,96,106,110,107,107,100,105,103,93,84,126,115,81,119,120,113,99,111,85,104,111,101,108,125,107,98,105,95,113,103,107,103,106,108,105,100,106,111,110,98,105,96,90,107,99,98,100,108,101,99,105,105,107,99,106,121,105,111,109,107,117,113,105,118,119,106,103,102,109,100,94,95,86,96,98,110,94,110,102,94,101,104,104,97,108,100,74,100,107,105,120,109,119,101,103,106,105,101,113,108,107,111,102,99,100,105,110,108,125,106,100,91,106,95,96,104,127,106,95,96,96,120,110,104,104,101,115,100,106,101,107,110,105,104,98,90,105,112,105,113,99,97,103,109,101,113,93,104,122,106,105,98,91,114,98,106,105,103,101,95,101,107,112,92,71,105,112,121,102,109,111,108,119,106,101,109,111,104,101,98,100,117,111,97,101,109,111,104,98,94,84,99,101,107,89,99,106,104,112,103,118,106,97,115,101,119,100,115,108,118,129,112,109,110,94,109,97,113,103,101,96,98,109,115,104,101,100,92,86,104,110,106,87,93,110,106,108,94,94,99,99,101,103,96,110,101,95,97,97,112,102,104,102,92,98,106,104,105,104,113,94,78,110,95,110,108,107,93,102,97,98,109,111,108,105,105,104,122,106,91,112,106,105,105,113,99,100,100,103,111,94,94,106,112,109,103,109,106,109,101,111,90,109,96,104,98,103,117,137,108,113,108,104,101,96,104,104,113,91,115,125,100,106,104,97,114,103,95,91,105,117,111,106,109,95,99,104,113,117,108,105,112,92,99,100,104,102,100,105,97,100,103,112,98,105,112,109,111,103,108,106,116,99,112,113,104,108,105,95,110,92,121,99,106,108,93,108,95,101,113,106,102,96,103,100,100,112,116,105,106,109,112,110,104,79,94,107,103,104,112,106,103,105,111,103,106,99,99,113,102,93,103,80,103,114,115,111,100,94,103,104,104,109,100,109,103,99,106,104,102,93,106,100,104,106,105,94,127,98,102,91,120,97,114,114,100,123,105,108,79,110,107,108,112,109,105,109,100,102,103,100,91,96,104,99,99,115,104,105,95,91,112,105,98,92,103,107,106,79,114,97,101,112,97,113,98,98,97,99,109,113,109,106,104,116,98,103,115,108,105,100,127,94,103,113,117,102,103,94,101,99,101,110,104,104,105,109,119,107,112,106,101,107,106,87,106,124,103,101,105,103,105,101,118,112,98,111,109,115,101,103,86,106,104,105,107,103,108,129,100,100,98,100,111,96,104,108,96,106,80,100,101,112,111,95,108,98,95,111,112,89,97,98,96,92,100,111,99,107,102,99,110,105,100,92,97,105,100,96,95,107,108,105,100,100,113,105,100,110,111,106,97,109,87,109,105,89,109,103,87,106,98,116,121,113,106,110,118,104,102,118,99,104,101,98,102,106,91,110,109,116,111,113,100,89,100,104,102,108,120,113,103,101,98,96,100,119,102,114,102,121,104,113,99,100,102,101,113,105,96,115,100,106,90,112,116,104,113,115,113,112,112,99,108,104,99,111,104,102,112,108,106,110,102,105,94,114,70,103,109,103,89,76,107,100,104,106,113,108,86,102,109,101,99,110,87,95,101,100,107,100,110,115,112,100,113,104,95,104,115,99,102,103,99,113,103,106,108,107,106,108,96,105,112,94,109,99,102,107,103,106,113,110,108,110,94,112,110,105,112,96,90,101,112,115,91,105,119,107,114,104,95,102,104,104,96,108,76,101,103,109,113,113,106,101,101,118,99,89,113,100,96,99,112,101,110,100,108,108,94,100,99,106,111,101,105,109,103,99,107,104,105,112,108,112,102,121,92,108,101,104,112,104,97,95,99,98,114,108,124,115,106,77,116,103,120,103,114,113,107,111,102,101,101,102,109,108,101,112,106,102,100,106,103,102,102,102,105,107,97,93,105,102,104,109,108,111,101,100,109,100,102,101,109,105,108,102,109,75,95,122,96,101,106,104,107,108,100,106,85,107,95,81,110,101,97,103,94,113,94,113,109,99,95,99,110,91,105,105,102,93,105,111,104,105,102,94,104,81,98,99,109,102,113,101,103,105,103,107,107,97,108,111,104,112,111,98,94,113,94,111,62,93,106,101,109,107,100,105,108,101,100,98,105,107,96,105,111,106,109,100,92,107,93,123,111,101,109,99,100,105,100,95,101,108,106,90,113,99,116,113,109,114,113,111,105,99,112,105,112,96,104,108,109,106,110,93,101,119,104,127,112,118,104,100,107,109,108,121,103,103,111,111,98,111,95,97,110,106,106,101,105,101,107,109,102,104,105,102,106,120,99,124,109,109,102,91,106,111,117,107,68,108,110,118,107,106,115,96,104,99,106,113,106,100,100,98,109,102,116,104,109,104,114,97,107,108,104,74,105,102,105,101,95,117,109,105,99,111,105,112,97,114,102,109,96,104,114,102,106,97,106,89,108,108,93,113,97,101,114,98,91,117,99,95,97,92,97,106,90,107,102,102,101,95,106,109,73,103,101,108,95,98,108,108,100,101,107,106,108,87,100,108,101,102,111,98,99,107,104,91,95,104,113,98,95,108,105,104,95,91,121,117,102,101,109,96,116,99,94,102,99,115,100,102,107,102,97,111,100,104,110,105,116,96,99,104,92,107,109,92,111,108,111,100,89,110,100,105,112,92,105,103,110,105,91,101,106,115,117,107,102,110,87,87,108,105,95,106,112,98,96,97,112,110,105,104,103,97,101,87,103,91,110,115,111,107,101,102,96,107,109,107,103,106,104,102,110,91,117,105,89,98,114,110,119,101,99,117,104,87,97,112,91,108,99,111,108,103,110,101,109,108,100,104,99,97,95,105,114,100,120,99,106,100,106,103,122,97,113,103,117,96,103,95,109,114,102,96,101,102,100,104,124,113,103,115,84,93,106,111,112,104,102,106,102,111,96,95,107,101,89,107,119,115,110,105,110,97,105,104,104,101,91,101,105,116,114,110,93,108,104,110,110,108,98,107,112,96,100,108,108,92,105,94,98,102,120,100,97,99,111,100,97,113,118,97,92,109,100,105,113,104,103,116,109,95,92,94,80,90,100,95,98,102,99,99,104,110,112,91,96,100,109,108,96,114,95,99,107,105,114,104,96,109,98,108,112,100,111,105,107,95,118,100,111,110,104,104,99,97,111,107,113,107,110,103,95,96,102,100,100,106,101,112,104,91,111,104,108,112,94,105,103,95,111,95,103,105,96,106,102,106,102,109,111,115,108,102,91,106,118,108,112,104,92,120,101,86,103,102,109,97,98,96,103,101,107,108,109,108,81,107,83,94,116,101,93,103,108,102,102,99,105,104,102,104,101,123,110,101,127,108,99,105,78,103,106,101,96,101,104,114,110,92,104,118,107,79,103,108,100,96,104,96,111,104,113,105,103,110,101,104,105,104,102,98,105,94,103,121,97,92,100,107,99,108,116,100,94,98,100,106,109,95,104,106,93,105,102,96,103,99,103,97,103,104,104,98,99,100,113,102,102,108,124,95,107,108,105,95,102,96,109,106,106,94,100,103,92,102,105,115,101,112,103,100,104,98,116,112,99,110,112,93,107,109,99,108,112,105,99,97,93,96,82,97,119,99,103,102,104,103,106,102,103,100,100,106,96,114,98,103,115,104,83,107,91,98,96,103,100,104,106,107,115,113,108,100,111,100,98,98,103,98,105,91,93,105,98,100,116,95,109,101,108,82,102,99,88,103,99,110,98,98,107,107,103,106,117,105,102,113,102,96,116,109,111,101,102,96,111,94,90,109,107,118,101,104,91,105,116,107,105,98,104,105,104,102,112,87,108,101,101,105,98,109,105,94,101,101,104,103,103,102,102,104,108,96,96,90,97,100,94,96,104,100,95,97,103,99,88,95,99,106,95,104,92,102,103,104,100,108,103,100,99,102,94,102,111,104,77,103,102,96,101,109,93,112,94,109,105,112,95,95,97,112,108,113,105,99,106,105,102,88,92,112,105,98,95,102,108,102,99,96,111,102,106,116,106,113,106,111,101,97,101,102,97,117,96,101,107,100,96,92,105,102,95,112,95,106,87,114,98,89,100,100,104,108,101,93,102,92,113,104,101,116,95,75,107,109,102,96,97,98,101,96,96,113,107,100,113,99,111,116,106,101,121,101,125,109,119,100,109,89,104,100,125,104,92,94,99,113,90,105,98,100,103,103,109,106,95,97,102,118,91,100,109, +537.04016,97,103,97,97,111,104,109,105,100,105,94,98,102,93,104,106,117,115,93,118,104,123,120,122,103,128,94,111,103,83,107,91,112,106,107,107,96,98,100,95,103,97,107,117,115,110,97,104,100,94,121,97,110,100,97,109,113,103,111,100,106,108,102,93,111,115,113,108,108,85,115,117,102,109,102,102,91,96,100,94,103,95,108,96,102,91,117,100,98,104,96,100,105,96,102,120,106,102,110,108,95,94,106,107,108,112,96,109,101,97,107,101,103,111,97,107,98,101,111,95,100,75,104,98,103,97,102,106,106,106,106,114,101,105,109,112,95,109,97,102,93,100,100,103,106,99,102,109,109,104,121,105,113,96,80,93,98,105,106,99,95,87,115,112,96,109,109,94,117,102,107,99,110,92,99,108,98,101,103,98,95,107,101,101,105,98,110,104,109,103,106,106,106,110,91,104,106,109,101,113,103,110,105,118,102,107,114,112,98,102,92,99,107,104,113,115,101,112,103,102,92,103,108,88,116,102,104,117,114,110,86,91,109,95,108,110,114,94,101,112,91,106,103,109,100,91,105,99,105,125,107,112,98,110,100,111,104,120,97,96,98,99,99,97,105,119,104,99,126,102,109,108,96,99,121,106,114,106,108,103,106,105,102,105,99,112,95,102,108,104,117,97,104,110,106,118,111,100,107,122,98,99,104,110,97,107,101,109,109,97,96,107,109,102,92,112,104,115,110,99,108,103,92,115,101,107,102,94,108,125,98,108,118,104,116,116,118,105,95,108,89,109,113,101,112,102,99,94,105,113,103,84,98,105,100,98,95,96,107,98,104,101,91,86,105,114,103,101,106,85,106,102,110,109,98,95,104,96,102,105,99,103,110,115,101,103,125,103,112,106,107,87,110,99,108,99,106,98,100,101,97,108,109,105,98,95,109,109,103,99,100,111,96,89,108,99,93,105,102,85,105,95,97,104,102,90,95,104,110,105,107,103,104,97,108,96,100,111,102,109,110,93,95,96,102,105,100,90,100,104,100,83,119,114,113,106,110,103,112,111,103,102,104,110,98,106,108,98,110,104,112,124,103,113,109,108,113,105,101,102,109,107,87,114,100,102,103,115,103,106,113,96,99,93,109,109,111,105,102,103,71,105,94,122,113,108,100,105,116,114,106,108,101,103,108,108,100,102,104,91,105,98,103,109,109,108,100,118,97,99,106,102,101,76,106,100,99,102,95,122,113,112,97,110,115,91,108,95,108,112,98,103,85,120,100,100,100,105,99,112,96,111,90,106,110,91,105,104,99,103,105,100,113,129,98,108,121,109,109,93,107,99,101,103,93,106,111,104,97,103,106,109,104,93,106,109,98,103,112,125,114,108,138,111,103,96,100,99,112,103,108,100,103,100,108,101,88,103,106,97,119,103,98,98,99,105,92,101,100,123,118,104,106,103,102,111,109,114,101,101,102,117,90,110,106,95,121,101,103,111,104,105,91,105,105,111,106,113,114,101,107,110,110,107,94,103,106,101,104,101,117,100,110,104,99,97,112,103,117,99,103,99,106,94,90,101,102,86,94,102,107,98,96,91,106,133,104,109,104,97,102,105,112,93,105,74,108,105,112,74,93,106,97,99,98,101,94,95,104,112,113,92,112,108,106,83,108,97,98,102,122,91,91,107,110,102,109,110,114,105,105,100,103,96,102,105,99,107,98,100,111,104,105,93,104,112,97,114,103,86,106,105,98,100,108,95,97,100,102,88,98,101,104,96,101,104,109,105,108,101,107,89,115,102,91,105,107,99,91,122,104,102,111,117,107,109,100,88,107,106,98,105,105,106,94,101,109,108,100,106,86,100,110,108,115,118,102,105,104,104,99,104,103,108,114,110,84,105,103,110,105,104,102,100,105,107,106,119,106,96,107,113,102,94,105,104,120,109,92,104,110,91,109,94,102,95,98,106,94,114,105,96,88,97,111,95,98,103,116,111,102,117,94,100,104,95,109,100,94,95,95,94,111,97,109,112,107,100,103,102,99,109,106,106,100,108,92,102,99,110,97,114,113,93,103,106,96,74,108,116,110,103,106,113,100,115,101,110,102,109,108,100,113,120,105,105,103,114,93,109,123,105,101,106,107,106,100,100,95,109,104,99,100,110,107,109,102,105,99,102,86,97,94,114,113,108,108,100,87,101,90,112,107,113,119,100,108,100,104,94,116,97,95,101,107,96,95,92,103,78,109,104,99,113,107,102,96,99,102,124,95,103,106,126,97,110,107,100,111,97,90,103,111,92,102,100,108,107,103,113,103,107,103,108,98,103,100,109,105,96,85,114,96,101,102,87,100,105,109,95,102,103,108,96,110,100,99,95,105,113,109,105,93,104,105,109,112,117,111,104,114,110,90,112,105,109,103,96,94,99,117,105,108,106,98,105,79,113,104,92,95,101,110,96,102,106,103,112,101,103,101,98,98,111,98,102,114,102,107,115,112,106,115,98,107,109,100,103,99,113,97,99,114,104,108,111,97,89,81,112,107,109,99,109,97,101,103,92,100,101,115,114,104,101,79,100,107,106,100,100,113,110,118,97,98,110,106,99,106,104,103,117,99,99,105,90,91,105,103,111,119,103,113,118,105,115,123,109,91,118,98,95,111,98,103,107,98,96,97,106,99,108,106,103,112,106,108,103,106,111,109,96,104,109,108,115,109,113,116,105,105,111,111,103,107,116,111,97,104,93,107,96,116,105,106,107,112,93,99,107,105,112,98,107,120,102,104,121,83,96,117,112,96,95,119,86,96,102,120,104,112,119,109,112,114,113,116,109,110,105,101,116,115,108,104,105,111,116,113,117,120,102,99,107,120,107,115,121,103,118,123,117,117,109,110,105,115,103,90,110,109,131,102,115,104,107,100,103,104,99,109,108,105,105,119,113,104,106,99,108,102,121,110,115,102,98,109,98,107,101,102,107,110,84,94,111,114,105,99,94,103,112,101,88,105,110,106,104,100,100,120,112,102,103,106,97,117,102,97,100,100,106,124,121,119,100,112,101,107,107,123,116,120,104,111,113,105,102,105,109,99,92,93,110,79,112,112,102,106,94,99,104,108,118,108,116,114,104,102,97,103,114,106,100,113,112,117,106,101,107,100,94,104,99,101,98,116,108,97,105,88,103,106,94,104,102,99,104,109,105,104,110,101,96,116,103,114,118,101,106,96,114,98,107,99,107,117,109,100,109,105,102,101,102,108,101,113,106,115,97,106,97,111,132,111,101,88,124,103,105,99,103,102,96,116,99,113,98,110,115,107,104,102,110,104,107,108,95,97,101,109,94,105,100,98,106,105,106,112,93,99,105,109,101,119,116,108,108,107,107,92,110,111,103,129,108,106,109,110,91,107,91,114,98,109,104,99,101,113,114,98,100,108,103,117,103,124,92,127,105,107,106,104,104,104,112,113,109,101,99,108,113,98,100,108,97,105,101,110,98,94,104,105,103,99,99,112,110,108,102,106,116,104,113,116,112,115,109,104,111,116,108,106,110,110,104,116,106,99,130,94,106,118,105,95,105,98,106,108,133,107,97,98,115,98,100,114,104,107,95,84,98,95,102,117,100,114,90,113,109,101,105,99,91,111,100,101,95,97,104,108,106,118,106,99,103,107,101,100,100,101,125,111,110,96,97,98,106,107,98,95,102,99,109,100,107,128,116,106,102,104,100,109,109,103,100,93,105,104,72,100,102,104,97,106,116,105,103,95,85,98,105,94,101,116,107,106,109,98,104,104,108,89,112,113,99,106,100,109,111,110,98,100,113,107,107,104,114,106,117,104,103,111,106,102,110,112,108,109,84,95,107,106,102,99,106,97,101,106,98,109,100,113,105,105,106,96,108,98,103,99,100,95,102,94,96,112,105,99,100,102,106,112,90,107,106,100,98,112,117,97,105,108,111,102,110,104,92,111,105,106,106,94,68,105,111,105,107,97,102,113,109,112,111,105,114,89,102,109,105,101,101,100,107,113,88,95,126,105,105,117,108,108,97,103,100,106,101,114,109,99,102,105,107,99,113,106,99,120,94,104,97,106,99,109,107,117,107,99,99,108,107,106,98,109,107,104,106,106,96,101,67,96,106,108,113,102,99,114,111,109,97,98,109,117,99,103,107,103,99,95,101,99,98,98,96,104,108,111,105,68,105,112,98,99,97,101,116,104,110,106,127,100,102,102,104,80,102,101,113,111,102,95,105,99,111,103,110,98,102,106,104,123,77,95,102,107,107,102,106,91,101,104,112,103,97,104,101,100,95,94,109,103,99,103,105,101,103,94,113,104,110,125,102,97,113,102,108,103,105,109,102,100,100,103,92,99,110,105,115,93,101,109,109,103,129,101,107,93,91,103,103,104,104,86,105,117,122,94,112,103,100,105,85,112,110,107,106,116,107,110,92,103,108,97,111,107,99,108,106,109,102,104,104,91,102,109,99,107,115,102,107,108,101,110,97,104,102,104,104,92,98,101,108,105,103,110,99,91,98,102,109,103,89,106,103,104,96,112,105,106,108,102,102,76,116,105,107,105,101,102,98,125,105,110,106,115,109,99,107,109,101,107,115,113,97,109,100,100,99,106,99,99,96,96,110,110,104,101,94,103,111,113,98,107,98,113,106,101,91,94,101,106,108,101,118,97,105,107,125,111,95,104,103,99,105,90,114,117,106,108,102,121,97,111,99,96,115,92,79,102,101,106,108,109,104,114,102,101,137,101,97,124,106,103,100,101,102,99,112,81,96,97,97,115,100,112,119,100,107,98,108,104,114,97,99,99,107,105,104,102,108,105,99,122,106,107,101,104,115,106,107,99,107,102,110,101,109,119,104,108,108,105,97,107,103,110,104,109,98,106,107,100,102,104,108,98,106,91,101, +537.18097,109,113,103,96,97,104,93,106,109,104,107,99,104,104,101,100,95,107,101,98,106,110,99,106,109,107,104,103,115,143,104,116,103,106,112,84,81,106,117,96,106,101,123,103,113,104,102,108,85,112,95,91,97,94,102,99,98,100,109,103,99,105,113,99,108,103,101,97,111,99,99,105,114,100,109,106,104,98,105,115,111,112,98,92,105,105,99,111,106,109,107,102,98,94,90,99,99,94,102,106,103,100,96,102,98,105,112,114,103,89,96,100,103,110,102,114,99,107,101,112,112,110,112,105,117,107,102,103,120,96,106,109,101,104,98,94,97,106,99,112,102,108,110,87,104,104,101,91,107,115,107,109,115,97,99,104,102,123,104,122,102,106,116,109,98,129,99,104,106,113,96,103,95,99,95,101,99,97,102,103,110,108,100,114,110,96,106,85,107,119,103,103,109,111,115,115,100,109,98,111,116,103,103,98,96,105,118,113,105,125,97,110,112,103,108,104,99,111,99,112,103,106,106,105,103,116,108,108,106,103,93,115,102,105,96,117,108,112,109,81,97,109,118,88,100,105,107,107,104,107,105,114,94,123,95,109,94,106,92,101,102,118,108,103,101,108,112,104,103,88,109,106,98,99,105,109,106,111,108,92,122,101,106,97,97,105,108,115,103,100,113,104,94,97,98,113,112,99,107,103,102,92,107,103,123,100,104,101,113,102,98,107,113,109,101,104,112,105,101,97,105,118,121,103,109,108,102,94,107,104,111,104,115,100,113,105,104,101,121,103,107,103,107,104,103,108,105,120,112,108,120,103,105,109,114,101,118,107,102,111,109,99,110,105,105,106,110,87,99,107,110,96,112,103,105,91,105,117,109,107,103,111,109,109,113,107,101,97,90,108,113,96,101,99,99,106,119,102,102,117,101,109,117,103,111,104,99,106,109,110,95,102,115,112,105,89,114,85,115,92,94,98,101,103,102,93,106,101,113,110,95,114,101,115,95,97,99,106,118,103,110,109,102,113,101,113,108,113,109,103,101,101,96,107,120,99,98,99,102,113,111,124,111,116,94,108,97,104,99,103,100,114,109,102,105,101,103,99,100,104,98,101,113,122,105,99,99,114,105,106,104,104,105,99,98,104,96,104,102,105,118,111,108,111,99,112,101,94,104,128,111,114,103,100,85,103,106,102,101,92,108,104,107,103,102,96,108,108,113,103,98,109,106,101,95,95,110,104,103,114,97,115,104,100,108,101,105,101,102,113,112,111,106,105,107,107,114,100,105,125,104,101,101,99,108,102,107,112,100,110,101,103,105,96,108,108,104,112,100,128,105,97,92,109,103,110,99,107,114,95,104,108,119,100,119,119,102,100,109,99,104,104,106,95,110,100,112,100,113,100,111,113,111,105,105,113,106,92,105,110,116,124,94,103,106,106,107,106,99,103,104,110,111,111,109,107,100,102,108,101,115,116,112,110,96,100,114,98,109,130,110,116,115,105,107,106,110,110,111,109,113,110,102,117,111,102,117,101,110,109,107,114,100,98,107,99,103,102,110,100,109,120,101,105,107,101,112,98,105,98,105,99,113,104,114,120,104,108,115,94,106,98,99,113,104,114,111,112,97,95,114,105,121,94,106,102,105,106,105,99,115,101,109,108,108,104,95,116,106,107,119,105,104,101,102,97,107,106,130,94,111,110,113,105,100,110,91,106,99,102,100,117,104,115,107,103,107,105,100,108,103,100,101,106,114,99,105,102,106,112,91,112,104,95,106,98,112,110,104,100,105,114,105,96,99,107,102,104,96,97,102,118,108,113,113,108,102,111,92,103,107,106,104,117,113,106,114,102,100,108,104,108,99,81,113,98,101,89,108,108,112,102,109,113,95,118,106,102,108,105,101,105,107,103,99,95,112,113,122,112,107,106,111,109,115,104,104,85,103,107,111,105,106,100,105,106,110,108,97,115,103,92,100,96,123,101,101,114,110,108,105,117,113,104,95,112,106,100,99,99,104,102,99,100,97,113,96,114,113,79,104,113,107,109,104,104,100,139,117,122,88,102,105,101,96,109,103,101,108,101,98,104,98,109,108,111,99,105,100,102,100,103,118,111,102,99,113,106,96,110,103,110,109,118,99,108,98,103,103,112,102,103,113,113,104,100,104,105,110,92,107,99,110,112,114,100,104,117,96,115,102,99,100,104,115,88,115,104,108,104,109,105,108,106,103,122,100,96,101,104,90,113,102,98,104,114,123,94,123,130,104,110,94,106,100,95,118,109,103,107,106,103,113,91,103,115,103,107,104,99,93,98,91,120,100,107,113,116,108,106,113,124,104,108,108,101,121,102,101,105,113,104,118,91,109,104,108,105,107,98,104,103,96,107,108,138,114,111,91,88,109,80,110,105,92,105,106,107,111,104,97,109,105,115,103,99,98,101,102,109,99,109,100,103,118,98,105,105,109,98,116,116,100,111,104,110,109,112,99,99,116,113,103,119,104,110,105,113,105,98,115,109,115,113,105,110,116,109,103,91,97,111,103,100,118,102,100,103,96,104,102,94,107,104,103,99,98,116,105,107,108,109,85,92,95,101,121,91,100,97,99,112,113,100,106,91,107,95,113,107,109,100,102,106,113,120,110,112,105,115,104,102,96,96,112,111,109,91,108,101,110,106,101,99,102,123,106,101,110,102,116,104,103,100,104,100,104,101,122,106,108,100,112,111,95,108,105,98,100,102,110,105,117,95,109,110,115,115,100,106,110,99,119,105,114,102,102,119,105,102,117,113,94,106,101,103,105,103,108,103,99,109,109,94,95,98,108,101,102,104,100,113,111,98,95,95,119,106,99,96,112,104,104,111,102,99,109,109,107,109,103,109,109,115,111,102,95,108,100,114,105,108,104,105,116,103,103,101,117,105,99,114,74,106,108,112,95,106,107,102,105,111,113,104,98,100,109,97,97,107,105,98,100,110,92,109,95,105,91,94,103,112,106,88,106,101,104,106,112,105,107,110,105,104,100,98,96,105,101,105,103,122,100,119,106,80,100,102,95,88,106,121,110,102,112,87,119,110,112,98,109,99,90,109,91,99,100,100,99,96,102,110,101,105,111,108,109,103,99,100,113,103,107,114,96,102,100,107,116,113,106,91,78,113,102,103,103,101,108,99,75,93,104,104,108,89,113,104,95,115,103,100,110,103,107,107,107,107,99,96,99,106,108,105,102,94,113,95,107,100,114,95,105,100,105,105,99,103,103,101,102,110,108,141,107,121,114,112,99,99,105,101,109,105,102,105,104,112,108,101,98,118,110,96,97,104,109,101,96,93,99,109,98,102,73,102,99,96,102,95,96,110,109,102,103,101,101,99,112,107,98,103,98,84,104,107,95,109,95,95,117,96,107,100,111,105,100,106,97,98,99,102,115,78,110,90,116,100,84,102,118,106,99,106,99,109,100,99,105,99,116,112,112,85,97,94,108,102,103,103,110,112,98,100,101,105,102,105,88,108,115,104,101,107,113,98,113,110,110,90,110,101,84,109,102,99,115,112,88,92,108,101,110,99,111,105,97,105,109,110,113,106,101,112,110,100,111,99,102,106,99,116,95,92,116,103,115,101,100,100,105,122,107,102,107,104,108,91,102,112,83,111,86,108,105,109,96,100,104,109,101,103,106,104,94,101,97,104,101,100,97,110,109,116,110,96,96,107,113,107,99,100,99,102,105,104,108,91,109,92,106,108,109,107,121,108,105,92,102,80,106,98,98,93,105,105,101,106,104,108,84,100,100,108,99,109,87,99,99,96,108,105,105,119,113,107,102,111,90,105,101,94,107,108,82,108,104,106,93,104,98,106,101,104,102,117,104,104,102,135,105,118,113,107,90,114,104,105,98,107,102,86,103,104,100,99,100,99,107,108,105,109,102,106,92,101,109,103,99,104,102,102,111,106,93,128,116,113,108,111,88,107,85,109,127,120,102,103,106,107,99,101,109,109,108,115,104,105,104,110,105,108,94,111,103,108,99,113,105,102,104,116,94,95,111,102,108,92,104,116,102,119,99,103,103,108,103,101,105,99,99,108,100,96,104,121,113,104,105,98,110,119,106,104,105,120,111,108,95,101,89,100,106,118,95,92,98,103,114,102,102,131,87,107,105,113,98,102,105,104,106,104,96,111,112,112,95,100,100,106,106,98,106,106,76,104,95,108,109,111,84,107,111,91,98,105,111,96,109,102,111,99,111,90,101,107,139,127,108,93,99,109,100,94,102,103,90,115,106,96,102,106,106,112,100,103,101,105,115,93,98,110,94,128,96,104,106,106,111,105,102,108,104,117,113,104,91,101,105,108,94,98,114,99,103,118,100,95,102,106,106,99,112,103,113,103,108,110,98,100,106,111,106,100,104,113,111,102,115,102,100,97,103,105,95,94,98,87,109,89,103,105,102,95,96,104,102,95,105,103,102,119,102,114,102,83,98,113,119,96,109,99,105,104,108,95,94,106,109,101,89,101,81,115,106,109,104,107,102,100,93,100,87,101,97,103,95,97,97,106,100,110,87,109,104,97,94,105,110,104,94,112,112,108,93,105,95,116,90,98,111,109,102,114,111,100,100,110,99,107,98,105,80,113,102,104,98,104,104,110,107,109,96,106,107,109,112,96,95,97,97,96,98,107,97,97,95,122,103,102,111,95,111,103,105,91,100,102,97,95,97,105,106,102,99,91,102,95,93,103,96,110,99,96,100,118,106,96,111,102,104,101,108,110,107,95,97,115,100,100,94,128,102,110,103,118,102,108,104,105,102,109,98,101,105,105,96,102,95,101,115,101,104,113,102,100,111,102,95,104,107,96,90,100,109,98,100,74,107,99,99,110,99,104,107,103,95,107,110,107,109,117,99,97,120,102,123,96,96,105, +537.32178,114,112,95,89,96,99,103,121,106,88,109,125,122,112,113,98,100,101,112,98,105,100,106,114,89,103,106,112,116,103,104,104,102,102,91,108,106,102,114,107,107,107,95,100,108,113,100,114,98,106,100,95,103,117,112,95,96,112,105,110,105,102,115,120,111,116,100,106,91,72,116,104,106,108,99,106,91,113,106,99,96,104,111,113,109,97,104,110,103,106,110,117,104,97,98,110,117,98,94,103,104,98,95,107,117,106,97,109,104,111,107,101,107,107,100,99,105,96,105,103,111,103,109,113,107,103,98,103,102,114,102,117,103,100,113,101,109,100,103,110,101,111,106,101,99,99,107,103,96,110,108,97,100,102,106,101,90,95,102,104,111,108,123,110,107,115,113,90,100,103,97,116,99,102,108,106,99,96,125,103,100,92,104,105,119,98,110,94,92,108,113,103,99,107,101,105,98,104,101,108,107,105,105,105,94,112,114,106,95,107,118,108,103,102,104,107,100,111,105,106,114,107,101,110,99,102,103,101,102,105,110,108,93,109,105,109,106,102,103,102,108,97,112,104,99,101,91,109,105,96,81,111,94,101,106,109,113,115,105,110,106,112,96,115,99,101,94,104,101,106,103,97,115,97,115,102,114,114,99,108,95,103,82,100,113,94,92,101,106,101,101,100,105,110,110,109,111,102,104,113,102,100,121,105,83,108,104,96,128,105,111,104,99,105,110,103,99,101,105,96,117,99,98,105,104,105,98,90,118,104,101,103,109,101,106,106,106,99,100,117,96,105,108,100,98,107,104,106,100,117,99,102,93,100,109,115,104,110,112,107,106,99,128,103,100,102,95,99,109,103,106,106,98,96,95,105,105,98,99,99,112,112,113,100,99,101,104,101,102,117,108,103,99,108,98,104,103,98,115,107,95,111,104,112,109,99,97,113,112,95,106,109,117,108,102,112,109,103,102,115,108,95,95,114,111,117,96,87,109,116,107,107,94,96,106,102,98,113,110,99,127,100,99,110,89,108,93,99,117,94,98,103,111,111,101,127,102,104,103,97,105,106,102,106,82,102,86,114,99,106,117,99,105,97,104,98,105,113,105,110,101,105,120,102,102,113,112,111,112,102,108,111,107,112,109,105,99,105,102,89,111,104,98,105,112,109,103,100,99,110,115,99,104,103,106,114,113,122,110,92,108,102,104,116,121,101,109,105,103,107,94,111,108,98,102,102,103,87,107,102,99,107,104,102,107,97,102,104,99,123,106,125,101,75,95,102,109,97,96,106,105,91,111,101,106,95,99,106,104,100,92,102,108,97,94,108,100,96,93,106,104,92,104,120,115,94,103,106,93,121,106,96,98,96,111,103,107,103,82,104,114,105,98,104,100,95,102,107,114,104,114,106,109,110,106,111,97,103,95,88,100,100,102,109,112,105,90,101,106,101,118,115,110,116,117,100,101,103,116,103,114,107,106,122,106,99,96,109,113,111,94,108,103,108,107,105,98,104,115,104,111,114,114,121,95,108,103,103,103,95,103,101,91,105,116,108,114,100,113,103,104,95,113,97,117,108,106,94,107,94,108,101,98,107,90,110,113,113,98,105,102,112,110,111,111,110,102,113,106,110,113,103,96,111,114,105,110,99,110,102,104,110,106,109,109,104,110,112,110,107,109,97,124,92,110,99,91,102,122,93,103,110,104,110,98,108,108,116,103,107,111,106,97,96,118,109,111,101,103,98,110,113,95,105,103,100,96,111,110,99,103,97,114,113,108,99,113,105,71,105,100,104,113,110,97,115,100,103,100,109,97,98,103,107,99,108,107,106,100,121,114,109,104,110,105,104,101,109,103,103,114,99,101,98,111,90,110,108,101,111,104,97,108,109,95,102,111,105,108,99,120,114,103,86,107,119,106,108,109,102,105,108,109,103,103,105,100,101,102,105,119,108,117,110,110,107,102,102,97,101,119,106,101,104,92,100,93,100,105,104,95,95,99,107,110,107,100,125,99,100,103,98,108,104,103,107,91,117,105,88,104,120,110,103,107,83,106,97,103,106,100,110,103,111,104,103,98,121,101,103,102,103,110,113,99,108,100,107,98,103,99,102,108,103,117,96,101,109,96,103,104,109,111,108,108,103,105,113,104,96,93,104,102,110,105,105,114,105,103,102,101,103,106,122,105,103,89,98,96,107,110,111,112,108,105,99,106,105,109,118,94,95,99,104,105,122,115,109,93,106,96,118,111,104,103,102,90,111,101,103,120,88,98,101,112,95,108,102,104,112,137,101,96,86,107,118,114,117,100,91,96,103,93,103,98,105,98,100,97,103,104,78,114,109,102,104,106,96,104,105,113,116,105,98,113,93,111,104,116,104,116,107,101,110,116,100,114,108,101,99,117,130,108,111,96,80,87,102,107,107,100,99,111,103,110,103,111,95,119,98,101,107,102,106,106,102,116,106,108,103,112,112,98,116,103,106,92,103,116,109,106,96,116,102,117,101,91,100,105,102,103,92,115,98,106,105,104,106,102,87,112,121,105,108,107,107,116,112,91,111,74,112,98,105,105,117,97,101,94,99,104,107,112,95,103,108,107,104,105,102,101,94,104,116,104,94,108,112,101,93,110,108,103,110,101,105,137,104,119,107,102,112,90,101,105,108,113,94,107,106,97,103,107,97,108,111,104,103,110,104,108,109,99,103,96,113,110,108,108,100,108,96,113,100,108,100,89,103,126,88,104,118,114,119,117,108,96,102,95,112,116,103,102,107,111,110,113,106,107,99,97,106,105,103,104,112,102,110,96,98,103,102,104,119,99,101,108,112,76,108,103,108,116,106,110,122,116,110,100,112,103,94,93,112,103,93,94,97,96,108,109,101,105,117,111,97,128,109,105,98,100,110,103,117,113,93,105,105,105,109,105,106,101,107,99,115,98,111,96,103,109,113,98,105,117,106,113,95,109,108,102,97,102,109,110,100,122,112,92,82,115,107,120,113,112,114,118,95,116,107,114,99,105,105,106,104,105,94,99,102,102,110,111,102,113,102,107,107,109,105,106,114,111,106,101,110,101,102,96,112,108,112,99,107,114,114,99,98,95,113,107,111,110,104,102,103,96,99,95,103,100,92,90,109,106,96,108,97,103,108,94,74,99,116,105,102,99,117,100,109,97,96,95,98,106,102,95,102,97,103,118,99,103,109,95,111,115,104,103,102,98,110,98,107,100,104,109,117,102,96,127,114,100,102,111,111,104,99,112,103,113,107,97,97,105,107,109,111,108,95,103,92,111,86,107,103,100,108,106,91,104,106,109,107,109,101,102,120,120,112,85,109,92,114,98,102,105,96,107,119,99,89,116,96,102,111,95,94,105,100,105,107,108,101,106,103,102,100,92,99,100,112,100,110,109,98,107,111,109,103,98,101,110,92,98,105,116,136,106,127,108,102,105,87,99,114,105,92,109,96,111,112,98,101,106,103,112,111,103,106,106,103,105,100,107,104,100,100,114,114,109,103,110,113,106,111,97,102,111,101,99,106,109,104,106,111,102,118,91,109,106,103,118,112,108,116,103,107,103,106,100,115,110,117,105,103,108,98,109,103,105,94,95,109,117,102,115,112,102,111,107,93,108,107,108,105,105,103,96,117,103,102,103,107,104,100,98,105,102,106,111,98,105,107,98,92,102,111,108,102,103,103,100,101,95,105,101,118,103,95,114,101,109,117,111,105,107,104,110,102,103,98,106,95,99,106,109,104,108,106,103,111,98,107,107,104,95,108,107,107,110,103,106,99,105,93,98,106,113,119,99,117,98,109,112,104,91,107,94,108,110,116,112,91,109,110,114,109,104,97,112,105,109,107,103,111,100,109,103,106,92,109,106,105,101,91,117,102,102,108,108,110,107,125,102,106,106,119,92,97,99,109,96,106,108,103,102,106,102,106,108,104,106,109,95,111,113,104,117,97,102,105,94,104,104,113,93,92,80,105,97,96,102,104,100,104,107,105,96,112,118,100,110,104,109,109,85,100,127,103,113,115,106,104,111,113,103,101,99,128,87,113,104,101,96,128,103,88,111,81,113,92,102,104,108,107,105,109,116,120,117,104,98,114,105,116,106,110,98,114,107,97,109,110,95,109,102,104,110,105,108,96,101,104,105,112,96,93,96,103,115,112,68,105,98,102,115,106,96,104,110,109,103,114,108,103,99,104,115,107,114,134,106,95,98,95,119,102,116,104,108,95,99,101,112,104,107,98,98,101,105,95,99,109,108,98,105,116,102,106,112,101,97,103,101,93,95,93,80,110,90,108,93,101,100,108,96,116,105,113,113,106,106,94,107,104,107,109,111,108,109,98,106,102,105,109,103,102,111,106,108,104,112,101,105,109,101,108,107,104,101,97,99,110,104,105,105,107,109,80,100,94,104,99,103,110,98,99,91,94,110,102,112,126,107,101,105,89,111,110,105,107,94,110,103,94,100,109,108,100,98,101,87,113,100,100,114,98,108,113,94,97,100,102,112,92,110,93,103,94,102,108,97,110,99,107,121,105,107,109,94,98,103,95,112,100,105,104,93,111,113,110,102,104,102,107,121,108,93,97,105,97,86,94,98,99,96,99,110,105,103,104,89,110,113,110,106,118,104,95,104,97,98,103,111,117,106,107,89,104,105,105,110,106,101,96,108,96,105,98,108,80,98,111,100,108,109,111,104,107,99,101,110,107,101,108,105,117,98,103,113,103,103,100,101,110,108,113,103,99,96,96,92,103,104,113,101,111,92,100,102,104,107,107,97,117,122,97,105,96,102,98,103,96,99,96,93,100,108,106,103,109,96,104,111,111,93,108,94,117,103,117,104,90,109,111,108,101,117,94,118,102,108,100,111,108,91,95,96,105,132,107,110,99,117,118,121,86,81,112, +537.46252,105,106,96,83,98,111,105,101,106,108,98,106,108,98,103,102,108,100,84,105,109,89,109,113,86,106,113,104,105,111,91,117,106,101,131,75,115,111,100,101,92,108,105,117,107,110,102,110,107,107,103,91,116,96,115,111,104,101,104,92,108,106,104,115,106,117,106,131,83,102,112,108,106,113,90,109,104,97,95,102,97,107,104,100,103,89,89,105,105,101,97,99,106,111,100,101,104,112,118,110,114,88,111,112,92,103,104,108,100,91,97,97,106,108,110,94,97,96,104,101,114,100,112,103,110,108,121,103,106,104,95,113,94,107,115,105,96,99,101,109,102,112,102,99,98,77,111,108,114,98,107,98,115,93,101,95,105,111,114,118,93,109,105,104,109,108,103,96,109,97,94,95,95,120,103,97,102,106,110,69,111,108,110,130,118,118,104,104,108,105,100,115,103,102,110,107,113,108,100,108,110,104,102,105,100,116,112,104,102,118,99,104,100,105,92,101,94,115,102,100,99,106,104,103,105,110,107,111,110,101,103,100,101,96,110,111,106,103,116,114,100,109,104,99,117,86,106,110,107,102,102,105,119,108,98,88,98,116,98,103,105,112,100,108,97,100,109,104,94,100,92,104,108,115,109,110,96,108,102,109,90,104,103,122,101,108,105,100,106,107,95,104,108,92,117,108,111,109,107,100,95,100,102,118,111,105,102,109,103,108,92,108,103,104,99,105,114,106,99,102,87,109,102,95,96,106,103,99,100,116,111,100,112,105,100,106,107,92,104,111,104,94,108,86,106,105,115,109,113,94,95,89,112,111,110,109,118,109,109,115,101,108,109,96,107,94,99,108,104,119,109,105,109,95,111,105,106,104,114,116,107,102,94,102,112,95,128,109,144,94,94,103,111,104,117,109,104,102,102,108,112,105,109,87,106,106,104,113,92,120,98,103,114,118,101,106,104,103,114,100,99,100,108,105,106,109,116,102,99,112,99,88,110,101,106,99,110,107,84,103,120,94,103,95,95,107,94,100,107,100,103,121,111,95,105,104,98,89,114,95,99,112,106,105,115,110,102,103,106,104,95,105,107,96,100,96,91,110,113,122,105,103,110,104,103,103,104,106,100,104,109,109,107,111,113,101,99,116,117,98,121,103,100,89,72,112,102,107,102,109,115,102,113,106,113,138,115,108,103,76,102,100,107,100,129,109,118,102,111,105,106,107,117,107,98,108,106,105,109,107,94,120,100,104,106,106,100,112,111,116,103,109,107,107,96,99,107,103,110,111,102,112,110,113,104,103,104,106,113,105,97,100,110,104,109,105,95,110,106,109,103,100,101,104,92,105,114,109,111,108,106,101,106,102,116,110,101,104,105,113,104,108,123,110,113,101,103,105,108,104,99,104,110,127,110,100,100,114,107,97,109,85,108,104,119,108,106,99,117,109,105,96,100,105,104,98,105,111,117,108,96,102,103,112,102,98,100,103,88,109,95,107,109,86,102,103,128,105,117,106,114,109,102,102,100,95,112,100,109,100,92,99,106,101,96,100,102,105,108,82,109,107,116,93,101,108,105,105,123,109,125,113,101,113,119,94,101,112,111,102,107,97,104,105,107,111,104,107,84,110,105,111,107,111,100,108,99,107,102,89,107,94,105,102,86,99,99,100,104,108,112,104,92,107,84,96,96,109,118,100,99,98,94,101,111,113,99,111,108,102,109,100,108,103,109,106,101,120,107,106,112,109,116,112,96,108,110,107,104,102,101,109,107,99,106,98,110,111,104,103,110,117,106,111,113,109,109,101,99,110,114,101,99,107,101,109,109,110,109,106,95,113,106,100,113,103,105,109,104,117,121,111,104,77,117,101,107,111,110,109,101,115,91,102,104,103,102,102,95,109,103,95,104,112,101,122,110,95,106,99,98,110,96,107,100,99,103,99,115,102,121,102,108,99,99,91,112,106,106,109,119,114,99,99,100,94,91,104,110,97,109,100,106,115,104,106,104,107,104,125,104,110,105,108,104,104,93,113,112,109,115,114,106,103,115,106,111,103,110,109,116,116,110,104,110,105,102,140,106,98,95,100,106,112,107,103,98,107,108,110,106,112,110,108,99,92,104,106,120,118,103,113,103,110,103,110,105,102,111,108,112,99,113,100,106,92,114,98,99,120,118,99,113,114,121,116,106,124,94,113,121,103,109,99,113,112,107,107,106,103,102,104,97,112,114,96,101,109,111,102,102,112,85,109,92,98,100,106,101,110,93,117,111,113,102,110,107,105,106,98,103,105,103,90,109,117,108,96,101,128,103,111,81,116,102,97,111,99,94,103,105,117,116,115,117,116,83,111,102,101,99,104,107,90,110,98,113,105,111,98,96,96,107,112,103,113,106,120,108,119,100,110,104,115,91,109,99,103,109,100,113,110,101,94,99,91,100,116,105,94,107,121,103,110,105,101,101,106,101,95,90,107,86,97,112,108,105,110,116,106,106,105,120,93,101,108,101,108,108,87,86,110,107,101,106,104,100,96,98,96,98,125,100,103,117,93,108,104,123,97,116,109,112,107,108,117,111,121,111,97,102,114,129,103,109,109,99,115,110,97,99,104,96,102,104,119,95,100,123,91,106,98,108,89,96,105,89,103,110,99,98,121,102,93,102,106,101,100,97,94,106,95,108,120,86,107,96,99,112,99,109,94,117,100,106,112,106,95,103,98,102,92,99,96,108,109,103,97,101,132,105,112,106,101,95,108,99,109,104,88,113,99,101,105,124,97,109,112,109,107,102,107,100,105,110,97,94,106,100,117,94,99,116,116,143,104,99,110,99,109,106,102,111,96,98,113,105,107,108,109,106,103,102,112,107,103,95,110,94,101,106,102,116,105,104,116,96,99,100,113,106,110,107,116,101,107,106,104,92,109,103,98,106,117,102,110,95,106,108,106,99,105,115,103,110,113,98,112,99,93,103,107,93,110,112,95,107,106,91,91,97,99,106,117,110,105,105,112,110,102,97,98,99,108,107,97,103,101,105,109,100,86,98,105,109,103,113,99,92,112,119,98,104,85,103,107,104,104,104,102,96,114,100,96,106,97,72,102,101,104,109,108,99,104,115,101,104,104,104,105,95,92,102,120,104,106,111,104,103,95,101,95,103,111,104,95,102,100,111,103,101,95,101,101,103,90,103,99,123,110,107,107,87,109,107,107,108,110,108,121,105,124,105,107,98,94,116,97,110,110,113,110,102,105,99,104,105,102,102,101,96,102,105,106,100,104,100,112,96,101,99,100,114,91,101,94,113,103,106,113,110,109,109,105,108,105,93,99,104,103,110,107,97,98,99,100,96,105,108,106,102,117,102,99,94,109,102,105,106,106,105,115,111,91,101,114,109,117,114,99,92,115,86,112,98,98,101,100,100,110,101,108,111,103,112,109,109,98,100,110,96,109,92,100,104,94,106,95,106,117,103,101,113,104,97,99,125,102,99,96,118,106,106,102,111,107,113,106,111,102,104,106,97,114,96,99,82,87,102,117,106,103,107,85,97,106,98,106,106,94,99,109,105,102,101,113,108,103,99,103,113,100,104,107,115,93,108,91,99,102,101,110,96,98,109,100,103,106,98,101,103,109,116,108,98,92,104,104,100,105,103,94,113,110,110,100,98,108,99,111,100,104,116,106,94,93,94,125,109,101,105,113,105,112,99,104,107,118,111,103,114,118,107,111,102,100,107,128,94,99,103,96,107,104,107,126,111,97,101,112,97,100,109,103,111,98,119,97,108,104,97,101,108,95,100,108,102,96,102,107,105,109,119,98,113,104,100,104,102,102,104,111,110,105,112,100,111,88,99,110,102,111,94,108,99,95,105,110,108,117,103,91,97,105,110,100,101,104,115,105,103,92,98,114,107,94,107,97,81,109,101,89,105,109,76,105,110,94,108,102,97,102,104,100,105,100,102,95,110,95,104,109,96,100,94,111,100,105,90,95,94,81,100,100,103,104,104,103,99,119,103,95,117,94,98,105,113,98,103,94,117,106,90,112,109,93,110,104,96,118,111,112,93,96,107,108,95,94,100,105,109,110,99,98,105,108,101,98,111,95,109,109,105,112,101,125,112,102,104,108,91,102,98,117,99,116,107,105,99,121,106,100,90,108,106,108,104,111,94,99,111,100,92,102,111,91,102,94,101,79,108,105,106,99,109,106,101,108,107,108,103,98,106,106,102,106,100,99,100,103,102,94,92,100,113,103,103,92,107,109,105,91,108,109,96,95,97,105,101,102,99,100,97,89,97,101,101,97,110,101,108,105,113,103,104,103,102,108,103,102,107,108,112,108,111,114,104,120,110,97,117,99,99,110,105,103,106,103,111,107,102,98,94,101,105,102,105,108,113,106,95,113,111,105,91,100,102,102,108,108,98,102,109,108,100,90,101,98,109,92,111,100,115,79,96,104,102,100,105,106,95,107,97,110,101,117,96,94,99,94,106,82,118,109,108,108,123,99,98,111,97,103,95,114,106,109,96,96,93,102,93,106,98,95,98,111,112,103,102,98,88,110,109,111,110,105,102,102,104,84,100,85,116,99,109,90,115,114,97,95,107,98,102,125,102,108,102,122,93,100,110,111,97,95,115,108,103,105,113,105,105,102,91,109,97,102,106,99,113,101,97,96,109,93,95,95,106,108,115,100,102,105,101,114,105,102,105,103,94,110,106,107,121,83,102,104,99,107,94,105,91,96,99,100,106,100,112,102,99,108,96,93,99,107,102,92,99,119,99,113,105,99,113,99,106,95,113,99,98,102,105,101,101,101,81,104,105,98,101,109,101,108,103,88,105,99,87,98,107,100,105,113,94,100,114,114,90,108,100,96,105,90,104,110,115,106,97,95,102,84,107,98,98,93,110,105,103,99,99,92, +537.60333,136,84,98,103,97,103,102,108,101,112,96,99,92,109,96,104,114,98,97,102,102,87,98,95,108,102,95,90,93,107,85,102,113,111,106,106,108,101,104,112,109,117,99,103,107,109,92,100,97,114,90,97,107,104,106,101,103,92,107,101,89,105,103,97,100,92,119,119,115,103,106,109,81,114,96,105,97,79,115,105,121,98,106,101,101,108,98,102,98,97,105,102,114,87,110,97,101,108,98,105,102,97,100,102,108,111,109,107,89,97,99,107,109,98,104,112,107,106,98,101,105,117,96,98,112,122,111,111,102,100,115,108,103,98,115,93,103,104,99,111,101,120,105,96,98,90,107,105,103,101,96,114,103,106,101,106,106,88,103,112,105,107,105,115,104,105,95,100,89,107,100,92,103,96,99,104,109,100,114,104,65,105,93,110,105,99,92,108,113,110,108,106,96,93,108,105,91,102,126,113,92,100,107,104,121,102,99,112,117,121,97,116,105,108,96,102,99,109,98,109,105,103,100,91,102,108,107,100,105,96,114,102,107,98,108,113,98,108,105,95,96,102,98,95,111,101,90,102,109,108,102,109,117,105,106,103,96,107,109,109,101,118,97,97,99,106,103,108,112,96,109,105,107,104,101,108,108,131,121,105,102,122,101,96,113,105,102,104,102,106,106,119,94,105,101,109,114,104,113,108,107,98,109,99,98,108,101,112,104,114,104,116,107,107,103,116,105,109,101,108,106,100,99,100,101,90,111,97,108,112,107,107,109,100,98,107,113,101,83,110,100,110,110,113,107,106,102,112,97,114,109,104,109,103,106,108,96,114,107,114,93,97,108,102,109,109,102,86,105,114,116,107,109,129,117,102,116,110,109,101,101,104,109,102,94,99,101,97,121,117,113,107,99,106,97,105,98,102,117,116,108,111,101,100,90,99,104,100,106,109,91,112,100,110,108,94,112,117,104,102,106,100,110,108,103,95,106,98,99,119,106,122,99,117,97,107,128,112,106,103,111,100,117,74,102,99,114,99,117,82,101,106,103,111,94,104,102,101,106,104,109,117,102,117,116,106,98,101,125,100,110,96,100,108,105,101,112,95,100,101,108,102,109,95,112,104,106,104,107,99,110,99,117,102,97,105,113,87,102,85,101,106,117,102,106,105,103,102,104,97,118,121,108,108,100,104,108,103,83,100,109,106,103,113,105,109,107,104,114,107,79,104,109,106,105,100,106,112,113,121,111,120,95,110,99,100,105,116,111,105,118,106,105,129,99,109,108,102,70,106,119,99,97,110,112,96,110,104,105,102,98,89,118,94,110,113,94,98,110,122,99,95,104,99,114,108,104,108,96,98,109,109,103,110,112,100,99,101,112,129,105,109,119,105,106,121,94,112,107,112,104,114,114,108,108,109,106,111,103,105,112,106,113,105,112,104,109,102,110,109,102,127,98,119,108,96,111,105,108,92,101,84,94,108,106,91,103,95,118,109,106,111,107,107,119,95,107,99,111,108,117,108,106,113,94,113,98,113,115,101,112,107,111,103,107,108,113,103,112,92,112,107,108,104,116,106,102,109,104,97,109,95,111,110,117,102,100,107,116,106,104,107,103,100,118,122,117,111,101,105,94,105,109,105,99,106,113,108,103,101,104,105,99,107,100,111,88,112,102,107,116,111,101,108,111,107,117,104,110,103,97,96,98,86,103,109,114,110,106,113,94,95,103,96,97,100,104,98,101,111,112,116,108,108,103,100,103,109,102,102,114,102,104,102,114,108,101,102,96,100,105,104,106,108,110,97,104,113,117,112,99,127,110,103,103,112,106,92,109,104,102,98,108,107,104,95,101,105,111,106,108,108,113,107,118,104,111,109,98,104,109,121,103,110,119,113,106,109,104,109,105,100,103,108,96,117,110,103,109,114,101,105,106,98,105,99,103,95,99,104,112,101,116,100,95,106,107,102,111,108,98,104,96,103,103,100,101,102,116,107,109,101,100,116,98,107,107,95,111,97,114,123,101,103,97,103,114,111,103,106,104,109,112,116,108,101,106,110,95,108,102,107,107,100,87,105,98,105,95,107,118,97,111,97,98,97,99,101,116,100,100,110,102,108,104,105,110,128,103,102,106,119,109,115,97,98,103,100,91,103,98,107,104,102,99,99,109,103,102,107,106,98,104,106,112,116,100,98,98,105,107,100,100,113,113,102,109,115,99,107,94,101,115,107,102,106,102,99,98,105,100,115,113,104,104,107,84,103,115,108,100,114,104,102,108,96,89,98,126,107,123,117,96,99,118,112,102,103,102,105,113,103,99,110,104,98,104,101,122,101,93,121,107,104,98,102,110,107,103,109,117,106,113,96,111,103,108,104,110,117,95,104,99,113,100,106,104,97,114,102,117,106,108,104,114,108,105,106,104,113,95,100,107,97,100,108,100,117,103,80,96,109,113,110,101,115,109,102,99,97,92,102,110,98,104,93,93,110,102,101,107,106,107,110,100,107,106,107,106,115,113,109,103,108,103,113,104,101,115,113,113,101,103,97,104,103,100,100,110,114,102,99,105,103,101,109,117,111,108,110,102,120,103,98,110,97,95,110,102,80,119,109,94,114,116,105,113,112,110,105,111,98,102,99,123,123,102,120,116,118,107,96,100,95,114,113,98,96,100,108,108,103,110,110,105,116,110,113,116,113,106,98,96,100,113,102,118,105,104,108,103,124,113,96,107,117,103,105,102,94,104,97,107,124,103,121,107,95,109,102,98,109,100,110,104,106,106,91,99,107,119,112,113,104,104,102,102,97,110,99,102,98,112,121,106,104,107,96,105,112,110,107,107,110,104,106,112,117,112,109,108,105,103,96,102,107,96,104,108,108,113,95,100,112,118,102,110,105,111,102,103,105,105,104,97,108,120,103,113,100,128,121,94,104,112,95,100,91,95,117,108,108,88,103,104,102,110,99,117,106,101,108,90,117,106,107,106,107,101,106,105,103,90,101,102,114,112,117,107,99,110,89,111,81,107,105,111,105,111,96,98,98,97,112,127,111,109,113,95,103,98,111,101,99,102,107,105,81,98,110,102,116,102,104,106,85,109,104,101,104,111,117,105,107,107,102,103,106,103,101,105,106,106,108,103,112,103,108,113,106,98,110,105,115,107,101,108,103,103,103,116,92,104,101,100,107,100,99,113,96,108,112,103,98,94,105,113,101,120,112,110,105,114,106,107,109,99,104,98,106,116,121,104,109,102,96,96,111,108,101,107,111,100,136,114,108,95,120,92,97,105,106,103,102,108,102,104,110,124,106,110,94,111,99,111,111,109,96,100,95,119,107,95,112,97,112,108,103,107,102,100,95,106,96,94,112,95,120,100,109,95,107,113,105,102,127,107,107,109,99,101,112,79,113,110,109,100,95,113,82,95,119,107,105,111,112,102,102,102,110,102,102,95,91,101,115,105,115,106,108,118,104,110,101,99,107,110,100,117,95,123,111,109,92,115,118,104,106,107,104,103,100,104,106,99,120,100,96,100,102,110,117,106,106,100,96,108,108,100,114,107,98,105,112,117,111,103,94,107,101,108,102,114,112,103,100,97,111,107,95,114,92,114,87,87,119,101,110,102,101,100,104,106,106,99,101,115,108,110,106,103,108,111,107,112,105,111,103,113,109,101,114,104,110,103,104,104,111,104,112,105,101,104,106,98,101,113,98,104,99,103,107,125,99,104,93,99,112,113,102,102,113,111,112,104,115,109,101,94,105,98,91,115,103,116,99,102,97,102,109,107,102,114,104,112,107,104,91,91,95,105,87,104,109,108,112,98,104,114,104,116,111,109,97,96,107,115,102,106,102,109,112,96,115,96,99,115,113,108,95,101,100,114,104,107,111,98,117,113,108,98,98,94,90,104,102,79,95,98,102,96,103,95,103,113,105,94,101,101,96,97,95,107,106,100,98,109,106,100,105,123,110,108,98,97,111,103,98,113,96,110,113,78,100,106,101,89,99,96,106,101,102,103,117,115,96,102,120,110,111,112,108,107,101,115,107,103,110,104,108,105,92,102,102,111,114,93,100,117,100,97,117,102,111,97,107,99,114,96,117,98,106,102,118,110,118,102,103,105,105,109,113,110,108,92,102,108,108,103,102,105,122,117,93,106,98,101,93,109,107,102,107,97,106,104,109,99,115,105,97,99,94,97,106,108,110,102,107,120,96,107,101,101,92,106,100,111,110,106,111,104,101,97,104,108,109,104,107,120,102,108,105,106,105,104,105,100,103,94,102,95,96,100,96,105,95,98,93,94,102,96,102,117,117,105,113,104,100,101,99,103,106,101,105,110,95,104,104,110,93,110,100,117,104,105,109,110,99,102,122,114,106,120,108,96,95,100,109,101,106,113,110,94,98,98,102,98,115,111,103,95,105,103,103,108,92,94,92,97,109,114,111,112,94,111,106,107,99,100,112,109,113,106,107,102,102,109,102,101,91,96,96,104,105,97,109,100,109,100,100,106,98,103,109,102,88,107,106,108,94,105,105,106,111,105,110,99,117,103,90,104,109,77,96,92,109,94,112,65,109,95,95,112,113,102,105,101,105,112,105,101,110,107,115,111,92,102,90,101,118,95,99,102,111,105,103,119,109,114,98,109,116,108,109,120,95,110,104,107,106,110,99,114,111,113,108,104,97,98,101,109,101,116,101,100,119,108,113,119,105,111,111,117,111,109,111,105,98,92,108,103,94,109,95,109,93,101,112,106,110,98,100,111,113,99,113,90,109,113,109,103,107,104,113,98,92,98,103,99,109,100,116,106,106,109,95,92,106,102,101,112,103,95,111,104,103,100,105,102,117,108,103,86,120,105,105,104,97,104,106,93,116,108,101,103,112,101,108,110,92,111,100,106,117,97,116,110,107,103,97, +537.74414,96,95,87,101,95,117,109,100,101,125,101,107,105,103,108,98,99,121,109,97,109,100,104,103,109,110,117,93,109,109,101,85,91,95,96,108,111,93,115,96,107,103,92,105,103,107,98,114,93,109,105,109,107,98,99,97,102,100,103,102,91,114,114,101,90,113,113,104,99,95,113,101,93,99,90,107,98,104,124,103,112,100,109,102,96,93,97,105,104,91,108,104,105,100,99,99,98,89,118,109,78,86,115,99,101,96,90,107,98,113,104,111,103,99,106,110,108,103,113,103,98,98,109,92,106,103,117,112,94,107,101,108,113,95,101,111,91,112,108,105,91,107,111,112,106,95,101,90,110,101,105,90,104,101,112,95,113,99,105,110,99,101,99,102,113,102,100,97,96,99,106,96,113,95,113,108,99,106,98,101,109,106,101,114,103,101,91,89,111,92,101,119,124,106,95,115,107,103,113,94,106,93,95,105,106,101,102,109,127,101,95,97,99,105,99,112,97,105,102,102,104,119,97,104,100,106,112,116,101,108,95,89,91,105,114,104,110,97,98,109,115,108,99,100,107,93,118,102,84,106,106,104,109,110,118,122,110,102,97,108,92,111,102,107,88,107,117,93,113,101,106,107,98,100,91,110,107,102,81,99,114,103,104,110,100,102,105,105,113,88,104,99,102,115,108,110,104,92,92,105,108,103,103,105,100,104,81,108,99,117,91,103,96,110,121,105,91,101,109,106,103,92,95,100,102,98,104,100,125,107,96,98,114,104,107,110,109,102,111,107,109,94,95,103,109,111,105,104,108,110,109,105,106,112,98,97,110,104,108,97,107,98,88,105,105,106,112,119,103,100,113,108,95,101,104,104,99,115,95,118,107,114,91,102,103,109,110,96,106,101,103,100,100,109,104,99,113,106,105,110,97,99,95,91,102,101,113,105,117,99,95,115,114,102,101,103,107,105,102,93,99,129,103,121,99,113,107,74,96,103,103,95,130,103,85,92,118,103,91,99,111,94,105,95,104,108,102,106,112,99,101,101,96,112,120,107,102,96,106,108,100,102,110,113,121,102,106,109,101,91,108,101,108,103,98,106,103,111,117,105,105,108,105,106,105,99,103,110,110,102,99,99,108,112,100,100,105,119,93,111,111,108,98,101,91,99,99,103,94,108,119,101,87,102,107,110,99,91,129,97,101,102,112,114,100,103,113,110,113,124,107,112,104,92,111,95,119,96,97,119,105,109,110,126,109,98,110,91,113,106,104,108,116,105,103,117,103,88,89,95,125,114,101,97,101,107,107,118,95,113,97,94,106,101,109,104,103,103,110,108,98,106,97,106,99,109,102,120,112,113,94,108,93,102,127,107,107,102,104,119,98,98,104,79,108,92,109,108,111,109,107,113,99,99,94,102,107,95,109,116,120,97,98,102,108,103,121,79,100,101,100,106,105,115,101,110,107,109,97,109,118,102,104,107,98,105,102,109,105,103,108,109,116,101,102,116,107,103,103,106,99,112,94,107,109,109,101,102,91,110,101,104,103,113,98,106,101,112,99,114,109,92,109,100,108,107,97,107,92,99,120,104,76,105,111,114,108,106,104,107,104,103,94,96,103,96,123,100,106,103,104,112,101,97,102,106,116,99,95,92,97,109,115,101,94,108,99,107,102,110,110,102,97,104,90,106,102,101,106,98,93,98,106,108,96,96,111,108,101,105,109,106,110,95,105,118,104,103,112,107,115,109,95,114,102,95,93,116,109,99,108,104,112,108,109,90,101,93,107,104,87,109,110,107,80,107,116,91,104,114,103,87,96,104,104,121,99,98,103,102,111,100,103,98,108,104,100,95,102,104,103,100,102,100,109,108,108,93,98,117,95,113,97,115,126,104,103,105,91,104,101,100,114,107,100,115,115,104,83,107,109,109,99,103,102,116,109,104,104,98,109,103,107,96,105,104,94,126,107,92,120,106,99,112,106,95,101,107,114,96,112,102,102,108,105,99,102,108,118,116,95,107,116,110,93,103,97,112,122,109,123,107,114,104,108,111,85,108,105,104,101,105,93,97,107,100,122,98,103,95,116,110,103,114,91,92,101,108,115,102,98,97,111,99,96,106,113,107,107,103,119,107,105,115,104,94,104,110,105,110,107,105,107,101,103,98,105,99,88,98,99,108,117,106,117,95,107,107,102,107,109,103,104,96,100,105,81,107,93,108,114,106,104,114,110,97,112,116,95,75,98,113,100,93,109,111,99,99,100,102,84,93,123,104,99,98,97,104,98,113,104,101,108,115,108,107,113,94,89,107,99,112,99,117,102,112,103,100,110,96,119,113,98,88,101,113,107,103,107,104,113,111,97,102,101,95,88,101,112,99,106,113,105,106,100,100,111,103,113,117,98,98,101,107,107,108,101,107,108,98,89,106,95,107,116,91,105,99,95,94,92,103,108,98,100,100,100,103,104,109,98,105,104,111,104,99,104,102,119,106,111,105,99,100,96,129,93,114,111,111,105,80,107,104,109,106,105,94,121,101,120,126,98,130,117,85,107,99,105,104,95,108,95,104,111,98,100,109,109,88,114,110,101,98,104,96,111,106,103,108,100,102,105,101,83,102,116,98,94,100,107,109,100,113,102,105,115,109,103,104,106,109,105,91,110,95,104,109,103,118,102,112,115,107,109,112,98,110,104,108,78,106,101,83,115,110,115,104,118,110,103,111,116,121,106,105,105,115,108,108,115,129,109,114,112,122,123,113,117,96,108,108,97,111,116,107,112,95,101,97,107,105,114,109,103,120,97,110,113,105,105,92,99,107,99,117,111,107,116,105,107,105,108,105,102,105,100,109,118,108,110,115,102,114,101,100,103,107,98,97,114,101,111,100,103,96,116,112,98,116,109,100,105,107,93,93,103,106,93,112,93,109,107,106,110,106,100,110,98,102,103,107,97,105,91,109,106,94,103,100,89,105,110,100,99,103,117,109,106,103,97,103,105,105,117,107,115,102,115,106,103,103,103,104,96,97,105,111,113,89,102,96,105,115,107,104,112,103,102,98,101,117,98,98,89,96,106,109,105,102,116,126,120,99,102,111,106,109,101,106,97,108,115,110,105,97,110,106,103,113,96,109,107,111,107,106,105,111,111,106,107,103,116,116,95,107,103,90,97,92,100,104,112,103,100,98,96,108,106,106,116,98,108,102,97,100,106,115,107,101,104,100,115,101,101,116,104,107,106,98,104,96,94,101,116,94,85,94,102,99,110,121,115,111,105,111,102,115,104,107,103,105,92,103,104,108,104,94,98,104,102,100,94,109,98,113,114,100,103,109,114,96,107,87,120,107,102,97,113,91,90,90,114,100,97,115,109,112,117,113,108,112,108,104,92,118,121,102,106,105,116,110,105,102,74,109,107,113,99,104,100,100,106,107,102,108,112,113,107,98,98,115,116,109,109,106,105,107,106,102,111,109,101,110,99,101,126,105,107,105,100,99,109,107,92,117,104,99,109,109,114,110,104,96,106,107,111,107,103,125,106,135,109,122,100,103,117,109,103,116,104,113,105,114,111,117,110,97,108,105,104,102,99,106,106,118,111,107,107,80,107,136,106,110,101,105,111,101,120,119,101,115,122,106,105,105,98,99,105,109,112,120,113,107,110,98,117,102,100,109,90,109,115,114,116,84,106,95,112,115,113,101,108,112,103,113,108,104,105,96,111,100,108,107,117,105,101,108,128,107,97,101,104,113,109,108,106,107,109,102,92,93,105,99,117,103,101,112,92,87,99,105,95,107,98,106,114,93,90,111,100,105,120,101,111,117,113,110,110,105,110,104,115,108,106,106,108,105,95,102,105,109,105,91,111,119,105,106,106,106,101,92,96,107,114,94,104,106,101,108,112,98,109,115,105,98,109,104,107,111,103,102,105,109,105,112,106,95,103,102,104,99,114,109,104,116,107,99,109,112,105,108,101,113,87,108,102,104,102,107,110,110,98,107,96,98,99,107,100,109,105,111,90,106,90,100,102,101,93,102,105,110,101,99,106,100,102,103,106,107,108,114,106,97,112,108,118,108,106,107,105,106,100,90,105,102,108,102,109,115,96,92,134,106,93,114,103,102,99,107,123,102,102,112,103,110,105,112,101,104,105,98,98,110,98,95,110,109,113,103,100,91,93,111,105,123,103,102,111,105,103,100,106,112,104,110,112,102,109,102,101,120,114,106,113,107,106,103,102,130,95,85,113,97,105,111,97,109,101,105,100,92,95,97,102,106,100,97,96,110,100,103,107,96,107,104,97,99,100,95,106,118,113,92,113,115,117,111,104,114,104,106,114,99,109,99,114,102,109,108,113,96,118,106,105,105,110,101,101,109,109,99,108,111,103,105,101,106,108,87,104,104,113,96,106,105,110,109,106,91,110,91,100,122,98,113,105,105,109,117,117,103,112,106,98,102,101,102,107,110,92,112,100,107,107,95,113,113,100,112,102,93,103,113,98,102,99,93,102,104,99,112,96,108,95,109,102,106,100,95,99,102,106,108,106,105,98,119,99,117,112,117,105,104,110,113,94,103,114,93,102,102,107,101,112,101,121,103,100,119,105,106,99,110,109,114,98,100,108,110,95,121,96,103,95,107,105,105,102,116,115,102,103,105,104,110,102,99,105,100,104,106,112,103,103,122,110,94,109,75,102,104,111,100,108,83,104,116,98,95,111,104,98,101,117,95,105,123,102,115,110,94,107,109,113,102,99,87,119,114,120,108,107,100,82,101,84,116,116,97,94,92,112,96,117,114,97,111,113,102,100,92,111,120,99,106,105,101,112,86,100,95,101,112,103,126,98,98,100,94,100,100,105,105,100,96,102,103,105,101,104,91,99,106,109,106,96,115,99,96,116,102,95,107,107,108,101,124,103,108, +537.88495,104,92,99,103,109,113,107,98,91,102,102,99,93,96,102,92,107,112,70,96,121,108,94,105,103,109,104,106,99,113,84,104,103,96,113,104,93,90,105,100,93,97,109,106,106,115,105,105,105,103,103,103,102,108,97,97,96,92,109,99,90,112,107,96,110,113,77,107,101,111,113,98,99,114,94,112,94,105,113,107,111,100,94,103,98,92,104,93,106,101,105,100,94,106,86,100,109,108,99,104,105,109,97,122,104,110,89,102,99,95,97,107,108,99,107,108,104,112,100,113,92,115,110,108,103,103,107,95,112,110,106,106,95,126,105,105,109,97,104,102,99,103,93,114,100,98,107,94,114,112,110,87,105,93,100,111,98,110,104,99,99,103,99,110,95,123,106,97,117,90,105,119,108,100,110,118,82,76,104,109,97,97,91,106,104,105,100,103,98,91,103,113,106,110,108,106,100,106,108,99,104,101,100,101,91,102,107,107,112,93,98,96,102,111,117,106,106,96,102,100,117,122,97,102,96,109,107,105,102,128,109,100,101,87,108,107,106,106,96,91,104,98,85,102,101,104,105,99,98,100,103,111,105,117,98,104,101,110,82,102,99,103,101,106,93,104,71,89,94,101,108,97,101,109,105,95,95,115,104,102,107,102,102,106,96,112,94,109,102,116,108,102,122,97,116,113,104,103,108,104,95,104,102,117,99,107,107,101,97,101,96,106,103,84,106,103,116,105,97,103,99,101,90,111,106,87,105,97,123,117,103,101,103,111,101,100,116,112,106,116,104,111,102,94,101,94,111,102,77,102,101,103,98,100,94,113,117,110,111,101,105,101,107,104,96,111,104,101,117,118,100,115,115,95,118,109,105,111,106,102,121,101,110,112,91,107,106,101,116,103,112,83,94,99,94,112,107,108,104,95,106,102,105,93,98,76,101,108,98,109,94,100,106,112,112,107,95,110,107,108,98,100,105,106,96,98,108,95,97,103,88,103,102,103,91,102,95,114,102,109,107,117,96,97,98,110,82,100,99,95,99,104,105,98,110,94,110,110,94,88,99,110,103,94,106,115,106,98,95,91,97,112,100,100,107,101,97,103,117,101,100,106,126,96,95,105,106,95,106,99,69,113,107,110,101,103,109,102,99,99,112,114,97,92,104,104,102,108,109,103,103,101,94,108,102,104,102,91,98,99,99,91,103,100,113,114,107,112,114,101,103,103,100,104,100,107,105,100,111,106,97,105,92,100,110,96,102,105,110,102,100,107,87,105,114,102,121,103,98,107,101,102,102,108,101,117,110,103,100,98,85,106,103,109,111,108,103,99,96,97,107,100,90,112,106,102,105,121,106,99,103,113,97,100,106,120,107,95,107,116,113,121,114,103,94,96,82,106,106,99,101,101,106,103,127,110,113,118,98,96,113,126,105,113,110,106,104,95,98,106,101,111,103,109,107,107,108,110,104,98,101,104,102,97,101,89,106,100,95,101,105,116,108,98,107,105,95,105,105,105,114,117,107,115,100,108,106,95,112,100,98,110,115,102,101,104,111,99,121,105,97,106,70,95,107,105,122,103,94,116,97,103,100,113,114,100,93,110,112,102,110,105,104,102,97,101,102,98,102,100,105,95,113,99,108,96,107,99,99,114,114,95,106,108,104,104,100,102,108,115,108,105,82,104,103,103,99,102,118,103,108,99,121,100,102,106,107,110,102,94,84,129,103,96,112,101,109,121,114,104,94,99,95,108,105,100,108,101,104,90,121,112,117,105,78,105,109,98,104,101,113,94,106,103,92,97,103,104,106,106,103,110,101,117,110,89,102,109,99,112,98,105,101,103,110,92,110,110,97,102,113,94,119,108,105,98,103,112,103,105,106,99,103,106,111,128,107,97,111,110,97,96,110,108,100,93,107,116,99,102,93,113,95,113,106,112,98,107,102,116,106,100,99,93,96,105,104,97,100,96,106,107,99,102,111,98,109,93,111,104,108,116,111,122,103,97,116,103,104,108,103,98,106,107,99,98,99,104,97,111,78,104,109,106,93,97,100,113,99,102,108,106,110,109,112,106,97,117,94,107,99,100,106,108,109,100,97,105,107,102,113,116,106,107,113,107,100,109,112,108,99,112,102,96,105,101,110,100,101,98,96,103,110,120,114,113,104,108,99,120,105,107,112,110,112,107,104,118,111,103,119,114,104,100,107,94,108,97,116,104,86,89,97,118,81,90,103,100,98,106,105,115,110,98,106,104,106,109,110,104,101,98,98,104,105,97,105,111,105,97,79,107,100,109,103,97,112,103,103,107,109,108,103,107,109,98,104,109,100,98,116,107,108,104,99,105,82,101,105,106,105,109,103,90,105,95,108,106,104,104,114,115,95,102,120,102,102,104,104,107,103,108,102,97,104,117,111,105,106,108,103,123,107,100,110,114,105,105,100,97,91,105,98,99,110,107,96,95,99,104,79,100,99,118,110,94,105,98,105,101,88,104,111,108,100,105,107,104,113,107,107,98,107,96,115,101,104,104,102,100,103,104,87,107,96,100,106,112,102,110,106,116,101,98,104,100,112,111,116,119,117,122,109,101,106,98,106,104,98,99,102,114,85,86,106,120,99,109,113,99,106,98,107,99,107,100,109,103,115,107,103,83,99,109,110,112,105,99,113,102,97,103,108,108,96,121,112,102,105,107,108,104,105,107,88,111,112,98,93,119,106,116,110,109,105,115,98,123,116,99,106,102,104,103,114,119,87,110,113,103,108,107,112,83,115,110,99,111,100,123,106,109,100,98,112,98,105,91,104,98,94,68,98,118,101,100,106,108,106,108,115,105,103,95,105,109,106,100,93,116,109,106,106,115,99,94,113,116,98,110,111,101,90,110,103,97,106,108,96,111,103,97,110,107,120,106,100,102,102,104,112,110,115,104,88,112,130,113,106,112,99,115,99,108,112,108,104,104,114,118,93,114,97,108,104,110,109,108,95,117,106,106,122,101,109,109,120,109,100,107,95,104,125,115,96,109,116,101,103,94,95,99,104,107,120,116,112,113,68,103,102,120,106,101,101,109,115,102,101,93,118,122,103,104,116,117,110,100,98,92,95,112,110,109,98,99,101,98,100,100,98,99,106,117,103,102,108,105,102,104,111,111,112,103,103,91,106,92,104,95,92,103,106,96,121,109,105,102,106,107,100,109,106,114,83,114,107,94,106,109,106,100,95,112,113,102,107,110,96,110,112,131,100,110,112,117,119,104,115,108,109,109,110,111,107,101,105,117,107,104,101,103,99,104,102,115,100,96,109,103,100,100,108,114,109,100,115,98,100,102,114,103,93,109,108,106,105,95,106,105,103,102,111,101,100,124,107,104,101,93,110,104,109,98,109,117,82,92,99,109,108,105,104,113,101,99,116,113,108,106,98,106,101,111,102,95,111,104,98,107,109,109,113,102,90,103,101,118,102,106,104,119,102,94,98,109,116,103,117,97,117,113,106,99,108,114,95,96,116,101,104,110,102,104,112,106,101,105,112,99,116,122,106,105,108,101,102,100,102,105,101,100,112,109,106,108,112,118,104,96,105,91,107,104,96,102,117,120,112,92,106,109,97,113,116,105,121,120,98,104,102,107,95,98,118,92,112,98,106,113,112,99,101,101,102,103,102,117,110,101,105,120,106,114,110,102,103,99,116,112,106,109,103,106,106,106,102,123,121,98,117,101,99,103,104,108,103,109,95,111,104,92,111,95,113,106,91,101,102,113,107,99,109,105,147,108,109,103,113,99,108,99,99,127,106,105,101,105,113,104,98,123,104,110,107,107,94,104,93,103,113,107,107,107,99,111,100,107,118,105,110,106,99,101,100,113,112,113,99,102,110,107,108,104,110,101,107,104,99,101,104,108,121,94,119,103,101,104,98,98,83,125,104,98,108,101,98,107,123,115,100,104,105,114,102,94,98,110,112,87,106,119,97,117,100,113,110,104,101,107,103,113,101,101,105,116,115,104,109,105,104,124,101,103,110,98,111,100,108,102,113,101,105,107,115,112,118,110,102,112,109,96,94,108,109,97,108,95,110,103,99,109,104,102,110,104,110,65,109,117,105,110,106,111,107,107,102,111,107,104,77,104,97,116,96,113,108,97,113,99,103,103,94,107,111,109,101,108,103,113,107,101,105,97,111,109,121,90,108,110,105,115,112,117,109,109,108,105,106,97,121,110,112,123,103,96,101,108,111,101,85,98,92,115,104,114,102,99,95,108,102,98,102,89,99,100,109,112,102,101,98,106,113,95,101,108,97,88,105,101,106,109,105,98,106,113,100,106,111,100,110,107,119,107,100,109,113,102,109,100,109,93,106,100,106,105,111,118,107,110,97,104,113,117,106,110,109,108,104,98,110,105,108,110,105,109,104,100,97,103,90,99,111,108,96,115,105,105,101,103,121,107,102,91,104,102,110,105,105,107,104,106,101,105,96,94,105,112,106,98,119,113,111,100,104,109,105,106,75,114,116,101,102,113,93,95,93,107,92,105,125,110,93,105,96,100,103,108,88,99,104,108,111,115,101,102,94,111,90,102,89,118,124,99,96,102,107,105,107,110,104,100,114,129,105,101,110,101,107,108,109,104,105,115,112,100,107,107,109,108,112,105,103,107,114,104,106,96,88,98,102,105,95,108,107,102,97,98,116,99,98,107,113,123,125,113,103,113,106,109,107,105,102,97,107,99,109,96,99,101,117,116,105,114,101,111,106,106,117,106,114,98,113,121,92,115,97,116,115,111,116,91,100,95,108,95,104,124,96,95,112,103,114,103,116,106,89,109,109,98,116,109,105,93,101,104,87,113,97,109,125,93,110,102,96,92,106,92,104,117,113,99,131,86,91,109,92,99,103,96,120,108,109,92,102,110,83,85,107,95, +538.0257,110,108,96,100,97,106,93,109,99,103,112,102,106,103,108,97,116,105,92,87,93,109,105,99,115,98,101,112,110,105,100,108,97,105,100,117,105,100,109,108,106,102,105,94,95,103,109,113,94,109,109,93,110,99,104,99,101,111,99,105,108,110,111,95,100,112,101,103,105,108,79,112,102,111,99,105,87,93,106,87,121,129,108,115,110,100,110,101,102,107,104,121,109,112,78,105,107,113,107,105,103,125,110,109,101,98,120,88,109,100,98,117,107,104,105,100,98,96,109,92,99,111,127,104,116,108,112,107,109,121,121,101,99,119,103,97,107,105,97,102,106,112,115,116,105,109,108,104,121,109,111,115,109,99,101,109,96,92,104,99,106,103,118,99,112,104,106,107,103,92,104,103,80,110,101,109,100,108,108,102,97,98,102,110,107,110,99,92,111,106,103,124,119,116,119,105,105,100,109,107,98,100,111,102,96,99,87,100,103,114,108,108,91,106,87,98,102,115,101,104,100,114,102,102,99,112,103,102,124,111,95,108,112,99,107,107,105,115,90,95,107,102,112,98,97,109,103,113,112,111,99,99,105,106,104,108,101,114,99,128,110,117,101,107,96,100,96,108,116,100,106,110,113,110,101,113,112,109,109,111,110,101,106,109,118,109,101,101,100,110,133,94,108,110,109,104,120,104,99,124,118,106,113,119,95,100,127,91,99,111,119,113,101,107,107,109,100,102,104,100,108,105,100,109,113,91,101,108,112,100,109,108,113,105,111,102,107,109,100,101,108,99,113,109,94,108,107,122,108,113,104,104,115,107,106,102,109,112,107,97,100,108,103,114,95,117,106,101,102,102,112,108,109,107,117,100,107,108,133,118,106,112,109,116,114,100,120,107,101,88,107,98,112,113,106,100,110,109,101,119,103,107,103,103,99,113,100,99,114,100,108,101,99,100,102,97,107,97,112,93,99,108,124,117,108,96,100,101,109,115,116,103,109,96,99,96,102,103,106,114,103,104,99,109,107,101,82,116,103,115,96,116,114,120,117,112,88,104,109,98,127,107,101,127,106,103,110,93,117,98,117,112,121,86,101,93,100,119,102,109,111,98,115,100,104,104,102,110,110,111,106,99,109,99,98,108,93,110,115,97,109,111,106,111,96,108,104,113,112,105,105,103,111,115,104,111,99,107,110,97,114,107,103,103,106,112,111,112,112,98,109,113,109,113,106,116,94,102,107,112,107,100,106,110,111,120,110,98,121,109,112,104,114,91,106,114,105,114,101,110,111,110,111,103,105,100,117,113,113,94,97,101,107,106,113,109,101,99,107,94,122,102,106,97,101,113,106,85,119,105,99,109,97,104,109,108,112,106,97,100,112,119,98,103,109,113,98,110,107,104,112,103,111,103,102,110,104,109,101,109,106,106,102,105,114,110,105,106,100,98,107,122,104,112,99,107,101,113,112,110,95,94,96,105,101,92,114,95,121,108,107,127,101,106,103,107,107,107,111,104,110,109,110,108,97,99,112,107,105,99,111,110,103,108,98,110,114,103,100,109,108,125,103,91,98,111,101,109,99,97,100,104,101,101,96,95,103,111,113,102,103,105,107,106,95,111,106,115,105,107,121,98,115,105,97,106,99,99,103,100,106,114,111,94,104,94,106,89,94,99,110,95,96,96,108,97,89,105,117,107,95,92,97,102,110,103,113,111,100,103,107,90,113,117,116,99,97,99,98,98,113,88,97,94,103,103,101,102,104,115,120,115,108,102,101,103,102,107,95,101,113,113,121,110,103,107,109,108,99,105,118,104,110,113,99,105,108,112,106,107,95,108,106,109,106,103,107,108,100,102,103,107,104,101,109,101,103,100,104,102,112,111,113,106,110,115,103,99,118,99,105,113,105,103,120,114,107,107,107,120,115,104,106,106,103,104,112,112,112,105,105,100,108,109,103,106,109,109,103,98,95,104,100,104,112,96,94,105,114,110,117,117,97,112,105,88,104,99,103,100,105,101,88,100,102,107,91,117,106,104,104,112,99,104,106,101,109,107,101,104,102,112,103,100,99,120,94,101,105,96,113,101,113,140,112,95,99,103,103,104,101,101,103,91,109,108,105,104,105,116,107,122,105,86,93,108,104,105,94,101,107,100,97,126,104,105,109,111,109,101,110,101,100,105,122,93,89,110,105,100,103,103,103,107,98,110,75,120,120,107,95,100,102,105,99,103,126,97,103,110,109,109,98,106,94,107,89,102,100,101,101,122,104,115,99,132,98,92,108,104,103,113,101,101,102,99,110,95,88,105,103,99,107,103,99,116,96,112,107,96,114,107,116,109,109,113,99,95,105,120,113,105,108,92,110,106,94,118,117,94,107,104,98,97,81,110,111,109,109,117,119,94,103,104,106,108,91,109,100,105,104,71,106,111,96,106,115,104,93,100,95,113,111,96,104,104,109,105,122,98,96,109,102,108,110,104,104,109,106,91,106,106,105,107,107,103,103,115,114,96,104,96,99,114,106,106,105,103,96,114,109,103,116,103,107,102,97,75,104,106,104,104,98,98,112,99,98,97,100,103,114,111,102,108,109,99,101,107,102,106,111,96,101,111,102,95,98,102,119,99,122,114,117,106,106,99,106,111,95,110,103,97,111,99,107,109,96,95,108,108,103,95,101,99,102,103,103,102,112,111,111,112,106,109,105,107,111,108,108,115,116,127,111,115,119,109,116,112,125,107,112,103,102,106,110,90,110,107,117,100,103,110,96,108,111,104,115,124,109,107,98,122,98,109,100,112,89,101,128,107,108,96,98,109,106,114,113,94,112,111,94,106,118,117,103,104,127,106,108,108,117,114,109,107,108,103,110,98,99,124,109,91,108,106,108,99,99,111,109,107,107,106,113,122,116,102,103,98,105,115,100,116,113,111,112,120,109,112,98,95,110,91,99,111,113,103,99,104,113,117,110,113,100,108,117,101,103,111,98,97,100,113,110,104,117,111,107,107,111,103,111,106,88,114,99,91,93,104,99,104,105,109,113,115,106,99,106,100,98,99,104,107,102,102,106,113,119,107,118,91,125,107,120,103,101,95,104,100,106,103,117,103,94,101,128,105,98,105,105,98,100,117,114,108,100,103,113,108,91,121,114,100,103,109,102,109,99,95,103,108,106,103,101,96,103,106,111,104,111,82,108,115,98,106,95,107,126,102,106,113,108,105,111,101,107,99,107,112,91,98,75,103,99,110,129,96,107,106,116,109,124,103,108,111,116,112,112,117,103,101,99,105,111,106,112,107,108,108,107,99,89,102,109,103,107,97,103,98,110,108,107,102,108,115,94,106,108,90,113,112,97,110,108,112,108,114,103,109,106,107,103,102,110,109,104,107,110,107,98,98,119,98,95,98,113,108,103,104,106,106,98,109,97,118,102,107,98,101,98,113,106,102,102,104,104,99,102,117,114,98,98,99,109,97,114,117,108,109,110,114,98,83,113,102,113,120,110,109,103,94,99,96,101,124,101,117,93,114,105,109,106,109,84,108,99,102,99,111,95,107,106,93,104,109,112,102,99,108,103,123,125,97,116,110,117,109,106,99,109,99,104,100,102,65,102,85,106,110,123,109,102,111,113,104,96,107,113,93,108,104,103,117,97,99,99,94,112,103,109,114,102,95,113,112,96,105,102,103,99,106,107,104,95,107,107,107,110,109,103,94,116,119,114,105,105,105,109,109,103,102,116,88,108,108,88,102,115,106,113,106,97,111,111,107,118,107,110,104,96,105,124,96,93,103,118,97,100,98,112,107,95,102,104,113,107,111,111,99,87,109,94,108,111,104,90,101,105,105,95,108,101,106,106,91,97,108,106,113,106,104,101,112,105,119,112,108,107,100,108,102,97,101,105,100,104,99,117,108,105,114,101,107,109,107,122,106,121,107,105,91,102,103,109,108,102,98,107,107,103,115,104,95,112,119,117,107,107,92,112,110,99,109,104,104,104,109,105,111,100,102,107,104,95,116,109,100,99,102,113,109,112,98,98,94,110,110,105,108,116,114,110,109,105,113,107,109,99,108,109,117,107,106,110,105,80,96,98,90,95,102,104,118,101,110,103,105,97,110,102,108,107,107,99,114,113,117,117,99,89,109,108,97,89,116,113,113,108,91,113,108,141,108,109,104,112,117,117,110,109,107,107,103,110,123,102,105,106,110,103,109,121,112,95,104,108,109,108,109,107,106,109,107,105,109,103,104,110,115,119,99,104,114,110,109,119,103,97,96,105,116,112,113,106,105,99,116,101,97,99,108,96,91,104,108,113,102,107,108,111,110,116,106,97,104,105,100,101,108,97,99,101,113,114,99,95,84,110,104,109,119,106,107,104,126,109,99,108,104,97,94,113,106,116,102,107,102,109,105,106,105,100,84,124,107,102,106,100,108,108,92,97,91,104,92,101,105,96,114,110,109,98,99,106,104,99,99,110,103,100,108,100,93,105,104,139,112,108,93,108,107,97,100,90,112,100,74,110,114,93,94,103,100,108,109,95,112,103,112,114,109,102,102,106,105,94,106,109,106,124,109,110,111,110,103,107,110,111,97,98,101,95,94,104,110,94,107,107,109,110,105,104,123,97,112,84,97,99,106,106,98,109,102,100,88,115,100,125,105,108,112,91,109,114,100,112,102,112,94,113,103,120,101,103,88,104,91,101,105,115,101,114,104,106,100,111,113,105,104,96,101,96,116,90,117,106,103,103,104,104,102,111,106,126,92,101,95,89,103,108,98,108,99,120,105,95,110,103,102,104,96,91,104,113,111,100,100,105,96,101,98,110,95,97,108,108,103,64,102,102,103,109,104,103,110,100,105,96,98,121,103,109,98,113,96,102,100,101,109,103,97,111,113,121,98,121,100,95,111,92,95, +538.1665,118,111,80,109,92,72,108,103,92,115,98,107,109,110,114,102,92,90,106,102,104,102,86,100,101,117,130,116,103,104,91,107,88,110,100,102,83,110,96,95,95,108,103,94,97,105,91,111,112,100,100,100,94,102,112,103,98,95,95,109,114,101,105,98,99,101,103,116,116,88,109,110,104,97,97,90,113,95,96,113,109,106,114,108,106,119,105,108,95,108,132,106,99,98,102,122,109,86,104,114,112,111,101,94,102,102,112,110,101,104,105,113,103,108,113,111,107,99,102,104,110,101,109,101,111,100,119,104,119,109,114,113,123,109,103,103,97,91,106,86,103,104,108,98,98,93,100,95,107,106,95,104,100,103,102,109,106,106,109,101,100,100,100,97,104,108,98,100,96,122,109,108,115,113,97,105,102,95,101,112,112,100,117,106,82,109,102,95,107,123,112,104,101,110,110,109,94,94,106,104,105,104,106,104,88,105,102,107,98,107,102,93,107,99,103,106,94,94,107,117,99,118,109,98,106,88,100,113,110,119,100,109,104,100,103,108,111,103,107,107,110,107,107,111,103,87,100,100,98,118,113,108,104,96,102,109,104,106,113,106,100,100,108,91,96,107,103,84,102,116,99,104,96,96,103,96,108,121,94,97,112,109,102,95,107,114,105,115,98,111,98,110,106,144,106,101,113,100,94,113,107,93,107,116,100,108,108,99,108,108,90,107,108,102,102,104,95,109,113,103,107,121,110,105,115,108,104,101,113,105,108,140,105,108,103,109,110,106,114,106,114,100,101,91,117,110,104,110,112,121,109,112,121,99,111,108,101,110,107,115,116,97,105,103,94,113,111,104,104,91,95,91,113,97,110,105,103,96,103,82,105,100,113,107,111,96,91,100,114,107,86,97,94,125,106,105,99,103,110,101,110,107,108,96,107,102,112,98,119,108,102,94,103,103,102,97,113,97,111,138,95,101,105,101,99,90,103,101,100,112,101,101,111,79,100,106,103,113,98,113,116,109,110,111,105,109,107,103,113,105,104,107,116,106,105,102,110,110,89,74,92,95,105,102,114,112,98,107,101,99,107,103,106,93,109,104,100,113,116,103,74,98,109,109,95,88,110,117,110,100,101,112,120,101,105,95,96,94,101,112,110,95,112,94,107,106,98,90,116,105,105,108,105,110,98,94,109,84,110,105,104,93,97,106,80,102,96,109,89,121,120,113,102,102,101,100,100,109,104,102,112,107,95,117,118,121,74,104,101,103,101,100,107,111,106,98,103,104,99,104,108,102,105,110,103,108,110,93,110,94,116,105,104,105,116,102,113,108,118,107,84,101,127,102,103,117,97,120,111,97,105,107,95,105,109,114,100,108,100,97,109,111,102,117,99,106,114,98,85,115,108,104,99,108,107,102,105,99,99,98,104,118,109,96,110,102,86,100,94,110,103,108,107,100,108,104,102,102,99,94,111,107,106,104,100,108,94,102,117,108,104,111,106,102,101,99,108,100,108,97,107,108,108,112,102,106,106,96,102,106,105,106,105,102,105,101,104,104,107,96,109,103,104,93,95,95,97,101,95,107,96,115,102,112,114,110,95,109,115,94,97,99,106,106,104,121,110,119,99,98,112,103,99,112,98,101,101,96,109,98,118,100,97,107,101,113,107,106,89,100,109,103,102,105,107,100,109,97,101,121,102,107,91,121,111,69,101,109,102,97,106,93,105,106,105,104,108,99,83,101,101,108,104,105,99,110,94,107,97,103,113,118,112,113,107,112,97,99,118,99,112,107,93,100,98,116,103,101,99,99,107,111,108,113,97,96,98,105,112,102,97,113,116,104,102,98,101,98,113,98,100,95,103,107,116,103,99,103,115,100,110,105,112,102,103,105,96,104,104,109,120,114,103,114,79,100,108,110,101,99,92,108,107,105,99,95,102,100,90,90,99,111,92,111,123,97,106,104,102,97,99,107,103,102,95,102,104,108,105,107,106,106,109,106,109,101,115,109,98,105,104,103,106,84,100,103,97,110,125,72,106,117,112,106,101,108,106,100,101,102,103,102,97,100,110,102,105,103,94,104,89,102,115,103,96,98,96,119,109,110,103,110,99,104,119,95,98,101,98,101,92,99,122,101,104,108,94,98,108,107,114,104,105,111,97,111,107,107,105,98,92,89,111,109,102,104,110,98,101,95,108,101,102,98,108,106,94,103,101,115,107,111,120,97,99,111,99,94,110,106,108,104,106,102,114,114,105,108,102,98,112,102,106,122,103,103,104,112,105,100,96,100,106,100,105,104,111,100,104,105,100,106,104,108,103,111,117,113,118,114,115,112,109,99,100,111,103,103,108,106,104,100,104,99,121,95,101,114,98,113,66,111,107,111,117,105,118,102,95,116,100,97,115,108,91,113,117,99,102,106,111,100,109,107,118,102,116,101,110,93,100,111,99,95,102,124,90,113,104,93,126,102,107,107,114,90,100,97,103,99,105,103,109,91,94,113,115,118,104,101,105,98,105,113,98,96,106,107,107,117,112,110,103,112,98,91,102,111,99,107,99,103,112,102,107,117,91,116,96,108,101,104,120,96,113,110,95,102,103,96,118,111,113,101,102,99,115,104,113,105,107,106,117,100,98,110,104,111,109,93,101,84,112,100,105,98,97,103,101,106,103,107,91,91,106,102,99,95,97,112,110,106,111,107,98,112,110,110,99,108,86,99,119,110,112,110,109,125,107,109,87,109,113,104,106,117,83,98,109,109,103,97,91,117,97,102,128,105,99,94,110,104,106,116,110,110,104,96,105,109,105,103,94,130,104,110,113,102,102,114,109,124,104,104,107,101,99,106,107,103,109,100,95,110,103,104,114,118,114,99,101,104,102,95,97,108,84,106,94,108,108,111,103,120,96,94,94,98,121,102,104,103,116,98,113,114,112,104,91,99,104,110,97,103,102,107,117,99,104,93,103,107,104,102,99,103,112,111,107,113,98,102,111,96,102,113,108,101,103,109,118,91,111,109,102,113,108,99,111,89,111,88,91,104,100,98,103,102,103,107,99,103,117,127,116,112,102,97,120,103,103,101,97,110,85,117,113,91,95,104,108,102,102,116,101,103,100,95,98,107,94,103,95,109,116,101,103,95,87,101,120,101,99,100,101,92,107,110,106,93,102,105,121,105,99,100,109,98,103,93,102,97,94,99,99,101,116,106,98,105,99,110,99,95,97,102,104,110,98,113,99,102,117,95,91,106,112,125,113,110,109,113,94,109,109,119,109,98,116,107,93,96,97,95,106,101,109,106,105,96,109,109,103,95,112,106,102,95,109,107,110,108,87,109,103,102,101,104,98,101,107,107,94,97,101,111,107,99,109,99,111,101,101,93,108,97,109,105,107,100,95,107,102,108,101,112,122,101,105,94,101,102,104,109,95,108,105,113,113,109,108,109,106,110,98,100,97,112,106,90,105,113,94,97,99,105,112,100,109,103,105,106,103,100,93,103,99,105,103,104,117,102,102,110,106,104,112,104,114,107,108,105,113,84,79,119,118,103,120,120,100,113,100,113,106,110,98,107,95,95,108,107,117,102,106,95,104,89,99,101,99,101,92,105,100,103,102,100,109,102,94,108,103,95,103,102,110,87,99,94,113,107,103,111,95,108,94,112,81,103,104,103,102,114,94,102,124,95,107,104,103,104,96,99,109,95,113,102,101,102,105,97,119,108,110,106,103,101,111,104,104,98,98,106,105,99,111,100,101,97,108,104,97,105,104,102,93,113,109,104,94,108,101,107,98,108,101,104,106,111,105,109,95,104,104,96,105,121,108,115,113,109,104,104,108,109,107,108,99,107,107,111,104,100,94,101,111,97,99,98,110,105,95,114,110,95,100,103,96,108,102,110,109,110,109,100,112,105,99,99,99,98,106,102,102,112,105,96,109,102,103,103,105,103,95,110,102,100,114,103,102,114,107,113,99,125,111,95,101,104,108,101,104,101,92,102,110,91,108,104,98,103,97,94,96,95,98,105,90,106,104,105,103,112,102,91,111,99,94,104,111,117,102,102,108,103,111,107,96,100,104,102,102,91,99,105,117,96,104,105,108,103,83,100,108,111,90,105,104,98,98,102,108,100,101,109,79,104,104,103,108,97,104,105,101,97,112,103,100,102,104,104,90,107,105,101,113,94,110,100,105,102,115,110,101,105,109,108,103,103,109,102,95,114,113,102,111,102,120,104,114,93,106,102,95,95,98,107,95,110,87,99,106,99,93,102,104,111,107,97,106,94,82,107,103,103,104,112,106,101,102,108,105,102,95,109,98,98,105,109,103,97,101,105,107,105,105,87,119,109,101,102,102,106,99,105,109,118,105,106,76,102,110,109,99,107,109,102,103,97,110,108,95,113,97,97,106,113,104,85,94,104,108,80,116,97,97,108,107,105,108,94,95,108,95,114,107,112,101,108,105,113,109,107,106,94,97,88,95,114,93,101,93,101,109,120,116,101,99,96,91,107,117,101,96,100,123,101,109,97,96,102,107,108,124,109,100,107,105,103,91,107,109,110,107,99,102,93,113,105,100,103,105,97,103,102,97,104,112,99,111,113,100,98,97,108,102,96,100,102,109,99,96,113,92,110,115,104,104,96,98,97,103,101,100,107,118,106,101,102,95,101,111,68,102,121,107,79,98,96,95,120,98,95,98,101,116,112,95,97,120,93,95,88,93,103,98,105,99,100,106,99,105,111,88,105,103,102,106,110,100,102,85,114,101,106,111,103,113,89,107,92,106,99,94,104,107,92,101,100,99,105,111,97,99,117,95,97,123,95,107,116,103,102,115,87,103,101,99,98,90,104,100,95,94,102,95,118,103,70,94,112,94,102,98,109,97,104,108,116,99,110,109,113,103,102,106,102,108,108, +538.30731,138,109,105,101,92,101,119,102,107,107,102,111,106,118,105,89,110,103,103,102,110,100,90,107,100,99,141,95,101,95,75,118,103,86,103,101,94,95,103,87,113,108,93,87,112,88,105,104,103,99,88,88,93,116,110,100,95,97,109,94,78,105,108,107,105,130,98,104,110,108,123,100,98,111,102,109,99,91,114,98,100,96,88,109,98,113,107,112,112,111,98,94,114,105,100,99,95,97,112,120,105,99,106,103,96,96,101,92,101,92,103,100,98,113,104,109,94,97,103,103,101,100,106,105,133,95,110,117,109,111,93,117,102,116,107,101,99,95,113,99,92,117,105,93,105,115,112,106,115,87,116,105,113,102,111,103,99,104,105,87,105,117,99,111,107,109,101,107,112,111,129,110,94,95,121,109,97,99,114,111,102,113,105,106,108,99,105,112,99,96,100,104,134,115,101,120,96,103,102,100,109,102,97,114,105,102,109,108,116,107,104,92,96,112,112,121,106,108,105,100,105,113,104,95,99,95,102,105,107,103,86,89,103,112,103,107,107,106,86,105,101,110,101,114,107,101,101,97,109,102,114,103,98,113,110,76,97,109,109,108,98,105,107,92,100,89,112,100,107,105,105,103,106,103,107,102,100,116,96,111,107,107,101,103,111,109,107,106,103,103,97,103,118,109,104,96,102,104,103,107,101,96,109,110,105,107,115,119,86,108,113,101,68,98,99,95,107,103,101,107,116,128,101,117,100,111,86,92,102,116,102,105,103,106,108,111,106,115,104,118,106,94,123,100,90,112,104,114,105,107,100,96,114,108,105,111,108,101,101,114,107,114,105,96,98,109,105,109,129,114,113,104,126,107,114,112,102,117,77,109,113,98,71,115,100,102,105,111,110,109,113,87,104,101,102,98,94,101,113,99,110,111,106,96,107,100,95,110,110,104,99,102,102,117,111,104,91,98,111,92,108,105,92,105,111,93,100,98,109,106,93,107,105,111,109,98,99,105,95,108,101,109,107,101,103,106,100,102,102,112,97,116,100,114,101,97,96,111,102,103,86,105,98,110,104,105,106,99,105,97,108,116,103,104,112,105,109,115,110,113,109,108,116,89,85,104,120,118,108,98,113,96,114,109,109,122,105,89,106,99,98,106,96,103,110,100,111,110,119,107,107,109,110,106,88,95,118,77,91,105,124,111,104,103,122,103,93,105,106,105,113,105,109,112,108,109,113,99,103,106,103,102,116,112,106,109,107,112,112,104,104,100,102,108,109,115,118,110,96,114,105,107,109,118,101,99,108,113,92,100,103,108,106,97,118,110,103,114,113,117,105,106,106,95,116,105,100,108,93,102,117,107,108,116,107,99,106,111,102,103,104,90,109,101,113,98,111,103,113,121,112,101,107,101,112,100,108,108,94,107,99,117,84,104,109,106,96,102,107,89,95,105,97,108,104,109,109,100,110,102,119,98,120,96,103,105,116,104,117,107,109,115,108,119,94,109,107,114,96,105,99,103,116,104,114,108,105,105,104,101,117,103,109,101,105,105,105,117,118,106,80,104,111,104,102,112,108,113,107,106,99,97,105,109,105,97,105,124,115,111,124,99,105,101,103,110,104,115,103,91,104,103,108,107,102,108,104,103,98,101,103,103,107,124,112,102,112,104,114,115,109,105,121,100,109,102,107,111,113,113,115,92,103,116,106,97,96,107,99,110,114,107,104,105,102,109,96,110,105,105,113,112,91,115,97,112,91,108,107,104,113,104,112,106,115,99,117,123,108,105,121,104,113,112,109,107,94,104,104,115,95,111,108,111,101,112,106,101,100,101,114,101,98,99,100,104,120,107,109,110,107,99,112,95,81,108,106,110,96,88,109,104,107,109,92,113,111,102,111,111,104,103,112,111,100,102,113,112,112,94,110,110,109,98,103,102,102,106,104,98,98,99,109,101,121,111,101,101,92,107,113,92,100,98,111,99,82,98,102,112,102,109,95,114,92,116,103,114,103,99,110,110,104,99,101,112,98,114,110,99,117,121,109,119,105,96,99,113,108,103,103,119,101,102,109,116,101,111,90,110,76,116,98,99,96,101,92,111,106,117,103,101,108,106,101,105,105,105,108,116,114,106,111,110,100,101,116,102,99,105,99,109,106,115,141,102,121,106,121,100,115,102,113,108,107,115,110,102,105,105,125,107,102,83,116,103,109,101,88,106,97,114,98,102,113,105,112,106,100,107,107,116,104,118,97,112,110,120,101,118,105,90,106,98,97,101,107,101,111,105,104,121,102,108,110,112,112,132,111,108,97,86,99,101,107,102,104,124,104,110,107,108,105,102,96,104,86,103,106,94,116,103,108,86,108,110,108,97,119,69,108,112,108,102,104,110,101,109,85,106,106,105,113,103,97,102,105,109,99,83,105,118,109,98,113,107,98,109,99,100,106,123,114,96,103,121,101,111,88,106,95,104,93,106,117,103,106,103,117,113,103,112,109,108,103,108,110,96,95,131,113,110,107,106,98,126,105,100,109,110,104,89,103,101,102,95,102,108,96,104,111,94,109,115,110,117,111,99,111,111,110,118,110,98,115,89,103,106,93,107,104,104,101,106,99,102,111,101,119,88,103,107,117,101,117,103,97,102,100,111,112,99,104,96,111,120,101,102,112,98,127,103,106,117,98,106,114,101,120,101,115,96,103,99,114,110,100,98,100,103,106,79,114,105,109,100,109,114,103,102,109,117,105,105,103,120,112,99,115,114,105,118,107,113,111,109,115,120,116,116,100,113,104,110,106,112,111,106,106,111,105,107,98,104,118,113,112,114,107,111,106,109,116,98,98,107,97,95,126,106,107,117,107,102,96,109,111,113,91,115,105,113,115,103,111,120,112,105,103,109,121,112,111,108,113,91,112,104,108,106,110,104,113,96,126,102,111,101,99,97,105,105,104,107,122,97,96,113,96,117,107,107,98,114,110,97,107,111,111,101,109,106,106,109,111,128,104,113,108,94,117,114,96,115,110,115,119,106,104,108,114,96,119,108,115,111,101,109,117,127,123,114,109,117,98,106,111,108,110,99,100,121,107,112,103,100,119,111,105,98,109,116,113,109,108,98,106,106,91,105,111,118,109,109,102,107,102,113,83,116,99,99,110,106,103,103,104,101,103,97,98,112,91,98,104,107,108,103,102,102,109,103,95,103,106,106,112,104,102,99,99,108,90,99,103,102,113,103,99,101,109,103,107,112,105,96,107,102,103,100,105,116,103,121,106,99,110,113,101,101,101,117,104,107,118,107,94,104,103,108,104,102,96,110,102,109,109,102,113,110,111,115,110,107,102,121,108,96,94,115,95,113,113,105,102,114,102,102,128,108,106,112,114,104,107,101,113,115,102,109,98,104,92,114,114,112,116,107,118,112,112,118,118,109,116,99,103,98,114,105,108,103,117,119,108,107,108,99,100,90,109,98,78,101,100,103,106,110,109,107,107,104,115,102,115,92,118,104,102,104,103,117,102,113,117,104,110,106,120,109,111,111,106,106,98,102,110,113,104,121,109,110,118,107,113,111,106,100,108,110,103,116,106,108,115,98,110,104,104,103,110,104,106,110,110,113,115,114,101,100,99,102,106,93,103,104,118,95,114,110,106,107,104,107,104,109,116,103,116,116,108,113,98,109,100,110,106,108,110,108,118,107,100,119,110,102,106,108,114,103,115,107,104,128,106,101,124,109,102,103,109,108,107,96,120,105,107,104,108,108,105,92,96,102,97,105,110,112,117,99,112,110,104,106,113,102,107,101,97,114,108,108,112,110,109,118,117,106,110,118,111,106,100,98,113,112,102,103,100,111,92,110,111,113,101,112,102,108,114,119,95,114,122,102,110,115,102,111,112,110,105,102,106,106,105,106,105,105,111,102,103,117,101,94,108,106,105,125,118,94,107,105,108,118,112,97,99,116,116,103,106,101,101,129,115,107,113,98,114,104,99,110,99,111,113,113,105,108,99,102,101,113,105,101,110,101,95,106,103,98,114,111,101,106,108,104,112,99,110,117,108,111,98,117,108,107,96,104,115,107,111,106,110,114,128,90,107,120,110,95,100,104,107,121,115,111,105,102,116,109,112,99,71,110,110,110,122,116,108,106,113,99,101,106,106,115,95,98,116,110,106,101,97,94,116,110,113,101,112,123,115,109,109,109,109,106,103,118,121,106,106,113,112,102,106,104,107,105,114,114,116,106,117,104,102,108,113,98,100,97,108,109,102,98,95,95,115,97,117,114,113,100,111,106,97,105,97,101,104,118,117,114,105,98,103,112,119,109,105,103,109,88,110,113,109,113,120,116,99,99,121,87,107,100,112,101,114,105,109,83,108,88,113,111,109,119,108,111,98,106,106,106,111,115,101,105,104,105,116,100,98,106,104,109,106,109,97,106,98,104,105,99,106,105,103,94,83,105,113,110,109,105,128,102,111,98,101,99,102,104,113,107,113,106,105,109,107,112,104,111,103,95,99,111,105,123,107,100,99,108,113,94,112,112,105,106,106,99,100,99,103,107,100,103,110,104,99,96,106,112,104,110,112,103,96,98,110,102,106,100,119,99,101,119,108,104,110,123,108,108,106,100,112,108,96,101,113,99,101,106,103,105,121,105,117,102,106,97,100,106,102,107,107,107,103,106,113,103,97,104,99,109,110,113,106,102,92,101,107,111,106,106,107,105,111,98,113,103,105,102,105,112,94,94,97,113,105,98,108,107,113,102,110,100,108,101,109,100,102,91,95,104,112,88,98,93,106,96,103,99,108,91,101,104,100,109,116,113,129,105,99,104,94,106,113,121,108,105,108,88,126,108,95,109,101,116,101,101,112,83,103,97,104,111,108,114,104,114,91,104,105,115,99,87,117,97,101,104,104,99, +538.44812,104,113,97,82,97,122,110,114,94,111,90,92,92,93,110,91,106,84,101,102,102,105,109,97,86,109,77,103,110,106,89,109,109,95,105,100,91,98,110,113,98,99,114,110,109,99,97,76,106,106,99,111,100,107,102,104,98,86,106,102,93,88,107,92,98,121,104,95,115,97,105,105,100,105,99,83,96,114,94,106,104,93,106,107,99,105,96,116,96,101,105,95,101,77,103,99,98,111,96,107,110,97,114,108,108,114,103,99,99,109,109,106,107,76,96,97,89,110,105,101,112,107,112,100,120,114,106,96,112,107,96,116,112,116,118,115,103,110,96,103,105,103,93,100,107,96,110,114,99,105,95,124,103,100,98,104,108,108,112,110,106,105,98,113,111,106,106,95,105,108,108,105,114,96,103,104,99,104,100,103,111,114,108,105,124,112,102,105,107,113,103,111,95,103,99,109,100,105,90,96,99,114,104,106,96,107,103,106,99,106,113,109,111,101,109,107,94,108,108,105,108,109,107,100,135,102,105,115,112,98,131,117,99,119,115,114,119,113,113,86,100,108,105,104,108,107,93,86,108,114,105,96,107,106,111,109,107,105,96,124,100,113,110,112,102,95,117,103,110,93,111,117,107,104,93,103,101,116,109,100,103,109,107,100,104,109,106,99,114,108,105,87,114,105,95,111,102,108,108,100,104,144,124,101,94,122,100,99,107,117,105,112,106,107,118,113,111,116,105,105,102,107,98,82,106,98,107,106,102,99,108,100,107,109,110,115,100,107,94,114,107,98,108,95,117,121,98,122,111,111,99,109,111,99,102,110,102,95,125,108,98,114,113,98,100,101,105,109,106,115,117,105,112,113,108,107,76,104,113,109,114,101,111,98,109,99,113,105,113,100,100,96,98,106,105,103,104,106,97,118,108,126,104,109,101,96,115,103,108,90,110,102,113,109,106,91,97,108,106,103,94,94,103,105,102,109,107,97,102,113,111,110,101,104,108,103,96,111,115,115,119,106,116,112,99,111,107,105,121,112,102,106,96,107,106,103,92,107,103,106,102,117,113,117,108,113,103,104,98,105,106,107,113,117,107,110,106,111,101,87,100,106,117,104,108,111,103,119,107,92,111,109,111,111,104,112,99,106,109,112,115,109,94,114,101,106,107,102,97,107,97,106,94,94,90,109,103,99,102,96,105,81,108,108,114,108,103,107,112,104,102,103,102,130,109,111,117,103,103,111,101,105,99,101,107,108,107,102,114,111,100,92,106,114,107,101,91,103,102,116,110,115,100,106,112,94,111,96,101,102,95,105,100,107,116,103,112,109,100,98,112,100,115,114,111,114,107,105,107,92,113,107,100,110,113,112,98,102,109,108,115,108,108,108,97,106,105,113,100,111,99,116,121,109,102,103,99,104,121,117,107,108,115,109,101,106,108,90,100,101,104,108,105,119,103,108,112,102,110,100,108,112,102,102,103,106,103,104,113,100,104,117,95,115,109,109,109,91,109,85,105,110,117,105,97,114,113,103,95,110,111,107,116,90,96,113,103,117,114,98,102,100,117,86,98,98,110,108,110,104,110,107,108,105,113,87,110,102,114,106,109,114,104,103,111,118,92,112,100,113,100,105,106,106,111,105,95,108,96,98,96,109,93,112,97,119,99,110,107,119,107,92,95,101,100,120,101,97,100,108,116,109,99,106,107,99,107,105,103,107,110,98,106,102,107,143,109,103,107,114,103,114,100,100,104,103,119,97,115,99,110,120,108,102,101,101,109,105,104,112,132,112,82,114,106,116,80,108,111,104,112,111,111,107,108,110,101,108,105,106,91,112,104,106,107,112,117,111,104,93,107,113,93,99,108,104,109,93,97,111,112,110,116,104,113,107,96,103,119,109,114,100,115,109,111,102,110,107,119,102,107,105,115,100,117,105,100,120,93,102,113,100,109,101,99,108,94,109,109,108,116,89,101,99,108,106,108,115,102,111,108,101,106,121,107,96,109,109,104,116,106,118,116,107,110,106,109,108,117,100,102,108,111,104,124,105,84,103,106,88,96,109,98,100,100,107,112,105,88,112,104,113,105,108,100,104,100,106,106,86,106,108,107,105,113,111,108,101,113,93,98,110,102,107,120,106,106,110,115,111,109,103,104,106,105,100,107,124,101,105,73,106,113,105,103,107,114,96,104,109,96,112,113,103,109,108,101,98,111,103,107,105,106,98,107,107,109,107,105,103,111,103,103,110,107,100,103,119,96,110,111,101,110,110,104,99,106,108,109,106,115,104,105,101,106,116,116,112,110,112,90,109,111,108,115,107,105,107,104,104,120,120,110,103,111,106,108,100,99,101,102,116,101,118,111,108,120,119,108,118,101,109,101,113,109,110,116,111,114,106,105,111,108,118,99,109,105,109,122,105,108,104,110,114,112,100,108,117,112,111,96,111,96,105,101,103,108,104,101,104,95,103,112,105,101,113,104,87,111,107,99,92,102,116,109,109,107,102,107,108,103,107,105,104,116,120,94,93,111,109,103,120,101,106,100,93,101,101,104,105,103,98,94,104,88,108,106,130,96,110,110,107,98,97,110,103,104,102,102,97,85,90,108,103,99,68,112,104,110,95,104,107,87,107,100,115,92,110,118,106,103,100,102,82,100,106,101,104,102,101,99,109,103,88,97,112,96,103,98,108,106,102,99,98,102,98,114,100,117,99,100,99,107,98,104,120,105,100,103,102,93,106,108,106,106,95,105,113,103,102,111,73,103,116,106,106,99,111,104,101,125,107,100,111,90,91,105,112,102,109,104,113,91,98,109,105,102,98,116,103,109,106,110,100,98,103,122,111,94,102,103,108,95,110,101,107,112,98,101,107,106,110,105,100,108,106,106,108,109,113,117,109,108,99,113,102,96,94,101,98,102,115,104,120,115,114,111,102,109,98,108,102,103,102,93,110,105,98,111,103,107,112,92,120,108,106,132,113,108,110,105,110,107,100,106,108,98,110,99,101,106,103,112,107,111,113,113,111,107,102,97,99,99,119,95,98,106,108,107,99,121,115,96,95,107,110,111,101,103,102,95,104,112,103,96,105,112,106,106,97,102,109,111,96,112,104,104,113,109,104,105,103,98,110,110,87,104,99,108,87,121,105,99,113,112,115,114,97,105,105,112,107,108,122,106,110,117,108,107,112,110,102,88,113,86,104,96,101,102,94,102,119,98,103,111,102,108,88,101,95,99,125,90,94,97,114,114,104,109,113,109,108,100,110,111,92,109,97,100,116,100,100,107,102,97,108,115,103,110,106,99,88,110,108,100,113,100,96,106,99,99,105,98,99,100,110,67,94,97,106,101,113,106,107,110,95,117,109,109,88,105,95,102,98,110,104,104,98,98,96,108,96,102,111,110,117,112,103,104,117,115,97,101,104,101,105,98,100,75,111,112,104,106,99,104,110,99,107,110,98,98,104,103,119,103,94,111,101,91,109,115,104,101,103,90,110,100,103,133,99,110,108,113,106,107,103,100,119,104,110,113,102,116,100,91,102,105,101,93,114,108,107,103,110,110,107,104,109,100,128,104,102,106,103,118,104,131,109,100,123,98,103,104,96,104,103,126,107,105,108,101,116,106,108,96,99,111,97,123,110,102,105,113,112,99,101,93,97,114,98,99,106,100,110,96,102,88,105,99,107,106,114,107,106,101,117,98,104,104,122,106,98,105,113,99,105,108,110,100,98,100,94,102,110,106,115,99,110,106,99,106,102,93,106,109,117,110,108,104,103,113,109,104,114,103,92,94,102,100,113,98,112,104,91,109,102,107,105,102,110,99,110,104,98,101,106,117,96,110,114,103,106,105,102,97,103,96,102,105,103,117,109,95,111,111,109,95,98,101,98,102,100,103,98,108,109,102,101,107,105,108,98,103,112,111,110,105,96,96,89,102,95,109,109,109,96,88,112,116,101,109,106,102,99,99,98,107,109,92,101,109,96,111,110,92,107,109,106,103,111,109,121,96,93,109,116,90,108,114,93,120,102,101,108,110,99,123,99,91,101,111,102,97,102,105,113,104,110,102,99,87,117,106,131,97,106,99,97,100,100,102,100,108,100,101,103,106,99,99,103,105,98,98,112,102,104,110,116,94,101,114,101,99,94,109,124,111,84,119,100,100,102,93,95,105,96,113,106,105,100,81,114,106,104,100,102,103,109,100,105,112,102,106,101,115,109,105,112,113,105,104,100,109,110,100,106,106,103,83,100,114,113,102,109,104,108,97,94,97,101,95,115,106,107,86,95,96,101,113,111,102,105,97,102,107,103,81,100,117,105,104,108,115,118,108,90,104,99,82,100,103,109,112,128,98,94,106,96,91,108,101,109,120,107,111,103,95,104,103,98,105,105,109,106,104,116,100,108,102,106,108,103,107,104,96,103,100,100,100,109,103,92,103,100,99,108,100,96,101,104,100,99,96,97,95,107,92,97,96,109,96,101,108,108,95,114,94,81,103,94,91,109,103,103,102,104,94,112,109,103,100,107,113,104,97,116,109,137,113,103,95,109,103,107,101,110,97,102,101,100,99,117,103,98,102,111,109,109,102,109,105,99,103,109,102,94,103,106,101,98,100,110,112,113,99,97,110,91,98,105,117,101,111,95,102,106,100,109,105,111,117,97,102,115,98,97,99,105,108,92,130,95,97,106,107,112,102,95,67,96,99,105,105,115,107,102,114,103,100,99,98,113,113,104,105,94,101,91,96,108,108,90,99,104,98,91,96,119,95,106,111,107,92,102,102,105,102,111,107,113,101,95,104,95,98,112,106,113,108,98,119,102,103,102,114,103,114,106,100,95,110,91,99,101,94,107,123,108,102,104,96,98,71,105,112,105,91,109,105,104,93,101,111,103,95,108,109,101,93,82, +538.58887,111,96,87,109,78,92,103,114,101,97,86,111,86,105,103,100,86,95,104,86,98,98,111,101,113,104,101,89,108,100,108,95,112,111,104,81,107,108,109,92,104,98,104,108,98,98,91,113,107,111,98,105,104,91,110,97,100,108,97,98,99,108,102,99,96,103,98,98,109,94,112,106,101,105,111,108,104,96,91,94,99,110,105,95,103,97,107,109,99,97,91,101,99,103,91,105,96,92,95,102,100,89,98,104,109,97,103,106,105,106,100,101,102,112,95,80,103,104,113,104,117,94,98,112,108,116,110,109,88,107,112,123,102,97,108,96,116,112,97,104,98,101,113,109,92,99,111,110,109,116,122,112,113,94,108,104,99,95,100,99,100,117,112,105,112,109,103,100,94,112,113,87,98,111,93,100,73,96,99,113,103,112,92,119,109,100,105,110,109,102,110,110,108,97,108,114,113,121,102,99,100,77,109,106,100,114,95,106,110,107,106,102,130,106,119,105,90,103,117,90,105,104,106,104,109,95,103,99,104,112,95,103,97,110,108,127,121,94,109,113,84,106,109,106,103,95,103,104,112,114,113,108,121,103,93,106,100,105,104,117,98,105,104,99,97,99,106,106,100,100,111,100,107,99,108,103,106,103,106,115,108,100,96,100,100,108,108,101,100,104,112,104,114,100,114,102,94,113,95,107,112,113,101,103,92,100,100,100,103,106,101,105,97,83,116,88,121,104,104,101,115,83,113,112,109,105,113,93,114,102,107,101,109,105,99,108,98,112,93,98,101,102,105,102,95,118,105,103,107,108,110,110,106,90,112,101,107,112,105,111,99,102,104,101,102,105,112,95,100,101,113,110,106,104,106,98,102,95,100,91,104,111,88,99,110,101,100,109,105,96,108,95,91,112,103,91,101,108,100,107,106,103,110,110,108,103,109,117,114,101,92,106,103,113,105,110,104,98,112,102,106,101,90,103,107,96,102,109,105,107,100,96,104,103,105,95,99,108,113,86,92,103,104,108,92,99,110,97,101,111,105,109,107,105,101,108,107,93,99,123,90,108,119,117,141,100,115,96,112,99,99,99,109,102,106,73,100,105,109,108,105,99,98,104,108,110,110,115,111,106,103,114,102,112,97,102,109,109,107,104,115,103,101,108,111,101,108,106,112,109,111,120,114,114,103,104,105,95,103,100,122,112,95,119,102,92,107,116,110,105,96,103,100,103,106,88,113,104,100,95,116,107,91,106,113,124,108,89,111,106,110,105,98,115,105,112,105,110,105,110,117,108,108,102,104,111,114,97,90,101,96,95,126,107,106,107,104,101,96,113,111,102,95,99,98,109,114,118,107,110,105,111,101,107,120,113,106,108,113,101,106,106,109,117,108,106,105,96,108,113,102,120,116,112,79,98,98,95,113,104,117,109,114,102,109,102,117,94,103,103,95,108,107,102,98,105,104,97,107,110,107,102,105,103,99,96,114,101,109,112,104,125,110,104,95,103,107,113,102,108,113,112,106,110,95,87,100,115,114,103,113,105,117,112,85,111,108,113,106,110,105,119,101,101,98,107,99,101,101,103,99,96,88,107,113,104,109,115,108,100,102,100,97,103,104,114,113,116,108,100,113,109,107,99,99,98,94,96,98,112,109,101,89,102,110,101,110,117,99,105,72,111,105,106,104,90,112,97,108,109,111,86,96,107,103,104,98,113,109,103,117,99,97,108,109,116,102,114,113,93,109,103,108,101,100,110,96,102,108,106,96,118,107,98,100,109,112,96,107,100,112,111,109,107,96,113,109,97,106,112,115,96,106,96,100,99,105,105,106,104,101,93,110,107,114,105,98,97,113,97,119,108,98,104,108,95,113,105,102,102,109,102,96,112,94,111,100,105,112,100,111,96,117,104,106,106,112,102,102,98,109,99,104,94,115,109,110,106,102,110,99,112,111,111,99,104,93,99,110,95,105,98,111,99,103,75,94,99,106,106,110,108,103,103,105,103,108,101,107,99,102,110,107,96,105,101,99,103,101,91,104,112,112,108,109,106,108,104,113,115,112,105,113,94,116,99,89,117,106,118,95,90,99,108,95,105,101,97,102,108,100,97,102,99,111,100,108,105,106,86,98,118,105,111,101,104,98,114,109,103,104,116,106,99,109,110,109,110,105,102,108,106,112,106,105,109,131,110,101,120,109,121,110,100,103,103,91,117,112,103,99,109,94,102,105,119,106,103,109,105,113,98,110,106,92,87,105,115,105,102,108,113,102,98,120,88,87,112,112,100,102,105,103,99,102,105,107,99,100,111,97,105,105,109,104,113,98,106,114,106,96,107,112,111,102,123,102,95,103,101,111,103,102,94,95,114,109,107,97,106,115,91,107,102,102,124,116,112,119,106,109,104,101,105,103,113,104,103,96,100,100,114,101,98,109,105,118,104,104,98,103,112,102,110,107,97,103,108,102,105,102,106,104,113,98,111,98,96,117,96,111,107,106,94,116,94,108,105,104,107,109,104,119,94,94,109,101,129,105,104,98,106,108,103,115,122,107,102,105,118,108,97,117,109,84,116,98,108,97,105,94,123,108,107,102,87,100,98,107,101,76,103,107,103,104,98,109,112,102,106,104,105,101,85,109,111,111,95,102,104,110,108,111,109,100,112,105,95,107,109,94,100,104,113,106,99,114,91,107,112,105,116,93,111,107,107,113,110,102,120,102,101,99,107,108,105,113,100,101,106,96,112,107,108,113,108,95,119,120,111,97,118,106,108,105,112,106,118,115,104,106,109,99,107,115,108,105,103,114,108,105,112,110,102,104,113,107,107,101,104,109,101,107,106,110,104,110,116,115,107,107,106,120,106,106,105,106,109,110,127,104,105,113,119,109,97,100,69,104,106,109,107,109,114,113,100,99,99,110,107,102,103,106,106,119,95,108,101,104,108,92,100,113,101,108,107,101,97,98,117,108,113,106,111,111,101,112,108,109,100,106,107,95,101,109,108,91,110,94,113,79,115,109,102,103,102,103,94,98,107,99,109,97,110,113,104,105,116,101,110,130,100,109,97,99,102,109,94,118,104,107,118,112,99,101,84,105,104,88,106,104,114,106,98,84,102,106,104,104,116,109,103,98,104,102,100,94,115,98,101,115,108,106,107,109,108,105,108,93,118,106,106,106,95,125,109,130,101,96,98,108,85,97,62,109,106,102,106,106,108,100,111,113,111,92,76,100,109,111,111,109,96,104,96,113,101,117,99,112,103,105,111,97,106,111,100,94,113,93,111,103,102,118,117,105,102,90,99,108,114,98,97,121,107,102,109,109,98,112,118,116,93,106,100,98,98,107,90,100,105,103,117,105,108,102,110,107,113,109,110,115,100,103,106,102,99,93,109,98,101,106,106,108,100,98,103,92,105,89,121,127,115,107,96,100,105,97,110,108,108,102,104,106,90,103,109,111,107,101,98,105,98,103,107,98,111,100,99,120,100,108,117,110,101,102,101,111,95,102,106,116,108,103,106,113,110,106,95,95,93,127,105,91,118,121,110,108,109,110,122,106,111,116,125,108,108,94,102,80,106,112,104,103,111,106,110,99,98,114,96,91,95,91,108,118,108,110,107,100,102,101,110,94,142,99,98,103,114,122,99,98,111,91,105,107,92,104,108,107,99,95,104,101,115,103,95,98,111,111,106,107,109,98,110,99,107,106,103,91,101,102,101,106,97,110,97,108,108,102,104,117,103,101,98,108,109,104,109,99,106,104,98,101,95,111,97,107,103,106,115,111,99,99,98,97,102,109,96,105,116,95,100,119,114,113,108,121,113,102,103,106,95,98,108,109,99,95,104,105,120,98,113,97,108,105,106,113,103,104,106,103,111,99,97,113,98,99,94,92,104,89,113,99,109,100,106,107,103,90,94,96,104,104,99,91,99,108,107,107,104,86,108,110,104,107,103,96,104,108,104,103,104,101,104,91,117,101,109,112,106,104,102,100,117,98,78,112,99,108,118,101,105,100,99,90,119,88,118,115,99,107,105,108,99,104,113,114,103,103,108,110,104,95,125,103,116,109,107,120,113,105,103,103,103,98,97,100,108,110,112,113,103,96,121,114,112,116,106,100,102,103,101,98,102,98,99,105,107,102,99,109,108,100,98,99,112,100,109,107,111,105,105,95,101,103,94,109,108,107,95,90,116,112,101,101,106,101,87,113,109,107,105,100,95,107,95,100,97,103,104,102,95,109,106,102,119,112,105,103,100,92,105,114,101,100,95,93,111,106,110,97,110,106,117,114,112,103,112,98,104,104,95,104,105,115,106,101,101,103,113,93,102,98,113,109,105,107,106,109,116,101,99,105,99,115,104,98,105,100,107,102,88,97,109,101,110,103,97,110,105,107,107,108,106,96,101,102,108,108,109,95,88,130,112,111,100,99,99,102,99,127,115,99,105,96,98,95,105,96,107,102,101,101,103,105,101,112,93,67,103,102,104,108,94,109,93,113,92,106,105,76,95,104,106,104,94,100,91,100,125,102,95,102,107,104,95,106,115,103,108,105,111,94,111,100,103,103,102,110,88,103,99,103,93,109,106,106,113,95,105,90,100,104,102,103,94,96,95,114,107,106,113,106,102,108,101,102,104,85,87,108,97,110,108,113,98,114,103,102,104,97,105,104,73,101,91,101,116,111,99,109,100,99,119,109,110,120,116,101,98,95,76,105,108,112,98,104,108,96,97,112,106,109,102,95,102,108,102,103,113,112,111,107,117,96,96,96,105,121,103,112,106,110,109,98,99,102,106,111,95,103,108,111,99,101,100,104,105,95,108,107,95,99,80,108,109,100,111,91,78,124,103,99,104,97,103,73,100,100,72,116,106,98,97,99,104,102,100,100,99,104,105,95,83,110,88,114,103,95,96, +538.72968,103,103,106,118,90,103,100,100,102,120,104,96,94,105,109,98,112,104,98,91,110,109,104,105,114,95,105,113,104,111,114,110,104,114,105,98,100,99,123,102,90,101,102,95,89,109,101,104,89,115,95,106,106,97,101,94,100,107,103,99,104,109,114,104,112,109,100,105,112,109,104,99,94,104,104,106,110,99,112,128,107,99,108,105,101,100,103,109,109,122,103,93,115,104,101,102,101,93,104,99,94,100,106,108,99,122,93,96,98,106,102,95,112,104,109,106,104,117,102,114,98,116,101,98,107,98,111,93,125,109,104,111,95,100,92,101,105,95,108,98,105,103,106,108,99,114,98,112,106,95,107,92,93,99,107,92,114,110,96,97,102,94,100,99,106,113,102,91,97,102,107,112,92,103,92,102,109,107,102,102,105,116,100,114,104,108,107,110,99,103,97,102,107,110,108,113,100,111,99,106,102,111,100,98,101,104,99,102,94,112,91,105,117,103,113,103,116,102,107,111,100,99,95,89,108,102,110,108,109,97,100,99,103,103,103,108,109,118,105,104,94,112,106,114,118,95,97,99,104,115,100,108,102,106,96,90,105,106,105,104,110,82,108,117,91,113,112,93,101,97,102,103,98,100,98,96,92,101,108,101,101,102,101,99,121,96,108,111,99,104,108,102,98,110,99,95,106,109,101,88,108,104,108,104,101,101,104,107,99,105,91,104,90,101,102,106,101,97,96,105,105,96,99,106,111,99,106,89,112,113,105,94,105,102,99,112,118,100,101,101,109,111,115,88,105,115,102,94,108,107,100,103,104,109,100,107,108,105,98,99,108,104,99,102,109,90,107,114,103,96,114,107,115,100,100,102,109,110,89,106,103,109,107,112,99,107,108,101,95,109,122,105,102,91,105,106,105,105,111,103,108,106,76,101,112,104,106,122,103,97,97,107,115,109,102,99,99,100,111,96,100,107,105,85,113,99,108,96,104,119,99,122,95,103,100,100,100,106,92,102,110,105,105,110,108,108,105,92,109,111,115,105,104,108,97,108,96,113,109,96,105,106,108,126,104,97,113,111,106,97,105,104,122,108,102,115,102,118,118,99,129,99,105,91,103,101,106,113,95,114,104,99,92,112,93,102,106,113,103,110,105,99,100,113,108,108,111,98,113,109,103,110,108,107,99,116,97,95,96,98,95,106,108,108,102,91,112,106,108,102,97,105,112,118,106,101,94,90,98,113,98,108,100,99,111,114,108,101,108,114,112,126,107,110,118,104,117,115,97,101,101,99,85,116,105,73,119,123,104,104,99,115,107,112,101,107,132,98,101,106,98,119,102,108,111,99,102,95,137,101,117,110,101,97,114,99,93,112,99,102,116,113,113,108,103,105,102,110,109,111,114,110,104,95,107,114,108,104,100,110,113,103,99,107,111,106,94,127,68,115,105,100,108,93,91,107,89,96,98,96,102,106,112,96,101,104,100,99,103,108,89,103,109,103,103,112,117,113,105,105,113,100,100,117,96,103,105,106,107,113,100,112,103,101,99,102,101,98,110,97,117,100,122,98,100,98,101,118,110,94,105,103,114,112,99,103,101,100,110,104,109,100,100,94,107,118,109,112,101,99,120,111,101,109,106,105,110,109,100,101,107,99,111,100,99,99,114,115,113,114,108,110,103,102,103,99,100,89,111,102,112,104,114,114,118,110,110,100,107,109,99,107,108,114,100,116,101,96,106,105,110,104,102,99,107,121,99,108,106,100,110,96,118,109,86,109,97,102,103,104,110,101,99,104,99,107,98,109,101,117,106,117,100,111,96,105,99,96,116,91,96,101,110,122,114,107,96,119,107,109,102,105,102,104,100,109,116,109,103,105,99,103,93,106,106,112,121,98,133,94,105,106,90,123,111,120,104,91,99,110,92,103,107,96,88,113,102,103,113,115,107,110,101,104,108,85,107,107,101,109,97,96,109,98,112,96,109,102,110,104,85,116,107,102,103,104,111,105,111,104,103,114,99,107,101,109,97,103,108,107,104,112,121,103,99,112,94,108,105,102,99,104,104,108,102,102,115,105,103,117,108,95,98,102,108,103,106,103,110,117,105,112,103,101,88,113,82,103,115,112,112,110,90,113,101,103,100,105,93,101,111,95,103,98,101,114,110,111,106,100,100,108,99,100,103,108,106,113,106,106,110,94,110,102,111,113,103,98,104,86,91,104,101,94,96,107,91,82,97,108,122,117,87,105,115,108,108,103,103,118,99,98,110,110,105,109,106,97,108,113,107,99,100,99,119,109,97,102,97,121,99,114,114,103,98,108,110,100,104,106,107,108,98,107,109,106,119,103,107,112,103,121,117,103,103,97,105,102,115,104,97,114,101,108,107,108,99,113,98,114,108,107,109,94,105,96,111,102,102,114,97,119,98,100,105,98,102,100,108,103,113,112,106,106,89,109,102,115,110,90,110,104,100,115,113,128,109,92,107,112,108,104,104,111,95,100,97,139,120,101,110,104,113,101,112,111,104,113,107,104,106,111,108,100,111,99,109,110,104,101,107,107,115,92,93,108,103,97,113,112,105,116,113,102,106,114,112,89,103,110,110,116,99,113,98,106,108,100,103,116,128,108,114,104,99,116,110,104,114,93,112,108,101,115,103,127,106,93,108,108,115,99,107,111,102,113,99,99,108,106,102,111,81,102,110,103,107,100,101,118,97,95,118,119,107,107,107,108,104,101,95,96,98,109,108,110,123,139,105,101,101,107,100,107,111,110,108,104,102,83,110,103,96,108,104,98,113,100,121,105,100,97,100,93,106,115,113,111,100,111,106,108,91,117,104,102,115,112,107,99,108,118,124,100,112,95,109,103,100,110,113,107,90,112,101,113,110,112,103,102,124,103,104,102,108,104,105,98,124,105,101,117,86,109,98,111,106,103,101,102,110,102,103,106,104,99,117,96,109,100,107,76,88,111,102,106,87,107,106,109,99,103,110,101,122,125,116,118,112,115,120,120,101,112,99,112,112,111,105,109,116,99,85,103,122,97,116,113,112,109,96,116,108,116,103,102,109,127,102,115,102,108,116,125,103,106,108,111,63,105,114,105,111,99,111,107,120,100,104,106,109,108,106,120,109,107,103,118,104,95,110,108,107,108,96,106,102,113,103,94,102,87,109,102,108,103,108,100,116,106,101,101,95,109,106,104,103,107,111,105,117,99,106,128,105,96,111,113,103,100,100,95,110,107,115,102,102,101,117,120,106,94,108,110,100,98,112,136,104,129,95,92,111,88,104,101,110,96,108,106,103,104,113,109,104,101,118,107,113,106,118,108,99,117,117,101,102,107,98,103,101,100,96,92,108,95,130,108,136,95,103,103,113,97,108,105,113,117,116,112,124,99,101,100,96,117,107,107,94,100,106,99,106,103,95,101,106,99,106,116,106,97,85,100,105,97,108,107,86,119,108,107,104,100,102,95,104,107,103,103,87,106,112,99,98,113,102,91,94,108,116,128,95,120,118,115,113,103,106,107,110,121,101,101,113,103,136,105,100,110,102,119,110,98,107,106,93,113,123,114,106,101,103,112,104,105,117,106,127,108,96,110,103,111,100,107,98,99,106,107,106,92,112,107,113,97,103,107,106,103,102,113,107,108,114,106,108,107,84,113,94,98,97,102,100,96,111,99,104,97,115,110,114,102,101,110,109,113,110,97,121,107,107,102,119,113,105,113,100,94,94,111,104,106,106,110,112,112,100,101,132,100,111,104,102,95,118,104,107,104,107,111,95,102,104,99,97,102,111,108,105,126,99,102,77,112,110,99,110,99,114,97,109,100,102,109,105,110,107,114,80,105,105,100,94,104,117,100,94,115,100,115,102,104,99,105,110,105,101,100,94,107,87,110,104,115,117,109,117,109,108,99,112,114,103,100,130,99,104,102,103,110,99,106,101,103,95,104,108,96,91,111,109,97,105,106,109,99,108,103,116,108,108,105,112,98,100,99,106,98,108,116,98,100,115,101,96,105,111,122,113,104,92,95,119,107,107,99,107,106,108,100,96,101,114,103,106,102,114,98,90,110,110,102,94,115,101,109,109,106,102,115,108,124,110,107,104,107,109,103,100,103,99,111,127,104,104,98,113,106,117,127,105,119,96,93,117,110,110,109,99,105,107,99,100,107,108,106,118,104,87,109,113,109,103,128,102,102,115,115,107,91,99,114,103,109,108,102,103,115,103,107,99,95,100,98,103,98,92,106,106,108,116,119,119,120,111,107,98,113,102,104,103,104,108,120,94,101,104,98,107,107,115,119,106,116,91,98,110,113,104,99,114,117,101,108,113,109,101,123,113,98,116,110,106,100,109,108,105,107,105,106,120,109,102,106,120,112,113,103,94,110,109,109,102,110,114,110,106,112,101,103,110,117,95,109,97,92,110,92,105,91,109,101,95,102,99,104,108,92,110,122,105,119,107,102,113,97,122,126,96,104,95,109,106,116,97,93,113,106,92,97,100,108,106,95,104,102,98,104,101,106,97,107,97,104,108,102,106,114,97,107,99,107,113,104,114,111,95,101,111,100,104,95,101,104,110,105,93,101,110,100,113,117,114,107,98,100,121,106,102,106,102,118,111,118,113,116,104,114,106,103,113,112,91,102,125,103,102,108,100,95,103,99,107,97,105,103,113,93,109,109,120,88,107,91,107,110,103,113,104,85,93,104,112,112,109,111,106,95,105,94,104,121,112,107,110,109,117,102,82,111,111,108,107,108,104,116,97,102,98,103,107,123,112,103,114,108,95,100,124,104,107,103,107,100,106,113,99,97,117,106,91,108,121,106,102,111,94,106,123,127,97,102,103,111,96,102,110,100,109,100,113,118,98,89,106,96,104,92,94,109,97,99,95,96,96,107,104,115, +538.87048,108,97,92,114,93,99,96,103,94,103,93,101,103,110,103,95,113,113,96,112,98,108,95,102,96,95,83,84,101,100,105,106,102,94,97,96,112,97,105,97,100,94,102,108,98,110,100,117,108,103,114,104,114,99,93,99,92,96,107,96,95,100,103,101,99,107,92,107,117,115,100,106,116,107,102,100,112,106,105,99,110,93,101,100,107,97,98,99,104,105,98,98,110,97,87,97,106,102,108,89,102,102,97,118,105,103,96,103,100,96,102,112,94,90,95,90,100,108,106,101,116,109,125,108,106,119,112,78,94,99,95,114,98,101,100,114,98,106,112,104,104,107,95,99,100,100,118,113,113,104,98,104,105,91,99,109,102,102,108,94,100,110,118,105,105,99,97,94,108,110,105,112,100,106,120,112,88,100,106,108,113,110,143,124,101,104,94,97,102,112,109,112,111,108,109,94,105,134,104,97,98,108,87,105,99,99,98,100,108,105,94,107,114,107,102,104,96,97,100,108,115,108,104,103,108,102,106,105,112,102,98,104,99,100,106,118,103,112,116,107,97,111,111,106,103,99,103,118,103,106,97,98,100,72,110,106,103,106,95,102,104,107,98,109,100,96,107,111,106,102,88,102,98,105,104,106,112,116,109,114,112,116,90,112,106,93,97,101,107,109,105,105,103,104,111,115,92,90,112,117,111,106,103,112,93,108,109,96,111,105,92,115,102,104,109,109,103,106,109,93,101,109,107,113,99,106,103,96,102,113,102,109,121,104,102,92,110,110,99,103,108,99,95,102,98,113,115,111,110,121,107,99,106,103,100,103,111,105,110,98,102,107,99,86,98,103,95,120,106,118,103,99,107,94,97,106,110,100,89,96,102,91,106,106,98,114,98,109,109,107,102,95,98,97,115,113,106,106,106,105,99,111,103,99,108,107,105,96,103,104,99,92,108,102,103,99,97,99,111,113,102,106,94,114,95,98,109,94,99,101,101,108,106,109,103,100,105,95,106,101,114,103,112,105,91,99,105,101,104,117,100,109,111,109,112,109,107,109,109,101,100,107,100,109,104,103,96,105,114,103,87,116,106,101,103,92,101,110,120,107,101,105,93,103,106,100,112,104,104,103,101,113,102,106,93,97,99,104,105,100,113,100,109,107,90,109,99,103,113,115,112,108,109,109,118,112,102,98,104,96,104,110,111,109,103,101,109,99,113,105,90,99,95,104,108,117,110,84,96,113,105,102,109,98,108,108,95,102,111,108,90,103,95,101,92,111,103,102,94,95,108,100,129,99,95,91,106,106,113,105,95,95,102,101,100,114,105,100,111,102,105,103,102,97,101,106,109,111,114,98,106,108,95,104,102,105,102,106,109,91,98,93,96,94,104,90,97,105,112,99,106,110,99,110,113,96,98,107,113,112,103,101,100,103,104,102,95,95,117,99,107,95,96,112,111,111,110,98,83,107,119,115,101,91,98,75,95,106,113,114,105,107,106,95,103,105,99,111,99,117,109,97,105,117,107,96,117,100,98,102,98,111,97,94,115,104,96,106,102,99,94,103,97,96,98,93,94,109,94,83,114,117,109,92,92,103,105,96,98,97,106,100,104,100,114,103,98,104,102,100,100,102,105,106,98,101,104,105,105,97,99,94,105,101,97,96,102,110,100,101,113,101,103,110,107,110,110,99,100,122,109,99,114,102,105,100,117,107,113,101,105,106,96,106,106,109,102,94,107,104,94,91,98,97,111,104,95,99,98,95,118,103,108,105,112,91,110,113,95,92,114,115,108,108,117,107,104,108,95,103,106,108,111,111,103,107,96,95,105,109,114,104,129,103,103,116,114,103,105,97,112,100,99,104,111,109,113,108,107,95,106,116,99,105,103,93,104,96,95,108,101,106,129,95,82,114,94,114,101,108,105,106,125,101,98,107,106,103,103,97,104,96,97,80,92,112,85,105,92,108,115,101,98,108,101,101,96,97,110,116,106,110,93,94,105,111,109,99,110,102,106,98,110,113,115,97,92,112,100,106,107,115,100,107,105,101,106,109,113,95,106,100,116,104,101,92,99,105,104,108,103,105,105,108,114,96,114,114,101,95,92,107,108,100,117,104,109,99,107,98,102,114,103,112,106,107,107,95,108,101,98,110,108,95,103,117,103,87,99,100,108,103,107,105,104,104,110,100,101,120,109,102,97,100,111,103,103,106,104,109,108,110,103,94,101,110,106,109,102,103,108,103,105,97,99,100,97,101,107,93,103,106,110,102,114,92,100,108,103,80,110,100,108,108,110,94,108,113,101,109,96,98,112,113,117,112,106,110,106,104,111,98,106,105,105,93,97,92,95,109,110,110,108,101,100,112,104,103,115,114,86,112,98,102,103,89,92,100,105,103,133,84,117,106,108,106,95,116,91,117,104,110,117,109,94,110,108,106,105,100,98,118,103,106,86,99,112,111,105,100,121,112,107,106,100,108,85,98,120,113,110,106,110,97,103,101,88,99,110,97,107,95,116,108,109,93,107,97,106,99,106,109,100,102,89,96,109,106,105,108,111,113,107,99,104,103,104,106,106,115,102,79,112,94,105,95,109,105,110,98,110,99,105,106,100,108,96,111,113,108,99,107,109,101,92,110,106,101,91,97,113,93,101,72,108,97,102,103,113,75,108,94,95,108,125,116,108,103,103,99,102,105,99,106,103,99,108,114,95,107,106,99,102,95,99,104,113,105,107,125,114,94,112,93,112,102,107,111,95,112,98,101,107,100,115,113,102,102,106,96,136,98,107,104,102,104,106,114,108,103,100,104,98,112,98,105,107,108,103,116,111,107,112,95,97,108,102,101,103,111,95,106,94,109,100,102,102,113,103,119,105,111,101,104,103,99,101,130,111,115,106,109,105,110,113,105,97,120,93,108,108,105,101,102,106,107,97,105,98,119,112,106,113,103,96,104,106,104,102,105,103,113,99,106,94,97,108,98,92,99,100,106,92,99,111,102,110,109,108,101,107,116,91,113,109,116,102,98,102,98,103,97,95,95,133,102,103,104,101,98,99,111,110,108,105,106,106,113,109,93,94,118,94,102,107,103,106,93,101,95,120,106,110,103,109,94,108,102,87,112,112,97,109,110,103,109,96,105,108,101,96,93,106,109,100,98,97,102,107,102,92,110,101,98,111,110,99,113,108,110,128,100,101,114,93,103,115,97,109,112,103,103,109,106,108,106,101,97,100,113,113,107,109,107,125,110,108,93,111,109,108,96,113,107,101,112,98,116,99,107,98,99,109,103,103,106,107,105,108,110,102,109,113,108,81,100,112,103,104,124,108,104,96,105,114,98,112,106,105,101,97,111,102,93,116,103,120,111,97,113,101,106,107,100,92,104,109,106,102,106,102,100,108,101,105,105,101,103,91,102,109,106,109,105,100,97,101,104,92,107,101,97,94,108,94,109,96,112,110,98,94,108,117,99,103,90,102,110,113,115,79,105,106,103,106,107,99,122,103,105,109,117,94,112,109,99,108,103,109,92,115,100,119,108,102,96,86,102,108,97,102,94,108,105,116,111,102,109,107,97,111,101,100,113,107,100,105,98,106,104,109,103,104,113,109,113,109,95,107,111,102,95,112,90,95,100,109,105,96,103,102,120,103,105,107,95,125,103,104,116,111,94,108,115,100,100,107,133,122,104,112,109,107,97,98,99,92,113,111,90,104,83,96,96,107,100,106,96,108,104,132,95,100,85,106,91,99,88,106,101,106,68,102,95,105,104,98,109,105,106,99,104,103,96,93,103,112,102,107,97,97,105,110,112,97,109,109,99,106,110,114,102,121,103,110,88,115,82,105,102,84,112,112,96,106,104,101,111,106,109,97,106,106,108,103,110,109,102,100,99,97,119,103,98,103,110,103,91,104,107,109,98,113,113,108,101,109,101,105,103,107,109,90,110,101,101,95,112,98,103,111,125,97,102,93,103,107,99,102,111,115,107,99,102,107,95,106,105,95,110,106,123,108,97,106,99,107,104,106,99,105,112,92,101,106,110,114,109,114,111,93,101,98,93,103,96,104,103,99,104,108,106,96,98,98,118,95,99,98,100,101,95,104,102,117,85,101,109,108,103,114,104,111,111,88,95,108,103,111,105,102,99,106,105,109,95,101,106,104,106,105,93,109,92,118,113,103,91,101,95,119,110,109,77,91,102,97,98,107,95,106,106,114,98,104,98,108,96,105,99,88,108,102,102,102,108,111,125,111,97,109,109,118,89,102,97,104,115,122,94,97,96,121,76,88,100,105,108,89,98,101,89,105,98,96,108,100,96,100,109,96,108,110,106,115,101,99,107,109,108,100,99,99,106,109,95,84,102,102,100,92,102,106,105,108,102,100,100,101,97,100,113,110,106,98,110,101,106,103,101,81,94,106,102,94,99,115,108,113,103,104,96,89,102,108,99,104,108,102,121,98,106,96,111,105,107,100,108,109,109,106,99,110,113,95,102,97,100,103,96,107,109,107,99,110,102,105,106,95,101,105,98,105,105,108,103,96,116,110,104,88,104,98,99,100,106,105,107,104,105,104,108,117,99,106,99,105,121,115,94,95,96,99,94,105,90,94,110,100,109,107,102,105,112,104,105,105,106,100,97,108,105,94,102,107,98,121,114,103,100,89,92,108,98,109,105,121,99,94,99,113,101,118,101,100,90,105,105,95,100,99,101,84,92,97,124,92,102,105,99,88,98,98,106,99,94,103,102,109,104,114,101,83,99,99,95,76,110,103,99,107,96,109,90,113,103,106,93,101,90,82,103,110,97,99,92,111,110,105,106,104,98,97,89,112,95,104,111,85,100,92,120,87,100,87,124,107,117,113,85,92,95,107,103,98,88,110,103,91,107,106,108,97,103,104,102,100,104,104,107, +539.01129,112,109,97,106,105,105,101,94,95,106,90,107,111,101,113,83,106,106,98,99,90,111,94,108,90,121,92,101,110,119,89,86,113,114,104,102,111,105,84,105,94,109,90,103,112,119,104,107,100,108,99,106,122,119,112,99,101,100,101,100,106,92,101,110,106,111,95,108,122,108,99,103,90,110,101,110,102,112,107,86,115,113,114,96,103,90,92,100,105,101,101,97,104,98,95,101,101,101,95,109,74,101,99,103,101,113,108,110,98,98,106,97,103,105,99,102,111,112,106,85,98,106,108,102,111,107,115,100,120,108,110,103,92,98,89,113,104,100,103,95,112,99,107,94,99,106,106,113,99,104,111,97,103,113,104,102,114,102,99,104,106,110,83,88,113,111,103,107,100,110,100,111,99,96,105,106,108,111,122,106,108,117,106,107,102,113,104,101,111,107,80,102,109,98,110,117,90,111,103,93,98,112,114,101,111,98,104,98,118,98,103,99,107,104,100,111,93,109,96,108,106,107,104,88,111,98,98,98,108,97,105,99,104,103,104,107,111,94,100,106,99,102,111,102,109,112,121,111,98,96,102,95,110,98,91,114,96,102,95,107,94,103,95,104,99,100,106,103,96,97,106,107,118,102,102,97,99,109,117,105,105,102,97,99,105,106,110,109,100,114,102,99,95,110,108,112,98,113,111,107,102,107,98,107,92,100,102,100,97,103,95,122,102,113,83,101,103,117,114,117,96,106,113,99,108,112,97,87,115,111,112,107,116,106,104,99,99,101,104,111,104,105,103,99,104,100,105,91,107,95,98,100,113,92,95,100,110,99,98,104,103,90,108,94,103,99,100,110,103,99,107,89,100,77,106,94,108,106,104,110,99,111,97,111,107,96,99,104,97,107,115,92,102,96,99,97,112,100,107,105,106,105,106,112,111,109,97,90,101,96,104,99,108,105,127,104,104,98,100,102,101,103,96,105,104,104,106,106,110,108,93,102,96,105,107,99,102,105,109,111,102,112,100,113,102,109,91,94,100,103,104,103,110,110,121,114,103,109,116,106,108,106,87,109,114,136,99,89,117,88,103,102,101,102,94,100,103,102,114,104,104,108,112,97,111,109,94,101,111,89,98,120,105,95,108,137,99,117,108,106,108,104,118,104,109,109,89,103,100,107,112,106,122,100,106,103,108,112,105,102,100,110,97,102,111,112,107,119,106,103,128,104,106,106,118,103,110,102,102,104,103,117,106,112,103,110,110,112,110,110,105,97,128,77,99,103,108,111,105,103,101,103,101,114,95,108,124,103,106,94,105,120,112,114,97,115,105,89,103,102,99,102,91,114,99,107,113,100,108,100,105,102,108,113,118,104,104,111,89,99,95,108,117,101,111,93,103,101,113,100,106,110,106,108,132,110,105,106,102,106,99,104,100,96,107,106,103,116,98,104,112,102,101,93,91,108,100,90,103,98,109,103,102,110,97,70,101,100,116,127,101,109,104,109,97,106,108,108,108,103,120,106,106,108,94,104,107,106,108,97,111,114,112,104,113,106,107,94,114,108,105,122,89,102,111,97,112,105,106,103,91,116,103,113,84,108,108,95,102,94,104,105,95,106,103,107,109,117,97,108,121,99,108,109,98,99,106,99,102,104,108,95,100,98,101,107,106,116,109,103,106,103,100,102,105,108,109,95,104,98,113,98,98,102,107,102,105,110,100,100,96,104,110,89,99,103,105,105,103,97,98,106,94,113,105,109,97,102,110,94,102,106,113,116,90,91,101,103,121,119,107,103,104,111,92,100,110,104,103,100,103,101,102,101,118,111,103,106,101,116,95,121,97,117,83,103,111,108,108,95,102,105,99,95,110,103,110,104,113,103,99,112,112,109,101,106,108,110,101,102,100,106,107,109,107,99,113,104,101,113,102,99,117,106,97,104,106,97,100,105,104,114,95,105,93,100,104,105,101,116,103,114,112,107,102,99,108,109,106,111,111,107,101,118,111,110,108,96,108,107,119,110,106,100,111,107,109,107,117,104,106,106,92,91,96,102,114,106,107,99,108,115,107,102,103,98,109,100,103,91,102,105,99,106,97,96,102,99,99,107,108,107,104,101,102,104,103,92,121,91,105,110,99,105,101,109,114,103,117,95,111,100,108,105,96,106,91,101,111,81,99,98,96,110,108,99,102,108,99,118,118,110,98,104,104,109,104,98,103,103,95,99,104,102,98,108,108,103,105,114,110,112,105,104,104,91,114,108,109,109,115,102,114,102,95,108,110,117,102,113,112,100,91,103,104,121,101,107,99,104,108,102,101,104,99,97,106,95,105,122,108,109,102,96,103,99,101,107,109,106,111,109,108,97,87,101,108,99,112,111,96,110,116,113,101,101,108,104,87,109,98,100,104,98,112,111,100,102,111,105,97,96,103,93,100,98,114,111,110,95,100,125,103,98,105,104,106,107,107,106,103,118,99,113,104,110,111,109,116,87,103,106,105,109,100,106,99,112,123,111,107,115,97,107,115,113,114,109,108,114,103,108,114,106,113,104,105,102,110,120,104,103,108,109,104,107,81,112,109,110,88,126,105,102,107,96,122,106,117,102,98,95,100,85,110,101,96,91,107,104,108,106,111,106,112,118,117,113,103,103,106,99,111,102,116,106,98,98,102,110,109,104,109,113,80,101,103,108,114,114,94,108,94,102,108,119,125,111,112,111,104,110,122,113,120,112,100,107,107,111,115,105,99,108,107,107,95,106,115,108,104,124,110,113,108,110,109,105,102,115,100,113,106,106,103,116,94,113,103,105,118,112,105,107,94,112,113,101,103,121,94,102,114,105,103,106,116,99,108,107,113,107,104,110,107,112,102,108,94,102,105,101,109,111,108,89,106,102,113,114,107,113,103,118,107,106,108,91,112,119,103,97,108,115,101,108,107,111,111,110,110,114,112,96,106,116,79,99,116,118,104,112,100,117,110,114,126,111,106,108,100,116,100,91,104,110,103,93,111,102,104,93,92,103,119,119,107,109,115,101,111,100,121,105,116,93,91,104,111,113,106,106,115,99,126,110,105,107,106,120,87,99,104,98,111,102,111,109,109,103,107,120,109,97,108,108,110,109,101,106,108,96,96,107,105,112,99,112,109,68,103,106,129,102,94,103,103,117,105,121,106,87,100,118,110,108,94,98,107,106,108,107,100,123,106,113,127,105,108,97,113,104,98,100,89,106,112,112,119,103,110,107,100,97,103,95,121,112,110,93,103,105,95,96,110,110,104,104,106,106,96,113,104,100,102,107,107,110,103,90,115,98,109,116,106,70,100,108,131,119,107,106,99,112,118,97,106,108,110,96,100,95,109,102,98,116,110,102,119,99,107,120,109,107,106,100,113,106,103,107,105,108,103,110,110,120,102,116,108,101,92,84,109,97,115,104,88,103,113,106,107,103,107,105,105,103,92,113,120,76,107,109,106,102,109,96,105,108,93,103,104,111,106,96,98,109,110,104,105,103,99,105,101,107,107,102,102,111,105,100,95,105,112,96,101,105,112,104,113,110,106,101,102,107,105,92,100,98,97,110,106,93,105,103,83,93,101,110,92,96,91,88,98,108,110,104,113,97,117,92,87,120,111,105,104,103,107,116,99,112,102,116,112,103,102,83,107,93,100,87,106,87,81,107,91,106,98,104,79,100,98,111,100,95,97,85,104,97,102,107,103,100,108,103,106,102,115,107,90,101,91,98,102,102,103,106,103,98,109,100,102,109,93,102,109,111,108,103,100,109,98,113,104,113,106,101,115,109,105,102,96,111,103,118,102,95,122,97,102,100,106,100,101,98,106,113,113,91,108,104,104,116,105,99,102,98,112,94,98,106,102,110,117,113,104,116,102,108,103,98,110,100,109,96,111,113,105,112,93,113,110,96,110,108,108,105,100,101,107,105,108,110,112,106,104,96,103,94,127,98,107,104,100,107,100,111,105,128,76,103,99,98,115,96,107,103,103,100,102,125,103,100,103,105,113,103,110,100,105,108,125,94,113,108,110,113,117,92,101,113,117,103,105,103,115,127,117,99,100,110,114,103,100,105,93,113,88,109,105,105,99,109,96,111,121,116,110,108,106,123,110,116,107,104,114,98,113,99,105,106,97,102,101,110,98,107,113,99,106,115,111,97,101,92,98,93,110,115,108,91,114,112,104,108,109,108,87,110,102,109,112,103,119,104,103,105,102,102,116,110,116,102,88,118,113,98,120,110,110,92,111,106,112,106,99,96,102,101,113,101,91,95,113,119,110,99,102,88,102,106,108,96,97,105,102,100,111,109,94,113,72,100,107,97,101,103,109,101,128,125,105,112,107,98,111,106,101,100,107,101,100,94,101,116,102,94,115,111,97,107,106,106,111,107,94,106,96,106,99,91,101,93,106,102,89,105,91,106,103,94,111,107,104,92,106,99,111,101,103,112,92,103,109,87,100,109,116,119,112,116,102,84,100,113,103,103,103,119,105,99,93,118,106,98,113,119,103,98,118,98,104,99,99,96,108,107,83,125,102,100,102,96,95,97,131,95,115,101,99,96,101,121,110,104,96,103,103,97,98,97,88,103,105,109,96,104,117,98,113,104,105,114,91,103,97,103,94,114,118,111,98,101,105,99,108,110,117,100,105,99,97,101,105,81,101,91,105,96,110,99,113,94,103,89,108,91,113,107,97,121,98,98,115,79,104,98,106,74,101,111,109,93,121,106,98,105,126,112,112,122,112,101,102,106,97,113,91,102,99,107,105,96,104,94,106,80,108,91,115,110,103,95,109,105,100,109,99,129,96,114,121,94,91,98,114,106,87,98,106,107,118,103,99,113,90,108,106,111,103,101,102,113,113,104,117,67,99,109,109,105,102,100,103,97,112,105,116,82,105,107, +539.15204,117,107,90,103,97,101,99,121,105,105,103,98,98,105,102,103,96,100,123,103,114,102,103,94,101,108,108,81,111,117,108,98,90,116,107,109,95,98,106,109,105,90,104,104,92,113,108,85,95,108,116,105,104,121,102,96,105,100,96,97,138,102,101,90,105,113,90,94,105,101,96,100,105,115,107,89,120,95,102,98,100,109,100,107,104,100,100,101,105,113,110,87,110,90,104,88,100,105,92,110,99,109,109,99,99,119,90,97,104,105,104,83,101,104,113,105,98,106,110,105,97,99,105,97,95,118,104,104,100,102,110,102,102,101,114,84,98,101,109,105,109,105,91,108,94,95,91,101,100,106,102,108,106,91,103,112,95,107,99,110,108,104,102,112,105,105,112,115,109,103,105,99,122,93,114,95,81,101,102,94,99,102,95,106,111,98,98,97,99,107,102,109,101,100,107,108,97,109,111,116,85,107,98,102,110,104,93,107,104,98,101,116,113,111,100,108,101,103,100,101,99,108,111,105,100,102,107,104,99,102,105,102,94,118,101,103,100,101,94,109,101,111,109,99,109,121,102,102,102,93,97,105,112,96,99,111,99,96,103,102,95,114,98,113,87,104,97,101,106,89,99,114,80,104,107,96,92,119,105,104,109,105,98,110,97,98,92,107,114,112,113,100,122,107,99,103,107,105,114,109,101,108,110,102,102,101,101,116,108,109,89,104,108,101,100,101,105,87,106,105,99,107,110,105,103,119,103,102,105,116,103,105,103,114,106,107,97,101,103,107,84,103,113,98,103,110,113,107,114,113,110,87,97,104,88,103,100,105,111,107,101,102,111,98,95,101,105,99,106,107,82,106,107,109,111,89,106,101,113,116,106,112,103,112,89,101,101,93,105,98,112,95,99,110,92,108,105,96,97,106,96,108,105,90,96,102,102,110,108,106,97,106,99,103,95,105,113,102,107,97,100,94,102,97,104,71,97,104,105,95,93,106,95,107,106,98,103,95,101,101,104,103,106,99,96,106,109,102,107,105,94,101,105,103,122,104,109,108,115,100,99,108,100,104,99,101,108,106,103,103,99,104,98,112,100,107,113,112,122,101,102,102,115,109,102,110,109,110,99,96,105,110,102,104,101,101,96,105,110,92,104,108,90,113,97,90,90,101,110,102,97,96,107,110,95,103,102,103,106,91,106,97,85,102,104,106,118,98,88,104,109,110,93,126,96,115,111,94,113,103,104,104,87,94,105,98,98,98,102,113,109,117,105,108,103,107,102,102,102,99,103,103,119,99,109,94,102,103,99,96,95,107,95,100,98,99,108,94,103,113,112,139,91,102,105,79,97,94,92,108,111,104,91,105,113,113,105,78,111,88,94,109,92,110,110,113,103,101,104,94,99,126,103,100,98,104,101,102,115,103,96,103,106,107,100,111,96,109,97,104,102,101,95,104,106,103,106,102,102,105,104,107,108,109,95,114,102,113,100,117,95,105,110,118,100,103,109,112,96,107,121,123,104,101,91,109,101,100,99,100,96,113,95,97,102,109,102,107,83,79,113,94,118,110,104,103,101,100,105,95,118,102,100,108,98,101,106,107,110,108,103,99,97,109,118,122,101,101,96,107,107,93,99,100,95,98,108,111,106,97,110,96,116,110,95,97,103,112,104,112,103,112,92,103,97,101,114,97,105,125,105,108,93,106,108,104,106,112,103,103,118,106,102,102,103,97,102,101,109,113,105,93,106,106,103,83,97,99,121,108,101,112,122,103,109,100,103,103,105,100,108,108,105,112,99,104,98,109,96,106,100,97,116,110,106,101,104,112,102,102,91,98,105,105,103,108,110,106,104,104,111,98,112,98,111,97,115,95,115,101,96,94,100,94,113,106,99,100,107,88,107,93,91,109,110,111,92,105,103,98,114,109,101,101,98,88,107,105,112,96,116,97,99,108,98,99,96,109,84,113,100,108,107,97,98,97,103,99,109,105,101,110,103,106,98,103,91,95,95,113,109,104,107,104,108,105,98,115,109,92,109,103,108,105,117,91,99,124,98,98,115,105,106,100,92,100,104,92,103,98,95,102,111,104,109,97,68,112,102,112,112,109,93,99,112,71,114,108,106,104,100,109,76,113,104,108,98,113,99,106,89,101,100,110,92,99,100,106,105,105,93,111,111,108,80,88,114,92,90,100,111,117,98,109,108,102,105,107,123,105,107,106,105,100,104,100,100,108,98,93,105,104,100,113,114,110,99,94,95,106,94,90,111,106,102,104,112,113,104,99,108,104,108,100,111,104,101,108,100,97,112,108,105,98,102,96,98,111,108,120,104,101,100,105,100,94,109,105,106,106,105,90,98,107,113,101,109,102,101,114,111,117,94,103,112,95,116,94,90,89,94,106,106,97,104,101,104,119,103,100,100,116,108,99,87,102,114,83,106,117,104,103,93,102,101,108,112,98,79,105,106,97,104,100,106,115,113,116,84,109,114,108,102,92,104,110,109,106,100,115,108,106,103,105,103,101,112,112,104,87,112,114,105,98,108,106,98,101,97,129,108,95,98,116,105,100,105,111,113,116,115,105,99,98,67,104,110,105,100,97,105,106,95,103,81,108,110,117,99,114,99,97,110,114,109,104,109,107,115,129,105,96,111,94,99,108,99,97,107,105,108,102,99,99,101,93,111,101,109,85,129,111,100,140,109,105,105,94,98,118,109,101,115,103,96,120,101,101,112,108,99,109,109,105,107,113,103,118,97,110,105,110,112,95,123,116,103,121,116,104,101,111,68,96,121,109,106,95,110,100,104,106,94,101,95,98,103,93,94,92,110,106,113,109,118,98,107,105,102,103,108,117,103,95,109,97,106,108,108,109,98,109,114,101,89,104,107,110,98,102,100,106,116,110,109,97,97,108,115,101,122,122,107,106,109,103,113,100,105,105,105,102,102,104,101,116,105,99,103,109,106,94,98,116,97,100,106,101,104,96,106,109,105,99,112,120,117,110,106,109,112,100,110,100,104,109,106,114,111,113,99,110,110,110,114,111,112,83,94,104,111,115,105,105,109,112,116,104,102,105,114,106,108,109,97,96,106,108,107,105,120,102,104,112,113,104,106,108,102,104,115,113,117,108,116,108,108,113,116,104,114,96,105,107,104,97,106,108,117,116,98,101,106,107,103,105,108,118,99,98,109,116,104,106,110,106,108,104,110,101,116,110,97,105,103,107,102,109,104,115,105,93,101,113,100,91,106,110,109,108,107,107,108,104,105,103,109,100,105,112,98,99,101,101,109,112,106,101,103,69,118,100,111,100,99,99,119,108,118,106,98,99,104,117,100,101,96,94,100,107,114,99,100,99,109,107,106,102,73,105,92,113,94,110,104,100,107,97,113,103,103,106,116,98,104,106,92,95,114,108,92,103,104,105,93,98,102,103,114,108,103,100,106,122,100,116,110,112,101,108,114,107,108,106,120,101,102,104,104,101,109,106,99,97,106,112,103,109,111,107,115,106,103,99,104,106,101,98,103,108,129,106,113,113,106,112,101,114,108,104,97,98,108,105,107,112,104,105,86,112,116,95,106,109,101,102,104,105,103,101,105,105,109,115,92,99,118,105,110,111,94,92,97,104,96,91,112,108,102,102,104,106,90,91,110,99,111,98,109,108,100,100,106,99,106,103,100,116,96,104,101,116,108,103,102,109,108,107,128,106,108,106,117,112,105,101,106,92,109,94,110,106,111,103,99,101,110,99,107,100,121,103,101,97,90,118,103,105,98,102,106,95,99,105,110,95,98,92,113,102,104,98,103,82,95,105,117,105,97,96,130,107,103,113,110,107,106,102,97,104,117,109,100,99,94,109,113,104,102,104,101,112,97,103,99,104,107,102,98,102,121,109,110,94,112,96,109,104,105,108,96,108,95,93,102,102,115,111,113,106,103,101,112,114,106,102,102,104,107,103,91,99,109,108,111,101,92,115,100,109,110,96,105,114,107,97,102,112,101,110,106,102,120,111,108,101,114,97,104,112,102,111,106,122,105,102,121,107,105,105,102,98,93,108,97,102,85,99,101,87,104,98,97,91,104,109,110,100,117,111,126,103,101,103,97,106,108,117,96,110,102,104,106,111,107,103,111,96,107,106,98,113,102,102,96,111,112,99,97,99,106,102,101,102,97,102,104,99,102,94,104,109,108,99,106,95,99,108,127,94,105,108,104,105,95,95,99,102,101,97,108,95,101,110,111,100,101,104,101,114,103,95,120,102,109,120,95,99,106,102,108,84,99,112,95,109,102,101,101,99,109,96,97,94,116,94,105,110,101,108,114,108,114,93,105,110,110,102,106,107,110,102,103,98,100,94,100,114,100,106,99,103,105,112,98,103,108,106,101,110,112,97,116,111,105,121,110,93,119,91,98,98,108,101,125,107,100,103,105,117,113,101,101,93,81,105,108,101,86,95,101,110,101,99,114,93,98,91,113,107,97,101,108,99,100,117,104,110,107,113,102,96,113,106,117,104,90,95,95,89,89,103,85,112,101,108,98,98,108,108,103,116,90,124,106,110,101,77,116,99,98,98,101,112,103,102,84,98,94,91,105,100,104,113,105,109,103,101,104,105,101,104,103,109,113,107,113,110,101,95,96,104,102,68,102,101,110,108,111,112,106,106,115,113,105,93,105,93,98,99,100,97,98,113,96,94,106,101,100,93,110,103,108,102,102,92,100,113,105,90,85,115,97,101,103,106,99,105,110,111,117,96,101,114,90,99,99,110,104,89,100,105,102,106,112,109,103,98,104,96,97,110,103,103,94,116,93,114,99,102,109,103,96,106,111,97,94,113,94,68,116,105,84,105,93,108,88,100,111,96,111,96,104,114,96,108,96,108,102,100,119,98,102,111,109,103,88,109,98,100, +539.29285,109,129,97,95,103,112,93,110,106,109,101,80,113,119,90,66,96,102,105,116,103,105,102,114,104,103,97,97,104,132,108,106,99,111,75,98,104,97,117,103,131,105,105,113,119,99,99,114,97,111,94,104,92,95,107,100,102,96,104,98,108,106,109,105,99,108,116,106,102,105,103,97,104,105,114,107,91,103,110,119,113,115,113,113,125,95,104,94,101,89,111,102,112,107,117,110,99,105,104,97,96,98,96,116,100,109,92,100,106,81,108,95,112,105,104,103,105,98,101,104,99,89,91,106,108,106,105,103,115,71,105,103,107,106,103,99,104,108,109,102,101,107,95,112,122,102,107,100,98,104,102,108,107,95,104,103,103,105,102,70,105,97,101,108,102,107,99,108,96,126,109,95,93,93,116,95,113,95,115,106,109,110,103,96,97,115,114,107,118,103,99,98,98,113,101,107,106,102,95,104,99,97,97,103,99,103,103,116,100,98,72,110,99,110,91,100,95,102,122,94,104,121,110,121,92,100,109,112,109,106,105,99,116,90,96,103,117,108,100,112,100,121,104,105,96,99,103,96,111,117,90,96,98,96,116,102,103,113,112,104,117,101,97,105,97,99,104,104,91,101,100,95,107,104,101,109,91,116,109,92,104,110,101,108,99,97,98,100,109,103,110,111,113,101,111,96,118,108,113,111,97,95,112,109,90,114,108,100,112,112,95,111,98,102,124,94,107,107,93,110,92,100,102,105,102,106,93,104,126,109,110,111,101,101,107,95,94,94,104,101,116,107,101,101,105,110,103,114,117,102,103,117,111,104,104,105,107,120,106,101,93,88,113,103,112,107,112,102,99,119,105,105,108,99,111,97,107,103,105,111,115,113,103,103,107,107,97,113,101,98,112,98,108,112,102,97,95,83,110,76,105,105,107,110,100,105,104,102,111,105,92,88,102,101,109,101,108,91,101,100,117,103,88,117,97,96,106,106,97,123,103,101,99,105,130,112,105,112,112,112,92,103,81,115,112,113,105,103,109,107,99,101,108,103,105,101,94,113,119,113,97,111,103,113,103,103,108,121,113,91,105,107,108,104,98,99,101,96,110,107,107,109,118,109,110,108,94,105,105,100,107,106,88,103,85,113,79,94,97,95,126,105,105,99,109,100,114,113,112,107,104,97,101,110,107,99,110,108,100,95,112,110,108,116,95,105,114,112,108,99,101,107,106,100,108,106,110,98,121,105,100,100,99,106,117,99,110,110,105,99,100,103,111,96,90,99,75,104,104,101,99,117,120,103,112,115,112,99,110,114,100,88,106,105,117,105,99,101,98,88,107,113,115,111,94,91,131,112,107,103,111,105,109,117,106,113,108,100,108,98,97,105,94,78,107,99,101,102,103,105,98,118,104,109,113,107,124,100,103,109,109,101,107,108,90,109,111,100,100,104,99,109,102,103,104,106,113,108,109,109,113,113,100,99,102,101,92,111,109,109,104,100,105,110,108,92,101,129,93,93,104,112,110,109,104,99,105,103,107,108,104,108,111,96,106,102,96,106,117,95,101,109,119,98,107,100,107,102,99,100,101,102,98,117,110,116,103,97,108,104,99,95,132,101,99,130,110,117,91,108,117,100,86,110,100,107,103,106,111,109,105,110,103,107,116,113,106,106,108,108,109,111,106,114,100,110,112,96,112,98,104,101,109,118,103,116,99,100,97,102,109,107,100,108,102,98,97,105,109,102,102,101,108,105,101,105,105,96,101,108,93,103,110,100,102,101,95,101,106,82,117,106,108,110,105,103,111,113,92,107,117,118,101,113,113,96,112,80,104,126,103,109,113,100,102,113,106,106,100,106,105,101,100,93,110,108,102,117,107,97,120,99,93,102,116,113,87,103,110,116,101,98,120,130,98,111,97,99,105,105,114,108,103,106,111,112,100,92,109,94,117,114,90,102,99,99,95,106,104,114,104,95,99,107,102,94,105,103,111,121,106,112,96,105,104,98,111,90,100,101,98,103,102,107,102,103,102,109,103,92,102,111,116,106,100,102,99,100,103,100,93,101,113,106,87,108,110,113,97,102,105,113,98,108,116,103,125,109,105,109,99,106,101,109,109,78,112,106,116,114,105,111,99,118,102,115,105,84,111,104,103,99,113,108,110,107,107,100,101,110,100,101,113,111,112,98,124,106,108,112,115,115,110,105,110,99,106,106,110,106,104,118,117,89,100,100,109,90,97,102,101,110,106,110,101,106,101,98,113,104,112,95,93,114,107,115,91,100,105,100,117,109,102,105,94,112,108,100,105,120,81,97,106,109,102,113,108,106,101,105,102,103,118,105,106,104,114,105,112,113,112,116,105,103,105,99,94,100,113,114,105,108,96,111,95,105,100,93,100,98,106,102,107,102,118,123,112,122,94,113,103,93,106,117,99,95,94,108,100,98,103,111,104,114,102,101,105,105,104,101,103,98,95,98,106,110,112,94,105,96,101,95,108,106,104,96,102,110,105,109,80,107,111,83,112,112,106,109,105,106,103,108,112,104,82,105,100,110,90,113,86,92,107,100,116,108,104,101,120,111,108,114,103,101,104,110,107,103,105,95,99,107,90,121,93,100,108,114,101,113,103,107,120,110,102,105,112,107,102,107,103,90,96,96,106,110,103,101,109,110,90,101,110,117,92,103,105,104,112,94,106,105,94,103,97,100,110,84,106,92,101,91,105,100,111,98,102,93,106,108,110,99,112,93,112,114,107,108,95,95,102,117,109,100,104,113,99,104,83,105,108,108,103,87,100,105,93,106,99,112,99,102,113,108,105,101,112,100,103,99,112,98,96,118,113,96,112,112,114,111,95,108,106,106,98,93,105,102,109,105,99,92,108,114,104,98,105,102,113,117,114,109,104,131,109,102,101,103,113,110,98,103,103,100,109,102,112,98,112,107,109,111,103,112,108,105,106,110,104,102,103,104,116,118,107,107,112,108,107,98,107,113,105,92,92,94,115,124,98,96,101,113,100,104,100,104,110,95,100,105,109,98,87,96,109,112,100,114,100,91,107,114,110,103,95,96,114,104,112,102,100,104,88,115,97,95,101,116,101,107,95,112,108,103,114,112,102,98,108,106,105,107,107,113,101,103,97,116,106,95,100,99,95,103,109,119,109,100,108,109,110,97,103,105,103,108,102,99,105,100,111,98,92,112,90,117,109,111,101,110,112,99,98,102,95,101,102,98,113,102,114,107,97,103,102,101,114,116,112,102,101,115,111,111,112,101,112,107,108,99,107,105,110,120,108,100,102,112,105,94,105,105,98,99,101,111,105,96,105,101,106,108,101,99,119,110,104,103,110,102,97,124,91,99,105,112,104,100,103,102,110,107,105,97,95,104,106,102,97,97,103,96,101,108,113,111,107,117,93,105,96,107,99,116,101,99,113,107,113,99,113,117,101,99,84,100,105,102,95,111,109,103,106,111,90,95,110,107,104,108,104,110,123,98,105,100,82,105,123,105,108,105,110,104,103,99,112,103,102,102,102,109,100,111,105,104,110,123,93,103,108,102,109,98,104,108,99,104,100,113,119,110,99,108,93,102,101,107,102,95,103,110,103,112,101,103,113,96,96,99,102,108,77,109,108,105,114,95,102,96,101,92,112,100,105,108,98,102,94,101,96,97,111,105,105,98,106,105,101,103,104,112,107,107,97,98,87,111,113,104,99,96,94,113,104,109,123,110,108,93,106,106,109,105,111,112,100,102,102,100,105,111,99,102,103,98,109,116,91,80,104,106,102,102,106,113,128,106,108,104,101,105,103,108,109,100,104,114,98,98,140,91,107,102,107,105,95,105,98,108,105,91,94,105,100,110,80,120,111,109,97,99,87,103,98,120,105,105,108,107,115,103,100,107,105,99,95,98,109,74,95,108,114,96,111,109,108,105,116,104,96,102,106,96,96,109,117,104,111,102,101,102,102,110,103,114,104,95,98,98,113,94,102,107,105,106,101,102,100,102,107,103,96,100,114,93,105,103,110,84,102,95,118,102,102,104,104,95,106,114,106,95,102,108,110,112,106,113,116,95,112,97,97,110,103,113,98,102,96,108,106,101,100,105,108,102,95,113,103,95,100,105,106,106,110,109,113,99,108,105,112,105,110,109,102,109,94,94,100,105,115,100,112,109,104,101,104,105,97,102,100,119,105,100,94,106,105,101,97,97,102,97,91,108,114,94,106,96,98,102,111,100,108,107,100,102,110,97,97,98,126,96,93,109,104,104,96,98,96,103,96,96,107,96,113,106,100,93,102,103,101,102,102,108,103,104,99,103,97,111,106,108,107,99,116,96,99,103,99,103,100,102,98,96,117,99,98,104,103,99,103,98,106,109,101,99,110,106,108,93,104,103,106,103,108,106,108,108,109,103,102,91,91,102,105,109,103,98,104,118,102,76,92,75,114,105,109,107,112,104,97,98,98,101,116,106,123,115,89,74,102,96,108,113,103,109,101,102,103,107,112,98,104,103,108,102,102,102,115,97,86,101,94,103,96,99,108,100,96,102,98,108,102,106,101,101,114,95,112,109,106,103,104,108,102,94,92,108,114,103,95,94,105,115,106,107,103,106,122,102,95,108,100,109,108,107,102,102,102,105,103,95,89,98,117,102,125,102,109,111,111,94,109,109,102,104,113,98,118,100,98,115,92,109,108,90,102,97,96,99,109,115,105,100,98,105,102,93,111,112,99,94,97,103,100,100,99,99,91,102,96,98,95,103,117,100,98,97,97,95,104,107,100,119,107,98,102,98,99,95,102,108,94,102,102,110,100,114,94,98,119,103,80,91,105,82,110,106,104,96,100,110,104,92,100,92,101,89,103,111,107,105,106,103,94,112,105,99,104,99,105,96,96,95,114,117,102,103,107,82, +539.43365,118,107,91,109,108,97,89,115,100,119,97,94,103,100,98,83,99,102,113,91,103,97,97,98,97,102,98,104,104,108,109,101,103,103,119,105,108,94,97,88,100,103,106,79,102,108,102,64,100,122,99,96,103,97,99,99,105,105,115,85,111,110,99,106,111,112,114,114,85,99,99,102,104,104,100,115,101,104,102,105,106,99,102,104,105,110,97,121,104,99,106,107,106,106,98,107,102,96,103,105,99,121,109,96,104,121,98,97,107,95,107,103,113,102,100,97,109,110,101,104,112,116,108,65,96,106,102,98,102,115,97,103,97,107,81,102,107,112,89,112,92,108,97,99,103,103,105,113,105,86,94,109,107,93,108,98,100,112,99,102,102,115,101,91,108,101,103,103,117,108,100,97,103,75,102,108,100,104,103,102,108,114,104,98,100,105,98,100,112,108,105,105,111,102,92,106,105,105,100,117,108,85,99,105,101,110,108,107,99,102,116,95,108,107,98,93,104,108,107,109,103,110,104,110,91,110,120,77,112,110,99,102,110,110,109,101,98,109,98,104,109,92,120,111,100,87,121,102,95,107,96,109,97,101,108,113,100,110,103,98,97,113,109,99,89,114,101,96,99,96,104,101,110,109,101,102,122,104,104,103,100,109,103,114,107,109,91,108,98,106,103,106,105,111,100,108,99,105,107,103,104,102,114,99,94,115,109,113,83,103,88,110,103,108,107,93,105,93,90,112,103,100,111,104,113,108,101,98,107,110,115,103,105,113,113,109,104,120,101,105,102,109,104,97,107,99,100,111,97,105,107,108,100,109,107,104,106,108,96,117,108,106,116,91,107,103,108,95,113,105,115,107,112,104,108,100,113,109,104,113,109,111,100,110,97,101,96,107,112,98,113,96,76,106,87,107,99,102,107,115,98,110,108,98,115,101,110,106,106,109,96,106,112,112,100,100,109,119,112,100,98,106,94,112,106,99,88,110,112,113,99,103,104,108,90,114,113,107,116,101,99,107,107,84,113,113,99,109,108,112,93,103,101,100,109,106,104,94,100,90,120,113,102,102,105,108,99,101,105,108,104,110,106,105,113,104,108,103,118,111,93,107,108,96,106,98,105,99,105,101,104,90,114,110,95,99,98,104,103,102,110,102,99,104,103,118,111,96,110,110,100,114,100,98,96,109,98,95,113,104,102,96,113,111,110,99,118,98,103,106,108,111,101,70,115,96,116,110,107,109,99,110,92,90,107,106,98,106,105,111,112,101,71,113,128,112,107,102,102,113,101,109,105,105,104,103,106,108,115,91,92,104,100,102,109,101,111,103,100,105,114,104,115,99,101,108,124,102,110,90,109,109,105,92,113,104,121,106,104,105,109,103,101,106,107,111,100,100,98,103,103,121,105,95,113,86,104,98,108,104,110,99,105,96,107,103,106,92,116,111,101,100,100,98,99,108,101,94,107,103,118,107,111,107,107,101,90,92,110,108,87,120,105,102,106,119,99,102,106,121,111,104,103,119,100,104,111,102,96,107,114,108,113,113,98,108,110,104,108,100,112,109,109,110,98,95,111,110,96,112,117,102,109,117,109,105,105,112,118,83,109,96,105,88,109,110,100,99,110,87,97,119,108,113,100,113,98,108,101,107,110,99,110,103,92,103,107,114,99,110,96,98,97,119,100,101,110,92,92,96,109,94,96,102,110,90,95,113,108,104,115,101,106,98,111,104,113,111,113,116,105,99,98,110,104,88,96,111,112,101,96,105,87,107,105,110,101,96,100,105,117,91,111,97,120,102,111,104,113,119,114,112,106,101,95,100,113,114,95,110,97,105,99,100,107,102,98,106,112,103,108,99,107,105,121,108,108,112,109,107,97,101,106,114,100,114,93,106,107,113,112,128,116,104,106,101,90,108,100,107,94,84,115,112,117,105,112,109,106,105,105,100,104,122,105,125,118,99,103,108,113,106,113,115,106,108,104,108,104,101,101,98,108,107,102,91,116,116,107,104,109,106,108,102,99,116,110,117,112,105,104,107,99,72,101,99,96,107,95,102,101,104,107,105,109,107,110,105,117,106,105,85,113,107,100,100,102,106,102,102,110,107,107,120,125,108,102,105,94,105,98,111,98,120,105,109,107,104,117,110,108,101,114,118,99,96,106,107,104,97,109,121,92,102,109,105,98,105,98,106,101,112,102,95,113,101,108,103,111,100,95,102,103,114,111,101,102,109,103,101,108,99,105,101,107,110,125,102,108,98,110,103,112,110,101,98,121,97,117,108,106,110,105,109,112,115,104,103,98,100,94,95,108,111,102,94,114,99,102,99,113,104,119,108,103,110,96,107,94,99,116,98,111,109,111,95,104,94,128,106,103,108,106,123,94,109,113,113,114,109,110,118,105,97,109,107,106,99,99,86,102,106,105,108,101,113,110,96,98,105,94,108,106,98,112,102,98,97,100,107,96,107,95,97,117,96,104,106,108,105,100,105,98,100,101,99,103,98,110,104,98,100,104,100,113,105,102,104,95,110,99,106,112,103,106,103,102,100,99,109,106,104,101,95,105,112,107,121,81,87,106,100,101,101,91,105,100,94,102,107,100,92,95,104,102,114,87,94,107,112,95,107,107,114,117,107,105,101,109,95,105,87,101,97,119,107,107,103,97,92,106,94,107,100,103,104,112,112,107,111,106,108,98,102,108,108,92,102,114,103,101,92,102,101,98,101,109,96,96,106,92,108,101,96,113,112,108,103,108,102,104,98,106,115,109,107,105,106,99,98,109,109,92,105,101,109,105,103,110,101,106,114,102,111,119,91,105,100,99,117,117,106,116,101,100,110,102,100,95,100,68,112,112,100,107,92,95,106,106,104,110,120,102,107,104,95,115,102,97,102,106,125,119,110,98,104,103,106,105,100,107,92,108,99,108,105,112,109,112,113,109,99,101,95,107,107,96,107,108,108,118,106,101,119,95,102,111,108,98,102,99,108,109,115,115,111,109,102,106,101,99,95,99,99,106,104,114,100,101,108,120,99,99,107,119,109,107,95,102,110,105,105,104,100,104,111,107,99,110,107,107,99,106,109,112,112,98,98,96,101,103,95,111,117,108,106,98,99,106,102,104,105,112,114,95,102,107,106,104,106,111,95,109,111,106,103,98,91,101,68,102,95,98,112,108,107,111,100,119,98,113,115,75,95,111,102,91,107,100,100,103,85,100,111,112,100,98,101,110,117,100,114,108,97,105,99,106,102,117,110,93,105,102,106,104,101,108,110,108,99,113,103,85,112,96,99,95,100,111,104,104,102,113,117,103,108,109,99,100,99,109,96,105,105,103,107,106,98,113,90,117,107,109,88,112,105,107,102,76,104,106,109,102,98,107,102,102,112,109,100,97,103,99,120,106,103,100,84,100,92,93,100,114,104,92,113,102,111,103,90,100,110,111,104,106,114,77,99,100,103,115,109,110,94,95,92,103,106,110,92,105,106,108,89,96,111,103,104,112,100,105,98,105,108,102,106,112,97,96,106,110,118,100,110,94,115,104,111,103,113,99,105,106,105,128,119,113,101,104,106,118,114,114,97,108,103,99,100,101,108,112,109,96,109,110,96,108,101,102,104,106,101,100,114,101,91,113,115,98,102,117,102,112,103,106,104,105,102,112,102,106,105,101,108,102,105,103,115,102,110,108,100,106,108,91,108,106,100,113,95,103,98,112,102,100,100,91,94,104,98,95,91,104,101,107,104,92,100,105,101,109,97,104,103,113,100,112,100,102,120,110,97,103,100,102,110,113,105,104,99,88,102,104,104,134,93,103,104,84,106,105,101,101,112,113,106,99,107,96,106,90,117,109,84,106,101,112,106,105,99,85,107,96,97,95,109,104,99,99,90,98,109,102,109,99,113,105,103,93,99,106,106,107,114,101,102,105,100,104,92,104,100,87,92,113,114,109,110,105,104,100,104,97,107,102,108,109,98,113,97,98,105,101,118,101,99,101,99,96,94,103,103,88,102,118,119,108,99,129,102,110,97,101,96,108,83,106,89,99,107,98,118,114,103,112,110,92,103,93,103,111,93,108,111,94,98,98,110,109,104,99,107,111,118,100,103,103,106,98,96,111,99,110,92,113,101,117,109,101,119,95,105,107,98,106,98,103,108,69,104,105,102,108,90,92,116,100,111,102,102,109,109,110,115,94,95,104,115,103,101,101,103,110,108,100,103,103,106,107,96,121,103,73,96,94,99,107,106,95,77,96,100,111,101,89,103,104,118,106,102,98,108,99,104,92,108,98,96,104,115,108,105,105,110,103,106,100,110,107,110,103,111,104,80,123,102,107,110,91,116,110,107,108,105,110,91,110,106,94,115,104,108,107,106,93,105,103,99,104,99,96,110,107,113,108,110,102,100,102,96,98,95,103,92,76,105,91,93,100,91,112,104,101,100,107,101,102,100,101,104,107,109,100,80,111,93,112,103,97,105,96,100,100,112,102,101,109,96,88,109,98,105,81,103,108,110,106,112,96,103,99,98,99,110,93,107,99,113,91,110,109,107,87,99,107,96,97,95,100,101,125,109,105,106,108,98,105,113,97,104,115,102,94,93,96,105,96,108,92,96,96,97,100,105,94,108,104,103,104,103,106,109,107,103,94,100,117,110,101,129,103,115,85,117,96,108,105,92,99,107,103,100,113,102,109,102,115,108,105,91,98,103,94,98,113,106,101,108,109,94,95,101,103,111,116,118,108,99,114,96,113,109,115,115,113,99,104,95,102,107,90,105,98,102,106,93,93,102,106,101,115,98,105,93,105,108,96,102,104,83,112,97,94,98,116,99,91,113,105,88,92,109,101,108,92,91,94,98,104,109,111,102,91,100,95,95,106,87,110,90,106,105,105,97,112,101,119,86,113,110, +539.57446,111,105,106,93,106,118,113,113,119,101,107,94,106,97,114,88,95,98,91,105,111,108,94,105,104,111,110,109,104,113,104,102,100,103,114,112,103,102,105,103,104,99,107,96,101,107,101,105,95,110,79,111,93,96,122,106,103,93,113,107,114,110,107,104,110,112,99,93,121,111,97,103,111,108,106,98,98,91,114,108,114,86,99,120,100,100,111,116,116,114,102,100,120,107,104,97,109,111,103,108,103,108,109,100,105,100,95,78,99,108,77,101,117,112,99,75,94,113,96,116,109,113,99,97,106,111,108,109,111,113,116,100,88,98,112,73,113,105,109,105,90,115,104,108,97,88,109,95,90,105,107,105,108,94,97,103,99,113,95,101,108,94,107,107,106,98,95,92,85,108,105,97,109,100,104,97,110,107,103,106,86,99,105,103,113,97,95,99,107,102,100,109,98,103,100,102,103,105,109,101,93,104,104,105,102,106,103,106,98,125,105,112,105,106,99,99,101,111,101,110,110,108,115,113,141,113,89,108,118,108,117,106,110,108,117,105,94,116,101,94,104,98,98,87,97,96,116,95,99,103,99,99,98,107,108,111,95,104,109,98,101,103,97,109,107,109,91,85,98,98,88,114,97,95,107,113,105,109,116,99,98,116,87,100,103,104,99,106,110,104,113,100,118,114,104,119,98,106,104,116,102,107,105,111,97,100,103,102,109,109,101,113,98,99,90,115,98,104,110,99,110,103,102,103,102,121,103,99,112,112,113,112,110,99,97,108,102,95,101,107,88,86,112,100,102,103,107,102,109,112,103,97,107,117,109,111,102,112,106,107,129,105,105,110,88,111,94,111,101,120,101,106,114,104,109,98,112,106,108,115,122,96,112,112,103,94,100,102,101,105,105,100,104,104,99,97,96,103,117,101,106,102,97,112,110,108,102,107,107,102,101,108,107,106,104,87,100,100,109,101,114,102,94,115,104,97,112,86,112,113,101,101,115,101,109,110,101,109,104,102,107,111,111,112,101,103,102,103,121,95,110,107,102,106,112,115,95,99,116,108,110,99,115,115,107,104,112,96,101,106,106,101,100,96,98,99,102,111,109,106,96,99,122,93,109,106,110,119,113,102,109,104,103,126,97,84,110,116,113,102,110,102,86,111,111,99,103,103,106,88,78,114,116,92,102,106,120,108,103,101,103,106,111,100,99,109,109,106,115,111,112,116,109,103,108,97,104,107,103,107,97,107,94,110,122,114,122,102,112,113,96,115,115,95,100,106,111,99,104,97,103,108,102,103,110,106,91,109,104,103,86,109,113,96,107,121,102,97,114,116,108,103,94,99,101,109,110,112,99,107,102,98,99,101,108,96,108,89,122,103,98,117,108,96,115,87,99,98,106,125,110,104,110,102,107,116,112,111,104,106,112,105,101,111,104,105,122,106,113,105,104,82,100,116,101,118,103,105,101,92,94,109,111,97,108,97,113,107,106,117,84,120,105,118,107,108,107,110,114,111,111,94,116,108,98,108,99,101,107,106,102,110,105,91,98,97,102,110,113,96,122,113,105,91,92,112,107,110,101,111,114,113,101,106,106,100,109,113,112,104,110,103,97,107,105,115,101,121,98,108,106,99,102,106,93,110,98,125,103,103,110,95,101,113,103,97,105,115,85,110,79,103,107,90,102,100,107,98,111,99,107,108,120,102,111,102,105,121,110,106,112,105,91,96,115,113,104,106,102,105,107,99,116,110,96,132,91,107,113,118,109,117,106,103,109,113,83,111,101,95,94,113,118,104,107,111,101,114,110,104,112,107,108,103,104,113,104,108,106,116,113,102,105,111,117,114,108,109,111,108,122,108,99,108,106,118,102,110,101,113,100,107,94,107,92,104,117,98,105,93,95,100,111,118,106,114,103,104,93,102,104,101,100,120,104,109,104,99,111,98,98,107,93,101,83,108,106,113,106,108,115,120,104,109,94,100,102,104,118,110,120,104,118,113,109,111,108,97,109,113,88,109,112,109,108,101,95,93,101,101,123,79,98,106,113,99,104,110,109,100,101,101,116,104,102,100,104,102,114,98,101,99,122,112,120,101,105,106,104,116,114,113,109,116,130,110,105,100,104,108,123,112,115,108,103,99,93,109,95,101,100,98,114,102,96,102,103,97,111,108,109,105,106,106,111,114,116,109,96,91,106,92,104,111,116,105,102,108,115,117,107,99,113,109,97,107,105,94,97,102,104,115,108,87,111,92,109,107,109,116,119,102,117,100,113,93,112,102,99,108,103,121,98,110,112,93,94,107,115,103,98,118,99,105,104,99,91,103,102,121,112,104,96,113,75,99,117,109,119,106,101,115,94,109,113,92,100,114,87,110,106,98,101,100,105,121,106,111,105,98,111,106,121,109,106,109,110,100,107,111,112,115,104,103,109,106,112,111,81,109,102,95,113,105,104,119,105,107,96,105,105,102,100,91,104,104,109,95,102,112,98,106,104,98,109,108,92,109,101,111,108,103,121,94,106,108,95,113,105,107,95,104,99,108,102,101,100,100,103,110,104,110,98,104,85,102,99,109,113,103,106,106,92,98,109,99,103,96,97,104,98,98,97,121,97,105,94,109,108,105,108,106,106,106,106,75,113,93,110,110,104,98,105,104,111,102,106,99,102,103,115,104,103,98,91,113,103,93,101,99,113,114,100,107,104,100,106,99,99,108,103,102,95,112,112,95,105,100,105,102,119,95,93,122,102,101,96,109,98,103,103,105,107,105,109,99,110,77,110,106,105,94,129,105,99,101,105,112,99,117,100,110,114,104,110,107,105,99,102,120,100,120,111,103,95,110,114,103,98,115,106,95,102,109,99,109,106,107,106,116,112,86,109,114,108,109,108,109,100,113,100,108,110,112,105,85,109,97,102,119,107,108,109,100,105,102,100,94,102,101,106,103,108,107,114,107,106,103,98,95,112,110,109,103,103,107,100,104,107,98,105,104,110,94,104,110,104,107,105,96,111,109,105,86,102,103,107,96,97,101,97,105,102,104,99,106,101,98,99,109,92,98,106,100,112,102,110,102,112,112,107,100,108,100,97,105,114,107,102,95,107,108,112,105,103,98,114,102,107,107,80,98,104,120,101,93,97,99,105,100,102,97,93,104,101,99,107,102,99,111,88,99,96,100,99,97,110,106,136,112,104,106,99,109,119,97,87,101,114,102,99,104,108,113,106,95,101,127,105,108,113,133,107,97,93,101,101,107,113,103,103,102,112,114,104,115,117,104,118,117,100,102,110,98,108,101,92,105,104,94,111,100,104,102,107,98,110,105,99,102,112,116,98,111,96,96,73,114,105,95,104,107,100,92,102,90,116,91,100,98,105,105,102,108,100,110,96,96,106,98,97,102,103,109,106,105,117,106,96,97,99,103,109,107,102,95,102,96,104,106,91,126,109,96,116,98,106,99,112,108,95,95,119,92,105,112,104,102,91,109,98,113,104,99,106,109,105,110,113,92,113,102,95,101,103,116,106,97,125,107,103,108,94,109,88,102,101,98,107,117,112,117,85,99,111,107,94,102,96,119,101,109,95,109,102,111,116,105,104,107,98,105,96,104,108,106,112,104,106,128,72,105,96,104,116,88,105,113,105,98,94,104,104,115,95,102,107,112,92,109,108,87,102,111,102,102,108,115,102,105,107,116,101,104,101,93,127,96,114,101,104,109,110,106,107,86,101,110,99,90,99,101,106,107,108,115,105,91,98,103,111,101,100,110,100,99,96,105,109,95,100,106,127,113,113,99,113,103,114,96,103,98,107,96,100,102,116,116,108,102,115,99,108,103,118,106,92,100,101,96,95,112,97,95,104,117,108,102,114,111,101,102,109,102,91,102,117,129,102,105,99,103,84,95,108,101,113,108,105,102,105,98,101,94,100,103,104,109,107,107,105,104,110,105,95,106,108,76,106,109,109,109,81,98,103,102,97,120,99,99,107,109,112,106,118,91,104,106,97,103,115,107,106,107,110,104,106,97,118,106,101,111,110,109,124,106,112,101,108,119,121,108,102,114,105,108,94,103,118,104,114,103,110,92,102,109,113,114,94,104,110,104,109,112,110,116,95,101,107,107,96,114,99,103,102,104,113,98,87,105,109,94,107,117,99,116,105,110,103,96,87,100,92,104,108,114,107,91,105,101,109,107,109,86,114,112,108,104,107,107,104,99,105,129,110,96,118,112,121,96,103,105,101,104,89,109,106,111,100,100,115,94,112,110,100,102,102,98,96,91,97,97,109,111,95,104,104,95,100,106,105,111,112,90,111,98,103,114,114,108,111,100,118,112,102,102,105,96,95,110,104,94,111,99,120,98,116,111,102,107,94,105,103,99,83,109,105,96,109,106,101,97,101,103,115,106,105,109,113,89,106,105,106,95,107,101,96,118,102,98,112,100,98,102,105,112,96,104,113,108,93,104,93,110,107,106,109,111,105,111,99,92,110,107,108,104,103,105,104,100,92,108,107,102,109,110,103,107,100,77,100,103,105,106,107,113,101,104,100,95,100,89,99,106,83,92,102,103,98,109,102,108,109,99,108,114,105,107,87,106,109,94,119,105,116,96,105,108,99,105,102,101,107,102,113,106,104,109,105,102,110,88,113,110,97,100,105,106,107,100,100,108,104,114,106,106,108,97,105,112,106,99,103,95,111,95,112,101,108,110,113,106,104,99,108,108,109,94,106,96,96,110,101,104,95,108,106,93,109,118,103,97,109,99,96,107,94,100,99,106,123,95,107,112,102,102,114,106,108,121,102,98,97,121,94,107,98,106,114,87,116,93,95,106,102,106,88,106,87,117,111,106,108,104,105,109,96,109,121,93,102,104,98,106,116,104,109,118,108,102,111,104,84,107,106,96,96,92,98,102, +539.71527,117,109,97,102,101,102,93,89,101,107,95,109,98,105,87,101,103,105,104,101,99,108,79,99,102,96,93,87,101,113,102,112,99,76,137,107,112,100,96,111,97,109,105,78,89,112,98,94,98,103,101,97,83,89,109,89,68,109,108,84,92,91,92,99,95,111,106,113,98,109,107,102,103,99,87,90,102,92,107,81,90,95,110,96,92,99,102,99,97,80,104,105,108,110,96,88,109,92,90,89,101,111,93,101,94,111,108,105,97,105,75,102,102,116,86,95,99,91,101,111,96,94,106,105,108,113,124,101,103,98,108,95,100,84,102,99,94,97,88,106,102,104,94,90,118,109,99,101,98,107,112,98,119,136,98,96,97,92,103,108,92,102,95,114,94,122,110,88,119,109,106,101,116,101,111,95,115,116,113,98,105,96,93,114,99,95,95,99,104,113,104,112,105,106,96,75,112,97,102,103,103,94,102,98,115,106,92,104,106,93,103,95,93,119,94,110,95,104,105,113,96,107,100,102,92,101,95,100,106,111,99,108,106,109,106,112,105,115,94,101,122,105,100,109,92,108,102,95,110,92,102,103,94,94,108,109,95,107,88,95,94,101,100,91,91,102,98,114,100,88,101,111,99,96,94,118,91,106,109,109,102,106,93,96,98,114,105,106,108,112,94,103,119,112,103,102,98,100,104,101,103,100,110,118,93,114,99,98,84,98,116,98,89,109,92,112,90,107,92,99,96,110,102,106,94,99,93,100,109,95,100,98,105,89,112,103,105,91,97,102,93,105,97,101,100,115,106,123,103,95,97,97,102,105,104,101,99,104,95,121,106,85,99,114,109,76,107,101,99,111,101,93,96,97,102,99,105,91,113,103,95,115,96,103,106,98,98,96,104,102,98,104,97,109,100,94,101,106,106,119,98,112,105,109,117,93,94,99,107,99,87,99,103,113,99,90,98,112,104,108,111,109,98,129,105,98,115,112,101,113,101,103,94,108,104,98,98,109,99,102,109,101,99,98,95,98,99,107,103,98,106,102,114,105,108,103,103,106,100,107,98,106,95,109,104,109,108,113,100,105,108,94,94,105,88,111,107,109,97,95,106,105,112,90,98,98,93,85,87,100,95,93,98,98,104,104,99,111,91,106,105,108,109,113,109,102,100,98,97,107,108,115,96,103,108,108,109,113,98,91,106,100,111,100,105,108,108,90,112,106,100,84,106,116,103,97,105,100,96,111,93,98,114,107,116,100,114,98,97,115,107,103,102,107,100,105,107,97,100,98,93,100,100,106,105,104,105,95,110,115,102,94,106,109,100,108,102,107,112,119,112,94,98,104,102,98,111,105,94,99,117,128,106,102,98,113,102,108,104,101,103,95,106,113,88,96,74,100,101,96,96,103,106,142,131,108,92,110,94,97,105,98,111,95,110,91,103,94,106,106,109,103,102,97,94,104,109,103,109,109,111,98,107,98,112,83,99,105,101,103,93,103,105,113,102,105,99,115,107,104,111,115,110,105,99,101,105,108,95,98,105,98,113,81,89,107,103,100,109,95,119,105,108,103,104,105,96,108,109,100,96,107,94,124,100,107,109,107,99,91,105,104,91,100,97,103,103,106,91,105,100,76,111,96,95,100,110,110,101,74,116,92,105,120,109,113,107,107,102,105,101,110,106,99,80,106,96,100,102,106,91,105,101,105,112,105,98,94,102,103,110,102,103,100,88,104,94,103,106,98,103,97,99,110,102,99,102,105,107,102,103,117,106,99,87,106,119,100,104,87,104,88,73,110,99,114,96,100,102,87,112,95,99,110,99,100,102,109,107,108,104,96,95,94,111,107,106,103,105,98,118,94,92,105,107,102,99,113,103,105,113,113,114,111,106,111,104,101,113,102,102,108,104,109,111,109,116,97,94,114,112,99,104,95,98,100,104,101,104,103,116,91,96,121,100,103,100,102,104,108,107,99,111,112,111,90,98,107,107,106,111,109,96,105,105,92,103,102,93,111,122,102,105,98,91,105,96,124,102,101,111,114,106,106,93,97,107,106,94,106,94,110,100,108,92,103,98,100,102,105,108,97,103,99,112,104,94,100,94,104,104,106,107,99,106,118,108,101,106,109,107,109,106,100,95,98,104,97,107,102,118,106,106,112,87,94,112,106,93,106,97,101,129,103,104,107,103,116,102,107,113,97,105,108,114,103,104,89,92,108,92,98,103,104,108,108,111,99,108,105,109,105,105,98,93,104,108,108,105,103,104,101,97,103,124,119,94,94,104,121,100,101,103,100,100,105,114,113,97,101,95,92,97,99,96,107,91,108,115,110,109,96,111,104,101,105,101,95,106,105,93,114,113,102,104,100,103,107,113,101,116,112,106,106,100,109,100,102,99,113,104,118,120,100,101,112,112,109,99,98,103,103,109,103,95,112,76,105,106,100,93,115,99,102,102,110,101,118,86,109,103,94,104,107,91,90,102,113,102,104,108,113,94,111,103,108,107,107,93,96,109,94,108,116,115,88,93,104,110,101,100,91,105,107,98,98,111,113,109,99,111,94,96,99,97,87,99,104,95,101,101,106,129,107,103,105,107,108,107,105,95,92,109,107,98,93,104,102,107,99,120,105,101,102,106,100,125,116,93,106,104,102,99,103,101,102,90,111,111,100,94,102,121,115,100,93,103,96,102,102,107,113,109,98,90,102,111,109,104,105,112,107,109,113,94,96,97,105,106,97,108,102,93,112,71,110,106,112,93,105,91,104,100,106,114,115,109,113,107,96,101,91,98,102,113,108,100,107,104,95,98,111,98,106,110,94,110,108,116,100,102,107,99,87,92,111,105,115,108,109,107,100,102,110,103,99,108,104,104,109,107,114,109,106,107,95,88,108,112,122,115,102,92,107,106,91,106,107,105,112,108,106,108,98,99,106,112,94,109,105,103,86,100,105,109,108,98,104,107,105,104,115,102,107,109,98,105,110,97,97,114,99,94,104,103,98,102,95,99,105,109,107,98,113,116,100,113,95,114,91,105,104,109,101,113,104,108,108,105,117,99,104,98,101,98,101,121,97,110,101,104,102,115,109,98,101,85,112,102,98,98,103,105,111,103,93,107,101,97,92,96,108,110,111,102,108,104,94,105,83,102,100,109,103,112,90,106,102,111,97,94,96,99,99,109,89,86,106,112,96,92,100,98,100,106,131,100,106,109,104,105,107,102,95,98,96,100,98,98,105,117,104,104,112,92,100,101,111,110,102,108,96,82,120,92,99,110,109,103,104,105,95,128,94,91,110,85,100,107,99,109,97,105,108,107,114,111,102,97,117,112,110,101,86,99,104,95,100,100,105,98,102,104,107,107,106,115,109,103,98,101,107,102,85,117,104,102,100,102,100,110,110,111,109,102,83,96,91,95,98,103,92,100,115,107,92,106,110,121,110,94,91,98,103,104,74,93,107,97,119,105,106,106,106,99,105,100,84,101,87,105,97,98,105,100,115,99,109,98,92,127,108,110,91,100,98,104,112,119,111,101,105,100,109,95,91,104,103,88,104,108,102,92,111,103,107,97,94,98,108,106,98,92,106,96,117,109,104,105,104,98,100,109,116,117,110,107,104,97,99,95,67,111,106,113,103,121,98,107,102,102,94,106,94,96,111,109,99,102,106,102,100,96,106,97,106,107,97,99,98,100,106,96,122,108,97,106,103,113,95,109,104,114,102,105,108,98,113,107,91,96,108,101,86,93,107,95,102,103,105,102,104,108,93,106,99,101,106,106,101,100,100,101,100,100,106,95,95,75,86,96,108,91,102,114,104,104,100,103,100,105,105,103,105,100,106,95,105,108,106,98,104,100,95,103,93,113,109,108,102,104,103,107,94,114,109,113,102,105,94,103,88,99,99,103,104,107,99,104,107,107,109,106,101,116,90,105,98,106,109,100,95,112,106,102,113,92,110,101,102,97,114,103,97,110,102,101,103,94,94,111,104,104,116,112,98,98,121,96,113,105,99,105,114,103,103,106,105,108,100,97,99,100,92,123,99,93,98,112,95,108,99,109,97,108,112,105,104,117,80,100,99,119,78,102,103,109,106,97,101,114,110,108,106,96,119,111,100,100,101,98,103,117,109,96,111,108,108,108,108,109,102,109,103,102,97,112,94,100,99,105,116,101,78,99,99,103,101,104,97,110,113,91,102,95,113,106,106,116,107,87,105,92,102,93,102,96,99,106,91,106,98,108,95,95,100,105,98,105,92,91,112,108,80,103,107,95,110,99,110,108,112,98,122,95,100,93,94,106,108,99,100,100,108,102,107,109,109,104,91,112,109,122,105,114,98,102,118,100,89,105,105,109,94,99,109,108,105,98,113,108,102,107,106,96,100,101,104,96,100,93,106,106,113,107,105,91,109,103,103,94,106,100,107,101,98,109,103,102,104,98,97,91,104,91,105,104,108,97,94,109,103,106,113,110,94,112,105,107,107,107,111,121,111,113,90,95,93,99,100,100,101,100,120,91,113,105,105,93,93,112,99,101,100,107,104,68,96,95,100,109,89,109,100,106,99,97,109,103,101,104,108,104,101,101,107,110,111,97,100,113,96,108,109,125,102,99,99,101,91,103,89,96,103,105,107,109,84,92,106,99,94,89,100,108,102,116,98,115,90,105,94,103,101,99,99,128,114,106,105,105,116,95,84,111,95,98,96,106,95,100,93,103,107,108,100,95,98,99,96,98,92,104,108,96,92,108,104,111,97,113,92,105,98,93,105,85,95,105,95,99,109,112,107,94,110,100,104,108,109,101,104,108,87,97,99,97,81,101,104,102,104,92,88,93,102,102,98,105,91,91,94,101,111,95,107,101,97,106,95,98,99,99,109,93,116,112,102,107,98,98,98,84,99,105,98,112,113,95,106, +539.85608,98,108,93,104,97,98,96,104,104,96,113,111,107,108,113,90,93,111,97,83,109,94,87,111,98,100,94,112,106,117,95,102,86,103,111,107,99,98,103,108,79,92,96,107,100,125,73,129,107,107,106,112,95,98,99,109,100,95,101,92,110,110,95,94,97,98,96,103,88,105,119,97,101,102,113,98,102,100,103,110,117,99,96,103,113,99,96,106,106,106,94,102,111,99,91,97,112,105,108,114,116,103,108,110,101,99,107,95,104,98,103,100,108,106,100,100,107,104,106,95,92,104,108,104,106,103,109,108,104,108,118,110,102,102,95,116,112,112,100,115,71,103,101,97,100,102,95,107,106,99,85,93,102,95,108,99,92,104,100,108,111,87,100,99,114,98,124,70,95,106,117,96,108,106,106,99,105,99,104,114,111,103,108,103,99,112,89,96,99,101,117,109,111,112,99,111,100,112,100,112,100,105,113,105,107,82,93,94,114,104,103,95,95,110,99,120,96,115,104,101,106,102,109,108,109,108,120,105,105,102,101,106,94,107,108,112,111,94,97,107,109,123,110,99,109,97,99,109,99,123,107,109,102,108,117,105,101,94,116,107,88,113,112,105,89,104,107,108,106,106,106,98,104,103,103,104,95,112,106,104,106,113,100,95,116,103,95,98,98,105,101,110,93,102,110,112,106,102,99,94,99,96,91,119,99,117,113,98,105,121,108,109,103,104,102,104,114,110,114,92,102,100,106,108,98,104,100,107,106,98,112,111,102,117,100,106,97,101,99,111,70,109,106,95,102,96,104,109,100,110,92,104,112,99,85,104,119,103,103,108,97,109,95,102,106,108,103,104,108,110,104,109,106,102,104,97,107,95,103,108,113,106,102,110,83,90,115,98,120,101,105,105,98,114,104,104,114,112,97,107,106,106,103,106,113,82,110,101,109,105,91,110,112,109,106,100,101,95,112,101,101,107,106,109,114,105,114,94,103,84,103,103,101,97,116,106,100,88,110,106,100,112,101,93,92,112,89,92,107,112,114,108,105,103,105,128,105,116,107,98,98,103,112,112,112,98,107,106,117,97,106,112,95,102,97,109,94,112,124,105,99,99,118,109,109,106,99,100,104,106,116,114,104,106,100,101,105,103,95,106,111,110,107,93,85,104,103,108,101,105,110,101,107,98,102,98,106,107,103,99,103,102,105,107,92,116,111,110,112,113,117,111,116,108,118,99,118,99,111,104,92,113,102,107,111,94,102,118,98,101,106,104,112,108,109,105,101,112,109,108,104,91,114,111,117,98,92,103,102,69,98,109,109,106,119,109,114,103,94,99,106,104,106,96,112,116,117,110,104,100,105,99,95,100,105,110,113,109,114,101,109,109,103,103,108,103,103,106,97,113,91,98,103,107,104,89,107,104,105,106,90,101,96,104,105,109,99,98,108,91,106,102,107,106,100,102,101,117,97,94,101,113,109,112,117,96,128,105,105,116,101,119,99,106,111,110,104,117,110,100,116,111,121,105,99,102,105,93,97,102,123,102,92,111,105,107,101,90,109,114,109,91,124,93,113,102,100,110,107,99,98,108,107,114,98,122,119,99,98,102,105,108,95,99,111,113,115,112,105,114,106,112,103,110,108,114,106,100,109,104,110,108,108,128,97,99,108,109,104,119,108,115,92,103,98,105,112,110,119,95,117,102,95,109,109,99,108,109,122,101,121,101,109,105,95,101,100,109,118,100,101,109,90,103,101,105,96,97,97,114,104,100,102,108,107,113,112,112,101,104,106,104,111,107,105,107,106,110,98,106,103,113,109,112,102,104,103,115,110,107,101,114,117,111,112,103,109,104,105,97,110,105,124,106,106,114,103,105,107,107,99,100,109,112,105,105,124,103,108,106,103,95,103,109,105,103,99,111,120,110,103,115,109,90,99,100,97,104,93,105,118,101,112,100,99,102,115,97,110,119,96,115,106,103,105,105,99,106,122,118,114,113,105,120,103,127,111,113,99,89,101,120,111,100,106,103,104,120,105,107,109,99,102,102,116,101,122,114,112,106,108,113,103,98,126,98,105,106,103,119,101,101,111,106,107,100,93,114,101,97,105,117,108,98,107,106,108,102,103,98,112,102,108,115,107,92,113,116,117,92,87,106,102,102,106,106,107,120,113,113,116,88,105,103,99,109,111,108,103,124,113,117,114,95,115,113,98,97,96,105,105,87,109,109,101,103,99,97,105,107,102,112,110,107,96,107,101,99,100,110,117,105,108,102,100,112,101,127,100,113,107,112,105,98,117,100,102,100,105,100,109,102,112,99,103,117,116,103,111,100,102,113,115,95,104,109,104,100,108,105,112,112,101,108,103,109,106,117,117,109,98,94,101,105,100,113,106,100,116,99,84,118,108,97,76,108,106,98,96,111,107,112,110,113,103,114,105,113,111,97,109,105,91,85,109,104,100,108,103,91,127,98,90,96,111,110,101,92,106,107,99,111,110,98,105,103,106,101,118,108,98,96,106,113,103,98,115,113,107,105,103,107,97,110,110,97,98,106,101,104,109,90,105,106,102,106,108,108,131,115,111,102,105,102,93,111,105,105,100,102,103,105,106,109,107,112,94,101,111,101,103,121,134,109,102,99,105,104,103,111,105,101,97,95,106,113,115,92,104,104,89,94,108,113,108,104,99,107,107,95,105,99,102,109,107,101,107,119,108,102,105,97,127,106,99,96,104,102,96,110,117,104,104,115,102,112,101,104,106,104,90,101,116,108,108,108,109,114,104,98,105,98,109,100,111,107,100,98,120,104,99,109,98,109,99,105,115,89,114,106,99,110,109,105,111,119,115,124,114,101,99,115,106,108,104,108,102,104,110,111,110,111,105,104,94,101,99,107,98,112,114,107,103,99,104,95,104,111,117,104,101,110,104,106,109,98,101,113,115,111,110,112,113,108,88,105,115,97,97,96,114,117,97,107,100,108,117,103,106,118,89,107,106,98,105,103,102,104,112,106,104,105,105,102,110,100,101,71,104,96,92,103,106,98,112,105,116,110,111,117,94,103,107,90,91,95,103,98,104,108,113,107,100,102,95,100,110,113,98,116,116,111,117,120,104,113,107,109,109,96,97,110,102,99,108,108,88,115,93,102,99,107,95,103,100,111,105,99,100,117,104,103,106,101,100,111,99,95,116,104,95,98,104,113,101,104,119,115,119,106,105,110,102,104,98,108,119,103,112,95,113,106,100,88,103,105,96,100,116,96,108,98,103,114,106,116,104,106,108,102,87,101,116,102,111,92,106,112,87,94,111,94,114,110,97,98,99,111,103,98,99,99,91,104,106,114,109,106,100,96,107,105,105,93,109,102,115,111,106,102,113,105,92,103,98,102,97,105,94,106,115,98,100,102,107,93,110,98,117,87,97,104,115,96,102,127,107,82,99,110,108,105,89,102,96,102,100,105,99,110,107,91,98,105,89,98,113,110,102,108,105,105,106,100,113,109,104,100,102,101,109,94,122,104,111,96,110,111,109,108,108,110,102,121,89,113,107,102,104,108,100,117,102,107,108,109,97,95,117,117,104,100,104,108,107,97,103,96,103,109,106,101,98,107,110,110,111,91,109,103,91,105,120,103,98,110,110,112,120,106,106,101,110,97,104,94,101,107,109,104,100,99,106,102,99,99,102,125,101,96,112,108,104,98,100,112,94,108,99,108,98,101,95,95,107,108,97,102,104,112,107,100,99,107,80,113,123,104,102,119,100,105,106,95,102,92,113,105,105,123,109,90,111,97,101,112,104,101,103,116,96,106,101,109,106,91,110,104,106,102,113,108,102,100,108,125,109,79,101,125,97,107,103,104,102,112,91,97,106,104,103,117,100,105,106,119,106,113,105,93,101,108,97,99,106,96,121,110,92,100,97,106,96,113,94,96,109,109,104,104,101,105,117,97,99,119,103,107,101,108,97,109,95,122,100,110,111,99,104,95,100,97,110,103,114,121,103,99,91,96,94,108,109,101,107,98,103,100,118,106,96,98,106,109,109,109,103,100,111,95,97,102,105,100,108,106,77,101,112,103,99,100,119,100,103,113,106,91,113,87,113,113,108,119,98,99,99,105,97,96,99,92,100,97,117,106,109,106,91,111,121,101,96,104,88,104,108,102,100,97,114,101,101,99,111,103,104,106,135,95,101,100,97,112,102,91,106,106,117,112,109,105,109,103,99,95,92,118,110,102,112,111,100,102,100,109,115,116,98,106,113,83,99,96,117,110,110,102,102,103,92,107,113,113,107,110,98,112,101,103,90,100,104,116,100,105,105,100,88,103,113,99,106,107,102,97,99,112,97,103,102,97,105,104,104,99,107,101,102,108,125,93,112,120,103,101,103,109,112,95,96,103,105,100,119,98,104,120,101,99,107,99,99,87,92,100,98,103,113,98,104,94,102,102,104,107,94,107,108,102,107,114,107,103,109,97,100,112,109,100,74,110,103,93,106,106,108,111,106,90,98,109,101,122,121,104,101,104,106,107,105,97,100,110,108,110,103,106,94,99,90,103,100,95,95,102,91,105,87,100,99,106,108,100,107,111,105,92,106,122,93,97,113,101,104,99,97,91,113,112,106,95,90,101,98,103,106,109,113,111,99,98,108,95,100,97,108,99,120,110,102,110,99,99,101,95,91,95,96,114,109,103,104,100,112,103,94,109,102,99,112,98,117,107,126,99,97,105,107,101,94,107,100,105,96,104,114,111,117,101,112,96,109,111,101,108,117,97,96,107,98,112,105,95,110,95,107,92,111,97,105,101,108,93,106,107,95,102,118,111,107,104,99,98,114,98,104,102,104,94,110,102,92,114,81,124,105,97,110,92,98,106,103,107,100,94,105,91,107,91,112,121,97,102,104,101,113,112,95,106, +539.99683,115,96,101,97,104,102,91,78,94,111,96,105,99,111,73,113,107,109,102,116,95,95,100,87,108,97,104,103,101,107,103,111,110,108,108,84,119,107,102,108,101,112,120,107,93,106,108,109,90,114,107,103,108,103,101,105,104,109,110,100,109,99,96,100,106,105,93,110,103,118,114,107,100,103,96,96,99,100,117,100,94,104,96,105,99,90,105,104,95,108,100,90,106,104,99,107,99,94,117,102,98,102,90,112,106,96,116,103,104,102,102,104,100,100,110,96,91,102,117,106,112,99,113,90,101,113,108,113,94,112,116,104,100,107,111,113,94,102,101,99,97,104,109,99,86,91,108,99,105,99,103,104,110,109,90,98,101,98,91,80,105,109,105,108,105,110,103,98,98,103,98,104,99,100,109,101,112,98,109,113,91,102,94,99,108,106,100,103,100,104,110,124,108,74,97,101,95,100,105,106,104,109,103,115,103,103,102,102,111,111,118,101,105,104,110,105,105,86,90,105,114,101,107,107,107,114,98,95,102,100,104,100,113,111,107,118,104,106,107,111,104,101,105,117,110,98,101,111,110,107,108,101,88,103,102,99,107,87,93,102,88,114,99,103,104,106,103,97,110,100,109,108,108,114,96,117,101,94,110,106,105,101,99,99,109,105,113,97,99,113,100,98,110,108,95,105,111,98,107,103,98,95,104,108,108,124,112,116,105,108,109,98,107,108,113,98,96,108,101,105,99,95,103,107,111,118,101,99,121,105,98,105,111,117,103,113,106,109,101,105,106,99,111,91,99,120,103,102,116,102,103,103,128,98,106,106,110,110,121,101,106,90,94,101,103,93,119,102,105,109,76,104,102,102,111,100,107,110,110,106,114,105,94,107,100,105,98,95,102,82,113,101,93,104,106,102,100,100,116,107,102,103,99,109,99,104,112,105,100,110,95,108,99,100,107,101,106,96,114,100,105,103,105,106,109,88,114,108,104,105,110,100,111,111,101,99,100,105,109,105,118,104,105,111,92,99,87,104,107,101,99,107,98,116,96,95,104,109,105,99,105,115,92,110,80,102,105,103,110,109,97,117,114,101,103,96,98,97,111,100,100,105,104,109,105,96,99,128,93,117,116,102,110,100,105,104,111,108,101,113,115,108,107,105,99,112,77,103,103,101,108,105,100,107,94,116,94,110,105,104,100,93,101,80,103,90,102,99,91,103,107,145,108,109,107,101,109,93,104,102,100,98,104,92,108,102,116,118,120,99,105,107,111,117,109,95,97,91,96,103,119,99,105,102,105,85,76,108,98,111,100,105,101,101,101,109,109,99,101,112,92,110,120,100,98,92,112,106,106,108,108,104,103,102,113,111,100,103,111,116,103,110,104,105,98,102,128,113,109,116,91,97,113,103,101,113,117,77,114,100,102,110,96,109,113,103,99,106,108,109,107,102,106,102,83,109,104,101,102,96,114,113,100,111,105,105,104,112,103,103,100,98,117,84,91,99,106,100,91,99,109,109,93,102,100,96,107,104,117,113,108,109,102,98,109,105,108,99,110,111,106,111,111,99,91,116,106,102,112,109,107,112,97,100,104,111,113,112,111,99,104,104,109,100,115,99,109,98,102,118,111,110,101,99,104,99,103,115,104,104,99,102,92,112,105,102,105,100,106,117,107,103,106,104,102,100,105,96,103,99,108,106,98,99,114,100,93,115,103,101,121,107,108,103,109,97,99,95,107,101,118,100,101,102,104,110,109,103,103,104,106,104,125,117,103,119,106,109,103,98,106,98,114,107,75,114,98,110,103,108,104,114,106,105,108,106,119,97,100,112,103,117,110,102,107,99,97,104,108,114,112,98,105,103,102,107,108,100,113,105,101,106,86,106,109,110,106,100,102,100,114,87,116,108,105,111,106,111,111,117,91,101,95,88,82,103,116,102,110,90,104,109,109,117,99,112,106,89,104,103,111,103,99,113,99,109,94,114,118,120,112,98,94,112,102,93,95,107,111,95,109,127,91,107,108,97,102,115,115,107,111,118,116,97,114,89,105,116,101,102,100,115,112,100,99,95,103,108,99,110,86,109,103,108,108,104,98,107,93,107,102,113,108,113,108,108,105,117,101,109,110,108,123,97,103,107,100,95,97,114,106,103,95,113,118,94,100,112,106,110,112,107,101,104,104,96,103,112,93,102,114,103,113,109,110,110,108,96,118,101,98,101,113,109,111,99,111,96,117,108,102,108,110,117,104,135,103,103,98,100,107,103,103,100,100,101,101,94,106,111,105,109,101,108,112,101,101,109,109,110,101,111,105,100,106,70,111,96,95,108,103,124,97,105,108,117,105,99,123,107,99,112,103,104,105,100,100,120,112,107,101,116,106,105,102,115,106,107,105,103,114,105,117,106,102,99,111,103,110,112,108,115,117,99,109,105,109,134,103,95,97,113,113,99,109,109,113,108,109,104,108,103,99,106,95,109,105,101,109,113,105,106,103,100,96,91,101,102,103,106,106,100,108,101,102,101,95,104,117,113,105,103,109,101,102,105,105,117,99,117,101,99,107,97,96,102,106,110,106,93,106,112,101,101,112,108,93,103,101,109,104,95,100,110,106,103,113,105,99,100,91,104,106,111,105,108,99,118,104,109,113,102,105,90,99,107,115,81,106,97,94,102,97,99,95,102,109,98,104,100,105,110,106,100,104,115,106,105,109,99,104,99,114,112,97,117,100,100,107,124,103,96,105,92,98,106,108,103,112,103,100,110,94,112,119,103,112,107,106,93,95,113,103,103,98,104,87,109,104,114,100,103,111,98,94,94,113,97,96,107,114,93,107,103,114,112,101,112,96,108,116,99,104,113,99,96,96,106,108,92,116,104,100,104,96,100,108,112,109,112,116,90,106,102,111,88,98,107,104,116,103,104,117,99,99,107,105,106,104,93,94,107,79,103,116,107,105,103,111,112,107,109,101,105,106,104,105,102,96,107,110,99,94,87,107,106,103,114,100,94,96,99,105,126,111,113,108,97,100,104,112,106,108,100,94,114,117,102,104,108,103,97,99,94,113,98,102,105,109,102,98,105,95,113,112,112,109,109,103,79,104,113,103,99,107,106,98,100,101,104,109,109,103,101,112,98,116,102,98,95,101,96,106,104,104,96,102,95,98,117,95,112,96,102,111,116,101,91,113,109,112,106,106,98,101,113,109,95,110,112,108,104,100,115,103,100,94,102,111,101,100,109,98,93,103,94,102,102,103,98,98,101,104,106,99,98,95,109,96,101,108,106,103,99,102,109,108,100,119,100,93,98,109,107,97,106,101,108,114,104,99,102,102,113,100,94,96,93,101,95,109,108,99,99,87,96,104,97,117,113,104,105,98,104,94,115,96,99,99,98,96,113,97,102,91,110,104,93,100,96,92,101,109,102,105,108,108,100,96,121,97,101,106,109,102,102,100,93,104,108,106,110,99,92,96,117,102,100,99,98,103,105,87,100,104,97,106,102,125,101,110,100,109,98,113,108,116,95,99,92,108,108,99,109,113,98,98,115,93,112,101,96,117,104,106,108,99,92,111,106,111,100,105,105,103,106,105,106,107,104,91,101,96,108,104,111,117,98,111,105,101,97,107,97,95,90,104,105,106,96,98,105,108,92,106,105,111,90,88,110,114,103,91,103,116,94,96,102,99,98,105,98,107,104,94,102,103,119,98,95,98,101,120,96,104,97,102,104,118,99,110,108,102,103,70,101,96,106,106,99,96,100,80,100,107,97,111,100,97,116,100,98,137,113,84,104,105,92,106,104,105,102,96,102,106,106,107,98,96,90,106,98,108,103,117,101,103,103,94,118,110,110,102,107,99,107,107,106,116,106,103,104,104,99,120,93,104,121,101,107,111,104,108,97,112,94,97,101,101,96,98,99,109,100,103,94,110,91,116,103,100,95,108,98,113,106,103,104,109,115,98,112,100,109,98,106,102,107,97,97,109,122,103,99,110,89,98,105,88,97,96,111,94,110,117,97,105,106,104,116,108,95,101,106,105,101,107,110,101,113,111,126,92,106,109,109,101,102,111,105,96,101,101,98,112,97,103,111,94,96,92,100,99,95,104,103,104,100,87,106,119,97,95,103,102,97,105,134,112,105,107,100,110,90,106,103,115,105,103,104,112,111,99,87,100,102,117,96,101,103,106,99,109,105,99,112,105,115,104,109,127,108,104,99,106,103,112,105,106,94,112,91,76,100,102,94,95,117,105,96,103,93,112,104,73,104,106,98,112,119,104,103,111,116,94,102,100,83,109,113,101,110,121,106,108,103,92,94,95,103,115,113,106,95,98,119,109,117,98,105,110,99,94,99,105,106,88,92,106,101,97,98,102,105,101,101,117,104,108,113,92,125,88,102,104,98,114,104,112,104,100,91,98,107,101,109,103,98,103,105,101,99,95,98,99,108,108,98,97,111,92,113,109,107,114,101,113,109,103,99,104,79,92,100,99,117,103,105,109,111,113,101,98,104,113,101,101,103,107,102,89,106,100,102,99,116,107,90,99,93,98,95,95,112,97,95,142,101,111,91,103,89,85,106,100,105,89,101,88,95,96,100,106,114,97,110,102,91,106,109,95,99,100,106,96,98,108,98,101,103,121,98,91,111,104,104,95,107,102,99,101,101,104,104,98,103,99,107,109,126,92,90,107,91,104,103,120,109,95,102,105,105,113,103,95,85,100,92,94,93,93,104,111,100,83,104,95,104,106,96,103,103,92,111,100,100,114,104,103,106,97,93,121,105,101,95,103,100,107,88,97,108,109,93,107,107,103,101,98,99,107,106,88,99,106,101,99,99,109,101,106,105,105,109,105,104,89,101,94,95,95,77,108,96,101,101,96,108,106,94,106,102,100,98,103,107,94,95,96,90, +540.13763,102,110,105,91,82,126,91,100,121,106,94,105,100,110,93,87,96,105,104,101,111,109,99,100,107,95,109,97,90,104,106,105,102,101,106,105,104,102,92,99,108,111,106,107,101,102,95,108,104,98,120,102,98,109,106,103,102,97,114,105,94,94,109,103,79,115,105,102,102,82,98,99,91,96,97,100,117,106,105,108,112,99,97,101,108,95,104,105,117,94,97,106,104,97,111,104,108,98,110,87,98,110,99,77,113,108,100,111,94,106,79,107,105,107,94,95,95,96,101,106,95,118,112,102,105,99,100,79,117,99,99,102,94,99,92,121,105,107,94,106,71,109,103,90,106,94,109,106,92,108,103,95,97,108,97,100,108,96,109,111,99,94,88,110,108,98,97,88,103,114,113,101,103,109,97,104,114,99,104,112,111,100,107,113,106,99,94,104,106,112,107,95,108,104,93,110,105,105,118,99,109,109,105,102,109,109,95,96,95,107,104,95,107,139,107,107,102,100,91,117,113,91,104,107,95,104,100,103,112,112,105,96,117,100,110,103,104,102,115,109,97,92,105,101,120,91,108,100,102,111,106,103,105,113,100,98,109,96,108,108,110,114,100,95,103,105,112,92,103,104,106,110,110,104,113,116,111,103,117,94,96,102,99,83,112,105,90,108,101,96,111,105,107,96,113,103,111,102,96,101,105,101,113,116,106,109,99,113,90,114,105,110,109,106,108,100,109,96,118,106,114,107,124,105,96,104,90,99,124,109,102,107,110,100,84,120,99,100,101,107,107,104,107,95,110,110,114,101,114,113,95,98,101,106,114,101,102,117,102,97,108,102,115,108,100,100,111,105,106,101,112,101,114,106,103,94,114,108,101,114,108,95,85,117,105,96,105,106,100,110,101,108,107,102,102,109,114,96,108,97,115,105,102,112,106,104,110,108,104,96,98,111,111,100,111,103,119,111,94,106,93,109,105,113,102,107,97,98,105,108,108,96,107,118,102,94,102,111,104,123,104,107,103,121,108,96,105,95,115,96,104,101,109,115,108,114,108,106,97,109,109,102,115,97,105,105,108,93,117,105,111,109,104,109,102,103,116,71,82,97,95,102,111,104,101,109,108,106,96,100,102,89,130,95,102,106,94,107,98,99,115,108,118,98,109,101,97,113,109,100,113,114,107,109,111,101,110,104,94,114,108,96,98,102,101,112,108,106,109,101,94,104,112,112,103,106,96,112,105,116,81,106,115,99,105,107,106,110,104,102,111,101,106,101,106,114,104,116,108,103,106,99,109,99,119,79,102,106,120,104,109,98,108,106,106,111,110,100,104,103,114,114,91,102,105,103,102,113,102,103,120,103,116,120,113,111,105,101,108,95,105,91,103,102,106,106,110,104,106,111,109,120,110,112,109,103,100,105,104,106,82,105,105,114,106,110,113,106,102,99,113,113,105,92,93,108,99,98,98,108,108,116,94,105,109,91,121,98,113,103,102,110,111,111,102,102,94,100,123,111,118,109,94,120,67,116,110,96,116,102,119,112,100,101,103,107,114,103,115,103,103,98,113,103,93,99,102,106,105,95,109,110,81,109,117,93,108,108,102,94,113,117,97,108,107,99,117,107,102,114,103,96,117,97,110,103,103,111,102,109,108,96,109,106,85,98,116,130,109,110,98,99,99,98,98,97,99,113,119,103,107,97,99,111,103,95,89,103,116,116,96,102,94,97,104,95,105,108,123,103,114,92,102,110,104,96,107,97,105,100,111,105,114,113,103,103,96,110,101,101,111,105,121,111,108,106,108,105,112,104,103,101,108,111,101,110,97,102,110,111,108,101,107,107,110,105,106,92,98,100,109,110,107,112,97,101,111,108,99,99,103,90,117,108,99,112,106,112,104,122,100,103,105,108,100,113,96,103,110,100,98,114,107,98,105,117,98,98,99,104,100,90,113,104,101,99,106,103,104,104,113,123,122,110,103,108,103,102,103,100,100,100,100,106,103,87,99,103,97,115,124,94,97,102,107,92,103,113,106,93,119,118,107,102,102,101,94,103,106,103,106,107,112,98,107,101,98,114,103,106,113,105,102,108,95,104,102,108,108,117,104,104,113,102,113,96,95,100,100,112,106,103,104,109,93,98,104,112,109,113,108,101,117,111,98,104,109,107,110,104,112,108,121,107,113,108,106,68,99,114,108,115,119,104,110,112,104,97,102,99,102,96,103,96,130,117,99,102,104,112,114,119,94,94,99,119,96,101,107,105,116,106,103,109,108,104,109,103,99,109,108,107,105,116,117,107,122,117,115,109,99,115,107,110,112,109,100,102,107,106,118,105,100,98,95,106,98,123,112,105,103,113,93,95,114,98,94,105,107,93,95,113,69,101,109,111,94,99,110,109,104,114,103,110,100,106,110,97,98,102,105,105,120,109,113,100,108,122,108,95,105,100,97,119,105,103,114,105,109,105,104,107,115,106,111,104,101,94,112,117,106,96,99,95,103,104,104,95,102,110,111,96,108,98,112,104,109,99,104,117,93,107,113,112,108,79,106,109,107,97,106,99,105,99,113,116,105,105,96,110,106,116,110,99,106,87,99,117,95,97,110,101,99,100,112,111,109,104,105,106,117,118,112,103,114,97,113,99,115,116,118,104,97,99,113,109,128,87,112,110,106,88,122,128,103,101,106,105,108,116,106,102,102,113,110,105,110,104,99,111,117,109,107,101,90,102,116,93,109,99,105,108,94,121,110,111,109,96,111,102,112,105,110,111,105,98,114,108,117,102,99,103,109,99,111,98,113,103,109,113,100,114,104,114,108,106,105,93,109,123,105,110,106,98,103,113,104,99,109,110,97,102,105,115,103,93,108,123,75,113,114,104,102,101,109,121,107,115,108,110,103,122,109,114,112,101,79,101,109,109,97,114,102,113,115,115,106,99,117,121,104,120,107,112,116,108,108,104,98,106,111,108,96,106,104,108,102,110,107,103,112,113,103,98,113,106,115,107,93,78,112,109,108,111,111,104,111,102,104,98,105,92,87,81,110,109,108,101,110,102,96,94,115,95,119,109,108,104,124,106,98,92,113,107,94,97,101,116,99,112,112,110,109,111,103,100,112,112,100,112,94,105,96,106,108,102,98,106,94,111,100,94,130,116,103,103,102,106,99,101,106,101,103,112,107,109,103,92,108,102,110,104,100,105,93,105,99,111,113,104,98,101,94,100,111,83,117,113,114,102,102,102,103,109,105,109,111,103,109,96,107,102,103,124,111,93,105,116,96,75,92,104,96,104,100,106,103,107,104,94,110,102,107,101,113,108,111,91,102,87,113,108,105,104,101,101,102,117,101,102,97,109,101,106,108,108,98,106,114,107,105,112,99,105,115,105,105,102,99,102,105,103,109,110,104,100,108,101,100,114,115,98,97,110,98,106,117,108,106,108,105,110,113,97,114,104,91,106,104,114,105,99,98,125,104,113,103,103,119,101,111,104,105,88,103,104,108,104,111,98,108,108,105,104,107,110,108,106,92,91,100,117,124,94,108,108,112,103,87,99,102,95,102,101,108,119,97,132,92,104,110,95,85,105,104,112,112,90,116,109,99,113,108,101,99,117,109,112,109,107,99,102,114,108,105,85,110,102,102,112,98,110,99,115,105,106,106,98,103,102,108,108,110,117,112,105,100,108,110,85,104,105,111,105,106,104,107,99,106,109,106,101,104,109,103,104,110,120,109,109,111,103,112,98,113,96,104,123,97,107,116,100,96,95,111,100,107,103,108,114,93,108,113,109,94,97,87,98,98,99,101,110,112,112,95,100,111,98,105,73,110,102,117,109,111,117,99,103,101,111,106,107,109,103,100,107,116,103,122,107,100,103,113,88,99,121,103,110,93,107,106,104,81,104,112,110,112,99,110,103,95,109,108,110,96,98,105,97,109,101,96,96,109,113,111,111,107,112,118,91,102,111,103,91,115,115,100,104,112,109,95,97,109,124,125,104,97,106,107,105,128,100,104,107,108,108,98,108,100,127,110,111,79,102,100,108,121,102,110,95,107,104,101,108,97,100,114,102,115,112,108,112,112,108,124,110,103,117,106,108,90,111,110,104,101,115,108,114,114,106,103,96,102,98,105,110,112,116,116,105,102,99,107,102,103,105,106,118,105,96,112,85,105,87,108,102,100,99,105,112,105,104,102,109,109,105,101,106,113,117,103,99,111,113,109,100,107,112,111,117,120,100,99,112,106,112,108,114,110,106,98,102,113,103,99,95,106,95,108,105,98,127,113,111,104,109,114,102,115,115,106,111,98,114,105,97,103,105,118,115,106,100,108,100,104,108,111,121,106,101,106,100,112,105,98,101,113,107,111,105,93,109,108,98,93,107,112,109,111,114,109,104,107,108,97,107,103,109,109,88,112,94,111,107,97,100,117,117,117,114,124,125,101,106,109,96,97,95,96,112,105,108,108,112,109,95,98,105,113,107,111,111,93,87,100,111,111,93,104,106,107,114,107,111,110,95,99,120,106,110,94,94,97,105,103,110,102,100,97,113,114,113,106,105,105,109,117,110,102,100,82,107,103,100,121,110,111,106,100,107,104,83,118,113,106,108,107,98,113,110,105,100,106,108,111,112,87,100,97,101,106,94,94,101,110,102,113,116,84,107,105,96,104,103,106,98,108,104,103,105,94,108,99,104,111,92,112,117,97,108,106,102,102,109,111,95,93,99,97,103,102,119,95,121,101,102,106,109,115,107,86,104,83,109,92,105,111,124,99,106,100,118,107,108,101,106,99,106,115,99,115,95,98,108,113,106,107,112,101,108,110,91,101,102,109,105,113,88,97,106,128,95,107,103,107,98,99,110,109,92,115,108,102,105,115,96,99,96,92,92,105,81,115,93,107,124,100,106,94,93, +540.27844,102,99,107,99,78,98,96,99,107,112,118,96,91,96,103,108,100,108,102,99,105,91,94,123,110,104,94,101,113,72,99,97,98,110,95,103,117,95,106,94,92,115,106,97,103,102,102,103,102,102,112,105,103,108,105,96,99,95,122,94,100,91,86,71,105,108,95,106,99,102,110,100,102,103,90,125,100,111,112,91,94,102,101,104,107,111,100,102,101,93,101,110,102,106,105,92,107,102,102,99,102,106,99,106,113,115,102,109,117,103,99,110,98,110,102,110,109,106,113,107,102,103,92,109,101,89,105,108,110,102,105,107,101,104,120,103,99,99,100,99,99,114,69,96,102,100,106,103,96,95,112,106,109,93,103,102,101,94,103,110,107,112,100,103,104,110,108,102,103,96,93,102,103,102,108,120,103,101,105,100,112,99,105,125,107,106,97,100,115,109,107,98,95,114,100,92,97,110,104,103,106,111,100,111,104,120,103,114,109,112,106,112,112,102,101,97,117,110,137,103,114,100,99,100,101,95,110,100,106,113,106,125,107,111,111,107,99,106,108,96,98,97,115,105,111,102,105,104,114,116,103,103,86,105,110,107,104,107,95,102,105,110,104,96,102,109,105,137,105,111,92,109,103,98,115,101,96,103,113,102,108,113,109,97,99,104,93,107,108,112,91,89,121,105,116,96,103,110,108,109,99,113,91,105,99,103,114,106,108,101,103,110,95,109,104,110,98,111,111,111,99,96,119,109,99,66,100,100,108,104,106,111,113,132,104,105,109,109,107,100,107,103,100,103,112,113,108,103,111,117,97,104,102,98,110,103,118,105,116,92,106,98,89,97,105,107,109,103,101,109,101,99,106,106,101,111,116,102,105,102,102,100,107,109,102,104,113,125,102,102,116,99,91,118,102,101,106,101,107,109,93,100,104,89,104,97,109,105,107,98,100,82,101,109,108,104,106,102,102,101,91,87,103,99,100,102,105,99,102,104,98,113,104,99,108,100,93,108,117,119,106,114,103,109,97,99,104,99,104,112,105,112,103,106,102,103,99,101,100,101,104,88,102,114,118,103,101,101,109,103,104,100,98,108,104,106,106,107,100,99,106,97,110,77,96,114,108,105,97,93,107,113,106,98,107,111,104,98,101,113,92,107,103,104,92,118,95,108,124,105,98,97,102,113,113,103,102,102,113,95,101,108,112,109,104,106,114,108,101,97,96,105,103,100,103,105,113,104,99,106,102,102,99,106,110,91,103,102,103,100,100,108,104,97,100,96,109,104,97,105,111,113,100,101,104,104,109,99,98,104,98,108,104,105,121,99,121,87,109,98,113,106,106,103,97,94,95,102,102,98,105,118,99,102,103,112,110,103,104,117,109,115,118,96,94,102,107,108,97,102,105,88,108,116,116,104,101,103,106,103,102,109,110,104,108,103,104,114,117,96,108,99,109,110,108,100,102,97,98,101,119,109,117,104,107,100,110,105,113,112,117,110,112,106,108,111,102,113,112,100,109,112,105,114,94,107,103,95,108,108,114,115,102,111,100,101,91,117,103,104,105,100,115,97,113,107,106,111,94,108,107,103,96,106,99,100,104,97,108,109,110,95,99,109,104,104,111,103,110,102,95,106,104,107,99,108,121,104,105,105,95,102,98,109,96,98,112,105,113,111,105,100,105,117,106,110,104,90,103,108,95,111,103,100,103,110,108,117,108,104,112,115,101,109,88,99,104,107,112,111,110,103,100,95,105,98,108,96,101,101,105,102,109,96,88,105,103,97,108,95,103,107,111,105,88,98,110,105,105,95,110,105,103,104,98,102,96,108,105,102,108,97,103,101,96,104,93,113,109,106,119,113,108,103,95,108,102,102,109,104,115,102,103,106,112,106,103,107,99,89,110,101,102,101,112,99,107,120,103,108,99,109,112,107,87,96,99,102,105,106,117,104,121,96,97,118,111,99,94,100,112,104,104,113,88,96,91,103,101,105,99,122,102,103,102,104,92,112,93,100,112,95,113,107,102,100,99,112,113,113,105,102,98,104,98,108,92,99,111,105,117,105,99,109,139,112,100,103,103,98,107,104,109,107,114,99,94,84,104,104,102,101,114,109,106,82,99,93,100,92,98,122,117,108,96,93,99,119,116,109,102,109,108,112,114,110,102,106,98,102,101,107,103,110,110,101,116,106,99,98,106,105,103,96,106,111,105,98,110,99,94,104,116,117,109,101,100,103,93,111,102,111,103,105,114,117,92,89,101,102,99,100,108,106,95,104,91,107,109,105,104,109,87,113,114,108,105,104,91,113,108,109,103,106,102,109,124,99,113,105,112,110,101,117,110,107,109,103,111,100,100,118,101,99,124,107,107,114,106,109,104,115,102,79,102,100,102,115,105,112,110,100,99,102,102,111,104,112,94,119,111,119,100,116,95,101,104,103,108,97,91,113,103,101,99,120,101,114,108,110,115,115,93,109,103,117,105,88,111,117,100,95,104,97,101,98,108,132,108,110,111,95,115,112,110,92,104,106,106,106,99,115,113,104,86,119,112,72,112,117,108,100,96,112,108,99,107,115,99,104,113,115,113,103,114,111,99,124,112,116,102,88,102,107,98,105,109,101,105,110,108,110,98,94,112,110,111,104,103,105,101,98,100,96,105,97,106,94,114,104,105,105,108,108,111,97,112,94,106,105,108,80,110,94,117,102,110,105,113,122,98,104,104,118,111,106,125,113,108,113,111,113,105,112,95,105,118,105,103,101,113,103,98,102,106,86,111,113,110,100,99,112,115,96,113,106,99,105,122,104,79,109,105,108,109,101,113,100,110,119,110,104,109,116,110,95,120,99,106,103,111,112,98,102,103,113,98,109,100,127,111,114,102,103,95,102,110,102,101,119,118,112,115,109,108,108,110,101,110,114,101,114,107,96,91,105,101,104,114,106,113,112,105,109,95,125,115,105,104,76,124,96,112,111,110,102,107,95,109,113,103,116,97,106,119,103,108,100,105,97,109,104,112,104,113,109,103,115,101,102,98,109,87,113,110,106,104,105,99,98,97,138,111,108,117,99,118,115,77,107,102,105,107,109,100,99,109,96,96,106,113,117,104,107,108,109,117,105,105,125,77,112,108,115,99,103,96,103,89,104,112,105,94,110,106,106,99,107,105,110,111,95,91,106,112,106,104,92,98,100,111,113,102,110,108,106,108,111,103,108,100,90,101,109,104,99,116,107,105,112,101,100,105,99,96,109,98,102,115,106,109,107,98,114,108,132,103,117,109,115,98,103,108,103,111,100,102,102,106,94,107,110,109,108,103,110,120,121,84,106,107,99,110,102,106,110,109,106,100,107,93,106,73,95,117,113,113,100,109,113,102,107,101,99,113,112,98,104,100,106,110,105,108,99,106,106,90,114,107,102,93,108,109,118,104,99,102,109,106,103,104,103,96,94,106,110,113,111,126,99,107,107,107,104,105,109,121,121,108,107,97,112,107,106,98,120,99,103,107,109,110,117,78,98,109,106,120,108,108,98,103,98,108,112,120,110,102,105,115,107,92,109,103,117,110,106,96,108,113,98,112,102,115,109,109,106,100,103,120,103,107,92,121,121,107,116,113,106,98,97,99,92,101,103,104,97,110,103,110,109,98,97,102,116,100,104,106,102,109,107,99,105,106,108,97,101,106,75,108,98,111,124,97,102,114,111,96,110,102,108,101,105,110,102,106,104,121,102,104,108,117,102,114,109,106,116,109,103,99,100,113,95,100,98,104,106,98,98,108,96,113,102,104,105,105,98,113,97,110,103,105,103,102,121,96,105,104,106,106,117,110,113,110,92,101,107,112,103,101,108,108,108,103,101,91,112,109,99,135,105,108,102,106,112,104,102,106,113,111,102,101,103,87,92,107,106,107,100,109,102,103,119,108,110,105,105,122,79,106,107,106,112,110,102,106,108,100,113,108,102,102,115,95,111,87,111,103,101,107,111,89,111,100,100,113,103,93,105,74,99,114,119,102,106,109,99,96,136,95,102,114,108,95,95,109,99,108,99,108,101,108,109,102,125,112,105,115,114,109,112,113,116,108,95,95,104,97,112,108,105,120,110,107,115,113,96,98,99,106,98,112,87,100,111,110,108,100,105,111,112,71,67,99,112,105,100,101,116,93,95,104,105,103,102,109,99,104,113,100,109,109,115,108,108,111,103,104,117,110,109,121,110,110,105,94,108,114,123,117,106,115,96,91,110,98,112,103,124,100,102,113,103,98,106,98,107,103,98,99,113,111,109,104,103,116,86,113,99,106,93,101,100,120,110,71,112,106,105,107,106,109,108,114,111,102,98,109,105,112,112,87,95,97,103,104,104,117,112,114,100,111,106,103,116,99,107,106,110,98,124,112,105,108,103,79,121,115,110,111,95,109,100,109,97,104,105,93,97,115,104,108,116,112,86,120,110,87,83,100,121,106,108,100,109,107,100,93,93,109,100,103,95,102,111,95,109,73,117,97,112,109,111,105,110,112,118,107,103,111,107,103,115,94,86,107,119,112,94,116,96,114,100,99,95,99,96,106,115,116,102,101,106,94,107,106,104,103,100,113,91,113,98,110,115,110,95,95,112,105,101,104,111,80,102,132,102,109,106,97,101,105,97,107,97,102,99,115,105,120,103,104,97,102,103,93,111,122,94,116,108,105,114,98,106,118,96,108,101,107,95,104,108,114,111,111,111,121,104,98,104,106,114,106,99,113,109,104,98,100,109,92,104,86,116,109,105,107,117,112,106,110,108,113,97,112,120,96,99,104,123,96,106,112,111,115,101,105,95,93,103,102,103,89,95,107,92,116,103,93,100,105,99,101,101,91,95,110,101,109,96,100,105,107,94,97,105,79,99,107,113,99,113,95,99,101,109,90,99,109,95, +540.41925,96,90,96,104,98,100,106,96,99,110,98,108,91,103,102,105,87,108,110,91,103,101,91,98,104,100,109,107,116,106,80,97,103,104,109,109,120,113,97,94,93,101,88,96,77,107,100,110,102,95,108,71,96,106,104,100,100,88,104,100,103,104,106,90,96,112,95,103,100,108,109,105,101,108,101,100,106,99,109,111,106,114,114,109,99,95,104,102,111,98,107,99,103,98,103,117,102,98,99,100,106,110,107,104,115,103,104,111,103,82,90,97,103,68,117,107,108,113,110,112,105,84,101,106,102,109,113,101,103,115,98,108,108,107,99,100,102,113,95,100,108,103,104,99,94,96,117,93,93,109,101,109,104,100,112,112,109,97,81,99,113,104,106,107,95,103,98,91,107,103,103,104,105,112,101,93,101,91,105,101,98,94,100,96,101,110,105,101,100,100,92,109,110,101,96,109,102,109,99,109,101,116,114,101,92,100,102,86,121,99,110,104,104,117,102,114,101,103,94,83,116,99,110,118,100,98,103,109,102,100,108,104,102,109,112,106,106,106,103,103,106,96,106,107,116,109,109,108,104,113,118,108,107,103,107,110,112,103,94,106,96,112,104,139,92,114,106,104,105,100,102,105,100,100,120,106,95,106,104,106,105,98,104,104,105,101,96,94,104,109,114,92,109,101,102,111,102,98,111,100,111,109,102,100,94,113,102,103,99,103,109,112,106,92,106,104,113,117,105,109,104,104,120,110,105,103,106,103,112,113,113,114,111,107,100,107,101,109,106,117,91,96,98,97,107,110,101,104,103,107,109,109,108,107,103,100,116,101,101,98,101,101,108,105,102,101,114,109,102,106,110,102,116,102,113,108,114,111,105,117,115,96,91,101,105,112,103,102,104,112,115,98,84,110,95,108,115,95,93,110,99,104,98,104,100,110,97,103,107,109,111,117,112,103,99,84,103,118,104,117,105,105,100,94,105,99,100,83,102,103,100,105,102,112,105,105,114,100,105,122,117,111,105,114,102,89,90,94,103,108,109,98,112,102,92,109,99,115,100,85,97,100,105,108,107,108,94,113,103,110,89,116,105,107,112,93,105,103,105,94,106,111,109,95,87,99,112,115,111,100,99,103,106,95,101,118,102,96,111,98,107,96,112,109,107,103,102,110,107,112,112,110,117,105,102,103,103,119,101,104,104,103,110,103,111,117,100,107,103,111,104,104,111,92,105,105,101,105,105,111,107,111,95,91,103,98,107,91,114,117,121,97,118,99,99,111,112,100,103,119,118,101,112,108,100,112,109,96,99,110,103,103,110,104,113,103,103,106,121,112,99,101,104,102,95,76,114,100,118,99,107,89,108,106,104,100,105,105,114,106,96,116,121,92,110,102,102,99,98,102,100,99,102,113,100,99,109,114,108,108,103,104,104,99,102,110,96,105,113,120,103,108,105,98,109,98,107,103,104,113,109,101,106,107,108,93,105,88,116,106,109,108,98,113,117,112,108,98,103,107,113,108,112,100,87,96,124,87,110,105,103,109,88,107,107,86,92,104,101,106,126,79,101,85,100,102,97,104,105,109,110,107,109,103,98,124,105,116,92,107,108,105,92,112,98,98,113,102,114,87,102,107,104,122,87,90,100,107,97,110,101,119,114,106,96,101,104,112,109,114,111,91,100,109,100,104,109,105,118,97,107,109,98,105,107,104,104,109,109,101,110,105,96,92,115,112,110,103,98,105,101,103,112,97,109,99,95,105,109,106,90,89,105,100,98,114,106,101,93,98,118,107,110,109,93,104,90,113,110,105,100,106,112,111,105,103,109,109,127,103,101,110,100,96,119,114,110,105,106,93,104,110,96,106,111,88,94,104,107,100,99,102,111,113,103,108,103,111,97,104,108,96,102,106,115,113,103,117,96,110,95,102,117,110,90,100,107,96,77,95,109,103,92,113,99,108,109,103,108,107,95,104,119,104,105,108,94,108,125,105,105,122,101,99,104,96,109,102,100,106,104,109,109,109,119,106,94,113,116,104,103,104,113,102,103,100,117,121,109,104,109,112,103,99,103,101,110,97,101,103,112,103,106,96,112,131,105,116,110,114,103,102,100,86,114,108,109,99,104,102,110,116,111,113,106,106,101,108,113,113,109,113,118,99,100,99,105,101,109,106,121,105,99,102,123,108,104,108,105,94,103,100,101,104,112,107,105,101,67,106,101,100,125,101,102,92,114,114,106,103,102,101,101,97,102,96,97,104,111,118,109,115,106,104,105,108,120,98,100,108,103,111,103,100,109,109,105,104,98,100,91,100,105,102,103,109,112,112,103,95,125,112,106,103,109,109,103,118,117,106,102,89,115,98,102,96,109,118,109,108,105,107,110,108,112,98,105,106,109,101,108,110,101,113,102,110,98,118,108,111,109,89,109,110,116,94,101,109,113,68,101,134,114,103,105,93,109,97,105,103,99,102,104,112,102,95,113,101,123,110,104,111,106,107,123,104,106,89,110,104,96,102,100,98,107,97,108,95,90,108,105,104,102,95,117,98,96,107,102,113,103,112,113,107,107,96,102,111,110,104,109,109,113,107,110,106,124,109,109,102,111,92,102,115,102,101,110,115,113,101,110,105,104,110,98,109,113,108,86,112,123,92,109,82,111,83,115,101,96,114,112,111,108,100,113,100,107,114,114,114,101,106,97,93,124,110,114,120,108,102,105,94,121,116,106,109,112,116,106,116,104,119,115,103,100,103,103,104,109,102,110,105,109,120,115,112,106,99,103,119,97,110,108,100,102,111,109,101,99,92,96,106,107,108,124,92,99,112,105,102,109,105,106,105,77,113,106,117,114,95,113,110,108,119,102,108,101,110,106,105,113,121,102,109,113,109,109,91,107,114,112,103,102,123,108,97,107,114,97,116,103,114,100,104,103,109,112,109,105,105,107,108,102,97,102,112,107,104,115,109,109,104,107,109,102,110,111,112,127,98,113,116,88,104,120,98,110,109,98,103,117,99,89,100,114,101,108,112,103,100,110,103,113,114,114,118,106,101,105,103,114,107,107,95,106,76,87,108,93,104,110,112,110,97,90,97,107,116,100,107,106,106,111,100,113,91,107,108,108,99,111,100,104,109,106,101,100,120,105,102,99,98,113,109,104,95,104,113,104,106,102,100,113,106,105,107,97,112,110,113,112,105,96,95,101,81,103,109,112,101,99,114,119,103,115,104,102,107,100,110,108,100,99,99,109,96,98,99,120,104,98,106,99,105,110,106,90,109,94,115,115,92,109,108,100,105,101,99,104,116,108,100,107,104,99,113,117,106,102,98,115,106,98,112,105,94,104,96,97,104,106,108,94,112,104,101,121,119,114,95,90,103,106,116,99,100,112,100,121,91,116,122,97,99,105,108,114,110,108,107,113,103,102,119,103,105,110,100,120,109,107,106,110,116,133,97,126,109,113,107,99,107,116,98,98,118,108,121,109,97,106,105,109,103,107,99,96,100,112,101,111,108,99,109,103,102,95,100,105,104,123,99,95,108,128,102,115,114,97,101,96,108,95,91,103,91,91,104,110,110,112,106,104,106,129,99,103,110,111,109,104,115,111,105,102,98,103,100,117,106,91,112,114,109,110,98,99,95,102,113,99,108,102,101,111,105,107,112,112,95,106,107,108,109,102,102,106,106,94,106,105,110,105,106,103,85,103,103,110,103,108,91,110,99,101,102,105,103,99,106,108,113,104,85,96,102,106,101,103,107,104,97,105,106,105,127,118,99,109,108,103,99,106,94,98,103,109,105,112,103,97,104,85,110,111,99,103,100,100,94,103,106,104,100,101,106,109,95,96,123,104,118,109,101,110,107,121,101,105,95,114,98,104,98,96,105,106,105,101,97,92,115,98,98,117,99,106,112,101,105,109,104,95,107,112,104,110,108,114,97,103,97,107,95,100,112,98,98,109,109,112,104,106,112,101,105,108,105,118,111,110,116,88,104,115,121,103,96,92,101,105,102,105,106,97,106,106,105,112,102,106,106,108,108,105,98,98,116,110,109,72,110,96,122,110,107,102,100,105,97,114,96,103,97,104,108,103,109,105,108,103,109,104,107,112,103,95,102,102,107,113,107,101,109,110,103,127,102,87,105,88,98,106,108,103,106,90,103,107,120,106,107,116,101,109,108,106,105,108,98,94,92,116,100,110,119,89,107,114,111,100,122,98,117,114,100,103,104,100,107,106,117,105,108,95,113,104,113,106,121,104,92,106,106,99,113,104,105,103,113,105,104,122,105,99,97,106,102,104,113,115,105,119,106,96,103,101,105,83,113,96,102,100,102,98,103,95,92,104,104,98,108,89,106,106,105,98,95,110,117,93,110,99,124,103,104,121,108,102,114,111,102,107,98,85,106,112,108,111,94,100,103,98,107,104,111,108,100,110,72,96,116,99,99,102,113,107,106,100,108,105,111,105,116,97,103,113,100,101,109,110,100,108,117,107,103,103,109,96,108,103,103,108,121,99,103,105,99,105,105,98,101,95,99,94,104,109,118,101,103,94,120,110,106,112,105,107,114,106,108,107,102,95,101,107,101,99,93,110,94,113,101,112,111,102,105,110,95,106,104,97,103,94,111,97,108,68,110,110,105,106,100,98,101,112,104,101,101,115,102,105,103,107,118,92,136,107,109,113,91,102,108,103,112,114,112,90,110,106,106,109,96,115,105,108,99,99,103,108,88,100,108,96,104,107,103,113,96,104,116,115,98,110,105,110,103,105,93,99,97,106,98,103,94,102,100,132,94,119,109,104,113,98,115,92,119,89,112,99,114,112,105,102,101,99,104,111,108,98,103,103,98,104,98,112,95,97,106,117,98,103,107,99,95,109,96,111,91,115,92,87,96,116,101,112,115,114,87,111,99, +540.56006,130,114,93,108,88,106,85,114,103,116,104,96,109,74,122,88,115,113,109,118,111,101,113,107,111,104,102,116,96,108,106,103,104,96,120,102,109,104,104,98,104,110,106,107,104,113,105,114,97,111,106,97,98,94,104,105,100,97,111,100,101,84,91,92,133,121,109,98,101,103,110,113,100,105,88,105,125,107,101,101,104,94,101,110,109,99,98,87,108,116,121,103,97,106,110,106,94,99,109,99,102,98,100,108,98,102,90,122,105,111,110,97,81,98,107,99,103,102,91,95,97,105,112,114,102,108,108,111,113,109,108,103,101,107,106,97,104,105,106,100,90,101,97,100,113,106,126,104,92,103,104,112,113,103,100,104,96,106,105,109,104,107,106,105,109,110,101,105,106,105,105,108,102,99,110,98,118,104,120,86,99,102,96,91,112,105,94,91,110,109,107,93,101,112,106,94,102,106,107,107,108,101,95,109,111,107,102,86,102,108,102,110,109,101,103,111,112,108,95,102,111,107,108,104,120,106,110,107,103,97,106,109,103,107,114,125,97,100,109,100,102,95,100,107,91,93,94,117,105,101,106,105,114,104,105,115,111,107,94,116,109,107,102,108,99,115,103,99,116,99,102,105,103,95,103,109,108,109,117,106,107,122,90,100,108,96,102,101,103,116,107,105,112,108,121,114,108,107,109,88,102,102,98,110,108,98,96,105,105,91,100,116,96,108,118,114,91,102,106,107,108,99,110,100,109,106,104,106,107,104,105,95,111,125,113,113,97,104,88,104,109,113,96,97,105,116,91,102,131,112,100,114,109,101,101,103,108,100,103,107,102,109,109,108,106,104,101,105,109,98,99,95,103,118,108,98,98,112,94,103,113,122,117,106,114,103,103,111,98,107,103,92,88,100,89,109,111,114,116,121,105,111,111,100,97,107,107,110,101,93,99,106,107,117,114,97,108,114,110,98,92,111,90,108,101,110,101,101,100,101,99,104,109,114,100,100,100,112,105,110,115,129,100,110,100,108,108,94,110,111,115,108,102,110,90,108,95,104,109,101,102,113,106,110,105,103,117,109,105,107,100,121,106,105,102,90,99,114,104,105,91,108,114,115,108,104,104,105,133,114,109,112,110,108,98,96,102,121,103,102,111,94,97,100,106,110,103,119,101,112,112,109,102,117,105,110,110,105,108,104,109,107,106,111,111,108,115,95,101,109,101,96,101,120,114,107,112,102,106,105,109,99,104,106,117,105,112,114,101,113,106,110,107,109,111,104,112,113,101,106,110,103,112,101,105,109,101,103,105,100,107,105,107,114,105,113,112,96,95,113,112,107,112,105,104,108,105,110,106,79,110,102,105,107,113,107,104,110,99,97,99,106,105,72,107,98,101,101,110,109,115,100,106,116,105,96,109,104,107,103,105,113,112,105,103,104,99,100,106,108,112,102,110,102,87,108,104,106,116,86,104,107,106,107,98,104,106,105,111,109,95,113,100,105,107,105,107,82,106,112,107,109,98,101,105,103,105,107,102,102,106,102,115,70,101,106,103,108,113,109,112,119,109,123,104,102,108,99,108,101,104,111,101,111,103,119,112,110,108,97,113,94,105,98,113,116,97,116,98,105,112,102,98,105,103,110,100,100,99,100,100,105,98,111,108,94,118,110,99,103,103,107,100,108,98,100,110,94,106,88,99,111,121,108,107,123,112,109,86,105,106,103,108,103,112,116,121,91,124,97,108,98,96,110,106,103,93,94,71,108,108,103,93,105,109,108,94,99,110,110,117,96,113,102,98,113,102,90,95,104,110,107,103,101,98,89,97,96,95,111,101,100,107,100,107,109,112,109,107,123,115,113,97,103,107,110,131,102,114,121,101,107,96,101,125,113,116,99,115,101,115,95,97,115,103,103,99,100,110,112,101,108,110,98,105,110,107,98,104,107,100,111,118,103,99,113,110,96,99,109,108,99,126,100,102,103,104,101,103,100,108,112,109,104,102,102,106,108,116,101,95,95,107,132,102,110,104,117,100,99,109,117,113,98,104,98,106,106,95,110,108,119,94,108,115,104,103,101,94,106,83,113,110,83,102,99,97,114,105,118,100,93,109,109,113,90,106,107,102,104,109,112,96,107,97,115,105,93,111,113,103,98,101,106,105,90,115,113,103,110,100,96,115,111,105,109,112,114,98,99,113,107,97,107,106,114,103,115,108,99,95,102,120,105,102,103,109,98,101,113,112,113,98,94,105,95,90,100,105,98,108,105,101,107,104,100,104,104,101,95,108,95,102,110,103,110,105,105,88,117,115,110,105,88,109,114,117,102,96,101,95,113,121,106,102,106,111,100,114,108,109,108,104,102,119,96,102,108,113,107,106,105,96,101,99,96,114,112,111,102,95,108,107,96,102,91,103,105,91,106,86,110,100,95,101,109,110,99,95,107,100,109,116,103,113,112,113,98,101,96,99,99,100,94,100,110,98,99,107,99,103,104,104,93,96,101,101,120,103,86,113,101,100,121,112,105,99,99,107,123,99,103,98,103,101,100,72,105,96,103,111,94,96,98,117,76,93,98,99,107,108,99,105,97,100,113,110,109,98,98,92,99,103,112,95,102,104,95,104,104,106,113,110,91,98,98,110,95,106,101,99,93,105,100,106,101,113,101,113,97,116,112,109,106,109,100,103,92,113,85,95,96,104,105,97,80,112,110,93,99,108,102,105,100,109,107,100,95,110,99,103,96,99,110,102,113,90,125,96,111,102,104,115,112,101,101,101,111,99,106,99,104,110,91,106,107,110,95,102,103,111,104,102,103,100,98,107,102,103,98,112,85,99,91,87,82,105,100,121,109,91,103,98,94,103,103,102,100,116,104,98,96,112,106,73,96,100,105,104,108,111,112,100,103,110,103,98,101,93,94,100,114,104,110,95,103,111,98,96,114,105,98,93,104,99,109,103,102,96,98,98,104,102,114,103,124,103,79,104,93,100,102,105,96,116,113,97,98,109,106,110,109,104,101,103,108,99,104,99,102,103,94,102,106,84,96,101,101,103,105,103,99,112,96,90,102,104,80,100,88,106,98,93,87,96,103,99,106,99,122,116,107,105,93,108,98,112,93,96,111,107,86,101,117,96,95,110,106,94,104,98,98,107,105,110,101,97,117,109,105,96,102,103,103,90,98,120,113,110,112,95,104,99,109,105,114,99,102,113,104,110,106,105,101,112,106,84,98,99,105,101,104,96,102,99,99,102,121,116,107,102,104,102,102,115,96,100,103,103,111,109,105,108,87,98,96,105,95,113,98,86,91,109,103,96,108,110,106,91,103,112,105,105,100,110,97,101,103,101,100,92,105,98,93,111,108,103,92,105,105,106,103,103,96,104,95,126,110,98,102,109,103,98,113,96,101,105,83,99,102,79,101,110,103,87,106,116,116,95,108,113,96,109,95,113,106,101,115,107,104,113,99,102,99,96,109,108,109,95,101,104,105,99,103,97,100,101,109,113,99,108,105,102,109,99,110,91,101,94,107,99,82,100,104,100,113,96,105,93,118,99,91,110,106,103,115,109,103,111,103,102,96,111,107,103,104,98,112,112,104,100,95,87,106,91,106,109,99,106,96,86,107,107,104,99,90,109,109,99,98,88,110,105,99,100,97,99,109,103,102,113,108,103,101,96,101,105,104,107,103,105,107,108,104,107,117,105,107,84,101,115,106,102,109,97,98,117,103,106,101,111,121,114,109,99,78,102,104,99,98,103,112,104,105,106,106,105,109,106,106,107,103,100,113,87,96,113,104,109,96,102,107,96,107,106,98,104,105,103,108,116,102,105,103,99,89,113,104,120,102,109,115,83,99,94,102,105,100,95,111,99,112,103,98,105,129,115,97,99,108,106,91,112,106,100,109,111,104,101,97,104,105,109,98,109,92,88,85,100,104,88,101,102,97,96,102,104,85,91,94,102,102,95,96,100,111,113,103,99,100,119,107,95,99,95,92,107,95,106,101,92,121,102,106,102,115,109,93,103,108,105,102,97,95,91,96,103,105,113,94,118,97,117,97,112,106,107,101,121,95,100,103,98,98,105,119,106,106,113,105,113,116,101,92,107,116,101,99,99,94,93,106,81,109,102,120,105,102,110,104,100,100,106,103,108,107,104,117,106,112,106,96,100,100,106,96,100,105,101,98,89,102,103,97,97,98,123,103,99,102,97,109,101,116,101,106,102,104,102,104,111,103,101,108,99,104,92,106,100,112,101,103,111,111,101,102,96,96,96,100,108,101,108,105,104,101,103,103,103,100,98,95,104,109,100,107,102,103,123,112,111,102,104,104,95,121,109,103,87,113,102,94,80,104,100,95,99,92,98,84,98,104,96,118,109,115,108,99,108,100,98,101,106,91,103,108,106,108,105,107,102,93,105,106,101,102,101,111,104,105,113,101,109,115,112,120,109,112,102,127,102,107,102,102,104,102,105,97,105,105,86,97,107,95,108,102,99,104,95,82,101,98,94,121,110,105,106,117,100,95,113,91,105,98,100,99,100,100,102,115,107,128,94,96,107,91,92,90,103,110,106,101,109,98,108,108,120,103,98,102,103,99,90,105,113,103,100,102,105,91,95,107,102,113,98,90,87,115,93,89,101,91,100,103,91,91,102,99,97,103,103,90,96,103,96,96,103,107,95,103,96,94,105,102,107,104,105,99,108,98,101,95,112,97,102,99,98,96,105,105,100,102,91,99,102,88,99,97,111,103,99,88,101,103,100,92,92,111,106,98,106,95,107,116,96,90,105,98,108,104,95,120,110,88,103,104,107,108,99,106,107,108,101,93,103,98,103,101,99,111,92,111,94,107,96,97,101,102,98,92,98,98,99,109,113,98,108,89,116,89,109,100,114,110,110,105,84,100,96,91, +540.70087,99,107,98,105,82,97,110,103,105,110,106,113,101,120,98,104,95,102,101,100,105,116,100,91,90,109,109,104,111,106,95,99,99,95,85,108,90,100,96,102,103,107,93,90,103,88,107,102,113,109,91,121,114,86,99,94,91,106,110,101,88,105,107,106,98,103,93,120,114,91,92,108,100,102,96,102,94,97,103,124,110,102,109,109,109,93,105,109,104,106,92,108,108,98,95,109,102,87,100,98,98,102,104,91,100,95,101,91,121,99,102,107,101,97,99,97,98,84,99,82,107,106,105,110,110,112,84,92,108,100,106,98,94,97,104,103,110,101,97,93,99,104,95,111,99,71,104,108,85,100,97,104,106,90,99,95,97,93,97,108,96,98,99,96,112,96,99,99,95,109,109,81,101,106,100,116,107,91,109,108,107,98,109,102,104,103,105,96,113,98,106,103,90,116,99,100,102,84,109,107,99,106,99,107,110,106,106,122,106,100,103,103,106,93,109,91,89,120,103,96,94,92,110,106,103,106,99,99,107,106,99,102,111,104,111,114,93,102,101,112,95,110,110,108,98,99,104,102,102,100,110,114,96,104,111,81,98,96,102,114,114,119,102,108,94,93,114,106,103,102,94,119,126,93,106,117,103,104,102,109,111,106,97,103,103,100,101,115,102,101,101,102,100,100,106,108,117,103,89,111,93,104,98,107,113,104,110,105,92,108,93,103,102,101,109,114,108,100,101,88,93,102,111,102,99,107,82,91,106,116,109,101,100,103,98,100,87,109,98,103,108,110,98,100,121,110,104,85,104,111,109,101,102,105,108,98,111,108,111,99,109,103,110,109,98,97,113,108,115,106,99,103,106,102,113,101,114,107,113,108,112,107,96,100,96,105,92,95,103,99,108,102,97,98,97,102,106,104,113,109,105,103,101,99,94,102,105,99,108,104,108,96,98,109,107,107,112,106,103,109,96,100,99,94,104,88,98,91,94,104,110,92,90,107,109,108,106,113,108,102,105,96,96,98,110,91,106,98,107,114,100,90,101,114,105,108,105,108,98,92,101,114,108,102,108,106,99,100,101,97,115,103,121,105,106,100,111,116,104,114,121,112,101,116,107,104,101,125,95,101,100,103,109,101,113,102,98,107,108,86,104,105,97,101,95,123,103,95,96,99,134,101,101,117,103,92,112,108,96,107,102,109,107,104,109,100,111,104,104,80,98,103,112,99,108,107,104,92,107,105,96,108,107,104,117,99,115,88,93,99,101,96,105,105,100,99,95,110,101,99,110,91,106,103,99,98,103,106,93,109,95,100,95,109,112,101,109,102,111,98,107,99,101,103,99,113,103,109,114,101,104,115,98,107,94,107,108,109,105,83,90,101,91,103,97,90,105,91,110,113,102,96,111,104,102,91,116,114,106,98,125,106,109,104,119,98,102,100,97,105,111,105,105,106,95,102,117,103,114,101,100,107,102,97,91,100,101,110,98,101,112,103,114,93,108,103,106,103,99,104,111,106,105,110,88,110,110,105,106,96,116,101,106,103,109,102,106,96,100,99,118,100,107,99,111,102,113,106,95,99,102,97,103,120,103,110,109,107,105,76,98,100,102,95,102,98,111,102,90,104,102,95,99,103,97,110,103,96,92,102,104,95,110,117,97,113,105,99,105,101,108,109,101,104,91,107,104,105,117,101,100,95,97,108,109,99,105,104,117,109,103,100,105,102,100,105,107,100,94,99,101,95,103,107,113,108,89,88,103,114,106,112,97,106,106,98,102,103,108,110,109,108,109,112,101,110,114,101,103,117,101,101,102,109,113,109,100,93,107,100,91,106,106,106,92,101,94,99,113,91,106,97,98,110,125,101,107,105,108,111,109,113,104,95,85,102,99,109,108,110,103,98,103,105,101,96,120,109,103,106,101,110,92,110,103,105,105,113,100,109,64,81,107,99,97,102,108,95,102,109,100,98,116,107,96,106,98,106,112,108,113,110,99,104,105,103,116,102,123,121,110,108,95,99,99,110,86,116,97,98,104,110,103,102,104,99,96,108,76,91,112,102,117,99,104,113,109,96,113,111,98,97,118,106,105,114,104,107,105,103,95,103,102,97,109,107,105,113,97,107,109,105,95,116,95,113,104,98,101,99,112,104,101,104,110,116,100,108,116,110,104,100,104,101,105,102,113,106,97,101,100,106,111,106,78,104,96,107,98,113,93,97,116,104,94,98,105,98,97,100,102,97,112,96,109,110,101,107,125,117,104,96,97,106,113,111,101,102,98,110,108,104,108,115,99,108,112,114,106,123,100,105,111,106,101,105,95,105,116,89,104,102,85,105,105,109,105,114,107,98,97,108,104,102,107,107,108,126,108,110,113,113,98,102,110,94,103,102,99,120,106,139,100,105,114,89,101,101,102,103,104,105,105,99,115,114,100,100,121,99,107,122,106,101,99,115,116,105,83,104,108,95,110,100,102,99,116,95,110,92,91,97,110,109,98,98,106,103,104,105,106,98,99,102,102,112,110,103,117,106,94,110,111,107,113,118,101,107,106,113,115,107,97,96,101,105,105,109,107,106,116,109,105,109,106,104,112,105,97,102,93,105,103,83,103,92,113,98,108,108,110,100,102,98,117,112,105,110,98,102,110,109,108,104,120,100,106,108,102,106,108,108,110,97,113,101,104,104,99,99,104,109,81,107,104,107,102,119,107,120,96,106,101,111,111,105,103,99,117,108,111,109,117,90,113,100,108,111,112,103,115,119,107,95,101,106,109,111,108,101,111,86,115,90,107,98,101,116,115,102,97,107,104,98,112,89,112,126,113,94,104,104,115,104,113,113,117,113,112,104,112,76,102,117,109,98,99,91,94,119,106,106,114,104,117,109,106,118,100,111,107,104,106,121,118,107,101,103,100,108,85,110,125,109,104,112,118,107,111,107,107,111,91,104,99,110,112,99,105,83,121,109,101,108,105,107,124,115,102,102,116,104,97,98,120,106,95,108,102,112,99,103,114,110,107,104,110,102,115,103,106,105,106,116,108,116,103,99,93,112,103,116,113,93,115,111,115,106,108,95,106,111,107,108,91,108,100,103,113,105,115,119,112,103,112,103,113,98,110,104,102,110,106,105,106,108,113,107,107,107,104,118,97,102,114,108,106,109,117,99,91,99,109,102,103,105,115,103,114,108,104,97,105,95,104,109,107,115,99,112,99,112,118,104,109,109,103,100,107,123,115,105,96,101,104,91,106,95,108,94,107,102,104,103,110,113,106,108,72,108,108,102,112,102,110,105,116,100,117,99,117,103,100,102,108,124,103,109,106,91,106,101,94,102,108,106,102,121,111,99,113,110,94,99,91,111,109,101,104,96,117,101,92,95,107,98,108,109,105,110,107,92,87,112,103,107,104,114,114,105,104,111,102,114,97,104,110,106,107,105,105,98,92,104,98,108,102,96,104,113,115,98,106,105,109,104,107,106,112,112,110,109,115,97,101,119,93,110,114,99,113,113,100,109,112,106,99,102,105,102,102,97,108,106,100,101,105,111,104,108,87,98,130,99,111,100,100,103,106,108,100,103,87,103,99,96,104,99,109,105,110,98,98,122,99,98,97,110,106,111,100,98,111,104,106,109,96,100,117,113,111,107,105,108,104,101,105,95,103,110,109,109,113,100,98,103,111,113,105,107,112,111,101,122,104,118,104,103,98,105,107,102,103,105,108,95,113,109,107,98,102,98,91,110,98,105,114,100,108,101,102,108,99,110,127,97,108,108,106,115,100,111,105,106,106,96,101,99,110,103,107,102,106,107,105,111,107,106,110,98,113,94,88,95,112,98,94,112,105,103,90,103,106,114,98,96,118,104,101,100,92,103,105,106,98,101,109,93,99,108,108,94,107,110,109,100,103,104,108,97,112,102,119,108,102,102,110,96,108,106,109,99,117,103,102,103,106,103,139,109,95,109,101,110,108,109,114,100,108,97,108,107,94,105,106,101,108,106,97,119,97,102,104,111,108,113,111,97,94,106,110,98,111,115,104,110,106,95,112,98,111,79,126,97,110,120,103,98,112,96,96,98,116,104,95,111,113,104,101,103,123,100,113,104,106,109,95,110,105,104,116,109,107,120,110,109,106,106,102,104,100,79,107,111,127,107,105,115,101,112,110,108,111,100,101,107,106,104,105,102,113,108,114,106,102,106,103,112,100,109,101,104,99,113,106,114,109,110,109,116,99,99,97,106,107,102,110,112,110,98,106,110,106,105,101,101,109,101,92,97,112,106,117,108,108,103,102,102,102,104,105,100,109,113,97,120,104,97,110,112,106,107,103,115,103,104,100,97,109,98,116,110,95,106,102,127,107,100,110,113,96,106,107,107,116,113,108,106,102,108,101,107,117,110,106,102,107,115,102,109,113,113,103,109,109,109,106,107,113,104,117,95,96,114,110,100,105,103,94,93,96,110,111,118,103,89,108,94,85,105,110,109,110,99,117,103,107,105,102,94,104,112,103,117,103,105,116,103,104,107,109,93,115,100,98,90,108,99,107,104,109,93,106,111,103,112,89,111,107,103,117,94,104,92,93,103,101,91,102,95,108,99,110,104,106,101,99,123,91,109,104,107,94,120,76,98,117,105,102,108,106,105,109,99,100,109,104,111,105,93,109,90,108,110,89,106,107,104,119,96,113,83,96,103,112,103,113,111,98,90,100,112,109,116,102,111,104,115,102,101,103,92,93,109,109,105,108,95,103,87,112,109,95,100,98,116,100,110,114,104,99,91,115,116,107,98,93,98,106,108,113,101,106,110,110,109,94,96,104,100,98,89,110,99,104,107,97,103,109,103,104,105,87,99,91,95,104,107,102,90,108,97,104,89,97,90,101,110,121,98,103,99,108,107,115,97,123,88,98,101, +540.84167,95,100,95,98,115,104,108,103,99,109,95,105,99,96,103,84,89,96,107,100,107,104,98,102,109,99,112,118,108,109,104,96,108,98,103,101,91,95,79,99,109,101,103,103,105,106,102,103,100,109,95,99,97,116,110,115,97,96,105,91,98,96,100,99,105,101,99,96,108,102,94,112,93,121,88,110,108,93,105,104,112,108,104,100,96,115,95,102,111,97,107,102,97,96,99,94,104,99,105,102,110,98,103,104,101,101,88,94,97,112,111,98,91,106,101,98,91,68,105,101,98,101,108,110,101,108,110,93,105,104,97,95,99,115,105,102,107,109,102,99,101,102,94,97,103,95,103,104,102,95,109,93,94,101,88,98,107,96,94,90,105,106,109,101,112,122,92,106,95,101,107,106,96,89,98,106,109,96,116,109,93,106,117,105,104,96,98,88,101,95,101,101,106,99,115,103,105,101,134,101,101,93,108,110,113,106,109,101,115,113,98,111,98,111,93,115,89,116,109,103,113,99,103,108,99,106,100,112,112,116,97,102,106,110,100,112,97,106,112,120,106,102,121,113,101,97,103,99,106,113,113,99,104,112,105,125,106,103,95,118,98,98,106,106,99,100,91,97,103,101,98,111,109,107,107,100,115,109,99,94,98,109,98,96,105,103,92,97,102,99,97,85,123,106,96,104,98,103,63,109,95,106,94,105,98,113,101,108,106,100,97,103,106,92,106,103,104,102,83,116,101,112,100,107,112,109,109,87,103,106,107,109,105,104,114,108,112,102,98,102,100,90,99,103,113,118,112,108,109,98,116,104,105,111,110,106,106,108,111,104,105,107,93,104,133,93,97,103,108,109,103,119,105,109,112,102,116,108,113,100,109,95,100,101,104,106,107,91,102,113,111,110,101,95,121,105,99,101,112,97,113,102,108,108,91,96,106,102,108,115,98,104,91,106,101,107,108,101,111,106,102,109,96,108,99,100,108,93,100,109,95,106,108,102,110,101,103,85,109,105,106,112,121,96,106,78,99,100,100,103,96,96,104,104,106,118,95,109,104,97,108,109,107,98,96,99,101,103,85,103,98,102,101,111,108,99,105,121,103,87,100,107,111,95,110,95,99,103,116,108,107,103,107,94,108,100,113,101,110,112,121,101,94,108,103,99,106,91,101,103,92,111,100,102,104,110,108,94,114,107,99,95,106,100,94,78,109,103,117,96,102,109,103,103,106,99,114,97,121,98,98,102,108,107,107,104,119,91,111,110,102,94,104,104,102,112,114,95,95,113,101,99,108,106,101,118,104,97,108,102,106,97,106,105,92,105,99,93,107,92,113,103,99,116,102,105,112,104,112,113,113,109,97,96,101,114,100,118,114,103,110,122,93,101,104,88,104,102,116,105,112,104,102,105,113,101,109,101,110,103,110,105,106,102,98,95,110,94,102,109,109,105,99,99,106,109,106,106,107,112,102,96,109,98,108,99,102,105,110,100,111,104,100,106,99,119,86,117,108,106,116,95,100,106,102,95,106,103,100,120,117,108,106,86,101,107,109,109,112,104,108,101,123,96,102,110,97,104,109,96,112,104,116,106,101,113,103,99,96,98,102,99,88,105,100,97,104,107,93,101,109,99,99,102,77,104,98,109,100,100,105,97,112,113,97,112,101,108,95,98,97,102,99,99,113,109,110,89,97,97,98,119,109,107,93,116,99,105,116,106,103,87,100,100,105,103,105,100,110,108,102,99,103,97,103,101,90,91,97,97,96,99,102,92,98,109,105,111,104,85,89,108,98,105,76,105,107,109,99,121,98,110,121,106,100,139,97,127,94,101,99,112,105,104,90,107,113,100,103,111,115,96,104,104,108,107,121,113,101,93,107,99,103,97,103,117,109,94,102,104,118,96,117,109,100,100,113,106,107,107,101,103,109,101,96,104,100,107,133,107,98,107,100,104,102,103,103,108,120,103,92,106,101,117,96,100,100,102,117,106,106,106,115,106,107,100,103,106,103,104,107,104,99,109,97,100,97,107,118,100,99,110,100,95,103,100,103,110,108,108,99,110,103,102,86,115,101,100,108,106,98,110,107,96,107,106,100,111,110,108,88,99,99,107,121,103,110,100,99,106,104,106,101,117,91,109,112,95,91,103,109,106,104,100,109,98,99,120,110,105,89,91,96,103,100,92,108,104,110,102,112,110,113,98,120,109,97,103,98,117,98,125,114,109,113,109,100,102,109,94,100,87,108,112,100,108,111,96,98,110,93,98,107,108,107,95,110,103,95,101,105,87,99,117,96,102,92,128,100,112,108,101,113,111,109,92,108,104,121,112,113,101,107,94,103,109,100,105,116,115,101,101,118,108,99,94,104,105,112,100,103,112,91,114,113,100,99,125,108,104,103,114,107,105,102,113,90,106,96,112,109,107,105,108,99,96,113,98,98,100,97,96,114,92,97,111,97,108,116,94,108,116,90,100,136,117,105,103,107,84,118,114,114,97,119,107,121,104,100,105,107,104,106,120,119,105,100,97,103,108,115,101,96,104,100,105,101,99,100,107,112,104,103,108,109,99,102,98,111,100,110,104,107,105,91,107,92,88,104,107,110,89,109,100,119,100,105,106,107,110,113,100,110,96,113,105,109,102,105,100,109,94,120,97,112,115,95,101,107,114,107,104,119,100,109,94,109,99,113,114,113,111,98,115,97,91,92,101,97,110,106,99,108,112,100,128,100,86,109,110,103,107,112,110,99,111,102,105,106,92,122,111,99,123,99,104,111,110,101,109,105,113,94,104,98,114,99,108,106,104,105,110,99,115,94,117,113,108,116,107,117,110,102,106,124,105,116,113,114,113,107,114,123,92,98,90,117,109,108,105,126,106,113,116,121,107,107,95,98,106,117,108,112,109,102,78,106,101,96,109,101,96,124,104,96,98,105,108,119,102,106,111,101,101,102,109,115,88,108,99,103,103,102,110,108,104,89,105,98,110,102,105,113,94,109,117,92,98,103,102,107,112,103,107,109,98,96,98,107,102,107,105,101,108,105,118,120,104,103,99,112,110,111,110,99,106,122,100,110,108,94,100,108,96,100,99,108,76,99,105,107,107,102,98,117,99,92,100,96,104,99,107,102,106,105,109,95,101,100,111,74,101,96,115,102,103,112,87,107,101,99,98,106,107,106,99,105,99,123,98,110,94,93,102,95,103,115,111,117,109,92,113,104,94,102,105,79,107,98,99,108,112,100,109,101,98,109,91,111,100,86,98,117,114,117,107,107,72,99,91,94,101,112,114,112,122,91,106,101,92,101,91,106,106,109,95,96,103,108,103,104,94,109,106,98,95,87,101,109,89,101,110,103,114,113,104,99,109,117,104,112,105,111,101,115,100,98,106,107,96,102,113,106,107,103,100,92,98,95,126,104,97,109,112,99,96,104,98,111,95,97,98,106,95,99,95,98,111,105,116,109,103,104,106,111,95,99,111,103,89,105,98,91,92,104,107,112,112,112,88,104,112,107,102,113,101,95,114,102,104,115,104,100,111,102,81,102,117,101,116,94,103,109,112,108,111,95,100,109,101,104,92,102,99,103,101,91,103,104,92,99,103,110,112,104,107,105,112,102,104,99,100,110,100,102,109,105,111,105,113,109,111,108,99,80,99,103,104,66,97,99,107,82,111,109,112,117,120,107,102,101,106,108,108,100,105,106,89,106,111,105,113,108,101,97,103,105,109,102,101,103,105,110,97,105,105,97,107,115,99,99,91,102,102,107,108,100,99,106,104,99,101,95,99,109,101,100,105,108,109,98,102,110,95,105,94,111,109,101,117,108,87,110,89,102,96,97,85,111,109,93,105,102,102,102,95,107,113,103,83,99,111,103,108,112,100,103,104,110,107,112,101,109,112,118,99,104,88,112,108,92,96,102,105,110,106,109,102,118,92,98,93,120,124,115,120,109,105,111,110,106,108,94,108,95,97,108,101,96,107,98,106,96,98,103,104,104,100,103,112,118,100,100,103,109,98,102,98,104,97,109,116,106,104,100,97,99,91,102,106,113,103,91,111,119,111,102,108,104,104,99,99,114,102,94,99,112,106,105,103,109,103,103,110,97,106,104,106,92,100,98,98,105,99,106,105,108,103,111,103,114,108,105,106,105,111,106,109,119,100,101,103,105,102,102,102,111,103,103,99,113,113,110,99,102,107,106,98,110,97,103,106,100,117,104,107,108,111,134,103,116,107,106,107,103,99,104,114,92,104,90,101,120,107,107,104,105,99,116,89,107,104,108,105,108,97,102,95,97,103,98,106,110,121,102,107,102,112,103,118,111,104,95,107,107,105,98,103,110,103,121,101,115,108,104,90,112,99,104,111,102,98,99,103,87,110,112,111,101,106,95,109,99,96,120,117,96,100,109,88,101,134,108,106,87,102,114,105,109,91,119,121,100,103,103,111,105,100,104,99,102,118,97,102,103,95,105,100,108,97,102,103,104,105,109,105,108,106,94,87,111,92,93,103,103,100,86,110,102,102,93,92,102,101,103,103,110,105,92,105,102,97,109,103,103,88,107,103,111,106,108,110,107,99,109,108,103,104,97,109,102,92,113,119,106,100,113,95,107,106,102,110,106,105,103,107,111,99,106,107,112,91,104,114,119,100,102,99,94,107,102,108,109,113,95,101,93,109,96,98,103,96,108,99,102,104,76,102,102,93,118,109,102,105,103,103,107,100,103,99,101,104,99,102,103,115,119,113,101,107,113,102,103,103,107,106,109,102,100,101,107,97,107,95,96,116,110,94,95,115,99,79,113,107,107,99,100,94,100,107,100,91,108,92,100,106,103,97,114,117,103,98,112,95,93,108,96,95,112,87,106,126,103,90,96,98,94,115,99,75,112,115,94,91,100,102,121,112,101,103, +540.98248,86,97,86,111,95,101,106,100,100,86,99,88,105,109,92,78,79,107,106,102,101,97,97,118,101,112,103,104,98,105,103,97,104,110,100,98,102,101,114,102,93,110,99,103,102,111,94,126,109,104,102,104,91,98,97,97,102,94,103,98,117,104,107,109,111,106,100,101,101,103,102,97,102,100,95,96,78,112,105,99,103,104,109,103,98,101,109,99,103,98,91,105,104,99,118,96,109,104,105,107,104,102,109,106,125,97,96,107,103,90,117,103,115,88,108,109,100,112,102,97,102,104,111,105,114,102,102,100,110,110,104,113,99,84,100,98,102,90,99,114,104,110,102,87,95,108,109,95,94,100,101,110,103,109,107,120,108,102,115,96,100,95,106,105,99,99,90,109,100,103,105,108,115,110,98,109,107,88,111,98,106,106,98,111,100,100,96,73,105,107,101,100,100,113,105,105,104,111,106,116,103,104,103,100,104,104,95,110,106,116,98,103,112,100,112,113,94,105,105,109,102,103,106,100,92,104,97,109,115,112,100,112,101,108,104,98,108,102,103,105,102,107,97,111,104,110,102,106,104,101,105,107,104,113,101,110,102,103,110,118,102,110,104,94,104,109,121,109,102,103,107,111,104,110,103,109,101,104,106,108,107,120,107,99,102,106,102,88,98,104,113,103,117,102,115,106,105,110,93,93,108,106,95,113,105,110,100,107,109,115,99,105,92,97,96,103,108,109,115,109,105,91,99,117,101,95,100,96,121,114,107,108,119,110,111,100,102,105,109,104,99,134,101,101,113,101,110,105,103,114,103,102,98,96,105,103,85,104,116,103,98,97,72,99,94,98,104,103,104,104,112,96,104,99,114,102,106,97,111,101,110,99,96,116,103,98,100,91,113,130,109,102,104,103,94,98,114,110,100,108,116,90,102,95,117,94,99,115,99,110,101,99,110,109,109,113,108,90,94,113,105,96,104,109,97,97,105,98,91,95,102,130,107,106,121,90,103,116,103,93,114,99,108,103,114,108,98,105,125,106,104,117,113,110,94,106,103,114,108,109,102,102,101,100,100,106,112,113,113,101,104,107,97,90,113,113,103,112,100,110,101,131,105,96,98,102,113,106,105,96,103,103,102,99,99,108,105,105,106,97,101,103,108,103,97,92,98,108,105,95,106,102,115,110,103,108,113,113,92,109,109,108,91,103,96,105,118,105,104,107,102,100,97,111,98,105,119,102,106,106,101,99,98,113,117,98,112,106,105,107,94,109,110,95,97,94,117,109,96,105,96,107,103,91,99,108,101,112,99,100,103,104,114,102,96,93,109,98,102,107,100,111,111,103,100,103,99,113,107,96,102,101,101,99,109,92,84,110,98,106,106,108,92,83,117,104,97,104,103,116,96,109,106,120,104,104,107,101,110,111,113,98,91,94,118,101,102,110,98,93,100,111,113,116,95,111,104,102,106,103,108,108,107,105,106,105,102,106,100,105,99,108,110,103,107,93,111,98,109,107,105,98,113,104,102,122,107,98,113,114,108,104,105,103,103,108,105,105,109,108,108,115,103,104,104,100,114,97,110,112,107,99,97,95,101,101,84,97,105,94,91,105,122,100,106,119,105,101,105,97,116,119,99,77,90,69,101,105,109,101,105,107,107,116,104,106,112,107,108,119,95,92,101,95,103,90,110,113,113,105,109,107,118,107,105,110,104,107,102,102,106,106,101,113,113,105,104,87,119,93,109,113,111,106,115,102,108,100,95,104,104,109,118,112,97,101,121,100,107,100,120,102,104,99,99,114,109,110,105,122,98,107,115,113,104,102,114,106,97,108,99,103,103,98,106,96,107,109,99,110,110,101,104,86,115,101,108,98,103,109,100,97,103,105,99,102,112,104,105,103,111,87,104,110,95,101,90,99,105,97,98,108,121,100,99,100,99,113,82,95,113,95,106,113,121,104,101,104,115,118,108,105,107,121,108,91,106,82,101,97,106,109,102,103,86,103,113,99,104,109,103,108,101,103,95,107,94,105,110,106,93,99,105,110,97,102,109,87,101,103,113,103,100,99,112,105,97,102,94,104,95,113,96,104,106,108,92,101,116,103,105,103,105,114,100,106,113,90,105,107,108,107,108,107,105,102,94,96,102,106,112,101,114,113,106,106,102,93,107,108,99,118,71,100,107,101,117,113,113,102,111,110,104,91,102,99,106,97,111,102,83,112,102,104,106,101,105,98,104,92,91,102,115,99,110,104,104,104,97,97,95,91,113,120,100,97,88,91,109,115,99,100,102,101,101,95,105,97,82,111,92,90,108,117,94,64,100,101,119,116,110,122,111,103,94,129,122,98,107,109,106,103,110,97,115,105,104,96,110,105,104,110,104,106,113,106,111,100,86,95,114,108,105,124,113,104,107,99,120,113,72,95,109,100,104,111,95,106,90,99,90,103,98,107,105,109,100,106,101,91,96,104,105,104,118,105,114,101,117,109,103,107,92,102,97,98,108,101,111,118,107,98,109,105,111,102,105,102,109,103,101,107,105,103,97,99,98,104,115,111,103,114,103,116,123,105,92,107,126,103,98,105,115,104,104,106,109,103,114,108,112,104,100,108,95,106,116,113,108,107,110,106,104,116,102,106,104,113,122,100,101,104,110,98,117,107,99,105,113,105,101,105,106,109,103,99,98,98,106,111,84,107,100,108,108,116,110,116,102,111,100,117,112,103,115,95,114,98,108,103,117,103,102,96,106,107,91,112,109,109,98,107,109,116,103,105,94,112,108,114,112,108,108,106,114,87,92,101,103,109,105,87,106,105,87,102,110,112,113,104,115,88,108,103,112,107,104,109,92,120,106,113,112,109,115,105,98,115,112,116,117,102,101,120,116,99,107,113,104,106,113,108,102,110,116,106,107,104,113,110,104,105,102,99,103,95,106,103,103,106,102,104,110,97,100,101,108,95,113,122,105,99,99,117,106,99,106,116,108,104,109,106,106,69,107,121,114,97,97,111,110,113,107,105,106,115,116,97,105,106,106,112,103,113,98,113,116,86,103,103,93,77,113,102,100,107,107,107,117,102,104,113,87,113,105,105,117,111,106,101,108,106,100,114,109,97,104,103,125,109,92,105,92,103,110,109,107,104,107,101,108,104,97,107,117,100,95,100,110,100,92,102,111,99,116,111,112,94,114,100,96,105,104,102,113,115,130,102,104,101,101,111,109,98,103,111,107,105,106,113,125,98,93,98,94,106,109,110,109,101,83,114,119,115,97,99,100,109,117,127,121,102,107,109,98,119,99,111,110,107,101,99,102,102,99,117,100,117,103,108,111,104,108,105,98,113,105,99,108,95,101,94,99,107,103,92,103,104,121,102,110,108,108,100,105,99,110,99,83,103,119,103,94,104,96,104,99,98,108,103,96,102,108,116,115,100,108,102,116,99,108,108,118,105,100,107,109,107,100,108,100,128,99,92,107,111,119,118,99,94,124,106,96,98,96,116,111,108,110,101,103,106,104,112,108,114,113,110,107,106,106,95,108,113,110,112,103,105,93,108,98,102,108,109,137,109,84,102,119,122,106,93,98,116,103,108,100,102,101,111,105,102,100,100,103,97,108,109,107,124,94,113,109,91,108,87,102,110,99,112,110,118,109,99,107,101,104,99,106,110,105,114,110,104,106,105,110,111,99,95,103,113,103,96,87,100,102,101,117,106,104,92,105,111,114,97,114,96,91,103,100,105,110,105,110,103,114,106,107,97,103,96,100,104,109,93,107,109,111,102,98,100,110,106,116,104,112,99,107,71,117,108,97,101,110,103,118,104,98,96,116,103,115,114,102,112,103,94,105,115,97,100,95,96,101,109,102,108,107,92,111,95,97,106,103,88,104,121,96,92,101,106,104,101,113,99,108,107,100,97,107,97,106,101,110,107,101,100,110,94,109,108,113,108,111,102,99,113,105,110,98,101,107,107,88,104,103,93,94,113,113,103,91,104,118,109,107,107,110,119,103,100,106,100,115,104,107,115,124,117,105,101,100,92,119,112,102,100,110,104,112,103,100,100,106,116,114,107,111,101,96,100,107,102,110,132,102,105,107,116,103,105,92,102,112,103,99,109,104,110,108,114,100,111,106,135,117,117,111,102,106,101,109,104,112,103,102,107,108,108,102,109,101,98,106,101,109,105,111,103,106,100,113,128,108,108,105,118,111,106,105,109,110,102,88,104,101,95,102,113,115,103,111,109,101,109,99,119,101,93,114,120,114,114,110,88,104,99,99,95,102,104,113,103,97,109,77,96,101,107,98,109,103,108,106,92,109,98,104,101,112,105,115,104,107,108,103,117,101,111,105,91,103,106,116,105,118,113,101,101,100,122,119,107,106,104,76,116,105,91,105,108,105,98,112,96,109,118,108,114,115,98,103,116,100,111,95,102,112,99,109,107,111,103,96,109,101,102,104,109,107,109,103,100,105,95,113,109,105,101,113,99,106,110,98,104,103,106,102,111,104,104,97,106,109,95,98,100,100,111,98,107,104,118,111,113,102,118,103,104,103,109,109,102,103,99,102,119,106,107,99,110,107,100,108,112,103,105,105,83,100,101,108,100,96,101,103,109,94,120,106,106,102,116,108,113,105,101,102,139,115,102,103,102,99,102,106,105,98,105,126,100,95,112,104,106,91,99,101,100,98,95,108,103,106,101,115,104,106,100,111,116,101,99,127,99,102,101,107,100,101,111,99,108,106,107,97,113,106,97,105,100,102,109,107,106,108,114,101,92,100,104,120,113,109,104,107,98,94,115,104,106,101,108,124,107,113,91,88,106,109,107,96,82,115,110,111,104,95,107,109,111,88,104,97,94,105,94,104,91,92,109,105,102,116,110,100,106,105,95,96,103,102,101,99,125,109,106,110,85, +541.12329,111,110,120,93,100,126,99,104,108,116,125,88,99,102,107,89,96,94,100,115,108,94,103,102,95,103,94,107,105,104,98,98,113,105,96,112,104,104,107,100,93,101,84,96,101,103,98,100,106,101,101,96,92,99,101,97,115,89,107,80,109,97,98,100,100,96,88,114,98,98,90,106,104,105,101,101,89,108,99,106,126,93,118,106,117,96,77,101,104,96,115,105,101,106,68,102,102,124,104,91,126,106,104,97,99,95,97,111,103,101,100,109,101,110,88,121,95,103,75,95,101,105,102,97,108,101,99,92,104,114,88,104,84,100,89,106,104,101,95,108,93,102,90,104,101,92,108,90,114,99,96,108,93,92,102,111,92,97,118,106,105,117,108,104,98,101,97,101,107,99,108,110,90,109,98,111,112,105,99,108,103,102,97,115,121,91,91,94,111,100,93,104,98,97,100,100,96,103,102,103,96,97,114,111,93,110,103,108,113,108,90,105,106,107,108,103,100,110,104,109,108,109,103,97,100,102,78,107,103,103,105,114,99,110,95,93,92,106,110,97,94,95,112,115,100,93,99,100,121,107,101,117,105,114,108,105,114,105,99,98,106,99,98,94,87,114,99,95,105,101,90,111,101,100,104,106,104,97,103,94,113,77,115,110,105,111,103,93,98,108,103,108,100,103,110,111,95,111,103,112,99,109,97,109,97,108,113,106,97,110,99,96,114,94,98,109,105,103,85,102,91,103,110,109,98,108,100,95,107,118,104,104,103,99,103,103,114,106,97,106,98,95,101,109,104,99,103,111,108,98,99,101,105,100,121,103,95,103,105,107,108,109,105,98,105,100,107,112,111,107,108,100,111,103,98,98,119,102,107,110,112,105,103,113,98,102,100,113,109,104,100,99,100,108,104,88,107,112,103,111,109,94,99,86,125,105,99,109,102,96,95,102,112,117,95,99,101,96,103,109,103,104,91,121,121,106,110,93,94,111,99,102,98,95,93,100,106,108,104,117,107,99,105,106,90,114,104,95,106,99,105,106,102,119,109,110,109,109,99,91,105,105,112,98,107,103,100,113,116,101,106,113,113,97,98,104,116,104,116,108,102,100,112,107,90,100,117,115,107,101,105,108,107,95,98,110,95,99,102,106,96,100,94,102,105,92,94,104,104,105,105,120,110,94,110,102,106,101,98,100,101,100,106,102,98,109,103,104,96,122,107,100,100,105,106,113,95,92,100,98,105,102,99,104,104,77,87,104,109,117,106,91,99,106,97,99,106,105,112,87,100,107,102,103,107,110,98,109,102,107,101,93,106,120,109,108,100,108,108,102,112,104,116,118,99,108,110,130,107,101,97,96,104,102,111,106,111,102,98,95,102,115,100,99,106,97,114,110,102,112,109,103,106,93,109,92,105,105,110,92,109,108,97,118,106,100,110,110,114,107,96,104,83,108,97,113,114,102,115,98,103,101,113,95,101,100,102,105,102,102,104,95,101,111,92,100,117,100,106,109,95,100,126,98,110,111,118,99,94,105,120,107,105,107,99,99,107,103,102,99,110,107,109,105,102,102,87,110,105,109,118,105,107,114,112,115,108,104,110,106,111,100,102,97,101,104,102,112,99,108,104,99,112,115,100,98,105,99,106,106,100,112,114,96,104,110,107,118,95,107,103,98,97,105,103,108,106,96,104,96,115,116,103,104,96,109,95,108,105,98,104,104,99,95,103,113,108,106,107,106,106,101,113,105,81,108,102,108,84,85,97,113,110,105,103,111,115,107,106,105,92,115,106,111,113,113,97,92,104,104,102,101,108,105,95,113,101,105,103,129,103,106,100,113,106,109,112,106,104,104,108,90,105,105,110,101,105,101,104,132,96,109,116,107,105,104,96,102,109,98,111,122,101,97,114,105,104,107,100,109,88,107,104,101,102,114,102,97,106,101,89,81,109,101,98,115,100,101,106,116,113,103,96,100,111,94,95,102,111,107,110,97,112,103,101,110,108,101,104,106,105,105,101,108,104,102,112,105,98,107,100,115,110,116,113,109,100,103,102,111,100,109,103,103,94,100,107,111,109,114,99,113,83,99,112,94,85,108,103,90,110,105,104,92,100,124,105,117,117,103,105,119,108,109,108,109,95,104,104,104,88,102,119,107,119,114,108,106,106,105,110,119,102,121,110,86,98,111,105,106,95,115,108,97,101,104,101,109,117,109,107,104,102,100,109,103,102,106,104,102,98,99,103,98,70,105,108,91,101,95,115,103,113,101,96,108,95,96,108,119,100,96,104,96,94,107,98,114,105,106,103,108,104,112,108,107,99,102,96,103,117,125,111,103,107,109,101,88,102,101,105,107,111,102,112,89,103,117,111,114,104,101,103,110,92,107,107,108,102,75,92,118,125,116,85,108,110,107,97,114,109,105,104,114,103,102,111,103,110,67,101,110,98,122,99,107,104,101,113,83,103,123,82,102,97,101,104,97,112,104,100,92,96,92,98,101,106,106,98,100,107,94,99,100,108,112,110,100,107,83,121,108,98,109,109,112,100,108,102,101,107,102,101,98,113,115,105,102,104,98,99,103,108,97,114,121,108,104,105,94,99,95,92,102,98,101,108,98,109,103,105,109,110,112,110,100,104,97,107,105,97,95,108,103,95,112,95,95,107,103,97,91,101,98,90,114,98,100,106,104,97,100,98,109,96,102,108,108,108,100,102,100,121,107,102,100,95,108,105,88,108,111,91,99,104,108,128,100,109,97,112,104,111,105,97,110,101,98,101,108,111,105,106,105,95,99,108,106,99,87,105,102,104,98,117,94,108,107,110,105,105,92,99,94,111,105,96,106,103,113,104,100,99,106,105,104,109,113,103,116,116,94,113,104,127,101,101,107,94,106,98,103,100,104,106,100,92,97,101,103,100,102,101,95,101,101,101,103,102,95,106,119,95,96,114,121,108,113,106,107,96,109,98,113,95,99,92,103,91,102,102,100,98,98,100,116,102,114,104,106,94,98,101,124,112,105,110,106,104,113,97,96,111,102,105,100,100,102,100,104,88,102,108,95,93,115,111,95,106,88,106,105,92,105,113,97,107,88,104,101,112,105,102,102,109,101,113,91,102,103,103,112,102,107,108,104,115,111,106,105,93,107,102,112,91,93,111,95,101,119,104,105,107,104,94,111,104,99,99,98,103,104,104,95,96,96,101,105,114,86,101,120,106,98,105,105,102,108,87,103,102,114,97,97,112,101,116,108,100,106,107,106,109,108,104,101,113,104,92,107,108,100,113,111,108,95,99,98,100,102,100,103,95,99,104,104,106,100,102,116,110,106,92,96,87,96,92,95,100,111,104,110,107,95,105,106,103,104,102,98,102,104,115,111,110,98,110,111,112,94,107,104,109,108,97,105,110,98,95,104,94,96,100,142,92,101,106,98,106,108,100,103,117,104,104,100,109,97,108,103,103,126,98,88,89,103,96,102,100,98,124,103,104,101,95,102,91,100,111,98,102,103,105,106,104,107,104,114,103,101,109,106,109,105,102,99,110,75,89,104,109,105,104,102,98,93,100,106,105,96,102,101,98,88,109,100,102,105,90,98,100,97,102,111,99,107,104,98,109,106,104,98,104,113,98,96,104,98,100,109,107,102,103,104,103,92,93,105,108,107,96,89,107,93,85,102,100,106,105,101,109,95,99,114,97,100,98,107,103,102,96,110,98,107,97,108,97,101,98,97,101,112,107,100,99,105,100,105,108,101,104,96,98,102,105,91,102,96,99,113,107,93,91,107,98,89,97,93,107,112,105,106,99,104,108,122,113,108,100,113,106,100,103,103,117,109,103,79,93,101,85,104,95,111,93,97,105,100,100,100,92,97,126,103,72,102,96,95,106,105,98,103,97,103,111,96,115,102,115,95,87,121,110,97,103,94,104,95,99,105,98,103,106,105,104,104,101,93,109,117,99,110,82,106,97,95,98,96,101,97,106,96,117,98,107,106,103,98,104,103,100,101,101,113,105,101,101,90,94,104,97,96,107,117,102,101,99,88,102,107,108,101,89,100,105,117,99,94,110,106,111,107,111,95,104,100,99,99,108,116,104,100,108,106,104,115,106,109,105,99,95,102,100,119,98,89,91,74,115,97,99,94,93,88,111,104,103,98,101,101,105,105,101,88,109,103,85,101,100,111,110,109,106,100,102,100,107,103,100,104,111,103,101,101,83,96,102,110,97,97,115,93,109,119,100,107,102,108,117,99,98,93,107,109,98,99,107,105,104,88,101,107,110,96,106,99,106,97,95,100,117,105,107,106,107,105,105,91,109,108,105,117,120,109,93,104,97,100,95,100,105,93,110,103,96,100,107,109,102,106,102,101,96,96,90,106,102,106,104,100,97,105,103,99,115,102,102,102,101,108,100,119,106,107,106,105,104,104,100,103,98,109,99,103,104,93,100,109,101,107,90,112,106,95,96,87,93,98,99,99,102,93,95,103,97,107,102,107,86,96,85,102,100,97,100,103,104,102,98,90,95,113,106,90,107,100,98,104,102,104,102,114,109,100,104,108,113,104,102,107,109,107,100,97,104,103,108,102,104,104,109,112,110,104,99,90,105,92,98,103,109,95,107,97,104,104,104,77,99,97,95,92,103,96,106,109,107,93,117,105,99,104,100,104,99,96,102,97,102,102,107,98,106,97,79,99,111,109,91,103,96,104,106,108,108,112,108,98,99,96,108,83,96,113,97,106,106,97,76,101,109,94,123,108,100,106,79,101,102,116,93,96,101,100,105,100,115,98,95,103,100,111,98,93,108,111,107,105,95,104,121,104,106,79,102,106,96,103,104,90,111,102,98,106,80,100,109,108,100,98,90,119,100,100,112,87,102,105,103,109,103,93,102,106,98,102,101,95,97,99, +541.2641,113,94,89,105,93,108,105,126,101,97,102,90,101,107,97,109,116,101,109,113,100,103,80,104,110,101,109,108,105,112,112,104,118,102,116,109,113,105,99,106,99,100,129,101,113,99,106,119,93,104,106,97,105,106,103,101,83,107,97,109,106,94,113,99,99,106,113,114,104,96,124,104,111,107,105,110,113,119,118,101,95,107,117,101,99,99,113,103,100,108,90,112,108,112,100,107,87,100,100,100,103,100,102,98,109,100,100,100,103,103,99,105,104,117,98,108,95,114,101,101,106,105,112,104,103,105,106,109,107,112,110,112,100,107,115,108,99,121,107,95,93,113,110,102,88,109,111,102,101,95,102,117,100,104,107,97,110,103,104,110,106,105,114,107,95,102,105,97,99,107,99,104,97,103,104,107,95,108,106,104,105,113,109,107,95,109,109,98,100,100,98,109,103,101,114,108,110,106,109,110,101,101,95,102,101,105,100,94,113,106,103,102,113,106,100,105,101,99,109,105,107,118,106,104,104,105,101,109,96,106,99,110,111,104,108,111,110,104,107,110,99,99,130,114,100,110,110,101,106,83,107,101,91,109,89,108,95,101,98,112,102,104,106,101,100,125,109,104,106,98,107,102,97,104,117,93,98,112,99,93,121,101,112,108,103,110,95,98,109,107,105,109,105,103,107,108,110,106,82,103,91,103,109,102,105,101,112,107,110,103,105,115,100,110,103,105,103,108,109,99,112,112,100,112,112,101,98,105,108,108,86,100,108,98,94,114,86,112,109,109,114,113,106,107,113,104,111,104,113,104,107,103,107,107,114,104,103,107,103,102,124,102,104,104,103,94,109,112,106,109,106,109,120,97,104,100,110,102,72,99,107,106,96,111,108,109,100,100,110,97,107,107,109,112,100,96,100,102,108,113,110,101,101,98,109,102,109,104,106,113,108,91,113,111,109,109,112,107,96,113,96,117,93,106,99,104,114,105,113,113,96,100,103,106,113,109,112,126,101,106,104,99,103,95,93,97,106,102,102,118,96,104,105,101,110,99,89,99,102,107,113,111,113,105,111,104,118,101,113,105,127,101,114,114,111,96,103,106,98,113,105,110,121,111,98,95,111,117,117,112,99,107,112,102,101,108,106,100,103,105,121,99,112,114,106,110,91,104,104,97,119,113,97,100,101,109,114,95,105,100,105,104,108,104,112,101,106,107,110,103,90,106,102,105,112,110,104,100,106,95,105,107,100,110,106,103,102,103,103,107,111,80,87,113,102,95,120,113,104,105,107,101,105,105,99,105,110,104,92,109,101,97,106,104,121,117,98,101,113,113,122,100,97,96,110,110,114,102,111,111,107,104,103,107,113,120,100,109,101,100,109,104,108,100,107,108,109,103,106,104,100,98,107,101,127,121,99,98,106,102,96,100,100,95,110,94,100,106,106,94,95,109,102,106,110,110,103,108,104,102,117,100,103,95,96,83,104,112,107,105,100,106,99,109,109,106,103,110,103,107,111,98,116,103,96,103,101,107,102,104,122,105,104,96,95,100,95,108,109,113,102,101,99,137,107,100,106,100,120,105,101,102,97,118,114,102,98,107,106,96,108,89,107,115,118,100,101,106,102,101,101,97,94,105,101,107,103,110,122,85,113,111,109,116,103,106,105,113,106,111,111,102,101,107,97,104,106,106,103,103,112,108,102,104,114,102,110,102,105,117,107,108,102,101,116,95,95,106,125,109,100,109,99,107,96,106,102,102,104,97,106,107,107,117,100,104,112,105,97,101,113,105,108,103,114,131,120,95,103,117,122,108,108,102,111,107,103,109,97,106,106,116,112,105,101,106,105,113,120,95,112,112,104,97,110,104,116,100,96,96,100,113,106,107,111,102,116,99,117,103,101,108,107,100,106,110,99,109,99,109,91,104,106,104,100,104,108,102,106,77,102,90,107,98,94,103,101,103,112,109,110,104,111,100,103,104,96,99,103,102,104,113,112,104,94,101,104,105,95,103,95,99,107,113,92,110,90,108,103,102,100,86,104,108,107,102,99,106,109,105,103,109,109,99,118,100,104,109,100,93,107,104,107,106,105,91,108,106,107,105,111,103,107,98,107,125,97,130,112,112,101,84,104,111,101,102,100,102,117,112,91,106,115,113,111,105,116,112,124,113,110,108,110,115,109,99,102,109,115,121,103,108,105,107,105,104,117,108,103,113,95,120,104,117,106,95,102,92,105,107,106,109,99,99,98,112,100,124,112,104,96,101,86,102,116,99,103,109,101,108,98,115,93,93,115,104,101,101,94,115,90,102,98,106,111,102,107,103,109,112,115,113,118,107,116,95,106,118,115,114,112,92,113,105,102,106,103,111,103,101,111,103,102,114,118,95,109,108,106,110,113,122,108,109,113,121,114,103,117,93,112,101,100,103,108,112,97,105,98,92,95,118,109,95,97,109,97,116,92,100,98,98,112,114,115,114,112,102,111,98,115,101,105,104,103,99,96,106,106,94,101,93,110,103,97,108,105,103,110,95,99,108,109,112,99,109,117,93,103,86,101,100,100,106,107,95,103,106,91,99,108,112,103,87,107,109,101,108,102,106,100,103,106,114,107,103,103,102,110,116,112,112,104,101,106,107,98,108,109,87,109,105,95,95,102,103,105,102,116,98,105,96,116,99,91,103,110,104,103,117,111,99,104,108,103,141,116,108,102,105,106,102,101,114,107,109,101,95,113,110,98,106,106,101,107,103,110,108,104,105,92,104,94,104,103,106,96,112,98,102,106,110,97,107,101,111,111,102,105,105,95,105,111,108,107,98,117,107,104,115,114,106,107,101,103,99,102,100,102,115,104,109,108,109,68,97,113,102,99,109,116,114,104,107,107,105,96,90,112,100,99,102,95,102,103,117,88,100,101,115,104,102,101,99,98,110,105,116,103,108,96,112,112,114,105,113,100,99,107,100,101,123,102,103,102,96,101,101,103,116,102,105,105,106,120,117,96,116,100,100,124,99,107,100,112,106,106,111,100,108,102,102,119,102,106,97,109,108,97,109,95,115,112,105,109,111,117,109,109,113,101,116,105,110,93,102,107,95,103,99,135,110,108,104,114,101,102,98,90,100,113,102,98,106,121,96,98,88,106,91,100,101,94,99,98,105,94,113,101,94,96,91,107,98,108,84,92,113,104,113,109,105,91,101,99,96,104,102,128,105,101,111,105,103,88,102,110,88,110,96,111,116,81,100,109,97,146,108,115,105,96,106,107,107,103,109,111,110,106,114,118,95,103,107,94,107,107,98,103,109,103,104,96,110,103,116,103,103,110,101,107,110,90,105,105,109,104,100,104,96,98,105,102,108,100,104,106,96,111,111,99,107,100,109,105,108,105,98,107,100,96,109,80,96,121,107,112,113,99,105,109,99,115,103,109,124,104,103,97,102,104,108,105,107,100,107,103,109,94,96,99,105,114,118,110,99,107,121,99,93,99,100,116,97,104,100,94,102,105,108,112,108,114,111,98,101,105,103,108,93,109,114,111,109,100,103,102,110,107,101,98,116,103,100,117,97,104,104,106,106,108,91,102,98,97,104,101,111,110,100,107,107,100,109,107,106,106,100,104,109,98,104,104,99,89,101,108,96,115,105,101,108,100,116,112,101,109,94,110,108,106,93,101,103,96,101,116,109,113,110,110,106,100,87,102,109,95,102,109,95,100,102,101,77,103,92,109,120,105,98,112,105,119,95,113,97,100,93,108,81,102,99,109,100,101,110,121,99,110,109,133,98,111,99,113,111,106,95,88,99,99,113,102,76,99,103,108,98,110,128,121,102,112,111,109,116,94,106,88,112,102,101,94,108,104,96,106,96,102,101,103,104,99,107,113,115,112,96,115,100,99,103,103,106,104,104,95,106,106,96,105,110,103,100,92,95,116,105,94,101,94,86,97,102,112,114,102,106,109,110,96,98,91,113,112,108,98,109,104,112,98,114,89,108,107,89,81,107,108,103,100,97,94,103,112,103,104,96,99,103,104,94,101,105,108,95,103,103,107,108,98,113,78,113,107,110,123,105,107,99,105,100,104,97,102,109,103,105,107,101,90,103,88,116,105,113,112,75,103,106,117,97,111,100,95,131,111,99,100,111,101,93,118,111,108,95,102,113,101,117,104,107,96,88,96,104,106,99,88,99,110,103,115,99,100,110,95,90,107,104,103,97,96,110,97,104,95,105,99,105,114,107,89,108,104,110,102,97,102,106,103,109,121,106,98,115,97,103,100,92,107,102,119,104,109,96,107,117,89,106,104,110,110,102,94,109,103,99,108,108,114,93,110,98,114,115,104,112,98,107,92,100,109,91,101,112,110,125,112,109,95,98,109,101,106,117,105,69,109,106,94,108,110,111,115,108,113,113,114,100,107,87,101,103,93,113,108,108,102,98,101,107,92,103,114,96,94,102,102,101,81,95,97,113,96,110,101,105,118,104,96,105,107,106,103,110,94,95,96,98,99,95,93,106,105,102,103,107,100,116,85,97,97,102,113,105,104,99,113,102,108,119,95,108,98,102,103,105,106,84,112,92,119,101,129,96,103,126,101,91,103,104,106,109,110,108,107,103,100,99,104,99,107,86,96,101,103,109,106,124,113,114,100,108,108,103,98,104,95,78,100,96,116,93,97,105,109,112,105,111,106,102,98,109,112,126,96,114,106,105,107,113,104,99,110,112,105,108,89,103,111,103,95,102,86,108,107,104,102,113,107,113,94,112,111,101,98,98,98,108,98,107,107,98,89,107,116,106,115,102,101,94,113,98,95,101,102,98,101,85,112,113,107,96,113,101,112,89,116,100,76,106,113,108,108,99,86,95,99,92,114,101,119,102,96,92,106,95,107,82,113,111,100,99,106,101,105,95,120,98, +541.40491,112,108,92,83,91,91,100,94,98,93,98,101,95,94,100,95,108,98,93,101,104,106,87,108,107,95,100,101,107,76,105,98,95,108,110,117,108,93,127,103,101,111,87,108,106,74,98,105,90,107,94,99,93,112,108,96,108,99,136,100,105,103,119,91,82,117,100,93,102,110,104,105,109,99,101,108,100,106,108,103,109,104,87,99,102,99,95,105,103,106,118,112,119,109,109,115,97,89,113,100,101,104,97,108,104,96,98,107,92,91,107,103,103,102,104,103,102,106,98,103,110,112,101,109,111,93,95,80,102,107,110,95,95,114,105,113,109,105,97,113,108,110,94,88,98,102,128,99,81,106,99,106,106,98,103,116,100,97,110,86,85,105,100,99,108,95,108,95,102,99,102,103,95,100,105,108,109,109,107,95,87,103,102,105,99,88,106,90,105,96,103,106,102,106,89,91,104,100,104,99,104,113,104,95,107,102,105,83,101,113,102,113,102,107,103,95,104,98,97,105,108,114,90,108,100,98,99,94,104,100,100,109,102,108,123,96,110,91,107,108,95,96,104,104,107,102,104,111,97,106,115,92,101,111,115,102,92,112,98,107,102,123,102,101,105,116,106,110,101,102,95,95,111,85,109,104,106,96,101,100,98,96,112,100,102,104,95,109,110,105,105,124,98,111,98,99,109,104,102,105,105,102,108,111,100,99,99,108,107,111,100,114,107,102,99,98,105,111,122,104,109,104,87,103,105,105,101,95,110,111,104,107,108,104,105,81,101,98,100,107,106,110,108,85,102,92,104,105,116,105,104,99,110,100,112,119,100,124,104,107,99,94,104,108,92,113,103,95,102,94,107,90,102,110,99,102,105,104,113,106,105,110,106,88,101,97,98,104,104,119,110,99,100,107,102,99,96,104,108,98,106,98,85,104,109,104,108,117,106,99,94,109,103,101,95,99,112,99,108,107,107,105,107,101,109,101,107,101,102,86,96,95,127,103,107,99,110,102,104,98,107,104,95,116,95,107,104,98,107,106,104,107,99,112,105,108,104,109,104,111,102,109,102,100,92,105,108,113,106,77,104,106,99,99,103,100,114,105,99,106,106,110,104,107,107,105,109,105,113,101,105,104,114,105,108,102,99,100,98,97,101,104,101,106,106,105,122,90,97,93,105,103,102,114,109,105,102,110,99,94,99,101,101,107,106,98,119,102,116,116,103,104,105,111,101,113,106,102,95,123,104,107,99,98,121,104,111,102,105,105,95,103,112,97,107,113,118,108,109,109,117,111,99,108,104,108,110,103,104,94,102,100,97,99,109,115,105,100,100,102,102,95,108,111,99,103,105,108,111,76,98,125,96,108,100,107,99,104,107,117,112,101,107,100,114,109,103,111,106,104,98,107,102,106,98,110,115,99,110,108,108,107,106,103,106,108,103,110,106,103,133,100,100,107,96,111,103,104,97,103,102,105,106,110,109,111,91,95,100,103,104,110,104,120,97,112,117,108,126,108,114,107,113,97,100,106,108,96,107,109,105,110,105,107,100,112,103,120,112,116,116,94,110,107,107,100,108,99,111,108,103,100,96,112,120,104,103,100,95,98,99,104,114,102,114,108,114,102,94,108,78,99,104,117,85,110,96,95,92,103,95,104,102,108,106,99,106,104,95,115,120,99,102,113,97,95,111,104,104,104,100,110,110,96,103,106,103,103,113,117,117,105,90,99,93,107,100,100,108,101,94,108,105,113,90,105,99,100,105,97,106,102,108,102,107,101,108,103,108,88,102,107,106,110,106,117,102,100,118,116,99,105,90,106,110,100,118,116,116,108,101,103,108,113,103,107,103,94,108,114,113,109,101,99,112,107,112,98,105,117,109,100,109,107,107,113,99,98,98,95,96,96,122,110,109,108,111,95,98,103,108,112,111,118,109,110,110,101,101,104,112,100,101,112,100,106,100,104,102,93,104,107,97,101,105,106,103,109,100,92,108,112,102,106,105,110,107,105,103,96,68,105,133,102,97,98,98,98,100,105,116,122,100,112,113,108,99,114,105,110,113,99,95,103,102,106,110,99,105,107,118,105,110,106,112,96,117,117,103,108,105,112,104,111,108,107,103,107,119,102,79,91,106,107,99,96,96,98,102,109,96,96,112,106,105,104,98,109,102,109,96,104,103,104,115,111,108,102,96,91,107,100,104,99,108,116,101,106,105,108,105,102,111,122,106,109,107,98,107,110,98,102,108,94,105,101,112,122,101,99,109,107,104,100,104,108,123,116,108,106,111,104,110,106,104,107,109,105,99,91,105,102,109,99,92,120,109,105,105,103,104,109,116,103,109,94,114,106,106,109,116,113,107,101,98,92,106,112,93,109,96,109,103,99,116,129,114,111,103,100,109,117,111,102,101,103,112,108,98,99,107,108,101,109,113,111,108,115,98,101,104,101,95,103,104,111,108,78,111,106,112,110,105,109,105,122,107,102,104,105,121,104,93,106,102,104,106,102,96,106,106,79,114,121,101,101,109,95,102,106,105,112,101,91,106,106,93,100,103,109,97,103,107,119,102,111,109,128,82,111,105,94,96,109,105,103,103,109,108,85,87,96,98,113,106,117,117,112,99,100,114,112,94,102,100,102,106,85,99,107,76,98,124,97,112,100,97,100,103,106,106,101,113,111,115,98,101,121,107,105,104,103,113,105,111,108,121,112,100,113,114,107,125,110,98,102,106,100,93,108,116,116,121,98,102,109,107,102,112,104,108,108,102,108,121,115,105,113,93,100,97,106,118,105,108,108,109,100,98,104,111,103,97,98,105,98,115,105,110,109,116,107,111,91,109,99,112,106,97,116,105,105,102,111,107,109,116,106,102,115,105,111,105,99,106,104,100,110,103,112,98,103,113,103,109,101,116,99,104,111,103,111,117,109,102,104,108,100,117,97,99,113,105,107,110,121,105,101,115,96,112,110,107,103,113,105,99,99,105,96,102,112,100,94,110,117,104,106,102,111,112,111,100,104,111,98,98,99,95,99,99,98,108,100,96,94,110,112,119,104,107,109,98,104,107,115,104,96,105,114,100,108,112,113,102,98,100,94,106,94,105,109,113,105,105,104,108,99,89,97,103,112,108,118,111,109,109,103,107,100,96,106,96,102,102,88,97,103,102,105,103,113,106,100,105,106,106,110,124,104,95,103,107,94,117,97,100,104,125,94,112,105,99,109,109,99,109,116,122,94,107,133,90,103,100,108,105,109,116,90,111,107,109,114,101,101,105,105,112,106,104,108,106,105,104,100,99,95,105,109,112,103,109,99,75,102,103,101,114,105,87,100,109,99,85,105,106,106,107,112,99,105,104,106,108,92,113,95,118,107,103,104,109,124,96,106,101,96,98,101,101,111,96,113,91,124,109,112,110,104,91,103,99,100,99,110,103,107,104,110,116,96,110,107,89,111,112,100,97,100,98,99,98,99,104,104,102,97,91,97,103,99,104,106,99,129,112,106,102,99,106,112,107,107,108,106,96,102,109,107,88,111,102,111,136,107,108,112,107,117,110,101,105,105,108,114,97,106,97,111,99,102,108,104,103,104,98,112,100,113,101,112,90,105,96,109,112,105,102,99,98,109,88,110,106,124,99,102,100,97,94,114,102,104,110,104,103,105,98,95,90,103,101,119,96,102,109,102,113,111,103,106,101,100,104,98,110,107,106,105,112,101,114,116,107,106,110,89,102,107,105,95,105,105,104,128,121,101,107,92,113,102,94,104,110,98,111,101,95,110,107,104,105,111,107,111,94,102,109,96,100,102,121,106,109,101,104,110,75,107,106,98,94,103,96,119,100,104,108,107,92,98,100,105,89,103,107,100,112,108,106,96,100,107,95,113,105,94,98,106,104,105,111,107,103,114,103,100,109,100,108,96,95,105,99,97,129,106,101,102,111,107,107,105,105,109,106,114,112,104,101,103,103,110,97,101,103,113,102,103,112,100,110,117,114,104,97,109,112,107,99,102,103,113,99,98,97,100,90,111,102,103,99,84,102,88,105,73,103,101,111,97,110,79,105,112,95,108,109,109,102,98,105,129,96,102,95,106,98,101,110,100,105,98,110,99,107,95,92,110,103,109,98,107,102,110,104,100,97,66,104,89,92,98,103,95,98,107,96,99,92,91,90,98,118,91,104,113,78,100,106,109,112,124,106,100,100,109,113,112,103,108,100,98,98,97,100,101,106,106,100,103,98,106,99,103,106,112,108,103,98,111,111,109,112,103,95,99,108,105,103,92,102,105,110,105,102,103,116,110,105,101,97,110,94,102,86,117,116,107,113,103,102,108,106,101,105,107,102,102,97,87,101,95,106,100,103,98,113,93,107,98,99,104,102,106,99,102,106,105,112,100,112,95,108,114,106,107,96,116,84,95,90,107,97,98,107,118,110,101,108,106,103,105,97,104,106,98,100,93,119,103,105,100,102,90,91,113,110,96,110,104,106,109,95,108,116,102,84,93,102,101,99,113,107,113,77,96,81,107,103,108,95,102,96,96,103,122,101,98,122,103,92,94,105,108,109,106,97,114,99,99,113,98,101,104,103,84,105,92,100,87,104,119,87,103,98,99,104,99,107,102,107,100,128,98,105,109,111,95,85,105,113,93,105,98,102,87,101,112,94,98,104,113,100,112,76,121,99,113,99,103,101,97,101,96,107,91,109,97,109,103,100,116,119,107,95,83,100,86,112,113,93,114,100,109,106,111,112,90,101,102,99,84,101,105,91,106,94,107,94,92,99,105,110,115,99,90,102,96,102,106,103,103,98,101,90,101,106,101,113,102,102,101,96,105,94,120,77,104,103,101,106,106,97,105,90,113,96,106,109,103,110,104,102,98,110,101,95,95,108,111,113,88,110,93,93,109,85,95, +541.54572,94,103,92,112,87,102,89,110,105,117,102,85,100,99,108,96,113,105,99,116,110,107,102,95,105,96,103,102,96,113,106,117,97,102,118,105,108,101,100,113,101,98,116,105,115,111,110,97,96,102,90,97,97,114,95,97,100,108,112,96,114,83,107,89,80,111,120,110,107,101,105,103,92,105,92,106,103,95,122,109,101,107,91,111,96,97,95,101,103,102,107,105,126,113,103,119,100,105,102,111,107,113,87,94,111,117,99,90,99,100,109,108,114,108,94,106,104,109,109,104,110,96,98,118,72,111,118,101,115,106,114,98,94,103,100,114,105,103,100,93,95,109,106,102,105,109,104,111,96,112,105,100,106,107,104,105,106,97,95,102,95,107,90,107,104,101,107,97,96,112,99,98,108,96,109,104,113,111,87,114,100,101,107,97,84,105,108,90,110,94,105,103,108,115,101,102,106,118,121,101,100,92,116,99,107,97,102,103,99,114,108,99,120,101,106,104,101,96,99,112,104,110,102,105,121,104,108,104,102,110,104,101,91,103,110,79,102,98,109,118,80,100,122,121,102,94,106,113,95,104,108,93,101,107,108,105,112,109,83,110,106,94,114,95,98,104,97,103,122,94,101,78,103,110,109,120,102,103,101,104,105,85,114,103,107,118,93,101,105,109,99,103,104,100,107,113,103,107,129,105,101,111,112,110,96,115,113,104,101,101,108,99,106,110,100,96,113,114,92,99,110,109,98,102,98,119,107,104,111,142,102,110,105,110,103,113,99,97,100,100,122,96,101,100,113,107,108,94,96,106,107,100,107,99,126,98,100,96,99,95,114,118,99,102,120,103,108,102,102,101,110,109,121,101,106,87,109,110,82,112,96,114,105,108,102,96,99,103,102,107,107,92,89,98,110,106,109,98,111,113,102,101,109,106,101,90,101,126,101,100,105,108,112,101,97,96,105,108,105,120,102,108,111,105,119,106,106,93,101,105,109,102,109,103,93,103,118,98,92,98,114,99,104,112,107,104,94,62,105,121,109,115,107,101,101,108,101,104,102,104,107,111,120,100,108,102,90,88,113,96,103,101,91,103,104,103,120,114,99,109,115,98,113,96,99,108,104,99,99,99,83,112,111,110,103,97,103,101,108,79,107,107,106,106,101,97,95,99,102,92,97,108,111,114,99,108,102,112,96,97,99,118,102,107,106,109,101,99,102,112,107,106,103,107,106,95,109,97,99,108,116,89,114,102,109,105,107,112,116,117,105,94,112,100,105,115,109,97,106,95,103,120,102,93,87,109,114,102,114,108,97,101,113,98,99,108,107,101,88,108,106,102,113,94,99,101,105,110,99,93,109,106,99,104,112,114,102,100,112,106,104,86,106,105,112,94,87,108,98,111,103,111,96,108,109,100,100,95,114,114,105,103,99,113,130,94,106,102,110,109,95,104,102,85,106,106,97,105,82,95,108,102,100,103,102,97,98,94,100,92,99,102,111,105,96,102,109,110,104,107,120,103,106,113,107,108,104,99,95,110,110,95,98,91,99,109,112,105,109,105,103,93,107,96,104,107,102,118,118,91,99,102,112,110,106,106,91,116,95,101,122,100,107,99,102,97,101,102,94,88,115,100,106,96,96,100,95,117,101,107,108,107,97,99,99,109,101,101,95,104,103,93,100,96,95,94,113,102,107,99,103,101,90,107,105,98,99,109,91,103,109,102,102,95,98,105,92,117,109,107,105,93,88,104,101,105,101,102,106,104,94,107,103,121,110,126,101,96,108,104,96,107,117,104,102,107,117,116,119,108,97,102,107,106,103,95,99,115,113,115,83,98,93,79,107,99,108,136,103,96,114,94,102,105,98,110,106,101,102,110,110,115,117,103,112,117,106,116,109,109,113,99,111,117,73,122,101,132,107,99,96,109,101,101,78,109,99,97,95,105,98,101,101,90,86,104,117,109,103,111,106,102,117,102,112,109,113,113,103,106,99,108,99,117,103,100,121,96,112,111,104,109,107,100,106,105,102,109,107,117,107,118,99,113,100,118,101,106,88,115,104,108,113,105,110,101,99,111,102,103,103,106,104,109,111,91,102,121,111,116,109,108,108,97,104,108,108,115,102,101,109,98,101,112,103,110,95,86,101,118,116,90,104,92,100,97,99,102,81,117,126,113,99,123,107,115,106,107,99,116,107,109,105,92,108,109,96,101,101,109,96,101,105,95,114,109,105,109,95,112,102,112,103,96,95,102,109,97,102,87,114,103,107,106,137,100,104,105,101,99,106,95,101,105,104,113,107,92,102,108,95,106,103,107,100,102,123,101,107,91,112,100,94,97,106,108,102,114,100,113,91,101,107,95,114,98,99,120,96,104,121,97,107,111,102,116,112,110,105,102,111,99,106,105,103,103,102,97,97,103,98,104,110,108,109,70,96,107,106,99,100,105,103,113,100,108,105,107,110,117,98,98,99,103,102,95,91,110,102,105,113,101,93,102,93,93,93,94,109,106,100,100,95,100,112,113,113,112,107,99,101,111,101,96,96,93,102,108,99,97,107,71,90,111,105,107,104,103,99,103,94,110,135,100,112,108,100,98,110,102,94,108,91,100,109,93,95,98,99,107,115,107,118,107,107,109,91,80,105,100,108,70,105,95,106,97,116,95,114,98,111,98,110,104,95,92,107,103,123,93,97,69,94,110,97,110,107,106,111,119,99,102,100,107,100,98,128,96,112,91,102,105,113,101,104,100,94,110,92,101,102,94,102,94,80,103,110,114,110,95,99,109,93,107,108,104,97,103,109,100,95,104,105,98,101,86,105,108,111,106,106,113,97,108,92,108,102,117,144,113,103,113,99,105,96,99,112,98,96,96,106,103,109,115,101,112,102,106,106,101,115,109,107,114,96,131,97,107,108,100,102,105,93,109,105,114,97,95,93,106,137,110,103,106,108,109,95,112,104,107,127,103,106,108,99,117,104,108,100,103,95,104,101,98,99,98,113,96,101,110,96,108,100,103,133,87,102,105,89,86,103,109,97,110,99,107,109,106,76,112,96,108,100,99,109,104,116,104,108,86,112,96,107,109,111,99,104,99,108,112,122,106,114,95,107,100,98,99,90,113,104,106,107,109,97,98,110,109,113,92,102,92,105,107,114,105,113,113,107,109,106,91,100,87,106,93,94,100,83,109,109,101,103,108,112,117,110,99,110,105,109,101,100,105,96,95,107,101,103,106,116,96,91,106,108,96,98,110,106,107,109,113,111,107,115,92,124,95,101,106,103,95,104,111,108,97,101,94,97,90,113,91,102,107,108,100,113,100,91,95,109,110,108,92,100,100,102,110,110,113,103,113,98,91,94,98,103,94,98,101,96,100,102,105,105,114,120,91,100,94,106,70,104,106,101,101,107,100,108,97,108,105,106,113,93,96,107,103,103,111,117,99,108,100,98,104,97,112,109,113,107,108,103,95,94,100,108,114,105,104,103,102,111,116,98,93,108,114,111,86,80,96,104,109,114,115,107,105,98,108,105,107,101,113,103,111,102,96,109,100,102,103,99,113,100,96,94,105,98,121,113,104,114,110,107,102,108,125,94,87,100,101,95,100,109,107,137,90,117,93,98,102,103,107,95,96,102,94,113,93,100,102,109,99,102,112,97,95,106,102,99,103,103,107,94,101,115,109,109,106,102,115,102,98,95,98,100,111,108,107,101,78,100,121,104,105,97,104,105,90,103,108,105,96,117,91,110,111,98,99,113,104,100,101,107,98,105,115,111,100,106,102,120,104,104,92,102,100,100,108,97,102,91,105,116,104,122,113,99,108,110,98,102,100,109,95,112,95,104,99,107,104,95,94,120,102,106,113,95,104,112,99,96,101,96,113,107,105,113,101,114,96,101,98,106,109,103,97,94,97,108,87,107,86,98,103,114,101,116,97,103,97,87,101,87,92,114,95,105,88,106,99,95,112,103,99,109,105,91,102,103,102,102,99,113,96,98,108,91,108,106,100,101,100,102,105,107,136,104,108,106,97,108,100,110,112,105,92,104,106,93,112,97,97,89,98,94,92,104,101,116,110,103,95,90,96,89,97,96,100,112,84,106,100,122,115,114,105,89,110,109,111,97,90,99,105,109,100,102,97,101,99,103,100,98,72,106,97,107,105,95,113,112,96,98,102,98,111,94,93,107,96,113,116,90,113,89,113,120,117,103,95,101,103,100,103,115,104,104,97,108,89,100,103,109,111,103,87,110,103,92,98,102,109,106,105,104,97,83,97,108,102,110,99,89,114,96,105,95,95,94,104,98,107,101,105,112,103,98,94,107,92,118,118,111,117,99,111,102,109,97,102,101,103,93,111,106,102,98,104,100,109,105,109,111,109,100,109,104,99,98,118,91,105,105,106,112,98,104,102,85,95,100,105,100,89,95,102,91,102,96,97,98,100,102,95,93,110,98,104,106,115,112,98,105,106,92,101,99,117,102,97,109,96,89,103,74,106,98,110,100,103,100,98,104,94,104,104,101,91,102,100,92,87,105,93,106,111,101,110,102,79,107,107,86,95,93,97,91,105,98,105,104,93,90,109,77,95,95,92,96,98,107,109,114,98,100,100,105,108,90,104,104,106,94,105,92,101,103,99,96,96,110,96,91,101,99,99,104,93,93,101,104,106,91,100,96,95,100,109,109,72,110,98,94,111,110,99,101,109,111,97,106,97,107,84,101,115,104,81,102,96,111,95,94,118,109,106,118,106,105,98,105,115,102,100,98,116,113,102,102,104,108,86,103,119,116,96,104,101,109,98,104,87,107,95,106,109,93,103,110,106,113,112,109,112,102,103,95,82,85,110,104,107,98,103,67,100,97,89,96,99,102,94,97,117,91,108,105,104,98,101,110,108,114,100,92,103,103,93, +541.68652,108,114,113,97,99,123,99,105,105,106,98,105,99,106,109,85,109,108,107,101,103,100,107,116,112,104,114,89,105,101,112,114,109,104,99,106,105,91,102,111,108,101,106,107,114,115,113,98,107,103,118,102,98,105,111,89,108,103,116,95,102,114,103,106,109,108,89,102,103,100,107,102,100,105,112,118,98,101,112,110,100,105,107,101,97,103,105,106,106,108,110,108,104,106,106,105,105,100,93,93,99,115,108,100,102,104,105,101,94,105,98,104,121,98,130,107,97,102,104,92,103,119,107,88,96,107,98,113,111,119,101,100,96,117,101,103,103,105,99,101,105,99,108,103,101,99,99,113,86,88,103,98,114,97,106,119,102,96,109,115,95,100,111,110,84,102,102,107,115,98,100,98,110,103,110,112,104,98,114,109,94,102,102,110,114,97,97,102,100,100,124,102,105,107,104,107,104,100,113,105,114,105,96,117,95,99,101,106,110,104,81,112,133,108,110,107,101,112,94,113,108,109,105,97,97,103,110,110,116,95,106,102,99,99,103,116,103,103,96,112,104,107,113,99,109,85,114,102,111,110,101,105,101,94,102,112,117,115,109,112,101,100,110,95,106,107,98,104,111,101,98,118,111,103,107,117,83,118,106,95,122,105,107,106,112,96,100,106,124,104,114,99,115,103,100,103,109,106,107,101,103,109,109,106,100,108,106,105,114,96,98,109,94,109,102,92,122,97,106,131,108,110,120,107,107,100,102,99,104,118,110,119,119,119,106,93,112,108,90,117,100,100,105,104,102,100,113,106,111,101,105,121,108,103,103,109,101,113,98,111,101,117,103,88,100,109,80,101,105,96,103,101,101,111,106,96,99,102,98,107,117,104,102,109,102,113,95,105,109,103,112,108,97,100,108,107,83,103,99,107,99,132,102,106,106,114,101,115,110,103,97,103,103,100,111,104,97,103,119,113,109,90,114,104,106,98,72,98,104,109,97,108,105,97,86,107,100,105,101,107,104,120,110,101,137,102,91,104,104,125,101,106,97,99,101,108,107,95,108,93,110,105,121,116,106,110,99,103,112,104,111,113,103,107,101,110,101,104,110,117,106,105,112,102,103,91,110,112,105,109,113,101,88,100,102,100,109,101,104,102,112,117,96,87,108,105,95,111,97,101,109,101,102,102,96,101,98,104,101,93,109,104,104,133,94,98,130,106,105,94,109,102,102,100,107,106,112,95,105,111,114,111,98,100,96,98,100,99,102,105,95,118,116,100,100,98,104,103,103,82,109,91,101,107,103,100,110,103,108,111,99,101,109,119,113,101,103,110,105,107,117,112,107,92,97,96,110,109,113,110,103,111,105,103,106,113,95,110,103,117,99,114,109,95,104,104,100,107,102,106,102,102,111,115,107,98,115,99,99,105,108,106,102,111,105,109,102,105,102,113,109,105,131,110,99,99,102,111,104,106,104,112,108,104,115,87,106,100,113,100,100,117,103,108,103,109,105,111,94,120,107,108,97,115,105,113,95,101,103,109,124,94,111,110,116,110,110,109,104,108,100,98,106,95,101,102,106,99,99,113,108,106,101,107,104,108,106,103,93,117,119,106,107,107,101,82,104,112,102,112,107,98,108,99,95,104,120,104,101,102,98,110,109,112,104,101,101,109,112,102,106,108,98,99,104,110,108,99,122,104,106,99,105,99,116,108,111,104,107,108,119,93,87,114,116,126,101,111,108,102,100,107,106,104,72,110,105,95,102,109,93,116,103,97,110,91,100,109,98,98,114,105,111,117,106,106,112,105,102,106,73,110,105,119,108,103,100,100,110,108,114,90,103,98,108,104,102,105,108,113,113,100,110,111,112,102,106,99,91,126,118,105,108,102,102,110,112,97,104,107,107,103,108,84,110,105,105,100,102,116,113,123,107,113,102,114,112,106,108,106,110,105,105,114,105,114,104,98,101,108,108,106,116,108,108,104,118,96,101,118,103,108,97,112,113,97,102,104,97,104,119,108,105,98,101,109,112,126,106,120,99,117,103,106,114,116,112,105,98,111,111,115,114,104,100,110,108,112,111,103,104,111,108,110,102,101,108,110,102,76,99,100,109,110,99,108,108,99,116,99,103,114,111,107,103,102,111,102,109,117,100,108,102,105,106,94,99,106,104,87,114,113,112,112,103,99,115,114,104,102,122,113,112,102,104,96,97,102,104,112,102,104,122,109,121,109,115,101,101,113,111,108,104,111,108,98,100,102,107,118,131,104,105,112,101,100,103,113,104,115,106,96,113,109,107,122,105,105,97,116,103,105,103,110,115,108,113,113,102,89,93,120,110,112,99,110,107,103,108,103,115,114,98,109,107,99,110,117,103,107,106,115,112,107,103,117,110,106,98,103,115,106,99,95,95,96,110,106,107,95,99,102,111,110,99,96,108,131,94,99,102,110,117,110,106,113,101,107,106,95,113,97,99,109,110,114,118,101,126,111,118,99,100,92,101,111,88,116,118,103,115,68,122,103,105,110,92,120,113,113,98,102,95,105,78,94,103,97,113,103,109,101,99,104,105,96,106,108,94,102,116,116,122,111,101,109,112,102,119,105,103,109,96,116,107,106,108,97,104,92,107,109,120,103,103,109,105,95,103,119,102,93,130,107,104,102,89,107,112,101,105,107,106,108,104,108,115,107,109,113,106,98,124,94,91,108,128,104,101,115,97,103,102,108,103,114,97,99,111,74,108,113,106,111,106,102,111,112,104,117,99,112,103,94,116,107,105,101,98,110,95,104,104,97,106,111,97,104,112,102,101,109,100,108,107,87,103,104,110,118,103,105,108,91,95,105,121,99,93,100,109,110,102,110,113,132,105,117,111,114,102,101,108,121,109,103,107,110,108,103,102,113,113,113,105,91,102,102,102,96,99,112,98,101,106,106,113,114,105,105,108,106,107,102,105,97,104,103,113,94,103,117,109,104,98,114,101,112,99,113,104,107,100,113,106,107,109,99,103,103,112,104,107,107,110,117,103,111,107,103,112,99,98,118,110,102,98,109,98,107,102,111,103,109,110,103,106,109,105,97,109,105,99,107,108,103,117,102,109,95,105,106,107,96,115,91,102,99,98,107,109,104,102,98,106,109,106,103,109,109,120,112,111,111,105,108,106,105,106,93,100,100,105,106,90,112,98,103,108,109,105,106,105,104,100,112,101,109,111,106,93,101,109,84,106,98,104,104,105,101,107,109,99,113,87,106,96,109,109,103,106,110,93,104,113,111,109,108,90,87,104,117,102,124,106,102,114,111,102,96,102,109,99,108,103,103,110,103,110,102,108,112,108,106,113,116,107,100,109,106,115,100,109,107,104,104,95,102,98,100,103,107,106,110,96,103,108,109,113,93,101,107,95,96,109,115,116,105,116,89,95,104,99,99,109,104,107,95,106,100,106,97,111,109,104,96,99,108,104,106,105,107,106,109,106,117,109,115,101,102,109,105,102,99,105,103,95,109,111,96,112,112,100,100,117,109,96,108,95,108,110,101,105,120,100,105,110,122,95,106,106,109,105,114,116,103,105,106,105,117,113,109,99,112,100,111,115,113,106,103,97,103,105,108,102,105,101,103,98,107,108,112,120,92,92,101,115,119,122,113,105,92,110,100,98,106,105,106,108,111,119,93,105,100,89,103,96,106,91,113,102,111,110,103,110,102,108,108,117,113,103,118,95,90,87,115,106,100,103,107,103,105,103,100,95,100,112,104,102,110,108,104,99,87,103,124,108,108,115,109,110,94,108,98,105,105,98,115,108,103,105,120,107,107,105,105,107,109,99,110,109,106,122,89,100,112,111,100,102,107,104,104,94,98,108,104,116,101,104,98,111,105,105,123,102,94,106,104,103,109,102,113,108,105,105,100,99,104,94,114,108,109,73,100,93,107,103,98,125,108,106,95,99,116,111,100,105,114,109,111,108,98,104,105,99,107,107,105,96,102,112,105,109,106,115,106,105,103,102,102,110,98,102,107,115,95,105,123,102,112,115,99,100,100,93,110,120,102,110,95,110,112,100,97,100,99,95,105,92,99,108,104,120,86,115,113,102,106,99,98,100,106,96,103,120,102,113,104,111,109,104,114,100,106,104,106,117,111,110,106,97,98,105,114,108,113,106,106,121,103,105,114,100,92,104,103,116,112,99,100,105,105,103,99,98,104,95,97,105,93,109,91,100,101,113,84,101,101,100,109,103,97,98,101,100,103,103,102,110,109,103,106,96,99,108,95,95,107,98,106,109,106,91,104,113,109,111,98,95,102,101,116,105,102,100,104,99,127,102,132,103,112,103,102,110,83,102,100,109,110,110,104,105,108,113,94,104,96,96,112,102,101,110,109,103,119,99,101,100,103,108,110,109,116,102,104,103,99,114,83,94,101,100,140,109,106,99,104,101,84,109,119,107,110,97,84,99,104,106,105,102,103,109,105,109,112,89,104,112,101,101,95,121,95,101,101,91,108,101,113,98,96,99,108,117,96,98,113,99,98,118,113,117,101,104,113,111,110,100,109,107,106,100,102,106,71,108,105,114,116,91,102,98,104,98,106,99,98,99,90,103,106,106,114,107,106,104,109,102,115,110,108,98,102,102,109,112,120,90,103,98,102,111,99,105,104,105,118,104,114,106,103,113,113,101,102,106,93,116,108,102,110,111,109,107,105,101,105,107,108,113,105,115,113,105,102,103,117,100,106,101,113,92,113,103,101,108,99,109,104,120,91,109,103,104,109,98,105,95,103,87,117,104,102,101,101,108,109,109,92,109,104,113,110,100,104,104,105,96,99,109,92,105,100,110,97,99,104,109,103,106,122,115,110,114,101,112,102,121,98,113,104,111,81,104,110,89,105,108,104,104,124,99,110,115,109,101,90,93,96, +541.82733,96,100,105,104,105,110,116,94,94,102,104,112,123,80,100,100,109,115,89,108,101,97,106,99,113,121,93,116,106,89,99,111,111,92,111,112,103,83,108,108,91,118,98,107,108,113,100,101,96,106,108,107,98,95,104,95,97,100,99,98,112,105,104,118,106,110,97,100,112,105,101,107,99,106,104,105,104,103,107,106,103,93,95,107,104,105,109,98,102,103,99,96,107,104,103,99,108,120,99,104,97,104,99,108,100,106,112,112,103,84,100,105,109,106,111,97,99,105,107,89,107,103,124,110,100,103,112,91,113,106,103,104,94,103,93,94,118,121,93,99,104,104,105,109,104,90,104,97,96,117,117,96,100,90,102,105,113,99,101,105,115,101,101,109,105,104,96,103,111,109,106,95,106,112,105,92,104,102,112,109,102,102,96,110,125,99,90,91,111,106,109,104,120,103,102,103,114,100,104,105,100,104,109,109,96,95,98,109,128,99,90,110,105,98,109,108,105,113,94,108,113,114,110,102,80,103,95,109,99,99,104,107,106,99,121,105,102,115,99,93,106,98,106,95,99,101,102,95,114,96,113,107,105,94,115,105,103,105,94,109,101,100,104,96,107,109,118,112,106,95,101,100,114,102,112,107,110,113,105,112,114,116,105,128,105,96,87,112,111,106,114,106,110,106,110,109,104,112,110,104,109,105,104,108,98,100,106,102,100,115,93,103,115,109,108,103,114,102,98,108,103,103,99,103,105,97,88,101,111,104,100,113,110,111,113,98,99,97,110,108,109,106,103,86,112,120,105,105,107,108,104,104,126,99,121,107,105,110,110,103,109,113,98,102,97,105,113,102,97,110,109,94,89,98,105,95,104,98,98,100,117,99,103,107,97,103,97,94,113,114,108,95,95,112,98,95,100,103,104,104,100,95,114,102,110,106,104,108,100,111,101,95,110,102,117,94,89,94,113,107,86,102,100,114,108,91,102,111,99,116,109,106,89,104,100,105,103,111,99,98,105,97,112,106,101,107,112,108,113,108,109,103,103,99,101,114,97,113,103,106,98,94,108,103,102,105,107,101,102,109,109,103,117,104,113,102,108,90,109,102,93,100,99,117,111,109,101,114,99,98,94,131,102,106,103,122,92,106,104,106,104,103,111,123,101,108,102,103,116,103,109,102,97,108,105,108,109,106,102,93,120,111,110,106,104,105,94,111,112,111,93,110,109,117,101,97,101,106,100,105,113,115,93,98,105,95,107,101,105,103,109,104,109,105,101,95,104,102,100,99,103,102,98,108,97,99,85,112,102,99,99,97,97,107,112,104,109,105,102,106,96,96,111,101,90,97,103,103,117,109,109,107,98,106,101,108,111,114,120,114,109,99,105,102,104,109,105,102,107,85,105,105,107,104,111,106,106,99,101,95,105,119,100,92,106,110,106,101,118,108,107,96,111,114,103,90,93,97,114,109,102,111,112,101,118,106,100,102,95,109,96,100,114,115,104,98,102,104,108,113,105,106,101,111,105,97,108,95,107,105,102,87,113,112,97,119,114,111,107,102,102,108,100,94,94,102,108,113,99,110,108,107,117,110,104,99,86,109,113,94,95,98,113,103,92,102,99,116,110,98,114,115,113,105,102,109,109,100,112,100,115,100,87,104,100,103,116,101,108,112,106,112,80,90,106,99,109,99,107,102,118,108,99,118,101,120,112,101,114,91,88,98,103,112,107,98,110,109,94,96,117,113,97,99,96,95,108,107,110,106,102,109,99,79,105,107,101,95,113,107,97,103,115,115,113,104,100,115,106,104,101,109,108,113,105,103,110,109,125,112,105,90,96,103,108,107,108,93,112,100,114,114,103,107,112,110,101,116,95,100,111,114,97,108,100,104,100,109,100,94,113,109,101,108,99,107,118,105,104,106,96,109,117,104,108,107,111,104,107,97,101,104,113,108,101,96,108,106,108,101,107,110,91,97,76,92,100,119,108,111,108,108,106,97,100,105,102,108,102,106,109,112,108,108,106,121,105,106,99,100,106,105,122,104,106,99,110,106,95,113,106,126,98,91,113,102,95,117,102,97,104,122,108,105,103,107,103,108,104,107,99,116,98,104,91,113,105,109,113,112,110,109,114,115,99,95,104,116,110,109,100,109,111,121,110,104,109,120,105,117,105,112,115,109,103,114,114,100,108,111,100,107,103,97,115,126,91,106,107,108,104,104,112,100,100,108,101,104,108,104,100,110,109,98,106,110,109,111,103,88,101,113,99,108,104,104,112,103,110,105,101,109,107,93,96,105,108,112,105,67,107,105,115,109,105,117,109,94,106,103,116,97,105,103,100,114,120,105,114,117,106,101,102,95,106,93,99,99,111,98,94,118,90,92,121,103,116,97,105,107,98,108,117,102,101,112,107,104,109,97,114,98,96,114,122,106,96,104,115,108,107,100,103,110,97,112,101,105,100,76,107,95,103,118,107,116,92,108,114,109,103,109,118,104,91,105,109,105,105,108,109,102,101,109,117,138,109,112,110,98,112,102,103,103,104,106,105,105,91,112,103,108,99,105,110,99,100,105,109,100,103,108,115,104,95,121,105,109,95,108,105,95,105,116,119,114,105,114,107,98,100,99,103,120,108,106,123,108,103,103,103,101,98,98,116,107,109,117,104,97,118,102,96,107,110,109,103,103,95,99,94,102,93,112,117,105,105,102,97,114,106,97,97,110,101,111,109,100,116,100,99,98,102,106,115,101,99,84,104,109,104,95,103,102,104,111,104,110,104,100,111,96,106,102,112,105,100,104,106,108,106,118,94,112,103,96,105,106,91,109,113,98,95,105,104,101,110,117,109,101,112,111,102,104,84,98,104,110,105,103,107,98,111,98,102,104,113,104,101,111,121,91,107,102,104,106,102,103,103,113,107,109,95,100,108,106,96,105,112,98,113,112,93,104,110,116,104,119,105,106,104,111,104,110,102,102,106,109,100,101,89,105,110,101,109,113,106,103,95,99,123,118,113,98,101,109,120,107,121,103,102,101,103,99,104,117,109,101,100,115,78,102,107,110,115,107,101,114,100,105,112,102,113,106,106,100,96,114,130,109,116,124,111,104,107,127,112,121,106,105,80,63,109,114,118,103,105,93,107,107,89,100,103,105,115,108,84,96,96,98,104,105,103,103,106,101,81,120,107,109,116,106,88,95,125,106,104,125,115,101,97,108,94,98,112,98,97,118,116,100,111,113,106,111,102,104,108,100,116,72,98,111,114,114,116,102,101,108,107,102,95,116,123,109,108,102,105,97,105,101,103,96,97,103,106,103,94,100,113,111,109,103,117,103,105,112,107,95,107,96,99,104,99,96,105,98,120,109,108,103,111,121,103,104,91,105,105,102,115,82,112,91,103,106,101,102,101,104,101,100,100,110,111,100,106,113,109,98,109,120,105,112,100,106,107,112,105,103,104,103,119,113,100,102,102,107,106,106,98,113,110,104,98,107,98,91,94,95,113,99,108,111,99,99,115,116,95,102,111,101,113,103,106,111,99,114,107,117,109,113,108,107,99,105,99,111,101,95,110,109,121,106,100,112,105,106,103,113,105,96,96,104,119,104,106,108,96,97,103,112,108,112,102,112,111,97,101,110,98,106,106,106,100,110,108,113,101,90,107,97,105,109,99,107,100,96,105,105,106,94,102,112,103,101,103,106,121,109,99,96,104,109,106,109,110,90,105,105,110,100,98,108,102,97,101,99,110,104,106,112,120,90,107,99,99,118,112,99,121,99,94,106,98,97,95,98,102,113,97,105,95,94,106,100,99,113,114,112,106,96,112,106,113,111,108,96,104,96,104,106,104,106,114,94,101,107,106,89,107,89,93,112,112,107,117,102,91,105,98,100,91,104,95,95,110,91,99,106,113,102,115,98,102,103,94,109,110,93,114,110,98,95,117,98,100,103,108,103,106,101,100,105,97,118,105,100,103,104,100,104,117,101,98,101,101,105,116,108,106,110,100,94,94,96,124,107,96,121,113,99,95,107,102,109,111,114,104,109,104,104,107,109,94,97,106,111,113,108,99,113,92,69,110,75,101,101,110,109,111,98,106,104,103,111,102,118,109,101,95,93,101,94,98,103,108,105,112,100,116,109,115,100,99,109,87,104,91,103,105,103,106,103,103,100,113,79,116,102,98,104,101,104,104,102,88,118,103,113,104,94,104,119,109,104,108,101,106,103,90,98,96,107,105,102,95,103,103,107,108,112,113,105,103,103,111,109,98,102,93,106,109,106,119,108,98,113,123,101,106,112,105,111,108,105,104,106,111,105,107,108,107,98,112,121,104,109,106,115,108,106,113,103,111,107,108,78,110,107,108,82,101,110,98,123,105,103,107,89,104,101,105,103,102,114,101,103,108,107,107,107,90,108,114,113,101,102,93,106,116,108,112,102,96,101,104,100,104,101,98,108,95,109,99,109,100,95,106,98,99,106,91,98,95,111,106,97,108,104,100,111,103,94,97,105,115,109,108,102,109,93,101,98,96,107,93,100,112,117,104,102,103,99,93,105,108,91,110,98,101,106,104,109,102,107,102,110,105,106,107,118,109,105,91,113,104,116,105,109,106,110,111,109,113,110,98,101,102,102,104,99,99,82,91,101,103,101,115,104,99,104,83,102,105,99,75,98,104,104,66,97,103,98,100,95,100,98,112,98,108,112,108,110,111,90,112,102,96,104,103,99,98,109,91,109,116,95,109,107,98,104,108,97,104,109,99,102,91,98,107,116,107,105,123,104,103,119,109,103,111,101,108,108,119,113,97,86,99,100,107,101,111,101,98,103,108,121,113,97,80,100,98,118,109,108,110,102,95,97,107,75,116,98,99,98,105,98,117,105,106,101,112,106,100,98,113,100,110,87,74,107, +541.96808,110,97,108,104,93,108,92,101,100,94,110,108,100,121,109,108,91,110,101,96,100,98,103,106,118,103,95,93,100,111,103,101,101,93,116,107,103,100,86,105,118,100,102,105,106,107,104,102,104,108,102,82,78,100,68,99,102,108,102,115,110,101,131,98,113,105,104,90,112,98,108,107,102,107,106,109,102,92,94,107,102,103,76,100,111,100,99,106,98,98,103,97,99,102,103,116,101,101,79,97,111,101,102,103,95,99,105,112,119,105,106,94,105,106,101,100,92,103,98,94,100,104,104,119,99,100,98,108,109,91,107,105,85,100,97,107,115,104,111,99,92,116,105,96,108,107,103,104,94,114,97,82,106,120,106,104,109,102,96,113,100,106,96,97,101,106,106,104,116,97,87,103,98,107,95,109,99,98,118,119,102,94,98,110,105,107,104,61,103,95,102,102,108,112,95,97,99,123,109,92,102,100,94,108,95,108,113,111,107,106,103,113,104,99,106,97,96,94,94,100,102,100,112,105,113,105,99,115,117,108,106,102,100,109,105,98,107,101,106,98,105,96,100,113,96,108,106,99,95,102,97,99,116,102,103,95,92,104,105,99,96,105,110,99,101,84,118,103,109,100,111,90,112,80,95,131,100,105,105,92,110,100,108,107,106,118,106,114,106,101,98,107,127,111,111,107,113,111,95,100,100,103,113,114,105,117,109,117,114,114,78,100,103,100,94,114,114,108,102,109,102,97,111,104,104,118,98,97,103,114,118,104,108,108,101,117,94,102,101,116,114,105,91,105,110,111,111,111,109,109,100,109,103,104,103,104,111,93,102,129,95,112,99,89,105,100,109,109,104,118,112,104,95,111,105,94,103,117,106,105,117,106,107,129,99,112,100,104,100,108,114,86,91,106,105,108,99,108,100,104,96,110,106,106,95,98,101,96,90,100,107,101,108,109,105,99,103,103,101,120,101,106,98,111,102,95,101,103,102,88,95,99,101,104,102,109,90,99,111,112,115,110,98,101,99,110,96,101,110,121,99,103,104,85,103,107,104,127,98,107,118,105,93,114,111,110,108,100,105,114,109,115,111,92,96,114,99,105,109,108,95,105,110,95,109,99,109,107,95,96,109,109,101,113,109,99,101,101,113,110,109,100,98,108,114,100,108,101,100,120,116,117,111,106,122,104,113,95,105,107,96,114,103,112,91,113,98,93,96,85,104,106,113,98,120,103,110,104,105,117,101,109,95,95,94,111,110,117,109,99,112,91,103,114,111,113,97,103,92,107,108,104,101,100,105,91,97,105,89,97,105,102,116,109,108,100,116,115,104,107,112,101,104,98,96,110,111,100,109,103,113,104,109,100,113,109,100,102,91,109,116,117,96,104,105,98,106,111,103,117,111,99,101,120,104,110,99,113,96,96,110,95,102,109,108,108,98,108,106,104,101,105,106,103,133,99,107,113,119,111,109,109,97,99,107,103,111,65,96,118,111,92,112,111,103,109,112,107,94,115,112,113,107,108,104,107,108,100,117,107,105,86,108,102,102,108,106,100,118,93,107,103,114,104,96,98,98,108,100,101,109,113,96,100,111,97,115,101,100,93,96,102,105,100,116,105,94,114,110,109,95,99,118,97,95,110,99,101,101,94,99,110,103,106,106,92,105,96,107,115,102,105,106,95,99,109,98,109,109,107,110,103,103,111,106,97,104,118,108,115,121,108,104,107,110,111,96,104,113,106,99,111,103,118,101,105,104,109,110,100,93,114,116,99,101,115,98,104,87,111,101,116,96,100,107,94,105,120,106,110,103,118,101,109,98,112,99,99,110,111,113,102,91,107,121,103,110,88,107,111,108,106,110,99,101,102,99,107,104,98,114,116,110,106,110,102,109,99,107,97,112,96,110,110,105,104,100,102,105,107,108,101,104,100,102,105,114,103,98,87,101,105,100,107,99,98,107,94,113,102,106,106,102,102,103,97,94,106,111,114,108,111,123,90,101,100,110,106,108,107,104,115,99,98,105,105,98,117,107,101,111,112,111,111,110,106,106,100,97,103,95,96,102,114,102,101,110,106,104,110,101,103,113,95,105,104,114,110,98,106,109,98,105,98,112,110,102,124,111,107,107,109,108,109,92,101,88,90,108,121,113,102,114,105,107,102,100,94,90,99,105,116,122,106,96,115,99,102,97,113,114,108,110,99,98,103,88,110,102,90,103,105,106,116,101,105,101,104,112,100,99,109,109,104,101,102,98,105,104,102,113,98,111,99,100,101,108,107,101,92,99,102,99,104,115,107,104,104,111,95,105,99,104,130,117,98,113,92,98,107,99,110,105,90,119,106,107,116,99,105,124,109,98,113,108,100,109,113,100,125,106,111,113,104,96,103,98,109,117,105,108,106,116,111,121,109,105,110,92,109,96,110,108,110,91,95,111,81,65,95,107,114,101,138,109,100,96,115,102,99,116,100,103,123,133,110,99,105,112,104,101,110,105,112,112,109,116,106,119,113,98,103,104,105,101,108,97,105,95,102,103,98,108,97,100,101,100,77,104,109,105,101,107,102,100,120,106,103,113,111,106,97,104,119,126,97,95,97,102,96,104,112,102,108,116,100,95,112,114,101,116,112,111,107,109,116,116,103,104,103,124,108,105,101,103,125,94,101,115,108,99,108,105,110,106,99,109,97,104,109,94,109,104,116,114,109,112,102,104,110,111,115,110,111,116,111,100,99,117,95,99,101,105,109,103,120,106,98,109,105,100,107,103,112,96,115,113,138,110,103,120,102,102,108,91,98,103,111,103,99,100,105,98,102,108,103,92,105,102,104,108,108,110,104,103,105,106,111,95,106,101,107,115,103,109,109,96,120,112,112,101,116,68,117,100,109,108,106,95,107,109,108,89,109,100,100,106,110,122,91,115,117,106,105,103,109,105,103,105,100,102,114,109,106,104,104,95,108,109,106,96,106,101,94,102,107,115,110,99,104,117,100,98,109,111,112,108,101,107,108,99,110,104,109,106,109,104,108,104,96,123,96,99,107,107,117,109,117,105,96,110,108,104,108,104,111,123,119,107,95,105,104,99,105,111,109,105,114,105,104,96,91,112,98,114,110,109,91,102,123,96,102,116,116,110,112,102,104,109,97,96,99,105,116,96,106,106,107,94,110,109,106,116,96,102,106,94,97,118,97,107,99,109,107,89,100,105,107,112,105,100,100,116,113,124,98,102,111,133,103,134,101,100,109,94,103,109,109,119,105,113,113,95,102,108,96,108,115,108,113,98,105,110,93,102,121,99,110,99,89,106,97,109,95,112,108,113,112,113,107,118,107,102,103,102,100,108,98,94,111,113,109,112,108,106,114,115,107,106,113,100,116,99,103,109,103,103,116,113,106,100,104,96,105,78,109,112,115,91,103,92,113,99,111,93,110,116,96,98,105,107,108,93,104,110,120,120,79,107,95,111,104,105,105,98,94,112,101,115,109,115,100,113,111,113,100,103,108,124,109,104,106,98,102,116,92,110,122,100,99,110,103,100,70,110,108,106,109,95,106,101,117,108,103,104,115,105,113,116,117,117,96,107,107,110,113,109,105,100,100,114,116,112,103,91,104,103,100,113,105,109,114,111,109,112,115,109,101,108,108,105,98,98,109,99,105,115,103,99,112,98,99,96,98,96,100,108,109,106,105,99,90,99,108,103,107,102,99,109,105,109,100,119,105,99,105,111,106,101,97,97,103,105,105,114,106,100,109,105,99,106,103,111,92,100,109,98,103,113,109,100,98,123,109,98,107,103,104,106,108,97,100,116,101,112,109,101,116,96,106,101,110,99,102,101,114,115,106,106,128,101,110,105,110,98,80,107,100,110,118,106,108,107,106,105,102,102,88,104,102,103,105,111,88,108,105,116,99,101,110,117,104,101,102,91,100,116,105,102,117,91,99,108,107,109,99,111,92,108,97,103,99,94,105,101,117,115,109,106,94,100,111,102,106,98,109,112,105,98,118,115,106,94,104,110,88,96,103,113,99,109,107,103,106,99,106,107,101,129,107,111,103,101,115,112,103,119,111,105,103,114,102,100,104,105,104,98,103,107,97,98,113,95,105,115,110,105,110,94,108,105,112,103,107,109,103,98,94,110,95,110,94,108,104,111,108,114,105,118,88,104,92,102,102,110,101,104,107,103,109,100,100,112,99,106,103,107,100,112,107,100,107,103,115,87,108,104,112,91,120,92,103,113,96,102,101,105,95,98,109,105,99,124,108,98,111,103,109,95,99,117,99,119,128,105,98,101,99,119,98,111,95,115,93,109,113,95,107,110,108,116,95,109,101,103,107,95,105,112,99,104,95,105,114,114,102,113,101,105,99,91,107,98,101,105,94,103,107,105,104,95,115,100,96,106,103,113,108,115,92,98,97,105,102,101,110,113,110,123,100,108,99,96,104,100,104,104,102,106,108,105,100,109,105,96,84,111,106,98,108,99,95,106,104,99,100,87,102,115,90,98,94,102,113,101,98,91,112,105,93,101,90,98,103,109,105,102,104,117,98,101,107,102,86,99,108,92,104,104,104,99,104,108,95,95,106,111,114,100,100,119,95,95,114,116,103,111,105,111,102,107,99,105,110,102,105,107,100,98,100,106,99,105,92,109,95,113,91,111,99,98,100,109,101,96,102,107,95,107,95,97,99,119,108,113,93,115,103,113,96,98,116,95,105,119,90,108,95,102,103,96,102,94,109,107,108,114,92,100,99,104,103,100,100,102,100,93,107,104,97,101,102,99,98,93,103,113,90,128,116,108,113,109,126,102,99,106,119,106,108,116,101,97,95,103,102,104,109,101,107,109,109,97,103,97,108,102,102,113,97,105,114,109,122,113,112,99,108,99,90,106,100,76,102,118,106,119,115,103,102, +542.10889,113,98,96,101,99,104,100,111,98,106,99,109,104,103,109,105,80,94,77,99,100,107,109,99,103,109,102,102,106,91,104,116,82,125,104,110,99,110,102,104,100,106,99,58,129,106,101,98,94,105,90,99,104,102,106,103,111,98,110,98,113,94,107,91,120,93,108,105,110,87,90,104,97,113,112,103,101,95,109,105,104,109,96,102,86,100,104,100,109,100,101,109,98,106,109,106,105,98,94,107,106,96,116,104,98,103,102,103,116,97,93,115,115,98,97,113,99,95,95,103,102,91,103,108,105,107,106,113,114,109,100,111,110,100,114,91,111,107,94,100,110,112,94,106,113,109,111,106,98,101,115,99,112,105,106,129,97,95,96,101,96,103,90,103,105,106,120,108,101,103,99,106,102,112,107,96,109,106,94,104,107,110,110,104,109,114,96,92,100,98,122,99,109,98,104,107,115,101,111,110,91,113,126,121,103,110,103,111,119,108,112,112,100,111,108,98,101,112,111,112,114,115,98,105,98,104,113,111,115,111,110,103,91,95,112,109,113,113,103,99,104,101,115,110,104,104,106,104,108,112,110,114,106,109,99,107,89,121,106,119,109,102,102,102,100,109,108,103,107,104,99,108,95,116,105,103,101,107,97,100,93,115,98,102,115,100,100,105,114,107,108,104,111,111,107,109,110,103,89,114,102,100,106,105,92,111,98,112,107,118,98,111,103,102,101,95,109,109,101,66,96,96,95,115,106,109,111,101,101,109,107,101,114,101,103,104,105,96,114,120,109,113,109,95,108,99,105,106,97,103,105,98,103,104,112,103,99,94,108,102,97,105,95,100,75,105,105,100,104,123,99,113,105,97,97,103,110,99,102,90,107,100,109,114,107,99,97,105,102,104,110,105,101,108,102,99,108,94,103,121,105,110,100,87,104,95,100,100,124,104,95,95,101,118,108,105,108,105,101,101,97,112,107,100,103,98,105,93,92,108,106,105,103,99,106,104,101,105,109,105,106,105,95,110,87,110,99,119,108,100,106,106,106,104,97,105,104,102,106,105,101,100,109,88,113,111,107,98,102,95,107,102,107,102,108,102,110,120,102,101,109,106,111,105,109,105,109,99,104,116,103,98,109,107,110,112,110,100,105,95,109,105,117,99,96,115,102,103,100,95,112,96,107,105,111,103,99,103,114,91,99,125,108,91,101,105,109,104,98,108,108,101,104,108,94,108,103,108,104,109,111,109,105,111,109,100,108,96,103,126,103,103,103,101,98,95,77,101,104,97,114,111,96,103,112,102,108,94,113,108,104,100,98,103,110,107,116,134,109,92,94,110,108,110,116,100,108,110,106,96,105,110,109,103,107,116,106,102,100,117,109,101,100,104,90,100,105,113,106,100,108,110,105,108,107,103,99,109,111,107,110,112,110,102,98,114,104,102,90,109,111,109,95,113,106,118,110,113,101,90,116,90,103,102,105,107,111,97,92,110,105,106,112,106,100,112,106,112,111,95,106,114,113,98,80,114,114,104,96,109,92,105,107,94,102,117,99,107,101,95,104,101,100,103,95,105,110,101,100,117,109,115,80,100,113,110,98,104,85,104,113,102,98,98,104,114,113,115,99,101,94,102,104,103,93,105,108,96,112,98,103,111,119,110,112,105,97,107,99,101,93,113,91,99,103,99,105,95,90,108,107,111,103,104,102,100,116,110,112,114,105,98,95,104,100,110,106,121,108,120,96,101,102,99,103,103,102,107,97,91,105,101,104,111,88,98,105,97,111,106,108,111,101,106,103,109,104,97,100,110,100,100,112,97,112,100,106,101,100,99,108,109,104,87,125,90,109,104,111,97,115,98,104,102,105,127,91,107,109,107,99,98,103,103,104,109,109,110,116,103,123,88,102,98,107,100,94,92,102,108,99,95,100,103,103,105,102,90,105,97,109,92,95,103,107,112,104,110,89,107,105,105,92,107,101,95,103,130,101,102,99,108,109,103,98,106,82,103,95,98,106,105,109,99,106,102,91,112,107,105,101,111,107,91,103,92,100,94,108,110,103,110,99,112,103,110,78,102,92,113,110,93,132,112,109,108,109,106,76,111,104,106,100,95,97,108,96,81,96,97,104,93,96,111,95,104,103,113,110,108,106,104,100,110,103,109,119,108,109,109,105,101,117,99,116,116,107,97,104,115,103,120,117,109,119,96,101,100,104,110,101,96,107,109,98,107,101,95,102,103,105,105,99,96,102,104,117,91,101,111,104,101,102,94,100,96,92,85,103,99,102,98,100,98,103,103,105,99,100,108,114,113,102,106,101,100,107,101,114,103,109,113,103,115,98,110,92,97,107,107,101,101,109,114,115,98,97,110,107,121,107,92,104,109,111,112,106,105,113,100,101,111,124,115,105,114,103,111,121,117,104,110,115,105,99,99,101,103,107,98,99,111,94,99,101,113,109,110,100,110,103,112,106,121,114,107,102,97,93,121,107,113,104,97,100,105,99,113,104,111,117,101,109,105,116,114,113,112,140,103,108,105,117,111,110,110,93,80,95,116,88,113,110,112,101,111,104,112,100,107,112,111,104,105,112,88,113,106,107,97,104,104,101,112,98,109,103,105,117,95,118,105,111,114,103,113,109,111,101,99,104,100,98,91,105,104,113,99,99,116,106,108,94,126,106,101,120,108,114,98,111,114,101,105,107,98,108,107,110,94,105,103,105,108,110,116,108,103,96,113,101,117,107,96,102,111,111,111,107,102,104,108,106,112,110,112,107,110,104,99,102,80,100,106,113,110,112,105,107,100,99,106,101,103,106,113,109,99,108,111,103,112,106,103,106,107,115,105,115,109,100,103,112,99,104,107,102,75,107,115,129,101,105,109,103,120,98,108,99,109,110,103,106,115,106,108,114,118,111,116,113,108,114,97,104,104,104,106,113,101,91,106,103,103,136,102,107,104,109,109,96,105,101,114,104,108,110,113,101,113,118,119,102,101,111,108,119,130,107,101,103,111,104,106,94,108,135,105,109,109,107,99,102,116,108,106,116,108,119,112,101,110,111,112,108,105,109,94,115,100,102,109,103,110,109,107,103,81,104,100,103,120,106,98,108,102,109,103,120,105,103,109,111,115,103,110,110,107,109,98,98,104,102,108,107,105,100,88,107,111,100,85,103,109,98,108,111,119,109,96,105,110,104,111,107,106,107,112,108,102,103,110,104,104,109,106,107,100,109,106,102,102,108,94,111,112,100,102,108,109,112,106,107,111,91,104,109,113,112,111,103,100,117,110,105,97,100,98,106,101,103,101,105,97,120,100,105,96,112,111,117,111,98,101,103,113,91,98,104,109,112,102,105,103,99,82,108,103,112,98,112,94,116,104,108,115,104,117,103,105,104,108,102,101,105,94,100,113,121,105,104,101,102,108,105,105,99,108,96,103,101,102,104,102,115,95,110,111,113,98,111,98,102,99,101,103,109,112,102,108,114,106,99,104,107,108,112,110,108,108,110,109,96,103,107,102,92,102,93,114,111,110,110,114,109,103,103,113,94,112,111,104,108,109,107,109,88,105,129,111,110,110,113,114,109,105,103,104,110,99,96,95,104,113,114,111,102,112,105,101,101,98,114,111,95,93,105,113,101,109,106,104,131,103,117,105,109,113,103,106,104,86,108,113,104,106,100,106,109,95,99,94,110,102,101,108,115,111,99,115,120,111,117,111,95,112,105,98,108,124,109,114,104,110,100,94,100,92,92,99,113,109,102,95,98,110,106,102,96,117,104,105,103,116,101,102,120,98,113,106,110,102,109,102,109,102,101,104,104,99,101,106,111,107,118,97,93,107,90,105,98,97,102,100,108,104,113,69,101,117,110,104,109,97,108,113,101,109,98,95,109,109,98,104,87,108,100,97,100,100,97,99,108,107,106,100,101,117,113,100,108,103,111,105,104,121,104,95,117,113,99,98,94,110,100,110,109,112,95,109,102,113,114,99,117,107,104,106,107,111,100,94,98,109,109,82,96,108,111,113,110,102,113,110,101,102,101,96,105,99,108,113,96,100,102,106,109,109,111,95,103,106,112,104,110,101,98,102,103,101,108,108,93,105,96,103,108,101,101,96,115,100,101,104,115,124,105,104,119,129,95,101,100,106,103,103,105,107,110,103,125,98,105,103,104,95,101,102,100,104,90,99,109,109,96,103,99,119,103,109,115,115,106,99,107,101,124,114,101,105,102,109,92,80,98,100,116,98,102,101,113,107,89,138,110,103,106,111,109,122,101,112,107,106,110,112,94,104,110,106,108,101,100,99,111,97,106,110,113,125,105,107,96,113,111,112,121,101,112,100,111,98,104,113,109,102,107,112,111,106,106,81,109,101,101,111,99,91,104,98,112,98,113,119,116,104,107,111,111,112,94,90,106,97,112,102,101,112,106,104,135,99,108,117,109,98,101,91,103,121,112,104,124,102,116,100,101,113,98,95,103,111,101,106,104,102,108,92,117,104,103,93,108,109,98,110,107,110,96,93,97,110,99,103,108,112,107,117,111,98,103,107,96,102,107,102,98,103,109,101,103,100,108,108,94,110,104,108,97,98,114,96,94,112,115,98,100,99,107,95,95,99,103,108,110,92,108,95,104,100,107,99,101,107,105,109,113,103,99,108,101,107,110,113,86,105,104,106,117,100,99,109,101,91,108,119,106,91,100,96,107,115,113,115,117,111,97,101,87,105,96,101,107,93,102,107,90,104,107,102,111,100,105,110,112,103,105,102,112,99,98,102,103,113,95,98,94,110,110,92,112,111,106,104,102,116,116,110,113,115,126,119,104,101,120,103,116,99,103,102,99,105,93,111,98,108,113,117,94,113,117,87,101,104,97,107,101,112,98,111,105,111,123,87,105,107,90,110,97,110, +542.24976,112,124,90,98,115,113,101,105,101,95,101,95,95,114,88,102,104,99,109,100,119,106,104,106,95,102,112,77,104,105,100,86,95,104,108,98,103,114,107,117,103,114,92,116,94,115,96,108,108,102,113,75,100,100,108,99,106,106,101,95,104,102,94,98,99,105,108,106,96,100,90,102,105,110,99,110,103,109,98,118,108,112,103,99,105,95,106,111,95,104,116,134,103,103,81,100,109,98,103,99,109,100,99,107,100,96,109,108,108,110,106,109,106,102,112,107,98,105,109,99,102,100,118,102,98,125,103,105,118,105,109,107,99,96,102,118,111,74,109,82,103,113,129,98,112,95,99,95,105,103,96,104,97,105,99,101,111,111,100,121,105,100,106,97,104,109,112,102,121,116,106,77,90,101,103,101,112,100,102,113,105,102,98,100,112,99,111,98,107,100,104,125,97,119,102,104,98,102,100,112,102,109,103,117,101,108,93,97,108,103,107,101,108,113,98,107,99,109,97,106,107,105,107,109,98,107,105,120,117,103,118,115,107,109,112,102,104,111,104,113,105,111,104,106,101,121,105,95,117,111,99,99,103,110,104,116,96,98,96,109,92,114,104,107,92,119,103,106,116,104,109,84,103,109,113,107,108,105,104,94,98,115,117,110,109,114,98,111,118,114,110,105,119,107,115,102,96,97,110,102,105,118,109,94,110,93,100,107,96,106,87,107,101,108,106,125,123,107,108,103,114,105,105,106,108,106,107,90,113,105,111,95,119,105,112,107,106,110,108,103,104,107,100,99,102,115,106,116,83,109,106,94,113,108,114,105,101,110,105,105,97,108,109,100,102,95,109,112,89,96,99,108,111,103,99,107,111,106,110,99,118,108,102,112,101,105,102,92,107,105,115,103,100,107,103,111,110,108,74,106,102,109,98,113,111,97,107,113,93,102,91,99,126,119,99,104,113,107,103,86,105,113,105,91,105,93,90,100,92,108,108,111,100,111,97,103,102,108,95,112,118,96,99,105,101,108,109,105,103,107,108,108,92,106,97,103,96,110,102,102,96,99,121,109,102,104,98,108,108,107,92,98,126,107,101,109,95,109,103,111,103,117,108,112,90,112,114,106,109,111,111,105,112,113,99,103,85,122,93,107,106,111,98,109,95,111,91,105,101,96,109,106,101,105,113,115,107,110,113,93,106,84,103,105,99,106,111,89,100,87,106,102,125,100,98,98,105,104,116,132,105,112,101,108,121,83,104,103,105,107,109,107,103,108,99,99,116,112,111,109,112,107,104,112,104,102,102,111,107,107,92,105,92,99,109,110,99,102,105,104,112,94,108,97,99,107,114,108,110,111,106,121,115,108,113,107,105,95,121,115,98,106,114,105,100,110,105,104,113,109,111,97,102,105,116,102,114,99,104,114,105,107,102,100,113,95,97,112,101,107,111,116,100,108,97,110,102,98,105,109,113,100,102,103,107,95,111,103,108,109,120,106,108,102,120,99,108,116,110,110,107,100,100,107,113,104,107,109,110,112,114,103,95,101,106,107,92,119,106,92,111,111,100,99,100,100,110,107,106,119,97,117,106,117,105,73,102,115,102,98,98,102,105,113,103,118,102,102,91,98,95,110,88,102,129,104,105,106,99,109,102,105,110,104,114,99,109,104,117,102,108,118,103,104,119,104,87,104,100,103,110,110,107,104,107,113,112,109,100,102,104,73,102,106,103,111,104,102,108,111,103,106,94,105,102,106,96,107,110,103,105,98,108,99,82,108,104,109,97,101,97,108,102,103,101,121,113,111,113,106,121,107,95,109,105,112,104,98,102,106,93,115,105,107,102,95,108,102,104,106,121,108,102,123,103,95,116,112,100,102,111,112,110,109,121,104,108,99,107,104,111,111,102,111,110,102,85,107,112,107,109,107,117,104,94,106,113,82,104,90,94,103,108,113,99,111,107,104,102,88,95,115,116,105,102,104,103,118,122,108,105,106,106,110,109,104,105,95,111,104,94,117,90,106,105,106,111,111,109,102,116,117,105,111,106,112,94,98,110,107,107,111,108,112,107,101,101,96,100,102,103,104,112,103,115,98,102,104,101,113,103,124,107,112,95,111,130,104,102,115,98,107,102,109,108,104,103,106,108,114,99,114,106,107,102,108,102,103,102,90,111,107,120,95,116,106,103,104,101,118,111,114,106,106,113,103,93,101,101,101,102,105,107,109,102,110,105,92,98,110,99,111,118,72,112,106,101,104,87,94,95,110,87,108,104,98,104,101,107,99,114,94,101,103,109,111,117,102,104,116,114,101,103,104,108,97,103,107,119,96,107,100,102,87,107,103,101,100,107,92,113,119,99,104,100,101,103,103,103,118,104,117,104,107,104,110,111,98,108,115,114,116,110,99,99,96,102,91,119,118,116,108,113,102,102,115,106,108,122,103,103,117,103,99,100,103,108,109,87,103,104,102,80,111,117,104,104,103,104,117,109,102,108,103,109,109,117,93,108,100,103,92,112,102,104,108,94,100,106,105,107,123,112,93,108,98,114,110,92,105,121,104,101,107,106,106,113,124,110,109,100,115,105,110,101,92,102,107,103,104,95,110,102,101,98,103,109,112,110,100,117,99,105,102,112,99,112,101,108,107,106,109,125,98,96,103,102,90,108,104,100,104,105,111,108,98,101,99,109,106,108,109,87,100,109,103,112,103,110,104,100,113,108,109,98,108,103,104,103,97,102,105,96,103,99,108,100,98,102,104,113,97,102,110,104,107,114,106,103,104,92,102,102,102,95,98,106,106,115,103,90,106,100,111,106,110,104,110,113,117,101,92,90,72,91,100,107,100,99,108,103,93,102,103,96,99,99,113,102,112,107,100,102,101,95,97,121,107,102,103,102,111,110,119,103,98,107,100,104,104,114,108,128,110,96,104,118,101,103,99,104,101,97,107,105,114,113,105,103,105,102,110,100,100,102,105,109,102,102,103,100,104,100,103,105,114,100,95,96,85,110,97,97,107,96,115,106,99,98,101,102,117,90,112,110,98,108,96,107,101,109,108,105,101,106,108,100,100,103,100,98,98,96,121,97,103,109,96,101,95,106,107,104,101,129,100,110,105,100,101,102,101,129,103,101,100,101,102,106,103,104,91,105,108,104,100,99,106,106,119,101,95,106,103,95,78,113,105,108,101,119,108,112,105,119,106,103,106,104,111,99,104,98,105,96,86,96,101,99,109,110,92,105,105,100,90,107,104,106,97,106,106,114,95,113,97,98,111,85,84,104,94,109,102,106,97,109,99,85,98,106,102,104,112,101,116,94,106,102,86,98,108,108,106,99,108,106,101,76,95,95,108,114,96,96,98,108,141,108,102,101,90,105,105,107,99,106,109,112,99,120,101,105,102,99,99,104,107,118,98,104,99,99,109,96,90,103,124,103,111,108,104,101,105,106,100,106,109,106,100,106,114,109,111,91,117,100,106,102,106,103,101,113,105,116,117,112,112,112,100,98,111,113,109,111,100,97,93,111,103,106,104,107,106,103,100,109,98,103,103,102,105,109,103,102,107,98,96,107,111,109,87,111,115,80,105,95,109,108,98,90,111,107,108,105,110,102,103,106,104,99,99,113,103,109,105,96,103,95,98,109,106,106,109,100,102,119,95,92,107,95,104,101,106,111,106,107,104,110,101,106,95,105,97,108,98,96,108,103,96,104,108,113,100,109,103,97,114,105,103,98,107,98,112,106,98,96,129,102,94,114,110,106,92,112,108,102,99,103,99,110,108,90,117,96,96,95,97,91,106,93,108,100,111,95,102,108,108,101,111,110,102,102,103,107,102,101,98,105,104,100,110,99,108,108,109,107,88,104,104,102,105,115,103,109,113,91,109,102,100,113,98,104,103,106,105,99,100,109,107,100,103,101,99,108,100,106,96,103,80,106,107,116,105,105,104,104,106,105,110,108,112,95,111,103,100,90,110,105,101,116,103,102,126,106,87,102,98,122,107,109,107,102,112,108,98,99,99,106,107,107,122,102,100,106,119,105,101,99,111,106,105,109,108,106,99,96,100,118,111,91,93,100,91,94,110,105,100,99,95,104,99,106,109,104,105,98,125,97,116,104,108,101,92,99,116,100,89,103,107,103,101,113,103,104,103,106,97,106,83,103,100,100,94,90,103,75,104,115,92,99,111,102,108,92,106,102,106,103,106,99,91,102,105,113,102,91,102,107,109,108,117,101,95,113,107,115,110,103,94,108,102,102,104,108,109,91,104,100,96,110,95,109,101,97,112,107,99,100,111,113,99,115,103,111,99,95,107,100,111,109,102,113,104,113,105,101,106,107,108,109,94,109,103,109,102,120,91,105,106,100,105,111,102,101,105,109,95,109,98,110,95,105,103,106,101,103,104,96,109,68,96,106,106,108,74,100,110,102,97,109,74,104,104,104,91,94,101,95,100,109,110,83,118,103,96,110,108,104,111,93,100,100,101,101,114,96,108,102,95,99,93,115,75,116,110,99,101,106,104,97,96,109,102,99,91,108,102,112,112,104,100,99,81,102,103,105,114,98,104,100,112,103,100,104,107,116,100,112,107,84,106,105,105,108,91,104,92,106,102,99,111,96,103,98,97,91,102,116,113,95,96,106,100,121,107,97,113,88,95,104,105,101,108,93,95,109,101,94,104,115,111,103,97,112,103,108,113,95,91,113,109,110,109,103,107,109,97,102,98,102,112,99,95,89,71,102,103,95,104,92,96,112,95,98,108,93,112,97,109,112,98,100,93,100,69,108,104,106,99,115,111,112,64,95,102,108,102,108,111,124,99,96,91,110,111,115,113,94,96,109,93,104,110,142,107,91,103,125,104,98,102,105,95,104,104,108,104,100,103,99,111,100,114,108,94,108,95,96,88, +542.39056,120,106,99,108,105,106,90,112,107,109,108,111,94,99,100,96,101,109,101,100,106,91,112,107,116,112,87,99,111,105,101,99,107,100,82,94,124,99,95,106,103,106,97,105,108,113,97,110,94,117,99,97,105,93,106,92,108,102,103,99,104,93,104,83,110,103,97,97,94,95,118,113,95,109,102,104,108,85,101,100,111,104,102,101,103,102,95,106,88,103,97,101,95,105,89,102,104,87,123,97,103,101,103,94,114,108,105,95,107,108,97,96,108,102,100,111,104,108,108,100,102,112,112,101,104,112,107,100,110,99,103,112,97,109,98,108,112,104,107,100,82,110,111,106,101,108,100,117,97,92,92,99,103,96,101,108,96,105,101,104,98,103,98,108,105,103,105,86,105,109,95,103,98,106,105,113,101,102,102,106,108,106,94,95,100,93,94,95,94,95,106,109,108,107,105,100,97,104,108,106,96,92,109,91,109,94,104,96,111,106,110,102,105,104,105,95,96,110,105,101,109,104,91,104,79,102,96,108,92,105,111,113,104,104,91,100,108,115,111,104,94,100,112,102,102,90,85,102,98,102,95,109,118,105,112,95,96,104,102,105,104,102,102,97,93,107,94,95,111,101,108,99,108,106,103,104,100,101,100,103,100,108,115,118,96,99,89,91,106,104,95,115,100,116,113,105,106,101,99,94,103,99,105,117,106,108,98,102,124,114,97,112,108,118,109,96,99,111,101,107,91,90,112,95,106,104,100,84,108,108,101,95,101,97,101,106,113,97,106,107,73,101,92,100,107,112,105,106,108,112,108,86,119,95,99,100,105,106,102,111,103,100,93,105,104,100,84,111,94,132,105,105,112,96,128,97,107,99,110,111,100,109,92,106,104,97,96,105,103,102,110,103,88,106,93,101,95,109,96,101,101,107,111,108,102,104,106,98,106,117,116,92,117,98,106,100,102,108,107,101,112,102,100,98,101,105,113,117,103,101,97,95,111,104,113,102,104,104,96,108,122,109,116,107,101,114,81,105,111,86,106,110,106,109,103,115,103,102,106,97,117,102,112,114,108,96,109,114,110,88,100,106,103,105,98,93,101,107,113,99,107,115,112,101,108,92,105,111,110,106,105,102,100,104,117,98,101,109,111,104,125,96,105,108,94,105,99,96,98,99,102,105,112,107,92,105,88,103,105,93,107,116,106,96,103,113,104,110,106,94,99,105,102,109,98,109,108,101,107,108,105,117,104,96,120,114,115,94,101,105,99,104,96,105,103,108,108,115,101,92,106,103,99,95,91,111,107,115,101,98,87,110,113,105,114,95,110,106,112,101,122,94,105,135,97,97,114,110,106,102,112,97,103,99,108,114,103,95,98,99,100,104,99,94,106,107,100,132,106,110,98,97,112,102,112,103,100,99,104,92,113,106,106,106,89,103,106,98,105,107,104,109,104,101,107,102,114,100,108,99,102,118,84,111,80,100,100,96,113,113,97,98,118,118,105,103,111,109,111,104,111,102,112,107,106,109,95,106,109,103,111,129,104,107,94,116,100,100,101,80,98,104,103,116,96,105,106,95,98,99,103,105,107,98,96,105,98,103,105,105,108,95,107,101,126,114,97,113,104,101,99,130,99,95,103,100,102,99,102,93,99,96,96,114,113,108,104,111,112,104,103,101,100,95,96,107,108,100,110,94,97,96,108,109,103,98,109,107,109,98,104,93,111,107,103,95,98,112,113,95,114,125,110,92,109,108,98,101,112,104,112,113,115,112,107,110,104,91,100,97,110,104,108,121,100,111,106,108,102,114,102,98,101,116,90,99,114,104,109,103,98,96,102,109,113,107,117,103,104,104,116,102,101,110,112,92,108,107,113,107,89,110,105,109,95,99,112,103,107,95,100,102,99,105,96,99,106,102,106,102,104,101,109,104,104,101,98,99,112,100,101,106,107,84,104,110,106,106,96,112,107,111,105,113,96,95,100,102,113,102,105,101,93,80,97,111,113,105,101,98,102,105,121,108,99,102,105,102,96,88,108,116,105,112,103,93,101,110,90,101,112,125,103,103,116,109,101,90,113,112,117,104,113,106,105,75,97,100,103,112,106,107,102,100,107,90,99,107,111,112,91,116,107,104,96,97,108,100,110,111,95,107,97,103,108,108,105,98,104,101,104,107,101,92,111,99,104,100,102,104,105,111,109,116,140,110,107,110,103,79,96,110,104,100,110,105,104,112,95,103,100,112,100,113,110,95,91,103,103,111,110,100,99,102,103,107,109,91,104,104,94,114,102,91,116,97,108,107,109,101,105,91,106,102,105,102,107,103,105,99,96,109,104,101,119,114,114,97,97,104,103,104,108,98,112,93,112,107,112,105,107,98,117,108,92,107,101,117,108,122,93,103,105,100,103,118,108,117,115,99,110,107,88,112,108,109,88,111,108,109,105,108,91,109,100,107,104,106,90,105,105,107,113,101,107,112,91,99,89,112,104,95,98,104,98,109,91,119,122,120,105,109,104,107,102,103,86,110,108,108,102,107,108,105,110,125,107,108,95,88,108,112,99,94,108,109,87,110,102,108,111,112,106,97,107,101,108,92,100,96,110,93,105,103,94,97,101,103,116,103,108,100,123,111,105,97,104,112,97,96,99,103,106,89,127,113,113,99,112,104,113,115,99,117,87,111,96,102,111,102,105,108,99,107,108,106,103,104,106,108,100,88,111,98,98,99,117,97,102,116,104,105,119,108,110,117,109,116,120,91,118,114,115,107,106,102,102,114,103,103,110,97,113,102,105,106,104,109,97,95,101,110,100,115,90,102,112,103,110,112,107,114,113,109,111,109,106,104,101,104,110,93,114,100,105,104,113,105,105,117,117,105,101,104,115,114,113,106,100,112,111,104,106,112,119,98,111,119,100,107,109,107,106,115,110,102,117,99,108,95,106,114,107,104,112,103,111,111,109,113,102,92,112,108,103,106,108,120,108,105,100,101,101,90,104,107,91,113,112,108,110,112,99,102,101,110,115,103,108,101,109,103,109,112,114,107,104,107,106,110,112,114,106,102,103,105,124,97,102,97,101,119,109,96,88,96,93,105,117,114,116,110,110,95,106,102,109,92,103,104,104,105,115,129,100,102,104,105,104,102,110,95,109,102,104,104,117,105,108,104,106,107,112,109,106,107,112,113,101,106,109,106,105,112,104,117,109,104,115,109,92,95,94,92,101,113,113,106,116,111,110,102,114,106,97,98,102,83,106,93,107,106,108,106,103,94,97,117,100,96,109,98,113,106,108,95,95,99,102,100,101,104,100,112,99,106,119,106,92,100,109,109,121,93,101,108,99,95,107,101,102,118,100,99,99,100,106,92,107,102,99,105,107,95,114,101,99,102,112,112,103,98,101,96,105,110,113,105,109,138,98,104,99,99,105,101,108,99,83,124,104,102,98,101,96,99,103,71,113,102,109,107,110,112,100,104,104,115,102,99,96,95,108,106,101,103,95,110,99,106,106,109,105,120,100,107,109,110,76,111,104,118,87,106,104,115,96,104,102,102,117,115,107,106,108,105,82,92,102,104,102,96,98,104,97,96,103,98,102,97,98,99,95,117,104,109,107,98,108,107,103,107,99,117,110,99,105,109,108,112,76,109,106,104,112,108,101,108,97,114,95,97,103,97,99,95,114,72,104,104,108,114,99,103,95,91,104,113,104,108,104,101,97,109,100,95,103,95,102,104,105,104,103,98,98,94,107,109,100,111,102,100,106,104,106,106,117,114,102,109,130,100,105,103,96,102,111,99,104,90,98,103,104,94,108,114,127,105,94,103,101,83,116,112,107,111,99,117,104,108,94,118,109,105,99,102,123,118,104,97,98,107,106,103,110,106,115,109,106,95,97,96,117,102,103,99,122,103,95,125,103,104,107,111,95,106,111,133,104,103,102,100,112,100,106,97,106,99,113,102,89,114,94,107,98,113,121,103,100,96,110,108,92,108,106,109,109,106,108,112,98,110,94,119,108,109,110,107,105,113,115,118,102,113,103,106,105,114,96,107,107,94,98,101,94,102,108,116,105,108,101,106,99,102,98,112,105,114,96,95,103,111,112,101,113,115,104,108,96,112,104,105,108,110,102,104,103,110,106,107,112,108,110,96,104,105,116,104,99,109,105,98,103,109,114,104,112,102,94,113,112,99,109,107,106,116,111,113,116,111,106,106,110,126,104,96,112,102,104,97,94,102,98,96,86,83,137,102,114,108,74,97,100,102,99,100,107,113,101,103,104,117,109,99,98,108,95,109,102,107,98,115,99,111,108,103,110,100,109,102,108,101,109,110,100,107,106,108,95,106,112,98,107,100,116,88,107,86,105,110,83,106,93,103,100,106,111,104,99,109,95,114,101,102,111,121,92,109,108,106,106,94,117,103,104,102,97,104,99,113,110,111,102,116,139,91,108,99,104,121,114,122,108,95,107,105,112,91,106,108,108,98,111,121,92,110,95,100,108,102,101,96,91,96,98,109,102,103,120,99,100,107,100,128,113,110,112,110,101,106,104,100,98,91,120,101,99,105,100,97,109,105,117,99,106,108,94,96,100,97,92,105,101,113,117,106,113,100,112,114,91,111,115,98,114,113,107,106,106,101,105,108,111,104,112,108,105,93,108,107,99,97,106,85,94,101,91,102,101,90,85,97,97,107,99,91,114,103,98,124,108,97,97,106,101,110,110,108,95,111,109,104,105,88,110,104,116,103,109,110,116,106,104,99,107,90,93,106,104,104,94,103,104,116,110,106,116,98,107,102,99,100,98,95,99,100,111,110,112,106,112,110,103,108,100,100,106,99,93,113,103,89,102,116,102,110,116,98,105,89,95,107,96,102,96,101,112,96,90,110,134,109,101,87,114,90,106,99,107,100, +542.53137,106,112,79,103,106,102,93,90,90,113,97,104,111,108,102,105,111,107,106,104,127,108,117,105,100,104,69,106,103,106,106,94,98,104,108,99,113,96,102,100,106,109,100,100,113,108,105,113,112,129,99,105,95,98,111,105,111,91,107,94,123,102,103,101,103,105,104,108,99,90,98,109,85,106,98,113,89,104,96,98,102,116,102,104,103,106,110,109,111,104,95,124,107,100,94,102,100,97,103,98,97,124,106,104,97,111,106,95,106,108,103,121,110,102,101,104,109,109,104,112,106,87,97,110,110,95,94,110,101,110,105,100,100,109,111,111,114,99,112,103,98,113,98,96,108,111,109,104,94,107,111,102,111,97,97,104,87,104,99,109,99,105,90,102,104,128,108,106,115,106,109,102,105,117,99,102,100,98,103,104,94,99,98,106,112,95,97,90,102,105,112,100,113,112,105,101,95,106,109,105,95,97,105,111,103,111,104,96,95,105,104,107,100,94,103,113,114,101,107,114,105,109,90,114,97,100,96,96,111,105,98,121,103,101,123,104,112,104,108,94,108,109,111,85,104,100,95,104,111,110,97,112,99,109,103,102,104,102,98,105,83,103,102,105,85,106,99,112,103,113,98,107,99,88,130,96,104,115,103,116,115,99,95,96,98,103,100,105,113,104,97,114,104,77,126,99,112,121,105,115,117,91,104,108,102,107,107,127,93,109,105,109,109,100,117,93,120,109,99,104,110,98,118,113,109,109,111,92,106,103,109,105,108,114,98,105,103,105,92,108,103,105,102,104,90,110,103,100,105,99,109,101,102,103,106,102,119,122,107,108,108,99,88,102,96,105,104,107,107,102,116,111,99,108,104,116,105,108,112,100,111,122,111,109,97,105,103,115,108,97,96,95,104,93,102,108,112,118,100,108,101,107,99,108,110,115,99,95,126,100,103,106,103,111,109,102,111,109,103,107,108,103,106,90,98,95,104,97,111,115,102,99,104,117,103,99,102,108,97,114,103,105,102,107,97,99,97,91,102,99,97,124,133,113,97,104,106,97,101,101,109,99,104,119,123,85,103,104,76,113,91,108,100,101,106,103,113,116,95,91,105,109,102,91,109,102,96,114,99,104,110,112,104,118,103,109,108,98,113,104,112,100,97,109,79,90,97,97,107,117,113,108,99,112,96,109,107,96,101,65,101,110,99,99,112,99,108,110,107,111,131,106,110,110,87,117,103,100,105,114,113,104,103,104,116,99,104,103,109,115,102,100,101,105,100,105,100,111,103,108,105,110,90,108,102,110,98,102,96,109,90,112,118,108,106,107,106,109,103,102,103,101,114,104,105,75,110,105,100,97,108,108,102,100,102,117,105,98,73,108,104,102,104,106,104,104,93,109,104,111,104,106,113,104,92,94,102,106,101,101,99,111,116,103,102,100,104,98,102,102,91,105,88,103,104,117,111,105,106,96,107,111,98,92,114,101,101,106,117,107,104,105,77,115,101,106,116,108,109,121,116,99,106,110,108,98,99,104,114,101,112,103,104,88,100,103,115,115,101,118,116,114,110,115,99,99,114,102,108,113,93,114,101,106,97,97,113,99,107,93,94,102,99,97,103,105,112,113,99,117,99,99,110,100,96,107,109,105,102,104,95,104,102,115,100,88,96,111,109,101,93,118,109,100,98,94,102,103,101,117,115,109,101,97,112,105,104,108,104,111,108,83,95,99,102,97,110,97,107,114,99,103,95,98,74,100,103,109,106,99,102,115,116,107,114,115,117,100,92,97,103,118,92,100,125,112,98,117,98,115,81,97,110,100,104,113,109,97,103,106,98,109,101,111,107,95,101,95,108,106,98,105,92,106,112,101,99,110,109,107,89,104,106,99,98,113,112,110,103,108,106,94,110,97,103,117,102,91,112,110,103,105,110,100,97,92,103,108,104,102,103,106,106,122,102,100,103,101,98,105,101,109,95,107,103,107,101,98,105,104,109,114,103,106,99,107,136,97,120,84,101,110,108,99,104,109,90,103,111,114,98,110,107,114,120,100,114,93,123,99,105,108,125,110,111,108,101,105,104,87,88,90,104,105,95,104,98,99,95,104,106,105,98,101,97,99,98,105,98,109,112,109,112,80,106,99,102,88,98,115,114,110,112,109,91,111,100,107,110,117,116,103,111,114,118,98,100,104,109,104,103,100,98,102,110,99,105,101,118,114,113,108,114,114,101,118,96,112,98,103,103,96,103,98,110,100,104,101,95,100,103,118,109,98,119,98,96,102,104,98,113,113,100,96,106,99,96,103,96,106,98,102,90,103,105,104,85,99,96,110,105,101,108,103,101,111,89,102,101,105,109,105,108,91,122,104,103,111,97,113,114,101,96,109,99,112,99,117,106,89,103,106,101,99,119,113,123,103,85,113,112,105,118,103,113,99,106,111,107,107,112,107,110,106,106,112,88,98,110,108,97,109,111,98,104,117,110,107,106,104,112,93,94,93,105,103,111,111,133,83,95,105,114,117,102,104,108,104,107,109,102,101,112,98,103,116,105,105,97,107,106,108,96,94,106,116,110,109,116,109,114,106,110,102,103,115,99,102,106,102,94,108,100,99,114,113,103,111,113,114,95,105,107,104,103,101,108,101,100,95,117,101,103,99,111,101,105,99,105,109,92,106,106,114,101,101,110,111,99,105,105,117,112,104,111,111,110,106,112,111,120,101,117,121,104,113,101,103,104,111,100,115,108,104,112,113,101,99,110,85,76,126,113,108,104,98,104,98,97,96,106,119,103,108,105,103,123,107,112,94,94,110,111,115,102,98,105,99,115,122,102,107,108,105,99,109,104,102,97,104,111,113,109,120,93,99,98,111,110,113,106,117,103,112,106,110,100,107,93,109,113,108,106,106,99,116,101,114,120,104,106,114,98,101,106,102,92,113,96,111,113,117,103,115,109,100,93,112,111,107,95,106,107,112,107,102,102,108,101,98,107,99,98,91,118,106,113,99,101,103,113,101,113,108,109,114,124,108,107,113,99,98,108,103,103,113,105,102,109,110,116,109,110,116,111,107,107,119,107,110,102,97,110,97,105,100,107,113,112,106,116,124,116,102,99,100,105,110,95,93,100,115,100,112,103,108,108,119,100,99,110,93,93,110,101,106,99,103,117,108,103,92,108,107,102,110,76,105,100,104,106,92,106,96,94,99,105,98,104,111,108,100,113,101,106,107,102,108,109,117,106,106,115,110,104,108,109,106,114,93,108,105,108,112,110,110,117,111,94,118,103,104,115,104,102,103,105,102,115,105,114,98,114,118,106,101,115,106,114,105,110,111,95,110,115,107,120,103,104,104,120,113,99,98,104,119,110,122,107,118,95,117,92,100,110,105,122,103,116,96,126,102,110,107,94,110,105,102,106,106,111,109,110,113,102,105,99,104,98,109,102,95,110,83,104,124,104,102,113,115,100,105,99,101,104,105,102,102,115,122,104,92,110,100,107,113,100,111,119,118,112,109,100,107,115,98,115,111,88,99,126,104,95,117,106,106,107,106,103,104,111,105,112,103,107,106,109,115,106,95,105,98,102,104,92,108,106,101,107,106,98,102,112,113,103,113,98,106,106,102,103,112,96,99,106,97,110,97,124,120,103,107,107,108,98,107,117,104,107,87,99,107,106,110,96,97,109,105,103,101,98,104,114,109,104,112,103,110,106,98,113,104,114,98,111,106,113,106,112,97,105,91,100,103,99,112,113,96,105,101,101,107,121,107,108,108,115,96,123,113,95,104,120,96,133,103,100,97,109,105,105,109,74,100,93,108,112,95,104,104,116,99,100,106,110,117,108,104,103,105,95,104,108,105,110,113,112,101,103,111,109,103,100,103,103,107,118,102,113,104,96,104,105,117,108,106,98,109,97,94,98,98,120,100,107,76,97,109,108,100,91,106,108,105,123,102,106,97,111,109,119,108,108,116,104,120,99,125,103,95,117,111,102,111,112,101,102,104,101,107,114,110,102,117,108,110,117,101,114,102,112,99,126,113,110,109,106,88,112,102,125,96,100,115,107,103,116,103,109,113,120,97,111,96,105,104,94,109,100,95,101,103,98,102,107,117,97,107,100,102,92,107,101,110,96,116,106,109,108,102,117,104,107,117,107,97,95,109,106,111,132,95,98,85,119,102,95,99,101,102,120,110,110,111,102,108,101,122,119,113,107,111,105,110,113,99,96,115,113,102,98,99,100,104,103,111,114,102,122,105,109,98,121,102,88,98,85,113,108,111,105,109,113,103,101,117,110,104,105,136,101,89,113,103,94,93,93,120,102,104,116,87,103,84,106,113,84,100,113,102,90,95,105,124,104,92,92,110,98,100,106,102,110,106,110,100,108,115,113,103,110,102,111,92,109,107,104,105,104,92,91,95,100,106,104,108,107,97,107,106,120,102,122,107,80,123,109,99,111,99,99,111,106,107,110,99,101,88,93,91,108,94,107,106,112,102,102,108,99,106,100,102,113,100,109,97,92,97,123,100,102,103,98,105,108,106,101,108,114,91,95,104,110,106,110,107,114,105,102,103,102,109,116,108,105,103,110,110,116,112,98,86,109,115,92,119,109,109,99,108,110,105,105,105,106,89,106,116,100,109,112,109,121,112,96,92,113,117,113,103,102,99,115,97,95,105,105,96,104,116,106,107,98,101,85,105,108,99,102,100,121,107,81,109,106,117,100,112,86,96,106,102,97,105,98,117,108,85,103,108,109,96,64,112,103,106,94,100,101,103,99,95,105,104,112,110,91,90,105,112,107,108,108,85,120,111,102,117,104,104,117,74,108,115,114,108,103,111,113,96,102,94,95,102,93,115,99,111,86,97,113,108,103,95,119,110,101,113,104,110,109,106,88,111,99,100,104,98,90,98, +542.67218,86,93,88,117,90,101,103,110,90,98,95,110,98,101,120,114,99,106,91,106,100,105,108,111,107,107,103,109,88,108,100,120,97,102,114,103,121,110,90,116,102,100,99,98,98,122,104,102,112,108,105,90,109,92,103,99,102,80,100,97,102,114,100,97,113,100,109,95,112,99,95,106,100,110,101,115,98,94,104,108,104,100,95,105,101,102,101,105,104,100,112,106,93,109,87,118,98,86,104,105,81,85,99,99,99,103,108,110,106,104,115,102,95,101,107,112,104,113,99,107,103,113,102,112,109,110,98,84,101,107,107,104,100,116,103,101,101,94,86,108,101,109,117,112,95,80,98,108,103,111,100,94,103,76,101,102,103,114,105,107,104,113,103,101,96,104,109,107,110,94,124,125,109,105,111,105,103,109,112,113,98,104,102,113,88,99,103,97,100,102,108,110,102,100,75,111,109,106,104,98,99,98,101,102,103,108,94,107,115,100,102,99,105,113,108,100,112,101,98,108,111,107,110,92,98,104,100,101,103,103,102,115,100,96,91,116,99,112,104,112,105,93,111,106,99,102,100,112,101,104,106,101,110,98,92,106,107,102,87,98,104,114,86,94,76,115,114,105,92,99,106,107,117,107,99,103,91,103,100,79,113,110,99,108,112,123,101,108,104,110,105,116,104,108,104,113,109,110,108,109,105,100,102,115,101,108,104,105,111,66,96,111,108,111,108,98,110,107,115,108,105,96,102,101,116,109,102,99,111,104,109,121,109,99,107,115,114,109,102,105,95,101,92,103,106,114,101,117,113,98,100,116,100,103,101,102,113,109,99,115,105,101,95,104,100,114,101,109,113,98,100,113,104,113,101,102,105,117,119,99,121,96,99,104,79,103,108,107,92,100,110,106,103,120,103,95,102,109,101,111,100,113,104,100,106,89,110,107,112,105,83,89,97,100,115,90,104,103,113,99,105,100,118,111,97,97,95,105,97,112,116,98,104,104,108,96,102,115,100,105,118,106,113,95,102,116,110,105,106,114,93,112,108,104,112,104,112,101,103,102,101,108,112,96,115,104,97,121,95,99,122,113,105,107,106,102,88,107,108,86,107,99,112,97,102,95,114,108,102,106,109,109,110,119,97,103,101,107,112,115,114,109,93,106,103,105,105,105,102,104,116,109,95,106,115,114,96,106,115,92,117,100,108,99,102,103,109,109,103,101,103,89,109,103,103,102,103,104,108,102,109,112,100,93,105,112,103,101,109,117,103,107,100,107,100,100,107,118,107,106,105,107,114,105,102,112,117,101,105,95,101,98,116,95,108,106,99,109,103,102,99,97,74,107,102,108,104,95,108,109,107,106,99,104,112,110,104,105,101,117,103,99,104,100,98,111,100,118,91,115,114,109,99,99,96,118,103,94,104,98,109,99,106,109,99,99,108,96,115,103,114,107,93,105,100,100,81,99,114,112,105,107,96,110,100,90,116,107,113,102,95,106,117,105,106,115,103,101,108,115,110,109,104,104,96,100,114,92,103,100,107,104,99,103,96,103,108,104,91,100,115,110,104,97,102,101,109,99,87,112,99,91,97,108,109,101,99,100,103,93,110,99,100,102,103,115,107,105,91,103,101,113,118,101,110,106,88,116,108,109,121,107,103,108,101,104,105,113,100,108,107,110,98,106,100,114,111,100,114,103,112,87,109,82,115,105,101,107,81,103,98,99,114,99,100,82,118,117,107,99,102,68,112,116,107,113,100,102,101,98,99,102,120,101,106,105,105,108,120,95,103,98,103,106,95,110,96,107,125,107,93,117,124,100,105,110,121,115,135,79,111,97,90,100,101,109,110,113,108,100,100,108,109,103,114,110,106,106,111,97,111,101,107,97,106,107,108,100,108,100,92,109,103,103,103,109,105,101,110,114,101,103,112,112,102,104,104,91,102,106,103,101,99,108,101,95,87,101,100,100,97,111,103,122,108,96,104,107,114,81,110,104,98,116,101,106,112,104,100,109,101,112,102,108,110,105,93,112,105,100,101,103,129,105,106,100,103,103,98,100,99,104,95,98,109,108,100,91,101,99,106,112,106,115,94,92,105,108,102,99,107,90,106,109,97,102,97,106,105,105,104,117,119,100,99,77,98,103,99,112,109,105,109,108,97,116,106,111,94,101,113,105,111,97,98,105,100,91,100,108,105,106,101,113,118,94,108,108,103,108,89,107,98,91,93,107,96,97,106,95,98,101,100,108,108,111,100,95,103,100,110,102,99,110,96,101,101,111,91,120,102,103,100,110,117,121,109,105,100,107,96,111,96,105,108,109,86,103,134,107,107,133,93,109,117,100,89,101,109,106,105,104,113,100,103,108,103,105,101,95,116,120,105,95,88,98,112,104,85,112,102,104,99,115,107,96,91,117,97,107,99,108,100,116,104,109,89,108,106,105,103,120,114,116,113,100,108,104,94,113,108,100,102,102,99,126,94,107,114,106,110,100,106,110,97,94,102,109,105,107,98,104,108,104,108,101,103,104,111,102,114,102,112,110,92,111,91,104,101,118,91,100,104,102,102,105,107,131,93,122,103,110,100,113,109,103,97,96,112,109,107,109,100,109,98,107,106,107,113,110,113,98,102,97,112,106,109,105,104,108,110,91,105,105,103,108,83,98,103,109,110,108,104,110,110,104,102,97,113,120,102,94,98,107,99,102,111,110,106,106,98,102,112,111,98,107,119,87,121,103,98,111,121,103,104,102,111,105,107,117,103,101,95,109,103,117,102,125,109,104,106,120,98,122,104,108,121,103,108,103,102,88,110,88,95,113,109,116,103,107,97,103,113,100,100,106,105,94,112,101,105,105,116,104,102,113,104,99,79,104,112,104,106,105,101,103,106,104,101,102,107,107,99,112,104,104,106,109,98,109,105,112,100,97,96,112,106,100,105,117,111,113,110,99,114,107,100,110,99,114,117,105,99,109,102,104,83,107,120,91,99,101,104,99,103,106,104,104,114,105,105,119,98,110,104,93,95,111,103,98,96,110,103,115,120,118,108,110,116,107,105,101,113,91,95,99,102,87,104,107,115,99,99,104,96,118,117,103,99,106,100,105,116,113,111,104,108,96,111,104,101,101,121,114,103,107,87,108,115,98,106,101,109,105,105,104,100,113,91,97,100,112,112,105,98,107,107,95,107,108,100,104,105,127,98,110,108,105,107,110,110,110,103,112,103,96,91,107,106,103,109,109,99,100,112,113,107,84,111,104,110,123,106,110,118,110,105,100,100,106,105,102,110,107,100,105,107,105,115,108,111,106,110,104,104,108,95,97,113,104,105,103,99,108,106,108,84,104,105,113,103,100,101,103,121,99,100,116,99,109,103,113,120,114,104,117,98,98,113,101,109,115,115,99,94,109,114,100,106,96,95,99,97,97,104,108,108,105,107,109,97,106,110,104,113,97,105,107,109,108,108,104,111,102,97,106,100,100,110,102,115,99,96,113,109,108,108,109,117,101,103,104,103,117,112,94,115,99,111,101,113,108,103,98,111,100,104,112,120,108,106,100,114,98,111,105,112,103,108,108,98,100,102,126,100,98,112,108,97,107,100,114,127,97,107,100,95,106,90,101,100,107,116,105,106,94,109,108,105,105,113,105,103,115,104,98,106,125,106,106,99,103,100,102,115,102,109,98,101,98,111,106,119,105,109,107,92,116,113,104,105,106,101,91,108,94,103,100,112,109,112,104,109,109,109,106,121,106,102,93,100,102,103,94,117,96,103,107,104,115,105,88,110,107,109,98,63,87,104,104,102,105,101,114,94,105,117,104,109,102,103,96,98,105,106,106,104,109,104,102,102,105,105,104,95,108,110,106,107,95,98,111,99,109,106,106,114,106,103,105,96,106,104,99,94,88,99,98,99,100,102,99,101,115,111,96,102,104,110,96,97,98,104,106,109,124,116,106,101,105,98,117,101,101,111,102,115,99,113,117,102,101,100,101,101,106,96,113,116,106,100,112,98,115,121,110,105,104,99,111,107,99,101,117,108,112,118,108,108,100,105,102,108,94,126,119,102,98,101,94,103,116,96,109,108,102,110,118,98,110,95,104,99,102,115,128,112,99,101,110,100,101,87,97,105,104,110,93,102,118,104,101,105,118,113,100,109,98,111,111,107,107,100,98,99,110,109,104,100,96,103,107,95,102,95,105,108,105,103,105,106,101,124,108,95,96,107,108,111,106,102,99,100,92,100,92,108,107,111,98,101,106,117,104,97,89,99,102,103,113,103,110,105,87,101,105,108,100,102,99,96,101,108,97,108,101,99,97,122,104,121,94,107,109,111,101,91,110,102,105,103,104,101,101,101,90,103,102,109,110,129,102,122,123,99,116,107,95,106,98,98,112,108,100,94,102,107,99,100,94,112,101,104,111,103,106,91,95,100,103,112,110,95,100,118,104,102,101,102,102,106,104,110,113,104,96,106,101,119,99,104,104,111,97,105,100,109,101,109,82,95,97,111,103,115,123,107,112,101,114,95,98,100,107,102,103,89,113,106,111,97,109,103,96,103,109,109,102,105,99,98,103,87,102,104,107,115,98,108,101,103,91,99,112,113,110,98,94,106,108,94,104,112,108,103,103,106,114,115,111,107,106,97,100,97,98,110,96,109,111,95,103,106,112,106,106,99,98,99,101,109,100,103,107,117,103,102,115,102,107,98,105,104,102,100,106,102,101,91,90,91,102,97,112,103,103,107,104,110,121,103,109,95,96,98,99,95,103,108,103,96,107,99,116,100,102,101,102,86,127,106,104,116,105,107,102,102,101,114,85,113,98,95,115,116,97,106,101,103,101,99,96,97,100,91,103,96,111,108,89,110,109,109,92,104,102,99,103,91,102,108,109,105,106,92,98,109,98,101,124, +542.81299,106,105,108,100,106,99,103,114,106,109,91,99,116,110,82,100,104,100,107,95,103,94,109,96,102,125,107,113,103,114,110,109,99,109,103,104,120,107,102,95,103,109,98,101,116,114,101,109,103,89,104,104,109,94,105,103,108,95,112,113,109,98,111,103,103,104,99,106,104,109,111,113,96,114,109,112,93,125,103,103,114,107,105,102,107,114,107,108,113,95,100,109,104,106,115,106,123,93,120,99,116,110,87,110,107,104,102,124,94,107,101,100,105,103,99,105,104,105,98,118,107,105,105,110,114,107,114,102,93,117,103,102,109,108,108,108,109,96,93,100,99,115,99,95,110,103,116,109,99,104,103,102,100,120,99,107,91,105,117,104,104,104,103,115,111,99,102,113,99,94,100,102,91,107,112,107,102,101,113,103,102,111,98,101,106,96,108,103,110,104,103,106,117,99,116,116,109,109,112,104,104,89,95,116,101,111,101,90,116,92,97,112,110,102,97,113,110,109,99,98,101,111,118,106,117,103,113,106,112,103,102,91,108,117,101,115,102,117,109,106,118,103,115,116,113,91,107,105,109,114,107,114,107,100,107,102,102,111,105,112,92,104,114,105,96,106,112,110,104,100,106,93,112,98,99,110,110,105,104,99,112,103,105,107,110,113,98,96,109,111,116,114,111,109,102,108,126,96,100,117,105,104,109,109,101,117,107,112,108,115,100,111,113,110,121,108,106,108,109,107,117,118,106,99,80,112,103,110,115,115,100,107,91,107,99,119,107,99,107,111,101,103,110,106,110,106,96,113,104,115,112,109,102,101,103,82,108,111,113,98,98,103,101,106,105,105,98,108,81,110,107,108,107,106,106,109,112,106,106,110,109,122,109,101,103,115,112,101,103,95,109,93,98,105,97,106,101,97,102,103,104,104,108,107,79,104,103,120,114,118,101,110,112,116,128,90,112,96,105,105,94,108,110,103,97,133,110,104,96,107,98,96,105,105,105,133,102,106,104,135,108,104,103,101,108,115,104,112,106,96,88,101,103,104,96,117,102,100,103,104,104,108,85,108,121,116,109,99,87,107,88,106,106,108,110,100,104,111,99,96,108,107,114,120,96,107,113,106,111,103,113,106,121,111,93,108,106,111,108,106,115,102,108,104,107,113,104,100,99,96,108,102,109,95,98,107,116,95,100,105,103,86,104,101,103,105,110,97,100,108,106,110,105,105,100,113,105,105,101,110,104,103,99,98,86,104,106,113,109,105,105,118,120,107,91,108,122,111,108,99,109,101,110,110,109,102,109,107,98,112,95,105,98,94,106,104,115,104,100,110,116,103,125,106,76,99,98,103,104,107,115,107,113,105,110,104,109,109,107,126,102,103,111,110,105,102,103,111,118,121,107,106,103,102,129,106,117,106,116,97,101,116,103,116,107,102,103,118,107,105,111,103,98,104,99,107,104,91,119,95,104,116,106,113,118,104,109,113,103,88,110,121,115,117,109,91,103,122,112,117,113,96,110,110,99,102,91,95,101,100,119,99,115,101,103,100,103,100,107,106,110,106,106,88,100,112,97,113,110,88,104,99,100,110,107,95,108,103,105,99,114,107,112,109,109,111,118,115,105,99,111,92,111,110,103,111,104,105,106,106,108,102,101,103,106,93,110,105,109,121,116,118,116,103,102,110,105,112,104,112,103,108,113,116,106,103,106,110,101,112,109,104,112,109,118,75,102,108,119,103,104,116,92,98,101,110,103,112,117,107,109,105,119,100,102,101,100,105,110,100,125,118,118,107,119,114,105,116,93,115,107,116,102,109,98,96,108,111,116,107,95,107,85,96,124,104,100,112,107,98,106,112,106,113,111,100,116,110,103,129,95,102,106,108,106,103,103,102,115,105,110,115,107,100,116,100,99,100,95,110,116,119,107,101,113,99,108,86,109,103,105,109,95,98,101,114,112,108,106,100,111,96,108,115,96,101,117,103,108,106,108,114,87,111,113,104,105,101,103,102,103,114,113,119,105,83,99,111,112,110,111,99,116,105,107,101,101,119,107,123,119,101,109,102,100,101,104,108,98,117,91,102,103,107,107,103,109,112,104,98,111,100,106,115,103,104,95,100,107,103,99,111,123,122,101,113,106,114,105,104,107,113,94,105,109,100,115,104,114,108,114,105,125,107,134,99,111,118,89,109,104,113,105,103,103,115,96,105,115,102,100,102,106,105,105,103,109,86,94,116,100,98,99,102,102,110,106,108,108,109,95,110,115,102,104,99,110,95,94,102,108,112,107,106,115,80,110,113,105,109,98,93,102,112,105,106,101,100,103,113,113,112,102,104,112,108,131,105,108,101,115,104,106,96,137,105,104,108,96,103,102,108,106,108,95,97,103,105,119,116,123,102,116,109,124,117,104,104,107,92,102,108,106,100,108,96,85,125,109,105,110,120,102,95,109,101,102,115,82,102,107,103,113,107,103,105,106,104,106,101,104,115,105,100,105,96,96,96,108,91,108,105,103,117,106,98,95,106,100,96,103,109,84,90,88,107,111,100,95,111,114,114,121,91,106,103,96,140,104,100,108,99,88,97,113,104,100,106,98,90,113,95,91,105,104,98,101,100,109,113,112,108,124,107,105,100,98,93,106,107,121,107,109,97,112,101,115,97,113,105,109,91,98,106,107,115,106,102,111,104,105,109,106,102,109,109,107,99,92,113,92,108,105,109,90,105,116,96,106,119,109,116,103,110,104,105,112,111,113,114,100,113,104,110,115,110,105,103,107,113,110,113,104,103,104,97,98,112,111,102,113,99,101,106,110,110,107,101,116,93,109,105,106,101,112,100,106,106,104,105,113,113,119,99,108,103,102,108,110,106,98,104,97,98,106,111,121,94,99,116,105,110,103,110,108,108,116,104,101,95,106,114,114,104,102,107,97,124,113,104,97,109,110,113,117,110,96,102,109,97,110,92,105,113,105,113,110,103,104,106,104,85,106,114,111,113,94,107,104,104,109,112,114,102,108,96,116,116,108,98,104,103,75,111,111,112,109,107,100,119,118,109,113,99,105,108,105,109,113,107,102,126,88,111,97,98,127,105,99,99,103,108,115,84,104,101,104,95,112,92,102,104,110,115,105,113,96,105,101,119,95,106,103,103,103,104,112,112,104,117,103,117,103,108,99,99,116,119,121,125,103,117,104,109,105,114,100,117,102,106,103,91,104,115,92,97,118,99,104,109,102,111,109,99,121,99,109,105,119,103,107,112,102,115,110,95,109,112,114,122,108,110,105,106,106,108,105,95,116,104,103,105,114,107,105,105,109,102,111,111,106,116,107,106,109,113,99,96,109,99,85,105,112,109,114,102,106,111,117,97,107,105,109,107,117,113,101,109,103,125,101,97,96,115,106,107,112,121,107,94,102,115,119,105,107,108,107,103,105,109,90,100,102,99,103,111,110,102,86,105,113,105,100,104,113,107,118,110,106,99,91,113,106,110,102,109,113,100,102,100,107,111,110,115,117,106,102,109,100,84,108,107,116,106,102,96,104,110,100,111,101,100,107,105,111,110,96,85,102,99,130,91,91,103,113,110,76,96,112,105,102,102,100,104,103,98,110,110,102,102,97,110,102,103,110,103,102,111,103,96,107,104,121,106,106,94,121,126,109,94,108,93,113,109,102,107,109,85,101,107,109,109,97,101,114,84,116,99,102,106,101,99,112,125,117,110,112,109,115,95,104,107,109,105,108,95,93,105,96,99,103,101,105,101,114,110,112,113,102,101,100,98,118,94,100,112,94,99,100,105,100,105,104,102,106,106,111,96,110,112,107,108,114,107,102,105,117,103,113,103,112,114,103,115,110,120,108,116,119,101,101,103,117,100,112,105,103,110,97,98,105,95,104,108,103,126,109,112,111,113,109,95,114,102,101,108,104,97,106,95,106,98,110,108,98,101,111,108,113,113,95,102,95,110,102,103,101,113,84,112,112,116,99,106,94,101,106,106,100,100,103,95,110,102,103,102,101,107,119,86,110,97,100,117,110,116,118,98,110,90,109,97,109,94,119,108,115,109,116,93,103,108,115,116,97,109,113,104,101,92,93,109,106,110,104,113,116,112,98,102,109,101,116,107,116,110,118,93,107,103,110,102,96,93,108,103,115,96,115,86,109,105,106,99,113,94,123,97,96,105,112,113,122,109,113,107,103,115,102,109,108,112,100,110,109,112,105,117,101,106,109,105,109,114,101,101,110,117,115,100,100,102,105,110,98,116,94,116,98,112,113,86,97,97,118,104,106,91,115,109,111,102,102,111,106,99,118,92,106,110,106,110,108,108,125,112,109,105,104,110,113,103,109,96,91,104,102,103,109,109,106,94,111,98,103,102,91,106,98,86,99,103,109,109,108,108,91,104,109,105,110,92,109,115,110,109,94,123,97,99,108,113,105,104,97,110,107,96,105,107,112,109,103,111,103,104,93,113,103,103,103,98,105,87,109,110,109,111,115,109,87,105,97,103,113,99,109,101,102,102,94,104,105,97,103,103,111,107,95,92,106,109,103,105,102,101,99,96,90,112,110,109,84,106,96,100,107,100,85,92,105,104,105,109,98,109,116,109,108,110,106,108,93,111,109,106,106,103,106,117,114,108,116,100,106,98,102,108,113,103,93,105,116,112,104,97,100,121,121,107,106,112,110,95,102,105,103,99,95,102,116,104,106,108,107,121,117,99,105,101,100,103,77,92,105,90,103,106,93,95,98,98,110,107,101,92,104,99,104,116,107,99,109,117,99,106,95,108,101,106,109,103,98,98,99,109,99,97,109,105,105,96,102,116,99,108,101,109,101,101,105,106,104,95,95,113,96,104,104,104,104,98,112,85,109,113,100,109,94,109,111,94,105,102,103,99,103,101,109,94, +542.9538,95,104,108,111,96,116,104,125,98,100,119,94,102,105,99,105,95,99,104,102,101,96,116,91,114,102,97,92,107,102,108,101,96,104,116,100,98,99,96,110,101,105,103,111,110,110,114,107,104,103,110,101,114,95,93,93,93,105,103,102,102,116,95,99,93,97,105,110,109,110,107,105,102,108,89,103,105,93,96,93,109,115,100,93,109,101,95,107,102,93,101,87,91,99,100,111,95,98,103,101,119,99,96,120,101,111,91,83,106,95,90,110,92,115,104,99,103,99,103,106,101,98,116,91,108,103,116,106,110,93,103,110,91,107,112,110,99,104,102,101,105,116,114,103,104,102,100,95,88,101,104,106,105,92,92,104,101,97,96,101,95,98,102,103,79,106,96,91,118,113,116,104,106,104,94,101,114,100,106,98,107,108,106,120,111,103,98,107,104,98,102,104,106,104,107,96,84,98,97,87,103,113,103,102,91,106,101,102,103,108,100,115,121,104,102,104,106,94,111,108,98,115,97,106,89,108,83,93,98,104,98,107,113,107,97,103,103,107,106,99,98,96,109,96,114,107,101,113,107,94,98,100,121,117,108,102,100,102,97,102,101,109,99,105,87,114,99,93,114,114,103,97,87,91,97,105,104,104,97,109,103,107,112,115,110,109,103,103,126,99,109,90,100,103,105,108,91,107,110,113,107,96,107,102,114,122,109,101,107,102,92,115,99,108,107,85,102,120,108,100,100,106,103,107,111,109,95,95,113,116,110,74,109,102,99,106,112,104,109,106,103,109,103,102,117,113,105,110,121,107,106,104,97,105,105,105,113,106,89,102,95,105,97,109,97,100,125,108,97,107,113,103,107,109,106,100,100,116,90,107,117,94,92,107,110,113,97,104,107,113,108,101,108,111,105,90,95,109,92,105,90,98,102,92,113,93,103,104,110,105,95,104,104,106,108,104,103,100,96,103,103,102,109,104,104,101,121,100,98,91,90,106,106,100,110,103,113,120,92,98,118,103,105,109,106,103,112,99,117,103,113,102,105,100,103,100,107,127,99,90,98,104,103,108,100,110,111,113,105,102,105,108,110,101,115,108,83,118,104,95,109,99,121,105,101,113,109,105,102,103,102,104,108,101,94,101,113,110,108,94,105,99,104,93,101,116,107,95,99,109,107,106,91,107,102,97,105,104,109,101,126,99,106,108,103,103,110,103,102,97,106,106,93,128,101,109,84,103,136,109,90,107,100,101,101,88,110,80,95,105,99,114,103,106,102,94,99,106,96,114,103,97,107,99,94,102,98,104,107,105,107,100,96,99,105,111,92,106,106,110,93,103,110,94,110,101,105,96,107,110,121,106,79,105,103,105,99,101,98,105,104,105,106,105,105,99,101,95,100,96,104,106,120,116,111,95,120,108,112,98,107,111,100,92,102,105,102,102,118,104,106,84,99,92,99,117,92,104,89,110,99,104,106,113,105,106,91,89,95,110,97,106,107,107,108,103,106,104,95,95,97,103,113,105,87,110,103,107,100,98,112,104,95,106,87,103,96,107,104,117,109,101,117,108,82,101,101,101,106,106,113,99,106,105,107,104,113,94,102,97,108,102,105,107,112,105,108,101,107,109,95,112,111,95,101,113,90,100,114,97,102,105,94,118,108,102,100,99,100,96,102,99,109,90,91,97,100,94,116,102,110,98,110,91,102,109,114,105,102,106,113,107,87,103,105,98,102,98,102,107,99,108,113,96,97,94,97,112,108,103,109,97,104,95,104,109,109,106,104,114,104,105,103,100,108,106,114,114,102,98,107,113,101,104,112,103,102,110,99,99,103,122,106,103,103,104,109,91,84,118,120,98,105,107,100,107,105,103,95,118,86,103,120,113,109,103,102,94,103,93,111,113,110,110,101,98,120,104,143,103,109,104,101,104,108,100,105,95,99,94,105,106,108,98,105,104,107,106,113,105,96,93,93,104,105,111,96,104,104,104,119,113,104,95,102,112,110,88,95,99,88,108,105,106,97,109,94,107,113,105,130,121,113,105,107,96,99,99,100,103,99,99,103,103,94,108,95,97,102,99,96,99,111,108,116,99,104,108,101,100,109,96,106,95,112,98,104,105,109,112,108,105,101,114,100,116,90,107,114,99,113,105,96,110,93,100,96,100,102,98,104,107,107,109,104,96,111,104,91,98,110,107,117,108,99,107,101,98,104,102,87,99,113,101,106,108,117,108,91,97,95,100,113,99,100,102,100,109,101,113,101,116,102,98,99,93,98,102,109,114,101,122,104,123,105,111,126,95,114,107,108,101,100,92,98,107,100,117,106,95,102,120,108,104,111,84,97,103,103,104,111,103,106,86,114,97,106,109,115,114,117,110,106,116,102,105,106,101,100,106,99,112,100,108,99,101,102,109,69,109,86,118,99,110,109,104,101,110,108,107,105,105,85,104,101,98,108,106,108,93,103,102,91,113,102,97,107,101,115,101,98,108,102,108,106,120,115,104,121,106,103,70,103,102,96,103,114,98,101,117,105,109,114,103,105,110,113,112,115,104,103,106,102,102,110,106,112,110,116,103,95,113,100,103,105,99,111,100,92,101,101,76,112,98,92,98,112,97,116,110,114,120,105,124,108,105,113,104,103,124,104,89,102,110,104,103,102,105,95,98,95,104,112,104,107,114,120,104,94,98,110,95,91,110,109,111,117,111,115,115,106,121,109,112,97,82,98,108,120,110,119,90,107,97,102,111,94,113,108,112,102,98,105,108,111,86,105,105,104,92,108,100,96,114,108,104,105,81,112,98,99,107,97,114,101,98,107,102,91,101,113,109,106,98,123,111,104,107,117,99,116,111,107,107,110,102,108,115,105,114,108,94,102,114,106,107,92,111,98,125,103,106,105,118,106,105,106,110,104,115,104,96,108,95,113,117,115,130,116,106,111,117,110,106,117,115,106,95,93,108,102,108,112,102,100,104,111,94,102,101,109,98,95,105,109,110,102,102,94,101,113,108,113,104,102,102,106,112,107,96,98,101,112,107,105,110,109,107,98,118,95,107,94,106,106,100,111,99,102,109,110,89,103,100,110,111,97,114,95,112,130,109,103,103,109,99,106,96,99,98,98,103,109,122,110,106,113,95,105,98,112,97,108,109,108,100,102,109,109,109,105,100,111,103,104,110,110,109,114,119,116,109,98,111,103,99,106,104,115,115,97,102,93,106,104,98,105,110,106,103,111,102,102,86,76,105,103,107,107,104,110,107,106,107,108,99,115,120,112,94,102,109,115,110,113,119,107,107,106,112,95,83,119,108,103,113,97,112,107,101,106,113,103,111,119,106,113,97,91,89,104,107,100,106,104,112,100,115,110,86,101,91,113,98,117,118,114,114,104,101,99,99,102,98,94,112,106,96,109,106,72,115,116,105,95,104,107,107,110,102,93,108,99,108,110,104,116,98,107,95,101,108,100,109,92,92,117,112,110,106,103,106,120,97,109,109,95,119,104,94,113,116,109,99,114,95,104,107,116,99,117,102,99,100,110,109,111,123,103,108,104,102,107,114,111,99,105,96,108,113,113,109,114,104,122,105,91,101,111,102,99,102,100,113,98,106,110,111,106,95,100,102,91,109,94,102,111,133,108,101,102,111,106,115,106,104,112,105,100,104,93,102,97,99,99,100,112,104,113,115,89,105,93,106,107,104,101,90,96,97,113,106,117,104,105,107,109,104,116,100,97,107,120,93,113,96,110,102,111,107,114,108,121,96,108,105,105,118,114,108,99,100,102,105,111,102,108,96,106,107,99,94,107,107,107,109,96,109,103,106,103,105,103,108,112,110,107,101,100,107,101,104,93,99,79,112,114,109,102,107,102,106,108,113,96,94,107,95,102,113,100,102,92,110,102,96,104,105,96,109,90,106,91,109,105,105,114,74,99,105,112,105,98,107,109,103,98,105,119,106,95,106,100,113,106,113,106,106,105,109,104,115,108,112,108,102,100,99,101,104,101,99,93,107,106,109,105,104,96,115,107,113,99,112,101,98,123,97,106,115,115,106,111,93,108,115,109,103,111,111,112,102,104,104,109,126,100,110,93,88,117,116,115,110,106,105,104,109,99,103,113,106,117,116,93,105,96,98,110,93,98,99,106,117,95,108,110,113,102,116,103,96,108,118,120,104,101,98,117,91,100,114,106,117,105,107,100,113,110,108,123,107,109,113,113,99,104,110,98,103,107,97,92,109,102,109,112,112,103,109,87,109,107,109,114,104,95,107,101,105,99,105,102,118,105,105,117,107,97,112,102,109,103,96,93,108,96,106,108,113,118,107,105,110,110,108,102,102,106,107,101,107,100,109,105,99,112,113,96,102,100,113,112,106,121,100,113,100,104,87,110,121,106,109,104,110,101,110,97,113,105,96,115,112,105,107,102,109,106,108,106,109,105,105,96,100,104,95,103,121,109,121,111,105,99,113,121,109,101,107,102,120,100,100,106,115,101,105,100,109,107,96,105,116,104,96,102,99,115,104,100,94,93,108,110,102,107,102,93,97,115,102,98,106,92,104,97,121,116,109,112,131,107,108,100,98,100,117,101,107,91,100,110,112,108,97,95,103,112,121,100,103,100,124,108,108,109,102,113,96,109,99,102,104,109,104,99,97,97,79,106,92,103,100,100,116,100,112,102,116,106,114,100,106,102,110,106,107,97,98,103,97,96,107,98,103,99,97,94,97,99,97,107,109,103,107,108,114,106,104,107,93,104,102,95,64,109,100,98,101,102,100,107,113,105,102,99,102,117,102,103,97,105,98,100,95,98,111,111,90,107,89,108,109,117,105,100,102,111,111,115,111,107,106,87,111,93,98,107,106,111,113,106,108,115,99,109,122,106,101,112,108,105,101,114,113,105,83,109,89, +543.0946,96,95,97,92,79,119,97,104,110,103,101,92,94,110,111,117,114,106,110,113,86,99,103,108,125,100,124,113,101,111,100,112,112,100,111,112,107,97,94,110,106,110,100,102,110,112,97,102,100,108,117,104,94,108,94,105,116,117,113,92,111,103,106,84,103,104,115,112,121,92,106,86,104,99,112,107,97,117,107,102,104,96,109,103,106,104,107,105,90,108,105,105,107,106,103,105,110,109,108,105,97,100,103,108,116,106,106,107,109,106,105,109,110,113,109,95,107,103,111,116,96,112,112,112,115,110,111,102,106,108,102,92,100,95,107,116,97,117,107,99,101,117,108,104,110,107,107,107,103,101,106,107,113,95,100,111,106,111,107,106,100,109,104,100,112,113,94,106,99,108,98,107,103,100,107,113,86,101,103,111,106,101,99,105,98,109,107,109,104,108,104,106,86,96,104,109,106,109,107,114,98,99,101,95,113,102,115,112,111,115,114,111,120,110,103,99,101,111,110,103,110,118,96,122,120,108,96,114,106,101,123,112,112,97,117,106,109,112,99,103,98,101,99,103,106,110,102,115,113,105,104,111,104,108,116,111,112,91,103,104,96,106,104,110,112,112,113,102,110,111,96,108,108,91,102,112,114,107,98,105,109,119,95,114,112,118,100,93,118,105,109,109,111,100,106,106,121,103,118,109,109,102,109,104,107,119,112,112,106,113,99,104,103,97,108,102,116,105,102,106,109,109,116,100,118,100,105,98,104,113,107,104,103,101,104,116,132,106,103,100,100,105,109,98,109,114,109,122,107,105,104,118,102,118,124,120,109,130,114,109,103,78,95,102,112,115,106,100,102,124,117,101,103,108,104,81,108,105,100,113,117,112,111,97,108,107,92,96,75,98,102,111,101,111,105,94,110,107,100,98,94,97,99,94,98,109,95,99,110,115,100,97,110,103,105,97,105,97,102,113,100,102,102,115,93,104,98,96,109,119,87,112,123,103,98,98,107,104,84,112,112,112,103,106,117,104,99,118,100,109,106,102,100,116,114,118,115,105,104,97,99,105,113,112,104,105,99,101,110,106,104,117,107,105,96,114,119,111,105,106,94,109,100,95,124,107,114,111,111,99,112,100,109,108,109,94,110,109,110,79,98,110,105,114,110,109,103,112,105,100,118,95,108,110,108,106,104,106,128,101,104,110,104,104,110,104,108,115,100,104,106,99,100,108,107,95,106,101,111,114,100,113,109,88,117,100,117,103,117,112,125,94,106,108,112,94,104,107,103,114,108,112,99,107,108,102,103,115,109,111,101,101,110,113,111,99,82,100,113,111,113,111,110,105,106,99,108,109,111,107,115,109,104,104,95,121,99,97,119,104,110,114,101,105,108,103,106,102,119,115,102,112,113,107,114,107,109,124,102,106,106,105,106,112,106,113,109,104,109,108,119,109,101,108,107,106,107,102,107,117,105,111,106,104,103,112,103,109,113,99,106,114,89,111,112,109,124,107,107,107,112,103,108,109,111,104,108,103,113,108,104,104,115,114,98,109,106,110,101,108,118,105,95,102,99,70,103,104,110,98,100,101,108,121,118,96,108,100,116,105,107,103,100,105,118,105,107,108,103,109,98,103,95,106,108,114,112,106,109,103,98,106,103,99,111,99,114,103,116,102,104,112,99,100,97,109,101,115,111,95,112,99,110,107,113,100,99,113,116,118,103,99,114,81,106,104,107,104,105,115,101,125,114,93,94,109,96,111,114,105,107,116,111,109,99,96,98,102,114,102,106,94,107,99,109,112,113,104,102,108,111,108,102,105,111,107,103,96,98,111,96,100,106,108,116,103,116,114,107,100,120,112,116,106,111,105,108,107,104,110,114,106,106,115,104,107,112,128,107,111,119,105,101,112,106,119,96,114,107,117,105,118,111,112,107,100,104,104,108,103,95,100,107,102,106,108,105,107,94,113,104,100,106,122,115,101,83,100,102,99,115,104,103,107,112,101,108,107,93,101,109,107,112,103,107,108,108,112,104,96,113,105,112,107,117,101,113,102,104,111,107,103,106,103,96,104,95,117,113,102,106,105,132,105,100,103,101,109,102,109,114,106,107,104,112,119,106,113,115,109,111,106,103,108,105,99,113,103,99,99,105,90,108,117,108,108,102,112,114,100,113,104,113,105,100,87,116,114,110,94,102,76,92,103,100,111,104,114,100,114,109,123,123,104,107,103,102,98,97,109,114,101,110,113,112,102,98,79,102,99,100,107,111,111,101,93,98,109,109,115,101,103,124,98,120,114,110,90,108,121,100,102,100,114,116,96,95,106,126,96,115,110,109,104,106,109,113,115,107,98,117,118,107,106,116,104,109,112,106,108,100,112,87,113,120,123,119,111,112,112,117,91,114,102,116,107,116,108,114,112,97,106,114,116,109,99,106,103,116,105,94,110,106,103,106,111,110,88,101,105,105,102,110,100,112,109,100,93,99,110,109,122,106,101,106,102,97,108,105,107,109,96,105,102,108,94,87,100,108,109,106,106,108,109,108,102,83,107,100,107,118,124,104,100,110,104,119,113,106,115,104,112,109,89,115,97,115,99,108,121,100,102,99,105,108,97,93,99,102,106,115,100,120,112,109,107,113,101,113,102,108,102,102,90,105,113,107,104,101,103,99,90,105,112,106,110,107,108,113,108,113,119,102,104,105,109,129,111,102,102,102,110,108,108,89,118,104,113,97,110,101,103,102,79,106,113,102,99,95,95,102,109,106,107,104,103,98,100,113,101,110,107,104,102,111,110,107,111,116,108,113,106,106,111,113,102,113,117,97,110,111,115,119,113,97,105,103,113,111,107,110,121,107,113,91,115,107,106,104,110,105,112,110,111,101,102,95,110,99,117,100,121,112,112,104,120,113,115,107,124,103,110,104,113,125,113,101,102,97,113,105,103,99,116,103,118,102,105,89,118,102,103,110,108,105,110,112,109,106,94,97,96,119,109,101,102,102,100,107,102,106,107,106,103,113,105,112,97,110,105,109,93,101,120,108,108,93,105,96,105,110,107,113,107,105,104,105,113,108,108,95,120,113,91,109,97,116,101,110,99,106,108,103,124,107,113,102,128,106,113,99,103,104,109,102,104,106,103,103,117,116,89,94,91,98,99,99,102,106,109,93,103,80,95,108,115,112,116,117,90,116,103,105,108,105,105,108,108,104,102,97,104,105,124,107,104,116,100,99,130,107,112,110,106,101,112,106,111,107,105,105,103,109,105,106,119,116,113,117,109,116,105,109,107,108,114,109,105,100,97,101,102,99,97,109,100,112,113,114,100,116,117,108,103,108,112,97,104,107,90,112,119,99,104,107,100,125,102,121,103,97,109,108,106,111,99,110,117,99,108,102,113,103,108,102,109,100,101,101,106,105,104,106,110,113,106,105,96,111,103,104,86,96,101,101,108,103,108,108,99,118,103,109,113,102,107,95,103,110,106,96,109,102,110,107,94,85,100,117,110,112,104,108,103,106,114,108,98,110,100,111,113,115,121,97,107,117,105,94,106,105,105,112,103,111,107,108,107,97,94,104,91,111,113,88,108,93,105,107,112,107,117,98,108,101,113,110,111,102,103,105,76,125,102,102,105,102,133,95,104,97,110,109,99,111,97,102,109,93,109,101,104,114,103,102,111,113,103,110,104,109,89,110,107,104,108,108,112,108,95,106,109,98,106,106,99,92,112,98,96,108,117,95,95,117,111,84,107,112,101,113,106,115,91,113,106,116,104,112,105,88,109,108,108,111,107,105,105,114,106,100,102,99,104,106,101,107,116,118,113,93,112,110,111,120,117,99,104,101,115,97,117,102,113,104,106,123,109,100,105,109,111,95,106,116,100,95,114,100,109,101,103,103,111,112,112,112,100,97,104,100,105,115,99,105,94,117,105,105,102,114,108,113,104,105,106,112,116,110,108,102,104,105,103,107,106,109,100,107,99,103,106,104,99,106,109,93,100,108,109,112,103,108,117,108,104,108,107,111,112,121,105,104,99,102,105,104,98,111,107,115,102,102,117,111,106,94,92,111,114,92,102,105,103,98,103,113,119,97,92,118,105,107,102,120,121,106,93,108,105,90,105,106,110,106,112,101,100,115,107,106,94,132,100,111,112,109,104,113,114,109,106,101,96,104,117,116,99,105,95,121,111,106,106,103,105,104,110,91,113,105,109,98,102,98,99,115,108,108,100,90,104,101,108,100,107,103,100,107,113,106,106,109,103,101,91,111,104,98,113,105,112,102,106,96,112,106,92,102,109,104,108,130,94,112,105,100,110,100,113,116,105,101,112,112,106,110,108,98,105,117,105,104,107,103,103,106,104,108,110,106,102,105,110,101,104,104,117,83,110,95,102,128,103,107,104,101,106,112,92,112,98,112,108,104,125,89,106,99,110,92,97,104,106,113,95,111,102,100,110,96,111,126,104,118,96,99,105,104,120,98,93,102,120,114,105,102,107,107,110,112,105,104,107,113,107,105,117,100,87,106,105,100,85,100,110,107,109,103,97,111,114,106,109,110,106,101,96,114,104,112,89,102,99,108,105,106,112,104,100,111,106,110,115,113,124,117,104,106,106,99,107,98,106,87,141,114,104,104,93,99,100,106,95,100,113,113,106,101,108,95,94,113,104,82,115,109,109,135,97,99,95,99,100,100,96,96,116,113,95,111,110,111,131,108,98,95,112,102,104,99,98,98,115,114,107,103,100,96,126,98,97,98,98,108,99,99,111,106,89,91,102,108,105,112,104,107,108,102,102,106,104,103,100,109,103,69,116,107,104,110,103,99,102,97,93,102,100,102,106,105,96,102,88,96,102,105,113,117,107,94,95,106,105,105,96,107,100,109,87,99,106,120,110,106,98,102,96,112,107, +543.23541,110,102,110,96,106,106,110,101,114,102,101,86,106,84,72,100,107,108,105,101,109,98,90,95,101,102,108,115,124,99,99,121,103,106,122,111,101,96,109,103,108,96,108,116,114,110,113,89,107,116,99,93,106,111,108,107,104,103,112,102,119,95,108,100,96,121,107,106,119,102,115,100,107,102,104,108,88,103,118,100,103,104,114,104,101,111,108,101,90,101,103,109,105,99,94,112,87,97,99,104,101,108,102,99,112,107,99,116,99,99,105,109,127,91,122,104,105,100,117,106,101,107,83,108,117,112,110,114,111,104,108,98,123,100,86,98,101,107,102,96,112,94,98,109,109,103,110,108,98,112,103,115,109,102,113,87,101,80,106,121,112,109,102,109,108,99,101,92,117,95,97,109,105,117,103,120,98,102,110,103,96,102,103,98,115,100,113,100,107,94,98,109,107,103,104,106,97,99,107,95,95,91,105,103,104,106,100,102,93,110,107,125,108,105,115,106,113,111,104,106,107,108,113,106,109,103,107,103,102,95,105,107,112,112,108,121,105,115,105,108,90,98,108,106,102,105,105,108,116,107,102,106,104,113,89,103,99,107,104,98,100,109,108,104,91,110,105,108,114,105,108,101,116,103,108,107,101,102,85,119,95,112,103,93,114,107,111,124,118,100,99,117,94,108,113,105,111,105,103,112,105,103,101,122,97,107,108,109,88,107,98,117,105,106,100,88,102,95,105,101,102,106,105,107,95,92,113,95,109,110,117,106,111,107,109,107,113,119,95,106,108,99,96,106,100,116,100,103,112,113,98,105,101,96,96,107,100,110,100,107,100,105,95,100,108,98,105,99,120,103,105,91,96,96,94,102,101,78,101,109,105,111,106,100,102,100,104,107,105,105,115,104,110,124,103,110,92,117,105,104,98,99,109,97,100,92,79,110,107,88,108,94,117,113,114,98,109,114,105,96,103,98,100,94,106,109,112,105,107,100,107,110,106,94,94,99,104,113,91,106,106,108,107,112,109,105,110,107,116,121,101,98,109,107,111,107,104,100,103,95,107,139,105,97,115,121,117,104,104,101,104,102,118,99,100,99,104,118,106,108,105,109,121,103,101,103,93,115,101,101,99,105,106,113,99,105,97,99,117,125,113,92,95,100,119,118,112,111,117,105,107,113,116,109,110,121,115,101,99,112,98,108,110,103,97,112,99,95,102,97,95,129,100,92,103,115,101,97,106,117,102,112,110,104,104,109,95,110,93,117,117,118,99,110,102,114,120,107,110,114,107,108,97,109,102,102,103,98,108,108,100,110,107,100,104,96,97,110,103,103,104,108,98,93,106,115,103,106,100,99,111,107,115,100,104,100,121,95,101,113,103,120,109,104,96,96,105,99,130,98,105,114,106,106,100,120,110,105,117,110,121,112,93,95,118,107,99,110,117,110,97,103,96,123,113,113,110,102,99,101,120,110,103,104,103,90,105,103,108,99,104,91,105,109,107,100,103,106,101,108,116,105,104,111,104,98,111,100,114,106,117,113,104,90,105,104,95,108,115,97,116,116,96,97,114,109,112,104,77,110,108,120,110,109,100,101,100,110,102,111,98,101,108,120,109,115,114,104,109,103,119,98,104,99,109,101,94,105,105,100,102,104,101,105,90,109,99,108,107,105,107,112,95,98,105,103,106,93,114,99,114,101,94,104,109,88,101,88,106,114,108,97,104,100,112,94,105,110,99,113,117,134,101,70,97,106,108,102,103,96,96,100,110,108,98,101,105,110,103,98,105,112,109,106,106,107,97,111,110,106,108,92,101,110,95,109,111,106,95,101,104,107,98,95,108,102,109,103,105,108,111,111,92,96,102,104,108,107,115,106,106,84,105,103,112,111,102,110,91,104,108,73,109,106,107,109,111,105,113,109,96,91,103,110,98,99,99,107,99,115,107,98,94,98,101,109,104,113,81,100,109,112,104,103,105,113,110,95,101,113,121,105,117,108,114,85,101,102,124,113,110,102,108,99,100,104,94,111,117,96,109,105,100,110,112,102,104,108,110,104,108,112,104,113,114,101,97,104,105,123,105,105,100,109,105,105,90,103,109,98,108,105,109,95,113,107,97,108,111,102,111,109,103,99,102,102,95,113,109,120,108,101,93,105,108,98,105,103,111,110,106,108,116,108,111,82,108,137,103,102,114,109,101,94,107,116,105,110,99,114,112,116,103,100,99,106,105,99,101,104,112,110,97,99,105,102,105,104,100,100,96,115,109,89,101,100,110,111,95,106,92,107,103,109,97,97,111,91,98,112,101,105,109,105,110,113,110,100,102,110,119,107,94,87,116,102,103,108,112,113,109,99,105,102,110,103,118,113,96,110,105,102,113,95,82,100,103,103,99,111,105,110,99,113,116,99,111,105,103,100,117,102,100,102,97,118,100,123,105,108,100,112,104,98,93,99,111,110,99,99,104,109,106,108,103,107,105,108,109,108,98,106,110,102,94,107,87,109,105,107,104,91,97,103,117,96,95,110,107,109,107,111,99,108,116,102,101,102,105,102,128,109,106,98,114,92,102,99,118,99,111,104,106,105,108,103,108,94,116,105,111,100,111,101,121,103,100,104,100,98,103,99,103,111,95,108,116,103,104,96,110,99,117,92,105,108,98,100,108,95,97,106,126,111,101,107,103,106,113,105,102,112,111,90,109,109,118,93,105,105,113,106,112,107,81,100,105,114,116,98,108,81,109,104,106,90,106,97,98,106,102,114,104,103,117,109,101,109,109,98,106,110,105,110,121,110,109,114,107,98,104,104,108,96,100,106,105,106,92,104,98,105,126,97,102,102,103,109,109,112,118,108,108,107,110,105,102,109,104,114,122,102,94,92,122,109,106,116,110,109,104,113,120,116,121,101,117,103,107,105,102,102,103,108,105,116,109,99,112,103,108,106,68,98,105,102,98,100,108,110,95,102,95,122,102,107,109,105,106,112,104,106,95,117,123,103,102,107,109,96,104,106,104,110,114,107,98,90,120,102,99,116,96,104,116,114,104,101,102,103,107,108,109,97,94,106,109,96,113,104,102,102,103,109,117,98,99,102,100,122,116,85,111,104,109,105,115,116,108,109,117,104,108,103,109,95,108,104,109,105,104,99,103,108,106,91,105,109,89,109,84,102,109,101,107,107,98,113,104,113,119,108,98,105,104,104,117,95,109,105,108,102,114,106,106,95,100,111,106,104,116,102,91,119,103,104,109,108,100,107,99,101,111,115,107,104,109,110,106,101,95,93,106,104,100,98,105,92,106,94,99,103,98,102,103,104,119,106,116,112,102,104,104,120,117,98,104,92,92,119,99,104,117,95,106,108,106,113,107,108,111,107,104,72,97,103,110,96,102,104,103,108,101,105,95,106,98,105,101,102,100,105,123,115,85,111,120,104,100,110,123,107,99,94,113,98,99,103,125,104,107,102,94,78,109,108,105,106,109,99,120,105,108,104,117,105,96,113,110,102,104,99,104,116,103,115,111,101,115,115,113,94,104,106,107,121,108,102,101,110,114,113,105,119,108,108,108,97,94,105,112,109,96,107,96,108,110,92,109,99,101,99,113,100,110,111,107,108,102,104,94,106,108,97,109,97,128,98,103,107,87,109,122,121,102,98,99,90,110,107,108,102,88,116,122,102,95,111,110,100,110,107,112,102,98,109,104,100,102,85,97,99,106,117,104,100,102,98,117,105,111,112,104,95,101,101,99,118,105,101,107,99,105,102,110,103,124,103,106,102,108,98,110,100,109,101,102,98,118,101,111,109,100,108,113,89,120,104,86,109,120,100,90,103,107,107,101,108,114,112,100,125,115,103,102,92,107,104,99,93,92,106,102,100,110,109,112,103,117,105,106,106,101,103,102,105,105,112,105,105,89,92,103,105,109,112,104,96,111,84,107,111,109,100,113,108,106,101,109,102,107,102,106,120,106,112,90,121,97,109,95,101,99,87,95,101,105,112,103,106,115,101,107,100,129,93,100,99,98,101,115,105,108,106,103,110,110,104,102,109,105,107,96,103,114,116,121,111,109,113,99,95,110,110,116,116,110,98,103,108,109,103,106,110,99,115,98,104,103,104,120,99,112,103,107,108,105,98,113,95,102,104,98,98,114,97,103,116,107,96,92,109,113,92,104,106,104,101,101,100,107,108,95,108,116,100,94,112,102,113,99,96,85,97,120,100,103,103,94,113,96,97,101,93,107,97,125,95,115,113,87,97,115,104,107,113,100,105,105,101,105,112,118,99,107,103,101,108,97,103,102,104,103,101,100,106,97,103,110,105,106,97,112,102,107,102,113,102,107,96,100,104,113,109,116,89,100,108,113,99,103,94,110,110,97,106,116,116,111,110,102,117,115,120,102,107,116,102,103,105,93,97,116,100,100,109,87,106,107,109,113,109,108,97,105,98,83,107,101,106,75,113,106,100,107,101,101,112,108,107,106,100,109,106,110,97,101,93,98,104,105,98,96,95,106,106,105,100,108,96,95,102,110,107,106,111,107,107,99,108,112,102,78,115,108,102,96,101,110,101,102,110,112,106,109,99,110,101,105,101,104,107,102,119,126,116,114,104,80,94,110,107,117,108,102,102,107,103,102,102,104,108,102,95,97,102,112,107,99,117,101,113,101,101,106,99,94,111,106,104,113,91,121,103,102,99,98,101,110,95,104,108,112,108,113,99,112,108,106,99,101,103,100,102,100,108,98,99,107,102,97,108,103,105,107,97,109,103,102,97,110,103,97,98,97,102,100,103,98,118,97,108,74,102,98,115,105,121,104,94,108,95,94,116,123,111,110,98,85,102,105,101,101,107,108,104,88,105,108,99,82,101,102,98,104,104,102,104,113,88,111,98,112,111,99,109,96,88,107,75, +543.37622,95,101,102,112,99,107,87,110,78,107,92,107,113,104,114,114,95,106,122,97,108,97,107,116,108,101,101,101,102,104,114,107,95,100,117,100,108,101,100,110,97,104,113,118,130,109,89,114,100,117,117,102,110,111,105,105,103,100,90,102,106,99,105,110,102,125,98,89,103,80,122,105,101,99,106,116,98,110,105,110,97,106,107,105,109,98,75,121,103,117,114,99,103,114,91,107,111,109,87,102,109,100,102,116,104,121,99,112,115,115,101,109,107,113,114,108,98,115,102,100,102,100,99,117,112,109,112,89,116,104,106,107,107,102,99,98,105,105,95,92,108,100,111,98,99,105,120,112,100,104,103,95,98,99,95,98,103,96,109,119,78,104,105,106,109,105,92,101,111,102,104,98,106,109,108,102,109,97,94,111,103,100,102,116,105,100,101,97,103,118,109,104,106,119,109,107,116,109,92,96,95,105,110,103,109,97,106,112,121,98,112,119,114,104,113,109,104,104,107,108,101,99,112,122,112,115,104,110,99,107,103,106,120,104,103,102,100,109,112,105,102,104,137,106,113,106,103,108,106,106,109,107,114,126,102,100,102,81,122,104,81,106,106,108,97,93,117,111,109,105,107,103,104,97,112,117,116,107,107,95,105,104,111,111,108,102,116,113,100,118,108,107,119,112,111,97,98,105,105,106,109,105,115,111,97,111,100,106,108,104,98,95,107,102,111,110,102,120,104,103,103,112,110,117,112,105,103,105,110,104,95,107,107,117,110,98,113,97,100,113,103,109,110,103,114,111,100,95,99,104,103,76,119,106,114,106,105,114,101,109,112,105,99,100,92,102,107,104,97,108,120,98,108,100,104,97,88,105,102,100,111,112,103,99,108,100,94,101,111,95,108,109,105,106,96,88,100,111,109,107,106,107,105,109,102,102,94,112,110,99,107,99,112,118,102,101,115,97,102,107,95,94,96,107,104,120,121,103,100,112,103,107,99,109,114,92,105,119,109,106,112,107,109,104,116,110,109,102,109,111,104,108,109,107,100,103,108,110,109,99,114,109,103,110,117,104,105,116,113,99,114,118,108,95,74,96,98,110,106,107,108,111,104,114,103,118,107,107,96,120,106,109,108,106,88,110,105,103,112,106,122,103,114,103,113,104,102,104,106,104,107,113,115,103,105,97,106,116,101,89,114,107,102,108,115,97,94,104,114,106,75,109,118,107,108,117,111,96,120,103,111,121,115,111,101,106,116,102,106,112,117,98,107,108,96,104,107,113,108,113,107,116,103,128,108,104,104,113,119,115,109,103,109,104,104,107,109,109,115,110,98,106,106,101,114,118,105,117,108,95,115,129,99,108,108,102,113,109,99,105,99,99,112,95,101,100,97,102,99,103,99,104,110,113,109,101,108,106,101,101,102,95,96,108,113,110,98,100,102,107,111,96,86,117,114,111,101,98,100,100,102,99,102,109,84,110,109,113,106,108,104,120,116,99,100,95,119,108,104,115,112,103,82,115,114,113,102,102,111,107,112,110,110,107,110,107,99,106,110,106,110,116,103,92,106,98,103,110,104,114,117,104,96,98,100,98,111,112,104,96,110,106,102,112,100,105,109,114,111,109,101,99,115,100,98,108,108,108,106,115,112,104,120,122,105,92,100,114,100,115,94,111,108,110,105,98,113,103,110,117,87,98,104,109,103,109,115,108,105,100,103,96,101,125,113,106,105,107,107,101,104,113,100,97,106,107,105,109,112,102,113,98,93,112,98,99,104,96,98,107,97,118,106,102,110,103,105,103,102,106,104,104,102,102,106,114,105,103,110,112,97,110,99,107,111,102,103,99,108,109,100,110,86,104,112,103,121,109,112,107,109,99,110,101,104,105,106,100,114,109,113,104,121,110,98,124,108,95,128,124,101,107,92,108,108,102,101,97,112,103,110,101,97,106,101,105,114,97,113,100,102,107,99,106,99,96,100,138,103,98,108,119,105,113,105,111,110,101,111,81,109,109,126,106,98,110,99,111,117,97,103,105,107,111,114,102,110,104,106,114,89,117,111,99,96,100,103,106,99,91,108,104,116,90,110,111,99,121,106,109,91,103,106,97,105,108,97,112,110,107,104,104,108,105,94,113,93,113,118,113,110,92,101,107,95,111,114,104,97,103,118,108,107,103,107,103,108,103,106,109,95,119,111,97,108,117,105,110,99,110,98,116,116,116,106,101,115,104,95,105,104,108,121,110,116,103,105,120,102,94,126,102,112,102,108,109,109,107,100,104,112,100,110,111,107,110,114,107,104,99,106,104,109,102,100,102,99,100,101,115,107,106,113,89,121,96,112,116,97,109,104,117,101,108,99,86,92,108,104,114,105,105,113,115,100,108,103,119,102,109,113,108,98,116,101,101,97,98,111,103,95,106,108,102,102,100,98,107,101,114,101,110,106,99,103,99,98,100,111,116,92,108,97,116,103,117,108,101,75,106,99,115,116,103,107,102,109,105,99,110,111,97,98,101,103,117,106,102,108,99,113,104,97,106,105,109,100,97,110,112,117,110,104,104,107,112,101,81,118,101,97,109,111,100,108,106,102,114,91,104,102,95,98,120,99,100,109,105,106,101,106,90,98,95,101,101,116,111,104,105,102,109,117,94,99,98,65,91,103,100,106,103,119,96,89,109,102,106,105,100,109,93,90,100,106,109,107,102,103,102,108,108,117,109,103,87,113,104,104,101,102,105,104,102,105,117,108,104,113,111,106,103,107,123,92,99,105,113,112,100,120,100,110,103,116,106,95,105,109,99,96,106,98,112,100,94,121,104,94,125,115,113,107,100,104,97,117,105,98,95,97,124,109,113,105,106,101,103,103,117,103,75,104,113,118,107,107,112,107,87,100,112,119,115,105,106,90,107,117,109,116,95,124,88,100,98,111,101,99,98,104,107,107,102,113,116,106,90,99,100,102,104,93,115,105,108,107,107,97,89,104,109,110,96,110,104,106,115,111,102,106,117,102,112,100,98,108,98,108,91,94,99,102,108,114,113,99,105,99,98,111,105,95,93,107,106,106,119,102,105,68,101,98,103,108,107,118,94,110,102,103,98,101,94,103,92,112,104,88,99,112,103,115,110,104,115,100,101,103,95,101,103,110,107,112,98,108,105,101,110,104,102,117,100,112,104,110,105,100,113,98,105,91,95,100,104,99,100,100,113,98,99,96,94,102,109,96,122,95,107,104,115,94,103,110,90,102,115,111,95,101,104,107,107,108,74,106,101,114,118,100,103,115,100,109,103,92,101,96,110,104,95,110,115,109,94,106,100,112,110,113,109,101,108,106,95,114,87,93,108,101,94,106,117,94,98,107,108,113,99,107,109,110,94,105,100,107,118,116,103,119,112,99,109,119,93,103,99,107,113,90,103,122,114,102,90,121,105,109,103,96,97,94,105,92,107,102,108,103,102,108,99,111,106,103,100,110,85,105,119,110,110,112,95,114,102,108,107,112,95,106,107,95,101,113,108,99,112,107,87,110,103,98,102,116,105,111,92,108,112,109,107,106,121,102,108,108,94,102,114,103,104,98,113,112,105,93,92,116,86,101,98,107,102,114,102,107,105,108,107,98,104,107,100,103,93,102,113,103,94,90,91,110,87,104,87,101,102,107,101,101,109,105,110,98,111,91,123,109,104,103,80,101,118,116,101,99,109,103,98,105,102,97,121,110,93,106,106,116,96,99,115,101,101,108,101,102,99,105,87,104,115,95,102,126,110,116,111,122,102,89,101,121,111,86,106,109,101,104,109,104,102,105,91,114,96,113,106,96,105,105,107,93,104,104,104,89,110,115,99,102,109,99,95,101,97,100,102,95,102,104,96,109,102,102,110,100,105,106,94,101,106,98,102,95,111,102,85,97,96,100,98,95,119,110,111,105,95,106,97,112,101,103,85,102,100,99,98,111,97,99,112,94,103,103,113,103,102,110,110,115,99,101,105,106,102,99,100,104,117,100,103,104,100,109,98,101,92,107,102,115,98,93,106,94,103,103,103,95,100,112,105,99,97,101,108,99,90,105,101,108,87,97,112,99,106,100,107,107,103,110,99,98,108,99,105,96,96,107,98,104,106,102,98,113,106,103,95,104,91,113,105,96,113,91,105,106,98,111,103,99,86,103,109,96,91,97,112,106,90,113,106,113,98,110,99,113,105,110,97,124,104,110,101,101,109,98,101,97,100,106,106,105,104,107,107,94,115,106,107,104,112,116,99,74,95,116,95,92,114,105,96,113,91,96,95,98,87,110,100,103,102,106,101,98,90,104,88,102,100,108,112,116,98,94,91,99,121,95,115,94,102,109,99,106,99,105,107,99,107,102,107,112,114,100,99,130,106,105,108,115,109,94,113,113,81,109,98,110,110,94,94,107,107,99,112,108,100,94,108,116,110,104,103,103,93,92,88,111,108,115,103,117,119,106,101,101,98,108,106,100,99,103,99,111,102,100,94,105,117,97,97,95,113,88,102,96,102,102,97,106,95,115,101,99,95,108,120,104,94,97,108,108,98,101,102,101,117,106,109,104,97,115,105,107,104,103,102,103,98,98,102,92,96,108,101,92,113,104,99,104,103,101,102,107,95,108,107,98,102,116,106,104,103,107,91,107,95,101,103,105,112,112,113,100,105,107,119,111,97,109,109,123,106,98,87,98,92,105,98,103,113,98,94,108,105,97,98,88,94,103,100,110,94,104,91,118,108,106,115,99,106,101,95,99,102,102,112,102,98,132,101,112,98,107,102,87,105,108,112,111,109,106,99,113,98,101,99,91,112,106,102,77,96,112,106,103,99,121,108,89,109,109,103,97,134,90,98,109,103,105,99,111,104,95,102,87,118,120,102,109,104,106,105,101,103,112,111,92,97, +543.51703,120,95,100,104,104,109,109,105,97,107,111,108,81,102,102,99,105,107,111,99,99,102,109,105,96,95,121,103,94,114,109,100,117,98,115,111,105,99,100,107,100,99,88,90,101,119,98,103,99,117,109,101,117,114,95,87,109,116,107,109,110,108,104,109,103,113,108,108,126,99,115,104,95,113,126,103,103,104,104,114,103,103,112,109,101,105,115,116,108,90,108,103,113,98,106,103,103,103,106,107,117,105,117,99,100,110,111,99,99,104,107,104,102,111,103,88,96,104,136,113,105,104,112,117,115,110,121,107,111,102,99,104,112,104,100,104,102,77,110,94,105,105,90,108,109,108,116,99,99,108,113,113,104,119,110,95,107,105,102,104,120,104,111,115,110,113,97,95,101,92,106,100,99,108,103,104,114,105,113,112,109,109,109,108,116,119,107,95,115,104,101,101,111,107,101,104,113,108,105,96,107,125,101,106,105,92,107,109,102,120,99,92,105,102,120,109,97,103,125,105,102,109,96,105,99,113,101,98,109,108,111,111,107,87,114,102,99,100,100,95,99,112,99,101,99,99,94,109,104,121,105,109,98,98,106,115,93,110,108,101,85,90,112,115,102,101,98,108,108,108,103,86,133,101,110,107,114,107,96,105,91,103,99,99,103,108,89,108,99,100,102,99,120,109,105,109,107,103,112,100,109,109,108,123,94,106,110,114,105,110,114,108,106,117,104,105,107,93,101,121,103,102,111,108,117,100,103,93,112,109,112,107,106,103,112,102,103,104,101,112,103,101,107,100,104,100,97,101,110,102,100,109,114,113,119,108,120,101,103,106,114,107,101,99,103,111,104,112,98,128,116,108,123,103,103,99,105,107,112,99,105,111,109,99,107,98,97,107,104,98,112,77,102,106,105,103,102,93,108,107,107,104,98,108,113,110,109,111,106,110,96,96,101,107,106,95,110,106,107,107,103,103,110,114,102,99,102,95,111,114,95,105,99,107,100,113,104,103,100,100,104,99,109,111,110,107,103,103,104,127,108,100,102,117,105,115,104,104,113,103,117,108,111,108,116,101,104,117,102,115,117,111,98,106,95,98,106,112,106,108,108,114,108,120,107,100,111,105,106,91,98,103,121,109,100,104,85,105,113,107,112,108,98,122,115,103,98,106,112,96,117,111,103,109,103,104,97,114,92,100,101,107,105,95,108,107,114,122,99,105,109,115,100,122,112,115,95,111,108,111,100,103,98,95,116,94,107,114,117,96,108,109,114,99,108,101,105,109,104,99,102,107,103,92,117,103,95,124,105,102,90,106,104,108,126,97,107,111,114,101,120,105,118,104,106,103,119,91,116,103,104,115,108,107,107,119,109,101,111,112,109,109,82,119,106,107,114,116,106,91,112,103,106,103,110,113,87,103,111,107,111,99,100,103,109,103,100,108,106,99,110,103,106,113,93,109,102,109,113,98,108,114,99,108,96,103,98,105,119,114,102,120,99,129,110,125,107,107,115,116,111,95,109,112,87,106,103,96,96,113,109,103,110,122,107,115,107,98,98,98,116,109,103,109,107,103,95,97,107,118,114,103,103,106,94,115,111,99,112,101,112,95,96,107,104,96,124,114,111,117,103,102,107,114,108,102,97,117,119,103,97,106,114,111,99,97,115,106,106,108,107,114,121,107,98,98,104,102,110,120,109,99,88,113,116,87,91,110,106,100,103,110,106,101,104,111,107,107,114,102,112,106,103,106,109,108,99,104,107,94,102,109,96,99,95,104,102,109,105,101,102,106,114,113,108,99,106,98,103,118,102,99,106,105,102,106,97,101,111,103,106,114,106,110,114,117,110,101,115,106,115,104,105,101,121,109,104,107,110,113,107,101,104,112,107,102,103,96,107,95,114,108,120,102,104,114,103,100,103,112,98,109,113,107,110,101,106,119,82,107,108,112,111,104,106,101,118,103,100,113,102,103,110,112,112,95,101,101,104,112,115,109,113,119,103,89,116,103,97,103,102,111,106,100,108,137,94,115,107,82,103,96,111,112,104,107,114,101,96,110,92,108,114,101,105,97,114,109,99,114,108,107,97,109,107,90,100,110,105,102,89,103,99,107,103,103,106,84,124,114,97,87,113,111,102,97,96,102,100,99,103,102,109,82,103,112,79,111,114,109,110,112,108,114,113,101,109,101,119,104,109,119,117,115,105,100,103,101,106,112,101,105,105,95,104,117,104,100,104,106,105,105,121,108,108,107,102,112,109,103,109,103,117,107,83,102,106,104,125,103,114,116,129,100,114,106,123,116,91,99,104,107,93,95,109,108,115,108,108,114,111,113,108,112,113,109,109,99,112,115,119,120,111,108,113,80,111,115,113,109,92,106,90,110,107,118,109,100,100,98,106,117,109,113,103,109,107,101,101,97,99,106,106,113,107,100,94,93,102,102,100,103,97,118,108,101,101,98,106,112,107,99,91,106,105,102,93,91,105,109,108,108,97,96,105,94,104,95,106,89,117,105,113,97,108,105,102,91,109,115,103,103,114,108,98,109,83,106,119,102,105,96,92,96,116,90,100,105,115,98,109,115,93,98,107,108,110,100,123,96,104,95,102,98,111,83,116,123,109,97,100,109,110,117,110,101,101,113,107,131,108,91,96,104,110,110,99,104,114,106,116,106,112,100,102,100,116,104,112,99,101,98,98,111,99,108,94,108,113,115,95,99,115,130,105,107,111,97,112,110,101,98,109,117,111,102,113,112,103,105,107,92,105,119,102,109,108,101,89,104,101,106,92,84,101,101,88,99,98,109,102,111,106,110,91,107,102,107,108,100,100,108,113,100,81,105,104,109,101,114,105,100,105,104,108,105,87,110,104,98,107,100,85,101,107,108,99,108,102,120,106,102,118,116,106,110,98,110,113,117,102,111,106,111,100,106,103,104,102,116,114,102,100,106,110,107,107,101,103,116,111,100,93,112,96,109,111,106,106,102,109,102,119,108,123,111,110,101,112,115,114,101,110,108,131,102,116,102,101,111,109,109,100,107,100,98,109,116,115,105,121,108,117,112,107,121,109,104,111,109,104,97,98,109,103,111,102,112,73,106,111,109,99,96,109,106,108,103,108,101,111,99,105,101,122,102,110,110,100,99,87,123,98,107,107,96,109,96,101,102,99,103,101,104,112,103,110,102,117,107,132,112,103,110,104,97,115,105,105,99,102,110,113,112,106,92,109,109,111,116,100,97,98,91,98,116,110,96,108,111,118,110,96,106,106,112,105,112,96,107,103,101,89,111,107,115,95,108,115,110,99,100,106,98,117,108,130,116,113,109,102,109,104,92,120,103,101,107,103,95,95,99,89,104,87,110,113,112,110,98,109,99,108,102,87,108,104,109,102,100,101,87,117,100,100,116,97,109,102,80,89,108,115,118,107,98,109,109,96,114,91,102,98,100,102,99,91,107,97,102,112,113,101,96,99,111,108,103,108,103,108,115,99,95,107,106,102,109,109,98,96,105,96,116,98,99,95,106,100,111,100,100,97,126,134,99,103,117,105,99,106,102,110,106,115,108,89,112,112,107,107,105,111,117,104,106,104,101,101,104,102,102,104,113,108,119,111,92,105,105,108,114,105,115,115,104,107,103,94,95,115,101,110,98,99,110,104,104,104,98,108,98,120,113,94,99,104,108,108,106,110,109,100,107,100,103,99,97,113,110,101,100,104,110,102,98,121,109,79,101,107,107,106,102,109,100,98,103,114,105,112,107,104,106,107,98,106,105,115,102,115,112,128,93,108,100,91,105,99,106,95,95,108,106,108,97,108,113,102,115,112,108,106,110,104,88,110,109,89,103,105,111,101,102,112,109,112,111,105,92,112,95,110,110,109,100,106,108,105,108,110,101,101,95,126,124,99,111,104,97,102,108,99,108,91,95,106,98,116,100,103,99,103,86,103,102,115,120,104,109,96,107,110,102,107,112,108,98,99,110,96,108,119,107,101,111,103,108,108,111,109,111,101,107,112,101,102,108,109,115,104,105,121,119,106,105,104,96,113,107,122,104,132,93,102,108,109,104,102,103,107,100,97,98,107,107,106,102,106,103,104,105,112,106,103,105,110,104,101,123,107,104,104,105,103,110,88,107,115,102,107,105,111,102,126,115,93,100,109,109,115,106,122,98,105,113,128,109,103,104,125,79,121,104,110,103,96,107,101,124,102,100,108,105,108,110,117,98,101,105,117,100,112,100,97,100,109,114,105,108,96,117,102,106,86,102,108,117,88,110,108,100,79,100,91,90,94,104,120,104,105,108,89,95,109,111,109,95,109,101,103,102,110,121,109,96,109,114,111,110,104,111,107,102,129,96,120,111,96,114,113,113,89,101,97,98,111,110,108,110,96,124,112,103,107,109,111,94,103,103,104,102,109,115,102,102,109,115,108,95,114,114,99,114,102,98,95,93,112,106,112,103,109,108,116,99,101,99,118,112,95,103,104,107,113,105,100,106,107,102,105,105,101,84,124,103,101,119,99,109,112,108,100,98,86,111,114,109,101,91,101,117,102,104,99,108,116,94,101,105,104,105,108,102,109,106,96,128,102,118,113,90,101,106,114,101,117,99,106,94,65,103,95,109,79,107,126,116,106,102,101,119,124,103,103,113,111,111,102,105,106,131,107,108,102,113,94,97,125,93,108,96,111,106,107,111,118,116,108,112,105,113,98,83,98,95,103,105,110,107,107,110,91,112,103,112,100,98,123,103,87,109,125,92,106,104,104,130,104,103,106,74,113,108,103,101,107,105,93,105,89,109,111,103,113,110,114,126,98,112,100,102,99,97,105,100,101,105,107,98,92,100,92,99,108,113,98,102,106,107,95,113,105,92,121,105,113,111,102,99,107,107,110,106,102,120,110,96,107,109, +543.65784,115,95,90,105,87,109,101,97,113,105,94,103,115,97,103,101,93,105,106,101,118,109,105,102,109,104,120,107,98,125,97,116,100,125,103,106,102,99,105,91,93,106,112,97,103,100,105,123,110,91,104,95,113,92,110,104,107,105,103,95,99,103,88,93,109,100,98,113,100,106,109,109,92,104,98,98,97,114,101,102,120,103,87,91,96,103,99,95,83,96,98,105,108,90,107,73,104,89,96,105,108,102,95,102,103,96,80,106,93,107,100,103,111,125,111,111,102,104,106,118,103,87,100,99,91,113,110,92,102,109,95,99,99,98,111,110,103,96,93,99,102,106,93,114,105,105,110,105,106,93,104,99,102,100,104,103,105,94,105,96,102,113,108,98,113,100,106,96,97,98,87,102,117,96,98,110,97,95,83,109,109,102,99,107,108,102,100,95,105,102,103,98,111,109,99,107,106,109,98,117,108,99,94,105,104,104,130,110,112,111,106,108,105,103,89,103,102,102,93,102,104,105,107,105,94,104,114,130,101,103,104,109,102,94,108,106,98,99,109,99,103,111,108,93,107,103,99,102,106,106,107,100,106,118,102,98,117,108,110,114,104,102,102,106,95,99,108,116,113,100,104,104,102,120,97,100,119,112,100,105,112,110,112,96,107,102,97,93,86,90,99,104,97,111,100,103,114,99,100,110,100,88,112,107,101,103,105,102,102,109,98,115,111,91,105,101,101,98,103,104,104,101,119,112,119,93,105,79,98,114,103,97,96,87,94,106,104,97,102,109,92,95,102,95,106,95,106,113,112,109,115,110,99,103,103,102,104,105,95,103,101,103,109,98,98,93,96,95,105,93,113,98,114,105,101,92,98,107,82,90,97,98,100,113,98,91,95,91,99,95,91,95,109,106,111,98,99,101,119,101,94,80,97,87,110,115,103,106,103,108,95,107,102,105,102,99,119,100,101,97,108,99,101,100,97,102,88,100,106,117,97,108,113,112,106,98,101,104,109,110,99,100,95,98,99,103,91,111,105,97,95,110,96,108,106,97,99,106,99,109,113,111,120,118,101,94,101,106,100,85,103,101,109,116,107,101,98,106,114,101,95,97,103,114,97,110,117,117,99,106,106,100,115,105,110,103,96,112,102,113,109,111,106,103,100,106,102,95,106,115,113,116,96,116,115,101,99,111,100,100,105,107,143,98,91,108,98,111,99,107,105,108,122,95,105,92,104,94,114,116,108,107,95,101,92,102,102,98,101,99,96,103,108,106,97,99,97,104,99,107,108,106,101,103,106,95,102,123,108,100,100,99,109,99,99,103,92,99,103,109,94,95,99,124,106,113,104,105,107,105,99,115,99,98,102,109,96,95,116,105,111,100,99,100,116,102,99,106,111,104,103,99,110,99,100,105,106,105,105,103,99,101,117,110,104,105,94,103,111,108,92,106,110,108,97,95,100,99,110,99,114,103,123,105,101,93,108,95,103,121,105,101,123,96,105,112,100,106,102,108,113,93,121,109,87,100,101,98,111,104,126,109,98,107,99,73,101,118,106,110,95,110,115,99,105,103,100,111,106,118,107,108,102,111,115,110,109,102,97,94,105,101,94,98,101,100,93,102,93,111,104,103,101,95,94,93,85,106,101,100,102,109,95,106,96,94,91,99,101,111,107,100,119,109,127,98,105,100,118,101,111,107,113,96,109,107,112,115,93,95,112,101,109,93,105,97,105,117,91,92,99,112,114,109,89,104,87,125,102,90,117,103,113,97,103,112,113,105,109,101,109,98,102,95,94,108,105,108,99,102,105,122,102,113,111,106,108,107,93,107,97,114,111,100,108,95,111,109,103,96,110,98,103,102,114,96,97,112,99,95,112,109,105,111,102,100,107,103,109,105,108,89,104,102,98,111,98,103,106,110,105,108,114,86,103,99,104,96,103,93,103,113,108,114,95,103,106,112,109,94,98,104,107,94,103,114,106,115,115,98,94,112,95,99,103,112,102,100,100,99,116,111,114,110,106,107,96,115,99,112,96,100,112,95,90,107,102,110,113,114,109,109,100,100,110,102,103,109,87,104,109,98,106,103,113,103,91,104,89,101,104,104,101,113,104,106,109,109,113,112,106,113,113,95,94,100,97,108,110,95,101,101,103,116,104,96,109,82,108,108,98,101,100,108,104,89,99,109,103,116,88,99,92,100,114,101,115,105,91,114,95,106,111,98,98,95,108,95,92,101,122,107,97,102,117,100,105,101,99,95,103,105,110,99,110,117,101,108,110,114,95,95,109,103,103,90,91,100,106,108,102,102,103,113,99,106,103,107,101,96,109,105,104,101,88,106,102,98,101,108,106,91,112,97,104,102,102,101,106,87,105,113,117,104,94,115,116,103,102,100,112,98,107,106,100,99,83,103,96,100,108,98,103,106,75,109,102,116,93,102,101,91,95,112,104,104,141,101,96,90,98,98,100,107,101,98,98,112,115,107,100,97,112,93,104,105,111,96,100,90,104,100,101,107,94,105,106,106,94,100,97,110,99,94,127,97,113,101,96,107,101,94,106,95,105,102,103,106,120,97,103,101,98,98,102,103,98,99,99,91,107,99,102,80,108,105,108,100,110,97,102,109,120,111,107,96,97,105,106,104,102,104,128,102,103,113,102,102,109,105,91,97,105,101,99,101,105,106,104,113,90,91,102,102,95,101,109,103,89,106,99,110,110,105,99,107,105,98,103,101,106,104,99,102,113,105,91,110,104,105,109,112,105,103,105,119,105,108,111,105,112,117,95,111,122,110,107,100,105,92,98,113,112,111,113,101,101,107,102,94,112,104,101,90,101,104,112,105,91,111,107,107,113,101,104,96,108,113,101,120,107,102,103,108,109,117,104,103,101,111,102,107,121,106,119,91,109,104,98,101,107,107,109,105,99,83,101,96,104,91,95,109,104,98,101,108,102,104,112,102,105,99,92,105,103,106,115,100,74,92,102,105,103,101,108,110,106,98,105,102,110,105,99,87,94,98,96,102,98,96,106,109,113,110,110,93,108,112,91,97,105,101,107,100,101,99,113,98,103,104,91,99,113,111,95,109,107,110,117,91,104,105,112,102,105,110,103,103,102,101,107,107,94,99,102,96,99,96,101,101,99,90,111,146,103,90,95,97,112,91,107,109,109,99,115,106,83,97,103,109,117,107,104,95,105,106,107,102,107,105,102,100,106,98,102,102,105,112,101,105,103,102,101,101,99,95,94,102,104,111,108,103,104,105,106,111,110,104,102,96,98,112,102,110,105,108,117,111,102,106,105,95,102,112,105,94,99,94,98,96,104,108,100,106,103,100,102,90,108,98,104,102,91,101,95,106,108,121,95,96,104,100,110,116,100,99,108,101,115,93,101,95,105,105,106,96,97,104,108,94,93,112,108,87,92,106,105,86,97,116,101,99,101,111,94,93,87,95,119,114,111,108,104,99,89,94,110,91,100,98,114,98,99,95,112,103,99,93,110,93,102,100,100,116,106,106,100,107,117,99,109,109,80,99,95,108,100,98,91,110,96,116,137,113,102,122,102,89,103,103,111,91,120,98,114,103,102,97,108,104,100,98,101,90,98,95,127,93,64,108,95,98,108,99,104,100,99,101,92,108,94,96,95,99,119,110,93,111,94,100,103,109,96,110,95,97,107,109,101,102,105,115,88,104,92,88,86,108,111,102,97,121,107,116,96,92,115,106,102,106,104,101,116,101,110,93,83,89,93,99,103,108,99,113,107,92,99,108,104,106,72,100,83,108,116,102,104,96,105,116,91,102,89,116,106,101,100,101,99,97,108,100,103,102,110,106,103,100,102,108,94,109,92,99,92,104,101,105,85,94,103,106,100,94,90,102,102,100,100,104,101,102,91,129,104,94,113,102,92,102,86,103,107,109,95,98,100,96,99,104,98,108,100,110,102,95,111,95,116,72,103,98,106,104,89,101,96,102,95,99,98,99,104,109,102,95,97,105,91,113,94,97,103,98,107,99,104,101,100,95,109,99,95,99,102,104,112,89,107,110,94,100,105,104,100,99,105,102,123,101,102,98,103,96,96,103,109,101,100,101,106,108,105,91,104,112,105,101,97,98,106,87,102,99,96,99,89,100,95,108,97,93,102,111,111,101,99,91,101,104,92,100,77,90,113,96,99,107,95,98,106,98,87,109,114,100,105,93,100,115,107,110,102,93,119,107,102,107,103,117,101,106,104,99,93,109,117,109,84,109,94,96,107,108,103,95,88,101,91,102,112,91,108,100,97,91,106,107,104,95,109,106,99,62,105,101,102,109,105,110,102,100,108,105,105,112,108,98,107,106,102,80,102,104,106,96,101,105,108,109,113,105,111,83,86,96,93,106,104,95,81,111,102,112,108,113,101,109,115,96,101,95,93,93,95,102,95,110,102,98,99,107,90,97,67,104,98,105,105,113,105,97,102,101,99,88,107,91,102,114,87,103,96,100,100,118,114,106,100,102,99,95,104,105,108,109,106,110,109,99,98,95,104,104,104,99,109,118,110,95,108,102,92,94,99,107,100,102,111,94,106,97,101,100,104,106,104,105,93,102,98,94,97,117,111,80,105,67,97,93,103,97,100,105,102,111,95,105,95,109,107,107,98,99,97,96,120,100,108,92,108,100,102,98,95,107,93,102,100,89,82,108,95,110,114,103,106,109,108,103,101,97,102,101,115,94,99,97,117,94,112,97,102,106,99,95,111,100,80,98,104,98,88,103,108,87,94,110,117,86,97,93,98,102,98,124,96,100,96,114,101,94,96,104,110,98,115,93,88,98,94,102,98,93,121,107,100,93,102,103,94,117,101,108,101,112,94,109,100,73,108,99,102,99,99,113,103,84,107,101,100,98,91,104,92,102,99,113,109,117, +543.79865,101,105,98,84,89,110,107,99,117,105,99,100,111,97,98,101,84,103,103,110,82,95,116,101,110,101,88,110,94,97,109,116,119,107,117,96,95,92,99,100,85,112,100,110,99,95,113,103,108,113,97,96,105,96,101,92,114,104,100,95,99,111,108,91,101,88,93,109,104,93,114,93,98,103,104,104,108,107,109,110,95,95,92,103,97,108,106,122,104,100,109,124,95,113,104,117,103,118,107,83,112,79,96,95,104,106,97,108,120,90,94,98,109,109,119,102,98,94,104,98,110,107,97,113,109,107,109,81,104,107,101,104,100,102,103,95,102,90,86,100,98,105,99,94,100,108,79,110,103,83,102,130,104,95,105,108,110,95,110,103,105,113,101,95,105,100,95,133,104,102,115,103,105,82,109,93,109,99,106,74,96,108,102,111,104,93,92,91,94,97,99,105,104,110,109,101,93,109,104,104,94,106,103,63,92,121,104,102,99,101,99,109,102,103,110,102,114,110,109,96,79,110,109,104,107,107,99,106,101,113,97,103,94,87,97,107,109,109,112,102,109,118,114,122,110,105,112,110,96,99,98,96,100,102,109,104,106,97,81,98,97,113,110,106,109,113,111,109,103,105,96,93,94,97,114,108,92,108,95,100,101,101,103,105,107,110,116,100,88,110,127,104,109,102,104,104,98,87,106,98,104,115,108,114,105,102,108,109,108,104,100,108,100,110,116,115,101,105,105,106,110,109,93,103,101,122,109,93,115,119,105,98,109,102,101,107,126,117,103,84,78,99,102,116,103,118,93,111,108,106,94,96,113,106,106,107,114,127,110,109,95,93,106,100,107,100,103,92,99,105,118,103,107,106,110,96,97,92,110,111,104,100,103,117,95,98,98,96,108,100,111,97,102,108,99,105,116,111,115,107,94,103,111,90,92,100,131,114,97,91,100,104,109,103,131,110,108,89,108,104,99,95,109,117,98,107,108,91,92,119,96,111,105,104,123,109,89,102,105,102,100,103,103,110,110,106,111,101,117,109,100,108,107,102,103,99,108,102,104,99,118,110,98,113,101,108,114,103,107,98,113,109,109,113,104,104,104,119,115,106,97,107,108,109,104,109,108,112,113,109,144,110,112,99,95,117,112,110,87,99,121,103,102,100,103,122,113,99,115,103,118,101,109,102,110,103,104,103,91,91,107,110,107,102,96,110,100,118,94,103,109,109,108,75,96,113,113,121,107,110,113,101,108,100,114,99,113,96,96,99,98,112,102,96,107,78,103,105,99,113,109,109,108,108,103,93,96,105,104,102,99,104,86,111,118,101,107,95,112,101,110,103,99,97,104,101,112,106,64,94,110,111,119,108,111,88,104,102,104,113,102,104,107,100,104,103,97,114,106,116,100,103,113,102,123,90,124,108,110,99,104,110,87,105,107,120,108,103,105,102,105,104,98,102,93,114,94,99,111,89,107,99,102,109,90,103,106,97,106,105,95,107,110,99,103,99,100,105,99,97,102,96,94,98,100,96,108,108,103,94,101,111,99,103,94,110,100,100,122,111,111,105,117,103,103,111,105,99,99,113,110,119,107,109,114,108,108,111,103,76,109,101,92,102,99,103,102,110,113,109,97,98,117,100,103,108,94,129,111,104,104,102,100,98,102,89,102,101,117,114,111,99,86,103,102,106,101,104,114,100,94,82,109,121,110,102,111,106,90,116,115,101,115,98,104,121,113,87,106,93,106,112,144,103,82,92,113,99,115,108,121,103,114,101,101,103,99,114,99,93,104,115,110,104,101,100,101,115,100,110,109,102,101,109,112,111,103,98,109,103,91,108,104,113,112,96,102,112,106,104,107,85,99,98,102,96,110,111,104,101,123,109,118,98,98,106,99,114,96,102,110,87,99,120,105,103,106,100,117,118,107,113,99,105,100,98,111,100,96,99,110,85,99,111,106,101,88,99,137,104,95,94,94,101,95,100,83,122,126,98,102,103,108,112,108,109,101,91,105,100,104,101,117,113,112,107,90,113,103,100,103,112,88,116,111,99,106,100,102,103,104,100,112,94,110,113,105,101,102,111,106,104,108,104,109,101,107,104,100,104,105,92,108,110,108,110,103,101,98,103,105,111,107,106,98,102,108,105,101,107,112,105,89,106,106,99,98,122,110,107,112,102,116,113,118,109,114,87,112,112,104,106,119,101,106,112,102,92,99,116,95,107,110,98,106,100,90,108,97,103,93,110,103,102,105,94,109,89,108,106,103,101,105,106,116,107,109,107,103,109,100,101,104,99,108,109,107,81,109,107,83,117,81,99,104,104,110,118,95,112,111,106,115,100,114,89,101,100,111,107,105,101,97,101,122,93,103,114,91,106,94,96,109,110,117,96,112,107,102,97,104,119,106,106,93,103,112,117,96,104,108,111,99,98,114,109,107,117,106,99,104,116,103,94,96,115,101,106,89,122,108,107,90,102,110,102,107,112,104,98,90,111,113,98,99,107,103,121,116,103,106,94,108,117,112,109,109,101,101,108,88,105,109,113,98,102,103,114,90,86,118,106,97,98,114,116,99,101,110,99,97,106,117,93,98,105,101,109,100,97,101,109,106,113,99,106,119,97,94,95,120,100,107,110,104,105,105,113,115,107,94,106,113,109,99,104,100,106,97,103,98,107,110,102,105,102,105,93,103,103,106,110,103,104,105,105,110,113,116,110,116,91,105,103,113,111,105,99,91,75,103,98,115,111,112,101,85,116,93,100,95,107,108,105,102,109,112,95,113,100,109,95,98,113,103,102,102,98,101,95,106,105,101,114,85,109,105,111,102,116,113,99,109,113,105,113,111,120,108,100,103,99,114,108,97,96,103,104,99,108,102,106,116,108,124,102,106,110,100,111,111,103,104,103,114,112,103,100,106,124,116,102,104,107,100,98,102,102,98,107,111,110,106,115,108,104,118,96,104,105,106,88,96,119,103,94,113,107,98,87,99,113,102,109,106,106,113,120,108,99,117,100,103,103,115,102,125,91,112,112,115,105,95,105,113,110,103,101,103,104,94,99,103,101,107,110,117,103,113,102,105,112,109,129,104,106,109,106,112,107,113,106,106,104,97,93,112,107,111,102,103,108,108,115,117,93,106,131,106,99,116,99,112,104,130,86,109,113,99,101,99,108,110,102,101,109,105,108,108,103,103,101,106,101,109,104,105,101,105,106,107,104,104,107,108,95,104,99,107,112,97,96,102,102,95,85,120,104,89,107,109,107,108,117,100,95,110,114,113,105,108,121,120,117,96,103,106,113,109,101,111,106,103,95,104,104,99,96,74,75,106,104,116,89,109,103,111,116,104,113,107,107,111,91,105,98,97,102,106,96,107,105,100,87,110,110,108,116,95,103,118,98,106,104,95,101,103,113,105,101,70,90,110,105,100,71,118,105,111,78,99,112,107,95,104,104,109,110,95,114,112,106,95,101,94,102,109,113,94,108,101,108,99,112,92,113,94,99,113,103,110,101,94,104,105,89,99,106,108,93,95,116,104,102,102,102,101,101,102,117,125,103,109,110,113,103,119,86,96,112,105,99,99,114,102,105,98,117,105,91,108,102,101,106,109,99,117,103,97,111,111,91,96,109,105,90,106,107,95,98,100,107,102,123,104,98,88,99,105,99,109,94,108,109,116,102,97,106,96,103,112,103,105,102,102,111,102,101,108,93,109,105,98,102,113,109,92,100,106,102,111,104,91,105,105,117,105,87,107,102,100,92,110,102,106,117,96,102,107,108,98,104,106,112,105,117,100,104,107,106,99,99,98,112,107,104,113,93,99,95,105,100,119,116,107,107,98,103,102,100,109,105,104,103,109,105,94,99,119,102,119,105,110,104,108,109,107,103,106,94,100,103,109,120,94,95,84,105,98,107,99,101,103,113,104,100,110,101,92,98,104,102,101,102,103,108,113,103,106,107,113,120,105,116,103,107,108,93,108,107,97,111,92,103,106,87,94,111,98,103,98,106,97,105,112,102,105,95,111,104,116,108,95,90,98,120,105,105,110,103,96,106,94,105,108,116,95,110,103,98,98,101,114,106,97,98,101,99,97,87,105,95,112,110,98,104,107,99,99,91,99,105,107,98,111,99,103,111,106,116,88,104,111,109,102,103,103,104,105,104,112,92,91,106,97,121,93,100,102,91,104,112,98,110,93,97,91,104,108,96,114,94,106,99,106,101,109,97,101,98,102,97,111,103,102,106,110,103,119,107,116,127,115,108,99,101,95,103,104,106,105,110,111,106,92,102,108,92,101,107,117,115,98,107,99,97,101,101,109,107,109,108,107,113,91,120,104,106,104,108,100,87,102,110,111,97,103,98,109,114,117,113,102,106,99,113,109,104,107,103,105,114,109,92,104,98,103,117,106,105,82,101,107,95,98,107,109,112,110,102,117,120,100,107,111,102,104,75,102,101,102,110,112,98,108,100,101,102,104,90,94,99,107,95,102,107,111,106,117,111,95,101,104,112,119,106,101,107,105,99,95,94,102,114,95,108,104,104,97,110,106,100,103,94,103,100,109,104,102,105,107,101,110,103,105,116,116,102,110,93,87,110,124,113,112,113,103,99,108,104,93,105,107,107,103,103,106,99,108,110,102,120,112,98,94,95,121,109,123,99,104,110,109,105,100,95,90,109,100,94,107,103,107,112,107,100,115,100,96,104,105,107,117,123,87,100,107,104,111,94,104,111,100,103,104,104,114,100,92,116,97,121,102,103,95,99,100,124,109,122,101,94,96,95,95,109,110,106,106,109,108,98,106,94,109,102,102,108,106,106,104,57,55,91,108,105,101,105,110,110,103,101,114,104,99,100,83,107,97,99,98,109,83,109,108,97,95,111,107,89,97,105,99,98,86,103,104,107,97,98, +543.93945,90,108,103,101,100,112,109,101,108,108,108,97,87,106,115,119,103,125,99,95,106,98,98,98,107,103,105,104,95,98,99,102,108,104,104,103,99,81,95,103,87,97,104,102,121,105,101,109,104,108,100,104,98,106,106,104,108,112,99,116,104,107,91,99,92,118,78,108,113,94,95,100,92,98,107,112,101,99,112,113,99,105,93,119,100,84,105,93,105,91,92,103,108,100,101,107,104,115,96,97,94,103,99,93,99,102,106,91,111,94,99,97,103,104,93,101,88,100,101,106,117,96,109,101,99,104,110,105,101,116,120,101,101,99,108,106,92,103,90,99,96,101,98,97,95,100,105,109,100,104,110,82,112,103,94,106,105,108,93,100,106,96,107,104,104,105,108,103,94,112,100,105,94,108,108,95,100,93,96,104,104,101,105,108,108,108,92,86,114,114,110,112,103,105,93,91,112,101,109,110,101,98,102,95,104,102,91,98,111,107,101,95,104,106,109,92,99,100,93,101,117,114,93,109,111,107,102,100,96,113,100,96,118,107,105,104,109,98,90,107,95,101,122,110,99,99,109,107,102,99,107,100,107,94,103,104,99,107,96,94,99,109,102,106,96,99,106,112,81,98,103,96,107,109,106,100,104,104,90,104,102,113,103,116,99,99,97,103,97,104,108,104,114,95,103,106,108,96,103,109,102,104,105,90,99,120,104,111,100,101,97,113,105,101,109,106,100,103,102,106,105,114,108,114,103,109,97,93,125,105,92,100,114,110,100,104,100,101,92,99,100,107,108,105,113,115,96,96,101,96,103,107,100,102,109,105,108,103,103,103,103,100,106,113,77,105,107,110,84,113,103,99,97,112,124,112,110,113,99,105,103,101,97,107,104,97,109,105,104,114,119,94,110,101,108,120,99,100,100,111,108,103,97,101,95,91,116,98,106,105,101,106,104,100,111,99,108,96,110,95,100,87,102,107,100,83,104,94,99,114,103,108,99,105,104,99,109,105,99,89,103,113,99,103,105,101,100,103,110,97,106,94,107,110,106,106,102,100,97,103,100,107,103,98,104,97,113,88,99,118,101,98,104,103,106,94,121,117,119,103,108,108,111,109,107,114,103,104,109,109,102,100,112,108,102,98,109,97,110,102,104,97,107,105,101,101,115,94,113,104,109,106,98,104,86,107,104,108,113,102,99,108,107,98,105,115,109,101,101,116,106,102,97,104,116,107,98,100,105,98,86,101,100,107,109,98,104,94,117,102,98,104,104,105,104,95,115,98,109,98,100,102,91,102,109,98,109,102,99,107,100,104,96,105,105,102,102,93,96,99,122,98,108,100,95,92,113,98,103,101,94,107,104,103,103,113,101,108,95,103,121,103,99,104,106,114,98,112,99,115,106,99,120,103,115,94,96,101,107,98,103,105,113,111,104,85,92,112,106,101,90,109,104,104,105,104,100,105,101,108,101,104,86,110,94,98,96,87,104,90,98,106,99,110,104,99,103,100,97,113,101,99,108,119,103,94,110,108,100,104,102,114,95,110,98,109,100,101,78,118,98,104,106,95,103,102,97,91,105,103,103,106,93,110,105,102,103,109,122,106,133,101,104,98,96,111,106,105,104,105,108,104,95,90,101,69,112,91,98,111,119,95,111,97,104,102,96,100,102,103,111,117,94,107,80,99,98,121,109,99,105,102,106,99,102,103,110,102,97,108,109,111,102,102,131,109,104,98,102,108,104,100,106,104,94,106,105,95,100,106,102,97,121,101,109,93,117,108,106,100,104,100,110,111,120,102,99,108,98,106,98,108,103,112,115,117,115,109,91,110,99,101,93,103,105,102,108,103,102,103,114,105,102,102,112,108,104,80,100,98,94,106,105,104,107,94,109,113,105,107,108,99,111,95,95,108,108,101,104,101,100,102,105,99,99,109,101,77,96,96,106,107,100,108,100,99,95,103,101,105,98,109,98,108,95,115,103,109,96,107,110,121,106,112,103,109,100,101,98,106,75,115,104,103,96,102,100,97,111,115,102,115,119,106,105,106,106,100,100,99,103,102,101,117,114,113,104,107,100,102,112,122,102,91,94,103,111,95,102,99,102,103,104,99,106,101,110,109,100,99,98,102,108,106,99,104,98,98,104,114,110,104,112,107,97,98,112,118,106,110,75,122,108,86,109,99,106,107,90,102,107,110,97,90,105,103,104,114,110,111,106,109,107,111,100,105,103,90,121,97,102,96,100,108,120,106,99,117,99,101,108,98,107,105,88,98,105,100,104,93,111,110,109,94,110,72,96,101,100,113,102,107,102,107,99,102,103,114,100,113,113,100,107,102,116,95,113,110,108,108,102,106,100,113,110,100,121,108,111,101,97,110,113,112,102,107,116,99,91,125,111,114,125,102,113,117,112,103,86,103,110,110,98,101,93,102,111,97,112,112,91,116,100,116,105,108,115,111,99,104,98,94,102,108,102,120,116,109,105,109,91,105,110,98,109,120,99,104,104,103,100,94,93,92,109,112,94,106,93,103,104,103,102,106,112,98,103,98,92,109,104,106,110,89,104,94,101,120,102,105,96,115,102,102,103,102,102,111,105,108,106,101,98,113,108,97,104,102,104,89,110,96,114,111,105,99,123,105,101,107,95,108,108,129,107,96,97,100,106,109,104,101,96,111,65,105,70,103,82,104,91,109,97,112,102,102,98,100,110,104,82,105,108,107,95,114,102,104,103,109,116,97,112,118,104,100,100,100,110,110,108,91,100,116,108,107,103,111,107,117,103,103,103,112,111,115,115,111,93,104,107,103,112,108,106,107,112,105,111,101,111,101,108,100,88,99,110,101,103,114,103,113,111,110,106,107,110,112,109,107,104,107,101,108,105,108,98,107,113,107,111,109,106,122,105,99,101,121,101,104,95,102,114,106,102,100,97,109,106,110,105,111,95,105,110,113,111,102,101,110,112,114,100,113,111,104,113,117,106,101,106,101,108,99,105,110,108,113,109,99,117,116,113,99,102,104,103,102,116,103,103,91,108,103,107,113,114,125,121,100,103,109,105,108,107,110,107,103,104,99,94,113,101,100,105,101,108,91,96,96,108,86,111,109,106,94,104,104,110,102,96,111,107,99,114,109,98,119,111,113,105,99,77,99,102,116,110,90,96,110,111,113,107,106,121,107,98,102,115,106,95,110,110,101,114,111,108,100,110,108,111,102,113,101,101,101,99,97,109,100,116,117,100,110,110,100,112,105,112,111,114,105,100,120,110,97,97,101,109,91,100,109,102,108,120,96,100,113,99,101,99,99,99,108,96,108,111,92,117,102,112,109,106,99,110,117,95,92,117,101,104,125,104,97,106,102,97,106,105,109,101,102,109,101,108,108,124,103,104,95,106,106,106,112,109,106,99,113,107,102,105,106,109,124,86,99,105,116,103,104,93,96,99,104,106,103,100,119,117,99,106,103,109,105,108,104,120,99,106,105,113,104,98,110,105,108,105,104,112,96,101,103,115,101,102,96,115,110,105,93,109,104,91,96,106,102,102,120,96,120,102,84,100,101,106,119,98,99,105,98,100,104,103,107,94,114,112,109,98,107,94,103,94,92,103,100,100,104,118,103,102,101,130,107,101,97,100,101,99,106,136,110,125,105,109,108,102,113,106,111,99,102,101,113,106,101,101,105,99,94,97,103,116,102,117,108,90,113,91,108,107,113,100,106,96,92,108,103,113,96,96,111,113,108,118,101,106,105,109,111,94,96,106,94,97,100,111,98,117,101,97,112,104,102,106,105,102,94,107,117,93,107,92,101,90,104,106,109,98,111,108,105,106,120,102,109,90,102,94,116,103,104,95,111,96,100,113,117,103,104,101,107,98,101,105,106,105,104,101,108,98,109,101,108,105,93,113,106,79,105,96,112,102,99,99,96,117,104,102,93,105,90,106,113,98,107,95,107,104,110,98,108,112,117,97,109,105,106,99,104,104,93,103,114,102,96,100,105,103,103,109,102,93,99,103,100,101,91,104,112,103,107,104,102,103,101,103,106,100,114,109,98,93,117,114,118,95,111,105,94,113,99,106,94,93,106,95,102,106,90,106,99,92,109,102,108,80,102,98,100,107,116,96,101,101,101,101,107,106,112,105,109,109,102,103,104,109,120,94,108,116,95,109,106,104,102,106,120,104,102,104,99,106,94,105,97,102,101,83,110,105,104,104,105,104,110,96,106,95,108,100,99,105,94,113,108,96,107,107,135,98,100,103,97,100,106,96,107,101,103,113,105,115,107,105,106,99,110,108,111,101,98,113,105,111,85,110,105,115,100,107,88,99,97,91,102,96,108,98,107,110,100,102,95,94,93,96,104,87,124,91,112,110,119,109,100,99,105,90,89,100,92,104,113,105,97,110,104,108,89,99,98,105,117,102,99,106,102,111,102,102,103,111,102,125,109,102,120,111,122,112,113,102,83,99,93,99,116,108,93,98,101,106,111,108,106,107,100,92,105,100,95,100,110,91,108,91,113,106,113,109,90,119,113,107,105,95,110,87,97,111,101,86,97,110,91,101,95,100,95,103,110,110,107,116,102,79,92,110,109,105,102,100,100,116,103,92,97,104,115,97,90,97,100,103,99,113,108,103,98,111,114,100,94,112,119,103,106,109,96,100,93,103,105,107,97,113,94,104,110,98,98,113,102,100,97,115,111,103,88,121,101,102,87,108,94,98,109,99,99,103,109,105,96,93,111,107,107,93,112,101,105,95,85,109,104,96,95,109,91,104,117,104,101,113,111,96,95,100,99,101,100,112,104,95,98,107,108,110,107,102,100,96,106,113,106,112,110,101,104,109,112,110,87,86,124,107,101,110,90,103,96,109,104,108,99,94,91,91,90,121,101,91,100,110,94,113,103,95,102, +544.08032,109,91,89,86,104,102,96,97,104,77,107,102,96,87,99,80,110,93,101,107,94,103,101,100,109,116,114,94,105,69,97,111,108,101,116,114,92,94,112,98,100,110,91,122,92,97,104,108,103,116,100,111,109,103,112,101,93,81,106,100,99,112,110,104,104,87,101,109,86,108,109,113,122,103,94,117,98,132,113,101,103,92,106,100,104,95,93,105,110,102,113,102,108,108,115,111,112,101,95,100,103,92,117,104,110,102,112,106,102,90,117,107,108,90,100,105,98,102,114,94,107,96,99,115,95,108,109,79,110,99,109,102,91,103,119,107,106,95,98,86,98,120,91,95,106,99,104,105,99,95,94,110,99,88,109,121,115,83,109,107,92,100,108,100,97,114,100,100,109,107,112,101,93,102,85,103,105,97,98,110,103,102,111,100,103,117,105,93,113,92,104,105,122,99,103,120,91,113,94,94,102,102,105,103,73,108,106,114,97,103,100,108,110,99,113,114,93,110,117,98,92,94,100,90,113,101,103,114,105,95,97,101,114,104,115,103,103,101,107,103,107,101,106,110,109,95,90,107,109,109,105,91,98,98,108,115,101,115,105,114,108,109,98,106,104,108,99,100,116,100,110,89,87,107,110,113,111,95,100,91,109,97,105,105,108,109,110,106,114,113,104,107,96,99,98,111,106,115,103,109,86,99,118,110,103,110,101,103,113,98,87,98,107,106,106,112,100,128,108,102,105,96,109,101,107,105,108,103,124,104,120,90,120,106,117,101,113,116,100,102,99,100,106,94,103,97,112,104,110,122,111,106,108,110,109,103,114,104,109,96,100,108,94,86,101,106,104,93,104,107,109,100,108,110,110,109,89,102,101,116,114,110,112,107,99,107,99,110,101,95,109,101,106,114,99,113,110,104,104,89,102,96,100,95,106,102,96,98,100,101,103,99,96,99,104,101,101,81,107,102,112,97,97,100,114,128,103,103,106,104,102,100,95,106,108,108,101,111,107,109,110,104,140,117,91,99,99,91,108,104,105,113,109,107,103,99,109,110,106,113,106,109,111,112,109,106,105,104,105,102,108,109,108,104,121,97,103,108,81,107,109,107,102,96,102,116,106,103,108,100,103,122,103,103,99,102,105,111,107,108,105,97,107,98,108,109,107,127,117,108,109,105,111,110,110,109,95,104,112,99,108,94,109,110,98,101,110,97,111,113,104,101,106,107,113,100,104,100,113,102,81,95,73,99,109,108,103,103,106,99,90,119,102,102,91,99,121,93,100,100,104,108,106,113,113,100,113,105,110,93,108,121,110,100,115,105,120,98,103,104,110,99,111,97,98,128,107,102,106,102,102,96,101,102,100,106,99,110,106,103,103,110,113,107,114,112,101,105,109,110,103,104,105,105,99,102,105,98,111,124,95,103,117,103,109,111,113,100,108,111,92,114,98,106,105,102,94,96,100,96,113,119,102,100,98,92,110,100,110,121,100,112,95,95,121,101,122,108,105,95,107,102,106,115,94,105,99,69,99,98,108,104,109,117,90,107,118,98,106,104,108,104,113,100,96,87,96,93,108,91,101,116,97,120,113,109,105,95,104,91,113,95,101,102,99,105,106,109,105,112,108,103,103,101,109,110,94,99,104,111,102,105,98,107,110,105,98,114,97,107,117,97,94,96,102,105,112,98,99,106,103,102,105,104,102,107,107,98,101,107,100,96,111,98,110,115,93,109,106,101,98,99,96,108,98,79,95,109,100,103,112,100,99,104,108,101,101,98,108,101,115,124,118,110,87,109,107,99,109,122,109,102,107,108,102,127,100,103,96,100,101,94,106,101,110,109,107,99,98,106,104,104,107,110,110,107,90,99,107,109,100,105,103,94,109,106,108,93,110,103,106,100,113,94,96,100,114,106,92,111,81,112,103,107,102,99,103,106,111,100,102,95,99,104,114,108,102,100,109,90,109,91,110,108,103,102,96,103,107,103,106,116,99,105,111,112,96,101,92,99,115,96,101,128,103,107,106,107,120,98,99,106,106,103,107,111,90,99,106,121,106,97,106,121,111,104,112,100,102,85,114,103,105,117,89,93,96,102,107,102,112,98,105,107,99,117,103,115,102,100,112,119,111,98,97,110,97,124,117,104,103,96,76,111,101,108,102,114,110,103,114,107,105,109,121,119,102,112,101,133,94,114,121,109,101,102,106,107,108,102,107,100,103,105,110,106,115,109,99,88,96,110,107,106,120,106,103,95,94,113,112,93,108,107,103,111,96,111,99,120,106,96,103,108,111,116,116,112,100,112,95,96,113,124,106,105,101,94,133,106,116,90,108,97,106,101,100,95,116,95,105,97,111,99,102,100,108,106,108,123,103,109,108,107,104,114,119,92,103,113,114,116,95,102,107,121,109,107,109,110,105,107,103,107,109,85,108,100,90,104,102,99,92,98,98,100,100,99,96,106,103,112,94,106,106,99,101,103,117,102,86,101,93,87,107,109,100,102,92,111,98,98,91,113,99,114,110,92,88,107,90,108,93,105,112,91,101,107,98,121,107,109,92,95,103,95,107,100,114,81,106,99,109,95,109,115,104,109,114,107,96,117,98,105,100,111,101,96,110,111,104,114,98,113,110,104,111,108,102,100,120,118,108,104,119,102,113,109,111,101,97,105,102,94,105,109,103,91,101,96,101,107,112,111,111,104,106,97,104,99,91,104,116,97,105,106,103,104,83,113,111,103,101,102,104,78,102,100,96,105,107,104,99,108,107,116,99,103,109,99,108,112,95,97,88,86,91,101,108,111,94,93,97,106,94,98,105,101,101,95,102,96,115,106,109,96,101,111,106,101,107,99,115,106,100,102,100,107,100,114,113,106,118,103,108,106,106,111,103,120,108,100,113,103,119,103,103,106,110,92,107,88,107,109,93,102,102,121,103,105,106,104,100,110,88,90,96,76,102,103,106,109,102,102,108,108,113,116,101,106,104,117,110,81,102,110,106,99,106,104,109,94,96,108,113,87,105,104,99,95,97,100,99,100,102,99,109,108,101,136,99,99,105,93,97,106,104,108,104,97,66,118,98,121,99,106,112,102,99,105,112,114,100,98,104,100,115,97,113,110,100,102,102,121,102,99,98,102,107,115,115,100,107,115,105,104,108,101,111,93,103,107,95,103,97,113,111,100,102,93,105,103,91,104,108,95,104,96,100,103,104,103,95,101,95,104,105,100,115,102,108,116,103,91,106,104,107,91,107,100,105,105,111,110,102,100,98,114,105,113,92,101,115,101,102,104,95,97,113,112,112,99,104,103,99,94,107,106,99,101,91,102,107,107,115,105,97,95,106,109,101,108,108,95,104,114,116,118,114,128,96,108,113,106,99,106,103,99,96,100,103,102,102,95,108,108,97,98,109,93,98,94,103,104,102,102,92,108,110,100,112,100,101,114,99,102,111,103,111,92,95,99,111,107,94,91,104,104,102,98,96,110,100,95,101,100,105,108,100,96,99,99,109,110,108,103,93,98,94,103,115,84,110,103,90,114,100,100,98,104,106,88,89,107,108,108,105,108,108,107,120,111,96,104,88,100,102,105,105,96,100,105,97,94,112,123,116,109,108,111,101,115,110,108,96,101,110,113,104,112,102,101,113,98,107,116,109,112,116,108,112,102,106,105,77,95,92,111,102,96,110,120,101,108,117,109,117,97,106,100,102,109,95,121,94,109,112,102,95,98,96,99,103,100,93,105,108,91,92,98,99,108,98,99,98,97,109,106,108,94,113,91,98,104,101,101,110,106,104,111,111,112,106,106,113,121,100,99,99,95,116,98,97,100,105,105,105,96,95,109,105,107,103,103,109,104,106,108,102,95,102,97,98,86,121,100,104,101,91,98,105,111,94,84,95,99,100,97,94,100,99,108,101,104,106,103,102,104,113,103,102,106,115,102,101,102,101,108,102,113,89,107,96,106,96,104,106,96,102,108,96,106,102,107,111,107,98,109,103,108,102,107,99,109,99,106,108,103,113,107,112,106,108,104,95,116,101,101,112,93,105,113,93,108,103,100,105,99,104,113,105,96,93,99,104,110,97,119,100,100,100,103,88,103,102,109,96,104,99,95,100,100,109,109,105,96,97,100,94,111,104,68,87,117,94,117,95,99,103,109,107,102,99,99,95,98,118,109,106,98,110,119,102,94,111,104,96,110,107,114,107,87,102,105,122,123,97,103,108,101,110,96,116,92,98,83,98,116,101,97,91,87,98,100,108,88,103,97,106,98,96,100,100,103,104,99,94,96,105,105,109,105,105,105,100,96,100,108,105,105,117,103,105,96,91,110,99,107,91,102,102,99,111,104,117,96,101,101,101,106,101,105,98,102,96,104,113,110,101,101,107,88,100,101,110,105,104,120,113,97,96,93,101,104,95,112,92,107,106,98,109,92,87,108,104,105,86,102,105,95,114,103,104,103,98,121,100,102,106,101,133,96,89,100,102,97,104,90,106,106,103,107,99,108,110,103,116,108,105,104,112,105,106,104,103,107,106,106,111,91,94,102,96,104,108,103,100,109,106,112,81,92,98,108,119,107,104,109,95,99,84,83,112,125,103,108,101,97,96,87,100,125,94,96,101,105,94,111,117,94,111,112,103,105,117,112,109,105,98,103,103,99,98,108,106,103,106,104,113,105,101,117,115,96,93,98,112,95,94,106,96,97,102,117,103,95,100,103,105,94,94,105,99,108,90,97,115,102,101,104,107,99,109,101,100,118,99,85,93,109,97,106,105,101,96,113,110,109,106,105,87,110,110,94,104,102,101,107,113,91,94,105,76,100,107,105,105,111,95,94,97,100,103,125,92,106,103,104,103,99,105,109,111,100,109,97,100,98,94,91,99,97,122,93,108,111,91,107,91,131, +544.22113,87,102,103,102,95,95,120,101,103,126,107,104,114,98,94,110,105,112,95,101,95,95,100,126,112,116,97,96,83,109,90,104,110,95,103,97,103,108,110,84,110,100,109,101,102,109,109,102,111,100,99,116,103,112,99,103,98,97,109,89,110,113,100,92,100,109,103,96,100,107,100,109,114,106,86,103,104,103,115,101,102,101,102,104,100,93,92,105,107,101,95,99,113,98,110,100,105,94,106,90,101,94,106,107,71,104,96,107,103,94,100,110,107,84,104,109,106,111,117,111,103,114,93,104,116,105,119,111,113,109,101,104,101,110,108,100,101,106,94,100,97,108,99,102,111,104,111,97,119,116,103,102,122,87,89,97,109,99,96,91,108,100,105,107,96,102,102,96,105,102,91,108,100,108,114,82,107,113,111,107,108,103,114,98,111,107,94,95,111,97,121,100,107,113,100,101,110,99,99,104,100,102,94,109,97,111,100,101,121,105,99,99,99,110,101,106,106,99,98,92,88,100,107,96,91,96,102,109,110,98,94,98,98,110,111,105,115,106,104,102,106,100,121,102,104,119,103,114,109,104,106,105,91,105,107,116,108,99,91,94,99,98,106,98,97,113,102,113,96,105,99,91,100,99,99,113,105,106,105,93,103,98,101,95,110,108,102,104,124,98,107,105,114,103,109,106,111,114,107,108,107,97,105,111,99,109,105,110,107,112,97,106,105,111,95,104,107,113,114,106,108,107,105,98,117,132,107,98,102,118,101,99,106,124,113,106,98,100,100,103,109,104,102,102,109,117,102,98,102,106,95,105,108,104,109,114,105,119,108,104,117,104,100,92,103,100,108,113,105,109,103,101,109,93,105,100,132,106,107,112,106,119,104,112,100,95,98,98,84,105,115,107,95,103,113,101,91,109,105,104,101,101,109,106,91,103,105,104,104,114,106,92,103,113,94,102,109,104,119,109,101,100,95,96,103,101,106,96,98,105,104,101,113,112,100,96,106,108,112,108,120,95,100,112,103,110,103,91,108,110,98,99,112,110,99,99,100,96,101,87,105,94,115,104,107,103,103,108,104,105,99,68,102,113,117,103,96,108,117,105,97,107,120,120,103,110,108,108,102,107,107,112,100,100,96,101,102,112,106,114,100,113,107,97,98,107,102,108,104,108,98,96,98,110,112,110,108,97,99,107,100,110,113,104,108,99,118,95,112,114,93,95,110,109,105,101,106,100,95,103,101,103,104,94,108,85,101,98,113,105,101,90,101,109,113,91,130,119,109,98,106,106,99,119,112,103,106,112,105,116,103,115,107,112,110,114,102,115,102,109,103,111,99,69,99,106,109,108,104,92,117,105,105,108,103,109,101,107,109,97,101,115,100,104,108,105,100,117,101,102,92,100,101,109,107,102,113,104,102,103,106,105,105,102,107,106,96,104,110,117,91,101,108,103,103,111,100,100,100,106,113,101,103,113,114,91,107,107,104,102,99,104,100,108,112,99,102,114,103,94,122,106,85,103,96,103,104,96,105,106,117,105,107,113,90,104,107,107,111,109,110,107,118,97,109,112,99,109,99,100,120,107,107,99,100,98,102,101,78,101,107,94,104,95,96,106,105,93,104,114,99,108,95,99,120,109,103,104,101,102,103,120,110,101,104,85,103,111,113,91,102,116,111,105,110,93,114,99,106,95,113,96,104,112,96,95,116,104,97,103,107,95,102,105,100,105,102,102,108,117,101,107,105,108,92,109,100,103,97,80,87,103,110,103,107,101,95,103,110,88,103,101,113,100,101,100,113,104,105,112,117,112,108,120,106,119,104,107,91,107,107,102,96,115,102,98,110,107,110,89,105,105,99,105,103,112,98,107,114,107,103,122,105,105,105,104,101,101,84,118,98,96,102,94,104,103,121,118,99,90,114,109,96,108,112,97,118,98,105,101,100,111,104,95,96,111,110,95,114,115,102,96,116,108,109,97,95,107,114,107,98,113,107,108,106,98,105,95,99,106,118,90,101,107,120,108,100,119,100,97,112,107,99,102,109,99,101,113,102,105,98,107,103,99,100,102,105,109,92,102,98,108,100,110,110,98,101,116,100,113,94,100,107,104,110,99,103,116,99,108,88,108,103,110,96,103,105,98,107,108,101,99,106,110,108,104,102,103,94,95,102,113,109,100,106,102,109,102,95,107,103,113,117,92,102,108,113,100,114,96,100,100,114,116,99,101,98,85,97,108,94,111,106,103,109,100,106,97,109,102,104,103,104,111,111,96,103,111,104,106,111,110,103,90,105,103,103,108,101,100,99,111,105,101,113,107,110,95,108,83,108,124,117,97,117,110,108,119,102,90,105,77,102,100,112,77,100,89,92,103,110,104,104,103,104,116,111,103,107,110,112,128,108,101,111,111,94,122,95,86,94,102,95,94,109,92,101,118,109,102,98,108,93,101,98,115,100,107,98,99,108,107,95,107,108,115,119,102,105,114,101,104,105,89,104,97,102,106,117,113,106,105,96,110,104,103,104,95,107,108,102,117,109,112,103,94,102,110,100,107,114,103,99,114,106,113,112,110,107,104,103,115,106,99,107,106,103,110,112,76,106,93,101,112,104,105,96,111,98,90,102,115,119,124,100,101,106,112,104,106,99,110,103,119,117,112,91,106,110,117,104,111,103,101,94,108,113,109,128,96,113,124,101,114,106,115,117,101,109,100,108,106,109,113,113,109,112,70,109,106,117,121,101,105,125,113,103,98,118,116,109,115,106,106,118,105,108,108,99,108,105,110,101,97,106,106,99,107,116,103,95,102,101,116,106,109,101,120,111,122,107,101,118,98,102,104,108,105,113,110,99,108,111,112,102,103,89,110,98,112,109,99,112,106,112,104,112,102,110,103,112,99,106,115,113,89,103,99,106,101,92,104,112,95,99,108,106,105,108,124,99,108,94,98,95,122,83,119,109,103,109,98,98,98,103,118,113,108,97,95,109,103,98,104,110,102,102,118,109,116,107,103,100,111,107,116,113,107,106,112,98,106,105,103,118,125,107,114,111,117,104,108,108,104,113,108,109,111,109,106,101,105,107,113,104,107,110,117,113,99,113,122,115,108,107,100,104,116,104,98,102,110,107,111,112,106,111,119,103,100,116,93,115,111,114,107,106,110,114,104,102,109,106,100,113,106,110,96,102,99,104,101,97,125,107,107,112,114,110,107,98,103,98,118,94,100,106,103,104,119,110,97,116,103,95,111,115,100,111,110,102,100,111,117,110,111,101,117,98,108,102,103,108,99,104,108,104,124,113,112,117,105,110,116,107,111,116,112,114,79,115,113,99,97,104,110,96,119,106,95,102,113,98,105,95,104,109,97,103,97,117,106,102,100,109,108,108,104,112,103,112,108,99,121,99,110,103,94,116,105,121,111,108,103,104,95,112,105,109,107,109,103,99,90,99,113,94,107,104,108,110,106,93,112,99,102,113,99,111,108,96,98,120,106,109,113,104,120,108,100,109,108,77,106,116,112,105,112,115,107,116,117,113,98,99,105,92,119,104,116,109,106,120,106,114,110,107,96,104,105,109,102,97,106,121,102,96,117,119,106,100,104,105,111,92,113,104,114,109,103,95,92,110,110,113,76,109,110,117,108,105,117,112,103,105,102,118,108,113,119,115,103,107,106,110,103,92,118,117,118,106,107,110,108,96,98,106,109,111,112,96,110,113,104,106,105,117,108,104,100,99,104,110,95,107,106,111,106,92,104,104,111,112,100,116,114,109,112,105,110,110,129,110,101,111,102,106,106,117,98,115,117,105,106,104,106,105,107,113,103,104,108,108,96,92,108,108,121,87,119,90,113,103,102,108,101,107,118,116,98,97,103,107,100,112,116,108,96,96,108,108,103,105,105,102,94,98,101,100,105,99,108,98,111,102,111,105,89,104,101,114,103,115,101,114,107,99,111,112,105,106,114,105,106,100,108,110,114,99,100,101,117,108,103,104,103,106,108,103,105,102,99,100,106,119,110,96,102,105,98,112,105,109,103,87,113,101,117,118,108,116,99,106,107,114,110,100,98,117,106,103,106,112,120,94,114,102,114,113,97,124,110,90,99,112,108,107,109,93,99,88,100,98,103,105,109,112,108,116,105,107,97,105,114,83,120,105,100,114,107,106,105,98,102,109,113,91,112,103,78,105,102,108,98,114,106,95,122,110,113,124,82,131,104,112,111,96,102,94,97,117,103,105,113,112,106,111,112,104,99,101,116,103,104,95,104,111,113,106,96,90,102,113,98,110,100,101,97,108,116,98,106,102,109,104,125,112,112,108,105,113,104,128,107,105,117,105,119,128,113,106,105,104,108,101,115,113,104,100,107,117,109,113,117,107,101,106,111,108,103,92,110,105,107,115,110,108,108,125,101,102,96,103,98,97,94,106,112,105,100,112,103,113,97,100,110,107,100,109,103,98,103,90,116,123,114,81,112,99,95,97,113,109,100,104,104,109,105,99,102,109,99,94,113,113,105,111,127,120,114,104,92,98,105,114,110,113,107,98,101,96,117,98,94,88,106,110,103,104,114,96,111,104,102,94,102,79,88,102,106,104,112,104,109,113,101,115,100,107,98,98,108,107,115,97,119,93,111,108,70,123,105,94,102,96,94,109,105,113,105,98,112,117,100,108,110,112,120,103,100,101,99,103,113,109,99,111,103,107,98,104,110,106,103,97,88,117,97,102,106,106,115,112,98,118,99,109,104,107,107,119,106,101,108,88,85,106,98,92,113,103,101,105,103,102,116,96,113,115,106,101,103,100,108,105,98,112,106,99,107,105,95,98,101,101,102,109,121,101,93,101,109,123,96,115,102,94,117,119,107,105,92,113,94,107,101,99,101,106,92,112,102,104,101,110,102,107,104,91,106, +544.36194,109,109,103,118,87,110,102,107,96,102,105,91,98,98,124,104,105,99,113,129,117,110,88,109,106,105,102,110,107,100,79,99,106,101,99,108,99,107,106,103,102,103,104,105,108,107,104,97,103,96,98,87,96,100,101,99,120,96,103,99,98,96,115,95,67,87,96,111,93,101,106,112,101,107,99,112,94,96,109,117,100,96,110,104,102,99,97,116,103,95,106,116,91,97,99,109,116,107,107,108,105,106,105,95,98,106,106,110,117,96,121,106,109,97,102,110,98,103,107,105,104,68,109,112,104,76,105,109,104,104,103,108,94,89,113,109,100,105,110,112,102,106,105,102,101,107,105,107,106,106,105,110,106,97,95,113,116,100,108,114,95,103,100,103,93,101,110,97,113,99,114,92,112,100,85,96,99,101,100,112,111,113,73,92,98,108,98,114,109,99,120,107,108,108,105,96,93,103,107,106,94,106,95,108,102,103,114,99,112,105,117,106,104,99,99,106,95,103,99,108,100,99,103,101,104,100,94,108,89,100,94,94,92,116,111,107,103,106,112,112,108,98,103,102,97,106,114,105,102,107,96,103,101,101,71,100,113,98,72,81,103,106,98,94,103,112,104,100,103,100,110,100,108,88,98,114,104,105,101,97,116,110,96,101,105,100,106,106,102,112,99,102,110,101,109,101,113,100,107,109,98,106,112,109,100,120,108,103,123,106,98,96,98,114,99,124,119,92,101,91,105,96,105,106,104,113,99,96,123,97,96,102,105,117,110,94,96,118,113,100,110,98,111,102,110,107,106,103,109,108,110,93,107,99,93,104,108,110,104,106,114,110,99,112,119,105,100,106,103,105,99,103,108,104,105,97,123,97,106,111,106,113,100,114,100,103,113,94,109,96,120,113,96,111,120,95,104,110,106,100,86,99,100,102,101,99,101,101,98,106,82,99,109,107,104,108,104,91,113,93,111,104,93,105,119,103,102,109,99,105,113,109,101,99,108,105,102,115,101,101,100,105,122,120,106,93,88,103,88,111,102,102,103,106,95,99,108,95,103,104,98,91,114,98,99,100,106,102,96,102,99,106,109,104,93,98,108,112,110,108,94,101,123,100,100,102,99,103,118,115,105,102,87,104,118,96,106,98,100,111,104,104,110,109,98,125,103,112,103,101,107,111,112,87,101,105,110,101,96,87,103,107,106,97,103,110,110,110,103,104,97,107,105,104,103,99,85,95,95,104,106,101,106,83,110,105,97,105,89,96,104,105,128,99,106,103,113,109,90,88,97,118,106,104,99,88,118,88,94,117,83,101,99,102,110,112,108,113,100,107,96,94,107,107,112,98,103,97,105,105,79,109,107,106,105,84,110,102,114,94,107,109,107,90,87,107,96,100,105,105,110,108,102,85,109,106,110,118,109,97,106,103,106,102,103,95,110,116,105,99,97,90,98,111,110,110,105,114,99,120,105,101,102,107,99,101,112,105,109,97,104,105,106,105,112,110,105,106,91,94,116,102,109,114,104,110,103,97,116,107,109,104,109,102,101,107,112,105,109,113,103,104,102,98,104,98,109,113,100,102,105,103,97,104,98,99,108,112,100,101,116,103,102,99,89,100,87,92,95,100,102,95,102,91,95,90,99,97,104,98,106,113,109,100,100,92,108,103,104,113,113,104,92,105,95,102,108,98,85,113,120,96,102,101,109,92,113,83,100,98,109,98,112,104,100,128,102,102,126,102,94,100,105,109,94,101,109,107,94,110,109,98,107,109,108,101,101,100,100,104,93,101,106,112,102,102,100,104,107,109,118,105,109,99,99,105,87,107,93,104,113,113,110,92,102,111,103,103,103,105,101,90,109,96,117,103,108,111,106,100,108,108,108,101,106,72,97,107,108,124,74,98,104,101,88,104,110,114,119,100,104,113,104,98,107,85,97,106,102,104,97,103,100,114,109,105,113,103,107,88,125,102,97,102,99,104,97,107,108,99,106,125,103,105,103,91,98,103,100,112,104,118,105,116,108,112,99,126,103,116,85,117,115,97,98,103,100,105,92,106,104,94,107,112,103,104,98,108,101,100,101,111,109,108,110,106,99,99,99,97,106,107,102,99,93,96,90,125,109,118,99,116,103,112,113,111,96,102,111,117,110,113,118,108,101,114,105,103,118,106,107,110,110,111,94,95,91,105,109,106,111,117,100,100,118,108,97,107,98,121,101,107,102,109,107,103,97,102,100,103,112,100,99,98,103,95,99,83,104,103,102,109,101,109,116,93,121,101,102,99,100,102,98,102,109,109,103,101,102,111,95,94,109,102,104,100,99,111,78,100,112,115,106,118,107,91,98,97,102,110,107,105,105,92,99,103,95,112,102,107,101,116,112,109,115,111,99,105,119,123,105,109,110,128,100,115,104,95,103,108,100,103,115,98,102,107,91,107,102,104,109,111,97,102,110,104,117,105,100,100,107,104,96,111,111,107,104,99,118,109,102,103,114,124,101,118,117,113,116,106,102,104,113,119,107,109,115,103,105,103,111,106,109,104,110,106,105,110,99,107,106,102,103,101,108,102,100,112,101,106,99,116,109,109,95,93,107,98,107,101,117,102,91,101,94,101,89,111,111,97,104,115,106,106,103,108,112,112,112,110,105,90,109,106,108,112,107,119,100,110,96,100,103,109,112,101,115,99,109,101,103,95,95,106,109,103,115,102,98,112,104,106,94,109,100,109,104,112,109,97,112,113,94,94,117,110,105,114,107,108,116,106,109,110,101,107,107,104,121,107,104,103,116,110,112,103,104,104,113,124,117,95,100,108,113,111,112,104,105,109,99,99,121,109,114,102,112,112,103,107,96,109,114,99,117,110,97,121,107,101,120,102,108,109,120,107,119,108,106,115,104,127,109,114,108,98,113,107,112,127,100,104,109,99,109,99,133,102,107,110,107,115,107,102,109,98,106,98,104,113,114,94,105,108,108,105,113,106,107,121,104,109,109,110,103,117,102,98,107,107,112,111,104,121,109,94,106,103,110,114,109,105,110,113,107,98,108,106,102,73,110,109,107,100,100,97,103,102,113,107,108,106,117,117,103,102,110,98,109,108,99,109,99,95,107,95,114,106,103,106,103,111,94,110,102,100,98,101,105,106,101,103,110,112,88,104,103,94,90,99,115,102,112,101,112,110,92,111,112,107,122,120,99,108,110,109,115,110,98,108,108,110,104,111,106,96,117,103,91,111,102,105,104,95,107,129,112,112,112,80,100,99,111,116,113,99,97,117,98,100,108,99,114,99,104,100,102,103,114,113,101,97,112,101,100,110,108,108,105,120,108,110,101,87,103,111,99,102,104,104,99,121,107,116,104,112,103,115,119,114,105,108,113,110,101,112,101,107,97,103,102,104,101,102,89,112,102,100,116,100,106,105,105,105,112,116,108,104,108,112,101,96,103,101,104,100,102,101,106,107,110,112,101,110,113,107,107,111,109,100,103,100,112,94,98,102,109,124,101,98,112,120,105,105,99,109,101,98,104,109,114,112,112,129,106,103,110,114,99,113,109,104,122,104,106,111,105,108,109,101,101,104,104,104,102,100,97,102,114,100,103,109,108,101,105,88,110,106,110,107,98,103,106,102,104,115,103,105,117,106,101,99,114,108,90,109,100,99,102,110,101,103,108,100,96,113,93,112,114,105,106,123,97,108,108,99,108,108,104,100,118,114,103,107,117,116,102,117,112,103,107,106,105,102,106,106,107,109,102,88,103,104,105,98,108,109,112,105,116,102,104,109,110,112,111,110,102,104,102,102,107,114,110,95,105,112,114,113,103,103,106,97,117,104,119,95,100,111,99,123,104,112,104,102,99,102,102,101,113,110,104,122,100,100,122,110,114,85,103,112,101,99,95,107,100,93,96,94,101,112,114,107,102,112,109,110,108,99,102,104,109,103,106,97,95,103,96,102,98,104,117,112,104,113,108,99,99,105,106,103,105,108,114,103,109,99,99,94,106,120,102,109,90,126,111,88,94,105,118,118,104,97,110,97,97,123,112,100,104,107,100,88,88,102,101,103,109,106,112,104,105,99,108,93,104,98,100,111,106,102,96,110,94,113,108,119,108,102,97,111,106,97,102,106,104,109,106,104,102,80,95,108,112,103,90,104,112,113,109,106,106,96,99,109,105,101,102,97,103,109,113,106,109,94,115,104,101,107,93,97,102,100,107,102,101,114,99,100,99,109,110,109,106,105,99,105,108,75,104,109,116,106,117,100,91,105,104,104,104,110,112,106,118,106,119,102,97,105,100,112,111,111,111,112,93,113,104,113,112,112,100,103,117,104,106,105,106,108,112,115,101,102,113,111,83,108,102,107,106,105,110,108,110,114,106,108,115,118,113,101,92,95,109,103,101,103,113,96,105,100,73,76,102,113,89,112,113,111,89,104,109,113,104,108,112,101,95,106,90,109,107,100,102,102,96,95,101,93,107,111,98,113,111,109,105,101,107,106,103,106,108,107,88,106,109,100,120,98,111,112,93,94,105,114,99,76,115,110,90,87,100,102,117,100,101,106,99,111,98,101,98,112,108,89,116,106,99,100,75,105,100,68,99,105,112,100,106,100,100,95,110,105,103,116,130,108,94,113,103,106,109,103,101,110,104,100,107,96,105,104,105,91,114,117,112,101,99,110,99,107,104,102,107,89,108,100,107,95,93,112,119,113,101,111,104,104,106,101,111,100,82,107,81,113,96,96,107,103,102,80,100,96,102,104,104,105,102,117,113,109,101,106,117,102,113,102,104,109,99,110,106,113,120,105,112,103,93,93,110,100,106,102,85,112,120,117,89,108,110,104,107,102,103,108,103,99,94,104,113,104,110,95,99,104,123,103,107,102,89,91,98,92,92,91,108,92,114,104,107,91, +544.50275,102,99,112,90,98,100,89,95,104,94,101,98,94,106,107,110,109,102,104,112,111,84,94,101,114,99,93,101,115,113,94,106,94,108,120,109,113,90,102,94,98,102,109,100,98,111,101,99,100,103,103,119,108,95,108,96,98,96,103,92,106,105,98,109,98,111,91,110,109,100,107,113,109,125,115,111,99,100,112,103,94,97,103,103,106,95,82,104,97,99,95,108,104,117,101,106,76,110,101,106,112,98,99,101,111,95,113,104,77,105,102,95,109,106,101,104,102,109,100,97,108,110,107,117,110,107,108,113,101,96,107,110,104,107,106,107,104,101,94,107,99,103,81,93,107,102,100,112,104,99,107,98,103,80,91,123,97,95,105,105,106,102,116,111,108,106,114,102,107,102,96,95,99,102,103,102,101,76,95,119,94,105,111,106,109,104,110,99,111,99,104,99,116,97,102,100,114,104,100,95,117,110,91,97,109,113,110,83,109,127,103,104,100,113,104,102,107,112,91,93,106,110,100,114,96,111,106,108,90,122,98,114,102,106,104,104,112,110,99,95,103,111,84,102,102,120,104,103,113,94,110,104,124,96,104,103,94,100,105,105,96,118,110,114,92,108,114,113,90,97,116,112,111,103,108,105,101,107,87,108,108,102,109,100,99,109,101,107,117,110,96,105,106,100,107,94,117,99,108,114,119,100,108,113,95,105,104,99,108,111,111,106,103,105,105,109,108,108,106,105,114,104,108,102,104,111,96,110,91,109,113,100,103,102,112,98,110,119,102,103,104,109,103,110,105,108,106,107,107,102,95,111,99,102,108,122,100,109,105,111,108,102,94,97,108,106,75,112,108,107,104,103,117,112,99,114,102,105,96,107,115,116,99,95,121,113,109,98,110,101,120,104,108,113,96,107,108,104,105,115,108,107,113,110,96,100,103,110,101,106,102,103,104,112,110,114,96,110,112,108,104,95,100,110,104,99,102,106,111,111,94,111,107,110,113,110,94,106,106,107,113,112,110,105,103,117,95,96,102,103,86,108,102,95,100,100,113,107,112,104,104,99,107,113,77,108,116,99,95,100,104,109,107,116,103,99,95,122,107,108,100,105,106,105,112,102,106,94,106,103,104,89,106,117,103,105,103,109,103,109,99,92,113,99,98,120,89,105,107,106,110,110,115,101,115,103,109,95,100,108,106,103,112,110,99,92,113,104,118,106,105,105,105,104,108,112,115,106,105,107,108,109,71,107,115,99,112,95,104,120,108,113,108,108,105,101,99,92,104,98,107,111,100,107,94,104,114,110,113,106,104,116,104,113,106,107,115,92,110,103,104,100,96,99,108,110,120,105,115,106,108,108,104,99,124,104,112,109,92,113,107,104,106,105,105,92,103,108,107,102,110,111,111,99,107,102,105,111,111,97,106,107,100,110,112,99,103,105,105,103,103,104,105,117,112,112,83,109,101,106,108,107,115,107,97,97,95,105,114,123,99,98,101,94,113,111,107,110,105,122,106,102,104,107,91,112,110,98,104,111,108,112,112,104,95,110,100,101,113,108,129,100,110,108,101,99,112,112,104,111,99,108,108,108,119,87,106,109,102,88,99,105,103,108,106,114,112,120,102,102,91,102,100,104,106,100,108,98,96,110,112,106,114,113,110,101,100,105,113,103,111,107,103,100,131,109,98,104,111,100,109,114,106,114,106,104,110,102,100,91,100,104,113,91,115,108,106,102,115,131,129,108,91,118,106,105,102,108,116,89,116,107,106,117,103,112,96,103,121,111,104,99,119,117,109,115,104,125,108,115,108,102,102,110,121,104,109,105,109,107,108,103,95,103,102,85,114,108,117,99,101,109,101,96,112,106,110,110,118,112,123,102,105,107,113,105,100,112,105,103,110,105,106,111,109,111,100,118,105,102,114,109,97,115,102,109,101,106,96,107,71,99,105,116,98,113,117,109,105,100,107,101,107,101,104,107,100,81,119,105,102,108,97,102,103,115,104,105,108,98,106,106,117,107,103,102,102,108,106,104,102,103,104,107,109,108,112,105,110,103,103,100,112,103,102,110,100,104,98,117,110,106,102,106,111,106,91,102,106,108,94,98,96,98,114,111,104,103,108,105,109,121,109,102,94,101,100,102,105,114,112,115,111,82,106,95,110,101,118,104,107,120,109,110,106,105,109,107,105,92,104,112,113,95,106,105,100,102,86,90,106,110,118,94,109,112,111,113,104,102,102,124,113,103,99,106,109,96,113,117,103,88,106,104,84,94,104,109,99,113,100,106,120,110,92,115,107,106,108,98,104,108,77,99,100,91,101,101,99,103,107,102,99,116,115,103,103,116,102,106,99,108,103,113,102,99,98,108,105,113,109,102,105,133,114,109,106,108,113,126,110,115,113,107,131,93,118,123,108,110,106,111,112,98,101,106,100,113,109,106,114,106,107,112,106,109,98,100,98,108,102,112,110,108,103,114,113,106,113,114,108,117,104,102,106,111,105,107,98,115,115,97,116,111,102,120,103,115,104,99,88,81,112,96,105,101,110,102,87,105,108,115,100,108,103,105,106,114,109,117,108,94,107,88,109,94,93,79,102,100,122,99,96,117,122,112,105,104,105,90,103,110,117,95,98,103,102,92,113,106,96,92,108,94,113,100,119,106,91,102,106,112,100,116,101,111,97,93,90,117,109,105,95,106,95,110,109,103,107,105,104,106,101,108,90,113,115,115,78,100,110,117,100,100,102,106,107,110,76,103,105,109,110,114,116,105,106,117,111,90,88,111,93,119,103,99,107,109,114,116,111,110,109,95,111,101,116,104,105,120,121,103,112,109,103,110,107,111,105,107,112,110,110,110,113,116,114,106,110,106,93,99,115,80,104,107,106,98,109,108,114,108,103,109,108,102,103,105,103,96,105,109,114,104,116,111,107,112,110,97,104,118,105,112,111,100,106,98,94,108,82,94,122,103,108,111,109,129,103,107,98,112,102,106,96,106,94,100,90,106,117,97,109,115,109,99,105,104,98,84,105,109,92,101,108,111,102,99,101,125,110,102,115,79,104,102,106,113,113,115,109,97,101,98,98,109,104,105,109,107,112,116,113,106,120,98,98,102,99,114,105,115,81,105,110,111,104,95,100,99,87,102,106,101,108,105,99,106,104,99,102,102,103,106,106,106,98,102,102,134,106,107,111,110,90,112,110,103,107,101,98,109,106,96,106,102,119,93,105,105,106,104,96,89,112,101,97,109,98,101,113,117,108,137,123,97,104,116,105,107,106,104,103,105,109,87,99,107,102,99,100,96,106,96,108,109,127,115,99,101,129,102,115,108,106,100,102,105,103,115,114,113,109,100,107,109,117,99,104,112,105,91,113,128,98,111,102,91,96,96,106,92,84,107,104,106,94,102,122,105,101,108,98,104,110,106,112,66,112,112,123,100,112,100,100,110,110,104,83,110,102,110,108,99,104,95,67,103,98,103,101,102,103,94,113,120,119,107,113,102,112,106,107,109,98,122,121,104,101,106,100,112,114,118,95,104,113,106,109,114,97,102,103,99,100,103,104,121,113,104,109,110,97,102,98,113,109,120,117,102,106,95,105,102,101,113,103,114,108,107,116,101,103,102,102,96,112,100,113,111,101,105,114,121,73,113,100,102,104,109,105,116,116,107,96,96,105,114,95,104,122,100,103,114,117,107,121,108,109,99,106,95,108,110,121,105,110,111,114,91,107,113,96,108,113,102,104,100,86,106,98,108,106,91,92,91,108,79,112,99,103,99,113,104,97,102,107,98,110,90,106,109,88,108,102,110,96,116,97,100,107,98,98,109,108,106,99,98,96,113,98,106,97,95,107,107,116,101,111,103,119,123,101,103,122,104,100,105,98,103,102,116,108,105,114,90,110,112,102,108,100,107,118,101,113,98,108,99,102,105,96,107,117,108,103,108,100,101,81,107,103,114,100,123,102,113,99,104,100,103,107,109,99,113,114,104,103,104,93,108,107,116,91,104,106,98,108,106,108,106,104,105,100,100,111,113,111,109,111,107,106,111,94,97,110,110,105,94,110,91,111,101,96,95,89,100,67,99,112,107,105,99,106,115,100,103,101,101,111,108,108,110,106,108,108,105,111,106,103,101,108,104,81,92,111,104,134,103,103,105,99,105,99,98,113,96,111,114,115,99,113,102,102,114,103,104,104,112,107,114,112,103,107,109,96,110,124,106,95,104,112,105,117,109,108,98,101,107,79,116,101,96,120,106,99,103,90,110,95,109,94,88,117,114,106,105,103,91,110,100,106,106,101,113,98,105,100,110,103,103,67,102,113,94,120,101,111,98,107,117,121,104,114,113,108,86,113,94,101,104,97,101,112,110,113,116,107,116,110,104,93,122,117,97,113,107,107,95,97,108,106,105,113,101,111,106,101,90,112,105,107,124,98,107,90,103,97,91,105,108,116,103,108,96,118,103,99,98,89,104,97,100,113,114,114,110,100,92,97,102,104,104,94,110,121,97,101,109,95,103,103,97,98,99,103,115,113,90,113,111,87,106,102,98,110,106,102,96,110,97,101,113,110,106,105,107,95,104,91,113,95,94,98,105,114,100,109,99,93,101,110,95,112,109,107,95,111,100,118,99,114,109,106,106,106,90,109,118,105,100,106,100,97,106,90,92,98,119,103,91,96,100,101,104,115,107,89,105,112,99,99,125,106,116,108,96,106,100,116,102,109,94,112,102,103,122,124,98,112,104,101,94,97,107,113,99,121,110,106,89,96,108,97,111,98,89,105,105,105,91,97,116,95,99,96,105,100,117,104,112,101,100,97,99,97,113,100,106,103,115,113,128,87,102,93,106,105,93,95,90,104,116,113,110,93,104,92,104,110,98,104,107,110,96,111,90,97,99,115,92, +544.64355,94,96,96,95,101,81,94,121,101,105,97,100,101,104,104,108,110,120,103,103,106,106,98,98,91,101,110,109,109,113,105,108,106,102,99,123,109,103,101,119,101,95,102,102,117,116,103,99,101,100,100,100,109,100,103,112,102,101,107,102,108,101,104,102,114,109,100,104,106,102,95,117,101,124,91,104,102,114,107,96,107,114,104,98,96,101,91,91,103,101,92,106,112,102,101,110,107,92,118,104,107,109,99,85,98,99,100,97,99,98,106,97,105,101,114,92,87,109,112,96,92,121,103,136,98,111,108,101,108,109,92,108,95,97,102,85,95,99,81,101,89,98,95,98,98,95,99,99,95,101,101,92,99,96,100,101,98,95,97,104,109,99,104,101,113,99,99,100,98,110,99,105,98,108,108,108,112,108,107,106,99,117,100,120,97,101,88,100,102,80,104,105,109,99,100,99,106,104,102,108,104,101,100,117,96,124,106,105,103,110,109,110,96,114,112,123,112,114,105,113,113,111,111,104,101,108,110,96,110,100,99,109,102,108,108,102,109,91,118,97,103,98,109,96,112,100,104,100,114,113,105,104,100,121,106,106,99,102,103,114,94,94,107,110,114,104,116,109,104,99,108,112,116,104,111,96,109,112,104,97,108,108,101,110,106,104,86,99,108,104,96,109,100,105,92,106,109,101,98,119,97,94,106,111,105,112,113,118,109,98,103,105,110,107,108,111,112,106,110,109,106,102,118,117,96,97,108,99,106,100,100,96,100,123,103,98,98,103,110,113,92,79,105,102,113,112,100,110,107,113,103,89,101,100,98,111,125,120,111,97,111,96,94,103,120,111,109,100,92,111,104,115,103,97,107,105,112,108,104,102,116,94,105,102,92,103,106,109,116,94,128,103,94,112,117,100,101,116,109,100,100,113,103,90,102,104,107,106,120,101,105,103,114,107,104,104,98,107,111,110,111,104,103,98,106,97,98,103,96,118,98,108,96,113,99,100,95,104,107,101,100,98,87,99,109,101,91,109,113,109,102,107,96,106,109,117,105,106,106,103,102,105,104,108,112,97,101,113,109,100,107,105,109,105,111,101,91,102,109,98,109,110,104,99,108,105,99,90,104,100,117,100,99,100,105,110,110,90,102,108,104,102,94,93,99,98,103,105,110,100,110,102,101,109,115,98,104,113,86,87,108,97,111,103,105,105,114,112,108,97,98,109,110,101,109,100,95,102,98,106,112,114,113,110,106,121,105,108,119,105,91,95,111,103,97,111,105,96,101,102,117,110,109,105,105,124,117,107,99,85,96,98,118,97,97,100,103,97,108,104,91,74,109,91,97,105,114,114,98,102,109,100,107,108,104,101,106,99,112,109,107,107,102,91,103,96,108,102,110,96,107,100,97,105,109,97,105,108,98,97,95,103,108,106,113,99,86,92,99,102,105,118,113,100,109,120,98,104,94,100,103,129,109,100,92,92,105,94,109,104,110,112,98,99,100,101,98,104,97,116,106,105,106,115,95,97,93,95,99,102,106,101,112,98,103,102,101,100,119,101,109,103,109,109,103,95,98,109,100,100,109,96,101,110,108,98,110,102,106,88,99,108,100,100,109,107,93,104,101,93,117,83,101,101,101,104,99,89,103,95,103,124,104,100,103,91,104,100,107,110,106,107,100,102,104,101,100,114,108,104,98,111,115,103,117,100,107,94,104,109,84,106,106,106,105,100,108,105,109,111,95,110,97,105,105,107,99,99,99,105,103,95,96,109,109,102,102,103,103,108,99,104,103,103,92,104,95,100,93,108,99,116,120,114,96,105,103,104,108,109,109,106,99,105,115,97,95,105,111,99,108,98,100,95,100,110,105,106,115,104,94,95,105,106,118,109,105,118,104,112,113,105,104,102,100,113,112,113,117,108,108,114,114,101,109,99,101,109,104,93,109,97,105,108,104,99,111,117,98,103,102,92,101,108,100,102,100,101,106,110,100,102,113,99,86,91,111,98,109,100,104,100,122,115,118,103,100,113,120,108,109,101,120,107,102,93,104,99,110,94,109,118,109,96,105,93,106,88,97,102,99,98,103,99,103,105,91,103,96,103,98,107,101,109,98,103,103,105,98,106,106,99,107,109,94,99,98,96,113,110,112,98,103,117,95,101,102,89,101,112,100,96,115,109,106,100,106,107,105,112,110,106,104,119,110,113,125,100,118,112,109,105,105,95,91,112,75,95,110,114,102,102,114,113,108,104,106,100,105,97,104,112,106,100,121,94,96,119,101,107,111,105,88,111,118,98,114,104,99,103,103,107,109,101,92,105,92,108,108,105,114,107,105,74,105,112,102,108,109,106,99,106,108,108,93,109,91,112,108,96,106,111,98,122,125,126,110,107,93,109,112,102,112,105,113,102,101,103,117,114,101,113,101,110,104,98,98,108,109,99,102,111,105,99,109,106,112,102,96,95,91,104,102,107,119,96,88,107,111,110,114,117,102,113,112,104,100,95,97,95,106,94,105,102,105,98,101,99,106,94,100,113,104,99,98,91,103,97,89,113,105,104,104,101,114,102,102,113,108,101,96,102,101,114,115,97,116,108,104,103,99,92,104,109,101,97,107,95,110,87,119,103,102,101,107,109,106,109,105,110,94,100,104,102,112,125,105,71,101,104,99,97,114,108,101,102,107,102,106,95,106,110,110,109,108,110,123,102,108,103,99,103,97,108,94,103,108,102,105,102,101,108,124,108,117,117,110,120,112,99,113,106,119,112,102,99,119,111,105,98,105,105,109,108,101,109,104,101,113,99,105,98,101,103,110,93,109,114,109,96,97,101,112,92,112,102,111,99,118,109,83,103,109,103,109,96,106,103,99,120,108,88,104,112,109,97,98,110,108,112,103,116,98,108,95,103,105,116,109,115,98,109,113,100,111,98,103,121,105,110,112,113,96,94,109,105,95,101,97,97,70,111,95,113,94,114,116,110,109,110,104,111,95,95,98,108,110,120,107,108,106,80,111,117,112,97,105,109,110,106,108,101,102,106,115,98,99,93,107,112,110,103,104,106,106,111,107,109,117,98,101,103,101,104,88,99,118,108,102,103,109,111,93,114,109,102,99,110,107,100,100,105,106,102,108,94,91,113,112,103,105,106,115,95,121,109,112,98,103,98,105,88,111,106,122,104,106,113,109,114,112,98,103,105,101,100,112,104,87,107,107,104,104,125,104,97,100,104,106,104,100,106,109,92,109,99,114,105,105,104,99,102,112,100,107,108,117,99,92,110,103,96,103,117,106,109,95,92,121,98,108,95,93,119,100,103,117,102,94,101,103,103,101,114,113,99,101,102,82,102,103,103,112,97,93,106,102,111,108,109,116,105,113,99,106,117,105,104,94,106,100,99,92,99,100,120,104,108,102,106,92,100,100,102,101,100,111,81,103,106,109,104,108,108,112,105,107,102,105,105,108,108,107,99,98,101,111,109,112,105,105,92,104,103,103,100,99,108,120,96,104,104,97,107,100,110,89,101,103,102,111,120,103,104,104,91,104,106,122,100,110,132,112,112,113,112,102,106,101,107,112,104,98,117,101,106,103,104,109,105,90,104,102,111,99,102,92,109,113,117,102,103,109,98,107,106,113,105,108,109,104,108,107,107,92,97,112,103,107,101,106,103,99,86,98,98,93,111,106,113,98,103,95,103,111,100,106,109,96,90,111,105,102,119,109,107,105,105,105,93,99,105,107,106,94,108,104,99,107,95,99,112,102,106,103,106,99,115,103,108,123,89,104,85,97,96,104,100,111,117,116,105,106,102,105,105,103,100,101,108,110,100,104,100,100,118,110,97,108,109,99,123,100,105,97,116,97,99,118,112,100,105,97,113,109,98,95,91,97,101,94,106,73,113,103,101,98,101,98,97,102,103,105,90,103,99,88,113,121,98,102,107,109,106,100,105,111,103,109,89,101,109,109,115,99,96,101,109,105,121,111,94,106,106,100,100,103,103,122,103,95,98,97,100,105,101,104,100,107,99,100,68,114,101,104,108,103,106,103,117,114,88,103,109,109,102,109,112,109,110,101,97,102,111,109,115,102,102,97,98,99,111,108,98,113,103,110,100,99,105,103,89,110,95,97,108,113,108,99,108,104,104,99,110,113,105,110,112,94,103,109,105,96,95,112,103,103,79,97,99,99,101,104,106,108,111,103,110,114,105,121,98,101,111,90,109,96,105,99,106,115,103,113,109,103,99,98,99,109,109,108,105,102,116,82,106,100,103,110,97,97,106,109,92,102,104,108,142,112,98,94,102,107,101,103,107,112,105,108,114,103,109,100,115,112,106,101,107,99,104,102,95,104,101,107,108,107,108,99,115,98,109,115,119,105,106,95,109,98,102,95,97,100,75,99,98,102,105,104,92,109,100,103,109,101,79,101,103,99,98,103,106,102,108,109,111,97,92,102,99,95,124,104,98,110,103,110,101,100,117,99,89,112,102,108,113,82,98,98,101,112,100,79,101,96,100,105,110,104,104,108,110,102,109,106,105,107,105,101,102,106,112,102,116,71,107,111,103,107,107,113,106,101,96,105,84,102,92,102,109,95,99,96,106,112,105,100,104,97,125,107,95,115,107,105,114,104,105,96,102,117,103,110,115,103,98,116,110,105,104,96,97,96,104,97,102,110,109,99,105,98,98,103,106,105,116,95,95,108,115,114,113,112,109,103,100,93,102,92,89,99,103,106,117,93,108,111,101,108,91,111,99,98,98,108,98,92,109,104,120,94,102,109,113,101,99,104,108,107,101,110,103,110,102,108,107,105,114,98,111,84,106,104,102,105,93,103,105,99,94,104,116,108,75,117,109,86,109,106,96,116,107,110,107,106,100,98,108,102,84,110,107,101,97,103,110,119,111,107,105, +544.78436,101,107,131,106,92,98,96,96,96,90,96,97,101,106,111,112,110,96,98,102,97,103,104,108,102,106,105,97,104,98,98,117,80,101,113,89,105,100,101,124,105,107,110,96,106,113,95,109,90,94,109,98,104,110,97,99,99,101,112,79,105,102,101,90,105,116,108,103,100,106,123,117,101,112,102,105,97,106,108,106,121,109,104,113,110,100,118,105,99,105,100,99,101,106,96,98,95,119,103,88,109,94,104,94,98,103,109,111,105,109,110,96,111,98,103,116,104,92,105,74,97,98,110,106,115,99,107,91,96,98,104,107,107,99,98,102,105,107,91,105,98,108,108,105,108,94,115,102,104,97,98,99,106,103,98,103,106,97,107,108,98,107,112,106,104,106,115,92,106,112,105,105,120,102,111,112,102,89,105,114,109,113,102,108,108,91,113,93,101,105,111,83,105,93,109,101,88,118,100,106,109,103,91,106,90,118,101,120,99,100,99,103,97,104,106,96,91,112,105,102,104,109,109,79,92,106,112,86,104,96,99,99,114,109,90,107,110,110,106,102,112,114,105,105,96,112,109,106,113,98,101,106,98,98,109,106,117,114,109,116,92,95,93,90,103,103,114,117,101,96,93,105,110,93,106,104,108,104,101,100,105,97,110,101,102,109,100,98,109,109,106,119,110,109,114,104,106,108,108,97,92,108,105,111,109,107,102,100,97,110,101,104,104,107,111,101,100,113,104,106,102,102,103,106,94,99,116,102,106,109,103,125,106,117,91,107,98,108,112,106,91,99,108,94,94,121,105,105,100,105,107,110,95,114,114,114,105,114,101,104,105,103,104,90,104,92,94,102,105,101,107,107,111,110,96,112,114,109,101,102,103,109,105,101,125,101,108,91,105,109,117,104,99,112,97,100,104,109,109,108,96,99,99,101,104,103,115,103,117,103,91,104,110,110,109,104,108,111,109,106,116,104,93,111,106,113,104,107,99,116,99,97,80,96,102,103,103,101,97,102,109,101,102,110,108,103,86,104,106,98,98,121,109,119,105,104,99,99,111,100,109,87,105,132,107,102,90,101,110,96,98,99,104,109,100,103,111,120,122,111,102,98,109,107,100,98,107,112,114,101,108,100,103,102,100,113,105,115,99,92,111,106,94,108,98,129,89,108,103,95,132,102,108,102,106,108,109,108,103,100,99,92,102,114,102,120,109,126,101,109,110,108,108,103,108,105,109,98,105,78,103,106,116,77,109,106,104,108,109,90,102,107,103,96,105,106,105,94,100,103,113,96,91,97,112,109,118,114,92,94,108,108,109,107,103,123,108,112,103,110,108,102,101,95,104,106,83,106,106,115,101,105,103,96,116,104,94,107,108,93,113,102,107,116,114,104,100,94,108,99,99,111,110,107,107,104,106,112,100,114,108,119,103,91,101,99,97,105,101,119,99,97,113,111,98,113,106,122,112,106,125,100,99,117,98,99,101,101,98,115,92,103,107,103,105,108,117,104,108,105,102,113,128,105,103,105,102,95,105,104,124,98,99,104,101,98,105,100,101,110,105,115,102,102,103,105,102,102,117,106,90,108,112,99,98,101,102,109,109,110,109,104,111,96,100,113,113,115,92,95,111,102,107,105,100,100,106,108,109,102,105,101,98,110,93,108,105,107,109,109,102,112,101,99,100,94,97,100,102,94,108,97,98,107,97,92,116,116,104,115,107,83,101,100,91,96,103,103,93,117,107,123,109,112,94,95,95,66,105,105,103,107,99,108,109,99,109,99,114,99,109,106,113,99,99,108,109,106,103,111,101,107,110,120,113,103,102,103,112,105,104,102,100,106,106,116,102,113,100,110,112,106,102,108,103,106,105,115,110,110,102,122,108,120,102,117,111,100,105,107,105,94,102,105,101,104,115,108,120,113,103,99,111,72,101,106,101,107,86,95,99,106,99,100,107,119,113,104,100,99,94,104,112,109,104,125,95,119,110,108,101,107,97,104,121,112,114,110,110,109,107,116,108,109,106,102,114,117,113,96,108,108,107,103,101,98,99,103,110,108,103,100,109,106,108,101,72,103,120,116,118,106,113,101,88,112,100,110,106,93,110,107,95,110,107,106,110,109,106,104,92,106,94,114,98,98,105,95,104,112,109,109,99,100,97,96,101,106,98,102,110,98,111,110,108,109,103,106,102,105,113,103,86,105,104,102,99,97,108,97,105,102,91,107,98,113,105,109,109,107,100,108,108,107,122,103,111,106,113,105,95,100,102,108,99,105,108,114,97,92,107,106,106,115,108,121,118,104,111,98,101,118,98,110,99,102,116,111,98,90,114,113,102,99,105,115,97,108,88,102,100,107,112,112,103,96,94,100,106,99,112,111,111,98,98,108,112,107,91,106,102,126,118,84,103,116,98,114,121,115,101,113,109,106,99,105,110,122,116,100,90,105,104,106,104,111,103,105,99,115,107,101,79,106,102,105,110,106,116,113,101,105,106,90,110,101,105,105,104,105,107,119,105,116,104,109,101,101,97,114,115,96,113,111,106,94,105,97,109,105,102,105,91,112,95,102,98,107,113,98,111,112,112,107,119,109,98,97,105,101,99,107,112,109,104,108,111,106,104,103,103,100,104,96,113,94,93,104,100,107,105,118,110,96,107,104,106,107,116,100,102,116,111,106,101,96,92,110,107,99,100,99,98,96,105,107,121,104,99,103,103,106,102,109,101,111,110,98,97,105,100,88,95,95,89,109,104,97,120,107,106,98,114,106,93,120,99,110,100,80,102,110,95,106,102,101,101,103,104,108,108,113,100,90,105,106,108,104,112,104,102,116,108,90,107,90,124,102,107,107,92,106,101,107,139,98,102,109,107,104,105,105,98,95,116,122,101,107,107,106,98,112,106,107,109,101,102,118,124,109,102,107,108,100,106,106,108,100,102,96,98,94,97,104,102,95,103,79,103,91,106,96,96,105,108,103,99,94,98,105,103,106,104,110,102,125,102,106,105,103,96,94,109,113,95,104,109,106,102,100,102,104,103,105,104,94,117,97,100,103,110,99,105,112,110,105,106,112,99,112,106,94,104,110,93,107,111,102,91,102,103,110,110,95,105,104,105,108,108,106,101,115,108,104,110,102,109,102,99,107,102,85,102,102,109,99,104,95,98,102,112,95,99,106,105,116,110,98,107,107,96,98,96,100,108,103,109,112,103,100,99,109,95,103,113,101,105,106,101,99,113,84,100,99,110,101,109,99,99,107,101,106,106,113,110,106,101,103,103,108,106,102,95,106,108,108,101,108,99,109,108,96,115,97,98,109,105,102,104,118,114,107,105,110,113,90,116,100,104,108,96,86,73,94,103,101,100,84,100,105,110,114,106,99,103,103,84,101,106,107,98,116,103,107,83,112,109,110,100,98,94,95,101,98,102,114,132,110,98,98,99,105,100,104,105,106,112,105,108,108,99,111,105,117,98,108,104,96,95,100,109,109,117,94,98,110,101,99,97,98,105,109,94,102,116,108,97,87,95,102,94,105,98,107,101,101,112,103,106,95,107,103,109,103,104,112,116,96,119,104,124,99,108,102,109,91,105,99,120,102,106,106,101,92,109,112,98,92,107,100,66,93,97,102,98,106,114,102,95,111,109,116,105,103,111,98,101,100,100,116,116,97,101,123,108,104,95,110,105,93,106,105,107,118,106,99,106,116,113,104,98,116,108,92,108,106,106,105,104,106,98,103,111,99,111,102,115,103,112,119,105,108,103,100,97,104,116,112,101,100,113,109,107,110,101,109,98,88,108,106,107,103,100,103,110,101,113,102,110,114,107,91,109,86,100,84,97,89,99,114,92,112,105,104,113,119,104,101,108,106,117,99,130,112,102,118,97,103,95,104,100,102,97,94,104,94,105,108,109,106,109,95,99,102,102,107,108,96,108,109,124,110,102,109,100,108,110,105,105,103,106,105,97,107,103,106,93,104,107,94,100,109,96,102,110,107,115,98,95,108,90,107,113,100,127,93,95,102,116,94,106,99,107,87,102,114,110,109,101,105,104,116,94,97,108,109,106,94,106,92,111,95,104,93,109,101,93,110,91,104,95,116,96,104,97,99,100,103,101,107,106,94,103,98,107,97,99,91,107,106,103,101,103,109,108,108,106,110,94,109,116,102,96,105,112,103,109,107,100,95,103,99,111,103,109,107,103,97,92,104,82,108,103,102,104,104,111,87,113,111,98,102,107,115,103,92,106,119,100,97,92,98,121,101,94,111,113,99,100,99,102,103,110,100,106,81,108,96,95,98,94,110,105,104,104,117,106,95,101,105,102,90,109,99,111,102,103,121,99,91,129,101,107,100,100,101,88,101,100,103,104,105,110,104,94,105,104,99,102,94,98,93,101,119,96,106,86,98,97,107,97,102,97,107,95,100,103,116,100,102,103,121,100,105,100,106,98,98,109,115,94,103,114,115,100,101,95,96,96,102,97,93,97,98,110,112,99,120,102,110,102,107,99,101,109,87,104,115,103,101,96,113,112,103,121,100,96,108,99,103,92,112,106,99,102,98,103,113,94,100,100,108,106,99,114,98,109,90,94,103,109,101,94,99,103,82,102,103,104,107,108,107,96,109,100,112,85,100,90,105,108,100,102,100,99,93,103,93,104,87,95,110,99,104,93,98,95,102,98,139,98,103,101,105,114,106,102,101,99,106,107,78,99,98,116,109,105,100,101,94,107,97,106,98,101,128,104,99,109,113,112,92,108,108,113,103,103,106,101,93,112,104,101,104,110,107,112,99,106,108,88,102,98,104,104,87,91,106,107,97,105,104,96,92,108,101,73,113,106,91,99,100,104,104,109,131,102,97,116,97,110,94,96,92,134,89,103,107,103,105,102,100,92,96,97,98,114,106,113,103, +544.92523,108,98,105,103,100,105,98,83,100,92,105,106,104,94,110,102,103,97,108,100,79,93,106,110,95,96,101,123,109,108,97,99,102,99,96,100,108,95,112,105,104,101,99,107,105,114,101,96,108,101,101,111,104,109,112,94,99,104,97,87,102,100,90,109,107,108,89,130,98,106,109,117,103,108,103,110,98,94,104,103,104,103,103,105,97,120,112,96,93,95,109,109,102,98,108,122,117,102,99,101,117,109,100,100,106,109,98,100,84,119,102,100,115,112,109,101,108,117,114,105,97,112,104,99,117,97,114,103,114,92,105,98,109,99,110,104,92,108,96,105,97,110,92,103,94,103,101,108,107,104,112,98,116,102,99,112,106,105,96,109,108,104,103,112,121,99,116,99,95,102,97,112,95,117,109,91,110,98,121,114,109,121,105,115,112,104,90,95,110,98,106,99,107,100,106,104,110,105,102,109,118,107,106,92,105,113,107,100,117,94,108,113,110,101,107,104,90,115,104,105,109,105,104,114,105,101,102,113,106,103,101,96,86,119,109,109,103,103,99,112,99,106,111,102,95,117,98,109,107,109,112,111,109,105,115,102,105,110,108,118,102,103,104,106,97,114,106,108,102,100,106,102,105,105,100,111,108,107,106,104,106,102,104,103,102,118,98,95,82,103,101,108,111,108,115,102,120,111,94,111,92,102,103,129,75,111,100,110,100,102,91,112,118,108,106,101,113,105,94,108,98,106,109,105,113,103,102,99,107,110,114,102,109,104,101,86,102,108,102,113,110,108,97,102,88,102,114,105,112,107,91,107,103,109,114,108,96,114,108,109,108,102,86,104,105,107,104,106,94,113,102,112,109,116,117,101,103,126,115,94,111,95,100,99,118,103,106,84,107,101,114,104,109,115,117,117,104,102,104,118,107,112,109,109,98,106,104,97,106,111,92,95,99,113,110,103,98,101,108,104,103,87,96,99,98,107,105,97,102,99,101,110,101,101,112,103,92,103,109,108,106,106,99,104,100,104,108,101,108,104,98,97,106,114,108,116,100,107,95,107,105,99,102,105,98,117,117,108,108,106,99,112,105,116,109,100,101,111,104,115,108,114,106,99,109,108,109,106,99,102,113,109,104,105,113,113,105,99,118,125,98,102,118,100,108,103,101,112,118,114,114,118,117,101,96,110,106,108,106,100,126,125,109,112,100,103,106,83,98,112,99,109,114,99,119,98,104,106,105,110,102,122,92,99,125,104,107,111,101,92,99,112,100,107,104,105,104,113,105,105,105,111,97,111,108,103,104,119,108,112,103,111,129,116,103,98,107,109,102,103,103,101,105,107,104,112,117,122,114,113,107,98,99,103,106,125,111,112,105,100,105,115,95,107,108,97,103,110,110,110,101,113,105,108,92,111,92,90,111,108,99,99,102,105,100,113,109,106,100,109,107,103,105,102,105,82,94,107,86,107,113,102,116,115,107,106,99,106,92,114,103,106,93,108,106,104,114,119,101,98,110,103,118,113,93,111,112,88,120,98,110,111,114,102,100,106,111,103,111,108,107,104,120,95,105,84,126,113,102,109,116,126,101,117,121,103,106,107,105,118,109,101,94,102,104,105,104,106,105,95,101,107,100,113,108,95,115,108,104,112,109,106,105,101,120,96,102,111,104,107,110,116,109,101,87,116,94,106,109,105,94,112,109,100,104,113,99,114,95,108,118,105,103,102,95,106,102,100,117,103,101,99,107,101,87,103,100,99,104,111,101,112,98,97,103,109,99,104,111,118,115,99,103,104,79,110,96,103,100,111,108,85,111,110,102,107,99,118,99,107,97,110,104,109,104,104,103,104,109,108,118,105,105,96,110,103,112,101,103,107,98,83,100,114,110,128,112,99,127,110,99,97,111,109,110,104,106,97,109,94,103,119,115,105,96,99,107,120,101,96,117,109,104,105,106,112,105,117,102,96,110,101,100,119,101,103,106,111,123,98,98,134,100,119,95,104,97,110,101,98,103,109,105,109,102,105,91,123,102,107,101,108,106,109,119,100,114,96,102,102,111,110,105,103,108,100,102,106,109,110,111,102,109,101,103,108,103,108,97,109,105,113,108,103,105,100,100,108,102,106,102,104,111,108,102,99,109,110,105,95,107,110,112,96,100,96,103,108,108,106,117,101,125,113,110,106,103,99,104,114,117,117,113,92,102,105,80,110,105,111,104,91,103,101,111,106,108,99,103,105,102,118,98,97,103,98,101,99,108,107,102,110,91,107,101,95,97,112,96,115,100,96,106,103,73,106,110,107,113,112,92,108,97,111,106,104,117,102,105,108,113,109,109,103,112,107,105,106,116,102,111,111,99,106,107,92,100,111,103,106,122,111,113,123,104,114,110,117,127,112,114,111,123,112,108,106,88,119,104,91,99,125,116,107,110,109,108,111,113,112,107,108,104,99,100,111,119,106,106,104,111,95,98,104,109,105,98,98,117,115,110,113,103,94,91,98,107,104,107,101,113,110,100,101,119,90,104,111,118,106,101,101,114,107,98,68,107,99,95,124,108,103,106,93,100,118,103,109,107,107,114,103,100,100,109,99,100,102,103,104,104,104,99,101,105,107,100,99,87,95,98,104,103,115,100,108,98,100,89,80,108,90,99,94,107,102,100,87,99,110,111,111,112,107,100,121,104,95,110,108,106,99,100,105,110,110,117,94,98,103,104,100,105,113,101,113,95,99,104,106,119,110,96,106,104,121,106,111,106,111,105,102,107,85,102,105,91,109,96,99,112,100,101,92,111,101,102,96,105,112,107,106,96,96,111,108,105,99,108,109,111,104,107,105,98,103,98,115,104,113,106,101,101,100,89,110,106,119,104,103,111,120,114,102,101,115,106,106,106,72,109,103,98,103,92,100,104,99,104,101,110,109,101,95,104,94,101,79,112,116,108,110,110,101,100,109,99,97,99,92,108,98,100,105,110,112,104,103,108,96,102,106,95,88,102,107,102,106,112,110,92,103,101,113,119,104,97,96,106,99,103,80,105,125,125,110,107,96,97,99,117,106,109,94,102,109,121,108,109,98,103,109,107,107,101,96,112,107,98,89,105,109,115,111,113,99,108,99,105,95,109,105,102,109,106,112,104,121,110,105,100,90,109,108,98,100,111,110,101,98,105,109,98,102,108,103,98,98,109,103,107,109,105,116,100,95,106,106,104,101,89,106,118,96,98,111,117,114,106,109,87,109,90,108,93,112,108,101,116,106,96,102,108,117,113,95,109,111,109,107,100,98,96,102,95,127,108,109,117,101,107,115,103,112,102,108,109,99,106,101,116,96,93,119,105,104,96,107,101,107,116,111,100,99,95,103,94,94,99,109,99,100,109,101,82,109,109,110,97,99,109,103,102,107,109,108,102,110,110,109,105,105,106,102,96,109,112,113,105,121,108,91,107,102,102,100,105,103,108,115,107,98,74,96,102,111,136,105,91,108,109,87,98,100,96,117,85,99,112,110,134,110,107,105,113,110,113,103,96,102,108,108,101,114,98,108,103,111,98,101,99,97,98,99,110,103,94,102,101,109,108,98,110,101,107,98,96,110,109,99,102,109,94,104,103,110,112,97,102,102,98,96,112,102,108,95,105,107,113,97,99,96,108,108,97,110,99,99,108,103,102,101,93,111,101,101,103,116,105,108,106,120,108,93,101,94,102,112,99,97,97,97,102,103,104,113,104,109,96,95,115,96,93,101,113,106,110,82,94,104,108,103,99,109,104,110,101,86,99,87,102,72,91,102,112,102,110,95,105,117,99,97,94,118,112,105,108,109,101,111,100,106,103,102,97,111,102,112,99,108,92,107,94,100,103,106,107,107,104,107,109,104,100,120,101,114,99,100,95,96,101,111,105,110,101,101,105,97,101,104,110,115,97,105,96,93,82,109,106,98,106,109,108,115,102,108,104,93,117,94,96,102,96,98,105,105,108,104,105,102,113,109,110,106,109,99,112,113,107,121,104,97,96,106,96,100,98,109,108,96,101,111,104,104,102,102,100,113,105,102,103,109,103,108,101,120,78,99,110,103,108,104,110,97,98,106,91,98,107,103,112,101,106,106,108,111,99,98,101,102,112,100,103,108,99,99,113,87,108,99,106,101,99,104,116,112,118,92,120,111,97,111,106,100,104,111,112,106,91,96,119,108,99,107,133,110,105,111,116,104,106,103,99,113,100,109,102,100,107,113,101,93,102,97,92,96,118,104,87,101,99,107,113,100,96,111,99,100,118,89,118,99,112,109,110,113,100,113,99,110,97,99,109,93,93,104,95,101,106,103,100,121,102,85,94,125,107,106,108,124,95,95,99,96,105,88,92,114,111,112,106,104,116,101,101,127,103,105,116,106,104,104,98,101,107,105,117,115,83,106,101,94,97,101,107,118,108,101,104,102,101,109,99,98,105,94,100,109,98,95,104,105,99,102,98,100,107,97,120,89,104,87,99,106,102,93,96,110,102,108,96,94,103,103,106,98,96,106,117,98,94,88,107,101,99,120,113,115,103,101,102,115,102,100,83,101,119,108,94,100,106,98,103,98,101,100,98,101,90,112,99,93,105,117,116,104,91,106,111,125,82,99,112,116,108,106,102,100,98,110,98,111,95,95,116,106,109,108,118,84,109,96,105,106,92,98,95,116,111,92,105,110,119,107,96,104,115,104,106,113,108,116,102,100,130,98,110,98,102,103,89,101,79,105,95,106,105,104,95,111,112,104,99,122,95,102,106,116,103,103,102,106,104,117,108,107,103,102,101,93,102,101,98,98,100,105,96,104,109,106,112,111,99,106,100,99,111,105,96,120,102,116,99,99,101,100,96,89,96,102,93,82,102,98,101,110,98,121,121,96,109,105,107,95,109,99,102,93,100,95, +545.06604,99,99,103,106,94,104,103,102,95,107,99,100,108,106,107,94,93,113,90,102,108,101,95,100,134,113,96,74,110,105,87,107,104,99,123,100,91,115,114,98,105,101,106,99,101,109,111,111,117,111,106,105,103,104,99,102,97,102,98,96,112,91,108,107,108,113,92,100,114,104,117,110,105,103,97,106,108,101,103,84,110,108,99,112,102,106,110,110,93,109,108,111,118,111,108,92,97,106,109,118,115,100,99,114,118,118,111,109,101,98,100,109,96,96,104,89,104,107,119,106,102,75,113,117,111,112,106,101,98,112,99,109,108,105,113,104,107,104,98,90,108,108,110,101,109,103,105,105,113,110,112,101,101,105,104,109,107,105,109,101,99,102,114,106,109,99,100,98,97,102,101,105,92,104,90,104,112,110,111,110,101,111,94,116,100,93,105,98,104,108,114,93,101,96,103,118,97,108,104,108,103,104,91,112,107,103,105,105,103,105,96,102,110,90,108,106,87,113,111,104,105,121,106,90,111,110,105,117,112,111,106,100,108,103,108,113,114,104,99,109,119,99,114,105,97,110,108,126,105,110,96,107,104,95,107,104,105,103,105,88,104,106,105,104,105,105,104,114,123,108,107,93,114,98,112,109,90,103,99,79,94,94,111,93,100,111,103,103,98,105,112,108,112,105,91,99,101,109,107,106,113,123,98,105,93,112,116,110,99,102,94,106,109,116,125,102,118,111,105,110,99,110,109,121,113,101,102,100,111,103,105,107,108,115,101,102,116,95,101,101,114,111,101,113,100,103,105,115,116,105,105,118,112,99,109,108,101,103,102,108,102,106,104,118,106,121,112,118,109,103,100,99,102,106,111,108,107,110,105,103,111,116,103,108,106,101,96,104,99,83,104,102,106,108,96,106,111,109,113,99,114,114,100,126,109,95,135,112,105,104,102,102,108,110,109,113,110,101,113,110,103,110,115,106,110,99,106,97,110,114,104,114,110,108,104,102,119,99,99,87,107,96,103,110,103,101,103,93,109,99,102,98,96,100,104,108,102,107,103,116,100,109,104,100,108,99,105,104,113,102,116,107,109,99,118,105,92,117,110,111,112,109,104,109,105,95,106,120,103,114,101,126,106,117,99,97,89,104,107,101,116,114,106,124,114,116,109,111,110,104,108,121,104,111,99,119,111,107,98,99,107,103,98,105,103,97,118,115,110,109,104,113,110,111,105,122,112,105,112,101,100,101,103,108,113,113,105,105,110,99,100,116,109,108,109,102,108,118,99,109,106,111,104,95,95,100,107,116,102,83,100,106,113,99,115,103,100,113,100,110,117,101,106,106,96,111,116,103,117,100,111,110,101,110,102,107,99,100,109,105,105,105,110,100,111,102,93,114,107,134,100,110,107,104,104,106,99,118,113,109,111,100,109,116,100,101,94,104,102,107,111,104,100,106,99,110,107,106,111,103,111,114,124,88,121,105,104,103,105,108,98,117,112,109,101,107,104,119,107,104,111,111,96,112,99,109,111,103,113,105,112,106,103,114,100,113,103,113,103,114,116,120,104,113,106,107,105,117,105,112,114,102,103,109,109,105,105,103,105,95,99,122,108,102,112,99,109,108,115,106,112,114,107,110,105,101,104,121,104,114,111,100,105,110,140,98,107,109,99,110,112,104,102,115,104,104,124,106,117,99,112,92,108,107,110,98,109,107,96,106,122,110,107,89,104,106,100,107,110,98,113,102,103,102,87,105,94,102,88,112,111,111,97,99,90,103,103,104,108,110,107,99,105,108,101,106,111,111,105,108,99,118,108,108,113,112,96,110,102,117,102,114,100,111,130,113,105,95,106,112,114,98,118,121,111,117,114,109,110,111,107,112,106,110,107,118,101,110,103,89,105,114,108,107,115,111,97,111,104,112,109,109,99,97,103,115,108,109,109,128,114,109,108,113,108,102,100,92,110,101,98,109,111,113,104,100,94,109,105,102,106,112,104,111,103,102,107,100,108,93,113,107,90,112,114,106,108,112,114,121,111,121,121,120,105,77,108,107,106,109,104,106,110,103,111,97,109,114,107,113,103,109,94,111,101,96,109,99,94,103,91,81,108,106,100,95,96,105,93,95,92,106,117,113,105,103,105,95,107,103,107,106,108,104,108,110,108,93,100,106,104,111,108,111,115,110,112,104,109,104,107,101,97,99,112,105,100,113,102,115,93,106,89,98,106,115,106,114,102,117,103,103,115,106,100,105,110,108,105,114,110,106,105,110,96,99,108,114,111,107,109,92,114,105,103,110,104,103,106,113,122,102,100,102,103,102,109,105,99,103,107,93,104,99,114,102,100,103,112,95,112,111,110,103,106,92,110,109,110,102,97,108,114,110,101,94,113,105,113,112,125,112,102,107,121,116,117,108,71,104,95,115,115,91,99,98,106,99,102,116,106,124,113,97,118,96,103,97,96,103,108,103,95,103,102,85,110,110,114,120,117,109,103,109,99,105,117,102,122,111,114,107,115,108,116,107,95,110,86,104,105,95,113,109,106,112,108,116,92,103,100,80,105,114,95,104,95,96,98,104,107,109,105,104,105,105,114,99,119,96,104,102,112,107,104,106,110,109,104,95,120,112,106,108,106,112,108,103,104,102,109,111,109,98,103,105,107,126,122,104,100,81,106,78,106,105,93,99,107,102,96,105,111,111,101,98,108,107,109,107,90,97,107,103,102,94,112,100,98,87,116,112,105,103,91,102,109,109,102,82,102,109,103,106,110,101,96,103,109,117,112,111,102,106,93,108,100,108,101,108,93,111,108,110,111,92,109,111,105,111,103,115,114,107,112,108,88,97,104,92,107,96,100,95,113,99,107,99,104,104,111,103,105,110,114,94,104,108,100,110,119,97,99,102,106,119,94,107,110,113,102,108,101,103,101,91,109,107,98,99,102,121,107,98,105,104,109,97,107,105,102,104,107,109,106,95,111,102,105,110,98,104,78,110,109,122,105,106,107,77,111,108,97,83,106,98,105,104,105,115,106,91,95,107,111,107,104,101,92,94,94,102,108,110,108,97,117,121,107,104,112,107,97,96,107,93,98,108,109,107,99,109,102,110,107,111,98,88,118,87,100,103,107,120,117,99,102,95,116,109,105,101,105,128,114,95,106,94,106,99,93,101,83,109,102,113,99,94,107,113,111,106,120,100,105,102,103,105,110,105,94,108,98,102,109,104,105,91,112,121,95,107,103,111,95,103,104,111,114,113,107,108,110,109,112,108,100,106,104,117,110,109,95,110,108,98,96,114,103,114,102,94,98,90,104,107,110,95,105,102,130,115,109,100,104,105,97,101,104,103,94,99,113,101,93,95,112,113,109,91,99,112,120,103,106,106,98,94,113,95,109,96,106,122,104,113,97,106,109,124,98,91,107,107,92,104,104,110,103,89,106,109,112,107,100,103,118,92,111,99,106,107,102,98,101,99,108,111,105,95,108,103,94,79,113,106,108,121,117,107,104,101,103,110,99,108,106,115,95,106,112,98,102,115,99,117,98,104,93,102,106,113,101,103,98,107,99,97,121,109,106,117,108,102,103,107,113,98,108,109,109,99,102,100,102,106,106,103,95,99,96,100,99,105,86,100,100,102,111,104,100,103,106,102,102,100,101,101,103,120,111,100,103,107,98,103,102,103,105,103,98,117,107,100,119,102,108,113,114,106,106,114,109,100,98,103,102,98,99,95,108,99,107,113,103,92,101,109,96,106,98,98,94,95,112,86,108,120,106,101,107,97,98,110,108,96,109,102,110,107,98,100,103,105,112,100,107,110,99,106,106,96,96,106,100,112,111,103,98,106,108,110,98,96,104,114,100,108,98,116,122,107,85,105,107,110,107,103,95,96,106,92,91,99,101,115,91,115,89,107,91,96,96,109,95,95,115,113,100,98,104,106,107,109,95,102,104,95,87,100,90,111,99,111,109,111,102,106,108,100,109,110,106,107,110,100,109,111,84,105,122,103,97,99,112,109,118,107,112,109,103,92,109,88,111,106,97,98,117,106,96,87,105,98,110,81,108,112,107,93,104,99,104,100,94,88,98,109,99,112,97,96,115,110,98,117,96,105,98,104,78,107,110,102,109,117,110,109,108,100,97,102,105,99,95,111,96,93,111,98,87,97,113,99,94,108,102,103,106,91,109,106,112,76,109,109,108,118,113,113,98,106,96,106,98,106,104,108,100,108,116,103,120,98,108,107,105,110,100,121,99,96,109,107,101,100,98,104,100,121,116,101,117,108,105,104,107,93,106,105,104,99,106,92,92,101,98,108,98,101,117,106,108,99,118,98,99,100,112,95,114,128,99,102,102,102,115,103,113,90,104,111,102,102,92,102,94,105,105,96,109,103,107,108,99,97,118,97,107,97,98,96,108,99,91,102,110,97,103,89,110,109,103,108,105,95,94,91,105,107,98,96,107,105,101,96,92,101,102,108,105,95,100,96,99,93,79,103,104,105,97,103,97,110,113,89,100,113,113,94,104,88,102,113,105,98,98,111,96,108,103,92,102,110,96,98,96,108,102,105,101,115,112,100,99,99,98,105,95,113,90,93,102,113,108,93,103,93,116,111,105,105,113,116,96,104,103,112,98,94,100,124,100,95,109,96,105,103,94,100,96,101,106,103,86,105,92,93,98,101,98,106,93,104,97,98,99,107,108,106,97,112,108,104,87,114,102,100,97,99,79,103,95,101,105,97,112,86,111,108,105,98,107,102,91,98,81,111,103,100,102,104,95,94,116,97,118,102,95,107,90,89,108,101,107,104,98,105,87,98,110,106,102,97,94,103,92,107,100,105,105,99,103,93,101,107,85,98,106,95,85,104,101,116,106,106,94,113,106,112,112,91,102,101,90,97,110,99,84,96, +545.20685,97,114,98,91,92,102,100,80,94,110,99,101,109,113,112,105,110,102,98,99,102,102,95,108,92,108,118,107,113,102,107,105,107,106,110,99,102,105,92,82,103,93,114,95,111,106,100,104,100,103,108,112,101,102,123,94,100,108,106,103,112,99,95,102,123,104,102,105,115,96,96,116,95,98,99,95,86,103,101,94,102,126,108,105,91,94,118,117,114,104,94,105,98,107,94,99,104,105,104,114,106,96,104,93,95,93,100,105,114,90,104,99,104,111,98,96,96,101,104,87,112,95,96,125,116,103,112,94,100,104,95,103,95,104,103,106,102,91,99,102,103,105,100,105,101,112,107,106,101,107,102,110,117,94,95,101,108,104,102,97,99,106,110,118,101,101,103,110,114,98,106,110,108,104,100,95,102,97,106,101,96,97,103,107,108,104,94,92,102,100,96,94,99,111,110,110,100,117,102,69,96,101,98,100,107,114,100,101,107,106,98,98,114,100,87,86,108,98,105,98,101,101,113,95,104,107,99,92,109,100,101,101,121,100,106,111,104,92,111,104,100,102,115,108,104,100,115,111,100,109,105,113,93,121,93,100,92,116,113,75,96,109,108,99,104,99,106,74,104,104,104,89,111,112,112,109,106,105,101,105,103,100,105,95,108,107,91,112,95,98,101,100,107,104,121,109,101,99,102,113,101,102,105,102,93,108,107,111,105,105,104,112,110,98,100,101,104,121,95,113,116,106,100,92,112,96,100,105,107,106,99,95,109,107,115,108,96,101,98,104,101,103,103,98,102,118,109,118,114,105,119,113,105,111,115,114,106,109,106,112,112,102,114,111,104,92,99,115,109,104,113,113,96,97,119,95,117,108,110,113,104,107,105,104,102,102,95,102,97,111,104,98,108,107,97,99,107,104,103,113,109,94,98,100,103,105,111,96,99,109,103,96,106,107,98,100,108,110,99,103,101,102,105,106,102,100,102,101,93,107,112,86,99,115,109,98,94,103,107,104,110,90,110,103,100,104,104,96,94,110,99,101,109,106,106,114,104,113,100,97,108,107,102,109,101,107,93,113,106,96,105,114,113,100,98,103,106,101,112,113,110,108,112,90,95,103,106,105,100,104,109,102,86,95,106,101,104,103,116,106,118,104,102,94,111,106,98,104,120,92,118,96,95,98,100,108,105,91,112,109,108,104,106,105,111,103,112,108,100,113,104,106,109,98,111,95,108,108,109,107,124,110,106,108,114,103,99,103,117,108,108,103,104,102,107,102,92,102,114,109,103,129,104,118,110,104,110,96,99,101,88,100,110,103,117,106,113,95,97,109,102,99,102,108,115,102,114,91,107,109,109,103,114,102,108,108,101,99,118,95,97,113,106,105,109,108,96,100,105,114,103,112,106,109,105,89,98,116,102,101,108,98,104,101,97,97,100,100,114,101,90,91,113,107,96,105,91,105,113,112,112,105,106,100,106,112,100,102,113,83,99,108,105,119,104,101,107,110,100,101,113,116,103,107,109,101,109,102,108,104,103,108,114,104,98,112,103,99,113,104,113,99,114,95,106,104,112,106,98,105,109,96,112,109,84,108,116,80,110,102,92,104,98,93,104,107,106,105,104,88,106,103,121,110,107,103,97,100,103,103,105,101,105,108,95,99,107,98,109,106,100,122,109,106,99,104,110,100,104,106,106,94,104,99,104,94,92,74,99,106,121,95,110,113,101,100,102,112,106,100,99,126,95,118,97,106,104,98,95,110,103,104,100,107,116,115,106,94,106,107,117,115,102,111,104,85,105,103,101,107,109,102,111,106,114,117,104,103,113,87,114,101,98,109,112,108,99,114,102,72,124,100,107,111,115,106,100,93,115,110,125,121,112,105,103,103,132,107,103,96,116,113,108,96,107,103,104,106,98,109,106,118,104,114,108,101,98,104,101,109,106,100,109,113,98,114,104,100,113,110,110,94,99,118,97,107,91,106,111,114,102,94,110,109,91,112,101,107,118,87,118,88,100,103,81,115,115,105,103,94,100,106,104,115,108,101,107,91,102,111,105,100,87,106,117,108,110,102,100,106,107,112,101,97,101,111,99,98,100,106,102,100,116,113,110,95,109,90,102,109,92,136,109,116,108,118,95,103,118,113,84,120,106,114,99,100,112,108,103,96,101,109,111,109,108,106,110,109,96,95,106,100,116,99,111,104,81,117,108,102,108,115,107,106,114,102,110,106,101,114,95,115,107,95,99,100,99,87,97,100,103,109,98,101,97,105,101,106,102,105,112,95,97,94,109,106,116,118,101,110,89,99,112,97,110,102,101,99,102,114,108,104,112,105,113,102,117,105,104,102,101,119,125,102,107,91,99,109,105,128,109,110,112,115,128,111,113,114,117,119,100,103,113,109,100,117,101,96,102,104,100,111,95,70,110,103,110,110,121,93,102,119,116,95,116,112,112,104,92,86,106,99,109,121,107,99,100,104,116,104,102,91,105,103,98,105,116,114,111,95,116,104,109,101,95,107,103,116,100,105,117,109,110,98,107,101,103,106,100,92,118,109,104,98,105,102,103,111,108,110,113,102,104,95,106,112,105,106,108,99,106,104,108,95,91,111,111,113,99,106,108,109,106,104,102,107,116,128,102,101,115,103,104,89,121,73,101,105,111,91,116,113,95,116,110,113,122,103,115,101,113,101,101,101,106,109,97,105,90,113,104,110,103,113,111,108,97,104,100,112,105,99,102,102,115,113,114,97,111,103,102,106,103,103,101,118,94,107,106,104,98,101,98,112,106,98,104,101,109,97,109,99,95,121,103,109,112,109,103,111,111,115,106,99,113,124,111,100,122,120,104,105,104,116,103,113,101,109,112,112,115,111,116,104,111,92,103,100,111,93,101,100,98,127,106,103,108,116,106,109,111,109,96,101,112,115,90,99,97,104,109,112,104,105,106,102,107,91,105,110,103,105,104,107,98,91,120,119,100,106,110,90,100,104,104,102,93,113,104,93,116,105,99,108,107,103,108,99,95,120,101,97,91,115,130,99,109,104,102,134,108,100,107,107,105,100,118,94,118,111,98,111,104,100,92,112,108,104,111,97,109,112,109,107,108,105,108,118,116,95,118,109,104,100,102,106,88,111,97,101,109,93,108,114,105,107,101,97,97,88,102,104,111,100,109,110,109,90,98,107,107,109,101,99,110,111,113,108,125,110,98,115,102,109,112,105,92,114,99,106,70,106,118,99,113,98,104,101,114,109,118,99,99,117,97,108,113,108,103,116,104,111,95,106,95,93,111,94,106,99,103,95,98,105,101,107,108,106,112,97,98,111,107,101,111,106,69,99,107,105,100,84,100,102,98,105,108,113,98,107,106,101,116,91,100,103,114,102,99,109,106,107,106,105,111,102,100,118,99,96,106,113,99,101,98,106,99,111,98,98,96,106,110,102,113,105,103,114,105,104,104,109,109,105,85,103,106,101,99,111,105,104,115,83,105,113,107,106,103,113,112,115,99,111,90,99,102,101,105,110,113,125,110,107,109,98,94,99,106,116,103,103,106,109,100,113,109,92,106,104,107,99,106,104,105,113,105,106,113,99,100,103,103,121,106,102,108,109,107,114,93,110,94,98,109,102,101,108,121,109,103,93,103,136,100,106,102,98,109,105,102,105,109,104,102,71,111,99,96,99,109,119,104,103,109,96,110,96,113,105,94,109,113,118,106,104,113,95,107,105,104,117,110,88,99,107,110,113,97,113,96,114,99,113,87,108,98,110,106,122,101,90,104,112,120,109,107,103,100,115,101,93,108,105,102,98,101,104,98,105,102,103,95,115,105,93,107,101,107,103,106,115,104,103,103,100,103,107,107,101,103,112,113,105,98,105,104,98,107,92,86,97,105,103,106,111,96,106,101,103,109,114,108,100,104,105,120,96,108,94,107,101,108,92,99,110,109,105,108,108,102,104,99,108,121,113,105,96,112,108,102,100,121,91,80,99,105,105,96,106,113,109,113,105,108,100,103,109,111,97,104,99,104,99,95,107,101,101,108,97,99,128,108,104,110,112,107,111,109,105,110,92,112,109,96,116,97,110,98,91,114,111,105,107,113,115,100,108,97,97,105,100,98,108,105,106,107,106,107,106,104,100,100,111,108,75,97,90,103,104,116,102,93,101,108,111,112,102,101,101,100,115,115,109,112,105,103,108,111,101,108,101,90,103,98,114,104,100,108,103,104,113,110,114,95,106,108,97,101,90,109,104,108,103,98,104,102,104,98,92,103,95,111,86,103,104,103,106,99,107,101,102,113,103,105,98,102,109,109,112,111,103,128,100,100,100,107,110,111,104,129,113,108,102,117,103,99,107,103,100,105,109,106,96,103,108,105,106,104,101,108,98,104,107,105,103,104,103,110,108,103,99,111,109,102,99,105,108,104,121,112,106,98,108,113,111,109,107,107,105,123,105,113,100,112,94,110,102,114,107,102,83,101,103,109,101,100,109,107,102,102,98,106,111,115,99,120,101,110,100,110,97,105,102,103,96,98,103,104,90,85,101,120,99,105,105,105,100,108,107,102,100,105,107,86,119,112,108,92,104,96,107,92,107,109,117,117,112,104,87,101,100,100,108,104,88,108,107,107,109,119,107,94,99,109,101,102,105,100,96,99,104,102,102,110,90,111,94,92,96,110,105,108,102,108,102,96,128,105,88,103,101,97,96,106,103,100,91,102,121,113,109,107,102,94,98,109,114,128,99,87,78,91,113,115,105,108,100,105,96,100,105,105,104,125,117,95,111,100,85,121,96,105,94,107,102,101,104,112,94,106,91,102,112,96,100,111,104,82,87,105,117,101,91,98,111,98,95,109,95,108,97,99,100,108,106,112,106,107,99,111,125,119,76,85,58,105,106,88,102, +545.34766,113,111,112,103,90,97,104,114,107,99,113,105,103,101,97,83,88,125,110,109,137,97,109,105,99,109,95,113,110,100,97,97,122,91,117,106,112,109,109,122,72,104,94,116,95,101,96,112,97,123,94,89,100,107,105,91,104,118,102,106,115,113,98,108,114,104,79,107,114,91,109,102,93,111,100,99,93,92,81,101,110,101,100,98,115,98,103,105,95,107,115,112,102,107,109,113,101,111,93,109,95,111,91,101,109,99,99,91,96,110,103,107,97,102,95,92,105,120,108,113,102,109,112,108,115,86,115,93,106,115,112,95,102,103,97,109,107,106,109,106,106,109,101,100,103,111,95,109,103,113,109,116,91,100,114,103,96,109,109,95,105,119,102,106,104,93,118,110,108,110,96,109,111,94,98,118,105,102,103,103,101,73,103,110,111,104,109,125,113,105,110,113,104,82,103,126,100,102,103,122,108,90,108,119,112,108,113,104,101,116,95,126,110,106,110,106,91,112,109,89,104,96,109,95,111,105,95,112,107,104,113,106,110,95,103,109,110,121,108,117,125,103,109,105,105,91,91,97,101,107,110,104,90,115,108,103,101,103,108,106,97,109,112,102,108,108,101,107,81,97,111,100,117,98,105,108,98,104,113,108,105,114,96,107,107,105,96,103,115,104,102,105,103,107,112,113,108,104,116,109,96,116,105,92,95,101,114,117,113,109,102,106,105,109,108,105,114,92,108,111,104,106,104,101,103,104,94,114,96,107,107,104,94,109,107,98,97,105,112,109,117,113,111,93,109,108,104,100,107,119,108,106,118,108,103,110,109,88,102,99,111,119,95,110,114,100,102,113,99,112,106,108,98,109,108,102,111,106,107,113,123,119,101,107,102,101,110,95,97,100,125,98,102,122,102,103,97,116,112,116,87,98,113,102,104,100,121,109,84,106,107,106,115,113,96,93,106,101,103,101,99,118,111,94,98,107,106,104,111,107,89,113,121,106,110,102,111,139,108,112,120,97,108,125,104,112,99,111,108,111,105,99,102,105,99,105,103,104,104,106,101,97,108,106,103,104,104,106,104,98,110,116,100,99,114,104,113,72,95,108,105,108,109,109,112,109,110,102,100,102,105,102,117,88,99,103,100,106,108,109,111,110,114,105,111,113,100,100,114,91,119,111,106,101,99,103,104,105,110,97,111,96,106,112,100,108,106,108,106,127,103,104,117,116,118,101,111,104,106,104,83,115,100,103,113,99,112,107,105,104,117,94,113,111,105,102,101,98,103,111,114,108,93,104,103,105,103,105,109,116,103,98,101,124,108,100,98,103,118,103,105,111,102,90,110,95,107,105,108,118,116,105,109,106,111,112,105,106,108,108,112,103,98,94,104,102,113,106,100,126,102,99,111,102,98,106,95,90,108,108,109,111,120,106,103,104,114,109,110,108,84,115,106,113,100,105,104,89,109,88,100,107,111,115,108,108,100,92,112,117,107,112,106,107,92,100,110,111,112,109,93,107,110,114,88,111,99,99,104,112,111,118,104,105,97,96,111,95,115,102,105,94,106,108,102,88,100,96,109,102,110,110,100,111,115,117,95,112,105,92,100,114,115,102,95,105,109,114,108,106,103,105,104,114,107,103,102,101,98,101,112,102,110,114,105,97,107,100,104,118,106,119,99,96,106,115,114,98,120,100,103,109,113,109,105,106,108,107,94,106,113,109,111,103,102,94,113,109,98,94,111,98,104,117,100,112,98,106,102,95,101,104,100,88,118,100,107,109,99,75,108,101,101,110,104,95,100,113,115,127,111,107,106,109,112,110,113,115,103,112,110,121,99,108,106,105,108,68,102,78,82,102,103,108,115,108,114,107,105,101,105,102,110,109,101,113,103,106,112,117,116,106,103,103,107,105,97,111,117,113,104,100,108,120,115,105,127,108,103,113,98,97,106,103,103,114,115,118,121,103,111,109,97,107,102,102,102,109,109,106,106,101,107,113,97,98,93,95,106,77,100,107,90,118,103,91,106,74,109,107,112,104,105,118,108,104,110,109,103,100,98,105,99,103,108,100,101,102,112,109,99,96,102,116,107,114,108,104,102,112,100,105,106,103,107,112,106,109,105,108,113,109,107,105,89,104,104,89,115,109,124,102,117,101,110,98,107,108,110,94,110,108,114,116,112,110,121,94,105,106,120,111,100,105,106,105,114,113,94,104,108,102,104,110,102,107,110,102,101,105,101,121,121,111,114,68,109,102,107,106,121,103,100,101,102,123,113,117,108,108,101,106,106,89,115,107,103,107,85,113,109,129,103,103,120,110,115,103,112,103,112,105,115,100,111,106,103,99,99,112,106,117,109,93,115,98,95,116,107,114,132,150,134,109,105,105,115,115,115,110,116,110,113,103,112,98,104,105,108,111,107,100,100,108,107,101,90,103,113,94,106,106,113,100,102,107,107,89,105,100,95,100,104,124,109,118,110,102,114,96,102,105,100,93,111,119,105,110,112,109,107,101,104,103,107,103,104,99,108,107,113,119,104,109,102,117,113,118,109,112,106,124,89,72,110,83,104,102,98,117,112,103,104,102,104,109,92,100,109,87,102,106,99,104,102,98,118,98,102,95,111,95,106,102,99,107,106,108,94,99,113,100,111,86,104,109,101,104,87,111,106,99,102,107,99,105,84,97,108,111,90,109,101,101,120,99,107,112,113,104,106,108,108,112,88,112,103,101,105,106,104,103,104,108,92,109,100,104,101,103,118,100,96,114,119,108,102,115,105,98,100,102,98,102,104,99,113,103,108,102,95,113,95,111,98,100,108,105,113,96,112,98,99,85,94,106,112,104,110,105,105,110,105,110,109,100,124,112,106,103,109,112,108,98,104,98,103,102,118,91,106,100,112,115,122,109,114,101,106,127,103,109,105,103,103,103,109,111,106,111,101,105,113,93,111,106,105,111,116,100,106,107,113,105,102,103,117,105,116,91,95,113,106,126,104,120,112,111,108,113,106,107,107,110,105,95,107,107,122,102,113,111,107,116,116,103,117,109,102,102,97,102,98,103,111,106,109,98,111,109,106,111,100,113,111,100,102,115,93,108,108,96,113,103,101,104,90,101,111,99,109,93,109,99,106,103,103,122,107,97,101,97,108,108,102,111,118,94,107,99,84,112,111,109,102,94,112,98,100,113,102,106,103,98,104,113,112,100,110,100,105,102,103,107,108,106,105,103,99,110,104,101,101,102,126,101,109,104,99,105,112,94,103,108,106,107,99,102,113,108,98,98,97,103,110,99,87,107,104,103,113,100,98,97,102,104,95,97,115,106,97,100,98,106,106,104,93,96,103,109,102,104,101,103,104,111,108,110,112,104,99,103,108,109,94,110,106,113,96,96,100,105,107,100,102,102,112,99,117,91,95,96,108,112,105,109,114,110,100,99,98,112,103,120,106,104,111,106,112,92,102,108,97,97,108,107,103,108,97,100,111,105,98,106,101,107,102,106,110,96,105,105,105,111,100,94,110,102,107,91,102,101,91,102,108,110,106,94,108,110,95,105,101,106,108,108,104,103,91,115,110,105,103,106,108,104,100,99,110,105,109,112,101,103,110,94,98,101,108,108,105,105,108,124,100,95,87,106,93,94,102,103,110,109,110,109,108,112,100,122,92,102,103,120,117,101,106,108,105,96,109,112,94,91,105,98,103,109,104,105,118,107,98,110,110,92,114,98,104,104,102,100,109,94,105,106,100,113,109,105,95,102,108,92,107,104,100,115,110,99,109,80,94,110,103,106,113,106,99,104,97,117,113,101,107,86,103,106,111,111,99,90,113,110,106,115,108,112,102,118,111,103,97,109,103,110,106,102,109,99,96,98,110,104,93,103,97,82,104,79,98,97,103,96,101,91,100,94,99,104,100,109,105,101,107,100,112,102,105,101,106,103,74,113,101,106,106,100,107,109,102,96,100,113,101,109,103,103,103,105,116,98,102,105,99,102,101,101,97,116,111,101,107,96,87,92,104,108,102,109,109,116,108,117,109,107,118,99,131,99,102,107,104,105,113,115,98,103,105,94,99,95,106,102,94,101,106,101,108,95,96,110,102,106,106,106,97,84,109,102,92,108,107,105,104,101,104,102,94,117,112,98,92,116,103,109,105,103,108,106,94,100,98,100,116,106,95,117,117,96,100,86,114,111,104,97,98,104,113,105,118,101,102,104,109,98,98,99,101,110,100,100,103,110,111,97,112,95,102,97,92,91,104,111,100,93,90,87,95,97,106,108,113,111,100,118,105,99,68,117,102,104,107,106,106,97,91,99,109,100,113,103,107,100,107,128,107,117,106,126,118,98,120,94,106,102,95,134,97,102,110,108,110,98,86,109,98,112,101,102,97,93,104,102,113,107,112,107,108,100,94,93,106,93,100,101,87,99,97,102,110,104,100,96,97,89,113,107,109,96,94,93,96,108,97,98,101,103,110,106,108,95,110,106,91,103,103,111,122,103,100,81,100,111,105,115,113,86,102,102,102,106,101,101,109,98,98,124,97,103,117,112,97,100,106,106,105,118,106,104,103,105,106,106,110,111,95,101,103,98,109,111,98,109,103,98,100,100,107,106,96,100,94,114,91,102,96,106,109,110,110,120,103,97,98,102,103,92,86,82,102,92,106,105,94,97,102,96,98,105,75,107,116,105,93,91,103,108,102,96,89,117,113,103,103,103,113,74,96,104,102,120,108,115,101,103,113,96,105,98,111,101,97,105,108,95,114,105,108,105,102,111,101,97,102,107,100,105,103,105,105,92,103,109,97,99,106,111,110,106,114,100,102,108,110,109,110,109,110,105,116,126,92,100,97,119,107,103,95,99,111,107,103,96,102,106,106,98,105,92,98,122,81,95,103,100,107,100,101,99, +545.48846,82,107,94,100,102,112,93,100,99,83,109,114,98,111,102,96,105,115,107,105,113,99,108,103,93,93,95,99,103,105,102,100,101,94,108,98,109,99,95,108,94,100,101,97,75,103,102,109,99,98,102,102,90,99,111,90,98,114,100,96,127,118,102,93,100,106,91,113,107,108,95,102,102,106,111,115,109,92,100,98,104,94,101,111,94,95,112,104,117,89,109,94,94,98,93,102,99,100,94,100,98,111,112,104,101,99,95,99,99,85,106,101,103,132,102,107,108,110,126,102,104,105,106,105,107,100,106,89,104,99,103,115,103,105,91,121,102,95,94,96,100,102,104,108,98,81,115,91,95,103,109,99,115,103,96,101,102,107,104,111,111,106,104,105,110,109,101,105,121,106,104,95,100,100,99,107,91,96,103,106,98,109,92,104,104,96,102,91,109,99,102,105,108,97,88,96,101,105,97,105,102,120,88,105,99,99,112,99,121,114,90,91,91,113,122,110,100,96,98,110,116,107,109,104,104,108,103,100,105,106,106,103,97,85,106,111,116,112,106,101,98,105,105,105,108,101,107,116,105,116,106,108,94,109,116,99,103,91,102,96,95,107,99,104,89,97,101,98,98,107,109,102,89,104,112,109,93,105,93,102,105,95,117,100,110,110,103,104,103,115,103,124,105,101,100,97,97,95,107,99,95,100,107,104,105,120,108,124,104,107,105,109,102,105,106,99,110,107,97,107,98,105,109,114,94,111,99,95,110,104,104,99,101,87,101,117,105,95,107,99,97,113,93,99,105,113,109,104,113,112,105,95,115,110,95,106,118,105,109,106,97,103,99,100,95,102,113,117,103,106,99,100,109,109,110,105,111,104,98,110,109,111,110,101,106,97,105,110,107,110,109,99,103,101,103,110,94,103,99,97,102,101,109,97,104,97,109,111,101,101,100,99,104,99,90,87,102,113,111,108,99,96,106,92,105,96,103,103,100,102,105,102,109,105,91,99,100,112,94,109,93,106,109,115,95,106,109,102,108,115,105,95,102,108,92,96,98,109,114,95,92,95,103,100,105,94,104,92,103,114,111,108,109,103,106,98,105,108,104,100,100,79,106,108,120,100,97,104,110,105,98,101,99,99,98,100,83,102,105,91,116,107,92,109,113,109,98,97,108,103,102,97,100,107,102,104,117,109,116,109,121,95,120,106,99,100,104,106,101,91,100,108,100,112,104,108,124,104,97,113,96,97,103,106,111,103,106,95,100,100,99,109,103,111,107,104,117,103,116,96,102,91,114,112,100,100,105,100,95,120,99,105,113,113,98,100,101,110,104,112,110,111,110,102,107,95,111,111,108,109,100,103,117,95,104,106,100,101,104,108,108,98,120,108,94,102,109,110,117,100,111,113,110,98,102,102,106,109,101,98,106,101,95,110,105,113,106,101,111,106,88,114,99,103,111,102,98,100,105,104,101,121,103,113,112,106,109,106,101,107,97,107,110,112,108,112,95,102,102,94,103,97,108,106,99,96,93,95,98,113,117,110,98,106,97,110,97,107,79,113,93,112,108,100,95,100,102,99,95,109,100,117,106,109,99,114,102,114,95,106,101,97,96,98,111,110,115,114,95,105,108,91,99,115,99,93,88,100,104,100,105,106,114,107,105,102,101,102,106,100,95,110,102,106,108,102,107,104,117,102,109,104,99,99,102,100,104,109,102,102,112,109,86,108,105,103,112,103,115,110,104,90,69,95,102,94,96,108,88,100,107,101,113,102,101,105,112,96,104,98,109,109,103,106,106,98,104,109,101,108,111,103,103,111,104,106,114,112,99,106,99,109,103,104,108,109,95,107,107,101,102,112,102,106,90,104,113,103,107,112,132,104,107,117,109,102,110,108,133,109,105,108,102,116,110,112,107,107,108,106,103,112,109,102,100,102,101,111,96,116,99,117,96,116,104,95,117,94,96,110,105,109,107,101,111,85,104,109,110,104,106,109,96,115,75,97,108,110,96,102,94,115,106,103,97,110,108,126,107,102,101,113,115,108,102,91,111,108,106,99,105,105,108,108,96,93,98,100,107,91,86,100,94,108,112,101,111,107,102,95,100,104,107,104,95,96,100,104,113,101,104,106,95,118,95,108,101,88,106,108,106,98,104,106,99,110,103,102,96,118,106,102,108,107,122,109,95,107,98,87,109,103,106,115,106,103,108,95,101,106,91,104,88,103,109,108,100,102,97,100,100,108,116,109,89,90,104,113,97,100,94,103,77,100,108,113,107,122,104,103,92,103,104,94,114,111,95,104,97,108,98,105,112,105,114,115,107,104,105,101,110,103,103,95,126,101,109,101,107,109,104,103,114,110,117,97,97,110,108,100,96,103,109,114,105,89,119,115,101,106,111,116,120,106,101,121,117,106,96,105,92,117,105,106,97,97,111,103,105,96,99,112,91,111,84,103,104,120,106,94,107,104,95,107,114,105,120,100,112,113,96,104,106,101,94,99,96,105,95,116,109,92,114,90,100,103,113,107,105,103,109,110,121,78,110,104,101,96,104,106,104,104,100,107,106,72,104,116,117,110,101,122,110,111,90,105,102,98,105,108,92,100,96,96,112,105,106,102,97,96,112,96,103,93,97,105,92,83,113,105,109,103,113,106,92,103,100,102,103,99,104,105,106,87,98,96,102,102,113,117,94,102,101,107,86,114,111,107,91,117,120,102,110,113,112,104,117,93,119,105,107,106,111,95,123,117,103,100,108,104,107,99,109,72,109,109,107,109,118,101,109,111,99,102,88,108,104,110,105,100,100,109,86,111,103,101,101,117,103,103,108,106,100,97,106,109,95,113,121,91,113,106,113,100,109,108,101,106,112,102,108,110,108,113,103,105,95,102,84,112,113,99,98,112,100,103,131,101,100,110,111,89,108,106,112,105,101,101,99,87,100,104,117,107,104,87,102,99,109,109,103,110,100,113,107,114,108,110,105,119,117,105,110,99,111,116,103,96,102,106,109,113,100,104,109,99,91,111,109,99,115,79,100,110,112,111,112,102,99,102,101,97,106,107,118,104,119,122,102,120,97,104,108,93,102,107,95,104,114,108,110,107,115,99,107,96,103,111,107,102,120,101,106,109,105,103,95,100,103,99,101,108,97,109,103,96,107,104,94,106,104,98,99,99,106,101,80,110,120,113,109,101,102,98,100,112,123,97,101,103,107,103,105,100,101,101,119,120,106,113,102,121,92,106,99,100,117,102,107,103,117,99,118,112,113,122,97,99,106,111,106,96,107,98,110,101,99,99,106,96,107,93,99,101,103,98,120,102,103,98,115,109,102,105,120,108,96,110,107,106,99,117,114,98,96,99,101,103,105,101,96,108,97,110,104,102,107,103,110,101,106,103,109,97,98,124,119,120,108,92,101,99,94,110,113,102,107,97,103,101,107,101,102,95,119,97,111,100,96,108,99,107,103,105,104,101,98,106,101,95,112,112,102,107,108,99,102,102,103,109,102,111,101,107,103,112,112,97,112,95,103,102,130,104,104,118,102,112,106,100,105,107,117,102,119,108,88,109,116,107,106,115,106,120,109,104,117,116,105,114,94,105,102,104,99,99,113,104,110,104,123,98,93,112,108,99,109,99,106,108,109,107,113,104,101,100,102,92,99,121,98,108,101,117,105,98,116,97,96,108,115,119,107,97,98,102,99,96,112,101,113,104,105,103,106,103,106,108,97,105,111,108,106,116,107,106,100,104,113,106,120,101,102,110,108,100,110,108,108,95,106,99,101,103,92,98,106,72,113,98,103,104,112,99,104,99,103,104,109,117,110,110,104,108,101,103,103,96,95,122,107,141,108,112,105,113,112,107,119,103,88,120,108,104,98,99,102,111,103,101,78,98,97,115,101,101,108,110,101,104,113,107,95,96,107,117,97,95,77,100,101,110,96,90,92,104,108,97,113,107,107,84,95,104,107,109,101,99,110,116,85,108,116,105,105,120,105,105,110,100,102,104,89,108,115,104,98,105,112,116,102,118,107,103,102,99,106,102,102,104,110,111,117,106,94,102,105,100,125,96,108,107,112,101,83,104,119,102,102,106,123,106,115,107,118,131,97,115,99,104,100,102,106,112,99,104,105,87,111,114,111,94,113,107,97,108,96,112,103,116,96,105,113,88,106,96,117,115,117,102,98,120,116,106,117,113,104,100,117,91,105,113,119,104,106,110,99,105,99,116,93,98,102,104,114,105,101,119,102,102,94,103,122,95,100,99,113,102,91,110,112,103,106,114,100,106,102,103,91,104,109,107,112,87,107,98,96,109,107,108,103,109,107,98,106,95,106,108,110,105,102,99,108,104,114,103,93,95,102,111,110,118,110,110,102,105,107,115,93,111,97,112,108,114,98,106,101,93,120,101,93,92,102,86,107,95,103,104,104,104,102,105,105,103,103,100,97,102,88,122,106,112,96,100,114,90,106,105,117,104,100,97,108,101,102,124,101,101,99,101,98,91,103,100,104,106,99,99,106,97,111,105,106,115,98,100,120,98,103,101,96,99,103,86,108,100,103,105,136,108,106,103,112,101,98,103,80,91,115,110,103,84,113,110,104,117,112,103,109,105,102,83,107,118,98,98,101,115,100,103,111,104,112,107,106,96,110,99,81,112,97,106,115,110,104,108,96,112,109,105,102,106,126,103,99,104,104,101,110,105,121,101,105,97,108,102,80,89,92,124,100,105,105,100,99,87,95,100,100,119,109,100,109,94,112,97,95,99,95,106,99,108,88,96,110,110,106,103,102,105,107,81,104,109,111,100,88,78,91,116,102,79,110,95,109,104,112,95,105,109,102,91,96,113,103,101,85,104,107,102,110,111,115,104,91,97,113,85,101,95,111,101,87,104,111,100,109,94,103,100, +545.62933,103,111,91,102,94,133,99,101,83,99,87,89,99,103,119,103,113,95,88,100,96,105,102,97,88,99,101,108,107,103,110,92,106,95,104,116,114,109,113,104,84,105,106,109,107,107,100,114,93,113,115,101,97,99,100,110,112,97,108,96,106,117,97,107,109,110,105,102,106,103,112,105,95,115,106,113,102,108,106,96,113,106,99,96,101,105,107,100,103,107,95,102,101,96,99,96,106,96,104,106,108,99,109,104,132,110,100,107,122,128,98,110,115,102,101,97,102,106,111,104,104,94,105,96,105,95,103,95,108,108,101,119,110,94,95,104,103,90,95,104,108,108,104,98,91,95,99,99,105,99,104,102,109,98,91,108,99,103,110,117,106,94,107,99,104,97,90,95,99,107,94,99,72,90,111,121,110,94,111,106,101,113,102,100,102,104,98,92,112,109,100,96,105,106,105,99,106,112,100,101,106,107,104,101,93,106,100,100,101,89,96,105,114,103,106,100,101,103,106,92,116,92,109,99,101,104,114,103,99,106,96,99,119,92,110,128,100,77,106,103,106,120,107,104,98,101,103,106,104,108,90,104,106,98,99,111,84,109,103,113,100,118,103,113,100,100,105,99,115,105,100,107,109,124,109,99,110,101,99,105,99,103,115,110,112,113,100,110,111,102,102,101,116,110,135,106,94,88,112,113,99,101,97,107,99,106,113,113,107,113,95,113,109,121,106,95,110,99,98,101,100,102,106,106,96,106,86,93,110,110,97,98,104,88,109,108,100,98,92,103,113,112,97,99,113,111,86,101,117,109,108,104,115,114,115,100,109,102,96,113,114,104,111,94,103,92,104,123,110,103,116,100,112,102,112,104,113,99,100,98,109,107,106,105,100,106,138,105,112,105,110,99,109,99,97,105,105,105,108,114,98,109,94,87,102,102,110,101,107,93,95,97,107,100,116,99,97,96,105,106,110,95,96,99,99,93,105,95,132,105,98,104,104,107,109,109,109,107,104,110,94,104,91,109,107,117,111,102,112,112,99,126,102,109,103,97,103,100,99,104,109,101,95,105,98,94,97,97,98,107,113,108,106,109,83,96,109,128,108,78,104,110,98,107,93,114,103,100,110,102,91,107,101,91,104,113,101,107,93,105,108,114,100,102,108,110,102,108,97,100,117,102,102,110,95,110,100,111,97,102,108,113,113,111,100,109,109,100,98,114,107,104,106,105,101,105,111,100,112,103,96,110,106,106,100,113,95,109,106,90,113,111,102,113,112,104,106,95,77,110,100,97,112,96,109,104,96,108,102,99,107,109,100,102,92,101,110,107,99,119,117,113,119,102,89,111,99,100,101,109,104,97,96,116,103,104,100,114,112,105,105,104,103,100,102,113,104,93,99,111,100,102,100,95,120,101,112,92,105,107,106,108,105,103,90,97,105,100,111,105,89,94,110,96,99,112,92,108,104,113,98,105,100,102,104,102,114,99,102,120,116,102,99,105,107,111,102,111,111,93,114,101,103,116,103,106,111,103,100,110,95,104,104,97,76,106,83,95,102,108,106,113,102,108,115,102,101,106,99,104,98,123,100,113,106,102,116,107,113,104,99,94,95,100,100,105,113,105,92,98,103,100,107,104,96,103,99,103,113,118,103,71,100,109,94,96,91,103,106,103,102,97,101,104,97,113,102,102,109,107,109,93,101,102,108,100,98,95,95,100,121,104,99,98,115,97,105,110,95,110,97,95,113,102,104,100,97,109,96,102,100,123,113,103,90,103,106,88,71,85,101,91,113,125,114,108,114,99,105,119,105,107,110,106,108,105,103,103,100,105,100,108,102,104,111,108,112,108,104,94,120,108,101,100,116,87,108,118,107,103,100,109,105,102,104,108,100,103,111,99,106,103,114,109,112,104,93,117,100,104,99,111,104,97,108,112,105,105,100,106,99,114,112,101,99,81,109,101,109,107,111,114,122,109,94,109,114,110,114,112,102,94,103,100,109,94,103,118,111,106,101,120,111,105,120,93,120,100,114,92,108,121,95,121,114,116,104,115,94,98,102,109,112,97,103,96,98,113,101,101,108,99,104,98,74,116,104,104,105,103,109,104,116,103,112,100,99,95,97,94,104,108,114,121,86,97,110,94,102,103,113,103,105,92,103,112,92,94,113,108,106,114,101,105,119,106,99,107,93,120,99,112,102,107,108,112,101,104,87,112,100,107,106,100,87,101,99,106,112,119,102,108,92,109,97,102,109,91,102,107,95,114,61,90,100,106,122,108,110,109,112,112,98,109,108,103,103,112,111,95,94,100,111,106,92,123,100,104,108,105,103,109,125,93,110,101,81,102,119,105,93,96,100,115,112,93,102,100,96,104,98,100,111,107,108,109,94,126,99,111,116,105,117,104,120,84,119,94,96,105,105,112,104,108,101,107,103,94,99,104,94,108,110,108,105,104,97,107,90,102,111,96,106,113,108,118,105,104,105,109,99,106,92,98,130,109,102,91,109,103,104,97,109,95,100,105,112,99,105,108,102,88,112,101,109,97,109,95,101,117,122,107,104,105,102,115,104,116,111,113,108,103,106,105,98,101,112,110,114,106,90,106,105,103,103,102,106,121,108,116,109,100,121,100,116,94,114,109,111,104,114,92,121,106,113,109,106,109,107,88,103,120,108,107,100,105,103,94,110,105,106,100,89,82,114,109,113,107,111,101,93,105,104,106,109,110,100,105,95,95,117,111,107,104,85,115,111,105,105,107,93,109,100,88,104,104,102,110,102,103,109,110,113,106,105,107,101,99,104,109,93,119,100,108,102,103,106,112,97,103,111,100,105,91,104,104,100,113,104,102,96,95,114,107,87,107,114,109,106,110,98,113,108,98,115,102,110,108,105,94,102,105,99,108,117,94,109,102,110,111,94,107,107,104,98,103,107,106,107,104,108,110,98,109,99,112,96,106,98,110,109,123,82,108,111,108,95,108,104,116,117,98,102,101,103,109,113,103,107,103,112,100,108,103,114,105,104,104,106,109,90,104,102,108,123,108,108,101,93,105,98,106,106,105,99,107,113,99,89,99,102,103,114,102,105,99,113,109,103,103,124,104,91,102,108,108,115,101,103,106,92,99,103,123,116,102,96,102,115,107,100,95,114,85,109,102,99,112,105,108,99,99,117,109,102,116,109,100,112,99,109,106,107,115,107,117,107,106,101,107,111,108,106,97,100,96,92,111,111,103,93,100,99,93,103,100,104,102,110,101,108,108,105,122,110,109,99,105,94,107,101,103,114,102,106,98,111,105,118,106,116,102,111,104,100,98,109,100,111,100,101,122,107,99,98,104,91,100,109,113,100,107,97,104,103,98,108,113,94,102,110,105,115,83,106,102,100,113,103,102,96,79,108,116,102,112,95,111,104,111,87,113,90,112,96,96,103,101,95,101,87,120,97,99,106,104,95,114,111,100,102,99,98,104,95,102,102,110,102,100,97,109,108,100,101,102,99,104,115,97,106,107,93,115,98,106,106,107,104,107,107,105,101,119,95,96,113,109,98,116,98,112,123,120,107,109,112,116,114,110,104,105,104,110,98,97,102,115,108,111,104,112,96,103,113,113,98,102,97,107,105,107,107,122,113,90,102,109,84,105,107,97,94,82,84,120,109,111,115,94,107,109,116,103,102,99,87,106,100,103,108,114,100,108,101,96,107,98,110,106,107,97,99,112,100,101,94,108,116,93,99,104,111,118,106,92,107,102,108,108,103,86,103,107,98,103,98,99,106,100,98,108,100,110,112,123,112,95,114,100,104,96,101,113,110,88,107,107,88,113,111,103,106,87,106,113,103,100,104,113,98,102,110,112,108,112,103,101,101,105,111,106,113,112,102,118,111,113,99,100,116,93,97,99,99,102,112,101,93,80,100,104,113,99,101,108,106,104,93,107,102,105,104,104,87,113,112,100,110,101,99,105,107,103,106,108,101,99,99,113,107,85,92,85,101,104,99,96,101,97,107,99,104,100,99,100,110,102,105,101,118,105,97,111,108,99,107,100,120,104,102,101,97,102,113,99,112,114,113,113,105,96,111,95,95,112,110,93,111,133,99,97,106,90,109,100,96,103,103,115,109,106,102,96,98,121,106,113,104,103,89,102,86,103,89,101,107,104,119,95,104,101,99,94,104,105,107,101,107,108,85,106,99,101,123,108,105,112,103,114,110,106,123,111,106,113,107,100,108,109,96,106,98,87,100,119,106,103,102,113,108,103,115,108,99,95,108,109,101,107,99,104,106,102,69,113,105,98,85,101,94,96,124,133,113,101,93,109,110,106,114,103,107,106,102,98,103,107,107,98,113,93,106,94,110,96,105,105,107,105,110,100,100,98,102,112,111,99,101,104,99,113,101,103,105,106,108,105,112,98,101,87,96,101,112,98,109,90,105,101,112,112,96,96,103,94,106,96,93,107,104,90,101,115,98,92,100,116,107,101,107,87,111,102,110,109,107,115,107,102,84,107,100,116,103,100,103,109,113,102,99,97,104,106,102,96,105,109,116,112,113,109,97,100,107,95,97,100,93,87,101,95,109,105,114,103,99,101,109,102,80,90,108,110,107,96,100,106,98,104,98,121,106,103,85,108,108,102,112,109,107,97,99,108,111,108,109,109,107,100,106,94,91,102,102,112,104,96,104,96,94,100,110,104,79,107,105,112,102,87,103,120,110,96,104,117,109,116,104,102,95,112,97,95,99,104,102,93,91,113,102,117,116,104,109,101,104,107,109,100,92,105,96,101,106,112,109,108,138,107,117,99,102,101,102,98,106,99,100,111,102,108,109,95,102,112,105,100,100,113,98,136,87,93,122,102,95,95,115,101,101,85,115,103,106,107,106,100,97,86,102,106,104,101,112,110,91,111,105,103, +545.77014,128,108,101,109,86,110,108,74,111,96,99,99,95,104,91,118,88,109,96,116,107,119,105,109,123,107,104,99,97,83,106,99,96,103,109,102,92,108,105,78,109,98,117,104,107,97,115,105,116,115,103,91,103,105,104,90,94,101,105,99,102,101,107,108,102,98,120,108,105,106,112,113,107,101,108,108,112,117,113,106,95,101,96,103,99,100,110,102,101,92,99,118,115,98,100,102,103,91,107,113,102,93,102,101,80,115,91,100,107,108,87,100,112,95,91,112,103,110,117,98,105,100,105,116,105,114,115,91,110,100,119,92,96,101,104,108,114,107,113,109,111,110,94,111,110,92,116,109,97,96,100,111,109,87,106,96,111,88,101,105,105,102,106,104,110,104,112,103,111,101,101,113,111,93,112,100,116,95,107,106,95,100,113,103,98,111,98,96,100,92,106,109,94,97,102,98,103,101,113,104,106,102,105,84,111,100,95,111,104,113,90,101,132,104,110,102,106,106,114,98,105,95,103,90,98,121,92,118,107,106,106,97,99,104,110,115,109,110,105,103,102,104,112,105,101,109,100,99,97,99,106,99,107,93,98,89,96,105,93,102,99,108,108,102,87,100,107,102,97,101,100,109,111,101,114,116,109,104,103,101,108,85,107,106,106,113,104,99,97,113,108,98,105,101,102,111,97,103,103,112,108,98,109,107,96,99,83,114,118,105,100,115,103,99,94,92,110,104,113,116,106,100,111,102,106,103,104,104,98,106,107,103,108,112,103,105,116,91,104,105,95,105,111,97,91,104,113,118,112,102,100,100,109,110,103,94,113,76,100,113,96,95,100,93,109,102,105,117,104,111,99,99,108,109,98,100,108,114,114,110,115,104,102,112,98,92,93,103,88,105,112,104,112,108,109,107,99,100,107,127,106,111,101,95,95,100,95,105,112,105,110,108,106,99,106,109,101,113,113,111,100,118,94,122,100,102,103,104,91,109,109,102,104,100,113,105,106,118,94,113,113,106,104,109,92,101,88,90,103,105,100,112,98,102,110,102,107,109,101,99,102,100,108,106,108,98,110,106,100,121,100,109,105,101,103,110,103,101,103,109,105,103,114,114,110,97,120,109,110,108,103,100,100,92,102,107,83,105,95,96,111,105,105,109,106,109,114,100,110,100,107,104,113,108,99,103,117,99,98,96,103,104,90,106,107,98,106,109,123,100,91,122,106,107,94,102,102,106,97,120,95,101,95,106,106,97,107,101,99,107,109,107,95,108,111,97,105,104,110,99,110,105,105,81,99,105,104,105,100,103,109,96,101,112,98,110,112,103,106,113,103,105,101,118,104,99,104,120,98,101,113,105,101,100,118,110,83,92,101,94,102,110,106,105,102,99,105,113,99,110,93,108,107,103,102,91,83,104,112,103,110,109,100,101,112,107,101,112,100,103,110,102,100,103,104,106,106,97,109,102,105,92,108,112,99,103,104,107,109,108,109,105,97,114,102,110,91,103,113,111,107,107,110,90,113,115,100,108,102,116,115,118,110,114,108,102,112,104,107,100,111,90,109,105,104,111,101,95,105,109,113,84,98,111,115,102,114,119,104,102,113,102,106,104,100,109,107,109,109,104,118,107,104,99,103,104,106,98,110,102,107,91,106,113,96,106,109,110,115,110,103,107,95,90,94,99,113,99,112,103,100,106,96,103,114,101,113,112,111,102,118,92,109,99,129,113,114,96,112,98,102,109,96,111,98,114,94,107,103,98,124,97,109,83,108,107,102,113,106,87,104,107,123,105,94,98,93,99,111,111,107,108,107,120,101,109,97,114,108,87,104,116,91,103,106,105,103,103,99,113,114,109,97,106,94,118,112,112,116,114,99,102,97,109,97,114,98,102,103,111,104,106,119,106,102,103,108,105,109,94,97,102,112,93,109,94,96,104,109,95,104,104,106,110,119,101,101,103,110,101,127,100,109,99,112,104,95,100,102,110,106,113,102,116,108,124,102,106,126,107,103,113,103,108,104,105,103,118,104,106,80,113,113,110,102,99,96,102,102,104,109,109,107,106,110,113,106,110,101,108,106,98,110,101,99,97,105,107,95,104,102,115,112,98,108,111,106,98,92,100,101,118,104,106,101,102,105,89,110,99,97,115,110,98,108,106,104,90,118,114,106,98,106,108,113,103,105,96,113,104,104,96,91,125,95,112,98,99,140,106,92,109,99,100,96,102,98,102,96,110,105,107,106,92,91,110,99,100,97,106,111,103,108,99,105,105,107,114,103,108,107,104,111,103,110,80,108,109,84,106,98,108,106,108,106,127,103,113,100,99,101,116,100,100,110,95,105,101,105,103,106,96,102,91,109,103,100,106,118,114,103,112,95,123,113,115,104,115,108,113,124,126,106,110,93,101,100,114,101,104,106,93,117,106,79,100,117,108,104,97,105,99,107,103,110,108,106,91,98,90,120,114,108,104,103,112,108,109,107,85,113,98,99,97,102,112,109,112,120,110,100,102,107,114,113,103,108,116,96,105,105,111,105,116,107,92,104,102,98,117,114,98,83,105,102,96,103,100,98,106,103,108,99,109,102,97,110,113,100,99,97,106,95,110,102,111,107,98,111,110,118,105,96,110,101,120,113,87,109,105,82,100,109,106,98,104,109,109,100,111,106,101,110,107,106,113,105,128,116,93,102,111,97,123,100,104,113,108,99,112,108,110,103,108,107,107,106,95,95,108,124,98,108,107,109,121,111,91,107,106,102,112,98,108,112,108,108,116,103,100,104,112,93,87,112,103,102,110,104,110,109,112,108,109,107,108,105,112,105,100,114,99,117,103,115,113,112,117,120,100,105,107,117,90,97,107,99,103,96,95,114,103,113,113,107,107,112,110,124,107,102,108,107,103,103,111,99,100,113,113,108,102,110,106,102,104,134,107,109,111,94,109,114,96,118,106,103,100,86,105,119,95,107,102,116,110,106,102,97,97,94,108,107,105,125,114,92,105,105,107,123,112,113,111,112,103,111,109,108,104,109,106,105,102,102,112,111,116,96,110,92,108,98,96,111,114,106,105,106,112,103,103,102,99,98,102,104,114,111,117,103,104,94,104,117,98,119,109,93,117,91,108,102,112,104,96,104,110,108,100,104,102,104,123,104,97,97,103,97,107,106,110,116,122,118,115,116,107,127,112,113,115,97,97,114,110,110,116,109,100,104,109,104,83,120,97,110,102,107,113,106,117,102,103,116,97,117,114,113,100,97,99,119,111,112,108,92,101,110,104,109,109,121,102,102,106,112,107,120,105,101,91,104,100,109,106,100,140,100,98,109,104,98,112,115,118,101,103,108,117,103,113,111,109,110,107,97,116,111,115,107,103,92,98,99,99,108,100,100,107,102,105,100,73,106,112,109,107,113,110,104,105,109,102,106,106,111,104,107,108,97,93,103,107,117,110,98,94,110,107,103,104,108,107,99,89,113,98,112,99,103,114,106,109,113,96,114,105,112,116,115,106,108,119,112,107,99,122,100,100,108,109,124,95,106,111,110,122,98,106,113,109,112,109,83,117,117,116,107,113,98,117,102,111,130,106,97,87,111,99,105,100,110,83,113,104,113,113,100,102,116,109,104,103,106,100,100,113,109,114,106,107,113,109,100,110,101,101,103,106,102,111,104,105,100,99,103,107,109,103,109,106,104,78,101,111,108,113,99,100,116,87,112,117,113,112,110,92,108,105,109,95,109,91,109,111,110,110,109,99,108,114,113,98,103,102,99,106,123,114,117,104,104,103,98,101,114,105,109,101,90,128,110,119,110,100,108,106,101,106,107,99,113,107,108,104,109,102,99,111,101,111,99,112,99,113,106,97,106,112,94,104,106,107,110,112,101,101,108,108,100,112,107,106,107,104,111,102,108,106,108,109,104,106,112,105,119,107,113,94,104,104,113,106,109,102,111,106,110,98,108,108,100,94,108,116,119,104,100,114,106,117,99,104,108,102,105,97,100,109,101,130,100,114,124,103,103,101,102,106,110,103,92,108,110,109,96,98,110,106,110,100,108,114,105,101,101,109,109,110,102,109,106,99,103,106,106,110,114,98,110,114,105,113,111,114,104,108,103,109,113,99,86,103,112,113,111,115,109,111,113,101,100,105,108,109,102,135,112,111,116,104,109,105,98,117,105,98,101,98,106,115,110,111,112,100,106,95,109,110,120,109,101,110,111,106,112,104,130,107,110,103,106,103,103,123,116,106,102,97,83,108,108,87,105,104,102,107,99,95,121,100,121,104,102,106,109,124,107,105,101,101,111,99,108,101,125,101,116,107,107,116,111,118,106,107,109,106,103,107,109,100,118,110,102,104,107,96,109,110,98,104,118,102,90,116,112,102,96,108,112,102,106,107,105,106,100,103,107,97,91,83,107,113,90,112,99,98,110,95,106,81,108,96,103,95,103,106,97,100,107,111,102,103,110,124,106,100,109,91,106,99,114,107,110,99,112,97,101,93,102,99,112,109,107,117,100,108,105,85,104,93,102,105,102,113,103,106,109,109,106,103,112,106,109,109,104,97,104,99,102,104,103,108,122,115,112,99,89,107,93,100,105,103,102,113,103,108,104,97,102,107,108,96,114,107,88,105,102,99,116,102,102,96,110,105,111,107,110,104,92,110,105,111,99,110,82,118,85,101,109,114,112,108,99,99,106,109,107,97,109,113,115,104,109,98,103,92,109,100,102,104,105,98,101,110,97,91,109,110,109,95,116,121,83,108,108,107,107,106,104,98,108,124,115,115,107,136,97,100,108,107,107,113,109,105,105,92,114,110,110,102,103,111,112,110,91,103,93,109,114,115,98,104,101,108,113,99,112,90,111,101,94,102,112,103,100,103,92,100,104,123,95,99,105,125,92,101,119,97, +545.91095,112,95,108,97,96,104,105,109,109,93,99,109,106,113,107,104,104,109,113,113,87,113,112,96,103,108,91,103,98,101,109,99,100,101,109,111,115,97,105,102,102,109,101,100,118,98,106,116,109,102,98,99,110,121,113,108,90,109,71,113,100,106,108,111,113,119,109,105,103,95,108,126,104,104,107,125,102,117,106,116,100,110,104,110,99,96,110,100,99,112,87,102,79,105,99,96,103,95,109,108,100,96,98,106,103,101,111,89,104,86,115,102,105,102,94,131,103,104,121,107,105,95,112,109,111,112,109,95,112,115,107,104,95,104,121,112,94,112,97,101,97,106,121,95,108,100,109,102,100,102,112,109,105,101,103,106,110,93,103,112,99,104,109,106,119,92,101,97,101,100,97,108,104,114,99,109,98,101,109,99,72,119,110,104,92,100,101,92,105,106,103,102,100,102,110,108,61,103,104,106,106,108,99,89,94,114,117,108,110,93,93,105,114,91,108,87,101,97,97,102,101,117,107,106,99,108,108,112,113,109,99,116,109,112,100,103,105,112,94,106,109,104,93,101,94,128,110,114,110,107,102,109,109,105,98,96,97,104,103,106,101,103,122,104,97,116,103,102,108,104,99,103,111,100,105,97,97,108,122,112,99,108,105,106,103,117,96,112,103,103,89,104,109,100,105,113,99,102,112,86,102,113,108,110,98,104,105,106,101,108,105,119,114,96,108,94,91,102,109,101,96,94,105,109,114,98,105,126,108,103,101,101,105,102,109,114,113,105,105,104,105,106,106,95,97,105,97,93,117,95,107,110,104,101,106,110,101,112,108,91,105,100,102,103,100,100,94,101,99,116,96,102,104,106,96,109,92,102,106,104,109,108,99,115,98,106,95,95,110,102,103,109,113,107,96,100,106,100,83,104,97,106,106,91,74,99,101,106,105,98,103,99,98,104,98,105,102,112,97,105,90,105,100,110,102,113,97,112,106,108,100,108,101,101,84,107,100,97,112,106,93,111,96,115,98,115,107,99,99,106,101,106,101,109,109,87,102,105,109,102,109,98,98,109,107,106,108,105,106,105,101,104,108,107,96,103,119,100,117,103,91,101,129,109,111,104,122,107,99,112,113,106,101,112,99,112,97,101,107,108,111,111,111,100,105,103,99,105,114,110,89,105,99,117,104,110,86,98,103,95,101,102,108,108,114,116,109,102,110,109,102,98,122,101,106,114,110,90,99,118,108,107,122,112,104,108,104,114,113,109,107,102,104,104,115,109,104,113,97,113,96,109,114,101,94,104,111,108,108,106,102,100,104,113,110,103,95,101,96,110,113,109,107,112,105,118,110,121,102,103,98,103,96,104,107,89,108,116,95,112,98,112,110,107,103,103,110,105,102,103,111,103,108,95,99,103,118,96,93,108,102,105,110,105,110,117,103,108,108,107,99,103,115,104,105,114,84,104,116,103,116,104,100,102,94,101,104,105,109,99,99,102,106,114,100,111,116,106,100,103,107,132,106,110,93,103,109,97,118,125,93,97,111,102,93,100,107,109,104,113,103,103,80,111,104,100,95,103,104,99,105,112,83,99,109,112,110,103,97,104,94,102,111,109,110,118,106,113,110,111,99,108,117,108,104,102,117,107,96,108,96,104,122,116,83,93,110,102,106,98,104,102,114,100,113,106,100,100,105,104,94,80,102,108,112,97,94,104,99,107,110,107,103,96,106,116,113,100,109,98,104,111,100,95,101,93,95,98,109,104,109,95,106,112,96,109,110,88,105,97,103,102,115,101,94,105,104,121,105,124,99,112,96,109,102,111,113,114,109,109,102,105,113,111,103,103,99,116,100,116,108,112,111,98,103,106,107,116,110,100,92,107,103,108,97,118,116,103,113,97,120,100,110,130,111,115,107,113,110,99,101,114,104,99,114,95,123,102,123,117,96,104,108,109,110,102,103,100,98,107,111,112,99,113,106,97,111,95,126,96,79,113,114,105,107,109,108,104,108,90,106,112,104,105,98,97,99,110,90,103,101,119,117,114,119,100,103,103,114,95,108,110,99,115,101,107,98,99,102,114,140,106,124,100,104,66,106,117,95,131,100,93,105,118,117,104,99,111,114,101,103,107,98,102,90,111,102,105,104,107,112,104,108,115,104,102,119,112,96,114,92,110,128,104,113,110,110,95,107,100,120,107,86,93,102,107,94,97,109,107,95,94,108,101,84,105,106,97,77,97,123,120,98,106,106,95,114,113,93,98,105,116,95,111,108,100,102,101,107,96,103,105,108,87,108,101,90,110,93,114,100,104,106,112,109,110,124,101,111,104,107,104,108,128,92,110,95,96,103,105,105,98,117,99,105,90,91,113,108,98,102,94,101,97,101,134,114,112,119,110,111,110,116,111,94,100,122,108,101,97,111,96,111,113,104,77,104,101,101,101,111,105,104,107,96,104,114,106,98,111,109,103,108,113,102,99,100,98,102,124,107,117,98,85,103,103,117,106,100,86,110,87,109,93,86,97,106,97,108,90,86,111,97,112,106,120,116,103,103,111,107,88,98,109,102,116,100,104,92,84,99,110,105,100,99,102,108,105,90,94,100,100,106,117,92,113,104,105,110,98,105,96,111,101,76,112,94,114,108,105,111,97,80,102,100,118,97,94,106,109,104,110,108,102,110,103,103,107,107,92,109,100,108,102,102,116,83,107,121,105,97,106,99,124,111,123,105,108,102,99,100,110,104,98,108,94,104,120,96,102,96,107,106,104,92,92,108,104,106,91,100,100,107,102,114,113,99,102,103,105,101,123,101,108,105,107,105,108,86,94,106,96,108,102,104,91,114,102,100,100,107,103,116,94,102,111,105,114,128,128,107,101,110,115,106,92,112,103,101,111,109,97,110,114,116,101,115,103,103,93,100,104,95,105,107,97,103,112,98,102,113,108,104,95,109,105,118,103,102,111,105,103,102,103,97,104,117,113,98,89,102,96,113,112,109,104,117,120,107,98,124,111,99,102,107,110,107,101,124,118,106,108,103,104,111,112,102,106,106,106,105,107,96,93,111,110,122,99,100,103,97,120,96,96,96,99,101,116,85,96,103,113,98,101,106,105,124,119,106,116,110,110,99,124,91,108,105,117,100,97,111,105,106,104,104,96,96,105,91,115,100,113,102,97,99,108,84,116,102,110,91,102,120,118,92,110,113,102,106,98,95,92,95,103,102,103,92,110,111,104,99,100,101,97,109,111,103,109,107,107,106,107,113,104,115,89,100,106,102,103,106,109,118,96,103,103,109,99,116,116,106,101,106,109,108,106,102,101,103,108,103,113,103,123,94,106,102,91,102,114,88,110,82,112,113,104,106,115,103,108,110,101,103,103,91,107,113,99,104,92,98,115,111,99,112,106,95,107,103,100,108,106,107,105,108,103,104,106,91,109,102,91,104,96,112,104,115,106,99,101,105,100,110,95,92,102,99,116,101,110,107,101,103,96,112,111,107,110,110,108,95,121,102,112,98,107,94,105,89,85,94,98,103,97,119,111,110,106,95,104,107,103,115,97,107,111,90,112,101,118,108,107,110,104,104,107,85,100,97,105,108,102,98,105,109,113,96,99,99,92,113,103,112,104,99,104,113,114,121,113,104,101,108,103,112,105,98,105,106,106,99,96,104,110,94,104,95,109,107,102,95,104,116,103,89,103,103,118,97,106,89,101,108,101,106,96,99,77,112,111,101,112,111,103,112,110,98,95,106,104,103,103,100,92,100,102,100,102,98,100,114,104,110,103,117,102,97,112,110,101,91,109,100,110,106,102,106,99,108,103,119,92,109,105,102,109,120,119,101,106,80,110,93,102,90,113,104,102,104,102,100,102,104,100,99,94,106,104,95,98,112,100,113,105,120,99,103,106,105,105,103,106,96,96,113,100,113,92,123,119,111,90,115,99,110,103,108,104,109,103,106,110,104,110,93,104,94,104,105,110,98,115,105,99,99,91,108,109,102,99,110,111,102,110,106,96,105,105,105,102,102,112,108,109,93,108,107,98,109,114,110,94,106,113,101,120,105,107,109,100,109,98,100,98,103,104,108,105,99,106,104,98,97,102,102,103,104,99,115,109,101,96,98,104,107,106,106,100,100,108,113,93,108,101,100,107,93,106,108,109,106,101,104,105,112,95,110,90,107,100,100,112,105,114,106,109,101,114,104,99,113,101,105,105,100,104,97,95,92,106,101,101,91,106,104,111,114,112,106,108,102,104,109,105,95,103,102,99,98,110,116,104,112,111,100,101,97,98,101,103,102,106,91,102,95,115,107,99,106,101,99,103,116,107,98,100,105,109,91,104,100,106,92,102,103,115,104,104,109,102,103,111,102,102,102,110,110,110,96,108,115,117,109,116,107,132,96,111,106,98,96,98,95,100,95,91,101,102,112,101,98,130,101,102,103,94,103,98,104,117,93,92,107,97,106,100,104,105,110,103,112,113,106,109,108,117,89,109,113,99,99,127,107,103,106,113,105,107,95,95,99,100,109,110,108,98,102,106,101,100,111,98,112,99,106,103,103,102,106,103,95,107,110,97,112,78,102,101,101,97,101,109,100,100,128,105,104,105,107,103,102,107,94,81,101,102,108,108,103,105,120,99,90,104,108,105,109,99,95,104,88,94,111,113,113,101,106,90,95,103,108,101,106,104,106,107,111,94,93,97,106,106,121,103,99,87,98,105,112,95,99,103,97,95,108,97,98,94,100,110,102,104,102,98,104,89,104,98,100,96,108,128,103,104,105,104,99,92,103,97,106,94,120,97,102,103,103,105,105,99,105,93,103,108,116,113,101,105,89,112,105,107,112,99,97,113,107,101,124,102,103,97,121,89,112,97,106,112,108,114,73,103,104,119,104,97,111,109,101,95, +546.05176,99,103,100,104,110,108,102,102,106,108,95,111,109,105,103,96,104,109,114,113,106,99,84,103,112,96,110,107,88,105,108,106,116,102,94,91,113,102,106,104,96,103,105,105,105,116,106,107,98,98,105,116,105,102,98,101,94,94,119,92,106,119,115,97,70,109,105,100,99,91,105,111,99,116,104,105,96,105,103,107,99,117,113,105,107,86,119,106,98,114,113,103,100,109,101,109,104,103,114,116,111,103,101,103,103,107,99,104,102,108,113,104,114,98,112,106,99,102,85,99,104,111,106,107,99,105,114,92,103,132,104,99,102,112,86,99,108,121,107,112,108,96,101,104,106,110,98,96,100,101,99,107,115,112,102,94,104,105,108,103,97,109,105,106,100,106,98,111,87,102,92,99,94,100,91,104,111,101,118,102,103,93,102,103,106,111,97,86,109,95,100,105,109,110,105,114,86,68,103,104,105,108,108,99,105,99,113,113,103,105,107,114,117,98,113,110,95,101,107,102,88,108,119,91,97,105,108,86,118,103,101,99,113,111,99,102,111,99,108,107,115,106,104,117,98,99,105,134,105,101,116,105,98,98,117,111,98,96,109,114,92,106,109,107,100,100,112,104,97,91,108,99,102,94,111,107,109,121,103,106,99,106,97,108,129,110,90,102,96,97,103,109,113,106,122,110,99,104,118,104,105,108,104,118,99,104,106,100,105,103,106,113,84,105,99,104,106,128,103,98,91,104,103,104,106,111,103,97,119,114,102,122,100,111,97,109,110,111,103,135,112,98,108,103,113,108,121,102,109,100,99,99,104,110,116,103,110,107,111,107,99,96,108,97,103,109,105,113,91,110,97,101,104,110,109,93,103,106,116,111,115,107,90,95,105,100,95,113,112,100,99,98,76,114,102,90,101,106,107,103,104,103,106,101,100,109,103,110,110,106,111,103,111,109,87,98,108,103,109,97,114,102,110,94,102,90,98,91,106,113,99,101,109,104,110,105,101,113,114,113,113,100,110,82,105,108,107,104,126,112,107,112,112,109,109,111,97,106,109,103,124,102,105,96,129,103,108,99,110,107,115,100,99,106,102,105,102,121,108,104,110,112,116,97,97,89,137,111,103,94,115,100,114,103,106,107,106,111,113,107,111,100,118,99,104,90,88,103,107,98,109,105,111,95,102,121,121,88,86,105,107,95,113,98,111,111,118,112,112,108,102,104,113,98,108,104,96,97,108,108,96,104,104,111,110,107,106,105,105,98,112,106,92,107,91,111,103,110,100,98,101,106,105,120,95,110,107,114,100,102,114,116,118,102,111,105,111,87,116,108,112,106,113,100,113,102,109,110,109,106,115,102,104,101,111,105,111,116,111,110,103,94,102,110,107,96,97,97,111,114,100,115,100,103,117,102,112,95,112,104,110,110,81,103,112,99,107,107,103,107,101,103,101,105,116,102,104,105,99,120,115,113,109,113,104,90,98,99,106,108,129,94,107,129,114,105,101,110,101,102,108,106,119,100,94,94,101,106,110,117,126,108,107,102,97,107,123,106,106,100,94,114,109,74,104,102,108,106,107,109,113,104,116,110,91,115,106,106,124,107,99,104,106,106,112,92,100,107,95,103,110,113,108,110,129,103,105,111,102,102,109,107,109,99,104,96,107,110,95,111,121,110,105,108,106,105,109,99,113,108,108,105,118,105,107,104,107,108,101,109,102,103,111,99,108,95,102,100,113,99,113,108,122,93,100,109,105,107,95,102,115,109,110,95,106,91,100,89,95,108,117,108,110,115,98,103,101,104,103,120,122,119,122,107,108,102,96,98,103,117,120,109,99,103,109,112,105,106,93,91,116,105,110,102,103,106,118,117,113,107,91,105,100,112,108,125,100,94,108,111,103,106,107,110,111,112,105,115,108,107,102,116,112,95,99,107,109,105,120,108,112,102,91,103,95,86,109,99,114,104,118,99,91,100,111,94,105,105,107,110,107,110,105,103,112,96,103,98,107,111,118,117,103,117,108,101,98,116,111,104,105,103,140,109,107,109,113,108,108,101,108,102,114,109,109,106,105,95,106,109,107,106,122,89,111,97,106,112,95,106,95,104,109,121,107,106,113,105,110,110,115,103,108,109,83,111,105,109,105,107,102,115,100,111,106,94,103,101,107,96,108,90,89,108,110,108,102,108,96,102,105,108,118,115,102,114,105,124,87,104,107,97,103,106,113,102,108,93,107,96,102,111,105,106,108,106,116,100,117,105,112,121,101,97,117,111,112,116,104,112,87,101,98,85,116,110,108,105,95,113,106,102,107,96,116,107,106,103,107,116,91,103,115,107,95,99,107,107,102,101,103,110,102,102,114,92,106,120,107,93,97,114,113,115,114,116,115,101,113,106,120,97,110,97,105,114,92,101,118,99,100,107,118,102,105,104,110,102,102,117,102,121,105,103,111,108,101,103,99,93,116,102,111,109,102,97,113,90,110,119,111,112,103,106,92,103,104,113,106,97,106,100,97,100,102,108,108,108,104,106,100,110,106,105,109,102,104,100,95,98,104,109,120,116,124,106,106,104,102,97,84,103,116,104,99,107,103,98,93,104,109,107,107,103,125,102,100,108,103,104,112,102,100,109,100,108,107,110,107,104,110,83,112,98,100,100,106,95,108,104,107,110,106,104,114,94,125,96,110,109,106,101,99,108,124,106,110,104,102,99,106,108,100,118,94,108,100,107,108,96,106,124,99,102,103,116,118,116,101,107,98,89,101,76,101,106,105,119,108,102,117,113,94,100,112,105,109,112,98,93,102,91,102,121,104,94,105,117,101,105,117,108,111,95,100,105,111,107,91,109,105,102,98,117,114,113,106,117,100,110,105,102,125,110,119,99,104,107,102,108,103,89,121,115,110,98,99,113,103,95,114,124,109,113,81,112,101,103,121,102,103,111,110,94,98,107,107,106,101,114,83,103,98,101,102,101,106,111,101,101,93,99,96,95,98,106,83,111,97,115,103,102,100,99,107,107,103,103,118,96,104,98,97,121,111,101,109,103,92,106,104,111,124,112,114,107,113,111,116,105,92,106,106,106,95,87,106,109,107,107,107,111,105,103,96,95,108,115,106,106,102,98,111,104,115,98,94,121,104,100,102,108,117,111,91,112,107,93,107,102,96,104,108,105,88,117,107,108,103,107,104,107,105,103,96,112,116,106,94,100,110,113,99,102,109,98,112,112,112,112,113,104,99,98,98,109,107,100,111,107,116,112,100,121,96,106,98,117,100,113,103,96,112,113,92,110,116,103,106,112,108,100,98,105,110,111,107,113,99,101,113,114,103,109,109,112,101,102,108,105,102,98,103,103,106,105,108,109,107,107,119,95,105,102,88,100,99,100,95,102,107,113,100,111,115,108,107,106,106,102,96,110,109,110,107,100,94,95,120,88,110,109,92,102,107,102,106,115,105,106,103,103,104,108,108,114,96,106,90,92,107,107,113,105,107,104,106,113,99,131,121,95,98,117,114,115,104,98,77,80,108,100,107,120,113,101,95,100,106,107,102,103,107,97,112,105,97,110,102,111,117,101,107,101,103,99,111,119,98,103,95,115,98,110,109,109,95,99,118,103,86,105,105,111,113,84,116,106,104,95,94,103,115,99,118,94,112,108,106,107,100,98,107,114,108,95,108,107,115,99,107,122,102,101,89,102,98,117,108,95,105,117,109,116,104,106,107,117,112,106,97,112,91,102,118,99,102,101,105,112,113,109,106,111,107,96,109,103,102,120,102,109,117,97,110,105,106,98,111,119,106,96,94,113,110,109,104,119,113,99,109,115,125,104,99,102,95,87,98,104,89,114,109,107,100,102,108,105,109,102,113,106,107,108,113,112,112,99,97,93,104,83,108,104,112,107,117,100,105,122,111,102,115,117,105,104,108,100,96,94,96,106,108,99,101,95,101,106,101,99,98,123,108,111,105,107,104,111,93,106,100,98,100,104,107,109,97,108,108,106,104,113,95,90,109,102,110,94,106,107,101,109,103,107,105,98,119,106,105,104,107,112,104,101,104,119,104,115,115,112,116,95,109,103,98,99,91,112,112,91,105,100,94,96,111,115,100,118,104,110,126,102,110,98,103,100,109,100,108,112,99,107,109,105,104,100,106,110,113,86,103,110,109,100,102,125,108,86,106,104,116,121,111,97,104,110,104,91,122,117,111,97,108,104,108,96,96,101,97,117,102,94,98,100,104,114,106,100,96,97,109,95,102,105,101,107,95,115,117,116,96,101,109,101,105,112,104,99,104,113,112,110,114,112,78,112,111,102,110,108,109,104,106,110,110,113,107,110,101,103,98,104,99,104,117,101,101,103,102,109,103,113,106,110,102,111,116,101,112,113,109,110,105,116,85,114,110,97,113,106,97,96,110,104,96,98,97,91,106,102,104,101,102,95,100,106,90,95,112,102,102,107,99,104,104,93,112,109,103,102,99,94,100,106,110,105,93,112,101,105,101,101,105,101,106,115,95,117,108,76,88,105,102,101,117,98,103,96,83,100,108,114,107,92,106,106,91,93,115,105,93,95,109,104,96,100,112,105,87,108,103,102,100,108,112,105,91,97,100,95,120,106,99,93,97,113,105,105,103,102,107,127,107,109,102,108,105,107,114,107,112,104,107,104,113,97,107,112,115,102,108,99,103,105,98,107,97,98,96,95,98,107,99,92,104,104,112,81,102,99,98,100,101,99,95,112,100,106,102,99,109,108,105,109,95,108,82,102,106,103,106,104,107,107,112,110,103,104,94,98,115,106,110,82,99,98,106,100,92,88,97,99,84,99,106,113,112,87,95,108,95,97,98,98,97,101,106,104,116,100,121,99,103,109,105,109,102,80,108,95,112,100,106,94,105,72,96,94,107,109, +546.19263,117,117,109,84,111,107,112,133,105,97,75,103,117,112,113,111,73,96,109,101,103,100,101,90,96,113,107,100,82,95,109,107,95,107,109,100,112,96,111,126,102,104,101,102,95,102,102,115,92,114,101,96,105,104,101,94,94,101,107,97,101,101,118,109,105,105,104,105,104,96,95,106,106,98,104,101,110,99,105,111,110,85,98,102,105,109,107,97,112,115,109,105,100,103,101,106,103,109,104,102,99,106,107,105,97,112,116,113,103,90,117,102,112,118,107,105,109,101,108,89,112,109,111,111,97,102,84,103,118,93,112,102,104,99,108,106,106,118,112,96,109,110,99,108,93,103,116,94,99,101,110,108,107,91,99,90,106,120,105,106,112,102,107,106,88,115,104,104,92,99,108,110,81,95,104,101,109,100,117,107,98,101,94,98,105,110,88,107,113,91,103,115,106,105,93,103,117,109,113,119,105,101,123,116,99,117,100,90,105,107,96,96,101,120,102,104,100,104,88,110,108,120,96,101,105,110,113,110,105,109,116,98,111,110,114,108,108,103,106,109,105,105,92,104,98,94,117,110,109,107,98,97,108,112,93,94,97,123,93,102,104,108,113,106,101,114,105,106,110,110,104,124,108,107,103,104,92,118,110,99,96,97,103,106,97,117,103,97,104,125,120,102,113,109,109,113,121,106,119,94,105,104,108,102,103,103,100,102,112,114,109,113,98,106,114,102,107,106,99,112,102,94,104,105,106,121,129,97,110,103,112,105,109,99,99,114,104,104,93,87,103,110,110,105,107,104,104,93,103,80,93,103,99,100,102,107,117,107,98,100,111,105,106,109,106,106,99,103,108,105,114,118,107,106,102,120,98,107,102,107,109,110,103,100,113,106,93,92,98,106,108,104,109,112,113,109,97,101,104,114,109,113,110,105,98,104,100,118,101,94,105,101,111,114,107,104,102,106,104,104,110,96,110,94,94,113,105,106,114,106,98,114,128,104,121,100,98,100,91,103,112,104,111,105,109,105,100,104,111,123,96,110,112,111,108,95,103,116,111,109,91,90,105,104,112,113,99,99,106,108,107,105,106,101,113,104,96,111,109,111,100,104,115,87,117,102,118,104,92,113,115,114,111,110,99,110,109,104,104,102,109,107,108,106,112,93,108,111,117,106,112,108,115,104,113,109,113,102,108,104,104,95,138,101,101,114,103,114,110,104,114,114,111,100,106,102,102,83,104,103,91,104,102,102,111,103,101,103,100,116,100,98,101,102,104,100,102,96,92,100,93,100,107,108,103,99,105,99,105,106,106,98,97,124,113,112,113,107,110,102,104,108,109,109,108,82,115,101,103,104,107,107,103,90,107,116,106,111,108,103,98,109,114,96,108,104,107,103,109,112,103,112,105,113,100,107,103,98,108,99,114,104,95,84,118,108,96,99,110,109,112,112,97,119,105,111,93,102,114,104,114,106,98,101,94,96,101,99,116,91,108,110,97,121,115,109,106,118,110,107,107,103,105,110,108,109,95,100,95,109,104,125,101,107,108,117,96,88,99,113,103,108,98,104,126,105,95,96,103,96,107,113,96,108,88,94,98,103,108,102,115,110,100,104,118,110,98,104,103,108,116,98,93,99,119,109,113,108,117,95,122,91,104,110,104,101,107,114,107,111,114,121,113,99,112,122,114,118,103,107,102,106,106,103,106,100,105,113,88,108,98,101,108,102,99,102,112,113,101,95,115,107,103,93,100,107,104,103,115,93,104,104,110,102,105,120,106,106,111,89,105,110,87,112,98,108,106,108,92,113,103,102,99,105,98,104,119,122,108,116,98,105,108,105,109,100,109,103,111,107,106,110,104,110,105,110,119,106,101,138,106,105,116,111,96,109,109,104,112,112,98,102,107,123,108,116,104,111,106,104,104,99,111,108,107,104,109,95,105,101,103,110,109,107,107,110,105,102,106,103,104,114,92,104,106,97,100,112,109,105,104,96,113,108,96,97,110,83,67,107,98,98,110,104,98,115,95,118,102,99,100,96,97,107,116,106,100,95,98,101,99,106,115,101,112,99,97,109,103,97,98,106,107,102,98,97,106,104,109,101,110,97,107,103,96,101,101,109,102,112,108,112,110,110,107,96,113,103,107,107,111,114,102,104,97,95,100,114,107,111,109,102,91,115,116,102,102,116,109,103,106,99,110,79,122,104,103,112,97,104,96,119,114,102,110,109,110,116,99,109,100,98,91,98,118,100,115,116,100,109,113,134,92,112,98,110,110,107,112,107,101,107,117,115,107,103,110,99,100,113,87,117,93,103,121,113,87,100,105,117,116,111,110,98,118,117,112,114,117,95,109,110,108,79,108,102,111,109,98,107,111,114,103,99,84,110,118,119,120,114,96,119,111,105,107,133,115,114,105,104,128,110,113,101,106,88,117,105,105,99,83,124,114,108,102,109,111,111,113,104,123,132,99,120,106,112,102,114,110,115,115,91,107,99,100,107,109,107,113,123,102,108,115,103,101,111,102,100,113,106,94,116,114,106,110,106,107,104,88,124,101,108,106,105,122,110,105,118,125,101,107,106,112,102,122,109,99,97,102,114,106,113,106,109,108,105,105,100,111,101,112,91,86,112,123,99,110,110,94,108,105,92,113,98,105,115,100,97,110,101,117,107,114,91,99,100,123,101,109,75,112,106,99,91,114,111,106,104,102,121,107,102,114,95,101,121,108,98,117,112,101,87,94,102,106,117,138,119,110,90,105,113,103,121,113,128,121,114,102,104,121,110,100,107,106,104,106,106,117,108,107,106,104,102,84,108,108,110,104,113,113,109,125,95,109,96,100,117,102,106,101,112,103,113,99,101,100,107,93,107,113,116,96,112,113,98,100,103,107,116,98,104,98,122,114,108,97,103,111,114,102,102,112,96,116,99,108,110,121,106,116,107,110,101,113,105,107,111,106,113,115,107,105,109,103,90,110,121,91,108,103,105,110,107,119,125,112,103,105,101,93,94,108,99,104,98,111,104,104,92,105,72,104,106,96,103,113,103,121,113,96,108,113,97,109,88,111,100,113,108,103,115,97,98,109,105,104,114,91,98,116,117,102,119,113,97,103,114,103,123,111,110,108,120,95,83,113,106,106,101,109,108,106,102,113,105,110,111,104,112,106,104,99,95,107,122,101,99,105,99,115,109,99,102,98,99,108,111,106,106,112,108,120,139,109,97,109,110,102,117,76,106,104,103,107,101,108,99,105,108,121,105,105,106,120,100,110,109,107,104,117,101,110,110,108,101,96,92,108,107,106,97,102,109,102,104,132,105,119,98,119,100,108,102,121,118,101,91,102,99,104,107,99,94,96,110,94,113,115,109,118,108,107,104,99,101,113,104,117,98,113,113,109,103,103,113,108,117,113,110,87,106,109,104,110,101,109,105,106,113,106,95,110,113,109,106,120,111,104,109,112,114,98,100,113,99,100,115,107,94,107,107,135,106,99,113,109,111,100,109,112,103,106,98,105,104,102,104,102,106,114,113,108,112,108,94,110,103,112,103,120,116,102,99,120,101,116,108,115,119,114,111,104,110,110,105,102,102,101,104,103,103,113,112,109,113,98,105,101,108,105,112,103,110,101,95,108,121,110,104,113,103,106,116,104,116,102,101,110,102,96,113,102,107,106,111,95,108,119,114,115,126,104,111,84,100,104,101,103,106,114,105,107,111,113,105,107,105,108,109,93,103,110,108,117,99,105,110,117,95,120,93,106,101,113,110,106,114,108,105,96,95,130,105,99,105,112,107,110,105,98,124,106,102,102,95,102,122,106,101,116,112,104,107,114,111,111,105,104,107,113,118,88,95,113,102,113,101,110,106,102,106,99,106,104,87,109,98,100,105,107,109,98,97,104,108,108,79,108,97,100,106,98,102,105,110,121,94,110,95,108,96,117,119,104,104,102,111,100,101,102,98,113,107,99,110,98,98,104,113,110,109,112,112,103,104,94,112,95,99,106,104,103,111,113,105,123,111,97,113,102,102,113,101,110,115,100,95,105,119,113,96,102,105,108,115,105,112,113,113,108,105,114,97,103,110,103,97,107,80,107,117,107,117,99,101,99,105,100,115,111,109,106,105,112,117,113,112,109,100,108,102,98,108,109,108,114,106,102,109,100,97,103,103,103,100,95,125,108,98,122,106,113,104,106,104,101,104,125,107,98,108,103,116,109,102,108,96,97,105,88,115,102,103,113,106,106,91,109,98,117,105,104,104,103,108,110,107,105,103,100,111,102,101,106,112,107,114,97,111,118,103,114,106,110,112,104,104,103,104,103,105,114,109,117,102,108,116,119,109,103,98,105,110,105,116,107,106,119,109,119,108,102,110,102,102,104,106,105,114,106,101,104,108,105,104,105,113,115,106,97,97,110,113,104,107,99,87,96,104,106,108,103,110,104,106,111,105,98,109,99,110,101,101,110,102,124,100,111,104,103,105,102,116,103,120,103,100,100,111,96,98,92,112,103,108,99,104,103,115,95,113,101,96,91,105,102,75,115,99,117,108,107,107,102,94,105,102,95,104,111,101,125,103,110,111,102,112,92,107,103,104,103,110,99,100,110,107,96,105,109,104,101,110,115,117,110,107,96,97,109,99,109,107,111,111,113,100,114,95,101,101,101,97,101,104,105,109,100,109,114,112,105,110,94,116,105,109,95,104,95,87,105,105,112,106,94,85,99,93,108,112,99,101,106,108,106,94,103,107,113,102,109,101,98,99,102,106,122,102,103,104,108,106,80,110,103,109,108,107,99,90,93,99,106,112,96,100,109,104,112,89,88,102,114,109,97,97,99,122,97,101,107,99,96,109,105,123,107,98,104,104,109,106,122,100,114,110,95,99,113,119,103,121,106,76,105,106,95,101, +546.33344,109,82,95,103,97,105,90,105,93,109,110,91,104,95,117,92,102,105,111,94,107,103,85,116,101,111,101,104,110,92,114,99,99,113,111,101,98,115,97,93,107,99,98,104,98,101,105,103,104,129,105,92,110,116,103,97,99,105,103,109,106,114,109,98,104,104,105,104,102,113,108,112,105,96,98,107,109,88,103,99,99,108,88,60,100,99,109,97,85,101,95,99,95,113,111,117,89,94,90,104,102,92,97,101,112,96,105,105,103,107,89,103,97,109,100,104,104,107,118,112,102,107,104,108,106,95,71,104,96,95,100,98,97,105,108,104,96,98,101,79,98,110,99,90,103,100,99,106,91,96,91,88,111,93,105,104,73,119,98,100,99,106,116,99,95,112,91,102,100,104,99,102,107,110,94,91,109,96,108,114,102,106,103,104,95,94,100,95,107,76,100,99,107,107,121,103,102,76,107,102,100,98,109,109,99,85,108,95,123,103,105,110,100,104,101,118,99,104,106,97,109,103,96,119,104,108,108,108,102,118,97,95,109,110,112,113,97,111,106,97,98,113,102,113,101,109,104,102,101,102,108,90,104,112,104,100,99,104,98,106,105,106,99,96,107,99,103,95,103,101,109,103,115,101,100,106,112,104,100,120,100,101,101,119,101,108,100,104,77,108,101,101,111,102,103,105,100,109,100,107,113,101,102,112,95,121,104,113,96,104,107,119,102,90,101,96,111,105,108,108,111,98,107,89,110,109,82,102,116,108,109,95,105,116,99,108,105,106,94,96,105,112,114,100,101,111,105,100,107,98,109,113,106,112,106,109,113,103,99,99,103,95,107,101,112,99,94,120,96,117,111,112,110,105,99,97,108,97,111,104,108,109,100,112,104,101,85,103,128,103,101,104,103,104,110,99,102,98,103,108,91,101,111,109,114,108,99,111,104,104,98,92,101,104,116,108,109,114,115,99,105,100,102,107,102,97,81,106,105,96,117,106,105,101,92,103,106,105,99,98,99,128,104,104,105,114,90,107,86,99,106,99,94,96,105,102,91,109,105,95,94,111,96,97,96,101,100,109,97,99,99,119,112,95,91,91,82,117,106,103,103,99,106,96,103,84,108,102,97,109,117,117,102,104,90,98,95,112,107,80,117,102,127,112,90,102,101,109,124,96,110,95,94,110,101,117,101,94,99,98,99,87,105,104,109,105,113,117,105,101,111,98,110,97,109,107,115,106,114,110,110,109,109,113,118,105,118,89,111,97,105,92,109,108,115,98,105,108,76,115,86,111,113,101,98,106,107,108,104,95,107,112,110,110,100,113,109,101,106,106,102,109,102,110,109,105,108,118,115,102,108,96,95,107,113,109,104,134,103,106,103,109,101,116,113,99,101,104,115,107,108,98,107,99,115,107,95,104,102,109,118,108,105,103,100,111,97,111,111,102,99,104,94,90,102,103,92,104,96,117,103,95,98,111,109,93,111,97,108,107,93,109,96,107,91,107,105,106,103,101,83,102,119,103,94,107,109,95,116,114,103,113,105,110,95,99,107,100,118,110,103,106,108,98,110,109,90,115,94,107,108,108,100,105,97,105,105,95,107,96,81,106,130,99,101,99,104,99,111,118,117,113,120,95,97,107,98,102,113,100,101,110,87,103,89,115,96,107,104,111,96,102,105,95,94,99,99,101,97,108,101,102,107,95,98,100,99,109,106,104,100,97,111,105,100,104,106,99,111,100,111,81,102,99,103,96,96,98,103,95,116,101,109,101,103,92,100,107,112,115,105,98,110,87,91,111,102,107,101,105,109,103,104,102,103,107,115,92,99,104,104,98,107,112,116,104,104,129,97,132,120,101,107,106,109,101,103,106,87,115,96,108,100,116,110,116,102,114,113,121,105,108,105,120,104,107,103,96,97,105,88,107,106,103,103,105,110,108,100,100,103,108,102,97,112,107,97,112,102,84,103,104,107,108,110,113,109,100,113,105,113,116,100,107,99,95,107,96,109,105,103,103,105,115,101,104,109,92,103,110,109,106,105,112,104,101,98,125,107,100,109,98,100,101,121,99,101,105,102,105,104,101,99,113,105,118,101,68,103,107,111,115,102,114,111,104,96,87,118,128,83,113,103,107,106,93,108,114,105,117,82,126,102,95,101,106,108,101,109,110,112,111,119,112,118,112,104,116,103,113,93,73,106,103,102,99,120,104,95,107,103,111,107,92,100,112,83,108,122,103,88,117,93,89,107,99,101,108,105,97,96,108,110,106,98,102,109,106,98,100,104,117,100,93,111,117,114,110,103,106,95,108,141,124,111,101,100,109,104,111,118,107,108,94,99,104,105,108,107,101,107,104,108,111,109,93,98,102,104,97,114,89,107,116,104,117,126,115,102,107,105,111,111,91,96,112,106,96,104,92,111,103,95,99,109,91,100,99,97,103,93,107,99,106,113,99,92,108,116,100,98,98,101,99,106,109,112,103,111,130,106,108,105,95,120,114,95,86,107,107,113,107,121,106,113,106,111,103,107,110,109,94,98,99,98,107,99,110,107,113,103,99,107,97,119,95,96,108,107,92,89,107,113,103,110,106,100,103,107,104,94,116,97,111,100,100,101,103,109,97,107,96,96,116,123,97,106,95,101,103,121,86,99,94,106,103,113,108,111,98,107,115,115,111,111,109,109,103,102,103,98,109,104,104,112,97,112,103,100,108,106,109,103,103,98,121,108,104,105,110,111,109,106,104,104,113,108,96,113,133,101,99,111,114,106,109,107,112,105,99,108,117,108,95,99,103,109,100,104,114,110,95,104,106,103,114,113,104,104,108,110,103,112,93,117,105,107,114,109,106,126,111,97,96,114,116,105,109,102,113,104,92,106,101,114,107,121,109,111,109,144,104,102,111,110,99,88,111,100,110,104,106,103,103,93,97,103,96,109,112,102,111,98,111,114,111,102,99,107,91,94,114,106,105,111,115,103,114,87,111,97,106,104,111,89,104,106,99,109,111,125,108,93,101,114,97,105,113,108,106,103,96,100,107,102,108,95,106,125,108,110,74,106,109,107,103,122,108,110,107,101,108,99,102,88,104,119,113,105,111,117,106,110,107,114,98,110,117,115,113,100,97,115,95,107,101,95,106,106,103,95,102,113,84,111,99,104,113,115,107,104,107,112,115,104,113,107,108,107,109,107,98,85,95,101,85,111,99,105,106,94,107,99,97,103,106,106,100,110,98,108,103,102,98,100,113,86,104,113,91,112,105,104,106,103,121,98,115,107,109,102,101,104,111,102,103,98,98,119,110,101,87,105,104,95,104,106,102,117,93,108,107,102,100,106,104,83,105,91,86,94,112,104,103,94,117,114,90,125,95,106,109,106,113,101,109,111,103,102,106,113,109,109,112,117,112,106,106,103,92,101,112,105,113,108,102,105,117,99,113,104,100,103,117,103,96,107,111,113,89,127,109,104,109,99,108,99,108,106,121,112,114,121,105,98,110,105,103,107,96,99,103,94,120,117,106,100,105,102,84,106,112,100,103,105,101,119,104,103,117,97,106,110,98,108,106,109,99,95,114,113,85,104,109,98,103,125,102,92,104,99,104,107,99,98,109,111,109,85,104,94,101,101,101,98,105,103,94,104,122,81,101,95,117,100,94,105,102,109,103,103,111,99,103,106,108,103,109,86,99,124,118,110,105,99,98,107,103,111,98,101,102,96,96,84,95,106,101,109,96,100,109,98,101,101,124,99,108,105,103,109,103,101,100,106,94,106,96,93,108,101,111,104,120,111,100,92,118,117,97,101,115,104,103,102,100,110,125,105,99,101,99,99,72,113,107,113,95,109,103,86,108,106,114,99,115,103,111,104,107,100,96,67,96,111,104,104,102,103,109,101,96,104,109,109,107,116,95,103,104,95,96,105,104,106,80,105,93,112,98,98,98,95,128,105,100,96,106,114,109,97,109,103,109,84,104,101,90,103,90,102,93,114,108,102,117,106,113,104,102,108,106,96,105,105,83,113,92,103,107,114,102,109,105,105,107,97,109,100,100,112,100,109,105,112,99,102,108,109,105,105,101,100,98,98,91,101,96,99,92,110,107,98,105,118,98,103,117,90,111,115,96,104,105,104,112,84,91,109,118,127,105,103,104,91,111,96,107,100,99,109,105,99,91,108,108,105,104,115,109,102,117,110,104,116,113,107,85,96,79,108,112,113,106,107,112,114,102,104,106,116,96,109,112,97,101,101,110,105,110,102,107,110,111,110,104,93,96,110,103,100,103,109,114,108,104,108,94,105,95,105,102,107,106,98,97,110,113,115,103,109,122,106,113,111,104,104,96,101,102,107,103,112,82,104,99,94,90,106,99,102,102,102,111,98,99,100,104,115,104,109,112,96,108,100,94,104,118,101,96,98,104,104,109,95,113,108,102,107,104,127,116,103,93,96,101,102,105,94,110,114,113,106,99,102,102,90,86,98,84,102,99,100,110,103,104,102,112,103,106,115,118,117,95,107,109,94,108,103,100,93,104,92,112,107,94,106,98,105,113,107,115,111,104,98,90,108,100,106,101,106,107,123,90,104,91,109,95,86,109,104,99,100,98,97,112,115,98,102,127,121,97,99,109,113,104,103,101,93,81,117,105,103,111,106,92,107,87,111,113,91,100,105,95,101,114,104,94,100,103,101,105,103,106,114,98,112,103,102,100,102,107,111,104,101,93,101,94,99,95,101,115,100,99,110,121,109,103,102,96,111,102,96,112,103,101,98,107,109,110,94,100,98,96,109,105,103,109,100,109,90,94,106,100,91,111,115,118,110,95,104,102,94,100,109,120,111,96,92,94,85,103,99,96,103,112,88,109,106,107,103,98,102,85,100,82,105,101,106,97,119,103,100,99,101,96,99,110,95,99, +546.47424,99,100,101,87,99,94,94,101,101,109,101,95,98,99,97,114,100,99,98,87,106,110,97,113,89,113,100,95,99,105,117,105,103,106,103,98,108,104,106,112,96,101,98,116,105,97,97,104,91,104,100,98,100,99,99,86,105,86,101,90,114,115,91,101,104,126,94,94,109,104,119,119,103,102,94,104,95,101,75,98,118,101,96,98,103,105,100,98,115,105,96,101,107,109,95,94,104,108,105,99,83,111,100,110,99,116,102,103,105,93,110,96,109,112,95,100,99,101,110,99,105,95,90,109,106,104,109,100,111,106,104,105,99,109,104,99,110,86,97,97,102,105,106,103,97,99,97,79,80,93,103,108,105,95,111,103,95,97,102,106,97,103,105,106,97,98,101,95,101,95,101,107,84,91,96,109,105,102,106,108,107,105,92,120,102,104,104,105,100,107,109,111,121,114,108,109,101,102,109,99,100,103,96,107,97,90,110,115,114,106,96,113,110,97,102,106,106,105,103,96,99,114,111,92,91,113,105,109,97,94,99,114,104,103,102,99,102,113,107,102,103,108,110,104,98,117,105,105,104,112,99,99,95,95,98,104,100,104,101,105,95,110,113,100,104,109,104,99,101,107,86,100,102,109,105,119,101,93,98,103,104,99,112,117,98,96,112,97,111,96,110,106,104,111,102,93,110,102,115,109,98,103,103,109,100,109,96,108,110,109,104,102,92,106,101,110,108,104,101,99,102,116,105,101,105,96,99,99,104,109,92,107,105,112,96,103,111,107,110,99,102,107,114,91,97,113,104,98,117,103,104,109,81,96,111,97,102,105,98,86,95,103,99,102,101,109,113,101,95,99,111,94,90,89,99,99,101,98,109,103,113,99,89,91,96,103,102,112,107,103,103,95,95,97,104,94,107,99,107,103,94,101,107,93,104,98,94,108,107,97,105,104,108,112,106,94,104,110,112,92,94,98,104,97,102,90,97,105,111,112,105,108,99,106,106,107,103,105,101,117,105,105,98,101,91,87,114,106,102,103,103,100,108,108,116,101,111,120,115,95,92,114,109,119,111,110,95,106,100,103,113,107,110,105,102,103,99,113,109,97,106,104,106,96,107,97,106,112,112,111,92,100,96,95,99,91,88,89,103,101,113,110,78,105,98,102,107,89,109,96,115,100,97,107,105,99,112,98,91,97,114,117,97,109,115,107,102,103,105,93,98,102,101,101,112,99,107,98,108,110,110,105,102,95,117,106,108,96,117,114,92,109,102,103,95,103,98,100,95,102,114,92,99,104,104,105,84,110,101,107,105,99,111,102,110,107,119,120,112,96,105,134,106,96,111,101,99,97,93,108,98,109,91,97,114,99,97,105,121,106,98,108,107,114,113,94,105,97,99,91,89,104,97,102,104,111,111,95,118,107,108,102,87,109,109,101,98,103,102,101,104,103,85,106,86,117,100,95,106,97,107,101,108,108,107,101,107,100,111,108,92,104,113,107,110,104,98,120,99,113,115,110,100,103,100,95,108,109,99,104,111,101,117,102,106,108,95,103,100,109,105,107,109,94,104,99,91,122,98,98,98,77,104,106,102,98,101,106,98,97,102,98,104,119,104,111,100,93,105,101,102,102,99,97,90,104,95,96,91,94,109,99,66,102,108,95,104,109,99,112,100,96,104,102,94,101,113,99,92,103,125,102,107,112,103,96,111,104,106,103,107,104,108,96,113,99,106,107,106,99,112,103,98,108,88,100,95,98,96,91,104,102,100,109,100,108,97,118,109,107,113,101,107,106,100,111,109,103,104,97,96,109,95,100,99,95,104,103,119,109,101,103,107,102,104,116,108,105,110,104,115,103,108,109,104,106,114,99,108,108,106,107,117,106,106,121,103,106,104,100,110,94,96,105,91,110,116,106,108,91,95,112,114,101,87,85,100,86,97,95,113,102,100,96,103,105,96,109,107,113,109,105,109,107,104,98,94,103,103,104,106,99,114,111,104,105,112,103,98,110,69,103,99,104,70,113,103,123,91,111,115,113,115,108,106,100,110,117,102,107,101,108,113,115,66,101,99,112,106,103,104,109,106,105,110,95,95,110,91,109,110,116,104,92,105,97,115,113,96,94,106,116,118,102,101,105,100,88,99,102,98,96,109,113,111,99,91,100,110,92,109,95,104,91,110,113,108,106,101,96,105,104,91,92,95,109,102,101,103,87,104,95,109,106,107,99,104,98,100,107,97,106,96,97,101,91,93,75,108,109,107,105,106,109,99,96,105,104,91,102,105,89,98,112,108,102,103,117,101,98,98,97,95,115,100,109,99,93,106,89,98,107,111,100,103,97,95,103,102,96,111,100,106,81,104,92,91,84,101,114,113,108,120,104,107,112,126,108,107,100,113,110,112,96,118,97,103,91,95,105,131,104,104,106,94,97,114,110,101,105,99,106,104,98,108,100,103,109,109,107,104,102,104,111,102,108,105,109,111,106,99,109,98,111,92,107,106,76,119,111,117,101,120,113,136,104,109,98,111,103,94,111,102,71,105,104,120,110,103,99,109,109,98,98,111,96,113,95,98,117,108,115,104,117,105,110,118,104,101,105,94,101,110,80,99,96,97,115,114,99,121,108,113,103,113,101,100,111,120,96,95,105,111,104,106,111,105,110,112,85,101,110,111,101,103,104,95,101,108,99,109,110,97,103,112,105,106,105,109,112,96,99,107,107,98,115,95,108,112,118,98,89,109,117,112,100,109,103,104,98,112,86,106,112,119,107,118,98,101,99,109,115,107,103,96,101,97,102,112,102,107,109,100,112,109,103,98,105,120,101,113,111,102,113,98,112,103,109,106,110,100,110,116,118,113,103,87,115,115,107,113,107,107,103,107,101,102,95,95,100,107,109,105,106,96,103,95,96,110,126,99,111,111,107,100,105,107,109,105,110,103,117,92,111,92,116,103,90,117,97,98,102,94,108,107,117,117,117,102,101,104,113,103,109,103,80,109,116,105,109,106,104,107,112,112,95,110,111,113,81,109,84,96,114,106,93,92,108,102,107,95,108,112,126,73,99,98,105,103,88,108,111,99,111,109,103,131,113,106,109,105,119,105,113,100,106,119,91,105,104,116,108,94,105,109,108,122,113,113,104,104,117,101,112,105,107,117,102,103,94,82,92,111,113,103,128,100,104,103,115,113,100,115,100,97,117,105,98,89,102,104,97,113,98,105,103,115,121,101,99,123,111,98,105,95,102,109,98,107,105,109,98,100,120,123,78,89,136,109,100,78,100,100,96,102,109,105,99,105,101,106,97,83,109,105,104,110,103,123,108,96,110,96,102,108,108,106,103,94,94,111,101,105,105,106,105,80,79,113,96,111,109,113,107,101,114,102,99,89,93,99,109,99,123,109,89,99,89,113,110,106,97,115,117,107,104,107,99,113,110,108,113,103,107,99,75,121,107,112,108,113,113,94,103,101,99,105,108,105,104,102,103,98,98,106,107,92,99,106,111,102,106,95,105,109,104,105,105,108,101,111,92,106,105,97,98,99,112,113,112,104,117,111,106,117,109,102,103,112,117,113,73,99,104,103,83,99,105,104,105,109,108,111,107,98,96,108,113,108,108,96,100,116,102,113,101,92,120,118,105,108,104,105,101,70,98,91,109,102,115,105,98,103,113,106,113,112,107,102,99,108,111,99,98,98,99,108,109,111,97,104,94,105,108,109,124,110,103,98,98,104,119,115,106,102,97,105,110,113,109,124,101,64,99,108,116,109,110,102,101,96,107,96,99,106,93,106,101,119,96,102,101,113,113,102,124,100,115,111,100,117,109,120,93,112,91,106,92,98,119,95,107,105,104,112,103,110,117,104,117,105,105,117,106,104,109,115,102,103,99,107,106,114,104,94,111,100,104,105,108,92,105,110,102,111,105,108,100,117,105,114,105,111,109,104,102,95,106,106,101,106,99,105,108,95,103,120,106,100,97,113,104,105,109,106,96,114,105,92,104,104,103,106,112,106,110,109,122,122,104,109,110,108,99,107,101,104,101,112,121,110,110,87,106,114,106,106,109,107,115,103,112,115,109,104,103,98,95,101,99,107,110,100,120,98,131,106,120,117,112,117,106,102,106,114,114,99,99,99,111,108,102,109,105,92,104,106,109,108,107,100,99,109,102,106,123,108,96,117,100,110,103,96,99,104,101,95,119,111,95,122,102,115,98,115,98,96,105,106,116,106,99,107,105,103,110,110,106,101,98,104,95,102,109,101,110,93,105,105,98,91,100,107,100,109,93,83,100,102,97,100,105,119,95,105,98,97,102,94,110,106,112,110,106,113,109,101,101,98,98,99,93,94,102,102,101,102,99,113,100,97,100,111,100,98,109,121,103,108,102,109,107,105,106,102,103,105,102,100,107,104,89,104,106,109,114,102,104,98,110,102,102,100,99,113,102,104,103,102,127,102,108,100,121,105,91,110,99,105,83,102,92,104,105,105,113,99,100,100,105,99,102,98,113,106,98,115,100,102,106,102,96,103,110,99,101,105,110,97,100,106,95,97,104,103,102,111,101,107,104,106,108,99,99,95,110,106,97,106,95,104,92,115,120,114,93,116,106,95,100,100,117,109,102,91,109,108,106,100,106,110,103,109,94,113,91,114,116,110,105,108,92,104,109,105,103,101,104,105,101,96,96,103,109,99,97,108,109,94,96,103,96,116,95,102,97,120,97,97,111,102,101,124,107,100,98,105,104,109,119,108,109,105,104,93,106,99,113,117,108,106,99,102,98,95,100,107,102,100,97,102,72,104,77,85,93,97,92,95,99,127,84,104,92,116,125,103,98,124,87,96,102,100,97,117,105,103,106,98,99,103,98,110,96,104,89,87,117,112,87,115,100,105,102,106,101,111,99,92,95, +546.61511,103,86,101,101,103,96,94,97,96,96,103,108,99,92,93,97,99,104,101,114,96,104,103,107,91,113,100,110,107,102,106,117,89,73,109,100,83,112,104,109,105,101,98,105,99,103,95,103,114,105,96,91,110,91,109,113,101,104,103,92,102,109,112,109,114,105,97,105,95,109,96,114,100,113,106,101,92,110,104,104,104,114,93,90,97,101,101,101,104,112,112,105,96,99,101,104,112,98,109,98,95,106,105,85,106,101,104,99,100,105,100,95,108,113,106,114,102,101,105,109,101,109,109,101,109,99,116,105,102,100,117,111,104,100,111,102,99,106,95,115,106,117,104,103,112,98,104,117,100,102,105,113,105,96,100,102,104,101,114,95,100,103,110,116,113,109,108,107,102,103,112,101,92,103,102,84,103,95,101,106,103,101,103,111,96,82,101,88,103,90,66,109,104,100,88,95,109,105,109,115,105,107,112,89,108,104,107,96,112,104,104,106,99,107,92,106,104,110,102,117,111,111,94,109,106,90,110,99,101,102,107,103,100,109,109,112,105,117,109,101,99,100,110,96,109,103,94,106,96,106,102,91,119,110,95,70,100,99,93,111,115,111,113,82,96,108,103,104,116,103,112,112,116,96,106,95,98,110,109,110,99,112,123,104,108,106,102,106,108,111,105,105,111,103,107,112,109,112,98,93,105,103,107,106,104,105,111,105,106,114,100,105,107,98,104,99,95,72,106,102,112,98,105,108,97,96,102,91,105,106,109,105,104,99,123,114,99,103,102,102,113,106,106,106,99,107,108,109,113,115,107,112,109,114,113,105,84,113,112,92,112,112,100,104,98,101,103,102,98,112,104,117,111,120,109,104,102,104,100,106,118,100,102,102,117,104,107,112,90,113,111,98,101,106,86,112,97,103,108,106,79,107,105,97,115,89,112,96,98,105,103,83,108,107,118,101,101,106,113,119,105,117,110,109,86,96,112,113,99,117,108,102,116,100,106,105,95,99,108,107,105,102,81,102,97,107,106,104,102,100,109,116,102,113,92,95,97,116,124,100,98,100,94,107,106,112,106,97,113,104,108,108,103,115,108,89,98,108,105,105,112,112,99,101,109,94,109,106,101,112,100,105,102,113,107,99,104,98,107,106,109,110,112,106,102,102,100,107,99,105,121,99,103,105,115,113,104,102,111,117,104,100,107,122,109,100,113,105,111,88,104,106,93,120,112,109,97,99,106,82,102,107,108,116,115,88,107,113,105,112,112,102,113,107,101,113,109,103,98,99,110,112,99,116,102,109,124,97,106,104,100,109,101,106,110,119,99,111,110,118,110,96,106,114,104,109,102,115,112,110,109,102,101,97,109,121,114,107,112,110,113,108,99,111,101,100,100,98,100,120,107,98,113,111,108,104,108,110,125,115,102,105,99,105,106,116,108,108,100,93,112,109,102,110,90,113,101,95,107,107,115,104,121,103,100,96,100,108,98,117,101,108,110,109,111,104,108,114,105,112,108,106,99,100,94,104,96,99,91,122,103,104,100,102,104,108,89,102,114,105,105,117,110,106,94,93,95,104,102,91,115,119,101,117,117,113,104,104,104,110,112,98,118,100,113,109,101,113,108,107,101,96,110,104,100,99,99,98,108,103,108,103,107,99,104,104,99,116,98,120,99,94,100,111,98,108,108,95,108,99,112,102,103,111,97,103,108,104,110,102,126,97,104,112,110,110,114,111,104,94,107,104,98,116,104,121,94,110,111,104,102,100,100,103,115,117,110,102,102,117,116,107,113,116,84,108,105,109,100,99,108,103,113,111,100,104,112,98,100,94,101,95,108,105,107,102,107,112,104,125,118,103,105,111,97,112,108,99,111,113,105,106,102,109,110,95,114,110,109,108,105,117,108,118,114,108,104,91,109,115,106,109,117,107,93,108,106,101,98,98,104,113,106,108,99,96,97,98,110,102,108,102,112,110,102,96,116,102,108,109,108,110,103,116,103,100,100,114,96,100,107,105,91,117,101,98,112,102,125,105,93,107,83,114,101,92,94,103,91,98,100,118,110,103,97,85,108,109,102,112,97,100,115,108,127,109,100,113,113,109,108,104,110,98,101,99,102,111,107,105,107,108,111,99,113,92,97,117,115,101,103,114,107,124,104,114,110,100,108,106,106,88,111,95,102,106,91,95,101,105,112,92,102,107,113,97,98,104,104,104,104,109,112,95,107,102,112,103,98,105,90,100,105,99,108,104,107,106,108,91,106,105,78,101,99,106,104,106,95,109,101,111,103,101,96,105,105,109,97,110,107,110,101,106,96,107,106,99,105,113,118,107,106,90,108,106,115,110,96,104,116,109,105,97,109,101,101,106,98,104,101,103,115,113,114,105,119,115,107,111,100,121,108,112,109,98,103,110,106,110,111,103,103,107,120,108,91,107,108,81,100,116,104,98,108,115,106,101,106,99,95,91,100,115,105,105,106,112,100,101,103,110,116,99,100,104,95,113,121,124,105,89,109,95,109,103,97,101,104,100,102,102,110,96,95,100,107,107,100,104,104,103,117,112,122,112,98,102,109,104,119,116,106,111,111,114,110,112,98,95,106,104,119,101,109,99,99,101,120,109,109,105,114,112,102,103,106,116,115,104,110,109,111,79,99,109,93,99,113,106,109,98,120,109,97,85,101,100,99,115,109,105,121,111,103,100,107,109,118,110,94,125,103,111,102,106,121,106,104,100,104,101,115,110,111,117,110,106,112,104,103,111,102,107,114,113,119,115,108,103,102,113,95,111,116,112,104,109,105,115,117,108,118,102,104,114,116,113,118,118,102,109,110,100,116,107,106,114,110,123,112,121,100,128,100,95,104,113,118,121,103,106,102,90,107,100,109,104,117,104,117,103,97,112,115,108,116,93,109,115,117,111,104,107,119,99,108,90,120,104,121,112,94,108,99,109,105,108,105,111,102,107,103,108,96,104,108,115,111,101,114,96,103,104,98,113,107,101,105,105,103,104,100,116,106,108,103,105,98,102,103,98,102,112,106,114,100,110,99,110,96,100,110,96,112,97,104,102,96,92,104,122,103,106,112,121,109,101,103,97,109,129,92,97,100,95,98,109,117,105,97,100,108,104,108,103,103,121,99,97,108,111,105,112,101,92,114,112,114,112,110,100,102,106,110,106,112,92,107,124,115,105,98,103,99,103,105,124,103,106,105,107,96,108,108,99,102,94,111,94,111,97,102,91,102,98,117,95,112,111,106,111,114,103,131,101,98,93,100,94,103,101,110,115,110,85,109,99,106,103,123,95,108,117,111,99,99,107,110,96,99,104,103,101,110,103,105,100,102,109,114,107,103,96,94,109,100,102,98,111,86,104,99,121,99,100,100,104,95,102,105,105,101,107,113,123,88,99,100,110,100,104,116,123,95,107,105,105,103,108,97,91,104,99,104,113,104,104,110,95,102,124,95,106,108,109,112,113,103,97,103,107,102,111,99,100,120,97,121,94,107,109,106,103,105,95,110,123,98,109,113,91,102,115,100,104,109,113,108,97,103,107,114,105,103,115,100,103,110,91,106,95,98,96,106,113,107,102,104,102,97,109,101,104,98,99,101,105,102,99,98,101,108,100,97,96,108,113,102,105,107,103,111,105,109,102,104,95,101,112,101,104,123,119,103,102,101,101,107,105,112,103,102,111,106,102,106,108,108,94,92,101,109,109,104,100,103,100,109,106,82,98,109,100,103,108,107,102,104,99,109,104,115,90,95,100,102,102,108,96,115,108,114,96,97,113,109,95,124,101,97,114,121,132,94,110,107,111,115,104,112,100,100,111,102,101,104,108,94,109,104,113,105,110,107,101,116,100,101,104,99,116,120,105,101,117,99,110,105,93,111,102,95,112,96,105,99,107,100,95,100,102,101,110,107,99,112,92,103,106,106,94,107,98,108,102,87,95,99,108,108,104,100,115,96,99,96,96,108,109,121,84,107,98,102,112,99,109,102,122,104,98,82,115,108,102,106,98,109,112,110,98,112,101,112,100,104,93,90,99,119,95,101,112,107,111,106,94,106,111,100,103,110,109,102,106,97,116,89,101,107,113,94,104,103,107,109,109,101,110,120,90,72,112,102,111,101,99,86,112,81,97,101,103,112,105,105,112,107,107,106,101,101,92,107,95,100,114,114,102,102,101,111,99,111,104,101,110,114,107,106,106,75,113,96,103,115,99,99,118,95,102,105,95,93,84,103,107,112,106,75,105,95,94,83,99,108,102,99,104,86,101,109,100,113,107,103,98,96,99,104,116,108,129,109,104,77,112,117,117,108,109,103,113,102,111,103,102,107,111,102,97,107,104,106,100,102,109,114,85,114,106,103,112,114,104,110,110,105,103,100,98,102,92,102,108,107,104,100,95,93,95,95,101,99,98,95,87,113,110,123,115,104,96,109,111,91,108,94,98,111,123,102,111,105,102,98,104,102,97,71,104,109,103,105,107,105,107,119,99,90,76,94,96,113,96,113,65,105,105,95,102,94,119,101,105,76,118,112,102,94,106,109,109,95,101,129,106,119,101,113,109,103,113,103,102,116,112,107,104,105,101,103,99,89,103,113,105,114,99,110,95,101,113,108,103,109,111,102,103,106,109,99,100,118,106,107,114,108,109,107,102,92,103,107,100,91,101,98,101,92,100,96,117,96,106,102,109,88,103,101,96,109,102,101,102,84,99,107,100,85,98,91,105,107,98,101,105,101,99,113,88,106,84,105,108,97,105,128,98,97,87,106,98,104,112,93,93,121,104,89,91,98,103,99,101,98,93,115,108,102,99,98,98,115,110,102,113,108,104,103,105,97,105,104,114,97,98,114,105,115,105,110,87,106,111,101,97,103,104,110,93,107,112,103,106,108,96,103,108, +546.75592,112,110,105,99,97,100,102,86,103,99,92,112,110,116,106,90,102,94,89,100,111,100,94,93,100,99,99,109,113,93,96,97,134,103,108,129,117,106,108,89,102,91,102,105,104,100,92,97,97,99,109,105,104,99,114,103,108,99,102,85,102,92,89,94,122,110,95,97,121,118,98,100,104,112,105,110,82,97,104,103,104,104,112,98,114,116,104,108,108,100,100,108,102,107,99,98,108,95,101,95,97,104,87,96,114,110,107,101,107,105,91,88,106,100,108,108,100,105,114,105,114,105,95,78,110,103,113,103,92,105,98,96,95,112,103,108,104,99,111,98,108,117,96,104,98,97,107,109,99,95,99,99,110,93,96,94,82,100,102,98,96,94,104,111,127,118,103,98,116,105,103,105,106,103,98,100,108,97,100,101,99,104,111,82,113,95,100,94,107,89,103,91,103,110,107,105,101,102,92,104,105,92,107,99,97,106,116,110,109,96,115,98,119,117,111,101,108,104,96,105,106,100,86,99,101,107,98,89,99,105,115,108,101,103,109,108,97,107,123,101,107,108,108,109,106,99,117,96,101,103,102,105,111,95,90,100,104,108,88,108,104,101,90,110,92,91,95,109,109,112,98,103,117,105,119,112,109,117,98,95,102,110,102,95,103,102,98,111,116,112,107,105,94,111,104,107,110,102,103,102,104,92,116,113,94,102,111,103,95,125,92,103,74,106,106,123,93,104,106,102,104,94,104,125,109,109,102,103,101,112,116,101,108,103,112,112,97,97,106,97,99,110,109,91,101,105,105,100,96,103,98,90,105,107,112,94,97,110,116,110,108,109,113,104,111,95,104,102,102,110,105,105,98,103,93,104,86,76,110,110,115,116,102,101,107,109,106,105,103,98,109,108,108,110,104,95,103,111,106,114,100,93,95,107,111,109,109,103,110,106,100,107,122,103,92,111,95,102,102,105,105,109,104,117,95,100,90,89,98,103,97,97,99,102,98,107,109,99,80,102,109,104,108,115,95,95,99,96,103,105,111,95,112,120,103,106,105,108,110,105,102,110,93,106,115,110,113,103,109,94,98,117,102,101,103,99,114,100,108,105,108,108,98,100,115,99,104,96,114,99,110,110,113,95,97,119,107,115,97,117,99,101,107,108,115,98,98,103,112,104,102,110,111,105,111,91,102,104,102,104,108,113,100,98,99,116,101,106,103,97,100,107,100,107,100,117,100,102,124,115,99,110,107,118,103,101,100,112,121,103,100,106,98,107,110,102,101,128,96,108,108,96,97,98,105,109,112,103,99,104,101,113,110,95,99,96,101,97,91,116,106,101,113,110,100,106,112,105,103,100,113,103,107,104,108,98,94,100,104,112,102,110,107,98,99,100,101,112,96,105,111,99,101,105,106,107,109,105,105,106,101,113,101,102,109,103,103,110,103,95,96,98,108,112,99,97,98,102,102,96,129,86,106,106,98,104,106,100,122,103,96,109,109,99,98,98,109,106,101,106,104,110,107,98,100,96,104,93,112,109,106,109,103,121,103,84,104,114,104,105,105,111,121,99,107,106,99,99,103,100,103,113,104,116,105,113,104,112,80,105,111,90,103,95,106,117,115,111,106,118,98,106,103,107,105,103,99,102,95,98,115,104,100,103,119,105,96,99,95,101,100,122,97,101,97,93,96,96,100,92,106,94,106,96,108,84,103,100,104,95,95,103,108,90,109,104,129,98,99,80,96,106,107,104,101,103,100,101,123,113,105,99,108,92,105,109,108,99,108,95,108,108,109,111,104,111,108,113,98,107,99,105,99,110,102,103,83,86,111,113,103,100,121,101,116,96,113,98,101,108,109,109,99,104,102,93,109,104,92,109,105,99,104,110,108,111,114,107,119,109,102,105,103,108,101,97,104,112,106,118,92,103,110,98,101,100,109,100,106,108,103,96,104,109,100,110,106,120,108,113,106,112,104,106,100,101,92,100,100,109,93,120,84,108,108,98,106,106,110,104,95,109,109,107,108,89,97,113,105,102,114,91,96,90,99,86,103,107,93,107,104,110,117,108,107,100,101,109,97,102,120,105,107,103,110,96,100,97,112,108,110,103,121,103,105,106,94,111,107,105,98,106,111,107,101,107,102,107,99,111,103,102,110,108,87,99,112,102,122,121,110,102,92,103,117,108,109,114,95,112,110,109,102,92,104,96,102,104,94,105,99,81,111,115,97,99,97,100,104,112,114,107,95,118,108,96,95,93,102,100,101,106,99,116,100,99,100,117,101,105,117,117,109,117,116,111,110,106,109,115,96,118,91,117,108,105,109,109,104,108,86,98,100,92,108,105,104,103,112,111,104,117,98,111,116,96,109,104,107,103,116,105,113,97,116,103,107,119,103,124,105,117,117,109,119,102,104,112,103,111,97,104,96,104,114,105,96,113,103,109,97,115,92,105,93,105,116,104,95,94,98,73,100,116,102,107,115,103,104,99,109,116,110,95,104,95,121,105,124,109,89,100,103,76,108,108,106,122,104,118,95,111,107,103,107,102,99,98,99,115,103,97,96,118,120,104,95,120,99,101,107,123,124,97,108,108,106,116,98,102,99,90,102,117,102,96,120,111,115,99,95,102,96,108,109,96,103,102,108,98,116,99,117,95,109,117,95,103,100,92,103,108,114,110,99,92,100,116,106,96,103,111,102,98,109,120,109,117,96,97,99,105,101,117,110,113,74,103,109,114,90,120,95,99,104,115,132,102,103,112,99,95,101,96,105,117,74,115,133,114,109,115,100,110,102,96,121,110,106,109,96,106,101,106,107,110,101,98,98,115,111,105,107,83,107,114,105,102,93,117,99,102,124,113,105,94,103,141,103,108,104,105,101,110,109,101,108,95,109,106,85,108,102,104,105,94,107,101,106,103,104,99,122,101,94,107,103,83,101,99,118,104,102,106,106,115,99,107,117,107,108,103,103,98,115,113,95,109,91,108,120,103,96,85,93,103,118,104,102,94,115,115,89,108,108,97,105,112,109,103,98,102,79,102,112,103,89,102,105,109,103,98,100,107,114,97,109,120,109,114,104,107,95,106,94,85,111,108,68,102,107,90,113,112,100,105,98,105,102,108,106,107,96,117,101,99,105,106,107,98,101,102,97,110,110,97,113,102,105,108,104,106,100,111,106,113,108,112,104,107,110,102,105,105,115,106,129,107,80,99,110,112,104,110,92,111,106,103,107,97,102,96,104,99,98,109,93,103,108,113,114,107,106,110,109,98,105,104,97,110,98,98,103,112,85,110,98,96,100,115,102,100,114,90,116,111,107,102,102,105,97,101,93,113,128,108,102,96,112,111,90,95,93,98,110,108,106,87,106,104,99,112,107,113,107,101,106,102,103,112,105,95,105,113,111,118,98,115,102,105,98,102,100,100,104,111,104,98,113,106,101,100,110,102,117,109,105,110,111,95,107,95,114,100,100,89,108,132,115,110,106,106,106,101,97,112,107,115,114,99,104,100,104,110,107,114,105,101,105,105,106,104,107,115,99,116,115,114,106,101,98,123,122,108,112,101,94,117,103,129,100,110,100,110,100,109,92,103,106,103,95,102,113,106,79,100,108,107,102,102,97,105,106,93,100,87,100,110,100,117,106,114,102,99,103,107,113,95,102,106,100,110,94,117,106,101,108,111,98,106,108,110,111,107,94,95,108,113,102,100,112,107,105,102,107,109,102,114,95,99,96,102,113,110,102,103,118,118,107,75,116,102,101,101,104,113,101,103,110,109,103,96,111,109,103,106,93,101,106,103,84,98,100,117,106,120,103,109,100,106,103,93,111,102,105,108,104,101,91,106,86,101,98,108,107,97,116,101,117,110,102,80,119,102,111,109,115,101,90,88,103,106,107,99,113,98,100,111,94,98,96,105,109,116,102,77,107,97,108,102,120,104,90,110,100,130,99,109,115,106,112,98,93,117,100,103,94,99,102,110,109,105,105,98,107,101,93,104,118,123,108,107,93,111,118,103,95,107,109,105,94,105,106,93,89,105,109,109,118,105,110,114,94,117,103,115,104,103,115,102,105,103,113,112,106,99,105,103,108,103,102,104,104,90,99,98,92,102,100,102,106,109,108,110,105,112,94,105,108,104,109,102,92,94,104,111,107,116,91,113,94,101,96,93,104,110,104,101,110,92,102,108,105,103,100,116,93,107,106,101,112,110,103,103,116,111,110,128,104,108,108,95,104,116,97,103,105,111,103,98,109,89,94,98,98,112,98,100,101,105,105,99,115,91,95,104,99,106,101,93,105,103,112,96,100,104,106,102,104,111,107,104,104,107,126,104,107,105,99,103,103,88,115,104,100,99,101,100,100,103,108,108,95,72,104,94,103,109,111,113,101,104,111,103,102,101,103,106,103,102,103,103,95,107,103,105,105,92,100,103,109,104,97,116,110,99,117,95,102,109,133,114,109,103,109,94,105,112,104,102,106,98,102,100,101,109,106,110,113,96,99,117,98,105,100,113,101,94,96,103,100,102,103,100,113,110,110,112,106,105,96,103,113,90,104,97,101,103,109,97,105,103,98,100,103,109,101,115,95,102,97,95,111,105,102,114,109,108,91,98,97,108,99,91,99,99,100,111,102,105,109,119,109,109,108,90,111,112,116,94,87,85,98,94,89,96,110,106,104,107,111,99,110,132,106,99,107,117,112,103,96,103,102,104,106,105,96,94,92,86,107,106,106,126,125,102,115,87,111,110,99,89,106,87,116,112,102,115,119,109,101,101,108,117,106,109,82,100,112,101,103,103,114,92,109,101,97,92,103,105,115,105,103,112,112,101,89,103,96,94,110,93,101,99,111,117,88,101,103,95,107,101,100,100,100,99,106,98,104,105,98,102,98,106,118,104,102,105,100,89, +546.89673,113,99,98,129,89,99,103,88,104,112,88,110,122,116,115,94,99,111,121,94,105,113,94,63,124,87,108,92,108,101,106,104,109,97,106,105,99,115,105,113,106,102,108,106,107,109,108,107,112,96,106,103,106,102,98,101,102,88,106,116,91,113,98,102,110,116,102,109,104,107,109,99,104,101,99,111,99,78,104,106,109,93,97,95,104,107,104,94,109,101,113,103,109,99,95,97,95,102,110,107,108,96,102,102,93,112,115,99,118,107,92,100,112,94,113,102,102,109,112,96,120,108,97,104,108,102,112,104,113,121,96,95,113,101,121,106,91,109,92,116,100,104,94,118,97,102,115,103,99,120,100,101,106,106,109,94,102,98,112,117,112,102,104,100,97,92,111,106,109,90,117,103,99,99,98,110,110,91,105,107,110,113,122,106,109,111,113,118,115,104,121,112,92,111,116,107,103,111,83,122,94,111,91,107,103,100,96,110,106,121,92,104,104,106,105,112,102,109,102,108,104,100,107,100,99,111,104,94,112,103,100,96,112,111,104,108,105,110,97,104,105,98,107,103,106,109,103,110,111,110,102,106,104,102,109,117,108,110,105,103,101,103,97,104,88,112,107,100,92,114,99,104,102,106,112,99,113,97,99,103,105,98,105,99,104,104,109,105,121,108,100,101,108,107,121,114,98,114,102,97,108,109,103,101,102,104,106,104,81,117,108,122,103,111,100,93,106,107,111,100,109,105,107,115,105,115,120,104,110,103,111,112,101,109,105,92,112,115,90,93,108,101,103,104,104,103,104,110,103,94,105,106,129,118,121,103,83,106,113,121,95,108,112,87,106,88,98,115,88,98,110,103,95,110,101,105,105,103,106,107,109,109,105,103,110,75,105,104,104,93,124,103,111,116,110,91,109,106,101,120,97,106,115,109,93,103,99,85,117,100,99,96,78,93,106,106,114,109,114,108,103,112,110,102,96,102,99,89,91,119,79,102,109,105,108,108,105,116,107,106,110,97,105,103,96,114,117,106,96,125,100,103,109,117,115,100,106,112,108,102,95,108,106,115,114,114,98,108,117,113,108,81,106,106,98,105,108,130,109,104,109,113,110,100,118,88,105,93,109,100,101,110,110,105,104,96,105,108,122,104,116,103,101,101,109,98,92,105,99,105,120,115,107,118,102,99,108,103,104,100,102,117,106,115,108,118,109,98,106,108,97,119,105,99,98,109,92,102,116,116,97,95,117,107,117,105,108,99,108,108,95,111,105,105,98,112,96,104,105,109,103,106,105,111,102,102,102,113,107,84,108,95,96,107,90,109,95,83,102,104,106,97,96,114,114,106,108,114,114,103,108,111,100,108,96,110,114,99,122,95,94,114,116,100,108,110,110,105,112,116,111,110,106,120,107,104,108,125,105,103,108,108,116,106,110,98,104,102,106,105,102,105,102,109,97,100,112,103,116,105,107,112,109,99,107,105,109,115,99,92,104,111,108,122,98,103,113,95,102,105,103,98,110,108,97,98,103,95,118,96,111,103,120,102,109,105,96,105,110,106,100,101,135,86,109,95,94,101,112,109,99,94,105,107,113,105,117,113,113,94,87,99,113,99,105,113,109,106,105,114,101,113,102,105,100,92,112,98,109,109,108,108,121,111,106,110,99,117,107,109,111,104,109,91,104,109,110,102,95,116,103,101,112,106,112,107,105,103,99,111,115,100,109,97,104,98,109,100,106,105,109,107,100,110,98,97,102,97,102,100,107,103,99,100,95,103,111,107,96,110,105,104,102,95,109,112,104,104,113,108,106,111,110,107,100,100,110,97,103,73,100,91,97,103,107,110,124,114,110,95,115,108,115,103,101,115,120,110,105,103,107,107,110,107,126,107,100,109,107,102,98,105,109,85,85,111,97,102,113,104,99,94,104,96,95,105,102,101,104,102,105,100,110,109,104,102,104,109,114,95,90,97,115,106,118,109,95,94,96,105,98,119,103,100,106,116,119,101,110,119,110,107,73,103,95,98,105,110,109,108,103,114,101,104,108,90,118,108,95,110,100,109,99,109,103,94,90,97,102,108,105,107,117,126,116,118,106,109,99,104,105,106,106,108,102,102,103,109,103,99,91,112,109,107,95,111,102,106,106,99,100,114,110,98,106,113,92,122,90,104,94,110,126,103,107,104,116,109,108,104,112,114,96,109,108,115,108,104,97,108,102,100,100,103,82,109,105,110,106,107,104,105,103,112,83,114,111,108,106,108,108,104,103,121,124,97,114,102,109,74,115,95,99,101,117,105,110,91,104,108,101,103,100,127,121,113,115,98,106,119,109,112,103,94,110,104,101,110,105,111,91,94,99,110,99,90,105,100,109,111,102,123,111,111,110,112,113,123,103,113,116,121,114,114,113,124,103,109,105,86,98,118,101,106,104,102,107,102,110,101,102,116,109,102,95,111,103,99,107,103,107,109,83,114,106,103,112,100,112,109,123,108,100,90,106,99,98,103,104,107,99,110,116,109,99,114,100,109,104,107,106,109,93,109,98,100,107,98,90,101,100,105,112,109,110,109,100,105,110,106,103,103,106,106,102,110,106,108,105,95,86,96,92,102,112,110,102,99,104,101,115,104,128,112,94,112,121,111,109,99,124,98,108,99,113,110,90,105,101,99,101,103,121,105,94,108,86,110,113,117,100,110,116,110,99,108,119,113,105,112,99,102,103,112,113,98,99,79,102,120,104,104,119,110,116,106,106,111,111,105,107,102,94,107,104,106,107,91,102,112,97,114,103,94,100,119,98,102,108,119,99,103,97,104,98,106,106,113,102,111,103,85,110,105,107,112,108,102,119,119,98,108,103,106,91,91,111,92,104,100,103,104,102,106,107,96,118,103,117,110,102,95,88,121,109,108,105,99,97,95,107,111,117,102,109,108,107,104,108,107,107,95,100,96,102,111,106,103,111,95,107,117,99,111,101,102,120,105,99,99,108,109,109,93,109,121,99,103,104,104,94,110,81,113,103,85,102,105,99,113,103,91,97,101,105,111,103,99,105,105,116,95,103,109,103,119,102,94,119,109,108,101,105,91,107,101,110,107,116,98,101,102,103,103,101,97,106,102,109,92,98,119,107,128,110,104,125,113,102,107,98,102,110,103,113,101,105,105,102,90,117,106,106,101,107,109,110,86,107,108,103,105,106,102,109,121,113,109,111,113,75,118,114,112,114,102,102,109,107,106,112,107,109,92,118,108,100,109,105,80,118,109,97,109,103,103,103,112,110,115,98,108,101,108,113,116,104,99,107,114,104,94,120,97,108,111,101,113,98,105,106,108,97,110,104,105,105,90,112,97,98,102,95,79,107,108,100,114,109,105,109,102,109,95,86,96,107,94,103,97,102,99,116,100,99,99,101,99,111,94,94,95,87,98,100,104,108,103,107,104,97,102,96,95,96,99,99,94,86,92,101,100,117,110,106,98,103,102,106,108,111,105,117,99,114,101,100,99,112,99,116,115,98,103,126,102,96,108,91,102,104,103,110,110,98,113,102,103,102,94,100,95,107,103,104,95,93,107,92,100,103,102,98,121,102,100,96,110,104,92,96,107,95,120,114,109,113,101,102,116,97,104,100,113,106,103,109,107,104,113,98,102,110,101,103,99,96,94,105,119,96,101,112,127,90,93,105,105,108,106,108,112,103,106,100,89,100,121,103,109,113,96,104,96,100,109,117,100,103,106,105,108,100,108,112,103,108,91,115,115,103,115,97,102,101,96,113,88,102,102,113,110,106,106,107,104,99,89,108,98,83,101,113,109,111,112,101,91,103,99,109,106,99,109,104,101,104,90,106,122,99,105,103,111,110,99,100,106,103,90,110,115,101,114,106,103,103,104,100,100,105,93,104,96,102,102,106,120,96,106,103,112,109,104,98,102,113,94,106,112,108,93,108,102,99,111,103,106,100,104,110,76,98,100,111,99,103,104,104,104,105,76,99,95,101,102,111,100,117,105,99,99,104,104,111,101,101,104,113,102,110,96,100,101,109,106,112,100,115,100,97,112,105,108,94,104,103,108,110,97,100,98,84,109,101,110,110,102,111,109,110,96,102,112,112,113,85,111,110,97,110,117,102,101,102,111,117,93,104,110,112,98,98,95,103,109,92,103,107,118,110,102,95,101,105,104,104,102,101,98,113,101,107,99,99,119,105,102,108,91,108,112,102,110,106,98,106,112,101,95,105,98,101,103,116,105,99,100,128,105,95,98,110,118,112,112,107,105,102,92,94,98,105,99,96,101,102,103,93,87,97,95,90,105,108,106,113,108,112,109,115,105,107,124,108,108,111,96,101,104,105,103,108,95,117,107,112,101,104,105,105,116,103,109,105,78,114,98,110,97,97,105,101,101,100,89,109,122,96,114,100,109,74,104,100,108,101,101,97,107,110,115,100,112,102,96,99,94,100,114,103,109,98,107,106,102,104,102,105,107,96,116,93,106,91,97,104,88,102,103,82,100,102,101,100,105,104,104,98,105,99,100,105,115,98,115,108,100,103,106,109,99,98,108,95,106,98,101,110,103,105,111,102,98,101,88,113,98,96,106,101,109,102,95,104,112,100,95,94,105,108,111,104,97,95,109,98,107,97,95,122,101,103,103,105,110,109,113,94,88,102,89,106,120,109,103,111,106,124,107,73,106,95,109,108,103,111,109,101,92,105,107,105,99,102,110,97,100,95,111,105,112,91,107,98,106,101,103,102,133,100,100,95,105,102,107,87,110,113,113,104,98,102,110,102,105,97,101,97,106,117,105,109,95,95,106,95,115,92,112,99,89,105,91,103,110,89,87,99,102,93,113,95,109,96,109,107,110,106,101,103,87,89,105,94,99,106,110,123,116,115,111,114,110,100,84,117,100,98,83, +547.03754,112,109,100,100,91,98,101,58,95,99,107,101,90,111,109,90,103,109,107,103,117,102,94,99,106,101,104,105,105,107,101,105,107,108,113,85,101,118,102,120,106,99,91,101,98,106,109,108,108,116,108,91,137,96,109,107,105,88,103,104,105,90,103,102,103,111,95,111,97,95,115,106,101,99,103,99,100,89,103,104,102,110,114,109,106,94,118,97,114,110,110,79,109,100,100,121,94,108,101,105,101,95,103,109,109,114,109,104,103,99,100,109,109,109,113,101,103,113,115,112,118,105,117,102,102,112,105,117,103,107,118,114,101,90,100,97,105,105,99,94,111,124,107,93,119,92,117,120,100,95,104,113,107,104,102,113,114,109,103,109,99,114,119,121,104,126,109,106,111,112,108,88,101,97,102,109,127,95,102,99,119,118,104,117,103,103,98,117,103,112,97,76,112,97,100,100,112,107,98,109,105,102,109,108,99,106,99,114,97,114,100,118,104,120,107,100,103,98,101,113,90,109,103,107,95,112,110,107,107,108,107,113,109,100,108,113,116,117,129,105,96,97,113,99,102,101,101,105,103,112,102,104,95,96,99,90,101,101,102,114,98,95,119,106,101,96,100,101,117,107,95,91,109,93,96,113,99,112,117,100,99,94,107,103,100,110,95,101,115,111,112,108,106,105,98,96,110,110,116,113,103,105,111,107,106,114,107,108,104,112,101,117,107,107,110,108,100,114,90,98,103,87,110,109,99,103,98,108,105,115,90,104,110,100,98,106,104,115,106,103,108,101,107,97,116,104,101,110,102,93,117,110,115,99,94,99,103,110,106,113,98,105,109,117,96,104,117,106,109,98,104,104,107,100,112,102,113,125,99,103,120,107,89,99,104,104,115,108,91,101,111,102,102,99,101,96,97,103,111,103,122,95,93,96,101,92,100,110,91,90,102,108,110,104,109,100,107,105,103,96,103,95,107,112,123,113,91,95,97,112,100,113,113,95,102,108,120,115,90,110,120,98,102,108,99,103,108,99,119,104,97,100,106,110,109,98,100,98,103,120,107,98,96,119,112,102,97,100,88,107,106,97,102,105,108,120,102,115,119,117,110,110,102,101,115,99,106,111,103,111,103,114,109,104,100,124,97,95,121,76,111,108,121,106,101,94,110,105,115,110,106,113,105,113,112,116,102,98,110,85,115,109,99,113,103,107,104,110,100,96,102,95,106,104,93,108,107,106,102,125,104,101,95,115,104,88,97,103,136,108,102,109,85,109,113,110,113,107,117,106,114,99,111,118,113,117,107,93,108,87,125,103,110,121,115,106,96,100,116,99,111,112,101,102,99,110,101,112,109,118,108,92,108,103,91,102,114,106,101,98,87,113,105,106,103,91,93,106,107,101,111,100,108,115,113,96,117,100,112,101,109,112,104,98,108,99,104,111,104,105,107,95,95,107,104,100,106,103,102,102,104,98,99,121,113,98,99,110,109,111,98,112,81,115,122,101,117,113,95,101,102,103,108,102,86,101,109,104,103,109,113,97,103,105,117,102,111,95,107,105,97,101,124,101,104,111,99,93,95,114,101,112,94,115,100,104,98,102,110,100,101,101,108,108,112,104,101,99,117,110,111,107,108,92,97,113,105,90,108,101,117,103,114,120,100,104,113,112,107,115,117,110,108,108,100,100,110,99,103,109,95,97,118,107,109,110,108,90,98,117,100,116,106,97,97,107,108,106,112,86,102,113,108,99,93,109,95,80,124,97,104,109,106,105,108,104,95,104,103,95,106,103,121,88,110,104,101,105,105,101,107,144,119,91,102,100,104,107,113,92,111,98,100,112,122,113,113,106,108,98,99,96,96,106,107,92,104,109,106,112,105,108,109,101,111,107,106,112,106,104,114,111,103,106,108,96,106,97,113,110,106,100,102,102,107,106,101,98,98,99,102,101,91,106,105,95,102,106,105,100,94,110,103,111,107,100,98,110,101,104,104,110,109,107,103,105,101,91,106,110,99,103,103,116,98,113,99,117,113,114,111,111,110,94,111,98,96,115,108,95,121,109,104,110,109,105,97,116,105,122,103,116,105,104,105,103,99,103,114,106,101,100,120,101,112,94,109,104,132,116,107,110,109,104,108,92,94,112,104,109,112,114,115,125,92,104,111,118,107,108,98,118,115,108,101,119,120,91,100,115,107,104,106,98,105,106,102,97,103,105,96,111,104,113,112,117,115,105,97,89,91,124,113,110,106,98,108,97,110,101,109,66,108,102,102,100,103,125,101,113,109,101,103,113,106,116,106,99,101,91,98,110,111,128,87,115,117,109,111,106,107,110,98,83,113,108,106,104,99,108,110,108,113,100,110,93,103,121,120,109,119,117,100,112,103,116,113,108,117,98,113,76,113,101,101,110,118,107,113,109,105,103,103,103,90,100,97,120,112,100,105,119,106,104,99,112,110,85,101,99,109,114,97,98,114,109,101,116,113,116,105,103,107,108,106,110,106,104,103,113,102,93,116,108,102,121,113,104,102,108,114,123,117,108,105,98,108,102,101,113,103,99,109,119,100,103,111,112,116,104,104,105,100,111,106,103,106,68,110,114,96,128,109,117,72,113,104,116,105,104,115,106,110,111,101,87,108,94,118,106,110,92,118,107,105,105,115,99,106,117,107,107,122,103,111,102,110,111,106,93,105,106,117,110,108,111,109,98,98,108,119,109,116,109,99,109,96,113,119,99,110,106,103,89,105,113,100,109,112,106,100,110,92,116,111,109,107,117,107,99,111,97,106,103,102,65,104,106,109,111,110,111,104,110,117,94,123,101,103,117,109,101,120,115,116,110,89,110,118,102,120,110,112,110,104,102,104,112,105,110,102,108,103,106,109,109,110,107,101,121,113,106,107,110,105,133,105,108,106,108,102,116,104,112,116,113,104,110,115,107,100,113,99,105,71,114,77,100,94,108,94,104,104,106,90,112,111,109,107,115,108,103,79,100,98,117,107,99,87,104,116,113,96,95,107,115,119,103,123,101,117,114,72,94,98,107,106,110,109,101,96,105,110,97,122,103,108,107,107,104,102,100,104,103,105,110,109,113,95,102,101,109,101,103,106,93,102,112,105,102,98,112,97,105,103,104,108,107,104,113,120,102,100,95,111,118,106,97,101,107,102,102,101,108,102,108,91,115,106,113,108,102,119,111,113,84,102,100,108,108,104,99,109,79,86,101,117,115,108,115,106,97,98,100,110,97,111,103,103,106,110,111,95,119,117,94,108,113,100,107,105,103,96,130,110,106,110,90,110,113,102,105,118,117,111,112,113,109,83,108,115,115,107,112,97,114,117,87,113,102,98,104,103,106,103,113,110,107,102,110,107,102,112,112,112,88,84,97,101,99,112,108,104,110,117,100,99,109,110,107,106,103,105,109,103,106,121,103,120,106,107,99,115,102,97,104,104,100,102,108,105,111,107,105,113,100,110,107,102,95,121,111,107,95,99,112,112,109,103,111,117,105,99,107,104,108,103,103,112,103,114,106,105,108,108,103,109,111,102,109,109,114,111,99,106,108,94,106,105,114,106,103,109,109,109,115,108,112,113,96,104,113,105,113,95,105,114,100,107,99,100,116,91,107,102,100,106,106,117,109,102,99,99,108,108,107,102,138,114,111,107,107,94,105,106,103,95,108,110,117,105,110,101,109,91,114,110,117,109,125,106,104,97,106,113,109,98,113,104,107,90,110,104,88,114,89,91,99,115,106,116,117,104,116,113,113,97,116,113,115,103,108,117,108,107,110,107,97,106,124,112,109,106,93,88,111,104,108,106,103,119,88,106,106,111,106,109,122,95,107,108,112,113,83,101,122,110,97,113,122,106,101,128,110,104,101,110,112,97,109,104,113,109,112,104,94,93,101,102,94,106,100,93,106,108,106,108,100,96,95,122,98,106,99,105,108,127,104,104,102,100,114,107,112,91,100,106,107,107,121,90,119,112,87,108,107,118,117,114,113,113,105,100,109,118,119,104,113,120,105,121,100,109,103,114,103,112,92,112,108,88,106,105,92,105,121,94,109,121,110,85,105,116,102,121,111,108,105,95,107,110,94,99,114,105,117,102,105,102,105,95,100,102,113,97,126,113,119,113,110,105,110,101,106,110,104,101,102,102,112,102,112,110,99,103,106,102,99,99,113,103,113,117,104,102,100,116,120,91,100,107,102,97,105,110,109,94,116,98,107,102,100,118,116,95,104,108,97,96,94,100,103,106,110,102,106,99,106,101,109,107,108,108,108,107,113,118,94,104,107,108,111,95,102,98,103,107,133,107,104,117,114,102,119,120,102,105,128,108,90,107,109,104,109,117,105,96,102,98,112,114,115,103,108,102,100,97,108,105,108,107,106,104,108,102,111,82,110,112,113,92,96,110,104,102,107,101,109,106,108,108,98,96,95,82,96,105,105,108,131,115,119,112,103,112,94,100,103,115,113,103,95,107,105,119,131,107,102,112,105,103,104,98,100,93,109,112,91,99,104,106,110,105,103,110,113,102,108,109,101,106,115,113,110,117,119,108,112,108,99,105,105,107,107,100,97,107,113,112,99,103,96,109,108,99,114,120,106,92,113,92,94,112,95,104,104,103,116,105,104,116,102,86,109,103,110,105,114,103,121,104,103,102,125,95,110,103,113,113,96,108,103,103,104,102,116,100,101,99,101,117,104,106,99,107,100,94,102,113,98,104,105,95,120,102,99,109,103,108,88,107,107,118,96,99,95,129,121,105,113,93,87,100,104,107,104,111,109,95,97,117,103,107,98,96,100,96,105,104,97,98,100,99,100,114,103,115,108,117,78,102,106,100,93,90,102,101,104,108,95,89,88,106,103,101,97,106,106,114,92,102,95,110,114,108,82,113,101,102,105, +547.17841,98,100,98,103,84,110,100,87,98,88,106,95,89,91,96,112,83,120,95,108,99,117,91,103,76,99,89,103,96,102,104,91,98,104,112,98,117,91,98,93,109,100,115,112,106,107,120,105,106,102,106,105,107,109,98,102,112,105,106,98,89,102,61,88,100,103,100,96,110,112,106,94,91,118,108,108,102,101,108,105,113,112,110,91,128,86,106,99,95,102,102,105,96,94,94,102,100,100,108,100,107,99,108,76,94,101,105,100,102,104,109,103,95,97,114,102,92,106,108,114,102,117,97,103,108,102,96,94,97,100,104,102,100,116,108,104,106,100,113,94,91,108,109,104,110,105,110,108,101,92,91,100,109,98,101,109,92,105,102,112,91,105,107,95,130,88,112,97,114,103,103,95,94,100,112,105,104,100,107,104,120,95,111,102,98,97,96,102,106,112,107,120,105,114,107,116,96,99,93,111,103,106,107,111,103,90,83,110,120,106,100,104,110,98,103,74,103,130,100,103,114,113,104,108,99,110,106,110,104,110,78,105,112,98,112,104,105,94,104,104,130,108,110,107,117,101,103,109,89,109,99,104,111,103,108,106,96,113,91,110,79,100,104,96,105,100,99,113,92,103,106,104,108,105,103,106,97,109,109,101,99,109,99,98,103,104,98,101,106,93,105,108,114,104,99,102,107,99,104,107,95,94,114,121,99,107,110,105,107,103,98,103,120,103,103,109,102,98,102,87,107,94,95,102,95,96,106,102,119,99,119,110,111,102,110,104,116,104,98,111,98,106,113,106,110,101,97,103,102,99,114,93,91,109,106,102,106,109,107,111,111,99,108,103,105,104,95,116,103,116,108,102,111,103,109,103,115,105,98,94,102,110,103,121,105,104,99,117,109,116,98,117,95,108,113,99,110,105,114,110,96,89,91,95,132,105,108,110,112,109,95,109,112,101,100,109,105,97,108,100,96,97,85,107,100,101,109,87,99,109,98,109,100,104,105,114,88,111,109,117,105,103,102,104,100,100,92,91,101,105,102,98,109,109,106,96,93,104,109,104,85,91,110,101,107,107,105,99,100,97,101,109,106,100,102,98,108,112,100,114,95,101,107,97,113,107,105,109,106,103,103,104,108,101,82,104,108,121,101,102,101,97,108,96,107,110,99,108,94,99,111,113,108,99,114,102,94,91,108,116,105,106,111,111,106,114,105,101,103,95,82,113,96,114,113,104,103,106,112,114,106,113,121,82,105,107,102,98,118,104,111,132,110,117,102,102,113,107,98,109,108,98,104,110,97,105,116,103,110,102,103,106,113,100,102,107,105,116,99,125,108,103,104,106,110,95,109,103,107,99,104,100,87,100,110,110,107,107,119,99,105,103,130,107,103,134,98,94,113,95,94,107,99,97,115,91,107,105,101,105,109,117,110,96,116,100,117,110,102,99,97,98,99,104,104,94,106,103,106,103,117,108,98,117,98,104,98,103,113,109,109,88,103,103,89,100,106,109,90,100,120,76,113,111,94,104,102,104,112,110,109,102,110,108,108,97,93,113,99,102,101,93,109,96,106,118,100,101,109,105,103,114,99,126,102,103,88,114,113,115,110,102,109,96,93,103,105,101,97,94,104,94,98,98,94,106,95,108,102,99,106,105,99,104,99,103,94,111,110,107,100,112,104,103,74,113,99,92,130,111,116,104,105,83,104,104,107,106,102,104,111,119,111,107,104,115,105,113,114,112,105,127,99,108,110,107,105,93,104,108,111,100,99,107,101,108,107,91,114,108,115,97,99,105,76,88,111,108,105,110,109,107,102,114,114,106,101,108,109,102,101,97,78,103,106,111,99,105,104,108,109,112,112,104,105,97,112,108,79,104,110,112,93,101,112,97,106,108,103,106,109,94,109,111,97,115,102,106,110,106,74,113,111,104,100,96,104,94,91,103,100,107,121,105,102,109,117,107,118,100,108,100,109,104,107,101,96,92,111,105,109,112,118,104,106,102,101,95,112,107,108,112,101,108,97,91,91,121,98,102,119,116,110,107,103,99,112,101,105,98,112,103,111,106,107,111,103,116,96,95,103,108,108,115,94,104,101,88,102,106,108,104,107,103,99,110,108,108,104,118,123,106,109,106,106,109,102,103,100,107,101,101,103,108,105,109,107,105,103,114,106,102,114,108,120,100,95,112,114,108,100,104,102,98,108,113,97,113,104,110,108,117,105,104,114,98,110,100,102,106,95,97,97,101,109,96,103,101,106,94,88,109,112,104,100,111,103,102,98,108,90,98,95,104,108,92,101,95,101,115,109,94,112,102,107,108,95,101,108,110,109,105,106,98,116,98,105,108,102,98,107,102,106,107,112,95,113,104,118,113,107,114,108,112,108,118,120,106,98,118,103,112,116,117,103,106,111,109,107,91,96,100,109,109,88,105,102,107,99,97,96,102,100,99,109,98,85,96,100,93,96,107,100,95,100,102,102,103,113,106,104,106,132,103,101,94,102,109,110,103,109,118,112,104,100,103,105,105,106,103,93,112,100,110,110,112,95,112,117,108,97,95,108,105,110,92,101,105,112,101,106,112,98,101,100,103,96,110,102,106,96,106,96,99,104,110,110,100,98,95,105,102,111,111,113,106,103,98,103,109,101,89,101,102,100,115,102,112,106,105,107,112,107,102,91,106,106,115,109,98,103,100,109,112,110,106,111,103,100,100,98,116,106,101,99,131,122,101,92,103,116,114,105,120,102,97,107,107,99,99,94,101,100,102,98,110,103,104,105,103,113,119,105,99,116,103,91,96,98,105,105,99,106,79,113,108,104,100,119,105,116,102,102,84,101,112,118,104,101,117,102,103,99,100,102,96,110,101,130,105,111,94,98,104,104,109,104,114,100,109,96,106,108,102,95,101,105,117,103,116,95,117,98,112,106,106,102,121,122,113,87,102,102,102,115,102,108,105,106,107,102,108,105,114,98,105,105,101,98,95,102,91,107,106,106,108,98,110,104,106,102,126,121,117,105,98,102,97,105,101,105,95,111,105,107,113,105,105,104,105,98,113,108,102,108,113,99,98,108,106,105,121,96,102,95,109,100,107,101,112,109,106,128,95,104,105,113,108,107,84,113,106,104,102,113,93,108,109,98,103,113,92,102,107,104,97,108,112,111,99,132,103,98,119,106,108,103,100,105,114,113,99,103,98,103,109,112,98,109,113,101,108,96,112,100,91,100,105,97,100,108,93,102,117,111,98,108,101,108,96,110,109,109,107,105,103,116,113,120,121,100,96,107,108,102,102,102,102,94,96,104,105,132,94,112,111,114,98,100,94,106,105,100,120,105,111,92,107,105,82,91,104,90,105,112,96,99,102,117,108,101,115,111,117,99,107,116,100,117,101,98,92,98,107,107,96,103,93,109,94,97,100,101,88,104,100,98,92,115,104,112,105,102,104,108,106,93,116,102,94,97,108,97,103,109,106,80,108,108,109,108,113,110,97,124,94,109,101,117,96,100,102,98,113,105,111,103,100,106,106,112,106,87,108,117,107,119,103,114,112,95,97,107,107,98,99,104,120,107,110,116,111,111,108,99,125,96,119,97,82,107,105,102,107,108,101,108,98,101,110,88,100,111,104,117,104,101,115,97,107,94,108,102,91,103,107,99,104,121,95,98,106,109,100,102,105,113,94,102,104,103,111,101,103,104,102,103,101,105,90,94,100,105,113,120,103,106,117,95,87,87,107,102,103,99,109,120,105,107,101,112,104,110,89,108,103,95,101,89,99,106,108,96,106,97,106,108,99,112,107,107,109,91,114,110,99,104,114,102,113,105,117,104,101,109,105,98,92,100,113,114,102,109,120,103,101,94,107,95,98,112,110,104,111,107,95,109,96,100,92,110,102,91,102,98,105,110,102,95,101,108,112,110,91,111,100,110,103,105,104,88,98,110,110,99,97,107,115,112,101,98,104,111,103,100,110,111,115,116,114,103,109,102,99,106,103,106,100,93,106,116,98,106,100,97,105,92,107,107,104,111,119,104,92,100,110,103,109,106,103,87,101,98,99,113,110,100,99,102,104,105,107,115,97,96,114,109,110,108,114,109,112,91,95,116,118,107,118,102,109,111,109,104,106,100,108,109,99,103,108,105,106,95,104,110,102,103,116,109,90,91,116,98,101,108,92,110,120,93,107,98,106,111,81,112,104,108,106,105,93,105,102,111,104,100,108,104,106,100,108,111,94,112,101,107,107,101,101,96,107,95,102,113,107,99,102,98,100,96,87,94,101,108,98,104,108,93,120,100,94,94,114,98,102,109,102,96,101,100,102,121,94,113,103,107,112,105,99,100,103,105,94,104,99,115,104,105,109,102,114,108,92,109,111,104,104,113,109,110,102,94,109,110,105,97,115,103,100,103,106,107,99,113,110,89,106,103,105,97,102,108,109,104,100,104,108,98,104,111,96,109,99,97,98,101,91,108,105,100,100,105,92,106,110,110,106,103,98,95,96,115,87,101,106,102,113,111,105,99,90,109,97,100,116,109,106,111,116,73,94,98,106,100,106,98,117,99,69,96,115,104,109,113,90,98,111,117,95,101,109,99,86,100,117,101,109,110,104,103,97,103,119,100,116,103,102,101,107,100,110,91,86,107,102,103,90,109,111,106,101,95,95,107,107,114,102,103,99,99,103,86,94,102,115,102,93,97,94,113,92,102,100,103,104,100,102,105,99,104,109,97,97,96,98,88,103,100,96,115,108,107,92,110,105,107,102,117,108,111,110,104,92,102,115,90,111,99,111,95,101,101,95,100,102,100,108,111,103,111,107,104,97,97,103,112,120,106,119,100,103,106,103,108,103,90,91,98,102,105,93,112,101,96,102,97,108,97,105,97,98,94,99,95,105,107,91,97,104,103,110, +547.31921,90,92,88,106,102,95,109,103,99,102,105,104,95,114,101,96,88,101,113,99,100,110,111,108,111,102,110,121,102,108,110,94,117,115,112,107,104,95,102,95,86,113,87,99,109,103,105,107,105,103,101,95,111,103,117,100,96,103,106,96,105,98,104,93,117,115,94,109,97,96,105,110,88,95,84,111,104,89,96,105,106,106,107,104,104,98,97,112,91,100,104,86,105,92,108,104,100,105,100,106,105,97,105,92,99,131,94,97,100,102,128,109,117,112,112,99,103,112,103,105,93,100,101,108,97,116,104,94,108,109,87,102,99,105,107,120,108,95,104,99,100,104,102,101,96,93,122,117,90,102,109,104,108,68,110,109,109,102,91,96,106,105,114,100,106,103,83,98,107,102,110,126,90,99,113,82,103,105,102,97,100,110,100,97,111,99,107,104,116,91,95,101,114,96,111,101,129,105,113,115,90,97,110,107,107,103,92,104,110,101,96,105,84,101,106,108,105,112,105,101,101,112,107,113,99,106,106,100,116,115,100,103,111,96,115,118,115,110,115,100,85,108,108,105,104,112,113,116,100,108,96,118,108,106,90,102,109,103,103,108,105,137,91,104,92,116,108,107,110,109,109,121,95,105,96,105,100,112,97,99,115,105,84,109,101,105,109,102,102,107,105,105,117,95,116,102,96,113,94,97,90,101,110,111,98,105,103,99,127,114,94,106,102,108,101,99,104,105,99,107,114,100,105,106,102,104,91,116,121,117,118,98,104,102,98,110,107,100,103,76,103,104,99,106,121,112,105,105,100,96,115,103,111,119,107,101,112,92,83,114,107,98,106,96,107,109,109,110,93,108,106,103,113,101,98,100,106,96,106,102,105,118,95,103,100,102,105,105,95,104,111,100,91,105,106,107,100,109,106,108,99,112,100,92,107,106,89,101,114,113,97,99,109,101,84,99,113,95,119,98,100,103,99,97,108,99,92,92,87,111,111,97,106,102,101,104,97,94,92,105,111,102,108,112,98,109,107,111,106,99,106,102,104,101,106,105,113,103,104,111,107,105,108,87,109,108,102,104,109,104,116,98,110,103,108,105,103,115,112,110,96,103,95,98,104,107,108,98,109,112,115,116,110,106,100,105,107,100,103,101,115,103,102,97,100,112,105,107,102,102,117,102,119,117,112,109,111,89,102,105,108,104,118,96,103,121,116,106,109,100,91,106,111,106,111,100,105,80,113,104,110,103,99,102,109,110,110,95,123,109,103,109,99,112,105,106,100,81,109,106,102,109,109,104,102,101,112,104,97,98,100,100,108,103,98,110,111,105,119,109,109,98,110,105,98,109,98,107,95,99,108,107,114,102,109,112,105,107,106,115,94,105,111,95,100,106,137,97,100,108,109,106,112,103,103,103,117,106,112,117,100,90,118,107,103,108,95,114,103,97,105,117,112,93,107,112,93,106,98,105,107,101,117,106,95,119,109,105,103,111,104,119,111,117,108,109,99,108,108,114,112,117,95,111,102,97,112,92,104,129,109,99,115,111,94,122,96,102,136,133,101,101,100,98,105,98,109,115,105,100,107,101,98,108,102,104,109,104,121,99,90,100,99,87,100,98,105,105,111,102,107,89,100,97,104,110,102,105,109,101,107,104,97,112,122,68,126,112,102,104,118,103,110,100,105,96,107,99,112,104,115,105,111,104,101,101,101,102,112,111,104,110,112,112,111,109,101,110,104,105,113,114,120,110,105,98,89,97,109,100,108,102,104,100,111,105,105,98,102,97,110,96,100,98,103,108,117,107,108,107,100,118,104,85,106,104,94,106,102,105,103,120,98,96,113,110,114,106,98,91,116,103,107,91,108,109,111,114,103,113,98,107,111,123,95,118,107,106,114,110,112,95,103,113,115,112,109,115,111,94,106,103,104,105,101,87,83,117,99,116,132,96,100,105,94,104,116,109,103,108,105,113,98,113,127,101,101,106,110,107,110,110,100,119,97,105,112,110,108,100,101,102,103,103,108,112,109,122,146,110,106,125,123,109,108,98,110,113,115,92,104,102,136,109,118,117,102,109,94,108,102,112,114,109,105,95,98,104,103,101,121,110,103,99,95,107,113,95,114,95,105,90,94,101,107,106,103,105,109,97,102,110,110,104,103,105,107,117,106,96,105,110,114,108,106,111,96,108,100,110,101,115,99,102,117,99,103,108,103,109,109,109,120,108,105,102,102,114,101,100,107,100,103,102,95,102,79,95,109,106,115,110,102,99,110,101,107,109,110,103,110,123,106,102,100,100,104,107,102,97,100,105,113,107,113,112,99,92,96,112,98,112,102,93,117,109,128,108,106,111,100,106,106,99,109,92,104,113,117,111,126,116,106,93,119,110,108,113,108,76,116,114,114,97,102,124,109,112,107,109,104,108,114,110,109,113,106,105,100,106,114,112,111,115,103,127,98,105,103,89,104,98,113,99,112,113,97,97,116,109,96,96,107,105,90,104,98,115,112,99,99,103,111,104,90,101,105,106,98,104,135,108,93,109,92,99,92,102,108,94,112,107,113,112,108,105,99,111,105,94,84,100,116,102,107,99,111,100,115,112,109,93,95,107,99,97,106,95,108,98,113,102,104,104,102,105,100,101,113,104,97,84,104,109,112,110,96,101,107,105,95,102,100,109,96,94,110,111,108,102,106,106,111,95,100,101,122,134,108,101,108,106,102,104,97,96,107,97,108,113,105,111,110,106,104,106,104,115,107,115,102,108,113,106,109,110,90,130,104,104,101,117,103,98,108,96,96,108,106,108,92,109,107,90,116,114,106,91,99,102,114,102,102,103,118,104,97,96,100,103,107,98,97,112,96,109,105,95,109,108,101,106,100,99,101,108,116,105,104,113,107,103,112,117,108,99,90,102,109,102,104,105,102,103,121,106,106,102,111,103,109,112,114,102,104,108,116,105,110,103,107,104,101,102,110,109,102,106,81,133,99,112,99,93,107,124,100,104,114,116,106,109,98,111,117,102,104,96,100,101,107,132,107,106,96,102,96,94,101,112,104,103,107,117,108,109,111,104,107,106,79,121,91,106,105,106,109,103,113,100,104,124,116,109,103,110,110,117,108,85,100,109,107,111,99,104,105,100,103,113,92,108,103,105,97,101,103,97,134,113,107,109,106,103,108,102,105,85,107,103,117,107,105,93,109,94,103,104,103,102,101,106,107,113,97,102,109,112,102,112,105,102,100,102,105,107,106,102,102,103,106,112,108,110,106,122,98,109,95,107,108,99,102,106,103,93,101,91,120,106,91,104,104,102,107,95,108,112,95,100,107,110,100,108,85,104,98,108,105,102,108,113,113,107,101,107,111,105,102,112,98,103,111,106,107,115,114,108,100,97,94,98,97,106,109,103,95,110,114,100,104,114,95,109,95,106,99,95,104,104,105,95,106,113,106,104,109,94,114,98,92,97,113,112,108,102,117,92,99,97,100,103,115,109,103,107,106,107,108,94,107,107,119,91,104,110,111,116,109,116,122,102,115,103,102,111,106,103,102,106,104,118,97,99,104,100,108,111,99,117,104,93,119,91,99,109,111,100,98,95,105,102,106,111,118,106,107,114,101,113,97,106,113,99,108,92,104,113,104,109,95,117,113,101,101,115,109,76,106,81,109,105,99,99,109,107,103,87,96,100,103,99,106,116,105,101,111,101,96,100,100,100,102,109,112,98,109,113,103,90,80,113,112,89,99,106,112,97,105,113,125,116,101,90,110,113,106,112,102,103,104,107,109,102,106,102,98,99,107,104,94,107,109,115,109,88,99,110,109,100,116,108,110,99,107,112,107,99,100,109,111,106,100,103,107,104,100,123,111,99,119,105,107,102,101,101,98,108,90,104,98,107,105,109,101,108,95,104,110,105,97,103,103,117,107,104,98,92,99,103,109,104,107,111,106,110,119,102,108,98,96,103,106,111,105,105,103,116,94,101,99,107,95,117,101,92,112,125,93,113,110,104,102,106,104,96,91,78,125,99,93,106,102,90,101,101,111,114,95,105,116,104,91,107,109,104,113,92,119,102,105,92,90,91,102,102,100,99,114,105,116,101,97,93,106,104,107,98,102,118,105,112,99,103,84,100,100,99,111,110,99,102,102,109,96,108,109,99,111,115,109,102,113,108,87,101,96,102,103,101,114,106,102,99,115,103,100,98,92,116,110,96,108,103,102,105,98,100,93,112,109,98,109,109,94,99,102,109,96,109,96,101,110,103,115,98,93,108,88,110,96,104,105,105,110,99,104,103,105,111,99,108,106,104,116,95,104,96,94,99,119,99,108,111,120,103,107,125,110,104,111,95,101,107,113,107,109,100,103,124,113,105,114,98,113,124,116,105,99,109,104,112,110,109,108,101,96,102,113,111,107,100,94,104,94,108,103,100,110,110,106,106,100,100,99,98,92,95,104,101,103,98,103,96,111,100,95,106,104,111,92,99,109,101,117,95,101,106,101,98,104,112,87,111,102,108,106,98,100,95,106,95,102,112,108,98,93,108,106,100,93,117,100,98,98,75,114,98,104,113,98,108,81,97,121,113,112,114,103,97,104,91,100,98,110,101,108,101,113,118,111,101,101,105,125,104,97,112,106,112,106,94,102,103,90,108,106,95,97,100,107,96,106,107,100,107,105,117,107,100,98,98,113,118,80,114,113,107,103,122,107,111,99,101,104,112,109,91,105,92,103,102,99,108,116,107,111,106,105,116,111,118,93,105,95,104,100,107,103,104,91,102,108,107,92,105,107,104,110,100,109,103,103,91,111,111,88,95,104,109,105,100,91,105,107,110,103,101,101,96,109,107,108,98,104,107,101,105,119,97,114,112,99,99,102,115,98,87,101,94,94,107,96,104,105,108,99,102,116,97, +547.46008,98,105,102,95,70,97,94,109,101,111,102,103,107,91,106,125,101,105,96,103,104,104,96,103,94,107,104,108,109,110,95,99,91,78,117,105,115,117,118,120,113,106,92,99,109,107,106,100,99,107,101,112,104,108,107,94,109,104,102,90,95,106,109,101,114,108,99,119,110,99,101,94,99,111,97,115,90,92,107,103,116,111,110,111,101,106,95,95,108,102,110,96,98,98,98,110,109,95,99,89,104,100,106,101,97,108,107,102,94,99,108,101,104,104,102,105,98,99,102,95,93,101,116,111,103,110,107,94,101,110,110,110,98,94,111,113,94,98,99,102,104,99,99,106,105,100,114,102,104,99,104,95,99,102,113,105,106,101,103,109,111,104,107,99,106,106,102,104,109,112,107,104,94,86,98,105,102,101,104,118,109,115,101,103,97,108,106,98,110,110,105,106,97,114,112,110,70,108,103,107,111,97,104,101,68,121,100,90,131,105,105,102,102,97,107,102,108,102,102,107,97,100,78,82,100,119,103,98,109,117,106,100,102,103,106,103,112,102,102,110,99,101,102,104,105,97,109,124,104,100,103,97,105,100,101,102,98,101,96,110,105,138,99,95,100,121,120,99,121,100,103,102,111,108,103,107,100,111,103,95,101,115,100,109,109,106,89,108,102,99,103,94,101,94,111,110,107,112,103,133,91,101,102,100,96,112,101,101,88,104,98,111,113,104,112,119,127,105,105,105,96,94,100,107,93,109,113,98,96,105,108,94,108,98,103,103,111,105,105,103,95,98,105,106,105,108,116,104,114,119,125,108,107,116,111,107,111,125,97,112,97,87,101,92,112,106,97,99,100,105,109,91,116,113,105,116,100,117,102,110,119,110,96,109,111,105,92,104,108,101,125,105,96,110,104,101,106,103,106,107,98,113,116,104,99,93,102,105,86,119,104,100,114,112,109,96,107,104,102,81,97,112,99,96,97,92,109,91,80,107,101,108,109,129,91,90,102,121,104,104,115,104,106,103,91,111,102,93,120,117,106,110,104,100,99,98,112,102,108,118,79,104,106,87,113,103,108,103,102,99,127,101,114,98,103,97,98,114,70,106,104,91,112,109,96,104,116,107,119,99,108,99,114,76,86,106,103,95,107,103,116,105,97,103,100,103,96,106,106,84,109,97,98,96,103,105,95,124,107,102,105,95,103,111,109,106,99,101,105,120,105,117,94,114,104,109,104,102,103,115,106,104,101,102,104,112,126,103,99,106,111,106,103,117,103,102,101,104,105,104,102,103,90,118,96,108,87,104,113,114,104,98,105,118,106,99,92,106,99,108,110,112,109,93,111,101,101,101,128,104,91,102,104,101,103,114,100,105,80,108,104,108,107,100,103,106,105,105,113,108,99,104,96,108,96,100,84,108,76,107,113,104,99,98,107,121,101,98,105,100,88,99,100,121,90,118,97,119,110,100,104,110,105,105,106,96,107,104,101,105,112,107,105,109,112,98,111,116,122,99,109,110,93,107,106,102,110,101,115,101,123,106,113,103,97,116,101,96,108,105,88,96,109,101,101,98,106,119,107,107,100,109,104,117,98,103,106,114,108,101,114,102,107,106,97,112,88,107,124,98,102,97,110,85,94,94,103,98,110,89,103,109,101,107,104,104,106,100,110,111,103,115,103,107,87,96,104,106,114,95,110,113,128,112,110,111,112,111,106,98,84,108,107,107,122,100,119,109,102,102,108,96,100,121,114,97,100,103,110,103,99,113,107,95,112,102,97,91,122,106,111,104,112,116,110,113,101,110,91,102,112,104,118,110,98,118,105,97,96,101,96,111,102,103,105,104,103,105,113,109,112,102,94,114,117,100,106,111,104,107,102,99,112,105,102,113,95,105,115,114,109,113,108,95,100,103,113,101,93,102,106,132,111,95,94,102,102,113,100,104,107,89,101,99,106,112,96,104,105,125,98,111,115,106,105,95,106,105,108,108,104,106,106,102,107,105,123,99,95,97,106,115,100,86,104,116,109,106,102,110,115,106,99,101,103,99,103,111,101,102,109,100,112,101,107,113,95,102,97,104,108,104,105,121,111,98,112,102,105,103,106,99,104,108,100,105,94,99,110,93,100,102,100,113,97,95,99,116,106,104,113,111,100,105,100,113,121,88,96,98,109,106,115,99,101,102,112,95,102,105,101,102,105,106,106,107,103,100,110,91,98,104,108,99,109,98,106,107,88,122,115,101,112,112,96,105,101,107,105,103,106,116,109,98,110,80,105,93,106,106,102,115,96,103,105,115,112,96,104,101,104,102,94,109,101,101,108,101,107,110,119,107,102,99,110,110,105,133,94,95,83,106,110,100,102,99,112,107,102,111,105,103,115,122,99,123,103,125,106,95,115,99,121,96,113,103,104,108,105,108,103,99,112,104,109,100,114,100,115,97,113,110,98,101,96,95,101,106,102,108,109,112,103,96,109,107,102,113,106,99,106,98,104,104,96,116,98,105,118,111,112,84,110,113,110,108,112,99,107,109,104,96,97,107,106,118,111,107,108,111,111,107,107,103,98,101,116,116,106,97,103,110,109,92,113,105,101,107,94,98,116,103,101,105,98,96,107,120,103,99,105,106,116,109,101,109,116,103,112,102,111,99,111,109,109,113,103,102,99,112,112,114,109,109,95,111,99,105,116,114,116,130,94,110,102,99,117,105,97,95,110,103,106,108,97,114,107,111,101,104,103,104,108,100,87,99,109,112,103,103,98,116,93,110,105,110,101,113,101,108,104,106,100,108,85,112,93,109,79,100,101,107,98,109,115,114,107,99,102,120,107,107,106,116,111,112,106,102,103,109,105,109,93,125,105,114,84,108,93,120,128,102,109,114,113,108,105,108,113,117,124,107,109,117,111,100,103,101,107,108,111,109,116,110,102,114,99,102,115,108,104,110,114,103,105,114,115,113,103,109,95,103,113,103,106,105,107,112,102,100,99,102,101,103,109,106,93,107,111,95,102,108,113,113,119,106,103,107,103,103,105,111,120,108,113,112,107,103,106,100,106,112,114,82,99,94,108,99,106,103,111,106,109,102,107,108,114,107,111,95,120,110,115,81,113,100,109,100,116,113,105,99,99,117,116,103,117,113,101,116,112,113,105,104,94,91,117,88,98,116,105,101,97,110,110,106,104,109,109,103,109,112,93,106,104,112,106,95,109,97,101,99,110,87,109,116,99,112,96,113,110,111,99,98,98,128,100,108,118,110,111,112,115,117,112,105,95,113,100,98,109,94,93,106,113,99,105,102,122,101,99,107,105,101,91,116,95,110,96,109,113,112,113,111,97,102,105,97,112,99,98,114,102,117,106,102,103,117,106,103,124,105,116,116,107,112,104,109,101,107,94,124,105,108,111,101,105,104,115,110,123,102,104,112,102,120,105,106,113,125,110,107,98,106,111,103,102,107,106,98,110,96,103,105,102,102,112,103,102,101,102,113,108,91,104,114,110,107,112,116,110,105,109,112,116,93,104,101,117,95,111,102,107,110,112,104,109,128,103,119,108,112,104,111,106,108,102,110,102,121,111,110,105,99,97,106,105,110,115,97,96,107,95,112,102,104,110,106,111,109,109,101,105,102,102,103,115,113,100,108,112,110,113,99,111,85,103,103,98,99,105,96,123,110,101,109,116,102,99,99,128,113,92,112,95,89,112,127,104,100,113,106,107,117,119,108,105,113,100,117,106,112,99,101,108,111,112,105,105,107,95,106,110,94,96,100,106,105,104,103,121,95,116,99,119,106,106,112,99,113,104,117,103,103,104,108,98,108,109,105,100,108,117,88,101,112,101,97,97,101,106,98,111,104,99,107,110,112,104,94,111,102,102,113,108,108,109,105,113,112,118,99,100,103,113,105,106,102,96,103,107,107,107,111,112,106,110,112,100,107,106,105,115,118,95,108,100,98,100,103,98,111,109,116,105,108,120,117,114,111,101,109,106,108,103,120,114,101,96,107,107,102,102,106,111,113,105,109,112,102,105,105,109,100,114,103,112,104,95,104,107,119,105,85,116,117,110,107,109,106,108,105,112,108,105,123,101,103,102,115,111,103,110,107,96,114,101,100,105,113,104,101,113,98,106,103,104,115,108,107,101,106,95,110,100,107,105,100,98,90,105,100,94,92,107,116,108,108,99,109,110,95,108,99,92,114,96,110,105,108,115,110,102,110,97,94,99,98,94,106,89,102,121,99,93,104,116,103,101,93,92,103,105,112,104,98,99,114,106,87,102,100,110,90,114,102,107,104,99,106,99,102,106,113,108,110,117,100,110,114,105,102,109,109,101,107,109,112,110,105,107,106,111,99,109,98,105,105,105,115,110,106,112,108,106,107,108,105,100,103,102,124,107,109,100,118,124,109,108,105,115,108,102,117,119,114,111,108,96,106,103,112,106,97,102,103,90,106,98,98,101,104,99,113,109,104,111,103,91,106,113,108,105,111,109,106,108,99,108,98,93,94,101,102,114,110,102,108,104,106,115,99,98,116,104,110,93,100,117,104,109,110,105,113,106,106,93,132,103,109,99,112,108,101,106,112,102,123,93,104,99,116,105,101,111,94,106,102,104,119,111,102,99,112,109,102,108,116,94,99,114,117,104,106,104,106,112,106,115,104,107,108,104,100,97,106,107,99,101,94,97,94,113,105,98,96,120,102,113,89,111,111,109,98,109,106,109,92,98,105,103,108,95,99,102,96,103,102,101,103,107,106,110,112,112,109,113,95,98,107,109,105,95,97,94,92,115,100,103,111,107,112,121,103,84,110,113,111,105,115,109,114,92,119,118,101,102,110,110,108,107,104,103,113,117,104,99,109,111,107,103,99,102,110,114,95,96,111,99,106,109,96,104,97,97,103,103,106,92,106, +547.60089,105,96,100,95,97,123,105,107,98,100,104,111,99,104,106,104,96,94,108,106,125,102,107,100,104,106,114,113,103,109,106,113,106,107,115,95,94,108,109,103,109,105,116,103,89,110,97,117,99,106,136,111,113,102,107,105,120,101,100,102,100,116,120,101,104,104,102,85,100,103,112,89,104,87,93,106,105,96,107,113,99,90,112,114,105,91,99,91,105,111,107,98,107,115,104,88,113,102,97,99,107,108,107,90,107,104,98,108,102,104,103,127,108,99,119,113,114,102,101,93,117,108,106,107,103,136,108,102,109,95,117,109,108,107,113,99,99,114,97,94,103,100,113,99,114,111,106,99,111,102,98,101,113,99,110,118,95,100,111,97,105,107,119,115,103,104,108,114,108,106,99,102,111,104,107,102,114,90,108,113,90,117,96,104,105,100,97,98,105,115,104,102,100,95,105,104,104,108,108,113,112,105,116,103,99,100,107,113,110,108,98,108,112,110,107,89,108,124,101,105,93,113,97,107,96,104,95,101,104,99,103,104,109,121,111,76,109,124,117,106,105,103,99,109,106,107,97,119,99,111,109,105,111,100,98,108,105,107,101,95,108,105,102,106,112,112,112,100,111,103,106,110,108,102,107,107,109,131,100,100,102,105,110,110,101,108,99,112,106,103,113,89,107,103,114,98,108,105,99,99,101,101,85,110,103,110,101,94,107,109,99,116,108,109,99,116,110,105,105,108,105,95,108,103,112,110,99,95,117,113,104,95,107,109,115,107,105,103,103,106,95,107,110,95,117,109,105,102,112,102,104,112,98,106,111,103,99,105,105,101,99,110,108,89,112,102,103,97,104,111,118,101,113,97,108,99,101,108,113,119,108,101,105,108,102,114,105,87,99,109,103,109,106,116,101,108,96,108,112,111,105,103,108,105,109,107,105,107,103,97,108,99,101,105,106,97,103,105,113,107,107,65,103,107,104,101,109,95,105,103,108,104,110,111,101,100,110,103,103,117,110,97,110,104,102,113,101,112,103,98,108,99,105,113,99,110,109,99,110,105,89,99,109,116,114,109,108,100,104,97,105,110,107,99,106,108,92,123,92,102,100,113,115,109,94,104,108,99,105,110,98,108,104,102,122,118,101,105,108,113,119,102,117,103,110,110,109,114,104,103,107,104,110,87,103,112,104,109,111,101,100,103,112,111,104,115,106,110,112,100,106,114,101,105,95,105,106,112,111,105,107,111,102,95,103,104,115,95,103,97,113,121,78,113,100,100,104,110,101,109,106,106,103,103,109,110,103,108,110,102,108,101,101,107,104,100,103,113,90,110,115,104,106,105,103,100,103,112,103,97,118,95,104,94,122,104,113,97,109,101,116,110,110,113,104,127,105,109,92,96,97,110,108,112,113,101,117,109,104,111,106,109,100,103,125,111,99,104,112,96,103,104,106,114,108,106,97,107,125,105,115,117,111,68,107,106,103,108,101,102,106,109,114,108,107,101,104,112,103,107,120,117,111,110,98,112,99,92,105,112,114,106,100,99,103,110,115,109,109,106,111,119,112,80,109,110,108,108,101,107,115,102,112,102,96,104,116,102,96,101,109,114,91,100,102,104,109,110,97,103,100,104,110,98,105,105,96,106,106,97,104,101,113,113,89,108,105,108,109,115,102,100,110,105,123,109,102,98,101,106,96,102,113,95,111,117,108,99,109,106,113,105,109,96,104,92,100,110,119,93,113,108,113,105,105,110,92,110,101,109,112,105,118,100,102,109,103,109,108,99,105,106,112,102,139,119,111,108,105,110,104,118,110,111,97,103,117,97,118,104,99,98,111,96,112,108,101,102,105,106,118,110,107,107,103,99,116,106,107,107,119,115,102,94,109,103,119,109,110,104,96,109,104,86,91,106,100,113,94,99,102,95,122,111,98,97,103,104,102,99,108,99,108,106,99,108,111,100,101,109,101,98,99,100,110,97,105,110,109,109,106,104,100,99,109,105,110,97,103,106,105,105,105,105,108,98,96,106,109,95,103,106,98,91,117,104,103,116,91,107,125,108,106,115,107,100,105,102,92,113,113,111,104,106,124,106,140,108,91,103,102,105,102,111,94,106,102,98,96,106,105,105,104,100,81,102,105,94,105,102,106,106,85,122,109,102,105,108,108,103,101,122,103,111,110,108,105,108,101,101,118,117,106,108,108,108,113,112,113,105,90,113,114,109,96,110,109,106,98,119,98,85,110,108,114,121,92,105,112,108,109,99,105,107,102,116,113,102,105,96,96,107,103,113,112,109,96,98,106,126,111,110,118,111,104,102,106,97,111,105,106,109,111,95,102,100,104,98,99,103,108,102,110,117,109,97,112,113,103,118,107,110,110,118,113,122,101,108,101,107,112,130,112,104,106,110,125,101,107,103,99,118,112,112,98,109,98,102,95,109,93,101,97,105,108,107,109,101,101,88,110,103,94,112,100,116,101,100,104,110,95,113,112,99,84,111,117,110,114,100,98,110,112,107,100,114,117,106,103,100,120,99,110,101,100,99,91,96,107,105,104,112,98,106,107,116,113,121,101,109,110,110,112,103,102,100,96,98,98,105,105,96,93,104,102,114,99,126,109,79,101,96,119,106,106,105,106,96,106,95,112,93,89,106,103,120,106,87,113,102,113,103,115,102,103,108,109,101,92,108,99,106,100,109,113,106,114,100,107,110,113,112,102,120,109,104,110,103,89,106,112,118,117,108,116,104,87,100,95,100,102,98,90,120,109,106,101,93,99,111,115,107,104,105,113,106,105,98,107,109,112,101,109,110,116,107,124,113,98,103,103,100,101,94,104,110,100,107,128,100,107,105,127,116,110,98,107,102,65,104,97,110,103,107,108,108,111,102,107,110,109,103,111,122,107,109,110,111,105,113,103,104,104,104,102,103,115,112,105,105,99,107,102,108,103,95,123,110,122,114,118,110,103,116,117,104,112,106,96,111,103,99,97,99,105,105,109,103,114,101,97,103,102,105,113,105,96,106,117,119,99,117,101,114,101,104,110,99,111,103,95,119,98,108,121,100,108,101,98,112,107,109,103,108,102,107,113,116,96,98,122,116,109,118,105,96,105,95,109,99,102,114,107,120,106,98,97,102,98,108,108,114,98,97,106,109,113,106,101,104,96,96,104,97,120,118,108,91,122,109,106,113,112,84,102,100,109,121,98,113,110,114,101,104,105,96,117,112,106,100,108,107,111,91,116,107,94,102,112,101,98,99,112,96,107,104,111,91,83,95,105,97,103,104,91,95,105,109,126,100,101,96,106,111,111,113,97,101,111,107,103,104,108,111,113,114,94,114,105,109,105,111,107,92,117,117,106,100,113,99,106,76,101,107,106,87,111,104,112,102,100,98,102,97,98,101,96,109,112,102,83,107,107,110,105,111,98,102,106,98,104,104,113,101,95,115,108,107,104,106,105,105,101,104,99,120,108,109,107,95,99,100,108,94,85,99,91,106,111,113,95,108,94,115,109,108,104,107,102,115,104,102,108,105,103,102,102,108,109,103,109,108,105,108,106,109,94,105,109,112,103,94,113,102,106,112,90,103,104,100,95,103,105,110,106,107,113,100,106,108,113,117,112,105,100,103,112,104,117,106,113,129,100,100,107,117,106,93,109,122,110,110,99,105,105,112,102,119,108,98,117,98,106,106,109,99,100,96,108,112,103,108,105,108,108,106,110,106,102,87,95,102,100,93,103,105,110,104,113,87,102,105,100,98,114,101,103,101,108,106,102,107,106,82,101,105,101,103,103,100,96,115,113,114,103,113,109,107,107,96,110,104,115,93,108,128,105,96,103,102,106,107,111,97,102,108,107,117,113,125,98,106,107,102,112,103,102,106,94,97,110,114,109,106,109,89,100,106,107,91,104,108,99,116,113,111,110,99,111,107,107,94,98,108,108,95,95,106,117,99,106,108,87,115,106,121,112,102,97,121,93,106,103,113,102,110,104,111,102,128,116,113,104,106,110,102,107,111,104,105,98,102,98,113,86,122,101,109,108,101,98,101,102,112,109,121,108,113,107,112,108,101,116,94,104,109,116,102,96,107,113,111,102,109,124,116,120,105,102,116,103,100,92,109,102,104,106,102,107,127,108,99,100,105,102,105,101,101,99,115,104,105,100,108,111,109,115,99,107,100,104,123,117,94,104,108,100,107,109,99,114,96,103,104,110,107,112,115,102,116,96,95,112,115,103,107,95,111,116,103,106,107,109,95,105,119,95,103,107,102,98,113,109,114,99,79,108,109,104,111,107,111,100,117,112,108,101,99,90,94,107,102,112,113,111,98,108,114,110,114,107,98,102,97,105,99,116,108,101,105,98,120,116,103,96,100,112,112,98,93,108,105,99,109,101,121,114,80,100,98,101,99,109,106,102,117,100,112,97,98,113,111,104,95,112,92,96,102,102,108,110,122,101,109,102,99,97,101,102,99,112,92,106,102,104,104,102,119,95,106,109,96,106,115,111,94,111,110,106,104,77,105,108,103,99,102,98,117,122,99,104,102,98,106,98,110,101,107,111,109,101,109,110,112,109,102,110,100,109,96,103,90,108,117,113,108,119,99,106,118,108,92,98,105,102,104,103,108,106,106,108,111,112,119,99,99,91,113,107,67,102,114,117,88,98,101,97,99,97,92,104,100,95,114,102,121,103,103,102,108,106,121,121,106,112,99,109,94,127,91,114,75,101,108,114,102,119,107,100,94,104,123,115,115,109,109,96,108,107,89,91,99,109,105,97,110,112,110,105,103,107,107,106,113,98,99,103,103,97,110,110,105,102,91,82,118,110,104,106,102,72,113,116,104,89,101,92,109,108,96,96,101,101,94,94,91,104,91,103,91,86,102,106,124,112,115,104,108,103,97, +547.7417,101,98,103,104,103,88,107,100,108,99,106,70,92,88,115,97,96,109,120,102,100,101,106,102,95,95,104,94,104,123,107,94,106,101,102,110,96,111,106,103,101,98,100,111,114,96,93,101,93,101,109,99,94,91,109,109,117,87,97,102,113,107,87,97,93,103,114,102,102,110,105,95,93,103,94,115,100,110,117,102,110,104,106,91,103,107,108,108,96,102,87,109,110,93,101,100,100,123,103,112,83,95,106,91,106,98,97,99,108,91,117,99,112,112,102,102,110,103,108,98,110,95,100,105,103,103,115,108,98,100,99,103,104,101,102,96,95,98,94,108,113,106,102,102,101,100,105,95,107,116,114,101,110,94,137,106,99,99,105,110,108,98,105,143,106,104,90,110,102,103,107,107,92,112,107,93,113,108,108,98,99,116,108,79,98,110,101,100,117,105,99,100,95,100,102,95,98,96,66,107,98,107,102,89,112,100,99,114,108,98,99,106,110,91,102,112,102,99,102,98,111,107,92,103,96,106,99,124,97,110,103,102,110,94,97,103,97,105,101,85,110,93,115,105,102,102,105,112,114,98,99,103,94,112,116,102,101,112,95,106,95,107,107,96,96,114,100,117,87,95,110,110,101,107,113,119,109,106,100,104,102,117,95,108,96,105,100,95,111,100,107,120,106,107,91,103,109,96,111,112,85,107,103,96,96,113,115,115,99,102,108,101,72,107,100,102,111,102,100,115,102,96,98,119,103,104,102,103,99,103,105,100,117,98,102,107,110,112,98,103,99,105,95,95,96,103,112,113,103,95,104,114,107,95,113,104,100,99,109,98,109,90,104,99,93,109,114,85,92,100,111,116,117,119,104,108,106,108,102,117,95,100,109,92,112,98,114,106,108,101,121,104,112,111,102,98,101,93,115,114,96,108,97,106,109,115,102,104,107,108,99,102,106,109,102,107,113,96,110,100,98,95,101,98,92,75,97,105,108,111,102,105,98,110,104,111,102,110,96,108,84,104,97,103,100,106,101,91,105,106,100,101,99,108,105,99,97,100,110,104,104,106,108,105,105,109,111,113,99,100,102,114,108,99,99,104,100,109,106,104,102,109,114,99,112,103,107,110,103,116,100,114,114,106,99,102,98,102,104,103,105,106,104,107,98,102,100,114,110,101,86,104,105,111,119,84,95,104,95,105,99,121,110,107,100,99,111,110,98,97,96,108,98,109,99,101,106,91,110,99,98,111,106,115,95,101,107,96,112,77,106,108,121,102,104,100,95,101,103,99,108,93,97,103,101,111,109,105,100,102,94,98,108,108,110,105,109,98,110,111,108,96,112,95,94,99,92,114,108,104,106,105,93,112,108,120,99,103,98,113,95,106,114,109,110,94,108,116,103,105,113,108,113,109,110,108,116,96,95,120,94,110,104,110,100,95,90,88,109,103,106,120,96,109,102,100,98,110,108,105,114,109,98,103,117,108,113,114,107,103,104,99,113,108,104,112,111,106,114,108,105,107,102,103,87,89,121,97,104,105,107,100,97,90,99,106,107,90,108,108,111,104,110,97,103,98,116,117,107,98,111,108,106,113,104,101,111,108,110,101,98,102,106,107,110,113,118,124,108,100,112,109,110,107,107,97,93,103,105,86,98,98,112,105,105,113,86,110,98,114,102,112,108,98,99,109,114,101,107,107,103,116,115,108,112,106,100,95,112,98,101,102,101,86,103,107,121,98,108,103,113,101,105,107,99,103,116,112,107,102,112,103,103,98,107,106,104,101,103,95,104,100,97,93,106,104,102,109,102,100,98,106,113,107,111,101,108,97,105,114,103,121,110,105,96,94,113,80,113,108,126,111,113,117,100,100,101,113,104,107,102,104,95,114,95,112,97,94,107,103,106,101,109,107,102,104,108,112,103,107,110,103,120,95,111,93,107,113,100,101,94,112,103,128,94,98,94,107,106,108,99,91,106,107,110,109,96,107,103,98,109,107,98,81,108,106,107,99,91,104,111,96,101,90,108,106,104,116,99,105,106,107,105,101,109,110,95,105,103,111,104,112,113,116,110,99,101,119,101,103,102,108,102,104,91,102,88,103,106,102,106,114,106,104,112,104,106,111,103,107,103,112,106,110,96,104,95,105,106,102,104,97,92,100,107,94,100,89,113,104,94,109,110,119,124,98,109,90,93,100,100,106,107,116,101,97,111,99,104,108,102,109,100,107,101,90,103,113,102,112,109,110,112,111,107,113,91,112,102,79,116,108,101,91,101,104,99,116,107,112,102,100,89,109,109,100,108,118,105,98,96,109,102,96,103,100,106,95,117,109,100,115,110,96,98,106,99,94,103,104,113,103,118,105,108,102,99,111,102,127,119,127,106,124,94,116,117,117,119,119,110,118,113,96,94,103,108,108,111,112,103,105,104,107,110,110,113,108,107,111,101,107,103,101,113,105,106,106,109,104,107,108,105,100,99,108,116,105,103,107,96,112,106,96,96,111,95,105,98,110,118,100,116,94,106,103,102,100,100,85,95,115,102,92,99,106,102,110,99,106,99,103,98,117,98,98,133,114,103,113,112,113,101,88,98,103,108,106,99,90,81,91,95,104,100,105,99,104,112,100,114,95,105,101,100,108,95,99,107,96,105,72,104,99,99,103,102,107,100,108,101,110,105,108,110,94,105,98,107,112,101,94,102,111,105,114,105,107,97,99,108,109,107,106,93,101,98,95,106,101,117,110,94,91,91,102,111,108,115,106,111,107,106,107,108,94,108,114,110,109,113,109,96,89,108,106,102,93,95,104,101,114,102,122,118,104,110,116,115,107,109,112,119,101,108,95,111,119,102,99,103,112,103,110,96,106,95,93,95,112,104,108,109,106,110,99,111,133,96,104,108,100,99,100,110,119,101,95,98,96,100,112,103,104,112,103,97,100,101,95,103,110,105,120,116,106,100,103,117,109,110,115,103,92,94,78,99,110,109,106,103,115,102,100,103,99,97,105,103,110,101,113,108,108,108,91,101,113,98,112,99,99,111,109,108,92,97,106,110,111,106,117,117,90,99,103,121,93,122,106,87,104,99,103,104,125,102,107,110,112,115,104,104,106,106,104,108,101,97,105,96,113,100,116,110,115,104,120,106,99,108,96,104,99,75,98,101,98,100,99,90,95,111,102,102,115,104,102,106,96,117,108,108,114,96,100,110,100,110,108,106,102,112,102,97,108,101,112,96,110,106,118,97,99,108,110,108,118,104,100,118,121,121,106,116,98,98,100,96,100,100,102,107,95,96,109,102,103,100,112,115,103,110,106,109,109,81,104,109,100,99,113,97,111,89,107,91,94,99,103,103,107,109,105,99,100,105,100,103,100,102,114,106,97,108,121,101,112,107,100,95,102,99,105,105,106,104,101,111,103,97,97,111,111,106,110,99,71,96,107,109,89,107,93,101,100,96,109,110,98,105,117,91,105,99,104,106,116,94,94,113,97,107,90,104,105,91,100,107,91,111,109,116,106,104,101,105,101,108,111,105,92,105,112,103,104,78,107,104,102,89,105,98,95,106,92,93,100,102,117,121,89,107,114,117,102,100,102,92,102,107,104,99,108,104,96,109,102,107,106,93,111,103,91,113,92,100,114,105,102,98,110,110,111,102,99,98,106,100,110,105,100,102,101,111,104,107,96,101,94,101,104,98,110,104,119,121,112,110,104,103,99,114,113,103,102,101,98,112,95,104,105,110,102,117,97,102,101,104,112,104,116,99,98,109,108,94,110,94,106,106,117,102,116,104,99,108,92,98,106,112,113,99,122,109,105,108,112,101,91,107,110,127,108,113,112,112,99,101,119,106,93,90,108,96,99,102,103,106,107,108,85,104,107,103,105,112,91,99,114,94,103,92,99,91,107,115,87,90,103,92,107,117,102,103,102,111,101,112,105,98,105,120,106,109,94,100,97,113,121,103,109,103,103,93,98,87,108,102,91,111,104,105,105,117,96,117,112,94,99,129,111,107,110,109,106,104,106,100,106,108,107,96,106,98,109,99,101,106,108,98,97,102,106,107,105,91,91,92,99,104,101,108,114,93,103,103,108,95,99,104,96,100,112,112,106,98,83,105,100,99,100,96,115,121,99,102,97,110,116,113,103,103,105,94,101,94,98,103,115,103,96,102,91,104,102,104,121,93,106,114,89,115,98,88,102,88,106,114,84,107,93,98,106,96,103,102,102,106,102,116,103,93,112,111,105,97,101,109,109,97,99,106,105,113,113,111,92,109,104,102,101,104,110,109,107,107,100,96,106,110,108,96,110,98,103,106,84,103,101,97,86,110,101,113,103,109,99,102,103,103,100,100,95,111,95,105,110,112,95,95,112,102,111,105,120,104,109,108,102,111,108,97,110,109,107,115,113,115,93,110,94,110,102,100,107,98,103,106,108,111,99,96,100,99,99,110,106,100,106,100,103,109,101,99,84,97,103,104,101,101,103,104,119,103,99,108,95,104,100,99,113,101,104,104,106,94,110,107,90,94,95,99,93,92,105,95,107,107,117,116,105,106,96,87,98,100,101,103,113,97,105,100,105,107,89,92,102,99,97,98,92,105,112,95,113,103,105,98,106,98,91,95,88,102,102,97,105,107,101,105,109,106,94,101,107,105,120,103,100,93,98,110,102,102,102,102,111,103,101,103,97,98,103,123,81,111,107,106,103,98,102,109,108,109,99,102,112,95,110,121,95,83,98,98,86,109,110,103,83,111,88,98,109,93,91,99,115,101,102,105,117,100,91,98,118,93,105,93,107,120,107,101,89,105,121,101,98,95,98,117,89,106,107,105,92,113,112,107,94,100,122,97,109,99,114,92,98,95,93,96,87,92,112,105,100,111,95,82,98,106,96,96,95,100,110,97,99,107,94, +547.88257,104,89,104,99,100,103,108,108,106,102,93,108,104,113,99,98,117,99,109,90,112,93,91,103,95,99,106,96,105,103,94,97,106,88,116,92,110,101,92,96,100,109,99,108,111,106,104,103,96,101,98,108,104,97,96,91,102,88,106,106,86,102,94,120,98,111,94,112,101,95,106,96,98,101,101,95,105,99,100,93,95,75,97,105,96,108,72,99,101,95,97,102,97,101,79,91,108,95,99,115,104,98,91,101,100,95,103,114,98,102,112,125,98,96,104,101,98,103,108,104,105,102,103,109,92,118,114,86,100,112,103,103,89,105,104,95,104,102,109,94,113,90,105,92,97,99,101,97,97,82,102,100,105,92,99,110,101,90,104,89,88,108,105,92,103,101,105,98,103,109,108,101,99,107,100,109,109,90,113,108,97,96,101,102,105,107,101,94,103,104,98,103,98,104,99,114,107,99,95,108,99,112,103,120,100,117,108,92,115,103,99,99,101,95,88,108,97,98,120,113,104,103,97,103,99,107,124,104,102,104,97,91,101,100,92,110,103,106,111,99,96,98,96,77,110,89,104,100,99,99,100,104,104,97,101,91,91,107,99,103,102,96,107,110,111,107,105,103,104,100,110,110,102,91,97,117,96,103,101,105,113,107,110,102,101,102,87,103,101,112,96,101,112,101,115,106,98,101,117,112,91,96,96,106,95,121,120,99,96,105,99,110,113,92,108,95,113,97,104,106,97,103,101,104,99,110,96,120,119,99,110,95,113,108,108,97,112,95,104,93,120,104,103,97,100,99,96,110,106,109,101,95,114,105,108,108,95,115,112,101,96,94,113,104,110,89,103,100,99,109,113,109,116,99,118,99,101,99,101,107,110,99,76,113,94,102,104,96,99,99,104,97,103,102,100,109,110,98,102,116,96,104,66,101,107,105,108,92,105,96,94,100,105,107,94,108,121,104,117,95,112,88,109,99,105,92,104,97,113,100,87,95,106,100,108,98,122,99,104,84,106,107,114,98,91,104,100,90,92,102,105,104,107,100,101,119,95,96,114,105,108,103,108,106,118,107,98,105,102,105,101,86,112,97,107,97,105,109,105,98,99,95,95,95,95,102,102,99,123,103,110,117,105,118,85,98,96,113,105,103,117,98,104,104,98,102,101,107,91,97,104,95,93,105,104,97,98,100,93,104,110,97,103,100,101,105,105,110,101,109,90,93,101,104,96,99,94,102,108,108,103,104,110,93,92,98,95,92,100,103,113,115,99,108,102,95,110,95,104,103,98,99,96,108,104,95,108,107,106,106,107,92,105,108,103,94,96,97,101,109,100,105,109,101,96,111,107,109,112,89,114,109,99,102,109,103,103,103,121,101,98,103,105,100,99,95,100,104,106,98,100,102,114,110,108,101,97,113,106,113,105,104,97,95,104,100,104,94,106,91,96,103,110,99,103,106,105,100,112,112,112,109,88,94,96,102,108,105,112,107,94,103,105,103,92,101,98,105,108,112,110,103,92,113,103,99,117,102,109,98,105,102,102,100,104,106,97,104,108,98,96,99,109,99,101,110,109,86,108,88,111,94,115,107,97,102,110,74,91,96,100,102,100,106,103,110,101,114,104,104,109,94,102,99,104,103,106,107,110,96,101,108,104,112,99,114,108,102,104,104,102,90,90,112,101,112,103,91,103,113,106,102,104,88,95,104,115,96,100,102,99,105,87,107,91,101,103,106,112,104,107,102,97,104,93,115,94,101,117,92,90,100,107,95,97,97,108,99,102,109,104,98,110,105,92,91,115,98,101,102,101,111,103,101,116,96,104,96,110,87,124,91,96,102,109,99,139,94,99,98,106,93,113,101,112,103,106,99,99,111,108,107,107,98,104,112,100,105,95,90,106,99,126,102,112,106,109,100,106,120,102,100,102,100,97,100,108,98,98,108,97,103,94,107,96,97,99,110,112,108,95,99,99,102,103,99,105,117,116,101,114,114,95,104,97,113,109,88,105,103,103,113,107,113,103,111,95,103,104,112,108,107,119,103,103,87,101,121,104,93,116,113,109,101,120,95,99,99,102,96,97,96,107,98,98,98,111,102,104,95,98,112,90,84,94,110,106,103,102,101,99,100,109,103,104,114,99,103,108,110,102,111,100,98,112,98,117,118,114,95,105,114,108,105,99,91,107,105,100,80,94,99,105,113,107,110,100,102,117,105,114,99,106,103,90,106,100,93,102,99,105,104,110,106,99,99,94,107,95,102,95,96,91,116,99,111,103,106,116,103,95,96,105,88,110,85,103,107,121,98,100,98,118,103,90,90,126,95,88,104,102,120,108,112,102,93,117,102,96,108,98,99,102,104,84,109,102,115,105,105,108,103,118,122,107,114,109,106,104,103,127,121,106,101,106,83,93,97,109,72,101,107,111,98,106,109,101,102,96,91,91,103,104,113,110,112,104,105,112,97,112,101,100,129,117,119,107,98,121,110,104,104,99,103,100,120,108,115,114,105,117,86,115,105,106,92,123,105,105,113,100,115,110,107,95,100,103,117,108,100,106,106,117,111,108,88,105,106,104,101,106,105,114,100,117,98,95,87,114,101,97,109,96,83,111,112,100,113,108,107,112,129,109,110,110,115,102,102,102,115,102,92,106,103,104,95,106,115,102,113,116,101,113,110,116,95,132,101,110,106,109,121,107,96,108,111,107,98,101,110,94,98,113,119,100,106,111,84,99,113,102,106,97,102,99,98,111,113,100,106,114,109,110,107,111,117,112,104,103,109,106,111,87,82,112,129,105,99,111,102,107,111,108,110,111,109,116,102,102,100,108,98,103,91,107,102,99,85,112,98,116,111,106,104,91,110,102,110,113,114,123,99,123,123,110,94,112,102,97,129,112,108,102,110,108,124,106,112,119,101,101,105,109,106,106,108,114,107,116,94,119,109,113,94,101,110,113,104,112,99,110,104,127,106,110,98,107,114,90,101,112,116,115,100,100,123,116,128,115,114,119,108,114,104,110,105,98,102,105,109,108,105,105,104,115,106,99,103,117,108,100,116,112,106,109,114,103,100,114,115,109,116,101,111,114,108,108,106,109,102,100,110,115,118,107,105,104,106,92,89,106,91,112,112,106,102,97,110,103,125,103,104,102,107,99,104,104,110,101,102,105,102,110,112,111,112,106,111,123,113,92,100,102,101,102,103,101,102,116,101,98,99,116,109,104,109,97,103,102,110,99,136,117,106,95,97,106,114,114,104,99,100,107,114,105,113,105,111,96,93,100,110,115,109,99,119,100,108,127,109,107,121,121,109,105,94,108,88,108,120,112,103,107,112,108,108,105,85,100,105,93,96,108,121,104,105,104,105,104,103,105,109,104,104,106,108,113,107,106,102,102,103,94,99,113,107,106,109,110,105,83,113,116,103,96,108,105,105,102,101,99,94,113,88,107,113,103,92,126,102,101,112,103,113,127,103,99,100,101,107,111,79,103,98,96,104,110,99,116,106,77,98,97,120,112,102,71,116,102,102,102,97,114,103,115,103,110,106,96,97,104,117,103,94,110,109,102,116,101,110,113,112,109,106,109,107,101,101,99,106,96,119,115,106,114,104,101,110,107,109,101,102,95,100,110,112,95,95,106,103,108,112,117,106,105,105,102,110,101,96,80,106,100,117,97,107,110,117,102,113,109,106,98,113,96,118,103,110,111,104,108,110,101,122,99,99,110,117,110,103,108,99,105,112,103,105,99,99,101,96,91,104,106,98,115,112,109,115,104,107,111,89,109,96,105,119,107,108,113,113,109,108,101,107,104,105,119,107,108,117,118,121,108,108,103,109,103,98,105,98,117,105,98,104,113,113,108,102,105,94,102,106,104,103,91,107,91,107,109,104,98,100,108,92,108,102,103,98,105,100,101,99,111,106,113,113,109,105,106,101,100,101,110,118,110,108,99,114,106,111,109,102,111,110,114,86,103,107,100,104,103,113,99,119,113,114,106,102,105,112,91,113,83,92,100,102,104,108,109,104,114,109,102,115,102,114,111,105,103,100,106,108,102,108,109,120,106,101,109,114,103,108,114,104,95,112,106,99,113,112,101,109,102,117,104,111,111,108,102,115,92,99,96,109,102,109,102,95,104,122,99,93,98,113,95,116,104,116,103,108,103,124,102,99,109,109,125,108,105,113,109,90,105,110,102,96,102,100,115,99,92,94,111,110,99,115,111,116,102,111,113,111,107,106,112,103,107,105,118,99,105,86,108,96,105,102,104,123,112,105,106,104,112,108,111,109,103,88,103,109,103,100,99,106,118,103,97,101,98,99,107,95,108,119,120,106,88,108,110,100,108,94,103,104,85,108,110,106,111,101,99,112,100,103,108,113,100,107,106,95,91,112,112,104,111,105,111,105,98,91,111,100,100,113,106,105,101,103,104,108,109,105,99,95,103,109,101,113,106,111,95,104,112,108,103,65,107,108,114,101,106,102,106,94,128,102,103,105,107,94,104,95,107,100,116,94,100,107,99,95,94,100,94,116,107,105,76,104,112,99,103,106,103,94,106,102,105,124,110,101,112,101,111,103,104,110,107,109,117,98,104,105,107,113,101,95,98,103,113,100,96,106,114,100,106,110,104,106,103,95,99,104,99,109,101,103,114,105,116,94,103,108,101,110,93,100,92,96,107,97,102,102,108,103,109,98,85,100,99,102,102,94,105,115,98,100,108,102,87,89,100,103,101,107,91,98,105,97,102,106,114,110,102,112,100,96,112,98,90,92,103,97,105,115,100,92,107,104,108,116,105,104,99,104,101,101,104,115,85,98,111,127,95,88,100,104,115,95,102,98,115,98,95,103,111,103,93,104,99,93,98,100,112,108,105,102,103,99,97,89,126,110,87,104,106,90,90,102,97,109, +548.02338,114,94,113,100,98,90,102,107,97,109,95,93,98,101,120,93,88,104,116,103,112,123,123,103,106,109,102,81,103,110,111,107,107,102,106,96,99,97,106,114,98,104,88,95,94,99,105,107,88,105,103,114,108,120,97,112,117,93,101,107,108,101,94,92,100,93,97,93,111,98,86,105,101,99,95,107,101,103,100,110,110,105,100,113,96,101,95,118,101,99,97,112,106,103,106,105,100,102,91,100,94,114,91,109,115,101,94,103,112,82,99,101,102,108,97,92,115,100,92,106,103,102,103,102,118,96,99,97,118,113,113,109,103,99,103,96,97,98,97,96,101,110,107,107,91,107,112,109,96,104,101,106,104,102,108,77,98,103,103,94,102,98,99,106,104,100,98,109,107,103,124,100,98,102,103,92,105,109,104,103,108,102,100,109,95,92,106,99,91,104,106,101,98,101,101,99,106,101,102,105,100,109,104,108,102,107,110,116,122,107,90,110,116,93,103,95,112,103,114,101,104,111,111,106,98,110,116,100,113,103,103,104,98,102,111,103,105,105,102,102,117,112,110,110,81,102,108,112,98,99,95,100,95,114,102,80,104,109,87,104,99,114,109,102,91,102,104,110,104,94,101,109,108,100,98,107,96,103,108,110,98,114,98,99,109,100,101,103,93,106,98,101,96,107,113,103,117,102,109,113,97,105,104,115,110,104,95,103,101,105,106,113,108,105,103,108,107,105,102,105,103,114,93,99,115,101,95,106,105,117,112,101,106,99,109,111,106,103,99,103,120,95,102,106,98,107,100,94,114,108,109,101,100,111,105,106,106,103,110,104,113,105,105,109,101,91,103,115,99,91,103,109,91,114,98,112,108,100,111,105,115,109,113,98,111,104,132,97,109,107,110,100,96,98,102,104,111,102,109,101,95,106,95,114,99,107,99,118,102,110,98,113,104,99,99,106,100,107,114,122,107,101,100,97,92,97,88,113,96,110,98,101,111,107,111,89,97,103,106,109,104,102,98,94,109,121,114,108,99,125,97,102,104,108,95,100,107,94,105,104,89,101,113,106,100,66,105,95,104,103,100,107,104,104,105,97,113,99,102,108,99,104,105,104,101,110,112,102,112,80,102,108,103,103,101,112,92,95,105,114,98,103,104,112,98,102,101,103,103,111,98,91,96,97,107,101,112,98,109,108,104,110,101,100,97,123,106,115,102,90,106,105,108,112,98,95,88,104,96,97,114,112,102,106,95,97,117,91,105,101,102,98,114,101,98,98,104,113,103,95,98,109,100,100,114,112,113,84,92,115,91,95,103,108,104,106,102,104,97,98,103,99,106,91,91,94,106,102,105,103,106,105,106,104,105,99,93,97,103,102,95,102,100,103,99,109,101,99,101,119,93,98,106,109,103,99,108,108,112,99,110,105,107,93,113,108,95,114,97,90,101,101,93,103,99,104,101,95,115,105,104,107,104,101,91,92,105,108,104,107,110,104,100,111,109,99,111,95,109,116,99,96,105,103,111,111,107,101,104,92,103,120,103,100,113,110,105,110,108,104,101,112,109,109,91,103,75,108,109,98,118,107,96,114,124,100,102,66,103,105,97,101,92,101,90,106,102,99,74,102,107,104,100,88,98,107,102,102,111,101,103,94,106,103,94,105,103,90,99,109,102,99,91,98,104,96,104,99,112,92,117,98,107,110,108,100,106,103,116,87,111,110,107,112,126,114,112,107,108,108,115,106,95,103,102,99,97,90,95,98,120,109,107,106,103,109,99,97,82,81,110,99,98,87,108,109,104,98,106,112,104,113,99,101,96,105,98,118,108,102,92,99,106,104,108,101,112,111,104,103,120,105,104,95,100,98,100,108,99,107,107,104,79,114,118,95,103,94,95,113,104,109,108,104,103,106,105,111,106,94,113,110,103,105,111,96,94,105,95,110,106,102,113,109,115,106,102,94,110,110,100,108,108,95,110,104,94,105,120,137,99,99,96,104,106,104,90,104,100,106,107,111,98,110,88,105,110,121,107,113,114,111,103,114,96,101,107,98,118,102,94,124,103,94,108,98,93,102,109,97,117,99,104,107,107,100,94,111,97,129,105,100,110,103,100,88,91,96,104,110,99,108,100,104,103,99,100,101,97,101,117,105,117,104,108,104,97,99,100,109,101,115,120,99,110,102,112,112,100,117,99,112,104,113,110,113,109,97,103,88,101,103,100,107,103,104,115,102,101,104,96,108,97,109,109,103,102,105,101,106,109,110,109,96,99,107,105,113,104,104,102,118,100,97,112,114,119,101,104,122,104,116,113,100,108,101,107,106,99,111,97,103,103,92,112,114,102,108,101,99,111,106,106,122,105,82,106,105,95,102,97,111,99,118,106,109,106,120,108,126,134,103,107,112,103,111,101,120,109,113,108,109,99,107,105,104,102,105,104,111,93,116,102,110,99,110,109,99,104,98,96,95,90,103,111,116,102,101,93,106,98,104,122,101,103,104,99,109,118,104,105,111,117,107,108,106,95,95,105,105,105,121,110,100,98,93,101,110,119,105,103,115,105,98,102,95,111,107,98,110,106,107,119,112,111,92,95,110,103,101,97,90,102,106,115,105,100,109,112,103,113,101,113,103,116,105,121,96,101,102,108,100,94,107,98,108,112,101,110,104,108,106,118,111,102,97,100,92,101,106,102,102,102,108,96,118,100,102,121,111,106,98,106,110,95,115,97,96,110,100,110,121,111,100,113,107,100,124,107,81,110,110,103,102,112,92,107,112,100,110,109,102,99,107,92,104,109,110,111,114,118,100,102,107,102,107,105,108,112,95,116,110,103,106,104,102,117,105,107,109,112,102,109,100,102,100,115,109,108,104,113,99,113,109,112,103,108,116,110,107,110,112,106,106,110,107,106,105,109,103,106,109,116,111,97,103,106,99,112,108,109,105,101,104,112,96,109,102,107,112,98,109,101,101,106,108,95,116,96,109,112,105,117,101,100,119,94,94,121,99,109,99,100,101,107,98,113,100,104,124,117,115,95,97,104,102,108,110,95,104,117,99,108,90,106,108,111,108,105,115,103,114,101,108,105,102,100,104,115,108,113,107,110,108,107,99,113,112,78,99,99,99,102,119,112,98,98,101,109,96,108,108,108,112,108,111,110,109,88,115,105,105,96,103,110,109,100,107,117,115,102,102,106,114,104,100,99,103,109,116,101,112,122,103,103,98,113,102,104,110,97,98,107,104,106,100,100,102,113,98,100,111,91,113,96,98,107,106,105,111,94,97,109,104,102,104,98,104,87,102,115,98,113,110,96,110,107,109,103,111,112,111,115,115,121,106,106,99,113,99,91,107,89,101,101,103,105,107,116,102,95,102,99,105,104,95,97,118,113,97,110,98,107,104,99,105,98,108,107,100,95,95,96,102,100,105,103,107,101,109,100,109,99,104,112,96,99,123,100,102,111,100,111,103,93,102,106,104,98,102,100,102,104,109,105,104,97,96,102,108,113,112,86,117,111,108,124,110,95,98,107,106,120,114,102,106,111,110,102,98,98,113,103,111,105,114,102,106,106,108,111,99,101,106,103,108,111,110,100,102,93,107,100,101,102,111,109,106,101,104,91,90,109,112,106,121,111,87,103,100,109,101,131,99,106,102,96,102,136,112,112,101,98,111,105,102,91,105,100,103,112,108,104,106,99,99,117,116,103,100,98,102,111,108,108,104,111,108,105,82,111,109,100,113,99,101,119,102,109,108,108,95,95,100,101,105,108,113,96,107,103,109,110,102,106,102,97,106,111,103,95,106,96,112,111,115,108,100,92,109,114,86,116,98,97,113,110,82,100,106,104,106,113,109,88,87,105,106,97,99,96,100,106,102,112,114,106,102,104,100,100,101,105,87,106,101,115,117,109,103,101,98,106,99,95,97,97,100,101,99,104,99,108,111,109,102,108,95,104,103,109,113,104,109,101,116,109,103,96,99,99,117,105,87,109,94,109,105,102,110,112,87,81,104,104,104,104,101,87,103,117,101,111,99,108,112,112,104,117,117,125,110,113,120,123,106,100,107,112,108,109,85,84,107,103,112,108,105,106,94,106,110,99,109,110,109,100,103,103,113,96,94,105,102,103,107,104,107,121,94,101,103,110,100,113,113,101,80,106,100,108,103,95,100,110,98,103,102,101,93,98,103,118,111,116,125,106,101,103,111,112,104,114,111,101,94,100,107,104,109,99,116,114,113,95,115,119,101,105,94,97,105,118,101,101,117,98,90,108,91,100,117,103,108,101,116,104,100,108,102,102,105,100,105,95,109,99,100,102,95,92,103,117,98,124,103,117,112,102,109,110,100,99,102,100,93,105,110,128,110,114,106,106,113,97,101,111,107,111,107,102,111,93,101,99,104,110,108,104,97,104,93,103,109,97,113,105,101,104,103,85,111,103,104,103,115,95,100,109,100,105,107,109,103,108,82,99,101,108,105,104,113,85,100,102,103,101,92,113,100,104,109,110,121,103,111,113,103,110,109,100,100,98,107,105,115,112,114,110,106,100,104,100,102,112,106,100,113,105,109,99,112,107,103,93,110,110,113,94,120,107,107,95,111,124,104,121,111,112,112,95,115,108,96,99,109,107,104,113,76,108,112,92,100,100,101,111,101,109,111,102,129,108,109,92,106,101,110,103,98,112,100,106,110,100,104,97,109,113,100,116,106,101,118,97,104,120,107,106,101,108,104,109,114,102,113,109,107,107,106,101,111,95,107,105,120,94,106,121,95,102,83,108,109,115,106,95,102,101,94,91,95,113,106,104,98,106,102,99,91,107,106,109,96,109,100,110,108,96,115,107,106,111,97,84,86,109,106,99,103,102,74,86,73,104,98,108,101,91,111,107,109,107,98,120,91,103,101,116,104, +548.16418,99,102,110,106,96,110,103,119,82,99,104,99,97,99,103,93,125,103,105,91,102,99,106,103,96,106,122,101,103,91,94,100,100,100,107,101,100,106,93,98,103,103,100,101,94,97,121,120,99,106,103,110,91,102,99,86,104,91,93,83,101,101,100,104,93,118,93,114,95,99,107,101,98,104,105,97,90,109,108,96,92,100,101,111,110,102,98,114,91,109,107,105,92,101,98,107,96,108,100,104,96,97,79,99,107,101,101,105,98,90,113,103,104,108,102,92,92,111,98,106,101,97,99,112,101,99,103,105,120,136,97,99,99,98,96,104,104,106,106,93,114,96,113,104,101,106,125,108,104,117,97,111,110,100,86,113,101,92,97,108,97,110,109,101,107,104,99,99,106,100,99,124,87,102,109,69,104,95,105,99,94,104,110,107,94,104,93,88,106,103,95,106,110,101,109,110,101,106,105,109,108,97,111,104,91,93,106,95,95,107,93,109,97,112,109,104,117,99,102,101,105,109,107,93,106,112,96,102,104,100,93,106,105,105,110,126,108,104,103,108,109,115,98,103,105,99,104,109,106,111,102,97,96,104,92,100,109,107,103,92,106,125,106,98,100,105,101,102,107,104,102,99,112,99,113,101,105,117,92,103,100,99,112,105,100,97,98,103,98,111,103,105,105,101,105,116,113,105,101,94,101,116,105,103,95,104,103,105,105,99,96,112,97,99,107,102,112,116,93,104,118,104,107,99,99,92,95,101,113,107,91,104,108,108,104,109,105,92,102,105,103,108,102,105,109,100,96,104,106,97,108,108,102,111,99,103,98,99,95,94,95,112,102,91,89,118,98,114,105,88,114,108,128,104,108,101,103,108,104,107,95,106,108,110,111,100,102,104,109,87,111,96,80,110,98,101,91,100,109,107,100,99,92,109,93,99,105,116,84,93,99,121,111,105,110,108,98,100,98,108,102,106,106,109,104,103,97,101,92,116,102,98,101,97,100,108,95,98,107,97,103,96,100,110,94,101,107,101,97,100,94,110,106,107,103,106,96,95,102,106,87,99,112,103,98,99,104,98,114,107,106,112,110,103,100,106,103,109,112,113,111,97,103,94,107,106,94,123,114,100,103,129,113,103,96,88,102,99,109,103,110,104,102,95,102,98,102,101,99,92,105,103,105,96,120,107,106,86,93,105,105,98,105,92,106,106,88,95,114,102,96,96,98,101,125,95,99,100,113,114,104,103,115,101,108,104,106,98,102,109,109,105,100,101,92,93,106,124,101,137,140,105,98,103,115,84,104,110,83,83,102,101,99,109,94,100,102,104,97,106,107,113,108,91,103,102,112,112,99,105,101,108,98,111,112,113,98,99,95,98,103,103,115,103,97,90,108,102,104,99,105,93,110,103,107,95,98,86,117,100,96,95,103,84,120,91,106,108,101,95,104,105,105,98,96,114,89,96,96,93,113,105,98,106,107,87,71,108,104,97,94,93,101,101,113,105,84,102,115,97,108,113,100,117,98,112,99,102,95,100,104,96,109,116,101,114,104,101,119,103,107,90,103,96,99,103,87,111,87,96,102,113,99,116,101,98,103,100,107,101,94,96,102,86,110,99,97,112,116,99,109,86,106,99,100,105,95,105,104,109,115,98,91,84,104,88,107,104,101,104,105,111,95,97,94,97,104,88,113,117,107,96,113,104,109,99,96,105,134,114,115,102,93,87,104,97,98,98,98,101,101,103,104,95,102,114,90,100,107,104,103,107,117,109,92,104,108,105,107,105,105,102,118,92,90,109,121,103,113,97,109,96,96,98,97,102,69,104,107,121,92,103,100,105,109,108,113,82,98,105,108,93,103,105,109,86,103,95,108,97,106,105,107,98,96,104,108,116,89,101,98,97,95,102,115,105,100,107,104,105,90,120,118,99,104,114,93,96,97,104,104,103,96,113,107,100,103,103,94,105,108,99,105,94,87,106,94,97,98,113,93,89,99,108,104,94,98,98,94,102,103,95,96,102,108,118,109,98,105,102,107,98,112,109,101,103,84,101,106,104,113,110,109,103,108,78,95,96,93,97,85,76,118,113,113,90,105,110,99,113,108,110,107,105,109,96,107,115,108,99,105,111,102,99,93,106,93,111,105,108,106,109,108,99,102,105,110,104,106,106,103,108,110,97,98,102,97,102,96,114,114,101,97,108,111,96,103,90,100,98,98,100,103,106,98,94,103,98,83,97,116,111,96,95,106,96,103,102,95,92,74,111,97,99,103,84,90,96,98,104,100,102,108,110,121,105,97,114,101,110,94,113,117,109,91,102,115,95,106,102,106,105,100,105,97,118,104,98,109,102,127,117,110,96,110,98,109,108,91,103,99,103,101,118,100,104,110,100,105,107,113,122,116,109,115,112,98,110,101,98,112,100,108,105,97,103,98,103,90,107,91,100,95,102,103,102,100,111,97,106,100,101,95,113,101,104,117,100,102,95,108,101,105,95,98,107,109,102,111,111,99,107,108,102,95,106,109,92,108,111,114,100,107,98,110,113,120,98,118,101,106,117,105,104,95,107,99,101,115,106,105,118,100,100,93,96,105,96,100,95,108,94,94,104,101,104,106,122,111,97,119,102,128,102,108,97,108,108,102,103,108,89,108,90,100,108,95,108,102,100,98,90,115,101,92,105,98,95,106,101,120,112,105,97,97,113,114,91,98,98,118,110,107,108,91,97,96,99,102,94,113,112,101,100,106,102,103,102,112,94,101,93,123,107,115,110,106,106,96,95,105,113,103,73,114,115,102,101,110,106,110,108,106,121,111,99,106,112,107,107,92,104,119,108,105,108,116,104,101,105,107,97,114,111,103,111,88,100,101,99,102,101,104,103,98,99,97,106,95,103,108,112,115,100,107,97,105,95,105,107,95,111,107,106,81,103,107,109,97,116,103,103,118,104,106,111,98,117,102,101,105,97,104,104,100,76,102,114,108,103,111,98,97,104,109,101,94,100,113,95,103,107,95,108,113,106,99,106,95,120,105,104,106,110,106,92,106,108,82,103,95,113,104,106,100,113,110,104,110,117,122,106,93,108,107,100,100,77,98,110,103,94,95,100,110,99,114,111,104,103,107,115,107,116,107,98,109,95,101,96,95,104,101,105,99,98,110,105,95,97,105,91,106,96,85,100,121,101,99,101,103,119,105,100,103,99,100,96,120,97,98,105,98,115,104,98,106,103,107,94,116,117,105,95,100,94,109,101,116,106,107,113,111,112,105,95,94,110,100,106,105,102,110,95,91,109,108,112,100,108,103,103,105,106,103,108,103,104,92,101,111,98,108,103,109,99,96,95,113,96,95,115,115,98,95,103,95,96,118,111,102,110,117,102,99,103,98,102,107,101,106,108,89,107,111,99,116,120,104,101,105,109,108,106,103,120,109,99,99,98,103,104,102,102,107,112,111,95,98,96,116,103,109,102,92,113,116,101,98,99,110,110,116,116,103,99,108,101,112,85,105,108,90,102,104,120,120,94,100,94,98,107,95,113,106,98,99,110,90,113,109,96,138,95,104,113,94,108,102,118,109,94,101,102,97,106,111,110,106,93,104,94,97,114,108,106,100,105,98,95,90,101,110,119,108,110,94,104,98,99,102,104,108,95,104,107,92,101,128,113,109,108,111,101,100,100,93,102,102,98,104,99,96,98,95,98,98,101,103,99,102,119,96,111,100,99,107,100,99,109,90,89,104,102,106,103,107,104,98,101,109,109,92,102,109,100,110,98,103,104,103,111,93,99,105,96,103,95,105,102,109,117,101,99,113,105,110,112,99,110,99,95,103,105,95,101,108,100,111,108,96,99,126,102,95,109,95,109,112,108,108,97,111,102,111,109,90,67,108,98,101,105,110,104,107,105,95,100,102,99,99,118,117,107,100,112,110,99,102,98,101,105,103,104,95,110,97,107,111,113,91,106,115,116,102,100,111,104,103,95,124,100,103,105,101,106,95,112,104,91,104,104,92,85,110,80,98,98,111,111,118,98,100,98,112,94,117,109,103,99,101,95,101,99,113,111,112,115,112,105,91,100,117,111,97,108,107,102,114,101,105,91,103,106,107,100,99,107,101,108,111,125,104,100,103,107,102,100,92,102,114,96,107,109,103,111,87,103,115,96,112,103,105,101,103,108,118,113,95,110,116,103,107,108,105,106,73,105,103,104,117,107,110,103,110,100,99,107,107,103,111,92,92,112,102,107,95,106,104,106,103,100,93,98,91,106,94,102,103,100,93,107,110,93,105,111,99,100,102,111,95,99,106,116,98,95,119,91,115,121,129,107,119,106,97,98,109,108,110,74,104,101,100,107,105,98,104,101,115,103,102,100,107,119,96,109,114,93,121,115,107,103,112,114,97,94,107,104,113,94,105,96,115,112,102,98,93,96,103,91,112,99,110,89,99,103,94,103,99,101,99,106,99,77,104,100,95,92,112,106,97,101,106,112,94,101,102,108,112,100,110,102,105,104,105,99,97,111,92,100,105,100,90,102,108,100,111,108,103,106,106,91,99,110,107,87,99,97,94,99,99,112,109,99,112,101,96,99,103,99,100,93,113,109,102,111,104,105,114,113,103,106,98,114,98,113,123,109,117,103,116,99,103,105,107,131,103,133,112,93,113,104,100,116,111,120,114,113,103,98,90,98,102,91,116,104,102,102,105,104,113,113,97,109,100,111,114,104,102,105,101,106,106,108,103,98,102,109,107,104,116,101,74,107,95,98,98,111,109,92,102,107,107,102,99,113,111,114,106,83,94,94,124,81,116,96,97,90,110,100,113,108,102,97,107,113,96,109,99,97,109,77,113,103,97,103,94,116,105,111,111,99,116,98,108,109,95,95,93,93,92,97,108,101,104,111,111,108,107,100, +548.30505,87,106,112,103,102,82,113,99,96,108,103,108,101,104,110,87,114,106,105,112,109,104,100,113,122,104,114,109,108,99,108,104,100,102,97,94,119,116,101,107,109,117,103,116,106,93,96,97,90,104,89,106,110,79,95,99,105,112,105,104,103,96,114,85,106,112,92,116,88,99,103,111,117,96,79,120,100,108,99,102,106,104,106,109,111,104,102,102,99,97,95,106,102,100,94,111,111,98,95,105,102,95,95,100,108,96,107,104,107,98,104,99,103,97,93,103,96,106,109,87,93,114,107,90,105,98,84,104,122,124,103,108,100,99,108,97,101,111,116,94,108,110,108,111,89,104,109,97,103,110,107,122,101,99,109,103,103,103,116,106,87,111,108,113,115,109,113,103,103,91,107,113,105,110,111,121,108,112,94,109,91,110,115,107,91,95,105,100,108,98,99,104,106,103,103,104,99,104,107,107,103,99,91,114,105,109,102,110,93,116,107,105,94,117,105,106,95,100,94,92,106,109,97,95,82,107,103,110,109,109,104,101,110,107,99,103,104,113,107,98,92,110,106,109,97,107,97,106,102,116,100,98,103,114,106,106,102,96,116,109,95,106,103,94,108,107,102,91,98,106,104,108,107,102,111,88,102,113,105,105,98,105,106,92,108,106,93,92,95,105,97,96,102,104,116,116,95,97,92,97,99,108,106,116,101,113,108,116,104,112,106,111,106,100,99,113,111,109,107,105,107,102,96,109,100,105,91,104,111,88,110,100,106,100,100,120,105,89,108,97,82,96,110,107,101,101,102,94,98,94,116,93,105,91,107,117,102,112,103,101,100,96,105,112,101,96,112,108,96,107,104,101,103,106,114,106,107,107,100,120,107,109,100,110,104,95,107,108,99,96,111,107,99,118,106,99,100,102,100,96,108,103,103,109,105,101,104,110,98,93,101,103,103,113,120,110,109,96,110,122,108,101,101,103,117,100,106,100,99,103,110,108,113,109,100,101,99,108,97,101,110,106,106,122,92,116,95,114,104,116,105,106,103,106,109,113,103,103,108,102,100,96,109,113,117,113,109,108,107,108,105,108,111,107,104,97,97,95,110,99,100,89,108,107,111,98,117,107,91,101,115,110,104,103,84,109,105,97,99,94,106,107,97,102,107,118,92,101,99,104,109,109,110,109,104,108,107,102,100,130,106,105,100,103,108,111,110,105,103,106,102,113,109,110,103,108,114,105,103,125,77,98,95,108,117,88,117,92,113,107,98,99,98,92,98,103,105,101,101,101,113,109,93,106,105,103,112,95,102,101,95,112,109,98,117,102,106,103,96,106,96,89,102,111,104,102,102,99,117,104,117,113,98,106,101,104,104,104,101,98,101,107,106,100,100,93,109,111,117,100,95,105,114,115,109,113,113,101,122,95,110,107,108,108,109,110,104,97,99,107,92,104,104,107,96,101,109,99,108,100,102,113,103,92,105,98,115,101,109,108,106,102,107,107,115,92,109,112,108,122,107,98,104,109,103,106,109,116,94,106,111,109,104,109,101,103,105,97,110,106,107,111,112,96,96,100,111,107,100,110,102,100,98,107,102,111,118,110,96,95,108,97,107,116,99,99,89,116,106,95,109,103,105,106,98,101,97,91,104,100,100,93,95,107,94,117,113,98,108,108,107,105,104,95,97,97,107,104,98,87,96,110,105,110,95,110,94,108,118,96,111,102,109,111,106,105,109,97,103,106,109,105,108,100,106,95,100,106,95,98,110,120,92,109,103,109,95,111,109,109,109,112,106,111,99,111,107,99,117,110,102,93,108,116,122,96,102,98,106,107,99,101,110,106,102,105,94,112,110,108,107,100,102,100,106,110,106,106,100,104,104,99,113,118,98,107,104,102,100,95,109,112,115,121,120,107,104,109,98,107,100,106,111,107,101,107,103,76,109,102,106,95,112,108,96,114,103,99,110,99,117,115,102,111,103,103,102,107,107,108,103,112,106,103,98,105,122,95,129,86,104,112,102,114,103,112,105,104,101,104,93,128,108,113,90,115,104,103,94,114,109,99,116,111,113,102,100,106,95,103,100,107,105,113,108,103,105,109,96,103,104,109,113,109,102,103,113,106,103,109,104,106,103,78,104,92,106,111,116,93,96,97,112,106,107,98,100,104,107,89,103,100,111,104,102,106,102,107,105,108,116,102,115,100,114,109,100,105,104,113,124,99,86,104,100,109,104,102,108,102,109,111,97,100,100,99,105,105,99,106,101,111,115,86,105,96,109,117,103,95,95,102,111,105,118,97,107,112,102,97,87,94,119,107,102,111,93,109,115,104,105,101,111,94,102,113,102,99,104,100,115,115,114,102,103,106,97,104,116,109,107,105,112,126,110,105,119,117,123,114,122,109,105,106,116,124,108,105,104,109,111,100,104,133,68,102,94,92,105,100,116,105,95,110,101,114,101,113,102,106,101,101,97,104,108,118,95,112,115,99,102,94,100,100,115,107,119,100,107,117,93,105,110,102,117,113,104,100,104,109,93,113,99,109,101,111,103,111,94,117,104,104,81,64,98,111,112,109,98,98,117,105,101,99,101,101,103,90,100,104,100,106,86,102,98,101,105,104,118,109,109,105,105,109,95,97,118,106,103,105,107,110,113,100,98,103,99,96,106,95,106,106,111,116,117,100,101,109,112,110,117,103,101,111,110,93,110,110,97,112,114,98,103,106,110,106,99,98,106,113,99,107,102,117,105,112,137,89,105,109,110,115,113,115,114,109,109,108,105,99,104,113,97,112,101,121,104,107,105,107,89,113,110,100,107,111,108,102,134,107,114,106,120,102,102,106,113,99,107,109,110,97,109,106,94,103,105,116,102,117,114,97,112,113,119,103,111,103,99,115,102,90,99,113,109,112,107,104,105,112,106,105,103,117,100,107,111,108,107,111,109,112,101,106,106,106,101,105,104,111,117,112,112,107,106,106,99,111,99,97,95,116,112,96,110,106,106,112,109,115,116,116,105,108,112,105,104,120,105,103,109,101,106,99,129,109,100,107,107,106,104,104,118,101,103,105,113,108,109,109,107,107,100,115,105,102,103,110,105,95,121,90,110,109,112,96,112,95,100,116,88,95,113,110,106,106,106,108,113,102,98,99,114,95,95,101,95,101,90,98,101,104,98,104,110,111,105,101,109,116,116,98,107,99,99,106,104,100,104,104,108,102,100,96,105,98,108,109,98,109,111,102,89,121,99,107,107,116,109,110,109,109,112,98,106,105,100,103,101,100,116,103,101,102,103,110,102,98,99,102,89,117,108,110,95,95,119,113,108,109,103,90,109,104,105,87,98,100,100,100,114,107,103,104,119,104,103,105,116,105,96,107,99,100,102,88,96,103,97,112,98,93,94,102,103,113,98,121,101,114,107,107,116,91,109,100,101,112,100,101,106,104,70,96,102,93,112,94,102,101,106,110,105,96,103,106,103,99,106,99,98,103,113,105,109,117,111,102,110,98,112,108,112,117,101,106,108,103,107,94,119,103,104,115,103,106,116,102,94,102,98,108,101,109,101,103,95,84,102,109,102,99,103,107,115,118,86,106,113,103,102,104,88,99,88,115,105,107,112,98,95,105,108,103,98,102,105,114,113,106,88,112,111,104,95,97,109,101,101,110,99,100,102,101,103,102,102,97,114,109,119,106,107,106,103,116,102,104,105,102,106,95,115,106,105,111,100,110,111,105,101,112,113,101,114,104,106,99,105,102,106,104,104,114,104,108,80,105,87,124,111,97,99,90,102,110,104,99,89,100,108,103,97,103,108,104,99,113,104,104,107,120,104,109,111,109,102,109,110,107,107,110,109,98,105,102,100,99,112,106,97,91,113,102,104,100,94,98,94,99,117,97,103,114,109,105,109,113,101,101,93,106,99,112,91,115,103,102,119,103,102,108,98,96,104,102,91,101,103,81,97,127,99,115,96,110,105,101,75,105,101,101,101,111,105,110,100,81,98,107,103,118,110,109,106,102,102,101,105,105,109,101,109,101,98,125,91,114,109,106,109,100,101,107,102,106,105,93,111,106,105,88,107,107,105,107,95,100,110,97,111,106,100,112,100,63,95,112,103,104,106,94,103,106,116,108,91,111,98,87,103,104,99,102,108,98,107,112,103,114,99,97,103,98,100,102,105,106,88,100,98,107,107,94,80,93,98,118,112,109,107,106,98,105,104,97,113,111,99,113,107,104,100,101,99,100,117,107,96,74,100,101,111,104,84,97,94,108,103,99,113,94,116,90,107,102,94,91,107,114,95,113,101,96,107,100,103,101,106,99,116,107,97,84,112,116,105,110,95,116,98,102,103,112,102,107,104,108,104,104,99,98,115,102,111,119,124,109,108,104,98,119,112,108,104,103,100,107,110,103,102,96,96,120,85,108,96,96,102,109,114,110,116,109,115,113,100,107,108,114,97,98,105,107,114,96,100,123,94,96,94,96,107,97,94,101,100,102,108,99,102,116,83,102,112,104,104,103,104,92,98,97,109,104,103,94,102,94,96,102,103,102,102,110,110,98,94,96,119,101,100,111,109,115,107,100,103,100,78,96,100,116,104,104,105,106,98,88,94,110,92,112,111,105,100,97,100,98,109,108,102,95,105,87,114,103,116,116,101,94,97,98,95,97,102,110,115,96,100,102,117,90,109,94,102,98,107,116,96,106,99,100,111,111,88,95,103,106,98,111,98,98,119,103,113,98,112,111,107,102,114,108,106,104,101,103,106,107,105,104,91,105,99,104,106,111,92,99,112,98,104,111,108,103,107,97,92,109,89,104,100,72,101,102,112,114,92,110,102,109,97,102,108,110,68,112,113,126,101,89,109,108,100,120,111,106,94,111,103,86,104,93,97,110,110,107,108,104,90,114, +548.44586,99,99,105,102,95,120,104,106,108,106,102,106,110,99,125,89,109,93,102,110,101,95,87,115,101,114,102,106,114,111,115,100,109,104,113,110,125,96,96,107,125,97,96,107,96,121,101,110,93,110,100,113,107,108,104,110,106,99,102,102,99,97,109,120,100,103,94,114,103,111,107,119,106,95,103,108,105,103,111,106,108,102,89,107,108,91,105,103,107,106,110,103,104,105,109,99,106,106,135,117,115,106,114,106,105,110,100,108,111,119,105,116,109,112,112,104,109,111,95,82,112,106,100,106,109,116,91,98,101,101,100,97,93,108,98,103,100,100,100,104,115,113,102,99,102,96,110,76,111,99,108,104,93,86,105,97,106,99,105,97,114,98,113,137,103,108,107,111,104,103,99,119,103,99,94,120,115,109,106,95,104,107,95,104,100,99,96,96,105,116,93,104,98,103,96,110,96,93,113,104,109,81,109,94,100,100,98,99,106,111,109,93,104,102,109,100,112,100,98,110,108,95,104,117,116,112,107,108,99,102,114,104,110,100,91,111,113,94,100,102,99,111,117,113,106,96,105,96,107,97,103,116,97,103,104,106,100,113,105,105,101,104,110,101,99,97,110,102,113,114,101,106,112,104,93,103,123,99,114,103,96,113,108,96,98,95,92,105,106,99,90,108,112,96,99,112,113,83,99,108,103,99,114,106,98,113,110,105,103,110,101,110,102,109,110,105,118,101,104,102,111,100,104,112,107,103,102,93,104,117,117,106,107,106,105,100,113,94,96,99,109,105,105,108,121,118,104,102,112,117,111,114,102,105,95,104,112,105,107,113,106,104,74,96,102,104,104,100,94,103,103,100,103,91,104,107,102,106,105,102,113,109,98,103,97,98,93,104,116,108,115,98,106,102,102,119,120,99,96,103,95,101,92,100,97,87,103,96,112,113,105,95,112,98,104,98,105,101,109,110,103,100,93,101,80,101,113,105,91,121,96,101,106,107,108,103,106,113,103,102,111,100,109,113,84,94,112,104,110,109,94,99,99,98,106,99,106,95,104,92,102,110,105,109,105,106,114,100,105,107,103,105,108,97,110,108,110,110,104,108,102,102,105,96,104,114,97,105,102,84,124,108,107,106,124,108,106,104,101,86,107,111,101,111,109,102,88,98,103,93,114,105,103,102,112,84,108,107,106,107,109,99,99,103,94,114,100,80,109,98,109,114,102,99,102,96,104,111,98,110,107,102,105,107,114,101,110,111,108,103,100,92,101,103,121,97,100,115,101,95,103,102,98,94,110,104,122,99,117,108,94,100,113,99,116,89,111,109,106,105,121,94,91,106,109,106,110,95,102,101,97,104,109,108,103,110,102,96,112,104,74,101,117,95,117,94,93,115,118,102,99,107,114,98,98,116,108,103,98,109,110,112,91,108,106,116,93,102,123,108,115,101,111,99,102,95,95,103,107,106,102,99,105,103,98,107,105,103,109,98,97,117,69,125,104,112,106,101,109,106,109,116,115,103,113,111,102,110,115,96,109,109,102,84,103,107,110,101,124,100,117,102,117,98,108,98,97,103,118,103,99,98,90,109,111,97,100,103,107,93,111,71,99,95,97,107,104,104,104,110,102,97,100,95,97,108,111,107,110,108,110,111,108,108,95,105,89,104,104,109,98,97,107,103,104,98,105,105,115,113,121,103,112,114,108,105,116,108,99,109,113,103,101,102,105,102,106,99,104,97,103,103,102,100,86,104,102,112,114,90,103,104,105,113,99,92,120,103,95,98,113,124,103,116,110,116,109,118,116,95,109,104,108,110,100,95,102,108,118,114,103,114,93,105,110,113,115,108,112,114,117,104,97,99,94,106,121,100,113,103,102,118,111,104,111,114,107,100,112,104,108,114,111,103,103,107,113,111,104,110,97,102,103,104,111,101,90,105,103,102,99,95,104,105,106,107,91,103,102,103,112,102,111,121,102,102,100,110,101,109,94,108,103,100,126,108,100,102,108,100,117,114,93,108,99,100,104,117,118,115,96,129,101,110,104,108,105,89,92,109,97,107,118,104,105,103,94,104,104,88,101,99,109,100,118,99,91,106,96,107,111,108,114,112,100,113,102,95,98,112,107,112,106,109,107,106,100,100,98,112,99,102,107,87,104,89,103,113,88,110,111,105,116,100,105,103,99,109,100,123,113,112,105,95,106,101,103,113,103,111,99,110,100,77,112,98,111,98,114,113,108,106,103,99,110,100,100,101,111,93,101,119,103,110,101,97,99,109,99,92,97,109,109,103,122,107,98,105,104,98,103,118,104,117,98,121,98,94,106,113,116,104,117,100,108,102,104,99,105,100,113,103,109,95,98,101,105,124,108,100,127,106,111,128,133,98,96,109,82,116,119,114,103,88,112,111,122,95,108,104,100,82,96,112,109,87,96,114,93,103,102,105,96,94,90,105,112,105,107,99,105,99,105,128,112,109,104,102,110,120,94,103,106,102,99,117,103,109,110,116,111,104,104,103,97,104,105,109,101,106,116,107,109,117,109,91,119,109,102,112,108,99,101,109,98,99,100,121,94,103,111,113,119,113,102,113,115,100,110,102,102,101,103,105,114,108,115,103,109,101,107,109,98,106,101,101,117,111,117,108,106,101,118,104,109,112,111,114,112,105,106,111,113,102,102,112,106,110,106,103,117,111,96,109,101,118,112,105,111,126,100,102,108,114,102,100,109,107,120,106,91,98,114,102,96,99,109,102,116,109,113,107,76,105,120,111,106,106,106,115,110,109,113,117,115,96,112,106,107,118,105,106,100,109,106,105,113,113,97,118,121,109,111,96,98,99,113,109,96,116,104,104,116,104,104,112,105,106,114,105,100,106,104,120,110,99,110,102,112,128,103,106,105,110,103,96,101,109,96,117,92,100,76,115,103,114,96,101,105,92,107,100,98,105,112,105,102,103,100,125,104,106,104,109,96,111,120,102,110,100,101,103,106,108,105,112,99,105,108,110,109,103,115,115,112,100,100,101,98,105,115,91,92,87,113,114,102,107,120,106,88,109,107,92,110,106,107,101,109,101,99,112,91,106,99,111,100,106,102,108,111,97,116,109,118,95,109,93,106,86,94,100,96,140,105,114,99,110,102,99,100,97,105,121,108,87,121,108,107,94,99,100,100,105,105,109,100,94,99,100,107,107,100,80,103,103,112,117,99,99,104,113,106,104,111,107,106,122,106,101,105,123,101,109,110,90,105,87,105,113,113,102,115,119,83,83,110,100,101,100,95,109,99,101,105,105,92,102,101,118,109,110,108,104,104,105,103,110,104,98,105,106,110,106,106,108,107,85,112,99,101,93,102,104,102,118,108,114,109,103,106,106,108,109,107,99,100,101,107,100,98,115,111,108,96,100,92,106,100,97,105,104,107,107,100,106,103,110,107,97,105,98,96,112,108,103,110,110,98,114,98,101,100,108,105,93,108,96,103,138,112,113,108,104,112,109,100,109,111,98,112,116,99,117,101,112,116,107,95,106,98,93,113,105,98,110,102,104,90,106,103,115,117,118,102,106,95,106,101,108,110,98,100,105,104,97,110,100,104,105,95,108,98,119,104,99,106,109,102,113,104,101,103,97,98,101,128,98,100,107,97,98,128,100,112,107,97,103,93,84,104,103,92,107,103,107,93,106,138,108,106,121,114,113,94,91,98,107,101,99,105,100,103,92,111,87,120,107,106,109,71,109,122,102,103,111,113,96,110,111,109,95,96,104,112,103,110,103,100,95,109,107,91,109,107,106,89,99,110,104,96,116,104,94,112,114,98,118,99,102,89,98,116,121,98,104,110,105,111,108,106,105,111,107,103,108,99,110,114,92,103,106,115,119,92,104,115,105,84,109,101,93,109,135,105,98,99,108,105,96,104,103,112,97,102,108,108,108,106,100,110,102,108,108,113,113,87,103,111,104,113,108,104,108,95,106,104,97,101,104,89,104,108,95,95,117,110,116,105,115,110,100,108,96,89,95,98,102,107,115,110,101,105,103,113,116,108,105,102,106,104,94,96,94,102,110,101,100,108,116,113,110,108,105,108,107,108,116,102,108,102,101,105,116,101,99,109,121,95,122,92,105,105,100,104,104,96,94,82,111,99,105,102,101,104,99,106,125,106,102,117,107,95,102,98,95,109,101,105,96,102,100,104,113,110,109,96,112,121,111,105,102,105,117,106,101,103,111,106,104,108,104,100,108,99,105,98,116,102,104,96,113,102,105,101,96,100,105,112,105,108,90,120,107,100,109,115,91,97,111,118,119,101,103,107,105,109,107,108,98,107,115,108,120,113,110,109,103,105,98,101,102,105,107,105,107,112,109,120,104,104,104,117,106,106,105,113,103,107,104,108,103,100,104,103,93,108,98,107,118,103,114,106,99,99,105,102,91,113,117,116,98,103,121,106,104,105,106,114,105,106,109,102,117,106,94,102,100,105,122,84,93,113,107,103,91,99,96,115,99,106,102,103,127,111,109,113,98,101,65,102,96,107,97,99,100,104,105,117,121,105,105,114,98,109,109,99,88,97,96,89,103,110,113,88,108,110,105,110,108,103,97,104,111,108,105,105,108,102,98,98,109,103,106,105,107,112,103,109,88,106,102,113,106,106,98,103,103,109,96,102,90,112,104,119,108,99,102,112,95,107,96,116,110,107,102,92,130,96,114,110,112,105,102,103,124,117,111,110,106,105,102,113,97,98,100,97,122,90,102,115,95,103,110,95,106,113,111,100,108,94,97,115,116,107,88,92,103,101,104,103,120,99,97,100,106,95,128,112,96,101,106,94,101,129,109,102,115,113,107,126,110,99,90,111,128,107,106,112,105,103,100,96,94,112,108,96,116,116,95,103,118,94,92,111,107,105,109,100,95, +548.58673,104,96,87,100,105,97,101,99,99,111,96,91,94,115,89,104,107,105,100,86,103,99,98,101,98,96,107,112,93,103,113,113,102,97,102,114,96,83,110,94,103,108,91,113,87,73,102,90,106,102,106,94,95,111,109,104,93,96,98,96,99,104,110,105,115,103,95,112,110,107,104,104,102,108,104,115,96,118,115,104,100,116,100,118,103,97,108,104,100,110,94,98,98,103,96,88,108,92,96,107,107,105,97,116,94,103,104,98,95,105,101,106,111,104,91,112,96,104,112,111,91,92,107,110,94,100,110,107,114,109,96,108,102,118,99,105,103,104,90,107,119,100,103,91,108,105,104,99,101,101,101,107,96,99,95,100,100,96,104,100,105,113,101,87,110,101,101,118,108,103,99,111,106,99,100,100,103,104,105,102,98,97,100,117,96,96,109,93,98,97,106,98,107,112,112,111,98,113,103,109,95,106,95,101,109,103,81,119,99,107,101,98,104,82,97,121,102,108,99,96,113,104,113,105,100,99,104,106,102,94,94,104,95,99,116,115,96,98,108,110,113,100,127,108,99,111,110,110,117,113,106,121,106,106,104,70,102,95,102,79,116,103,103,111,105,109,106,105,105,104,109,107,104,90,108,110,110,106,104,106,92,110,100,98,108,104,91,102,110,108,103,110,97,104,106,113,97,103,107,98,105,102,103,102,96,84,110,100,106,120,100,108,79,105,104,95,99,95,108,97,101,87,106,82,112,103,105,112,118,104,113,98,98,108,109,99,110,111,104,122,106,110,114,95,94,115,106,100,113,97,109,98,98,104,112,106,108,105,103,102,110,91,114,109,90,110,101,109,109,119,110,104,97,114,84,93,99,100,101,97,95,98,97,110,105,106,94,107,120,111,107,93,97,100,106,108,99,106,98,108,100,109,109,112,92,117,108,115,96,110,100,98,103,101,101,101,96,99,102,102,103,116,96,104,106,91,98,105,105,102,112,95,98,121,109,105,104,100,105,103,99,110,109,105,102,107,100,104,102,124,102,80,102,112,81,113,103,103,110,107,110,99,109,105,108,103,108,109,109,102,113,107,110,98,102,94,94,95,103,103,94,105,103,100,108,88,106,124,117,101,111,92,108,102,103,106,95,103,92,104,117,102,91,103,94,106,98,106,109,98,104,104,100,97,113,105,96,97,92,115,103,106,103,113,90,108,103,102,97,114,101,101,102,107,101,102,99,102,111,106,104,106,136,100,96,109,102,108,104,113,107,107,104,105,110,101,108,98,101,109,109,103,115,108,107,103,94,101,101,103,98,99,107,112,86,99,100,97,94,98,109,100,96,113,101,91,110,104,99,102,103,131,98,104,114,97,100,101,98,97,105,97,113,93,108,96,97,109,124,97,103,95,110,103,102,104,97,126,100,108,87,105,105,103,110,113,105,101,106,107,106,92,104,105,95,105,102,97,106,101,99,88,105,89,106,96,102,99,111,110,108,101,78,118,94,99,111,110,106,121,112,103,99,103,97,91,104,89,106,106,97,111,106,100,98,114,112,101,96,94,108,84,97,93,99,104,101,104,103,100,111,108,103,102,137,104,106,99,111,105,94,99,129,117,99,104,101,110,101,93,97,93,101,111,117,103,93,110,104,97,97,98,99,101,105,104,101,105,110,104,132,102,100,76,93,96,100,97,104,94,97,79,99,97,103,112,106,102,98,95,105,118,108,110,112,107,103,98,103,105,114,105,83,112,103,105,96,93,101,102,105,104,106,99,102,103,109,107,103,103,92,106,111,109,106,109,99,101,105,107,95,95,105,105,106,107,99,115,102,107,107,97,82,115,100,113,100,100,101,98,109,96,96,103,106,103,101,106,107,96,83,102,95,109,105,91,98,105,114,102,106,105,112,111,99,103,117,103,113,90,93,119,108,90,107,100,109,97,107,105,95,102,94,112,101,110,114,104,102,100,109,103,106,118,110,113,94,111,107,101,105,111,102,95,96,109,110,101,97,109,105,124,94,131,106,108,98,107,86,108,106,112,103,92,108,97,104,109,100,99,94,110,110,82,107,99,108,93,101,104,112,113,107,99,121,95,108,95,92,113,106,114,107,103,113,94,101,100,101,113,99,105,105,105,95,99,105,101,107,110,100,98,99,104,99,109,99,100,94,97,101,104,98,104,112,109,107,116,101,111,100,113,90,89,116,106,104,109,100,97,134,112,103,94,105,96,99,95,104,98,93,95,111,108,97,84,104,116,105,104,100,109,112,103,97,114,101,101,85,102,114,125,109,92,109,82,100,100,99,104,106,104,109,115,96,110,114,108,111,95,104,114,105,99,118,105,101,92,101,105,97,107,117,109,96,92,112,107,107,108,118,118,112,107,115,105,124,106,107,111,119,119,102,118,103,114,105,103,104,106,92,98,101,104,94,108,94,107,93,91,107,105,111,98,125,102,103,109,104,97,110,90,98,125,99,108,104,96,111,107,106,105,121,104,108,112,109,108,102,110,113,95,109,111,97,114,105,111,105,91,106,122,106,95,114,113,119,106,107,98,71,136,110,102,98,107,100,89,108,108,109,104,120,108,108,107,91,107,95,101,91,102,116,114,109,103,104,112,117,110,116,119,117,103,100,96,106,103,102,105,115,104,103,117,100,109,104,103,96,105,93,109,112,123,104,117,106,108,98,109,114,109,100,107,111,107,110,108,112,110,106,102,124,99,82,115,104,106,102,102,99,125,105,107,114,108,116,117,116,95,112,110,104,104,108,113,100,129,103,107,107,117,104,106,124,106,107,113,108,95,107,100,99,116,118,104,103,97,123,101,102,93,99,109,110,109,106,103,107,95,108,109,123,119,116,107,94,101,92,110,110,105,100,100,100,121,107,113,103,108,118,98,110,102,110,99,104,100,102,108,94,101,113,103,131,112,102,108,100,108,99,121,110,104,109,112,87,108,109,102,95,107,98,114,106,111,95,108,104,101,110,100,95,99,100,113,109,98,101,108,110,113,93,108,113,103,116,105,112,100,87,102,91,111,119,100,115,108,105,107,111,110,111,104,100,109,99,112,113,101,103,106,105,107,95,111,118,116,92,99,102,112,117,105,85,99,99,119,106,97,110,98,108,117,112,85,103,97,110,113,102,104,122,119,93,96,108,104,107,89,113,103,110,106,101,104,110,96,113,103,101,100,117,107,99,98,105,102,113,111,110,98,102,112,109,88,96,111,106,102,110,114,112,110,87,98,98,108,100,107,109,109,101,105,101,100,107,106,106,116,86,107,107,102,102,105,101,98,98,111,98,108,105,115,116,102,121,109,103,108,116,111,115,102,111,114,105,99,91,104,101,104,110,119,106,111,112,99,91,103,114,105,113,96,106,109,106,91,108,79,124,106,92,113,105,100,85,102,94,63,94,107,93,103,96,110,107,109,112,108,114,83,105,109,94,107,98,100,105,115,106,104,99,108,105,108,107,113,117,96,107,104,108,95,97,103,111,99,117,98,105,110,95,106,114,110,83,109,99,103,108,108,107,106,98,102,101,105,117,102,109,106,97,104,113,112,107,113,104,111,95,94,117,114,99,113,101,109,111,100,104,108,106,112,92,105,97,103,104,106,97,106,107,100,108,109,102,104,112,103,104,106,107,111,102,108,104,117,100,119,105,117,95,102,96,106,101,116,104,109,101,103,101,108,93,99,112,107,97,108,98,101,125,87,106,99,100,102,106,94,111,110,107,97,110,113,87,97,109,112,115,103,104,110,107,110,112,110,108,100,106,100,117,110,115,98,113,101,112,97,108,105,110,106,108,101,106,111,98,109,83,100,105,129,99,117,101,104,104,108,109,110,104,115,103,110,107,101,108,97,98,103,99,89,106,107,99,97,103,104,97,102,103,114,102,91,103,99,96,110,103,109,109,110,102,107,104,114,109,104,109,106,109,101,105,118,96,115,118,104,102,101,103,100,106,89,105,108,110,95,108,104,120,115,98,106,103,113,106,113,98,97,100,106,110,103,97,113,111,99,111,108,101,102,98,113,98,110,108,102,101,100,97,111,96,112,95,100,112,111,109,108,114,111,100,111,102,92,92,105,108,104,101,106,95,94,106,105,104,109,147,112,103,126,106,107,102,98,94,112,107,111,106,108,105,111,112,113,98,102,106,92,88,83,102,91,106,106,111,103,99,94,117,99,110,109,108,113,99,109,108,111,105,108,97,97,108,99,103,102,95,91,107,122,90,99,109,100,103,140,105,116,101,104,102,107,108,117,96,95,104,100,116,107,108,103,94,93,106,108,96,108,73,96,109,100,104,101,110,115,119,84,118,100,100,94,88,117,106,96,106,113,121,104,103,105,99,104,102,114,102,115,107,105,100,104,120,113,104,116,102,103,101,106,102,104,104,106,113,75,98,98,91,113,104,112,89,106,114,97,108,104,98,100,106,95,110,94,103,106,100,104,99,111,94,106,109,103,112,91,102,112,100,99,99,112,92,91,118,105,82,105,105,104,99,112,107,101,108,114,103,90,98,102,96,98,98,97,95,107,98,116,111,111,97,97,99,93,98,102,91,103,91,86,106,99,99,107,98,109,100,104,104,112,107,106,109,99,72,105,91,98,107,99,110,109,109,111,98,94,104,104,109,100,104,90,107,97,101,120,103,94,95,97,96,94,113,100,103,106,104,98,103,106,95,107,72,99,105,109,116,104,112,106,100,99,94,80,99,92,101,103,94,102,106,108,110,100,105,110,101,103,110,100,101,101,97,106,81,109,121,91,103,104,121,105,110,91,102,97,121,97,113,107,105,98,101,110,113,109,109,107,128,106,92,95,117,102,97,98,98,93,103,121,103,99,100,119,106,97,100,109,101,98,115,95,93,96,102,105,112,105,91,91,96,104,77,114,116,90, +548.72754,108,92,99,98,85,127,114,121,94,99,106,105,94,108,121,116,105,96,106,106,116,125,108,104,92,102,113,98,103,105,117,114,101,98,113,98,96,118,99,100,89,104,102,104,94,116,105,102,103,102,105,96,97,102,102,98,105,99,102,102,116,104,101,110,111,109,95,110,107,117,116,107,102,99,84,110,101,107,109,98,107,102,117,104,114,100,108,107,99,106,110,92,101,103,92,111,102,106,103,104,96,105,105,110,103,93,103,113,93,93,96,111,111,106,118,107,103,103,107,99,99,102,98,115,105,93,104,97,105,120,101,108,104,102,109,101,118,99,105,101,89,120,101,100,102,114,109,114,100,109,98,102,96,95,100,100,102,99,109,104,97,109,108,100,107,106,104,104,94,88,100,120,100,109,82,109,105,92,105,99,105,113,108,98,109,105,106,103,109,98,108,105,105,107,105,103,93,108,107,122,99,105,111,115,102,102,107,113,109,108,108,105,113,101,104,114,105,111,99,106,98,104,100,96,111,114,100,109,103,102,102,113,109,110,95,108,109,118,111,102,112,100,107,104,91,98,112,91,105,108,112,94,93,107,101,102,105,116,100,116,92,102,97,105,101,112,98,123,111,98,112,107,103,117,109,109,103,111,114,100,94,101,109,105,98,104,94,92,114,115,107,115,114,115,108,110,99,108,104,101,109,111,105,98,102,116,114,105,108,106,109,118,101,115,114,108,111,107,103,99,105,98,102,109,88,111,99,97,111,104,121,102,104,113,101,106,100,103,105,96,96,96,104,114,109,111,107,114,115,111,96,106,118,105,103,99,117,104,133,101,94,98,106,106,98,99,106,118,101,107,104,95,105,95,105,100,103,78,107,109,107,116,103,132,96,114,109,106,109,98,113,101,107,106,98,111,94,103,103,103,103,100,102,105,97,100,100,130,109,113,100,100,111,101,118,111,100,116,96,102,107,107,99,108,111,108,101,111,116,108,95,103,102,100,98,112,106,108,109,103,105,103,111,111,105,119,103,103,106,105,110,120,111,114,105,113,107,104,105,106,106,103,100,103,100,113,105,110,104,90,101,104,113,100,118,89,94,113,106,102,94,95,116,103,106,93,109,101,109,102,110,103,105,94,98,107,105,90,107,102,108,100,104,116,108,122,101,98,104,100,98,101,95,117,106,110,103,101,102,96,103,116,108,112,106,102,122,70,100,98,107,102,102,112,95,113,98,104,103,106,116,118,109,100,106,117,114,99,115,113,114,106,87,109,105,109,106,99,116,96,105,107,99,102,109,110,106,84,112,98,118,106,99,111,114,119,105,101,110,113,116,90,103,109,104,107,106,103,113,108,116,118,108,107,107,103,118,102,105,102,99,104,115,112,100,102,108,101,110,103,100,92,110,105,106,103,109,104,102,108,107,98,95,94,118,114,99,99,108,95,101,108,91,108,89,117,111,101,108,109,109,104,116,104,98,99,105,112,109,90,108,107,108,105,107,110,105,109,109,105,108,102,105,105,99,104,106,101,100,113,120,104,102,113,112,104,110,111,102,105,112,106,103,107,98,106,104,111,103,112,109,110,99,112,100,89,93,105,116,99,111,109,124,116,107,116,110,99,102,101,99,116,94,112,96,98,89,91,94,98,95,91,102,110,99,116,108,102,109,101,118,109,108,101,106,122,105,99,116,100,99,104,109,103,110,88,115,105,103,116,107,95,104,94,97,103,107,100,118,108,103,97,101,101,107,102,102,102,109,110,108,97,100,100,112,111,105,108,104,107,108,107,87,106,90,110,107,103,102,105,99,106,114,109,110,97,109,99,114,99,112,101,100,100,114,113,120,109,110,86,108,91,105,97,111,96,135,109,100,108,105,98,101,106,108,117,100,114,109,107,115,110,105,100,104,105,100,109,106,105,72,109,99,91,120,93,107,96,101,111,97,95,105,108,106,107,111,100,102,108,102,107,108,109,118,109,101,114,123,123,102,110,103,102,102,102,107,109,106,99,116,102,135,109,99,127,103,115,118,108,103,104,112,114,97,106,104,112,107,112,101,115,106,109,112,104,106,118,122,105,112,113,108,102,113,89,95,107,109,109,103,107,109,106,102,108,113,111,103,98,104,98,102,124,109,106,106,94,107,97,107,110,100,100,114,100,109,116,109,113,101,80,105,103,104,100,97,109,102,109,104,98,108,88,94,96,107,100,107,100,111,106,114,100,102,98,109,99,114,105,86,91,105,107,111,89,109,121,97,113,101,107,123,97,97,109,96,100,108,116,104,103,97,108,114,112,110,113,102,98,103,106,106,109,102,109,118,110,101,113,103,113,119,98,103,101,110,108,107,110,99,105,111,112,110,97,88,111,102,121,112,117,108,106,120,115,103,116,114,126,109,111,108,103,91,120,109,100,113,110,115,114,98,119,109,100,91,106,107,113,101,99,106,114,99,104,106,112,87,97,93,88,108,100,103,112,113,94,113,95,110,108,110,102,99,93,100,104,118,112,100,110,110,108,104,110,112,113,105,115,95,131,91,100,97,104,101,104,106,113,103,100,116,112,101,77,110,103,98,124,104,108,97,112,118,109,136,106,100,90,95,108,100,119,108,98,112,120,116,97,116,101,98,102,104,100,109,112,104,99,110,112,103,105,104,106,109,114,99,101,99,112,108,129,107,102,110,94,114,107,116,104,109,105,109,135,111,108,105,110,110,102,117,102,97,106,112,105,115,110,99,98,103,101,118,111,112,106,103,109,120,112,105,111,107,101,114,117,88,106,87,109,89,101,62,94,99,103,105,106,113,102,106,108,103,112,94,109,112,115,113,100,117,98,98,104,108,101,95,108,105,117,111,98,94,121,105,100,100,103,122,99,99,111,110,103,119,111,111,111,97,102,105,119,101,113,103,105,106,105,98,113,104,110,101,106,110,112,97,109,100,141,102,100,103,100,103,108,99,91,102,103,98,104,106,98,104,111,113,106,70,108,94,111,108,102,108,107,119,110,109,109,105,101,114,99,102,99,106,100,90,103,98,118,121,103,110,97,99,122,108,104,105,108,106,103,112,100,113,107,101,110,100,105,96,93,106,95,99,109,90,100,99,97,111,93,98,114,110,97,91,103,124,105,101,117,104,95,106,111,97,96,109,117,117,108,116,113,89,106,97,110,121,100,108,123,102,83,100,106,108,105,94,107,104,100,111,109,104,103,105,97,94,106,104,115,113,112,102,115,111,109,101,100,122,98,104,99,104,116,109,113,109,106,94,115,104,105,123,106,97,93,105,104,96,117,101,102,101,104,111,106,106,99,92,96,116,110,109,103,108,103,109,103,117,110,92,107,107,88,89,108,110,99,99,111,99,104,120,104,94,113,106,112,100,111,109,111,113,99,113,102,97,106,121,105,101,106,98,110,105,90,116,108,87,98,109,100,117,93,105,98,106,113,98,96,111,118,106,114,109,103,117,106,108,104,113,110,108,108,103,112,114,87,103,112,103,94,89,98,130,111,107,108,124,95,100,101,104,99,106,111,101,103,98,106,102,110,98,98,100,102,112,107,103,107,126,98,107,106,107,93,95,108,102,99,117,102,107,101,108,103,110,101,105,119,110,98,98,108,83,100,111,99,113,111,101,109,105,111,114,118,117,110,91,90,103,104,103,117,102,88,105,102,97,104,110,106,99,94,109,117,106,108,98,102,107,96,104,99,115,110,100,109,109,114,119,94,106,102,93,105,108,94,108,104,112,106,99,94,109,92,113,98,107,113,103,105,82,99,105,105,107,93,97,86,110,107,99,109,125,107,107,98,107,100,98,111,95,105,107,106,110,110,101,106,98,97,105,113,98,111,106,112,105,111,103,111,103,113,97,99,109,105,98,102,113,107,112,124,96,108,98,99,116,102,112,95,108,109,94,96,102,99,118,121,109,109,102,109,107,103,106,88,105,105,99,100,109,103,105,102,110,102,114,98,102,103,115,110,118,99,122,107,112,105,96,106,90,117,113,113,103,105,99,88,106,98,108,102,102,105,111,111,100,102,119,104,107,99,117,102,109,93,106,103,97,101,111,103,113,91,98,109,99,108,99,102,101,94,98,104,104,107,104,111,108,101,100,108,113,104,101,110,113,103,128,106,103,109,103,96,106,134,111,100,106,106,106,113,105,104,97,99,98,106,111,100,105,95,101,113,106,108,106,121,102,106,110,112,105,110,108,105,96,100,108,124,100,99,99,106,106,99,97,101,99,130,99,113,98,96,107,101,100,108,102,103,114,107,121,102,104,111,109,82,105,83,104,109,116,113,111,101,104,112,108,108,103,94,120,97,107,106,102,110,101,96,111,102,109,110,108,101,104,115,110,107,100,106,114,106,105,119,110,104,104,105,98,106,111,111,106,98,93,100,137,117,112,88,93,104,95,119,95,108,106,110,113,101,111,109,112,110,106,102,100,101,106,109,99,104,109,109,121,91,99,105,97,112,93,111,121,104,107,106,108,105,106,111,103,105,100,102,105,105,109,110,108,102,117,91,108,103,100,95,95,119,101,106,105,108,96,113,112,104,101,113,107,102,111,100,106,105,102,98,119,105,94,95,111,88,121,117,107,97,100,96,91,106,106,112,112,103,104,108,110,99,109,101,111,106,113,115,102,101,108,111,100,113,99,105,94,110,109,103,97,105,106,95,101,114,95,117,97,101,108,97,87,100,99,99,101,106,104,92,112,117,134,95,101,101,109,99,101,105,115,95,97,99,100,81,101,106,96,107,97,116,109,95,102,93,106,110,116,110,117,120,100,106,101,107,119,103,102,113,99,100,103,125,97,107,95,108,115,108,98,101,85,104,107,110,100,94,106,104,104,117,103,94,109,95,106,98,111,102,101,118,103,103,124,104,98,109,104,113,127,94,105,93, +548.86841,120,91,113,98,105,98,97,103,78,121,87,101,116,113,92,100,103,108,104,100,91,112,117,105,97,102,101,115,106,105,76,105,96,113,101,111,121,93,100,102,93,106,101,111,83,95,104,104,105,95,93,86,122,102,82,107,97,91,110,98,92,96,110,94,110,114,109,79,102,105,113,98,95,107,107,102,103,103,108,105,100,110,102,92,104,91,105,101,100,95,101,107,98,105,112,97,102,96,114,101,109,100,113,102,94,96,92,99,100,112,109,95,107,104,88,98,121,105,100,99,114,109,93,118,109,101,118,101,101,108,98,103,99,86,95,100,108,110,110,94,96,99,101,101,102,111,90,113,95,97,109,109,106,101,106,106,99,99,112,97,107,97,95,103,110,106,98,104,106,98,105,101,99,99,96,100,107,106,107,107,108,104,112,106,110,99,102,93,114,97,111,107,118,109,97,108,109,108,98,103,92,95,107,112,98,105,117,105,114,113,106,100,104,103,95,99,110,104,101,107,110,103,103,99,99,115,108,103,102,101,103,102,99,101,100,85,109,106,95,110,102,104,104,100,102,69,107,104,95,105,104,108,102,106,108,119,93,108,90,106,94,102,92,106,108,109,109,103,108,100,108,108,110,99,118,94,114,99,112,95,106,112,117,102,104,110,95,112,109,103,91,110,113,117,117,112,100,104,93,101,100,105,101,108,99,110,104,116,96,106,105,101,109,119,100,112,95,110,106,105,89,108,106,96,137,105,105,74,111,103,87,98,112,106,98,88,106,103,105,106,105,102,98,111,119,107,118,96,111,120,112,100,101,109,107,110,92,105,121,103,107,100,109,107,87,114,121,105,103,98,103,109,106,113,112,110,118,90,96,115,114,112,113,98,97,105,92,89,91,96,110,102,112,100,112,108,105,96,111,113,108,109,96,104,104,102,98,107,107,104,94,91,114,108,99,96,109,105,102,117,106,102,101,111,105,103,101,107,104,113,114,113,101,102,106,106,108,94,111,108,110,112,108,112,92,105,106,90,113,108,110,108,106,116,110,97,107,98,111,98,109,108,106,106,111,115,93,80,108,109,114,105,105,110,114,105,116,108,105,111,110,107,107,112,108,107,105,97,105,108,101,116,103,103,92,98,110,101,105,107,108,102,113,109,108,110,109,108,114,102,103,97,95,120,104,113,109,105,102,103,101,101,110,105,105,107,97,104,100,113,91,106,109,105,99,108,99,104,104,103,104,105,100,104,117,90,106,91,114,106,97,103,105,99,100,98,103,89,103,114,105,104,95,114,101,109,106,101,107,108,102,100,105,88,105,104,99,115,117,101,120,98,99,100,99,108,102,104,100,106,110,114,103,108,120,102,117,98,112,99,94,99,106,100,98,101,103,105,99,114,96,105,111,113,103,94,114,104,110,117,98,89,133,111,109,103,102,102,102,102,111,106,109,94,103,108,109,108,120,99,101,115,104,114,108,87,100,109,111,107,113,108,111,115,100,102,120,97,109,98,101,110,101,100,113,104,106,125,104,118,102,109,111,102,104,112,111,104,96,106,110,91,104,86,98,102,95,103,95,99,121,112,102,103,103,102,114,100,111,111,101,97,107,96,96,117,106,101,94,99,104,103,112,89,98,95,104,93,96,98,96,99,106,103,97,78,103,80,100,91,113,109,93,108,106,115,98,142,113,104,113,102,110,109,94,104,111,112,98,107,111,109,102,109,101,112,95,107,101,100,95,104,95,101,104,93,103,103,99,109,105,100,99,102,95,110,110,110,97,111,108,105,105,113,111,111,110,116,103,103,105,91,107,107,99,116,106,112,97,108,90,114,101,91,123,102,96,107,112,115,90,111,111,97,118,96,111,108,112,103,102,108,106,106,104,105,103,96,116,104,101,104,106,106,102,96,108,109,111,111,111,112,118,94,96,101,108,99,104,113,97,98,104,98,102,111,115,110,100,107,90,104,99,104,107,109,106,102,111,113,94,107,95,115,97,110,117,95,104,105,105,109,105,110,94,115,94,104,113,108,108,103,109,107,81,109,99,97,95,110,101,110,109,101,99,97,111,114,112,100,107,99,121,101,104,105,102,115,113,103,116,107,130,110,99,99,108,83,107,102,104,109,86,95,117,118,101,113,100,113,106,106,105,103,106,96,105,74,92,109,109,99,108,104,104,96,105,111,116,83,125,102,111,103,93,105,100,121,115,106,109,112,117,98,106,106,108,81,107,101,105,106,90,110,107,100,109,112,109,112,104,94,103,104,106,112,113,111,106,105,108,97,111,100,106,116,103,110,91,108,99,104,114,103,95,109,95,106,114,118,104,99,113,109,106,103,95,108,124,113,112,107,116,116,93,106,101,115,99,83,104,118,108,103,106,103,115,123,119,112,116,137,107,109,113,101,111,106,109,101,108,118,112,105,99,107,92,112,104,103,110,111,105,116,91,113,104,107,111,102,100,110,98,129,113,110,103,103,108,118,105,101,96,105,99,98,106,98,107,111,114,101,103,94,104,103,104,101,106,106,102,106,102,102,106,99,113,101,103,104,112,96,106,116,113,101,125,109,105,115,102,114,109,93,80,92,106,119,99,100,100,89,109,114,109,110,116,99,101,87,132,104,117,103,103,91,83,106,103,104,115,87,110,93,106,113,108,100,98,100,108,105,116,94,117,107,103,110,102,92,75,106,106,107,106,110,113,99,107,104,102,107,104,110,107,118,115,106,97,131,92,106,113,101,109,111,98,105,103,118,98,102,99,115,110,108,112,104,102,115,108,75,92,115,102,105,88,100,111,111,107,111,102,107,106,101,112,102,108,95,104,106,122,95,107,98,108,91,121,90,104,112,107,106,111,98,116,106,94,112,110,106,99,105,110,110,96,112,108,121,109,96,112,117,101,98,105,113,95,109,107,116,107,120,114,104,107,109,107,102,106,117,99,96,104,105,111,105,107,99,97,96,97,125,119,110,97,80,106,102,104,99,108,99,111,106,115,107,116,103,113,120,112,102,116,97,99,112,107,101,117,105,112,114,106,99,106,92,90,103,111,140,106,78,116,105,108,109,107,121,103,107,98,110,101,118,99,93,72,108,107,98,105,99,111,106,113,112,106,113,113,113,92,106,127,113,99,109,112,112,107,98,99,99,110,106,89,107,95,104,67,98,111,107,112,110,95,96,109,105,104,117,101,115,101,107,117,113,105,106,109,118,104,100,110,102,99,107,112,109,105,115,106,97,112,106,108,107,111,112,98,109,99,104,99,104,113,97,110,103,99,96,108,95,102,108,101,99,101,115,121,90,100,105,113,114,106,94,110,105,129,103,110,110,112,109,103,96,109,104,105,91,105,110,116,108,95,104,109,106,117,107,111,124,100,109,83,112,108,113,106,107,109,96,109,94,105,99,116,101,105,105,118,102,94,105,117,103,99,113,96,104,108,113,100,109,100,87,111,99,102,102,103,119,105,87,108,103,106,104,100,111,103,92,113,112,108,104,111,102,114,106,102,106,109,103,110,92,98,96,115,115,110,102,109,109,107,113,103,106,105,99,107,108,110,113,96,106,102,120,99,104,104,108,113,108,100,103,108,91,104,104,107,113,101,107,104,132,88,98,94,109,105,133,109,99,109,101,99,110,106,112,99,97,102,104,99,98,103,135,108,108,95,106,116,94,98,94,107,96,119,109,99,107,98,104,105,107,109,103,104,95,110,113,103,101,111,108,100,98,135,107,99,108,109,81,112,105,97,100,98,106,102,102,105,104,111,92,99,109,125,110,108,106,92,97,102,104,114,103,97,106,104,105,100,100,101,97,112,109,105,105,105,92,96,100,100,100,103,123,102,101,104,106,104,97,99,97,106,98,110,107,89,122,105,99,95,104,103,95,102,102,107,95,107,103,106,108,103,106,94,106,102,108,98,112,114,100,112,98,101,103,98,92,107,112,105,98,107,105,98,105,108,106,104,101,98,107,96,95,114,110,101,96,98,98,106,105,117,108,101,115,96,100,108,106,92,113,119,106,108,97,132,105,101,121,103,108,107,89,102,110,92,99,115,113,102,112,94,96,104,96,102,116,116,105,116,110,119,98,114,113,112,106,123,111,99,113,108,105,112,101,116,113,106,111,106,100,111,103,82,104,103,104,107,102,104,104,105,99,107,103,109,83,108,108,111,104,104,101,104,93,108,108,99,107,92,116,102,102,104,109,108,96,102,107,116,104,103,110,104,104,95,105,109,99,106,109,110,105,95,112,104,102,110,103,106,111,114,104,96,95,105,108,104,107,108,96,64,101,95,106,99,112,106,96,97,103,102,116,105,110,93,98,105,103,100,98,105,94,117,104,108,93,97,101,114,112,102,107,102,102,112,113,108,109,116,109,106,101,99,106,100,113,110,115,110,113,98,113,86,101,110,109,106,113,100,110,105,102,98,106,112,106,112,96,94,100,103,112,121,111,110,117,103,86,95,110,95,101,101,94,104,104,109,107,106,106,107,107,98,101,113,111,107,102,112,106,114,107,98,105,106,101,102,100,109,108,120,106,115,99,102,95,95,99,90,103,103,106,100,102,107,115,103,106,107,100,88,94,97,98,138,101,105,107,112,113,108,91,97,105,102,111,109,107,113,113,103,110,102,106,98,103,106,105,115,99,99,107,105,87,107,92,100,99,98,102,90,106,92,100,123,109,105,110,119,108,106,89,102,107,95,108,103,104,99,109,103,96,104,120,103,86,107,104,115,100,104,107,102,103,99,116,108,102,87,100,106,109,103,113,105,94,108,116,105,108,105,111,102,83,101,94,99,100,111,92,97,112,112,106,103,95,117,113,104,105,107,100,93,102,96,99,97,96,99,104,123,100,94,109,90,88,119,94,88,117,101,103,119,109,97,97,105,110,69,105,106,123, +549.00922,99,102,89,99,90,98,100,90,110,108,97,99,104,101,112,91,103,114,102,100,99,98,98,93,100,119,98,111,110,106,116,106,107,94,85,96,103,96,107,98,102,109,89,103,99,120,102,125,101,117,98,98,102,105,108,95,102,98,107,94,110,123,106,93,111,114,121,97,99,91,110,122,98,110,98,113,106,101,107,90,103,112,109,105,101,105,92,107,102,101,99,109,108,92,95,94,111,96,107,91,98,100,104,106,108,102,95,104,103,104,106,105,105,115,114,105,98,103,106,103,108,104,107,116,102,105,106,103,100,117,98,103,102,108,116,111,109,101,84,96,111,113,101,111,107,109,108,107,105,99,102,103,106,100,96,105,106,108,99,102,75,108,103,104,112,103,114,109,79,106,116,92,110,113,101,113,98,81,99,110,104,119,105,101,95,102,104,98,97,94,77,111,95,123,99,103,98,100,116,117,101,95,101,103,110,105,104,106,96,103,103,106,101,102,83,108,103,99,102,109,106,108,92,110,97,113,105,109,103,112,109,103,110,107,109,108,107,101,106,100,97,97,109,103,108,101,104,100,108,106,105,101,109,100,104,112,106,112,101,115,101,107,101,111,91,98,98,135,97,115,122,104,97,108,106,102,103,107,103,95,100,103,97,103,102,108,104,116,104,106,95,101,109,116,117,105,101,106,116,111,95,97,103,116,113,116,107,103,105,109,108,110,102,114,103,106,105,108,100,102,94,101,113,101,103,97,95,104,109,105,107,110,106,105,95,108,102,93,98,102,108,111,109,102,104,97,105,102,110,116,111,95,106,94,109,106,97,91,109,109,108,80,117,96,101,89,101,99,110,108,102,113,113,97,92,102,110,106,105,103,119,99,82,108,90,101,95,94,100,106,105,92,107,116,100,109,104,113,103,98,106,95,97,109,95,105,107,112,104,119,97,107,114,126,115,83,93,104,101,108,92,102,86,98,91,101,109,101,91,108,96,114,116,112,114,110,95,104,91,98,117,102,101,104,94,112,101,109,101,107,101,110,90,119,99,100,106,93,113,112,99,103,108,104,114,123,104,93,101,94,105,98,105,102,103,94,102,109,103,113,104,120,101,104,102,110,116,101,116,108,101,119,104,107,109,109,104,99,102,94,110,91,102,102,91,107,102,103,112,112,100,92,97,100,104,105,112,109,101,103,105,92,101,112,112,109,107,98,96,102,96,112,89,101,107,93,116,101,94,101,102,122,107,113,110,99,110,106,86,113,102,111,122,107,116,98,103,104,105,105,91,94,108,106,106,111,120,105,102,105,100,108,96,108,104,110,111,106,107,94,109,102,107,100,112,112,106,101,100,104,99,129,102,100,132,106,109,106,101,107,113,109,100,99,104,94,97,105,92,109,106,109,102,112,111,106,93,109,100,101,92,93,110,98,107,103,91,116,104,98,99,114,95,100,105,123,101,99,112,101,104,107,97,109,107,106,103,102,100,111,99,108,110,107,112,112,101,112,105,102,111,111,101,96,100,115,107,90,102,104,117,104,104,99,96,105,108,97,110,107,106,118,105,108,98,104,109,105,101,101,92,101,101,118,102,100,110,111,108,103,107,107,108,119,114,108,113,100,104,104,111,101,101,104,111,104,83,97,107,102,111,102,115,97,98,100,96,101,97,122,94,101,92,100,104,99,109,100,95,95,103,103,109,100,102,110,101,93,103,106,125,111,100,94,106,104,100,109,110,104,85,103,97,108,100,105,101,109,106,91,105,100,111,103,112,102,149,109,96,111,102,107,110,100,110,115,107,99,101,110,109,106,105,108,107,111,100,91,109,99,109,100,95,110,100,99,102,105,98,97,108,109,104,101,118,99,111,106,100,104,96,108,101,104,96,111,107,101,105,107,114,110,103,106,100,96,100,109,100,96,99,109,103,90,92,111,92,93,109,109,102,98,96,106,100,108,103,115,109,109,109,99,109,92,104,116,103,99,114,111,100,101,103,110,95,110,108,100,100,98,108,110,109,106,94,107,101,120,104,106,114,101,96,104,104,95,103,100,109,98,109,108,112,102,114,106,98,98,94,109,111,99,118,106,113,108,94,99,106,102,105,99,96,110,119,97,102,97,83,110,104,104,105,109,101,104,103,101,107,94,99,107,117,110,109,96,105,105,102,103,104,108,110,99,100,103,111,105,105,108,109,103,105,74,112,93,104,107,101,104,109,103,110,110,105,104,99,97,105,100,98,105,101,98,115,113,107,99,108,96,98,109,111,88,87,91,95,114,113,100,95,102,103,86,104,110,112,105,100,110,95,103,106,106,99,96,108,130,87,99,99,105,92,99,109,100,111,96,93,115,121,103,109,119,100,113,98,108,110,128,120,105,110,119,118,129,112,104,105,104,115,125,101,109,98,113,109,108,103,99,67,104,97,106,104,92,98,102,90,99,96,114,96,118,103,113,103,100,90,108,104,104,96,101,114,107,96,91,104,98,103,109,103,87,103,99,109,104,116,102,100,94,103,98,109,124,105,101,95,108,102,110,102,96,98,99,107,103,101,108,110,104,108,112,104,102,110,98,112,116,102,112,108,88,105,96,98,106,101,104,99,102,106,109,106,95,116,97,99,95,115,96,106,115,95,109,117,104,105,104,105,101,101,95,98,118,105,99,112,113,103,98,114,114,109,100,101,98,111,99,112,108,100,105,99,103,109,122,104,99,101,109,108,108,104,98,92,110,100,107,111,113,112,95,114,109,103,102,107,84,100,117,109,107,113,106,101,100,116,107,106,106,106,114,110,114,106,112,111,103,104,107,102,108,101,99,112,107,118,101,126,99,107,103,109,85,104,110,103,98,101,113,105,103,113,103,101,115,107,112,96,135,100,114,113,96,106,106,109,107,109,109,98,96,110,101,100,117,105,132,101,108,100,110,106,106,107,105,106,102,117,98,105,102,118,104,97,99,98,105,100,103,91,113,91,99,100,93,118,98,101,100,101,107,92,109,115,100,102,105,102,104,96,96,109,102,94,97,117,101,104,112,96,110,107,92,91,97,104,93,97,101,110,98,106,99,99,105,102,103,99,102,95,112,106,116,104,102,92,99,110,109,99,100,104,104,104,92,104,111,87,109,97,112,102,109,95,105,93,94,104,94,114,92,90,102,102,96,109,109,107,102,103,104,94,107,101,101,107,106,103,111,95,103,100,106,106,113,102,95,99,109,105,115,117,113,98,103,98,99,103,91,94,87,87,105,99,104,106,108,94,111,107,113,101,94,108,110,117,121,107,109,87,105,108,109,104,111,108,106,101,100,99,110,117,105,110,91,90,97,104,109,114,100,115,106,109,79,107,100,107,107,90,98,98,109,103,103,107,118,104,103,108,101,101,117,98,104,110,104,96,103,106,98,108,107,103,103,97,98,101,101,110,121,98,112,100,108,109,106,102,104,108,97,106,110,109,107,96,111,94,107,105,98,110,96,112,109,121,108,113,108,105,105,98,108,107,101,114,100,111,102,98,110,112,109,106,102,109,95,88,116,96,123,112,106,107,102,101,110,89,113,108,96,100,106,91,106,95,107,109,110,107,97,105,114,102,116,110,104,97,105,113,98,111,108,102,95,93,97,90,95,91,110,101,113,109,112,92,106,106,98,109,99,101,101,99,102,107,106,99,108,94,108,103,98,106,96,107,97,102,89,102,101,98,105,105,102,107,101,106,109,102,107,105,104,102,106,117,91,106,106,100,117,100,101,111,113,93,104,104,99,97,84,108,117,107,93,117,108,121,99,100,108,110,98,106,96,117,93,103,95,100,96,114,103,93,105,106,107,88,96,95,105,105,103,106,99,104,110,119,103,99,109,111,97,86,97,110,102,103,106,115,110,107,118,98,111,103,116,96,100,104,113,96,101,101,105,99,91,96,106,95,108,107,88,90,99,110,106,108,103,106,116,111,100,107,96,105,100,105,87,94,108,101,100,87,94,93,102,105,108,102,99,104,112,100,108,101,116,99,111,95,107,112,98,99,98,105,105,99,100,96,99,100,104,105,114,100,102,105,111,97,102,115,101,120,116,99,108,105,107,106,90,111,104,109,100,101,94,107,108,100,111,115,100,98,83,128,98,110,107,101,128,115,103,96,113,102,111,92,91,90,98,100,103,101,100,91,105,99,102,98,98,99,103,102,107,110,99,94,104,114,104,105,97,99,98,105,116,111,101,94,110,112,110,101,103,104,94,85,99,95,110,105,101,113,105,104,95,95,101,100,108,104,94,108,122,116,111,110,95,120,111,103,106,114,106,93,101,98,85,107,102,101,100,95,107,98,106,112,102,105,89,108,96,93,92,119,100,96,97,109,89,95,94,95,111,106,109,101,92,109,107,108,89,112,109,111,107,107,102,103,107,102,96,101,105,104,101,88,105,98,93,92,92,107,100,106,107,111,113,78,100,100,93,106,97,103,114,104,114,122,106,92,95,107,116,102,105,91,106,103,102,104,111,100,101,95,105,94,102,104,103,114,114,108,102,93,104,103,95,94,101,121,75,98,104,112,102,97,99,93,117,106,115,101,101,103,104,108,105,107,112,99,99,101,100,108,98,95,98,98,106,100,88,97,92,107,92,101,98,104,96,114,106,108,98,108,106,106,106,106,94,105,104,114,111,102,92,108,102,104,109,113,88,102,112,83,106,85,102,101,96,104,108,110,104,100,96,106,104,107,107,97,93,103,120,95,106,99,101,111,103,95,116,99,104,115,98,107,105,101,103,122,109,101,101,100,108,93,123,94,101,101,110,91,92,105,114,113,95,99,108,101,98,95,101,119,116,103,100,95,112,111,107,109,98,108,79,105,109,94,102,100,108,111,105,101,94,107,100,104,105,98,100,102,115,106,102,104,94,112,103,110,97,95,97,94,91, +549.15009,107,100,91,101,104,111,113,104,102,117,103,107,105,112,93,103,104,99,85,99,108,129,105,101,97,97,105,128,107,104,102,100,90,89,113,100,99,105,106,126,101,103,120,97,95,124,81,102,101,105,93,106,110,99,98,104,93,104,115,106,105,110,94,97,103,106,116,100,105,107,105,90,91,96,100,83,99,109,99,96,102,106,99,110,102,96,108,112,115,107,108,117,94,100,102,100,103,103,101,105,92,101,112,110,90,115,106,103,106,110,101,108,102,98,79,99,109,112,111,101,107,105,108,117,111,115,106,104,109,98,98,101,103,98,95,98,106,99,95,114,106,108,99,103,103,104,106,100,100,72,88,103,94,94,94,103,116,107,103,104,96,104,104,111,102,99,110,110,105,106,97,93,100,108,110,110,115,101,111,112,97,98,114,103,105,111,103,100,101,109,104,104,101,105,100,98,105,113,113,112,102,105,101,95,94,100,101,108,94,107,105,105,115,108,96,112,113,114,96,112,110,121,104,100,100,101,107,101,103,108,108,115,104,116,114,109,95,109,111,102,99,102,111,102,98,107,96,103,112,109,90,94,113,106,109,104,97,117,103,115,87,113,102,115,106,113,109,104,82,110,103,103,105,111,103,94,95,120,110,104,117,90,107,101,107,110,91,91,105,96,105,94,104,105,111,98,134,94,109,84,94,112,96,89,100,106,110,109,102,119,97,109,105,104,102,107,96,107,94,100,120,90,102,98,96,103,103,87,108,116,104,106,103,99,107,109,102,120,89,110,109,95,91,104,104,108,101,137,108,121,110,94,104,100,121,102,102,116,108,108,104,113,108,109,97,101,96,99,104,106,96,100,105,99,113,101,110,106,102,100,105,94,107,106,97,101,90,105,108,107,117,94,98,110,105,94,100,110,101,105,111,109,98,98,114,99,109,111,107,114,99,95,106,107,109,105,100,100,106,109,102,106,105,103,99,99,92,101,102,113,94,108,105,90,99,106,118,102,105,109,111,117,105,97,99,105,105,107,100,106,97,111,98,110,107,97,97,103,105,102,91,102,102,110,107,116,109,98,99,121,95,104,115,106,105,97,103,106,108,105,110,100,113,91,129,100,109,104,107,105,100,109,95,108,99,102,99,100,113,108,105,105,101,108,106,101,101,99,102,94,104,101,97,113,105,96,97,109,115,108,103,104,101,101,104,96,108,105,105,101,99,114,99,100,97,117,96,99,97,100,107,100,102,94,92,107,122,100,98,109,107,100,109,109,99,102,109,96,100,103,99,121,96,106,101,100,106,107,112,106,105,99,100,105,112,114,128,96,104,119,106,101,107,113,112,107,106,98,113,102,103,105,95,103,102,109,95,142,110,124,99,97,105,106,102,105,89,96,107,121,101,97,107,100,109,103,105,110,103,104,86,103,97,115,103,117,99,102,102,106,100,102,84,106,105,118,99,99,98,109,108,112,110,115,98,112,111,112,113,101,99,109,99,101,107,98,98,105,120,98,99,105,117,107,95,110,103,109,99,94,114,104,96,107,105,102,103,102,111,101,102,108,102,118,90,102,113,105,105,97,99,110,109,109,107,114,86,94,100,100,100,107,104,86,83,112,106,109,106,99,106,105,102,91,101,96,90,91,98,106,98,95,95,112,89,94,99,110,98,103,120,92,112,99,103,104,91,106,112,110,108,103,95,116,106,102,104,110,114,104,116,104,98,97,104,94,104,109,115,109,105,91,105,113,91,99,101,100,100,104,108,117,108,99,95,106,122,109,101,101,113,103,116,108,113,113,103,99,96,95,131,104,109,103,100,98,98,94,108,98,103,102,103,103,112,99,107,105,99,101,113,112,112,100,98,110,108,103,101,111,106,101,107,107,91,120,112,106,90,106,104,109,111,113,98,115,114,100,111,103,108,115,109,114,110,99,99,97,108,104,108,90,101,101,98,75,100,93,102,109,107,106,101,103,100,100,95,97,120,104,98,116,107,87,91,98,109,103,113,116,99,93,92,102,102,105,103,114,105,99,97,108,96,96,108,87,105,108,104,102,108,110,107,109,92,100,103,106,103,98,113,101,109,105,102,93,114,101,105,103,99,109,115,109,100,100,103,92,97,106,111,100,107,101,104,98,100,100,110,97,95,115,112,116,99,105,100,117,103,109,93,120,111,114,103,106,99,108,102,104,129,117,104,95,100,104,97,101,101,102,107,102,108,106,113,86,106,104,100,109,109,111,123,94,109,98,105,126,96,103,101,107,112,109,103,110,104,108,95,84,106,108,100,107,106,107,103,111,100,111,103,98,110,104,109,105,100,110,99,103,106,107,116,101,103,115,120,113,103,105,102,105,111,102,112,106,108,109,112,111,113,115,111,119,114,128,116,124,119,87,102,112,97,100,100,107,148,114,108,109,106,98,91,111,104,91,105,105,104,105,102,112,97,95,104,104,113,105,109,90,102,117,110,110,100,95,115,103,107,116,105,123,102,111,107,101,102,102,101,92,118,100,111,106,106,112,99,107,102,98,106,110,102,109,121,96,117,85,111,111,96,106,106,108,96,108,113,100,111,102,113,121,120,103,113,101,105,102,107,93,98,107,104,106,107,114,114,112,106,102,112,106,112,123,101,110,106,107,108,103,116,91,114,100,113,113,106,113,101,110,95,92,108,112,109,96,97,94,99,117,117,111,105,112,110,119,124,105,112,113,105,101,126,110,117,107,112,83,107,111,108,111,102,112,108,106,113,112,115,115,101,114,108,108,111,110,107,95,102,102,103,99,113,109,113,96,109,101,117,113,117,104,117,113,99,107,107,102,113,107,106,111,108,100,100,95,106,110,104,106,111,103,108,117,101,102,98,94,101,111,94,91,104,112,108,103,94,110,99,106,104,114,96,110,111,106,92,106,100,113,102,112,116,103,104,102,116,105,109,118,102,106,97,101,99,107,112,109,113,105,107,109,73,98,113,115,111,120,103,102,99,99,106,103,100,107,112,116,104,116,105,103,98,113,91,103,101,106,104,97,104,108,95,103,106,103,95,94,109,110,116,109,125,105,119,113,115,117,105,113,112,101,91,102,103,98,111,123,111,110,108,121,107,103,112,94,117,110,106,94,105,113,94,114,105,113,103,100,99,98,109,101,111,100,121,110,107,112,99,102,113,102,109,105,114,107,96,105,109,107,98,98,105,108,104,96,106,105,104,100,112,111,105,114,103,109,111,107,107,101,112,110,107,100,99,100,103,109,106,96,102,107,116,118,104,98,89,116,102,120,108,97,102,119,103,99,109,107,115,113,101,101,98,104,97,111,111,95,103,104,103,109,110,111,102,115,107,106,104,117,105,107,121,111,100,110,88,91,120,96,98,112,109,82,114,101,107,115,106,108,107,104,108,113,108,109,105,123,91,107,109,101,120,109,117,104,105,104,111,108,109,98,110,104,106,101,110,107,104,99,107,101,104,125,104,88,106,104,106,82,109,104,100,97,93,103,99,106,98,115,99,115,99,105,104,109,99,94,117,93,104,94,81,106,112,116,104,102,93,121,100,107,105,95,111,113,109,103,121,107,119,107,110,119,105,113,116,128,107,104,102,118,100,101,109,98,101,108,105,99,105,108,119,106,96,93,105,119,112,113,113,104,103,112,102,98,101,91,112,110,107,104,107,106,108,109,102,106,112,112,113,111,115,128,101,99,105,74,109,101,106,97,110,121,108,81,116,106,99,98,123,116,99,106,102,102,103,113,107,113,98,107,91,101,103,103,101,113,85,115,111,103,119,113,105,108,111,95,113,100,95,110,101,101,113,102,104,112,102,93,109,105,112,116,106,106,101,105,66,111,95,111,109,99,103,99,103,112,110,98,104,97,114,96,101,111,104,103,116,119,103,103,100,104,104,96,103,95,108,110,98,109,107,106,109,114,116,107,115,103,100,107,106,102,96,104,90,106,109,104,98,120,107,95,105,115,102,115,105,108,103,84,108,102,102,91,106,108,101,103,99,105,120,110,115,107,105,104,114,102,107,101,129,116,105,87,115,94,109,107,115,123,102,104,109,113,110,99,118,117,99,98,110,98,110,107,103,90,102,106,96,108,115,102,102,105,108,117,114,116,100,108,107,125,102,113,103,72,97,92,100,98,112,105,105,106,102,103,108,119,105,97,108,102,94,98,113,114,106,104,110,115,113,111,115,107,97,95,106,110,106,113,102,105,111,108,106,99,96,113,109,102,107,105,90,101,111,108,106,104,104,115,133,99,111,105,103,105,98,110,90,88,120,98,106,104,129,105,99,95,96,107,101,99,103,99,104,101,110,107,111,103,114,102,112,105,137,109,109,116,108,109,107,103,100,103,110,99,103,108,103,98,102,113,107,108,108,100,125,115,113,99,117,101,104,117,108,119,112,105,109,101,106,104,96,105,91,111,124,102,105,117,98,88,114,101,90,102,100,104,113,114,107,106,112,104,104,103,108,116,70,106,102,103,104,109,94,99,107,108,109,105,94,101,113,113,103,119,103,104,94,104,106,112,106,78,96,107,103,103,98,108,103,103,111,92,112,82,104,117,109,115,109,109,108,100,108,121,105,101,105,98,113,107,108,108,98,106,107,108,80,103,99,108,94,101,100,112,109,106,114,107,99,96,107,120,124,104,108,123,100,111,109,104,94,101,106,99,98,99,94,95,102,101,108,110,106,110,115,95,106,112,97,114,128,99,108,82,105,103,111,111,101,101,101,92,112,97,109,116,113,100,116,107,103,102,95,129,109,112,105,105,116,106,111,96,96,98,75,102,110,102,102,104,93,109,98,109,99,108,106,102,101,107,106,105,75,116,105,98,103,109,78,110,103,109,96,110,91,87,114,101,90,82,113,112,100,97,97,99,109,101,115,91,104,106,98,111,106,93, +549.29089,130,107,98,107,106,102,93,100,114,104,98,106,97,85,114,94,99,106,106,96,119,101,99,90,96,105,97,103,102,113,110,96,95,99,122,108,105,115,103,96,97,99,90,113,113,107,103,98,107,125,100,83,110,116,109,108,109,95,92,98,113,98,105,105,112,107,91,110,117,103,103,104,104,94,116,108,99,116,102,108,103,105,111,102,94,92,102,99,108,105,99,96,94,110,94,98,107,106,104,94,102,103,95,108,97,111,94,96,117,94,103,105,111,97,108,102,106,104,104,107,106,101,111,115,102,113,112,103,101,104,103,98,102,113,103,120,111,102,91,78,106,103,96,108,92,65,117,107,101,94,100,105,105,101,92,103,110,101,87,104,95,104,104,104,95,79,102,108,106,123,96,103,108,109,102,105,113,101,106,99,102,112,96,104,101,109,95,100,104,96,105,112,96,98,113,106,99,93,98,107,101,103,108,110,118,106,108,101,113,103,104,101,121,102,113,103,110,114,114,122,124,98,104,93,109,105,102,99,104,100,104,114,123,97,97,104,110,104,99,116,91,111,118,113,102,104,102,116,93,87,109,110,103,98,109,122,105,109,104,106,115,101,121,98,104,103,101,99,103,109,100,109,104,91,116,105,111,109,109,99,115,105,105,103,108,119,94,110,103,104,115,102,107,108,98,113,129,104,87,91,105,73,109,124,110,121,107,102,107,102,98,100,109,95,109,100,100,107,114,101,104,95,118,106,109,103,116,104,112,108,104,102,99,102,110,101,99,101,110,111,88,108,103,106,92,111,93,110,101,106,104,107,110,110,106,98,120,113,108,106,114,103,89,110,103,107,107,126,105,107,110,101,109,109,96,94,106,101,120,108,116,105,105,109,101,98,91,107,110,110,95,98,109,130,103,104,107,81,103,95,100,115,94,92,118,89,109,122,104,101,101,106,118,102,115,98,100,113,110,98,109,112,92,106,104,101,97,85,104,103,101,98,97,105,95,96,100,110,105,111,105,112,98,100,101,110,105,96,103,111,106,111,91,100,109,109,94,113,109,103,104,99,113,99,106,108,97,103,102,110,95,102,107,108,101,97,124,105,101,108,110,107,113,113,110,85,100,103,118,108,109,103,90,113,107,102,95,110,117,110,102,101,94,106,100,106,101,107,98,105,106,111,101,106,105,105,108,105,96,104,111,107,115,100,105,100,119,111,119,100,94,102,108,109,105,114,102,107,112,107,99,101,108,103,119,105,103,104,106,101,109,111,113,104,96,106,102,106,106,96,124,99,81,108,97,104,103,104,104,109,102,104,112,108,107,105,106,103,97,134,111,114,114,101,106,106,114,105,100,103,118,104,107,107,108,114,114,99,105,116,103,93,106,105,94,98,92,101,103,112,106,99,111,113,92,98,109,95,97,102,113,104,106,102,108,110,105,110,104,104,113,99,103,108,109,105,101,100,112,102,87,104,104,104,102,97,98,96,103,111,109,95,109,113,116,105,105,90,99,113,115,108,94,107,109,85,97,101,100,107,103,105,106,101,93,121,105,113,117,110,107,96,112,107,104,95,100,143,111,100,69,107,99,94,114,105,89,101,109,107,102,111,113,102,108,103,102,98,110,102,109,110,109,101,96,103,107,105,109,105,107,102,99,86,100,104,111,104,112,113,102,116,105,105,93,107,115,108,112,106,100,103,103,98,105,102,109,110,102,112,131,97,108,94,102,106,109,108,111,119,99,102,106,108,103,113,99,114,106,101,108,98,107,105,112,114,107,105,104,97,103,105,99,98,96,96,97,114,107,111,121,98,99,113,102,110,89,109,110,112,101,76,99,93,103,109,110,107,105,99,106,97,102,96,113,104,111,110,116,101,107,105,104,83,122,94,101,105,102,109,98,99,109,107,101,119,115,97,111,108,109,115,99,103,114,105,102,102,93,95,93,106,113,102,117,99,105,103,101,95,107,87,96,109,101,113,102,108,107,101,96,96,118,96,108,101,96,95,105,107,101,98,104,134,101,114,97,103,100,91,104,111,109,114,114,91,106,114,96,105,118,113,106,110,110,101,103,104,95,110,111,104,115,105,105,113,113,118,107,118,104,99,106,103,106,105,107,106,103,104,94,88,102,109,93,114,100,104,95,99,107,95,102,112,112,112,109,89,95,107,105,112,108,105,104,95,117,103,95,104,78,93,101,99,101,109,114,103,100,114,104,117,98,108,112,109,107,112,98,106,104,107,106,113,102,110,119,117,118,119,107,109,96,101,104,104,118,113,96,106,108,102,117,98,107,112,109,103,106,104,97,113,101,120,111,107,108,109,108,107,101,100,112,107,111,111,98,103,114,111,106,118,101,110,112,98,89,107,108,80,97,128,119,117,118,125,137,117,119,127,107,102,121,125,101,105,123,102,103,94,106,109,119,99,113,106,113,103,109,95,113,111,108,99,106,104,115,111,110,99,99,109,96,113,99,111,107,103,121,105,111,97,100,98,102,107,114,101,108,100,100,108,99,98,108,98,89,107,114,102,97,113,102,106,112,101,102,112,93,100,106,102,106,92,118,109,97,108,112,101,94,109,107,103,106,98,98,111,96,100,108,116,96,116,103,105,106,99,104,102,116,107,111,110,99,114,112,107,124,111,117,103,109,99,99,105,101,105,106,96,102,104,111,109,110,108,108,83,104,108,108,110,106,110,108,97,73,109,94,102,117,105,98,102,99,109,113,116,100,100,108,117,128,88,108,113,99,109,106,101,89,105,118,109,98,103,101,109,110,102,101,112,85,107,106,98,108,113,113,108,110,106,109,106,81,112,105,98,108,105,102,111,107,99,106,103,111,113,106,108,103,108,108,97,104,110,113,107,109,118,107,109,110,122,118,89,112,104,101,98,114,108,95,109,107,97,116,111,110,97,115,109,113,95,105,101,105,109,106,108,99,110,105,110,108,97,111,107,101,112,109,113,119,111,96,103,106,102,96,98,95,101,97,101,106,103,106,98,104,99,116,98,113,124,115,129,113,109,107,101,104,92,99,105,111,108,115,101,92,112,124,107,113,111,102,108,103,112,107,113,96,99,97,95,104,113,106,127,100,109,104,106,109,111,114,118,93,105,93,103,97,110,104,95,95,98,83,117,102,113,96,90,102,106,109,110,78,112,102,106,107,103,93,107,116,109,109,105,110,110,111,117,95,88,110,104,118,110,105,99,94,106,114,113,100,105,107,108,107,112,116,117,98,105,105,103,104,103,124,102,107,111,107,111,103,115,102,110,111,116,115,104,101,107,98,88,106,96,107,103,102,100,111,124,107,110,104,99,115,98,100,113,80,115,82,102,105,103,105,93,107,113,111,103,105,115,108,109,116,105,106,92,107,103,100,114,103,94,101,95,103,102,119,112,110,100,117,116,110,99,104,108,112,106,106,114,119,104,94,111,108,106,98,105,95,102,112,120,106,102,112,117,99,113,88,106,119,106,95,108,117,109,107,105,100,106,101,107,113,102,100,108,107,105,97,109,100,109,101,101,117,106,97,114,102,91,95,100,94,99,109,103,111,121,100,102,98,102,109,111,99,104,98,82,95,107,103,80,115,109,103,108,106,97,117,112,117,95,112,100,109,114,106,113,103,100,114,103,104,105,102,112,106,99,95,106,95,90,107,104,104,104,116,101,95,105,111,102,117,104,110,117,113,116,112,96,111,117,117,88,113,101,118,107,107,100,98,108,120,115,100,103,94,105,107,113,109,92,108,96,91,100,99,113,106,112,107,103,107,103,105,102,107,99,104,98,111,99,109,106,108,104,101,103,116,99,108,116,99,116,110,113,102,107,105,104,99,106,109,97,102,112,85,95,107,113,109,110,106,113,96,111,100,108,107,100,102,101,90,111,110,120,111,113,107,99,114,104,99,89,90,124,108,104,114,104,108,102,109,93,103,100,80,104,98,108,114,107,101,95,96,115,102,101,95,103,111,105,107,96,104,109,106,113,109,117,105,109,106,98,100,106,104,127,110,93,108,99,104,95,123,107,102,96,105,97,107,98,99,101,109,111,119,115,106,107,104,85,110,101,98,110,102,97,113,105,96,95,94,104,114,109,105,111,101,72,104,110,109,109,102,106,103,119,109,118,106,94,108,103,111,113,97,106,107,104,105,124,102,105,106,95,102,111,108,107,79,103,102,116,105,110,113,105,96,108,97,107,106,129,107,108,110,108,101,102,96,101,97,108,107,124,99,101,95,113,112,111,109,94,101,103,104,89,95,117,101,105,85,114,107,99,109,115,99,108,105,103,94,92,117,98,112,96,101,103,104,106,112,109,106,101,96,95,111,102,104,107,109,115,103,91,103,105,105,94,139,98,108,117,103,116,116,118,102,101,101,101,117,95,106,102,102,108,110,98,102,115,104,97,97,94,98,114,114,103,96,104,109,107,119,115,100,98,106,95,111,97,103,102,101,110,103,115,122,100,103,91,110,118,100,100,104,105,126,109,82,95,100,101,77,100,111,116,107,102,114,109,102,102,94,93,104,106,105,101,117,113,123,105,103,102,99,106,106,105,102,101,110,104,110,109,101,106,114,103,117,107,98,99,108,99,106,116,119,108,103,107,115,112,104,95,103,115,102,112,100,107,116,100,119,104,102,119,108,98,113,109,94,104,105,105,103,106,96,107,116,119,96,104,97,101,93,100,92,109,118,104,104,98,109,112,105,100,113,110,95,106,113,100,96,78,103,102,100,101,99,107,125,111,107,108,124,98,120,113,112,106,104,113,105,110,113,99,119,99,109,107,104,115,102,105,103,94,97,106,99,113,101,106,119,93,104,105,104,102,109,108,108,97,104,104,95,98,98,106,93,93,110,93,110,112,109,84,117,84,119,104,96,102,115,86,93,112,102,107,102,98,119,92, +549.4317,108,97,94,103,104,119,102,113,105,107,101,106,110,95,98,91,98,102,101,112,109,95,106,98,103,109,112,102,106,108,108,120,106,104,91,114,97,87,112,102,102,97,105,105,113,109,93,108,102,100,112,100,102,103,100,98,99,112,106,90,102,108,107,92,107,97,99,125,95,98,87,109,109,107,77,114,104,103,110,123,110,101,102,102,100,104,104,92,96,106,106,94,97,96,107,90,105,101,97,87,104,87,107,83,87,112,100,105,104,105,100,110,102,103,111,101,101,109,115,96,75,95,100,104,108,99,79,103,93,117,101,113,98,100,100,103,99,101,100,95,98,138,90,96,95,113,104,101,86,106,95,99,108,87,116,114,108,109,103,95,130,91,103,102,106,106,98,100,112,87,103,102,125,101,99,105,100,99,104,94,100,114,114,103,98,107,107,103,118,95,90,83,113,99,98,105,110,105,104,103,106,98,104,106,103,112,102,102,108,98,106,96,104,103,89,98,100,110,114,102,111,110,108,86,105,103,110,103,94,98,107,102,105,102,117,99,124,102,89,99,102,101,119,99,104,105,107,86,101,85,94,108,100,114,104,110,95,105,107,109,100,106,99,109,96,114,97,92,108,97,107,102,121,106,102,96,108,105,88,97,106,103,122,99,103,106,91,106,106,105,105,108,111,94,112,107,105,102,100,108,86,94,104,121,102,104,117,104,111,105,89,118,132,92,98,110,116,107,107,109,103,102,101,106,97,109,104,115,106,115,103,102,106,113,105,114,107,105,68,108,103,104,100,92,105,111,103,103,87,112,102,105,98,101,114,129,108,97,117,105,103,97,103,102,106,97,103,92,108,108,100,106,93,107,110,100,106,99,105,92,106,107,98,104,100,98,99,98,108,114,100,94,99,109,104,94,105,108,102,97,104,104,104,98,104,102,110,103,82,96,98,93,106,105,112,101,92,98,92,113,102,100,87,92,121,95,104,105,97,95,98,105,101,102,104,107,104,108,106,121,100,97,100,107,96,113,112,107,113,112,103,110,105,109,114,106,102,112,102,116,97,98,113,115,115,107,103,88,99,106,93,121,107,95,77,96,108,116,99,102,101,95,108,117,76,115,100,112,96,114,99,124,103,96,103,116,112,99,117,108,104,103,100,93,111,95,100,105,103,109,120,109,117,104,103,115,98,105,103,98,95,102,103,103,98,99,110,105,113,111,92,111,90,100,109,101,110,107,106,103,99,109,87,91,97,83,97,102,101,96,99,102,103,102,102,96,89,93,99,98,113,87,103,109,110,101,96,106,105,102,96,75,104,98,103,113,110,94,94,109,98,101,104,95,102,94,100,105,105,107,109,101,102,95,102,108,99,102,109,104,99,102,97,107,92,101,94,98,117,100,111,98,105,104,107,102,99,99,84,111,102,109,113,112,110,105,101,102,108,112,105,122,107,113,98,106,92,112,95,102,108,111,119,103,98,101,110,107,99,110,105,103,104,103,86,113,99,101,96,106,111,114,99,102,98,103,118,94,100,98,99,111,99,109,102,119,100,100,102,104,107,102,109,97,77,109,91,101,109,96,109,101,112,87,103,108,109,117,93,76,115,93,96,101,103,113,108,97,105,99,100,109,67,108,105,107,100,102,107,101,95,99,124,105,96,92,104,95,122,110,112,101,102,103,106,86,111,92,110,105,104,85,96,109,110,98,109,95,113,105,107,102,105,105,97,112,113,108,112,103,104,94,106,100,101,82,107,97,79,103,109,110,106,109,117,107,105,104,99,89,105,100,99,105,110,91,113,88,106,119,102,115,97,109,96,112,105,103,102,113,106,108,78,103,121,97,109,104,113,112,129,95,111,109,102,104,99,106,113,112,102,112,95,96,106,98,102,104,107,109,110,95,112,105,111,96,102,111,105,106,96,95,91,87,114,118,108,109,98,96,106,107,102,100,107,112,108,96,99,104,110,101,111,113,105,101,96,97,115,102,101,102,106,109,101,108,107,97,99,95,111,102,105,113,102,89,105,109,91,109,105,107,120,111,109,100,110,105,91,100,112,85,84,114,104,96,88,107,94,104,100,104,101,101,106,105,106,85,101,116,102,103,106,102,104,104,87,98,109,109,105,108,108,98,98,97,94,105,116,90,97,100,108,105,102,109,111,109,106,96,112,105,106,117,107,105,102,102,98,104,108,96,119,95,96,100,94,102,95,100,117,103,114,97,101,111,109,96,105,108,106,105,105,113,105,105,78,103,94,105,96,104,102,107,95,116,110,116,94,101,113,106,94,122,98,107,110,99,104,94,98,104,109,106,97,101,101,114,99,112,105,121,103,107,102,104,108,109,103,120,106,98,85,107,108,104,101,111,108,105,123,123,116,123,119,109,111,122,108,119,101,126,101,110,94,107,115,88,109,110,106,91,102,98,92,98,115,106,99,93,102,107,108,113,106,109,116,110,106,108,107,108,108,109,124,113,109,100,102,112,117,75,116,110,100,112,105,112,121,112,101,107,113,95,81,125,110,96,104,106,104,106,90,102,108,109,98,106,106,106,113,127,96,113,92,98,108,114,102,119,116,106,90,132,113,108,108,111,118,100,113,115,91,104,122,106,108,103,101,103,113,113,115,111,109,103,118,106,104,111,113,94,109,120,119,108,95,116,115,96,111,96,115,105,106,106,103,138,109,96,110,111,113,107,102,108,112,104,98,112,107,104,110,131,105,85,103,105,106,108,127,138,112,101,113,105,110,108,108,108,122,117,109,109,114,107,102,110,96,106,113,138,96,106,117,105,110,108,114,107,108,113,114,106,103,101,114,119,107,104,110,105,113,100,93,102,104,104,103,120,103,118,119,122,103,108,106,113,102,117,113,109,115,117,104,89,96,106,106,101,104,113,105,116,113,106,112,106,116,110,95,114,110,103,108,117,102,103,110,94,117,109,112,104,119,99,107,109,96,107,112,97,101,107,114,103,125,104,103,102,92,110,112,102,100,123,99,98,120,107,111,112,111,93,99,109,94,106,104,106,110,79,97,102,108,97,92,104,103,108,98,132,113,110,104,102,113,113,107,103,110,109,117,92,97,96,100,99,116,111,105,109,99,104,113,111,104,87,105,95,100,94,96,109,117,110,115,103,111,99,113,108,112,100,102,106,111,108,98,114,109,112,107,106,109,117,100,99,101,104,121,97,106,99,105,105,119,101,106,106,103,115,109,112,108,114,102,99,106,98,117,105,102,108,110,109,121,111,118,114,113,102,111,122,104,97,109,108,104,106,113,100,114,95,98,119,97,109,99,103,107,99,104,103,111,123,107,122,109,104,115,102,114,113,119,98,113,99,104,109,98,96,92,109,100,113,107,100,105,103,113,114,112,106,112,115,109,108,93,106,101,108,101,112,112,112,107,106,99,106,106,108,121,112,113,103,110,105,114,106,108,93,110,85,105,101,104,92,97,106,121,99,107,104,96,103,115,109,100,104,99,111,111,99,105,104,110,105,112,95,121,109,99,99,113,97,94,98,95,108,106,107,107,106,112,119,104,109,112,108,111,113,108,108,108,105,106,99,118,113,113,117,108,110,103,103,109,102,111,108,103,112,110,104,91,108,99,113,112,110,91,103,105,108,103,98,109,107,105,114,111,110,106,109,105,110,107,116,105,102,101,99,106,115,94,108,104,102,111,100,100,105,110,107,100,109,88,76,103,99,110,102,119,109,111,103,102,126,114,109,90,103,114,92,106,106,108,93,114,102,126,110,122,98,108,106,111,116,108,103,103,109,106,106,97,102,96,96,104,127,98,99,106,109,104,103,104,100,113,101,102,104,100,102,98,109,100,104,106,105,88,120,107,95,107,110,114,112,105,91,113,105,110,104,101,106,100,97,105,100,103,113,98,113,97,104,113,101,92,113,98,92,95,104,110,107,100,106,99,126,110,99,95,104,110,99,99,108,113,104,99,106,104,103,109,103,109,135,100,104,121,113,108,106,103,109,108,112,107,107,104,98,100,110,105,103,99,101,119,104,105,103,105,121,105,106,117,106,115,100,102,103,99,100,115,105,115,90,104,95,96,115,96,97,103,90,119,109,102,98,108,99,94,102,118,107,92,103,113,97,101,99,101,114,114,105,99,113,113,111,99,100,102,115,109,106,116,98,106,102,90,106,102,108,105,109,107,107,97,105,102,113,112,104,111,106,102,125,101,109,119,113,105,105,104,111,124,102,104,106,111,110,111,99,111,97,108,121,98,116,106,103,103,106,96,91,108,110,105,107,98,99,99,105,109,108,94,98,104,109,99,102,83,106,110,107,107,98,101,117,109,106,109,109,124,106,107,121,96,106,106,92,99,106,112,108,114,105,112,96,106,107,118,107,112,100,106,112,117,106,121,102,99,124,107,84,121,102,102,93,112,95,113,99,108,116,96,100,107,109,105,107,97,110,109,100,99,107,104,94,96,110,111,103,108,105,107,100,111,102,94,93,100,100,103,108,114,102,98,104,99,99,97,114,120,92,108,95,105,100,103,98,112,100,110,98,121,102,104,103,109,109,99,100,106,101,103,105,101,120,105,104,107,101,87,104,104,96,96,105,95,96,106,104,107,105,103,106,113,104,101,105,108,105,103,100,104,106,124,110,100,97,105,105,108,108,102,114,117,109,105,95,112,125,105,96,98,107,108,103,102,89,101,99,110,101,106,102,112,102,104,102,98,106,117,83,103,104,92,91,97,103,111,111,99,116,84,93,107,104,101,108,114,94,103,104,99,83,106,116,101,104,112,116,101,109,114,102,78,111,83,104,105,111,105,100,99,98,112,102,108,105,110,101,104,91,117,107,112,117,105,95,99,73,105,100,100,100,100,98,101,98,105,99,92,98,105,100,91,96,100,108,103,87,117,98,91,90,111,105, +549.57257,87,109,102,100,90,93,88,110,111,114,115,102,105,96,98,91,111,125,105,99,92,104,115,102,98,103,97,109,102,109,94,103,88,88,110,95,107,101,100,95,108,119,103,112,108,109,112,90,108,105,95,104,106,114,99,97,123,107,105,94,105,114,107,104,110,108,104,99,88,96,121,113,82,113,98,78,95,103,98,90,68,100,95,98,102,103,102,103,107,101,116,105,103,90,109,126,100,109,94,95,102,100,97,106,104,100,98,110,104,91,108,104,99,99,102,111,91,110,95,116,82,91,107,104,102,104,114,104,108,106,101,99,94,104,91,102,104,115,103,111,102,108,103,105,95,108,108,113,112,95,91,108,105,100,99,87,114,111,108,118,103,102,90,95,111,111,98,111,102,85,102,117,106,97,111,96,96,104,110,108,106,107,97,113,97,97,92,98,103,98,104,114,93,107,99,101,95,115,98,104,108,103,103,98,93,106,105,104,101,116,99,100,107,99,97,100,117,114,102,91,102,111,105,101,97,88,118,109,113,105,94,103,97,109,109,102,98,107,116,106,115,112,107,117,98,102,99,101,115,108,113,106,99,102,96,106,107,103,102,101,92,97,108,103,99,95,108,103,103,104,122,108,94,96,111,96,100,108,96,100,107,104,101,96,118,105,93,110,108,102,100,118,100,109,102,113,120,103,108,103,97,101,108,107,94,112,104,110,100,99,95,117,108,123,108,114,115,108,103,112,102,104,111,110,119,113,97,99,117,98,121,103,111,103,105,105,96,112,98,100,106,107,96,106,106,108,112,103,104,86,103,97,98,107,106,115,109,103,102,87,109,105,80,102,107,97,96,125,107,103,113,113,111,105,111,94,118,104,111,99,105,112,101,113,113,94,93,99,106,94,119,102,116,111,115,95,104,104,103,108,87,115,110,107,122,100,113,105,99,108,96,101,94,105,104,95,105,112,102,107,101,95,94,122,107,88,75,104,102,108,109,115,108,105,107,114,109,106,107,105,117,102,106,121,77,109,111,102,109,104,117,103,113,111,112,108,106,77,100,99,102,104,104,101,117,106,99,120,99,114,103,103,101,118,108,105,87,112,120,109,95,112,111,104,111,100,111,103,106,103,104,112,99,109,92,94,103,109,116,95,113,105,101,107,110,109,97,105,97,111,114,104,112,94,113,116,109,107,106,85,100,99,104,106,92,94,100,95,100,102,114,107,98,104,100,99,106,100,111,109,109,108,110,104,100,95,107,107,110,120,107,103,119,113,101,90,111,105,103,97,114,100,104,106,104,106,116,95,106,96,94,102,103,91,101,112,94,108,113,79,112,113,110,112,106,94,106,115,102,88,121,110,112,81,113,114,109,112,103,107,105,100,111,108,102,99,113,113,109,105,95,103,109,105,93,122,116,101,108,105,105,122,110,106,103,106,104,94,103,129,104,111,108,98,104,104,104,101,110,107,96,118,114,110,110,95,94,106,104,115,103,108,108,115,93,104,116,105,107,117,107,115,107,107,100,101,111,104,107,105,113,115,107,120,105,103,112,100,92,99,108,107,91,109,103,100,106,108,104,95,100,105,99,107,103,120,111,111,107,64,105,117,104,102,114,100,126,119,105,101,103,101,108,101,98,120,103,105,105,108,117,95,93,107,111,102,111,90,106,105,106,98,104,107,96,101,117,99,99,113,113,108,104,111,109,102,112,99,95,105,112,92,106,111,103,94,111,103,104,116,103,98,106,99,108,104,93,105,109,109,102,114,111,96,98,95,100,88,98,100,105,112,109,107,107,102,112,95,87,108,107,110,112,103,98,99,108,96,102,110,120,107,100,111,121,116,109,100,108,96,119,91,105,86,113,99,113,98,110,104,115,104,106,111,110,114,100,108,106,104,114,111,109,107,108,104,105,112,101,119,101,112,112,100,103,104,102,105,113,107,104,109,101,110,96,99,109,109,104,108,105,112,98,116,115,117,106,90,108,105,110,113,106,110,95,101,110,105,100,97,84,114,102,97,124,83,104,111,102,100,114,113,117,87,101,105,109,117,102,108,102,105,110,114,106,105,101,114,103,102,104,103,104,116,121,113,105,99,100,114,107,109,114,99,110,109,101,94,108,106,109,111,106,116,101,101,99,111,104,103,104,100,114,110,105,114,108,107,107,107,105,114,117,100,110,109,101,104,112,105,110,108,107,104,109,96,98,120,110,111,110,109,106,106,102,108,108,109,95,106,105,100,109,107,106,115,92,120,98,100,91,77,105,96,106,103,110,92,105,115,110,102,104,118,101,110,109,109,106,105,97,108,116,99,92,108,106,108,102,100,119,106,98,96,95,99,102,109,107,100,78,95,103,105,99,91,88,111,109,111,96,110,140,121,107,100,133,117,112,113,117,114,120,121,100,120,109,115,104,110,110,119,100,107,92,90,104,112,108,100,108,123,99,112,102,134,112,112,107,99,108,108,105,105,93,111,105,100,117,107,101,103,113,87,102,105,103,95,103,102,111,98,114,110,107,117,114,105,87,87,107,135,102,117,114,104,107,106,119,102,103,98,106,101,99,107,108,107,108,97,110,112,108,96,105,102,98,108,105,90,110,99,94,88,96,99,134,97,98,106,107,107,108,111,100,99,102,97,116,116,105,93,121,93,96,96,100,104,109,101,101,106,101,108,102,122,95,103,102,106,110,107,115,115,101,104,105,108,112,110,113,112,102,102,88,111,109,98,109,109,104,92,127,101,94,109,115,109,106,105,103,104,101,96,114,108,104,123,113,94,116,114,110,116,104,109,98,106,105,103,98,99,104,125,113,110,108,106,110,108,102,100,104,93,106,105,100,113,113,125,107,103,102,100,94,91,104,93,97,115,112,101,117,104,88,99,95,113,100,103,102,106,96,120,112,114,104,102,106,115,89,104,110,104,100,111,104,113,106,110,107,106,97,98,88,104,104,105,103,106,104,101,94,112,120,93,113,107,98,102,99,112,96,112,98,116,101,101,113,92,107,99,94,108,106,96,106,104,109,105,113,105,84,108,112,102,104,114,102,106,111,109,117,109,103,99,100,99,108,105,110,116,99,108,98,105,99,106,97,92,99,110,105,105,115,95,107,92,112,93,101,114,94,108,100,101,106,117,102,109,95,102,102,98,111,90,105,103,113,110,105,116,103,108,125,105,112,96,110,98,116,112,103,121,96,79,111,104,111,107,98,98,103,93,102,108,111,102,101,106,103,109,106,97,108,107,129,111,107,106,131,109,108,113,112,94,93,118,85,95,117,95,104,90,109,108,109,105,113,107,109,98,109,103,116,98,110,97,94,87,99,107,86,106,100,102,100,105,111,103,92,109,94,108,108,96,103,92,110,116,115,109,112,104,98,96,112,101,112,111,105,117,105,103,94,103,99,107,103,107,99,96,103,99,94,100,124,106,114,100,107,94,91,92,104,113,102,114,102,98,122,100,108,102,105,90,110,92,103,95,117,108,100,107,106,110,92,109,112,99,118,107,92,112,129,100,109,108,109,116,104,103,99,110,102,103,111,102,99,99,105,112,98,108,90,99,76,99,108,108,107,102,102,104,100,100,89,116,112,96,99,109,99,107,106,111,105,103,118,117,101,111,118,104,107,102,76,107,106,99,102,103,111,112,104,110,119,112,97,109,113,98,104,100,97,108,109,121,109,99,98,109,100,95,87,112,100,114,109,113,111,112,107,104,104,99,83,117,108,101,105,115,83,92,105,98,108,98,99,102,107,105,105,104,102,99,104,108,117,104,112,109,101,100,110,94,116,104,116,106,95,92,108,104,115,107,107,104,104,107,110,101,103,101,89,106,103,102,89,107,113,106,113,103,101,101,108,110,109,77,101,108,94,99,104,118,114,108,109,100,103,111,100,105,108,93,106,98,108,98,83,95,90,99,100,94,99,106,108,99,105,94,116,99,98,117,100,94,107,108,102,113,95,95,100,93,104,100,93,113,113,98,106,108,113,101,99,104,107,116,105,98,95,97,92,100,91,100,106,103,106,101,109,118,108,105,117,103,122,108,108,110,98,105,109,119,98,106,98,112,86,87,113,95,113,109,124,104,106,113,102,94,122,106,104,107,113,99,101,98,91,103,101,106,104,104,95,105,98,104,102,101,96,105,104,117,115,119,114,115,111,97,99,102,99,112,99,108,102,103,105,107,108,96,98,113,103,116,110,105,104,113,107,106,101,110,106,103,107,96,112,111,113,99,100,97,111,107,97,102,108,103,99,111,107,97,101,119,98,100,109,97,113,113,97,107,96,93,116,106,100,117,107,120,112,105,95,109,98,109,111,100,103,100,104,67,99,100,108,113,112,104,101,100,111,91,103,101,105,113,105,106,108,122,117,104,107,100,105,104,105,102,106,117,104,109,102,104,117,99,100,91,98,100,99,113,91,94,109,88,109,112,94,108,105,103,100,99,105,109,105,113,105,108,103,105,107,92,100,108,109,109,95,107,108,104,104,107,105,108,94,98,94,103,116,109,117,115,102,98,94,99,94,105,101,105,105,100,120,100,99,113,109,99,117,100,105,96,111,102,107,100,103,103,91,108,104,101,90,108,106,104,114,111,104,106,111,105,93,107,103,92,116,115,105,100,117,105,107,106,108,106,98,124,103,113,117,108,112,110,101,104,113,103,90,111,92,98,102,94,97,105,100,106,109,113,110,94,117,98,111,114,112,109,109,98,104,106,101,120,105,108,93,109,106,96,101,105,116,117,104,95,111,95,100,105,98,106,113,116,112,95,101,96,102,99,104,100,102,97,87,111,108,102,89,94,100,120,100,83,106,100,102,89,110,106,102,110,103,91,106,102,103,105,109,103,107,92,121,103,118,119,97,90,98,99,102,118,105,109,124,106,92,103,106,96,91,116,106,104, +549.71338,116,104,82,105,90,101,114,99,86,103,101,112,96,108,104,91,104,112,109,111,103,103,94,97,108,93,106,106,96,109,113,99,97,104,68,114,100,103,97,100,107,102,94,99,115,105,103,103,102,112,107,105,97,100,109,108,97,100,109,108,97,124,116,100,110,111,92,115,107,103,95,102,104,107,110,90,106,99,110,108,105,101,103,85,103,104,106,123,98,103,114,118,109,101,113,96,105,113,96,102,114,100,106,102,104,119,101,94,91,114,106,101,107,112,116,109,98,110,105,109,108,95,120,107,100,111,114,99,114,115,110,96,101,112,105,109,107,107,99,95,118,109,91,96,106,114,125,107,95,102,110,110,109,71,104,120,104,107,104,109,104,107,107,110,105,107,109,110,102,97,94,111,103,91,108,106,97,101,116,110,102,100,100,106,114,94,101,116,108,101,102,108,103,108,110,107,107,116,107,108,96,108,107,122,96,115,113,106,107,108,109,111,107,106,104,112,102,111,98,95,114,113,97,108,102,110,97,102,103,107,103,105,113,100,98,108,109,92,106,108,92,104,110,100,103,97,98,109,97,88,106,111,110,111,117,105,102,101,93,122,100,103,112,99,95,100,107,127,100,98,91,114,107,98,109,103,102,112,93,100,95,107,93,109,105,111,102,103,112,107,104,120,109,101,112,106,109,103,110,114,105,109,102,112,80,128,108,125,108,111,110,104,116,123,108,104,104,103,111,110,108,100,108,105,111,115,98,98,99,106,102,87,107,114,105,108,109,106,105,114,110,108,117,97,114,96,112,103,114,103,108,99,130,107,104,100,116,106,102,102,105,104,101,104,100,93,118,107,94,113,111,97,103,103,100,99,108,99,103,108,111,101,105,113,100,97,90,62,96,99,107,111,99,111,99,110,104,102,111,104,99,108,99,99,92,98,115,122,104,103,122,112,105,128,108,113,100,99,114,97,102,100,100,109,104,97,106,101,100,110,103,99,95,112,110,105,95,106,106,110,116,107,103,105,78,113,102,105,101,104,102,110,97,102,107,104,110,69,97,115,97,110,117,117,110,114,97,93,109,111,106,114,105,109,102,106,107,110,107,113,109,112,118,110,99,106,100,112,99,104,105,107,109,105,98,98,107,100,100,99,99,98,97,104,99,114,101,105,103,99,108,121,103,106,106,104,113,109,102,95,103,108,104,96,106,99,104,106,110,96,101,111,113,99,113,96,96,74,102,99,112,107,95,107,109,104,103,95,90,105,111,100,108,127,107,92,110,93,96,97,111,109,106,105,99,107,110,108,102,103,90,106,98,90,99,103,98,100,100,107,106,99,106,104,107,106,106,103,106,88,108,103,104,115,115,124,105,111,106,101,114,106,105,103,107,103,112,103,108,102,108,108,113,116,105,108,114,100,114,107,105,109,112,102,104,104,103,109,117,114,105,95,104,104,76,100,108,104,105,98,110,111,99,108,96,99,99,100,107,120,100,116,104,96,99,108,115,110,95,104,110,102,110,108,102,98,94,96,98,95,112,121,109,102,120,115,96,99,79,104,110,108,118,103,98,112,99,95,104,107,94,101,101,111,111,108,108,116,108,90,110,108,99,110,103,111,101,118,97,93,106,111,112,99,96,100,124,113,110,100,105,109,106,109,95,104,101,117,118,98,112,102,103,101,104,103,108,100,102,106,106,102,110,93,90,112,110,120,91,105,118,94,114,100,110,113,104,97,109,111,104,109,103,95,91,102,100,110,105,97,117,103,104,103,108,110,105,105,101,100,97,103,111,109,103,106,114,119,104,112,102,106,105,96,95,99,94,107,108,116,103,98,105,106,110,101,117,104,108,92,113,104,112,110,104,104,106,113,100,103,101,109,85,106,87,97,120,104,124,104,117,90,117,102,111,103,111,100,100,117,110,98,101,102,102,106,104,109,112,102,112,100,118,112,99,110,109,110,101,107,99,111,94,94,114,95,101,103,122,105,102,110,105,108,101,114,103,96,101,104,108,111,100,123,111,103,103,114,106,115,122,103,99,108,116,82,102,109,88,113,80,110,109,112,130,101,98,96,108,96,91,100,119,91,104,90,104,115,92,112,108,107,104,96,105,102,109,104,97,118,115,103,122,101,103,102,99,122,98,102,92,102,105,109,96,110,113,111,97,115,109,112,116,112,103,120,126,111,107,108,106,110,112,95,117,105,107,107,97,91,101,103,119,104,113,113,105,107,112,105,104,111,121,110,106,102,110,113,104,105,107,97,102,76,113,108,105,117,96,105,115,111,104,101,106,111,103,119,97,97,107,106,105,99,108,104,86,95,99,93,109,109,109,99,120,107,106,97,104,117,103,107,112,91,104,114,99,102,105,110,109,109,113,115,119,130,109,121,118,124,112,103,106,108,102,102,100,114,114,111,103,102,105,105,109,103,106,103,117,101,105,110,110,107,113,112,108,93,97,103,111,104,98,107,98,105,108,100,112,113,84,109,116,95,99,105,112,108,110,111,110,101,114,94,105,101,83,108,110,108,105,106,111,106,106,97,76,99,91,113,105,105,116,108,104,104,111,106,106,101,109,107,100,117,105,109,92,105,112,107,121,109,92,100,98,104,107,125,102,115,102,83,113,106,106,103,104,116,112,109,110,102,125,101,92,125,105,100,124,116,110,108,109,111,109,113,105,96,108,109,94,105,100,108,101,96,110,104,92,99,97,101,109,110,92,117,118,105,96,110,95,95,105,123,111,106,104,127,98,105,102,118,103,98,112,117,106,100,109,96,101,111,106,104,96,106,107,112,105,103,109,103,105,116,85,110,116,104,103,103,105,105,105,96,108,111,109,101,107,117,112,110,98,79,102,101,103,111,100,110,96,95,106,112,106,103,109,103,117,93,108,113,102,102,100,94,71,95,100,107,104,100,108,95,90,99,106,103,102,113,100,108,111,113,102,109,103,93,95,103,106,112,107,103,100,96,101,118,96,104,104,105,87,106,107,113,102,101,98,105,113,67,105,112,111,91,112,97,114,119,105,99,107,101,116,110,103,92,111,98,104,110,110,103,109,99,114,105,107,102,106,115,116,106,106,102,102,104,103,95,103,109,117,97,107,108,117,117,108,105,103,113,105,110,109,101,115,109,107,98,113,107,93,112,105,113,105,106,99,95,105,103,109,124,113,98,113,110,104,112,113,113,100,116,99,95,128,109,119,107,120,99,113,110,92,128,114,101,110,107,109,102,108,105,110,98,99,104,107,113,104,110,100,111,116,87,99,107,107,107,113,101,108,113,101,104,110,124,109,99,103,102,113,97,117,109,102,104,110,99,107,112,103,95,110,103,107,102,120,100,87,115,109,103,108,112,105,104,109,114,109,106,115,100,106,97,103,97,107,103,104,102,99,102,116,114,106,95,125,96,92,95,104,118,104,98,105,95,107,92,98,99,94,100,104,105,103,98,110,104,98,120,108,102,97,98,101,108,91,102,100,97,114,104,98,101,104,110,113,97,98,101,104,113,108,105,106,91,102,117,107,110,98,109,118,114,100,116,102,102,110,104,110,112,118,101,106,107,102,99,108,111,103,98,109,110,109,108,103,109,109,116,108,106,121,111,110,98,104,98,106,101,111,106,110,101,110,100,101,103,97,105,115,105,105,109,111,104,124,121,102,108,102,102,103,113,107,110,99,123,105,107,99,103,110,90,102,103,104,109,94,102,109,132,96,106,102,104,102,106,98,92,115,100,108,101,107,111,104,102,104,116,100,106,104,100,108,108,110,104,104,103,95,109,89,102,106,91,107,109,103,107,111,114,118,111,110,93,104,96,118,97,107,109,98,113,101,98,107,95,91,105,109,97,106,114,108,104,101,99,96,103,101,109,107,117,75,103,100,85,103,106,110,108,109,102,116,96,103,99,103,105,96,95,104,96,117,118,98,103,99,107,117,100,113,103,111,105,103,112,94,110,101,115,103,108,101,105,102,102,121,109,96,110,118,102,105,108,106,103,105,98,95,102,84,99,107,106,119,97,117,107,106,103,120,111,116,105,92,108,103,117,110,110,106,99,108,103,107,94,116,105,103,107,108,101,116,107,110,105,120,113,106,104,103,113,109,108,107,101,108,105,110,109,118,109,117,106,111,103,79,95,106,114,103,108,105,110,113,107,111,117,104,106,106,111,112,121,88,100,113,112,110,105,94,115,101,103,117,117,100,106,109,102,98,109,112,107,101,110,125,120,113,116,89,99,113,106,104,99,97,99,114,96,100,102,105,97,107,90,107,104,117,117,102,102,102,109,100,108,93,114,108,99,106,96,103,90,100,106,113,99,104,106,103,102,102,105,108,98,99,105,120,100,102,102,104,97,118,118,112,100,106,109,94,101,99,115,103,100,94,105,107,104,112,102,99,100,113,105,106,113,110,117,126,115,100,100,107,97,114,106,99,115,107,111,90,113,102,87,115,106,124,108,101,91,116,103,103,107,102,110,113,96,103,96,105,111,100,102,96,107,90,115,113,107,104,95,76,106,103,96,112,113,105,101,99,118,97,116,106,108,109,98,99,91,108,104,91,91,104,105,107,100,106,82,103,94,111,99,108,105,116,107,103,106,105,105,105,103,100,105,111,130,98,98,100,109,112,113,109,103,104,105,98,99,81,136,105,98,84,114,112,108,110,106,113,111,102,115,91,93,99,104,102,102,106,107,98,106,107,107,94,108,117,93,106,101,97,94,106,105,88,105,102,105,119,100,115,105,106,94,113,109,94,105,104,117,109,95,106,108,95,102,106,109,114,110,93,99,113,111,110,97,89,113,89,103,107,105,116,97,99,88,95,101,91,107,101,97,97,93,101,105,101,122,100,79,111,106,97,136,100,115,101,102,102,97,110,104,112,80,112,105,109,97,101,101,105,77, +549.85425,105,120,100,89,115,106,116,102,109,101,92,92,110,93,109,64,105,115,112,94,109,110,96,108,104,108,102,114,110,110,94,100,109,109,101,117,89,103,98,114,101,102,114,105,116,105,113,108,100,96,113,109,106,96,106,94,112,104,95,102,98,116,105,103,99,109,107,111,117,96,97,101,118,111,110,103,103,99,103,117,108,110,105,96,97,107,104,104,110,96,112,100,108,121,110,108,113,103,104,101,94,126,104,113,92,108,98,102,103,100,124,101,100,98,107,104,105,94,102,101,93,104,108,114,105,101,121,83,111,108,102,98,116,106,99,100,97,99,108,103,75,109,95,97,103,115,94,111,104,116,108,114,117,92,101,113,107,114,99,112,101,98,99,101,102,99,100,105,116,98,101,106,95,104,79,112,90,96,105,116,101,111,105,112,102,102,99,95,99,105,94,107,102,103,89,100,98,90,101,106,91,104,111,92,101,111,112,110,99,109,121,109,106,104,97,102,85,103,110,106,107,102,110,95,86,111,95,101,113,102,107,105,104,104,110,96,101,111,98,105,97,99,102,69,116,103,121,102,112,107,108,104,107,117,103,114,95,99,96,91,110,109,105,97,100,105,110,97,98,115,104,102,110,94,141,109,103,133,98,111,99,94,97,106,112,104,99,99,110,111,108,99,95,110,115,107,106,97,98,98,103,93,97,104,111,107,103,104,102,111,97,105,104,121,95,107,107,117,107,112,109,113,118,105,112,99,120,103,115,116,104,103,107,94,102,103,107,111,106,92,113,115,97,106,114,112,101,117,104,116,103,108,100,112,100,119,97,111,99,109,114,107,106,101,93,91,101,106,116,91,110,100,101,107,103,105,104,103,109,115,104,107,121,97,106,102,113,94,103,95,102,102,87,93,104,102,108,100,101,95,103,97,109,102,110,100,91,98,107,105,94,102,95,109,122,109,116,99,111,97,113,108,98,99,91,97,97,96,97,118,101,101,109,98,108,120,100,104,104,114,108,108,107,106,104,112,99,99,105,101,92,103,103,94,110,99,107,110,114,108,108,106,102,105,124,121,108,108,105,105,104,118,110,102,110,98,101,115,112,105,104,98,106,98,113,107,108,89,106,103,100,115,105,94,97,95,112,108,106,105,114,103,116,104,89,99,100,101,105,106,111,103,106,101,123,102,101,108,91,100,91,98,99,103,98,134,109,106,99,113,121,102,105,101,104,100,104,100,110,112,112,104,106,115,120,122,114,103,101,101,96,96,114,111,110,95,110,98,99,105,115,112,99,90,109,102,106,86,100,105,103,98,117,101,116,101,93,110,103,109,104,113,122,106,107,102,106,114,115,96,100,111,96,97,101,110,102,103,102,103,113,109,111,97,104,102,109,102,102,100,103,101,123,112,104,109,95,106,109,99,112,106,98,102,99,94,99,110,101,108,75,97,99,107,111,107,99,98,103,99,103,112,109,98,102,88,106,105,101,114,98,99,91,97,95,104,96,114,102,103,104,98,101,105,96,106,100,91,92,96,103,109,103,112,102,109,99,114,114,112,108,118,116,100,110,87,106,103,103,107,110,117,105,103,92,106,108,108,88,103,100,103,100,104,109,107,112,105,98,112,100,103,107,111,97,108,102,107,102,102,113,101,97,113,88,110,89,100,105,101,105,118,101,107,99,103,115,106,105,104,103,94,95,101,105,89,100,92,104,102,109,104,105,95,101,93,105,99,113,107,110,69,105,110,97,92,98,104,104,108,102,105,117,101,101,121,109,96,88,108,105,96,107,101,112,112,114,117,118,107,106,105,97,122,109,100,107,119,105,120,63,97,101,102,94,106,113,102,105,105,109,97,101,106,111,92,101,110,108,109,111,108,120,103,114,95,102,107,99,102,117,100,83,97,106,92,105,108,110,69,105,112,96,108,102,104,101,102,107,100,111,98,104,105,97,100,115,98,103,104,109,99,115,114,112,103,103,117,110,107,89,111,99,104,94,105,116,107,110,102,89,108,100,112,103,105,117,125,95,105,95,100,125,104,112,103,104,104,100,108,107,103,95,115,110,100,98,110,97,107,95,106,109,122,94,106,103,113,94,95,115,104,101,101,96,101,105,101,105,91,96,114,108,105,99,94,110,104,126,102,91,103,98,99,105,112,110,109,107,103,99,112,113,96,104,107,113,111,102,106,108,112,100,98,107,102,98,65,86,95,108,123,108,96,106,99,102,92,103,109,101,111,99,99,92,101,116,110,101,93,103,100,98,108,97,106,97,107,106,96,93,91,126,104,99,107,116,106,98,112,105,97,92,109,92,99,115,101,106,105,105,108,103,95,106,91,103,94,102,97,110,114,106,123,95,80,105,113,103,115,116,121,103,125,121,112,113,120,112,120,112,124,92,106,109,107,102,102,80,112,101,99,100,105,120,90,108,108,98,98,104,110,110,109,104,111,112,106,109,103,106,101,102,113,115,117,106,101,117,107,99,104,108,95,101,108,104,105,117,95,110,108,114,105,113,120,117,74,103,112,105,106,112,110,100,96,105,99,101,116,106,96,92,102,101,103,103,115,99,109,102,113,114,105,87,99,96,94,104,105,108,102,109,115,99,109,108,100,115,94,100,113,130,98,115,102,101,116,92,100,100,99,103,104,104,120,108,113,112,104,116,110,113,104,106,113,110,97,104,100,101,98,102,107,106,96,117,103,106,105,91,104,106,114,106,116,111,110,109,105,115,122,109,103,113,123,82,119,105,116,100,115,106,109,104,109,101,103,119,123,106,109,104,108,124,108,99,113,117,113,111,107,112,118,111,92,105,108,104,107,110,89,111,101,109,109,107,106,107,117,108,107,119,95,109,93,101,110,80,108,108,105,109,91,99,103,126,102,98,118,111,113,117,116,113,102,107,111,98,113,106,101,105,112,105,110,118,107,109,109,100,107,110,112,93,108,98,96,100,111,98,112,103,112,103,108,110,110,107,106,98,107,97,102,104,111,111,112,97,104,105,114,114,113,112,109,111,106,107,103,100,102,96,104,112,119,100,106,93,97,108,98,112,76,104,111,110,89,112,100,113,103,112,106,104,96,99,111,106,138,100,108,102,104,93,101,113,106,109,109,105,91,114,121,101,99,100,106,107,102,99,113,101,116,105,116,116,108,110,111,98,117,104,108,112,74,108,108,103,112,107,94,96,111,99,103,110,116,117,96,110,107,103,112,111,91,100,102,112,103,114,115,88,94,108,96,111,104,115,100,129,107,103,105,99,100,104,113,106,121,104,104,104,102,110,113,107,108,114,99,108,98,104,108,97,110,113,95,111,97,111,123,95,99,109,117,102,102,104,119,110,101,112,96,107,105,105,96,111,111,115,113,107,112,111,100,113,104,106,105,107,108,105,99,117,110,108,92,121,106,96,109,106,108,104,97,103,103,113,94,94,109,101,102,103,106,117,101,104,101,97,112,98,86,100,100,99,120,103,102,113,105,107,93,108,106,97,94,118,100,113,98,100,103,115,112,106,94,110,104,91,111,117,98,108,96,113,108,105,96,109,99,108,103,104,108,117,96,104,111,105,88,109,120,87,104,110,101,109,97,95,103,102,120,108,113,107,103,105,96,106,98,108,104,108,112,109,110,97,109,97,99,115,115,105,96,105,105,108,111,96,106,106,105,103,110,107,95,117,107,108,118,111,109,100,103,117,103,105,113,110,95,111,100,102,102,112,111,121,110,100,103,99,98,106,107,106,101,101,112,108,106,103,97,108,101,89,111,104,104,108,100,99,106,98,112,91,106,105,110,92,101,107,111,107,103,113,111,111,106,128,110,101,99,109,96,110,87,105,94,111,110,101,100,112,85,120,86,106,103,102,109,102,89,107,110,107,105,108,105,107,106,94,96,110,103,102,100,111,123,109,109,109,112,108,120,102,94,107,109,111,96,117,110,104,118,91,102,111,89,97,116,104,117,101,118,98,114,106,99,107,107,111,104,111,103,105,96,109,112,104,100,90,104,99,109,105,105,103,106,121,100,115,102,105,102,108,92,109,95,106,101,103,96,112,103,98,105,117,112,97,93,107,94,107,104,97,96,103,94,113,110,108,99,104,111,107,81,100,112,99,101,101,98,116,113,110,101,104,100,105,94,104,104,107,106,108,98,99,106,116,115,109,102,83,111,105,100,103,101,98,98,104,91,107,110,100,107,108,106,109,115,113,103,105,86,114,117,99,102,98,101,102,101,100,90,107,103,107,93,101,98,114,103,100,107,105,106,106,106,94,92,111,121,94,95,109,97,100,120,105,111,106,111,113,102,98,105,100,107,112,106,100,106,117,92,104,112,96,106,113,95,107,108,101,100,109,109,111,109,104,99,110,107,134,86,110,99,103,109,101,91,100,93,96,94,111,113,84,96,121,100,97,96,95,108,98,110,106,107,117,110,113,99,108,102,96,102,112,109,103,109,100,96,100,105,112,113,100,98,100,92,104,104,107,112,102,112,96,102,105,110,93,107,110,101,108,98,92,102,88,107,120,108,104,101,104,111,93,95,96,103,100,98,102,99,101,105,105,99,107,112,108,95,104,111,101,102,98,99,102,99,116,98,99,111,94,103,99,96,97,99,108,104,108,97,110,111,96,108,106,107,110,89,91,102,105,100,93,120,106,96,120,96,87,94,105,98,116,105,96,105,104,101,100,92,117,107,104,100,110,109,116,97,99,103,109,110,96,98,96,99,87,102,110,104,119,104,124,112,94,98,122,99,100,105,108,96,102,125,104,104,120,116,103,113,105,100,98,103,97,110,102,98,102,101,102,93,103,148,107,106,96,97,117,102,97,104,90,95,116,95,93,106,93,102,76,109,110,108,99,97,110,92,106,115,87,106,108,107,104,80,139,99,99,105,112,91,105,98, +549.99512,103,99,87,100,91,101,106,109,91,100,92,95,110,94,106,104,102,102,116,103,104,104,114,100,111,100,106,90,103,96,105,104,99,98,122,105,126,101,109,109,100,107,106,109,99,104,112,103,94,107,111,95,104,117,101,91,100,97,104,87,84,110,90,86,113,104,106,117,101,91,108,111,95,115,98,113,103,96,109,103,111,109,105,84,104,106,102,103,114,108,115,86,97,107,105,105,108,96,101,107,106,117,98,99,105,111,112,106,105,94,110,101,101,95,118,109,101,98,112,115,102,107,113,108,102,101,121,105,109,100,95,105,95,101,100,96,92,109,107,105,106,112,93,110,103,103,108,93,112,94,110,98,112,95,107,102,98,92,102,112,106,99,100,107,92,108,100,93,106,107,99,108,104,95,106,110,91,96,118,101,111,110,102,106,87,98,95,82,110,104,102,102,96,114,97,107,72,99,104,105,101,109,105,114,102,117,104,110,117,114,100,104,115,98,106,99,103,113,98,88,107,100,109,110,87,113,105,115,109,112,100,112,109,95,102,97,96,106,102,98,102,110,110,106,97,100,95,101,104,98,102,109,93,111,99,106,110,108,97,109,95,120,102,92,100,110,100,101,95,105,100,98,100,98,108,104,111,118,100,94,104,112,96,104,112,95,97,101,107,107,91,94,95,116,99,95,99,116,98,94,99,100,103,117,110,123,122,104,101,113,101,110,105,105,126,105,113,100,97,106,98,91,105,95,107,116,126,99,108,106,106,103,124,106,105,106,100,117,97,98,103,102,99,104,98,125,114,96,110,120,106,104,107,104,119,106,98,111,105,107,112,94,105,102,106,107,117,111,94,104,107,97,105,104,106,97,111,96,113,103,95,80,112,108,105,101,87,90,75,109,112,91,100,108,99,106,95,114,109,102,105,113,95,103,105,106,101,106,118,100,87,79,112,110,99,116,110,112,105,104,95,103,101,103,90,95,99,96,114,90,96,112,101,105,106,107,99,110,102,110,107,100,104,101,101,108,97,105,105,110,101,93,111,122,95,90,93,100,96,105,108,106,121,112,110,114,104,108,116,111,110,114,104,112,106,106,103,106,103,111,101,105,106,102,92,101,95,106,95,90,95,103,108,100,107,103,115,109,111,93,115,99,105,99,96,109,101,100,85,100,110,115,116,113,95,119,107,104,105,115,104,115,118,98,110,96,107,102,99,98,104,107,103,108,108,104,99,102,110,112,95,104,99,109,113,95,107,113,111,92,109,105,103,100,112,99,99,104,102,101,116,103,105,105,104,100,106,89,114,112,105,94,103,99,120,100,105,111,103,115,110,93,106,103,100,106,98,104,105,95,105,93,93,112,117,111,109,108,106,99,109,109,103,105,124,115,102,115,93,98,98,102,103,99,116,102,102,109,109,100,113,101,113,106,106,105,104,105,117,111,108,101,110,102,85,102,94,83,111,115,101,119,125,105,103,99,96,111,112,91,91,98,106,89,104,109,95,102,108,103,114,110,115,102,94,98,122,98,102,103,94,119,107,110,133,113,98,91,111,113,110,93,106,100,94,122,103,113,102,105,106,100,95,120,108,101,105,114,109,99,114,110,104,106,104,109,116,93,101,107,98,100,111,105,109,99,99,111,106,103,104,100,111,108,100,89,100,104,103,109,118,146,96,112,102,120,102,105,111,103,111,110,109,96,107,118,105,111,96,100,117,106,129,114,117,103,106,79,103,104,99,124,108,107,88,102,85,110,107,89,117,105,114,104,114,103,108,97,113,104,108,116,109,108,112,102,102,108,103,138,102,103,104,107,100,107,113,99,110,107,101,102,99,102,114,97,107,103,122,122,124,98,107,102,106,106,109,104,93,104,92,105,109,107,103,104,101,110,114,103,109,98,95,87,112,103,109,105,97,104,105,115,105,102,102,102,102,109,110,94,110,95,97,110,89,118,99,102,100,95,105,105,111,110,110,104,96,88,114,111,105,109,91,109,100,101,104,102,105,109,101,108,113,99,112,100,105,111,103,108,111,108,100,103,114,95,110,96,117,99,110,107,88,111,106,97,98,103,110,102,116,101,112,108,113,102,102,104,85,98,106,104,110,106,108,86,104,122,104,107,107,115,106,100,105,102,99,122,90,94,102,93,104,112,114,106,108,109,112,96,107,98,74,109,108,114,103,102,104,101,110,110,105,99,103,108,104,105,115,103,92,115,113,71,99,116,111,109,110,115,114,101,112,113,114,109,94,97,118,100,95,99,98,109,105,98,104,111,95,97,108,100,117,105,111,104,104,105,100,116,99,111,104,100,99,118,107,108,104,111,99,105,91,105,99,104,103,108,117,96,95,104,115,100,102,94,109,119,104,111,104,113,116,112,128,122,103,109,115,119,106,123,125,105,127,107,105,106,114,115,116,97,100,99,109,92,110,107,113,100,105,127,110,84,112,111,97,101,75,100,100,106,102,112,101,113,99,102,127,101,105,93,112,103,108,108,73,110,107,102,107,109,99,107,98,100,95,110,104,122,101,117,94,98,115,104,112,108,107,110,104,96,95,121,99,113,105,117,102,100,93,116,94,105,96,109,97,103,99,97,97,107,101,103,91,103,109,102,103,105,125,110,105,98,110,101,111,103,110,104,125,102,101,101,105,74,104,106,95,84,98,106,117,105,105,116,115,109,96,109,110,93,103,110,108,101,106,106,113,100,104,101,101,102,109,116,111,89,106,92,104,107,113,105,98,115,114,99,109,105,110,105,97,109,108,102,124,110,112,109,92,97,113,103,110,99,101,106,109,96,97,111,105,115,114,100,111,113,104,108,108,108,113,110,106,106,108,107,93,109,100,104,109,106,101,108,109,109,99,118,106,112,109,115,119,111,117,113,102,111,110,117,114,114,102,98,106,104,103,104,117,113,109,99,113,111,99,96,114,113,106,94,102,101,102,108,109,110,101,105,98,110,97,105,95,91,115,108,110,99,91,113,87,106,113,117,113,109,117,96,106,92,104,99,113,100,98,107,111,102,115,100,97,108,111,111,96,109,108,95,106,106,106,97,112,119,110,97,108,102,105,102,115,102,99,95,90,98,96,108,105,110,116,107,117,103,109,98,106,116,103,104,116,103,105,96,113,108,101,110,100,108,107,99,112,104,104,117,97,100,93,100,105,111,119,113,104,110,115,99,113,105,103,102,101,107,109,109,99,117,100,101,101,102,100,96,107,96,106,105,119,103,118,111,99,105,97,103,107,101,110,106,102,97,97,103,107,112,112,101,100,97,114,117,115,110,109,109,100,101,105,98,79,120,105,92,110,94,103,104,108,106,103,108,108,100,98,98,99,97,95,108,100,105,103,98,108,106,109,107,101,103,110,113,98,103,104,99,113,108,99,111,104,107,118,99,109,107,111,99,101,103,103,107,99,110,100,108,100,104,98,93,101,105,106,100,103,99,109,99,116,115,111,95,100,98,100,113,108,105,110,103,107,95,106,96,102,109,124,106,105,111,102,109,103,107,102,107,102,93,116,106,105,111,104,88,110,100,91,99,107,105,102,98,104,88,98,100,110,119,95,93,105,106,100,114,108,110,100,105,104,98,106,121,98,101,111,105,95,105,103,115,112,114,99,100,95,109,104,111,112,113,109,113,105,107,112,110,108,106,98,106,102,114,97,101,104,92,112,98,104,105,107,100,94,113,101,105,98,128,106,95,105,109,113,109,110,103,87,102,94,108,101,113,103,95,113,113,109,110,103,92,106,100,102,102,103,103,110,113,106,96,103,100,100,91,103,99,102,120,96,117,104,107,115,110,107,102,98,102,108,111,116,104,105,98,78,102,89,112,104,112,81,93,103,104,94,102,105,111,90,103,104,100,101,106,105,116,91,110,108,106,95,95,100,109,111,101,100,107,108,109,116,103,99,98,97,104,117,105,119,111,109,97,96,108,105,108,101,92,99,118,93,110,96,103,108,101,117,117,109,105,95,107,112,103,113,107,114,105,103,110,99,111,112,93,112,103,105,108,106,100,110,111,107,113,111,90,106,103,101,90,100,103,106,111,94,105,104,106,108,105,105,108,113,104,103,105,99,89,126,97,94,105,101,98,100,103,105,96,95,101,106,108,101,107,106,100,97,104,107,103,95,115,100,100,104,99,101,109,105,101,99,107,107,81,107,97,105,98,113,115,106,100,113,113,92,119,108,108,114,96,109,102,113,109,112,111,92,96,113,92,109,107,103,115,109,102,103,115,112,99,111,110,97,97,108,107,112,94,112,117,106,106,115,110,111,104,103,106,111,104,103,107,111,113,120,100,105,119,106,116,110,110,108,103,111,96,107,106,96,104,99,106,103,110,110,110,104,108,111,110,114,109,99,100,103,98,115,106,95,89,108,103,114,107,108,103,106,107,103,102,100,75,89,117,95,113,100,110,119,99,82,100,100,104,101,98,107,108,102,117,108,114,115,100,96,89,104,97,105,102,104,118,109,117,103,113,101,111,86,101,98,108,106,112,101,104,92,90,89,117,104,95,112,104,115,103,103,104,79,114,108,95,119,107,103,110,87,103,103,106,101,99,88,97,127,102,108,104,111,100,100,113,93,107,112,96,100,108,105,108,113,113,106,102,122,109,100,105,108,107,109,104,118,104,118,98,104,90,89,104,103,96,102,98,120,112,110,112,93,96,103,106,107,78,113,112,102,106,107,100,105,103,90,108,106,104,101,102,106,81,109,108,94,104,101,110,93,107,99,102,100,105,121,104,102,94,112,111,95,107,99,103,99,108,116,99,98,104,116,109,99,104,102,105,103,105,100,127,110,112,111,105,100,115,100,94,101,95,115,103,101,111,107,104,90,101,113,94,99,111,99,93,103,113,99,111,107,111,111,104,110,123,101,100,100,107,109,106, +550.13593,106,91,108,110,96,121,100,102,104,112,86,111,92,99,101,111,95,122,108,93,116,106,90,118,113,108,108,113,114,107,103,103,93,105,104,103,107,114,103,97,95,103,104,117,109,102,98,103,111,100,91,112,103,103,100,108,87,116,105,92,103,112,104,98,112,96,107,104,100,97,109,110,103,117,107,121,103,105,112,119,108,98,100,111,100,86,117,110,103,112,110,99,101,110,102,101,101,99,104,120,97,101,104,102,92,105,104,105,97,104,92,90,98,93,117,103,105,117,116,97,98,113,105,92,108,107,119,101,102,115,102,108,105,100,104,102,132,105,106,94,104,106,101,110,106,99,100,110,97,104,100,111,106,107,110,103,96,93,108,100,113,105,116,103,94,101,108,103,110,102,105,94,101,108,105,105,106,100,109,106,99,106,95,111,107,105,99,91,120,96,90,115,121,105,114,103,103,113,90,110,94,111,107,113,106,106,102,96,101,103,101,86,107,113,107,101,102,109,101,112,104,115,111,125,118,104,106,103,113,108,109,114,112,99,122,113,109,100,102,105,93,113,113,111,102,100,111,110,114,118,106,110,106,114,96,108,102,108,97,101,100,116,102,104,102,106,127,119,113,99,103,105,112,103,130,106,106,116,99,95,131,111,113,101,108,103,96,104,111,105,102,111,109,106,115,113,110,112,113,106,99,102,112,112,108,105,99,108,104,128,106,111,106,103,101,106,98,99,105,113,110,110,113,101,93,94,105,99,113,118,116,106,113,114,116,110,106,104,101,107,111,95,101,103,113,106,116,118,112,103,95,105,110,111,112,95,108,108,104,111,106,106,107,102,108,104,100,107,93,115,106,98,105,118,85,106,113,123,106,110,116,109,112,103,106,111,95,117,97,94,113,101,112,125,103,99,102,118,93,97,100,106,113,99,100,100,97,108,113,95,99,99,109,106,117,105,115,91,118,110,80,91,106,105,111,117,110,117,109,107,117,88,109,110,109,106,105,106,109,100,114,113,103,101,105,126,107,106,102,119,98,110,111,114,104,122,96,110,112,103,91,103,105,112,117,111,101,107,97,102,105,100,113,100,113,106,98,113,112,115,118,106,124,109,110,91,116,100,105,82,101,109,110,101,105,98,120,113,113,107,117,102,105,95,107,125,105,107,113,108,113,129,93,107,108,114,108,103,115,102,106,119,89,107,105,112,106,107,107,85,101,107,112,96,105,105,110,98,100,120,100,109,98,104,111,99,105,105,113,111,86,118,113,116,99,110,104,110,101,95,113,114,92,97,101,102,103,117,105,93,113,100,107,106,126,107,105,99,109,103,104,108,118,91,103,125,102,104,115,120,115,103,103,110,109,105,122,109,110,123,116,101,121,110,96,110,99,105,120,105,106,111,104,106,106,100,108,105,106,114,109,100,101,109,108,107,103,93,102,111,121,108,113,103,114,107,107,98,116,97,112,114,106,106,112,105,115,98,104,123,93,102,104,75,106,97,117,106,107,114,109,107,88,110,107,100,102,102,106,103,109,113,112,125,105,100,100,104,107,108,107,116,108,103,104,113,96,109,110,104,112,110,106,107,89,91,107,110,113,112,103,106,109,104,119,101,118,107,100,110,103,120,103,106,98,105,98,104,105,97,113,87,117,107,108,115,122,115,106,117,107,107,121,111,113,91,109,103,109,110,103,111,101,100,108,99,106,104,101,106,92,105,113,103,110,110,113,100,117,106,96,115,104,103,104,121,96,112,102,114,111,116,108,106,97,100,95,100,107,94,109,108,120,104,124,105,111,106,105,93,105,104,107,111,102,112,104,106,108,113,102,108,84,107,115,112,107,108,109,104,109,112,101,100,124,106,108,117,107,106,99,109,103,116,104,107,108,103,112,112,106,105,108,109,122,113,110,98,101,116,93,104,106,113,105,98,95,96,114,105,114,112,114,99,102,102,111,102,106,110,106,103,103,86,103,97,106,125,96,110,96,113,107,103,95,104,104,95,111,97,98,112,103,113,117,113,109,104,114,105,114,119,111,107,96,100,114,129,96,113,107,117,106,116,125,112,109,105,97,112,111,109,111,110,106,104,108,99,104,119,111,97,103,94,107,106,107,104,112,112,100,112,100,108,89,104,116,104,96,106,116,110,98,123,97,99,103,104,101,109,99,108,112,104,108,103,106,109,105,105,107,116,108,105,116,108,109,99,103,105,100,109,117,109,105,110,102,111,101,109,109,115,112,118,104,113,102,105,110,93,106,107,114,109,103,103,100,106,106,114,110,104,117,95,104,113,99,103,102,104,109,118,113,108,95,123,113,93,118,110,112,102,126,118,108,104,119,108,103,100,123,113,113,104,93,109,104,108,107,115,119,111,131,109,108,128,119,114,119,130,114,124,107,137,117,118,101,112,114,119,117,109,110,100,102,124,98,110,108,106,112,120,112,102,109,109,115,104,103,100,107,105,99,107,112,101,109,111,103,104,112,108,103,98,90,113,121,120,105,99,117,109,112,106,109,107,107,114,120,106,122,117,100,103,108,88,99,107,95,112,117,106,104,107,109,113,96,116,102,121,111,107,110,109,91,107,98,103,83,102,116,105,102,109,116,102,116,95,102,113,108,106,109,104,117,96,132,100,108,106,109,99,100,98,103,115,112,121,108,110,122,110,112,111,104,98,116,111,111,111,102,98,96,109,111,112,107,104,103,107,106,105,96,104,94,110,106,98,109,102,107,97,107,105,114,94,113,112,92,115,106,104,103,102,116,110,105,115,111,110,115,117,106,108,82,119,101,107,113,102,111,113,101,117,114,99,110,120,100,105,110,104,108,102,112,105,132,102,102,101,101,104,106,112,100,108,97,110,112,111,104,87,102,113,114,109,119,112,108,109,98,97,110,109,98,111,111,119,100,99,87,102,112,107,109,122,106,96,102,113,106,107,100,94,113,116,108,85,101,102,100,103,107,88,105,106,104,109,100,114,117,99,106,93,103,110,96,113,101,104,85,120,80,112,113,110,102,117,103,101,113,94,95,103,113,105,99,111,96,107,107,109,108,112,110,104,104,110,112,93,115,115,94,109,96,116,103,113,101,110,111,107,106,98,104,102,115,90,112,101,94,106,109,110,117,99,112,104,103,109,90,96,98,115,101,100,101,111,109,88,103,95,100,110,105,112,95,98,107,109,119,101,100,102,113,113,128,97,106,112,105,96,125,115,106,108,102,115,109,99,110,111,105,89,107,106,111,103,133,108,110,123,116,113,105,102,104,95,104,113,115,100,99,93,124,102,103,109,109,106,111,98,109,102,104,104,117,96,115,102,111,115,103,113,94,99,106,131,113,100,108,106,107,104,101,92,116,103,108,109,104,86,98,100,102,117,102,101,106,100,94,107,109,106,98,98,114,126,112,107,95,103,97,108,99,110,111,93,94,107,106,92,111,110,99,117,106,106,100,103,103,105,118,111,98,103,99,105,110,95,111,101,109,99,99,109,103,100,107,100,108,101,117,100,108,105,114,100,112,105,106,101,99,135,101,106,106,110,98,110,97,95,112,116,104,113,96,104,101,113,114,107,123,123,113,109,102,109,110,113,103,86,100,109,113,109,107,77,100,105,96,109,110,105,117,113,102,100,82,100,106,101,112,103,94,101,107,109,109,101,115,91,103,111,105,114,102,107,105,102,110,90,95,102,95,109,108,109,110,94,113,115,99,109,99,101,98,104,90,106,110,115,100,99,115,107,108,110,116,103,107,102,113,99,114,104,103,97,116,97,101,92,109,106,106,102,101,100,110,108,102,79,106,109,111,103,109,106,115,106,106,103,114,109,103,101,110,95,98,110,106,109,100,100,104,107,118,113,104,109,97,107,105,104,103,123,104,112,98,101,125,105,109,117,108,96,94,95,107,106,102,99,117,107,112,102,101,99,114,104,121,113,103,102,111,109,108,104,104,98,102,101,94,107,98,104,119,105,100,88,110,98,120,97,117,105,108,106,102,104,99,92,106,110,98,97,99,81,112,102,113,107,108,105,100,104,112,102,104,104,111,90,98,85,94,111,113,99,114,100,115,108,109,105,97,106,110,100,105,108,108,117,100,111,99,106,116,110,112,99,113,108,96,109,99,111,113,102,100,92,109,95,103,99,111,107,96,105,120,108,105,95,91,105,102,98,104,98,93,110,111,101,109,109,112,112,109,115,108,115,116,101,108,99,115,109,103,101,107,113,119,94,108,102,95,108,104,114,106,103,103,103,108,116,95,103,104,112,101,95,106,108,109,92,115,101,100,98,97,111,98,106,101,99,96,111,103,96,110,112,106,110,109,114,124,106,116,100,101,94,103,101,112,100,115,105,110,109,107,105,91,117,108,110,106,98,111,94,114,106,102,123,106,101,97,108,116,107,100,114,97,78,111,101,101,117,113,104,105,106,96,83,89,104,101,105,85,105,99,103,120,109,92,118,106,98,101,102,108,101,91,103,102,103,121,106,103,114,113,101,110,109,106,120,109,101,102,103,100,93,94,106,102,109,98,106,96,103,106,109,103,117,99,101,85,100,118,101,118,109,106,103,110,102,96,104,104,101,84,94,100,106,96,106,116,110,101,108,104,99,99,97,112,117,112,120,110,102,86,98,106,110,105,95,105,107,102,100,108,124,100,102,106,91,102,98,104,108,100,109,108,108,95,112,127,107,99,94,96,112,100,136,109,105,103,97,107,93,111,109,113,107,112,106,109,97,115,84,102,103,105,105,129,107,95,97,103,102,97,110,99,113,105,105,102,105,102,101,120,71,108,83,105,107,106,106,121,110,102,112,108,106,110,88,106,101,102,107,92,111,102,102,107,101,93,110,93,110,103,100,108,102,95,95,105,100,99,107,92,87,112,104,101,120,106,100,116,102,96,89, +550.27679,93,100,101,115,108,98,112,96,98,98,112,109,98,95,113,120,96,131,111,106,99,115,97,96,99,112,106,103,85,109,103,100,105,108,118,107,107,90,109,101,103,95,107,96,105,103,101,99,102,115,85,98,105,111,115,92,109,98,107,104,109,99,102,112,105,95,98,107,116,93,96,106,108,110,118,112,102,101,100,110,100,70,94,104,99,106,101,99,106,110,106,98,104,100,98,105,103,96,105,103,120,106,98,97,101,104,111,97,96,113,111,103,99,104,109,94,113,87,114,99,87,102,95,112,105,103,105,88,112,115,102,108,100,105,104,105,111,95,106,108,93,100,113,96,101,108,94,118,98,109,111,100,108,97,98,102,94,101,97,100,132,116,95,99,101,98,106,91,106,104,111,112,101,106,100,105,112,105,108,108,106,94,113,109,104,104,107,86,106,100,105,107,103,102,99,110,106,117,102,108,104,106,102,110,114,102,101,95,104,104,97,105,99,112,97,92,105,102,94,102,102,90,95,94,100,93,119,133,106,105,101,103,110,109,100,90,99,109,112,109,101,99,106,95,102,101,101,109,109,115,104,100,104,115,98,95,95,114,101,101,87,104,99,92,83,101,108,105,113,108,99,98,122,100,104,105,122,104,91,106,105,98,102,106,111,102,104,99,98,102,110,101,106,115,85,107,105,116,100,106,104,111,84,100,95,112,118,104,98,95,104,111,103,109,102,108,104,107,99,106,114,103,110,104,111,96,106,82,81,107,101,117,108,98,99,101,114,118,104,124,106,89,108,102,104,99,111,98,111,99,112,105,98,106,98,101,110,119,109,106,105,109,110,105,94,121,98,117,96,113,108,104,113,109,108,97,112,97,116,94,104,107,117,111,94,106,113,125,101,105,106,109,95,112,99,106,122,112,102,110,99,97,112,115,100,98,94,93,105,125,103,95,97,105,108,93,119,98,104,103,107,112,84,108,98,94,108,93,96,107,89,99,99,92,99,96,99,115,113,100,114,101,96,114,92,100,83,99,107,103,104,95,110,91,105,103,97,100,103,99,87,118,106,113,94,103,99,106,112,113,100,100,102,99,96,114,116,104,101,103,94,106,99,102,105,109,99,106,104,99,106,99,107,106,107,105,109,107,108,104,109,109,98,101,113,103,104,100,101,136,106,104,104,113,95,97,93,98,103,91,104,98,93,99,73,98,102,110,100,105,105,105,106,99,100,103,108,120,104,114,98,109,94,103,101,101,106,103,97,105,94,103,104,96,102,114,100,105,94,104,98,102,101,108,102,107,96,98,111,91,95,100,104,113,100,108,95,109,102,109,95,99,113,110,94,98,106,110,105,107,108,102,105,102,103,104,93,106,106,104,106,100,107,102,101,98,106,100,100,103,118,95,105,112,102,101,98,100,99,104,95,94,105,95,104,108,91,99,106,102,95,110,94,119,101,96,101,109,109,107,116,103,108,100,111,91,98,102,99,99,98,104,102,110,94,107,100,103,109,98,108,95,107,118,114,101,106,94,104,107,104,102,108,109,108,111,101,101,111,100,99,120,107,95,109,105,109,107,108,95,109,115,104,107,114,109,118,103,83,103,109,106,99,101,102,107,105,111,103,97,98,118,115,102,97,92,101,97,103,105,109,100,108,113,94,93,102,118,100,106,103,95,77,110,106,117,100,88,108,104,111,113,108,106,111,97,108,107,112,105,118,103,94,99,111,103,95,109,107,111,90,105,91,103,103,104,101,119,104,98,102,102,101,94,106,110,105,98,98,102,83,117,103,104,109,98,108,109,97,101,91,103,93,101,110,101,88,103,95,96,101,97,109,105,117,99,117,111,105,110,105,101,94,102,116,109,109,107,115,102,106,105,90,96,97,101,101,103,106,99,104,99,113,107,108,97,96,108,107,100,105,111,104,110,113,110,121,107,97,99,118,99,97,108,98,117,94,103,108,92,96,113,97,102,97,103,99,102,111,99,110,116,105,95,95,110,109,100,96,101,108,112,93,104,108,112,107,114,101,105,106,105,100,91,102,95,94,113,114,100,98,104,108,92,97,87,106,101,97,110,109,83,103,107,104,113,104,103,104,115,101,101,107,108,93,100,105,97,105,104,105,105,103,110,105,113,113,99,112,110,100,103,108,111,98,113,117,122,102,94,99,91,98,105,96,92,109,101,95,87,99,105,109,108,110,103,80,105,96,107,102,103,131,104,106,103,113,111,99,96,104,118,109,106,96,94,102,92,105,111,105,115,111,110,114,91,104,104,108,105,101,95,103,110,104,100,102,74,102,99,110,110,101,107,95,110,108,109,91,118,112,114,100,114,106,120,107,118,95,108,117,99,101,96,108,117,107,110,117,118,106,127,111,114,103,115,138,141,125,126,112,125,113,108,116,109,98,114,106,112,104,111,112,100,114,97,97,99,99,105,91,109,103,104,100,91,104,99,105,103,102,113,107,113,107,116,115,103,114,106,118,120,100,105,108,96,110,106,106,109,97,106,111,101,116,115,101,103,100,88,111,91,111,118,98,103,107,116,115,108,109,74,83,106,108,104,107,110,117,111,98,106,107,92,115,96,95,103,116,120,104,114,102,97,102,104,109,103,104,103,94,100,118,93,102,105,100,81,99,94,101,110,105,92,138,106,110,115,112,109,109,98,124,107,103,98,99,91,103,91,121,105,100,116,112,116,80,105,111,115,108,97,110,108,113,105,124,103,110,94,103,120,108,108,108,102,109,110,101,107,113,106,101,107,99,112,98,89,111,106,115,102,108,113,104,102,98,110,105,109,113,107,84,104,104,97,107,119,104,106,109,86,116,102,114,109,114,124,113,106,106,95,91,105,97,87,104,123,99,108,111,106,105,95,109,112,116,108,103,103,108,112,106,102,106,113,100,116,106,115,107,96,110,91,114,102,109,105,113,110,109,120,94,110,99,116,102,110,120,92,89,103,99,109,112,112,119,112,101,93,100,96,113,104,111,108,110,104,112,107,95,114,103,107,104,102,95,110,102,100,106,111,105,109,106,106,94,117,99,98,111,104,107,98,101,101,109,103,105,106,99,112,98,94,109,101,108,110,109,101,109,92,105,101,113,118,87,99,105,105,109,100,108,108,107,103,112,99,95,108,101,94,110,111,108,117,106,106,107,105,117,88,130,115,104,109,99,117,98,106,111,104,104,108,101,116,110,101,109,86,99,98,100,96,100,101,73,95,95,101,121,108,104,100,108,98,103,106,109,106,117,102,106,117,106,115,102,105,108,96,108,98,101,101,102,108,95,108,110,98,90,92,99,105,101,110,112,104,112,104,112,102,112,116,100,99,88,91,107,109,76,108,111,106,104,102,93,105,113,111,104,96,107,113,108,112,99,108,100,96,106,104,104,110,105,112,102,81,102,95,107,104,106,99,96,104,113,106,89,120,111,113,98,104,111,106,107,98,108,125,107,96,121,100,112,98,98,113,102,94,100,117,102,103,106,105,106,102,110,107,113,118,112,120,95,133,113,109,100,94,106,114,99,114,112,102,121,113,104,104,117,136,118,106,105,101,106,109,102,111,99,115,104,118,101,122,93,116,113,99,126,90,94,95,109,112,103,100,103,105,101,104,94,101,105,108,119,101,113,103,97,108,104,121,121,107,103,95,102,113,104,103,97,107,102,113,107,107,104,106,102,89,100,97,107,102,112,100,120,108,106,111,109,112,104,106,102,107,104,106,98,129,81,101,103,104,99,108,103,111,100,118,113,105,106,102,105,106,108,104,107,108,108,85,105,103,113,105,124,118,96,108,106,114,98,111,112,110,101,112,102,104,121,110,115,99,105,101,93,89,105,99,116,98,107,102,122,112,111,98,102,111,105,99,92,109,105,122,102,110,91,98,110,101,115,106,116,110,127,102,104,109,108,102,116,107,94,104,108,114,113,100,104,110,112,112,119,100,106,101,93,120,101,112,90,102,115,112,108,105,107,110,107,102,115,93,104,100,85,101,99,109,107,111,115,129,105,116,114,101,107,105,94,107,113,98,116,105,108,105,107,119,96,113,99,90,93,107,113,110,117,108,100,94,117,106,111,102,108,99,119,109,89,120,109,104,106,120,98,96,105,101,107,112,107,115,116,85,104,108,101,100,111,98,92,102,99,106,107,112,105,105,98,103,105,104,105,98,97,92,102,110,118,116,110,115,98,103,102,102,104,102,110,109,108,108,107,94,106,111,107,119,122,114,105,111,123,106,109,116,109,105,110,108,107,106,109,98,104,107,101,105,112,95,113,104,113,93,106,98,106,103,112,117,110,96,98,100,98,115,76,103,105,96,105,95,94,103,95,100,105,94,96,110,87,97,110,113,104,106,111,104,117,140,102,104,113,110,109,98,101,112,107,101,110,97,99,117,102,108,110,73,98,100,94,104,108,116,99,102,108,103,99,101,112,106,96,101,98,90,102,111,80,124,106,97,119,102,112,102,105,116,108,101,116,112,103,114,99,112,105,99,109,106,95,100,92,128,105,98,116,96,106,109,113,108,109,119,111,115,107,95,103,110,117,114,114,103,108,101,105,100,110,99,112,108,103,93,101,101,102,79,113,110,103,106,103,117,101,96,121,99,105,111,122,112,103,104,108,121,96,104,107,102,114,101,87,103,109,109,98,97,103,113,100,95,97,105,110,98,101,116,101,107,104,100,115,104,105,101,91,127,110,115,122,102,90,105,103,121,106,144,105,98,112,110,107,95,105,108,106,108,96,102,111,98,107,104,108,115,96,102,110,120,101,98,111,105,104,94,120,94,111,94,108,100,103,84,113,121,92,95,107,94,132,112,102,108,88,101,76,95,92,83,99,110,102,91,102,94,105,103,117,96,120,105,105,95,100,92,96,111,112,93,110,98,117,94,102,93, +550.4176,97,104,102,113,95,112,114,89,101,113,94,108,105,116,104,101,95,114,99,108,98,94,95,110,103,95,98,100,105,107,105,99,91,109,103,111,108,103,128,115,93,92,102,125,103,97,91,116,95,106,96,95,99,92,110,91,92,103,104,107,92,102,111,102,110,111,91,98,106,95,97,106,116,105,96,124,107,108,101,68,105,113,105,104,98,91,97,101,95,95,114,119,104,94,102,99,108,112,79,101,107,113,91,113,110,112,102,105,97,98,103,107,114,105,104,95,99,108,105,96,109,101,116,117,110,108,97,101,102,108,94,93,104,103,105,103,98,99,98,106,102,114,108,95,107,100,105,102,101,82,91,97,109,120,109,101,95,103,110,99,101,112,110,105,107,108,98,96,106,106,107,102,121,103,108,112,102,78,121,90,95,106,105,109,99,104,95,96,105,109,105,101,108,119,97,112,112,100,106,106,102,104,95,112,106,107,121,106,105,107,95,87,108,108,100,109,99,108,100,99,101,109,101,101,102,106,111,107,84,102,109,117,101,104,98,109,92,110,105,107,96,99,99,101,99,105,100,99,103,101,110,102,114,105,99,110,101,103,104,96,102,99,99,103,97,107,97,116,108,71,104,100,110,107,102,95,90,107,102,104,112,69,109,104,102,112,113,110,101,109,114,89,117,123,101,111,109,91,72,118,103,115,99,98,87,104,100,95,99,106,114,89,109,115,96,94,106,117,99,104,110,99,103,100,92,102,96,91,104,111,107,105,104,103,106,101,110,103,109,96,91,100,100,95,104,115,103,98,82,111,99,87,94,88,105,97,105,105,98,91,107,105,107,93,95,98,99,92,96,105,106,102,104,97,100,105,120,108,98,98,117,117,114,107,94,101,96,95,103,105,117,87,98,101,104,111,111,102,120,120,98,111,108,92,101,99,96,110,111,112,100,100,107,109,113,103,116,103,126,110,102,112,103,108,108,105,106,100,113,131,104,106,103,110,95,94,96,107,103,115,103,107,92,111,100,106,104,103,107,101,102,95,108,101,98,99,90,102,114,112,100,108,104,106,109,105,107,99,106,107,104,111,103,98,113,106,94,116,86,96,110,70,99,108,111,101,106,97,104,99,101,108,101,107,91,101,102,92,113,104,111,110,100,111,104,100,97,103,104,122,116,100,104,97,94,109,122,119,100,97,106,93,104,104,100,99,102,104,96,103,87,101,95,98,109,115,83,102,107,107,105,111,98,103,112,104,104,91,124,117,102,109,105,110,120,102,117,106,109,92,92,110,94,105,108,101,107,121,103,99,96,109,104,105,118,100,96,99,96,119,114,117,103,115,106,108,110,111,101,102,111,103,109,118,123,116,105,108,119,99,111,108,121,114,106,102,107,116,101,111,122,92,118,78,106,102,105,100,113,98,107,97,107,103,109,111,116,103,110,92,97,117,96,116,101,107,105,91,110,107,114,121,110,94,110,109,96,90,110,109,100,102,101,112,117,104,103,102,112,102,105,109,94,98,101,115,110,90,106,103,108,121,117,101,96,94,118,90,100,89,104,102,99,100,98,99,98,111,99,106,102,118,114,109,112,105,108,102,93,94,100,98,96,102,101,95,117,107,110,99,109,118,108,114,91,101,115,106,105,93,107,111,107,105,94,113,94,91,114,105,105,100,108,100,109,92,100,103,97,107,120,88,104,103,103,100,94,106,107,93,87,108,101,101,101,101,101,106,108,107,113,104,106,96,94,96,106,99,106,94,109,117,114,98,96,94,101,105,105,98,108,98,123,110,94,104,97,123,100,112,99,102,105,116,94,111,101,113,98,109,105,114,95,108,116,102,105,103,108,103,91,110,96,109,101,95,110,111,112,110,116,108,113,99,102,108,111,100,109,101,99,96,86,103,106,111,102,110,109,105,103,106,111,101,107,110,104,106,105,107,106,98,101,108,99,107,92,109,106,90,102,100,104,94,108,111,93,107,106,109,83,104,112,108,109,87,103,87,104,87,98,109,109,96,101,117,84,101,113,104,102,105,104,105,105,109,110,100,107,101,97,116,110,103,104,102,101,101,104,99,108,104,125,105,106,99,99,117,97,108,109,95,107,98,108,98,101,102,99,111,102,99,106,106,96,114,94,87,109,114,95,101,102,111,109,129,112,101,108,107,100,94,103,102,117,95,103,100,103,108,104,107,122,104,103,114,100,100,100,103,105,104,116,105,101,119,103,96,107,108,109,107,110,110,97,101,98,97,113,116,119,104,97,97,96,109,105,105,118,97,107,106,88,103,103,112,108,109,98,94,104,110,104,106,93,105,109,100,109,110,105,126,110,102,113,107,105,109,84,101,105,93,108,103,100,88,114,113,113,80,97,108,124,124,118,130,124,121,121,129,119,109,107,108,101,101,113,103,106,107,101,108,98,105,101,110,103,113,107,107,109,109,102,106,104,107,107,106,97,110,100,103,103,108,107,107,97,110,105,110,113,109,115,99,89,120,107,84,116,111,108,92,95,103,104,123,112,110,91,103,111,93,114,115,106,98,112,103,108,100,99,103,95,93,85,116,102,115,114,106,109,101,98,97,104,112,103,101,98,101,102,100,113,92,104,95,107,111,103,100,103,107,112,109,102,117,115,109,91,106,113,103,105,97,100,104,107,105,90,103,104,87,110,89,114,98,80,98,108,105,111,95,110,96,97,95,111,111,99,116,94,100,101,113,105,119,99,98,109,98,100,104,117,101,99,105,113,100,94,113,125,109,105,101,114,98,108,132,93,106,112,110,107,110,109,86,112,105,121,103,104,101,99,110,102,92,111,97,112,105,100,83,68,106,106,108,104,114,106,100,103,94,114,111,106,113,100,102,106,109,106,99,99,105,103,104,97,111,88,113,110,100,114,108,98,93,100,108,98,108,102,114,111,113,104,112,109,105,102,97,103,108,98,105,108,100,95,106,99,106,101,99,104,101,101,91,95,107,87,102,121,96,99,72,89,110,105,101,107,103,98,111,101,103,108,110,114,116,107,119,101,95,100,100,104,111,115,108,94,105,108,93,106,96,111,98,79,94,114,115,105,101,83,97,98,118,101,100,103,104,109,104,106,107,102,95,106,85,99,103,102,98,100,129,100,100,107,102,90,112,98,98,94,101,100,105,92,100,109,110,96,95,107,114,103,95,96,128,112,97,110,101,102,99,105,108,115,115,100,106,104,109,94,101,105,87,109,106,90,104,113,124,100,114,105,111,105,105,104,95,96,105,119,116,105,105,110,104,102,105,113,101,107,104,111,83,105,124,100,110,97,94,100,99,95,103,105,97,106,98,102,105,111,100,108,113,98,99,117,110,94,110,100,91,113,105,91,100,110,105,109,101,102,109,102,102,91,104,99,94,83,98,112,110,101,106,98,103,122,108,100,108,110,99,93,117,108,107,102,107,95,100,104,91,108,102,94,117,95,100,96,94,103,101,97,100,104,101,110,103,101,107,97,107,108,112,108,101,101,91,106,107,98,98,106,97,100,102,123,107,102,99,97,103,92,102,105,111,106,99,95,103,107,100,95,124,109,110,111,109,115,104,114,120,104,113,87,105,98,104,96,105,97,105,109,84,108,97,91,105,101,116,102,104,97,96,98,102,94,106,102,103,84,123,110,95,101,100,100,101,105,96,109,116,100,103,95,108,112,95,98,108,108,87,95,103,103,116,103,110,102,114,100,104,115,72,110,102,108,106,110,98,99,97,114,105,102,91,99,100,100,94,101,111,95,103,100,103,104,104,84,105,108,98,102,105,93,98,92,106,91,80,114,106,112,103,100,111,105,106,87,104,113,124,104,104,106,100,99,107,101,101,98,101,99,105,95,100,98,104,96,104,108,98,116,98,106,106,98,95,98,92,100,105,99,91,94,104,101,98,98,97,105,109,110,97,101,111,114,113,105,112,120,106,94,116,106,117,121,109,95,99,102,113,105,95,101,96,94,106,110,102,108,103,114,104,129,110,106,105,108,104,92,81,102,101,100,99,99,117,105,93,107,109,103,107,103,102,109,90,111,113,114,103,114,113,112,108,107,117,105,111,109,101,100,111,109,106,103,111,102,117,113,104,116,110,99,102,99,116,105,98,98,108,103,97,104,98,97,94,112,107,100,116,100,105,98,108,108,119,112,104,89,97,109,95,111,102,104,103,117,103,113,100,95,115,113,98,107,105,114,97,95,88,102,111,107,104,100,102,106,113,117,98,92,110,106,107,101,96,108,97,98,88,111,112,99,103,107,103,102,98,100,101,112,107,118,101,96,109,118,91,103,96,102,97,100,90,110,115,110,109,112,102,108,88,91,117,96,106,108,101,103,105,105,99,102,104,97,108,119,108,110,108,107,98,105,102,108,109,103,105,103,103,103,98,107,105,105,106,100,92,105,100,103,91,116,110,96,102,109,102,107,98,103,101,103,101,85,108,115,109,106,107,94,102,101,110,109,101,110,93,87,100,101,110,105,88,109,100,96,101,106,107,92,108,106,115,109,107,105,95,102,101,102,107,91,104,111,107,92,104,111,104,102,106,88,107,95,101,101,108,98,99,94,105,107,115,101,93,94,103,94,102,94,125,111,98,98,111,97,104,107,116,106,103,111,107,90,109,107,102,112,80,104,108,109,106,95,103,95,101,103,99,102,106,106,95,109,92,121,109,97,102,92,113,116,112,94,99,109,112,104,105,81,103,100,104,112,101,106,97,107,98,105,96,105,101,105,96,100,96,102,114,93,110,108,121,97,114,96,75,119,105,97,96,118,103,107,90,106,86,109,101,102,76,97,119,109,96,110,98,95,108,125,105,107,101,94,112,95,94,93,100,96,106,100,91,111,99,91,122,96,112,95,106,99,109,109,92,102,121,111,92,102,91,100,88,110,102, +550.55847,135,112,90,99,96,108,84,90,101,115,100,92,119,115,106,90,101,107,112,102,109,98,111,101,100,118,88,112,98,102,105,110,107,110,119,101,102,90,104,96,95,107,109,111,130,99,103,104,100,110,67,103,101,108,77,94,71,99,101,112,115,95,96,88,97,112,96,83,94,105,106,102,104,103,106,109,101,103,98,108,102,70,102,101,103,109,110,101,110,79,99,104,98,106,103,94,109,102,95,97,101,106,100,103,95,99,101,91,112,104,105,97,99,109,107,107,100,105,105,104,94,105,104,109,108,98,92,104,106,105,110,93,95,105,100,112,94,109,101,106,110,104,100,115,103,106,99,89,108,101,105,115,106,100,94,98,108,100,102,105,99,101,93,92,105,89,108,99,103,97,112,109,106,107,95,101,98,110,99,109,107,121,106,87,109,96,93,91,106,111,99,101,108,102,104,95,100,97,101,107,104,98,101,105,101,99,105,99,106,99,91,102,116,108,104,94,100,117,92,114,100,111,108,103,107,114,120,112,105,104,103,117,105,95,92,117,112,110,94,95,101,122,113,110,102,99,106,106,110,101,99,111,99,102,104,117,102,112,97,118,90,94,97,118,100,115,112,98,103,99,97,112,106,101,115,95,92,103,94,105,101,106,112,102,91,102,117,105,103,95,103,113,100,99,106,118,112,99,104,99,100,107,122,104,102,116,102,101,94,110,105,108,114,113,113,110,113,93,105,96,97,88,110,107,125,108,101,100,91,92,99,87,99,91,99,102,98,99,102,104,102,92,105,81,110,112,99,93,119,107,104,111,91,91,94,112,114,102,102,97,106,105,111,113,95,93,105,106,111,107,110,96,115,93,105,99,99,102,101,109,101,111,105,113,114,92,96,100,123,99,116,99,97,99,91,112,103,108,102,108,95,101,105,96,101,105,115,91,104,92,88,90,105,95,112,98,118,94,112,95,101,105,94,108,106,112,96,95,104,111,98,107,113,101,107,109,87,103,99,109,112,100,102,104,90,98,93,115,111,98,96,98,107,107,117,102,101,119,102,91,106,109,115,103,107,105,101,100,105,102,105,101,117,91,91,82,113,113,121,108,111,109,103,110,107,117,100,111,110,94,105,116,90,100,93,108,100,97,117,100,121,108,109,103,100,103,101,91,102,107,107,112,107,119,112,104,99,117,112,104,100,104,104,106,110,95,103,103,108,124,96,103,101,94,99,102,109,96,100,122,112,109,111,91,99,100,102,103,106,113,114,108,117,103,105,103,101,107,102,99,110,101,96,109,109,108,102,101,107,93,102,109,104,106,94,111,112,98,109,95,110,96,109,103,101,100,121,107,103,92,104,108,105,110,114,106,97,113,109,104,102,103,119,107,107,107,108,97,108,106,105,94,104,103,97,100,110,106,103,108,108,95,105,104,111,117,94,105,110,103,95,109,110,107,92,103,110,96,119,106,112,107,96,104,90,103,99,99,104,110,106,113,113,101,110,111,94,106,102,103,101,105,99,110,94,102,119,94,103,106,116,114,105,108,105,110,107,113,110,89,106,108,114,99,109,108,97,90,105,110,107,112,87,112,99,100,116,99,98,106,107,100,103,105,100,113,124,106,100,109,106,110,107,95,100,110,100,103,107,102,106,105,86,114,96,100,94,107,101,110,112,107,86,112,100,101,109,113,101,111,106,103,105,113,101,99,113,98,93,99,103,105,113,104,102,110,98,106,109,91,105,111,102,95,100,106,97,102,110,100,98,99,103,103,100,100,112,94,115,108,106,117,105,84,104,111,95,116,91,107,102,103,109,102,93,95,96,103,113,71,105,92,98,94,102,95,112,94,118,103,116,121,95,131,107,100,102,104,103,102,100,113,102,108,95,106,106,108,105,106,106,110,101,104,105,119,115,104,98,101,102,106,73,106,99,95,97,94,116,106,105,88,106,104,98,126,102,95,91,103,104,96,103,109,105,100,112,102,103,108,100,111,102,110,102,108,105,93,99,104,107,96,103,99,102,96,98,107,94,99,98,109,108,108,99,102,104,106,107,106,94,118,110,104,110,119,99,90,91,99,108,103,112,106,119,100,97,110,95,98,106,106,105,103,109,97,105,109,110,105,99,109,102,114,101,100,90,106,103,103,118,100,124,106,113,104,118,114,107,102,102,108,120,106,104,109,99,107,118,102,109,103,109,107,128,126,104,108,94,105,103,104,108,97,112,103,103,92,99,104,98,115,99,99,109,108,99,108,109,103,107,108,108,93,99,95,107,110,108,109,116,95,100,90,103,114,104,115,86,108,106,103,107,108,86,107,99,99,80,100,109,106,102,95,114,104,102,111,107,109,91,123,104,99,104,121,111,103,96,118,103,99,117,104,143,119,116,110,121,114,116,107,113,109,118,105,108,116,115,100,97,83,116,100,98,112,106,113,139,97,93,112,108,102,102,118,112,117,113,120,101,110,102,98,105,105,107,106,119,111,109,102,89,99,98,103,99,100,103,98,106,135,98,99,121,104,102,100,101,99,113,109,104,95,109,109,100,107,113,113,117,98,100,99,106,110,104,104,103,100,112,99,108,98,108,103,94,98,100,109,106,104,113,114,101,103,98,96,100,113,119,109,117,108,110,108,111,100,102,102,115,95,99,112,104,109,106,97,106,101,98,110,108,111,99,106,110,102,108,110,102,106,99,110,102,102,104,103,97,94,108,118,102,106,104,106,109,105,101,100,109,111,99,108,103,127,111,108,99,113,105,107,108,111,99,105,102,101,107,119,110,113,111,93,98,103,113,114,105,107,98,107,103,79,115,111,100,108,106,100,112,102,108,100,99,104,110,110,100,108,101,91,101,106,98,108,110,128,121,106,108,115,106,98,113,102,94,103,111,97,111,103,102,99,115,98,100,93,106,116,105,103,104,100,114,106,114,97,106,113,98,120,94,117,104,104,84,105,105,108,116,108,98,108,100,100,99,112,113,91,100,105,104,95,102,104,105,114,102,104,111,113,83,92,102,105,112,120,94,113,106,95,90,111,117,117,106,99,100,106,101,104,111,100,95,95,106,103,109,107,110,115,110,105,109,101,112,109,115,108,108,94,115,106,114,106,100,100,95,100,106,101,107,113,104,135,95,113,99,96,102,89,104,113,99,93,110,105,98,113,110,99,109,109,102,100,108,100,108,113,105,110,95,93,113,91,93,110,110,110,97,97,108,105,94,106,102,102,109,104,108,95,111,108,99,105,99,99,115,104,106,119,107,110,115,95,96,98,89,106,101,105,103,107,113,105,103,99,101,113,90,76,99,103,115,115,103,110,116,122,103,113,107,110,103,104,103,111,104,104,101,121,114,100,106,93,98,100,117,91,97,103,106,105,108,101,98,110,95,93,117,101,100,90,109,104,101,112,102,88,109,101,100,111,97,105,104,95,102,100,110,113,103,100,105,102,114,103,102,97,105,100,105,104,115,96,107,115,109,99,107,107,103,101,91,101,100,113,109,111,99,108,109,106,113,103,114,100,103,95,117,106,102,97,112,103,114,98,101,110,106,105,100,106,103,107,95,123,110,112,120,102,103,99,84,108,103,113,98,103,108,101,104,102,103,104,115,107,89,104,101,104,113,95,101,91,105,103,102,103,109,108,95,110,107,91,113,90,102,110,102,111,108,104,109,102,103,84,103,108,98,109,108,108,95,108,98,102,108,89,93,103,107,110,104,104,101,119,94,102,102,103,100,106,101,106,104,108,108,103,107,108,89,105,99,111,108,108,114,112,96,118,97,105,130,109,98,101,117,106,96,95,87,108,107,93,109,123,116,103,108,107,116,107,99,108,99,96,102,103,105,101,97,92,111,106,105,102,92,97,95,119,106,104,102,110,97,93,100,99,90,84,110,98,106,98,107,111,101,103,117,109,112,110,103,106,98,107,107,95,98,100,102,107,97,104,103,96,121,117,101,93,110,114,104,108,103,111,91,101,108,103,110,102,97,96,99,118,97,103,106,109,108,101,110,102,97,96,111,112,105,104,103,112,108,109,99,104,111,104,117,111,107,107,106,117,109,102,80,107,115,98,106,107,98,111,100,100,103,100,106,104,95,102,102,114,107,114,103,107,117,113,109,102,102,114,103,97,96,105,109,99,107,107,111,98,114,90,119,98,102,108,104,105,91,100,104,104,106,103,116,112,112,108,107,99,100,111,105,107,115,99,103,95,110,96,96,107,105,106,120,96,98,105,105,106,111,108,109,98,113,107,105,106,105,111,94,95,104,101,107,102,108,101,113,107,109,105,94,99,117,103,110,109,111,100,107,102,110,104,106,106,108,98,116,87,109,109,97,109,107,108,104,102,102,109,99,96,120,91,99,110,103,96,91,100,107,107,109,100,85,116,97,103,104,108,118,122,88,89,118,91,104,113,106,101,98,115,104,96,109,83,99,99,108,102,96,92,100,104,107,97,90,122,105,91,106,100,93,89,106,96,104,111,120,104,105,111,100,90,93,105,96,110,104,107,121,83,95,96,96,96,98,108,95,110,120,129,99,115,114,96,95,103,113,93,107,107,108,90,108,108,127,107,90,105,110,104,92,80,99,97,93,99,100,109,110,115,113,109,113,97,96,107,94,105,114,113,102,93,84,95,100,106,106,111,102,116,104,104,100,102,110,112,105,116,104,109,108,98,104,101,106,111,100,104,95,91,100,100,116,110,102,102,104,106,96,103,101,87,92,91,98,100,104,98,113,99,102,104,111,95,100,107,102,92,90,100,102,94,89,102,104,96,101,101,103,107,102,103,93,95,108,91,108,106,88,120,114,106,98,102,96,94,106,104,103,100,104,98,111,103,100,106,106,110,100,108,96,88,102,94,93,109,101,97,105,119,99,106,101,111,100,100,99,109,106,107,115,100, +550.69928,100,106,97,98,99,96,115,100,88,102,114,98,104,107,107,102,112,109,103,114,105,91,106,113,85,112,102,100,102,104,103,110,95,106,113,102,100,114,99,106,115,108,96,100,100,111,114,102,110,111,117,103,110,87,100,109,97,103,109,100,101,102,99,87,107,109,116,107,97,91,106,113,106,105,92,104,99,106,110,104,108,108,115,119,104,98,92,101,99,107,113,101,92,117,99,99,108,103,99,108,100,102,104,100,99,107,96,102,110,93,106,94,100,98,100,101,98,100,101,100,102,104,109,109,113,114,104,88,121,111,118,98,103,99,109,99,103,98,103,90,98,114,106,105,103,116,117,95,103,102,98,108,112,99,105,95,95,105,99,114,108,106,100,107,113,101,91,95,114,87,101,104,111,106,101,104,102,94,100,102,104,100,109,105,105,95,91,106,112,94,106,112,101,109,102,99,101,102,102,121,96,112,109,104,104,110,103,103,106,109,95,112,102,111,107,116,108,109,99,96,105,118,107,109,96,118,114,109,104,99,98,100,112,115,107,108,117,101,104,110,104,111,99,94,102,98,94,94,113,98,91,103,111,103,95,109,99,111,112,96,103,105,102,105,105,109,113,121,102,93,84,99,116,94,110,118,112,114,105,106,109,105,100,108,102,110,97,99,110,106,100,104,104,109,101,71,110,110,108,106,109,107,113,98,111,119,122,101,108,108,101,115,104,115,100,79,105,102,101,107,104,115,105,109,116,113,105,96,117,104,108,95,103,105,106,119,94,103,109,113,106,103,104,91,112,104,112,112,104,109,110,99,114,101,108,103,104,108,108,116,102,106,106,95,98,101,104,110,108,111,105,116,113,101,103,119,99,101,104,101,102,102,95,98,91,105,111,102,120,103,107,105,100,102,109,110,103,103,68,107,94,110,113,107,102,100,101,114,101,87,107,108,113,111,91,108,103,106,107,98,109,117,102,99,103,96,108,109,90,109,99,111,100,108,106,115,101,117,100,107,112,110,111,93,107,101,103,99,116,105,101,93,117,89,115,93,121,101,122,97,120,110,108,114,108,100,109,104,104,104,113,111,110,106,104,97,107,117,103,112,110,107,112,103,97,110,109,104,102,112,110,109,110,108,103,110,112,105,113,109,121,111,103,110,107,118,101,117,103,108,103,91,106,99,105,113,99,108,111,113,96,109,120,113,135,97,109,113,121,101,108,115,105,84,100,104,123,96,103,109,121,104,110,112,106,107,104,113,111,105,104,105,108,105,109,100,114,111,101,112,117,116,104,113,102,98,107,99,117,107,103,101,116,116,102,107,113,108,108,110,115,110,100,96,108,102,108,102,100,113,109,102,115,109,103,107,105,99,99,109,106,105,111,107,99,95,105,104,102,107,108,120,107,107,121,108,111,106,107,112,113,99,112,112,115,104,100,113,95,113,109,96,110,110,104,106,104,106,109,107,107,102,120,100,102,98,100,96,109,101,109,112,104,115,105,107,105,108,105,104,102,112,112,112,97,98,110,78,113,99,103,110,101,99,106,103,113,109,110,110,114,103,102,102,108,105,112,103,99,118,109,106,103,107,101,98,120,105,103,102,103,107,103,106,105,100,105,116,111,104,100,96,99,106,95,80,104,109,102,107,111,99,114,113,109,96,105,106,104,121,102,104,111,105,112,98,108,103,103,97,104,108,108,99,110,109,112,90,102,111,110,101,105,114,112,103,103,106,103,97,106,115,107,101,111,114,84,95,87,100,102,106,99,101,122,111,107,108,117,94,115,102,102,106,114,113,115,103,113,100,112,117,109,113,88,92,110,110,99,112,105,104,100,102,117,106,99,106,119,105,113,104,99,107,118,99,114,101,110,110,106,106,102,103,113,102,122,103,110,112,119,115,102,109,92,106,110,104,99,108,103,111,106,96,109,114,117,107,101,107,100,95,75,114,94,102,104,113,107,111,104,98,110,122,121,102,101,108,118,137,111,113,99,109,84,94,110,110,102,109,109,105,114,112,106,106,104,111,99,95,113,116,105,108,105,104,106,107,109,105,114,114,105,95,110,108,106,102,103,105,108,102,106,96,99,99,90,101,101,110,108,106,111,106,99,92,98,102,106,107,101,102,108,121,101,101,108,100,108,95,97,109,104,110,102,110,109,120,113,101,98,107,110,104,93,100,103,93,104,111,118,103,88,95,111,104,96,103,91,109,95,96,105,109,94,101,120,98,95,115,98,101,106,107,78,99,104,111,109,103,101,110,100,100,112,101,97,108,108,110,103,101,104,108,107,106,109,93,97,116,106,104,99,93,113,97,129,112,109,100,110,112,106,99,107,107,109,101,111,99,98,101,129,109,108,100,96,122,115,117,108,108,132,130,119,115,121,121,104,101,119,133,124,116,106,121,95,108,93,117,119,112,113,109,100,104,109,106,110,103,90,116,113,108,109,100,104,108,101,101,93,100,98,108,108,90,111,98,111,94,112,116,93,103,101,95,101,98,111,107,115,110,108,105,89,95,104,106,97,105,97,103,100,109,81,109,107,100,95,109,96,97,128,107,121,106,89,103,112,103,112,113,99,99,103,98,101,116,97,67,105,100,104,111,98,100,105,112,117,92,123,102,107,116,103,80,91,102,107,103,109,94,113,103,101,114,83,109,109,96,103,100,109,103,100,107,107,99,103,108,103,79,88,110,98,110,107,91,99,108,89,101,110,112,103,96,105,98,104,108,105,102,103,103,101,103,104,95,106,112,111,103,91,105,102,107,105,108,104,136,105,98,102,77,105,104,98,103,115,105,100,112,98,104,104,106,99,99,106,107,102,99,101,103,109,97,119,109,108,87,110,117,106,96,96,121,104,105,110,89,110,101,98,98,103,89,126,115,104,113,116,109,78,118,108,93,101,100,108,111,110,104,117,103,113,100,93,108,112,104,100,95,108,111,113,101,97,93,119,103,124,100,100,104,96,104,100,100,92,101,100,107,94,99,109,105,98,101,104,104,110,104,94,98,122,113,99,98,88,108,98,102,97,99,100,102,111,105,101,141,110,105,105,92,102,95,104,98,99,105,110,105,96,94,98,94,82,107,101,99,102,109,103,93,104,108,96,100,105,96,108,97,105,101,110,102,92,103,96,104,101,104,98,102,99,82,98,100,97,102,98,95,109,108,100,108,92,100,105,102,101,106,105,98,102,111,113,102,105,110,105,112,107,100,100,94,108,106,91,99,99,110,96,87,100,104,117,102,107,98,109,93,115,102,107,111,103,110,98,96,120,115,103,106,96,103,109,94,118,96,108,96,101,94,101,127,96,95,110,107,105,103,99,104,95,97,103,98,113,111,97,108,104,94,101,101,106,96,99,111,108,121,113,98,102,120,109,104,101,100,96,94,99,109,116,103,104,101,109,108,98,94,94,105,100,102,110,100,103,98,91,100,101,98,112,99,94,107,102,108,97,104,107,112,96,110,109,105,109,94,100,96,107,106,102,102,105,103,100,99,105,108,96,110,104,100,96,98,109,79,99,96,106,108,106,110,98,108,93,107,113,98,102,107,109,115,107,99,101,117,114,112,79,108,104,112,105,98,109,91,94,91,89,103,103,110,99,101,105,101,89,108,113,111,105,103,110,113,116,104,100,105,94,103,106,100,106,105,102,113,91,112,103,116,109,94,91,113,86,100,106,111,101,101,100,126,93,110,108,104,100,93,109,104,116,101,112,93,106,113,102,103,95,101,106,116,106,110,101,90,106,109,94,106,119,103,111,110,99,102,108,119,95,101,110,91,110,104,94,99,93,99,104,108,113,97,103,117,106,110,116,97,102,99,96,108,109,98,106,106,95,96,110,101,95,104,100,104,105,96,102,102,93,101,98,119,108,99,110,107,103,94,106,75,117,105,109,98,95,95,98,102,104,98,96,100,103,102,107,89,95,95,110,103,110,99,105,106,111,103,91,121,100,97,103,108,100,108,107,103,106,100,100,105,108,113,107,107,97,117,102,102,105,112,118,101,102,110,104,102,112,110,107,106,103,98,109,106,107,103,98,108,96,103,108,98,109,106,104,100,92,87,109,98,93,116,115,107,93,108,92,105,115,98,111,100,96,105,108,111,100,103,103,102,101,112,105,110,101,92,114,101,119,106,108,105,95,86,105,105,114,97,112,102,103,95,105,103,99,101,103,112,105,117,97,105,91,100,90,99,103,100,101,102,102,111,95,102,97,112,122,101,105,103,119,107,109,116,114,104,99,101,114,102,87,102,81,113,111,102,92,102,109,105,110,107,114,117,100,95,112,100,104,95,103,120,100,96,111,102,104,101,106,109,102,112,102,104,96,116,95,104,100,108,104,101,90,110,93,101,104,98,93,100,95,103,110,102,93,103,115,102,104,107,112,103,95,115,109,98,109,105,110,109,90,103,97,97,97,101,98,105,95,106,101,102,104,105,101,109,111,94,105,111,120,96,89,104,108,103,105,105,99,110,106,95,106,100,93,104,87,95,115,109,103,103,109,99,117,99,103,97,103,102,97,108,108,106,104,99,106,97,100,105,95,97,115,103,106,106,112,113,113,111,91,115,111,103,103,109,111,97,104,101,105,103,103,109,73,102,108,98,101,115,86,100,103,106,99,119,113,106,113,103,112,98,88,104,99,104,106,100,100,113,104,116,96,100,97,98,106,99,106,101,103,110,98,113,108,101,105,109,104,98,91,102,104,90,101,105,101,93,102,95,99,96,102,121,99,102,101,101,110,100,101,114,98,101,101,97,72,106,95,98,131,99,96,96,109,106,76,111,98,87,98,103,100,110,98,114,116,100,101,112,112,103,97,100,113,78,91,101,106,113,91,113,95,99,86,99,107,105,116,99,109,122,110,112,113,83,96,94,119,104,102,105,120,96,96,86, +550.84015,90,115,95,100,94,103,110,98,104,104,99,101,109,101,105,110,104,107,106,102,105,97,99,107,95,106,125,105,110,110,99,98,100,109,111,96,86,102,114,114,101,100,112,100,94,112,99,117,103,106,100,105,105,102,116,122,88,113,99,111,80,99,102,109,112,98,97,99,95,109,74,105,99,108,98,97,104,116,106,117,117,106,99,100,99,96,102,95,105,101,109,114,86,97,125,94,107,106,100,73,80,106,103,99,100,101,101,99,105,98,96,100,100,112,99,112,111,104,115,105,102,105,94,115,111,98,103,99,109,115,99,105,105,111,114,114,102,109,81,98,102,101,95,89,97,106,101,103,106,97,100,103,110,90,95,103,98,109,109,107,104,108,117,110,104,104,102,101,99,100,106,113,99,103,108,108,109,98,108,117,105,108,106,104,111,90,100,92,102,100,108,113,90,99,99,112,98,97,105,100,85,101,111,105,105,112,120,105,107,109,100,98,109,117,106,98,103,100,98,98,110,100,102,100,104,106,106,114,117,106,100,96,106,105,102,101,106,97,106,124,96,94,124,110,94,103,106,122,105,117,105,101,109,103,98,104,101,106,119,102,101,106,100,97,106,103,117,113,108,105,97,110,98,101,107,99,107,99,89,105,89,117,107,107,100,102,99,83,88,119,100,101,107,100,107,118,103,111,115,108,106,116,105,105,103,94,111,108,99,106,112,130,102,109,109,105,103,108,107,110,109,86,101,108,100,106,88,101,112,107,115,100,128,108,123,117,114,107,101,106,110,102,116,104,94,107,115,97,101,108,103,96,108,109,102,106,114,102,102,120,106,109,96,104,99,104,109,94,96,105,103,113,116,107,107,100,100,107,112,99,109,116,96,113,99,98,114,115,117,84,118,113,117,115,111,99,108,98,102,106,100,84,96,94,112,109,84,104,114,110,98,94,103,104,110,102,99,102,114,95,107,95,98,98,99,107,98,97,101,115,105,124,104,109,96,105,97,108,107,103,102,111,107,95,99,105,111,85,92,107,102,101,101,105,104,111,115,124,110,108,102,120,96,112,107,121,107,69,109,98,108,111,113,104,108,94,108,108,105,103,103,100,103,103,100,100,102,107,106,102,116,114,98,106,100,107,93,115,108,102,111,102,95,107,102,104,92,105,125,112,113,106,87,97,106,110,109,104,102,105,121,102,109,99,105,131,101,109,102,95,97,105,104,102,108,114,91,114,102,99,106,108,96,107,103,102,102,101,103,104,111,110,101,100,99,99,109,112,91,107,105,109,105,105,108,110,129,115,109,96,95,91,97,101,110,115,106,117,105,107,107,105,108,107,96,101,109,115,104,102,98,107,95,99,109,103,95,127,103,106,102,119,108,100,101,112,106,101,110,103,109,90,110,112,111,103,105,110,103,109,110,108,108,101,96,112,98,107,113,101,109,100,118,103,105,120,94,93,100,107,114,120,121,99,106,103,99,103,99,105,93,101,112,100,107,100,103,98,95,103,116,100,99,106,103,98,112,106,116,109,114,102,107,102,92,117,113,100,110,104,102,102,103,107,100,102,105,79,99,98,85,106,97,103,112,101,105,109,107,102,105,106,100,121,110,100,107,114,110,105,106,98,121,99,106,95,99,108,104,107,109,104,106,113,94,104,83,100,96,115,109,104,110,102,99,108,105,108,103,101,106,104,101,103,104,107,104,106,101,92,107,99,108,97,98,110,107,110,120,104,116,109,103,104,106,106,109,99,109,95,107,108,104,108,109,133,98,94,108,99,110,97,104,101,99,100,104,110,105,95,102,104,117,121,96,103,111,104,108,100,107,105,101,102,113,103,106,98,111,104,106,109,97,96,112,102,110,110,99,99,95,105,106,106,105,110,102,102,96,110,111,101,105,114,101,100,104,107,111,104,102,109,103,103,117,108,96,103,102,101,105,105,125,103,90,102,102,109,97,113,97,117,100,105,116,83,91,106,112,98,82,108,103,109,106,97,112,101,80,99,116,118,99,108,106,113,106,112,105,100,109,113,102,111,117,102,95,106,100,109,98,107,101,110,98,104,111,94,100,100,107,116,121,118,121,106,100,121,97,106,102,118,100,99,99,92,100,100,95,111,93,96,110,103,95,70,98,102,95,104,101,110,125,109,108,105,100,90,103,111,99,110,110,114,106,96,99,113,109,99,111,104,101,109,111,102,103,114,105,107,100,109,102,104,117,104,108,101,92,102,98,89,103,116,113,118,104,102,95,104,100,121,109,101,99,104,101,114,113,125,90,108,109,90,105,86,110,96,99,101,106,92,107,102,105,125,107,99,103,97,121,98,114,109,95,110,109,97,101,116,99,105,103,80,114,116,100,120,106,109,117,108,129,125,105,116,107,106,116,115,94,135,100,109,110,84,118,91,109,98,103,115,102,110,102,105,107,113,96,111,100,115,110,106,103,102,105,104,105,98,103,89,91,102,112,108,115,98,113,112,104,98,111,108,103,105,105,114,108,109,114,104,95,107,112,102,102,105,121,103,112,124,110,107,100,97,106,116,98,97,98,105,102,100,105,113,105,110,105,98,107,127,107,95,95,96,104,99,102,109,103,83,101,103,96,109,105,106,114,89,114,120,120,107,107,107,112,102,95,101,125,104,111,106,109,105,98,107,109,119,109,99,122,111,110,105,99,109,125,99,114,109,104,98,109,102,114,80,108,113,106,116,106,113,98,102,102,101,101,105,112,108,116,94,116,107,108,103,116,108,109,112,110,120,108,113,114,99,109,114,121,115,100,111,116,89,110,123,109,96,98,116,100,116,97,90,113,107,102,110,107,103,117,106,103,103,119,115,114,107,108,112,115,114,93,111,109,109,98,110,99,102,105,105,105,103,98,108,109,87,109,104,105,111,109,106,105,107,113,112,103,105,121,106,103,99,95,101,99,105,109,114,102,112,106,106,111,104,123,102,115,100,94,99,102,102,104,99,78,99,95,97,91,101,109,110,92,107,109,105,94,104,113,105,117,105,110,104,102,105,113,119,96,105,104,103,111,100,106,103,108,106,109,107,118,99,105,109,96,115,102,109,104,104,93,103,106,116,93,102,115,109,116,101,100,99,102,97,116,101,110,92,89,116,99,115,103,109,111,101,116,100,122,105,108,95,109,100,102,102,110,103,109,111,106,97,98,109,99,86,109,103,100,108,104,111,104,95,102,114,103,103,95,96,98,106,102,109,98,99,106,107,108,103,92,107,96,104,120,114,96,109,117,106,113,112,98,98,100,95,100,109,108,108,98,105,106,103,96,104,120,92,108,123,98,97,104,106,107,100,104,101,105,102,105,111,108,89,107,109,123,112,102,101,105,112,110,106,95,99,96,115,99,81,91,103,101,98,97,107,102,112,95,109,92,110,99,114,113,100,108,112,94,101,103,107,102,104,109,82,92,109,96,93,81,91,108,112,118,95,105,109,113,105,98,132,123,116,94,89,101,108,108,96,100,105,106,102,106,102,101,109,109,98,94,112,80,98,104,92,109,103,109,107,102,108,111,110,88,107,94,120,114,99,104,115,97,105,96,106,114,106,109,111,94,118,96,108,113,96,96,96,99,105,112,103,101,101,106,98,101,102,113,115,110,107,109,100,98,101,98,110,96,99,105,103,105,105,110,106,99,113,95,113,109,103,92,108,104,103,102,102,102,110,92,95,99,102,114,103,95,109,104,102,87,107,109,116,94,105,113,112,98,101,115,102,99,114,106,111,112,106,88,100,104,97,99,106,114,111,124,100,100,105,107,100,102,101,105,95,98,116,103,111,93,107,109,105,91,101,107,116,107,102,99,106,111,105,90,113,93,119,104,98,113,107,101,75,117,99,122,109,103,117,97,103,108,103,99,103,105,113,87,109,103,103,93,98,93,111,87,104,95,98,96,95,106,96,112,103,79,98,98,106,101,108,92,94,109,113,96,106,102,81,94,87,104,102,89,96,98,100,90,106,104,95,111,107,114,115,107,100,95,109,103,99,104,106,105,110,96,106,131,118,98,96,107,102,105,111,113,105,105,108,107,108,113,114,100,101,106,102,102,105,107,109,106,102,100,105,102,106,116,117,109,111,100,99,100,108,102,96,117,102,114,110,104,104,102,113,108,86,97,115,113,110,96,94,110,99,110,98,94,101,104,94,106,102,100,93,108,111,103,99,96,111,102,97,105,100,109,100,112,107,95,101,90,105,108,95,115,114,117,109,101,102,112,102,108,114,105,104,96,110,115,104,116,111,102,108,108,98,111,108,101,108,109,90,94,111,102,96,103,108,112,108,109,105,100,105,110,111,106,105,110,91,102,96,92,105,102,95,114,103,98,100,104,113,100,100,88,115,104,102,111,95,102,105,108,94,83,111,99,104,82,109,99,111,96,106,104,91,114,94,99,115,103,98,107,102,105,105,115,108,109,105,95,102,91,113,104,110,113,89,104,108,91,91,110,106,103,105,102,109,104,106,96,119,101,110,104,104,95,103,110,101,105,113,103,97,101,97,106,88,111,72,107,94,93,105,107,86,107,108,97,116,101,107,91,104,100,103,76,111,112,116,99,106,101,108,112,101,107,108,111,132,88,96,102,109,91,104,116,92,105,111,95,113,99,95,100,111,110,98,106,124,103,103,125,98,99,118,102,106,100,114,99,104,98,109,98,84,103,98,95,102,119,107,98,102,126,107,103,102,99,102,95,116,97,107,105,114,94,102,105,106,109,97,105,110,117,95,113,97,95,105,91,98,129,113,103,99,111,102,96,99,109,104,107,116,87,100,92,102,95,123,90,103,111,90,106,94,79,94,126,105,108,105,91,116,109,103,125,94,99,104,105,99,99,101,106,91,104,101,107,99,104,109,104,105,115,97,118,105,112,105,107,105,108,105, +550.98096,85,111,86,98,88,102,108,100,101,106,97,104,111,99,110,108,108,109,110,98,80,89,98,88,98,103,96,99,107,106,100,98,105,118,98,102,104,104,120,108,111,93,90,98,101,117,108,104,100,94,101,125,115,106,90,106,108,101,105,101,99,111,115,95,108,114,102,96,91,98,111,97,107,108,100,97,99,123,103,97,90,111,109,110,106,84,105,107,99,100,108,100,99,113,101,110,102,96,101,109,89,104,95,108,98,100,99,99,92,102,103,100,97,98,107,114,105,107,104,100,103,113,108,116,112,111,121,98,108,105,101,117,104,105,107,109,96,101,94,112,90,109,104,107,91,97,104,106,100,91,102,92,106,95,117,98,84,98,107,94,117,105,103,104,106,99,103,96,110,91,101,97,92,96,112,105,114,100,111,107,102,100,94,108,100,105,103,95,102,111,96,112,91,100,99,92,120,112,109,105,103,98,107,110,107,104,105,104,102,105,102,102,96,114,99,110,107,110,96,78,106,102,108,103,110,97,103,103,106,103,97,107,103,111,94,119,120,115,117,110,107,108,108,111,105,96,104,114,105,116,100,108,112,105,109,102,104,109,97,104,94,107,69,104,108,109,111,98,96,102,96,107,112,94,110,99,103,108,105,108,106,101,132,105,102,107,95,96,105,105,109,111,111,115,106,109,94,101,107,101,108,103,118,110,97,105,109,94,104,104,96,115,105,118,113,109,103,95,93,105,111,100,112,98,109,113,105,94,104,113,100,109,105,94,93,113,99,111,105,104,103,108,111,90,112,107,108,104,106,106,103,108,95,103,98,105,109,115,116,105,100,120,99,105,106,103,112,105,103,100,113,108,103,98,104,83,109,111,109,100,106,115,97,109,107,109,109,104,104,106,112,100,80,115,102,107,100,97,110,110,93,99,98,100,106,97,118,106,117,100,120,100,104,104,108,93,99,106,120,104,100,92,103,108,109,110,107,99,90,109,105,103,110,106,112,99,100,106,107,103,116,105,94,107,106,104,121,114,117,101,102,103,109,107,113,95,116,111,111,93,101,102,110,101,105,109,118,100,104,121,111,118,111,102,100,98,99,116,124,108,100,79,94,115,97,97,99,141,107,105,105,99,95,78,107,92,116,94,97,104,116,105,113,96,114,117,97,109,107,107,108,103,96,113,99,102,111,102,113,95,106,105,110,104,105,101,113,111,109,106,100,99,112,98,103,105,103,94,107,113,98,111,90,105,108,99,116,117,111,122,103,104,116,106,100,93,109,101,88,103,104,104,106,103,113,82,103,99,110,101,79,95,97,98,99,118,100,102,101,103,102,117,111,95,100,100,119,99,106,95,109,113,108,108,113,103,103,104,113,103,115,90,96,102,112,95,101,113,99,98,133,105,110,103,103,108,104,95,102,105,112,104,100,112,102,96,95,96,103,104,119,111,96,115,80,108,99,92,99,106,100,117,110,101,117,95,127,100,111,111,101,104,105,113,103,111,103,101,106,111,112,110,103,107,99,105,103,103,101,117,106,117,106,101,96,108,108,101,110,103,103,100,109,100,97,93,104,96,114,106,106,106,100,110,95,100,98,95,111,95,117,103,87,101,105,103,120,103,94,103,106,95,108,106,106,109,83,107,98,112,108,96,99,105,100,86,101,114,111,106,112,105,110,101,109,108,99,95,115,102,107,106,95,110,104,99,101,99,97,105,104,112,105,98,105,103,99,99,99,105,106,108,89,105,98,109,92,108,100,104,109,120,102,98,106,98,107,117,103,85,103,109,114,103,108,124,100,112,96,109,115,103,103,101,93,105,110,110,113,111,109,104,106,104,104,115,110,114,103,97,110,104,101,95,107,97,96,108,97,123,115,110,108,108,104,103,110,108,102,100,121,112,107,102,96,104,104,101,109,119,98,108,106,105,105,84,85,85,105,115,113,105,98,104,99,111,110,112,91,100,103,90,105,116,100,95,97,99,118,108,106,103,118,116,101,112,118,95,103,102,102,117,109,98,101,102,101,105,115,120,103,116,103,113,110,99,99,111,109,105,101,104,105,131,106,119,102,101,89,113,95,113,114,105,76,102,108,100,105,118,101,105,106,110,120,100,107,104,109,103,106,111,109,111,72,113,114,103,94,105,111,108,92,103,97,95,111,112,106,110,103,94,112,112,109,99,79,108,94,103,104,107,117,93,109,101,104,96,96,99,100,101,104,93,102,103,110,99,103,105,97,105,101,100,101,101,105,114,109,108,105,100,103,108,99,105,113,115,112,72,117,99,104,106,100,104,89,116,98,108,111,107,107,112,95,101,101,107,99,116,112,112,96,113,101,104,106,101,99,108,121,109,113,100,111,120,102,93,116,116,98,111,123,103,138,107,115,114,118,108,118,119,125,122,98,130,109,112,110,112,100,104,108,101,103,92,112,98,103,102,112,98,95,96,99,96,101,111,119,92,100,95,102,105,103,107,97,95,115,106,103,101,109,99,105,107,96,109,111,109,96,101,113,92,110,111,98,96,94,102,98,108,96,130,113,105,115,100,117,102,101,105,96,127,95,94,77,109,106,100,97,110,109,104,102,93,109,108,110,105,106,103,95,102,111,106,113,102,102,102,104,111,98,103,96,98,109,111,106,119,113,96,104,94,107,102,92,94,111,108,95,109,103,98,87,102,102,108,103,97,90,99,100,104,102,103,116,103,113,104,94,107,99,106,102,90,99,88,90,99,109,93,96,99,98,94,108,142,101,109,104,108,99,121,111,103,102,100,97,116,102,116,97,107,103,112,108,98,107,99,91,93,88,104,106,102,110,105,109,108,100,97,104,97,102,100,97,101,107,105,110,95,111,107,100,110,87,110,113,101,107,105,106,115,106,96,97,110,107,109,104,118,99,106,108,119,110,101,105,108,94,110,97,101,95,122,99,98,103,99,96,107,109,102,115,117,100,111,105,113,102,102,103,107,118,98,112,103,108,106,95,104,100,92,106,119,107,102,104,93,112,106,100,98,97,104,107,108,101,97,113,98,99,107,110,104,108,98,98,105,105,128,105,109,107,98,106,116,103,97,104,109,102,108,96,114,99,100,100,100,117,104,101,110,93,97,107,99,102,98,110,104,103,107,102,107,99,107,98,101,107,108,108,98,107,92,96,104,102,96,98,102,95,99,109,108,104,95,82,94,98,103,100,94,111,109,107,108,99,102,102,100,104,115,107,81,109,97,101,103,107,105,95,108,111,104,116,101,114,107,113,115,109,103,100,109,106,106,107,109,113,110,100,94,98,102,102,109,109,92,111,99,102,109,106,108,110,100,103,106,113,101,104,92,104,143,99,86,93,121,106,115,98,97,71,107,120,108,112,119,111,98,104,121,96,130,107,106,100,95,104,105,101,100,101,113,101,109,111,100,91,105,105,98,99,99,107,105,113,101,99,106,104,103,115,120,116,104,114,93,103,102,103,112,100,99,100,97,91,112,121,110,108,105,89,100,101,111,107,99,111,101,95,100,99,110,102,105,100,95,109,117,103,113,101,97,113,105,101,101,99,96,108,95,102,105,110,106,119,99,108,109,115,113,109,110,109,94,99,102,107,101,97,118,96,101,102,104,112,114,90,91,111,117,110,108,124,105,105,111,106,97,109,98,98,98,106,109,104,94,91,90,101,107,95,111,115,114,102,99,117,118,101,124,105,103,101,104,102,109,97,106,102,105,113,100,102,98,103,104,117,109,106,102,101,109,108,102,106,109,105,112,107,100,114,94,119,102,98,111,106,109,105,94,103,106,114,109,104,103,104,95,94,111,107,98,99,107,90,95,109,111,99,104,106,108,113,107,93,110,88,125,101,98,116,106,104,109,94,101,109,113,119,106,103,107,98,117,98,97,103,105,113,110,100,106,112,110,100,112,110,103,117,75,105,100,107,103,103,84,86,98,116,104,106,104,112,107,105,102,104,94,99,107,102,95,97,98,107,112,108,116,93,99,106,95,98,95,103,108,95,98,107,110,104,114,101,106,100,105,106,97,101,104,110,112,102,99,108,93,98,102,98,103,97,110,107,100,107,111,108,98,110,106,94,111,97,103,107,100,91,109,107,109,116,117,110,101,102,101,112,108,103,103,107,108,100,98,113,107,93,100,93,111,108,108,115,102,101,106,102,93,89,104,102,95,103,109,103,98,97,102,108,89,96,100,99,95,112,97,112,105,93,97,99,101,95,115,102,102,107,86,100,112,94,102,98,105,97,92,101,116,105,90,103,95,98,129,95,102,96,96,103,86,103,91,109,106,94,105,101,96,102,98,107,102,108,94,108,109,100,107,103,110,110,98,108,99,97,102,95,104,110,107,102,101,106,106,106,112,95,105,100,122,106,105,92,111,100,96,95,100,116,100,105,108,109,116,92,105,99,96,99,107,92,100,85,99,95,105,100,95,90,107,109,125,99,103,105,101,103,142,96,113,98,106,116,99,106,111,95,106,116,99,104,117,97,101,95,103,107,96,113,110,102,109,110,97,102,108,93,96,115,111,106,99,108,111,99,106,105,108,105,101,106,100,128,95,87,99,95,104,113,106,110,110,110,97,109,100,103,107,106,111,87,104,102,107,106,116,126,110,107,102,106,116,106,102,103,102,116,104,107,111,111,85,106,98,96,110,106,92,98,111,106,100,100,115,104,107,103,116,100,106,105,125,116,100,106,103,101,98,95,98,110,98,102,101,94,98,102,100,101,104,106,104,99,109,99,104,101,96,99,88,104,107,100,104,102,113,105,100,104,113,87,107,103,113,104,105,109,110,104,90,105,105,97,125,100,93,107,97,101,92,102,99,108,113,98,106,94,114,106,102,119,63,88,108,91,110,101,110,103,100,103,92,99,97,111,108,89,111,116,106,111,99,94,96,106,104, +551.12183,119,105,93,112,89,101,102,110,101,91,93,105,98,110,112,100,98,115,111,104,105,104,111,109,103,117,97,98,111,98,101,119,109,110,96,112,109,89,115,99,104,94,93,103,102,102,118,104,111,105,109,95,89,101,110,100,102,103,105,99,109,95,118,106,108,109,99,107,92,109,116,108,98,72,83,104,100,96,104,114,112,100,109,100,96,91,97,106,99,103,100,97,109,114,88,108,96,122,103,110,110,99,98,105,104,108,113,105,104,120,95,87,100,97,100,100,125,101,116,113,103,106,105,113,114,101,97,105,101,111,107,102,94,113,105,101,110,110,110,108,106,110,99,104,121,94,110,98,99,98,85,108,115,97,100,109,96,92,114,104,88,101,107,105,98,108,104,104,102,114,106,105,100,93,103,97,110,105,101,109,104,107,104,110,98,108,104,96,109,111,101,104,112,111,100,100,99,99,116,106,104,108,94,110,106,105,94,98,106,99,105,99,109,96,99,100,96,102,101,104,102,106,101,70,111,110,95,99,109,116,103,104,122,99,100,108,105,108,107,112,104,103,102,107,107,105,115,110,96,111,102,112,104,104,97,110,105,107,90,95,95,114,93,106,100,106,114,104,114,97,104,108,102,97,108,103,111,105,99,103,106,104,99,106,100,104,92,100,116,117,99,105,113,113,118,105,97,102,107,120,105,103,112,103,112,97,102,96,111,100,78,111,95,103,108,105,117,121,111,99,100,105,109,100,116,96,99,102,104,105,112,112,112,108,101,115,103,110,95,104,101,100,86,92,109,100,109,107,102,98,103,104,98,109,113,111,109,104,105,109,107,111,88,98,100,98,106,106,101,104,108,97,106,102,108,94,104,107,109,104,110,112,110,101,89,101,105,99,109,105,107,103,88,105,98,96,104,104,103,102,97,107,115,101,106,93,101,107,98,98,102,94,97,103,119,99,106,94,105,109,94,100,98,104,100,113,94,98,100,104,90,103,113,102,97,113,99,105,91,107,111,100,93,112,100,73,99,110,102,113,106,100,100,109,102,97,117,111,104,113,100,121,104,110,109,107,108,109,103,102,101,104,107,112,113,104,103,101,93,107,104,110,104,99,105,116,102,102,98,91,101,110,101,106,101,88,109,107,96,101,113,100,92,100,106,103,98,109,105,107,111,104,105,107,100,112,104,105,120,94,88,91,91,103,106,107,102,105,102,95,106,109,93,113,103,86,106,100,105,114,98,113,99,109,109,98,110,94,98,108,97,95,111,108,98,99,103,106,95,96,104,103,102,98,103,104,116,102,114,94,105,88,110,100,91,112,87,112,108,105,102,90,110,105,123,94,113,97,107,96,109,108,112,103,114,113,88,104,107,110,102,100,103,108,112,104,100,97,109,105,114,98,106,97,107,107,109,103,96,107,106,107,110,102,125,107,106,105,99,95,101,100,103,110,92,104,104,113,103,98,104,102,108,96,109,106,92,106,99,115,104,95,102,116,113,110,107,105,105,100,103,95,101,114,106,93,105,96,85,103,110,106,99,111,112,110,103,102,105,103,104,100,106,109,104,100,103,96,104,99,105,96,91,105,99,96,108,118,106,97,84,108,109,111,98,105,99,113,106,112,113,99,107,91,107,102,92,105,107,102,93,94,111,104,112,98,101,108,100,104,105,111,104,91,98,100,103,80,105,102,108,108,74,100,107,98,108,110,110,94,110,105,112,102,103,114,104,101,103,94,100,106,105,109,103,113,95,100,97,99,106,97,105,88,100,116,103,109,95,101,98,112,105,107,99,104,99,107,91,104,105,103,109,104,99,102,110,102,102,116,113,102,108,92,105,106,115,92,104,97,106,103,89,100,98,98,114,103,108,119,91,105,112,120,103,108,106,105,138,101,109,97,104,117,115,105,113,101,114,106,104,109,120,99,90,101,110,104,97,115,112,101,112,119,105,97,102,99,113,104,105,103,111,104,105,109,98,101,96,109,107,97,106,116,99,97,106,99,100,98,103,98,108,111,106,106,107,103,96,91,104,99,104,112,125,104,120,110,99,106,103,113,115,100,108,109,94,112,97,108,99,109,107,107,103,100,104,102,92,109,108,113,111,115,106,119,106,95,110,100,106,104,104,110,101,104,100,107,107,104,100,112,109,101,99,103,99,111,99,102,100,103,106,107,130,105,107,96,100,106,106,114,99,97,105,100,107,117,113,113,103,99,102,101,98,111,103,101,95,104,97,108,101,99,95,98,105,105,104,111,100,92,98,99,113,96,99,104,109,96,102,105,104,96,107,109,109,96,106,108,103,109,96,107,106,92,108,103,103,106,103,108,112,92,109,112,103,108,101,105,108,103,104,84,107,96,118,106,113,121,111,122,121,108,132,111,127,116,109,116,118,90,108,106,117,107,120,111,113,101,101,100,103,114,99,101,79,117,103,94,92,104,93,122,102,116,104,95,99,108,112,114,102,108,120,110,98,113,104,107,108,117,116,88,108,97,99,108,111,110,112,97,107,110,116,108,100,101,96,115,97,105,107,109,104,116,109,108,115,103,110,90,119,100,106,109,107,104,111,109,115,114,109,95,100,108,106,100,106,98,92,107,104,97,106,111,104,102,108,96,115,96,106,109,107,98,109,110,104,116,109,108,112,83,105,105,93,113,106,99,103,115,111,106,106,106,80,95,107,106,90,101,117,117,118,111,116,109,99,124,102,92,107,117,106,112,111,99,108,100,106,109,116,107,113,98,123,105,108,102,124,110,115,109,97,98,106,93,117,101,109,93,96,103,111,98,110,108,116,115,80,106,101,107,106,103,112,97,99,97,115,106,108,106,95,106,114,112,103,110,103,96,107,120,103,115,103,106,98,106,100,116,119,106,106,96,101,113,105,108,109,105,120,108,107,102,105,66,104,114,109,103,98,101,95,99,107,105,101,102,114,113,112,102,99,115,119,106,117,104,110,106,117,115,116,101,112,110,116,105,100,93,95,96,104,108,98,113,101,104,106,110,102,110,109,101,111,103,112,104,105,112,117,111,109,115,105,108,95,106,107,105,106,100,104,105,109,108,108,87,103,100,101,118,99,97,113,97,94,97,98,109,96,131,109,112,108,104,109,104,126,117,103,117,109,116,117,100,107,99,90,103,106,113,102,106,95,99,89,100,125,108,102,103,98,101,109,111,104,109,106,113,106,93,99,102,102,102,108,105,100,112,92,88,102,100,106,103,112,113,117,98,101,112,104,106,106,103,124,102,106,104,111,115,111,106,103,107,106,107,112,99,107,102,105,114,102,112,104,91,102,116,104,109,99,113,113,93,103,98,112,99,95,101,105,108,103,95,101,96,106,110,105,89,103,122,110,101,106,117,95,99,85,100,108,120,115,109,110,111,103,112,98,109,114,115,106,107,102,106,105,105,104,116,95,98,99,91,111,108,99,102,113,108,100,107,108,91,102,98,103,107,121,96,113,105,88,99,101,102,123,102,111,105,96,100,102,114,112,90,99,98,110,108,113,99,106,108,103,111,107,92,105,107,99,105,113,96,97,102,117,103,100,108,112,113,96,116,91,126,104,96,112,103,95,110,103,108,96,97,106,95,111,103,110,101,105,100,100,108,94,101,109,96,99,107,106,98,127,97,100,99,106,109,102,107,106,97,99,98,96,118,104,106,109,109,103,113,113,91,107,117,87,103,110,103,106,108,121,106,107,88,121,104,102,109,102,94,99,105,105,70,97,107,114,103,113,116,108,102,107,128,117,103,110,104,98,108,105,98,103,102,107,102,106,115,116,106,107,109,104,106,106,103,103,98,111,91,95,103,104,88,100,110,106,107,106,112,106,110,92,108,97,91,101,106,114,113,98,108,114,102,111,106,71,105,96,107,104,98,116,92,93,110,105,101,106,111,104,98,106,110,104,108,109,98,103,116,109,88,99,86,113,111,113,109,91,104,115,110,106,102,90,110,99,105,105,105,104,105,103,102,98,113,101,97,98,100,99,107,99,115,105,106,119,92,101,116,101,112,120,93,106,102,111,115,113,106,107,100,112,114,118,104,116,104,96,107,113,117,98,119,105,99,104,108,98,109,101,112,123,106,104,106,108,103,117,97,108,113,106,102,107,104,103,116,114,100,105,106,105,106,92,101,106,102,102,99,108,109,112,108,95,103,88,100,94,105,107,89,95,120,122,98,100,95,102,113,115,98,103,102,107,116,103,99,111,102,113,116,101,75,110,108,103,109,143,110,110,105,98,103,108,85,114,107,106,86,99,94,102,109,111,104,106,100,111,99,94,87,106,109,98,103,90,100,101,104,103,102,105,106,122,104,113,105,107,107,106,113,108,102,101,112,103,101,102,100,109,107,95,108,133,110,113,104,98,102,108,97,101,107,110,99,102,95,108,101,117,108,104,102,100,114,113,105,110,105,114,111,111,73,112,106,102,96,106,113,98,104,96,113,114,108,116,99,105,108,104,101,109,109,106,102,100,98,103,112,101,107,105,101,102,109,122,82,104,112,107,103,100,127,91,114,98,107,103,106,117,108,104,104,104,100,104,93,109,108,111,118,120,103,111,102,109,102,98,108,90,104,101,90,104,115,106,106,114,113,105,108,101,112,98,116,98,106,123,106,100,105,108,112,107,110,112,105,118,109,114,104,103,104,95,104,101,108,104,104,105,109,114,93,108,114,102,93,102,99,113,99,77,114,99,107,115,100,110,105,106,105,109,95,101,96,112,95,88,100,105,72,104,99,97,113,103,101,83,112,101,98,111,112,102,108,105,116,99,113,106,107,101,101,103,107,105,102,107,110,111,110,112,96,102,117,117,116,95,108,89,108,106,99,109,103,107,104,93,112,109,96,106,102,113,97,117,100,103,97,108,108,125,111,101,92,103,105,115,108,105,105, +551.2627,104,95,107,102,98,95,113,126,96,99,116,90,80,111,114,97,105,120,106,102,106,104,105,102,105,112,126,100,100,102,110,89,100,115,94,114,106,87,107,98,108,101,105,107,92,103,79,81,98,99,104,103,104,86,98,86,109,107,103,103,92,80,103,96,113,117,105,114,92,107,116,88,99,107,110,105,103,99,99,93,102,101,101,110,106,98,112,112,88,98,118,98,97,97,93,78,94,110,95,95,96,94,95,110,102,99,88,101,105,94,113,90,112,105,109,94,104,111,113,107,104,100,98,102,115,113,109,99,94,105,103,112,105,84,100,104,107,116,94,109,118,105,114,108,104,96,118,106,98,99,95,97,119,92,97,93,103,102,104,106,104,105,109,109,98,107,108,102,110,92,105,121,99,106,106,109,106,86,97,124,102,102,102,93,99,97,113,84,107,100,94,115,96,102,100,91,98,102,96,104,101,106,108,105,101,110,105,117,118,99,89,107,114,98,96,109,108,98,110,101,102,110,86,104,105,111,101,112,105,104,96,104,103,97,111,104,109,107,108,98,108,117,79,124,108,106,106,102,100,106,109,95,95,88,99,106,95,104,101,102,95,95,104,107,101,121,99,90,103,100,103,108,107,91,98,104,97,98,100,98,98,108,102,108,90,115,107,101,92,103,117,104,108,104,114,103,101,105,101,99,102,88,106,110,93,115,108,102,103,106,99,116,119,111,101,103,116,99,108,89,104,106,102,98,116,105,108,94,117,110,114,97,105,110,107,116,105,93,93,109,105,95,103,103,94,96,106,103,110,106,105,99,116,100,119,104,108,101,99,104,106,105,99,93,102,104,105,93,93,107,112,102,107,110,101,95,104,101,92,105,113,111,109,100,100,107,92,98,94,74,102,86,99,121,105,108,115,92,114,110,103,108,99,118,102,100,103,109,96,107,105,91,102,98,106,99,99,102,111,106,99,101,108,99,116,93,97,99,114,105,105,104,113,106,110,101,98,109,96,112,110,101,95,123,98,98,101,98,113,104,90,111,97,115,105,100,106,109,107,112,104,110,103,109,115,95,82,103,106,109,105,102,105,111,94,98,100,114,107,98,94,108,129,105,112,101,108,101,99,112,108,112,105,98,97,99,100,110,112,98,114,121,112,105,95,104,113,116,113,112,119,107,110,99,111,110,108,101,101,100,101,99,105,102,101,103,115,104,104,103,99,103,94,113,115,104,116,118,97,100,98,100,91,107,107,107,103,111,109,106,97,106,106,103,95,100,99,72,105,103,113,98,94,96,103,114,107,100,90,105,100,99,107,94,105,102,106,106,104,113,102,97,107,113,102,99,99,97,101,99,112,113,102,95,113,99,115,109,112,96,109,110,102,102,99,96,108,105,111,107,108,105,102,108,104,119,98,120,102,116,111,103,94,95,98,110,104,106,116,98,96,116,109,104,105,109,99,94,128,110,111,108,110,101,92,108,96,103,100,108,100,98,108,116,100,85,113,107,101,107,110,103,109,111,99,111,109,99,73,108,117,99,113,101,99,114,114,109,105,103,112,101,112,102,93,93,102,95,99,109,107,118,90,115,105,97,102,107,105,104,97,103,92,91,101,104,95,109,90,104,105,105,102,106,99,108,104,100,109,109,101,123,108,112,101,86,116,106,104,102,117,108,110,108,100,99,113,95,100,102,119,102,108,102,106,104,104,116,100,104,106,111,100,98,111,103,88,72,124,84,94,109,108,104,99,97,106,107,110,94,104,109,97,98,114,114,100,96,108,89,109,105,95,100,98,111,118,106,106,111,99,100,104,104,95,108,98,98,97,103,111,107,94,105,102,112,103,110,116,104,99,94,100,100,108,108,114,99,112,108,108,101,106,103,98,103,102,107,98,106,101,98,105,113,102,86,102,112,124,101,98,98,114,95,104,110,109,123,103,115,109,104,102,106,105,108,102,106,119,83,109,121,100,103,106,104,96,117,102,102,102,108,102,102,96,114,101,93,91,102,107,100,100,105,100,107,95,107,97,111,105,114,124,120,109,115,116,97,95,108,96,102,112,105,113,97,110,104,112,101,101,95,114,115,106,99,103,114,101,99,112,107,102,106,107,94,99,110,103,107,106,104,105,107,94,113,98,113,113,105,101,109,106,96,107,123,89,110,97,106,99,99,101,95,104,112,101,103,99,107,105,115,91,92,103,113,98,105,110,108,98,120,111,95,102,112,109,117,101,80,92,112,88,102,99,117,107,99,104,98,112,109,100,106,109,97,96,107,114,114,112,96,105,110,98,94,99,111,114,106,104,104,108,114,112,97,99,112,108,99,110,106,99,105,104,95,109,113,100,110,101,87,112,99,105,95,99,117,94,110,115,127,128,124,118,125,147,118,127,127,114,128,112,118,121,109,109,102,97,106,110,105,102,103,96,114,98,111,95,106,106,91,105,94,115,103,108,101,108,117,106,95,94,104,105,117,96,103,109,99,109,93,135,97,100,94,98,92,104,116,97,100,101,101,102,98,125,106,109,98,98,95,102,127,104,104,106,99,98,102,97,93,109,103,95,94,101,112,91,99,103,107,102,111,107,111,113,99,95,97,114,105,104,95,102,96,113,107,91,99,102,104,110,104,118,102,97,101,87,102,109,101,114,99,93,113,75,97,97,107,107,105,123,106,106,92,98,87,115,96,105,107,95,122,102,115,111,104,105,110,102,100,99,106,94,108,101,86,112,108,96,106,113,103,117,98,104,103,111,109,107,113,99,109,102,120,103,102,83,95,110,112,104,108,107,103,115,95,109,108,103,100,106,114,102,113,110,92,124,99,107,111,114,96,99,103,108,105,89,108,87,119,112,97,95,90,100,123,102,104,96,108,102,132,102,101,103,110,97,120,117,80,101,102,106,98,96,104,96,102,106,88,99,93,103,92,108,107,105,103,93,108,109,103,106,113,103,93,111,105,106,99,104,112,103,91,142,109,110,92,93,113,68,93,109,109,100,95,90,104,115,102,94,103,103,113,113,91,101,112,97,102,112,96,107,103,90,101,91,105,97,101,111,101,105,101,107,96,109,107,106,97,94,106,97,95,104,107,94,98,93,103,105,102,114,89,108,91,95,113,108,102,101,116,95,84,107,121,113,104,104,103,99,97,109,104,109,103,102,106,82,95,107,92,108,102,110,88,105,105,102,96,106,108,97,100,106,107,104,105,107,117,78,102,96,99,108,106,104,108,108,103,103,107,97,117,104,109,100,113,104,109,109,104,103,100,92,121,101,105,100,111,117,101,102,99,113,100,97,101,105,97,113,98,95,102,99,98,115,111,116,108,106,113,106,111,112,101,108,94,98,125,105,127,113,104,101,95,96,79,102,107,111,98,114,106,92,98,106,100,109,108,101,98,80,113,97,101,117,110,104,104,130,94,102,103,102,92,98,107,101,107,98,105,105,103,115,99,95,91,104,106,104,96,87,101,99,88,95,95,109,103,103,101,100,99,108,113,105,100,98,111,116,101,112,123,90,107,107,100,104,101,99,98,101,103,105,104,100,96,103,105,95,103,107,101,102,107,97,105,113,117,102,99,108,95,104,98,108,94,102,112,112,108,106,95,106,102,104,110,86,96,110,102,80,87,103,96,104,121,106,100,105,83,101,106,103,111,102,102,112,112,105,101,96,93,110,108,105,81,110,111,100,113,93,100,103,106,99,97,95,99,113,104,106,90,109,102,100,113,98,93,103,90,111,105,98,98,83,93,101,102,100,98,95,94,97,103,107,105,115,94,113,98,100,90,107,108,102,103,106,103,98,113,112,102,100,117,98,100,107,101,108,102,114,102,94,97,103,99,101,106,119,101,108,103,99,101,114,97,104,112,97,107,100,104,101,94,110,120,105,92,109,102,110,98,96,110,105,107,107,109,98,102,120,102,128,111,104,100,127,102,95,99,111,106,96,101,105,99,107,105,97,109,95,106,107,95,105,107,98,116,103,107,95,104,102,92,111,102,100,102,93,98,125,96,108,110,113,113,103,100,96,109,106,95,107,91,110,107,105,118,94,105,104,118,97,113,101,101,99,94,108,95,101,94,103,116,81,101,77,98,96,104,104,113,96,108,94,101,96,99,108,105,96,115,117,106,109,104,107,113,106,106,100,109,109,95,95,91,105,99,99,94,95,92,93,100,93,87,97,106,107,104,95,109,103,104,102,100,102,108,99,103,107,95,103,101,117,91,97,97,82,100,102,103,103,100,92,98,97,99,101,105,100,103,120,99,107,94,101,102,111,107,113,103,105,110,102,96,107,90,94,94,121,80,102,106,103,108,99,109,112,107,103,95,106,111,111,98,112,90,91,98,103,93,110,102,106,106,107,116,117,108,92,96,109,104,82,102,101,107,112,114,100,95,105,123,104,108,85,97,100,132,93,99,91,107,103,101,110,104,125,104,96,102,99,109,104,111,97,109,101,101,101,99,104,96,103,93,100,95,103,104,101,112,91,104,97,96,85,91,97,108,99,105,102,100,105,107,106,87,93,101,99,100,106,85,101,110,104,91,92,104,110,106,100,96,96,100,99,88,102,102,104,106,107,95,90,102,103,92,106,93,98,109,105,89,95,104,102,106,101,109,95,88,87,102,100,98,103,95,97,105,109,125,103,113,101,106,99,113,99,108,96,105,99,100,98,109,108,96,90,106,100,99,104,106,95,92,136,101,96,102,103,97,103,84,97,99,99,90,103,114,95,88,105,104,93,98,112,109,96,97,90,113,103,107,95,104,105,113,95,98,107,109,115,102,99,109,96,69,121,90,112,101,100,99,109,104,113,95,111,97,93,100,94,98,97,103,110,108,99,94,114,108,105,92,115,89,96,111,101,99,92,105,104,103,90,91,107,97,112,118,98,93,102,97,95,109, +551.4035,100,106,110,92,101,102,108,96,93,100,102,104,102,101,100,109,105,96,103,91,110,91,95,88,103,116,105,96,109,114,105,91,93,103,109,97,87,91,97,107,109,95,110,92,107,93,98,120,105,105,103,106,83,101,102,97,96,109,113,100,103,104,100,74,102,107,97,66,101,97,106,90,93,99,91,99,87,112,116,105,124,96,95,94,91,102,99,100,110,100,80,91,95,100,105,94,107,91,109,97,100,96,102,87,99,107,99,105,102,111,105,95,100,111,94,95,99,90,96,109,96,108,104,117,102,110,99,96,110,115,91,104,107,132,106,109,107,115,102,109,103,89,90,121,83,97,100,104,92,102,106,100,128,101,94,109,71,110,110,103,109,95,109,98,103,100,103,91,94,99,100,102,95,99,105,115,102,99,99,114,100,98,96,104,104,102,102,89,111,107,96,101,113,102,113,100,107,99,90,109,103,99,114,102,91,127,110,97,108,99,100,100,100,103,100,110,95,88,104,114,115,102,85,108,105,102,110,107,111,116,100,99,94,116,102,99,106,109,110,67,103,98,108,102,104,105,122,105,101,85,91,116,102,94,98,103,103,105,101,122,97,108,111,111,104,92,110,105,83,104,111,101,104,94,124,93,106,98,101,89,100,111,110,96,97,110,96,93,111,108,91,101,112,100,104,110,107,96,104,109,106,98,101,99,93,106,103,109,104,118,98,114,108,97,105,114,102,97,99,102,99,102,112,107,102,104,95,96,105,109,115,96,100,101,106,97,104,101,97,113,103,109,96,103,104,112,102,94,106,111,105,111,101,110,110,107,108,106,110,117,135,106,94,80,115,87,110,111,115,113,106,123,113,109,97,105,102,97,100,94,102,99,108,108,106,92,101,95,99,104,108,91,102,74,102,104,92,100,100,104,103,102,105,96,107,98,104,109,118,106,112,108,114,110,103,97,100,105,123,101,105,96,96,105,111,81,106,98,100,113,96,105,104,86,95,95,113,113,110,113,104,103,96,111,102,95,99,75,96,112,101,108,109,102,98,93,98,99,110,98,105,86,95,109,111,108,109,116,102,99,104,94,104,102,108,106,97,117,112,102,100,115,98,104,100,104,100,128,110,91,72,104,103,95,98,97,91,98,112,85,105,116,109,116,97,99,93,104,109,102,102,112,100,98,104,99,103,114,96,108,103,87,108,98,71,103,105,103,105,105,106,105,103,99,94,108,77,103,81,99,110,105,110,99,101,113,99,99,99,105,112,120,107,117,99,105,107,92,106,94,97,93,96,99,102,106,107,107,106,96,113,103,122,88,109,104,94,102,98,113,86,112,110,113,97,96,105,105,103,110,105,108,103,98,99,110,99,109,97,107,110,112,107,108,99,101,106,103,102,110,101,99,112,105,104,99,107,103,104,79,100,81,104,100,112,111,117,112,108,112,111,114,102,97,94,118,101,112,103,89,111,106,107,105,103,96,82,110,108,117,100,109,102,104,104,104,116,105,91,107,100,105,106,105,91,100,111,113,109,107,115,82,108,94,104,98,101,99,102,102,107,108,99,95,106,100,88,90,104,104,107,92,81,109,105,103,107,79,108,103,106,103,105,112,115,109,112,110,99,95,110,97,102,96,95,96,109,103,105,101,114,105,94,110,104,107,114,101,107,108,79,113,91,108,98,102,102,106,102,98,99,123,105,108,101,100,106,104,99,112,98,105,107,91,103,100,117,99,100,100,98,100,100,99,88,114,87,104,100,108,104,114,95,101,96,108,116,118,114,102,98,95,96,108,104,112,108,107,103,125,105,108,114,103,96,110,103,113,81,118,111,112,87,92,117,108,104,135,95,100,103,70,98,92,113,99,102,117,112,104,94,106,99,105,103,96,110,95,111,100,107,103,108,109,88,99,105,101,121,103,104,99,103,100,96,108,100,108,97,93,93,99,102,97,90,98,116,103,91,99,98,95,104,108,107,96,93,110,110,93,96,101,96,99,101,90,106,101,106,94,107,100,104,103,90,105,87,97,103,106,99,109,105,103,113,95,99,103,105,98,100,105,101,101,106,108,102,104,97,108,97,105,104,111,108,102,98,102,94,100,111,103,96,95,108,110,100,74,81,96,103,108,111,107,90,110,117,113,114,109,118,108,104,102,98,115,98,114,104,99,99,103,113,101,114,105,101,107,105,95,108,102,104,102,106,106,96,78,108,102,100,106,108,108,107,110,110,108,103,114,101,120,94,101,97,95,103,98,105,82,115,94,104,104,106,100,98,116,104,112,107,105,100,95,115,107,96,104,113,103,102,98,100,115,97,104,114,108,105,106,122,120,97,111,110,119,104,113,106,95,110,99,94,107,102,100,97,113,113,106,122,116,116,134,132,113,115,118,126,123,126,129,98,110,117,105,109,111,118,108,105,106,104,113,103,96,89,113,99,86,92,114,101,114,102,99,92,99,99,105,101,115,98,115,99,110,113,100,115,97,113,123,119,105,100,118,112,98,108,109,106,101,108,105,104,110,98,117,99,104,108,108,86,107,102,101,101,110,96,102,113,109,93,101,111,92,101,106,111,113,93,120,110,114,119,108,121,108,98,100,109,100,94,105,103,99,102,106,113,102,105,101,115,111,104,105,109,106,101,106,113,98,121,98,106,115,115,103,102,112,95,111,116,103,106,104,109,101,99,100,127,109,115,98,99,103,116,108,109,117,99,107,113,113,102,129,109,95,96,112,100,98,113,108,92,113,115,119,99,121,107,105,95,107,111,99,108,121,105,109,110,99,105,106,103,102,103,113,111,94,85,104,123,97,106,111,111,116,103,107,100,113,110,101,104,102,116,116,105,110,110,104,107,107,76,109,108,122,117,106,110,100,105,122,112,94,98,98,109,104,92,109,104,114,102,111,99,94,83,110,98,103,106,108,108,109,110,109,109,101,101,101,104,112,104,113,108,105,103,107,94,95,105,108,113,109,119,120,107,98,109,99,109,120,124,93,98,106,102,108,103,113,107,101,105,97,105,113,107,100,104,101,102,108,113,111,103,109,104,112,106,102,105,103,107,94,102,116,108,99,118,95,101,103,100,105,110,110,108,99,117,100,105,113,108,74,104,117,97,100,108,97,99,119,112,108,99,100,111,116,103,102,109,97,110,99,99,105,98,107,97,97,99,107,112,117,98,105,112,101,97,99,105,102,105,113,123,112,97,117,95,109,98,112,104,105,106,100,108,114,88,107,104,111,108,101,107,98,101,103,99,104,99,112,110,102,102,114,112,109,104,121,123,95,106,106,106,108,132,101,103,108,95,105,104,116,109,98,105,97,98,106,105,110,105,103,107,103,115,98,96,101,105,119,106,104,101,103,133,111,66,109,106,107,111,103,113,102,99,113,98,106,103,113,104,108,109,106,112,100,112,107,109,103,97,106,99,103,95,94,103,113,105,110,98,101,106,121,109,113,93,103,99,95,97,107,109,109,101,107,107,113,103,108,101,105,103,101,107,106,102,104,101,109,102,111,102,100,97,103,113,110,117,116,102,110,95,104,105,102,113,110,104,124,105,120,101,101,105,89,110,95,102,115,94,103,121,100,98,108,95,107,104,97,104,108,104,99,110,105,102,106,102,107,92,86,109,100,92,113,103,88,116,103,96,87,100,113,109,125,96,107,97,94,105,104,78,112,99,105,108,112,107,107,109,89,103,106,96,90,99,92,110,101,103,100,94,116,105,96,94,107,104,101,111,100,116,96,104,101,106,105,108,98,111,105,115,109,109,115,103,106,120,103,95,99,92,110,105,110,99,107,105,104,96,104,101,112,104,97,107,92,113,102,120,108,74,98,102,108,97,100,101,98,108,108,110,104,102,100,101,103,115,109,94,96,95,99,96,106,112,99,98,105,104,107,105,90,109,103,108,113,108,108,104,114,119,104,102,105,108,111,121,101,107,102,107,118,107,102,90,113,96,110,117,118,104,102,100,110,109,111,98,103,109,103,109,111,118,109,107,95,97,102,117,97,108,101,106,113,110,102,106,93,116,104,104,95,79,109,102,96,104,105,97,97,79,118,113,91,109,100,112,102,97,111,101,107,106,100,113,106,99,105,108,95,95,109,113,105,91,110,113,95,92,104,100,112,101,100,109,112,111,103,107,111,107,109,114,106,120,103,105,99,96,104,113,105,101,104,106,99,115,108,102,111,98,113,96,112,118,102,119,109,112,99,115,105,104,116,105,100,116,106,94,108,113,109,98,102,104,107,114,88,95,108,97,99,117,102,90,106,105,108,112,110,114,76,110,109,101,95,111,111,105,106,101,80,112,102,112,108,100,98,112,106,88,99,96,109,119,87,94,91,104,98,108,106,111,103,99,116,107,96,107,109,104,132,102,116,99,105,102,109,98,111,115,110,112,105,108,95,109,107,101,109,104,99,117,109,107,104,100,98,99,98,103,104,103,102,109,109,103,110,93,96,106,93,101,116,105,95,66,105,102,100,100,104,103,94,94,108,102,109,106,104,98,106,114,91,94,95,114,103,95,96,119,93,122,103,98,103,112,106,105,98,108,89,99,106,101,104,109,107,109,109,123,112,118,118,91,100,108,104,115,108,105,110,104,106,92,92,104,102,99,100,109,104,103,113,109,103,99,99,103,104,123,84,98,93,98,94,111,103,91,88,102,93,110,102,96,94,104,111,103,93,110,102,95,97,118,103,101,99,104,97,99,100,117,103,99,83,97,97,113,89,113,99,101,108,110,91,103,98,101,98,94,104,98,106,94,105,113,118,107,111,109,102,114,125,100,106,106,94,94,104,89,103,113,97,101,105,98,103,107,94,106,109,109,96,95,106,102,101,101,90,102,84,98,115,102,103,93,98,106,100,103,112,100,104,108,98,107,107,105,103,102,92,116,101, +551.54437,110,94,101,100,103,113,97,83,93,104,96,105,98,109,103,100,99,108,101,97,86,95,103,91,100,107,106,104,113,103,109,112,102,101,100,105,117,107,111,110,87,117,106,99,102,103,112,105,87,104,105,104,106,107,106,99,101,112,103,100,110,111,98,107,128,106,96,109,91,101,116,101,107,99,109,108,101,110,101,115,97,105,106,94,107,102,98,109,97,99,107,97,108,88,100,97,100,109,116,103,107,107,103,102,95,100,109,103,116,87,94,80,112,99,111,87,109,105,112,104,100,90,103,107,107,122,113,99,98,100,102,103,91,108,99,98,129,117,107,102,99,110,97,103,112,100,111,122,100,106,106,109,111,93,100,109,69,104,100,96,93,107,108,113,103,105,117,108,112,105,88,98,90,105,105,102,113,95,106,117,95,114,106,97,95,97,106,96,107,110,99,104,113,117,119,98,101,97,102,114,123,107,104,101,83,99,109,105,106,104,106,103,116,103,102,110,95,109,100,112,108,102,109,108,106,108,102,108,85,110,101,108,106,99,98,110,97,104,103,104,107,105,107,102,101,94,108,109,99,104,118,103,101,106,108,114,96,104,105,105,92,109,110,109,93,131,116,100,101,104,103,117,118,113,120,119,104,109,103,109,106,106,95,91,100,103,106,91,103,108,111,107,103,109,119,107,103,115,110,101,107,94,114,114,98,112,118,112,103,105,101,110,117,111,102,104,107,117,106,106,103,89,106,109,117,98,104,97,110,107,104,127,118,98,113,104,106,90,102,101,110,105,97,99,103,108,101,111,107,109,108,118,105,109,102,105,113,102,103,112,100,108,99,107,96,103,112,114,102,109,94,104,109,108,106,108,120,117,97,94,108,110,103,101,113,106,100,104,95,98,120,109,109,113,92,102,106,92,99,108,115,87,109,108,107,100,104,114,80,108,117,99,100,100,113,105,96,116,104,104,96,105,96,113,120,105,111,87,99,112,110,94,104,110,108,100,98,107,100,104,103,110,108,112,95,109,118,99,111,105,98,101,99,105,104,106,107,96,110,115,94,100,108,103,101,92,104,115,116,104,110,109,95,102,103,96,99,112,105,103,94,100,105,99,97,98,109,111,100,94,109,105,97,100,101,101,101,113,110,100,111,115,86,110,108,106,113,109,81,109,122,105,104,103,112,114,107,108,103,77,109,126,106,97,114,105,103,106,108,111,109,90,110,102,100,107,108,116,106,132,119,93,98,100,87,98,95,77,107,107,107,101,113,110,100,101,117,103,114,106,107,107,110,105,98,107,108,94,109,111,94,99,106,109,102,109,106,108,101,93,105,99,104,103,106,99,107,107,105,103,103,118,108,99,115,116,99,103,99,108,108,110,109,106,108,113,117,91,116,114,93,99,97,101,115,103,114,104,117,105,96,94,102,103,106,99,99,109,111,111,103,103,101,107,96,103,96,107,102,106,110,110,96,108,108,109,109,94,100,104,107,108,102,99,107,116,103,100,107,110,107,104,109,97,99,102,99,105,87,108,112,107,106,107,103,109,121,98,106,96,102,113,119,114,121,106,101,105,93,100,98,104,111,106,106,97,107,108,96,115,100,101,104,86,103,102,122,114,100,117,104,108,108,102,104,98,104,112,107,96,112,100,102,109,102,103,92,105,107,105,113,111,108,106,105,104,101,114,112,101,114,86,103,111,106,109,104,113,95,107,108,102,105,122,112,100,108,108,107,99,111,113,116,100,96,116,104,99,102,118,103,122,109,103,104,108,98,107,113,103,94,106,120,90,91,111,98,115,97,110,99,115,108,104,100,111,100,107,114,116,99,95,97,105,99,104,110,105,115,101,113,99,102,101,122,96,108,102,104,99,108,108,103,112,105,109,99,108,98,112,106,106,111,112,96,109,109,103,110,119,102,117,115,105,95,106,91,100,102,107,107,112,117,106,109,105,103,115,111,131,113,101,98,115,109,96,96,110,109,111,102,103,115,103,99,97,100,104,110,103,108,110,103,115,104,103,116,107,111,111,91,111,111,101,113,110,94,105,100,111,113,102,109,93,104,103,108,102,104,98,101,93,107,114,99,103,110,113,105,112,101,97,111,103,127,104,101,103,98,108,114,106,111,113,95,105,106,102,116,104,102,115,106,86,90,102,104,108,117,103,102,115,115,108,111,102,107,106,106,96,120,111,106,95,108,106,105,109,105,98,101,118,104,109,121,117,116,95,109,105,100,106,108,116,100,95,97,104,109,111,112,98,96,117,101,100,96,108,107,114,107,114,92,95,105,95,109,95,101,111,106,108,129,112,97,104,100,107,100,110,112,86,112,116,96,109,109,104,101,106,116,114,115,89,105,98,122,106,106,104,117,133,119,119,133,106,124,115,129,132,108,113,128,117,112,120,108,112,111,112,89,107,110,106,98,107,102,112,108,107,97,104,98,104,103,91,108,115,100,111,99,95,102,102,103,111,102,93,108,108,103,92,105,101,108,107,98,106,105,113,107,99,101,100,109,113,104,102,110,112,97,113,103,117,100,95,100,106,91,102,104,124,116,112,81,107,120,97,109,113,98,125,118,96,108,103,79,104,112,112,109,83,98,113,113,103,103,92,117,100,119,109,105,101,109,112,100,103,108,116,116,91,80,100,112,105,103,94,122,100,102,93,110,111,106,117,99,110,105,106,110,108,126,111,121,101,124,107,99,105,99,106,102,99,94,104,120,101,108,113,109,102,105,100,100,110,113,112,102,102,101,108,110,119,99,109,101,107,106,106,124,116,94,102,104,98,101,103,124,113,94,87,106,85,115,93,108,101,103,109,114,91,108,114,99,113,112,109,104,113,105,113,105,101,99,104,106,106,108,111,104,105,110,105,102,98,64,108,102,100,108,90,99,104,106,106,114,104,104,101,108,95,117,101,100,100,100,101,91,116,95,106,92,96,104,97,107,97,115,111,101,102,103,109,101,74,113,98,103,106,107,100,100,105,106,96,86,118,103,92,116,112,103,104,109,112,99,100,108,98,112,76,103,116,113,99,101,98,96,106,114,99,115,103,111,104,104,97,106,99,102,103,101,107,103,100,104,79,98,103,98,112,101,109,99,104,117,98,109,107,99,112,111,96,97,107,107,100,109,94,107,98,99,109,76,94,113,115,95,96,104,102,100,95,102,105,104,102,126,101,110,113,103,102,105,109,106,97,104,100,117,99,111,109,105,97,114,104,104,91,116,111,110,105,105,103,100,110,110,100,109,105,113,106,110,106,104,113,120,99,113,105,107,110,97,105,105,103,113,97,101,103,100,90,107,100,102,114,106,109,100,100,113,103,105,111,95,109,109,82,108,110,103,107,107,103,106,136,109,106,93,96,104,98,100,102,106,79,99,106,109,102,94,114,112,105,112,102,100,103,96,113,107,117,94,106,102,97,107,108,103,116,106,102,107,112,110,100,99,109,100,107,105,100,103,104,105,94,107,104,110,99,103,120,99,95,111,101,109,94,114,107,96,107,105,106,110,110,95,120,107,94,99,114,95,102,107,99,116,107,104,109,106,98,109,94,99,101,106,108,108,102,105,106,104,105,92,101,107,109,105,108,117,104,99,104,99,102,110,113,102,108,87,105,94,93,110,111,99,112,99,105,116,108,110,101,120,104,103,115,97,105,81,102,95,113,106,102,105,96,102,114,110,100,108,106,103,119,108,96,99,96,98,99,79,104,108,103,105,91,108,79,111,98,109,117,114,86,92,112,91,107,103,106,101,104,105,100,113,108,99,102,104,104,98,103,94,104,102,109,111,104,96,115,107,105,109,114,102,101,106,107,114,105,112,116,101,99,99,110,98,103,101,110,105,107,108,106,105,99,106,99,95,106,107,109,105,103,104,108,105,103,102,98,105,106,95,108,112,99,76,106,113,103,110,97,104,111,90,99,93,96,106,95,104,110,105,103,109,105,105,109,98,108,108,92,109,108,97,99,108,112,89,116,109,102,104,117,111,104,105,103,110,108,102,101,105,117,114,101,101,100,101,109,114,111,108,107,110,98,102,96,112,100,110,111,100,103,94,113,108,106,104,102,106,111,100,96,89,100,113,118,117,109,111,111,96,98,97,104,112,100,87,101,100,108,105,109,106,105,105,82,99,101,105,99,90,89,100,96,114,140,91,105,101,102,100,98,113,117,101,105,109,95,124,114,91,96,97,103,110,113,96,106,111,95,100,107,99,110,110,96,104,105,100,105,101,112,102,105,95,105,111,106,97,113,91,90,93,114,110,95,106,95,110,99,113,98,105,114,99,109,105,105,100,91,100,97,105,110,111,109,119,106,117,90,100,105,114,97,110,93,104,101,103,104,103,97,84,100,98,103,108,107,104,108,121,91,96,107,113,105,98,94,102,109,103,104,101,94,97,94,107,101,79,101,93,105,121,94,124,105,105,96,100,95,96,87,108,95,94,107,113,102,101,88,92,101,109,106,97,107,90,100,100,103,96,108,95,116,96,101,101,102,102,104,117,108,99,98,100,97,65,121,87,99,103,110,93,98,124,105,100,106,98,113,109,101,107,100,97,109,96,104,105,104,113,98,95,102,105,91,99,102,97,88,95,107,94,112,104,114,108,103,82,102,107,109,101,107,111,108,99,93,109,99,95,105,106,86,101,106,99,97,96,97,103,100,112,99,84,116,110,107,98,110,112,113,99,98,111,114,102,103,105,107,101,109,105,93,100,94,108,114,108,109,113,101,112,105,106,100,99,99,113,108,104,104,103,97,102,104,108,109,102,104,105,94,113,107,113,105,113,95,99,99,101,94,95,107,93,92,102,113,74,69,106,89,100,105,119,108,98,99,103,98,90,111,103,101,86,112,91,102,103,100,90,105,117,95,97,101,123,105,99,109,111,108,92,90, +551.68524,102,106,105,99,96,103,110,110,99,119,102,106,102,99,114,119,117,109,104,108,114,101,119,94,95,110,88,105,109,107,107,111,103,105,108,103,112,107,107,101,104,112,106,94,105,120,110,102,119,121,105,102,107,104,110,108,106,108,108,109,107,102,95,105,106,112,104,106,108,124,106,113,108,117,101,76,101,99,111,99,114,106,108,98,109,106,107,98,105,106,114,109,116,99,96,102,113,112,104,96,102,82,111,99,104,88,92,123,110,108,124,115,123,104,111,104,108,103,117,105,103,94,101,111,107,102,109,106,110,107,120,94,100,92,99,105,108,116,101,109,104,108,93,104,104,120,106,111,115,103,110,98,110,112,106,103,107,102,118,115,104,80,105,111,108,94,104,103,90,113,103,98,95,89,100,111,105,97,103,117,106,122,102,106,102,101,98,100,105,97,90,109,103,122,108,109,109,97,106,104,104,128,106,99,99,112,101,107,119,99,103,94,102,107,113,99,100,114,107,114,109,78,99,111,100,106,108,112,105,103,106,107,110,107,110,104,111,108,113,112,88,111,106,106,102,97,102,112,103,117,108,110,103,98,106,108,103,116,120,105,105,90,112,100,98,98,122,96,104,111,101,91,106,107,107,107,114,111,112,101,102,109,109,99,103,105,107,104,105,113,108,103,114,106,114,113,108,134,113,99,109,106,92,107,96,102,103,112,102,115,99,106,91,95,104,122,103,119,104,98,104,99,103,109,107,105,99,90,101,112,104,94,109,101,90,123,101,105,101,119,107,100,106,112,102,105,111,103,117,104,100,101,103,105,130,101,106,106,91,104,100,102,103,99,100,104,109,103,101,116,110,108,112,100,121,108,114,104,110,110,102,124,91,106,99,107,92,108,104,117,89,105,95,105,103,99,113,107,110,109,95,107,93,95,108,94,107,101,94,106,86,106,102,118,117,97,113,104,99,105,117,106,97,100,104,91,95,99,94,128,109,104,97,105,97,100,108,121,106,104,94,99,103,107,99,104,104,113,121,114,117,102,99,107,102,104,99,108,110,101,107,110,111,107,109,109,113,98,102,124,105,103,117,106,106,135,95,124,74,101,105,109,115,113,105,90,102,95,98,108,106,114,116,119,99,108,109,107,109,108,107,94,104,114,100,96,104,106,120,113,114,106,102,107,109,107,104,98,114,90,108,100,123,98,111,117,108,103,100,107,93,89,99,112,102,110,108,103,112,108,105,108,102,103,111,101,109,108,100,99,110,118,109,104,100,107,97,106,110,106,116,111,99,109,94,105,103,116,111,102,92,104,106,101,112,110,102,117,108,120,107,114,102,115,100,98,105,115,125,97,121,113,108,107,116,110,100,108,112,107,90,107,112,95,112,111,113,115,110,102,108,109,113,100,110,108,116,104,118,113,83,88,89,113,109,109,104,118,95,102,109,109,110,112,106,97,111,98,111,104,107,98,104,109,99,118,109,102,103,121,102,113,98,106,102,109,114,111,116,116,106,109,91,95,76,103,105,111,105,99,96,109,99,107,102,103,104,111,110,94,109,116,113,100,101,105,109,119,106,109,115,107,104,115,112,109,100,103,109,97,98,109,101,107,97,112,114,114,99,97,118,93,99,103,100,105,100,108,112,112,94,93,98,113,99,104,113,109,96,98,104,88,96,107,95,102,109,94,106,103,104,99,107,98,116,98,98,98,108,102,110,96,108,100,123,117,105,108,105,113,109,106,97,103,95,114,88,102,109,95,111,110,101,100,103,113,109,101,111,93,106,103,107,113,90,94,113,108,104,109,112,114,106,100,101,103,108,112,104,114,100,103,101,106,103,121,109,96,116,102,141,103,98,98,97,96,102,104,107,118,102,102,125,113,113,110,103,107,104,99,104,101,106,99,105,105,100,100,107,115,107,112,104,94,102,114,102,95,105,108,107,95,125,112,109,113,106,125,113,109,109,105,107,107,125,99,105,118,115,120,113,115,102,101,104,113,110,101,122,114,104,117,110,116,110,95,103,108,104,99,108,107,104,112,111,104,100,113,112,102,114,121,111,107,114,110,107,105,96,101,100,111,110,128,102,95,118,99,105,103,125,105,102,105,102,114,94,115,117,93,115,130,108,105,103,101,113,108,110,89,114,109,111,102,114,111,106,107,118,116,108,109,113,112,114,104,111,81,96,107,117,111,115,103,114,106,102,109,94,110,94,102,95,90,104,99,94,106,100,117,100,109,114,109,108,109,109,106,116,101,100,106,101,102,101,103,90,105,98,95,108,112,109,112,104,100,114,111,72,117,98,102,106,107,107,103,118,110,109,106,122,109,105,104,107,112,106,109,111,95,106,96,111,112,125,101,104,96,121,134,103,118,118,129,102,159,140,131,113,96,119,132,110,109,124,119,101,100,117,121,120,113,119,121,119,110,99,117,107,99,111,114,103,110,111,113,111,101,108,108,91,102,98,105,105,102,102,105,94,100,104,110,117,96,90,96,99,98,91,109,103,100,115,100,103,107,102,102,104,98,99,98,109,131,95,104,97,110,109,107,106,100,103,105,102,118,104,107,112,109,111,107,106,99,94,113,102,99,102,114,109,106,97,108,100,105,107,99,117,99,115,111,114,108,110,116,100,99,109,111,106,95,110,90,107,106,101,100,110,104,99,105,111,105,102,102,112,108,104,113,110,117,89,129,105,101,107,102,100,105,103,112,110,106,113,105,112,95,117,102,106,112,112,119,105,112,101,105,96,113,105,105,106,113,128,126,88,106,107,100,106,101,103,99,142,113,103,121,102,94,118,117,105,112,102,121,113,108,107,108,114,104,114,104,108,121,107,93,112,88,92,110,104,116,99,109,130,119,106,100,99,125,105,100,91,97,102,110,111,91,113,97,99,111,94,113,105,91,107,111,103,109,109,92,114,119,95,104,111,99,91,97,110,110,111,116,87,103,96,105,113,116,116,110,123,109,106,107,115,109,93,111,109,99,103,111,98,100,110,95,109,112,109,108,86,104,109,105,116,113,103,96,104,121,102,120,108,105,110,108,98,106,124,85,108,102,106,112,110,97,89,104,107,120,94,100,117,110,114,115,116,114,109,101,106,111,102,106,110,98,107,100,100,114,118,110,107,117,96,87,99,102,112,99,110,100,100,111,113,104,108,100,103,98,103,113,116,116,95,107,112,101,100,99,100,109,121,104,96,106,119,104,105,99,107,93,106,91,95,107,106,100,88,94,106,99,113,98,107,105,123,111,107,118,121,106,109,119,104,105,91,68,102,91,100,105,107,103,110,104,101,94,111,108,91,99,124,95,86,103,94,95,101,100,120,109,105,107,98,101,113,101,109,103,103,107,99,105,111,116,93,101,103,108,93,116,109,99,112,100,110,103,101,108,102,99,101,106,100,102,80,108,113,108,103,102,107,113,96,102,97,108,97,108,116,97,102,109,101,109,102,89,101,108,99,112,96,105,114,108,109,105,108,98,107,99,97,103,115,98,110,111,104,98,109,102,114,105,99,107,105,98,97,112,102,112,108,103,115,103,102,103,105,111,105,101,96,120,115,106,99,108,102,109,117,115,102,102,109,95,115,97,102,103,106,108,117,107,106,101,95,109,103,104,105,96,105,106,110,112,107,93,100,104,117,111,86,109,109,105,108,96,104,114,108,102,92,104,101,108,115,111,112,92,108,108,84,98,109,106,109,105,115,107,112,91,110,108,104,98,110,98,106,101,100,103,108,108,110,104,114,97,107,118,106,81,106,105,105,109,108,99,111,109,112,107,109,102,101,104,105,113,107,107,98,106,93,117,99,100,109,116,104,106,104,103,104,103,110,107,89,117,96,102,94,114,111,137,106,109,92,86,90,121,109,102,112,108,101,103,115,108,106,116,99,97,111,112,96,97,111,105,107,107,110,104,116,99,113,113,94,104,99,115,106,118,100,107,108,95,94,94,89,110,112,100,98,98,94,114,109,128,99,113,113,120,112,124,100,111,108,95,111,103,107,95,106,108,106,105,103,102,99,99,111,102,109,119,99,112,109,102,86,107,108,103,106,92,117,111,116,101,107,102,100,97,108,108,105,113,101,99,93,105,102,107,100,93,109,85,106,110,102,108,109,99,107,110,93,110,112,91,102,112,100,105,104,101,111,114,101,92,93,96,106,91,106,112,104,94,110,103,117,102,102,101,84,113,102,114,116,110,99,108,118,103,101,104,92,108,100,102,99,113,106,106,102,104,99,97,98,105,108,101,99,102,91,103,90,114,89,104,112,94,99,102,103,99,104,101,89,100,97,110,115,95,88,104,91,114,107,113,102,110,95,102,104,103,105,93,110,102,101,107,98,98,99,103,101,109,104,99,96,102,96,108,102,100,109,107,111,112,114,112,106,104,97,99,102,101,98,116,108,101,97,112,102,96,109,96,113,99,98,102,100,101,96,103,104,110,102,109,108,111,103,102,102,94,108,100,101,115,110,107,113,102,91,110,105,113,95,94,105,104,106,102,117,102,115,92,110,103,99,89,99,106,110,108,100,93,99,115,99,106,85,94,95,110,108,106,96,114,105,97,108,108,102,103,100,99,104,102,102,109,94,118,109,100,105,110,108,113,101,113,100,107,105,99,101,105,101,109,104,101,89,99,102,107,91,107,97,108,90,105,108,105,103,103,102,105,102,97,95,98,105,95,110,78,103,91,116,117,104,97,94,92,112,110,106,103,95,103,92,88,110,102,106,96,104,110,90,104,112,98,100,95,89,113,102,99,106,96,109,112,101,105,98,99,111,111,99,102,107,105,91,129,110,111,104,123,95,97,91,105,101,87,87,104,108,109,104,110,114,100,100,94,102,85,114,83,105,93,107,118,95,98,88,111,91,106,110,82,90,89,127,107,107,98,100,95, +551.82605,100,106,101,107,98,115,115,109,109,73,109,98,95,104,113,100,99,108,106,132,108,109,99,113,112,116,98,111,103,96,95,113,118,103,107,96,100,110,103,95,100,105,113,85,111,111,108,110,108,107,101,102,118,103,99,107,82,111,113,97,113,103,100,99,119,111,91,108,95,100,98,98,107,96,100,104,104,109,117,108,124,101,100,102,105,93,99,114,103,100,88,112,104,108,90,121,98,122,90,109,113,112,101,108,112,91,95,108,110,109,96,112,106,95,107,101,106,96,108,108,107,100,106,109,108,119,109,104,118,104,111,104,103,100,110,113,93,104,109,113,97,108,112,107,103,107,107,116,101,113,95,115,117,96,113,100,113,112,103,98,109,106,101,104,108,109,90,101,103,108,105,106,104,112,117,107,125,106,106,97,92,101,103,113,101,106,113,92,83,119,107,107,110,102,111,112,116,91,99,112,99,101,107,111,114,105,103,113,120,105,106,118,102,107,97,94,108,109,89,98,100,115,99,108,106,108,108,112,111,97,113,105,106,103,114,115,92,117,111,99,107,103,123,108,100,108,103,116,126,103,108,105,105,109,111,115,97,108,117,97,92,104,110,114,86,110,113,98,106,104,98,109,100,90,123,101,101,117,103,102,79,108,94,108,107,109,108,121,104,103,110,103,96,106,107,112,120,108,115,93,115,104,104,115,101,117,98,110,120,109,86,117,107,116,112,109,107,110,106,107,113,103,119,95,104,104,106,112,112,100,99,91,107,95,101,95,104,99,109,103,109,99,111,98,117,103,108,118,108,108,114,106,105,103,118,97,108,107,111,100,106,108,109,103,101,91,115,106,100,112,117,107,117,118,126,98,103,111,99,111,106,114,102,111,106,103,103,106,95,104,107,87,104,113,104,119,104,112,112,111,105,103,102,107,99,106,92,103,116,112,114,117,117,103,96,100,105,99,109,105,111,108,88,101,108,97,110,99,109,107,106,110,111,118,106,116,113,108,104,102,100,104,103,104,95,85,114,79,98,107,102,101,116,112,101,97,105,103,108,104,98,122,119,95,103,90,104,116,109,107,107,113,111,104,101,114,112,100,101,103,101,111,108,91,110,114,107,109,117,95,108,134,108,79,87,107,105,107,128,91,110,103,104,106,91,106,133,108,104,101,106,111,108,113,105,125,108,114,114,103,107,104,93,95,99,109,109,114,98,118,108,108,118,94,107,115,114,97,124,109,106,112,105,95,111,103,104,99,112,95,112,99,119,99,105,97,103,108,109,101,110,83,82,99,103,108,106,103,104,107,102,110,103,113,103,107,111,107,106,115,112,119,117,99,96,104,102,103,114,99,102,109,101,113,106,101,105,106,92,118,95,108,108,115,86,101,99,102,110,104,91,105,94,109,111,95,103,100,99,107,105,108,107,106,103,108,100,105,113,107,117,106,103,107,107,106,106,110,108,113,123,113,103,99,107,113,107,110,110,115,103,99,110,103,99,107,108,113,108,107,116,103,120,104,96,106,103,121,103,117,99,114,116,106,101,89,95,99,105,102,110,95,107,93,95,106,102,120,103,110,105,107,102,98,108,102,106,112,93,95,108,113,112,115,95,110,106,108,103,98,106,101,116,103,110,95,102,102,108,130,95,106,105,88,99,120,107,102,106,113,108,107,107,96,98,105,89,105,110,110,90,105,104,107,110,114,103,114,98,111,110,93,107,118,89,97,99,103,110,98,98,106,102,109,106,113,95,114,111,104,105,121,121,101,104,122,126,117,103,105,108,112,123,102,103,92,95,103,102,104,104,117,112,114,103,116,99,112,106,105,109,107,106,105,126,107,94,111,104,100,122,91,110,105,106,106,108,117,110,103,102,124,96,95,101,109,112,116,111,101,109,107,111,105,104,115,113,111,90,110,114,104,116,105,106,104,91,94,107,96,99,104,112,107,102,121,104,113,112,108,74,70,125,113,110,81,95,106,112,107,108,117,107,98,104,106,101,94,113,107,111,103,107,103,102,116,104,113,109,107,113,111,114,117,120,126,112,107,111,102,105,118,107,104,111,115,115,109,110,84,92,106,105,113,109,113,111,124,109,115,126,107,109,92,126,105,110,112,109,117,105,107,104,93,96,108,104,98,113,97,101,104,108,99,102,108,105,118,117,107,105,111,103,106,110,108,113,115,106,103,109,92,114,110,107,91,107,107,108,99,112,103,106,100,100,96,120,110,95,109,97,108,105,109,105,103,104,111,115,105,79,100,113,104,99,107,117,113,108,102,102,102,103,110,113,108,100,86,94,109,105,105,111,101,115,116,105,113,111,102,114,121,107,112,94,109,102,102,120,99,109,114,116,113,89,102,114,108,107,111,114,110,121,129,113,111,129,121,120,128,125,120,122,125,120,115,102,100,122,105,109,108,104,90,102,102,117,107,115,111,110,112,110,109,110,102,111,102,105,120,103,104,112,117,104,108,119,98,113,111,112,98,111,100,99,100,104,96,112,122,109,109,107,102,97,108,112,100,112,117,102,113,114,116,108,121,99,112,104,110,123,104,109,110,103,116,107,106,108,91,108,108,102,108,109,108,101,114,97,98,91,103,95,104,102,97,109,100,103,99,84,100,109,107,112,101,101,91,105,106,105,102,103,94,113,109,95,97,111,80,105,103,87,106,108,108,120,100,105,106,104,107,101,105,115,103,113,102,94,114,106,110,110,111,90,99,100,100,111,108,105,108,108,112,112,117,116,110,101,112,105,120,100,101,103,106,120,106,111,100,105,112,107,108,103,105,83,113,117,110,99,101,102,95,113,98,106,105,117,95,117,95,100,98,107,108,121,97,99,98,107,102,106,107,107,105,102,108,100,103,104,100,104,105,96,109,99,121,105,102,92,104,123,111,102,98,104,100,103,128,106,111,108,98,104,98,113,122,116,101,107,103,104,87,97,116,88,105,106,108,117,123,95,113,105,105,100,109,108,105,94,100,91,91,118,111,96,117,103,117,106,108,113,106,108,107,104,98,96,107,105,105,99,117,103,110,108,111,102,100,113,88,111,108,109,100,104,102,107,103,113,115,93,103,99,90,109,103,113,104,111,103,104,105,107,117,113,92,102,106,105,100,106,107,113,113,107,109,96,101,98,98,109,85,106,96,100,99,107,91,100,99,109,112,105,108,104,103,111,109,116,100,99,100,114,112,103,98,106,96,103,101,106,100,104,97,101,109,106,116,100,107,104,107,112,96,110,95,110,91,93,97,102,102,109,109,110,109,94,103,108,110,110,108,115,113,98,104,105,99,113,104,100,112,132,109,109,103,105,112,122,118,103,102,109,101,108,99,98,106,106,108,91,99,95,99,117,102,120,105,98,111,103,103,104,118,116,126,108,96,107,106,103,99,106,109,105,124,111,113,100,105,102,99,103,109,100,103,107,108,101,104,100,99,92,109,109,110,98,106,118,109,112,100,108,105,96,100,99,93,115,113,111,106,115,113,112,101,106,102,96,109,108,108,115,111,113,109,70,103,105,104,96,100,114,99,105,110,104,112,106,106,106,106,112,108,108,102,116,79,109,106,106,96,101,101,100,110,98,109,100,103,104,107,103,104,117,106,105,104,92,102,102,106,121,110,114,101,107,102,72,102,109,108,106,99,106,94,101,107,96,106,99,109,98,98,103,102,104,112,116,112,101,96,84,86,91,98,107,110,105,106,105,70,101,109,110,107,112,104,109,99,100,107,110,109,105,103,105,103,109,102,100,97,104,103,113,104,108,95,106,98,101,116,91,97,101,108,106,97,108,106,96,101,111,95,100,108,98,104,103,116,99,99,98,94,112,123,107,99,107,106,103,90,96,112,108,102,107,103,102,102,99,108,111,106,102,122,107,108,100,107,112,100,99,97,101,99,109,99,101,103,108,112,114,123,109,96,104,101,121,107,121,113,104,107,93,104,99,112,113,105,98,108,101,100,114,115,107,104,97,102,104,107,110,110,102,111,96,109,100,110,107,112,110,100,113,100,104,104,119,101,106,107,104,118,107,121,99,97,114,102,96,96,105,108,101,94,107,98,103,121,105,105,112,108,107,104,102,98,106,112,102,99,104,107,105,128,98,100,116,101,97,110,106,106,127,112,109,112,101,100,101,115,113,95,105,112,96,102,102,110,94,106,112,101,96,110,92,92,95,107,98,94,106,100,101,138,117,108,101,106,109,107,109,114,105,113,103,106,106,102,109,108,97,102,107,103,104,88,107,113,106,103,101,103,96,95,113,90,108,108,97,102,119,98,100,107,108,109,100,106,95,109,107,98,107,103,100,110,125,111,109,102,94,100,108,95,99,110,110,95,110,110,102,101,115,99,104,92,102,104,116,110,112,107,107,108,110,111,100,122,109,112,111,98,99,102,112,94,98,103,105,92,105,108,99,116,112,89,104,95,105,107,103,109,109,103,105,117,106,111,103,112,112,98,101,112,104,108,96,106,98,110,146,97,98,95,109,102,101,102,99,112,105,107,110,97,115,111,99,90,102,107,111,100,99,98,97,111,109,107,111,101,104,104,103,102,98,119,95,104,105,98,101,81,117,108,104,93,104,80,91,107,114,101,96,101,101,117,113,102,102,103,99,109,106,118,99,106,106,105,91,102,111,102,115,92,117,109,99,108,117,104,100,111,96,103,121,109,105,104,91,101,95,139,108,109,104,102,95,119,121,114,106,96,109,97,100,106,106,100,94,92,100,101,100,90,99,111,99,80,104,110,94,79,102,107,114,105,105,103,106,109,98,103,102,95,103,103,113,98,102,97,95,100,99,100,98,104,103,90,90,113,112,91,90,113,107,116,110,105,101,102,104,111,98,102,113,104,99,98,106,94,99,99,98,100,108,101,118,96,99,83,90,110,95,96,111,104, +551.96692,104,88,100,94,102,109,97,99,100,99,92,110,99,112,99,116,111,108,113,122,115,112,104,100,105,115,102,91,110,115,108,95,98,88,108,112,103,110,100,95,100,110,104,121,96,112,105,106,101,96,93,97,99,122,104,95,101,91,108,105,80,106,91,104,103,111,96,99,111,93,97,103,103,98,100,108,100,105,114,93,115,99,116,97,100,106,98,99,104,100,90,107,104,94,102,97,103,102,108,108,106,94,117,89,111,106,112,110,96,95,99,88,106,113,91,109,92,98,105,111,97,94,104,96,103,109,108,105,107,105,98,105,109,111,100,106,98,107,91,100,102,99,102,99,100,93,92,111,94,98,113,99,99,112,98,101,99,103,107,99,95,105,95,112,90,112,102,105,106,103,105,96,93,99,106,105,115,92,106,99,100,109,110,117,103,71,79,90,103,113,99,100,104,112,113,105,99,105,100,90,102,92,110,110,113,112,104,115,99,102,102,104,97,101,103,107,107,104,102,92,101,103,92,103,82,105,104,110,97,100,97,104,91,112,111,105,118,109,107,99,100,103,113,102,100,99,100,114,104,95,101,102,88,109,101,111,93,103,100,105,107,109,98,109,95,96,105,104,95,98,101,105,102,116,104,106,99,101,105,98,102,101,111,103,100,109,87,113,98,97,98,103,107,96,111,101,99,99,106,108,127,104,102,100,100,100,103,96,109,102,101,105,108,96,95,116,114,108,87,80,105,111,104,112,110,109,103,103,95,113,120,96,108,106,102,109,98,126,105,109,103,86,104,106,104,107,99,113,101,79,112,98,100,107,114,108,109,105,108,94,103,105,101,108,72,108,114,87,108,104,102,125,105,122,102,109,106,109,104,107,106,108,102,102,105,104,109,107,108,99,114,103,102,111,99,104,101,91,106,118,120,95,104,89,113,102,103,104,117,93,90,105,103,99,111,104,108,103,111,103,98,97,105,107,101,97,108,100,101,104,98,118,115,108,95,112,101,106,100,105,105,109,107,101,99,109,103,97,97,107,113,102,105,107,105,113,107,97,114,121,108,99,104,99,106,112,99,104,113,107,101,120,101,98,97,100,109,115,96,114,100,94,107,113,100,95,103,102,105,99,109,107,100,115,99,117,105,118,116,98,100,106,112,117,97,111,98,109,101,113,125,99,102,110,106,100,103,106,114,103,116,113,117,114,118,103,110,108,116,104,110,107,104,103,108,101,114,107,99,108,108,106,103,106,108,103,110,96,103,103,103,111,108,96,108,109,111,109,77,107,108,109,104,100,104,109,111,113,114,109,106,106,102,96,100,118,93,105,98,105,100,121,103,98,99,106,98,113,106,105,111,104,91,109,109,102,103,107,113,100,122,107,112,107,102,105,99,112,95,88,107,93,109,99,112,95,106,101,115,100,101,116,111,108,110,115,112,102,98,101,97,100,102,105,104,99,112,99,113,112,96,96,117,113,89,96,104,90,122,104,100,106,113,112,97,100,98,98,111,118,109,92,108,109,103,106,112,108,107,107,106,108,103,104,113,102,113,109,112,106,112,105,105,82,105,95,100,95,101,91,112,99,90,109,95,110,113,102,99,106,109,102,104,93,116,125,108,102,106,124,109,104,104,96,98,97,102,107,109,105,106,101,110,101,98,104,106,119,104,100,108,114,100,90,105,109,98,95,106,101,84,93,98,105,114,93,99,98,102,104,104,113,114,95,113,103,122,107,105,104,95,110,95,112,109,105,95,97,110,103,102,97,108,94,96,112,111,95,110,94,96,109,91,100,103,98,110,103,104,116,109,93,106,100,97,107,109,101,105,108,74,99,110,98,107,111,99,107,115,103,110,98,102,137,117,108,101,109,108,113,100,100,102,105,97,110,109,105,105,105,97,105,112,106,105,98,122,112,113,106,106,108,103,100,100,98,103,109,108,117,117,108,108,111,110,108,108,105,96,104,112,108,97,114,105,112,100,113,99,105,105,104,98,105,93,102,119,101,110,96,109,97,87,109,107,101,100,112,106,103,101,131,111,94,102,95,129,81,100,113,105,109,109,108,114,101,99,103,114,110,108,92,136,115,110,96,105,111,98,98,101,117,118,111,108,101,106,99,102,93,120,115,100,103,94,109,103,117,112,104,102,97,107,105,106,105,104,112,104,120,98,93,109,97,108,102,99,99,110,112,103,115,109,97,105,103,91,114,104,97,109,105,93,102,100,98,104,74,103,111,103,98,103,104,114,99,100,108,101,109,111,105,94,114,92,98,81,112,110,105,98,105,99,114,112,107,107,111,91,105,110,103,113,108,99,103,108,99,112,109,110,104,109,101,102,100,99,101,112,92,104,112,110,113,111,91,118,115,119,116,106,110,121,128,123,129,132,121,132,130,110,110,118,106,99,106,118,125,104,108,115,117,103,109,116,87,90,111,113,111,104,115,104,116,118,113,98,113,102,109,121,95,102,106,107,91,107,95,103,111,112,106,101,105,111,108,106,101,112,103,100,95,117,86,110,100,127,103,113,100,107,111,96,106,100,93,107,92,104,106,99,94,103,102,100,109,119,101,110,93,106,103,115,113,103,110,95,110,101,90,100,99,106,109,101,99,104,105,101,113,106,112,107,107,97,105,106,131,91,108,104,121,96,98,121,121,117,98,102,102,106,104,110,109,131,105,109,105,114,110,106,101,113,94,95,113,114,107,106,111,97,104,104,111,102,101,98,111,108,102,105,88,105,117,106,107,105,109,100,111,116,104,104,102,109,106,106,119,106,99,106,121,100,106,105,98,108,103,121,116,110,108,104,106,101,102,107,103,101,113,106,103,105,105,105,98,111,115,107,105,114,99,102,105,110,95,104,112,106,110,106,111,95,114,115,116,105,106,101,112,106,107,117,112,103,110,99,109,92,100,113,104,99,99,95,110,106,101,113,102,104,119,96,97,106,108,97,110,103,96,100,109,105,121,102,89,108,102,107,106,106,103,94,106,113,103,95,120,111,97,111,103,100,120,105,107,101,112,113,101,112,93,103,94,103,108,108,116,90,108,91,100,105,103,122,101,109,105,120,104,102,112,112,92,100,102,105,119,121,88,112,117,112,108,100,98,111,109,109,96,98,95,95,106,106,104,91,102,104,108,110,107,92,100,108,93,108,119,107,103,101,107,111,99,100,109,103,106,105,114,112,98,100,108,109,101,107,113,106,103,99,102,98,103,112,100,106,94,101,106,108,116,93,105,94,104,107,99,111,111,104,105,99,109,96,99,117,103,108,111,99,108,106,105,106,110,112,102,112,99,105,105,93,95,98,102,105,113,110,109,101,100,104,92,105,105,108,111,91,115,103,107,102,109,117,95,114,105,116,95,106,114,101,121,105,101,103,117,103,108,94,111,100,117,105,104,105,102,106,104,110,104,109,103,104,99,117,100,112,105,98,108,106,108,113,104,110,117,103,107,105,109,104,112,97,123,97,106,97,108,101,99,91,111,101,114,100,108,118,112,103,109,108,106,103,111,112,113,96,117,106,108,105,105,109,113,105,107,99,106,117,107,105,113,102,107,97,106,103,112,95,119,97,111,102,110,107,102,100,99,100,104,105,113,109,115,116,102,104,112,96,102,117,101,104,94,106,106,109,104,97,116,102,113,109,111,102,113,112,103,106,109,110,125,100,109,95,110,113,107,102,110,108,128,98,121,109,110,105,99,109,111,119,105,100,101,100,97,105,107,96,105,110,111,107,128,112,102,104,108,106,96,96,102,115,107,100,111,112,95,109,102,104,113,105,105,106,109,112,102,102,108,103,99,113,109,101,105,101,101,111,103,117,101,116,100,104,111,100,104,96,113,104,109,108,94,112,105,118,103,98,104,97,102,109,102,98,109,109,95,82,115,106,102,105,86,120,99,87,95,105,115,96,87,112,104,107,98,116,112,98,93,109,104,102,106,104,118,106,101,95,96,110,110,104,101,111,121,98,110,102,125,99,108,108,87,98,103,108,109,103,98,98,106,111,109,104,107,112,120,119,108,103,103,104,98,125,109,99,98,119,113,87,95,100,115,104,95,112,96,102,94,112,104,106,100,97,113,100,91,96,103,97,109,112,117,97,118,98,99,107,108,109,116,111,103,110,91,113,100,89,89,108,114,113,110,106,100,109,110,109,92,104,92,106,104,117,108,101,105,101,98,106,111,100,112,96,104,106,102,101,115,101,104,106,101,103,107,101,103,97,104,106,99,95,102,102,114,96,97,96,105,97,113,108,100,101,121,106,118,102,114,118,101,99,108,105,88,95,99,109,103,105,98,99,104,110,103,109,109,109,101,104,96,105,102,102,107,113,117,120,97,108,108,106,99,115,105,106,109,102,113,112,107,97,113,105,108,107,98,92,102,102,106,108,108,109,98,108,105,106,88,118,102,98,105,103,97,111,110,110,106,119,90,99,115,103,95,108,105,102,101,103,101,121,69,116,99,101,125,98,104,106,113,106,110,101,105,120,111,91,98,104,106,112,99,112,99,91,106,107,105,104,102,98,107,111,102,110,100,85,102,99,112,87,120,100,84,83,105,101,101,105,91,103,114,103,102,96,110,110,102,107,106,91,83,109,99,99,104,115,117,104,106,103,105,92,106,103,104,110,108,105,111,100,106,103,91,106,86,96,84,97,99,100,101,103,83,104,95,110,94,109,105,106,104,107,106,103,105,119,105,102,106,104,101,102,97,91,116,95,90,104,112,92,106,106,104,125,101,98,105,100,100,96,99,101,104,99,105,104,94,83,104,108,102,135,98,96,107,102,104,104,99,109,107,114,107,97,97,105,86,102,102,111,108,113,108,98,112,109,105,104,107,128,101,94,97,101,100,121,95,122,84,107,109,103,121,99,97,115,67,65,102,106,103,122,111,118,117, +552.10779,99,103,104,91,86,100,100,103,120,103,104,94,100,103,73,99,108,100,106,102,94,93,116,112,98,102,118,96,112,98,99,108,102,100,77,101,106,98,115,104,109,108,100,103,107,125,94,94,98,112,100,103,105,92,104,104,93,97,108,95,116,103,122,103,104,120,84,106,96,98,109,95,96,93,119,118,111,108,116,102,114,103,109,95,109,108,100,107,103,105,101,98,114,113,110,107,99,98,97,108,105,97,108,102,114,96,104,103,109,108,106,101,105,100,109,108,106,109,97,106,100,105,110,112,103,107,113,98,98,106,112,114,92,113,90,100,112,98,92,105,104,114,99,92,103,108,112,81,92,116,96,97,107,105,93,94,112,90,105,97,109,107,103,110,101,96,106,107,107,110,112,122,98,99,109,105,96,97,110,108,106,108,107,112,103,93,104,93,97,101,100,104,106,98,117,103,98,96,103,101,99,97,87,107,109,112,101,109,107,109,94,102,115,100,104,95,106,112,104,102,102,100,103,107,102,114,99,103,113,105,108,108,99,123,105,97,117,108,103,96,104,101,112,103,100,94,108,99,110,105,106,112,105,107,92,96,111,114,108,91,94,95,104,93,99,114,116,98,107,113,109,103,105,89,104,97,101,101,113,110,99,106,105,98,108,107,102,99,105,103,106,100,118,98,108,106,107,110,104,112,104,109,97,125,109,109,117,110,110,96,101,111,103,109,102,112,115,103,99,103,96,101,112,96,101,105,99,98,102,114,103,103,99,103,100,100,103,107,88,101,96,100,100,102,104,107,106,109,102,111,90,86,96,124,110,105,102,105,104,109,99,98,97,103,104,112,99,113,117,109,109,113,101,99,110,95,104,97,108,112,106,110,106,112,91,104,108,99,100,92,112,99,101,109,102,104,102,98,97,108,100,97,106,96,116,103,102,120,130,95,98,112,99,109,102,107,103,93,116,95,109,105,98,112,106,95,118,88,103,104,98,110,111,90,99,121,113,107,101,103,110,102,97,142,101,104,105,112,95,84,105,109,106,107,119,100,107,105,86,102,114,105,107,96,114,110,102,102,104,104,100,117,104,103,103,110,102,102,93,100,108,104,114,108,110,101,112,108,108,96,110,113,107,100,104,85,92,105,109,87,110,104,99,110,96,115,101,102,99,103,106,105,107,108,109,100,110,119,114,108,104,113,116,97,108,119,113,110,102,114,103,106,106,101,103,108,110,112,114,92,98,107,85,104,108,100,105,108,113,96,118,96,108,108,104,103,121,102,116,104,110,109,90,104,103,114,109,116,101,108,110,99,99,100,108,100,97,108,103,109,107,115,111,100,114,98,119,117,106,93,103,100,104,108,99,112,99,109,106,106,107,106,107,105,82,111,104,102,99,115,100,104,95,108,108,109,104,106,103,120,104,95,116,102,108,110,114,117,103,105,105,106,99,101,108,103,102,103,98,109,109,108,101,100,101,104,95,102,103,112,96,95,105,109,109,111,95,117,102,96,110,104,111,106,107,102,104,111,100,101,108,98,110,119,111,100,77,109,104,114,106,112,116,100,109,107,94,106,101,105,115,113,102,103,106,110,101,99,112,99,106,100,106,108,116,117,106,113,108,106,111,108,91,108,110,112,102,119,110,103,92,91,105,110,99,83,111,83,106,108,91,100,107,97,95,99,97,100,102,105,102,99,115,108,106,109,67,114,66,107,106,100,107,105,111,120,108,96,115,98,105,110,97,103,106,104,104,123,117,94,100,116,113,93,115,111,117,105,119,112,113,118,101,103,100,109,112,125,98,107,106,109,103,106,105,122,113,94,111,109,115,96,106,112,107,108,85,113,117,102,103,113,94,95,117,111,110,104,110,93,114,103,78,116,104,104,114,102,100,108,103,108,111,97,107,107,117,107,95,111,106,110,114,104,122,105,108,111,104,94,109,101,105,108,102,104,117,101,103,107,110,109,96,100,109,100,84,105,106,104,111,100,104,113,110,106,100,111,109,100,109,121,96,104,99,102,101,117,120,113,112,115,95,116,87,99,102,96,104,110,99,109,109,109,108,104,95,100,102,107,101,109,113,88,104,93,104,110,109,111,105,107,108,102,115,96,122,106,108,91,88,105,99,111,105,97,102,107,109,109,109,110,94,101,110,98,120,115,112,120,113,112,136,99,78,97,104,96,110,97,104,106,129,111,100,109,105,96,109,109,95,113,109,101,109,109,115,106,121,104,99,106,103,105,108,113,99,91,108,99,100,122,109,103,103,95,104,100,107,99,102,109,103,121,125,114,110,103,99,100,104,120,104,104,92,111,104,108,100,109,118,104,107,94,102,101,111,97,103,95,100,102,105,112,104,87,121,114,121,108,119,122,124,113,124,124,120,132,114,119,135,131,121,117,115,123,118,110,102,108,104,91,106,101,114,107,113,97,93,113,103,114,110,117,107,103,109,105,105,114,97,102,106,97,110,115,105,87,120,101,111,101,93,107,96,101,105,105,99,107,113,98,108,95,103,102,96,103,102,105,102,101,111,103,100,108,85,91,102,110,98,102,109,94,104,114,96,103,95,106,99,102,109,87,100,107,103,107,100,98,100,101,99,109,95,130,92,102,111,104,113,113,132,92,109,92,123,110,100,103,100,97,104,98,105,108,96,108,101,101,100,101,99,109,110,103,95,106,107,99,102,101,103,111,64,100,110,109,106,100,102,102,103,100,102,104,106,95,109,110,104,106,106,107,99,104,103,104,107,95,101,106,106,104,115,98,99,106,105,110,103,111,104,107,128,107,95,104,109,87,107,108,106,95,109,121,105,100,114,100,117,101,105,95,101,106,105,100,111,106,109,103,102,111,97,115,102,103,109,109,103,106,109,104,109,105,111,102,104,102,86,102,101,101,106,105,98,106,103,112,98,109,114,109,114,102,105,108,96,104,109,116,99,107,108,107,106,108,110,107,121,118,101,102,85,95,109,107,95,107,102,101,111,104,103,109,117,94,112,109,114,114,104,100,103,100,103,120,102,89,111,103,104,117,103,118,106,109,111,99,113,100,113,109,101,98,103,110,107,116,104,98,95,85,91,106,105,109,101,110,101,77,102,103,113,101,101,108,116,106,93,102,106,113,101,116,112,112,101,100,101,99,109,103,103,101,110,100,107,108,90,92,102,95,100,110,98,109,93,100,115,109,85,105,108,107,108,110,118,102,100,93,94,106,102,96,105,109,106,115,110,105,107,89,100,113,104,108,126,115,107,99,114,102,112,108,100,105,105,92,98,95,102,94,109,100,94,102,112,96,100,102,106,111,101,112,105,103,111,106,105,103,101,113,117,100,106,96,106,115,95,102,91,104,99,96,112,98,115,112,105,109,101,119,102,104,114,104,99,113,111,103,109,103,105,101,113,105,113,97,105,118,102,104,100,101,106,113,101,102,100,113,98,107,112,108,101,96,91,91,107,109,102,113,107,107,102,98,97,111,104,113,110,95,113,108,103,103,99,95,106,105,99,102,108,108,93,108,103,111,112,97,94,110,100,108,101,103,102,111,103,113,107,106,106,117,106,106,99,76,101,113,91,93,92,107,102,90,102,108,114,93,103,115,108,95,108,99,104,117,98,87,124,99,106,102,94,120,101,115,103,102,108,98,102,101,107,105,111,116,98,101,116,108,105,93,105,103,120,103,107,96,103,102,108,108,103,118,107,104,100,102,103,114,107,108,110,105,106,110,113,107,140,97,110,100,107,105,104,93,101,105,103,104,106,109,112,110,115,104,103,98,109,106,103,95,112,87,76,123,107,106,105,111,105,108,99,106,99,103,108,102,115,111,99,113,69,106,97,110,97,109,109,97,101,111,106,101,113,112,110,110,112,110,106,109,95,115,105,106,94,101,88,117,112,107,111,97,104,93,88,105,99,100,99,102,113,101,113,115,98,97,106,101,102,109,127,105,97,103,97,111,106,107,97,91,92,93,92,109,96,106,106,105,110,103,102,112,94,105,98,83,113,111,118,91,105,94,109,106,106,99,118,108,128,96,105,110,127,108,112,110,94,105,111,99,104,113,109,106,112,98,115,101,92,115,115,102,109,102,98,98,91,112,109,108,116,99,110,113,87,107,115,110,121,121,122,104,113,114,111,87,108,98,109,118,96,99,109,118,106,109,102,95,96,101,101,103,103,113,126,113,110,102,105,106,105,105,104,96,107,107,101,100,101,100,104,96,101,99,106,98,108,98,100,94,128,115,103,109,113,124,92,97,105,104,124,107,108,93,107,100,107,120,98,107,106,100,109,108,103,107,107,96,109,102,105,97,98,114,109,105,102,105,105,101,106,104,95,114,107,99,110,110,99,103,110,100,107,101,105,110,107,111,88,104,111,92,100,100,105,100,105,96,106,103,115,106,103,101,97,115,101,97,97,102,96,104,106,103,109,110,105,101,100,109,105,107,111,116,106,113,108,107,99,101,104,115,103,92,110,87,94,105,105,112,95,107,94,113,100,98,99,107,101,108,94,100,94,97,103,105,103,100,105,110,103,98,100,93,101,93,105,100,109,98,101,101,110,94,104,106,113,98,104,100,105,100,99,106,87,103,104,94,96,107,106,92,108,120,98,121,94,119,92,97,104,104,101,107,103,104,103,102,102,94,109,105,106,94,92,113,124,102,94,101,106,109,102,89,96,98,111,104,112,96,103,93,98,97,116,120,117,106,118,128,113,108,112,91,100,95,101,105,112,96,105,102,104,113,104,97,99,106,106,113,99,112,96,109,96,94,106,108,113,112,106,93,92,111,109,91,103,97,107,102,119,103,106,117,112,109,116,101,118,114,120,98,101,119,96,108,107,102,95,109,67,87,108,91,123,95,99,82,119,107,86,106,114,96,107,98,97,99,100,102,107,106,101,97, +552.2486,117,110,101,93,101,113,108,112,84,115,110,98,102,112,92,100,91,88,116,107,99,107,100,105,93,108,113,102,99,104,108,105,91,112,105,103,104,97,103,101,101,103,92,108,89,105,97,95,96,87,108,104,101,111,92,99,104,121,121,92,107,113,95,98,102,115,79,114,88,97,83,104,101,97,108,100,105,94,117,96,116,81,95,104,106,105,117,100,108,101,101,107,100,110,88,123,94,107,104,105,118,101,95,112,97,105,100,96,110,86,132,111,86,98,97,108,105,108,90,112,103,108,120,109,96,111,102,100,96,121,94,108,96,110,112,117,96,88,104,101,73,68,108,100,100,101,102,94,98,100,99,97,113,99,88,117,105,90,105,110,98,91,112,126,111,106,99,99,101,111,92,118,105,108,91,111,117,105,113,114,105,101,111,99,98,100,100,93,108,92,102,107,113,100,105,98,118,95,91,105,106,98,103,103,109,107,98,111,107,107,107,122,103,112,123,103,100,106,103,101,102,110,108,87,98,104,105,98,111,104,103,97,98,104,100,116,106,100,98,121,103,104,111,95,105,99,104,100,104,108,114,95,111,102,96,112,107,117,106,75,101,102,107,108,92,111,116,105,109,105,86,98,117,106,96,103,118,98,105,95,100,106,99,105,108,105,106,109,108,104,106,102,104,104,112,101,104,95,100,99,100,105,105,99,112,108,101,119,115,103,104,109,105,109,104,91,111,119,99,100,102,101,105,113,111,106,108,117,95,115,105,104,104,116,102,101,111,101,103,113,105,107,112,93,105,113,100,110,107,98,102,113,104,108,99,104,108,111,108,107,109,105,99,99,92,74,98,117,109,106,112,96,103,107,100,104,114,99,100,103,134,111,111,99,100,98,99,98,115,100,119,105,92,111,105,112,111,97,95,105,111,111,105,105,100,107,106,105,102,106,91,110,98,122,98,104,129,99,116,95,99,98,100,97,97,104,95,102,101,110,96,99,110,106,110,101,91,114,104,108,99,101,103,126,110,116,104,105,110,103,108,120,114,106,113,109,78,114,112,93,119,109,117,109,103,114,113,100,117,94,102,112,102,107,116,92,105,114,107,104,99,98,113,103,109,101,113,112,106,114,109,108,120,99,90,96,117,98,110,101,108,111,105,110,108,106,105,102,114,100,104,101,106,103,103,94,109,102,96,102,103,110,113,102,101,102,103,107,107,100,116,93,109,98,114,113,112,99,102,110,112,108,75,104,121,102,103,101,106,95,104,107,99,109,86,95,103,99,97,111,107,108,87,110,106,84,103,107,110,103,108,103,103,102,104,109,99,106,103,104,101,103,100,117,112,108,110,108,106,97,96,100,101,88,108,109,101,100,109,104,114,106,106,110,100,103,84,102,114,94,103,106,112,103,111,100,105,113,101,108,108,119,95,98,114,104,96,100,106,114,99,114,122,101,100,105,82,101,114,104,106,107,95,114,101,87,105,107,99,102,97,102,113,106,111,93,118,114,113,101,104,98,112,107,102,105,108,97,104,100,107,102,89,105,92,103,110,95,99,107,107,105,108,90,115,107,98,103,103,101,90,99,104,107,94,97,121,99,101,106,94,87,106,99,102,106,113,112,113,103,110,110,115,101,104,102,83,108,108,112,102,92,110,110,105,107,108,114,102,121,109,109,105,101,97,96,118,112,104,92,114,99,104,98,106,108,102,98,102,108,99,88,99,113,111,97,103,113,107,101,101,111,109,114,72,107,102,115,102,97,114,106,100,116,104,96,108,78,106,102,113,112,107,110,97,113,77,123,112,107,99,103,106,104,100,105,112,113,108,114,106,115,91,109,105,113,107,96,107,99,112,96,104,103,103,107,105,109,98,101,102,104,107,103,99,101,112,103,102,101,122,108,119,105,112,113,102,102,107,102,104,103,112,118,100,105,95,115,118,103,115,98,109,102,106,100,100,79,103,110,109,101,106,105,104,103,92,98,108,106,94,103,106,107,99,99,106,107,110,102,108,111,106,125,106,109,112,91,94,102,108,106,99,100,102,102,92,98,118,96,96,99,105,102,96,110,110,102,103,99,105,98,113,107,106,111,114,102,91,106,113,86,109,111,104,106,105,107,98,105,103,103,115,105,95,106,109,105,102,104,108,118,104,109,95,109,111,109,104,106,115,117,116,114,117,124,108,117,95,94,105,113,106,108,111,97,96,101,102,91,86,107,95,106,95,102,100,93,101,104,99,98,108,91,109,110,100,116,106,102,104,105,106,108,105,104,103,113,109,106,109,124,106,110,104,103,111,109,103,114,101,110,109,133,100,103,102,103,103,90,110,117,113,110,95,105,108,100,95,116,108,96,117,104,103,103,107,112,114,109,114,113,130,112,120,125,141,141,147,113,123,126,130,121,107,112,108,123,96,106,105,95,102,100,122,103,117,111,100,103,86,108,108,106,95,94,104,98,96,106,102,105,85,106,113,108,113,97,100,96,106,113,111,102,110,99,109,96,102,120,102,117,104,112,112,109,108,112,98,103,91,104,117,110,100,105,101,115,110,101,112,110,103,92,89,111,98,101,108,104,111,114,115,105,104,88,101,115,99,94,112,105,106,94,102,100,106,85,113,98,97,111,118,103,110,115,114,109,105,108,105,99,104,93,115,100,102,102,104,99,107,100,108,103,111,119,104,105,118,100,99,100,107,92,96,111,105,96,100,111,89,97,103,103,100,105,96,97,119,117,101,104,115,99,94,108,103,98,103,106,110,110,91,111,110,101,109,103,108,95,105,119,105,108,102,103,94,103,111,109,103,115,94,106,109,106,101,116,99,113,95,110,114,100,109,109,102,102,105,107,103,101,106,109,103,102,117,102,96,118,100,109,103,108,110,110,110,105,117,109,115,103,113,110,100,93,101,103,105,112,105,103,98,104,110,113,70,96,103,106,104,110,100,116,98,110,120,112,103,117,109,104,111,110,95,107,100,92,98,101,105,111,103,98,116,102,104,116,108,106,114,101,106,110,100,96,103,102,119,103,95,106,110,112,110,99,103,117,97,103,96,114,129,97,99,97,115,113,126,106,106,105,118,103,102,106,100,106,103,99,114,105,106,99,123,100,102,92,92,94,105,101,105,105,110,105,105,111,89,105,107,122,103,96,105,101,101,92,111,113,112,97,99,90,104,105,109,95,115,109,106,119,97,92,107,90,130,101,99,106,99,108,100,85,96,88,113,91,108,109,114,99,94,94,103,100,110,98,112,113,96,101,106,102,109,110,108,109,117,110,97,101,116,108,101,107,100,95,102,114,94,100,101,106,103,105,103,79,113,98,106,105,97,108,109,108,110,104,113,92,103,108,110,111,100,108,102,103,98,114,98,105,104,131,101,99,102,82,106,100,107,103,105,89,109,96,101,108,101,106,88,101,98,107,111,113,105,112,117,97,103,111,109,102,110,108,115,105,98,103,100,105,103,96,91,102,101,102,96,118,111,99,106,102,104,109,110,107,102,95,102,100,102,107,115,104,106,103,98,101,103,104,85,109,104,108,103,102,109,98,113,105,113,100,102,101,99,104,110,102,109,82,102,101,116,105,107,90,105,107,108,110,109,112,105,113,111,104,96,109,96,113,104,104,108,107,102,107,92,100,109,108,114,113,102,105,105,111,113,115,102,106,112,108,92,102,113,113,101,112,81,106,98,97,110,98,107,94,101,107,100,94,117,116,106,86,109,96,123,93,98,97,83,112,110,109,102,127,92,100,95,103,104,96,91,109,106,107,105,99,106,108,101,103,101,97,116,108,102,109,105,108,97,112,109,103,110,101,100,104,102,99,114,109,110,112,87,104,93,94,113,102,98,99,118,103,103,102,110,108,105,102,101,120,105,110,107,100,105,105,110,114,109,104,111,97,99,92,109,106,105,99,100,112,97,95,115,97,110,103,104,98,99,105,99,102,111,103,113,102,105,102,87,106,103,104,113,98,106,122,98,98,100,102,106,105,87,109,106,111,104,97,102,112,100,98,102,104,104,104,108,109,105,98,105,96,106,112,109,90,101,110,96,104,82,97,113,116,120,95,98,95,92,113,110,112,112,102,111,102,102,102,105,109,110,113,98,129,101,112,84,105,96,102,104,102,99,92,104,106,101,109,131,96,96,111,107,100,102,107,118,108,107,102,108,99,93,100,91,105,100,104,109,114,99,94,108,107,109,98,109,105,73,100,106,105,107,96,96,107,103,93,106,98,106,112,113,107,106,96,94,99,110,112,120,92,102,109,103,108,98,100,124,108,103,105,106,108,100,96,100,109,101,109,106,96,115,96,106,98,86,101,110,103,106,102,107,98,109,106,108,106,98,105,114,104,103,99,108,98,110,102,110,105,103,108,100,104,102,113,102,100,104,106,96,107,103,109,115,91,96,95,103,112,87,109,102,102,105,79,119,97,92,108,99,99,95,104,108,101,121,112,98,110,108,106,120,95,111,103,94,96,100,98,114,111,95,109,105,106,96,108,104,103,103,113,96,103,97,101,82,92,107,111,106,112,118,102,107,99,108,102,112,104,107,106,101,100,92,97,99,109,99,97,106,106,104,98,94,102,105,106,104,116,103,104,99,111,110,101,109,102,112,102,101,117,103,107,107,105,113,88,120,107,103,106,108,115,108,97,99,89,105,92,84,95,112,99,104,98,115,101,101,99,108,87,107,99,101,104,97,112,106,83,99,115,94,91,98,104,84,102,94,94,108,99,104,97,106,105,106,110,104,109,92,105,118,113,99,100,102,104,104,95,98,110,102,90,109,101,95,104,114,102,98,99,95,94,94,106,111,106,96,97,120,104,96,87,101,107,102,103,98,100,105,113,103,84,111,99,116,100,100,107,103,99,101,77,108,102,114,112,93,60,94,107,112,101,102,116, +552.38947,107,112,97,99,100,101,107,110,103,100,103,105,100,102,108,107,101,111,103,119,115,104,117,109,108,114,105,108,118,93,113,99,100,106,110,125,110,105,114,96,110,111,103,108,103,115,111,115,104,106,97,92,102,99,101,104,96,96,101,112,106,99,110,131,104,108,90,97,103,104,100,107,104,107,111,118,104,106,110,95,79,108,111,123,97,98,108,78,113,111,103,95,118,103,109,103,112,97,103,98,114,93,105,109,97,107,105,98,93,96,107,102,116,112,107,109,106,117,100,98,101,100,106,129,104,110,104,113,106,115,110,121,115,110,102,117,103,111,108,105,102,107,107,88,114,96,95,97,110,103,122,111,120,87,111,106,113,102,93,104,103,94,101,96,100,118,110,100,119,113,124,101,99,101,103,102,118,109,106,108,113,111,113,102,100,114,98,97,103,112,109,110,90,104,106,106,103,117,119,107,103,112,109,111,95,119,94,102,114,111,108,102,122,106,102,109,108,106,106,112,110,102,102,103,115,104,104,97,96,104,100,110,104,97,100,107,100,116,113,112,114,112,104,107,106,93,105,102,98,107,100,105,95,100,103,91,91,112,106,104,108,104,99,105,99,117,110,118,105,106,99,103,107,113,109,85,110,103,104,100,105,99,104,107,109,105,99,114,110,99,108,116,111,106,102,104,109,106,105,104,87,87,95,106,99,106,113,116,121,107,110,111,115,103,110,100,113,103,99,121,103,105,98,106,109,104,91,93,105,105,98,114,113,109,112,98,103,102,98,117,98,108,101,106,114,99,103,99,111,99,111,101,110,119,114,99,105,104,124,97,104,129,96,114,107,111,106,107,116,107,111,110,113,114,103,108,116,117,93,104,103,125,96,114,102,100,100,110,117,97,112,103,100,110,98,93,96,105,110,107,108,99,110,106,74,99,99,105,113,111,98,104,108,106,105,119,98,103,117,93,120,116,98,89,102,101,102,84,105,107,109,113,116,103,101,114,110,110,105,99,85,91,102,109,106,101,105,107,106,106,116,115,105,91,103,108,108,98,113,109,99,110,111,108,110,110,83,106,103,105,104,108,117,95,89,107,99,120,100,105,96,103,106,107,112,102,119,99,107,109,108,98,107,97,104,112,98,106,100,104,99,103,113,112,110,114,90,109,103,104,115,108,98,121,103,105,112,103,111,92,114,109,103,102,103,102,111,96,116,104,99,112,99,107,111,108,107,111,113,106,99,123,96,106,109,100,129,99,113,95,107,107,118,98,101,92,115,108,105,104,120,115,104,120,106,103,114,111,104,107,71,102,95,108,113,98,121,93,95,107,101,109,90,104,101,98,103,103,113,100,110,114,108,101,112,108,119,70,103,106,91,103,109,101,105,104,95,99,101,101,101,67,104,105,96,104,102,118,112,114,105,109,97,95,116,109,98,95,97,114,105,114,111,95,113,109,110,102,110,99,106,115,71,97,103,104,99,102,122,103,94,102,111,103,106,101,113,121,106,113,113,98,106,117,100,109,110,109,111,116,127,121,103,102,101,109,102,93,108,110,105,107,110,80,102,114,102,101,107,103,112,91,101,104,118,93,96,122,101,96,111,97,100,113,91,104,107,113,103,116,113,117,117,113,89,101,109,103,88,107,104,98,116,117,96,99,113,98,90,109,123,112,117,107,100,105,105,113,101,101,114,110,103,114,108,93,108,115,98,121,113,106,101,103,110,108,111,89,107,89,110,107,100,100,99,103,105,99,100,94,114,91,114,142,104,117,100,103,111,100,121,105,115,102,104,95,103,109,101,119,105,108,110,102,110,115,107,110,91,101,100,106,94,95,115,105,104,111,109,87,109,104,102,111,111,106,108,113,106,126,105,115,98,99,102,106,103,103,110,94,104,115,111,107,100,90,112,112,111,104,103,110,94,110,103,96,91,95,96,100,108,108,99,118,107,122,106,114,110,101,97,92,100,82,102,107,117,107,116,113,94,118,119,109,103,111,116,93,93,106,116,105,97,108,98,125,93,109,104,106,117,101,99,106,108,113,100,118,103,109,105,103,108,112,116,101,106,112,80,98,113,112,92,104,89,103,105,107,108,96,99,120,116,114,117,103,89,111,106,99,110,127,102,106,95,100,91,104,109,94,98,105,122,106,96,105,109,107,107,111,105,110,95,102,113,109,100,94,98,103,115,101,99,99,106,95,104,102,72,106,102,95,109,95,102,103,103,109,96,101,101,112,105,99,110,106,106,105,104,98,115,104,105,112,114,102,107,106,106,97,113,113,108,102,111,120,107,102,88,104,82,106,94,96,95,107,107,116,104,112,125,99,95,119,93,102,72,100,110,93,111,106,104,116,104,117,113,108,105,106,114,132,119,125,118,126,148,120,107,112,121,116,133,109,117,112,123,104,110,96,100,105,95,117,98,118,106,106,100,105,94,99,102,97,89,118,97,111,111,101,98,102,102,113,102,107,102,108,108,91,113,110,117,98,107,90,99,103,110,110,114,98,103,116,98,127,100,110,104,106,102,105,103,103,107,100,109,94,112,95,104,101,102,103,102,114,98,101,105,114,101,113,109,103,105,113,99,112,102,101,95,98,98,118,101,105,99,116,110,92,110,98,105,107,119,108,113,111,97,106,112,99,109,94,116,106,106,100,104,105,104,101,110,101,104,105,115,92,109,104,102,118,108,107,118,103,104,97,115,117,121,109,103,109,98,101,103,95,110,112,116,112,109,105,108,112,113,103,100,95,103,113,105,96,123,104,109,109,120,103,106,107,112,105,105,100,107,113,111,95,107,94,102,107,110,129,108,117,113,100,107,101,112,110,106,101,100,115,110,111,109,112,94,101,104,109,108,89,98,121,110,107,78,115,106,112,115,93,111,110,109,107,109,104,91,110,110,97,94,107,97,118,106,102,105,111,110,102,100,87,112,121,110,110,108,93,104,103,106,105,108,99,108,112,95,86,109,99,104,98,99,109,96,95,105,99,90,106,133,115,90,112,98,109,121,103,118,102,93,103,107,109,99,106,116,118,100,101,101,126,105,99,109,106,102,106,116,104,91,99,109,128,95,99,114,103,105,99,94,102,115,104,110,121,106,103,98,95,101,109,96,114,102,102,90,112,108,104,101,103,106,109,109,103,106,102,106,104,103,93,111,104,121,106,100,110,104,106,103,98,112,106,103,105,100,102,115,91,110,94,99,102,108,105,106,95,102,106,99,116,112,111,126,107,100,83,121,96,117,108,106,110,112,106,98,115,86,106,104,104,112,98,101,103,102,108,89,111,120,97,87,97,85,118,103,101,112,116,108,108,101,104,99,119,109,140,105,101,101,109,106,112,103,105,112,110,99,96,99,88,108,108,111,108,98,113,98,112,94,106,109,107,95,112,107,95,101,103,101,102,92,100,108,110,102,104,107,101,115,113,109,95,99,99,89,111,102,114,106,92,135,99,113,98,110,102,108,107,103,88,99,97,102,99,107,102,101,112,112,115,98,109,98,102,111,115,109,102,104,106,98,105,107,100,96,114,105,104,89,110,104,99,99,99,117,108,111,94,104,107,105,85,102,102,97,110,98,108,102,97,130,104,96,104,111,112,108,100,110,112,94,107,109,96,111,95,121,110,106,104,93,104,113,106,97,110,101,124,111,107,104,91,105,100,100,99,104,116,106,114,104,114,105,112,106,104,108,109,131,76,110,100,96,106,101,104,105,106,105,105,104,110,102,99,98,92,103,98,108,101,105,100,107,107,104,93,109,116,102,95,102,96,106,105,95,113,104,92,108,105,95,99,110,116,98,109,102,96,110,105,91,104,109,103,109,100,85,103,120,106,88,100,107,113,106,96,106,100,106,88,95,110,96,112,108,104,68,87,114,106,107,92,93,83,84,100,109,103,93,90,104,111,118,100,102,104,109,108,103,109,106,102,118,113,96,104,103,100,87,102,111,97,112,119,107,97,98,108,97,102,117,103,100,116,114,105,97,104,104,113,127,124,106,115,112,105,101,104,114,110,125,98,103,108,99,108,103,103,112,105,108,106,108,103,101,110,98,109,108,107,115,107,102,106,92,107,88,106,110,102,106,102,106,106,100,113,104,96,111,96,118,98,108,116,107,102,81,115,102,113,98,104,95,116,117,113,105,104,109,102,100,96,104,92,99,107,112,129,102,105,114,101,104,105,111,117,99,111,106,105,106,110,104,90,101,106,113,94,106,106,119,105,112,109,116,120,90,115,106,94,99,94,100,122,111,113,109,104,102,109,105,99,110,105,118,100,102,107,92,108,100,110,116,93,94,109,112,107,115,116,95,96,101,99,102,107,95,110,102,103,110,106,116,90,100,94,90,121,98,117,101,109,120,106,99,107,110,102,103,98,107,112,111,100,99,110,102,89,117,88,99,77,109,108,109,102,94,105,115,90,114,108,97,96,103,113,91,107,106,104,94,103,121,103,95,111,113,100,101,113,108,97,100,120,98,100,113,112,106,113,106,101,105,111,99,108,109,97,105,110,109,104,105,105,96,107,113,110,79,107,119,98,96,112,111,97,97,104,104,105,100,106,117,110,103,101,106,104,93,97,101,110,99,122,99,102,98,105,99,108,101,110,101,107,97,107,97,113,101,101,109,91,110,107,117,111,134,103,121,108,113,115,99,104,94,106,95,110,98,112,101,102,98,117,98,103,100,111,133,105,101,107,108,106,110,99,104,91,102,102,117,94,101,110,103,100,105,105,107,102,102,109,101,104,104,94,98,77,103,104,99,105,95,115,113,99,107,100,101,104,110,114,104,96,103,95,105,90,100,94,104,112,91,93,94,101,108,113,96,104,108,109,92,110,91,97,107,96,101,101,108,98,111,108,99,92,99,103,93,95,116,95,107,98,92,104,106,100,101,88, +552.53033,119,98,100,96,96,108,102,95,87,97,91,101,98,99,105,94,88,98,105,117,108,112,106,105,105,103,116,102,104,106,106,129,96,99,101,97,103,108,108,105,104,97,110,105,100,112,103,111,99,111,113,103,120,96,106,80,101,93,101,109,115,108,107,103,106,104,108,115,97,96,99,106,104,100,98,101,101,102,104,65,115,88,92,110,99,100,100,101,102,100,109,108,101,105,99,111,102,112,113,92,94,103,103,102,104,104,98,105,97,106,102,104,102,102,115,114,109,98,94,107,104,105,99,112,97,119,106,106,109,84,98,102,99,103,107,108,102,90,105,100,104,110,101,95,107,101,109,91,106,106,99,95,107,100,102,105,111,105,113,98,99,100,98,102,107,114,104,99,104,99,125,105,128,110,93,105,101,104,120,98,107,104,109,100,105,95,103,99,110,99,105,88,104,109,104,98,101,100,104,116,103,98,109,104,100,104,106,108,104,109,104,98,111,113,120,92,99,110,99,124,98,110,99,104,97,107,105,99,108,103,103,96,94,98,117,110,106,113,107,97,104,99,112,105,112,105,99,101,113,105,103,116,97,94,126,102,108,113,90,105,105,106,100,118,106,108,115,105,97,97,105,109,75,105,102,108,102,99,93,107,102,110,107,120,107,103,109,105,107,94,99,90,106,110,117,108,90,104,103,116,110,96,117,116,98,113,107,113,112,117,91,113,104,104,107,96,105,104,112,102,113,116,113,109,109,106,114,99,113,113,113,103,95,111,102,124,105,116,108,112,101,91,102,104,111,112,106,109,105,103,121,111,109,82,107,98,113,120,118,113,113,95,99,100,102,99,106,104,107,101,110,109,105,112,102,114,114,108,106,108,115,104,105,109,101,102,104,102,109,110,99,107,89,115,104,99,91,100,104,108,96,113,96,95,102,112,99,103,103,107,108,102,98,102,103,106,101,117,98,105,96,114,103,99,109,106,96,114,107,99,98,108,142,95,97,105,96,111,106,106,108,115,107,103,91,114,111,103,106,101,109,118,117,103,116,111,122,102,106,100,116,97,109,113,115,114,108,113,116,103,110,103,123,105,102,98,104,106,104,106,112,103,104,101,108,97,103,118,111,119,108,93,94,100,94,107,120,86,106,112,102,100,108,114,109,114,104,109,111,105,106,109,109,112,121,99,105,99,106,98,100,103,108,106,100,106,113,112,125,111,98,104,107,91,105,97,110,100,121,118,106,102,91,107,125,106,105,104,103,101,110,109,108,97,105,105,97,103,111,107,100,105,103,113,94,114,112,112,106,109,98,98,104,98,106,97,104,109,103,107,112,111,111,96,114,105,99,87,115,97,105,97,100,94,107,116,108,99,104,101,113,107,115,105,102,79,98,115,97,113,115,105,99,101,95,107,109,112,112,112,114,104,104,91,98,94,117,106,99,118,101,113,85,111,106,116,98,117,106,102,110,108,117,101,99,96,112,103,100,105,101,90,104,103,107,103,106,129,105,111,106,90,101,101,109,104,103,103,102,113,108,99,108,96,98,111,110,103,108,96,108,103,110,94,113,109,102,108,113,104,102,101,98,104,106,108,104,103,99,110,99,104,98,104,101,110,104,110,104,107,101,99,104,95,98,106,107,102,95,102,114,109,103,109,92,109,117,117,118,112,116,115,99,96,117,102,106,98,94,102,109,104,111,110,103,106,90,103,106,106,95,111,105,104,100,104,103,117,117,111,109,109,116,98,98,104,99,105,106,100,98,95,125,101,135,121,113,111,105,94,107,99,108,106,105,96,104,108,110,92,109,91,107,93,109,108,94,128,106,103,102,103,115,103,107,96,101,114,103,96,106,97,103,103,100,100,100,115,97,104,99,102,117,101,108,112,102,108,98,109,114,98,100,99,110,89,118,114,105,91,94,103,109,94,102,104,113,97,106,103,120,102,73,117,99,117,103,92,111,119,120,101,107,100,102,100,98,106,121,109,98,111,99,113,101,100,114,108,103,99,115,119,105,97,106,103,90,108,102,98,102,111,113,109,98,103,99,126,113,106,106,96,93,94,117,105,98,90,88,99,102,118,105,111,107,109,119,107,100,110,116,118,108,108,114,101,109,85,118,100,103,113,109,113,108,102,107,97,107,109,105,101,95,113,115,99,108,104,114,107,92,108,114,102,99,102,101,104,103,103,112,109,101,98,101,107,127,105,102,103,106,105,101,91,88,109,114,108,109,110,109,114,98,105,96,114,101,105,110,98,102,108,101,103,109,111,120,96,95,111,103,94,98,107,113,120,104,96,102,106,96,115,108,105,118,100,99,107,103,110,114,103,100,99,109,104,99,102,103,114,110,125,104,101,107,88,108,117,117,105,126,128,130,131,151,123,136,120,132,117,111,110,121,120,129,113,106,109,105,114,96,109,105,110,98,107,92,117,111,100,98,110,103,95,113,102,114,101,102,113,95,73,117,109,105,99,106,108,105,106,117,114,109,94,106,108,82,98,106,104,99,97,125,99,110,106,102,96,114,101,111,109,128,108,94,96,108,109,103,108,103,99,105,101,95,101,114,104,110,119,98,119,110,100,103,105,104,109,112,105,96,103,102,102,102,110,102,125,109,140,103,104,123,115,95,113,111,101,100,103,108,100,107,91,117,103,130,102,111,100,109,107,113,115,101,106,117,113,105,109,103,114,104,114,102,116,115,102,105,112,114,115,92,104,87,116,81,100,93,104,99,102,108,104,94,111,112,95,100,98,108,123,103,112,94,107,109,112,106,115,109,110,100,103,121,100,124,105,104,100,107,108,116,107,104,109,100,95,100,109,111,102,111,109,104,108,99,86,104,108,92,112,106,100,101,86,108,87,110,108,117,98,97,107,106,98,79,100,109,109,113,104,109,117,102,100,108,108,105,99,113,113,110,103,112,101,111,112,104,107,107,111,105,104,91,107,101,98,100,113,108,118,104,107,104,104,91,112,87,101,101,110,105,109,111,114,109,110,119,102,100,111,90,114,114,91,111,105,102,100,104,103,87,111,106,105,108,105,107,101,90,111,106,95,99,97,114,110,101,98,108,105,91,112,98,99,94,106,108,107,107,111,110,92,103,110,118,109,101,105,101,97,96,105,115,96,112,105,99,100,101,103,100,106,100,100,107,105,100,116,67,104,115,119,103,103,100,96,106,93,95,99,96,116,109,106,97,96,108,107,116,95,106,107,113,93,117,102,106,104,98,114,99,102,100,117,106,101,102,105,105,103,114,114,107,115,104,108,105,110,108,92,96,103,107,93,110,119,105,106,105,94,100,110,108,96,116,91,108,118,101,103,104,96,105,103,104,126,108,106,112,107,94,93,99,102,109,116,113,115,105,107,106,102,107,103,102,100,114,117,102,111,120,107,108,129,115,117,103,99,93,96,114,105,104,113,108,102,97,103,100,113,109,106,114,106,105,108,106,92,90,104,92,105,103,95,97,101,91,108,101,101,109,99,102,111,102,117,106,104,110,114,103,116,98,99,103,105,103,100,104,107,111,108,87,96,112,102,100,110,94,108,128,106,107,104,92,97,103,117,104,101,107,108,103,89,104,104,108,93,99,95,112,102,109,108,116,103,109,124,91,94,129,102,106,89,106,106,109,105,100,103,106,101,106,100,104,113,97,105,99,109,103,103,116,103,105,108,108,106,95,103,91,116,110,101,105,101,100,109,105,101,110,111,100,112,97,105,102,104,98,103,107,112,102,101,117,99,101,102,107,108,106,91,110,109,84,109,105,108,98,111,127,107,93,107,100,99,130,108,96,111,96,107,106,111,94,112,109,102,114,103,108,105,106,102,106,103,107,110,102,110,102,116,99,112,82,106,118,94,108,98,132,104,108,98,97,113,111,100,96,100,101,106,117,112,107,97,109,114,80,105,97,99,103,108,102,96,111,111,105,91,111,96,104,94,113,100,96,90,104,114,87,108,97,105,120,106,101,99,102,109,99,110,96,104,111,116,103,116,113,112,103,103,113,101,105,106,98,107,102,105,104,109,100,105,101,107,101,105,111,114,86,94,105,111,98,99,126,111,117,103,98,98,106,110,98,110,105,103,110,106,111,108,113,102,95,90,109,107,98,104,113,102,99,111,111,106,114,107,108,101,108,94,91,104,96,99,105,128,104,106,101,92,98,101,100,101,102,100,102,117,116,111,120,110,102,112,100,110,131,108,109,99,100,104,120,98,97,101,116,99,102,101,101,109,112,105,98,109,101,108,110,99,102,110,106,100,108,94,118,102,108,91,93,101,98,87,94,113,111,112,105,108,102,110,110,98,103,103,108,116,95,93,107,99,117,102,90,104,109,113,117,117,115,103,108,96,102,109,103,103,104,112,100,118,113,103,102,105,113,105,111,103,121,109,109,100,109,104,113,99,123,95,96,116,102,105,132,105,110,112,105,100,93,107,91,95,121,104,97,103,106,111,91,99,107,99,97,107,94,89,99,125,99,109,100,105,101,102,95,113,98,100,97,96,98,105,91,108,88,86,92,112,102,117,88,111,109,103,102,114,91,102,115,98,111,101,101,107,108,108,112,104,129,99,102,102,102,95,116,91,117,92,116,109,100,86,103,112,97,111,107,113,97,113,101,108,100,108,113,105,104,93,113,115,103,102,111,92,108,98,105,113,98,103,100,112,103,99,83,109,70,100,114,104,116,101,104,102,91,110,103,110,112,102,95,104,86,103,109,86,105,102,129,107,107,99,98,96,107,111,108,85,101,105,107,106,108,101,109,106,99,107,105,103,107,102,105,101,107,90,111,86,102,105,96,106,98,106,100,103,109,100,101,114,113,98,96,105,95,100,105,102,104,108,88,100,112,88,84,105,108,98,108,93,96,110,102,95,106,89,110,87,90,100,103,111,89,110, +552.67114,118,109,92,123,102,105,102,100,102,95,100,104,89,115,92,96,107,103,102,124,95,111,146,95,108,99,93,109,110,108,93,95,91,96,121,111,105,105,100,104,87,108,110,103,105,116,99,99,98,108,99,101,111,105,104,96,95,100,113,94,101,99,98,90,114,90,93,96,97,114,109,97,106,99,102,115,87,101,96,100,101,112,96,100,113,109,112,112,103,97,110,105,105,105,96,113,102,108,87,118,101,106,101,99,81,103,94,102,101,118,102,97,107,93,100,108,108,106,114,99,104,108,105,117,102,105,109,103,129,108,108,104,101,108,115,116,112,112,111,101,101,120,114,108,102,102,105,111,104,107,124,128,105,92,101,95,111,110,110,106,91,112,102,103,103,99,112,113,106,94,108,111,99,106,110,99,103,92,108,99,111,105,104,104,106,104,97,96,113,98,88,96,107,95,99,102,112,104,100,102,103,102,105,98,114,101,98,103,100,107,101,109,95,104,113,109,111,109,103,107,102,114,95,96,96,112,103,124,110,108,96,100,106,94,100,112,105,113,100,98,104,105,117,81,102,114,106,108,111,98,102,117,124,109,97,104,99,109,98,110,100,109,116,104,100,95,99,114,98,100,94,102,115,89,80,104,105,103,97,111,101,102,108,109,115,92,91,117,112,102,105,109,106,110,100,102,101,107,106,110,107,114,106,111,100,115,109,120,114,109,88,114,97,104,100,102,104,106,102,110,99,100,108,97,96,106,95,97,107,107,88,112,105,105,103,109,106,95,95,105,104,98,108,103,105,102,113,112,96,109,96,103,104,103,120,111,106,100,106,103,92,102,105,123,109,105,98,114,98,119,101,107,108,112,112,103,109,93,107,115,109,105,115,107,78,105,107,85,109,101,117,95,104,117,94,99,105,105,108,101,95,108,110,105,104,91,111,95,86,110,107,102,103,111,104,91,99,104,106,95,106,98,103,96,114,102,107,110,115,114,113,108,113,117,104,108,102,120,98,101,111,100,115,114,99,107,102,104,101,110,107,116,110,100,110,90,108,107,107,100,102,101,102,105,107,108,111,116,104,119,105,115,105,101,102,117,104,91,119,103,106,109,103,106,102,114,107,100,109,99,117,108,103,107,101,95,87,104,110,105,110,111,110,129,109,105,109,100,108,105,97,106,98,103,109,109,114,104,109,102,110,108,119,116,106,116,102,105,123,109,95,94,102,116,96,101,112,103,100,102,103,103,104,110,106,97,81,105,67,105,107,110,105,104,90,110,107,106,107,101,107,94,98,107,100,120,97,105,103,104,106,112,98,102,106,98,109,97,98,103,122,110,111,103,106,100,113,106,105,98,102,115,102,106,109,86,107,108,125,105,102,103,111,109,100,105,97,93,112,105,74,101,108,110,113,106,99,106,108,98,109,110,108,102,118,109,100,103,109,116,113,106,105,107,92,113,105,97,111,104,114,94,100,106,105,93,112,106,105,99,101,120,110,103,116,120,116,109,151,99,114,107,101,108,95,108,79,108,121,103,114,88,99,98,91,109,100,94,106,117,109,112,108,92,100,95,104,97,109,96,108,101,103,90,112,98,97,101,116,100,101,105,101,108,101,99,100,117,101,102,96,100,108,100,109,106,106,106,114,96,105,97,101,101,101,92,106,106,117,114,118,109,104,105,113,100,100,88,113,97,134,100,106,98,108,112,91,106,94,112,113,103,99,113,107,103,97,104,101,101,110,100,102,111,99,111,99,97,117,102,105,96,117,99,104,112,110,104,116,100,104,109,110,112,109,114,104,105,106,114,104,113,104,112,94,110,95,112,112,105,104,86,103,100,113,98,98,112,105,96,112,98,97,113,113,99,115,104,110,94,109,110,110,120,105,99,108,99,114,97,103,109,111,107,94,103,116,108,112,102,109,96,104,104,115,98,99,104,97,94,99,93,94,111,100,109,104,102,109,106,99,100,99,104,106,96,113,116,105,119,109,116,106,110,107,107,102,105,102,91,122,99,93,108,106,106,94,98,95,112,115,112,117,103,77,113,99,109,101,113,106,108,117,106,109,95,98,114,99,102,102,99,110,111,107,97,109,110,111,109,112,100,110,112,109,95,102,113,105,111,114,101,111,111,105,106,108,103,100,108,115,98,103,122,107,103,104,103,102,117,105,93,100,105,110,125,110,107,119,106,110,102,105,105,115,105,86,103,103,110,101,90,120,111,99,103,110,103,100,99,99,122,99,111,110,105,94,110,111,113,101,100,119,107,103,116,98,103,105,101,112,113,123,103,103,97,107,100,101,121,86,105,111,107,100,103,111,112,96,99,103,122,102,115,122,99,106,100,113,95,113,102,118,108,113,105,100,111,107,116,108,112,124,123,116,111,127,157,114,119,122,129,125,127,113,126,104,114,118,104,105,103,107,77,96,95,109,91,112,103,97,105,110,106,109,94,115,107,94,82,99,109,104,113,96,112,97,99,111,112,105,117,114,97,103,114,103,105,113,125,103,93,109,109,101,103,88,117,101,108,110,102,103,108,116,104,101,102,105,109,124,98,104,104,96,108,104,113,111,108,95,106,112,101,99,95,109,101,107,107,111,98,98,103,95,110,91,112,119,102,106,105,119,117,108,93,101,105,116,109,98,94,106,98,109,83,100,105,104,102,109,98,113,92,96,104,109,91,112,111,97,114,104,122,104,119,105,101,98,110,108,88,113,110,100,112,97,113,106,110,106,113,118,113,101,108,111,126,73,106,91,107,102,102,101,106,107,113,97,102,116,120,104,96,111,112,113,100,119,108,113,111,120,117,109,111,108,105,119,104,143,99,117,95,117,102,111,114,107,104,111,94,124,98,110,68,100,101,91,83,112,97,107,109,101,106,107,109,100,105,90,106,88,109,110,106,99,115,104,119,97,121,101,102,117,103,106,99,101,109,91,113,92,102,85,105,102,96,107,105,107,92,100,109,100,98,93,99,108,102,90,109,99,98,99,106,78,108,103,101,103,103,103,99,107,102,114,110,99,107,101,106,106,122,121,105,113,90,101,130,114,112,103,112,107,106,109,99,100,109,101,109,116,98,108,103,123,104,99,93,114,115,98,105,80,102,110,100,112,110,111,119,110,111,106,111,99,107,106,109,104,88,104,98,108,104,104,103,111,95,81,100,109,99,104,97,98,96,112,88,126,103,104,115,110,107,110,106,116,97,104,105,104,106,104,100,101,105,81,106,101,114,95,103,103,72,108,115,122,98,111,90,104,116,107,100,96,110,113,100,105,99,109,108,105,110,97,103,102,108,105,113,112,93,87,107,108,89,87,105,121,113,108,101,101,96,104,100,105,92,103,104,104,107,102,109,102,103,106,108,105,117,113,115,96,103,101,107,103,104,108,110,109,98,101,105,109,98,97,109,98,113,99,111,109,102,104,101,103,104,108,106,102,95,98,103,102,102,117,108,110,112,106,92,109,108,98,104,101,97,108,96,102,100,112,102,107,96,114,98,108,116,105,111,129,114,107,96,105,103,110,117,103,99,99,105,106,95,105,91,118,108,102,97,108,103,94,94,108,103,112,100,107,132,101,101,95,94,103,96,101,96,100,99,100,108,96,100,87,99,103,100,106,104,106,113,109,99,107,110,113,113,102,110,99,90,102,103,92,115,93,105,116,116,116,101,105,99,104,109,104,112,103,98,109,104,110,94,103,95,90,106,113,108,106,117,118,107,110,104,113,104,107,95,108,104,107,92,108,104,112,105,103,98,113,109,102,110,104,103,108,107,99,102,110,108,110,97,128,115,99,103,108,128,104,110,93,101,95,118,114,104,125,102,104,102,110,85,109,103,79,112,102,103,96,102,102,100,102,101,103,109,104,99,102,105,109,101,101,112,106,99,109,103,95,98,114,101,102,117,102,103,107,119,97,108,95,95,100,101,106,113,112,100,101,112,100,96,111,112,115,110,104,103,136,102,100,119,101,95,123,109,104,110,104,103,102,106,108,102,113,109,108,96,120,98,89,95,113,112,106,113,100,101,106,116,114,114,111,89,112,111,101,104,112,105,105,106,106,108,110,109,105,97,102,113,111,101,97,91,112,106,100,119,105,107,113,120,133,106,107,95,104,99,95,111,107,101,98,94,94,90,102,86,108,113,111,109,112,94,101,103,106,93,112,96,108,98,97,106,103,98,104,102,104,109,103,123,115,122,111,119,108,105,100,101,101,100,108,99,101,104,106,105,102,108,115,100,112,98,109,103,102,108,98,103,87,117,95,93,106,102,106,108,99,95,113,98,96,106,109,111,101,84,102,111,117,100,108,103,118,93,108,112,105,118,120,108,113,120,112,104,105,97,110,113,102,105,107,111,104,118,104,80,89,109,111,111,102,97,111,109,101,105,103,106,107,106,108,103,108,95,109,108,105,98,88,108,105,98,113,118,92,103,92,106,113,95,108,125,106,112,101,110,107,107,102,109,102,97,105,108,109,110,106,107,98,109,123,115,91,105,96,112,98,104,100,99,98,93,103,112,107,104,110,102,107,117,105,103,101,106,104,103,92,96,105,100,105,98,102,98,112,109,111,114,99,99,93,102,103,97,115,96,115,106,109,105,111,113,97,111,100,115,95,120,96,104,109,91,108,91,100,107,96,95,110,88,104,100,106,104,112,108,105,87,101,97,105,106,91,102,93,106,100,98,95,106,95,113,108,109,112,104,93,112,121,103,95,105,108,108,97,109,108,127,107,97,119,102,115,104,107,110,106,96,106,108,106,95,103,119,104,110,111,98,100,106,110,104,99,94,104,111,88,111,107,104,106,100,92,101,91,92,73,98,94,98,101,104,100,110,91,110,100,104,91,103,108,105,100,104,105,106,98,99,108,121,107,107,99,103,105,102,117,113,89,108,99,114, +552.81201,111,91,90,92,101,104,111,87,104,108,111,105,79,104,101,94,62,102,108,123,100,102,108,116,111,113,109,102,104,97,121,90,99,90,101,102,109,101,109,107,96,106,104,100,111,105,113,98,90,109,102,100,116,94,107,100,121,107,132,87,104,109,96,94,102,119,102,106,98,101,110,104,102,108,105,106,102,106,106,95,108,107,123,103,100,93,99,102,99,97,102,107,95,103,95,94,103,98,102,98,108,99,103,110,87,107,109,99,107,121,98,95,104,117,101,107,99,93,115,100,100,104,116,113,110,100,104,97,95,108,97,109,98,101,107,93,117,102,102,103,98,106,96,111,101,97,101,102,104,96,101,106,95,99,104,100,113,102,102,106,106,105,95,105,108,102,102,101,99,104,104,94,103,117,98,109,118,97,66,108,110,108,106,101,109,99,82,85,103,105,97,109,100,99,103,111,105,107,99,71,113,90,94,113,95,110,103,105,105,105,78,94,110,108,103,105,103,105,110,116,101,114,106,108,104,120,92,100,108,110,113,115,115,90,105,107,103,108,95,97,113,105,109,111,97,98,102,110,101,108,103,108,95,82,103,106,103,99,89,91,75,82,98,91,98,105,107,117,102,91,83,107,106,106,108,108,100,96,110,93,108,121,113,103,109,88,107,104,92,112,102,104,106,109,113,109,108,104,106,103,104,106,102,103,101,108,124,110,101,103,98,104,106,101,119,106,100,121,104,108,104,106,98,105,102,108,101,88,107,105,108,96,106,114,109,97,114,109,100,102,110,108,87,99,99,111,114,109,107,109,109,102,110,111,109,110,108,112,105,106,108,108,99,114,94,108,102,116,109,99,103,76,111,108,109,109,105,107,114,112,105,113,108,110,112,95,95,114,108,102,112,103,110,108,100,105,111,107,101,102,108,100,113,103,103,99,107,108,108,102,101,105,107,103,103,101,106,83,109,106,109,115,104,105,106,101,108,109,94,108,93,104,112,101,108,99,108,105,107,105,103,102,104,102,100,106,111,112,116,107,102,99,99,107,120,93,102,107,104,105,85,107,106,100,101,111,111,101,104,101,101,104,106,106,104,107,108,108,103,108,114,105,130,114,109,110,105,119,104,108,121,114,107,101,104,92,96,117,106,101,119,113,95,101,100,79,95,106,103,114,119,114,102,103,103,105,109,104,104,104,100,98,97,97,108,109,113,110,105,112,113,98,104,95,109,100,93,101,104,106,103,107,101,114,108,103,98,106,113,110,108,117,110,100,102,103,118,90,107,103,117,105,111,110,116,105,109,117,110,107,100,109,117,107,106,113,90,91,108,103,107,101,111,97,103,105,104,108,103,108,102,106,98,111,86,114,84,108,120,109,99,102,108,102,108,98,104,102,144,112,100,103,95,101,105,94,104,101,107,110,102,110,107,102,105,107,117,99,106,112,100,105,108,109,111,95,102,102,116,96,108,101,100,96,99,108,105,112,107,117,108,105,100,117,117,109,107,121,107,113,107,101,98,103,97,114,109,109,99,104,110,107,101,105,106,98,103,100,111,102,121,110,106,106,113,94,106,89,95,112,105,102,96,106,101,107,102,103,106,87,110,89,96,102,111,111,114,117,111,112,108,99,94,102,95,113,97,106,105,90,99,108,104,106,103,95,105,108,99,108,100,103,100,100,85,97,102,97,105,91,108,90,94,111,97,103,107,113,98,101,118,95,100,106,104,100,107,108,104,109,102,110,117,118,101,99,115,114,102,92,112,95,90,106,103,107,111,111,117,104,105,95,102,109,94,104,113,98,111,106,100,113,110,120,92,118,102,115,110,113,104,107,99,110,79,103,102,99,100,106,115,107,104,102,108,102,100,104,110,101,99,110,96,111,106,104,99,107,103,118,112,99,101,87,104,112,109,96,106,98,92,109,112,107,107,110,99,104,102,115,110,110,110,95,91,94,95,98,109,114,117,110,101,91,104,108,104,82,108,109,99,105,113,105,109,104,106,103,102,104,102,113,91,111,109,111,99,102,112,108,99,127,106,117,102,109,100,113,108,99,108,112,106,121,104,98,102,94,103,98,103,109,101,97,95,106,109,105,85,106,106,89,101,97,102,98,104,108,102,119,108,107,85,110,102,95,97,91,84,100,110,108,114,104,118,95,103,110,113,104,113,108,107,111,107,100,115,99,104,102,116,106,96,103,104,104,104,92,104,95,100,109,104,98,101,105,110,112,90,104,102,112,101,106,113,108,99,104,87,101,109,107,107,106,76,108,98,104,107,115,93,100,95,112,106,103,104,107,104,118,92,107,102,111,105,101,115,97,97,82,103,135,103,113,105,104,108,98,97,109,103,104,114,110,116,92,103,112,122,107,109,122,123,138,123,149,139,110,107,129,117,136,126,127,117,108,113,103,99,110,113,111,97,91,102,106,116,103,99,105,100,113,97,89,98,105,107,114,118,107,117,104,91,122,99,81,108,111,115,102,111,117,95,102,100,108,112,103,119,111,109,114,101,112,103,105,100,106,99,97,106,109,106,122,115,80,100,102,96,93,106,104,101,107,102,101,109,115,109,101,109,117,117,105,97,115,106,106,104,98,119,97,103,107,107,106,109,104,122,102,119,108,109,105,125,99,104,80,105,100,110,97,113,100,105,106,111,112,101,118,107,111,112,115,120,103,114,117,99,120,112,103,89,107,106,107,143,112,103,113,112,112,99,102,109,120,109,101,114,109,107,123,121,109,108,97,107,110,109,100,95,100,82,104,129,124,103,100,106,102,114,106,107,104,110,117,111,99,108,105,119,113,100,108,95,111,102,106,111,118,111,111,116,105,109,106,105,114,101,110,111,108,91,84,75,96,95,118,100,102,98,110,110,109,112,110,104,108,114,100,109,106,116,117,102,106,107,114,111,108,109,104,104,101,114,105,116,114,110,124,100,103,115,113,110,109,89,112,101,83,84,101,93,105,106,97,112,108,117,124,98,109,110,99,106,104,118,107,101,89,103,111,106,107,115,104,109,106,107,116,106,90,109,110,107,98,98,107,99,115,107,115,95,97,108,108,109,95,101,111,95,106,99,112,109,107,111,95,113,116,103,106,116,108,107,96,111,103,114,100,103,110,97,99,107,102,100,115,114,115,101,115,99,114,123,92,95,107,100,113,101,111,122,105,115,98,107,101,105,111,109,104,104,110,100,95,101,105,112,109,99,93,84,99,90,92,91,95,97,102,121,119,107,100,101,108,118,106,128,109,111,100,114,120,114,112,95,110,89,108,100,110,114,91,106,103,91,112,111,118,102,113,106,100,100,105,120,109,97,102,110,103,108,94,106,100,104,113,104,89,111,108,110,102,106,104,107,107,81,111,106,100,107,98,107,104,116,102,109,100,114,104,95,105,108,109,96,127,108,103,103,113,102,108,91,112,102,102,107,107,108,106,99,105,98,103,96,128,100,98,126,112,115,100,100,97,100,105,107,112,84,104,100,103,104,110,113,108,107,100,117,89,102,104,99,105,101,112,96,90,115,102,108,111,97,98,117,104,89,117,105,109,98,99,97,102,108,112,112,119,121,94,105,123,110,108,107,113,107,106,112,101,103,105,112,105,105,102,107,113,101,102,110,102,112,108,102,99,117,100,110,115,104,108,109,105,99,92,106,114,104,106,99,102,112,101,94,108,102,105,102,98,115,89,101,106,106,112,103,104,108,117,118,105,109,112,111,107,107,101,102,94,104,109,112,108,107,103,105,101,103,103,107,101,100,102,100,98,103,106,105,102,102,102,108,100,105,91,121,109,100,109,96,99,99,100,108,106,96,114,112,97,112,113,106,109,104,105,95,121,94,104,113,109,94,112,105,106,101,97,107,112,95,111,104,102,103,102,100,103,79,109,107,99,107,110,109,106,96,113,111,115,113,99,102,104,103,124,107,100,102,81,108,102,104,117,101,96,109,101,106,104,97,107,92,101,99,100,106,109,99,108,111,104,98,104,108,104,111,111,100,107,100,102,106,100,104,99,99,100,104,120,109,105,96,101,115,106,107,97,114,102,102,105,109,111,107,92,106,103,102,107,107,99,106,99,105,98,118,110,104,90,102,114,108,111,110,100,91,99,106,106,105,103,123,101,99,92,101,110,100,101,104,101,113,110,109,101,105,103,91,102,107,108,111,103,116,102,94,100,115,120,107,112,106,110,104,97,116,105,116,109,109,104,104,104,108,109,105,121,106,105,115,98,103,99,118,102,106,114,99,107,107,105,104,101,101,112,114,109,109,95,121,107,111,101,106,113,97,115,109,104,108,106,120,108,116,98,112,103,104,104,111,110,104,111,92,121,94,116,99,110,104,112,121,117,110,101,103,98,99,107,110,109,90,112,114,102,108,102,108,108,104,102,109,108,106,106,113,95,99,91,111,125,95,104,112,101,112,104,113,106,104,99,99,95,102,112,99,109,102,123,104,119,107,92,109,98,104,108,100,98,101,92,103,108,113,110,103,111,107,108,94,100,112,101,97,103,102,89,97,109,112,120,112,106,111,113,102,103,100,96,101,98,104,109,101,102,111,103,110,98,108,106,111,117,104,101,105,109,97,96,104,116,98,97,99,83,102,107,101,102,117,107,87,100,95,120,105,106,116,103,108,98,113,119,113,97,100,107,102,98,109,119,99,107,100,108,108,104,87,117,104,111,98,102,121,113,86,98,106,117,110,108,106,101,100,102,102,98,113,95,100,103,116,101,99,99,114,100,112,114,106,111,113,103,104,103,103,113,106,92,104,117,104,115,117,109,103,114,120,114,124,92,96,95,104,103,98,119,105,112,109,100,110,113,87,104,110,106,107,107,89,109,108,113,86,106,100,113,117,101,103,101,106,106,89,110,87,102,92,113,121,96,94,104,120,118,95,96, +552.95288,103,83,90,99,107,112,96,122,94,95,106,101,104,108,106,95,100,103,118,118,104,100,99,99,106,100,107,109,102,86,104,100,100,113,97,97,100,111,94,99,103,89,107,119,100,110,113,103,82,126,111,97,72,100,98,109,105,98,107,90,104,96,117,114,98,113,105,109,100,105,108,100,98,103,93,112,87,100,105,105,104,106,102,94,109,104,106,107,104,91,98,107,104,101,98,109,95,109,91,110,105,105,96,95,100,112,89,93,109,98,106,104,108,99,114,102,106,109,116,104,99,101,93,107,106,100,107,112,105,85,102,107,104,110,101,83,94,109,96,100,100,110,102,106,103,97,119,103,103,101,110,99,100,110,112,116,109,106,102,94,103,94,107,116,103,107,111,83,101,110,113,112,96,105,111,97,107,98,93,124,96,100,101,110,99,106,104,78,113,87,102,107,108,100,100,97,110,99,98,109,104,110,96,101,105,104,95,112,94,80,100,108,104,89,100,105,101,104,88,94,105,102,107,107,97,98,100,103,74,109,105,102,101,106,114,103,103,112,110,107,94,104,95,115,105,102,90,99,104,106,103,113,95,100,100,113,101,107,93,99,98,117,97,90,91,100,113,113,102,114,102,107,112,103,97,111,108,96,96,113,104,110,110,109,73,109,92,101,95,118,108,103,102,103,102,110,97,101,102,107,99,110,102,104,102,115,96,111,102,119,101,111,99,106,107,98,107,101,126,99,99,83,113,100,109,106,96,92,113,108,107,103,108,104,101,100,102,103,107,105,93,114,102,113,100,103,101,102,102,104,126,104,119,100,110,107,98,105,107,103,95,110,102,100,96,101,102,118,99,120,116,112,106,106,110,109,104,103,103,105,112,104,109,103,102,103,96,100,105,112,112,92,111,108,98,113,108,101,94,101,99,95,117,68,94,97,113,107,102,101,97,99,101,105,98,108,87,125,107,103,101,111,108,106,97,117,101,99,108,102,111,95,100,105,98,104,99,111,110,100,105,83,89,98,95,99,95,97,117,107,100,103,89,98,110,99,106,109,117,99,102,99,102,109,105,114,100,95,109,96,103,104,108,116,103,91,89,112,104,99,94,104,109,98,113,102,109,102,105,112,112,99,108,104,96,116,104,102,106,112,117,100,105,73,104,111,103,106,94,109,99,107,114,117,107,100,99,115,99,110,126,97,117,118,101,98,103,112,101,105,101,106,114,103,102,105,102,92,105,118,109,111,98,101,107,112,100,109,104,108,103,105,109,99,106,110,95,110,108,108,108,111,95,111,89,119,119,109,115,105,95,99,113,107,94,101,108,100,102,112,103,99,109,104,113,122,101,99,99,103,110,108,93,101,107,106,107,107,112,115,105,99,96,105,113,105,96,100,102,116,110,108,102,105,103,102,104,99,102,107,112,122,110,110,107,100,86,128,100,102,89,95,104,104,114,108,105,88,108,113,109,119,99,94,101,91,110,98,109,101,93,102,109,112,98,91,102,112,98,93,113,101,93,102,99,111,104,98,109,115,122,81,101,111,92,113,98,106,109,105,117,111,114,95,94,92,99,104,95,98,98,100,107,106,102,94,108,104,111,102,95,100,112,105,88,105,99,117,112,114,113,94,105,107,93,107,97,110,107,97,111,108,117,109,115,97,107,90,100,110,110,104,97,100,76,110,101,97,100,92,102,95,86,97,110,102,104,105,98,103,109,97,112,97,99,96,104,106,101,103,110,105,101,104,96,101,93,100,104,110,105,106,121,112,106,117,97,106,105,109,94,103,98,102,88,107,98,100,111,106,115,95,131,109,98,114,104,103,114,97,95,105,104,99,108,103,106,99,105,101,110,105,113,113,105,100,116,101,105,103,91,102,103,106,105,112,106,97,111,104,96,104,108,108,102,112,98,99,102,102,96,102,109,95,97,102,113,95,108,113,112,96,103,105,102,105,110,98,95,114,97,101,121,102,70,103,108,101,108,100,108,102,133,107,104,100,115,91,106,99,102,108,112,106,97,93,97,114,103,103,101,106,92,113,103,101,104,104,108,116,110,111,79,109,112,96,110,110,104,86,99,112,95,101,89,120,108,105,97,116,102,114,99,90,108,96,103,113,100,111,122,115,109,103,108,111,94,101,111,94,104,97,107,127,100,104,102,88,117,101,104,109,110,99,109,105,109,105,109,105,106,110,96,104,111,96,94,104,100,97,100,99,115,113,97,109,117,97,105,84,103,103,100,103,109,109,115,102,92,103,99,99,108,107,100,103,106,108,112,99,106,97,100,103,99,108,108,114,96,112,98,119,105,109,102,104,117,102,111,99,121,113,103,92,111,120,110,105,108,99,99,110,102,103,108,101,106,129,104,102,133,97,121,124,111,135,101,116,123,120,139,116,129,112,100,110,103,111,89,111,96,101,101,96,77,104,93,124,102,88,92,111,91,103,108,107,97,124,105,105,104,101,109,117,113,106,104,100,104,119,105,105,95,91,108,99,105,93,113,117,127,108,116,100,99,116,104,104,103,98,106,111,104,107,115,99,100,102,105,108,112,110,121,102,101,98,99,109,110,132,108,117,110,99,112,104,112,99,109,108,104,106,105,108,108,98,99,106,98,110,109,104,125,105,99,95,104,104,106,106,118,99,117,102,123,106,109,115,110,122,113,95,112,105,105,103,109,115,114,116,100,99,99,111,101,102,113,108,117,111,109,117,123,112,106,118,107,101,100,107,109,109,107,101,104,98,116,97,105,109,107,104,102,114,118,102,107,105,104,106,111,108,103,113,106,106,107,102,109,102,109,115,107,106,124,100,115,107,99,121,113,105,113,115,113,110,116,114,116,101,100,106,104,105,110,102,113,108,89,106,96,84,109,119,104,106,109,100,98,120,94,114,116,94,110,113,120,109,99,116,106,93,115,97,98,108,98,111,112,112,107,120,109,98,103,105,106,102,96,123,115,113,110,96,120,114,108,112,107,91,94,98,104,103,96,117,104,106,104,112,104,96,100,104,100,98,96,91,112,124,108,94,98,109,105,92,101,109,109,112,91,103,109,94,105,102,105,107,98,113,114,108,102,103,87,104,110,106,101,103,96,109,102,108,112,106,98,103,94,114,109,113,95,105,109,100,103,108,99,100,107,97,105,107,107,94,106,107,109,111,109,95,108,104,106,104,95,94,102,104,111,104,107,113,113,100,106,109,108,103,99,99,94,107,103,98,111,115,99,102,112,107,100,104,105,91,111,102,115,101,85,100,111,103,109,97,109,103,97,106,104,118,112,99,112,108,103,113,117,102,85,98,108,103,103,109,106,110,114,112,101,109,100,107,103,106,106,102,134,106,100,99,106,113,106,105,90,115,109,99,115,113,97,109,108,105,111,97,104,103,103,95,105,114,104,116,104,101,111,93,101,109,100,98,104,106,110,112,96,106,106,92,105,88,121,116,91,109,108,102,119,111,109,109,89,113,110,103,108,103,107,106,110,102,103,106,100,105,100,109,110,111,124,109,100,102,111,101,105,97,111,109,109,120,111,108,109,107,97,104,100,114,106,104,106,104,99,110,95,113,99,113,97,105,108,111,107,97,107,105,100,121,107,119,106,110,121,113,114,103,96,113,106,114,110,101,108,101,104,98,100,113,117,110,127,104,110,108,116,117,112,112,106,104,103,100,123,111,101,124,117,115,97,103,105,105,91,98,111,100,114,103,104,102,119,97,119,112,115,99,105,106,101,104,102,109,108,102,114,114,110,86,96,110,109,109,110,103,110,109,110,113,110,95,94,114,111,95,104,105,96,104,98,100,113,110,96,103,89,115,118,98,101,118,103,107,98,110,112,104,102,107,114,105,113,107,107,99,124,96,110,97,102,99,115,101,105,88,107,106,103,89,105,101,100,106,72,99,110,105,105,105,101,102,108,84,107,108,94,97,103,104,92,109,111,106,110,113,106,109,113,110,105,119,113,107,117,102,105,85,98,100,110,109,78,90,98,106,99,102,113,108,103,109,103,110,100,104,109,111,98,105,106,100,107,114,113,116,112,111,107,104,97,110,102,109,97,96,115,109,103,94,100,115,102,100,105,103,104,99,92,102,98,109,108,105,104,110,118,98,93,99,107,115,100,105,100,111,106,104,110,96,92,93,106,106,109,116,94,102,104,97,114,100,98,102,109,121,103,117,100,102,102,103,115,111,105,103,102,111,112,110,115,109,106,108,111,95,98,104,108,95,90,97,102,103,102,113,108,91,94,100,103,95,98,108,99,81,99,102,102,98,113,99,104,100,120,113,97,111,105,112,93,109,98,101,108,102,106,112,103,100,106,100,115,112,99,102,110,97,110,99,107,111,100,102,83,109,109,101,102,99,113,100,96,104,94,105,110,100,104,111,101,96,115,106,104,121,114,104,106,106,101,106,104,94,109,113,111,105,113,99,112,105,97,91,98,111,125,102,110,95,104,106,100,113,105,116,106,95,100,111,104,113,122,94,101,100,102,116,103,104,95,114,114,94,109,115,83,100,97,103,97,106,95,117,101,106,108,89,108,98,111,101,101,102,116,99,116,102,110,105,107,89,119,107,104,89,103,113,112,91,68,109,113,107,108,107,90,98,99,100,118,106,99,104,117,105,101,100,118,110,109,98,112,104,102,101,99,102,95,102,102,103,109,87,101,119,108,103,98,97,104,103,94,98,116,115,107,108,111,111,104,106,102,102,94,98,99,105,98,84,104,96,107,117,104,95,109,94,113,94,100,84,90,91,113,106,107,108,100,106,121,126,105,83,106,103,107,117,97,102,113,109,101,109,116,94,98,113,108,97,96,97,109,98,120,79,115,99,106,129,99,90,105,110,87,100,99,105,91,99,93,99,109,104,98,112,109,101,108,108,116,102,102,113,111,110,96,97, +553.09369,102,104,98,109,79,93,114,102,105,70,92,106,101,83,99,97,116,107,105,94,108,90,101,88,104,99,104,94,95,105,97,112,98,109,98,86,104,94,105,117,136,101,94,112,105,117,107,109,104,107,109,102,80,102,103,111,95,100,105,102,92,90,110,103,105,87,97,105,86,116,111,110,103,96,96,104,97,102,97,98,98,110,119,99,107,110,104,106,96,95,103,107,98,110,109,95,95,93,98,96,112,93,100,106,103,110,100,97,110,99,90,103,102,115,90,89,95,100,114,115,96,91,96,106,111,108,91,84,101,81,113,102,103,112,111,101,97,114,97,109,102,108,112,103,97,97,117,133,95,114,116,117,97,105,100,94,108,98,121,111,103,98,106,94,109,108,103,108,103,107,105,112,94,88,99,92,105,98,104,101,101,99,124,90,104,102,96,84,107,99,98,97,106,95,102,106,102,122,96,114,109,105,100,104,93,98,97,106,109,102,98,102,113,98,117,98,101,112,101,99,105,114,95,103,106,104,121,104,113,109,102,109,114,108,109,112,105,108,101,101,94,112,110,113,96,98,97,105,102,103,106,105,122,108,106,112,84,105,100,104,105,99,93,103,98,104,109,110,105,96,100,115,103,117,120,101,104,102,102,106,103,98,94,99,72,102,86,113,103,109,102,113,115,99,110,104,104,102,107,111,108,106,102,105,97,117,108,113,112,110,99,110,102,110,101,110,97,116,105,91,100,118,100,112,102,102,125,101,107,107,91,98,108,108,114,109,101,90,91,105,117,97,109,86,100,107,105,113,105,119,103,108,109,92,104,113,128,104,92,99,103,97,100,91,99,99,101,103,95,107,102,98,121,111,112,103,105,118,96,108,97,103,102,113,80,95,103,102,111,101,112,92,102,103,99,105,117,102,97,101,98,98,108,87,96,108,96,122,102,97,97,100,97,100,103,95,99,108,101,99,113,100,87,94,106,101,106,104,102,107,92,109,116,103,107,109,102,99,110,118,101,100,108,98,99,112,94,97,112,112,111,114,100,105,113,107,103,104,103,118,106,116,106,97,109,108,115,107,100,90,108,106,110,116,101,116,99,108,103,100,102,110,106,105,101,102,113,97,99,104,108,99,104,101,93,98,97,98,107,110,116,105,117,110,109,103,97,98,106,99,103,112,97,98,105,106,108,115,97,100,111,93,108,113,94,110,108,102,108,100,97,103,107,103,103,100,115,98,103,106,97,95,88,102,107,94,106,95,109,109,111,112,112,72,118,107,112,101,105,98,119,96,106,120,100,106,100,103,111,103,122,99,95,100,90,96,108,118,100,112,111,107,97,103,101,109,109,103,115,116,97,107,94,129,114,114,100,114,105,100,107,106,109,103,93,104,110,99,88,111,115,107,105,104,98,116,104,109,98,93,116,105,111,97,106,111,101,104,108,102,99,104,105,106,93,104,105,114,117,99,118,106,103,105,98,98,97,94,107,112,96,107,102,105,102,109,105,110,105,92,107,104,104,105,101,107,116,91,107,117,103,105,116,108,98,116,113,106,93,109,106,103,117,96,109,100,97,109,98,96,105,95,92,114,109,104,98,114,100,93,106,99,97,108,116,108,108,95,91,111,105,104,99,96,102,91,101,93,103,108,109,100,122,103,103,110,109,105,99,111,103,120,89,95,105,95,110,107,109,94,110,83,115,108,113,110,87,112,117,103,98,96,113,111,114,107,104,112,108,98,116,98,98,100,98,113,96,102,112,106,110,108,95,90,101,111,102,102,110,102,108,105,117,101,75,112,101,99,113,106,94,101,101,120,95,108,104,93,108,103,99,108,101,102,113,99,110,103,111,118,107,104,109,104,109,108,128,99,110,104,108,109,108,109,87,114,98,108,105,108,89,104,101,108,102,102,86,89,103,108,96,101,114,98,110,109,113,100,92,92,107,123,97,102,99,99,110,96,99,92,109,114,104,113,100,99,104,104,118,106,109,113,112,112,96,110,90,100,105,99,111,106,111,121,106,113,106,100,128,106,110,98,106,114,105,107,108,112,109,105,107,116,101,104,113,90,94,106,110,98,107,110,104,113,111,106,106,112,101,119,102,105,116,110,107,105,104,113,101,103,106,99,110,113,105,109,109,103,116,96,104,103,106,99,99,94,105,109,103,112,102,92,103,113,108,97,105,96,103,102,110,104,92,109,110,104,103,106,105,110,98,110,103,102,104,111,107,91,102,105,114,111,93,107,97,92,100,106,120,95,100,97,95,104,105,96,102,107,104,91,99,98,106,88,100,87,111,102,110,110,102,108,95,108,90,114,101,103,105,105,105,118,103,117,110,106,96,116,106,117,104,113,104,114,95,94,111,111,108,117,110,122,130,133,134,115,144,138,113,121,122,133,118,121,106,106,100,125,100,108,105,105,116,113,93,93,112,98,108,95,101,104,102,102,109,109,113,97,98,105,114,108,88,106,117,104,90,94,111,104,108,84,104,98,94,94,97,109,111,88,104,94,112,97,107,113,107,103,111,108,96,115,98,102,96,108,108,107,105,102,106,96,107,104,110,91,109,103,110,108,103,110,116,108,92,103,107,92,116,99,113,107,97,114,101,100,99,107,96,102,90,109,109,103,103,106,108,105,108,107,106,103,97,98,104,116,109,103,98,102,103,102,120,105,103,102,100,103,102,111,103,106,102,105,105,107,112,100,108,105,98,109,113,114,112,104,112,93,90,108,112,109,107,105,101,105,110,111,119,102,101,107,120,113,110,102,106,120,97,94,98,99,104,99,108,115,111,98,110,101,102,99,101,109,102,114,101,93,98,107,104,100,121,98,100,108,110,107,102,106,105,112,110,103,103,110,107,118,99,96,111,109,108,130,106,105,102,109,95,114,93,113,98,106,106,106,109,103,104,102,109,98,106,108,105,102,95,104,117,112,69,105,93,110,117,108,116,103,102,110,105,112,106,101,98,108,103,104,106,94,101,126,108,96,119,106,98,109,103,94,114,115,109,108,109,105,108,103,101,103,96,88,91,114,102,125,103,107,106,111,102,106,113,106,100,110,113,90,108,114,111,106,105,128,102,102,115,115,96,102,104,115,108,107,105,105,107,96,107,120,114,103,105,116,101,91,93,110,109,111,103,99,91,109,113,99,95,95,93,86,99,117,106,99,109,114,91,108,106,106,103,94,101,116,81,101,130,117,116,73,119,105,98,98,94,106,116,79,99,103,105,106,94,97,112,88,104,100,115,101,108,105,92,109,108,99,97,105,106,102,106,119,107,111,107,105,95,99,106,101,99,95,110,108,101,103,81,110,102,91,101,98,102,118,105,106,102,95,118,105,92,97,105,102,104,97,74,108,110,115,101,121,95,93,104,96,111,97,109,113,105,98,101,99,97,99,101,106,112,105,87,102,104,97,105,91,107,106,102,105,94,96,97,98,108,115,102,102,100,103,109,107,100,105,93,115,99,96,89,107,104,91,101,87,98,110,105,106,109,99,74,96,98,108,102,111,111,103,115,116,120,110,113,133,92,98,103,103,102,108,105,99,122,109,105,100,100,108,85,108,105,96,96,112,99,102,101,101,121,97,103,103,106,102,98,112,110,96,94,108,92,103,108,106,106,105,89,110,105,114,99,111,103,102,103,118,100,99,109,120,111,104,97,104,109,97,93,96,101,113,111,114,112,113,98,99,100,98,107,122,108,99,110,105,105,87,110,110,99,106,113,94,104,84,105,108,106,99,103,105,97,108,117,107,108,101,100,102,91,91,107,100,106,99,101,99,103,104,100,98,105,113,96,98,98,104,101,95,101,107,111,98,105,107,108,88,108,93,101,110,95,109,96,104,106,109,94,99,106,113,101,99,122,98,108,112,88,110,108,124,100,94,98,100,107,106,103,108,105,107,101,108,100,109,99,91,113,98,121,107,107,106,99,107,106,102,93,105,112,93,117,108,93,105,91,102,79,104,88,102,89,97,105,109,112,103,103,108,99,101,107,104,97,118,104,96,105,103,98,102,103,113,92,108,107,95,118,109,107,97,107,105,100,108,98,99,91,102,104,106,92,105,100,95,105,99,104,107,115,83,107,118,105,114,103,101,100,112,101,108,103,102,108,108,95,106,117,104,98,95,111,95,95,100,102,99,120,101,104,102,110,101,110,108,102,103,104,110,102,103,99,115,113,105,104,108,91,114,109,102,108,108,104,109,110,107,97,109,106,102,113,88,95,101,103,106,107,106,109,97,84,100,108,112,99,97,96,103,100,105,106,93,106,105,105,103,98,98,98,108,101,104,100,106,105,106,101,107,105,102,112,96,103,89,110,100,103,102,103,113,100,101,100,102,110,106,116,96,105,103,103,108,108,109,107,108,108,98,101,105,109,128,117,105,99,97,113,94,114,115,102,97,101,106,97,108,99,108,111,117,112,95,105,100,108,112,87,103,92,116,94,106,106,105,104,105,102,96,115,112,99,110,110,105,98,105,102,95,102,97,94,107,95,116,108,107,104,107,104,92,88,97,104,101,96,100,109,108,107,111,109,107,99,89,99,104,104,107,99,102,107,100,112,98,102,94,113,104,102,99,105,101,110,125,105,98,103,102,96,112,103,102,105,109,117,103,101,110,103,100,106,87,101,105,116,106,112,109,109,103,93,101,106,99,99,95,97,105,124,123,112,100,103,95,101,92,106,108,92,90,106,112,85,113,114,106,115,97,109,96,111,96,104,97,107,101,98,103,107,97,104,93,105,104,91,101,101,113,110,102,100,81,96,109,103,103,99,94,109,100,89,100,97,98,103,98,101,72,132,110,102,101,102,103,86,105,101,107,100,98,113,116,95,112,95,108,98,110,109,100,91,105,97,110,104,96,105,108,93,94,101,108,89,103,100,99,107,79,99,96, +553.23456,93,92,92,78,91,109,99,73,99,99,107,108,99,104,104,78,92,103,88,102,101,98,97,102,103,91,106,94,112,99,97,109,97,91,115,103,108,108,99,102,104,99,99,98,107,102,100,109,103,99,117,100,109,105,106,96,98,89,102,88,106,103,109,99,107,101,112,97,94,110,91,105,90,105,100,102,97,108,101,112,106,111,101,113,96,104,101,105,100,99,98,100,99,102,99,108,101,98,91,99,111,101,98,96,113,104,96,112,99,95,106,95,100,95,107,101,103,105,116,102,102,100,103,116,106,90,106,95,103,100,99,99,106,95,106,113,100,111,95,90,117,99,90,102,100,94,127,111,107,96,103,108,121,102,96,103,112,100,103,97,98,115,109,105,105,98,99,77,103,103,104,112,101,92,90,111,101,99,117,99,110,108,106,100,91,102,104,91,90,106,98,94,90,108,120,88,94,103,111,111,111,88,106,98,100,108,107,97,106,102,96,101,108,115,99,102,112,117,97,100,110,106,110,103,92,110,109,106,105,108,104,99,119,96,97,101,103,107,108,100,82,101,111,115,109,98,91,105,94,104,109,122,80,99,103,109,107,104,98,99,97,100,97,75,97,116,91,100,95,92,110,107,97,109,113,108,108,106,97,106,104,112,102,100,87,112,102,110,93,93,92,107,114,123,110,102,95,98,107,96,101,111,98,97,104,98,107,119,86,115,91,103,98,108,106,68,109,105,103,96,98,97,109,104,94,103,88,88,107,104,103,93,100,107,106,110,105,104,115,103,104,99,91,101,101,97,102,110,89,108,92,108,109,108,99,96,112,109,91,96,99,105,110,100,92,107,91,97,106,94,95,104,116,102,98,96,110,100,100,112,107,108,94,100,103,90,106,95,103,110,111,87,106,93,106,98,102,118,99,105,88,102,101,95,113,103,96,102,107,106,92,82,106,116,104,105,95,104,96,108,107,111,93,85,104,92,95,95,100,108,101,107,100,103,99,111,99,103,96,112,101,98,101,112,94,122,105,78,91,108,97,102,110,103,109,98,93,107,109,103,92,101,107,94,105,117,105,99,98,98,106,99,105,111,106,113,95,108,108,114,107,108,102,115,96,90,96,90,102,89,113,113,92,100,104,107,110,105,111,100,113,103,91,99,95,112,95,108,112,112,101,100,96,97,109,95,100,108,90,95,103,108,91,106,104,110,95,121,110,104,93,108,105,114,95,99,108,110,100,104,112,104,99,104,106,95,97,99,98,100,108,116,107,84,92,104,125,104,101,95,116,106,105,105,100,99,104,103,90,102,87,103,103,99,102,93,115,103,105,110,103,96,106,96,103,107,101,105,107,107,112,117,97,112,104,111,105,110,98,96,103,99,111,101,105,107,100,98,111,115,110,109,110,89,103,87,102,97,94,98,110,100,95,91,104,102,106,108,106,104,96,104,105,99,86,96,105,101,108,101,80,122,96,97,107,100,104,104,103,107,96,104,104,99,99,86,112,102,100,95,121,111,108,102,118,88,108,102,110,115,106,96,108,106,100,100,106,100,102,116,102,102,105,95,101,104,85,101,100,103,91,107,108,103,109,94,93,107,100,80,99,102,86,90,100,110,98,108,99,108,96,109,107,103,96,98,102,91,112,101,104,103,102,90,101,110,105,105,113,104,107,114,105,99,116,92,95,94,115,100,99,92,105,93,95,100,109,108,99,104,114,90,122,101,104,102,97,101,107,96,111,111,95,110,97,99,104,97,71,95,93,97,100,108,90,114,103,94,108,95,110,105,107,105,93,108,112,113,107,94,109,98,103,121,83,100,102,109,106,106,97,97,99,114,101,109,102,96,95,106,123,101,100,102,121,121,105,117,104,107,105,107,101,108,92,96,101,107,104,102,96,101,106,99,91,108,97,100,106,94,94,112,95,95,110,86,104,90,96,74,95,104,95,101,100,92,105,102,100,111,104,100,107,90,106,96,100,94,109,103,94,106,98,83,90,99,114,102,96,98,106,112,110,109,99,92,95,104,93,105,97,97,94,110,93,96,106,109,74,96,104,107,106,106,95,99,105,106,100,87,96,101,111,98,101,101,95,97,104,96,96,105,103,98,109,116,106,98,106,102,114,102,90,113,104,107,97,111,98,98,104,101,108,95,102,93,108,105,93,95,100,94,100,112,102,96,109,95,113,104,126,100,90,104,104,107,102,108,86,108,100,124,104,112,103,89,109,95,107,95,110,103,96,103,99,107,108,94,98,107,100,95,93,106,103,94,104,101,101,117,106,101,105,102,109,106,96,101,90,110,99,97,99,131,109,110,110,100,94,102,115,108,98,109,106,108,113,117,106,99,94,99,107,106,109,98,100,118,120,102,124,115,116,131,138,130,127,129,130,128,118,121,130,122,103,109,115,114,96,95,108,125,108,82,101,91,120,93,103,107,88,116,104,109,109,103,98,102,101,108,99,111,96,122,82,102,110,93,109,105,105,99,99,97,113,97,98,102,107,103,106,89,113,87,85,105,104,105,113,106,106,120,111,98,107,102,108,102,90,96,107,112,101,121,107,107,102,117,109,102,116,107,112,93,107,97,109,113,98,101,101,95,118,107,102,109,100,100,97,100,106,101,112,125,105,104,115,108,115,102,109,104,104,106,106,123,98,91,103,105,113,98,98,112,101,103,106,92,110,103,115,100,92,106,99,111,109,107,101,107,107,101,95,107,113,112,116,105,100,98,103,100,113,106,103,107,107,97,107,100,110,113,90,113,116,107,90,114,118,108,107,107,100,111,106,106,98,94,112,87,112,122,112,116,95,103,105,118,100,113,109,91,111,108,107,99,97,118,101,104,99,105,109,100,97,102,109,102,100,105,106,99,110,100,103,98,110,103,92,121,108,113,102,104,102,110,104,109,95,112,104,124,92,97,107,101,108,94,118,113,82,92,101,89,95,109,103,113,113,110,113,115,91,100,102,98,97,109,103,105,108,101,98,94,105,107,97,97,107,97,108,106,102,101,110,98,99,111,106,105,88,81,98,110,111,104,114,104,99,99,102,98,105,100,86,107,106,108,107,110,109,110,109,106,106,110,98,102,107,106,111,111,113,97,116,98,115,103,101,102,101,102,100,118,106,111,105,109,108,98,97,119,108,116,113,113,105,98,79,109,102,104,102,100,97,104,101,105,107,102,107,107,112,102,99,106,111,110,103,100,104,103,112,108,105,100,100,102,105,98,98,100,96,106,96,102,101,99,122,118,113,105,112,106,90,101,106,123,100,97,102,94,113,94,103,98,95,99,115,110,100,96,95,104,98,105,109,100,101,101,105,106,100,90,106,104,105,97,105,93,96,112,89,108,102,106,101,107,102,113,103,108,102,108,103,109,103,106,107,101,102,107,87,117,101,111,99,117,98,120,98,99,109,106,99,101,111,101,112,108,109,108,99,99,96,105,102,102,99,116,95,103,91,112,95,104,105,105,96,94,99,112,110,110,90,117,105,106,106,110,103,105,128,108,109,107,98,97,103,104,104,106,98,109,100,108,119,109,103,105,105,107,109,107,97,108,98,104,105,105,93,101,107,104,92,116,122,99,92,103,100,96,95,106,106,106,100,101,84,98,95,104,103,113,97,102,103,106,102,111,101,107,81,109,106,102,81,113,110,114,108,98,98,107,102,89,98,104,99,103,103,106,104,78,98,107,102,110,102,106,94,111,112,79,94,104,81,100,92,99,102,102,101,100,102,110,113,107,101,106,110,97,103,103,115,108,108,107,101,104,111,98,99,103,104,100,105,106,103,117,104,108,113,106,101,106,105,106,100,107,103,98,94,109,109,119,99,79,97,115,100,105,93,106,96,108,113,92,96,107,99,119,108,95,117,95,104,104,95,111,101,103,97,103,107,110,111,105,100,107,104,99,96,102,98,108,103,96,106,104,113,92,123,100,106,107,101,103,107,110,88,121,98,95,99,109,98,98,103,108,105,103,107,113,100,102,107,112,92,116,115,106,111,123,114,101,100,99,111,100,109,102,100,101,113,103,109,100,97,108,96,112,107,100,100,100,106,103,113,95,112,95,109,97,100,111,113,104,115,101,110,94,98,107,115,108,104,100,102,120,107,99,109,122,106,97,106,91,108,101,105,101,101,112,121,109,88,110,97,105,100,97,99,95,99,117,102,107,105,110,103,94,98,106,101,107,107,103,96,106,118,109,124,98,120,119,95,107,96,106,98,97,109,105,105,100,113,103,98,110,101,106,94,100,109,102,102,116,100,108,101,101,98,109,101,103,97,95,96,124,111,101,109,87,103,95,95,101,112,110,105,116,113,107,118,105,106,104,97,104,116,98,107,102,122,105,110,116,89,105,107,101,103,99,100,99,98,104,104,101,112,120,106,98,117,108,107,116,117,100,92,98,94,109,105,93,94,106,95,106,108,98,107,100,108,97,109,113,96,95,98,110,106,102,98,102,100,95,108,98,117,98,106,98,111,114,100,103,94,106,98,98,90,102,111,105,118,104,101,114,99,97,105,107,99,92,100,125,118,102,109,99,99,94,109,90,109,101,84,113,104,101,110,82,119,106,115,92,106,107,88,93,108,100,103,100,105,105,103,102,106,110,105,108,100,94,108,93,113,109,121,96,106,99,115,97,98,108,112,132,110,97,96,101,95,98,98,94,89,88,108,97,107,109,112,117,108,101,106,104,105,95,130,100,105,92,98,108,112,101,100,97,134,112,101,89,102,84,107,102,112,110,110,109,99,101,101,102,113,108,101,101,94,104,96,99,115,95,102,88,103,91,107,92,102,97,99,100,70,91,113,91,101,77,96,103,108,100,94,96,101,91,98,100,99,117,93,104,101,117,105,98,89,98,104,98,94,99,108,104,103,107,108,104,104,101,102,107,101,103, +553.37543,102,106,106,93,97,100,99,99,103,101,98,94,88,103,87,104,99,108,96,90,103,101,107,107,98,101,107,118,104,108,95,91,117,96,109,103,113,101,105,116,102,112,107,87,109,109,104,115,90,113,88,106,98,97,100,103,95,86,109,90,89,103,103,101,108,108,105,99,102,111,108,91,100,110,105,115,99,90,95,102,102,113,101,101,96,95,110,115,103,96,108,103,87,82,113,84,100,100,100,110,98,111,99,102,76,105,105,100,103,112,106,103,114,104,97,76,104,98,82,104,93,111,102,114,96,113,115,98,112,104,107,115,99,98,103,99,105,101,72,105,103,117,103,112,100,101,109,104,97,103,107,105,103,117,95,107,95,99,104,92,85,99,111,107,107,107,97,110,104,108,96,105,101,113,104,111,111,103,102,100,97,112,107,98,110,98,103,110,96,95,110,92,110,104,102,106,106,95,106,97,99,112,97,99,104,114,79,107,116,122,94,103,112,106,112,90,109,114,94,95,125,110,96,109,99,107,107,113,100,108,98,103,101,109,115,110,100,110,105,97,98,95,118,111,102,114,100,105,98,111,101,104,106,118,111,103,110,103,99,106,107,104,111,96,95,102,103,102,96,107,95,104,93,100,106,109,95,115,105,98,92,106,98,103,98,106,98,115,111,100,102,100,116,120,110,105,105,90,104,104,78,99,98,113,104,109,118,107,105,109,96,111,98,106,116,106,109,102,112,99,103,118,110,105,106,103,121,97,109,117,109,95,115,110,110,81,101,106,104,99,107,99,100,93,110,108,112,97,100,109,112,105,120,103,106,104,112,126,106,107,112,100,103,83,112,113,113,112,107,113,105,106,108,97,91,96,101,114,97,113,108,107,98,108,102,76,95,98,109,104,98,90,98,103,104,100,109,102,100,113,106,106,98,116,97,118,99,106,107,113,101,105,116,99,103,92,96,105,97,111,108,98,97,91,118,96,106,102,106,103,67,103,107,104,108,99,95,104,94,106,108,97,98,102,96,95,102,93,114,87,101,110,103,108,100,99,108,98,105,107,94,98,101,103,112,102,112,112,103,106,90,107,101,114,103,118,108,117,88,123,115,106,118,123,112,94,109,108,107,94,110,104,99,105,105,103,105,107,104,110,111,107,100,115,107,93,104,94,106,96,101,101,112,103,99,94,103,96,97,98,113,96,98,92,106,106,102,103,101,99,100,111,112,100,106,94,96,106,109,106,92,104,90,118,117,109,99,105,104,113,97,113,110,99,114,104,98,100,104,105,111,113,85,106,113,107,121,104,108,99,103,108,108,110,102,98,107,95,110,117,101,108,108,104,100,104,105,97,104,95,91,109,103,88,106,109,102,98,109,105,104,101,105,96,99,102,107,99,110,113,116,105,109,86,105,98,91,100,106,100,113,109,109,123,102,108,113,111,102,98,104,107,104,103,108,105,96,91,100,109,106,115,104,108,103,90,97,94,115,106,103,108,102,91,103,100,112,110,109,98,113,114,95,109,96,108,107,87,108,105,111,112,91,89,114,91,105,98,101,105,106,107,132,102,92,101,100,103,114,102,99,109,113,111,99,101,98,103,95,96,119,112,104,103,101,97,101,95,104,104,100,99,83,106,103,95,105,92,92,98,96,98,106,101,109,105,108,96,101,104,89,119,87,101,92,116,113,100,104,94,109,108,101,98,100,106,104,101,100,108,106,101,101,100,106,68,102,111,102,106,110,83,105,91,101,103,94,105,102,105,99,102,116,91,100,104,113,114,98,93,107,98,101,99,116,113,112,104,107,102,101,101,103,94,108,103,95,108,105,123,100,114,91,110,115,108,98,99,100,98,104,106,104,97,108,102,98,93,102,98,106,97,98,104,100,99,103,106,100,101,104,102,72,110,103,102,99,113,97,111,93,105,113,110,110,104,109,109,99,90,108,104,95,95,103,112,109,106,95,98,101,102,102,104,102,100,95,99,110,107,105,101,101,114,101,113,110,99,105,96,107,106,108,105,105,107,82,105,106,98,101,103,118,106,100,99,107,106,108,112,112,94,116,107,103,79,99,102,90,99,100,103,117,108,100,105,103,99,97,84,98,104,106,94,100,108,101,104,100,99,107,112,94,99,97,99,95,108,93,113,117,97,113,104,96,113,100,111,117,98,103,105,100,100,103,105,87,98,109,106,106,101,113,100,110,102,112,109,133,98,106,86,108,115,98,96,99,107,105,100,106,108,105,88,92,106,99,90,97,100,97,103,128,107,105,105,110,81,98,113,96,93,103,99,115,104,107,103,110,99,93,114,100,110,99,98,103,107,104,93,103,106,107,104,98,114,110,102,105,116,103,101,119,103,112,110,116,112,101,116,107,125,114,112,118,115,123,133,107,144,102,136,126,124,129,121,114,105,101,126,103,96,103,100,107,96,71,103,102,109,89,137,98,118,108,103,92,116,103,112,100,110,112,105,109,125,102,99,116,99,103,101,102,94,98,100,100,104,100,105,107,139,125,107,82,109,109,96,108,83,101,106,105,102,94,103,87,104,123,103,92,86,104,106,111,100,96,113,113,96,112,92,103,98,101,100,104,89,110,103,109,105,101,135,112,110,115,104,105,94,102,108,101,115,103,106,99,107,106,101,107,89,102,102,114,110,101,101,101,102,100,99,108,104,86,102,103,96,98,108,116,110,103,108,108,111,106,106,103,101,110,97,96,111,95,106,100,107,79,106,110,104,109,108,103,86,112,105,114,95,111,104,103,98,110,94,105,103,111,108,128,105,99,103,99,109,82,86,95,103,102,107,104,100,103,104,107,93,102,105,106,98,98,98,98,87,95,109,99,102,108,106,87,108,94,98,100,111,88,110,101,108,102,101,111,94,99,112,96,107,118,102,91,109,109,113,112,101,109,105,112,94,111,103,93,106,118,105,121,102,104,109,95,91,124,99,98,100,106,108,88,98,91,104,106,99,104,102,96,95,103,96,102,105,116,111,87,113,109,102,110,108,93,98,108,107,99,111,111,105,102,94,100,95,101,106,109,108,118,106,87,113,101,95,102,100,105,106,106,104,89,122,101,100,91,90,98,97,102,98,98,102,118,97,104,111,109,98,93,103,111,93,93,96,104,92,103,119,108,112,94,97,95,104,105,101,112,100,108,94,88,93,95,92,108,104,107,103,117,75,104,101,99,99,111,103,113,112,95,116,78,85,97,116,109,106,114,106,101,112,100,129,94,101,95,105,102,113,116,104,103,97,101,112,106,96,103,108,98,88,98,104,104,120,104,108,96,104,102,100,112,89,111,91,100,77,106,90,102,87,111,91,102,107,115,98,108,122,100,100,105,118,97,95,102,100,99,92,114,104,93,116,99,107,98,97,97,103,112,112,108,109,89,103,104,111,91,90,100,115,91,106,107,103,92,96,104,90,110,115,106,102,112,101,107,116,113,99,98,96,108,123,106,96,102,102,97,102,100,101,107,95,96,98,112,104,100,95,102,103,104,110,98,103,109,105,90,93,94,104,107,110,105,115,116,94,108,100,90,95,86,97,112,109,116,101,101,96,98,122,105,83,98,102,103,106,92,103,113,108,117,96,107,99,107,100,106,98,110,88,102,109,103,99,110,93,99,106,105,107,104,108,101,109,97,97,114,105,101,103,109,101,101,106,96,96,100,101,100,105,108,110,96,100,101,105,106,94,109,100,110,96,94,108,109,102,99,102,124,88,109,108,106,97,96,107,111,111,93,96,104,106,109,101,106,108,113,103,118,95,108,95,110,100,96,111,103,95,125,94,96,98,113,98,109,106,100,111,96,100,116,102,113,109,99,101,98,96,111,99,95,116,102,84,106,109,97,116,122,109,107,93,100,106,107,107,104,102,98,105,102,101,102,105,108,99,100,90,101,97,88,79,103,100,95,95,100,120,99,119,112,98,103,93,102,109,100,101,99,99,105,99,91,100,99,109,87,109,102,99,121,110,101,119,104,96,104,107,108,100,109,99,103,107,106,108,93,97,113,109,108,97,86,95,104,108,100,94,96,103,113,100,95,95,106,115,99,105,110,91,94,104,110,97,108,107,105,108,101,103,101,93,112,108,104,108,86,107,100,107,96,106,84,91,108,99,113,94,94,99,94,89,104,109,99,97,110,96,98,114,98,107,95,102,98,105,105,107,94,97,100,94,113,96,106,114,107,95,101,106,103,83,106,105,103,97,100,78,102,106,108,101,93,104,107,91,104,115,90,115,109,80,102,100,101,103,105,105,110,96,99,111,106,109,92,111,98,98,112,107,92,98,102,106,109,110,97,100,93,115,104,108,108,106,110,106,97,106,112,109,94,70,114,95,99,91,112,102,105,97,92,102,106,100,100,87,106,98,104,104,104,97,110,92,111,104,98,114,103,100,91,92,107,111,92,106,92,115,93,109,107,111,90,95,106,110,123,97,106,107,102,88,110,93,109,96,106,121,117,102,96,99,107,97,109,104,94,100,97,104,106,93,96,104,113,88,107,97,98,97,89,96,79,95,71,103,108,119,102,101,94,106,100,99,89,99,92,88,95,92,93,113,111,98,107,98,97,118,91,104,101,108,95,107,105,109,101,103,109,107,97,80,100,100,104,109,116,102,100,106,113,102,104,105,102,96,96,104,100,105,107,107,90,92,88,99,77,107,107,95,107,102,127,112,103,112,103,95,106,106,118,109,98,106,91,102,98,100,93,102,113,94,94,111,101,97,98,107,96,114,98,110,92,111,91,99,97,104,104,98,105,102,90,104,97,96,104,104,105,99,91,82,106,101,92,91,100,115,116,103,111,104,110,116,101,112,100,101,102,102,92,103,95,95,87,99,83,86,96,110,103,111,107,100,102,95,100,106,103,98,112,95,91,97,101,111,104,94,104,99, +553.5163,120,103,95,106,88,116,84,99,120,96,73,110,87,114,112,108,98,103,100,103,103,118,99,108,106,97,111,100,96,104,115,98,103,99,110,115,121,98,95,106,104,97,99,114,95,105,95,101,121,105,102,87,98,95,112,89,104,90,110,104,104,97,99,97,108,89,106,110,96,111,108,103,126,104,108,109,96,87,112,99,112,113,108,91,100,110,104,104,63,95,107,108,107,94,86,103,103,94,99,109,108,109,85,100,99,102,101,111,94,98,105,90,103,109,119,104,102,121,111,118,94,98,97,97,107,110,122,94,102,114,112,108,100,111,114,108,110,113,96,101,103,103,100,100,94,92,102,93,108,102,91,107,98,94,100,113,102,93,107,109,110,100,103,102,96,105,87,90,106,94,102,104,95,126,96,114,97,86,101,113,105,107,112,83,99,100,90,88,105,101,105,100,106,79,104,104,99,116,108,130,95,104,104,108,95,99,96,97,109,101,105,105,109,104,100,108,101,95,104,113,109,99,108,103,110,98,108,72,104,101,99,116,104,109,110,113,109,89,107,108,85,103,104,103,107,120,103,110,109,104,104,97,105,121,101,103,102,105,101,74,105,70,97,100,103,107,101,101,104,100,106,114,108,113,108,110,107,105,92,110,96,104,105,100,100,113,99,114,99,107,105,99,115,96,120,105,114,108,109,107,83,96,110,106,101,118,106,113,107,110,93,107,123,102,102,105,102,112,100,110,114,103,112,96,107,107,101,92,113,121,120,105,99,111,113,112,106,105,100,103,103,111,127,102,99,110,109,107,100,110,120,107,113,103,115,112,111,101,101,106,98,100,123,97,95,100,99,109,103,112,118,95,102,96,100,90,99,99,101,105,109,110,106,104,102,93,105,103,104,102,103,91,97,110,110,103,99,104,114,106,94,99,100,104,112,84,102,114,103,97,97,90,94,102,100,101,104,121,104,103,114,105,97,115,105,97,106,112,109,110,105,108,106,91,98,97,105,109,94,121,112,102,107,99,114,113,100,100,113,102,110,103,90,117,124,111,100,98,114,96,102,94,103,102,102,112,104,108,106,103,110,102,108,104,109,115,96,109,100,104,102,123,104,111,100,105,112,105,92,106,113,110,103,103,108,104,93,91,108,106,99,104,94,103,99,131,105,92,116,111,108,106,99,114,108,102,114,105,87,110,116,118,114,100,122,112,107,105,108,96,102,107,109,106,109,99,109,101,106,99,106,116,95,102,114,103,119,113,110,99,110,114,105,100,109,103,103,103,109,101,110,93,101,112,104,120,113,102,103,105,102,101,105,105,118,104,102,117,104,102,120,105,105,105,104,112,106,113,110,115,117,123,100,109,115,117,97,108,92,113,114,108,102,113,108,113,109,99,95,112,109,99,108,101,119,102,96,121,105,116,103,107,117,97,106,102,100,112,103,104,102,108,106,116,107,107,109,108,97,91,102,95,94,92,116,90,106,105,101,124,88,113,108,112,109,108,102,106,104,116,118,105,104,103,106,109,100,108,106,103,106,102,111,103,101,112,107,103,117,101,105,104,119,111,119,102,93,106,100,122,113,106,99,112,110,106,108,114,94,94,108,83,95,102,116,106,95,110,97,87,109,109,113,100,102,100,106,104,111,98,107,98,105,122,104,98,107,106,87,104,96,100,108,103,98,98,110,103,109,119,106,99,100,105,97,107,97,104,105,98,107,110,115,109,108,107,109,102,110,113,118,101,96,112,103,102,86,100,108,104,103,103,116,114,104,109,119,107,109,109,104,105,111,87,96,112,99,104,108,105,108,109,115,111,112,98,102,113,106,110,100,94,92,133,110,100,109,108,118,92,117,105,114,110,119,112,109,103,110,98,95,103,105,103,102,110,103,102,114,102,106,105,111,112,105,103,106,98,110,100,108,103,113,103,107,101,99,134,108,90,104,111,112,120,107,103,118,99,109,116,99,106,109,100,110,102,108,98,112,108,109,109,101,103,115,102,104,106,110,80,109,105,114,107,101,106,98,125,100,104,117,116,96,114,91,111,108,109,103,104,102,99,99,104,108,112,103,108,113,110,103,101,100,102,103,109,108,111,94,108,112,83,111,104,105,105,116,106,100,104,91,114,114,118,102,114,97,110,99,95,99,103,103,113,95,105,120,100,107,105,102,113,105,105,93,106,110,113,104,99,112,106,106,94,88,106,105,106,97,107,107,108,110,98,109,111,110,110,96,104,108,105,113,102,106,109,100,110,121,103,109,106,71,99,99,105,97,112,105,103,92,99,112,95,101,110,109,91,100,111,109,97,112,109,109,120,106,108,92,107,115,101,102,95,94,98,109,105,102,99,108,99,108,108,100,112,96,113,118,111,126,113,124,123,128,144,133,124,138,118,130,123,121,109,120,106,116,103,105,116,117,109,99,107,95,101,104,97,106,110,103,102,107,109,103,106,108,91,107,106,104,110,127,117,99,119,100,111,117,113,104,107,102,96,101,109,116,99,91,112,132,99,110,104,95,98,107,113,101,93,91,118,106,115,104,98,106,104,107,107,120,102,102,103,109,113,96,103,97,102,107,112,107,109,95,103,100,108,105,90,109,109,83,120,108,101,117,101,108,106,111,113,115,112,108,108,100,108,85,114,121,98,123,109,99,116,111,115,87,103,100,103,113,98,90,103,102,96,106,109,110,111,99,113,108,120,97,109,101,103,122,110,106,121,97,105,84,103,99,114,106,111,109,120,115,100,114,116,111,112,108,112,107,109,109,98,101,97,100,107,108,123,107,111,103,100,107,112,109,93,98,115,109,103,104,109,99,105,104,124,104,101,108,115,106,107,112,107,113,116,123,117,106,109,115,110,105,106,103,109,104,107,109,107,105,92,89,106,95,102,116,108,119,83,112,98,111,109,112,109,107,108,110,107,105,107,99,109,101,105,103,99,91,107,101,112,106,99,104,112,110,111,108,100,95,102,111,108,109,111,111,112,103,108,112,105,103,109,86,108,117,102,104,102,112,102,109,114,103,98,104,107,90,113,100,115,101,105,109,108,96,110,124,99,108,89,112,96,110,108,108,119,93,102,113,125,98,107,107,113,116,107,110,111,113,105,121,99,113,114,110,113,112,105,104,87,99,102,109,102,99,95,93,106,97,113,99,106,84,126,103,102,109,96,109,112,114,100,100,103,103,106,103,108,108,113,102,99,111,99,109,105,101,107,101,102,104,109,106,115,107,113,107,114,108,83,103,109,108,100,112,106,114,116,108,114,102,107,113,112,112,102,119,91,99,109,99,113,102,99,102,94,99,110,108,126,103,100,102,109,103,101,98,102,111,111,117,106,111,106,102,102,110,105,103,114,109,107,84,117,109,120,107,103,106,105,110,107,104,108,119,106,105,117,91,110,103,90,116,102,95,107,113,106,106,108,128,106,113,106,87,99,105,106,106,111,106,112,103,99,114,112,92,106,90,115,110,100,107,92,125,104,105,102,105,118,117,107,81,103,99,113,102,113,104,121,119,103,104,102,113,110,105,110,109,116,109,121,99,109,99,105,100,102,106,98,105,116,109,105,117,104,102,91,107,107,103,115,105,93,108,73,94,108,117,103,105,112,98,113,78,107,117,115,113,95,103,109,107,98,102,104,99,88,114,101,105,105,108,98,72,102,103,112,102,110,87,107,105,110,108,116,104,109,103,107,111,103,117,113,104,98,110,121,109,96,98,112,106,99,106,107,109,112,111,105,107,99,113,107,112,107,106,108,107,99,107,120,111,112,113,120,110,90,107,91,110,107,113,101,105,88,110,118,108,103,101,107,109,95,93,100,104,101,109,111,108,109,95,105,93,103,107,106,101,101,105,104,106,96,95,116,109,105,109,111,101,116,102,89,94,103,106,103,112,101,99,114,109,93,113,109,123,112,103,109,103,101,100,103,112,102,121,103,101,109,116,112,103,109,100,108,90,112,103,111,109,105,103,119,105,108,111,116,108,102,109,103,110,104,97,100,93,81,115,96,105,109,105,108,117,100,97,98,130,102,111,102,108,100,112,107,108,102,124,113,107,107,100,106,96,93,108,95,108,114,101,97,112,95,107,78,108,101,103,100,103,97,112,105,101,103,106,113,97,107,116,111,100,105,95,102,106,106,108,124,112,106,109,119,89,99,94,100,102,100,117,103,96,106,107,112,107,111,103,113,103,96,105,98,102,114,101,102,106,106,109,93,107,96,112,92,96,107,107,99,114,112,99,109,104,114,98,99,103,99,103,108,112,105,106,92,114,100,109,106,100,101,105,110,100,118,90,103,96,110,102,97,95,126,114,113,109,103,120,101,112,109,109,114,109,108,101,111,113,103,99,105,104,101,113,100,116,106,95,106,110,103,102,95,97,99,109,116,103,109,115,110,102,105,106,100,119,114,93,94,98,108,113,105,113,106,107,116,91,111,100,109,100,117,98,114,105,101,116,96,100,103,110,104,90,95,109,107,101,100,104,104,107,103,108,103,102,121,101,105,108,84,89,96,93,107,111,111,127,107,95,109,88,103,105,111,109,109,98,109,111,92,110,100,105,117,114,132,122,114,119,112,94,97,105,79,100,106,103,101,101,103,99,109,120,103,106,103,107,98,99,113,113,109,103,109,106,106,117,110,105,99,106,105,95,105,108,120,111,104,98,108,112,101,105,101,110,106,99,99,119,119,90,104,105,98,115,96,105,104,109,125,102,95,98,104,108,93,99,100,102,106,105,102,105,102,114,118,90,95,123,103,116,97,91,104,85,121,104,121,107,110,103,99,118,102,108,104,109,106,119,98,101,108,104,98,106,100,118,98,106,108,104,103,103,102,107,99,105,94,91,93,116,104,98,101,101,108,92,106,87,107,94,107,103,108,121,101,95,106,125,122,112,104, +553.6571,110,103,99,93,90,97,96,100,109,105,91,84,105,108,109,95,108,109,103,98,116,106,105,103,108,97,114,95,86,117,113,103,104,103,122,110,98,100,99,104,87,99,97,81,96,112,88,109,99,105,101,118,94,104,102,105,121,111,105,105,109,108,112,110,105,110,92,104,107,102,112,99,96,105,105,120,109,126,105,97,104,107,107,109,97,90,95,106,96,101,102,105,95,98,96,96,100,104,101,101,102,104,103,98,95,89,104,103,100,121,110,112,110,103,96,98,113,104,105,104,96,95,100,105,99,112,95,107,102,105,85,107,97,101,103,110,101,97,102,113,97,97,107,100,104,110,102,110,106,110,103,107,104,106,92,90,105,102,93,106,103,98,104,85,101,99,104,101,106,100,109,110,105,95,100,98,91,88,113,89,101,104,114,105,109,102,101,98,111,101,100,106,87,113,113,111,103,95,100,103,106,99,102,115,101,110,121,107,77,100,91,117,108,114,102,109,86,100,106,102,115,108,110,109,122,102,101,110,108,98,106,113,109,112,99,112,111,102,112,102,110,104,103,114,90,98,99,106,91,101,100,107,96,103,98,108,103,102,111,100,102,99,93,99,99,88,110,100,106,100,116,94,100,106,113,109,101,102,108,114,110,101,105,105,107,110,95,107,106,102,106,101,112,109,105,98,108,122,113,106,100,105,98,104,86,110,109,108,99,111,95,115,109,106,116,112,107,108,101,116,109,94,116,109,107,112,110,94,105,106,108,112,104,113,113,103,110,103,122,111,91,104,103,114,107,110,108,103,109,102,104,109,107,109,105,100,114,112,99,99,112,101,101,110,86,96,105,94,115,112,107,103,104,102,99,95,109,116,105,103,107,107,103,118,99,97,117,106,91,105,114,109,105,104,107,107,87,101,104,102,106,95,100,104,108,100,105,100,111,110,97,106,110,108,105,104,106,110,103,93,115,106,101,98,109,85,108,92,91,95,124,113,96,101,108,105,103,105,99,131,106,102,91,105,100,105,106,99,110,101,121,104,105,112,113,109,79,103,117,102,95,102,120,124,103,105,100,110,102,102,102,101,101,100,94,94,100,102,116,106,105,109,112,100,103,94,115,110,96,99,97,106,103,104,102,84,94,85,110,102,122,112,99,105,112,107,103,97,112,99,104,100,107,100,105,104,105,89,101,105,91,105,95,104,99,111,111,108,109,119,106,101,112,103,98,103,125,102,95,99,125,105,116,143,100,101,106,106,113,99,94,99,115,110,117,99,96,101,112,97,103,111,103,104,118,103,107,98,114,109,105,108,104,96,115,104,106,107,108,99,107,102,101,100,109,113,94,112,109,95,99,99,98,109,110,114,99,98,111,105,102,108,115,99,118,103,94,92,114,91,98,113,108,102,112,118,107,101,98,102,107,110,109,97,107,100,104,96,98,102,111,98,95,108,102,115,107,116,100,103,108,112,103,113,100,98,105,90,113,112,87,113,109,105,107,106,103,113,99,109,113,114,122,108,85,100,102,101,103,105,103,104,113,100,99,123,92,108,100,109,118,109,113,96,104,102,99,108,103,106,100,105,101,115,112,114,109,109,105,102,112,101,92,120,105,108,110,99,96,102,101,107,98,99,99,98,96,101,100,97,107,99,109,111,88,100,107,104,103,105,104,105,105,103,89,95,108,99,98,108,126,103,104,106,102,112,103,104,103,104,113,95,106,94,103,103,106,99,95,97,98,104,105,103,100,99,104,109,108,101,117,105,104,106,103,108,97,103,95,90,107,100,114,98,107,128,107,99,106,107,101,123,117,106,88,106,108,97,98,115,103,99,109,76,99,111,104,117,104,113,113,100,101,98,108,101,109,102,112,106,97,112,103,121,95,114,99,98,106,106,106,108,111,99,108,117,110,105,110,114,101,113,109,109,109,95,91,94,95,93,108,98,97,107,100,98,111,102,118,111,114,105,95,112,104,102,106,109,106,107,106,112,101,99,108,91,120,97,105,105,109,128,104,97,92,96,100,114,129,102,112,119,108,110,99,109,110,109,99,103,114,112,104,100,108,99,104,108,99,101,125,113,116,110,98,95,95,108,106,113,117,109,112,110,109,100,110,113,103,100,115,107,109,103,102,104,91,111,105,106,106,110,101,99,106,113,99,120,107,106,110,103,107,97,111,105,108,92,107,120,76,99,107,106,103,102,103,93,104,108,108,105,104,90,104,105,102,105,109,110,101,101,99,105,107,109,99,112,98,99,95,111,114,111,112,104,107,102,102,110,101,97,111,96,94,106,117,119,104,102,135,111,111,108,110,104,99,88,99,107,109,108,115,110,113,106,110,117,96,99,108,108,103,104,111,95,98,98,119,107,123,122,116,137,136,125,121,125,127,127,113,119,113,103,118,107,104,108,111,117,110,108,109,108,97,104,111,98,102,121,93,102,99,102,91,100,95,103,101,109,114,98,104,96,99,99,106,107,104,98,106,100,96,101,103,96,106,103,104,111,97,103,105,108,103,104,95,106,95,95,108,118,96,92,116,98,104,108,96,108,113,92,106,99,106,100,106,88,106,95,107,115,111,104,110,100,106,99,97,112,99,104,97,106,91,121,110,90,103,104,112,107,98,105,101,118,107,84,99,111,103,107,79,108,98,110,96,98,111,102,118,95,104,110,97,110,93,108,110,112,104,105,115,99,117,102,112,116,108,111,140,100,103,107,108,97,114,100,98,103,107,96,97,94,97,109,99,111,101,102,109,93,96,108,87,98,115,96,103,103,97,110,102,89,107,110,109,118,110,105,99,102,99,111,107,104,91,104,105,90,105,109,110,81,106,98,87,93,108,100,102,102,112,104,101,99,101,114,99,108,109,89,105,102,108,93,96,96,107,98,102,99,91,106,100,98,102,104,110,107,115,101,132,111,112,101,104,103,99,99,103,112,98,94,102,99,104,101,107,102,96,106,94,102,102,109,108,105,102,99,109,107,99,139,99,120,99,98,104,113,105,111,92,113,103,89,110,109,103,102,120,91,98,106,131,96,106,102,101,126,110,117,108,105,115,100,102,104,94,112,93,94,95,97,99,110,109,113,111,92,112,113,97,104,98,91,109,96,101,108,109,99,88,117,95,110,99,95,102,94,105,90,105,101,104,104,109,97,106,103,90,96,95,117,92,101,100,106,107,97,109,96,102,99,101,110,109,109,112,103,92,110,112,102,108,113,114,98,97,108,103,100,123,97,104,100,96,97,103,120,111,92,103,91,103,83,98,99,113,106,108,109,101,79,112,105,98,108,91,98,103,94,111,106,104,102,111,98,98,101,101,94,102,104,117,101,98,101,102,100,114,110,109,102,100,116,95,100,100,99,110,105,108,98,107,97,97,98,108,113,110,95,104,96,105,102,95,85,102,95,102,100,101,97,99,90,99,88,117,96,104,105,122,98,100,114,96,105,109,103,93,106,118,98,103,94,102,109,109,95,110,99,104,92,98,104,90,113,115,117,98,109,100,110,103,104,101,109,105,94,100,104,106,96,107,109,96,98,109,106,100,108,100,116,99,118,96,115,111,98,113,101,111,116,104,111,113,109,112,98,105,112,97,109,101,102,93,95,97,109,97,102,106,104,109,97,93,100,99,119,108,93,117,98,99,103,109,105,100,78,103,92,113,100,102,101,98,99,99,106,95,118,99,104,102,98,91,101,110,107,105,98,103,97,97,89,94,101,84,100,94,91,106,101,92,80,112,103,100,100,118,102,96,103,102,77,96,97,111,101,100,96,101,105,106,102,100,103,104,101,103,113,102,109,105,105,108,105,93,110,104,101,112,100,108,113,105,98,94,110,90,100,103,106,100,123,116,109,94,100,86,96,98,112,105,101,100,113,94,94,101,102,105,116,103,101,109,100,98,97,105,100,125,107,116,105,113,108,96,101,107,111,107,98,109,100,98,97,121,106,98,111,100,109,113,108,99,106,95,101,100,102,116,101,98,102,101,99,103,112,112,98,102,108,107,103,102,74,102,108,100,103,93,95,103,93,110,108,103,102,105,103,95,97,104,95,95,104,107,100,92,95,107,108,85,108,103,107,107,96,108,103,107,95,102,112,92,100,108,106,99,111,116,104,105,102,104,126,106,94,90,98,101,104,100,110,104,106,101,102,111,106,100,100,95,103,92,104,108,83,107,100,105,102,106,100,109,95,95,101,111,102,93,100,100,99,97,106,96,108,102,98,104,91,95,103,109,93,94,95,99,95,104,97,95,107,111,99,100,113,108,105,109,116,103,91,109,101,87,96,96,109,101,107,116,102,100,114,106,117,105,116,105,107,110,108,105,100,110,101,113,88,98,86,94,92,101,117,111,104,109,103,113,98,96,100,101,120,108,104,106,107,102,99,97,108,95,106,119,111,87,110,95,106,98,104,102,106,113,98,103,99,101,84,112,112,100,95,101,98,96,98,108,106,101,100,112,101,104,125,91,111,102,108,104,113,116,102,108,96,105,113,101,100,100,102,113,107,106,109,96,97,97,89,91,106,100,98,106,102,107,76,102,93,87,105,101,99,107,106,107,105,103,96,102,76,108,103,85,93,95,104,96,104,106,108,101,91,105,108,100,102,96,111,102,102,105,114,111,101,113,102,108,102,107,97,127,115,104,93,92,106,110,99,110,98,108,99,95,102,106,93,98,104,104,103,95,105,100,110,109,102,101,96,109,100,97,98,102,100,84,91,98,100,99,92,105,77,100,117,97,102,99,98,104,100,81,103,106,104,105,117,101,113,98,101,117,94,107,109,90,100,103,86,107,102,101,92,103,92,116,104,86,97,109,99,96,87,109,109,101,111,100,96,102,113,104,100,75,112,102,100,102,88,107,85,97,102,94,113,105,111,100,105,82,102,99,109,99,89, +553.79797,103,101,100,115,101,105,95,108,102,91,104,94,113,98,99,114,94,96,106,100,123,102,101,99,102,109,93,113,123,110,108,117,99,104,106,115,116,106,103,118,110,116,112,105,83,97,103,99,77,105,109,104,106,75,111,87,99,102,133,94,122,117,100,100,110,111,110,106,114,103,107,109,106,102,102,97,106,100,102,84,103,100,110,108,102,98,98,110,100,100,108,95,89,102,110,92,108,110,112,99,101,108,95,109,96,107,92,105,98,95,88,102,107,107,113,107,114,96,109,106,94,95,120,112,111,113,103,99,114,99,105,111,102,103,115,107,121,103,107,108,100,112,102,103,102,109,106,107,97,102,108,116,106,102,87,108,113,108,113,108,105,101,100,101,98,99,108,99,118,98,109,103,104,107,113,90,104,110,99,107,104,103,105,105,108,95,105,89,112,95,100,101,117,101,94,107,113,94,110,105,92,102,115,106,100,108,98,103,104,97,100,113,96,106,91,114,108,92,103,101,107,108,91,100,98,110,102,99,101,108,96,110,99,104,106,93,108,109,120,109,105,115,110,100,112,105,96,102,116,106,101,99,101,108,108,103,101,117,91,114,101,107,103,94,101,104,140,109,99,123,99,102,103,109,114,109,100,108,114,109,107,118,103,110,90,103,97,109,103,100,97,105,103,110,114,109,98,99,108,116,103,99,102,113,107,106,101,104,104,117,103,109,104,106,110,112,95,113,99,98,121,105,105,102,100,104,100,105,108,117,99,112,108,109,132,110,106,116,101,100,104,101,99,118,105,102,97,117,106,102,82,105,104,96,113,99,99,116,99,111,94,106,104,104,100,95,119,92,100,105,113,105,110,103,102,98,100,104,116,93,104,102,107,101,109,107,99,103,110,109,108,101,100,106,101,108,97,110,109,110,110,109,101,103,109,101,103,114,100,104,100,94,102,106,110,105,106,104,122,105,109,93,109,101,103,104,118,115,91,105,103,114,94,100,106,107,91,108,99,91,114,102,112,108,113,108,97,101,105,111,109,99,117,115,98,109,102,111,117,89,106,90,99,106,119,106,103,110,106,101,111,107,121,101,97,96,95,112,113,97,99,116,113,95,102,110,94,96,121,103,112,106,101,108,97,107,100,107,121,107,104,109,95,108,103,108,108,106,115,104,95,102,105,102,106,90,97,103,100,101,110,109,113,99,121,111,101,101,106,110,102,101,113,101,111,104,111,108,99,96,111,106,111,110,121,109,111,104,89,109,102,109,115,122,100,104,99,96,104,107,105,108,109,113,114,106,97,106,84,107,98,104,117,112,98,111,103,103,106,93,94,117,105,108,114,98,110,109,105,100,112,97,105,100,108,93,104,101,98,99,106,105,111,99,91,109,108,95,99,106,108,100,103,109,103,106,102,103,105,109,104,115,104,115,109,118,115,87,113,99,110,113,98,111,105,104,104,103,124,105,107,111,121,94,103,75,99,105,109,99,102,111,91,106,99,101,103,117,114,105,101,100,106,104,111,104,113,113,105,109,105,102,100,99,99,110,104,92,109,108,89,98,104,96,105,102,93,106,106,106,104,106,105,94,83,103,103,89,113,102,115,101,96,98,110,109,112,106,109,103,101,111,105,110,95,107,102,102,95,95,113,97,116,99,102,103,108,106,109,105,107,117,101,101,105,91,94,104,101,112,107,100,107,104,100,104,111,105,88,102,107,91,99,104,98,107,104,111,117,100,122,97,106,98,99,113,94,114,109,106,95,104,117,106,106,108,101,105,84,93,102,112,104,100,90,113,109,102,111,109,114,122,113,116,111,122,103,127,106,99,86,111,94,113,105,98,104,118,118,102,116,100,109,98,113,110,108,123,111,110,101,103,108,112,107,118,108,106,118,102,102,109,109,102,101,96,107,107,106,122,110,95,103,99,108,107,101,98,118,103,103,100,107,103,103,108,109,104,100,98,99,109,104,119,94,98,97,99,109,114,104,108,99,112,99,101,117,101,105,110,95,111,121,101,108,98,102,109,119,105,116,106,102,118,111,104,98,112,105,114,99,103,116,103,102,99,104,107,108,105,101,96,106,109,103,100,98,119,110,98,91,117,104,107,96,109,99,102,110,113,112,125,106,113,118,118,120,110,108,112,116,99,109,111,100,105,111,113,109,96,99,106,100,113,99,93,118,105,86,99,111,115,109,102,102,102,96,103,101,112,93,99,106,106,92,104,114,97,106,103,110,100,107,107,109,93,110,110,109,93,104,114,115,109,99,104,99,110,100,103,86,108,114,96,112,110,103,113,103,100,108,108,103,96,100,102,101,109,118,105,121,101,113,100,113,114,112,108,106,108,115,99,102,110,94,114,95,109,114,121,113,101,129,153,129,154,127,115,133,122,129,103,113,123,126,114,109,116,99,123,113,92,112,100,101,92,99,100,114,101,103,118,104,113,116,106,114,109,100,112,98,106,103,109,101,112,103,104,83,102,103,104,95,98,96,98,96,109,107,99,111,101,96,109,104,121,105,94,96,104,102,109,107,105,99,97,102,99,96,113,107,102,102,101,108,101,94,107,103,101,107,115,107,116,103,116,102,100,108,109,104,97,96,115,96,97,106,101,99,99,113,105,109,98,118,98,102,99,96,107,103,97,105,112,103,104,104,101,117,103,105,104,105,87,112,105,109,87,103,108,83,102,103,109,102,115,100,97,111,111,99,106,99,125,107,116,93,109,104,100,110,100,96,112,108,99,107,99,98,100,106,111,100,116,108,112,103,111,102,108,107,106,105,105,100,90,100,111,104,98,113,109,94,107,95,108,107,107,98,100,98,116,119,105,106,97,107,102,112,99,91,109,102,102,101,100,104,107,92,100,102,101,101,104,111,101,102,106,92,110,107,110,113,102,107,98,102,100,100,109,111,99,108,88,111,96,99,100,105,104,108,112,108,100,116,106,121,100,102,102,112,108,96,105,108,113,108,113,105,101,117,98,101,98,102,111,104,104,105,98,113,106,114,101,106,99,104,88,104,102,102,97,106,106,105,109,111,108,104,95,95,84,111,123,122,91,111,109,106,65,113,105,115,99,101,90,116,112,108,102,99,116,103,104,112,111,102,99,105,100,114,105,110,115,102,111,100,99,101,102,108,115,104,107,107,101,119,128,100,89,100,98,108,91,105,106,111,99,94,105,104,105,104,103,113,112,109,107,108,92,101,119,100,105,111,109,94,96,103,121,123,101,101,99,102,103,92,97,110,102,110,95,110,123,118,98,94,93,101,119,107,87,105,81,62,113,103,108,110,108,107,108,108,110,102,118,108,105,103,90,101,120,102,107,92,125,101,97,109,106,106,102,113,108,104,100,112,105,101,105,97,116,102,109,101,101,103,113,99,106,97,110,93,110,104,110,100,93,119,102,96,108,113,96,118,81,117,102,94,121,98,92,92,94,94,105,99,106,103,105,118,104,113,102,105,101,95,106,104,116,98,103,108,105,107,103,109,108,106,108,96,113,98,109,94,108,101,108,99,79,113,110,104,117,105,102,102,109,128,112,103,101,99,103,103,110,109,111,101,115,113,94,98,106,105,104,101,101,112,95,103,113,100,114,109,105,104,104,102,98,104,100,106,105,105,103,101,105,109,113,102,102,104,108,103,104,104,105,114,106,100,101,92,103,98,102,110,100,112,110,109,92,103,100,97,97,109,139,109,108,102,105,102,110,100,109,120,126,109,104,107,132,112,95,116,108,105,108,94,97,121,100,107,102,113,112,108,112,101,98,105,104,99,108,102,103,100,108,117,108,101,115,102,116,113,111,99,97,101,103,110,98,110,101,120,106,99,106,101,108,106,109,127,99,109,105,111,87,102,101,131,111,109,104,109,109,107,98,102,106,106,104,95,107,112,104,109,99,97,123,101,97,98,114,105,109,109,89,95,93,118,99,115,112,103,107,95,95,108,116,103,98,106,103,107,113,104,112,115,109,100,103,113,110,111,107,101,115,103,109,104,109,96,106,106,98,97,100,111,117,105,99,107,106,120,105,104,103,103,99,95,108,107,99,108,105,116,113,98,103,91,104,110,89,114,110,108,108,110,85,109,108,110,107,100,102,112,112,95,100,100,108,113,106,115,120,106,78,103,97,100,115,100,102,103,103,108,106,101,109,122,108,106,99,109,94,113,105,101,91,101,108,112,132,112,109,134,109,108,113,128,100,108,122,110,105,109,95,108,101,100,86,94,105,113,96,116,107,107,98,102,118,98,84,93,108,111,98,112,108,106,117,111,106,90,110,83,111,100,113,109,104,112,111,102,111,113,119,112,112,108,116,97,112,100,99,102,101,104,99,106,102,101,83,117,108,135,105,110,115,113,106,114,113,99,103,106,116,106,118,100,88,109,119,105,105,113,103,103,97,102,106,106,103,83,112,106,102,106,107,109,99,104,117,95,101,95,105,95,116,116,96,123,107,103,101,106,96,106,95,97,108,105,121,100,110,106,101,109,96,106,116,101,116,97,99,110,108,95,91,106,98,98,110,86,94,120,111,109,93,109,108,104,116,102,108,109,106,103,99,101,102,114,89,108,106,109,102,110,104,111,107,95,107,105,112,108,97,96,108,107,113,117,96,109,98,103,112,102,104,128,94,99,114,112,111,104,97,109,108,96,96,110,103,133,95,112,102,102,107,116,116,87,106,104,101,97,87,101,91,101,95,104,109,105,110,111,113,102,104,105,99,95,99,109,91,113,106,97,121,108,118,102,108,102,95,96,103,96,104,107,99,106,106,95,113,89,85,100,114,109,107,106,94,101,109,105,105,97,103,98,98,96,105,108,106,98,106,95,104,101,82,98,108,92,117,91,114,110,94,109,105,100,102,97,95,111,100,124,100,101,103,95,92,104,94,109,93,91,94, +553.93884,98,97,103,99,84,106,69,81,115,89,89,107,100,94,104,77,104,116,99,105,93,99,105,94,101,98,106,107,104,105,107,103,102,101,102,108,90,104,102,102,127,108,97,97,95,100,88,119,111,106,101,104,103,77,114,88,89,102,92,95,77,92,88,102,100,107,114,108,90,90,107,106,73,105,102,98,111,100,124,102,109,96,93,99,99,107,109,100,113,107,114,94,103,96,71,125,107,96,108,108,100,98,103,99,103,107,101,103,88,98,105,122,99,96,107,105,126,109,103,94,99,95,104,117,102,95,115,103,102,103,104,106,87,93,110,98,100,118,101,97,98,116,95,120,98,100,100,106,92,104,105,86,101,95,91,96,112,109,106,103,100,105,97,106,96,92,101,105,104,101,78,99,102,104,109,95,110,96,112,104,113,111,93,104,102,99,90,94,100,115,103,100,98,100,108,93,106,103,102,112,99,120,98,101,99,66,96,104,98,96,102,94,111,99,108,101,107,93,104,114,107,109,92,112,109,99,103,109,104,111,117,104,93,107,110,106,111,113,107,99,99,102,112,101,112,98,107,98,106,97,108,106,95,95,90,112,96,109,95,89,117,119,95,102,85,101,91,105,107,97,97,101,102,95,110,103,102,97,96,110,90,106,96,110,98,62,98,110,117,109,92,96,109,96,112,109,104,103,97,104,97,91,105,103,94,117,101,109,100,104,95,114,99,96,109,102,108,109,74,108,111,98,103,104,104,103,102,87,104,108,104,90,92,112,109,99,112,98,105,99,98,109,108,102,102,101,100,113,95,111,101,91,105,93,81,97,104,98,106,97,98,103,110,94,95,97,107,109,99,93,111,100,100,103,109,96,117,94,94,103,100,103,103,113,85,99,100,113,98,100,116,83,97,113,105,79,100,98,106,108,99,109,103,101,99,98,96,104,99,98,94,109,107,109,103,92,95,120,101,94,91,93,102,102,105,105,101,95,109,112,98,105,99,92,97,104,108,106,104,98,110,99,109,102,90,96,98,90,99,119,109,95,100,118,118,111,105,113,100,114,96,102,104,106,113,108,105,104,101,106,78,118,87,110,104,107,101,110,97,118,105,100,100,109,97,96,98,94,103,112,110,109,105,101,91,112,112,103,104,98,102,102,108,109,107,97,106,101,113,115,110,109,108,76,90,99,97,106,96,97,104,92,105,96,108,116,117,107,95,101,100,102,92,101,94,107,103,103,101,105,87,102,105,103,107,100,101,121,100,105,108,100,103,100,100,102,96,101,101,95,95,100,90,105,92,113,71,95,104,102,92,91,108,109,104,116,97,107,102,100,113,107,102,93,101,100,103,109,105,102,114,108,116,100,108,96,100,93,106,101,104,102,116,104,94,107,94,96,116,106,99,105,104,107,114,103,87,89,98,101,99,104,107,90,103,99,96,102,95,108,100,113,108,106,87,103,114,88,114,101,114,100,108,102,109,90,103,106,102,99,104,117,110,118,96,103,101,100,99,106,115,121,96,97,97,109,96,94,107,96,95,104,108,95,95,103,112,89,107,99,108,105,110,100,111,103,110,95,102,97,109,104,101,97,102,98,101,107,101,89,90,122,96,108,106,103,99,100,93,116,103,106,103,97,85,82,95,98,109,95,97,110,108,104,101,101,100,110,96,110,93,91,94,95,110,112,107,97,105,99,105,97,106,104,102,99,97,111,101,100,98,98,100,101,111,99,92,97,100,100,105,108,99,100,100,108,92,106,124,100,105,108,100,95,100,98,91,91,112,105,109,94,108,100,104,99,107,99,106,107,102,105,92,112,101,133,108,104,99,111,100,117,104,108,97,117,112,118,99,94,113,105,111,105,113,101,101,95,103,102,98,101,114,101,102,110,106,104,110,118,103,96,109,110,103,98,107,106,113,108,103,101,116,97,96,124,98,100,100,104,111,97,106,100,108,103,102,94,98,105,104,101,103,104,102,93,97,105,112,99,84,98,90,120,92,112,109,91,101,100,104,107,100,96,111,103,108,110,92,104,98,114,98,97,106,90,103,107,109,111,77,100,115,96,96,94,93,100,98,94,105,109,107,106,107,95,105,108,95,104,106,107,108,100,113,104,103,112,108,103,106,107,95,105,99,114,100,103,110,100,108,106,101,102,105,107,114,111,95,110,105,110,116,110,106,108,110,109,108,112,102,109,96,99,107,97,99,99,102,108,99,110,96,107,104,108,104,105,103,97,121,109,94,93,81,94,103,101,101,100,104,103,100,105,106,100,100,96,94,100,95,103,72,101,77,102,111,99,104,97,105,108,96,96,103,102,108,97,105,100,108,108,105,87,91,102,99,108,109,104,98,104,105,84,105,115,90,130,119,104,110,129,121,147,105,132,153,133,131,107,128,134,123,117,106,102,113,112,117,124,118,98,108,114,104,95,85,100,98,88,106,105,109,97,105,107,97,109,79,103,104,97,102,100,104,108,111,106,112,103,103,105,113,101,74,111,87,90,98,121,105,103,111,99,102,118,101,101,113,119,117,119,104,117,110,104,115,112,118,99,113,113,93,105,103,116,99,107,107,120,108,104,104,104,88,102,98,89,102,96,112,109,114,105,82,95,111,105,112,97,103,98,113,133,104,117,111,102,90,100,107,119,116,107,99,105,101,99,104,105,107,99,116,116,117,98,90,110,113,102,109,98,109,111,113,107,115,97,105,123,116,112,105,95,106,101,109,96,104,96,101,114,131,104,103,101,119,113,99,88,80,103,110,107,114,105,118,106,113,107,116,113,107,117,110,100,97,106,102,101,91,112,98,101,98,113,102,107,117,122,107,104,117,87,103,106,99,104,104,91,98,106,106,108,100,98,109,94,94,108,121,112,99,108,103,104,108,109,106,98,113,105,95,121,124,116,99,100,116,119,108,91,102,113,104,100,118,105,106,120,110,104,96,111,112,128,113,101,106,94,117,105,111,107,97,99,120,106,113,107,99,117,98,110,125,109,111,134,101,96,99,102,100,116,107,108,107,113,100,106,107,104,101,102,103,106,107,115,100,110,102,108,105,102,103,101,109,104,110,103,101,109,113,105,105,100,105,102,113,95,111,99,103,106,114,102,94,103,107,124,113,105,108,108,115,104,123,92,112,100,105,104,99,108,112,113,106,109,108,100,90,103,114,121,118,105,98,111,93,103,106,91,99,110,100,113,110,102,116,102,115,120,100,98,97,100,103,100,97,110,107,99,102,92,103,92,105,98,112,115,109,100,118,110,112,110,125,110,113,105,96,102,107,106,104,105,107,106,112,110,116,101,110,109,110,108,100,107,102,101,113,104,88,100,122,105,107,105,110,97,104,114,114,107,99,99,103,100,109,103,101,104,103,106,102,141,106,107,105,102,104,108,128,109,99,92,103,108,110,103,97,111,109,121,125,107,108,115,99,101,104,96,95,108,106,120,102,109,98,93,112,105,99,116,112,108,110,98,108,97,115,106,106,112,102,111,116,111,115,101,115,115,113,117,106,110,116,104,105,99,110,103,113,113,102,109,138,121,107,109,113,97,106,112,128,103,107,110,107,102,100,99,102,95,91,102,116,106,112,110,104,100,105,127,127,118,114,106,103,113,103,112,119,101,98,96,97,108,99,108,96,122,106,119,104,110,108,116,99,101,96,103,109,111,98,80,99,104,106,104,127,98,105,108,116,91,88,108,112,100,117,98,91,115,107,99,111,105,100,106,102,106,106,101,107,100,108,102,106,102,106,104,97,96,115,101,101,117,96,99,109,97,102,99,107,101,115,116,109,104,97,99,99,106,124,112,97,111,96,96,113,115,117,100,99,115,105,103,91,86,100,104,103,97,112,115,106,108,111,98,107,111,113,108,108,119,103,106,111,104,103,104,101,100,103,96,109,108,96,103,104,100,107,119,99,102,105,101,103,106,116,100,100,111,91,104,120,111,106,109,124,94,97,99,104,106,109,97,105,112,103,102,99,116,103,104,111,102,88,108,113,106,106,107,112,103,114,104,108,110,102,111,109,106,102,110,123,92,104,102,120,114,105,116,107,100,104,106,104,97,91,67,112,104,100,113,107,112,101,105,103,124,104,96,105,108,100,103,103,98,96,111,106,121,99,108,104,113,103,106,117,83,100,104,98,103,114,105,112,122,104,108,95,91,112,106,101,108,103,112,98,102,111,106,105,87,108,108,98,100,120,110,117,105,101,105,102,99,92,103,111,106,102,90,91,95,95,110,101,101,113,109,98,111,112,109,95,105,106,104,104,106,117,101,111,102,104,108,95,109,105,96,109,114,92,105,112,98,116,107,96,113,108,105,113,113,109,109,101,105,123,100,111,109,110,104,112,107,107,113,104,115,114,96,100,97,111,113,111,91,96,110,110,109,114,112,99,106,107,107,111,108,103,127,111,106,102,91,96,108,108,118,106,104,112,116,105,108,101,94,109,89,114,99,97,104,104,110,120,103,106,112,106,99,103,120,97,102,103,102,92,106,99,115,111,102,98,100,98,87,113,100,108,97,105,110,109,117,92,101,111,96,111,96,109,117,107,108,107,113,106,102,105,112,100,107,108,100,93,104,102,111,113,111,97,108,106,94,111,103,99,104,108,113,109,116,100,106,115,96,101,110,111,112,110,101,106,143,102,109,85,100,109,109,100,119,109,92,107,94,107,97,113,93,106,100,107,107,98,106,106,113,110,110,106,106,100,108,102,100,117,111,110,109,117,103,108,101,110,113,114,93,111,102,118,102,104,116,100,92,104,103,98,119,110,107,108,98,105,83,104,112,116,106,102,107,101,110,102,100,96,103,96,99,111,107,110,107,97,107,118,102,109,91,113,108,81,111,106,105,100,124,106,105,105,109,100,113,104,102,107,109,101,115,95,102,99,96,102,98, +554.07971,100,102,108,115,81,104,104,89,88,94,97,107,103,97,95,100,98,98,98,119,93,98,96,106,100,110,99,110,111,101,114,101,99,92,107,113,112,97,109,94,109,104,102,103,98,107,101,103,99,103,108,105,100,101,101,105,103,101,105,103,107,99,101,101,106,111,115,96,114,103,103,133,102,102,104,105,92,124,109,102,133,108,88,111,94,111,93,102,95,104,111,82,103,109,105,103,102,105,102,98,101,101,96,103,103,107,93,103,105,81,113,111,107,98,111,116,97,101,111,101,99,118,114,100,105,106,102,104,106,115,101,99,98,98,121,109,90,107,103,120,105,99,98,111,96,101,113,101,105,105,105,104,94,99,114,108,102,103,106,92,98,108,99,100,100,103,112,89,104,118,82,94,98,94,102,107,88,109,105,104,116,109,115,115,125,91,104,95,100,101,110,114,99,123,105,102,105,108,117,105,95,101,93,109,95,99,101,109,107,98,100,98,103,100,115,105,95,104,94,105,101,96,110,96,104,105,95,116,113,95,120,109,98,113,112,102,108,97,104,101,94,100,107,86,113,108,107,107,72,106,109,103,111,108,117,116,104,108,97,96,100,101,116,107,109,106,109,109,109,94,114,101,113,108,101,122,88,100,99,100,106,104,101,103,100,102,106,104,95,111,104,106,109,111,118,97,105,100,101,97,113,115,101,117,104,104,100,99,115,108,102,114,108,107,102,113,96,98,107,95,95,99,114,102,115,106,93,103,108,106,104,98,121,112,102,104,114,111,121,107,99,109,99,87,85,98,83,105,104,109,102,106,94,94,99,101,105,108,100,99,106,101,118,96,92,97,77,104,102,107,110,107,109,103,65,102,93,91,109,99,98,107,102,102,99,102,104,103,95,101,121,105,90,98,106,103,96,104,100,116,101,104,101,96,104,91,111,108,95,105,95,106,101,103,97,91,96,104,94,121,93,96,98,107,100,104,94,96,98,98,96,108,99,98,100,105,100,103,96,105,112,109,97,104,105,106,122,100,110,105,118,102,104,107,91,104,114,108,116,103,102,110,105,103,101,100,108,94,99,106,99,98,97,99,99,100,105,102,105,111,108,98,108,108,104,102,120,110,99,95,108,97,108,102,101,123,104,102,96,103,115,100,95,109,103,100,79,101,96,109,110,97,103,85,110,129,102,107,103,99,104,101,96,99,105,103,109,105,104,95,102,101,112,97,100,94,111,110,99,124,107,106,98,94,127,107,113,100,98,104,105,105,110,107,97,105,106,100,112,104,103,106,94,116,109,113,106,100,110,94,95,103,102,98,106,103,94,96,104,101,119,115,102,99,100,106,105,102,101,108,103,102,97,104,109,115,113,109,112,120,95,99,111,104,104,108,104,108,86,107,108,102,115,96,96,113,83,120,98,93,107,86,105,108,103,107,87,108,112,99,102,93,113,121,100,99,107,104,106,105,102,102,108,102,100,104,96,105,102,118,98,104,103,124,109,107,108,112,103,104,114,103,99,103,89,101,114,96,106,111,113,104,98,95,99,106,97,106,105,104,102,106,94,93,90,99,104,111,94,91,106,102,104,102,106,114,102,108,108,99,109,105,97,105,106,112,103,106,106,97,113,99,95,102,98,93,109,102,102,107,94,112,110,107,116,118,106,106,103,116,112,100,108,74,104,107,97,99,110,104,105,97,118,116,110,100,97,111,103,92,111,102,101,104,118,105,103,107,116,110,117,103,100,110,89,104,92,106,109,113,122,123,108,79,104,118,111,141,105,97,90,98,101,113,101,103,98,80,101,108,114,106,99,100,105,105,103,101,113,108,96,104,104,111,108,99,108,103,101,98,117,98,107,107,110,111,107,109,103,103,93,113,99,106,110,102,97,105,110,86,109,103,101,101,110,101,95,102,116,107,91,98,118,91,91,110,113,101,88,108,100,113,90,108,108,114,105,103,108,90,101,99,111,96,100,93,98,104,112,95,108,110,104,107,110,104,104,109,108,112,89,106,107,99,104,102,109,97,108,105,105,103,97,97,112,100,101,95,109,104,90,117,101,102,106,99,108,102,87,94,96,102,108,108,94,98,106,105,106,108,116,96,101,98,101,118,101,106,100,112,94,120,114,110,111,118,110,113,101,113,101,109,107,102,108,97,82,103,102,101,106,100,105,102,103,109,109,104,113,101,113,106,101,107,103,111,103,109,89,113,93,111,111,96,90,111,107,100,99,116,85,95,100,99,98,99,103,107,100,94,105,105,109,103,106,111,104,122,106,100,102,106,93,97,89,119,104,103,106,105,118,97,107,112,102,116,109,100,103,107,104,124,100,103,113,110,95,117,114,78,114,116,104,110,111,107,109,117,120,111,112,116,156,133,134,122,114,118,135,110,144,148,104,119,116,144,110,116,105,115,105,112,115,107,104,112,107,112,103,109,96,96,101,99,106,102,91,105,104,102,101,116,103,114,110,111,76,98,98,104,103,100,98,108,74,103,120,113,110,102,91,92,107,98,102,145,106,98,111,99,115,110,113,99,99,109,104,117,110,105,104,104,116,104,101,105,92,115,91,98,103,114,107,102,97,107,116,93,95,102,109,109,97,116,110,95,97,102,104,98,104,112,123,103,105,103,105,131,110,108,92,101,100,104,113,112,108,105,99,80,100,103,110,119,115,110,99,90,106,92,106,110,94,108,99,113,107,123,110,115,98,111,111,113,97,135,89,113,100,105,90,107,93,113,102,112,109,110,109,109,106,105,110,117,111,116,116,113,103,113,97,131,106,104,109,111,106,102,103,106,107,111,99,103,121,106,105,103,116,99,113,108,111,99,111,116,100,103,103,109,101,105,89,111,95,116,107,97,100,114,103,90,98,121,107,117,101,116,99,103,109,101,103,104,105,104,95,112,106,106,110,95,95,109,106,99,111,107,110,102,103,107,108,108,104,106,105,129,106,109,110,102,107,103,99,101,98,103,105,102,111,104,82,112,104,117,115,101,108,108,111,109,103,113,96,110,136,96,103,102,123,117,99,113,111,99,119,99,109,94,108,123,108,99,107,102,102,114,111,100,112,107,102,99,79,96,98,104,101,102,110,107,117,107,101,101,112,110,112,98,110,110,95,104,106,112,95,91,114,101,105,105,109,107,109,105,112,99,98,105,98,107,105,102,96,103,110,106,108,106,129,93,99,102,107,102,100,100,103,105,100,94,101,94,115,95,112,104,106,97,108,98,102,107,115,108,108,95,116,98,108,101,103,111,111,104,114,105,107,107,107,97,109,98,106,95,105,104,104,100,116,103,104,94,106,101,130,101,103,103,112,104,112,105,109,106,98,108,107,106,105,103,105,110,104,111,113,105,119,105,96,109,105,127,99,95,108,104,100,107,113,105,94,120,107,106,98,114,100,102,124,109,96,116,98,102,109,103,107,114,97,118,109,101,102,113,106,92,114,103,113,113,113,97,104,104,103,110,104,106,113,103,122,105,104,112,114,83,97,93,101,117,103,110,109,110,101,104,112,105,109,100,108,112,106,95,102,100,94,110,100,107,109,110,109,112,105,100,91,119,113,95,104,110,109,113,104,101,104,93,101,98,103,109,102,114,106,108,90,110,95,98,110,110,104,95,106,108,100,110,104,109,113,108,98,96,128,97,105,110,94,108,103,103,100,100,92,106,95,97,100,102,99,95,113,113,98,103,88,94,106,101,105,77,101,100,102,76,91,103,98,98,98,98,115,101,108,98,95,115,107,101,101,95,110,110,110,93,103,96,97,98,112,97,76,97,109,96,110,109,105,115,100,97,98,108,113,103,104,115,139,101,112,107,108,105,87,109,93,106,100,97,109,93,105,102,96,103,109,110,92,103,117,101,101,103,118,103,97,102,102,98,101,107,102,109,116,104,100,107,97,103,107,106,108,96,112,83,101,101,116,116,121,109,107,111,110,101,103,98,92,104,101,113,96,117,106,113,94,99,99,117,106,110,125,99,104,115,103,107,106,102,106,87,110,98,104,109,125,99,100,107,110,96,101,100,105,106,82,104,98,115,97,107,120,112,99,104,102,102,115,91,100,100,106,114,113,74,100,112,109,103,107,111,104,102,100,109,105,110,101,94,100,109,98,106,87,82,94,100,119,84,114,95,104,112,95,86,112,107,106,108,100,111,97,113,102,118,101,91,112,101,99,100,107,112,110,99,105,114,108,103,113,106,101,106,95,105,104,120,99,103,115,111,94,107,98,106,107,103,105,100,102,102,106,98,100,93,110,106,101,94,129,98,106,113,105,97,102,108,93,96,113,97,103,104,95,97,100,113,82,102,109,96,113,87,99,105,102,95,111,100,100,89,100,98,103,117,100,110,112,100,105,105,98,121,96,118,106,107,106,113,113,107,92,103,108,95,122,85,104,92,107,105,103,109,101,106,98,102,106,117,108,109,98,71,97,120,107,113,112,109,115,106,95,86,72,110,108,100,97,98,110,111,111,110,112,103,105,109,84,63,89,103,137,88,108,104,106,108,96,102,106,102,91,104,106,113,106,110,101,114,108,109,106,100,100,98,97,106,104,117,101,106,101,98,108,106,101,102,107,96,113,116,122,107,108,87,99,89,117,102,95,103,111,121,101,108,92,102,93,104,100,105,96,98,120,105,117,92,101,97,101,100,103,106,109,112,105,98,99,112,105,102,88,103,109,107,97,105,100,103,109,97,103,102,100,99,121,106,92,105,96,102,94,98,109,103,93,105,111,104,100,112,100,107,107,99,103,95,103,115,96,94,113,95,110,102,95,102,95,104,103,99,104,111,100,101,122,111,124,105,98,121,108,110,106,100,95,100,105,97,97,102,109,106,111,85,112,105,103,97,88,87,105,101,98,99,92,96,109,108,94,120,99,105,89,107,98,108, +554.22058,85,116,84,101,102,98,92,99,95,104,107,108,98,91,122,92,95,109,103,104,99,115,108,98,97,111,99,104,106,108,95,117,105,105,99,86,98,98,93,102,108,89,92,96,104,103,105,116,112,115,96,91,103,98,102,98,91,99,106,81,87,110,106,101,106,117,101,115,110,103,116,105,104,96,110,113,108,113,90,98,104,107,113,89,111,108,103,109,96,96,101,106,109,90,108,113,96,94,109,103,107,98,101,104,124,113,100,109,98,109,100,101,95,99,100,101,95,104,113,103,97,103,109,112,99,95,103,100,118,108,102,111,100,121,106,109,101,113,91,103,102,117,95,94,106,98,131,113,94,99,96,98,112,97,99,103,95,107,106,100,103,92,104,102,105,106,112,88,99,96,117,103,90,101,105,100,86,106,114,97,104,109,108,106,101,109,95,83,109,121,119,99,117,106,86,108,109,95,83,94,104,102,114,92,105,109,90,102,103,105,91,102,100,100,98,100,101,108,101,113,105,100,105,99,96,88,109,112,114,81,100,106,104,111,102,108,103,85,95,105,103,98,106,100,102,109,105,111,106,117,102,95,93,103,107,101,105,105,101,105,109,103,111,101,97,117,112,108,104,104,100,107,101,104,113,100,106,116,98,98,103,110,110,101,102,105,114,106,97,105,103,101,111,118,99,113,114,108,95,110,95,89,91,104,98,97,112,107,98,89,108,117,104,102,104,107,103,93,99,106,105,107,104,95,107,100,105,96,117,105,107,94,98,115,101,100,103,98,107,117,105,107,110,106,103,112,114,120,103,117,121,99,105,115,103,116,110,110,110,95,106,104,110,94,103,108,108,108,99,112,108,114,106,92,116,91,104,113,113,107,107,112,107,104,121,100,109,96,119,102,107,112,100,113,105,116,87,103,114,101,108,104,101,109,119,97,102,107,96,117,91,97,108,96,108,86,108,97,109,113,105,101,98,107,84,108,97,88,109,95,90,101,96,109,92,90,113,99,103,117,115,113,108,102,95,115,94,90,103,96,100,104,101,101,101,108,96,105,118,99,103,114,110,103,101,99,109,101,103,99,107,98,111,109,98,99,104,122,99,93,109,101,109,112,100,101,102,106,100,106,114,105,113,113,101,110,103,107,113,103,113,114,122,108,103,121,101,105,105,104,110,104,102,110,106,97,101,117,102,96,105,102,104,94,110,110,105,107,100,107,99,107,99,91,110,99,104,99,103,100,105,118,117,99,109,114,111,121,115,109,110,102,116,102,97,99,107,109,105,93,116,107,102,108,99,100,119,100,107,110,102,96,97,96,106,98,104,95,98,98,104,104,90,99,105,107,113,104,95,86,109,109,105,97,114,107,98,83,106,104,106,91,114,91,94,99,98,93,95,106,104,96,105,108,110,103,105,108,98,119,117,107,100,129,72,100,98,103,103,118,109,104,91,101,91,112,125,95,87,85,98,107,109,89,93,98,108,103,106,95,105,100,109,106,102,108,109,126,112,90,108,111,110,108,104,100,103,98,104,110,117,101,101,100,112,116,111,105,104,107,121,108,98,102,124,100,98,112,114,99,103,110,108,112,103,98,116,119,108,104,109,105,110,102,110,107,112,137,120,114,132,101,101,97,100,97,105,102,109,105,112,98,107,115,103,100,113,99,114,103,104,107,102,111,106,106,100,103,103,103,100,108,102,99,111,103,99,88,104,108,113,90,102,105,108,96,109,103,110,99,100,102,108,111,94,109,89,118,126,83,113,106,105,100,107,114,121,110,102,108,101,98,110,102,86,107,103,103,95,115,113,103,102,110,104,88,106,106,112,112,87,101,115,102,103,76,103,101,113,110,115,108,111,112,102,87,104,117,112,103,99,105,105,108,102,119,99,102,102,106,108,118,108,103,107,103,112,94,103,99,104,101,111,104,102,107,102,102,83,101,100,87,94,109,101,108,103,90,102,109,106,104,108,103,102,107,97,109,114,100,103,111,106,114,107,97,104,100,100,113,110,95,102,105,100,104,103,106,99,82,118,105,107,132,98,106,103,104,100,115,100,114,116,101,105,103,96,101,94,98,109,117,104,94,104,116,105,114,111,117,98,108,109,97,107,105,108,101,113,107,114,109,111,124,101,102,99,108,115,90,102,103,103,110,104,100,102,104,107,109,95,106,98,102,105,107,102,113,102,102,117,108,114,120,105,99,108,100,107,110,97,119,118,97,101,98,102,104,93,105,108,112,106,103,108,99,101,123,101,101,101,104,102,115,114,106,109,98,106,101,99,103,110,83,125,97,111,113,105,103,97,114,99,102,103,114,118,112,111,102,102,102,99,112,104,121,107,106,105,101,114,122,100,101,123,88,115,121,112,105,118,129,123,139,144,146,147,135,123,127,125,122,125,125,106,111,113,109,111,95,101,99,102,101,99,104,111,110,109,110,98,104,96,99,108,127,104,97,100,116,102,104,101,102,98,118,117,94,107,105,96,104,113,92,103,119,118,98,102,105,105,101,112,103,98,110,107,111,101,91,94,113,76,100,95,102,102,106,110,104,101,106,104,105,100,112,112,105,111,103,99,106,106,103,86,113,99,69,102,101,113,100,103,112,96,97,113,96,110,100,98,102,111,107,109,105,93,91,101,105,116,90,96,105,101,97,96,104,111,97,97,101,119,110,113,102,105,92,112,113,105,98,112,97,108,104,102,100,115,110,108,106,105,107,110,111,96,105,117,106,104,111,102,101,113,108,102,106,101,108,100,135,107,146,111,104,106,118,113,105,103,109,108,106,109,106,104,87,102,105,99,104,101,120,113,98,106,121,101,105,112,111,117,100,100,110,104,105,102,100,114,98,111,110,102,105,105,106,104,109,98,98,96,103,100,106,99,100,109,110,109,100,107,113,116,92,105,105,103,110,99,96,114,94,121,110,107,97,106,95,119,114,102,102,107,104,108,96,103,72,106,112,100,103,112,105,99,103,116,93,103,113,105,103,117,124,101,107,119,113,111,113,102,106,105,100,109,109,83,103,109,106,111,110,120,105,108,105,110,100,110,114,108,107,100,103,105,113,104,103,109,105,82,99,104,105,100,111,105,76,108,101,105,110,104,80,116,104,113,95,102,112,106,102,116,102,106,120,111,106,104,95,104,114,94,113,106,104,95,106,105,96,106,112,107,116,106,98,112,112,103,95,107,98,94,89,104,98,99,105,109,83,95,98,100,102,113,107,111,103,101,112,102,107,97,105,116,101,106,101,112,105,108,113,110,106,106,121,98,113,106,91,69,98,102,100,119,98,99,103,99,103,103,107,84,109,122,109,91,108,105,110,98,106,112,123,100,92,106,114,99,100,96,102,91,96,116,107,113,115,108,87,96,103,105,114,102,113,104,109,110,122,107,105,107,105,109,103,110,100,103,102,105,106,102,113,106,104,93,100,111,97,108,110,94,100,110,111,109,107,102,108,108,108,100,103,129,114,111,107,106,96,91,114,98,113,111,101,102,103,110,97,104,120,98,99,100,117,104,105,104,109,97,108,103,97,113,108,109,112,90,107,96,108,117,104,109,102,111,109,102,82,94,111,104,118,114,100,110,100,121,103,104,117,125,107,103,103,96,100,100,106,120,108,98,102,115,106,104,99,105,111,107,113,101,98,114,92,99,96,101,113,109,97,98,119,95,106,117,102,99,110,104,106,95,100,100,121,83,94,101,105,103,104,108,100,112,97,110,100,102,95,107,100,96,105,107,117,95,102,99,88,103,98,108,104,105,93,93,107,109,111,95,116,100,104,116,107,100,102,118,100,95,118,100,100,103,97,110,110,124,85,108,110,107,113,104,105,99,124,103,110,107,104,100,113,102,111,101,108,101,108,117,102,103,101,97,105,101,95,101,103,103,113,119,121,100,99,101,92,95,102,108,102,99,90,101,97,115,98,100,132,107,100,104,117,103,106,106,112,99,94,96,120,110,107,104,104,123,102,97,107,97,103,107,99,113,98,116,114,108,98,102,94,114,108,100,106,107,107,106,90,101,98,126,106,103,90,113,106,115,104,95,99,97,103,94,110,106,103,96,98,114,107,101,104,97,83,95,103,108,104,106,118,108,107,101,100,104,102,106,113,86,102,96,99,113,113,101,91,109,96,98,102,102,105,103,108,110,108,82,92,107,92,102,90,107,102,105,102,99,105,101,102,100,110,99,115,113,102,107,100,112,109,103,109,114,107,100,109,108,107,94,109,108,112,108,106,100,119,106,108,114,94,111,108,96,96,102,105,101,110,113,96,93,103,107,110,92,112,92,101,97,99,109,104,102,98,92,104,113,108,111,105,113,104,109,105,100,107,114,97,96,113,121,99,103,97,109,110,111,97,122,112,98,103,104,108,105,103,109,103,107,109,104,102,100,107,104,101,101,95,96,109,101,105,101,107,113,99,106,111,103,94,107,96,112,102,112,113,104,102,108,103,100,95,103,106,115,96,101,100,76,101,97,95,108,109,108,102,87,103,89,110,97,90,102,114,113,67,105,105,95,103,111,98,104,109,102,96,108,106,98,102,113,117,104,103,100,98,107,107,113,96,102,105,103,102,116,99,102,97,109,102,131,106,107,98,120,104,95,114,92,113,77,103,95,106,108,110,131,107,108,126,106,111,91,100,110,94,102,102,97,100,83,109,105,94,104,109,105,116,101,100,105,91,116,108,105,92,118,97,114,103,103,122,114,98,90,91,102,108,98,108,105,105,94,93,114,67,115,104,96,103,99,103,90,119,117,94,94,109,102,105,103,109,106,97,98,102,107,103,102,107,111,108,97,103,103,98,109,101,105,111,101,121,94,100,100,112,96,114,96,76,105,102,106,100,99,104,102,96,107,93,112,89,97,113,99,84,92,108,100,98,112,95,100,110,106,89, +554.36139,84,113,97,108,90,111,98,110,105,104,105,114,98,105,106,94,99,104,82,103,95,101,118,89,97,112,107,108,117,111,99,100,107,113,100,113,115,103,103,109,89,100,95,114,107,114,102,110,109,107,108,113,101,101,108,107,106,101,107,103,105,103,103,99,99,104,102,100,109,100,98,106,85,98,95,114,92,95,108,107,110,111,103,105,114,108,107,100,111,107,102,136,90,99,100,105,107,100,100,108,109,111,98,90,102,104,100,101,103,103,95,101,121,106,116,109,104,111,105,109,113,102,104,114,90,99,111,102,112,103,106,100,107,104,115,109,106,118,107,104,98,107,102,99,105,102,109,103,88,105,101,93,101,94,98,107,106,100,117,96,104,95,117,103,105,101,111,101,95,102,105,94,117,98,103,93,99,98,100,104,111,103,93,109,104,97,102,95,101,107,113,99,102,106,119,111,104,107,115,110,100,109,102,103,97,110,105,97,100,109,106,122,109,99,98,100,97,106,96,102,113,99,108,112,96,116,101,107,104,111,102,114,111,99,113,117,115,110,103,102,105,104,121,98,122,102,124,105,95,117,109,98,114,102,111,116,106,112,97,104,104,98,95,104,94,116,101,91,66,109,92,105,119,104,102,104,107,102,111,100,99,104,102,111,107,113,95,110,106,98,112,95,109,102,102,122,95,111,104,114,112,99,109,112,105,110,105,108,111,103,108,98,96,95,102,111,99,107,103,100,112,101,107,109,105,101,103,94,117,113,112,102,108,101,111,102,116,104,99,103,106,115,101,108,123,101,116,104,103,106,140,106,102,106,125,102,103,123,104,111,113,101,104,105,99,98,106,114,99,87,127,109,103,106,120,91,113,105,98,90,102,118,110,94,98,99,90,109,111,101,109,100,90,105,113,121,106,101,109,84,110,106,93,100,116,100,98,104,107,104,100,101,105,103,97,102,101,99,108,102,105,104,105,115,108,110,102,103,99,92,96,98,106,109,110,102,96,92,98,104,104,105,109,105,105,107,103,102,111,108,94,103,106,99,102,95,110,119,99,116,98,95,112,110,72,107,115,114,101,101,107,115,94,89,93,100,102,113,99,103,109,98,99,103,102,100,80,104,110,124,117,114,96,104,128,117,100,108,120,112,116,99,110,104,106,101,97,94,96,98,92,111,95,107,107,106,100,98,101,90,97,100,103,106,91,102,108,106,102,105,110,110,99,101,107,95,104,96,96,110,117,116,97,102,120,94,109,106,103,106,108,117,107,105,111,116,99,106,95,102,110,106,107,108,105,121,103,114,112,111,100,99,109,110,104,99,92,108,98,106,120,91,124,107,95,107,103,107,105,87,117,105,92,110,108,113,106,108,107,97,105,97,116,102,110,103,110,100,105,106,135,126,98,101,113,98,109,102,104,122,115,100,98,102,97,110,103,101,99,100,99,102,101,99,99,106,102,100,110,106,109,105,100,98,100,94,99,105,105,112,111,114,111,103,114,102,105,95,111,104,118,102,108,111,100,107,95,107,102,105,108,110,114,111,101,107,102,102,101,111,97,111,108,92,95,110,118,107,105,106,105,108,102,117,109,107,109,100,108,105,106,101,99,96,115,116,117,105,94,91,99,99,100,103,95,108,105,107,109,100,106,97,104,125,109,99,107,110,87,113,102,99,106,107,104,101,103,104,105,104,94,103,102,99,113,96,111,104,94,107,114,107,108,113,108,106,111,101,104,101,111,106,101,120,97,110,97,115,109,105,110,110,111,118,102,101,109,87,106,117,96,100,104,105,96,105,104,99,103,114,103,114,107,116,105,103,108,107,102,108,96,99,103,103,113,105,108,104,104,95,107,111,103,94,97,95,102,116,110,107,111,108,111,78,109,117,107,102,99,106,97,99,104,100,103,110,111,106,118,105,107,101,100,97,106,100,104,100,113,123,104,117,107,109,101,112,112,113,108,102,106,101,101,110,117,99,90,113,115,118,102,129,95,109,98,102,107,98,107,96,105,113,99,106,109,101,102,110,99,103,108,109,99,107,109,97,109,103,98,99,116,103,110,118,111,105,100,108,104,94,105,104,111,92,114,100,108,118,101,96,114,107,118,114,113,112,99,112,95,101,103,102,105,102,100,105,99,108,106,91,109,102,104,106,100,116,117,117,108,85,98,109,109,111,104,104,108,116,99,105,118,113,116,91,112,109,111,109,114,110,103,104,116,91,102,107,111,104,91,103,103,107,99,111,119,111,102,97,99,98,102,102,102,104,98,100,103,109,109,98,117,99,114,100,71,113,98,94,107,109,98,117,105,106,92,101,106,111,100,99,110,110,101,92,98,114,106,113,102,73,93,107,107,100,121,95,123,117,100,102,116,145,126,121,133,158,127,148,115,112,143,107,120,111,108,114,114,120,90,108,100,108,106,104,96,113,101,110,120,114,99,113,113,106,112,116,111,106,92,101,108,116,108,121,106,115,110,100,84,110,109,112,111,100,88,114,112,116,116,111,104,103,116,106,119,115,103,108,108,116,116,112,100,105,103,107,115,93,98,114,112,98,104,100,98,114,108,112,103,110,107,104,110,101,113,115,102,116,83,97,107,97,108,106,102,92,106,111,113,97,119,103,117,108,112,103,96,100,102,112,110,95,96,100,110,100,112,103,117,108,105,103,116,106,101,103,100,105,117,101,101,115,97,105,101,116,118,116,99,103,102,117,119,98,108,109,109,105,110,108,107,110,115,109,111,111,114,101,113,109,98,101,110,109,106,105,112,102,109,114,113,110,115,110,93,107,102,115,111,97,102,104,87,87,88,120,107,106,102,109,113,110,123,97,121,118,113,110,103,107,94,105,113,99,103,109,108,106,98,99,106,93,110,105,98,96,112,93,101,106,107,114,98,118,98,107,109,103,111,106,104,110,107,111,99,110,95,96,111,113,109,109,100,97,101,103,119,106,101,95,108,108,91,103,98,103,116,117,103,94,106,110,98,107,114,101,107,107,92,103,105,95,100,111,108,103,113,102,110,110,100,81,100,94,98,106,100,85,125,112,106,95,111,108,115,108,111,109,103,104,108,104,107,109,95,97,99,119,104,103,109,110,119,97,104,113,106,100,102,101,111,109,113,110,101,101,97,108,98,108,99,106,114,105,103,104,108,103,108,101,96,106,99,95,98,113,111,101,107,108,101,109,107,106,108,100,91,104,104,116,106,109,106,103,100,105,103,101,109,110,107,106,97,104,135,98,100,97,75,105,110,107,106,116,115,112,107,115,108,95,113,102,100,104,96,107,99,110,111,112,104,103,111,104,107,114,110,102,107,106,105,99,103,104,113,107,105,99,83,98,104,110,103,106,106,107,101,102,110,107,108,111,119,103,103,99,94,104,95,110,109,116,99,108,106,113,107,101,105,106,109,105,102,103,97,98,100,107,100,107,88,112,116,105,126,107,106,107,113,103,107,116,108,101,108,106,102,111,129,94,118,101,115,110,103,104,68,100,103,104,113,106,78,105,107,130,111,99,105,101,102,103,101,111,112,113,116,99,117,102,95,107,114,94,104,73,106,103,107,114,111,111,96,79,111,107,107,118,111,95,99,105,108,109,109,105,115,114,94,102,105,108,108,99,100,98,116,106,104,108,95,117,103,95,109,116,105,111,105,101,114,111,114,104,101,103,106,116,105,110,105,120,114,117,110,91,104,116,106,99,105,110,109,113,108,111,113,115,109,115,102,108,99,109,106,102,110,100,108,95,106,107,96,102,97,128,105,102,109,110,107,112,102,101,105,111,101,101,119,98,100,116,100,111,117,112,108,122,111,110,108,109,121,104,115,123,99,113,69,98,100,107,117,103,108,118,104,107,109,116,97,88,112,92,111,107,104,121,104,113,108,92,107,105,109,108,116,102,85,98,103,86,128,106,102,98,102,103,105,124,110,91,109,106,104,110,94,123,96,109,112,116,100,112,104,104,103,108,105,114,113,98,105,111,106,104,108,103,97,115,98,96,107,130,107,88,100,87,107,110,102,102,103,104,102,112,115,108,99,103,113,112,108,96,109,94,109,113,111,99,112,112,129,101,100,106,106,115,105,101,103,117,100,98,104,114,110,110,100,101,108,104,108,99,100,124,116,109,110,102,98,96,104,106,94,104,104,113,113,122,118,105,105,88,99,107,117,104,100,105,101,121,109,101,108,107,108,113,108,103,114,119,112,101,119,106,91,104,105,104,114,84,106,94,107,107,101,106,102,104,108,100,109,98,112,99,118,102,99,98,90,107,117,100,109,108,112,109,116,102,101,112,104,118,90,108,117,98,113,104,106,100,92,121,101,103,106,114,108,109,106,91,123,102,93,107,109,105,106,110,106,100,96,116,111,101,110,109,110,98,104,106,103,101,108,109,108,113,101,105,109,79,99,111,95,113,101,103,107,97,90,105,117,102,95,100,110,104,100,113,91,112,106,121,107,93,100,109,112,98,102,104,103,116,112,112,98,85,99,106,100,108,112,109,107,100,107,103,116,106,96,97,97,109,105,113,99,94,107,111,92,93,106,108,109,122,106,100,97,96,103,112,93,104,103,104,108,102,101,107,100,101,98,115,109,105,96,95,106,118,111,107,100,93,108,108,110,107,106,100,108,118,91,100,115,102,113,111,105,100,97,105,111,104,94,106,117,99,114,119,115,104,116,107,107,108,113,109,107,102,110,113,99,106,102,104,107,103,108,99,103,106,91,101,96,102,99,112,95,105,102,106,97,101,102,97,108,103,102,103,107,105,105,112,102,100,100,99,101,88,106,94,121,103,120,98,99,73,109,105,109,95,110,118,111,98,104,114,105,105,99,121,97,105,101,103,106,81,97,107,108,113,99,81,94,87,87,109,100,108,113,88,97,107,107,116,120,105,112,107, +554.50226,99,97,100,104,104,95,105,112,99,111,103,83,97,112,106,102,109,89,91,122,93,95,100,98,90,112,112,113,106,108,121,95,101,112,108,108,109,93,82,107,113,100,107,107,112,90,102,105,100,99,98,95,102,104,98,95,107,111,109,106,117,98,97,108,91,103,96,107,96,95,100,108,103,107,100,118,102,93,110,101,100,105,104,101,102,107,91,102,80,100,88,100,105,108,92,106,87,113,97,99,102,94,87,102,103,112,105,113,104,104,107,101,115,114,104,74,100,101,109,105,110,94,108,102,116,108,115,103,113,105,105,107,101,104,96,108,107,115,114,99,116,113,95,98,103,90,100,108,92,98,101,114,109,98,98,91,101,105,112,114,102,97,108,100,104,103,111,104,89,114,113,92,112,110,94,106,114,102,106,109,115,99,98,126,105,108,98,95,102,98,101,111,100,106,107,113,82,109,103,94,120,96,97,105,93,96,119,113,95,110,95,95,109,102,97,108,93,105,94,103,96,124,110,111,92,99,91,109,105,104,97,107,101,110,100,89,100,111,101,104,101,111,106,114,101,104,87,97,109,104,106,101,121,110,99,121,95,107,112,104,94,109,99,96,99,99,67,102,101,96,103,103,99,110,107,106,103,109,96,118,111,107,106,106,91,100,96,102,103,99,107,108,104,103,113,96,103,93,101,87,93,103,97,107,96,97,106,112,102,100,96,105,106,111,110,101,108,100,101,100,99,88,93,101,114,97,105,108,107,95,99,112,109,102,100,112,94,114,98,95,104,110,108,110,107,112,95,96,105,100,96,104,108,93,103,115,100,107,108,102,99,97,99,102,100,107,101,100,109,114,108,90,103,110,105,109,101,93,99,96,114,98,94,112,102,87,112,99,101,109,106,92,104,105,101,106,102,106,116,113,94,108,117,112,109,96,102,99,105,99,96,102,98,106,106,106,97,105,112,106,108,100,94,104,106,102,102,104,105,96,109,105,105,107,102,91,81,83,109,113,107,106,102,106,105,108,97,102,104,103,100,104,104,106,95,103,97,99,108,107,105,105,101,109,121,117,104,106,108,107,100,109,112,99,99,105,96,106,96,103,92,102,113,91,106,102,109,111,88,91,103,111,107,102,87,98,99,105,108,95,109,96,102,96,97,107,97,95,111,97,115,103,136,99,101,101,108,98,99,98,101,86,113,107,105,108,105,104,103,105,92,97,100,98,102,120,95,90,101,83,93,101,90,104,103,97,104,98,113,97,105,109,108,106,106,95,116,93,110,91,102,102,105,106,134,101,109,103,90,113,100,91,103,102,111,103,104,96,99,102,97,92,113,107,99,109,116,108,95,94,98,100,87,116,114,126,101,109,106,113,96,112,100,99,103,104,103,97,96,109,97,105,102,102,106,103,99,97,111,111,95,106,98,97,103,108,100,106,96,107,106,106,103,120,98,112,104,99,112,104,94,101,105,104,107,105,99,85,105,97,112,106,95,95,98,106,115,112,118,101,111,102,103,116,101,100,105,105,100,114,107,92,103,107,92,110,102,106,98,99,99,106,105,100,102,105,106,103,106,103,103,107,110,98,114,109,99,116,95,104,90,116,99,106,105,117,100,107,114,103,108,101,107,97,101,106,96,96,106,94,113,112,107,106,98,94,95,103,98,104,105,121,95,96,107,95,105,106,107,100,112,100,109,82,98,109,103,99,83,112,112,111,104,105,105,113,106,112,111,96,104,111,103,86,105,103,91,103,93,94,109,105,110,106,114,105,112,108,110,99,106,113,117,117,122,110,94,75,115,100,114,103,106,98,99,108,105,93,98,117,102,112,105,109,114,100,108,105,83,104,116,102,106,99,113,121,119,102,109,103,108,69,95,116,104,114,112,102,117,110,113,94,104,120,104,110,98,102,111,99,109,95,124,109,105,103,106,100,106,96,105,109,109,102,111,108,94,102,108,113,113,111,102,122,97,98,106,101,120,110,106,106,113,87,101,101,99,99,108,106,107,104,97,104,91,102,90,104,96,109,102,108,98,109,90,101,101,98,99,97,103,110,106,104,114,108,70,106,101,98,102,98,128,105,92,101,112,101,104,108,108,107,117,95,104,106,107,100,114,112,110,115,96,112,87,106,98,112,102,105,102,106,112,103,106,99,116,85,114,107,115,116,95,105,105,103,114,91,108,111,100,111,99,110,96,109,118,100,110,118,96,114,112,102,91,103,97,104,75,117,108,100,100,106,107,109,109,113,91,122,108,110,103,105,107,92,106,87,91,99,100,119,111,109,103,100,99,120,89,116,106,106,98,112,105,112,114,101,104,109,105,101,78,95,116,101,104,96,109,97,107,99,111,102,112,110,99,106,121,129,114,112,120,139,156,136,133,155,128,130,117,135,129,126,120,122,109,129,95,108,102,103,106,113,103,108,97,116,125,98,95,113,104,96,99,104,110,102,98,106,94,114,105,121,108,103,100,109,98,111,100,103,102,94,100,99,109,103,102,132,106,110,95,106,96,111,110,111,102,99,105,119,99,112,113,101,111,82,109,131,100,120,102,106,108,110,101,115,111,109,101,118,107,98,113,116,102,120,104,102,111,97,107,104,108,106,112,107,112,92,114,95,112,111,99,106,106,106,108,105,117,93,107,113,94,104,87,95,95,102,104,121,112,104,108,112,108,107,112,108,104,101,102,108,99,110,114,111,114,102,116,111,113,103,108,85,116,97,96,114,99,121,111,107,109,104,117,108,96,97,107,94,114,101,107,118,103,108,103,118,107,105,116,111,92,112,102,101,104,114,96,110,107,103,107,110,100,97,106,108,110,106,103,91,108,111,111,109,99,113,113,94,112,110,106,99,112,109,105,100,107,107,71,101,117,98,106,108,109,102,116,99,112,109,106,96,101,105,107,116,120,102,111,112,99,103,105,104,89,125,102,121,102,106,96,104,101,107,110,84,101,113,92,111,107,102,112,118,96,95,110,113,99,90,121,104,110,107,106,100,112,109,100,101,113,115,98,116,121,102,112,105,105,100,104,108,114,96,115,96,106,119,111,104,117,101,107,109,111,109,112,116,99,118,99,104,115,108,104,98,103,117,120,79,99,106,104,97,119,100,101,107,98,120,116,106,99,103,78,99,109,102,99,105,113,98,103,109,107,93,111,104,95,101,104,107,105,98,108,98,101,109,118,106,111,108,107,105,109,109,99,100,104,109,102,100,125,115,98,113,116,113,108,73,99,101,111,104,102,114,105,104,109,114,111,112,96,103,80,106,110,92,106,91,111,100,103,115,104,106,120,96,115,110,116,102,99,106,102,80,109,105,106,102,102,104,108,96,108,105,108,103,85,121,107,102,106,102,92,96,92,112,107,111,108,113,102,93,111,99,103,102,113,113,96,107,105,112,100,111,102,108,108,116,96,99,99,104,107,108,109,102,118,110,103,110,107,102,106,109,117,108,90,106,87,110,97,96,90,114,105,102,99,92,106,112,106,103,107,112,108,110,91,101,104,113,98,88,106,116,117,96,91,117,100,108,109,113,106,109,107,109,102,112,121,128,97,111,106,114,111,80,105,111,110,107,99,105,111,97,94,112,104,109,115,139,105,103,100,100,110,108,113,101,85,94,111,108,104,112,92,121,107,117,107,99,99,93,106,115,103,129,102,106,98,107,109,119,114,102,104,108,95,102,101,98,105,101,112,97,113,94,104,99,111,116,83,105,117,107,106,113,99,81,111,108,103,114,107,105,107,107,100,103,113,94,109,102,108,102,104,103,103,102,108,101,101,112,104,104,101,103,94,111,112,99,106,119,106,101,120,100,98,113,120,119,95,90,110,116,92,101,114,102,102,103,99,98,113,108,108,108,106,116,101,107,107,119,91,106,106,107,93,108,102,113,112,107,98,105,99,104,102,109,95,107,105,91,106,110,103,100,112,110,101,103,94,107,99,102,100,100,94,113,109,120,98,94,102,98,98,98,111,115,113,102,103,99,106,110,98,112,101,99,99,104,101,107,101,102,106,106,111,112,98,104,95,97,111,101,108,96,93,108,113,110,112,100,111,105,104,97,105,94,94,117,106,105,98,102,107,98,103,108,108,121,99,102,102,108,97,101,95,119,106,105,108,103,103,99,103,109,95,114,138,101,99,102,109,117,105,124,110,109,107,102,95,119,110,98,108,106,108,94,113,105,89,99,113,109,109,107,114,101,117,109,109,93,95,103,109,100,106,102,111,98,98,103,111,113,107,110,118,110,92,103,104,97,106,110,108,95,98,110,104,105,105,93,108,104,110,98,103,105,110,88,107,107,105,91,106,103,113,98,93,107,102,103,103,114,104,100,92,103,107,103,91,109,104,99,100,113,118,106,86,106,92,105,103,103,115,106,111,103,103,108,116,101,120,110,92,85,113,111,114,111,92,109,104,112,120,102,98,102,105,103,95,93,105,110,130,101,110,102,106,100,108,112,110,99,119,99,96,122,115,104,114,108,103,105,89,97,91,102,113,110,116,96,97,102,111,108,96,103,110,99,109,102,111,108,94,114,100,94,101,119,115,87,100,95,98,113,103,103,113,117,99,101,105,97,98,100,104,103,110,98,105,87,105,101,109,103,105,105,132,100,104,101,103,102,116,109,105,93,103,100,137,113,110,97,99,101,125,110,96,104,107,95,121,115,102,101,112,111,92,111,117,109,100,100,99,103,109,116,101,97,102,98,99,106,91,107,100,105,110,87,99,105,105,79,104,102,108,105,108,106,92,108,109,107,105,121,94,112,91,92,106,107,104,116,107,110,95,94,110,112,89,108,113,97,113,109,107,99,108,107,98,117,98,119,115,106,104,95,103,109,107,93,101,97,89,98,105,106,110,99,113,111,99,108,108,106,106,106,96,108,97,96,94,94, +554.64313,96,104,88,103,95,112,91,110,108,118,124,99,107,108,98,94,120,106,95,96,97,92,114,97,96,110,108,109,108,109,105,103,97,109,118,95,113,88,88,96,77,125,101,111,99,98,98,101,101,113,109,83,105,100,121,105,107,103,112,107,71,108,105,99,100,102,114,106,116,98,107,126,91,95,100,115,99,105,103,105,98,88,100,92,110,106,96,91,97,99,106,101,99,107,99,92,120,94,83,102,100,101,107,110,102,103,106,96,103,87,104,99,105,98,106,99,102,101,88,96,100,86,113,101,102,119,108,101,98,109,99,106,113,87,108,100,106,101,100,104,110,100,91,91,63,118,117,95,105,112,111,93,100,94,110,101,107,122,109,106,121,104,108,108,104,107,101,88,116,98,97,106,104,113,95,92,103,98,107,114,101,105,109,111,106,101,87,89,113,103,95,97,107,102,91,104,103,104,105,106,91,104,102,101,100,110,100,96,106,105,111,107,100,96,103,113,76,117,110,101,113,108,103,114,91,102,103,108,106,92,117,113,104,111,112,108,117,105,109,98,103,98,108,102,109,102,106,96,115,104,109,99,99,98,101,102,105,102,80,107,105,103,96,105,95,110,100,112,111,109,106,96,100,103,110,107,103,95,104,107,103,114,102,112,105,105,104,110,107,83,94,99,112,97,99,111,120,101,99,93,106,97,103,98,96,102,96,97,100,107,105,103,111,99,106,88,92,100,96,99,102,104,101,108,104,99,121,106,104,109,110,102,107,104,112,99,105,85,104,97,110,116,113,99,100,108,94,121,112,94,99,118,106,115,84,99,100,104,111,112,101,112,98,108,103,101,103,106,97,112,95,92,96,82,114,112,87,107,99,114,98,106,98,106,102,112,90,100,100,107,111,102,110,100,104,104,102,108,99,98,101,126,112,103,113,105,101,102,88,105,90,108,100,100,100,95,103,109,106,94,105,111,101,108,101,103,110,99,84,110,101,103,95,108,110,101,102,114,105,98,95,104,101,101,109,116,113,90,111,106,94,99,94,108,103,104,97,109,100,102,89,113,107,118,106,108,108,102,108,107,100,108,106,96,104,90,101,113,103,104,101,114,112,117,103,103,99,95,98,74,103,107,114,97,109,108,106,105,105,110,114,105,102,105,103,103,103,106,110,99,106,108,112,104,116,107,95,110,108,98,99,107,104,109,105,113,114,70,105,103,94,111,113,112,96,111,110,111,111,106,100,102,104,106,111,103,104,114,100,109,98,104,117,96,108,98,112,109,109,94,110,114,109,105,107,115,101,113,97,109,95,100,108,94,106,108,111,121,99,102,95,99,106,103,104,104,96,96,100,92,105,96,102,110,115,108,109,106,112,105,101,113,111,95,107,103,95,90,105,107,117,109,102,101,104,117,99,109,98,101,113,109,98,107,107,106,103,108,111,98,100,110,99,103,96,102,98,106,102,102,113,105,98,114,106,101,100,92,111,98,93,117,108,100,106,118,107,116,107,98,122,102,102,105,86,107,104,105,106,100,122,86,105,113,101,116,102,106,108,119,104,111,114,71,103,89,111,116,108,109,100,90,99,120,111,104,103,105,110,100,114,92,101,107,101,114,113,112,102,104,108,117,106,100,111,107,97,107,116,105,125,97,102,100,105,119,104,103,99,104,111,85,95,67,102,96,104,111,100,101,101,91,97,107,112,106,96,98,105,111,109,109,101,101,98,101,99,112,122,105,115,109,100,109,116,117,101,108,107,92,109,105,104,106,102,104,113,108,131,104,101,113,103,100,99,109,107,100,112,115,111,105,112,113,100,106,110,101,102,106,105,112,100,101,109,108,99,106,102,91,115,103,107,105,108,101,103,117,109,109,104,102,100,102,117,116,104,90,97,110,112,103,117,111,107,109,93,107,117,95,100,115,106,103,105,98,105,109,96,104,106,103,112,101,105,109,109,105,66,103,97,108,107,94,100,100,105,108,104,110,114,112,96,108,91,98,101,99,108,95,107,112,91,122,112,109,86,106,104,101,101,116,95,113,117,99,109,129,105,109,114,96,110,106,112,113,105,103,107,102,104,113,103,102,110,106,99,117,104,109,98,108,87,109,111,103,97,109,104,108,87,107,108,110,109,100,107,95,110,108,103,95,105,105,105,98,104,124,95,108,109,97,88,109,106,98,101,113,92,103,94,107,102,99,111,103,95,104,102,102,100,109,103,96,113,120,97,91,101,96,119,99,116,112,113,92,99,83,109,102,102,106,95,110,109,103,96,99,111,111,108,112,103,98,108,120,113,106,117,104,98,101,100,87,113,108,110,104,113,116,123,119,89,98,102,115,106,108,125,111,103,101,117,103,119,95,125,109,123,126,103,132,130,148,137,122,116,134,129,111,123,112,134,132,129,113,119,111,99,113,107,110,118,110,106,115,95,110,110,90,100,100,92,125,110,105,104,106,107,105,103,104,88,102,121,121,111,110,113,107,100,102,112,105,109,95,102,103,100,123,109,109,116,98,114,110,105,113,99,108,114,107,106,115,96,100,97,114,102,80,110,109,106,109,107,112,102,106,108,110,109,117,111,97,105,112,103,104,102,101,104,107,103,114,107,109,103,108,106,106,113,100,119,106,94,112,106,105,99,107,99,91,112,99,107,95,115,97,87,91,103,111,107,106,112,112,113,101,116,101,112,117,123,111,112,119,114,99,103,108,110,109,110,113,100,116,100,96,98,91,109,103,102,117,92,109,119,112,116,105,101,101,113,112,100,105,103,107,104,99,101,102,110,107,110,101,106,109,104,104,87,106,107,102,124,112,100,103,91,112,112,110,121,123,97,112,121,99,92,105,102,101,106,105,93,124,103,107,99,108,109,108,102,104,114,109,100,111,103,103,94,96,110,107,122,100,108,112,108,110,113,107,105,113,104,103,111,109,101,105,105,102,105,111,105,112,94,98,111,100,103,107,111,116,109,124,104,78,105,95,102,107,99,119,107,108,97,104,100,104,104,119,97,108,106,101,113,110,121,103,94,95,102,108,108,110,106,118,99,103,110,108,104,103,105,107,108,101,120,106,107,99,112,109,93,103,108,120,101,112,113,104,108,114,99,110,95,110,113,112,109,113,120,118,99,96,115,106,105,113,95,98,106,100,109,105,94,101,91,112,110,102,112,107,113,101,106,105,109,106,92,102,97,103,99,101,111,98,118,110,99,101,98,112,94,101,108,108,101,111,116,105,104,87,96,110,102,96,113,101,107,104,114,104,113,108,101,108,106,103,97,102,101,90,116,105,107,99,96,111,102,117,105,113,97,103,107,109,97,106,112,103,109,103,102,96,100,104,94,109,105,106,104,107,118,112,101,110,108,96,99,86,114,107,101,103,102,94,108,100,108,111,111,102,110,100,119,107,97,100,98,105,110,106,103,106,113,108,110,106,104,103,108,96,96,105,105,101,110,116,93,91,106,105,92,111,110,108,109,120,108,105,116,107,100,106,110,104,108,109,112,111,104,116,104,104,104,100,108,93,113,101,108,117,99,106,111,107,106,95,120,104,96,100,99,110,102,107,101,103,108,120,106,99,106,111,108,100,105,103,111,112,76,105,101,109,102,104,101,110,96,104,106,96,109,94,107,110,107,107,123,128,100,107,101,103,108,102,104,109,107,100,100,113,96,115,110,102,105,106,97,112,100,109,95,102,113,110,114,112,113,98,106,113,103,102,120,93,98,109,103,102,96,98,118,99,110,109,94,107,113,107,109,105,107,109,104,110,112,106,101,88,109,100,106,108,100,100,106,98,121,98,110,112,108,106,107,108,97,103,110,101,120,110,106,110,109,90,101,107,95,109,112,112,103,103,111,100,109,110,107,109,111,109,98,112,102,113,110,106,103,113,101,105,112,106,103,106,99,106,107,112,100,106,107,106,102,105,104,96,104,112,112,98,106,123,101,113,101,108,106,104,99,102,106,102,100,102,92,112,109,117,117,100,103,106,106,100,115,105,110,110,96,101,109,108,105,103,108,103,91,102,112,105,117,99,90,94,104,108,100,108,103,109,94,110,105,104,108,88,115,102,112,108,103,109,102,106,88,104,105,104,95,106,102,99,104,105,105,115,107,106,95,105,114,108,100,94,102,99,91,105,106,107,90,106,121,100,109,107,107,92,116,96,107,105,109,110,94,104,116,108,109,100,106,100,94,112,106,119,111,102,107,100,101,105,107,109,105,106,65,108,110,109,104,104,112,107,102,98,115,102,116,112,100,112,99,109,112,112,106,100,102,121,100,107,103,97,111,94,100,87,110,103,102,99,117,106,104,110,99,102,112,109,96,107,94,99,103,112,102,103,101,105,100,100,111,101,98,104,107,110,113,108,90,103,116,105,107,106,83,118,108,112,111,107,107,100,104,100,105,112,84,109,95,102,100,100,98,107,114,104,109,110,100,98,103,83,95,121,111,109,94,110,100,91,109,112,111,95,109,91,109,103,102,107,91,99,107,103,105,106,95,107,100,103,97,108,112,110,109,119,111,112,104,109,101,106,97,97,90,108,91,106,116,116,107,105,103,94,104,114,96,103,100,110,106,91,107,100,90,111,113,108,96,112,106,99,114,107,112,108,102,107,103,106,98,101,109,101,111,93,108,114,110,117,101,101,105,106,104,93,108,107,101,118,113,105,99,95,109,98,95,111,112,102,113,94,101,114,107,97,104,98,109,102,97,105,99,103,97,103,95,93,110,102,111,99,96,100,114,125,99,100,99,99,110,113,101,100,120,113,107,96,106,105,102,99,100,101,96,104,109,108,110,121,107,91,90,103,105,103,117,95,113,93,99,112,97,104,100,102,112,108,104,99,98,114,119,93,110,106,104,95,121,108,106,101,98,109,108,108,103,119,115,96,108,105,102,90, +554.784,107,104,97,109,93,104,95,96,104,102,103,91,111,110,105,102,93,110,114,111,111,101,104,106,87,106,105,96,103,107,103,106,94,96,95,101,115,106,102,101,100,106,95,109,80,98,95,109,108,105,88,93,95,98,128,100,97,103,103,103,100,86,95,105,98,106,89,101,102,100,105,108,95,100,107,113,98,95,117,95,98,101,106,100,97,100,103,110,116,93,99,105,108,114,106,106,97,105,106,105,118,99,101,71,105,103,92,113,99,104,101,95,111,87,99,109,94,114,93,95,101,106,101,118,105,130,113,100,121,103,111,95,104,109,105,118,102,108,103,101,108,96,106,104,100,82,100,103,101,99,105,114,112,102,109,94,93,107,100,95,96,107,113,98,106,103,114,98,124,101,106,98,94,98,118,105,111,124,95,98,111,112,99,109,133,101,101,98,95,106,104,115,94,99,94,105,103,94,99,116,102,92,102,113,93,109,108,104,111,106,95,103,118,100,120,104,105,108,103,107,97,108,104,113,112,95,121,99,99,112,118,109,105,103,105,93,94,119,108,106,108,121,114,112,104,101,119,104,102,106,104,103,98,97,106,110,99,93,90,95,106,105,107,81,92,108,98,109,111,106,108,98,109,114,111,112,101,107,110,112,93,105,105,100,111,103,96,105,108,103,117,124,112,103,107,99,110,103,98,103,98,111,101,117,116,110,129,107,120,104,93,108,95,89,102,101,98,117,111,99,99,98,105,85,101,97,111,95,107,102,114,113,103,103,89,106,101,111,101,95,93,111,104,99,102,108,99,99,107,111,95,109,100,106,107,103,115,103,110,97,103,100,104,102,114,108,114,116,109,108,109,132,106,106,108,114,108,104,94,118,112,109,102,110,108,109,99,116,113,108,103,90,102,99,107,109,89,109,109,109,86,101,111,99,114,110,94,107,107,100,92,112,124,101,103,101,107,99,104,114,105,107,99,103,119,106,100,99,105,111,98,107,90,99,99,77,101,117,110,104,110,108,103,105,106,100,104,107,112,120,100,99,107,107,104,105,119,105,113,102,102,117,106,114,111,105,102,108,104,88,117,115,81,68,88,106,99,105,118,109,105,97,91,103,102,99,85,101,106,106,93,108,92,91,107,110,112,102,114,93,110,103,105,110,104,100,105,98,108,93,102,99,103,103,106,104,103,114,102,100,99,93,92,101,96,98,105,107,113,99,95,106,110,103,102,105,108,96,109,110,102,100,95,105,95,100,109,112,102,105,99,137,110,103,93,97,101,110,94,100,111,102,105,102,101,117,99,111,105,100,97,102,104,107,103,107,106,107,100,98,107,97,109,90,106,103,114,97,108,107,108,102,102,101,124,107,110,105,119,93,96,104,99,97,95,96,99,108,100,104,113,99,114,108,106,100,107,112,103,102,104,103,124,107,100,109,83,100,80,101,65,98,90,96,99,107,108,109,109,99,101,106,104,107,111,98,86,106,106,113,104,106,118,94,105,102,114,89,98,106,108,104,108,103,96,117,105,109,106,98,103,109,102,100,99,96,103,103,117,103,118,118,107,97,96,101,99,104,108,104,100,102,106,113,113,99,116,103,101,102,103,104,107,119,107,108,106,107,103,108,104,112,113,99,78,87,110,99,108,111,106,84,100,104,99,98,105,99,116,106,116,109,103,120,113,90,105,99,105,89,107,94,104,115,113,91,112,113,104,102,111,104,107,103,112,91,95,105,105,99,111,102,72,104,104,112,106,104,99,99,104,105,112,106,106,107,116,104,110,103,97,106,102,97,95,86,116,116,106,102,108,113,99,118,104,114,104,110,103,108,102,109,99,105,100,94,97,103,105,98,100,100,99,109,104,105,100,109,117,105,105,114,108,102,98,102,103,108,102,102,106,111,127,97,104,103,110,106,109,103,107,116,98,101,107,95,111,119,99,105,107,104,106,112,79,113,98,107,89,108,101,103,94,113,99,80,98,103,108,105,110,109,114,104,107,102,107,89,99,96,96,112,113,101,107,109,112,110,114,96,118,118,113,97,100,76,115,98,102,104,105,113,107,95,95,116,86,100,105,111,104,103,102,113,108,98,89,108,108,104,99,100,107,117,110,112,103,99,108,95,101,110,104,111,120,110,88,111,101,98,96,105,101,99,97,107,104,93,107,116,102,113,118,112,81,108,99,102,113,120,109,104,100,83,103,97,129,106,94,105,115,107,116,109,95,108,102,105,90,95,107,100,103,93,103,95,110,116,107,104,114,112,100,104,99,104,101,98,89,105,96,104,119,104,106,108,107,92,105,111,92,112,98,97,95,95,107,109,96,108,104,106,110,93,110,113,105,101,107,114,104,114,116,100,103,93,108,111,112,126,120,133,142,132,133,153,143,146,130,133,113,120,120,131,122,119,108,96,102,105,117,106,102,93,90,113,108,99,98,104,98,118,101,108,105,111,108,107,109,102,102,114,84,92,109,103,98,109,115,99,111,105,112,94,91,104,112,105,106,120,110,103,114,115,104,107,87,99,102,104,109,110,97,97,116,96,108,115,95,121,103,92,106,104,94,110,104,120,101,97,107,112,103,101,99,105,105,99,94,118,109,103,108,109,91,97,101,116,108,107,111,111,102,119,107,116,108,99,109,112,109,102,116,92,117,107,97,98,104,90,103,113,108,95,103,106,101,107,113,111,103,107,103,113,105,102,120,113,100,109,111,104,120,83,102,105,116,105,102,103,109,110,106,104,103,106,125,114,111,112,105,113,98,106,110,119,108,123,109,99,100,103,103,113,113,99,114,93,107,94,101,113,103,103,91,100,99,107,106,99,111,104,112,97,103,113,112,99,100,113,108,104,115,112,107,94,113,120,109,113,117,100,108,121,86,105,110,105,100,105,99,125,107,110,113,116,113,101,99,112,103,109,104,114,102,115,105,126,109,107,104,111,98,105,111,100,106,107,103,108,104,103,107,103,102,85,111,104,105,104,107,115,110,96,112,110,106,97,101,100,109,97,111,129,119,103,112,100,100,104,109,105,124,112,107,106,102,100,115,121,97,108,125,100,102,87,103,106,105,103,107,117,103,114,96,78,107,111,98,100,119,112,112,113,109,101,108,110,107,113,93,95,105,106,108,103,101,107,112,111,95,105,114,98,93,110,107,105,109,94,104,101,108,109,104,106,98,92,104,112,92,104,106,94,98,91,101,93,106,101,98,101,94,107,106,99,100,108,96,106,115,98,93,104,106,107,94,94,100,101,105,101,113,117,111,102,98,104,96,105,121,103,105,103,117,111,109,108,103,86,103,108,109,104,107,112,113,95,98,108,112,106,100,108,115,111,102,87,116,101,99,96,99,106,113,99,112,111,109,86,110,107,105,99,109,108,105,100,106,111,102,106,110,122,99,111,102,111,110,95,106,108,105,111,101,86,104,105,111,107,102,105,112,94,95,105,105,101,104,109,107,106,109,98,87,103,97,110,106,111,110,112,107,98,95,101,107,109,113,104,100,99,110,108,112,128,108,100,108,108,104,102,113,112,108,116,99,101,101,100,98,109,97,102,99,101,102,111,101,109,99,101,99,109,104,107,117,99,112,92,103,106,102,103,108,117,111,108,104,105,105,104,125,105,106,99,102,106,104,107,104,106,106,108,105,80,102,117,105,109,102,118,104,103,102,95,114,112,112,96,107,110,114,101,106,112,100,104,102,112,111,120,102,128,112,111,108,111,95,101,101,93,120,98,106,103,109,100,133,95,105,101,109,103,103,98,104,117,108,109,136,94,104,102,96,102,88,99,107,106,107,116,114,118,107,111,101,112,103,105,102,113,115,102,108,112,105,105,102,105,103,113,104,99,95,106,106,109,102,83,101,93,99,103,112,110,103,116,106,108,105,101,94,100,110,98,92,104,108,100,102,104,102,118,113,107,107,96,109,102,101,106,95,109,97,124,93,113,110,102,106,90,103,129,110,116,103,92,99,112,115,111,112,114,102,95,97,103,104,106,108,112,106,112,102,105,102,112,101,118,113,102,103,102,114,102,122,103,104,117,109,112,100,108,113,113,108,123,108,110,113,113,114,96,93,100,102,103,103,99,119,103,116,112,114,115,108,102,107,106,111,105,115,109,107,112,118,104,106,92,107,97,99,91,102,113,101,114,104,103,102,101,89,95,112,101,101,110,145,131,111,88,109,101,113,108,91,101,104,109,115,102,105,94,101,98,106,98,99,108,103,98,105,105,101,101,113,125,106,97,110,106,99,109,98,96,110,104,104,104,104,107,102,105,113,100,104,113,105,107,105,102,110,99,112,94,96,107,104,111,111,100,105,95,109,112,102,118,99,87,119,99,113,98,112,99,109,96,106,108,100,98,112,113,99,99,120,90,106,99,108,101,109,113,103,81,92,97,99,102,117,105,106,98,108,96,83,95,102,103,111,98,103,109,97,106,101,93,102,99,101,100,110,109,95,94,100,104,106,108,99,103,103,94,106,124,113,95,100,96,88,104,95,119,105,98,110,92,100,90,109,105,102,116,112,113,127,102,106,103,113,106,102,107,102,104,103,97,115,103,100,97,105,96,109,119,109,109,112,108,100,94,103,116,104,105,109,108,95,100,101,103,106,101,112,120,116,104,110,109,97,88,107,106,94,112,113,119,104,113,93,93,104,113,99,101,94,100,102,103,99,106,98,92,95,91,108,116,94,110,111,115,70,109,108,115,103,107,108,100,96,107,108,124,110,102,113,83,112,102,111,112,102,105,103,106,102,95,111,98,98,103,108,104,98,109,101,106,119,104,93,102,113,97,80,99,100,107,96,98,107,106,100,106,117,99,108,88,101,100,98,109,99,99,115,98,100,95,101,101,112,106,98,110,105,113,83,111,93,107,112,108,95,105,104,108,114,92,87,99, +554.92487,91,97,98,111,78,102,111,84,94,109,100,98,104,105,106,106,109,118,97,109,101,102,101,109,97,112,109,107,104,111,94,102,102,108,109,102,111,97,103,98,109,106,106,101,105,103,78,96,95,101,97,128,95,105,110,107,116,112,102,103,133,103,105,109,104,108,117,103,94,105,102,120,102,107,97,113,109,112,128,92,101,103,111,117,110,104,103,110,105,104,110,100,115,80,106,110,98,100,103,117,98,103,104,101,107,104,106,111,101,114,112,107,103,103,102,106,112,109,102,100,110,107,106,108,107,100,116,136,107,108,98,105,103,100,113,93,100,101,103,90,97,110,106,105,90,112,123,109,91,103,91,102,101,105,103,105,113,109,107,109,109,99,120,103,101,108,118,105,103,100,104,109,100,110,104,100,104,107,98,96,104,104,105,113,102,101,94,97,101,104,94,103,79,106,104,100,99,110,105,97,101,112,104,118,94,109,106,97,103,122,97,100,104,109,102,105,99,105,82,88,112,109,106,101,115,101,106,110,98,92,80,108,99,131,108,96,102,110,99,100,109,111,118,105,85,95,113,96,109,92,102,85,117,109,101,113,102,103,94,109,112,104,102,99,107,92,110,100,98,113,101,98,98,110,102,111,102,103,100,110,98,116,105,102,109,109,109,102,107,112,109,93,103,99,122,104,116,105,99,127,106,98,105,103,100,108,117,103,96,113,91,99,100,106,107,97,103,114,104,95,105,110,105,98,98,99,119,100,109,102,106,99,110,106,104,102,99,117,91,113,94,111,108,109,107,105,108,110,98,108,112,113,96,105,105,101,101,100,106,104,109,102,101,98,112,120,106,113,106,93,113,103,114,103,112,118,110,100,104,102,104,102,102,122,105,109,110,106,114,98,106,92,108,105,104,110,100,103,99,108,96,103,109,98,101,104,92,115,103,100,106,100,107,108,100,91,104,103,93,96,114,113,96,96,117,107,107,114,92,115,109,102,113,109,104,96,107,117,115,100,124,100,103,101,98,110,87,100,121,115,94,100,106,99,118,101,112,96,94,105,111,92,94,100,105,104,95,97,102,96,104,111,100,97,93,101,106,104,96,108,99,106,109,101,98,91,102,102,108,94,110,99,104,102,90,110,91,104,95,107,108,102,106,102,103,113,103,108,112,104,98,105,114,108,112,106,116,112,100,101,112,103,108,107,103,97,111,93,106,102,98,93,92,105,96,117,103,94,106,116,108,105,97,104,114,91,105,95,108,103,107,95,102,99,104,98,106,100,107,110,101,98,104,100,96,107,99,97,100,99,97,105,105,100,103,103,98,104,99,106,100,103,100,94,112,96,103,102,97,104,112,93,107,113,115,109,106,110,108,106,66,102,113,114,104,97,95,104,115,104,94,105,114,115,109,102,113,102,107,111,111,97,110,100,101,103,92,99,117,104,109,109,95,112,110,112,100,103,101,115,104,106,104,94,97,103,104,111,107,115,93,120,104,116,90,102,115,108,102,99,130,96,108,110,90,114,100,95,105,108,106,117,99,107,89,117,111,109,111,106,99,108,98,100,117,115,102,107,107,98,109,117,95,100,103,110,106,115,103,106,102,98,107,98,104,109,113,112,104,114,105,108,102,95,102,108,109,109,115,91,103,91,113,108,103,120,95,99,109,108,116,102,102,105,112,114,106,103,109,101,105,103,104,114,100,106,100,108,101,107,106,99,97,121,108,124,90,104,100,106,93,104,97,105,92,109,99,107,99,118,106,104,102,101,86,111,98,101,98,110,93,92,99,100,101,101,108,116,96,79,98,99,95,116,100,96,107,106,104,108,103,91,116,107,116,104,99,105,81,95,118,101,103,95,98,105,102,102,107,104,102,108,108,103,117,104,112,109,105,108,112,113,112,100,105,114,111,99,111,106,102,94,104,102,91,103,114,110,103,96,108,97,91,119,98,100,107,113,105,103,94,99,109,108,107,97,101,111,117,102,102,106,102,110,105,102,84,105,105,110,101,111,95,100,113,113,89,114,100,100,108,110,99,107,64,101,99,99,99,119,102,119,120,105,103,84,102,107,90,137,114,103,103,100,102,110,96,105,107,94,107,102,107,94,112,103,108,93,108,116,99,110,114,110,105,98,108,103,109,108,102,99,106,114,108,99,116,108,109,97,102,104,100,114,106,106,100,104,99,105,103,105,115,99,99,102,95,112,105,111,97,105,107,117,101,107,124,97,101,96,115,98,105,98,113,100,94,109,99,101,98,104,111,96,106,107,112,106,103,111,94,103,103,108,110,111,107,100,90,104,107,111,109,99,85,103,102,101,116,120,110,101,113,83,108,109,101,105,103,103,100,117,104,110,113,87,103,109,108,132,157,131,145,162,141,146,145,126,124,124,130,139,123,124,135,117,127,121,112,110,108,112,112,101,104,98,92,102,106,98,96,103,102,103,99,111,112,108,97,101,112,95,109,114,102,101,103,106,113,107,106,116,106,92,98,106,101,106,114,117,106,102,109,97,112,101,104,103,109,108,102,120,112,100,107,102,110,106,104,105,100,97,101,97,104,108,109,104,104,94,103,102,99,106,104,100,101,109,94,105,98,99,106,91,119,106,104,106,109,107,102,103,118,105,94,108,106,113,104,116,99,102,106,75,110,111,119,102,116,90,82,106,102,90,86,102,107,102,104,114,102,107,95,87,100,109,99,105,108,115,90,96,79,111,100,97,102,100,113,102,105,102,99,101,99,96,109,114,102,97,100,95,106,107,101,119,103,108,99,105,93,103,100,98,109,100,107,96,108,101,108,94,69,95,112,93,100,96,91,109,102,97,123,85,99,97,114,110,91,108,95,95,112,98,109,103,96,110,113,111,111,102,105,107,113,102,109,102,85,103,113,109,103,107,113,101,95,101,120,113,105,93,114,101,113,100,108,104,96,83,106,107,122,96,88,101,119,94,109,104,105,98,104,117,103,112,108,113,93,99,104,105,105,101,101,96,98,80,83,109,113,110,100,105,109,96,98,107,111,99,114,100,97,103,102,109,102,106,97,98,85,117,102,98,109,102,107,111,89,98,116,110,95,104,107,93,118,101,103,119,109,106,110,98,95,104,107,102,106,89,116,112,104,113,97,105,99,102,113,103,110,96,96,107,116,96,103,109,108,98,101,105,110,101,100,110,94,99,97,109,112,118,95,96,113,111,108,100,103,106,101,106,128,102,104,94,97,107,83,107,104,92,99,99,114,105,110,110,107,108,92,99,98,104,110,106,94,100,110,114,104,100,97,95,105,105,112,105,94,109,106,105,107,103,106,104,109,105,99,99,102,109,127,103,109,98,105,99,109,98,95,103,97,102,98,101,100,108,101,108,110,98,116,105,106,104,112,103,102,111,114,101,102,111,109,101,100,100,106,101,103,102,106,101,104,91,104,102,102,106,98,101,108,97,110,103,99,104,103,116,101,110,96,101,104,97,108,103,107,95,111,107,102,98,113,110,106,101,108,103,103,109,115,109,105,110,109,101,108,98,120,107,91,116,103,120,106,91,112,105,103,114,109,85,90,98,101,102,106,100,109,113,103,121,95,76,89,108,95,101,99,112,100,111,96,100,108,119,95,98,97,103,107,106,98,91,109,92,105,104,103,106,104,106,87,98,91,98,102,105,108,102,108,113,86,106,103,105,105,111,110,107,105,106,113,105,103,98,93,102,109,110,94,106,103,102,91,102,104,97,101,108,111,99,107,99,101,100,103,113,99,95,95,105,113,102,116,106,94,98,94,103,87,104,114,117,106,107,113,104,97,109,93,100,101,112,102,112,109,100,102,101,106,109,99,102,94,87,102,104,100,101,96,108,100,109,103,100,105,94,110,109,103,107,107,108,106,116,102,90,97,101,96,99,111,102,105,106,99,114,100,99,108,101,113,104,84,108,109,95,102,106,117,91,103,112,99,109,112,117,96,102,101,100,96,97,104,105,109,104,109,103,109,115,102,103,116,103,110,103,117,92,110,110,108,102,97,116,104,91,109,106,105,97,106,94,109,98,100,97,102,102,93,102,100,110,106,95,105,96,104,103,100,99,100,106,117,108,105,103,95,101,115,98,115,108,99,98,88,94,100,96,113,109,94,104,92,97,113,107,107,95,103,117,106,106,91,110,113,98,98,104,104,92,101,103,111,109,99,115,92,83,101,98,104,96,99,112,111,98,91,99,106,110,105,108,112,95,100,103,101,99,78,87,98,119,116,104,102,95,98,89,113,101,108,103,110,100,98,88,104,90,102,106,105,85,84,101,83,106,105,93,104,113,104,109,109,107,102,101,107,91,113,135,103,107,102,107,104,99,112,88,110,81,117,96,109,102,94,95,113,113,112,90,102,105,100,111,85,91,104,94,108,95,101,107,108,96,119,100,102,96,108,103,101,99,100,103,92,92,109,105,104,110,105,102,102,100,118,117,112,95,103,113,105,108,79,103,127,107,86,98,107,99,77,102,100,96,99,95,108,106,106,115,97,98,96,100,105,90,93,93,121,112,105,102,103,107,105,105,111,113,99,80,104,106,103,102,99,101,101,109,101,120,104,109,105,100,97,99,120,105,102,110,112,116,101,95,92,98,95,124,101,97,94,102,112,95,101,100,104,107,108,98,104,106,106,107,96,105,106,105,113,98,84,102,106,103,91,88,96,96,95,107,110,92,109,104,95,99,106,108,106,95,104,104,100,86,108,116,89,96,98,84,109,101,101,91,107,100,105,84,103,108,113,129,108,107,106,100,100,97,110,107,108,114,107,95,99,102,108,99,110,114,99,97,102,111,109,96,99,100,107,102,106,109,107,100,97,106,106,98,92,88,98,103,107,90,108,93,106,103,108,114,103,109,99,109,106,102,110,86,73,81,105,105,103,109,109,84, +555.06573,98,110,80,107,100,113,93,99,99,89,105,104,96,111,93,90,108,99,99,109,112,97,110,95,99,94,111,111,104,108,103,98,98,91,108,104,101,118,109,93,94,74,111,116,106,99,100,120,118,104,101,116,93,87,115,90,96,91,107,96,103,99,116,111,98,111,100,100,98,78,92,106,104,95,106,116,97,104,84,108,95,107,101,106,81,103,109,106,94,96,99,108,106,79,102,98,108,96,122,68,106,100,113,104,112,96,105,116,97,99,109,108,100,105,111,97,94,109,105,107,124,109,105,102,104,107,113,97,108,108,109,108,110,108,95,113,106,110,100,113,114,117,98,102,115,93,118,97,108,97,112,94,102,101,108,99,100,103,110,104,102,105,108,127,109,113,109,101,102,96,110,109,118,110,114,117,105,98,115,110,104,99,104,112,101,105,109,99,108,102,115,125,98,95,98,97,97,98,96,106,109,95,94,104,105,105,99,94,116,103,108,100,98,98,101,101,96,111,99,107,113,102,109,125,114,105,109,108,95,109,94,108,111,100,117,104,106,112,98,107,118,101,106,122,106,108,104,97,115,102,105,104,105,99,94,95,100,96,102,96,103,105,101,112,102,111,114,100,113,111,102,102,96,106,97,94,101,105,106,105,109,107,116,99,100,112,90,112,102,108,99,106,110,116,103,103,106,105,103,112,102,103,103,105,111,110,108,111,113,99,96,106,100,105,107,100,73,113,92,101,101,114,112,101,112,100,93,99,109,107,110,87,108,95,104,106,108,92,100,104,104,108,91,119,98,114,100,116,111,99,100,108,101,105,109,112,89,108,106,99,105,103,98,106,94,97,103,103,115,102,99,102,111,103,99,94,106,97,94,106,103,112,94,118,115,108,99,103,107,99,119,90,102,105,111,112,113,107,104,113,102,88,105,96,105,106,110,125,101,109,99,111,82,80,104,87,95,116,106,102,107,96,100,107,105,87,94,116,113,105,93,117,105,93,104,112,96,112,117,105,109,111,117,100,106,103,91,103,110,106,91,99,103,104,101,112,97,101,101,99,109,105,98,110,112,104,105,94,105,109,96,108,108,97,90,93,108,113,106,105,103,121,85,100,110,116,124,116,102,110,113,107,118,100,96,113,82,102,109,99,110,107,100,107,110,102,104,98,107,109,110,108,108,100,98,109,108,102,110,106,107,103,99,100,102,107,100,117,104,108,96,101,98,108,107,107,122,106,104,99,106,114,108,97,124,107,104,106,118,116,101,72,106,97,100,92,100,114,122,99,108,114,105,110,107,116,105,113,108,110,96,105,106,108,109,101,118,91,94,102,111,108,116,101,106,100,118,109,106,115,103,103,113,104,110,108,102,104,105,109,85,93,100,100,100,102,113,103,98,107,112,97,117,110,103,95,104,107,125,101,110,97,103,100,110,121,103,126,109,108,103,103,105,113,92,95,107,96,116,109,105,110,117,105,100,97,94,101,110,113,102,98,102,94,100,110,101,100,106,99,109,133,95,104,103,109,117,103,103,102,88,112,107,106,96,106,103,104,107,99,125,102,107,97,102,96,116,110,97,111,95,117,87,105,108,111,119,100,107,118,88,90,101,105,112,118,101,107,92,115,94,99,108,101,102,100,105,113,114,108,97,106,109,103,117,98,106,121,106,98,127,100,109,106,100,70,104,101,111,99,116,89,101,116,105,120,103,96,102,113,103,114,101,100,113,99,100,121,101,95,113,98,106,107,101,107,94,103,108,103,107,104,107,103,114,103,109,98,110,96,103,106,67,104,100,105,107,107,98,102,107,112,100,106,121,105,110,103,107,107,101,108,96,107,107,115,103,93,104,107,99,99,120,96,107,108,113,85,117,105,117,99,107,119,95,103,103,102,103,111,106,105,113,113,114,95,115,111,112,100,91,111,98,108,108,100,108,96,105,96,95,106,103,107,114,96,97,103,107,122,97,92,107,113,104,94,103,116,94,96,102,103,103,112,88,102,108,100,109,97,101,114,116,103,101,120,106,114,102,111,110,106,104,99,106,97,104,103,117,98,100,112,103,100,104,111,98,102,96,113,93,108,99,84,105,114,101,102,103,99,104,109,125,109,106,95,100,109,109,108,100,117,105,120,102,113,101,109,96,114,99,107,109,116,96,104,107,96,100,103,102,121,103,101,100,106,103,102,108,107,101,106,102,103,101,101,112,98,101,92,97,117,106,107,105,99,102,104,117,108,108,111,108,105,112,120,126,106,89,94,110,103,94,103,112,102,111,110,104,99,101,102,101,99,110,110,116,97,88,104,90,114,111,119,108,105,100,96,129,113,113,105,111,101,114,105,115,100,124,109,109,113,111,101,96,92,107,127,111,107,138,125,129,142,160,164,153,139,143,153,141,110,138,141,117,92,102,118,110,76,109,114,102,107,130,97,105,108,98,113,102,109,107,106,104,127,110,103,101,105,122,99,93,110,108,104,110,109,114,108,105,104,92,117,112,102,115,145,110,111,107,104,111,113,111,104,103,108,126,118,109,104,108,108,102,106,96,105,99,117,104,94,92,98,101,106,102,76,119,96,113,114,101,92,104,104,107,104,97,95,104,96,103,111,103,100,97,111,110,100,101,93,113,110,93,103,111,112,108,83,116,102,100,101,104,105,103,102,110,105,107,96,103,104,93,106,103,108,112,101,105,89,100,96,103,106,103,94,113,120,94,106,100,107,98,111,100,108,109,104,102,98,114,106,100,109,113,108,105,111,103,106,105,107,110,105,106,106,101,96,113,108,105,116,102,103,104,110,105,113,97,117,101,116,99,102,95,108,100,100,109,109,107,100,97,100,96,103,82,108,98,113,109,107,97,105,106,108,105,113,113,103,106,101,105,109,109,108,105,104,103,109,101,110,109,112,101,96,103,102,107,108,111,103,107,97,97,101,105,119,102,112,106,88,104,94,103,101,100,107,111,103,101,108,90,96,109,109,95,102,100,110,109,109,114,117,102,112,97,94,117,108,101,103,110,115,88,106,106,98,112,89,112,106,101,105,102,121,105,109,104,99,105,105,113,106,108,75,105,109,109,116,93,106,102,96,101,105,105,109,116,107,99,102,112,97,110,102,101,120,96,76,104,115,110,103,108,104,106,108,99,100,96,106,112,90,115,109,108,110,102,108,105,104,118,102,90,98,107,118,98,117,110,109,105,107,111,92,102,115,99,92,97,113,117,99,102,83,97,79,109,106,103,92,95,88,102,101,113,112,113,101,113,101,108,102,98,109,117,104,102,104,108,119,105,109,84,103,119,105,96,91,113,95,100,103,109,103,99,99,114,110,101,98,101,93,105,99,98,116,101,109,101,94,109,101,107,109,108,108,106,101,108,100,104,100,100,91,95,104,109,106,95,108,112,104,119,108,102,99,107,111,108,102,101,108,106,96,113,109,103,108,103,99,103,108,101,100,95,112,121,106,105,101,118,101,111,106,102,117,99,118,116,106,100,111,117,112,105,110,110,105,102,110,110,112,106,102,94,94,111,106,104,103,110,119,93,112,111,106,109,105,91,102,104,115,106,132,112,108,120,97,107,112,98,89,113,93,103,93,107,106,109,100,115,93,98,110,115,93,100,90,101,97,103,88,113,110,102,94,102,99,98,106,108,112,95,105,108,112,106,78,113,100,106,103,95,114,106,101,109,99,99,107,115,111,110,106,110,104,139,89,133,112,110,101,102,120,110,104,92,103,107,99,107,100,101,106,115,104,108,103,104,88,93,113,114,101,107,108,109,95,107,110,86,110,100,103,100,106,100,102,95,112,109,110,101,119,101,105,95,120,105,105,92,102,97,104,83,120,96,109,99,103,104,99,107,100,110,99,112,103,104,115,111,103,113,100,94,102,101,112,102,94,107,105,110,106,106,116,94,115,84,108,101,100,124,102,94,91,111,108,108,100,106,100,99,124,87,102,91,91,107,113,102,100,113,110,104,108,93,97,102,100,107,108,112,112,102,100,103,103,102,119,103,104,95,108,86,111,102,102,116,110,104,103,105,112,103,91,124,111,97,110,94,112,92,101,102,104,93,105,107,94,103,93,113,105,108,97,101,107,95,96,108,109,102,118,97,98,105,109,106,113,116,119,119,99,103,100,104,104,111,108,103,106,103,113,102,104,102,108,107,88,91,112,105,105,115,114,105,124,112,100,102,110,83,107,103,112,113,103,109,122,104,106,110,107,99,106,103,101,112,104,100,101,118,113,107,93,94,106,111,104,110,97,98,113,95,99,113,113,114,101,128,109,114,105,100,93,104,98,113,96,104,101,98,116,102,110,121,103,105,110,113,95,106,104,91,95,106,95,108,98,99,99,101,110,102,111,102,98,104,110,108,100,111,106,102,105,107,107,88,109,108,98,113,100,107,95,98,89,99,114,129,98,98,107,109,108,112,106,97,104,96,103,100,106,99,104,116,83,103,106,101,97,101,105,113,99,103,97,108,106,98,108,87,111,106,112,98,103,103,106,77,117,108,109,109,97,97,97,107,104,102,102,109,107,95,109,105,105,109,108,99,103,100,100,110,105,95,108,99,97,107,106,112,108,98,102,101,105,119,103,109,97,109,102,108,113,99,103,110,108,111,111,108,98,114,100,119,108,98,106,105,99,124,106,106,97,108,102,102,110,104,97,112,121,102,101,103,106,110,95,100,99,106,107,118,96,117,109,107,104,100,113,116,112,107,97,90,101,99,113,115,110,104,103,87,110,125,103,101,103,105,113,121,111,100,102,102,105,110,94,110,104,107,99,109,99,111,113,98,111,105,105,117,105,102,101,107,94,87,115,112,115,114,112,105,95,110,107,103,115,91,113,98,112,96,96,108,96,110,75,109,115,118,109,116,97,106,98,108,104,110,98,103,101,107,105, +555.20654,100,110,103,113,92,107,100,108,98,99,90,106,102,101,98,96,102,112,107,97,117,114,106,112,98,105,112,112,105,95,96,101,115,83,99,90,135,98,97,101,105,84,104,103,120,82,97,93,105,103,97,87,111,101,103,90,114,91,104,92,114,102,105,100,103,99,102,114,96,100,107,86,85,110,110,97,105,104,88,100,129,104,104,110,104,92,82,105,96,103,109,90,121,94,91,109,100,100,108,92,109,102,105,86,115,111,95,104,100,105,98,102,101,102,102,106,108,101,112,98,92,96,105,108,103,86,101,106,113,107,103,103,106,110,110,99,101,99,102,101,86,110,105,112,101,106,107,100,89,96,100,99,92,107,103,95,95,90,110,111,82,99,99,100,108,102,106,97,112,85,100,110,109,104,106,97,94,92,116,104,91,92,111,103,100,94,100,95,92,92,104,95,100,112,93,102,101,120,101,106,91,103,110,109,119,114,107,102,106,106,104,114,109,97,104,94,97,99,85,87,108,96,104,80,91,104,104,106,99,108,102,98,100,107,97,105,107,103,113,90,109,99,112,104,97,105,93,100,100,120,100,107,101,101,102,110,102,113,100,109,95,101,82,100,94,112,105,109,92,105,103,99,108,101,110,107,91,104,105,105,119,102,101,103,100,96,102,107,111,104,105,117,101,103,108,107,110,105,107,113,110,99,100,107,92,102,115,90,101,102,105,126,105,115,95,106,109,93,110,108,100,99,98,104,98,110,96,86,110,103,107,94,105,97,105,95,110,103,97,105,109,99,106,103,93,96,111,105,117,95,95,128,94,103,117,110,109,96,97,113,99,105,101,99,107,97,97,116,99,104,98,97,98,118,110,109,110,100,99,112,114,106,100,102,99,101,107,99,95,102,109,124,104,96,105,100,99,106,98,109,97,111,104,114,93,106,100,113,116,95,105,93,103,112,102,101,104,98,103,100,90,107,110,102,94,104,105,93,96,105,90,102,114,113,96,86,97,108,105,105,102,96,102,100,105,94,101,120,101,110,98,101,112,116,105,96,98,104,104,103,97,97,101,98,108,105,99,101,96,95,103,110,110,111,104,95,104,100,110,101,106,95,100,98,101,94,106,116,101,100,93,111,102,105,104,106,103,104,101,95,117,95,105,101,92,107,97,108,103,99,93,113,98,96,100,100,117,109,107,94,101,95,94,110,102,101,107,104,108,91,100,103,98,101,99,99,98,96,102,113,112,114,98,98,104,106,110,115,108,103,104,100,104,102,98,110,95,107,99,106,104,108,100,106,98,117,100,92,107,106,126,97,111,104,93,116,101,103,100,108,100,102,94,98,96,98,102,105,113,101,114,109,101,96,88,103,124,97,107,104,105,99,107,105,97,107,107,104,95,94,92,106,102,99,101,111,94,101,99,102,106,92,97,94,99,99,106,100,107,99,100,98,101,109,100,93,118,98,104,101,99,109,113,99,102,105,100,105,107,106,105,103,113,109,113,109,113,106,95,103,105,103,101,97,109,98,105,110,105,105,122,113,104,120,103,102,105,101,108,104,105,103,86,98,103,93,103,97,75,112,105,99,128,117,99,110,95,96,95,97,92,98,100,95,109,103,91,99,103,100,117,117,112,90,105,104,106,81,105,103,104,102,94,105,94,97,106,92,103,107,115,100,99,95,107,115,108,98,105,96,110,99,101,108,100,104,109,104,106,103,102,95,112,104,102,97,95,104,100,95,93,103,99,110,97,98,98,99,95,96,103,103,117,98,100,106,101,103,99,107,98,99,106,79,112,113,103,83,106,93,98,109,113,103,97,102,101,108,115,106,92,96,103,104,82,101,108,102,105,108,114,101,100,94,100,97,102,95,106,93,100,114,114,105,87,107,112,113,102,107,107,96,102,108,99,109,110,95,114,99,117,91,103,98,97,102,89,112,119,94,97,100,104,102,98,100,107,102,96,101,91,109,99,98,114,101,102,96,101,99,89,102,108,106,94,109,103,104,105,102,106,100,110,110,99,101,111,108,103,100,105,103,103,103,114,98,110,95,104,114,110,102,106,97,104,102,110,96,94,98,118,107,123,100,108,105,96,104,100,86,100,113,116,91,92,100,93,100,102,100,104,107,98,109,93,110,108,99,96,109,106,100,111,106,103,96,106,100,104,100,107,105,103,109,98,106,109,102,95,111,95,121,97,105,102,103,108,104,93,103,88,99,93,109,91,98,106,99,93,104,107,102,106,116,101,102,97,111,95,99,107,98,111,106,108,96,94,107,114,111,91,99,106,96,113,103,95,100,103,113,106,86,101,96,111,109,109,121,114,114,106,97,108,106,103,118,106,101,102,112,109,94,107,99,115,91,115,122,111,113,122,123,150,134,148,163,144,125,140,148,139,141,127,135,114,111,124,123,123,94,97,117,119,103,136,113,101,88,103,105,100,113,114,104,104,98,101,121,100,97,112,109,91,105,103,108,106,103,111,111,95,79,106,95,110,108,109,106,113,111,92,129,104,99,95,111,112,109,111,104,102,109,102,128,102,96,116,103,98,120,100,102,109,114,109,105,113,99,101,95,110,124,106,108,97,106,121,98,104,95,93,102,87,100,111,94,113,112,111,98,107,104,102,113,110,114,102,93,100,111,112,95,112,99,106,106,111,101,100,99,102,99,108,114,99,99,114,105,120,117,99,105,112,107,129,98,115,108,111,111,108,100,106,110,98,105,110,100,110,108,118,109,118,116,108,118,115,104,106,105,106,121,110,106,107,115,108,119,99,93,99,114,96,96,107,111,109,113,102,115,96,106,97,104,113,103,112,95,111,107,109,144,109,100,111,100,105,111,104,114,100,100,98,99,98,103,111,111,107,117,103,89,101,114,105,120,103,110,97,109,113,112,109,113,110,106,93,104,102,110,104,109,111,100,99,105,99,94,103,114,105,109,101,115,96,110,105,109,105,107,111,97,96,104,106,106,112,113,105,105,109,106,100,105,106,95,104,113,109,117,103,118,101,128,110,94,105,107,106,103,103,124,110,104,99,109,102,103,98,106,103,110,113,101,102,105,110,105,113,102,94,116,100,105,106,101,115,112,99,105,103,110,120,98,106,101,107,117,117,106,106,108,98,110,110,98,103,118,104,91,101,103,102,108,119,109,97,107,114,109,108,109,114,107,103,105,99,96,98,108,116,112,94,112,108,110,108,95,107,98,89,101,120,103,97,102,98,105,106,116,109,107,96,101,101,93,97,105,117,110,106,102,115,105,115,103,102,105,109,109,94,103,113,112,100,109,103,112,114,103,104,96,103,103,97,103,115,94,102,99,106,98,100,103,112,95,65,112,108,113,96,102,96,99,103,105,105,115,109,104,75,110,87,95,95,118,110,104,100,109,109,103,102,104,112,99,104,103,101,96,102,88,111,109,104,97,102,102,112,107,98,111,125,98,102,95,102,98,107,99,103,95,100,102,104,111,126,100,92,113,114,106,114,108,95,114,104,103,107,96,115,98,102,106,90,105,106,101,108,108,119,102,106,99,78,107,115,109,110,98,106,109,111,95,111,90,97,111,96,101,109,96,106,108,105,101,108,110,120,97,107,98,93,105,104,110,99,105,98,103,100,104,119,90,94,100,111,106,101,116,100,108,120,99,120,103,100,104,110,108,108,98,97,111,101,88,109,99,105,107,95,106,103,135,103,116,116,110,102,93,106,94,96,112,101,95,103,106,101,83,99,102,108,97,104,98,109,99,107,101,91,107,102,106,108,98,103,105,125,103,101,103,106,115,110,104,116,116,124,112,93,103,95,113,102,120,104,98,107,100,101,111,91,94,117,102,110,108,97,109,104,110,95,111,114,117,111,107,117,99,102,104,111,99,99,107,100,104,117,102,95,110,113,98,88,93,109,101,103,95,112,100,103,94,101,89,105,106,98,100,92,101,105,102,93,104,96,108,109,104,89,104,94,92,99,119,106,100,97,101,111,101,105,114,110,102,104,105,102,111,129,128,112,105,108,99,103,97,102,102,110,120,110,111,117,101,108,95,109,114,114,114,110,105,103,99,94,103,99,102,103,104,102,100,100,110,101,98,106,112,107,99,99,93,108,110,104,95,116,109,98,99,106,102,106,101,109,91,109,94,105,118,116,105,99,108,98,105,106,102,102,103,93,97,110,105,106,107,94,102,102,103,107,116,105,103,112,110,108,111,109,98,105,103,102,89,108,105,100,105,107,105,108,112,93,99,105,116,98,103,100,111,106,103,104,109,100,101,101,105,115,102,113,97,107,98,98,93,101,116,86,98,100,108,109,99,96,99,107,93,97,92,96,96,97,109,97,111,98,99,108,109,102,104,103,94,96,114,103,106,106,103,106,94,100,98,109,88,96,120,110,103,106,104,108,100,99,107,101,93,110,101,93,102,108,112,82,109,106,92,121,103,102,108,104,104,100,98,97,92,105,111,103,98,102,105,94,99,120,111,110,98,71,103,102,102,100,110,97,109,91,98,112,108,100,91,101,97,108,91,108,105,95,109,94,99,108,98,103,109,107,99,89,95,106,102,102,100,121,104,94,93,102,84,99,102,97,92,100,102,87,102,116,109,111,78,108,111,109,96,105,102,113,95,109,100,114,107,113,101,114,107,98,110,63,87,109,102,127,100,87,101,102,107,98,107,109,105,104,98,94,94,102,116,108,101,101,103,94,109,112,95,94,106,98,96,111,112,107,108,102,99,100,99,116,110,107,98,105,129,103,90,96,102,99,98,102,105,99,106,108,105,98,99,102,102,115,108,104,119,106,95,107,102,106,100,106,104,99,99,112,98,98,100,110,95,100,104,97,98,104,107,102,100,112,107,93,108,122,101,93,110,111,101,111,104,89,104,112,112,122,115,106,121,117,108,105,105,92,118, +555.34741,105,90,105,103,95,107,99,98,109,100,95,102,103,101,105,101,100,107,116,102,105,100,109,110,93,105,97,107,104,96,102,92,117,106,109,100,106,100,100,100,90,85,101,101,113,113,97,112,108,100,105,108,115,109,108,108,102,97,106,87,106,113,101,114,121,104,107,108,89,84,87,100,109,114,86,106,109,102,113,122,113,109,109,98,103,104,129,102,112,105,111,96,112,91,110,99,102,95,91,102,109,104,103,112,102,88,105,100,106,97,97,101,104,96,86,112,97,106,95,102,95,102,108,113,105,108,103,98,115,104,97,107,99,114,112,103,103,117,106,107,101,99,87,100,102,105,108,107,90,94,105,116,104,108,95,105,101,97,107,97,87,112,105,84,93,103,128,104,108,108,102,111,107,120,122,108,114,90,113,124,99,98,117,118,102,98,99,97,98,111,95,115,113,101,104,105,101,109,105,103,84,102,108,97,103,102,114,108,98,106,99,99,98,106,105,100,95,105,107,103,95,104,105,96,96,115,108,112,103,84,104,112,100,102,107,114,114,101,98,111,108,100,108,100,102,95,102,108,103,109,97,95,95,99,112,113,108,110,101,109,95,91,98,112,97,103,97,110,106,108,101,115,118,116,114,107,100,110,98,108,98,97,104,105,80,102,99,105,114,101,105,112,107,103,110,103,111,94,86,112,110,102,117,103,111,104,101,113,107,83,100,97,99,109,109,96,105,104,100,104,108,100,104,110,85,103,94,98,108,104,97,111,108,105,100,110,119,108,90,110,100,102,110,101,96,104,100,94,113,119,106,113,106,106,112,125,110,112,98,95,103,109,108,99,109,108,104,114,105,103,103,104,107,121,109,93,118,101,99,113,113,98,109,110,108,100,101,107,113,120,110,100,100,103,105,87,95,104,99,97,94,105,98,101,99,102,124,114,100,97,92,94,117,104,106,101,96,96,100,102,104,82,91,102,88,110,97,101,92,109,100,103,103,92,105,101,88,109,109,104,108,103,109,108,98,117,98,101,108,115,101,98,94,99,99,112,94,99,102,113,126,108,110,94,106,113,95,107,105,101,115,107,85,115,105,107,114,111,97,120,108,103,98,101,112,109,109,99,108,116,102,105,100,109,97,101,99,110,106,106,107,96,104,107,102,103,101,109,112,100,102,109,107,113,109,101,111,102,99,118,116,99,100,94,109,112,117,110,120,88,97,105,106,91,87,115,107,98,94,111,108,102,106,100,97,106,83,112,110,105,106,109,105,105,101,98,99,100,106,105,124,119,99,101,104,112,102,96,112,99,106,97,99,108,96,104,110,106,87,118,101,99,101,106,105,100,108,108,105,116,106,94,98,102,113,78,103,102,107,103,100,102,115,100,104,84,104,104,105,105,100,102,109,99,108,120,114,109,105,104,102,103,97,102,112,104,115,111,98,107,104,104,118,100,104,101,118,102,125,113,113,102,98,98,97,99,112,106,103,103,95,93,97,105,109,96,100,108,110,112,106,90,112,113,101,109,112,96,107,105,119,114,96,100,111,107,106,112,110,120,103,103,103,92,96,99,100,110,104,107,106,108,111,98,92,108,99,100,107,92,106,103,95,109,111,96,96,110,110,106,109,100,100,94,98,106,103,104,114,111,104,110,124,104,101,98,106,107,120,105,104,108,95,107,85,106,90,98,105,96,103,109,108,108,108,117,109,100,107,108,119,102,107,113,104,96,109,104,114,89,91,104,97,103,98,99,96,100,106,94,107,105,111,108,104,100,111,111,97,97,118,102,109,98,103,115,106,109,96,117,109,104,102,110,96,104,103,105,111,106,105,113,127,97,108,90,93,109,118,88,113,110,84,103,104,104,106,114,114,100,82,112,102,106,96,112,106,100,113,104,94,99,108,103,100,112,109,108,116,104,105,115,117,105,106,112,94,93,105,105,107,119,99,109,108,90,119,103,110,104,102,102,111,105,101,116,117,98,120,109,100,111,96,107,113,104,93,105,101,104,112,110,98,101,99,94,100,107,121,103,104,107,103,121,92,109,113,103,109,114,90,111,104,116,103,98,104,104,102,109,112,107,115,102,106,99,110,109,117,108,108,106,107,109,109,113,104,111,112,100,97,112,111,107,98,116,99,114,101,98,108,109,115,108,100,103,110,112,115,114,118,114,117,127,118,100,118,107,101,121,88,107,109,108,109,101,101,113,102,103,102,105,90,112,91,106,103,97,105,94,100,110,102,112,106,99,98,108,108,112,105,101,117,109,93,113,102,102,104,101,111,103,101,98,109,103,99,107,95,108,109,100,112,105,105,103,110,106,110,115,115,103,119,100,104,115,107,124,105,104,104,100,114,112,103,118,109,126,123,118,143,128,171,169,153,158,132,124,161,127,122,133,139,132,132,87,113,121,105,105,117,105,111,114,103,93,101,100,104,98,98,110,88,107,104,108,107,104,96,116,107,109,104,114,104,113,102,109,108,111,101,102,100,92,95,106,104,109,103,102,100,107,120,105,99,103,97,89,107,82,94,98,112,102,99,98,104,95,104,106,117,107,106,95,109,113,83,109,95,98,109,108,98,101,100,82,107,103,107,97,97,94,99,107,112,84,109,121,125,102,101,103,108,105,110,102,98,97,107,97,116,84,87,95,109,114,95,101,112,107,108,94,100,94,105,100,100,119,107,102,106,106,100,100,116,123,109,109,119,106,119,95,110,111,95,109,94,103,95,102,116,106,103,105,103,117,111,113,103,96,117,100,113,108,107,116,105,114,109,99,102,117,112,115,111,109,115,110,108,109,99,90,93,100,97,117,104,102,96,106,96,96,124,108,107,105,98,112,100,105,105,98,112,110,109,109,96,117,104,121,103,111,100,135,108,108,112,99,112,114,115,99,112,110,102,107,105,109,112,110,107,100,112,110,108,111,97,95,109,107,98,102,116,98,107,111,106,99,103,92,89,110,108,100,120,112,109,111,104,100,91,115,106,100,98,113,108,100,105,105,110,99,108,104,122,94,117,125,116,109,107,97,104,105,115,107,109,103,116,104,95,109,112,104,115,95,101,110,100,106,108,102,91,106,106,104,111,104,128,100,105,106,103,95,107,101,104,96,94,109,119,104,104,105,106,109,86,111,101,103,101,94,99,102,106,105,99,104,107,102,96,102,103,108,113,110,105,93,110,114,112,110,104,102,109,109,110,106,99,102,95,116,102,103,106,103,99,109,108,107,100,99,94,91,107,101,108,98,94,106,107,106,119,110,113,100,102,98,107,109,123,95,113,103,97,104,115,95,121,105,113,101,111,109,112,103,110,97,106,96,100,108,105,99,107,105,105,103,108,90,102,108,103,111,117,93,104,114,114,110,105,110,106,105,109,132,110,106,108,103,100,102,115,103,111,105,112,109,90,111,97,94,91,101,99,98,104,98,105,98,99,109,100,104,100,109,102,104,108,103,115,99,112,103,96,93,111,99,91,117,106,117,115,113,94,107,114,104,110,112,120,109,104,106,111,101,94,114,106,98,124,100,108,113,100,104,121,117,105,114,122,104,105,102,106,112,91,112,108,116,112,96,115,103,110,120,120,107,105,100,100,106,104,102,114,94,115,104,98,99,105,109,109,108,108,95,100,113,110,105,98,105,119,107,101,100,109,108,103,117,111,104,98,126,112,106,102,119,115,100,108,110,96,90,101,106,95,104,120,101,117,106,105,102,110,103,80,115,115,101,111,77,99,94,117,108,115,113,101,100,110,98,114,115,101,108,108,105,116,107,127,105,109,101,105,99,94,101,127,107,106,103,112,104,116,110,103,120,105,107,106,101,110,107,111,108,92,80,102,110,86,107,105,105,98,98,99,110,100,108,104,108,100,111,88,108,115,100,86,117,115,103,102,102,105,103,101,110,103,100,106,101,108,112,99,113,106,105,104,103,102,108,105,96,96,115,108,117,107,100,110,101,97,111,95,113,106,102,100,116,111,106,101,106,110,101,108,108,116,95,102,102,124,99,110,90,113,101,129,108,102,110,112,102,104,112,107,90,85,108,105,112,95,100,101,101,93,118,103,86,109,108,107,103,95,111,106,102,106,102,109,84,95,107,108,112,95,110,103,114,106,113,105,104,99,108,107,107,106,99,94,105,95,108,103,103,103,115,106,102,112,111,98,99,95,108,98,103,97,109,113,101,100,125,111,96,95,108,103,100,97,104,106,105,104,103,108,105,105,112,101,106,98,106,103,103,98,92,99,82,108,111,104,102,115,98,90,98,100,106,106,99,100,110,108,106,103,109,95,104,102,102,111,99,108,95,108,100,95,116,95,99,108,111,102,95,87,113,94,107,111,97,107,105,103,110,108,105,114,103,108,91,103,117,102,101,104,102,104,94,124,117,114,93,103,105,103,99,106,98,91,110,108,109,104,117,96,105,86,103,106,110,107,105,109,100,102,104,102,97,106,116,105,95,105,106,98,103,101,87,94,88,90,107,102,105,93,100,104,101,101,95,103,112,107,110,105,102,103,100,99,101,105,115,99,105,115,102,130,114,109,99,108,107,94,113,102,108,94,107,98,108,103,92,100,95,101,94,104,100,72,96,102,107,103,106,105,99,102,105,96,117,113,104,102,111,99,115,104,116,98,91,112,97,106,101,109,101,99,109,92,94,100,124,105,97,116,116,113,93,106,103,90,108,97,101,100,105,100,97,106,113,103,103,97,102,100,96,92,102,88,90,98,96,84,106,82,101,108,92,109,100,105,100,95,97,90,103,102,100,101,94,114,113,107,101,93,106,100,106,101,95,104,107,94,92,104,99,92,107,106,106,90,97,100,111,101,112,107,64,114,98,106,75,96,141,95,93,103,85,117,94,114,104,112,86,92,104,102,112,126,105,102,94,108,102,100,99,111,86, +555.48828,110,90,108,100,94,116,106,105,99,99,107,113,117,88,103,106,105,99,80,104,101,94,105,110,101,115,110,99,115,100,111,88,100,91,92,87,105,98,111,113,97,117,102,112,114,114,92,105,113,101,100,108,97,88,108,106,102,97,107,94,106,107,112,103,100,103,101,107,117,99,93,106,111,106,102,113,107,99,114,114,112,106,107,118,98,102,117,100,113,96,96,105,105,95,107,96,105,102,118,95,93,98,99,99,108,107,112,90,117,100,109,103,104,118,94,98,94,109,106,106,114,107,109,110,97,109,103,98,116,107,108,101,95,94,110,116,108,104,110,103,101,97,99,113,100,105,104,98,112,121,105,100,105,95,100,108,97,87,95,108,111,96,100,111,106,99,106,108,105,99,118,103,104,103,102,97,110,99,102,102,108,113,112,112,113,110,106,104,97,102,114,96,114,114,112,110,88,98,104,99,99,107,90,92,105,114,103,110,110,110,110,109,107,104,102,98,104,113,112,116,107,106,106,109,92,102,102,106,120,113,98,106,105,111,103,104,108,112,115,107,104,111,113,107,80,108,104,101,106,103,110,112,92,113,110,101,106,101,110,100,104,99,110,109,101,114,116,111,106,105,115,84,109,101,111,108,100,113,112,92,99,111,92,108,107,106,91,96,76,103,91,101,115,101,111,96,115,116,113,112,107,96,111,112,94,114,121,111,108,107,112,117,112,100,100,102,119,105,111,111,99,107,133,121,111,103,105,110,114,99,120,121,104,103,105,108,121,103,105,96,105,99,114,88,112,95,105,101,107,108,96,110,122,108,109,101,111,121,108,105,105,104,100,96,112,92,100,103,103,106,123,105,107,106,121,96,95,106,96,107,101,106,98,110,107,112,101,112,100,94,108,100,99,110,103,114,109,106,103,100,101,105,105,109,108,110,85,100,114,109,105,120,105,107,107,103,101,82,95,109,98,103,121,94,102,105,107,107,99,100,94,114,105,109,114,105,96,98,99,119,114,110,109,113,93,117,88,110,104,118,95,105,107,102,100,101,98,102,117,104,100,105,105,98,105,116,115,104,94,104,93,107,113,113,102,103,95,111,97,120,126,113,117,105,104,138,109,94,109,101,112,105,90,95,114,99,109,95,101,108,109,107,101,103,102,104,103,102,112,104,113,108,141,106,106,110,104,120,97,94,108,76,106,102,101,109,113,114,134,99,114,113,113,107,100,96,105,109,118,103,106,114,102,102,106,114,99,104,103,113,109,109,110,103,105,103,107,104,107,97,99,102,117,109,134,108,105,111,112,94,106,99,97,113,99,106,96,96,98,99,106,101,95,106,94,90,110,109,105,96,118,112,93,99,114,108,106,115,116,106,99,104,112,112,104,115,112,97,105,115,95,106,103,93,108,108,106,108,104,110,110,114,124,98,119,99,105,98,96,109,105,122,112,103,93,99,114,98,106,112,107,108,101,107,105,76,105,101,109,111,104,109,107,111,108,117,112,106,108,96,101,108,124,87,116,113,104,102,99,83,110,113,95,106,105,107,109,105,110,105,104,109,105,94,104,112,115,112,102,106,112,107,98,100,107,113,105,91,116,101,95,118,102,109,108,115,111,108,96,97,100,113,91,98,108,104,106,109,116,101,109,109,106,109,105,96,118,98,107,112,112,95,96,104,104,100,121,106,107,109,115,101,96,105,107,90,108,99,105,103,117,103,106,98,113,100,112,115,101,113,103,107,100,115,99,99,94,107,99,95,113,104,99,95,95,102,108,100,116,113,106,112,133,109,94,120,103,99,110,115,121,103,124,115,112,102,108,114,108,113,106,115,107,103,102,108,110,110,116,103,121,120,102,101,107,91,106,115,98,109,109,114,114,108,100,115,123,116,118,111,103,110,118,106,108,100,118,104,102,92,103,120,113,99,100,110,93,110,100,97,112,110,110,93,102,109,108,101,87,105,95,108,101,115,111,104,94,117,112,92,93,117,105,109,105,108,93,118,108,114,98,103,98,107,113,105,104,112,100,114,104,105,112,100,110,113,97,121,110,109,126,107,109,109,98,106,102,103,114,106,114,109,109,105,107,87,106,113,110,106,111,104,110,104,98,110,104,115,102,97,102,104,103,112,107,118,95,107,106,109,116,105,113,99,104,110,110,99,106,103,120,88,113,100,110,102,108,111,97,124,108,96,104,109,103,108,110,114,101,112,105,104,112,96,109,102,109,101,95,103,100,106,106,99,116,117,107,109,108,95,112,113,101,115,99,110,89,104,94,113,100,112,121,125,108,109,97,88,105,108,99,114,101,114,95,119,109,109,102,113,109,113,98,87,104,103,97,107,110,81,104,94,115,107,112,116,105,115,117,112,118,144,122,151,135,125,119,157,142,143,149,129,143,127,119,116,130,120,113,103,112,109,101,124,110,97,111,105,107,113,107,117,106,110,105,121,96,96,105,104,110,105,95,115,120,107,110,100,128,104,114,103,103,108,115,96,100,99,113,101,97,109,103,99,99,104,103,89,112,102,98,111,102,92,90,105,112,104,89,105,114,99,97,102,105,101,96,88,108,115,117,103,109,96,103,96,102,102,107,100,100,115,96,106,101,109,100,108,112,102,116,79,117,90,91,106,103,92,80,106,111,100,95,103,103,109,93,104,101,99,102,100,114,106,115,99,103,104,107,114,100,104,106,98,106,98,106,99,104,116,100,102,110,113,83,123,107,106,96,99,99,100,119,107,99,111,101,95,90,107,115,110,96,110,109,98,103,117,104,95,107,118,109,98,108,104,105,98,103,100,94,109,97,110,108,107,104,119,85,104,105,104,108,106,109,102,107,105,98,107,109,117,98,112,110,105,109,112,104,110,109,90,104,98,108,92,100,103,91,100,113,106,97,110,103,96,103,91,106,103,95,101,105,99,103,97,108,91,119,119,111,108,100,93,93,103,93,100,96,108,101,104,101,109,106,98,102,120,134,89,73,99,94,93,102,104,110,106,104,109,108,104,103,107,106,102,113,104,91,97,104,104,103,117,122,105,109,101,94,98,100,104,101,107,109,104,99,100,101,110,106,92,105,112,98,104,101,91,105,96,115,121,108,109,109,104,94,105,109,111,99,103,110,122,103,97,100,115,102,100,104,112,95,96,95,105,99,105,100,93,103,104,96,117,100,104,111,97,97,95,115,107,101,108,103,123,110,95,113,110,103,104,99,112,99,86,99,104,88,103,111,119,106,77,113,96,88,107,109,98,96,122,109,111,110,99,98,108,93,102,112,96,105,102,101,101,108,103,106,101,110,95,115,112,96,108,109,114,98,111,98,110,98,99,102,103,101,87,99,109,105,107,90,103,111,108,119,109,123,90,101,99,99,91,104,99,95,99,102,101,117,107,99,99,106,100,103,104,103,102,101,97,85,109,91,100,98,98,84,100,79,112,117,106,104,104,113,102,97,108,100,100,94,103,106,102,116,102,108,106,103,105,107,110,101,104,105,105,113,109,104,101,103,102,105,93,105,99,99,95,102,117,102,112,112,89,102,105,118,105,99,112,105,104,105,108,80,109,109,112,108,99,106,91,104,105,94,113,99,100,100,99,103,119,98,106,96,101,97,112,90,102,102,116,117,102,99,94,104,98,91,102,100,112,103,99,101,113,112,102,107,102,107,105,93,104,105,114,109,104,95,118,93,90,103,102,80,122,103,100,110,108,98,111,105,111,108,84,124,99,107,109,103,92,102,106,109,107,111,108,100,104,99,99,117,95,86,109,95,116,100,92,105,109,100,103,110,99,97,106,107,105,110,107,106,103,106,110,105,95,104,83,99,101,105,102,103,103,96,104,94,109,103,98,96,94,102,109,106,99,98,106,108,104,84,101,90,101,101,107,91,100,97,114,102,87,97,111,92,107,107,102,101,97,92,103,109,102,114,98,105,108,105,110,106,95,93,103,104,110,96,103,116,110,105,102,102,99,103,101,105,112,97,106,103,106,102,97,99,116,106,111,108,105,107,124,100,108,106,114,114,104,102,105,102,99,114,103,100,110,110,99,96,93,97,104,106,115,108,98,88,103,117,102,94,99,99,99,105,96,89,101,97,103,111,118,95,103,103,104,99,104,105,102,118,115,104,96,108,109,101,92,104,93,100,98,105,105,111,110,106,100,104,112,88,127,102,108,102,102,105,105,113,111,101,108,115,91,107,112,113,105,92,111,106,99,92,103,91,119,96,104,99,107,98,105,104,99,105,96,102,119,95,108,95,96,98,101,109,100,105,94,101,92,100,110,110,95,107,115,97,101,110,111,101,100,105,100,101,108,103,106,121,94,104,89,100,97,90,104,103,104,105,113,104,104,113,95,105,105,106,113,100,113,91,105,105,113,117,108,107,119,103,103,98,106,107,108,112,103,110,92,118,113,102,110,98,97,100,98,112,105,117,98,91,99,93,102,96,103,112,106,100,99,106,97,87,108,100,127,99,90,113,113,91,95,98,99,104,113,99,99,103,107,103,100,104,115,99,96,98,103,108,105,101,101,103,110,93,96,109,104,104,92,106,105,106,94,101,110,79,100,106,112,104,101,118,101,94,98,115,98,106,100,105,96,103,120,112,108,107,107,109,106,104,106,107,112,108,104,107,116,91,88,104,103,101,117,102,87,96,105,105,85,99,111,127,113,106,106,94,102,105,111,99,99,107,107,94,112,115,112,103,110,102,110,117,99,104,99,89,103,105,103,103,102,101,110,96,106,107,100,98,102,78,99,109,105,96,99,103,96,102,104,102,114,105,99,102,94,115,96,121,88,109,91,106,106,95,95,99,99,113,102,98,99,83,103,91,102,107,93,103,106,107,109,93,99,104,81,103,107,108,103,106,95,91,110,104,122,113,112,106,94,105,111,104,97,93,95, +555.62915,95,99,93,107,93,107,97,91,109,87,91,111,101,104,100,99,106,104,97,98,104,93,117,99,114,101,109,104,81,114,96,107,96,103,104,105,108,108,102,110,107,108,112,98,85,100,95,108,107,106,97,84,85,84,112,101,92,106,113,125,113,112,96,95,110,97,100,129,100,109,110,116,96,119,99,104,107,97,101,104,101,100,109,111,100,94,96,101,103,106,99,105,103,100,96,103,104,99,108,108,95,113,108,101,98,121,94,90,105,104,104,104,94,101,101,102,99,112,98,121,102,104,98,119,95,98,99,110,106,98,90,103,101,102,99,97,133,97,100,110,100,109,99,95,115,104,112,103,107,101,94,100,99,105,105,101,97,103,102,101,98,95,95,123,96,124,94,105,92,105,103,93,106,100,101,96,101,109,109,108,103,93,111,114,106,104,108,99,100,111,111,104,107,106,103,82,103,108,109,96,104,108,100,104,101,104,73,96,111,102,104,110,110,94,109,99,79,108,97,117,99,96,92,100,96,103,98,105,101,125,103,108,108,101,104,100,109,103,111,105,96,97,105,97,117,102,102,107,97,105,113,103,104,106,96,105,106,105,98,105,98,99,106,117,91,103,107,94,106,86,106,100,109,103,108,105,103,95,114,120,101,110,101,104,111,100,89,97,106,102,72,102,110,106,100,104,107,104,103,104,87,106,101,104,105,101,104,104,107,103,92,111,95,105,92,108,103,102,99,102,106,92,99,109,82,98,105,100,118,99,117,101,98,100,106,108,82,102,109,98,115,99,104,98,109,69,107,112,99,100,111,109,95,95,100,93,106,112,99,108,104,104,111,102,97,93,110,117,109,95,105,101,100,99,109,103,111,94,100,115,115,105,100,107,96,96,99,95,103,109,98,98,97,104,101,101,96,101,99,110,112,104,94,98,99,83,98,95,106,102,100,97,110,109,109,103,104,107,107,117,104,107,101,104,94,100,81,100,104,118,105,103,104,109,99,95,100,102,108,115,103,106,108,95,104,110,101,96,99,108,99,95,92,101,96,116,95,105,111,99,94,101,100,96,109,103,110,110,105,86,99,101,112,97,91,105,106,113,108,92,110,100,103,82,113,94,113,104,103,102,103,114,103,108,93,108,109,104,118,75,111,106,101,114,98,95,87,105,103,97,131,96,101,110,100,105,105,106,106,89,97,112,110,101,104,92,113,106,108,108,100,95,106,106,103,105,111,109,113,110,98,105,110,109,106,103,115,103,108,111,114,94,101,92,109,103,114,103,94,109,107,103,104,102,121,101,112,96,101,106,92,103,111,99,105,94,96,101,96,110,110,99,130,100,79,94,103,93,105,89,112,113,87,108,105,98,98,109,103,97,105,114,91,99,101,105,95,103,104,84,103,101,108,105,99,108,100,90,112,113,107,107,78,97,104,96,92,105,101,107,103,99,102,102,96,102,104,101,104,120,102,110,109,102,101,103,104,100,112,101,102,96,106,108,97,108,109,103,102,108,107,95,108,110,101,112,111,94,99,101,112,109,105,98,110,141,105,105,107,108,105,100,110,96,110,96,106,100,98,99,118,107,101,116,96,103,120,96,99,105,99,92,97,101,101,106,108,99,104,102,116,76,99,101,101,98,108,97,101,94,92,98,105,98,97,105,113,111,100,106,112,100,103,101,93,106,98,97,98,116,116,107,111,108,105,95,104,111,100,113,104,105,110,104,110,90,114,93,103,92,98,100,101,106,102,102,82,99,108,103,111,111,104,109,107,110,87,105,102,115,103,95,111,110,95,78,90,114,108,99,103,109,113,123,101,95,111,114,106,103,100,97,97,103,107,113,103,108,100,104,100,101,102,100,108,97,99,108,109,101,114,104,99,113,109,102,118,107,106,114,108,99,109,113,105,102,112,104,105,125,103,107,108,107,109,102,106,90,102,109,107,109,108,118,106,113,107,107,100,102,99,101,106,101,102,89,86,108,118,108,98,105,109,103,110,108,95,109,105,109,115,107,103,103,97,91,110,95,109,110,94,105,103,110,99,93,101,105,102,98,110,112,95,109,99,101,110,100,105,106,114,112,112,107,120,92,96,106,105,107,107,114,109,107,103,108,115,109,93,105,101,104,89,110,98,102,101,112,103,100,107,98,119,102,107,107,113,107,103,102,110,103,110,117,103,93,106,103,106,103,102,102,96,92,116,108,90,97,104,97,109,103,105,92,103,96,96,92,118,112,94,105,105,113,100,112,110,103,104,98,106,99,109,95,112,98,101,103,102,112,102,97,111,110,100,97,100,104,92,110,90,101,106,108,105,100,107,117,104,100,86,114,109,93,110,105,108,94,106,104,103,123,111,99,102,109,99,109,120,114,133,131,152,141,156,156,137,145,131,128,147,150,158,116,126,116,101,111,119,108,103,108,101,105,117,103,106,104,113,97,108,106,140,115,99,102,104,98,104,107,98,108,89,113,114,115,93,98,96,119,113,87,103,111,99,100,104,120,117,108,103,95,103,109,106,106,104,106,109,95,96,112,109,105,96,105,129,116,108,96,74,109,89,103,107,101,91,105,91,109,112,102,88,113,99,96,123,99,106,95,92,92,104,112,110,103,104,105,112,103,106,108,105,130,95,101,124,101,108,115,95,102,104,106,112,103,103,107,110,89,106,102,124,94,117,114,108,112,105,98,111,105,112,111,107,112,110,105,130,113,106,109,104,122,102,106,92,98,107,117,98,115,106,101,108,100,97,111,103,87,105,112,119,101,105,106,101,127,105,98,107,114,97,104,116,117,112,113,107,103,109,109,100,110,106,98,105,114,111,117,91,107,106,95,106,106,103,107,105,112,106,109,116,101,101,101,102,122,96,116,117,110,113,109,102,102,104,95,107,101,107,93,95,113,108,108,110,97,114,106,113,107,110,98,100,107,108,109,103,109,111,114,96,75,116,94,101,112,108,103,99,117,108,113,100,104,111,114,106,117,95,98,97,103,109,111,98,104,108,112,108,117,110,99,110,102,111,108,103,101,126,108,103,104,109,104,107,105,96,108,103,109,112,109,103,104,103,109,103,113,106,107,104,110,109,108,99,96,98,122,109,101,113,110,99,100,99,102,101,98,99,98,101,109,106,109,99,108,108,117,100,110,105,92,98,102,98,84,109,97,108,83,95,111,106,117,102,100,108,115,102,113,95,116,105,114,112,98,99,100,100,98,110,68,105,108,103,115,103,107,100,104,101,112,106,108,101,110,112,102,102,92,117,95,99,105,98,101,98,111,111,102,96,107,110,100,100,101,105,98,113,98,105,107,107,102,114,96,116,107,106,102,126,110,122,103,97,96,101,99,95,105,91,96,105,102,110,111,107,104,105,104,96,102,94,104,102,104,115,111,103,106,103,103,98,103,104,102,99,103,93,106,115,98,107,112,102,101,122,106,107,96,102,100,103,103,91,110,104,106,109,95,100,108,101,100,118,110,104,112,100,118,115,98,103,104,98,95,105,98,106,107,95,98,110,106,109,109,116,129,86,95,112,123,124,110,104,102,103,128,105,116,105,100,106,103,90,108,106,109,114,107,113,99,111,91,107,100,107,91,91,109,113,105,104,108,69,99,107,96,99,101,100,109,106,102,103,86,103,109,112,113,107,110,93,90,109,98,102,109,101,105,79,102,103,66,98,99,100,107,101,105,98,102,113,107,104,100,109,111,109,108,94,107,107,117,129,104,120,112,95,102,99,104,118,111,97,102,108,102,100,99,103,108,96,104,104,103,108,109,104,106,109,125,113,104,110,115,109,108,94,106,105,100,106,100,118,97,109,107,115,109,119,107,94,111,95,111,93,112,99,111,106,106,111,114,108,102,112,106,98,103,97,109,107,105,105,90,95,99,103,105,108,100,116,95,100,105,103,104,102,106,108,104,102,104,98,106,108,98,110,109,106,113,107,110,99,113,108,97,103,107,105,92,113,103,99,82,101,99,105,103,98,109,108,107,110,109,93,101,101,101,102,104,99,113,117,103,124,96,110,99,114,107,112,95,130,106,103,109,102,98,100,93,105,110,100,100,105,98,101,119,99,113,111,110,99,112,103,109,113,118,108,96,112,106,112,104,95,108,108,96,118,97,101,107,116,105,109,94,101,101,105,111,102,97,100,125,115,105,111,100,100,87,112,115,111,102,100,100,112,113,110,111,104,103,113,100,122,116,117,104,101,95,100,81,105,110,104,95,111,115,112,103,111,98,114,108,116,103,101,111,106,99,109,108,99,105,113,113,110,102,105,113,101,105,107,98,105,112,110,105,112,101,107,110,113,103,80,111,117,112,102,100,114,100,87,113,91,98,107,116,103,94,115,95,104,109,100,98,88,112,99,92,102,99,115,111,99,111,109,109,110,102,109,118,105,106,104,97,98,107,90,115,95,106,100,110,106,102,106,108,101,102,112,105,110,97,109,102,100,102,106,106,99,87,104,97,109,92,116,117,102,105,112,107,114,109,92,103,104,121,106,113,104,112,101,99,91,101,101,86,106,108,101,100,109,101,98,106,98,83,98,104,98,95,109,104,95,92,106,103,111,107,105,106,111,100,110,98,98,106,103,106,110,103,107,103,111,92,99,101,100,96,105,99,105,99,95,91,103,85,109,100,107,79,105,101,95,99,112,105,103,100,103,100,107,104,99,110,108,110,104,86,107,88,110,88,105,99,102,99,84,103,103,95,108,117,108,100,102,105,103,114,99,109,117,115,105,111,112,90,100,98,101,101,93,109,99,116,110,106,109,103,102,102,97,98,110,73,103,88,101,93,102,114,97,97,108,104,110,112,98,97,110,91,97,108,108,98,95,114,98,99,106,96,100,115,106,94,110,96,104,97,117,101,97,110,98,95,127,102,106,85,119,110,112,86,107,109, +555.77002,112,123,105,134,94,109,100,84,108,92,95,97,96,109,139,105,124,111,112,121,122,99,102,99,103,107,103,109,83,115,98,105,99,103,115,112,117,67,92,106,106,106,97,110,98,91,101,126,87,95,111,113,103,100,105,98,88,101,113,97,99,107,81,105,86,105,100,96,91,100,101,113,113,117,113,111,97,111,108,118,105,105,94,102,104,101,113,107,107,94,114,121,106,104,97,105,113,107,90,91,104,103,101,111,100,117,96,116,103,92,109,103,100,110,121,106,109,95,121,114,102,103,109,96,102,105,114,111,111,108,108,121,93,106,101,107,99,98,99,111,94,112,106,99,103,106,105,103,104,105,100,108,109,92,88,108,114,110,105,97,102,113,116,107,110,103,106,105,106,100,114,120,96,100,100,107,94,113,109,98,105,107,99,111,104,126,100,111,108,103,105,101,88,100,99,104,117,105,117,104,97,90,107,110,109,109,109,103,108,118,108,103,100,114,106,113,109,106,102,106,99,111,106,105,96,104,109,109,103,95,106,105,113,100,109,115,108,89,100,91,106,103,115,104,90,99,124,99,115,100,136,94,109,106,112,106,102,104,113,118,101,111,111,106,106,119,104,104,108,101,101,111,107,110,112,104,114,109,110,115,99,106,116,103,115,102,104,108,111,102,128,102,104,113,110,116,103,110,99,108,105,91,109,108,100,105,95,114,101,109,94,111,107,102,110,111,106,122,105,110,105,97,110,112,100,113,106,98,110,108,108,110,108,96,110,105,117,107,103,101,95,93,99,104,88,106,104,107,105,107,106,98,111,113,100,73,111,107,99,102,107,105,104,113,104,104,102,119,98,113,112,98,116,109,104,103,90,107,112,103,111,103,108,103,105,91,99,97,116,81,113,105,99,106,100,108,79,114,106,104,110,106,100,95,103,108,95,99,108,101,88,98,106,105,94,104,102,99,112,111,110,100,127,108,82,105,108,108,95,94,101,118,105,100,100,94,103,115,105,98,110,110,121,115,103,122,115,95,115,107,106,101,116,116,108,105,111,93,108,91,104,105,102,109,110,102,101,107,114,98,105,121,112,100,120,90,110,102,117,103,101,107,117,95,123,104,102,108,112,106,95,118,100,101,96,107,95,110,113,100,109,103,111,92,108,113,91,104,104,90,97,113,101,129,110,117,107,105,102,106,102,103,106,109,109,99,117,112,107,109,107,106,113,107,114,108,92,104,107,111,100,105,90,91,94,113,111,109,106,112,108,112,103,103,98,122,102,117,110,103,98,101,102,107,111,97,106,95,109,108,96,100,103,109,100,101,104,112,105,101,112,115,106,108,99,108,103,108,105,107,102,99,107,108,108,126,110,110,106,116,102,95,109,93,106,106,106,105,103,98,104,109,87,102,85,97,113,103,97,86,103,112,110,86,105,109,96,79,105,93,113,99,113,136,106,107,99,95,101,109,117,104,97,112,111,95,109,91,122,112,104,114,114,112,92,122,98,118,84,109,105,108,100,108,100,105,111,105,110,111,107,108,108,104,97,105,98,97,109,97,95,102,116,104,96,105,100,99,115,113,102,112,112,115,100,110,115,102,113,91,93,98,127,101,98,111,113,90,85,100,112,106,113,117,107,104,110,112,106,102,113,112,111,101,105,99,96,104,117,112,117,102,105,104,92,107,104,119,91,109,103,101,116,110,112,105,105,109,105,107,108,119,111,98,120,112,115,97,108,95,98,104,104,106,101,109,98,112,110,103,120,96,114,103,112,112,101,98,104,117,104,101,109,103,107,118,104,106,112,114,111,107,110,112,104,110,105,109,106,110,104,106,98,99,118,113,110,102,107,105,113,107,100,105,119,102,98,105,112,106,106,103,111,111,104,110,106,117,96,108,106,109,107,87,97,105,107,114,106,103,103,103,108,102,113,115,109,105,98,106,95,106,102,115,98,116,87,108,103,113,105,108,118,101,109,112,108,113,110,115,116,101,105,106,99,107,107,98,106,101,100,116,117,112,87,113,92,124,108,103,102,85,104,104,108,94,112,108,105,100,106,119,109,100,108,103,114,103,116,110,110,102,116,113,87,116,99,112,111,103,100,102,106,101,114,114,109,95,108,100,103,108,109,116,105,115,101,101,101,99,120,109,98,102,102,104,109,106,105,113,102,120,106,94,111,95,105,113,109,101,117,103,113,102,112,98,99,117,103,106,110,91,116,103,107,97,105,91,98,103,98,126,102,113,88,106,100,127,100,126,104,97,112,94,113,103,109,108,97,107,105,104,104,99,108,101,100,116,102,105,104,112,121,125,98,102,107,113,109,109,123,107,107,94,104,121,101,92,116,117,111,106,112,110,116,98,97,117,131,89,131,137,138,167,137,137,120,153,121,148,155,143,148,126,111,118,128,115,105,110,101,109,96,98,110,114,108,90,104,103,76,109,124,105,102,108,102,101,114,111,103,117,118,116,111,119,116,123,108,96,108,104,92,106,138,110,95,110,107,104,98,103,94,99,102,112,112,117,108,104,79,102,111,101,117,104,113,99,102,110,111,102,114,105,105,115,115,117,110,88,111,115,110,138,109,118,107,110,97,105,109,94,99,112,103,102,121,98,108,100,112,101,116,91,102,116,113,108,102,98,110,95,105,105,98,100,102,104,83,104,107,104,109,100,101,107,94,99,106,108,113,98,96,106,118,108,117,106,111,110,100,100,110,109,110,96,113,99,105,106,124,113,119,120,107,120,99,110,106,108,99,104,98,112,118,97,104,105,110,110,112,99,114,109,109,121,115,105,94,109,98,134,107,93,110,116,127,114,97,106,112,104,120,116,116,116,95,103,115,108,121,103,109,106,98,112,104,113,108,113,108,104,102,113,116,92,94,103,80,108,107,106,115,114,105,110,99,107,104,109,97,96,114,99,112,104,99,123,109,101,91,114,98,91,99,102,106,105,94,107,109,118,105,111,99,104,107,107,112,117,108,111,107,109,98,113,102,107,113,113,94,105,111,106,112,106,120,117,102,98,108,105,109,107,100,104,103,112,105,109,114,100,106,115,92,90,105,116,115,98,94,109,101,102,100,99,107,95,109,108,110,104,107,102,111,106,111,104,112,104,107,109,106,117,105,94,111,101,104,106,97,102,96,102,108,100,92,107,117,114,108,98,107,105,109,100,110,104,107,105,99,100,103,106,102,118,98,106,106,106,105,80,113,100,112,109,113,106,100,99,107,95,123,101,110,94,102,102,113,101,112,111,106,115,117,102,107,102,110,111,103,108,127,112,103,99,97,124,111,109,105,104,110,113,107,99,108,106,103,102,122,113,105,110,102,117,95,105,102,107,91,92,91,105,108,104,108,106,104,108,92,103,97,109,108,98,107,109,103,109,99,111,111,103,112,112,102,107,119,106,98,107,107,115,100,103,122,116,103,103,110,97,108,104,115,109,107,110,112,102,106,107,111,102,104,98,106,93,130,102,118,101,121,113,85,108,105,113,107,104,113,113,102,107,105,106,108,111,107,112,101,107,107,110,104,102,113,117,97,98,95,103,108,104,111,117,100,111,111,111,111,113,105,106,103,102,108,98,94,102,103,97,101,98,107,99,114,109,121,102,104,108,110,109,128,98,110,89,88,117,106,112,103,103,101,122,99,104,106,112,91,108,100,113,101,113,109,106,112,111,112,90,97,104,102,99,112,99,105,93,105,114,109,107,103,100,112,110,107,100,107,94,106,107,102,109,100,107,110,93,116,94,102,89,107,99,104,94,80,102,104,86,114,100,105,106,112,89,113,108,98,113,108,115,106,101,109,110,102,106,111,105,110,101,103,115,111,111,99,111,106,106,84,113,100,107,104,116,102,111,110,100,93,114,92,95,107,126,102,124,99,108,99,104,127,110,102,99,109,102,113,104,109,107,100,96,113,105,105,98,100,90,111,110,103,101,92,100,108,107,91,113,100,109,113,102,116,117,106,123,101,101,102,113,114,104,109,122,103,106,106,102,110,97,113,102,105,110,94,111,100,102,82,108,114,110,115,105,117,105,102,109,102,91,101,120,95,106,108,118,101,113,115,99,110,114,103,107,109,107,113,109,119,114,107,108,112,99,115,103,118,113,116,103,105,114,112,102,111,102,104,114,112,111,120,108,117,112,120,104,107,102,91,106,117,118,113,105,112,88,108,104,104,107,94,115,109,116,111,108,115,110,102,117,99,107,106,118,100,113,107,110,104,109,110,105,109,104,120,96,110,108,94,109,93,112,106,105,93,98,107,107,112,102,108,109,112,101,101,107,110,112,92,102,111,89,114,108,109,116,103,103,112,110,103,101,101,106,92,128,114,123,111,106,108,109,120,116,127,103,104,116,111,108,117,111,103,111,109,111,110,103,102,115,119,107,106,116,108,103,112,98,104,120,94,112,98,106,123,98,106,97,95,113,102,98,108,113,116,106,115,113,110,113,104,108,108,124,103,97,105,114,103,112,109,119,117,112,91,99,103,113,108,114,103,116,102,92,105,92,106,100,95,111,108,107,89,106,97,109,106,101,113,95,122,117,110,103,113,96,107,121,106,95,118,111,105,121,119,120,99,114,111,98,89,100,125,103,104,110,96,106,114,107,104,110,94,105,105,115,109,99,112,102,114,117,105,108,111,103,107,106,111,99,95,110,117,101,105,116,97,142,104,111,112,100,105,107,112,97,119,115,106,119,119,92,105,100,108,86,100,126,112,103,122,112,104,102,112,114,91,112,101,105,102,104,111,104,111,101,111,121,107,117,101,117,106,106,104,100,99,114,122,92,105,113,105,110,109,125,118,99,102,104,107,104,104,112,103,111,100,111,106,111,113,121,89,109,126,98,102,116,114,108,108,112,102,93,87,101,103,108,92,116,106,119,107,93,110,101, +555.91089,96,108,104,96,97,108,88,99,125,99,100,96,96,99,103,104,98,106,115,101,99,104,93,101,105,113,101,118,96,107,105,116,98,100,106,104,110,103,79,110,97,117,110,106,104,102,101,89,117,102,104,106,99,110,94,108,97,111,104,92,103,106,109,100,98,99,97,109,106,105,97,98,102,128,112,106,101,99,104,103,111,98,92,93,109,99,114,95,104,110,100,117,105,107,106,112,103,104,97,101,99,104,106,99,82,111,98,106,101,105,95,102,107,92,111,106,96,122,109,99,102,102,101,116,111,107,100,109,106,118,102,120,108,98,104,99,101,104,102,105,99,112,92,108,104,91,103,111,108,95,122,93,105,100,113,109,99,101,101,100,98,105,108,93,113,105,94,104,95,109,109,109,98,99,116,110,109,93,112,107,116,96,97,105,114,99,91,109,93,104,97,91,103,102,96,102,101,102,107,107,98,107,115,107,108,106,98,110,105,118,91,113,94,103,109,101,93,90,97,115,104,114,107,114,97,107,103,104,107,108,116,91,126,100,115,102,116,112,92,83,97,112,128,105,105,99,103,104,111,104,89,111,94,94,93,105,78,121,113,112,99,120,109,109,100,105,105,86,98,113,111,117,112,99,111,100,96,105,114,94,100,106,96,106,109,101,97,116,101,102,97,109,114,110,117,111,113,97,100,109,117,109,108,111,108,100,110,121,105,112,117,112,108,96,122,98,104,106,117,106,107,110,107,112,113,109,93,103,102,111,109,112,110,101,105,102,83,105,99,107,101,105,106,102,97,99,103,114,101,102,104,100,100,108,91,107,109,110,101,83,114,98,107,107,105,105,99,119,113,107,116,108,110,115,104,100,104,99,111,112,108,108,99,108,102,102,93,112,100,108,99,123,111,73,100,97,106,100,103,114,105,105,110,97,104,104,95,105,110,109,95,96,102,112,116,91,95,112,107,104,91,95,108,97,114,102,100,105,99,106,93,103,110,101,100,112,95,109,94,103,112,102,98,105,98,98,95,106,109,110,99,99,119,100,109,111,104,111,103,104,90,104,97,105,105,111,99,105,109,94,96,108,90,101,103,101,90,108,94,118,109,106,113,101,119,115,109,105,108,98,109,126,111,102,105,106,112,105,109,103,112,105,95,102,102,112,100,109,113,109,112,110,95,118,107,100,112,103,118,92,123,106,119,115,114,110,124,102,98,105,102,111,103,105,99,108,105,120,103,105,102,112,110,108,98,105,100,105,101,100,102,102,107,118,108,112,105,101,86,96,107,101,109,109,104,100,111,86,99,110,97,103,116,105,105,95,103,92,99,99,102,99,103,100,101,102,105,113,111,95,110,99,113,111,120,102,123,113,99,104,113,103,100,100,100,96,108,113,102,105,112,120,102,104,112,106,102,106,110,96,113,101,98,105,102,103,93,100,111,108,93,104,95,111,91,103,98,104,103,111,114,106,104,102,96,100,103,98,117,104,106,105,98,97,100,113,112,112,102,98,108,111,103,118,104,115,112,97,112,120,114,109,99,111,105,108,108,112,96,102,100,109,118,101,109,110,106,102,101,108,114,109,104,107,105,91,110,117,112,99,104,97,104,97,105,110,107,116,110,109,109,105,108,108,99,98,121,85,92,106,105,86,100,107,95,99,93,105,125,106,98,117,104,104,101,101,106,75,105,111,118,103,104,99,113,101,107,100,106,109,117,113,111,101,102,106,111,100,95,114,114,85,105,110,109,95,102,107,123,109,116,96,103,107,100,102,117,104,98,100,107,104,113,107,112,118,130,106,95,108,116,113,103,113,105,108,109,109,106,115,109,112,73,88,120,124,108,81,109,111,98,95,110,106,118,109,112,110,112,104,98,127,121,99,100,106,118,103,102,111,95,111,107,112,95,113,114,99,104,109,100,108,119,105,104,89,91,101,106,112,108,117,109,113,94,112,101,109,94,109,109,109,110,112,105,124,106,106,105,98,91,111,100,108,115,115,101,104,100,105,105,104,97,104,96,104,99,112,117,99,90,96,100,98,111,93,104,105,95,102,110,102,104,105,100,107,118,130,100,102,98,118,107,109,114,117,106,98,107,100,108,106,117,84,119,103,112,99,100,104,111,117,112,106,99,121,101,110,115,102,111,107,103,110,108,99,96,111,109,95,94,92,110,109,108,116,95,100,95,112,97,101,106,101,99,101,99,96,94,112,100,97,97,102,117,106,106,98,90,95,98,108,108,105,119,95,94,104,97,114,102,117,105,113,110,101,109,103,103,110,121,105,109,95,109,104,111,134,105,109,106,111,106,114,113,115,124,112,114,106,123,107,104,108,106,88,110,98,110,110,109,100,115,108,114,97,120,103,123,117,117,141,139,149,151,143,152,150,130,142,148,125,162,130,135,113,128,120,108,113,117,119,101,113,107,107,106,111,108,103,99,117,106,100,116,102,115,111,87,113,101,102,102,100,107,120,108,102,101,105,108,107,100,108,108,102,102,104,108,103,112,112,108,108,102,106,103,102,104,103,120,107,117,116,110,88,117,106,99,109,103,89,99,103,105,92,84,96,104,113,117,109,117,94,99,109,110,107,117,100,100,104,109,88,96,112,114,103,104,96,102,102,120,101,112,111,117,109,103,105,103,102,114,92,106,113,104,101,121,107,99,94,100,113,100,100,110,113,103,110,97,108,106,105,113,115,106,104,104,112,104,97,106,100,99,129,101,103,111,125,103,105,111,99,103,106,107,116,109,98,100,107,109,104,111,95,112,117,100,110,90,115,95,94,95,93,110,109,104,104,100,101,106,115,91,106,108,106,106,105,110,101,110,111,105,110,109,111,113,115,103,101,106,103,100,104,102,103,98,107,112,95,98,105,102,110,102,115,96,104,108,104,112,112,98,79,100,107,114,105,113,108,114,106,109,113,103,100,108,113,117,107,114,98,110,98,95,106,118,107,100,108,99,109,98,99,115,110,106,102,107,105,108,111,112,112,98,106,103,99,122,109,95,111,114,102,117,103,97,89,102,113,116,106,105,105,123,112,98,92,105,97,104,105,96,129,107,100,105,104,94,101,99,98,105,103,116,109,121,96,93,84,106,79,108,103,111,94,116,106,100,117,107,113,109,100,103,111,107,102,106,98,108,105,106,103,109,104,125,99,114,102,107,108,117,112,111,101,94,105,99,98,101,104,108,110,115,103,111,102,95,118,111,112,107,99,103,109,113,108,110,102,104,91,109,103,100,99,118,106,98,116,112,112,108,97,99,115,102,97,109,103,117,109,107,102,98,111,113,95,108,113,108,112,112,107,99,102,99,96,95,109,100,110,116,111,103,102,105,104,103,97,106,102,101,110,107,113,101,118,105,118,102,109,98,109,103,118,117,100,104,101,107,112,106,96,106,102,96,104,98,95,114,106,101,99,113,103,103,114,109,108,106,109,111,112,115,98,106,103,108,112,106,109,111,94,88,99,117,96,98,107,104,109,112,109,114,104,109,102,118,116,108,110,81,103,104,112,100,94,100,103,103,109,103,114,103,120,111,116,101,114,108,105,121,115,98,117,105,115,119,92,115,93,112,106,98,105,112,88,99,104,109,108,98,96,110,107,113,105,103,104,99,105,109,98,108,106,107,105,103,115,105,103,111,104,112,110,106,107,96,92,98,125,84,90,102,100,109,108,108,109,106,91,97,108,109,103,105,109,105,109,105,109,97,102,105,110,111,83,103,107,116,114,93,97,103,94,106,106,90,92,105,71,102,113,98,119,113,115,117,95,100,112,109,99,102,105,109,109,105,117,108,99,103,102,108,103,104,105,112,109,109,105,99,101,107,92,110,110,96,109,105,103,101,103,107,87,99,96,102,104,122,97,69,100,105,101,115,100,100,101,103,102,103,103,126,109,96,99,109,106,102,95,111,103,101,100,107,94,99,98,103,112,96,103,107,101,107,106,98,108,100,110,101,113,105,101,96,100,100,100,106,109,110,112,103,108,99,115,104,103,114,95,111,94,105,108,109,106,107,123,115,117,95,97,105,99,97,101,91,98,93,99,96,107,101,101,112,99,116,99,122,104,109,99,111,107,107,101,102,103,106,112,118,79,113,107,111,110,103,109,99,108,101,116,115,100,113,110,97,92,101,101,107,108,87,101,105,111,115,109,109,95,107,106,104,99,106,103,104,109,110,101,106,115,143,78,104,107,102,113,96,99,117,110,101,100,105,104,98,100,103,111,108,109,119,102,113,107,104,105,117,104,112,99,112,113,104,92,111,90,109,111,96,108,108,101,102,106,102,112,106,108,108,107,112,109,97,117,113,110,110,122,115,113,95,110,103,99,109,103,103,113,82,108,95,96,101,116,101,108,104,105,107,111,121,123,108,101,104,100,109,103,101,107,108,106,113,95,95,97,94,102,99,95,101,99,102,95,103,95,95,94,95,103,114,99,108,110,102,109,110,94,112,99,113,104,105,95,95,100,99,105,98,115,96,108,102,104,102,101,111,104,126,99,105,99,116,100,88,123,99,114,92,117,119,111,106,94,110,111,113,114,107,92,100,114,93,98,101,117,101,105,116,102,108,110,98,95,121,95,100,91,95,113,101,104,113,109,108,116,106,110,100,104,115,112,100,103,108,107,100,105,109,103,100,123,97,100,91,103,97,98,113,105,100,95,111,103,111,119,98,120,101,113,103,125,107,101,99,122,94,104,104,108,94,101,96,105,114,97,90,103,96,112,112,93,108,113,115,110,98,97,107,104,110,104,104,99,104,92,90,124,106,110,108,110,102,101,105,71,100,122,107,99,112,69,102,106,111,111,102,99,107,99,100,110,111,113,99,111,95,101,103,102,117,112,87,94,103,105,114,103,105,105,96,110,95,97,102,110,103,109,113,117,106,107,109,108, +556.05176,117,111,110,108,100,105,105,101,113,119,98,111,93,89,101,103,113,114,117,99,115,113,97,115,110,102,114,102,97,111,105,103,102,99,96,102,109,106,106,104,86,107,103,95,100,104,100,126,95,104,110,109,105,104,104,103,91,100,95,103,102,107,117,102,105,95,100,95,113,75,113,108,94,106,98,107,88,130,94,138,108,101,92,95,111,92,110,100,107,107,108,89,110,96,103,110,102,116,105,102,98,114,105,112,133,95,103,104,98,109,106,102,116,106,123,95,105,98,112,113,101,119,98,104,102,110,106,107,107,115,96,108,95,105,109,92,108,98,111,100,108,99,106,121,98,100,97,105,111,104,103,100,111,99,110,135,102,95,102,99,78,105,100,112,111,102,108,114,111,122,102,115,110,100,98,103,91,106,107,95,100,107,108,106,103,104,101,94,103,106,102,102,97,111,105,105,109,117,110,93,103,77,106,98,109,132,110,106,111,83,106,112,96,106,113,104,99,114,99,98,106,92,104,102,100,105,99,115,106,102,101,103,101,99,105,106,104,112,110,116,91,108,112,105,103,107,111,104,103,108,110,107,111,99,101,128,95,104,89,103,103,104,119,109,99,111,99,114,115,117,124,107,104,114,111,110,104,95,87,104,114,99,111,84,106,107,103,107,108,116,105,98,110,107,122,112,106,111,107,105,111,107,96,91,100,105,107,107,108,90,107,115,117,96,100,119,108,102,117,98,96,99,109,113,126,97,104,104,111,104,113,103,100,112,106,112,98,109,111,100,101,120,92,106,110,110,104,117,118,100,125,107,110,98,121,97,123,102,108,100,105,106,101,107,102,104,99,104,103,114,106,109,98,111,109,104,106,100,122,103,81,118,108,71,109,97,100,107,102,105,102,98,112,99,106,110,104,102,103,108,101,119,116,94,105,99,105,122,116,109,87,96,113,103,109,100,118,104,108,106,112,105,105,97,91,100,107,92,98,113,92,103,107,104,100,113,90,116,106,105,117,126,101,107,102,106,95,104,104,122,95,110,103,110,122,102,104,111,101,102,104,103,110,102,76,110,118,101,109,108,105,99,103,108,107,92,103,112,103,109,106,95,120,84,99,102,114,109,100,96,110,117,107,85,102,91,102,95,90,115,106,99,107,113,119,92,116,116,106,96,117,102,100,116,110,101,111,95,104,105,105,123,101,95,113,81,104,106,102,106,100,96,106,145,113,110,114,83,96,104,112,95,113,111,112,90,112,96,106,109,105,112,96,112,102,91,98,101,99,110,114,97,106,121,104,104,103,101,117,104,101,97,110,116,112,96,99,100,86,98,100,98,108,87,86,108,109,111,114,104,104,101,106,115,102,106,104,109,110,97,106,107,105,112,109,90,95,103,112,103,105,104,108,104,110,118,114,112,121,111,122,115,119,109,109,105,100,109,111,116,105,133,103,102,91,102,100,119,127,100,110,112,103,106,108,81,103,102,95,116,106,105,93,93,99,112,106,109,98,106,110,111,90,109,94,115,104,92,96,109,113,114,99,113,97,115,105,98,102,102,120,113,105,113,102,110,102,98,102,108,106,94,107,109,103,109,111,111,95,104,111,100,112,94,108,99,104,106,85,106,97,94,84,103,106,85,100,103,97,105,105,99,115,119,104,100,111,102,101,115,111,129,99,70,100,105,107,99,112,88,121,105,114,116,106,105,106,108,106,111,105,103,99,109,112,109,109,122,115,93,98,105,104,106,101,108,97,104,102,99,121,121,104,108,113,117,128,107,110,104,103,118,107,115,93,126,107,103,95,101,109,103,106,108,104,104,103,115,110,99,108,103,95,113,107,101,112,90,110,108,111,104,109,98,110,115,106,108,103,102,114,103,114,105,104,107,103,98,101,91,110,101,96,106,111,111,111,104,119,100,105,106,100,95,119,112,103,105,102,107,105,97,109,114,111,109,111,103,100,100,105,100,125,99,105,99,125,107,122,104,110,120,99,98,88,99,110,94,90,102,94,96,100,116,94,103,91,107,87,112,114,118,112,104,103,112,110,74,104,101,112,108,103,106,116,93,109,103,102,114,102,123,108,90,109,98,109,124,108,107,111,104,105,113,107,115,108,100,102,113,100,99,113,109,99,113,102,112,117,106,96,119,110,113,103,104,102,95,100,107,109,115,105,104,110,96,95,120,106,100,109,117,97,96,108,99,105,102,112,120,94,108,99,108,106,118,117,105,96,111,117,104,106,94,103,98,103,76,109,111,110,93,92,114,111,111,94,107,115,99,106,108,106,108,105,105,115,96,106,105,105,112,114,111,104,104,107,108,99,105,112,107,114,86,105,104,99,119,109,107,107,113,116,101,98,102,97,128,144,128,132,116,166,144,164,169,138,163,163,160,138,143,135,147,118,117,122,94,119,107,108,114,118,111,106,111,108,116,107,100,106,112,95,106,118,103,107,122,99,99,117,109,121,98,106,110,107,128,127,102,101,108,113,99,104,98,68,102,104,94,106,104,108,109,103,112,100,96,114,115,105,116,108,108,114,110,111,103,109,110,111,99,103,110,110,111,100,104,109,102,105,112,110,106,101,114,107,92,101,94,98,99,109,110,105,107,105,103,96,101,103,110,104,105,117,107,113,121,102,107,105,103,106,113,107,85,111,102,103,111,94,103,108,109,104,102,110,105,97,109,107,116,112,114,106,109,103,115,109,107,83,114,114,108,107,108,115,100,105,112,108,116,93,107,115,115,91,107,115,104,95,106,100,117,106,116,95,111,100,104,109,117,110,95,115,106,104,112,93,127,91,108,98,107,116,99,110,112,119,104,110,96,104,100,109,104,89,118,115,110,105,105,112,110,119,107,102,102,103,107,107,92,106,116,106,95,105,113,111,104,106,108,103,114,97,101,99,110,97,105,105,116,127,110,101,117,121,104,111,111,107,105,108,92,104,113,95,111,106,101,106,120,107,107,113,109,102,113,98,104,95,76,108,102,106,100,102,104,107,104,120,95,98,116,120,120,104,105,100,98,115,93,106,119,108,89,110,110,115,108,112,110,114,106,108,98,100,122,113,106,100,106,106,111,100,102,110,99,109,112,131,118,111,100,110,100,106,104,106,102,112,106,89,112,108,108,100,107,106,99,100,99,97,102,127,110,104,97,102,102,102,98,104,102,91,92,103,107,112,109,100,99,108,106,102,122,100,104,112,103,98,91,97,98,112,108,97,111,118,106,105,107,89,103,91,109,91,103,107,103,105,105,110,119,90,104,103,107,117,106,95,94,104,105,108,105,95,88,103,99,103,109,105,87,96,97,111,111,109,105,107,104,102,113,107,109,96,107,113,101,103,109,94,100,100,120,110,110,109,102,95,113,107,96,102,120,102,113,109,109,95,113,93,113,110,107,88,106,107,98,100,87,97,94,109,109,112,126,109,118,105,108,103,111,101,107,108,110,108,109,106,106,102,100,101,108,98,98,75,108,103,87,106,102,96,102,111,110,115,104,99,139,115,104,97,102,111,114,97,104,99,102,106,103,104,125,109,102,110,110,106,111,106,99,106,109,108,106,109,116,106,109,95,112,107,112,105,109,113,101,102,106,97,108,109,97,102,100,111,91,95,102,107,106,109,102,108,103,115,97,91,102,113,101,110,101,104,104,120,112,102,98,105,104,94,118,102,94,117,113,109,108,112,99,101,119,98,102,112,109,103,99,117,98,116,109,117,95,105,106,123,104,109,100,104,107,109,108,106,116,102,108,100,95,117,103,110,103,108,104,108,107,115,117,112,110,103,95,94,103,104,88,106,99,111,98,102,103,104,95,117,94,107,110,100,109,112,103,98,109,112,113,90,98,100,101,90,98,103,117,103,107,104,106,99,104,102,106,103,104,105,108,110,108,105,105,102,106,102,103,88,113,109,109,100,102,100,90,131,107,104,95,98,109,103,105,95,97,110,97,125,98,111,113,103,106,112,99,108,108,108,102,93,107,111,104,111,107,127,108,100,105,104,106,106,106,109,104,115,104,100,107,112,106,102,109,117,101,105,84,107,97,106,109,102,106,119,107,99,127,106,103,108,102,97,101,93,103,103,93,103,90,111,106,100,106,98,123,107,112,94,113,92,99,106,94,113,106,108,100,101,97,96,109,101,113,106,113,109,95,102,92,98,105,100,104,105,92,102,101,119,110,102,100,111,108,115,102,109,111,115,113,125,107,91,103,122,105,112,109,114,93,101,106,106,122,75,111,115,116,96,99,103,103,105,95,108,103,107,97,99,103,120,105,102,97,93,106,99,112,109,103,107,99,100,93,107,104,106,106,110,113,104,95,102,102,106,112,118,103,111,96,106,102,98,102,116,95,100,107,112,108,106,119,101,114,112,105,109,110,104,119,95,122,104,102,108,115,107,101,109,100,100,106,105,117,107,98,106,102,107,112,103,101,102,95,103,106,101,121,122,108,82,110,96,109,103,101,112,101,111,128,110,97,104,98,111,113,105,107,112,108,107,109,107,93,90,106,106,103,99,104,98,117,120,109,115,105,78,109,106,102,112,111,116,101,111,100,116,98,114,105,106,106,114,99,114,101,99,100,101,99,103,108,103,104,102,103,98,109,97,96,101,115,102,100,103,102,98,99,106,110,114,94,98,106,88,102,103,107,113,113,108,106,103,107,105,106,117,106,115,110,110,111,105,109,97,94,108,111,128,100,124,101,98,98,91,98,110,77,106,96,105,100,116,108,111,98,107,107,101,98,87,106,103,106,110,116,104,106,100,100,105,104,100,99,105,98,113,108,96,102,96,91,109,110,95,95,113,105,116,99,86,105,106,108,112,101,102,101,121,105,111,114,99,111,100,95,100,92,95,100,98,105,94,92,109,116,105,113,104,94,106,92,105,105,105,120,110,109, +556.19263,98,104,103,105,100,86,108,95,111,93,104,116,104,111,122,109,108,110,102,99,98,97,105,98,108,103,103,114,103,109,114,103,111,105,119,102,104,99,111,116,102,66,99,105,106,114,91,116,106,106,87,94,98,98,106,97,107,115,109,104,104,110,101,109,104,112,106,105,107,80,101,116,108,110,109,106,99,90,115,101,101,88,115,111,110,99,110,101,114,114,106,106,130,87,105,102,106,107,95,100,95,115,102,109,96,110,110,104,110,108,99,95,102,97,101,106,109,103,117,115,104,103,103,98,106,118,116,109,107,103,92,118,110,106,109,98,113,112,98,109,99,109,99,121,108,98,114,114,94,125,118,105,110,104,102,102,108,103,115,119,109,96,105,115,117,100,118,88,105,113,94,102,113,99,98,108,102,106,103,97,128,102,106,108,99,99,98,97,109,110,96,110,99,118,111,96,122,110,106,103,105,86,96,105,105,109,104,104,123,119,117,101,112,105,98,102,105,124,106,113,98,99,103,104,129,108,107,117,136,99,98,99,108,107,111,116,104,111,103,97,95,104,117,105,110,113,104,106,111,119,110,93,98,107,98,103,100,103,109,107,109,102,96,112,108,125,113,96,124,110,103,93,120,112,115,114,97,97,101,112,102,100,119,109,113,113,114,96,105,100,118,112,110,107,119,111,97,109,119,119,110,105,110,117,84,100,107,114,99,113,100,115,116,107,99,91,117,105,116,113,99,105,112,108,102,105,95,100,101,117,103,108,113,97,108,100,97,94,110,103,90,108,109,100,113,104,112,104,109,105,125,119,114,108,105,106,87,106,115,102,113,96,104,107,109,102,101,114,115,116,112,106,108,93,100,103,120,110,109,121,100,103,108,105,108,109,99,104,115,105,124,93,109,107,102,110,101,100,100,99,108,102,103,99,111,110,105,105,113,110,102,100,120,99,106,100,102,100,126,115,108,90,91,101,103,96,99,98,115,111,105,121,102,107,105,106,94,106,101,108,115,104,117,115,104,96,92,95,103,109,95,106,112,138,110,107,103,111,111,108,101,109,118,112,99,104,110,102,112,97,117,110,96,107,109,107,108,107,110,105,107,107,111,101,70,103,117,117,112,109,109,106,122,100,89,108,114,103,107,110,120,97,98,104,100,110,103,103,110,111,114,107,105,111,114,105,104,105,104,103,107,102,94,104,112,103,116,109,110,100,106,117,126,94,111,112,106,103,100,114,116,113,113,103,117,97,105,100,112,99,114,96,105,107,106,104,113,112,116,100,108,103,108,99,106,117,113,105,100,111,108,100,96,112,104,116,108,104,99,113,104,99,102,103,105,105,106,117,108,104,111,104,110,118,94,105,107,106,108,108,110,105,121,115,116,103,92,101,105,103,91,113,97,116,106,119,100,102,103,109,114,125,99,90,106,114,109,99,125,99,110,101,107,101,96,109,96,96,109,108,104,105,109,109,106,98,107,99,104,108,101,116,109,102,91,102,109,112,117,102,110,95,110,120,100,104,107,96,106,110,109,110,113,102,106,111,106,103,109,99,117,113,111,104,104,110,92,102,99,107,103,106,95,103,104,100,110,94,111,114,93,104,108,102,99,108,99,98,94,108,108,107,63,114,108,103,121,102,102,100,96,112,105,113,97,96,107,106,103,107,109,107,95,100,110,109,95,118,114,107,93,96,100,98,105,105,106,95,106,112,120,106,102,102,106,89,113,116,117,112,107,106,99,105,92,107,100,109,117,100,106,114,106,105,120,94,114,104,99,102,103,112,93,106,117,103,109,107,102,121,109,116,99,116,112,113,117,105,106,106,112,103,99,102,106,98,117,111,108,103,113,93,95,122,96,100,116,108,101,110,99,117,114,117,107,110,101,108,100,100,110,114,114,123,93,127,111,111,101,126,99,96,110,104,112,113,106,102,106,107,86,103,101,103,103,107,103,101,102,113,120,104,105,115,105,107,102,109,100,108,116,117,105,107,106,112,110,101,107,114,99,104,108,120,101,118,95,110,101,112,98,108,105,101,102,95,105,110,104,96,100,108,101,92,101,97,112,104,98,113,106,103,111,85,98,108,103,102,97,121,110,105,110,102,91,103,112,98,111,94,104,115,107,117,106,106,99,100,106,107,109,99,108,104,101,109,115,105,107,106,109,101,106,107,112,113,105,102,106,106,91,104,99,113,115,116,108,116,109,115,103,98,109,109,101,108,101,103,98,96,111,118,126,106,94,97,105,106,103,91,102,98,112,114,115,108,119,102,91,113,111,95,114,103,102,107,121,102,103,107,103,105,108,89,123,104,116,101,108,107,106,112,116,93,124,110,107,103,97,109,114,122,113,112,126,105,110,130,120,126,140,139,132,158,147,158,125,123,147,154,142,152,156,131,129,138,129,115,116,112,115,98,106,114,89,96,103,107,105,100,100,117,99,110,99,120,104,109,108,96,107,103,100,110,108,108,105,106,112,111,122,101,115,110,101,116,99,98,121,101,103,97,120,106,107,99,105,95,107,113,106,119,94,101,97,97,110,112,102,107,103,119,109,98,117,91,95,99,112,112,110,113,105,103,99,107,113,108,110,116,107,113,106,113,118,105,116,105,114,99,115,106,112,116,114,100,107,105,104,103,104,92,104,95,103,120,100,100,111,113,112,105,113,101,106,93,110,112,116,112,110,107,96,92,115,108,113,110,116,105,104,105,116,115,107,118,110,102,116,107,115,110,108,111,108,110,106,103,106,105,120,116,109,109,117,110,104,108,116,109,117,105,111,109,101,113,108,105,98,101,107,125,113,114,104,111,101,104,111,115,109,112,91,106,99,103,98,108,100,108,106,110,107,120,103,103,101,115,117,107,91,109,110,106,113,107,119,114,111,114,114,101,107,105,98,112,95,95,107,106,108,113,124,96,102,106,103,107,115,101,107,108,104,105,105,111,103,113,103,102,100,95,101,99,94,108,110,113,106,103,94,105,106,118,112,114,100,107,102,104,114,115,112,106,108,97,103,93,113,101,102,99,110,109,122,106,113,105,116,112,105,109,96,98,110,113,104,98,108,109,101,105,102,110,102,96,105,109,103,113,105,105,110,104,108,110,118,113,109,109,118,110,103,102,116,95,112,103,113,109,92,99,113,114,102,103,108,110,98,111,104,100,120,108,101,95,109,96,113,113,110,112,95,93,106,105,102,106,120,107,100,105,108,99,109,91,98,104,117,117,108,109,115,108,117,105,124,108,103,98,110,106,113,114,106,107,109,118,72,109,116,112,108,107,104,119,101,105,96,98,101,101,104,115,97,105,100,100,98,116,106,120,104,98,124,109,102,79,98,91,111,121,98,84,115,106,115,103,98,110,99,110,113,98,113,108,114,113,101,99,105,107,95,108,114,102,103,116,101,94,105,112,108,112,108,104,101,105,103,103,95,95,98,112,104,102,112,118,107,104,100,111,115,87,104,102,99,102,106,123,117,105,99,93,102,109,103,104,101,96,119,103,104,121,112,106,110,118,102,105,105,108,102,110,95,111,105,104,104,116,110,109,91,100,120,103,111,102,107,117,111,112,113,109,105,105,98,99,99,101,98,104,116,110,116,104,123,108,108,109,95,107,105,115,100,102,113,119,106,106,101,95,112,104,102,100,109,109,111,110,110,103,106,111,96,106,97,104,103,105,95,109,92,111,106,102,104,95,106,108,105,107,99,112,100,98,100,113,120,104,93,109,99,109,101,113,112,105,113,110,94,96,112,88,104,102,108,120,105,96,110,102,101,116,108,109,109,109,108,99,99,104,103,113,108,114,98,102,103,95,107,100,115,112,103,110,112,96,107,106,101,100,111,103,108,112,98,108,115,102,111,101,105,109,108,101,110,103,92,105,128,106,104,99,97,98,109,108,111,103,106,98,106,100,101,98,109,112,113,105,105,105,100,107,96,108,108,99,108,103,96,116,107,116,109,114,99,124,122,100,109,101,104,105,104,120,115,117,100,111,103,106,114,108,95,116,108,102,105,108,102,102,101,121,103,108,111,104,122,117,102,106,91,92,99,116,111,105,113,100,104,109,96,107,90,96,97,115,102,103,99,108,103,104,99,115,106,112,108,104,102,105,102,105,117,91,113,106,121,100,98,118,107,108,108,97,107,113,123,119,118,120,111,93,98,114,106,106,95,102,111,110,109,95,102,104,100,106,106,106,106,113,106,107,106,113,96,102,102,109,118,101,105,113,111,105,119,95,117,92,91,107,111,105,102,105,97,94,99,106,106,97,108,106,95,100,128,107,95,113,116,114,117,108,102,108,97,82,102,119,104,102,110,96,106,96,93,104,98,115,108,99,113,87,99,109,110,109,121,117,104,114,102,116,85,95,115,114,98,117,116,109,100,109,106,112,106,108,101,97,106,101,105,110,98,102,97,112,91,100,103,113,100,104,102,105,93,113,116,101,102,116,105,106,114,97,101,103,112,99,101,92,94,110,104,106,107,97,104,103,100,97,101,99,109,99,105,108,100,100,102,107,104,112,106,110,119,106,102,75,113,112,110,108,98,104,113,103,108,100,116,100,112,100,109,100,107,105,101,97,110,109,116,117,115,112,98,101,93,114,107,112,94,113,98,121,111,109,117,114,112,102,114,110,104,95,109,102,111,115,98,117,100,112,110,102,99,94,99,105,113,103,116,109,100,99,115,91,104,111,116,113,95,114,98,102,103,113,108,102,99,111,108,103,112,95,98,114,104,96,120,99,94,106,107,95,101,100,99,103,96,102,104,99,98,96,111,95,113,109,107,104,100,105,110,99,102,107,124,104,111,103,103,101,116,109,91,108,102,115,118,116,111,112,111,114,109,94,118,101,105,100,106,114,102,102,106,106,93,97,105,84,107,77,114,114,121,96,106,121, +556.3335,97,104,93,98,83,99,105,100,99,105,103,92,105,107,112,104,100,106,113,100,103,99,100,101,98,111,95,118,108,104,100,113,99,104,98,110,97,87,105,103,111,104,104,117,109,101,94,110,92,99,102,101,104,109,111,100,108,102,97,111,102,108,113,101,100,111,107,116,116,96,95,101,105,102,93,111,90,79,103,104,109,101,113,104,100,110,94,94,99,99,99,105,114,106,113,102,98,94,104,106,103,81,109,106,117,88,96,111,95,104,99,101,107,111,97,116,88,107,106,101,105,109,101,115,94,114,118,105,113,105,105,101,104,109,92,103,111,90,108,102,102,112,103,101,90,109,100,101,96,103,104,122,91,93,106,113,102,100,113,100,105,109,102,91,105,106,111,102,100,101,98,107,109,82,98,100,99,94,112,108,103,100,109,110,105,106,100,89,109,102,102,98,104,99,107,104,100,88,99,111,105,104,98,103,91,110,101,110,115,108,109,106,97,101,92,97,104,106,103,115,107,118,106,110,110,104,121,113,102,107,96,107,109,105,107,102,95,106,101,95,100,101,106,108,97,108,113,97,108,102,98,109,115,112,89,98,92,117,95,100,116,109,105,117,103,116,105,114,109,105,114,107,109,117,113,102,98,96,111,101,98,96,100,114,101,113,87,83,103,93,109,90,110,113,103,118,109,97,109,108,115,89,111,116,107,116,108,112,102,117,101,113,93,130,109,104,123,102,104,79,110,104,104,101,106,107,110,95,97,102,103,107,106,102,110,101,103,105,100,99,104,99,106,102,115,110,109,116,113,110,107,104,111,110,112,101,104,122,106,101,108,102,100,113,99,105,101,99,101,106,102,104,114,104,100,110,110,101,97,111,113,109,95,100,112,112,94,104,105,113,106,97,102,100,102,102,82,103,109,106,96,100,99,103,99,108,100,103,110,109,104,91,113,104,108,97,109,107,103,105,99,105,101,95,108,103,109,95,107,105,106,96,111,110,110,109,102,107,110,104,113,95,103,104,107,110,103,110,102,103,111,106,108,110,106,99,98,100,108,98,98,109,102,98,102,118,110,105,109,98,92,104,104,94,113,107,100,95,116,108,105,109,118,113,96,93,103,107,105,90,107,108,104,96,93,104,106,111,113,96,106,97,112,117,101,121,101,95,106,102,120,99,121,110,127,111,103,128,111,91,108,92,100,107,101,95,109,117,94,106,111,102,114,109,101,106,102,113,113,107,101,117,101,104,106,103,110,103,114,104,104,101,94,122,107,99,111,97,103,102,114,99,74,109,107,102,112,112,96,102,104,92,114,107,107,99,104,99,109,110,99,101,91,117,101,98,112,112,110,101,106,104,106,97,110,125,98,115,106,113,106,111,108,106,85,107,115,96,102,103,108,102,106,99,115,123,106,97,104,100,110,109,112,112,113,107,102,104,113,94,111,117,101,110,108,131,111,105,105,97,110,103,101,109,103,104,108,97,95,117,97,108,103,113,105,103,106,120,102,110,106,108,114,116,106,97,106,93,103,113,105,107,108,108,109,100,104,103,107,99,103,119,111,108,98,106,110,106,109,99,102,95,101,119,111,104,115,100,109,103,95,93,117,102,102,108,110,106,92,98,112,89,109,112,106,105,110,119,112,101,113,99,104,112,94,101,105,98,107,108,108,109,105,90,109,111,97,92,99,98,84,97,106,109,109,112,98,110,99,103,96,96,107,100,107,99,105,114,101,108,110,101,106,101,104,104,107,106,114,112,101,101,105,101,100,104,114,96,109,105,112,98,104,121,100,99,108,117,99,111,109,121,101,97,106,110,100,109,121,104,109,116,105,100,112,109,106,102,110,106,105,106,105,94,114,100,111,110,108,99,109,109,93,119,94,100,112,106,92,95,110,109,115,99,105,72,109,106,108,107,115,106,105,111,113,111,103,116,106,112,100,99,111,113,97,103,97,117,103,74,105,103,109,108,99,100,109,100,110,113,106,106,111,99,109,99,110,109,95,94,99,93,103,114,105,103,100,120,112,107,94,106,106,106,103,95,111,130,99,103,107,109,104,90,110,103,101,105,106,113,106,121,129,117,100,110,99,118,102,103,104,114,116,104,112,96,111,99,99,104,105,112,104,105,111,120,99,93,89,107,110,109,107,116,101,111,101,113,91,101,103,109,116,114,103,106,104,105,106,105,104,115,112,102,114,103,109,110,106,103,103,117,120,102,113,103,112,99,106,99,105,113,99,102,107,107,97,105,100,104,98,84,102,118,104,103,119,108,109,112,117,114,94,110,112,96,104,105,101,105,100,110,106,123,98,103,104,113,116,107,110,108,106,103,113,103,104,104,99,104,107,116,111,109,115,99,104,118,109,135,143,146,148,147,155,164,148,169,173,147,170,145,145,141,123,145,94,127,108,105,98,114,106,125,99,109,98,110,104,101,102,106,101,118,129,111,104,91,112,84,106,108,117,110,99,106,88,116,125,105,116,108,101,104,98,95,103,94,110,110,103,98,106,105,116,106,102,110,104,108,104,100,103,107,104,111,121,105,93,96,109,108,109,95,95,86,102,90,108,102,108,87,109,97,105,102,101,98,116,110,101,96,96,110,115,104,104,103,94,88,112,102,114,104,112,108,109,93,106,100,108,100,103,89,101,110,113,117,107,94,106,104,110,113,114,91,106,104,111,105,109,106,95,95,106,96,100,101,108,107,118,81,107,114,119,110,98,109,96,106,94,96,95,92,113,117,118,104,108,106,112,110,99,113,111,80,106,105,103,102,108,113,107,100,110,101,102,110,103,121,96,103,106,101,112,100,118,106,99,110,103,105,110,97,104,95,100,104,113,90,89,108,117,100,98,105,132,117,96,109,105,116,95,107,107,99,107,98,115,113,111,98,103,100,104,116,105,103,103,104,115,91,98,104,97,105,99,102,112,97,124,108,103,108,111,113,111,108,109,109,110,108,108,111,105,92,110,98,99,99,120,107,106,105,94,109,95,103,98,105,107,103,98,95,100,111,103,101,106,106,109,103,107,106,87,99,107,123,102,106,103,103,111,110,99,106,102,96,100,103,98,130,102,102,101,109,128,112,109,103,87,114,117,113,114,109,110,106,106,140,103,103,107,110,111,99,109,108,103,104,95,103,107,106,91,107,124,95,95,98,102,86,106,110,110,109,101,98,99,105,109,107,102,109,103,108,109,99,106,104,106,106,96,109,95,95,108,101,100,109,96,112,99,109,116,105,103,86,108,101,104,119,111,109,116,99,107,117,94,110,110,97,109,120,100,103,105,110,96,103,112,101,116,103,106,119,100,100,104,107,109,105,98,109,109,113,95,100,101,92,101,108,101,103,106,104,103,106,105,95,92,108,108,101,79,104,106,94,100,112,96,86,91,104,99,101,112,95,101,112,110,110,88,112,104,113,106,104,104,108,101,98,97,98,100,100,114,102,99,107,106,103,107,101,100,95,106,109,106,111,81,96,113,102,102,106,105,98,108,98,88,115,98,109,104,110,109,96,99,125,112,118,102,97,113,109,78,103,102,102,83,108,99,116,110,109,110,110,117,99,113,109,104,106,104,98,101,85,100,115,98,102,114,94,117,96,110,102,93,104,103,113,111,99,107,98,102,111,101,107,99,110,108,100,103,100,106,117,107,111,122,107,112,110,102,99,83,109,113,105,136,103,98,95,103,97,103,118,103,105,116,108,101,105,110,104,112,115,105,110,109,114,105,102,103,130,100,106,113,118,102,99,105,96,105,113,98,113,110,110,109,109,108,120,107,103,109,104,110,101,98,108,107,108,105,114,106,112,87,100,97,105,108,91,109,101,100,112,97,109,103,106,106,109,97,104,109,121,100,101,101,112,95,113,103,94,110,99,104,106,109,99,86,102,97,104,82,107,105,101,97,102,108,113,117,94,106,98,102,104,102,103,68,101,99,108,99,111,114,107,102,102,100,108,96,110,98,97,99,111,106,91,104,119,124,111,100,108,103,114,106,104,107,103,103,83,115,99,97,105,109,81,97,107,114,103,109,107,105,101,104,112,99,92,102,118,109,104,107,91,106,100,91,109,84,105,104,100,103,108,108,106,85,91,102,110,94,113,105,111,109,90,113,101,102,106,105,91,99,105,111,96,93,112,108,115,94,109,104,104,91,116,94,101,109,113,104,109,106,104,99,71,113,105,101,106,89,106,121,109,109,113,110,101,106,101,115,104,104,102,106,95,108,103,101,101,106,109,97,99,102,115,123,104,97,111,115,70,111,107,107,93,97,104,106,100,106,106,93,103,104,111,104,104,113,92,93,95,103,113,83,113,106,108,117,111,99,106,112,112,117,102,100,107,118,102,110,119,110,104,103,84,111,105,111,119,102,104,116,108,105,98,108,104,91,99,103,102,111,104,104,102,99,87,101,121,102,93,95,111,104,99,90,108,95,100,113,121,107,113,95,102,113,75,110,100,100,96,99,100,106,96,111,108,98,94,108,104,108,97,111,91,92,113,93,104,109,94,114,97,103,102,91,98,105,109,97,104,99,105,102,114,92,82,111,112,100,111,103,106,94,104,94,94,99,108,100,93,109,106,109,92,105,110,115,109,107,84,99,94,116,106,105,112,98,110,104,102,105,84,98,102,102,109,94,91,100,99,105,108,94,97,103,102,93,96,97,102,116,105,110,102,106,93,111,74,122,99,126,109,103,107,112,104,93,93,111,109,94,95,102,101,92,90,100,111,105,105,101,100,127,105,88,95,100,111,108,95,102,92,102,95,104,125,105,91,109,94,110,102,71,99,105,91,104,104,108,88,120,101,118,107,97,116,111,99,113,108,87,112,101,109,93,107,100,108,98,96,105,109,89,103,103,104,102,93,100,115,122,102,102,106,103,91,88,103,108,103,106,95, +556.47437,113,109,110,93,85,112,116,99,91,106,99,110,87,106,108,114,97,115,125,105,108,104,109,98,105,110,99,99,107,117,102,88,101,117,114,89,112,100,92,104,101,103,110,102,114,106,107,117,103,109,96,97,102,91,96,96,96,100,120,104,103,95,103,101,105,121,118,102,104,91,93,116,90,116,88,107,98,110,107,97,107,100,97,99,107,105,104,124,117,99,111,106,100,104,104,111,106,108,94,108,110,100,121,110,100,100,112,113,105,100,90,100,114,105,105,108,117,108,97,83,109,93,114,120,103,115,122,104,115,100,95,90,117,104,112,103,105,111,110,112,102,91,110,100,109,100,110,103,99,94,94,97,97,110,109,87,101,113,103,100,103,96,115,113,114,111,103,115,97,101,113,96,113,88,110,103,102,105,105,113,103,93,102,109,108,110,104,88,113,98,109,105,110,98,100,112,118,96,113,95,90,95,101,107,104,86,94,111,106,105,96,104,104,107,108,107,103,108,106,106,107,106,100,101,97,107,95,92,78,102,100,110,109,89,109,101,120,103,96,103,112,101,112,117,118,103,110,107,111,109,117,109,101,108,97,105,77,102,109,100,97,107,99,104,99,109,113,95,100,100,101,115,108,106,96,104,101,112,118,104,103,111,99,112,107,109,97,103,107,112,108,108,108,109,105,104,98,101,99,104,110,109,101,116,103,108,114,93,88,108,90,111,107,111,106,99,95,142,127,112,110,91,109,110,114,110,105,92,114,108,112,108,116,117,99,120,92,94,99,106,112,94,95,104,102,108,105,107,103,96,112,110,110,121,103,104,117,103,108,107,100,97,101,111,105,100,104,125,99,113,107,105,118,100,106,108,126,104,118,98,94,121,100,99,109,101,108,105,118,98,117,101,104,96,99,106,99,105,99,96,108,94,98,112,103,109,121,120,102,102,102,95,107,98,100,95,98,102,102,99,104,99,106,111,92,110,110,107,102,112,102,119,104,110,107,110,108,118,95,120,111,102,99,114,98,91,102,100,119,109,98,103,88,84,94,99,109,111,122,104,102,99,110,110,98,109,119,112,113,103,105,100,108,95,102,98,101,105,105,113,113,104,106,102,104,111,103,92,100,116,110,109,105,107,91,124,101,102,112,99,99,105,104,116,106,102,102,101,109,101,96,109,104,93,110,104,109,117,111,105,106,99,111,100,105,114,103,107,94,125,107,109,102,108,102,116,105,110,107,101,96,103,99,106,116,104,83,105,113,96,102,91,108,109,110,79,99,110,107,103,103,107,93,83,104,98,116,99,101,97,90,99,103,111,114,94,105,104,108,111,99,104,88,75,106,104,107,106,100,101,113,114,108,114,100,104,96,104,109,113,106,118,103,99,110,96,96,113,102,113,101,113,113,105,100,98,107,113,104,105,100,109,106,96,119,102,99,112,104,112,110,96,113,102,104,113,111,102,103,114,87,96,103,107,103,95,107,104,117,109,107,100,113,114,112,108,108,113,106,116,114,110,106,107,101,112,96,107,113,106,114,103,112,113,107,109,92,109,119,94,107,104,116,100,99,104,105,108,105,107,111,125,106,97,108,108,105,105,95,104,109,96,110,99,112,109,103,110,112,106,105,115,116,105,102,98,106,105,105,91,104,103,110,110,98,112,111,104,119,115,113,105,108,84,100,109,111,97,125,102,110,104,98,117,114,103,109,109,93,108,104,106,117,98,108,100,103,106,116,107,104,105,113,108,105,106,113,105,100,100,107,109,109,110,107,102,108,105,110,101,95,106,104,100,108,105,105,113,106,113,107,98,107,113,100,123,92,101,110,112,110,99,96,110,105,108,105,108,104,99,108,101,107,104,95,103,118,117,104,111,109,113,119,110,101,113,106,113,113,117,99,112,88,110,94,114,98,106,99,99,100,106,108,102,101,94,101,106,103,106,104,101,97,107,104,113,102,104,97,110,109,114,104,102,103,100,112,113,109,112,102,105,113,110,113,98,107,101,80,97,103,101,109,112,107,111,124,115,110,103,110,99,109,118,109,87,105,112,110,93,101,107,126,113,102,96,110,102,99,100,106,109,98,110,101,110,100,118,106,81,109,116,99,108,107,102,96,98,67,100,107,114,102,102,99,94,95,105,108,115,104,95,94,104,99,94,111,104,94,103,105,95,95,100,106,96,106,92,97,102,108,102,101,101,97,118,97,98,94,109,97,117,111,99,107,107,102,114,98,97,100,101,121,94,100,106,109,118,104,101,102,100,106,102,105,108,103,91,103,115,109,138,100,116,107,96,109,112,106,98,93,109,95,100,90,106,97,98,100,100,124,105,105,95,110,103,110,99,107,108,103,114,115,110,100,95,117,114,116,122,123,121,117,143,149,144,126,143,156,113,137,142,142,151,117,114,111,104,99,115,108,114,99,102,101,112,104,87,111,108,79,118,67,101,101,106,103,105,94,109,108,108,99,103,103,93,119,106,90,103,100,103,112,108,93,104,100,91,112,91,102,108,108,112,95,110,95,101,115,110,105,118,120,112,112,100,91,111,100,109,116,113,108,108,103,108,102,119,106,102,92,98,69,89,94,102,110,105,101,96,105,104,97,121,114,102,101,98,98,102,111,108,114,101,96,102,113,106,106,108,112,104,102,94,107,99,108,106,104,93,97,104,96,102,106,102,104,95,105,114,99,104,98,104,106,109,102,113,113,112,110,113,107,111,110,105,103,111,104,108,103,120,112,112,105,116,101,101,107,109,118,107,107,103,103,104,108,110,106,109,100,111,110,103,112,102,91,115,101,105,103,111,96,105,121,106,117,111,110,92,110,102,116,95,107,98,100,124,95,103,103,112,125,103,95,105,98,105,98,81,116,112,103,111,114,114,111,111,107,102,109,100,109,105,113,100,109,76,103,111,102,104,106,106,103,98,110,101,105,100,103,114,106,84,106,96,113,107,106,109,92,110,107,106,95,101,110,106,91,102,105,116,99,107,119,127,110,106,115,98,126,111,98,107,110,107,100,92,104,100,111,113,107,98,112,110,109,100,91,101,105,101,99,98,102,105,106,101,109,106,110,100,105,108,98,112,96,97,99,92,105,115,107,103,111,119,81,93,94,117,113,107,104,98,107,103,99,98,96,105,109,106,123,109,121,101,109,117,107,113,104,108,109,99,117,110,111,110,109,102,110,107,118,102,108,105,103,109,99,103,109,91,107,108,107,100,92,112,96,114,108,107,93,99,104,99,102,107,114,111,107,102,102,111,106,96,95,103,105,91,106,98,103,130,102,99,96,105,110,104,112,96,108,103,100,105,100,117,125,101,100,106,103,112,125,99,99,98,103,116,106,121,99,104,99,88,110,99,113,95,105,106,92,110,104,108,102,99,110,95,109,112,107,95,112,117,100,113,112,104,90,110,142,105,101,102,107,94,109,103,110,97,106,113,99,106,106,109,117,104,107,114,104,105,102,101,95,107,116,105,101,94,109,103,107,106,118,97,104,102,108,107,108,102,100,109,114,95,94,105,110,100,96,110,98,104,106,99,110,101,112,107,104,103,108,105,109,120,113,119,111,113,112,104,112,114,109,71,123,99,92,106,99,101,113,112,99,111,110,92,104,96,108,110,115,100,110,94,105,105,101,117,102,103,107,100,117,105,117,113,96,102,109,96,106,101,107,96,107,96,113,103,98,100,103,107,113,102,109,94,105,103,102,90,110,100,107,114,126,111,122,105,99,113,108,104,95,104,104,110,107,105,114,102,72,120,97,119,112,105,111,94,100,101,110,113,104,102,105,105,110,101,103,105,106,100,106,103,103,110,102,99,111,112,103,110,98,106,105,101,96,100,106,114,105,107,96,125,103,103,130,127,94,111,99,104,95,99,113,104,103,113,101,102,118,105,104,91,100,108,123,104,91,103,102,110,111,111,111,102,85,98,85,117,113,105,111,111,105,103,132,106,113,110,108,96,112,98,79,100,117,100,116,119,107,91,110,101,109,114,107,110,115,107,115,99,105,116,111,113,108,103,84,107,102,96,107,113,114,108,107,109,107,100,110,115,107,111,100,103,109,105,111,104,111,106,95,106,108,111,84,115,105,102,100,120,115,104,98,107,113,95,102,119,106,111,107,107,115,108,115,96,106,127,103,110,104,110,111,108,109,102,99,98,98,110,115,112,108,107,102,105,101,103,95,73,99,104,103,111,106,108,114,102,104,98,92,121,98,107,99,110,93,106,101,112,110,105,104,105,107,111,117,98,100,116,104,103,113,111,100,100,108,105,103,104,102,123,100,111,93,106,105,94,107,107,109,91,113,116,107,89,114,110,112,108,103,111,116,103,125,104,107,114,106,110,106,105,103,98,103,111,111,116,107,108,105,102,105,112,102,104,102,121,106,108,108,115,106,90,97,100,105,103,112,107,107,104,113,108,113,117,100,100,99,108,103,102,102,107,99,106,107,110,110,108,102,111,107,101,105,96,96,109,108,110,111,110,103,109,105,86,102,111,92,109,111,106,100,109,106,94,113,121,104,105,106,122,105,103,103,109,118,116,111,114,108,94,113,96,122,101,107,112,110,105,114,109,113,110,98,114,101,100,117,98,116,96,83,113,108,102,104,119,99,101,106,108,105,102,95,104,107,94,106,109,115,111,116,101,112,108,106,110,106,112,101,88,98,103,103,102,103,94,107,103,117,98,117,94,120,104,112,96,109,109,110,100,113,104,64,86,92,117,103,110,110,97,109,107,105,110,101,110,109,105,109,107,103,103,105,102,82,98,103,121,112,105,107,100,108,97,111,100,107,108,103,120,104,104,103,103,107,95,106,107,113,99,96,113,105,113,116,109,110,108,87,101,111,90,115,106,100,98,114,110,98,120,97,90,114,96,106,116,101,97,110,108,106,107, +556.61523,101,103,87,95,102,92,95,116,109,106,104,88,101,88,115,94,104,122,110,114,106,98,104,102,91,102,80,105,103,102,100,102,105,101,107,109,74,100,116,103,90,105,121,104,108,108,95,109,103,105,94,108,121,103,107,96,95,99,107,93,98,107,93,104,95,103,90,102,102,108,101,102,112,108,105,102,99,112,116,101,106,115,104,108,118,102,114,103,100,99,107,97,105,108,95,100,98,97,106,117,94,113,104,117,103,105,109,105,102,102,104,97,104,99,118,109,102,92,104,111,96,109,106,103,105,109,102,95,93,100,109,103,103,100,117,109,94,113,76,101,103,113,94,105,95,113,110,107,112,90,91,98,116,99,102,107,103,107,112,99,108,99,108,96,113,104,100,98,103,99,103,113,111,92,104,109,102,96,101,104,95,121,100,103,103,96,92,102,104,97,91,97,107,108,106,99,94,103,106,96,106,100,108,78,109,92,108,103,115,80,104,96,113,114,99,103,103,103,99,114,88,111,102,111,95,109,103,104,113,110,102,102,111,112,101,100,99,113,105,94,95,99,106,105,94,91,103,109,95,112,105,112,101,115,99,102,101,113,92,111,108,108,78,111,105,100,111,108,101,92,94,97,108,100,111,101,97,100,102,113,103,105,116,95,102,104,105,107,95,110,99,112,108,104,109,112,103,100,109,129,92,107,101,96,95,100,95,98,105,101,91,106,105,108,104,111,103,108,105,100,102,113,80,102,101,99,108,99,109,105,109,104,111,99,107,97,87,97,112,98,80,100,105,102,102,96,108,71,95,124,105,99,110,108,105,106,98,98,104,108,104,94,93,99,105,101,107,132,104,90,112,109,115,110,100,101,100,113,103,116,100,109,99,105,108,88,109,101,108,107,107,98,96,108,110,94,87,100,96,106,100,94,98,107,88,108,98,112,102,117,104,95,100,105,99,91,104,102,105,100,107,100,98,110,111,102,105,90,105,105,98,104,101,99,121,109,101,114,106,107,99,104,103,99,106,102,87,103,103,110,105,109,102,101,106,100,121,93,95,109,98,100,92,106,102,109,95,95,105,108,107,97,101,104,101,90,112,97,92,110,113,115,108,93,97,66,106,105,105,113,97,117,112,100,75,106,110,112,121,99,116,110,109,108,102,103,100,104,99,109,108,111,100,95,102,110,107,112,111,98,111,112,108,108,99,108,107,102,110,99,92,113,100,103,82,104,109,105,109,116,101,105,97,100,107,122,113,116,105,106,105,107,110,101,99,99,111,105,109,106,99,106,108,99,111,104,111,114,106,104,106,106,106,104,97,113,105,94,105,94,104,101,111,96,108,108,109,106,107,108,107,114,99,99,110,109,96,115,116,108,121,100,102,100,106,104,109,108,99,90,103,117,111,108,105,106,101,108,104,98,87,116,85,99,99,105,106,101,102,105,102,114,104,108,106,105,104,96,114,112,103,105,103,105,118,93,106,92,99,111,106,99,111,93,102,98,91,111,112,104,114,116,110,107,102,113,106,87,84,97,122,94,95,92,103,102,103,103,112,121,112,108,100,103,106,104,90,104,108,98,118,102,109,117,112,103,107,111,105,102,94,116,95,95,112,95,104,100,110,91,125,91,99,102,97,107,110,100,96,103,106,105,96,109,107,105,101,105,100,122,92,99,91,109,89,96,95,102,109,104,102,94,85,116,103,95,98,109,98,101,91,107,109,100,92,100,103,106,103,100,103,100,110,109,87,103,90,95,98,94,97,113,105,108,107,106,103,103,100,100,95,103,106,104,100,104,116,111,90,82,99,107,106,104,102,109,116,99,97,110,92,106,100,109,112,104,98,102,92,97,107,98,106,104,109,103,94,108,100,111,107,103,102,99,107,109,101,116,113,119,114,99,104,100,101,109,116,101,91,107,101,107,105,95,91,103,107,108,92,108,99,95,83,99,91,113,102,108,108,112,105,109,89,104,107,99,94,94,100,109,108,95,102,106,110,103,110,100,107,98,96,102,92,94,102,94,99,110,109,111,108,129,99,100,102,99,111,104,102,94,95,100,114,120,102,105,98,94,88,117,102,96,121,91,103,95,97,108,100,102,107,101,105,95,110,104,102,101,117,102,95,90,99,94,98,84,97,102,95,97,112,94,102,91,107,90,95,103,110,111,104,111,108,103,87,103,106,116,103,99,96,105,116,106,109,103,107,105,106,92,94,106,95,110,118,102,111,100,104,102,108,112,100,106,109,106,106,108,108,102,107,102,108,100,109,90,111,101,105,112,87,114,98,96,114,109,102,112,103,115,94,94,105,110,107,105,93,93,108,105,111,118,102,102,105,109,102,104,111,95,111,112,105,110,112,96,93,112,129,120,141,124,131,154,156,163,126,122,139,132,128,147,140,112,129,121,108,107,113,101,98,108,113,107,100,89,94,97,105,92,99,106,92,98,92,111,110,109,100,102,94,90,84,100,92,104,110,104,101,106,98,98,107,105,102,106,98,106,112,109,101,100,106,107,100,104,105,105,119,108,110,112,99,98,108,102,102,83,107,110,107,102,96,104,99,103,96,113,86,108,105,67,102,97,103,102,97,87,99,112,106,99,104,104,99,107,106,105,110,102,102,97,107,116,102,96,107,103,102,110,106,101,102,103,110,107,105,104,114,91,105,94,111,104,102,105,108,95,106,113,92,118,97,112,110,109,114,96,105,111,122,111,110,99,109,108,114,90,108,108,105,96,99,92,102,107,100,89,110,105,96,110,111,106,102,109,114,94,103,104,99,108,108,102,102,108,106,105,102,104,108,98,102,108,116,110,105,106,108,105,105,94,106,98,104,110,100,108,101,92,101,113,90,105,91,109,111,96,99,107,119,111,102,98,113,99,107,110,98,105,112,104,108,104,100,101,93,100,114,107,104,103,111,106,86,114,94,93,105,108,101,116,104,95,95,107,111,105,112,127,112,112,87,105,106,106,96,102,127,105,108,101,103,102,108,112,110,98,79,108,103,111,103,107,105,100,103,108,97,79,99,104,100,106,109,85,95,103,102,103,112,102,95,87,104,108,110,112,102,101,106,103,104,84,97,99,95,100,97,115,104,102,120,102,95,97,105,112,116,95,111,104,105,104,109,104,88,102,106,103,101,101,95,91,101,102,95,111,108,99,92,103,118,109,109,109,103,108,112,96,91,99,90,91,103,116,104,100,109,96,102,102,113,101,105,100,92,104,112,85,102,99,97,108,96,94,112,100,90,93,112,101,113,97,105,100,120,116,96,102,86,116,104,102,104,110,99,110,121,102,103,90,99,116,92,106,101,98,101,95,117,116,91,104,108,105,102,95,94,99,94,105,95,65,90,107,100,95,110,94,97,103,90,104,103,100,108,116,118,104,110,92,104,123,96,118,99,97,106,104,118,101,109,108,98,102,104,94,98,98,97,91,92,89,87,102,98,111,101,104,106,103,106,134,102,99,108,116,114,105,116,113,102,94,107,105,86,99,125,96,116,119,99,111,89,98,99,96,102,97,106,95,104,122,100,99,99,86,99,109,105,105,102,97,105,98,107,105,112,111,110,97,101,113,88,95,113,106,102,94,103,98,106,108,99,103,113,96,100,104,98,97,106,103,95,106,129,121,107,100,99,109,115,103,105,118,103,93,108,102,108,109,87,108,104,113,96,100,99,84,104,128,92,105,92,92,119,105,109,105,101,97,107,112,90,108,103,101,109,84,82,104,104,95,105,99,98,97,102,90,97,98,100,98,106,100,102,101,102,91,110,104,103,106,96,103,106,101,116,94,96,101,96,104,102,99,106,109,100,109,111,100,110,86,105,109,108,106,104,104,101,114,95,68,104,99,118,106,103,101,95,96,94,106,102,96,95,111,101,91,98,99,104,102,117,106,106,105,92,106,93,99,99,100,94,104,116,98,103,91,101,90,112,110,107,103,105,99,100,106,108,98,100,101,112,98,104,94,106,115,100,95,104,114,97,103,114,90,101,93,97,102,109,116,103,104,108,106,115,119,103,100,109,109,113,98,99,100,103,103,104,98,97,102,104,100,120,100,101,92,101,102,111,97,90,106,85,97,106,105,102,128,91,114,92,102,112,103,111,76,106,104,91,103,115,107,109,98,99,105,107,99,102,108,96,107,108,95,99,98,116,112,81,105,98,108,108,101,109,110,112,105,104,107,102,99,96,99,109,111,104,87,106,99,114,101,93,101,99,103,110,96,96,93,95,111,107,113,108,112,110,95,104,100,100,102,113,103,105,95,97,108,103,94,98,103,92,98,102,102,108,109,97,99,109,108,101,106,95,103,112,107,102,98,98,113,96,104,101,109,108,99,115,99,102,105,102,102,95,87,100,100,108,106,100,88,116,102,93,106,94,113,102,102,106,103,101,87,109,96,102,91,97,101,94,108,99,103,106,105,85,102,109,99,120,79,104,96,107,107,102,99,106,102,106,105,101,117,98,96,97,91,103,116,95,99,109,109,118,70,109,111,98,113,110,106,103,109,104,88,102,99,107,106,99,104,94,103,91,99,115,95,109,105,103,99,109,105,106,107,112,108,117,105,100,103,96,103,97,102,106,111,99,105,98,112,97,72,106,110,98,101,95,95,100,105,106,102,112,89,103,97,100,91,102,121,109,117,98,98,102,110,108,104,104,105,83,101,107,100,97,101,108,104,100,99,115,100,105,109,104,80,104,109,112,104,100,108,98,95,112,106,99,104,104,103,99,102,102,104,98,107,103,95,99,97,101,103,101,105,100,109,105,105,113,99,103,101,112,100,110,102,97,103,97,106,98,105,104,103,120,105,108,103,111,95,101,98,115,98,89,100,85,97,100,100,104,90,116,81,97,103,110,96,111,99,117,91,99,112,102,98,111,115,102,99,76,92,116,97, +556.7561,124,100,106,108,96,102,89,111,85,106,99,102,108,102,98,103,97,104,116,104,99,99,104,110,99,99,104,88,108,111,102,101,100,100,103,100,113,103,106,102,108,105,105,98,98,106,100,100,111,112,109,124,95,104,90,95,94,114,106,95,91,108,93,96,79,108,110,102,105,96,111,103,98,69,102,104,107,110,88,104,83,102,92,100,108,108,99,107,96,100,112,97,110,99,106,99,94,87,114,102,101,99,97,97,94,104,102,100,100,97,106,106,114,99,104,102,101,114,95,103,105,104,98,110,101,116,122,98,96,103,97,109,108,111,106,100,80,109,105,110,106,108,106,102,92,110,105,97,103,102,111,108,100,113,111,91,107,99,97,103,105,102,108,105,105,99,100,93,111,96,100,102,96,101,101,105,102,108,108,109,113,103,90,127,98,99,91,103,101,87,92,99,106,102,103,106,107,86,107,107,103,104,109,103,110,105,106,81,113,97,101,109,114,108,103,72,93,102,101,102,91,107,101,107,100,104,101,99,99,111,97,99,103,100,107,105,106,109,126,104,94,96,103,111,98,89,101,109,93,108,108,105,103,106,103,113,95,99,100,94,97,121,100,102,101,85,123,103,106,110,101,100,109,98,114,102,99,119,86,102,104,109,96,74,104,97,91,104,108,107,102,102,103,105,116,95,101,105,108,109,106,103,108,111,105,103,99,101,94,102,103,103,100,116,106,93,119,98,99,103,106,108,104,106,105,109,97,90,93,102,110,101,106,103,100,102,130,91,103,94,98,110,113,101,107,107,92,101,108,101,106,107,122,112,105,105,100,119,109,115,113,101,100,109,112,102,102,100,96,112,101,104,113,105,98,94,106,110,109,106,98,99,102,112,104,100,110,99,118,103,104,93,89,95,103,102,105,101,99,103,138,107,118,111,115,100,89,107,102,101,98,101,108,91,98,104,102,115,107,103,102,77,106,108,98,110,101,89,103,114,98,101,95,95,113,109,106,109,101,103,111,105,104,111,90,99,121,102,108,108,101,104,111,102,98,104,99,100,117,106,106,96,99,102,98,108,97,117,100,96,100,106,102,88,109,94,100,107,123,105,111,110,119,105,98,101,107,106,99,99,106,104,104,88,100,99,92,79,109,112,107,100,98,111,98,105,86,104,105,111,107,91,102,103,99,107,104,101,101,109,103,107,100,113,107,110,120,116,106,92,104,96,102,113,106,105,107,99,101,121,90,111,97,110,106,98,108,97,104,103,111,108,99,104,103,112,100,115,97,103,109,108,93,103,106,114,103,108,100,97,102,111,100,116,107,103,119,101,102,107,104,98,94,96,98,117,128,111,106,100,99,98,106,107,111,106,105,95,109,101,105,102,100,100,103,111,106,101,127,105,97,109,103,109,114,109,95,92,105,116,94,113,101,106,109,107,104,119,105,106,109,91,101,98,115,104,100,95,111,106,112,94,85,101,99,92,115,97,101,104,108,107,111,109,105,101,113,111,98,111,110,98,115,108,113,98,95,95,105,101,114,116,98,108,73,100,106,91,108,97,99,109,113,83,96,107,112,95,108,108,104,100,103,103,101,114,112,117,116,105,77,97,109,96,111,116,103,106,105,97,108,108,118,101,107,103,94,104,109,105,97,101,106,97,103,98,99,82,119,103,100,100,102,106,102,108,101,105,104,110,102,101,105,108,105,108,117,99,104,90,106,103,103,102,110,114,112,110,98,108,102,105,101,110,99,97,105,109,105,87,100,96,103,106,97,95,109,108,94,100,113,119,117,97,93,99,100,104,98,99,116,107,116,108,115,112,103,103,103,99,98,123,107,109,116,107,101,101,97,120,114,96,108,101,108,96,102,100,111,100,108,117,99,113,109,111,101,108,104,104,103,94,91,103,87,117,94,99,113,105,102,101,118,107,108,99,97,90,100,110,110,88,112,112,110,107,114,103,104,118,97,96,106,98,100,98,99,108,104,106,106,112,101,98,109,95,119,100,102,94,104,109,109,105,128,96,94,96,101,101,126,108,104,110,93,108,111,106,87,100,107,111,125,108,86,98,101,98,104,102,105,105,95,105,99,101,94,106,106,105,97,106,108,114,99,98,109,107,111,97,115,102,97,102,96,110,108,100,106,119,107,91,110,94,113,114,104,102,98,104,100,101,92,106,111,106,114,105,91,103,105,107,96,101,116,95,99,113,114,105,96,105,109,111,104,104,113,110,94,105,109,120,105,110,110,110,100,106,109,100,103,105,74,90,100,107,97,109,104,100,108,106,99,95,103,94,108,105,105,107,91,105,109,117,107,107,103,95,105,107,118,108,108,99,99,108,110,108,100,102,108,102,109,110,114,108,128,114,106,109,136,132,144,169,162,134,143,163,130,127,121,138,141,160,124,139,128,126,105,101,95,106,116,107,113,110,102,101,100,109,92,118,112,108,96,105,108,108,102,109,118,99,104,117,104,111,105,106,121,104,114,101,99,102,92,113,109,107,107,95,105,102,111,90,95,111,112,108,109,98,97,110,103,88,99,98,103,108,94,107,102,104,95,119,92,111,103,98,102,95,101,116,113,100,106,115,107,100,96,87,101,103,104,108,100,103,105,102,118,102,101,110,119,107,105,99,102,102,104,99,111,87,110,101,101,103,98,106,107,108,110,109,97,99,99,107,106,103,111,106,96,113,118,98,106,112,106,105,98,94,100,93,98,112,111,119,113,89,98,109,101,107,96,95,104,92,108,108,108,104,104,101,108,105,112,84,126,100,95,101,110,108,98,104,100,110,114,105,103,108,112,113,90,104,97,99,97,96,103,108,108,107,103,104,105,105,99,104,108,104,108,102,109,104,107,97,102,115,101,118,99,102,105,116,99,107,109,108,108,110,108,102,107,109,98,102,104,104,96,97,99,111,106,94,104,110,103,99,113,106,103,107,98,108,118,113,105,104,95,108,102,106,113,109,107,95,102,106,104,105,99,107,101,101,109,86,103,117,105,94,103,117,118,108,107,101,114,97,105,109,108,100,94,106,107,99,108,113,107,111,93,112,107,110,115,105,99,99,105,99,91,109,107,107,110,88,105,93,109,110,104,105,115,104,106,94,83,88,106,104,136,109,110,106,107,105,96,109,114,93,96,103,105,101,97,101,96,99,101,108,101,80,100,112,97,96,106,110,109,111,114,108,107,117,110,104,109,104,127,104,104,103,105,103,104,101,104,107,94,106,99,109,104,103,105,108,98,105,103,116,105,114,122,105,111,125,92,109,116,111,90,99,104,100,136,111,112,96,110,99,99,101,109,101,110,104,106,93,101,96,110,94,115,107,101,105,107,95,104,114,102,109,105,91,105,104,117,108,115,107,96,94,109,109,99,99,75,119,115,95,104,94,100,108,91,104,125,115,111,99,93,129,113,100,100,90,105,98,97,117,107,108,96,113,105,107,102,110,113,95,112,107,91,97,98,107,110,108,96,109,103,109,123,103,100,106,104,107,106,83,119,100,121,105,94,109,95,116,106,104,111,94,87,91,106,107,106,112,114,99,103,105,105,105,110,105,96,104,100,106,116,101,102,106,76,95,109,110,99,97,110,110,112,105,109,107,104,100,110,105,109,98,114,103,94,113,114,108,108,100,103,101,110,103,104,106,101,100,101,105,113,101,107,99,102,93,104,102,105,101,104,111,97,106,108,104,105,105,117,109,112,103,106,120,107,102,105,107,107,100,108,116,99,97,125,106,108,106,105,99,108,117,103,94,103,85,106,113,114,111,101,106,98,104,105,108,107,97,107,107,107,107,104,101,103,79,98,104,99,92,105,104,102,106,115,103,99,113,103,116,97,102,103,99,100,116,105,113,111,104,101,106,102,113,116,106,103,96,100,98,96,105,93,106,103,96,110,108,109,110,105,107,107,112,106,106,120,101,112,133,106,105,96,109,120,113,108,104,108,104,101,107,102,104,94,101,103,105,102,114,104,105,81,91,101,106,114,109,96,103,109,106,101,101,112,108,100,96,96,98,111,101,116,100,117,97,121,98,104,102,117,105,104,105,110,116,113,113,118,101,104,103,109,110,108,105,107,103,87,112,113,102,111,110,91,107,97,88,109,112,106,100,95,114,103,112,111,108,112,102,108,98,98,94,103,103,107,110,104,106,104,99,114,99,102,110,86,107,95,136,87,100,107,104,97,106,95,113,115,112,102,99,102,91,94,95,109,105,99,96,110,107,107,106,112,110,118,96,110,116,101,105,108,98,87,119,99,101,105,90,101,105,106,111,108,99,120,109,94,113,96,110,104,94,108,101,108,98,93,106,97,114,103,98,106,106,108,100,99,115,110,107,120,103,105,107,107,123,112,102,93,93,109,103,93,106,100,98,112,104,103,106,102,105,106,114,106,121,102,102,96,90,101,101,103,116,97,90,101,102,105,106,98,110,109,106,97,94,105,108,108,114,113,109,111,103,95,97,101,103,105,109,110,101,109,96,100,115,101,112,97,117,110,104,109,120,108,86,97,90,94,102,105,101,102,104,102,101,104,108,97,100,101,103,116,107,98,93,97,106,105,97,119,111,99,117,104,101,100,114,102,98,107,98,110,99,98,71,106,131,106,105,110,120,110,107,110,111,104,102,110,107,100,110,87,97,93,105,111,93,84,106,91,102,109,102,89,98,105,96,113,95,108,113,77,100,106,117,86,98,130,137,111,83,108,77,110,109,109,94,87,70,101,101,97,113,104,84,112,109,124,111,91,103,113,112,108,109,101,108,100,99,103,109,100,110,111,122,105,103,99,96,117,98,97,103,131,110,105,109,107,96,97,103,98,97,112,99,87,111,99,120,100,96,102,103,107,120,105,102,97,98,102,109,108,103,117,100,104,102,94,101,113,107,105,108,122,118,87,83, +556.89691,112,97,87,92,98,110,106,86,94,106,103,99,101,108,109,96,102,104,119,100,98,109,99,91,99,112,98,107,100,108,82,100,108,107,116,102,99,104,96,100,81,114,107,89,104,103,100,110,106,102,98,115,92,100,108,96,100,115,111,93,101,112,102,107,88,110,103,97,105,102,99,101,103,108,100,111,96,115,99,112,99,101,102,100,97,87,90,109,112,100,98,106,107,97,103,104,102,107,91,100,95,95,92,93,108,99,109,121,105,99,108,103,107,100,100,104,100,108,105,109,101,103,94,105,97,110,88,88,111,99,114,107,112,100,103,100,113,98,90,105,104,113,100,111,101,105,114,97,98,86,103,100,104,99,94,109,103,109,103,106,91,93,105,115,117,111,111,103,105,82,108,109,105,93,94,72,102,104,101,96,97,113,104,115,108,94,106,94,106,96,99,103,108,111,100,98,96,90,93,108,99,104,103,111,110,98,97,101,102,117,102,106,104,98,118,91,98,106,96,111,115,107,105,105,94,97,117,100,105,99,100,104,108,98,106,98,100,117,88,98,112,102,112,112,87,102,86,124,87,98,101,96,102,101,109,115,92,98,101,114,83,114,104,116,106,100,90,104,104,100,111,105,104,115,95,107,100,97,101,95,106,94,84,111,102,100,110,104,101,106,110,104,105,95,106,99,104,101,90,102,106,103,98,111,106,115,105,109,109,102,102,112,108,102,104,89,107,106,106,99,98,97,106,106,113,101,105,103,106,96,109,86,112,109,103,108,109,97,106,114,108,102,69,102,98,103,104,99,111,101,101,108,102,96,103,118,118,107,92,105,101,100,116,81,108,91,100,110,108,102,99,105,113,113,96,91,102,106,107,112,104,96,102,107,110,105,105,98,100,90,110,101,93,105,96,108,93,87,103,114,101,97,98,83,104,88,94,116,102,100,90,88,113,109,107,103,102,99,110,75,109,101,104,131,104,101,105,94,101,99,94,98,118,106,126,95,107,99,98,109,119,104,100,107,102,96,101,101,99,112,96,106,103,106,107,107,97,100,105,106,103,99,122,114,102,110,97,98,104,96,108,105,93,101,104,109,96,108,95,110,99,101,102,96,91,79,108,110,93,105,110,111,105,114,103,114,103,114,108,114,104,96,108,105,98,108,88,93,103,99,100,117,106,109,113,109,93,105,113,99,75,104,99,107,102,101,121,103,94,95,107,100,109,99,108,113,102,106,117,116,92,97,97,95,110,96,115,106,91,111,110,88,118,117,112,97,98,97,101,105,101,109,96,100,101,97,108,101,95,99,94,99,102,100,105,106,100,92,103,109,101,95,106,101,113,109,106,103,98,108,104,101,99,105,114,117,110,109,99,120,108,101,102,100,102,107,103,110,100,137,94,98,114,103,95,106,106,101,96,103,107,111,109,107,108,101,106,106,104,103,109,116,98,106,88,105,104,90,108,72,117,105,95,124,105,112,99,108,103,104,99,110,105,104,90,103,111,109,94,135,117,109,95,116,105,113,105,105,105,105,97,103,105,103,81,106,104,101,93,106,91,109,89,96,97,105,98,93,108,110,100,115,109,104,104,109,92,98,104,96,99,105,99,97,118,102,106,111,101,98,108,94,108,103,91,114,95,101,114,117,107,108,95,97,100,97,101,94,105,108,110,114,110,95,109,88,103,83,116,106,103,101,85,105,115,104,97,107,103,103,113,113,107,95,107,104,70,79,107,93,102,118,107,105,100,100,93,106,105,100,108,103,106,111,105,110,103,104,95,98,119,117,109,107,113,117,110,114,101,117,96,103,103,111,105,115,97,109,121,107,104,102,103,96,97,116,103,101,103,110,106,104,105,102,106,96,102,108,105,103,102,102,106,113,110,99,107,112,105,95,114,103,108,113,90,93,105,113,117,108,98,87,102,112,106,99,102,104,102,92,103,80,100,117,108,113,112,99,102,98,102,110,98,103,96,105,101,112,108,109,99,107,105,103,96,99,104,101,102,130,115,115,109,102,105,96,109,105,99,109,109,109,111,123,109,73,119,102,100,98,111,104,111,101,99,112,98,97,105,104,98,96,104,105,91,100,105,111,100,113,86,109,108,98,112,101,104,101,110,104,111,106,101,108,95,99,92,106,113,91,95,112,97,124,108,100,109,112,116,113,104,99,117,90,109,105,101,98,98,108,105,108,101,114,104,112,79,116,102,108,101,99,116,114,98,112,107,103,100,98,109,103,102,105,112,108,109,105,117,119,113,93,100,116,108,95,103,108,106,106,116,107,94,105,100,106,107,103,103,99,110,106,100,110,109,107,104,102,108,110,117,103,102,104,102,115,97,111,99,105,99,114,109,110,114,97,108,125,114,137,146,138,158,176,160,160,140,143,142,141,142,152,112,137,117,128,122,131,106,95,109,100,105,102,105,107,101,115,114,92,70,114,107,102,96,115,95,105,101,101,106,94,102,103,104,108,108,100,109,116,105,100,96,96,103,107,107,101,106,98,109,83,117,103,104,104,94,109,101,108,110,118,108,120,87,77,72,109,89,112,103,94,104,105,100,107,115,74,120,89,101,116,104,98,98,112,98,97,91,98,96,96,115,111,98,108,116,95,109,114,109,103,128,100,100,102,102,102,107,109,105,107,115,104,101,110,112,111,123,83,100,104,108,106,104,106,95,103,104,90,100,102,105,106,111,98,104,103,96,103,99,93,103,96,91,117,112,90,121,104,99,101,106,101,102,107,107,118,100,105,112,111,101,111,105,116,104,114,106,101,96,112,93,129,107,109,106,101,111,106,94,105,99,103,104,108,106,104,117,112,109,99,108,101,106,100,100,116,92,106,102,96,105,112,106,69,94,117,99,114,113,110,99,103,106,108,123,105,106,111,102,99,116,113,109,102,89,108,72,117,109,100,117,107,90,112,100,108,103,122,107,108,112,107,108,116,105,114,92,106,99,100,111,113,107,104,109,116,99,106,94,96,95,107,111,108,100,103,106,97,102,113,108,107,129,107,87,109,98,106,104,98,104,104,100,101,102,106,94,93,99,92,105,107,96,101,111,104,113,114,106,95,112,101,121,104,110,106,109,92,98,95,99,86,108,106,109,100,106,106,106,101,98,96,115,103,94,79,87,95,112,102,99,94,98,111,108,99,101,109,97,94,91,115,99,94,98,105,101,105,103,110,102,97,97,98,110,107,102,96,109,96,104,106,98,94,95,101,108,104,92,117,104,111,105,106,102,96,112,112,102,111,102,115,105,111,114,103,92,109,105,96,106,109,110,99,101,105,90,95,96,102,97,96,112,94,109,128,98,114,112,111,107,110,91,105,101,101,87,106,105,105,113,103,109,92,108,100,109,110,99,108,105,112,103,105,105,100,92,100,111,95,104,107,103,111,101,106,101,91,103,103,102,103,102,105,99,99,116,112,111,90,113,91,105,116,114,94,101,114,104,104,110,97,110,113,120,103,95,102,98,103,111,98,101,101,119,96,119,116,98,111,104,105,112,111,112,106,97,103,103,107,115,112,102,100,104,99,115,102,96,107,121,112,100,94,112,100,97,113,114,110,104,117,105,101,111,105,101,65,97,105,96,108,101,103,105,104,113,97,98,106,110,79,104,102,106,117,104,94,115,112,109,106,98,113,105,96,107,103,108,98,116,98,101,102,108,119,113,96,98,117,99,94,113,97,66,105,105,116,99,94,100,101,102,107,102,101,102,111,101,106,115,105,128,100,101,112,109,121,108,99,107,87,103,105,112,101,105,110,107,93,102,107,99,116,103,89,108,99,103,99,106,107,103,110,108,113,97,109,109,107,106,99,104,110,109,96,102,109,93,105,105,103,96,99,95,104,106,97,100,104,98,119,101,100,103,103,100,100,100,103,101,102,103,105,94,106,109,97,104,98,95,107,101,89,92,103,115,116,101,102,110,110,113,91,111,102,108,96,100,99,112,108,106,100,112,107,105,104,95,107,107,100,106,111,107,97,85,104,93,102,110,98,114,101,88,106,101,105,111,107,102,104,91,118,117,96,103,111,98,104,101,103,104,110,114,121,98,95,96,98,98,102,98,98,107,95,107,94,106,103,80,94,101,125,95,113,100,104,93,112,109,108,111,107,107,117,107,102,103,106,116,96,101,108,107,98,109,101,104,93,91,92,101,102,111,106,101,96,104,99,112,103,109,116,98,123,99,101,104,100,105,100,104,105,95,111,108,96,106,92,85,94,96,105,102,104,98,91,110,100,95,86,107,100,106,107,106,103,115,102,108,97,85,109,104,89,98,99,112,98,106,101,96,102,97,109,106,109,103,105,108,93,108,90,107,105,108,104,110,96,106,107,102,102,110,94,107,104,99,103,113,102,101,103,108,99,109,105,103,95,96,108,115,103,110,109,97,105,97,96,102,105,95,113,100,79,99,94,101,94,107,102,109,109,107,103,113,112,103,107,101,108,95,100,110,110,99,107,103,98,99,111,107,118,106,98,96,111,97,105,100,110,105,106,110,105,98,98,103,95,91,101,102,119,94,83,104,84,101,104,119,98,115,105,93,101,107,102,91,101,108,98,101,100,107,102,100,101,99,98,107,107,99,111,109,109,105,100,100,106,107,103,94,107,111,104,104,107,105,106,83,96,102,104,105,117,113,99,95,107,101,105,97,113,108,105,102,99,95,104,98,108,103,102,110,97,94,74,109,100,109,98,97,106,105,101,90,107,97,110,88,107,98,106,120,98,98,108,110,98,141,114,96,120,91,109,104,98,105,94,104,137,112,107,99,97,93,113,110,103,100,89,112,103,109,110,104,104,96,100,115,96,102,105,96,111,107,115,93,106,106,125,105,108,92,97,105,103,96,90,102,97,87,113,103,103,96,88,100,98,109,98,102,92,110,98,97,87, +557.03778,106,107,108,110,109,108,105,102,104,109,106,98,111,91,75,105,108,121,116,71,104,106,101,110,96,116,95,104,99,111,111,109,112,104,112,108,92,107,102,118,100,126,109,99,104,108,102,99,105,103,110,106,100,106,107,91,111,107,109,94,99,123,104,76,112,103,104,103,106,108,107,103,109,109,111,116,106,113,107,109,117,115,98,113,106,108,100,98,120,95,120,116,103,100,105,105,99,88,114,100,98,111,119,100,105,113,121,103,90,99,106,117,111,101,87,110,103,104,110,115,107,96,101,111,113,109,119,103,115,107,105,125,106,111,109,108,108,102,116,114,106,103,103,115,111,97,108,112,90,111,104,102,115,99,112,115,116,95,107,103,107,111,99,97,105,113,114,109,96,99,117,106,97,93,108,103,108,106,100,102,105,112,103,98,103,99,86,109,113,100,105,105,111,115,103,116,109,99,98,104,106,110,109,101,107,105,114,114,96,112,102,103,114,102,118,110,104,112,117,99,118,107,110,108,99,106,95,110,102,108,96,103,126,115,96,106,97,113,113,94,101,110,112,97,106,101,108,111,113,113,100,110,108,100,100,123,105,108,121,103,96,110,100,118,97,112,112,96,111,118,111,122,100,99,105,107,101,99,104,95,118,108,101,115,113,104,104,99,108,106,128,102,112,124,112,113,117,112,109,110,104,102,115,109,121,118,106,114,114,108,97,109,115,107,117,106,108,107,109,116,116,97,108,105,108,96,108,112,115,116,117,91,102,98,114,99,106,112,104,67,117,111,106,112,107,111,104,107,96,107,119,110,98,110,83,116,113,100,116,108,107,111,117,109,112,108,110,114,101,117,115,139,113,116,129,109,112,118,110,112,113,117,115,109,108,94,100,107,99,110,108,97,101,96,109,103,88,125,113,114,98,102,98,104,104,99,110,104,116,105,98,95,98,117,101,103,107,108,114,96,100,105,70,105,109,101,108,99,96,125,104,107,103,108,109,101,115,118,103,104,110,112,115,95,110,105,103,95,104,107,118,100,115,112,109,109,105,107,111,114,95,117,106,103,102,104,117,109,104,105,101,62,105,104,108,103,106,97,102,106,105,112,110,108,132,118,109,95,94,102,109,121,102,102,96,122,121,99,121,114,114,103,107,89,108,105,104,105,111,130,99,110,108,110,95,109,105,113,116,101,113,97,109,117,107,108,119,118,109,99,108,121,106,105,106,110,103,112,110,104,100,110,103,116,106,102,111,100,104,113,93,102,110,109,104,100,100,113,106,116,111,122,104,116,104,105,107,100,112,103,105,114,111,105,97,109,113,101,103,102,103,96,96,129,118,108,113,115,111,112,112,108,127,116,113,97,119,84,108,106,101,103,108,97,98,111,113,101,104,82,110,111,107,103,108,116,112,100,122,87,114,104,117,103,103,120,112,102,110,103,109,104,125,101,115,109,105,106,102,107,118,116,104,112,104,107,95,96,114,110,100,114,107,122,119,106,98,116,103,100,124,119,104,119,103,113,100,102,99,97,107,105,110,110,105,101,110,104,120,111,114,107,115,98,109,105,106,112,104,106,109,104,115,117,125,139,100,102,111,92,98,89,106,107,110,98,108,106,116,95,121,101,111,106,109,101,105,95,106,107,105,99,96,118,99,109,102,99,102,114,108,104,109,111,101,99,107,109,105,97,112,102,107,107,107,103,114,109,106,118,109,104,112,102,92,102,118,98,115,107,93,114,98,110,93,110,104,90,104,99,104,106,100,106,114,74,106,84,100,89,107,112,102,106,87,116,110,108,99,113,108,99,101,111,111,108,117,106,99,108,94,103,107,101,127,95,112,109,102,94,118,108,100,96,110,107,107,114,103,113,111,114,115,107,99,114,111,119,108,104,108,117,107,110,109,102,103,85,98,104,112,110,114,99,112,101,104,97,100,105,109,112,94,103,99,116,115,114,98,101,99,100,99,105,110,108,90,107,111,116,103,125,109,124,99,113,113,104,95,108,109,105,113,90,119,109,90,114,105,104,110,106,98,128,112,98,103,112,113,108,109,112,110,115,102,112,104,111,105,127,116,99,120,114,110,102,99,121,92,112,106,111,112,102,105,104,117,108,109,108,95,110,112,108,97,135,102,108,110,109,99,105,112,100,99,97,109,111,94,113,107,111,114,109,89,113,109,103,107,131,98,115,93,106,117,100,100,117,109,103,110,99,114,102,107,125,113,103,112,109,117,107,118,110,113,98,115,96,100,99,115,98,126,103,106,117,100,108,101,115,117,108,106,122,97,99,105,95,106,102,97,101,94,96,108,116,113,120,109,107,92,116,107,108,110,102,120,101,112,92,113,111,114,116,114,109,101,114,122,101,128,168,143,137,162,155,168,127,134,106,110,124,133,124,123,127,112,119,113,105,109,106,115,114,102,108,121,104,121,100,114,103,109,82,103,103,111,110,113,120,108,100,110,105,116,105,105,98,110,105,109,101,107,97,109,103,117,104,111,104,102,113,106,102,101,117,116,106,109,101,101,109,109,107,108,87,91,111,97,111,117,106,107,102,107,115,100,91,107,106,106,127,108,98,100,109,125,101,99,101,107,117,92,110,108,98,118,93,113,94,117,111,106,103,121,95,113,117,101,99,103,98,101,97,111,103,100,101,109,114,115,94,134,98,102,109,119,105,110,108,113,105,93,121,106,108,115,113,76,112,101,103,115,107,108,112,106,110,111,103,110,105,106,98,110,105,119,134,109,106,105,117,118,111,118,112,104,109,113,98,93,108,105,103,100,103,103,99,115,114,102,115,102,113,101,103,108,109,112,110,101,115,109,93,103,111,119,112,111,113,108,105,124,106,110,116,105,96,91,117,119,108,96,109,118,99,103,110,109,102,93,97,100,110,106,102,105,101,107,112,101,101,108,100,120,116,97,105,119,109,101,110,103,99,105,103,111,95,90,112,104,106,101,111,113,117,103,112,105,103,103,116,111,105,94,103,102,120,95,90,109,110,107,120,115,104,106,108,116,107,103,113,106,99,122,106,104,109,99,121,107,110,102,95,101,103,109,117,105,132,107,109,93,103,96,109,109,113,105,109,110,111,107,99,113,93,112,112,104,93,98,100,112,117,94,97,117,87,75,104,109,109,117,111,107,103,93,105,83,103,101,89,114,98,116,104,110,108,85,109,111,101,106,99,99,110,102,92,114,116,113,104,110,98,103,96,98,105,102,107,113,101,108,105,106,102,107,120,115,118,104,111,123,119,112,107,113,104,117,76,114,115,104,98,115,115,106,113,116,106,108,105,102,122,105,102,113,94,102,107,107,113,110,102,115,105,89,108,116,98,104,104,135,110,101,108,98,106,124,113,109,105,100,110,117,76,103,98,114,98,107,102,108,109,110,104,106,102,110,108,108,105,114,113,113,104,103,95,94,104,103,100,104,99,109,108,94,94,98,98,108,112,113,108,96,103,107,102,113,102,119,107,111,88,103,139,102,98,103,110,104,111,107,118,104,113,99,112,106,99,94,100,103,110,98,113,107,113,110,108,104,107,111,95,109,113,101,94,106,107,107,98,105,123,102,114,104,99,121,96,106,106,110,115,100,113,104,109,106,103,103,104,110,109,103,100,110,108,112,116,120,105,121,107,96,102,103,109,98,114,97,89,110,115,105,106,90,106,116,96,113,106,105,102,106,108,110,104,104,116,107,112,103,108,124,107,124,101,119,99,108,104,107,99,113,121,112,106,103,107,110,109,98,102,102,104,99,116,120,109,107,102,102,96,104,109,109,98,133,106,77,96,103,109,120,105,110,112,105,104,102,111,116,99,107,111,117,115,99,113,97,102,104,108,114,107,105,103,112,100,112,110,100,107,95,113,105,98,101,101,97,101,100,105,94,115,104,95,111,84,111,95,117,106,110,95,112,102,116,98,105,105,116,106,91,114,99,109,106,109,111,113,103,106,106,113,104,107,103,93,111,104,100,108,107,99,104,98,105,111,95,100,105,111,109,95,109,107,112,110,109,99,113,97,112,110,112,106,106,114,108,114,114,119,113,103,120,107,110,103,101,100,117,108,94,101,106,111,115,102,104,103,101,111,105,106,111,115,109,110,98,110,101,104,105,98,111,91,105,108,104,100,108,103,112,105,99,104,112,104,112,103,108,92,101,102,105,99,107,101,113,105,102,107,110,110,91,115,107,106,105,117,100,103,108,100,97,110,99,105,100,97,107,112,109,109,106,99,116,95,102,111,109,110,107,107,100,111,104,103,113,107,109,111,104,109,109,108,104,117,112,116,101,97,107,115,103,110,100,106,115,108,124,104,109,103,107,102,120,118,90,113,117,77,109,104,103,100,98,113,109,105,107,126,112,111,119,102,107,98,104,107,113,113,97,100,113,116,114,102,105,95,113,101,88,104,111,104,115,102,117,109,104,103,105,75,98,99,118,107,113,94,114,110,113,102,85,111,113,108,95,104,108,104,104,95,100,105,112,92,112,116,120,85,98,110,108,110,102,108,108,100,97,100,109,112,98,113,112,98,95,116,94,104,103,112,124,97,106,109,102,95,101,110,99,116,107,98,74,113,105,106,113,109,105,103,112,112,106,99,111,100,108,100,122,96,117,102,103,90,105,115,106,105,110,105,104,111,109,103,112,106,108,104,111,106,103,128,104,107,101,95,107,102,111,96,114,101,117,108,92,104,95,95,109,107,125,100,96,100,90,108,106,101,118,108,106,102,105,101,102,112,103,102,120,117,96,105,108,109,108,100,113,115,106,106,104,118,105,104,112,105,103,87,107,111,100,113,113,110,107,106,104,114,102,102,120,101,99,104,102,105,104,100,98,103,100,95,104,103,97,108,106,102,107,101,109,91,113,112,112,125,107,108,113,97,101,105,102,94, +557.17865,105,96,128,99,103,94,109,106,102,107,100,115,111,106,116,106,98,118,96,130,98,100,100,104,87,117,109,108,110,117,105,110,109,107,91,118,116,106,101,107,103,90,105,116,75,97,97,109,103,137,94,91,99,105,98,94,105,108,108,113,96,110,110,92,73,95,96,108,112,102,100,115,101,114,103,109,109,112,108,102,112,103,114,102,113,88,98,112,106,102,98,94,113,101,93,118,103,103,100,107,116,85,102,107,113,105,100,96,100,108,111,111,116,114,107,106,106,103,116,108,99,87,85,108,105,109,106,109,113,109,101,97,95,103,121,103,89,106,119,100,113,107,98,113,108,109,98,108,102,107,104,105,106,92,98,107,107,100,96,87,104,95,116,104,95,104,104,113,120,115,106,113,107,107,110,98,103,105,100,113,104,103,110,104,118,95,102,107,105,99,101,125,106,97,106,106,106,111,101,97,111,103,104,105,103,101,81,100,106,109,98,113,99,98,94,107,86,103,86,97,104,113,105,108,102,119,132,113,100,99,97,107,99,111,110,110,110,105,102,110,106,102,103,114,112,103,102,106,100,105,104,109,106,109,104,109,113,106,100,105,104,114,109,98,101,110,106,117,106,91,96,100,97,116,112,116,114,103,104,93,102,94,106,111,103,103,106,98,109,106,102,113,112,108,107,116,102,101,99,103,106,84,107,112,97,109,108,104,105,122,99,102,110,105,102,104,100,103,101,104,122,100,102,97,100,120,101,96,105,113,108,101,119,113,135,110,107,93,91,99,103,98,96,106,107,116,103,117,108,108,111,102,118,121,117,106,110,109,109,108,104,102,94,104,106,92,107,110,102,109,115,96,103,115,107,92,102,106,108,105,103,90,113,104,106,104,89,99,106,115,114,88,103,109,102,102,101,115,101,109,100,104,106,99,101,114,94,99,98,102,97,106,105,100,104,109,107,99,98,95,108,91,94,105,102,104,112,102,125,124,94,115,111,102,99,121,105,104,99,100,103,101,111,105,106,94,108,100,104,114,103,114,109,114,105,89,67,106,112,86,103,104,102,103,94,106,108,103,105,102,94,97,104,108,109,96,97,105,111,118,117,101,103,105,101,107,99,107,88,104,91,121,108,107,104,106,112,109,110,109,107,118,110,109,114,90,101,108,108,104,119,109,74,112,107,93,99,100,108,100,100,110,108,97,111,97,111,104,107,120,103,118,101,112,99,93,103,102,100,110,114,97,95,91,122,101,113,102,107,116,107,113,106,103,79,108,110,104,112,99,139,113,99,103,107,108,118,107,96,117,117,100,113,110,104,105,106,95,108,105,105,95,122,95,104,100,106,95,103,115,109,109,117,109,105,96,97,105,108,113,111,106,106,106,106,109,105,105,99,116,102,107,125,113,116,98,106,101,111,117,96,100,107,81,102,112,102,98,103,104,117,103,93,101,110,115,102,102,99,98,111,96,112,103,103,102,104,121,104,107,95,106,104,111,107,104,100,108,93,112,108,104,103,110,107,93,101,101,111,95,112,109,108,103,120,97,118,104,108,106,104,104,105,111,103,92,114,107,114,95,106,100,103,110,111,99,97,102,99,93,107,103,100,83,98,118,110,115,92,109,95,107,102,91,104,97,108,95,106,92,109,102,103,97,102,103,105,99,109,107,102,107,113,95,100,109,105,108,98,109,109,93,109,99,104,99,103,101,111,120,108,109,111,112,112,105,114,83,117,108,99,103,93,105,98,115,93,98,112,110,103,100,98,108,108,110,99,109,96,106,117,116,113,92,101,101,94,118,109,129,107,125,109,112,111,104,100,97,99,112,101,109,101,98,103,107,116,103,112,106,103,99,100,90,118,110,111,113,115,100,105,98,105,108,110,108,100,103,124,107,106,107,102,88,105,117,96,101,108,94,71,96,110,110,110,104,98,102,106,98,108,105,102,112,90,108,114,99,102,105,107,86,103,97,105,88,101,86,110,97,100,112,104,108,106,108,106,117,105,102,105,112,100,102,105,110,100,112,101,105,112,119,88,112,113,96,104,106,98,106,125,113,107,95,96,107,91,108,92,106,111,106,111,105,100,79,108,101,99,97,102,108,103,107,106,108,102,117,118,114,105,107,108,101,113,107,101,110,120,108,89,106,108,107,90,106,104,106,95,104,106,101,109,107,113,112,112,115,103,111,109,110,104,102,106,99,103,111,106,118,100,113,101,98,109,98,121,105,105,103,83,109,106,109,107,105,111,105,112,113,103,97,103,115,103,108,104,111,105,121,110,100,99,112,106,107,112,116,92,95,118,109,113,102,113,96,106,110,108,103,109,109,103,113,105,125,112,113,108,116,116,87,116,115,107,103,106,113,126,125,111,150,156,135,151,191,142,124,138,149,158,130,106,124,128,103,118,123,121,112,112,113,115,106,92,104,105,76,113,85,77,115,116,117,98,104,104,97,97,97,103,102,94,104,113,95,91,87,109,103,112,106,113,105,92,90,100,116,103,102,108,107,124,104,106,103,102,101,104,98,95,115,102,95,118,101,110,109,114,91,104,106,91,104,91,107,113,108,95,96,115,102,107,86,98,102,106,108,99,101,102,93,104,109,103,110,107,103,121,98,112,92,105,129,122,99,107,107,107,105,108,96,81,98,111,114,96,112,102,99,95,110,106,106,99,113,96,103,105,104,110,102,97,96,105,113,91,96,105,113,100,103,104,94,116,97,102,96,117,95,99,73,110,105,94,108,97,103,106,97,106,97,120,112,104,100,105,111,106,92,109,107,110,109,119,98,103,115,100,118,94,109,100,103,92,102,137,110,104,119,94,103,107,103,102,87,99,110,101,105,98,113,116,100,110,109,109,98,107,112,102,107,99,119,114,98,117,100,104,109,99,119,110,129,108,102,103,102,100,91,104,98,116,101,112,108,106,103,119,99,100,109,98,109,113,103,93,100,113,110,100,117,101,101,92,110,113,111,112,98,105,105,120,101,108,111,106,115,114,87,101,101,102,105,104,97,114,115,114,101,98,101,110,113,97,88,114,109,114,95,101,109,111,112,102,103,101,118,94,100,91,115,104,99,90,110,109,107,96,106,106,108,105,105,111,106,112,98,110,103,114,96,105,124,105,101,94,99,95,99,87,99,111,109,110,106,90,96,97,104,99,105,95,120,105,102,103,97,101,108,108,95,110,104,100,98,106,104,103,102,109,109,107,98,102,113,96,103,103,110,106,109,109,101,116,107,103,106,96,111,113,106,99,117,100,104,96,113,104,109,108,79,113,105,103,99,95,97,116,103,102,113,111,102,98,121,135,97,106,108,107,116,101,109,96,108,92,77,102,98,120,119,105,116,109,102,103,109,109,95,93,107,84,99,108,104,105,109,94,103,98,112,122,104,109,89,104,94,107,91,104,103,114,100,107,108,112,115,104,115,120,102,117,102,107,100,106,98,105,111,103,107,121,96,100,105,99,105,108,98,105,104,111,98,105,89,113,76,110,103,95,98,67,101,111,100,102,107,104,107,100,101,109,123,98,106,99,105,98,103,105,93,98,106,113,105,98,102,96,113,92,103,105,113,111,104,102,96,113,96,108,96,106,110,107,96,111,98,113,104,105,102,95,107,129,83,95,106,94,106,94,103,109,94,106,100,109,95,113,113,96,117,99,98,93,99,110,105,105,102,101,95,104,109,98,108,107,115,107,100,127,103,102,116,103,93,101,112,111,94,104,114,105,109,109,102,107,107,97,102,91,101,112,103,104,112,107,96,108,103,119,95,106,104,104,95,104,99,111,107,105,100,102,111,120,95,110,102,95,105,108,108,106,115,103,107,121,106,97,105,108,104,116,96,124,116,103,103,106,97,105,113,106,106,108,102,104,108,109,113,91,112,105,113,108,105,102,102,102,99,106,91,95,116,92,112,106,84,86,117,95,113,106,102,110,102,102,101,107,106,99,116,98,115,95,102,103,104,100,103,111,104,90,117,99,117,108,127,98,103,100,111,99,106,103,100,83,94,115,103,108,92,115,105,106,99,109,114,109,98,95,98,96,101,107,125,87,113,106,104,117,101,117,99,98,106,112,104,108,102,109,104,108,109,107,97,100,124,102,113,96,106,104,92,102,112,112,101,108,107,111,103,97,109,96,99,96,102,104,111,111,103,95,97,111,106,117,103,111,90,110,112,107,97,108,107,95,110,109,103,102,95,97,106,114,112,111,104,106,109,107,98,106,106,97,94,110,109,106,98,102,91,111,100,104,103,83,120,110,108,97,101,114,103,104,112,102,100,102,112,100,98,99,99,114,106,116,101,102,109,99,112,102,103,111,106,112,89,95,102,102,98,113,104,99,91,96,110,105,110,97,112,109,106,100,92,103,93,117,104,105,128,101,100,86,99,119,108,99,112,93,102,95,104,108,115,107,99,115,108,113,117,112,101,93,107,100,92,105,88,104,109,101,107,112,91,110,102,107,108,103,89,95,96,93,105,98,105,93,109,91,107,101,106,108,103,111,100,103,90,109,96,100,77,94,105,112,102,102,109,93,106,105,102,97,104,119,107,105,101,96,97,106,94,112,105,100,102,91,97,100,102,108,112,112,100,104,105,103,98,118,103,121,107,106,104,104,105,110,96,101,99,91,98,106,83,112,94,98,105,107,109,108,92,91,98,114,101,110,104,108,106,117,96,107,89,114,107,97,115,109,105,100,101,95,111,101,104,94,97,104,103,105,111,91,106,84,102,97,107,104,90,88,103,105,99,103,108,137,105,97,110,110,107,111,97,110,104,95,112,99,104,102,96,90,104,100,110,103,114,101,102,90,102,102,107,109,108,101,103,112,98,99,103,105,90,102,99,99,96,106,113,113,103,88,93,96,123,110,110,122,89,101,106,94,102,123,113,111,101, +557.31952,114,103,119,116,94,101,93,97,94,106,94,93,104,111,114,102,111,106,102,95,110,97,114,106,109,113,103,111,118,118,98,98,106,93,114,109,103,98,107,104,105,113,113,101,104,107,110,109,95,97,108,96,107,102,91,100,99,91,114,92,96,102,116,114,99,112,99,112,98,113,105,103,110,113,94,107,106,115,88,104,107,112,102,121,118,103,104,109,98,111,118,108,108,115,105,113,100,108,103,109,117,99,111,113,108,107,101,103,98,99,110,112,104,105,98,120,95,94,115,116,119,100,108,111,106,105,104,106,108,108,102,125,97,113,106,109,119,110,108,107,104,101,107,106,112,94,125,126,101,91,99,107,111,99,94,108,104,110,109,103,117,115,110,117,104,102,104,115,103,102,105,122,99,96,107,99,98,89,110,104,116,110,113,101,105,117,111,104,105,95,102,115,97,112,107,105,114,108,113,113,109,111,104,89,120,108,108,102,97,105,97,104,100,103,110,100,105,99,113,103,109,103,91,98,102,100,97,107,122,107,109,104,110,98,107,107,111,99,112,107,97,99,114,100,100,104,104,118,111,105,105,108,97,101,109,103,100,107,107,112,99,112,101,108,111,103,105,117,108,102,98,113,103,114,105,104,100,106,102,109,117,97,111,117,111,101,109,109,103,130,107,101,103,100,94,117,98,114,104,95,101,106,104,113,101,102,102,108,109,115,95,114,113,142,109,99,109,113,104,100,101,100,105,105,101,107,122,96,110,117,105,97,120,110,106,106,105,103,99,99,95,96,98,101,95,98,96,114,109,100,107,108,104,109,96,109,107,98,106,103,109,117,103,113,111,100,88,103,105,115,114,106,103,107,109,108,109,112,108,102,114,110,99,101,109,101,115,92,112,110,104,104,102,114,111,104,119,110,113,122,105,108,106,108,109,101,101,111,97,102,78,99,102,112,102,105,113,96,95,107,100,108,118,103,116,113,117,98,109,110,105,106,95,94,110,97,111,113,96,112,113,108,102,106,108,120,105,108,109,111,88,107,77,109,104,99,114,106,114,115,126,110,110,115,110,115,112,116,128,116,105,112,116,97,116,101,109,111,105,96,109,100,108,105,95,102,108,110,104,120,105,105,119,109,103,101,106,101,110,102,106,93,106,103,106,122,98,105,102,111,106,111,112,98,99,108,98,105,107,98,112,122,98,107,116,113,110,109,100,108,108,108,116,101,99,122,111,106,117,106,96,108,111,108,106,105,100,108,103,105,106,116,104,110,105,106,129,107,101,105,116,107,116,114,97,105,104,113,98,108,102,108,107,114,109,120,108,105,104,101,110,110,123,111,91,96,112,106,115,106,107,116,113,103,109,111,105,114,116,107,105,105,111,106,99,106,108,108,115,104,110,107,116,88,109,88,109,98,103,115,105,104,97,103,110,102,106,115,114,104,107,103,104,109,96,105,101,115,114,118,101,104,102,108,101,93,99,109,104,109,109,110,118,124,106,115,100,107,115,107,116,111,110,112,105,96,112,96,91,101,121,112,99,108,99,112,103,90,103,100,123,105,90,100,92,101,97,106,102,109,108,100,104,111,105,104,115,103,111,99,105,108,98,102,113,109,111,106,93,91,100,98,110,112,100,101,98,100,97,103,109,96,100,105,105,109,114,103,117,96,103,95,104,106,98,101,108,99,106,103,106,100,106,103,91,95,117,110,101,106,109,104,135,99,100,107,105,99,108,108,91,103,100,111,106,109,110,105,96,105,108,97,102,95,91,106,104,108,112,84,101,108,100,110,107,117,101,107,110,94,110,106,108,100,117,113,96,116,103,113,95,106,108,99,108,113,97,97,110,110,108,114,96,108,115,99,121,105,113,103,101,116,116,120,107,119,117,111,100,89,115,110,111,114,96,108,108,90,105,106,113,102,98,103,101,101,104,110,98,97,104,112,100,111,103,104,105,106,105,108,96,102,118,110,106,114,106,109,111,115,106,110,97,120,110,99,94,102,109,103,112,98,111,101,114,114,103,110,144,112,113,105,101,124,103,105,111,98,99,111,97,122,117,124,77,101,94,115,108,104,118,103,84,111,102,109,109,104,101,111,105,106,108,117,92,107,101,112,109,115,115,102,109,104,107,101,105,96,106,105,89,83,111,109,95,103,109,104,102,113,107,108,107,107,114,102,97,104,99,103,95,110,111,102,103,101,108,98,107,87,118,110,83,112,104,126,99,99,107,96,108,111,113,96,111,116,113,103,117,115,101,103,108,101,106,108,90,112,108,105,110,100,98,109,108,104,109,112,103,116,97,93,90,125,109,112,111,103,99,112,121,110,112,92,98,115,110,99,108,102,108,106,128,109,115,108,97,104,132,124,136,128,167,162,159,159,176,146,159,149,155,143,140,131,125,120,133,106,123,102,87,130,109,97,109,97,99,124,110,114,102,116,102,107,104,107,109,105,106,108,96,78,93,117,110,110,108,105,113,100,105,100,109,96,105,102,89,100,103,98,102,121,94,102,101,113,115,102,77,104,114,111,121,109,102,66,98,111,101,105,108,106,102,114,94,107,109,105,115,95,98,102,90,108,105,110,100,110,108,92,100,98,106,103,105,99,100,95,128,93,108,105,108,102,111,106,108,110,108,109,116,99,118,105,96,106,77,103,108,102,102,99,125,113,121,107,96,111,110,99,99,98,102,114,79,101,92,110,101,103,106,108,116,106,85,107,95,123,99,138,100,103,105,116,104,110,95,106,112,105,105,115,117,88,109,116,103,101,96,101,108,102,102,104,106,113,98,107,93,101,110,100,91,112,100,109,101,105,108,105,100,106,106,95,104,109,106,110,106,106,117,98,106,108,113,107,102,109,107,114,118,105,99,103,104,108,99,113,105,103,117,92,103,116,111,115,110,98,102,104,103,100,105,94,101,108,98,108,108,96,104,106,103,107,91,93,96,104,109,109,106,102,102,115,99,109,110,107,118,98,106,108,103,93,104,98,96,103,98,113,110,108,117,108,108,103,115,107,106,109,105,92,91,105,103,85,104,101,100,102,107,88,117,90,110,111,109,97,103,110,95,112,109,103,109,97,111,87,115,96,118,103,93,98,90,94,106,122,99,86,112,92,106,116,106,99,98,115,107,99,102,98,99,101,95,104,99,108,117,96,99,106,109,109,100,102,94,90,111,113,103,105,101,102,93,108,113,94,105,108,91,91,110,105,91,122,109,116,120,97,106,123,103,99,97,121,110,108,107,100,101,121,118,113,107,103,118,103,96,103,108,113,117,105,98,108,95,116,104,96,95,94,104,95,99,107,109,98,109,105,106,102,98,112,112,104,106,95,98,108,101,105,110,94,113,103,92,107,121,99,98,106,102,103,109,113,117,97,98,104,109,109,110,104,111,105,107,111,92,98,102,114,101,105,106,98,105,115,115,105,103,100,108,91,96,114,113,106,101,102,124,107,96,90,94,102,103,107,101,103,104,100,105,110,95,131,106,100,116,101,113,90,107,104,94,95,104,93,97,102,110,110,104,110,98,97,100,113,102,94,120,103,109,112,111,95,100,102,99,96,125,108,103,94,98,73,108,101,87,100,113,105,106,109,101,102,114,94,103,113,94,103,109,100,102,102,113,106,102,110,107,109,107,97,96,97,108,108,100,111,105,95,104,109,103,104,109,100,98,95,104,108,110,106,102,96,102,109,110,102,96,99,102,95,108,112,102,95,122,100,106,105,105,107,102,106,119,102,108,106,99,102,96,97,105,108,102,102,100,98,107,110,96,99,113,96,99,101,104,100,96,106,92,97,101,101,111,98,100,106,110,93,115,103,110,95,110,95,100,111,91,105,88,104,95,104,109,108,105,94,98,101,112,104,98,101,100,117,120,93,91,92,108,101,112,112,78,104,91,99,103,82,96,117,107,102,102,105,106,96,100,107,104,112,97,111,96,109,128,107,116,105,104,86,112,97,107,104,109,99,114,109,107,104,112,116,109,101,111,109,104,103,95,93,102,98,98,98,98,102,109,109,104,106,107,109,102,99,100,95,117,110,104,110,113,103,102,105,106,87,95,102,103,95,114,111,109,99,105,100,99,97,101,116,110,102,105,112,104,113,98,102,97,90,109,111,104,113,101,103,95,86,109,101,75,116,96,110,107,105,111,100,96,94,104,95,120,100,102,107,101,99,103,106,103,118,106,108,102,105,122,102,94,108,102,103,102,106,100,94,97,104,108,100,97,103,112,108,116,108,98,104,107,102,102,92,110,110,97,96,94,84,108,105,100,97,100,103,95,113,103,95,105,89,101,105,100,101,103,105,110,104,99,107,107,108,107,110,111,109,109,111,111,112,106,109,103,98,107,111,103,99,111,106,92,101,102,105,94,106,99,106,108,111,100,101,91,105,106,94,100,91,95,103,116,105,108,108,107,99,106,97,98,75,114,77,105,109,101,119,112,109,103,96,97,93,92,104,93,105,91,112,99,103,101,116,104,90,102,102,91,110,100,108,105,107,103,100,105,98,85,96,91,102,104,106,112,99,99,117,103,90,106,104,98,100,106,100,112,109,100,109,109,92,94,97,110,76,88,102,101,112,100,108,95,100,108,111,110,104,96,107,105,97,111,113,95,106,103,97,99,115,119,101,119,93,108,113,103,117,93,87,95,106,93,101,107,96,105,100,102,109,101,106,102,122,101,99,109,98,91,101,105,102,95,105,111,100,103,100,107,116,96,95,105,102,100,105,105,105,106,83,104,100,100,109,109,105,84,96,84,105,102,97,106,92,110,105,108,109,100,103,114,105,99,100,98,95,105,111,109,122,95,100,104,107,100,95,114,96,102,91,107,120,84,111,88,102,109,92,97,83,100,86,99,106,83,111,120,90,102,109,106,100,104,88,108,82,108,99, +557.46039,104,122,100,114,93,101,106,95,90,93,108,97,94,114,94,93,111,106,106,100,104,105,106,111,101,99,98,99,101,104,103,106,107,112,102,81,103,101,86,83,98,108,100,98,84,116,103,103,106,122,104,109,91,116,91,98,102,95,104,112,89,105,106,92,105,111,101,113,101,100,95,107,106,98,103,111,103,111,103,99,78,90,110,93,105,100,101,105,112,101,104,104,114,105,109,94,91,109,113,109,105,109,60,94,106,113,106,100,105,106,106,108,102,97,104,90,95,101,108,117,105,104,104,103,102,100,104,97,120,100,100,112,113,90,105,124,96,97,103,105,97,108,113,97,97,102,103,113,102,96,109,117,103,97,95,97,88,111,102,107,93,111,103,94,106,103,101,101,108,112,113,109,105,92,110,105,115,99,113,114,108,111,108,99,94,104,104,99,102,106,109,105,98,115,96,105,90,107,102,105,100,103,108,99,98,109,107,101,116,108,90,113,103,109,98,105,92,96,104,92,102,97,69,105,96,118,110,107,110,92,107,95,101,105,93,99,107,106,104,101,97,109,117,118,109,94,108,106,111,107,103,118,87,104,98,103,109,84,97,97,91,113,102,94,103,106,109,104,113,89,98,101,107,110,112,95,91,110,103,105,106,103,93,104,111,99,101,114,92,109,98,96,121,113,102,100,107,113,100,112,104,108,110,101,99,107,110,99,111,108,102,110,101,123,103,101,108,133,105,118,98,110,106,102,111,110,102,113,115,96,107,101,103,121,100,119,94,99,101,99,104,103,96,100,110,109,106,113,110,117,101,107,106,102,103,102,119,111,111,119,112,106,113,105,96,100,102,101,117,100,96,107,109,110,115,100,100,112,98,107,87,107,100,95,100,93,95,104,108,99,115,110,100,114,100,102,100,97,103,105,107,107,103,109,107,99,99,114,105,110,96,99,102,121,109,103,101,113,113,102,103,109,95,96,105,101,114,88,106,109,100,109,104,106,109,106,113,114,98,95,115,112,115,110,109,105,97,97,114,118,103,101,94,102,106,97,106,116,98,116,96,112,136,123,118,109,110,107,116,114,105,103,105,98,102,107,101,113,120,103,112,108,120,90,102,106,102,108,106,91,94,98,108,103,105,94,112,99,106,88,122,97,108,106,105,106,99,119,101,118,106,103,101,105,105,98,103,100,100,101,115,103,102,117,110,110,108,120,98,98,114,103,107,98,99,105,101,94,109,112,98,107,117,112,107,94,95,105,103,104,110,105,107,115,103,106,102,105,102,103,88,107,92,112,102,112,109,106,103,104,92,106,113,106,99,101,116,102,104,95,102,99,106,102,102,119,99,109,107,125,104,107,100,101,113,107,117,104,105,105,108,100,104,94,95,101,92,97,102,92,99,100,109,118,94,89,129,101,97,116,114,109,105,103,104,98,101,104,109,80,108,110,105,108,96,106,87,93,117,104,94,103,99,102,102,84,111,103,100,117,106,103,80,111,100,117,113,111,87,115,101,111,116,95,96,106,99,103,109,119,104,106,100,108,98,113,107,98,106,99,115,126,106,80,100,108,106,101,93,98,116,108,113,110,102,105,107,99,108,127,112,106,103,106,116,107,109,115,96,107,107,112,114,117,103,107,100,110,100,107,105,105,109,103,98,102,106,105,106,104,121,108,108,108,103,101,104,100,111,100,107,95,102,106,110,107,108,106,105,99,98,110,105,86,81,109,107,110,103,101,113,112,76,110,101,104,101,106,106,108,99,117,129,111,96,99,101,120,108,113,102,112,106,108,109,104,98,85,107,115,102,109,96,116,101,104,113,106,109,104,97,107,107,100,109,107,104,97,111,125,103,109,104,99,111,95,116,94,108,106,99,104,101,118,109,105,133,99,119,103,121,91,114,114,94,107,105,102,107,96,98,112,101,111,107,115,91,110,100,99,100,100,94,109,98,104,104,111,92,97,91,106,70,108,100,110,102,106,129,100,89,108,102,97,105,107,115,133,97,95,91,109,102,114,104,97,115,99,106,108,98,110,108,121,101,102,106,107,101,103,98,120,108,106,104,109,96,97,105,101,96,89,99,112,104,113,105,98,101,112,94,107,92,94,112,99,100,103,112,99,118,102,112,106,98,73,103,94,105,102,106,113,107,115,109,105,113,109,93,109,107,111,105,117,105,104,104,103,100,92,99,105,112,113,104,106,108,106,98,107,130,110,109,110,109,106,106,93,97,111,101,103,71,99,93,98,108,107,106,99,109,111,96,102,105,100,95,94,109,92,94,96,102,100,91,95,113,111,94,105,103,64,99,103,88,109,100,105,109,103,143,122,115,101,104,103,106,95,117,105,107,130,98,103,100,102,100,115,132,156,131,137,160,151,164,165,146,150,163,146,156,134,146,135,112,119,112,107,124,112,122,114,112,104,103,116,105,101,100,91,108,103,112,109,76,109,121,107,82,95,96,112,97,112,100,111,99,106,113,100,104,97,105,92,105,102,110,111,109,99,101,130,104,96,98,112,90,108,97,109,116,106,106,100,84,120,104,112,110,110,112,92,113,108,106,109,110,114,94,110,112,112,102,91,102,117,94,103,111,112,100,105,101,109,100,104,101,102,103,110,106,102,102,124,102,101,109,92,103,149,102,96,105,102,107,108,95,95,105,105,90,97,115,103,117,110,98,103,109,109,109,105,105,105,106,95,99,105,106,97,102,87,108,100,93,90,105,105,103,90,100,117,106,117,120,109,97,110,108,109,91,103,102,106,106,113,107,123,103,110,102,110,107,102,107,107,103,99,92,109,91,101,92,101,105,95,120,110,113,106,117,93,102,93,106,99,93,105,131,131,91,98,104,110,104,91,106,106,102,113,96,97,104,117,110,115,99,98,110,112,104,87,111,116,102,101,100,96,102,117,101,108,90,102,103,94,99,106,104,106,110,113,107,102,95,106,101,87,102,104,104,105,104,117,107,112,96,117,92,89,99,96,94,104,104,106,110,103,109,97,112,99,101,107,100,105,80,106,108,98,107,86,101,112,117,112,114,106,107,93,96,97,102,90,108,97,113,112,102,108,111,109,104,112,108,99,106,97,102,97,105,113,100,104,112,91,105,84,103,94,112,106,87,104,100,102,104,113,99,99,137,120,104,99,102,104,107,104,112,101,105,106,106,98,107,108,105,100,106,77,109,101,116,103,105,109,106,97,104,100,98,114,103,99,103,113,107,102,99,104,103,102,95,98,98,96,99,96,122,85,108,129,102,103,107,99,104,104,108,98,109,94,93,100,104,102,107,106,103,86,105,97,103,113,105,105,94,106,99,105,102,89,100,103,102,105,92,100,104,105,98,114,110,106,84,103,103,99,103,98,104,114,109,89,112,122,110,115,96,103,108,99,106,103,112,103,109,112,110,103,100,111,120,109,99,96,101,92,95,102,107,97,115,110,102,102,90,110,110,96,105,108,106,107,99,104,113,96,99,84,105,106,81,102,95,102,102,103,104,104,103,114,90,117,104,95,98,102,104,110,112,108,99,113,107,101,112,102,96,110,114,98,98,110,105,92,96,100,109,109,96,105,109,108,100,103,102,102,110,98,101,102,116,102,106,99,104,97,95,100,94,100,105,120,95,107,101,102,106,105,108,100,98,112,96,97,106,103,113,101,100,94,125,103,113,111,113,101,96,109,128,107,108,124,106,102,104,95,105,94,107,103,110,73,107,98,115,118,98,99,110,102,94,90,95,109,108,98,106,105,108,106,108,101,103,107,96,87,102,105,103,94,109,105,94,98,96,85,112,108,104,102,107,116,102,104,99,104,109,98,92,98,111,98,98,109,109,94,105,84,95,98,99,105,105,107,120,105,115,109,98,110,102,95,98,98,96,107,110,99,102,99,104,108,109,96,102,105,101,106,90,100,105,92,107,103,105,100,102,102,93,99,99,108,99,96,92,103,95,113,94,101,105,106,95,104,97,107,99,97,99,106,109,103,96,103,102,97,114,102,112,104,96,107,107,108,101,96,100,94,108,109,102,101,99,105,98,100,109,103,107,117,100,99,115,110,102,95,109,105,97,104,107,102,110,111,96,117,91,97,105,99,97,114,109,105,106,110,97,112,106,112,104,107,108,120,108,103,99,103,109,106,103,105,109,95,108,102,105,102,112,95,97,104,108,102,100,91,100,90,117,108,107,113,105,112,95,104,94,93,109,96,105,108,109,100,105,103,94,109,116,107,106,102,102,109,107,108,94,101,98,97,105,104,115,98,100,103,98,102,102,105,99,114,100,112,101,98,109,104,103,106,113,101,100,91,113,105,111,108,100,114,100,118,93,103,99,109,101,103,113,112,94,117,106,96,102,95,112,107,104,109,120,113,102,106,109,116,109,104,80,98,111,108,106,100,105,102,103,107,98,103,99,102,94,105,95,108,98,101,106,96,107,111,110,95,104,101,95,105,111,107,102,97,119,112,117,107,102,118,103,106,101,98,98,96,109,102,91,88,103,98,113,99,104,104,99,106,95,106,105,108,100,104,105,103,88,101,109,95,105,97,107,105,105,116,100,85,125,96,105,102,106,113,107,101,117,110,87,97,125,88,106,112,90,108,101,83,104,111,95,97,95,112,103,108,106,107,111,105,101,98,96,108,97,100,107,113,95,112,104,113,102,92,103,85,93,101,87,106,108,72,99,104,106,102,97,108,102,101,114,111,107,91,102,106,112,95,98,93,103,110,104,103,104,102,113,85,112,99,99,100,113,102,108,96,94,103,113,97,95,87,87,111,110,109,107,99,107,97,104,91,102,108,105,116,94,98,117,104,129,104,98,103,113,102,106,124,109,110,106,81,106,105,93,112,87,110,95,99,103,84,92,103,132,114,109,110,97,101,110,94,98,92,96,100,103,99,118,99, +557.60126,112,92,107,101,87,103,109,104,106,109,110,115,107,96,102,101,96,102,82,119,113,92,103,93,103,96,104,112,91,98,109,90,117,100,98,112,96,99,112,110,80,100,101,113,99,103,97,101,103,97,101,106,101,107,112,97,108,97,98,91,90,117,103,102,105,106,113,102,91,97,76,108,90,108,115,104,109,101,118,98,99,105,94,95,109,95,86,96,98,117,125,95,110,100,100,120,106,106,116,104,103,92,75,101,107,103,104,112,103,99,110,103,106,112,106,97,112,99,100,86,97,101,101,108,94,108,113,101,114,110,110,101,96,108,109,100,96,109,102,89,99,92,100,105,110,86,100,99,101,96,109,105,112,104,95,102,121,121,103,113,116,131,111,104,99,103,98,104,100,102,107,109,113,101,104,100,103,104,106,119,105,109,105,108,100,109,96,90,121,99,141,103,108,110,119,112,114,98,100,95,96,101,99,123,121,105,102,103,108,128,89,110,98,109,102,98,108,111,108,96,105,100,108,107,106,101,100,112,114,109,100,106,117,103,108,105,109,104,109,109,115,101,117,77,105,93,99,106,97,108,107,106,99,105,104,97,95,107,112,99,96,102,101,107,99,103,108,104,115,99,102,105,107,117,117,110,114,107,107,104,100,104,92,112,116,111,120,116,104,105,110,96,107,118,110,97,103,105,123,107,104,114,89,108,100,118,106,106,109,112,103,118,96,117,104,112,108,100,98,107,104,94,105,109,99,95,102,98,114,103,104,99,94,101,106,99,101,73,101,105,115,98,102,101,95,111,113,105,117,110,109,110,99,105,94,100,117,95,105,117,92,105,109,87,92,113,113,109,95,107,98,105,105,99,103,99,100,99,99,110,99,109,107,107,100,88,89,115,103,95,110,95,110,114,100,103,100,107,105,115,103,114,113,94,104,99,111,107,88,110,106,105,111,90,99,99,100,102,111,112,102,105,101,116,94,103,104,106,100,91,104,113,100,94,101,104,96,112,101,101,112,105,111,110,98,115,95,98,115,99,114,101,104,112,110,100,106,105,114,100,110,106,115,108,110,104,107,103,106,107,108,102,94,104,102,108,103,116,104,94,113,95,110,101,99,102,107,118,121,106,107,108,108,103,101,108,94,108,102,102,107,100,115,107,113,110,93,84,114,96,106,97,102,103,109,95,113,100,99,91,86,107,102,108,113,116,94,104,109,133,95,106,106,116,109,113,107,102,104,114,109,106,101,109,103,105,106,110,99,109,106,106,111,113,107,90,109,97,104,100,113,113,110,119,101,100,106,101,71,99,106,91,89,98,100,107,113,92,107,103,106,101,95,100,99,98,106,106,105,109,111,98,104,111,107,96,87,109,102,109,108,104,112,102,92,99,115,109,115,99,101,96,110,114,109,98,111,102,104,100,109,106,107,105,107,98,97,113,105,107,105,103,102,104,97,101,105,101,109,106,105,110,107,101,93,121,105,116,109,112,97,103,98,107,103,109,122,100,104,104,110,103,109,114,108,95,106,89,101,116,119,105,116,101,108,107,97,106,103,90,112,109,114,106,98,96,101,105,111,112,99,101,107,108,92,114,100,116,103,96,104,103,114,106,109,108,107,109,93,115,106,111,106,102,122,108,98,107,125,100,104,94,102,119,113,89,110,100,108,102,113,107,101,90,89,92,119,84,91,79,115,102,106,100,115,100,112,118,99,125,81,117,105,88,110,116,99,96,91,106,120,107,101,95,109,97,101,101,109,97,110,103,90,92,96,113,106,109,117,98,104,102,109,107,104,113,117,120,111,107,103,105,106,106,107,112,98,97,109,76,89,105,102,103,102,104,108,99,106,103,110,113,103,110,113,113,109,113,108,103,112,101,102,103,104,101,129,108,106,108,95,105,99,106,103,106,106,106,99,114,96,102,106,101,115,107,114,102,118,100,103,109,87,112,92,103,97,103,104,102,110,102,101,107,110,102,94,105,113,108,111,106,101,114,110,93,107,101,107,101,102,117,100,97,118,101,113,103,101,103,108,108,100,122,100,80,111,103,104,108,112,106,95,95,108,88,118,105,98,110,98,116,110,112,107,96,99,109,108,100,105,102,103,112,111,109,101,106,111,101,107,106,109,103,99,99,96,107,103,104,103,103,101,119,105,117,111,102,115,107,84,98,104,104,107,114,111,103,112,111,112,121,105,105,105,92,110,101,113,97,114,106,105,107,102,105,95,100,109,114,106,105,100,102,129,91,104,93,100,97,103,101,123,112,95,118,105,109,102,100,126,105,102,113,118,117,108,102,88,103,100,100,99,95,105,94,103,104,104,102,108,90,122,110,122,99,114,105,102,113,122,110,113,111,111,99,105,126,118,129,118,179,143,147,145,148,162,166,141,136,148,171,141,145,140,111,116,129,117,110,108,102,116,117,103,104,112,94,102,99,106,110,107,105,97,112,108,91,106,106,114,103,103,110,109,102,103,88,103,102,99,94,104,94,94,111,104,95,120,95,102,106,106,107,96,112,105,91,98,113,103,110,110,109,109,98,105,117,100,92,107,88,124,104,101,92,108,107,112,110,110,117,104,98,100,102,101,107,107,113,105,101,103,112,105,100,113,96,116,100,107,104,99,105,109,99,113,104,113,108,129,103,111,92,97,110,105,105,98,99,101,108,102,113,97,82,110,108,107,99,104,110,103,99,111,104,102,111,92,101,105,99,81,103,107,107,111,99,104,108,117,104,108,107,102,114,107,110,103,109,97,104,108,113,120,95,111,119,114,92,113,114,106,101,115,102,109,107,111,112,102,90,100,103,110,109,100,112,88,111,114,110,113,111,113,104,114,107,82,98,100,87,111,103,112,112,102,115,97,108,115,90,103,115,105,95,104,98,107,105,120,101,105,112,105,113,107,120,144,102,104,109,113,95,108,130,105,115,110,110,102,107,107,120,100,107,102,95,104,105,113,106,110,108,100,97,111,104,97,103,95,104,99,106,106,105,86,124,109,94,118,106,105,98,106,104,102,101,106,101,104,91,107,100,112,127,114,104,106,113,96,105,109,106,95,102,121,96,116,106,96,110,112,97,105,104,109,75,104,102,101,101,106,106,98,113,99,108,107,105,118,105,110,108,102,111,106,108,100,111,94,99,118,112,103,106,103,99,98,98,104,98,101,97,102,99,97,91,94,108,115,108,99,102,106,110,98,110,104,110,100,106,106,97,96,111,109,99,114,111,107,105,97,103,100,109,92,98,112,113,105,109,106,108,101,108,112,109,113,116,103,105,108,97,110,106,107,110,106,97,111,102,99,100,108,104,100,75,116,108,94,105,91,95,99,109,105,99,98,88,111,100,106,95,105,112,101,102,113,104,113,98,92,116,107,105,102,104,91,105,93,96,98,102,93,100,81,109,109,98,106,100,104,104,96,98,96,100,113,119,101,98,80,103,105,114,97,113,100,102,110,97,106,105,102,105,96,108,112,99,109,103,112,103,107,99,102,102,104,107,105,98,101,110,98,118,121,122,111,111,102,113,103,121,116,111,98,105,106,102,108,115,119,104,108,103,105,117,100,99,105,99,111,95,102,106,109,127,98,122,101,100,98,107,104,106,108,104,119,102,91,101,101,110,99,136,105,98,102,99,109,105,112,100,101,116,106,110,98,108,96,100,94,109,93,99,109,106,97,111,94,102,106,99,117,98,109,74,103,99,102,105,98,108,103,104,113,104,116,102,99,104,107,109,110,95,94,111,95,107,99,109,103,103,113,106,98,106,105,84,109,106,101,101,101,113,104,115,117,109,101,101,109,116,99,103,108,103,94,113,110,111,112,105,121,103,118,103,106,112,107,100,97,90,112,102,111,94,105,102,98,103,107,102,114,108,106,105,119,111,95,101,95,92,99,95,112,103,92,97,116,102,102,93,89,99,113,96,111,103,98,111,102,102,108,104,103,113,101,112,100,120,98,105,107,107,115,102,105,97,99,112,101,107,115,106,104,112,96,111,99,101,116,99,109,102,105,106,114,103,108,105,99,96,102,101,102,104,94,104,98,98,95,73,112,109,118,112,107,84,110,94,101,104,99,108,113,107,112,106,107,107,97,100,104,117,96,80,109,104,110,95,115,113,101,109,98,101,103,107,100,109,94,96,101,111,99,122,104,100,113,99,106,102,107,96,103,109,103,100,107,104,100,109,100,103,103,103,105,103,115,102,105,105,95,93,103,105,95,132,107,98,103,95,103,112,106,106,106,99,91,103,100,98,118,105,109,98,111,102,101,108,110,100,102,107,98,111,100,121,100,104,97,94,93,99,102,97,112,116,110,99,100,101,109,109,96,92,108,109,123,97,101,110,102,107,105,91,102,100,93,107,108,107,109,96,117,107,102,95,107,107,118,104,105,100,104,105,109,99,98,100,103,92,91,82,99,102,104,108,98,100,75,71,107,91,104,116,103,105,111,102,115,105,107,108,97,84,111,105,96,103,93,108,108,95,102,97,99,97,99,111,80,113,104,101,111,98,107,98,98,121,100,102,103,102,102,111,104,105,107,105,105,91,87,102,101,105,99,97,114,78,105,105,105,103,109,111,90,101,107,98,106,90,96,117,109,101,106,110,109,101,112,103,89,108,119,109,119,99,108,100,89,99,108,103,110,101,105,97,104,111,80,102,99,89,101,91,104,98,106,92,99,95,99,93,97,111,102,114,107,100,97,102,108,116,105,95,100,113,108,107,106,101,104,110,110,101,107,93,102,88,105,106,109,101,97,109,85,87,102,104,98,107,106,98,102,113,103,101,99,109,111,100,100,84,97,108,113,117,105,91,100,107,95,109,109,99,107,105,117,115,97,103,105,101,105,99,97,95,106,111,110,101,92,109,114,94,100,100,106,113,110,109,99,112,99,108,95,100, +557.74219,92,101,113,97,118,112,98,120,96,112,98,111,104,101,107,116,94,110,98,108,107,108,95,105,107,105,95,94,107,97,105,99,101,102,108,87,102,103,102,101,94,102,96,72,96,92,104,102,90,106,109,108,87,94,93,101,101,103,112,95,107,111,111,88,104,117,104,109,80,90,106,107,99,101,97,101,87,104,98,103,120,112,108,103,103,107,109,121,97,101,98,112,96,104,107,97,104,95,90,101,102,104,95,101,108,101,98,102,107,114,108,99,92,94,108,101,107,103,98,95,107,102,105,122,98,112,100,107,99,106,97,105,75,113,88,103,104,102,96,106,106,99,98,115,103,95,114,103,102,91,100,111,106,89,94,109,116,103,118,110,108,106,107,100,102,94,108,110,106,76,116,95,105,102,96,102,102,98,103,99,108,102,97,110,102,103,106,91,103,98,101,102,101,91,112,98,101,103,110,105,111,99,107,105,79,114,101,101,114,112,108,106,100,114,99,102,91,105,108,106,103,113,108,82,101,96,112,117,107,102,101,90,110,96,103,121,100,113,106,107,102,99,95,78,95,106,112,113,97,100,103,110,120,107,109,110,100,100,94,102,96,105,98,116,97,100,99,109,113,94,105,104,94,103,96,99,99,109,99,102,101,98,97,113,104,103,106,99,99,114,98,101,105,102,111,97,104,104,91,108,108,104,121,104,103,103,95,104,98,101,86,113,126,113,89,109,117,101,95,109,99,98,114,105,103,108,116,96,108,102,101,111,90,96,114,110,97,100,96,111,98,108,108,98,115,114,84,117,100,102,95,101,100,98,117,100,106,105,104,116,98,122,103,94,102,103,110,100,98,109,86,101,96,109,100,102,88,105,102,108,106,104,106,95,100,105,101,107,102,101,109,94,108,107,108,100,90,105,104,105,88,103,124,109,97,91,105,108,99,106,101,109,102,110,110,92,98,100,101,105,105,103,91,103,103,88,107,98,101,109,105,115,104,96,112,109,103,90,93,95,116,112,104,107,104,124,108,106,99,108,99,100,107,108,96,99,105,84,112,107,108,101,107,111,116,105,107,105,100,97,105,100,115,107,106,109,95,102,99,106,103,99,110,95,102,101,102,103,96,103,105,96,105,93,98,103,102,103,107,113,123,111,101,99,101,102,97,108,87,98,107,94,110,116,113,97,111,102,101,95,103,97,90,105,88,118,105,98,104,107,80,90,107,112,98,102,110,101,106,113,108,111,106,102,112,117,109,87,105,105,114,99,110,104,103,110,105,96,111,94,97,115,96,101,102,91,101,108,115,110,101,100,107,114,115,115,108,127,106,113,101,108,102,89,105,98,108,108,113,102,99,109,106,106,100,104,111,118,104,103,107,106,106,105,110,103,99,106,97,115,104,95,94,108,111,105,96,90,108,94,91,110,94,107,118,102,104,98,83,99,95,101,106,107,76,100,102,104,87,102,113,105,101,97,99,93,101,112,96,105,104,103,103,116,93,97,105,108,111,97,120,121,103,113,100,117,109,87,100,109,102,100,117,107,100,106,99,109,103,115,103,101,124,97,92,99,110,110,92,101,98,99,106,102,103,92,106,109,96,97,108,105,98,106,101,99,105,109,101,94,113,105,109,100,105,100,100,91,102,94,106,96,105,82,119,109,103,110,109,110,102,117,109,95,85,112,107,101,97,100,75,97,102,115,112,96,110,91,102,131,113,93,108,100,97,107,98,109,82,104,98,99,101,113,101,104,105,116,97,95,68,101,114,112,111,94,97,108,98,104,115,96,102,86,98,112,104,105,94,115,104,109,103,112,106,71,105,110,104,103,103,111,98,106,116,101,94,100,98,95,106,100,95,104,112,108,95,96,111,109,103,103,101,105,104,109,112,106,105,118,102,105,110,108,111,109,107,95,107,102,93,93,110,117,97,109,83,97,105,99,108,95,97,104,110,109,111,120,100,125,104,102,116,104,104,95,98,108,119,108,93,109,106,109,98,113,101,108,110,111,94,102,104,96,99,106,109,105,109,100,108,110,106,109,102,93,100,110,113,108,104,105,106,117,115,97,102,100,96,97,110,109,110,109,114,102,118,112,96,116,95,103,108,120,106,106,107,108,109,99,110,97,109,99,97,88,105,104,90,105,117,101,101,120,122,115,102,105,108,112,110,107,95,104,118,104,102,109,97,106,106,110,94,99,102,95,96,98,102,108,105,94,101,105,113,94,95,104,105,125,107,107,102,108,108,105,103,107,110,114,101,99,115,128,101,99,104,89,99,99,104,102,99,105,115,106,108,107,105,110,77,102,86,106,95,112,117,106,106,99,114,106,108,114,95,117,91,117,106,103,112,101,98,113,104,114,130,124,139,97,140,141,173,145,157,168,149,172,133,150,148,138,147,136,138,132,122,136,109,99,106,115,112,118,126,96,112,106,112,99,102,106,113,101,106,114,98,102,101,104,73,105,104,113,93,99,102,89,116,110,101,105,120,104,112,99,88,100,105,107,107,93,107,99,104,107,93,103,106,105,104,92,90,95,115,94,112,88,101,98,101,117,80,100,99,112,118,96,103,119,99,116,98,102,103,108,98,103,106,92,102,107,110,116,104,92,102,97,103,92,110,111,124,100,95,105,98,112,104,115,112,94,109,105,113,108,100,108,110,106,90,101,95,99,102,102,100,94,106,107,104,110,102,117,110,104,107,99,112,113,101,106,106,113,114,104,108,96,106,101,106,111,104,118,104,107,100,105,107,91,108,106,103,104,122,120,94,113,117,101,115,101,104,108,99,106,95,108,115,105,105,104,98,99,104,99,100,118,103,114,110,103,123,87,106,111,107,121,82,98,112,104,104,99,95,105,100,80,81,109,108,100,111,95,102,108,110,110,92,80,108,110,104,92,103,110,105,111,100,104,107,101,107,94,98,102,112,106,117,110,97,118,108,97,111,107,103,81,94,97,102,95,101,90,105,106,107,107,99,101,98,103,105,107,111,110,104,104,101,101,110,108,113,111,119,106,109,99,104,98,104,94,98,114,112,99,111,119,101,116,100,97,102,102,103,116,106,103,106,112,104,106,109,98,96,110,101,66,110,112,102,106,105,105,107,105,103,113,111,96,109,104,101,110,109,99,110,94,109,101,102,105,99,113,117,99,114,94,90,106,95,102,104,105,105,108,100,98,109,100,102,84,83,104,93,101,110,103,115,103,108,111,107,104,110,99,105,108,115,110,102,97,93,106,109,99,97,97,109,107,100,98,123,113,96,104,121,107,102,114,113,102,108,100,94,92,104,98,105,100,105,93,93,101,95,99,99,117,98,112,106,109,94,95,94,113,102,98,105,108,95,104,105,101,112,104,108,87,117,114,95,100,100,103,107,106,104,119,103,103,92,95,111,97,103,124,105,99,105,101,96,95,94,105,110,91,92,92,102,100,107,99,112,104,107,109,97,92,100,117,96,104,104,109,91,107,118,102,86,102,108,102,99,99,102,113,115,119,142,112,110,107,102,104,119,105,105,99,91,95,109,104,107,117,105,107,105,98,98,118,110,102,105,114,104,101,101,94,101,107,106,112,105,105,93,106,104,100,108,86,114,103,96,101,96,99,96,103,98,114,96,101,99,107,114,95,118,113,110,118,84,115,106,102,108,101,95,102,92,106,103,102,96,95,108,97,104,103,91,90,98,109,108,105,96,103,104,100,98,107,94,113,100,111,107,100,109,108,102,96,100,98,114,125,100,104,103,113,99,97,91,91,103,102,84,100,105,102,105,94,95,101,105,95,104,97,97,92,114,128,109,102,97,96,102,97,92,93,98,96,111,109,102,99,93,110,99,103,110,107,92,107,94,95,103,116,110,115,106,114,101,118,113,107,102,105,96,100,94,105,116,102,92,105,101,89,91,103,92,98,104,106,101,103,99,109,111,108,97,95,101,94,116,94,102,91,104,100,102,87,99,108,96,94,92,113,96,95,104,92,92,93,100,98,92,94,106,102,104,103,102,99,79,107,108,103,101,97,104,95,109,103,99,90,80,106,101,95,106,108,87,96,113,91,101,106,106,106,117,102,109,97,101,97,100,107,105,112,102,101,93,100,99,99,102,110,108,112,108,101,105,112,100,96,94,110,97,117,99,99,95,95,104,100,89,94,98,101,102,103,100,98,81,106,92,94,101,96,102,99,107,112,101,112,114,106,104,109,91,113,121,98,106,95,107,106,101,90,101,106,102,109,101,102,106,102,123,110,68,96,91,102,112,97,95,113,89,84,102,100,95,100,104,108,102,104,94,98,109,102,95,101,107,104,102,117,98,93,100,103,98,92,109,100,99,104,107,101,101,96,108,94,98,100,103,111,89,105,96,113,107,103,105,85,88,100,103,102,90,104,107,109,99,108,91,102,79,100,99,95,104,98,113,103,96,103,98,100,103,98,105,100,106,83,105,102,89,99,82,121,91,96,109,104,95,101,105,109,105,116,99,101,106,104,100,104,96,109,103,104,99,100,107,105,69,98,113,112,105,121,100,94,96,89,89,98,101,110,96,97,121,101,101,100,114,99,98,89,113,91,100,98,124,107,95,103,111,95,79,123,108,103,95,113,113,102,104,98,108,106,94,98,90,94,111,100,104,106,104,99,111,100,107,108,111,109,99,108,94,114,102,102,103,100,99,102,94,100,108,101,104,101,105,109,110,105,105,107,99,108,103,111,97,104,99,94,101,98,101,97,99,97,85,106,86,99,112,117,105,99,118,88,105,104,100,100,115,98,97,95,105,102,88,102,109,96,106,100,104,92,110,91,98,98,83,102,111,97,111,99,110,92,106,106,102,108,90,95,73,107,100,115,101,109,85,105,101,101,121,98,103,103,102,104,105,71,103,99,98,101,116,95,97,94,117,95,94,102,88,111, +557.88306,116,117,97,103,116,97,94,101,101,109,94,106,107,90,96,89,120,119,90,89,125,118,109,99,110,104,103,117,111,97,106,99,96,96,103,99,105,107,100,98,110,95,94,102,108,97,96,107,107,104,97,102,111,98,100,87,103,97,113,96,109,116,102,90,103,91,95,86,95,105,104,98,94,103,91,109,108,107,101,95,105,104,110,100,115,102,108,105,102,106,105,119,98,111,106,86,95,99,98,114,92,95,103,107,108,106,108,80,103,116,119,98,118,102,103,96,99,99,104,100,96,124,95,114,99,106,102,97,110,93,97,88,92,86,102,95,113,100,108,109,106,122,95,113,107,99,92,97,109,84,100,97,97,92,110,101,89,113,108,102,101,117,111,106,104,105,100,106,99,109,101,95,92,104,112,105,102,92,104,98,109,104,104,100,113,107,69,91,108,100,111,100,112,106,109,107,109,111,98,110,94,91,90,106,103,100,103,96,117,106,87,113,106,113,96,113,105,91,95,103,109,106,111,98,101,121,112,106,102,107,95,101,103,115,114,111,88,106,104,110,110,99,113,75,90,107,99,109,100,97,113,108,97,103,102,102,102,105,108,102,95,112,101,104,90,109,110,98,103,105,93,105,100,110,107,92,83,106,96,100,102,103,110,92,107,99,95,96,120,112,90,103,103,115,125,106,108,100,114,105,103,95,108,112,119,109,101,108,110,98,102,112,103,105,102,94,104,96,100,104,93,116,97,108,109,92,115,92,106,112,112,105,103,113,113,98,98,82,96,113,86,103,106,113,105,110,101,111,107,109,118,86,103,109,98,108,122,105,101,111,105,118,94,94,99,113,107,103,98,115,103,106,103,97,121,100,108,102,109,106,110,105,103,111,103,108,121,98,105,106,108,89,82,111,86,94,91,93,105,95,101,117,89,91,89,105,91,112,114,117,107,122,106,115,105,113,99,105,106,95,98,98,110,107,104,97,110,99,97,95,108,87,102,109,101,83,110,116,105,105,104,101,95,105,92,113,96,103,109,100,98,111,124,91,102,103,108,101,104,101,117,117,103,110,113,113,91,102,102,108,101,113,109,113,112,105,117,111,104,99,104,109,121,96,112,104,105,105,101,88,106,111,100,109,109,104,111,121,112,95,100,126,102,100,99,117,108,109,105,100,100,93,101,103,106,116,100,100,111,119,105,108,102,105,96,102,108,104,102,105,99,112,109,112,110,96,104,104,104,118,97,72,101,120,115,118,102,101,102,103,109,111,99,110,105,107,102,102,108,99,105,94,102,102,101,105,104,103,113,109,105,103,104,101,103,105,110,103,96,94,111,105,103,95,117,115,102,110,98,112,102,100,102,113,126,107,103,118,109,100,108,94,99,90,100,107,104,105,109,103,85,99,101,103,98,102,105,92,110,99,105,113,110,72,102,103,101,107,110,110,104,108,99,109,106,111,110,103,113,102,112,118,102,98,110,105,105,105,117,107,114,101,117,111,94,106,114,112,104,108,99,104,122,111,92,106,104,110,99,94,109,78,103,97,100,114,103,106,98,94,103,111,109,105,106,99,102,98,115,104,120,100,119,91,96,95,106,100,106,100,99,99,73,102,94,100,114,95,108,105,104,86,108,96,103,112,109,115,93,101,115,101,109,99,111,97,116,104,108,88,109,101,119,103,106,102,113,113,77,101,111,109,111,101,117,103,103,104,111,107,116,101,103,100,98,102,94,100,106,99,114,103,103,100,99,91,120,95,101,70,104,96,108,98,102,108,107,101,103,102,105,107,107,103,104,104,98,110,102,108,109,139,113,114,103,110,116,103,105,100,103,105,106,99,107,102,101,108,108,100,110,109,105,98,115,92,113,106,120,103,106,85,111,112,112,99,101,116,112,94,96,111,111,103,90,109,99,109,92,103,113,104,126,98,97,99,106,105,95,101,116,104,84,96,95,89,92,108,94,92,102,92,109,111,104,103,98,106,114,109,109,113,113,102,97,94,97,108,75,91,101,99,102,103,104,103,104,105,98,119,108,102,109,106,110,112,96,102,105,99,103,104,100,95,97,92,97,95,101,101,108,103,118,111,118,107,104,90,120,109,97,108,107,100,100,101,113,101,102,107,102,108,106,113,102,118,100,111,120,113,103,107,90,105,98,105,110,100,115,113,111,100,101,103,106,108,108,111,105,90,116,104,99,110,107,99,99,105,111,103,102,98,100,112,113,104,114,99,103,98,111,100,109,103,107,108,113,95,109,90,105,95,114,108,91,100,113,128,83,105,115,119,115,86,108,104,77,96,91,110,96,109,100,112,99,109,106,96,109,90,114,95,116,104,103,109,105,108,105,118,104,117,99,108,116,110,113,112,114,127,138,138,155,184,162,148,164,167,164,137,172,162,179,139,109,99,114,117,104,123,104,112,98,106,100,107,107,107,94,118,98,114,114,110,116,106,116,104,99,104,106,110,116,116,111,110,104,96,110,121,98,112,102,101,105,117,109,107,113,102,100,108,112,111,106,118,104,98,118,109,102,108,96,97,114,109,111,104,106,109,110,95,108,109,121,106,121,109,106,110,104,108,128,93,104,105,98,107,110,98,103,102,96,110,104,101,109,112,113,105,109,111,106,125,107,108,106,111,111,108,103,102,104,96,106,113,109,103,104,105,110,104,104,110,103,114,114,91,114,103,99,109,97,109,108,94,121,109,106,117,66,98,86,114,107,111,114,102,107,98,111,123,107,108,106,110,110,112,110,118,110,104,105,101,105,110,106,117,103,102,118,112,116,116,111,121,95,114,114,108,94,103,102,103,106,108,106,111,105,113,100,109,104,96,109,97,121,113,98,117,110,105,113,111,107,97,116,82,101,118,112,108,117,113,107,114,105,99,102,111,107,118,111,120,92,97,108,112,96,124,107,122,110,99,115,105,102,112,100,105,105,102,95,102,76,118,109,108,103,109,101,110,101,103,101,95,105,117,98,105,105,106,99,99,98,88,104,111,110,104,113,107,95,92,110,113,106,125,106,97,105,98,98,113,117,115,120,107,102,113,109,96,112,106,98,96,104,107,110,106,114,90,113,114,111,100,105,105,107,102,102,113,112,116,108,125,102,108,111,104,107,105,103,99,117,115,115,111,121,100,102,114,115,99,111,99,116,102,115,98,100,105,106,120,114,105,112,105,108,112,105,98,100,87,110,112,114,104,109,113,112,118,107,120,99,88,106,115,104,114,101,103,95,102,108,100,114,104,121,113,107,105,107,115,98,104,102,109,96,109,105,90,116,114,105,95,108,102,112,103,100,96,105,127,105,113,107,111,107,101,113,104,113,110,112,116,104,95,104,113,105,115,116,95,109,110,107,108,114,99,113,108,101,108,103,117,108,98,106,105,97,100,97,105,107,99,94,110,95,95,103,107,109,116,105,103,105,105,109,104,98,100,113,93,100,96,102,93,102,100,103,113,95,107,109,101,107,109,118,100,107,102,115,109,109,101,113,100,108,98,103,112,112,109,113,101,97,109,95,105,100,107,102,119,112,102,100,104,102,102,108,111,100,125,110,128,91,116,110,107,107,99,106,112,124,102,110,112,105,105,100,103,105,108,107,117,120,98,105,102,100,110,117,104,112,97,106,103,110,111,109,103,114,102,121,95,113,108,109,102,104,102,105,103,99,112,97,112,107,111,107,115,114,105,96,123,91,102,107,99,114,113,113,101,94,108,116,102,116,105,124,100,108,98,117,113,117,100,115,110,115,109,107,95,99,122,112,117,114,108,120,95,112,93,111,104,95,101,107,115,107,100,97,112,100,111,107,101,106,94,109,103,117,101,118,116,110,111,91,104,96,110,98,108,107,101,113,109,103,98,108,103,110,125,100,102,100,101,112,110,107,112,100,87,107,114,108,117,103,91,109,97,99,107,111,109,104,110,122,107,116,106,108,109,114,111,98,109,114,111,104,106,104,109,93,110,111,114,105,110,122,98,98,102,99,103,90,102,109,100,112,115,113,110,120,104,114,95,113,119,123,107,113,102,109,103,95,97,96,107,102,93,105,117,110,102,103,104,108,109,117,104,83,98,94,120,102,106,104,102,107,110,111,111,104,112,114,106,110,102,109,106,105,110,100,106,114,100,117,102,113,100,105,113,109,95,104,102,112,100,95,95,87,99,105,103,109,106,106,94,111,104,110,98,116,113,93,103,107,107,118,105,114,103,103,100,101,106,91,88,99,65,98,100,113,110,113,105,120,112,98,111,103,104,111,110,95,95,100,110,109,110,105,103,108,96,104,106,99,105,107,94,105,104,98,100,104,108,101,101,101,110,123,115,117,95,95,112,106,109,102,102,111,126,117,90,113,124,108,106,106,107,106,112,100,108,107,103,100,101,110,121,103,108,93,106,110,111,115,117,101,90,105,120,101,111,96,111,112,101,108,94,108,106,117,96,92,91,107,102,108,102,99,107,108,93,97,104,102,109,119,105,109,104,107,96,105,71,105,112,105,101,103,101,104,102,106,111,108,95,92,111,98,105,105,104,108,109,106,106,103,111,104,95,100,93,123,104,108,108,107,105,108,94,108,106,95,102,99,101,103,110,112,101,106,110,110,111,107,110,108,93,122,120,103,108,105,101,99,103,111,108,109,105,107,105,109,101,104,101,115,89,111,111,110,110,102,106,109,105,113,109,99,92,119,103,121,105,102,99,110,106,85,105,121,98,105,111,115,110,102,93,95,132,105,110,101,101,106,107,109,97,91,111,109,103,98,102,107,110,105,110,112,113,127,108,97,108,119,109,109,104,106,115,99,110,103,113,105,107,116,99,92,94,104,90,100,103,110,112,113,113,106,97,97,88,99,104,96,114,105,125,113,101,103,99,109,109,110,100,103,105,91,98,100,100,119,121,101,110, +558.02393,108,95,95,88,101,102,110,90,86,102,101,92,107,79,107,106,102,111,114,98,92,99,101,100,100,88,103,97,105,107,101,101,96,106,113,96,103,97,102,111,94,103,90,101,99,110,113,111,101,94,91,95,96,102,97,100,104,96,90,84,109,103,99,105,97,100,94,112,98,95,102,107,107,107,99,96,93,106,95,104,102,113,99,107,104,96,100,107,105,111,99,102,117,109,104,108,102,92,98,93,98,86,100,103,99,97,106,94,97,103,98,99,113,110,106,96,105,109,106,91,92,114,97,90,107,101,103,104,111,95,88,112,99,108,106,100,98,106,109,97,102,111,91,105,97,112,106,100,99,95,111,100,105,97,98,103,94,116,98,98,94,107,105,105,94,99,95,102,109,98,106,96,113,114,97,101,118,106,100,95,110,94,104,103,115,101,91,103,100,102,96,94,93,104,106,85,109,109,94,100,103,105,109,105,100,98,95,97,107,109,109,109,114,113,111,103,92,92,102,103,96,112,110,102,95,118,101,100,87,115,93,105,105,98,97,103,99,128,94,107,102,101,105,99,100,101,102,104,89,102,97,90,90,109,68,122,105,113,98,106,102,108,105,106,109,99,96,116,103,99,107,98,106,107,110,116,104,112,96,106,103,107,92,101,90,88,95,99,111,114,102,103,100,110,97,108,102,110,99,98,106,105,104,105,107,112,108,101,101,101,94,108,106,95,83,104,109,112,104,93,112,94,101,112,101,101,94,89,113,102,104,105,105,110,106,99,116,105,119,100,90,106,95,99,125,117,106,97,114,101,107,100,114,109,97,99,114,104,110,110,97,102,101,94,99,113,105,98,114,116,103,105,114,119,107,98,99,107,103,117,107,113,105,108,98,104,100,97,107,96,103,87,85,105,107,89,106,96,98,111,98,92,106,104,95,89,108,105,120,117,100,103,106,95,107,90,99,102,113,101,100,100,100,100,99,98,111,101,100,107,104,96,111,106,98,99,111,106,111,120,109,111,106,96,93,102,101,109,100,101,111,102,76,110,110,101,100,102,117,97,106,103,87,104,82,112,101,108,113,97,103,102,105,127,106,95,97,115,112,113,108,108,111,104,114,96,117,117,102,104,109,110,104,119,98,96,105,101,96,104,99,116,109,95,96,98,96,99,104,102,95,99,111,106,104,104,75,118,96,93,104,100,106,104,101,109,105,102,103,108,106,102,101,95,118,106,98,108,110,105,102,112,93,110,110,108,113,97,109,91,109,101,103,103,108,105,107,113,96,99,107,103,89,128,111,95,113,102,96,105,88,94,116,107,92,128,103,101,98,109,109,94,101,105,103,79,105,103,104,98,96,100,102,103,110,106,84,105,94,100,104,107,103,100,106,105,88,101,103,105,102,104,107,111,103,104,130,90,121,101,112,89,111,104,106,95,110,103,120,107,95,108,95,108,79,95,102,106,101,117,117,105,111,93,95,96,96,106,95,112,101,108,108,98,112,104,100,113,112,97,114,108,99,108,95,99,116,96,114,101,103,115,92,97,98,102,104,80,104,131,113,103,110,95,109,105,114,106,110,108,102,99,91,118,112,102,86,101,95,101,102,103,107,106,104,103,116,96,105,107,108,104,95,103,72,101,94,112,98,115,113,110,104,122,105,100,100,86,104,114,105,99,92,96,101,103,96,103,108,110,97,107,106,109,99,118,109,88,101,112,97,95,102,106,80,99,106,108,98,98,114,107,108,107,104,114,103,106,107,95,104,108,110,97,104,106,104,102,101,111,120,106,109,99,106,115,105,112,106,108,94,112,107,105,99,143,105,101,106,112,109,101,98,99,102,104,107,105,110,100,110,106,99,97,110,95,100,97,107,96,112,107,99,97,111,115,101,98,104,122,110,104,101,102,107,108,111,112,111,109,92,105,111,116,107,96,88,100,104,101,111,95,105,107,97,124,92,107,105,105,103,102,106,98,99,109,106,98,105,117,104,99,99,109,91,100,120,110,97,113,103,105,107,95,92,115,105,120,101,106,103,115,103,97,110,101,109,117,88,106,113,116,106,111,111,100,117,102,90,108,98,75,111,100,102,101,106,107,101,106,92,100,98,102,102,113,107,98,101,113,110,104,111,111,104,99,108,103,99,100,108,107,116,99,110,100,106,101,114,110,114,99,124,113,114,102,102,107,111,106,98,98,111,96,103,105,106,94,99,90,104,106,113,88,108,90,108,118,119,116,100,112,109,114,94,112,100,81,105,94,103,116,101,107,103,92,110,104,72,112,110,107,104,104,100,102,93,108,104,106,96,106,98,111,112,105,101,98,109,99,114,109,107,102,92,121,107,100,115,116,113,108,107,112,109,109,101,98,117,127,150,141,140,172,187,180,189,159,156,157,140,138,157,122,117,127,146,123,111,84,102,123,121,106,106,114,102,103,117,119,106,102,104,96,118,121,94,102,105,103,79,97,109,106,87,95,103,102,106,107,104,105,96,102,91,100,104,95,109,101,97,99,109,99,94,101,108,101,102,108,117,117,112,103,101,106,106,108,96,99,108,93,86,95,111,104,96,102,67,105,104,99,106,98,101,109,101,108,106,105,105,92,98,107,99,110,106,92,119,91,99,94,92,110,93,97,102,103,94,109,107,101,109,85,117,110,106,114,114,110,112,101,103,108,99,99,106,102,106,104,102,98,101,98,107,87,115,96,91,102,106,99,100,104,100,95,109,95,106,109,102,98,103,103,109,101,105,104,105,100,94,99,100,111,111,116,94,120,113,112,106,97,94,111,93,103,99,103,83,92,109,110,71,103,88,111,107,99,116,123,98,101,107,102,111,109,104,98,108,105,102,106,102,100,100,100,110,108,99,104,107,105,108,115,109,106,103,95,101,119,110,106,102,121,104,102,100,136,117,99,112,104,108,108,105,95,99,114,102,107,104,110,98,100,105,109,97,106,103,104,109,107,107,102,101,101,97,112,96,96,105,105,100,101,117,103,99,106,104,92,111,102,101,109,101,114,104,108,103,87,110,97,112,112,102,108,94,104,104,102,107,110,99,106,116,98,95,102,98,103,109,106,101,95,106,95,103,95,102,103,107,115,115,108,109,112,109,113,108,109,109,110,92,103,90,80,103,105,105,97,103,90,92,101,117,105,107,98,106,106,96,126,102,81,105,98,101,105,111,124,106,108,82,90,96,116,100,100,105,104,107,105,112,117,108,92,108,106,98,110,106,108,106,87,106,108,119,92,120,105,94,124,98,113,105,103,108,108,97,103,108,109,106,101,105,106,114,110,73,94,115,111,98,96,104,96,108,101,102,106,113,104,109,104,94,112,98,109,111,98,103,110,101,96,110,106,99,106,117,100,100,101,110,101,104,102,106,105,100,88,97,103,109,91,92,100,103,111,105,109,105,103,106,100,102,103,108,106,95,113,78,107,69,106,121,105,107,102,101,93,91,106,99,101,99,100,107,105,105,105,110,91,104,93,94,97,109,103,109,100,100,109,91,106,104,105,103,88,107,108,107,106,116,108,107,96,116,108,94,114,94,109,109,145,109,103,112,102,107,112,95,94,101,100,69,113,105,105,106,97,95,119,102,116,105,111,112,100,99,91,101,93,100,113,122,100,99,108,102,108,96,102,106,105,102,104,107,109,101,121,104,103,91,103,110,96,102,120,103,105,99,113,103,105,106,101,111,114,102,107,102,94,102,108,101,95,101,103,102,106,117,94,110,113,109,106,115,111,93,108,107,103,108,95,104,91,96,111,104,101,115,126,112,103,103,103,93,102,96,94,113,114,89,86,109,104,101,108,114,98,104,106,110,109,110,106,100,100,95,108,100,105,102,111,92,103,117,98,99,99,111,103,104,104,105,111,110,106,106,96,99,103,101,97,99,104,108,93,94,94,114,95,112,107,104,104,102,99,96,101,100,106,88,91,94,119,113,110,99,111,104,99,90,116,101,112,110,91,110,106,116,104,101,98,98,105,98,106,99,108,94,111,107,101,98,94,108,100,107,99,97,96,103,116,88,105,104,93,107,107,107,101,128,100,95,98,103,106,106,113,98,107,115,104,105,108,103,99,95,104,103,110,97,99,107,126,99,115,94,104,109,104,106,98,104,102,111,106,112,107,112,103,94,99,99,93,106,108,99,112,111,106,113,104,91,68,108,101,95,89,96,104,105,103,110,110,102,112,104,109,99,95,99,108,109,98,100,105,100,111,109,89,105,91,100,90,102,102,99,90,96,103,95,104,96,97,107,105,106,109,99,101,106,107,106,102,101,94,98,102,84,101,101,105,101,114,102,95,98,107,105,96,107,91,105,107,113,104,99,109,103,94,94,102,105,105,110,109,106,110,96,96,103,111,113,105,100,109,98,92,109,110,116,99,95,106,95,84,100,95,99,83,108,97,98,103,101,106,105,113,111,97,106,98,105,103,95,100,105,102,100,102,105,107,104,112,104,104,105,107,104,107,109,105,130,99,116,105,96,71,88,86,104,116,105,102,109,106,107,124,99,109,78,98,102,110,107,111,105,108,109,108,96,95,103,88,95,88,109,107,95,124,89,101,129,104,117,97,87,91,107,104,99,108,117,103,99,105,118,117,110,110,100,102,101,117,110,110,92,88,108,98,100,95,93,100,105,106,109,88,99,103,104,98,100,106,90,99,107,111,110,100,112,116,99,101,105,108,103,102,105,101,111,90,108,97,107,87,107,100,80,118,106,107,101,96,111,132,111,103,111,113,100,106,98,98,86,102,111,99,93,103,105,105,92,112,91,105,110,98,111,95,122,120,110,94,119,110,108,112,110,94,87,87,117,106,98,91,106,105,114,101,105,108,102,93,93,116,106,97,105,92,106,121,113,104,119,111,90,111,122,96,100,89,105,84,112,118,116,99, +558.16479,106,105,104,101,101,108,100,116,109,113,102,108,98,106,104,100,99,106,102,116,109,91,95,113,99,107,85,116,117,101,114,107,110,107,107,103,107,105,105,82,97,104,93,103,124,104,98,116,112,108,104,109,106,112,109,142,104,89,98,98,108,93,96,80,110,118,99,124,116,101,124,110,99,104,121,106,110,101,105,112,112,106,90,105,110,91,107,115,98,102,112,110,99,116,109,103,104,127,98,96,103,125,95,107,102,103,116,76,104,74,97,104,112,108,107,138,107,100,113,98,71,89,106,111,108,109,112,98,113,106,103,100,103,112,106,108,109,100,85,99,113,116,102,110,95,107,114,105,98,103,102,103,105,108,102,106,105,122,107,104,91,104,101,115,108,106,107,101,109,109,110,96,105,110,113,107,114,106,107,102,78,107,101,91,111,93,125,94,115,105,96,112,106,104,105,107,94,109,109,107,114,101,115,87,105,114,96,107,96,112,107,110,107,106,119,107,100,83,86,89,109,113,108,105,65,113,106,107,92,114,110,114,101,105,103,97,114,99,107,106,93,102,112,116,111,115,110,112,108,107,95,107,107,103,110,101,98,90,103,112,109,104,103,103,95,100,94,103,105,117,112,105,91,115,99,113,107,116,113,109,106,113,100,99,112,103,95,88,96,99,95,102,114,107,102,111,114,100,109,107,113,102,110,108,97,113,112,123,107,116,104,112,112,99,108,111,107,105,98,99,110,105,109,99,109,114,104,99,106,120,113,99,111,113,100,103,101,111,104,103,101,105,106,106,105,110,107,107,117,106,103,113,104,106,108,108,101,107,111,109,110,110,110,108,111,98,107,105,94,106,111,105,110,125,101,95,107,109,112,100,102,103,103,112,105,104,105,90,125,105,137,102,96,100,112,108,100,106,120,108,103,90,100,105,95,111,105,117,96,107,95,98,102,111,111,90,110,100,104,98,118,97,92,114,104,100,97,105,100,134,94,110,114,106,101,110,104,109,108,114,114,106,105,103,96,92,106,91,109,111,109,110,121,107,112,92,114,105,114,103,104,80,101,103,128,121,125,118,111,107,102,125,115,114,93,108,103,112,91,110,95,99,110,106,81,114,111,109,97,98,113,109,108,100,100,104,106,120,104,108,122,99,104,106,113,111,109,113,84,124,118,107,102,111,122,98,103,106,111,96,111,98,117,114,106,110,119,97,95,110,105,109,100,105,105,114,115,105,108,109,106,110,103,102,118,98,107,92,112,107,104,109,113,106,110,91,106,95,105,121,99,105,96,110,101,134,102,108,95,117,103,108,108,97,103,110,121,99,108,98,102,98,103,98,115,94,113,112,103,85,111,115,111,95,111,110,103,111,103,100,105,98,114,87,110,113,97,90,109,111,83,116,111,120,96,110,118,99,112,106,101,109,104,102,104,103,104,108,111,104,107,100,110,101,99,106,114,100,100,94,104,88,98,99,106,107,103,99,98,109,105,111,104,98,112,116,100,103,112,123,112,112,105,111,96,113,126,108,120,111,99,91,117,108,98,111,106,110,105,109,109,109,108,90,96,104,101,109,109,110,109,107,103,107,107,102,105,104,103,106,103,105,105,101,111,104,104,102,109,108,101,95,113,108,97,99,113,104,110,104,109,106,109,108,90,96,112,108,94,105,105,113,101,97,109,92,104,100,113,104,107,113,108,104,110,105,122,79,98,113,105,110,117,108,103,108,109,112,115,96,105,110,106,106,101,110,105,81,113,121,101,101,95,120,125,70,100,105,99,100,112,95,106,111,102,103,99,106,109,112,99,105,102,116,97,120,98,109,113,109,112,104,90,104,105,106,111,112,115,110,124,109,105,112,103,106,107,116,101,111,114,110,108,103,107,113,106,95,101,107,95,100,106,105,100,107,118,110,112,116,108,115,107,101,113,97,95,89,95,100,97,68,113,99,108,108,112,104,99,111,95,104,106,108,106,102,109,107,103,106,101,114,98,103,95,109,98,103,123,104,81,113,104,117,105,101,101,107,112,110,108,117,99,102,106,104,102,102,107,107,94,103,105,112,107,105,99,111,107,93,117,108,96,95,120,108,123,88,104,108,116,106,107,114,134,113,122,111,104,107,120,96,99,79,106,100,103,109,113,103,103,115,104,109,108,86,117,101,111,111,98,108,105,110,117,103,118,108,109,107,110,109,99,107,124,106,102,96,102,105,104,105,100,99,103,105,114,97,117,108,103,103,98,111,103,98,94,99,106,102,118,95,111,104,105,101,99,99,108,101,115,109,93,108,109,108,112,104,100,120,104,114,105,107,106,102,104,108,109,99,120,101,100,98,100,100,98,106,120,102,110,121,100,95,124,98,105,115,114,129,130,161,128,173,159,192,162,167,143,177,169,179,141,141,116,133,113,123,107,88,111,142,105,117,126,97,107,117,97,98,105,106,104,104,121,107,105,113,102,100,111,95,104,87,114,111,99,101,114,105,94,101,110,113,108,98,96,109,100,98,105,96,114,105,108,104,92,110,100,102,114,102,108,106,112,97,107,116,104,107,92,108,101,101,104,113,105,104,104,103,82,116,106,105,98,104,104,103,101,98,121,91,99,108,94,103,106,105,117,92,102,102,106,112,91,95,113,101,92,99,105,88,101,76,113,130,113,108,111,107,102,109,108,97,120,107,100,104,90,101,100,105,105,116,107,117,110,117,103,100,96,99,108,107,85,112,111,100,114,97,99,97,109,93,103,98,99,109,100,107,108,83,109,112,109,102,115,127,108,109,109,110,107,107,103,106,110,106,111,113,106,93,105,121,107,77,117,109,102,104,108,108,101,98,118,100,117,116,115,103,102,101,116,100,94,108,100,99,87,108,107,108,103,96,106,106,107,106,109,107,101,117,108,111,96,73,94,104,113,106,110,102,112,101,110,95,107,99,104,113,111,93,104,96,111,102,101,93,104,98,112,114,97,111,98,124,104,111,117,92,89,98,119,104,103,95,98,103,100,92,110,108,108,97,113,102,109,105,109,91,83,86,113,106,108,98,103,106,106,116,105,101,105,89,104,96,94,107,102,102,85,104,105,109,101,104,99,104,107,102,123,108,118,95,106,104,113,96,106,95,118,89,96,114,103,102,96,95,98,96,99,79,88,107,95,96,99,112,102,103,103,101,95,111,107,106,109,102,147,119,100,106,98,102,100,108,102,99,112,113,112,112,97,125,102,107,100,117,111,104,103,107,128,102,94,102,112,104,114,105,108,108,96,117,112,100,103,111,92,113,107,104,100,104,109,96,106,109,106,111,105,99,113,99,115,96,113,109,96,90,106,104,111,97,103,88,101,109,90,102,98,106,99,91,102,105,92,120,101,104,102,109,112,100,91,112,103,106,113,101,100,97,108,102,93,101,106,100,78,114,88,103,107,100,98,94,102,92,106,104,94,94,104,100,98,96,105,104,98,103,119,95,96,112,102,89,100,96,97,95,113,112,98,85,95,112,105,109,102,103,106,105,100,98,99,99,113,96,113,91,107,101,101,100,105,114,124,109,112,103,100,111,101,89,105,108,97,111,92,113,102,93,99,114,92,95,98,111,112,91,107,109,100,97,105,107,78,94,113,110,88,92,95,113,104,96,106,98,115,107,99,106,106,99,106,101,105,108,104,99,99,105,105,109,100,103,108,100,105,103,99,107,113,100,95,113,101,90,107,116,103,100,96,99,106,108,99,106,117,102,109,103,121,96,102,110,98,94,107,106,93,108,112,105,105,97,113,95,98,105,98,104,107,98,92,94,124,102,100,106,98,115,98,115,102,93,103,96,113,109,109,101,101,101,113,109,96,97,92,96,90,110,97,103,99,95,103,85,105,108,108,101,101,95,102,114,102,99,111,99,107,104,108,99,107,108,101,93,96,108,102,111,96,102,117,113,99,101,110,96,104,102,108,102,116,108,97,99,118,109,95,107,112,103,101,94,98,101,97,105,88,102,83,100,120,96,92,110,105,98,100,99,93,115,99,108,93,119,107,113,101,106,108,106,94,113,104,88,104,106,104,111,99,98,112,125,91,98,112,99,109,105,99,103,97,123,99,101,105,98,100,102,72,98,108,103,104,94,98,100,102,99,105,101,106,113,106,113,86,108,94,97,100,109,92,103,92,93,108,110,107,99,100,103,112,102,113,75,109,92,108,102,94,95,106,128,84,104,112,107,106,103,102,87,106,104,70,81,92,113,92,102,113,111,100,112,107,114,98,83,100,97,108,100,97,98,111,106,96,103,98,100,99,97,121,99,99,106,99,103,107,105,111,117,107,106,80,115,102,104,105,116,95,112,90,110,90,76,102,102,93,99,104,109,100,110,111,94,91,105,89,108,104,109,104,125,107,102,96,100,108,108,111,120,83,108,96,102,101,94,97,103,109,105,104,109,100,102,103,107,97,112,100,97,108,103,85,95,100,107,104,110,102,107,105,98,97,103,104,96,108,103,96,88,109,102,98,96,109,91,89,94,99,100,98,107,111,103,100,95,104,89,105,93,98,92,108,108,95,119,94,100,98,117,85,115,93,109,98,111,93,104,114,94,101,110,93,109,96,105,96,101,107,107,105,95,108,93,103,82,101,104,99,99,97,106,104,98,112,95,102,106,117,116,103,104,90,100,105,83,99,95,111,101,97,100,98,105,115,100,104,93,99,106,105,107,98,103,101,98,114,98,110,94,121,97,99,98,100,99,96,120,86,98,105,100,110,99,120,102,104,91,97,109,91,87,91,108,99,97,98,99,102,107,95,102,108,103,96,103,94,103,111,105,104,94,97,102,107,110,100,98,109,100,109,94,92,67,100,80,90,107,108,104,92,118,98,109,109,105,107,94,108,84,102,100,98,100,108,105,101,95,107,97,97,99,116,97,110,88, +558.30566,104,87,92,84,109,105,94,96,101,99,112,90,62,99,105,95,103,138,122,105,106,103,100,87,108,108,103,108,116,101,114,98,97,114,109,107,95,98,106,104,100,95,110,98,99,106,102,99,97,104,101,107,102,109,110,100,97,102,111,90,104,105,110,96,92,114,102,104,115,104,108,103,99,98,123,103,102,99,104,98,107,107,108,110,104,98,96,104,110,109,103,94,108,99,102,116,107,103,91,90,96,103,93,103,104,84,113,92,95,115,108,93,112,107,107,114,111,104,102,107,110,94,106,120,107,106,111,98,113,114,117,106,109,107,100,112,104,94,92,106,99,97,106,88,105,104,110,111,110,108,102,121,107,99,93,111,111,106,104,112,107,95,102,97,110,109,116,113,108,111,108,108,102,97,104,98,118,106,107,102,103,109,101,101,95,102,105,97,117,102,106,105,109,97,98,110,111,104,94,79,104,115,109,106,106,99,101,103,108,109,106,115,106,112,106,108,95,114,93,100,97,108,91,99,91,104,107,107,100,106,116,106,104,99,100,100,108,108,104,103,100,113,100,106,93,93,106,96,106,108,110,100,93,114,117,104,99,108,99,105,97,119,87,110,96,100,106,88,103,87,109,92,107,96,114,103,108,123,100,106,100,103,102,99,105,101,99,105,106,106,91,99,99,101,105,108,104,94,112,89,91,108,106,118,104,100,103,104,110,103,97,110,103,114,95,117,107,94,103,101,113,116,90,111,113,116,102,95,111,102,113,99,117,91,102,114,116,103,107,101,92,105,109,101,94,108,95,102,98,103,110,100,103,103,103,120,109,107,100,103,99,106,103,106,104,101,105,95,96,104,113,90,109,104,107,105,112,106,95,101,111,106,98,103,96,100,108,114,100,105,111,96,85,107,98,105,106,104,109,109,106,106,105,105,97,91,102,105,104,105,91,105,99,108,108,111,101,100,115,94,100,112,101,101,114,111,108,111,102,95,95,97,114,104,109,95,96,108,117,87,92,111,96,103,109,95,99,118,107,112,104,107,97,75,106,115,101,108,95,106,113,113,95,110,85,105,101,101,95,110,116,108,110,105,100,113,95,102,113,96,111,108,114,116,106,108,111,104,102,114,103,102,108,108,103,102,100,111,113,105,120,114,112,108,111,100,99,103,112,107,107,99,105,105,94,107,101,107,105,98,108,113,98,112,106,108,103,103,112,102,106,110,95,97,101,110,96,113,95,109,105,126,112,110,114,94,107,102,112,97,106,108,97,105,114,105,104,115,107,101,104,103,92,106,107,125,113,105,113,99,107,105,113,101,102,109,101,112,101,105,102,102,114,107,106,100,98,91,101,108,107,112,102,104,108,104,101,105,103,104,98,110,106,102,111,102,90,100,99,103,96,116,119,105,104,84,101,103,109,107,107,103,115,109,113,100,96,107,97,97,95,111,100,109,103,112,104,96,99,100,111,107,89,103,104,98,96,104,107,108,97,95,107,111,104,103,103,99,116,105,97,104,107,106,108,90,99,109,113,100,109,112,117,74,104,103,101,109,108,109,111,92,111,99,94,95,98,119,105,94,106,108,95,100,101,113,87,103,97,97,104,100,107,109,102,112,103,107,113,96,109,106,103,107,82,103,103,104,104,107,102,106,115,104,105,105,114,105,105,106,98,99,100,94,103,96,108,114,104,93,116,101,95,127,111,112,99,107,100,103,103,108,95,98,103,109,108,102,110,106,91,108,99,101,100,105,100,104,100,107,91,101,110,109,107,105,102,106,104,95,120,106,99,98,106,96,96,102,112,110,104,101,87,100,96,109,104,117,111,109,108,104,113,115,96,98,101,113,107,96,109,101,106,108,107,113,109,96,120,109,104,106,96,99,97,102,106,104,113,106,121,94,110,107,105,102,113,112,105,100,98,106,117,116,103,112,108,86,100,78,101,101,91,105,97,114,109,98,104,110,109,110,106,102,101,105,90,115,110,104,103,100,100,113,77,113,107,100,98,111,125,110,103,98,105,89,98,104,98,113,107,107,104,101,109,99,102,116,107,104,104,106,111,113,110,96,103,99,91,101,98,125,112,102,101,129,95,103,109,97,112,99,108,109,104,118,104,110,99,98,109,110,94,114,108,100,101,99,102,105,104,105,99,107,103,100,100,110,132,99,101,101,116,102,107,118,104,105,99,98,102,112,106,109,106,105,93,102,101,117,100,100,103,108,108,98,104,98,100,107,106,114,100,87,95,110,105,103,96,118,107,103,109,111,98,92,100,109,111,104,118,96,105,87,108,105,113,92,97,101,94,100,101,112,108,113,107,105,114,98,111,112,103,96,102,112,100,100,112,100,112,103,112,110,134,133,108,119,115,112,140,153,165,186,188,184,193,162,147,165,147,130,138,130,133,132,132,116,138,115,106,111,99,87,106,95,117,102,118,103,96,106,102,99,116,119,103,104,94,111,102,106,97,115,115,101,107,108,116,106,92,112,104,105,102,102,97,105,117,114,114,94,119,104,103,95,120,94,106,103,100,104,103,93,106,106,100,105,93,109,101,98,116,100,111,108,108,105,97,101,103,113,93,91,107,103,107,98,98,102,107,99,100,101,100,109,108,108,118,105,120,110,106,104,104,109,83,105,113,111,108,85,120,102,109,108,108,106,120,115,108,101,108,102,108,100,111,113,98,105,107,106,116,81,113,113,94,105,114,106,103,111,106,117,113,112,106,114,108,114,104,116,100,106,97,81,98,106,102,99,95,95,104,94,103,112,112,105,115,112,101,121,111,99,107,98,105,115,99,113,106,115,108,112,107,96,109,102,115,108,104,102,116,96,119,115,121,121,103,111,94,105,125,107,100,105,105,111,102,108,113,117,112,109,105,106,107,102,110,115,120,115,105,114,104,101,101,106,103,107,110,113,112,106,107,109,104,116,97,105,97,103,96,97,110,116,106,98,83,104,105,113,113,99,106,92,107,120,105,117,101,103,112,98,112,127,113,105,96,88,95,113,117,108,107,103,96,108,109,112,95,109,104,108,113,94,109,113,105,106,90,106,110,104,113,109,115,98,110,101,109,107,100,87,93,105,107,114,98,100,112,99,113,104,106,103,111,115,99,109,106,107,100,105,104,112,125,113,110,107,113,99,108,115,107,99,96,126,106,116,105,89,105,97,83,109,107,100,114,110,95,111,97,117,104,113,116,117,111,113,102,94,107,109,102,94,105,102,94,106,100,105,102,84,102,100,116,99,111,100,101,105,119,112,100,110,107,110,97,99,102,101,96,101,107,112,108,105,107,97,106,102,111,121,111,102,111,105,103,102,107,118,114,98,107,109,102,98,108,103,98,107,100,111,117,110,118,98,110,107,100,85,125,121,109,106,107,103,95,117,89,96,107,102,103,103,105,104,110,80,107,104,108,99,100,101,104,101,112,108,111,114,103,99,103,107,110,110,103,109,108,101,101,109,95,118,106,104,108,111,114,102,112,96,116,104,104,108,111,107,117,110,107,102,107,105,103,115,106,101,104,102,97,100,106,110,96,106,107,121,103,107,104,111,114,108,127,105,109,113,118,100,103,112,93,105,110,102,114,98,94,104,103,118,112,104,99,109,106,104,92,69,100,100,95,91,87,104,109,109,100,95,100,105,117,105,94,107,102,111,109,108,108,102,99,96,112,117,104,104,113,113,104,102,109,101,104,112,106,99,111,101,115,111,111,103,108,115,118,102,109,119,117,100,102,88,106,96,103,101,110,107,99,104,101,108,98,117,100,108,112,113,103,105,91,102,89,105,116,134,87,100,112,104,104,94,114,116,106,106,110,102,99,100,110,103,106,116,103,101,102,116,110,106,102,107,109,100,104,113,109,114,107,122,105,120,104,112,105,113,113,110,104,132,124,99,96,115,105,109,105,102,109,104,104,107,96,99,110,98,108,105,114,104,108,117,118,103,108,116,106,106,105,121,104,98,137,102,116,101,121,102,103,106,109,109,104,102,109,102,105,107,90,108,107,98,107,116,117,103,114,104,106,112,111,107,113,113,97,109,116,96,113,92,117,99,100,106,104,103,93,107,121,107,108,107,100,106,103,105,108,112,104,114,109,107,109,103,109,119,90,107,109,101,113,98,107,111,103,112,111,89,103,100,104,107,88,108,106,115,111,107,96,92,104,97,107,102,100,93,108,113,102,104,114,107,100,112,94,100,109,104,101,108,105,103,113,110,109,111,115,106,81,116,90,99,112,112,105,97,108,101,96,100,91,103,97,102,105,109,95,100,130,106,104,111,104,109,73,109,95,102,102,111,105,105,96,105,103,107,99,113,103,106,113,75,102,101,104,102,120,105,101,117,99,108,103,109,105,93,106,105,105,91,109,111,108,111,123,105,113,110,100,104,104,100,88,109,112,110,106,101,107,101,101,102,96,109,110,109,110,106,101,109,108,121,96,113,112,103,109,109,107,90,112,109,127,103,110,104,108,95,103,111,108,120,105,109,100,102,123,95,104,108,113,92,113,104,115,111,103,109,108,113,107,113,109,111,98,100,98,113,109,114,106,114,93,97,113,120,100,109,92,86,100,88,110,102,121,112,101,104,98,105,113,106,105,101,98,115,95,108,109,94,95,132,102,109,116,101,104,101,121,98,99,97,101,105,101,104,95,99,106,89,105,114,110,90,112,104,99,97,96,106,103,105,112,106,108,99,111,108,94,119,102,100,116,100,102,110,108,105,93,106,99,105,106,103,99,90,113,68,105,105,99,107,96,98,92,95,115,82,125,102,111,98,95,109,117,105,109,107,99,95,96,102,112,110,92,93,90,106,101,112,106,102,105,113,100,98,108,123,88,113,93,111,106,89,121,100,106,105,103,100,119,90,96,107,91,87,95,94,109,105,101,93,114,106,82,101, +558.44653,119,92,101,116,96,106,101,109,96,91,90,103,102,101,98,95,80,93,94,95,109,101,108,93,92,76,100,105,105,99,90,101,101,104,120,97,93,100,104,102,93,94,101,112,130,101,90,102,101,105,94,119,102,106,112,103,79,96,115,102,99,107,119,97,90,102,72,107,90,140,115,117,100,99,100,99,78,103,109,105,106,105,101,103,105,96,88,101,78,91,107,102,103,98,101,100,98,93,99,96,96,100,76,100,102,116,98,99,90,102,104,102,105,111,93,102,97,103,112,109,104,88,107,97,106,105,110,86,123,110,105,109,105,102,106,107,100,117,105,104,96,106,98,95,96,92,111,107,106,103,102,96,100,97,101,105,101,102,103,99,101,109,92,105,107,117,100,104,100,100,110,99,95,113,104,100,102,98,106,114,103,108,107,93,113,104,96,109,101,100,99,106,107,106,116,104,99,105,100,104,106,107,105,99,92,107,106,97,99,113,100,101,95,107,104,116,94,100,109,93,108,113,110,107,105,109,101,101,105,94,102,70,100,108,119,104,110,104,88,109,107,110,95,105,97,105,98,105,105,96,127,107,104,107,113,113,103,114,100,99,91,99,108,103,100,103,98,112,112,95,98,97,100,91,111,100,100,106,120,92,106,99,105,101,109,100,89,106,115,99,109,94,87,96,111,104,98,105,108,103,84,102,94,111,100,105,114,109,104,106,105,109,109,116,103,104,105,104,115,100,107,104,97,112,104,110,99,131,105,111,108,97,101,92,105,112,97,115,94,108,104,107,87,91,96,91,105,108,117,97,92,105,106,105,118,111,100,100,104,107,105,82,99,99,96,95,109,112,98,74,112,92,121,96,111,101,108,105,99,110,99,103,93,107,104,107,96,110,109,100,108,90,102,102,101,98,103,106,78,110,100,102,94,91,117,101,105,103,117,101,92,91,97,108,104,94,91,103,98,94,106,96,102,93,95,98,92,76,99,114,99,118,98,102,116,107,109,92,98,119,113,111,105,109,81,103,101,96,107,109,119,102,87,103,101,90,77,109,101,103,114,118,80,84,98,107,96,97,103,99,106,105,123,109,92,98,105,109,105,105,96,88,114,106,100,94,104,109,96,98,111,109,99,117,102,103,94,98,113,102,118,100,95,114,97,100,103,103,110,106,77,113,101,96,114,103,101,99,73,113,112,106,120,110,106,90,125,113,108,110,104,95,102,108,84,102,113,108,126,109,97,94,97,109,106,106,97,105,107,109,107,109,92,101,106,93,106,100,104,100,79,104,105,101,107,105,107,106,96,112,100,122,107,100,109,98,104,100,110,103,98,110,104,107,92,82,120,110,100,108,96,104,100,112,108,102,100,99,117,105,105,102,113,117,101,96,113,110,105,101,103,99,101,102,113,94,105,104,106,89,95,108,98,99,102,96,91,106,109,103,96,110,98,112,97,122,122,91,106,95,106,113,83,105,106,96,95,104,107,104,119,105,106,111,95,110,110,96,105,112,109,131,96,108,91,101,107,102,102,100,120,108,123,101,106,112,99,101,100,111,111,111,110,95,99,98,100,108,103,98,101,103,97,116,97,103,103,101,100,101,112,104,95,91,105,113,110,107,108,95,116,103,84,95,105,68,111,97,110,98,97,114,104,95,95,102,106,98,99,109,97,101,103,124,95,102,106,103,108,126,104,107,110,109,110,97,101,104,121,107,123,106,109,105,109,113,108,113,112,111,107,98,113,107,112,109,100,113,100,88,113,105,104,98,104,99,99,109,103,102,99,103,105,107,98,128,103,102,113,99,99,103,98,86,101,106,106,119,112,107,115,106,107,102,115,98,104,109,112,106,106,99,117,89,112,91,88,105,109,137,95,106,113,109,92,104,110,103,120,108,104,99,98,108,106,100,107,110,103,109,99,113,105,97,108,96,103,101,99,101,100,102,99,107,90,115,114,97,107,115,96,101,118,87,106,101,108,113,104,114,104,110,102,119,112,116,91,104,104,102,100,97,90,96,95,100,64,107,109,105,98,120,108,103,101,98,98,106,112,116,98,111,104,98,99,108,96,81,100,103,109,106,109,104,98,98,101,102,102,99,107,101,103,107,102,105,98,103,98,113,98,105,103,103,98,107,92,107,96,97,119,112,98,100,110,106,108,100,120,104,111,102,113,111,103,103,102,102,100,108,106,107,123,97,130,95,99,103,121,103,111,109,94,95,103,105,110,96,116,98,103,108,113,97,92,90,103,99,110,106,105,93,109,110,97,96,103,100,94,109,95,124,104,113,104,94,110,101,106,114,101,78,103,107,110,99,102,98,117,104,114,108,87,94,101,121,106,106,118,106,106,108,118,109,99,98,120,97,125,107,138,156,158,184,143,179,170,172,137,147,151,132,149,127,146,125,144,123,119,118,103,101,108,87,110,100,97,104,105,99,108,106,101,110,105,101,104,107,115,110,97,99,99,115,100,113,115,111,102,97,117,89,107,97,99,98,106,104,106,83,100,101,107,88,98,106,117,94,95,102,92,114,86,103,107,107,101,99,106,108,97,110,103,113,102,104,108,114,110,104,100,115,106,101,99,103,110,105,112,95,113,81,118,110,102,101,110,85,103,106,106,114,106,103,104,92,116,101,128,111,101,100,112,105,105,113,116,110,102,112,87,93,106,100,100,116,103,114,106,100,94,111,119,100,100,98,106,105,112,109,98,103,109,89,111,100,117,105,110,104,96,96,109,100,103,98,108,113,95,108,106,91,116,102,120,110,98,102,107,93,117,103,78,101,112,94,117,111,90,113,117,102,100,102,88,101,82,124,117,99,107,111,112,106,111,117,109,119,94,104,88,108,102,105,98,105,106,100,91,123,105,103,97,109,95,102,93,117,101,108,104,94,103,101,86,94,108,110,105,114,95,101,108,112,115,99,104,116,114,101,105,114,106,101,121,99,92,92,98,109,115,108,91,113,99,111,113,117,101,116,99,106,105,113,105,108,106,120,103,102,103,106,98,115,113,102,116,107,112,95,106,113,96,103,98,98,112,111,104,100,100,104,119,99,72,102,98,117,103,121,106,103,104,104,91,106,104,107,105,114,113,109,108,107,98,98,102,98,111,97,104,102,113,107,82,94,114,103,99,102,97,103,121,94,104,105,116,121,102,105,85,104,103,101,109,109,113,94,111,106,102,94,99,117,105,106,118,97,107,109,99,114,104,95,117,100,98,105,94,105,108,97,105,86,94,94,111,98,107,120,106,118,101,120,107,113,112,109,116,109,108,99,101,91,120,101,103,108,111,102,108,103,105,96,94,98,113,98,97,108,103,95,109,103,99,116,105,101,102,94,101,99,100,114,97,111,113,123,104,103,102,109,106,102,107,108,101,98,116,101,116,96,106,95,100,109,99,101,108,106,117,108,109,111,106,101,103,117,114,117,97,106,106,90,101,114,111,117,101,99,109,120,106,107,105,102,109,101,103,101,104,103,103,114,114,77,101,108,115,108,99,104,110,106,112,101,109,106,94,103,116,92,107,103,111,99,95,108,114,104,98,105,104,102,74,115,96,106,106,113,117,100,112,99,105,104,108,104,107,96,112,105,102,127,100,108,111,117,106,95,67,106,107,83,113,113,100,102,94,101,104,99,117,111,126,103,111,83,113,103,112,100,92,101,91,113,113,98,96,101,111,111,106,114,99,94,107,110,109,99,97,94,105,116,113,110,100,106,101,98,112,103,113,91,118,100,101,109,103,107,115,110,111,96,115,108,110,108,117,108,110,114,116,110,105,104,103,97,116,101,106,121,110,108,94,95,105,94,97,89,108,100,103,101,95,105,101,112,101,112,105,118,99,104,100,103,108,107,92,107,103,104,105,111,102,110,102,97,104,101,97,99,109,111,105,94,104,99,106,102,121,105,112,117,109,105,115,107,102,113,105,109,115,98,99,110,112,104,106,104,119,121,90,103,105,116,105,92,99,112,89,109,84,110,114,110,109,117,101,91,106,103,95,113,100,95,95,94,108,97,114,91,110,102,109,112,106,101,103,94,106,109,89,102,99,109,100,110,99,97,100,97,115,97,99,114,85,108,116,102,99,122,112,110,110,81,102,99,105,109,98,104,97,112,107,108,88,97,102,80,109,99,102,112,121,108,105,93,107,102,104,108,102,105,100,102,113,90,105,105,117,109,121,106,113,110,113,111,107,97,130,108,105,103,87,107,102,121,106,109,97,103,112,102,105,102,116,99,105,96,101,118,111,95,104,104,108,94,106,111,114,101,115,104,110,108,112,101,104,111,116,111,128,102,96,105,105,110,116,114,108,106,112,111,132,106,102,107,106,86,92,109,121,101,106,98,117,105,103,104,102,110,103,123,106,101,105,105,117,106,99,113,119,103,94,106,106,109,103,110,107,100,105,127,94,112,82,101,93,104,107,102,122,107,121,104,111,104,109,116,118,106,109,104,100,109,107,96,113,103,99,92,117,101,116,109,105,109,98,118,111,106,105,113,106,104,119,105,107,96,95,102,96,103,113,101,110,106,111,124,110,103,95,105,88,105,104,104,106,112,107,102,107,106,108,106,107,115,94,95,102,96,113,112,109,85,110,114,104,101,104,111,101,108,108,110,102,99,110,107,110,118,102,102,101,117,108,114,113,103,96,97,109,104,92,109,102,101,109,105,95,96,107,106,109,101,101,120,115,91,103,94,109,112,95,95,109,109,105,107,97,107,105,83,104,106,110,107,107,111,106,91,99,120,96,94,96,137,103,103,106,97,99,104,108,106,75,100,118,93,97,107,108,119,95,95,93,113,112,107,109,106,108,105,102,98,104,101,102,85,105,104,91,102,102,103,110,97,113,101,128,101,110,93,103,95,121,102,102,92,107,111,108,104,96,108,107,108,122,91, +558.5874,86,108,109,103,85,95,98,99,97,106,97,91,99,88,109,102,107,112,101,107,94,100,105,123,98,99,112,100,72,114,104,90,94,89,105,85,96,94,104,114,102,112,107,99,97,99,110,106,94,114,112,108,113,105,95,96,97,103,101,94,109,109,105,92,99,104,96,105,103,106,99,100,101,118,109,103,98,87,111,94,91,92,105,100,93,100,92,87,110,100,112,102,108,105,95,99,98,104,85,96,105,120,93,104,94,118,98,97,100,100,100,105,118,102,106,113,101,96,100,112,107,107,109,106,95,103,90,108,114,96,121,98,92,101,108,107,120,112,114,102,113,105,108,104,111,106,118,104,98,99,99,86,103,102,118,101,110,96,108,102,106,102,102,118,109,103,100,112,101,105,107,100,105,92,101,94,106,110,102,106,107,98,100,97,99,106,102,97,118,91,94,109,108,94,115,97,108,105,97,95,122,83,102,105,113,101,109,107,104,115,100,99,98,134,95,98,105,105,103,104,106,100,111,93,108,101,101,100,95,102,106,96,108,101,114,100,103,98,101,106,98,102,111,106,100,99,87,102,102,101,90,99,109,99,93,116,116,122,100,103,100,100,107,104,102,100,118,99,108,95,111,102,118,104,92,127,107,94,98,91,110,92,99,100,118,106,101,95,113,105,89,94,111,101,106,110,108,104,106,97,100,106,88,103,91,106,115,107,100,109,90,94,94,101,86,103,116,110,113,97,108,117,122,105,110,109,104,97,112,108,113,97,108,113,105,117,108,106,100,111,105,103,102,94,109,97,105,113,110,101,107,116,103,114,102,100,98,110,99,116,112,103,108,106,106,89,97,117,119,99,101,93,116,117,103,102,108,91,103,124,100,96,102,106,112,101,100,119,105,95,115,92,99,104,103,111,113,100,106,117,100,103,101,96,99,83,99,99,104,107,110,95,113,119,113,96,107,99,99,102,102,101,113,111,103,102,92,101,92,104,110,123,112,110,112,96,113,111,106,98,103,95,97,97,99,110,100,103,102,107,111,106,99,101,89,103,100,132,113,106,94,113,105,103,120,104,121,105,102,100,100,101,103,113,105,106,107,99,108,98,101,107,113,102,94,110,116,101,93,101,106,103,100,103,97,88,100,110,102,113,114,99,105,109,98,99,92,109,106,119,112,108,110,114,112,100,114,127,102,102,105,92,106,95,116,94,103,103,87,108,100,113,104,100,99,110,102,97,103,111,113,102,98,102,102,110,105,111,100,102,101,114,110,101,97,94,91,96,102,112,103,113,101,110,102,85,92,103,114,99,105,108,102,109,102,113,115,92,115,110,109,107,104,96,95,95,102,106,99,110,94,107,97,96,97,113,105,103,116,99,104,116,107,94,102,102,111,107,106,100,102,110,106,95,100,115,109,94,96,107,107,106,105,109,98,106,104,111,100,114,112,104,116,103,121,125,99,104,107,113,107,91,109,113,105,115,108,103,121,107,110,115,102,105,106,107,111,111,101,106,99,113,106,103,93,95,99,97,106,98,99,114,112,100,101,97,111,105,116,92,104,105,97,101,98,98,96,102,111,95,109,114,106,101,104,100,100,112,107,105,96,106,92,97,92,111,104,109,110,107,118,107,111,99,99,109,95,115,98,97,83,111,95,112,109,99,120,98,90,98,109,102,118,95,85,110,98,106,103,105,103,104,101,106,108,97,97,109,107,115,113,101,106,109,104,107,103,100,117,109,109,101,89,115,109,115,105,106,109,105,110,102,108,101,109,111,91,106,106,101,106,100,109,121,101,103,90,99,108,87,93,119,100,101,104,116,99,112,101,107,109,98,101,102,101,107,101,106,106,103,105,120,106,105,114,107,115,104,108,101,113,106,109,99,107,82,119,99,106,92,109,107,103,106,109,104,96,105,112,100,101,108,128,92,107,90,101,97,102,113,108,91,98,107,106,109,114,104,94,97,104,107,112,110,106,109,112,110,117,111,127,111,108,98,103,95,116,107,101,109,100,100,109,96,121,109,93,112,109,105,111,106,89,93,105,99,104,106,104,99,112,103,118,105,121,98,102,98,99,95,106,109,112,123,117,109,99,106,111,109,113,104,113,111,108,113,92,111,102,111,99,100,102,103,97,107,99,100,96,106,109,102,112,106,113,112,109,95,101,103,99,102,109,103,104,108,104,97,101,107,107,98,120,104,102,97,102,107,99,102,97,107,107,106,96,109,99,94,88,102,108,117,94,112,99,102,103,100,105,99,105,100,100,105,107,98,93,105,98,111,99,94,102,99,118,108,101,122,97,109,110,112,96,109,86,102,98,104,108,95,108,108,114,97,117,99,107,113,119,105,103,120,116,119,116,107,113,128,118,130,127,149,172,156,159,178,199,177,159,188,147,153,176,144,130,127,114,142,108,122,132,133,112,95,93,95,104,99,107,99,88,107,101,107,111,109,112,108,109,97,110,121,89,123,111,114,102,107,110,91,111,115,122,100,102,115,100,109,115,102,110,85,106,104,106,107,115,103,105,96,91,115,110,105,116,96,99,102,105,110,101,96,104,109,103,107,101,105,106,125,113,96,111,94,99,110,111,99,109,105,84,104,104,113,118,105,103,103,104,108,102,108,98,109,105,95,114,102,113,105,104,100,111,108,105,121,105,103,105,91,101,96,107,108,102,108,104,106,103,102,104,98,112,114,102,110,113,100,113,107,106,108,104,105,118,104,123,90,121,113,109,102,114,93,110,113,106,106,102,115,99,109,105,95,108,111,107,97,119,110,124,114,105,116,96,112,110,106,104,120,106,106,98,105,123,113,98,88,107,100,110,91,114,109,106,113,117,110,98,105,117,103,99,109,102,99,85,96,104,111,107,93,104,104,111,108,117,113,111,111,113,107,111,112,87,108,70,110,102,110,95,104,120,117,99,90,98,131,114,103,101,116,98,106,113,105,103,95,84,116,115,102,97,120,105,111,101,106,103,100,113,113,109,98,104,99,105,113,109,107,101,97,117,107,103,110,101,109,105,112,112,96,99,107,101,107,102,108,104,102,102,111,100,102,102,106,107,97,105,111,111,104,100,116,92,101,102,110,107,123,119,108,109,108,102,104,109,109,107,106,104,108,100,109,111,103,111,94,102,81,108,92,116,105,118,106,112,118,101,106,102,105,102,107,94,109,105,84,112,129,113,93,87,108,110,124,102,113,117,112,99,112,105,110,100,108,109,104,112,102,101,120,116,111,103,114,111,102,110,112,96,113,112,113,120,105,116,111,92,115,103,113,108,93,106,109,111,107,98,100,104,110,113,112,98,100,117,111,104,104,113,126,104,107,113,102,100,120,107,109,105,99,111,102,100,102,104,110,88,107,90,116,108,114,113,90,114,117,104,98,129,107,106,89,110,102,106,100,116,95,104,101,103,98,105,101,116,98,114,103,107,102,104,106,104,109,85,100,113,109,103,102,101,117,102,106,110,115,99,103,123,98,104,107,93,97,102,106,107,102,102,111,105,112,103,104,107,101,105,92,102,104,94,108,104,116,117,107,108,108,104,128,99,95,115,102,95,113,100,111,101,104,106,117,115,107,108,118,102,105,108,108,100,106,108,112,116,112,106,103,97,119,104,91,110,87,100,113,106,102,104,105,110,108,110,112,91,99,111,102,106,94,113,94,109,106,108,116,103,104,116,111,105,103,105,113,105,107,100,105,110,98,117,111,109,114,109,116,102,107,102,121,100,106,109,101,108,105,101,99,105,94,108,106,110,116,107,98,95,115,100,95,107,101,109,103,106,103,98,102,106,101,108,94,119,103,112,110,100,109,100,98,97,122,113,115,108,106,109,108,112,91,108,101,100,93,106,116,104,97,109,120,106,109,107,108,108,112,103,103,99,106,100,105,120,104,112,93,119,106,100,96,108,102,117,105,107,97,122,109,106,99,105,113,104,117,112,108,111,103,100,102,103,94,100,115,113,110,109,112,116,110,98,110,107,109,108,95,100,105,104,113,98,108,113,97,94,96,111,109,119,97,107,96,97,108,127,100,109,108,107,106,107,106,103,110,99,100,121,109,106,103,109,108,108,105,124,108,98,91,99,109,106,104,102,107,121,102,88,106,118,113,108,96,103,102,110,100,107,115,99,95,109,103,95,110,109,105,110,105,110,112,107,94,109,114,123,107,93,97,116,107,102,96,117,100,106,102,102,114,101,109,98,112,102,100,117,104,107,104,105,104,97,107,102,103,110,111,109,98,100,102,102,104,114,110,104,110,115,89,117,101,102,104,105,103,117,102,93,116,103,108,80,112,118,87,98,104,99,104,98,116,110,124,108,113,110,121,115,99,95,101,109,110,111,105,90,109,106,99,107,105,114,120,104,122,101,106,109,100,101,116,109,77,99,99,115,108,102,99,98,91,98,116,96,105,101,106,108,92,106,94,93,104,101,100,103,115,103,106,103,102,105,103,104,103,97,105,117,112,87,103,108,112,103,108,109,113,95,110,105,98,103,114,122,113,105,100,101,99,105,107,91,116,111,111,109,110,96,100,107,102,87,117,102,103,110,101,105,113,107,109,104,98,116,94,102,110,81,105,98,99,104,116,111,116,109,112,98,104,95,99,107,106,117,124,111,95,106,101,116,109,119,102,92,102,105,108,114,108,76,114,111,90,100,97,100,100,107,129,98,101,105,114,104,108,108,106,97,102,104,98,120,100,115,99,106,83,96,91,104,117,94,100,106,100,115,101,105,104,95,75,114,110,110,95,113,102,101,103,109,111,112,109,113,110,108,92,99,95,104,101,110,117,102,110,106,90,100,130,87,95,106,106,110,106,106,107,95,112,100,108,103,80,101,120,92,109,120,100,94,113,111,133,105,110,100,106,110,94,90,114,128,105,106,120,102,99,103,87, +558.72827,117,106,89,91,96,91,111,98,107,108,83,124,117,105,107,96,81,108,103,100,102,110,90,113,100,102,81,113,111,104,111,119,103,106,109,95,96,121,79,95,101,105,104,100,106,114,95,102,88,99,106,101,119,101,113,104,92,113,103,94,121,94,111,101,119,112,106,105,78,102,113,109,87,110,93,121,90,108,107,102,107,109,112,118,105,97,109,113,96,103,109,99,101,84,104,108,97,91,108,110,96,105,102,103,99,92,113,108,102,102,98,108,103,99,114,106,96,106,92,106,103,104,107,109,112,104,102,110,103,99,85,104,107,102,102,112,100,98,117,99,106,114,106,91,110,107,102,122,108,106,110,100,110,113,91,104,107,96,101,129,85,104,106,86,113,100,110,105,106,116,119,107,102,109,107,99,101,102,108,103,100,113,110,106,101,109,111,101,92,108,108,105,111,106,97,124,110,98,106,106,106,102,114,116,104,118,104,100,106,110,116,101,107,111,106,101,104,113,101,115,112,106,88,104,106,96,105,107,105,116,98,112,110,104,103,111,106,104,102,100,108,120,100,92,95,97,105,107,107,119,102,111,104,115,99,103,108,106,106,111,92,95,113,110,99,102,112,105,97,101,118,101,112,102,109,117,96,97,110,102,95,105,95,99,112,106,91,100,102,102,71,112,106,113,110,112,105,109,114,114,109,107,112,106,121,106,112,110,124,110,104,103,108,103,102,106,111,105,107,108,118,109,122,94,115,113,107,86,112,115,112,105,108,106,101,107,92,97,99,103,104,116,112,97,105,107,94,98,101,104,107,108,112,111,102,107,102,121,106,113,86,103,95,117,106,101,114,110,108,115,107,104,110,95,104,94,105,113,109,107,107,109,99,110,107,99,104,114,102,112,112,109,94,110,115,95,114,94,101,95,108,96,97,121,115,109,109,109,114,105,113,99,106,119,118,101,100,92,97,104,94,105,92,110,106,116,104,108,107,114,106,108,108,114,106,100,98,115,95,105,121,114,122,105,113,103,102,107,98,115,103,96,116,107,111,99,93,111,109,95,99,105,103,115,109,101,96,89,100,106,107,96,101,99,107,111,108,85,119,117,99,110,110,106,104,95,110,103,106,84,115,115,116,112,107,99,106,118,108,99,112,111,101,105,103,107,93,103,116,89,94,103,96,108,95,95,104,98,117,104,107,109,105,108,108,110,105,94,108,109,102,103,107,104,100,117,114,103,100,114,105,105,107,104,110,106,104,109,107,117,105,105,108,101,99,85,120,106,111,101,109,99,105,116,115,90,99,117,106,98,98,87,103,112,94,114,105,105,115,109,101,113,106,102,101,104,109,81,67,108,105,94,98,109,114,106,107,111,103,125,111,108,114,107,99,112,87,108,107,95,102,102,101,108,133,111,102,100,103,110,110,95,102,106,110,98,82,110,103,102,107,99,94,109,105,98,91,99,109,98,109,114,100,110,102,95,109,113,101,118,100,111,113,124,105,105,97,109,103,117,106,100,102,112,105,104,117,101,115,114,108,139,113,102,99,103,111,102,119,124,112,107,120,100,105,100,104,107,105,102,114,108,92,106,96,102,101,99,103,103,114,101,104,123,110,109,103,100,96,101,102,105,102,101,111,83,111,107,112,114,111,112,103,116,110,97,98,119,105,109,109,110,108,114,103,108,117,97,101,112,108,109,108,124,106,98,108,107,98,122,107,104,111,108,99,109,103,118,111,97,122,115,90,106,105,103,103,102,106,120,110,107,114,98,102,105,100,113,104,108,113,105,115,115,88,109,110,110,107,121,98,107,103,113,103,92,117,109,108,117,114,112,102,98,110,118,120,106,118,106,115,93,106,89,110,99,98,104,111,116,109,107,106,122,96,108,100,98,111,101,117,103,113,92,121,112,106,105,105,109,92,105,115,108,112,109,119,103,112,115,104,100,99,102,87,98,104,121,99,114,99,108,103,110,105,98,91,110,122,116,109,116,108,109,94,102,104,109,110,102,124,94,106,104,110,116,94,116,103,107,107,114,112,113,114,111,106,98,102,106,109,100,92,106,86,100,109,104,104,103,114,110,109,104,126,99,110,92,117,110,122,109,99,115,116,100,105,104,87,104,115,105,103,107,124,104,113,102,115,102,113,100,113,102,113,98,105,102,120,115,103,106,101,109,106,112,107,106,105,115,139,109,113,95,108,100,85,100,112,103,111,112,96,107,110,107,112,96,99,103,93,111,101,107,104,114,112,93,104,103,108,99,108,114,118,109,111,116,99,104,113,88,100,108,114,115,109,107,95,114,87,98,105,127,115,101,114,110,115,112,113,108,107,113,100,109,103,133,104,113,119,122,115,88,95,105,125,115,116,120,130,134,180,181,149,147,154,159,169,157,156,152,132,148,144,127,127,123,126,131,101,107,110,109,100,104,106,120,87,93,98,102,102,119,108,105,105,123,94,112,107,103,94,103,106,116,102,110,112,108,101,109,71,112,102,101,92,114,116,105,80,117,114,107,118,105,102,115,105,106,95,109,98,106,109,103,99,99,104,103,110,97,101,98,101,111,95,107,107,110,102,109,113,97,113,107,109,100,106,102,104,106,102,104,113,102,106,105,96,108,105,108,110,113,108,111,100,106,108,104,95,101,128,98,103,103,95,97,82,110,105,105,105,77,110,113,106,108,105,104,113,129,119,110,114,109,114,109,112,113,103,105,107,102,107,103,106,89,104,124,108,101,110,102,110,108,103,109,102,104,92,75,94,101,85,109,109,114,107,102,120,113,107,100,96,109,117,106,96,99,106,102,102,102,114,91,104,110,101,105,117,110,114,117,103,115,104,118,105,95,110,102,113,106,100,101,106,104,101,117,107,120,109,114,107,111,108,91,106,106,116,102,113,106,121,102,89,101,100,109,119,108,107,141,111,106,107,96,98,99,104,112,101,108,115,96,74,105,99,99,98,104,108,104,100,106,93,116,121,94,94,115,106,103,118,132,91,108,104,109,125,127,103,101,111,94,121,118,108,111,108,105,84,113,119,117,109,105,107,100,105,99,115,100,120,104,110,97,112,108,104,109,103,96,97,88,110,118,103,90,116,103,118,109,114,116,112,99,121,112,108,101,102,104,108,107,111,87,121,104,119,98,92,103,113,101,91,103,105,106,109,102,109,104,111,103,108,116,128,112,105,102,106,100,91,109,97,92,112,101,109,106,108,97,111,106,114,103,112,108,106,103,92,96,100,101,110,103,113,91,101,105,113,114,114,112,99,113,103,105,107,98,94,101,100,108,122,105,101,111,111,85,111,107,95,106,103,111,103,105,111,111,103,110,106,96,104,100,112,110,96,117,105,87,100,115,107,75,99,101,96,100,111,108,118,108,110,135,94,102,107,99,99,98,111,113,102,105,103,109,104,102,113,110,96,110,111,98,105,109,110,90,108,104,107,103,111,106,122,103,105,110,106,96,111,106,112,121,99,95,108,93,114,92,106,108,98,81,113,108,110,117,105,113,113,100,113,106,105,103,119,109,107,107,108,95,113,108,100,108,97,109,105,101,104,108,106,93,110,110,126,87,102,109,108,112,115,108,117,111,105,107,100,102,109,105,101,109,109,121,103,109,109,109,106,102,118,106,125,114,97,120,113,110,107,109,109,113,106,99,119,114,107,117,98,100,95,98,109,106,119,103,97,100,98,114,103,117,120,112,105,93,99,108,94,110,102,98,102,108,100,97,120,105,125,116,114,108,108,108,108,96,108,95,104,106,110,82,104,105,111,115,115,101,102,117,97,95,110,100,98,118,110,111,117,111,113,112,111,128,109,101,95,99,110,112,96,102,112,119,104,117,105,104,105,101,123,105,104,102,102,101,98,107,123,104,105,98,101,109,109,95,114,104,110,101,107,102,97,104,94,107,107,112,97,108,95,105,112,95,104,106,130,115,105,103,105,98,107,109,94,111,95,106,115,102,108,101,95,96,121,101,100,110,112,103,94,107,109,122,112,102,105,105,101,108,103,113,92,106,117,99,92,105,88,110,103,113,108,107,107,103,100,96,107,104,99,113,101,121,109,107,107,99,97,115,116,101,98,102,96,114,104,105,113,112,111,105,120,107,111,109,118,109,109,100,107,108,115,105,96,106,80,107,96,121,106,107,96,104,103,100,102,109,109,108,100,96,98,108,98,106,113,107,98,122,111,103,117,95,119,103,107,99,101,97,104,101,103,106,112,114,102,100,103,92,88,110,118,104,100,106,121,110,98,102,126,97,108,84,102,106,86,102,100,111,110,92,99,102,104,119,92,103,103,108,95,106,107,107,98,134,129,112,109,103,113,104,99,88,103,108,106,100,104,105,110,111,116,110,113,108,99,108,96,92,115,108,100,109,94,104,106,97,109,104,109,105,99,98,101,110,116,102,105,94,97,108,106,112,106,108,121,101,100,104,100,99,108,94,110,108,106,103,104,103,106,99,103,99,104,109,103,103,109,96,98,104,112,115,104,112,109,112,103,85,112,100,96,97,89,97,109,99,106,118,105,107,109,104,107,105,104,95,108,107,102,104,97,112,108,107,100,114,98,121,108,91,105,100,108,99,113,107,117,102,116,114,110,100,115,105,103,116,85,106,108,105,98,106,100,105,116,102,115,108,99,109,115,99,94,104,101,113,100,117,113,105,99,111,103,95,114,103,105,100,95,110,127,120,101,103,111,91,113,96,109,108,109,91,104,112,97,138,104,103,105,105,107,100,119,120,96,107,96,106,88,94,114,103,104,83,108,115,101,118,100,107,111,104,115,102,104,93,104,111,100,117,121,96,114,98,107,94,96,94,97,113,113,97,100,109,102,90,105,104,107,106,116,103,98,119,104,111,104,98,102,136,107,98,107,102,111,114,103,109,113,107,113,122, +558.86914,118,95,99,97,108,92,109,112,85,106,121,96,109,102,108,106,104,109,112,99,102,101,108,104,74,104,106,103,114,114,86,107,101,107,109,88,110,109,94,105,106,106,112,107,100,104,117,114,94,105,103,114,109,99,84,105,96,100,107,94,105,109,107,86,100,103,91,104,117,99,104,98,95,102,107,108,126,111,104,106,108,98,101,121,104,110,114,105,98,110,102,101,86,92,84,99,103,98,112,113,100,98,104,106,111,102,106,97,105,95,109,97,105,95,98,100,97,117,103,99,104,108,127,103,107,96,113,91,103,110,105,110,102,120,99,100,95,106,114,99,101,105,101,102,101,86,106,103,105,104,103,90,100,113,109,92,106,97,118,102,113,87,102,114,88,99,99,106,100,96,104,106,113,103,111,107,118,110,118,111,128,103,97,100,92,70,87,99,101,100,98,96,102,98,104,104,101,100,88,103,91,104,98,92,101,111,99,92,109,109,97,97,121,108,104,97,108,111,97,110,103,109,104,104,99,109,103,114,101,94,94,105,105,104,106,106,108,105,101,98,114,130,112,111,106,100,103,91,113,104,98,104,105,96,116,114,79,102,109,108,105,107,104,110,97,101,134,105,106,105,108,101,103,99,103,100,103,103,90,103,133,106,104,94,95,106,95,91,104,101,111,106,111,84,118,114,98,106,113,104,103,101,103,111,100,114,112,108,101,108,110,109,110,112,98,99,111,109,95,132,102,100,110,112,109,121,102,97,113,110,119,96,110,116,103,100,111,107,94,105,112,101,102,101,112,115,108,117,107,104,92,99,108,105,125,110,98,95,104,107,103,105,94,89,102,100,128,109,96,109,111,101,110,95,113,90,102,104,93,106,105,106,105,98,102,103,106,92,100,99,99,98,112,99,99,108,112,81,102,115,117,103,103,114,112,104,108,113,91,99,97,101,105,108,105,94,100,100,109,102,106,104,109,108,99,106,95,104,103,113,103,100,103,106,99,87,113,117,98,103,108,103,104,112,97,107,103,112,110,108,93,106,99,112,92,96,94,114,111,101,106,73,96,115,106,114,100,95,98,95,102,121,89,112,111,93,96,105,98,103,83,108,111,106,94,101,109,99,108,101,113,117,103,103,107,94,93,114,114,107,122,100,100,104,111,108,95,112,110,97,106,98,110,102,94,102,103,109,99,110,104,110,114,104,105,102,108,103,99,106,97,112,110,109,91,105,107,116,112,107,107,110,103,98,110,102,105,105,102,109,104,105,111,107,108,95,91,113,101,98,109,89,99,86,97,99,98,96,102,100,100,94,103,108,106,111,112,98,107,111,107,104,99,113,125,103,107,109,113,102,87,104,121,98,109,115,111,111,99,105,94,102,112,95,97,122,109,100,99,126,86,106,113,119,102,108,105,102,102,104,104,103,109,96,110,114,101,105,114,95,102,110,103,124,100,108,105,86,113,108,104,104,101,100,104,96,91,104,112,105,101,109,99,112,101,105,105,100,96,110,99,104,106,107,100,100,104,103,122,106,112,117,95,107,99,111,97,105,111,105,109,81,93,85,97,98,119,103,93,104,96,102,106,112,115,109,110,114,109,104,99,105,109,104,79,104,87,101,102,116,110,116,108,105,101,100,108,112,114,100,112,112,92,99,116,88,107,110,107,103,112,94,106,103,104,94,107,95,116,100,105,107,101,106,95,100,103,95,99,100,108,101,99,100,98,105,105,99,116,120,105,101,97,103,92,104,63,98,100,104,106,103,111,92,112,104,108,109,110,103,114,102,108,101,96,93,90,103,121,100,112,108,102,108,98,106,93,106,104,113,91,123,100,110,97,112,104,99,110,99,116,86,98,88,110,129,109,105,110,100,103,110,109,111,104,106,108,108,117,102,93,105,113,105,109,109,105,103,94,111,97,110,102,118,99,103,100,99,106,112,101,100,107,99,95,112,114,106,114,111,110,109,107,99,111,108,111,102,117,111,108,112,97,105,101,124,115,113,113,107,109,113,101,107,104,104,100,109,108,97,109,110,116,104,112,105,107,102,97,104,106,103,114,104,109,106,95,110,112,108,102,105,114,125,100,99,95,103,65,104,112,110,105,113,99,105,110,119,99,107,96,106,110,108,92,96,80,103,102,110,99,90,106,122,101,119,108,107,96,104,101,106,117,113,111,113,102,96,107,99,95,105,102,99,106,105,101,104,103,105,103,92,100,99,107,95,96,102,106,105,86,109,103,94,112,107,100,98,109,97,100,98,103,100,95,119,96,105,91,92,109,102,99,100,98,109,108,117,99,99,109,99,94,112,99,109,86,105,106,115,114,115,101,92,112,104,104,99,108,104,109,115,119,119,122,105,116,141,118,134,148,156,189,166,176,159,208,189,120,151,153,168,154,130,169,115,126,113,126,95,114,112,119,124,117,103,117,100,101,108,117,132,113,96,104,96,106,111,96,103,103,95,95,98,104,106,109,98,106,114,109,108,108,109,111,116,114,111,106,103,113,99,102,102,113,116,113,103,113,113,107,106,102,96,102,98,100,110,93,98,103,106,117,94,96,89,104,82,121,102,97,120,116,95,100,107,112,103,105,103,102,95,99,107,104,103,97,105,110,107,106,118,102,97,107,96,106,102,105,96,107,98,102,94,109,110,104,108,112,103,100,116,108,106,103,95,113,107,109,98,121,105,106,103,107,99,119,106,97,101,92,113,110,115,96,117,99,117,108,100,111,105,110,104,107,115,113,114,103,104,88,115,107,123,103,102,108,115,105,106,99,115,105,95,91,102,96,93,106,99,106,115,118,109,117,108,121,113,101,102,119,118,110,105,105,104,102,103,101,104,110,112,111,96,121,108,118,120,106,117,101,96,94,103,106,95,101,115,109,93,109,102,100,87,111,107,92,119,107,99,104,105,99,113,99,114,101,118,114,115,105,96,99,103,105,124,112,106,113,122,96,114,100,119,105,93,101,110,108,99,102,106,104,101,102,107,100,104,108,105,119,107,117,107,107,92,111,100,100,106,103,98,104,93,111,104,114,107,117,98,99,94,102,106,103,102,105,104,116,105,101,117,98,111,93,112,106,119,96,99,98,118,108,103,106,99,112,85,104,110,109,94,109,108,124,108,108,108,102,106,83,101,110,101,107,95,104,92,116,110,99,108,99,113,113,112,88,94,110,102,112,111,72,121,95,107,106,117,104,87,99,104,99,107,103,114,111,106,111,102,108,103,95,96,105,100,100,97,108,95,98,113,91,112,111,112,108,124,94,112,104,110,118,95,99,104,102,112,114,90,102,110,116,111,103,105,117,101,117,109,105,123,117,117,74,98,110,104,105,101,109,96,105,102,101,97,113,98,109,101,101,106,102,110,105,109,98,106,110,106,87,104,94,103,106,102,103,98,100,104,91,104,93,114,109,97,98,98,95,103,104,103,114,98,98,104,106,109,101,101,103,103,108,112,122,113,106,108,104,97,105,103,103,93,111,115,121,107,104,94,94,116,113,110,101,99,105,112,96,94,110,107,108,107,102,107,113,104,99,99,114,113,111,92,108,103,103,93,95,101,112,109,95,108,98,86,87,95,102,96,102,91,113,110,110,106,84,99,98,100,97,110,106,103,106,108,99,106,106,99,105,108,107,111,111,103,115,116,105,107,106,101,98,105,116,96,107,102,111,99,107,117,104,104,104,112,105,112,98,100,102,114,113,109,96,106,104,115,106,105,105,99,101,95,108,108,103,100,127,112,116,106,109,99,103,107,112,99,103,104,95,100,108,96,100,103,99,115,110,102,103,112,110,121,98,108,117,102,102,111,110,91,104,97,101,98,88,96,108,95,102,126,102,100,106,107,106,96,99,107,104,107,117,109,105,103,99,88,115,96,134,98,98,108,114,110,118,99,97,109,101,105,104,103,112,92,107,100,108,89,106,100,105,105,102,113,103,103,105,109,106,106,100,86,99,105,104,103,73,115,68,91,95,109,121,105,106,104,98,97,115,109,90,102,121,104,106,112,108,101,120,95,108,124,99,102,103,106,107,117,101,109,90,103,96,110,104,91,105,98,105,96,109,107,99,105,107,94,98,92,108,92,102,106,124,100,107,114,105,103,100,93,111,102,104,110,106,128,97,116,96,96,97,100,104,113,108,100,102,105,100,99,93,94,109,106,102,101,100,100,104,100,117,106,108,114,107,99,111,104,115,120,113,102,101,102,98,86,104,109,100,102,100,100,117,111,111,94,101,102,101,103,111,107,91,117,98,87,105,106,106,105,109,102,101,92,101,105,99,112,109,107,104,103,103,102,99,107,111,98,98,107,110,103,110,104,100,102,98,120,111,104,96,102,94,100,106,105,94,116,108,104,103,80,99,99,104,98,108,99,107,108,108,99,104,96,101,106,109,92,105,95,110,99,98,105,111,106,110,98,106,102,100,102,93,101,100,113,101,103,94,103,97,92,104,103,99,96,116,106,103,92,106,106,111,95,101,105,111,103,97,102,89,103,111,97,108,116,101,107,108,97,115,107,105,94,106,98,90,105,100,105,95,101,106,103,109,100,113,97,104,113,106,95,107,109,110,110,91,103,109,97,106,106,105,103,96,88,102,103,107,108,101,109,108,96,112,114,91,108,103,105,106,103,120,95,131,110,122,98,101,106,116,124,97,103,103,113,104,105,99,100,100,102,113,111,106,110,92,102,109,95,91,105,112,97,117,103,113,99,101,101,97,99,109,103,109,112,100,113,108,95,84,108,90,103,94,113,101,88,101,98,96,97,105,99,95,93,108,104,103,111,110,105,106,109,102,105,91,111,110,97,98,98,108,113,99,93,118,127,99,102,94,108,97,115,97,115,88,98,83,94,105,107,111,102,101,106,96,93,115,107,120,112,96,112,129,101,103,98, +559.01001,96,100,88,107,74,102,106,91,97,99,98,91,124,117,117,111,105,103,97,102,91,102,110,117,112,107,109,114,106,117,118,105,100,104,115,130,109,104,115,100,107,103,92,102,104,109,111,115,93,113,100,109,107,103,108,103,99,104,108,105,104,84,103,107,116,102,114,105,102,110,108,110,100,89,110,112,105,108,110,104,101,105,102,98,100,108,117,103,91,102,87,114,117,99,106,106,99,110,110,106,102,109,103,108,113,103,95,110,98,108,112,95,109,103,111,113,111,102,104,102,112,111,104,120,107,95,118,95,117,108,107,110,109,108,110,98,108,106,104,128,105,105,117,95,107,106,115,114,98,100,105,101,106,95,101,94,102,109,104,112,109,108,104,118,99,99,102,105,107,100,98,107,119,104,104,117,99,108,117,113,107,105,104,106,107,105,112,91,106,116,100,99,103,104,109,105,120,106,108,115,107,117,102,110,114,98,109,110,119,87,107,99,107,112,107,107,116,111,103,121,98,105,117,109,109,106,106,105,104,111,96,118,106,106,112,110,105,106,105,103,96,97,102,110,105,103,102,110,92,104,108,117,109,114,102,97,112,106,101,107,97,114,95,95,107,105,109,104,121,95,116,115,92,107,105,110,105,115,84,103,109,109,116,105,109,108,102,104,92,107,111,109,110,103,109,114,101,109,102,91,128,103,116,120,104,104,80,113,114,103,118,121,112,111,100,96,100,100,110,102,126,103,110,113,108,94,104,95,113,112,117,109,115,111,99,105,104,101,102,102,99,102,95,105,95,102,100,111,107,117,108,106,101,114,111,107,104,99,110,114,109,95,103,104,105,110,117,119,95,100,109,91,119,104,95,98,103,106,97,109,102,107,99,108,105,101,106,105,99,116,120,84,106,111,117,126,100,103,109,90,103,101,99,97,103,107,67,109,125,113,101,90,111,109,109,117,98,97,88,114,108,110,100,100,112,104,100,100,81,111,110,113,104,109,106,117,107,104,102,95,115,99,77,106,101,103,102,104,102,117,102,108,103,106,112,101,105,113,125,107,107,94,115,106,109,113,107,112,111,115,110,123,117,113,103,117,103,112,104,109,108,105,111,105,113,109,109,109,96,107,117,112,112,100,99,104,103,108,101,112,113,108,102,111,108,105,103,121,112,105,108,113,109,115,98,119,117,84,109,116,108,109,106,110,119,115,113,111,111,109,100,100,109,107,109,104,96,94,99,110,121,104,96,118,120,110,116,117,109,110,103,112,111,115,113,111,102,101,98,117,119,103,103,99,105,112,114,107,120,108,91,103,113,100,111,102,111,112,113,111,112,100,116,92,112,101,103,105,109,96,109,106,104,98,68,114,97,103,107,110,96,112,106,106,104,104,109,105,105,112,100,95,109,103,117,112,109,116,102,116,104,104,109,122,106,98,89,119,107,106,116,91,98,99,109,97,102,99,100,107,115,106,104,99,108,122,99,106,117,106,99,103,117,110,105,101,111,114,95,103,111,110,101,108,106,108,83,100,96,100,123,111,111,100,96,109,98,99,111,95,102,101,105,103,101,110,92,105,114,88,87,105,96,94,112,111,103,117,92,92,100,130,118,121,108,110,102,103,106,113,101,102,96,107,103,94,107,109,110,103,103,113,87,114,100,107,103,108,102,106,88,101,94,99,107,112,114,110,115,106,102,98,110,109,111,111,105,108,104,126,109,93,96,100,106,101,103,104,121,116,96,118,101,122,95,98,99,105,105,92,103,111,110,107,110,105,94,102,102,94,102,119,109,114,110,103,107,76,107,103,106,93,108,118,102,104,106,96,107,103,110,104,101,110,109,127,117,107,112,107,123,106,94,110,104,109,115,95,116,98,118,106,101,106,113,108,110,101,107,101,103,97,112,106,91,102,110,101,109,117,102,112,114,98,100,103,95,95,97,104,117,104,101,104,106,111,105,113,102,110,117,107,142,104,102,102,111,109,104,110,102,100,99,115,98,121,109,106,112,110,111,114,103,104,102,98,103,119,109,110,108,109,105,125,100,96,108,103,101,105,104,97,106,98,109,96,98,109,106,99,95,104,109,112,107,109,96,115,94,99,104,107,107,96,104,111,95,93,103,104,101,121,118,109,100,115,83,91,102,113,106,115,94,119,104,103,120,95,97,110,116,108,116,101,109,108,112,106,107,105,104,104,99,102,105,109,105,108,102,112,103,109,109,81,102,112,109,112,114,100,110,107,95,99,101,101,95,115,110,97,110,113,104,116,104,94,119,113,104,115,88,107,111,111,109,105,108,109,107,101,100,92,110,116,103,88,113,93,107,120,101,113,104,96,101,110,110,115,106,108,113,115,105,104,116,120,117,129,133,140,153,168,145,181,175,214,199,142,181,164,172,163,136,130,145,133,131,112,128,114,104,105,104,127,112,106,109,101,100,119,111,105,85,113,99,100,99,113,76,109,101,103,98,106,108,107,100,111,112,109,106,99,99,102,101,85,105,98,113,111,116,84,106,108,125,104,98,109,119,102,107,109,137,111,103,109,107,107,97,121,105,91,116,110,102,125,101,127,95,100,101,111,88,100,107,114,103,112,110,94,104,106,98,99,96,107,99,112,112,105,87,92,99,115,109,98,108,89,108,121,100,95,117,99,115,106,110,105,103,115,114,113,117,111,105,105,108,121,112,106,113,108,105,108,106,114,103,105,104,116,98,115,112,106,95,118,110,73,106,110,105,103,102,108,92,109,92,106,106,105,106,100,111,110,120,101,113,123,129,116,109,106,111,135,98,92,100,109,112,109,113,95,105,105,108,115,108,107,110,108,113,103,121,104,105,100,111,104,100,110,111,115,109,105,98,108,119,95,108,112,104,88,100,111,104,111,111,105,100,115,113,96,101,117,106,97,108,112,108,97,113,106,106,113,107,106,108,104,110,105,108,122,108,102,84,113,101,106,110,101,105,115,110,110,104,90,95,101,106,101,107,86,98,102,128,103,109,107,110,101,111,109,112,112,108,123,109,108,92,116,105,113,106,114,95,115,103,108,105,89,98,106,111,129,98,108,112,102,87,107,102,108,96,116,96,119,105,110,109,110,105,114,94,103,121,106,112,95,101,105,107,116,104,113,115,102,111,87,103,106,107,102,104,100,105,98,107,106,105,108,112,110,103,100,103,110,94,108,108,122,115,106,107,103,105,98,106,112,116,104,98,101,112,104,103,95,110,118,109,103,122,104,95,116,95,102,106,99,116,104,115,110,109,120,102,107,106,111,112,121,102,79,98,109,94,104,101,112,111,106,92,97,104,103,100,113,113,108,98,113,114,104,100,110,110,77,99,94,107,100,97,87,101,110,101,103,113,105,113,104,103,85,103,101,94,105,109,102,108,119,107,106,102,98,117,103,108,106,109,116,115,94,107,103,100,101,113,109,91,111,109,101,115,106,101,112,104,111,102,106,105,114,113,111,107,106,109,117,99,116,114,104,115,101,140,110,105,103,102,102,112,107,103,114,107,113,113,97,112,104,117,88,108,107,113,113,97,97,100,120,109,118,102,107,113,113,110,113,107,108,119,104,109,113,107,113,105,100,118,107,105,109,100,110,108,121,112,116,107,108,94,104,113,93,108,89,94,109,106,107,118,113,102,108,99,106,101,109,124,121,79,118,92,122,111,102,114,106,100,103,106,109,106,106,110,104,98,110,101,96,107,104,105,108,111,101,99,102,108,109,98,95,107,105,101,98,94,94,106,127,107,97,110,92,127,104,120,103,102,102,105,108,102,104,105,114,105,119,111,98,95,113,109,108,101,110,102,115,102,102,108,118,111,111,99,113,107,101,103,107,87,114,110,114,105,106,111,99,103,117,100,112,114,96,108,97,103,106,106,88,107,74,123,102,103,107,97,105,110,106,101,104,99,93,106,113,116,105,116,107,100,109,115,98,117,114,103,99,102,108,88,119,101,102,105,118,115,100,99,98,106,106,112,112,119,99,117,103,100,105,96,106,111,103,107,97,104,107,115,103,115,94,116,112,112,110,116,103,107,94,104,102,97,105,107,94,98,101,106,109,105,106,107,91,101,103,107,101,110,104,90,113,101,105,95,112,79,107,99,119,105,106,109,107,103,102,108,109,106,105,113,107,107,91,105,93,106,104,103,105,118,98,102,94,105,105,103,102,111,102,105,101,102,84,107,97,108,107,115,104,111,107,99,105,123,103,103,106,104,109,106,94,102,120,106,74,104,108,102,107,108,92,111,108,98,98,108,105,111,124,105,104,99,99,106,102,112,115,95,98,101,107,96,103,99,107,106,121,98,108,102,86,110,99,116,124,109,97,90,102,107,102,101,98,112,105,86,109,100,90,98,115,104,92,93,100,104,118,105,105,99,106,114,99,117,104,97,104,106,110,103,101,99,103,101,103,102,104,103,105,106,102,105,108,100,98,104,99,110,93,107,105,110,105,99,95,110,98,112,102,101,88,106,107,111,107,107,116,111,104,104,105,97,107,96,98,84,106,112,95,105,92,109,108,87,121,99,115,102,105,106,100,100,102,104,96,91,104,99,104,111,98,108,105,100,116,105,105,83,99,110,97,115,117,125,109,105,112,105,113,104,113,103,110,115,102,108,101,97,105,102,103,99,100,105,105,115,105,105,116,103,93,105,114,95,101,124,105,99,113,91,102,100,103,104,119,113,110,103,88,106,106,102,80,104,91,106,99,108,115,94,104,74,99,97,96,105,105,106,117,110,109,99,117,106,110,105,96,96,101,108,103,105,95,102,112,98,98,96,101,119,104,98,109,105,97,99,87,106,102,101,91,102,119,101,106,95,101,101,74,97,111,112,108,94,108,92,94,105,98,123,115,105,112,115,96,95,112,91,108,89,102,117,113,110,90,113,94,111,103, +559.15088,108,98,97,107,85,99,108,95,98,84,99,95,112,98,106,96,103,104,103,108,94,100,110,102,107,107,90,106,95,101,98,92,93,103,112,111,108,109,100,101,101,101,100,94,99,104,105,99,103,110,107,108,102,98,95,108,92,99,110,95,97,111,101,106,112,98,105,105,98,107,91,107,109,108,95,107,96,117,96,93,101,104,105,102,92,97,133,106,92,98,109,108,99,97,95,98,103,94,102,98,114,112,99,99,96,105,110,93,98,111,105,82,101,113,117,87,119,110,103,105,100,94,109,107,96,98,108,94,110,115,106,101,114,96,104,98,106,101,90,95,94,101,117,99,92,95,108,129,105,97,109,104,103,89,112,108,112,114,110,94,100,95,96,118,99,97,110,101,95,107,95,104,104,104,116,103,100,104,99,109,105,133,93,98,74,99,103,96,114,113,109,105,92,114,109,100,106,105,103,104,111,103,97,119,113,108,95,111,105,102,98,98,105,103,98,105,105,112,103,106,99,99,95,97,95,109,100,116,115,108,100,99,103,113,95,110,87,105,96,104,108,97,84,102,100,101,94,97,109,117,105,101,95,109,107,113,103,96,102,107,95,103,106,91,108,96,103,111,102,110,89,101,99,100,87,110,105,111,96,102,107,119,104,96,94,124,99,100,103,99,105,100,119,106,109,98,95,101,100,95,100,104,99,124,95,99,90,110,92,107,103,98,112,105,109,109,101,105,99,107,105,103,109,95,78,99,100,108,117,113,94,104,117,100,101,104,116,114,98,97,101,102,107,102,107,100,107,99,109,101,103,102,113,108,99,99,106,92,108,98,107,104,112,105,95,92,106,123,112,108,96,99,113,109,103,88,111,102,99,114,112,111,100,116,105,94,96,105,100,89,106,103,114,111,98,100,95,103,107,107,95,104,99,100,102,100,107,91,104,102,99,104,101,102,99,102,94,110,108,116,100,100,90,113,109,103,103,92,87,96,111,107,106,105,98,86,108,94,108,107,118,111,120,107,89,94,101,100,99,109,104,109,107,103,101,98,104,105,104,99,106,96,104,100,116,97,103,104,114,112,96,116,105,98,105,102,107,108,97,110,105,92,103,108,119,94,96,108,95,111,109,127,98,81,107,107,98,79,99,101,119,102,103,104,104,104,99,104,105,110,101,125,99,112,82,109,110,89,104,108,106,106,97,100,117,115,105,107,103,92,109,104,113,106,96,108,107,104,100,102,90,111,99,106,108,110,95,121,106,91,95,113,105,115,112,105,108,103,103,95,104,109,106,114,110,107,96,113,107,102,96,110,98,106,106,101,108,93,110,95,105,103,115,109,99,104,103,106,112,117,109,112,103,101,103,113,99,94,103,102,113,94,118,114,89,104,94,94,109,96,106,109,112,113,92,92,118,101,102,109,105,94,98,85,107,98,110,118,111,104,97,105,109,104,86,98,106,88,85,112,102,103,72,102,103,86,115,103,102,114,106,110,101,97,105,112,109,121,118,104,106,100,102,109,91,109,111,98,107,104,117,104,109,111,104,107,106,105,101,107,111,107,113,90,101,106,107,94,105,113,116,116,108,109,108,104,103,97,107,97,100,108,99,107,112,98,106,107,93,110,112,113,109,113,113,97,90,112,111,101,100,94,112,118,112,98,95,114,114,109,109,102,102,72,110,97,109,97,122,108,98,107,110,114,119,121,115,112,104,111,102,105,100,106,107,121,117,82,121,101,82,102,96,108,102,117,95,104,99,99,126,100,109,109,115,110,95,116,94,96,92,109,103,106,108,99,104,113,85,99,120,110,95,114,103,90,106,109,105,99,122,107,89,107,110,104,106,109,111,106,106,125,100,111,111,100,109,102,106,94,100,120,102,108,91,105,111,102,121,107,108,108,116,124,107,103,115,96,119,138,113,109,104,109,109,107,89,105,104,102,89,104,101,109,110,98,112,115,105,105,109,114,103,112,110,112,85,108,119,108,108,113,105,114,107,111,105,105,112,108,95,103,106,116,106,97,102,111,107,102,99,110,103,116,102,102,106,101,94,95,105,90,127,113,121,77,101,105,108,96,114,107,110,105,115,95,92,95,116,96,99,106,104,115,98,96,100,112,127,105,108,120,109,113,103,103,104,111,100,109,111,110,108,113,101,110,97,109,104,103,104,113,121,104,117,117,101,102,109,107,110,88,111,99,120,96,105,117,94,112,106,92,106,105,101,97,108,101,110,117,109,106,106,109,99,109,113,108,105,103,97,116,107,100,108,102,109,101,100,117,108,92,108,110,98,84,106,117,105,99,106,107,108,109,97,113,99,118,111,113,104,106,101,106,102,103,109,107,131,109,121,110,110,101,116,111,110,121,118,120,147,131,152,207,176,161,186,189,127,158,149,155,170,148,149,123,123,141,107,120,100,102,116,96,112,104,111,107,112,104,96,115,96,110,102,97,108,108,92,95,99,111,105,119,105,98,115,99,113,97,101,117,89,84,115,99,104,106,105,106,115,102,108,111,118,107,107,111,104,106,103,112,113,106,109,115,105,111,106,101,95,102,97,100,112,111,113,113,103,108,94,129,116,94,106,107,113,105,105,99,99,99,100,109,111,92,103,103,112,110,104,93,128,101,99,99,109,109,102,96,100,105,82,95,112,109,104,102,113,121,117,101,113,111,91,112,101,104,118,97,106,95,106,105,109,96,116,117,107,112,101,107,110,98,92,115,112,105,71,115,110,99,106,106,108,108,102,106,104,107,106,99,95,121,113,112,110,114,132,112,107,103,113,107,108,117,92,115,121,106,96,106,100,110,101,108,112,109,112,117,114,107,109,97,104,102,101,102,108,103,105,98,109,108,108,95,102,107,94,113,99,108,108,101,103,95,111,102,102,106,99,103,102,112,114,109,112,103,111,117,103,78,103,108,94,110,101,103,108,116,102,96,88,104,112,104,108,94,101,108,96,106,104,107,106,106,113,106,103,109,117,106,109,110,110,97,97,103,107,109,104,110,110,110,114,98,112,103,107,106,98,92,102,104,123,107,95,105,112,102,97,94,117,107,97,96,112,102,75,119,107,111,98,107,115,104,113,112,120,102,108,91,99,101,115,108,112,103,98,100,94,110,109,101,106,109,114,117,100,117,97,111,99,105,103,98,105,104,99,107,105,100,112,108,109,103,127,117,101,109,109,96,100,123,98,109,116,115,98,108,102,112,99,103,111,108,109,106,98,102,94,115,97,74,113,109,103,105,103,113,130,100,103,112,105,107,104,106,101,101,105,110,105,98,102,103,104,103,114,95,105,108,117,94,103,117,115,103,116,77,104,106,103,100,102,116,100,102,104,99,93,97,103,96,90,109,102,106,96,111,105,99,109,105,108,97,97,110,111,101,103,101,108,108,108,108,101,101,99,110,107,91,102,106,108,112,98,92,100,106,95,97,111,111,106,105,115,110,103,111,107,95,108,111,105,105,91,100,105,100,104,99,113,96,105,102,113,106,104,96,105,117,98,102,84,108,97,102,113,112,109,110,100,109,104,114,117,105,102,110,107,100,104,110,111,97,100,104,109,105,112,101,104,111,111,111,108,101,99,102,108,96,98,111,108,103,116,103,110,106,87,92,112,108,111,110,94,92,106,102,102,106,112,110,109,94,98,99,103,100,106,89,92,111,99,104,103,104,104,107,112,108,102,106,105,93,94,115,98,111,99,111,102,108,95,104,95,112,106,106,96,98,101,104,112,72,104,99,100,98,105,95,113,99,86,99,100,110,100,104,101,101,98,101,102,113,90,87,103,102,111,108,112,99,102,104,100,109,102,106,109,116,101,110,101,113,107,126,117,109,108,113,114,101,100,95,109,98,98,106,111,102,105,120,99,104,100,103,98,122,95,100,96,110,108,105,106,102,105,108,100,95,92,102,104,111,99,114,109,105,108,111,105,110,95,111,94,98,113,115,113,110,95,87,101,108,100,96,113,105,103,105,101,88,115,102,99,100,103,118,106,102,100,104,117,99,110,106,104,109,110,102,104,100,108,101,114,105,124,108,107,92,104,104,117,125,108,100,107,92,112,100,108,98,99,103,102,104,103,105,99,113,108,102,103,117,94,103,109,114,101,107,111,98,103,100,115,104,105,110,113,106,98,115,102,114,95,101,119,97,104,113,100,88,108,83,107,127,111,91,113,108,105,116,119,87,109,107,116,103,102,118,103,95,105,100,117,106,111,106,105,96,113,104,107,99,110,111,98,105,78,95,109,105,92,87,111,100,112,123,93,110,107,99,102,105,99,100,113,99,116,107,111,118,106,103,105,101,110,112,107,94,108,96,118,116,102,112,102,105,123,95,98,103,109,99,97,100,100,96,97,106,115,102,99,101,95,106,105,102,97,106,104,101,95,101,92,109,103,115,105,83,100,100,93,110,88,102,107,105,107,90,97,99,114,98,104,100,96,96,81,96,107,98,102,92,118,103,105,94,100,98,95,117,109,111,100,101,90,102,103,110,98,102,106,107,106,106,102,104,100,103,101,110,99,96,107,113,109,99,105,108,103,104,105,102,79,103,80,87,101,103,99,98,98,109,99,101,104,102,102,101,110,100,113,104,101,91,103,97,104,100,109,111,103,108,100,116,104,98,108,111,109,89,107,109,113,101,116,108,96,98,91,104,99,104,98,89,102,104,121,104,94,121,100,115,103,100,90,98,98,101,109,102,114,101,96,105,99,91,98,92,97,102,105,99,109,98,109,99,102,105,92,92,110,111,103,73,103,102,99,108,108,95,103,103,109,90,92,106,106,92,99,102,107,103,103,91,106,98,112,93,101,106,105,102,107,106,97,94,95,97,105,95,98,106,111,93,106,96,129,105,112,104,95,106,102,103,93,95,101,119,95,100,100,95,98,105,104,94, +559.29175,121,105,101,84,101,99,114,104,97,120,123,100,95,112,104,84,95,117,112,101,99,103,99,100,98,104,92,91,105,81,98,93,106,86,115,97,130,98,101,110,91,115,109,106,110,120,101,97,92,101,98,100,100,96,98,65,108,90,99,117,106,122,105,108,95,122,103,103,106,95,102,107,78,101,101,94,92,114,110,110,108,112,105,134,97,98,96,103,115,102,89,103,100,88,103,102,101,106,102,106,102,97,97,110,101,96,103,95,106,133,102,99,103,99,112,103,113,114,106,107,99,104,99,103,115,104,102,91,104,106,107,105,108,107,102,102,97,103,101,102,96,116,103,100,95,105,109,105,101,106,107,115,110,85,96,110,90,101,103,105,116,102,102,102,100,100,105,104,105,98,99,99,112,111,98,107,100,91,100,117,117,120,109,101,107,100,106,115,113,94,91,105,100,99,96,105,95,94,102,121,104,113,95,113,102,110,116,110,93,104,104,107,109,99,100,105,79,101,105,112,103,104,112,105,107,113,102,101,106,103,115,103,109,110,102,106,104,107,101,108,101,115,98,102,92,92,102,101,106,95,106,104,131,99,109,117,110,114,97,117,100,106,99,101,95,108,103,110,116,103,114,105,110,120,108,102,99,108,95,92,108,124,99,108,108,99,97,109,106,125,105,105,101,120,97,110,112,120,111,108,107,99,86,118,106,70,106,101,102,109,94,117,109,93,102,98,99,99,109,95,109,103,113,107,106,95,101,88,107,107,105,107,100,112,105,96,111,116,94,105,103,90,108,93,108,98,66,101,115,104,94,102,107,98,101,117,99,128,94,106,95,104,107,98,104,94,111,109,103,107,103,113,108,106,92,98,97,110,111,116,102,100,95,105,99,109,114,115,112,105,103,94,98,137,113,97,90,96,91,121,96,96,108,97,99,92,98,99,104,101,116,109,100,104,95,105,106,109,99,99,101,106,97,110,95,102,94,99,99,107,103,105,105,80,99,116,92,105,106,95,113,104,113,107,104,101,117,95,103,108,110,102,99,97,102,111,104,108,100,92,115,110,103,110,104,108,97,109,112,104,114,104,108,105,97,115,100,111,90,112,106,100,112,101,104,102,96,104,98,97,115,106,113,105,104,102,108,103,100,119,113,109,109,92,99,108,104,96,106,96,110,120,99,113,98,112,108,118,93,103,107,93,103,114,101,92,108,100,104,116,106,85,105,100,120,105,94,102,111,106,103,106,98,106,115,106,106,100,120,109,92,115,100,100,112,96,107,92,109,112,100,101,112,108,109,98,94,116,86,107,88,100,100,105,104,105,100,98,101,101,106,106,105,82,102,103,105,101,109,102,113,110,99,97,110,111,116,111,104,106,102,117,118,114,90,113,100,105,96,107,107,96,100,92,96,95,103,102,94,107,114,105,112,103,109,86,109,112,112,113,95,109,111,89,101,96,106,99,101,124,107,105,123,96,94,99,111,99,117,118,108,103,104,107,95,97,108,117,112,104,112,102,101,106,93,102,104,99,106,109,120,102,112,111,110,80,106,111,109,92,113,100,124,97,95,110,114,112,99,117,108,112,97,107,110,99,104,104,98,98,107,107,115,96,95,98,114,108,101,111,108,106,102,108,92,97,99,93,99,104,111,97,96,118,103,99,109,105,107,125,109,121,98,95,84,98,109,101,113,110,102,107,110,109,100,100,108,109,93,105,109,100,91,109,109,117,103,109,107,106,109,106,109,106,96,99,100,97,99,94,104,100,101,111,99,124,105,110,106,98,102,100,96,102,114,113,107,102,103,117,86,112,106,110,109,105,103,114,112,109,98,103,108,109,107,111,105,109,106,108,116,117,94,101,110,113,101,128,111,110,113,110,108,102,125,98,113,117,113,100,107,97,103,107,87,107,121,96,109,103,97,114,109,95,106,112,109,101,101,95,111,109,116,114,114,113,109,104,107,105,108,100,107,105,105,115,121,101,109,106,94,106,105,100,103,88,104,121,110,111,112,105,111,107,102,107,107,96,108,102,122,108,107,116,105,105,101,117,109,120,102,109,99,99,116,110,109,103,102,96,103,102,105,114,109,100,97,104,94,96,102,100,103,118,109,100,104,104,121,102,113,119,106,112,122,87,112,93,98,112,105,96,102,116,106,99,116,113,94,103,111,102,114,109,112,106,107,106,105,93,95,97,120,87,117,109,103,103,94,101,104,104,101,112,105,102,104,118,102,110,102,104,99,96,100,100,105,103,97,104,105,109,121,111,105,113,101,112,110,93,103,99,95,100,112,104,103,115,108,108,103,102,106,107,108,117,104,101,96,106,108,107,94,91,104,111,113,119,111,110,112,101,112,102,98,98,113,120,136,121,125,163,131,150,165,165,183,162,175,154,197,168,143,147,120,145,132,125,122,107,107,120,115,128,103,99,112,92,103,100,113,128,103,112,112,122,100,109,106,100,100,101,105,106,110,105,95,109,110,113,115,114,104,106,115,114,104,102,117,117,110,100,106,91,113,125,113,112,117,91,97,108,104,101,116,109,123,105,100,101,105,108,104,110,94,90,105,106,108,101,107,116,109,101,101,100,104,99,111,113,79,110,98,131,101,116,100,117,104,105,114,106,111,117,116,114,121,107,100,110,109,108,93,103,121,92,106,107,100,104,100,100,117,101,111,99,118,101,115,114,102,114,104,106,109,100,116,116,110,96,105,110,106,102,107,122,103,101,106,111,104,96,113,111,109,112,113,103,99,105,102,94,102,107,114,113,98,102,90,108,101,114,108,102,103,108,107,94,110,107,105,116,103,107,115,94,121,108,102,114,113,108,109,98,103,95,110,98,109,85,106,104,117,108,108,99,106,123,107,110,98,102,109,109,117,109,104,119,98,108,101,116,104,108,114,104,102,106,96,99,109,110,107,116,85,103,113,110,117,96,103,111,107,99,113,108,115,105,111,111,103,105,82,122,128,94,115,127,105,104,93,109,95,114,100,96,108,112,118,93,116,119,117,103,113,95,112,110,117,111,105,105,102,114,108,108,113,102,97,106,101,110,108,109,105,106,104,113,110,112,101,118,106,107,97,99,101,106,93,110,116,106,106,89,102,103,111,119,92,107,115,106,106,90,114,102,100,123,112,107,101,107,102,102,116,109,109,109,105,103,94,117,96,102,115,106,106,99,99,104,116,105,105,104,108,113,95,110,110,102,101,109,112,117,89,99,103,108,112,104,104,99,84,99,108,102,105,105,110,102,102,98,112,114,114,120,107,113,94,105,98,83,105,104,101,106,101,106,116,106,108,116,102,104,110,105,113,106,107,110,87,107,102,95,107,109,96,110,77,102,108,99,114,91,112,100,109,99,104,91,101,106,116,104,97,96,97,90,102,109,93,114,109,132,108,101,106,103,112,103,105,110,105,109,98,105,108,98,112,97,105,99,101,98,101,95,99,113,105,106,101,96,116,97,105,111,108,98,107,99,95,103,106,103,101,110,105,100,98,91,107,105,112,118,104,112,113,108,98,106,108,112,107,108,90,112,95,103,109,108,105,103,102,117,105,100,103,98,104,110,109,99,112,106,119,109,101,109,110,101,97,104,97,96,99,109,102,99,113,99,101,110,108,104,98,99,110,97,110,104,99,108,110,102,107,106,108,112,94,101,102,114,104,101,113,102,104,110,99,97,103,124,113,91,107,106,117,92,108,109,105,94,124,103,104,101,111,106,95,101,98,107,102,111,105,106,105,110,107,110,107,100,108,113,114,109,100,105,114,106,108,103,116,102,104,107,113,97,112,110,99,94,98,99,111,102,107,116,98,94,117,125,109,109,107,105,101,96,96,111,95,111,99,92,98,95,108,101,100,108,102,112,85,106,117,107,109,103,95,90,117,108,103,113,101,100,111,104,105,103,104,118,92,119,107,102,95,105,114,100,90,121,108,106,89,103,100,126,98,117,106,124,103,103,90,103,109,103,89,103,105,102,95,99,105,108,70,103,110,108,101,109,108,105,101,84,109,105,113,108,105,114,92,99,111,114,119,97,104,112,91,106,107,115,104,102,101,100,115,100,103,90,113,119,100,115,100,101,100,98,105,105,101,123,107,107,91,104,103,109,104,109,109,100,96,103,114,107,96,100,105,96,104,96,101,103,92,106,96,112,114,109,95,113,103,108,115,99,104,107,100,107,106,105,100,120,106,135,106,117,113,92,108,112,114,113,116,102,99,115,109,97,98,96,98,91,106,95,103,102,109,129,102,107,101,114,99,112,105,101,104,102,112,105,91,103,103,116,93,110,103,97,102,108,107,108,98,120,105,115,113,116,114,115,99,96,103,100,110,109,112,105,92,97,106,104,97,104,101,105,101,104,103,105,103,109,109,104,93,96,111,110,111,104,103,109,107,106,107,104,108,100,100,116,96,108,105,104,104,108,111,102,108,109,90,91,101,95,95,100,109,105,114,123,104,100,96,99,102,105,112,97,110,104,92,101,112,96,101,87,103,105,100,131,97,105,109,106,98,91,101,101,105,99,119,102,107,98,109,101,102,101,106,103,109,101,107,99,100,117,94,113,110,104,116,99,116,109,103,111,102,96,109,117,101,112,103,100,101,109,98,98,100,109,102,106,103,100,88,111,99,100,99,94,101,96,112,90,115,103,96,95,100,95,103,112,96,108,114,109,115,113,110,111,102,109,105,109,98,62,110,110,82,113,102,107,117,104,106,106,101,87,103,107,108,106,109,97,106,92,99,108,99,101,107,107,97,101,102,108,115,112,119,100,102,106,117,94,102,93,101,95,117,105,112,103,109,99,103,94,104,99,110,105,104,118,104,111,107,103,103,105,102,106,89,100,109,98,96,109,99,125,107,103,110,109,95,103,98,88,98,109,112,112,87,124,105,80,97,107, +559.43268,137,95,110,103,82,100,107,105,105,103,101,105,98,108,110,99,101,107,117,91,130,106,108,105,111,107,112,101,96,92,102,112,111,100,96,96,100,94,100,100,105,108,108,111,105,106,95,119,92,109,109,102,96,100,112,115,103,87,102,95,102,101,92,104,113,105,100,96,99,107,108,93,96,100,117,105,92,114,103,82,120,101,107,105,113,109,97,91,87,98,102,101,102,113,110,102,110,96,98,118,95,104,97,94,87,115,107,90,89,100,103,97,104,113,104,104,110,96,120,117,95,97,102,108,104,107,106,102,106,97,104,101,99,100,94,109,106,101,104,107,96,122,102,108,100,108,105,111,93,96,104,111,104,92,95,95,92,110,104,100,102,110,110,105,94,94,111,123,105,107,101,96,99,108,104,102,93,96,110,106,114,106,91,102,95,99,101,92,111,96,110,83,104,104,105,100,119,104,119,103,114,104,95,109,115,86,104,99,102,116,92,97,101,110,109,103,118,111,99,110,109,110,104,102,126,100,102,105,100,108,106,101,112,107,107,109,95,107,103,100,107,102,112,104,96,108,100,97,111,105,105,109,106,105,105,86,103,105,93,103,116,107,112,105,94,104,104,104,114,108,91,103,120,109,118,102,99,103,108,105,129,108,112,112,103,106,104,97,97,108,108,108,93,103,107,114,99,96,101,136,98,104,105,104,97,107,106,110,103,92,106,109,113,103,109,92,105,109,103,115,112,90,100,114,110,102,101,104,109,109,110,102,104,110,112,99,105,108,102,88,106,109,105,101,89,107,109,117,95,103,108,105,98,104,108,84,100,102,93,100,111,113,94,101,105,95,102,114,102,102,93,107,107,114,98,110,101,113,102,108,110,104,108,109,98,106,84,104,110,99,101,98,97,117,111,97,107,107,111,104,120,96,112,113,107,102,110,105,106,116,104,113,110,117,93,95,100,101,108,89,104,102,101,107,108,102,107,94,113,100,103,96,113,116,99,101,109,107,96,122,104,99,97,104,110,102,102,99,117,102,105,102,97,104,105,95,108,105,117,112,100,100,110,103,110,109,117,111,88,108,113,135,108,104,100,101,112,114,107,111,103,87,106,107,95,101,114,107,98,101,113,117,107,98,86,116,97,114,82,93,115,113,126,114,114,90,94,100,109,91,103,105,102,95,111,106,103,100,112,103,106,102,115,100,104,110,106,106,89,108,98,108,107,104,111,108,96,105,106,102,98,109,115,114,101,105,107,96,105,72,105,111,102,102,112,100,99,125,106,100,107,108,108,100,104,105,109,105,98,102,90,109,103,99,109,99,112,103,106,111,103,102,101,99,106,109,103,103,97,112,99,106,100,100,112,109,103,106,120,107,112,104,97,106,99,102,99,99,108,115,102,96,109,110,127,105,97,92,107,105,105,102,106,109,113,112,101,111,106,103,95,103,112,110,115,114,105,95,104,104,102,101,100,112,107,96,104,115,105,116,99,93,119,100,100,110,110,109,96,112,117,103,106,105,99,85,102,100,113,83,111,95,107,90,112,113,95,114,109,106,107,100,112,102,93,92,100,96,101,107,100,111,102,108,111,120,105,106,108,104,101,104,111,102,96,106,86,98,102,98,92,102,99,94,88,97,95,102,116,102,101,116,99,101,99,96,96,103,102,113,105,108,100,108,107,109,111,109,106,100,113,99,107,104,114,103,111,109,102,111,97,96,107,111,114,106,102,119,121,102,124,108,117,106,99,100,100,89,110,103,117,104,102,102,102,91,100,103,111,97,116,108,111,108,94,109,102,101,101,117,92,105,99,93,105,109,90,110,104,109,108,103,98,109,110,112,100,100,96,105,108,107,113,105,110,111,117,112,113,103,103,104,105,101,110,109,100,105,111,109,114,105,103,117,117,99,104,94,107,110,96,115,98,107,107,103,112,95,120,115,108,96,105,120,92,102,99,103,115,109,99,108,104,101,106,96,101,108,111,109,100,103,106,116,96,102,104,109,103,105,112,100,106,103,106,103,94,112,98,104,108,106,97,100,108,99,107,96,104,96,101,109,99,111,103,103,107,114,116,103,102,118,123,109,95,108,100,98,98,110,115,105,101,108,115,113,101,106,107,99,114,117,102,112,99,105,124,88,101,116,113,107,99,102,101,101,84,99,100,92,110,99,117,112,119,108,101,107,98,101,116,108,99,97,105,100,94,113,95,101,96,95,114,108,105,99,107,110,103,100,92,104,88,96,103,112,97,97,104,95,121,96,99,108,102,110,93,105,103,126,105,88,92,103,107,100,101,112,98,97,100,122,109,107,104,91,109,109,101,104,99,103,99,105,111,109,120,94,120,100,125,102,110,112,72,107,91,128,133,123,142,171,173,174,182,198,169,156,187,171,157,155,169,145,148,141,136,118,128,117,107,122,113,113,104,117,103,104,104,105,115,129,108,100,101,109,96,107,115,114,100,107,106,117,99,103,96,102,122,114,106,110,115,100,98,103,98,109,104,103,104,105,99,114,108,109,112,108,103,81,106,117,99,113,101,114,108,101,102,116,105,95,101,98,104,113,110,106,103,96,84,110,102,94,107,111,95,102,116,101,102,101,98,111,127,105,110,105,110,104,107,90,110,116,103,102,120,108,114,93,101,111,105,110,108,105,108,110,105,107,96,113,108,98,109,105,113,98,120,116,104,123,95,106,94,108,104,96,111,110,112,103,102,107,100,112,103,105,96,102,96,106,106,105,110,112,107,106,95,104,104,112,106,100,118,117,98,114,122,97,112,99,102,96,97,101,116,92,113,109,97,100,95,95,109,108,108,98,105,99,109,101,102,103,99,101,109,121,99,106,104,102,118,119,103,102,113,119,102,117,106,103,116,101,108,102,120,113,108,109,103,104,111,116,121,113,103,97,110,102,99,102,109,105,92,100,97,100,105,104,106,111,113,100,101,100,102,110,122,109,118,108,101,109,105,85,112,106,111,100,113,106,95,101,98,120,106,101,117,102,104,115,98,101,115,107,109,104,107,94,107,113,105,113,109,93,99,118,109,106,106,109,129,102,95,99,104,130,113,108,121,114,102,101,98,107,108,101,102,109,110,108,118,95,102,102,115,105,108,115,104,107,110,104,118,103,104,102,113,90,108,97,96,106,99,111,101,98,106,104,107,92,104,102,111,127,113,95,116,111,103,87,105,99,109,116,106,103,114,105,92,105,106,86,113,109,103,106,112,110,114,101,101,108,99,102,109,96,117,110,101,116,122,114,106,101,98,109,118,106,97,96,111,100,103,102,110,104,99,89,106,94,114,99,98,107,106,106,105,108,101,96,95,102,103,99,103,104,96,95,102,100,100,92,108,106,110,109,111,110,98,104,105,101,100,99,104,106,103,102,92,101,112,115,98,98,112,121,99,98,94,115,101,107,98,100,96,95,99,111,113,99,115,93,109,104,101,106,102,110,107,104,105,116,112,105,107,99,104,99,109,95,106,110,114,108,115,97,102,99,99,99,110,116,113,108,112,100,101,101,112,112,103,115,95,106,100,108,104,103,94,109,98,103,113,108,92,106,115,106,108,102,102,106,99,113,105,111,96,105,106,92,87,114,122,111,94,102,107,115,113,112,110,108,117,106,107,109,113,112,101,122,107,99,101,100,115,102,95,105,109,111,109,108,121,112,108,102,99,109,111,117,117,104,101,95,99,105,100,113,91,107,107,106,103,103,110,103,108,84,100,114,99,119,106,100,106,106,96,105,104,98,112,95,103,113,106,104,110,102,111,98,113,102,99,115,104,87,92,104,96,110,101,101,110,119,108,98,95,110,108,108,112,102,99,105,98,104,95,105,102,111,110,101,110,93,111,103,109,110,128,113,99,112,105,97,120,105,95,102,87,110,97,93,102,104,111,103,99,96,113,117,108,100,112,108,105,96,101,104,99,102,107,107,106,113,99,116,108,99,103,100,97,104,108,114,116,101,98,119,109,106,108,116,102,105,109,112,115,102,104,102,104,99,102,97,104,98,102,109,96,104,103,97,83,104,116,106,113,94,104,105,87,110,114,110,101,112,97,100,99,103,115,100,105,101,72,108,106,105,106,114,96,110,117,106,103,98,103,102,96,100,103,110,100,94,98,96,105,110,102,108,103,102,108,106,95,112,113,110,104,104,103,92,110,120,106,94,102,97,100,111,94,115,107,103,106,106,118,113,106,96,102,104,101,100,114,83,98,94,111,100,102,112,104,99,102,106,100,99,97,93,103,105,102,123,83,103,99,112,99,99,113,100,98,102,96,97,101,107,101,107,106,103,108,101,106,108,104,102,107,106,102,113,114,109,110,111,103,88,108,102,98,112,110,97,106,112,112,98,83,93,105,129,105,104,120,105,109,109,103,117,85,90,107,108,124,103,109,101,106,101,114,109,96,108,99,99,111,100,106,102,94,95,103,106,105,101,100,96,108,108,104,109,97,100,103,88,105,95,111,94,101,98,109,105,109,115,105,101,96,103,106,95,111,98,105,97,85,101,95,93,98,95,100,110,123,105,104,101,103,114,97,105,114,102,94,104,122,111,103,100,109,104,110,104,108,87,91,108,112,103,106,104,98,107,94,91,104,91,95,72,115,111,110,112,110,105,98,103,104,103,100,102,118,104,120,103,100,125,93,106,110,101,102,101,108,106,95,108,94,108,109,108,115,117,98,111,101,113,95,103,113,91,110,99,104,91,108,100,87,97,105,117,95,96,100,100,103,107,121,103,107,108,85,108,102,119,114,98,101,97,98,100,107,108,96,89,103,95,108,92,100,113,108,97,109,101,108,112,117,100,98,119,113,112,103,109,101,104,107,102,100,113,99,87,110,83,118,105,106,109,103,110,113,98,105,114,105,108,107,104,89,101,102,114,124,99,98,105, +559.57355,105,108,108,102,96,107,113,107,103,104,117,105,98,112,106,100,97,111,95,111,103,98,101,108,86,101,111,107,108,102,105,114,104,126,105,104,108,98,105,101,98,103,112,107,108,110,106,109,97,113,106,102,94,113,105,96,106,92,101,96,94,110,95,100,105,112,107,105,94,100,104,96,108,111,104,107,96,103,105,90,93,102,103,107,102,103,103,113,99,100,105,105,107,102,90,102,101,101,102,98,101,99,93,109,110,105,99,98,105,100,103,114,114,99,103,102,109,105,115,104,96,109,98,100,100,106,77,95,100,102,109,103,107,96,100,105,94,104,109,99,84,118,108,103,90,104,100,109,108,104,113,102,119,95,104,106,109,109,104,97,109,99,105,101,112,104,101,87,113,100,102,105,105,106,106,115,108,102,102,106,92,102,100,104,129,102,98,93,113,112,104,104,105,102,101,94,113,102,112,108,106,112,90,98,105,110,102,117,105,101,97,113,107,98,108,101,94,123,106,97,110,104,117,110,107,113,101,108,121,97,106,90,105,107,103,111,107,101,101,109,125,95,107,100,110,99,107,108,103,96,101,103,96,91,106,111,99,103,104,110,97,117,101,95,86,103,124,107,102,104,106,110,105,113,109,95,107,103,106,97,106,109,100,96,114,136,93,100,115,115,100,108,112,111,105,106,107,109,114,102,102,105,100,106,103,115,105,117,96,118,112,112,105,98,94,98,98,102,108,102,109,108,104,111,108,105,122,104,101,107,121,93,107,103,104,104,107,116,103,105,112,108,93,99,98,130,111,113,128,102,109,109,103,111,107,104,87,102,102,104,112,108,106,104,109,100,104,110,102,102,114,99,104,110,110,99,106,106,103,103,95,110,102,107,107,110,101,105,103,109,120,100,109,120,77,113,100,111,99,122,95,103,107,107,101,99,117,104,99,70,93,101,101,104,103,95,113,102,104,114,112,116,100,103,93,99,113,97,102,108,103,109,100,104,94,100,108,121,95,99,104,99,107,112,96,98,111,102,118,116,90,98,106,108,107,109,103,100,106,99,110,99,103,106,112,120,105,101,104,117,106,107,105,98,110,101,100,110,105,113,106,113,111,109,116,97,97,118,103,105,105,108,114,100,94,107,107,98,103,102,116,108,99,87,106,94,89,87,112,107,114,113,100,107,119,109,116,107,91,101,109,113,113,108,106,101,107,101,100,111,111,113,109,106,115,114,109,105,111,119,109,116,111,100,109,97,95,100,110,102,111,103,103,101,103,99,107,115,94,110,103,112,100,105,102,98,109,114,106,97,102,106,108,103,107,105,121,84,105,106,104,104,105,116,100,98,99,113,109,113,112,102,103,105,116,102,113,104,111,102,100,105,107,110,107,115,103,99,117,93,93,104,116,103,120,95,98,107,103,108,104,107,110,110,114,100,98,108,101,114,106,103,106,108,113,105,100,78,124,110,98,87,107,100,94,105,119,95,110,124,113,97,98,108,109,121,105,111,94,105,114,104,97,106,92,99,106,102,113,114,118,109,103,94,91,103,104,105,103,105,104,117,113,98,108,95,104,104,102,105,104,105,102,107,96,113,108,103,105,98,96,108,95,112,108,120,102,109,96,103,99,108,109,118,107,107,102,84,116,112,109,103,112,102,94,105,99,101,115,91,116,112,104,109,98,110,102,108,115,98,93,100,117,103,100,116,122,125,91,110,104,109,109,106,107,75,108,108,112,103,109,117,98,121,99,102,98,107,104,94,105,89,104,100,118,110,110,111,123,107,113,86,110,105,110,106,114,104,106,107,101,105,118,105,116,104,91,111,104,106,109,96,87,101,108,116,115,110,109,113,109,113,103,106,113,110,113,97,109,101,113,112,101,104,99,103,94,103,98,102,108,99,109,94,97,120,117,96,107,116,106,107,116,106,109,98,100,109,104,109,101,110,111,117,90,95,110,108,109,106,95,109,110,110,108,107,78,108,108,115,108,137,110,109,98,100,113,109,117,98,102,104,111,103,104,100,100,99,103,105,112,110,103,115,94,98,106,103,100,101,102,109,101,116,97,108,98,99,99,111,106,110,114,110,100,101,105,113,103,100,123,109,109,99,122,99,94,89,99,104,101,102,112,117,96,108,97,104,102,114,105,107,104,105,102,103,98,95,112,108,113,113,116,107,124,117,114,105,101,106,100,97,105,113,94,94,104,103,113,106,100,116,110,101,125,99,103,111,101,113,102,102,97,75,117,94,109,105,108,99,109,99,100,103,108,108,112,94,109,113,105,97,94,105,116,119,106,101,91,102,108,124,93,118,99,126,107,105,110,107,103,102,106,86,109,107,116,108,99,100,126,110,106,110,110,125,104,105,98,139,136,166,162,212,204,183,173,170,196,160,134,144,160,146,125,145,111,116,130,102,116,106,104,108,106,106,81,109,96,89,113,111,127,120,96,118,108,109,105,102,94,90,84,117,106,106,107,101,98,92,100,103,99,80,104,104,107,90,112,103,110,112,96,107,97,98,99,106,109,99,101,124,99,107,99,105,106,99,101,117,104,103,94,98,105,117,103,109,111,109,115,103,112,91,105,103,106,110,103,95,109,100,94,102,106,117,100,104,106,98,104,106,106,102,110,109,108,116,105,108,104,112,94,74,99,100,99,100,93,105,101,94,116,112,93,102,107,117,121,102,104,100,103,101,104,94,103,113,96,114,89,108,105,97,101,109,103,95,94,115,103,102,86,99,103,107,111,106,115,104,112,100,103,112,99,109,105,117,102,114,106,101,105,70,110,118,101,113,99,109,101,105,96,109,106,105,114,106,104,103,109,106,106,95,103,87,108,115,105,102,95,117,109,114,95,111,112,111,98,115,103,94,91,102,106,93,99,101,99,102,109,99,97,121,98,103,103,109,117,106,108,102,113,98,97,90,108,106,105,106,107,112,102,97,114,99,100,102,92,116,106,98,99,115,91,109,109,100,104,98,112,108,100,101,103,94,116,82,110,107,109,105,120,100,99,99,90,112,101,90,99,105,113,99,103,111,101,103,98,109,100,110,109,97,91,102,96,87,117,106,96,109,92,98,101,94,105,95,109,105,103,100,108,101,107,104,107,108,110,118,88,107,100,102,102,95,106,101,107,94,87,97,99,122,111,95,104,101,99,88,105,101,94,102,100,102,95,104,98,100,113,101,100,102,105,94,119,100,112,105,95,89,111,94,105,104,114,91,107,81,101,112,91,121,99,108,100,87,114,92,97,94,105,105,96,98,98,114,95,100,108,99,108,106,103,101,106,89,96,109,112,106,105,100,110,107,110,94,116,104,120,101,98,111,103,98,104,105,82,96,86,107,93,112,103,105,108,114,95,101,101,121,121,98,106,96,85,102,96,98,108,97,111,108,105,110,109,106,109,105,102,93,106,98,104,103,98,92,107,98,99,102,92,91,100,115,94,108,88,98,105,106,106,108,104,97,102,103,106,95,114,105,118,101,107,99,97,105,119,107,92,111,101,108,111,109,93,99,91,105,106,117,100,107,100,105,111,94,97,117,87,107,111,90,103,98,101,103,110,99,117,103,94,120,99,115,100,104,99,102,117,102,98,107,95,103,94,106,115,99,97,104,102,106,99,105,101,117,105,106,97,113,109,104,98,103,99,106,99,108,106,100,96,100,97,114,99,102,107,109,112,116,97,103,93,102,101,112,102,106,116,107,107,112,99,109,112,99,93,103,104,107,102,103,106,96,97,102,105,104,111,97,95,106,99,105,114,94,110,114,109,96,102,97,99,108,96,95,99,113,101,107,102,99,103,105,109,112,111,110,107,110,110,96,111,91,96,112,103,109,129,94,102,104,96,104,97,113,101,96,98,106,111,106,102,108,94,116,99,102,100,90,99,104,110,108,69,103,100,84,100,99,109,106,99,104,102,101,110,107,106,97,103,102,92,111,105,93,103,102,105,105,93,72,116,98,99,104,97,102,95,102,105,95,90,91,98,107,71,121,106,108,110,94,111,92,91,100,97,106,96,105,98,99,102,104,104,110,97,104,105,101,104,102,87,104,113,102,99,95,90,102,101,85,83,125,106,111,108,97,100,91,114,107,88,117,97,120,108,113,104,120,99,111,101,106,102,100,91,100,95,98,97,97,102,97,106,108,102,120,107,96,113,104,104,100,100,86,92,105,94,95,100,101,96,113,97,102,84,101,108,103,100,112,98,113,109,108,109,98,123,95,116,106,110,98,115,108,105,105,95,99,95,110,100,100,113,92,107,99,104,100,110,88,106,106,105,96,98,94,88,103,104,98,106,103,104,100,91,116,102,99,117,95,95,110,102,99,102,116,105,88,100,94,101,95,102,72,106,96,110,109,116,104,112,103,91,102,106,100,105,109,124,104,106,104,100,109,125,104,96,83,100,110,105,113,105,111,108,112,101,99,104,100,111,96,98,112,98,103,102,95,100,66,100,101,111,95,97,100,99,98,100,112,86,99,110,105,97,93,104,99,97,91,113,107,108,94,101,91,93,101,92,105,115,102,90,95,103,104,99,106,98,87,101,103,99,102,94,107,88,98,106,107,111,103,101,94,98,113,103,91,102,99,106,111,100,109,106,103,107,99,98,103,102,110,100,93,107,105,99,102,109,105,106,102,105,117,106,102,99,102,105,106,94,87,106,114,113,99,99,99,102,107,115,101,100,103,108,103,100,96,102,103,107,82,103,103,98,91,106,95,94,103,105,85,105,103,109,93,88,113,109,103,104,101,107,113,101,106,95,96,105,107,111,101,113,104,105,111,89,114,93,112,117,103,94,104,105,89,100,80,109,85,103,96,82,98,91,91,112,105,97,92,111,101,121,104,99,105,105,101,95,102,108,93,104,100,96,97,113,98,94,93,97,87,104,94,96,75, +559.71442,96,99,122,107,102,102,100,107,107,107,104,100,130,111,123,95,95,106,128,96,113,106,90,121,100,124,106,103,106,107,101,110,104,107,106,90,105,94,94,99,109,118,109,108,103,98,93,115,105,104,97,98,90,90,102,104,103,95,103,91,114,123,86,102,100,112,102,98,104,104,107,113,107,110,107,96,79,101,109,110,95,107,104,104,109,95,112,101,108,99,99,107,113,100,66,94,103,106,106,110,96,117,104,99,107,111,100,110,107,103,100,109,103,120,94,103,106,102,115,113,108,107,106,105,109,108,103,101,106,108,110,116,104,99,90,99,113,97,106,104,115,95,102,102,87,101,108,108,104,85,110,95,106,86,104,108,107,102,107,102,90,117,103,108,98,102,103,104,93,99,104,110,96,113,97,103,108,101,114,110,113,105,100,110,84,108,97,106,111,109,109,104,117,101,99,105,112,105,105,115,102,101,99,120,97,106,114,104,115,110,102,103,103,98,108,116,98,124,103,101,107,118,118,102,109,91,98,109,121,118,113,100,106,112,105,111,107,100,103,102,105,95,110,125,101,110,94,108,113,84,104,100,106,95,109,115,104,107,109,117,94,112,106,99,94,118,113,102,114,113,123,103,106,111,113,109,99,120,109,99,117,98,107,99,123,98,106,104,103,98,95,103,84,108,116,118,111,98,117,113,110,106,100,117,99,104,107,121,108,102,94,117,115,107,100,106,116,100,91,107,102,90,101,113,98,103,105,93,107,115,109,91,106,117,115,108,103,102,105,106,98,108,100,99,104,111,80,113,112,108,110,112,117,102,101,107,121,102,108,93,95,112,106,100,99,96,106,102,90,106,105,105,104,95,102,103,104,96,109,106,117,117,103,100,103,117,117,102,99,108,109,106,112,117,100,100,104,109,96,111,103,106,110,87,117,105,103,120,95,101,98,96,103,112,108,109,106,100,114,104,94,102,116,104,98,105,105,107,105,101,112,102,100,101,93,105,108,101,131,105,109,105,103,106,118,94,97,103,100,106,101,90,113,109,100,100,106,112,111,102,103,114,105,107,102,112,120,113,109,98,96,104,106,109,105,116,103,106,101,112,96,84,115,100,99,100,115,107,101,101,107,101,100,102,102,106,100,102,107,109,107,108,93,105,110,114,103,82,101,97,124,99,106,100,108,103,112,106,106,100,87,117,111,131,106,109,109,83,109,110,69,98,96,107,100,103,119,116,101,103,97,104,104,110,97,108,105,105,96,134,115,108,103,117,102,102,111,109,106,111,103,103,102,94,107,101,120,103,103,91,98,105,104,108,96,124,107,127,109,113,103,113,105,95,102,117,105,100,104,106,103,113,102,106,109,120,113,109,106,103,113,114,115,126,101,117,105,109,102,96,99,107,109,111,100,95,93,106,100,111,109,97,102,107,112,101,112,99,93,107,116,105,105,106,100,103,101,96,101,107,122,96,106,103,112,98,110,105,96,106,113,115,100,103,106,114,115,92,83,114,97,119,127,105,111,104,106,101,104,108,115,107,112,102,102,116,100,112,99,113,109,107,114,98,116,106,105,103,103,111,113,108,90,106,100,113,109,105,102,97,105,106,105,110,107,114,98,99,94,101,110,102,104,102,121,108,100,94,99,103,111,99,87,120,95,98,107,109,107,116,97,111,102,98,104,104,96,124,102,103,107,100,100,102,107,108,112,99,101,96,117,114,100,95,105,110,94,105,108,101,102,107,104,113,92,105,101,115,110,96,115,106,98,106,106,93,111,105,105,92,99,93,112,122,122,111,118,119,105,111,106,100,100,112,112,107,102,99,111,107,106,91,95,103,118,109,95,101,102,99,102,108,108,117,110,95,108,122,116,105,92,105,92,101,115,108,105,105,105,97,106,95,115,116,105,108,109,110,111,110,103,97,106,107,100,99,91,104,95,107,109,111,100,110,101,107,107,115,104,108,104,114,117,112,106,114,104,102,116,99,117,100,103,102,101,98,105,103,115,104,105,97,85,101,102,100,99,118,101,98,103,102,108,110,107,108,112,102,95,114,105,105,107,108,113,108,116,105,118,112,94,95,99,116,104,90,103,118,99,106,111,103,107,110,104,108,105,101,105,111,113,108,110,109,108,113,97,75,100,107,99,108,95,114,120,108,111,103,95,91,121,105,112,94,99,106,112,109,111,101,107,94,99,104,96,109,106,103,101,109,117,104,102,90,111,105,101,105,105,107,105,127,103,110,104,98,100,107,101,96,107,106,108,113,107,106,105,101,104,101,88,121,103,108,108,102,99,114,91,113,99,102,96,100,106,103,108,108,116,106,109,107,120,116,119,119,102,98,113,107,116,106,110,125,103,113,116,130,128,135,150,142,152,184,163,182,186,196,134,178,160,188,183,167,137,142,130,139,118,116,112,106,103,123,105,88,105,102,103,107,112,108,87,102,108,107,121,96,108,118,87,109,106,102,112,103,113,101,113,115,106,100,117,98,102,113,103,105,117,108,113,107,111,112,117,98,119,102,105,102,110,105,101,113,119,102,92,111,101,91,103,96,112,101,111,97,106,99,116,105,97,100,90,98,100,93,108,98,104,100,102,105,102,121,99,108,112,100,113,98,109,98,102,96,81,95,107,102,99,104,100,86,112,95,106,104,102,98,104,111,105,105,95,105,94,100,97,97,107,107,102,101,112,98,110,118,106,109,113,98,99,101,118,112,110,110,104,96,101,111,98,107,107,101,108,121,112,110,108,97,109,110,88,117,108,113,101,115,105,96,102,122,103,94,111,111,92,102,96,105,100,98,100,118,112,99,103,106,100,112,117,108,103,108,101,107,108,105,92,105,102,99,112,109,101,113,102,106,106,106,109,98,103,107,96,98,112,109,105,92,105,102,101,102,105,105,100,106,104,106,111,107,105,96,117,101,87,129,115,102,106,113,98,109,97,102,107,102,112,104,107,99,99,105,104,106,110,110,81,103,104,111,108,95,113,111,102,100,118,101,98,113,101,111,113,101,105,117,97,101,104,96,97,100,109,91,109,100,113,96,107,104,106,114,91,111,110,102,102,99,86,104,106,112,101,101,110,100,91,109,100,99,104,95,103,95,113,100,106,113,114,109,117,98,118,117,106,105,117,98,103,115,98,115,103,104,104,110,91,94,105,116,109,103,105,101,106,89,111,120,115,107,100,115,117,110,118,108,91,100,106,100,99,101,116,104,101,109,106,95,100,104,96,94,104,114,104,106,110,94,108,102,108,108,102,115,98,104,92,118,100,102,109,95,101,98,99,90,111,107,110,112,108,93,91,104,114,105,128,99,99,102,104,102,99,103,105,98,81,92,94,103,90,97,95,99,110,109,112,119,98,110,105,101,120,107,111,109,93,86,109,108,99,82,106,98,103,101,108,95,98,98,105,96,94,94,109,100,100,112,105,100,108,92,104,95,107,111,105,111,113,95,119,92,102,99,104,112,92,101,108,103,104,96,96,114,105,99,103,107,100,112,107,111,105,106,103,98,116,104,108,106,100,105,107,118,99,123,94,107,98,97,122,108,101,103,104,95,101,114,114,99,90,113,107,109,101,131,102,108,107,97,114,93,107,102,113,95,108,109,98,102,106,103,105,95,109,103,101,106,76,119,108,100,101,98,113,106,116,101,101,92,125,87,110,107,107,106,112,109,89,110,109,98,100,99,112,108,102,109,99,103,100,110,116,100,111,101,94,101,102,111,84,105,110,99,96,107,98,107,99,87,108,103,100,112,117,121,102,91,104,102,121,101,109,120,94,91,110,106,95,102,112,109,95,102,110,106,107,98,95,102,88,102,101,116,120,98,103,120,90,124,117,108,95,118,116,108,105,102,116,114,103,111,96,104,107,106,100,92,114,102,99,104,106,101,85,101,100,102,104,109,117,110,119,99,108,98,116,99,103,102,102,116,102,98,96,99,106,95,82,106,96,95,106,100,97,109,101,105,116,107,90,103,94,105,109,95,93,106,121,99,106,104,113,100,94,110,110,106,97,103,109,99,95,103,119,98,117,102,109,97,95,107,107,99,96,100,112,98,95,100,102,86,105,107,108,103,91,96,96,106,113,103,105,113,109,103,104,110,97,107,93,111,102,94,121,102,104,102,94,95,100,82,107,106,107,104,98,119,99,110,89,101,110,104,111,102,90,112,105,113,98,105,117,112,109,103,107,116,114,108,102,86,108,95,99,91,113,106,104,105,109,96,109,108,113,102,106,88,95,96,111,104,107,101,101,108,108,90,99,104,112,106,95,102,106,100,105,109,107,124,111,92,102,107,102,103,102,76,98,99,125,97,104,108,111,114,104,102,110,102,94,95,125,96,106,111,102,106,107,111,104,99,107,102,99,100,105,105,111,106,94,121,101,91,108,97,101,101,87,97,92,108,102,106,104,104,106,109,103,99,90,96,103,105,105,100,103,102,110,98,102,112,111,98,100,108,111,96,98,98,101,95,105,96,116,106,104,96,94,93,99,104,100,105,103,107,99,96,91,93,102,107,106,110,101,116,91,104,101,99,91,92,115,90,106,110,103,102,100,109,100,95,103,109,107,106,104,91,106,111,102,103,106,104,113,103,99,106,112,111,98,106,106,103,95,88,102,99,103,113,110,99,112,99,112,101,103,111,96,94,77,107,90,96,100,114,101,98,113,98,111,99,105,90,125,128,104,112,103,119,108,91,119,100,98,111,98,90,95,100,97,104,96,113,102,102,119,109,109,111,104,103,102,102,109,117,91,98,100,111,97,98,89,111,114,88,96,116,92,94,90,109,98,103,97,100,110,103,113,99,109,102,108,95,109,105,81,99,109,117,98,106,123,91,106,98,104,100,100,108,109,99,100,110,108,111,105,102,104,94,99,100,109,76,105,92,109,109, +559.85529,98,99,126,107,88,113,95,108,105,104,102,91,94,103,121,100,103,108,110,99,110,107,104,105,96,94,103,109,116,117,99,107,109,104,105,98,109,111,101,101,110,94,99,110,102,93,113,107,118,117,96,104,93,113,100,109,108,111,95,99,107,110,91,92,97,119,96,103,102,108,100,111,107,107,86,113,108,84,116,106,99,110,95,106,129,95,110,108,102,91,95,108,111,106,105,97,99,102,99,118,101,106,100,112,83,110,115,102,126,109,103,97,104,105,109,104,100,104,108,95,112,97,99,93,113,116,112,105,112,102,114,109,97,98,117,103,102,109,95,106,106,77,91,105,102,92,127,98,103,104,109,113,95,98,105,97,102,94,103,99,108,105,111,103,101,101,117,100,102,95,112,99,102,122,91,109,80,100,108,102,93,100,95,100,106,100,100,102,113,104,102,115,114,110,97,104,107,104,111,109,99,95,93,98,108,101,103,108,118,99,112,110,100,109,105,108,105,109,108,105,121,105,93,103,100,104,104,100,103,113,114,109,100,106,96,101,103,113,114,90,99,108,104,107,98,95,115,108,99,99,99,122,99,111,107,103,91,105,95,106,98,118,102,92,106,108,107,116,105,110,109,107,90,96,123,105,98,106,107,101,102,113,105,127,104,97,86,99,104,107,98,102,117,112,106,98,106,101,109,101,109,95,111,108,109,103,111,101,112,94,97,109,114,121,109,98,99,112,88,112,103,103,112,103,104,102,102,113,102,120,116,120,94,108,116,109,121,98,104,94,99,105,101,102,100,107,107,106,89,109,109,109,105,102,102,96,110,108,108,99,109,100,103,100,100,106,108,121,113,107,100,104,117,110,108,104,92,116,104,113,112,97,84,105,103,107,103,104,102,115,108,98,96,104,98,107,100,104,99,118,100,96,103,105,98,99,103,105,106,105,115,97,112,98,106,104,102,111,102,104,104,103,101,96,100,123,108,96,106,93,127,102,119,116,107,100,101,103,74,112,109,115,101,98,97,100,112,98,113,109,82,104,101,120,105,89,98,117,115,103,94,106,104,106,109,105,113,117,114,105,115,99,112,102,99,96,99,109,109,98,110,105,110,109,99,98,100,103,109,118,106,110,108,111,108,124,102,108,103,113,114,112,91,102,111,113,91,99,103,113,121,118,100,113,117,103,106,102,119,103,122,113,94,103,104,118,101,111,102,107,94,109,110,101,98,96,105,109,113,115,104,99,90,103,118,115,105,111,103,110,88,111,115,108,99,107,103,104,100,109,105,118,100,105,105,95,104,102,105,107,101,105,107,123,102,112,113,105,116,102,102,103,111,103,103,97,104,123,119,119,117,111,104,111,108,115,110,98,114,134,112,120,88,113,97,106,92,104,91,100,126,107,95,112,111,117,103,106,111,100,93,105,99,114,95,101,103,104,104,103,102,107,99,108,93,118,98,100,106,109,107,102,105,102,101,93,97,116,117,123,86,106,110,97,99,108,104,95,116,105,104,102,99,110,106,70,96,105,108,108,109,106,111,107,104,112,107,120,100,104,102,109,118,91,108,105,107,113,93,111,112,106,101,108,121,102,112,93,110,102,111,103,99,105,116,93,108,107,116,102,109,114,104,108,107,100,95,107,103,101,100,108,108,112,107,103,102,118,112,114,109,111,111,104,98,107,109,91,114,102,108,102,107,99,102,83,101,106,99,99,104,92,96,91,104,87,94,104,119,99,101,105,91,104,94,97,99,97,90,87,94,113,122,112,112,94,108,107,96,104,103,104,113,113,99,108,102,112,106,115,91,120,128,101,113,111,98,107,102,97,107,105,107,106,115,116,110,103,115,100,117,115,105,121,95,103,87,107,109,101,110,111,101,116,108,102,105,111,130,103,111,103,107,117,96,104,102,103,108,102,99,115,108,107,100,111,103,107,103,95,115,105,105,110,106,101,104,103,97,110,117,113,100,103,104,98,96,110,109,108,119,110,103,111,106,101,105,108,121,97,107,119,103,108,85,103,130,104,110,110,105,121,95,109,94,90,104,128,114,111,102,106,118,106,108,100,101,91,94,111,102,128,107,118,110,110,102,104,88,99,86,95,112,106,120,109,105,102,113,108,104,108,118,113,88,100,101,93,108,110,96,104,120,103,113,100,105,107,104,114,80,105,109,116,96,104,107,106,103,102,108,103,105,99,113,111,109,99,110,104,109,96,97,111,84,103,104,102,96,106,100,104,108,105,113,108,105,118,108,110,115,97,117,102,106,94,98,108,109,105,103,95,113,110,104,99,105,112,84,109,104,105,96,112,96,104,107,104,117,99,113,110,114,139,102,124,112,99,121,112,118,112,103,123,120,103,127,127,135,154,146,161,178,184,185,188,201,156,183,171,181,153,148,155,178,150,142,133,139,123,105,100,113,113,120,110,114,120,105,101,107,109,108,98,108,115,115,118,96,109,112,119,116,126,108,124,101,90,117,102,98,111,108,91,117,108,107,105,102,95,87,93,112,103,102,107,107,104,111,97,101,109,113,101,104,114,108,113,97,106,99,127,101,105,99,113,103,104,102,97,99,103,110,101,107,103,109,91,102,104,103,88,109,109,97,99,110,105,111,101,106,103,106,103,105,101,104,101,93,106,112,108,119,103,98,123,83,109,109,104,99,81,111,125,101,99,98,95,112,109,98,114,100,106,105,114,112,94,102,110,102,100,115,116,100,97,95,102,106,114,104,106,103,116,108,108,108,112,101,101,105,101,106,104,106,121,105,103,104,97,109,109,102,117,103,108,95,108,93,109,87,104,94,109,111,100,104,107,108,87,113,104,107,100,108,104,98,101,110,98,96,111,116,124,107,104,100,111,101,113,92,112,105,105,109,101,103,106,95,115,100,97,106,112,86,114,95,104,96,111,103,104,90,116,130,119,96,98,124,107,103,106,102,103,93,105,104,83,110,114,99,92,104,112,108,104,113,115,102,88,97,103,99,100,115,106,109,118,105,111,97,101,95,104,109,106,94,111,102,135,119,111,97,118,103,112,105,105,96,117,103,117,99,109,109,108,95,107,108,91,115,106,102,105,93,98,99,108,114,105,102,121,116,101,114,104,112,107,94,110,95,94,97,120,117,111,100,106,105,115,99,101,113,110,96,102,107,104,113,112,105,95,109,98,88,109,100,103,105,109,118,117,101,101,105,103,117,108,116,107,115,106,99,100,117,107,106,98,93,107,105,103,97,95,103,113,112,105,108,94,111,114,111,110,106,116,113,106,101,115,115,98,103,98,106,102,114,95,109,87,91,106,112,102,104,98,112,103,119,117,100,113,113,98,113,108,100,108,107,101,91,102,103,96,106,107,103,109,100,107,105,84,102,107,104,102,114,111,95,103,103,97,107,99,115,120,102,105,99,100,104,111,105,102,102,106,102,97,114,102,99,118,99,117,92,106,108,107,100,98,95,121,113,94,107,101,110,108,108,106,105,99,96,101,107,105,107,117,109,104,105,113,99,116,106,106,106,109,102,108,110,109,113,104,94,99,107,104,99,117,108,111,95,105,120,108,103,103,105,105,112,91,114,101,94,125,105,112,106,102,98,100,104,110,95,96,101,108,93,104,90,99,113,111,108,114,105,107,119,110,115,102,102,102,107,101,103,112,98,106,98,99,112,108,101,108,109,101,99,102,97,123,90,103,106,108,102,90,103,112,96,103,99,116,97,91,98,101,102,99,102,105,100,101,101,106,107,99,106,99,104,106,113,103,108,121,117,106,106,95,102,91,99,116,105,99,97,108,108,111,106,98,109,106,102,100,100,111,99,95,113,96,106,113,107,96,120,99,105,103,102,102,101,106,101,110,109,109,113,116,110,107,104,96,105,96,112,110,111,108,105,100,109,102,131,101,111,100,109,118,102,104,106,105,109,106,117,109,112,112,122,97,103,111,104,88,95,106,102,92,119,104,99,107,96,107,105,109,101,102,106,106,94,111,104,96,105,119,109,102,120,109,103,114,111,98,105,100,104,120,95,109,112,101,102,105,110,113,116,109,110,116,105,99,106,104,108,104,114,109,102,105,127,102,112,102,120,105,101,97,105,115,93,98,102,107,101,103,106,98,103,117,103,111,100,106,72,95,91,115,93,90,93,116,105,104,106,105,107,120,119,114,104,106,106,109,109,98,98,99,113,103,113,99,128,109,105,110,107,113,105,116,108,91,96,105,105,91,100,105,107,98,105,113,104,101,103,112,113,97,108,97,114,100,103,120,91,108,101,99,100,95,108,104,110,95,103,103,106,116,102,102,117,101,115,104,86,106,101,132,103,101,114,101,108,102,106,106,101,93,113,100,107,107,119,95,115,102,98,103,113,105,112,111,111,113,124,110,101,107,102,131,96,99,104,104,103,116,108,101,98,102,113,101,98,104,95,106,108,104,104,106,95,95,91,87,101,110,108,101,107,113,125,110,108,94,103,93,104,109,93,100,124,108,105,90,122,109,105,103,110,102,93,111,103,111,90,112,92,102,97,107,109,90,92,93,105,103,115,104,92,113,105,99,99,113,110,106,117,106,114,101,103,97,106,108,105,95,111,94,98,95,118,99,116,109,102,105,107,110,106,103,90,99,101,105,105,97,104,98,112,103,100,113,98,120,108,105,106,100,111,114,110,104,100,101,104,112,106,104,112,101,94,112,102,94,106,100,98,105,109,118,107,103,101,113,106,107,109,96,106,94,109,96,91,109,112,109,107,104,114,99,141,110,87,96,102,97,105,100,99,113,84,115,109,108,120,99,101,105,97,113,103,94,111,105,104,95,115,107,100,96,92,88,97,97,113,118,95,103,115,98,107,96,106,117,100,110,101,98,106,111,105,87,109,109,102,92,100,101,94,102,96,104,120,93,101,95,115,100, +559.99615,109,97,95,112,99,115,117,98,95,124,91,100,97,110,98,105,95,103,99,115,106,103,108,97,109,101,110,96,111,108,104,95,103,82,93,103,115,107,97,82,101,97,110,122,110,105,100,104,114,99,98,93,105,109,114,98,94,103,107,108,106,103,110,90,103,107,101,101,98,105,106,116,89,101,110,116,104,105,103,112,116,102,110,99,121,121,103,118,117,91,80,105,103,92,104,91,104,86,121,98,97,98,120,112,112,102,98,106,99,95,101,99,100,96,105,95,95,100,122,112,113,105,105,106,107,112,106,102,104,117,113,99,110,110,105,118,110,113,100,94,78,98,101,99,93,101,103,103,96,114,107,116,105,100,95,94,102,92,112,101,98,100,106,110,106,93,105,90,103,113,107,106,102,108,106,120,102,90,109,98,98,98,108,105,103,89,108,101,108,104,108,103,101,107,104,98,95,116,102,116,106,95,100,112,102,114,106,143,106,105,95,99,124,103,98,99,92,93,118,103,107,104,99,109,101,111,102,111,105,103,108,107,99,106,100,93,109,104,106,106,100,106,112,114,112,107,97,104,107,109,108,112,116,106,99,77,109,113,99,79,92,102,95,113,99,100,118,103,106,106,104,107,107,117,111,112,103,96,109,92,106,102,98,105,97,104,94,109,116,106,81,113,110,111,108,117,116,108,109,116,95,103,107,114,100,106,119,102,102,109,99,112,96,107,108,104,101,119,116,106,93,115,105,102,108,113,112,105,99,108,106,103,102,97,107,125,97,100,105,101,95,101,104,96,99,100,106,114,118,98,90,103,113,102,108,103,100,114,102,103,112,99,102,102,108,107,105,108,114,105,91,134,87,102,107,119,102,103,98,99,109,104,99,105,103,105,111,78,113,101,108,93,110,102,109,110,85,96,92,114,97,103,111,102,106,97,106,105,96,110,91,117,115,104,108,94,105,99,112,96,102,99,105,91,91,106,107,98,113,101,106,121,107,106,98,108,94,111,98,110,112,98,101,104,97,104,101,88,112,112,100,105,98,120,103,102,99,105,110,114,113,108,109,103,104,113,100,101,104,103,107,106,99,107,102,100,101,113,112,117,103,105,110,105,103,99,92,104,103,95,107,106,125,103,104,100,94,105,104,98,116,107,99,107,99,103,96,113,110,113,110,114,107,103,124,107,112,109,99,105,106,126,104,115,114,103,100,109,105,108,99,111,98,101,98,110,110,93,113,105,109,111,89,98,107,99,109,85,99,100,125,98,103,85,107,107,109,112,104,101,102,106,94,111,96,100,97,131,99,112,101,102,104,108,115,98,105,98,124,103,99,110,115,114,106,104,110,108,114,96,104,113,100,105,109,111,102,101,118,106,88,106,105,96,100,100,99,108,108,96,110,100,100,108,105,97,111,105,103,110,107,108,95,103,99,105,103,104,92,114,95,113,109,107,106,82,97,105,108,92,105,127,110,121,117,106,99,99,117,99,98,90,103,113,97,110,107,101,108,104,111,112,95,117,108,103,113,98,108,109,113,94,102,107,92,100,116,105,105,109,115,104,108,93,106,112,114,108,98,110,112,114,116,112,111,109,107,108,94,99,109,92,114,98,99,124,104,111,96,94,99,120,94,103,119,108,92,92,100,106,85,88,96,99,104,106,99,114,94,112,101,97,94,110,106,96,104,100,108,105,81,119,104,94,103,102,118,114,99,107,116,112,100,111,108,122,102,101,111,103,103,110,97,110,88,115,109,108,108,87,114,108,108,104,108,102,103,104,100,100,101,106,119,98,99,106,107,114,106,93,106,105,105,106,102,110,96,84,109,102,121,106,111,104,90,89,103,91,107,121,108,106,98,121,108,102,106,100,95,109,105,100,111,98,104,100,109,109,90,110,104,110,106,96,90,117,105,103,110,107,100,108,109,111,95,95,107,117,95,85,106,112,112,109,95,108,109,91,92,100,110,112,113,109,97,98,96,108,97,101,111,102,107,122,91,99,110,97,111,116,103,118,110,107,106,111,70,115,103,106,92,109,99,102,109,114,109,113,113,125,117,90,104,103,92,105,106,113,102,95,99,105,111,108,92,105,103,103,99,105,107,103,104,111,113,78,109,114,92,110,112,103,103,114,108,105,81,97,108,96,93,95,106,99,116,111,99,112,102,109,117,104,102,109,101,119,95,110,106,109,100,105,102,74,94,103,99,118,110,100,104,116,98,96,97,107,92,100,127,123,102,111,117,100,99,121,109,100,94,101,91,96,103,89,107,95,77,110,95,107,127,104,112,98,105,112,114,107,99,91,112,108,110,109,105,105,98,113,98,118,109,118,111,96,118,114,115,99,90,102,130,105,105,119,115,108,132,112,133,142,138,126,191,176,186,195,155,162,183,165,169,160,180,148,141,130,136,120,152,121,112,109,113,106,114,101,114,109,90,98,99,110,112,108,104,114,107,94,115,112,112,109,99,115,102,109,104,91,118,114,122,113,115,107,119,93,114,102,117,114,112,104,106,71,100,106,107,111,122,106,112,106,119,121,94,101,109,110,94,109,124,103,99,104,105,102,101,105,103,115,101,104,102,102,107,113,98,104,96,109,100,103,106,118,108,84,84,109,106,102,108,91,113,113,97,112,105,116,104,104,95,102,103,90,114,111,107,77,109,103,110,103,113,109,116,115,117,114,103,106,104,104,108,119,111,111,83,97,111,99,107,113,107,114,105,110,80,113,99,114,115,99,103,114,103,104,109,101,104,110,99,112,97,118,110,115,96,102,127,104,100,102,102,106,109,103,95,112,116,102,103,112,102,110,106,88,97,111,129,110,115,111,123,99,111,97,107,120,111,101,100,97,118,98,102,95,108,127,104,110,95,97,104,103,99,111,101,98,107,104,110,106,104,129,98,111,99,94,96,111,106,121,76,103,113,105,99,124,116,109,114,108,104,99,102,114,112,99,101,101,109,103,105,109,113,111,111,117,107,102,101,117,113,93,114,108,103,113,118,113,76,105,113,103,108,100,107,115,106,108,114,104,105,111,111,118,101,113,104,100,99,111,109,113,135,109,115,98,99,110,110,111,107,97,102,103,107,105,105,114,96,113,108,112,119,106,122,81,117,111,109,109,102,112,103,88,103,111,96,108,103,103,111,105,109,100,135,104,105,101,105,97,108,107,96,111,105,105,105,119,130,102,97,110,87,113,111,112,109,109,108,90,129,99,106,111,106,99,103,116,100,110,90,110,107,116,104,104,98,106,113,121,115,113,111,116,107,107,106,102,110,95,110,95,113,112,109,86,119,105,101,105,118,91,105,113,105,105,110,92,108,99,110,112,103,117,100,109,100,108,91,113,113,98,118,108,119,98,99,111,87,89,103,107,124,91,111,99,106,106,103,102,101,84,106,116,113,113,108,113,107,104,105,104,104,110,115,106,107,104,109,92,105,105,107,113,104,108,108,111,109,110,110,114,117,114,110,105,105,102,113,98,114,104,99,104,125,104,102,90,116,104,88,109,96,109,106,108,110,105,123,94,106,127,114,123,107,96,102,117,104,112,117,108,106,103,104,102,87,104,101,101,113,100,108,113,100,124,93,113,115,119,121,116,107,95,118,107,120,102,99,105,111,98,102,105,102,108,113,109,105,106,113,99,124,106,98,90,109,78,95,111,98,118,91,109,99,118,101,80,113,113,98,116,102,107,112,102,100,110,107,98,121,116,102,100,102,106,111,107,81,116,105,99,110,83,90,99,106,121,110,100,105,100,91,111,113,98,108,104,112,108,111,100,112,113,121,94,120,105,96,105,114,91,102,108,106,105,111,114,113,94,109,104,106,101,105,104,112,104,113,110,99,99,102,119,109,120,129,111,109,112,109,110,110,99,106,101,99,117,116,103,103,114,115,106,112,100,102,107,110,97,113,106,112,112,110,113,105,100,100,96,117,109,99,107,99,110,107,109,103,93,113,108,110,97,106,97,97,107,109,107,80,101,113,95,104,69,101,108,106,100,104,107,105,108,104,110,105,107,102,108,109,100,99,124,110,105,116,107,117,110,94,107,113,113,99,111,102,101,102,99,106,95,103,70,104,105,110,101,79,99,96,106,106,114,66,106,107,106,112,95,107,107,103,99,109,113,102,97,105,117,104,95,107,110,111,108,117,97,107,108,101,107,103,105,125,107,102,105,98,107,104,101,107,105,106,113,103,115,114,110,109,105,95,106,98,95,112,103,113,105,103,99,118,102,111,107,110,93,102,103,98,83,104,106,102,109,110,96,93,121,108,104,100,117,116,98,106,101,103,112,98,108,103,112,100,108,108,112,109,112,116,104,114,99,111,95,105,121,116,102,112,100,98,103,109,76,115,113,105,128,108,109,106,124,104,110,112,104,134,111,112,109,97,103,104,128,104,108,106,89,111,114,97,98,103,105,107,72,118,105,97,107,107,102,100,112,91,112,114,100,105,106,102,93,96,107,108,99,107,98,94,111,122,111,92,116,99,96,104,106,108,94,125,105,108,106,104,109,95,97,101,107,99,102,102,119,105,107,103,108,109,117,106,95,117,101,94,99,101,106,104,115,117,111,100,102,101,101,111,105,99,104,114,97,106,103,103,116,108,96,106,92,97,107,99,112,106,99,113,96,103,98,99,112,108,101,97,88,98,104,97,106,101,103,107,106,112,97,105,91,102,104,105,104,102,122,105,96,107,109,105,116,105,100,99,105,108,97,99,108,105,116,96,94,106,101,111,99,112,111,113,114,100,101,103,108,100,100,99,97,88,115,105,104,115,101,106,95,101,135,115,101,101,106,113,103,112,94,99,95,101,103,114,103,120,109,99,105,103,104,112,98,95,105,92,113,99,103,109,106,89,91,108,95,93,116,108,106,110,92,122,112,120,92,98,108,111,102, +560.13702,108,97,115,87,94,140,104,103,92,105,105,107,89,95,104,114,104,98,113,107,98,105,97,113,98,109,103,116,102,112,99,97,104,101,100,101,105,96,95,96,97,117,92,106,102,100,105,100,99,104,113,98,103,100,87,101,99,92,104,99,99,101,112,101,100,107,94,93,102,106,110,112,104,101,101,96,99,102,78,95,99,99,111,93,92,97,99,109,101,101,100,94,104,102,113,104,96,98,105,94,100,95,105,103,103,102,97,107,90,95,96,103,106,99,105,114,105,101,96,96,122,103,104,109,97,101,109,101,105,95,109,104,100,106,112,108,105,108,104,106,110,108,96,96,95,102,101,99,92,99,95,104,103,106,96,97,98,94,96,109,101,96,115,117,117,107,105,105,105,101,114,104,94,94,96,101,101,87,95,94,100,105,91,110,106,98,99,93,108,101,98,96,99,117,112,99,97,101,100,96,99,99,100,78,101,104,115,103,98,100,71,103,105,117,109,102,112,104,107,104,117,109,104,101,98,106,109,97,116,95,94,115,107,87,101,103,107,128,110,102,96,101,111,96,109,96,108,119,105,96,95,95,96,108,113,120,95,95,97,110,90,106,107,106,101,103,108,103,107,111,104,96,119,118,104,100,101,114,105,100,110,109,100,95,98,104,90,108,93,96,95,111,105,98,111,115,110,104,117,99,99,97,93,99,96,103,113,105,95,107,119,85,98,112,109,106,104,106,109,95,95,100,110,120,97,97,107,95,114,101,111,102,98,106,98,111,111,94,94,98,100,108,88,102,94,101,104,102,111,105,96,100,107,106,98,102,107,131,105,100,112,106,108,81,101,95,98,107,108,100,102,89,109,98,106,106,105,110,95,108,102,92,114,107,92,96,101,95,87,79,107,101,111,105,91,96,90,99,104,110,114,102,108,113,110,113,91,116,106,109,92,103,99,91,107,97,111,105,98,99,114,132,92,102,98,108,122,109,103,107,91,103,101,91,103,95,100,97,94,103,119,111,99,102,92,113,98,89,105,105,97,110,104,111,96,96,103,111,83,104,103,102,98,109,107,104,96,124,110,111,97,99,94,117,92,97,92,96,109,101,101,101,106,104,111,109,99,99,108,87,101,98,110,95,95,101,90,110,100,108,94,102,104,91,113,108,100,108,103,104,105,98,110,103,105,97,106,91,100,96,106,105,109,109,101,113,120,107,103,92,101,108,98,117,102,109,100,103,107,99,102,104,111,99,115,100,112,101,101,98,98,99,113,109,101,108,104,105,89,99,97,102,109,99,105,108,110,114,99,104,103,128,103,100,101,101,112,109,97,115,107,99,111,104,103,108,113,112,104,104,104,99,93,101,102,109,94,111,110,99,101,111,102,113,105,102,106,103,99,107,110,100,108,107,105,103,117,105,113,99,71,111,101,97,129,99,101,117,101,104,113,96,101,107,91,106,99,102,98,109,105,102,105,99,107,92,103,102,101,102,95,102,99,116,109,113,114,97,87,104,102,98,101,91,114,109,106,101,109,106,111,110,109,107,103,105,99,102,106,99,95,109,106,101,101,101,96,105,93,107,93,109,96,103,112,107,126,107,102,93,95,96,103,108,94,100,109,120,99,103,100,110,97,110,101,97,99,91,100,100,94,109,101,110,101,99,111,114,109,98,92,104,89,103,102,108,112,100,110,101,106,95,100,103,103,100,105,102,96,100,119,106,95,104,113,99,102,98,80,112,100,104,96,99,98,96,100,120,105,100,106,101,98,93,103,104,98,112,99,106,101,111,112,115,96,109,113,105,106,101,104,111,87,105,119,111,106,108,101,101,100,93,101,95,116,106,103,108,96,110,113,91,97,100,116,112,112,104,104,96,97,113,92,113,127,110,95,107,94,103,108,100,103,120,99,95,99,108,113,107,88,108,106,99,102,92,104,100,109,104,99,104,95,97,101,101,86,104,109,106,108,100,98,95,102,98,91,106,107,99,96,114,108,99,117,115,108,102,92,101,108,108,104,106,104,88,98,106,105,102,113,120,100,113,103,102,86,118,95,109,109,106,110,101,99,110,109,109,106,101,95,94,116,102,103,99,99,114,98,104,105,104,113,101,99,101,108,102,109,90,105,103,97,111,102,100,100,96,119,98,118,106,95,97,100,98,111,100,101,99,114,93,109,119,106,98,109,102,93,111,111,109,109,96,92,96,95,100,102,95,115,109,96,109,98,101,107,98,102,86,107,114,106,93,108,106,99,98,111,102,100,101,100,99,91,95,95,105,104,96,108,108,105,86,110,103,117,106,89,100,99,108,107,106,94,106,104,118,100,108,109,110,109,104,99,99,102,112,112,109,118,114,104,113,114,120,118,123,120,131,143,165,172,202,201,183,177,178,156,156,152,190,160,133,141,122,152,121,92,116,108,94,105,105,111,106,106,94,116,113,101,109,99,119,115,131,108,106,98,112,95,91,95,105,91,112,108,94,91,110,106,109,102,100,86,117,109,104,113,111,91,108,95,100,103,101,109,110,98,100,101,112,108,104,95,96,98,116,95,99,107,102,99,112,109,105,100,102,105,110,122,97,99,85,100,104,108,99,94,98,104,98,116,105,100,101,107,105,108,105,98,104,87,101,104,99,114,97,104,98,100,110,106,107,98,103,117,102,93,87,95,110,112,117,103,104,102,102,111,112,106,118,101,121,116,119,104,97,98,123,111,99,110,108,114,107,116,98,103,110,106,110,108,100,95,100,91,112,96,108,113,105,123,109,107,113,96,108,101,92,106,104,117,102,100,106,103,106,99,98,100,106,110,109,100,110,109,108,115,126,113,107,116,99,102,107,102,107,111,99,105,117,95,123,100,103,105,104,104,98,109,104,107,100,96,116,116,113,101,113,94,100,98,95,109,104,107,109,106,106,108,118,112,99,104,102,113,110,111,107,105,115,67,109,108,93,106,99,102,127,101,104,109,99,107,99,113,124,117,97,111,97,104,95,106,114,105,108,112,117,112,108,104,107,104,102,109,105,111,95,105,113,91,107,108,98,105,117,116,133,100,105,130,113,121,102,101,97,99,99,105,103,107,116,99,99,104,99,104,100,110,117,96,108,99,110,106,105,109,80,104,109,108,96,102,109,102,107,111,67,107,104,105,111,106,98,104,103,105,111,101,103,106,110,105,105,99,97,120,107,104,102,112,112,104,103,109,95,108,105,113,102,108,103,98,92,102,101,87,109,108,112,88,97,100,104,100,93,110,102,108,115,112,115,107,104,109,117,103,118,117,113,132,107,102,102,104,103,100,102,91,122,111,101,102,102,110,96,98,109,94,109,98,114,109,95,105,95,77,103,102,94,103,98,102,117,108,104,121,104,96,117,99,106,103,102,96,106,114,100,112,100,104,107,106,107,97,105,107,94,91,97,105,107,103,117,107,100,96,98,101,104,92,94,97,103,102,97,109,109,103,99,104,91,100,104,102,109,107,106,101,111,102,97,102,123,113,93,101,99,93,102,89,102,107,98,106,105,111,98,103,101,94,99,102,108,100,110,108,105,100,106,103,100,100,98,100,105,108,105,103,99,104,96,114,99,97,102,95,107,98,101,107,110,139,86,99,98,115,98,97,122,125,109,95,92,100,104,110,115,121,103,97,101,104,112,109,106,102,111,97,107,100,98,100,106,104,99,105,109,110,106,97,124,98,103,110,112,116,103,98,97,112,120,100,97,102,108,95,100,99,104,103,95,107,95,92,104,99,115,115,110,96,97,102,105,109,114,99,108,107,95,105,104,109,93,103,114,115,101,94,106,104,102,99,110,91,108,103,106,109,101,106,105,113,98,96,100,100,101,90,106,99,103,101,100,113,105,104,96,95,109,106,110,93,98,88,123,102,106,100,99,97,99,99,116,101,99,101,107,102,104,98,103,104,94,106,112,99,99,102,107,96,108,103,105,107,110,109,110,99,110,100,117,110,101,101,104,92,95,103,109,102,106,99,106,96,102,101,111,112,101,96,97,97,90,108,110,103,103,110,105,91,103,78,112,102,105,104,100,104,104,105,103,102,106,110,109,95,105,99,109,100,109,98,103,111,108,100,119,100,101,91,99,111,108,97,101,102,102,86,106,112,104,110,96,96,88,110,109,107,101,110,100,112,111,103,116,100,104,97,103,92,79,96,108,100,102,94,101,110,108,113,92,98,109,108,108,104,97,105,100,98,92,102,104,112,104,101,112,108,95,109,89,106,100,103,107,106,100,106,100,103,105,105,108,96,95,109,99,102,104,110,95,98,115,109,96,113,111,106,90,114,105,105,98,97,87,101,120,100,112,100,100,84,90,102,102,111,100,112,109,97,108,105,104,109,99,98,101,105,101,107,108,109,101,108,118,108,112,105,110,109,101,106,109,104,104,114,104,101,99,106,103,109,102,104,101,110,99,113,124,100,107,108,95,97,99,92,100,102,102,102,94,103,108,93,91,103,100,106,106,103,102,108,105,101,82,108,99,115,103,112,93,97,112,98,103,102,99,103,105,101,109,124,104,101,109,93,98,97,100,97,88,103,112,96,98,112,95,111,96,109,110,107,125,107,100,97,104,117,96,103,111,111,73,107,98,93,95,99,104,96,108,108,113,109,112,102,98,106,104,106,93,112,112,107,93,91,94,100,100,106,106,107,92,94,99,103,108,106,108,98,107,117,98,106,105,101,96,102,112,111,92,104,112,106,100,100,95,99,98,104,106,88,104,99,89,97,107,114,96,96,106,94,89,103,107,116,99,103,110,107,105,109,103,109,92,92,116,107,101,107,82,109,100,87,96,94,96,113,94,117,101,100,103,109,112,100,66,102,102,109,105,107,120,95,102,92,105,95,104,108,98,102,93,102,112,101,127,75,117,98,99,99,102,96,95,94,107, +560.27795,91,101,112,104,93,90,105,108,105,101,99,102,104,95,105,95,120,117,100,110,111,92,99,107,104,111,91,129,101,107,99,94,100,113,112,104,98,113,91,107,104,101,96,102,118,111,108,108,114,99,100,98,90,101,111,86,104,116,126,94,108,89,107,106,104,118,96,95,103,104,118,109,107,105,88,102,105,91,101,110,108,108,103,109,121,109,104,113,90,109,109,111,116,110,98,90,103,84,114,111,102,103,88,97,100,107,106,98,105,111,107,104,110,101,95,115,103,115,111,101,107,96,90,109,106,109,110,99,113,104,93,107,102,109,99,112,98,99,100,101,106,109,103,99,103,102,103,77,87,112,108,108,77,97,95,113,100,86,98,92,110,106,101,113,108,103,91,94,114,96,101,101,99,103,87,80,94,88,109,87,104,99,94,97,100,102,73,92,101,100,95,112,103,109,98,101,103,107,100,103,101,102,95,107,112,106,128,75,105,94,96,101,105,103,105,107,100,109,111,113,102,105,103,104,109,112,107,114,113,109,102,100,108,130,95,97,105,98,102,109,119,103,104,109,99,108,94,97,106,107,95,92,99,93,103,103,114,108,99,96,102,108,104,104,95,96,109,122,101,101,108,112,107,108,98,104,99,96,105,95,100,96,94,105,107,87,95,117,103,76,100,106,102,113,102,101,105,109,111,102,100,98,112,96,99,105,101,107,108,114,92,111,106,104,105,101,108,102,91,109,101,100,96,108,110,107,104,84,114,109,125,106,118,121,106,97,96,87,106,104,102,98,93,104,105,87,108,114,102,114,102,98,127,112,105,119,107,98,105,107,92,117,109,106,103,92,105,109,98,97,107,103,103,100,96,91,99,107,106,101,118,99,105,117,84,100,101,100,98,94,111,104,103,100,97,102,92,101,109,113,108,113,103,117,103,105,105,99,113,106,93,115,105,109,103,105,97,103,100,107,104,99,94,104,95,100,105,95,97,116,97,114,97,104,109,103,112,106,104,102,107,101,96,111,99,102,101,103,101,104,104,99,99,117,105,94,105,110,116,106,104,80,101,103,102,121,105,109,114,99,110,98,106,100,115,106,106,107,112,97,101,98,106,99,98,108,116,116,102,95,108,111,112,93,102,119,95,96,108,89,101,110,103,103,115,96,103,111,103,107,104,100,100,97,103,97,97,99,92,101,104,92,116,101,107,102,102,109,102,102,102,108,88,106,109,110,102,97,104,109,95,102,107,70,106,113,102,101,103,100,107,101,105,114,103,107,109,103,93,107,100,95,134,101,111,112,111,100,99,105,105,103,104,111,110,109,100,96,97,108,107,96,106,103,113,94,110,97,109,112,122,105,96,91,116,95,109,100,92,104,97,101,105,96,112,110,114,108,104,106,109,96,118,108,110,110,95,102,109,116,92,97,111,106,92,101,107,99,93,100,103,109,97,102,93,109,92,102,100,101,101,114,101,103,100,99,101,103,104,99,98,101,107,86,105,102,99,114,97,98,104,117,120,105,104,90,106,104,117,96,112,108,118,109,106,91,109,89,106,97,114,109,110,104,98,107,88,104,88,106,112,102,97,101,102,103,106,121,84,97,102,81,102,93,103,110,110,108,100,97,114,111,105,107,114,72,105,108,107,106,107,108,93,109,83,105,86,115,106,105,88,110,108,108,95,107,118,98,100,105,103,104,95,102,102,99,100,100,89,113,102,100,117,115,105,101,105,100,95,103,106,98,74,95,99,99,107,103,106,98,98,101,113,100,101,101,112,105,100,100,99,109,97,102,107,113,110,113,109,113,120,98,77,85,104,96,97,110,106,100,90,104,104,90,111,109,104,101,109,112,108,95,110,92,92,101,108,116,108,112,97,98,109,109,100,109,99,117,101,104,114,89,105,110,99,105,90,100,105,97,103,109,123,113,96,95,98,103,113,102,99,106,102,95,81,113,96,113,113,105,101,108,90,109,111,95,122,110,116,104,104,103,94,112,93,107,98,86,105,109,102,115,104,105,110,103,102,105,108,99,100,110,94,101,103,105,92,100,106,105,111,109,114,113,112,100,96,103,106,109,101,81,100,98,103,95,94,92,99,103,109,109,105,91,95,110,88,105,105,109,93,110,108,110,100,94,99,74,91,110,95,112,102,95,112,100,101,109,107,109,98,98,116,106,101,96,109,93,86,113,107,106,104,99,115,111,95,105,114,103,105,112,107,91,97,107,116,101,102,96,110,109,110,108,107,105,104,116,96,87,90,121,111,102,106,83,95,108,102,111,93,108,111,105,108,97,105,114,102,94,94,106,107,110,102,113,108,104,119,101,115,113,108,91,106,99,109,103,116,99,105,110,126,113,114,81,106,129,110,151,157,174,183,159,171,186,160,175,172,187,161,169,123,156,122,157,153,131,120,111,109,126,119,100,96,112,106,92,107,111,104,123,100,105,107,108,104,107,107,110,100,109,92,121,107,112,103,93,102,107,115,94,107,114,102,110,101,117,108,88,94,66,101,106,108,109,109,110,91,100,103,107,105,109,106,93,106,101,116,113,100,106,105,110,106,102,94,106,110,100,118,106,105,101,97,109,94,113,102,93,106,91,110,105,102,103,106,104,100,104,119,96,98,109,102,115,100,105,105,107,105,102,98,95,105,117,96,99,97,96,100,110,109,110,102,112,106,95,102,98,88,103,116,125,104,103,109,96,106,112,100,83,109,110,99,110,97,102,94,103,116,105,109,113,107,123,107,108,99,99,113,105,106,106,115,104,110,114,98,99,103,106,103,101,120,98,101,135,110,103,97,112,99,102,111,97,96,108,102,108,103,99,103,94,106,109,98,99,123,107,107,120,106,100,104,102,103,104,96,113,97,98,99,101,108,109,104,114,102,103,90,109,98,111,99,104,103,105,115,119,104,105,108,103,108,108,97,94,116,104,103,102,95,116,100,105,90,115,114,100,108,106,91,86,116,108,120,107,98,101,89,111,96,98,105,112,117,92,104,105,101,112,104,106,99,105,117,108,106,99,95,90,106,112,111,103,108,105,102,91,104,111,104,90,105,100,111,96,105,107,111,107,108,117,95,91,101,106,112,102,104,100,117,120,103,102,106,114,107,94,94,107,108,123,110,113,112,110,108,108,105,98,106,93,111,99,100,99,104,113,107,102,100,114,109,111,108,111,115,120,98,116,99,102,100,106,112,95,105,113,101,95,110,102,102,105,95,100,105,111,96,108,103,101,100,123,118,96,114,103,106,109,117,107,110,109,108,99,102,114,109,102,101,113,106,106,99,112,105,107,108,98,112,116,97,106,102,85,102,108,89,107,92,103,120,104,108,101,87,108,94,107,98,104,110,113,103,103,113,105,92,112,105,96,109,106,109,112,109,99,95,131,105,106,92,105,107,116,110,105,88,106,111,107,93,106,115,105,103,100,105,117,109,101,105,107,107,99,102,91,102,113,117,103,105,102,99,104,110,96,112,107,83,95,95,102,108,106,115,112,109,101,113,115,108,102,100,109,103,98,105,104,104,102,106,110,94,111,108,108,95,109,105,99,99,117,93,115,110,116,113,98,103,109,91,110,110,119,110,95,119,105,101,106,110,103,105,103,117,108,115,98,127,105,115,97,105,101,107,101,103,96,104,105,112,94,108,115,102,107,103,110,111,107,97,111,112,115,113,102,108,106,105,105,103,113,116,95,110,104,111,102,113,109,112,109,116,101,103,95,105,105,101,104,96,103,115,100,115,105,108,98,104,90,97,105,94,107,118,102,105,106,109,109,102,109,124,103,128,142,98,110,97,102,104,115,114,115,108,107,115,102,112,115,88,110,101,112,140,112,98,111,106,99,108,106,106,105,99,100,110,103,112,109,100,105,98,99,91,110,95,104,96,99,106,107,97,109,103,106,98,102,111,117,104,92,108,93,92,97,107,103,112,102,94,117,95,102,88,117,98,107,108,107,100,114,112,104,106,110,96,104,110,104,121,113,103,103,104,111,116,112,104,105,120,99,91,118,96,112,116,93,104,99,95,118,101,96,108,97,120,103,97,102,103,111,105,99,97,104,116,104,98,104,105,112,116,109,105,114,102,107,96,116,104,104,106,102,101,107,105,100,98,105,95,107,105,122,101,104,98,99,87,90,102,107,92,97,108,109,112,109,104,111,112,105,103,99,106,102,102,113,91,89,116,103,99,102,117,100,105,106,111,104,95,95,105,116,105,113,103,100,97,98,79,84,98,117,101,105,101,105,110,99,95,109,99,94,113,125,89,111,112,113,105,105,115,102,104,109,110,98,104,93,124,106,96,105,98,115,121,94,106,101,103,116,99,106,104,87,107,94,107,96,103,107,111,97,102,109,103,97,102,103,112,91,105,110,117,108,94,120,110,99,97,97,105,108,103,102,96,103,100,107,108,103,98,113,111,94,119,102,98,104,103,98,90,104,104,83,110,108,95,104,107,99,102,98,105,112,98,98,107,102,103,102,100,102,103,102,107,110,88,94,117,99,110,104,104,109,97,102,99,109,100,125,99,101,103,96,113,115,116,87,95,114,106,109,104,99,113,107,108,109,106,110,104,98,107,101,105,101,102,112,103,102,103,101,112,113,106,110,104,101,105,108,98,104,110,109,104,116,119,106,98,100,106,112,113,101,107,108,104,95,120,111,111,105,112,121,106,108,108,105,108,102,99,103,121,93,100,106,86,104,88,107,104,97,101,105,106,113,99,96,113,108,125,81,109,108,104,103,94,116,106,97,101,96,110,110,95,96,111,101,114,102,91,108,107,98,91,106,102,92,107,107,95,108,108,113,117,103,95,103,107,100,92,94,98,117,109,108,92,105,96,106,87,105,105,104,99,110,101,113,102,95,103,116,106,101,104,99,110,105,107,105,93,93,102,98, +560.41882,113,98,98,105,96,98,94,119,109,101,97,108,104,106,104,102,100,108,121,115,110,107,105,110,96,100,102,104,100,78,105,116,109,109,116,97,103,91,91,102,102,104,90,97,134,99,102,121,98,102,93,92,107,112,105,109,108,100,108,94,106,95,103,104,100,96,91,114,108,96,103,115,92,99,108,96,99,97,113,95,110,109,103,107,110,101,94,70,119,112,110,100,108,103,93,100,100,105,104,108,112,101,88,104,113,110,99,91,103,106,106,110,112,106,83,107,98,106,91,113,100,97,107,120,130,100,115,94,101,107,98,103,101,112,107,105,97,111,105,98,98,107,98,98,101,110,112,88,93,94,117,99,99,96,109,105,97,102,112,112,96,129,115,115,100,109,111,99,103,107,102,103,108,101,99,108,110,87,107,113,102,99,99,100,102,102,96,93,99,110,103,106,91,114,100,103,108,105,108,108,107,106,106,106,97,118,104,99,101,104,102,95,98,106,100,99,108,108,101,105,110,116,100,90,103,98,104,100,103,101,103,109,119,115,95,106,103,100,97,107,81,105,111,109,109,103,80,105,109,116,103,106,105,110,97,116,114,105,99,109,90,112,95,96,106,107,100,90,103,79,102,107,99,112,110,99,95,112,102,108,99,95,109,111,105,99,94,105,96,96,102,101,105,90,112,129,117,113,123,111,100,102,108,102,105,107,111,105,112,121,113,111,101,102,81,102,94,95,104,84,98,103,103,112,104,106,103,93,108,106,104,96,80,105,104,94,108,74,94,102,108,111,98,107,103,108,104,112,134,101,101,99,97,99,103,117,111,110,93,99,103,104,91,88,106,111,109,110,102,102,110,102,126,101,97,101,108,103,105,109,110,101,104,112,99,103,99,106,109,113,104,101,106,105,116,100,105,106,109,102,99,107,127,103,96,96,117,110,106,109,98,115,75,106,112,103,100,90,126,107,94,99,103,101,101,89,102,110,112,105,107,110,102,106,115,103,100,110,93,105,109,115,110,101,93,106,99,106,96,110,90,104,83,103,96,113,87,113,109,103,102,104,110,104,112,117,106,116,101,102,102,110,95,117,107,108,102,94,102,105,112,111,106,115,105,92,103,113,99,101,97,107,104,98,110,108,103,124,104,105,108,102,99,107,105,105,96,96,111,110,102,109,100,116,99,113,114,98,106,96,107,99,101,110,113,115,112,119,102,84,100,114,93,120,106,126,106,103,108,103,102,114,99,100,110,101,103,97,113,109,105,104,103,113,98,104,104,100,99,102,99,116,103,100,103,109,108,106,106,100,105,106,113,106,108,104,104,102,109,107,116,101,89,105,105,112,102,99,118,97,113,95,96,102,109,100,102,99,100,99,106,116,101,95,102,101,98,91,101,110,108,106,102,106,117,98,103,100,108,102,105,103,95,96,99,113,95,101,95,112,109,99,103,106,91,104,91,74,106,104,109,97,108,105,113,97,103,94,109,99,103,104,96,120,105,100,91,97,109,106,113,105,103,109,100,103,102,103,109,102,97,107,99,104,101,100,100,108,84,102,101,98,113,111,96,102,133,104,118,112,108,112,99,111,106,89,90,98,115,93,103,103,106,104,106,102,106,112,98,98,108,104,113,99,109,97,96,102,110,113,118,109,103,115,70,100,106,113,95,107,122,105,104,95,137,109,105,99,109,102,103,95,117,106,114,113,108,109,105,116,110,110,100,117,103,104,108,108,114,104,103,105,114,115,105,113,116,92,102,113,119,94,106,105,112,102,88,103,110,98,102,113,117,105,102,91,107,96,103,104,109,106,91,97,109,108,100,95,100,103,96,108,98,82,106,102,107,105,108,111,107,105,104,97,105,110,105,105,117,93,101,115,107,105,107,101,114,103,108,105,103,94,113,100,105,106,105,114,111,100,101,102,108,102,87,107,92,108,111,96,87,104,104,95,96,84,101,104,103,98,105,91,111,102,102,111,105,112,97,116,88,110,104,102,103,117,107,105,103,101,113,118,105,102,110,106,95,105,101,111,91,108,101,95,109,93,104,94,109,102,105,111,102,94,99,114,91,94,109,104,105,105,104,110,96,107,93,108,107,97,103,99,107,110,106,114,105,98,98,114,102,111,110,108,99,114,106,108,101,104,105,106,109,120,105,113,102,104,101,96,106,126,86,109,115,106,89,94,103,112,100,125,100,116,100,114,107,105,101,98,90,102,111,95,103,110,98,117,98,106,113,109,100,103,92,94,109,115,99,114,104,99,104,109,97,84,104,101,94,103,114,106,121,102,112,104,107,109,108,110,92,94,105,96,104,109,108,126,105,104,113,111,109,103,102,107,109,95,103,111,110,87,118,115,109,123,129,121,132,156,162,167,161,213,187,186,185,189,204,189,155,142,153,146,136,127,118,122,105,95,108,119,112,123,108,110,102,116,118,107,110,117,104,98,108,97,99,110,107,114,104,107,109,109,79,112,100,105,109,92,111,102,103,105,102,106,106,90,98,109,102,108,119,115,93,122,99,105,114,100,103,102,101,106,104,104,106,109,100,98,91,99,113,99,105,104,112,99,107,107,116,107,112,94,95,100,96,104,102,110,98,112,90,105,101,107,87,100,113,100,120,90,122,98,105,115,110,101,114,113,108,104,100,105,104,97,113,107,98,109,108,106,105,112,95,95,106,92,107,107,108,111,110,100,106,111,113,102,105,106,117,109,104,106,106,113,108,107,100,107,116,125,104,115,105,103,112,104,107,104,98,104,104,103,101,103,108,106,111,111,113,101,100,102,116,102,90,111,106,102,112,111,107,110,101,105,106,107,108,107,113,98,103,99,108,72,100,111,96,92,108,106,102,96,100,110,92,123,105,105,93,117,98,100,109,110,107,111,97,105,107,102,107,115,104,109,100,102,114,113,120,101,112,105,96,101,97,93,97,107,108,105,125,94,116,112,105,87,100,98,118,113,97,123,98,114,101,110,108,100,100,107,104,83,115,110,90,110,111,97,114,105,109,106,107,106,114,118,114,103,96,100,99,96,105,103,109,116,107,96,113,108,133,102,115,108,107,109,112,112,100,111,106,107,105,101,101,99,103,100,112,119,95,123,109,94,104,103,106,108,100,103,99,111,100,98,95,102,95,109,104,95,106,114,111,101,98,99,109,103,92,100,107,108,102,113,107,104,93,103,102,102,95,111,101,115,111,106,119,105,87,95,97,91,107,101,102,101,95,94,99,109,100,93,101,101,111,106,105,105,101,105,103,119,99,95,105,107,104,100,101,103,104,96,101,102,103,112,112,106,103,97,101,110,91,116,118,104,106,99,116,105,104,103,91,92,105,104,106,105,100,101,96,109,105,98,109,101,105,114,109,116,112,107,108,96,101,107,97,109,117,97,113,111,103,120,99,108,105,95,107,111,109,82,109,95,105,92,96,105,102,101,108,106,108,96,111,104,96,109,115,102,108,105,108,108,105,92,95,99,108,113,109,106,96,109,102,101,95,107,105,106,107,94,107,113,103,106,93,95,110,87,97,105,111,109,106,106,93,111,104,104,104,102,100,106,101,124,102,105,104,100,102,100,102,96,100,105,105,100,103,104,100,108,104,107,94,105,98,116,105,103,122,89,107,102,112,119,98,110,102,99,104,104,95,108,101,99,101,102,104,95,103,117,107,102,120,109,105,93,99,111,101,97,103,79,106,127,115,101,113,103,110,102,106,93,106,110,89,109,97,97,102,101,96,97,106,99,107,108,110,127,98,102,107,111,110,113,113,104,143,116,102,97,102,108,108,97,103,99,116,110,93,88,105,96,116,111,97,99,108,106,103,99,100,104,110,101,101,114,104,107,92,106,106,104,115,104,115,101,105,101,98,109,104,90,94,105,103,101,101,95,113,86,101,92,101,103,104,88,84,100,106,95,95,110,105,91,97,91,118,84,107,103,94,105,100,110,101,102,91,102,92,112,106,117,115,101,107,104,112,107,102,115,116,104,96,101,74,117,106,101,97,98,115,96,112,101,101,95,106,110,104,98,107,110,99,101,103,93,94,110,97,111,109,108,112,103,98,120,96,104,108,109,107,98,101,104,98,110,104,110,129,98,116,118,94,102,103,100,106,103,104,91,100,120,112,103,108,107,95,103,97,102,90,106,100,99,105,102,101,104,105,95,106,95,96,105,102,109,100,108,129,99,91,103,99,92,109,104,108,104,110,100,99,96,101,106,106,103,110,106,102,84,113,112,92,105,104,83,102,101,122,86,98,99,103,101,113,92,122,108,110,93,101,102,96,109,99,114,100,102,105,98,101,104,103,102,116,91,112,112,97,100,112,113,107,113,107,102,99,114,98,108,94,96,107,104,103,102,124,104,88,103,102,113,102,108,111,97,103,95,103,106,95,102,99,105,113,106,90,101,115,117,102,121,95,104,96,98,114,103,96,95,109,98,104,104,105,99,111,102,98,112,102,111,91,108,103,108,98,93,105,116,107,106,107,104,111,92,98,87,98,102,99,113,96,105,107,100,105,90,97,100,99,109,114,108,98,97,101,97,101,85,107,109,100,87,99,101,82,110,105,104,97,99,104,99,94,79,101,91,102,109,99,103,98,114,103,104,105,85,89,90,99,109,107,102,111,107,111,96,103,94,114,106,103,92,102,94,104,93,94,100,79,101,105,71,103,106,96,109,101,101,113,109,99,103,99,99,99,103,113,110,98,110,107,104,104,95,101,98,120,93,125,87,108,101,101,104,110,106,97,96,87,90,81,103,67,109,120,99,102,102,86,115,111,106,102,117,117,105,104,104,115,95,98,111,107,98,113,99,105,92,97,103,101,100,97,100,98,117,101,103,92,99,97,116,99,79,94,96,102,113,98,120,120,98,111,91,112,109,94,96,100,92,126,99,98,114, +560.55969,99,120,113,102,96,98,104,93,115,95,100,105,105,88,109,92,99,100,98,121,107,102,109,92,98,103,96,105,109,107,97,106,106,87,101,99,95,91,104,111,99,108,87,114,102,96,97,110,134,104,107,114,95,112,96,105,110,99,74,90,123,108,116,102,117,117,110,83,115,99,97,108,108,95,102,95,99,89,100,107,95,99,100,100,115,112,101,97,101,89,101,99,91,91,91,107,103,110,95,107,94,97,101,97,102,99,111,63,104,88,111,107,114,104,100,104,100,108,101,100,99,106,103,103,98,112,109,95,111,110,108,116,95,121,96,110,95,104,98,96,102,111,103,92,100,102,112,104,101,101,105,98,100,100,97,104,94,98,113,99,106,106,104,119,103,113,100,95,81,98,96,120,111,96,116,103,122,98,116,105,101,112,103,100,117,110,109,102,103,99,100,101,105,109,106,111,108,105,105,100,92,110,105,116,102,101,117,105,112,78,111,95,105,108,104,100,83,104,80,79,98,113,107,109,128,106,83,106,112,111,101,90,110,87,116,101,120,118,109,100,65,109,118,95,113,111,102,112,97,112,108,99,88,97,108,96,122,98,93,82,98,103,110,103,108,110,95,110,112,107,101,90,105,115,118,106,104,105,104,100,109,105,99,103,100,105,84,96,69,101,101,113,107,108,102,105,111,112,96,105,113,105,103,105,100,88,107,111,111,111,114,109,109,99,108,65,105,99,103,93,113,102,102,117,105,108,106,94,106,112,105,118,110,115,102,109,113,104,118,97,106,109,100,106,96,107,101,103,105,109,91,103,65,110,104,116,99,125,102,101,106,97,92,98,92,102,103,111,106,96,103,112,111,98,103,109,111,120,99,103,105,108,97,120,106,102,115,97,115,113,112,94,99,110,109,102,102,96,103,112,101,107,101,99,104,109,92,104,105,107,108,119,99,108,107,108,105,128,106,108,101,105,109,110,132,95,108,92,113,114,100,102,104,101,101,109,95,106,110,97,115,104,103,112,105,98,99,104,105,109,117,96,105,108,107,106,103,105,110,121,101,103,96,103,141,116,104,116,113,100,114,102,99,110,104,98,98,112,89,99,104,99,118,100,103,109,106,106,105,100,110,121,109,105,121,103,100,103,109,109,101,102,105,109,91,106,107,96,104,104,85,114,103,108,109,100,108,107,109,101,102,106,109,108,109,109,110,104,98,98,110,111,102,101,101,89,107,108,105,104,99,106,109,115,110,100,105,108,111,105,100,116,115,103,99,100,101,105,121,108,102,104,103,123,101,106,107,97,88,104,107,111,97,108,113,92,109,105,79,110,100,86,130,113,115,102,82,104,105,98,113,104,109,99,110,112,104,94,95,98,108,129,104,94,113,105,106,90,109,101,92,95,117,97,105,102,97,98,109,117,105,96,97,102,106,103,89,101,105,101,109,111,95,110,100,101,82,98,101,108,104,115,104,107,102,99,120,64,102,109,95,100,104,106,104,102,104,117,104,98,110,112,118,120,99,99,110,102,107,99,110,106,99,101,105,103,96,104,106,103,115,108,101,137,102,103,98,95,105,110,101,98,107,115,102,100,118,125,106,104,101,101,106,93,104,98,110,109,90,112,110,92,96,100,101,105,104,99,96,97,104,98,109,103,100,100,102,104,107,115,114,110,97,102,101,109,113,99,106,109,105,98,103,110,102,101,103,102,104,105,78,105,93,100,96,104,108,115,107,108,101,111,107,101,93,93,99,112,106,103,103,116,101,106,97,116,106,100,109,109,99,100,115,103,99,112,105,103,107,109,106,94,113,113,107,117,112,118,102,106,111,95,101,78,108,108,106,104,109,102,110,97,106,102,106,105,102,98,106,94,103,102,100,111,114,100,108,96,103,90,113,105,103,110,88,104,91,93,108,101,97,117,103,117,94,105,102,89,99,112,88,98,106,104,100,109,118,87,91,93,112,102,109,105,103,96,97,114,122,93,98,95,90,99,84,108,103,133,96,96,99,100,102,96,102,99,95,107,110,101,102,111,103,115,116,99,99,107,103,96,105,116,94,113,106,105,102,109,95,112,92,111,103,103,111,113,93,107,100,96,104,95,100,108,108,102,98,105,100,117,109,111,99,98,98,102,96,115,108,122,112,115,106,100,102,106,109,104,101,93,94,113,101,109,103,102,101,112,103,101,108,117,107,95,108,103,96,92,87,99,100,123,101,100,111,107,109,92,118,99,125,112,102,98,95,97,98,102,102,121,98,99,103,100,105,88,97,105,105,99,108,96,80,112,107,116,103,113,102,122,90,122,104,106,102,100,105,106,116,108,112,113,118,100,114,105,96,101,118,104,119,115,106,103,119,104,115,124,133,139,137,190,212,197,213,191,213,184,183,194,168,155,172,143,138,132,123,129,114,104,113,113,107,125,111,101,86,101,108,109,101,108,107,116,112,117,94,103,101,106,93,101,102,109,105,103,103,91,107,104,108,108,100,100,111,106,103,110,110,108,109,104,115,84,130,108,109,117,103,99,116,132,81,92,102,99,99,107,106,120,106,114,120,114,116,99,98,99,103,106,111,105,108,115,100,104,106,117,103,100,102,99,103,112,95,105,110,109,110,95,113,101,99,105,105,97,111,124,100,116,100,87,86,81,108,97,113,104,110,102,106,106,109,118,105,110,99,104,107,110,109,107,100,102,110,107,113,107,98,111,91,109,108,117,100,108,119,98,102,116,99,115,104,86,108,102,109,115,99,99,109,105,95,110,109,117,102,107,109,105,108,110,100,108,119,118,104,125,95,108,104,106,107,109,108,112,113,102,121,114,107,100,111,99,102,104,110,107,87,120,117,122,103,102,115,106,119,101,102,105,105,109,103,108,125,98,117,107,103,120,117,102,113,108,107,107,115,96,102,120,99,108,103,108,111,118,104,105,121,110,105,109,96,115,121,116,109,109,104,128,92,103,103,112,96,92,108,109,114,100,103,108,98,94,101,106,105,113,99,101,108,110,102,110,97,104,116,117,106,97,103,98,99,98,112,103,110,107,106,96,113,97,99,100,107,105,108,101,115,120,110,131,99,90,107,103,104,111,114,98,117,103,105,115,108,102,110,99,104,113,110,108,99,102,102,93,103,114,102,95,107,90,106,103,120,101,105,112,117,109,100,98,106,103,120,108,98,116,112,103,106,107,96,103,114,106,106,100,107,104,100,100,91,102,97,93,114,117,96,117,113,102,108,100,94,110,115,109,104,108,103,105,105,104,103,101,99,108,110,91,96,113,111,117,77,109,92,118,97,98,106,117,92,114,104,95,102,80,95,118,104,108,105,108,93,98,110,105,75,103,102,105,108,98,99,112,99,111,101,112,98,107,103,87,104,90,112,106,104,112,96,102,111,96,102,104,107,111,111,104,98,107,104,123,107,110,102,101,115,114,100,101,101,96,109,96,101,122,109,112,93,117,114,115,77,106,111,103,103,79,111,100,118,103,104,102,102,107,109,99,113,101,90,105,106,107,110,100,97,87,105,88,106,124,98,95,112,105,95,114,99,101,123,96,95,108,107,108,99,100,110,106,109,81,112,103,109,102,114,99,106,111,109,106,109,111,105,112,110,106,91,101,98,107,110,93,105,115,117,97,99,94,109,100,118,98,99,106,110,101,97,106,106,108,107,116,91,104,113,110,102,113,101,103,119,105,115,106,103,110,96,107,108,109,111,107,107,107,109,104,104,112,103,102,110,116,113,113,108,100,95,116,102,94,107,121,106,108,109,106,108,105,107,105,98,104,104,100,100,101,103,95,102,105,114,108,99,108,103,104,105,103,99,94,89,110,100,98,105,102,110,113,103,103,95,107,121,103,107,98,104,107,102,89,105,116,109,115,99,106,104,103,114,99,98,100,115,101,96,102,102,103,109,105,102,104,107,107,109,103,109,109,102,105,94,113,108,114,113,113,103,104,103,112,111,100,110,106,102,102,106,102,99,118,116,115,113,104,102,108,107,112,114,109,103,103,99,107,117,95,115,119,102,84,84,102,108,102,107,96,107,104,89,113,107,116,100,103,111,109,98,102,110,106,108,100,100,104,103,99,118,113,97,112,113,107,100,98,103,97,112,98,110,108,99,123,108,122,107,103,110,92,95,106,113,108,105,99,113,109,108,100,98,94,99,97,103,104,102,110,111,93,107,111,111,108,100,103,113,97,120,110,104,107,106,112,104,107,104,112,121,105,101,99,102,93,105,113,100,99,96,88,86,99,100,108,103,104,101,94,102,97,107,104,115,96,97,113,125,113,98,75,99,103,104,95,102,108,95,113,99,106,114,104,112,103,112,118,107,107,101,110,100,109,97,101,98,107,102,104,116,111,113,120,108,114,108,98,98,106,109,96,103,99,92,103,112,98,96,98,101,100,102,96,95,103,117,102,94,124,117,113,110,109,108,102,94,110,98,99,115,103,99,119,109,112,94,93,101,100,109,99,104,95,104,94,98,106,107,124,119,106,104,94,112,104,99,106,94,100,103,94,109,107,98,113,109,107,99,94,97,106,107,102,92,112,105,96,117,100,96,116,111,101,103,103,114,99,104,104,97,122,113,91,107,110,104,104,98,96,117,110,94,107,101,99,99,107,115,94,98,114,106,95,110,103,94,96,105,101,109,102,102,96,96,129,104,93,103,87,102,95,102,116,121,98,105,97,113,99,102,119,113,113,119,101,110,89,101,94,99,98,74,121,97,106,94,99,112,107,99,97,97,111,98,104,99,113,113,96,92,97,109,123,104,90,107,84,93,102,96,124,99,120,116,105,97,87,98,102,107,107,100,96,109,107,110,89,94,91,100,114,106,101,101,98,96,85,105,103,107,98,105,101,102,102,100,108,102,96,113,123,109,104,109,97,103,103,98,99, +560.70056,95,104,91,119,99,99,96,106,105,104,106,103,117,104,128,96,113,108,110,107,98,99,104,108,114,105,103,104,107,91,100,110,103,102,104,90,118,103,95,80,107,99,109,98,104,134,109,111,111,111,106,103,102,107,112,109,95,94,110,109,106,113,105,87,113,106,105,124,95,94,104,116,91,101,102,105,100,114,109,104,98,101,108,106,104,101,98,127,110,105,96,102,106,97,107,103,100,101,110,95,111,96,94,108,91,109,106,107,98,91,109,103,119,98,113,102,101,108,107,106,121,108,108,94,106,104,111,74,96,109,95,109,107,98,102,105,102,108,109,95,101,118,108,110,114,105,99,104,101,102,94,108,106,98,127,105,103,103,95,116,105,103,103,103,114,114,106,103,100,98,102,106,106,109,100,114,102,108,106,102,114,103,99,104,88,109,92,92,112,98,104,109,116,103,108,96,121,112,102,108,104,103,98,109,101,110,102,111,108,109,95,104,103,106,111,108,110,112,108,100,99,97,103,113,106,110,109,106,103,115,107,109,109,105,106,115,112,116,105,111,100,103,113,121,95,90,118,111,120,104,95,106,122,108,97,122,101,107,91,103,99,90,115,110,101,100,101,103,114,123,115,107,90,111,109,119,95,105,107,101,102,98,113,104,95,101,93,105,102,106,110,109,112,126,111,102,114,109,110,112,101,94,106,111,103,107,103,95,107,101,114,111,102,119,112,100,97,101,104,125,107,98,107,99,102,95,100,103,111,98,109,106,103,107,104,113,101,100,87,97,104,105,98,100,104,110,105,101,100,116,96,110,98,105,100,107,110,99,108,107,102,95,107,103,99,101,101,134,102,104,104,102,109,115,106,99,105,117,99,102,106,113,114,109,102,104,109,107,105,109,112,99,105,114,106,106,93,87,109,99,118,85,114,109,113,99,106,98,113,71,93,107,99,100,96,102,117,97,107,102,103,108,98,109,115,106,99,105,104,108,100,103,105,95,103,107,104,85,91,115,114,83,104,106,91,103,107,101,108,102,103,105,108,112,102,102,104,100,103,95,113,108,98,130,114,109,99,104,115,100,110,105,115,109,100,95,103,120,102,113,107,106,119,94,99,104,100,100,95,92,115,115,107,104,103,102,105,110,99,111,104,102,105,112,105,111,105,99,107,107,110,102,105,108,107,100,97,96,108,103,96,104,102,103,110,119,108,103,95,114,95,96,101,110,109,109,107,111,121,117,110,132,105,90,111,103,101,116,114,106,85,113,107,105,91,102,111,98,103,91,101,93,105,107,95,102,121,109,97,107,115,117,104,104,90,90,108,86,101,121,117,91,112,113,102,107,100,118,113,114,115,111,112,105,102,110,94,107,110,107,103,105,119,108,87,98,94,103,114,106,95,103,82,117,98,109,106,105,105,106,110,113,104,105,110,97,63,108,107,101,99,94,117,109,90,113,96,110,105,111,114,112,106,102,94,113,99,87,96,111,101,104,102,117,92,106,101,108,99,125,108,109,111,100,95,101,87,104,109,109,109,109,117,113,109,119,100,95,112,94,116,85,100,107,113,106,94,137,114,108,105,111,100,109,101,109,101,109,106,114,103,110,100,105,108,107,110,113,105,94,105,96,74,108,116,109,119,105,106,107,108,108,87,107,89,95,88,102,106,107,106,98,96,104,112,99,95,104,105,121,72,98,104,99,111,109,101,111,97,108,106,98,107,95,79,110,111,105,116,102,110,107,99,116,104,107,117,95,101,96,114,108,115,122,132,113,102,98,109,103,114,103,110,102,106,111,94,102,108,103,119,107,104,106,104,104,111,100,111,102,98,98,91,104,123,107,96,116,120,100,115,106,95,90,110,109,106,93,105,100,108,102,106,107,117,103,88,109,110,106,103,113,107,99,112,101,113,92,108,101,101,112,110,101,93,101,100,102,105,101,107,102,92,81,100,118,95,101,105,107,112,128,104,113,118,108,108,106,101,112,100,104,105,99,109,111,116,104,95,108,112,114,101,107,113,111,110,111,102,103,98,110,103,100,103,100,109,110,110,109,94,109,116,105,117,103,91,111,97,94,95,106,105,109,88,106,110,111,103,117,107,99,110,103,112,114,108,110,114,107,109,111,110,99,107,109,104,101,101,104,113,112,94,102,102,101,104,110,103,116,109,112,98,106,109,98,103,109,101,105,96,106,115,104,111,102,108,96,106,103,106,108,99,103,103,112,108,100,109,95,86,103,101,90,100,116,106,101,103,111,112,116,119,89,113,104,93,103,106,112,96,101,113,110,104,108,100,125,105,104,89,105,113,112,107,104,102,100,112,105,103,109,105,94,98,110,120,117,116,115,114,133,109,102,113,123,99,133,138,134,138,185,182,196,202,185,176,192,196,206,178,162,166,141,151,123,142,131,135,130,111,101,122,112,120,99,108,106,110,117,107,115,107,112,113,110,109,106,101,93,95,118,102,106,106,109,113,91,97,101,121,107,112,101,125,104,121,113,114,106,102,95,116,109,103,97,113,103,98,117,109,99,100,105,105,91,109,102,97,114,113,109,105,106,106,104,108,113,112,105,107,116,104,93,123,126,105,97,102,95,104,111,99,111,112,105,96,109,109,109,103,113,117,108,103,110,117,119,108,112,101,105,112,97,117,99,115,118,107,112,108,96,96,112,105,113,101,103,109,103,104,105,113,115,91,97,107,118,103,113,98,107,103,109,89,102,117,107,111,116,101,106,110,104,111,96,133,103,120,104,106,97,104,109,108,108,113,109,110,107,105,111,113,108,115,108,107,110,105,103,105,108,107,125,106,97,113,110,113,99,106,121,117,96,94,106,111,122,105,113,98,106,116,101,100,99,109,109,101,111,108,104,107,101,102,119,112,114,111,116,103,111,116,114,102,117,110,108,113,115,94,89,113,99,99,106,112,111,107,113,106,113,96,103,119,124,101,99,116,111,105,99,98,114,105,108,102,107,97,109,95,99,95,103,120,118,109,102,104,104,107,113,109,122,106,118,117,109,104,106,113,94,105,108,112,104,105,107,94,105,101,114,102,106,94,108,115,100,103,104,109,95,88,102,120,102,99,102,109,83,103,113,104,98,107,106,109,109,107,102,93,116,114,107,109,106,88,112,108,100,106,103,111,95,106,93,106,104,102,114,101,95,110,104,113,99,108,97,112,102,104,134,106,108,112,107,109,104,103,109,116,106,99,97,100,108,104,112,109,112,107,99,98,98,113,112,109,101,103,104,103,109,108,103,110,103,107,115,92,104,99,112,98,113,110,108,102,103,106,107,106,100,99,103,108,114,108,105,104,112,115,106,106,119,99,113,103,102,117,110,114,103,127,104,98,102,110,108,109,99,102,102,114,109,85,111,99,115,111,94,86,95,103,106,82,131,112,96,102,113,94,106,114,107,101,102,112,99,113,82,107,96,100,102,97,112,104,102,111,95,114,103,106,105,103,98,107,119,113,108,129,102,112,95,102,108,91,113,107,92,96,104,103,105,104,111,114,112,110,103,112,103,96,99,102,114,98,104,105,108,97,98,116,98,104,101,103,99,89,107,109,92,96,118,100,97,98,106,104,99,97,100,117,96,96,121,104,99,91,108,100,99,113,119,105,95,109,105,108,110,110,103,110,115,92,117,102,98,120,107,107,111,97,101,105,101,102,126,114,100,117,105,106,105,104,107,100,101,106,114,94,93,109,128,106,108,114,116,103,96,117,103,109,100,97,99,112,102,85,88,126,117,106,96,99,97,99,103,106,106,116,112,108,116,98,95,99,102,103,115,93,106,107,108,113,107,116,121,97,103,87,104,99,104,112,96,111,98,95,125,96,110,104,104,104,107,110,94,108,109,97,100,99,116,106,104,105,102,98,107,103,100,110,101,109,104,108,98,112,112,106,104,100,109,101,97,106,106,110,114,107,96,118,112,107,107,116,105,116,102,104,111,101,102,102,108,104,103,107,92,75,109,96,103,95,102,94,106,110,102,113,114,100,102,112,107,107,111,106,102,104,112,119,98,107,111,121,98,110,104,106,105,105,98,102,111,113,98,115,100,108,100,95,80,104,102,98,112,99,93,111,109,84,125,111,111,102,105,110,103,104,105,113,95,117,113,113,95,115,108,105,105,112,108,98,107,109,117,91,106,100,103,100,113,97,112,113,109,101,103,102,117,99,104,106,103,99,100,107,114,96,108,106,113,108,103,104,93,102,112,108,114,110,114,103,106,106,111,103,109,120,113,115,109,98,98,102,109,108,94,109,104,103,103,110,109,103,106,107,112,100,108,106,99,95,104,102,103,110,100,109,112,109,102,102,105,111,106,107,104,108,92,103,109,110,110,114,112,113,127,110,107,106,107,109,119,109,105,104,101,100,112,110,104,105,109,106,117,117,109,125,99,103,116,101,105,112,107,101,104,113,94,92,111,97,91,98,95,107,95,115,100,103,112,108,104,104,105,107,98,106,103,115,109,110,104,100,112,82,95,95,91,95,110,109,112,114,105,105,102,105,96,105,103,109,98,94,108,94,98,102,107,106,95,92,99,102,108,105,103,107,104,106,94,110,102,102,124,120,102,102,98,113,103,104,107,106,109,105,100,100,106,106,107,100,107,98,109,114,106,120,98,115,108,112,105,111,102,106,109,112,93,100,110,109,96,100,108,111,98,99,99,94,111,107,107,105,119,106,91,103,103,103,111,113,102,100,98,111,101,110,104,129,105,108,109,100,108,105,102,103,103,91,105,114,111,124,117,105,110,119,101,111,119,102,107,89,106,97,106,99,102,115,104,95,100,101,120,96,116,111,107,102,100,98,101,96,102,97,101,90,106,116,118,92,117,131,95,104,112,101,93,120,112,107,99,107,101,113,108,117,98,104,104,108,107,100,101,101,86, +560.84143,95,92,91,67,101,110,90,90,109,96,95,101,92,104,111,105,109,104,83,108,99,94,123,108,115,112,102,64,110,97,91,104,109,99,106,91,100,100,106,102,103,105,103,93,96,116,107,107,101,109,106,94,97,102,119,99,98,81,108,93,105,124,110,114,85,100,103,93,139,106,97,101,103,109,96,106,109,86,98,107,129,102,116,99,96,104,94,102,102,132,110,76,102,90,104,100,106,96,109,104,102,115,104,115,108,96,94,108,96,104,97,111,101,101,98,96,118,101,105,105,99,103,95,117,96,118,103,103,109,100,106,98,99,109,105,101,97,106,108,97,100,107,96,91,101,96,109,89,89,100,100,102,122,109,95,67,104,111,109,111,100,95,103,117,104,101,105,95,97,98,106,103,104,104,107,110,96,111,122,110,104,107,103,98,106,95,95,101,105,96,96,99,107,105,109,101,112,115,108,100,97,104,103,95,94,88,91,110,109,102,104,109,111,96,104,111,106,112,115,102,106,122,121,91,117,100,102,115,109,105,99,103,109,96,109,113,113,101,102,103,114,109,114,112,103,106,95,105,101,117,103,98,98,112,119,103,98,108,96,108,109,101,97,105,97,113,98,106,120,85,99,99,101,106,113,107,99,111,95,96,105,116,100,109,105,107,98,98,106,107,103,111,111,100,96,107,103,104,105,108,116,96,98,120,95,110,101,110,123,98,98,120,100,110,120,110,93,108,105,107,98,109,99,96,104,99,97,101,117,117,113,105,107,102,103,100,109,104,104,110,86,110,100,103,104,111,111,100,108,104,103,93,113,98,116,102,110,105,112,112,105,110,96,100,91,118,120,106,99,106,96,95,109,105,103,99,113,104,103,93,109,90,112,98,103,98,104,103,116,106,117,96,94,123,101,113,95,105,107,114,110,101,98,97,96,105,104,115,100,93,61,86,107,107,116,99,109,90,114,118,105,111,100,102,102,94,106,100,120,100,105,100,99,95,106,98,95,117,104,100,104,110,108,98,93,104,104,100,100,110,102,95,92,108,109,96,101,109,111,110,88,111,98,96,99,101,110,99,99,98,113,103,108,89,111,114,111,110,103,104,109,116,117,116,103,105,118,98,98,103,102,114,109,95,84,106,92,102,104,106,103,101,104,108,112,101,100,118,108,102,115,100,100,108,103,109,110,96,108,102,105,102,116,95,110,97,96,113,112,102,91,103,100,104,104,105,112,99,109,103,96,111,84,102,125,95,117,102,105,99,104,108,108,107,96,107,97,98,102,99,94,118,97,102,99,100,110,107,99,108,104,103,112,108,93,104,106,107,108,108,79,116,102,100,94,110,113,96,109,97,110,103,109,108,107,106,97,102,105,101,112,105,104,121,100,95,98,103,100,108,111,93,109,113,111,107,117,109,112,114,108,99,114,98,74,108,103,100,105,88,102,94,103,115,104,101,97,104,110,110,110,116,100,105,103,98,102,112,97,107,69,114,95,110,102,109,110,116,111,74,108,99,96,108,97,94,109,96,106,99,117,107,112,106,85,106,111,98,103,100,102,120,114,107,99,99,91,98,96,107,104,111,101,103,107,117,108,110,105,102,99,99,112,106,117,111,102,114,111,113,88,103,97,107,100,100,96,107,106,117,110,105,92,114,100,100,99,104,106,128,96,105,89,99,99,109,105,116,117,121,94,81,95,100,109,104,105,98,103,106,105,103,102,97,106,101,110,99,105,95,104,102,104,107,108,105,109,98,94,111,113,110,103,113,79,114,100,98,109,102,107,102,104,116,100,102,106,116,112,111,116,103,105,107,115,100,103,95,111,114,103,98,96,102,105,112,99,108,118,105,105,97,96,106,112,109,101,91,106,102,105,112,108,109,104,108,97,106,113,111,116,100,117,106,118,108,107,101,104,117,93,100,112,103,102,109,117,96,113,112,104,99,80,99,95,106,100,120,94,111,105,105,105,112,108,95,108,102,131,113,109,113,112,116,97,103,90,97,99,101,96,116,98,99,100,98,106,120,99,100,109,115,103,109,106,106,99,105,81,97,106,102,117,98,106,104,107,116,112,101,100,108,107,90,101,96,100,110,93,104,94,113,95,80,101,109,108,109,101,103,109,77,105,109,109,107,110,93,108,111,110,115,109,88,117,111,111,93,119,112,106,101,103,115,115,116,112,99,102,94,101,92,110,105,106,106,103,103,100,92,124,104,108,96,119,96,108,104,121,102,104,107,98,98,101,95,117,107,99,96,102,97,128,104,95,113,98,125,89,107,106,100,105,104,104,120,100,102,107,111,99,113,101,99,111,114,102,114,107,100,103,106,101,102,87,101,101,113,109,111,102,114,105,107,119,113,121,133,158,144,149,166,192,186,215,192,202,181,184,171,157,184,163,155,113,129,133,119,119,122,101,125,99,115,99,108,99,91,98,103,105,107,103,112,104,101,119,106,99,102,102,106,109,108,103,115,103,111,106,99,110,113,106,108,107,115,88,108,106,102,112,103,106,110,95,115,102,92,104,113,109,113,116,106,99,103,83,115,95,88,109,119,94,116,115,115,100,105,113,96,101,129,105,98,111,103,102,103,118,109,93,107,104,113,107,102,105,117,108,98,110,103,112,113,107,99,87,113,95,89,117,102,100,102,104,107,96,107,110,108,106,102,116,111,102,111,102,101,110,103,107,108,96,116,107,106,119,105,95,99,89,98,103,113,90,113,108,95,108,102,104,105,103,105,103,124,107,103,102,105,114,98,88,105,108,110,103,113,113,91,125,110,107,109,98,88,98,112,98,116,87,109,101,87,105,98,117,107,101,110,121,95,109,99,98,105,112,107,104,109,135,106,99,93,96,102,101,121,103,106,106,97,124,104,122,101,103,99,111,102,113,103,100,111,102,109,106,93,113,107,106,92,103,99,123,99,127,117,104,100,100,111,94,103,118,106,101,92,118,113,123,105,106,104,91,103,114,111,100,104,102,107,108,103,117,109,105,105,114,101,111,94,103,105,101,113,112,101,106,109,117,110,82,108,105,112,112,94,108,108,99,113,95,99,116,87,108,96,108,106,88,117,106,104,95,102,101,108,97,100,117,108,101,104,107,124,113,107,121,100,101,102,94,117,100,101,105,106,96,110,128,107,108,96,113,108,88,99,100,115,110,91,109,101,111,111,101,116,119,102,126,102,94,106,104,106,122,97,107,108,106,110,95,101,105,109,103,96,106,116,111,113,83,105,96,106,108,107,115,106,106,114,112,111,104,116,94,119,113,105,97,97,100,106,108,99,100,110,102,100,103,98,111,109,101,117,93,105,101,98,99,106,107,104,109,118,109,113,110,103,106,109,103,97,101,93,115,107,87,99,98,106,113,99,100,102,109,112,103,108,97,110,103,98,104,100,95,118,102,102,97,102,113,112,97,97,104,100,96,108,105,106,107,96,97,105,88,106,111,103,113,103,102,125,94,109,98,114,102,108,102,95,85,95,107,98,110,106,112,110,97,103,107,108,107,112,99,115,106,94,110,109,106,98,109,102,116,108,108,99,95,112,102,102,108,103,116,96,104,117,105,96,108,105,101,112,114,94,99,100,104,96,98,108,115,107,99,104,104,96,106,100,103,111,108,110,101,133,98,109,100,105,112,99,108,99,101,100,108,120,102,95,100,102,101,97,106,122,101,80,98,101,91,103,107,104,106,110,96,96,106,93,111,97,108,91,102,91,107,104,106,100,111,99,117,107,106,116,99,93,101,105,105,113,107,109,101,105,120,113,98,101,95,117,105,99,115,89,110,110,104,108,86,101,110,96,108,104,105,84,104,102,100,91,102,109,109,90,96,109,105,102,105,86,94,100,102,104,99,108,107,110,107,101,106,111,108,104,105,104,106,109,109,110,118,98,120,102,101,90,87,105,99,107,107,109,110,83,113,98,103,92,108,98,100,113,102,109,108,112,118,109,97,115,103,104,109,105,94,97,98,107,101,107,107,119,86,109,83,102,98,103,89,90,96,100,103,95,106,106,103,114,95,106,95,99,100,101,110,111,113,108,98,109,114,123,83,105,106,102,102,94,114,111,112,89,72,102,110,91,94,122,109,106,113,108,83,104,96,111,107,109,108,116,107,116,112,116,99,87,79,108,106,108,106,117,104,114,105,113,109,103,93,108,108,105,107,104,89,103,111,99,109,109,110,113,100,109,93,87,115,115,96,112,98,94,105,94,91,109,116,102,117,113,97,106,104,103,103,88,110,103,110,103,92,121,100,103,105,86,102,107,103,99,106,96,99,108,100,101,104,105,100,106,95,107,94,92,93,101,112,101,113,101,102,104,127,98,99,106,99,120,101,96,113,101,111,107,89,110,98,108,110,103,109,112,112,88,107,87,102,113,103,105,104,99,99,117,98,100,98,99,111,116,105,114,100,86,112,99,105,103,119,117,110,111,106,111,105,112,109,105,96,125,105,107,101,110,110,101,110,101,91,116,96,105,96,114,102,98,103,96,98,103,104,94,114,92,105,110,95,87,104,100,104,107,89,104,103,114,104,111,91,102,106,106,97,98,109,99,102,105,102,90,74,102,101,102,108,100,106,99,108,96,107,95,93,98,116,96,97,121,98,88,98,109,92,105,106,104,107,93,105,97,96,101,94,100,113,101,108,99,110,102,109,83,108,103,105,92,109,102,100,98,104,94,108,104,115,83,95,130,104,96,99,107,107,98,121,101,102,112,97,110,95,97,102,94,100,107,100,96,113,98,109,106,99,108,87,116,114,106,117,96,103,86,103,103,112,96,94,108,107,100,98,107,91,124,86,97,110,103,108,93,124,104,116,105,101,95,105,119,93,106,103,115,99,106,120,99,102,111,97,78,97,100,95,120,93,87,109,106,103,114,90,101,88,87,95,100, +560.98236,78,91,96,108,92,104,105,94,95,109,103,97,116,89,107,110,100,107,101,80,105,103,94,106,101,103,104,87,105,105,111,107,100,95,95,103,102,87,103,107,109,96,111,99,91,110,92,104,100,113,102,96,109,109,102,92,99,99,121,103,109,115,108,91,100,110,96,102,112,98,106,103,95,103,98,112,106,102,109,91,109,104,103,93,123,115,86,111,94,109,113,110,102,104,96,107,103,96,106,99,119,110,98,94,104,100,102,104,102,95,91,97,97,103,104,106,112,98,108,101,112,102,94,69,106,109,100,101,95,101,115,116,121,67,95,100,99,97,96,108,104,101,105,105,109,96,109,106,108,106,102,99,98,99,109,109,80,140,104,98,100,117,104,109,106,93,109,105,102,101,114,91,114,101,110,102,102,99,106,110,110,113,105,104,115,107,110,109,102,94,103,96,98,100,102,110,104,103,118,117,114,104,107,112,104,110,99,107,110,101,108,102,105,95,120,98,90,99,102,103,96,104,101,92,94,118,101,111,97,105,104,104,108,109,103,100,94,98,109,96,113,100,108,100,101,110,109,89,99,107,108,106,102,95,100,101,104,109,100,99,117,101,97,115,107,94,101,112,105,93,96,92,101,101,108,101,89,104,109,100,102,102,101,106,95,99,93,105,90,109,85,101,71,103,108,111,117,103,95,101,112,90,107,111,100,112,105,111,117,112,90,112,106,99,103,109,111,113,94,91,105,97,100,111,94,108,98,105,113,119,112,97,113,112,106,112,107,93,87,109,107,101,114,94,117,105,88,111,97,108,98,113,99,108,105,116,98,115,113,104,103,111,99,100,104,96,92,115,113,117,101,105,91,107,103,101,103,81,105,106,114,108,102,116,105,101,112,100,113,93,115,91,101,107,93,93,100,96,104,107,98,103,118,91,104,104,110,91,95,112,104,95,96,102,93,105,92,104,88,98,105,102,106,98,99,102,103,96,91,110,83,104,115,100,95,109,105,80,109,99,102,92,91,106,108,103,107,108,107,102,100,100,99,122,99,90,94,95,109,100,112,110,70,110,83,104,107,98,108,95,99,108,92,115,111,95,97,114,106,104,103,102,108,110,113,109,103,101,104,107,103,119,105,102,104,108,101,110,107,104,114,113,113,103,100,91,100,100,112,104,110,94,97,95,101,106,100,101,105,107,110,101,98,109,106,109,113,105,96,98,113,102,104,98,97,100,104,96,103,108,102,86,101,98,107,100,91,95,111,107,75,97,113,99,103,113,100,110,112,100,124,104,104,113,109,111,89,108,100,100,97,88,101,101,99,110,110,113,100,109,112,107,113,108,98,104,115,114,96,97,108,104,103,96,83,98,105,104,119,105,100,112,99,106,103,101,110,97,102,102,88,124,109,103,113,100,111,104,113,98,106,108,109,96,90,124,101,107,109,108,95,102,100,117,94,96,114,97,105,99,111,103,95,111,95,97,108,99,110,112,96,96,107,100,99,109,99,113,96,109,87,108,84,113,96,92,104,93,109,111,112,107,109,96,111,108,110,103,109,98,107,96,99,117,107,93,103,108,99,107,100,100,90,108,101,104,72,100,113,94,96,95,105,108,102,103,114,121,105,98,109,96,101,98,113,97,92,99,90,112,115,106,103,108,76,96,110,66,98,103,106,111,106,99,94,112,93,102,103,97,105,107,98,99,116,108,112,101,112,109,101,107,115,107,100,95,99,107,98,109,98,107,99,107,99,96,95,108,100,106,105,97,105,101,106,112,106,90,103,100,91,112,117,98,119,112,110,102,105,109,108,112,98,99,110,102,93,110,133,110,103,102,99,107,116,104,117,105,109,101,113,97,99,106,106,109,101,115,107,99,94,98,114,101,93,113,106,97,91,105,107,105,97,108,89,97,96,118,113,96,100,95,118,103,109,97,106,110,103,104,108,111,103,111,106,106,96,93,97,97,94,102,102,105,114,90,101,101,116,98,95,98,100,108,95,91,105,101,100,98,99,106,111,105,101,100,102,123,109,116,115,107,108,98,107,99,107,103,87,104,106,101,74,108,109,91,108,99,89,99,103,106,111,112,94,106,98,103,96,105,96,121,107,103,98,91,109,113,103,117,104,95,97,105,92,107,91,103,109,106,99,93,111,106,115,103,106,119,113,119,109,106,99,101,109,94,115,103,95,116,106,102,107,102,96,98,102,105,106,115,102,99,104,88,80,109,93,97,109,95,99,116,109,114,118,107,101,99,112,95,95,98,101,85,100,99,101,95,110,106,101,96,101,102,87,107,109,103,96,107,104,111,104,106,97,114,110,103,111,105,113,124,129,94,111,107,106,100,107,101,110,108,88,109,115,113,116,112,138,131,151,156,151,201,223,174,210,183,181,181,178,175,140,156,141,152,155,124,116,102,116,111,117,102,98,111,111,103,110,99,97,112,105,103,100,107,107,119,103,100,106,112,98,102,107,111,89,104,112,109,97,112,100,101,96,102,109,112,111,94,95,92,107,96,111,104,102,116,106,121,101,116,113,100,101,100,108,111,99,104,105,97,100,115,106,103,107,113,94,107,119,104,106,103,94,116,108,95,101,119,113,100,126,108,114,107,102,105,97,104,124,109,109,127,97,114,106,99,103,104,120,105,95,99,116,111,97,100,97,112,96,94,105,106,101,112,103,105,106,116,114,111,101,106,104,112,109,119,117,113,110,97,100,116,95,105,108,105,101,104,99,107,99,103,114,110,107,81,89,99,102,107,122,105,102,102,109,93,111,117,112,113,102,106,125,114,116,83,104,109,89,102,108,111,106,108,110,100,124,112,95,117,97,109,114,99,113,107,104,105,99,111,118,111,103,100,104,92,107,108,106,99,92,105,109,105,99,99,97,104,116,108,100,111,114,90,106,129,105,110,122,111,109,112,100,117,107,113,113,105,107,110,95,112,105,108,107,105,100,120,100,119,102,110,108,110,110,100,104,108,99,112,99,100,115,111,101,101,109,98,111,120,102,120,110,104,104,128,99,106,98,106,105,103,111,103,100,107,106,100,119,100,99,95,114,91,109,107,104,122,109,103,105,99,99,106,105,106,88,98,108,124,98,98,112,95,117,121,108,103,103,111,106,108,109,91,97,107,102,102,107,107,105,103,98,99,106,106,107,119,95,99,106,109,94,103,106,111,110,110,111,113,95,118,103,105,112,115,108,85,96,126,97,111,110,103,99,102,104,103,115,123,98,97,112,99,107,100,112,107,113,108,103,104,104,105,100,104,106,95,116,99,102,102,106,113,106,100,113,96,100,95,115,115,115,111,99,93,98,103,106,103,109,109,112,108,105,105,66,92,104,100,102,102,118,118,113,117,104,115,113,114,111,97,107,108,97,102,100,96,101,95,108,103,100,103,106,113,103,93,101,95,96,110,104,95,107,96,109,103,111,103,110,101,104,114,106,95,94,104,104,108,113,119,112,101,101,105,111,95,102,106,95,104,93,115,99,108,109,110,98,121,108,119,94,113,103,103,82,105,96,109,106,116,105,126,111,111,111,95,104,107,104,99,103,103,93,112,115,112,113,113,110,107,110,95,95,92,129,114,104,99,113,118,102,97,107,103,111,114,83,96,97,103,116,107,112,115,114,115,109,103,106,105,109,93,95,97,101,98,96,106,106,108,100,122,98,101,103,106,102,104,106,105,102,101,107,111,99,104,110,115,101,104,103,106,99,104,111,97,105,111,117,102,103,111,111,110,106,106,119,109,107,101,111,111,99,97,99,98,110,92,99,102,113,115,95,99,116,105,100,111,96,107,104,112,96,102,91,116,99,109,111,90,104,102,97,105,84,107,89,94,102,118,95,94,103,102,102,92,103,102,93,111,98,110,92,106,102,104,109,110,100,112,116,95,103,121,102,100,107,90,106,105,104,103,102,103,106,102,96,98,107,91,101,111,106,104,106,114,102,105,97,107,106,100,102,108,105,113,106,109,110,70,93,103,105,102,110,98,102,114,113,101,102,113,101,105,107,103,121,94,113,94,106,105,125,109,103,106,99,96,97,101,109,101,108,99,105,101,103,97,88,96,99,99,103,96,103,99,110,93,108,109,108,106,92,115,107,104,91,105,105,110,102,116,98,111,117,119,107,108,99,100,110,108,109,114,116,109,106,96,98,108,108,99,109,105,104,104,107,113,120,95,83,117,104,99,94,103,98,102,94,112,108,109,117,115,103,102,105,100,95,107,96,103,102,105,103,105,112,112,106,101,90,101,98,105,107,109,92,103,116,116,107,109,111,110,97,102,101,91,111,103,107,110,110,104,100,117,108,103,101,107,91,101,104,98,111,91,115,94,101,109,103,88,103,107,98,105,121,104,115,113,101,113,105,101,114,100,105,106,106,114,93,104,106,105,110,96,93,105,81,92,112,101,123,100,104,106,117,109,101,146,100,103,98,96,101,103,101,107,105,95,114,102,94,100,105,103,102,107,94,108,113,102,79,115,127,111,107,103,97,119,109,107,96,108,104,98,99,105,108,100,102,105,105,107,104,102,99,108,99,100,98,104,99,110,105,105,93,106,106,98,95,102,105,104,104,91,94,109,109,109,95,105,137,101,97,105,103,106,110,105,106,115,106,101,114,105,93,104,109,102,115,109,112,94,79,96,88,115,118,94,113,109,101,95,97,117,92,108,101,96,117,98,112,99,113,96,102,101,109,108,100,102,113,106,101,103,99,103,91,115,106,94,106,98,100,106,109,88,103,100,112,90,112,93,99,106,102,80,101,98,99,97,103,111,100,111,104,106,125,94,92,102,93,96,109,100,119,106,98,105,103,112,109,97,103,93,112,102,100,108,102,94,111,104,111,106,108,98,89,104,109,85,109,104,108,110,105,113,106,115,99,104,114,104,120,121, +561.12323,104,104,95,105,101,106,102,97,106,100,112,98,111,104,101,103,93,99,100,113,115,109,94,112,90,102,95,109,110,73,98,88,97,110,102,102,106,99,104,91,103,95,108,97,107,98,95,105,94,111,91,99,107,106,91,94,102,86,116,91,99,110,103,92,105,107,111,114,114,99,104,101,105,103,95,97,99,96,112,100,108,101,102,104,100,93,111,100,113,109,106,104,99,101,117,106,110,95,114,83,108,87,105,101,109,105,96,100,105,94,99,95,92,111,113,113,94,118,110,93,99,97,112,106,106,89,111,92,100,106,99,125,94,97,121,105,102,120,102,96,98,109,93,103,106,104,103,101,105,105,107,123,99,103,97,107,106,111,113,106,94,109,103,98,110,97,97,101,110,106,98,104,87,101,95,101,106,100,109,110,98,104,96,99,112,104,96,98,116,99,107,110,105,91,95,116,107,105,101,97,101,107,101,86,102,94,113,92,103,108,103,102,99,114,103,103,101,107,103,98,98,99,102,89,99,105,106,111,102,91,106,106,108,104,112,111,102,101,108,109,109,99,109,108,96,112,96,108,102,101,98,109,97,117,100,116,106,103,116,106,102,99,101,104,100,109,105,111,106,104,110,109,76,102,108,121,100,104,96,110,118,101,78,96,93,104,99,97,112,104,106,102,109,117,118,105,100,106,110,104,103,111,103,103,98,101,99,113,101,98,106,107,101,110,104,100,105,110,96,100,103,106,102,92,94,108,117,95,107,108,99,93,117,101,109,106,114,100,97,105,112,118,108,91,99,106,108,118,112,111,98,116,104,97,119,111,113,106,111,88,93,110,103,95,99,104,108,117,101,117,95,103,111,109,106,94,105,114,109,106,108,113,102,101,100,117,106,96,101,92,116,97,101,107,100,97,103,109,99,106,124,126,104,98,107,96,96,95,110,107,99,87,96,105,95,67,104,97,113,110,106,112,105,103,91,93,104,98,89,111,83,98,101,95,104,100,103,112,102,105,102,106,117,110,101,103,100,96,109,110,99,109,108,104,132,105,102,113,111,89,107,101,108,103,102,110,99,106,95,106,110,103,103,108,85,104,85,115,100,102,113,116,112,101,117,106,109,104,105,98,92,103,109,100,101,105,100,106,107,115,101,109,112,103,106,98,109,98,104,117,106,108,106,103,110,102,99,119,98,113,107,142,116,97,97,117,114,95,100,109,101,114,110,101,114,99,100,91,95,85,99,109,91,105,112,108,107,112,98,102,106,119,110,94,102,104,100,85,99,102,104,102,96,102,104,71,108,112,108,99,95,93,112,105,96,112,95,106,94,110,106,90,117,99,105,95,106,104,108,93,96,113,115,99,106,110,104,108,108,113,88,112,111,96,125,115,95,93,112,101,108,121,109,109,103,108,103,113,99,101,118,99,104,82,101,105,103,104,106,99,97,97,106,114,103,108,107,98,101,94,99,94,109,110,102,97,99,104,101,114,92,102,89,103,102,102,94,103,106,109,112,94,111,103,110,109,99,100,112,111,98,110,99,109,109,106,105,102,107,96,112,102,111,103,97,104,103,112,100,115,108,108,97,108,102,104,109,99,108,98,98,95,105,115,107,109,106,105,106,95,108,98,100,112,103,108,108,97,102,98,113,82,113,111,107,98,98,100,104,103,98,110,111,98,103,111,117,108,113,103,67,109,110,104,109,102,118,106,104,108,109,108,72,118,106,108,99,108,112,103,95,86,91,99,90,103,112,86,99,99,108,106,108,110,100,112,106,81,103,98,100,111,110,100,103,87,107,114,96,111,97,103,104,104,109,104,99,106,104,109,112,95,107,110,107,104,106,99,109,118,107,99,99,102,107,110,105,117,113,90,113,111,96,112,104,110,116,113,107,105,105,108,109,92,118,99,114,104,106,113,99,111,113,103,107,98,88,108,99,103,114,101,86,105,104,109,112,95,107,104,99,105,108,98,110,110,99,98,111,105,101,117,107,98,101,105,97,102,102,109,113,101,106,98,115,100,106,123,100,119,109,102,110,110,109,103,104,108,121,115,102,108,114,103,99,110,101,104,108,100,103,99,99,108,103,99,104,106,112,102,104,111,116,112,124,88,104,103,116,77,100,102,109,105,90,100,102,108,118,92,101,114,101,104,103,92,95,113,109,103,111,110,108,119,106,100,103,123,105,104,107,116,106,107,115,107,100,102,108,111,98,91,105,97,107,113,101,98,103,99,127,101,105,108,104,102,97,109,103,100,102,106,104,112,99,104,98,99,109,102,91,102,103,77,107,110,99,101,101,104,102,91,97,116,106,88,115,109,113,95,97,103,98,110,116,103,103,109,112,109,113,121,126,113,115,110,113,119,125,136,142,179,166,183,232,178,210,171,171,220,171,165,151,129,160,146,131,127,137,122,117,112,111,109,112,106,107,105,103,118,98,118,108,119,132,98,100,109,99,96,101,107,106,105,101,107,109,108,113,121,109,109,97,84,106,105,104,101,111,108,99,96,104,98,97,107,111,98,96,112,105,113,102,107,100,95,102,107,88,116,109,119,101,106,111,108,105,106,104,111,112,118,100,103,103,102,95,104,100,103,116,115,94,111,97,108,99,105,93,101,99,113,113,101,109,93,107,98,111,100,110,93,108,94,111,106,105,88,107,100,98,115,117,116,110,100,102,94,110,102,100,108,95,109,119,91,112,116,92,102,107,111,95,100,114,106,115,103,103,92,105,109,109,91,109,99,117,98,100,108,106,92,110,104,99,98,107,106,102,95,106,105,101,106,104,105,95,108,105,102,100,124,113,114,103,91,104,105,102,108,108,109,110,98,100,118,103,109,104,114,73,109,110,97,101,105,104,110,95,116,101,109,106,108,105,96,109,105,106,125,113,106,102,108,110,107,109,104,103,111,102,115,96,111,113,98,103,97,109,105,102,98,99,98,110,103,115,103,100,111,99,105,119,100,101,111,105,111,103,95,107,100,101,92,111,99,90,102,111,103,116,112,99,104,103,107,95,112,95,102,70,103,104,98,119,100,102,111,109,103,99,102,104,99,92,88,104,109,112,103,102,113,107,94,99,98,101,107,97,92,101,106,115,111,105,101,93,101,103,104,103,99,106,92,110,106,101,102,102,115,99,111,113,112,106,91,101,102,100,108,103,97,94,108,103,68,93,100,100,113,103,95,91,99,106,108,107,103,102,98,99,84,97,108,105,94,101,110,106,84,93,102,91,84,108,106,93,108,103,143,103,99,114,104,111,95,111,107,95,96,88,113,107,108,104,106,98,92,91,100,107,101,108,117,96,108,104,107,107,109,98,101,99,93,136,110,96,96,100,90,103,102,98,100,115,94,127,102,115,105,111,100,112,105,100,105,107,101,100,96,104,107,97,110,101,101,107,104,101,101,110,108,99,86,82,104,104,101,111,102,115,103,97,95,102,104,101,113,101,113,94,110,105,90,97,97,105,100,109,110,109,100,91,89,107,106,103,94,120,101,103,90,101,100,90,98,84,113,109,83,109,106,108,105,102,115,106,112,87,100,92,112,113,105,99,111,106,99,116,106,111,98,104,105,83,111,117,97,110,95,130,101,109,99,110,96,99,111,104,106,102,109,101,108,111,95,111,112,102,121,96,98,105,108,103,99,109,109,69,107,107,112,104,106,100,102,99,98,101,106,117,109,112,115,94,95,94,105,103,109,115,102,107,97,112,98,111,91,105,97,112,102,99,102,107,105,103,113,98,96,125,101,110,101,93,102,109,97,100,100,114,100,104,94,96,106,112,96,106,102,107,99,103,110,97,110,115,102,103,111,116,99,98,96,100,105,107,97,102,116,78,102,104,97,109,108,101,112,98,112,120,84,96,108,103,104,86,105,107,96,107,104,94,108,104,100,104,104,96,99,92,102,102,104,108,103,107,96,108,101,113,109,100,112,108,110,107,104,103,117,98,109,109,103,99,103,109,99,106,107,103,95,106,106,109,98,102,118,104,98,110,114,112,107,99,103,102,99,114,102,112,103,104,104,96,100,101,122,112,108,104,105,110,102,101,108,105,110,103,102,104,100,99,92,108,110,90,100,88,108,99,100,110,98,116,101,90,105,105,105,93,96,111,112,104,105,113,101,126,109,104,98,110,107,115,91,102,102,99,111,107,113,108,113,112,101,110,105,97,106,102,119,111,105,102,113,101,103,119,108,105,98,101,112,116,94,109,103,93,97,111,102,108,104,111,106,98,112,99,110,104,104,117,109,94,113,99,110,95,100,103,106,112,100,91,102,82,102,96,104,100,102,105,108,113,109,106,99,95,99,104,113,99,119,108,101,100,100,113,102,115,99,95,102,106,96,114,125,91,108,116,108,110,119,102,98,89,108,112,98,108,111,102,108,109,91,107,104,106,101,90,100,97,105,97,96,98,108,105,109,104,120,101,110,99,109,87,103,112,111,109,114,116,105,105,110,118,110,95,98,100,106,107,106,111,109,108,97,101,107,111,100,113,101,106,110,91,100,101,105,75,99,99,104,91,108,105,98,108,103,104,102,113,92,102,105,107,103,91,98,109,104,107,99,108,104,109,89,87,105,112,112,109,106,109,102,109,98,90,106,98,104,102,105,103,94,99,117,101,103,116,95,112,101,111,121,102,100,97,106,102,100,106,99,115,103,107,101,128,99,108,113,112,104,106,105,122,110,101,99,105,104,107,80,104,99,102,96,98,85,94,97,98,105,103,89,103,106,103,100,120,94,104,105,97,98,104,90,121,105,87,86,98,102,112,102,110,102,100,93,106,115,102,96,109,99,88,104,101,109,119,101,108,99,111,98,97,103,98,105,93,117,96,108,97,116,99,93,106,105,107,109,103,106,103,100,101,102,103,95,102,90,107,117,110,98,89,99,102,107, +561.2641,101,110,101,100,88,103,108,95,103,110,91,101,96,94,96,97,97,125,109,103,112,99,99,94,100,100,111,109,92,115,98,96,104,102,81,101,110,112,110,95,108,100,114,107,104,112,113,94,112,101,96,109,93,99,95,90,112,98,112,106,99,95,102,100,104,114,101,109,102,102,108,102,94,99,118,109,98,114,95,108,113,107,96,117,115,82,110,105,88,106,110,99,107,103,108,106,102,101,100,92,90,113,103,103,101,97,99,98,102,99,103,111,108,98,101,103,105,105,114,103,103,90,106,111,110,132,103,92,131,109,97,100,98,101,121,101,72,109,98,91,88,101,100,102,99,91,119,114,95,97,108,96,113,104,102,105,100,92,88,103,94,105,116,96,112,94,104,100,109,96,106,115,101,100,104,111,110,99,104,102,106,107,112,113,99,97,99,96,99,95,92,94,106,93,90,110,109,95,105,108,91,100,113,108,101,83,101,113,98,103,108,109,106,94,106,92,101,106,109,121,98,112,106,94,96,103,101,105,105,109,101,107,101,106,108,98,111,105,103,102,103,107,116,99,107,105,117,107,107,103,106,102,103,101,108,106,108,95,96,114,104,101,100,98,105,107,105,120,97,95,101,108,112,67,116,101,108,104,106,109,104,105,101,105,98,110,95,101,109,105,103,107,107,110,104,133,105,104,96,101,111,106,100,119,108,106,105,109,91,121,95,109,102,99,110,113,104,113,105,105,99,95,80,102,111,102,104,104,113,118,109,125,108,102,94,114,100,106,112,103,104,85,105,105,102,104,106,109,102,111,103,109,103,100,103,103,117,108,104,104,105,100,95,106,104,115,99,99,103,104,122,102,110,115,114,101,109,102,101,108,106,99,95,105,102,100,102,115,83,94,120,102,103,113,93,92,95,106,106,108,107,107,103,107,98,95,103,98,101,105,98,129,103,112,108,102,110,98,108,100,109,109,104,107,114,104,101,120,107,98,99,103,101,94,106,96,117,104,102,96,103,100,113,104,97,91,106,99,111,116,101,102,108,106,103,105,70,94,104,94,96,108,118,101,114,116,105,99,89,98,109,101,108,113,115,105,115,118,102,108,103,96,118,104,98,97,108,101,103,106,100,107,103,105,101,98,96,109,106,94,102,99,99,109,118,105,96,103,109,102,105,108,113,113,105,105,91,99,95,104,106,95,125,102,94,104,116,114,105,102,88,108,106,90,93,104,113,96,111,96,108,115,100,114,105,99,103,115,105,117,101,108,106,107,100,96,115,108,97,101,99,95,109,110,95,102,115,113,109,100,93,99,101,95,103,101,108,104,104,102,104,100,115,106,94,105,118,111,110,105,106,109,107,110,100,106,109,102,110,102,108,101,109,95,100,112,91,96,113,105,102,96,103,103,123,106,105,101,103,107,106,105,117,114,116,103,103,110,113,104,91,104,100,98,95,102,107,108,104,104,99,102,106,101,109,106,92,113,112,122,105,98,116,114,100,116,119,87,110,103,108,110,104,117,114,88,110,108,96,101,103,104,103,118,95,107,82,99,110,98,97,111,97,104,101,110,93,94,108,103,107,103,108,105,110,94,110,102,110,101,108,107,114,95,114,102,95,98,102,103,111,116,92,88,104,103,97,97,115,113,105,104,114,117,100,99,101,106,115,118,99,101,101,99,110,109,103,97,98,99,95,100,98,109,104,104,108,94,96,113,103,99,113,98,100,98,104,106,111,102,111,115,103,107,100,105,126,103,92,110,105,103,119,104,104,104,107,101,100,107,102,109,109,104,100,114,104,102,117,110,110,108,111,127,113,106,106,109,99,106,103,101,106,102,92,101,105,122,103,112,102,109,102,99,117,111,104,111,115,108,97,99,108,95,116,106,102,109,113,90,107,107,109,97,112,109,108,115,91,95,112,113,97,94,91,102,92,98,106,106,99,105,109,98,103,107,110,109,106,94,120,105,110,105,101,114,106,104,115,110,78,116,103,99,113,107,107,108,110,100,108,112,100,114,101,105,101,110,104,111,105,105,89,108,110,107,105,107,81,109,121,111,105,95,107,96,108,102,107,96,88,102,106,103,102,97,108,111,103,77,109,97,122,113,111,114,105,106,107,98,120,109,103,112,109,110,100,105,110,105,110,118,105,104,106,105,117,110,102,102,108,105,95,113,103,96,112,107,99,95,110,102,95,86,120,84,96,104,118,104,99,96,97,98,119,95,95,99,102,110,107,116,95,109,104,95,114,95,114,102,117,104,109,111,124,108,109,113,97,98,104,106,95,99,108,117,108,96,97,108,98,101,108,109,101,98,117,109,98,112,105,105,110,122,115,100,117,111,108,110,110,118,119,113,129,106,121,142,137,127,172,173,202,196,208,215,195,158,218,205,182,177,186,170,140,121,130,138,128,107,129,106,123,111,110,99,103,107,105,95,94,117,108,110,111,112,109,111,100,103,102,105,105,103,113,114,104,102,119,110,108,102,108,99,104,116,97,112,97,119,107,102,91,106,94,114,113,97,105,103,108,116,104,115,98,96,101,104,96,119,100,72,87,102,107,115,98,107,108,113,107,106,107,101,102,98,97,108,97,107,94,100,98,98,105,104,113,101,112,102,115,95,96,98,116,105,104,116,101,99,110,89,104,98,103,116,91,116,117,112,100,103,112,86,96,105,101,98,111,105,106,104,103,109,112,117,108,108,96,119,100,105,115,104,113,104,110,96,98,99,110,103,102,104,112,99,98,92,101,100,124,98,103,105,109,108,114,118,108,110,98,101,103,102,113,98,92,102,97,125,100,101,98,91,104,105,105,105,88,109,105,110,107,92,97,119,113,104,107,111,99,105,111,110,99,116,102,103,105,112,110,100,114,107,104,110,93,98,97,112,114,105,105,103,99,101,95,92,106,115,103,106,118,102,110,103,98,90,96,108,99,99,92,87,101,97,105,99,108,106,100,106,107,103,104,94,102,94,101,107,90,103,104,83,102,113,99,104,99,134,111,114,100,106,98,141,110,105,105,112,97,100,108,107,108,100,117,103,89,105,115,107,113,92,100,111,97,112,101,102,119,115,89,103,104,115,96,87,97,95,76,112,101,105,102,101,111,96,104,105,103,90,111,116,116,106,98,106,104,98,103,99,102,108,109,110,108,91,97,102,103,103,98,100,103,107,108,105,99,96,107,96,91,99,105,106,104,117,106,98,110,97,68,112,104,77,106,101,106,101,107,100,115,101,118,104,99,108,110,104,103,102,105,103,110,98,96,101,104,101,92,110,106,103,103,95,107,106,106,102,107,100,100,108,110,103,106,103,99,97,104,98,120,112,102,116,95,105,95,100,105,109,99,102,95,113,100,98,96,106,104,111,105,103,95,108,97,91,104,101,105,109,95,114,96,110,109,102,104,106,91,92,90,98,110,100,113,103,89,104,95,95,93,122,96,113,110,115,94,90,96,116,110,92,100,103,108,92,101,85,108,95,96,107,108,100,93,100,85,95,107,112,95,105,89,108,99,97,101,102,102,102,98,118,112,117,105,105,113,112,88,110,108,99,104,96,105,101,108,107,109,99,110,104,99,97,108,108,106,103,107,95,101,106,101,112,113,108,105,101,104,87,107,115,108,101,113,106,108,106,95,107,104,114,109,105,110,117,102,107,100,98,95,110,109,103,102,97,108,98,111,111,100,89,91,111,118,110,108,96,111,107,84,109,103,102,124,105,106,102,103,104,102,109,106,95,111,107,106,110,113,106,112,103,104,98,106,114,114,108,110,105,92,100,98,89,113,103,104,115,92,105,102,110,104,100,97,109,106,96,112,109,110,99,100,106,107,104,100,113,95,115,100,108,110,113,112,108,102,104,106,91,99,93,117,108,102,105,95,113,101,110,98,96,105,111,97,106,100,101,112,103,96,74,101,109,105,105,99,102,101,112,105,100,101,101,107,116,97,107,106,105,98,109,103,98,91,92,96,105,107,105,109,102,98,113,118,109,91,98,106,104,92,121,113,87,113,101,110,113,101,97,94,102,99,99,95,109,107,100,116,108,98,106,100,108,99,101,101,104,99,105,115,98,105,112,109,121,100,94,109,108,100,97,113,106,112,124,114,100,100,94,107,107,119,131,102,109,101,104,99,106,101,112,106,93,112,106,105,109,111,106,95,99,102,102,104,100,102,95,106,104,118,101,101,118,91,110,101,114,116,109,112,110,102,102,102,95,99,108,112,99,105,110,80,98,110,117,111,106,113,105,105,103,111,96,115,91,109,106,111,104,89,96,98,98,114,91,112,105,97,126,95,102,109,105,100,101,104,109,111,100,99,99,104,106,97,113,112,106,104,102,115,105,107,91,111,106,104,109,95,113,96,103,99,103,107,104,92,98,97,110,110,111,113,100,113,116,98,99,94,98,100,104,104,114,108,95,104,99,113,104,108,109,102,104,134,94,119,114,106,102,109,108,102,100,101,105,114,100,104,108,93,105,102,99,106,110,95,104,99,102,81,108,90,108,113,126,100,113,95,103,106,109,105,108,100,108,108,101,105,112,105,113,103,91,106,96,107,96,87,101,113,105,107,100,112,91,99,102,112,109,108,102,100,97,85,101,106,110,106,107,102,108,102,91,107,110,103,109,113,117,102,106,103,103,107,102,103,107,100,108,115,97,105,119,102,108,101,116,95,107,103,105,100,107,109,116,108,92,94,103,109,105,108,96,71,121,98,119,99,109,104,97,110,113,117,111,113,103,104,113,110,104,108,88,96,97,104,107,109,120,98,100,108,100,102,106,103,95,116,98,110,102,100,95,104,101,97,94,109,91,106,98,106,112,101,105,99,96,101,98,101,105,102,114,98,104,114,103,103,87,107,104,100,100,101,105,102,93,96,109,100,102,100,98,109,88,83,87, +561.40497,97,97,104,96,93,105,98,95,113,95,74,99,104,107,109,105,91,108,102,113,109,109,103,100,98,106,99,124,103,106,106,101,97,94,109,103,98,99,95,93,92,73,115,99,100,122,105,112,90,100,111,100,105,103,108,86,106,106,107,96,100,109,99,121,93,112,101,105,114,103,113,96,97,108,92,117,96,97,105,99,102,99,102,102,98,117,100,110,96,108,110,103,105,103,96,94,106,107,102,103,103,95,103,116,99,113,90,103,76,105,100,112,107,101,92,109,103,105,106,96,100,105,109,117,106,104,105,105,106,105,105,113,114,108,101,116,102,121,101,98,91,103,100,116,103,103,105,104,100,101,101,108,101,88,104,108,103,92,113,99,102,97,116,98,111,113,96,101,119,102,102,94,100,97,104,95,106,102,100,106,106,98,95,105,98,98,106,94,95,100,68,106,101,104,87,103,107,115,100,108,111,113,108,98,103,89,97,110,107,102,83,107,111,114,104,103,112,103,105,91,102,104,102,101,88,104,99,104,107,100,101,113,102,97,103,113,99,112,106,100,100,93,97,98,109,102,94,110,102,107,90,108,112,85,107,99,110,96,105,106,102,105,109,109,98,109,105,111,115,98,109,105,101,115,101,100,111,102,97,93,98,103,95,102,89,107,105,96,118,106,107,103,89,100,102,116,110,102,102,102,112,108,107,104,102,113,92,103,115,105,105,113,112,105,99,95,112,110,118,118,104,97,106,103,106,94,100,84,115,93,101,115,121,97,111,107,98,95,92,111,99,101,102,76,108,102,99,110,107,109,109,106,102,116,100,108,109,118,101,105,116,103,104,100,96,106,106,104,108,104,104,104,100,120,106,99,103,110,112,103,113,111,97,100,99,100,98,98,87,109,119,93,95,100,110,104,100,100,104,109,106,105,102,113,107,98,98,111,109,104,96,109,110,104,95,100,107,92,100,91,103,94,92,113,104,100,110,105,103,89,99,107,95,103,103,93,96,105,110,100,111,98,100,114,108,104,95,118,95,114,105,113,99,113,101,95,98,112,96,101,100,105,103,104,107,114,109,114,108,86,99,113,107,95,111,98,95,109,105,98,108,100,109,112,104,99,93,102,88,102,105,104,103,106,83,109,107,125,108,116,108,113,98,100,98,91,112,95,106,105,91,109,103,96,101,95,105,108,97,92,107,97,103,108,96,109,114,107,102,108,124,111,102,105,99,103,110,108,100,104,108,124,92,101,110,94,112,87,87,113,105,108,106,111,101,97,103,104,97,113,110,103,94,106,98,98,99,106,106,99,100,92,107,113,110,111,112,103,86,110,95,113,96,95,109,101,118,110,107,103,115,113,103,99,102,106,94,99,105,108,102,110,108,94,100,113,105,97,114,115,109,109,108,109,112,111,104,108,101,97,98,101,115,118,101,99,89,121,117,100,96,100,106,110,97,111,112,114,108,98,112,122,108,97,109,100,111,103,111,98,98,110,117,97,102,111,105,108,106,111,110,102,103,108,106,93,107,93,118,97,115,114,73,104,112,111,108,103,111,67,110,114,112,92,103,103,95,105,109,116,106,102,100,111,102,103,104,91,99,106,98,105,93,109,104,97,110,104,98,101,102,111,101,109,107,102,94,103,101,103,96,98,105,104,100,95,99,103,99,108,99,113,103,99,120,108,99,90,113,108,107,109,102,106,109,106,103,102,93,103,105,102,94,98,102,97,95,95,106,112,109,97,112,104,102,100,95,103,108,100,102,110,106,114,117,103,105,103,99,103,97,109,107,101,99,100,103,110,102,111,109,108,106,110,107,105,107,103,102,100,110,88,132,117,120,102,107,112,101,102,115,109,100,107,100,111,100,117,104,90,104,108,107,106,95,94,119,129,104,100,101,103,116,106,94,95,98,106,101,120,95,124,112,100,97,106,97,101,92,99,95,104,113,124,110,115,103,112,101,101,107,96,99,93,93,82,100,82,116,105,108,100,105,99,107,96,112,98,106,108,115,108,102,114,100,102,102,104,97,84,96,117,107,95,105,105,113,99,117,109,109,106,121,109,105,106,101,110,99,107,99,103,104,106,104,101,115,105,106,106,110,100,113,106,114,106,101,108,98,108,106,95,108,97,101,99,94,98,97,125,113,117,96,99,111,106,104,100,100,113,100,113,98,117,119,117,103,124,104,102,112,105,93,111,97,95,115,106,87,99,99,100,99,121,104,108,97,101,104,104,104,101,107,102,107,107,99,101,107,111,106,102,94,98,103,103,101,100,103,102,103,110,103,100,124,111,107,113,99,103,71,105,96,110,101,125,125,121,112,100,108,112,102,102,102,96,104,92,107,108,124,99,115,107,128,106,121,112,137,154,162,200,204,174,186,212,185,216,209,205,183,169,149,147,136,139,137,133,120,115,108,106,108,116,101,95,120,103,96,109,106,132,99,109,99,106,114,103,107,86,107,101,103,112,113,101,100,107,97,98,105,111,105,101,99,100,110,93,109,107,100,105,105,99,100,106,100,103,102,110,104,116,102,108,102,107,101,101,92,100,102,117,96,95,110,102,104,104,101,108,110,112,99,100,108,105,103,99,94,104,111,101,94,104,100,102,112,78,100,104,107,109,112,107,92,100,116,109,121,110,94,96,110,97,108,103,100,105,97,90,98,106,98,106,85,106,106,106,99,99,117,105,100,109,105,104,115,100,94,105,97,102,104,109,92,111,106,127,100,101,104,104,102,91,116,103,101,110,105,99,99,109,102,102,107,95,105,114,106,107,111,103,95,106,114,100,111,107,96,106,102,117,102,117,96,110,94,112,124,98,107,116,95,97,98,108,96,104,106,111,106,105,99,108,107,96,101,111,104,107,100,104,102,99,103,102,96,111,99,105,106,107,117,102,103,96,108,99,108,109,101,113,86,113,101,105,96,99,98,114,113,99,92,102,99,105,101,116,105,109,116,108,102,106,104,96,115,97,96,95,93,111,96,97,105,95,112,92,108,100,107,107,104,113,78,113,108,107,103,111,107,104,94,93,113,117,107,106,92,97,103,99,109,100,112,93,98,101,111,120,99,113,105,106,104,109,105,97,100,102,99,110,98,120,115,96,114,107,111,103,100,103,113,105,95,107,96,106,94,105,93,94,115,103,99,91,108,100,102,107,104,91,102,107,107,115,107,102,95,102,103,111,114,104,100,76,113,85,106,101,99,97,99,107,101,101,104,99,94,108,110,110,111,94,106,102,106,100,101,99,104,95,87,110,100,97,109,112,99,94,108,114,96,107,102,98,98,121,103,110,115,92,103,70,102,98,106,88,108,97,102,84,96,96,102,102,101,97,94,94,100,97,106,105,105,113,106,98,97,92,105,102,125,104,98,107,100,123,101,98,99,112,95,106,109,99,97,98,97,88,102,98,116,119,104,134,94,108,97,106,106,109,93,99,109,106,104,113,101,109,91,96,100,101,100,103,107,98,101,102,104,110,88,102,105,106,113,106,107,99,96,108,96,116,112,106,98,94,96,91,98,125,108,100,95,104,117,110,115,113,98,103,108,111,114,105,101,96,92,99,101,103,99,115,114,109,117,108,115,99,109,107,96,107,103,98,108,101,103,109,83,108,113,103,108,97,96,107,106,104,98,109,103,107,101,100,112,105,109,116,109,92,117,110,94,109,100,103,108,98,105,109,106,109,104,96,99,120,97,105,112,99,96,114,99,106,117,104,100,100,95,110,111,102,98,97,108,109,102,98,106,108,98,92,111,110,101,99,101,106,107,102,101,102,113,94,106,105,109,106,109,101,112,98,107,107,109,93,104,108,108,92,95,98,97,105,100,83,98,106,107,107,99,104,100,106,103,103,98,110,103,93,110,96,112,103,102,97,97,102,116,98,102,99,102,107,98,110,101,96,94,103,105,102,103,104,100,91,102,108,92,104,106,107,95,117,101,107,107,109,94,105,108,116,97,113,105,100,98,100,104,96,102,95,112,94,99,115,94,102,110,104,99,100,111,124,95,112,99,102,119,108,94,103,105,102,107,103,121,103,117,101,102,98,100,103,96,111,100,102,105,106,108,93,103,106,105,101,105,99,104,91,103,103,99,111,104,120,142,101,107,102,102,114,91,104,97,97,103,115,102,99,104,100,108,106,99,107,109,108,98,97,95,96,103,96,107,109,96,91,98,113,106,104,106,104,100,109,90,117,103,83,104,102,107,98,111,101,103,111,110,114,99,106,132,94,106,107,100,99,95,98,97,98,99,105,108,95,100,94,107,102,110,102,72,107,95,103,102,110,102,110,108,87,109,101,106,108,104,99,106,110,107,106,107,96,102,102,96,106,125,100,104,95,109,98,107,109,102,102,103,102,92,102,109,99,94,103,95,98,103,98,109,106,94,99,104,109,105,96,94,93,103,99,103,97,99,106,108,105,110,107,103,117,89,105,83,104,99,105,96,98,107,101,92,98,108,104,104,109,118,102,97,105,109,108,96,108,108,105,110,103,98,107,99,110,111,105,96,93,86,88,88,90,92,107,105,102,96,111,110,118,100,101,109,100,105,104,99,97,105,106,108,100,106,106,100,111,103,108,107,94,97,98,116,109,96,103,87,95,99,113,109,105,101,106,99,101,108,104,99,107,111,107,97,103,106,99,99,92,102,105,90,105,117,101,100,97,109,112,103,109,106,102,113,101,115,119,104,100,104,102,109,95,102,96,117,106,97,111,100,99,114,104,104,102,115,98,100,94,73,98,99,109,92,90,86,93,94,113,100,104,109,102,111,110,114,92,109,104,125,113,113,101,115,97,108,106,96,102,106,96,102,107,94,91,115,112,101,100,106,120,116,102,100,111,93,107,113,128,112,97,108,122,104,105,104,115,109,103,99,105,101,101,117,106,121,100,102,100, +561.5459,103,106,87,94,140,97,99,123,100,104,113,121,94,116,118,93,110,112,94,103,105,103,103,105,100,109,106,98,107,105,94,101,104,98,89,104,105,100,106,107,97,105,100,104,109,125,100,111,102,96,95,106,107,104,97,102,99,103,99,101,105,92,110,92,100,120,95,95,114,119,100,99,99,101,115,109,104,102,102,80,103,104,114,102,90,107,87,108,95,107,106,107,94,105,112,107,111,102,109,115,98,101,108,98,107,87,103,96,107,104,97,94,108,103,120,97,107,105,106,111,97,113,121,110,103,109,112,95,100,108,114,108,94,107,101,123,101,95,94,96,102,108,99,118,92,118,114,106,90,98,98,96,104,108,102,106,99,103,103,104,94,98,108,100,107,89,98,98,116,121,100,84,99,106,102,109,113,103,106,126,94,103,100,110,101,98,101,96,100,107,107,108,109,101,107,99,112,112,102,113,108,103,105,105,110,101,106,100,77,106,96,115,91,101,83,92,94,99,100,108,109,111,109,108,110,96,111,116,110,107,109,93,105,104,92,99,101,106,88,100,98,108,107,108,94,99,109,105,96,99,110,104,106,106,95,106,103,112,97,107,102,109,100,106,95,99,90,103,91,103,102,108,110,104,117,121,107,104,102,121,105,108,94,99,108,104,91,104,115,105,92,103,114,98,121,104,99,107,104,107,103,113,109,113,98,106,113,108,104,108,85,100,119,100,88,105,99,104,99,101,102,92,104,103,106,113,114,98,111,123,104,98,98,111,114,108,116,84,95,108,110,108,99,102,110,111,91,106,99,111,110,113,118,94,102,102,103,109,104,110,105,103,101,91,100,102,115,106,100,98,87,108,108,105,95,96,104,100,99,103,109,101,92,104,99,103,100,104,101,99,112,103,99,103,95,95,104,108,97,106,117,100,102,102,93,98,99,100,113,106,102,103,105,98,105,91,93,107,108,117,99,86,97,101,97,99,106,98,102,107,97,95,103,93,111,108,80,106,111,100,110,99,108,110,96,102,102,105,101,113,104,100,96,106,110,105,111,100,97,99,102,103,99,100,99,108,108,79,109,108,92,105,109,107,92,100,110,99,107,96,99,102,112,106,99,101,130,116,104,108,93,94,95,107,104,106,88,100,96,104,111,120,102,91,101,103,102,108,104,104,107,104,112,104,101,96,97,95,96,102,105,113,108,111,96,103,106,98,103,115,99,115,114,113,103,111,105,98,107,104,114,108,95,91,109,93,115,95,101,97,105,104,104,107,101,105,106,100,92,103,103,101,117,103,104,110,111,107,102,109,106,109,95,115,106,117,110,86,98,108,99,95,96,110,110,104,102,100,88,108,104,99,102,112,105,113,100,109,108,114,104,97,103,112,100,108,107,111,112,100,112,103,107,110,101,106,108,99,101,103,104,102,102,108,100,114,102,103,114,108,104,102,100,104,98,100,94,100,110,106,117,99,101,108,105,97,112,99,111,119,104,107,105,114,104,107,116,116,103,106,110,114,104,114,98,104,111,108,108,98,115,99,112,102,102,111,115,117,108,99,118,98,105,122,105,101,105,104,99,114,117,103,100,112,103,98,99,108,95,92,109,101,103,100,105,120,123,116,102,94,102,109,100,118,101,109,107,100,111,95,103,110,101,114,104,113,103,99,109,125,104,116,114,102,99,98,100,95,106,109,107,105,105,108,104,105,107,122,97,110,103,109,99,104,114,105,106,114,101,121,111,98,97,85,102,100,87,86,107,101,104,106,109,93,101,101,88,111,105,99,93,116,108,108,97,107,100,98,108,113,90,99,99,116,105,96,102,106,102,108,95,103,102,102,112,110,116,106,111,104,103,108,116,96,121,102,108,115,104,116,111,110,106,100,116,106,105,99,98,86,106,103,122,107,106,122,104,106,114,104,110,109,87,104,99,96,101,101,109,101,110,108,120,104,106,105,94,104,107,99,98,102,103,90,109,110,116,103,108,109,114,106,109,109,99,109,100,108,80,109,111,98,117,108,110,110,94,114,106,114,82,112,100,101,117,104,106,106,104,109,103,119,106,101,124,113,105,103,112,102,100,104,106,108,105,99,105,100,98,112,90,120,108,103,110,100,110,104,100,112,108,108,111,109,93,103,107,99,78,103,104,103,103,103,108,102,106,99,104,123,93,94,103,110,112,121,93,105,110,109,97,106,106,90,112,93,106,102,95,93,103,107,100,106,107,108,106,106,91,92,102,109,110,92,105,97,110,99,106,103,96,98,105,114,116,90,104,110,96,107,96,111,94,106,103,101,114,105,106,113,98,106,107,109,103,98,92,119,112,117,104,102,105,107,104,104,111,107,100,96,100,121,105,107,122,110,121,148,166,144,172,171,210,194,235,204,207,160,222,176,183,197,179,145,150,138,160,115,130,116,110,107,104,106,109,105,109,99,111,73,115,118,119,110,124,90,106,112,104,101,105,125,103,99,102,110,102,91,108,119,105,112,111,101,109,120,125,98,109,103,102,115,98,109,111,115,101,100,98,116,100,117,109,100,100,104,103,98,94,104,92,106,98,103,114,99,107,105,113,102,102,104,109,87,106,99,94,103,103,108,100,103,88,103,105,107,112,115,95,89,106,119,105,105,96,105,119,106,96,119,101,99,110,99,119,101,99,112,110,109,102,102,108,99,102,87,114,100,107,99,96,115,95,99,98,132,119,102,116,107,108,108,102,107,105,106,112,128,113,99,96,112,99,95,100,91,101,108,99,113,101,100,108,102,113,109,111,113,102,99,107,108,119,109,102,110,111,98,112,98,95,104,102,106,104,109,95,116,108,101,104,93,110,116,111,98,111,105,101,122,97,108,76,109,107,94,90,110,110,95,91,85,110,102,117,105,118,109,105,101,113,106,109,107,109,101,103,108,101,109,110,112,94,98,110,107,106,101,107,108,105,114,103,104,103,111,102,99,106,113,113,104,101,107,94,96,88,113,86,95,102,114,102,106,102,98,107,98,103,95,113,113,97,102,103,99,105,98,101,98,115,102,98,107,112,94,97,98,108,88,97,112,117,101,105,101,99,102,106,100,102,100,105,108,105,108,119,110,107,99,109,113,107,102,103,114,99,108,70,106,108,108,113,108,96,99,121,98,110,81,108,125,100,106,124,88,111,99,102,98,100,91,109,105,99,93,108,101,98,67,105,113,103,102,95,99,100,99,92,107,99,115,106,101,109,107,109,116,101,102,111,106,91,96,104,101,105,100,119,116,108,112,106,110,101,99,109,113,110,104,99,104,111,86,88,83,110,101,121,107,106,98,105,103,110,106,98,108,106,103,117,102,106,94,100,116,108,96,105,93,106,95,116,109,106,117,106,105,102,126,87,104,99,108,101,94,100,98,103,108,102,102,117,105,112,102,109,106,99,109,102,101,94,114,102,100,103,100,116,103,90,94,69,100,111,109,103,105,101,103,105,100,113,100,94,93,109,101,115,116,103,108,119,105,103,107,108,110,115,107,122,117,106,102,92,105,110,109,107,97,91,102,101,106,133,98,110,96,105,107,97,109,72,102,111,97,98,102,97,110,110,96,110,112,102,112,99,103,99,109,108,93,106,114,109,110,106,98,98,100,119,95,117,89,104,112,123,111,109,102,109,108,113,106,86,119,101,98,110,117,88,111,123,112,104,100,103,96,111,94,103,111,100,103,105,98,103,113,101,100,109,87,113,113,112,113,112,103,103,102,113,105,109,96,96,99,112,123,111,94,97,103,101,100,90,108,104,115,122,96,115,110,109,99,104,93,103,95,101,99,97,106,100,106,119,101,96,118,104,99,104,110,117,116,106,104,102,123,109,104,104,111,102,114,101,103,110,99,99,105,101,84,114,105,102,102,95,115,109,103,103,120,104,102,99,82,103,104,107,106,96,100,110,101,89,92,115,100,109,91,100,108,105,99,109,103,105,101,104,104,100,100,115,103,99,99,86,103,108,106,117,67,104,134,113,108,107,109,95,102,109,103,104,101,104,103,102,74,107,110,105,96,106,116,113,83,100,120,108,101,105,100,102,105,96,102,116,105,107,97,99,103,95,101,106,122,109,102,103,109,102,106,109,107,111,125,104,106,99,105,112,102,113,100,110,114,111,91,102,101,105,89,109,100,117,103,113,99,104,103,106,104,109,102,102,113,115,104,101,89,114,113,93,115,100,102,100,108,103,101,116,110,103,114,110,97,120,113,97,109,109,96,99,117,94,104,116,107,109,87,99,110,106,105,106,109,108,105,103,70,99,91,103,99,102,100,108,100,112,109,98,110,102,100,100,97,106,111,104,106,106,101,112,105,101,103,103,106,97,102,103,92,111,94,109,113,80,91,109,110,98,98,98,102,100,102,112,105,109,94,103,105,111,107,108,110,98,106,98,106,101,91,88,116,99,108,109,106,111,104,93,95,99,107,97,98,102,98,109,102,94,105,117,125,112,101,92,90,115,101,99,106,111,94,111,107,98,111,89,97,104,96,99,115,105,105,99,102,109,103,109,97,104,102,100,100,102,109,91,108,110,99,95,113,106,100,104,105,90,104,100,105,99,106,106,102,108,107,104,116,111,101,96,109,108,108,103,104,108,110,107,104,105,119,102,100,115,104,108,101,111,104,105,104,106,95,103,75,101,99,99,105,99,97,108,87,105,100,112,101,114,100,104,99,111,102,117,92,99,95,107,114,105,108,83,103,101,102,102,98,101,116,103,103,115,96,105,89,97,118,110,92,99,102,101,111,97,101,101,75,70,109,111,117,102,111,108,100,110,115,108,104,104,105,117,99,101,103,101,96,113,84,94,96,99,101,96,101,88,98,106,109,96,104,99,101,86,95,95,96,110,95,102,94,103,95,80,104,111,95,103,122,95,81,108,116,108,83,116,105, +561.68677,115,107,107,108,111,121,91,94,94,107,92,108,104,106,101,121,102,115,95,108,104,109,74,106,106,97,93,108,97,112,108,98,95,101,104,107,105,97,101,112,114,98,102,116,100,118,103,104,107,106,91,72,93,106,109,91,101,119,114,105,105,100,91,104,91,109,97,105,106,110,100,123,99,98,94,90,97,100,108,111,105,117,103,102,108,100,104,109,101,106,99,104,106,101,99,98,101,100,84,111,110,98,106,83,101,107,99,91,101,98,107,100,98,100,96,101,110,102,110,87,106,99,105,103,83,103,99,105,110,101,96,108,125,99,97,95,110,101,100,104,112,113,109,111,102,104,106,97,99,98,99,104,96,100,109,106,103,98,97,96,114,116,105,105,100,103,97,106,112,93,100,96,105,100,101,104,96,104,106,101,90,83,103,113,106,104,103,86,113,98,122,105,94,102,91,103,96,102,107,102,104,99,107,101,98,114,107,108,98,115,105,120,112,104,93,105,107,109,95,98,113,105,102,94,88,105,109,94,102,90,107,120,115,97,99,96,108,108,113,96,99,106,117,113,105,108,97,115,106,104,107,102,95,102,102,121,109,98,91,111,94,98,104,100,95,112,107,94,107,97,99,99,94,103,106,111,97,98,107,103,103,113,116,105,99,100,92,113,104,83,110,96,80,101,116,118,80,107,113,109,106,118,105,108,95,121,94,102,104,102,100,95,108,106,119,114,97,103,103,111,102,104,108,96,89,98,106,99,112,112,107,106,106,106,113,120,96,111,105,112,88,109,99,98,107,115,104,109,104,112,100,95,115,98,97,100,105,102,109,107,107,109,108,114,105,101,83,98,97,121,95,105,101,102,100,91,109,111,95,105,107,100,110,109,109,105,107,96,110,99,103,104,97,114,106,103,103,114,96,105,95,109,105,95,99,99,109,97,107,100,107,97,98,102,103,102,113,97,103,102,103,102,93,117,98,96,119,93,96,119,104,108,92,87,99,113,100,107,103,102,100,89,110,105,102,105,102,109,96,88,95,112,100,92,112,92,106,102,108,105,96,97,101,104,111,111,99,102,120,95,107,98,101,95,104,95,107,111,114,122,105,105,114,110,114,111,105,109,105,101,90,106,107,114,93,98,92,117,113,105,100,102,105,103,100,112,113,92,104,107,105,101,123,119,99,99,126,108,96,104,103,111,111,105,95,99,113,99,110,87,99,109,103,106,105,112,108,94,116,103,95,97,108,93,110,93,111,107,103,78,112,102,117,92,91,107,99,111,99,117,99,96,97,101,121,100,100,102,100,114,96,94,109,87,110,100,103,98,103,104,110,114,102,103,96,90,112,140,103,97,111,100,100,102,112,105,116,84,113,101,103,103,106,105,100,106,106,105,105,109,102,105,108,106,111,106,108,106,89,113,113,113,98,95,91,104,110,105,95,118,121,117,103,112,89,98,114,101,113,101,107,106,115,110,92,107,104,87,110,110,108,103,98,110,102,95,104,103,102,107,104,88,105,108,93,91,101,96,102,109,94,97,111,109,107,113,110,115,109,107,104,101,124,91,113,103,90,100,110,98,100,109,104,108,106,101,117,100,107,98,95,94,97,106,114,104,113,102,91,105,105,104,109,111,100,104,113,109,88,102,109,94,108,104,93,93,104,104,106,105,102,105,108,106,69,101,98,97,109,102,107,98,106,104,103,90,92,107,102,115,103,103,113,98,114,112,103,102,109,99,109,104,95,100,103,102,103,101,109,102,105,105,117,121,104,100,113,109,95,99,94,103,98,109,100,110,105,107,96,104,104,100,116,102,93,105,99,98,102,104,105,105,95,89,98,101,107,108,101,100,100,111,97,110,101,106,106,99,118,113,101,117,114,106,107,108,113,100,104,92,114,94,111,112,96,107,95,114,95,98,112,116,86,101,101,93,98,95,91,105,113,104,101,99,97,112,104,100,108,110,103,103,129,116,108,98,94,111,102,99,101,111,93,97,108,100,109,105,100,115,106,107,110,96,100,99,89,104,108,110,103,101,95,96,95,98,105,107,106,104,105,111,115,108,108,94,100,101,101,100,101,110,91,97,121,109,105,105,114,126,110,108,104,103,100,98,88,104,105,107,99,103,109,109,97,114,101,109,108,87,99,96,99,117,101,95,114,123,107,107,95,104,107,116,107,110,104,88,107,102,109,96,103,91,96,108,105,104,112,110,95,117,117,106,96,97,102,111,99,121,117,99,88,107,96,102,97,108,99,115,98,106,115,108,101,102,89,96,98,101,85,98,96,99,108,109,100,99,104,95,104,113,112,112,102,103,99,109,111,108,121,109,104,109,96,105,108,110,116,104,111,107,119,100,127,113,120,134,141,176,172,174,213,218,235,195,215,204,199,178,182,175,171,168,155,161,124,130,130,112,116,101,112,119,117,100,105,111,94,107,111,108,91,116,107,104,126,125,107,92,106,113,98,113,94,95,106,102,110,104,109,125,103,104,108,104,111,105,104,119,99,98,96,108,110,106,99,98,102,98,104,109,109,122,102,134,108,114,106,106,95,117,117,112,103,105,107,118,99,105,102,78,112,109,110,113,104,95,113,92,102,95,99,98,98,101,116,105,122,79,106,104,108,106,115,112,109,96,99,109,97,99,113,96,102,116,105,105,105,115,81,109,113,103,106,115,101,115,110,111,97,99,109,109,110,102,110,109,109,94,104,107,102,112,100,111,92,87,102,109,104,101,103,102,106,93,106,108,101,120,106,104,79,98,102,109,116,112,87,107,111,106,108,96,113,105,112,109,108,97,102,105,105,106,117,101,101,103,109,107,105,96,105,102,108,110,104,100,100,103,112,109,105,103,117,95,98,115,112,104,109,114,108,101,98,115,108,98,102,102,102,100,95,112,102,101,102,100,116,107,108,112,108,120,106,104,107,101,109,105,98,109,93,101,107,101,109,105,108,103,114,101,102,117,106,113,96,113,101,103,112,98,103,98,96,99,109,112,95,107,117,102,104,105,109,109,95,98,114,94,109,91,101,109,89,99,104,110,104,107,101,98,95,122,113,98,111,90,104,98,103,119,92,107,104,114,102,98,108,92,112,111,109,83,107,102,113,107,111,107,103,102,103,110,83,107,100,103,98,101,115,104,104,112,106,115,109,100,94,100,111,99,92,117,109,106,99,100,122,100,114,96,107,101,104,107,113,113,106,108,105,96,106,107,105,106,110,102,112,109,105,96,107,96,106,99,83,100,113,108,107,102,109,94,105,98,115,113,107,92,98,97,109,93,109,103,113,108,107,99,106,109,95,115,109,115,113,104,96,101,109,104,102,100,110,95,97,99,102,87,99,101,115,102,100,99,105,105,106,99,107,106,90,101,125,113,103,108,103,110,102,95,90,107,98,108,105,100,113,98,114,105,101,104,106,104,101,104,112,115,98,94,93,107,100,113,103,116,116,104,106,98,106,113,104,122,106,107,105,99,109,105,108,108,111,103,101,92,113,96,105,107,96,106,99,106,101,103,103,107,116,102,102,110,98,100,124,108,102,108,109,106,107,104,100,95,100,104,102,112,116,98,100,107,97,88,103,105,105,113,111,96,95,109,109,98,106,100,108,117,95,104,106,99,104,100,108,111,126,105,95,97,96,98,98,101,98,102,95,107,97,107,110,106,97,94,114,117,105,98,113,103,99,106,87,107,103,96,101,103,93,98,104,102,98,92,115,104,115,103,113,101,107,103,111,109,102,108,108,98,107,103,97,105,99,107,102,112,115,91,108,98,95,95,112,102,88,96,110,99,93,113,105,107,109,110,103,110,113,105,108,97,109,104,119,99,111,113,108,103,108,108,109,115,91,90,113,79,106,113,98,115,107,102,103,106,109,101,104,102,104,68,102,98,109,121,106,102,98,102,96,122,101,99,90,96,112,101,96,102,117,121,93,107,95,106,100,101,107,111,116,101,110,114,101,124,111,99,113,103,109,96,99,106,112,116,111,116,102,104,106,105,91,108,108,100,99,103,98,109,99,115,100,108,102,111,111,106,108,110,100,99,93,95,106,102,104,98,106,97,101,99,104,98,94,98,79,95,106,104,102,94,95,103,107,113,95,98,100,89,94,99,97,114,104,104,102,91,104,104,99,94,108,114,107,106,105,104,91,117,111,99,95,91,97,106,112,87,102,99,110,102,118,108,107,108,103,112,107,108,104,112,105,117,105,104,102,102,104,95,96,110,100,92,112,103,99,106,100,98,96,111,115,104,102,98,113,105,101,102,99,106,112,96,100,117,101,87,88,108,96,116,111,80,95,104,117,83,120,102,106,101,110,104,106,98,109,100,105,94,99,97,101,97,106,105,111,106,94,98,106,104,102,115,101,109,105,91,99,92,107,100,102,111,105,109,119,113,116,99,100,102,118,110,109,121,104,94,111,108,103,105,109,103,94,101,106,105,108,100,98,107,101,109,110,105,106,109,102,99,90,92,101,100,107,89,108,99,116,105,99,106,101,113,110,89,107,98,102,95,96,99,98,103,111,106,98,101,100,114,95,105,98,105,97,109,112,103,113,99,98,87,100,101,99,108,92,100,103,106,105,108,103,125,106,108,103,104,108,100,104,107,95,106,110,102,105,99,97,102,103,84,93,115,98,108,111,109,102,109,106,108,111,102,95,106,98,96,108,96,83,102,107,120,113,99,99,103,102,97,103,106,113,124,98,108,98,109,101,101,104,96,117,98,101,109,98,111,102,102,106,110,109,109,106,110,108,103,105,99,106,96,118,117,100,121,116,97,101,120,93,120,117,94,86,111,98,111,101,98,98,113,104,119,90,93,109,108,97,119,99,101,87,105,101,106,100,122,106,93,99,105,111,102,98,109,105,124,104,92,107,83,103,92,93,85,93,94,109,84, +561.82764,100,109,109,114,109,103,101,100,99,106,88,101,102,109,121,112,106,102,99,103,100,104,103,105,107,95,97,106,117,104,110,93,102,105,84,86,103,102,102,92,93,105,113,109,100,111,110,108,90,105,100,94,104,101,96,99,112,113,107,95,101,113,101,93,98,114,96,105,105,100,109,105,113,108,92,105,102,98,74,106,101,102,109,98,113,112,107,98,104,103,105,99,98,95,66,104,96,86,116,99,109,93,111,103,105,108,97,106,96,99,103,102,101,111,105,99,111,104,125,115,100,111,95,109,117,111,109,109,107,102,97,111,105,92,115,108,109,112,110,113,101,90,103,111,113,99,102,105,87,62,111,93,95,110,113,83,104,100,104,87,107,106,98,98,111,95,91,102,106,115,107,117,100,118,102,107,97,113,102,109,102,93,109,101,108,102,99,90,106,95,104,110,104,108,112,105,107,99,103,112,101,92,104,105,91,96,107,101,121,107,130,105,115,100,101,123,117,105,95,109,103,97,100,106,91,118,108,105,102,101,96,104,104,106,98,91,101,106,110,115,99,101,100,110,113,103,96,96,102,103,97,109,99,102,103,103,101,109,92,112,66,104,115,106,80,99,103,100,101,112,117,106,106,114,112,104,100,109,97,101,92,106,102,96,102,103,100,98,104,103,106,104,106,138,81,115,108,108,99,100,115,97,107,93,95,130,108,103,109,95,108,110,108,107,102,96,104,106,113,95,102,125,109,120,103,108,106,95,100,105,102,102,110,109,107,101,102,106,104,121,102,106,117,118,97,119,104,95,108,108,118,116,102,110,107,90,100,108,118,97,108,101,101,104,114,103,104,118,102,102,107,110,118,109,92,94,106,114,104,112,133,108,119,119,100,112,90,93,105,92,102,100,105,111,115,101,90,122,108,99,84,98,102,109,113,103,117,102,92,106,101,108,104,122,68,96,112,100,94,100,109,98,103,112,109,108,117,109,98,92,97,108,99,108,105,110,105,78,96,101,110,108,107,117,83,110,102,108,104,109,106,99,99,103,102,104,108,93,96,108,107,116,112,107,119,122,118,109,100,98,98,112,99,112,101,98,111,100,108,103,109,107,111,110,115,99,103,110,99,114,117,110,127,104,94,82,99,110,99,110,108,99,110,89,108,104,95,103,107,98,100,106,98,117,100,102,108,88,93,98,104,108,118,92,110,105,113,117,111,105,97,101,103,108,100,91,100,94,108,113,103,102,99,120,112,108,113,104,103,109,108,115,95,96,109,101,103,106,101,101,109,132,103,101,107,110,103,108,109,105,90,105,101,108,118,108,99,114,103,95,96,95,107,106,90,109,115,111,110,101,103,111,98,99,112,115,103,109,90,106,114,107,95,86,95,103,95,104,102,106,99,103,115,111,103,114,111,100,112,104,106,99,98,102,106,110,118,105,109,107,106,99,110,117,99,97,106,114,106,101,103,107,95,118,104,99,93,116,103,100,111,96,116,106,103,99,101,107,107,113,102,98,94,122,99,113,109,101,123,105,97,104,102,113,111,116,117,111,114,113,118,91,120,105,103,107,105,97,120,109,108,113,99,101,100,117,123,117,109,101,104,103,88,109,105,103,92,117,82,99,99,93,114,105,100,108,113,110,100,99,121,93,105,115,98,116,100,96,100,143,101,101,98,114,101,105,107,96,113,112,113,104,109,115,110,109,99,107,109,99,116,108,124,97,110,100,91,110,96,112,100,122,87,105,115,109,101,107,105,101,102,103,99,104,128,101,106,116,108,105,105,114,105,105,112,108,99,107,95,96,102,103,107,105,108,103,106,102,94,119,108,100,101,114,111,102,110,110,105,113,107,99,94,101,108,114,113,100,99,102,109,103,106,109,106,110,101,107,106,98,94,120,103,108,86,117,102,122,105,99,106,93,108,98,108,94,101,93,108,91,106,102,103,114,101,104,118,107,97,104,103,105,105,99,104,106,99,103,105,95,111,103,104,108,99,104,118,102,107,107,103,103,105,103,95,103,103,102,94,98,101,95,106,99,95,105,103,103,107,105,93,101,113,105,126,100,97,92,106,98,102,115,109,110,87,100,96,102,106,103,94,99,101,100,113,101,90,97,102,107,106,101,105,88,95,103,101,116,114,113,90,96,96,108,106,115,102,112,106,108,100,118,97,106,129,109,96,97,101,105,115,102,109,105,117,108,114,102,108,105,101,113,111,102,107,110,106,99,100,102,125,99,106,106,109,100,89,107,97,105,97,102,108,94,82,113,102,110,99,112,106,115,102,105,119,116,95,115,106,107,90,103,88,113,104,103,94,97,95,100,114,91,116,96,109,103,116,104,107,111,114,100,111,107,103,127,128,122,132,145,154,180,216,228,219,199,177,191,149,188,201,196,183,148,166,134,125,136,135,111,98,116,119,105,95,109,108,100,107,116,101,114,109,99,114,102,114,102,101,116,109,102,105,112,117,106,105,103,95,113,115,107,101,89,92,112,90,101,115,106,95,89,110,112,109,67,96,113,98,100,91,117,101,109,112,99,97,99,113,109,117,106,106,120,106,101,100,108,92,102,106,122,100,100,101,108,90,112,97,95,109,111,96,101,108,107,107,112,104,100,103,97,105,111,106,104,102,98,97,103,112,107,100,108,101,112,101,99,111,98,102,102,106,108,98,99,118,95,104,101,105,106,100,95,103,113,118,96,99,104,96,115,103,97,88,88,102,100,136,92,90,102,111,104,99,103,107,113,104,93,100,121,114,117,105,102,98,101,95,107,96,103,97,108,95,92,105,105,103,105,103,106,102,98,83,112,111,119,111,108,106,84,107,96,98,106,112,116,105,108,96,110,108,105,93,104,98,106,94,97,107,102,98,105,101,105,97,96,96,101,109,106,108,109,92,92,112,95,96,102,98,100,102,94,103,97,92,104,105,107,120,107,108,94,100,120,84,100,95,109,104,110,108,112,98,98,100,98,113,96,94,110,95,98,102,103,119,110,97,100,113,105,100,99,104,119,97,110,112,109,102,99,102,104,111,105,96,99,110,93,107,103,112,100,108,105,107,105,110,99,102,94,92,106,104,99,90,113,105,104,112,143,100,99,97,99,108,102,94,96,98,106,112,98,97,99,89,97,94,106,110,118,105,91,104,108,108,92,113,101,102,103,116,105,100,106,102,101,114,101,116,97,101,103,104,97,110,96,94,90,100,98,110,112,113,109,104,107,88,102,102,106,99,91,111,103,112,91,106,103,106,110,106,110,110,100,106,102,92,102,103,106,97,104,105,102,104,108,106,104,94,94,92,112,103,113,114,102,95,111,105,102,103,120,98,96,102,102,96,99,107,100,98,104,98,109,107,104,106,104,100,107,108,103,116,101,95,89,100,103,103,102,102,101,103,106,125,94,103,104,86,99,105,108,95,103,101,107,95,119,102,113,117,103,109,105,101,112,93,104,100,117,104,102,106,92,120,105,102,93,108,110,102,104,92,108,102,108,98,101,103,101,103,98,110,101,104,101,100,103,100,129,99,110,108,113,106,109,101,113,103,105,102,109,98,100,98,102,95,106,80,101,76,110,106,106,92,104,104,105,102,100,95,112,105,102,106,117,93,112,94,99,110,102,103,91,106,100,101,118,108,102,101,103,106,105,108,94,114,112,112,93,102,103,107,121,107,109,116,112,115,112,102,90,100,98,97,98,111,95,104,95,101,102,119,102,106,97,104,95,101,108,109,102,109,107,111,109,120,97,107,96,102,75,104,106,105,105,104,94,101,103,109,92,106,114,104,120,96,97,107,111,98,107,101,96,102,120,114,104,113,99,109,107,92,125,99,103,100,110,94,113,105,96,111,127,104,95,108,105,108,108,104,97,99,102,100,109,101,97,104,100,99,101,101,111,105,111,100,102,109,98,100,85,100,104,109,110,105,91,94,103,108,112,101,113,101,96,98,102,105,98,117,113,107,105,113,119,96,100,97,108,94,96,117,98,104,104,99,109,102,104,101,103,122,97,106,103,109,96,101,105,106,100,102,99,111,96,99,101,101,79,97,108,109,103,104,107,102,104,107,107,104,104,94,104,108,106,96,97,110,98,97,116,108,111,102,110,111,112,111,105,104,113,110,104,105,98,109,108,105,96,100,98,101,109,98,99,111,103,106,106,104,106,87,108,120,99,115,99,129,124,99,93,110,106,90,99,92,100,104,110,120,108,96,97,96,98,111,108,105,109,103,101,95,99,104,90,100,98,108,98,107,100,107,103,98,93,109,100,105,99,105,112,106,98,106,99,99,104,113,87,113,106,116,111,94,98,101,113,118,104,103,107,109,107,97,105,99,97,105,113,106,97,81,102,105,110,113,106,114,71,102,99,98,111,95,101,109,113,99,108,96,100,98,104,101,110,95,109,101,99,117,108,115,110,97,98,96,107,104,96,99,102,103,110,138,99,108,92,109,98,105,98,107,93,117,101,125,99,88,102,117,102,109,105,110,97,94,103,99,98,116,102,112,96,80,115,109,96,104,99,110,106,91,102,102,113,106,90,110,112,74,85,106,102,99,104,110,103,105,108,111,98,99,118,106,105,99,100,97,108,102,108,119,107,100,95,111,119,104,106,99,94,102,103,114,88,106,100,105,106,116,106,106,108,101,98,127,115,111,104,111,104,123,99,123,106,103,93,95,107,87,109,109,87,109,106,112,102,109,120,101,115,103,101,119,107,94,103,88,103,97,104,110,87,109,106,96,103,117,117,110,105,115,94,104,104,105,99,99,108,113,94,114,108,103,106,111,97,98,109,99,105,102,105,89,103,110,101,116,92,114,99,107,116,112,104,108,102,101,101,120,102,92,100,92,104,108,110,104,73,91,102,104,116,96,103,105,101,115,99,111,83,117,103,107,98,102,92, +561.96857,110,93,104,108,72,117,103,97,101,110,102,104,98,105,109,107,105,109,105,104,100,106,93,94,108,104,103,118,108,115,116,101,101,100,105,122,97,105,108,104,115,97,105,90,111,106,104,97,106,109,95,102,104,92,100,100,105,97,114,108,103,102,95,97,96,99,112,89,111,116,102,95,104,114,105,112,105,108,116,103,112,105,103,108,103,99,110,117,107,111,105,114,111,94,94,112,109,105,81,101,115,116,92,98,102,102,110,98,99,95,100,106,116,102,97,110,113,106,111,90,100,93,97,111,108,97,118,100,109,102,106,103,96,102,95,104,117,105,109,84,98,113,101,90,105,90,95,101,104,98,103,113,89,96,107,111,100,115,102,99,98,99,105,114,101,115,104,104,107,113,105,107,102,101,102,120,106,94,103,108,134,104,94,98,101,94,100,114,118,109,101,108,103,108,91,102,104,110,94,112,95,114,102,102,103,106,107,105,116,107,100,107,102,108,115,106,87,104,102,91,105,111,99,108,114,104,110,108,104,110,120,102,113,90,109,102,112,106,102,109,105,101,103,99,95,107,110,110,98,117,92,101,97,114,92,106,109,106,104,105,102,116,106,102,105,108,103,107,107,107,105,110,100,104,107,108,106,115,94,86,108,109,83,104,98,114,97,102,119,116,100,109,105,103,102,99,110,119,107,104,107,98,103,102,108,115,113,102,108,125,99,117,101,112,102,108,103,99,108,121,97,106,106,100,105,94,95,96,115,127,104,98,107,110,101,108,100,95,99,104,99,118,103,105,101,98,107,113,110,117,113,100,99,100,115,105,119,110,110,95,96,104,92,104,101,96,111,114,97,106,106,116,116,120,99,91,115,105,99,98,105,114,109,109,100,100,91,103,112,105,104,97,92,101,103,101,103,100,102,106,103,101,100,89,90,95,114,113,105,104,97,105,109,105,119,103,105,94,102,102,100,108,107,109,108,95,106,98,98,121,117,112,102,102,116,110,104,106,113,117,112,116,107,102,95,98,100,103,105,102,95,104,110,104,102,97,114,126,110,104,107,113,100,107,107,101,104,107,112,96,103,108,101,100,101,77,105,105,107,105,91,112,135,107,91,116,105,103,114,105,108,103,94,111,105,102,103,107,105,109,111,100,108,105,86,110,105,103,106,91,119,103,101,103,96,109,104,105,99,103,103,104,109,91,106,113,110,105,106,105,100,100,104,104,95,111,92,103,111,94,101,108,105,94,110,108,101,95,107,99,118,113,102,106,95,110,111,101,109,112,103,107,102,99,90,104,110,107,106,109,100,90,104,110,103,113,102,94,103,102,89,97,111,104,100,96,102,102,96,98,98,108,106,107,107,112,100,107,108,104,103,101,100,110,105,110,117,100,99,109,97,101,123,114,111,109,103,105,113,106,99,120,109,108,106,101,119,109,115,104,101,100,99,99,100,100,109,105,114,105,114,88,100,102,103,104,95,106,96,109,97,107,104,110,126,105,109,86,104,105,108,108,101,99,109,103,104,90,109,107,106,99,102,110,92,113,100,105,107,103,101,79,107,108,107,108,103,109,104,110,97,107,113,107,108,107,98,104,103,103,112,90,95,119,91,96,95,96,102,103,110,106,111,99,102,111,103,97,122,116,97,99,112,107,108,109,120,113,109,109,120,110,107,97,101,103,107,106,111,108,106,106,107,104,115,99,102,107,97,103,105,106,108,106,97,105,102,95,99,107,101,108,103,103,76,121,100,101,109,100,105,98,104,117,105,114,100,102,109,100,119,105,107,106,88,126,106,110,98,120,115,111,108,137,102,121,94,99,105,105,93,98,97,111,103,102,107,101,104,126,113,99,100,106,108,70,98,115,102,109,99,108,100,75,94,117,118,115,102,105,109,107,112,103,92,141,121,105,117,100,96,105,112,92,84,106,117,102,112,95,100,110,111,97,106,120,103,83,106,116,116,112,77,95,96,96,106,105,113,101,101,125,102,103,107,100,110,105,121,101,119,106,113,108,102,109,99,104,99,99,97,111,106,108,87,99,117,126,98,125,97,103,110,101,99,104,103,102,118,95,107,117,103,93,116,100,99,100,116,95,127,113,99,102,99,101,112,96,96,109,104,114,108,109,110,109,105,118,105,97,107,104,111,109,111,100,106,111,99,115,102,103,104,112,99,91,110,98,113,97,115,100,114,102,101,95,104,98,107,119,108,108,110,108,103,108,103,99,117,104,111,114,113,110,91,89,104,107,108,100,99,96,115,99,102,94,100,107,95,102,116,101,105,105,105,121,103,115,109,107,109,99,102,99,116,120,101,102,106,104,129,132,101,112,111,106,106,105,113,94,115,102,103,104,119,95,125,141,135,162,173,199,183,239,245,247,231,214,171,172,191,161,187,151,130,147,136,140,128,127,109,117,103,112,115,118,106,118,120,111,104,116,105,109,112,129,107,108,110,87,98,114,95,123,106,103,91,111,126,138,88,116,110,84,110,110,101,91,118,92,105,102,99,106,117,113,96,97,108,115,94,116,109,107,111,100,110,96,99,107,106,108,113,106,108,106,104,105,118,107,115,106,89,91,97,100,106,108,104,109,107,88,97,103,108,109,104,107,129,96,123,107,120,109,115,100,113,107,104,107,104,106,105,105,99,119,109,102,109,123,100,112,110,106,112,96,99,111,108,107,110,116,99,99,113,106,99,113,107,113,99,103,100,100,99,116,112,98,105,105,95,119,106,101,106,104,108,119,110,106,105,104,105,119,109,111,111,108,117,108,113,110,100,104,115,119,96,117,102,110,95,98,96,113,106,101,102,115,111,112,105,96,108,105,104,110,103,99,96,109,90,109,98,107,111,117,95,75,100,113,90,106,106,117,108,101,106,103,101,103,107,113,111,112,107,110,100,97,101,100,103,117,107,112,99,113,91,98,105,121,94,114,97,92,98,106,105,100,113,105,108,105,108,107,102,101,98,93,101,98,114,112,114,98,98,117,111,111,109,101,112,100,98,94,113,104,105,108,109,99,103,98,103,110,107,110,106,125,113,102,101,104,131,104,105,113,106,107,106,112,102,105,111,101,103,106,107,104,109,84,113,114,112,99,109,113,105,103,99,122,101,106,112,113,99,98,108,101,88,104,108,101,115,100,115,109,99,104,100,104,114,99,103,106,109,111,109,110,89,109,105,109,101,105,110,104,110,105,104,102,111,113,92,110,107,98,113,82,97,110,102,104,94,101,94,109,98,104,110,107,113,110,92,101,106,100,100,111,98,97,100,106,107,101,101,121,97,109,110,95,108,104,113,120,103,108,99,111,102,103,116,97,106,110,111,107,102,100,93,105,95,114,100,103,107,109,113,103,112,110,99,98,99,106,109,105,105,111,98,95,101,95,94,108,106,105,107,106,105,82,108,107,95,104,109,113,113,98,104,116,98,104,92,101,100,98,82,91,115,104,100,116,114,103,103,96,107,98,105,116,103,109,105,111,105,104,119,106,109,104,124,116,113,106,112,110,109,101,108,102,103,108,105,112,101,92,106,92,108,108,101,113,107,107,113,101,104,116,103,115,121,115,106,105,106,103,91,75,107,98,106,104,94,106,114,109,117,103,120,106,118,116,105,104,109,97,100,107,109,95,95,109,103,103,100,103,96,104,103,94,103,95,102,115,77,100,103,105,115,100,101,112,102,95,107,103,107,112,103,105,98,109,97,113,112,109,100,122,100,109,109,104,112,105,105,98,113,95,105,104,99,95,104,104,97,109,75,112,117,112,106,105,93,104,85,109,110,105,113,113,98,109,103,109,105,104,109,104,124,116,106,115,108,102,101,108,92,97,107,107,104,109,98,116,113,109,102,106,121,103,111,101,109,105,103,102,111,93,96,98,113,101,98,95,98,99,106,139,105,98,102,120,96,91,114,101,110,100,92,100,108,107,134,109,102,105,106,110,113,115,102,104,101,103,107,108,115,97,96,102,103,104,100,116,103,95,100,96,100,118,107,91,90,116,111,93,108,106,95,103,109,104,116,106,100,95,106,113,97,106,101,104,96,103,101,121,117,106,119,102,88,108,115,103,115,111,100,91,115,104,101,106,113,96,105,103,98,113,95,113,101,93,104,103,124,121,99,100,98,102,108,94,106,115,106,105,113,99,103,106,112,107,99,100,107,99,112,98,104,89,113,112,107,107,101,105,94,104,112,109,124,91,85,105,108,100,106,109,106,101,109,107,106,108,101,112,98,108,125,103,102,116,105,108,93,105,107,104,93,91,106,87,100,107,105,113,93,96,90,107,113,110,104,100,79,109,111,103,98,99,107,114,121,112,110,98,101,106,111,95,109,111,108,109,96,119,109,98,104,110,100,121,104,120,105,125,104,109,94,99,106,104,104,113,109,106,97,107,105,98,117,92,119,114,98,103,109,90,96,97,112,101,103,102,107,98,106,106,111,95,99,112,91,93,97,96,107,98,105,113,103,96,102,99,109,92,111,105,95,92,107,111,112,112,97,71,113,100,112,94,104,107,102,98,113,117,100,85,97,102,108,110,99,98,112,95,100,108,96,110,107,102,110,94,104,88,115,95,114,104,106,93,104,111,110,97,100,94,105,102,101,127,97,115,104,125,106,104,99,110,110,96,103,96,117,108,97,102,120,102,95,109,89,105,104,103,106,104,105,86,117,98,106,98,110,98,119,98,89,103,106,124,80,105,90,104,111,103,101,108,113,97,113,99,96,121,98,109,113,115,112,107,95,113,97,100,94,101,106,92,102,107,107,120,101,113,114,102,101,119,97,105,113,105,99,97,110,110,87,97,110,66,97,103,96,106,116,105,101,114,101,106,121,95,85,103,98,106,101,97,106,101,126,91,103,111,101,100,116,99,80,116,98,124,107,106,111,95,108,109, +562.10944,136,103,99,113,97,112,99,94,101,108,110,102,93,104,91,107,94,109,110,93,111,95,105,116,96,100,107,98,106,96,103,96,98,109,115,95,90,99,110,98,109,97,105,104,95,114,111,103,100,116,99,106,98,97,104,100,97,83,110,94,91,99,94,96,125,105,92,106,105,106,100,113,104,101,104,120,110,102,116,101,103,106,105,100,101,107,106,116,96,107,99,95,102,107,103,109,93,96,97,107,110,107,100,108,101,97,112,105,103,99,105,99,109,103,111,111,91,108,108,108,103,107,103,103,107,113,118,100,105,96,97,113,105,112,95,95,106,102,96,109,104,107,102,118,106,91,102,96,95,86,108,78,104,102,106,114,115,110,101,99,112,97,91,108,102,99,91,108,98,94,99,104,102,108,106,109,126,102,95,97,86,112,101,103,99,99,97,88,108,102,103,105,93,95,98,104,114,105,105,118,103,110,95,102,106,112,97,94,111,109,100,106,94,87,107,106,103,99,98,103,100,107,108,99,107,107,106,116,103,99,96,121,100,98,73,111,107,109,102,100,98,94,111,118,98,110,99,112,100,98,108,104,108,94,97,97,102,100,104,102,106,106,104,88,109,106,103,105,105,96,103,106,110,104,102,105,94,112,103,111,106,110,117,98,107,105,105,101,108,101,107,103,102,110,105,121,110,108,111,99,99,108,109,98,108,108,117,100,101,108,117,120,95,110,112,96,110,98,107,108,108,79,111,104,105,105,135,95,109,121,94,104,73,103,104,105,118,109,101,104,95,106,112,102,88,119,106,109,136,110,110,110,100,108,100,121,106,116,85,106,102,94,104,109,110,95,114,75,101,113,101,104,111,99,108,88,113,113,103,112,110,97,95,102,108,99,94,98,103,90,111,99,104,97,115,99,104,98,102,108,89,122,98,100,95,98,101,106,99,109,94,119,108,112,95,108,98,109,99,106,102,109,108,100,102,100,100,103,98,95,99,109,102,87,106,96,101,104,99,95,125,106,103,112,114,113,104,95,94,110,100,103,121,109,91,101,107,108,110,99,107,104,111,111,113,96,102,106,104,101,101,120,110,103,95,103,100,105,106,101,100,98,108,102,110,126,115,105,107,108,103,108,112,106,98,108,102,109,102,101,104,102,98,108,105,114,85,108,97,101,113,102,107,114,104,102,108,108,105,99,97,97,106,105,103,117,116,120,99,99,104,100,94,98,98,83,103,86,105,97,100,100,96,104,108,109,101,96,103,107,101,99,108,98,105,106,110,105,105,116,101,105,108,103,106,123,103,109,101,108,93,101,110,105,106,103,96,98,112,113,97,105,107,102,112,101,99,102,102,112,107,104,99,96,117,108,115,96,125,98,99,108,112,111,106,101,110,99,106,115,100,98,103,103,108,96,110,105,98,109,110,99,113,104,108,111,95,104,113,88,116,103,109,106,111,113,94,97,113,110,103,96,110,100,81,100,99,102,130,107,121,109,103,107,105,118,111,119,124,99,112,112,110,101,89,105,111,104,112,104,103,80,110,103,95,113,104,104,113,108,98,102,105,81,110,104,112,105,104,101,111,91,101,112,112,113,104,108,118,101,100,97,106,104,106,112,101,108,96,98,113,101,100,106,116,102,105,114,94,114,91,109,99,89,103,114,109,98,117,122,126,108,99,112,108,101,102,106,114,107,106,113,111,96,113,116,100,103,106,109,101,103,94,104,103,114,112,105,111,108,102,107,102,103,92,118,103,112,106,104,102,93,101,108,118,118,101,110,106,98,109,102,111,120,107,99,106,124,89,112,110,100,110,111,110,115,101,105,99,117,105,105,103,113,104,101,101,111,75,104,112,103,107,107,112,98,107,103,110,101,122,102,104,94,116,103,95,110,103,97,105,93,114,105,101,94,111,113,100,95,98,112,117,109,107,95,101,114,114,113,107,110,94,104,99,115,118,124,104,112,110,97,103,107,111,103,114,102,103,116,99,105,100,107,101,119,95,113,100,102,108,106,106,120,96,105,116,104,103,107,100,106,124,129,103,111,104,97,117,113,101,73,96,104,109,108,103,89,106,111,117,104,108,107,101,96,102,113,102,110,105,101,112,110,110,104,106,93,102,110,102,116,99,110,104,103,99,125,108,122,120,117,84,100,102,99,106,117,96,101,91,100,103,97,105,110,109,114,113,112,105,103,127,103,100,103,87,110,107,113,106,108,106,91,102,107,99,92,105,107,102,99,104,106,110,90,106,94,116,103,134,99,111,104,90,108,100,106,100,98,105,114,100,106,115,103,105,107,100,102,96,106,92,113,109,106,97,113,102,107,116,118,113,79,120,107,95,98,121,105,133,114,118,100,115,116,105,127,140,147,143,184,196,224,217,182,254,220,199,174,177,185,161,178,160,163,128,140,125,135,105,91,115,109,113,102,92,125,114,106,106,121,114,106,111,102,116,119,107,107,90,100,99,103,119,107,109,106,107,105,126,103,110,89,100,111,108,99,99,109,109,101,104,120,98,104,108,101,109,106,100,105,104,99,117,99,96,110,97,114,112,95,106,118,103,101,105,105,106,96,111,115,108,101,95,99,107,106,108,97,102,103,108,104,100,94,106,99,109,95,100,108,107,106,102,100,107,110,118,106,116,97,100,84,109,104,101,105,99,95,81,103,113,102,101,94,103,100,101,101,105,114,99,103,98,116,102,106,107,102,104,104,112,106,108,99,104,94,105,102,106,117,106,110,110,103,101,107,121,116,106,122,89,113,106,104,103,103,95,94,93,110,105,99,105,99,108,108,126,111,117,110,102,109,110,112,116,121,101,100,117,103,118,100,102,103,105,109,98,101,93,103,102,109,103,110,96,113,104,111,102,87,100,106,103,101,106,96,99,99,115,99,101,116,99,99,98,112,102,122,100,108,117,112,100,92,103,84,112,79,109,108,99,101,110,109,116,99,102,102,105,105,118,114,92,89,98,87,104,108,106,112,88,98,94,105,105,102,87,98,110,95,97,104,104,89,106,101,107,111,93,97,104,111,111,111,104,100,101,113,101,107,112,94,109,108,104,100,105,103,100,106,99,108,93,100,99,102,98,104,101,99,106,114,119,89,108,122,116,98,104,105,97,117,106,110,110,101,89,103,110,98,101,87,116,106,106,93,93,103,105,101,108,95,108,99,108,113,107,98,112,108,101,108,104,107,115,113,119,112,100,130,110,107,107,102,94,102,91,116,106,94,107,100,98,107,72,88,112,105,111,105,114,114,100,103,115,103,100,89,109,95,100,98,109,97,110,100,108,105,116,105,107,115,100,95,75,111,100,98,106,107,103,108,104,81,98,98,96,87,102,112,128,107,104,87,103,132,107,104,92,102,111,106,109,104,102,103,104,103,99,104,106,109,108,100,107,106,91,108,102,98,115,121,105,101,101,125,123,107,99,105,107,104,102,97,120,97,95,105,101,101,98,101,105,109,92,98,107,116,91,106,99,103,99,108,95,102,119,109,104,106,92,99,107,102,106,102,103,102,94,91,103,95,101,122,113,105,99,112,96,93,113,101,112,99,132,108,100,105,105,101,107,96,100,103,101,112,105,108,83,123,97,112,108,114,94,101,100,117,103,102,108,105,94,87,110,100,107,105,101,91,109,107,103,107,103,104,107,119,98,101,105,106,100,98,99,106,103,108,106,106,96,100,112,107,99,102,113,96,110,106,117,113,106,108,111,104,100,101,106,105,105,95,101,98,100,95,103,95,105,106,103,90,101,105,104,107,101,111,104,116,99,103,99,96,87,87,97,110,113,106,121,112,107,104,98,105,105,88,102,95,107,107,111,112,101,99,108,108,98,91,100,106,98,108,98,99,103,113,103,118,108,106,94,95,98,94,95,98,95,105,100,104,108,104,103,108,93,101,99,107,111,98,116,100,93,106,102,100,105,105,111,112,73,96,109,96,107,105,103,103,106,117,88,99,109,103,99,109,93,76,108,105,100,105,108,101,96,113,100,112,104,100,104,98,103,104,96,111,106,99,95,89,95,117,109,98,103,121,104,74,98,107,97,95,96,102,99,113,107,99,106,109,105,113,73,101,117,107,110,98,115,106,106,100,106,109,113,99,106,113,113,111,108,104,121,113,106,109,104,93,99,115,103,108,95,109,107,98,114,118,100,101,103,105,116,99,96,95,99,110,132,99,92,102,110,116,96,99,106,113,106,105,109,131,100,108,103,96,120,96,102,103,98,94,118,97,102,106,101,102,99,95,99,108,94,105,105,131,106,102,111,108,94,99,102,89,96,104,101,110,104,99,104,102,102,107,100,111,100,115,103,92,113,111,107,97,106,103,100,97,103,95,110,115,108,106,115,110,103,98,112,101,112,94,109,90,94,111,103,111,97,109,96,98,107,109,104,110,104,100,108,106,96,103,90,98,105,101,108,94,103,86,87,108,107,113,105,101,105,97,110,96,107,111,100,99,103,104,113,91,94,107,102,109,99,106,100,105,104,110,91,120,105,124,106,109,99,108,99,108,104,105,101,108,95,108,99,102,98,108,101,98,111,104,101,92,105,103,99,98,111,104,99,108,107,96,99,92,102,89,112,107,108,110,103,102,125,107,90,110,102,107,106,101,100,116,98,113,102,106,100,101,105,102,111,119,99,94,107,100,103,102,107,100,112,81,110,105,102,101,96,105,104,100,104,113,95,106,93,106,97,111,99,100,103,108,99,99,89,106,113,90,93,107,105,102,106,104,111,99,103,107,103,110,102,108,104,107,115,92,104,103,106,115,102,96,113,100,99,99,104,86,104,112,101,100,99,106,101,91,100,107,120,92,105,102,89,104,98,107,91,96,92,106,93,99,109,87,106,116,92,99,94,109,105,105,101,101,100,90,94,104,113,95,88,98,101,114, +562.25031,83,108,118,114,94,104,117,109,112,102,102,101,101,112,101,96,109,107,115,98,114,95,95,102,103,94,108,102,98,104,114,112,117,102,107,105,105,101,105,107,104,104,103,98,101,104,105,92,94,103,109,95,109,97,97,107,112,99,106,95,108,99,100,108,107,97,95,111,103,95,106,107,119,109,104,111,101,97,93,100,102,116,96,105,135,96,110,104,103,96,108,97,96,101,113,95,97,100,108,100,92,109,95,95,99,105,91,99,101,117,113,105,118,103,116,99,97,98,108,106,114,92,92,104,102,107,110,91,104,110,105,100,102,110,108,86,92,115,96,114,106,104,105,102,97,95,111,100,102,106,104,108,121,97,89,116,102,104,109,101,102,104,104,106,117,100,99,102,103,97,103,99,113,108,102,106,109,94,104,106,105,97,115,97,115,101,102,102,106,113,113,94,104,114,91,98,105,103,103,105,112,102,101,106,96,94,112,97,106,104,99,103,98,110,109,114,104,106,94,112,116,109,112,102,103,102,98,105,107,103,105,99,104,105,116,104,111,101,106,105,88,105,113,99,104,100,109,102,98,101,109,108,81,94,106,110,104,114,101,108,95,121,102,114,92,99,105,101,100,108,104,102,99,99,107,110,107,121,109,99,99,105,97,109,103,114,107,95,105,99,102,104,100,103,119,100,102,108,104,90,100,102,113,90,99,100,104,98,98,121,103,108,104,117,106,103,99,107,98,99,109,95,97,117,104,99,96,98,97,108,107,98,120,103,93,110,103,112,104,109,116,98,96,88,104,109,96,108,114,101,115,95,108,113,76,99,101,114,109,100,115,97,103,102,96,94,113,107,103,102,117,99,95,118,99,103,104,104,105,98,108,110,95,104,102,106,99,100,90,104,106,88,95,103,116,87,103,105,94,102,121,101,93,108,87,95,103,108,112,102,97,115,105,101,100,95,105,107,107,106,109,110,99,104,101,103,106,95,106,115,99,110,94,117,109,103,110,102,91,104,103,105,105,107,80,111,95,100,108,110,108,94,111,106,99,97,99,106,94,102,104,105,110,113,108,92,113,96,113,102,105,111,100,106,92,107,93,108,112,112,116,105,100,89,120,111,107,108,95,113,110,108,102,108,104,106,107,117,104,92,89,105,89,108,109,111,100,96,103,101,104,99,119,104,105,101,95,104,105,108,121,106,101,108,103,105,110,103,97,103,102,106,101,101,111,104,106,108,105,99,105,99,108,97,110,94,112,104,108,120,115,107,106,106,104,98,99,99,105,103,100,92,82,109,102,110,105,104,99,108,90,114,97,109,119,103,94,94,104,98,103,95,97,93,105,98,115,106,101,86,103,105,87,92,107,113,99,96,105,105,109,104,113,99,104,103,104,102,107,99,101,105,108,114,103,97,83,95,97,110,103,105,95,95,98,95,109,109,93,70,104,102,103,85,82,105,103,91,102,97,105,109,95,102,119,105,104,125,95,101,76,111,109,101,109,141,108,118,109,100,109,95,108,109,89,84,110,110,109,95,107,97,111,97,98,116,105,96,104,104,105,107,105,95,88,109,105,103,101,103,95,105,120,107,109,105,98,101,103,101,125,103,111,109,103,103,100,101,105,107,105,103,112,112,106,107,101,104,82,79,99,101,110,85,106,104,106,113,97,72,99,118,108,99,97,105,115,82,116,103,110,101,89,103,109,100,106,101,100,111,112,117,109,98,99,103,94,112,112,84,104,106,120,101,107,117,102,112,104,106,105,103,94,108,115,110,110,102,101,101,104,100,103,90,93,103,86,114,97,103,100,99,111,108,102,103,103,100,88,109,99,109,100,107,128,99,116,119,118,106,103,112,98,97,85,101,103,108,110,92,103,105,99,95,106,115,111,108,115,91,103,101,101,109,110,117,120,108,100,98,113,112,106,98,99,99,113,94,107,109,98,118,104,109,97,103,116,104,103,101,90,105,107,100,98,109,91,108,104,107,103,109,106,107,104,114,113,104,101,101,82,98,92,106,106,109,104,99,105,101,112,112,109,118,92,96,101,109,113,89,108,115,118,105,115,103,97,107,95,96,100,100,107,104,118,90,108,110,101,107,105,109,103,109,115,104,91,106,99,111,105,114,94,109,98,100,103,113,104,111,103,95,108,113,103,90,86,120,103,112,109,112,102,70,100,103,115,106,92,105,101,114,115,107,104,97,113,98,103,112,85,103,106,98,108,102,108,104,100,98,104,101,109,110,107,100,114,100,105,98,101,107,108,108,114,102,101,101,96,102,106,105,100,105,113,109,113,104,105,108,97,103,106,112,106,105,103,109,102,98,101,121,112,98,125,115,103,105,116,115,113,102,101,105,120,104,120,123,116,145,202,196,208,216,248,231,221,190,207,189,197,191,179,172,178,148,129,129,111,113,112,115,109,114,108,105,119,107,111,92,94,98,100,110,94,119,109,107,109,93,110,100,95,106,80,112,115,108,120,106,116,106,110,109,107,99,103,99,100,117,96,106,107,99,114,102,113,99,95,105,94,104,115,101,112,109,111,117,80,105,102,107,110,122,98,91,109,116,106,100,102,107,115,106,100,87,99,100,118,108,113,101,97,98,102,107,95,104,121,117,117,78,114,104,120,103,113,90,101,105,107,99,112,105,108,75,104,102,112,106,105,107,103,102,98,114,101,116,115,100,114,99,109,107,98,115,122,100,97,98,112,109,105,95,100,102,107,106,74,104,107,102,98,109,102,114,110,113,121,102,115,121,112,124,111,116,108,117,108,114,109,117,110,110,101,113,86,125,109,88,123,110,98,113,118,99,110,108,104,115,105,109,102,104,105,107,104,104,109,115,117,105,106,112,106,97,108,83,136,109,117,95,102,109,113,96,102,116,92,108,104,108,97,110,101,118,106,112,101,110,97,120,112,103,84,105,104,113,112,114,109,117,103,98,106,106,119,106,75,108,95,101,91,105,107,107,106,115,111,110,114,103,100,102,106,105,97,101,108,105,115,117,103,91,125,102,108,102,109,100,105,87,104,117,104,100,98,113,109,105,96,118,111,87,112,104,110,105,109,106,99,81,112,104,97,101,107,122,101,109,116,100,107,107,109,104,119,97,124,108,100,106,118,101,104,118,111,119,101,95,110,100,102,106,108,103,100,95,101,102,107,100,105,110,102,97,108,114,106,107,103,113,104,89,106,118,107,108,101,106,105,109,129,98,100,103,94,100,112,98,98,105,105,100,101,108,99,107,122,103,105,106,105,119,107,106,117,97,106,111,102,110,108,120,104,95,111,101,98,110,102,106,97,115,96,102,115,104,106,109,112,104,141,102,104,97,109,95,106,104,104,110,106,96,102,108,105,108,103,107,108,121,108,98,113,108,108,116,95,96,107,116,94,117,106,104,89,113,109,101,95,111,104,111,116,101,117,98,105,98,103,106,97,97,105,94,93,107,101,102,121,110,103,107,97,106,104,102,104,107,105,115,103,97,104,108,106,110,107,102,111,104,105,110,114,95,104,100,103,87,103,109,109,107,104,106,111,113,110,88,109,109,107,107,104,116,98,107,104,74,113,94,118,111,109,108,96,110,119,107,110,106,106,103,118,112,102,107,104,102,104,115,111,103,86,95,97,120,109,103,107,104,108,103,98,105,94,109,115,102,94,111,137,105,105,95,108,112,106,102,107,111,103,99,101,108,102,92,108,97,117,101,103,124,115,104,113,103,109,108,100,102,88,104,109,110,97,103,112,110,97,111,102,102,107,90,110,109,97,106,106,96,100,72,106,108,110,97,101,106,94,108,103,111,97,97,105,91,100,99,107,113,103,97,100,107,109,100,105,109,90,117,102,79,109,115,113,107,97,93,110,100,112,111,103,102,101,100,102,102,104,101,98,72,101,96,107,100,100,106,107,99,116,116,114,104,110,106,120,116,99,107,105,96,110,115,92,117,101,120,103,103,107,123,101,103,97,107,117,99,101,106,101,114,96,104,109,109,99,111,113,103,98,107,113,103,106,111,104,100,108,102,100,110,71,97,113,93,119,125,119,109,75,119,111,106,109,103,109,75,110,109,100,96,102,112,107,107,89,103,104,110,117,101,108,112,107,112,100,101,96,106,107,111,120,117,101,103,110,106,103,94,103,108,113,119,97,112,108,99,106,92,115,98,100,112,95,95,98,96,101,103,113,104,116,100,106,109,110,105,115,97,107,109,102,102,113,101,101,107,108,108,110,103,104,110,99,99,117,96,103,107,117,125,104,97,100,99,112,100,106,102,109,105,111,108,103,106,117,97,105,107,110,110,107,105,102,108,106,111,108,110,121,98,113,117,101,114,100,108,101,93,110,104,101,139,104,106,110,106,107,98,107,118,92,109,103,102,98,108,105,107,117,105,107,102,114,109,107,97,105,91,110,115,94,108,90,112,112,103,88,100,107,95,113,91,107,98,109,97,107,111,99,123,118,97,93,101,101,111,99,117,113,111,107,109,102,88,95,109,98,113,98,106,115,106,104,129,91,91,109,97,98,111,101,103,101,104,119,102,88,95,104,93,106,107,105,107,102,96,96,107,114,109,102,112,89,103,99,98,110,99,105,96,87,104,106,98,120,99,105,109,116,102,103,105,102,106,115,92,106,105,100,102,104,106,91,102,107,103,104,97,98,113,98,90,98,99,101,113,93,101,106,105,110,101,109,117,104,105,119,104,112,101,96,90,104,101,108,102,100,111,117,96,94,113,112,108,97,105,102,105,107,93,92,109,102,107,102,110,103,100,104,103,104,109,102,105,109,97,99,99,108,105,123,108,111,106,104,103,115,108,92,92,117,106,108,108,100,103,86,102,102,92,91,104,83,107,97,96,98,112,107,106,112,100,107,103,103,107,100,91,102,118,109,118,94,119,99,99, +562.39117,111,99,122,119,101,111,103,119,100,98,95,109,105,97,95,113,109,95,111,87,105,97,107,111,111,100,114,115,99,101,102,99,108,109,112,92,101,94,109,92,85,123,106,115,93,114,95,100,95,110,103,109,105,107,98,105,66,102,109,98,96,107,103,95,120,91,105,109,112,103,104,126,87,116,97,109,111,109,123,102,114,112,101,98,118,108,98,124,109,107,133,110,98,109,94,111,99,112,105,99,110,95,112,85,114,101,109,90,109,100,111,107,106,92,114,103,102,104,110,116,103,96,100,93,100,113,112,95,114,113,94,114,98,103,100,109,109,96,100,105,91,99,97,107,104,99,96,101,94,98,91,99,109,102,97,100,105,93,111,97,101,101,107,95,113,113,99,98,112,102,99,100,107,109,103,100,106,97,101,104,94,108,108,97,103,100,89,103,104,105,102,101,96,130,112,105,100,109,90,104,103,102,97,112,123,107,112,98,101,115,83,104,101,100,112,116,109,104,100,117,104,107,101,98,105,105,109,102,102,101,101,84,109,110,104,100,111,112,114,100,105,111,107,86,98,112,107,91,100,106,104,103,102,105,109,104,101,109,93,103,101,105,100,88,92,99,111,100,98,106,104,67,111,101,104,94,95,103,103,103,106,110,104,90,97,107,100,106,108,106,113,103,110,111,118,96,89,107,111,117,95,98,101,110,87,101,108,109,94,106,98,110,102,109,109,92,120,99,94,105,106,112,100,109,117,104,98,103,121,99,117,127,109,110,105,107,113,83,110,103,110,86,107,98,100,111,103,105,98,97,102,102,106,99,104,113,108,128,97,88,109,116,96,95,91,100,111,101,95,90,109,111,89,99,103,96,102,109,93,104,102,103,88,108,102,96,106,98,104,100,103,90,97,105,104,99,64,109,101,113,97,104,101,94,110,104,114,101,102,110,96,92,103,104,106,108,105,107,102,106,109,111,105,104,92,102,99,95,103,110,113,99,107,104,93,102,101,103,100,102,104,100,104,98,96,106,103,103,96,105,104,106,117,99,112,102,96,99,95,104,99,113,115,116,115,105,107,105,102,105,119,109,102,97,94,103,99,90,108,98,112,119,109,103,113,101,96,107,114,97,100,100,104,110,103,106,103,116,111,102,90,106,103,103,113,100,110,104,117,77,118,103,108,101,110,104,100,100,102,94,110,96,106,105,118,112,114,110,111,99,106,106,110,111,102,96,108,105,95,112,102,111,108,102,101,94,105,100,111,110,105,116,98,107,97,113,84,96,91,115,99,108,100,108,100,104,110,103,112,98,103,92,112,94,107,96,106,109,103,110,118,104,103,111,115,108,104,111,106,100,94,121,92,99,123,108,98,105,106,106,100,106,88,100,100,97,94,102,98,112,99,92,105,99,112,101,107,100,122,111,106,107,109,105,114,100,118,115,105,108,110,95,103,118,109,90,97,104,102,118,106,105,109,99,116,100,86,103,118,106,96,114,71,106,98,116,108,103,105,101,113,101,118,112,95,106,91,101,113,103,115,98,110,101,113,118,102,87,98,104,106,107,109,114,106,102,91,116,108,100,100,110,100,107,113,99,118,108,109,101,106,104,106,108,93,119,107,104,111,109,89,112,114,101,91,99,112,94,97,106,104,102,101,96,104,102,101,113,110,115,104,99,104,98,103,109,101,105,102,94,113,105,101,100,114,104,101,136,110,110,107,104,97,101,103,93,98,108,104,104,100,103,108,95,104,109,101,98,93,98,111,103,94,99,103,109,103,99,109,97,111,98,110,102,125,101,102,90,117,107,109,105,106,101,103,114,105,104,111,106,121,115,99,102,101,101,116,112,96,93,110,108,108,86,109,95,116,102,101,99,99,100,104,101,110,96,109,107,116,102,100,103,98,100,104,113,108,108,97,106,103,111,104,114,101,113,104,117,121,111,97,109,100,96,129,115,105,104,102,105,101,98,94,103,108,106,94,102,112,102,116,104,102,129,78,125,106,108,104,108,113,90,109,98,101,118,100,92,114,108,106,106,119,110,98,97,109,109,97,121,99,94,108,105,106,103,106,97,106,100,97,110,115,117,105,100,108,117,113,94,112,103,111,107,111,93,101,105,109,103,103,96,98,123,95,104,99,104,109,107,100,103,114,99,111,107,100,98,113,121,93,107,106,107,117,95,106,100,106,106,105,125,109,103,100,99,98,117,106,97,107,96,110,100,101,104,111,91,100,108,108,107,105,102,115,113,94,102,114,116,104,98,91,71,105,101,104,107,96,112,97,102,114,114,98,102,116,102,101,92,108,119,104,105,118,116,109,107,101,109,123,123,104,104,107,96,107,117,120,112,132,111,114,110,111,93,120,133,145,168,179,195,198,223,241,223,225,203,204,220,206,179,180,159,160,146,118,146,118,123,120,126,114,111,94,98,103,115,99,90,114,123,99,106,101,113,95,109,104,100,93,131,105,97,127,111,103,106,99,110,103,110,128,99,116,100,95,87,120,109,101,97,106,107,109,117,104,102,127,104,116,111,93,115,109,108,110,119,80,127,119,112,109,104,108,109,103,107,108,103,102,115,104,106,96,98,106,111,102,102,106,96,110,105,103,100,110,103,136,103,115,105,112,104,109,113,100,105,102,103,120,102,98,104,108,102,105,109,104,105,110,109,119,109,112,102,114,120,116,119,106,108,110,99,114,102,99,113,103,108,103,111,113,106,116,103,104,99,106,101,107,95,111,108,107,110,107,101,124,97,105,107,110,109,114,113,120,106,95,105,105,113,115,109,117,109,99,114,109,108,111,115,105,112,107,104,110,113,103,107,138,113,110,99,103,103,110,117,111,104,112,116,111,102,101,99,106,105,102,106,100,95,103,113,109,103,101,117,107,119,113,123,107,110,118,105,112,120,103,109,99,113,119,102,97,103,99,113,104,109,99,110,107,111,99,111,109,109,112,108,119,106,96,118,102,107,111,104,108,107,117,91,102,100,117,104,90,121,110,115,95,104,105,93,97,110,108,82,98,99,99,104,110,112,110,95,114,116,105,116,105,103,113,109,104,102,109,97,98,96,116,106,107,103,87,98,97,110,105,97,110,113,106,106,107,100,103,113,104,105,113,114,127,110,112,104,110,97,104,121,106,103,115,108,100,111,112,109,104,104,107,111,107,104,98,120,100,99,122,97,109,106,102,110,109,108,104,100,101,106,104,121,110,105,106,113,106,110,104,111,116,109,94,90,102,104,103,102,112,115,113,106,123,100,113,105,118,121,100,117,109,104,99,111,127,108,77,107,105,94,98,105,95,121,98,114,104,79,97,101,115,119,102,98,102,111,115,102,101,106,106,105,83,113,102,100,83,107,109,105,106,112,108,108,103,110,111,114,101,107,107,116,104,128,103,98,105,131,93,109,106,106,109,110,97,112,131,101,113,108,101,120,114,103,87,100,102,102,127,99,117,98,113,100,108,108,107,108,110,99,112,113,109,102,104,113,111,101,108,102,107,109,109,118,106,119,109,95,115,105,110,102,119,111,106,100,108,99,93,117,106,101,106,104,113,101,105,118,106,104,111,111,111,100,111,103,103,109,111,98,114,118,102,117,102,123,100,109,106,109,105,104,109,107,121,111,103,107,109,102,106,98,111,108,97,102,102,107,103,109,101,103,106,110,98,109,103,107,105,106,104,116,103,100,105,103,102,106,105,111,111,109,98,104,102,88,104,108,109,101,112,103,111,105,109,117,108,98,126,101,105,101,102,106,107,103,116,109,104,111,106,109,101,118,99,103,105,93,117,106,128,107,106,101,109,101,116,103,108,103,111,118,104,108,108,79,124,101,104,120,105,113,111,107,114,104,103,109,103,100,109,114,107,110,95,101,114,107,107,113,117,94,101,110,116,96,103,107,99,102,98,110,98,124,103,105,106,103,108,103,102,104,108,107,102,102,93,81,102,111,104,107,90,112,133,127,113,102,108,106,107,100,102,114,136,132,107,104,105,103,111,100,108,106,119,105,116,117,105,117,119,109,106,105,103,109,106,107,96,103,103,103,104,104,103,106,93,99,118,108,96,96,101,113,95,102,101,129,116,93,111,115,95,105,118,129,101,121,104,103,102,98,101,102,99,113,115,128,111,107,112,118,113,111,113,106,103,99,113,108,98,98,106,94,115,112,102,98,112,98,102,102,106,105,105,116,102,93,100,100,106,97,103,108,103,108,112,105,105,102,112,104,113,102,107,117,110,106,104,104,107,101,112,102,111,113,100,79,116,112,112,101,117,101,103,106,110,111,91,113,113,103,99,107,108,110,107,108,108,111,103,116,103,116,113,110,106,102,106,94,101,105,98,106,112,105,114,101,101,116,107,117,103,113,114,110,127,107,116,98,106,107,107,102,104,115,113,105,111,110,97,99,114,104,96,108,98,119,103,98,102,99,110,100,99,101,102,95,101,99,104,94,94,103,107,121,124,121,111,109,116,98,120,91,96,102,89,102,107,108,113,101,95,111,108,106,107,97,86,102,91,107,99,102,113,104,115,106,105,115,123,108,107,90,120,108,102,99,105,105,98,108,99,106,113,108,105,102,115,104,101,110,107,103,109,96,117,101,100,106,109,112,110,117,100,114,106,121,126,140,108,106,109,102,109,110,101,112,126,92,104,97,111,107,110,102,110,95,99,95,107,102,113,98,109,105,107,79,118,108,103,118,119,99,108,108,99,107,113,98,98,90,100,102,102,104,117,100,105,101,112,98,109,121,96,111,112,101,91,112,96,106,105,108,106,99,103,100,121,112,102,105,111,101,104,106,106,85,105,94,105,109,96,95,98,106,107,96,108,111,120,110,107,101,102,95,96,125,120,95,113,104,110,103,110,102,108,97,89,113,101,100,92,109,104,109,105,103,98,104, +562.5321,105,100,105,87,89,107,111,85,101,129,96,98,95,103,115,107,106,101,114,94,109,104,108,114,116,98,106,110,111,103,105,106,106,98,117,102,100,110,92,91,104,102,104,98,102,118,106,108,112,100,103,105,102,106,107,96,102,88,107,101,104,107,89,104,91,100,97,98,119,100,102,95,103,101,103,114,104,101,105,102,103,100,92,119,102,95,111,94,71,97,115,102,111,111,111,106,115,103,100,100,112,106,95,98,97,106,115,97,90,112,100,106,125,107,116,104,80,113,112,97,101,104,101,98,99,81,103,114,110,121,99,128,107,117,98,108,102,99,103,100,99,113,101,96,95,105,97,100,99,100,105,97,117,98,99,97,102,107,113,108,114,102,106,104,108,102,111,96,89,112,109,116,133,91,98,92,100,99,113,103,104,99,108,98,106,106,111,105,104,104,98,103,104,95,109,120,105,108,101,109,99,118,128,108,101,108,98,120,102,129,107,101,112,100,107,117,109,87,106,117,111,99,102,93,108,132,109,103,103,99,90,87,109,102,113,96,104,114,109,95,122,107,98,106,107,105,121,107,112,105,89,111,106,106,101,102,99,112,96,99,79,106,98,96,106,113,96,96,109,103,105,92,110,106,101,107,105,103,106,110,109,101,94,120,100,92,97,104,109,103,104,96,121,96,106,98,108,109,116,104,101,103,114,104,102,109,93,106,110,109,105,120,104,109,107,103,100,103,95,98,114,100,104,104,103,112,92,104,113,105,105,102,111,106,98,112,112,104,105,88,98,107,110,101,103,115,111,106,113,104,97,88,98,101,92,101,102,109,122,106,105,97,107,101,105,103,102,108,100,108,106,98,106,106,105,98,104,106,101,109,101,113,113,99,120,94,103,99,101,111,110,94,108,106,111,95,100,107,111,111,98,108,108,102,100,101,98,112,115,101,95,85,103,106,105,102,103,105,109,102,118,91,102,119,110,95,98,106,93,111,99,98,113,101,92,99,100,109,97,103,104,109,103,102,110,113,104,101,103,112,106,101,100,113,99,92,96,93,103,104,94,107,104,107,96,116,106,123,108,107,114,113,102,106,110,105,107,116,113,98,101,113,115,105,99,93,109,106,106,94,97,113,109,100,108,95,108,111,104,107,102,99,102,102,105,119,100,105,101,106,97,107,98,100,96,99,108,100,103,105,108,109,109,94,108,101,121,104,107,94,112,93,116,110,87,99,107,110,101,106,116,113,100,98,98,106,101,113,100,112,109,105,108,92,101,100,109,109,107,102,101,107,115,102,109,104,95,99,110,112,100,91,97,116,98,98,111,105,105,88,103,104,111,105,110,115,103,109,111,126,105,98,103,101,100,108,103,104,109,111,95,113,114,107,102,103,105,101,95,106,107,82,95,83,105,107,105,110,101,93,88,98,100,99,96,117,101,105,105,113,106,100,103,107,102,92,104,93,112,113,86,104,104,113,86,104,110,102,118,116,106,109,114,111,99,103,109,117,110,115,105,100,98,106,105,112,103,97,104,125,115,97,114,95,103,110,90,103,107,101,109,100,107,110,99,108,74,85,94,91,109,117,105,105,107,98,124,109,104,99,100,99,88,108,108,103,113,124,98,99,91,103,104,110,104,100,103,93,104,110,105,82,110,119,93,102,114,105,110,107,104,109,106,114,104,117,105,92,117,98,92,92,108,110,109,109,102,99,105,98,114,113,112,99,110,103,119,98,103,118,103,94,101,109,138,108,98,94,110,128,100,105,98,101,106,81,95,111,102,105,99,112,112,115,102,105,102,94,102,94,101,113,113,109,107,103,103,98,110,110,103,103,103,104,107,117,98,106,107,111,104,95,95,107,88,102,99,112,102,111,117,112,107,110,110,101,103,105,102,104,104,111,112,95,97,105,105,109,110,95,100,125,93,108,102,110,93,107,105,92,98,103,114,103,96,109,106,101,98,103,115,100,99,102,99,100,107,96,109,97,92,118,114,103,104,102,107,102,102,94,108,104,111,100,113,107,118,114,105,96,101,111,101,110,110,96,103,109,100,100,111,105,107,104,105,95,97,105,100,107,104,112,117,95,105,110,105,98,99,83,107,107,106,106,106,92,103,109,112,109,103,110,98,104,104,114,105,106,95,114,100,103,103,113,97,114,114,117,105,108,103,111,109,103,112,99,114,107,111,114,93,106,108,92,110,103,105,107,100,96,92,103,112,80,122,101,109,98,105,113,105,117,104,89,110,92,92,110,100,95,107,106,106,102,118,103,97,114,109,105,97,101,105,106,110,107,111,101,99,113,96,109,107,106,99,117,100,119,111,97,104,112,116,113,112,111,112,114,113,111,114,112,120,120,125,110,129,140,128,138,166,195,225,234,251,210,231,209,218,214,207,195,166,160,153,127,157,151,119,115,117,123,98,104,110,109,118,127,108,110,104,139,93,111,113,98,103,92,109,103,98,106,112,116,105,105,115,91,109,107,104,107,120,107,100,98,103,112,112,104,109,107,108,115,101,114,93,110,118,101,98,117,106,107,102,110,102,111,103,103,94,105,100,111,96,104,105,113,107,97,107,109,106,100,109,113,79,99,93,102,113,107,105,110,84,96,100,100,104,103,121,96,121,96,108,97,101,104,100,102,108,81,97,93,107,104,107,98,103,98,100,96,104,104,105,103,119,83,109,103,102,97,98,100,113,112,111,96,110,109,105,109,115,99,104,111,100,98,107,94,104,111,93,106,104,107,94,105,99,95,109,102,98,108,96,104,111,109,107,106,109,90,89,111,97,104,106,99,106,103,106,110,102,99,110,109,108,100,105,92,107,96,108,92,104,111,104,105,89,104,105,96,100,105,95,109,92,105,110,108,112,107,97,116,97,100,110,109,97,117,106,112,106,106,115,97,116,97,98,120,106,114,109,117,103,108,99,100,109,68,94,113,110,105,105,119,108,89,106,99,104,77,89,96,103,107,94,102,99,98,94,108,91,113,98,116,96,104,105,99,101,99,97,116,107,98,68,117,104,107,109,91,92,106,107,96,102,116,79,104,99,100,106,99,78,100,105,93,108,93,94,97,102,113,98,96,99,110,101,104,105,108,107,106,97,94,111,128,100,113,104,100,105,107,98,113,107,95,109,104,104,105,87,87,111,81,100,98,102,107,99,99,112,110,110,106,101,101,96,115,102,102,85,111,98,103,89,122,97,111,93,96,106,137,95,97,105,99,101,105,101,114,111,108,106,105,105,105,106,94,110,94,105,100,100,104,101,109,113,101,108,106,109,101,101,96,113,107,102,105,106,93,117,116,106,111,116,103,102,104,108,113,111,99,119,117,106,94,102,98,107,108,98,113,101,87,95,107,93,94,107,113,79,105,105,103,83,100,105,98,107,96,105,96,99,93,112,94,112,100,93,102,105,110,101,120,108,114,91,113,90,88,106,101,98,102,109,97,81,99,105,99,103,99,99,109,111,101,107,109,102,113,106,102,97,105,97,108,122,103,101,104,94,106,105,108,104,95,109,108,108,95,113,117,80,97,105,109,87,98,102,112,81,99,104,93,105,110,107,96,105,99,114,102,95,107,100,104,113,94,100,103,100,101,105,101,108,112,108,102,97,99,95,115,105,90,103,117,119,103,109,108,114,104,108,105,108,102,104,102,108,99,106,105,97,108,108,97,94,97,107,95,100,105,87,92,105,110,108,101,96,98,101,110,99,103,108,108,103,95,106,106,93,103,94,103,102,128,97,99,105,97,107,101,108,103,99,117,136,104,96,113,96,109,113,107,102,90,114,102,96,107,104,108,112,109,115,113,96,94,105,83,106,116,98,109,100,106,97,103,111,115,100,107,96,107,122,96,97,87,102,98,118,88,98,70,112,96,117,107,122,106,107,92,95,105,92,103,67,97,97,88,102,102,94,116,112,96,105,98,91,96,79,104,109,96,99,99,102,103,116,107,107,96,105,105,113,118,103,106,100,99,93,95,114,96,96,99,108,109,108,68,96,108,106,104,101,106,96,116,104,75,106,103,97,99,97,102,101,100,103,115,98,100,103,112,106,101,105,95,89,106,102,113,106,106,105,101,106,112,108,104,105,116,109,107,101,96,105,105,85,93,98,102,109,109,110,101,101,119,101,94,105,105,81,93,103,107,105,110,107,102,104,97,108,100,94,100,104,94,109,104,117,109,102,102,111,107,110,105,115,108,92,117,92,102,115,100,101,96,104,109,109,100,103,110,105,92,106,106,94,116,110,98,93,105,94,94,104,101,98,83,102,111,103,95,105,99,95,115,100,105,103,113,112,109,88,95,105,106,109,106,111,110,101,110,106,102,104,105,106,89,106,87,112,91,105,98,105,109,100,107,80,96,98,90,92,114,95,109,108,105,102,100,106,109,109,94,104,102,93,101,101,116,99,99,100,103,106,98,117,102,102,94,117,100,100,109,112,109,105,100,77,114,112,102,106,96,110,89,99,103,105,108,106,98,102,106,100,107,99,103,92,109,112,112,105,103,100,103,94,94,103,113,106,103,112,113,100,93,98,106,106,97,115,104,105,99,100,115,100,87,111,98,103,86,94,94,92,97,101,102,98,100,105,113,98,97,106,112,102,97,98,113,102,111,109,106,96,101,88,110,106,109,103,132,114,104,106,92,99,114,127,106,95,96,99,96,123,96,99,106,94,95,109,96,88,100,99,101,107,94,102,109,102,105,117,109,110,94,110,104,94,100,99,106,99,99,112,93,113,101,108,96,97,99,102,110,98,93,93,123,102,109,104,104,89,101,104,101,103,99,103,104,86,82,101,84,99,98,102,100,107,102,112,99,105,110,90,109,91,117,96,97,98,112,75,97,79,93,100,95,108,103,74,97,106,91,110,91,114,98,106,95,98,112,91,112,102,79, +562.67297,107,91,97,103,104,109,113,92,98,101,93,97,117,99,96,99,99,113,111,116,124,113,95,116,108,101,102,111,109,108,106,107,97,97,106,103,101,102,112,102,83,104,106,104,104,118,111,97,104,102,101,92,109,104,101,101,110,102,97,109,107,101,105,96,103,108,116,121,103,108,117,105,97,102,91,107,100,87,116,114,91,99,112,102,98,102,103,100,99,104,93,102,109,104,103,100,100,95,100,107,106,107,106,96,105,109,100,105,92,106,103,96,105,106,110,108,102,102,109,104,104,97,102,112,106,116,106,91,102,121,103,102,107,112,110,112,97,110,106,105,92,112,112,96,98,108,98,101,105,102,101,108,96,98,96,110,104,96,97,109,88,107,104,104,109,108,104,78,118,102,105,105,107,99,100,107,110,96,112,102,78,118,103,101,108,107,108,105,99,89,110,96,115,99,110,104,106,109,101,110,117,91,104,105,105,111,105,102,113,108,109,110,104,99,106,98,108,90,86,104,110,105,105,95,89,99,108,111,87,103,113,106,108,106,98,111,95,111,102,110,104,105,117,98,93,106,92,121,109,99,107,113,106,101,99,109,107,105,96,105,91,105,107,107,103,112,88,91,93,101,110,116,107,96,106,103,96,120,112,99,105,113,89,110,97,112,82,98,118,103,93,93,107,105,113,109,108,93,112,108,108,103,100,91,107,107,110,109,98,129,95,114,99,87,103,102,106,104,95,105,110,79,106,96,108,111,122,116,105,120,108,105,103,102,124,96,101,112,110,117,101,107,101,101,106,112,100,113,109,113,99,102,98,89,109,103,87,111,109,99,104,102,110,89,120,102,108,117,95,94,109,95,105,100,114,107,102,112,104,110,111,104,86,107,94,101,91,105,110,95,112,102,103,101,102,100,93,108,99,104,104,111,95,110,106,102,73,112,103,109,102,105,101,97,107,111,103,108,109,102,105,100,97,106,95,95,103,99,92,105,112,112,124,82,112,99,104,105,98,110,115,102,103,110,95,118,108,102,102,108,99,99,116,112,102,106,95,96,109,93,104,95,100,114,112,109,111,116,110,107,111,104,98,109,102,101,105,115,106,93,102,101,108,105,120,100,117,111,110,112,110,99,86,106,100,118,87,111,104,95,98,109,100,107,107,94,110,94,108,100,101,100,119,112,102,102,99,99,101,105,98,106,117,112,118,106,114,118,104,104,106,115,107,112,107,106,106,88,96,93,95,108,95,118,109,94,111,102,108,110,96,102,101,93,104,104,110,95,96,99,104,102,106,114,110,99,105,104,105,99,96,98,93,97,116,99,109,99,106,114,125,105,84,101,108,99,90,104,107,95,109,109,106,113,100,105,103,112,99,117,102,93,99,98,105,103,103,101,99,103,97,113,104,117,106,99,109,103,110,107,107,103,104,91,106,114,114,100,96,126,122,108,109,113,91,94,101,102,114,95,94,112,109,121,105,97,105,99,115,107,111,102,107,101,95,110,114,108,124,84,75,113,102,101,101,118,111,104,105,109,109,127,102,100,116,106,102,105,111,102,105,101,111,102,95,106,103,95,103,114,94,110,102,97,104,107,103,98,100,99,110,102,95,101,108,121,108,117,100,109,108,102,102,101,107,111,107,97,97,111,106,98,108,102,98,102,105,113,110,108,95,113,105,98,100,104,83,104,107,110,105,100,109,101,113,110,108,106,113,103,100,95,111,111,108,100,101,101,109,107,102,112,107,108,101,108,105,102,108,115,124,100,98,92,95,100,97,112,116,107,101,90,114,99,84,96,98,114,93,123,99,107,110,107,100,105,103,117,100,106,101,116,100,114,105,104,109,103,114,107,106,122,118,101,104,102,102,119,104,104,104,109,118,100,111,102,103,109,109,87,101,105,122,102,102,117,98,90,100,109,107,95,102,89,100,92,98,92,117,92,104,103,99,99,99,104,104,106,94,104,101,102,107,99,106,98,111,102,110,107,105,103,94,109,94,108,93,107,105,109,87,106,103,102,100,95,103,117,105,87,101,107,101,89,110,97,107,111,100,96,112,123,114,109,91,89,101,100,103,110,97,94,117,109,109,103,91,104,105,115,103,105,108,107,116,97,75,88,93,112,104,95,106,112,108,107,109,111,103,115,109,96,111,116,105,103,95,103,115,97,104,108,122,108,107,100,110,106,105,106,108,108,105,104,121,97,95,103,110,128,97,110,106,107,116,102,96,96,106,106,95,113,109,105,104,105,102,102,98,95,102,94,107,104,104,108,122,107,110,94,111,101,95,106,102,103,106,117,99,110,103,109,106,87,99,94,104,116,96,103,104,128,105,110,107,114,104,112,106,99,96,103,130,114,111,109,122,137,147,136,180,196,222,218,248,243,210,186,200,223,209,182,184,165,131,145,126,117,115,140,118,109,86,111,110,107,116,113,108,102,130,124,116,121,99,113,96,105,98,102,96,102,108,119,110,116,69,101,107,118,119,118,89,105,85,80,100,98,119,107,103,91,111,116,111,110,109,91,91,94,110,104,107,105,93,92,99,102,89,103,113,102,97,91,106,112,130,112,110,112,115,113,113,98,105,109,103,94,91,110,98,114,107,108,104,118,98,97,109,101,112,93,114,107,104,104,102,103,110,100,107,110,103,91,98,98,100,101,113,105,99,108,105,111,88,98,108,108,99,106,110,102,109,96,103,118,104,102,109,110,116,104,97,87,107,103,99,100,105,111,105,104,112,119,113,115,112,108,99,111,96,105,103,108,120,104,118,103,112,97,109,117,105,109,101,96,108,104,105,103,108,117,89,107,100,110,87,106,100,112,123,101,115,100,97,108,102,120,97,105,91,100,105,106,96,107,111,111,103,106,105,100,92,112,120,109,85,102,94,117,108,110,117,110,112,100,99,111,101,98,96,112,114,110,100,113,100,113,114,105,100,109,104,108,101,104,104,82,119,106,114,88,105,92,95,104,104,105,102,104,82,103,91,94,102,102,108,90,109,113,103,105,93,92,114,109,106,109,102,104,108,94,109,107,115,104,104,107,101,100,105,117,108,97,99,107,109,100,94,97,111,99,109,107,106,98,107,102,113,84,108,110,100,92,101,114,111,100,99,120,101,98,94,111,99,97,95,93,95,105,103,96,102,103,102,96,108,110,103,111,105,109,113,98,106,122,109,97,108,122,104,98,95,115,105,102,113,103,107,111,90,102,106,111,107,100,111,96,102,110,107,101,97,98,106,106,100,101,108,109,112,111,117,121,101,96,97,121,98,104,101,105,105,112,100,87,114,97,93,101,110,100,100,110,99,80,102,117,100,104,107,110,94,83,105,93,104,99,111,102,102,96,87,113,102,90,102,104,97,96,106,100,114,98,104,107,101,107,108,101,107,107,98,110,107,106,100,100,111,97,103,102,101,102,103,115,103,100,101,103,100,95,111,100,95,95,95,103,101,89,100,114,112,121,111,114,104,102,106,93,106,102,119,98,102,108,98,100,111,113,100,100,106,107,98,113,101,99,112,101,106,107,102,104,95,106,110,111,103,109,113,111,102,102,108,111,105,103,99,107,97,112,109,113,109,103,81,108,101,90,111,116,117,101,109,101,98,104,102,101,96,105,104,113,105,93,104,112,102,109,102,103,101,99,96,109,99,98,109,107,104,108,109,111,98,101,104,121,108,110,99,115,105,99,100,97,114,102,115,104,109,96,107,118,109,101,113,113,116,115,107,112,106,100,102,112,107,99,93,100,90,103,99,99,109,108,112,102,102,101,113,96,108,108,104,104,101,96,110,113,100,100,102,105,104,107,91,112,111,111,113,103,105,87,103,110,116,104,95,76,97,113,109,108,107,107,115,102,109,98,108,113,109,102,111,92,102,100,93,105,113,106,112,111,103,114,104,102,110,95,78,95,105,112,105,93,98,100,102,108,99,98,111,113,97,95,108,102,103,94,103,115,104,111,104,111,109,106,113,103,113,99,102,107,77,101,105,111,104,103,101,106,103,102,106,101,108,99,112,106,117,109,110,109,96,104,110,105,90,104,111,108,99,95,103,117,108,101,103,95,105,105,108,109,84,111,100,103,107,108,108,113,92,104,107,107,100,110,102,101,102,110,111,95,111,101,94,104,101,100,102,108,97,109,102,121,123,100,105,118,114,106,107,106,117,107,110,106,99,98,106,106,109,101,103,104,113,99,110,106,102,104,112,122,97,103,103,104,115,102,104,106,100,99,108,116,106,107,109,95,105,104,114,102,97,104,91,102,111,102,100,104,105,97,112,103,122,94,88,82,98,108,104,74,106,99,108,98,102,109,108,100,116,89,104,113,122,119,113,93,103,108,98,106,111,108,108,100,99,100,101,105,96,105,96,110,106,101,96,95,109,100,104,99,111,104,105,105,100,113,100,92,99,98,98,102,106,110,113,106,111,99,103,99,96,100,103,103,100,103,115,116,95,109,101,98,105,98,113,105,104,95,112,106,113,90,111,102,105,110,109,99,103,97,106,102,105,107,90,105,96,108,108,109,97,106,109,109,108,106,105,103,105,87,87,111,102,109,104,111,109,110,100,99,108,99,101,98,101,84,100,103,109,101,108,109,112,100,105,100,88,107,92,117,82,107,105,102,93,109,94,110,116,106,115,107,111,92,119,109,106,111,98,113,103,99,115,100,93,81,98,117,86,110,98,112,115,98,104,107,101,112,105,105,87,99,99,105,108,109,106,117,95,91,99,78,107,98,100,77,118,93,104,117,105,94,96,103,100,95,110,102,104,107,110,85,109,106,108,96,102,112,97,99,95,115,107,102,107,94,112,112,106,99,110,100,123,86,113,116,103,100,100,104,98,111,101,109,111,106,93,109,80,93,107,98,102,111,115,93,101,105,97,101,126,93,101,105,106,106, +562.8139,99,103,88,78,110,89,100,99,94,115,106,96,106,107,103,91,97,106,117,113,113,104,91,95,112,111,108,107,116,112,99,91,92,103,106,121,102,101,100,101,100,101,94,127,99,106,92,111,96,108,109,108,92,102,111,109,97,99,106,102,67,110,112,88,120,117,92,116,131,85,99,102,104,110,104,109,101,105,110,94,112,94,100,104,99,103,109,105,109,75,97,100,108,96,103,123,102,115,96,105,95,106,103,106,104,108,96,94,101,106,97,110,114,107,113,101,104,102,106,101,104,68,104,111,111,100,109,102,113,104,100,102,106,106,106,106,102,105,107,100,98,98,105,108,102,119,110,94,109,107,104,110,103,97,106,105,103,94,92,104,105,109,97,96,111,109,103,86,115,103,109,102,105,108,117,101,106,95,112,112,82,107,104,107,106,101,109,100,109,107,97,102,92,101,116,107,101,120,109,99,106,102,105,112,95,93,105,92,102,77,97,114,103,113,111,99,112,112,106,68,103,116,95,103,106,102,105,108,99,114,103,98,107,110,108,117,76,106,100,115,110,102,111,100,96,106,95,111,95,108,112,95,113,104,115,104,105,103,105,103,93,107,108,105,98,100,98,100,116,101,106,100,114,109,112,108,117,112,99,100,97,101,114,93,125,100,87,83,103,104,105,106,112,104,106,114,106,99,104,102,112,106,111,109,95,112,125,116,104,104,96,117,111,111,108,103,100,110,103,97,107,94,108,95,101,100,89,86,104,110,111,102,109,121,101,97,107,104,102,94,94,104,110,115,104,103,117,113,106,108,104,101,109,106,102,102,116,97,106,104,101,96,101,108,102,87,113,112,116,114,102,106,98,111,101,105,99,102,112,104,98,108,90,110,102,96,109,108,105,105,113,87,102,99,66,103,101,113,95,110,94,106,93,92,101,98,112,111,112,112,92,98,107,99,113,103,112,99,113,109,109,105,101,118,108,98,96,103,104,117,104,99,107,105,107,90,100,99,96,98,118,103,106,110,98,111,96,99,99,106,95,102,106,94,106,97,116,103,101,95,90,104,113,95,109,111,107,101,103,95,104,99,101,89,100,106,95,86,101,110,109,107,109,100,101,104,115,109,100,109,104,102,106,104,99,122,118,111,101,105,118,104,103,108,104,106,101,97,113,97,124,106,114,103,108,109,114,102,98,98,105,106,103,108,109,107,106,105,100,103,99,106,103,107,108,108,103,98,121,103,82,111,111,97,116,104,107,117,106,112,107,108,109,106,65,113,106,105,104,104,108,95,107,120,99,113,104,124,121,105,98,106,110,95,99,105,103,127,103,110,106,101,103,108,96,106,112,95,122,98,99,108,114,108,116,103,100,104,98,109,109,112,99,105,95,109,101,105,108,114,103,87,114,110,106,112,94,113,111,106,95,113,113,100,117,113,104,110,115,120,103,115,96,114,90,106,106,103,119,109,117,116,118,117,106,99,102,103,103,107,110,98,87,121,103,104,99,108,102,112,111,102,117,117,92,99,90,98,104,101,119,101,101,102,92,112,106,114,97,104,107,110,102,102,123,103,110,100,109,97,107,104,103,110,117,141,107,100,103,112,109,118,98,105,99,111,103,100,108,107,112,101,109,105,106,104,107,100,96,95,103,94,105,111,91,107,97,110,101,97,110,126,106,108,96,100,110,95,102,101,113,101,110,106,110,111,103,100,102,115,110,102,107,104,105,109,102,117,102,104,113,113,94,108,111,105,103,116,104,102,102,115,113,101,115,94,105,107,112,117,107,108,112,110,108,110,109,110,101,114,112,108,104,114,98,106,87,99,113,95,112,92,101,107,102,116,94,100,113,109,106,106,103,112,106,110,108,101,109,107,102,110,109,102,110,117,108,110,106,98,105,103,105,113,99,111,104,98,99,112,106,116,67,102,86,104,112,93,106,104,106,109,106,105,101,98,107,109,107,114,114,100,98,116,102,106,106,102,106,106,116,101,100,101,88,105,108,100,116,99,109,107,116,118,107,108,106,104,98,111,120,112,106,118,98,108,102,109,95,107,108,103,122,111,112,109,106,103,103,112,111,113,109,111,110,103,104,107,108,99,118,106,108,108,114,104,110,114,116,106,96,102,111,123,81,116,99,89,112,112,108,86,103,101,109,117,103,106,112,106,110,105,115,115,106,123,95,99,108,115,107,109,115,100,99,108,85,104,117,110,98,108,105,100,106,109,92,106,113,117,94,99,104,113,92,100,77,112,103,103,111,106,104,113,110,118,109,113,111,100,100,103,112,104,105,103,104,106,105,111,97,102,116,101,93,81,103,104,118,123,94,122,111,108,121,96,113,113,123,117,128,115,115,104,114,110,130,134,106,139,208,205,249,218,228,261,209,250,228,198,205,230,193,166,161,127,151,137,146,122,98,106,111,119,114,103,118,99,117,104,103,113,113,109,103,110,113,109,104,93,113,113,89,113,113,103,108,109,112,91,103,102,117,105,102,128,119,98,115,105,115,112,108,98,120,114,104,104,102,95,105,129,99,98,91,98,108,104,102,101,111,113,101,107,110,111,114,106,100,102,105,119,101,104,108,96,96,104,108,116,106,108,103,106,114,115,129,94,105,88,113,118,115,112,104,116,104,110,107,113,107,107,105,96,109,108,96,105,111,117,102,104,107,122,111,96,106,110,107,113,105,111,104,108,110,112,107,118,107,107,103,103,107,106,111,109,106,101,106,106,110,110,112,103,104,116,107,117,106,98,115,99,114,107,108,109,112,108,111,95,106,109,94,106,102,101,109,94,97,111,105,113,106,99,109,105,111,120,108,113,99,104,99,111,90,104,111,143,110,109,103,106,100,108,113,107,103,108,97,106,115,104,99,113,116,102,112,110,99,105,99,106,109,112,94,92,106,119,108,109,112,105,105,99,106,101,117,91,108,109,113,104,100,85,103,111,104,96,113,104,104,115,101,112,99,101,107,106,95,101,96,107,99,97,99,120,112,109,99,109,120,110,106,79,104,109,115,115,101,92,102,105,93,106,114,111,105,91,109,102,103,112,113,102,114,104,100,100,103,100,76,112,104,99,105,98,112,105,89,82,110,102,111,112,92,94,109,113,110,104,100,120,102,104,121,73,102,113,116,102,104,127,110,109,103,108,102,107,86,92,106,98,103,100,100,107,107,106,107,100,102,111,103,104,107,104,96,106,109,85,108,110,108,105,110,106,106,115,116,113,110,113,98,103,100,103,116,109,120,114,107,102,106,109,108,106,96,107,107,108,107,84,112,117,87,101,96,111,99,98,97,102,112,103,113,104,108,107,102,100,112,104,100,118,95,107,119,97,109,117,110,102,99,109,107,106,109,113,109,105,101,106,91,106,108,96,101,98,105,98,99,107,94,105,110,107,99,120,108,114,91,101,100,109,113,107,126,105,128,104,103,110,92,108,101,94,95,105,108,106,109,89,106,109,105,103,106,87,100,100,116,103,103,99,107,116,110,105,109,100,108,113,99,92,109,96,96,104,106,93,113,109,105,106,104,104,116,112,111,113,107,113,99,107,99,105,103,108,107,121,113,91,98,111,102,103,107,98,96,116,111,106,97,87,116,117,116,116,109,106,100,107,103,108,102,90,109,111,106,117,103,100,123,108,103,103,111,116,107,103,108,122,105,98,116,110,96,117,123,91,107,106,108,109,105,101,108,104,108,96,98,118,112,99,106,119,106,108,112,100,113,74,105,107,103,102,83,104,100,93,94,102,98,107,106,109,105,96,104,100,106,96,89,99,100,108,103,98,113,103,108,100,91,117,101,107,105,101,103,104,114,105,103,107,101,102,106,95,115,104,112,114,93,100,113,110,110,95,115,85,102,105,97,112,94,98,110,106,117,98,107,103,117,106,99,95,102,98,114,89,109,111,95,107,93,92,101,94,103,102,100,104,109,100,103,121,103,124,108,108,105,115,98,106,100,112,100,82,108,105,132,98,109,101,106,109,106,94,101,87,103,97,107,113,99,106,102,104,105,109,99,99,94,101,101,103,118,103,107,106,103,111,104,113,103,125,105,94,116,112,103,98,111,102,99,103,95,102,112,102,108,98,102,101,101,107,105,113,128,107,91,101,113,102,109,105,111,96,94,107,99,98,99,105,106,96,134,113,111,102,110,106,100,95,100,109,110,94,100,103,117,106,108,112,102,119,108,112,102,110,119,97,102,100,103,100,109,107,113,103,113,105,104,99,109,103,99,102,104,104,100,100,107,100,102,90,100,95,100,106,106,98,120,106,96,113,99,87,96,102,103,95,107,108,109,105,120,102,115,108,120,103,98,111,93,105,100,119,119,110,109,94,101,114,102,101,108,98,103,105,109,110,113,100,97,104,106,110,92,110,108,114,108,112,91,116,107,112,112,108,106,91,98,110,96,100,93,102,103,108,108,110,103,107,90,110,96,119,94,95,112,109,113,115,99,98,92,95,110,125,114,107,121,121,95,97,85,113,114,97,96,107,83,102,109,106,108,101,109,103,97,109,113,107,111,117,111,106,112,113,105,101,95,108,122,105,102,105,106,109,102,103,112,104,91,111,109,111,106,104,105,99,104,103,109,116,112,104,114,103,97,97,113,109,103,110,106,117,110,110,111,116,113,107,99,101,113,91,96,98,97,105,104,102,115,112,105,99,109,105,98,119,107,108,118,111,104,104,100,99,103,101,106,108,93,100,94,112,109,93,100,118,104,111,102,98,117,100,115,94,108,110,114,102,96,112,109,109,101,106,98,91,98,107,102,114,103,116,104,102,106,106,96,97,97,100,117,102,98,98,119,105,104,112,111,96,102,113,99,99,98,99,98,96,109,102,93,102,101,97,98,99,101,112,97,101,95,111,93,103,113,102,110,105,108,109,107,97,95,97, +562.95477,110,96,96,120,103,109,100,92,111,116,103,107,82,102,82,95,107,113,97,115,106,118,105,102,81,109,127,122,107,93,113,92,112,114,109,100,85,102,130,108,110,113,117,107,104,103,101,112,108,121,102,97,102,100,113,108,86,109,103,103,86,113,88,93,109,116,101,114,121,108,113,99,111,116,105,111,108,105,107,105,103,105,112,95,103,107,108,114,100,106,107,104,105,102,129,105,129,107,111,95,118,87,106,118,110,103,117,114,103,104,98,104,93,103,103,107,107,114,112,103,96,116,110,109,114,112,116,103,104,101,107,98,109,97,104,113,102,110,97,96,101,108,110,101,105,111,107,101,101,107,83,105,110,94,108,113,71,103,98,104,106,95,112,113,117,106,106,107,105,115,106,104,100,109,92,105,100,105,109,109,104,109,103,104,104,81,109,98,105,96,98,104,116,114,112,107,108,103,89,111,98,102,96,110,109,113,111,102,105,110,106,101,111,111,105,101,109,89,109,97,108,107,109,109,113,108,100,119,100,120,111,101,112,109,116,98,109,109,106,103,121,114,109,114,93,110,110,101,105,111,105,115,98,106,105,114,96,103,106,107,85,95,104,110,101,120,104,94,97,84,106,108,98,108,115,115,97,107,102,101,99,112,103,99,112,101,100,117,101,103,106,114,103,112,108,103,110,111,113,117,111,102,106,103,104,98,112,103,104,113,103,109,107,103,112,117,98,94,107,106,104,102,98,103,112,111,112,91,104,108,110,98,88,112,107,104,109,93,123,115,112,83,104,97,108,109,108,95,98,119,108,104,105,113,112,79,115,110,109,104,104,109,101,95,117,110,103,100,105,111,121,104,112,120,102,100,69,105,105,109,105,98,95,132,116,89,112,113,103,106,116,100,101,112,102,105,95,99,113,107,105,100,102,75,99,102,102,107,108,97,84,105,97,105,76,108,109,106,115,107,110,118,106,105,91,97,105,103,83,111,106,116,105,102,103,100,94,103,89,109,109,97,96,104,105,102,98,99,90,110,109,105,105,109,118,103,91,109,111,117,110,110,116,104,109,105,105,109,112,114,104,102,102,102,109,101,109,114,116,137,98,108,110,106,102,113,116,104,103,102,99,99,107,98,99,96,107,107,96,117,110,109,103,113,113,103,101,91,97,110,98,120,114,105,95,103,109,81,101,96,87,106,100,107,116,95,116,99,106,110,96,97,88,102,102,116,111,98,106,104,104,130,103,113,107,109,104,99,98,101,109,101,86,106,107,82,111,90,100,98,107,98,103,106,95,106,105,99,122,100,92,109,112,106,91,101,108,122,107,117,111,104,94,104,104,94,115,107,114,101,104,103,105,115,112,113,111,102,112,110,103,105,101,113,110,104,103,106,107,113,108,97,110,106,104,117,110,113,102,108,95,98,96,96,100,107,94,104,106,105,110,109,100,112,108,111,105,76,115,101,109,106,118,101,96,82,100,110,99,115,118,113,104,99,102,80,107,104,104,117,109,110,114,102,111,104,97,104,98,113,109,105,105,92,77,105,98,105,101,108,102,115,115,107,104,105,119,110,107,109,107,102,111,114,102,92,103,111,111,108,108,114,91,111,99,119,104,104,104,97,110,102,101,104,108,102,107,114,111,109,106,108,103,106,105,93,110,98,111,105,118,117,104,99,110,109,112,102,120,113,102,94,106,102,119,107,99,99,79,110,115,102,110,96,112,102,102,100,108,107,113,103,94,119,88,103,97,97,90,119,120,100,108,97,103,100,101,104,122,99,95,113,111,118,98,115,118,110,110,116,106,108,95,103,99,108,82,111,99,100,113,103,104,106,103,110,102,103,105,108,123,94,109,101,108,107,101,106,105,110,104,96,107,110,103,113,117,117,112,119,103,110,114,99,97,116,116,108,109,106,95,106,105,108,112,107,106,95,94,106,109,107,120,106,98,79,96,108,111,104,94,108,113,105,99,104,93,110,106,109,101,108,102,116,104,105,102,103,105,121,108,102,105,99,109,116,109,105,95,98,105,99,112,121,106,103,108,107,114,114,103,115,106,104,104,114,116,119,105,103,102,114,110,97,103,110,101,121,98,113,108,110,108,105,111,112,96,71,98,113,99,106,97,109,114,102,100,113,101,108,112,106,107,105,111,112,115,121,105,126,108,98,111,114,102,101,106,110,101,103,103,102,103,113,109,103,97,117,103,109,94,107,106,103,98,106,108,83,94,114,95,99,100,113,117,108,102,101,105,98,110,100,113,111,115,107,105,104,98,122,109,103,107,100,106,104,108,111,107,114,106,105,105,98,107,112,121,107,111,117,107,98,109,111,116,107,102,121,122,106,100,108,99,120,123,108,137,124,156,161,172,222,201,245,234,218,239,210,225,207,207,219,198,190,168,146,150,134,122,109,133,132,107,110,111,88,104,113,110,113,109,111,104,138,102,110,118,87,116,89,102,108,108,115,108,104,105,107,103,107,106,71,92,109,120,110,96,106,109,111,112,95,85,104,101,98,123,99,104,102,102,108,100,106,105,93,102,101,75,101,102,107,109,97,112,92,112,95,105,101,108,111,102,102,98,105,107,108,102,101,102,101,90,116,107,106,107,107,102,95,102,101,111,110,104,119,120,109,113,96,107,94,105,101,100,126,110,112,111,108,96,103,100,99,104,106,99,101,97,111,105,116,98,113,102,100,114,95,116,107,100,109,82,113,98,110,102,112,109,112,107,121,104,107,106,104,105,113,107,114,101,107,95,109,101,98,137,116,105,113,106,104,122,115,99,103,104,105,110,109,100,107,105,113,103,112,113,103,114,107,111,106,113,113,113,111,105,106,103,107,103,106,117,99,101,96,118,129,99,117,105,111,103,104,93,103,107,105,105,107,105,113,92,109,109,105,111,108,121,111,113,110,121,105,111,109,105,117,87,97,106,99,106,105,109,116,116,98,96,99,106,108,99,100,103,112,110,111,103,105,113,98,111,104,113,103,103,105,114,93,112,113,109,96,107,97,100,109,103,87,100,102,99,100,106,102,112,100,102,104,114,100,103,98,105,95,104,106,113,101,96,99,97,99,97,102,113,92,93,103,103,107,98,109,112,100,98,107,120,101,110,91,102,107,106,109,103,111,103,94,112,102,109,100,117,105,117,102,98,81,98,116,102,99,87,110,102,98,102,98,110,100,102,121,100,100,113,106,107,107,95,107,107,118,94,103,112,95,100,112,106,136,102,108,107,112,103,99,114,103,112,107,105,110,112,112,103,116,100,93,83,107,91,109,102,94,113,96,101,98,118,96,94,111,98,109,107,98,96,91,102,98,102,128,105,99,97,105,100,99,101,100,106,102,115,118,81,101,111,110,104,96,120,107,103,99,99,110,111,87,99,110,95,106,94,99,105,87,99,106,93,100,105,113,103,104,109,100,109,108,113,97,97,106,100,82,112,109,104,109,95,111,115,109,93,90,102,92,102,102,104,110,99,111,118,114,103,110,103,102,87,100,110,101,99,95,103,100,100,96,106,82,108,110,102,96,95,108,99,109,92,99,121,98,106,102,103,111,108,109,101,97,101,110,104,107,113,105,102,88,109,96,98,118,100,104,94,114,94,112,97,103,116,112,104,100,105,110,104,110,80,95,116,115,109,99,109,80,105,107,103,103,95,104,100,108,97,101,110,109,92,95,108,104,120,105,107,100,91,107,104,107,99,100,96,110,108,102,102,90,105,119,106,115,109,104,109,91,116,87,102,103,108,100,105,102,114,105,116,109,108,106,94,114,101,108,109,97,103,109,95,111,106,100,64,104,96,101,104,99,113,116,109,103,102,97,108,96,109,108,105,122,104,104,106,103,113,87,108,103,98,100,96,98,99,96,104,100,102,105,107,108,103,96,103,106,102,101,99,96,91,109,109,95,97,104,106,100,103,106,106,104,113,99,98,103,113,94,102,107,112,107,107,116,107,102,99,102,100,100,102,114,96,113,108,109,98,106,107,93,93,99,99,100,107,105,100,115,102,72,97,102,109,116,110,102,121,101,99,94,104,102,102,110,120,133,105,94,112,109,103,96,108,98,121,115,98,112,113,91,113,116,113,119,114,99,96,109,102,107,107,97,105,99,97,114,88,104,108,112,100,102,109,100,101,100,117,104,100,113,112,95,98,103,97,112,115,106,105,101,102,98,84,104,111,111,94,103,108,100,94,101,72,94,100,102,110,100,104,105,105,103,97,120,96,101,101,115,96,99,105,100,109,110,87,106,97,101,106,103,97,103,105,102,106,120,115,105,99,106,99,107,94,115,110,104,107,115,109,117,95,100,102,116,109,109,95,109,99,102,111,95,109,103,104,104,114,100,105,108,98,92,103,108,95,99,110,104,100,113,123,107,93,108,138,111,105,112,109,102,103,108,113,97,106,106,106,102,102,113,78,103,96,107,95,108,93,105,100,108,106,113,102,105,117,100,103,104,106,111,103,101,100,106,105,95,95,93,102,113,90,98,98,112,102,103,98,101,104,99,95,95,94,108,99,102,113,97,95,104,92,108,99,94,100,106,96,106,105,106,94,109,100,106,98,109,109,74,97,108,93,97,104,109,114,101,108,86,107,114,93,99,103,88,99,91,106,94,106,106,104,98,111,101,109,98,112,106,101,100,114,112,99,103,95,113,96,90,98,91,97,102,101,114,105,99,105,101,106,107,103,106,103,99,100,104,83,114,98,105,93,105,95,97,109,95,108,100,85,119,107,104,103,101,87,102,100,103,104,114,89,99,105,105,77,97,109,87,95,108,93,92,106,116,91,107,94,94,94,104,106,104,93,98,96,102,104,111,88,77,87,94,99,101,94,111,102,103,114,99,101,96,108,98,108,106,109,116,99,107,110,112,71,119,88,117,94,97,92,98, +563.09564,127,107,101,102,93,100,103,96,79,131,103,78,98,108,103,96,100,121,103,97,109,109,105,104,102,112,91,104,95,110,116,103,101,115,113,113,105,101,97,105,102,95,99,112,104,113,102,93,109,90,104,106,109,99,100,105,105,84,115,91,99,97,91,102,123,100,110,105,97,104,109,105,102,107,98,104,95,107,87,103,110,113,91,102,97,101,101,105,100,95,104,113,110,103,108,97,101,111,94,100,99,101,103,118,107,110,90,94,103,102,108,106,111,73,103,79,102,106,106,100,115,109,91,104,112,95,109,99,116,106,94,94,105,103,102,102,122,105,105,96,107,102,89,102,87,101,107,105,107,101,109,105,100,109,106,101,101,115,109,107,92,112,104,98,96,120,103,95,108,104,100,106,103,99,104,104,110,97,114,114,106,112,102,96,103,112,95,105,120,76,105,110,99,104,99,105,97,106,107,109,99,122,105,103,95,103,96,111,114,120,99,115,97,107,101,101,104,110,99,95,112,98,104,104,103,114,100,103,100,111,104,97,105,105,105,112,98,106,109,105,106,98,117,99,102,110,99,124,97,106,94,105,92,106,97,103,104,105,100,97,103,101,83,108,87,111,105,101,102,104,106,113,90,101,110,109,100,110,104,87,108,107,102,107,117,94,107,105,100,94,112,110,106,94,102,95,106,129,106,101,74,98,105,111,95,111,97,102,94,102,98,103,111,72,101,92,85,106,109,96,96,115,109,105,104,91,104,109,109,114,112,78,100,101,99,96,108,82,102,115,102,98,95,97,97,108,100,103,106,106,95,107,87,106,98,111,107,100,117,111,99,110,96,90,101,107,100,103,105,111,99,102,102,107,104,97,117,103,94,110,103,93,95,106,110,102,89,70,104,100,111,95,105,96,101,88,100,88,105,107,83,106,80,94,108,86,105,108,107,110,93,97,103,113,105,100,110,103,124,124,112,108,99,101,98,99,102,96,102,112,103,95,100,100,121,118,117,101,94,99,105,109,102,130,93,105,103,102,107,103,96,95,107,119,103,91,98,108,111,89,102,95,108,111,115,100,104,95,108,100,101,88,101,100,114,107,104,102,108,109,109,120,112,105,97,98,112,104,106,103,102,103,121,109,92,106,109,88,104,96,106,118,116,107,107,113,120,108,91,100,99,102,114,107,106,112,107,95,101,98,104,110,95,83,97,113,98,112,113,116,99,105,107,100,105,107,100,102,92,97,117,121,101,92,106,109,111,105,110,106,117,114,101,102,92,96,105,100,107,95,86,103,116,113,104,116,104,107,104,97,98,95,106,100,108,88,103,100,101,95,107,108,95,99,94,110,102,101,110,109,99,114,109,106,110,117,110,113,94,113,108,102,99,104,96,112,95,97,102,105,116,117,114,106,99,110,101,96,105,94,104,103,105,101,109,96,69,90,112,114,81,105,111,110,90,105,107,96,112,113,111,113,106,96,102,100,122,96,100,112,94,103,95,100,95,107,100,107,75,98,117,113,105,97,102,95,105,106,105,108,104,112,108,86,94,110,98,99,128,107,108,115,115,101,104,96,97,103,95,104,100,113,101,119,104,118,112,110,109,101,105,110,103,101,97,93,112,109,109,105,107,105,88,105,106,115,92,103,102,113,99,106,107,100,109,97,100,102,117,108,106,109,110,99,95,110,97,107,98,123,108,92,106,90,97,85,101,114,105,108,105,98,103,101,92,105,102,100,110,98,104,104,106,98,101,104,104,106,117,113,110,100,108,108,96,106,100,96,114,100,105,102,95,107,93,103,109,98,108,102,111,105,106,113,103,106,108,92,104,103,100,107,97,91,111,119,106,106,112,108,113,106,105,122,130,103,98,104,100,91,110,106,107,102,105,107,110,109,118,103,104,112,108,104,101,95,101,109,108,111,117,99,91,102,74,102,98,100,102,83,109,100,110,100,97,103,116,101,96,94,94,101,109,102,95,98,109,102,126,95,110,109,113,112,101,120,103,98,94,96,108,104,98,113,105,99,121,122,105,107,102,102,103,99,110,102,114,80,99,107,102,113,102,116,99,108,102,108,85,102,107,112,108,105,115,103,102,103,103,99,99,118,110,107,105,103,118,99,109,111,102,102,105,97,109,93,112,104,106,105,117,101,117,108,103,103,105,111,106,126,103,116,105,109,110,104,115,103,102,109,104,108,109,106,105,98,100,106,105,95,102,103,107,98,102,113,123,97,100,107,99,117,103,99,95,107,93,107,108,88,100,106,110,109,96,107,109,108,107,103,98,112,102,99,80,108,103,105,101,104,111,113,98,101,95,103,112,86,97,105,115,113,117,127,112,106,108,105,108,108,114,109,117,99,121,122,133,130,146,179,175,181,210,238,226,230,268,200,201,183,205,181,190,225,161,149,123,136,112,127,107,98,125,108,119,104,106,120,105,106,108,111,93,104,92,117,112,103,86,96,98,98,95,121,105,82,117,105,107,92,104,106,117,104,113,99,95,103,97,111,124,99,109,102,107,104,72,106,99,104,107,108,112,109,111,95,103,103,101,103,104,109,109,113,103,97,103,105,102,101,111,110,99,95,103,109,114,102,110,114,117,95,88,95,95,109,106,98,103,106,108,97,98,111,102,96,121,108,100,109,108,104,101,106,105,103,95,100,100,97,110,99,108,101,97,106,96,108,105,113,100,113,105,99,110,104,121,107,106,108,104,119,109,80,109,100,102,88,102,98,107,107,103,100,105,115,100,108,105,110,114,112,103,104,102,113,103,102,100,96,94,104,106,102,103,103,104,121,92,101,111,109,99,101,103,85,116,99,107,109,104,103,113,104,105,80,106,105,99,105,83,95,110,110,104,101,104,106,80,106,125,101,104,106,119,83,114,115,100,136,96,117,105,103,106,105,113,101,103,109,110,105,109,101,113,107,106,118,106,101,115,90,99,86,96,105,109,98,113,106,117,94,116,115,101,104,93,113,108,103,108,108,101,99,101,114,106,109,101,101,96,103,91,102,103,100,97,106,124,101,110,104,92,95,95,104,97,103,102,106,104,107,108,102,104,108,97,99,108,87,104,103,109,104,100,98,98,97,88,101,106,111,105,95,74,101,112,97,104,102,106,101,106,111,113,102,102,113,99,94,106,105,91,96,108,103,97,104,105,106,101,106,93,99,106,109,98,95,100,109,121,100,97,103,117,105,98,103,108,102,102,103,111,101,99,109,106,98,88,108,103,102,98,105,107,105,95,104,107,92,94,90,122,121,102,98,112,101,101,111,105,108,102,113,106,92,101,123,84,106,108,121,106,99,101,114,102,112,98,98,99,99,78,103,100,105,101,91,105,97,108,114,104,90,108,98,117,112,101,100,101,95,114,105,99,98,100,99,101,110,108,102,94,107,103,97,93,123,102,106,110,100,110,109,94,109,99,96,116,72,96,98,105,125,96,97,95,94,113,101,105,106,121,93,108,104,106,103,109,117,108,109,96,92,105,104,100,112,105,91,103,108,96,119,104,112,98,99,103,99,108,112,103,98,105,103,65,111,105,117,108,109,112,104,107,111,103,98,120,117,109,107,103,104,106,109,108,97,106,91,96,102,92,110,111,101,100,104,112,102,106,100,105,111,114,85,78,104,111,105,116,106,109,96,103,96,108,116,96,108,98,93,92,106,92,102,86,99,98,100,108,106,107,89,99,103,113,99,111,97,102,93,99,120,103,102,103,95,104,102,95,108,96,101,108,105,110,126,117,108,106,105,106,97,115,102,90,102,99,102,102,110,103,101,105,110,108,84,105,104,107,117,107,100,100,97,109,97,100,113,115,108,103,115,104,99,91,99,100,98,99,106,104,101,90,135,111,107,102,95,102,108,108,100,109,93,102,102,93,110,112,105,98,90,108,96,98,99,91,96,105,96,111,105,103,101,108,102,119,109,121,95,113,102,93,108,97,93,111,106,100,106,105,110,102,118,110,104,103,108,81,99,101,101,110,120,98,99,108,99,101,111,106,98,104,109,95,99,111,97,104,104,102,119,95,108,104,96,107,102,104,97,105,96,107,99,104,90,111,95,104,109,101,94,96,104,104,106,103,106,102,106,110,112,108,100,101,128,96,92,80,99,104,113,100,108,112,101,108,98,107,98,97,105,76,117,109,108,93,115,99,98,98,97,105,97,125,98,102,96,102,94,111,107,113,98,99,98,107,106,105,104,106,109,100,105,96,93,110,116,108,101,99,105,102,115,111,103,87,106,98,109,104,113,110,97,106,108,109,90,131,110,116,102,106,96,100,88,93,115,105,103,100,103,100,100,95,107,100,106,116,112,106,98,106,101,90,106,102,110,121,87,105,115,118,80,103,91,105,111,98,106,109,113,95,90,91,99,109,100,95,96,113,99,104,88,101,115,91,88,92,95,106,80,103,109,95,102,96,99,106,104,92,104,104,90,93,99,98,110,106,109,105,102,96,94,98,100,113,101,115,104,94,109,96,95,103,104,95,107,98,115,88,102,96,100,104,104,108,101,95,109,93,101,106,108,113,106,84,105,105,115,100,95,96,101,91,108,100,100,106,107,99,99,108,97,102,102,91,95,103,97,113,108,104,104,91,83,89,105,89,112,108,112,105,107,103,109,103,104,109,96,110,104,82,96,97,99,102,102,103,115,121,98,108,106,101,104,101,101,106,102,104,98,103,113,94,98,94,119,112,101,132,114,89,106,112,91,105,100,105,96,102,89,109,105,109,102,86,98,99,103,92,117,102,104,104,96,111,113,105,107,110,101,106,105,108,111,98,110,102,94,109,103,111,95,106,95,105,105,121,104,102,111,108,90,110,94,96,108,98,107,94,102,86,101,103,101,103,96,99,97,101,92,112,101,107,109,110,112,83,107,100,94,91,105,109,96,111,105, +563.23657,106,101,105,95,105,92,95,101,113,112,95,97,90,99,100,104,94,111,106,107,113,97,96,112,93,91,98,93,102,88,110,99,109,101,105,108,101,104,105,115,91,129,102,88,75,98,101,116,105,92,75,96,86,82,102,108,111,97,106,87,108,109,107,88,98,114,109,94,96,95,119,99,110,78,80,117,78,112,110,99,94,112,115,116,100,96,99,100,106,101,107,96,109,101,104,101,103,90,105,102,106,109,101,108,99,105,91,103,111,110,97,97,111,113,105,137,107,105,121,103,104,107,117,108,106,109,107,100,108,109,108,102,104,100,108,107,106,104,100,96,93,117,102,109,110,97,109,108,114,103,106,98,104,92,91,94,117,117,105,92,100,106,98,109,106,105,103,110,105,84,100,89,106,97,107,109,105,84,104,113,106,97,103,109,98,106,106,100,124,112,103,107,108,96,106,126,107,104,113,107,98,105,109,95,113,112,89,96,106,101,105,105,117,105,102,107,102,113,88,104,98,103,95,108,98,104,90,105,105,102,90,98,102,111,98,95,88,102,87,112,105,86,105,101,101,114,111,112,109,105,107,103,118,104,92,105,103,107,98,110,105,103,108,104,85,103,108,105,95,99,104,94,107,89,91,94,116,99,113,106,93,102,86,103,99,104,97,102,110,107,90,102,100,106,99,114,99,93,114,99,104,117,98,117,100,110,110,127,104,101,96,105,97,105,105,96,102,113,105,110,113,94,104,112,114,109,78,72,105,103,110,99,104,102,114,112,96,94,108,94,106,106,89,101,98,114,102,94,106,112,104,101,108,110,104,123,95,104,104,107,97,105,105,96,108,99,107,116,102,108,103,108,100,99,104,99,105,108,110,105,100,96,105,115,99,106,104,83,105,102,113,93,84,108,103,97,107,108,100,116,103,105,102,102,102,96,109,107,98,100,98,91,102,101,106,92,126,101,111,96,86,100,93,104,99,101,106,96,104,107,104,93,101,93,98,100,100,96,91,98,101,106,98,99,94,106,100,94,122,99,92,102,102,106,115,104,107,107,96,110,94,91,95,109,107,112,96,96,98,97,98,104,108,90,96,124,108,113,100,107,104,90,107,109,95,93,102,102,102,105,104,113,100,109,99,66,98,109,104,101,105,88,110,103,97,95,100,95,107,103,98,107,104,98,99,104,99,106,105,102,96,104,88,95,95,101,108,107,112,101,109,104,99,111,122,116,99,102,72,103,92,98,96,104,107,90,109,96,112,104,79,109,95,101,102,99,108,102,106,106,113,102,88,101,91,104,91,104,94,105,77,99,97,106,101,106,103,99,103,97,114,95,93,91,92,115,100,116,109,105,103,116,98,108,108,114,105,91,120,110,100,97,109,99,116,103,120,83,117,104,104,100,114,106,95,100,98,95,106,112,92,114,106,94,112,103,109,100,98,109,103,103,101,101,92,93,103,102,111,112,110,104,109,115,98,99,91,98,86,113,83,112,103,110,98,107,103,110,106,110,107,98,100,113,85,100,108,110,101,112,114,75,110,104,105,109,99,103,95,111,93,108,115,104,99,99,101,104,96,98,106,109,104,102,106,75,109,105,109,107,108,106,96,110,100,96,105,111,106,103,101,114,96,108,114,100,96,106,109,104,105,101,100,105,115,107,111,110,110,96,102,113,106,95,94,117,106,98,105,104,99,112,101,105,104,112,96,110,102,99,119,96,104,100,95,110,104,100,95,111,116,123,96,105,99,121,97,107,106,105,119,95,106,109,102,106,107,108,114,100,112,99,109,116,104,113,105,104,108,121,120,116,105,106,115,95,103,118,110,110,100,102,87,103,106,106,107,112,112,101,111,104,98,100,111,106,109,95,98,103,101,100,107,105,101,103,101,98,102,91,106,94,113,102,100,113,97,106,113,111,95,104,121,117,93,90,112,92,104,110,103,107,96,85,111,107,111,99,103,94,108,93,83,108,98,95,90,113,110,99,99,108,98,82,104,109,111,106,103,106,99,111,104,107,100,97,92,108,115,94,102,110,109,106,112,99,93,108,98,103,102,98,112,107,124,100,113,113,102,100,112,106,106,98,104,96,99,113,95,113,99,99,115,102,107,96,97,115,105,97,103,105,109,103,96,101,105,108,99,110,105,94,109,96,98,101,111,105,98,100,99,108,122,99,120,102,107,95,86,103,115,112,114,99,95,104,90,100,103,103,101,95,109,95,110,113,96,100,102,105,105,110,96,109,113,105,95,95,104,102,108,102,105,107,95,97,96,104,101,111,101,106,104,106,106,95,104,124,90,95,95,104,104,98,107,117,108,106,108,112,96,113,88,102,116,118,102,94,113,123,106,103,115,108,128,104,90,141,157,143,170,210,232,246,230,222,238,215,218,164,209,192,201,139,144,173,146,118,142,118,122,129,97,113,100,95,109,113,118,113,96,108,111,111,103,102,105,97,92,109,113,101,100,108,113,98,78,94,107,91,103,99,104,104,116,105,106,101,98,95,110,106,100,99,108,102,113,100,102,95,111,112,105,116,79,102,100,97,99,105,98,102,102,95,111,98,105,101,97,99,105,98,101,106,107,113,112,102,95,107,99,95,92,116,99,101,101,99,113,111,110,100,104,108,98,108,124,106,90,106,106,105,99,96,94,106,110,104,108,106,94,99,108,81,99,104,111,97,112,96,112,102,102,108,111,123,100,101,89,102,103,103,116,105,96,111,107,98,114,93,103,104,115,104,106,106,110,112,88,102,108,106,109,107,96,102,117,108,77,98,105,88,102,94,113,114,115,110,102,102,95,107,106,127,84,112,120,124,117,93,110,108,102,100,104,96,107,105,95,104,106,104,99,105,96,106,106,104,93,105,112,105,111,108,96,90,124,110,96,109,109,105,97,115,106,114,87,101,98,102,112,105,101,115,98,107,111,107,102,104,104,111,140,105,140,106,104,98,104,117,98,98,101,98,99,92,104,91,89,103,103,104,110,101,118,113,109,119,113,103,118,98,87,111,103,95,98,108,97,108,104,109,105,98,103,109,113,103,102,108,103,123,116,111,103,109,102,98,101,112,106,108,100,99,121,99,104,109,101,95,100,100,116,92,104,104,111,102,97,102,101,102,108,105,116,92,98,107,112,104,95,99,102,109,106,94,99,120,99,92,94,92,110,94,106,104,102,87,111,96,116,92,101,101,100,98,105,105,98,105,96,122,102,112,105,113,114,99,110,105,108,95,109,109,101,114,105,110,122,118,105,94,109,113,103,104,112,108,102,106,100,93,106,93,100,103,106,108,114,93,98,91,113,94,103,104,98,108,110,106,106,112,108,102,104,102,98,98,106,93,101,108,94,106,115,104,99,100,116,98,99,101,93,100,100,107,101,103,111,100,102,95,71,110,110,101,93,107,111,109,104,105,117,98,101,108,108,94,97,103,110,97,87,93,94,91,108,98,111,102,116,104,101,102,97,98,99,108,113,90,107,102,103,107,112,107,106,115,99,104,96,118,104,112,108,107,99,98,109,95,95,110,98,114,105,100,97,96,107,110,93,106,107,98,103,105,125,112,97,106,116,106,113,106,118,112,97,111,95,100,101,102,113,101,111,94,93,102,105,103,106,109,88,95,103,102,108,97,104,108,96,106,100,96,101,96,103,105,91,107,76,105,102,109,105,94,98,110,121,107,106,115,106,102,113,103,101,104,97,106,105,100,108,108,109,100,105,100,94,98,83,105,114,106,132,102,95,104,89,103,96,85,115,98,107,100,101,110,106,109,103,103,110,106,106,93,98,98,105,112,100,99,100,106,112,99,107,114,108,91,111,109,101,108,104,116,102,95,106,101,105,95,100,108,103,109,108,106,108,95,105,104,107,120,108,113,120,108,105,95,101,99,109,107,101,107,99,91,90,103,90,102,101,106,105,112,112,111,109,91,105,101,113,98,93,105,100,100,102,102,108,125,108,114,91,102,101,111,100,111,111,106,100,106,106,108,94,103,98,113,104,125,108,108,103,94,99,102,104,103,112,102,110,104,111,101,102,107,100,95,99,98,106,102,106,117,110,101,98,101,104,115,105,103,111,109,111,107,99,98,123,94,96,107,99,109,100,101,99,110,109,107,93,104,112,110,111,107,94,99,90,91,95,108,104,111,102,103,98,116,117,89,108,103,102,115,102,115,97,106,114,98,113,89,99,128,94,113,105,108,111,120,100,105,97,99,106,82,101,106,90,104,91,118,121,96,111,110,105,100,99,104,106,100,98,102,109,106,102,94,116,102,102,98,100,103,104,91,104,98,108,111,94,126,100,104,103,104,106,104,120,95,105,111,97,103,119,115,98,97,111,102,101,102,90,108,99,102,120,107,111,113,98,105,98,95,100,99,101,79,103,103,104,129,112,104,111,103,128,118,91,96,112,102,103,115,93,105,96,105,113,112,105,102,95,104,101,101,107,86,107,107,100,113,115,87,103,101,108,101,97,105,92,97,109,93,97,107,100,102,102,98,70,93,120,95,100,106,95,94,101,100,94,102,101,95,104,100,112,115,101,106,92,102,106,114,100,97,106,113,101,110,99,91,102,122,102,99,100,104,95,107,110,107,105,104,118,99,94,112,99,99,85,104,107,97,66,108,100,96,102,96,113,108,131,95,103,100,104,92,92,100,109,109,92,92,98,112,108,112,106,103,112,106,87,95,103,98,93,88,106,99,103,128,98,103,109,92,103,100,95,113,106,113,107,100,109,95,106,102,111,111,105,111,95,113,96,112,117,92,116,102,115,116,106,105,106,102,103,101,100,97,105,101,96,87,113,101,82,109,114,115,95,99,109,111,127,93,104,92,100,104,101,102,91,108,93,102,114,97,97,113,99,105,102,111,102,114,96,94,119,92,102,88,116,100,106,112,96,101, +563.37744,92,101,95,115,94,114,109,105,97,109,91,113,107,101,105,119,103,104,103,76,100,108,111,112,106,110,98,100,102,103,106,99,99,96,103,103,113,91,101,106,104,116,104,114,106,115,103,101,95,102,89,107,103,91,100,96,126,106,118,100,97,99,102,102,95,106,100,91,103,100,99,105,102,103,103,111,101,100,104,104,106,97,109,102,91,100,105,91,113,107,106,109,91,104,104,114,101,100,116,110,96,119,111,107,114,109,111,117,108,107,101,100,102,122,120,99,106,113,103,101,100,100,116,116,103,121,108,100,110,108,122,100,105,116,108,103,98,106,110,93,89,105,113,102,93,94,104,93,96,99,109,91,109,107,100,111,96,108,94,111,100,99,109,108,102,100,100,98,105,95,114,112,92,99,101,100,109,106,101,113,100,111,106,107,94,91,100,98,104,105,101,108,103,84,108,109,109,105,106,119,102,100,90,101,94,113,100,103,104,117,103,107,102,120,105,105,102,116,110,97,103,104,97,99,94,104,104,103,117,106,100,84,111,110,91,103,107,108,79,119,102,118,104,112,97,100,122,99,107,102,103,104,109,99,103,108,105,119,113,106,101,107,98,116,99,108,113,104,87,109,103,103,107,94,104,108,96,104,107,110,100,105,104,104,107,112,98,104,105,98,106,119,108,108,111,101,113,108,101,106,116,105,107,104,120,117,101,109,118,122,102,114,99,104,107,100,112,111,108,97,108,110,104,106,101,95,110,101,108,111,116,104,106,102,84,111,103,99,102,106,83,106,102,102,108,117,104,100,103,104,102,106,96,116,104,98,84,111,114,105,106,108,95,113,101,105,106,112,105,118,104,96,104,108,115,99,128,114,98,101,95,120,104,117,107,86,99,88,99,109,107,99,104,110,113,106,98,101,102,90,120,105,105,109,116,105,94,103,98,110,103,106,116,118,108,113,101,104,113,109,93,99,99,94,107,92,94,104,95,104,92,102,112,108,110,105,117,111,104,105,106,116,109,107,91,99,103,91,98,87,95,82,113,113,104,114,101,109,125,109,81,102,109,107,91,111,102,106,107,98,100,112,115,112,99,91,102,108,102,103,99,116,97,105,109,110,98,101,107,98,103,104,97,108,107,106,107,91,106,104,118,108,122,103,107,108,98,108,97,110,104,105,112,100,110,96,109,117,98,110,110,109,105,111,111,85,113,105,101,107,105,104,110,106,108,99,101,103,98,107,95,114,107,105,92,108,100,100,100,81,104,98,118,99,88,85,114,104,112,101,117,111,103,115,99,99,102,105,99,105,117,114,109,108,105,95,109,106,117,117,109,98,103,99,98,103,108,107,106,100,102,99,119,112,102,126,94,114,98,105,113,106,106,82,109,111,100,103,126,117,105,103,108,118,106,103,104,103,114,114,106,102,105,94,99,100,109,114,107,114,102,113,97,101,76,102,110,104,111,104,96,113,99,91,113,99,100,100,109,116,106,103,92,111,116,111,105,106,96,106,112,117,107,105,114,113,108,106,104,112,101,102,96,115,95,113,99,100,105,105,65,106,108,101,107,96,103,103,108,103,105,115,103,118,100,96,107,100,101,101,99,105,99,120,94,92,98,105,99,106,109,105,93,98,93,111,96,126,101,99,104,96,105,112,101,105,92,99,108,109,109,104,90,110,100,109,108,103,112,97,105,103,100,99,117,107,108,104,103,103,109,108,105,108,103,114,105,98,114,109,108,108,109,113,100,103,102,118,111,103,107,99,97,100,105,103,109,89,113,100,114,108,114,108,108,104,94,101,102,104,135,117,111,111,94,109,103,101,107,104,107,102,107,101,106,101,101,120,108,106,119,96,116,105,105,117,112,109,107,109,124,111,106,112,108,105,108,100,94,98,88,107,108,99,90,113,111,100,103,103,100,99,98,108,101,86,102,100,105,105,104,99,105,101,99,109,93,97,101,102,116,106,106,100,97,113,95,119,110,108,109,111,114,110,94,99,121,96,101,106,108,103,113,100,107,116,73,112,100,95,107,120,102,113,96,99,107,114,104,103,99,105,105,105,102,100,104,99,104,113,101,116,105,114,102,101,105,100,103,118,115,110,111,103,84,99,104,106,102,104,105,99,108,101,100,116,103,101,108,107,119,104,96,109,112,99,107,101,94,98,102,95,102,109,103,104,115,103,95,104,104,99,110,104,112,101,106,113,108,110,105,111,111,110,112,106,104,105,100,107,107,101,102,110,95,102,108,113,103,99,101,105,99,111,103,101,101,103,99,111,101,106,100,101,100,96,110,97,111,107,100,114,108,105,121,111,91,102,109,115,102,110,98,110,107,103,114,90,118,115,116,108,130,114,117,100,114,142,109,155,180,218,193,234,256,285,238,200,208,204,210,207,185,165,135,142,147,140,108,161,113,109,106,110,110,105,106,95,108,114,111,114,99,112,104,97,119,122,107,99,113,91,101,103,116,102,99,108,121,113,113,100,105,113,101,103,100,102,104,108,92,72,99,99,101,114,101,106,95,105,100,108,114,87,96,102,105,114,115,92,110,101,106,99,106,96,93,106,114,96,103,99,102,108,109,98,94,89,97,93,109,96,88,119,100,106,99,99,112,106,117,106,132,107,108,108,89,110,103,109,118,83,105,100,105,115,108,108,109,105,105,98,96,100,109,99,92,116,99,97,102,106,99,110,105,109,109,100,96,106,102,115,110,104,100,119,100,107,85,112,102,109,99,104,116,109,110,107,96,109,112,106,107,101,101,103,115,118,104,109,108,94,100,121,105,100,103,107,107,102,104,102,91,107,100,108,108,108,98,102,96,108,105,108,96,111,109,105,101,105,105,109,103,104,96,98,98,107,100,111,111,95,104,117,105,104,97,78,87,91,84,95,104,107,100,97,100,108,112,100,107,105,101,71,101,102,99,98,80,98,95,117,101,108,98,117,80,95,99,94,112,108,103,109,95,128,117,109,106,95,99,93,109,105,103,112,97,101,112,94,111,101,103,126,94,87,109,117,105,105,102,93,99,99,107,103,98,113,94,110,91,102,104,97,113,94,101,110,108,98,102,112,103,98,101,113,108,105,110,99,106,82,107,107,101,99,114,102,99,110,112,106,93,105,112,112,93,112,99,105,98,96,99,104,114,102,96,106,113,99,100,99,111,113,108,116,100,106,106,119,117,98,106,97,97,99,118,108,96,98,109,109,94,105,96,95,105,116,109,108,100,105,99,98,100,108,104,113,113,102,110,108,95,122,100,108,110,111,96,103,109,103,100,105,99,95,102,104,119,108,115,103,106,106,104,104,103,90,111,102,112,95,105,103,99,98,104,99,109,112,99,112,96,84,109,105,98,106,105,119,84,110,101,103,99,102,93,109,108,100,116,93,99,104,102,112,107,89,102,112,95,108,104,108,104,104,115,100,100,105,101,93,113,95,113,99,96,91,99,100,108,103,108,102,107,106,104,109,110,112,104,110,103,106,107,108,100,105,111,111,97,111,116,101,101,98,115,97,110,92,111,106,103,105,106,110,95,95,107,104,105,88,95,113,95,96,94,104,116,103,108,108,106,108,96,90,106,101,98,89,96,107,112,83,102,102,102,95,97,109,98,102,105,103,105,93,104,109,109,103,91,107,102,95,103,95,117,106,103,101,100,86,101,80,90,108,98,108,98,113,99,105,100,90,100,108,104,106,106,105,98,110,101,108,110,107,112,113,110,87,112,105,113,106,94,93,113,97,107,99,105,101,93,96,115,99,108,109,102,96,109,100,105,102,93,91,90,98,106,103,90,94,93,104,106,107,113,103,105,119,112,104,106,118,113,110,113,100,104,92,104,97,91,121,103,112,110,101,111,95,96,99,95,102,106,112,98,103,104,113,87,113,108,107,83,102,111,85,97,87,106,100,112,102,100,102,107,96,111,107,121,93,117,101,118,110,102,126,112,104,92,103,97,109,104,116,105,100,100,100,102,101,101,95,109,98,94,96,108,112,108,103,103,102,84,100,109,109,104,99,102,103,109,99,104,108,97,102,102,87,113,117,96,105,106,113,111,105,107,110,108,120,100,107,105,105,102,110,77,97,101,105,115,102,104,98,96,95,96,100,102,96,108,105,98,111,106,93,106,103,108,91,112,111,111,104,99,98,106,104,102,101,97,103,112,103,113,104,93,106,107,106,109,104,103,114,101,107,113,104,121,98,100,114,110,97,98,112,102,114,109,120,113,69,111,102,106,118,108,102,99,117,101,96,119,100,113,110,111,107,114,102,108,94,103,108,101,103,99,98,99,111,100,107,104,103,116,112,92,112,124,96,98,95,98,100,100,109,96,106,131,98,83,96,106,95,113,107,106,104,83,98,98,104,103,90,97,92,103,109,103,109,107,106,111,95,107,111,102,97,98,91,92,104,84,105,104,100,102,112,108,100,100,93,101,89,102,97,93,117,108,118,106,109,108,100,105,99,94,112,99,89,111,116,98,102,91,103,96,101,92,98,97,108,112,102,95,95,96,97,97,98,95,99,110,60,93,105,94,92,108,108,103,102,102,109,101,105,98,97,104,96,103,108,95,105,101,107,91,116,109,99,104,108,109,109,113,101,106,96,109,100,94,98,98,93,113,96,103,105,100,95,100,95,106,119,110,111,93,102,102,96,112,107,99,87,93,101,92,112,101,104,96,102,105,98,103,96,97,103,119,97,104,114,102,96,106,105,88,109,103,94,106,105,105,118,97,94,104,96,102,100,108,108,96,98,92,97,105,102,106,108,91,98,100,110,113,106,105,97,100,100,115,93,96,111,108,95,110,116,108,93,107,103,100,113,102,122,102,113,98,113,95,98,98,123,88,100,94,99,107,104,109,87,75,67,111,113,98,98,101,94,95,105,103,97,99,119,107,103, +563.51831,110,95,116,100,105,107,100,107,112,98,101,107,114,113,107,102,109,108,109,112,117,95,87,102,108,91,94,96,98,102,98,112,96,103,116,102,99,114,103,95,100,92,98,113,89,98,104,114,117,107,100,102,113,95,106,111,89,112,102,100,102,104,91,105,103,107,96,109,102,100,93,93,109,107,86,112,103,101,102,100,102,106,107,109,106,99,104,105,115,104,116,99,95,97,99,95,109,106,88,114,106,104,93,94,87,100,104,73,107,109,120,101,103,104,115,100,104,96,112,105,107,95,101,103,97,100,104,95,109,120,95,102,106,102,95,101,114,98,101,97,92,95,71,113,99,104,120,106,109,109,103,104,103,95,100,115,113,108,105,118,111,95,111,101,98,105,113,98,108,102,114,97,98,95,96,108,97,102,98,104,90,95,104,112,114,97,106,95,109,94,100,108,106,107,106,121,100,106,97,113,98,104,116,100,108,115,108,107,91,96,104,99,104,72,101,104,98,101,94,102,99,99,100,106,106,111,102,107,107,98,106,106,111,96,103,109,106,106,115,98,96,114,113,104,104,82,108,98,103,96,100,104,101,110,98,104,104,107,98,118,99,101,105,103,107,112,106,92,76,96,113,127,104,72,100,102,101,104,112,110,92,102,118,68,100,109,97,82,113,107,118,105,95,98,108,109,80,108,99,100,101,108,135,112,101,117,101,110,113,99,102,105,96,101,112,97,105,95,109,101,92,94,113,98,101,91,94,99,104,116,98,107,105,129,134,98,98,99,105,107,98,102,100,100,110,102,102,110,109,107,102,101,97,106,103,99,111,98,95,107,112,105,108,110,110,80,104,107,93,101,88,111,113,95,106,101,124,109,106,100,106,101,93,100,105,102,98,100,96,87,108,100,97,111,120,104,100,98,109,101,96,107,95,109,101,106,105,97,106,105,101,96,106,127,102,106,99,104,112,94,110,106,112,107,117,105,102,115,102,121,111,120,101,109,106,102,102,102,95,119,120,109,107,113,103,103,102,106,114,104,102,102,105,109,107,103,100,104,115,110,91,99,108,128,96,98,98,99,107,113,110,113,107,99,106,98,97,108,101,100,102,115,96,111,107,112,102,105,113,93,114,109,94,108,101,95,103,107,102,104,109,107,114,107,111,107,91,103,104,111,102,97,99,107,87,105,100,93,101,110,103,106,90,104,108,108,102,93,95,108,107,101,124,100,109,98,92,103,105,124,94,106,118,102,104,106,104,97,105,119,120,120,112,108,118,99,103,98,90,103,92,107,106,108,113,98,108,110,99,116,105,115,103,114,117,97,101,120,124,104,105,93,124,85,109,104,119,110,104,108,104,106,105,109,118,103,104,100,119,102,106,113,109,96,102,104,89,105,117,98,107,91,107,102,100,106,94,108,106,103,101,110,97,94,106,99,95,99,114,107,107,116,96,100,113,105,103,106,92,109,109,111,103,119,97,103,103,102,109,105,99,102,99,109,110,105,104,106,106,98,84,115,94,108,97,94,101,98,108,105,107,108,106,98,104,104,108,100,101,104,103,97,112,98,92,108,108,118,98,103,107,108,102,110,90,104,103,112,105,101,90,121,98,110,109,111,97,113,113,107,108,101,102,89,89,102,99,102,96,106,111,111,102,112,96,104,101,93,102,118,105,108,126,104,90,104,110,105,103,106,103,98,105,96,106,102,95,95,101,104,108,105,94,105,113,118,106,109,108,112,109,107,110,99,103,92,104,95,109,117,101,100,113,108,106,111,97,102,95,113,97,103,112,106,97,105,104,110,105,101,102,102,111,109,99,100,104,101,101,102,90,107,93,109,113,105,101,111,101,108,100,101,103,98,105,107,99,116,103,93,100,103,100,89,100,92,121,110,98,103,102,113,109,91,105,123,104,98,103,117,99,110,113,100,103,106,101,93,102,101,103,96,110,96,132,107,101,104,95,83,101,105,104,109,111,100,91,100,118,104,104,110,91,106,102,104,104,102,101,94,120,107,98,103,70,100,106,117,111,105,103,117,96,105,107,101,103,99,106,104,111,105,118,121,101,95,105,99,94,106,106,126,103,102,101,106,103,108,109,101,124,103,105,99,104,94,104,95,97,109,104,107,109,112,99,99,96,114,96,113,113,102,105,118,93,104,101,104,102,113,108,114,102,101,111,98,104,104,99,104,100,113,102,111,92,98,106,94,95,119,103,99,112,104,98,107,90,86,130,104,107,95,121,109,111,116,108,105,102,89,94,107,104,115,108,120,106,107,100,113,108,106,96,102,110,87,109,98,95,108,96,111,121,121,105,112,98,91,98,114,117,116,109,106,110,117,114,106,115,96,102,111,119,117,110,121,93,140,139,159,180,211,223,263,247,202,224,247,239,206,211,201,209,191,155,134,130,134,130,138,117,115,115,109,97,113,100,111,114,105,107,118,128,99,119,122,91,116,94,96,105,96,114,106,97,106,91,110,104,99,97,111,109,95,88,105,114,100,106,104,103,99,94,119,102,110,100,124,118,96,104,112,101,88,118,98,91,93,92,128,99,110,111,89,98,106,100,108,100,99,105,105,93,90,107,106,98,106,99,105,112,103,102,107,107,89,107,112,110,102,95,101,109,103,95,106,101,110,101,102,107,97,108,82,101,110,110,111,106,104,101,108,111,103,120,99,128,104,107,116,99,94,101,113,105,105,114,105,106,110,100,85,107,103,109,109,93,98,98,115,105,103,101,88,110,113,106,99,108,76,99,102,112,112,114,99,97,114,101,105,100,105,114,110,113,107,106,88,97,98,100,105,109,111,104,119,108,112,101,118,96,138,117,98,107,95,109,101,96,109,103,106,97,104,78,106,109,94,92,105,95,97,94,121,122,106,95,115,94,104,101,100,103,98,103,96,95,108,113,99,110,109,100,97,103,100,106,100,110,102,103,112,106,100,106,107,111,94,91,98,87,98,89,102,105,105,106,102,99,92,89,109,104,88,104,93,101,83,97,111,107,87,103,98,97,106,108,110,99,103,107,100,104,86,107,101,105,101,103,102,90,101,96,102,108,97,103,102,100,92,92,92,98,103,86,108,103,109,104,115,92,106,112,104,106,102,109,106,107,87,116,99,113,101,104,105,79,105,110,94,111,84,102,93,95,90,100,107,93,104,98,110,106,117,106,102,106,103,121,116,107,108,108,96,113,93,109,101,113,89,93,104,113,98,116,108,103,104,102,100,103,100,100,101,101,99,105,95,116,99,119,102,105,108,94,107,100,110,110,99,103,96,96,106,98,113,102,102,100,104,109,88,93,101,97,105,121,99,103,94,114,100,102,102,98,114,110,95,113,103,92,111,90,96,74,114,104,99,99,102,97,108,95,99,98,97,116,104,98,105,99,99,113,94,111,103,102,93,100,97,102,100,105,106,96,111,103,93,111,107,96,88,127,111,106,103,102,101,101,98,108,102,104,118,103,99,107,98,104,91,109,102,97,81,99,117,103,94,100,102,113,97,102,102,111,105,107,106,100,100,104,98,105,104,97,102,97,102,97,113,103,102,96,113,96,108,111,104,107,106,100,106,102,110,88,107,104,112,115,98,100,103,108,99,109,94,96,95,100,103,95,102,112,103,100,91,99,103,107,99,90,103,109,97,96,94,93,97,115,104,99,101,109,109,96,98,87,114,102,96,109,114,80,105,102,94,108,102,101,113,104,121,92,107,110,98,108,94,99,101,87,115,88,98,105,99,99,98,106,108,106,90,105,105,100,110,111,106,103,109,105,96,103,98,107,107,98,94,93,91,99,119,102,113,92,100,104,114,83,96,113,97,108,136,98,111,113,107,94,102,97,106,105,99,115,123,102,117,102,95,109,109,101,115,114,116,105,103,124,96,88,109,110,105,99,97,115,104,98,97,102,107,111,107,100,95,106,93,124,102,109,100,106,97,104,109,101,91,110,114,102,105,98,96,106,99,112,101,110,96,101,100,102,114,103,91,101,104,87,96,105,103,113,118,103,102,104,102,99,97,115,105,110,111,105,100,109,109,105,103,104,93,109,106,111,129,106,105,78,95,110,105,103,100,120,105,96,105,108,91,99,106,64,113,103,115,97,103,100,95,110,115,96,103,95,111,105,108,108,96,100,91,91,102,102,106,109,107,106,77,113,107,107,92,110,102,117,93,107,83,111,102,109,99,119,104,95,109,103,110,106,97,99,101,104,101,121,84,100,100,109,107,92,104,95,101,109,103,100,101,107,98,109,93,93,110,105,99,109,101,111,98,106,93,114,109,106,100,95,91,95,108,108,97,99,90,116,98,94,113,103,103,115,112,103,103,109,108,105,107,109,107,96,92,110,113,103,109,96,100,104,113,112,103,95,116,106,108,100,102,101,103,102,95,83,106,112,97,103,100,91,112,103,102,105,90,107,105,106,93,113,106,93,95,77,102,96,100,97,105,104,109,82,101,113,99,104,100,100,107,107,89,102,97,96,114,112,101,106,117,102,98,103,100,112,103,113,103,103,85,88,91,102,91,95,99,95,95,106,103,99,106,98,113,95,96,102,100,99,97,105,110,109,110,110,104,103,105,109,90,103,97,90,105,112,106,100,101,102,99,92,114,102,122,101,100,94,106,102,112,105,97,97,103,111,96,105,106,111,109,97,110,108,113,106,101,98,98,110,104,92,108,99,95,92,103,104,105,102,101,106,110,108,104,110,100,100,105,108,94,100,102,95,109,101,94,108,92,99,102,108,98,105,93,93,102,98,107,110,97,88,99,89,100,92,100,103,95,96,97,105,103,104,96,101,106,89,104,111,115,100,124,100,105,108,85,107,103,111,116,102,106,119,105,93,73,114,99,96,81,122,102,104,96,107,105,98,92,106,90,106,82,87,102,108,87,87,96,106,99, +563.65924,97,89,97,117,93,100,104,104,105,116,91,85,92,96,106,109,113,103,106,93,105,98,105,116,107,108,113,112,111,104,109,111,102,98,113,105,104,101,101,101,101,117,119,96,105,94,116,105,103,116,92,95,118,103,114,87,99,106,117,100,99,116,110,100,105,112,110,113,109,105,112,112,94,108,105,98,95,96,115,102,108,93,101,104,103,90,103,108,97,107,103,102,108,119,107,101,114,110,101,95,99,104,122,113,104,123,102,90,109,104,100,116,99,97,105,109,95,109,99,104,101,92,104,87,104,104,108,104,110,119,103,111,110,92,118,125,93,111,111,94,93,106,98,94,107,117,106,95,107,112,101,101,112,101,101,113,109,75,104,106,100,97,103,114,102,108,130,94,95,103,102,111,101,116,107,105,103,75,103,97,97,96,104,99,100,104,103,104,92,100,108,98,95,102,114,105,106,99,108,107,112,92,102,95,102,104,111,101,109,92,75,115,92,105,88,106,101,101,99,95,98,116,101,103,85,107,102,132,105,103,94,108,95,103,104,106,106,104,106,101,100,101,104,99,103,109,94,101,105,116,99,99,118,95,107,106,98,112,110,110,106,111,99,100,105,113,107,103,100,113,110,105,109,100,109,104,100,103,100,96,100,98,113,103,98,114,112,100,101,103,112,97,108,110,104,96,102,102,116,114,106,97,104,88,96,98,125,99,102,105,86,106,104,121,103,105,102,103,111,101,116,95,105,108,116,94,113,83,103,96,99,102,105,105,98,117,95,97,97,102,93,98,100,92,109,119,105,108,110,104,107,106,101,107,115,104,103,113,110,97,98,113,99,114,112,110,100,109,112,110,101,100,110,93,108,96,104,90,100,114,107,102,88,114,105,89,96,100,92,103,111,100,97,109,108,113,101,100,96,111,109,107,110,105,110,97,88,100,113,102,102,115,107,100,102,107,102,105,94,100,110,94,94,96,103,107,109,98,103,115,109,99,105,95,106,100,105,100,104,103,110,101,124,113,105,95,104,88,102,117,92,113,117,113,111,114,110,106,76,100,108,106,100,103,117,101,112,100,102,97,95,101,82,101,111,98,95,114,108,107,120,110,101,112,109,110,108,116,97,109,86,103,111,103,91,102,102,110,116,114,110,100,105,114,111,96,86,101,114,101,97,113,101,102,103,100,106,105,100,99,102,105,116,92,110,104,104,111,94,105,111,108,104,104,98,110,111,106,113,103,105,114,101,111,104,96,113,112,109,102,102,106,121,105,111,99,99,99,96,105,111,100,100,104,104,110,101,109,120,94,105,91,104,92,106,117,108,112,102,111,116,90,104,104,107,99,107,107,108,100,106,108,100,105,114,98,109,105,117,106,98,109,109,91,104,110,103,103,107,109,117,105,109,100,112,104,114,108,98,102,104,113,113,101,105,116,111,112,111,98,100,108,115,95,94,112,110,112,111,103,123,104,116,99,112,106,92,115,94,112,103,102,100,108,95,104,87,108,94,103,107,93,115,100,84,114,106,102,101,100,108,114,98,122,111,112,114,99,116,106,112,96,121,94,98,107,104,105,108,112,103,107,105,106,98,106,108,88,103,93,100,100,104,101,109,108,107,112,111,118,111,100,100,112,86,108,94,109,99,104,113,103,110,111,100,104,106,102,107,113,111,109,116,84,103,95,105,101,110,102,113,98,111,106,102,113,108,113,105,112,106,102,108,96,107,81,107,118,109,109,96,101,100,106,73,109,94,100,97,106,108,107,123,109,82,106,106,108,106,96,102,102,100,120,110,108,109,96,106,119,104,111,104,104,125,100,116,115,105,111,105,97,106,112,106,113,97,93,103,111,99,101,100,94,107,103,110,120,122,98,95,101,121,96,109,106,108,117,128,99,96,103,101,112,109,117,93,100,100,82,106,105,95,71,100,95,93,95,104,107,95,113,108,101,105,99,93,102,99,118,100,100,110,98,96,104,106,94,112,83,99,110,102,91,102,113,93,104,112,107,107,109,109,125,116,96,100,104,101,104,103,119,94,108,111,114,105,98,104,105,111,112,108,87,102,96,103,102,105,118,101,107,109,92,110,95,109,113,99,107,105,104,113,105,105,113,98,103,110,105,102,104,103,110,107,101,89,86,104,102,98,100,106,99,106,108,108,96,97,101,105,113,101,105,114,102,108,105,111,99,121,98,105,103,107,107,83,108,97,112,92,101,105,103,106,94,110,119,95,95,99,108,108,103,99,104,105,104,104,112,110,100,103,102,101,102,95,110,102,100,96,102,101,98,121,104,109,111,106,105,91,112,104,103,97,101,101,105,113,101,115,118,122,88,128,104,119,106,110,110,108,130,108,108,131,124,116,132,127,145,169,182,216,266,265,252,248,211,217,193,211,230,163,174,180,181,151,146,120,127,122,129,111,111,112,112,95,113,117,102,112,122,111,110,108,111,116,98,106,111,113,110,113,113,106,105,103,113,117,112,117,104,112,101,107,107,92,113,105,90,103,103,100,107,89,110,106,87,105,103,108,117,110,102,98,108,111,97,101,111,118,92,102,106,102,116,77,119,111,102,92,95,109,119,107,111,103,91,106,99,100,100,105,112,109,113,103,98,100,103,110,96,107,105,98,114,103,113,101,121,103,101,103,83,107,106,103,104,121,104,109,108,107,131,98,110,106,91,106,90,97,96,104,113,100,106,111,113,103,116,96,108,112,101,112,105,111,98,107,112,108,108,95,108,106,119,112,109,93,106,97,95,90,105,108,105,100,106,103,95,123,119,97,108,100,99,97,103,107,84,104,102,94,103,112,113,105,110,104,119,116,106,100,96,105,98,109,96,106,106,101,94,111,104,106,95,95,119,104,110,100,104,85,108,110,103,108,104,95,107,106,112,114,109,112,103,112,105,113,118,112,116,110,98,105,98,108,101,101,108,108,105,100,103,102,99,108,104,118,109,97,108,99,114,97,95,119,110,103,102,87,118,102,100,99,115,109,100,102,102,114,99,103,109,104,115,106,113,111,111,108,105,114,106,121,107,109,103,101,102,102,106,102,98,99,104,107,110,103,102,107,112,113,106,94,100,102,103,112,87,112,102,97,98,106,94,114,104,106,108,117,126,114,118,107,94,100,106,108,111,101,99,103,105,100,106,109,106,103,103,108,94,94,96,106,106,95,102,116,107,105,80,104,92,108,106,110,101,105,113,100,90,111,111,110,93,110,108,96,124,108,99,95,90,101,115,112,109,102,104,107,100,105,104,108,106,106,114,104,95,102,108,113,101,117,110,101,96,103,98,107,95,104,113,105,109,110,107,94,102,111,109,111,118,100,110,112,102,95,102,96,112,115,113,110,112,108,107,107,103,108,106,99,112,103,114,107,102,110,105,111,106,94,107,106,108,106,101,105,113,100,102,111,97,101,99,106,121,97,108,96,105,112,112,98,87,128,107,107,104,109,113,102,104,102,101,115,116,101,111,111,107,102,105,101,100,109,104,100,106,103,110,99,109,111,104,110,99,97,112,109,108,108,99,97,117,106,128,101,109,108,107,101,100,98,108,115,109,111,108,106,99,112,110,113,100,103,96,108,99,111,101,98,113,103,108,108,105,114,110,105,110,110,103,111,73,112,101,96,104,99,102,105,104,96,94,120,100,106,98,106,92,112,116,104,113,108,103,101,101,109,132,98,110,110,109,100,103,102,103,101,104,112,99,107,93,114,111,102,97,114,111,107,85,104,99,99,102,113,103,113,108,121,102,91,110,104,104,108,115,108,107,99,108,100,100,101,106,96,107,102,98,105,103,105,106,99,111,102,109,104,92,99,102,91,97,93,114,98,116,101,100,96,111,108,86,118,111,110,97,108,107,99,102,94,109,100,108,103,110,101,106,106,97,112,105,101,95,102,79,104,95,114,109,109,105,94,97,113,118,112,95,77,112,95,101,93,108,109,112,87,100,109,113,101,99,115,98,98,105,95,95,114,100,110,106,106,106,109,107,103,119,104,124,106,87,91,102,91,117,109,104,91,104,103,99,103,115,98,97,106,112,99,111,111,100,110,95,105,103,110,106,115,112,106,103,100,110,109,97,123,113,103,107,106,115,103,104,101,116,94,97,104,111,104,109,113,96,105,114,105,102,99,122,114,96,111,121,105,130,107,106,104,94,94,106,116,102,98,91,92,114,115,106,95,113,107,74,102,94,111,106,96,107,104,111,114,89,91,102,108,99,94,103,94,97,102,103,115,108,103,97,100,98,104,98,102,95,108,106,103,109,106,98,104,102,100,98,93,102,106,108,99,101,103,99,95,98,110,102,115,109,110,113,107,97,113,95,98,98,115,93,113,100,114,104,98,109,94,128,109,103,97,114,113,99,101,106,75,95,101,99,106,112,108,96,108,109,104,91,87,101,100,110,101,102,103,106,106,112,117,96,107,113,111,91,99,95,94,96,112,111,106,102,102,105,101,99,106,100,123,92,100,111,105,98,101,100,100,104,102,115,83,106,109,107,106,121,100,90,117,108,98,111,102,100,104,108,113,103,105,107,87,101,101,113,102,109,103,106,96,109,105,101,112,101,98,105,98,95,113,108,105,97,108,109,104,105,106,105,106,103,97,106,112,107,104,113,92,113,106,104,103,98,113,101,112,100,109,104,109,96,111,112,110,107,98,107,89,94,106,98,96,101,101,110,100,102,113,99,119,111,113,100,85,107,96,100,101,91,75,101,104,127,109,112,100,98,103,106,106,113,108,102,91,105,107,104,102,102,91,108,112,117,107,104,106,112,111,90,90,105,104,91,104,99,103,129,102,98,108,103,107,97,113,103,112,112,90,108,100,106,112,103,89,73,109,108,107,94,111,101,97,101,127,105,104,109,92,102,100,104,109,95,117,94,94,107,98,101, +563.80011,111,87,104,90,114,88,84,114,92,109,100,113,111,103,114,108,107,107,104,95,110,104,99,102,103,108,108,110,102,104,91,100,107,105,104,117,100,92,88,95,68,89,102,101,107,109,106,110,100,111,104,102,107,106,110,112,84,102,120,90,92,101,107,104,96,129,92,105,99,109,119,124,89,95,81,102,105,101,88,104,93,105,90,100,96,105,101,112,108,109,104,110,96,99,109,98,102,112,109,98,101,86,98,95,93,109,117,100,101,88,90,78,105,100,106,108,92,94,88,102,109,113,103,105,97,109,105,98,116,110,97,110,118,106,101,101,102,103,94,100,99,92,104,101,97,93,103,96,98,91,109,78,103,106,112,101,114,96,106,105,107,98,100,101,105,126,86,100,91,100,92,106,98,101,121,96,103,87,99,105,98,113,92,98,113,105,111,91,117,109,96,99,96,101,100,106,100,125,99,102,93,102,98,122,92,100,117,99,110,105,100,105,95,110,95,97,104,106,104,91,101,113,100,102,95,94,96,101,99,102,90,100,114,101,94,109,97,90,97,93,108,104,107,96,108,102,111,102,100,107,114,106,104,107,95,106,101,103,112,98,103,95,105,107,102,108,107,101,107,104,106,108,101,107,104,101,101,104,101,101,106,93,109,103,96,89,103,97,106,103,99,100,83,104,134,100,100,108,108,100,100,103,108,102,106,108,108,99,103,108,108,77,85,109,96,101,104,106,99,97,107,102,110,98,109,115,103,100,117,103,114,107,107,103,114,103,101,98,94,111,112,90,94,95,112,99,115,96,102,111,114,110,105,107,100,93,103,112,97,114,108,113,104,109,106,98,113,109,105,91,111,98,104,104,95,103,97,106,106,103,115,104,111,108,99,98,104,97,101,105,105,98,109,108,104,96,112,105,105,105,103,117,116,102,103,103,115,98,102,79,95,107,116,117,100,109,97,101,99,105,105,110,106,100,100,105,106,101,101,116,96,104,97,114,109,92,109,106,93,111,116,105,100,94,104,108,88,106,102,97,115,102,100,112,109,110,106,113,103,100,99,124,118,106,106,108,102,103,109,98,108,112,104,98,101,96,102,106,106,111,107,99,100,106,95,116,101,105,100,104,113,114,100,95,91,106,102,96,91,106,110,104,108,112,91,96,98,106,96,101,112,94,109,104,115,100,98,103,107,104,114,97,114,107,100,109,113,112,87,112,105,106,100,105,109,106,99,102,110,107,93,100,113,114,73,129,113,106,99,99,95,105,100,110,111,110,112,97,105,109,105,104,112,108,94,109,103,106,107,96,97,117,106,103,95,104,107,113,105,110,97,103,100,126,109,111,106,101,104,99,102,109,109,92,111,103,104,112,121,97,106,105,105,96,101,106,93,102,113,94,105,102,118,120,114,113,100,110,107,109,105,111,100,103,109,121,103,103,106,100,100,111,102,108,98,107,100,111,91,109,106,95,100,114,84,104,110,101,103,91,101,95,105,108,92,107,104,111,110,104,94,121,93,100,110,105,107,96,95,94,95,96,109,110,112,105,113,110,111,101,110,101,111,93,114,106,109,94,98,95,112,105,102,112,98,96,101,107,111,92,97,109,96,117,96,107,112,106,105,107,110,89,100,98,99,112,109,105,107,97,106,113,103,109,95,102,107,104,103,119,111,95,106,102,100,109,102,78,104,99,110,103,108,100,113,110,107,106,110,106,100,104,106,105,105,110,107,99,95,113,104,112,111,102,87,111,105,100,99,103,103,104,108,115,104,101,105,89,101,109,99,95,119,115,111,111,114,114,95,110,97,109,105,114,107,99,103,108,108,95,99,90,104,84,112,104,116,109,112,103,110,103,103,106,108,101,111,95,98,104,100,103,97,107,110,119,108,98,92,102,107,103,100,108,83,116,100,105,113,101,98,100,107,109,100,106,98,98,95,102,98,100,103,110,97,104,103,93,86,108,96,99,108,104,99,102,90,108,117,101,88,111,108,97,110,117,98,95,99,104,109,89,105,94,103,96,101,109,108,100,98,109,112,110,101,105,101,108,98,103,107,113,112,104,104,103,92,100,99,110,97,103,85,116,118,107,106,100,107,101,102,106,103,97,116,96,94,109,108,113,101,114,111,105,95,106,104,109,96,122,111,104,109,108,112,114,102,105,102,110,91,98,110,100,94,107,106,124,95,109,78,117,107,98,114,104,97,108,104,106,98,107,99,107,109,104,104,109,97,97,105,107,85,106,105,88,104,100,101,109,98,91,101,100,80,103,100,107,103,94,97,105,107,92,121,113,111,103,101,101,98,106,97,101,116,106,106,114,108,117,110,106,111,106,113,105,104,110,101,94,113,107,126,124,115,109,115,129,153,179,162,228,220,259,215,250,182,241,225,220,231,203,228,188,181,159,155,135,131,119,112,115,113,107,113,115,116,107,107,93,100,120,128,110,114,107,113,119,101,112,113,99,102,105,113,102,100,111,111,109,103,101,95,116,116,99,100,97,118,108,103,107,111,95,116,112,119,106,115,105,105,105,113,97,107,115,100,116,110,120,105,92,101,112,101,99,79,106,97,107,119,114,112,101,94,107,100,124,116,101,119,108,112,103,95,95,113,94,105,109,118,100,103,102,100,107,104,132,100,105,102,91,102,107,102,113,104,105,115,100,118,121,111,99,101,98,109,136,111,98,112,116,108,105,115,104,118,113,113,105,106,109,93,103,109,103,104,100,92,109,105,107,104,104,112,104,99,94,101,106,117,117,96,101,105,114,104,102,106,82,103,110,101,105,109,109,104,98,104,96,102,124,99,105,108,86,112,100,102,108,96,107,103,99,97,104,105,105,104,113,93,118,104,93,102,96,113,97,100,115,115,94,100,113,111,120,113,103,106,100,106,102,109,99,98,98,100,105,91,109,112,113,111,109,112,115,102,99,94,97,105,108,102,112,101,106,105,94,101,96,110,112,105,101,98,97,113,116,105,98,93,97,102,110,103,112,93,109,109,104,107,96,91,104,116,106,125,98,104,100,106,104,103,109,92,100,100,106,97,107,127,104,117,100,102,96,109,100,102,117,104,105,96,106,107,113,106,99,114,106,102,107,105,117,107,96,111,109,115,103,111,105,106,109,99,98,103,101,106,109,91,95,115,95,100,91,105,102,104,93,101,94,108,100,106,106,113,94,115,102,112,104,100,101,112,107,110,100,109,104,106,109,106,108,107,102,103,110,95,99,102,109,109,105,97,101,103,98,105,108,109,108,110,109,105,95,98,104,105,94,97,101,111,112,103,96,106,111,97,105,99,99,109,112,101,99,100,106,95,99,111,105,94,112,108,102,96,94,109,107,100,103,95,103,104,109,103,92,112,109,87,97,109,110,109,104,109,105,106,107,110,101,102,104,111,113,105,108,94,98,101,106,106,106,109,110,106,82,102,111,102,104,111,113,104,100,104,100,91,101,105,114,106,96,88,103,97,96,93,101,109,103,105,110,97,110,104,95,108,111,98,117,107,107,112,105,107,111,104,100,102,105,112,111,107,117,110,114,101,106,107,102,118,93,85,106,94,100,108,106,108,109,103,98,95,107,107,95,112,105,95,110,99,115,103,114,102,110,96,97,93,118,109,106,97,90,113,80,104,112,107,99,110,111,100,113,102,103,104,96,99,100,104,108,102,94,105,103,104,101,102,107,94,105,98,104,107,104,106,100,99,99,104,94,121,105,100,101,101,95,113,109,117,96,76,93,107,72,112,100,101,95,103,108,103,107,104,91,99,81,106,101,111,107,114,109,96,94,114,116,89,98,102,115,116,106,102,117,109,83,118,115,104,98,104,104,94,98,99,107,97,100,120,114,96,111,105,102,109,110,102,111,94,109,112,105,98,96,104,112,120,106,111,102,108,103,97,109,100,110,110,102,99,99,104,99,104,112,115,94,95,97,106,112,80,105,101,110,106,112,107,109,99,110,104,80,101,102,104,112,117,107,102,110,105,94,105,112,105,93,104,102,96,108,105,102,99,105,98,109,113,110,105,97,107,111,95,107,108,104,123,111,111,91,109,99,106,102,104,109,104,104,99,107,108,112,105,107,107,101,101,108,96,117,106,110,107,118,104,110,99,116,102,112,110,109,114,107,102,92,105,93,96,119,112,114,98,107,100,117,106,107,100,99,109,98,101,107,84,94,105,87,101,102,109,114,109,100,93,97,98,94,107,115,109,83,97,99,102,102,99,101,103,109,98,91,89,111,95,110,95,108,102,99,107,105,110,117,111,99,106,108,106,100,104,108,106,91,97,92,88,96,105,101,106,105,96,96,99,113,109,110,107,109,102,106,95,109,97,108,95,97,100,108,95,96,102,99,100,100,98,103,106,108,104,101,98,113,84,92,108,111,106,98,93,102,76,94,105,109,95,91,94,111,91,104,105,110,116,93,113,99,92,91,98,98,99,99,109,120,102,113,104,110,99,108,96,110,101,107,116,92,112,80,98,108,108,94,91,101,98,100,77,113,108,94,105,108,113,96,88,103,97,92,100,100,102,110,92,107,97,109,98,101,106,109,106,91,109,108,95,114,110,104,108,109,106,91,93,95,110,80,114,100,92,95,111,99,100,101,97,103,104,119,117,92,97,126,105,98,97,99,101,111,103,100,103,98,95,109,99,101,76,108,98,94,96,108,94,95,109,91,98,98,89,107,107,106,99,119,113,94,107,105,112,98,97,102,101,104,98,106,107,100,89,94,96,101,110,114,100,96,126,102,106,91,89,130,112,104,107,99,98,109,108,106,106,104,109,110,91,77,108,128,109,107,101,103,105,91,98,128,112,84,105,114,120,98,102,108,109,100,97,100,106,100,111,97,109,98,101,115,99,104,102,102,99,111,95,100,112,101,81,97,110,110,109,102,95,98, +563.94104,110,89,104,88,93,94,86,103,92,110,112,103,102,101,106,121,93,96,114,107,119,98,97,89,109,121,100,109,124,115,107,94,97,87,92,117,100,113,92,116,97,93,96,106,104,103,123,101,99,106,107,91,93,91,110,88,95,113,109,107,95,99,106,105,97,102,90,115,104,99,99,111,107,98,95,102,84,106,104,98,110,115,101,105,104,111,100,109,109,105,99,114,109,105,104,97,118,103,108,92,100,95,82,112,118,112,95,94,111,97,107,109,105,93,116,92,107,113,103,105,100,102,111,104,110,111,106,93,103,107,104,109,110,95,99,105,96,105,96,94,104,110,110,103,96,100,107,112,72,106,100,105,106,104,99,96,92,107,125,105,102,116,104,123,85,102,94,94,96,96,98,103,97,106,95,93,104,93,104,103,109,106,109,104,106,98,105,102,118,103,87,109,103,95,102,97,106,107,106,105,102,97,103,107,94,115,96,115,108,105,95,100,118,116,130,94,88,104,100,104,111,98,129,111,99,103,102,114,104,120,102,75,103,109,105,103,107,103,105,111,91,97,102,107,99,97,106,64,100,110,95,108,98,117,100,98,103,107,110,106,101,113,105,110,97,112,103,104,102,93,107,93,100,94,100,114,106,113,98,86,105,106,99,107,110,103,110,106,101,100,102,92,110,106,105,109,102,102,99,102,106,100,99,117,103,114,104,101,109,100,102,105,102,108,99,99,98,108,101,103,115,100,105,91,98,113,101,103,107,102,115,89,112,95,114,104,109,104,89,103,100,98,97,90,97,105,108,103,99,106,97,103,103,116,112,109,104,104,110,105,118,96,107,109,110,86,98,104,102,103,104,101,111,104,102,102,106,98,107,110,100,102,94,111,83,100,101,99,103,108,105,82,91,109,99,105,103,98,98,84,104,103,98,88,87,95,106,109,104,95,93,104,107,106,118,109,95,108,91,110,99,94,86,103,104,104,100,97,101,107,109,100,108,109,97,109,100,87,110,92,103,108,95,104,96,108,115,95,94,120,94,107,100,96,100,97,102,105,109,105,102,99,110,108,108,104,101,110,103,108,112,108,113,108,116,94,104,109,103,105,102,99,113,103,100,102,106,114,92,105,113,111,100,105,109,110,98,115,114,110,114,107,96,106,96,105,86,93,102,99,108,96,104,110,103,109,105,100,110,120,99,100,99,105,95,102,106,104,98,104,101,95,101,114,87,102,109,102,109,117,96,106,91,109,97,102,112,103,97,99,107,109,108,73,104,91,100,113,99,117,101,107,103,109,97,103,92,104,102,102,119,104,107,102,91,100,106,101,113,104,103,99,101,118,105,97,114,93,91,106,115,78,94,104,113,103,105,104,116,103,106,109,104,103,102,102,101,111,112,100,108,104,100,103,103,102,110,109,91,105,102,103,104,104,99,102,112,95,117,102,109,114,104,107,98,98,110,90,115,124,108,102,86,95,101,98,99,91,103,110,85,115,110,113,101,125,100,114,110,113,117,116,116,105,97,105,105,98,111,111,118,114,114,94,105,106,99,100,99,105,99,107,112,95,106,104,106,101,101,101,92,109,97,110,118,103,103,98,104,101,102,98,105,104,108,118,108,129,93,105,100,95,97,102,105,97,95,92,108,102,81,95,105,102,82,102,113,110,105,100,95,111,106,99,99,97,113,105,110,105,113,103,100,111,101,127,110,100,101,99,114,102,107,98,111,104,101,101,120,97,101,108,98,99,96,93,91,85,92,107,106,104,109,99,98,101,87,94,71,106,105,114,110,110,93,102,100,102,114,103,106,109,102,95,109,110,101,101,100,113,96,104,99,119,111,108,101,108,103,112,91,108,102,94,100,109,97,102,102,99,96,103,99,111,100,115,115,105,99,120,106,105,109,91,105,108,104,114,102,110,98,108,108,95,109,108,97,104,95,92,104,105,90,108,112,112,107,105,90,103,109,98,107,110,110,97,78,106,110,109,96,95,102,100,95,99,108,94,94,107,108,100,99,113,106,109,106,102,104,93,91,104,110,110,103,101,95,106,101,103,117,126,125,96,110,102,100,106,101,94,108,100,105,99,99,112,77,113,109,104,104,95,99,108,108,104,102,105,106,108,103,111,117,111,105,116,104,109,109,110,99,101,111,104,90,99,97,98,105,137,100,100,99,105,106,113,101,113,105,93,109,103,103,104,104,107,92,103,100,103,99,96,101,99,111,102,98,97,109,101,105,107,106,107,105,82,88,103,94,94,110,102,121,73,99,89,84,111,111,105,98,109,99,102,115,102,112,128,91,104,104,113,90,100,101,121,101,100,103,96,104,121,100,103,107,94,121,122,109,114,106,107,107,113,108,122,127,138,149,144,163,182,198,241,254,254,230,225,211,202,230,193,192,179,198,157,132,134,139,133,112,121,99,117,119,94,100,108,113,111,107,107,96,106,111,105,110,99,101,101,106,111,101,115,107,108,107,97,106,103,124,95,102,89,102,108,121,97,107,106,112,89,103,97,69,99,102,98,105,112,102,124,114,84,98,95,109,107,100,105,103,108,101,99,99,107,99,105,110,109,121,103,105,94,105,98,105,106,109,92,109,91,96,106,100,101,101,117,110,88,110,109,111,111,102,108,127,121,96,103,120,96,97,98,100,109,105,102,113,137,92,99,108,115,113,122,98,96,117,98,112,101,102,105,114,90,117,98,107,108,95,110,103,93,114,120,109,98,109,102,99,106,108,103,94,103,98,97,107,102,99,96,102,104,110,105,97,113,104,96,103,102,103,103,106,112,107,96,105,97,106,99,109,96,103,105,104,119,98,99,102,92,102,101,108,87,101,105,90,107,104,99,112,109,114,100,96,109,103,119,106,102,107,95,106,105,98,95,103,117,102,95,106,105,111,101,100,97,106,97,103,95,107,98,109,113,100,115,101,92,98,115,97,97,109,116,103,95,108,105,104,103,107,115,119,99,99,110,102,107,94,103,106,87,101,109,97,91,101,103,111,104,97,100,103,97,114,101,102,94,103,99,107,98,109,117,101,89,103,102,92,106,98,93,107,110,90,129,101,110,101,107,101,99,104,118,98,104,111,95,83,99,103,101,103,105,111,99,107,99,106,89,103,108,92,90,109,104,99,104,97,108,100,104,102,98,108,90,100,103,98,98,108,113,106,94,70,105,110,108,108,96,103,106,110,103,106,101,113,101,93,109,94,113,107,91,98,113,98,115,99,103,108,108,92,105,107,105,122,92,92,102,101,118,95,102,95,102,85,111,105,99,94,103,109,99,95,93,105,121,98,96,105,108,107,109,94,112,97,106,100,123,100,103,106,107,100,105,103,98,113,94,106,117,106,102,103,109,113,108,111,111,101,99,93,99,96,102,88,98,110,101,108,113,95,114,103,84,93,105,94,98,101,108,104,107,107,106,92,106,109,97,102,95,97,91,115,104,105,94,104,113,110,80,107,103,98,103,107,98,110,104,102,101,104,105,104,87,109,107,105,107,95,98,94,99,114,116,93,96,105,98,102,104,103,109,76,112,97,108,106,105,115,109,102,107,97,108,105,109,114,104,95,113,101,90,116,105,103,92,101,112,82,106,100,111,107,99,117,99,84,90,95,109,101,98,106,103,125,121,100,114,112,102,98,105,96,103,106,112,96,105,111,103,103,105,103,104,111,100,104,108,97,99,117,96,110,119,99,97,111,129,104,99,104,87,100,102,95,96,103,109,97,91,109,96,99,99,104,97,109,96,101,106,96,92,103,106,102,102,113,105,100,98,106,106,101,106,109,105,94,114,111,100,112,92,104,109,101,116,110,102,99,113,95,100,99,100,103,114,89,102,113,110,110,109,104,93,103,96,100,104,104,109,106,105,105,106,104,118,89,102,99,107,103,100,99,100,105,106,99,116,108,100,101,99,106,99,102,103,104,110,86,88,96,108,96,102,111,99,85,117,93,116,92,100,93,102,93,88,108,93,99,102,111,99,109,107,104,112,104,101,103,119,115,91,115,110,103,94,124,95,96,102,104,104,107,97,106,97,99,99,104,105,135,98,121,106,100,100,102,103,77,90,102,109,103,109,108,104,94,94,104,117,114,109,104,113,96,95,99,97,102,109,107,105,105,95,104,107,105,98,93,93,99,105,104,105,103,117,105,101,98,95,104,102,87,99,110,92,114,95,106,105,100,101,100,106,102,129,105,111,91,100,110,101,103,111,95,107,103,97,99,104,83,93,106,97,94,95,101,111,109,99,118,101,103,100,110,99,108,74,106,101,106,103,91,106,95,109,99,111,100,96,105,105,107,105,111,110,94,116,125,109,105,101,138,96,95,114,102,104,93,109,103,107,91,108,102,100,101,99,107,106,95,105,65,102,101,96,97,89,103,96,99,101,102,108,103,103,88,84,105,102,100,115,88,102,111,111,101,98,96,108,113,111,105,99,85,109,110,116,106,101,110,80,101,100,103,90,105,104,102,96,108,98,91,101,105,98,90,105,95,103,100,101,92,97,98,93,90,99,95,100,99,101,95,92,110,100,103,104,102,97,112,104,103,92,105,102,105,108,100,96,92,96,106,104,103,100,105,91,100,104,102,97,106,76,107,105,103,100,104,102,106,105,106,109,108,97,95,102,103,102,112,96,110,113,116,114,96,83,96,111,102,100,90,94,111,95,99,113,113,104,108,84,102,103,100,92,98,109,98,106,113,112,98,105,103,95,98,115,98,94,105,100,101,99,92,102,98,105,98,98,103,92,93,95,106,110,100,73,100,101,90,98,103,104,97,112,106,93,95,72,87,119,104,111,102,107,98,97,105,64,109,109,100,100,97,92,95,109,91,104,91,104,98,106,104,93,105,108,65,97,99,97,107,101,120,95,105,102,101,103,104,112,102,82,101,105, +564.08191,123,106,98,95,109,110,86,98,95,89,111,100,105,114,92,97,101,97,118,103,101,109,102,89,96,107,103,100,101,113,101,125,109,107,105,111,101,94,105,109,102,102,112,105,101,103,95,105,110,113,90,100,105,113,113,99,102,115,108,103,105,99,96,101,96,104,99,100,101,107,100,114,97,102,93,111,109,83,110,107,105,100,102,93,114,95,115,104,100,101,113,94,101,103,95,102,103,95,110,112,94,103,107,114,98,100,108,97,108,88,105,100,108,104,95,98,109,97,118,101,104,99,86,103,98,109,90,108,110,100,72,104,97,107,94,109,89,98,105,107,99,103,96,86,96,95,104,84,105,117,104,112,109,84,101,97,105,100,113,106,103,98,109,105,113,103,112,86,108,119,104,107,106,109,101,98,98,74,103,107,114,105,104,108,109,105,79,91,107,113,105,112,106,119,92,101,100,103,106,95,95,112,118,119,97,111,115,108,108,114,101,110,108,78,114,104,109,110,105,83,111,110,113,111,100,104,108,109,89,99,103,110,100,104,110,113,106,103,107,110,101,95,103,102,108,101,111,98,96,102,108,102,94,108,103,106,95,100,98,103,93,116,108,105,110,95,101,90,94,103,111,102,99,123,114,106,109,110,105,121,121,104,112,105,102,110,90,112,104,107,100,104,106,105,105,123,103,105,103,101,103,100,108,107,92,107,85,103,98,110,95,97,116,112,115,107,99,102,99,97,100,101,100,108,102,99,94,98,112,118,112,105,100,107,117,115,88,103,103,107,92,111,105,103,91,105,100,104,101,113,111,106,108,116,91,94,110,112,94,98,100,111,107,100,95,99,100,125,100,106,106,105,98,116,114,107,100,107,114,107,107,108,94,109,104,104,99,90,109,114,109,104,104,122,103,107,101,102,106,98,109,103,103,106,111,102,99,99,86,97,92,108,92,117,115,93,108,107,108,105,102,97,114,97,105,95,102,110,105,105,105,104,108,102,110,102,101,95,101,103,89,99,79,104,102,96,108,98,91,106,108,109,100,114,122,102,101,100,109,103,99,104,112,109,111,108,104,110,109,109,93,105,110,105,99,101,94,114,99,95,99,109,105,99,89,100,99,105,96,110,109,99,106,108,100,120,95,111,108,101,114,103,102,105,100,105,98,104,108,100,115,99,106,102,106,89,102,99,110,105,110,103,103,113,110,99,108,104,112,108,107,113,108,101,104,108,105,109,96,108,118,124,91,112,67,100,101,99,99,107,99,108,116,94,103,110,102,96,110,111,109,105,98,99,106,109,107,110,120,105,87,98,101,105,105,103,105,102,103,108,98,102,113,105,104,115,113,125,109,95,105,109,110,103,119,103,101,101,117,100,109,116,107,111,109,119,86,97,100,106,102,108,120,102,114,102,104,105,105,96,116,96,104,109,115,97,118,115,107,97,100,112,117,112,102,112,101,97,111,94,108,92,104,101,104,99,103,109,110,112,96,112,108,106,107,110,111,123,97,110,99,101,106,108,90,105,109,104,100,102,109,101,107,92,102,108,102,114,109,104,130,109,128,91,100,112,97,96,105,106,105,112,84,103,104,103,103,110,99,109,104,106,100,101,89,109,105,103,104,99,103,106,108,116,107,109,108,103,98,104,112,110,113,113,94,108,110,111,104,116,110,107,100,104,105,102,96,105,112,101,105,99,91,102,112,106,112,102,103,103,110,108,104,102,109,101,106,94,112,106,106,107,102,97,102,94,103,104,109,95,96,101,111,102,110,105,104,102,102,107,95,95,120,102,114,117,116,112,98,109,115,103,105,121,118,110,106,95,111,103,100,106,117,107,105,109,110,107,111,90,106,95,121,100,103,77,103,105,109,104,98,109,101,105,108,101,106,107,100,117,112,106,111,111,107,98,103,113,120,108,105,116,90,113,108,104,100,107,114,101,104,104,108,106,112,112,108,108,110,111,109,108,104,95,106,107,112,106,114,103,100,113,79,100,103,100,118,103,104,102,98,101,110,114,109,91,97,80,115,108,97,108,101,111,105,105,101,115,104,105,126,106,110,96,105,102,101,105,94,96,110,98,116,126,97,97,109,105,109,107,109,102,108,110,115,109,107,106,102,95,108,103,103,113,109,99,110,103,106,102,106,89,112,94,108,95,96,106,116,105,104,98,113,111,97,112,109,107,101,104,104,99,104,109,108,108,106,117,100,109,113,101,86,94,107,109,105,105,99,103,103,110,100,109,109,112,104,101,99,98,108,99,108,118,105,121,95,117,107,113,98,107,102,94,112,114,116,113,107,103,112,118,103,106,104,108,125,94,105,109,108,114,102,102,116,125,100,119,116,129,116,113,118,116,118,125,138,127,167,169,184,212,242,262,224,228,216,236,183,260,215,200,207,170,174,142,143,112,122,122,114,111,149,109,105,110,109,96,110,130,99,117,118,132,106,107,94,110,96,98,91,101,101,92,103,102,106,96,114,107,103,114,113,95,99,106,97,94,109,113,99,104,107,113,102,110,108,103,101,109,109,103,90,100,97,104,95,106,95,110,78,102,106,108,98,100,106,115,95,100,105,104,97,99,109,99,91,100,101,102,111,95,99,112,94,106,104,102,107,97,106,105,106,115,109,103,109,90,112,101,96,108,110,97,106,98,98,112,106,112,110,127,106,93,93,109,110,102,111,99,110,94,105,110,103,94,106,109,94,103,99,97,102,108,104,102,105,98,97,100,108,112,112,104,99,110,103,108,117,99,102,94,117,104,96,105,101,110,104,111,98,109,101,104,98,111,107,112,111,99,107,106,105,110,103,103,112,109,86,104,106,137,108,96,103,108,98,109,102,95,98,98,103,110,106,113,101,126,109,99,112,103,91,104,111,104,100,102,92,115,114,117,95,101,94,99,109,86,109,109,114,109,108,98,116,98,106,106,101,105,113,107,97,108,107,108,128,109,102,97,95,111,99,109,105,97,103,98,102,101,116,102,104,102,103,98,93,111,110,108,115,110,103,109,111,93,108,100,107,117,91,97,116,110,96,105,116,98,101,106,100,102,108,104,103,95,102,95,115,102,111,98,109,104,106,85,107,109,87,107,99,106,106,99,113,102,109,109,105,103,113,92,104,109,109,106,97,99,99,99,104,101,98,102,94,102,106,104,112,111,102,103,113,98,110,102,98,99,102,108,104,104,100,99,101,101,107,105,108,96,106,105,103,106,112,102,100,110,148,113,109,99,102,109,95,97,106,111,110,104,102,105,104,108,104,98,108,102,99,103,90,90,96,102,104,98,107,98,107,107,103,88,115,109,102,91,96,102,94,99,99,115,77,111,99,109,103,99,110,101,112,89,100,94,96,113,108,102,110,92,103,99,104,110,110,105,99,110,88,105,106,109,92,104,108,109,103,92,110,105,98,99,98,99,108,107,103,100,116,107,96,95,104,102,105,101,71,102,103,99,101,93,107,98,81,99,103,95,96,101,105,106,99,98,100,90,113,102,118,101,105,110,91,99,109,117,95,95,100,97,110,105,105,94,102,112,95,109,94,97,103,102,82,110,103,108,113,104,79,108,112,102,105,101,105,106,104,99,105,94,104,104,94,115,101,95,109,101,105,106,105,107,91,111,108,102,107,108,104,106,98,107,102,101,119,103,99,100,101,90,102,109,99,106,101,94,99,106,108,105,106,104,109,125,100,97,109,101,109,105,104,111,98,116,113,110,114,114,100,82,95,101,103,100,96,103,110,103,113,94,99,109,97,103,100,104,98,107,95,100,112,98,103,102,92,107,109,102,103,100,99,104,103,110,106,103,94,98,105,100,113,99,108,107,117,105,108,106,100,109,114,110,107,108,119,96,116,96,102,101,96,112,101,102,113,101,98,115,112,105,98,109,99,96,105,106,111,91,91,91,102,105,90,113,97,102,109,99,108,106,109,101,110,98,100,113,102,105,102,112,106,102,101,109,114,98,100,102,97,102,107,107,87,99,99,103,116,103,90,113,107,98,96,108,109,91,100,118,99,105,105,106,124,106,89,106,111,94,115,106,104,103,105,97,109,115,105,96,103,72,110,95,102,102,98,101,120,92,104,108,111,95,106,103,109,108,99,104,100,107,98,117,111,95,106,107,104,105,114,110,100,113,98,105,97,104,105,99,106,108,102,102,101,101,94,105,116,106,118,99,108,110,116,105,104,113,93,99,106,101,100,106,99,89,114,100,109,112,111,107,108,106,100,105,97,106,108,93,106,104,92,109,108,113,97,104,89,103,108,105,111,104,109,107,103,104,140,84,79,110,109,104,100,103,106,115,89,103,112,110,93,101,105,108,91,99,111,102,113,101,95,109,90,106,104,117,97,102,115,109,117,125,108,101,104,105,107,101,101,95,114,108,97,92,109,115,103,99,115,101,104,95,61,108,94,103,105,100,114,104,106,96,100,99,104,94,101,101,102,105,105,114,106,101,91,92,79,108,107,94,99,95,98,103,102,98,104,104,95,99,107,98,101,97,98,107,104,110,96,114,99,107,85,110,94,101,94,92,101,103,112,106,99,102,91,108,107,103,107,102,123,106,98,91,113,108,109,112,97,96,97,96,96,104,105,107,100,105,100,100,94,96,100,111,93,100,101,106,92,88,96,110,126,89,116,102,108,106,106,104,108,105,109,93,96,97,95,101,95,113,95,101,101,102,87,110,112,102,99,83,79,104,102,106,85,114,101,109,92,95,117,111,95,107,100,101,99,85,115,92,91,103,113,102,96,94,114,109,98,97,95,93,104,112,98,104,110,98,107,100,111,101,91,100,107,104,113,116,111,113,105,99,91,82,104,117,96,93,103,114,102,111,99,106,92,106,94,98,100,93,96,89,98,96,109,96,115,100,104,102,109,112,105,100,110,90,110,100,102,101, +564.22284,101,102,100,122,111,96,97,105,105,84,100,117,100,100,106,102,113,95,102,98,83,92,111,100,95,97,119,98,111,109,94,103,106,105,101,107,95,90,102,104,102,123,98,102,110,109,96,105,108,100,109,93,103,99,104,101,114,86,111,101,98,107,95,112,95,104,101,110,112,105,115,105,110,98,110,114,109,110,118,106,103,105,121,113,106,103,102,108,108,113,105,111,102,106,100,100,112,110,103,113,117,107,101,100,101,64,106,113,89,101,100,109,115,96,112,97,95,107,92,103,108,100,107,106,107,94,100,117,99,106,95,104,99,106,121,102,99,102,98,92,93,112,92,118,94,114,100,101,102,110,96,106,102,100,115,108,102,100,111,103,103,102,104,105,98,91,94,102,110,98,90,84,108,90,94,104,105,104,92,111,98,110,105,104,106,114,102,100,113,110,102,97,99,103,112,100,105,120,107,108,99,109,107,99,96,112,117,90,107,118,105,112,101,106,105,114,101,106,92,88,111,114,109,97,106,112,103,106,101,100,108,117,109,103,96,108,105,108,112,107,107,104,116,95,102,103,100,108,103,111,109,99,93,103,96,103,108,105,92,99,108,91,104,106,102,121,107,88,123,96,109,116,112,104,110,103,109,91,95,107,103,114,97,103,95,109,106,106,107,112,109,116,107,109,108,114,111,113,112,113,103,102,108,108,91,113,105,103,104,108,110,106,108,109,117,107,110,116,109,69,116,96,96,104,112,104,111,91,114,111,109,87,110,101,104,111,98,112,111,113,106,110,94,99,100,109,105,116,118,113,107,103,94,111,110,109,118,111,108,113,105,109,101,100,110,101,104,108,101,109,104,113,103,99,127,97,98,99,109,110,107,117,94,110,105,99,95,99,108,102,91,101,101,102,109,104,98,95,100,102,98,101,98,105,113,92,110,100,98,115,108,91,110,104,109,110,98,105,108,96,117,113,98,105,101,96,112,94,104,109,95,113,109,102,112,99,103,104,105,98,105,105,101,104,95,109,98,109,101,120,101,98,95,110,107,105,103,105,100,109,99,113,107,94,108,95,106,92,121,105,112,113,94,98,106,96,100,113,102,100,104,114,102,105,105,117,109,99,111,114,105,110,107,92,108,105,97,110,99,110,106,126,86,94,106,95,96,103,105,97,97,110,103,117,115,103,108,107,101,99,102,106,117,106,100,113,107,104,110,106,111,109,101,95,99,104,96,98,115,107,97,82,102,98,97,106,109,105,100,102,100,109,111,106,100,90,103,100,94,99,104,105,113,88,107,100,117,105,119,107,98,107,101,109,112,102,92,108,114,102,94,112,98,99,99,101,110,112,109,101,90,105,108,109,107,122,102,102,116,100,108,113,111,105,104,109,109,105,119,104,85,107,103,108,109,100,98,109,116,93,108,109,103,104,109,112,106,99,107,106,113,103,99,117,99,113,117,103,101,96,105,117,98,96,92,92,108,94,98,112,103,110,104,99,102,101,99,112,109,95,110,106,105,100,107,95,108,108,97,104,93,107,106,100,99,118,105,100,105,109,98,98,92,109,104,102,98,99,105,112,103,96,96,116,108,105,114,107,97,91,109,108,105,107,90,112,99,109,99,97,107,106,90,105,107,100,103,113,109,103,99,104,99,107,95,98,107,99,103,117,116,99,103,99,98,112,104,105,109,102,116,117,97,106,116,91,107,110,107,109,111,116,107,104,110,108,102,112,102,98,103,103,91,106,96,102,102,109,103,105,116,107,105,95,111,102,111,102,101,101,106,106,104,108,111,103,100,107,99,128,118,78,106,104,104,98,120,110,103,107,101,105,107,112,110,109,110,92,121,104,106,106,101,102,113,96,109,111,101,107,108,105,111,75,108,106,109,100,104,108,109,97,113,113,120,101,106,104,102,98,103,102,115,105,80,104,104,92,110,104,101,100,93,102,97,101,109,102,101,98,107,106,81,102,102,106,95,106,98,110,105,117,109,115,95,106,126,110,94,107,112,102,100,110,110,100,99,122,105,110,108,111,104,100,106,99,99,94,101,108,110,105,103,84,102,94,99,98,103,96,88,117,120,122,106,113,95,108,117,112,104,108,109,103,100,110,110,101,108,118,100,112,108,121,110,105,121,111,99,100,102,102,107,104,101,108,109,108,107,117,97,113,119,107,106,104,100,106,105,108,116,125,89,92,117,109,104,116,100,99,106,105,106,103,111,109,101,94,97,113,101,106,111,117,99,105,111,87,113,100,102,87,99,105,100,117,107,105,116,123,104,102,99,107,125,107,105,106,111,109,113,104,91,110,92,106,113,113,107,120,105,117,120,102,109,112,125,124,109,119,101,94,110,101,138,116,111,149,152,130,189,213,228,269,284,252,249,254,224,207,188,207,212,179,151,163,148,137,137,153,129,123,107,127,109,95,125,109,110,94,92,115,112,117,117,104,100,105,89,107,107,105,83,113,113,108,96,100,115,113,107,117,103,103,123,102,87,95,115,104,99,88,106,105,93,104,104,104,110,108,110,110,113,91,106,91,100,101,106,107,115,92,107,103,105,101,112,109,107,94,112,103,102,111,114,107,111,99,102,100,108,95,102,106,94,110,107,97,104,96,113,94,105,106,100,103,106,115,103,102,108,108,99,95,103,105,110,117,111,103,98,107,102,108,102,110,105,100,107,107,88,116,113,116,112,112,113,118,96,117,101,97,106,119,111,115,115,100,120,105,102,97,102,101,105,100,113,105,111,113,113,94,116,102,105,109,120,112,98,105,106,100,102,112,104,104,96,111,108,105,106,85,95,103,104,103,110,106,107,114,105,109,111,107,113,115,102,104,115,107,108,100,105,93,95,101,96,100,108,120,104,109,101,106,106,102,124,100,101,119,119,105,112,114,112,99,102,104,101,112,130,95,111,114,94,109,104,106,112,100,100,118,121,103,113,117,101,117,98,104,111,117,115,116,96,110,108,101,98,102,112,113,92,98,92,101,80,127,88,103,114,89,101,105,108,113,113,112,99,99,99,95,107,114,101,108,107,98,96,119,105,103,107,99,105,111,105,104,112,114,96,104,113,92,108,103,97,109,95,92,115,112,119,99,115,106,107,113,94,103,108,102,101,107,109,110,96,103,103,115,88,95,104,101,108,111,103,105,110,138,103,117,100,106,103,109,109,101,105,108,107,97,87,105,105,104,95,95,112,107,106,99,108,100,100,102,98,117,111,98,114,121,105,98,100,108,110,96,97,101,107,102,115,111,108,104,112,108,109,113,103,103,95,104,106,99,103,117,86,94,107,111,107,114,100,111,119,103,110,94,109,108,109,106,107,102,94,103,112,106,108,109,94,111,112,98,102,109,101,108,103,106,95,98,113,108,105,105,106,99,102,107,99,112,104,105,105,105,98,104,109,88,117,109,101,105,107,107,99,102,117,98,93,105,93,79,105,106,101,107,101,109,116,105,97,99,117,109,100,96,106,106,111,104,109,98,117,111,103,108,110,103,103,109,106,104,104,108,112,90,110,106,97,113,94,82,105,100,98,99,98,103,112,99,96,117,98,112,110,84,104,100,120,112,96,105,118,109,104,95,103,101,106,107,106,103,95,107,108,110,93,110,100,104,119,100,103,112,99,95,109,88,100,106,90,98,103,96,112,96,108,103,103,106,110,97,101,110,109,93,100,105,105,104,107,99,103,101,106,107,86,103,109,102,111,98,107,132,118,101,106,106,113,105,117,111,107,111,107,98,109,96,117,100,106,106,105,102,103,117,114,89,85,65,120,121,109,90,107,103,92,105,94,94,95,109,111,111,115,91,98,109,105,96,103,109,106,98,98,109,96,97,102,91,99,109,107,93,99,77,111,104,106,105,102,71,103,103,97,112,108,97,94,110,91,105,100,110,120,106,108,108,105,107,113,100,112,117,103,95,108,110,113,109,103,107,111,115,106,102,99,111,116,101,104,106,122,111,102,100,99,113,110,109,99,99,122,125,111,105,97,105,91,104,102,107,106,99,100,103,100,128,110,111,107,100,115,112,105,109,111,111,97,92,98,128,101,107,102,106,104,104,104,100,100,102,104,102,98,98,112,105,103,109,108,108,111,111,112,109,112,92,107,117,106,111,101,102,73,111,104,106,107,106,112,120,118,101,92,98,104,99,104,99,115,98,105,109,96,97,105,120,111,112,114,110,107,114,104,109,112,99,107,108,100,105,108,105,123,107,106,101,110,120,85,103,109,98,104,99,104,97,117,108,101,109,92,113,105,94,97,107,109,102,101,112,102,105,100,99,115,103,91,98,102,111,93,115,103,110,107,106,109,102,102,109,113,122,102,93,113,75,106,114,99,105,110,108,105,112,117,100,103,106,116,106,88,108,112,80,105,112,86,98,110,105,115,105,74,99,87,95,103,103,93,116,104,103,104,113,119,108,89,105,112,103,95,112,108,105,108,96,107,113,102,98,113,105,98,106,107,113,116,104,98,99,97,117,101,99,94,106,112,104,108,115,93,96,97,96,99,102,106,104,98,114,108,104,108,107,97,99,111,92,103,109,109,102,106,104,101,109,105,91,111,104,101,102,102,106,110,101,115,99,107,96,104,106,112,104,100,103,103,102,106,105,118,108,103,113,111,120,110,103,106,101,114,111,102,96,104,129,106,101,95,102,113,123,103,91,96,118,100,113,102,97,111,110,94,104,96,105,88,109,106,117,98,99,107,95,106,98,109,113,99,102,68,95,102,107,105,91,110,100,105,89,88,112,108,92,92,93,95,98,107,99,106,100,103,96,116,106,113,89,111,123,97,104,103,101,112,107,100,85,105,112,120,113,99,101,110,110,106,103,90,95,101,98,104,107,102,111,111,99,104,103,105,106,95,106,103,105,113,108,124,93,109,101,107,104, +564.36371,91,106,106,99,92,102,103,103,112,108,113,111,97,110,99,100,123,119,111,96,92,109,111,100,110,101,97,119,96,100,113,101,101,103,104,88,103,102,120,112,98,107,95,104,96,108,104,109,94,103,102,106,108,89,96,89,100,111,106,108,92,104,106,104,106,118,113,110,108,101,99,99,92,110,105,108,100,103,110,111,108,110,98,103,110,101,97,97,106,108,103,70,113,115,104,98,96,96,85,102,93,105,109,102,97,101,113,119,98,99,109,98,98,106,99,107,104,107,110,108,109,104,107,99,95,108,122,94,99,95,102,101,119,103,95,104,107,122,101,107,116,116,117,109,101,117,99,109,97,100,113,97,108,103,96,100,100,105,104,121,101,98,112,100,109,109,115,98,101,104,106,99,90,105,101,98,111,106,112,104,102,117,98,97,100,103,91,103,112,104,104,110,105,101,107,105,121,111,107,95,100,106,95,104,92,112,115,111,110,110,99,110,106,86,105,103,100,103,96,92,109,98,109,113,107,117,94,116,119,83,115,101,118,115,94,89,105,112,103,101,111,104,112,107,91,103,112,114,106,113,122,109,95,106,96,103,112,126,109,109,104,114,111,108,95,103,104,113,103,100,109,106,107,124,114,117,100,97,103,111,109,114,102,116,110,93,90,109,102,111,106,107,117,120,104,92,116,103,100,104,109,107,103,119,114,105,92,109,98,102,96,105,97,91,117,108,116,106,104,111,109,96,103,107,110,107,111,89,107,103,102,104,111,101,101,120,101,112,93,72,101,108,109,104,100,112,102,119,92,103,119,111,99,110,104,111,110,110,102,111,113,97,109,89,107,97,107,120,106,115,114,95,102,110,109,101,125,112,113,105,92,111,106,104,102,98,100,103,109,110,84,94,90,117,123,104,108,81,102,110,105,113,108,103,108,91,104,107,114,103,90,99,95,96,97,104,109,133,103,103,106,95,94,97,107,100,102,94,101,107,91,102,114,110,101,110,116,100,108,111,96,105,108,99,99,98,93,103,105,102,102,113,118,103,103,110,108,98,121,101,124,102,110,104,92,98,99,110,108,88,104,105,106,100,99,100,106,114,107,104,111,116,112,100,111,102,112,119,105,102,71,104,93,103,99,94,100,100,118,99,114,103,102,105,113,92,102,109,101,90,107,99,115,113,101,112,94,100,105,100,102,100,104,116,102,96,115,97,102,101,97,108,106,107,114,107,128,104,110,113,105,102,100,95,112,111,107,124,99,111,104,109,115,110,111,110,117,95,102,96,101,100,91,103,109,113,113,107,106,99,100,95,124,100,117,101,116,102,108,107,106,106,112,105,110,104,108,117,100,101,112,103,102,100,112,107,88,108,132,103,111,118,108,108,100,89,107,107,110,102,123,102,98,102,103,98,101,88,105,110,105,110,106,104,109,109,98,107,116,103,114,99,108,95,94,111,100,96,104,106,106,106,113,104,105,108,104,105,110,95,98,109,111,117,119,107,112,119,104,115,107,108,107,109,101,101,111,117,102,98,116,107,115,99,103,107,110,94,104,102,103,104,115,100,107,95,108,114,115,106,108,119,106,104,105,100,104,97,72,111,106,90,106,100,116,113,108,105,82,105,104,106,91,107,111,100,110,109,107,102,106,118,104,107,91,105,101,105,102,113,105,108,114,105,117,94,103,100,114,89,109,100,113,98,105,106,122,118,89,101,101,87,98,94,105,105,118,114,111,110,111,109,105,107,98,102,107,110,108,100,107,104,113,111,109,97,86,106,103,100,104,103,103,110,109,108,95,110,105,117,111,111,112,121,103,114,114,93,109,105,113,111,99,104,112,108,106,107,108,90,98,104,97,106,136,103,129,124,108,102,106,95,100,83,95,107,117,76,107,99,102,109,107,108,104,107,99,112,111,109,72,105,95,104,106,93,95,99,106,104,106,111,102,106,102,118,99,107,106,100,100,103,118,99,125,112,107,102,106,103,102,92,100,107,104,111,107,108,109,111,94,121,110,118,101,99,115,107,112,107,104,114,108,124,109,100,105,116,102,119,118,95,97,113,104,110,112,104,91,105,109,103,93,75,108,116,103,104,104,104,89,114,109,103,119,112,104,122,107,116,107,124,100,104,96,104,107,120,107,102,107,104,106,110,102,100,106,102,94,108,102,103,108,109,117,102,92,99,100,99,118,112,106,104,106,115,94,116,103,115,96,115,102,101,113,111,107,100,104,116,108,106,86,116,119,102,107,99,109,126,105,97,98,103,109,99,112,116,112,109,102,108,109,117,102,121,103,108,93,101,114,121,96,106,103,113,104,115,112,104,118,103,110,102,118,121,98,104,122,108,103,105,122,126,118,143,134,137,136,184,188,213,223,228,217,258,271,213,235,265,204,205,229,170,176,171,152,142,137,129,125,135,109,119,103,109,115,86,126,91,112,112,94,106,117,116,119,103,110,87,107,112,99,106,116,98,98,101,108,108,104,92,120,108,97,106,100,104,98,112,80,80,109,117,101,106,110,109,96,96,96,104,98,94,104,98,103,110,95,115,100,101,105,106,101,106,102,117,104,113,108,117,96,108,105,104,92,102,102,102,101,99,103,103,106,98,121,99,113,99,113,105,128,98,108,107,112,105,107,108,116,88,111,99,122,106,107,110,118,94,98,103,106,126,118,108,88,98,109,101,96,108,100,114,105,97,106,101,102,108,100,104,106,115,99,103,103,90,96,99,111,96,108,99,119,119,116,110,105,119,78,110,95,102,125,105,103,106,102,125,121,113,100,109,112,113,85,106,105,106,105,110,66,111,96,123,95,108,104,113,114,96,106,102,100,106,101,108,99,92,93,106,112,110,96,104,108,112,105,103,100,101,96,103,109,105,91,94,94,121,104,97,110,104,102,111,109,111,124,82,93,109,106,107,103,97,98,114,107,100,124,112,99,98,120,107,93,100,114,95,114,108,93,117,108,92,112,106,114,108,96,116,106,107,112,103,104,125,95,114,112,106,93,109,105,103,106,113,93,98,76,100,108,114,125,111,106,95,107,102,106,95,110,105,112,101,113,103,117,110,105,108,98,110,94,99,101,108,103,113,104,114,110,111,109,103,113,109,97,100,86,105,103,128,120,99,87,109,108,104,103,96,106,117,106,113,105,109,106,96,91,108,117,102,104,113,118,101,111,103,103,98,97,108,116,107,101,96,111,102,102,105,94,99,107,94,101,106,111,116,108,111,105,93,107,112,106,104,119,83,118,107,110,99,109,106,110,111,104,116,112,101,110,98,98,109,115,102,109,108,108,112,106,104,94,107,120,109,97,107,105,110,98,109,97,100,101,100,102,104,96,103,97,101,109,106,100,109,110,105,100,107,99,95,98,73,104,99,97,100,105,105,110,84,103,113,97,102,102,112,97,107,112,115,102,97,123,110,92,108,109,91,109,106,105,101,108,134,104,100,111,114,117,93,105,108,112,108,113,97,77,106,97,99,98,102,113,113,115,107,104,99,100,103,113,116,106,99,113,92,106,105,115,106,110,110,108,113,98,99,112,99,107,96,100,110,105,102,114,114,110,105,116,111,104,109,91,109,103,96,107,98,94,108,118,88,116,108,112,103,100,104,108,102,98,113,115,117,90,105,105,113,109,97,105,93,108,80,104,101,103,96,104,103,107,97,101,110,103,107,107,110,100,102,102,96,105,111,106,97,103,125,102,108,112,98,114,95,90,96,114,103,103,98,101,108,107,100,98,83,123,101,110,101,105,99,113,112,119,101,111,106,117,107,97,108,101,101,109,87,99,99,101,95,117,108,97,105,116,102,112,101,121,105,97,89,107,102,101,113,96,103,109,118,102,106,103,116,106,112,106,96,101,106,108,97,102,98,103,108,103,117,81,113,96,107,109,99,99,114,95,107,105,113,96,113,105,100,113,113,112,107,100,98,102,117,98,97,121,115,106,103,103,116,99,103,122,95,96,110,85,111,102,99,97,130,104,104,101,112,102,106,102,95,100,104,113,120,103,104,103,103,108,79,118,110,104,98,106,114,114,104,99,99,108,98,104,102,128,95,107,99,102,92,102,103,112,101,103,95,117,101,105,112,105,99,101,106,97,111,95,109,111,108,103,116,125,97,104,106,101,100,102,108,108,102,97,101,110,106,83,90,111,102,102,120,110,106,97,108,106,102,110,104,113,135,115,112,106,134,125,110,104,103,107,102,105,94,105,104,122,98,109,93,100,106,98,107,106,98,131,109,110,109,107,98,110,116,98,111,112,99,113,117,107,94,103,97,99,100,105,113,113,100,106,91,111,113,95,103,114,104,112,69,99,107,106,117,102,111,107,98,113,95,106,105,107,106,113,119,110,102,106,114,96,107,104,108,96,104,107,102,104,105,100,106,115,108,108,104,106,96,104,99,98,101,101,98,106,95,104,109,103,100,103,91,107,100,106,116,92,100,103,97,103,97,110,98,113,106,111,103,99,105,101,113,91,103,127,108,105,99,107,106,101,120,107,98,105,107,124,104,99,113,102,104,112,105,89,96,99,79,103,105,96,102,104,100,105,99,106,103,95,99,102,103,120,96,99,105,111,105,106,110,113,108,106,104,136,98,102,105,117,101,112,114,111,110,105,101,102,115,89,98,110,95,111,95,107,114,99,101,87,107,110,103,97,107,112,94,96,104,100,113,95,99,102,99,115,111,107,114,74,105,96,118,104,113,97,115,99,105,100,113,102,111,103,106,109,103,100,109,96,113,98,109,103,112,106,106,107,91,95,102,91,107,110,105,112,99,102,100,103,109,101,95,106,111,97,109,107,100,102,105,106,97,90,107,116,95,109,109,100,121,113,106,98,109,101,91,109,95,106,112,113,108,105,99,106,79,112,99,113,106,103,100,115,75,113,105, +564.50458,112,110,102,111,115,132,106,98,100,102,102,102,86,97,103,103,101,104,108,102,97,101,108,92,94,106,107,119,105,108,92,106,105,106,111,98,79,101,101,100,119,99,110,95,122,109,114,106,98,78,94,107,105,90,98,95,114,88,107,95,94,117,108,106,94,119,99,112,111,99,106,109,109,110,109,111,101,103,120,83,107,114,106,110,100,97,103,111,121,114,114,94,109,106,113,100,106,97,111,109,103,109,104,94,106,98,102,101,102,109,106,100,114,90,96,95,103,95,117,108,109,108,101,104,106,115,113,113,110,106,101,95,98,108,114,98,104,113,84,106,106,120,103,103,98,97,105,106,96,106,95,113,107,88,98,102,107,107,109,94,104,105,97,113,108,124,88,95,109,109,104,109,86,98,113,108,110,113,102,111,95,120,101,108,99,109,104,95,106,99,100,103,103,108,104,103,107,105,111,112,97,105,102,97,100,106,111,103,106,113,106,107,105,107,112,99,101,99,113,90,100,112,108,97,97,104,96,102,99,93,92,100,123,102,105,101,97,120,98,105,95,109,105,101,98,100,101,116,102,108,106,99,95,107,101,93,99,99,102,101,94,109,108,100,104,106,99,101,104,99,104,95,107,111,121,129,108,97,99,109,108,100,94,101,99,104,97,101,71,100,93,101,116,112,101,106,110,95,98,112,113,100,113,108,108,104,121,105,101,107,98,104,101,102,103,98,91,102,97,104,96,107,105,110,105,94,111,100,104,110,112,113,108,95,104,102,117,81,104,79,100,109,100,97,111,112,99,109,108,105,105,103,102,114,117,108,112,107,104,106,107,102,99,110,105,109,117,102,106,100,104,99,110,136,106,120,98,111,115,102,115,109,103,88,103,118,107,103,109,94,110,107,105,110,118,106,113,88,103,104,109,96,100,100,108,99,103,108,99,106,104,94,98,99,119,99,107,108,105,105,94,96,103,112,114,94,108,101,109,110,96,115,113,99,104,107,106,121,95,103,115,101,114,103,101,101,108,105,113,98,118,104,101,112,106,111,91,102,108,109,110,100,108,102,103,111,102,107,110,99,97,111,98,101,123,109,96,107,106,110,106,104,108,119,104,97,110,108,102,103,114,102,107,108,94,107,96,114,108,105,121,91,117,101,113,104,96,107,102,92,113,107,106,128,113,120,116,104,108,83,100,107,106,109,97,105,104,99,96,112,88,108,112,96,107,116,103,117,100,115,106,99,93,117,102,113,104,104,107,96,109,110,110,109,111,102,108,100,102,109,117,127,112,71,112,113,105,111,95,93,113,100,110,103,120,110,107,97,110,105,111,114,114,82,105,103,105,103,99,137,99,105,104,105,104,116,105,104,120,105,113,109,98,102,99,111,116,112,113,92,109,106,103,122,85,112,105,106,106,95,114,97,100,96,104,116,102,94,105,114,93,98,102,107,94,130,117,95,101,109,71,100,108,122,104,102,91,99,111,99,95,107,100,108,78,102,115,122,109,80,104,106,107,108,103,102,98,104,108,103,107,94,92,107,97,102,102,108,112,100,113,101,109,100,99,94,83,99,109,103,107,96,102,101,107,110,110,99,116,96,104,90,109,124,102,95,110,100,100,117,114,94,106,105,105,108,105,84,100,102,99,97,100,103,104,117,105,100,106,102,114,105,96,106,102,104,111,102,103,104,105,110,101,114,109,91,106,97,105,92,99,104,99,109,109,109,102,98,88,111,91,106,102,94,101,100,104,95,105,105,119,102,108,100,112,109,97,118,95,107,106,109,107,102,101,112,100,100,106,106,118,111,93,103,107,99,93,114,95,100,94,112,104,105,109,114,66,91,110,91,112,107,103,91,107,105,114,109,104,100,105,99,117,111,106,117,104,104,100,93,109,123,98,112,102,109,103,98,107,104,111,97,109,106,107,102,105,92,94,128,105,101,103,103,93,106,112,100,108,100,105,104,97,97,108,104,102,117,118,131,99,101,102,104,99,102,117,101,110,101,106,90,115,99,108,102,107,110,92,107,107,109,106,106,107,120,102,115,101,103,96,128,109,101,103,105,95,114,109,105,94,103,112,105,113,90,98,102,95,112,99,105,115,108,96,104,101,119,102,98,117,109,109,112,105,103,98,111,107,114,99,106,114,101,97,110,103,103,98,94,108,98,95,104,115,118,107,105,99,111,95,111,110,95,97,86,83,103,99,97,96,97,91,96,108,113,104,95,103,104,104,113,92,106,112,95,97,113,106,98,97,104,110,101,102,102,80,106,100,95,96,106,103,102,117,103,111,95,106,108,100,100,105,102,98,107,108,108,103,114,102,114,105,104,107,107,121,108,124,105,99,110,115,104,116,113,132,144,156,179,191,241,216,277,260,286,211,235,199,241,227,205,176,196,154,174,157,145,139,121,117,106,112,111,113,123,115,145,126,104,109,113,121,117,99,108,106,103,91,108,109,117,109,103,111,121,100,97,106,105,109,107,111,107,90,105,103,104,99,101,110,117,114,102,97,109,95,91,107,98,116,112,102,103,111,97,96,111,96,100,107,103,111,101,104,103,88,87,100,120,109,94,129,108,102,97,100,108,95,107,108,104,96,108,113,110,104,109,96,105,124,107,107,107,106,114,104,95,103,98,108,107,100,91,99,107,106,102,105,101,94,105,98,103,101,108,108,97,98,113,107,117,97,109,104,101,121,105,100,109,117,99,116,96,104,107,119,103,109,97,103,114,102,111,117,100,108,108,106,103,95,101,114,107,116,103,98,107,114,112,122,117,105,104,111,94,104,99,110,105,103,109,106,113,99,99,95,102,112,105,101,107,106,95,110,103,92,97,111,108,112,97,105,100,92,106,107,102,93,114,97,103,102,96,95,102,95,100,98,125,117,107,108,114,104,92,95,104,95,100,104,106,93,105,100,116,105,105,95,106,109,109,103,110,117,101,108,108,113,105,104,102,99,113,104,106,108,120,105,97,98,103,99,107,109,105,115,113,108,101,110,104,101,102,91,105,97,105,106,102,106,106,108,118,119,96,109,106,115,111,109,95,106,92,100,106,110,95,100,100,109,119,116,110,105,92,109,113,98,93,103,116,102,113,118,106,113,107,107,97,108,99,109,106,94,112,98,102,112,94,103,108,98,113,105,108,103,106,106,106,105,79,95,111,105,106,107,93,116,97,89,103,92,89,113,108,99,106,109,109,104,100,101,105,104,111,117,104,98,112,96,117,105,109,121,101,109,98,107,110,106,103,107,117,100,110,94,110,115,99,101,90,106,104,110,105,93,106,120,100,95,96,106,117,107,104,112,102,101,116,108,105,108,116,109,124,114,122,98,95,98,112,115,105,101,107,107,97,96,104,130,110,120,113,64,102,106,100,110,105,110,97,106,109,95,111,113,111,111,99,101,110,104,113,102,103,102,97,98,112,109,98,106,104,97,111,96,112,102,98,103,107,100,103,111,110,99,109,126,70,102,105,101,97,110,107,95,112,105,96,101,122,109,74,108,100,112,117,106,107,113,100,69,98,102,96,109,106,101,95,93,104,111,111,105,112,115,110,102,106,98,115,104,106,101,111,100,105,107,109,96,100,99,106,104,110,109,100,109,107,91,104,104,106,112,113,101,111,112,113,92,109,105,105,108,97,109,114,106,107,112,99,104,117,97,97,98,115,99,110,128,101,104,109,109,101,108,107,103,108,103,109,105,114,106,104,107,107,103,100,99,112,95,102,96,89,103,90,74,115,107,114,112,112,105,104,111,95,111,97,97,105,104,101,98,107,118,101,109,118,96,107,108,94,101,100,96,107,102,109,102,103,105,94,109,100,106,105,120,98,93,103,100,101,96,106,107,107,100,101,111,104,102,103,115,113,95,108,116,105,104,75,93,101,106,109,111,108,99,106,107,108,99,89,120,105,109,104,105,105,105,102,106,108,92,108,92,105,105,103,114,108,95,120,100,102,113,111,104,101,115,114,109,100,104,95,106,110,99,93,107,100,103,104,110,93,115,104,106,105,110,101,98,110,109,110,90,100,94,114,107,108,101,108,103,109,104,96,118,94,100,97,98,95,106,102,102,106,104,106,105,99,106,100,104,110,102,110,110,113,113,100,110,101,100,110,102,105,110,109,105,101,110,82,100,114,105,111,106,91,80,109,106,105,108,97,115,102,98,100,108,98,99,108,105,111,95,94,109,107,109,92,91,104,109,108,117,96,104,102,102,103,106,111,97,100,129,115,112,103,90,109,118,113,140,113,109,98,100,99,113,105,108,107,99,106,106,101,93,109,92,102,106,112,106,97,105,100,102,104,113,98,102,109,108,96,106,100,111,102,123,92,94,93,112,125,97,117,117,116,101,113,117,116,109,103,105,106,109,92,86,102,101,102,111,104,108,111,104,101,90,92,117,95,109,92,100,111,102,84,112,90,102,100,96,90,102,98,71,104,95,108,94,123,110,92,100,96,104,123,100,108,117,104,99,112,105,101,106,67,101,101,92,101,117,109,116,99,95,97,106,101,109,113,107,121,113,107,104,95,103,109,100,106,121,101,99,119,106,98,112,105,117,113,103,110,91,109,90,107,105,102,119,115,108,106,100,103,101,98,95,99,102,83,103,109,85,105,103,104,108,103,112,87,106,106,108,103,97,99,113,98,107,91,117,104,99,99,115,110,118,103,102,100,100,107,106,105,96,123,104,120,95,107,121,111,109,93,100,95,99,105,97,102,103,127,91,96,95,104,103,101,92,107,105,98,95,104,75,104,99,103,109,98,125,106,104,109,116,115,107,103,102,91,80,96,102,112,99,110,98,102,105,94,119,113,107,99,109,112,113,112,128,104,105,116,114,111,98,98,95,104,112,88,101,100,108,120,109,100,110,108,106,106,89,96,106,99,103,97, +564.64551,114,114,102,92,102,105,93,117,102,112,70,103,106,106,111,117,103,104,104,111,98,101,116,94,127,109,89,106,112,97,98,114,96,104,113,105,115,92,107,107,102,104,105,93,95,110,103,115,98,108,100,121,118,98,104,103,100,97,101,99,96,98,107,98,115,110,106,113,117,103,114,107,112,87,98,104,102,105,107,114,114,93,96,107,99,108,97,102,106,102,104,104,90,76,115,109,103,90,89,99,103,100,100,100,95,103,111,96,107,98,105,117,100,109,113,95,113,121,96,110,97,120,105,113,109,94,108,95,109,105,105,106,99,100,102,101,89,100,107,96,100,117,105,106,95,95,113,93,96,108,99,103,121,100,86,109,94,107,103,110,103,110,115,108,102,102,106,113,102,111,105,102,95,97,101,101,90,101,100,104,110,95,110,117,91,115,96,99,104,96,99,110,104,99,102,100,76,92,115,97,104,72,117,109,99,91,96,103,112,109,103,122,102,101,109,106,89,81,96,103,104,113,97,100,105,113,113,102,105,115,106,104,107,107,112,112,97,113,98,124,106,100,106,101,105,96,104,113,94,117,101,106,110,105,103,73,85,112,105,101,97,112,95,112,96,110,109,105,104,109,96,100,104,102,102,104,109,101,110,99,106,103,92,113,101,113,99,98,87,97,104,102,113,110,114,110,113,115,99,117,85,102,98,116,96,111,106,101,114,112,96,92,93,95,111,105,102,125,95,102,114,99,99,93,101,103,107,101,119,93,108,99,108,104,92,112,99,111,108,104,100,103,100,94,102,120,104,108,116,103,107,103,101,100,101,94,108,99,110,105,97,106,101,108,92,103,97,106,105,103,100,102,104,80,99,99,108,103,100,99,111,100,109,114,102,104,105,99,98,93,95,110,93,104,88,95,101,98,103,112,98,94,109,86,98,103,102,109,110,99,95,95,104,109,103,96,111,91,104,110,100,97,113,101,99,99,101,97,94,100,96,114,101,103,81,114,108,106,118,105,106,77,117,91,102,105,113,96,106,112,98,119,98,117,114,84,105,109,111,120,105,99,102,98,104,112,105,105,93,124,98,119,106,95,100,88,95,102,108,103,102,95,99,106,102,80,106,110,109,110,107,91,105,95,93,105,104,111,101,110,108,98,108,102,116,108,105,113,112,110,94,95,102,105,104,117,109,70,108,99,101,97,93,112,92,103,106,99,106,109,107,93,105,97,115,107,104,94,103,114,95,115,91,101,102,101,113,99,103,114,99,105,111,104,114,107,129,131,96,81,95,112,68,104,104,100,89,86,105,96,92,102,100,107,102,102,102,98,100,113,113,98,101,94,95,113,104,103,108,105,96,111,95,91,99,110,104,91,99,110,102,104,106,100,108,107,98,105,100,110,93,98,109,104,113,104,96,98,122,112,115,103,122,104,107,108,89,100,88,114,105,110,103,117,108,96,112,96,98,100,101,106,109,101,114,98,106,101,104,102,105,115,99,109,95,106,113,108,87,107,89,108,101,101,98,111,92,102,117,117,113,96,112,99,98,97,105,104,102,101,102,112,111,99,83,93,109,110,110,114,101,112,100,105,105,94,95,105,111,98,99,100,114,109,97,111,104,106,117,109,101,107,105,102,90,107,116,99,98,106,117,77,106,93,103,106,107,99,105,100,104,107,107,100,110,105,112,98,80,107,108,97,91,104,106,125,94,99,92,92,105,84,101,105,108,109,109,106,99,105,108,124,96,96,112,104,94,109,103,82,103,87,98,102,109,108,98,104,100,102,103,101,91,104,98,106,103,110,99,119,111,107,96,123,97,102,103,92,121,104,104,103,109,100,101,103,105,98,99,92,101,97,98,94,112,117,109,98,113,101,101,122,104,105,112,98,106,113,102,106,103,92,100,87,107,85,104,120,101,101,116,101,112,100,100,91,100,105,103,102,104,100,106,83,101,127,105,103,94,114,102,96,104,104,107,98,106,100,102,122,102,107,105,110,101,102,110,103,100,116,102,97,104,95,103,104,91,116,116,103,105,112,106,110,89,109,98,103,102,91,91,115,110,100,103,96,91,93,107,102,104,106,109,92,108,103,104,95,104,113,101,98,97,111,101,95,108,110,96,108,97,112,102,121,114,110,102,98,103,130,100,116,101,95,99,94,108,105,94,86,105,109,101,102,109,105,107,103,106,113,117,113,111,105,108,103,102,94,109,102,103,106,102,105,103,85,104,102,98,103,107,96,108,86,104,129,102,110,106,93,112,103,104,106,104,112,103,103,101,109,109,104,113,111,107,100,106,94,102,112,113,106,99,103,105,108,100,116,109,113,107,109,109,96,119,106,103,120,119,99,117,114,104,112,122,119,122,130,156,157,186,210,208,231,270,204,270,221,258,220,183,171,199,188,197,193,128,156,139,124,120,128,116,102,83,99,110,116,95,101,103,121,92,99,119,114,94,95,101,115,112,107,107,121,107,111,107,108,109,102,101,121,101,96,90,102,103,105,111,100,101,106,112,107,115,114,96,100,103,106,108,112,101,108,111,95,101,103,105,107,99,111,111,106,109,104,94,110,119,99,113,108,110,112,103,110,102,96,109,105,93,110,116,98,111,83,111,116,104,92,112,102,115,107,113,101,110,100,113,99,120,103,107,111,106,103,116,109,98,100,100,105,111,119,103,112,114,85,106,90,112,99,98,107,101,106,109,100,104,96,124,102,111,114,106,108,110,102,112,95,105,99,107,105,110,109,119,105,88,119,109,99,103,111,104,113,96,113,107,108,118,94,93,99,111,102,108,119,107,112,108,108,101,114,117,104,103,95,117,117,108,102,106,105,101,111,111,101,101,105,99,117,106,102,106,111,110,98,107,108,97,114,109,113,115,104,111,106,94,107,109,112,103,120,105,102,102,87,99,110,97,100,119,95,102,102,110,101,112,117,106,104,106,104,113,112,120,102,103,121,112,112,113,111,103,100,112,109,101,98,101,95,113,101,115,101,97,105,96,100,115,109,102,104,99,92,98,112,117,100,109,123,101,117,107,99,99,96,102,109,102,116,116,75,103,109,115,109,111,99,114,107,104,109,112,95,101,114,105,110,102,120,108,108,118,104,114,103,87,102,110,108,108,107,110,119,97,101,104,106,106,96,111,98,103,107,103,106,102,98,101,104,116,108,108,99,107,110,123,98,99,97,101,107,102,102,111,109,110,112,98,112,104,108,107,99,99,106,108,95,109,107,95,96,127,107,90,105,107,99,109,114,109,105,114,107,83,101,95,105,102,106,136,106,105,99,110,106,104,104,98,92,100,113,115,114,102,108,104,102,106,110,106,101,118,105,103,103,102,101,101,110,101,96,112,99,106,106,99,108,116,102,106,103,101,99,103,98,119,102,111,97,94,100,109,99,108,109,102,91,105,104,99,81,107,100,116,108,102,112,92,99,106,103,102,107,109,115,70,101,107,112,102,113,103,98,90,101,112,99,108,104,100,104,102,109,109,112,103,107,104,101,105,110,107,110,115,109,105,95,120,102,105,117,102,96,109,123,93,96,112,105,103,107,104,112,102,106,104,96,108,95,104,111,110,106,100,105,96,104,103,103,99,112,112,113,95,105,105,101,98,109,105,101,106,105,106,99,106,95,111,104,114,104,89,99,117,102,102,109,100,101,106,98,113,98,100,110,92,98,106,112,109,113,102,110,109,109,109,97,113,100,114,95,106,96,88,107,105,108,109,106,101,99,128,115,92,100,102,108,98,105,99,101,103,103,106,91,84,106,100,99,101,115,104,105,97,100,115,104,108,107,98,114,107,110,82,99,99,90,113,102,110,103,99,97,100,99,106,111,105,107,104,100,107,95,105,103,99,98,108,115,106,120,113,116,109,92,112,104,103,102,102,110,108,107,106,118,107,107,111,107,87,104,102,105,108,116,98,84,104,96,117,99,104,101,95,112,101,103,109,101,103,96,119,97,109,104,95,100,118,115,100,101,103,108,107,107,121,109,100,110,90,99,125,102,111,103,102,115,112,95,116,101,109,100,107,109,113,112,111,112,109,103,100,102,116,112,123,104,109,109,99,100,106,116,99,106,103,107,93,102,105,95,111,109,97,84,96,109,102,96,99,117,110,104,96,117,104,114,112,107,100,104,97,80,95,94,107,104,113,117,108,108,106,100,109,100,104,96,109,109,104,100,108,96,105,109,106,117,112,102,93,101,107,123,105,116,105,117,106,102,110,92,110,99,113,107,95,105,99,111,113,113,100,111,111,101,105,98,117,97,116,107,107,109,108,85,112,100,104,113,95,108,80,112,110,86,80,110,109,117,98,111,107,94,99,102,107,103,99,107,113,125,100,99,107,104,106,102,101,114,117,100,103,90,112,109,110,92,97,99,116,94,96,103,100,113,111,98,101,72,108,107,103,113,107,108,111,103,115,99,99,103,102,104,92,95,101,102,96,113,94,110,111,96,95,100,113,98,109,124,109,101,102,112,103,102,68,94,95,96,102,110,90,97,120,109,109,89,85,98,98,100,104,107,109,108,99,108,111,104,120,98,99,119,100,112,115,107,103,116,113,101,97,89,103,103,91,99,108,102,113,113,98,92,106,96,116,115,92,109,100,104,100,94,120,107,109,99,109,117,110,92,101,108,112,108,113,111,91,94,116,103,66,91,96,92,111,92,107,98,108,99,103,100,95,98,101,101,109,108,96,103,103,77,108,102,107,100,99,91,95,107,122,88,102,99,110,107,108,95,93,119,91,97,97,99,117,103,109,107,122,105,101,100,107,91,93,102,102,95,102,121,98,102,108,94,88,96,99,107,102,104,101,90,100,99,98,108,94,104,95,117,98,102,109,99,102,104,108,99,93,106,83,99,88,100,104,79,103,100,92,98,110,101,105,102,79,96, +564.78638,96,105,106,103,92,118,105,89,105,98,98,103,94,105,100,124,100,117,101,97,113,80,111,107,105,101,100,117,99,110,117,94,109,106,108,99,104,85,91,98,104,96,105,91,99,104,121,106,118,110,94,96,96,98,106,101,99,98,107,105,106,100,98,106,105,97,99,110,92,133,102,91,96,113,75,111,97,105,98,116,108,93,106,105,110,93,105,104,95,94,114,90,104,102,101,90,102,97,121,108,104,93,111,103,95,99,97,100,109,100,105,110,110,95,90,125,97,109,109,95,99,97,112,102,106,101,109,116,118,105,108,108,99,105,105,111,121,105,106,102,98,102,113,104,95,104,104,97,99,103,104,85,103,91,107,107,95,100,104,94,102,100,111,96,109,97,97,97,93,100,90,93,99,111,96,110,97,103,106,96,99,89,109,102,105,100,105,92,110,105,94,104,107,110,101,100,117,104,113,94,109,92,94,100,114,95,104,105,106,112,113,96,106,117,102,111,107,101,101,111,103,102,94,117,100,98,107,110,105,116,95,109,105,103,113,109,111,107,94,113,104,132,105,116,69,94,96,111,102,118,106,120,99,120,108,100,101,99,101,104,121,105,114,115,101,113,101,108,95,89,107,87,91,100,108,106,99,103,108,96,107,98,114,91,104,106,104,97,108,86,104,96,114,99,100,103,113,100,123,102,100,101,100,110,86,110,109,100,108,109,97,111,87,106,113,106,108,95,99,79,111,97,95,111,104,113,97,94,102,123,103,96,107,92,107,107,104,96,91,117,101,104,99,100,80,106,104,105,107,100,104,101,101,118,107,109,107,105,99,113,111,95,112,114,108,103,104,110,105,110,115,104,98,107,113,90,106,97,105,111,101,88,101,114,100,94,96,109,116,97,105,100,96,110,102,105,97,99,105,101,108,105,93,93,101,100,96,107,95,97,82,103,98,108,101,84,108,102,104,109,114,94,96,106,109,103,94,91,91,98,101,96,100,104,102,99,106,100,104,105,104,96,101,101,92,91,94,105,104,103,98,106,105,118,97,100,113,105,106,112,97,90,103,102,99,99,103,101,107,103,104,100,98,95,105,101,102,107,99,109,98,102,106,95,99,113,106,82,102,92,109,99,113,110,99,97,99,109,106,101,113,96,108,112,119,105,114,96,110,91,101,100,94,94,112,107,98,114,109,96,114,101,113,113,105,91,103,100,111,111,94,106,94,102,102,97,104,84,106,100,101,97,80,108,106,108,110,94,96,103,109,111,111,97,104,127,114,102,114,104,108,99,103,99,101,113,112,105,104,100,92,97,110,103,105,98,103,109,114,88,101,90,91,94,100,100,109,109,115,100,104,92,98,107,110,103,105,110,102,99,117,113,114,98,104,105,101,110,113,103,89,98,105,102,97,103,100,102,110,96,105,107,99,99,89,103,105,106,105,102,116,111,103,105,98,95,108,91,100,92,108,91,106,98,119,98,100,104,108,107,105,107,110,90,97,118,101,114,93,95,118,94,100,118,108,95,94,107,99,105,109,110,101,121,100,109,103,99,103,106,105,117,116,90,109,103,100,112,113,100,93,95,103,107,101,106,109,105,111,103,114,98,116,99,103,105,111,109,118,101,109,107,101,96,85,110,117,102,101,102,93,92,107,113,95,101,105,94,107,110,98,103,106,98,103,102,108,98,112,102,112,91,107,111,101,104,114,107,105,91,109,110,109,100,117,100,101,106,110,97,100,99,106,90,105,97,94,107,108,92,113,106,101,105,113,101,125,114,100,109,109,103,109,122,109,107,107,97,105,103,105,96,109,109,105,99,100,98,112,103,103,98,98,100,117,107,105,100,102,107,107,105,93,91,104,104,113,105,74,110,112,104,88,101,106,113,111,99,97,125,105,95,102,110,129,108,91,106,112,102,97,111,105,102,88,101,97,114,111,101,109,105,113,96,103,98,106,103,101,107,101,95,108,104,102,91,114,101,106,100,95,104,71,115,95,94,101,97,106,97,98,111,100,129,114,106,92,106,103,105,120,105,110,95,112,94,98,108,116,101,109,94,109,100,89,117,91,99,95,105,98,103,94,116,97,103,114,99,99,94,96,100,112,106,110,106,104,109,115,110,100,116,109,110,104,99,90,97,121,102,103,102,86,102,112,106,95,104,98,110,114,103,97,109,104,113,105,108,88,108,111,100,111,96,105,103,92,93,100,113,98,108,108,110,106,107,101,91,99,98,101,104,103,98,109,96,104,109,110,91,108,94,111,92,107,106,98,93,106,108,102,105,105,95,108,95,116,95,110,103,102,105,103,111,101,103,113,99,97,127,109,107,107,99,101,80,100,111,114,112,109,130,112,101,133,123,106,146,146,172,210,190,257,279,237,259,268,213,247,220,211,190,184,168,216,167,141,144,119,120,132,126,109,116,100,108,104,113,112,98,121,117,113,120,107,103,102,113,116,106,100,113,105,108,100,95,99,107,107,112,113,107,101,100,112,88,111,95,115,108,114,102,107,101,92,104,108,103,108,103,100,115,110,109,123,120,113,108,106,102,109,103,116,100,83,104,108,102,103,104,109,105,102,111,106,103,95,110,95,102,110,102,98,103,101,113,95,104,105,101,108,113,112,112,95,103,111,100,112,103,107,97,102,96,111,112,113,105,105,103,94,97,125,99,103,99,107,119,102,101,96,98,107,109,102,100,139,104,117,109,97,108,107,105,95,102,117,100,97,107,107,111,107,108,102,113,114,94,99,104,108,108,104,116,104,104,105,108,127,96,122,121,108,105,106,106,109,111,95,104,109,116,103,111,100,96,103,114,98,113,108,109,107,108,111,109,100,92,109,107,95,101,103,109,105,90,105,94,98,126,104,97,113,114,96,102,115,109,109,109,102,105,110,103,117,105,99,103,103,113,98,106,98,96,105,106,127,93,103,95,113,111,101,106,105,100,111,96,97,101,94,110,115,109,98,102,107,100,92,96,103,104,103,117,109,112,101,117,104,88,103,99,100,107,103,116,119,100,99,109,107,106,106,107,106,101,101,106,105,97,106,106,105,105,117,119,102,69,106,98,101,102,96,111,104,91,105,105,99,108,92,81,103,112,103,107,108,97,109,100,107,120,104,111,103,102,94,109,99,97,86,103,97,97,104,99,89,103,107,95,108,83,99,105,108,103,89,104,107,103,103,109,106,95,78,100,105,98,104,101,102,106,96,103,106,105,114,111,102,99,102,109,89,89,102,97,113,91,112,95,91,109,104,110,117,96,106,108,101,103,100,98,109,99,88,98,103,111,97,98,92,91,103,106,123,111,104,106,101,96,103,104,106,114,104,101,111,100,99,97,91,103,106,105,100,100,101,95,95,106,109,90,99,105,92,94,110,94,94,112,104,111,94,104,103,102,97,83,109,119,91,114,103,117,114,100,109,92,116,111,94,102,95,98,104,106,117,103,107,98,107,109,122,104,104,98,96,105,105,106,102,105,124,89,102,108,100,100,105,94,112,100,96,99,106,106,106,94,103,101,89,113,98,116,106,101,102,119,103,111,107,103,110,102,104,107,101,95,106,111,106,101,99,99,111,106,105,124,112,92,108,109,115,102,103,99,113,106,104,109,104,106,106,103,102,104,99,102,103,120,112,116,85,104,107,112,116,102,91,94,103,120,109,114,107,91,112,109,99,95,119,107,95,97,100,105,99,108,100,106,116,116,103,111,110,98,108,104,73,86,89,99,107,95,110,106,100,98,107,97,104,93,106,106,109,98,105,95,101,85,111,90,110,96,98,104,101,103,101,111,106,104,110,110,112,106,120,97,110,113,99,94,96,105,96,110,105,105,112,120,91,111,101,100,106,115,109,115,117,119,98,103,106,122,112,112,100,99,100,103,91,101,91,103,109,101,98,98,104,95,96,113,107,100,103,105,101,110,100,109,101,106,111,113,109,97,124,101,109,96,100,98,107,104,103,113,120,98,106,104,109,108,108,110,107,100,117,103,104,103,119,109,96,105,110,100,98,98,106,105,99,104,102,111,101,110,109,98,110,114,104,95,126,103,104,112,118,117,107,101,102,80,102,111,99,94,107,102,98,90,112,103,95,105,103,107,105,111,103,109,106,106,88,112,113,84,111,97,107,119,100,93,100,112,98,104,108,105,103,108,101,109,91,108,103,112,109,110,109,99,87,95,108,118,101,105,93,102,107,124,101,105,103,103,104,92,109,105,98,98,110,101,103,105,103,102,102,105,84,92,89,102,115,105,94,101,98,93,94,100,102,92,113,104,105,95,102,93,103,116,101,113,107,99,103,111,116,95,102,103,97,102,102,109,111,98,102,109,106,101,98,98,106,92,95,109,95,97,98,115,101,102,102,100,116,107,115,104,104,102,112,110,91,106,113,103,106,108,99,108,101,112,104,115,97,102,91,106,113,108,118,88,99,71,95,90,103,95,105,102,103,110,106,99,106,101,118,78,102,103,98,99,109,109,104,103,108,103,106,109,104,109,97,107,97,108,115,104,104,89,94,101,110,112,112,113,100,108,98,110,100,113,98,96,94,103,100,109,105,118,107,100,109,101,103,110,111,113,93,96,92,113,102,120,102,92,105,100,95,105,100,100,95,98,109,116,106,109,119,83,98,100,95,103,103,91,106,109,103,93,97,98,113,103,97,98,104,112,105,90,104,100,99,105,110,93,94,96,101,103,118,111,107,108,109,117,105,106,94,97,116,85,104,109,96,107,107,106,112,98,116,99,98,112,104,97,118,111,94,98,100,107,113,99,99,111,111,100,104,105,109,112,99,88,114,105,94,98,112,125,101,106,100,108,109,109,100,108,102,65,104,123,100,105,112,106,88,101,107,105,115,106,100,125,96,106,110,108,104,91,86,99,88,99,100,112,91,91,97,96, +564.92731,115,112,100,104,83,97,99,101,98,104,109,91,95,100,103,103,103,112,121,91,105,104,99,91,110,98,110,96,117,102,108,108,105,102,95,96,120,101,102,107,104,104,102,102,90,104,92,107,107,105,112,119,99,104,102,113,114,101,86,105,112,109,99,105,113,113,98,102,97,113,112,95,74,108,94,104,129,104,96,109,100,107,101,105,114,83,105,112,97,111,99,104,97,97,98,97,100,109,100,97,102,97,103,105,102,111,120,110,99,102,96,107,98,103,107,95,108,107,112,111,108,112,113,112,100,102,115,102,115,109,99,108,96,109,102,104,101,104,103,97,96,103,111,112,92,98,112,97,95,101,108,100,110,95,110,95,106,104,110,100,104,106,117,100,104,103,107,104,100,96,105,113,115,119,115,99,115,106,108,99,98,103,107,109,95,96,100,110,102,98,95,105,105,104,99,109,105,105,103,107,102,105,86,99,95,97,91,93,117,112,112,103,99,110,109,109,112,103,104,108,106,103,93,108,99,104,101,123,94,105,100,104,103,105,101,108,102,108,107,113,108,99,118,100,93,99,107,106,99,104,104,108,101,108,103,108,109,93,112,99,108,120,103,96,110,106,117,101,103,106,113,108,112,95,107,104,117,112,98,117,104,106,109,111,100,103,85,109,97,100,119,106,107,97,95,113,100,102,67,108,113,98,98,100,105,111,99,120,113,111,102,100,89,94,106,102,112,100,108,106,113,95,97,105,99,104,104,98,112,97,107,102,112,109,104,105,99,108,100,97,111,105,108,104,105,113,100,111,119,98,116,100,102,94,103,112,108,118,103,110,110,111,108,100,106,112,98,109,96,103,104,105,107,95,104,110,81,116,103,108,118,106,99,110,113,102,105,113,102,96,109,87,105,101,105,109,94,99,103,111,103,91,114,106,115,99,99,102,109,121,102,109,102,108,105,113,91,105,138,112,116,106,98,109,103,99,101,104,95,105,93,116,105,110,96,109,104,114,97,99,108,113,101,113,102,101,101,109,97,113,100,104,111,110,98,108,100,103,108,98,101,100,114,103,104,108,115,109,104,95,100,126,99,114,103,100,103,106,107,100,96,128,95,100,107,102,102,115,115,105,104,103,106,100,97,117,105,100,105,109,109,104,99,110,105,100,113,110,109,103,98,105,111,103,111,105,109,118,99,90,116,103,107,100,104,114,106,104,98,110,114,108,101,105,97,102,105,109,104,105,103,96,104,104,113,122,107,108,99,86,107,103,98,105,104,108,112,100,93,108,110,108,110,120,113,112,99,94,111,105,103,104,85,114,109,112,108,102,103,112,105,103,107,101,114,101,118,117,106,98,112,116,102,109,112,108,114,100,107,101,103,109,121,105,106,104,95,107,98,107,126,117,106,110,106,107,104,104,118,104,102,111,114,105,106,111,112,105,98,106,99,108,91,118,111,99,96,109,104,96,96,99,98,104,103,104,96,122,110,114,97,101,96,99,103,107,105,114,106,108,111,107,112,95,88,104,106,83,109,111,107,102,101,103,98,108,88,115,98,109,104,109,110,93,110,101,92,106,96,111,99,97,97,116,87,95,109,108,110,106,101,100,103,99,98,121,102,129,111,99,105,116,100,108,103,102,99,92,103,96,106,109,103,99,98,83,94,114,105,121,105,100,111,110,111,111,104,104,111,91,106,108,108,84,112,107,106,110,107,115,106,100,110,101,104,103,113,110,115,110,108,109,96,115,98,98,100,101,111,118,118,96,105,91,67,104,96,91,103,111,106,107,107,109,105,92,101,107,106,107,112,97,113,117,116,113,111,119,109,107,105,99,99,115,115,108,108,104,107,103,107,95,103,105,109,108,100,108,105,105,109,100,107,99,110,90,100,109,124,99,94,110,102,111,102,104,99,106,104,94,96,126,110,94,111,94,105,99,104,105,95,96,94,111,99,100,118,98,103,100,98,108,98,109,106,110,103,109,117,108,93,119,107,103,97,108,96,98,123,109,97,103,98,100,94,132,101,94,103,114,111,106,106,108,105,110,107,117,116,106,110,111,115,102,103,91,98,103,104,95,108,103,107,123,106,108,107,107,124,109,116,106,109,111,95,113,114,104,106,110,87,110,114,110,107,96,84,94,112,116,100,90,101,109,110,104,108,102,103,102,104,108,113,110,103,117,117,96,111,106,114,96,118,97,110,128,103,91,98,110,105,106,103,121,113,117,88,109,107,107,102,102,101,109,98,99,103,103,99,108,93,90,92,108,105,100,101,108,101,116,95,99,68,104,118,110,99,112,108,95,103,92,113,116,100,87,109,121,114,96,113,111,124,97,114,121,125,116,107,118,124,122,136,123,130,117,116,122,146,166,200,224,276,240,240,287,260,233,225,226,230,245,218,186,182,166,165,157,129,96,118,115,112,104,113,113,107,124,110,113,99,122,100,91,114,130,107,126,103,99,103,112,111,106,119,102,102,104,93,106,110,104,103,102,101,106,106,78,106,114,96,112,103,96,102,109,110,102,98,93,96,108,110,96,104,95,109,102,110,109,102,92,94,100,109,116,110,102,117,107,107,123,102,101,104,95,98,106,104,103,101,105,99,112,91,104,102,111,107,104,114,107,112,100,98,94,108,105,109,100,95,107,110,103,96,101,110,97,108,87,104,98,117,102,95,97,106,100,114,100,120,121,102,112,71,105,110,97,96,98,98,100,101,110,97,100,101,105,105,106,110,102,108,117,103,116,101,107,109,109,106,109,110,109,104,104,103,111,77,108,98,102,113,107,99,106,101,105,104,92,97,96,100,109,105,96,99,107,112,103,96,106,105,106,102,105,105,100,101,113,107,115,110,99,95,102,97,112,108,105,106,109,102,110,108,102,104,116,116,109,107,110,108,120,99,102,102,108,95,104,103,104,109,108,103,100,101,90,95,104,108,106,98,97,102,111,117,99,100,102,103,110,107,108,113,105,102,109,121,103,97,103,96,87,111,112,117,107,104,102,109,98,103,93,98,105,112,102,118,92,98,89,101,112,119,109,110,107,116,97,95,99,113,98,110,107,108,106,108,103,102,101,113,117,118,104,104,111,103,122,109,99,107,108,104,85,98,92,110,117,120,101,105,100,84,101,104,97,110,99,89,100,100,94,100,93,121,101,104,108,90,108,109,96,132,112,107,109,97,120,107,102,104,102,99,118,121,106,114,109,99,109,103,102,101,90,109,99,102,116,99,100,100,101,106,110,105,99,102,93,111,126,105,103,100,88,95,109,105,95,117,104,99,106,89,97,95,111,94,111,110,107,96,110,95,93,102,100,102,101,109,108,110,106,101,113,106,94,113,95,88,100,107,91,102,96,109,85,117,96,113,107,109,102,104,116,103,109,104,105,106,105,96,93,101,103,102,104,104,99,110,91,108,117,99,92,106,101,87,106,107,99,69,95,110,106,114,116,97,136,102,97,121,106,76,93,100,99,98,104,101,105,100,95,109,106,98,105,99,102,106,96,91,95,98,100,104,100,94,89,99,99,106,106,109,106,103,96,99,117,92,100,109,95,103,93,104,98,112,105,102,108,104,113,92,115,111,99,104,98,92,105,99,107,119,101,105,120,104,109,104,104,109,100,111,104,144,109,101,108,85,83,109,92,102,105,98,109,101,105,85,102,102,97,105,101,109,110,106,108,99,113,96,107,91,101,116,98,108,97,119,100,98,110,95,109,111,101,103,88,102,105,128,94,97,94,93,104,109,99,102,103,115,95,103,102,111,101,106,104,94,103,106,103,103,88,104,99,106,107,108,110,98,87,110,109,108,99,101,91,118,111,106,104,100,98,115,110,105,114,100,98,107,92,105,96,112,110,112,94,107,109,105,87,97,105,94,99,108,102,101,99,123,95,103,102,105,97,101,106,113,100,96,100,101,106,107,88,110,116,109,105,109,114,99,104,103,99,104,102,117,95,108,104,108,100,97,103,108,102,99,101,94,109,119,97,106,105,102,113,110,98,84,102,119,103,115,115,102,92,102,99,111,92,93,113,103,116,107,111,117,93,107,100,101,106,103,105,109,97,104,105,72,92,108,101,94,110,108,105,108,107,109,99,108,103,101,107,100,99,110,102,107,108,108,101,110,103,114,104,92,112,99,107,104,110,104,104,102,107,108,104,96,95,102,107,101,106,97,100,107,106,110,115,99,106,99,98,101,109,112,99,113,104,97,106,99,107,104,103,110,106,101,113,92,84,105,94,105,99,103,99,106,101,94,106,103,121,100,112,92,99,104,103,104,102,109,98,136,113,106,106,98,95,109,83,102,104,98,95,104,101,106,108,107,103,87,109,112,102,113,99,105,99,108,96,103,103,94,106,110,94,94,116,101,102,94,92,117,114,107,116,91,99,82,94,95,108,97,107,102,98,106,79,100,98,104,103,98,95,104,102,99,104,106,96,95,91,96,95,105,116,107,110,101,97,110,99,104,108,110,105,96,103,103,99,105,98,98,123,107,113,79,97,104,99,106,106,74,109,99,106,100,105,106,86,116,108,103,66,103,121,102,101,101,94,98,94,102,95,101,112,104,101,106,97,100,92,100,101,100,100,100,103,123,97,109,105,104,110,108,105,109,112,108,116,105,107,112,98,99,97,108,88,103,109,94,104,105,118,106,111,99,116,97,107,105,113,116,89,101,109,102,122,106,101,116,96,98,102,85,99,105,102,102,97,108,99,109,89,97,83,100,111,112,106,100,91,108,112,101,104,108,96,96,106,104,89,93,103,107,104,96,118,102,118,107,104,114,106,84,104,102,110,107,92,108,101,107,120,110,95,96,92,99,122,131,100,101,95,100,98,97,101,114,123,96,116,105,101,107,100,111,99,106,104,81,102,110,91,100,100,96,100,101,106,103,106,94,117, +565.06818,113,92,100,105,105,106,94,100,103,86,97,92,85,95,108,84,98,109,103,125,104,97,109,84,103,103,104,89,96,83,113,101,98,101,111,94,98,71,104,109,109,109,104,108,98,106,130,107,103,111,93,110,98,117,94,63,74,112,110,95,101,97,106,85,104,92,103,99,100,99,109,111,95,109,104,108,107,106,109,117,101,105,107,94,106,94,97,105,101,109,109,104,101,88,107,99,102,100,90,94,108,99,97,94,109,112,105,104,99,96,106,99,104,102,117,98,104,101,120,113,89,110,103,109,98,103,102,104,105,90,99,101,110,94,96,107,106,112,112,111,104,113,110,97,102,108,105,113,102,90,90,100,103,107,100,108,92,99,103,97,108,94,110,111,106,94,98,107,108,109,98,121,117,84,105,104,121,91,99,107,98,114,106,98,104,101,101,98,106,112,108,109,105,103,102,99,102,97,103,104,97,110,101,105,108,89,101,104,102,86,105,103,100,109,102,104,109,103,96,116,97,109,101,95,104,109,102,113,105,102,100,117,109,117,98,94,116,99,97,82,96,100,106,89,97,95,103,99,109,105,98,106,97,99,110,109,105,105,104,115,109,103,108,107,108,108,100,94,101,113,101,93,106,101,100,107,99,108,95,102,100,100,113,98,103,102,91,105,94,111,103,102,102,106,109,99,104,100,103,100,110,102,106,114,98,109,80,109,102,103,100,103,87,100,105,120,114,110,101,104,102,116,101,99,113,116,91,101,114,114,108,106,104,104,110,91,101,93,100,104,105,111,111,104,104,106,104,113,109,110,97,98,104,110,98,98,95,109,98,112,96,107,95,103,92,84,95,98,105,107,99,105,108,104,113,101,99,102,105,99,109,117,111,100,91,97,87,102,117,102,112,99,106,98,97,106,91,102,100,109,103,95,112,87,113,99,102,86,111,99,98,104,106,98,99,98,92,112,106,98,105,98,102,90,102,106,109,97,102,104,128,112,98,113,99,112,91,108,112,105,124,102,105,104,89,111,95,109,98,106,96,108,104,101,104,94,100,109,112,114,97,112,105,113,94,105,115,98,106,116,95,114,110,99,103,91,104,99,103,96,108,104,99,101,88,113,109,102,94,103,106,117,117,109,94,90,109,105,107,105,108,105,107,106,107,110,103,98,100,96,121,90,110,99,107,87,104,107,102,110,107,114,105,87,95,100,108,100,110,100,96,106,103,103,102,104,99,101,103,103,97,107,97,66,106,104,111,106,109,110,112,110,105,98,113,90,108,102,97,102,100,108,106,101,95,99,104,98,99,108,98,102,99,103,111,98,101,92,100,102,117,104,104,109,111,106,108,101,86,107,105,109,117,108,111,103,101,97,90,102,95,109,109,91,104,100,109,103,105,101,104,103,113,97,107,106,100,94,114,86,100,106,100,94,113,106,105,103,113,101,99,104,104,109,104,100,91,107,95,91,103,111,96,102,106,82,98,109,111,102,103,105,95,115,100,111,104,105,103,87,85,97,102,106,100,102,106,92,102,96,117,121,112,109,105,98,103,116,104,93,107,97,112,94,101,97,98,103,100,104,97,109,106,117,111,97,100,119,98,84,97,110,109,105,104,114,110,107,107,112,108,115,108,95,119,97,102,101,108,106,113,94,105,112,94,88,102,106,104,112,105,105,90,104,107,106,108,97,117,100,106,108,97,104,107,104,101,103,107,117,89,97,105,82,98,108,105,109,108,109,97,105,116,108,105,106,98,102,110,97,82,101,102,109,100,107,106,112,107,97,91,106,103,114,100,96,102,116,87,109,85,111,106,112,100,100,98,108,103,99,102,97,115,109,99,99,93,98,111,96,111,95,101,105,107,109,109,111,110,101,110,109,107,103,104,125,108,110,117,113,114,107,103,101,107,114,97,103,110,111,105,99,102,97,103,108,100,96,110,102,110,110,102,95,99,111,98,83,72,91,101,100,102,106,111,97,109,106,121,114,105,105,105,108,106,107,102,102,95,100,94,100,100,104,93,91,103,111,96,109,96,108,101,99,100,110,101,101,114,106,116,99,104,97,111,109,109,99,101,111,120,108,114,99,114,92,97,110,93,116,96,108,98,106,107,101,110,106,107,103,113,104,102,117,111,103,103,99,92,101,109,103,110,103,99,105,105,84,120,102,104,106,83,108,103,99,100,105,92,105,102,110,114,97,112,104,105,105,113,108,94,94,108,114,91,108,98,100,103,102,104,106,99,101,95,92,92,95,104,91,108,103,109,103,103,116,106,105,107,100,110,100,103,98,116,108,110,93,95,98,81,109,112,107,101,102,111,108,97,102,83,117,129,103,141,122,98,104,105,110,106,117,122,122,123,120,123,136,163,170,199,260,261,240,280,316,260,233,208,207,212,229,211,190,186,167,150,150,138,127,106,118,109,124,118,118,78,100,97,116,107,127,83,108,100,114,101,109,100,102,97,116,99,107,112,110,109,85,102,89,106,102,113,97,99,104,106,97,106,101,104,96,113,104,96,108,107,114,108,108,98,111,116,101,119,121,90,106,96,105,104,95,100,108,102,109,117,100,113,102,104,95,101,99,99,102,89,104,109,105,91,95,95,102,108,108,113,104,111,91,115,107,110,96,106,117,113,108,121,102,107,99,123,98,102,88,89,112,107,104,118,95,113,103,95,103,105,118,106,105,121,100,108,106,113,102,113,95,110,108,99,102,109,100,96,87,114,95,110,92,113,106,109,96,110,104,100,109,102,108,100,91,103,102,116,109,98,96,101,105,116,110,104,96,103,100,106,119,109,95,98,115,108,100,112,109,111,95,104,107,99,102,108,104,101,106,102,109,82,101,116,111,101,111,109,96,115,113,82,110,104,105,111,105,104,106,102,110,99,119,111,103,109,110,90,107,99,109,94,111,99,110,95,96,111,95,101,98,98,105,103,107,117,114,114,118,100,117,106,95,115,107,110,99,106,99,104,100,92,105,99,91,106,109,113,117,105,105,68,90,110,105,101,95,105,110,98,99,109,103,111,103,106,115,114,97,100,95,104,103,100,107,106,99,122,109,122,103,113,98,109,106,94,95,105,108,78,106,109,97,115,113,109,106,108,97,99,94,108,102,110,104,97,111,111,108,113,85,109,111,108,95,101,104,116,100,113,104,101,108,103,92,101,112,109,92,105,98,118,103,112,98,93,103,111,112,106,112,103,105,101,105,118,102,116,100,97,108,122,101,105,102,106,93,120,102,100,109,104,105,104,97,91,129,108,103,99,124,110,96,81,112,105,109,104,102,102,100,127,92,106,95,78,99,109,120,110,116,93,114,95,107,104,96,97,106,123,100,97,108,95,113,109,104,104,103,99,110,111,106,107,107,86,104,103,106,105,102,103,108,104,101,110,122,102,105,109,112,121,99,84,102,117,116,102,97,111,95,110,103,103,106,112,105,106,101,99,110,106,106,100,106,108,102,109,102,98,105,99,98,97,108,83,115,94,101,105,104,103,102,117,103,106,109,108,98,106,109,104,91,109,108,111,107,102,110,103,105,103,103,103,112,100,103,100,106,90,87,103,103,103,109,106,110,91,102,109,94,121,105,103,106,111,107,97,103,107,103,105,109,93,101,116,106,104,97,107,117,102,121,107,93,110,103,96,77,98,109,102,113,99,105,108,113,98,102,105,106,91,94,94,93,100,84,103,112,100,106,109,106,100,84,108,117,114,90,104,102,100,97,109,105,98,105,104,111,109,97,93,95,102,105,97,113,84,102,102,100,112,104,108,91,102,103,106,102,102,96,113,113,99,106,98,97,100,101,107,120,101,90,117,104,121,117,101,106,106,110,108,110,96,106,109,103,108,107,111,98,107,106,106,108,101,116,110,87,112,95,96,129,99,96,100,101,99,108,104,107,99,98,100,107,95,106,106,84,110,97,90,98,104,101,103,107,92,106,107,109,112,119,104,118,96,102,106,105,108,103,95,106,111,110,105,107,109,108,119,99,100,123,118,105,95,102,106,102,102,105,103,109,113,109,105,106,114,105,103,87,113,107,107,105,96,112,104,97,105,108,119,110,104,98,108,93,94,108,90,106,111,83,110,105,113,105,99,120,106,113,105,109,109,110,101,103,104,112,108,96,109,103,107,100,84,109,101,98,105,112,99,102,119,104,97,93,111,103,104,111,88,99,120,116,108,98,111,114,109,108,99,104,111,96,108,94,104,109,118,111,106,98,106,91,96,102,99,103,110,112,101,102,98,96,103,95,102,110,88,99,104,103,103,115,97,96,100,110,108,97,92,102,91,108,108,107,107,107,102,100,108,108,106,107,106,112,117,121,105,114,103,96,110,109,89,95,107,109,109,107,101,99,98,102,113,114,100,115,96,103,97,102,96,111,104,106,113,100,108,112,109,104,102,100,113,112,100,113,110,94,100,107,94,102,117,97,97,112,96,92,101,109,110,116,109,96,100,89,114,96,109,87,108,90,106,103,116,103,112,109,88,105,88,89,102,108,98,96,104,99,94,89,110,101,97,102,87,108,94,98,84,94,94,122,94,102,107,104,87,93,100,102,101,103,102,100,104,124,106,97,102,98,110,99,108,96,101,107,110,87,93,107,99,104,112,108,109,107,101,114,95,102,109,96,106,112,115,109,114,113,100,108,105,100,103,104,95,108,103,98,100,79,125,96,106,105,91,97,101,102,106,91,99,105,103,100,107,96,95,109,101,102,96,113,105,107,95,113,101,68,97,105,112,97,122,116,105,102,107,109,101,100,113,95,104,117,116,108,99,92,106,94,109,107,110,84,88,100,107,106,88,87,106,102,91,103,84,106,113,115,98,76,98,116,104,116,98,107,108,99,101,98,101,96,116,88,117,91,110,125,104,94,114,107,97,102,123,98,102,115,103,91, +565.20911,105,107,106,82,112,124,116,116,103,115,107,112,100,110,107,96,108,103,105,116,105,106,104,131,109,95,98,105,104,105,102,103,104,101,111,109,109,99,110,96,103,118,113,106,110,109,119,125,105,124,103,109,108,118,94,116,110,112,117,99,94,108,104,100,100,104,102,107,103,107,102,99,99,111,114,141,99,117,122,99,110,117,104,109,94,91,104,110,100,97,108,93,116,109,99,108,101,105,105,101,126,127,104,104,101,108,106,110,92,98,95,109,106,99,112,103,107,104,99,104,114,107,88,114,109,103,95,107,96,108,124,110,113,120,110,106,112,107,92,111,97,104,95,102,101,94,114,91,99,100,109,101,113,97,98,112,107,110,105,98,103,114,116,110,103,100,100,102,103,102,113,113,103,108,105,108,88,105,114,104,102,103,103,121,96,102,103,106,111,122,111,115,103,83,120,112,105,113,97,115,113,100,102,97,104,109,101,107,104,111,99,116,95,71,100,112,107,105,99,83,105,109,108,106,99,114,112,105,107,101,111,106,91,112,100,105,110,99,113,101,109,104,110,102,111,117,113,109,113,75,101,119,103,106,104,114,112,111,97,116,115,110,116,106,103,98,97,109,112,109,104,114,99,108,116,102,103,106,99,105,103,106,104,100,110,100,96,108,116,94,97,103,108,108,104,107,110,102,113,99,96,98,114,114,103,109,108,110,120,112,110,102,101,106,99,122,111,101,102,106,100,104,111,103,105,119,106,91,111,107,100,106,103,115,113,96,113,102,107,99,109,108,99,107,100,119,105,108,112,102,90,113,110,106,112,111,118,113,121,115,106,96,106,102,102,105,99,101,122,113,109,111,107,120,106,110,119,110,97,106,107,113,81,110,108,107,115,99,109,107,108,112,109,109,103,101,107,107,108,117,105,112,110,97,100,101,104,110,96,128,98,105,118,109,99,113,116,100,98,97,101,106,106,112,100,123,107,98,91,112,100,105,105,103,90,116,94,102,112,116,110,113,107,97,105,100,113,97,116,107,90,109,112,114,102,99,115,101,109,102,103,121,111,113,106,107,113,108,101,95,122,111,87,101,104,106,100,103,100,109,89,107,108,138,108,109,117,99,97,107,99,103,111,106,104,108,108,102,108,113,108,102,96,111,96,107,103,98,108,108,109,104,103,113,101,107,108,109,104,114,110,107,113,110,117,102,114,67,106,114,110,109,107,107,107,106,104,89,106,116,113,106,105,102,105,106,116,107,116,110,107,115,113,108,102,105,83,110,104,107,118,105,101,106,96,115,95,110,112,101,87,99,103,105,104,115,98,106,108,111,104,103,116,111,122,103,110,108,86,101,94,98,105,100,86,113,109,114,101,109,101,92,105,104,98,99,113,116,105,107,111,108,111,95,103,103,111,98,110,99,110,104,106,96,113,105,98,116,103,113,100,111,108,99,95,107,94,108,114,94,106,101,110,113,107,93,103,121,109,106,99,111,90,112,115,100,113,107,107,106,109,105,98,107,101,93,106,112,112,120,108,99,108,103,101,103,102,104,103,96,102,96,107,105,97,100,105,105,103,111,112,100,96,106,117,103,100,102,114,98,108,95,109,93,114,116,106,104,104,99,108,106,110,111,113,105,99,113,99,103,103,124,108,116,102,105,106,110,105,107,115,114,112,102,115,111,121,118,113,99,94,107,114,121,115,99,107,113,105,100,113,102,101,105,105,123,103,110,113,121,106,108,82,109,111,98,103,113,108,107,110,82,101,104,106,102,105,125,104,105,109,96,113,104,77,115,100,103,113,119,106,111,107,124,115,107,104,104,111,113,112,100,100,112,112,110,102,107,103,103,116,104,104,99,101,106,107,110,101,104,112,106,96,109,107,103,111,96,102,99,106,109,106,112,97,107,101,103,113,95,102,114,110,97,100,110,109,100,110,105,115,105,114,109,108,98,118,99,108,110,109,130,102,108,109,91,109,116,117,95,99,108,104,125,101,110,114,106,121,121,121,112,98,115,103,95,99,111,100,101,116,110,105,114,104,103,101,108,106,114,107,108,104,107,121,88,99,109,114,116,106,103,107,117,110,107,104,119,102,104,107,106,120,115,112,112,114,107,114,111,108,118,118,113,105,109,106,103,106,118,102,110,101,109,99,110,110,106,107,106,103,130,112,106,97,112,97,122,119,109,110,125,106,108,98,91,105,108,109,98,137,110,119,108,111,108,107,104,108,99,98,118,103,104,107,113,108,109,116,102,108,105,110,114,91,106,96,102,100,107,107,110,110,105,110,106,108,115,94,99,93,106,108,111,106,116,128,109,113,125,97,111,102,107,121,121,117,119,101,102,121,119,119,112,113,111,114,142,138,178,189,215,244,276,289,305,273,262,217,215,222,214,215,179,187,155,187,148,128,146,127,112,122,117,117,103,108,115,107,100,116,123,98,103,114,102,121,103,108,91,109,99,112,123,106,113,109,106,115,110,102,110,107,101,99,110,107,104,117,108,95,110,104,98,102,107,99,110,90,104,109,113,110,98,101,111,113,103,99,112,98,105,110,117,112,125,103,103,101,98,104,105,101,99,113,108,87,117,110,111,95,103,103,111,99,101,109,109,108,110,95,96,123,99,110,117,121,100,109,105,111,97,95,96,106,126,113,96,125,118,109,99,78,109,100,104,108,102,116,109,99,109,106,106,113,100,117,111,102,106,99,107,108,107,111,102,96,89,112,102,92,109,102,94,105,122,101,105,101,101,102,116,115,105,91,114,97,96,102,109,99,114,109,112,107,105,105,103,99,106,103,117,99,104,96,102,112,105,103,96,102,110,112,103,117,99,97,87,97,111,113,104,107,103,92,109,111,99,107,111,110,100,106,103,106,103,105,85,115,104,116,103,103,119,115,105,114,107,107,117,111,117,112,99,107,102,111,106,104,110,98,107,102,111,91,108,117,110,118,102,116,107,105,110,102,111,110,119,102,96,88,109,103,96,100,118,93,105,99,88,112,102,100,130,97,111,111,110,116,94,113,79,100,106,116,105,106,104,111,97,99,93,108,110,104,92,87,103,102,109,107,100,112,104,100,102,110,110,107,108,113,108,112,95,106,98,105,109,99,110,115,115,97,106,112,115,98,107,96,93,99,90,106,101,102,107,105,104,98,103,98,95,105,102,116,113,109,105,112,111,109,117,91,102,89,106,117,90,107,104,100,104,105,103,104,106,97,107,97,95,100,101,103,96,117,133,108,96,113,96,104,109,85,109,113,85,95,100,103,108,102,109,111,103,102,104,104,101,113,93,106,101,102,103,104,103,110,102,103,100,108,102,95,109,111,102,94,91,100,95,113,106,100,92,106,106,100,98,113,117,98,100,105,99,99,108,103,112,95,97,103,93,113,88,108,111,114,98,106,103,96,119,98,101,84,112,105,91,102,99,109,111,102,96,107,117,100,107,96,104,110,100,101,110,115,111,106,108,102,99,100,112,105,88,93,106,113,112,107,105,102,102,108,108,102,94,105,102,98,103,77,112,100,95,109,103,108,95,104,108,102,109,97,103,112,108,102,102,114,105,102,106,109,112,98,113,100,100,107,112,124,104,109,120,102,108,112,104,99,100,94,106,112,102,112,106,109,112,112,110,106,96,112,93,110,100,110,105,108,112,110,101,117,106,105,104,132,106,118,95,108,106,101,111,111,93,95,98,113,100,86,103,98,99,99,105,101,97,100,101,103,92,105,113,103,102,107,106,108,103,107,96,113,97,107,113,108,89,99,121,107,104,105,109,89,105,115,104,102,112,102,113,110,99,106,105,102,103,100,100,112,105,109,95,99,112,97,87,85,95,102,118,112,101,104,116,113,109,110,117,102,116,104,110,107,116,95,112,99,115,103,104,103,103,107,106,104,95,96,110,105,102,112,86,115,99,109,105,108,95,109,94,109,95,119,107,108,96,107,98,93,110,87,109,111,106,96,101,104,111,100,112,113,109,106,96,113,101,94,96,91,91,105,103,110,109,112,104,121,117,107,93,106,101,108,109,105,100,104,104,106,99,101,109,115,107,93,74,108,72,109,115,103,90,95,107,101,102,91,99,114,104,105,92,105,107,104,115,95,119,113,111,107,103,122,109,111,94,100,109,121,96,96,108,105,117,113,107,102,100,99,110,90,91,113,74,100,111,118,94,124,95,102,90,104,102,126,107,111,96,107,104,101,102,100,106,104,100,110,109,106,95,105,78,108,98,111,112,111,103,99,96,109,100,90,103,85,107,113,95,94,96,109,96,110,110,104,99,109,102,98,102,110,107,100,96,94,102,103,118,110,116,94,98,119,108,110,104,102,117,131,97,108,107,103,91,88,104,105,92,109,102,94,111,107,102,116,110,104,104,96,106,103,108,101,93,99,99,127,100,91,101,111,107,113,113,95,94,102,104,105,98,104,99,99,93,103,97,105,99,100,111,101,107,112,92,114,96,110,103,110,126,109,97,105,115,108,99,105,102,112,97,102,96,103,107,109,106,105,101,112,114,102,107,91,98,106,98,115,111,97,106,102,97,104,94,95,95,102,95,95,103,113,111,87,108,117,105,103,100,98,94,113,108,113,122,112,85,103,104,107,104,100,107,110,110,113,112,107,114,104,95,91,90,101,105,106,98,112,104,103,97,101,119,92,112,89,101,107,100,103,101,94,88,104,103,95,101,102,95,107,107,100,102,94,96,102,84,100,108,79,100,102,108,99,98,109,95,103,102,118,103,110,90,98,98,106,113,106,109,100,105,113,107,98,107,104,91,95,94,108,110,102,85,104,101,95,100,100,100,103,92,97,101,104,112,110,106,107,111,109,110,100,103,126,114,95,107,104,96,116,108,105,104,106,98,94,106,114,100,132,75,98,87,105,110,109,107,105,82, +565.34998,123,103,92,116,110,107,117,91,102,118,100,102,103,114,98,111,109,111,99,107,104,92,108,111,100,110,110,116,103,107,109,105,103,96,110,117,99,101,109,99,98,113,106,100,104,106,92,95,96,100,107,100,105,97,107,108,94,116,110,103,103,96,112,90,101,107,98,95,106,101,107,109,103,102,107,116,90,99,99,100,105,95,89,101,107,107,99,103,105,105,122,100,101,104,100,110,105,95,102,95,99,111,107,101,124,85,98,99,100,91,103,107,96,107,104,99,95,103,111,111,110,109,109,102,110,121,116,115,105,110,105,109,100,119,88,102,104,98,124,116,103,102,99,95,106,101,101,96,93,113,107,99,103,100,105,115,94,116,110,110,121,101,115,113,102,114,104,104,110,95,102,110,94,106,104,104,105,99,90,107,94,108,111,110,99,98,98,92,100,103,110,103,108,102,113,105,105,106,97,106,96,108,106,97,104,103,117,101,116,106,96,100,100,83,101,100,101,95,104,94,104,105,121,112,112,88,99,122,107,106,104,115,97,103,105,95,109,111,114,104,101,96,113,100,88,107,104,118,116,110,108,104,120,105,105,104,89,98,96,102,91,105,101,102,98,102,98,100,117,93,95,103,113,110,108,103,97,100,100,97,88,101,100,96,104,100,95,104,101,103,110,102,110,95,102,108,108,107,109,96,102,100,103,111,100,107,100,111,99,102,94,98,95,100,106,100,108,104,107,99,105,93,109,100,106,110,101,89,107,103,125,104,110,105,92,110,114,104,109,105,99,97,96,98,108,118,91,98,108,101,103,108,105,111,104,105,101,106,90,122,106,88,100,103,110,104,100,125,114,107,98,101,105,103,99,92,114,108,116,101,109,113,109,97,116,111,104,97,108,99,107,104,97,105,107,102,91,116,109,100,99,103,98,97,99,103,101,107,102,108,103,100,105,113,113,99,106,98,103,109,94,103,90,104,105,101,104,105,101,102,101,108,84,99,102,108,102,102,113,92,99,96,99,102,105,99,106,102,93,121,98,91,100,126,93,107,109,94,106,103,103,112,104,105,104,101,103,110,119,102,108,98,103,105,101,97,109,109,101,113,101,113,111,104,111,114,105,119,100,109,98,105,106,94,103,96,98,100,97,106,103,104,102,110,103,108,96,109,105,98,106,109,100,104,96,121,86,112,103,98,88,108,112,101,111,100,104,107,97,110,111,117,101,105,101,105,95,106,103,108,108,101,110,112,106,107,107,112,92,108,99,112,101,113,107,92,112,94,97,103,104,109,106,99,109,109,108,102,106,103,99,103,104,100,104,100,106,107,102,100,97,95,111,100,104,106,102,119,101,108,113,109,108,113,101,94,102,99,99,104,119,108,104,99,103,104,106,106,107,106,99,114,111,114,102,112,111,100,101,107,112,107,119,105,104,94,99,105,99,97,106,106,97,97,107,100,112,100,106,107,95,94,113,105,106,96,104,99,101,115,103,113,113,95,108,106,99,112,102,109,98,107,106,110,92,102,108,91,102,109,107,114,101,109,105,115,118,108,105,107,104,106,115,97,122,103,114,98,108,100,101,115,77,103,107,105,105,97,96,94,107,99,111,103,99,109,102,106,101,104,96,110,100,106,106,106,103,107,101,98,90,95,101,114,96,102,104,95,96,98,104,110,106,90,114,112,104,104,115,101,102,98,95,104,98,96,95,101,108,107,117,112,111,108,109,110,107,108,118,107,123,117,95,110,100,113,109,118,111,100,120,96,110,107,107,106,95,101,99,98,95,99,115,102,103,111,100,112,88,110,99,95,105,114,99,101,94,104,100,106,90,111,72,125,104,101,108,105,109,93,109,106,99,104,111,114,106,133,95,104,99,97,94,104,114,107,99,104,95,97,105,116,91,105,105,108,99,107,109,97,105,110,107,101,102,99,105,120,102,114,102,108,108,114,87,120,124,104,97,104,110,111,102,104,116,107,85,111,104,103,96,102,113,106,103,101,112,104,110,103,100,106,117,112,101,108,125,105,99,102,96,108,101,96,98,97,102,105,107,105,108,96,99,113,105,95,98,101,99,99,94,109,108,105,105,103,95,103,106,103,97,106,113,103,96,106,114,83,102,103,98,102,119,113,101,99,96,101,101,115,106,98,109,114,107,92,108,107,99,102,110,96,114,105,108,108,101,99,101,104,118,98,101,103,113,107,98,110,101,97,90,108,112,100,89,100,97,99,104,108,113,112,118,106,104,105,100,100,117,118,98,101,102,101,101,98,98,97,105,108,100,113,111,99,104,103,91,94,98,100,80,120,111,111,104,108,97,101,105,94,123,122,118,80,120,112,105,108,110,111,126,117,111,123,119,118,137,152,164,168,186,226,227,264,285,232,265,281,245,216,231,217,217,186,181,176,164,144,114,113,114,137,117,106,112,106,113,117,117,105,113,115,116,126,111,87,105,103,94,102,115,106,107,118,100,114,84,114,102,108,97,98,108,97,113,116,110,105,103,113,103,95,135,117,103,86,109,98,113,118,102,110,98,110,102,113,116,110,107,109,120,105,104,107,88,101,109,84,123,117,115,106,106,101,89,105,99,112,106,101,100,105,99,111,96,90,111,108,109,114,108,99,96,112,98,103,96,103,102,108,106,106,98,86,111,107,105,102,109,98,106,105,110,101,108,109,113,106,104,105,113,111,119,122,100,106,111,110,102,103,113,109,101,107,111,117,105,94,86,107,113,100,100,114,115,100,95,113,108,116,109,83,117,112,117,108,118,117,100,112,96,109,103,87,122,110,105,114,112,113,115,117,106,117,101,113,103,116,112,120,112,116,112,104,113,109,111,106,109,106,103,95,109,115,99,107,102,93,115,110,101,103,94,109,96,109,94,111,99,112,115,109,113,114,99,113,99,106,109,106,103,109,115,100,110,108,105,91,99,105,106,107,110,95,112,109,106,113,99,110,95,107,109,107,109,102,117,101,107,109,112,99,104,109,105,113,108,113,102,104,110,110,90,112,116,116,108,112,110,100,100,113,102,116,105,106,98,107,98,109,117,107,95,110,109,105,102,99,105,96,94,94,97,108,83,101,108,101,103,105,110,118,99,94,113,107,106,101,117,104,106,102,103,115,105,97,102,107,105,94,89,101,106,105,100,97,112,110,104,110,104,104,96,107,120,104,105,99,118,122,108,94,96,100,103,113,108,106,108,105,91,99,109,106,102,90,106,115,104,97,106,102,89,104,104,112,116,102,111,123,104,102,109,116,102,114,74,106,106,101,100,126,110,110,92,102,106,98,95,106,105,105,95,104,98,121,113,104,107,113,121,121,109,104,111,103,106,108,114,100,100,107,102,104,110,98,102,121,105,112,105,108,103,103,107,106,113,98,111,107,107,111,92,120,106,102,99,110,116,99,99,107,111,94,99,104,113,107,109,104,103,102,106,101,103,124,106,115,108,107,96,99,101,101,105,109,75,103,115,109,108,119,117,114,104,106,109,115,106,106,113,107,97,109,100,97,102,103,111,108,106,106,103,116,106,104,97,120,100,105,105,103,108,98,122,109,106,98,101,119,110,93,101,102,105,102,97,127,105,95,105,109,113,104,110,112,104,100,103,116,95,104,104,103,105,101,111,106,104,116,109,84,113,117,105,98,103,99,110,113,109,105,106,108,99,104,104,109,107,109,94,107,123,109,109,105,99,113,112,99,95,105,97,102,90,109,112,108,118,92,97,99,104,88,109,111,118,105,112,94,104,104,98,103,108,110,116,108,108,110,111,107,106,116,109,106,105,108,108,109,106,97,106,108,108,98,84,103,107,102,117,98,102,106,97,105,93,98,93,109,97,110,114,95,103,93,102,105,145,101,107,110,102,105,104,115,106,101,107,111,139,101,107,103,111,110,121,92,98,108,108,104,109,102,101,107,112,117,110,103,94,105,127,99,108,109,106,111,96,103,98,108,98,103,101,107,99,111,104,103,105,111,102,116,106,107,111,102,134,99,117,114,112,106,126,104,113,103,110,102,112,101,105,105,92,107,105,88,111,104,108,103,112,109,118,112,105,104,105,92,123,92,101,106,105,114,103,105,105,109,110,107,106,102,68,111,111,99,113,98,96,103,119,104,105,102,111,101,111,112,95,104,97,90,110,110,100,95,106,111,113,98,103,100,108,104,107,99,102,92,102,103,108,101,109,108,104,109,100,104,108,108,103,96,103,98,111,87,107,119,108,104,93,100,107,102,105,107,110,97,101,100,109,100,95,111,110,101,117,101,103,95,104,96,84,103,103,98,108,111,97,98,104,96,109,101,106,99,97,114,79,105,104,112,107,108,92,102,97,101,104,103,116,102,98,99,106,107,113,110,102,107,110,117,104,104,113,100,103,96,96,107,100,91,116,105,100,108,105,108,96,101,95,113,104,94,87,100,100,100,101,89,101,100,99,105,97,106,95,109,94,102,96,101,108,105,98,109,102,106,105,94,107,100,111,111,102,98,117,98,102,102,101,111,93,89,106,114,111,100,104,103,110,107,98,110,99,110,109,100,99,109,102,97,108,104,109,115,108,95,112,116,111,106,99,109,104,107,98,103,100,90,103,107,110,105,102,108,115,108,83,107,109,107,109,108,104,108,106,104,106,101,98,104,118,106,109,101,102,100,110,102,97,117,103,112,108,105,108,104,93,99,106,98,92,99,113,96,97,101,106,114,114,100,120,106,102,99,103,106,97,106,102,94,97,98,115,100,110,105,108,100,105,103,104,99,104,107,101,100,117,102,80,108,109,95,109,97,97,106,99,109,106,105,113,109,102,94,95,105,120,108,107,100,101,109,90,101,96,91,109,105,101,103,113,111,95,101,98,108,106,119,103,104,101,111,98,120,93,101,103,95,111,97,117,106,121,98,100,87, +565.49091,101,101,98,106,105,108,100,76,100,105,101,111,108,110,107,110,86,94,95,107,104,100,111,115,112,98,98,113,115,107,103,94,105,110,108,107,110,92,100,91,106,104,108,100,104,99,107,104,116,113,109,94,111,114,123,94,91,106,114,105,102,101,97,98,78,114,108,100,101,106,102,106,95,104,102,117,91,103,95,101,104,114,102,93,92,110,98,96,119,105,129,104,99,110,112,104,117,102,110,102,112,98,98,100,102,101,89,107,94,87,88,92,105,100,95,103,111,105,115,105,102,108,113,117,103,120,125,87,108,96,114,112,105,113,109,102,96,120,93,101,111,102,95,102,103,87,107,105,91,112,103,106,98,99,94,99,110,103,119,114,104,105,87,106,109,102,105,101,105,105,121,106,100,107,104,100,106,109,114,119,103,125,99,108,104,109,111,99,111,109,95,111,112,112,113,110,117,110,104,102,112,103,99,114,101,117,109,109,108,96,113,115,106,115,109,103,95,116,106,105,93,108,98,109,101,107,111,114,98,97,112,117,114,122,106,103,126,114,122,116,113,96,86,104,102,107,88,112,75,110,102,103,109,108,111,113,105,104,110,105,99,104,103,97,99,107,101,102,102,110,115,100,112,106,117,112,82,103,107,103,104,104,106,105,109,109,82,105,106,102,101,90,123,108,110,114,103,107,106,106,110,101,86,115,106,100,109,116,109,110,95,106,104,101,117,104,103,113,107,113,105,112,109,108,110,102,100,104,112,117,104,105,105,106,113,114,118,113,78,98,103,94,104,100,104,114,111,118,103,100,101,105,99,111,114,109,113,115,103,103,103,106,95,103,104,105,99,102,105,98,120,100,115,110,96,106,111,107,107,102,112,90,100,98,122,101,109,107,102,110,117,99,102,108,105,102,105,101,127,96,105,112,107,106,99,101,98,108,108,105,96,103,102,110,104,99,100,101,114,106,100,107,106,106,97,109,105,112,104,116,94,98,99,101,106,92,107,108,109,103,122,95,113,106,97,99,114,95,107,102,104,88,100,119,99,108,98,121,108,103,108,106,111,119,105,110,120,97,103,103,103,94,107,99,107,96,97,101,109,107,103,112,109,103,114,112,96,106,108,100,104,102,109,98,101,99,102,105,109,102,103,105,114,106,106,100,93,100,107,99,108,111,104,103,112,113,111,129,95,105,116,105,99,94,106,119,116,104,97,118,119,104,108,107,99,99,101,106,103,104,102,102,104,110,109,104,111,102,104,107,118,106,107,95,110,109,115,101,101,97,102,108,100,111,99,86,101,107,113,77,109,107,109,114,105,108,112,97,116,118,105,97,114,105,99,104,111,121,110,109,107,129,102,107,104,112,103,103,110,108,102,109,113,99,104,99,113,93,96,112,107,103,117,113,101,105,91,102,103,114,98,123,108,105,106,107,95,97,117,110,104,106,109,113,100,102,111,96,118,91,109,113,106,104,95,104,103,104,108,112,100,111,103,121,94,96,113,100,113,113,125,105,112,107,104,111,117,101,113,100,96,106,108,111,91,110,120,101,109,113,120,102,105,87,94,95,102,111,99,112,100,122,98,110,112,105,109,112,114,98,109,85,92,93,108,117,115,104,98,98,107,99,98,103,110,112,102,102,108,109,112,97,106,103,105,105,121,105,91,100,108,107,102,109,99,114,112,114,111,105,99,101,105,113,99,108,103,110,99,100,99,108,104,107,113,111,111,103,99,90,111,107,109,112,95,109,93,97,104,82,104,112,109,96,100,118,100,103,112,92,97,103,113,105,99,93,108,108,108,99,102,107,99,103,113,114,95,105,109,122,89,106,103,104,110,120,94,100,102,106,112,104,112,106,99,118,114,100,98,97,108,114,98,100,102,115,104,108,110,110,96,89,114,105,107,103,104,106,102,120,97,113,105,100,112,102,104,109,101,106,104,100,106,113,92,99,106,107,121,103,103,114,104,98,110,105,106,100,98,105,109,111,105,107,109,106,110,102,117,105,98,112,98,107,110,97,95,115,109,116,106,101,110,112,94,104,105,106,108,103,119,98,74,109,118,112,102,94,104,100,97,96,113,107,98,98,105,107,111,105,99,108,101,112,107,107,109,114,105,104,105,105,107,104,92,113,98,106,105,109,108,101,102,106,94,104,98,113,112,103,121,98,106,112,103,89,105,104,100,100,102,95,107,103,110,100,105,97,106,107,113,97,117,107,75,99,114,93,103,106,108,96,107,107,96,82,108,100,114,92,110,101,113,107,96,112,102,102,109,107,100,100,105,102,103,99,107,110,99,105,115,101,113,100,107,104,118,109,101,103,110,100,111,97,121,135,101,112,113,108,114,112,116,112,145,128,121,150,161,183,150,232,225,284,268,268,228,237,226,210,209,198,227,191,173,176,159,147,119,137,111,119,106,103,115,96,112,113,106,121,95,111,100,99,118,107,116,106,100,104,112,95,103,111,95,95,105,110,102,101,112,109,100,91,92,111,115,104,98,108,107,105,116,115,103,105,99,99,110,109,94,111,115,101,99,105,110,109,106,103,114,121,105,105,111,110,106,111,100,99,113,112,103,88,110,99,96,100,106,89,105,103,102,114,93,103,109,98,106,111,109,94,105,115,104,124,104,113,110,97,103,96,118,96,115,104,100,108,116,89,113,104,105,93,103,111,111,107,109,110,104,102,104,107,98,107,112,107,104,93,113,105,116,113,103,108,116,87,109,112,111,95,104,117,105,110,96,101,100,108,98,105,100,111,117,102,103,120,103,99,91,105,105,95,107,102,100,104,99,112,99,107,113,106,110,100,100,111,116,107,107,114,110,104,91,99,103,101,99,107,104,117,97,102,109,109,104,95,116,105,103,113,113,95,95,106,94,100,101,119,103,101,101,113,106,95,109,101,114,107,109,110,108,96,97,111,104,113,101,105,111,113,110,107,103,104,121,111,103,108,116,108,110,118,120,95,107,113,114,91,117,92,91,98,107,109,108,93,98,96,102,104,89,86,117,110,115,102,124,97,101,110,102,111,109,123,113,95,97,108,96,109,101,97,108,120,102,109,100,101,103,115,85,117,100,110,113,109,107,106,112,111,117,98,112,105,100,108,104,92,99,97,99,112,105,112,99,109,106,99,97,89,103,117,120,109,101,103,93,113,95,95,101,111,103,107,101,109,107,109,110,104,108,106,111,124,111,110,106,103,109,101,89,102,115,95,101,109,112,95,102,104,103,97,109,111,95,101,118,106,105,101,106,105,116,106,108,115,107,116,101,109,98,115,107,106,115,107,111,104,102,112,112,118,116,95,108,108,106,104,95,98,103,107,113,106,94,109,101,104,108,111,98,109,99,94,98,121,106,108,95,107,100,117,111,103,115,108,89,107,120,108,111,108,107,111,107,113,110,100,138,109,101,109,101,103,97,113,100,111,97,106,107,90,107,99,100,110,99,99,89,105,108,83,105,108,116,104,102,101,104,102,87,141,91,97,98,103,112,98,113,104,105,105,111,100,104,107,101,105,117,114,103,102,121,99,108,116,84,95,101,102,99,104,102,121,100,101,105,105,117,104,99,117,113,104,99,101,105,92,108,97,106,92,96,112,101,101,105,108,100,110,112,103,95,93,103,103,100,111,104,111,112,114,106,104,102,109,107,109,117,95,109,99,100,103,98,99,111,109,106,102,108,102,104,115,109,107,80,103,107,96,104,103,86,98,108,107,115,105,104,113,110,104,103,99,110,96,113,101,102,91,110,92,108,105,121,107,108,105,110,106,98,100,102,96,112,92,110,104,101,112,102,80,104,95,104,105,102,101,103,103,108,102,102,105,101,100,102,102,109,100,101,109,120,116,119,109,108,108,103,102,100,110,109,95,97,98,102,108,105,100,98,117,114,99,105,104,95,113,102,104,101,120,112,112,111,112,102,103,117,101,108,90,109,113,98,100,117,113,108,100,104,106,100,113,125,107,97,100,111,105,94,100,90,103,91,110,104,101,106,111,95,102,92,66,103,109,108,121,108,99,122,95,104,104,116,97,102,105,110,106,98,119,103,107,102,100,102,108,114,126,91,87,98,105,99,107,109,114,104,104,101,108,113,111,94,111,101,106,99,113,118,113,111,113,113,103,104,106,103,111,102,104,114,103,100,106,111,124,105,108,91,106,111,99,108,113,102,105,109,106,77,104,103,109,109,105,113,99,110,120,109,108,121,108,98,89,102,101,107,91,98,106,106,104,112,103,100,99,99,101,115,113,100,99,104,97,98,100,101,94,103,100,98,104,114,100,96,111,103,83,124,110,84,102,110,106,110,111,106,108,109,107,108,108,98,89,106,116,98,102,106,124,114,101,98,105,104,100,99,117,117,107,99,106,112,108,103,117,97,117,97,105,104,100,108,113,100,105,98,79,101,117,101,100,102,105,109,102,106,102,105,98,100,95,97,112,140,104,112,97,99,112,110,102,96,101,98,101,100,104,114,92,109,108,101,104,95,98,106,111,102,114,99,108,117,98,116,91,101,118,113,111,103,110,107,123,102,99,107,104,98,90,93,116,101,112,112,107,113,107,102,102,102,112,117,109,96,129,99,100,113,108,103,98,106,94,105,111,95,103,98,116,104,113,113,109,117,95,104,116,116,89,109,100,103,93,101,86,100,91,111,105,100,96,105,116,104,100,102,92,109,92,99,103,99,105,103,95,100,113,117,116,107,112,99,105,110,107,84,101,99,98,93,96,115,87,100,103,120,77,112,102,103,111,66,94,98,101,86,106,106,115,110,105,92,108,106,91,105,105,98,109,108,95,110,99,115,101,68,90,89,103,102,102,105,98,108,102,134,115,108,104,91,107,101,102,107,90,106,109,103,96,114,92,100,106,94,96,116,115,94,100,101,105,99,99,95,91, +565.63177,91,104,85,91,90,108,96,116,110,105,98,115,124,99,79,100,105,98,96,104,87,110,103,112,109,111,110,114,97,96,112,96,100,107,98,96,104,100,105,111,94,113,106,105,107,119,106,108,103,94,117,107,108,100,96,101,97,109,114,81,124,111,102,113,104,99,106,104,109,89,100,105,97,103,108,114,107,112,120,106,113,103,104,108,112,116,100,96,84,96,101,105,116,109,111,102,107,103,94,79,104,100,79,108,99,103,103,100,105,115,104,104,98,107,94,108,100,116,101,104,107,116,91,117,101,105,102,100,109,114,112,108,106,119,102,98,91,110,91,99,96,106,100,99,86,111,104,94,108,105,104,108,108,98,104,96,110,106,113,102,97,108,104,101,111,114,114,90,95,105,109,110,102,101,99,110,101,97,102,97,91,94,112,98,103,99,87,98,110,104,105,116,105,101,115,105,100,114,101,110,109,103,113,95,106,116,104,108,115,111,102,110,91,113,100,110,95,108,121,107,102,109,101,102,106,106,101,114,113,103,111,97,109,108,100,123,99,100,98,103,103,97,104,97,98,113,99,106,110,98,87,118,109,117,100,106,99,106,103,106,100,101,100,99,95,99,107,109,104,100,104,108,97,102,106,111,105,110,93,100,99,104,127,115,111,126,108,106,108,100,93,102,101,104,119,103,114,96,108,109,98,98,92,105,98,108,106,107,96,103,95,110,108,110,109,99,106,110,104,93,92,100,107,105,101,90,105,97,100,108,104,106,117,105,103,114,106,90,108,113,109,113,99,107,107,107,100,137,98,104,111,110,99,113,103,116,112,109,103,95,103,105,102,92,113,106,114,108,105,103,107,116,104,112,91,105,109,106,102,108,105,105,105,100,95,100,118,120,99,111,116,106,91,102,93,98,103,98,97,95,100,112,111,109,108,100,116,107,102,94,96,102,101,109,104,93,107,105,104,97,98,92,90,109,108,103,103,101,104,110,96,110,111,120,114,103,97,102,100,86,107,102,109,102,99,112,106,95,103,116,102,95,109,105,112,104,108,109,102,108,95,103,102,104,98,104,100,113,103,119,122,107,92,104,103,115,99,104,100,76,109,109,96,106,107,118,104,108,101,100,106,105,126,98,108,98,95,102,111,86,108,106,90,110,108,99,98,97,95,107,114,103,102,99,107,99,103,107,112,103,113,114,103,108,108,111,109,104,96,110,97,96,116,96,120,97,101,94,112,121,105,100,98,103,113,100,116,97,95,102,108,107,96,99,116,106,110,91,99,108,101,108,102,105,104,100,106,103,95,112,105,93,102,99,103,75,94,101,106,101,103,97,108,115,94,102,109,109,113,106,104,88,96,111,109,102,113,109,107,91,129,106,99,96,108,98,97,105,101,94,108,113,120,113,105,94,97,105,103,107,105,96,103,104,103,114,104,107,92,96,86,118,92,100,103,111,104,85,109,100,108,113,104,108,95,109,98,99,115,109,103,108,109,100,103,114,108,99,113,99,109,104,106,103,97,85,95,101,117,108,96,106,112,104,100,96,106,107,112,105,114,106,116,95,102,112,106,113,98,102,113,108,100,112,116,112,108,105,103,94,108,100,104,100,103,112,117,110,107,99,106,125,109,103,106,102,100,111,116,106,79,103,112,121,110,103,98,96,102,110,121,117,94,95,105,87,101,103,112,103,83,105,101,110,103,101,109,120,102,104,96,97,99,98,103,90,104,118,95,104,101,108,100,95,114,115,101,97,111,97,99,105,101,95,107,94,123,112,104,94,105,92,116,97,109,108,115,117,113,97,99,99,96,111,92,100,91,102,103,110,109,107,102,109,110,100,105,97,77,103,113,114,100,111,112,74,111,101,123,98,99,101,98,95,94,113,104,95,104,101,112,98,107,96,108,114,100,109,121,105,95,107,112,104,114,115,112,114,95,107,102,97,103,102,92,98,103,106,92,106,101,107,102,93,103,107,104,128,99,111,102,111,101,97,104,100,133,95,111,108,81,107,108,102,120,98,100,111,105,102,115,102,105,113,98,95,107,116,100,107,98,101,116,100,96,108,98,116,103,116,111,108,103,99,108,103,96,112,115,104,107,114,112,109,118,101,97,107,91,104,111,115,105,104,97,109,95,108,107,105,102,111,100,102,91,103,95,109,103,99,101,101,110,105,114,109,104,104,100,113,117,103,91,108,105,116,93,113,100,96,111,106,106,102,100,98,103,92,94,110,104,107,101,99,91,105,105,95,116,107,98,99,114,107,100,102,102,93,99,107,110,112,76,116,111,105,108,106,109,110,95,102,112,97,114,105,113,100,107,110,111,106,107,98,107,118,108,103,117,119,109,117,124,104,121,130,112,158,167,115,207,249,237,252,283,262,265,282,239,220,212,212,216,211,173,177,146,178,119,105,115,125,131,101,126,103,108,104,124,104,109,105,95,130,111,117,109,113,98,106,101,103,108,100,102,111,108,103,106,94,107,109,102,96,97,115,99,109,124,112,116,99,107,102,108,123,96,102,110,97,102,123,117,104,128,109,108,104,96,109,109,115,102,111,132,101,105,108,105,104,112,110,113,101,121,104,111,126,102,96,103,108,88,102,97,104,112,110,124,92,110,96,117,110,94,115,101,115,106,99,121,106,102,93,105,105,101,87,101,101,96,100,100,104,99,113,102,99,111,108,112,113,105,108,101,111,117,107,106,101,101,105,115,104,102,120,100,102,100,112,117,83,93,108,102,106,93,108,102,104,105,114,109,107,109,110,96,109,94,92,109,101,103,69,116,103,104,118,108,108,102,110,102,110,115,108,82,111,111,112,110,106,100,102,105,105,108,121,115,111,96,103,108,105,85,97,110,134,102,111,115,85,109,117,105,89,112,109,101,106,101,100,105,115,122,92,96,132,108,106,104,104,101,110,100,102,96,100,101,120,94,108,103,95,114,108,111,98,112,95,99,108,96,104,112,78,113,116,109,105,110,100,113,124,116,116,106,116,106,109,108,104,102,102,107,107,106,103,122,102,98,96,98,114,94,106,109,117,105,104,102,112,88,96,112,93,110,108,112,95,106,98,96,94,99,115,91,104,85,95,103,96,111,94,110,101,107,100,116,102,103,110,100,113,101,107,105,111,104,124,103,93,100,101,109,88,102,111,106,104,94,87,106,97,100,87,117,109,108,97,121,110,101,105,107,104,110,90,103,105,106,108,100,106,106,104,99,78,113,108,102,102,106,103,103,106,100,107,102,99,98,114,115,111,110,103,85,102,117,100,110,96,117,115,112,94,92,102,104,90,123,101,107,109,107,110,106,106,109,92,99,112,125,99,112,100,98,111,108,107,86,104,67,91,99,106,106,113,107,104,101,99,101,104,111,103,102,91,109,108,112,98,89,100,95,105,111,103,99,100,104,116,106,113,78,114,103,108,108,106,100,103,87,97,92,112,110,102,102,124,113,108,108,108,100,97,106,97,86,105,92,117,106,103,114,115,108,110,107,103,106,105,107,117,106,119,114,104,116,94,103,98,108,114,99,102,100,111,106,109,101,100,110,91,112,101,102,110,111,110,138,95,96,107,113,98,108,113,108,91,101,117,102,110,99,115,114,110,108,92,100,103,103,84,104,111,110,100,111,102,119,105,104,87,104,98,108,88,88,108,105,113,113,114,92,115,102,108,104,109,118,117,109,105,108,109,104,106,99,101,111,97,112,105,117,108,107,106,103,97,100,108,113,116,105,87,100,109,107,106,99,106,95,108,103,107,83,107,102,96,105,97,99,112,93,105,103,100,103,116,102,100,102,110,106,103,113,96,108,114,113,113,102,114,108,109,99,97,100,112,99,113,110,107,88,108,111,100,120,104,93,111,99,112,110,112,100,100,86,94,84,103,113,100,109,103,85,101,99,98,96,109,101,99,88,97,98,98,94,113,113,99,119,95,102,117,95,100,110,104,106,106,101,113,100,119,104,108,95,105,132,114,94,111,106,105,105,111,94,104,105,108,108,91,101,94,96,104,99,109,104,99,111,105,101,96,112,102,121,117,107,96,110,109,97,113,103,110,108,97,102,108,99,98,111,111,100,108,105,89,106,112,99,106,111,124,108,99,100,112,110,96,102,103,100,109,105,100,101,107,107,103,100,105,107,104,111,103,102,109,100,99,94,98,103,86,113,104,121,112,109,113,106,96,108,102,98,113,121,129,103,103,115,109,108,98,97,106,120,106,107,94,100,105,101,103,108,116,110,108,105,98,109,110,108,106,110,100,97,109,101,104,98,116,109,98,97,102,102,113,104,98,103,109,109,103,107,107,100,107,102,99,110,103,109,121,98,107,104,108,106,109,104,110,75,105,125,100,109,94,99,108,113,105,102,109,97,109,108,102,110,105,94,108,110,115,102,106,111,87,106,103,99,113,86,106,103,86,107,74,112,103,116,110,98,104,103,106,103,108,106,103,97,103,111,88,114,100,117,103,104,98,107,98,109,117,97,106,101,105,102,109,105,109,107,95,103,107,94,102,106,117,115,101,98,102,108,113,97,110,107,101,110,100,98,113,101,112,99,107,110,103,120,110,112,85,99,96,105,100,98,94,104,101,103,104,102,94,101,98,103,112,112,109,116,99,102,114,102,114,95,108,105,102,111,102,108,107,101,94,96,105,103,97,101,107,110,120,99,95,112,89,105,106,109,88,101,118,103,100,103,103,108,94,91,102,117,92,93,95,91,103,103,113,107,109,116,98,99,105,110,101,108,104,103,92,107,108,119,106,109,99,108,92,116,104,108,88,103,114,101,106,94,100,101,100,99,102,99,86,119,90,94,98,97,93,100,100,99,107,115,116,112,116,100,104,95,112,106,107,98,114,103,117,92,113,98,102,110,101,109,100,101,116,101,105,99,95,98,94, +565.77271,100,86,88,92,83,99,126,86,104,125,99,96,103,106,118,107,104,124,105,101,114,92,109,111,105,101,101,96,103,95,98,94,99,95,103,91,91,91,98,118,98,109,117,100,105,113,100,105,84,108,103,89,113,114,106,101,110,97,105,97,92,102,102,106,87,119,93,102,114,100,95,104,103,106,99,97,108,121,97,92,100,95,98,100,92,81,112,104,100,88,117,106,97,93,100,93,75,93,109,92,98,105,89,102,115,105,94,112,101,113,99,101,107,97,92,107,102,111,109,103,99,94,102,103,113,101,108,93,101,105,93,104,110,117,79,91,98,110,112,108,96,103,94,112,101,95,106,98,101,97,106,99,100,101,86,103,102,97,92,107,104,99,102,85,107,73,108,92,102,97,107,105,98,97,120,107,124,100,94,97,105,109,104,90,87,91,98,96,103,99,113,101,97,95,99,106,96,97,105,105,101,98,120,98,100,118,95,107,111,106,99,96,110,115,100,92,113,105,99,101,102,98,100,106,97,104,97,97,94,89,107,110,100,111,91,114,99,117,98,91,109,108,95,111,101,103,100,105,106,104,102,105,102,116,107,86,100,104,100,96,98,109,103,99,102,91,99,104,102,98,105,95,115,101,108,101,101,98,94,114,94,102,99,106,98,97,108,96,111,101,103,113,96,103,110,123,109,84,96,95,96,108,102,117,82,113,106,105,97,115,102,102,95,98,99,103,91,95,93,102,105,97,104,104,102,101,109,92,100,99,101,110,95,96,96,108,90,111,107,99,120,91,100,105,91,104,88,102,99,98,95,102,92,102,100,97,111,108,103,99,83,89,103,91,103,102,97,106,88,107,114,93,105,103,108,89,105,106,99,100,99,108,101,101,98,100,90,116,104,97,120,98,81,130,109,86,98,94,95,104,111,102,93,97,109,105,106,102,111,109,86,94,107,97,102,92,106,104,108,104,100,100,94,93,106,83,100,114,109,99,93,102,102,103,113,98,100,103,96,100,116,94,102,102,98,96,98,99,99,102,96,95,101,106,96,103,102,112,114,93,100,90,101,110,111,107,101,114,102,95,109,101,101,102,103,96,100,105,111,103,102,101,106,106,104,100,103,91,102,87,103,102,107,101,93,106,125,108,102,95,105,96,99,94,115,101,107,100,94,101,107,107,95,90,102,105,98,103,100,96,96,109,94,92,105,110,111,92,104,102,101,106,110,105,104,90,96,103,106,103,106,106,98,103,99,96,107,93,108,107,97,105,105,87,105,104,121,109,116,96,103,98,103,109,104,109,94,112,111,100,89,103,98,101,105,113,105,96,106,109,117,107,84,94,105,100,101,108,116,90,109,96,92,102,99,105,97,116,102,103,102,102,111,92,91,119,104,101,106,103,100,112,105,101,97,108,91,107,97,108,116,99,96,102,103,102,81,107,104,98,96,104,102,101,107,114,102,107,99,94,98,111,108,104,98,93,113,106,108,104,101,106,106,104,103,95,100,111,100,109,119,94,104,114,97,103,80,95,107,92,107,129,99,95,112,110,104,103,105,109,113,95,118,110,110,109,86,100,113,104,104,100,99,101,100,104,83,104,111,95,82,102,98,91,95,106,113,103,94,106,101,110,105,101,95,102,103,109,113,96,104,102,109,100,113,98,98,100,107,128,97,103,100,95,105,108,104,105,114,101,102,96,109,92,90,105,103,103,94,97,100,97,105,96,105,106,101,108,105,95,91,112,93,87,108,89,87,105,99,101,112,99,91,99,100,114,92,98,115,100,101,98,105,97,105,103,111,94,102,107,94,106,102,123,105,102,91,104,102,104,113,111,115,106,99,110,112,103,108,112,102,109,102,116,116,95,104,109,108,122,101,101,104,106,106,106,101,96,101,108,106,117,117,103,103,113,109,95,95,109,98,110,96,93,99,91,90,108,90,95,104,101,97,102,106,95,105,103,94,96,96,105,96,93,104,105,97,101,100,109,91,108,100,113,101,94,105,128,98,92,96,102,104,103,104,103,88,107,98,94,100,106,101,101,143,110,117,106,107,77,99,99,105,101,101,97,101,101,108,99,101,113,109,108,100,104,100,100,107,93,108,97,104,102,101,114,118,103,110,106,117,102,101,110,98,105,93,91,113,99,102,79,105,110,104,95,90,107,113,107,92,102,101,104,103,106,101,108,102,96,114,100,103,99,105,111,86,121,83,116,99,99,96,109,112,101,81,99,87,98,95,105,96,107,102,103,109,109,95,106,102,99,92,98,112,99,104,109,107,100,103,103,116,110,106,106,99,102,104,110,106,99,100,112,100,103,96,100,98,98,112,104,111,104,113,109,127,107,108,111,120,117,128,133,132,115,126,135,148,164,177,185,276,251,297,288,277,258,243,215,280,203,210,225,182,155,173,135,145,120,108,120,122,108,109,108,105,133,121,122,99,112,111,117,112,113,119,110,104,108,105,88,114,109,99,107,94,114,101,124,98,107,106,94,102,103,107,112,108,105,97,97,112,112,112,105,99,99,102,110,102,109,106,108,120,99,99,102,105,107,101,98,99,100,102,103,105,109,97,93,100,96,113,102,110,119,94,117,109,105,105,101,102,106,95,105,103,117,117,106,112,103,112,105,97,108,111,98,100,125,106,98,108,93,97,102,112,105,114,115,106,106,106,109,92,104,96,95,110,102,107,106,114,104,95,88,100,89,87,101,96,105,102,115,105,118,105,98,110,100,98,109,133,79,113,105,113,108,95,102,131,103,112,107,104,106,106,106,107,101,96,102,94,96,107,102,94,108,108,106,103,101,114,104,111,103,106,105,101,112,117,98,103,98,99,98,108,114,95,106,110,106,107,106,101,99,99,104,88,112,116,87,96,109,104,102,103,108,106,108,105,108,108,110,103,91,106,109,96,107,120,103,120,101,103,98,112,110,107,105,101,116,106,104,106,114,103,109,104,120,102,98,92,112,94,97,106,108,99,113,104,100,112,95,110,97,102,109,98,109,111,115,108,103,101,111,111,101,101,106,113,104,100,102,112,98,103,107,109,112,92,110,109,96,103,123,108,101,105,105,102,90,103,111,109,96,90,112,97,101,89,100,124,93,106,93,101,96,110,106,107,96,96,105,107,105,103,112,115,110,99,106,102,115,103,107,103,97,100,102,99,99,92,107,100,112,108,90,113,106,105,108,115,102,107,113,99,101,102,100,95,98,113,101,106,94,99,109,106,109,100,95,102,105,103,102,116,101,106,98,106,106,103,111,111,95,99,98,99,94,94,97,104,106,106,108,104,95,124,106,106,92,93,106,105,93,102,107,107,103,104,105,103,104,93,123,102,95,103,101,92,98,98,99,102,102,117,108,105,100,110,103,95,104,78,99,130,103,97,99,104,106,95,102,106,110,97,104,115,106,100,82,96,106,101,98,97,98,104,100,83,102,107,105,120,98,108,103,99,102,91,99,105,88,92,100,105,102,99,109,105,116,112,103,99,99,102,102,105,99,85,98,106,103,111,93,103,107,110,115,105,109,103,111,109,106,125,101,97,112,94,97,100,85,98,95,90,125,108,117,82,103,105,104,101,105,96,113,105,99,85,132,110,95,96,107,109,121,114,103,102,100,107,98,107,107,105,103,110,110,91,105,103,90,97,105,113,105,111,109,93,101,99,107,100,104,102,112,110,106,101,109,98,102,92,108,104,100,104,105,99,101,99,116,103,108,101,94,108,102,103,98,109,97,102,106,101,99,91,98,107,109,117,111,97,132,103,101,106,95,102,92,102,113,103,111,102,99,99,103,96,100,94,92,106,105,105,86,102,100,109,99,107,95,101,112,105,121,97,99,107,100,106,103,88,103,111,94,106,101,113,102,99,97,109,107,95,105,99,98,101,103,104,76,102,113,114,102,111,100,96,104,107,108,109,104,104,94,112,97,102,109,103,105,102,107,97,80,111,106,100,107,100,106,94,102,105,101,97,104,111,106,103,100,104,105,106,101,94,114,104,102,109,113,110,99,101,82,121,104,116,96,100,108,105,111,95,68,102,98,107,97,113,102,96,99,105,94,112,99,116,92,101,78,96,99,111,113,106,100,100,109,101,108,95,108,105,101,109,65,101,97,105,104,108,111,117,97,108,111,107,110,102,109,107,104,125,101,110,116,97,97,119,106,107,111,106,106,98,113,103,114,108,96,97,113,102,104,111,109,105,117,100,102,98,105,92,100,108,103,100,111,104,99,103,94,109,107,112,108,94,117,106,104,98,102,93,115,104,113,105,98,102,102,117,97,101,100,103,113,100,108,99,97,109,94,103,95,101,103,110,109,109,109,91,101,105,101,91,100,114,104,99,103,108,101,79,97,104,111,113,105,112,120,109,100,114,95,100,106,94,105,110,103,105,98,99,103,103,106,102,83,97,100,92,99,95,102,105,96,107,97,104,99,99,105,97,99,109,109,91,113,109,97,115,92,109,103,102,106,98,105,100,101,105,102,107,90,98,107,106,105,105,108,101,94,104,111,102,104,83,92,103,108,106,100,107,112,90,106,103,108,105,104,95,97,107,97,112,97,106,104,114,101,89,98,103,90,100,102,99,93,113,98,108,112,102,97,95,112,95,94,109,106,100,91,94,97,99,95,104,107,104,98,113,92,96,99,95,96,94,94,96,108,75,95,105,97,103,83,102,104,110,101,99,99,100,97,100,91,109,104,102,93,97,106,105,89,98,81,90,99,94,102,110,102,109,98,118,104,106,98,104,100,106,106,99,99,95,103,88,103,105,103,113,103,104,112,106,109,91,104,96,85,107,102,110,107,96,111,117,103,96,97,111,109,112,89,87,100,99,101,87,106,109,115,101,106,87,100,101,103,109,97,92,102,119,107,102,105,106,102,113,99,108,101,100,91,109,113, +565.91364,97,117,104,95,85,93,93,95,105,82,95,103,109,98,102,93,88,104,97,92,110,102,100,97,99,100,96,111,114,112,107,101,98,123,113,101,108,100,118,105,99,106,94,105,100,106,96,106,86,102,102,105,97,101,122,99,103,104,111,100,105,102,115,105,109,108,96,104,96,99,100,104,110,118,110,114,95,97,96,107,111,109,100,101,105,86,97,97,69,109,105,103,119,97,95,109,110,99,100,109,103,102,97,96,109,114,112,106,103,100,101,102,124,102,99,111,81,96,91,96,103,96,96,111,92,116,105,104,99,106,113,103,95,102,98,111,101,128,109,120,92,114,100,98,95,90,107,97,95,101,101,106,89,86,102,114,103,133,109,111,103,96,105,103,105,117,100,98,109,102,85,107,110,110,95,106,123,106,109,100,77,105,92,114,120,115,109,100,119,109,91,91,103,102,125,110,105,98,122,106,98,103,94,116,91,106,98,100,105,104,105,102,105,96,109,105,94,92,105,100,106,105,114,117,106,114,105,98,75,120,104,109,112,108,108,106,119,104,109,114,106,98,119,111,103,114,106,121,106,106,117,105,104,91,72,106,105,107,107,114,112,111,104,97,113,100,115,97,102,99,98,94,129,106,108,104,103,93,100,102,108,106,113,96,104,105,100,101,101,108,113,103,121,107,98,99,105,107,107,115,110,100,106,115,88,115,117,120,108,111,106,102,109,113,98,106,113,101,104,104,98,94,108,109,108,107,94,94,109,107,120,99,108,107,104,102,110,108,105,99,94,109,108,94,100,117,115,106,111,110,104,107,89,121,110,105,100,105,118,116,108,102,99,105,94,114,99,106,98,101,102,105,108,104,97,119,99,109,99,104,103,106,121,110,100,100,102,109,107,90,103,103,94,115,113,97,108,99,100,107,105,99,109,86,102,104,108,108,98,107,106,101,114,105,109,111,106,104,114,100,108,102,103,102,106,100,107,97,98,110,105,108,104,121,104,105,104,107,102,109,117,103,101,120,99,87,99,108,100,111,109,104,103,116,110,104,97,98,109,95,98,117,105,110,106,105,100,108,104,99,89,102,121,111,101,99,104,104,100,104,102,112,105,99,105,103,100,99,112,103,110,93,112,107,97,71,98,104,102,106,101,103,103,86,117,101,98,107,100,115,113,106,103,103,104,118,108,108,111,103,117,107,107,107,112,102,103,96,97,121,112,113,110,108,86,106,103,104,129,109,103,98,104,100,112,110,95,99,107,105,101,121,97,105,108,101,109,100,105,99,88,122,106,114,101,109,105,114,100,110,99,101,113,112,110,110,101,114,97,104,100,99,101,102,96,106,98,103,108,117,107,109,109,90,103,110,114,107,119,111,100,104,107,91,122,108,101,100,103,103,110,108,111,99,108,104,116,109,108,108,116,99,98,107,117,105,109,101,99,124,105,100,99,124,93,106,104,112,106,100,104,117,107,103,100,102,103,91,99,118,104,103,102,107,107,105,114,95,101,103,111,96,111,110,102,102,107,92,117,87,102,106,103,92,105,100,103,106,108,105,106,111,113,98,83,105,107,101,91,106,99,105,100,104,109,97,108,86,105,97,109,97,103,100,103,99,109,119,100,96,109,111,104,100,113,110,95,113,96,110,103,109,97,110,115,97,102,108,102,107,108,113,112,104,99,95,117,104,110,105,120,105,92,97,93,98,110,113,105,103,117,101,104,111,112,88,129,103,120,117,78,105,110,103,99,104,91,100,118,95,99,104,118,106,122,119,93,91,108,105,102,113,124,114,104,104,95,100,115,117,99,110,104,121,105,104,109,104,118,107,104,106,98,102,108,118,106,109,94,104,105,98,100,98,112,114,107,114,97,111,102,91,116,113,108,109,102,106,109,92,113,100,120,106,108,94,105,109,110,101,108,112,98,100,102,104,108,81,101,96,115,104,100,113,104,96,106,114,118,105,97,103,115,100,99,114,100,108,102,102,106,107,101,100,107,92,105,103,109,98,100,103,111,110,112,114,105,105,110,97,111,108,97,108,111,109,98,113,104,101,98,96,111,106,94,108,94,99,104,113,101,97,107,108,107,100,107,111,99,117,114,108,110,114,99,99,103,106,102,104,105,101,102,125,98,101,105,109,103,107,105,106,109,111,101,107,105,96,73,83,113,115,115,102,112,96,103,109,109,114,104,111,108,114,99,108,92,96,99,101,113,117,82,109,112,102,110,110,115,101,101,87,93,109,105,108,97,108,96,112,103,100,119,95,91,102,101,106,105,107,106,91,107,91,106,110,104,107,105,82,95,102,100,108,115,110,99,105,92,92,105,119,110,108,108,116,116,105,113,109,99,105,93,114,124,116,129,145,160,199,170,198,237,261,259,287,274,257,218,204,218,202,220,202,165,180,153,147,138,140,111,116,96,118,95,110,104,116,110,103,112,118,110,122,97,123,117,102,95,96,106,99,101,114,107,105,100,103,115,107,87,111,106,106,106,106,100,99,113,106,105,97,90,107,106,95,100,78,106,101,111,116,113,114,110,103,76,100,98,112,100,123,102,103,106,92,97,106,106,99,102,110,91,91,98,104,96,102,101,110,99,112,96,113,106,79,107,105,101,104,118,108,117,96,108,106,104,105,91,122,111,102,101,91,104,97,107,106,101,102,120,108,108,116,96,109,111,90,107,113,110,91,105,115,109,103,107,112,103,106,105,104,96,111,95,117,102,100,104,109,96,107,100,113,98,99,118,101,113,75,102,105,104,106,82,101,106,96,112,102,110,114,115,103,106,110,100,104,105,103,84,106,106,101,102,95,91,108,98,108,102,105,105,112,96,95,118,111,95,115,109,106,109,75,107,101,96,101,95,112,102,109,97,108,107,109,107,112,105,97,98,101,108,104,107,98,96,107,107,113,116,90,116,108,101,114,107,87,109,114,105,91,110,97,115,110,117,99,107,97,105,100,93,98,99,109,103,117,107,95,103,100,111,98,106,121,111,92,110,90,108,108,101,111,102,101,105,106,91,110,103,105,105,101,113,98,103,107,99,103,87,80,109,102,109,110,104,104,108,95,105,106,98,105,113,114,108,112,116,97,118,94,116,108,110,98,108,107,102,105,101,111,102,95,117,96,103,114,110,98,106,94,112,112,103,95,102,119,107,98,106,95,101,103,112,103,101,108,101,100,102,113,101,138,80,107,124,101,99,90,98,107,102,98,106,109,93,95,104,99,109,117,94,100,104,115,107,107,106,105,111,109,97,101,109,100,102,117,107,116,76,96,103,100,97,89,109,105,110,125,97,103,104,105,108,112,114,122,118,116,126,106,104,91,116,85,103,100,99,97,87,113,102,111,112,106,102,93,103,99,95,83,99,104,101,95,105,100,106,105,104,92,109,109,116,97,110,110,107,102,94,94,105,92,92,114,103,100,105,108,90,98,108,102,98,99,105,98,99,113,108,113,102,102,97,110,102,100,97,96,111,102,101,100,100,98,85,101,112,96,115,110,106,111,100,111,113,113,112,101,106,107,92,109,98,84,102,106,95,109,99,98,117,102,104,105,106,105,105,115,106,95,110,100,99,99,90,113,99,94,106,93,102,94,101,115,115,111,103,111,99,98,104,114,101,109,119,95,94,101,98,101,90,120,99,95,111,113,95,107,113,96,111,104,105,99,115,104,103,96,103,102,89,112,106,93,103,115,111,105,100,95,119,105,107,91,102,107,105,104,100,83,88,95,111,102,95,121,109,96,100,101,100,117,105,107,122,102,97,105,102,102,103,108,98,107,108,94,106,114,104,116,109,108,108,106,102,109,95,98,79,107,104,100,104,106,103,105,102,111,101,106,106,98,99,83,94,99,110,103,105,98,107,103,102,103,92,116,99,115,108,113,106,92,113,100,88,90,95,100,107,110,113,103,108,94,117,103,103,108,96,99,105,103,107,98,99,109,110,106,102,111,93,103,109,106,105,102,97,113,109,105,103,109,99,104,97,108,98,109,107,104,109,95,112,100,101,102,102,108,110,104,107,106,104,96,109,104,99,100,107,89,105,108,114,104,90,100,100,99,110,92,112,80,98,98,91,99,113,99,108,103,109,104,107,110,110,112,111,94,98,116,106,99,112,111,93,110,105,111,117,90,94,109,105,99,102,110,106,98,98,103,100,112,110,95,100,106,108,104,113,95,99,107,108,102,96,98,108,115,102,99,99,113,98,104,97,98,101,92,101,102,111,107,109,100,97,103,118,94,91,86,112,99,98,111,98,97,98,101,101,101,118,119,96,99,112,102,92,120,104,108,103,98,111,96,112,107,108,116,102,99,123,96,108,106,99,123,104,105,105,112,113,101,100,74,104,112,103,108,113,101,111,104,107,98,106,107,112,107,108,111,108,100,97,102,105,109,101,91,96,101,106,107,95,111,92,95,109,97,115,100,108,97,105,105,83,105,105,104,98,94,95,108,112,99,107,97,105,104,100,102,102,108,94,96,102,103,93,111,102,116,89,104,104,112,143,92,94,80,95,105,103,99,96,123,98,102,100,97,99,106,94,117,98,101,102,98,109,99,109,104,103,91,102,106,97,102,100,85,106,98,96,100,112,103,99,105,103,101,101,97,112,91,92,94,96,102,97,111,110,90,115,87,98,80,113,109,88,104,110,96,92,109,99,88,108,91,86,108,106,102,107,99,97,107,97,99,93,99,107,113,111,90,116,89,98,99,99,101,109,105,113,87,104,102,112,104,87,100,117,111,76,105,98,106,114,111,138,102,106,110,107,103,104,100,100,91,98,103,105,101,94,109,106,104,101,107,120,108,111,98,109,78,115,101,101,98,104,93,113,108,127,98,99,94,89,97,112,91,108,96,98,95,103,102,97,92,96,105,106,121,102,98,105,100,115,115,129,102, +566.0545,77,107,93,118,81,125,109,103,98,113,105,106,101,102,90,93,95,114,116,97,101,109,105,104,100,96,96,115,99,100,109,103,99,97,105,97,103,88,94,103,100,76,113,102,101,100,99,116,89,109,107,112,91,95,107,112,97,111,107,101,117,82,93,101,103,93,108,102,106,102,99,107,89,102,92,120,98,96,105,98,98,73,98,98,102,85,114,102,114,98,99,95,108,99,106,112,104,96,103,98,93,113,99,106,96,96,91,121,80,105,73,105,111,93,98,105,98,116,103,108,96,98,98,112,100,117,114,99,103,109,96,106,105,109,99,96,93,98,102,105,110,107,106,107,104,104,95,97,68,128,103,96,106,100,98,107,99,91,98,117,106,95,99,91,68,115,111,87,99,108,109,108,98,105,106,133,94,101,107,105,108,103,111,115,95,116,106,87,100,96,116,119,108,112,96,102,102,97,100,109,105,107,95,102,102,102,104,99,104,122,92,107,110,100,106,98,101,100,105,97,102,105,109,105,99,102,105,104,107,97,96,109,99,103,104,103,112,108,99,111,108,107,112,100,107,103,93,112,102,103,113,104,98,106,99,129,102,94,106,113,110,123,87,96,101,112,108,102,98,107,108,116,104,100,107,112,91,105,114,106,102,102,112,102,106,108,105,102,112,104,101,93,114,100,98,116,108,69,110,104,111,99,106,115,103,104,103,104,101,115,106,102,116,103,108,99,93,109,99,106,109,100,105,99,98,96,100,101,98,112,105,105,115,94,119,121,106,97,92,117,109,100,103,100,144,113,102,111,93,102,93,97,78,106,93,95,119,103,71,104,104,101,104,96,103,98,95,110,103,108,109,96,116,103,107,92,109,94,100,111,109,105,100,112,106,103,95,91,103,93,114,87,113,103,100,99,110,111,95,102,96,105,96,92,92,97,98,102,111,104,82,91,107,96,91,109,102,113,111,107,98,78,95,121,106,113,115,105,100,120,108,106,114,96,108,93,106,117,103,102,118,95,105,103,101,98,99,96,87,103,102,99,104,114,119,95,105,114,110,99,95,98,116,102,116,100,104,94,102,109,67,100,100,101,109,106,109,115,91,103,98,113,91,107,98,98,102,103,110,105,100,126,108,108,96,111,104,99,95,108,108,90,96,102,108,128,93,106,94,91,104,108,104,95,106,112,110,119,106,93,106,107,91,102,116,98,108,101,106,101,97,105,107,100,102,78,106,99,103,105,105,110,101,112,103,99,108,108,114,109,107,104,99,117,104,90,108,109,106,98,113,113,108,100,90,100,105,110,108,89,95,104,103,101,100,104,108,102,103,104,111,117,113,98,105,91,105,102,107,97,100,102,102,106,116,105,105,110,106,108,103,94,99,98,100,99,98,104,99,100,109,109,103,104,104,105,104,109,104,97,117,109,99,97,112,83,100,116,94,102,102,99,105,103,105,109,118,95,104,98,110,101,99,102,118,124,103,107,102,107,96,109,98,103,105,113,113,109,110,105,108,106,94,111,92,108,106,96,109,103,115,96,100,103,98,106,106,96,104,104,116,104,75,90,97,104,99,110,108,97,94,118,80,120,106,114,107,101,120,89,95,101,105,116,112,105,107,109,75,102,132,97,107,105,103,114,103,99,101,102,102,105,108,103,100,95,114,95,107,103,108,108,101,76,101,110,110,109,118,99,106,117,101,94,107,101,111,104,105,104,118,107,100,106,112,102,112,106,101,117,112,102,88,108,90,96,108,96,96,108,98,111,100,96,99,95,102,101,107,90,120,101,89,104,105,108,117,91,101,108,97,102,106,104,100,94,105,103,103,110,92,100,87,103,108,102,107,95,109,103,103,101,94,101,107,99,110,120,105,87,109,107,110,109,106,103,112,105,103,111,115,101,108,104,119,117,107,117,99,104,102,98,105,108,112,99,98,102,107,95,102,103,97,99,94,99,109,104,98,110,110,105,106,104,102,101,101,104,117,105,99,102,94,104,111,102,103,106,103,97,113,111,114,100,99,104,99,105,109,79,102,110,117,103,108,117,116,107,127,103,100,111,108,97,91,104,92,96,105,100,108,108,123,114,110,101,102,98,105,104,103,97,107,114,91,109,103,104,113,110,104,117,96,117,114,96,104,96,100,117,95,115,116,117,106,101,95,100,107,109,113,115,115,106,108,98,104,118,101,107,110,110,95,107,107,99,94,92,96,106,96,104,99,112,97,105,113,99,103,91,100,103,114,103,105,100,99,109,96,102,71,99,110,109,98,104,99,96,105,107,113,109,106,101,102,114,116,107,106,109,99,96,83,109,95,108,130,110,110,98,110,114,115,103,101,108,101,104,114,116,99,124,110,121,119,131,154,136,157,171,203,224,232,251,265,246,287,243,242,254,239,232,228,182,171,173,144,164,148,133,102,137,114,103,112,104,132,120,135,95,123,113,113,104,102,99,112,114,107,105,105,113,110,116,107,104,108,84,111,110,110,119,111,106,98,104,98,107,110,105,100,108,102,90,103,94,92,115,102,110,107,108,99,103,104,93,115,99,120,105,108,103,100,114,83,112,96,104,115,93,105,105,101,91,102,109,101,109,104,111,99,107,86,96,97,116,96,104,113,106,110,105,88,108,100,96,124,105,90,109,102,102,99,111,104,99,113,93,91,113,99,110,114,97,78,95,104,99,103,118,112,114,104,105,116,108,98,111,102,111,97,100,109,112,104,103,108,114,98,106,113,112,103,107,100,107,100,106,96,102,105,107,95,100,91,107,102,121,128,101,102,109,102,102,112,110,94,102,102,95,96,119,91,107,90,101,110,105,97,107,105,102,111,114,104,106,117,102,115,105,108,113,112,102,104,88,95,91,98,105,106,106,109,88,110,90,112,95,99,98,105,102,99,106,104,116,102,104,106,100,108,112,103,97,100,103,107,99,104,116,105,103,106,106,92,106,101,100,102,104,105,98,106,107,105,107,91,99,88,105,114,102,102,104,106,103,94,88,105,101,94,98,102,96,104,106,100,108,92,91,102,103,102,105,110,109,120,101,74,107,109,107,105,102,104,101,91,108,105,97,95,110,104,106,108,106,110,118,104,103,107,105,116,96,106,104,107,106,109,115,100,97,113,112,96,109,96,114,93,98,100,102,106,117,112,93,108,103,106,102,111,88,104,112,102,106,102,105,97,114,104,110,102,105,89,105,107,112,109,95,99,102,109,112,94,99,100,100,110,100,102,119,106,100,82,109,95,115,106,99,102,99,112,104,108,103,100,105,109,118,105,106,98,98,87,110,83,111,84,103,102,112,118,103,104,99,102,92,109,105,95,100,104,102,99,102,103,92,108,96,101,98,103,103,90,102,102,90,117,114,111,116,100,94,97,101,107,101,103,80,99,110,99,109,98,100,107,114,104,110,93,112,110,96,97,102,103,106,118,106,96,109,100,100,119,94,102,108,100,105,107,99,108,97,106,113,104,98,82,101,113,99,95,112,99,107,114,94,101,99,106,87,99,108,113,103,93,98,102,86,109,104,104,105,101,106,83,96,107,110,102,111,98,103,106,108,97,109,106,105,112,108,104,105,104,112,105,101,92,105,95,99,109,111,109,100,101,102,96,112,95,101,117,103,121,93,112,101,109,99,102,112,107,101,103,94,113,113,102,109,107,111,101,113,106,119,98,92,99,105,100,116,102,87,105,92,99,102,98,109,108,107,91,107,101,92,88,97,106,94,100,99,105,104,102,90,108,112,115,98,104,96,120,97,107,104,104,100,99,104,115,104,106,109,97,108,102,95,126,120,102,95,93,97,103,96,108,109,98,98,112,97,109,107,105,102,113,98,104,109,101,125,103,109,101,93,108,101,102,97,89,106,104,122,104,115,108,107,103,94,104,107,110,97,103,108,114,98,109,103,105,102,104,94,108,91,107,94,95,101,102,113,103,100,106,101,100,101,105,106,105,112,98,106,94,99,105,103,96,95,104,128,111,90,109,101,106,112,85,142,106,107,97,105,106,103,88,100,117,106,103,105,118,91,103,97,111,112,101,91,101,104,100,99,117,107,97,110,114,126,118,83,99,113,82,110,117,109,98,106,113,105,96,138,111,103,101,107,105,101,104,91,107,117,99,108,108,101,91,101,122,90,98,100,109,106,106,100,102,104,101,106,98,94,105,113,110,107,95,104,101,103,109,99,111,101,105,105,78,101,109,104,95,103,98,100,106,107,110,100,125,100,103,96,96,108,104,86,100,102,94,113,102,106,102,111,96,93,101,104,123,105,110,99,101,99,92,95,108,109,102,113,103,95,120,94,109,100,116,105,111,98,101,120,95,107,97,109,103,90,111,90,99,111,99,124,103,120,102,109,105,108,102,104,100,109,95,104,105,99,93,109,102,105,100,95,100,109,119,98,106,84,92,106,105,96,103,95,104,90,109,80,99,100,101,108,100,100,109,92,108,97,111,92,101,110,105,108,105,98,102,93,105,92,101,102,104,93,95,112,110,111,109,111,84,106,113,100,84,95,92,91,89,107,110,117,112,96,116,109,109,103,97,90,127,97,116,107,95,97,105,113,96,114,91,116,104,98,107,110,103,102,109,102,107,90,105,111,108,90,104,106,101,107,114,96,98,103,109,99,103,97,95,106,101,79,102,101,108,113,94,105,95,94,102,116,93,104,92,95,98,109,106,108,104,101,105,108,98,95,117,107,97,100,105,117,101,103,86,88,98,100,98,106,95,102,104,103,103,94,105,86,91,98,98,99,100,104,104,104,101,108,101,100,104,92,103,100,103,101,87,102,97,80,109,107,96,104,94,90,90,92,94,91,104,104,98,103,79,102,100,112,95,98,100,109,100,103,104,86,104,93,108,104,97,90,83,89,94,82,114,98,92,80,99,96,91,89,112,95, +566.19543,116,107,96,109,96,111,115,116,109,110,100,94,92,103,107,101,97,107,109,96,110,90,103,135,103,98,99,105,100,94,118,103,99,97,104,91,95,91,101,104,102,107,99,102,96,117,94,106,93,107,94,99,102,98,103,91,114,102,108,111,95,103,116,102,100,108,99,116,107,102,106,106,95,96,107,99,96,104,112,100,107,102,114,90,106,105,106,109,105,132,104,114,102,99,109,108,100,105,102,110,99,117,99,107,116,113,101,100,88,101,105,88,102,101,93,109,96,106,109,105,103,106,112,109,104,118,103,97,109,111,108,108,100,101,114,96,104,110,101,96,100,108,109,83,109,95,108,108,107,104,112,98,105,95,97,99,118,103,102,95,110,98,95,100,107,108,117,90,122,101,110,105,104,73,105,95,99,110,89,102,114,106,105,113,108,106,106,111,103,85,103,95,102,103,104,110,100,98,98,95,101,111,110,103,107,120,108,97,105,124,101,111,106,118,98,105,108,106,107,100,121,112,114,78,109,102,99,113,109,109,108,118,115,108,111,106,104,112,102,103,94,116,103,107,127,108,100,108,110,118,99,99,113,98,112,100,102,113,107,91,104,108,100,97,97,104,109,94,110,100,115,101,121,106,100,92,92,104,97,104,105,101,117,108,99,100,98,116,108,105,91,101,101,98,106,110,100,101,102,107,102,89,109,106,109,103,119,101,106,118,99,109,98,104,102,108,105,99,105,106,98,98,99,109,107,111,94,99,135,106,103,117,109,104,112,102,105,98,98,113,107,87,103,112,129,114,97,90,112,105,114,103,102,106,102,117,113,111,105,101,105,95,101,97,103,100,102,109,95,110,110,115,101,109,107,105,114,107,114,106,114,111,112,113,126,99,93,87,113,99,114,101,105,107,102,100,89,98,104,109,103,105,104,101,96,91,113,108,106,91,84,103,102,103,92,85,108,109,113,97,107,102,109,101,91,90,90,100,121,117,109,105,104,109,97,99,104,103,96,97,101,100,108,108,101,105,109,95,106,99,100,105,98,104,99,109,100,103,104,102,102,104,103,110,104,98,101,100,116,101,113,111,94,105,104,100,95,111,109,108,106,109,116,114,108,96,114,105,107,116,109,92,102,104,84,100,96,106,101,111,109,108,103,94,102,113,106,103,117,99,107,70,110,115,106,98,108,107,93,102,102,114,104,97,104,107,101,109,113,103,100,101,95,105,90,91,108,98,111,109,107,111,89,99,106,106,102,100,117,100,94,109,98,103,103,114,121,112,120,126,103,114,112,115,96,101,113,111,117,107,89,95,114,102,109,76,102,103,97,105,87,99,98,103,101,95,106,114,112,96,103,105,102,107,94,107,109,118,108,110,98,98,106,109,81,109,105,91,94,109,113,115,98,98,106,100,116,104,115,104,114,107,112,94,108,102,107,98,97,114,107,105,106,122,99,102,106,106,115,99,105,101,98,107,102,98,103,105,100,104,111,107,88,99,114,84,102,116,107,115,112,110,110,108,94,123,116,101,96,86,116,100,103,116,113,112,105,121,99,113,113,111,119,105,112,96,108,104,101,105,103,103,106,118,101,113,101,113,103,101,108,101,101,99,99,104,103,115,112,113,107,104,90,106,90,92,98,111,102,99,111,100,99,107,97,107,105,85,112,112,100,98,110,92,95,101,99,106,105,99,107,95,112,104,98,106,102,100,106,103,106,102,103,98,133,103,91,100,95,101,86,122,91,99,105,108,104,100,102,97,109,98,115,96,97,94,113,107,106,93,111,104,112,106,113,124,116,106,108,99,119,103,110,105,107,113,112,99,105,100,110,98,101,103,114,97,115,97,116,108,108,100,99,105,104,100,102,104,130,103,109,115,100,99,106,107,106,101,105,97,105,102,85,106,101,109,107,87,117,115,102,100,104,115,108,109,90,91,112,102,113,96,98,100,104,90,113,107,99,108,96,107,101,104,85,91,89,113,120,107,110,107,98,111,107,110,108,109,93,116,107,104,100,69,85,109,106,107,106,100,126,117,82,102,88,100,109,97,95,107,106,121,118,113,106,108,87,101,95,92,113,95,114,100,96,91,109,94,100,112,107,110,99,87,99,104,99,103,110,114,100,117,121,112,106,103,99,106,99,104,113,122,103,97,101,111,105,106,109,99,98,116,114,112,109,104,95,113,99,114,103,110,112,104,116,96,99,98,116,105,108,108,103,109,102,112,101,106,106,107,103,104,107,109,113,96,93,106,100,101,103,96,108,94,97,101,94,103,94,94,111,88,99,104,127,107,104,109,104,98,100,95,101,103,110,109,132,107,108,91,110,130,100,91,123,95,102,114,106,110,114,110,140,130,128,116,135,155,171,174,204,238,263,257,291,308,250,241,230,243,243,217,229,214,193,156,145,142,135,152,100,135,127,99,113,106,98,113,115,101,108,117,119,126,107,108,99,105,111,95,108,117,109,114,113,117,117,121,111,108,112,112,104,108,98,99,113,106,111,102,96,95,104,105,105,112,105,113,105,99,106,113,103,104,117,100,99,100,103,117,108,116,113,101,120,119,108,101,117,108,108,107,122,103,95,114,113,103,87,102,105,101,104,113,101,101,117,101,108,110,116,99,111,107,106,90,103,109,96,112,111,89,110,95,106,108,102,99,106,107,101,101,109,122,98,101,107,102,103,100,97,96,95,106,103,110,110,112,106,88,106,95,95,111,98,111,98,98,112,101,96,100,109,108,105,105,102,113,102,105,113,99,96,93,109,105,101,99,112,108,113,124,111,118,109,99,98,111,115,98,80,104,100,104,108,112,119,93,119,102,110,103,103,109,98,108,100,112,112,106,91,110,103,95,109,93,103,101,105,114,108,107,101,107,109,75,121,108,105,106,106,92,102,95,111,103,94,96,105,111,107,100,102,102,114,102,102,93,109,102,102,109,105,100,116,119,95,97,105,103,120,87,98,119,104,107,106,109,102,98,101,106,92,108,109,94,92,110,102,93,112,101,112,110,113,104,96,104,115,117,99,99,105,122,104,111,97,104,114,110,108,119,103,99,105,109,104,98,107,108,103,101,98,105,89,102,108,100,101,98,111,107,106,116,88,100,93,109,108,98,104,101,107,100,95,103,116,114,101,99,99,102,115,104,110,104,97,97,107,105,95,108,79,96,121,113,107,105,101,109,105,102,90,107,100,110,104,95,104,104,113,104,101,105,107,91,111,113,98,116,109,110,100,97,100,95,100,101,98,88,116,106,112,107,111,97,103,111,109,96,105,104,111,102,112,98,125,117,104,111,112,105,107,103,114,110,103,111,95,103,117,104,97,95,105,101,97,104,98,123,102,112,96,104,114,108,102,100,103,105,103,88,105,101,107,109,99,107,107,95,103,86,105,101,109,100,97,102,103,108,101,105,105,113,101,109,103,98,104,111,106,69,104,105,104,104,102,121,111,103,89,106,94,104,103,100,103,111,104,103,106,108,112,94,94,112,112,98,104,99,101,108,99,117,109,109,101,94,112,113,132,96,108,116,99,103,110,111,101,99,98,117,117,95,109,111,97,106,111,106,117,103,95,104,105,112,103,96,111,100,94,105,112,107,110,102,103,111,114,105,109,94,110,92,104,106,112,97,109,112,105,117,102,105,113,97,111,102,103,109,95,95,111,103,104,102,91,108,93,99,96,105,104,108,103,124,111,103,107,104,104,101,100,103,99,116,110,125,98,99,102,120,114,104,107,96,99,104,115,110,113,92,111,101,102,105,103,106,105,103,99,102,103,102,104,105,108,99,114,104,91,110,103,98,100,113,107,103,109,108,118,107,107,109,108,110,99,111,108,110,96,101,98,96,102,105,103,111,111,106,104,101,101,110,103,106,113,111,110,118,102,118,103,111,106,106,102,96,93,96,86,98,109,104,106,103,109,100,96,103,106,98,125,103,91,113,111,107,110,104,105,128,95,102,103,85,88,105,109,97,114,110,110,105,79,102,100,110,103,110,107,100,111,101,103,99,99,110,101,102,113,110,104,94,114,100,117,117,113,107,105,109,93,92,104,98,93,104,103,114,106,111,109,103,101,106,118,102,103,120,106,106,112,109,101,107,107,99,114,112,106,115,102,111,101,94,126,100,103,107,94,96,109,106,109,93,108,105,102,119,115,89,107,99,103,99,104,99,94,95,116,103,108,104,116,117,84,105,99,90,105,104,98,111,108,101,128,113,101,110,108,103,105,110,99,108,102,113,109,113,96,99,116,106,109,89,96,98,94,107,95,104,100,96,111,107,112,101,91,109,95,101,89,106,95,100,108,109,78,102,101,105,98,103,107,87,104,94,96,102,100,95,98,108,111,99,107,98,96,103,107,95,119,120,109,104,91,109,103,97,113,108,96,111,97,101,109,124,102,97,92,101,112,106,98,95,100,88,107,107,119,94,94,96,105,113,87,110,99,87,100,107,73,59,104,97,93,96,103,109,104,98,101,98,103,113,103,117,99,98,108,97,114,87,99,103,68,106,96,108,87,97,99,104,117,105,99,111,92,104,113,101,95,101,101,125,104,105,104,97,103,107,102,103,98,98,112,112,105,109,99,92,103,92,102,116,113,103,102,99,100,112,109,106,105,99,108,114,98,97,103,113,78,102,112,113,121,103,83,109,110,95,113,103,98,110,95,95,105,87,105,117,104,100,105,116,99,97,109,100,99,104,102,94,103,113,101,99,93,99,92,102,108,120,104,99,103,104,105,125,113,105,109,103,88,104,92,117,113,105,94,109,103,110,121,109,109,108,96,97,106,98,108,115,100,125,117,102,114,100,114,99,108,93,98,108,104,110,102,110,115,109,111,91,106,112,92,97,103,84,110,102,112,119,107,97,111,129,101,102,97,103,103,117,100,102,105,112,110,105, +566.3363,104,97,109,111,91,105,101,103,100,101,90,105,99,112,113,108,101,102,103,94,105,103,106,109,110,117,98,115,108,111,104,114,96,91,104,97,101,93,106,99,109,102,87,105,95,110,92,118,117,102,127,106,116,104,96,102,114,108,108,105,96,107,109,91,120,125,111,103,91,114,111,106,104,122,105,112,91,100,94,113,101,97,92,110,108,105,109,103,91,102,117,100,88,125,112,108,101,94,97,87,104,100,117,114,106,96,111,97,100,101,97,104,112,107,106,125,109,103,109,96,108,107,116,99,74,102,108,100,110,111,109,97,109,108,120,107,100,114,87,109,105,113,100,96,105,108,94,108,107,93,100,100,106,99,96,102,98,96,107,116,109,111,107,105,113,106,91,105,101,105,106,106,101,98,102,112,99,100,120,101,100,104,107,106,109,108,112,98,105,88,106,93,119,100,113,105,88,105,109,103,105,105,97,117,109,119,106,113,104,119,106,99,113,100,109,103,99,104,95,100,106,105,111,103,107,108,104,123,106,98,101,112,110,109,102,98,95,115,104,116,104,116,116,112,107,100,108,104,101,114,112,107,102,102,97,103,93,119,103,128,110,105,100,112,87,110,106,113,104,107,94,108,97,112,108,100,116,110,115,100,106,113,105,107,99,106,98,114,104,104,103,98,121,106,103,105,109,129,121,91,94,98,124,119,119,101,113,113,102,109,90,115,101,115,105,97,107,121,109,100,109,101,111,112,113,101,97,99,107,102,121,113,91,103,106,112,115,99,102,103,105,99,103,104,96,93,103,99,99,102,107,102,110,100,111,108,131,99,95,107,102,117,106,88,103,103,95,100,110,90,113,99,110,95,99,112,98,95,100,106,121,105,100,114,107,100,98,108,95,104,109,96,98,109,108,100,93,109,101,112,109,103,106,94,103,103,98,104,115,94,105,100,100,118,104,98,97,98,100,106,102,103,104,110,96,99,103,98,119,104,94,106,96,107,100,95,96,112,106,121,107,103,109,111,98,107,102,113,110,105,104,108,111,97,100,98,104,106,102,103,100,94,107,117,110,105,108,107,108,106,97,106,99,105,103,109,100,107,107,114,99,106,104,101,132,98,112,105,73,119,95,94,108,109,101,103,90,109,90,113,102,101,105,107,113,106,98,107,97,110,118,107,113,115,98,93,105,100,100,105,97,95,103,101,104,86,105,107,91,110,99,97,106,100,99,117,104,90,103,106,97,131,104,99,106,114,98,113,109,103,102,108,107,87,88,103,97,110,93,92,104,100,98,96,95,103,97,99,103,113,96,98,114,105,98,107,111,96,108,101,110,99,113,103,98,101,109,109,107,101,111,90,116,105,117,109,109,109,98,101,98,107,114,101,105,109,104,105,100,105,95,114,75,103,113,110,112,100,108,102,103,102,110,108,107,114,89,113,120,100,101,108,105,100,95,101,106,103,102,100,113,94,94,102,92,105,101,99,112,94,93,119,104,100,94,104,108,115,100,100,107,99,106,105,88,104,97,93,108,102,107,110,118,106,100,106,99,89,108,96,98,114,119,109,109,110,111,104,106,101,99,113,106,105,108,103,112,107,99,103,102,98,108,103,112,112,114,116,109,97,105,113,112,106,105,95,104,107,106,100,107,93,107,105,97,105,109,113,85,122,99,115,100,104,105,106,105,109,106,104,102,121,99,105,105,109,88,107,111,111,105,99,106,99,112,106,97,101,112,105,105,94,99,110,108,104,91,82,110,106,105,99,106,121,113,109,105,100,103,104,113,110,107,112,89,109,100,102,104,111,105,103,98,110,82,94,98,103,106,104,106,111,113,111,103,110,106,106,92,107,113,99,116,88,111,97,103,108,110,102,110,109,103,106,98,118,109,117,106,107,102,105,114,103,105,99,113,91,101,102,105,108,121,102,101,117,103,109,103,108,108,100,118,112,104,99,103,104,108,108,106,100,111,104,116,110,105,102,122,118,96,118,108,107,108,107,109,108,116,105,118,107,100,107,93,105,106,107,101,111,110,109,103,119,107,100,107,103,96,99,115,113,107,81,121,107,106,103,103,116,98,100,108,107,102,100,107,104,103,112,109,109,109,109,116,110,106,109,105,106,98,105,83,98,93,107,104,101,114,98,97,112,98,109,99,112,89,96,113,91,101,118,112,111,107,113,105,122,100,106,117,98,113,106,97,108,110,104,115,108,108,103,103,101,110,111,100,96,98,104,102,110,101,94,99,98,97,98,105,114,98,105,107,103,99,81,102,114,106,114,103,95,104,93,108,117,114,105,108,112,99,109,109,112,103,124,105,85,102,104,106,108,113,107,92,100,98,114,134,114,90,111,129,105,108,149,107,131,174,154,215,218,278,309,282,296,255,261,227,251,242,232,163,197,191,160,159,153,119,131,126,122,111,112,125,101,111,102,122,119,109,123,130,122,126,105,94,120,108,91,96,113,85,108,100,108,100,116,99,99,110,104,110,112,91,121,104,103,102,105,101,100,112,101,108,109,99,112,108,111,104,118,109,113,95,106,107,113,96,110,99,104,108,105,106,97,108,102,106,101,101,128,117,97,101,95,108,107,95,100,107,103,91,107,111,106,92,95,109,102,106,111,99,103,96,100,107,111,100,94,100,78,100,98,110,119,110,104,101,105,115,104,120,112,110,96,104,95,138,106,99,109,113,103,102,97,119,111,104,98,102,104,103,103,101,119,100,95,115,106,114,98,96,109,104,114,103,101,98,108,102,95,95,112,105,102,100,109,108,103,105,107,119,128,95,103,90,107,74,101,101,105,108,109,105,103,97,106,110,108,113,109,110,108,111,101,107,106,102,110,107,100,113,100,123,98,99,100,112,110,110,102,104,104,116,91,104,108,95,103,103,111,95,113,110,106,105,94,105,114,106,94,117,106,104,98,109,102,104,108,98,99,104,96,111,103,105,106,113,112,101,109,106,107,102,98,104,116,114,104,95,105,97,108,111,101,106,100,106,101,108,114,117,102,105,99,100,111,105,107,113,102,100,106,104,102,104,96,111,117,99,111,100,115,106,96,110,106,110,108,109,93,97,102,99,97,90,101,104,115,108,103,113,91,113,106,114,104,91,104,110,106,105,112,111,101,103,99,100,115,109,101,99,108,109,104,75,105,105,116,117,99,100,108,105,104,113,109,104,118,105,104,105,106,129,104,107,113,101,103,98,99,104,97,104,92,110,108,108,94,113,106,95,110,110,101,99,102,99,96,104,98,106,109,101,120,94,113,96,109,91,103,109,115,109,98,100,102,102,108,73,98,102,120,108,108,109,109,101,105,108,111,100,100,98,112,104,94,108,108,102,101,107,116,107,101,117,107,102,106,94,98,113,110,98,111,88,100,103,98,110,104,99,110,103,106,102,104,96,101,90,104,94,106,99,110,107,108,95,106,106,91,98,109,99,117,101,110,95,100,107,104,104,104,92,101,113,104,99,101,110,103,98,98,90,102,112,94,103,101,100,102,96,108,106,116,108,100,102,98,109,101,106,102,113,109,98,106,91,113,101,109,123,109,97,95,102,106,104,100,112,102,105,108,107,97,106,124,103,90,106,107,95,106,113,94,104,99,107,98,112,102,100,99,104,110,100,97,110,99,100,103,112,106,88,102,107,114,107,107,105,94,107,113,95,106,102,132,103,98,109,97,112,108,101,100,108,98,109,75,105,101,93,99,96,97,99,102,109,103,111,105,105,106,100,111,99,90,101,103,96,112,98,104,106,104,106,113,110,106,99,107,106,102,105,103,105,115,107,118,104,114,103,103,91,116,103,107,104,100,113,129,109,123,107,97,100,107,99,121,96,110,106,100,111,103,101,93,104,96,120,102,101,99,107,100,102,113,108,99,105,108,91,92,91,92,101,108,100,106,90,74,99,109,83,109,95,94,95,92,105,106,107,109,128,87,104,98,104,94,94,103,96,105,105,103,112,99,99,99,110,108,93,95,100,102,111,89,102,111,103,101,92,96,113,111,103,109,104,113,106,95,113,97,101,109,113,103,111,112,110,90,104,101,103,101,99,104,111,101,110,102,102,92,108,87,113,114,104,88,104,89,106,103,103,111,96,105,103,112,102,116,109,103,112,110,113,110,97,107,102,99,91,96,105,121,91,102,107,106,99,115,98,95,101,102,113,92,94,93,112,106,111,102,111,110,123,104,109,96,104,116,106,105,99,99,96,112,101,117,107,100,105,109,102,111,104,116,101,104,105,109,99,106,96,97,95,109,104,100,103,78,95,86,96,109,103,91,102,111,95,110,115,94,111,108,116,113,95,98,111,114,115,113,109,118,102,100,96,98,107,99,109,107,95,100,109,99,112,107,109,96,108,103,81,97,107,130,101,108,99,105,108,112,99,75,101,118,109,110,99,95,125,108,101,104,102,103,106,106,105,100,102,99,87,102,100,100,109,111,105,105,99,95,98,98,94,103,109,99,109,101,112,105,107,102,95,98,113,111,102,99,98,115,113,109,101,102,113,105,98,100,92,101,104,104,117,111,103,104,100,101,88,89,95,98,101,112,104,92,92,91,106,99,100,109,102,104,105,94,100,92,98,107,97,100,95,98,95,115,107,108,98,115,100,109,99,97,102,89,103,98,108,96,102,87,106,104,105,99,95,105,118,105,101,108,97,104,98,102,101,102,95,102,106,102,94,114,105,110,105,99,115,100,95,101,115,93,94,90,103,97,103,106,101,105,110,88,116,106,108,100,103,105,94,98,99,104,98,106,103,114,105,111,71,95,113,96,119,99,105,87,120,95,105,95,96,111,103,98,101,107,101,98,110,105,101,94,99,109,97,109,97,76,107,116,100,96,102,100,117,106,107,90,110,110,93,102,109,95,106,109,99,100,113,109,107,97,97,66, +566.47723,89,111,110,119,90,132,105,102,111,101,113,99,102,119,112,100,112,101,120,121,109,99,111,99,108,111,111,107,106,109,126,99,99,115,95,100,99,96,92,106,105,117,101,101,106,116,98,94,83,116,107,92,113,98,115,108,106,86,101,105,112,112,90,111,102,114,109,114,132,94,103,102,111,123,101,108,98,109,105,118,113,117,99,118,86,105,121,131,112,111,98,106,98,113,109,109,98,105,119,109,107,101,97,104,109,97,107,114,105,108,100,95,114,103,101,109,94,106,127,96,112,95,111,103,102,114,100,105,121,109,94,110,106,105,118,122,101,98,104,94,103,114,104,112,95,95,117,110,96,98,87,110,107,101,117,104,106,103,101,108,107,91,109,114,111,111,111,99,119,116,106,109,102,104,105,103,108,87,101,103,95,106,111,112,114,94,118,99,108,100,100,109,95,103,94,103,125,101,111,93,108,96,105,93,108,107,102,107,113,114,107,105,119,106,111,103,106,115,101,103,113,114,119,101,105,114,87,127,103,104,110,106,95,106,120,106,94,110,114,95,98,99,96,112,92,105,117,105,97,111,111,108,97,110,102,115,109,87,91,103,99,106,101,109,108,111,109,107,106,102,109,120,105,114,115,107,117,103,108,99,100,103,96,106,93,99,102,99,99,109,101,92,109,110,119,103,102,100,103,113,110,96,100,121,99,109,104,108,102,99,99,108,99,105,106,103,111,104,100,106,107,115,108,113,117,109,95,132,108,110,124,111,105,94,110,115,103,99,98,99,109,101,113,103,104,99,107,111,107,108,115,84,106,102,107,108,120,108,109,105,117,100,100,105,104,118,105,113,103,106,99,104,108,100,104,108,106,105,90,106,121,113,105,96,101,116,100,91,115,100,117,117,104,112,110,91,111,109,102,112,104,108,99,100,98,117,105,107,105,104,114,100,99,112,111,84,102,101,121,100,93,117,97,104,112,107,99,99,99,108,101,109,103,91,101,108,113,108,105,108,119,102,106,106,113,104,115,113,106,113,103,104,109,114,112,101,101,99,105,109,106,101,124,109,103,113,105,114,109,104,91,119,99,119,118,106,99,109,112,95,106,104,90,101,115,110,102,113,107,106,101,117,114,98,90,107,105,102,104,109,113,122,132,115,107,101,98,116,104,112,107,105,113,105,106,95,94,107,104,97,107,103,107,115,107,108,108,104,103,104,90,107,116,105,113,101,111,95,109,100,101,113,108,112,110,106,110,118,105,102,102,100,118,113,104,105,103,101,98,109,107,106,103,116,118,116,103,101,108,109,104,87,110,103,104,110,99,84,113,108,107,105,103,88,104,100,113,113,106,94,108,117,118,97,103,112,104,109,111,119,98,99,113,91,131,99,96,108,106,100,112,108,111,103,107,107,109,91,108,111,117,119,117,107,123,110,97,103,112,114,116,105,118,114,113,103,110,109,96,107,95,112,102,100,106,95,109,107,107,102,108,100,105,111,118,106,106,118,111,103,103,107,106,106,94,115,106,95,127,95,111,129,103,99,96,113,108,103,108,104,108,107,109,103,102,111,107,94,112,99,96,104,98,117,113,95,104,112,81,99,105,101,104,96,100,97,100,109,86,107,105,99,106,114,103,98,106,100,110,104,112,102,104,120,99,108,103,125,106,119,91,103,102,105,100,112,109,109,113,99,112,108,98,106,119,111,106,114,108,116,121,99,99,101,107,96,113,98,104,108,117,111,93,95,100,103,102,110,111,89,113,111,108,98,100,115,103,107,101,103,108,103,110,111,104,110,95,106,109,116,112,105,98,111,112,121,97,105,108,106,110,103,111,100,109,107,111,93,129,126,110,102,108,112,118,101,111,107,110,101,112,117,110,104,114,111,115,107,108,107,116,71,112,95,111,115,113,89,115,100,105,105,114,99,102,103,99,112,106,103,112,115,110,127,103,105,99,103,107,103,83,103,108,103,105,119,104,112,103,103,110,111,110,109,89,105,106,97,93,106,104,110,103,104,84,103,98,108,111,118,102,109,119,105,102,105,99,99,111,108,103,107,105,112,107,94,95,116,104,109,101,99,114,110,115,91,119,110,98,106,104,109,115,117,99,119,103,101,107,114,103,95,103,111,118,103,95,99,100,109,104,107,120,115,108,80,96,122,103,117,115,122,119,102,116,102,117,113,107,111,121,102,102,111,111,113,107,106,98,100,107,114,105,103,102,102,116,106,110,116,113,111,112,113,112,99,95,106,98,104,111,106,107,101,104,107,106,115,114,110,108,106,95,110,109,96,119,100,107,98,102,109,108,111,103,116,106,101,101,105,114,102,114,121,104,95,106,110,111,110,110,111,118,125,119,110,129,161,187,183,190,256,242,256,267,256,277,279,231,230,223,237,225,196,190,197,141,147,153,133,115,133,128,120,111,103,111,112,107,103,86,124,112,110,112,110,115,104,111,100,98,101,105,114,125,109,98,91,102,111,100,112,106,103,98,104,102,114,104,109,94,115,106,104,104,110,86,101,104,115,91,105,93,107,91,105,108,103,101,87,106,102,98,108,105,113,106,96,114,125,103,115,111,92,104,95,106,101,100,113,96,100,125,121,93,105,105,101,107,106,108,107,104,105,103,102,111,102,113,114,109,103,99,80,99,118,98,108,123,109,89,92,105,106,94,97,100,106,104,107,111,117,101,105,115,111,111,107,102,97,121,112,111,102,98,105,101,105,106,92,105,103,113,99,101,108,110,109,114,107,105,105,89,107,104,108,80,104,96,91,121,97,109,88,108,99,113,104,108,103,97,111,117,114,99,106,110,107,117,99,125,88,120,108,106,106,91,103,130,111,104,115,104,99,98,92,100,111,100,113,99,93,104,108,104,117,93,126,120,106,107,104,103,108,105,100,106,110,101,120,108,110,94,113,99,110,109,100,115,102,114,101,101,109,122,109,111,101,101,109,111,106,102,113,95,104,113,105,118,98,112,99,105,102,96,117,105,98,102,96,92,99,83,113,105,98,105,99,109,97,100,100,116,104,117,94,108,95,110,104,94,101,109,104,96,105,102,106,109,103,99,107,95,100,71,86,91,110,107,98,109,108,115,104,100,113,100,112,103,106,117,103,109,98,111,104,91,81,104,103,104,95,98,94,96,99,112,104,97,112,100,102,110,105,103,101,116,101,96,108,108,98,104,100,102,121,114,112,107,114,116,106,108,104,102,104,105,108,93,110,109,110,98,115,110,92,117,108,113,92,103,99,111,111,105,107,104,116,101,117,93,106,105,105,103,98,105,97,106,97,100,111,116,107,110,109,108,108,116,116,116,102,88,103,101,112,96,99,110,98,102,108,83,94,102,87,106,110,112,108,92,104,101,96,119,108,100,101,104,99,93,96,105,100,112,101,99,106,104,98,107,104,101,101,107,108,99,101,110,105,102,87,102,97,102,102,109,98,102,105,106,103,98,99,107,98,107,104,105,108,106,87,111,91,110,107,88,105,106,101,103,111,104,119,108,112,96,109,103,90,124,106,96,96,99,107,106,121,104,92,95,105,110,100,108,102,104,94,105,107,108,97,104,115,97,106,94,97,111,105,110,100,94,100,103,98,105,104,107,109,93,97,106,105,99,95,106,100,127,102,107,102,102,100,97,95,104,107,101,113,112,118,105,108,87,106,99,98,96,99,99,108,113,111,104,96,94,116,108,98,103,99,105,104,100,99,95,102,86,100,113,100,107,114,96,93,111,101,105,92,102,98,109,77,106,107,105,113,107,93,107,120,94,94,102,108,102,92,111,99,95,103,100,118,121,96,109,108,111,100,99,113,108,107,76,115,103,112,103,102,99,107,110,109,94,104,111,105,117,98,110,109,100,103,108,107,106,104,103,122,106,95,93,104,94,102,109,105,107,109,101,103,104,102,106,104,100,105,94,96,98,106,101,104,115,100,109,101,106,103,105,104,88,103,104,94,113,105,104,103,114,95,87,96,102,87,99,114,94,98,116,102,94,96,99,91,96,111,100,95,120,108,103,102,107,99,113,101,102,109,96,105,88,101,98,114,99,121,104,100,100,100,101,108,107,99,95,105,94,114,102,117,114,113,112,100,100,116,104,107,99,105,111,109,108,102,88,90,81,104,94,83,100,105,100,107,99,107,97,109,105,99,105,88,108,124,107,99,98,95,108,109,76,102,103,106,112,100,119,102,108,102,105,113,102,119,108,97,112,110,106,101,104,103,100,110,103,108,113,98,108,104,112,102,94,102,102,102,110,105,107,95,87,102,101,108,98,107,95,102,101,107,104,102,99,101,98,98,111,110,100,97,109,109,112,108,107,116,102,106,114,107,109,121,93,106,124,105,129,95,108,100,117,99,111,99,102,105,105,107,101,104,113,109,93,109,108,99,113,108,93,92,91,102,90,108,106,108,97,100,98,105,112,102,103,93,96,88,108,100,102,101,99,100,99,99,110,98,101,108,103,106,99,113,115,98,103,101,88,117,107,92,102,106,99,104,100,94,91,103,99,100,112,103,93,108,107,97,105,107,116,103,97,103,100,78,98,104,102,96,100,97,113,100,106,136,100,100,93,92,95,81,120,108,98,108,101,100,99,92,68,81,112,102,111,111,102,106,106,111,104,102,96,94,103,112,102,104,109,100,100,92,100,93,91,95,107,107,104,98,88,97,103,110,111,99,105,97,101,98,111,98,103,90,101,101,105,97,94,96,106,91,106,108,87,76,104,107,117,108,114,96,89,101,101,114,113,110,77,101,102,116,112,108,109,100,105,110,109,112,107,98,98,94,90,106,101,117,111,98,108,119,106,107,95,94,121,92,101,104,94,105,93,64,90,111,97,99,101,105,96,98,102,91,120,96,101,105,92,76,112,111,96,109,110,96,113,99,100,107, +566.6181,125,77,99,90,111,99,93,108,109,95,90,93,98,112,113,86,87,122,108,104,106,100,92,110,98,104,102,85,96,103,95,90,111,99,110,115,108,98,107,79,92,90,100,102,104,104,98,116,107,106,112,99,106,100,99,87,99,98,112,99,93,107,96,108,105,108,99,98,104,101,104,95,95,106,91,108,98,115,121,110,106,95,123,78,107,91,93,117,97,98,101,103,72,104,104,98,96,105,111,117,101,97,113,104,98,91,114,104,106,105,95,87,105,115,115,102,123,100,111,115,98,105,102,105,112,109,116,103,108,104,99,105,100,102,106,102,99,110,99,113,113,113,111,98,104,101,105,102,110,93,105,109,98,90,107,116,102,99,100,111,113,110,106,115,109,103,104,108,106,111,106,104,106,95,95,114,109,112,105,96,107,103,95,116,111,107,96,102,112,98,128,83,104,108,104,116,100,99,112,109,100,110,101,109,102,108,90,96,110,104,89,110,113,104,107,108,111,105,109,111,99,114,104,100,94,119,95,99,113,100,99,108,110,95,107,103,108,106,100,103,98,103,117,105,111,93,101,106,99,103,127,97,93,100,104,106,100,109,95,100,106,106,104,108,99,108,110,103,112,110,99,102,107,97,99,94,103,105,105,104,98,107,101,108,110,103,99,113,101,107,109,107,114,106,100,99,111,105,112,109,97,89,106,109,103,114,106,111,102,104,99,107,103,112,100,103,104,95,111,70,91,98,119,97,105,99,104,96,109,110,97,100,103,105,116,94,95,108,111,106,114,99,92,96,100,102,104,101,103,108,105,95,102,101,105,107,105,109,110,106,109,105,109,107,102,101,100,109,111,109,111,100,120,94,109,76,111,90,104,104,121,101,118,107,76,99,102,115,107,97,110,100,101,111,108,104,113,119,96,107,96,115,117,103,103,98,115,108,112,107,101,100,102,103,97,108,103,109,101,109,107,114,93,97,105,97,91,114,104,104,106,113,108,109,99,102,109,115,99,104,90,104,94,100,95,96,82,110,103,102,108,96,91,102,100,99,101,105,112,102,104,100,95,111,111,115,100,103,95,103,101,101,114,91,93,107,105,118,96,104,102,104,110,100,99,106,104,94,102,99,99,101,113,110,92,105,95,96,105,102,116,98,110,98,99,94,116,105,122,108,97,121,94,109,108,107,95,105,92,91,104,109,103,113,112,109,105,99,99,109,105,105,94,92,101,100,113,105,122,118,118,99,90,104,98,95,105,108,115,92,114,100,104,108,97,98,119,100,98,106,106,102,107,102,110,100,107,107,104,104,99,101,100,96,105,99,97,99,60,107,95,104,105,100,104,99,113,105,115,107,108,109,91,96,111,119,111,105,107,106,105,111,108,126,96,104,103,108,105,99,103,111,104,99,115,99,100,97,109,108,95,129,112,102,103,117,105,112,89,108,109,94,104,119,101,109,108,105,107,105,107,115,118,111,114,91,105,90,106,127,95,108,109,93,111,95,105,117,116,104,107,116,102,108,95,107,113,100,116,118,115,103,114,123,107,112,108,101,90,110,107,111,117,109,105,105,105,110,86,99,108,102,107,112,108,98,104,121,108,101,99,99,110,112,99,91,96,111,95,104,111,98,107,96,104,94,114,100,99,100,107,109,104,105,100,104,104,111,103,117,102,109,103,109,106,102,96,99,104,114,95,98,102,104,128,106,116,118,92,117,115,108,112,101,108,109,99,97,112,96,104,103,97,110,97,109,91,116,105,113,106,104,107,109,109,80,116,101,96,102,104,99,109,106,98,88,105,90,105,114,106,99,113,113,101,96,105,104,114,102,89,104,103,104,107,94,104,110,101,85,115,109,101,98,113,102,100,114,109,94,106,110,101,113,98,99,106,108,99,104,100,105,109,105,107,116,114,75,113,106,107,90,112,105,98,100,98,101,91,102,104,105,105,107,102,104,107,96,88,106,94,117,98,104,99,103,95,105,110,101,100,114,97,113,91,103,113,93,124,103,120,105,104,106,104,106,95,78,125,102,94,130,112,100,105,103,98,109,100,109,107,102,115,120,104,98,100,103,113,109,108,118,111,110,112,101,99,106,90,100,110,105,102,116,113,82,101,120,96,108,95,112,108,118,96,102,96,103,102,110,100,99,99,90,101,103,108,114,115,103,105,99,102,104,108,113,95,108,106,100,109,99,89,105,105,112,101,105,94,81,97,88,100,97,103,108,106,110,99,108,111,104,102,104,104,96,96,112,107,103,100,114,106,120,100,103,91,108,100,109,105,105,96,97,104,122,111,109,91,114,106,110,97,107,115,104,118,105,110,107,119,131,102,103,113,106,118,95,104,110,114,123,124,115,119,120,114,155,178,157,201,269,264,273,295,308,253,258,239,225,252,220,205,221,196,172,185,147,143,138,100,114,115,111,104,106,110,119,76,96,103,120,107,98,112,117,125,117,97,97,105,104,96,108,112,109,105,109,103,97,119,106,107,99,103,110,102,106,111,107,100,101,119,101,105,112,102,109,112,102,94,104,100,105,98,105,113,115,104,104,101,106,101,104,108,102,101,107,108,112,100,114,97,104,100,90,98,105,103,95,108,100,102,128,102,120,103,98,99,100,103,109,109,100,98,102,116,106,104,119,112,87,117,116,106,102,106,96,125,99,108,110,91,115,101,112,100,112,105,98,108,103,118,106,109,108,106,102,102,108,104,115,99,96,105,106,104,108,112,102,108,104,103,108,109,114,107,96,106,116,110,134,104,112,101,111,110,115,101,113,119,112,101,109,99,102,117,111,104,100,105,102,97,101,101,113,115,122,114,109,108,102,103,90,92,105,112,113,109,107,96,116,121,108,110,110,95,96,116,113,121,99,106,115,106,101,109,110,112,103,108,109,82,103,109,109,103,92,121,136,105,112,111,95,104,108,105,104,95,109,104,108,113,106,109,114,124,102,102,117,94,92,106,117,96,102,114,105,105,107,97,106,101,105,111,103,106,100,108,91,94,100,106,99,123,103,103,117,109,115,108,102,74,108,106,109,114,106,116,106,93,111,118,95,104,118,113,100,105,101,105,97,106,105,99,104,106,109,103,92,116,121,112,101,112,109,111,113,102,94,107,112,94,117,112,117,109,106,100,109,110,100,110,100,109,92,95,104,93,98,104,89,112,99,104,98,109,103,109,86,96,113,103,119,116,104,110,112,106,105,103,90,95,106,99,107,92,106,119,110,106,102,100,98,102,106,93,95,110,103,119,111,105,106,102,102,110,110,112,108,117,101,113,95,103,111,103,97,108,115,103,110,99,118,105,104,106,107,103,107,112,103,102,93,104,101,105,85,99,95,76,110,103,92,102,114,110,105,108,75,112,105,115,110,91,93,108,103,99,98,93,100,108,104,108,112,108,105,106,95,87,98,100,105,107,103,110,89,107,102,112,103,110,102,92,117,107,117,111,114,112,96,102,100,96,101,101,98,117,89,103,104,93,102,110,109,103,106,105,100,95,114,101,104,110,101,110,111,111,118,108,85,84,106,109,96,101,105,96,110,107,105,106,108,110,103,95,92,101,108,112,106,111,108,97,113,108,119,117,109,100,90,109,109,112,104,95,110,99,86,92,103,104,95,92,96,95,110,116,103,105,104,106,107,102,96,107,101,98,106,103,104,104,116,98,117,96,101,108,106,111,104,99,87,89,117,93,107,114,104,97,92,108,98,98,101,98,106,95,79,114,100,98,99,102,108,107,101,98,101,110,106,94,96,109,111,112,98,94,106,99,96,108,93,104,101,101,101,113,87,101,109,105,107,100,92,120,116,90,106,120,96,108,99,103,102,103,102,101,117,95,112,108,105,95,103,116,112,83,110,105,105,104,110,91,102,104,112,113,105,107,98,101,109,119,102,113,106,86,115,98,100,103,101,103,116,98,95,103,108,117,108,111,110,109,110,108,102,112,111,102,104,109,107,92,117,92,103,108,88,109,95,112,92,111,102,103,105,108,112,108,102,98,122,109,103,101,97,102,115,121,101,110,118,107,107,119,109,115,97,115,112,108,107,112,108,125,104,96,103,96,103,119,108,104,102,104,109,101,105,117,116,99,115,97,82,94,104,109,115,113,104,101,106,109,98,105,107,108,103,96,101,106,110,108,101,109,97,100,108,116,107,102,103,117,109,109,105,99,96,99,121,111,115,100,109,108,109,114,106,98,104,105,113,108,109,99,96,106,105,103,106,90,98,98,105,107,128,112,109,101,105,107,108,99,105,116,101,110,105,112,110,113,95,104,107,100,113,94,110,111,101,115,111,95,109,104,94,105,113,111,116,105,98,112,102,110,105,110,106,113,101,105,98,115,101,112,99,117,112,103,113,115,113,89,111,106,111,100,114,103,91,108,131,101,101,112,110,112,91,103,104,98,99,113,112,107,107,96,109,112,102,92,105,105,99,98,112,94,106,109,107,121,83,112,97,98,86,112,105,103,90,108,100,102,99,106,97,109,96,94,97,101,110,98,105,113,100,95,109,97,109,117,101,106,93,105,109,93,104,102,98,99,89,105,90,105,104,110,103,98,112,101,106,106,105,108,92,91,89,103,94,103,108,100,102,116,99,107,111,113,108,98,104,93,111,114,106,108,109,111,99,103,109,98,103,110,98,102,99,108,97,118,111,96,106,100,106,107,109,113,102,126,102,103,112,113,101,87,99,103,91,85,98,124,106,96,93,101,90,101,104,94,98,98,98,130,102,108,96,115,109,112,115,95,100,101,96,102,116,107,100,123,109,107,110,107,99,114,101,106,101,104,101,91,106,109,101,117,112,110,102,109,99,105,100,101,106,124,104,100,104,96,103,87,92,78,98,106,91,108,97,108,95,112,98,118,107,115,108,117,105,115,106,115,97,97,99,108,95, +566.75903,99,105,77,79,94,93,91,105,102,100,111,100,102,93,104,96,92,110,112,101,111,107,89,90,88,90,100,98,99,106,95,91,99,95,100,73,106,95,76,98,101,99,91,104,108,100,91,105,108,95,98,101,97,92,104,90,88,94,109,90,110,104,95,99,97,106,98,109,91,98,95,113,82,70,96,101,105,118,107,84,98,93,102,111,101,91,100,95,95,100,93,99,100,99,104,106,98,97,93,86,103,111,105,113,104,110,104,95,107,91,104,101,109,106,108,94,96,102,122,110,95,81,101,98,111,107,102,101,106,114,84,101,94,97,102,102,106,112,103,98,98,101,107,87,101,95,99,100,106,104,106,101,104,98,109,101,97,110,120,99,101,105,101,112,94,107,113,95,101,93,113,103,101,99,103,92,116,106,103,100,104,106,106,107,102,109,104,91,95,97,101,105,110,101,111,103,109,98,103,110,89,109,111,92,105,114,96,113,98,101,94,114,101,100,102,93,101,98,106,98,104,113,99,101,103,104,104,99,99,111,98,102,123,113,92,92,100,96,106,100,95,100,113,102,96,99,99,99,102,102,111,104,107,104,104,102,113,111,90,98,90,108,97,99,96,108,97,101,109,86,112,110,95,103,104,93,104,100,101,92,102,101,108,109,117,98,101,105,130,104,85,109,98,106,103,96,109,111,104,110,102,106,83,109,106,110,105,118,109,103,100,106,109,113,107,110,96,118,110,97,106,97,102,95,101,97,102,95,108,103,101,110,107,95,98,111,95,99,101,99,106,113,104,94,100,116,105,107,120,103,94,113,97,95,101,118,108,102,103,94,92,114,92,103,105,92,101,100,113,100,107,102,103,107,98,99,110,105,105,109,120,112,100,99,110,95,97,104,95,96,103,107,110,106,95,99,94,95,100,101,111,102,92,101,110,98,109,104,105,107,94,108,94,102,105,76,118,105,105,94,87,92,76,75,92,109,96,105,101,107,102,108,96,102,99,109,91,104,109,112,96,99,104,110,96,117,105,102,92,117,98,100,103,110,100,105,93,100,108,99,96,109,103,104,118,104,95,100,102,95,99,99,113,104,108,99,90,96,113,100,97,102,104,101,101,105,98,103,100,106,94,101,103,118,98,110,104,106,101,94,104,105,110,102,88,101,89,105,83,105,109,99,107,116,109,104,89,104,103,95,95,101,104,111,99,97,106,108,97,112,98,92,99,96,104,107,93,102,101,101,106,113,113,111,106,93,95,100,98,100,100,106,83,103,106,100,114,98,104,92,95,103,104,102,101,100,117,95,105,102,96,103,103,107,100,106,122,89,93,92,105,103,101,90,95,114,118,104,95,107,100,91,104,95,114,102,94,113,102,117,105,107,113,107,100,108,114,91,104,97,104,100,102,108,104,112,105,104,105,106,120,111,96,103,99,100,104,102,105,103,91,96,105,105,106,97,100,92,91,101,107,98,99,93,89,102,102,102,116,102,103,95,103,100,109,110,105,103,109,114,107,107,98,112,103,104,104,101,99,104,112,99,103,95,101,110,92,94,103,105,122,112,115,97,100,104,86,105,102,101,99,116,96,117,91,96,107,108,102,105,103,110,89,107,110,117,104,105,100,97,88,106,106,88,99,102,112,94,106,102,107,100,107,112,106,107,106,103,111,116,112,102,93,104,105,104,106,101,107,108,110,101,103,106,103,97,96,110,100,86,116,99,93,95,91,96,97,90,108,105,105,113,95,90,88,106,73,102,112,98,94,111,101,106,114,100,105,95,100,92,95,95,117,107,107,97,110,100,106,102,96,109,94,95,104,111,100,107,97,104,97,99,112,91,96,104,112,100,101,91,95,101,103,97,100,100,99,109,97,99,106,98,110,102,101,106,114,105,101,100,99,99,89,107,104,100,106,93,97,103,101,95,99,128,103,109,104,97,110,99,99,103,97,118,93,93,106,112,98,98,108,87,99,108,96,97,90,102,120,110,107,119,100,98,109,98,107,105,98,100,96,94,111,106,97,103,102,113,101,98,104,119,92,100,103,104,107,115,92,108,115,92,107,94,100,90,105,106,94,102,99,108,106,106,95,98,99,99,90,106,118,91,104,107,105,102,114,91,110,104,106,105,76,104,98,100,102,111,104,112,112,97,110,110,100,96,101,109,106,107,101,105,107,103,112,110,104,108,92,118,111,108,104,100,98,109,104,96,94,116,99,102,99,108,102,105,90,94,91,102,105,111,98,108,105,107,113,95,108,101,120,95,104,93,101,97,102,109,115,95,93,88,105,100,93,101,95,113,101,104,90,109,98,105,119,118,99,111,96,106,99,109,106,102,114,118,99,105,103,114,118,128,120,114,141,110,126,141,151,170,205,251,226,277,251,294,258,253,254,251,230,226,219,215,144,156,142,129,109,120,99,117,107,102,113,112,105,98,112,94,101,117,108,125,106,114,96,100,110,96,81,113,95,107,115,100,106,101,117,97,107,91,113,101,106,101,116,113,109,109,112,98,103,99,110,99,111,115,117,107,109,108,110,101,108,91,107,106,97,114,101,93,116,102,98,106,117,114,102,116,109,103,112,99,91,102,106,98,92,98,121,109,109,95,95,96,115,103,117,87,107,92,119,107,121,102,99,106,101,102,98,91,99,105,101,101,92,101,92,98,103,88,103,107,97,110,109,105,105,113,104,121,96,101,110,107,114,106,100,116,103,113,118,99,99,107,99,100,111,114,109,114,110,103,109,85,120,116,102,106,121,98,100,104,108,91,93,107,104,95,105,100,100,98,110,100,103,113,103,106,102,110,102,108,106,111,109,98,103,104,111,96,116,109,110,95,106,106,99,108,99,106,116,105,94,104,109,103,116,117,107,107,113,113,109,101,100,115,104,98,105,108,97,113,107,99,106,100,100,112,110,117,105,105,107,108,119,91,114,102,112,97,96,87,112,120,108,108,102,103,114,118,109,104,102,95,77,102,103,97,102,101,106,98,103,107,103,98,119,95,100,69,100,109,108,107,109,92,105,105,106,95,107,105,103,111,121,105,108,103,98,107,105,105,116,111,98,110,106,111,107,121,96,105,98,109,109,115,109,103,104,117,110,104,108,103,112,116,100,107,117,112,105,96,112,96,102,102,103,99,104,91,102,102,112,107,111,105,101,98,97,110,106,101,99,104,108,105,103,112,113,102,113,90,106,106,110,104,102,115,92,114,111,107,103,104,109,105,98,105,96,102,100,106,112,102,120,111,110,99,98,101,115,98,102,99,107,105,115,104,101,98,109,108,98,109,98,104,123,97,84,117,95,99,97,111,103,105,113,105,96,116,108,99,107,108,114,95,97,105,107,107,102,105,85,111,109,86,120,94,94,103,109,107,96,100,101,105,117,102,103,101,112,109,101,112,99,105,111,96,105,110,75,104,109,103,119,103,101,107,103,96,106,100,104,101,106,121,99,102,102,108,99,101,111,116,102,103,120,103,106,93,107,107,94,101,113,98,120,133,111,132,104,108,100,101,89,99,103,101,108,108,117,99,104,107,104,102,96,111,102,102,113,106,100,104,106,85,98,130,106,98,115,109,100,117,113,107,101,99,98,103,90,106,97,107,114,106,104,95,113,106,104,109,99,101,107,102,102,110,102,107,98,109,102,103,104,112,97,108,107,101,103,100,87,123,92,120,112,115,92,112,100,103,99,108,110,96,109,105,98,112,102,101,108,105,112,110,101,116,110,109,97,99,106,100,104,95,108,112,113,90,103,89,102,102,106,107,107,111,99,100,104,98,111,99,102,98,108,103,95,101,78,99,104,100,101,98,120,102,103,112,115,96,108,105,103,100,101,104,98,111,102,98,95,109,113,99,108,100,106,109,113,105,112,117,91,91,98,113,108,105,106,91,109,102,102,103,96,102,103,103,90,106,109,101,100,95,107,89,103,95,112,103,105,112,101,99,99,84,105,109,111,95,91,114,102,102,105,98,107,100,89,105,101,107,122,102,85,106,118,104,103,111,99,99,104,117,108,109,119,102,110,108,95,111,110,112,107,104,99,109,107,99,105,91,119,99,112,100,99,94,100,87,102,104,109,110,89,100,108,109,107,118,98,106,104,111,97,91,106,122,120,102,106,112,101,115,103,109,101,112,94,92,106,91,95,99,102,85,134,98,92,96,100,95,116,94,98,107,94,106,103,102,87,116,106,109,106,100,105,116,98,101,113,113,111,102,104,105,100,92,103,105,99,101,104,115,116,91,75,101,114,112,98,103,112,99,98,116,108,107,99,109,105,112,101,94,84,120,106,104,99,102,109,99,103,100,118,107,121,104,112,98,99,86,106,101,120,100,116,87,102,105,88,106,111,101,102,100,105,101,114,108,100,108,104,108,106,104,103,109,117,95,95,109,105,115,102,103,106,97,100,109,110,102,94,96,101,99,113,105,87,83,102,103,92,90,92,101,108,111,110,99,115,98,111,105,107,106,101,89,109,106,108,106,104,110,98,107,100,99,108,117,99,107,105,91,102,95,106,108,106,101,109,102,102,103,96,97,109,108,103,101,108,120,94,109,115,107,102,119,106,100,106,106,103,103,103,95,100,96,97,103,101,112,112,103,113,113,105,92,113,97,105,111,102,119,107,103,72,110,107,101,108,99,105,104,107,111,90,104,110,98,110,120,94,99,110,97,107,105,105,108,109,106,105,87,110,103,99,110,101,114,98,108,103,93,85,106,113,98,98,98,98,110,91,106,105,110,101,105,100,106,101,109,105,106,101,101,96,106,110,113,108,99,104,132,100,95,100,123,105,97,107,109,95,108,95,100,110,124,104,97,126,100,114,110,99,103,112,107,95,106,93,98,98,96,100,98,104,70,116,94,120,98,95,103,110,106,107,106,99,113,107,102,99,98,107,99, +566.89996,112,101,95,103,108,96,99,114,93,104,95,105,94,106,109,102,95,114,105,95,101,86,86,102,110,117,99,103,118,100,109,113,100,108,110,112,107,95,120,100,102,106,102,102,117,127,117,111,115,122,113,113,103,101,95,108,91,98,114,107,104,108,102,94,119,101,87,95,94,112,94,108,108,110,104,130,111,96,101,94,95,109,116,107,108,95,96,101,108,106,104,111,111,110,103,106,123,109,100,100,93,107,100,106,105,103,98,118,97,100,103,100,92,104,109,114,101,101,92,107,103,102,113,109,106,103,107,88,105,105,95,96,99,105,109,94,108,102,108,109,111,112,101,111,107,100,100,122,106,96,108,96,106,102,103,94,110,104,122,96,92,109,115,103,109,109,121,115,101,109,105,102,109,109,121,114,101,99,95,102,111,99,104,110,104,117,87,93,110,98,94,108,101,98,102,110,109,112,106,104,114,103,108,105,133,107,106,110,117,110,97,113,112,103,99,102,104,116,100,113,84,105,110,109,95,105,115,100,104,110,108,82,113,119,105,111,115,94,107,103,99,100,111,121,104,112,105,97,108,108,100,121,99,94,103,103,99,109,99,99,98,102,110,98,107,103,105,104,103,98,99,94,100,108,104,91,99,69,99,99,94,109,116,110,105,109,93,133,100,112,104,100,110,117,106,116,104,108,107,100,108,107,107,107,96,109,113,120,97,90,107,128,104,106,107,96,105,99,92,133,99,105,121,103,100,96,105,97,117,107,104,107,104,112,101,115,108,103,100,109,102,107,95,101,103,102,94,99,115,114,115,101,99,100,113,105,100,104,101,110,121,112,109,105,99,112,106,101,101,108,108,113,121,107,112,110,124,111,98,107,112,101,90,109,103,104,105,101,104,92,114,98,104,115,90,98,105,108,109,108,102,104,91,104,108,105,96,103,110,92,104,109,110,104,100,103,108,97,112,108,112,109,109,104,104,108,104,105,106,106,102,104,111,105,97,99,108,101,93,109,105,110,98,95,112,110,99,102,99,111,101,91,92,110,97,104,99,104,113,101,101,110,109,117,107,107,94,96,108,101,88,108,102,107,101,115,109,98,106,103,103,105,118,98,103,115,109,107,110,103,107,103,115,98,95,100,103,107,85,110,107,109,94,110,108,103,98,96,105,102,91,88,99,101,106,100,108,108,98,104,106,97,107,100,99,95,109,124,100,112,111,108,87,103,99,114,104,100,119,109,102,96,109,74,111,108,108,91,120,105,94,101,97,105,113,114,104,99,106,102,113,99,96,102,99,105,105,105,106,113,96,108,102,106,108,96,112,101,96,107,120,115,108,105,101,103,120,72,105,104,107,99,96,106,113,113,108,95,103,111,99,92,106,113,109,105,95,106,96,105,111,107,105,104,104,96,110,97,103,101,107,117,113,107,100,105,109,109,120,117,107,94,94,117,104,100,95,112,100,111,104,111,105,105,91,99,104,98,106,101,117,106,108,111,103,119,104,116,94,111,112,107,102,103,100,95,104,98,103,106,123,104,114,101,104,103,109,117,103,101,115,105,103,95,101,93,100,107,90,120,102,102,99,102,106,102,102,120,105,103,104,87,99,106,96,117,113,104,107,98,109,94,108,103,98,106,117,105,115,99,108,112,95,109,111,110,119,120,97,117,106,107,104,104,98,106,109,113,118,106,84,105,107,105,125,105,99,122,101,100,117,106,110,100,90,95,96,96,113,94,99,100,107,102,105,107,105,105,105,72,106,102,109,96,96,99,110,100,109,110,102,97,120,115,121,110,108,110,89,110,102,100,108,117,116,107,111,111,117,98,104,86,107,102,101,110,109,106,103,103,108,104,80,101,109,106,102,105,124,87,114,106,108,104,107,100,106,102,115,109,110,112,96,111,103,101,94,107,119,95,101,115,119,108,111,98,98,96,95,91,106,91,96,115,95,106,104,105,87,122,99,84,117,115,112,105,104,108,102,105,102,113,115,112,101,100,100,101,105,104,109,112,106,90,102,106,108,111,100,106,106,102,95,114,84,103,99,108,113,113,97,103,108,111,87,102,102,104,112,104,102,122,119,114,102,97,108,97,98,105,102,104,102,103,91,94,113,95,109,103,103,125,105,102,101,98,118,105,118,110,93,101,112,102,100,103,114,121,100,113,104,108,99,110,105,97,92,99,94,91,99,103,99,113,128,110,112,108,94,107,99,101,102,99,104,107,110,101,113,123,105,106,106,103,102,95,110,90,97,112,105,111,118,102,95,101,108,106,106,100,104,100,98,112,114,106,101,103,108,102,102,105,109,109,109,109,93,100,122,108,96,116,114,87,108,106,103,108,102,118,110,112,135,120,123,133,123,153,162,150,198,227,257,263,272,267,276,284,218,263,221,222,200,209,204,187,172,152,144,118,122,126,105,88,111,114,113,125,121,91,108,119,123,107,103,119,104,109,96,109,104,106,106,110,102,112,108,109,103,104,95,114,108,104,112,106,99,91,116,120,101,101,106,108,115,107,95,105,108,107,106,117,98,108,114,124,104,117,102,102,107,102,112,99,103,110,100,109,107,107,102,106,103,102,98,113,102,111,100,103,114,110,101,109,95,97,100,110,116,94,111,105,102,110,102,111,99,106,106,110,106,95,116,95,109,105,102,101,112,91,102,106,123,110,111,107,102,118,108,110,113,112,93,99,109,106,111,98,113,114,103,114,104,113,105,106,106,99,95,106,107,106,113,137,120,115,115,109,113,115,106,120,110,111,100,117,103,106,112,117,71,111,103,106,108,109,110,108,99,101,111,110,111,97,108,98,105,111,104,112,122,102,109,101,109,104,111,120,100,109,109,110,106,122,99,98,103,113,104,97,101,100,107,110,107,111,116,114,84,104,102,102,102,105,105,108,109,112,99,120,93,102,112,104,102,118,104,107,114,109,111,113,85,98,105,101,104,103,98,99,122,106,106,112,120,110,99,112,108,111,99,107,96,104,105,103,95,103,99,100,113,121,102,105,117,93,116,101,113,101,95,113,114,117,121,109,99,107,104,100,107,110,120,111,105,108,110,79,120,123,120,95,113,112,96,98,107,113,104,109,112,125,106,116,119,102,101,108,110,101,108,123,86,102,107,106,102,103,113,104,94,117,98,125,108,112,112,110,112,116,98,100,106,104,98,107,115,109,132,107,110,101,112,102,103,111,108,103,121,105,104,101,100,107,100,93,101,111,117,104,95,102,109,89,118,106,94,100,114,108,113,113,108,118,122,95,110,111,102,109,105,101,109,103,108,112,104,112,106,106,116,76,107,116,104,130,115,104,123,109,103,107,103,104,103,104,104,99,105,92,100,111,108,104,103,107,108,117,111,105,96,105,112,100,99,103,110,116,115,110,111,113,91,103,102,115,110,105,109,99,92,95,109,108,109,101,109,118,98,134,95,113,118,103,105,99,105,117,105,108,122,113,99,87,95,115,105,109,99,102,116,99,110,101,102,101,107,98,120,110,108,118,100,117,107,112,102,110,98,105,106,121,108,103,94,110,111,109,97,115,101,108,109,99,106,108,107,105,116,96,122,114,104,95,100,120,102,129,101,112,103,117,109,108,107,98,126,111,100,107,106,109,125,112,105,94,104,106,123,112,101,110,107,109,102,114,108,104,103,110,107,95,111,95,106,101,106,111,103,94,124,111,104,110,98,93,106,109,112,102,107,113,95,86,98,118,106,121,104,98,103,114,91,101,102,110,108,119,102,104,107,113,105,113,105,109,106,105,112,107,104,105,103,106,91,108,108,97,101,115,95,97,92,100,103,101,112,108,105,95,108,105,102,100,109,107,115,94,107,113,91,72,111,104,108,108,107,107,106,110,104,109,94,99,110,98,84,96,117,113,104,105,107,97,98,104,105,95,101,105,105,98,120,116,120,108,101,84,104,103,106,106,106,119,109,110,118,117,114,102,101,102,109,105,113,87,113,120,91,104,97,104,99,101,125,107,104,104,94,99,102,99,101,101,116,111,116,99,117,109,113,108,117,103,109,108,128,96,112,104,112,103,111,105,117,103,99,113,105,100,117,108,107,104,98,102,110,108,107,93,98,99,111,109,114,115,102,102,105,117,100,80,103,107,133,102,92,105,91,111,94,103,87,108,106,106,108,112,91,103,98,105,99,97,101,109,112,116,103,106,105,98,106,105,109,104,102,124,103,111,110,105,113,113,110,105,112,105,107,105,105,111,73,106,109,104,109,109,114,108,107,105,100,110,104,108,100,103,102,104,100,100,124,108,114,120,106,105,109,115,109,103,98,98,112,93,111,118,113,112,113,108,116,95,102,101,117,101,96,110,113,104,115,105,106,101,106,109,113,108,96,105,110,108,95,105,110,109,109,108,107,100,107,103,104,96,106,90,118,107,94,96,102,105,105,95,109,104,101,108,106,90,124,101,105,108,102,110,102,121,115,112,106,114,110,92,102,116,98,101,105,106,110,106,98,107,94,115,104,102,106,100,97,114,120,116,113,106,80,96,108,93,106,111,98,111,96,109,99,103,102,114,97,99,92,116,108,99,115,105,91,118,115,102,111,116,111,94,96,103,97,94,109,106,125,106,103,107,117,98,106,106,98,109,112,106,107,105,106,109,91,103,104,109,106,105,111,113,102,115,104,93,112,109,93,105,101,103,106,97,101,102,109,102,100,112,105,101,94,104,105,118,106,126,104,102,114,104,123,95,88,110,94,98,116,93,121,110,102,106,117,97,108,109,100,90,104,102,106,119,104,106,109,101,113,115,100,99,95,116,98,92,115,104,96,95,111,88,93,103,114,90,108,115,113,99,111,106,100,103,116,102,101,120,92,104,103,105,115,108,92,107,92,97,110,102,107,111,105,95,110,100,109,107,102,108,108,108,98,105, +567.04083,108,120,110,102,91,106,108,91,110,105,87,117,109,100,116,105,111,106,113,94,99,117,103,116,98,105,110,106,97,109,103,126,113,105,118,88,111,91,103,113,100,98,117,109,105,114,96,103,97,107,97,112,111,104,109,91,100,102,116,101,106,114,130,139,105,104,98,118,98,89,111,71,94,82,100,106,108,114,115,96,95,116,112,116,73,106,103,103,109,108,107,110,110,119,108,98,101,91,106,102,102,111,106,95,102,94,108,110,106,96,110,101,111,112,95,112,109,90,117,101,114,102,109,108,102,109,102,100,100,79,94,102,99,103,97,118,104,107,104,101,98,102,113,105,99,101,108,112,96,101,106,106,109,112,94,106,98,90,102,94,106,113,104,103,112,107,94,91,108,105,99,103,110,105,96,105,97,95,104,102,104,100,102,104,113,103,89,92,98,104,106,97,100,103,106,84,102,100,104,108,104,104,99,105,101,99,107,103,122,103,100,107,103,111,100,102,98,103,88,101,109,114,123,102,88,105,105,113,122,105,85,106,105,113,127,105,102,118,91,109,99,95,100,102,103,108,90,106,107,112,106,101,114,100,109,97,106,106,106,103,100,110,97,117,96,82,116,110,104,111,100,102,114,98,123,105,83,105,98,77,106,110,99,105,111,110,108,124,104,101,112,102,101,95,104,100,107,95,112,112,104,93,105,114,94,102,113,104,123,112,108,111,82,102,110,101,114,105,105,103,107,93,102,101,106,106,96,95,111,112,102,107,112,110,109,101,105,107,107,101,103,106,111,99,108,106,114,120,100,101,109,102,107,107,102,106,110,111,108,100,105,101,95,101,109,113,114,109,105,111,110,115,126,101,107,100,113,104,94,105,100,98,110,80,104,100,111,102,114,104,120,98,94,111,102,107,107,101,109,106,98,112,109,115,118,99,90,99,99,104,104,107,111,107,109,99,109,107,107,97,99,96,101,93,104,105,100,98,91,116,101,103,119,103,96,109,99,104,103,106,106,118,108,103,98,115,106,108,119,107,100,104,83,102,106,110,100,111,104,99,113,113,103,111,109,103,108,101,101,111,108,104,107,95,104,98,105,112,99,109,105,104,108,94,105,106,108,113,102,91,103,104,100,109,107,107,100,102,101,102,99,108,110,114,96,105,99,109,105,101,128,105,111,113,100,102,107,97,105,99,103,100,115,106,103,109,114,102,98,115,99,100,102,102,105,105,100,101,109,113,98,94,101,108,109,117,107,112,105,106,114,117,106,106,106,99,119,97,107,97,113,107,99,116,103,100,111,111,98,122,101,104,101,107,98,108,103,110,102,107,114,102,98,114,102,94,100,94,107,103,106,109,113,114,119,107,117,94,121,94,116,110,122,103,113,98,105,98,112,103,97,108,121,113,109,109,115,122,98,116,102,108,113,96,117,113,107,102,108,99,105,109,111,99,99,98,103,96,116,115,108,104,105,108,88,91,101,102,102,100,92,102,104,102,117,111,123,114,106,109,112,91,98,105,107,104,116,101,114,105,102,105,103,98,119,103,112,107,108,108,103,96,102,109,106,96,105,105,97,110,100,98,107,96,97,117,109,112,108,109,104,100,106,110,105,115,114,114,103,104,114,100,115,105,99,114,87,65,102,103,114,106,113,107,95,106,98,108,106,115,122,118,102,105,108,117,108,108,105,109,107,103,100,113,122,106,111,113,94,95,119,100,95,104,86,113,92,117,107,109,94,114,98,114,101,102,106,110,107,97,110,105,98,91,122,108,107,108,109,99,102,110,108,100,104,106,107,113,113,107,113,96,117,108,74,101,97,117,96,105,115,112,112,113,103,107,112,115,108,100,115,106,103,106,116,97,95,122,95,104,115,106,109,110,107,94,102,100,109,92,116,109,118,102,96,105,114,110,112,102,114,108,110,96,102,96,107,107,111,102,108,65,98,99,98,114,106,110,105,107,108,102,110,112,117,100,124,107,110,98,117,100,118,111,106,96,113,98,118,101,103,99,104,104,101,104,83,104,111,121,107,103,112,103,113,102,99,118,101,100,113,110,105,110,97,98,100,104,95,106,105,117,106,104,111,99,105,119,96,101,105,111,116,104,97,108,100,119,107,96,96,103,102,111,108,104,95,99,109,95,109,118,108,107,108,93,108,111,104,103,120,106,110,117,103,96,115,104,97,100,104,104,114,103,117,103,95,95,107,102,113,99,107,93,98,106,103,108,109,103,111,105,100,102,107,113,103,116,107,98,115,104,99,109,105,115,108,104,106,106,108,105,101,107,118,100,109,101,92,100,92,108,116,108,107,111,106,107,105,111,106,113,112,107,114,104,115,109,98,86,134,123,123,121,129,124,134,152,159,186,225,263,253,253,266,296,224,267,221,264,240,266,253,201,195,170,136,132,128,113,107,103,111,105,114,107,89,102,119,105,110,130,113,111,119,115,104,118,106,105,93,102,105,111,114,103,103,102,109,97,117,105,120,96,98,107,106,106,104,99,102,104,97,98,98,113,115,100,112,124,106,117,97,103,112,102,100,101,107,109,97,98,92,111,107,105,105,110,112,97,109,115,95,109,94,97,116,107,101,102,118,106,122,105,99,105,108,105,107,105,103,114,111,122,113,104,108,101,100,117,114,83,110,93,103,105,106,108,111,87,114,113,112,97,105,110,111,102,120,105,103,100,104,117,113,121,111,95,106,113,106,94,106,102,116,106,108,105,113,106,95,105,88,114,104,111,101,102,106,109,98,102,100,113,103,108,124,102,107,116,113,110,95,108,104,106,99,98,113,106,117,113,109,105,113,117,100,98,108,112,114,106,108,106,115,107,94,107,100,101,112,108,99,112,101,101,122,110,113,110,116,108,104,106,112,116,109,109,94,108,110,107,95,90,106,108,104,101,102,116,111,109,111,117,91,98,104,103,116,97,119,105,104,97,105,108,110,104,112,103,104,108,108,104,106,116,100,104,104,112,107,97,109,104,106,107,111,102,105,103,110,113,99,101,116,102,132,108,105,105,106,100,100,111,107,110,136,96,107,114,107,111,113,116,110,107,101,99,109,102,109,108,92,126,100,108,109,96,116,102,110,115,110,98,109,115,109,116,113,114,104,105,92,113,114,99,112,100,91,103,100,104,100,105,102,103,94,110,112,100,97,103,106,112,95,109,92,113,99,102,79,113,115,119,103,101,105,99,107,111,107,118,95,106,107,103,103,108,100,103,106,114,98,115,111,100,101,113,104,113,93,106,100,111,107,106,103,105,107,107,118,104,110,89,102,115,105,90,99,111,122,90,100,106,113,74,106,97,100,110,116,110,107,98,126,102,97,105,113,113,104,104,99,111,92,110,103,99,105,113,110,100,119,109,96,113,111,122,105,112,99,100,98,104,102,111,98,104,95,102,105,140,105,107,113,110,112,111,104,97,103,107,104,106,101,100,100,104,97,105,90,116,104,70,109,104,117,94,106,114,102,101,101,92,111,108,98,96,112,111,112,98,101,109,109,117,98,102,99,102,109,105,121,87,95,110,106,98,101,105,109,106,107,94,109,109,94,99,104,102,107,105,106,100,103,106,90,132,112,107,108,107,98,107,103,102,112,100,121,108,95,112,102,110,110,94,110,115,111,109,100,113,102,101,102,101,97,100,97,96,108,99,100,121,109,97,100,117,96,104,100,120,75,105,108,99,95,100,102,106,95,88,109,115,86,100,122,100,105,105,110,92,110,105,108,105,108,89,108,105,101,96,112,105,104,108,100,99,94,104,110,103,99,104,101,94,105,112,101,106,103,108,110,105,107,102,109,107,98,107,111,108,116,108,111,124,100,102,100,117,96,111,97,107,112,106,118,101,109,111,99,117,107,114,97,108,72,100,101,109,104,106,108,103,97,115,105,103,112,94,113,97,109,112,88,94,119,98,105,103,111,105,103,106,92,90,116,99,99,103,104,100,104,111,99,98,109,120,105,103,103,99,104,111,120,105,102,109,104,98,104,124,109,112,108,108,101,95,107,108,110,113,101,112,108,112,115,106,111,102,111,107,100,102,102,110,96,116,111,84,98,97,105,108,100,112,98,101,98,102,102,107,98,118,100,122,106,103,100,103,107,115,109,113,108,105,103,98,104,107,110,108,99,111,119,110,114,100,112,95,102,99,98,98,99,104,108,107,94,98,109,102,104,114,110,100,107,102,119,108,115,95,103,105,103,121,107,99,106,115,98,82,86,103,109,104,111,107,99,101,94,108,104,105,102,103,100,109,101,97,95,112,115,108,104,108,100,109,94,104,118,109,117,119,120,113,103,102,105,113,112,121,120,105,112,100,102,101,98,112,102,101,104,100,103,99,100,105,98,108,106,99,111,110,91,102,99,110,101,101,99,72,109,119,106,100,96,107,115,108,105,112,103,108,100,108,119,109,100,105,101,118,106,106,109,103,97,100,111,113,93,125,123,114,113,100,101,89,88,111,107,102,94,105,108,110,101,100,100,103,106,96,101,102,105,110,102,92,104,94,99,101,100,102,115,97,102,110,108,109,89,117,104,101,114,112,103,111,106,100,82,117,112,109,98,109,111,95,95,99,103,95,105,100,107,110,111,104,109,103,107,102,93,118,101,111,101,99,112,104,113,96,108,96,109,82,118,108,119,104,107,99,108,109,99,98,121,99,104,99,116,103,105,102,104,95,111,107,123,102,127,120,123,107,111,105,113,103,110,101,107,83,107,106,124,120,109,101,100,105,106,109,101,104,103,106,116,99,91,119,100,107,112,90,114,109,118,106,87,105,103,106,115,105,106,103,105,93,110,102,111,84,89,104,109,100,101,113,99,99,103,120,91,103,103,98,97,105,84,114,118,110,107,103,104,111,102,105,86,108,105,102,107,106,110,95,108,91,104,93, +567.18176,107,101,104,102,101,101,118,109,121,90,123,102,122,108,103,90,108,115,78,107,95,103,101,110,102,104,111,118,97,111,101,100,103,96,102,106,91,93,97,102,85,113,101,113,108,104,97,109,95,107,110,107,106,112,112,102,105,83,96,92,100,104,108,90,100,110,103,106,106,92,110,90,95,101,126,111,95,104,113,96,104,95,116,110,105,106,94,95,98,109,109,113,106,106,99,104,105,100,104,116,106,122,99,100,108,115,91,106,95,106,111,100,102,101,121,105,94,95,107,101,118,100,101,99,113,108,112,100,112,121,103,95,93,100,116,113,98,95,102,103,108,111,101,109,104,104,113,105,100,107,102,103,114,100,96,103,101,100,112,102,99,109,119,96,107,110,113,99,114,100,105,119,95,112,108,106,92,93,101,100,101,102,103,105,105,105,113,85,98,110,94,108,104,99,112,106,100,92,109,104,102,103,97,109,109,114,65,97,96,103,111,108,95,113,105,103,98,104,111,99,103,108,103,112,103,103,100,100,107,106,105,112,99,99,104,116,98,108,100,110,99,105,109,98,92,97,106,107,107,93,105,107,96,107,100,114,109,116,79,99,98,102,103,100,113,102,109,88,102,101,109,97,100,115,100,105,104,103,96,99,104,101,104,100,106,107,99,97,95,108,109,109,120,105,96,105,104,110,108,108,99,78,107,100,99,113,116,98,101,100,93,106,105,106,103,100,100,108,107,101,110,95,99,108,103,93,92,114,117,112,92,101,116,99,101,100,101,111,110,99,111,104,99,100,103,108,102,101,104,112,106,110,114,105,102,103,110,110,110,116,102,102,115,105,105,101,107,113,117,104,115,113,104,100,110,91,123,78,94,110,108,106,101,99,110,100,100,95,102,107,103,106,102,108,103,93,100,98,103,102,91,93,105,93,103,97,116,107,121,96,99,103,131,105,98,105,97,81,103,106,102,100,100,102,131,96,113,100,87,114,93,103,101,112,86,93,105,129,102,104,120,110,102,112,98,96,101,92,102,103,101,115,105,114,107,106,102,110,118,101,100,115,118,101,100,115,88,99,82,113,117,101,92,90,103,105,99,113,97,116,106,101,110,102,90,94,112,100,102,108,107,106,112,92,102,113,96,106,105,97,102,101,101,94,106,109,97,103,109,103,89,104,105,102,105,110,100,100,112,99,112,105,109,103,109,114,111,120,108,112,102,115,100,101,98,104,96,106,114,114,114,116,103,108,106,108,94,100,112,108,100,104,100,100,90,120,103,109,97,101,110,102,113,113,100,105,106,97,105,111,99,117,106,101,102,105,100,106,101,107,104,106,107,98,100,108,106,109,91,100,118,110,104,105,114,110,95,98,103,102,93,103,105,98,112,111,108,107,96,115,117,106,107,95,110,110,104,97,100,113,107,112,112,95,101,103,82,106,100,108,96,95,109,106,108,103,105,104,107,95,107,114,107,99,98,92,100,99,106,117,103,116,96,109,107,103,102,100,101,104,112,111,103,109,101,102,111,113,115,100,99,116,107,109,100,103,105,109,106,101,102,100,111,99,113,106,98,103,112,105,97,115,96,111,106,99,106,112,114,92,115,102,97,106,113,101,104,110,111,103,106,113,125,105,101,100,93,100,91,91,102,97,103,116,117,96,93,112,112,109,105,108,102,100,103,99,105,103,115,118,107,97,107,106,92,103,86,113,115,111,103,102,93,105,94,110,111,112,91,99,118,95,98,103,102,96,102,96,98,98,107,109,105,108,103,104,109,101,109,111,98,113,105,108,108,118,107,112,100,116,99,90,96,94,112,103,98,107,109,87,109,97,93,100,119,103,105,103,93,112,102,107,108,98,103,110,113,99,99,116,105,114,103,103,113,104,105,92,94,108,114,98,115,116,116,99,100,116,114,108,109,106,104,107,92,96,107,101,101,110,116,112,95,101,110,110,94,104,104,106,107,112,106,99,104,95,92,100,103,105,114,113,96,102,110,113,102,106,107,119,101,103,115,110,105,106,99,106,113,102,117,115,103,106,99,96,99,96,113,103,105,102,108,130,102,100,104,104,104,107,106,109,103,111,103,102,102,108,104,94,103,103,109,109,111,103,107,105,107,99,113,86,107,107,109,102,111,96,110,107,112,106,105,127,106,95,103,110,98,101,101,97,106,101,107,107,104,110,101,99,104,108,114,104,94,98,101,94,94,105,102,103,103,102,103,110,114,101,112,98,108,87,98,105,101,94,94,99,106,114,112,103,117,95,102,104,101,109,111,118,113,102,104,99,119,110,100,89,107,111,108,101,91,118,105,121,103,107,122,107,110,108,107,122,112,113,123,101,107,108,110,109,118,101,121,120,131,163,179,193,183,230,236,300,273,323,268,238,232,263,251,268,245,230,226,189,148,154,155,141,133,111,112,118,106,102,110,119,106,108,102,122,115,107,112,113,107,110,96,117,102,95,120,118,104,107,102,106,119,97,107,98,101,118,99,110,97,85,103,101,100,95,95,87,105,103,112,110,98,95,98,106,95,100,88,108,101,109,115,97,119,123,97,109,101,100,102,94,101,103,104,114,107,100,104,103,102,117,97,87,107,107,103,119,102,118,109,109,117,98,111,109,112,100,107,101,128,103,100,112,100,101,100,96,106,108,109,95,89,98,103,97,102,116,98,109,94,103,105,101,91,100,116,108,110,105,103,102,106,106,95,108,98,92,98,109,101,98,99,92,119,104,113,107,105,101,104,110,108,107,100,102,110,95,117,113,100,110,119,101,107,109,102,118,109,112,117,78,108,100,106,103,101,109,102,96,95,105,99,106,105,111,105,96,103,104,108,110,116,112,103,99,109,101,118,100,103,113,102,106,100,114,117,110,104,102,98,109,104,107,95,105,105,112,93,113,116,103,106,110,110,102,96,97,114,105,100,100,103,106,107,108,95,102,106,112,80,107,123,88,104,104,102,87,91,102,113,103,97,94,115,100,112,114,102,96,99,105,102,109,86,112,103,94,121,98,83,103,108,96,106,106,99,116,102,95,99,103,106,116,103,98,101,101,90,104,106,110,97,101,112,92,109,109,94,98,102,99,110,94,117,110,106,90,106,102,100,99,90,95,91,108,106,106,104,98,97,113,117,108,105,93,109,94,117,95,102,88,105,94,102,97,104,104,106,100,101,105,105,119,110,101,102,101,90,110,108,111,117,112,107,105,92,90,109,101,117,105,108,115,99,109,103,99,100,101,112,98,109,105,114,96,95,86,118,102,108,104,99,102,103,87,106,99,111,101,105,96,105,97,107,95,106,100,97,118,109,105,99,102,108,101,99,110,109,106,98,99,105,113,110,109,101,105,102,111,102,98,111,109,104,98,107,105,98,121,101,92,108,93,103,114,99,106,111,105,108,107,112,103,108,106,98,104,105,93,106,98,103,100,92,88,68,100,103,72,104,106,100,106,105,104,95,104,111,115,106,110,102,98,111,100,91,101,108,101,115,103,104,96,112,106,96,93,108,103,113,106,111,105,113,103,105,110,93,113,110,106,104,93,91,105,100,107,103,107,98,113,99,108,108,119,112,95,112,102,102,111,117,99,104,102,95,111,109,96,110,113,103,105,94,109,96,98,113,100,106,97,102,108,107,116,110,95,92,120,101,105,100,108,106,114,100,104,100,94,104,102,100,95,106,104,103,101,101,100,105,105,109,95,105,91,97,106,114,101,109,112,105,108,103,88,104,98,105,101,112,105,112,97,110,72,97,112,107,109,103,119,95,87,100,112,103,114,102,98,105,89,108,112,103,106,96,116,106,100,95,110,98,113,128,105,102,116,105,96,107,99,105,101,105,122,106,92,110,96,108,110,108,93,98,98,96,112,101,105,115,107,104,100,102,80,99,118,102,94,102,97,102,102,103,107,94,104,98,110,110,101,108,88,91,95,106,106,96,114,101,103,102,98,113,100,106,106,116,100,98,99,105,77,97,99,101,107,110,85,116,101,106,102,118,97,87,103,108,98,102,97,113,106,111,105,108,99,97,111,97,90,103,124,99,110,112,98,104,109,104,103,102,112,108,103,109,100,110,102,98,93,90,102,109,106,103,105,106,93,99,103,101,115,124,98,103,88,95,79,105,94,104,113,106,124,109,101,106,113,103,105,100,105,99,107,99,108,101,105,109,102,107,91,105,112,107,113,100,112,105,115,103,113,103,113,102,100,105,101,94,109,99,108,99,108,111,105,106,121,107,102,109,104,101,106,109,106,98,117,86,111,92,102,125,111,104,95,101,105,105,109,110,106,106,104,99,98,106,106,97,99,94,110,104,121,89,91,105,97,113,119,104,110,106,103,99,102,100,100,104,105,112,106,95,109,112,107,105,115,107,113,106,102,103,117,97,108,114,117,101,98,99,111,95,96,105,94,102,100,97,95,103,95,106,100,103,109,108,110,98,95,97,98,107,91,101,111,97,69,108,110,101,107,102,100,98,112,117,100,108,105,96,102,88,105,97,109,104,103,103,112,105,100,95,108,108,92,106,106,95,98,96,98,103,121,106,112,109,100,75,97,110,115,112,116,115,92,109,106,94,117,105,99,107,95,109,116,109,97,70,107,110,111,113,109,108,107,95,82,102,109,134,113,107,97,99,120,99,91,104,107,103,110,95,99,97,103,121,96,122,99,80,110,101,99,112,104,98,102,96,102,101,116,115,104,96,102,98,108,98,100,111,98,87,100,105,90,94,112,105,99,112,85,93,118,113,110,103,114,101,113,105,105,101,102,109,118,103,102,102,98,92,103,100,100,112,92,112,95,89,110,122,104,98,105,103,103,106,92,98,96,95,98,107,109,111,121,96,111,93,101,105,105,107,102,104,107,90,98,100,104,95,89,119,89,106,102,91,107,113,107,101,97, +567.32263,101,101,102,94,105,101,107,96,109,112,101,108,112,103,110,109,87,95,97,99,112,92,97,97,102,108,99,106,104,108,100,126,111,109,103,105,97,111,117,97,86,106,107,104,108,101,102,104,96,113,113,106,113,97,108,96,95,99,107,112,98,95,103,97,104,107,99,106,102,95,100,112,101,107,111,126,118,90,109,113,99,103,98,101,92,110,105,96,131,106,105,99,98,101,98,106,105,91,90,98,102,112,95,100,94,93,98,102,97,95,110,109,100,106,100,102,105,89,112,99,114,102,87,118,109,112,98,111,113,100,95,77,116,103,96,106,99,99,89,99,103,103,96,112,95,100,94,114,103,95,103,99,101,95,94,115,107,110,94,98,105,107,102,107,107,105,103,99,107,105,109,97,89,101,99,108,105,104,118,106,110,115,105,115,111,108,100,106,102,106,110,99,109,104,102,109,106,101,110,107,106,106,89,108,92,103,105,104,122,105,94,92,100,116,106,103,106,104,114,83,104,110,97,110,94,109,119,89,101,105,103,118,93,105,117,108,118,114,100,105,109,105,95,102,103,98,90,95,108,110,97,107,118,106,97,100,109,119,97,109,93,98,92,106,106,110,106,98,99,112,102,111,98,97,111,96,107,111,98,107,110,106,100,105,108,103,90,85,107,104,102,119,100,104,113,111,112,108,91,118,106,96,103,103,95,111,112,99,101,113,106,112,105,99,99,96,110,91,105,101,92,92,111,104,102,103,105,100,99,107,102,116,107,101,111,105,92,104,103,104,105,106,105,107,110,98,98,130,105,104,105,114,105,97,98,99,94,99,107,105,100,104,113,112,140,92,105,109,100,100,107,109,106,80,105,101,104,101,110,96,99,106,101,114,97,91,109,99,106,102,118,106,98,113,99,105,96,100,100,98,107,107,104,92,101,105,106,105,105,103,94,92,104,100,101,84,107,105,108,100,103,105,105,108,106,88,102,102,89,115,100,115,104,108,97,108,113,111,99,106,82,106,91,104,98,107,91,99,100,117,98,106,100,103,99,110,103,107,95,108,108,99,99,109,100,112,94,112,113,100,114,114,108,96,99,99,103,106,104,112,104,122,99,98,117,106,110,113,102,107,112,107,109,101,107,104,89,109,99,109,115,106,114,114,95,100,96,100,99,100,114,100,132,112,118,102,96,113,109,105,104,122,108,97,105,100,118,114,102,108,99,110,94,105,113,109,105,104,99,113,110,106,88,101,116,104,104,111,99,110,102,104,106,106,103,104,84,100,97,103,117,107,97,110,104,106,95,104,103,113,104,106,113,89,98,118,76,98,105,111,102,106,123,102,98,107,112,103,117,108,106,109,104,103,112,116,113,106,108,102,102,107,111,104,104,105,91,99,103,105,99,103,108,108,109,105,107,121,106,99,111,105,104,102,112,95,97,102,113,112,100,69,104,103,100,99,108,99,110,112,102,103,100,94,97,103,101,109,94,118,90,99,105,107,100,100,120,115,101,109,110,104,101,109,95,103,110,101,103,109,109,89,113,95,100,105,102,107,105,106,88,105,99,104,102,93,100,111,107,114,102,118,103,98,107,99,108,119,119,112,102,107,102,102,111,116,102,118,100,98,103,102,121,108,105,73,116,104,111,97,102,101,99,108,96,106,99,107,102,88,113,102,99,113,98,108,114,90,108,111,104,84,110,101,102,109,103,104,99,101,112,95,113,103,101,101,106,109,111,99,111,115,98,109,95,106,102,106,88,104,105,115,113,108,107,103,109,103,95,104,70,105,114,99,114,98,109,117,97,100,120,101,101,114,106,99,109,93,118,116,109,106,98,112,103,104,106,112,102,105,103,113,99,110,102,105,116,105,104,99,100,110,112,103,108,114,111,113,109,105,111,113,115,122,105,108,102,98,99,98,99,105,103,110,94,107,100,108,73,93,103,104,123,101,106,106,106,114,105,93,98,99,110,98,103,103,98,104,105,107,109,118,74,91,118,110,107,98,111,108,105,105,98,119,95,105,100,101,105,109,104,113,110,105,104,102,117,110,103,98,112,106,109,114,104,98,95,105,92,103,105,108,113,110,105,103,92,109,117,105,111,104,110,106,112,102,105,109,108,102,113,115,109,108,94,103,100,100,104,109,108,103,110,99,126,108,102,120,103,108,82,99,106,99,103,114,103,109,96,106,114,114,113,104,112,96,108,107,108,97,105,96,112,113,103,98,112,110,109,97,92,112,99,105,105,96,113,95,96,102,101,114,96,104,104,100,102,98,90,110,98,104,101,105,113,93,109,103,94,102,101,98,106,117,112,117,105,116,112,116,109,101,106,84,114,118,100,108,99,126,110,109,125,107,119,125,111,135,149,171,190,263,249,265,283,308,272,264,276,230,269,234,201,196,178,186,152,140,126,124,128,120,120,125,106,100,105,111,116,117,123,110,96,105,125,100,110,98,111,108,107,105,100,113,110,112,113,94,113,104,113,100,85,102,90,109,117,103,114,111,106,106,116,94,110,123,101,114,96,111,102,112,92,105,99,107,113,103,123,108,100,113,112,108,111,104,99,113,118,108,93,113,95,109,102,122,104,116,108,90,104,102,80,115,115,108,102,100,108,115,113,107,113,96,113,98,103,103,118,108,106,102,106,99,109,104,98,102,98,110,110,93,111,96,105,99,108,105,103,116,101,101,113,100,101,113,112,110,106,110,106,102,114,99,117,103,103,93,101,105,99,101,108,108,98,104,101,111,106,109,101,114,113,112,103,102,109,110,100,111,104,104,99,105,99,95,72,137,104,95,102,113,101,109,111,97,102,109,121,115,100,106,113,102,105,113,106,116,102,111,107,106,116,94,104,107,80,103,94,111,104,126,99,110,103,106,106,113,98,117,107,108,104,104,103,99,103,108,102,115,105,112,100,94,106,95,110,97,99,104,97,116,98,112,103,96,104,99,96,111,108,102,107,109,114,110,102,111,102,96,105,106,104,106,113,116,105,117,108,100,114,111,111,107,119,133,108,95,103,112,102,107,102,105,113,110,101,113,104,106,90,108,105,111,115,101,103,99,109,106,108,110,101,108,110,98,97,79,103,107,102,117,103,101,111,106,115,97,116,99,99,97,113,109,114,100,107,98,107,120,102,106,107,97,113,97,97,99,91,97,89,104,102,106,95,104,109,112,105,106,105,105,101,106,104,108,100,108,104,117,100,123,99,102,104,101,107,115,105,101,92,115,99,102,106,107,111,102,114,100,112,110,98,113,108,105,89,119,109,105,89,109,106,106,113,106,105,118,115,112,100,106,102,94,109,99,122,104,105,103,127,103,116,102,85,114,107,104,105,120,105,110,100,100,105,111,119,108,113,113,103,99,117,113,118,109,101,108,107,127,80,106,87,114,113,106,112,106,114,105,105,113,105,97,100,115,108,108,113,108,104,111,117,95,127,113,105,111,112,108,108,104,109,99,106,110,90,95,107,95,111,84,95,110,109,113,102,98,100,105,107,117,105,101,111,101,113,102,103,113,107,109,109,117,111,109,102,102,103,107,108,111,108,105,112,113,94,107,102,114,113,101,110,105,104,102,120,128,118,84,103,105,95,100,112,113,107,102,113,115,100,106,110,98,107,95,99,98,94,108,106,117,114,99,107,107,115,94,103,102,99,103,105,94,109,107,102,108,105,102,98,96,106,112,99,81,111,98,106,103,104,113,108,105,108,110,100,103,97,100,103,97,122,104,98,109,103,113,102,97,115,98,104,103,102,103,113,111,102,107,83,97,112,111,104,103,104,100,100,103,115,84,104,116,109,103,112,101,102,112,104,118,106,107,97,115,106,103,98,98,105,89,108,101,104,106,104,100,101,105,108,98,105,99,103,107,103,106,101,111,126,109,111,86,98,89,103,100,104,98,109,104,112,99,101,112,94,103,108,100,117,100,101,102,109,116,106,92,119,108,98,113,105,105,97,112,112,104,116,100,101,96,107,101,104,115,110,117,102,91,106,101,112,106,109,96,96,103,112,96,126,116,108,94,102,102,109,79,109,117,116,109,128,105,111,108,109,106,108,90,110,104,112,99,106,103,110,99,118,102,90,116,95,108,121,115,117,104,102,120,97,104,97,108,110,115,105,110,107,100,99,98,93,108,98,100,107,106,103,103,105,99,106,94,104,115,87,109,98,106,117,91,111,112,102,109,108,126,102,106,108,107,85,103,92,105,109,105,110,117,114,100,105,104,100,99,100,97,112,111,106,99,122,119,98,100,110,113,124,99,107,102,113,102,98,118,99,113,106,103,111,100,97,90,100,109,105,101,105,102,104,125,107,105,99,102,102,111,98,98,107,107,106,102,113,104,103,113,106,119,118,112,105,112,107,111,108,104,103,112,108,108,100,105,91,98,90,105,102,110,111,92,104,103,102,99,94,112,95,116,132,111,95,84,119,101,108,98,105,105,107,114,106,111,117,91,101,102,117,112,105,103,98,112,102,103,107,95,102,108,98,93,97,113,108,110,106,105,106,105,105,100,99,107,106,111,103,106,91,101,110,90,113,103,107,88,105,108,106,107,108,120,99,101,113,100,124,93,88,104,108,96,115,98,108,103,94,102,104,107,105,99,96,116,108,110,115,107,106,106,104,102,113,109,108,103,116,110,105,107,109,97,113,113,108,109,95,104,110,107,107,85,97,107,117,108,115,109,117,87,102,115,91,102,124,97,106,109,99,120,86,110,101,102,107,100,117,99,109,112,110,89,111,87,101,114,107,100,99,112,110,113,98,109,95,102,108,117,104,78,96,102,113,115,106,97,100,100,100,98,97,110,103,98,104,102,97,105,100,97,104,72,115,92,93,98,96,117,116,96,100,103,113,124,94,120,106,116,104,111,101,95,98,110,114,81,106,103,102,105, +567.46356,105,98,107,100,105,107,91,94,99,113,102,118,103,132,107,115,102,107,113,103,105,90,108,114,108,93,94,107,111,107,101,96,111,115,120,109,92,101,101,112,113,102,92,132,101,118,108,110,113,104,107,113,111,110,95,94,114,98,118,92,95,99,108,109,118,101,90,115,105,105,97,114,105,119,83,118,95,117,112,134,117,107,100,110,112,106,94,107,106,105,103,104,108,106,94,105,118,107,114,97,101,107,104,103,112,101,101,121,117,104,111,105,92,104,113,94,109,110,108,103,108,114,95,109,110,105,111,103,114,116,108,112,108,103,104,96,95,100,105,109,105,129,98,99,95,68,114,109,105,101,104,114,113,112,106,101,111,104,103,95,93,107,106,112,119,103,109,106,118,98,105,95,98,113,99,108,103,94,111,107,107,97,115,109,84,96,99,96,104,102,127,98,99,106,111,113,108,108,108,97,104,98,104,109,98,101,121,117,113,109,95,113,107,113,99,104,106,115,95,107,106,115,112,112,107,106,102,102,105,109,103,112,110,110,101,123,112,114,99,103,92,108,102,104,103,108,99,107,97,100,111,114,105,102,103,113,96,103,104,108,95,116,99,107,102,110,108,99,111,102,120,101,121,101,117,105,103,103,105,111,109,103,106,103,104,108,109,113,90,100,109,108,105,108,111,114,90,109,113,106,91,106,107,104,91,107,101,117,103,106,93,115,115,99,110,100,104,106,107,104,120,97,111,116,110,107,104,104,104,111,113,105,111,108,103,110,103,102,100,107,104,112,101,118,108,101,104,108,110,103,130,103,115,108,95,111,115,99,99,104,99,116,98,108,107,95,93,110,103,100,109,106,103,98,90,106,107,124,108,116,110,109,109,107,99,104,99,108,99,107,106,105,106,110,104,94,116,114,106,107,116,111,109,94,117,100,95,101,112,101,103,103,121,98,108,101,100,111,102,104,111,88,100,109,99,108,102,96,104,112,109,118,113,102,103,112,101,86,109,100,103,92,103,102,88,112,111,111,117,115,98,105,107,95,114,99,107,113,115,102,99,111,128,113,119,112,105,94,105,105,103,112,110,97,102,105,116,120,106,102,105,108,117,108,109,103,111,112,109,108,105,110,108,112,96,112,104,106,118,99,103,102,100,106,107,101,106,95,91,105,106,99,104,97,104,111,103,99,104,93,114,102,106,107,104,113,115,102,100,106,106,102,110,105,120,129,106,107,121,95,107,101,111,113,115,98,116,109,109,104,112,109,115,108,99,98,115,102,105,110,106,110,97,112,90,102,117,96,102,105,108,102,116,104,119,108,106,121,113,114,119,105,107,102,102,102,119,112,109,101,93,108,94,118,114,112,109,108,117,107,112,106,103,106,95,95,106,98,94,102,101,109,113,124,109,101,114,104,106,104,114,109,111,105,103,106,103,108,106,108,121,107,117,107,98,109,105,111,99,111,113,102,109,114,107,98,97,105,100,104,108,113,100,116,107,109,115,117,108,100,107,99,111,102,98,107,105,107,112,101,109,113,117,117,114,108,107,109,112,106,100,142,116,102,95,106,102,109,117,106,118,104,126,105,105,97,114,116,102,91,106,102,104,105,107,108,104,111,90,105,104,110,115,109,101,102,113,109,106,102,100,104,102,105,95,112,110,107,114,116,105,109,103,106,87,96,106,116,117,105,127,98,108,99,100,121,105,99,112,106,115,102,99,106,114,113,109,99,114,115,105,107,90,96,94,113,107,106,102,105,104,103,111,100,101,102,114,98,104,96,106,100,115,109,119,110,109,107,96,124,112,100,95,119,95,108,107,98,101,113,112,109,101,112,109,105,108,114,141,108,113,109,113,98,104,103,105,109,112,106,115,100,114,112,101,108,99,100,112,101,105,106,115,95,105,109,108,105,107,107,102,116,110,109,106,103,107,94,107,94,106,104,78,98,94,109,110,99,105,102,107,113,105,101,105,105,108,111,110,107,98,113,99,107,104,111,104,112,79,110,96,107,102,112,100,96,87,121,104,104,109,113,99,111,108,107,116,97,99,114,98,105,117,86,105,109,116,99,112,97,97,108,117,109,109,94,113,119,109,124,103,99,116,108,113,102,110,112,102,112,102,117,101,117,100,101,94,113,109,102,102,121,95,113,101,108,101,112,109,104,110,112,108,110,113,121,108,105,100,108,104,130,94,96,122,117,98,107,118,107,96,105,117,93,101,90,111,109,100,106,113,106,102,103,105,103,111,105,109,110,110,109,107,95,98,103,98,108,116,107,117,111,111,117,110,117,111,110,101,111,95,101,101,103,111,113,119,100,112,99,124,124,104,108,103,111,112,104,113,131,108,114,122,121,115,140,132,163,195,208,185,240,277,295,290,295,310,274,290,240,229,227,248,202,192,194,173,139,132,102,120,136,115,119,108,119,116,103,111,100,117,114,118,112,117,103,114,125,111,106,105,115,104,99,109,106,99,116,102,87,104,90,110,103,113,108,109,107,122,106,85,101,111,100,95,107,116,102,108,97,98,108,107,107,101,105,106,104,93,117,116,103,105,121,104,102,110,90,102,105,97,107,106,101,90,104,106,104,121,91,87,101,102,104,105,94,95,108,109,95,110,102,107,107,120,105,105,104,106,107,98,99,104,123,106,106,104,88,98,103,99,90,109,116,102,98,98,102,111,99,101,107,93,116,111,107,101,98,108,102,119,102,108,92,101,109,100,102,94,114,106,101,104,105,109,102,104,99,112,109,105,108,100,110,102,107,106,113,96,97,112,112,106,99,107,110,95,113,103,114,99,93,91,109,104,103,118,117,103,101,103,92,110,106,105,96,111,90,114,108,107,108,100,104,112,106,105,104,108,102,119,96,106,118,106,98,111,101,109,110,97,106,107,113,100,107,100,101,100,110,91,106,106,109,92,107,103,95,103,100,113,108,104,99,106,109,104,98,94,106,109,96,97,112,104,102,110,104,92,87,83,107,103,107,82,104,108,71,108,99,122,109,111,100,108,100,110,100,109,106,109,94,113,117,98,98,104,94,101,111,95,74,103,75,105,115,111,88,113,119,86,116,105,103,104,98,98,101,105,103,108,107,102,101,104,96,102,97,94,100,106,115,103,101,105,102,90,109,109,96,108,108,113,117,103,86,99,98,99,100,110,101,105,103,107,102,97,94,101,95,109,102,102,91,108,107,98,110,98,108,98,90,95,83,88,84,112,108,93,133,107,100,110,97,92,102,100,88,108,108,103,100,94,105,98,106,108,96,101,103,109,116,104,93,109,106,111,113,96,101,96,100,108,108,109,109,99,91,107,106,98,87,104,92,106,107,96,106,107,93,99,111,110,117,103,95,107,107,122,103,108,99,105,106,106,107,105,100,108,99,109,100,105,114,105,117,96,107,97,101,98,102,107,112,97,114,101,101,106,94,108,97,111,98,109,105,102,106,95,100,100,103,103,120,108,108,97,109,100,101,100,108,107,107,108,101,95,90,93,96,91,110,101,96,101,103,114,98,94,111,104,104,111,117,98,104,106,121,113,103,116,98,101,102,98,103,92,100,91,101,104,95,99,96,99,104,111,99,97,93,113,91,98,105,140,103,102,103,95,107,102,108,103,108,111,105,99,98,93,113,105,100,108,99,104,110,104,98,97,110,94,91,116,99,104,102,96,115,104,101,102,109,90,102,109,98,99,133,115,123,105,102,106,90,107,94,102,102,112,108,90,114,109,105,103,87,105,101,112,105,106,98,104,102,109,105,113,102,107,110,102,101,106,104,96,109,109,83,114,104,96,106,100,109,106,102,102,112,104,99,111,109,104,115,99,99,105,120,97,119,97,106,99,100,83,98,102,96,93,98,91,106,101,96,100,103,109,108,110,112,101,100,95,94,95,107,99,95,90,117,100,97,106,99,102,87,108,98,102,102,100,103,97,112,102,101,101,108,103,115,100,112,113,117,108,100,103,100,89,100,104,98,99,111,117,104,99,105,96,101,104,99,103,106,102,92,97,103,101,99,107,105,96,100,104,104,102,106,113,121,115,115,98,102,99,109,100,104,101,106,100,92,100,99,103,111,107,102,106,96,89,116,103,114,120,80,101,99,99,91,103,103,101,104,98,98,104,106,105,108,110,112,111,95,117,103,98,108,112,103,101,101,103,98,88,100,104,104,104,95,96,95,106,112,103,96,106,110,112,103,118,107,102,111,101,97,102,96,107,120,104,100,99,101,102,112,91,117,104,95,79,92,120,99,109,104,100,103,120,98,107,98,99,108,103,106,124,95,94,106,80,117,126,108,100,101,100,107,113,99,103,92,112,110,103,105,96,101,103,98,101,91,95,98,100,119,107,104,104,100,101,102,106,103,103,95,105,105,108,94,91,109,101,111,96,97,109,105,133,106,98,98,114,103,110,106,103,100,116,107,101,102,96,92,99,110,113,84,105,96,103,104,93,106,109,99,91,99,101,111,108,114,106,94,107,105,96,113,94,108,94,96,105,124,116,102,95,117,101,96,116,123,103,115,100,85,104,117,101,99,94,97,84,105,116,121,104,104,103,98,106,85,99,108,98,104,110,96,102,107,101,94,108,111,103,103,83,106,102,116,109,106,95,101,104,86,103,106,98,95,104,113,108,95,113,94,112,106,121,101,104,92,99,107,125,95,99,98,83,104,62,92,91,96,105,93,108,102,110,84,95,94,99,115,103,106,113,102,105,108,108,108,108,95,104,91,97,105,95,101,121,99,98,102,103,82,95,100,106,101,112,81,110,99,95,103,93,99,113,111,107,96,100,84,98,112,100,95,120,98,109,97,102,95,106,109,103,105,114,94,102,102,97,99,103,110,97,101,120,92,100,79,104,102,80,108,104,94,110,94,98,105,110,97,107,96,80,101,97,99, +567.60449,93,112,99,100,96,105,110,90,101,123,106,125,91,108,109,100,116,107,106,101,101,87,122,100,99,99,108,117,107,108,106,107,86,87,112,102,91,108,86,84,98,97,89,104,98,126,97,102,102,118,101,94,108,92,107,107,86,100,101,116,110,108,103,95,114,99,85,93,99,109,112,105,115,110,96,101,101,99,107,112,108,103,103,99,96,101,99,107,102,109,114,115,104,102,100,107,111,98,83,105,105,109,102,101,118,110,95,101,100,95,110,112,97,97,107,107,113,102,122,101,115,98,114,100,111,99,106,108,108,104,106,109,103,103,107,115,106,102,103,96,103,117,104,100,97,95,131,101,92,106,116,94,102,100,76,101,116,112,103,111,104,110,95,121,112,103,108,109,109,113,112,117,96,96,113,108,107,85,110,107,97,108,112,111,109,103,114,101,106,102,113,109,104,114,126,116,118,105,122,102,118,113,95,102,92,103,103,101,96,110,108,109,96,96,106,103,111,105,96,105,103,100,103,109,101,110,97,114,105,120,101,99,111,99,116,111,103,114,111,109,122,108,110,135,114,115,119,92,105,111,106,99,104,114,106,102,102,118,92,111,101,103,107,92,98,100,104,101,100,98,93,114,116,122,99,103,105,111,116,98,116,106,104,101,117,118,101,97,102,95,100,103,109,107,112,115,107,110,113,109,97,110,93,116,111,108,133,107,104,108,99,108,101,98,106,102,115,108,103,107,109,106,121,114,92,116,109,104,121,111,109,115,107,109,109,118,116,101,106,106,94,81,102,102,95,99,104,116,107,91,110,104,119,115,96,112,117,118,99,77,99,107,102,97,112,108,105,99,99,117,109,105,92,101,106,100,96,97,102,110,100,109,96,99,110,91,104,115,105,91,113,103,106,114,107,97,113,117,99,108,107,108,112,89,103,99,104,98,112,96,86,99,108,72,108,94,98,103,105,103,104,116,99,94,110,108,99,98,107,122,89,109,112,111,101,92,97,110,107,107,112,104,110,118,117,117,107,108,105,109,113,95,115,95,102,113,106,102,111,98,96,112,88,115,108,115,100,114,113,86,106,106,102,102,106,95,101,111,102,116,98,99,120,101,102,108,99,103,90,101,104,114,117,115,113,103,112,112,107,99,110,91,114,110,110,101,93,110,101,104,109,107,99,116,103,123,105,113,110,113,97,99,122,113,99,114,143,114,96,100,106,103,108,106,95,105,90,99,103,115,108,99,93,101,103,103,117,101,94,103,112,105,114,97,100,99,108,111,105,102,114,108,99,97,98,109,112,103,106,98,110,113,95,94,96,113,98,106,108,112,95,105,96,102,90,109,105,110,98,86,114,103,89,108,116,117,94,113,124,112,92,97,112,108,116,115,108,121,105,113,105,107,117,113,109,113,100,104,114,99,100,102,115,104,100,108,95,106,98,112,110,103,103,103,103,109,117,111,105,105,116,113,109,109,102,107,111,101,104,108,106,106,101,107,109,106,102,121,116,103,117,101,108,107,104,111,121,102,108,86,109,112,101,109,104,112,104,106,112,96,100,104,115,104,108,99,106,99,75,108,102,102,95,116,114,95,103,104,113,97,103,97,102,107,100,111,106,107,100,104,105,95,104,102,89,101,107,100,112,109,101,109,103,108,108,111,98,100,108,114,103,107,100,120,96,96,109,102,108,95,106,96,101,108,105,106,111,118,104,108,108,82,112,106,110,117,94,108,113,99,111,104,102,105,104,104,95,110,103,112,106,126,103,106,101,97,105,106,84,99,94,113,119,117,94,108,84,113,94,89,109,109,110,109,109,89,107,114,103,113,114,111,111,107,107,108,103,98,116,109,100,103,95,99,112,110,114,115,111,110,97,107,107,107,113,103,110,105,107,112,92,97,105,109,100,111,101,113,104,109,117,109,103,112,108,104,113,100,109,105,106,104,108,101,97,95,98,105,104,102,103,110,97,105,122,107,126,100,108,106,101,110,97,112,99,107,115,104,108,120,98,105,105,103,117,106,99,115,107,104,114,106,100,116,112,100,107,115,106,112,98,86,86,101,99,108,115,104,100,97,98,109,109,107,121,102,112,83,107,103,101,98,107,110,117,113,104,107,105,111,104,121,111,111,103,100,110,106,113,110,101,103,106,108,107,108,106,121,109,108,110,91,120,83,108,104,101,111,104,109,98,111,112,114,101,108,97,119,95,113,107,106,104,107,105,102,109,102,103,106,111,117,100,100,108,104,103,108,104,97,103,107,83,110,93,112,113,110,106,100,105,121,99,101,104,112,106,112,103,101,112,111,107,110,103,103,113,103,103,118,116,119,105,107,112,117,104,109,108,117,112,113,136,120,128,125,107,140,155,180,214,235,263,284,307,254,249,279,252,270,209,248,242,187,169,171,152,142,167,130,123,114,118,89,105,125,100,121,109,92,98,94,113,118,106,108,103,109,114,107,113,102,98,111,120,100,101,106,102,101,108,108,114,96,88,100,118,102,115,109,95,99,111,101,96,113,105,106,107,114,107,110,113,115,119,102,94,101,122,95,106,102,102,105,99,100,108,112,103,108,101,112,114,110,102,109,107,112,117,106,112,114,99,107,95,100,102,105,101,96,117,106,96,96,94,99,106,112,115,123,105,98,107,95,111,106,102,91,120,107,115,92,103,107,106,92,92,97,110,99,108,105,99,102,102,100,97,102,107,117,115,106,116,109,100,106,102,101,106,107,103,107,105,120,100,110,107,116,109,118,116,100,88,102,119,115,113,114,117,112,104,118,111,109,103,93,100,109,105,105,113,112,95,108,99,107,119,107,107,116,94,111,113,99,102,105,107,106,104,112,104,126,107,101,105,109,114,113,111,104,106,108,100,104,113,112,102,104,103,102,102,89,109,106,107,100,108,96,124,115,99,106,111,111,107,115,107,111,110,107,110,104,108,84,120,126,99,102,110,103,102,114,102,110,106,97,111,97,90,94,90,110,107,112,108,110,100,115,110,125,114,112,99,102,111,104,135,100,102,98,102,90,77,113,123,104,104,117,99,102,105,110,120,99,118,131,99,104,114,107,104,110,109,132,97,92,117,102,113,96,111,107,106,95,107,110,106,89,117,103,104,103,107,95,110,92,98,107,106,108,87,99,96,97,100,97,105,96,115,113,109,102,100,103,97,108,108,114,109,108,102,103,91,80,96,125,112,106,98,102,117,108,107,110,98,109,108,109,101,117,96,121,113,108,114,110,115,113,112,108,107,89,106,121,97,102,106,101,97,109,103,79,98,105,97,106,110,110,118,106,108,105,100,106,102,107,105,100,115,99,104,120,103,113,101,137,98,102,100,116,107,114,98,105,108,118,98,109,113,111,95,100,108,99,117,98,112,104,97,98,110,99,97,112,96,110,111,108,94,98,104,109,95,112,103,105,112,108,106,113,95,100,99,106,103,105,108,99,103,106,113,100,100,100,103,107,104,106,105,104,124,110,97,113,105,114,111,94,123,94,114,113,90,98,118,114,106,106,108,97,91,110,115,106,100,99,125,114,107,105,104,111,115,107,99,103,108,117,99,102,116,105,105,116,103,103,106,88,110,96,98,111,92,112,96,105,108,102,103,117,95,109,105,111,113,104,103,114,109,105,102,101,84,108,96,107,96,104,93,112,102,105,110,107,104,108,103,107,104,103,108,116,96,115,92,103,107,102,98,111,112,98,106,98,100,106,110,79,104,87,106,96,101,104,102,107,115,112,99,95,96,98,103,106,103,102,108,110,103,111,103,110,109,101,107,107,103,96,107,96,98,109,108,111,98,103,107,109,102,113,105,94,107,101,115,104,104,104,104,117,100,116,105,106,105,103,107,112,105,102,94,107,94,107,105,108,91,100,88,102,102,98,94,109,109,95,104,113,108,103,105,98,98,109,104,109,105,104,116,97,110,100,108,103,95,99,102,103,98,112,101,109,99,108,110,104,106,101,97,105,103,113,103,107,109,95,102,113,99,112,111,117,95,97,112,103,103,109,106,108,108,103,113,104,98,113,105,101,108,108,112,120,100,104,98,108,108,113,109,103,103,93,98,98,106,114,124,103,108,104,120,113,106,104,102,107,110,107,100,100,105,113,118,113,90,110,113,108,98,112,106,92,100,109,104,107,106,104,110,105,103,119,99,95,94,102,110,89,103,113,105,125,117,101,107,108,98,107,123,117,111,100,107,103,110,103,107,99,102,98,99,102,107,99,108,104,98,113,128,100,100,104,114,105,104,113,97,102,100,100,104,95,111,95,99,100,102,88,99,115,96,96,118,108,104,105,94,105,104,109,121,106,102,117,101,99,83,102,106,106,109,104,90,105,116,104,106,109,103,97,107,112,96,104,96,103,96,93,113,110,92,125,114,111,114,101,112,95,103,97,106,101,106,111,108,105,97,101,103,108,116,104,111,105,105,102,106,98,109,112,109,106,116,94,100,94,100,101,108,104,113,99,103,104,105,102,99,107,111,105,105,106,102,112,110,108,77,102,122,99,112,104,109,108,115,112,103,98,109,119,105,91,99,100,130,104,109,115,98,86,63,105,105,109,99,118,117,116,113,110,116,104,102,117,104,98,98,96,106,110,99,99,98,112,97,109,103,98,106,113,101,113,102,117,106,105,104,107,101,108,99,107,111,98,99,113,102,101,130,93,105,99,113,113,106,99,113,105,100,122,104,118,109,106,106,90,109,91,108,80,97,109,106,104,94,102,120,95,103,103,102,101,105,108,100,101,96,103,102,106,117,105,107,96,109,124,106,111,120,108,96,105,109,99,93,106,108,107,102,95,107,79,99,105,102,98,103,104,97,97,101,117,87,102,113,100,102,116,85,101,108,98,100,98,88,105,109,105,100,101,117,94,97,81,108,97,115,106,96,108, +567.74536,112,94,120,95,99,97,107,114,97,103,98,97,105,111,109,104,106,101,120,112,104,97,105,114,103,111,102,100,100,103,119,98,104,112,111,105,114,92,92,95,113,107,118,107,107,118,110,106,101,117,112,112,107,86,117,115,102,102,117,107,108,91,103,112,117,119,103,108,104,93,119,105,112,103,96,115,104,107,102,106,107,100,106,113,93,101,115,113,118,108,107,97,107,103,110,95,107,116,107,111,111,101,101,105,102,105,104,116,108,114,101,105,110,102,107,99,97,114,123,113,118,110,100,113,117,111,116,100,99,121,101,105,103,104,102,101,107,112,100,104,107,105,106,99,104,110,101,104,117,101,109,113,112,99,122,117,108,115,109,105,96,112,113,122,116,112,117,101,113,105,100,100,106,101,115,107,113,99,111,116,112,108,107,132,94,98,104,102,113,95,109,105,99,122,99,96,111,114,103,104,113,98,106,105,106,100,99,121,116,107,103,103,104,109,123,98,102,105,107,108,101,104,118,110,104,107,103,110,107,117,109,114,107,111,112,93,102,122,111,104,105,91,102,114,104,114,100,104,108,106,100,105,105,110,99,102,102,120,101,114,105,103,127,100,110,106,121,105,108,102,110,113,115,97,105,105,113,108,125,112,121,123,114,104,106,117,99,97,110,110,105,106,108,102,113,99,107,105,104,111,101,106,105,109,93,108,108,103,104,114,111,105,105,108,110,101,105,114,100,106,105,120,116,105,102,100,137,105,107,105,108,103,105,110,96,113,95,99,115,100,101,110,92,106,102,107,105,107,105,121,110,112,99,110,111,100,116,108,120,114,101,94,106,110,103,103,115,118,100,110,112,99,111,107,114,106,105,107,103,97,114,112,104,101,108,110,99,110,108,109,122,95,110,107,106,91,94,101,107,108,102,103,92,99,112,106,111,120,126,108,105,113,101,98,111,96,106,117,101,106,105,105,94,108,112,99,121,105,109,113,103,106,108,101,97,113,112,106,100,102,101,87,103,106,102,110,109,104,111,112,115,87,105,112,114,100,103,108,113,106,96,113,122,119,104,114,104,98,112,108,123,111,110,105,102,99,114,122,98,98,112,114,113,109,115,100,105,98,105,114,105,114,110,110,101,106,109,102,109,104,120,119,93,110,103,91,87,116,105,108,117,105,114,121,122,119,112,104,105,104,113,113,102,101,118,113,124,110,101,117,106,103,118,105,110,108,102,104,108,113,104,108,105,99,109,111,114,120,113,94,113,120,116,107,107,101,124,117,100,110,110,114,111,86,94,103,104,114,106,109,103,109,106,101,99,111,102,100,108,106,103,107,112,94,102,113,105,109,120,101,100,114,103,106,118,114,109,106,133,108,109,95,108,106,108,116,102,86,109,109,111,103,111,90,112,116,106,101,109,102,115,108,105,105,101,109,100,103,109,105,101,100,95,100,113,100,96,97,105,88,108,102,99,109,104,91,107,103,109,107,99,96,110,102,101,104,92,103,97,102,112,116,121,107,98,101,112,91,107,92,123,105,112,104,118,107,99,109,109,110,109,105,114,102,96,91,113,108,116,106,102,109,109,111,105,103,107,103,103,104,97,107,93,108,111,110,90,109,110,100,114,119,104,113,96,115,103,97,102,107,114,102,113,115,104,106,107,108,106,117,108,112,108,102,96,125,113,91,115,108,119,102,106,116,109,125,109,108,103,111,108,110,116,98,106,108,113,100,115,104,107,104,102,114,102,108,109,106,105,109,110,104,120,111,108,121,113,110,105,110,103,110,113,117,113,118,108,108,113,102,114,107,95,116,105,98,109,110,108,107,105,112,91,101,108,109,102,102,100,102,112,108,121,111,111,99,120,108,115,114,100,106,89,107,104,98,107,90,106,111,109,113,111,112,108,104,110,95,124,113,105,106,107,104,98,100,108,106,72,107,95,95,98,95,107,116,106,108,104,106,108,112,83,103,101,99,105,101,118,107,111,112,97,95,102,105,110,102,108,114,105,108,123,106,101,115,97,104,90,103,108,99,111,107,105,92,109,120,108,101,106,109,108,121,103,109,102,111,105,108,108,110,107,112,101,94,97,88,105,106,125,111,122,115,103,109,110,102,117,110,114,104,100,119,102,105,106,105,105,110,101,108,99,100,100,109,101,107,92,103,99,113,71,117,104,108,118,92,117,102,101,90,118,111,105,96,109,100,109,105,102,112,113,103,108,106,105,96,102,102,112,121,94,107,113,112,108,100,96,99,107,103,101,108,99,104,87,103,97,117,115,104,97,104,118,111,119,110,105,105,103,115,107,108,105,103,109,115,98,111,129,110,113,99,111,108,121,102,115,112,105,123,110,131,121,127,130,155,192,188,188,253,240,313,344,288,297,295,263,263,268,222,245,183,215,186,180,135,137,134,126,118,128,116,118,112,95,104,113,115,120,94,118,133,121,120,103,112,120,97,100,106,103,115,104,106,120,99,110,110,111,117,99,104,98,103,113,104,108,99,117,92,115,113,106,108,95,106,110,111,109,115,105,92,108,100,102,121,114,109,107,104,111,94,109,118,109,116,120,103,108,112,110,103,112,95,99,111,109,100,99,108,101,117,77,109,108,99,97,108,106,106,82,117,100,92,103,109,98,116,117,103,110,98,111,109,102,101,106,84,96,104,109,106,90,83,113,106,97,112,112,105,103,112,109,116,112,95,106,79,113,110,103,110,107,109,114,106,114,108,113,103,98,101,108,102,107,109,107,105,101,106,110,115,102,93,117,112,108,103,107,103,115,111,136,118,103,105,101,124,103,104,95,107,126,105,104,113,105,104,107,102,106,107,92,136,102,115,107,102,101,102,110,106,118,99,100,99,95,110,109,101,117,99,109,103,116,111,112,106,96,103,103,112,103,93,105,100,129,115,115,103,111,94,110,100,100,95,106,102,113,114,106,108,118,123,102,98,101,91,105,113,104,110,103,101,101,90,100,108,113,112,104,113,112,118,110,106,99,107,123,105,94,113,117,113,102,106,104,94,116,109,83,112,110,112,94,105,112,109,104,100,108,109,112,109,112,101,116,114,104,107,101,111,106,102,109,108,109,97,106,120,99,108,95,109,113,111,102,106,107,112,112,122,112,109,102,109,105,105,80,96,101,101,108,104,107,106,104,99,107,96,107,108,102,106,108,108,108,95,112,99,95,100,99,112,99,126,105,107,106,108,103,95,108,111,99,103,99,111,116,110,102,103,101,87,117,104,103,118,99,109,121,105,105,107,95,117,116,101,100,107,95,107,131,117,112,108,113,103,113,102,110,102,101,112,88,102,112,91,109,103,103,106,102,109,105,103,104,92,97,117,102,109,105,106,112,111,112,112,113,100,96,105,111,105,108,109,111,99,112,102,104,103,112,110,94,113,100,108,89,113,105,118,104,110,101,100,96,106,83,101,110,99,117,113,110,126,104,105,102,111,104,104,117,110,96,104,83,111,95,117,109,112,118,99,111,98,107,95,99,115,100,93,108,111,102,105,76,101,111,117,97,113,98,94,113,110,94,123,96,109,109,86,106,119,97,102,110,115,113,104,99,113,104,125,106,112,96,122,110,91,105,96,106,82,106,100,103,108,99,98,112,80,100,92,107,95,102,109,103,102,98,107,105,104,117,101,105,99,112,99,73,104,84,102,102,102,111,111,110,107,94,102,98,106,104,99,105,90,115,114,118,102,113,89,121,90,111,103,112,102,104,96,108,103,101,101,99,100,111,108,106,99,82,105,101,114,112,103,105,100,96,118,98,94,105,99,99,98,97,121,102,116,90,118,105,107,103,112,106,94,103,117,112,100,112,105,111,132,101,111,104,109,101,101,109,102,108,106,114,99,120,102,102,97,70,100,100,100,103,109,116,90,100,117,104,95,97,101,102,110,94,99,103,107,110,124,99,118,94,109,110,103,106,100,112,95,116,106,102,106,89,106,98,95,109,98,110,110,106,109,103,97,109,98,97,108,104,108,110,111,94,101,102,105,85,103,107,93,101,90,121,101,113,99,116,106,104,102,109,109,102,114,112,108,109,103,92,98,106,105,102,100,97,121,105,111,87,83,104,114,101,103,100,112,100,100,118,108,108,103,116,95,105,110,105,95,109,91,106,102,113,108,102,105,98,107,111,115,104,105,108,98,105,103,99,98,99,107,121,108,94,119,96,113,98,111,115,101,104,116,101,112,112,116,99,110,101,116,113,117,122,99,98,106,98,105,98,112,98,108,115,107,104,99,106,105,104,106,105,106,103,103,100,109,103,103,112,111,109,105,103,96,109,100,109,112,101,100,116,109,118,106,112,124,101,103,108,98,111,103,104,103,98,94,105,110,110,102,99,99,117,113,100,119,93,105,102,99,111,112,109,108,109,107,104,116,111,103,110,95,103,115,98,122,101,114,118,104,112,106,105,117,111,110,102,108,97,99,97,107,103,110,90,88,112,111,108,101,93,99,102,105,96,116,106,94,113,88,110,102,116,95,111,102,104,112,103,79,100,113,104,102,114,104,107,110,103,112,105,107,105,96,112,128,99,95,105,113,110,110,126,90,106,103,106,125,105,105,116,77,105,108,108,101,94,125,98,119,108,99,108,100,102,116,105,114,95,108,118,109,107,93,116,102,108,103,101,99,113,110,84,101,96,100,115,99,99,98,99,104,96,97,85,100,98,103,110,102,108,94,104,113,108,99,113,99,107,95,99,114,103,103,117,107,99,101,92,131,105,101,103,98,97,108,95,110,110,77,110,91,119,118,99,111,99,99,97,105,104,91,109,89,94,96,90,107,107,99,109,100,103,96,110,101,104,96,99,95,98,113,105,115,92,121,87,103,109,105,106,110,98,99,99,102,103,99,99,102,109,93,92,112,104,101,92,97,88,112, +567.88629,105,91,104,102,95,105,121,109,110,94,118,109,118,116,118,96,105,104,110,99,107,96,105,109,99,93,113,100,96,108,112,103,112,119,92,99,121,114,109,94,103,103,94,115,107,109,103,111,105,105,95,98,106,102,117,93,94,90,117,103,113,121,102,77,95,106,93,100,95,94,98,99,91,110,101,113,88,104,100,105,106,96,100,98,105,111,96,123,141,91,107,112,116,113,102,96,109,95,108,103,92,107,106,100,116,102,112,100,97,126,119,119,108,110,105,93,92,105,109,107,109,97,116,108,117,111,109,100,102,109,101,106,98,103,136,102,110,98,116,118,96,116,94,114,98,101,130,100,104,108,97,102,109,98,89,114,100,92,106,100,102,106,103,98,98,117,105,97,105,109,107,98,108,97,110,103,110,97,111,104,101,122,107,106,101,108,109,101,98,98,96,103,111,87,107,101,109,117,101,115,95,100,102,107,107,96,99,108,105,99,96,87,98,103,107,107,100,98,93,105,105,111,110,111,100,115,98,104,110,110,105,117,105,103,88,115,102,109,110,105,95,96,134,96,117,100,111,103,92,108,100,91,105,102,111,97,94,114,102,105,104,98,103,119,101,105,104,87,104,104,109,102,106,102,110,110,100,106,93,92,100,111,96,101,106,108,97,99,109,105,107,111,108,104,123,116,111,101,72,104,109,95,98,110,99,113,100,106,105,97,103,103,103,100,90,94,102,100,100,104,98,92,105,108,104,114,102,102,122,103,116,98,114,107,98,102,107,103,107,94,106,91,107,106,108,97,103,109,108,104,101,112,97,105,100,123,107,106,95,110,103,99,101,99,97,112,107,106,105,109,113,96,103,99,117,78,100,106,116,108,108,109,121,103,105,89,102,108,103,101,104,96,101,108,112,109,115,99,96,99,99,100,88,98,111,98,94,100,106,114,98,100,99,101,91,104,106,115,102,103,99,102,100,100,109,101,108,105,102,115,93,102,102,113,100,106,101,101,102,109,103,101,104,101,101,122,95,97,113,104,98,96,110,111,102,102,95,106,96,108,99,99,110,102,125,103,112,91,106,113,108,103,99,101,100,99,91,121,109,109,97,116,99,109,119,101,108,103,107,113,110,106,100,110,94,117,99,107,109,101,111,104,109,101,107,100,98,98,107,103,99,101,99,111,119,103,106,94,115,108,116,105,104,118,101,107,115,117,102,110,92,103,103,109,106,95,97,110,100,96,109,100,96,114,115,105,113,105,100,102,87,109,124,102,105,72,103,106,112,97,103,102,103,107,107,111,105,89,105,96,92,111,112,103,86,103,95,120,96,111,113,103,114,100,102,104,113,110,106,99,98,112,101,109,120,114,108,102,98,107,107,108,118,105,99,99,83,101,101,109,113,100,117,105,101,103,102,113,106,104,113,102,104,115,98,106,117,114,110,101,99,98,103,99,92,104,103,97,112,102,97,110,100,107,104,96,111,109,108,109,98,107,100,109,104,103,101,110,108,105,120,104,104,108,102,105,104,107,107,108,101,106,115,103,110,104,108,104,113,119,108,106,110,101,99,93,111,111,104,104,116,110,113,122,102,92,103,110,105,92,101,107,100,112,94,109,115,118,96,109,101,104,107,111,96,99,96,99,97,109,102,101,103,98,114,91,108,110,117,109,108,112,82,86,102,103,91,87,105,106,102,113,106,90,114,112,106,99,109,93,110,101,108,108,107,111,108,102,93,103,103,97,84,104,99,98,101,105,109,101,111,98,114,110,109,113,125,93,97,92,73,104,99,115,110,113,114,111,112,111,93,98,109,104,105,100,115,108,102,111,100,94,93,118,100,117,116,105,105,102,107,117,122,111,106,104,113,106,103,105,106,102,104,103,98,112,92,115,100,109,122,105,98,112,97,109,106,106,106,104,99,103,104,108,104,91,95,97,104,110,95,103,126,114,98,111,116,97,102,105,97,104,109,96,98,107,95,103,110,106,114,110,100,109,109,118,107,112,120,109,113,119,98,95,114,113,95,116,109,118,124,113,112,104,101,100,94,114,109,99,100,121,102,100,102,99,104,108,93,101,109,111,112,109,102,105,109,102,96,97,114,109,114,82,96,95,109,98,100,96,102,97,105,127,115,103,93,97,122,98,109,91,114,101,93,105,96,108,113,103,100,103,112,104,112,98,113,101,89,105,98,114,112,107,111,109,95,106,100,108,101,102,108,106,119,109,110,115,107,122,106,86,101,95,105,100,111,104,115,102,98,111,110,113,104,105,110,107,108,115,102,104,101,92,114,102,105,120,98,108,109,107,109,113,107,109,114,102,104,110,100,109,122,102,109,109,108,112,117,123,112,108,120,114,140,118,137,142,189,210,228,241,286,282,259,286,282,271,240,255,234,219,245,176,191,165,165,176,139,125,119,108,109,109,115,106,113,127,101,113,107,119,131,117,107,106,117,118,92,83,110,98,113,98,99,125,96,113,107,99,115,107,105,107,113,102,103,107,105,96,98,98,106,102,103,112,91,90,104,110,90,106,117,113,101,97,94,116,100,104,98,93,95,104,111,100,104,109,124,102,97,112,101,95,107,101,110,110,96,97,100,86,96,106,111,94,96,110,105,104,108,97,105,117,115,98,102,111,118,106,109,95,95,96,96,114,103,96,108,103,99,108,111,105,109,110,106,95,90,98,101,109,98,102,101,105,99,113,97,109,107,121,110,109,99,110,96,107,101,114,110,111,103,80,104,103,109,109,91,102,109,103,102,100,119,108,117,92,107,102,99,99,106,116,106,109,106,133,109,114,97,113,94,115,103,102,117,106,123,113,105,94,117,106,111,117,112,106,111,115,102,104,106,118,100,98,99,97,117,106,103,99,91,102,90,100,96,109,109,108,96,97,103,117,112,93,83,103,105,109,109,104,99,99,101,108,113,94,92,104,105,102,100,115,113,119,109,113,108,106,120,112,103,106,111,102,102,110,96,113,85,95,105,106,97,103,90,116,118,104,108,101,108,115,107,106,110,103,122,118,111,90,106,106,102,109,107,102,106,101,111,107,119,103,112,108,105,107,105,98,106,102,108,110,98,111,98,96,116,112,104,102,116,110,107,100,97,108,114,108,104,90,101,108,91,99,107,108,143,101,121,101,103,105,108,91,110,104,116,86,98,105,104,106,114,95,99,104,108,107,104,118,107,109,106,108,107,67,112,114,94,107,79,92,106,102,108,108,105,120,109,103,107,109,66,94,98,104,117,107,105,108,103,108,93,99,99,124,101,113,109,98,98,96,93,109,104,105,104,97,108,104,105,83,98,106,109,97,106,93,110,109,100,103,110,111,103,109,103,94,96,106,96,96,98,104,103,102,101,95,99,104,104,104,82,100,106,103,98,117,103,94,95,99,104,113,107,100,103,95,101,93,103,116,112,103,102,105,114,113,103,95,100,105,100,110,116,98,106,103,88,109,103,105,101,99,98,91,120,103,106,105,99,107,100,104,110,98,113,98,106,115,103,118,106,106,107,103,105,100,106,94,95,113,101,106,82,106,105,102,113,104,95,103,91,102,92,112,94,119,115,100,104,99,99,114,119,105,108,100,113,99,97,114,98,112,110,117,101,107,96,108,95,97,101,111,109,99,112,103,113,107,106,104,113,106,101,92,100,100,102,102,99,109,102,102,114,103,101,96,109,101,99,100,111,110,103,109,109,110,102,99,107,97,105,100,108,98,92,95,106,104,115,99,108,104,107,113,113,106,98,93,108,100,105,113,93,104,102,102,115,106,106,100,90,96,96,98,97,98,95,116,118,104,103,95,104,103,104,99,105,103,102,100,102,109,118,103,102,104,106,121,104,103,109,108,103,113,109,113,104,125,101,102,91,104,97,94,72,136,97,99,101,102,102,96,109,102,94,108,110,113,107,108,103,108,116,106,100,113,98,99,98,100,100,110,101,116,105,101,93,98,95,111,86,98,95,107,102,113,105,123,110,102,107,115,104,104,103,91,95,111,111,113,109,108,107,105,104,108,107,103,112,94,109,100,114,104,95,106,97,113,95,101,117,112,114,86,111,108,121,104,116,104,92,98,104,101,110,103,120,112,100,109,105,110,100,109,96,107,100,108,98,101,105,111,109,98,88,91,93,99,87,94,96,108,109,117,103,110,99,98,100,100,101,100,107,99,115,96,110,107,114,106,113,100,110,106,111,107,123,109,106,107,111,89,107,108,103,102,106,110,118,95,102,91,117,93,113,100,104,102,124,106,102,95,109,112,91,102,105,88,115,91,106,99,106,111,102,109,93,115,106,115,116,109,98,92,100,95,115,110,97,94,101,99,116,105,101,103,88,107,99,107,106,100,109,114,102,107,119,112,108,116,100,99,97,103,106,98,108,108,109,106,94,105,105,112,101,99,97,102,113,115,104,124,116,98,112,105,115,94,119,102,98,106,95,104,99,106,106,117,109,99,103,98,101,107,107,98,83,100,111,103,97,114,106,121,103,103,98,99,106,103,107,113,113,99,96,115,98,91,102,102,100,100,96,109,91,102,98,101,110,105,101,90,95,106,83,105,101,110,113,91,106,110,117,103,95,99,99,96,107,101,108,103,104,99,96,88,95,103,92,101,107,111,105,114,113,106,98,103,94,93,109,114,120,109,107,102,98,95,100,105,99,106,89,106,102,89,105,107,107,104,113,112,121,104,97,91,113,104,109,100,101,97,101,92,119,103,101,97,110,115,105,105,102,99,101,98,97,107,103,112,110,104,103,139,109,105,115,98,108,108,93,111,103,113,98,94,106,101,105,95,115,105,96,105,100,112,103,98,97,99,110,112,99,108,100,105,124,102,107,102,113,100,92,107,117,103,112,91,109,108,110,101,101,102,110,107,97,111,101,98,96,104,93,104,91,105, +568.02722,100,101,110,106,92,109,101,112,105,98,96,100,96,98,101,93,106,114,117,118,110,93,100,103,102,95,111,102,107,106,123,110,109,113,102,76,98,98,98,104,96,109,102,105,114,108,115,107,94,105,95,100,96,103,98,97,110,90,110,98,97,109,106,93,120,107,119,106,106,94,115,103,99,104,91,113,94,102,107,107,104,107,115,103,104,106,103,100,110,103,109,104,103,111,98,109,103,101,102,96,104,107,100,107,113,113,105,89,106,107,104,94,113,116,98,106,101,119,97,108,106,111,102,104,136,110,108,101,98,107,107,100,103,102,111,104,99,104,105,101,108,114,113,103,104,102,115,110,94,106,117,112,111,96,105,103,94,102,105,96,93,107,105,106,98,104,95,101,96,104,107,137,95,112,109,99,121,112,100,107,97,108,97,111,93,118,113,106,103,91,95,109,98,110,98,96,95,124,100,117,103,98,98,104,100,110,101,106,107,110,108,95,71,105,97,118,110,101,121,112,103,107,101,103,96,103,94,96,103,106,105,102,112,104,114,107,101,107,80,100,96,111,112,92,103,105,109,114,109,101,105,101,104,109,110,112,108,106,80,103,99,94,110,110,98,103,109,102,97,105,97,109,105,106,98,115,107,117,107,105,108,117,103,91,107,89,92,103,115,105,96,108,104,117,104,99,92,102,97,107,98,108,97,112,102,106,113,104,104,106,102,103,110,109,121,99,108,102,110,95,120,103,98,120,117,100,102,103,103,107,121,100,110,104,102,109,102,111,108,106,104,111,93,95,97,114,115,108,113,119,98,98,97,97,117,110,104,115,101,104,108,96,117,99,96,110,99,108,113,120,105,108,96,107,105,94,101,111,99,117,109,105,102,99,98,110,99,103,107,99,109,93,96,99,104,96,105,98,95,105,124,113,99,108,121,101,111,103,116,94,94,107,105,94,104,96,92,104,108,107,102,111,126,107,104,93,117,116,88,114,112,140,113,109,103,104,107,102,104,110,120,104,93,104,97,96,104,98,113,107,110,113,113,116,102,96,103,104,102,109,113,117,88,99,112,111,104,106,100,106,100,107,105,106,101,100,102,117,95,91,105,103,114,110,100,96,112,108,104,90,101,113,108,112,105,110,106,111,98,95,114,110,98,87,98,106,96,100,109,108,115,105,100,108,92,103,112,125,112,108,113,108,116,89,106,110,108,110,107,116,116,100,97,108,113,108,106,109,105,98,95,117,102,102,111,117,109,97,114,109,110,114,109,94,99,96,103,120,110,110,109,110,102,106,105,104,101,96,119,103,100,100,112,112,103,103,106,110,103,122,101,108,107,109,110,101,100,108,106,99,101,107,100,109,111,114,107,101,108,99,109,87,108,94,107,104,91,101,102,112,107,96,103,103,113,104,113,128,104,108,98,101,110,101,114,112,99,114,117,109,109,120,103,110,92,122,104,97,104,109,100,112,101,103,98,98,104,103,106,104,93,109,103,111,111,116,108,110,110,99,123,99,96,103,94,98,113,101,123,108,94,102,112,104,113,107,117,99,108,107,105,100,114,99,99,113,113,95,105,109,105,102,99,100,106,89,78,101,110,98,103,102,97,96,104,104,105,105,113,109,112,99,101,122,101,83,101,103,102,105,102,101,114,120,95,112,113,103,98,136,104,117,87,103,104,105,98,106,106,102,108,100,98,94,113,99,106,107,93,106,112,102,114,109,109,99,110,96,109,90,103,100,89,87,103,109,85,102,104,100,105,122,93,102,101,109,108,115,110,106,98,100,106,113,90,102,101,113,104,108,113,103,107,107,106,105,116,105,108,133,98,114,103,102,97,109,117,113,111,103,121,100,110,94,97,113,100,103,109,100,73,103,117,101,95,109,97,82,106,98,110,109,108,107,104,108,105,95,111,108,101,99,115,98,103,99,112,116,94,106,108,79,100,113,105,105,109,105,92,94,105,107,103,108,106,105,112,106,108,99,113,101,106,113,104,101,112,118,112,102,108,103,102,109,76,100,100,113,94,109,108,110,112,106,103,96,105,118,92,113,108,110,113,114,103,103,105,113,115,111,110,110,101,108,110,103,98,105,108,99,105,121,99,121,97,111,107,98,105,96,104,113,116,113,102,104,98,102,114,126,104,107,116,104,108,97,115,101,104,109,101,94,79,109,105,109,108,99,97,107,103,115,116,96,112,83,71,112,100,111,102,102,107,112,102,100,113,100,106,108,100,94,107,104,103,117,95,95,98,100,105,108,106,98,118,101,104,108,89,122,119,91,114,101,113,112,99,103,138,107,97,107,131,112,101,121,109,110,111,111,124,115,108,111,103,120,116,123,116,113,108,115,140,120,142,104,133,146,160,160,225,281,234,296,297,250,280,235,265,259,250,255,229,224,178,188,138,145,129,131,104,114,111,109,114,118,121,117,107,105,108,121,110,108,93,112,121,120,109,101,108,116,95,110,117,113,110,104,109,111,105,125,105,97,92,100,118,111,113,117,103,102,92,109,108,115,102,108,108,110,102,104,117,101,99,91,103,100,110,101,104,97,107,117,103,121,100,100,116,93,116,105,109,96,107,114,101,108,101,94,114,104,94,113,96,97,113,98,112,97,125,110,121,95,115,87,101,103,103,119,134,98,107,105,85,109,95,95,117,98,94,102,107,110,101,110,99,113,96,105,118,104,110,103,109,114,124,106,105,109,104,88,103,111,101,110,100,91,87,109,108,117,90,100,95,102,117,109,100,106,97,105,105,120,107,114,100,103,98,95,109,109,110,98,113,108,104,98,97,109,101,119,96,106,104,102,121,107,110,105,99,107,105,123,110,109,98,110,97,99,99,111,107,105,105,88,109,104,108,111,109,102,99,105,106,107,104,109,123,89,98,110,98,116,111,104,97,111,108,116,100,114,103,102,118,109,114,94,126,112,97,114,95,97,116,113,94,97,102,93,102,108,109,113,102,100,98,110,112,98,103,102,95,97,106,113,106,108,102,96,118,122,108,109,103,100,96,107,107,127,103,102,102,99,113,112,104,100,103,101,95,109,94,101,98,97,102,101,103,102,106,104,105,104,103,98,99,107,101,116,109,113,108,88,109,105,99,83,106,97,101,108,98,105,107,115,104,105,108,112,99,99,95,108,78,94,108,115,106,113,94,96,111,106,101,107,109,94,120,109,99,128,107,128,106,127,91,105,106,104,104,99,101,95,101,109,110,110,106,106,107,106,98,103,94,100,102,104,110,104,103,111,107,124,104,94,99,116,87,101,106,105,100,97,112,101,102,102,109,100,114,79,110,104,105,118,99,116,107,97,102,101,109,113,105,108,105,73,105,105,107,120,106,82,107,95,93,94,106,97,96,105,120,116,99,96,106,92,95,103,109,94,92,109,106,109,104,102,99,91,93,101,99,104,85,101,112,91,102,100,104,107,116,110,104,99,99,105,104,97,103,110,105,113,96,107,98,96,106,109,103,105,117,96,113,105,109,103,101,93,108,109,103,99,113,98,95,101,110,109,107,108,111,102,95,110,116,110,104,99,104,110,114,111,113,101,105,113,105,106,122,108,101,105,110,100,106,106,109,111,104,106,106,108,98,102,100,96,97,98,98,93,105,112,116,100,91,99,116,121,107,140,103,93,103,109,102,99,95,107,104,96,98,110,98,96,109,103,94,104,111,112,117,100,107,106,97,105,102,103,106,105,118,112,102,99,112,106,94,102,106,112,117,100,105,109,112,100,100,110,107,99,88,93,103,119,108,119,108,102,100,96,110,109,103,120,99,99,109,101,104,107,106,105,100,103,70,109,95,111,106,99,84,110,102,98,101,95,92,105,105,112,118,108,96,100,103,113,102,102,109,111,103,97,99,113,107,105,110,109,129,111,99,109,108,112,118,102,112,112,113,104,109,109,111,106,98,105,100,97,98,111,107,100,114,111,105,108,120,98,102,103,100,104,110,101,104,95,100,100,110,109,96,116,111,104,97,103,102,109,105,116,108,96,99,114,104,115,113,96,97,98,112,96,107,99,108,99,97,105,104,112,96,105,111,107,110,108,112,99,117,107,101,107,108,108,103,112,83,96,96,118,101,119,104,110,112,94,98,113,96,108,104,114,105,112,98,103,108,102,93,90,115,109,103,99,91,103,102,98,86,102,99,109,102,95,112,117,101,104,113,119,101,95,99,111,104,108,110,99,116,106,100,88,101,109,101,120,103,106,101,106,96,111,111,111,96,113,105,104,94,107,105,113,100,109,84,109,120,112,116,103,109,99,106,125,93,104,103,107,99,99,100,99,109,110,94,111,104,104,104,100,112,115,108,121,100,103,100,103,113,104,105,121,98,105,99,107,111,109,93,107,108,108,100,107,110,114,109,105,101,107,108,96,112,100,135,120,99,107,97,103,97,109,98,94,94,102,99,97,109,105,95,96,102,107,101,106,109,109,109,106,107,102,109,107,103,107,106,102,109,98,111,116,103,96,105,91,99,113,104,124,102,113,104,111,103,101,97,105,98,104,102,110,106,100,104,107,111,103,100,111,109,120,112,116,109,111,100,115,103,111,107,103,105,104,104,95,98,103,98,102,108,99,116,109,109,101,108,117,118,101,97,98,96,102,100,110,109,108,106,111,92,92,106,97,116,114,96,103,112,92,112,106,92,89,116,98,108,103,104,100,119,102,110,120,105,125,101,101,114,121,101,112,95,109,110,92,98,100,95,103,101,100,107,104,100,92,99,99,105,102,95,104,100,105,109,112,105,110,106,130,111,113,90,103,99,106,95,98,105,81,112,94,105,132,106,108,87,99,109,112,91,105,104,102,108,105,111,97,94,102,106,100,105,103,92,100,113,100,99,103,121,104,103,96,102,108,107,99,92,102,110,100,128,96,104,95,104,82, +568.16809,121,89,101,106,96,104,99,116,86,130,105,112,105,101,113,106,104,106,109,111,100,123,88,115,116,112,109,97,101,103,102,96,99,108,117,88,105,102,108,94,104,96,102,92,111,104,101,96,104,103,105,98,106,106,104,96,98,94,101,91,103,103,118,91,104,97,99,101,100,94,93,92,112,94,101,108,89,107,110,103,110,86,106,105,111,88,110,107,108,96,100,117,106,120,94,110,115,93,105,111,113,125,98,102,102,105,114,110,108,117,99,91,98,110,107,112,94,108,101,116,108,111,99,91,127,108,104,94,122,104,97,114,87,115,102,118,107,110,122,103,109,99,94,105,106,104,113,103,109,105,103,98,119,86,112,107,107,101,117,111,113,115,109,110,106,109,103,107,104,100,147,107,106,97,111,101,101,112,115,114,117,102,101,117,101,99,95,96,105,103,115,117,100,103,96,117,111,100,101,108,108,107,110,120,108,103,105,107,111,119,101,104,107,104,113,111,103,122,99,105,108,108,103,108,115,96,110,107,101,114,96,112,121,112,129,101,103,107,94,120,109,122,106,95,100,78,124,112,106,114,99,105,93,113,100,113,98,94,98,107,98,98,119,108,96,116,98,99,109,106,95,105,91,110,110,107,106,109,95,102,111,113,102,111,103,98,104,104,104,103,100,104,117,122,99,102,92,108,94,95,100,99,95,102,95,108,110,113,111,104,100,100,91,106,103,91,94,103,101,98,111,98,108,121,107,106,99,89,122,113,113,105,110,95,106,111,100,101,100,118,110,104,100,105,111,117,108,113,122,110,108,107,120,99,114,108,112,113,112,111,104,103,96,97,100,91,100,98,100,112,115,99,107,108,107,98,110,95,111,106,103,105,96,117,124,104,99,110,113,99,94,98,97,114,118,109,100,104,94,89,99,102,94,86,117,101,103,110,106,110,94,90,104,100,100,107,106,100,118,109,104,105,87,95,104,104,94,100,90,120,100,106,99,107,106,110,104,113,102,101,107,109,106,88,87,106,104,105,99,102,110,94,106,112,111,94,104,102,105,98,129,101,93,103,108,84,115,92,106,100,113,120,129,115,110,95,108,108,87,108,112,118,107,108,104,96,111,107,108,105,109,117,113,97,97,100,100,88,97,111,112,105,97,103,108,91,98,106,100,104,120,105,99,108,108,105,86,109,97,93,107,108,105,99,100,103,115,112,107,102,105,88,104,100,121,109,109,110,110,117,113,106,93,102,124,108,111,95,105,105,116,108,102,106,108,105,100,102,103,97,108,98,100,108,117,100,108,105,99,102,99,111,105,95,107,116,108,97,114,108,105,99,107,102,98,102,109,110,118,117,111,122,105,115,99,114,102,105,98,104,100,110,122,112,108,112,107,107,113,104,97,113,112,113,107,103,113,104,114,101,108,99,109,104,94,82,91,110,105,107,120,102,104,111,89,95,107,116,106,109,113,98,106,96,99,109,103,100,107,109,95,104,109,103,98,104,108,106,99,95,97,113,109,110,98,96,110,109,112,115,100,106,99,99,105,102,102,115,103,108,114,114,106,107,92,96,100,104,102,114,103,97,97,122,114,110,108,105,108,101,108,95,102,109,121,104,109,105,118,104,101,110,101,100,110,111,102,113,105,109,102,104,108,118,91,95,110,109,92,112,101,102,102,115,114,109,116,95,104,98,106,96,102,102,95,98,102,112,108,112,114,107,110,98,104,108,93,107,112,101,104,112,95,127,104,103,96,108,96,105,100,102,97,102,95,111,108,112,105,99,104,106,107,108,102,111,114,95,105,112,116,107,100,106,115,106,88,102,114,101,99,110,100,118,114,100,117,108,103,105,120,100,90,99,113,90,105,95,121,105,110,107,110,104,111,94,110,111,105,113,114,119,102,114,105,116,109,107,99,103,109,113,110,109,105,100,108,96,89,110,115,104,114,105,97,93,102,108,98,109,108,94,116,109,101,101,100,108,114,113,126,119,101,99,104,113,107,93,93,104,108,109,110,96,102,120,104,117,125,99,111,112,113,115,104,125,111,106,104,105,101,116,107,123,109,105,110,106,104,84,100,104,106,108,102,100,92,103,101,108,113,103,106,95,106,104,104,102,98,105,105,112,112,121,92,100,105,112,102,106,100,104,114,97,100,107,106,101,116,108,106,103,102,106,99,106,109,100,107,115,133,101,101,108,107,103,108,98,109,106,104,118,113,110,119,96,102,89,108,106,110,106,112,107,103,122,92,86,107,110,105,107,98,109,117,108,98,112,102,104,111,98,99,110,101,110,112,110,99,102,99,108,104,103,108,111,102,98,114,103,125,107,110,99,104,117,113,95,109,112,125,118,111,118,118,125,116,135,172,191,206,239,265,280,290,282,271,287,264,260,288,238,226,222,187,182,163,137,131,119,141,121,124,133,99,103,116,80,123,108,120,118,120,112,111,111,116,102,98,89,106,98,111,114,108,90,121,112,109,104,94,104,109,105,98,110,107,119,109,110,114,102,115,99,97,103,87,102,107,110,106,121,113,121,99,104,117,103,110,110,106,108,96,99,108,114,107,112,103,110,100,121,112,99,108,108,114,107,102,95,97,100,114,121,97,116,102,113,107,114,119,108,112,109,101,114,114,117,107,102,102,104,108,108,113,99,108,79,102,97,104,103,101,104,112,106,110,111,106,113,103,111,102,102,110,116,104,108,107,104,105,109,111,90,111,125,99,124,123,102,121,100,115,107,107,112,107,113,108,106,96,107,103,125,106,109,106,121,109,110,103,107,95,118,99,104,115,115,116,107,111,128,102,120,105,101,116,117,94,113,119,102,108,102,105,102,111,121,101,106,105,111,103,66,102,117,116,95,113,117,104,104,111,101,112,102,113,71,107,110,109,103,105,98,102,107,106,112,116,100,97,106,107,103,100,111,105,98,120,99,100,107,101,105,104,105,108,112,113,100,104,103,103,117,105,107,98,117,105,113,106,95,116,118,116,119,104,100,112,109,113,95,106,121,111,118,111,104,120,108,102,102,105,114,120,101,108,106,100,99,105,100,113,105,103,107,96,105,100,105,102,113,103,106,111,94,99,109,108,99,103,105,108,110,112,106,111,99,112,126,98,98,104,99,118,89,109,113,105,99,106,108,101,88,99,104,114,102,130,110,108,89,106,118,118,123,108,101,110,108,107,103,100,92,98,111,105,101,108,99,97,121,99,109,103,98,99,107,107,105,101,113,109,121,106,109,112,113,113,105,112,102,115,125,123,100,104,116,119,100,108,95,102,121,100,105,110,109,107,103,110,95,119,114,109,98,109,111,117,104,110,97,114,100,103,109,100,101,112,105,109,110,110,110,114,117,108,113,111,127,91,114,113,114,105,109,103,104,103,93,108,112,108,116,111,128,120,109,97,101,100,107,116,111,107,88,107,104,111,104,101,104,109,92,113,91,104,109,106,101,104,105,108,105,105,96,106,114,109,96,113,112,112,90,106,102,107,103,101,103,114,105,108,119,105,111,120,115,108,121,95,117,116,108,108,106,108,121,100,116,109,105,107,112,114,110,128,107,110,105,109,86,114,107,99,119,121,93,106,95,115,100,118,115,108,115,111,109,103,108,101,105,108,123,103,88,104,116,115,97,109,104,105,113,100,105,96,98,113,118,106,109,104,119,106,102,115,115,108,109,113,104,85,110,101,122,124,104,112,108,98,101,100,111,120,106,109,102,82,99,103,75,101,107,106,99,109,112,114,114,105,107,110,117,112,116,115,118,118,102,98,110,111,102,113,102,108,109,114,113,99,103,103,98,113,100,113,105,122,108,111,107,118,106,110,104,104,101,109,99,103,114,105,101,101,100,112,102,119,105,102,104,103,109,103,106,108,95,99,101,104,107,89,102,98,113,120,110,102,99,106,112,112,106,111,107,114,109,106,101,106,103,110,109,111,110,108,106,119,103,102,102,96,109,106,114,111,108,98,83,111,110,102,98,106,101,114,99,105,119,104,102,109,124,112,107,106,98,110,92,116,96,92,106,117,117,103,102,91,105,105,115,103,107,102,99,91,112,140,113,117,102,98,106,101,110,106,107,102,100,72,115,102,105,108,90,106,115,114,100,110,103,110,116,105,144,108,99,121,95,104,114,103,105,102,106,108,101,111,95,104,110,117,98,105,106,109,108,121,109,111,116,110,105,108,102,106,102,140,105,117,101,98,111,106,98,104,99,88,119,101,104,104,103,101,100,109,111,109,97,94,98,109,111,102,104,106,106,107,101,104,102,110,111,107,111,114,71,93,121,100,106,122,102,106,100,110,102,110,118,113,98,100,97,108,89,111,111,76,103,109,105,104,98,87,114,101,96,117,112,109,111,118,111,113,112,119,113,107,103,98,95,108,115,99,100,115,111,115,109,111,100,109,105,94,101,96,102,107,107,110,105,109,101,94,95,88,106,112,103,109,114,108,115,108,94,101,112,104,94,107,113,116,111,111,102,113,109,105,97,98,111,103,108,113,101,121,100,120,100,98,100,117,111,102,110,105,101,107,106,109,113,125,105,104,116,103,109,103,113,100,107,123,95,110,110,112,103,97,104,107,101,112,112,113,93,114,100,101,121,103,100,105,101,92,108,105,106,102,103,102,104,101,107,101,96,104,112,101,101,120,103,102,100,101,114,107,109,103,102,97,108,123,99,101,106,124,109,107,115,108,79,119,120,100,95,108,98,105,113,104,99,100,109,93,116,99,104,107,117,108,101,120,103,98,117,97,103,100,122,104,125,99,110,110,110,108,104,105,106,113,111,89,111,90,112,109,112,106,99,126,106,99,78,115,111,122,121,107,111,112,113,102,103,97,106,87,98,98,81,96,123,108,107,111,100,107,99,95,100,103,105,108,102,117,87,99,111,114,117, +568.30902,106,118,102,109,104,100,98,107,94,93,101,97,102,106,94,79,95,104,98,103,106,90,99,104,105,101,106,105,94,104,109,97,90,100,104,101,107,108,104,102,102,99,105,105,103,110,121,103,108,97,87,116,96,123,100,86,113,94,109,98,112,104,108,94,102,118,99,99,93,107,112,113,101,95,98,96,94,104,113,101,110,102,103,104,94,90,100,105,105,95,106,102,97,102,110,97,104,106,90,114,105,99,101,105,95,119,92,106,79,124,110,88,103,102,102,104,100,105,98,96,106,101,118,109,105,122,123,97,111,106,110,100,94,104,102,110,89,114,94,94,104,109,100,97,100,97,124,96,116,91,105,99,104,102,115,96,102,112,106,111,100,108,102,106,102,100,110,97,107,95,112,111,90,103,104,101,98,111,115,112,95,105,113,92,102,103,104,83,100,95,111,106,100,112,114,92,134,98,116,98,104,94,103,103,101,100,103,113,104,112,108,106,107,105,101,105,99,94,100,110,103,113,103,108,102,79,111,115,104,103,123,117,107,108,107,100,113,112,110,102,94,105,105,104,114,101,96,110,97,105,110,95,96,97,100,108,105,101,95,103,87,102,116,94,83,111,106,109,103,84,108,115,104,100,101,95,80,114,117,111,109,114,100,113,97,109,99,96,98,115,98,97,107,100,109,112,109,101,107,109,104,107,111,116,110,110,110,102,102,107,101,97,100,107,104,106,118,99,108,99,102,86,108,111,101,100,94,101,115,106,102,110,111,95,98,115,106,111,113,96,107,101,109,105,99,106,97,120,116,101,98,98,109,94,101,100,104,114,109,103,99,94,98,97,110,101,100,135,103,101,108,104,100,106,117,99,88,96,107,107,105,99,107,110,119,98,93,121,106,105,107,114,106,100,102,111,102,106,88,106,101,112,109,96,105,103,100,116,112,97,98,92,103,102,99,100,118,106,109,96,109,95,100,105,100,105,88,99,111,114,103,115,102,100,93,109,104,101,103,109,118,97,99,103,92,108,107,99,115,106,109,96,120,112,106,101,120,98,108,99,107,103,111,103,116,105,110,97,106,94,107,107,108,111,72,101,95,117,114,90,116,107,114,103,108,102,113,104,91,99,114,105,102,114,90,101,85,102,105,83,105,102,103,107,109,109,103,112,109,106,103,101,107,107,101,104,108,105,94,114,98,111,104,104,105,111,107,104,101,106,116,116,91,102,101,94,112,107,103,122,91,110,102,108,102,104,110,100,112,118,96,89,113,84,106,97,106,95,112,106,97,100,116,104,119,108,100,104,118,112,104,108,113,101,103,101,111,110,99,105,111,103,103,105,115,96,108,110,107,97,105,99,106,86,105,113,100,120,105,108,114,113,109,94,110,99,101,115,118,114,99,105,109,110,103,101,108,96,95,108,99,113,104,111,121,106,96,97,105,102,94,107,96,116,92,109,97,117,107,100,100,109,98,104,102,108,102,102,104,110,100,108,110,109,99,117,110,107,110,100,110,90,99,100,100,108,116,95,123,100,98,91,99,116,100,108,104,110,105,100,108,103,109,94,103,102,94,124,105,105,106,110,82,96,100,80,108,109,101,107,104,122,111,106,102,110,107,107,108,105,96,107,100,98,98,109,95,99,115,94,89,98,104,107,102,100,112,111,102,112,108,100,100,99,99,104,104,109,118,86,103,106,99,98,111,110,110,121,114,113,113,102,102,118,100,112,109,114,106,102,107,88,98,109,107,111,99,113,104,110,110,97,108,106,106,108,107,105,105,100,107,98,116,108,125,118,98,110,96,102,102,108,110,114,109,95,110,103,104,112,105,91,103,103,107,105,95,105,102,112,121,101,111,100,105,95,104,88,114,116,109,105,105,102,100,104,105,117,99,110,103,110,107,115,95,117,111,96,115,106,98,111,114,107,98,111,107,110,108,97,111,90,109,102,97,105,105,113,93,102,104,111,100,109,106,101,118,107,111,109,103,104,76,101,111,107,107,109,107,99,108,99,97,110,105,106,108,98,107,103,123,94,109,101,117,113,132,108,109,116,98,115,109,111,111,100,102,121,109,100,98,109,113,99,103,102,94,109,104,101,102,102,104,103,103,102,110,112,117,104,110,112,109,103,100,112,115,118,110,103,93,132,107,97,109,108,98,121,107,112,99,109,95,99,105,106,102,99,95,96,100,110,113,120,94,101,87,98,100,129,110,101,113,101,118,113,82,106,89,102,103,100,114,102,107,99,94,98,98,113,105,111,111,100,97,96,101,110,99,110,108,105,114,100,103,105,91,97,97,104,105,96,102,110,104,100,104,101,100,105,97,110,110,106,114,113,118,106,103,98,116,132,116,134,135,142,143,157,181,206,239,244,285,257,297,267,341,284,250,219,232,259,219,205,179,184,181,154,141,128,131,118,112,102,111,99,119,106,124,106,124,110,118,113,121,115,125,130,97,123,106,112,113,105,93,113,103,103,113,115,95,94,103,105,98,92,100,105,80,114,91,106,108,107,104,105,94,87,112,95,98,106,108,109,98,100,104,112,102,106,92,101,98,96,95,103,101,118,106,111,113,109,104,103,110,103,99,99,100,96,100,92,103,103,118,97,108,111,104,98,103,95,113,110,104,97,107,99,111,99,103,103,110,89,108,93,108,102,115,100,97,107,113,104,100,117,104,104,112,106,109,98,105,107,99,112,120,106,103,112,106,106,113,107,108,104,102,102,111,103,116,103,108,108,107,112,95,97,120,108,95,94,106,103,100,107,108,110,111,93,116,99,107,99,101,110,103,100,110,110,93,108,101,100,88,114,107,103,106,105,118,99,113,109,110,108,101,113,102,108,112,107,110,102,105,106,105,93,97,115,101,109,109,103,108,109,104,110,93,109,113,101,91,97,107,113,106,109,95,112,102,114,116,96,118,107,129,100,102,104,101,118,96,118,94,105,93,104,91,103,109,113,101,117,111,114,110,102,95,103,96,116,98,99,107,116,101,106,104,113,112,109,92,109,111,108,109,115,105,101,110,93,99,108,103,111,100,108,96,110,88,101,113,115,105,100,97,108,109,109,96,99,104,107,105,101,113,104,111,102,101,118,107,113,115,97,109,101,105,110,101,107,106,119,102,103,103,112,100,110,98,94,88,108,93,112,106,106,101,113,100,94,100,124,115,92,102,94,114,99,110,102,106,112,113,117,112,102,112,108,110,111,90,105,101,82,99,119,104,92,110,105,99,98,108,106,103,112,103,105,109,109,99,116,103,114,99,123,83,108,100,107,104,103,111,95,99,117,107,106,109,96,91,116,113,105,104,117,111,100,90,112,104,106,107,107,103,97,97,99,105,109,103,109,108,73,96,103,121,118,99,103,105,114,103,116,113,109,109,110,114,104,95,112,110,116,91,98,108,100,104,106,96,106,79,115,94,105,107,110,98,115,98,99,111,96,110,106,104,101,102,97,83,115,92,110,68,88,112,93,113,93,100,106,97,97,113,102,108,104,90,82,96,103,95,95,104,107,103,90,108,98,106,105,95,111,113,117,85,110,113,122,120,102,102,102,112,113,102,115,113,99,106,117,103,107,94,100,105,105,110,104,94,104,116,102,103,99,95,102,129,105,102,111,102,98,108,104,108,100,109,103,102,106,109,99,110,98,91,100,105,100,99,95,117,106,105,108,112,105,107,112,108,109,102,98,97,101,107,101,114,98,67,115,114,101,111,114,105,102,94,96,102,101,105,104,108,116,102,99,103,107,98,100,117,109,106,95,105,97,117,91,87,115,91,101,103,106,112,103,92,118,100,102,108,103,110,111,106,109,105,99,116,96,110,106,93,107,108,104,101,106,99,103,99,106,115,101,106,105,101,104,95,104,125,116,101,107,102,88,103,116,113,114,105,92,105,104,90,104,112,100,97,108,116,83,112,111,95,100,109,116,99,113,102,121,100,99,101,106,102,115,102,109,107,107,114,105,99,107,106,95,107,97,100,102,98,104,102,99,107,114,98,107,104,94,96,94,108,99,115,104,103,107,113,102,102,109,109,105,100,114,103,95,115,96,102,105,103,101,112,115,103,112,110,95,106,124,94,96,96,113,99,113,102,125,107,111,98,110,113,109,91,102,110,103,112,114,101,105,103,103,99,102,100,104,110,104,109,103,98,95,104,103,105,102,106,103,103,90,85,115,100,90,108,105,102,108,114,108,110,108,107,105,96,93,108,65,105,104,101,108,99,103,107,87,112,114,104,102,108,96,114,103,105,100,96,89,98,105,116,101,103,108,112,103,101,85,95,103,104,113,105,110,107,108,85,100,98,109,127,103,121,102,100,105,111,102,106,113,113,95,115,117,116,112,110,104,106,104,120,106,113,96,96,100,112,103,92,113,98,108,106,95,99,109,114,107,100,106,112,98,94,105,100,122,101,90,103,101,109,107,111,98,102,104,86,103,99,108,105,105,106,103,105,93,98,103,105,118,96,100,74,95,96,109,109,101,108,97,106,100,91,101,110,95,107,108,97,111,110,111,112,91,99,109,106,111,105,95,91,102,103,97,93,105,94,100,109,119,112,106,101,91,103,102,108,97,109,110,94,96,109,100,125,106,113,108,115,105,105,113,108,112,99,103,116,97,107,104,97,109,119,102,117,101,111,118,112,99,101,106,112,105,96,100,112,108,111,112,99,104,109,108,103,82,103,103,97,92,88,98,116,106,117,103,101,117,95,103,93,111,99,115,113,105,111,94,103,100,104,98,99,105,108,94,106,107,105,110,108,98,104,106,120,105,119,95,90,104,114,101,105,103,102,101,103,110,101,101,99,105,96,110,97,104,96,112,101,117,98,111,122,110,92,107,103,111,98,93,101,103,104,102,104,104,110,104,110,83,134,115,102,125,102,105,113,96,77,70, +568.44995,106,113,100,95,106,117,108,98,104,97,94,98,110,98,115,99,95,110,87,117,103,70,102,112,104,98,98,80,104,103,97,114,94,107,88,99,121,101,110,95,96,96,96,85,107,104,97,92,111,107,103,85,103,98,90,79,102,98,106,100,110,112,99,103,111,112,106,103,95,88,121,111,96,118,87,114,98,99,101,100,115,106,121,105,96,95,90,106,108,110,112,112,111,110,107,105,97,98,92,95,131,121,106,110,105,96,100,92,101,102,91,118,113,104,100,83,87,111,106,110,109,99,96,118,102,99,100,96,115,108,98,104,97,109,107,108,101,106,106,101,105,108,90,100,104,105,98,99,73,101,104,94,105,99,109,100,109,101,115,102,109,91,77,109,86,107,104,103,102,102,99,103,106,96,104,114,108,99,117,103,118,94,102,105,103,102,109,98,114,117,124,98,116,101,99,111,108,99,102,109,95,106,105,97,94,94,108,113,105,116,112,106,99,101,95,112,95,101,105,113,104,110,99,98,102,105,106,110,113,99,103,106,107,101,105,103,96,113,95,105,94,111,118,107,114,94,112,107,103,79,95,107,96,116,98,112,90,113,101,106,90,100,105,103,84,103,101,104,109,106,109,96,103,108,102,116,108,103,95,102,102,105,101,110,107,97,97,91,123,109,103,110,105,107,116,115,99,113,114,110,108,96,96,112,91,104,109,104,108,110,92,113,82,117,115,113,110,108,105,111,108,102,104,99,100,98,114,102,110,117,109,104,107,94,107,112,100,97,94,109,113,103,84,107,106,118,126,106,104,117,110,100,113,108,120,108,105,104,131,95,102,94,115,113,101,95,120,110,101,114,112,107,105,124,105,109,116,95,104,110,106,108,92,118,85,97,99,93,105,97,106,100,105,109,97,92,109,107,105,113,89,103,102,114,102,101,99,104,110,97,98,97,105,104,112,106,100,104,102,102,106,113,99,98,108,100,109,93,118,104,100,118,97,105,112,114,102,117,108,96,112,95,104,99,100,99,107,105,97,115,81,100,102,118,86,108,106,107,101,99,96,101,105,110,98,107,98,101,97,96,95,114,112,96,107,100,94,98,104,99,117,111,107,106,105,105,91,97,110,94,114,104,103,100,99,111,92,85,91,105,112,103,98,101,120,113,93,100,106,111,100,107,101,106,94,100,105,114,99,99,103,106,94,111,105,96,107,115,103,102,93,100,108,84,121,99,95,105,113,107,109,105,123,98,109,105,104,116,106,103,102,106,106,113,92,109,110,98,107,101,98,127,94,113,105,109,113,106,100,95,111,101,91,104,111,101,106,112,111,101,113,110,103,105,82,108,111,113,99,96,93,109,106,104,99,97,100,117,119,106,104,94,102,112,98,106,101,92,102,108,95,100,111,98,113,95,104,99,106,105,111,107,109,95,112,106,85,100,104,127,107,104,102,106,84,88,110,99,113,109,107,106,102,104,94,105,115,111,107,117,100,106,98,96,102,97,113,118,105,101,110,93,110,107,94,102,103,106,89,98,114,108,106,110,108,108,90,103,103,103,107,111,108,103,102,99,105,95,100,73,110,106,98,108,108,88,96,102,111,103,96,92,106,95,108,100,107,109,96,97,98,104,107,89,99,102,93,108,104,102,111,104,109,111,97,97,107,114,108,99,118,114,104,110,101,107,113,109,108,107,101,92,110,102,104,94,112,105,99,90,92,100,108,96,100,106,103,107,115,98,95,103,99,102,101,107,101,102,99,106,108,116,109,102,105,108,110,108,93,108,105,116,81,111,108,105,109,105,116,129,99,108,108,109,96,94,90,104,102,111,113,106,99,92,115,99,104,111,96,109,111,100,106,113,111,111,95,112,104,100,102,105,120,102,94,120,99,100,99,109,100,99,113,109,110,98,99,99,108,105,105,105,109,98,100,91,118,109,110,103,114,104,110,118,104,116,110,99,98,113,105,103,112,120,116,108,121,110,104,110,103,111,104,100,113,103,102,123,110,99,111,107,90,124,116,109,97,105,107,101,96,110,109,92,97,117,103,120,102,107,108,99,103,88,120,115,105,119,99,109,109,132,102,99,126,100,101,114,101,103,114,103,112,104,109,110,95,105,101,101,112,109,102,111,105,101,109,105,103,101,99,107,114,104,106,96,123,101,104,103,114,108,113,103,114,112,125,104,109,116,117,103,108,96,106,103,102,83,93,99,98,116,112,106,103,96,108,112,98,109,103,104,104,88,103,98,110,113,95,100,102,98,114,103,117,108,94,104,104,94,102,109,106,99,114,115,101,90,102,108,96,99,99,125,107,98,103,99,100,100,102,119,115,105,132,117,114,103,119,113,96,115,122,104,127,125,132,144,158,162,212,213,264,278,298,324,284,236,250,252,227,243,237,210,203,174,169,149,136,129,119,115,100,106,114,103,102,105,114,95,117,109,98,128,107,119,99,101,110,96,96,97,97,99,112,102,103,112,105,101,107,98,105,104,112,100,102,108,104,98,105,118,109,107,108,115,104,106,90,105,94,105,111,104,103,111,79,84,108,111,113,108,102,106,111,95,102,104,107,105,112,111,105,105,100,101,105,107,92,99,89,119,105,98,102,107,109,101,106,95,101,114,101,102,103,101,104,101,99,102,95,103,101,100,114,104,110,100,113,101,103,103,121,116,101,101,118,101,115,102,103,91,94,107,92,108,94,108,109,108,98,111,118,112,103,107,109,96,85,109,104,107,105,97,115,119,113,92,105,106,103,93,106,97,121,114,114,110,106,113,109,111,99,96,110,104,93,117,100,105,110,109,106,101,98,108,99,104,83,107,126,105,104,106,105,103,106,108,106,105,101,105,109,112,110,107,106,101,108,133,106,103,104,100,107,102,102,104,91,104,107,108,107,102,92,102,100,98,105,106,102,109,104,106,98,113,113,93,108,108,108,113,92,113,99,109,96,109,96,103,93,102,95,114,103,106,109,106,110,106,100,102,100,113,101,98,108,95,113,103,118,104,87,107,115,109,102,106,90,113,86,109,109,99,109,95,105,109,102,99,77,102,100,107,104,97,103,103,106,109,101,105,99,120,90,102,104,77,104,100,107,104,107,109,106,106,104,87,112,102,96,103,97,109,108,86,101,110,107,96,104,100,106,112,114,104,98,98,102,108,91,101,112,98,100,102,108,104,107,111,102,132,103,97,98,114,113,107,99,102,101,96,104,110,104,106,105,105,107,99,98,100,102,107,99,105,98,101,103,106,103,102,109,110,111,95,98,108,96,113,110,101,105,124,114,99,106,105,101,102,108,99,109,99,102,118,112,111,99,117,91,101,108,102,106,105,104,100,104,105,100,120,104,93,95,111,99,102,99,105,107,92,104,102,103,104,104,92,101,100,92,107,111,119,102,109,110,111,99,100,97,103,107,113,102,95,102,104,124,112,91,108,97,110,102,102,108,98,111,102,105,106,96,86,99,101,110,109,110,95,102,109,101,103,109,101,96,102,104,103,105,94,97,115,106,109,106,104,109,101,102,106,100,109,106,116,107,97,95,95,108,108,97,112,110,105,94,97,116,108,112,106,114,103,103,99,103,100,120,100,106,98,102,115,110,93,116,113,117,106,107,100,99,105,100,95,105,98,108,105,99,92,109,98,118,100,103,98,100,106,102,96,107,111,108,102,106,106,102,104,105,105,101,101,97,106,103,94,106,114,110,93,82,114,109,106,98,103,98,95,109,100,102,105,112,101,98,115,105,110,109,106,104,102,102,101,104,101,114,101,106,95,111,103,104,95,130,92,111,102,98,111,100,118,117,116,105,123,94,96,101,102,125,103,114,108,102,93,99,111,91,117,105,109,105,104,103,98,101,101,91,103,103,125,104,97,120,105,109,116,103,102,103,97,101,109,110,109,94,113,110,110,101,101,107,106,106,98,106,97,95,86,103,106,103,104,98,113,106,94,108,95,95,107,107,104,104,104,121,103,119,106,105,128,107,104,87,107,100,103,72,113,107,109,71,97,99,112,110,97,103,108,103,117,102,105,114,104,106,91,103,107,102,92,103,107,104,101,111,104,106,112,98,94,104,107,106,102,104,97,110,98,113,121,108,113,99,107,104,91,105,102,113,105,98,111,126,105,102,100,109,105,107,102,104,90,94,98,80,95,111,107,107,99,117,109,119,93,102,95,112,123,103,106,113,117,96,112,113,107,108,118,111,87,107,106,96,117,103,117,95,105,105,100,108,99,113,112,110,107,102,102,110,109,100,106,103,106,102,95,107,100,118,111,90,111,108,105,94,111,117,94,102,101,106,104,105,108,116,110,97,103,112,106,98,104,104,94,94,106,107,105,100,103,98,101,119,99,102,122,102,106,104,104,113,108,124,111,115,106,98,105,103,121,107,104,113,108,92,105,93,99,96,104,105,103,103,103,107,99,112,110,99,99,84,101,112,99,104,112,122,95,123,100,98,114,107,111,106,96,109,108,95,100,109,111,102,112,110,98,88,94,72,110,108,113,96,114,106,101,111,105,98,102,99,118,81,121,96,103,97,99,99,100,110,96,97,99,107,108,109,77,99,97,104,104,107,108,102,105,102,92,118,112,105,113,108,108,100,107,108,116,95,108,96,106,103,98,105,91,100,105,127,96,106,98,117,107,89,121,104,93,99,118,83,116,124,107,106,100,88,109,98,101,111,122,100,107,104,107,110,110,109,110,95,109,85,110,107,106,103,113,109,112,95,109,105,92,111,102,109,91,109,100,107,83,106,142,108,107,104,112,107,104,106,108,99,94,102,115,105,105,100,113,83,105,96,102,104,104,105,108,101,98,112,110,108,99,97,91,113,92,103,106,103,115,105,109,102,106,105,102,108,93,118,99,102,95,104,100,98,98,83,107,91,94,94,111,99,110, +568.59088,111,85,114,107,122,102,113,99,78,75,100,100,102,98,101,101,93,106,101,104,101,106,111,109,96,93,110,112,98,98,96,100,94,102,105,104,100,98,105,93,98,92,92,92,107,110,96,108,105,108,124,102,103,99,113,95,101,98,100,98,115,101,110,101,103,109,100,84,100,91,106,103,105,99,107,103,98,110,92,104,105,106,105,94,90,83,110,100,96,95,106,114,95,114,101,111,94,98,98,107,100,103,112,100,93,103,93,105,100,111,109,115,115,102,98,98,98,100,110,103,117,116,106,104,120,103,100,85,107,113,94,101,109,106,103,106,89,114,98,103,102,121,93,104,105,104,107,102,110,96,104,96,90,97,97,111,105,98,113,107,94,98,83,111,122,114,90,100,111,95,102,105,94,108,103,100,94,103,112,98,95,108,100,89,107,103,94,95,107,95,95,106,106,103,101,103,94,99,105,111,106,106,117,109,105,117,100,100,106,97,109,109,93,108,107,103,117,107,98,110,99,112,101,97,106,107,107,107,102,101,108,104,113,98,101,106,104,98,121,107,106,107,103,106,98,105,115,105,107,115,71,108,99,119,103,103,128,99,96,92,96,106,106,105,92,99,109,100,103,111,106,104,110,119,104,108,103,97,93,112,104,113,94,101,95,95,108,110,109,109,115,101,109,103,112,94,104,117,100,104,103,101,97,115,101,94,109,102,102,111,92,109,111,115,110,105,106,104,102,96,94,102,111,112,89,101,103,104,111,111,119,102,105,108,103,100,106,88,112,98,104,107,97,100,108,106,116,107,118,96,110,94,107,102,113,97,106,110,103,104,112,102,101,80,101,111,102,99,101,104,97,111,110,106,103,104,115,106,111,104,104,104,100,98,96,103,95,119,121,95,112,102,109,137,95,100,95,101,106,109,95,102,111,95,100,101,102,95,102,107,98,103,104,98,103,89,106,106,103,106,105,101,90,100,102,104,98,104,92,110,104,108,109,98,117,107,99,108,108,97,118,111,116,109,97,106,96,112,109,109,100,109,113,107,106,108,106,99,114,96,104,100,109,103,105,112,113,107,99,110,120,107,95,112,106,96,96,113,114,106,98,112,107,108,98,101,103,110,100,108,90,104,114,102,95,87,104,97,111,109,116,90,99,101,100,104,101,107,111,101,124,99,101,112,105,107,98,113,87,109,103,107,95,122,108,109,100,118,111,106,110,113,108,102,99,102,94,96,108,101,107,109,101,103,114,113,105,101,95,117,115,121,109,113,102,111,114,111,106,97,108,94,103,106,96,106,90,121,114,98,90,113,96,112,105,84,104,98,120,95,101,92,97,91,93,99,102,105,109,97,112,108,107,94,103,100,93,114,104,113,110,124,107,110,103,100,96,111,102,103,108,104,104,106,100,89,101,103,112,102,113,103,94,112,116,102,94,93,100,113,99,103,105,111,97,97,109,105,112,102,106,105,102,107,106,106,99,97,103,105,95,105,111,116,96,99,117,100,105,118,105,111,112,103,106,105,117,99,104,101,94,100,104,103,109,109,85,95,108,102,114,108,103,101,107,105,99,82,108,108,115,113,94,109,107,101,107,104,111,96,109,98,91,117,110,114,105,93,105,99,97,112,74,109,95,104,113,100,112,98,112,98,106,119,105,98,106,104,110,110,107,111,93,103,108,102,113,103,117,105,96,98,104,98,112,106,110,100,109,107,109,110,102,106,103,98,108,99,117,94,112,102,101,103,100,97,93,96,102,94,115,120,102,105,97,105,103,120,108,99,108,94,102,98,92,105,99,113,110,109,117,99,118,113,104,100,114,107,133,117,100,117,104,104,105,104,104,108,110,99,115,117,100,98,116,105,102,103,115,103,105,113,115,106,90,91,91,108,109,101,104,109,112,120,103,100,104,106,112,101,101,111,119,104,94,113,128,113,91,111,100,110,96,107,100,109,100,84,113,111,118,96,105,107,102,104,105,104,119,105,113,106,110,112,107,112,116,108,104,105,102,105,100,110,96,99,98,107,94,104,104,106,103,109,119,95,102,107,115,105,98,109,139,116,103,102,107,107,96,107,110,120,124,109,116,106,99,111,98,112,114,117,106,104,108,86,105,106,99,87,102,111,115,121,106,114,108,107,113,120,107,110,123,97,104,101,93,105,104,106,119,100,107,112,96,103,107,111,100,117,107,119,112,113,106,116,99,107,94,103,102,117,97,104,93,109,102,110,101,95,105,101,113,106,104,112,90,103,99,100,113,108,115,110,107,105,101,126,95,106,101,103,105,98,112,120,109,109,108,99,92,79,101,115,98,114,110,112,119,117,105,103,109,113,102,116,102,99,128,103,105,111,126,130,128,105,107,151,168,177,204,236,277,275,303,295,278,283,280,231,242,233,240,200,171,183,140,146,143,138,120,121,117,94,96,100,120,95,111,95,78,123,106,117,112,104,105,121,104,92,61,103,104,105,100,108,101,105,104,113,111,94,97,116,103,97,105,93,113,96,99,102,121,104,105,112,98,98,110,108,102,117,103,96,97,118,106,98,107,102,112,97,106,98,100,113,104,123,106,104,116,109,103,108,102,111,92,115,121,106,121,97,100,105,114,104,98,112,105,105,127,87,116,114,109,104,112,103,109,99,105,111,123,72,119,100,107,95,100,94,120,108,133,106,110,105,102,102,98,91,109,110,101,100,111,119,123,114,105,100,98,106,109,109,95,110,91,99,101,92,99,111,106,114,100,115,105,107,95,96,102,103,109,103,118,116,103,110,100,103,98,115,100,108,104,102,105,110,98,107,102,106,101,102,108,110,102,100,106,117,123,100,102,116,100,122,103,101,103,103,98,81,103,98,104,103,104,104,96,112,111,90,109,109,110,101,105,102,111,108,101,107,96,107,119,108,106,104,111,108,110,111,106,99,104,101,105,106,99,103,111,120,109,96,104,104,102,98,115,105,108,108,104,116,105,95,107,102,103,96,105,107,106,100,105,107,105,95,102,109,107,104,106,105,112,91,78,100,93,93,99,106,104,109,115,109,106,102,109,92,104,97,109,98,111,98,112,107,120,108,109,104,98,101,105,108,101,114,113,98,107,115,96,101,102,108,115,100,96,98,109,111,99,109,113,97,93,99,94,98,106,109,124,103,99,102,90,102,97,105,94,108,105,111,112,109,102,102,100,108,102,99,105,98,109,109,107,101,99,111,110,100,104,104,104,93,96,105,94,132,87,107,104,136,98,97,124,99,115,112,123,105,104,106,109,95,100,117,107,114,117,107,111,107,97,107,107,109,105,107,112,98,104,107,104,104,106,102,105,95,105,102,100,94,117,104,97,95,108,97,101,112,104,96,86,95,106,97,97,77,100,104,124,107,104,104,107,113,104,106,111,110,115,103,102,99,99,113,102,106,109,109,116,113,99,102,106,96,101,98,106,105,106,116,98,109,113,91,106,100,109,107,84,128,110,95,103,102,115,100,104,103,114,106,110,116,100,109,125,91,105,108,117,112,107,108,107,112,97,109,105,110,105,109,106,110,105,113,107,103,109,116,101,99,106,125,111,92,103,117,110,104,99,100,107,96,93,101,109,101,102,110,102,105,103,99,93,99,100,106,98,100,121,117,105,99,106,105,107,118,113,96,99,125,100,100,107,105,96,106,104,102,107,104,93,106,111,94,99,96,96,107,106,116,105,98,95,108,109,96,103,99,113,109,94,120,105,107,108,110,117,95,115,103,107,98,114,98,105,107,111,104,106,113,96,104,111,104,108,92,101,100,115,97,110,108,104,110,68,113,97,100,105,106,110,109,95,101,113,104,113,103,106,95,99,102,104,97,103,110,104,109,100,97,96,98,105,104,111,85,101,114,107,110,110,96,99,100,101,109,104,104,101,100,99,102,108,102,94,102,106,105,108,114,107,113,119,105,107,106,96,95,108,112,106,105,95,107,97,92,83,105,98,100,108,104,114,108,95,105,110,100,101,110,110,107,95,107,111,108,105,107,94,104,110,102,117,106,110,100,116,90,104,123,109,98,110,96,111,101,117,99,108,100,102,110,87,96,96,103,103,120,108,96,99,104,94,97,102,101,113,104,100,101,115,120,101,108,94,110,120,101,112,110,87,112,98,111,104,100,104,112,100,118,124,101,114,99,113,104,113,96,110,96,101,113,110,113,103,109,103,109,113,116,114,97,113,105,111,106,99,102,108,95,110,102,103,110,108,110,100,103,100,97,101,104,111,106,110,106,107,105,107,108,103,105,98,104,93,104,92,116,111,99,106,100,115,106,92,131,110,113,100,100,98,115,90,103,95,119,109,100,104,106,109,123,112,111,103,112,116,96,109,109,103,92,107,91,107,109,104,106,102,106,110,117,107,107,100,110,102,117,103,108,104,100,114,97,113,98,92,95,121,113,94,99,107,105,115,108,112,108,104,91,118,106,93,97,104,111,112,100,98,88,90,100,95,104,97,96,106,97,104,108,95,101,112,107,102,108,107,109,104,111,98,100,104,107,107,113,103,100,100,89,101,119,80,108,105,112,88,114,104,104,103,96,95,94,109,105,99,117,109,104,120,103,103,108,101,104,87,117,124,106,109,95,100,106,109,120,101,100,84,106,106,112,95,116,104,98,103,100,143,102,102,96,112,111,118,100,109,91,117,104,105,98,102,117,112,100,104,102,97,107,108,104,103,112,111,95,108,89,107,102,104,108,103,101,99,104,93,105,92,101,108,104,105,105,107,99,114,114,92,100,113,106,95,104,119,102,100,99,94,103,108,89,114,100,102,117,100,107,104,97,114,103,96,106,112,104,92,103,95,102,96,90,109,110,105,108,98,108,109,95,101,101,93,98,102,102,95,119,126,114,94,98,95,99,103,98,97,89,106,113,106,107,105,94,87,97, +568.73175,97,113,122,87,90,101,106,98,113,108,91,100,113,117,104,84,96,102,114,119,115,112,104,100,103,110,100,100,95,115,112,107,104,108,111,101,101,95,110,98,103,111,90,97,94,98,99,104,98,135,100,99,105,108,104,93,105,96,112,97,100,96,117,98,107,107,91,98,102,102,96,94,103,95,106,110,99,112,108,101,99,96,102,108,115,98,105,95,106,119,113,112,103,113,101,95,113,102,106,103,114,106,101,83,100,101,89,102,97,103,130,96,105,109,113,98,104,107,112,117,99,115,120,113,107,95,127,103,110,114,104,109,103,100,98,111,102,113,98,95,107,108,102,106,108,109,107,106,103,110,99,106,104,119,112,106,100,100,119,90,106,122,105,106,108,103,133,100,122,111,102,102,104,115,116,104,101,105,86,100,112,106,102,106,111,104,99,97,103,105,99,110,119,98,107,108,109,107,121,101,103,101,113,111,108,101,117,108,107,110,109,94,101,104,118,105,127,109,106,96,115,108,110,103,104,98,99,111,90,103,111,104,106,110,103,104,114,108,103,99,81,107,105,99,114,101,112,116,110,101,101,102,108,97,105,105,107,111,108,106,96,90,109,103,95,129,104,112,101,99,105,102,121,118,102,111,108,112,82,95,107,108,84,114,107,113,96,118,116,112,104,105,107,106,108,114,106,110,104,115,98,111,107,115,100,108,109,105,93,103,93,115,95,105,95,114,101,111,95,93,107,96,106,122,101,98,98,86,114,94,106,117,93,117,96,115,97,109,94,93,112,96,99,99,107,102,117,113,104,109,110,105,108,104,105,98,109,118,115,99,103,103,108,108,105,110,110,117,106,115,107,90,116,111,104,102,105,104,114,115,135,109,113,101,106,106,88,109,111,94,102,114,106,111,108,102,117,109,101,99,106,101,105,94,99,102,96,106,110,108,127,107,124,141,111,105,109,99,106,104,110,96,100,108,102,104,101,98,102,106,103,94,107,108,106,106,110,109,100,107,102,107,109,96,107,100,115,113,101,95,108,94,106,112,107,112,108,101,104,106,95,107,113,113,112,108,111,114,106,117,116,108,115,85,114,106,102,108,111,95,109,110,113,99,100,95,134,112,111,106,109,108,106,102,122,103,104,111,113,102,111,108,110,121,107,113,113,117,113,108,95,112,102,104,112,116,95,98,119,108,107,108,103,105,103,114,106,104,105,114,104,110,108,100,104,102,105,115,108,117,101,109,97,100,110,107,98,101,105,106,116,102,105,107,106,103,112,103,102,108,105,103,106,105,118,103,101,106,105,94,98,106,109,122,107,104,104,94,101,103,115,100,119,105,107,105,108,120,90,99,99,106,103,108,107,106,106,104,109,116,108,105,109,117,99,117,113,107,115,112,103,100,109,100,111,101,120,102,109,105,95,109,108,106,110,107,85,102,109,103,107,116,105,112,96,104,112,110,101,114,109,99,104,118,101,107,98,108,104,108,111,103,118,109,78,98,95,100,99,99,102,96,102,98,110,104,102,102,116,104,108,111,109,109,96,102,98,105,102,101,109,99,126,120,106,109,107,115,102,105,124,111,109,125,113,107,105,102,103,99,117,102,102,101,108,104,109,100,122,98,116,109,115,116,104,108,106,92,95,101,122,71,105,117,96,112,102,113,91,94,110,105,112,102,104,99,94,94,110,117,113,97,98,95,111,100,103,112,129,94,115,101,93,100,96,112,100,95,104,104,102,110,102,102,95,109,104,107,107,81,116,113,113,110,113,117,109,101,105,103,103,117,107,132,110,107,112,113,107,98,109,108,109,122,109,106,107,112,117,106,112,110,103,107,112,104,107,108,115,104,112,107,104,108,116,112,114,110,109,103,103,98,106,111,101,112,105,104,120,110,108,94,107,110,111,117,107,101,108,118,113,110,114,102,119,105,113,115,107,105,105,107,121,101,108,110,105,98,97,111,110,110,99,106,111,114,105,104,105,108,96,102,108,115,101,112,107,109,115,103,118,106,118,114,109,106,106,110,106,111,114,128,99,98,110,88,113,104,101,106,109,136,105,105,110,112,89,108,98,121,114,113,111,102,101,102,99,108,108,121,112,116,112,94,107,104,105,114,90,106,103,119,115,94,98,105,122,98,105,117,96,107,104,106,105,115,103,114,108,115,112,109,121,104,112,97,110,111,106,118,109,114,104,104,111,97,100,106,108,126,97,92,120,105,104,105,121,100,109,107,121,99,102,99,109,107,103,95,102,100,118,87,105,91,97,96,100,108,118,106,121,105,82,114,113,126,112,104,98,114,104,114,108,111,126,102,101,112,100,111,112,135,108,110,106,116,90,119,114,105,112,126,108,113,134,125,123,145,152,183,256,237,256,284,295,292,285,299,275,207,238,220,261,237,186,182,162,133,182,132,128,115,129,115,103,118,99,104,111,118,105,114,112,108,110,105,115,118,107,110,109,95,109,112,89,125,100,111,117,95,101,102,98,108,96,115,105,99,125,105,106,105,101,95,91,112,105,103,108,102,110,125,102,112,99,97,117,117,112,104,104,113,93,109,109,96,102,101,101,83,101,116,107,111,95,104,107,106,78,107,103,100,102,107,113,102,109,106,125,105,112,113,106,113,108,103,104,91,112,102,97,107,105,88,127,96,107,104,102,108,104,99,101,119,112,103,100,95,106,112,108,95,78,102,98,111,110,113,105,115,111,102,113,97,98,107,108,107,101,113,111,103,100,102,123,104,103,92,105,103,106,107,100,106,115,100,101,109,108,90,110,112,105,102,107,111,105,120,111,102,107,100,115,102,119,110,99,105,101,120,108,109,108,105,101,108,109,103,104,105,106,113,112,97,101,106,119,106,106,113,101,100,113,106,106,102,108,100,107,99,116,106,69,110,94,91,100,109,95,94,94,106,103,98,113,95,102,111,123,104,114,119,113,100,101,85,107,103,102,104,95,102,108,116,107,97,119,100,104,111,102,107,97,108,112,103,103,100,105,103,118,108,105,102,119,107,98,100,108,116,106,88,100,106,103,95,95,106,112,95,90,87,103,93,106,103,120,123,115,108,111,110,102,102,96,115,90,110,99,106,111,123,105,107,103,98,92,105,94,99,93,98,107,105,99,120,95,98,107,121,107,109,109,101,103,102,109,105,112,105,95,103,107,119,101,103,100,104,108,111,111,104,97,102,95,112,104,106,103,97,97,102,107,101,110,73,110,110,89,117,112,96,95,103,93,96,106,97,108,105,96,117,112,106,105,105,105,106,124,112,85,103,104,100,124,103,104,101,113,105,98,95,103,100,103,104,121,99,103,111,113,102,90,103,105,107,103,117,114,109,96,110,104,92,107,107,99,102,107,98,104,105,97,100,116,107,102,106,112,109,106,83,108,133,133,101,102,96,109,94,88,106,107,110,95,110,109,95,94,107,101,98,100,117,102,98,101,107,97,100,108,113,107,98,116,101,102,112,104,89,106,93,113,100,96,89,105,104,130,96,112,116,77,103,106,102,90,93,101,107,115,120,114,114,104,100,90,102,102,106,101,108,99,104,89,107,116,102,100,114,103,79,96,102,109,113,98,104,99,96,109,93,107,113,91,112,104,105,109,107,99,94,98,108,94,102,100,109,116,101,106,108,111,97,99,91,107,89,106,112,106,110,103,115,111,109,102,96,86,113,98,101,106,93,97,101,114,111,112,75,101,103,94,99,112,100,120,107,116,106,99,102,96,100,110,105,105,102,96,107,111,109,95,134,104,112,111,117,113,105,106,82,104,106,98,102,103,105,109,95,109,109,101,112,104,112,104,77,103,111,114,122,95,113,105,114,101,110,102,95,103,103,106,98,112,103,112,102,102,113,111,100,103,98,111,101,100,100,124,103,106,100,100,104,123,90,101,101,103,127,117,110,107,111,109,113,105,106,98,98,108,109,111,95,103,105,99,100,114,98,97,100,94,116,120,88,98,101,99,108,108,113,107,106,101,100,98,114,96,102,106,95,97,91,105,91,118,112,110,103,124,106,119,101,104,111,100,96,99,96,113,102,94,113,112,105,101,98,101,112,109,99,106,103,119,109,106,97,111,89,113,106,99,99,103,111,117,96,100,112,106,88,99,92,108,94,99,107,106,98,106,95,102,100,92,105,97,114,110,101,107,94,94,95,100,101,101,100,95,104,98,108,101,110,104,121,95,103,96,87,101,125,104,97,107,102,112,106,104,97,112,112,104,109,92,106,104,113,99,95,113,108,109,96,95,100,103,106,101,100,99,99,114,113,104,108,100,105,100,111,115,106,95,99,91,109,109,102,94,109,108,110,109,98,106,104,96,102,111,99,108,99,110,86,104,111,105,107,111,99,102,89,110,107,95,108,98,92,110,101,109,112,111,102,99,115,107,111,117,110,106,98,95,109,104,101,103,112,117,105,120,89,103,101,107,93,105,97,109,104,109,96,110,102,100,103,107,120,105,102,93,96,109,106,92,110,98,106,105,110,117,97,115,106,105,110,107,97,117,104,109,98,103,109,122,102,107,103,103,104,95,98,106,117,96,104,98,87,115,108,121,107,87,97,121,106,99,106,96,101,105,109,109,117,99,99,107,107,91,107,105,106,106,106,107,108,100,107,113,83,105,105,110,87,108,97,101,101,103,110,100,96,94,106,104,95,121,105,116,99,106,95,113,111,95,91,106,102,117,105,124,97,115,107,102,100,95,102,110,95,105,107,85,100,113,112,116,104,118,106,109,107,103,107,101,101,107,109,109,111,90,113,90,112,116,91,88,84,93,82,109,96,112,107,103,91,102,101,100,112,113,105,102,107,106,109,103,97,103,96,126,112,100,109,97,120,103,113,116,99,119,97,108,89,102,100,102,104,96,94,115,99,104,105,107,123,111,108,94,89, +568.87268,128,100,109,98,100,101,108,103,108,109,109,99,104,99,121,103,104,116,95,111,109,104,97,108,123,114,97,110,102,113,96,123,97,109,107,103,94,106,107,107,95,107,97,100,113,110,113,97,113,116,102,108,106,112,108,88,98,104,106,104,99,101,87,123,113,105,87,109,103,96,107,102,99,101,102,109,101,100,104,110,115,116,101,105,117,97,105,109,111,105,124,107,114,112,104,86,108,112,106,98,100,104,108,95,90,105,95,112,103,111,108,107,110,96,101,98,102,108,113,109,100,103,109,113,103,121,117,105,113,110,112,94,106,116,113,101,103,123,106,88,109,115,106,102,106,99,109,112,93,110,100,103,117,96,123,93,105,100,112,107,115,96,102,101,104,91,103,94,107,103,111,101,97,101,102,104,112,110,104,97,101,108,101,110,106,105,94,92,103,83,79,114,103,91,103,99,112,122,106,104,109,107,96,105,96,108,103,113,104,99,103,104,116,116,104,91,103,101,110,110,106,99,110,105,107,112,103,111,107,100,100,103,130,100,112,125,114,97,100,106,109,107,103,102,104,102,108,101,104,103,99,101,98,102,87,102,104,105,107,103,97,113,111,123,99,105,97,103,107,103,109,118,112,109,114,108,106,101,111,95,104,118,108,70,105,99,103,106,109,99,106,110,114,110,111,95,110,102,102,100,104,108,106,130,93,128,106,115,109,100,100,103,106,106,110,103,107,113,108,104,106,104,125,109,118,106,111,92,100,106,113,97,118,94,98,109,102,106,100,102,104,106,91,108,108,105,111,102,107,107,109,103,105,103,112,114,107,128,98,118,118,100,117,90,101,103,104,106,109,128,99,111,103,111,101,99,101,106,83,106,112,128,102,102,120,122,105,99,107,103,107,101,107,107,103,108,121,102,107,116,107,107,102,108,117,102,105,109,101,97,113,104,107,108,104,99,103,107,100,99,110,98,105,119,100,112,108,106,99,109,95,110,97,96,109,92,100,105,101,109,85,110,96,107,93,99,99,96,107,105,110,114,111,115,101,106,122,112,104,106,106,108,103,104,88,100,80,99,108,105,110,110,103,109,109,102,103,112,104,118,124,102,113,101,101,115,107,103,104,113,116,98,100,102,105,108,103,99,107,98,108,99,107,107,108,100,132,105,106,110,115,117,109,109,108,116,109,105,105,109,110,105,107,112,100,114,102,107,112,107,104,103,116,90,97,116,105,101,111,123,99,103,96,119,116,109,100,108,100,104,103,109,105,106,105,114,99,110,103,109,99,110,93,105,110,94,115,115,103,98,104,100,111,105,99,101,125,109,115,107,111,117,113,113,95,101,109,117,100,93,108,117,115,107,110,111,86,114,109,113,109,105,107,103,100,103,98,93,114,103,102,106,112,109,113,102,105,111,100,98,118,97,111,98,101,98,97,101,106,103,106,97,95,107,101,99,118,118,99,99,97,114,109,105,105,104,105,105,103,89,109,104,103,96,107,98,111,110,105,111,112,111,116,90,112,101,108,99,103,112,102,113,118,97,113,91,99,104,108,114,125,105,110,105,91,111,106,121,98,104,112,117,107,102,112,100,116,94,117,110,107,100,115,99,112,105,98,108,104,119,117,107,111,105,111,110,114,105,100,100,103,100,99,102,100,100,108,109,123,110,105,110,97,111,99,102,104,91,110,93,107,100,112,112,97,113,113,106,113,100,107,91,105,92,95,110,100,105,105,96,113,97,111,104,110,111,104,80,114,81,111,97,100,116,100,116,112,100,104,125,105,100,113,87,106,107,91,114,103,120,104,99,108,122,103,102,100,113,107,96,104,110,103,90,108,104,108,101,104,99,120,99,109,109,117,113,108,89,114,108,100,118,123,110,98,95,98,107,115,108,106,100,103,105,99,104,114,104,109,100,100,108,126,88,104,98,106,101,117,101,108,100,101,111,102,114,114,106,93,109,106,102,105,111,114,101,109,106,125,111,102,112,98,119,103,123,106,106,108,113,100,125,97,115,93,104,98,117,106,113,99,113,95,110,112,92,104,110,75,110,98,110,105,100,114,107,112,117,111,106,101,113,114,118,110,101,106,109,103,103,113,113,108,112,104,107,96,106,111,91,109,104,105,114,101,99,82,98,106,99,114,113,109,104,98,107,110,103,114,103,109,104,103,95,110,107,113,116,116,100,120,109,106,114,119,109,114,101,112,102,80,111,102,106,114,116,106,104,96,101,98,105,96,103,107,102,104,112,101,102,134,108,109,109,108,117,103,108,115,107,90,100,102,105,106,114,98,108,93,104,104,115,93,113,74,113,109,136,123,104,118,125,124,119,121,114,122,131,109,105,105,111,111,122,115,127,142,165,164,194,206,279,295,313,299,281,327,274,297,273,240,238,231,232,202,161,159,149,163,135,124,112,104,111,125,121,106,102,100,128,109,121,127,106,108,98,116,111,99,104,113,119,96,116,105,80,113,113,87,115,104,107,120,100,115,104,111,105,129,115,109,108,105,111,108,114,93,100,101,106,111,121,105,104,103,91,109,104,106,108,102,102,100,106,107,113,102,100,110,103,109,101,113,76,104,113,99,99,123,106,111,98,105,116,100,100,109,114,115,103,110,102,119,106,107,104,109,100,103,94,110,104,104,92,111,84,108,123,108,105,116,100,106,99,102,100,108,117,111,106,112,113,125,115,106,110,117,103,113,104,98,113,102,104,114,98,97,115,103,105,99,109,107,118,107,114,107,111,106,105,102,114,104,108,107,113,112,96,121,105,111,115,108,120,109,105,106,112,105,90,104,114,102,116,112,107,117,99,102,127,110,100,130,96,114,98,99,115,111,109,108,102,112,104,101,106,110,102,107,109,116,113,103,103,110,110,112,117,101,118,112,108,99,129,98,113,105,101,114,112,81,104,107,101,98,109,101,114,110,101,113,110,92,119,98,90,113,97,102,77,90,107,105,109,110,108,128,103,103,109,103,103,112,99,102,108,107,115,108,145,102,111,100,107,114,98,101,101,107,108,109,108,111,99,109,106,118,100,109,103,97,105,134,114,106,107,99,117,111,109,111,102,110,105,109,110,93,113,100,104,98,127,142,93,111,113,114,100,101,102,94,101,99,102,104,106,97,102,102,101,108,100,108,112,100,100,108,99,106,112,100,104,104,114,112,117,113,111,110,102,105,113,110,121,110,104,107,108,109,106,99,108,101,98,102,117,107,105,121,113,117,102,110,105,118,113,110,111,111,106,109,112,102,114,109,97,93,110,112,104,109,103,125,119,99,115,121,103,92,108,96,104,103,109,103,113,117,103,109,129,113,105,107,95,110,111,100,104,110,105,104,119,109,105,100,95,113,105,116,96,95,108,106,104,100,110,109,88,90,105,111,125,97,109,108,97,104,112,99,105,98,104,99,104,98,114,101,103,98,107,124,94,110,102,112,112,99,81,108,103,121,107,104,100,102,108,117,101,112,119,114,107,108,106,114,116,106,99,99,106,113,107,99,108,98,107,102,112,110,101,103,106,109,103,107,108,104,114,96,117,99,105,105,111,112,101,99,95,107,109,118,104,94,115,113,112,103,109,98,95,98,112,101,102,110,118,77,104,107,102,101,108,93,119,104,110,115,99,104,103,108,122,115,107,107,111,111,103,100,95,110,96,97,113,109,113,99,111,116,111,103,109,104,97,109,99,92,103,112,117,110,115,110,118,106,114,108,107,95,105,86,109,101,102,105,89,96,100,105,109,106,88,111,116,100,105,105,104,112,110,98,98,106,96,110,96,103,98,110,123,99,109,102,110,112,105,103,120,96,106,103,98,103,104,106,106,89,114,91,109,111,104,108,99,105,115,106,109,110,111,102,104,116,110,116,108,112,96,114,95,102,106,102,110,110,100,99,105,103,105,101,108,112,101,110,101,87,107,103,103,105,94,115,101,109,98,101,104,108,111,112,112,96,113,106,106,98,99,97,103,117,111,105,118,122,108,108,100,100,112,97,106,114,99,112,101,105,102,102,105,114,104,116,98,100,96,99,110,102,99,109,106,115,101,103,115,109,112,100,105,114,107,109,100,104,104,106,106,97,113,100,117,100,86,105,119,104,139,105,113,100,102,104,117,101,120,104,109,112,105,103,94,101,125,108,107,84,110,111,99,108,107,102,116,112,108,95,105,96,102,119,110,91,106,100,116,108,102,107,102,113,110,105,112,90,108,121,93,105,119,108,103,100,95,117,102,102,122,111,105,66,112,108,117,103,113,92,98,112,109,109,96,112,106,101,96,106,108,104,113,83,105,120,106,106,100,96,110,108,120,110,106,115,101,118,108,113,106,107,109,109,107,111,108,110,127,99,99,108,113,110,106,110,115,101,113,110,103,93,110,106,111,106,101,113,101,113,115,96,112,91,96,101,108,104,87,99,106,111,107,113,113,105,105,108,108,86,93,110,105,108,105,107,107,104,107,105,97,110,96,108,97,107,111,102,104,96,101,108,110,111,107,92,118,100,95,105,112,91,99,104,104,107,106,101,109,108,102,101,110,111,117,104,109,105,111,100,102,117,100,100,110,110,99,111,110,107,110,98,95,100,98,114,109,117,113,113,109,111,106,104,96,104,115,101,106,111,111,125,110,109,96,114,111,111,102,104,101,115,118,111,111,110,113,93,95,107,101,106,100,106,100,113,128,111,105,104,119,97,114,112,100,105,102,111,94,107,102,119,94,110,94,97,112,110,101,112,111,112,102,98,97,98,103,108,106,106,103,113,114,100,104,106,102,104,102,120,94,108,114,109,106,103,99,118,111,107,102,110,98,110,104,95,94,107,108,94,109,100,87,96,117,107,112,94,99,98,92,113,96,108,106,109,103,102,117,95,117,96,99,105,102,118,100,115,109,107,93,87,110, +569.01361,114,88,102,96,102,96,115,105,100,98,99,86,97,96,102,98,103,107,101,112,100,97,118,109,93,110,118,97,104,108,105,99,110,103,103,108,100,107,97,97,97,92,105,100,111,103,116,114,103,81,105,99,108,106,101,109,96,74,117,93,94,110,103,113,123,104,104,101,101,98,102,91,93,61,102,101,109,95,97,115,112,109,119,106,117,97,115,112,99,93,104,107,92,97,96,108,101,106,110,95,94,102,101,107,109,95,96,106,106,97,103,106,101,127,99,102,101,97,102,105,103,96,114,100,117,112,113,100,111,107,117,121,104,109,99,112,99,112,106,92,112,102,110,114,99,96,108,110,109,94,108,111,110,95,102,104,110,105,107,105,103,102,108,105,111,101,99,94,114,100,111,101,98,93,101,103,113,99,102,114,106,98,119,118,97,110,99,100,105,105,92,111,85,95,92,114,108,107,105,73,107,107,93,108,91,107,96,110,92,118,125,110,105,102,97,96,113,104,102,109,108,98,102,101,99,106,108,112,99,116,96,106,106,107,112,98,106,106,107,111,107,107,116,104,98,100,103,102,98,104,99,99,105,105,107,104,108,105,110,93,110,111,100,108,96,104,106,115,96,101,100,106,112,107,90,111,109,106,103,96,116,111,109,105,117,96,98,99,106,98,101,100,101,118,102,101,82,78,107,96,98,107,103,109,94,97,121,108,99,99,113,104,139,112,103,93,104,105,99,103,115,117,101,112,107,94,103,90,110,106,118,91,104,97,101,109,104,103,110,101,103,103,105,103,103,99,103,108,110,100,105,100,106,110,113,86,115,118,112,111,116,107,102,103,95,109,94,120,107,96,100,107,110,96,94,99,120,101,99,108,96,104,105,108,107,106,102,104,100,101,107,103,95,101,106,98,100,109,100,115,101,101,105,98,116,106,94,103,111,110,104,107,102,104,107,100,99,105,98,106,107,105,98,95,102,107,105,98,105,99,104,101,97,105,97,98,110,107,102,100,109,112,108,103,101,99,117,101,103,101,103,102,113,114,105,97,99,97,111,86,92,104,111,115,105,109,96,113,102,99,117,111,97,107,106,98,107,103,108,103,115,106,100,105,98,116,113,110,109,109,124,117,102,90,109,95,106,96,113,110,108,110,105,123,104,104,104,84,109,95,112,107,94,122,115,107,113,105,116,102,107,106,109,100,105,94,110,90,96,105,99,113,117,102,115,102,99,104,98,104,125,100,104,102,111,104,102,108,101,103,114,101,104,117,95,104,122,104,103,106,103,128,99,112,106,107,95,109,79,102,106,102,104,107,117,106,98,114,107,96,104,106,104,95,101,96,109,110,109,100,103,99,112,106,112,119,98,107,95,111,103,88,100,101,112,109,101,101,103,82,93,106,108,98,109,105,99,103,104,115,103,107,114,99,113,108,99,105,104,112,107,98,104,110,98,94,101,118,107,83,96,99,102,97,104,101,107,98,106,110,103,107,95,113,103,126,104,95,97,121,106,102,110,110,94,98,110,95,106,105,115,113,113,112,106,113,93,113,98,97,93,104,110,98,109,96,103,104,106,92,107,108,104,97,109,103,97,106,101,99,104,90,105,112,121,99,100,107,102,115,107,108,87,98,98,121,142,98,104,100,114,100,100,117,109,105,109,111,103,98,103,108,106,103,118,107,106,99,106,111,111,100,90,99,100,102,116,115,107,106,117,101,99,103,106,93,105,96,106,93,107,103,101,94,103,95,91,124,100,96,110,108,101,98,104,112,108,101,96,104,100,100,104,111,102,120,98,121,117,110,100,94,108,103,99,107,103,106,112,90,101,114,104,104,111,110,99,102,72,106,98,113,94,102,103,105,127,111,124,84,112,102,105,112,125,102,105,98,109,106,107,114,108,109,112,121,111,108,103,102,104,110,110,98,91,108,105,109,103,110,108,95,100,99,113,94,104,115,100,108,94,102,109,111,104,111,107,107,107,111,105,111,93,105,104,106,112,105,103,100,111,109,101,109,116,106,110,107,110,92,133,106,91,114,110,101,101,110,101,106,112,110,103,108,106,110,97,122,103,105,111,108,111,98,113,99,95,102,94,100,110,106,105,77,108,118,92,114,107,109,109,104,104,122,111,103,94,98,101,107,103,116,106,98,104,100,100,79,95,103,110,105,112,110,101,103,109,107,86,118,113,131,105,107,72,80,103,106,110,95,117,106,97,112,103,109,101,91,105,104,96,109,106,97,95,108,99,108,105,101,102,91,95,107,92,95,98,96,109,111,97,108,98,101,112,113,113,99,87,102,95,109,82,103,98,115,112,113,111,104,113,104,114,111,102,107,121,108,103,116,126,123,126,111,115,109,120,141,195,197,216,258,259,268,355,310,300,264,221,259,225,249,194,202,178,166,158,169,141,127,130,117,104,108,104,121,76,117,96,115,107,106,115,118,111,108,113,95,112,103,94,115,100,95,99,107,113,108,104,104,111,102,110,99,99,106,101,103,106,107,113,99,103,104,110,98,105,97,103,102,107,110,109,102,115,104,99,102,103,106,98,120,95,108,93,105,90,100,103,103,97,95,108,112,103,101,98,107,100,105,107,98,117,124,128,94,101,99,109,101,103,110,113,101,103,101,102,100,92,110,95,104,104,97,103,110,105,117,102,94,95,103,104,124,103,99,109,104,113,107,117,107,108,107,113,113,111,109,103,97,104,109,97,107,102,115,106,96,100,117,109,103,94,107,110,117,108,124,115,103,118,105,106,110,109,106,115,101,106,104,102,110,108,110,100,98,96,104,109,105,108,105,105,113,101,99,108,112,115,104,99,112,113,108,104,110,112,101,106,116,106,98,111,92,100,99,113,103,103,85,122,99,99,99,118,133,99,99,98,112,103,94,98,129,106,104,109,108,118,108,105,110,109,106,98,108,110,109,113,90,111,105,121,101,124,98,107,116,106,107,107,95,110,102,105,100,110,110,94,112,98,105,101,92,107,116,101,102,107,109,104,106,101,109,106,113,117,102,103,69,88,97,103,110,111,107,107,109,106,112,106,107,104,112,110,89,116,112,101,98,112,106,103,105,101,106,104,111,107,90,104,109,116,105,108,117,87,104,106,100,112,104,105,119,111,111,96,102,100,100,105,107,104,107,101,98,104,104,100,88,89,101,92,108,104,112,110,103,103,89,98,95,97,94,119,103,102,99,108,112,95,110,100,104,99,105,106,119,110,97,94,109,84,108,123,102,110,107,102,118,102,96,92,122,109,96,92,115,108,100,110,97,110,95,99,112,106,108,101,107,94,108,93,99,108,94,113,103,104,102,117,105,113,100,97,108,105,82,110,108,91,111,98,106,96,98,108,105,105,109,71,108,111,99,92,94,84,100,103,101,105,98,106,109,106,105,110,102,108,95,94,94,105,106,100,95,97,100,106,104,99,105,114,111,99,87,103,109,99,99,110,105,94,106,111,93,117,103,110,102,110,103,102,98,110,88,111,109,101,110,121,111,113,113,113,109,113,104,113,101,127,91,100,111,91,114,98,103,94,103,111,106,104,99,107,115,103,103,110,111,104,102,105,106,103,108,86,103,108,110,97,95,112,105,99,99,109,107,105,120,104,98,114,95,102,95,95,109,119,118,103,103,101,103,100,103,112,76,106,98,94,102,115,104,96,105,120,106,88,100,95,108,110,111,111,100,107,108,114,102,126,112,108,97,99,109,96,97,103,100,88,118,98,107,107,112,105,106,95,96,104,101,111,117,124,94,104,101,101,104,105,96,99,98,102,105,111,92,96,96,97,116,96,110,115,102,113,109,100,117,96,104,101,106,111,102,116,111,87,100,96,104,102,98,102,111,111,109,99,105,97,110,88,102,101,108,109,106,96,124,102,105,99,115,99,105,92,105,100,95,116,102,105,109,103,92,107,111,106,106,126,105,108,107,96,111,103,110,102,106,100,113,105,95,103,108,106,99,97,99,110,117,92,106,107,95,110,103,98,106,99,107,93,96,112,106,107,102,106,115,111,91,101,112,118,112,110,109,111,97,101,106,117,113,106,115,100,98,119,107,127,111,95,116,101,105,99,111,106,111,133,111,107,124,92,105,105,102,125,95,90,113,107,101,72,114,111,111,98,103,114,96,105,102,97,124,111,103,103,107,105,93,128,107,90,92,108,110,108,110,110,110,115,92,102,120,104,97,117,99,104,95,111,107,115,99,108,103,107,114,103,103,102,117,123,102,124,109,108,95,101,87,109,101,108,103,107,106,104,110,106,108,103,106,103,110,102,104,105,96,97,105,99,111,99,100,109,118,106,123,109,90,105,90,103,113,102,110,96,119,102,103,98,110,98,121,97,108,109,107,98,99,110,108,107,110,99,106,114,111,92,99,117,95,104,105,93,105,97,87,105,91,111,108,94,105,92,107,105,97,112,102,104,115,108,92,97,104,112,118,100,102,92,101,117,96,111,100,107,110,103,106,112,96,90,72,112,91,104,99,94,96,104,115,105,107,104,92,97,106,104,98,97,108,100,101,105,100,104,113,100,121,110,101,101,102,98,98,114,107,101,109,107,99,117,102,104,95,105,108,92,112,116,109,112,100,112,108,103,108,105,99,102,98,105,110,99,123,92,99,116,107,102,104,103,103,107,107,104,106,99,99,102,106,91,119,102,104,104,89,95,95,101,97,120,100,109,98,109,105,111,91,109,96,109,117,104,110,114,115,101,97,96,109,100,79,108,110,103,98,111,109,108,100,85,103,97,109,101,113,98,94,114,107,100,99,98,127,100,112,94,99,110,109,109,103,99,107,94,115,112,105,101,109,105,109,100,99,100,105,116,103,103,104,97,101,103,106,110,108,98,100,106,107,98,98,99,107,109,99,106,100,84,100,101,105,105,88,60,93, +569.15454,99,105,100,100,99,111,101,101,90,118,93,106,99,126,109,97,104,109,109,105,110,110,88,108,107,109,111,110,109,117,100,109,100,94,101,113,102,92,109,122,100,103,111,105,114,106,98,108,102,112,102,110,116,104,102,104,109,96,114,111,112,111,92,124,109,108,108,92,105,115,113,105,98,100,98,97,101,101,99,115,99,93,108,106,87,103,98,104,102,106,99,113,101,96,93,87,104,93,108,115,116,99,105,108,101,105,101,108,104,110,98,97,91,98,104,107,97,107,96,99,95,93,100,121,101,115,109,129,102,110,104,104,87,94,108,104,102,98,96,99,111,106,110,103,107,109,105,120,96,99,87,93,113,129,104,104,104,100,101,100,103,107,102,96,95,110,109,82,96,105,103,100,112,103,106,112,103,114,109,102,105,75,106,104,90,99,101,98,107,95,101,108,109,109,101,109,102,107,94,101,102,100,103,110,111,101,105,89,107,118,94,116,114,111,98,100,96,100,105,117,101,113,109,101,106,110,88,105,107,99,109,98,109,111,107,103,107,108,109,104,96,113,109,103,110,94,102,107,107,115,123,104,96,107,95,88,105,100,100,104,110,104,107,102,97,118,99,106,102,108,104,102,97,106,105,108,101,103,90,101,115,108,104,111,101,121,97,105,97,97,99,102,95,120,105,120,104,106,110,102,108,107,92,88,99,108,104,120,107,113,97,94,108,106,98,105,108,104,101,114,84,96,107,106,100,117,103,98,112,99,117,113,99,111,109,96,111,105,97,102,116,106,95,106,112,99,96,114,106,127,102,99,101,101,107,101,115,106,106,109,106,105,92,89,104,95,100,101,117,106,95,103,100,103,113,98,110,102,109,99,104,117,102,106,102,92,104,93,105,111,111,95,106,102,102,105,108,100,100,114,108,110,113,104,112,108,104,98,106,111,92,100,109,108,105,101,99,110,116,95,114,108,95,113,102,99,95,98,105,111,100,105,123,106,115,110,92,108,102,104,105,108,107,93,90,114,106,91,98,110,101,111,116,114,108,110,104,106,107,101,108,96,104,105,104,114,96,102,104,108,108,112,111,109,106,100,100,106,109,106,112,99,110,109,100,105,108,134,95,99,108,112,104,105,84,107,109,119,104,103,108,106,98,103,101,105,117,107,104,104,108,115,108,107,109,106,106,107,94,99,101,106,99,108,98,99,99,104,112,95,96,108,113,104,102,107,104,104,103,108,106,96,82,102,103,103,93,101,106,103,109,112,103,70,109,118,97,105,100,93,104,89,108,115,118,115,108,108,115,101,97,105,107,99,105,102,96,94,96,95,106,110,90,112,95,104,113,108,105,94,103,67,112,105,113,104,102,102,112,120,100,109,107,94,106,100,109,92,109,110,99,98,114,101,106,100,103,110,116,102,111,104,113,98,101,104,102,91,108,111,108,110,93,109,99,110,111,100,103,112,114,87,103,111,107,110,100,103,100,107,105,87,107,105,108,102,109,102,103,111,104,102,105,107,86,110,99,102,128,99,113,107,108,100,100,107,98,101,106,97,112,102,100,96,99,112,102,112,100,101,97,103,99,113,105,95,93,105,102,93,111,100,89,108,93,102,99,118,113,107,102,101,106,109,98,103,105,108,115,110,92,99,104,105,109,94,110,107,101,114,103,97,111,114,112,102,105,102,111,106,112,100,112,110,114,104,108,115,96,107,113,103,107,100,107,99,111,102,111,102,104,106,97,96,91,108,102,101,101,109,100,94,96,105,101,91,107,102,97,116,108,105,104,104,98,106,101,95,116,100,101,122,102,116,107,93,108,105,116,112,96,99,90,109,113,115,109,96,107,87,104,99,106,110,108,104,102,103,97,97,117,104,88,111,108,117,83,101,114,93,96,84,93,84,102,105,99,101,103,96,98,107,108,118,102,108,103,100,105,95,107,93,101,102,107,89,105,105,106,106,93,94,106,104,103,100,104,109,112,108,111,106,109,108,96,114,109,116,122,113,111,92,117,117,120,105,105,111,93,109,101,109,117,111,98,109,104,111,103,119,117,108,105,95,107,105,107,108,114,101,103,107,103,96,100,95,107,110,101,107,110,105,110,106,99,95,100,104,104,112,100,112,115,112,100,116,105,122,96,103,110,110,105,111,109,107,115,104,110,109,96,96,103,110,114,105,88,91,102,120,109,124,100,112,112,94,95,108,103,105,97,99,99,130,78,110,104,100,135,94,113,110,111,105,93,109,105,99,102,102,108,99,111,105,105,105,130,93,98,99,109,106,116,93,115,109,101,88,105,105,103,100,113,97,113,115,111,98,113,117,95,111,126,112,99,95,102,107,113,115,111,104,124,121,146,119,123,146,185,186,205,266,238,310,313,254,262,301,267,256,241,259,211,191,214,172,150,150,129,123,118,114,123,124,102,107,112,118,109,113,104,110,103,108,102,124,111,104,125,104,98,97,111,111,100,101,105,104,128,114,121,110,118,111,98,111,103,102,105,115,107,98,111,106,94,110,119,110,83,114,112,113,100,106,106,109,107,108,102,106,107,99,100,107,104,100,102,101,99,95,108,107,91,114,71,117,110,107,107,104,111,101,107,114,100,113,106,111,108,98,114,105,121,97,116,102,108,102,108,117,118,89,99,90,103,99,114,102,103,86,111,97,108,106,96,113,105,91,137,106,107,109,101,107,102,100,114,113,98,109,105,95,105,95,106,103,112,113,105,99,105,95,98,108,105,111,123,109,116,106,106,124,115,113,108,102,111,102,99,85,105,112,126,105,103,102,107,102,105,115,131,103,106,117,102,97,113,111,137,100,103,111,111,99,109,106,112,119,103,104,110,111,99,99,109,103,95,101,100,113,106,101,95,99,102,96,112,112,102,107,112,126,90,101,109,97,106,101,111,102,111,109,116,101,105,113,113,105,98,114,105,112,112,108,104,113,100,108,114,117,99,99,101,102,112,115,108,102,107,117,98,115,103,110,113,120,127,111,109,100,109,108,110,116,109,103,117,96,101,98,106,109,103,105,112,106,111,102,97,110,115,103,113,100,96,103,123,107,103,106,87,120,104,104,105,105,111,98,118,102,109,109,108,98,114,105,107,104,113,98,107,105,105,113,111,100,99,116,115,105,106,98,96,102,100,106,95,106,102,110,108,103,96,112,117,115,105,109,101,105,108,110,108,114,112,107,109,108,103,113,111,101,108,101,97,101,116,121,99,106,115,112,105,98,120,101,94,103,113,101,111,120,116,116,104,103,95,111,105,102,105,103,115,90,113,112,111,97,105,98,95,102,104,73,103,99,114,110,109,99,109,112,105,104,101,123,99,73,113,117,110,107,105,109,103,95,115,107,109,115,125,102,106,113,102,91,106,96,102,99,124,107,103,113,110,102,111,106,105,95,111,123,103,116,99,107,121,110,95,105,103,106,113,102,105,97,104,103,94,101,102,118,101,99,97,103,108,109,113,100,108,113,86,97,106,101,106,107,104,100,102,111,100,111,107,96,104,104,113,107,95,107,104,110,105,98,106,98,107,102,97,103,104,92,97,108,104,108,109,109,111,91,105,116,98,99,104,107,106,93,95,99,103,116,110,114,108,103,95,97,96,97,112,103,106,83,95,112,106,111,107,103,106,100,95,93,110,120,94,116,113,101,100,109,105,109,97,106,102,116,103,102,105,91,84,105,121,94,108,100,102,116,114,111,104,119,105,111,93,99,104,99,114,105,105,98,107,109,116,113,108,109,109,85,113,108,110,108,100,87,99,104,102,96,100,115,117,104,110,117,101,106,95,117,105,121,105,102,102,105,107,103,110,101,106,113,117,114,92,111,96,117,112,98,106,109,111,104,114,105,108,104,106,111,117,113,109,97,102,92,105,111,104,100,106,121,95,75,86,103,112,90,108,112,103,106,109,103,107,107,102,86,106,107,92,105,102,103,79,89,98,113,99,104,102,105,91,99,102,94,103,104,104,97,103,102,106,103,94,99,94,90,110,105,105,104,107,73,99,101,93,104,96,112,108,112,125,91,98,104,106,112,106,90,134,110,109,113,105,111,109,108,112,109,99,104,100,103,107,99,124,105,110,110,111,109,112,110,104,88,96,105,102,101,97,113,102,98,109,98,109,93,97,106,96,114,103,104,103,114,103,91,103,90,119,99,109,102,102,107,134,118,111,119,107,108,97,109,104,108,115,106,106,111,102,103,116,101,100,112,120,108,106,96,96,87,111,106,95,109,98,100,109,109,104,100,97,102,113,111,103,103,120,100,100,107,100,102,106,106,107,102,108,102,99,105,102,116,117,111,103,101,105,117,104,105,104,103,94,107,108,105,106,119,106,103,109,105,105,108,108,98,109,99,105,106,98,101,113,105,102,112,100,113,100,106,102,121,110,104,105,96,107,110,111,108,105,117,102,91,119,104,108,95,100,97,106,95,107,103,102,109,110,109,108,90,101,95,117,113,98,94,101,106,120,98,85,108,102,107,100,104,92,111,112,106,101,100,101,98,110,84,102,124,104,101,102,100,95,116,105,112,100,101,106,100,106,112,112,95,109,98,109,102,81,111,105,99,94,102,112,83,96,110,104,92,111,113,103,107,112,84,114,115,91,106,94,108,86,108,108,114,111,124,114,101,116,103,104,115,109,98,94,102,102,100,99,104,110,99,101,100,111,101,122,103,115,100,105,93,107,116,109,107,98,112,101,93,117,87,97,116,101,100,90,109,108,99,112,89,108,98,91,96,95,94,97,103,98,103,104,108,93,111,102,70,104,117,90,117,114,102,117,105,107,106,107,100,100,94,106,94,101,105,102,109,100,105,98,103,93,123,93,91,96,94,102,96,100,98,117,101,108,107,102,98,109,109,108,108,131,111,94,108,104,124,93,97,98,95, +569.29541,113,103,99,98,95,113,94,118,112,99,102,99,88,112,109,103,99,110,94,99,128,100,110,109,86,90,111,115,95,113,104,116,103,102,107,103,133,96,103,103,91,96,88,99,108,93,93,105,105,117,87,99,107,103,99,99,102,99,75,98,109,110,117,98,103,107,95,89,96,103,114,110,97,104,105,108,104,101,104,111,106,119,103,110,104,97,103,107,102,93,108,103,105,108,110,90,104,102,108,94,103,103,104,92,90,100,96,109,90,93,98,80,100,93,100,106,110,106,95,110,118,108,95,107,109,120,99,89,106,112,108,111,100,104,107,106,94,104,109,93,96,111,120,89,86,105,110,99,95,84,105,117,105,94,95,104,97,89,100,88,102,109,104,106,97,93,105,80,102,103,103,93,136,120,108,99,108,92,111,102,105,107,113,104,99,107,86,100,107,97,106,110,103,112,101,88,86,97,92,97,93,110,107,101,103,94,96,105,100,100,99,116,113,106,104,86,102,109,94,106,103,114,114,108,98,103,114,112,107,85,110,109,95,110,110,108,117,104,88,102,105,102,99,100,97,108,100,105,101,109,97,99,105,102,101,103,100,95,93,105,106,107,105,92,104,107,119,107,103,106,113,105,107,108,109,105,99,115,101,109,98,114,101,97,100,106,102,106,116,105,106,110,103,98,113,117,108,102,105,94,97,96,102,108,105,121,107,97,105,119,99,108,102,108,68,107,110,106,101,106,109,100,110,108,122,107,100,94,108,103,104,95,122,111,121,103,108,103,103,101,100,112,96,90,110,107,113,95,109,104,114,103,102,101,114,98,104,111,104,105,103,109,103,96,105,99,96,113,99,104,104,103,108,107,100,101,104,86,92,117,101,101,102,101,95,104,104,97,106,100,106,112,109,112,105,107,102,102,97,115,104,107,100,113,106,99,104,105,109,101,96,93,108,100,102,99,101,98,93,105,107,104,92,102,108,88,92,99,100,113,102,111,110,116,106,98,108,113,103,100,107,106,111,107,101,94,98,101,112,110,105,109,105,110,99,108,103,85,113,105,110,105,89,111,117,103,112,84,104,101,101,107,104,109,104,100,107,109,109,90,102,105,112,97,109,98,100,110,102,102,91,102,113,109,109,106,100,105,100,111,114,101,103,113,100,105,108,100,106,96,104,91,107,107,108,101,97,113,108,94,92,103,108,113,106,115,109,108,100,107,95,97,100,106,107,117,101,111,98,112,110,110,105,99,106,98,108,113,110,77,108,101,103,94,108,104,114,103,102,101,101,108,98,113,109,106,114,109,101,108,99,105,109,101,114,117,106,101,101,109,100,105,114,106,95,97,113,107,105,104,99,67,102,108,109,98,110,97,105,100,99,101,108,98,115,104,96,98,105,119,108,96,106,120,110,100,101,100,98,106,108,110,96,99,111,114,110,103,99,106,106,107,97,105,95,92,96,106,107,103,120,109,110,102,103,86,103,101,118,101,98,115,99,106,100,102,109,102,108,109,101,106,101,112,102,114,113,109,100,94,104,108,112,105,97,127,103,96,105,104,110,93,123,100,96,106,100,107,103,99,103,125,94,105,109,117,103,94,105,101,98,109,98,106,117,103,114,104,105,106,81,104,100,100,107,107,111,87,96,97,107,107,109,109,101,99,104,106,103,107,108,101,98,113,96,94,100,97,101,91,108,95,102,99,112,113,115,107,120,106,102,101,105,91,121,108,94,106,102,103,95,105,98,100,112,106,96,97,90,102,109,102,102,98,113,98,110,102,106,95,90,100,99,110,100,100,108,100,102,121,105,119,98,96,120,103,97,104,113,109,101,95,97,98,113,110,104,107,120,100,134,110,92,92,109,102,103,99,109,108,102,113,109,103,96,121,94,102,105,94,95,110,103,104,104,99,105,100,120,111,104,126,124,102,91,95,111,98,85,98,99,91,111,100,95,99,119,106,112,101,108,102,105,106,113,94,97,103,93,116,103,99,99,99,108,106,99,116,100,104,103,104,128,92,106,114,101,115,101,109,107,107,114,110,98,108,99,120,110,112,103,107,100,106,70,101,104,101,101,102,97,121,109,135,102,101,92,115,109,104,110,95,107,112,111,100,104,95,115,112,99,101,108,123,115,109,104,106,111,113,100,102,98,119,109,90,114,106,117,106,123,87,120,105,104,104,98,109,75,96,108,104,93,99,108,123,85,98,102,106,94,104,98,118,96,105,106,104,96,101,100,106,96,102,108,96,101,106,92,103,99,110,115,111,104,95,108,105,108,118,122,105,103,116,103,109,109,107,106,117,100,117,91,114,112,120,117,110,108,109,97,95,106,95,93,114,113,92,109,109,131,119,128,112,121,118,127,152,190,205,218,265,253,294,258,299,255,259,284,235,232,253,231,207,211,167,158,134,144,138,112,144,103,111,104,73,110,103,103,101,101,112,108,106,111,103,115,95,105,106,103,97,95,93,99,110,103,107,114,111,111,108,81,111,85,102,109,88,100,117,102,95,108,99,97,98,109,111,110,117,113,118,108,113,109,118,117,100,112,70,110,98,111,104,97,110,101,103,102,94,106,109,118,109,117,84,100,99,110,109,103,93,98,114,111,105,99,94,103,102,102,108,110,116,100,104,98,125,101,99,96,108,113,104,117,101,111,88,122,94,109,95,103,109,98,118,99,109,108,116,110,100,112,100,103,103,110,99,100,108,110,100,106,97,100,101,94,90,111,107,112,111,110,110,101,68,103,102,101,109,99,107,98,96,102,108,132,113,101,105,105,111,108,98,129,117,95,114,101,105,109,117,104,114,99,100,127,110,101,110,112,103,97,103,114,104,105,102,79,109,98,108,107,106,104,90,113,112,105,130,96,103,104,115,96,96,98,114,111,107,112,102,110,97,95,97,98,103,97,104,106,114,110,97,120,105,106,87,101,91,106,99,94,93,111,102,103,95,100,86,101,114,104,96,97,100,108,107,101,105,97,103,101,88,111,100,107,95,102,98,126,97,103,112,98,113,107,104,102,102,101,110,102,114,108,107,99,109,106,107,105,110,110,101,112,98,112,106,120,108,102,98,92,104,104,94,104,112,103,110,103,119,99,102,106,102,108,100,108,108,107,106,94,105,116,99,113,112,105,94,98,100,92,98,98,107,90,96,112,99,94,109,104,103,117,107,104,94,114,89,109,111,105,92,121,107,99,101,109,106,101,115,106,112,106,98,103,103,115,104,108,113,96,101,98,106,112,98,103,110,102,105,110,129,101,107,104,109,93,102,107,115,106,119,113,108,102,104,109,92,109,100,103,91,96,115,115,104,108,102,111,96,108,110,106,118,93,96,102,111,101,112,96,97,104,108,95,105,111,97,117,114,111,112,106,107,102,107,109,104,108,99,95,112,113,79,103,116,95,101,97,105,109,110,84,113,111,97,95,109,107,129,117,98,91,104,109,99,99,95,97,104,100,115,105,91,101,107,96,98,102,109,101,104,111,102,105,106,107,102,104,101,87,113,107,108,112,102,90,91,97,110,100,106,104,109,108,105,108,103,102,86,107,99,106,95,106,95,101,120,103,106,108,107,96,99,112,105,106,90,109,101,103,96,109,107,110,110,114,100,99,100,112,103,111,92,84,105,108,100,104,103,109,110,101,106,109,101,93,114,101,99,83,99,90,102,100,98,110,100,109,119,101,114,89,100,107,96,112,106,114,104,113,118,112,95,108,103,101,105,106,91,121,104,98,119,102,97,102,94,106,103,99,103,99,105,111,107,98,115,100,106,104,105,97,105,103,80,102,104,95,102,96,98,104,107,101,112,106,99,103,117,113,98,100,110,107,97,99,109,105,110,105,75,109,116,110,102,82,95,104,107,82,99,97,94,110,106,102,106,102,107,103,112,108,101,104,102,108,103,112,102,97,106,103,106,100,105,114,84,107,113,104,100,102,108,106,91,96,107,100,100,98,107,82,108,88,96,98,98,113,102,102,112,107,104,104,103,110,115,105,105,104,114,111,103,95,107,97,101,102,110,101,111,108,116,107,104,99,103,104,99,102,98,96,101,103,98,105,104,104,98,117,111,97,103,100,98,102,76,108,118,109,112,108,100,92,113,101,101,130,100,99,106,108,100,100,100,108,97,97,93,95,109,74,105,102,123,99,99,119,94,96,97,100,92,112,101,94,91,105,115,108,100,107,105,117,98,109,110,106,107,96,100,110,98,101,106,101,103,98,99,112,101,99,93,103,107,107,105,114,104,117,108,112,110,92,99,103,105,107,101,97,100,111,119,102,98,102,98,104,127,95,104,92,104,110,112,106,101,100,95,104,99,107,98,105,105,101,106,113,94,102,108,110,102,99,98,95,108,111,103,99,101,108,117,97,105,103,93,91,115,114,104,110,106,109,96,109,100,106,93,102,116,104,88,91,110,108,106,105,101,100,106,105,105,107,99,90,82,79,99,90,100,112,98,96,102,100,96,104,103,101,88,107,103,91,108,97,101,103,121,91,107,102,104,104,106,100,105,102,102,103,94,103,99,103,104,109,102,95,94,92,102,107,106,92,105,112,101,102,110,100,100,117,104,108,107,98,102,118,113,105,110,106,109,108,78,103,106,115,109,106,116,101,106,108,112,101,106,102,97,106,105,117,108,84,100,134,107,90,108,88,90,96,111,109,113,96,92,97,97,96,104,124,104,103,108,102,96,121,106,120,97,105,127,122,87,67,107,107,97,93,105,99,106,108,101,98,115,118,94,93,105,98,104,108,109,114,99,98,116,97,94,95,96,111,113,104,110,96,90,107,109,101,99,107,98,87,98,102,101,108,100,115,108,105,82,102,113,106,110,87,87,94,106,99,99,88,118,93,103,111,100,103,98,108,105,109,91,107,120,98,107,117,99,84,104,96,101, +569.43634,117,91,78,111,87,100,93,105,94,101,101,107,92,103,97,107,114,104,97,83,94,82,99,102,99,104,101,101,96,105,97,104,106,107,100,105,106,97,108,122,90,88,109,99,94,117,103,106,110,98,105,79,94,109,105,94,100,94,113,103,113,97,102,91,105,94,105,109,108,101,100,107,99,95,91,96,97,100,107,85,99,96,110,94,100,93,97,102,110,87,104,99,72,99,80,67,91,89,99,100,90,101,113,99,109,96,115,110,98,110,98,100,100,99,101,104,85,104,119,85,104,109,102,108,108,104,115,89,122,103,113,106,103,98,122,97,94,106,114,116,96,87,94,104,95,107,111,102,98,91,104,104,99,97,78,101,106,86,108,97,115,96,94,103,111,101,107,102,101,99,105,110,117,112,106,106,96,94,109,78,96,92,93,99,99,116,105,101,113,100,120,114,103,108,112,92,110,109,90,120,103,99,105,103,105,105,103,101,109,105,110,113,99,100,110,111,101,98,101,101,112,111,99,113,110,113,105,105,109,97,97,114,99,100,96,99,104,107,108,99,99,104,93,99,99,98,94,105,97,105,89,111,110,111,93,114,92,107,94,102,102,102,113,90,101,113,104,103,103,97,98,101,111,98,103,98,100,100,79,100,104,109,94,116,105,105,97,107,103,100,96,113,92,107,99,110,101,102,101,110,98,103,115,109,108,102,91,90,101,100,95,111,111,98,94,100,95,105,87,106,110,109,116,110,99,109,108,102,103,105,100,97,99,117,99,102,112,88,101,107,107,107,89,94,103,105,106,110,113,101,106,104,109,92,99,104,99,125,94,107,97,103,94,101,102,100,109,116,111,110,100,105,111,105,108,110,114,98,105,109,110,97,106,103,101,95,113,91,104,105,111,100,105,103,107,111,102,105,102,107,105,103,105,106,97,102,97,107,97,100,101,95,111,105,104,101,109,102,106,100,103,105,96,100,134,104,100,105,96,87,105,99,109,98,96,94,93,110,101,91,108,99,100,99,105,98,106,111,106,122,104,117,106,118,118,118,106,113,115,92,107,102,107,104,107,113,113,109,109,98,103,110,100,111,94,91,98,93,99,106,119,100,121,100,94,93,109,117,96,112,103,99,103,95,90,96,100,100,105,144,103,106,97,100,116,105,96,99,105,107,99,104,106,109,109,107,109,97,102,103,100,99,108,109,114,96,92,109,91,108,94,102,104,99,106,117,94,91,107,109,98,107,95,101,107,109,104,104,114,117,104,102,100,98,101,114,108,112,109,99,102,104,101,109,113,96,111,99,104,89,108,115,117,104,104,107,83,99,106,99,114,95,114,107,109,106,104,106,101,95,108,98,97,96,107,105,102,109,110,105,111,111,91,106,89,101,101,101,123,106,111,94,102,113,103,99,97,102,105,107,125,111,117,99,108,95,98,100,99,103,107,99,99,129,100,114,76,103,115,103,110,101,103,108,104,106,106,104,103,113,101,112,112,104,102,114,120,130,112,107,110,90,104,117,98,98,112,105,87,76,97,112,103,114,110,103,99,101,109,93,105,101,106,97,107,103,102,118,106,99,103,112,108,108,112,105,99,105,99,95,100,90,117,111,103,99,111,98,88,99,109,92,106,100,98,91,95,101,97,105,106,100,90,100,111,89,102,108,104,118,108,108,104,115,99,87,108,101,100,105,113,98,102,109,110,110,107,101,109,104,108,108,113,91,97,87,100,94,71,105,102,113,101,105,103,91,106,95,101,109,102,98,109,105,112,103,103,114,100,106,102,97,90,103,109,106,108,92,93,106,96,105,94,103,123,103,114,108,103,110,102,100,91,104,116,105,112,110,109,99,109,111,95,113,110,107,95,104,108,107,105,98,102,112,87,105,99,113,109,104,102,97,95,125,86,111,105,105,105,106,102,108,123,98,89,106,97,109,111,111,101,92,113,98,112,99,107,111,102,103,100,98,103,101,93,97,106,99,110,105,96,103,108,94,102,105,120,103,110,101,107,89,96,107,99,105,107,112,91,96,104,112,109,111,102,104,94,108,111,96,107,114,112,95,104,107,96,110,103,104,104,109,117,98,110,92,103,111,112,109,109,92,109,102,100,107,107,110,98,102,86,110,96,98,98,98,89,102,102,121,110,90,100,96,100,111,108,121,105,105,90,106,107,105,90,100,111,96,111,103,112,110,94,94,103,101,88,93,95,116,96,100,108,106,91,101,105,99,104,107,105,94,111,96,103,107,103,96,109,106,103,100,104,112,105,95,98,99,98,111,112,107,98,108,76,93,96,106,88,115,120,98,112,109,100,104,109,98,109,103,93,112,119,102,116,115,113,111,120,109,116,133,111,112,131,119,135,135,163,257,221,261,278,276,283,310,268,273,265,268,222,237,222,213,184,158,158,151,155,132,118,115,109,114,106,105,99,98,112,120,94,106,108,117,99,122,108,106,100,91,99,108,113,105,103,108,89,102,112,111,117,98,100,100,99,109,97,116,107,113,113,121,113,103,100,106,87,106,99,142,102,114,111,107,111,101,100,106,114,110,105,114,91,104,98,105,91,115,107,107,107,109,110,119,106,116,110,109,109,95,108,81,97,103,114,105,122,100,114,110,104,101,110,112,106,107,99,98,114,105,92,96,100,96,109,93,103,97,111,98,113,104,125,117,105,104,96,99,99,102,102,104,101,101,103,110,122,112,102,111,105,115,107,103,98,101,119,98,109,108,104,112,110,107,99,109,102,104,103,103,104,118,105,110,115,84,108,121,111,115,113,114,104,108,101,126,105,107,108,105,99,104,110,120,91,100,113,104,106,106,109,108,117,108,111,106,99,105,116,117,94,109,119,103,100,101,95,108,98,105,113,107,99,112,103,105,103,115,113,100,115,108,117,123,115,119,99,115,112,113,109,112,119,81,103,100,98,107,122,107,108,130,107,115,106,120,110,107,103,101,88,107,96,121,106,101,106,117,101,113,99,105,107,98,108,103,99,124,108,87,123,102,100,111,121,104,105,117,96,102,83,105,113,111,89,107,113,107,108,100,113,120,109,110,113,127,106,113,107,118,106,107,106,109,101,104,120,118,107,110,94,113,98,106,103,104,113,111,110,106,112,111,100,117,109,98,114,104,108,105,98,105,91,107,106,104,100,103,103,114,94,108,113,87,113,112,108,111,101,111,106,109,91,100,99,92,117,129,104,108,101,105,115,108,99,97,111,105,108,110,109,110,89,114,116,101,99,97,117,101,112,107,119,119,109,77,99,104,108,103,86,100,109,106,124,115,97,103,108,110,96,105,114,105,108,99,103,113,104,103,101,100,92,115,111,86,101,110,104,102,100,102,92,104,105,91,106,109,112,112,98,111,113,113,106,96,107,106,102,76,107,105,97,114,106,106,102,119,104,119,105,103,111,107,103,105,106,114,107,100,100,109,113,110,103,111,106,107,110,103,114,99,104,96,93,105,111,120,105,99,107,113,112,96,100,101,115,109,98,105,106,102,98,89,104,113,105,109,102,105,115,109,110,129,99,106,113,116,102,93,99,123,84,109,108,114,91,103,109,107,109,91,108,111,106,116,107,104,110,115,103,112,97,114,103,91,113,97,103,100,112,112,88,100,113,99,108,113,106,113,105,96,117,101,100,91,100,107,105,108,108,100,105,113,105,104,96,109,110,100,107,109,112,116,105,92,125,106,103,117,109,103,96,105,111,106,96,112,107,88,105,103,103,104,105,98,109,105,108,106,107,101,93,98,109,103,108,110,109,103,112,107,106,101,107,110,109,79,107,102,113,102,96,109,119,109,104,106,110,108,116,108,111,100,118,105,113,102,109,101,109,116,106,116,105,119,106,106,111,108,107,121,107,110,101,124,106,103,94,113,104,93,105,109,102,113,88,110,94,115,104,109,110,118,105,107,109,115,116,100,114,98,107,104,109,101,107,105,121,106,110,101,104,114,103,108,96,115,109,114,100,117,115,107,103,98,102,122,93,96,105,101,110,100,117,106,105,105,109,112,102,99,121,114,102,111,103,92,106,111,113,95,106,108,105,115,109,105,119,113,111,111,110,93,108,102,106,109,117,105,97,109,104,102,113,121,98,115,116,110,98,108,91,135,100,114,99,93,111,109,113,100,100,115,110,108,112,109,100,111,108,108,97,98,109,108,104,101,99,101,101,115,102,113,101,102,110,105,102,103,109,98,126,109,87,101,96,115,106,103,97,103,103,71,113,110,116,109,104,116,116,105,113,115,105,117,99,103,113,102,100,92,108,95,83,104,97,122,102,109,105,116,106,99,104,101,114,106,95,124,100,107,96,114,106,108,99,112,104,108,94,105,103,113,102,101,92,107,112,107,98,109,101,120,112,106,102,103,109,112,106,122,105,101,109,107,114,117,96,101,112,97,105,110,93,113,100,117,95,99,110,117,126,104,102,99,92,108,113,112,107,105,98,109,103,98,93,112,105,101,102,98,103,102,123,114,111,95,110,120,106,99,97,112,111,103,97,99,103,97,106,93,105,105,94,100,114,113,108,100,115,100,87,108,110,95,105,103,103,104,102,102,116,99,95,109,108,109,101,102,98,98,106,117,107,121,106,101,103,96,110,105,111,117,108,107,98,107,109,96,107,118,112,104,117,108,106,124,94,109,109,95,113,102,99,87,103,103,111,99,108,102,117,97,115,97,110,113,97,107,92,111,113,102,114,100,96,100,106,103,95,103,100,110,108,116,122,104,111,102,119,106,107,98,138,110,103,120,106,101,106,103,118,109,107,91,110,106,105,106,100,114,106,101,116,103,108,109,98,109,118,104,107,92,105,109,98,108,95,112,120,105,112,110,105,110,97,110,110,102,114,108,114,106,105,105,101,109,102,121,103,93,98,110,102,113,98,88,98,104, +569.57727,102,111,88,112,93,114,84,97,100,109,109,115,103,102,103,106,108,110,107,111,102,100,104,96,109,113,110,98,104,106,106,83,106,109,106,110,99,100,101,107,100,93,99,110,102,93,100,110,90,107,87,95,116,94,106,101,104,104,114,105,71,99,113,105,99,114,98,123,103,107,112,106,97,123,89,105,110,99,107,102,110,107,109,88,99,104,108,117,101,112,94,101,121,112,112,105,110,103,108,105,116,102,99,119,111,90,103,109,108,92,109,112,94,89,116,96,108,111,98,109,108,93,92,110,112,104,109,104,106,95,101,108,96,99,118,103,100,98,102,103,104,105,95,109,107,100,99,111,96,110,102,113,114,114,97,99,109,104,99,104,105,108,113,115,113,121,105,107,96,89,110,106,106,92,105,106,101,105,106,104,106,106,108,107,89,97,89,105,93,107,101,114,120,102,110,101,91,110,103,95,120,99,107,109,101,95,91,95,106,98,103,109,88,114,96,107,104,98,108,101,108,98,109,99,93,116,101,107,101,108,96,103,104,113,108,104,102,109,104,105,105,109,106,110,99,109,109,109,111,111,103,110,100,121,109,96,100,113,103,102,96,111,96,102,109,101,99,101,111,97,102,115,98,105,104,118,109,117,107,111,100,102,107,106,100,103,113,102,97,113,112,98,114,102,96,102,100,103,100,105,109,101,98,116,106,113,106,99,111,109,91,100,103,99,108,112,100,112,101,108,91,110,135,111,107,106,99,96,133,110,102,103,114,113,109,106,109,92,98,111,119,105,98,104,94,107,110,110,120,106,95,101,121,100,103,98,106,108,95,115,99,103,98,99,99,110,113,113,110,97,107,104,100,106,137,110,108,96,113,117,121,99,102,116,97,104,107,102,99,99,113,109,102,108,106,96,110,96,103,120,109,108,105,107,114,115,99,100,113,106,92,102,103,105,110,102,108,98,111,96,118,97,106,112,109,99,101,114,112,105,88,105,91,104,95,102,90,108,91,116,106,104,86,109,100,109,111,102,108,115,103,113,101,102,104,97,98,114,86,103,99,105,102,109,108,103,117,106,101,108,101,109,121,109,103,103,107,112,109,111,110,102,102,104,112,98,117,98,116,96,118,94,113,112,105,115,99,108,116,95,108,102,105,115,99,115,112,113,109,100,102,115,100,108,107,92,117,113,103,99,105,98,107,106,99,85,101,119,117,91,97,119,107,101,100,100,108,102,104,108,115,110,98,105,110,103,106,109,102,109,111,110,92,98,97,121,106,106,113,85,117,111,120,108,103,120,109,105,122,116,95,103,111,122,105,101,107,98,106,97,109,109,108,99,95,110,105,92,107,112,116,102,95,106,111,108,96,104,103,110,114,105,113,102,104,113,100,98,101,114,96,102,112,104,127,103,106,99,100,110,104,93,110,108,126,108,95,113,119,120,107,102,103,103,94,110,106,114,129,111,117,108,101,114,109,98,104,107,103,99,104,105,98,114,94,102,106,113,100,99,114,111,118,110,99,102,122,107,103,109,128,120,104,107,109,113,111,101,105,108,114,106,108,95,97,110,103,118,99,109,109,95,106,94,111,105,82,103,107,100,94,105,112,104,108,114,100,117,99,119,109,101,116,74,104,110,107,90,99,103,107,99,104,117,90,95,104,114,105,115,111,108,104,108,87,109,104,103,114,125,101,108,116,110,96,106,109,106,106,96,103,111,109,94,106,97,107,86,107,113,106,110,96,117,93,114,95,120,106,109,114,95,105,99,92,103,103,96,113,95,104,110,116,110,122,117,93,102,103,115,101,109,127,114,104,103,111,111,120,117,113,106,99,106,112,110,110,106,123,113,109,98,107,107,106,121,110,106,108,105,110,129,109,114,114,104,107,102,106,101,107,103,113,115,95,112,106,108,102,96,104,102,117,105,101,102,124,99,105,105,109,108,110,99,113,123,101,117,97,91,109,131,111,108,108,110,107,108,108,126,102,99,110,97,96,107,111,96,121,109,106,113,103,103,101,110,107,122,97,117,111,116,117,110,104,105,114,113,106,114,117,120,114,93,113,90,106,98,104,105,103,101,111,112,108,107,107,111,114,98,107,110,108,116,104,104,110,103,107,112,105,102,104,115,107,111,98,106,103,112,107,109,116,118,105,111,106,98,105,104,113,111,108,104,97,101,121,98,100,114,115,103,111,105,108,100,101,104,102,109,108,109,105,102,101,109,106,104,105,97,98,118,103,104,105,103,104,106,94,111,99,109,118,110,117,102,105,107,112,110,109,97,111,110,104,137,110,97,98,109,94,111,101,109,106,98,108,107,117,106,115,111,110,95,107,111,121,115,94,105,124,122,116,124,113,99,156,143,170,196,243,240,260,291,281,288,266,290,260,290,250,227,248,196,209,196,165,156,136,134,123,122,118,111,102,121,97,107,116,108,112,111,106,123,113,112,111,116,112,103,110,110,91,111,110,103,104,105,99,121,115,113,109,109,105,104,116,107,102,104,106,94,109,111,110,101,104,94,115,107,88,110,112,109,119,97,78,111,106,108,108,106,111,108,103,104,125,100,123,103,108,106,92,113,109,117,115,105,102,100,101,106,100,117,116,116,112,107,108,101,107,112,113,111,99,100,106,99,102,107,113,92,112,84,113,119,93,100,104,102,100,105,109,105,106,102,112,113,113,97,118,110,106,110,104,113,109,94,104,109,110,106,108,112,101,97,95,101,112,103,103,100,103,103,109,112,110,126,111,113,115,107,110,104,114,111,101,108,125,104,110,104,100,99,127,106,101,113,113,113,109,107,110,109,110,100,90,108,103,110,110,110,110,107,98,117,112,104,99,95,111,106,109,108,109,99,112,114,92,114,103,114,112,110,110,105,105,107,105,114,116,110,106,113,126,116,99,95,104,102,96,106,106,110,106,108,109,112,108,111,101,103,112,127,102,80,108,101,107,119,109,104,104,107,109,112,108,110,92,111,100,118,103,108,112,110,104,110,102,100,101,109,94,89,108,108,107,112,99,117,118,105,116,117,106,110,108,98,114,103,95,100,105,106,112,106,116,105,95,103,98,111,95,119,104,105,103,100,103,99,106,96,101,109,116,113,106,109,110,108,103,112,100,115,106,112,102,109,99,108,111,101,106,107,118,89,106,104,111,98,93,88,106,105,89,117,96,101,119,106,117,100,92,114,111,102,106,109,123,112,96,116,106,84,94,92,130,123,104,102,117,104,98,116,106,113,99,115,117,109,110,102,114,105,119,106,104,102,96,103,93,99,103,112,105,91,100,97,101,90,95,106,119,99,128,98,116,102,106,84,109,106,110,107,117,99,92,100,99,111,116,95,103,101,98,104,98,98,108,109,95,111,108,115,104,103,101,93,108,111,115,107,112,108,108,108,101,99,111,108,95,109,108,104,99,101,97,102,98,102,106,99,105,98,102,113,94,97,103,102,116,110,96,104,105,117,116,103,109,103,91,116,95,101,96,101,114,95,107,102,108,110,93,116,109,104,105,101,108,95,111,103,104,117,102,98,108,106,119,95,108,106,82,109,114,109,106,104,93,106,114,95,113,107,117,105,112,106,96,96,84,108,114,103,95,110,104,104,103,104,88,106,115,98,108,102,113,114,107,107,109,106,99,87,99,103,98,102,109,110,142,99,116,109,106,99,102,73,110,116,115,115,110,100,106,107,111,107,100,101,94,110,108,111,109,101,110,111,101,105,106,111,97,106,119,107,115,121,99,92,100,108,102,109,108,116,106,104,102,106,103,104,113,112,102,98,118,79,101,103,95,104,105,107,112,106,108,117,108,103,100,105,101,101,98,113,107,102,109,104,105,112,113,101,103,108,116,107,98,109,94,105,103,102,103,111,104,94,107,101,110,110,98,106,91,105,95,98,94,119,100,102,102,110,106,116,99,98,124,97,102,99,107,103,106,106,107,123,112,108,102,110,108,116,107,94,101,108,87,109,115,109,105,108,101,110,100,105,128,120,107,97,94,98,108,100,106,96,104,109,122,100,108,112,110,125,124,100,107,102,109,105,102,105,112,83,97,105,104,94,111,99,98,102,111,112,106,102,102,104,103,104,112,110,107,110,124,110,101,101,108,113,102,102,98,107,106,120,109,106,101,103,102,98,98,98,96,102,102,128,101,111,80,92,115,103,86,103,95,92,100,115,106,113,106,102,101,113,105,108,118,102,105,113,104,109,119,102,103,104,107,99,97,102,109,109,105,110,116,98,96,97,107,103,111,117,96,101,110,113,96,103,111,103,103,120,95,129,93,103,98,114,101,96,101,112,109,99,94,110,96,108,100,98,104,87,108,107,105,108,119,105,121,104,126,98,111,102,102,94,117,112,98,84,101,101,107,104,100,116,108,109,99,106,102,94,122,119,106,106,104,112,102,116,94,114,108,109,103,103,109,105,105,108,100,96,112,94,109,112,105,101,96,99,102,123,107,104,110,101,101,101,95,115,100,110,102,94,105,124,108,102,100,117,104,108,95,107,95,99,102,104,102,98,100,106,103,109,102,109,102,106,103,114,91,90,103,99,100,108,108,105,97,96,106,108,113,105,87,99,100,109,96,111,113,117,97,99,94,95,101,106,108,100,98,102,102,123,99,117,108,105,102,82,109,111,113,103,104,121,102,100,104,107,116,109,111,111,97,104,94,92,104,108,110,106,91,106,100,106,114,110,116,107,107,97,93,102,86,98,102,90,99,101,97,117,99,92,101,98,116,101,102,114,106,100,87,123,103,98,96,104,119,108,109,98,106,93,104,106,104,98,108,87,101,96,102,96,98,101,96,110,102,106,95,120,96,127,109,110,74,104,110,105,107,119,96,109,84,102,103,103,100,100,111,98,101,112,111,101,123,102,103,93,110,110,124,98,95,95, +569.7182,113,91,99,103,94,100,108,96,113,94,108,97,117,106,112,91,103,110,91,105,103,88,107,104,102,96,114,100,109,102,95,111,95,106,100,98,118,105,107,109,100,102,93,99,95,106,111,98,89,109,110,106,100,100,107,87,100,99,103,83,118,110,102,104,96,118,84,102,103,107,101,93,107,96,102,108,98,96,89,120,90,114,107,122,113,104,109,99,97,99,104,109,95,99,92,99,105,108,100,92,93,117,105,105,72,97,118,108,114,94,107,106,99,105,109,100,92,100,106,108,105,104,104,114,109,97,101,74,105,118,115,102,113,106,114,102,111,110,102,102,93,101,109,111,95,102,101,114,102,99,92,114,112,109,94,107,95,102,101,114,100,107,112,100,102,107,103,102,109,92,114,109,103,104,94,114,99,90,107,104,96,97,100,106,114,112,87,97,105,88,108,108,105,107,108,102,94,100,104,109,104,96,100,109,106,109,109,99,107,116,102,98,111,108,101,96,117,104,107,108,113,113,103,103,106,121,112,106,113,104,108,121,101,108,105,105,116,105,104,102,106,112,106,111,107,97,117,86,105,117,113,102,99,104,107,101,107,110,93,116,94,111,103,100,96,109,103,97,88,110,96,98,103,91,109,95,101,106,107,101,101,96,103,102,100,102,93,109,103,104,105,97,112,110,113,99,109,107,97,95,109,90,110,113,98,108,111,101,108,98,101,95,100,85,104,110,100,101,100,107,99,95,116,100,104,104,107,101,89,113,101,99,103,107,89,119,109,101,102,110,92,106,96,105,101,116,104,117,113,103,111,105,123,113,93,116,100,108,88,110,103,110,107,108,96,98,110,99,100,108,103,108,106,113,109,92,116,100,98,113,98,98,110,103,110,103,84,111,110,115,104,111,104,115,97,113,112,113,99,114,124,103,106,104,95,99,104,107,102,84,108,123,118,107,106,110,111,97,108,120,110,106,110,107,96,103,106,96,99,103,100,100,99,107,91,101,95,102,96,111,106,104,98,101,102,119,105,100,107,95,103,101,98,112,96,113,102,99,116,106,105,105,103,112,104,100,100,116,104,106,98,108,103,109,106,100,109,105,103,106,97,102,109,106,93,101,109,104,102,113,106,104,102,101,108,100,112,103,108,114,102,109,102,103,100,103,111,115,111,103,113,101,123,103,109,100,102,108,96,100,100,108,117,109,95,109,100,120,100,109,100,105,109,107,110,103,101,96,97,108,107,113,97,110,108,99,102,108,105,88,116,111,100,95,90,105,108,107,105,116,116,111,110,99,93,102,97,102,106,104,108,105,99,109,108,111,112,101,110,118,108,101,108,102,104,105,103,109,100,107,106,100,101,110,108,118,105,105,99,119,111,95,107,99,97,104,103,102,100,116,109,107,100,106,105,103,105,104,109,103,104,112,113,100,108,105,109,93,107,112,107,105,96,103,104,106,91,106,106,99,112,99,117,95,105,106,96,87,103,100,108,114,108,117,112,104,104,113,102,107,107,105,104,114,95,102,81,105,114,101,112,105,94,93,101,108,107,102,116,91,122,111,104,100,100,106,98,102,99,98,103,106,91,106,100,113,106,87,93,97,99,102,107,104,104,108,105,108,109,101,99,99,123,77,99,103,111,106,101,110,107,99,103,106,112,103,100,104,94,113,101,105,105,102,108,114,106,107,108,111,108,106,102,103,108,98,94,113,113,104,108,106,95,106,114,109,109,101,110,111,117,103,99,105,104,98,97,109,106,101,105,103,118,98,101,113,95,111,103,110,106,110,117,113,101,106,109,103,109,112,109,109,96,117,93,79,118,105,116,112,103,114,99,109,97,102,102,99,104,116,123,111,107,102,102,108,113,113,109,126,102,114,101,114,110,109,101,108,114,107,106,112,116,95,99,93,101,104,114,99,110,111,101,101,104,94,91,101,104,95,111,113,102,103,99,99,95,107,104,98,101,106,104,109,107,100,107,109,115,103,114,115,104,102,106,102,107,104,100,104,101,119,107,102,107,109,93,111,101,108,96,113,109,108,103,110,115,109,98,103,109,111,98,111,111,110,99,101,111,112,106,107,113,101,90,103,111,115,100,106,117,112,110,108,114,106,98,102,111,102,99,108,100,108,97,113,97,109,99,115,112,101,102,94,99,109,91,111,103,107,102,105,77,112,99,109,99,98,90,93,108,109,102,103,99,97,103,100,111,100,75,100,98,105,139,102,95,99,117,101,109,105,102,107,99,94,100,99,109,122,104,100,105,95,105,112,100,126,103,103,96,103,101,102,119,107,111,104,106,111,103,108,105,105,101,111,108,100,102,112,115,109,114,98,111,115,115,106,119,113,125,133,119,124,146,111,146,160,172,187,222,257,263,294,275,272,262,268,261,253,238,255,237,187,177,208,169,143,126,118,120,135,116,124,116,106,113,106,106,117,113,125,119,109,112,108,115,107,104,113,101,108,103,106,99,107,105,114,107,108,108,114,111,94,112,108,118,105,104,113,112,107,100,118,104,102,109,101,108,113,101,109,111,112,107,110,118,103,104,93,112,103,107,101,100,109,93,113,142,99,101,105,110,97,100,100,101,98,104,99,107,109,83,112,97,113,115,109,105,113,105,104,109,102,101,108,103,105,103,111,107,114,103,110,106,107,89,100,110,99,104,110,101,110,95,109,105,103,98,104,97,106,110,110,106,105,106,104,139,101,110,104,107,106,108,102,92,100,96,107,117,97,97,98,106,113,115,104,97,99,110,111,99,106,108,93,112,111,108,106,103,92,109,105,116,107,103,101,104,124,104,100,100,102,98,114,79,109,98,114,107,125,112,112,107,107,109,109,101,119,110,106,115,109,104,95,108,112,112,96,99,102,106,108,102,106,108,135,112,91,116,99,115,96,107,105,113,98,94,115,105,105,101,99,96,100,101,110,110,98,103,113,107,88,80,111,100,98,108,108,108,95,110,102,114,109,107,108,102,101,103,109,99,111,106,109,103,104,102,111,108,106,106,101,106,121,109,112,103,111,92,102,100,109,106,93,107,95,109,100,88,105,103,117,110,110,95,107,103,95,99,106,106,110,91,102,107,110,98,107,109,103,106,100,109,92,108,112,104,92,95,124,115,113,99,103,95,127,111,104,100,90,94,101,107,104,100,93,99,105,108,92,100,108,105,112,101,94,107,105,107,106,117,99,102,87,104,113,112,100,106,111,92,107,111,103,93,98,87,102,118,105,105,112,108,108,109,112,115,104,108,106,102,110,118,102,110,112,104,101,106,103,105,110,112,101,106,104,112,101,88,108,107,111,91,110,102,125,109,97,106,104,98,104,106,115,107,94,107,96,99,106,111,116,110,110,87,113,108,108,97,110,109,100,97,113,97,103,102,113,106,99,111,109,100,107,112,101,121,94,98,93,111,106,90,99,110,106,109,100,93,109,119,98,103,110,107,96,111,111,91,111,106,122,107,116,112,115,108,82,101,109,103,106,103,102,108,102,107,111,95,98,87,99,113,115,95,111,99,99,111,108,106,112,103,119,84,95,99,117,96,102,105,105,105,106,109,112,102,116,113,106,92,131,103,102,108,103,102,102,100,103,109,95,120,99,103,99,119,87,95,113,96,103,117,88,108,96,113,85,111,102,102,103,107,103,102,102,106,88,109,111,112,107,103,92,108,103,102,99,99,92,106,113,123,103,103,108,117,100,103,96,103,112,96,112,121,103,108,99,94,95,106,96,102,116,108,96,99,108,106,102,110,103,105,107,110,140,111,114,106,101,111,113,114,104,110,98,104,117,106,112,101,112,103,92,106,98,92,107,106,98,120,104,95,94,103,102,106,100,94,111,114,101,100,118,108,95,106,102,101,89,95,110,96,102,101,98,113,90,102,102,101,108,91,98,109,99,90,106,99,106,101,106,117,104,116,99,99,102,102,109,113,109,108,106,109,103,102,107,104,105,101,113,109,104,102,109,101,91,109,96,96,107,95,87,92,103,111,114,116,100,102,102,113,122,104,103,84,98,94,108,107,113,109,102,84,105,96,104,104,106,115,102,108,102,83,127,113,90,92,102,97,96,114,105,101,107,111,103,101,101,106,114,113,104,99,120,103,102,106,113,100,127,109,110,111,103,102,111,104,111,111,115,114,79,97,96,121,112,100,110,105,93,86,105,105,101,109,112,111,108,116,91,113,115,113,120,106,109,110,103,107,111,112,102,100,107,109,97,99,101,114,129,112,96,102,108,103,99,98,112,109,99,104,99,107,98,101,102,100,115,98,109,93,105,101,99,100,105,106,98,122,97,100,95,113,106,104,116,101,105,107,104,105,100,96,108,102,143,105,105,119,104,115,102,116,105,106,112,99,113,103,107,91,98,103,113,107,98,88,101,96,106,106,107,92,103,111,92,111,97,111,105,107,111,107,93,98,107,116,120,108,97,109,97,103,104,102,111,108,103,104,94,93,106,106,105,101,112,102,102,109,95,106,101,107,104,102,102,97,97,105,103,109,107,101,105,109,95,117,110,93,106,96,83,109,102,109,62,87,108,106,100,120,105,98,90,104,107,99,106,94,101,113,113,110,112,101,100,112,101,96,105,113,112,95,102,108,113,101,105,108,112,94,113,114,101,92,92,114,110,108,102,109,99,114,107,113,105,88,99,115,104,113,104,109,99,110,113,103,112,101,111,116,111,103,73,95,93,121,102,125,99,102,104,116,128,108,100,110,98,102,91,108,105,101,111,104,104,106,115,96,94,98,103,104,64,95,108,106,101,96,82,73,93,112,97,99,112,79,94,103,95,108,102,108,105,104,102,95,104,96,109,107,104,116,105,98,112,106,105,98,107,94,102,105,110,124,92,111,109,92,91,102,108,108,104,108,108,106,100,103,93,105,111,99,102,113,94, +569.85907,106,104,98,98,72,90,99,112,90,93,109,100,105,98,101,97,98,110,109,101,109,99,102,102,93,97,90,106,99,103,91,112,101,107,110,110,99,113,104,100,95,104,97,119,77,105,94,94,103,104,100,99,91,98,93,96,99,98,113,97,84,111,104,101,107,113,90,120,113,109,110,107,103,104,112,104,106,99,104,106,94,104,105,103,97,91,97,108,104,106,114,103,108,99,102,107,97,100,99,99,106,101,103,96,108,103,95,93,99,109,104,105,107,100,106,105,95,115,122,100,110,95,106,98,130,102,99,91,114,112,96,111,98,103,106,108,119,110,106,103,114,108,96,95,111,99,103,116,94,99,86,105,114,98,97,92,95,99,96,99,108,98,100,100,101,92,93,92,102,92,102,79,113,101,128,102,96,104,107,105,109,103,129,99,96,96,103,88,108,100,101,102,126,103,99,104,96,99,99,112,103,104,104,108,100,100,95,104,107,122,107,104,110,106,114,100,110,106,94,92,94,110,96,97,105,106,116,115,104,99,95,96,94,108,110,107,94,104,95,103,104,99,94,113,101,111,107,108,104,100,96,118,102,108,103,106,99,111,97,109,109,105,94,99,93,99,96,100,100,93,94,104,109,97,110,101,103,100,89,117,102,110,104,98,107,105,88,111,100,103,98,103,106,106,102,109,102,100,106,100,95,105,90,90,106,100,114,109,100,121,105,115,104,105,115,75,103,102,108,98,97,97,101,103,108,99,96,98,113,93,105,95,105,103,115,101,107,106,102,99,96,112,102,94,101,104,107,103,102,103,104,96,103,98,101,110,114,97,101,100,96,104,101,108,112,106,112,96,94,101,112,99,109,81,109,94,103,117,96,116,104,92,90,106,101,102,99,99,99,80,108,93,106,102,113,94,102,102,104,105,100,110,100,92,105,104,103,106,113,90,89,95,91,107,98,90,106,119,113,107,102,105,106,102,109,96,97,102,99,100,109,100,100,95,107,87,95,107,92,106,102,99,98,127,91,92,112,114,106,105,116,104,104,102,101,96,94,93,102,108,92,100,91,100,115,107,92,98,100,103,100,104,104,95,108,104,97,110,101,92,93,110,103,95,98,101,112,94,103,106,102,106,112,94,93,105,112,94,101,99,109,107,97,112,104,112,99,100,104,106,107,108,102,94,135,111,97,105,107,95,93,98,117,99,104,100,124,117,93,104,96,101,104,111,101,98,110,98,106,101,96,109,110,113,114,104,106,104,113,109,108,105,99,123,100,101,106,95,87,104,101,85,99,114,101,111,104,112,98,99,99,100,97,101,101,115,104,107,98,101,104,101,107,107,96,95,108,130,123,98,113,102,109,93,109,115,107,118,113,107,103,84,100,111,102,100,114,94,112,94,94,103,99,94,109,93,105,95,106,91,97,105,93,107,90,99,101,104,104,109,108,99,107,108,94,107,109,106,105,112,93,118,103,104,109,103,95,101,101,112,99,108,90,109,110,106,98,113,118,112,103,101,106,102,100,106,119,93,111,111,107,98,101,121,100,108,105,104,103,102,106,113,117,107,104,106,97,102,107,109,108,107,101,105,107,100,102,101,131,102,91,96,102,107,110,126,102,104,69,105,104,109,86,94,94,101,100,134,111,104,105,105,102,104,106,96,97,97,113,112,109,118,102,105,92,108,109,76,118,112,100,91,101,109,97,118,100,109,99,109,104,95,107,102,110,103,104,107,100,112,82,105,106,95,88,94,97,98,114,104,93,103,101,103,102,113,112,102,95,92,89,103,122,107,105,101,104,107,81,100,111,99,105,101,106,104,100,112,97,109,103,94,93,103,102,102,110,97,115,108,108,95,132,111,118,85,107,103,106,104,106,97,108,110,110,102,116,82,102,107,108,95,116,104,100,102,94,111,98,111,102,102,96,104,96,102,98,97,108,100,95,106,98,101,95,100,100,100,97,103,104,100,108,109,131,98,108,90,106,109,94,105,106,97,109,108,124,75,100,113,111,100,102,103,107,105,97,95,95,108,99,94,112,114,106,99,105,95,94,93,99,122,110,92,105,106,114,107,94,104,111,95,108,98,113,105,88,108,110,106,92,105,115,97,97,107,98,101,136,97,99,110,109,115,80,93,101,117,101,94,103,99,93,111,109,105,93,102,105,110,93,101,102,113,100,96,99,106,101,93,112,76,105,107,106,98,99,109,95,105,90,104,101,99,96,101,99,102,103,96,103,105,96,110,104,107,81,87,99,103,99,104,97,97,96,114,97,104,98,101,89,107,100,106,110,117,118,105,90,100,95,107,95,100,95,115,103,107,100,106,109,120,102,99,97,116,100,108,129,104,114,126,130,103,128,136,153,152,186,180,224,235,280,302,295,307,260,250,280,275,238,267,230,191,196,179,172,162,165,131,87,107,94,115,110,103,96,117,99,98,126,128,117,105,101,123,109,114,109,104,99,98,100,112,106,108,117,89,112,98,121,104,117,97,104,117,112,93,114,102,102,105,96,102,94,105,111,106,104,105,106,102,102,111,110,116,115,101,106,103,117,103,101,95,103,98,109,106,105,96,84,109,105,123,100,109,110,92,87,86,102,98,95,105,103,102,95,113,106,107,113,95,128,106,107,102,101,101,103,119,117,102,106,93,102,110,99,101,107,110,107,100,109,103,107,95,106,98,117,103,130,106,121,110,102,109,111,113,106,100,106,110,110,107,92,92,104,101,108,92,108,102,104,116,108,110,108,96,93,100,110,107,96,111,91,113,109,110,114,106,104,105,107,107,103,106,99,100,106,108,100,112,111,101,115,109,106,98,105,94,99,95,99,101,101,113,110,110,111,115,117,107,115,99,101,105,95,106,98,99,81,108,103,114,94,100,105,117,105,103,111,114,115,113,107,106,104,104,101,103,109,119,103,103,105,100,109,107,107,93,99,109,98,102,105,112,114,104,113,101,106,109,98,101,112,106,103,110,109,112,106,103,101,83,83,102,107,111,103,118,99,101,102,103,102,114,116,104,105,101,104,108,103,102,106,133,102,99,108,92,107,106,120,129,103,107,112,117,101,100,110,101,100,105,106,104,107,113,90,105,100,109,104,113,110,109,115,105,102,110,111,111,110,110,106,99,110,120,101,110,113,111,111,105,108,95,122,95,105,117,107,100,110,105,106,89,113,96,101,103,90,109,100,99,105,102,113,105,101,103,109,103,98,101,98,101,112,114,102,102,108,106,101,114,99,104,111,75,105,109,115,106,103,115,117,102,106,110,99,105,100,108,97,103,116,103,106,107,107,113,111,99,98,138,108,98,111,110,99,101,104,98,99,109,112,119,83,98,96,93,99,111,101,108,87,98,102,113,118,100,99,108,114,109,95,101,104,102,115,104,109,120,87,98,99,102,103,100,100,103,107,112,110,102,103,104,103,95,105,106,99,103,96,106,98,104,101,87,112,99,111,99,113,98,97,100,111,111,105,100,111,103,107,96,98,96,102,99,104,99,107,102,92,104,109,106,97,117,99,99,108,105,98,104,105,98,110,99,112,108,102,121,112,101,88,100,102,109,80,106,107,99,97,109,101,103,111,106,109,97,105,103,103,120,107,100,110,90,112,105,101,109,101,118,111,113,94,107,112,90,93,113,99,99,112,89,102,110,113,99,106,92,91,105,102,108,99,113,117,99,102,106,99,110,106,112,113,105,110,105,109,90,110,109,96,120,83,105,103,112,99,128,91,94,97,101,102,101,100,102,90,103,110,104,110,110,106,101,91,103,100,107,113,92,122,101,112,102,120,111,95,109,104,105,107,111,126,93,103,103,101,108,105,97,101,93,101,99,88,99,100,105,104,101,104,111,112,109,102,97,106,100,97,103,100,101,105,109,101,108,102,102,91,94,107,97,104,103,98,98,109,109,101,103,109,88,103,101,103,112,98,107,123,116,103,99,105,110,111,110,110,102,110,110,107,116,100,99,99,96,108,117,111,106,112,114,107,113,109,103,109,88,102,98,102,102,99,106,95,101,107,102,121,106,110,101,112,106,108,95,120,104,98,107,115,113,112,101,106,98,112,103,106,99,102,106,106,111,110,106,103,103,118,114,104,106,104,96,107,107,103,102,98,109,102,77,130,103,104,115,111,96,111,109,99,94,110,98,109,101,101,104,92,90,106,103,105,100,104,109,106,106,110,117,111,114,104,105,112,115,107,101,105,116,129,112,101,105,108,110,104,108,103,98,100,97,111,113,107,101,101,99,104,92,108,101,106,100,103,102,93,89,104,111,97,83,101,91,96,100,103,96,108,102,97,92,86,88,106,102,102,91,106,110,103,115,114,89,104,110,98,105,110,105,119,89,105,103,95,99,105,98,102,113,101,109,104,98,110,106,91,132,99,111,106,106,115,94,103,105,95,99,109,110,71,103,107,104,112,108,121,104,105,99,102,102,106,104,88,114,99,112,101,100,114,94,109,102,110,112,116,101,112,102,95,100,107,117,115,104,94,114,94,116,103,103,103,107,104,96,105,110,95,103,105,106,92,104,98,105,99,95,85,100,96,105,116,100,109,98,110,123,107,93,102,102,108,104,100,100,113,108,109,116,93,77,99,96,94,108,97,101,103,105,105,102,114,98,108,109,106,99,102,101,109,71,104,103,103,97,110,98,106,93,114,100,102,108,101,110,116,106,91,106,107,113,103,107,91,99,114,98,103,124,109,108,108,83,108,95,106,93,96,99,99,108,116,106,108,98,104,101,98,103,94,98,106,97,105,107,101,82,109,107,101,105,103,104,90,94,95,106,106,114,97,82,103,116,90,126,106,102,121,96,107,108,109,99,101,99,97,114,102,109,109,114,102,104,97,98,104,97,110,113,100,105,96,99,132,97,113,95,119,122,99,99,108,120,96,106, +570,111,117,88,102,99,112,95,90,115,100,89,102,105,107,109,107,98,113,117,100,107,108,80,93,125,105,110,110,132,99,99,106,110,82,109,107,104,107,101,101,99,118,100,115,120,117,97,110,107,116,114,112,103,102,105,73,120,107,110,98,102,107,105,95,83,115,93,102,91,108,94,92,100,97,106,110,110,99,110,99,124,107,103,103,115,101,102,101,96,108,105,95,117,103,110,105,104,112,100,109,109,95,94,96,110,113,103,110,107,104,104,108,105,110,107,110,109,108,126,100,65,113,80,111,124,106,112,97,96,108,105,104,105,101,108,108,106,113,98,103,99,109,98,112,87,102,113,105,106,101,98,110,87,99,112,102,103,102,100,111,99,109,102,98,95,108,102,87,105,107,96,100,81,97,99,117,111,98,116,97,103,103,116,105,105,102,98,94,91,104,91,97,103,104,112,132,101,119,103,102,109,109,101,116,113,118,70,104,123,102,99,98,106,105,107,98,103,103,106,94,108,102,111,96,103,122,103,117,107,107,91,107,87,103,109,110,123,107,111,101,104,109,103,104,104,117,100,122,99,104,100,105,100,98,112,103,109,109,106,102,97,112,103,109,110,114,108,110,132,99,100,106,107,98,121,99,99,103,114,100,104,120,109,98,106,107,108,116,95,110,114,102,105,120,111,103,109,69,104,105,95,98,111,104,108,105,112,108,96,111,100,106,113,108,105,82,113,88,119,113,96,98,105,97,115,98,109,93,115,105,113,106,108,107,109,115,115,109,83,112,105,109,105,105,111,104,94,99,107,104,93,110,126,103,111,102,108,113,107,97,118,99,123,95,121,97,111,112,99,105,110,102,95,102,101,109,107,95,99,98,109,89,98,119,95,109,80,83,116,96,112,87,91,117,104,104,103,94,104,129,98,113,118,97,94,97,96,100,118,104,112,104,116,116,109,102,104,105,104,109,113,108,99,111,102,98,109,95,107,106,101,99,104,107,107,127,114,113,101,109,106,105,110,99,112,109,81,101,110,122,111,98,101,106,136,121,101,85,104,118,109,103,100,119,109,104,104,103,109,109,83,102,103,107,102,104,96,104,107,111,103,105,111,99,109,95,102,115,99,105,99,118,117,120,100,102,92,111,118,101,104,101,98,101,111,111,91,106,112,102,109,103,118,107,107,107,103,113,111,112,97,89,113,104,111,118,108,106,112,106,117,95,106,104,99,106,107,116,114,94,106,119,108,110,112,108,102,109,107,104,104,98,108,105,112,89,101,89,110,103,110,105,92,110,109,113,113,101,102,101,96,94,103,110,108,102,105,105,109,109,102,111,103,108,109,101,99,113,105,109,111,112,97,98,118,109,109,105,103,98,107,118,100,123,104,99,106,110,112,107,94,110,102,96,112,99,126,95,120,108,113,96,105,103,109,108,90,101,106,109,87,105,106,105,102,103,109,95,104,109,77,103,105,107,94,104,141,106,104,113,76,108,114,113,105,112,111,102,103,106,105,106,114,104,101,98,95,101,97,104,105,107,104,100,105,113,103,114,105,109,104,112,113,101,104,104,102,101,98,105,112,94,105,117,106,101,109,110,99,94,106,100,103,94,104,107,102,111,99,107,101,94,106,116,103,106,93,111,113,112,107,92,111,102,103,113,105,114,113,97,113,109,108,116,101,90,103,99,94,139,114,93,104,110,101,115,112,68,104,116,104,94,112,106,111,102,98,104,110,113,87,109,102,109,111,100,105,112,108,99,105,106,109,110,114,103,114,105,113,113,114,110,107,112,113,100,124,104,102,114,107,112,116,107,107,110,115,105,111,124,98,109,105,101,110,115,115,113,113,100,113,111,113,96,104,100,108,110,115,111,105,116,124,109,102,120,122,119,113,107,109,105,112,100,105,117,120,99,118,107,102,104,112,99,105,104,108,102,115,117,84,108,107,114,105,103,106,104,93,103,99,104,120,90,108,113,109,104,109,110,95,113,101,93,109,101,105,94,102,104,112,103,108,74,100,112,94,107,115,115,97,113,113,105,113,85,104,103,103,136,111,101,109,87,106,112,95,103,83,104,103,104,115,98,116,100,99,114,101,100,99,107,108,104,105,96,96,98,107,109,93,86,112,105,94,115,99,109,109,99,120,99,108,106,109,116,107,115,98,106,91,96,113,114,121,120,106,113,97,109,104,115,104,113,108,87,104,107,104,105,112,92,110,99,116,101,111,100,105,109,108,109,112,113,104,106,108,108,103,102,87,96,107,113,104,98,105,108,89,118,97,118,119,100,111,108,103,117,98,107,99,104,95,109,96,110,94,96,108,93,108,119,121,108,113,107,110,119,107,112,119,116,119,112,110,133,132,156,150,189,226,221,267,277,293,317,289,299,230,245,262,244,221,239,199,181,173,168,126,125,112,128,106,119,119,110,118,106,116,106,121,118,111,116,92,119,122,99,95,90,98,108,106,113,111,106,110,98,110,109,101,97,99,105,100,111,109,115,110,95,99,94,102,113,105,109,111,102,109,104,108,102,103,104,101,100,107,94,112,122,98,104,98,97,113,93,105,104,108,110,98,107,98,84,108,100,98,88,101,91,113,113,99,102,110,94,106,113,115,110,113,105,108,107,92,110,113,105,85,105,111,102,106,112,110,104,109,89,98,101,102,117,113,117,85,104,110,104,118,109,104,104,106,107,108,109,108,105,98,101,109,117,117,109,105,106,109,87,101,111,113,98,116,98,107,104,108,103,108,109,105,99,109,110,121,108,100,115,108,99,104,116,106,115,100,98,95,106,117,116,99,100,110,104,113,115,112,103,115,104,100,112,102,115,114,124,113,124,106,105,101,105,118,108,109,101,97,91,95,109,94,116,109,105,111,109,105,111,96,102,114,109,108,106,121,105,107,107,106,94,116,109,110,105,110,113,110,121,113,103,97,113,112,119,109,107,104,92,112,109,99,99,98,106,103,101,115,102,103,100,108,95,116,99,110,102,100,111,108,99,97,110,96,110,109,88,107,103,103,102,107,95,102,111,96,99,102,109,103,123,108,101,106,107,105,96,105,104,104,99,99,101,105,110,95,108,106,108,107,112,95,108,107,111,101,105,114,101,105,85,106,110,105,110,106,102,97,108,105,92,96,84,102,114,99,103,110,104,115,125,117,114,108,109,108,105,91,103,117,113,113,101,93,103,113,112,103,99,114,101,99,112,101,119,101,104,97,109,109,112,102,108,99,114,109,84,102,106,111,109,88,110,112,110,117,97,118,103,118,109,105,105,106,106,92,112,107,99,102,99,79,96,98,104,113,115,113,102,107,105,101,81,102,92,109,112,74,118,110,113,104,111,112,109,111,112,96,104,80,106,104,106,108,106,98,111,117,103,101,101,116,111,100,103,105,99,105,108,113,107,96,98,106,102,109,107,111,100,120,102,110,102,113,100,101,104,102,104,105,94,110,96,100,103,104,100,113,89,108,102,104,103,100,100,95,113,105,109,108,108,107,113,105,94,102,104,100,106,130,97,114,99,97,111,93,96,107,109,98,94,112,110,102,97,102,117,99,103,109,111,114,106,89,106,103,110,109,117,86,91,107,102,95,88,107,111,109,115,112,110,89,106,110,107,103,97,107,95,102,105,95,111,99,113,102,108,108,113,99,107,101,109,99,103,99,93,96,99,104,79,126,103,97,105,100,104,106,99,112,113,101,103,102,105,111,106,113,113,105,97,102,104,103,111,108,106,124,107,97,108,102,104,95,98,109,106,106,113,94,95,111,98,107,90,105,105,104,106,115,98,98,98,109,106,94,99,110,109,116,106,120,99,106,96,101,90,111,102,98,106,116,103,99,98,97,104,111,111,104,116,106,98,109,109,103,99,90,99,121,100,88,110,92,101,107,93,95,107,110,113,106,108,97,93,106,103,110,97,107,107,107,100,102,100,111,106,108,114,104,118,105,102,110,106,104,106,99,100,113,103,107,95,106,109,98,126,98,96,91,109,103,118,92,109,107,106,96,108,98,103,112,102,104,100,106,91,104,100,99,102,112,114,111,98,116,127,118,113,100,103,110,106,112,110,116,126,106,110,106,102,99,104,107,100,105,101,92,93,108,100,105,113,113,112,87,106,112,99,100,106,100,108,112,106,102,106,97,106,115,130,103,104,98,95,113,97,105,113,107,106,104,100,115,97,105,103,111,100,100,112,104,111,98,100,94,106,108,106,103,120,114,108,110,98,125,100,116,97,111,97,105,97,110,109,99,102,109,98,95,92,102,100,109,105,101,87,111,111,107,112,102,107,101,105,96,102,104,107,108,118,107,102,109,117,115,102,115,112,114,109,125,95,109,101,113,105,108,108,113,103,109,101,106,116,95,105,99,106,117,104,78,119,99,112,112,95,105,112,99,102,105,94,99,115,103,98,98,103,108,87,113,110,119,113,82,105,104,107,106,101,105,101,104,110,109,99,98,103,102,91,103,101,110,112,108,108,99,106,121,112,95,102,102,116,99,100,100,88,104,100,102,102,98,102,113,99,109,113,107,88,93,107,109,108,111,97,102,86,106,93,118,106,106,113,95,115,104,108,94,98,99,109,98,114,103,103,113,97,106,106,124,101,103,100,110,109,105,101,116,96,113,117,121,109,87,99,114,113,117,99,98,105,102,99,112,103,101,102,103,104,106,94,123,102,105,90,105,100,101,112,109,110,120,99,114,100,97,98,95,90,100,115,117,70,101,101,109,100,103,101,98,101,101,110,112,103,102,105,84,109,104,98,105,109,109,120,108,96,103,102,103,103,116,101,108,94,94,120,91,108,107,105,103,102,108,108,103,106,98,110,118,115,100,112,90,112,109,97,103,91,106,104,105,114,101,89,99,109,97,113,99,110,101,99,98,110,117,105,106,106, +570.14093,105,99,79,100,126,113,108,94,104,99,97,117,99,100,118,106,106,103,108,104,105,107,113,105,104,113,109,94,107,101,92,105,100,108,108,108,97,105,115,102,95,98,94,83,116,112,122,100,100,118,111,105,107,88,98,113,88,94,115,95,103,99,92,95,109,114,119,108,101,96,100,107,113,104,109,118,121,114,104,112,109,121,105,110,108,105,117,102,101,109,113,102,100,117,100,106,113,97,94,94,111,108,100,99,119,109,100,112,109,105,120,109,108,104,112,107,100,101,99,98,80,104,102,91,121,100,113,91,106,106,106,111,97,108,103,110,114,120,98,106,102,103,109,114,101,106,114,99,104,100,138,97,100,95,95,104,79,108,116,103,97,96,126,110,78,113,114,95,94,111,95,111,90,100,115,100,111,93,107,106,96,106,110,112,108,91,92,95,104,113,101,94,97,107,113,87,108,90,120,104,101,101,98,105,98,114,110,102,115,110,100,104,109,114,110,106,76,101,98,90,101,101,101,110,113,113,111,103,106,101,101,113,107,105,104,103,118,109,78,114,103,106,114,101,99,93,100,102,102,95,103,116,104,106,96,106,102,98,98,117,100,107,104,102,101,104,99,99,117,109,117,104,117,95,103,132,106,110,110,116,97,94,115,99,101,104,104,108,105,101,103,105,117,116,103,118,111,116,91,90,97,102,112,92,102,99,95,99,109,101,94,102,92,103,116,101,114,109,101,112,103,96,108,112,102,94,84,108,111,108,112,108,104,106,103,103,110,100,99,101,83,105,104,103,120,109,106,99,109,103,121,111,100,106,104,112,104,104,98,110,121,110,109,115,98,102,103,109,100,108,105,114,120,107,108,95,100,112,107,99,102,112,101,108,120,98,105,99,97,107,115,91,99,107,101,104,97,102,124,130,102,104,102,96,87,91,98,107,102,89,93,99,105,109,95,102,100,104,109,116,109,118,108,107,110,97,95,92,90,95,101,103,103,103,122,99,93,105,94,104,112,105,116,104,87,101,98,100,106,117,100,107,118,103,97,103,101,108,108,96,113,102,108,106,115,112,111,102,109,103,105,103,100,113,107,109,108,109,100,103,105,119,112,104,109,102,103,102,100,105,99,98,109,99,103,98,108,104,108,120,112,80,121,102,102,92,99,107,105,113,108,102,111,101,97,99,104,101,109,94,115,102,106,98,107,103,102,110,91,97,112,103,109,98,99,88,107,94,102,115,98,104,95,100,113,86,114,107,119,115,93,95,111,106,98,102,95,97,108,106,102,109,98,112,105,101,105,98,91,109,97,96,105,108,119,108,88,97,105,118,97,87,106,109,119,109,101,109,116,100,107,110,102,105,123,108,106,101,106,116,90,104,117,97,112,115,115,112,98,114,110,101,109,94,123,109,112,102,119,114,114,115,104,106,101,107,101,102,105,107,98,109,108,108,111,104,99,95,111,115,95,108,100,107,115,103,105,101,108,102,90,108,115,102,103,104,107,111,106,106,121,105,105,108,101,99,112,102,97,106,111,101,101,115,106,102,115,105,107,104,114,113,100,100,99,99,99,95,104,103,105,107,99,108,108,95,102,125,100,95,117,90,90,109,106,103,118,101,95,109,98,94,94,98,101,99,107,118,96,109,105,96,116,94,104,103,106,124,108,106,83,106,102,97,103,117,115,107,138,97,113,99,101,103,92,111,110,106,107,109,112,119,114,115,105,111,107,102,100,102,100,96,109,104,102,95,104,105,98,103,109,100,111,100,99,104,101,92,94,112,104,111,106,111,106,107,97,96,100,105,111,104,90,86,103,102,110,117,72,103,108,104,100,113,106,105,109,104,107,99,96,101,97,110,119,114,104,109,105,99,108,111,109,109,110,112,106,96,113,113,116,105,115,107,108,108,106,110,108,112,100,94,106,104,114,99,96,113,88,100,109,99,107,117,101,102,111,93,105,93,118,117,121,129,98,97,104,107,110,99,111,112,102,108,112,115,117,106,106,110,108,97,90,102,106,101,104,98,100,106,91,116,113,113,107,78,110,105,102,101,118,116,95,103,106,104,104,104,97,112,105,98,121,103,101,103,96,104,102,104,109,101,107,113,83,99,98,111,99,107,112,107,101,104,104,105,101,112,124,96,105,107,106,95,103,99,101,99,107,102,106,110,95,111,115,117,107,111,98,107,106,103,112,112,103,95,109,115,107,106,93,104,106,109,101,105,101,100,100,112,92,110,118,94,100,108,108,99,104,100,107,107,91,108,98,137,128,101,102,107,92,112,117,99,104,101,111,120,101,107,105,117,103,108,104,129,113,105,99,104,130,116,104,117,111,96,111,116,117,118,111,103,101,127,139,126,131,147,158,199,205,274,268,283,273,321,277,290,242,257,252,228,243,215,187,194,168,149,148,120,121,105,107,104,114,116,107,122,103,104,101,118,121,103,108,113,121,120,100,110,94,104,107,113,114,101,96,86,104,102,70,110,100,104,105,103,110,121,104,100,109,98,108,104,118,100,113,100,111,103,94,105,107,119,96,104,101,98,98,113,108,91,101,93,72,108,94,104,121,101,106,106,99,100,102,102,113,95,106,117,103,100,94,109,96,99,107,105,109,113,121,104,105,103,118,117,104,108,101,104,96,98,107,97,103,105,102,94,83,103,101,110,102,96,107,101,99,107,107,95,111,92,94,99,119,111,99,100,106,91,105,121,110,100,110,113,116,101,102,103,112,95,109,106,100,100,100,117,105,102,97,119,108,111,111,101,107,116,107,100,107,91,103,103,102,104,108,99,101,102,100,109,106,110,123,100,118,100,117,113,132,98,109,93,98,108,103,113,106,101,95,112,107,95,109,101,93,105,117,100,112,98,110,108,112,119,113,100,95,120,107,112,97,90,103,104,88,112,115,111,107,93,117,105,106,108,107,99,84,107,100,113,113,109,105,115,102,96,89,107,103,101,108,104,108,106,101,107,105,99,105,113,106,96,108,105,105,100,109,107,95,113,101,100,104,99,107,107,111,115,99,105,112,110,118,111,106,109,101,101,102,100,107,107,111,104,112,106,87,107,99,106,107,107,95,100,106,107,121,103,104,110,101,103,102,101,104,76,113,99,101,103,107,109,116,107,107,94,104,102,102,95,109,102,109,102,107,101,115,100,115,95,98,96,104,113,100,107,106,112,98,100,103,98,106,117,113,99,103,108,100,99,108,99,102,106,107,97,108,106,107,107,100,94,102,109,105,113,113,108,109,83,109,105,109,102,106,109,100,101,94,102,97,98,80,119,100,105,98,99,81,99,106,112,99,101,94,101,104,98,94,105,96,100,114,98,104,94,102,110,105,112,106,101,106,111,113,97,109,102,106,104,113,107,109,111,118,94,95,123,106,115,98,105,106,105,98,99,115,111,100,104,113,101,102,98,105,96,106,109,106,96,112,102,100,90,113,118,109,106,103,108,84,107,105,105,115,107,102,108,118,107,115,99,94,98,108,107,95,106,103,108,118,118,102,108,121,114,98,99,101,113,103,116,109,108,107,110,120,98,113,100,123,109,108,104,93,105,104,113,96,102,102,114,106,104,118,100,102,121,117,103,109,93,103,110,104,113,116,101,99,100,91,107,95,94,112,107,104,98,110,122,121,117,116,96,120,106,117,113,108,102,103,99,102,108,99,113,106,107,109,101,102,94,106,91,89,117,105,120,108,104,102,100,111,90,93,104,116,96,103,107,110,97,108,89,106,106,106,99,114,99,101,111,102,107,107,101,76,115,109,102,103,104,114,110,109,93,99,102,94,106,107,98,110,98,106,105,100,101,99,109,102,110,108,108,94,118,104,112,115,110,111,98,105,105,92,100,109,106,105,101,97,104,105,98,116,106,112,111,104,98,95,108,102,95,96,98,98,110,93,95,104,88,101,114,116,106,102,107,131,113,111,116,98,111,99,98,99,98,101,114,106,111,123,120,96,115,98,102,94,97,108,95,106,101,101,97,107,111,107,107,95,106,103,104,109,108,109,100,118,102,95,99,108,101,116,100,115,91,103,100,104,104,103,107,84,108,112,101,105,102,104,111,107,103,101,100,103,129,109,110,104,106,112,116,113,98,121,107,110,108,106,107,113,107,116,103,107,106,103,95,98,98,98,110,96,89,103,106,110,93,105,99,108,104,95,108,102,100,113,106,114,98,103,99,87,117,95,106,102,100,103,113,97,113,116,100,99,94,106,96,91,103,100,98,106,108,98,102,100,96,103,105,110,100,117,106,117,99,102,81,106,113,95,106,119,118,95,107,98,109,121,101,103,111,102,113,96,110,109,91,115,103,109,107,98,101,105,102,111,103,113,104,132,110,104,91,113,104,98,118,105,108,113,108,104,111,97,99,95,113,109,121,100,100,116,112,101,106,99,102,103,115,95,99,109,108,113,94,111,103,98,104,107,116,98,107,100,121,102,108,116,98,108,101,112,103,112,101,87,97,92,113,99,104,99,110,89,99,121,89,106,89,101,108,95,67,106,102,113,98,108,109,102,84,116,100,100,76,96,104,100,97,100,91,99,99,103,105,109,102,97,98,108,100,108,94,93,103,101,99,94,98,103,107,107,96,115,127,98,116,103,98,96,102,106,109,107,100,68,87,112,108,106,103,113,100,102,96,106,106,97,111,102,101,104,110,112,104,96,102,110,111,110,91,95,98,104,91,109,110,105,100,108,135,98,93,74,102,73,102,96,121,111,104,112,101,115,87,105,101,110,107,107,104,100,102,105,108,104,108,122,100,105,108,107,105,96,114,109,109,108,106,125,102,111,110,119,109,132,101,99,103,111,102,111,122,117,113,97,116,87,108,93,119,104,99,110,108,99,92,116,96,103,111,100,107,94,107,107,110,115,103,104,96,96,124,92,104, +570.28186,98,95,102,94,107,98,104,106,104,98,104,115,99,115,109,92,110,123,109,103,93,102,105,96,105,108,109,110,94,113,108,103,114,106,73,97,122,99,108,96,105,130,117,125,97,117,97,106,104,101,105,111,109,114,101,99,111,105,105,110,109,112,109,93,97,107,92,102,96,107,91,102,106,104,97,107,93,112,110,119,103,121,109,111,100,72,97,101,98,102,96,104,100,97,102,105,95,103,105,101,97,107,102,106,101,108,108,98,104,106,101,103,109,118,100,118,105,106,119,109,109,97,117,116,103,102,114,99,121,107,97,111,100,100,79,99,106,105,106,100,91,108,103,99,83,110,113,101,98,101,98,103,104,113,97,110,108,102,103,105,104,117,106,95,112,94,98,100,116,109,106,98,113,108,109,113,108,99,99,105,110,103,106,128,89,103,90,95,95,98,104,108,92,114,90,102,104,85,99,102,100,115,105,106,108,111,106,105,121,114,107,102,101,111,104,106,99,97,70,114,106,115,105,105,100,113,137,104,100,108,79,124,95,108,100,107,108,101,100,89,98,112,120,98,106,107,97,107,111,106,101,112,107,110,101,104,96,109,118,99,96,106,99,104,99,102,94,113,114,108,102,106,109,95,104,115,108,119,102,111,90,105,107,99,113,107,105,115,109,111,109,99,107,111,105,112,112,99,94,108,113,110,104,93,105,111,106,118,109,104,105,114,120,103,108,107,112,113,128,92,94,106,120,108,100,102,109,100,111,112,112,102,113,96,108,96,108,105,112,98,89,105,97,104,108,123,102,109,108,114,112,121,106,108,92,103,119,104,123,109,105,104,105,100,97,91,83,110,116,109,103,110,103,101,112,104,108,99,109,111,116,92,107,113,96,105,98,97,102,106,97,100,100,112,111,101,101,102,107,108,102,113,114,104,122,107,99,106,103,106,98,110,110,115,97,102,103,101,110,101,100,106,104,113,107,107,111,80,96,103,95,105,98,116,99,93,105,97,101,112,102,105,102,99,91,107,104,128,94,93,120,97,107,105,102,116,113,108,113,110,105,100,115,113,111,114,114,116,96,95,108,107,99,105,107,106,111,134,99,104,96,100,120,100,108,108,109,108,100,100,100,110,112,118,102,111,118,103,115,100,113,105,111,112,112,100,100,99,114,105,109,109,103,109,112,117,116,112,109,91,111,105,104,117,109,93,97,106,110,103,101,97,113,107,108,102,92,105,94,121,106,97,102,107,106,105,119,119,96,126,106,114,118,108,97,95,104,101,95,107,114,108,105,114,117,100,116,104,105,117,118,90,104,106,102,106,111,104,111,108,95,88,103,122,109,100,101,117,124,92,107,111,96,103,110,105,108,96,99,114,107,114,106,96,95,97,101,102,101,108,106,95,101,101,102,96,118,108,106,114,113,102,99,99,104,102,121,109,107,108,99,92,95,101,95,115,108,93,118,112,115,108,88,100,99,98,105,97,115,101,101,107,109,109,108,107,101,119,107,86,112,99,107,89,104,107,112,104,103,103,107,113,106,110,89,108,105,109,120,109,111,102,112,92,106,106,99,99,114,95,110,122,104,101,122,97,109,111,112,107,103,109,100,111,113,109,110,116,97,100,97,102,110,103,120,97,99,99,109,98,116,99,115,122,108,107,108,86,113,108,99,104,90,115,96,105,100,113,111,109,115,111,98,103,112,112,113,107,102,126,110,94,107,121,116,101,107,105,106,105,104,112,106,108,111,110,101,98,101,108,115,106,111,114,107,104,109,104,109,96,114,107,111,102,105,130,118,103,103,109,108,93,107,104,109,94,116,113,105,106,106,105,105,108,110,97,104,104,109,106,120,132,104,118,106,102,111,113,116,105,109,122,90,101,110,105,110,103,115,111,120,107,110,98,109,112,113,95,106,107,114,105,111,107,88,122,97,105,104,88,113,86,84,103,99,107,93,98,92,109,108,102,106,103,103,100,99,106,99,121,117,117,112,113,99,104,109,106,98,109,115,101,109,102,107,103,109,105,107,103,112,120,103,105,112,109,103,112,100,106,96,105,103,84,110,105,92,100,100,97,112,115,107,107,102,94,88,106,108,113,109,109,106,110,101,102,97,111,101,76,103,105,114,112,94,108,105,88,109,103,110,112,87,103,104,110,109,89,107,110,103,109,92,109,108,94,110,97,105,113,91,108,117,112,110,100,98,104,114,100,106,99,114,95,109,104,104,104,100,104,91,109,107,112,105,109,113,106,104,107,92,110,112,92,99,113,105,106,108,105,105,106,99,86,101,122,109,117,105,96,96,94,100,112,107,101,101,98,114,113,122,108,112,102,103,96,109,103,109,115,116,122,116,121,118,120,138,146,178,214,206,271,280,272,307,306,281,278,249,267,233,211,252,179,208,173,143,158,147,125,106,115,115,111,119,118,115,126,110,114,100,123,103,90,103,124,117,103,95,114,117,99,100,101,109,107,91,105,107,111,92,108,108,108,98,104,93,105,103,116,108,97,102,105,107,108,109,98,117,106,102,118,131,110,112,105,104,105,100,112,112,109,103,107,108,107,101,109,98,113,106,116,103,101,115,113,98,101,107,100,100,98,99,113,110,93,105,105,98,104,102,100,102,104,97,107,102,104,107,116,93,82,111,99,111,107,97,99,110,103,105,98,98,101,103,98,102,105,112,109,110,102,102,96,110,101,91,120,113,112,109,106,113,104,100,99,100,92,100,106,112,103,111,113,113,107,91,96,95,108,113,116,112,107,117,110,106,109,117,100,103,115,95,91,106,94,91,106,116,95,107,117,98,103,94,105,107,101,106,114,102,110,106,109,100,111,112,100,87,109,108,105,105,107,105,115,107,104,96,108,87,112,106,116,140,109,108,108,106,107,111,102,98,119,109,111,112,105,109,110,102,100,113,113,96,98,104,97,108,104,111,109,102,108,102,92,109,123,92,116,104,108,87,106,97,108,117,113,107,102,106,108,107,103,99,103,110,113,103,112,127,102,109,107,108,109,116,112,112,106,81,104,118,102,106,96,94,96,105,84,99,92,115,104,98,105,105,87,102,104,101,101,104,102,96,103,95,102,96,83,116,103,102,100,116,105,103,103,101,106,88,115,105,102,103,103,114,119,100,112,113,105,103,68,107,109,106,98,101,106,101,99,104,97,98,105,104,97,113,112,81,96,104,109,112,99,100,116,114,97,99,102,96,105,111,102,114,123,115,106,113,106,107,99,96,101,114,111,116,116,109,110,110,100,109,92,95,116,89,136,101,119,110,102,101,110,104,103,111,107,75,109,102,102,101,117,109,106,104,92,104,106,107,113,108,103,111,89,102,82,111,109,95,101,104,107,80,114,111,121,99,102,102,111,118,108,97,111,85,100,115,110,109,112,115,109,93,102,117,112,109,102,107,103,104,115,93,101,112,102,107,91,105,109,104,110,102,98,97,114,96,101,75,92,94,103,113,102,99,103,94,108,106,105,104,120,105,90,110,99,96,112,109,102,106,113,98,106,104,99,99,112,84,113,99,113,112,100,99,101,98,117,106,118,98,106,92,107,108,124,119,102,104,110,100,113,100,83,97,96,96,106,107,109,97,102,100,108,95,102,98,121,106,106,113,103,109,107,102,111,108,112,112,102,106,99,110,98,115,108,73,101,115,100,111,88,105,103,99,97,100,108,100,117,101,98,110,100,103,116,115,109,110,103,112,109,113,105,111,100,109,95,101,97,113,106,111,108,111,106,109,98,103,83,105,109,90,109,110,108,101,110,100,90,113,107,94,87,109,103,98,120,104,98,110,111,102,105,99,103,104,96,117,94,107,112,105,102,97,110,95,100,100,110,95,95,120,100,79,92,100,107,92,104,109,101,113,108,97,102,112,106,106,103,109,107,107,105,102,109,106,99,131,98,115,104,102,92,103,112,109,113,109,94,109,103,107,106,98,100,93,111,94,102,91,106,99,107,97,104,101,114,102,101,117,119,101,102,91,106,100,100,102,93,92,94,102,111,110,104,108,107,88,113,91,95,102,99,127,98,99,107,112,98,108,113,100,116,78,89,91,110,115,99,95,103,110,103,95,98,115,106,113,107,108,131,108,107,114,102,115,97,92,110,103,109,95,104,106,103,109,67,91,88,99,87,103,106,105,121,117,102,89,106,104,115,108,106,108,125,103,109,113,104,105,111,98,103,110,92,102,105,99,107,109,99,126,102,111,100,99,95,102,101,90,105,115,116,96,103,92,103,114,101,127,113,105,94,111,102,95,105,108,112,107,98,116,97,97,98,98,105,97,101,94,106,103,111,98,118,104,103,109,109,110,95,121,103,107,104,113,99,129,104,106,96,119,110,109,104,112,100,102,102,111,104,107,115,97,102,111,90,112,110,103,96,108,115,115,126,96,112,111,106,105,109,98,108,102,84,106,107,101,113,97,100,99,112,115,105,116,115,118,94,104,88,106,104,102,110,101,92,95,119,102,103,96,106,100,106,108,91,106,107,101,101,103,90,105,90,95,107,91,98,112,81,100,106,100,82,95,108,102,106,112,104,99,93,117,99,101,132,110,106,99,117,103,98,95,90,101,97,102,95,97,104,98,111,99,113,101,103,93,118,110,109,111,99,110,101,120,101,108,105,118,104,107,113,106,115,102,104,106,107,91,126,108,107,123,95,95,109,102,98,100,104,112,99,96,96,105,114,120,104,91,74,103,95,99,97,91,102,94,103,100,107,104,91,108,97,114,92,108,134,114,90,86,119,105,101,105,94,120,105,121,99,95,105,104,101,107,93,99,100,107,106,109,104,103,114,119,100,101,113,106,119,100,107,112,107,95,101,94,127,101,118,92,96,113,91,115,114,108,107,108,95,95,129,110,104,119,110,97,107,90,118,109,112,95,97, +570.42279,101,100,107,102,115,87,108,100,91,103,106,100,107,108,104,95,110,106,99,99,106,108,105,105,100,106,108,102,103,109,112,101,88,115,106,94,108,109,103,102,102,116,101,91,102,92,88,103,107,91,98,103,99,97,105,104,121,103,94,87,108,100,117,93,112,109,107,87,109,107,109,103,91,115,99,104,100,112,99,118,115,103,83,101,106,100,104,124,106,109,93,100,107,111,91,110,108,105,96,99,102,117,106,99,102,116,111,106,96,87,96,106,110,110,95,98,101,103,104,105,99,92,102,103,123,108,114,94,123,100,102,104,106,101,114,98,95,105,106,116,113,107,103,111,109,104,112,102,107,113,105,91,110,100,102,105,107,102,107,122,99,94,110,104,109,94,107,93,100,98,110,115,107,98,103,103,102,88,104,103,96,91,95,107,102,100,91,103,100,105,104,98,109,103,71,109,94,108,102,106,107,110,110,110,120,104,104,94,116,112,108,106,93,114,98,112,104,102,95,102,112,100,105,98,95,109,105,108,107,121,122,111,110,113,78,108,103,107,102,110,113,106,103,97,97,125,104,97,87,103,110,110,105,93,98,100,91,115,83,104,89,106,96,104,109,100,117,116,117,108,103,102,108,96,118,110,99,116,112,107,95,100,97,101,108,103,93,117,102,107,105,107,106,109,106,105,113,112,111,106,96,110,104,107,94,113,100,106,106,106,103,108,108,105,114,104,109,102,106,102,108,105,110,106,102,87,109,108,109,108,119,103,100,120,105,93,99,77,98,101,107,106,100,99,114,110,99,102,91,95,104,108,103,91,112,98,106,100,109,118,114,112,87,98,109,98,106,97,102,111,100,112,103,96,90,105,115,110,74,109,104,108,106,116,104,95,118,111,110,105,106,103,110,104,97,108,103,95,106,110,115,100,98,105,100,99,98,106,100,103,101,101,103,101,107,116,113,111,107,112,107,107,93,104,94,102,104,93,105,104,95,99,114,87,104,101,102,105,108,110,108,94,114,98,95,101,91,104,111,108,92,110,106,100,78,129,94,93,112,106,106,104,113,115,105,108,109,97,105,114,103,114,104,102,108,92,113,107,117,109,94,109,103,105,108,104,107,95,112,104,102,106,114,103,99,110,105,101,104,96,108,112,112,109,117,112,95,95,109,91,96,102,113,94,114,117,125,100,105,97,108,107,106,111,103,109,105,108,101,113,102,101,106,103,104,106,108,117,105,93,95,119,104,105,119,98,102,104,115,108,103,108,97,104,91,116,105,98,99,92,104,95,106,112,106,111,114,99,104,110,91,91,100,108,98,101,98,101,106,103,113,111,112,99,99,104,113,95,112,99,121,106,95,105,113,117,109,110,95,96,110,128,101,104,92,106,102,99,97,117,119,95,117,114,119,119,108,103,100,104,110,121,109,101,87,96,104,96,103,107,110,95,99,112,108,116,121,100,114,106,109,113,109,104,99,97,108,109,107,115,105,100,104,105,100,112,110,117,112,109,110,104,109,120,101,100,95,94,117,109,124,110,108,106,95,114,106,102,83,109,99,105,111,107,109,98,105,95,98,112,107,100,108,117,110,102,109,111,102,89,107,92,109,100,100,115,106,109,113,103,98,120,103,87,100,101,99,108,102,99,102,103,104,98,99,97,106,104,75,121,109,112,98,106,101,102,94,98,101,110,104,104,103,107,106,100,101,116,106,112,106,111,102,95,112,81,111,105,77,101,103,102,112,125,97,99,103,104,104,103,126,107,100,101,103,107,106,105,110,86,112,99,104,99,103,114,103,109,105,109,114,109,101,110,111,105,108,107,122,100,101,121,119,110,113,102,106,105,99,125,118,108,107,115,98,100,104,100,98,109,111,107,115,107,90,110,111,108,107,109,84,108,101,99,91,121,104,114,112,114,98,92,100,105,112,104,99,103,73,102,95,109,99,99,104,109,105,101,109,113,104,88,113,108,115,117,126,99,109,108,108,107,109,103,114,101,114,110,101,105,108,98,110,112,109,105,117,110,102,100,115,106,104,107,107,97,100,106,108,105,112,96,98,103,106,113,96,113,87,112,103,105,113,110,109,98,109,108,101,99,103,111,104,95,103,106,103,109,110,104,98,99,106,103,95,100,109,103,118,115,120,106,106,114,110,105,84,99,109,107,107,104,102,116,104,105,100,98,97,98,108,98,103,99,97,111,112,94,108,110,112,101,113,106,109,109,114,98,108,95,105,107,108,99,95,106,105,101,109,106,105,100,99,96,113,99,100,112,107,100,105,110,114,106,114,116,123,107,113,138,105,102,104,120,93,104,93,107,105,111,111,129,114,126,104,97,106,105,102,105,110,110,131,102,108,119,139,155,174,214,206,251,255,286,284,277,270,257,258,285,322,244,227,215,177,174,163,145,141,141,132,113,98,124,116,109,110,114,116,101,100,107,102,119,112,119,113,103,100,99,94,110,79,112,105,105,102,107,99,104,100,109,99,95,107,106,111,100,79,118,104,104,104,102,106,103,90,99,108,96,107,91,113,111,107,106,114,118,97,101,100,91,101,100,105,94,99,107,123,103,110,106,105,98,107,111,89,101,101,95,95,103,98,109,117,106,99,106,100,104,112,103,100,95,69,90,109,94,110,94,106,110,102,107,105,107,109,100,106,99,108,101,98,104,103,99,98,113,116,106,105,107,109,91,104,108,107,103,98,110,106,98,106,101,93,106,98,100,117,107,107,123,129,103,105,105,106,112,101,107,94,113,91,98,107,102,104,100,102,95,107,102,103,104,102,103,106,130,104,99,97,120,115,114,105,101,102,103,116,108,110,128,115,99,100,111,116,121,102,92,103,117,106,116,100,118,106,110,102,101,99,98,119,112,110,98,116,96,95,112,100,102,98,109,113,106,106,94,106,99,101,104,104,105,102,89,119,107,97,112,123,104,96,115,108,97,101,101,104,99,89,101,105,112,100,89,109,103,112,95,111,104,100,107,103,102,102,104,105,103,110,95,107,120,108,107,109,101,100,74,108,90,102,103,103,108,100,107,102,114,104,110,105,94,98,101,112,99,109,109,112,106,92,130,105,110,100,106,112,96,104,101,111,103,115,98,103,104,108,103,99,104,103,110,106,95,107,96,106,94,99,104,110,107,110,88,112,109,110,97,102,106,96,99,84,99,97,116,101,106,107,102,109,93,99,108,112,101,97,97,119,108,103,107,110,104,107,102,95,110,107,104,104,104,98,106,111,102,121,100,105,111,105,113,122,105,115,112,104,102,112,98,106,101,102,111,112,95,99,92,98,101,104,97,99,109,107,100,110,113,103,102,105,97,109,98,104,96,102,70,96,108,106,100,100,97,98,113,101,97,90,109,109,109,111,98,106,93,106,102,91,99,118,112,111,90,96,109,112,102,84,91,104,110,98,95,114,102,105,107,103,103,101,80,106,108,115,112,100,113,86,101,108,95,101,116,107,101,121,97,103,92,107,103,113,104,132,105,106,100,100,108,101,118,110,105,108,110,88,94,108,101,98,107,91,104,100,113,105,110,113,100,107,99,111,108,103,100,102,109,108,110,104,109,99,106,107,96,102,91,73,100,112,92,102,95,110,103,102,113,98,97,106,93,99,100,115,97,98,109,101,103,109,106,111,99,107,107,109,109,95,113,97,113,116,95,97,122,108,112,122,95,107,104,102,106,109,106,109,106,102,100,110,116,94,105,109,108,110,103,107,92,84,108,105,103,104,105,98,99,108,98,94,100,105,91,107,105,103,118,100,91,94,106,105,102,103,91,110,97,100,108,96,111,103,108,104,109,103,107,103,102,108,116,109,102,106,104,97,117,103,104,115,112,109,104,103,90,104,118,95,113,103,103,116,95,106,109,100,99,112,112,100,105,97,108,115,109,100,112,92,104,100,113,103,104,103,107,103,95,95,104,110,98,102,110,99,117,108,104,105,96,105,114,112,110,91,102,87,102,117,101,97,98,100,97,105,100,102,110,107,94,98,107,106,97,94,99,94,113,113,100,120,100,109,117,106,112,101,108,122,107,99,100,103,113,111,121,110,102,96,101,103,109,108,110,103,118,107,94,101,107,108,98,110,105,107,99,94,106,94,113,114,108,115,112,105,112,105,96,99,107,102,109,103,109,109,125,105,106,95,111,95,116,106,93,116,100,106,94,111,104,110,110,106,89,104,96,109,102,108,99,100,94,106,103,108,99,107,92,119,99,106,100,92,105,113,103,104,120,91,91,102,108,104,94,119,90,99,102,105,101,104,106,117,98,83,111,95,110,113,113,93,106,111,93,108,106,100,111,108,121,107,95,109,91,105,108,100,102,126,102,99,108,100,102,113,101,102,100,99,115,99,119,104,115,103,108,117,99,106,99,109,113,99,102,108,112,115,103,103,105,105,105,99,109,92,100,95,100,112,108,105,112,91,104,95,94,106,97,101,91,96,100,101,96,93,103,103,102,111,100,107,104,111,96,99,103,110,100,81,100,104,99,107,110,87,99,98,98,95,95,87,105,92,109,113,101,110,98,104,97,108,137,100,108,99,109,103,81,99,102,107,77,92,108,122,102,102,97,81,101,104,96,101,105,99,110,97,95,105,103,103,100,96,104,103,99,112,110,113,101,97,92,94,106,106,112,111,95,110,95,99,95,90,96,114,99,108,99,115,91,102,100,83,88,102,96,107,99,112,97,104,112,113,108,95,94,109,94,93,96,124,104,108,98,112,96,110,103,110,118,100,106,101,99,94,110,113,108,111,95,98,94,105,105,86,86,107,110,109,108,106,91,108,117,131,105,115,108,110,105,101,98,106,128,93,101,118,113,90,112,101,102,106,106,102,102,108,98,92,110,98,111,105,104,108,102,110,105,110,97,105,106,125,102,111,97,111,103, +570.56372,101,89,93,120,100,106,112,114,105,100,90,100,109,108,107,100,101,123,103,101,117,93,109,106,98,100,101,113,108,113,101,105,108,104,69,102,86,90,113,113,102,105,94,106,100,107,106,104,111,97,84,106,111,114,96,100,94,96,103,102,105,103,118,105,100,116,78,108,107,103,79,109,83,109,99,107,100,98,116,100,115,103,105,117,111,105,109,107,102,105,103,113,104,107,112,113,100,90,113,113,102,95,103,105,107,110,89,95,110,103,113,91,122,113,111,92,96,112,103,102,102,106,110,83,95,111,114,99,115,119,109,112,94,106,119,105,109,102,105,106,105,114,113,88,106,103,111,98,91,96,98,96,108,104,97,111,103,111,88,109,92,117,97,103,100,99,89,105,118,110,109,103,112,109,99,121,101,103,105,107,97,104,106,107,118,104,101,110,97,100,96,112,94,106,103,105,102,102,103,103,109,108,118,109,99,104,103,111,107,113,105,99,102,103,115,105,101,100,120,110,96,115,106,104,95,111,104,97,104,105,118,98,114,97,108,108,97,113,105,108,98,102,100,126,103,112,126,104,111,118,96,106,87,120,83,96,100,99,104,103,100,103,105,103,99,112,115,105,95,116,102,100,103,110,108,104,110,113,115,110,109,117,88,99,109,118,99,96,125,110,118,98,121,95,117,102,114,104,109,98,102,112,106,101,95,124,111,104,104,138,96,106,105,95,110,108,116,110,121,100,97,105,104,94,99,108,98,110,118,103,110,106,109,100,106,102,102,104,104,108,111,103,91,116,96,110,105,105,96,106,104,93,99,99,97,86,110,112,99,104,110,110,105,101,107,108,110,112,102,109,112,104,90,104,108,108,119,102,96,113,114,107,108,109,104,105,117,110,112,97,104,99,100,101,110,93,126,124,113,110,104,107,105,106,95,98,104,104,105,110,103,103,111,103,92,108,109,96,112,103,100,104,99,120,102,118,109,108,102,106,92,107,96,109,106,107,100,116,99,97,103,115,110,111,99,103,102,103,102,109,114,104,104,114,113,111,106,107,106,96,107,98,97,120,108,107,107,103,114,104,102,106,105,100,106,104,100,109,102,116,108,110,116,106,93,98,101,99,101,101,109,103,108,104,91,108,98,108,106,103,110,95,100,113,112,105,104,95,113,104,115,106,104,105,105,99,98,105,117,97,113,99,97,111,102,107,108,109,105,114,101,101,104,102,108,102,94,95,119,116,103,99,122,98,113,99,115,106,117,103,95,110,107,108,111,99,113,106,70,98,103,99,106,99,107,111,112,106,98,107,95,99,98,103,110,99,112,104,100,126,107,102,102,113,102,114,117,109,107,126,111,114,109,99,109,110,106,99,109,103,103,103,107,112,107,101,96,103,96,99,88,120,102,111,103,113,103,107,105,118,118,94,102,79,106,109,89,103,105,113,112,98,109,111,88,93,111,106,109,110,115,104,101,99,103,105,105,108,109,96,93,103,105,108,109,100,117,109,105,112,100,115,101,101,115,104,109,105,111,135,116,110,105,108,111,109,102,108,115,105,121,109,107,106,100,100,104,120,107,113,105,110,106,101,101,99,104,117,104,97,104,101,99,90,109,99,107,105,99,108,112,105,74,102,100,102,82,104,100,84,118,87,105,111,105,109,103,105,109,94,115,99,96,108,89,98,108,104,109,113,94,109,98,112,108,99,99,103,100,102,103,103,101,100,95,95,78,102,111,92,104,105,99,103,91,82,106,109,109,99,119,110,118,108,114,101,124,99,106,105,103,106,109,101,110,105,99,106,98,94,108,107,96,98,105,106,106,93,115,122,97,120,98,104,106,101,121,100,103,102,122,111,102,101,116,102,99,105,96,95,89,116,107,104,110,111,123,121,119,103,111,108,112,99,104,114,114,95,139,107,103,113,103,94,95,111,106,98,110,105,95,98,95,103,121,95,107,111,117,89,116,86,113,135,100,101,92,106,98,118,111,101,102,107,105,100,114,106,103,102,115,101,100,110,117,94,97,110,107,114,101,109,108,115,111,109,100,106,93,110,104,108,104,125,103,90,104,102,112,120,110,101,102,106,109,92,101,117,105,99,114,101,121,117,96,102,118,108,105,109,113,107,106,115,106,110,91,100,106,105,107,110,98,109,120,89,115,101,89,105,106,96,106,110,117,110,114,103,108,106,111,110,105,115,112,131,103,114,107,106,99,108,84,120,99,110,113,87,100,106,103,108,116,105,111,108,108,111,103,98,104,115,99,111,107,100,107,109,97,102,112,117,75,103,104,106,100,109,109,120,104,103,100,106,87,105,108,111,103,122,124,115,113,119,105,116,116,115,140,113,138,121,107,122,130,118,142,169,152,214,209,278,261,283,307,289,310,235,289,268,264,256,243,233,184,181,165,136,140,115,113,130,124,109,101,120,117,114,108,103,118,109,118,109,115,101,99,106,106,117,113,110,97,95,104,112,115,104,117,80,99,108,111,90,105,110,112,108,84,109,104,108,108,78,108,99,104,104,104,107,101,105,100,102,108,102,109,97,103,89,100,104,104,101,108,105,103,111,106,102,94,102,112,98,95,106,106,104,104,90,106,92,99,95,98,102,99,99,100,100,103,107,105,103,96,106,108,101,100,102,98,100,108,103,68,107,83,100,104,88,106,99,113,112,102,98,112,98,107,108,114,113,101,130,107,105,109,103,113,103,102,71,106,121,104,111,100,92,108,102,92,100,104,109,106,108,131,105,109,96,114,119,120,108,112,109,114,102,100,99,113,87,98,120,105,101,103,103,101,98,95,112,101,107,92,120,110,103,113,110,108,102,117,91,104,115,108,109,103,101,103,108,118,96,109,103,127,114,101,108,110,89,116,102,98,108,113,101,96,117,110,95,113,102,110,100,106,116,100,110,101,92,106,112,100,97,102,100,98,106,102,110,112,103,113,119,106,126,112,107,95,93,104,101,89,96,117,106,99,106,105,100,98,112,115,113,102,109,112,92,124,104,99,116,107,104,106,106,107,102,91,100,113,113,99,101,101,102,98,102,72,101,95,96,104,104,115,105,112,102,103,97,101,103,106,106,108,103,105,101,120,105,110,116,112,94,111,105,90,93,113,103,100,109,109,123,107,107,106,102,109,111,98,107,99,88,106,99,103,102,99,102,98,111,115,98,113,107,83,111,94,101,100,101,102,104,111,102,108,102,97,92,100,100,117,95,110,110,96,105,98,99,100,105,104,106,102,108,111,96,97,114,116,98,98,111,96,103,104,111,99,81,95,101,112,102,101,115,103,95,99,98,90,100,98,117,110,96,115,101,95,117,100,103,87,109,111,107,96,98,94,95,91,109,105,105,108,105,116,104,109,101,95,98,99,97,113,110,100,105,117,102,96,96,81,98,104,98,94,96,94,99,117,106,104,100,113,100,103,96,102,111,103,92,113,95,105,112,101,103,101,110,109,117,85,110,87,95,83,84,113,104,94,110,99,103,104,108,102,95,100,99,116,105,102,106,117,112,109,94,106,106,94,99,99,106,123,113,106,108,95,94,111,106,105,105,98,106,112,108,104,98,99,99,113,103,109,101,93,81,89,106,101,108,109,105,117,99,87,104,102,112,117,108,98,91,101,85,91,112,100,97,106,116,111,108,113,98,108,99,96,102,98,104,102,109,97,108,106,101,107,101,108,98,110,100,100,96,101,96,99,94,107,109,100,110,100,87,111,98,103,106,111,107,106,107,105,112,87,94,105,101,96,96,100,92,103,104,113,101,96,100,89,99,117,116,109,108,120,112,92,106,97,105,107,105,103,100,102,101,102,111,112,103,104,98,91,109,117,106,100,112,112,113,101,104,99,102,102,93,106,106,109,115,101,101,107,104,111,105,97,90,108,102,105,104,100,99,98,98,101,98,103,103,101,114,111,93,104,105,112,98,100,102,99,103,107,111,105,97,110,101,112,101,111,108,100,117,111,111,104,108,101,91,115,112,102,104,112,102,102,97,105,104,119,98,106,95,116,100,109,96,109,103,104,93,110,94,120,117,100,108,102,105,105,101,91,103,103,94,98,120,106,95,104,101,99,104,99,102,97,115,109,99,99,106,99,107,100,111,94,108,104,111,108,103,106,96,112,109,90,95,97,102,99,96,97,100,102,120,109,96,111,92,104,106,100,105,88,97,111,101,108,102,98,99,95,110,120,102,106,121,99,113,111,106,102,101,114,102,112,96,100,101,99,97,98,111,105,100,93,106,112,101,94,105,99,109,121,99,98,87,103,102,99,115,113,97,98,107,105,104,108,110,96,85,95,102,101,113,91,106,116,103,102,105,98,104,107,108,100,95,121,110,110,107,95,100,99,105,113,124,113,107,108,113,121,75,95,96,98,102,110,93,109,110,101,98,95,99,102,97,98,116,100,111,95,71,92,96,111,102,102,107,95,98,94,106,102,103,101,104,108,91,102,95,104,94,111,117,101,96,101,91,95,95,97,95,100,105,97,91,101,100,107,88,87,107,96,97,91,68,86,102,91,102,99,98,88,105,106,93,91,102,100,101,105,96,100,111,100,104,115,88,95,100,91,111,101,87,99,98,116,113,103,117,110,116,106,102,97,101,103,103,101,115,99,101,137,100,91,109,104,102,106,63,95,96,99,71,98,76,94,107,106,108,97,109,103,107,93,121,110,106,104,103,110,115,113,98,113,114,109,105,105,108,99,95,97,93,100,102,99,103,104,97,97,101,110,101,93,93,110,100,100,84,108,104,110,111,100,118,94,100,108,103,103,101,104,111,92,110,98,102,103,111,102,102,96,89,110,94,93,115,121,81,92,105,97,108,113,102,102,90,98,93,98,88,105,81,106,106,87,98,99,103,100,113,115,100,111,101,106,97,95,81,115,102,94,97, +570.70459,112,123,108,114,91,111,113,106,109,99,118,103,110,101,103,99,99,113,112,96,109,106,85,93,97,99,103,90,105,117,110,112,107,105,95,106,111,105,108,110,110,106,109,100,90,114,113,108,100,112,113,104,97,120,113,103,100,95,109,103,102,115,107,92,75,111,108,112,91,109,112,100,96,108,100,110,98,115,107,115,108,100,96,103,101,114,95,126,105,100,116,98,120,109,95,107,103,100,114,91,98,97,107,88,101,99,93,99,101,103,102,103,110,117,107,106,109,116,118,101,103,109,106,117,119,118,118,99,120,106,117,110,110,104,101,107,113,108,113,91,103,112,104,104,101,106,74,102,97,108,101,108,110,83,103,99,103,115,116,109,100,106,109,110,92,107,93,96,110,106,119,104,100,111,109,111,103,113,110,113,113,107,107,109,110,118,100,95,102,108,95,98,96,103,96,104,110,99,106,122,120,102,106,109,105,109,102,103,114,110,94,95,101,101,95,110,114,98,111,102,103,118,100,98,93,112,101,113,123,97,114,109,102,112,110,103,97,104,97,106,97,94,107,112,95,100,103,139,100,99,94,106,103,108,103,109,100,113,100,102,100,109,98,102,123,95,100,90,104,103,99,110,102,109,110,106,104,99,98,107,101,106,116,111,114,100,104,105,109,109,124,103,98,111,109,89,109,95,109,98,101,111,103,105,105,107,110,110,98,110,97,111,101,107,90,107,104,106,109,102,106,104,110,111,103,107,104,100,116,114,123,108,108,121,109,111,104,99,87,104,123,111,106,99,117,118,105,126,116,123,109,103,105,111,102,102,106,103,100,94,102,99,100,109,111,111,95,104,86,104,107,102,96,105,110,112,76,102,118,104,117,106,110,121,97,100,101,103,107,104,114,105,110,117,105,90,107,95,101,102,100,109,101,95,106,100,98,110,102,103,99,103,104,112,95,101,105,104,108,102,107,92,104,87,79,106,114,88,101,101,119,85,95,96,103,103,94,103,102,103,109,103,94,97,104,108,91,102,112,110,99,94,102,103,102,100,98,107,106,106,99,95,100,103,108,122,107,108,121,114,103,121,98,102,93,91,93,116,117,101,94,108,111,113,114,98,117,116,110,106,107,115,114,116,104,106,97,111,95,106,107,71,99,104,104,114,100,128,111,103,98,106,109,122,105,107,105,114,96,104,114,112,103,96,112,109,107,115,103,107,107,112,98,99,103,115,101,96,103,92,109,99,115,112,107,109,110,103,115,106,111,105,100,107,96,106,107,102,96,95,91,100,106,99,107,116,113,107,107,126,93,100,105,106,110,107,110,96,106,99,107,101,115,87,112,99,116,93,99,115,80,106,96,103,113,104,100,99,97,110,101,114,112,107,109,105,102,109,96,116,107,112,105,99,100,92,106,96,98,117,111,97,113,116,112,106,102,106,112,105,113,108,109,123,99,102,105,105,119,114,108,111,117,106,93,99,95,112,99,120,111,98,98,109,102,103,101,104,106,115,114,99,113,102,108,103,117,117,104,87,106,101,106,113,96,107,102,106,108,108,108,104,117,111,104,98,97,103,97,98,88,109,99,116,101,100,73,96,110,108,108,106,104,101,109,113,91,104,96,100,102,102,92,95,99,96,112,113,98,108,106,117,102,111,104,91,106,102,91,112,104,106,106,98,111,110,94,110,100,107,121,110,104,103,106,98,116,110,98,109,105,100,109,119,111,100,99,113,115,101,107,113,102,103,96,111,103,113,98,105,112,124,98,117,103,105,105,107,110,111,110,111,114,111,95,93,131,108,100,97,98,120,109,98,108,104,110,113,99,115,96,105,113,99,101,91,125,105,119,125,110,102,116,88,106,101,109,106,110,99,92,128,96,103,98,115,116,106,116,108,106,101,121,103,120,104,115,110,110,105,99,110,110,97,106,113,96,112,95,93,105,92,101,101,98,96,108,108,95,120,117,94,96,106,100,99,114,96,101,107,98,108,112,109,106,100,110,110,92,109,114,113,98,91,109,108,105,106,115,107,100,107,109,140,120,96,95,98,102,108,101,111,122,103,107,101,97,101,96,101,119,116,97,114,107,106,95,102,112,96,111,104,110,97,111,98,100,117,103,113,103,116,109,109,108,98,107,104,110,109,106,106,114,111,106,105,102,108,108,111,96,113,113,103,107,105,113,99,109,98,114,126,112,109,120,113,90,102,106,110,98,97,120,106,99,121,99,101,95,87,103,88,103,108,100,94,104,95,108,114,105,106,109,109,103,95,98,105,112,107,105,101,121,103,111,103,76,92,103,114,105,107,103,114,107,114,96,113,107,127,116,100,89,97,114,115,129,125,98,108,118,123,109,83,110,121,156,144,169,182,214,275,260,293,276,291,278,296,260,275,253,197,197,252,219,179,153,160,124,147,122,120,119,106,99,115,113,114,103,131,106,117,109,113,110,112,100,116,103,103,106,99,96,111,111,112,99,86,108,106,113,107,99,100,113,102,102,103,102,96,103,106,109,114,106,112,105,103,110,94,105,106,106,94,100,106,99,99,92,111,107,108,93,94,107,99,107,112,103,109,113,106,105,101,78,105,88,116,96,96,100,96,113,96,83,106,89,91,113,111,110,103,106,108,106,98,111,102,106,102,114,94,114,100,93,111,94,95,107,114,103,100,106,109,92,85,106,104,106,117,104,105,100,111,110,117,108,74,113,96,90,109,110,107,107,109,116,102,93,96,108,102,107,108,120,97,107,103,93,104,106,97,107,99,113,105,102,109,102,100,101,102,92,115,99,105,95,104,94,111,120,111,97,107,108,92,102,108,103,103,113,100,101,93,101,104,111,106,109,102,104,112,118,96,103,100,105,95,101,112,100,87,109,104,114,110,110,118,88,115,109,103,102,109,116,94,95,106,102,111,111,107,106,104,98,108,101,105,110,103,113,125,97,96,94,103,108,104,95,115,95,101,100,111,102,91,109,120,103,103,104,107,102,113,104,113,106,98,120,96,115,108,109,104,99,93,104,86,99,107,92,104,83,111,96,95,106,101,102,102,91,111,116,102,102,111,110,96,104,108,110,103,98,100,103,94,105,99,110,102,99,103,110,97,106,71,94,106,99,101,96,98,120,111,117,114,104,110,110,98,104,106,98,100,92,98,110,100,119,100,87,99,101,85,112,97,87,107,100,100,101,95,104,99,119,102,102,103,112,111,89,110,113,108,94,109,94,102,88,108,105,110,90,107,101,102,97,107,105,103,112,109,111,106,108,101,98,114,109,105,90,99,105,99,114,101,99,108,107,98,95,100,94,103,112,105,96,94,113,101,101,113,100,100,104,106,98,105,68,96,101,80,87,95,99,93,107,108,96,107,109,115,119,109,85,107,88,100,102,99,103,100,107,98,112,109,99,108,114,96,112,96,101,104,95,95,100,109,104,96,104,88,91,100,102,107,101,103,102,93,116,100,99,100,92,96,101,115,105,95,107,113,101,93,112,99,108,99,117,98,91,96,115,103,114,97,91,99,101,106,99,92,98,92,114,103,109,105,96,106,104,105,101,100,104,99,105,109,94,100,111,88,95,75,97,99,112,102,103,99,106,98,94,97,103,99,86,109,110,102,106,104,111,99,108,94,113,111,106,108,107,104,100,99,106,100,105,93,116,109,100,98,104,108,95,100,100,119,110,103,115,108,104,106,95,98,97,102,108,99,101,103,104,94,110,104,107,106,98,103,105,96,88,102,100,103,106,107,94,100,102,102,101,102,108,96,112,104,126,103,102,99,104,99,105,83,104,95,104,100,99,117,94,98,112,113,95,96,96,104,100,105,111,103,104,106,95,107,100,105,100,103,106,102,109,102,123,104,101,96,95,113,105,99,116,103,99,109,103,103,103,96,105,108,95,111,109,97,87,100,94,98,91,101,96,113,105,93,99,100,110,106,99,109,101,106,100,101,88,107,101,104,92,104,98,110,111,109,112,118,105,97,107,105,117,108,106,117,106,102,105,94,95,105,122,104,110,105,91,113,105,97,99,102,104,101,102,100,103,87,103,105,96,83,104,101,97,124,100,111,105,103,97,104,119,104,97,107,104,102,104,101,90,102,102,104,105,116,102,113,110,104,103,95,98,102,100,106,104,110,88,107,83,108,100,119,117,117,115,114,104,96,103,110,102,100,104,90,105,95,102,102,117,95,106,103,90,113,112,98,106,93,110,113,76,100,95,104,94,109,116,104,110,102,112,104,102,101,98,96,96,107,98,90,122,95,97,106,108,103,111,97,106,83,105,109,102,89,100,96,89,116,106,102,101,112,98,79,102,113,109,121,105,97,108,110,112,111,106,106,108,105,107,111,121,107,96,105,105,103,104,109,100,120,98,100,101,107,109,104,109,104,102,108,100,122,109,104,98,96,104,89,104,104,96,113,105,114,103,99,110,118,88,99,99,103,100,98,102,103,104,99,105,94,99,102,104,109,108,101,98,98,97,102,105,109,104,105,106,113,99,97,80,103,116,106,95,111,106,94,95,96,113,101,110,104,113,112,105,106,86,103,96,94,128,98,96,102,104,87,108,111,108,95,98,117,103,101,118,93,129,104,121,98,103,113,103,75,100,107,100,101,96,114,93,84,92,104,99,92,97,100,108,97,101,79,94,102,105,97,99,100,88,99,105,83,91,109,102,93,105,111,111,94,102,101,102,106,96,103,102,96,102,107,108,102,104,105,101,95,100,93,103,102,111,106,104,113,110,104,115,93,101,109,96,96,103,110,117,106,108,103,97,112,111,109,93,105,105,105,113,91,91,103,94,70,111,111,105,104,102,93,104,102,105,100,100,108,92,75,106,100,92,98,106,115,106,107,99,109,101,98,110,112,105,95,102,107,106,96,107,116,108,95,107,84,113,103,108,91, +570.84552,100,97,94,98,102,112,108,100,111,101,110,114,103,100,106,104,107,105,96,87,117,112,107,100,97,82,91,116,106,143,115,109,103,106,96,117,106,94,99,96,100,103,109,107,70,110,103,113,95,106,95,107,91,110,95,111,104,96,108,98,103,94,105,102,107,93,106,100,100,106,106,111,100,105,92,113,100,97,105,112,109,106,95,104,107,94,98,105,95,116,99,101,98,112,90,103,95,100,99,109,97,108,119,113,137,104,71,100,105,109,109,98,91,101,106,95,89,116,106,103,102,116,116,102,103,108,120,100,105,108,106,103,110,100,112,91,113,103,106,118,96,106,98,98,111,101,104,104,106,111,116,111,97,112,113,104,121,105,111,114,108,96,109,112,94,104,98,101,111,101,108,116,103,113,125,111,106,101,111,111,98,105,104,101,109,111,103,107,90,111,117,106,113,108,96,106,109,111,94,103,102,102,103,117,101,103,104,117,109,107,110,114,109,94,119,108,100,103,103,106,114,104,114,105,96,108,129,107,93,108,98,94,109,107,109,103,118,102,113,105,74,100,116,112,101,96,105,111,116,108,101,92,110,106,96,117,108,116,121,107,94,101,102,117,105,102,106,101,109,96,108,117,119,111,108,99,103,102,110,112,105,104,103,100,112,108,101,105,109,110,115,86,114,108,96,108,97,100,110,107,101,113,107,107,103,98,109,108,97,112,94,109,108,117,117,110,110,110,121,93,107,105,109,103,110,88,112,108,106,102,102,102,105,110,104,90,113,97,101,113,109,99,120,98,99,103,117,116,98,106,112,106,91,103,116,91,99,115,102,116,109,106,100,97,101,109,99,101,99,109,111,94,97,98,103,97,109,110,98,95,106,103,122,103,106,106,97,103,107,94,101,105,100,111,100,105,93,99,100,113,95,102,98,81,88,105,115,104,106,97,96,93,115,100,108,105,95,97,114,111,96,91,96,64,102,99,104,111,110,109,102,94,102,105,95,104,101,118,109,113,107,113,107,113,97,106,118,98,109,113,101,100,96,111,108,111,104,103,106,107,110,118,113,119,108,97,117,98,109,103,110,100,96,107,96,104,103,109,112,113,97,106,106,101,106,100,87,110,104,101,100,122,99,111,103,107,97,90,109,109,104,101,106,102,113,93,103,104,105,109,104,104,101,112,109,110,95,102,109,99,115,107,101,108,103,103,90,101,100,107,101,103,106,114,95,109,109,100,99,116,107,97,102,107,103,121,103,102,105,98,107,121,104,116,107,80,101,111,99,101,98,95,102,111,104,97,114,98,107,106,98,111,113,115,105,102,105,93,108,122,106,99,100,97,105,105,109,101,102,104,111,95,94,100,104,109,104,101,106,100,104,105,114,104,98,118,98,104,106,101,102,119,115,99,97,109,102,95,109,108,114,86,101,108,99,105,108,101,88,105,102,107,103,86,102,103,95,101,109,104,107,106,103,104,110,113,109,111,101,105,105,109,115,94,108,121,108,103,108,111,104,104,108,91,101,112,106,91,107,75,128,98,116,104,95,113,116,102,105,121,102,111,109,90,90,109,90,115,96,105,100,86,108,113,105,108,109,110,108,92,77,98,101,105,78,99,105,106,98,101,120,103,122,103,95,102,110,106,111,94,105,105,110,112,94,94,106,104,100,113,94,121,106,104,111,103,98,105,111,108,100,99,94,116,98,90,102,110,97,109,105,109,100,103,87,106,118,94,75,95,99,96,123,97,106,110,103,127,104,111,107,91,108,94,103,96,114,107,109,88,111,110,98,113,123,105,98,128,100,103,104,107,105,121,97,105,102,99,96,114,85,112,102,114,101,103,101,104,110,107,106,95,117,109,100,101,110,107,99,100,99,118,99,104,91,120,109,105,96,118,105,103,112,86,91,114,110,102,101,104,103,100,117,103,98,106,109,104,101,99,109,106,118,96,99,108,104,108,115,101,111,100,105,107,113,97,96,115,100,104,105,107,105,126,101,114,103,107,99,93,118,98,102,112,103,109,104,97,103,114,106,116,108,106,109,110,99,98,112,99,91,105,113,102,122,97,89,120,103,107,97,107,100,99,118,104,111,98,101,114,112,96,114,99,105,103,104,116,104,111,116,100,110,109,109,106,89,125,109,105,108,101,102,92,100,90,96,107,103,98,110,118,102,103,105,94,101,97,97,93,112,106,98,115,99,109,103,101,96,113,103,110,99,113,104,103,111,105,102,100,108,113,100,87,108,94,101,96,102,100,121,104,125,110,101,104,104,110,110,95,98,121,105,103,108,110,90,99,96,107,98,116,118,108,109,103,99,107,101,92,113,104,102,109,122,111,108,98,112,99,129,111,125,126,119,132,117,171,163,186,220,280,224,248,307,355,273,256,287,286,245,291,289,201,198,160,161,172,149,135,128,131,121,110,109,115,107,113,117,113,106,119,102,130,111,99,111,103,101,113,108,103,104,104,109,106,99,97,111,108,107,104,109,90,102,103,97,102,109,107,101,98,119,104,108,111,100,107,117,99,117,107,112,93,113,108,100,94,100,104,112,93,80,111,103,94,100,102,111,100,112,100,109,96,103,98,109,99,113,105,101,96,102,108,107,112,95,109,105,113,103,99,112,80,100,106,107,113,108,103,109,102,104,81,109,101,110,95,112,106,106,97,111,108,92,108,104,102,101,109,119,107,97,102,109,99,113,110,113,98,102,107,110,117,108,100,120,96,103,108,100,111,123,99,108,116,112,115,116,104,89,101,95,110,108,86,118,96,104,92,105,108,120,108,102,109,120,102,95,101,106,118,99,105,108,112,102,90,110,103,101,114,107,92,111,104,102,106,105,117,110,105,117,115,104,108,106,102,96,104,108,111,107,103,109,90,95,110,105,111,110,105,98,112,100,104,109,107,108,110,104,120,107,106,99,105,104,118,94,103,123,110,95,100,114,112,102,119,111,112,110,107,97,115,94,112,112,108,98,101,102,105,95,104,110,106,101,97,105,104,110,102,112,98,107,116,115,109,89,104,116,99,106,90,104,118,98,92,101,112,99,102,103,96,93,102,113,110,103,99,100,103,110,102,97,98,107,104,102,102,73,104,105,103,116,99,101,95,105,100,90,110,99,105,101,110,113,97,105,106,99,96,106,109,105,109,110,106,91,105,101,104,115,104,101,113,97,105,100,91,105,105,109,107,97,99,102,124,106,120,94,108,114,104,101,99,83,104,112,105,100,107,96,97,109,94,110,102,107,111,105,98,101,107,98,103,105,106,104,106,106,98,117,99,109,115,93,72,91,100,117,100,103,109,105,117,104,93,101,98,113,113,104,105,89,118,98,113,106,111,110,101,110,102,101,108,100,122,109,102,95,107,95,109,115,109,111,90,109,109,102,102,104,97,112,105,95,99,105,104,98,102,101,101,104,110,117,108,100,114,94,113,106,105,105,102,121,114,98,97,104,87,104,100,109,106,103,104,94,99,102,98,106,95,96,104,102,90,111,115,107,113,101,109,97,101,96,102,97,95,99,104,109,109,96,102,96,110,102,108,91,93,123,105,104,98,97,110,108,111,121,105,108,108,111,116,91,109,104,114,123,105,110,116,116,102,108,105,104,110,97,113,99,107,120,105,95,103,106,106,97,104,129,110,102,97,97,103,101,97,114,101,101,103,99,110,105,100,96,97,100,116,105,100,95,102,91,106,104,92,107,96,108,109,115,113,115,120,105,105,91,93,105,101,93,102,109,95,99,111,104,103,92,91,103,112,112,99,110,106,103,111,113,112,101,88,106,100,103,110,99,107,99,105,115,110,83,104,109,96,109,98,113,108,108,96,93,121,91,111,106,116,101,108,103,118,118,110,108,95,110,104,98,108,109,102,95,99,108,99,104,110,106,112,104,110,116,116,108,114,96,104,90,100,108,114,104,112,108,101,102,114,101,95,105,110,112,103,99,115,102,100,107,108,95,109,117,106,96,102,106,101,110,98,108,116,103,89,104,104,105,100,94,96,116,108,105,105,108,104,106,83,105,112,106,101,101,115,101,109,121,112,103,104,114,111,113,102,103,110,111,108,97,107,102,104,104,98,90,112,113,105,99,94,126,107,106,101,104,108,104,83,107,129,111,93,112,104,100,101,109,92,103,114,112,104,103,117,102,97,106,113,100,89,109,106,108,113,94,91,102,111,111,102,120,102,99,119,100,117,111,105,97,109,110,103,113,110,106,102,103,95,101,102,129,98,107,113,106,101,91,114,101,95,97,106,101,89,108,96,103,111,105,94,104,98,110,101,96,98,103,103,103,102,117,109,119,113,112,109,105,105,115,95,115,107,114,98,106,121,121,102,117,93,119,106,104,113,105,108,104,110,116,109,98,100,118,109,110,91,97,112,110,106,102,106,119,119,99,103,118,98,97,100,97,107,88,107,124,106,111,94,94,107,108,109,100,101,106,99,98,108,104,104,112,99,104,104,96,106,103,98,106,112,98,98,88,108,105,117,95,104,112,105,121,112,114,112,106,108,90,97,106,96,113,110,104,105,107,106,107,105,95,82,102,108,136,108,106,95,116,110,107,104,99,100,104,96,106,106,94,102,105,108,92,104,91,101,103,98,121,93,98,105,109,105,95,110,102,103,132,104,99,90,102,114,104,108,117,105,104,96,113,106,110,91,110,105,109,112,114,120,99,100,104,105,104,101,107,99,111,101,98,105,105,107,95,98,91,108,99,110,97,95,98,83,120,98,106,101,107,104,106,101,102,113,98,112,100,110,120,107,124,101,106,107,110,106,103,106,110,103,113,100,110,104,102,96,91,107,114,97,104,105,107,101,95,124,98,112,104,104,92,101,98,106,112,123,103,99,98,116,97,94,107,115,103,97,94,98,113,125,93,108,90,108,105,109,103,96, +570.98645,122,108,94,113,107,106,105,98,107,89,83,109,97,105,99,104,99,106,115,100,107,108,92,107,97,107,119,115,107,102,107,95,109,96,102,101,101,93,112,78,100,108,105,112,120,102,100,103,104,96,105,99,101,109,99,113,96,112,112,99,102,99,83,87,105,106,103,105,113,98,109,114,103,112,111,97,102,116,110,110,108,96,100,118,103,98,111,120,106,105,104,110,106,96,86,95,112,96,102,110,104,109,110,109,103,107,104,106,98,104,109,117,105,104,104,134,100,97,117,106,104,116,114,113,108,103,114,99,117,111,107,109,104,102,107,118,98,112,110,94,109,107,105,95,125,98,98,102,101,109,98,104,110,87,98,97,103,111,105,104,106,109,98,100,82,108,108,94,104,99,111,94,106,93,98,108,106,102,104,119,89,88,117,79,114,102,93,99,95,101,91,104,105,96,99,107,113,90,93,112,109,109,111,100,100,101,110,102,113,101,100,113,98,110,102,104,102,105,108,99,121,98,114,104,103,121,101,104,100,112,110,103,103,107,106,104,113,113,95,103,117,109,113,111,99,107,99,105,103,106,108,107,107,115,92,106,100,108,94,115,106,109,105,107,100,116,106,98,109,100,100,112,117,90,107,99,99,102,103,93,103,101,97,100,103,104,110,105,93,107,106,108,107,101,106,111,113,104,113,108,102,112,108,108,97,112,104,114,109,112,102,108,89,108,111,101,110,113,108,87,105,83,106,112,114,101,127,103,87,109,107,99,106,99,111,89,108,101,98,117,95,107,112,106,98,123,104,106,108,98,88,87,103,104,107,103,94,106,98,109,105,101,104,95,103,111,108,112,106,121,119,105,105,111,115,109,99,99,110,109,110,119,104,105,99,110,107,109,111,95,106,110,105,117,103,98,106,107,96,103,97,101,103,91,99,103,100,112,118,108,110,107,113,103,97,99,113,110,114,96,117,106,101,111,112,105,112,101,106,109,103,116,102,108,103,101,92,112,100,116,113,100,101,104,83,99,108,107,117,122,108,102,104,115,122,111,105,116,112,109,101,109,125,117,107,112,112,103,101,100,107,119,120,109,105,107,100,109,92,108,118,101,108,103,105,110,111,109,115,79,99,97,105,115,104,118,100,101,107,112,111,112,101,98,106,112,92,112,121,107,103,110,110,104,102,103,103,89,99,104,108,118,97,114,110,105,104,103,101,106,103,109,105,111,103,98,122,92,101,111,107,129,101,101,114,87,102,121,98,111,93,103,112,112,113,103,116,109,109,113,108,105,111,100,107,104,102,99,107,105,101,100,103,103,113,103,107,109,107,111,110,99,107,106,95,117,105,117,118,112,110,108,100,114,98,119,119,99,112,93,105,103,110,104,117,100,110,110,129,104,87,106,109,113,113,100,114,109,108,121,127,112,105,101,111,106,102,105,119,107,112,115,105,106,108,105,108,100,104,104,95,109,99,108,98,109,103,105,111,107,101,96,111,117,97,110,113,103,109,109,115,99,105,111,107,104,105,97,107,113,111,108,104,106,95,113,112,106,103,87,109,114,120,106,108,98,105,101,104,115,98,100,103,109,105,115,110,104,115,102,101,105,91,93,92,106,117,100,96,108,109,101,114,107,103,106,116,100,103,104,102,104,113,103,101,102,108,120,102,105,95,102,104,119,98,102,102,117,113,92,100,103,98,117,95,94,98,109,99,112,107,103,104,102,111,106,104,104,101,103,117,120,103,104,99,100,103,110,106,96,92,126,94,109,101,115,112,110,112,103,109,119,115,98,111,107,112,115,95,107,113,109,105,102,109,128,116,116,102,117,105,106,110,109,123,105,110,111,105,98,110,100,105,101,123,104,108,83,101,109,101,95,104,102,98,107,116,104,107,103,109,102,103,116,114,113,108,105,105,113,101,96,122,106,105,104,103,101,101,92,104,101,114,100,112,105,105,125,109,100,107,114,105,103,107,101,95,87,108,100,112,111,108,106,114,100,106,113,95,113,105,103,113,115,100,95,106,115,100,125,106,102,101,106,112,107,109,112,92,99,99,104,97,103,94,110,105,111,96,105,104,102,94,136,107,99,106,95,117,97,118,115,107,123,109,102,102,100,108,97,99,102,106,104,98,108,104,108,98,112,105,101,98,95,124,106,112,117,110,117,103,115,112,114,102,113,105,100,94,98,113,135,97,89,105,97,100,105,96,97,103,102,100,106,109,103,109,102,106,121,98,120,102,109,107,99,101,108,103,105,106,101,101,105,92,112,111,108,102,107,105,101,104,106,113,113,102,112,102,105,117,116,113,110,108,106,121,95,113,116,116,113,110,116,98,119,107,114,108,101,114,115,118,114,127,117,135,153,164,213,228,249,262,287,279,262,326,248,253,232,228,274,221,222,187,203,166,175,138,136,107,119,111,126,122,113,119,103,141,112,100,120,120,124,110,115,122,108,117,106,99,94,87,109,107,98,105,106,116,109,103,115,102,104,106,103,100,95,108,112,101,101,106,106,88,118,108,101,129,101,98,102,107,112,95,101,113,105,105,99,102,101,109,97,109,93,102,100,114,101,80,111,102,91,102,104,93,103,115,103,103,78,96,113,100,99,93,112,106,100,105,98,114,96,102,88,94,100,111,115,91,90,101,91,99,121,98,121,106,96,102,108,116,96,112,109,94,116,106,109,106,98,98,93,94,113,125,101,115,116,106,98,113,111,103,102,112,93,107,97,101,102,112,105,100,112,111,109,100,113,101,110,104,110,124,112,102,105,98,98,99,105,97,106,108,98,104,104,112,93,119,112,99,105,114,94,108,112,106,105,104,93,99,88,117,108,105,93,102,109,106,103,110,102,102,96,106,109,101,114,97,102,113,95,84,94,119,88,94,107,114,100,102,102,113,101,98,115,124,103,113,103,114,113,106,128,110,113,73,101,99,108,106,96,100,106,106,101,105,103,107,103,102,104,96,121,101,105,98,110,104,108,108,97,125,111,99,101,109,113,107,103,100,109,81,108,97,97,100,92,102,99,105,112,110,115,96,105,95,110,100,117,113,116,119,108,103,94,106,119,100,101,103,110,101,100,107,106,111,96,124,108,85,94,110,111,112,113,98,101,101,98,109,112,99,113,112,112,102,102,101,98,111,109,112,102,99,95,107,105,95,109,108,103,118,98,101,94,115,106,110,112,81,93,99,115,116,102,110,98,110,109,96,100,102,99,100,106,101,108,108,115,98,104,105,105,102,114,92,111,98,98,100,109,85,109,89,103,91,104,106,93,98,113,112,108,100,95,88,107,100,94,113,94,112,105,98,105,97,99,112,100,95,104,97,109,102,98,94,99,117,108,97,97,94,108,96,105,98,110,99,96,107,108,87,104,87,108,95,101,100,107,105,119,112,94,110,107,95,96,100,109,102,107,99,104,115,88,113,96,90,113,111,108,98,103,98,102,99,89,113,107,100,111,100,106,126,96,105,101,106,99,107,98,100,103,110,96,111,88,106,102,103,114,104,102,100,108,106,100,107,88,99,120,95,105,116,117,103,103,101,116,115,98,105,102,102,100,109,113,115,95,102,101,99,101,104,95,106,111,107,111,107,109,96,113,104,112,109,91,109,100,97,99,93,87,111,109,108,88,94,103,108,116,110,109,92,97,95,101,107,102,102,122,101,102,102,113,102,114,100,104,99,87,104,110,101,113,110,113,100,99,108,131,97,105,95,112,102,107,98,103,105,100,103,117,119,97,106,78,63,87,99,86,104,116,107,101,108,117,96,97,107,96,102,101,96,98,106,100,105,98,95,102,108,100,123,115,102,107,99,97,100,95,108,106,102,97,101,111,88,101,93,110,100,103,98,101,105,107,107,99,100,108,111,116,91,98,84,105,90,98,103,88,100,105,109,107,96,93,95,106,119,97,107,110,103,100,108,96,106,104,102,94,100,109,128,96,113,119,124,102,104,99,99,105,91,102,102,106,106,93,104,105,120,99,103,97,99,108,98,109,105,97,112,99,112,108,97,107,99,107,100,101,83,112,107,110,95,103,106,95,112,101,100,109,104,108,107,102,96,108,102,100,105,95,99,110,100,113,103,109,96,101,100,114,102,110,86,107,104,100,105,102,102,113,101,94,96,85,100,95,111,104,95,114,99,106,104,106,100,94,94,104,116,112,107,104,108,102,118,109,113,107,108,107,102,86,100,121,95,103,117,103,105,113,93,98,96,104,90,105,91,94,91,105,95,100,104,97,101,95,108,113,100,112,98,91,94,102,91,99,106,100,97,95,105,95,97,109,103,106,116,100,102,95,109,103,105,97,106,102,107,117,108,105,101,101,110,103,96,96,103,109,99,107,113,105,101,103,92,95,111,91,97,112,105,120,92,96,94,102,100,104,101,106,104,118,106,105,98,87,98,103,99,96,99,106,95,98,117,94,110,101,83,97,108,96,102,100,103,104,104,99,93,98,100,110,96,100,107,122,102,102,100,100,91,110,102,110,95,102,108,103,92,98,102,105,99,93,113,104,98,99,109,83,106,116,119,106,97,104,78,104,106,103,110,99,107,100,105,83,109,106,105,110,99,108,113,120,101,102,116,110,124,105,101,104,94,100,115,116,93,96,101,104,109,100,102,104,99,113,100,98,105,93,105,108,113,106,101,103,104,99,104,110,108,98,106,111,93,93,111,104,82,110,101,101,117,80,103,112,113,96,97,107,117,108,103,103,108,96,92,113,113,92,101,100,111,101,99,106,107,88,100,103,91,116,111,106,105,103,103,101,100,103,103,99,96,112,110,98,103,97,110,113,100,99,99,99,125,110,101,101,103,99,113,116,101,112,96,106,95,93,102,104,81,105,107,98,79,87,102,105,97,88,98,104,91,79,114,95,106,106,109,101,103,108,81,96, +571.12738,110,113,98,103,109,115,97,103,104,103,95,101,101,110,99,93,101,105,102,108,100,105,105,114,103,114,108,102,103,108,97,100,116,103,106,87,93,101,107,101,95,101,121,107,103,98,103,116,100,126,105,108,108,113,101,104,103,109,117,97,107,67,100,95,108,100,103,106,87,98,77,115,106,120,106,104,93,124,113,119,101,98,120,107,104,106,91,109,103,114,103,105,106,99,98,97,104,91,100,101,88,98,95,103,96,102,108,101,109,109,99,99,96,92,106,103,104,102,102,111,106,101,111,115,100,110,143,94,116,106,97,111,98,105,111,115,100,104,99,103,106,99,93,105,112,104,121,111,95,104,97,123,104,94,108,106,116,103,101,106,107,78,109,117,106,103,95,101,116,107,106,97,112,96,96,100,110,104,135,104,111,112,71,103,92,115,104,84,103,108,103,90,112,109,106,117,101,107,111,121,95,99,89,116,101,97,99,112,119,113,98,103,100,106,103,99,91,105,91,103,101,113,106,97,106,109,112,112,104,109,90,103,95,108,109,108,109,109,104,104,103,98,114,114,108,106,91,96,110,99,104,135,113,103,99,105,101,115,101,111,98,111,94,99,100,98,98,101,99,87,110,88,108,92,119,117,108,118,113,110,111,102,96,109,114,109,105,104,107,114,111,106,126,102,99,110,108,107,113,107,109,109,104,128,89,114,105,107,99,107,83,117,110,104,109,109,98,113,84,104,108,100,117,99,129,94,106,94,103,117,107,105,111,101,102,91,100,100,116,108,92,105,103,107,111,105,101,109,122,106,113,115,101,100,106,72,112,111,106,110,111,105,99,108,109,95,107,97,112,84,113,95,107,110,112,108,96,103,90,117,102,108,113,100,117,98,92,92,108,109,113,100,106,108,110,101,93,96,97,112,101,107,93,109,82,108,99,99,98,112,103,104,103,118,109,104,96,103,105,103,102,104,98,87,110,100,109,96,106,107,103,110,106,93,101,113,105,110,101,105,108,100,108,104,99,105,106,95,107,108,105,93,101,108,97,104,106,103,110,109,105,101,103,109,106,101,104,106,96,104,98,102,109,121,98,102,116,100,99,108,101,103,130,119,101,107,120,101,94,95,102,109,115,119,96,107,105,103,72,96,122,102,99,98,108,101,97,107,107,108,102,95,115,82,109,93,97,109,100,103,112,95,112,109,104,109,110,107,102,99,99,97,105,89,105,100,97,105,101,110,105,108,105,107,99,96,111,113,105,95,96,104,109,95,100,106,112,100,101,96,106,100,99,91,99,104,115,101,117,107,107,104,116,100,88,121,101,108,102,105,111,104,114,97,89,96,99,104,110,97,116,96,98,103,111,107,94,95,103,94,98,116,106,103,101,106,102,114,101,104,106,100,92,100,108,105,99,96,112,102,107,114,104,106,107,104,103,108,109,95,107,108,104,106,94,97,119,108,117,91,100,103,104,89,101,107,105,112,116,113,111,97,108,101,106,92,102,116,114,112,109,130,110,125,104,107,105,105,96,105,86,114,105,105,112,108,95,106,99,109,106,100,104,106,90,101,99,121,105,104,106,102,102,91,111,94,104,103,110,91,98,99,112,103,102,107,96,114,113,104,110,96,106,115,104,98,99,106,108,106,100,101,111,106,103,90,98,99,102,104,103,97,110,91,100,92,102,103,121,99,94,108,98,99,107,98,106,105,99,116,105,103,105,100,100,111,114,110,117,124,109,109,101,104,91,106,112,115,103,104,100,96,102,105,101,107,111,112,113,102,104,75,110,109,104,116,114,106,106,101,113,113,108,117,100,101,102,116,105,105,99,109,98,111,111,108,104,106,99,99,102,101,103,117,106,104,106,96,100,98,95,105,104,99,111,110,100,96,107,113,113,108,102,103,80,109,102,103,103,98,91,99,111,103,101,102,92,110,93,119,101,89,114,111,107,99,94,126,97,104,100,107,99,100,96,107,106,104,95,99,96,109,105,98,104,106,124,100,116,104,109,109,102,114,99,111,103,104,108,98,94,101,121,118,101,117,92,110,103,109,108,101,108,97,122,112,91,102,99,108,104,112,94,96,101,106,112,105,111,102,99,106,107,108,80,95,95,111,105,100,98,109,103,109,97,106,108,83,96,101,102,108,110,118,95,107,105,112,108,99,97,98,102,111,100,113,115,113,100,97,107,118,91,112,112,104,91,92,97,108,109,107,107,113,106,121,104,96,89,114,99,108,93,96,114,99,100,113,111,86,112,98,105,111,100,89,102,107,102,113,97,95,100,111,106,126,102,100,107,120,103,99,85,105,104,116,112,117,95,113,117,86,98,112,118,105,117,119,121,89,113,108,116,110,132,128,124,152,163,193,221,246,288,269,294,283,353,281,270,254,252,224,207,177,217,186,163,138,140,129,130,113,135,110,96,104,112,96,105,105,106,132,103,106,91,117,112,115,112,101,121,119,113,122,100,117,109,97,117,100,100,110,108,101,103,107,107,114,102,108,116,122,117,98,106,106,109,116,109,113,117,116,118,104,119,102,98,105,94,110,80,103,100,98,104,106,105,110,109,113,103,121,107,105,105,103,92,101,109,89,116,102,109,106,108,106,103,100,112,101,101,104,109,105,109,102,109,118,118,97,112,102,122,97,117,111,103,107,100,103,109,111,98,99,113,102,98,91,104,96,102,105,104,102,110,109,94,100,113,102,99,100,109,105,102,109,108,98,115,114,98,109,113,116,99,96,110,98,103,102,114,111,99,102,117,117,95,102,103,113,104,106,123,99,98,108,103,102,99,92,98,103,112,115,92,115,106,108,113,111,112,102,115,102,105,109,113,106,108,109,102,105,112,117,103,106,107,103,113,121,114,105,103,116,105,102,115,121,112,117,107,120,102,111,98,94,105,123,99,118,107,103,109,94,104,120,99,112,105,103,109,98,104,113,111,111,106,95,112,110,111,112,100,105,108,95,106,110,106,103,110,100,103,102,107,113,108,111,105,94,104,105,106,109,113,111,113,100,102,110,100,97,101,117,113,103,97,118,95,92,111,103,100,106,110,95,117,107,104,103,95,111,110,110,95,112,101,102,107,105,106,105,112,104,95,119,114,104,107,106,109,99,104,103,112,96,112,104,115,106,101,98,109,96,97,104,106,106,99,113,103,94,101,114,101,109,112,107,102,103,104,105,104,116,104,108,118,112,102,104,110,117,119,113,96,101,98,106,106,109,101,119,101,104,113,98,118,102,113,91,106,106,111,112,110,101,107,102,113,106,98,108,105,108,117,109,111,110,104,102,108,105,116,96,111,110,114,110,104,103,105,98,99,107,76,111,102,97,106,98,106,108,99,98,108,107,110,109,111,99,96,108,111,104,101,96,101,112,113,109,95,86,114,107,107,107,107,116,112,99,125,105,108,107,94,111,101,102,106,107,97,112,103,104,103,113,105,114,101,103,98,111,114,110,104,103,104,113,112,105,118,107,111,104,117,110,106,105,103,108,105,101,96,104,100,111,102,99,111,99,107,110,109,108,97,94,102,104,101,107,103,103,102,97,121,98,99,98,102,116,105,108,118,106,113,107,110,100,109,95,114,105,100,106,100,106,110,101,102,106,95,109,101,112,111,100,92,100,98,113,103,98,98,107,110,115,99,103,108,122,100,104,119,116,107,106,101,106,113,100,102,104,105,113,99,102,95,94,110,101,105,102,114,107,101,116,102,108,103,101,103,104,101,107,103,108,119,123,108,108,106,113,105,107,85,121,95,107,103,83,112,98,109,99,107,106,109,113,116,102,107,97,107,104,82,111,109,99,104,106,109,114,91,107,137,109,108,116,107,101,91,107,112,102,96,100,110,96,99,108,103,106,93,107,113,95,100,99,63,100,106,111,104,98,106,103,103,108,99,119,109,114,106,106,107,111,117,102,111,105,114,100,104,99,104,111,100,116,89,117,101,112,104,106,110,112,109,107,99,102,103,112,106,102,115,96,99,99,117,96,101,107,97,117,115,102,104,108,98,114,118,114,105,104,103,103,112,109,104,109,101,112,109,106,119,116,116,129,107,106,109,107,114,105,91,121,107,98,102,94,98,116,99,114,116,101,98,108,102,106,116,98,105,109,105,110,111,114,95,112,111,102,101,106,92,109,96,109,102,107,106,113,110,107,104,106,79,108,106,103,102,127,112,115,104,99,96,105,93,109,120,108,119,105,112,96,100,110,98,106,108,92,108,113,103,98,109,101,107,99,99,104,111,104,104,110,100,123,106,105,105,101,112,105,117,114,103,108,113,105,109,101,103,106,109,112,114,101,115,116,119,126,116,103,105,104,99,107,113,109,109,102,112,106,105,101,95,112,96,83,106,107,95,97,106,105,104,112,99,111,104,110,107,102,102,109,106,109,123,96,97,105,107,98,96,117,102,109,108,94,105,108,114,108,103,113,99,111,110,111,114,110,106,99,104,108,91,106,102,109,108,105,111,108,98,106,101,103,119,106,95,107,100,108,106,108,111,100,110,130,113,108,91,94,101,117,106,105,96,110,103,100,107,104,118,103,98,106,103,111,99,106,108,101,105,90,109,109,111,110,120,114,113,102,106,103,100,107,116,117,94,100,109,107,101,112,111,106,102,105,105,95,107,102,115,104,95,111,105,108,103,106,112,107,107,99,106,111,96,110,95,100,88,98,103,100,110,111,107,107,120,119,109,112,99,92,114,102,110,83,104,95,92,104,112,110,108,108,84,104,109,103,117,95,110,92,106,103,107,114,111,104,107,108,110,107,106,99,101,114,110,100,101,91,102,102,106,87,100,104,100,103,106,90,124,99,99,96,95,104,99,122,87,101,113,118,142,110,111,102,106,95,123,114,101,102,105,111,87,101,119,109,103,107,113,102,108,112,108,108, +571.26831,114,123,96,107,109,108,96,97,94,89,98,104,105,112,122,105,87,75,90,117,104,100,105,108,113,110,121,108,113,111,103,104,105,123,96,117,99,101,103,113,112,110,99,107,103,90,100,106,91,96,105,102,101,89,109,119,99,107,114,99,106,118,98,95,101,98,107,108,110,88,101,75,103,95,95,106,108,103,104,116,106,109,98,84,104,87,108,105,103,102,117,101,92,113,102,98,97,104,105,108,94,109,101,115,95,97,101,99,103,92,102,98,100,117,107,107,98,112,102,106,104,101,109,102,106,107,113,111,110,112,104,114,108,97,124,97,105,105,108,89,103,104,100,101,108,106,117,108,106,96,104,110,116,99,104,103,116,95,114,106,108,114,109,109,99,86,105,106,102,105,103,79,105,113,117,105,113,101,119,111,113,105,81,108,108,104,96,104,80,97,96,109,96,110,101,118,102,103,106,114,105,117,105,94,94,105,109,103,105,111,102,103,117,114,96,95,102,107,97,103,100,102,117,104,95,78,117,100,98,96,82,88,107,115,109,115,114,101,127,108,99,95,108,65,96,105,109,111,90,106,103,109,96,99,94,83,101,109,99,106,94,99,100,110,104,95,104,101,103,112,103,111,104,102,110,102,107,98,100,94,98,99,108,104,116,115,104,108,106,106,96,104,114,104,109,105,108,107,104,103,121,109,96,89,112,103,102,103,104,124,101,105,108,91,107,106,105,96,100,105,101,95,105,102,107,92,105,103,105,112,104,96,102,112,101,97,101,97,101,106,99,104,96,97,100,108,79,98,112,103,105,96,110,105,107,103,117,99,93,108,90,101,99,98,98,95,92,85,108,101,117,105,116,96,109,110,99,103,102,106,102,113,103,105,105,99,95,107,102,88,105,98,87,96,98,91,105,109,109,97,112,92,97,114,94,96,110,98,117,105,89,89,102,103,95,93,103,105,118,114,104,96,97,117,113,97,96,102,112,102,98,102,89,109,105,94,100,109,106,119,106,90,110,105,100,100,95,95,99,111,111,118,91,104,107,107,96,101,110,101,111,105,110,115,101,99,105,98,114,108,110,109,111,111,105,101,89,124,107,106,104,111,104,91,108,107,114,106,120,101,104,110,110,92,87,98,102,92,120,106,107,113,87,105,108,107,94,105,138,97,109,98,103,102,103,98,112,122,87,94,99,94,111,98,113,103,106,108,108,109,116,98,99,109,96,110,111,97,123,100,102,108,97,106,95,95,102,93,92,103,109,107,100,105,107,102,100,106,107,101,94,109,106,100,111,106,95,109,104,101,102,94,100,105,110,105,114,108,99,102,108,104,104,95,98,108,98,101,105,109,116,112,104,99,105,104,111,105,112,114,110,101,108,90,100,114,99,99,110,109,128,107,110,104,103,100,108,97,109,98,102,110,95,100,105,116,78,112,109,121,101,100,105,113,122,105,116,100,106,91,123,115,100,101,107,106,99,97,103,98,91,106,102,123,111,103,115,112,92,122,107,99,103,119,92,96,108,113,102,106,121,104,120,102,103,114,103,105,110,84,95,114,105,105,94,102,99,105,102,109,104,99,114,105,100,106,112,97,126,94,98,103,99,99,107,111,99,109,99,98,94,96,108,102,94,100,96,131,97,103,102,99,116,103,105,109,102,99,108,108,104,121,107,104,89,112,107,91,103,109,103,94,98,99,102,98,110,100,90,100,107,99,107,96,109,92,95,100,113,99,108,102,95,102,86,103,112,100,91,94,97,101,104,83,97,110,108,106,104,104,111,110,111,105,101,106,108,103,75,114,102,111,109,104,104,104,101,110,111,110,98,104,108,107,118,111,102,114,109,87,108,98,102,103,116,108,107,100,110,124,113,109,103,108,105,98,106,105,109,108,110,97,112,101,106,111,105,141,100,102,109,99,101,96,109,105,99,98,109,91,112,93,98,103,104,103,106,98,87,107,87,100,104,74,112,103,81,111,106,98,118,117,87,110,101,94,118,97,92,98,105,101,99,100,100,111,102,101,103,106,105,101,94,110,96,93,109,88,100,106,79,117,103,105,91,112,101,101,92,98,95,98,122,105,114,118,101,99,103,110,107,101,109,111,112,101,107,113,106,103,91,103,82,110,112,103,110,95,103,107,100,100,113,111,98,105,113,94,106,92,113,107,100,95,105,104,102,102,105,107,111,96,110,108,100,107,99,98,134,101,97,102,103,105,113,107,107,93,131,94,117,111,116,107,99,105,106,106,108,92,103,112,103,104,113,104,92,98,112,101,110,101,103,105,102,132,101,103,100,106,100,103,104,106,110,94,121,101,113,100,135,106,107,104,100,125,110,109,109,107,100,103,126,118,130,126,133,148,149,192,207,238,282,271,317,315,266,293,262,269,248,216,200,197,211,158,162,150,148,135,109,116,121,113,108,106,108,122,102,112,108,118,118,117,91,109,105,108,113,123,113,116,105,115,112,99,109,101,104,103,110,114,110,109,99,119,113,105,102,120,105,77,111,94,107,107,98,95,114,113,103,110,123,112,105,109,106,104,100,106,94,113,100,110,102,93,108,112,115,107,104,103,112,103,103,105,109,99,105,96,106,106,114,112,113,99,74,103,111,101,105,106,102,99,105,89,112,104,99,121,111,108,110,93,109,110,84,107,98,103,106,117,121,78,102,104,117,105,110,100,107,108,103,107,112,101,110,117,112,111,109,101,123,112,109,103,114,99,107,99,124,109,110,119,109,102,107,115,110,117,102,87,108,104,103,103,102,98,116,100,92,116,93,103,107,101,93,84,105,113,107,105,109,101,107,143,113,111,102,106,110,97,100,105,105,106,95,101,102,92,106,105,113,112,112,113,104,91,106,131,95,96,99,104,106,115,99,116,105,113,130,105,97,111,95,105,107,127,104,113,106,115,103,116,77,109,122,87,104,91,106,104,106,113,105,96,106,104,103,100,107,102,113,106,100,95,117,101,96,106,93,111,100,106,113,108,104,111,91,103,94,94,108,115,106,95,109,105,110,114,117,107,110,113,110,107,100,105,100,102,98,100,105,105,101,110,113,101,113,116,106,103,102,98,95,98,113,110,114,104,102,117,100,104,102,95,110,103,107,99,104,107,105,103,113,99,112,112,106,106,98,88,100,108,107,102,103,103,104,111,102,107,115,100,122,105,104,116,114,107,107,113,99,90,113,119,109,117,107,103,105,111,105,101,103,102,112,103,113,109,110,113,109,110,104,105,100,95,109,104,110,94,104,106,104,112,103,106,89,116,108,108,111,110,106,114,107,102,115,103,111,90,109,111,105,106,107,106,104,100,105,117,103,108,109,97,101,100,109,100,112,103,108,105,104,105,104,109,99,103,104,97,100,117,102,111,106,102,104,91,111,96,99,103,100,103,100,113,99,93,110,105,110,103,107,104,120,111,102,97,108,102,102,92,99,104,107,105,104,99,109,109,106,102,122,99,119,109,113,105,124,106,96,99,109,113,106,103,117,96,106,102,104,108,102,99,98,120,120,111,112,101,115,120,101,102,92,110,107,88,100,116,109,115,109,118,86,111,99,118,106,96,120,108,113,101,107,105,104,95,97,96,112,107,103,111,114,111,104,103,91,108,100,114,104,91,99,109,109,112,94,107,109,104,109,87,85,114,102,103,100,100,93,110,107,101,108,109,108,109,117,103,108,116,101,101,103,109,110,95,94,97,102,104,96,113,112,122,106,108,105,111,117,104,116,100,86,96,102,107,96,96,98,99,106,118,116,110,102,104,100,106,103,119,104,115,94,93,107,108,103,115,115,121,102,93,106,104,102,109,102,99,97,104,102,111,100,106,90,93,94,110,117,110,109,98,113,104,120,107,122,109,110,113,107,99,103,108,91,103,107,109,104,113,94,110,107,97,108,110,91,104,100,109,100,107,102,91,97,106,105,104,99,98,113,101,110,98,107,113,98,102,105,110,105,106,104,109,107,88,108,113,102,103,102,101,106,103,101,109,113,108,106,111,107,101,95,107,104,101,109,103,113,106,107,104,120,112,107,98,109,104,101,104,98,93,143,102,112,110,109,99,104,96,100,94,109,101,114,102,111,108,99,107,102,107,93,104,109,124,95,86,111,110,114,100,104,105,108,91,101,94,96,109,105,115,103,91,109,104,101,95,99,91,105,86,98,103,101,95,105,98,106,104,108,101,107,106,107,107,117,107,102,108,110,119,98,113,103,111,113,112,109,94,103,109,111,102,115,99,98,100,111,112,106,108,105,100,94,96,99,112,103,122,98,96,108,98,96,95,93,77,95,104,101,104,102,94,107,116,102,113,113,102,114,113,102,98,101,103,107,108,114,100,109,105,73,97,83,109,110,109,113,115,95,111,98,107,103,113,108,102,109,103,106,108,118,102,120,117,117,100,95,111,102,104,104,99,114,103,113,104,103,95,98,116,95,96,99,100,107,106,107,110,108,98,97,98,106,105,100,98,94,98,102,112,93,105,104,109,104,102,106,89,123,128,96,99,104,95,80,99,92,102,98,102,122,109,92,110,104,124,97,102,108,102,109,100,103,96,103,118,107,106,96,94,114,102,105,117,109,103,101,103,124,101,110,99,99,102,100,95,100,104,99,110,98,93,81,101,111,113,105,106,112,115,100,107,99,111,122,94,99,91,96,103,112,102,100,91,101,109,108,101,109,99,99,96,104,100,94,108,107,96,94,102,94,100,102,101,85,98,96,98,93,119,107,107,95,102,95,109,117,103,109,99,95,106,104,96,104,102,112,98,102,101,115,95,110,104,117,92,92,105,110,108,103,98,107,102,109,91,103,87,105,112,107,109,102,101,101,101,103,99,98,113,109,102,100,95,101,106,106,91,113,119,106,113,106,101,108,106,109,109,100,111,104,108,112,105, +571.40924,100,118,112,104,90,107,109,100,86,121,92,101,100,101,105,98,102,121,101,95,113,117,104,107,104,108,101,91,104,117,113,101,86,107,107,108,95,104,114,103,111,100,94,94,102,123,97,107,104,113,98,101,96,95,104,108,107,88,99,86,92,110,68,97,109,112,101,108,99,99,117,113,126,106,108,114,114,105,114,96,93,98,128,98,96,114,95,106,109,119,102,127,101,105,124,105,98,98,77,100,128,100,92,94,112,102,101,105,106,109,116,108,114,108,110,80,104,105,89,100,91,104,108,105,104,116,122,106,110,105,117,103,87,108,103,98,104,100,114,102,114,107,97,104,99,100,101,107,105,106,93,107,107,106,88,94,97,105,102,97,91,108,101,109,111,93,86,80,104,101,117,92,91,106,114,104,110,91,108,102,93,93,118,97,95,112,95,103,103,97,102,84,106,102,103,103,107,114,106,100,105,101,102,97,98,93,109,101,111,107,97,94,109,111,113,123,101,100,109,99,109,95,107,99,112,112,103,109,105,106,104,103,108,118,99,104,108,108,115,109,117,117,98,101,96,102,98,117,111,101,105,103,105,114,113,100,101,88,108,120,95,132,95,115,103,98,97,94,105,99,110,103,103,107,102,106,92,103,101,102,99,98,104,104,95,110,103,113,111,92,105,111,118,112,92,125,100,105,117,118,99,105,117,78,104,104,113,121,105,107,102,110,105,101,107,107,107,113,111,116,94,106,109,108,106,100,113,99,106,116,107,100,104,102,107,98,105,100,102,111,108,102,75,94,101,107,113,110,103,116,102,111,117,110,100,105,116,111,100,103,102,103,102,102,74,106,112,103,101,114,105,113,109,103,107,99,107,121,106,105,108,109,102,111,99,99,111,116,121,88,116,101,98,116,103,104,105,106,103,111,98,102,106,99,110,104,108,110,97,95,99,97,100,118,106,91,112,105,101,108,103,96,98,104,105,95,108,110,103,119,96,94,105,114,121,109,87,106,105,114,109,108,101,104,104,102,95,98,100,106,103,86,114,104,109,107,111,108,103,94,117,104,103,111,98,122,102,108,108,117,103,103,100,130,94,103,99,121,101,110,98,117,108,110,106,114,110,104,112,94,99,95,104,103,102,106,100,112,77,107,104,107,118,113,102,123,98,100,114,96,102,109,113,100,116,98,99,104,99,96,102,106,110,110,107,101,92,117,103,108,102,113,109,112,95,97,111,117,106,113,101,97,101,108,111,114,112,99,123,85,101,102,113,104,113,119,116,119,97,90,105,103,98,121,103,115,89,107,99,105,101,88,117,118,91,117,111,122,103,99,111,84,103,106,106,110,111,112,102,74,112,105,98,111,106,89,110,110,107,106,108,117,109,101,101,109,95,95,103,115,95,87,101,111,118,102,108,100,112,99,109,106,101,105,94,103,112,105,109,105,107,106,104,120,110,102,120,99,114,109,105,91,106,103,106,107,115,99,98,102,118,126,117,112,99,91,110,112,99,98,114,111,105,108,101,100,109,116,109,112,102,110,101,103,99,103,105,97,99,118,105,100,110,98,110,105,101,106,104,99,113,105,82,108,104,88,116,99,118,101,100,105,109,109,102,96,110,109,99,104,111,108,99,104,100,105,93,101,103,118,112,103,100,109,106,101,102,100,110,104,112,106,104,107,97,105,104,108,107,101,110,94,103,112,100,106,106,109,107,111,115,102,103,100,105,107,105,100,102,101,100,104,90,117,100,109,95,110,95,114,106,98,105,104,100,102,99,104,96,112,105,102,116,102,102,95,117,113,103,109,105,110,110,102,105,106,107,108,109,119,99,90,105,116,108,133,117,101,88,108,111,103,103,103,116,100,110,110,100,117,106,111,107,106,119,115,110,110,87,117,119,121,109,102,100,117,99,101,137,103,98,99,106,104,99,111,121,113,99,97,87,93,121,110,93,99,99,96,96,104,99,114,117,103,109,121,100,95,114,101,102,101,105,109,99,99,112,101,103,103,97,100,107,112,101,99,104,97,100,92,103,102,108,104,107,101,95,107,99,105,104,111,116,121,99,103,119,123,105,104,104,95,112,103,104,98,103,109,114,96,104,121,112,105,109,111,99,98,101,105,94,106,103,108,110,104,108,102,118,99,113,105,97,92,113,108,102,102,111,102,106,103,100,100,112,110,107,110,94,115,117,103,102,102,107,110,101,99,98,99,101,106,107,107,98,104,104,108,107,112,100,121,94,111,122,104,104,98,111,100,111,103,106,103,100,118,97,108,104,116,96,111,106,103,107,114,111,105,102,102,98,104,97,103,94,106,105,107,113,138,118,118,115,106,103,112,132,108,126,118,120,120,113,111,137,132,152,162,138,188,203,231,271,295,284,319,278,259,268,243,223,196,282,240,218,164,173,164,147,111,131,127,104,147,114,118,103,139,110,115,97,131,121,117,104,107,94,105,115,94,102,109,102,91,101,103,104,102,120,111,94,106,121,109,101,118,109,98,98,94,94,96,112,96,110,114,108,98,116,108,116,114,107,107,112,98,107,94,93,119,98,107,76,106,110,108,97,117,120,96,120,109,104,99,109,139,116,114,106,121,94,106,104,103,98,122,98,109,113,108,101,97,114,96,107,99,104,113,96,113,81,85,107,94,99,123,116,99,115,93,105,99,104,112,111,110,115,108,108,105,101,101,90,101,107,108,108,101,107,112,113,97,107,112,84,110,102,104,108,103,81,103,104,112,112,110,105,124,109,103,96,117,95,104,95,95,104,103,102,97,100,100,97,117,120,120,106,121,113,93,102,101,98,108,112,103,118,113,113,120,112,71,117,100,105,127,109,106,109,111,106,108,108,116,93,112,112,119,113,91,111,105,99,118,127,112,117,102,104,109,107,106,114,121,121,97,106,106,105,103,109,108,115,114,98,106,105,110,107,104,106,109,103,100,96,107,95,105,100,105,101,123,105,111,99,94,111,102,109,96,99,97,100,87,109,99,106,113,107,108,68,119,99,113,107,103,104,102,113,101,95,102,119,99,109,103,112,103,105,114,111,117,103,102,108,108,110,107,107,101,117,113,113,106,100,117,108,104,110,100,109,107,95,109,121,102,99,96,115,98,98,113,107,123,108,100,92,98,102,99,101,109,106,113,102,111,117,100,101,135,99,102,101,113,111,97,120,102,112,101,113,112,100,102,103,91,112,112,124,106,104,112,98,107,133,106,120,100,115,117,114,113,102,105,108,119,111,111,114,105,103,110,110,106,102,102,100,100,100,102,96,91,106,92,96,109,103,108,105,100,100,95,110,100,103,104,96,104,116,84,118,136,102,111,99,107,112,109,95,107,95,111,100,102,110,106,126,105,100,97,99,104,106,99,110,100,110,106,112,114,121,104,98,109,108,102,112,107,101,88,92,110,115,113,113,101,91,101,101,95,110,102,104,110,102,98,111,103,101,109,103,102,109,112,104,109,110,99,103,113,112,105,109,105,100,108,108,113,117,103,108,109,105,113,109,102,104,98,112,100,105,104,105,113,97,100,112,113,98,98,95,109,103,107,105,111,105,97,107,104,120,106,100,114,108,96,113,108,102,95,112,94,114,123,101,103,109,100,97,105,96,110,106,97,112,109,110,100,100,111,112,102,123,106,116,100,106,105,104,105,103,83,95,113,100,112,106,94,109,105,108,104,101,104,100,108,103,98,102,100,119,117,105,115,88,106,101,100,96,109,99,109,121,114,102,112,111,99,107,105,101,113,104,91,114,100,98,109,129,100,110,109,117,107,111,106,104,100,105,109,98,97,96,103,91,104,113,110,106,101,118,105,108,109,104,110,74,102,100,99,98,96,102,86,95,123,110,110,109,103,100,108,103,104,99,121,102,106,103,105,107,106,95,100,105,101,107,97,100,117,121,103,95,106,101,100,99,109,102,105,109,102,117,111,100,106,117,102,115,107,100,106,106,100,98,104,93,111,99,105,105,119,112,95,111,123,103,99,108,104,117,84,108,111,103,108,110,110,104,90,102,96,110,96,109,109,108,109,104,98,100,120,112,102,106,104,108,105,99,91,110,103,110,113,107,114,90,103,102,98,102,117,101,111,104,109,103,106,114,98,100,104,137,101,99,110,116,92,98,92,98,93,103,104,112,106,95,106,118,105,123,137,117,105,100,102,113,88,110,100,104,101,109,105,103,87,105,107,109,106,104,108,112,110,111,97,117,98,105,108,107,101,112,112,102,110,99,98,109,88,92,95,91,107,97,115,93,111,120,101,109,107,97,104,121,106,109,89,102,94,92,89,92,84,112,105,105,100,106,104,134,99,102,106,102,109,106,105,98,103,111,103,106,103,104,107,107,104,103,115,105,114,97,101,101,101,105,110,101,108,99,100,102,102,106,111,117,101,94,93,88,96,93,125,106,109,99,102,105,108,108,100,101,101,106,106,90,104,98,105,99,97,98,118,99,95,112,104,115,97,91,107,103,108,99,112,106,93,95,104,95,97,86,108,112,108,108,113,100,111,99,96,109,117,103,109,110,97,97,106,107,112,114,112,96,100,100,108,98,106,103,111,113,96,95,108,112,100,85,102,90,102,110,105,108,96,106,100,107,97,100,109,105,111,103,107,109,104,89,110,102,99,102,95,109,103,106,89,107,107,97,100,114,101,90,115,103,100,111,113,86,108,95,95,89,97,109,105,107,106,112,105,95,114,104,103,94,107,79,93,101,110,99,102,107,100,113,102,116,107,107,123,100,106,111,101,101,111,103,104,105,103,101,110,101,102,103,92,101,93,105,113,101,114,101,93,105,98,98,97,110,103,109,88,108,112,104,108,104,101,99,98,105,126,105,99,97,111,107,67,99,103,114,104,102,105,92,98,104,114,103,91,112,87,109,127,112,105,105,113, +571.55017,104,112,109,96,97,102,114,101,94,115,106,98,97,98,99,101,99,104,109,104,102,95,100,102,104,106,108,110,105,113,100,102,92,84,126,88,120,96,104,104,110,111,108,104,103,106,98,113,107,106,100,113,109,104,109,100,97,99,113,100,109,113,106,96,100,110,108,95,107,106,96,108,95,111,108,98,99,111,85,83,117,109,113,105,99,115,106,64,101,99,109,103,110,113,114,107,97,57,95,103,107,97,104,112,107,109,103,105,107,108,94,106,109,89,116,107,102,98,111,95,94,96,113,111,118,119,101,100,118,114,110,109,110,104,110,105,117,100,101,93,88,106,117,108,83,102,99,102,103,109,113,107,110,96,103,88,111,101,118,99,94,94,109,99,104,105,108,99,107,111,108,103,96,97,108,100,100,103,117,92,92,112,103,98,98,121,106,101,109,104,115,101,95,110,111,113,107,96,109,106,100,125,116,109,118,108,100,104,108,113,99,87,116,105,98,113,103,104,95,109,117,119,99,106,116,110,104,98,121,103,98,106,111,111,111,115,106,103,100,110,108,104,107,104,97,109,101,111,111,107,100,99,98,95,101,128,103,97,104,102,119,115,102,101,94,108,99,100,109,103,97,101,106,113,114,113,108,103,118,101,95,104,127,97,95,108,94,98,113,110,106,110,107,95,117,112,109,100,110,100,103,96,106,105,91,107,103,108,109,103,112,116,102,116,108,103,112,110,111,96,105,116,84,102,103,109,92,100,112,114,106,98,90,103,92,111,124,108,100,99,103,105,101,104,98,107,107,110,115,109,105,110,107,120,123,92,108,115,120,111,107,108,103,98,94,100,113,123,98,113,104,96,110,110,95,101,103,100,118,103,107,104,95,91,100,101,104,111,105,109,113,95,108,99,99,124,100,100,96,112,117,105,109,91,113,101,109,106,104,103,107,103,102,107,100,100,111,108,113,110,114,113,108,113,108,103,109,109,110,121,102,110,107,104,96,115,102,120,103,97,103,74,99,116,101,99,109,103,99,107,105,98,104,101,113,117,106,108,106,112,109,120,97,117,100,107,112,106,102,90,110,104,111,103,108,103,100,94,108,102,93,116,99,112,107,103,102,110,97,109,110,113,98,106,100,106,98,103,94,110,112,107,103,107,101,103,98,105,105,103,113,106,104,114,96,94,114,102,100,102,96,106,100,114,97,104,111,98,106,108,107,102,117,108,102,105,101,107,95,106,105,114,115,114,108,104,98,100,110,108,96,108,103,105,107,103,99,103,100,104,81,103,114,118,108,95,108,100,102,112,101,98,110,108,113,99,106,95,104,105,98,95,102,107,106,107,110,107,109,101,109,114,98,108,104,114,112,117,111,102,113,99,110,109,90,110,105,113,101,111,118,88,109,109,100,109,99,124,113,105,99,102,101,110,93,98,98,123,96,111,103,101,108,143,98,104,103,94,110,103,112,109,105,100,100,97,100,99,124,106,96,117,111,101,101,109,120,111,102,98,119,112,100,108,109,95,106,97,105,114,108,99,102,109,116,105,116,104,97,91,99,102,113,113,103,95,100,92,94,100,114,112,102,104,109,89,91,107,106,107,106,110,105,101,112,107,104,101,97,110,113,107,98,102,98,102,91,103,99,111,102,104,107,123,100,96,102,104,109,105,103,124,108,98,107,102,95,95,112,112,109,106,103,103,114,110,110,106,97,118,100,116,112,105,113,105,100,93,108,96,114,106,111,105,102,108,95,106,108,86,117,105,102,115,109,110,95,110,95,102,100,110,100,108,120,101,110,100,108,105,111,107,108,113,106,113,93,102,97,109,101,99,107,100,103,111,94,117,113,99,106,99,103,104,109,111,124,121,102,98,101,76,104,97,112,107,110,100,99,98,106,107,106,104,118,113,112,105,110,101,125,105,109,109,96,100,101,89,112,93,107,99,118,99,102,104,105,118,112,104,103,101,101,103,114,101,93,105,110,115,106,104,100,117,87,117,110,97,94,105,107,112,105,109,102,108,98,119,111,121,100,113,114,106,90,103,103,110,98,105,120,111,99,103,97,99,100,113,98,106,104,115,110,112,110,113,108,105,108,102,104,96,120,113,95,112,105,104,103,96,99,108,99,110,109,112,102,103,107,93,113,99,105,105,111,112,113,106,109,97,97,113,109,107,109,114,101,118,104,109,109,106,99,117,94,100,101,117,98,100,108,106,116,103,109,116,108,105,107,98,105,107,103,93,95,97,110,106,110,67,109,98,100,106,96,103,95,110,103,113,106,101,99,104,110,101,108,89,101,118,101,100,102,118,113,115,97,95,99,111,120,113,120,101,105,128,115,105,125,131,114,123,121,113,138,111,143,151,149,170,207,219,258,299,302,292,298,271,276,296,247,218,277,171,193,171,165,150,138,115,115,126,119,117,113,127,133,105,106,106,125,117,116,111,111,107,117,99,105,109,104,111,103,132,111,108,112,112,107,97,107,113,98,104,112,109,109,104,106,96,108,110,102,102,105,109,98,103,95,104,109,110,109,103,92,101,102,105,105,113,89,77,102,107,113,111,117,107,110,100,117,96,107,96,100,105,108,101,88,83,98,105,106,121,95,103,96,116,94,103,96,105,103,95,117,103,104,103,108,101,94,109,115,99,97,102,113,104,109,97,119,105,105,105,103,111,101,101,103,98,123,110,99,88,95,97,111,104,106,113,113,108,117,84,104,105,114,112,93,103,120,109,102,113,108,106,104,109,111,109,109,104,103,99,101,115,103,106,111,94,105,91,111,92,105,104,96,104,120,108,73,101,96,107,105,94,94,128,113,106,102,101,117,100,109,110,104,108,99,108,94,127,101,107,100,102,105,104,103,115,107,118,104,103,125,101,104,103,108,117,105,111,101,97,100,108,100,103,114,96,98,106,108,103,114,105,104,114,114,103,91,106,109,86,111,106,105,99,119,98,111,102,113,103,91,96,113,111,93,111,95,105,95,98,105,102,99,104,100,105,110,105,102,87,99,104,104,100,100,134,106,113,106,112,108,105,105,97,114,106,71,106,116,104,101,106,109,95,109,107,102,115,94,102,95,113,104,99,103,94,113,105,106,110,102,115,115,104,108,108,113,108,117,112,112,107,103,92,103,109,106,94,86,103,101,103,111,100,98,113,101,100,94,106,108,116,106,100,106,109,116,112,99,110,112,109,112,106,111,105,108,113,108,108,108,106,106,81,102,109,83,117,96,99,99,103,98,104,101,110,98,102,109,103,105,73,108,110,99,95,103,98,124,107,107,100,116,106,112,118,100,102,104,104,100,114,104,102,114,106,107,105,108,118,109,110,96,102,108,103,103,107,103,104,107,108,107,97,123,105,102,108,118,107,98,101,94,99,111,102,108,109,100,92,109,119,97,105,111,99,98,105,100,97,96,106,95,106,114,101,107,95,102,113,95,114,104,112,106,81,109,109,109,103,100,97,102,100,116,96,99,125,106,96,105,109,113,100,109,102,114,115,102,106,99,114,114,92,100,105,110,119,114,103,112,110,97,94,97,100,84,110,93,104,109,107,105,105,123,116,107,102,110,107,100,111,96,108,117,110,100,106,103,96,96,105,115,120,105,124,103,98,113,104,103,103,107,108,111,103,95,104,113,109,108,99,99,107,110,109,102,109,100,113,108,108,92,108,106,98,102,108,88,107,97,107,119,89,107,104,113,91,102,106,97,101,113,104,106,95,109,96,94,95,119,113,101,110,101,107,98,98,94,97,109,96,100,107,106,99,102,95,100,87,102,106,106,104,104,103,101,113,89,105,106,104,99,106,98,105,105,103,99,106,114,113,97,102,98,111,106,100,102,96,100,102,102,117,114,116,100,104,108,106,104,111,109,106,102,96,108,104,113,92,114,107,112,96,110,100,111,113,113,108,98,105,110,106,108,109,101,102,104,102,97,100,104,102,132,105,110,103,104,111,107,110,103,113,105,97,102,110,105,105,105,107,94,111,101,104,117,99,107,120,108,97,111,105,101,96,104,102,100,103,104,103,119,88,113,106,105,98,103,110,117,107,95,105,99,99,97,89,99,94,106,102,105,101,114,98,117,106,101,104,129,97,95,106,104,103,76,113,102,99,107,106,105,105,103,104,104,108,94,104,96,105,93,122,104,98,86,107,115,100,100,109,98,112,116,103,111,110,107,111,106,85,96,105,108,104,105,105,91,106,107,109,105,116,100,113,82,99,109,120,112,104,108,103,105,100,94,113,105,98,102,99,100,98,102,102,108,110,115,108,102,107,102,101,94,112,96,100,112,106,104,114,116,98,108,100,83,108,121,75,115,106,106,109,120,93,112,101,103,106,111,105,106,99,109,105,106,104,113,102,99,98,90,108,112,93,102,98,108,115,114,83,103,101,108,101,98,95,107,104,102,99,95,108,95,108,104,99,103,111,110,99,103,126,96,98,104,113,109,103,98,99,104,107,98,116,98,86,105,89,109,107,103,103,102,104,94,97,84,108,110,104,105,108,105,95,104,77,97,107,105,105,103,109,98,98,117,97,96,94,102,107,120,105,92,87,111,115,116,105,106,110,91,94,108,109,97,92,100,107,104,108,106,100,89,103,94,101,107,99,100,88,105,100,103,93,115,93,112,106,122,113,110,113,119,109,97,97,80,111,106,111,110,102,98,108,111,104,102,104,97,107,97,94,110,109,94,111,107,102,102,99,87,91,111,107,99,98,106,114,103,102,104,105,110,98,112,96,97,104,117,108,100,103,107,102,95,110,95,110,117,107,105,104,107,90,101,120,104,93,125,103,108,106,108,110,104,92,85,99,112,115,105,101,102,104,123,101,92,104,98,108,93,113,118,107,112,92,99,92,111,94,103,117,106,100,90,110,98,116,99,105,110,100,110,99, +571.6911,109,86,90,112,111,109,111,106,101,103,91,103,96,96,102,91,98,116,109,99,98,102,107,102,100,119,91,112,99,105,114,103,99,95,105,100,108,104,110,89,98,106,99,80,101,106,101,99,90,101,119,88,100,99,113,92,100,110,112,95,95,87,114,97,99,101,104,99,105,84,102,98,93,99,114,117,111,101,100,112,108,104,107,105,96,100,106,92,102,107,101,112,92,107,106,95,98,109,97,97,109,110,97,87,112,101,103,99,117,103,98,100,112,95,104,101,94,115,104,102,105,100,110,108,108,110,117,110,115,104,112,119,97,120,93,123,121,105,92,103,110,99,110,99,104,74,100,97,97,100,103,108,104,101,89,97,106,107,98,68,110,101,110,118,100,116,104,101,99,107,102,101,106,109,98,108,99,105,103,112,105,91,106,104,104,111,108,98,112,96,99,94,99,115,99,96,115,107,110,102,108,101,109,104,114,111,107,94,99,100,109,114,103,100,109,103,93,106,101,107,106,108,99,92,101,112,99,109,115,107,99,94,100,100,112,104,119,110,116,89,100,104,103,101,102,100,89,110,114,71,112,88,99,105,101,104,105,106,96,101,83,108,104,98,101,113,98,99,102,94,107,100,107,108,104,95,100,101,104,110,108,103,109,107,122,93,88,99,104,111,98,102,88,103,91,99,114,110,114,90,98,102,112,109,108,104,115,104,102,94,104,108,100,102,108,107,106,105,98,104,103,105,105,109,82,96,125,98,104,104,100,100,75,95,105,102,110,113,86,77,100,101,91,118,107,108,107,109,99,99,108,98,109,94,82,109,106,95,100,101,113,101,100,101,118,107,98,110,107,106,116,103,116,101,109,96,102,109,105,111,99,102,103,104,102,112,99,96,112,94,100,112,110,117,113,99,100,105,82,92,101,107,107,99,91,106,102,115,111,98,93,105,92,114,109,97,114,105,109,102,97,95,99,95,99,114,103,106,104,108,100,120,115,91,98,100,106,107,103,96,101,113,106,102,106,109,111,106,99,120,101,96,95,98,103,99,103,112,102,116,106,115,99,104,86,112,105,106,100,105,108,112,110,108,117,97,102,102,110,109,93,107,103,113,105,101,109,99,89,104,110,102,104,103,105,103,94,103,103,90,103,108,112,100,98,100,100,113,111,106,106,111,104,101,90,132,104,105,101,103,107,103,111,107,105,109,111,105,105,110,105,100,105,115,113,110,101,113,109,106,107,95,98,91,112,95,114,100,102,99,103,96,106,106,102,106,110,113,105,106,106,102,97,119,104,107,98,101,101,100,108,110,102,103,100,87,110,98,102,106,97,102,103,100,113,113,103,106,106,101,109,121,100,114,106,100,104,108,107,106,99,103,117,99,108,100,109,108,110,111,100,111,104,115,109,94,116,98,104,105,103,121,110,105,104,102,104,96,105,110,96,103,107,105,95,108,93,109,113,102,100,109,111,112,107,95,108,115,109,111,99,98,116,108,83,116,113,117,103,109,111,112,106,116,98,105,107,109,109,101,117,110,113,99,96,110,101,107,104,96,105,116,113,105,96,99,100,101,101,116,106,94,112,101,112,107,116,109,110,87,80,103,105,103,100,116,99,103,117,100,109,100,107,106,108,98,114,105,108,104,117,93,100,103,86,106,103,115,107,91,113,100,101,134,101,101,105,108,110,119,106,101,92,88,102,124,98,100,99,105,103,87,98,109,103,113,99,107,103,99,103,105,110,109,97,108,100,118,115,108,97,105,105,101,108,121,95,89,108,108,110,120,96,110,96,108,118,106,119,96,100,99,106,121,103,116,95,99,104,95,118,96,93,106,98,100,93,101,108,111,117,105,91,101,109,113,97,102,100,122,110,108,113,105,115,111,110,112,97,99,106,102,114,103,105,100,97,98,116,95,113,103,99,105,109,100,104,87,107,108,94,97,88,127,99,102,103,99,106,105,105,105,98,104,104,111,76,101,113,108,93,122,98,105,101,104,91,102,103,106,103,111,99,79,105,106,114,116,105,99,100,101,104,108,99,93,108,107,99,96,104,121,100,103,103,101,74,102,98,87,94,113,95,104,99,92,103,104,116,99,98,72,108,109,98,109,104,102,109,104,99,106,104,118,92,97,96,103,107,109,110,114,79,98,104,101,115,103,97,117,107,104,95,105,116,103,103,107,117,90,108,97,106,96,98,105,91,107,104,114,96,101,101,111,99,102,101,107,102,102,90,95,107,103,118,98,102,103,92,100,102,98,89,104,106,99,93,111,106,119,102,106,102,103,99,105,112,104,118,108,94,109,103,110,99,104,108,117,101,121,106,114,122,105,102,103,128,106,124,98,127,112,128,129,130,106,135,162,189,211,214,274,288,301,287,307,284,270,261,294,268,250,212,186,228,166,144,148,135,135,126,107,125,107,121,86,95,110,108,104,98,110,124,98,105,111,103,103,111,113,106,99,99,107,101,117,99,92,72,111,114,104,93,113,113,124,108,108,117,100,107,112,107,103,107,107,119,99,117,106,109,103,104,96,104,87,103,109,95,110,101,100,109,108,92,105,101,101,124,110,112,111,113,95,103,108,99,74,102,102,88,130,97,102,106,116,112,98,113,92,103,116,116,100,96,107,112,97,106,109,107,97,105,86,99,107,115,109,120,121,105,113,98,100,107,99,108,105,100,98,93,106,121,108,111,111,111,102,96,106,99,99,104,108,105,101,110,109,103,97,105,104,96,108,113,101,109,116,98,116,103,116,100,113,113,99,108,107,100,107,112,117,117,116,97,105,106,99,103,84,104,115,97,101,112,97,116,108,123,117,108,110,101,113,99,106,106,117,99,113,101,116,113,106,110,111,114,113,104,116,110,101,114,108,113,97,95,103,103,112,117,105,99,112,86,109,100,105,105,109,114,99,106,99,90,106,120,112,109,93,95,107,107,99,106,105,109,99,98,99,89,109,105,110,105,91,119,106,110,85,103,106,105,98,116,109,98,103,113,101,107,114,101,115,98,106,110,102,108,114,105,101,112,104,120,131,103,105,101,100,99,119,95,106,99,106,109,80,108,107,100,90,108,105,104,106,110,108,109,94,106,112,109,107,107,112,104,98,105,105,110,109,99,107,109,113,102,104,107,117,103,98,116,115,123,87,113,102,103,108,103,107,108,105,110,108,92,110,106,114,115,105,99,114,86,104,100,105,96,96,122,98,100,104,107,89,107,106,97,114,94,103,91,102,97,106,102,101,99,104,126,107,105,121,117,98,105,112,103,98,105,103,133,102,104,98,101,112,108,108,99,104,98,99,96,115,109,97,107,112,108,112,112,100,108,104,104,109,116,100,117,110,110,111,107,98,111,112,100,95,97,99,106,110,107,101,95,112,97,94,103,109,100,108,100,105,103,111,112,115,105,109,124,110,92,105,102,115,107,114,103,102,98,99,102,88,107,100,102,111,95,132,103,104,94,104,105,92,104,77,113,104,111,94,106,101,113,105,108,103,105,114,94,113,106,99,112,67,98,102,113,95,109,112,112,109,105,110,94,127,117,103,99,110,106,113,107,101,92,120,109,92,101,89,110,112,98,109,111,94,103,109,104,100,108,99,106,113,110,75,108,100,106,76,97,105,107,98,109,108,106,113,102,109,98,86,107,99,97,93,112,111,103,99,97,117,99,103,97,100,109,125,104,103,110,113,102,88,102,109,108,108,106,99,121,106,106,111,108,108,110,103,106,102,101,107,108,100,104,108,106,98,95,105,117,125,115,102,104,102,98,106,98,108,106,107,120,113,110,101,81,95,99,110,92,96,105,106,113,100,105,90,112,113,96,104,88,87,90,96,98,109,95,94,98,107,112,104,112,111,105,128,98,120,112,100,103,108,102,105,93,106,109,94,110,84,124,108,108,99,99,106,99,100,98,113,108,103,106,107,101,103,104,108,117,118,99,106,101,121,100,109,94,113,96,97,115,103,96,108,96,107,105,113,113,94,111,105,97,109,111,129,104,106,120,99,96,107,106,103,108,97,98,103,98,109,106,100,108,107,101,96,96,108,72,102,98,108,113,93,113,107,104,99,101,115,105,98,107,107,101,104,107,110,105,84,102,104,83,91,115,106,110,101,109,112,110,107,99,101,98,103,104,90,102,99,104,113,107,101,105,112,104,88,113,110,104,92,103,106,108,98,115,97,90,103,99,110,110,104,104,103,104,111,96,96,92,113,101,100,90,99,117,107,104,105,111,106,116,98,95,108,102,99,102,107,106,104,98,106,98,96,95,113,101,103,114,105,111,109,103,106,119,114,111,104,95,101,106,84,111,104,95,93,108,104,106,112,104,111,104,108,105,105,94,97,113,98,104,95,83,116,100,107,98,106,117,104,95,100,91,100,102,106,87,99,100,105,112,102,97,85,93,117,106,114,107,112,101,102,114,99,99,98,108,105,101,88,132,100,99,110,106,101,105,108,110,97,104,100,99,97,95,109,105,103,99,109,113,107,107,100,102,113,105,109,110,80,120,111,101,105,102,104,109,99,99,109,92,130,97,91,83,104,95,100,100,98,102,111,108,115,111,98,109,105,107,104,97,104,96,99,113,106,95,96,105,72,100,105,108,95,102,111,102,128,103,101,111,98,102,90,101,95,108,105,115,108,106,104,108,93,126,109,107,104,116,102,106,89,107,110,104,102,105,98,113,108,112,107,104,112,112,96,105,87,102,101,77,100,84,95,85,105,109,103,102,113,109,105,110,109,114,96,96,96,98,106,107,101,97,117,114,110,119,117,106,101,101,98,102,101,114,113,99,73,107,87,101,105,106,95,98,101,107,106,108,93,101,103,109,103,102,108,98,107,89,112,127,100,103,94,96,97,132,107,109,110,128,93,107,99,94,92,104,104,98,97,92,100, +571.83203,108,111,108,100,85,110,105,105,98,96,98,113,103,97,105,101,100,107,107,103,109,103,86,95,96,98,113,105,111,124,101,106,99,98,96,107,99,110,91,98,105,103,110,113,109,109,97,92,99,132,97,106,91,104,109,109,96,90,108,72,101,88,118,110,110,106,98,107,106,92,106,103,93,111,99,102,114,94,104,95,101,99,104,92,95,113,87,104,110,102,98,101,103,106,106,106,97,105,100,91,90,101,98,99,105,99,93,107,109,102,101,100,113,114,101,101,111,97,111,92,100,100,106,100,112,111,107,100,116,108,118,100,95,100,92,106,109,98,118,109,96,110,104,103,112,111,101,96,104,105,98,87,112,95,97,101,98,95,61,103,98,105,103,95,103,100,95,95,100,91,103,109,103,101,97,115,106,95,95,104,102,108,92,103,102,107,91,100,111,97,97,93,93,101,119,102,121,101,101,118,106,101,103,98,101,87,104,113,110,90,109,108,114,105,103,96,101,104,97,107,113,103,104,95,95,113,109,98,100,114,109,94,93,122,98,104,110,100,107,120,88,102,107,109,90,95,100,108,102,104,106,106,105,114,107,102,101,113,85,110,110,113,99,99,95,109,110,94,98,98,111,111,108,113,108,97,102,113,72,104,99,113,113,112,95,100,113,105,114,116,102,100,105,112,108,112,106,110,87,110,94,111,105,105,100,100,115,102,114,107,99,107,106,102,111,99,108,109,107,91,102,100,102,109,103,108,103,101,95,99,110,98,107,112,105,113,107,102,102,111,105,107,106,110,106,101,102,104,107,99,115,109,116,112,104,108,108,109,91,107,102,109,110,112,90,117,108,71,98,105,97,91,113,109,116,98,107,104,96,107,104,99,109,118,99,94,108,102,104,99,99,96,96,105,98,93,101,102,95,109,97,102,114,97,101,91,100,107,103,96,119,91,107,107,111,98,108,107,105,102,99,104,99,99,104,88,111,96,104,101,88,113,96,98,103,96,98,104,89,121,108,108,97,117,98,108,104,114,103,122,111,105,90,108,109,101,104,112,108,102,70,104,111,115,121,120,100,111,107,106,102,110,92,106,100,91,95,109,102,108,106,103,115,109,109,90,104,82,61,103,109,111,104,114,103,104,90,108,109,97,109,109,100,106,101,111,105,102,110,93,106,97,102,104,103,105,107,106,102,102,99,96,109,116,96,98,107,116,137,118,99,102,104,88,108,111,108,105,103,107,96,111,95,106,102,98,105,102,109,99,106,101,102,106,101,94,117,90,101,108,90,115,100,96,108,103,97,98,105,80,93,102,102,95,106,105,96,93,106,108,107,97,105,109,88,109,106,100,110,113,97,115,98,90,121,103,104,112,97,115,105,110,96,94,100,98,96,100,96,113,109,111,104,99,99,104,111,98,110,105,105,117,109,115,95,109,110,89,112,108,104,92,102,110,102,102,82,100,103,104,103,107,109,100,100,109,103,107,100,116,90,117,99,97,117,100,110,105,101,125,110,119,96,113,97,96,121,97,105,107,137,112,105,110,95,120,107,122,117,99,106,119,104,89,89,92,98,104,88,110,101,106,103,110,118,98,95,106,87,96,112,110,102,109,101,113,102,105,92,109,98,80,101,108,109,94,100,102,102,104,132,102,110,105,96,100,106,109,101,110,96,104,116,100,102,100,108,109,100,109,110,99,103,101,103,109,106,96,110,99,125,106,101,106,106,100,100,100,103,102,95,105,87,95,107,98,98,108,96,105,98,104,110,98,115,102,96,108,103,102,110,99,98,93,99,114,98,106,115,112,95,96,112,101,95,109,109,116,99,101,99,99,102,102,102,106,108,98,99,113,108,98,104,105,107,104,101,111,102,106,97,109,106,114,106,117,94,106,107,106,109,105,108,113,96,103,102,114,100,108,96,106,125,101,99,109,102,93,107,130,102,103,99,98,102,110,100,99,111,98,113,98,108,99,108,110,104,100,114,99,93,115,101,107,103,106,103,91,103,99,98,106,119,105,99,102,95,101,107,102,114,105,101,113,89,100,100,114,101,105,97,113,108,99,107,97,95,102,110,107,96,113,109,106,115,103,95,98,101,104,108,109,94,105,106,100,110,125,103,106,107,107,98,95,97,103,105,96,107,99,101,91,111,99,95,101,107,96,104,100,109,106,101,104,107,105,104,111,91,110,100,106,103,104,112,111,101,105,108,104,97,110,105,103,127,112,98,89,117,95,105,117,111,104,94,96,97,100,108,115,101,105,99,101,98,109,98,106,103,84,101,107,99,113,105,102,108,110,108,117,98,103,92,117,101,103,108,107,115,111,150,113,100,131,116,110,108,97,114,120,119,113,124,120,126,116,131,145,176,173,209,250,265,263,333,305,263,285,262,235,244,229,228,197,171,174,163,152,132,121,95,125,110,103,76,91,66,107,112,104,112,132,114,103,111,103,111,113,92,116,105,101,102,95,93,99,98,110,116,111,91,107,121,96,105,98,99,102,95,114,95,111,106,118,117,94,90,84,113,116,105,98,111,91,115,110,104,104,98,100,104,109,106,93,103,95,96,116,101,106,107,116,101,101,102,100,100,89,113,96,93,105,110,102,107,94,134,109,108,104,107,105,99,113,112,109,111,106,98,107,107,106,112,90,96,112,105,102,106,102,96,99,108,106,78,107,109,96,96,102,96,95,102,95,103,111,113,99,105,103,102,107,124,115,104,101,107,96,109,100,118,105,100,105,103,110,101,110,113,110,99,110,102,116,105,100,106,107,83,98,129,104,98,122,87,106,100,84,105,103,121,124,110,110,117,113,113,111,109,110,124,109,105,79,95,117,91,110,105,104,102,102,117,104,98,102,101,106,102,113,117,123,107,116,123,96,113,111,118,120,116,101,119,116,118,110,101,112,85,112,115,103,106,95,104,97,125,104,117,102,104,96,98,84,104,104,99,105,103,111,100,108,106,104,108,94,107,112,113,101,107,121,101,108,117,110,109,100,101,114,107,105,91,97,105,101,113,111,117,90,70,91,99,98,90,99,94,95,104,87,101,107,108,100,114,97,112,105,106,109,91,108,95,114,101,109,103,92,105,94,104,104,107,109,105,94,107,108,102,106,107,114,82,107,109,106,98,108,108,95,113,95,109,103,97,95,104,99,100,113,109,99,101,110,94,101,97,105,111,97,100,106,101,95,96,112,100,103,114,131,94,114,115,97,102,106,93,106,106,110,95,97,91,100,113,105,103,101,109,104,94,108,110,108,114,105,93,105,103,93,114,94,102,106,117,100,99,113,106,101,105,101,107,107,112,97,107,98,106,106,111,114,94,97,109,88,108,96,91,107,102,132,113,108,101,106,101,109,109,101,95,110,109,107,100,83,99,101,109,104,120,96,96,105,116,112,100,105,91,99,107,108,106,100,97,90,99,99,106,97,101,96,90,94,103,119,111,116,101,96,117,100,111,103,100,103,98,100,101,97,103,103,104,106,105,112,105,102,99,112,102,111,99,107,101,104,96,101,102,98,111,101,103,113,104,97,116,122,105,116,98,113,111,99,104,104,97,108,108,110,112,96,98,108,102,94,99,102,107,104,106,111,105,80,103,110,95,80,105,109,105,103,119,99,109,80,95,100,106,99,96,100,112,112,94,102,107,98,104,94,105,94,104,111,106,109,106,95,95,94,110,103,101,117,98,108,103,101,104,103,117,107,108,111,109,101,109,96,94,107,111,96,104,96,110,103,99,100,105,126,102,102,86,98,92,95,99,106,111,117,85,97,92,94,105,110,113,101,106,112,94,109,102,107,108,83,102,107,92,105,73,107,109,107,94,112,109,99,102,109,103,101,106,97,100,85,105,103,99,100,87,97,95,113,99,102,108,99,108,116,95,113,113,94,112,95,102,97,103,90,103,106,102,89,71,107,87,107,112,111,108,102,115,111,73,81,104,104,102,100,104,109,115,126,103,104,106,99,95,100,101,105,90,100,100,104,79,102,106,94,106,113,105,112,96,113,105,100,104,99,107,100,109,108,81,101,113,104,109,95,98,108,105,103,109,101,104,86,103,91,114,91,112,102,101,117,98,91,108,110,98,76,107,105,102,122,95,95,102,105,97,106,109,108,97,108,108,94,81,100,113,91,101,102,107,104,95,95,90,110,109,96,97,91,100,106,108,98,109,104,99,108,106,90,112,100,96,124,110,101,111,108,99,111,96,111,103,108,106,108,100,106,102,106,101,98,102,141,107,97,99,93,96,118,104,107,95,109,107,110,98,75,105,111,90,99,103,98,96,83,115,106,99,104,107,108,107,103,103,103,106,102,107,95,105,103,113,96,95,102,100,104,104,112,102,97,103,71,103,95,106,108,136,104,102,109,112,75,124,92,96,106,109,111,107,103,108,107,99,98,92,92,102,104,100,104,100,96,105,95,109,89,109,98,108,94,91,84,101,113,96,104,107,115,101,68,100,96,108,113,88,106,110,108,108,102,105,103,72,107,101,98,100,100,104,110,117,88,116,109,100,104,100,97,95,103,109,110,104,98,107,106,104,97,103,116,91,106,102,107,107,113,117,107,114,105,96,108,101,102,99,100,90,115,121,106,102,105,115,108,104,105,102,104,102,104,99,105,96,102,100,109,105,105,112,93,110,109,105,95,107,92,97,102,100,104,104,88,90,101,84,95,101,106,93,101,126,98,113,91,106,113,104,95,96,102,98,97,109,105,89,105,104,108,109,110,102,69,96,118,103,90,113,109,97,95,105,103,99,87,116,97,119,108,112,99,117,98,105,106,100,111,113,117,105,97,103,84,101,104,97,88,87,109,110,104,105,103,102,109,126,111,88,101,96,103,90,78,119,100,121,100,88,97,100,98,79,90,103,109,110,109,94,109,100,113,110,69,109,109, +571.9729,98,95,110,97,100,76,105,129,89,99,96,104,98,118,111,111,98,110,92,120,105,103,91,113,107,104,109,110,104,96,105,91,101,103,120,103,102,106,95,105,101,95,96,114,112,111,107,115,129,103,96,91,122,107,108,110,103,102,97,120,100,105,102,95,104,117,117,101,108,114,102,95,111,96,113,112,99,100,101,110,106,102,108,100,110,101,95,103,102,105,100,89,102,104,102,103,103,103,111,103,96,103,100,103,95,103,101,109,103,120,109,93,110,99,106,103,102,96,110,91,104,103,106,111,107,105,111,111,95,107,106,91,92,111,105,115,96,112,103,111,98,107,90,101,109,109,110,105,93,106,104,98,99,104,104,99,106,101,103,102,102,104,99,113,106,105,99,99,103,96,95,107,105,96,107,114,103,100,76,97,117,127,86,114,115,123,103,98,110,114,100,101,96,113,95,95,119,109,111,106,103,103,99,106,106,107,99,107,108,113,112,103,100,99,108,108,108,110,115,105,99,110,111,102,112,98,101,109,95,103,109,106,110,107,107,109,103,110,114,100,99,110,117,95,114,102,112,106,106,108,97,103,80,117,104,103,91,102,106,108,91,114,115,105,80,111,90,95,106,102,108,102,119,106,105,108,91,112,110,79,110,113,116,91,111,100,98,105,110,105,94,106,110,105,88,115,98,106,103,118,86,107,110,113,91,106,109,109,103,107,98,110,102,102,98,73,114,113,111,107,103,104,117,109,105,101,100,103,110,122,119,101,120,104,99,111,107,92,99,111,102,92,108,90,112,114,103,136,107,112,98,113,89,95,98,109,102,103,106,99,108,108,95,92,98,101,110,115,100,105,114,99,98,104,108,95,109,105,96,120,95,109,97,107,103,109,104,103,101,115,110,99,102,108,108,105,114,96,103,94,107,120,99,100,116,95,110,97,112,102,92,108,106,101,109,101,102,109,111,102,104,103,109,117,95,110,108,94,93,110,101,107,111,111,91,119,106,104,100,102,109,108,109,99,106,109,92,94,100,103,99,110,116,114,91,100,95,99,98,97,102,120,108,94,101,109,113,109,107,100,101,99,110,95,101,96,99,105,98,112,101,112,109,111,116,97,104,104,96,94,77,122,113,104,100,103,98,120,105,103,113,115,105,107,99,119,102,116,113,99,110,100,109,104,106,106,123,91,91,107,80,107,96,111,106,131,107,108,100,110,95,109,113,104,101,109,97,83,124,111,99,100,103,100,101,100,107,111,109,101,100,102,106,106,107,114,97,104,104,98,114,113,109,117,91,109,103,117,109,101,95,114,102,117,107,96,106,105,106,106,108,103,109,102,116,89,109,102,110,116,99,107,95,110,129,110,109,103,113,109,108,104,105,116,105,109,101,111,102,108,110,105,117,97,104,106,110,98,101,99,103,111,115,104,102,101,107,110,112,98,109,84,103,100,92,109,108,113,103,114,114,103,101,110,103,105,111,108,112,111,97,107,110,110,99,111,73,116,101,116,100,78,102,114,87,109,109,109,99,104,108,102,100,104,110,110,107,112,99,106,105,106,109,112,102,104,101,105,93,107,101,126,102,103,103,92,106,113,105,92,83,99,104,104,114,99,80,109,101,110,109,110,93,102,107,102,98,101,103,105,108,100,109,104,106,98,100,101,101,104,105,111,108,95,109,113,108,99,102,102,106,99,106,114,103,107,122,95,100,104,108,116,97,104,88,105,96,137,108,95,97,88,113,112,96,109,95,110,112,98,108,104,113,105,103,109,107,105,106,105,94,106,95,101,90,103,110,102,106,109,98,111,98,103,92,98,103,104,94,113,95,98,108,110,106,107,100,105,118,101,128,104,100,108,104,101,107,74,95,98,105,110,104,104,103,108,106,105,104,104,99,113,114,84,108,102,109,102,101,107,101,101,108,99,108,106,113,97,96,109,110,100,106,108,99,102,109,109,92,109,100,105,106,106,103,107,107,120,124,114,99,106,103,104,105,111,101,107,105,109,96,115,97,113,99,106,115,70,104,107,99,104,102,91,124,116,101,112,109,110,107,107,117,112,104,95,99,102,110,115,106,120,104,111,108,113,96,101,109,107,110,94,113,104,110,108,101,85,111,105,104,113,105,110,110,104,78,99,108,103,115,107,112,103,110,100,105,117,104,104,107,105,109,108,103,104,107,105,115,110,99,120,83,113,118,96,100,89,101,109,110,105,100,104,112,103,117,104,103,103,99,107,105,100,98,98,113,105,107,110,105,103,100,114,106,108,88,105,94,112,105,95,113,108,108,112,105,109,110,103,101,100,104,103,108,102,110,109,128,107,117,111,114,100,114,115,127,107,125,98,133,126,125,124,131,111,140,135,141,191,257,220,274,267,271,295,326,258,271,270,220,240,188,184,190,163,159,154,136,136,116,124,113,120,108,107,103,117,117,107,102,114,111,114,108,120,124,93,108,104,118,108,92,109,100,114,100,116,116,104,110,102,104,102,96,115,107,115,113,117,108,114,124,96,104,100,107,118,109,99,116,113,99,106,103,129,100,115,92,106,101,102,112,106,102,107,112,116,104,110,106,113,100,103,108,99,115,120,105,106,97,100,100,106,105,106,102,109,113,101,126,111,114,113,109,112,106,103,110,78,108,107,104,106,107,113,106,109,96,110,100,108,112,113,116,104,103,101,91,98,103,107,105,125,120,116,120,113,113,103,108,108,113,103,100,99,99,97,105,111,120,107,105,106,108,120,108,107,94,108,116,111,106,94,124,112,103,120,124,104,110,109,108,98,99,93,80,115,112,96,102,101,91,100,110,114,102,106,108,119,103,118,99,102,107,113,88,112,111,113,100,88,117,125,103,104,104,106,102,110,99,100,108,95,116,111,96,112,105,111,116,107,108,111,104,105,121,96,98,111,112,108,117,103,87,105,104,107,109,104,115,104,109,97,110,116,120,89,110,122,95,107,112,106,100,96,102,110,102,130,107,98,108,102,107,108,106,112,109,112,108,104,108,116,118,103,92,103,100,102,103,109,103,118,107,99,97,104,116,121,100,102,111,106,74,113,108,109,107,104,110,106,98,92,106,99,111,110,105,93,98,96,108,105,101,94,98,98,116,105,98,108,105,115,105,112,105,114,109,108,99,106,102,106,98,102,120,105,99,83,127,115,98,103,102,109,117,88,94,107,113,108,97,110,102,99,101,114,97,109,92,106,106,98,121,96,101,94,107,114,100,108,100,105,106,103,101,99,123,106,116,109,112,116,105,113,107,102,104,99,96,113,93,103,103,109,107,106,100,103,100,106,98,99,109,113,121,115,104,107,106,110,106,102,106,98,99,97,104,110,108,103,106,104,112,122,89,107,107,74,103,111,107,133,109,108,104,110,95,102,109,102,113,103,105,127,90,112,99,112,100,108,107,110,109,107,95,106,101,91,101,113,102,104,107,112,112,117,105,105,108,105,100,98,102,95,104,113,106,98,105,113,105,102,99,101,113,103,117,97,111,115,99,113,106,107,100,108,103,109,120,111,105,119,103,113,104,104,114,105,102,108,115,100,102,106,101,105,86,116,100,112,104,95,114,96,103,105,112,101,116,101,102,102,106,92,107,117,102,103,95,98,102,108,106,93,104,98,108,119,98,102,99,100,106,104,104,99,115,103,98,101,105,112,106,105,92,101,104,97,116,113,107,96,113,110,110,108,109,109,103,90,106,108,82,107,101,105,103,106,111,108,99,111,104,98,110,102,98,122,114,117,101,96,98,109,117,95,110,111,114,95,109,102,118,109,99,96,114,108,102,104,99,113,101,105,115,110,113,106,107,109,114,105,105,121,92,100,110,102,113,85,99,114,106,121,107,118,109,104,116,101,106,104,99,110,117,121,103,77,96,100,109,106,106,101,99,92,95,100,81,103,112,109,101,113,110,100,99,97,104,96,99,94,101,99,95,99,116,110,105,109,102,109,94,104,104,100,98,91,98,108,112,120,102,98,113,103,100,88,113,107,109,98,99,107,109,105,106,105,113,100,113,112,102,108,123,101,118,104,127,117,109,107,105,105,106,102,113,111,88,97,99,112,97,110,100,98,105,102,105,98,97,100,108,117,102,109,99,107,113,110,119,112,109,106,98,108,110,111,101,97,102,98,111,100,102,110,104,112,105,91,94,110,97,110,117,104,108,106,110,94,101,110,116,120,99,114,115,79,95,116,109,112,106,110,98,108,111,109,102,104,98,113,102,109,116,110,114,105,83,102,113,111,102,108,98,113,109,110,102,106,115,101,103,105,92,109,104,104,96,118,108,103,104,98,107,112,105,104,113,103,112,112,98,102,106,100,102,109,110,95,96,96,102,107,108,116,110,99,99,110,121,113,101,96,110,99,107,99,96,103,102,106,92,100,109,123,117,98,104,110,119,102,99,95,90,103,99,101,119,107,100,86,115,105,105,89,107,114,108,110,99,109,111,100,67,99,106,106,96,107,99,108,107,134,103,112,101,92,98,110,110,108,93,81,106,117,104,113,105,120,98,107,100,104,112,100,105,108,106,99,103,109,115,121,111,98,102,89,106,100,115,91,100,112,109,95,108,98,117,99,105,113,108,98,104,116,103,108,102,96,117,101,95,124,105,116,105,105,118,108,104,107,118,104,102,110,105,98,102,99,109,117,108,106,107,106,106,99,111,103,113,94,112,106,113,100,95,101,99,110,95,98,96,91,98,114,110,99,117,104,103,93,113,109,110,109,101,116,108,109,106,106,104,86,94,115,115,98,108,99,95,106,113,105,98,97,108,91,95,101,107,97,108,117,120,126,112,107,99,103,97,103,111,98,95,110,89,116,113,108,95,113,101,108,91,103,102,94,104,105,101,112,104,112,108,103,108,93,104,97,110,112,103,98,95,104,102,93, +572.11383,115,105,123,109,106,102,96,115,92,106,103,110,118,104,104,110,108,110,107,93,100,104,108,101,104,97,103,109,115,92,104,135,108,106,109,97,96,104,113,105,106,108,92,117,117,120,104,109,92,98,112,99,109,98,110,104,97,102,113,110,110,103,109,102,101,96,89,108,90,98,101,116,95,108,96,110,132,66,113,105,111,93,109,109,109,102,116,106,105,110,110,118,109,105,106,103,118,112,91,104,92,105,97,105,103,100,106,119,105,102,115,106,108,117,102,104,110,109,111,110,100,105,113,114,110,120,119,112,96,110,106,109,109,108,107,119,95,105,98,101,136,114,109,117,103,111,105,114,100,111,115,117,116,94,96,102,111,106,113,102,110,114,104,112,101,111,102,101,108,105,103,102,107,108,108,114,112,107,117,101,112,110,111,106,92,105,103,109,106,116,114,105,98,109,101,106,109,109,115,104,107,104,108,114,108,94,100,103,110,118,115,103,107,110,105,119,108,102,107,107,101,107,110,104,107,105,99,104,106,116,105,99,104,113,109,112,109,117,102,108,109,107,100,109,91,108,90,110,99,100,115,104,110,108,104,104,100,112,108,111,108,98,110,108,108,115,95,104,112,121,113,117,108,117,108,98,107,109,111,106,110,113,117,99,119,92,94,111,118,107,95,107,114,107,113,114,110,103,100,98,94,111,100,103,103,115,103,111,98,114,109,115,112,109,107,108,105,106,104,121,116,97,118,106,133,105,121,107,127,102,100,108,99,99,108,114,98,111,104,108,99,100,103,106,96,109,109,109,109,113,105,112,100,104,104,109,109,105,103,105,104,102,99,99,111,114,106,106,103,111,104,105,120,101,117,105,110,101,105,114,106,108,100,113,102,105,117,112,120,100,101,94,101,96,105,110,113,111,105,105,104,106,97,103,104,118,90,113,115,99,100,104,121,110,102,105,107,94,99,92,103,102,106,112,110,99,101,98,96,124,104,118,109,116,102,98,110,115,111,107,104,110,99,116,117,101,100,104,105,110,108,119,119,110,114,108,91,102,110,112,97,120,119,124,114,102,116,105,100,106,120,108,100,104,106,103,103,124,118,105,122,115,112,101,113,108,110,100,97,102,108,105,121,122,95,114,110,103,120,88,113,110,116,121,109,110,95,111,111,109,108,98,116,106,108,109,101,113,105,100,100,81,110,121,103,102,102,108,105,117,117,111,103,108,111,112,125,110,109,107,96,110,109,84,110,117,104,107,122,105,117,104,103,123,108,112,89,105,106,113,109,108,109,110,97,86,121,118,98,102,98,100,106,113,119,126,95,117,113,99,112,91,105,93,107,119,98,108,120,107,114,108,98,103,112,107,107,113,106,107,104,110,112,104,106,114,115,107,105,107,105,116,115,107,112,119,110,92,105,125,121,104,110,105,107,108,99,106,115,108,113,110,116,109,93,114,115,105,106,105,123,109,106,106,109,98,104,105,92,117,94,104,110,115,117,131,107,116,121,77,108,109,116,107,100,106,129,107,106,105,112,105,111,108,101,113,103,105,106,110,115,105,111,102,103,107,99,99,104,75,103,114,103,109,98,102,120,115,102,103,116,108,109,91,103,106,110,103,104,104,106,121,109,102,103,103,115,121,112,96,99,106,99,111,109,100,103,111,103,124,108,111,96,117,108,105,97,109,107,115,111,139,103,95,118,99,147,117,113,105,113,110,111,111,99,116,112,115,114,102,112,100,104,104,112,109,112,107,102,95,107,106,104,109,115,103,110,108,120,115,89,108,110,110,100,110,107,106,99,107,112,116,106,112,104,117,109,117,94,100,88,109,120,110,98,114,103,102,106,104,107,107,97,104,107,105,126,104,104,99,100,108,115,110,94,116,117,109,116,111,116,105,110,101,114,103,115,116,101,105,109,114,111,104,109,109,112,96,102,105,96,110,101,121,101,100,102,107,111,109,104,108,104,103,100,100,111,110,109,107,109,104,115,115,102,112,103,109,98,110,111,112,97,100,106,121,112,117,113,118,111,124,107,110,108,109,104,112,107,108,113,116,100,114,110,101,106,102,99,102,103,104,110,107,114,116,115,113,110,109,103,106,106,108,109,108,124,98,101,95,107,111,113,112,108,101,105,97,109,87,116,110,109,111,96,96,109,109,113,99,113,116,120,103,103,111,99,102,105,113,107,108,121,93,107,103,101,101,106,98,97,105,92,94,110,98,112,105,106,102,103,118,109,109,120,106,85,102,105,116,122,104,95,105,115,125,109,103,107,124,110,100,96,99,106,110,113,105,109,112,102,100,102,111,108,114,100,103,104,111,122,107,117,111,116,107,99,97,120,120,128,110,114,107,141,119,121,136,130,195,221,240,262,285,287,301,303,307,254,240,255,223,256,203,184,172,186,155,148,127,119,127,112,129,120,110,96,113,105,101,102,128,115,123,112,121,98,116,102,108,78,116,116,106,125,110,116,96,123,95,96,101,94,95,108,105,109,105,112,105,104,103,110,107,101,113,109,101,103,96,99,110,100,107,115,105,100,109,102,87,110,92,94,109,112,105,126,100,106,98,107,114,105,94,109,105,111,109,101,97,93,105,99,111,103,97,120,108,113,101,116,103,109,115,108,100,100,101,109,107,111,101,108,96,103,113,104,102,117,101,92,112,120,110,96,109,110,98,114,110,98,105,109,102,100,109,108,103,109,109,95,82,104,109,108,107,117,104,108,76,99,99,104,112,101,109,119,106,112,99,104,112,98,111,101,112,100,122,107,105,104,113,111,101,98,107,98,100,117,109,101,107,98,114,108,109,113,113,108,105,107,106,104,100,90,106,110,112,105,100,102,103,109,106,105,105,101,104,106,124,124,101,117,120,113,109,120,128,93,108,110,113,107,104,109,105,109,116,103,115,114,97,105,106,106,109,108,96,103,104,96,106,65,104,108,106,101,110,119,115,106,108,132,127,101,100,102,98,100,98,104,102,107,109,114,96,95,107,117,103,105,109,111,104,111,109,111,91,100,109,106,113,111,113,114,109,102,105,98,107,107,102,84,102,105,102,119,113,93,102,93,104,94,98,128,109,100,94,112,112,119,101,97,107,122,100,97,104,106,101,103,104,103,109,96,103,103,110,114,109,113,97,101,116,99,102,101,112,105,105,117,98,124,114,106,93,108,113,105,101,100,104,103,100,103,107,97,109,106,103,93,105,112,103,104,106,99,107,96,97,106,101,100,99,104,117,105,114,96,111,99,107,112,109,100,111,108,113,94,105,105,95,90,107,102,113,106,111,110,93,106,96,111,109,104,112,110,110,101,106,94,110,101,106,110,110,106,103,95,97,95,98,112,93,104,103,117,105,109,103,94,88,100,107,101,119,109,105,89,111,112,91,101,110,124,111,108,115,98,106,100,119,97,105,103,99,101,108,110,105,93,99,107,113,110,91,113,102,115,95,99,112,112,110,101,100,119,91,116,113,107,94,111,111,99,106,104,117,110,99,111,107,103,107,106,106,108,112,104,91,109,106,105,114,101,103,104,108,107,114,95,107,108,117,106,96,104,104,103,112,123,93,117,102,105,103,101,105,95,103,110,98,102,104,111,92,117,115,114,99,116,105,113,108,100,105,108,95,109,109,101,107,95,113,104,99,116,112,113,117,130,108,95,107,119,106,111,112,110,104,115,107,99,105,108,117,87,109,112,133,110,103,109,102,106,98,113,106,114,107,119,109,104,100,105,98,95,103,120,96,104,95,107,103,105,106,106,110,113,104,106,90,108,112,118,104,108,104,104,113,100,110,101,119,105,105,107,107,103,106,99,103,104,106,111,109,103,94,91,108,106,112,88,116,104,107,110,108,111,116,103,106,108,111,101,75,112,116,98,96,106,106,109,102,105,112,101,105,96,102,119,116,120,106,91,120,110,97,105,94,105,109,118,107,111,118,108,116,112,107,111,107,98,118,94,91,112,121,104,92,111,111,93,101,113,115,103,105,93,112,107,102,137,107,103,110,112,113,110,112,110,104,103,102,99,88,102,100,78,104,100,100,101,98,121,96,104,110,106,114,108,103,105,110,101,103,103,105,113,99,97,109,116,84,109,115,116,100,110,109,126,111,101,106,101,87,110,106,99,105,110,98,101,84,100,114,114,106,96,97,106,102,107,101,95,105,119,99,109,100,113,108,108,100,109,98,105,115,103,119,105,108,110,105,100,111,95,102,101,95,103,113,102,114,103,109,108,104,106,112,116,108,99,104,110,110,96,100,102,80,102,97,108,109,106,98,107,107,93,100,95,94,108,110,76,102,101,109,107,114,102,119,109,107,117,109,101,105,113,103,115,110,106,113,110,99,105,116,105,109,96,107,110,104,104,113,112,99,100,96,108,107,106,112,97,94,106,101,105,104,103,90,100,101,98,97,94,103,103,95,116,104,96,104,109,110,96,92,108,121,110,120,102,112,106,106,101,92,91,95,98,104,112,124,113,125,97,99,98,107,106,108,107,106,100,99,100,117,113,80,104,107,97,96,112,96,101,113,93,95,93,96,107,85,107,91,102,105,95,101,103,108,117,102,107,108,98,102,101,95,113,95,101,99,110,106,99,115,109,113,103,112,86,105,93,106,109,107,98,106,119,104,100,91,116,105,103,122,100,92,92,98,106,114,96,100,100,100,107,99,95,94,96,103,98,100,101,113,83,96,108,113,113,107,120,100,108,103,113,109,96,115,105,95,101,106,106,108,109,103,97,96,113,107,103,105,98,106,101,108,102,108,106,106,87,114,99,104,108,104,108,97,98,110,105,102,99,110,98,101,106,99,93,84,115,101,100,110,107,73,102,115,98,108,98,108,105,100,113,115,96,91,107,88,104,104,97,106,107,89,108,76,106,98,109,80,110,81,101,101, +572.25476,100,94,93,108,82,112,102,85,115,108,94,113,87,106,107,93,108,126,104,98,108,107,89,107,95,100,97,98,128,117,105,102,107,106,80,114,117,110,104,86,90,99,109,114,102,107,105,96,92,100,103,107,97,91,99,93,94,100,106,94,100,101,102,107,88,112,97,115,105,96,97,95,92,111,100,116,100,88,105,95,91,101,79,101,112,108,107,109,93,99,94,126,106,110,105,106,110,113,121,96,96,83,97,103,108,108,102,101,101,107,97,99,103,100,95,101,92,105,98,87,79,99,97,110,109,113,109,112,110,113,101,94,99,119,100,105,106,98,112,102,99,115,104,102,97,117,119,109,94,88,104,102,99,94,94,107,94,109,101,102,100,96,108,112,111,116,95,95,104,96,111,96,107,114,100,114,101,102,102,95,95,104,106,102,110,110,95,99,94,102,102,103,104,95,108,98,110,103,102,108,102,105,100,108,94,96,102,103,108,91,92,113,114,106,104,107,101,109,102,99,109,105,143,103,100,122,75,112,104,113,107,108,108,112,98,117,112,104,106,104,95,102,107,104,106,109,110,105,99,98,101,111,98,116,101,108,104,111,97,105,104,115,104,113,101,109,110,97,99,99,101,108,89,100,105,109,107,101,105,96,98,109,102,109,107,98,107,104,100,102,99,105,102,110,122,106,107,113,103,102,106,119,104,118,98,98,106,113,103,102,108,121,94,110,99,95,102,99,99,105,109,109,126,106,100,96,107,121,137,100,115,101,103,122,113,116,97,106,104,110,105,109,100,109,114,106,104,116,107,104,100,101,91,105,100,116,114,97,113,92,111,95,101,105,94,109,113,102,105,105,96,102,99,95,94,99,100,96,106,99,110,92,107,109,93,102,103,90,105,87,105,93,101,114,102,114,90,103,107,116,113,103,105,103,103,102,118,114,104,102,106,105,101,99,99,100,112,99,114,107,99,96,108,112,110,94,99,114,101,106,105,111,103,102,109,109,96,105,96,110,119,108,111,99,108,102,109,105,109,118,109,110,100,109,95,103,103,98,96,101,91,94,96,91,103,115,107,104,115,106,109,115,91,103,109,104,125,121,118,99,102,94,96,104,104,102,109,107,108,103,109,108,112,90,98,104,99,117,96,106,110,118,106,92,110,104,117,97,119,100,104,112,108,102,103,99,94,106,103,108,111,121,104,101,98,104,110,87,93,93,99,107,106,105,117,109,120,92,100,113,93,96,89,113,104,99,106,116,108,108,110,113,109,97,107,100,104,103,114,114,113,109,108,102,104,121,105,105,94,99,103,103,114,104,106,94,116,102,104,97,110,93,102,102,119,107,107,102,107,91,132,108,108,97,121,96,98,108,105,109,103,95,104,105,95,95,98,97,105,103,90,91,109,102,101,92,114,90,102,100,103,102,112,93,106,101,106,108,97,107,112,109,102,108,108,100,100,105,104,107,109,96,102,112,112,100,98,106,111,107,104,110,98,110,104,107,108,101,109,98,109,106,98,101,95,124,105,109,111,96,113,102,117,101,102,114,114,112,106,107,119,98,107,100,100,100,101,98,98,113,104,130,92,114,96,106,105,100,98,95,102,105,100,102,110,95,91,101,96,93,105,106,109,97,102,106,97,104,104,105,99,106,99,107,108,92,95,105,113,109,96,113,96,106,103,108,110,91,109,113,123,104,106,113,117,104,102,121,105,110,102,115,82,103,108,100,81,109,118,102,99,108,93,86,117,113,99,93,100,96,109,115,106,73,105,107,104,115,109,108,95,108,97,100,104,109,110,118,95,114,102,93,103,101,107,108,94,107,101,95,98,101,96,95,110,125,117,106,109,103,100,102,92,105,108,101,112,103,107,101,109,108,109,103,92,103,112,110,108,96,106,106,102,103,104,96,98,101,102,124,107,90,103,98,100,114,109,107,89,99,98,103,105,103,109,111,106,102,92,103,117,98,105,109,123,93,107,102,106,122,98,95,110,105,94,99,100,93,105,104,107,113,103,100,98,100,99,105,117,112,91,105,115,95,107,100,114,96,109,109,102,112,114,117,100,101,108,98,101,104,114,118,121,99,98,96,92,99,104,92,106,110,99,108,106,102,106,103,107,79,107,116,100,113,100,102,98,98,112,107,111,97,105,111,112,108,105,98,101,118,103,96,103,120,104,102,99,76,101,108,110,108,118,98,111,109,82,103,104,112,103,101,109,97,96,98,111,90,110,105,100,101,102,94,105,98,90,103,104,102,103,107,117,110,105,109,100,99,95,101,104,103,108,107,117,104,109,107,91,91,104,117,92,107,110,103,110,114,114,133,107,112,109,109,85,100,111,102,109,111,119,124,131,119,118,119,108,142,136,141,192,222,273,260,301,333,289,297,226,245,289,222,170,198,212,182,184,131,136,151,111,130,96,114,110,120,109,119,104,96,116,117,127,110,110,110,120,100,109,99,106,114,74,121,115,108,101,104,107,113,105,109,114,92,98,94,95,91,105,89,99,87,100,122,112,115,97,98,121,103,105,113,106,130,102,97,117,109,91,104,105,108,113,101,106,110,103,110,115,105,120,115,99,101,111,113,101,107,108,110,98,113,106,116,82,114,105,99,98,112,100,95,99,101,105,104,105,91,107,109,110,112,111,95,110,106,99,81,107,99,106,108,105,121,96,113,98,109,109,100,105,102,87,113,114,114,111,94,121,104,117,113,103,108,88,100,119,105,107,104,103,117,102,91,95,82,113,111,98,99,106,108,115,105,102,109,106,111,101,110,113,109,102,110,114,95,104,109,104,105,93,103,83,107,104,102,100,93,111,102,113,104,105,99,112,110,104,91,94,103,93,102,115,102,103,111,94,95,106,102,102,116,110,112,117,102,110,99,103,112,105,108,107,108,119,112,106,97,103,107,95,104,91,85,99,109,95,103,111,106,104,104,101,103,113,101,101,103,113,109,113,100,110,101,112,103,99,111,107,95,103,113,91,109,104,99,109,108,103,103,113,108,117,102,110,93,110,99,99,97,111,98,109,112,120,99,113,106,98,103,88,95,93,107,113,108,99,104,112,106,106,113,98,102,98,91,99,106,109,107,104,112,112,91,105,93,105,98,105,105,104,106,98,113,112,103,96,109,104,91,107,112,105,97,107,108,106,101,111,108,98,94,96,105,103,100,99,110,114,103,108,103,91,114,105,102,117,104,108,109,112,104,105,109,98,105,99,103,109,110,104,98,106,109,99,102,107,109,107,95,104,94,103,116,113,104,106,107,102,97,112,103,103,106,105,116,96,105,94,110,107,109,102,99,111,110,100,104,97,91,112,108,87,115,115,111,97,92,100,92,100,100,103,106,92,95,101,112,110,111,110,115,103,107,99,92,102,116,94,101,94,108,123,95,109,111,113,96,106,98,101,94,106,111,109,107,106,108,97,108,102,105,100,105,110,104,98,101,98,118,106,100,97,76,101,92,127,95,90,103,90,113,114,107,96,112,112,103,113,122,115,108,99,113,94,104,103,104,111,106,109,116,114,112,106,99,114,119,95,117,99,121,112,104,121,116,116,103,115,111,109,109,105,112,102,102,99,110,108,113,102,111,105,117,105,105,109,93,117,104,113,111,107,102,102,116,106,87,105,114,112,107,113,101,110,99,113,106,104,106,117,94,113,123,106,100,109,106,101,105,109,111,136,106,99,110,102,105,126,102,115,98,121,115,103,108,95,103,103,109,108,100,102,113,111,105,118,98,102,116,91,120,106,123,112,114,117,102,110,105,105,101,108,99,97,101,103,101,107,108,109,98,112,103,120,107,104,109,109,117,111,99,111,111,103,110,100,105,129,116,110,125,113,100,101,105,106,99,106,99,117,118,96,106,114,108,105,99,100,101,92,109,95,113,95,105,96,103,93,109,114,94,99,111,105,96,113,91,101,100,117,106,107,105,107,116,117,105,110,108,112,109,102,103,102,106,120,109,103,110,97,100,104,112,109,112,105,97,114,107,99,110,106,111,107,109,99,111,123,106,100,107,107,114,99,109,101,104,108,104,99,99,95,114,109,113,103,98,84,106,119,84,112,95,98,97,90,114,98,115,102,109,99,111,108,95,117,123,95,109,108,103,104,120,112,109,108,80,107,105,115,104,112,110,113,105,103,107,101,104,106,106,105,97,113,120,99,121,101,91,106,110,109,107,93,110,104,111,114,111,104,104,112,99,113,66,98,106,102,103,111,119,116,106,99,101,97,109,103,102,107,100,99,106,113,107,113,115,89,100,102,124,103,95,96,98,77,81,105,105,100,106,99,98,109,112,104,111,111,111,116,114,106,109,110,100,109,106,100,87,110,104,91,96,109,96,108,112,105,119,105,113,98,116,99,108,104,107,100,99,105,114,81,104,99,104,85,91,117,102,106,107,96,104,103,98,114,99,97,115,103,110,106,99,107,99,99,106,108,107,110,94,98,102,100,102,112,111,108,101,102,97,103,106,96,107,109,79,106,103,116,117,105,120,98,104,108,110,99,107,107,95,102,109,112,98,83,110,116,105,93,124,103,96,112,97,110,92,105,112,102,108,105,110,97,98,106,103,77,92,112,106,103,100,118,111,125,106,112,110,111,89,115,110,112,104,112,116,102,119,98,99,97,120,125,100,100,103,102,108,101,101,97,112,106,114,111,99,127,96,110,101,104,103,111,103,95,100,108,101,95,119,107,121,102,100,108,111,104,100,101,93,108,111,104,110,110,107,97,106,114,93,94,112,134,91,103,115,81,99,106,100,104,95,98,98,96,106,113,114,94,99,108,97,98,95,107,118,99,114,112,100,103,101,108,107,111,111,130,91,108,114,102,99,96,118,93,105,103,98,112,103,110,97,110,103,103,104,129,105,105,94,111,105,120,101,105,91,93,107, +572.39569,124,104,100,112,106,98,117,105,98,98,104,97,83,109,98,97,123,122,113,108,69,86,102,100,106,111,96,104,101,114,99,96,95,102,101,96,97,109,101,100,91,98,101,112,104,91,78,104,81,102,90,109,108,103,97,118,111,90,93,106,98,104,104,89,107,103,103,102,105,90,104,110,103,106,93,114,101,110,95,91,115,116,116,97,109,106,98,105,108,99,110,110,108,112,91,85,110,110,95,105,94,103,108,103,99,105,106,80,115,110,128,99,107,112,102,94,102,104,107,91,110,99,112,123,95,114,112,97,99,98,111,105,73,115,96,101,112,104,104,113,90,101,107,104,101,112,108,85,97,100,113,104,114,114,94,110,100,107,108,106,102,94,115,122,100,107,103,104,113,97,97,103,108,99,107,110,98,104,111,88,91,106,111,118,98,101,92,93,106,105,102,104,98,95,111,98,109,107,105,103,83,109,89,118,101,94,103,105,106,106,93,97,112,102,119,95,94,109,108,101,116,104,107,106,105,105,116,99,110,111,95,91,123,109,108,102,104,100,98,99,99,121,106,111,108,103,110,101,103,103,105,118,110,103,110,107,110,110,109,104,105,107,110,90,99,93,108,94,123,100,104,104,122,100,98,130,109,107,100,106,106,109,93,101,105,105,101,100,98,100,96,104,110,111,105,102,111,96,110,102,98,108,91,104,103,101,103,113,111,113,99,109,109,111,105,106,100,103,106,115,102,101,102,94,88,108,100,108,116,114,102,90,117,104,107,106,105,113,105,103,108,107,103,103,119,108,100,97,100,97,104,102,126,111,102,124,109,109,119,96,90,107,88,92,104,107,99,107,101,105,117,101,114,112,100,107,119,97,112,119,106,121,102,104,95,113,108,101,102,106,111,111,100,95,111,110,108,113,107,99,98,103,111,106,109,94,102,108,112,111,91,94,125,117,107,105,124,95,112,106,100,109,94,99,106,111,111,103,102,127,94,114,116,95,102,113,102,105,104,107,114,110,100,102,107,111,106,102,108,110,114,104,124,135,109,102,104,94,122,106,111,110,100,98,109,114,94,107,106,102,111,114,105,102,109,107,104,117,105,103,114,109,119,103,111,105,107,98,101,85,114,116,116,106,104,106,99,101,107,109,128,98,107,101,108,106,97,96,96,117,115,106,105,109,110,100,100,109,108,113,98,111,106,107,111,98,111,102,96,105,97,100,111,102,108,99,113,98,111,112,110,98,120,101,109,108,105,100,111,109,101,106,101,112,110,99,100,91,103,105,95,110,109,110,125,93,116,103,90,107,107,110,106,109,109,98,115,101,100,104,95,92,128,96,97,88,99,91,103,96,98,113,102,105,114,105,108,113,113,117,103,101,91,90,94,105,103,108,108,96,112,98,109,95,110,96,102,104,105,88,104,95,102,100,104,94,99,130,108,117,104,114,107,113,108,110,101,100,118,101,124,108,106,110,103,114,106,103,110,104,106,105,98,97,104,117,100,110,116,89,98,108,103,100,102,103,104,105,117,100,98,109,113,102,100,111,108,111,106,117,104,109,108,91,100,109,109,107,101,116,103,102,89,113,106,102,98,104,110,100,109,105,105,99,103,103,107,100,103,114,108,113,109,95,96,108,104,93,106,98,109,99,120,97,108,115,104,104,120,106,111,116,87,104,91,112,116,107,113,108,124,87,108,101,107,103,104,105,107,101,112,105,109,92,119,103,102,105,111,102,107,106,95,107,95,99,106,113,106,95,112,107,109,100,105,113,106,95,110,103,111,117,103,107,105,107,117,102,105,108,103,90,103,122,106,104,105,109,103,106,101,107,111,101,106,121,111,110,117,90,108,103,92,110,111,128,106,102,102,105,106,129,108,123,113,102,124,109,117,99,101,105,113,107,102,112,107,110,105,111,103,106,105,107,108,105,102,114,113,88,111,110,125,100,95,106,111,107,104,107,110,109,118,100,106,109,105,98,112,108,117,98,107,113,102,102,96,96,103,114,100,99,107,111,98,113,102,123,115,110,93,119,112,95,98,109,103,97,100,106,111,122,111,110,106,107,98,102,76,94,111,107,106,109,106,107,96,120,102,100,83,106,109,101,117,105,107,113,77,92,108,109,104,95,104,112,109,109,105,107,107,97,108,97,107,97,108,113,113,119,100,97,110,108,125,107,100,106,103,97,107,107,107,113,116,100,80,107,106,102,108,105,106,99,102,98,119,96,106,89,104,109,112,101,102,102,109,95,97,101,97,82,105,101,105,104,109,107,96,111,114,102,102,112,105,110,107,109,99,106,101,102,98,101,101,107,105,108,99,105,109,108,111,109,121,115,104,104,114,115,118,123,117,121,120,112,129,114,142,204,193,281,273,266,312,285,279,268,256,271,263,250,187,212,207,175,151,169,149,108,129,120,111,108,106,126,114,108,111,113,106,119,120,117,127,108,102,87,101,114,112,99,99,115,113,118,96,109,110,103,98,103,106,89,106,107,104,100,106,100,98,116,103,100,112,101,96,108,103,106,105,106,113,109,98,100,102,109,110,111,99,105,97,109,114,113,112,109,103,113,112,99,104,110,105,123,105,101,93,104,100,97,85,121,104,104,112,107,106,104,134,107,97,124,94,101,102,101,101,100,109,96,102,102,108,120,111,106,105,97,105,115,116,87,95,105,117,111,115,90,105,96,88,97,106,104,106,97,113,111,92,101,102,101,99,113,94,102,98,100,100,112,107,119,111,116,106,117,99,107,105,115,94,105,124,106,113,112,97,100,98,105,105,104,105,116,98,103,110,117,96,85,102,102,107,104,106,112,91,104,112,110,94,87,102,95,95,103,104,98,110,100,105,125,101,101,109,113,99,115,104,93,106,95,98,107,119,105,91,107,121,113,112,130,100,104,116,126,100,112,103,103,107,95,91,105,99,110,100,111,113,121,97,106,106,110,99,104,105,110,102,129,110,113,108,114,103,113,106,117,118,99,96,90,114,97,103,110,114,104,104,104,112,121,97,105,124,111,117,108,101,102,112,102,104,96,113,112,102,108,112,99,109,103,100,102,106,104,104,106,103,102,106,98,101,97,106,98,101,98,101,108,107,101,100,110,108,102,99,96,104,103,105,121,101,108,89,107,99,93,113,92,107,104,115,103,108,115,90,107,98,94,100,111,101,103,69,94,77,103,109,110,101,116,103,106,99,97,107,100,96,100,99,120,102,102,111,104,109,107,94,103,90,103,94,105,100,108,110,101,103,100,102,108,101,93,111,109,102,104,96,107,108,101,94,124,94,104,111,96,95,98,117,117,102,99,110,94,65,94,121,95,104,106,105,105,99,97,95,110,100,113,87,99,95,116,107,108,119,104,102,86,102,96,97,98,107,104,107,97,103,91,100,99,87,97,99,109,94,94,94,109,108,117,108,108,103,91,106,104,92,105,109,97,98,106,101,106,108,103,99,99,110,96,100,102,95,100,99,106,105,106,112,104,96,95,111,109,104,84,108,101,97,107,114,103,117,92,95,95,111,106,131,110,100,100,111,121,105,115,115,108,95,112,114,101,98,102,100,102,110,107,105,110,115,105,96,111,111,96,87,97,102,99,104,121,101,105,99,103,107,109,102,92,101,103,103,114,112,92,93,105,107,104,94,111,107,102,101,115,104,102,104,109,86,118,96,103,107,107,105,116,104,112,98,98,107,96,106,110,94,108,123,106,105,106,108,106,116,100,109,108,99,83,101,105,107,101,110,94,103,103,113,100,97,103,113,103,110,117,105,98,106,92,102,105,102,95,91,113,94,117,99,110,115,105,109,111,107,102,112,103,102,95,113,108,120,105,95,110,88,118,97,92,103,100,103,103,105,112,104,110,106,116,108,102,106,107,101,97,109,99,104,102,96,106,107,97,109,115,113,106,116,105,77,84,117,92,104,102,74,104,112,105,104,108,99,110,122,94,113,100,98,109,106,88,98,105,94,106,93,104,99,108,128,97,104,111,100,98,98,103,92,107,105,96,99,102,100,111,111,91,111,99,104,112,114,113,101,102,105,121,88,106,105,101,98,106,103,96,102,107,111,106,97,104,115,94,105,100,104,105,108,96,112,102,110,110,95,98,102,113,108,95,103,111,109,106,88,108,111,105,99,96,106,108,107,109,97,110,98,115,101,93,95,101,101,91,109,102,121,102,106,106,105,114,100,112,113,94,112,111,110,100,109,97,108,94,104,100,115,98,99,95,88,113,111,122,107,110,102,99,123,98,95,104,98,103,102,105,102,114,106,104,102,121,77,97,110,110,103,106,91,114,96,99,104,109,104,103,99,105,106,106,101,94,112,107,120,108,117,95,114,98,108,95,88,104,117,120,106,104,119,110,106,106,96,108,103,112,99,113,99,99,111,102,103,112,97,91,97,98,99,104,101,114,89,108,117,104,99,106,98,90,109,100,98,97,95,101,106,104,95,92,102,99,108,94,99,103,91,99,103,100,102,91,103,96,110,100,99,91,93,122,109,103,113,97,96,111,106,109,101,110,107,97,89,101,107,103,100,105,85,106,105,99,110,109,92,120,101,107,97,106,109,121,98,102,104,81,91,103,103,116,107,98,99,105,108,102,89,108,107,109,107,98,108,109,98,87,104,91,94,99,95,96,100,107,105,109,104,99,90,114,99,101,106,94,113,122,103,104,102,100,105,95,112,102,117,98,102,87,105,97,109,97,103,92,85,105,102,97,89,74,107,99,110,98,104,101,104,101,101,93,112,100,143,110,108,106,92,91,99,95,96,112,131,94,110,105,95,95,99,102,100,99,92,110,101,107,114,88,107,97,101,112,106,109,96,109,114,105,87,106,95,107,104,94,101,109,93,110,105,113,117,98,87,113,96,110,110,107,99,102,123,97,110,105,108,78, +572.53662,102,102,95,105,96,97,100,116,113,93,103,119,112,117,110,102,95,113,110,115,107,88,91,116,93,97,116,97,107,85,102,102,102,98,125,110,122,102,99,109,106,116,98,99,91,108,107,108,105,79,98,121,112,108,100,102,107,89,101,99,89,100,97,100,102,109,93,101,108,97,107,104,92,101,91,107,108,99,104,92,103,102,99,98,108,121,103,110,99,100,103,102,105,114,95,102,102,108,101,116,100,117,102,110,112,101,98,102,112,98,106,96,102,104,106,104,99,99,115,106,96,105,110,111,102,102,94,98,113,127,100,102,98,104,113,116,104,95,102,106,101,112,106,106,110,108,105,102,94,101,99,95,104,96,101,104,111,100,111,105,103,103,108,108,109,90,103,102,108,96,89,102,105,110,97,110,96,112,111,102,101,113,110,96,92,99,105,104,112,78,105,95,104,104,105,116,104,95,103,104,96,103,102,107,104,104,107,99,113,107,97,99,104,107,100,89,116,115,104,99,120,114,102,109,103,108,119,96,117,116,96,112,118,107,109,103,99,99,103,106,101,95,111,109,98,102,95,112,109,100,115,109,108,117,115,113,116,109,111,118,103,108,107,97,109,99,104,100,114,98,100,121,101,107,114,100,101,109,100,100,107,108,116,112,107,99,98,95,105,119,114,101,104,103,102,108,107,105,106,106,114,91,104,105,105,116,110,109,100,99,106,115,114,109,114,107,92,105,105,105,101,92,106,117,108,103,101,109,112,105,111,103,107,117,114,99,101,110,107,105,102,102,105,99,103,115,104,114,99,109,117,110,101,100,106,107,112,102,98,113,106,117,97,96,90,104,102,107,105,107,114,104,125,106,106,85,112,93,101,101,106,109,97,104,108,98,108,101,103,105,113,106,84,95,103,97,113,122,109,121,105,92,111,101,94,101,105,96,101,102,99,98,103,97,111,105,104,97,107,97,115,103,116,103,118,88,104,93,96,105,102,102,106,120,111,105,106,108,96,106,118,109,117,136,97,99,111,102,124,106,99,107,100,101,109,82,80,103,110,102,90,102,102,111,124,107,101,113,101,102,103,105,107,91,104,95,109,114,106,102,93,110,112,105,95,104,105,102,103,109,97,111,103,116,100,102,95,106,113,106,114,90,113,94,97,117,108,114,112,101,95,110,92,98,103,100,98,99,108,93,101,104,107,108,101,109,107,107,102,115,105,105,104,98,108,120,110,118,102,108,102,99,115,89,90,96,113,105,102,104,115,109,99,110,106,94,104,100,108,109,107,101,100,113,97,101,107,100,109,111,99,92,89,92,110,104,104,93,112,105,107,100,109,100,130,103,119,110,101,95,106,109,103,97,121,103,117,108,109,105,90,112,120,111,100,110,102,104,111,94,104,115,106,97,103,108,101,99,122,98,113,81,103,95,100,104,97,96,109,95,102,108,91,114,105,100,105,105,90,102,101,113,112,102,114,107,104,100,107,108,96,104,112,126,106,107,129,119,104,108,113,107,110,116,115,101,107,105,111,102,110,109,100,112,115,113,105,111,111,100,115,99,106,102,103,103,107,105,104,95,103,99,115,120,112,97,113,110,96,109,93,94,100,131,111,110,99,109,95,123,107,104,102,100,106,72,130,98,111,76,99,94,100,98,110,101,107,109,104,119,105,103,103,110,99,98,109,101,110,78,104,96,99,95,100,99,103,107,113,114,106,100,100,98,100,106,111,99,105,113,107,116,90,113,98,112,105,104,102,98,109,114,101,96,109,115,109,107,108,101,107,107,104,106,125,112,112,124,109,109,113,89,112,113,102,92,106,106,103,110,95,117,105,112,112,108,114,100,113,104,120,102,109,109,117,109,113,110,107,102,105,114,110,106,111,106,118,102,113,101,125,107,95,110,109,110,110,103,84,102,108,109,106,100,103,106,105,94,104,95,104,96,106,115,95,125,101,120,105,101,107,116,98,106,99,102,99,108,88,105,77,106,98,112,91,113,101,108,105,108,69,115,116,94,106,113,104,109,104,112,108,113,90,97,109,95,103,108,106,102,107,116,113,111,109,92,95,105,93,105,111,111,98,109,112,98,109,104,96,113,105,100,113,109,100,109,100,106,106,80,98,103,115,105,113,94,109,105,101,135,122,100,95,101,107,99,113,108,106,107,107,104,100,112,95,121,108,98,108,102,107,83,109,95,113,98,103,109,97,104,99,102,112,94,105,109,119,108,113,117,116,98,116,103,101,107,109,111,113,94,106,109,98,120,116,101,104,94,117,103,108,105,100,106,107,101,104,103,107,99,96,112,108,116,107,113,117,121,113,115,111,111,108,95,109,121,102,110,132,110,128,93,109,120,116,109,128,139,155,176,214,268,260,284,302,301,291,262,271,289,239,262,224,197,194,178,167,148,139,120,130,117,117,104,124,116,122,121,114,94,102,111,114,115,108,115,102,115,108,99,103,107,90,97,108,97,103,106,108,87,95,123,103,103,104,114,83,100,104,106,105,99,106,90,107,101,100,92,117,106,102,106,108,107,110,107,99,102,96,104,107,130,95,105,103,102,107,111,110,107,129,116,102,103,101,119,114,111,111,85,110,116,100,105,102,107,96,102,109,108,95,104,103,100,108,96,112,105,106,97,110,105,109,104,110,117,111,109,121,98,108,106,120,105,108,108,110,109,117,88,121,101,100,108,107,114,108,105,98,97,98,107,104,111,103,102,99,91,104,113,107,118,97,107,94,108,92,115,108,108,105,108,80,105,93,108,115,113,108,105,105,110,98,106,128,103,101,92,103,101,108,118,108,103,113,104,105,127,100,122,107,110,106,97,112,106,105,104,112,103,109,111,101,105,112,110,102,104,88,113,111,97,112,110,104,108,106,113,112,94,100,106,107,116,106,105,107,107,91,108,101,109,112,121,101,105,96,103,103,107,110,103,106,108,107,102,104,104,113,106,104,106,101,111,113,100,108,106,108,108,109,104,115,123,105,101,103,104,103,105,107,99,104,125,114,117,98,99,100,102,108,99,94,121,107,103,114,115,92,106,93,109,108,104,100,109,114,119,102,120,96,98,115,102,105,120,102,105,88,97,110,113,105,100,107,95,112,107,91,115,100,111,100,105,98,102,99,98,99,102,111,90,111,120,98,103,105,113,95,98,118,108,120,69,105,104,101,98,133,95,103,104,99,103,107,109,105,102,107,103,99,106,80,92,100,107,102,101,101,108,105,113,96,114,118,103,96,99,108,109,110,107,100,117,90,101,112,112,103,109,99,87,117,112,109,108,106,103,117,95,95,101,127,105,109,113,109,97,116,103,98,117,105,94,103,111,106,110,110,106,97,108,112,102,101,122,101,107,105,112,104,105,108,107,102,101,112,88,106,113,91,108,101,98,117,111,96,111,103,103,103,121,110,116,97,101,97,106,106,102,101,110,125,105,101,108,110,110,106,100,115,111,96,105,105,104,102,99,106,122,105,112,104,102,107,105,104,103,107,93,90,107,95,99,114,107,104,106,108,98,103,105,103,100,107,109,110,99,102,111,123,102,102,117,107,104,93,108,101,110,115,102,103,105,109,106,109,112,103,101,105,104,107,133,103,116,102,103,93,103,102,110,99,102,103,105,110,97,114,110,105,109,110,114,99,115,100,94,106,119,98,115,110,113,101,110,107,102,106,104,104,103,109,113,109,93,114,114,100,108,106,106,111,117,103,92,103,107,102,86,97,115,122,97,102,98,113,101,92,113,106,95,91,105,118,112,103,104,103,108,106,101,103,102,99,105,93,109,101,105,110,114,114,113,112,107,112,106,111,92,105,114,105,111,108,110,91,111,100,102,105,102,99,107,111,96,110,106,122,73,97,112,104,110,115,96,94,96,103,105,106,106,80,99,91,102,103,97,89,108,106,96,114,111,114,107,111,99,104,98,98,99,111,104,92,127,105,93,108,115,108,111,75,97,116,115,98,99,100,104,96,104,111,109,120,102,117,101,93,113,103,94,104,115,103,95,96,94,105,96,119,106,118,103,101,114,103,111,108,103,107,94,109,135,99,90,104,113,92,95,92,99,100,98,116,97,119,101,94,101,100,112,106,106,111,103,100,105,105,106,115,101,103,117,116,109,108,103,106,101,114,104,96,115,105,121,97,110,104,105,98,108,93,101,99,109,109,106,101,100,109,118,105,105,102,120,100,107,99,95,114,113,106,107,89,85,103,102,96,110,105,99,102,106,101,111,105,116,101,98,106,94,99,116,110,100,93,112,94,108,114,95,104,102,104,112,108,92,94,105,89,98,99,102,96,100,120,106,91,99,103,110,112,100,112,107,108,117,103,92,108,109,105,114,106,101,104,105,120,92,107,94,98,102,94,109,106,106,107,109,112,108,113,111,105,117,98,107,113,118,108,94,108,103,93,100,105,100,103,102,103,104,102,107,100,112,100,107,93,110,111,88,111,113,109,102,90,108,105,94,93,102,107,104,105,91,106,102,99,101,107,88,101,100,100,98,119,104,104,114,106,99,95,117,103,89,99,97,107,101,99,99,102,105,110,108,106,111,108,102,102,120,129,109,101,104,95,111,100,125,96,82,106,109,110,99,109,104,107,109,103,109,83,83,110,99,119,95,99,102,121,83,103,106,111,91,98,103,107,99,103,103,113,100,92,108,108,107,111,108,92,98,103,107,102,104,103,104,97,94,97,97,119,107,116,97,107,113,101,103,100,96,105,100,101,83,99,108,103,98,106,103,110,102,92,102,104,107,95,100,96,103,96,103,101,117,99,98,80,105,120,104,97,101,97,101,99,108,115,106,102,95,103,109,121,112,111,101,122,88,113,91,112,112,110,93,93,105,91,105,103,100,103,98,113,107,97,105,103,123,102,108,103,107,103,101,107,107,95,106, +572.67755,92,104,102,129,103,103,89,91,102,103,103,109,107,110,100,111,98,109,110,95,103,98,101,109,102,114,103,112,107,103,107,107,98,107,114,104,102,104,118,114,95,93,105,120,111,108,113,109,105,115,98,93,101,115,113,106,99,112,100,108,95,130,104,90,112,119,102,99,105,95,105,117,97,108,108,111,109,99,109,100,122,111,108,90,107,110,101,107,103,100,109,106,103,111,97,112,97,108,106,80,106,86,111,96,108,87,104,81,114,108,105,106,104,103,124,92,107,105,113,98,100,120,99,109,106,98,94,108,104,110,99,104,98,111,100,104,104,96,103,69,98,105,104,102,106,97,102,106,111,91,89,95,107,110,101,110,87,94,101,110,105,111,103,110,107,92,119,100,101,107,104,90,108,110,102,116,104,100,104,111,102,101,111,103,83,94,94,100,104,86,91,107,101,109,103,107,103,113,99,107,101,110,91,91,101,106,100,92,106,107,112,110,113,100,106,107,103,102,102,101,105,101,118,112,96,99,96,106,113,87,93,92,114,116,98,110,101,106,94,105,102,99,107,110,91,102,110,113,96,98,108,98,122,101,121,110,98,103,114,102,84,107,97,95,106,104,89,113,100,90,125,106,120,111,103,110,113,101,107,103,112,113,119,114,113,105,111,103,122,111,101,96,107,106,112,125,108,97,99,104,94,118,110,77,101,116,123,115,102,113,95,115,108,124,106,96,100,106,105,90,100,119,101,103,114,114,104,102,87,100,109,107,108,98,102,102,110,103,110,104,110,118,103,95,100,105,103,98,112,113,98,115,129,115,101,108,114,107,116,112,111,106,101,107,99,106,105,136,111,97,104,83,98,106,109,99,108,103,94,111,122,102,103,108,84,100,105,117,115,101,108,104,97,121,105,100,99,110,93,119,108,107,108,108,92,111,122,106,96,102,95,108,112,116,94,94,121,109,105,106,103,102,112,108,112,89,105,95,96,108,104,113,100,111,102,108,114,83,101,98,115,113,95,104,90,114,102,104,105,105,91,104,101,105,102,110,107,114,122,110,111,104,102,116,105,105,117,94,103,116,107,112,102,91,93,82,108,114,108,107,104,103,107,110,106,114,112,106,96,97,103,109,106,103,102,97,102,113,113,104,90,99,105,105,94,100,99,121,103,107,109,108,113,108,107,104,105,107,93,105,111,99,105,109,115,104,104,102,106,107,112,111,98,107,100,102,106,105,100,111,106,105,101,97,113,98,105,95,102,107,102,98,100,93,110,113,108,104,103,102,105,100,107,94,102,105,111,104,100,108,68,96,95,103,102,102,101,123,109,70,119,120,104,103,110,100,111,101,110,97,110,96,107,98,106,118,102,100,124,104,114,138,91,105,106,107,103,99,114,113,111,98,113,105,109,77,110,86,113,116,104,100,105,109,101,109,86,111,99,102,106,99,106,109,102,123,104,111,109,107,99,108,115,114,96,102,105,93,110,104,109,121,106,106,98,111,110,100,101,98,122,73,96,112,98,104,113,97,113,104,111,113,102,105,101,107,100,107,90,101,99,117,116,102,94,109,110,117,100,103,111,106,127,95,104,105,113,94,109,105,118,108,99,121,99,122,104,109,103,110,122,111,106,103,100,85,93,104,113,113,108,102,131,108,113,103,109,104,107,118,108,101,115,98,113,111,126,95,104,109,103,114,110,97,90,112,110,109,103,102,101,110,99,109,118,101,117,100,101,96,88,103,103,119,104,105,96,115,109,95,112,110,106,100,125,113,106,110,103,96,95,95,107,100,99,107,97,119,104,102,105,117,107,109,100,112,90,98,70,118,112,104,103,113,104,109,108,111,100,104,105,90,100,116,104,103,113,98,103,105,118,99,126,106,109,114,110,118,109,100,111,117,112,115,99,104,94,94,115,104,96,99,105,98,101,114,102,96,109,111,116,90,95,103,105,103,94,113,99,109,102,105,100,102,118,112,114,109,106,112,92,117,95,107,100,105,101,97,108,104,106,115,112,104,116,98,105,118,104,107,99,117,99,113,81,100,109,101,97,107,117,99,104,98,115,97,94,101,97,92,104,107,101,114,117,113,109,113,101,85,107,91,104,80,95,100,111,104,99,111,104,113,95,107,94,102,85,109,97,117,103,110,99,93,98,108,111,94,98,102,102,97,102,97,105,108,103,111,101,97,105,115,110,103,114,104,100,107,92,100,105,98,120,117,113,109,108,91,104,96,102,107,107,115,106,109,102,121,98,110,103,107,113,108,82,94,98,101,96,123,107,99,110,106,120,111,113,111,114,94,109,116,94,115,137,104,102,123,121,104,117,113,121,99,114,112,92,113,111,99,131,108,118,107,117,110,138,173,173,210,248,230,252,284,320,312,280,249,250,261,231,191,228,202,192,169,144,175,142,116,125,135,117,120,123,90,98,117,117,114,109,110,115,121,111,113,103,108,97,99,97,129,99,107,107,102,109,110,113,117,95,109,124,109,106,101,110,82,96,113,99,96,91,104,97,105,105,106,108,103,105,115,104,110,104,104,98,104,111,117,99,105,113,104,117,105,94,113,103,92,99,108,111,109,102,109,111,94,113,112,101,94,105,98,94,106,98,92,112,99,121,111,108,106,97,101,105,101,102,110,106,100,111,106,118,106,101,96,117,103,108,105,104,110,101,105,90,100,115,95,106,95,122,110,104,103,104,113,101,106,95,101,112,111,109,111,119,98,99,102,96,113,112,108,110,109,101,94,114,104,99,96,94,102,108,111,97,103,107,114,110,103,95,106,108,125,106,107,97,94,103,99,101,107,105,100,112,113,105,96,98,92,98,101,98,103,104,113,107,110,103,90,105,109,104,99,103,119,108,112,107,101,104,100,110,99,106,102,99,98,95,98,99,104,102,104,102,97,99,104,104,101,108,99,105,110,109,98,117,114,115,99,102,109,117,112,105,107,110,92,102,98,105,114,103,109,98,109,103,97,107,113,103,104,91,113,92,103,99,103,95,103,97,103,113,103,99,99,99,110,112,99,104,108,113,113,80,99,97,105,107,116,108,106,110,108,117,96,107,102,102,108,109,117,106,101,113,99,96,105,112,99,117,106,103,95,120,101,108,97,101,113,109,99,91,102,106,110,107,99,100,97,100,112,101,91,105,99,88,100,102,105,114,103,95,103,106,96,103,132,96,98,100,98,107,111,116,101,97,102,104,98,100,103,101,87,100,108,99,104,100,104,103,99,95,107,105,103,117,97,102,113,94,102,102,114,109,117,104,103,103,108,111,124,99,104,102,107,105,102,101,108,105,107,103,91,103,113,93,102,102,105,93,104,99,103,98,100,98,109,104,107,114,109,98,112,119,101,113,116,101,98,103,107,107,113,103,95,98,117,108,99,104,96,109,111,114,109,111,101,110,111,105,106,103,99,116,96,96,93,95,117,108,110,105,103,97,101,96,98,109,103,97,110,115,120,105,97,102,106,120,99,110,109,102,101,97,126,130,89,108,105,109,104,107,107,111,106,99,88,94,102,97,108,101,106,107,102,105,115,102,108,106,109,105,123,103,102,132,115,109,92,103,110,105,118,100,111,100,96,108,112,111,106,107,102,119,103,104,103,106,115,111,104,99,96,105,91,104,107,132,93,98,102,96,107,99,93,105,120,107,105,113,107,99,91,98,102,106,106,94,104,98,98,102,112,110,105,105,102,110,100,115,100,111,93,113,105,116,98,102,99,109,102,100,103,92,99,107,101,99,98,106,106,120,104,105,103,111,107,112,100,98,68,113,109,118,100,99,112,106,107,107,107,115,111,96,105,91,99,100,108,108,97,99,98,107,117,107,111,110,105,112,96,97,119,102,111,99,100,98,104,109,111,104,105,117,101,96,108,97,103,109,100,103,109,103,93,112,108,121,106,104,115,111,104,106,107,101,105,106,96,106,96,104,100,112,102,97,114,95,96,108,100,110,140,103,96,104,106,118,100,98,106,112,103,113,108,104,106,87,100,109,91,94,96,110,104,99,102,108,86,97,107,112,108,106,104,99,97,110,93,108,99,105,112,105,122,113,98,105,109,91,100,79,106,102,110,104,94,102,113,99,107,94,119,118,102,102,86,107,83,100,106,105,103,111,103,111,103,101,103,104,98,108,98,97,109,110,112,104,105,91,94,105,106,100,106,95,96,108,113,105,102,99,103,98,103,113,107,111,104,100,105,105,99,113,104,94,106,97,106,98,101,108,116,99,118,102,113,96,113,97,99,107,103,100,110,111,105,103,100,99,98,97,100,110,94,96,89,100,107,107,99,109,98,116,72,111,107,114,109,113,107,103,104,106,130,107,101,98,93,97,109,103,105,99,104,101,99,97,98,105,102,107,109,108,118,94,97,104,105,100,92,98,107,97,124,106,98,101,88,103,108,81,107,97,102,105,109,107,110,108,99,94,107,99,98,104,107,104,98,100,104,104,103,104,89,132,105,112,103,111,103,112,106,111,110,96,112,95,104,96,114,112,99,123,103,105,111,100,92,117,110,105,109,105,108,105,99,98,107,102,104,103,103,113,108,110,112,91,96,118,102,100,101,117,92,95,87,109,94,92,119,111,109,111,100,104,106,105,98,98,102,97,102,101,100,103,94,104,94,106,108,104,101,106,111,110,109,94,102,106,111,88,105,99,98,109,92,99,100,105,109,94,99,96,104,108,98,101,102,95,106,104,93,99,106,107,94,93,98,95,101,112,85,115,108,107,106,106,95,108,118,104,94,110,112,112,101,116,122,108,88,112,111,90,97,95,101,91,109,91,101,124,102,94,109,93,104,95,100,96,98,111,103,93,108,103,113,100,109,117,109,100,109,88,116,114,92,105,122,93,116,95,103,102,104,99,117,119,107,107,111,113,97,98,97,102,104, +572.81848,101,90,95,96,102,104,118,118,108,99,108,92,102,105,110,101,92,108,107,101,104,115,93,107,93,97,110,105,87,111,99,95,98,101,100,102,104,110,107,104,97,95,113,100,103,111,109,107,111,112,110,109,106,99,118,105,117,97,109,104,104,109,93,111,106,111,105,113,106,100,113,114,106,124,103,112,102,104,102,105,119,113,99,106,110,105,112,113,96,115,112,102,99,107,100,106,99,109,121,113,103,89,107,102,97,108,94,102,111,94,107,73,111,98,102,107,96,100,113,98,87,112,99,109,114,110,118,94,121,113,110,107,94,106,91,103,126,100,109,107,105,102,82,111,106,86,117,102,107,104,101,105,105,111,103,105,104,97,105,101,108,121,106,101,108,69,109,110,103,106,104,106,113,102,112,98,103,69,116,103,97,108,117,106,101,103,92,97,105,109,107,112,106,102,108,102,105,113,100,110,101,103,105,108,94,95,108,108,116,105,96,107,110,103,93,116,98,112,107,96,118,115,98,99,95,106,103,109,104,106,102,105,114,104,108,112,100,119,93,73,105,112,112,105,107,106,112,114,113,109,104,112,106,109,101,112,101,111,100,102,113,106,104,104,92,108,118,110,110,94,98,116,113,105,97,117,105,103,106,114,97,118,102,121,108,105,113,116,92,105,105,117,102,116,102,106,104,108,111,94,94,105,101,115,103,121,107,103,121,108,109,113,106,115,98,99,115,107,107,101,109,94,109,116,113,91,100,100,126,108,108,112,116,112,110,104,129,107,112,113,90,106,88,113,108,119,118,110,123,104,120,109,112,102,103,116,101,114,102,112,97,104,96,106,101,109,101,107,99,116,106,102,93,98,107,100,103,103,112,123,106,105,95,97,107,107,90,103,104,109,116,106,109,104,96,112,95,110,99,104,105,114,95,101,106,111,120,113,112,106,117,106,107,124,91,104,106,100,69,108,97,99,113,112,114,110,107,103,111,117,102,115,102,111,101,120,110,102,101,110,119,96,103,108,109,115,85,98,119,113,85,109,106,104,109,98,101,111,126,110,107,122,106,103,114,107,111,97,93,110,103,109,96,108,110,108,101,115,94,117,113,103,118,112,107,95,113,110,108,99,100,108,103,102,119,95,99,103,116,111,118,105,77,113,108,97,102,101,110,107,108,106,114,106,89,97,95,97,102,99,103,110,113,98,104,107,135,107,110,100,104,111,107,103,107,99,110,105,106,106,103,105,97,108,103,111,103,108,114,95,105,112,108,101,103,91,99,113,103,100,105,113,102,105,107,103,108,103,107,84,100,111,103,114,98,103,114,99,98,100,105,95,113,102,122,108,109,113,100,96,102,116,116,112,112,115,112,103,99,97,110,115,102,105,110,103,105,102,112,107,102,104,109,115,99,109,104,91,109,99,116,111,105,101,126,118,109,106,95,123,94,114,103,117,116,106,100,100,117,95,111,113,102,114,94,104,103,98,95,113,110,102,107,93,110,105,128,107,111,97,97,112,118,103,103,108,109,104,97,94,125,105,105,106,104,112,107,96,116,102,116,100,103,102,108,105,107,99,85,129,108,111,110,98,114,115,119,126,106,136,104,98,102,93,104,110,104,112,97,113,112,106,98,110,110,106,105,90,107,113,116,114,118,106,101,103,92,124,110,119,100,108,113,106,108,99,108,108,118,109,94,95,104,120,113,103,112,117,121,114,107,99,94,113,99,110,109,100,103,92,107,118,111,95,98,106,97,106,95,118,105,110,109,109,80,124,100,108,106,100,108,112,110,103,116,118,121,107,101,109,96,104,110,99,114,111,114,98,99,106,103,108,99,98,113,102,102,102,112,113,103,102,109,101,108,101,113,98,88,109,124,109,94,114,103,122,114,106,111,104,104,99,108,109,97,114,98,111,106,107,105,97,107,109,100,102,117,110,110,92,99,101,91,104,104,109,104,114,105,107,108,102,90,114,103,106,99,98,113,124,103,101,95,111,99,111,99,78,99,103,95,104,101,106,110,107,106,109,117,118,110,111,95,109,111,100,104,114,94,115,108,114,121,117,92,94,92,115,100,128,119,109,99,104,94,101,103,110,102,100,108,106,108,108,98,99,114,95,103,111,102,121,105,103,112,94,108,112,104,91,112,99,104,104,109,135,108,113,98,108,96,139,115,95,105,96,98,107,98,102,109,101,97,105,76,111,112,116,109,105,105,106,109,103,103,111,103,102,113,108,103,106,111,97,113,105,104,104,108,114,117,116,125,103,77,112,109,95,113,100,106,108,97,118,121,104,110,112,112,112,94,113,109,113,117,125,101,100,112,100,105,120,111,101,124,124,114,105,110,135,134,101,125,114,142,124,151,128,180,184,224,267,301,266,289,319,256,294,221,242,257,245,222,213,179,176,161,146,132,125,107,128,116,103,114,107,114,103,114,110,121,108,114,112,126,104,117,100,106,93,101,104,97,93,125,111,104,102,110,115,103,109,104,97,109,103,95,110,118,111,109,103,110,106,100,95,99,101,98,110,101,111,103,123,102,101,111,107,95,98,108,107,93,100,118,113,101,112,99,101,106,115,112,96,105,110,108,89,108,96,102,99,107,111,110,100,98,98,109,107,99,98,109,109,110,98,118,109,106,95,103,104,101,98,123,105,89,94,109,95,107,98,107,109,107,95,102,100,98,98,106,126,94,95,116,100,106,109,106,115,106,93,90,115,103,122,96,96,107,89,104,112,104,102,72,110,102,109,117,99,100,115,111,111,102,99,98,104,110,104,105,103,106,99,119,116,88,110,105,105,91,106,102,92,109,110,116,83,98,108,105,103,102,93,106,111,107,102,98,104,105,108,116,109,111,99,99,101,106,105,112,104,106,118,117,99,110,90,98,97,113,106,105,99,103,96,101,105,87,107,111,113,102,105,113,100,116,104,96,111,92,108,104,98,93,99,106,91,100,111,117,107,100,78,93,90,107,115,98,94,104,110,106,109,104,111,116,109,97,92,109,112,106,109,112,109,102,112,98,95,95,104,101,114,98,104,100,102,98,99,95,100,114,90,105,112,113,105,111,116,101,98,105,102,100,112,105,130,101,104,102,119,103,102,112,99,99,104,103,105,102,101,113,109,106,105,112,113,108,101,100,87,101,107,106,97,104,104,107,102,104,109,99,110,104,102,108,101,111,100,119,99,96,100,108,105,100,109,116,104,108,99,105,116,102,94,106,112,104,100,101,106,102,103,95,104,102,96,110,105,102,104,113,102,117,97,107,106,97,98,107,102,117,103,113,92,106,103,105,96,119,99,110,105,100,105,112,103,100,93,106,105,96,97,116,105,88,102,106,82,107,111,100,102,108,95,105,109,100,107,98,105,111,105,101,109,99,98,103,98,116,103,108,102,109,112,109,113,107,104,105,90,105,95,111,99,111,90,102,99,100,102,110,93,101,102,110,103,98,101,106,104,101,105,109,113,106,107,109,109,104,103,102,113,104,104,87,107,100,99,106,105,95,93,103,107,95,94,96,106,90,99,97,109,116,103,100,100,113,104,109,110,106,94,112,105,88,106,107,84,108,102,99,93,112,103,104,102,109,97,111,102,104,110,89,100,102,108,100,111,98,103,108,98,103,96,96,126,106,103,100,104,98,108,100,89,102,98,101,109,105,95,98,109,97,102,93,102,103,102,103,109,101,89,97,100,104,104,109,96,106,105,96,104,101,120,112,81,114,104,100,106,103,108,103,95,113,100,106,112,106,107,107,85,111,114,103,109,100,102,98,100,103,98,100,104,99,104,99,104,102,96,96,109,103,107,107,109,121,106,101,93,111,102,102,110,100,100,102,92,81,125,96,108,94,94,117,103,100,109,111,104,107,115,116,106,109,106,104,112,103,105,142,100,111,109,109,111,107,92,111,136,103,104,111,104,113,100,114,97,103,100,113,106,94,91,111,92,113,109,107,109,103,116,104,100,106,95,105,109,106,102,117,102,114,110,113,112,104,105,105,104,98,113,112,100,83,101,107,113,116,109,100,112,108,114,109,121,106,96,97,110,108,99,107,116,102,113,114,96,98,96,98,102,88,107,98,116,108,111,102,103,107,105,111,112,102,108,107,96,101,95,113,112,102,96,106,105,117,109,102,107,87,105,112,98,107,103,117,108,102,102,103,66,105,93,112,102,100,109,104,114,115,96,109,108,94,112,108,104,96,98,102,105,103,79,103,107,109,103,104,107,99,113,115,105,109,103,116,90,110,110,107,111,102,113,108,103,102,102,100,107,114,114,98,99,95,97,97,100,104,102,111,113,105,113,112,100,111,108,101,100,118,103,110,115,110,109,108,113,103,101,115,107,115,107,121,92,107,102,105,94,116,106,102,81,102,95,101,101,103,99,105,100,101,112,116,105,98,95,102,86,110,100,103,95,111,109,108,105,103,86,106,88,95,103,110,97,107,96,86,121,105,101,112,113,106,98,103,105,103,103,113,102,108,99,91,99,95,100,105,97,104,109,105,95,106,110,102,99,95,103,103,100,107,102,99,104,109,116,100,96,113,88,119,117,101,102,91,98,94,104,107,113,93,102,104,112,101,95,94,105,103,111,104,99,113,109,101,101,101,109,88,106,103,104,93,115,107,109,94,102,115,99,120,103,114,100,108,104,107,105,104,95,85,106,125,109,104,107,97,98,104,85,99,94,104,117,107,102,97,99,109,105,106,115,108,93,95,105,105,64,73,106,107,91,108,88,115,106,117,103,110,107,105,105,102,116,106,98,94,131,102,108,96,101,107,107,92,105,97,94,103,103,89,99,93,117,98,125,101,103,96,98,98,106,121,104,103,108,112,115,118,99,98,110,102,108,96,96,100,109,100,106,117,104,92,100,111,106,109,83,96,112,105,104,109,98,103,102, +572.95941,101,109,99,106,99,96,82,100,80,93,103,110,112,103,108,113,110,103,100,98,91,110,99,110,106,101,93,103,98,107,109,103,98,96,126,97,103,110,106,109,124,99,91,104,109,106,106,98,96,100,102,116,107,105,104,94,117,99,112,100,116,97,107,107,103,100,99,102,101,113,100,105,101,95,105,105,96,102,101,108,117,101,101,106,104,103,101,97,101,98,99,100,102,101,101,100,114,120,104,117,109,110,103,99,105,109,104,100,103,107,110,104,110,105,110,107,91,106,99,110,103,96,102,110,110,113,122,91,113,94,103,105,101,101,105,113,112,112,114,99,95,117,91,103,96,103,120,108,107,98,104,107,107,92,100,96,95,101,112,104,89,97,95,103,108,111,104,105,87,102,102,109,105,106,109,73,104,95,116,109,113,116,109,109,101,90,105,99,117,112,103,103,100,108,108,102,98,100,110,100,94,101,93,97,100,97,102,109,106,106,98,109,91,97,121,108,105,109,109,96,107,108,100,102,109,105,108,97,104,100,104,110,106,112,109,105,102,107,133,107,100,101,109,101,103,94,99,101,116,106,105,101,94,107,101,99,99,101,97,106,90,108,95,115,102,113,106,104,84,91,108,107,107,101,102,101,99,106,101,111,83,101,105,95,111,109,87,104,104,102,97,104,108,108,99,103,100,92,109,103,100,102,114,105,104,108,108,102,95,111,105,108,113,98,108,111,94,101,97,102,109,104,112,99,113,114,105,95,104,102,104,100,115,103,92,115,112,103,95,104,105,114,106,120,97,99,106,113,95,85,125,100,100,103,113,102,103,112,106,102,105,110,102,91,110,97,106,107,99,99,112,105,103,108,99,99,112,98,108,101,101,113,103,123,121,105,98,116,100,110,109,95,105,106,100,102,110,109,110,109,109,103,106,97,113,112,106,116,106,111,90,109,118,108,109,101,111,112,105,103,110,102,104,104,109,117,105,100,90,111,106,103,108,104,114,102,108,99,94,107,107,98,82,104,106,106,86,90,119,99,101,107,100,113,104,111,105,106,108,114,104,102,101,112,101,109,100,106,106,107,110,109,96,98,101,110,108,107,105,101,105,100,112,103,106,107,102,89,95,117,97,97,91,103,104,98,95,106,95,91,127,105,106,105,93,115,107,102,119,109,103,100,102,95,109,99,108,105,95,88,111,96,104,116,105,98,105,108,100,106,108,104,94,106,106,110,115,113,117,102,93,106,103,85,108,99,100,101,108,103,111,107,107,102,104,95,103,110,102,112,106,92,104,107,94,125,92,106,109,102,97,100,101,112,100,113,94,104,111,111,102,103,111,100,105,112,100,102,105,91,107,105,96,112,108,100,98,108,109,106,113,113,106,101,98,101,108,106,117,104,103,97,99,106,109,124,87,104,105,96,113,109,102,87,108,98,105,105,109,96,100,91,90,109,105,108,102,105,102,120,99,103,107,105,97,102,98,85,109,116,105,105,113,106,103,97,107,118,119,100,119,101,105,103,108,98,105,93,101,103,113,94,106,99,92,111,98,106,109,109,110,109,103,90,107,107,97,112,104,99,103,112,110,117,112,106,112,103,109,101,99,92,70,102,106,114,92,96,101,99,113,93,112,109,113,106,99,109,112,105,100,108,104,112,109,98,107,102,103,106,110,102,109,96,106,104,104,106,107,109,111,92,110,118,115,114,99,107,103,99,100,103,101,106,119,112,109,108,113,99,105,116,105,91,93,118,100,108,97,89,105,98,104,105,109,102,105,101,109,106,108,109,120,102,106,118,98,114,115,104,108,103,115,105,100,112,101,105,108,105,104,104,104,107,112,109,103,114,108,100,110,107,97,104,117,103,106,110,98,96,112,120,111,114,98,112,106,106,106,99,113,98,114,110,102,111,108,76,98,105,92,111,99,100,99,112,104,91,113,100,114,87,109,109,90,107,106,99,115,115,98,104,115,81,99,101,99,110,108,102,101,108,108,103,100,111,108,101,101,98,105,111,101,115,108,98,108,100,109,105,82,117,110,114,110,102,107,102,88,108,109,103,110,98,104,117,86,106,105,109,109,102,109,109,103,107,106,105,113,101,99,117,108,110,102,105,105,106,115,114,102,113,107,105,100,106,90,95,111,104,92,114,112,114,106,102,110,116,108,99,84,110,112,104,119,119,117,97,105,100,121,119,107,96,98,110,110,100,97,114,103,107,113,112,108,116,109,101,99,113,105,100,107,114,111,96,103,102,109,102,104,104,98,103,106,99,105,113,110,102,100,100,104,117,106,101,109,104,103,116,84,104,102,102,108,108,112,110,100,104,112,114,99,99,102,120,107,101,123,105,124,115,112,126,130,115,133,134,144,187,219,245,224,235,286,296,260,230,272,238,238,241,227,206,207,157,147,148,137,122,108,123,116,119,112,112,111,107,102,104,89,108,104,118,117,119,105,107,103,123,103,106,109,100,109,106,119,102,113,108,98,108,100,95,110,118,113,105,108,107,113,101,111,114,107,104,101,104,112,95,107,114,117,105,99,107,113,110,93,103,107,134,106,122,113,101,98,116,107,101,92,100,110,97,102,112,98,109,88,91,98,103,112,99,117,96,115,100,117,110,103,106,106,112,103,106,105,102,109,106,107,98,114,97,115,116,96,99,113,103,111,107,108,94,103,94,100,108,114,98,105,102,103,98,100,96,104,108,100,104,104,98,106,103,99,95,94,101,104,106,99,101,109,107,100,104,113,113,107,102,102,106,91,111,102,125,111,116,104,115,109,132,96,112,103,98,102,95,113,108,99,108,97,102,109,106,103,110,109,111,103,114,110,98,103,109,100,121,98,112,106,96,106,104,108,110,115,113,116,119,120,111,107,100,100,112,101,114,104,114,102,105,103,109,124,86,119,123,103,117,94,112,95,96,91,104,106,100,105,111,109,105,100,99,103,111,87,106,110,105,86,114,114,113,92,105,103,102,102,115,93,113,93,107,105,121,120,110,109,105,123,104,106,111,106,73,106,95,106,108,108,111,99,103,101,105,92,102,102,92,88,117,110,115,103,110,109,98,101,112,116,100,109,114,92,102,101,109,110,109,105,111,110,98,118,109,102,104,121,101,108,112,114,110,99,103,100,106,109,100,95,108,108,103,106,101,108,110,105,110,102,105,106,88,102,101,107,101,106,102,109,106,105,118,110,110,100,104,105,111,100,106,134,122,91,100,104,106,99,98,106,98,99,109,95,96,106,101,124,95,105,92,104,115,79,102,103,108,96,106,121,107,113,99,107,102,104,113,103,108,109,100,109,110,112,97,121,103,109,104,103,111,103,107,116,100,102,96,103,99,102,99,102,107,89,100,112,101,107,104,102,101,111,109,102,105,104,115,111,104,89,104,98,94,105,120,115,109,112,105,105,90,111,99,100,113,109,95,108,114,109,105,106,104,106,107,109,100,108,120,107,107,97,108,94,106,104,73,108,106,110,88,102,95,100,105,111,89,109,103,107,101,105,109,111,82,112,101,102,94,116,108,121,112,106,103,106,115,92,108,94,112,108,110,109,121,98,102,107,105,110,87,94,105,108,110,100,102,110,112,105,97,102,117,105,98,102,108,90,104,99,95,110,96,92,119,97,104,101,102,105,114,105,111,100,112,106,104,113,113,92,101,115,114,106,103,96,99,100,84,101,112,100,109,101,100,96,108,108,115,121,99,99,103,97,99,110,113,117,95,102,95,107,94,111,92,106,111,102,103,104,115,103,99,105,115,106,114,77,103,110,101,105,120,113,107,104,96,103,106,113,106,93,111,112,122,115,100,99,107,107,104,109,105,108,105,106,107,104,104,109,107,104,101,103,97,97,111,98,97,107,100,107,105,94,104,103,93,99,104,97,101,114,96,107,111,117,98,100,99,97,106,102,109,95,99,106,103,105,103,112,105,113,100,103,113,117,89,108,112,101,122,104,106,74,116,104,104,117,94,107,103,106,108,103,102,99,65,93,117,105,95,96,93,105,100,100,113,106,112,111,90,90,101,104,98,100,94,112,95,107,124,105,103,110,106,100,111,109,106,112,97,106,112,90,115,100,111,101,101,115,111,104,108,113,102,102,117,89,106,112,105,103,123,109,112,113,98,106,106,99,104,102,99,98,107,102,105,106,103,102,101,104,103,107,109,113,101,102,101,120,119,114,109,116,100,104,108,123,102,107,108,115,105,106,117,95,118,109,102,102,92,107,105,103,102,103,103,103,107,102,114,103,84,99,108,110,99,116,91,113,104,99,102,112,117,114,95,93,99,97,117,108,107,115,113,107,114,109,99,116,95,115,109,115,108,103,107,115,95,103,103,117,96,104,99,113,110,100,113,102,103,111,104,103,112,101,105,98,94,105,108,117,123,95,102,87,105,99,104,94,87,105,108,97,105,101,100,104,102,102,96,104,92,101,115,99,97,99,108,101,109,95,112,103,97,96,99,103,112,109,113,97,100,103,111,99,103,108,109,93,98,101,111,106,107,104,107,95,124,89,97,104,106,105,96,105,95,97,105,95,104,101,97,109,104,90,96,98,98,104,103,100,99,108,107,114,104,99,98,108,95,103,108,76,102,105,108,94,104,100,99,114,108,112,106,99,104,107,102,107,111,107,100,121,103,110,103,104,106,93,107,106,105,104,106,109,95,101,95,99,105,89,107,103,98,93,114,102,95,109,102,113,110,88,74,99,107,92,99,102,108,108,121,108,99,94,108,110,100,103,87,102,109,105,110,106,100,85,95,97,106,102,106,104,112,108,102,103,107,100,102,106,109,116,109,106,100,101,99,117,109,105,102,106,105,103,113,91,106,104,102,107,100,100,109,98,103,111,88,102,101,84,97,105,104,108,98,98,105,100,104,99,133,108,94,98,90,93,109, +573.10034,125,99,108,108,104,104,93,102,96,102,106,108,109,123,105,94,95,107,100,109,104,102,112,86,110,113,114,108,93,103,107,104,114,109,116,92,107,102,91,120,110,109,111,102,97,109,117,110,92,111,106,109,107,92,82,100,100,109,98,113,105,105,106,101,117,94,103,98,103,105,98,98,95,95,95,100,99,114,104,109,112,115,107,107,96,90,94,110,91,114,105,107,99,99,85,103,98,113,103,97,106,105,113,101,124,119,101,101,100,117,113,97,103,100,104,96,101,96,97,105,110,100,104,113,109,91,110,101,112,102,95,106,97,101,102,99,102,93,96,102,97,106,109,84,115,107,87,116,100,104,106,113,113,91,101,98,99,99,95,104,110,106,112,104,100,112,91,98,118,99,98,102,102,89,83,112,103,108,108,113,110,101,101,103,117,98,104,103,111,103,109,106,103,110,97,101,108,95,101,103,88,88,103,91,95,108,90,102,109,98,81,99,118,100,107,104,110,105,109,88,106,99,112,103,111,104,93,95,116,113,106,104,116,110,117,92,113,91,107,97,99,98,112,99,109,102,109,114,111,98,99,113,96,100,96,100,91,96,112,101,95,103,95,106,105,112,109,110,114,89,117,105,95,109,104,100,102,96,99,101,104,103,95,106,115,95,105,119,106,94,104,103,105,101,100,113,100,109,104,101,108,105,112,100,92,106,115,120,115,95,103,103,114,100,87,98,98,118,99,94,97,105,109,107,113,99,92,106,111,102,111,102,118,117,105,113,100,113,125,100,98,102,108,90,114,100,99,101,114,111,110,106,101,96,108,104,105,98,110,105,109,96,103,96,99,100,111,109,107,102,103,102,135,93,135,109,113,111,95,106,111,98,105,99,112,110,98,105,103,107,110,102,98,101,99,108,104,124,107,108,101,108,103,107,118,101,99,109,102,102,97,102,99,107,99,108,102,101,105,88,98,94,96,104,94,95,102,105,108,108,105,110,104,103,104,110,106,107,112,103,108,100,88,99,107,124,83,101,122,103,104,109,99,115,106,100,100,98,103,110,115,114,97,101,88,110,106,113,98,115,95,99,113,93,88,82,104,113,116,98,112,112,104,82,104,103,97,98,101,113,104,102,107,102,91,101,96,98,97,93,113,104,99,108,99,107,104,103,99,92,113,107,106,83,94,109,103,111,100,109,100,103,111,73,109,93,103,102,103,96,107,100,92,113,105,69,78,104,99,106,102,104,93,98,112,104,112,108,101,115,99,78,96,116,99,104,104,116,111,99,114,108,97,96,109,91,103,102,114,103,98,110,110,119,102,109,104,101,110,109,106,98,104,101,105,98,107,108,95,110,107,104,95,102,111,112,100,104,98,130,98,105,92,101,108,92,108,90,107,110,117,87,97,99,99,108,103,116,103,103,100,110,101,93,105,100,105,106,102,104,99,107,99,115,103,95,114,112,114,107,112,103,104,103,107,96,102,111,106,100,111,102,108,125,96,104,109,96,103,110,109,106,104,108,105,112,113,90,113,104,110,111,111,111,92,114,109,99,106,98,106,108,99,95,97,109,105,109,109,109,104,106,94,105,106,103,92,114,101,97,119,101,102,109,109,110,118,121,109,113,95,106,114,105,113,106,110,95,106,99,105,109,111,94,98,107,106,104,104,103,104,105,103,105,97,102,102,95,112,96,103,107,98,105,112,119,118,101,109,107,111,100,105,111,106,118,108,113,109,106,111,99,104,104,108,118,95,117,114,106,104,105,91,109,107,113,100,108,94,102,127,116,103,102,76,93,100,103,103,106,101,107,104,112,103,127,104,103,101,112,105,103,109,110,105,107,95,114,112,102,103,106,110,110,102,115,103,118,104,112,103,102,103,102,116,119,110,110,99,98,108,115,119,107,95,107,96,97,103,110,93,114,110,105,103,87,91,116,103,100,98,108,108,109,100,121,116,106,104,98,95,105,109,100,102,104,100,107,121,113,103,97,107,116,104,103,104,100,104,113,106,113,95,103,108,104,99,111,104,119,92,92,100,116,96,103,108,99,102,95,100,86,102,110,112,90,102,102,96,106,103,116,105,108,102,100,103,120,103,107,108,98,107,106,99,114,108,115,99,112,103,90,117,140,103,95,100,100,112,104,106,114,96,107,106,99,107,113,110,101,85,106,95,112,107,104,104,104,105,90,104,117,97,98,109,99,111,109,105,110,106,104,110,83,121,96,99,96,103,102,103,110,98,98,105,98,88,102,100,115,101,102,114,102,96,102,105,96,93,116,79,104,93,107,108,111,110,131,90,101,98,97,107,100,103,100,110,125,117,113,115,101,103,103,105,111,110,110,131,104,112,110,114,145,128,107,138,145,166,216,195,230,281,263,264,293,290,259,256,256,269,249,223,180,192,159,148,149,133,131,123,117,129,113,114,107,121,124,96,104,116,125,126,116,114,107,126,99,104,100,101,121,91,109,106,102,109,107,109,108,110,104,112,101,107,99,106,116,102,124,95,103,99,106,90,117,107,101,107,102,120,121,94,104,107,116,102,95,96,97,107,96,111,103,114,110,114,119,102,95,118,106,107,99,93,104,98,121,109,96,108,119,106,105,104,117,97,106,100,108,108,103,115,72,103,107,102,104,106,92,112,112,99,96,100,101,83,101,92,109,102,102,110,83,116,103,114,122,102,110,102,111,106,112,101,108,98,101,99,132,103,108,104,108,111,114,88,104,110,107,100,94,98,107,99,97,82,99,103,97,110,101,103,111,108,101,101,105,100,108,104,123,107,93,90,117,90,102,105,96,101,110,93,110,103,105,108,105,110,112,105,103,68,96,124,98,91,111,96,97,109,99,110,105,103,104,104,110,99,103,127,85,113,101,99,100,110,94,105,107,93,110,103,108,110,108,113,99,106,124,110,105,125,116,99,103,106,101,109,106,104,104,106,98,111,114,95,115,102,94,95,99,106,120,104,113,115,109,106,101,108,101,99,98,106,124,108,115,105,112,110,107,108,106,103,109,102,101,108,101,117,111,93,109,95,118,105,105,100,91,107,106,109,95,106,106,105,106,108,110,108,105,94,111,102,95,97,95,95,106,113,105,93,100,100,101,108,96,102,98,109,109,111,92,109,101,109,107,97,104,99,105,109,111,93,95,97,111,98,106,107,102,114,113,106,110,111,108,108,104,101,102,102,105,98,69,105,97,104,108,108,110,96,105,111,90,105,109,107,105,113,117,105,127,104,101,104,98,112,96,106,113,113,117,98,88,105,99,94,100,99,99,102,109,107,104,95,108,112,102,105,106,99,100,109,109,110,106,108,101,115,101,99,94,116,104,98,107,97,109,103,124,99,105,116,115,99,108,104,91,103,105,109,98,100,112,100,97,108,103,110,105,110,106,94,109,105,96,111,108,95,104,92,106,105,99,107,102,103,113,105,100,110,106,102,100,102,113,103,108,114,107,96,108,106,94,106,121,110,114,117,104,100,100,106,106,109,111,120,103,98,102,104,99,107,120,100,101,99,104,100,96,109,106,102,100,83,109,124,109,109,109,112,113,108,104,95,104,97,110,104,93,99,103,109,112,103,99,103,95,94,100,110,110,92,109,103,106,101,114,102,94,108,90,106,91,110,67,108,111,95,107,98,101,101,100,104,102,117,104,101,110,97,78,118,105,86,107,98,107,98,109,111,100,104,105,105,109,102,111,103,101,103,105,101,113,102,105,106,108,112,109,98,104,108,99,102,109,105,96,96,105,103,106,98,115,101,103,112,110,104,116,106,96,105,95,113,103,108,107,105,104,106,104,96,101,99,114,99,99,119,105,101,112,94,112,100,121,117,112,99,115,102,94,113,109,105,106,108,102,103,111,116,95,95,87,101,119,98,105,107,102,99,116,96,104,104,97,100,117,99,105,103,100,100,106,112,84,100,107,107,97,122,114,102,108,94,113,110,106,108,115,99,104,106,108,110,113,103,95,111,106,107,105,103,100,109,103,95,110,97,105,86,97,102,105,94,105,100,103,117,100,97,99,108,106,109,115,98,109,112,109,105,89,102,108,108,90,102,106,113,96,98,102,105,92,95,112,112,98,102,110,96,113,93,107,105,102,103,102,103,97,107,103,98,120,98,101,100,99,90,117,108,100,98,94,111,72,105,108,101,87,101,99,98,102,109,102,100,97,107,101,109,107,102,109,105,115,108,113,102,106,116,94,110,99,105,107,110,110,108,97,111,95,115,102,106,105,107,104,98,102,95,109,105,100,102,98,112,113,113,113,107,96,96,104,116,104,100,108,90,108,113,100,103,119,108,105,108,121,111,108,107,87,105,108,114,98,106,107,113,103,138,95,99,95,112,110,100,104,112,99,108,99,105,98,102,105,102,103,107,111,101,101,101,98,87,100,100,94,107,73,103,109,105,92,87,109,107,100,100,91,98,113,104,105,102,101,107,111,99,111,75,69,95,97,108,94,95,102,107,95,107,105,100,74,96,111,97,99,128,94,94,109,96,99,97,101,98,90,109,109,98,108,102,103,102,98,101,98,96,112,90,102,99,99,95,101,106,107,101,106,103,102,110,112,103,112,98,96,104,92,106,95,110,98,107,108,92,107,98,101,94,103,84,115,97,108,103,99,94,104,109,75,104,107,109,101,101,103,105,104,109,98,109,107,105,110,99,100,107,98,110,106,110,95,101,101,110,109,107,88,109,104,95,114,115,104,103,111,104,102,101,102,105,98,100,109,95,94,101,104,103,98,102,94,109,101,99,113,91,110,97,98,112,105,95,90,98,104,106,97,95,99,100,96,98,105,93,103,94,95,108,105,109,114,98,106,109,100,96,127,91,101,103,106,100,100,109,100,106,102,126,100,94,91,106,110,112,106,110,99,109,104,108,79,94,115,74,99, +573.24127,105,104,95,102,96,121,113,103,99,92,103,106,102,96,110,97,121,120,107,123,112,110,108,90,98,128,97,100,99,127,95,104,102,102,106,105,121,110,113,101,99,100,100,87,100,121,105,102,105,102,95,110,120,97,113,94,108,88,105,94,106,115,115,104,105,102,109,110,124,103,109,100,83,117,107,121,98,106,108,102,104,104,85,106,103,103,96,112,103,110,103,102,105,107,100,94,103,118,102,111,89,109,104,92,96,96,110,119,92,113,109,94,123,108,78,104,119,98,112,87,103,107,98,111,111,100,118,96,113,94,112,104,99,99,105,103,93,101,86,103,95,105,101,123,102,109,102,98,92,114,105,108,103,113,109,115,77,100,122,95,96,95,99,103,101,96,102,84,104,105,90,101,84,97,103,97,98,103,105,100,96,98,99,121,109,110,105,88,109,106,105,99,98,103,107,105,106,102,101,106,98,100,96,107,94,113,110,101,105,110,105,100,107,108,100,105,105,103,104,122,111,114,107,117,124,104,106,120,125,106,89,101,98,107,105,108,105,107,89,128,94,100,109,123,116,94,104,104,110,102,100,105,102,107,105,104,112,104,100,114,107,111,97,104,118,100,119,107,101,105,111,104,105,104,106,115,103,118,93,105,103,107,91,96,120,107,93,111,102,111,101,102,113,95,119,104,121,110,103,104,105,91,94,100,69,107,102,107,116,120,100,114,112,98,102,96,114,97,116,106,96,106,102,96,103,99,101,103,106,118,102,106,96,116,102,101,103,100,105,115,109,90,106,97,117,100,111,108,112,105,96,95,107,108,97,110,101,107,98,103,99,118,115,96,101,95,101,100,96,111,106,104,96,106,92,101,115,99,102,108,125,119,105,100,105,104,94,102,106,109,116,108,108,129,125,106,114,121,97,103,112,105,103,87,113,110,111,91,114,92,99,92,105,122,100,93,100,103,108,104,110,102,97,109,100,92,100,94,90,116,101,111,95,110,107,106,118,113,98,123,104,106,106,94,102,118,109,95,104,108,105,101,99,108,109,100,108,102,98,106,110,91,95,94,112,109,95,106,102,97,105,107,86,101,100,94,115,113,92,105,101,107,106,103,102,101,105,105,93,99,96,104,104,103,98,111,115,102,93,105,107,100,111,116,111,101,112,110,113,116,107,106,106,107,108,97,118,112,111,98,101,102,106,110,99,110,128,107,106,106,98,105,102,111,93,107,113,104,104,118,108,107,104,105,115,108,113,108,110,111,100,119,103,118,94,96,104,95,111,94,98,99,110,124,99,108,86,98,105,103,105,109,105,102,103,121,106,114,96,100,106,109,96,102,116,107,103,114,111,95,120,113,106,106,114,113,114,111,101,106,121,109,110,97,106,105,114,109,100,117,100,96,113,113,108,109,105,117,104,94,116,103,109,96,110,98,97,109,105,113,94,105,103,104,95,110,94,108,114,106,115,97,104,111,100,106,110,121,109,105,115,111,97,105,100,93,100,110,104,111,103,108,108,104,102,98,100,117,108,95,109,103,103,112,103,104,95,107,93,108,110,101,111,123,105,104,119,103,103,99,104,103,110,99,109,95,113,92,107,99,115,106,94,101,105,107,111,118,84,97,100,108,102,111,104,130,116,92,109,99,118,106,107,107,101,105,95,98,100,111,122,111,95,98,103,101,101,99,104,104,109,106,122,105,97,123,112,96,109,117,110,96,104,97,111,105,93,106,103,107,116,110,97,99,97,98,98,110,96,113,105,105,110,99,100,95,97,124,108,106,102,101,110,99,105,109,118,107,101,109,98,123,108,80,98,106,108,100,98,108,106,114,97,100,102,103,104,114,99,103,106,108,96,101,108,104,111,110,102,101,103,110,117,110,90,118,106,114,97,103,100,106,101,110,111,104,105,106,115,112,98,104,111,90,93,130,102,104,92,107,114,111,113,92,98,101,106,112,123,116,103,98,101,91,108,112,107,127,102,114,115,94,106,107,117,104,101,113,85,99,117,103,100,100,95,106,102,118,107,103,106,108,110,98,118,87,112,111,105,110,116,103,107,110,117,109,90,114,88,96,116,106,108,80,100,107,101,113,95,104,115,113,103,103,105,109,109,107,105,99,117,108,107,83,102,105,110,103,111,99,109,102,103,105,110,107,93,119,107,109,110,102,123,106,93,104,113,109,103,105,116,115,112,93,117,113,106,118,112,110,111,119,101,106,94,105,112,104,96,108,111,97,112,98,100,105,104,107,97,129,110,103,98,95,107,95,107,109,111,111,98,89,99,99,111,113,117,111,108,98,94,131,105,102,110,110,109,102,106,102,103,113,115,92,117,114,112,97,113,112,111,99,113,129,106,113,132,128,171,196,181,233,278,320,277,255,294,259,239,286,241,236,250,178,200,177,125,167,139,114,114,124,126,124,125,106,113,123,106,99,116,115,113,99,104,125,120,108,106,100,108,103,104,102,116,118,121,114,117,102,102,106,101,96,98,97,109,107,130,103,112,113,116,129,101,106,99,98,122,99,109,116,117,88,103,109,117,96,107,108,100,104,105,112,119,108,102,106,117,112,90,117,104,107,110,103,110,97,117,96,91,112,92,111,93,106,102,113,93,113,113,99,118,111,103,98,111,107,120,119,113,116,103,100,105,100,101,105,112,103,105,101,92,113,105,105,117,99,119,102,107,107,104,114,98,116,109,106,114,110,115,114,117,117,108,104,116,74,99,110,99,112,112,115,109,111,108,113,104,99,114,118,103,127,118,103,105,103,118,112,112,113,78,106,100,125,90,112,113,110,97,107,119,106,109,107,120,111,104,116,112,106,118,105,100,108,117,109,105,107,95,109,108,103,99,110,116,112,107,110,104,94,104,113,110,111,107,106,107,112,101,115,113,112,112,105,106,118,101,121,98,107,118,110,102,91,121,117,113,117,104,128,113,100,108,109,91,109,117,107,100,106,104,108,121,105,112,114,118,112,122,105,115,100,100,110,104,115,116,115,114,110,107,113,111,100,111,107,99,109,91,108,123,109,120,108,106,106,98,117,112,118,104,109,104,115,113,106,104,111,103,114,111,103,105,99,111,109,104,100,109,116,114,102,112,112,122,106,113,127,110,106,100,130,103,100,110,111,139,109,96,102,106,108,94,96,113,92,104,95,105,100,107,112,102,109,115,96,110,110,117,110,108,104,104,109,118,107,109,109,102,98,105,107,107,98,122,99,91,130,121,105,104,104,100,116,103,108,111,107,116,105,133,116,94,125,101,111,106,94,113,112,108,108,104,121,109,98,103,99,105,102,101,111,110,116,106,115,107,102,107,117,112,98,100,106,91,106,113,111,94,107,103,100,116,101,103,104,123,98,109,105,116,113,106,97,110,97,109,106,106,103,106,105,86,99,104,96,107,112,111,102,105,99,105,108,116,100,99,103,108,101,113,106,102,105,103,109,106,104,107,115,103,122,106,102,102,101,102,95,117,105,106,111,91,78,94,103,112,107,116,103,99,113,108,104,115,116,109,112,100,103,117,111,107,116,95,104,108,118,99,125,111,104,108,113,118,110,94,108,110,122,105,124,106,87,105,101,92,98,107,108,103,110,117,109,105,107,109,106,84,93,114,102,105,98,108,103,112,97,105,103,116,116,102,107,103,99,120,101,97,108,97,115,107,104,112,115,110,81,100,110,102,100,100,114,98,106,111,113,121,104,119,104,112,109,99,117,102,106,122,108,100,100,105,104,121,101,101,105,103,113,100,100,100,105,115,103,103,124,106,116,104,88,108,102,103,102,109,103,101,117,103,94,113,115,113,113,108,103,112,94,105,124,106,96,102,100,98,110,105,115,106,127,89,107,116,104,108,104,108,106,105,104,123,111,92,99,111,98,107,112,100,109,96,109,105,97,109,96,108,99,107,110,116,104,106,97,115,103,102,112,116,98,105,101,98,111,117,107,100,104,106,114,108,104,109,108,96,101,100,113,105,106,103,102,111,105,108,102,103,111,109,112,108,114,105,109,125,114,100,106,102,107,113,120,117,110,118,123,117,118,93,105,107,106,105,105,127,98,106,95,107,103,112,106,98,97,104,100,102,113,95,110,101,113,102,98,102,107,103,99,107,95,120,103,101,105,102,99,103,98,90,110,109,96,107,120,111,124,113,104,94,97,101,104,116,105,113,107,108,108,104,113,110,107,92,102,114,97,89,107,101,111,114,105,104,104,108,102,106,105,111,100,92,109,112,119,97,104,106,107,105,116,104,99,110,99,100,106,106,106,107,105,95,112,110,100,95,107,104,106,110,101,98,106,97,106,104,112,107,96,108,123,120,99,97,109,101,118,108,74,102,98,113,103,101,98,117,108,102,104,109,110,100,106,105,116,108,93,116,107,113,113,104,98,110,112,103,102,118,103,104,99,115,109,101,95,106,103,110,94,99,97,100,79,108,103,104,94,119,109,100,102,113,103,105,96,108,95,105,93,96,99,108,112,100,108,94,113,100,101,105,97,110,102,99,105,112,101,99,110,107,87,108,101,97,112,116,101,92,98,92,99,100,106,94,108,122,101,95,120,106,103,109,98,100,102,101,112,103,92,100,117,114,106,104,107,97,102,101,105,115,106,94,106,115,109,96,99,107,109,120,90,109,100,113,101,110,103,99,97,107,108,88,96,100,104,100,96,89,88,107,117,104,99,118,102,107,108,117,102,121,106,102,104,116,98,101,108,102,83,99,101,121,96,105,76,110,106,107,110,103,113,97,108,99,102,102,122,84,107,103,91,94,107,91,102,101,101,109,98,106,108,107,102,98,121,108,100,105,101,97,103,106,104,105,127,102,98,110,107,108,102,98,100,94,65,121,96,110,92,97,96,112,103,98,118,106,111,105,102,111,67,83,112,106,102,104,94, +573.3822,117,92,86,86,106,99,99,91,101,106,82,101,86,106,90,104,110,103,113,105,126,105,92,92,103,107,112,114,101,111,103,113,108,112,107,106,117,105,97,101,103,102,106,102,106,109,105,93,109,108,117,100,103,107,90,108,102,106,104,99,109,106,105,100,109,100,95,104,106,107,120,126,97,110,104,117,112,105,105,94,105,113,110,95,114,104,85,98,99,109,102,110,104,111,106,104,108,103,108,105,106,109,94,108,109,109,113,98,98,92,99,107,108,104,120,95,87,109,112,106,119,107,102,118,110,103,104,105,114,101,101,96,113,120,106,103,103,99,106,102,110,106,112,101,117,98,103,108,104,113,101,91,106,91,110,93,95,108,109,110,104,105,104,96,117,104,106,102,125,103,108,109,75,104,102,107,100,104,117,109,109,103,116,113,90,105,101,94,108,73,114,101,106,102,104,103,117,102,112,108,102,97,105,123,107,103,113,105,98,110,107,111,114,109,109,121,112,99,117,95,116,111,116,108,96,106,109,101,108,101,106,113,116,103,99,120,103,114,104,108,85,98,99,98,107,117,106,103,103,106,114,102,109,107,113,112,95,104,99,90,94,115,102,105,104,105,102,107,108,91,94,112,109,104,114,90,101,112,106,112,113,91,101,101,107,93,102,118,108,102,104,112,106,106,113,117,107,100,109,107,104,108,100,106,88,109,105,106,105,106,108,110,114,118,107,109,106,108,108,111,99,95,112,108,115,106,101,99,103,113,108,112,101,101,114,110,93,99,117,101,95,100,103,105,111,114,105,122,112,107,98,110,109,94,107,114,116,113,111,115,92,99,102,103,98,114,99,115,94,108,94,106,115,106,108,109,106,94,105,102,102,102,114,110,109,101,106,84,116,100,106,101,107,116,115,112,108,109,97,110,109,104,101,110,107,109,94,107,108,104,96,105,116,94,100,81,112,98,117,116,101,105,101,101,103,82,106,112,103,114,110,103,99,103,100,107,103,112,104,124,112,97,103,93,93,110,102,99,114,109,105,105,98,122,128,109,111,105,101,109,100,102,103,114,111,106,120,120,101,98,98,115,119,87,105,99,110,113,103,106,101,111,102,112,112,112,106,96,104,106,99,111,103,104,107,113,110,99,101,103,117,101,106,100,108,114,101,114,96,102,105,110,113,118,104,110,109,106,108,100,102,109,103,103,120,106,119,117,94,110,99,107,107,102,105,104,112,114,101,112,108,121,112,114,112,101,102,107,105,113,105,116,107,107,97,101,98,94,107,101,121,114,88,96,105,107,117,105,112,107,101,109,111,114,92,102,98,114,104,102,120,102,93,90,97,95,109,109,103,100,116,109,104,108,99,107,87,103,95,103,108,118,110,114,94,89,87,106,103,116,103,99,116,111,104,101,95,99,109,109,94,114,104,102,102,120,110,92,97,109,108,105,105,110,87,100,93,109,115,112,108,106,101,109,102,95,100,100,113,85,102,105,111,101,112,103,106,112,109,94,113,105,108,110,110,107,71,100,104,103,120,107,107,105,106,117,108,114,101,114,97,100,98,103,102,110,104,116,105,101,105,116,100,98,96,105,97,104,114,96,105,112,99,112,109,107,107,117,109,113,113,98,110,96,105,102,100,97,101,97,112,100,109,106,102,98,106,109,86,109,110,102,104,103,98,100,103,113,111,113,116,98,100,96,102,100,95,106,97,107,106,97,100,113,102,108,95,111,106,105,95,109,107,99,100,110,108,96,115,95,113,97,99,113,97,103,98,93,103,101,107,103,88,137,104,110,113,109,106,107,103,105,99,102,101,67,94,107,105,119,102,117,103,108,124,112,111,102,106,98,114,103,107,103,118,103,99,127,109,112,106,114,115,109,109,98,109,106,105,113,105,104,106,103,106,114,115,104,102,116,100,111,116,111,103,107,88,113,108,100,109,103,108,111,109,101,107,102,105,111,108,109,99,105,109,107,105,99,117,116,106,107,102,112,113,114,113,96,104,96,110,106,111,109,102,110,95,107,105,100,98,109,103,104,96,107,111,105,97,103,114,119,111,101,109,104,104,106,108,103,106,100,107,115,100,85,104,105,106,102,106,105,96,112,117,105,109,108,102,90,104,102,103,120,98,112,99,110,104,110,95,101,103,104,104,103,108,107,100,107,117,107,111,100,99,109,103,104,98,104,107,98,108,92,113,109,99,118,105,113,112,103,112,102,107,92,125,94,102,110,101,103,109,102,110,112,113,106,94,113,106,105,99,116,111,108,104,102,96,114,102,107,110,96,104,106,109,120,109,105,96,118,103,108,98,110,99,103,126,110,121,112,106,110,110,112,108,108,112,107,115,128,136,122,93,109,116,138,184,184,210,218,249,278,244,255,262,260,246,238,252,252,198,185,158,164,134,149,136,136,110,128,104,112,111,114,120,125,106,107,108,113,104,109,101,122,108,125,108,107,93,105,98,97,79,107,101,110,115,110,116,106,79,94,108,107,113,86,106,110,99,102,115,111,98,119,111,103,96,104,99,115,114,109,116,104,117,98,96,103,104,105,98,110,108,115,99,116,95,95,98,103,95,87,105,99,117,101,102,111,119,98,109,102,94,99,110,104,103,102,93,96,112,103,99,106,90,96,102,102,105,100,106,96,97,105,98,104,108,106,107,121,105,105,109,111,105,116,105,95,115,100,99,104,94,112,109,95,98,107,104,104,100,105,96,87,101,103,103,98,92,112,109,106,102,82,93,93,112,99,93,107,98,92,108,107,101,106,112,97,108,124,107,91,98,102,110,104,103,129,106,106,101,99,95,121,105,103,95,102,106,96,103,95,93,91,113,98,103,115,102,107,110,103,119,105,113,107,99,99,110,107,113,99,108,104,111,109,110,106,113,105,98,121,101,107,103,117,103,113,105,122,109,102,114,99,109,107,103,111,102,103,84,82,104,107,108,95,103,92,106,99,103,113,118,107,117,106,129,114,102,114,105,97,113,107,113,109,111,113,101,103,108,97,111,98,104,106,102,108,101,103,92,112,105,100,109,104,105,110,109,100,97,100,86,97,113,123,111,96,113,97,110,103,90,105,99,103,112,113,109,111,103,108,109,104,99,120,101,97,111,87,104,116,108,115,96,105,113,102,117,97,101,106,108,97,104,116,100,104,99,106,104,99,106,105,95,111,112,101,132,117,96,102,102,104,108,100,113,111,97,103,113,105,99,97,97,98,91,107,97,100,97,94,115,108,112,101,110,97,109,107,100,114,99,103,104,106,99,111,86,100,106,110,102,98,107,105,100,101,110,106,121,109,106,105,109,99,99,98,105,112,121,109,104,107,106,101,99,86,101,101,106,97,103,106,87,98,96,103,100,91,90,106,106,109,95,113,101,104,106,107,94,109,109,104,95,121,110,99,94,113,107,87,91,105,100,106,109,104,99,107,98,106,107,109,103,103,99,100,108,103,104,102,94,91,111,99,118,105,114,102,110,95,106,98,109,101,103,102,103,107,109,99,99,95,112,97,120,101,112,102,96,112,96,113,106,102,99,109,87,107,100,108,91,109,106,106,99,101,115,102,101,110,105,110,91,102,113,70,108,103,119,97,96,102,116,102,108,92,104,105,103,117,108,86,107,97,109,108,98,105,108,103,97,105,82,103,106,109,105,94,103,113,98,112,97,108,112,99,109,111,109,110,102,107,102,105,92,102,98,123,100,105,118,109,108,109,125,93,98,117,101,106,102,106,104,98,99,102,109,99,112,99,95,117,107,106,87,104,101,100,106,98,101,91,111,98,87,104,107,97,88,104,89,84,114,110,115,111,115,91,95,100,91,108,98,113,108,93,91,107,107,106,100,101,116,104,108,102,96,99,95,117,108,84,122,98,96,118,101,103,105,102,100,99,104,97,87,101,95,102,98,106,102,105,104,109,113,101,112,98,106,98,92,106,113,96,107,101,96,85,104,117,101,100,116,110,108,79,97,105,125,104,109,83,107,106,87,105,105,109,110,105,110,86,105,105,106,106,101,99,101,112,104,96,117,99,107,100,107,90,93,94,112,131,80,98,111,104,100,105,108,99,97,108,100,107,105,93,104,102,104,102,98,105,95,112,96,104,93,113,100,112,95,103,106,102,94,95,104,98,107,91,106,104,97,102,117,100,99,103,94,95,96,95,104,100,107,111,109,103,107,110,108,116,107,121,102,100,104,99,107,88,106,89,97,107,106,95,98,105,102,98,108,98,95,111,103,105,105,103,115,116,94,107,105,103,106,98,102,99,112,115,119,95,112,106,107,111,111,102,94,119,101,108,109,96,98,111,117,101,100,109,114,98,93,118,102,102,98,97,112,101,107,111,93,109,106,112,105,104,100,112,91,99,98,94,104,94,98,103,97,80,97,101,107,112,92,108,110,112,102,103,104,95,113,93,106,105,105,98,94,112,102,101,96,94,83,99,98,102,103,92,106,101,104,102,108,96,99,97,100,97,110,104,94,102,99,87,112,103,124,100,99,110,109,103,99,100,100,101,105,107,101,102,106,95,105,96,102,100,88,99,98,105,96,100,105,104,91,100,99,100,102,94,96,106,91,100,110,101,87,97,109,110,98,94,95,101,87,100,100,96,107,97,101,91,92,109,105,103,114,87,112,95,105,101,105,89,99,100,93,106,92,86,101,92,113,95,97,109,113,96,103,107,133,102,106,92,98,107,103,92,99,102,92,106,87,101,98,103,88,106,113,96,110,95,94,101,108,101,121,119,104,95,97,102,90,96,104,100,109,106,95,98,96,113,95,107,104,109,100,87,94,100,103,115,112,87,127,91,98,99,108,110,116,119,91,104,99,109,105,98,89,115,95,99,106,106,105,96,110,117,102,107,104,113,107,113,104,95,107,116,107,103,96,106,105,110, +573.52313,105,101,104,99,104,105,118,106,106,86,116,112,110,110,109,111,98,107,93,102,104,98,114,105,97,139,110,112,109,102,111,108,105,96,103,105,113,106,100,96,105,94,97,110,116,107,112,107,94,106,102,116,102,97,106,106,105,113,108,103,113,115,75,91,110,109,100,113,107,97,102,114,99,110,108,89,101,101,107,107,113,104,106,98,113,101,88,115,97,100,116,111,97,121,107,101,97,89,106,94,114,97,88,103,100,92,97,99,123,92,105,107,111,106,114,107,108,113,114,110,108,95,112,121,109,101,105,113,100,114,97,103,99,104,114,113,95,110,108,95,106,105,102,101,104,101,100,102,92,114,108,103,110,93,108,96,100,109,110,113,116,102,112,114,95,96,105,102,120,105,112,90,101,118,103,107,105,109,99,107,102,106,117,120,106,103,110,105,116,107,101,112,99,117,137,103,99,102,109,100,108,101,80,101,106,104,110,106,102,98,104,119,108,108,104,105,103,109,120,105,105,110,127,105,101,105,120,103,109,115,95,103,116,108,112,119,111,104,108,99,119,106,127,112,110,116,109,96,110,96,108,106,95,123,115,109,100,107,98,113,93,104,114,98,106,105,100,100,101,109,107,103,106,105,105,108,95,99,99,99,105,111,107,100,105,81,90,106,115,107,100,91,116,119,123,104,100,103,108,93,116,91,120,104,106,108,113,103,92,104,105,121,114,103,105,103,121,143,113,100,107,104,106,108,111,104,106,97,110,107,112,114,103,105,98,110,81,105,103,121,116,109,101,96,106,104,97,112,97,113,116,104,106,102,101,109,114,89,117,108,105,114,109,105,104,104,103,115,105,102,115,102,104,101,116,116,106,104,97,110,102,112,82,105,107,98,103,91,122,109,104,100,108,102,107,102,103,100,105,116,108,97,109,100,107,102,109,96,103,98,102,101,110,118,112,105,109,110,108,105,110,107,102,83,107,103,113,99,99,116,108,118,99,109,113,98,103,95,101,106,115,94,103,103,101,102,111,110,92,109,91,97,94,111,105,103,109,102,101,109,104,104,111,111,93,102,100,94,111,105,108,106,114,112,111,106,113,117,100,114,117,109,113,101,107,110,100,111,98,102,114,106,110,102,101,104,116,130,112,97,109,100,108,102,104,110,98,100,107,97,111,107,101,100,103,110,102,102,104,103,107,103,107,113,109,108,109,116,108,104,109,106,103,109,106,99,108,106,104,109,106,107,106,112,108,108,113,99,104,96,104,118,103,110,107,101,106,102,103,105,89,114,106,116,109,109,110,137,115,101,110,109,106,109,107,112,106,102,112,105,107,99,115,113,111,97,106,105,106,108,107,111,97,106,107,116,111,104,108,104,115,106,106,107,102,100,108,100,107,101,99,110,118,109,106,109,117,97,103,102,98,120,86,108,107,102,95,107,105,105,109,101,97,104,101,103,99,111,106,109,113,120,118,117,107,92,104,109,100,121,99,103,95,109,106,117,113,107,102,122,126,104,107,110,105,103,97,102,133,101,99,113,100,105,122,113,106,93,106,101,120,103,105,103,105,113,94,111,106,114,99,106,107,111,118,104,102,108,106,120,103,111,111,105,108,114,103,109,99,97,98,117,108,93,112,105,106,102,105,108,103,110,110,108,101,102,99,100,83,105,98,117,109,113,101,101,102,96,109,97,99,113,126,121,115,119,109,101,115,121,116,113,105,101,103,120,110,132,107,103,102,102,100,101,95,105,112,94,103,103,113,116,107,108,132,109,97,114,86,96,116,112,109,106,105,87,107,105,113,121,111,106,114,109,112,111,110,104,106,113,103,101,110,104,114,109,106,95,113,101,117,97,120,103,118,122,111,101,115,105,103,96,104,115,99,102,113,98,116,111,116,87,107,107,106,113,101,94,105,110,107,112,113,121,102,108,110,99,117,100,104,110,115,104,110,106,112,96,117,122,98,109,107,101,97,100,111,115,113,86,95,130,104,117,99,106,99,95,106,104,104,100,110,110,118,104,93,115,102,88,95,117,114,108,115,106,125,109,102,99,106,101,103,112,110,107,104,118,98,106,107,117,109,120,109,101,128,112,116,91,112,103,108,132,103,108,113,108,108,102,108,100,110,102,107,93,95,95,102,98,112,115,118,101,100,92,105,110,107,104,106,111,120,110,122,102,97,122,108,110,118,113,107,117,99,100,107,102,99,118,129,115,99,101,107,101,99,105,103,130,103,103,111,113,96,108,99,110,108,101,109,104,109,93,91,106,101,114,104,97,106,108,107,116,103,116,109,104,109,110,110,116,100,108,106,109,108,103,110,118,118,121,108,92,112,108,113,128,110,105,109,121,124,123,111,118,132,144,173,208,237,251,270,236,275,309,223,273,268,262,248,173,253,197,159,172,170,163,156,131,134,119,133,104,136,116,103,105,127,112,120,119,133,108,105,106,101,110,102,98,107,100,108,114,101,101,102,110,96,113,101,94,104,94,99,99,110,107,113,98,90,110,103,113,110,110,116,105,105,100,121,108,112,103,103,115,108,116,87,107,82,98,107,99,112,98,117,116,107,102,109,117,103,99,99,103,100,102,101,104,101,103,105,98,108,93,107,113,109,90,112,84,109,115,113,106,104,97,99,107,110,95,112,95,109,103,117,107,104,100,108,100,108,108,104,97,100,93,108,100,102,81,98,113,102,105,115,99,115,113,105,95,108,96,104,120,103,94,109,112,101,110,112,104,97,104,127,124,103,99,112,115,93,120,113,105,106,102,99,104,116,121,99,101,106,111,101,117,109,113,116,102,99,117,105,103,107,100,109,94,117,87,84,101,106,104,101,103,99,109,104,109,102,90,104,103,100,106,109,117,90,96,113,113,109,103,108,99,115,99,123,95,105,113,112,112,101,100,84,119,107,103,110,95,105,108,89,103,129,107,109,110,84,95,101,113,109,109,108,106,99,113,101,102,100,102,100,98,106,104,102,103,107,100,91,109,116,106,119,107,104,99,97,122,115,116,101,113,104,99,100,108,104,110,106,117,101,102,101,109,106,101,109,104,103,101,110,107,110,104,99,103,97,108,106,100,111,103,110,118,112,83,102,108,111,120,109,92,97,106,106,103,107,110,79,118,103,98,95,94,109,104,105,121,105,93,106,97,103,106,101,104,95,117,107,98,108,105,119,100,102,113,99,111,101,80,99,104,117,81,95,107,110,104,111,92,98,120,107,96,107,118,91,100,101,103,108,99,116,110,114,121,113,111,96,98,106,102,117,109,98,95,97,115,94,102,105,113,105,104,96,106,104,107,113,112,110,101,100,88,114,107,102,95,108,109,104,109,115,102,102,99,102,104,106,102,110,103,105,100,98,103,108,108,106,100,105,101,91,110,116,101,104,102,108,96,111,82,110,104,92,104,102,114,113,103,113,118,105,108,102,94,105,106,109,87,111,95,103,96,111,106,98,101,104,105,114,109,115,106,101,106,115,92,94,101,109,108,111,108,106,111,106,118,103,113,106,108,97,81,98,106,114,114,108,103,106,103,94,105,101,107,101,99,108,101,83,110,94,114,105,101,94,99,107,113,97,95,107,96,103,103,105,108,101,106,108,104,102,100,108,103,115,94,98,108,104,103,120,104,99,99,107,98,91,97,106,100,101,112,112,102,98,105,98,105,99,104,119,96,113,110,104,102,88,101,103,105,122,102,108,95,118,116,106,105,93,118,94,99,97,108,113,93,106,102,109,105,112,106,100,101,92,106,104,106,104,106,104,113,103,102,119,105,104,107,91,111,107,95,108,103,88,109,94,101,102,116,122,112,106,100,111,103,97,108,106,115,78,124,129,115,102,102,94,108,101,97,103,100,117,111,96,107,113,113,105,87,101,113,100,96,102,107,100,101,127,100,114,96,113,103,102,102,107,102,106,114,120,102,104,98,100,101,121,102,87,106,106,108,103,107,91,93,108,95,102,84,108,102,103,102,115,99,114,103,98,90,109,96,103,103,98,122,111,101,107,103,105,110,110,111,105,101,107,107,109,95,130,104,112,108,101,94,104,104,97,107,112,97,112,106,104,103,108,101,102,98,106,98,110,112,99,116,113,104,105,108,108,101,113,107,107,112,107,113,113,106,102,110,101,103,86,100,121,113,109,118,111,108,102,107,101,94,101,94,109,102,100,113,115,98,108,97,107,102,97,111,112,112,113,107,111,99,107,101,91,118,103,101,102,102,113,103,90,100,109,108,98,95,90,110,112,87,90,107,108,102,104,101,110,110,115,93,111,92,104,92,90,101,91,103,121,117,99,99,116,103,112,116,116,78,103,101,110,94,113,117,108,114,112,102,91,102,106,111,99,109,102,107,102,106,111,113,101,111,113,110,103,98,103,113,102,96,96,104,107,118,117,96,109,93,107,105,100,107,100,92,108,90,120,110,101,105,109,104,112,98,110,84,102,94,111,94,111,92,98,113,99,121,107,109,109,103,106,100,109,123,100,115,94,87,108,79,107,113,104,99,97,100,85,94,98,101,105,102,97,104,102,90,104,99,107,95,110,106,97,103,101,112,102,102,107,112,109,108,104,112,94,111,88,103,109,110,100,117,103,109,110,106,103,88,112,94,105,101,114,110,108,108,112,123,102,100,99,99,102,112,106,108,95,102,112,112,86,99,95,109,94,96,100,113,110,118,99,107,96,104,101,109,108,111,111,99,105,94,102,101,109,105,99,100,97,94,97,100,116,98,92,105,107,96,101,104,99,88,105,103,108,99,113,104,94,104,117,99,102,108,106,106,99,107,95,99,105,106,88,104,105,109,102,94,112,93,96,95,97,70,101,108,103,98,106,112,95,89,103,99,111,136,108,98,117,113,113,97,106,104,100,78,125,115,105,93,96,107,108,102,101,108, +573.66406,114,102,102,91,90,97,96,115,104,102,98,88,94,106,111,90,91,116,100,100,110,96,106,98,104,104,105,91,100,113,100,112,94,103,112,103,112,96,108,101,96,114,105,102,95,103,107,104,105,103,88,99,99,104,106,111,91,99,109,76,104,99,108,114,76,110,96,114,90,105,99,94,100,98,102,116,114,96,99,105,108,116,102,115,97,98,113,107,112,109,98,87,98,124,99,90,106,111,99,105,106,111,102,106,105,112,117,119,91,107,89,97,106,101,101,96,104,112,117,98,107,100,114,109,113,101,114,92,106,112,100,106,96,109,105,101,112,112,118,93,102,115,101,111,104,101,99,109,93,108,104,101,118,88,90,105,100,109,117,110,99,100,113,107,112,93,99,110,108,101,101,100,103,107,109,101,98,82,104,120,107,112,118,112,94,104,96,103,105,104,97,107,91,103,106,104,100,94,114,97,105,104,104,105,100,108,105,104,110,106,92,96,106,125,88,111,102,109,100,104,106,111,102,102,95,107,105,88,103,107,109,121,113,108,111,103,104,102,109,102,92,110,113,106,95,100,99,104,104,102,106,110,112,103,103,86,96,113,103,94,97,107,109,105,113,96,110,96,98,104,99,102,119,94,105,102,112,110,107,102,103,104,89,115,100,107,98,106,118,107,109,115,106,111,108,113,105,103,105,107,105,118,111,114,99,101,104,111,101,102,102,105,110,117,96,104,103,102,106,108,115,100,103,107,96,110,112,97,119,107,109,113,108,101,115,91,112,100,107,84,100,109,108,104,99,103,108,102,106,113,98,106,112,106,104,97,114,96,109,120,106,100,109,105,109,94,104,108,105,107,99,110,107,99,113,107,98,110,103,94,114,110,106,117,99,92,101,99,106,98,106,108,100,111,105,99,91,105,103,118,108,110,116,115,97,105,103,103,102,87,101,96,95,102,109,96,102,94,108,94,107,104,105,109,93,99,103,106,104,114,118,100,105,113,98,111,105,114,102,105,104,100,97,120,104,118,111,99,102,105,88,100,110,103,99,112,104,108,103,96,109,109,107,113,108,122,139,109,112,95,106,112,104,99,91,108,113,105,112,114,100,111,111,98,102,102,114,102,109,82,103,103,111,95,88,108,91,103,100,100,111,113,106,109,117,98,97,98,110,105,108,103,112,106,110,86,108,110,77,102,109,103,100,104,106,110,93,107,106,110,100,116,108,113,109,106,98,94,88,122,121,99,109,110,103,95,102,105,113,100,109,110,108,107,104,111,109,94,93,107,104,95,105,97,108,113,109,100,114,104,104,111,119,121,110,103,113,106,105,113,102,91,104,118,96,100,104,104,112,101,110,99,98,113,100,111,104,108,100,100,109,94,118,95,106,101,112,110,116,103,101,108,109,109,107,99,99,105,108,113,106,102,99,106,103,101,103,106,108,96,103,117,96,122,101,110,91,83,108,107,114,94,101,103,110,108,101,110,109,107,95,112,105,99,107,108,103,114,107,114,105,109,94,103,107,104,97,109,102,109,115,127,108,112,106,99,105,109,108,123,101,90,103,105,119,109,99,95,100,113,113,117,97,117,111,113,101,105,110,105,92,106,104,110,100,100,105,120,104,100,101,107,98,109,112,105,103,97,119,100,114,103,108,111,97,94,97,111,110,108,98,101,114,116,103,110,104,105,121,105,101,115,103,110,103,114,101,117,99,107,107,111,110,115,109,105,107,112,107,104,112,109,104,117,99,113,93,117,105,105,108,107,105,112,104,108,103,96,95,109,109,108,113,108,110,107,104,105,103,109,124,113,108,113,109,115,114,107,113,96,117,112,104,94,102,102,115,111,101,103,119,117,104,107,114,107,113,112,108,110,95,98,104,120,108,102,116,102,104,101,125,114,103,101,95,107,109,103,107,109,101,101,107,103,95,91,113,104,106,99,120,96,99,99,93,100,107,106,103,112,125,99,100,108,103,100,124,117,107,117,86,112,105,114,104,106,112,106,101,103,99,102,108,108,110,94,104,108,109,109,97,112,116,103,117,99,109,112,101,112,98,108,100,112,109,98,106,114,109,99,87,110,97,107,102,99,105,101,106,107,106,99,106,102,100,93,96,107,107,118,105,102,115,107,97,102,93,113,115,102,99,111,107,106,105,108,117,124,95,112,104,107,107,110,111,89,108,109,106,103,107,111,94,117,105,103,101,106,104,105,102,104,103,117,111,110,108,111,111,97,104,116,104,103,110,109,108,102,102,99,106,101,121,106,104,103,95,110,103,105,98,95,99,109,107,118,100,111,95,111,102,110,119,105,98,107,107,96,106,125,119,110,110,90,125,105,127,107,105,119,112,117,129,121,132,123,130,141,174,159,204,227,231,250,317,319,250,275,238,217,223,272,226,179,182,166,175,140,130,114,134,106,122,107,101,110,106,119,95,108,111,107,106,129,96,110,122,88,87,96,99,107,102,112,97,113,116,106,120,118,112,103,114,94,94,117,100,105,99,114,108,94,106,94,109,117,101,108,102,105,111,116,99,105,112,102,83,102,102,101,98,101,109,100,125,118,100,99,107,115,109,112,101,111,101,96,121,107,105,97,106,102,112,111,95,100,109,110,103,105,115,110,98,107,118,95,110,113,105,109,96,102,114,109,99,108,98,94,110,103,105,90,104,101,101,105,103,107,100,92,101,109,93,101,94,114,113,107,105,89,110,99,114,107,105,108,107,97,104,103,102,107,100,99,106,104,107,107,107,101,107,112,109,108,117,109,104,98,95,103,102,109,98,103,102,107,100,110,116,95,105,102,108,104,104,109,105,100,104,106,107,105,112,100,103,106,109,128,105,93,94,96,107,108,113,101,105,111,105,112,102,108,106,114,103,99,105,103,96,106,105,105,90,117,104,97,100,98,80,109,112,96,108,110,110,91,89,101,108,97,107,113,100,96,113,116,110,92,109,117,95,115,97,101,70,108,116,106,113,114,106,100,101,96,120,100,100,96,98,97,112,122,106,104,116,94,115,117,99,98,116,100,97,115,112,118,109,106,103,104,96,114,123,109,112,107,108,102,105,105,104,91,100,101,104,101,103,104,95,97,119,109,113,96,106,98,101,100,104,99,115,102,103,110,103,98,97,120,105,102,121,100,97,103,109,100,105,96,102,111,103,110,95,139,103,111,103,106,103,103,109,109,94,99,101,110,102,109,113,112,103,107,97,111,111,96,96,103,103,104,102,109,96,98,102,101,99,99,99,100,101,105,110,104,107,104,105,91,89,112,108,113,111,99,63,87,100,106,106,105,107,103,111,113,105,111,101,101,108,109,97,106,106,100,98,111,113,95,111,94,100,105,94,100,96,68,102,122,102,99,106,106,101,106,98,108,88,102,111,95,106,102,102,100,85,102,100,113,98,96,94,97,105,94,103,112,106,99,104,94,100,113,98,107,105,108,101,119,100,95,98,104,105,114,90,104,106,100,104,107,103,88,96,103,105,105,105,116,112,99,108,108,81,115,111,111,104,115,99,101,100,92,105,103,101,109,102,113,107,104,103,108,109,98,102,109,99,117,107,93,106,93,101,110,112,118,107,101,109,103,95,105,108,111,109,106,107,117,102,97,98,97,107,94,102,91,97,107,109,107,99,90,99,97,108,104,107,100,105,108,92,101,113,101,91,102,107,92,130,104,109,112,86,110,92,109,101,104,97,90,102,99,98,108,100,104,103,104,109,91,113,87,101,95,110,103,98,99,105,106,101,116,95,108,104,106,108,102,114,107,99,110,103,106,104,96,105,106,103,102,101,97,100,94,107,104,111,106,132,108,116,95,111,106,107,111,97,105,91,123,100,100,98,101,105,92,103,95,103,95,101,114,88,104,102,101,103,102,98,103,108,96,111,106,105,101,110,84,102,96,100,107,121,110,109,97,121,100,109,104,96,94,111,109,100,99,97,101,109,111,106,102,83,116,100,98,110,104,103,121,99,123,93,98,101,91,105,111,98,108,98,116,103,112,111,101,105,109,109,94,119,96,91,98,110,94,105,107,108,114,109,108,107,98,104,111,115,101,109,110,84,80,113,104,99,106,94,100,100,100,102,98,102,99,101,111,96,102,101,110,103,100,87,96,85,112,113,102,105,99,87,102,101,122,107,95,99,97,105,101,112,108,109,91,112,95,102,105,100,100,111,113,109,103,106,100,98,113,99,102,103,111,92,97,94,102,91,102,105,104,110,92,113,109,100,99,104,106,108,104,103,100,105,100,101,105,100,100,102,113,110,99,110,105,117,108,118,106,105,105,113,98,98,106,92,99,100,106,103,98,96,99,95,109,113,102,91,108,102,103,101,96,100,100,109,89,111,109,106,106,97,101,110,110,104,101,109,110,98,94,106,112,107,105,106,96,111,104,116,88,95,102,116,97,105,96,105,102,94,100,107,102,99,98,102,97,109,98,106,99,83,106,96,98,103,88,99,113,107,105,103,103,91,103,110,76,101,106,103,111,91,97,108,101,107,100,108,112,107,91,91,104,96,105,93,117,111,99,97,101,106,114,101,96,114,112,106,102,112,105,108,99,92,102,99,106,113,91,95,99,110,104,100,107,112,98,102,110,100,100,103,94,113,117,104,112,103,114,97,97,112,101,103,106,114,103,111,112,100,100,96,87,107,98,101,100,109,114,101,96,95,94,92,106,101,93,95,113,105,112,99,93,108,98,107,95,105,114,99,101,95,104,102,98,109,105,106,97,102,99,110,100,109,60,106,99,95,99,93,109,103,94,113,99,115,95,113,97,91,100,95,105,102,102,106,98,101,101,103,106,107,102,105,89,102,100,114,82,104,111,100,108,104,114,99,101,100,100,122,90,112,109,94,105,110,90,102,101,93,93,102,100,108,100,115,100,121,98,108,89, +573.80499,113,88,96,102,91,108,100,120,90,106,107,98,83,98,99,102,110,109,102,113,109,98,102,98,116,108,117,90,90,114,107,100,118,105,83,107,139,97,100,98,102,73,108,106,98,88,126,113,109,104,111,98,104,108,113,78,102,114,80,110,110,112,114,101,121,111,90,95,108,116,89,111,103,95,99,105,95,113,110,108,105,101,111,88,105,103,104,108,98,104,105,109,93,98,96,112,97,97,99,106,99,118,91,115,99,109,95,104,111,106,102,95,106,107,106,95,103,110,100,101,91,98,105,106,101,98,113,125,117,94,108,99,104,112,102,105,114,111,103,117,115,96,100,117,103,99,111,97,103,91,104,91,133,90,105,102,100,106,100,103,91,98,124,97,93,93,88,100,97,103,106,95,101,99,106,96,95,89,101,92,94,109,109,103,111,98,106,89,96,101,106,102,106,111,111,110,106,100,100,108,94,108,109,103,96,96,107,102,137,107,101,100,103,101,105,115,98,113,95,104,103,113,103,107,109,110,102,107,107,120,104,98,109,108,102,99,95,106,100,92,106,113,101,101,104,117,102,106,105,122,95,100,106,106,107,103,106,110,102,89,90,115,103,100,105,108,101,110,107,86,108,97,109,100,99,101,103,113,105,96,117,100,98,106,100,116,100,105,112,101,105,106,113,105,102,101,102,110,115,102,104,97,116,118,103,117,106,120,97,113,103,103,78,105,105,103,107,99,111,94,95,119,112,101,99,91,101,98,105,108,107,102,96,106,103,107,107,94,108,114,104,102,110,97,105,111,102,110,105,115,110,81,109,110,113,113,107,108,93,120,103,94,115,85,106,100,104,113,96,107,130,98,116,107,108,105,106,98,100,95,122,110,108,113,110,92,104,112,110,114,115,93,98,116,95,111,81,103,106,99,97,118,105,111,110,99,107,102,112,100,104,104,103,112,106,105,104,99,96,110,95,111,101,90,88,97,107,95,99,102,115,107,107,96,101,113,77,118,111,124,113,107,110,96,104,102,104,100,100,106,102,98,101,115,99,101,109,90,103,105,102,98,106,112,116,120,103,91,104,91,104,99,96,104,107,103,95,97,104,125,111,110,110,103,100,112,113,98,91,100,100,115,111,107,93,126,95,100,98,126,104,106,105,108,95,98,112,119,118,98,111,107,102,97,99,97,109,105,114,104,108,123,107,106,105,99,117,113,109,107,105,110,98,96,108,113,112,98,105,109,102,109,107,96,99,105,106,105,119,93,110,103,100,100,115,111,106,104,110,109,101,99,92,103,109,113,96,108,115,103,101,121,97,113,103,110,103,102,94,91,100,105,106,99,99,105,117,102,96,106,109,121,96,118,99,104,101,111,109,105,102,108,91,96,115,108,100,116,92,107,103,113,110,112,101,104,101,112,97,109,112,107,116,103,113,105,82,100,100,106,85,110,103,106,104,121,105,105,101,98,109,103,102,111,102,95,107,104,104,114,102,90,108,105,109,104,110,114,113,105,112,89,104,109,99,104,106,102,107,103,118,95,118,104,109,114,104,98,105,113,114,115,113,89,93,101,107,104,69,111,106,113,103,117,104,110,100,77,103,89,105,101,95,116,115,106,111,108,103,100,108,111,101,95,115,91,118,114,115,103,105,100,99,109,113,117,100,102,96,108,113,116,100,90,104,107,100,104,109,88,109,109,95,105,104,100,104,88,109,111,111,91,109,98,99,109,105,106,105,118,111,108,103,120,98,112,94,114,108,112,119,98,111,102,114,100,110,101,96,106,98,108,110,115,109,112,122,110,116,97,106,109,103,111,100,110,98,104,113,113,113,104,108,98,100,117,117,102,104,104,102,105,100,95,110,107,116,107,103,90,100,102,110,97,102,100,106,117,101,111,113,111,113,110,98,110,105,93,102,108,114,99,106,105,103,95,101,92,106,89,66,112,110,112,100,98,108,103,119,98,102,121,94,116,110,98,104,96,105,104,113,107,98,114,105,83,111,109,111,92,101,104,115,103,97,98,109,132,105,85,115,112,100,105,110,98,101,109,108,105,106,126,106,108,118,101,100,103,121,110,114,104,99,112,125,104,92,108,102,91,99,107,106,108,105,105,95,115,109,97,98,107,107,103,100,89,91,98,104,108,111,107,112,118,104,115,98,100,110,89,98,95,116,108,106,102,113,104,92,104,113,110,119,111,110,102,119,93,115,109,109,108,103,116,102,101,116,103,118,108,99,109,117,99,97,104,97,96,110,92,104,104,113,108,108,102,101,103,95,104,109,104,107,105,102,101,112,111,105,103,102,104,102,121,103,143,106,113,107,107,102,111,103,97,96,125,110,112,111,111,120,114,141,115,132,118,144,149,167,206,186,275,231,251,342,303,288,243,240,247,211,202,235,187,187,140,158,109,139,121,132,111,127,121,114,115,110,125,106,115,120,121,115,125,103,90,111,103,94,98,105,117,95,102,94,122,96,106,120,108,103,99,99,91,107,104,117,112,98,91,109,110,97,95,113,117,98,96,112,102,101,103,92,101,104,109,102,97,99,111,104,108,99,105,108,108,100,112,101,100,105,112,110,99,111,103,108,98,112,91,104,100,98,107,109,103,100,101,105,93,112,105,99,104,96,99,105,104,95,103,97,109,97,95,104,105,96,100,114,112,96,99,120,110,103,113,107,102,110,97,105,95,111,102,104,97,103,93,106,88,105,95,102,104,104,111,104,84,95,110,91,100,98,107,99,109,110,111,88,121,108,102,109,105,108,106,104,98,99,101,113,111,91,102,98,112,101,99,111,108,90,116,102,106,102,101,98,110,105,99,96,107,101,87,116,105,90,97,104,109,99,100,103,116,102,99,103,108,89,115,91,99,109,107,107,109,102,103,98,103,107,106,103,93,101,101,91,108,94,111,104,102,105,107,107,102,101,105,113,118,98,104,117,104,105,102,97,104,92,105,101,105,108,112,102,101,112,113,91,96,105,97,84,98,113,101,107,95,108,103,101,114,104,97,111,96,104,100,122,101,103,104,101,104,99,94,99,114,109,100,103,105,108,113,101,126,108,94,114,111,105,103,95,103,101,120,96,98,110,93,116,117,118,105,108,98,79,99,97,110,112,94,96,106,101,97,100,99,110,111,103,93,112,111,102,89,95,113,113,101,118,97,89,102,112,104,107,100,105,128,102,114,103,79,92,104,107,92,106,108,97,103,101,95,104,92,110,104,110,98,88,111,106,98,83,105,109,96,100,99,102,105,107,117,106,67,106,104,92,103,93,117,107,110,104,104,109,103,97,96,99,112,95,111,95,102,109,111,88,106,105,82,105,95,108,102,96,88,113,110,95,98,99,95,100,99,99,95,101,98,78,91,105,100,104,111,106,109,104,91,98,99,99,105,110,95,104,106,98,100,93,105,114,112,115,99,109,101,105,95,100,102,94,107,104,93,100,95,105,102,111,104,109,109,77,97,108,113,105,111,99,113,105,100,110,109,105,92,100,94,113,111,119,105,101,101,98,115,111,98,93,100,106,120,95,103,104,96,100,118,104,102,106,112,102,109,95,93,97,115,98,118,104,103,102,95,103,97,94,94,101,102,85,111,101,111,96,103,103,104,108,99,113,102,108,92,96,98,104,105,98,107,107,111,109,96,105,85,102,103,95,96,112,113,94,96,100,101,106,98,102,100,102,103,108,104,110,104,109,112,110,88,108,106,100,101,113,105,111,107,112,106,95,105,108,104,114,106,116,111,105,109,82,101,96,85,89,105,103,98,108,90,105,99,109,118,102,104,117,100,91,113,91,101,112,108,95,112,102,116,113,89,112,96,96,108,98,103,93,97,96,109,113,105,102,92,102,94,97,108,97,106,108,113,105,95,112,96,107,101,102,96,98,111,106,95,92,98,98,103,98,114,107,97,107,105,93,102,104,103,94,72,112,107,104,101,113,104,106,106,109,107,95,99,114,100,98,100,110,95,103,102,102,113,118,103,109,114,89,100,108,108,90,95,102,100,93,94,95,102,106,129,103,102,109,95,108,102,103,92,110,104,110,107,115,106,104,93,105,112,102,99,104,102,104,109,86,109,113,94,111,108,107,105,105,113,101,107,106,108,105,105,101,104,95,120,102,113,99,92,106,106,106,97,104,107,92,103,95,101,103,102,96,99,108,105,94,100,93,113,114,119,98,115,106,104,92,99,99,106,101,110,99,113,102,102,95,96,106,108,101,103,108,93,90,101,72,97,110,98,102,112,110,105,102,101,100,104,95,101,102,107,103,99,104,101,100,82,101,102,108,109,107,100,96,109,108,97,105,106,104,98,108,104,102,113,109,98,91,98,101,113,112,91,101,100,101,108,104,101,107,104,108,106,107,120,113,97,108,100,122,96,101,123,98,108,102,98,106,107,98,98,87,108,98,110,101,106,113,98,105,107,91,90,104,104,102,91,114,108,102,113,109,105,90,100,123,107,106,95,94,102,113,105,110,90,104,124,106,104,117,100,96,98,102,101,105,99,111,96,95,100,104,86,113,109,110,107,97,97,112,101,105,107,95,120,101,101,103,107,111,113,108,92,85,105,108,104,110,103,116,104,103,114,107,101,99,95,92,102,110,101,111,112,107,109,106,84,104,97,103,83,109,104,118,99,96,92,97,89,81,110,99,111,93,101,106,101,101,110,106,92,107,105,100,108,94,102,101,101,100,105,120,118,110,107,96,98,95,94,96,96,83,110,105,106,104,98,103,96,97,96,95,76,104,102,137,113,110,97,96,104,94,92,104,102,113,92,93,103,102,100,101,97,95,110,104,84,106,106,104,105,93,93,104,99,114,93,102,108,102,113,96,101,108,103,96,99,100,102,94,87,112,97,106,101,86,106,96,96,103,116,105,105,102,113,102,99,90,105, +573.94592,106,97,106,102,105,91,101,109,104,107,101,100,98,98,119,94,100,109,107,86,108,112,112,108,103,99,103,107,103,98,111,95,103,90,117,95,113,102,95,106,112,112,105,106,103,108,82,112,109,108,113,104,101,111,108,101,105,93,128,90,103,108,92,93,108,117,114,108,102,111,105,106,99,92,99,126,107,91,108,98,115,104,102,101,103,99,115,116,112,104,110,109,113,114,114,104,99,96,111,105,100,103,110,97,106,106,111,95,96,97,117,113,101,114,96,99,94,117,110,103,114,104,102,106,112,112,106,106,114,117,97,96,112,101,104,108,105,110,88,118,107,103,104,108,102,99,117,95,98,103,111,99,118,108,93,117,105,97,103,109,104,98,97,108,105,109,103,104,102,95,100,99,99,108,100,99,101,91,99,105,113,104,106,107,114,108,93,95,112,107,98,99,112,112,109,106,103,109,120,97,96,102,110,103,97,105,98,97,95,101,103,107,114,104,110,80,111,109,100,99,118,104,106,111,98,108,101,108,93,100,98,95,104,116,102,99,114,107,113,91,102,120,112,106,111,96,116,104,98,117,108,108,112,115,95,114,106,101,103,104,90,102,114,103,109,112,98,104,111,94,106,113,106,95,110,103,101,106,110,104,104,95,111,109,107,102,95,99,96,112,110,103,115,105,96,89,118,103,111,112,108,107,110,116,100,101,108,112,98,110,105,110,110,108,107,110,105,113,103,98,108,106,110,106,109,119,105,100,109,105,103,111,104,110,106,111,110,101,106,103,105,93,114,100,95,107,103,109,91,100,96,101,101,103,85,105,111,112,121,101,100,90,109,108,101,100,98,108,112,117,101,102,105,103,93,116,88,94,101,105,98,98,104,108,99,91,98,111,104,104,113,93,103,94,100,98,91,100,108,113,101,95,117,89,100,109,97,104,107,102,101,100,105,110,103,95,101,113,102,115,109,107,105,102,103,105,108,109,103,102,107,103,121,108,106,92,95,104,109,97,115,100,106,105,109,109,95,109,115,110,99,79,106,107,104,108,94,108,109,108,106,108,111,112,111,111,114,104,108,105,100,115,105,97,111,100,101,108,129,118,103,105,114,109,122,102,107,106,114,117,109,99,115,111,102,112,105,113,104,97,110,109,102,105,117,108,95,100,106,111,111,105,108,106,113,103,102,104,103,94,105,105,114,104,110,99,106,108,101,95,103,115,105,116,99,91,98,104,107,108,99,112,111,102,100,102,128,110,101,106,106,101,100,114,105,101,117,109,109,113,112,117,96,113,95,101,104,105,107,99,104,95,115,111,103,103,122,102,118,106,104,110,116,93,109,98,124,114,109,107,115,100,103,103,111,110,112,106,106,98,105,106,113,99,101,103,109,117,106,87,111,106,100,99,104,101,107,103,98,101,109,121,103,109,113,98,104,100,104,108,99,104,103,113,95,98,92,111,116,102,104,103,105,109,104,93,105,99,107,108,100,100,106,101,103,112,102,106,106,104,110,105,105,106,100,102,108,104,111,100,102,106,107,109,113,91,117,99,111,103,109,108,108,106,85,94,98,113,115,107,98,100,106,107,95,101,102,113,99,102,107,98,109,107,91,110,125,109,115,105,102,113,97,101,107,103,106,109,105,98,108,83,105,107,90,107,101,108,79,82,98,105,100,110,98,109,100,104,105,93,108,112,104,105,114,116,111,105,107,113,107,95,100,103,115,76,116,111,117,100,107,100,100,115,106,110,87,99,95,92,116,100,115,113,98,103,110,108,116,112,102,104,109,99,103,115,100,102,95,98,113,103,112,113,91,105,99,105,107,110,99,110,97,107,113,101,96,102,112,96,117,110,105,111,94,110,119,116,106,105,126,106,108,117,107,117,111,101,102,99,112,108,104,112,98,106,110,108,108,101,100,102,103,99,111,111,91,96,105,100,106,109,114,104,107,108,108,110,106,99,108,84,99,113,112,111,101,102,113,105,111,111,109,114,95,100,99,126,108,115,95,112,103,116,104,110,103,114,103,112,113,98,109,121,105,102,115,90,114,110,118,97,105,110,106,102,106,99,114,99,110,116,118,116,112,101,90,99,93,98,121,102,120,114,107,105,112,101,102,112,110,111,108,103,104,95,104,96,103,86,110,107,108,107,97,100,113,104,102,128,97,110,126,107,102,96,106,108,103,95,106,110,113,110,110,124,111,114,103,101,94,84,111,110,104,104,105,109,101,116,95,102,95,113,93,97,111,117,106,101,107,87,109,117,100,110,106,106,106,113,103,113,103,98,119,104,98,105,102,110,112,102,111,91,127,112,108,104,102,106,116,114,117,85,104,108,107,111,124,123,111,102,115,114,125,109,126,152,155,216,214,212,234,268,264,283,281,253,232,253,234,240,220,198,170,154,168,154,124,123,126,96,129,122,116,115,106,102,108,113,106,114,114,113,116,121,115,103,108,94,105,98,105,108,106,115,99,117,102,100,94,98,96,98,100,113,102,110,103,103,107,115,107,95,90,113,112,85,98,111,96,104,95,106,117,106,100,120,75,107,97,107,104,99,122,113,103,113,103,98,84,105,109,111,108,107,83,108,98,99,102,102,87,121,108,106,91,102,117,107,103,96,129,107,110,107,112,97,105,96,94,98,106,113,99,108,101,101,116,102,104,111,97,113,102,104,104,102,106,106,99,105,100,111,113,105,100,106,102,110,95,106,115,92,98,96,93,99,107,106,106,112,103,117,103,112,114,104,104,105,116,114,107,112,120,115,107,114,100,103,112,102,103,102,107,105,85,99,104,105,107,91,100,107,113,106,107,111,102,111,113,96,110,103,109,103,102,104,103,95,96,110,103,103,85,105,96,91,99,102,107,90,102,102,107,102,96,109,92,99,113,106,103,108,110,100,101,114,99,112,109,96,118,97,96,96,122,108,106,113,114,96,95,101,94,110,101,108,108,103,100,112,99,104,115,110,103,106,109,107,97,120,108,100,113,114,106,100,112,94,96,112,107,91,117,109,109,107,106,104,107,82,102,97,130,91,115,96,104,99,98,102,101,102,118,97,108,102,103,109,76,117,113,104,126,101,97,104,103,113,113,91,98,104,110,90,102,108,100,96,104,101,95,116,106,97,99,101,95,100,101,110,108,113,110,101,111,106,96,108,113,104,113,101,108,103,97,92,100,114,117,100,103,103,100,100,109,94,104,113,86,90,103,97,99,99,102,99,100,100,102,102,102,88,110,102,106,108,103,117,102,108,111,121,94,115,106,106,101,105,96,105,111,99,115,103,100,111,101,107,101,106,96,108,103,103,125,121,101,111,104,106,109,111,105,117,99,117,95,98,84,90,96,95,117,115,107,96,108,106,119,109,110,96,108,79,108,95,103,104,105,113,111,112,106,105,101,100,102,102,102,108,104,94,98,105,94,91,115,100,104,100,103,94,99,108,98,104,97,110,109,108,111,112,104,106,102,118,90,102,117,75,104,98,117,108,108,87,113,116,108,105,97,94,100,104,100,107,116,98,110,100,113,104,92,106,115,108,91,106,96,111,109,110,92,114,82,112,101,110,105,106,107,109,107,109,102,91,99,111,99,113,104,108,104,106,106,106,104,113,107,110,92,110,105,105,105,104,128,99,96,108,109,103,102,92,106,104,100,118,123,87,104,103,105,100,101,106,102,99,119,113,116,97,101,103,112,106,101,94,110,102,103,109,112,90,103,108,107,120,82,98,110,107,97,105,107,109,106,95,102,101,108,108,116,106,113,98,98,105,108,108,110,99,70,102,112,106,92,107,112,114,88,107,110,108,69,92,106,112,94,116,105,118,103,109,109,96,99,101,101,117,102,107,95,96,96,119,106,101,91,107,109,96,98,115,105,103,88,97,108,101,98,114,103,109,113,98,96,110,106,116,95,106,97,112,104,113,106,103,108,98,98,108,105,105,104,112,100,109,107,101,101,107,96,112,105,111,103,121,107,95,109,114,111,105,106,99,107,102,128,109,96,109,104,100,92,99,99,117,91,104,99,99,105,115,113,89,110,102,100,111,100,98,110,113,130,99,104,99,99,98,110,102,93,104,107,107,102,101,114,125,101,100,91,115,107,103,107,106,108,112,114,103,102,100,108,99,120,98,103,101,97,124,105,103,104,115,103,100,104,98,73,98,95,93,103,113,95,98,107,109,108,110,110,107,99,109,121,110,109,106,111,104,111,98,110,107,107,95,108,102,98,112,112,103,116,114,106,100,112,100,107,95,98,108,108,105,96,102,109,98,111,100,94,105,106,81,104,100,103,103,104,101,101,99,107,96,96,106,105,103,103,109,105,95,105,94,107,105,114,92,103,102,108,103,104,102,96,116,96,112,111,108,104,102,104,110,107,102,127,116,108,105,96,127,95,117,110,108,89,87,100,110,104,109,99,101,103,93,103,105,111,95,113,106,98,96,104,109,110,106,109,116,110,107,110,106,111,95,106,106,108,98,73,120,109,107,92,102,94,105,96,102,126,96,104,95,107,99,104,100,99,110,91,109,104,107,114,104,95,99,109,101,98,102,106,109,112,103,104,112,104,114,97,96,116,110,100,107,108,110,103,104,99,98,97,106,102,122,100,92,98,117,100,95,100,73,100,95,107,98,100,103,102,102,106,115,106,103,103,110,101,113,94,102,106,110,109,96,98,109,99,117,95,100,102,99,102,100,102,91,111,119,101,99,92,108,100,99,95,101,105,81,104,106,107,92,96,105,103,96,80,92,102,95,92,100,100,101,117,112,100,110,109,105,94,103,92,94,94,117,118,86,102,97,91,117,95,100,116,99,90,97,109,105,103,106,101,136,107,117,99,106,94,107,108,100,113,84,100,113,99,96,121,85,79,110,105,112,113,100,104,85,110,90,101,114,104,97, +574.08685,103,99,93,99,92,102,106,95,85,113,92,90,93,94,100,114,102,92,113,111,101,90,98,90,95,106,96,95,101,102,108,105,101,115,107,109,101,92,118,118,99,112,102,104,109,101,95,104,100,99,84,90,98,102,104,97,91,97,98,98,93,107,94,105,108,104,90,103,109,109,92,105,104,104,120,112,116,96,114,71,107,113,108,102,100,109,94,114,87,95,101,105,103,114,113,95,99,100,105,74,100,105,96,92,99,92,96,106,92,97,93,100,99,136,90,101,112,105,95,103,104,90,104,115,132,97,104,104,113,103,102,100,109,111,102,112,117,92,91,97,105,102,98,104,103,104,104,104,100,97,102,93,104,86,96,99,74,99,102,104,104,102,103,101,116,103,94,107,107,101,110,129,87,116,99,118,103,91,100,94,103,100,104,117,104,106,83,83,102,96,110,105,98,112,100,94,118,110,119,106,94,115,107,105,102,94,100,107,121,108,95,98,111,112,100,113,101,101,104,110,99,104,95,100,96,103,103,103,104,101,95,103,104,109,102,116,103,103,110,103,102,97,113,108,89,93,102,102,105,103,113,105,97,102,96,112,86,99,99,92,101,104,99,106,87,105,101,121,95,106,105,87,97,98,108,104,101,81,111,82,104,102,89,91,106,91,98,108,95,117,105,123,117,113,118,100,98,107,105,99,121,99,98,102,96,105,99,111,116,97,92,108,98,116,99,100,100,112,104,90,100,100,94,100,104,103,84,94,103,107,100,93,109,94,108,120,100,95,103,94,102,99,102,89,100,104,105,101,100,96,107,99,104,97,104,96,109,105,104,106,103,102,112,97,103,109,109,117,101,99,103,98,86,101,109,101,102,102,110,108,106,110,103,100,101,90,91,110,87,106,109,104,87,117,96,105,104,104,110,100,112,101,119,109,102,96,112,103,94,98,98,93,104,101,103,92,106,109,113,109,108,95,89,102,98,84,88,96,89,103,97,104,104,99,104,100,111,99,108,86,104,92,102,106,90,101,98,90,114,103,85,103,105,112,95,108,104,98,117,104,86,106,113,105,99,98,95,103,109,100,103,104,110,103,108,100,101,120,103,104,96,103,110,107,111,97,111,106,108,103,102,100,92,96,101,94,133,103,118,99,111,114,105,106,124,108,102,108,114,89,100,100,94,101,96,107,99,93,99,103,95,96,111,90,104,104,120,104,108,101,99,101,101,105,98,105,101,102,107,101,109,96,100,95,108,105,102,100,104,104,94,111,91,107,108,89,117,102,107,107,104,101,105,108,100,100,107,102,104,101,85,104,96,108,101,75,99,102,99,108,113,104,102,96,109,100,97,99,94,106,115,112,110,78,117,103,109,108,101,117,103,99,108,98,128,94,90,102,101,96,96,105,102,94,108,102,92,115,117,112,106,116,90,109,105,109,109,99,97,105,123,107,112,117,106,108,116,100,115,110,101,104,111,105,90,101,97,99,110,114,102,106,97,107,95,87,90,114,101,101,110,104,98,104,104,101,108,102,104,104,110,111,97,98,93,113,111,109,115,99,95,104,97,96,108,109,95,102,98,117,102,84,100,113,94,93,113,107,100,101,96,105,96,90,97,111,96,102,99,98,117,88,107,104,105,112,91,109,109,83,104,94,108,107,101,108,106,126,110,111,85,106,105,106,105,104,101,91,88,105,105,100,96,108,118,95,106,121,105,119,104,96,113,111,104,100,124,105,100,102,91,119,99,95,90,111,107,105,110,95,98,98,109,93,95,106,102,72,109,102,98,89,115,105,94,109,102,102,98,108,105,107,95,112,102,107,95,98,99,96,108,107,102,106,95,108,92,102,110,90,105,96,94,100,103,124,103,104,108,97,102,102,110,85,107,118,110,105,120,111,101,112,97,91,102,102,92,92,107,90,90,108,111,104,104,100,96,109,109,97,106,106,90,101,91,95,81,103,104,99,102,103,110,106,117,107,102,105,95,103,105,92,111,106,104,108,104,101,95,106,104,95,100,104,113,110,95,114,99,103,116,99,102,100,117,90,107,109,93,120,103,111,113,106,106,97,101,96,97,99,106,111,105,79,108,94,95,110,101,107,100,100,106,113,96,96,107,92,96,103,105,104,103,100,103,92,100,102,102,101,112,100,109,103,90,105,107,117,110,108,97,103,115,102,103,110,108,97,87,110,109,110,104,104,84,110,105,108,104,100,93,107,104,99,110,108,107,84,97,102,96,84,105,104,103,114,100,78,102,106,102,110,108,98,87,118,100,105,95,102,112,98,105,97,91,97,103,104,100,103,98,101,101,112,112,120,103,101,99,105,106,100,97,107,99,96,115,103,99,132,149,134,105,120,111,126,145,162,178,176,233,241,215,257,282,310,262,199,251,266,217,203,212,188,193,203,142,152,108,119,127,109,97,112,103,100,110,105,102,89,81,113,96,113,115,117,141,97,90,106,104,120,92,99,121,78,117,96,104,111,104,112,111,99,94,113,113,99,97,111,113,99,111,107,109,86,106,113,130,120,107,113,113,104,99,105,102,111,100,83,95,106,108,92,110,102,103,99,123,103,108,114,107,100,101,108,104,110,91,99,107,101,114,112,92,109,98,108,97,96,107,104,111,107,95,96,115,106,119,97,110,101,107,111,102,111,132,95,106,108,98,81,104,98,113,104,112,110,107,108,108,108,98,117,103,95,118,118,114,117,108,103,106,102,102,113,103,100,120,98,106,117,114,85,108,108,111,109,94,94,99,106,102,112,98,96,107,101,103,116,112,119,104,95,114,102,105,109,112,95,97,96,102,103,113,112,110,100,112,115,117,105,112,92,99,105,105,103,113,108,99,98,107,103,110,104,108,107,103,106,107,104,103,119,93,100,107,104,97,105,103,107,112,107,107,92,99,94,109,113,103,106,109,107,81,114,118,104,101,111,102,113,100,110,113,107,104,110,97,113,101,119,111,106,107,89,103,104,111,94,99,100,124,102,106,111,104,111,118,100,112,99,87,108,105,94,114,109,116,115,104,110,101,115,108,108,88,100,108,102,139,101,114,94,97,108,111,105,111,100,112,105,115,109,112,108,101,120,115,107,110,102,112,111,98,106,111,108,111,109,115,106,110,114,114,127,94,107,102,105,104,99,107,104,103,107,89,106,97,107,88,96,102,105,115,110,113,94,108,104,105,104,105,99,113,117,108,113,125,110,107,115,111,99,102,106,103,118,99,106,109,94,90,113,106,107,104,109,107,124,129,111,100,117,102,105,103,118,104,96,102,117,120,103,105,102,100,101,93,98,97,110,107,105,139,109,106,105,113,109,112,108,81,96,103,106,102,100,119,96,88,106,116,100,121,107,108,104,107,105,92,102,119,106,114,113,95,108,118,102,103,92,96,104,110,100,107,117,102,99,100,104,104,114,114,115,86,112,105,100,105,90,82,112,103,95,112,104,82,102,97,107,109,109,99,103,107,101,101,102,107,106,104,95,96,104,111,113,106,93,117,110,106,107,112,112,101,98,105,109,108,116,99,104,104,100,117,102,107,112,107,110,106,110,109,112,100,119,97,119,105,93,106,104,102,100,105,108,102,83,92,113,102,104,116,102,113,108,123,102,92,104,109,106,114,101,106,108,106,109,106,98,108,104,105,93,115,104,109,115,103,90,96,109,117,101,94,97,103,103,109,103,106,101,102,95,106,122,112,96,110,81,109,110,110,109,109,103,96,109,98,105,99,97,103,98,110,106,107,105,100,112,104,111,113,111,110,103,104,117,102,113,108,116,104,110,102,103,132,106,110,108,107,115,107,102,111,115,98,99,112,91,107,110,101,122,106,108,115,111,102,109,111,113,95,117,109,109,111,109,112,95,103,101,112,96,107,91,109,104,102,106,105,108,103,115,110,105,102,105,107,83,112,108,107,97,88,94,118,104,102,104,106,105,76,111,98,111,102,98,109,105,101,108,107,121,110,91,96,104,99,106,90,112,112,115,97,102,106,109,103,95,106,100,113,105,103,106,104,102,107,105,104,113,112,100,110,102,104,101,107,98,98,100,101,103,98,108,103,99,110,103,102,99,80,112,97,108,112,99,117,110,100,112,108,120,96,105,95,103,112,119,101,103,106,118,99,104,111,85,106,99,122,95,103,124,113,115,112,115,109,86,112,108,99,107,110,91,108,93,119,106,106,98,102,107,102,112,107,95,115,106,108,94,109,113,110,102,98,103,115,117,114,111,98,115,103,104,110,102,95,107,98,104,102,105,102,110,99,112,105,96,108,103,107,99,98,104,100,91,92,117,113,107,121,100,114,108,104,110,103,106,114,102,109,100,86,102,99,116,96,110,106,99,107,106,103,103,106,107,115,107,111,110,110,103,106,100,99,95,96,101,97,117,101,106,99,109,113,112,98,87,99,113,106,106,107,111,96,106,116,92,116,94,117,109,94,96,104,98,106,106,104,100,109,102,107,105,101,96,95,105,125,103,110,105,102,100,92,99,109,94,97,106,102,101,97,101,104,101,91,99,106,102,101,109,110,103,99,99,107,104,89,105,104,96,108,100,112,93,101,123,106,110,104,115,110,106,99,108,100,99,107,108,116,108,107,103,113,109,94,107,101,110,108,108,102,109,124,97,96,94,107,102,112,111,121,105,104,110,98,98,111,104,100,108,83,89,112,94,117,94,107,105,102,95,102,91,112,109,112,88,118,80,100,104,105,112,88,104,98,105,110,114,111,102,113,109,80,95,111,87,103,112,103,95,111,106,136,100,109,102,106,100,99,113,105,102,106,99,98,103,100,108,99,107,102,97,110,98,109,105,111,100,106,100,111,99,113,110,114,97,98,84,98,104,101,93,110,95,102,94,111,107,113,105,107,99,83,110,108,106,116,104,110,108,106,96,98,108, +574.22778,103,105,132,98,100,106,114,103,98,85,85,101,106,99,99,116,103,104,101,102,107,93,101,104,96,119,104,107,112,112,114,90,110,106,103,113,104,103,107,101,96,105,109,98,101,113,113,113,93,91,95,117,103,101,102,111,104,97,111,94,93,108,113,90,112,118,103,100,105,98,100,122,115,103,112,100,91,96,99,92,108,95,112,104,109,108,99,106,89,107,83,98,102,103,97,104,101,108,107,94,116,102,95,90,107,100,99,109,108,98,105,106,110,106,109,121,109,107,107,104,109,87,105,101,100,114,97,102,109,107,98,110,111,106,103,106,97,93,116,101,100,110,100,99,85,116,115,101,95,119,99,81,122,94,97,106,98,98,94,95,114,100,119,106,118,96,113,92,93,106,109,100,101,117,106,104,109,120,114,105,106,109,114,94,109,110,111,92,104,113,104,104,108,114,107,112,125,110,110,121,103,107,103,114,102,105,102,114,113,113,77,91,96,106,109,99,91,110,104,107,112,101,101,100,96,112,113,106,102,110,117,106,107,124,103,101,100,114,108,102,117,100,100,109,104,101,105,108,105,87,109,103,106,107,121,99,111,111,110,115,106,106,108,99,113,96,112,103,114,98,113,105,122,102,97,105,108,112,106,110,108,102,108,103,94,106,105,92,104,107,100,103,104,126,78,116,105,87,102,109,108,114,100,113,99,66,107,118,112,107,105,74,106,105,115,105,121,120,108,106,107,113,110,106,99,106,106,105,113,109,112,111,113,107,111,102,103,100,99,110,116,98,88,88,107,113,108,98,107,107,118,107,97,105,100,107,104,107,105,103,113,94,102,112,108,104,106,107,90,105,118,121,81,107,110,100,113,107,105,102,103,114,113,108,99,97,106,90,105,108,112,97,104,117,133,99,110,105,113,103,117,109,107,103,95,92,104,107,113,111,91,100,118,107,109,110,114,107,102,121,101,94,90,101,104,108,104,111,120,102,101,111,109,111,104,92,103,120,90,96,117,103,109,99,85,111,112,95,106,105,96,103,109,118,102,100,99,106,117,99,95,102,113,105,102,115,108,107,105,106,115,103,112,94,108,100,115,111,113,107,103,103,124,94,99,100,101,105,104,109,102,108,113,102,99,100,101,117,95,102,107,111,100,114,100,107,107,101,101,105,112,109,104,105,109,104,105,99,100,102,118,106,124,105,125,110,120,102,107,117,97,108,90,98,116,103,109,108,108,115,109,106,128,102,110,111,112,105,114,97,109,102,107,87,106,99,98,99,104,108,107,115,102,112,125,100,111,111,98,108,99,99,100,108,104,109,112,96,112,135,106,99,101,105,109,103,111,100,104,100,111,96,101,110,108,112,110,116,124,113,111,107,116,94,99,106,107,110,96,95,98,103,103,105,106,95,89,99,87,108,103,102,106,110,119,124,105,103,95,98,103,104,109,103,111,106,112,113,114,91,109,110,99,113,95,101,87,94,107,101,107,116,105,113,104,98,113,117,105,113,107,111,115,104,89,115,116,112,113,99,104,104,109,99,99,117,96,107,111,101,101,110,99,97,106,96,106,103,100,110,92,108,106,143,101,108,114,109,104,105,112,101,105,98,106,105,109,107,101,101,104,115,104,96,113,103,104,117,109,109,106,103,103,112,91,104,105,103,111,112,126,110,110,107,113,107,111,113,118,97,108,95,92,104,103,116,103,102,111,109,104,97,113,108,101,100,106,115,97,129,102,114,100,110,102,113,98,104,101,94,108,110,104,98,107,110,97,103,94,95,108,105,112,109,102,98,109,96,96,112,112,98,100,102,109,105,113,93,72,112,98,93,106,100,108,105,113,108,123,104,96,105,112,107,102,98,106,109,109,99,115,96,99,98,116,104,106,110,118,103,97,116,111,100,109,99,112,94,96,115,95,114,116,98,105,109,102,93,111,108,105,105,111,101,78,104,108,97,109,96,107,106,75,108,94,110,100,110,113,105,99,101,103,108,99,111,115,109,114,100,106,102,103,99,111,106,102,108,113,105,106,109,122,116,81,85,107,103,93,106,109,115,105,115,93,116,109,95,121,127,103,110,72,116,95,101,101,102,100,103,104,78,103,108,104,88,103,117,101,101,94,105,108,110,102,118,111,113,109,111,105,105,117,112,97,108,112,112,107,100,103,119,103,106,109,102,113,103,98,103,119,95,94,102,120,91,101,125,103,102,96,104,107,98,103,109,103,96,105,111,102,108,108,105,112,101,121,94,111,109,93,114,108,108,113,105,101,115,102,106,108,113,99,99,115,121,127,104,134,106,105,108,106,116,105,115,106,116,115,117,104,126,111,106,112,120,110,95,112,106,134,106,113,119,133,130,131,156,174,170,200,225,240,279,295,299,274,246,245,253,273,186,257,213,203,154,149,130,160,132,117,115,115,107,107,101,118,105,120,113,114,115,111,107,119,104,101,120,112,105,109,107,102,104,127,117,110,107,106,121,122,103,106,104,103,117,112,118,102,108,111,109,117,110,119,120,109,92,107,96,102,108,89,99,104,94,107,99,96,114,124,114,101,104,114,110,109,95,101,108,112,116,116,102,99,106,104,102,99,110,121,112,101,107,99,100,107,106,105,100,118,107,110,98,102,127,104,120,100,107,107,109,106,102,99,97,113,95,113,101,104,110,113,113,102,96,112,98,107,111,100,95,113,106,104,107,109,103,107,114,106,97,98,111,107,100,106,100,106,112,105,108,100,106,106,115,111,107,121,90,109,106,122,113,107,113,106,108,98,105,109,100,110,109,95,108,102,112,105,101,101,104,91,121,100,110,118,113,112,110,112,100,116,103,107,106,120,110,94,102,117,109,107,114,90,106,107,101,101,111,105,106,111,128,110,102,107,107,111,111,115,94,114,117,115,104,110,121,108,108,109,107,110,108,105,113,126,106,119,112,109,109,101,109,111,103,91,107,114,130,105,110,83,106,104,108,112,103,113,98,113,112,102,103,108,101,109,101,99,102,104,104,83,102,120,118,107,105,101,103,95,106,94,118,118,103,110,98,102,113,112,108,119,99,121,100,111,110,106,114,109,103,108,115,105,104,101,104,114,102,109,115,103,95,109,112,103,98,124,115,75,106,98,135,116,98,100,103,105,101,106,96,108,126,111,99,102,97,104,109,101,101,102,100,106,113,107,108,103,111,88,97,100,116,101,109,110,102,108,103,104,109,104,97,106,92,102,97,96,102,111,110,100,105,115,100,88,104,91,106,122,115,104,114,106,116,99,111,103,106,122,100,90,111,101,104,102,101,104,104,113,101,116,105,99,106,92,117,102,102,109,107,108,91,91,108,107,97,101,109,96,110,98,107,116,117,107,109,112,121,102,94,109,98,106,96,105,103,111,113,113,107,104,109,116,109,116,108,122,87,95,103,104,107,106,102,104,93,106,95,99,98,102,99,94,98,118,113,107,102,121,110,111,109,99,113,109,103,106,99,110,100,99,84,97,120,102,113,103,101,113,110,108,107,103,107,122,107,114,94,112,95,112,117,108,107,109,108,106,108,105,105,110,107,100,116,102,103,109,108,114,93,101,103,108,101,96,104,107,98,100,104,99,112,99,95,114,105,108,114,107,97,88,102,118,88,112,96,107,110,107,95,107,102,102,103,105,112,108,108,104,101,108,114,118,106,93,112,98,94,95,100,98,111,108,102,106,95,112,105,121,104,105,95,110,94,107,102,102,84,108,103,112,102,103,113,106,103,109,103,113,102,99,106,105,118,87,95,112,106,111,95,110,111,123,112,84,92,112,113,102,111,109,104,108,102,106,108,107,99,102,96,104,102,105,111,107,112,92,107,102,95,103,106,110,117,106,106,102,88,120,95,113,104,101,106,108,105,101,105,107,94,99,97,104,100,91,86,104,104,113,99,105,100,101,102,113,104,102,100,99,117,104,108,128,104,114,115,99,97,97,111,99,115,106,108,111,99,91,69,100,103,102,106,106,99,102,106,97,115,105,104,115,99,110,105,111,106,110,112,113,110,108,107,116,98,106,107,102,106,110,109,120,106,109,110,98,90,106,107,108,92,106,106,104,117,108,104,105,103,110,100,104,114,100,113,108,115,117,107,103,98,102,112,101,101,97,92,105,109,103,95,109,104,108,99,106,109,98,113,116,103,98,104,110,113,98,97,97,94,110,100,96,107,89,124,103,101,116,101,111,106,107,112,89,99,104,100,86,107,104,127,104,106,95,100,131,112,120,109,109,101,100,108,100,105,92,104,105,123,95,100,107,98,106,107,100,103,101,107,104,100,89,106,98,113,105,99,107,101,99,81,111,107,100,103,106,109,112,96,123,94,109,105,95,102,109,116,98,101,102,108,100,111,103,101,117,119,112,98,106,97,105,108,98,91,105,107,82,112,108,101,115,112,89,107,98,95,92,105,111,109,115,104,105,106,100,105,107,106,98,102,121,112,102,98,101,95,121,108,99,99,106,110,109,98,107,112,102,102,111,107,104,99,107,101,115,109,97,116,93,111,115,101,96,106,109,123,95,101,100,102,98,99,98,98,103,108,102,96,107,113,110,103,97,106,105,101,106,102,107,99,116,99,104,106,105,103,123,109,107,117,104,108,113,110,95,109,105,97,106,110,104,102,116,101,106,112,125,95,95,105,106,109,88,99,104,75,98,102,99,100,100,100,100,110,110,99,105,89,91,102,102,111,109,100,105,96,84,109,101,105,100,108,94,98,112,105,102,116,115,102,95,98,101,101,97,98,108,112,98,103,103,106,105,100,107,105,102,102,102,102,97,104,119,96,95,102,96,110,106,118,102,110,108,104,108,102,100,91,110,100,104,109,80,100,105,100,111,125,107,111,99,108,96,100,97,107,95,101,106,126,92,103,116,89,95,96,118,125, +574.36877,110,106,105,127,95,106,116,103,110,109,111,108,111,115,97,94,105,106,109,104,103,94,105,104,79,71,104,101,121,108,101,101,103,108,114,107,108,92,102,109,107,100,108,104,120,108,112,100,108,117,105,96,113,115,102,99,95,102,111,104,104,103,100,99,103,106,92,109,99,92,104,98,91,102,96,108,96,97,123,91,102,99,101,121,97,98,116,101,98,112,88,110,103,106,86,91,94,95,99,92,106,103,87,109,111,100,94,112,105,96,112,100,94,100,112,106,94,105,114,109,108,104,109,103,118,102,98,99,105,105,106,102,113,107,122,97,89,113,117,99,102,116,94,87,107,95,110,114,100,113,104,105,113,99,113,104,102,105,110,113,99,105,108,110,108,88,92,114,94,118,102,126,101,100,102,107,96,105,107,94,113,101,106,110,110,97,102,101,103,127,101,101,100,112,108,99,100,102,111,107,89,92,109,110,109,95,114,106,94,107,106,113,113,120,106,103,102,111,106,111,109,108,107,107,95,114,113,132,104,100,100,109,106,98,107,105,106,117,100,99,100,99,102,102,102,100,90,115,120,113,98,113,108,107,99,122,88,115,93,98,98,112,109,102,124,102,111,100,119,91,106,104,109,97,114,102,94,92,96,104,96,119,109,117,102,102,93,100,116,124,110,109,109,103,118,110,110,108,113,105,105,99,99,110,99,108,109,106,104,99,94,99,101,115,96,104,105,107,107,103,77,98,104,118,102,126,104,93,103,103,96,104,96,99,109,97,102,103,104,101,109,113,116,102,104,114,112,99,111,108,106,103,108,117,102,115,98,109,99,108,112,111,117,100,100,100,99,106,94,100,113,101,133,100,101,103,109,108,105,98,112,102,101,108,91,103,105,100,106,104,111,122,100,118,107,105,102,108,98,103,98,105,94,95,96,94,115,107,120,90,103,101,101,96,108,96,101,102,96,103,107,118,108,114,100,104,101,92,107,114,99,120,112,91,100,107,100,100,92,105,101,116,98,111,106,107,108,113,108,106,112,106,102,116,102,95,114,103,102,108,98,90,102,108,103,102,105,99,111,110,99,133,115,102,103,106,107,112,99,105,102,95,108,112,99,105,103,104,106,109,100,107,100,104,105,117,102,109,108,109,104,98,111,105,112,104,101,103,102,104,111,108,99,108,114,106,103,103,112,97,108,110,109,96,101,110,103,107,116,113,105,113,111,103,103,110,113,102,105,107,113,88,107,98,102,101,113,101,106,104,104,104,107,113,102,101,113,103,123,101,98,95,104,104,106,105,86,97,106,112,101,108,105,113,102,109,109,107,111,109,96,107,100,103,103,112,103,112,112,110,106,107,100,107,111,110,101,105,96,100,105,108,132,111,101,110,111,100,105,111,96,113,100,103,102,100,122,105,111,89,108,110,103,97,133,111,101,109,100,100,98,108,108,124,99,106,115,104,109,106,114,108,103,102,104,98,89,90,122,109,104,100,112,108,112,108,101,103,110,124,108,112,108,103,108,105,114,104,106,102,105,89,103,90,102,108,111,104,110,99,115,108,109,98,102,90,100,110,114,109,85,98,99,113,111,101,99,124,87,102,97,97,106,103,109,108,101,114,108,108,109,115,98,95,102,112,94,107,104,109,112,108,95,114,103,105,109,99,78,103,105,105,107,111,106,107,96,96,106,85,108,104,105,113,100,115,109,101,101,95,123,93,107,104,108,99,98,107,130,109,103,110,101,106,100,113,97,109,111,105,102,92,107,108,106,103,113,95,110,103,117,106,99,94,105,108,99,104,101,104,122,103,96,108,114,96,101,113,101,96,87,104,100,102,115,96,86,106,99,110,117,99,99,116,94,103,102,96,106,93,111,118,109,107,103,104,92,99,99,98,107,101,109,120,96,113,119,106,96,113,107,116,102,100,118,88,95,85,106,107,98,113,109,94,95,107,105,116,91,82,109,112,112,100,112,110,96,115,112,103,104,107,107,108,103,104,100,99,120,99,106,112,113,110,101,105,95,107,116,107,95,113,112,117,97,91,104,103,101,106,110,100,98,107,99,102,105,107,111,101,93,110,113,114,109,96,100,100,97,113,115,103,111,101,116,109,73,104,104,107,106,106,118,120,94,104,104,106,78,104,107,109,95,107,109,113,103,105,107,102,99,102,111,108,98,106,73,99,99,106,100,135,112,115,121,96,94,101,110,115,102,96,109,102,105,121,108,107,91,107,114,87,114,111,102,104,99,101,99,97,101,108,120,105,110,108,87,99,95,103,117,102,111,105,105,110,117,112,92,104,106,105,107,125,98,110,110,119,117,115,97,103,109,110,123,112,112,108,116,116,117,119,123,139,117,141,141,146,138,178,206,231,254,253,256,290,283,273,241,270,230,205,224,157,175,151,148,160,148,133,119,119,126,112,120,112,95,106,117,126,120,117,112,113,114,108,88,116,109,101,130,98,100,117,124,112,111,113,97,128,106,105,97,98,100,84,107,106,104,106,120,103,105,101,97,100,106,128,111,102,77,109,107,102,107,104,108,109,99,110,109,102,112,101,109,112,106,108,108,96,104,103,100,99,97,105,114,99,107,108,105,105,104,101,92,102,107,83,112,105,101,103,112,109,104,96,91,100,116,101,106,93,104,98,102,108,100,110,104,105,99,109,111,113,114,100,117,114,103,98,113,92,107,96,103,112,103,95,88,109,98,99,106,119,104,102,107,99,100,106,102,92,99,108,109,105,98,104,103,104,107,112,101,100,108,106,107,106,103,115,82,105,113,105,104,112,113,104,98,93,104,117,92,114,112,103,101,105,110,115,108,94,110,107,75,119,119,108,100,102,96,103,99,99,96,122,113,105,95,118,116,100,111,104,124,116,104,105,105,91,115,94,127,105,104,92,108,102,109,112,100,98,110,99,103,94,103,114,110,91,104,102,107,109,117,106,105,109,107,98,100,100,115,96,101,103,104,115,114,102,117,131,94,96,107,99,104,101,111,103,107,100,87,110,101,107,104,101,99,100,106,107,98,120,99,97,100,115,105,114,93,107,113,98,103,106,104,98,104,102,113,106,112,108,110,109,109,100,108,121,110,105,94,96,112,95,113,80,129,106,104,108,98,102,97,102,93,94,93,94,109,106,103,99,102,104,110,98,99,106,102,104,99,106,122,100,83,102,111,102,107,106,103,108,91,107,105,92,102,103,104,106,98,99,102,90,102,109,96,95,128,109,99,96,100,121,107,108,114,109,108,109,103,99,109,102,93,115,104,101,103,93,100,104,118,113,94,105,104,108,101,104,104,110,102,104,103,102,115,100,112,98,101,105,103,87,100,101,117,103,91,95,120,100,93,110,102,102,97,102,93,97,93,108,97,95,104,97,113,107,113,102,102,107,88,108,113,99,103,86,98,99,101,98,100,98,104,108,91,115,98,100,114,103,110,108,100,107,109,101,96,98,99,100,101,110,107,103,102,103,106,107,99,101,106,100,106,104,95,108,105,113,106,103,103,106,106,101,107,104,106,103,115,108,91,106,104,103,95,112,93,108,102,104,95,108,96,115,100,105,105,105,102,103,111,125,96,111,117,106,105,98,109,105,105,107,94,99,109,96,97,112,109,102,104,92,117,99,108,123,112,101,108,109,98,93,116,107,106,102,102,107,104,111,96,102,95,106,103,109,105,91,108,105,117,103,100,96,108,102,119,102,102,118,103,105,112,104,83,98,102,91,107,108,105,99,109,96,105,103,109,99,100,104,108,111,112,105,112,105,103,103,105,95,101,103,119,93,98,103,100,101,107,113,114,108,97,110,106,115,113,113,114,104,101,114,106,106,101,105,96,115,96,117,109,95,108,91,104,106,102,105,105,92,108,104,101,134,105,109,106,90,96,94,109,98,114,101,101,112,112,104,98,101,110,100,96,95,106,107,103,96,128,97,100,112,113,109,109,100,96,110,78,112,98,99,102,107,97,109,116,95,122,104,111,96,104,109,108,91,108,99,102,95,112,93,95,104,108,129,108,98,103,104,109,112,112,105,111,100,99,108,112,99,107,95,95,98,109,89,103,105,105,103,125,109,97,117,105,82,105,110,127,97,118,121,106,102,110,84,103,100,125,111,91,101,94,101,98,99,110,96,101,116,107,81,104,102,104,97,102,109,110,100,110,107,104,104,97,97,100,102,109,101,102,105,102,118,105,108,106,103,113,109,107,95,103,104,91,109,111,102,99,93,102,82,103,108,96,91,113,112,95,106,101,98,108,106,106,91,108,102,117,83,94,74,102,100,98,83,128,101,104,95,100,102,106,107,102,98,115,106,109,102,102,107,102,110,97,108,110,96,106,106,81,96,110,91,108,98,107,108,107,103,92,102,104,110,100,112,102,100,98,116,113,105,110,104,113,106,98,93,97,107,110,99,103,105,121,94,109,100,109,109,114,108,106,105,106,92,93,102,100,106,101,93,104,107,99,105,111,101,102,112,100,102,139,108,107,117,102,89,109,111,96,98,91,108,110,100,100,66,120,101,102,102,110,94,107,87,100,95,79,96,109,96,99,97,114,111,109,110,105,105,96,102,108,102,91,100,97,101,106,105,115,101,110,99,104,99,95,89,117,111,95,105,123,108,103,88,103,103,98,91,101,97,113,99,113,106,113,112,106,118,100,107,124,92,102,102,99,93,96,100,108,93,108,103,98,104,98,98,93,112,96,102,99,95,101,96,94,117,106,104,105,112,96,91,99,112,105,96,116,97,104,91,93,102,100,98,106,99,113,103,128,94,106,110,89,97,104,101,108,90,90,91,102,109,83,79,113,104,108,99,105,103,95,121,91,98,105,101,100,94,109,111,83,100,113,104,112,112,100,107,106,110,91,96,99,89,110,134,104,95,115,98,97,106,102,106, +574.5097,103,112,90,95,102,111,98,103,106,99,99,120,106,107,112,78,104,115,103,102,105,105,103,119,94,97,113,112,106,109,107,103,93,102,119,107,95,116,93,100,98,100,116,102,108,104,107,105,88,108,96,96,108,99,106,84,106,108,89,110,92,110,88,91,103,111,107,110,108,102,109,106,108,96,107,110,103,110,112,106,106,116,98,102,103,93,95,103,96,92,100,98,101,100,89,106,93,98,113,118,103,110,112,101,100,105,99,108,95,110,96,106,106,110,107,108,109,109,103,106,112,107,108,115,109,114,100,103,116,103,102,98,108,111,84,91,95,107,99,103,105,95,97,109,100,126,100,93,107,104,107,89,109,101,96,114,98,99,102,108,109,90,111,98,114,101,101,98,97,98,96,94,67,108,107,98,85,98,106,105,95,104,95,110,101,107,95,98,90,108,102,114,109,109,92,106,96,110,115,105,113,112,92,118,103,115,106,106,121,99,102,108,110,106,108,96,112,107,107,99,78,89,112,106,90,91,109,103,110,102,109,107,121,91,108,112,107,106,107,103,101,102,105,96,95,113,101,95,97,96,112,109,98,105,99,104,87,112,97,101,90,99,99,87,108,99,110,112,90,95,109,92,102,109,100,109,101,107,95,102,107,109,102,99,98,110,108,73,103,92,101,112,82,115,109,111,97,104,99,104,110,99,114,107,104,113,116,105,99,117,88,117,103,99,97,111,97,102,101,99,112,105,106,106,107,102,122,97,109,111,106,109,96,100,96,105,108,105,100,103,103,106,95,106,99,116,81,103,116,95,106,96,92,91,111,95,97,117,104,112,100,95,103,99,95,102,105,103,106,116,102,107,119,96,99,106,113,109,91,106,111,110,109,103,104,100,91,94,111,99,106,105,103,124,116,89,110,100,100,108,97,99,100,97,91,101,113,100,100,109,92,90,114,105,121,94,105,107,98,101,79,98,114,113,103,97,98,92,95,106,95,108,101,97,99,102,101,109,98,98,99,123,139,101,95,103,85,124,109,107,94,87,112,107,102,114,115,97,103,112,100,98,121,103,102,88,102,104,116,110,117,104,114,99,82,102,109,112,107,115,95,109,115,91,101,102,100,109,99,112,102,103,120,98,104,110,96,108,101,125,116,117,101,109,97,107,112,104,107,96,107,113,102,97,120,110,100,109,126,85,106,102,95,107,104,107,109,103,99,108,92,103,99,99,103,107,103,91,102,112,103,82,90,110,98,92,106,96,111,104,109,98,101,103,98,104,103,81,98,94,95,97,102,101,101,98,96,97,98,103,100,103,98,98,109,104,102,102,102,109,106,101,105,99,95,100,101,95,99,101,112,102,112,101,118,93,97,110,115,100,100,100,103,103,108,103,92,106,94,97,102,100,112,104,118,104,112,105,101,90,100,102,107,105,105,106,100,100,99,94,108,125,93,105,101,98,94,100,106,116,92,111,117,112,87,108,96,98,112,120,101,95,112,104,101,110,104,112,107,108,112,109,108,109,104,109,115,99,103,108,118,98,116,102,84,104,106,119,112,104,109,102,104,100,115,93,106,103,119,109,102,93,103,116,104,98,114,112,102,91,106,96,108,107,117,104,104,103,88,104,114,89,87,134,107,104,91,104,97,95,106,104,113,95,93,102,109,100,96,106,105,105,97,96,105,97,105,101,114,97,118,95,98,98,108,118,97,105,109,97,114,97,96,91,108,106,103,72,99,101,105,110,90,109,102,117,115,109,104,103,113,110,110,98,100,107,97,107,102,104,103,113,114,96,111,110,111,109,107,103,103,113,117,98,116,105,105,91,114,98,107,99,90,105,98,111,111,110,113,107,102,91,102,93,106,109,102,96,113,113,97,106,96,107,102,110,110,103,109,99,103,114,100,110,123,120,115,107,95,96,92,109,117,114,111,101,101,103,96,102,105,103,105,117,99,107,102,112,109,105,104,110,102,107,106,99,99,105,107,111,111,103,105,95,104,99,88,88,110,102,122,106,108,108,104,101,113,118,100,100,103,108,102,111,107,100,99,104,99,114,92,108,108,105,111,98,99,109,99,107,100,107,113,99,99,120,113,94,98,104,106,105,107,98,109,98,105,109,93,108,110,116,110,90,98,105,103,104,104,103,108,109,104,110,95,94,114,109,108,117,96,100,105,110,107,98,97,100,95,104,96,100,94,105,106,115,100,97,111,113,109,111,116,114,97,104,137,78,104,109,106,126,99,99,99,109,100,109,88,99,112,110,109,110,119,112,103,104,107,99,95,121,112,112,112,100,100,115,106,106,100,110,97,115,100,108,102,107,105,119,102,114,112,90,103,102,94,111,121,114,119,131,108,112,141,114,127,155,165,183,190,222,275,252,285,250,293,239,254,208,232,218,197,184,166,171,148,146,132,127,108,112,103,112,117,101,115,115,125,108,118,107,95,136,112,105,109,106,110,91,109,109,95,113,103,102,99,96,114,95,107,104,101,99,113,113,118,99,99,103,105,109,117,119,101,100,100,98,108,91,106,106,103,111,110,97,108,108,98,114,104,110,111,111,112,106,108,103,107,99,119,114,114,105,103,105,117,101,104,103,101,98,109,112,108,118,111,106,104,106,108,97,110,102,106,91,94,131,97,119,101,109,114,118,107,115,128,106,102,119,102,107,105,109,99,101,83,102,119,96,102,107,113,113,98,121,112,107,98,103,109,111,114,108,95,98,102,94,102,107,123,110,109,118,111,113,104,101,113,106,121,110,104,112,102,93,108,118,105,109,119,106,111,112,123,103,128,115,97,99,100,121,111,124,105,96,108,104,107,113,119,98,97,103,94,107,116,106,101,103,102,104,112,115,97,96,104,103,100,121,108,102,116,104,104,113,105,104,82,117,112,110,106,136,120,94,98,102,114,115,105,112,114,114,97,106,115,99,113,104,107,124,119,109,108,112,108,119,111,108,116,103,113,113,102,91,99,112,119,107,112,100,94,100,110,107,107,107,104,110,114,110,106,106,99,73,117,112,115,96,106,99,109,116,104,103,109,106,105,109,126,137,112,100,113,105,108,109,98,104,112,107,111,109,100,102,108,99,118,109,111,116,127,100,116,115,104,113,105,105,121,106,106,119,104,106,104,111,111,97,102,91,110,105,105,111,99,92,106,92,108,112,101,90,109,116,104,114,108,109,112,106,99,119,105,101,119,113,99,111,120,97,95,111,102,113,103,99,97,118,106,112,103,107,109,132,108,103,122,105,114,117,106,114,102,100,109,116,108,109,109,102,109,108,104,114,98,116,113,110,109,108,110,104,99,106,116,114,106,106,108,116,102,114,107,109,101,103,112,94,98,99,102,116,115,105,100,112,118,102,99,106,112,102,95,105,112,101,108,97,105,109,101,105,106,115,106,113,97,95,107,108,110,117,117,106,110,100,91,108,116,94,114,108,106,102,99,104,111,109,105,102,133,101,96,108,108,101,110,108,107,110,100,108,100,105,103,104,107,107,105,110,99,112,108,105,113,113,111,113,111,111,107,112,102,104,113,114,107,104,100,108,111,74,109,104,107,115,108,110,104,99,111,116,117,115,113,109,108,106,94,106,111,115,92,112,108,108,113,107,102,115,108,107,107,89,100,110,98,96,105,104,113,101,111,112,101,106,113,115,99,104,103,111,100,110,111,104,105,98,115,121,107,105,110,113,98,108,115,107,112,102,103,106,114,109,104,94,107,104,99,109,102,106,101,101,106,108,112,100,109,91,88,105,116,105,98,104,104,102,112,104,99,101,105,103,96,102,106,104,102,108,102,114,102,98,115,109,100,111,117,97,107,113,105,113,105,95,98,123,113,103,111,94,99,127,106,99,102,109,93,115,117,111,112,114,99,101,105,101,108,117,99,103,103,95,110,101,109,113,109,108,108,98,115,102,113,106,111,103,101,106,114,102,97,102,108,98,85,103,115,113,100,109,98,110,102,100,92,112,118,104,106,109,111,108,106,104,118,107,119,103,101,100,102,104,93,98,99,111,106,103,107,113,110,110,115,108,113,102,99,111,104,107,82,114,110,102,106,101,103,106,115,87,99,109,115,106,100,96,88,102,106,106,105,106,99,120,102,104,100,109,98,110,104,120,108,109,100,113,113,97,113,113,107,97,107,102,102,105,95,108,133,94,94,104,106,107,99,100,91,101,116,111,99,113,109,112,103,107,109,98,101,114,103,109,98,102,109,108,106,110,102,111,100,102,95,89,116,104,113,96,105,91,102,111,93,99,109,111,104,114,123,113,105,105,103,94,103,119,106,103,123,106,112,112,109,104,116,116,111,109,108,123,113,104,98,100,106,116,88,127,112,103,103,105,116,103,102,105,102,103,102,112,104,108,109,102,99,99,98,114,120,113,116,115,100,109,109,122,95,92,114,114,103,124,109,115,112,101,112,107,113,106,109,102,106,96,104,111,102,106,94,100,110,90,111,111,101,99,101,100,109,117,101,91,109,107,102,117,105,109,121,104,119,100,97,112,101,95,104,93,105,112,98,106,112,113,92,104,105,106,94,112,102,116,112,102,98,105,93,108,104,97,114,115,104,80,106,102,113,112,108,108,95,100,92,107,105,97,97,106,110,125,106,108,93,115,109,93,109,103,101,101,99,107,115,110,97,108,108,100,102,94,115,105,90,105,98,98,105,117,103,109,105,99,106,108,115,89,102,109,98,117,105,105,112,102,101,97,112,112,97,103,100,110,99,88,105,100,121,98,115,102,115,103,104,72,103,99,98,104,100,102,104,116,109,101,106,109,107,105,99,102,97,110,87,109,116,106,90,114,102,103,102,91,102,102,105,91,110,94,109,108,104,103,77,105,113,107,100,101,103,102,109,101,111,116,106,100,121,101,104,105,118,111,84,101,107,83, +574.65063,125,105,99,114,92,94,109,98,107,110,108,92,96,102,94,112,104,103,112,99,105,115,111,108,95,119,111,102,106,114,108,110,105,96,103,116,98,109,98,101,104,106,119,105,117,114,91,114,97,96,108,109,100,112,97,98,105,115,115,100,105,106,106,100,91,109,96,121,113,108,100,95,98,101,105,108,105,104,100,107,112,99,99,106,108,73,114,95,101,109,105,104,92,115,109,102,99,101,86,101,100,107,109,96,102,105,95,101,124,100,94,99,104,94,102,108,99,115,109,123,115,101,101,110,111,113,109,93,118,110,97,90,98,104,111,116,108,105,104,112,91,118,101,96,108,117,101,92,106,105,107,100,113,105,120,109,101,103,109,97,109,97,97,111,106,105,92,99,102,91,109,104,101,115,119,104,99,100,98,113,107,107,111,104,100,99,102,90,105,116,102,101,110,106,107,103,109,108,100,96,104,104,111,108,96,104,113,126,108,107,98,94,109,107,117,103,107,112,114,105,108,104,107,106,98,109,116,107,106,108,85,104,104,108,96,90,91,108,106,109,105,95,111,106,98,98,103,96,103,106,109,114,111,97,121,101,97,111,102,102,101,104,103,109,117,109,118,89,114,99,97,94,96,101,111,109,101,100,109,105,103,120,93,101,113,99,91,114,105,117,103,95,103,104,103,99,110,107,101,107,91,108,96,113,99,106,111,102,99,114,110,100,103,112,95,107,103,115,98,105,90,96,99,111,99,112,118,90,105,99,114,99,107,120,106,103,104,114,101,117,100,106,99,108,106,112,107,108,109,112,106,105,108,104,105,109,105,100,101,103,102,98,107,99,86,112,107,118,105,112,112,110,108,102,113,98,108,102,106,107,96,114,108,115,111,114,103,104,114,98,104,99,92,91,108,100,98,105,103,103,105,107,110,107,106,109,102,107,120,104,87,105,104,118,112,110,98,95,112,102,107,101,110,89,100,103,100,106,109,102,99,109,95,121,120,95,111,106,103,106,104,113,112,102,96,109,109,103,110,114,100,105,109,100,106,104,102,113,106,97,109,111,113,110,106,103,113,98,102,103,77,95,83,117,105,88,108,109,101,107,107,108,104,114,105,95,119,102,115,101,98,104,107,97,104,106,95,106,101,107,104,111,102,110,98,109,105,99,102,112,115,115,96,111,101,110,113,104,100,120,110,115,115,109,113,103,99,101,104,106,98,113,108,123,102,108,108,109,110,123,105,119,110,93,113,113,99,109,107,126,116,113,109,101,113,101,106,113,102,103,117,109,93,105,100,105,112,101,99,106,103,95,105,114,112,104,108,106,67,98,114,108,103,106,101,101,112,100,133,104,113,116,103,97,110,103,106,104,109,110,110,110,108,101,109,103,76,111,101,99,100,116,110,112,96,95,128,112,103,107,110,106,108,128,105,105,104,102,95,106,94,102,108,106,110,109,104,100,106,106,111,101,105,117,112,104,99,101,107,97,98,105,112,115,100,103,119,123,126,102,116,103,104,100,94,91,101,97,109,105,100,114,124,115,100,111,114,104,111,113,107,121,113,101,97,101,108,110,91,106,100,108,105,106,109,101,102,112,102,101,95,120,97,105,100,115,95,107,105,103,110,99,100,102,101,101,104,101,109,102,95,106,112,104,107,107,107,98,113,111,110,105,105,105,105,108,115,96,109,102,115,104,105,105,88,106,108,99,113,107,110,107,110,106,98,79,94,108,110,103,101,103,115,94,106,102,100,115,97,99,120,104,103,109,103,116,98,98,107,97,103,106,110,102,105,113,108,111,94,112,102,103,105,115,109,112,109,109,101,112,89,106,109,105,119,101,111,108,112,103,102,116,108,95,119,84,104,104,118,103,103,104,120,106,105,118,106,113,104,110,100,103,120,116,125,104,116,101,110,103,100,99,109,97,82,99,93,99,110,101,99,107,99,100,99,111,108,107,111,97,103,101,105,115,118,99,91,104,114,100,104,111,110,111,111,104,103,108,101,109,117,97,108,122,90,109,109,114,94,93,107,110,101,103,96,101,110,110,105,116,114,113,87,105,97,100,101,107,105,107,116,115,107,105,109,70,96,114,97,94,125,106,101,112,110,108,103,100,87,114,103,113,102,111,109,108,94,100,102,106,113,110,95,110,109,117,109,106,98,109,103,99,103,121,102,110,114,110,99,107,104,109,104,101,126,109,92,100,111,101,121,104,107,100,105,101,114,108,98,104,101,95,104,104,90,110,115,94,102,99,101,113,108,104,103,90,106,95,115,115,106,94,115,99,104,117,95,103,98,104,98,105,99,96,107,113,111,107,122,102,75,104,109,121,111,106,102,119,105,119,118,118,118,133,125,152,136,135,159,169,205,208,279,271,297,268,274,273,238,242,233,228,206,181,163,171,141,150,133,107,117,117,112,105,123,108,92,108,104,103,109,114,111,98,108,110,128,107,111,108,100,112,98,101,101,113,79,109,109,113,109,116,97,99,104,95,107,84,107,107,99,103,107,110,103,84,116,124,118,100,107,111,100,107,111,112,108,108,104,105,100,106,99,96,98,111,120,97,100,108,109,97,106,108,100,102,103,109,118,97,97,84,109,113,108,104,100,110,113,108,111,103,109,89,108,118,107,110,102,144,111,98,108,102,99,113,109,100,106,115,107,112,109,106,104,117,104,111,105,95,100,109,99,107,102,111,113,105,105,112,108,102,113,107,109,102,91,101,102,109,114,100,111,86,107,114,110,113,87,115,97,115,100,113,107,112,113,114,99,106,104,111,112,103,96,97,103,84,111,107,99,113,102,102,112,90,109,107,106,105,102,117,101,98,109,102,101,112,110,103,108,108,119,103,104,106,120,100,105,109,114,107,106,101,104,105,94,107,103,109,113,112,104,113,118,100,110,97,120,99,102,98,101,91,97,103,105,111,109,110,104,121,108,102,108,111,111,113,114,99,108,111,95,103,118,98,113,104,109,101,105,114,111,109,110,101,116,107,100,107,117,102,113,98,106,108,110,124,103,118,101,100,107,109,107,103,100,103,109,112,95,97,113,96,106,105,105,101,90,118,100,101,101,124,105,101,101,95,112,123,104,121,110,107,107,106,108,102,98,111,100,104,104,119,98,112,104,106,125,106,103,99,113,113,119,95,99,100,107,113,106,97,97,105,109,121,100,109,102,99,109,100,113,125,107,107,113,112,108,106,106,109,108,96,105,82,105,79,100,127,104,111,106,100,100,113,119,101,102,107,107,113,110,105,102,104,129,106,105,117,113,99,109,112,115,108,111,117,95,108,99,99,107,110,113,104,104,101,106,104,102,110,103,110,100,115,111,102,102,99,110,98,118,113,113,106,99,112,111,96,104,108,95,105,128,104,95,124,106,103,106,106,110,102,112,102,99,105,112,94,100,120,106,92,116,107,105,102,105,113,98,99,105,101,87,106,106,109,112,89,112,97,100,114,98,110,112,107,100,98,101,97,103,101,110,109,99,110,98,103,110,113,109,113,104,103,88,94,116,98,119,106,107,117,104,89,94,72,116,100,97,103,111,117,103,87,99,103,82,106,103,113,99,106,106,105,118,105,109,105,97,105,117,112,112,109,98,105,90,105,96,103,107,97,76,121,98,107,107,101,97,117,100,99,95,102,108,103,104,109,98,108,102,131,94,97,103,106,118,107,102,110,109,118,113,96,111,103,104,91,111,106,118,108,111,104,112,104,98,102,101,92,107,97,104,96,102,102,100,98,110,108,100,103,109,109,77,103,117,114,89,107,115,107,117,105,108,110,116,112,84,107,106,112,105,96,111,106,113,120,125,113,106,121,102,98,91,96,97,102,107,121,101,95,100,102,111,109,106,107,107,116,109,103,100,118,91,111,110,101,100,114,108,117,100,120,95,107,103,108,116,81,105,108,107,117,116,110,106,103,109,109,97,106,101,103,103,100,117,113,104,97,103,110,103,93,111,109,99,106,106,107,92,103,117,95,100,104,108,108,98,103,118,103,96,97,107,104,113,116,113,103,104,87,113,95,124,103,114,122,95,111,101,106,114,110,99,98,114,115,106,107,109,102,106,107,86,124,108,106,107,114,115,121,111,97,109,115,104,113,106,105,99,102,120,104,108,117,111,131,97,105,109,115,100,112,113,104,112,109,114,94,104,105,103,106,104,104,92,105,111,124,108,117,119,102,98,111,105,118,104,105,104,112,108,117,102,117,108,110,138,98,109,107,102,104,111,114,84,95,98,99,103,104,101,99,105,100,117,99,109,96,108,116,91,107,113,100,99,112,116,108,118,106,101,106,113,102,107,110,110,116,109,100,117,99,95,106,109,115,102,115,106,102,103,92,105,99,117,109,110,110,105,105,109,103,109,107,101,105,105,109,107,121,103,110,97,111,110,102,110,104,117,109,94,117,106,109,105,108,107,105,93,104,102,108,103,108,96,101,115,108,99,106,101,97,101,104,107,103,106,88,100,93,94,104,94,106,96,103,110,111,97,112,91,132,118,96,100,108,91,92,100,94,107,100,106,104,111,113,112,104,106,94,105,119,97,99,99,113,95,113,116,101,116,104,94,110,74,110,99,90,114,95,86,95,109,102,93,95,100,104,95,109,108,105,102,117,118,97,103,106,97,94,95,107,128,102,104,100,103,86,113,105,107,89,102,106,111,99,101,99,113,106,128,111,108,99,109,102,101,107,101,114,112,107,107,101,113,107,94,114,102,112,101,94,103,105,100,98,105,99,104,116,96,96,106,112,105,98,103,105,114,98,104,106,117,102,110,120,114,92,102,105,107,105,101,104,106,116,94,96,87,98,104,105,123,104,98,102,90,95,102,100,91,101,102,104,105,90,103,103,116,120,100,102,106,99,108,110,117,105,109,96,108,104,102,103,106,80, +574.79156,91,105,106,93,104,103,108,125,93,115,104,103,95,111,80,105,92,110,116,106,102,97,105,91,101,100,106,98,114,111,95,113,106,96,119,106,100,109,94,106,101,114,94,114,101,126,114,117,94,103,106,108,107,90,104,104,108,107,106,101,109,99,110,108,108,111,101,108,109,101,121,103,121,98,101,110,104,103,120,104,114,114,104,108,109,110,111,103,105,88,98,97,101,95,96,105,110,94,101,94,107,94,107,92,100,107,101,104,104,107,100,98,100,126,99,103,107,114,117,113,103,95,115,112,107,115,107,111,104,105,104,106,105,106,113,110,97,103,97,136,107,99,99,103,100,101,103,100,108,96,91,104,104,100,110,102,97,88,105,121,103,107,102,118,114,100,107,104,98,108,115,107,121,105,110,105,111,97,105,106,101,109,113,111,103,101,104,111,109,108,90,99,103,88,107,112,100,106,95,100,95,101,104,107,103,113,96,110,103,109,100,106,102,87,109,102,110,98,109,106,103,107,100,97,104,100,106,109,103,96,108,120,100,111,96,99,97,106,106,98,94,112,102,114,120,97,106,100,104,117,112,110,104,106,101,112,105,94,96,103,103,98,107,103,100,103,108,97,119,117,114,104,115,112,107,109,101,107,102,108,104,109,95,102,104,107,101,106,92,85,101,111,126,99,101,106,109,108,109,101,100,115,112,100,114,118,111,101,98,109,97,114,109,101,103,95,95,103,100,108,121,96,116,111,114,107,114,99,104,117,104,104,115,107,100,105,114,103,99,113,101,100,100,102,87,103,107,95,113,102,107,105,107,104,107,82,103,127,114,112,105,104,100,108,105,106,90,103,100,102,122,107,116,111,109,110,113,99,95,106,97,115,101,110,109,147,105,108,116,100,110,102,100,104,105,110,89,111,102,114,99,93,115,105,106,103,100,95,103,106,95,112,106,99,119,89,111,106,99,114,98,100,118,108,108,108,106,114,121,111,108,100,105,97,110,105,100,95,99,106,109,99,99,118,102,107,115,110,113,124,99,100,108,116,99,100,91,103,104,104,102,100,102,108,77,109,102,102,91,100,96,96,95,102,105,94,99,110,109,105,111,107,110,112,118,92,101,114,101,105,105,103,92,102,106,106,103,103,109,101,110,97,116,107,99,104,104,98,105,99,108,127,109,100,106,112,117,102,102,109,101,112,116,106,116,105,106,108,109,119,104,111,109,104,112,104,90,79,100,119,105,106,102,117,99,97,106,111,109,104,110,110,94,105,101,113,110,90,105,95,98,111,94,100,103,118,100,99,104,101,105,107,100,124,97,108,97,88,93,105,93,103,105,100,99,92,112,102,110,102,115,109,107,105,113,110,116,108,114,106,121,95,98,106,109,103,99,102,111,96,101,102,107,97,101,105,109,98,109,100,110,98,111,104,92,106,100,109,107,99,88,88,99,98,102,110,104,100,112,92,108,107,106,113,96,99,110,104,117,114,90,104,108,106,102,103,109,104,105,99,101,121,108,96,93,99,117,94,106,92,113,103,109,111,118,108,115,89,118,102,109,108,111,104,95,102,107,99,107,104,100,113,96,109,102,94,109,106,107,106,106,105,102,107,109,107,108,101,96,114,107,108,106,108,98,116,106,105,128,100,106,100,104,98,88,100,108,100,104,114,107,100,104,91,106,90,113,103,102,104,105,117,88,113,116,125,111,97,96,113,98,106,100,108,110,112,103,107,110,112,92,95,79,112,102,95,75,117,103,105,113,106,101,111,103,114,104,109,107,101,95,110,113,122,99,101,101,107,99,115,108,104,104,111,93,99,109,111,112,114,106,97,108,104,103,106,102,99,91,106,96,105,99,106,123,97,108,98,110,102,113,118,104,98,105,101,104,105,105,87,113,105,104,103,94,83,94,99,109,109,107,118,100,95,108,99,93,98,83,106,90,105,107,112,97,104,103,99,99,100,99,112,113,108,104,100,95,105,112,104,108,91,110,98,109,118,113,113,108,115,101,111,106,107,109,91,100,130,102,100,109,120,105,110,108,100,100,120,129,111,107,112,113,94,125,127,104,115,93,98,103,99,110,108,94,96,98,105,103,102,106,87,107,103,147,102,100,104,114,104,112,107,116,117,97,97,111,103,111,116,99,102,84,113,104,107,97,100,102,99,99,110,109,102,104,99,108,101,83,105,105,106,105,102,106,104,107,114,110,111,96,107,113,111,100,94,102,102,94,102,98,91,99,109,100,109,100,98,100,95,108,94,105,107,95,107,104,113,95,108,108,110,92,100,95,112,114,91,104,116,100,112,114,107,109,112,92,104,106,106,101,114,111,108,111,104,104,108,119,119,109,121,116,114,119,115,134,151,164,204,214,218,228,253,242,276,262,236,218,260,235,246,230,206,156,173,175,142,137,136,136,114,138,111,105,111,108,102,107,119,100,119,115,104,113,108,107,117,105,121,103,108,103,122,100,96,100,108,112,101,101,97,95,98,101,101,105,104,115,103,111,98,107,89,104,111,104,101,94,95,109,115,105,100,103,105,101,121,113,110,106,107,100,89,106,98,108,102,97,99,102,99,116,101,103,124,114,91,95,97,110,96,101,108,104,98,111,87,107,105,103,124,112,96,95,108,106,109,102,113,100,103,95,104,107,108,106,96,114,109,107,106,100,107,103,102,109,105,93,87,98,98,105,104,106,110,114,110,102,108,107,111,107,97,101,110,105,108,92,101,99,103,91,97,110,113,121,85,98,104,98,108,98,104,104,111,106,110,112,95,102,112,100,106,98,109,80,107,98,109,105,111,90,104,112,105,112,102,103,104,112,103,109,92,103,99,95,104,93,105,111,102,98,111,102,112,104,110,108,113,113,106,107,120,107,95,110,104,98,110,110,113,95,114,107,106,107,97,112,90,109,98,100,100,113,96,116,99,110,121,99,106,113,102,113,112,93,105,88,117,115,97,102,104,90,91,112,116,101,106,106,116,102,105,98,102,107,108,107,107,112,112,104,98,115,99,110,106,100,111,108,109,104,112,109,104,111,112,94,104,102,91,120,104,109,100,107,110,110,99,100,100,108,102,110,94,102,109,110,100,114,98,116,105,113,96,96,101,91,99,106,97,101,102,99,100,100,102,104,98,96,102,107,101,101,99,92,102,95,98,99,101,101,108,122,112,101,105,102,109,106,106,95,110,102,106,103,95,88,79,101,103,100,108,96,75,100,109,117,107,104,108,94,92,106,99,105,97,116,109,106,110,103,117,114,90,102,105,106,103,104,100,105,101,108,107,109,103,103,99,106,84,109,98,103,111,99,116,117,116,109,106,96,101,106,111,94,95,86,96,98,108,108,104,109,110,108,104,109,95,111,104,101,102,94,112,98,108,113,105,106,99,108,107,95,102,105,97,103,98,91,102,100,105,99,104,105,110,98,109,105,96,105,112,106,102,107,107,110,118,95,110,100,102,108,112,89,110,116,105,97,112,117,108,100,93,90,92,108,95,107,98,103,102,108,109,102,100,97,95,109,109,102,117,104,108,101,117,99,102,112,107,117,103,101,105,101,109,105,103,105,93,113,113,111,106,107,107,102,100,97,102,106,105,111,107,113,94,113,100,99,84,95,97,111,96,97,102,121,112,95,109,100,98,102,100,101,108,106,100,104,108,105,103,93,93,96,106,104,107,112,103,75,101,97,106,107,111,116,90,99,97,113,99,96,93,102,105,97,104,112,97,99,116,95,109,102,111,101,105,102,95,101,105,112,104,113,94,108,116,102,88,111,104,111,100,108,103,121,104,100,110,97,107,116,102,102,106,106,89,113,104,110,112,102,106,102,114,93,90,101,99,104,106,117,115,101,109,91,113,100,106,110,86,106,105,103,99,103,105,109,119,113,101,116,107,112,105,99,106,103,78,124,87,114,99,107,106,102,103,101,106,106,92,101,108,97,94,98,108,111,112,99,94,99,108,94,102,100,103,113,107,105,109,111,121,109,106,102,113,101,112,92,99,107,85,91,97,105,104,107,103,102,96,104,116,93,95,105,95,106,95,112,124,94,113,119,91,100,89,95,106,110,109,112,102,111,103,112,101,106,109,103,127,112,109,90,97,101,105,96,106,107,102,119,114,110,110,108,106,108,95,103,108,108,92,109,104,99,106,102,95,106,95,115,100,74,105,104,104,117,91,99,97,115,111,103,88,98,102,117,99,103,105,98,109,108,101,139,107,109,101,105,103,84,86,112,99,86,104,102,103,111,102,104,95,97,106,97,105,96,87,107,104,97,95,104,86,95,112,109,102,117,104,98,92,101,100,121,94,104,115,114,105,107,118,83,100,102,105,99,107,104,105,97,100,104,105,115,112,97,104,99,97,106,109,105,109,91,102,112,101,123,109,102,108,108,106,108,102,107,101,103,100,90,125,104,107,111,111,110,116,107,106,113,93,100,104,97,105,111,116,97,70,100,96,114,103,100,113,113,100,103,102,105,104,91,110,107,91,87,102,105,111,102,109,95,104,98,92,91,101,92,95,100,109,103,105,111,103,105,133,102,101,106,91,112,111,101,102,105,106,110,99,104,101,96,111,95,94,109,94,112,111,101,94,116,106,103,94,95,113,100,104,117,109,118,101,111,98,92,98,106,103,113,100,103,95,109,105,105,83,110,94,111,107,108,108,97,117,100,101,104,104,126,99,104,103,101,106,106,117,110,105,107,96,104,110,101,101,104,102,95,108,77,102,103,106,117,108,112,99,102,100,101,96,103,81,109,104,109,105,96,112,117,106,104,109,109,106,102,104,103,107,96,98,104,104,118,106,106,105,99,109,111,108,102,106,106,95,125,109,99,103,100,97,102,86,107,92,110,108,108,108,98,97,98,114,103,104,116,108,102,109,118,96,106,116,107,108, +574.9325,118,100,108,107,95,103,108,97,96,97,89,82,106,105,94,98,103,129,117,100,100,96,105,103,97,107,112,105,87,109,106,105,109,109,95,99,102,91,113,105,98,110,101,108,120,91,99,122,108,94,94,112,98,102,105,87,96,104,109,94,108,101,102,123,111,111,90,96,95,98,110,104,107,104,100,113,100,90,113,103,109,111,95,106,110,103,95,97,112,96,117,110,102,100,91,97,103,100,77,104,102,101,99,97,118,95,93,109,101,114,98,100,99,106,89,98,93,105,95,99,113,112,117,110,112,103,99,91,106,103,100,106,103,97,101,113,118,99,110,113,96,111,100,98,102,101,100,107,110,97,100,101,104,100,103,105,107,112,91,104,100,108,121,111,102,100,83,120,107,100,95,106,80,103,100,91,104,102,114,100,96,105,120,102,98,116,99,99,108,109,105,99,101,102,108,103,99,110,102,102,102,101,104,110,102,94,113,110,118,121,98,106,96,111,104,127,112,109,101,105,94,106,111,101,83,108,107,104,103,103,101,103,114,110,83,117,120,97,95,104,92,104,100,109,106,105,101,107,104,108,97,106,95,88,103,107,95,112,102,106,107,104,116,108,109,88,78,107,110,99,108,91,106,104,104,128,123,106,108,95,108,102,108,109,108,104,109,98,113,99,101,97,111,110,112,103,109,115,100,105,108,102,75,104,99,107,112,103,99,105,109,103,91,94,104,116,84,108,102,97,103,99,112,101,96,94,106,111,115,104,98,107,120,102,106,113,99,102,108,108,102,118,108,109,103,118,108,118,116,110,102,100,114,101,111,105,104,102,97,92,101,110,124,108,99,117,104,109,107,93,109,97,93,119,100,114,106,118,99,108,106,106,102,111,124,109,108,107,110,106,101,107,103,104,94,109,87,79,103,103,107,113,99,120,102,108,106,117,117,103,109,108,109,115,110,101,95,108,114,99,108,97,110,113,106,87,107,90,87,105,103,108,100,112,109,101,111,105,116,102,114,100,98,90,105,101,92,95,99,102,110,104,101,117,123,107,99,109,110,108,109,107,116,111,94,93,84,102,117,112,105,108,103,104,95,105,98,121,99,95,92,103,109,106,123,95,116,106,96,103,109,102,104,81,93,99,97,103,108,89,103,108,102,109,111,108,105,96,95,106,104,89,105,100,112,110,99,105,105,94,106,93,95,103,112,101,107,89,110,105,98,103,95,104,95,105,103,111,102,104,99,116,102,93,104,104,111,104,113,110,105,97,100,104,107,100,102,108,99,104,105,107,96,108,94,77,107,103,111,101,100,92,96,110,102,101,102,109,97,113,99,94,108,86,104,100,107,105,73,95,84,118,100,107,110,108,109,93,108,110,99,121,105,92,104,96,94,91,96,112,106,97,117,118,110,105,118,113,104,107,98,96,102,110,105,96,109,99,96,75,102,110,110,102,99,104,97,103,98,114,120,111,100,101,113,98,103,112,116,105,98,113,114,107,111,100,108,95,114,115,106,109,121,123,109,93,108,108,113,111,106,110,119,112,107,112,105,110,108,93,120,101,103,101,96,101,103,105,113,103,93,110,109,103,101,109,103,113,101,109,100,95,111,115,98,100,119,104,101,99,109,100,125,110,109,100,105,103,96,98,116,105,111,121,96,107,99,110,101,111,101,100,100,107,103,97,117,98,109,90,116,102,108,108,105,91,98,109,109,105,109,91,102,94,106,104,111,130,118,103,100,109,93,102,90,115,94,96,108,104,113,103,104,99,105,109,98,118,91,116,96,106,101,102,95,111,106,104,107,115,103,111,104,112,104,121,107,109,109,114,96,101,96,100,131,144,99,110,102,113,114,114,102,108,92,98,109,105,106,109,92,109,99,114,103,118,114,101,106,117,95,108,107,93,105,83,99,107,105,111,102,103,120,95,106,101,95,104,99,112,107,113,101,107,88,103,98,117,104,120,93,108,95,104,106,88,104,94,98,101,105,112,106,103,108,95,100,103,101,100,108,112,121,109,105,108,92,110,110,104,108,118,101,96,109,108,106,102,103,102,113,107,116,117,99,110,100,109,95,103,106,116,111,104,101,98,105,113,104,114,112,101,101,102,129,99,100,107,101,107,104,119,102,105,103,107,105,98,75,94,109,114,112,101,108,105,128,102,102,108,97,104,100,92,122,101,110,102,97,93,118,117,106,101,106,108,90,99,100,108,123,110,104,102,109,109,110,115,114,109,108,113,133,101,102,105,105,110,94,104,108,93,98,99,109,99,114,99,97,104,95,102,99,96,109,104,95,109,98,103,79,132,96,98,104,112,107,107,102,102,104,98,95,108,115,106,121,107,120,104,113,121,146,123,109,111,140,129,204,192,201,242,233,237,234,238,245,262,194,198,251,201,221,168,173,191,137,145,144,129,119,127,110,117,105,106,118,109,109,113,97,121,96,102,117,117,111,107,109,102,109,123,106,104,111,98,99,120,111,105,109,104,100,96,86,112,104,101,100,108,100,112,104,98,94,112,123,113,118,101,97,116,117,113,108,102,107,113,106,107,82,101,107,125,110,117,104,99,98,95,104,107,99,98,102,99,109,98,104,108,101,105,93,104,94,98,103,95,102,106,104,123,112,106,106,96,101,111,83,113,113,101,98,92,100,124,110,99,106,135,108,103,119,106,102,93,103,108,112,104,102,101,103,86,113,113,100,106,100,107,106,117,97,101,100,102,110,91,98,108,118,107,101,108,101,103,103,102,108,94,105,109,109,98,112,102,96,106,99,103,107,110,103,108,102,103,107,108,109,105,99,113,98,98,103,106,105,104,109,109,98,101,103,113,112,103,111,106,91,109,106,102,101,108,111,99,116,102,100,113,110,116,109,109,110,104,114,124,104,108,92,107,110,116,99,99,102,99,111,107,109,106,109,95,107,101,104,105,104,98,98,102,110,102,114,117,102,97,111,112,103,109,99,101,108,99,110,99,86,111,119,110,100,100,102,101,98,93,110,105,128,114,113,98,119,98,142,110,111,111,100,118,105,108,107,104,98,112,116,96,96,111,105,102,106,92,116,100,113,107,99,99,96,114,112,109,103,107,96,99,96,106,100,109,104,109,107,108,99,101,106,99,95,113,87,104,102,110,105,113,108,99,94,90,124,99,112,97,109,109,79,120,103,115,93,109,98,104,110,104,97,117,96,110,105,110,105,98,94,102,87,123,99,113,101,105,101,105,114,106,91,109,102,110,87,105,110,96,110,111,116,97,100,115,110,98,102,103,116,102,112,103,101,106,102,114,101,117,112,103,89,104,112,106,113,106,98,108,110,103,110,106,96,110,97,102,93,103,94,100,94,105,100,102,109,117,103,91,112,109,102,103,101,116,112,109,103,96,103,112,103,99,109,109,95,98,104,100,94,95,98,99,99,106,111,105,109,114,101,108,102,114,105,108,91,102,107,109,107,100,98,101,99,99,107,91,94,97,94,110,112,107,100,97,91,112,105,98,110,107,104,109,109,117,106,101,108,102,100,99,114,99,113,113,102,107,110,104,107,93,104,96,108,109,116,107,112,104,97,124,104,96,80,102,103,93,115,109,98,111,92,92,108,114,110,94,113,105,117,107,106,109,108,99,107,94,105,100,109,104,93,102,109,96,100,110,95,97,109,108,110,99,114,90,102,116,99,106,112,101,110,114,111,115,97,109,105,107,95,119,105,103,115,103,108,113,99,114,105,103,116,102,104,100,102,105,103,102,110,114,99,98,94,99,97,112,102,113,108,106,100,104,101,105,94,101,96,103,96,103,112,105,110,102,104,95,124,107,96,95,103,100,110,112,107,110,100,102,96,103,93,120,89,103,91,110,105,105,114,104,97,111,100,100,99,120,104,96,103,107,106,107,79,102,109,99,103,105,101,107,102,98,105,102,108,98,99,117,106,112,101,96,123,102,97,112,105,106,106,108,87,116,105,95,96,103,101,112,104,105,114,112,106,96,109,108,102,97,95,107,109,109,104,97,120,100,101,98,101,112,101,96,107,92,116,106,104,93,114,105,118,109,104,99,103,115,93,110,108,90,103,104,112,106,101,109,105,107,96,95,117,103,113,113,110,110,105,106,103,108,106,111,116,107,118,99,92,102,108,106,102,100,102,117,102,103,104,106,131,101,99,95,109,108,111,90,102,102,90,104,108,104,98,109,97,111,103,101,101,99,110,105,98,94,107,105,114,137,125,115,117,102,112,120,113,98,110,103,105,114,94,100,104,98,108,109,100,101,136,112,115,105,95,111,100,112,101,98,116,108,95,100,100,114,96,103,100,95,77,107,102,137,112,114,113,108,87,113,109,95,102,112,107,106,101,109,101,116,108,101,96,115,101,97,108,115,104,88,96,104,96,113,100,113,100,90,70,109,118,95,98,110,109,98,101,109,94,105,109,99,109,99,98,99,105,102,112,103,106,107,101,107,107,110,101,104,88,83,101,108,94,108,102,88,91,99,101,102,109,93,87,89,95,114,104,109,103,101,117,95,98,98,91,108,100,95,109,95,112,105,107,98,91,91,100,106,127,103,100,105,99,104,107,111,112,109,113,102,103,72,119,98,102,76,97,103,97,103,100,100,102,114,88,108,91,116,105,105,119,103,100,114,116,101,104,113,120,87,102,95,111,104,116,97,100,103,95,121,105,104,97,97,93,103,105,114,104,107,105,118,116,104,108,111,98,108,113,97,105,97,97,98,99,104,100,105,96,108,106,106,120,103,101,108,102,94,99,110,113,103,109,112,110,99,106,102,98,114,104,112,112,101,105,109,100,92,104,98,103,103,102,98,102,105,106,97,97,107,84,95,109,126,98,95,103,112,83,99,116,97,124,124,96,103,105,94,106,103,109,106,109,101,105,105,102,114,115,101,103,114, +575.07343,117,108,104,124,99,101,120,103,97,93,89,104,108,118,96,114,105,102,102,108,103,103,109,102,102,109,99,118,107,109,98,106,100,101,113,102,95,108,106,89,106,103,105,111,108,103,91,96,97,107,108,106,112,94,106,105,113,102,99,75,105,93,104,102,100,95,103,111,100,97,113,102,107,102,92,106,114,114,119,109,109,106,99,99,98,105,110,102,92,105,98,113,105,110,134,100,111,102,102,113,99,111,93,107,107,100,94,104,98,105,100,94,109,97,113,106,104,107,101,109,109,96,102,103,109,103,113,93,97,107,101,103,95,108,116,94,103,100,96,106,102,111,126,105,96,107,91,108,109,97,106,117,107,99,85,102,99,130,105,105,111,96,105,114,104,101,106,113,106,114,112,96,102,113,109,102,100,94,92,121,99,101,115,108,92,91,115,107,110,110,107,106,100,92,96,104,110,107,95,104,101,103,111,79,103,107,110,98,119,116,99,93,108,115,98,99,106,118,101,104,109,103,112,112,97,105,113,98,104,106,99,107,112,105,76,100,105,83,110,97,112,109,105,102,101,97,102,104,113,113,106,106,111,112,101,103,116,110,90,103,99,109,106,114,105,110,113,103,112,106,122,97,103,110,104,106,106,109,126,85,102,99,104,113,110,98,100,103,105,102,107,107,118,115,111,103,117,87,114,89,96,102,92,108,109,103,104,95,95,113,109,107,109,110,108,94,107,98,112,106,104,95,113,100,113,96,109,100,107,98,95,103,106,99,110,105,101,107,100,108,108,107,106,103,109,100,83,104,111,115,94,114,107,111,94,107,116,117,111,110,105,105,106,97,101,100,105,107,90,92,98,106,125,104,106,105,109,122,119,95,108,110,92,105,96,109,105,92,106,112,104,106,95,121,107,116,105,104,96,111,100,94,120,113,109,106,96,101,102,112,99,106,116,105,109,100,112,99,104,101,107,104,102,100,99,104,102,99,91,111,106,112,104,99,102,96,125,108,97,94,104,105,110,109,102,99,100,98,110,113,95,110,110,114,100,114,105,118,112,109,102,102,100,101,101,113,107,113,97,99,103,104,101,100,93,112,103,107,103,97,80,111,103,97,86,108,101,96,98,100,79,120,108,95,101,118,101,93,102,101,113,91,102,101,99,108,90,104,100,94,107,99,98,104,94,110,108,112,123,75,100,98,105,108,109,107,109,106,104,95,123,95,112,110,82,97,113,100,101,111,117,106,95,98,107,116,91,103,104,99,100,107,90,111,106,93,110,109,109,100,105,103,108,96,106,103,108,109,104,88,102,108,104,104,109,108,101,102,96,103,104,107,107,88,104,102,105,99,99,100,109,105,110,109,116,112,115,101,99,106,111,101,101,94,94,94,104,102,95,95,95,108,102,110,97,106,105,130,103,91,86,100,115,100,100,113,91,104,108,95,99,95,113,110,108,105,107,93,110,100,103,68,104,100,110,92,98,97,123,108,96,105,107,108,99,112,86,105,91,110,105,103,110,97,88,121,100,105,107,102,98,104,107,102,92,110,114,98,100,120,119,88,114,91,110,103,95,112,104,122,101,96,94,116,87,133,111,112,102,77,103,94,103,101,104,118,104,118,116,105,113,107,99,104,101,106,104,105,113,114,103,106,104,107,97,102,116,98,106,116,109,102,99,104,101,95,116,112,99,107,109,99,91,109,106,112,94,114,100,113,102,103,96,104,108,95,101,116,105,95,104,119,104,108,104,108,97,111,111,101,107,105,104,104,103,97,109,99,102,118,106,111,109,110,98,101,113,120,115,94,105,111,112,112,102,117,105,111,97,111,103,96,107,105,124,125,110,107,103,103,112,98,105,101,109,108,102,105,113,110,91,119,92,97,106,106,108,94,103,103,100,110,109,114,107,101,86,100,112,110,106,107,105,111,110,105,101,102,100,76,100,113,91,96,99,107,108,104,91,104,87,102,116,102,121,110,118,99,107,104,106,114,99,102,95,115,102,110,102,103,106,107,105,110,98,99,98,104,118,117,100,108,102,116,98,111,116,100,104,105,118,102,108,104,109,98,102,99,101,105,107,99,100,106,92,108,104,94,95,104,100,96,106,125,108,88,102,96,110,118,99,109,102,136,138,109,99,110,117,103,102,100,105,116,96,107,112,93,108,107,104,82,109,109,110,105,107,118,101,116,109,112,109,105,111,102,105,116,102,105,90,129,107,102,103,96,112,110,99,105,102,106,102,106,99,117,99,102,110,88,104,106,106,86,110,109,99,106,97,113,106,111,95,87,106,99,123,105,105,108,110,110,104,108,111,113,101,112,99,113,115,118,109,120,121,110,112,98,134,121,112,129,114,114,140,140,138,148,160,145,195,235,228,281,283,268,261,225,263,247,248,200,186,205,165,206,157,154,144,118,119,123,118,114,104,104,114,107,106,108,103,121,109,114,99,102,113,115,109,109,101,113,91,113,102,103,102,108,116,106,105,103,122,94,106,102,111,102,106,109,109,95,114,96,111,110,98,122,95,107,100,123,87,105,114,99,105,105,101,87,110,109,98,113,100,97,107,117,103,104,107,111,104,98,94,113,97,106,93,105,104,101,91,99,88,102,100,101,106,110,115,103,99,99,103,100,107,102,97,110,114,99,101,104,94,101,86,114,106,106,104,100,104,110,101,103,112,95,117,104,112,109,83,72,107,105,111,102,106,106,98,104,121,115,105,98,111,104,115,104,100,113,114,102,110,102,110,108,103,117,112,112,105,112,102,110,112,113,99,103,109,120,105,105,100,108,104,97,97,123,112,97,111,99,106,115,107,111,102,121,94,105,111,108,100,95,110,113,109,101,104,110,92,113,97,120,98,107,107,103,113,85,83,125,92,102,91,109,106,109,106,106,99,107,106,102,107,103,107,130,104,112,108,96,129,112,97,101,103,107,119,105,103,107,102,90,116,107,102,115,105,109,108,100,106,94,110,104,95,102,104,77,106,105,105,111,97,106,112,105,136,104,100,92,112,82,104,111,109,100,105,104,108,116,106,113,110,110,104,110,102,106,104,119,96,116,112,102,105,102,102,101,99,104,81,101,111,104,101,102,101,105,108,106,102,100,102,92,100,79,96,111,104,119,113,117,110,101,111,106,108,102,108,95,105,103,106,92,90,108,96,83,106,110,103,109,92,124,117,110,117,101,110,106,105,100,100,105,115,106,84,99,104,96,111,94,120,101,115,101,104,102,91,97,98,99,94,105,114,107,106,105,112,119,98,109,108,102,98,107,105,96,111,104,97,105,94,110,118,97,101,98,105,112,107,105,119,115,98,103,102,104,101,103,104,103,101,92,110,100,97,100,100,108,98,110,103,106,98,101,99,101,103,104,110,115,101,103,110,101,107,107,110,94,105,98,105,99,96,90,97,101,111,112,96,111,111,109,74,104,101,106,96,107,85,114,104,103,75,110,105,95,100,92,102,116,110,112,110,98,107,102,96,110,105,103,113,95,113,100,113,118,112,111,95,94,100,102,109,94,116,94,95,112,103,102,109,106,102,103,110,105,102,103,108,120,104,107,103,116,107,100,110,115,95,112,109,103,107,112,103,95,103,116,110,96,109,113,98,104,94,113,104,105,108,106,105,97,102,110,109,95,110,100,111,103,96,100,109,106,107,108,98,110,90,99,99,114,111,97,112,105,96,102,102,94,100,91,110,101,120,95,104,119,105,98,105,102,99,108,103,100,108,105,111,96,108,93,106,100,106,102,107,98,102,99,100,112,106,101,90,105,93,106,95,102,117,105,108,113,108,125,101,110,98,95,104,102,107,103,101,102,101,120,108,103,107,116,100,111,97,115,94,116,97,126,103,111,120,97,107,99,102,118,98,117,109,105,99,96,101,97,101,100,72,102,104,110,106,101,103,103,95,95,96,98,116,109,119,98,102,97,102,95,106,120,111,100,111,109,103,107,113,98,108,110,97,103,106,110,84,106,99,100,109,110,116,112,100,109,111,102,106,98,108,100,105,99,110,103,108,113,102,89,112,115,107,97,105,101,106,100,106,98,106,103,98,104,111,91,108,103,89,103,128,121,117,103,109,102,103,102,106,104,113,109,102,107,108,108,121,101,94,117,107,118,107,113,93,103,99,101,95,105,108,96,105,107,106,105,102,112,98,103,93,106,110,100,100,103,111,105,109,104,113,106,106,117,106,116,107,102,106,103,103,104,107,99,106,104,93,94,96,101,102,109,109,111,105,87,98,105,103,95,100,113,102,104,102,109,111,104,111,108,85,105,110,111,95,106,98,110,106,120,94,100,113,99,98,108,108,116,98,102,102,100,97,110,86,101,94,102,91,99,111,117,115,97,108,115,98,103,107,102,92,112,107,106,117,104,105,110,108,113,97,91,106,115,120,103,108,87,107,99,105,99,106,95,71,100,118,109,109,91,99,99,111,104,102,108,107,104,123,97,110,97,107,95,103,104,98,96,103,98,103,99,95,103,108,100,109,111,97,93,93,115,98,101,101,100,98,101,101,99,102,104,115,99,107,113,103,109,100,114,109,107,100,104,98,104,113,102,102,109,91,107,114,104,65,94,105,100,117,106,102,102,113,96,95,91,97,114,106,108,107,108,81,106,117,102,98,102,102,98,103,106,101,103,93,97,108,102,97,109,97,79,109,120,108,106,98,116,100,99,104,109,96,103,100,108,105,105,115,97,106,101,111,104,91,101,85,101,103,111,102,106,99,107,104,103,106,106,113,110,102,104,96,113,115,112,101,97,113,98,103,126,102,87,111,94,106,98,103,106,99,113,88,126,119,102,107,108,94,92,99,103,117,120,101,88,106,102,116,109,100,105,109,110,110,105,98,88,111,102,85,108,100,110,100,101,114,81,103,107,120,92,92,92,108,96, +575.21436,105,101,65,90,96,94,106,99,88,99,96,110,94,87,108,86,98,105,112,108,116,106,91,110,102,105,102,113,114,111,102,95,95,105,108,102,101,105,110,109,97,95,102,110,105,113,91,107,91,106,114,102,105,109,101,94,101,103,109,99,117,109,108,89,113,116,90,105,104,108,107,110,95,101,93,106,98,103,120,116,107,103,111,114,98,96,101,109,101,102,118,94,105,114,102,101,101,100,102,95,98,108,96,103,103,113,98,108,102,107,110,103,105,97,96,97,99,97,112,107,103,93,94,103,111,107,95,95,104,110,101,110,100,109,107,96,95,97,103,107,110,107,100,110,94,102,103,100,100,100,105,99,103,106,115,97,113,95,105,96,108,97,105,108,111,103,95,101,102,111,109,99,106,103,99,110,103,93,107,101,98,111,101,101,106,107,95,99,108,90,102,91,106,100,102,98,106,106,127,110,103,104,100,96,105,109,105,101,103,107,100,109,106,110,103,101,95,112,103,103,102,109,101,96,103,109,111,106,106,105,112,101,102,103,107,97,123,88,122,104,107,112,114,105,91,98,99,103,109,129,101,109,98,107,99,110,100,119,101,106,104,108,117,91,93,112,100,126,127,91,120,111,97,110,107,107,108,100,106,106,99,96,113,105,93,91,104,100,74,104,107,109,110,102,103,107,107,102,115,113,109,105,107,92,99,115,107,107,112,111,100,110,110,107,104,100,104,100,97,85,116,104,109,112,110,97,105,87,106,115,104,104,100,100,112,98,101,102,102,101,109,114,112,97,100,108,103,99,100,105,109,104,104,102,107,107,105,102,104,116,108,99,100,94,89,105,99,113,104,106,100,91,116,107,124,106,89,105,92,101,121,101,96,92,99,107,111,111,96,101,109,107,95,101,100,97,92,109,88,103,106,105,118,97,96,100,105,106,109,111,96,113,102,104,113,109,103,101,109,106,101,112,89,95,113,113,110,85,112,107,107,107,95,110,114,99,125,112,123,95,112,99,109,99,111,106,105,96,110,109,97,106,106,110,107,97,90,104,97,97,106,112,103,107,109,98,108,104,104,107,101,113,105,90,103,94,107,120,85,107,123,103,107,119,112,108,120,103,108,106,99,108,101,97,101,99,115,105,104,101,109,104,96,110,110,98,90,97,106,107,108,106,109,96,105,107,101,118,101,103,102,95,116,106,88,115,121,104,105,108,99,106,103,100,114,99,104,93,104,107,109,103,100,100,112,85,105,110,118,104,97,118,121,107,100,100,105,99,99,98,103,97,103,99,91,104,108,98,96,104,96,103,107,107,103,101,111,108,95,105,107,97,111,95,114,89,115,108,106,108,109,106,102,93,111,106,105,112,103,103,92,106,112,106,95,97,95,94,122,100,116,109,95,110,111,102,94,99,139,119,107,98,122,106,107,94,91,103,94,103,105,103,107,96,97,96,107,104,100,108,107,101,91,98,107,83,99,104,115,108,100,102,97,109,107,104,108,109,99,117,101,108,116,108,113,96,89,110,95,109,107,110,114,103,122,102,104,106,96,108,110,108,120,95,100,103,97,102,95,106,103,102,93,104,100,109,109,105,92,96,108,98,114,99,103,114,102,104,100,97,107,103,117,103,88,101,106,100,100,117,95,105,103,104,99,106,106,107,109,109,103,104,102,104,99,99,103,93,104,112,111,106,95,112,98,95,106,109,100,117,105,110,103,96,105,101,93,100,111,106,131,107,100,105,108,103,100,101,114,90,114,108,120,102,101,119,103,110,109,96,113,106,104,114,103,111,103,100,99,108,111,96,107,99,95,105,97,111,104,109,97,118,111,74,115,99,92,106,107,96,111,98,99,95,117,111,95,103,103,99,99,96,107,113,111,112,120,99,112,134,107,106,105,101,117,94,105,105,114,104,98,123,112,116,103,98,108,103,114,106,96,103,101,102,101,103,99,99,104,119,99,105,100,103,98,95,108,112,113,105,115,118,98,107,91,103,110,102,102,100,109,108,109,111,107,99,97,123,114,107,87,115,106,98,104,99,115,120,105,104,95,104,107,104,104,116,114,99,105,111,106,119,110,100,102,109,101,107,116,117,102,114,103,107,117,107,110,102,104,107,94,121,107,102,102,92,110,110,88,113,103,120,105,104,99,99,122,114,104,115,114,107,97,116,111,94,115,114,98,104,98,111,114,109,96,99,104,107,106,90,117,88,111,95,96,106,109,113,93,102,106,98,97,112,87,110,106,103,102,102,99,102,121,103,106,101,101,107,103,110,98,98,102,102,93,110,109,99,94,107,100,117,109,109,129,108,103,102,101,107,117,108,116,95,118,115,108,115,116,102,112,104,102,108,126,107,120,167,144,175,174,277,251,253,267,268,249,230,220,240,237,226,227,178,152,169,175,144,153,102,132,130,108,100,111,89,117,112,120,103,113,125,115,103,97,112,103,113,111,102,99,102,96,103,97,113,84,114,110,111,100,122,100,107,95,106,105,92,105,100,100,117,105,105,105,132,97,92,109,104,111,108,108,107,109,100,98,90,98,105,103,122,99,103,99,102,85,107,113,108,96,109,95,102,101,100,106,104,114,115,102,104,105,103,100,91,103,110,105,110,104,111,106,105,109,108,113,87,100,109,103,94,106,89,100,95,97,83,100,93,101,109,103,108,101,111,107,100,98,109,101,105,100,108,99,106,116,116,106,101,103,117,103,118,95,114,107,93,99,106,103,94,96,109,98,103,99,111,91,96,103,108,107,128,111,107,92,116,117,111,105,112,108,108,117,97,111,108,110,99,112,114,100,109,112,95,102,113,116,100,110,98,109,83,106,113,88,104,106,106,78,109,105,103,105,103,112,113,109,87,98,106,109,91,115,106,98,102,102,100,106,105,102,100,113,109,106,113,96,119,88,99,102,109,98,109,110,97,113,107,108,97,108,105,113,97,102,113,108,110,101,101,97,100,98,102,102,105,99,107,103,91,108,90,105,106,98,107,106,101,123,99,88,123,109,100,105,92,98,90,96,105,109,103,100,99,103,104,115,97,99,106,117,111,106,108,100,105,116,100,133,110,105,110,97,105,105,99,112,100,102,112,127,102,117,99,112,95,98,101,110,116,108,102,104,116,108,97,102,101,110,102,103,102,100,98,101,109,89,106,107,100,103,109,99,92,101,101,106,105,102,105,98,87,98,109,105,110,109,111,100,101,107,87,110,100,108,108,89,109,106,104,99,97,93,104,114,98,121,102,103,98,102,95,103,90,114,104,116,108,93,101,108,104,108,112,105,104,95,105,100,101,104,89,117,106,110,100,102,92,112,101,101,107,105,107,97,106,105,106,98,110,109,71,106,109,125,117,105,106,118,113,111,100,95,103,93,98,105,95,106,100,102,110,103,103,120,102,102,103,96,97,108,104,101,96,109,99,94,113,117,100,96,99,115,102,109,104,108,103,105,110,104,97,105,101,121,105,99,74,109,100,99,108,98,120,105,100,105,98,100,110,93,95,106,101,112,107,101,104,116,94,109,106,103,102,115,92,94,122,109,99,112,113,99,112,99,120,105,100,103,105,105,107,110,103,102,93,96,95,108,105,107,104,100,105,104,101,110,103,111,86,115,93,88,106,98,101,111,102,100,107,114,92,112,107,109,109,99,98,106,124,93,106,96,101,113,103,109,96,104,109,91,90,100,106,96,96,76,106,107,100,110,121,104,109,100,104,96,107,101,116,80,99,103,103,104,103,102,106,115,103,101,90,96,111,105,101,109,95,109,119,88,93,114,120,111,103,107,114,91,101,97,110,110,109,120,114,106,98,103,104,106,110,115,96,109,98,104,101,103,105,104,100,100,105,105,106,99,109,104,111,91,115,110,109,106,96,99,133,99,98,96,106,107,118,107,101,102,101,102,109,96,107,107,104,111,97,92,100,104,107,110,92,110,113,109,109,97,107,105,104,93,79,107,99,117,96,100,100,92,97,111,107,95,111,121,94,91,137,94,102,98,89,108,112,105,100,107,103,105,92,102,112,102,104,109,101,104,106,91,104,121,100,108,107,96,109,117,101,103,105,100,100,97,103,103,102,107,104,109,106,106,99,102,116,100,108,94,112,102,97,110,83,107,108,116,112,106,102,109,100,107,104,99,107,97,105,121,112,108,96,98,102,102,98,110,106,97,103,107,110,110,94,112,114,99,98,105,105,103,107,113,99,105,106,105,103,98,111,97,105,101,105,92,103,112,110,95,80,110,109,106,108,100,112,101,117,107,112,100,113,110,104,103,95,101,97,103,116,99,101,102,104,97,96,115,113,100,108,122,102,114,105,104,106,116,109,104,110,109,101,106,96,116,111,115,104,104,106,124,111,112,130,103,133,113,105,123,111,99,111,98,92,102,103,108,104,113,107,92,102,106,103,97,112,109,91,99,99,100,100,92,105,96,88,97,101,103,101,96,101,103,104,105,106,93,105,100,104,82,117,100,106,105,107,100,113,100,103,77,97,97,102,108,101,104,106,95,87,100,93,94,88,104,106,102,98,103,84,109,100,94,107,112,102,100,101,104,100,108,112,112,106,99,88,95,100,98,107,93,91,99,96,111,120,104,101,102,103,102,111,110,101,101,101,124,114,104,106,102,90,104,98,96,96,107,109,93,98,100,108,104,97,106,94,98,93,109,113,112,105,104,101,112,105,118,113,100,107,110,94,121,106,106,93,101,99,102,88,108,106,103,91,113,106,108,109,111,105,105,97,106,98,95,97,91,105,113,103,91,98,110,113,115,101,98,107,103,108,104,104,94,114,115,101,107,100,102,105,117,112,105,97,102,104,87,115,99,100,116,89,106,107,105,99,106,88,99,104,114,102,92,117,94,98,115,66,107,102,105,114,106,102,114,125,108,104,107,105, +575.35529,114,102,94,97,92,100,105,112,98,104,92,103,101,89,101,94,104,101,103,97,92,99,95,114,102,99,100,99,100,92,102,101,94,99,107,106,109,98,110,104,101,92,113,99,98,113,104,106,95,100,97,107,110,111,109,97,96,99,116,92,95,111,113,85,98,100,104,108,113,89,107,106,101,103,98,106,110,93,95,104,116,95,104,107,122,93,111,91,94,100,106,89,100,102,98,98,116,94,102,99,100,95,116,108,92,102,129,118,87,111,95,106,104,104,112,102,98,109,112,108,99,90,110,101,107,108,116,100,109,107,96,124,96,102,98,102,108,106,110,81,102,113,102,97,101,104,108,115,104,109,103,108,97,107,95,97,109,103,103,108,95,102,108,102,94,115,93,103,98,101,111,98,94,104,105,74,99,107,102,100,99,99,108,102,109,105,104,104,98,86,88,113,91,105,105,111,106,113,96,105,107,110,93,103,104,97,113,101,101,98,107,95,89,103,101,105,97,114,93,102,89,109,114,121,92,108,103,106,101,97,100,96,97,99,94,102,143,101,107,105,94,108,113,103,92,97,99,102,115,104,111,121,96,70,112,103,97,107,95,95,87,104,105,113,88,110,113,96,102,113,105,103,84,110,98,101,114,101,102,96,103,99,99,104,111,107,103,107,100,94,113,100,102,103,97,112,104,100,105,104,114,103,106,87,84,112,102,101,111,100,96,115,104,107,91,98,113,94,102,99,111,96,111,107,121,111,100,86,101,95,99,99,102,99,106,103,108,109,103,98,110,97,106,101,105,115,105,106,121,108,111,114,104,92,99,101,106,105,112,114,109,96,106,101,112,98,108,109,102,95,114,113,107,102,106,101,91,91,108,113,106,99,99,108,102,92,103,105,102,95,106,99,101,111,99,106,93,98,77,116,71,118,101,108,76,114,110,100,115,102,108,81,111,101,111,94,102,117,90,100,97,87,109,110,112,106,101,93,103,104,97,102,98,100,110,114,95,105,95,103,107,104,101,99,103,107,102,102,102,103,108,90,114,110,110,105,88,118,114,96,102,122,110,107,95,124,92,109,96,108,104,110,120,101,100,107,108,112,109,100,106,100,120,103,110,101,81,102,90,99,104,113,115,104,83,99,103,112,118,108,112,124,99,101,124,113,102,102,109,102,103,103,111,117,113,101,102,99,92,104,105,95,100,103,97,121,115,102,102,103,104,101,103,110,102,104,113,106,117,112,107,107,99,106,107,102,113,108,97,111,98,107,103,107,106,112,105,92,103,97,103,109,110,102,121,140,119,97,105,105,94,98,105,101,104,106,95,98,110,113,102,104,113,110,103,99,107,103,103,95,131,109,118,99,102,107,121,108,105,114,100,109,120,102,103,99,98,99,104,91,115,122,117,114,111,91,108,101,109,100,103,105,108,105,102,108,123,114,101,113,100,101,102,106,94,109,103,109,106,99,104,111,114,91,111,95,111,105,109,119,102,100,115,118,89,111,118,103,101,109,83,104,110,109,94,101,118,104,105,99,109,105,104,95,101,102,102,106,113,111,117,107,118,105,98,109,101,111,102,106,108,107,109,103,107,100,80,106,109,113,115,94,107,100,110,114,111,102,103,101,104,108,104,99,93,103,95,115,108,97,100,99,106,99,112,106,103,99,119,105,104,106,99,109,116,104,106,102,116,100,95,107,101,104,110,106,106,113,111,96,123,92,106,113,111,101,80,107,95,100,110,109,99,106,103,102,103,92,120,100,99,105,107,95,107,108,103,103,101,110,103,107,108,110,113,88,109,103,101,107,111,107,106,118,101,104,107,108,105,119,104,95,100,100,94,107,106,111,108,111,115,114,99,108,113,98,109,105,111,99,132,113,118,92,117,98,111,99,105,108,106,110,104,109,111,100,111,106,99,102,107,103,105,101,105,115,87,95,109,113,121,95,100,105,100,112,102,106,92,97,101,109,97,103,112,109,90,103,100,110,113,110,99,99,109,109,106,106,106,99,106,111,103,101,115,112,91,114,110,99,110,114,103,99,98,97,110,101,98,113,105,106,102,105,104,97,110,97,99,112,96,109,111,106,81,117,106,105,100,114,105,105,106,104,98,106,106,109,107,107,96,111,105,104,110,105,104,106,105,104,99,117,100,105,103,104,99,109,115,112,105,109,113,113,109,105,109,111,100,99,104,106,109,113,108,111,109,114,106,109,103,109,105,107,108,105,113,105,101,109,110,114,107,106,104,101,100,95,102,105,97,118,113,103,106,100,108,125,107,109,106,91,108,112,91,99,109,111,96,106,102,99,94,106,96,116,104,111,111,112,105,110,100,102,116,103,111,113,109,107,129,96,118,122,123,123,139,150,151,161,212,189,250,234,297,292,267,227,185,235,212,216,209,168,163,185,140,153,134,130,97,127,106,107,134,98,95,103,106,94,112,107,103,103,112,110,112,108,123,104,118,110,98,106,121,123,111,99,115,107,104,123,111,105,87,102,117,109,121,108,101,108,111,136,110,107,105,107,111,105,98,109,114,101,107,103,107,109,105,107,111,101,132,93,106,108,105,117,112,102,101,105,110,95,108,112,107,102,103,109,109,84,92,111,104,113,106,100,107,106,109,108,108,108,89,103,108,95,119,119,111,92,100,98,93,107,109,107,109,102,98,107,98,106,103,108,106,100,112,114,83,113,102,101,108,108,113,103,99,118,98,106,102,98,104,116,108,102,102,110,107,101,103,107,102,114,111,106,100,117,106,103,113,110,98,111,95,104,100,101,113,108,89,115,102,113,102,101,112,106,119,108,71,108,114,105,109,106,110,104,101,97,112,110,106,115,103,113,108,123,98,106,102,85,111,103,103,96,104,107,71,106,99,111,113,102,104,108,102,105,99,102,104,116,92,113,109,112,109,106,98,104,111,101,113,114,104,100,122,104,105,93,109,124,109,108,111,104,102,97,100,105,107,109,94,106,106,110,111,109,95,103,102,105,112,117,101,111,103,109,102,106,102,97,102,92,117,112,108,106,101,110,94,106,107,117,111,99,102,114,114,102,110,93,113,112,92,99,101,102,98,105,96,111,88,108,105,102,108,98,89,112,102,103,117,98,106,101,101,103,105,121,101,110,89,109,106,104,109,90,110,98,94,103,89,82,103,112,98,107,98,110,109,107,104,112,90,111,116,106,112,103,109,113,112,103,117,100,120,121,108,85,99,109,120,108,104,92,97,100,102,107,108,107,99,103,104,109,112,105,109,109,103,117,109,97,92,98,102,100,97,101,121,105,104,112,105,103,119,111,111,109,105,100,107,115,97,124,116,96,106,118,108,101,109,104,122,94,96,95,100,113,102,100,106,105,104,105,105,100,96,105,104,103,95,101,108,96,106,103,109,108,110,109,108,102,96,100,125,98,99,100,105,119,102,108,119,104,111,110,97,96,109,108,110,106,102,113,110,76,105,95,106,113,128,111,94,106,96,103,112,109,110,102,97,105,104,107,116,97,104,115,100,135,107,98,102,99,104,110,122,113,111,103,109,106,117,113,102,111,105,123,98,105,117,126,103,113,101,115,115,102,106,125,100,107,100,113,108,118,101,119,105,103,113,102,97,104,95,114,97,101,99,107,106,99,93,95,106,109,104,104,103,121,102,88,102,107,109,109,108,98,110,110,109,97,108,101,108,99,106,105,97,114,102,110,102,104,111,104,99,120,102,103,111,91,85,102,111,102,112,102,99,97,108,110,103,110,110,109,107,102,104,120,110,111,102,114,99,104,108,88,110,110,111,83,106,104,110,108,80,102,101,114,109,104,106,110,108,101,112,91,101,107,106,112,89,126,97,108,99,109,101,102,111,112,119,97,97,104,97,112,103,99,117,105,98,108,105,90,99,105,96,105,101,110,87,103,103,103,100,108,99,108,102,102,102,108,102,107,106,95,107,112,103,110,108,87,81,102,111,100,100,95,109,111,99,101,107,109,101,106,107,107,104,104,106,106,110,115,113,99,102,102,121,106,97,99,103,108,103,109,109,118,96,106,120,108,108,107,95,105,82,102,103,104,113,114,93,95,113,124,110,104,100,110,113,108,104,110,96,110,99,107,113,116,99,105,92,111,109,100,106,110,93,114,102,101,106,121,103,100,100,81,103,105,100,104,105,100,110,92,97,107,111,103,102,106,102,104,108,101,109,106,97,110,97,120,96,95,97,103,83,107,111,110,112,104,110,107,107,95,116,97,106,112,112,105,120,99,102,100,112,103,105,100,101,99,113,116,96,87,106,91,102,111,96,98,108,94,105,100,99,108,104,112,109,112,102,107,95,100,110,117,98,113,116,96,108,108,102,103,83,112,109,90,106,108,99,113,91,111,105,106,98,108,108,110,104,102,100,100,118,117,95,107,102,93,114,111,95,102,108,104,101,108,98,106,106,98,111,100,109,106,95,104,97,103,101,102,104,115,110,115,99,104,109,104,88,117,103,99,111,98,111,124,116,96,106,94,112,105,104,108,118,101,94,104,101,102,106,103,103,108,107,105,120,104,108,106,96,97,102,100,100,105,97,108,98,114,102,110,107,96,91,104,103,99,104,109,108,106,104,115,101,106,102,108,116,99,96,103,106,113,104,103,99,106,109,102,98,90,106,106,104,94,108,127,107,107,110,95,104,115,115,94,100,96,113,109,102,104,106,101,109,105,117,96,105,94,111,107,96,107,99,103,97,106,106,109,95,112,104,90,103,102,91,96,99,101,95,103,112,113,109,102,94,109,91,98,100,124,116,105,100,108,117,119,102,102,95,98,104,95,104,101,124,104,133,109,124,103,110,94,111,104,110,104,107,85,115,102,93,108,106,109,105,103,119,105,102,108,116,99,79,110,103,95,110,115,103,109,109,113,115,129,98,105,110,110, +575.49622,109,109,92,104,117,122,111,103,98,107,114,101,96,82,105,95,108,108,116,100,112,106,108,113,87,118,98,104,106,81,107,97,102,113,107,108,109,104,104,107,101,110,93,114,98,115,110,113,97,105,98,110,99,112,105,108,112,108,102,110,107,112,80,103,103,98,107,121,96,88,106,117,101,105,98,107,99,97,102,104,109,99,113,92,116,120,100,102,99,99,97,104,112,90,86,120,98,91,93,103,101,109,108,108,109,101,96,103,106,103,106,108,108,99,113,96,104,106,111,105,103,108,99,130,109,107,118,100,109,103,103,104,104,102,104,121,101,104,105,114,103,105,105,97,73,101,105,98,98,104,104,103,100,102,100,104,117,96,102,103,105,101,109,102,101,105,116,103,107,104,103,105,105,111,98,100,95,99,115,108,107,104,107,110,104,104,103,106,105,104,103,99,88,112,121,112,119,110,107,109,105,110,104,101,102,115,99,109,118,106,108,107,108,118,117,108,99,103,98,102,107,120,105,106,109,104,110,109,101,109,100,111,92,113,100,111,108,111,108,97,92,100,102,111,99,113,107,104,109,105,104,77,112,97,92,106,100,104,107,106,107,104,99,113,96,117,113,100,101,98,105,106,103,104,108,100,115,109,94,103,103,100,111,102,96,94,94,112,103,113,104,107,117,104,112,111,106,115,95,104,103,108,103,116,102,77,116,104,102,113,106,113,106,99,114,98,118,112,106,98,111,89,105,109,111,109,105,104,107,101,92,112,82,103,95,90,106,114,96,106,97,107,98,96,100,103,106,107,111,106,98,108,103,101,112,106,114,114,111,73,113,105,99,97,100,95,105,112,106,115,123,105,102,109,113,117,107,102,110,112,108,94,107,108,105,107,115,98,113,91,101,104,102,121,97,89,102,100,104,114,110,103,98,104,105,100,106,99,105,95,109,102,103,106,106,105,114,101,96,99,102,93,100,107,107,122,106,105,113,105,108,110,99,108,107,109,113,96,94,105,118,110,94,98,113,96,106,112,99,114,108,108,98,89,100,90,97,97,114,105,105,106,106,113,109,107,105,111,105,104,113,110,108,102,104,104,88,107,116,105,113,115,105,103,106,108,104,112,110,123,96,109,118,124,100,98,99,114,106,108,103,100,98,105,94,100,104,76,108,112,72,104,102,108,107,97,105,97,98,94,109,109,88,109,114,97,113,103,111,113,94,101,94,105,103,106,105,103,100,98,95,98,100,107,110,105,95,108,114,102,96,109,110,106,107,110,99,94,117,103,109,106,100,111,100,91,116,107,113,103,111,103,114,114,104,97,104,86,99,100,116,83,97,99,106,106,104,112,100,103,101,114,100,99,105,108,115,95,103,114,115,107,107,116,108,107,94,113,107,97,104,93,99,95,106,100,113,104,116,111,115,101,93,110,103,96,99,108,103,112,103,101,108,95,101,105,98,101,110,108,103,111,106,102,87,102,101,105,129,115,84,111,102,106,99,104,118,116,95,114,98,70,113,97,96,117,107,99,106,109,113,101,109,92,105,108,99,103,102,97,107,116,97,104,97,120,108,105,109,104,106,96,95,99,113,99,110,103,107,97,95,110,100,103,109,109,107,107,99,102,113,109,106,106,103,104,103,99,99,99,114,91,98,108,109,96,113,102,99,113,101,100,99,104,109,109,109,99,106,105,101,108,100,110,123,96,108,96,111,102,104,102,96,103,106,111,101,103,109,105,109,108,108,111,97,103,82,100,114,103,108,106,99,98,101,111,99,100,93,98,91,99,109,104,97,100,114,76,106,110,111,108,100,115,104,112,118,108,97,106,104,95,104,116,107,97,105,114,88,84,111,105,102,94,102,104,108,106,103,104,102,115,97,111,112,104,115,101,102,89,112,110,106,109,102,106,103,107,109,87,99,102,113,110,95,98,109,102,109,103,107,102,95,88,95,100,109,107,116,114,112,102,102,96,96,100,96,111,106,101,95,111,103,98,90,96,112,106,99,99,105,109,95,107,107,101,95,107,105,106,99,103,129,110,103,104,91,115,100,90,101,112,98,103,119,110,114,105,109,117,114,113,108,107,108,106,109,111,97,104,106,104,102,106,113,106,102,113,102,111,99,106,107,102,94,109,92,114,100,102,90,77,105,110,106,95,118,121,108,95,113,99,110,116,113,105,107,110,101,102,112,107,107,94,104,105,95,99,112,105,99,106,77,101,103,107,94,99,93,108,111,110,76,89,100,105,91,100,106,93,94,116,113,100,107,99,90,105,95,107,100,100,98,112,116,119,108,106,96,107,101,107,102,106,108,126,114,116,101,103,128,110,110,110,118,115,106,104,126,102,111,131,108,109,127,102,132,133,142,159,225,226,237,247,257,225,243,216,250,250,256,259,218,205,181,152,167,137,152,115,122,114,113,115,108,107,106,114,98,102,91,108,120,108,113,117,123,89,96,104,112,109,116,120,95,102,104,103,105,95,119,108,104,99,76,114,108,102,111,100,103,77,121,106,109,120,101,102,111,106,104,111,107,105,105,95,104,100,119,109,104,100,118,104,125,110,116,102,103,108,114,104,98,113,113,100,109,120,95,108,97,62,94,109,103,102,98,106,110,92,98,92,117,109,108,102,111,100,111,104,121,111,98,101,111,102,112,103,104,110,103,98,102,102,112,106,104,112,114,97,109,110,106,113,117,105,101,104,109,114,124,101,117,100,106,113,102,99,117,115,101,123,114,97,112,107,101,109,99,99,97,105,107,100,111,106,109,92,115,114,113,110,104,136,101,116,100,103,91,98,117,116,104,106,116,91,110,106,98,110,126,101,106,112,108,120,99,110,109,96,99,98,102,104,99,77,104,107,115,115,121,95,95,109,109,107,109,98,103,100,120,107,106,112,111,97,106,109,106,131,99,106,102,102,102,100,116,92,110,105,103,109,102,102,107,107,98,105,106,121,105,108,102,104,98,117,105,101,112,111,97,98,101,121,98,111,106,113,98,106,102,113,102,102,104,99,109,99,103,108,99,106,100,113,128,105,113,104,105,108,105,98,113,103,110,107,120,113,110,105,108,111,117,104,101,101,101,104,95,101,102,101,97,99,93,111,113,105,99,109,96,98,106,113,113,101,104,119,107,106,110,107,97,105,97,94,113,93,110,104,99,101,99,106,104,116,99,98,113,99,102,107,100,109,71,108,120,109,96,114,91,104,116,110,101,116,102,102,127,113,111,102,101,103,106,91,98,101,121,106,101,105,98,107,117,101,107,113,104,125,91,105,110,105,109,115,104,108,107,95,102,110,100,116,81,111,116,99,112,102,117,100,105,101,110,113,106,100,107,103,99,104,107,99,89,110,112,102,101,104,102,97,96,103,113,102,105,114,119,104,103,113,104,108,108,111,93,104,105,102,85,100,116,115,109,102,114,105,114,103,105,83,97,106,110,106,108,100,106,98,127,103,107,115,106,117,103,104,100,96,112,102,105,106,94,107,105,115,104,95,95,111,105,103,98,113,111,113,105,98,96,106,98,116,109,105,98,112,96,117,99,103,104,97,109,109,111,111,106,95,108,104,104,106,101,106,112,106,102,101,95,105,108,107,93,105,98,99,109,106,116,98,110,113,117,116,97,104,107,107,101,91,113,105,108,97,105,97,125,114,97,108,95,104,103,107,107,106,104,93,111,95,114,98,101,101,101,104,95,102,115,116,94,104,103,106,110,106,113,105,102,112,105,112,107,102,113,117,109,107,106,95,106,93,104,106,104,104,113,98,104,105,101,105,103,103,97,116,105,103,103,95,98,105,98,101,118,110,99,107,113,112,114,102,102,108,93,99,106,99,94,109,104,110,105,103,102,105,105,104,102,102,113,100,110,91,101,92,113,99,108,99,106,116,112,93,110,95,103,100,106,99,101,106,110,101,128,106,96,97,108,99,104,103,113,109,107,105,99,106,85,109,88,120,104,103,102,100,108,95,109,104,99,121,102,101,105,110,105,117,103,117,103,101,114,107,105,107,104,121,126,99,111,102,117,94,109,94,110,105,98,109,102,97,99,105,103,105,118,96,110,104,109,101,105,106,104,107,105,108,100,106,100,108,109,104,92,105,107,101,106,115,113,105,94,116,106,96,99,115,107,105,95,102,88,90,98,104,105,87,109,98,102,106,94,103,108,102,102,107,104,106,112,105,105,113,95,114,110,108,111,98,99,102,105,99,98,99,100,105,96,106,101,101,101,104,108,107,99,95,126,102,108,111,106,109,97,95,106,105,100,100,101,96,99,109,106,102,96,106,108,108,95,109,101,117,84,115,102,108,105,94,115,100,105,107,111,102,110,107,110,90,108,79,106,107,109,98,107,110,94,111,109,100,104,106,112,103,95,115,98,101,106,96,104,105,103,110,104,90,112,90,108,107,99,111,101,112,111,108,103,100,99,106,99,98,99,95,95,109,106,108,113,100,98,97,103,100,97,116,96,107,101,102,101,113,94,107,107,103,98,105,117,108,101,107,110,95,79,98,108,103,102,116,106,105,80,101,114,109,95,104,83,102,100,103,103,106,114,99,105,100,109,96,114,119,107,110,101,107,100,104,98,113,107,107,108,108,108,100,108,95,102,100,94,104,107,94,106,97,105,117,106,104,109,102,108,116,93,103,106,102,103,114,109,105,116,109,105,102,105,104,95,102,102,98,119,119,103,104,108,108,109,110,112,91,103,104,102,112,87,107,106,114,110,135,122,98,130,106,115,109,107,107,105,101,97,94,92,98,104,103,97,114,100,123,110,100,104,108,99,114,95,100,116,103,109,117,98,113,101,102,98,106,101,98,108,103,96,120,107,109,92,96,105,95,101,94,117,97,105,107,103,102,99,116,78,106,102,105,108,104,99,110,106,123,106,105,93,94, +575.63721,107,122,110,101,95,97,83,115,99,90,97,91,129,84,100,99,98,102,99,97,96,94,102,107,97,99,103,102,112,102,100,100,98,128,117,91,108,101,102,111,109,112,103,96,91,108,109,112,98,120,96,103,106,95,98,99,97,100,120,101,91,100,86,113,111,106,90,109,100,95,108,108,112,109,94,117,90,96,107,107,104,109,109,106,115,95,104,113,97,107,100,115,101,97,126,104,90,104,101,104,108,89,99,99,104,104,106,106,100,100,112,94,82,92,110,103,100,109,108,108,109,95,119,109,109,102,99,105,117,101,98,113,97,113,102,105,95,103,95,107,115,112,94,100,105,83,109,102,98,102,112,109,110,102,102,109,112,90,104,118,103,92,101,109,95,98,98,94,106,117,102,100,83,115,102,96,104,112,113,100,101,102,101,95,113,95,96,100,98,100,98,121,96,109,95,103,98,95,99,103,116,99,105,100,108,113,105,112,104,100,105,103,98,95,107,111,101,99,103,94,106,102,98,111,107,101,100,91,102,99,102,100,100,96,95,99,105,96,111,110,108,100,110,113,97,105,93,104,96,100,107,98,114,94,100,104,100,103,104,112,107,119,103,116,98,113,92,109,102,107,104,100,106,103,96,105,95,108,97,99,109,109,83,104,107,93,97,101,95,100,103,108,108,117,111,88,103,100,101,106,92,107,105,103,98,102,107,107,98,103,101,103,108,101,113,100,100,117,106,105,92,93,105,107,108,102,101,97,112,116,101,98,75,120,106,108,95,102,91,100,101,106,101,95,104,109,117,100,112,106,102,80,111,94,102,105,120,97,108,106,92,107,104,100,101,100,99,102,100,112,109,102,92,100,106,96,113,88,104,112,97,113,100,108,104,96,105,114,90,94,104,103,101,105,103,112,97,105,105,113,126,94,107,80,98,110,106,99,111,109,95,108,102,105,96,91,100,117,113,101,94,101,109,115,103,86,104,92,109,116,88,102,111,109,96,101,102,110,107,99,105,94,94,95,103,109,111,106,111,103,111,87,110,103,116,107,99,104,102,107,109,106,102,108,99,110,104,97,102,103,104,99,89,114,108,104,112,114,100,106,121,103,112,99,103,109,103,100,92,92,112,95,111,103,102,92,112,103,117,106,111,113,86,103,96,96,87,88,113,101,109,117,101,97,98,104,107,114,94,93,99,116,106,107,113,108,105,113,101,104,92,98,98,104,116,92,97,108,103,104,99,104,101,113,107,92,116,109,108,103,107,112,105,101,113,100,111,103,95,103,100,98,109,105,105,107,98,104,93,99,107,101,112,100,104,94,101,115,97,103,105,105,107,100,97,97,113,116,109,99,91,102,105,112,116,87,104,108,99,104,99,105,105,95,95,104,98,102,101,109,105,108,104,103,103,96,104,86,107,108,107,110,103,111,115,116,102,115,110,99,96,99,105,96,95,113,105,99,89,79,85,107,111,105,101,100,99,106,108,102,94,95,103,94,102,110,112,105,103,104,107,103,102,104,93,101,100,103,102,113,102,96,87,98,102,114,97,111,103,108,108,107,101,99,102,106,104,108,101,110,103,108,96,110,114,93,109,102,102,96,125,111,105,101,105,114,102,109,96,105,106,110,104,98,111,100,100,105,110,107,100,75,98,93,103,109,94,105,96,102,102,101,108,96,95,98,108,105,106,110,109,120,107,109,110,108,102,101,113,114,112,112,97,100,107,92,102,105,102,104,98,91,94,109,98,97,94,99,107,100,108,128,105,101,86,106,101,104,103,94,106,100,112,107,100,109,110,88,101,126,107,96,107,87,109,105,107,107,106,108,103,107,104,106,106,98,100,83,107,78,107,100,99,103,106,112,93,103,102,95,105,109,103,100,101,104,100,106,105,86,97,100,111,113,100,100,109,97,104,81,104,110,98,106,106,108,99,104,106,106,74,87,110,108,111,103,104,97,97,97,111,124,111,99,91,106,100,104,104,86,110,103,122,110,105,112,105,102,94,114,92,94,103,99,114,113,99,101,107,107,117,109,102,109,98,103,101,98,94,109,113,108,98,92,111,114,93,96,105,88,100,107,102,105,101,108,103,86,99,91,119,103,109,108,94,112,103,106,103,107,105,110,103,116,99,98,101,101,95,101,106,110,95,114,103,106,102,113,104,105,99,102,90,99,105,112,102,98,112,96,108,106,100,102,106,97,99,100,114,102,105,113,113,109,105,113,96,66,112,108,112,106,115,97,98,107,108,94,106,106,100,111,88,103,101,115,97,91,114,95,105,97,131,93,110,108,115,110,99,98,101,106,102,111,115,108,112,108,79,110,102,105,104,111,106,109,113,105,119,112,111,123,111,107,123,128,133,148,152,180,190,242,249,242,240,228,287,279,199,218,269,207,216,215,139,123,142,136,120,129,105,114,104,123,119,111,113,104,95,110,101,126,108,99,108,128,117,106,98,91,106,96,110,115,106,96,113,103,99,117,91,110,113,105,109,110,100,116,107,103,106,105,117,110,101,100,99,100,102,107,113,98,110,87,92,107,99,109,91,102,114,112,114,109,121,106,101,104,114,102,98,104,102,103,100,102,102,104,113,105,100,108,95,113,110,100,113,110,113,95,95,119,110,105,95,106,115,102,106,111,106,101,110,105,88,108,98,109,111,110,101,106,96,103,101,103,94,97,109,87,100,92,98,108,105,102,108,103,93,104,106,126,105,111,110,112,108,107,93,106,102,97,105,117,123,111,104,108,105,106,114,106,111,99,102,111,124,127,105,105,100,99,98,107,111,89,90,103,115,98,98,119,105,105,112,94,116,99,93,112,110,97,108,98,102,100,111,106,101,95,110,101,106,108,109,92,110,102,99,110,106,110,105,97,106,99,105,112,96,106,104,100,107,116,100,106,103,106,107,128,121,106,105,109,104,100,105,109,120,107,105,110,83,98,109,103,107,108,100,126,98,112,111,102,96,106,106,109,107,108,110,112,108,100,110,111,106,107,98,96,113,102,109,100,117,94,108,106,120,96,111,94,102,107,125,102,118,121,100,98,109,102,121,96,108,100,106,104,116,110,107,110,104,102,107,112,105,105,100,91,116,116,110,96,119,100,96,98,113,96,104,100,107,88,124,116,99,105,104,99,109,97,105,106,110,98,104,98,100,109,101,112,103,99,107,122,108,102,121,101,105,101,103,93,96,111,112,99,110,101,111,104,100,108,106,111,112,107,105,107,111,110,96,99,104,115,111,101,111,100,95,108,112,114,107,108,109,103,112,100,113,101,108,103,118,102,89,92,98,99,102,103,99,125,95,110,112,98,99,115,99,109,112,135,127,106,99,102,99,103,105,103,103,98,118,117,109,78,123,107,113,106,106,106,108,101,97,95,102,97,103,106,113,98,105,103,102,101,106,108,72,111,113,107,100,98,129,102,109,106,101,115,99,102,110,104,101,105,99,98,112,105,99,129,93,103,109,108,107,103,98,112,106,92,97,102,106,71,112,137,121,113,108,103,106,106,91,108,114,102,105,109,127,113,113,108,94,119,116,120,94,103,112,90,110,100,100,110,102,104,99,103,110,114,108,102,99,103,113,97,96,104,99,110,128,79,113,111,94,106,113,95,105,95,103,102,106,100,106,103,91,110,105,106,114,104,104,91,108,111,109,101,124,105,113,114,109,109,111,112,113,111,103,110,108,109,105,105,103,107,101,100,124,106,101,100,108,90,142,108,109,110,104,116,103,100,106,111,112,111,99,96,116,104,104,103,111,113,113,92,97,110,83,106,102,111,115,106,121,104,109,88,97,106,94,82,110,112,105,101,110,105,116,112,100,108,111,100,107,109,106,109,108,109,102,92,105,103,106,109,98,106,101,101,118,98,112,103,93,113,119,99,112,117,103,97,115,98,114,98,110,113,97,104,107,108,102,98,120,90,100,113,110,101,105,105,100,116,104,104,125,107,101,110,100,107,113,101,104,102,93,103,104,113,94,106,100,107,112,113,103,100,97,99,107,98,106,105,106,93,118,103,118,102,114,104,105,106,103,98,111,102,104,76,115,92,108,110,100,79,105,95,77,112,101,96,93,103,113,97,106,106,97,109,112,106,109,103,99,126,113,101,113,110,109,112,109,107,105,101,103,100,95,113,112,121,105,103,100,103,101,104,102,100,119,100,107,110,92,100,96,105,116,102,113,102,109,109,96,102,115,98,105,93,100,103,106,101,101,101,111,104,95,94,117,117,109,107,102,93,104,119,105,110,97,110,105,102,123,100,82,114,112,99,109,106,94,102,104,111,100,122,111,104,104,98,105,91,111,98,107,106,112,97,110,97,97,101,108,98,109,105,116,105,85,102,99,102,113,119,112,110,110,107,92,113,108,102,97,93,102,114,98,110,99,102,122,107,94,106,100,86,102,109,97,109,105,103,96,101,105,103,84,113,104,108,93,103,119,102,113,108,115,111,104,82,107,96,108,99,99,84,95,103,85,103,102,107,95,105,94,97,94,110,102,92,111,101,106,109,99,98,82,127,102,99,98,114,105,110,99,111,105,106,112,107,90,106,107,107,82,108,109,101,105,109,115,102,104,105,105,93,106,111,104,113,112,94,101,116,107,102,110,100,129,110,112,108,98,104,95,98,106,112,101,94,110,102,110,105,100,104,109,100,125,104,110,106,119,96,95,120,105,105,112,92,99,111,100,94,107,107,104,103,95,96,107,105,96,98,109,104,119,90,99,96,110,100,103,109,113,116,109,85,100,103,109,88,104,107,92,115,101,98,109,111,96,101,107,113,88,105,114,102,104,96,111,110,101,107,100,102,92,116,108,115,109,98,104,104,100,123,109,98,98,106,96,96,108,95,106,97,105,110,96,98,110,107,98,94,99,107,106,98,105,102,108,107,99,117, +575.77814,113,108,86,94,108,105,104,100,115,101,87,111,90,101,103,108,101,114,91,102,109,98,99,117,104,105,99,105,109,117,96,104,114,108,103,105,120,102,117,119,107,98,99,106,103,104,105,96,113,103,102,130,103,94,109,86,98,99,103,105,107,121,99,88,109,98,104,101,101,102,94,101,93,112,102,97,104,96,113,106,120,120,116,103,87,98,107,109,100,105,101,114,94,101,106,113,110,103,111,107,96,87,106,94,93,104,109,104,102,99,102,105,91,119,112,94,109,105,112,100,117,102,100,103,111,95,117,94,112,105,104,102,102,99,103,108,99,98,95,113,97,105,100,97,84,96,113,110,94,105,91,93,101,98,103,99,109,101,103,99,100,108,95,109,104,93,107,104,108,94,104,105,99,100,102,69,88,100,100,105,112,103,91,103,110,102,96,94,100,105,97,104,102,90,89,94,109,83,97,88,107,93,102,104,106,111,113,100,109,103,106,100,103,95,96,106,93,101,95,102,107,113,100,77,100,98,106,109,101,101,99,92,117,112,98,96,106,108,106,104,106,103,110,107,109,112,96,107,108,100,95,105,91,104,105,117,105,110,108,87,96,110,104,104,91,105,97,110,96,101,97,118,99,94,109,102,101,108,101,84,112,98,108,104,107,93,105,106,102,105,114,100,108,98,95,104,113,99,104,103,100,102,112,98,102,96,94,102,102,125,110,108,98,112,101,114,117,110,98,107,100,103,107,107,104,101,103,102,107,101,102,95,110,107,123,102,95,94,98,102,96,103,103,110,95,96,85,99,115,106,106,99,111,113,109,99,107,105,103,104,100,100,100,97,102,104,100,97,87,108,121,101,90,97,103,97,105,98,94,91,110,118,100,115,101,101,97,82,108,92,109,98,103,115,108,96,105,110,114,106,106,117,83,109,104,102,102,105,91,116,100,98,103,97,126,97,98,101,106,100,114,100,102,105,93,99,94,97,96,113,89,105,100,99,107,103,89,111,95,95,117,102,106,101,91,90,102,109,109,105,98,102,102,112,99,117,107,113,102,108,101,98,110,104,104,99,108,100,108,102,120,103,95,98,113,103,71,96,91,97,97,113,105,111,101,82,106,110,101,104,111,112,103,122,106,94,103,114,97,95,107,98,110,99,114,109,95,113,106,103,110,99,110,98,112,96,92,104,106,97,108,105,93,91,105,104,103,108,108,108,94,108,102,105,109,109,100,112,110,107,104,90,102,95,105,107,100,113,113,118,106,104,106,109,92,98,108,113,96,104,104,118,110,109,106,108,73,108,99,101,100,100,102,94,113,113,110,97,132,102,106,116,95,95,99,107,110,109,111,105,101,110,114,103,105,102,100,108,129,110,104,120,111,98,98,104,82,100,105,107,95,104,107,100,109,105,105,99,106,108,101,109,92,110,120,107,95,110,104,106,112,103,106,108,96,93,99,107,109,94,108,104,105,99,99,107,103,104,112,113,109,105,99,115,107,105,102,102,93,106,113,110,96,105,94,117,108,101,118,104,113,107,112,109,105,103,108,109,111,85,111,114,108,94,100,98,95,104,100,107,98,103,107,115,104,105,99,107,108,101,101,103,98,96,105,79,99,105,104,105,105,96,118,98,112,111,96,100,87,96,102,97,94,101,101,102,101,83,104,120,105,106,103,97,104,103,100,89,114,101,99,101,91,113,108,103,106,110,91,118,111,106,102,95,103,101,113,116,100,92,88,106,105,105,104,101,101,106,109,96,105,98,96,107,97,108,117,101,100,114,107,111,117,110,96,99,106,102,121,106,116,121,90,111,82,106,114,98,103,119,114,105,103,106,108,105,117,109,110,107,116,105,97,103,110,109,102,95,104,99,99,105,95,113,103,105,96,100,95,104,102,106,118,107,102,98,104,108,112,101,103,118,104,110,80,110,96,98,101,96,108,107,79,117,97,106,104,109,119,99,102,102,87,102,105,103,113,103,106,104,96,105,81,90,91,115,118,98,104,108,92,121,96,108,95,96,113,119,103,117,104,105,100,97,109,98,107,92,91,113,99,117,102,107,112,110,109,105,103,107,122,99,109,105,114,102,99,100,103,118,113,118,103,98,109,114,102,105,103,113,101,102,112,106,109,107,106,95,102,107,106,117,104,98,95,95,106,97,95,115,92,112,114,106,115,105,101,94,93,110,110,112,112,106,119,115,109,100,110,115,100,107,112,100,105,116,94,108,93,91,96,102,94,111,113,99,87,105,98,97,102,91,104,106,112,104,103,104,98,107,98,114,105,102,105,95,91,94,102,112,104,115,98,106,103,102,107,119,113,100,117,119,102,121,110,96,113,98,114,110,108,105,105,124,124,130,142,159,185,192,215,223,230,256,245,266,237,258,242,242,242,218,207,150,159,170,167,160,137,140,103,122,140,103,102,112,111,107,103,118,120,107,117,107,104,96,101,112,95,98,108,101,104,122,99,109,107,104,106,118,109,98,121,92,99,102,99,106,120,113,109,106,120,103,108,108,112,102,116,113,103,101,105,101,105,88,98,103,90,88,106,97,103,114,113,118,65,106,104,104,111,114,110,113,109,113,100,108,108,95,100,107,87,113,96,102,86,113,107,94,103,101,108,109,99,110,101,113,117,114,98,105,112,97,98,109,95,108,114,99,111,103,109,109,95,106,105,99,96,108,117,92,105,115,117,99,111,106,117,116,93,104,95,110,99,108,111,107,108,105,108,106,115,110,103,111,104,104,111,103,112,105,108,106,113,121,105,116,102,104,109,111,105,102,124,108,114,100,99,101,105,107,103,117,100,107,114,96,102,107,105,96,114,107,102,110,103,106,116,106,112,114,106,107,112,109,103,109,105,109,114,107,103,101,101,96,104,110,104,105,114,96,113,129,108,104,99,112,98,114,112,98,103,109,106,105,91,98,102,105,89,100,98,99,97,115,105,115,107,113,105,99,97,110,102,106,115,99,103,113,119,112,112,105,110,101,107,117,75,107,117,119,110,107,99,104,108,99,119,95,88,117,91,125,107,108,113,114,100,107,105,106,116,108,110,109,107,87,103,108,99,102,106,95,96,111,108,102,108,101,91,108,101,99,110,101,105,103,105,97,105,94,105,109,109,103,106,109,104,105,92,105,107,100,104,102,108,104,111,114,100,104,105,90,102,103,127,114,98,103,103,108,113,108,101,99,108,100,109,110,119,107,100,72,104,114,115,102,103,104,104,99,108,115,106,99,105,96,107,113,109,109,110,125,109,105,101,109,103,83,96,100,110,105,108,101,99,95,101,103,103,96,102,104,106,104,107,104,98,90,114,114,109,96,91,106,96,103,112,108,103,105,103,111,107,111,106,110,104,111,80,107,116,105,98,102,109,99,94,102,107,104,98,107,102,111,95,102,103,98,98,99,102,97,101,102,104,101,102,108,109,102,100,113,106,117,107,106,115,105,109,112,104,117,87,98,104,99,122,97,104,110,100,109,102,109,97,93,98,99,103,123,108,97,106,104,105,115,101,101,102,102,94,106,102,108,110,99,105,93,95,100,106,111,104,111,97,109,110,108,94,94,102,114,99,102,98,100,103,95,115,96,103,116,108,108,97,103,101,111,95,99,111,112,105,96,115,95,101,108,107,103,97,108,103,104,100,119,107,112,95,98,97,99,104,105,100,73,110,96,112,111,114,110,88,91,111,111,92,101,108,96,102,113,103,91,103,109,113,100,113,111,101,94,111,99,108,101,104,105,107,116,103,95,109,107,98,102,112,102,98,103,119,96,116,116,110,106,105,124,92,112,106,104,114,104,103,110,101,104,108,110,103,107,94,107,106,112,103,111,98,117,102,107,104,108,105,90,116,102,98,95,89,106,110,104,100,113,112,105,115,104,99,110,110,108,111,111,100,103,122,131,111,102,107,108,100,94,106,107,106,97,107,109,104,113,100,108,104,114,107,109,106,108,103,101,102,102,96,88,104,110,95,94,102,107,111,102,104,106,107,112,96,112,96,109,96,108,99,93,111,119,108,103,112,98,113,112,122,107,113,101,98,93,107,101,105,97,108,97,100,94,96,103,113,114,90,123,108,94,101,106,94,107,97,113,85,100,101,119,98,106,97,104,99,119,103,110,103,117,70,93,99,105,109,105,108,106,96,106,109,110,98,91,105,113,106,115,102,108,106,111,104,112,112,112,102,96,106,95,101,102,103,102,101,86,110,100,90,105,110,98,81,104,112,102,106,111,99,100,93,110,121,109,101,93,99,107,103,112,102,94,108,105,101,105,111,103,101,113,107,99,119,112,104,102,96,98,103,110,120,117,102,109,100,108,105,106,106,109,111,105,107,102,99,108,85,106,104,114,112,101,108,106,118,129,115,113,103,82,98,92,98,105,94,104,127,113,113,104,103,100,114,100,100,102,107,94,104,107,121,117,96,99,111,94,97,110,100,98,107,109,109,106,91,85,100,105,107,119,94,112,108,106,100,109,105,104,105,108,98,97,97,111,115,97,110,100,110,105,107,116,99,119,90,104,112,108,111,111,100,103,111,94,98,108,89,99,114,89,89,105,112,101,96,101,100,121,96,89,107,102,106,117,109,103,107,103,102,99,106,110,80,95,90,102,107,106,102,107,102,110,109,99,104,103,95,103,91,103,95,102,116,107,107,104,99,96,112,95,96,97,108,109,94,102,66,112,97,103,110,110,107,100,103,99,104,94,106,100,100,108,99,93,102,106,108,97,105,105,101,94,97,100,100,108,100,97,109,82,103,105,104,102,103,107,118,98,98,102,107,99,88,105,104,101,101,101,102,98,105,110,113,81,104,109,95,109,105,111,115,100,93,102,109,96,86,106,109,80,116,104,108,87,108,111,100,113,98,89,99,102,93,108,121,105,106,82,99,103, +575.91907,105,96,102,98,113,106,118,102,109,102,108,88,119,91,98,112,117,104,110,108,110,115,106,103,101,101,99,121,105,109,99,98,100,85,109,99,103,104,100,95,99,107,108,113,91,99,106,109,90,102,100,99,104,107,106,94,103,97,93,89,102,105,109,94,99,109,100,111,110,104,101,109,112,103,101,102,106,113,99,106,126,96,95,103,110,92,108,80,114,101,103,115,103,107,114,110,103,108,99,109,100,112,105,99,103,109,100,106,104,106,94,104,100,105,112,104,99,107,100,102,111,109,103,119,108,113,109,105,113,109,100,108,101,96,111,117,110,103,117,104,96,119,109,96,110,85,106,94,101,97,96,98,110,100,93,117,98,98,106,104,99,74,108,103,111,109,104,94,112,97,104,96,114,103,94,105,104,101,103,104,115,109,117,106,105,106,98,92,109,103,95,111,112,95,95,106,99,113,106,104,102,107,114,103,99,104,101,107,118,95,100,114,106,106,110,106,112,83,101,107,111,108,110,108,104,125,116,98,109,110,104,106,103,95,105,95,104,102,112,98,96,117,109,110,113,78,102,107,104,107,97,79,104,107,103,102,105,109,93,110,101,104,103,108,104,111,116,112,103,108,113,114,114,102,107,112,91,107,101,106,109,74,100,108,105,100,97,103,97,95,91,109,113,106,112,105,114,101,106,101,106,102,103,115,108,108,111,111,114,112,115,115,100,120,109,102,103,109,99,95,122,105,111,104,109,95,95,109,117,105,104,109,106,108,108,105,114,98,100,101,108,103,106,107,108,115,89,103,112,123,118,103,119,105,105,110,103,108,107,100,104,101,107,107,96,106,96,105,102,107,76,96,108,90,110,99,113,115,104,112,111,102,106,112,103,106,107,101,117,109,112,91,93,112,105,114,103,103,108,104,106,106,109,113,99,108,109,101,113,99,103,95,114,105,106,94,135,102,112,104,116,111,96,115,96,94,121,94,102,110,94,106,106,127,109,107,114,108,122,111,108,121,106,108,115,107,94,117,104,122,109,107,101,103,112,104,103,95,114,103,78,110,106,113,113,106,105,124,109,103,115,116,111,107,101,101,102,117,113,107,114,85,119,98,108,98,108,112,102,111,112,110,115,112,102,103,99,107,108,111,117,105,107,107,105,121,94,107,108,113,114,113,104,103,96,103,101,118,102,92,103,109,114,105,120,107,106,118,110,101,103,106,112,113,102,122,106,100,103,109,108,102,98,101,109,106,114,102,114,118,93,124,108,85,110,105,104,92,104,109,100,108,104,115,112,92,117,109,112,115,101,113,117,113,112,112,114,107,105,102,103,112,108,112,103,106,114,108,109,99,111,107,103,125,109,111,109,101,112,109,101,105,110,103,91,109,100,108,106,98,105,107,105,110,114,89,108,87,97,101,112,119,120,99,109,114,116,106,124,104,109,113,96,107,108,101,108,112,104,104,107,100,104,111,106,95,107,104,106,110,103,112,86,95,115,108,105,113,107,109,106,107,131,119,115,107,108,100,101,103,119,110,105,112,111,116,112,113,113,105,111,100,116,107,106,116,108,106,107,99,108,112,100,120,109,114,111,110,78,96,121,100,113,114,95,113,116,96,100,98,104,102,110,101,86,100,101,95,103,100,102,81,108,112,99,102,115,112,106,101,115,110,113,105,93,98,116,95,107,97,111,96,110,100,100,97,98,113,109,121,113,101,113,113,95,98,103,117,110,98,102,115,91,108,99,98,108,105,108,103,115,107,108,106,106,114,99,102,105,115,111,119,108,111,98,109,99,121,112,109,109,117,116,107,113,117,100,113,109,105,107,104,92,104,105,96,105,113,110,112,128,93,101,99,110,105,124,102,128,110,88,109,102,111,114,108,108,98,109,90,109,112,111,111,79,112,116,104,102,117,109,103,128,110,123,95,99,104,106,99,112,116,108,112,107,118,114,103,90,118,110,117,119,108,107,104,100,113,118,121,125,107,109,122,112,99,107,103,97,102,103,110,105,121,100,107,105,91,112,96,79,107,103,108,122,98,117,118,113,103,106,120,119,104,106,101,109,108,118,87,100,115,111,112,101,115,104,117,106,119,108,118,113,100,113,111,99,117,111,106,104,91,113,106,117,122,95,106,103,105,120,112,108,112,103,104,104,109,119,103,103,110,105,104,113,102,94,108,121,109,107,117,120,96,106,128,108,113,104,115,90,114,115,103,105,107,107,133,104,107,109,113,111,101,108,101,124,109,104,101,104,104,108,114,111,108,91,111,103,107,130,104,99,106,110,106,115,114,105,105,105,115,105,123,100,114,119,114,111,115,122,109,113,117,131,121,105,116,122,114,128,126,135,108,123,121,134,155,158,193,194,211,236,297,289,260,258,263,248,248,244,207,203,192,171,178,140,150,115,130,116,117,104,105,129,111,111,114,127,106,109,111,108,110,98,133,99,115,94,110,110,105,102,116,92,104,107,112,112,104,99,107,106,113,95,93,105,102,116,106,99,107,102,104,106,112,112,104,117,102,96,116,71,95,106,89,108,81,97,106,100,103,96,106,118,99,89,111,115,104,100,115,102,100,88,116,106,88,108,105,103,95,98,111,93,91,96,98,111,110,112,109,104,102,117,98,110,96,99,110,113,101,104,87,88,113,100,106,104,100,96,113,111,99,101,83,105,108,104,102,103,106,79,101,104,121,120,101,108,81,99,100,118,103,100,107,111,97,102,118,98,107,87,101,106,106,109,112,104,110,107,109,109,112,103,109,103,105,99,89,111,116,109,101,110,93,103,110,121,104,124,87,103,108,101,112,116,88,115,109,104,115,111,100,104,92,107,111,106,104,97,103,105,106,95,117,94,103,102,106,106,99,86,101,104,109,109,101,94,102,104,93,101,121,100,108,118,94,118,119,111,118,111,112,108,100,106,105,110,105,81,101,88,108,104,102,106,83,101,106,105,107,99,112,103,112,99,107,116,106,109,105,109,107,105,125,106,112,107,107,106,114,103,99,109,112,110,119,104,111,107,95,114,115,113,107,98,100,95,102,100,105,104,97,109,96,107,102,125,110,81,111,104,96,105,98,109,92,106,107,106,107,96,110,105,99,98,98,110,89,111,103,109,101,116,102,105,113,100,121,98,108,79,102,112,94,116,97,119,108,90,105,97,110,113,109,97,101,110,106,102,101,105,102,110,99,102,110,93,113,122,102,110,107,105,104,111,99,108,116,106,109,109,102,102,99,100,116,119,95,95,105,110,114,121,117,93,111,99,104,101,107,121,110,116,101,103,113,95,107,93,96,115,102,103,112,110,106,104,109,106,104,99,105,104,112,114,102,107,104,99,106,92,113,116,95,107,102,101,107,92,93,99,107,97,102,109,100,109,103,104,109,113,110,115,106,104,110,110,102,94,114,114,111,110,113,123,120,106,106,92,102,108,107,98,106,103,94,112,96,99,111,110,111,104,117,99,110,116,109,106,108,111,107,114,107,110,107,113,104,108,131,93,113,104,106,115,109,99,101,113,107,102,104,100,99,101,121,95,97,103,100,108,107,104,112,108,101,91,105,110,99,104,104,103,111,100,103,108,100,104,111,103,110,100,95,83,111,112,113,98,106,108,106,90,106,96,98,95,96,108,89,102,104,111,104,95,102,107,98,84,98,103,113,112,106,107,104,88,98,101,112,111,95,103,96,104,107,106,113,104,103,106,107,103,109,113,105,112,94,99,97,92,104,100,100,116,110,108,113,113,98,101,95,103,93,112,129,106,100,98,107,105,116,106,96,100,95,106,98,102,109,113,106,104,106,108,91,109,102,106,117,107,109,105,100,108,77,107,116,108,107,106,103,98,115,106,101,121,101,96,108,99,104,106,113,105,113,119,101,103,92,112,99,106,102,95,97,108,106,95,109,112,110,99,105,103,108,116,99,102,108,109,106,113,104,104,100,92,113,96,108,94,100,112,128,101,100,114,105,67,105,102,99,105,107,100,115,100,113,106,112,98,88,106,111,104,100,109,98,106,101,106,98,94,104,78,100,98,88,93,117,111,95,109,108,106,105,106,99,107,98,106,102,99,97,103,110,105,105,98,108,111,108,102,111,104,105,119,107,111,100,87,99,110,107,98,102,107,106,107,91,104,100,95,110,109,103,97,104,106,101,100,106,105,102,104,104,96,103,100,103,103,107,110,100,95,111,116,108,99,100,108,97,110,101,112,105,98,95,106,113,109,107,106,106,110,121,90,100,106,105,109,96,102,113,99,94,107,97,115,112,107,111,104,116,110,95,115,90,110,103,106,104,105,99,99,112,98,101,103,100,112,105,101,108,92,119,101,104,99,97,113,94,106,106,105,104,101,106,101,106,104,109,104,105,105,108,109,110,103,123,121,106,91,99,103,105,112,114,102,97,107,112,100,110,84,95,104,101,117,101,111,96,107,87,109,111,105,118,107,108,107,116,98,103,94,105,94,116,98,93,99,122,113,108,113,106,104,89,95,102,103,106,95,100,94,113,102,99,98,97,97,105,95,109,99,109,112,97,110,121,106,93,100,107,98,101,91,103,96,98,111,97,102,108,104,101,105,107,78,101,106,87,112,105,108,103,100,110,98,102,98,109,101,102,112,103,101,105,98,100,106,95,101,107,107,99,102,97,70,100,96,105,100,96,110,98,105,98,111,96,102,105,106,96,105,112,119,117,86,92,104,106,97,96,106,99,100,121,118,98,98,110,100,108,101,100,105,102,94,102,113,111,109,93,100,101,116,106,104,90,111,98,113,109,123,101,110,98,94,100,104,105,96,106,100,103,107,101,98,105,102,107,113,99,109,104,95,99,98,109,99,108,87,104,97,113,113,98,107,100,102,109,106,90,92,113,80,78,111,103,104,96,98,96,108,113,103,89, +576.06,107,103,96,108,101,102,116,100,85,93,102,101,94,108,104,115,95,111,96,102,87,95,101,104,107,99,106,110,91,108,104,117,115,99,118,122,125,109,105,83,91,98,97,84,94,121,104,107,114,117,103,110,105,122,102,109,87,94,110,98,120,99,100,114,93,110,98,113,111,102,113,104,102,92,106,104,97,92,127,98,118,99,98,101,104,106,107,105,96,111,97,100,95,104,86,99,99,105,103,75,83,104,108,91,96,102,110,91,99,83,91,89,111,118,103,95,106,110,110,113,103,106,99,107,97,108,103,123,109,113,101,105,97,103,120,97,104,110,98,102,107,109,98,87,104,100,110,114,99,110,95,97,120,117,73,106,117,98,99,110,105,109,92,103,103,113,104,90,117,98,96,108,108,109,102,98,101,98,119,100,102,109,102,106,116,92,117,85,105,99,106,101,109,97,104,106,110,100,113,93,109,111,118,119,102,110,111,112,114,109,99,106,110,105,112,97,107,105,109,101,106,108,114,94,101,94,118,95,100,90,119,114,105,99,100,99,103,126,83,106,106,104,117,112,95,102,109,91,100,110,87,112,104,97,99,104,100,111,122,98,96,107,91,111,87,112,107,105,101,98,112,117,103,99,112,102,103,117,105,100,104,107,96,99,107,121,92,115,99,110,88,99,109,95,105,112,100,99,104,101,98,97,111,114,86,102,110,105,104,109,90,113,77,114,103,98,103,103,105,104,112,109,96,104,104,97,97,100,108,107,117,102,101,109,110,108,101,98,108,102,106,93,106,89,103,105,111,102,106,109,110,118,113,103,97,116,92,112,117,119,99,112,104,93,101,102,105,105,107,106,108,104,116,101,104,99,101,108,104,111,109,113,96,102,108,94,102,97,99,108,115,100,96,117,104,109,99,107,102,98,106,107,92,106,99,111,103,112,105,106,106,100,95,111,102,95,107,107,107,104,103,107,133,100,100,98,108,89,100,106,90,108,120,103,111,107,94,108,105,100,106,103,110,105,102,114,105,106,103,116,107,105,117,107,100,105,101,107,101,95,106,98,98,107,108,107,96,91,104,102,108,104,104,102,98,92,101,109,105,112,98,96,121,109,108,102,114,98,100,99,90,95,109,117,113,113,96,103,101,98,106,108,105,100,100,112,91,107,94,118,100,102,90,107,104,96,116,105,111,97,107,109,110,112,110,103,104,103,109,104,106,117,93,90,114,108,98,101,107,110,86,103,114,110,107,100,107,109,104,110,109,111,99,104,96,85,98,100,110,98,95,107,93,116,101,92,103,103,97,99,99,108,100,109,105,107,109,126,103,103,101,92,106,92,111,89,102,105,112,96,105,104,111,96,107,88,103,90,104,90,106,124,110,89,91,105,101,102,90,102,95,101,103,104,108,108,107,109,109,107,108,109,105,103,107,102,97,111,109,113,97,97,95,93,101,94,107,105,106,80,113,115,100,110,105,104,103,99,102,94,110,95,98,103,95,112,99,110,84,90,103,98,98,103,96,102,117,103,94,99,98,101,100,125,98,96,124,95,101,106,105,119,112,104,98,99,107,114,100,109,102,107,93,94,100,98,110,108,87,96,108,82,93,86,109,107,104,103,105,112,107,105,103,97,105,102,97,96,103,95,111,102,113,96,118,114,102,111,100,109,95,105,108,107,91,109,91,103,116,94,113,106,111,106,117,97,105,89,104,104,97,105,103,98,111,109,110,102,104,117,106,98,100,107,84,110,104,98,93,99,105,107,102,106,109,112,97,104,103,104,114,99,95,96,94,119,117,101,105,103,109,103,125,117,104,102,110,91,106,99,101,99,106,98,111,104,112,109,110,95,120,107,101,118,114,98,114,109,109,106,111,98,102,103,107,114,108,97,103,105,87,98,95,114,114,105,102,103,104,105,101,106,111,111,97,104,101,109,109,104,109,94,101,108,113,109,118,103,94,104,122,121,118,108,106,91,97,108,103,109,104,113,98,101,103,100,113,89,109,99,111,110,110,144,126,98,93,116,126,101,131,105,108,110,115,96,108,116,105,96,103,90,119,109,100,98,88,95,100,110,107,102,115,111,98,95,97,104,90,102,105,113,100,88,104,96,115,85,105,105,108,116,105,107,98,72,98,101,105,112,108,91,109,93,115,77,103,112,98,97,106,104,116,112,89,114,90,110,106,110,92,113,97,101,101,105,99,98,110,105,106,106,101,100,113,105,104,104,96,109,105,114,104,106,65,100,104,103,102,106,109,109,103,99,105,99,111,105,108,93,97,102,100,106,111,95,95,107,117,117,94,105,104,105,103,100,104,98,116,108,112,112,109,102,104,113,122,140,113,110,94,120,101,124,132,110,134,167,152,155,204,212,238,250,236,280,229,229,211,252,199,206,189,181,165,173,154,143,143,154,118,113,110,134,112,121,131,108,111,98,105,123,97,111,111,114,111,108,112,100,117,112,96,104,108,103,110,103,139,116,109,107,105,102,111,104,109,108,110,104,110,96,119,119,104,106,112,105,100,101,111,109,108,117,114,87,99,99,112,125,106,102,114,105,100,98,125,117,102,110,106,107,107,86,111,112,113,99,109,109,109,102,100,116,102,101,107,94,110,106,102,98,115,98,111,103,101,109,109,107,112,100,108,110,85,105,107,102,113,86,95,113,104,107,99,109,95,104,103,104,135,126,105,99,105,103,103,104,114,121,97,82,113,115,112,113,109,102,99,107,102,102,79,109,113,103,116,113,103,115,106,105,117,104,103,111,103,94,115,100,107,102,99,107,106,109,101,106,98,110,104,116,100,91,102,99,123,106,109,109,120,116,105,103,114,99,105,111,115,116,112,102,108,103,103,107,114,107,108,120,99,99,102,118,114,102,138,102,103,120,106,105,106,113,108,116,98,104,111,107,104,115,104,107,114,116,110,107,105,106,103,110,101,101,99,109,102,108,95,102,104,101,107,107,109,107,111,105,103,96,106,109,97,98,110,109,106,99,103,113,113,107,109,122,117,111,108,105,106,111,101,102,109,106,116,99,95,107,109,86,106,107,112,102,97,104,111,111,117,108,108,110,99,103,100,97,108,109,90,101,116,105,113,104,112,107,104,108,98,104,108,111,110,108,101,92,111,109,108,96,107,91,133,109,107,95,102,114,112,108,91,102,109,92,105,104,112,97,116,131,106,94,98,104,102,97,68,115,101,108,94,113,110,109,107,96,97,105,107,93,73,112,110,108,99,100,89,105,120,105,106,104,111,105,114,100,97,113,106,106,106,106,105,106,113,105,108,99,111,115,102,99,95,102,102,112,110,103,113,101,113,116,121,108,103,104,96,106,111,115,100,117,95,100,117,113,103,108,112,108,115,105,107,109,106,110,98,103,102,99,111,92,110,101,110,110,113,100,101,99,106,105,112,108,101,105,125,100,113,115,113,105,106,103,106,114,110,111,103,93,115,108,101,120,102,91,107,106,107,109,93,102,105,111,113,112,117,106,107,126,101,103,100,112,109,115,110,109,99,104,106,98,109,107,102,107,94,120,100,114,113,114,99,99,111,107,109,110,102,115,119,109,114,98,100,113,108,117,106,105,115,95,100,111,104,103,113,102,95,104,109,112,112,108,106,100,103,120,134,95,100,103,104,117,113,92,113,109,112,115,98,104,103,110,111,110,99,110,111,102,105,112,103,107,102,104,108,100,110,107,107,111,85,116,126,104,105,102,115,93,103,99,103,105,107,102,103,118,98,109,104,108,93,108,110,116,104,105,109,101,121,94,114,88,107,92,95,97,119,99,113,107,101,101,120,104,107,115,102,113,100,97,91,109,101,105,80,104,96,106,104,109,117,101,123,110,108,104,112,121,105,117,105,109,120,105,100,104,104,109,96,107,127,88,115,98,101,109,99,121,104,89,121,113,103,111,103,105,107,103,108,105,106,109,114,116,98,105,101,112,113,105,101,107,104,109,110,116,113,95,104,112,107,121,118,98,107,95,109,117,104,110,97,113,134,94,104,106,112,90,116,116,104,91,108,93,110,103,104,107,106,96,112,98,111,111,102,118,119,94,107,99,102,104,107,107,101,117,102,105,99,107,104,102,101,111,103,102,106,108,103,97,107,103,109,101,116,103,113,103,107,101,104,104,103,108,100,112,107,95,106,107,107,102,104,106,117,85,103,111,106,109,109,79,114,107,109,87,99,99,100,109,124,104,101,101,90,97,99,115,117,108,112,103,106,109,92,114,113,103,107,94,114,105,100,103,105,122,107,99,97,98,116,111,107,108,100,107,108,104,112,100,113,91,106,113,86,98,102,111,111,100,115,106,114,90,104,114,104,105,115,103,99,104,105,96,110,112,108,107,99,117,104,113,106,112,102,106,108,113,107,113,112,87,96,104,102,110,116,102,105,108,109,127,102,122,105,110,108,101,104,95,99,90,99,95,98,106,97,94,106,113,99,115,112,101,108,129,103,104,105,99,101,113,111,109,104,104,96,104,108,107,94,101,110,110,102,100,111,105,88,104,109,108,106,115,107,110,110,100,113,106,109,100,107,116,98,101,119,105,101,106,109,104,109,106,116,94,88,95,104,104,107,101,112,112,102,90,99,102,96,95,94,113,93,117,105,115,97,101,106,109,110,100,100,109,107,109,104,106,100,100,102,116,99,107,115,111,108,106,105,94,97,106,105,96,98,104,101,85,113,113,111,91,101,112,108,108,90,97,113,103,98,96,106,108,109,103,108,115,99,111,96,104,113,100,113,101,96,104,103,97,104,113,105,106,101,104,100,112,102,105,118,95,108,94,107,102,105,102,92,106,106,98,108,107,103,105,98,115,110,90,103,105,100,109,92,101,112,96,118,110,120,108,124,105,99,116,93,102,109,100,108,109,105,107,113,94,102,95, +576.20093,100,94,98,98,115,102,102,94,100,103,101,102,112,99,106,106,112,114,114,89,105,104,121,91,103,100,107,89,99,97,99,109,110,103,100,99,119,106,98,105,104,104,102,97,91,117,109,111,110,99,106,83,106,99,99,101,115,68,108,101,94,108,109,102,112,104,114,101,103,103,104,117,109,99,113,106,97,113,100,98,106,110,108,96,102,105,101,106,106,99,104,104,100,83,98,111,112,106,100,101,110,109,101,96,72,108,115,103,106,109,110,82,106,89,110,105,100,104,115,97,113,104,117,101,110,108,116,84,111,100,117,98,108,110,104,103,110,96,109,99,110,108,104,101,102,107,114,110,100,101,106,93,106,91,97,112,113,94,95,103,100,103,117,104,104,96,99,98,122,104,101,95,102,95,103,109,97,97,116,101,99,108,113,113,99,110,111,110,116,96,99,104,106,105,107,110,104,113,87,122,99,112,102,105,108,117,79,108,122,105,98,102,98,111,114,113,110,108,104,100,100,109,109,106,99,93,113,99,105,106,86,98,104,112,105,105,98,114,106,106,106,116,116,110,95,101,115,109,111,111,111,104,87,112,104,98,104,99,104,110,105,98,113,94,103,107,114,109,100,115,101,105,113,106,107,99,108,100,99,106,101,99,99,98,119,106,104,125,99,111,112,96,101,101,110,108,114,97,102,112,94,103,105,103,103,117,112,113,113,114,71,109,110,101,108,110,93,104,113,92,106,99,109,105,104,104,105,97,100,103,118,100,111,102,107,100,109,102,99,99,95,105,106,100,114,100,104,96,107,103,106,103,100,107,107,109,115,109,100,106,110,100,99,96,98,102,114,107,110,104,111,103,110,111,102,105,104,103,99,98,117,91,110,97,104,98,107,111,111,92,119,108,109,102,111,95,108,100,107,117,114,99,117,113,109,102,107,105,103,99,104,108,105,108,110,107,101,111,117,99,94,112,110,104,103,87,100,106,110,114,110,94,102,100,100,112,113,114,103,111,107,112,106,110,100,100,107,105,102,106,100,109,100,111,115,90,108,113,113,107,102,102,114,111,96,106,117,106,105,104,104,119,95,100,101,101,95,131,108,96,102,105,100,87,109,109,111,109,98,112,93,106,104,103,91,113,107,104,106,99,104,92,116,107,109,108,106,100,103,124,110,111,113,109,117,108,116,102,113,102,116,104,102,112,75,104,114,111,109,105,100,115,110,108,90,106,103,106,99,108,105,103,94,101,112,94,103,103,98,107,83,103,102,92,102,100,97,105,99,100,110,109,97,104,94,107,100,108,111,92,95,93,119,99,106,102,101,104,99,107,104,99,102,101,112,109,114,106,105,108,100,116,105,92,107,112,92,105,111,104,111,112,90,103,100,103,106,105,98,98,111,96,92,94,102,100,98,100,108,100,123,108,98,96,119,122,102,103,103,106,95,111,98,89,94,94,106,94,107,105,116,106,105,111,101,103,104,94,95,98,104,110,110,100,112,101,107,104,104,104,107,115,105,109,104,108,99,99,96,104,105,107,88,119,99,111,95,99,104,96,109,102,109,96,106,102,105,94,91,112,113,110,102,111,105,106,105,111,97,95,104,105,103,106,109,97,129,111,98,105,106,107,109,95,99,109,80,100,100,110,115,100,98,115,104,94,100,94,102,109,97,105,84,88,92,99,114,105,87,100,121,99,95,103,103,108,103,108,96,104,113,88,112,117,105,135,112,104,102,107,99,100,99,106,104,110,91,113,94,108,104,112,93,102,107,111,108,106,100,92,104,100,107,104,110,107,105,107,114,96,108,104,99,116,104,108,113,100,101,99,112,118,113,113,100,107,116,116,110,106,115,99,103,103,106,105,115,103,105,98,95,112,102,108,95,103,109,113,111,111,108,101,113,104,96,115,97,106,94,116,107,95,111,109,105,99,100,98,111,106,106,97,102,105,111,107,114,93,106,94,90,104,99,111,104,106,86,104,118,108,100,96,124,99,90,112,117,109,100,101,96,114,96,109,103,116,96,108,87,103,104,112,100,115,106,102,105,106,108,103,105,115,124,114,102,104,104,110,106,103,94,108,108,106,112,104,106,115,98,104,102,106,105,110,97,100,117,109,92,111,103,103,104,107,105,98,104,103,112,105,103,106,106,122,92,98,98,112,91,116,104,109,115,103,108,102,106,103,104,109,108,99,90,94,105,110,97,124,97,108,107,106,109,99,100,104,103,109,111,111,95,119,109,105,99,100,105,108,111,104,110,110,110,105,100,106,93,101,95,104,111,111,111,102,109,107,116,113,103,103,105,113,108,92,114,102,103,121,108,115,117,117,111,105,117,128,112,105,127,126,109,118,123,113,115,123,122,157,142,177,233,224,247,290,271,273,258,246,228,253,227,213,200,189,172,141,145,137,132,130,121,107,113,132,103,96,85,119,108,94,116,125,98,118,107,127,109,96,110,110,113,112,103,107,117,106,112,102,80,106,95,100,106,97,104,107,120,110,107,106,93,104,107,121,113,103,96,102,109,114,98,106,106,91,106,99,106,106,108,102,109,112,109,113,111,100,103,108,109,94,113,108,102,94,120,108,106,105,113,96,88,95,102,109,95,106,112,98,104,110,111,104,106,98,109,101,110,105,104,111,116,101,99,95,105,123,98,106,98,94,113,106,117,101,108,95,120,103,106,106,104,98,96,99,102,113,116,105,105,106,100,110,100,100,109,93,112,106,97,119,102,119,102,97,100,107,106,103,102,103,108,108,107,107,111,117,101,114,103,107,121,96,104,103,107,107,107,102,110,103,115,103,97,106,111,113,104,105,124,113,113,98,108,98,109,101,111,108,106,110,107,113,103,107,112,106,91,115,102,110,95,104,102,112,110,100,113,97,102,106,102,119,100,110,101,75,112,106,100,106,104,99,116,99,98,113,103,105,99,104,106,85,113,110,107,113,107,102,108,103,104,120,85,110,105,103,103,112,99,107,93,116,104,105,112,102,94,98,116,108,111,123,100,103,102,106,102,105,121,112,113,99,107,105,110,112,102,98,111,111,106,104,102,110,77,98,116,109,113,95,99,105,99,121,96,106,111,94,110,96,104,112,113,110,103,103,106,106,98,106,116,100,97,105,103,90,105,97,106,105,109,114,98,103,90,94,103,100,93,107,94,101,100,102,113,111,103,112,111,106,117,111,104,106,106,107,98,107,99,109,74,102,110,97,105,103,109,107,106,99,103,116,100,95,99,99,113,95,93,107,130,112,95,100,105,89,100,112,104,106,103,100,113,103,107,103,111,101,92,100,99,140,98,117,108,103,106,102,110,112,95,103,104,104,106,110,102,106,104,103,93,107,109,101,102,107,105,103,112,105,78,134,119,108,103,103,97,114,112,107,99,109,101,108,108,98,117,109,108,105,106,103,114,108,119,109,106,99,107,102,108,98,110,92,106,102,112,105,99,97,120,97,112,112,95,101,108,102,99,101,109,103,97,100,114,102,92,128,111,106,110,115,106,108,110,109,124,98,96,97,108,117,106,114,109,115,112,113,107,100,97,106,106,101,94,106,102,103,99,97,99,97,105,99,99,108,95,111,106,99,98,113,93,115,113,107,98,116,114,114,106,103,98,110,98,102,110,118,118,106,103,107,110,113,112,106,99,84,105,110,105,110,96,106,106,99,97,105,105,106,85,92,116,104,105,101,101,109,99,102,106,93,98,100,108,111,105,101,107,90,111,114,105,105,103,114,99,102,111,104,116,110,108,96,105,112,111,102,109,105,102,111,108,110,111,102,116,107,103,99,113,109,93,103,102,117,110,104,96,101,114,101,109,105,115,114,95,92,100,99,100,96,107,104,95,97,102,107,116,112,101,106,115,86,103,108,105,101,101,104,104,97,96,104,98,110,104,95,102,106,106,104,102,100,111,105,115,109,99,105,102,88,110,105,101,99,107,113,118,108,106,91,102,98,99,109,104,116,96,92,112,108,103,103,112,109,117,102,99,101,110,99,103,100,115,97,101,113,85,109,103,108,91,102,102,109,108,110,113,106,106,109,105,108,109,111,102,104,103,108,116,103,98,109,96,108,108,102,99,101,105,107,101,100,109,112,102,108,101,109,104,109,95,100,96,116,103,103,104,99,104,96,95,106,95,109,104,113,107,102,99,93,99,113,108,98,114,113,98,103,120,111,89,109,102,102,92,105,106,94,112,94,102,107,99,100,68,93,99,107,107,86,112,112,98,95,109,106,113,98,105,96,104,106,94,77,93,104,111,95,109,106,120,96,106,95,98,100,101,98,106,105,103,92,115,108,104,111,106,123,80,82,137,115,108,107,113,106,103,106,108,81,109,110,105,106,116,110,108,115,107,102,128,109,109,104,107,102,97,107,104,101,112,99,100,89,113,108,92,92,103,92,100,99,90,103,100,104,111,103,112,111,90,110,104,99,69,117,100,107,85,114,100,106,102,93,103,92,95,123,101,96,111,111,106,103,109,99,99,95,118,98,101,99,91,113,114,106,103,100,109,103,99,105,100,109,103,116,100,105,111,98,92,104,110,97,101,118,111,112,106,106,108,86,113,111,113,104,94,97,104,100,103,108,111,100,110,103,105,107,97,107,102,109,108,111,102,100,103,113,98,106,98,111,107,97,112,103,102,104,100,91,106,111,106,108,102,110,97,105,105,109,105,119,102,109,96,118,101,89,100,116,99,95,103,90,106,99,117,98,91,101,91,109,101,103,99,114,115,98,110,105,116,105,105,111,102,99,119,98,102,90,109,116,113,92,113,100,109,106,108,103,98,112,109,102,102,113,96,93,109,81,106,113,104,115,93,114,100,112,103,120,105,106,96,95,72,90,120,106,106,101,117,111,110,105,98,108,93,115,112,98,115,98,106,101,99,101,112,114, +576.34186,103,105,82,85,99,107,106,88,99,100,108,99,98,112,106,94,102,102,85,89,98,89,100,103,99,106,98,106,103,91,103,92,87,113,110,102,91,103,108,99,99,99,112,121,103,108,106,107,89,103,103,111,94,97,107,101,102,96,116,88,100,99,93,113,109,89,102,95,112,114,109,100,98,102,101,107,85,136,110,90,118,107,108,114,112,109,98,103,99,96,107,110,107,100,95,100,105,101,113,106,117,95,108,114,115,94,106,102,101,76,114,96,109,111,114,114,97,116,101,103,101,106,106,108,103,101,104,104,111,109,111,112,101,107,89,108,92,99,108,104,97,103,105,102,97,102,99,103,99,89,98,110,110,96,91,108,96,93,99,98,110,104,100,122,109,110,103,102,116,103,107,101,97,98,118,105,101,100,111,103,97,103,100,95,106,116,99,102,105,98,104,100,98,99,105,107,96,100,100,107,108,104,74,93,89,114,109,101,109,105,108,101,106,112,96,110,100,123,103,106,114,106,98,103,93,106,109,109,109,109,101,110,110,107,107,105,91,109,111,125,99,95,115,109,100,99,111,113,108,96,104,109,104,95,104,110,101,107,90,104,105,100,106,102,101,108,104,106,110,99,98,109,109,99,108,98,102,115,100,91,106,124,114,115,105,103,91,95,113,104,98,124,98,105,106,99,100,102,104,111,105,111,97,106,107,104,113,99,114,106,101,112,113,106,92,95,97,104,104,112,101,103,121,106,107,128,105,112,113,104,96,107,105,102,97,99,103,121,93,105,90,103,110,106,95,95,99,107,113,105,104,103,108,112,109,106,103,109,100,117,95,136,101,97,95,103,104,106,102,99,101,102,116,100,108,100,96,107,110,99,113,123,104,113,113,100,108,102,96,96,120,101,111,104,115,94,104,114,96,108,101,116,97,100,100,98,113,107,98,109,97,88,110,104,103,104,94,109,105,97,103,95,100,112,108,98,108,94,104,103,101,106,105,100,102,97,107,103,101,103,114,101,72,104,111,100,108,106,109,109,100,116,101,114,110,95,98,99,102,94,102,103,98,110,112,100,97,100,103,96,108,100,104,107,108,109,100,104,101,116,104,117,102,90,112,98,110,100,112,104,109,116,101,108,94,109,105,102,98,97,98,102,107,105,109,113,102,109,114,107,129,110,103,120,111,104,110,106,113,102,114,110,101,100,117,108,99,99,96,100,108,100,95,103,110,110,87,106,105,104,107,97,114,101,104,100,90,103,97,103,100,113,108,106,103,109,104,99,113,95,100,90,99,104,99,105,110,112,95,104,95,107,97,92,109,100,100,100,102,104,106,109,98,104,111,102,117,105,102,112,99,102,88,129,112,105,96,117,112,100,109,103,90,102,96,91,106,108,105,117,103,91,99,108,100,98,122,107,103,114,120,111,91,102,97,105,103,108,102,106,108,104,97,111,97,107,108,91,97,100,110,107,91,121,101,99,101,101,117,130,107,112,114,101,105,105,106,110,87,102,109,112,104,116,93,101,105,109,112,99,113,113,113,91,113,107,102,81,102,101,126,84,111,104,113,99,98,100,108,109,107,107,100,117,102,102,102,118,96,96,114,74,105,107,110,91,109,110,100,110,106,113,89,103,98,104,101,102,107,108,97,100,103,129,97,110,104,96,101,110,105,102,113,109,100,99,98,102,106,104,118,101,98,114,101,105,92,115,97,103,103,99,111,109,103,101,107,101,110,101,95,118,101,113,125,101,107,115,113,100,106,118,113,109,116,103,109,108,108,95,109,117,107,109,101,102,106,106,106,73,108,115,108,112,109,99,107,96,105,111,103,98,82,111,120,100,114,110,100,99,116,101,101,105,120,97,112,86,105,122,103,104,94,97,99,102,100,111,94,109,110,93,108,101,100,110,108,114,104,107,106,109,116,100,116,101,102,93,100,102,108,98,83,92,105,78,112,109,100,110,101,114,123,107,89,109,103,111,94,98,109,96,106,103,98,112,108,95,109,105,103,109,105,99,95,114,101,96,108,101,108,113,106,108,79,98,114,110,100,99,100,108,116,101,103,101,104,105,109,90,107,93,105,101,96,107,113,107,103,95,104,108,112,115,87,112,100,87,106,102,107,112,114,108,109,104,98,100,104,90,95,104,103,109,88,115,114,104,117,96,110,94,118,101,104,96,101,121,91,119,110,120,97,108,123,68,106,107,101,107,95,104,101,101,105,86,99,99,100,103,104,107,107,112,92,103,104,93,100,95,96,104,106,120,105,111,104,112,109,113,106,107,134,95,109,103,101,111,115,104,102,111,111,100,94,125,106,103,116,114,127,101,114,122,109,109,119,113,96,117,117,120,109,108,117,124,117,145,160,148,178,222,221,253,277,233,258,211,245,273,221,208,220,172,159,159,153,150,123,102,123,125,112,124,106,104,113,102,106,112,102,113,115,102,103,112,102,121,96,72,103,117,107,129,96,116,112,116,112,109,116,108,107,98,105,96,106,98,102,112,110,105,112,101,105,106,96,109,94,106,98,122,111,99,105,99,107,115,107,117,99,109,101,105,103,111,101,94,106,102,99,122,93,102,110,109,104,101,110,108,114,103,101,114,97,98,101,93,100,88,103,107,121,98,100,106,91,105,100,105,102,127,103,90,109,101,100,94,108,105,105,105,96,110,111,107,110,110,117,109,94,109,98,104,111,106,112,105,112,104,89,102,108,102,106,103,118,101,106,107,105,112,106,102,102,117,108,103,111,110,107,105,112,108,113,100,115,119,117,110,103,117,106,103,108,109,108,124,106,99,117,112,108,108,113,111,108,112,108,110,111,106,106,112,110,117,103,104,97,106,102,120,108,101,94,113,106,120,95,104,109,97,110,104,113,110,108,109,110,110,122,105,106,97,102,112,106,104,106,114,120,117,107,111,107,104,107,100,105,121,98,106,113,100,123,108,103,101,111,113,102,113,86,105,124,101,107,121,102,100,109,116,110,106,114,114,104,101,117,109,112,100,97,103,110,106,102,105,108,100,106,105,106,111,112,97,108,104,107,107,103,97,109,90,105,80,110,98,102,108,103,110,97,107,109,102,109,109,99,97,111,120,121,108,114,101,114,101,85,99,104,107,97,89,110,91,94,106,111,94,114,111,105,116,110,100,117,104,107,107,95,108,115,102,96,108,110,112,106,105,104,101,100,109,102,102,109,108,103,106,102,97,109,106,99,92,107,93,110,109,93,113,105,108,109,104,113,121,107,124,109,109,103,114,112,113,91,105,100,93,124,97,123,104,109,108,106,107,117,114,109,113,99,113,112,102,107,107,105,127,111,108,100,105,105,98,109,112,108,88,101,98,108,118,103,97,108,101,103,102,105,109,112,111,102,107,87,120,107,101,102,108,109,105,102,106,98,104,97,105,103,103,109,121,107,109,103,101,103,115,100,118,105,98,108,106,100,107,92,110,110,107,102,101,128,105,109,102,106,100,105,98,113,92,106,99,109,103,104,106,103,134,98,110,115,107,116,105,106,108,100,101,104,119,106,99,108,91,99,102,111,112,110,109,110,107,118,111,120,108,105,102,113,108,105,107,106,112,111,113,98,107,107,106,101,101,106,103,113,113,88,112,106,99,108,106,106,109,110,108,113,92,121,109,96,96,100,95,104,103,100,100,103,119,97,108,104,102,111,115,110,109,122,120,122,103,98,109,108,95,110,105,100,100,108,117,110,100,102,99,104,99,102,102,113,98,104,86,109,105,103,81,103,104,111,109,125,102,113,111,99,101,111,101,103,105,114,109,110,99,99,109,97,112,122,102,108,101,109,112,128,113,107,102,109,101,104,101,98,96,95,111,87,115,109,96,104,106,113,119,100,111,106,101,111,103,104,107,94,90,104,108,111,104,108,103,110,105,101,105,108,107,95,106,104,107,117,112,101,113,104,96,95,107,96,103,120,109,112,104,100,105,103,103,98,108,108,103,106,103,101,111,100,92,114,100,114,115,104,106,101,115,116,113,108,94,83,101,107,104,108,98,105,116,106,114,108,98,108,98,100,102,91,95,114,115,102,121,113,94,104,105,110,118,101,105,108,104,109,93,108,110,114,115,100,112,103,110,112,102,100,107,109,117,128,101,92,113,109,98,96,103,96,107,100,98,116,100,125,107,113,113,100,109,107,86,86,97,108,103,105,111,106,109,93,100,92,96,107,88,131,106,94,103,102,107,111,104,124,104,112,115,112,113,104,108,108,103,102,100,102,98,106,109,107,107,107,109,105,99,96,112,116,92,114,117,101,105,97,126,108,100,112,97,100,109,107,103,108,115,90,101,105,105,102,102,106,104,112,86,110,107,109,100,101,86,109,109,78,91,110,105,113,111,84,107,109,98,109,110,100,113,106,112,101,103,107,102,112,78,106,105,108,99,100,113,97,109,90,100,109,113,106,69,108,107,103,99,100,111,98,101,100,93,101,96,103,107,114,103,91,114,108,104,104,114,109,103,98,98,96,87,97,86,98,113,112,86,114,121,116,94,111,102,104,110,75,104,106,103,99,104,94,109,108,99,104,84,104,103,93,118,99,104,105,109,104,103,100,92,111,103,98,94,109,106,97,105,106,113,105,104,106,101,99,103,102,108,106,107,105,104,99,100,119,88,114,103,97,110,98,101,107,97,109,112,105,102,98,88,103,102,101,95,103,95,111,102,109,100,109,117,113,109,110,104,99,91,97,96,99,97,100,102,92,108,100,100,106,94,118,104,105,99,107,104,113,115,106,95,98,108,99,104,102,104,111,96,104,106,114,104,97,111,100,103,89,106,103,94,113,100,96,113,106,106,102,98,87,107,109,108,113,102,109,110,97,96,104,98,119,103,121,104,110,105,96,88,94,92,110,99,115,128,107,97,100,109,95,95, +576.48285,99,98,116,108,98,106,102,113,101,104,88,99,110,89,107,102,98,117,115,88,115,123,104,98,95,115,108,92,101,115,101,92,107,108,99,104,95,106,102,107,100,110,113,101,113,115,97,110,104,107,105,91,107,98,107,99,96,99,119,99,109,113,117,114,105,108,92,96,71,109,109,90,90,107,99,117,102,99,109,110,98,100,105,101,95,104,124,95,109,97,110,99,96,106,109,103,100,108,96,103,97,106,103,105,110,101,116,117,105,109,110,104,110,98,113,104,123,109,109,108,100,109,114,104,108,113,101,93,109,112,107,106,105,112,99,105,99,87,96,100,104,99,113,102,114,96,106,113,95,77,101,107,106,103,100,103,106,99,104,101,90,106,117,94,108,87,105,104,104,111,107,100,101,99,110,106,101,95,112,109,100,89,114,116,91,107,106,91,109,109,110,111,95,96,105,106,114,104,104,97,115,107,106,96,94,112,100,104,110,108,105,105,110,111,100,107,96,109,122,105,103,112,104,110,98,105,121,104,110,98,93,100,109,105,101,109,104,97,112,101,99,106,104,106,101,111,113,98,106,105,106,100,98,101,95,107,105,120,115,101,98,97,105,125,84,104,112,108,98,107,109,105,104,106,101,105,102,108,110,110,133,116,101,98,104,110,85,115,117,104,99,101,106,108,114,107,95,111,100,105,98,104,102,110,99,109,119,113,109,106,106,103,98,107,116,104,104,105,106,101,110,98,118,99,111,103,106,92,86,104,111,111,99,102,110,113,99,95,109,102,112,96,101,100,118,107,106,108,113,98,119,110,103,110,111,118,105,99,108,102,103,116,94,116,106,103,120,103,108,101,109,121,102,107,104,111,109,97,110,109,109,118,104,116,107,113,105,97,105,99,115,80,101,117,105,100,94,100,90,105,87,99,102,98,115,105,108,95,116,95,115,113,108,106,103,99,117,93,110,116,93,105,103,100,94,100,98,100,108,107,103,102,109,98,103,106,94,106,102,92,118,105,113,112,92,97,102,113,114,113,110,98,111,109,110,113,98,137,104,116,107,105,126,103,107,107,112,101,104,113,113,102,97,110,108,112,92,113,116,101,105,106,109,106,113,112,106,109,101,102,103,118,105,106,108,110,113,112,105,104,96,117,99,101,103,78,92,109,122,113,116,108,103,107,109,100,113,104,98,98,106,119,106,94,103,100,114,118,117,111,101,102,105,95,99,110,100,104,98,103,95,96,106,94,109,105,101,108,109,104,106,123,98,106,106,121,98,109,112,101,107,100,110,108,112,98,102,101,113,63,95,95,94,108,104,110,113,101,110,107,112,105,116,105,113,96,107,113,113,105,103,103,104,109,116,104,113,113,100,120,111,99,117,80,107,95,95,109,111,95,108,114,106,93,104,104,111,109,106,104,100,105,111,98,113,100,103,103,100,107,109,112,120,106,99,99,109,109,102,93,125,102,102,104,99,110,92,108,106,98,101,101,108,97,100,95,115,107,112,109,115,109,104,91,106,94,101,98,96,110,91,108,101,104,99,119,101,110,107,102,114,97,120,88,102,99,112,110,113,112,104,107,110,104,129,109,99,115,108,99,90,98,108,106,113,113,108,107,95,92,110,104,102,90,108,101,108,87,96,99,100,98,110,98,97,105,110,105,101,107,100,112,103,100,97,77,110,101,98,103,110,93,105,105,114,101,108,109,98,110,103,99,116,93,106,93,106,108,123,105,104,107,93,104,93,102,110,104,102,108,108,73,107,103,95,104,104,119,102,108,98,113,111,112,106,107,110,102,111,109,117,104,100,104,120,102,95,112,105,109,102,99,100,106,104,104,98,104,111,91,115,102,107,103,92,110,108,109,98,100,108,91,99,101,107,101,109,106,103,111,105,113,111,102,97,106,106,104,114,113,116,103,110,114,107,113,108,102,99,108,99,103,107,117,108,105,100,116,109,94,97,119,117,99,101,106,87,105,112,108,98,107,88,97,102,101,96,101,98,101,103,110,107,115,97,102,98,113,114,102,104,108,103,106,109,90,97,105,110,101,128,107,100,108,117,109,91,108,111,99,106,103,101,116,108,98,132,113,98,105,113,98,99,109,112,97,108,97,105,114,88,101,112,104,110,109,100,114,102,108,105,102,99,109,108,104,104,96,115,115,99,105,104,99,108,106,107,105,105,95,104,93,108,114,100,95,110,113,109,99,95,111,104,105,99,121,115,118,107,101,102,94,107,111,92,97,110,95,112,97,111,69,100,97,111,102,95,100,112,108,110,92,110,106,104,97,125,108,94,112,102,118,96,99,103,117,107,121,110,94,122,104,104,98,129,103,116,117,103,97,122,114,138,129,144,115,145,124,157,195,171,219,228,232,254,268,220,214,211,204,217,214,196,205,180,197,144,128,131,134,112,104,122,120,117,99,119,110,136,109,110,121,116,101,108,106,74,114,109,103,85,122,101,102,106,106,105,109,111,119,112,118,110,101,102,106,110,106,116,118,96,109,113,115,93,112,103,108,112,106,106,117,109,107,111,103,98,106,93,113,95,99,114,111,102,113,101,106,115,104,125,113,106,110,110,105,102,116,100,89,101,95,104,105,97,108,98,106,117,102,102,107,102,107,97,110,106,102,108,124,99,94,113,107,98,110,97,100,109,109,91,87,103,109,97,113,112,108,99,107,100,119,95,98,107,110,105,101,104,103,102,106,107,99,116,97,117,108,111,111,106,102,73,107,105,109,108,114,109,113,106,117,106,111,91,119,103,110,126,102,113,113,99,109,99,101,119,108,94,100,103,107,120,106,108,94,107,87,115,108,99,103,102,95,104,108,110,102,106,113,106,109,108,110,108,106,113,116,95,105,101,85,110,118,112,102,106,100,92,113,109,104,98,120,102,99,110,95,103,127,101,102,113,91,109,90,99,101,105,108,97,98,93,98,112,105,101,92,105,107,112,112,105,112,105,112,101,100,110,104,111,109,103,98,113,120,97,101,105,98,124,110,97,99,71,106,108,106,106,103,108,93,99,108,125,113,70,105,101,103,73,93,101,104,108,100,109,104,91,111,119,107,100,113,102,108,105,104,99,93,125,114,104,103,104,103,107,112,107,110,112,107,99,116,111,115,103,106,103,100,91,98,119,109,110,113,112,103,107,115,109,106,116,109,111,99,102,104,112,108,100,102,99,112,98,116,108,109,111,106,106,118,102,105,120,96,118,112,103,117,107,115,102,102,113,113,99,112,111,101,98,121,113,120,95,112,96,116,116,113,119,70,105,99,105,108,105,103,111,108,110,85,103,112,110,98,75,103,104,101,97,105,107,116,102,108,100,100,106,94,101,110,110,101,101,106,103,112,90,110,107,112,111,106,98,96,100,95,92,102,109,101,100,94,103,111,110,110,110,91,100,100,113,96,92,114,105,91,105,103,102,108,109,110,102,109,106,113,107,100,106,105,105,76,101,109,110,106,104,106,119,106,98,101,90,113,100,116,106,98,114,108,104,110,93,106,112,111,100,103,102,116,107,108,100,103,106,106,109,103,98,117,103,101,100,105,128,101,106,108,107,100,108,107,87,113,106,96,107,98,107,98,106,106,102,100,110,109,98,96,103,114,114,124,97,110,106,92,115,108,94,100,112,108,111,109,86,115,115,99,101,106,103,98,97,101,103,104,99,105,103,119,99,91,105,105,111,92,118,101,98,114,109,102,102,94,118,110,74,102,106,107,94,112,97,104,116,111,97,104,111,107,109,109,101,109,98,108,102,115,107,105,106,110,124,112,100,104,108,107,93,100,105,107,113,100,103,116,109,113,110,102,103,107,95,111,139,106,107,106,97,107,111,99,97,109,103,100,110,110,98,97,106,109,102,105,94,95,95,110,105,92,112,117,102,112,112,89,104,110,111,101,98,95,112,96,88,103,112,113,109,105,105,90,99,101,110,101,110,105,101,110,98,104,93,101,103,107,113,102,105,106,104,109,101,97,103,106,99,111,99,113,103,104,105,93,100,99,100,108,107,108,106,105,94,109,111,109,110,102,121,112,104,106,105,113,99,100,111,112,97,97,113,105,95,99,114,99,107,105,112,117,103,103,113,113,88,111,112,112,100,105,104,104,104,106,106,105,112,125,113,100,95,98,102,106,101,110,104,106,97,96,115,97,114,91,128,101,98,113,103,99,111,100,109,84,99,112,107,113,116,111,100,105,100,97,101,93,92,113,105,99,106,112,109,90,103,116,94,96,103,108,99,98,97,105,106,98,113,107,106,98,101,104,103,112,104,99,106,107,112,105,108,102,92,100,113,92,102,106,110,103,104,91,103,109,107,95,108,116,110,101,98,111,106,94,108,109,99,109,107,103,114,109,99,112,107,92,113,101,103,110,113,108,108,106,109,106,103,87,109,97,92,103,87,112,101,107,102,92,102,115,86,98,100,103,95,99,100,101,99,105,104,104,109,106,110,109,105,110,95,96,102,99,107,110,124,109,94,104,97,109,104,115,97,118,102,98,100,100,99,96,104,109,109,105,99,99,104,114,78,99,104,104,95,108,99,101,115,113,106,92,113,107,116,111,103,103,94,103,108,96,116,97,108,94,99,102,102,100,133,111,105,108,103,105,95,111,99,99,103,107,107,90,110,107,109,115,97,97,101,106,102,97,104,91,106,117,111,94,117,72,107,99,100,91,107,116,105,104,106,102,116,106,92,102,103,100,99,98,103,103,112,102,97,112,112,99,125,105,106,112,115,108,121,114,111,105,102,106,94,113,111,107,110,106,87,95,99,106,93,100,97,100,101,111,66,103,107,97,97,102,101,106,117,105,114,90,98,105,108,116,104,108,94,105,110,97,129,97,114,101,107,103,112,114,108,115,87,92,125,96,105,100,95,106,106,109,108,106, +576.62378,99,113,106,91,96,104,110,83,85,87,114,112,102,63,102,102,110,117,103,100,113,99,109,116,96,99,98,106,105,93,105,121,105,108,114,118,104,99,103,104,100,116,110,101,109,119,103,92,101,110,111,111,107,105,124,100,106,98,126,105,117,113,108,105,116,105,102,104,109,97,103,109,106,110,107,111,105,94,99,99,118,113,115,109,98,88,114,112,97,78,103,117,108,79,95,106,104,96,103,97,105,100,106,99,108,101,102,99,107,106,95,95,111,111,113,102,108,110,104,107,109,109,110,107,107,107,102,106,97,108,112,107,103,100,96,103,110,116,103,103,88,105,116,118,104,114,116,96,92,104,101,113,110,94,95,103,102,108,104,105,106,113,101,94,113,97,100,98,95,117,96,101,104,93,110,96,103,110,99,108,100,96,117,92,113,102,104,85,107,87,103,102,95,108,99,95,111,107,103,92,113,113,79,104,109,114,100,100,120,113,114,96,114,106,102,95,97,112,104,103,105,121,102,107,84,109,111,113,104,97,107,121,91,108,116,112,95,104,109,88,113,111,103,105,94,109,108,104,113,105,67,116,117,104,102,131,108,101,95,118,100,98,101,107,76,105,110,126,126,105,94,103,107,123,114,98,114,124,111,88,103,103,109,117,96,96,112,105,91,105,105,98,118,108,113,113,105,103,109,105,101,112,108,106,101,106,92,116,111,118,92,107,96,113,113,108,117,113,109,101,108,108,99,109,117,102,107,99,104,101,106,109,107,98,115,108,108,104,97,101,94,104,99,106,107,113,89,107,112,109,106,96,94,95,108,117,117,104,109,108,104,99,116,101,107,104,119,107,110,117,100,103,109,109,107,114,105,128,109,125,109,117,107,100,108,98,98,106,110,110,115,95,100,102,100,102,109,106,97,106,103,106,100,105,113,111,116,112,110,112,105,114,105,95,104,102,107,120,97,97,105,96,106,109,101,102,109,98,99,109,107,106,103,105,101,112,99,99,104,99,113,99,98,115,101,110,101,111,108,112,99,101,105,111,102,113,102,104,114,114,103,108,126,109,102,110,97,102,96,102,110,77,105,100,103,108,95,114,108,98,102,104,107,106,110,102,107,94,99,113,108,115,108,106,106,100,99,106,103,104,98,107,97,115,95,104,98,92,110,107,100,102,96,102,101,105,117,98,108,98,102,109,117,109,103,95,103,111,102,110,98,113,104,93,105,106,112,98,105,110,88,109,98,112,90,106,113,104,99,115,103,99,113,110,96,112,110,116,105,104,117,110,93,125,99,112,114,98,101,98,100,97,104,125,109,95,114,107,102,107,115,108,107,98,103,114,116,111,101,98,112,105,107,89,105,112,110,116,106,107,108,109,105,94,98,108,101,94,95,108,103,103,108,110,87,98,97,108,104,91,115,108,103,98,107,105,105,110,111,113,102,117,109,116,103,112,115,105,108,102,110,107,112,104,104,96,105,104,104,106,101,106,114,104,97,104,122,111,103,109,107,102,105,102,97,109,104,96,99,115,108,105,108,109,100,117,119,97,99,92,118,106,107,105,111,113,102,99,102,113,113,108,109,112,109,105,111,75,117,98,87,86,100,104,111,105,100,95,106,102,110,113,105,120,98,102,104,106,104,110,105,109,80,112,103,95,103,90,108,103,113,114,99,104,94,100,110,77,110,102,114,92,99,105,108,99,95,121,112,99,108,100,103,108,97,104,117,109,113,113,103,105,99,104,103,103,95,100,109,107,110,85,112,99,106,103,97,94,110,103,113,113,80,100,104,113,102,102,105,99,122,115,115,118,110,107,104,117,108,101,111,107,119,108,105,107,114,106,134,109,113,109,96,108,108,104,106,115,120,107,95,98,113,112,109,109,98,104,81,103,111,103,106,97,86,106,103,106,111,97,102,112,111,107,110,115,110,108,106,99,118,93,104,102,108,102,103,109,110,98,79,110,113,105,99,104,100,104,106,114,115,110,106,108,118,99,119,96,100,103,104,112,107,125,112,106,117,110,105,100,102,101,89,105,107,110,99,97,103,105,117,102,106,104,109,108,98,120,111,105,99,104,97,128,115,103,104,104,112,105,102,109,113,108,100,98,111,115,111,114,100,98,121,134,112,102,101,109,106,102,124,105,108,112,109,103,102,107,116,114,105,91,102,111,106,94,100,109,100,105,111,103,109,110,107,112,99,84,95,109,108,118,109,111,101,107,104,103,98,104,95,99,104,106,99,107,95,104,99,100,98,111,102,102,111,79,114,106,103,117,114,112,116,92,108,107,108,105,120,121,101,105,92,110,103,112,109,103,110,102,119,120,102,110,107,116,99,119,118,123,125,126,133,129,120,126,120,176,158,175,199,273,265,278,254,281,263,225,212,243,223,179,220,177,176,180,157,122,108,118,101,131,115,101,103,90,99,122,110,102,118,100,103,75,100,121,106,117,98,99,109,90,97,105,97,106,103,106,110,108,111,113,112,107,100,102,111,105,102,103,106,93,102,111,104,110,113,108,98,103,114,97,101,111,107,115,92,117,101,105,124,104,111,113,108,119,104,87,105,106,108,103,108,106,99,124,102,101,107,103,95,92,96,111,97,106,100,104,95,97,109,101,112,113,102,91,107,100,106,113,101,103,115,90,105,112,94,90,99,100,92,107,105,111,109,104,99,99,113,113,109,105,105,114,110,124,106,108,103,106,106,103,133,109,91,113,108,92,99,108,111,91,115,102,110,121,91,112,108,108,104,97,96,113,88,105,113,109,104,109,112,105,91,101,107,94,102,107,106,107,110,103,106,107,107,92,110,95,102,113,108,105,99,111,102,102,109,103,100,106,103,91,107,104,94,119,103,112,91,118,105,108,107,113,105,102,102,120,89,107,115,100,99,116,99,110,102,110,103,107,107,102,112,117,105,109,109,94,96,103,101,103,101,95,113,114,100,96,105,105,94,108,101,104,109,108,111,117,106,101,105,106,111,98,99,92,103,107,101,97,107,102,93,65,107,103,113,107,104,117,99,108,96,113,110,107,102,99,104,88,112,115,113,105,84,100,107,98,102,102,96,107,100,108,108,98,104,105,100,104,105,111,102,107,110,115,102,103,106,99,107,96,107,112,125,96,106,102,108,114,103,115,101,102,95,114,94,106,96,104,100,100,106,113,112,107,107,107,102,104,95,92,102,85,113,102,108,110,107,105,98,114,104,99,101,98,113,104,95,116,108,116,100,103,105,102,85,116,123,88,109,104,103,107,108,97,107,123,109,88,104,96,93,98,109,102,99,104,105,106,109,104,100,112,114,98,96,104,103,84,101,107,106,112,107,114,98,91,95,113,96,121,103,96,115,108,103,108,105,121,113,105,106,116,106,117,98,101,104,104,110,102,105,107,101,103,108,99,111,108,101,100,109,121,112,96,99,104,100,98,109,99,95,98,104,94,121,112,102,114,118,105,98,99,100,101,107,103,103,102,96,113,105,105,102,111,104,109,107,106,111,106,110,110,117,109,111,105,98,107,117,107,103,120,99,100,115,102,123,109,101,108,96,101,114,116,103,94,107,113,105,102,106,110,101,100,113,106,109,96,125,105,97,102,119,111,99,104,102,112,97,98,95,116,107,102,110,109,115,111,109,113,112,111,110,102,110,92,117,104,106,107,100,95,99,110,103,106,94,98,113,117,105,101,97,100,109,109,110,96,109,112,110,109,103,101,103,98,107,100,105,100,105,87,101,110,109,105,109,103,99,111,105,102,116,113,107,106,104,105,107,100,104,105,111,100,115,97,107,108,103,104,95,99,100,98,94,111,105,106,104,105,112,105,97,109,110,104,102,109,100,106,111,102,100,110,99,110,106,124,101,102,102,107,98,101,94,97,94,120,102,103,106,91,96,93,91,96,100,111,110,109,108,106,99,105,101,102,108,101,102,91,104,100,98,97,95,112,102,88,106,111,101,105,110,102,111,111,98,100,105,112,95,110,100,99,104,105,109,107,93,95,95,106,111,87,106,105,105,111,114,107,89,115,110,104,102,105,111,90,106,94,100,95,103,112,105,113,113,102,96,108,98,104,107,105,107,110,101,95,103,104,100,127,103,106,107,115,99,110,109,104,111,105,89,115,101,94,104,110,109,100,105,97,101,106,112,106,105,109,108,102,103,85,102,101,97,100,99,107,100,112,113,113,118,107,101,105,100,104,95,99,102,123,98,109,136,107,99,105,118,87,118,108,98,98,95,116,102,107,105,102,110,112,101,108,101,97,103,107,94,106,98,101,115,102,112,103,77,111,107,102,115,103,106,96,100,104,111,109,112,104,112,108,110,95,115,107,92,120,107,102,106,109,116,109,108,97,108,114,100,97,120,108,101,113,109,110,101,106,102,104,99,99,111,112,120,121,98,104,102,96,98,105,101,108,115,109,102,101,113,121,98,101,87,101,101,100,101,104,97,112,102,108,97,98,105,97,100,101,100,96,104,106,110,100,98,105,105,99,94,107,96,116,105,108,99,106,95,109,100,94,102,117,98,99,109,91,110,112,97,98,98,101,99,107,95,105,106,104,92,103,104,95,99,105,113,112,95,109,105,103,102,101,112,111,107,108,96,104,108,106,88,104,77,97,106,99,103,100,100,106,107,125,98,105,88,104,104,99,95,95,93,111,105,106,100,111,98,105,101,109,105,111,108,103,101,102,101,95,107,87,100,108,95,87,104,99,100,103,88,112,94,98,117,111,105,103,102,109,107,113,108,112,85,110,105,121,115,108,110,110,101,106,110,111,121,108,98,111,99,91,111,93,107,100,107,103,100,91,119,97,101,101,115,95,117,101,110,111,96,124,105,99,93,113,104,106,102,105,109,105,109,107,98,104,105,112,94,101,109,91,106,82,117,92,105,86,107,92, +576.76471,118,93,99,112,93,100,115,95,95,109,107,98,98,119,90,114,86,112,110,100,103,95,99,100,102,99,107,100,105,99,108,106,103,94,106,143,101,104,95,98,104,101,112,87,97,98,105,102,96,108,91,102,95,105,117,110,92,99,107,98,86,103,101,96,100,112,113,110,107,110,94,88,100,95,94,99,98,106,101,95,104,102,98,99,100,96,119,112,94,96,101,109,95,104,109,94,102,113,109,92,102,100,92,105,98,111,109,101,112,94,105,95,109,104,113,105,99,106,109,99,104,105,102,95,100,103,106,114,111,115,98,100,100,102,104,91,101,99,110,102,94,109,95,106,97,94,110,105,104,98,109,109,107,100,92,99,110,101,95,110,97,101,102,98,116,97,101,120,104,98,111,105,99,105,103,97,109,113,104,106,107,98,102,109,106,106,105,103,107,106,103,101,109,107,104,109,95,101,94,99,107,99,98,106,96,107,94,107,102,99,120,108,106,108,98,109,109,106,98,92,105,107,100,107,134,108,109,114,113,103,99,104,107,120,112,115,99,102,66,109,101,90,115,105,113,99,111,109,95,110,101,107,104,87,111,113,102,102,104,104,99,104,107,108,97,100,92,110,100,109,106,109,103,113,106,96,101,111,112,110,100,107,100,102,106,94,94,109,109,100,99,110,107,108,96,93,102,113,105,131,100,107,106,118,98,107,112,101,106,104,89,96,104,104,109,96,107,71,106,102,107,97,121,103,104,87,101,94,112,111,116,100,105,98,108,111,116,102,110,100,100,102,117,93,95,117,101,105,102,124,105,108,105,104,109,99,105,105,105,99,90,102,98,105,111,104,110,105,106,113,101,116,104,110,108,96,102,99,102,105,112,106,112,108,105,101,106,100,92,110,113,105,88,99,102,77,104,100,100,103,108,107,108,95,91,105,113,103,113,92,106,114,94,96,102,99,101,103,112,109,117,106,98,107,106,105,101,100,111,114,112,104,103,96,110,94,112,115,109,111,103,94,105,113,71,93,98,101,102,112,107,116,95,103,116,101,111,97,108,115,102,97,88,113,109,100,111,107,87,115,105,102,106,100,113,86,95,107,111,98,118,107,113,112,107,91,99,98,117,100,104,104,105,111,103,105,101,95,118,97,111,114,109,109,112,112,94,107,106,94,102,117,96,101,102,102,99,109,94,95,98,101,105,113,105,102,108,111,107,113,99,112,111,101,102,100,103,93,89,102,99,113,129,100,107,105,91,112,93,109,94,92,103,97,108,101,99,94,112,94,111,80,98,102,121,104,110,109,99,100,115,98,106,99,100,103,102,105,111,99,105,108,112,90,105,100,92,107,91,96,102,106,104,112,106,111,97,97,103,90,94,116,110,105,103,99,100,97,88,106,110,112,109,101,101,78,109,93,106,105,106,107,102,90,103,106,97,110,102,100,106,106,108,100,102,103,95,107,99,99,120,111,102,103,97,95,100,105,107,114,94,100,104,108,100,118,111,103,104,108,110,131,104,108,95,105,104,101,102,108,119,105,111,98,109,104,105,94,115,96,105,103,101,105,99,106,104,99,98,113,102,110,105,115,109,117,100,95,109,100,102,86,104,114,104,117,103,98,112,100,89,104,100,99,91,103,119,114,103,91,119,98,101,111,105,98,99,102,109,112,113,102,103,92,114,108,105,104,113,104,105,99,100,89,105,109,121,102,107,92,108,101,116,102,106,96,106,103,97,98,119,108,95,103,104,103,104,101,103,112,106,94,111,107,99,100,116,104,90,93,113,110,106,112,99,104,99,109,108,107,110,105,106,98,115,115,96,105,113,113,105,110,112,95,110,121,110,119,106,104,110,119,100,104,110,99,102,85,85,100,100,105,108,104,105,106,108,98,111,107,113,106,110,103,106,107,106,103,107,103,106,112,104,105,117,105,103,104,96,114,109,104,93,109,91,108,107,95,104,103,99,104,112,99,101,91,99,101,113,112,98,95,114,108,97,99,112,103,102,107,104,108,101,106,115,113,101,113,104,110,90,111,105,113,101,101,107,101,99,103,98,112,102,120,103,105,108,103,102,108,106,103,94,108,109,112,108,100,110,99,100,108,110,103,110,99,105,71,98,104,112,98,115,108,76,104,110,109,99,104,72,100,99,114,106,105,115,92,110,110,104,103,113,104,110,112,100,98,94,97,110,99,130,95,109,106,110,104,112,99,103,105,103,98,103,95,96,100,94,107,87,125,120,105,110,107,103,101,112,111,111,96,108,109,104,96,98,98,105,78,94,88,99,106,118,113,119,102,100,110,106,98,113,99,105,98,101,114,103,103,128,106,118,95,102,125,118,115,117,97,118,104,111,123,115,126,127,147,151,196,193,186,254,239,245,232,265,252,227,207,224,231,200,176,166,132,156,129,129,122,117,135,125,108,104,106,113,110,106,90,116,116,91,119,118,103,104,100,101,105,114,90,96,106,98,100,96,105,108,99,113,105,112,101,112,104,96,95,101,112,105,98,95,91,113,101,102,103,113,83,78,102,95,101,108,101,99,102,95,95,78,104,91,104,103,100,109,101,99,119,98,116,109,105,111,97,99,102,99,107,98,96,92,104,98,108,105,100,102,104,99,112,110,107,106,115,108,98,107,99,112,89,103,104,113,100,109,91,107,112,106,109,109,110,99,113,117,94,113,111,107,92,106,104,109,121,120,108,117,113,91,101,98,96,103,104,109,99,107,98,100,104,109,103,106,123,99,98,105,109,113,93,102,107,102,108,104,99,106,95,109,100,99,98,106,104,95,104,103,112,111,102,103,110,112,110,109,98,102,113,100,106,113,101,102,108,105,101,100,113,100,113,91,112,108,101,103,99,104,114,114,107,103,99,98,106,99,106,108,94,111,109,105,102,108,95,94,107,111,112,110,111,99,109,104,94,102,98,105,102,109,103,105,103,113,124,102,99,107,102,92,107,100,112,83,99,110,105,101,105,103,113,101,106,104,115,100,96,107,100,103,94,102,98,108,99,119,106,104,99,105,101,104,109,98,99,103,96,100,100,102,101,103,119,98,102,129,119,106,104,81,98,104,102,100,108,99,104,91,94,111,109,109,91,121,115,99,106,104,104,104,110,97,102,98,93,92,107,106,104,102,103,95,109,106,104,103,106,107,94,97,95,107,87,105,112,103,113,102,109,101,97,107,111,117,105,105,109,104,99,109,107,91,95,101,131,114,98,94,101,100,114,94,93,97,96,108,101,116,101,115,97,95,111,103,97,111,109,103,111,100,95,84,96,104,99,89,96,100,107,104,92,98,113,95,118,115,108,112,100,111,116,110,111,121,104,100,108,95,104,105,95,99,95,107,98,111,110,109,102,96,113,114,112,91,105,114,102,110,105,97,103,102,109,104,102,108,111,105,102,108,84,109,109,103,100,109,113,118,98,107,101,106,101,115,97,102,91,108,96,104,108,102,94,102,108,97,108,104,90,95,103,95,107,110,100,113,104,110,105,102,77,99,104,104,113,117,103,104,100,103,105,107,99,105,98,97,105,92,99,105,109,102,103,107,110,80,99,114,107,107,107,104,106,102,102,95,116,109,90,113,101,105,106,103,94,94,102,106,128,97,91,109,98,94,95,110,110,109,100,106,105,108,116,105,107,120,90,105,113,100,98,110,105,100,94,102,101,102,88,111,92,104,103,100,96,115,106,98,107,96,95,101,123,101,97,113,96,94,110,109,107,99,108,98,112,95,99,110,98,101,109,105,96,110,102,92,108,110,100,122,113,96,112,124,109,105,112,80,94,103,101,116,128,110,101,102,124,95,106,104,117,100,113,106,102,113,105,110,117,88,98,99,108,83,132,98,102,112,102,99,107,99,104,119,92,102,107,89,98,105,93,96,100,107,99,96,80,99,102,107,109,113,105,118,97,103,97,114,97,103,94,102,113,102,108,106,102,103,104,86,107,95,99,100,110,111,99,102,96,117,102,111,103,113,94,112,82,98,91,79,101,92,98,111,103,93,102,101,102,98,116,87,103,122,97,102,96,102,101,107,113,100,98,94,113,99,122,103,103,92,99,109,97,100,119,98,118,100,104,106,98,102,98,111,112,109,111,104,99,104,102,103,106,115,113,103,102,91,109,105,96,100,88,90,104,106,99,94,102,99,109,115,102,103,99,117,95,103,104,107,100,111,115,112,101,102,103,117,106,106,97,101,93,101,108,101,98,97,111,105,91,107,101,96,98,113,103,95,109,100,100,102,74,111,106,98,106,87,99,104,100,106,104,105,107,122,106,91,108,87,117,103,101,110,100,108,109,93,107,96,108,109,111,103,114,103,95,100,102,99,99,110,101,85,99,115,116,107,91,96,107,124,75,103,115,102,96,101,96,103,103,106,107,102,112,99,110,107,94,99,106,108,102,103,95,99,108,103,101,98,110,107,106,100,94,96,107,109,99,99,108,95,108,120,95,80,112,90,100,95,97,104,100,106,101,94,105,102,96,99,89,94,98,105,104,108,107,104,101,102,100,96,98,100,91,113,95,97,105,69,108,102,106,98,115,97,105,112,101,107,87,98,105,113,110,98,112,100,97,98,105,95,110,107,103,97,103,110,94,97,113,99,101,104,98,107,106,103,105,105,108,110,105,109,104,107,79,109,75,90,92,103,109,106,107,85,92,112,101,114,104,106,104,107,97,114,108,105,99,100,90,103,105,103,90,116,108,102,100,113,94,93,99,85,96,108,98,140,100,111,106,111,92,109,87,97,98,105,102,106,108,108,102,98,106,104,96,102,98,102,91,106,98,102,81,99,109,106,108,104,98,98,108,98,109,124,101,104,113,95,99,100,103,112,111,101,122,117,128,103,92,99,99,105,106,101,118,108,98,116,103,105,132,103,109,110,105,95,111, +576.90564,113,139,112,99,100,93,112,108,103,109,106,78,103,104,100,106,82,101,88,107,105,114,103,92,90,99,109,108,102,113,100,104,106,105,100,97,95,98,107,106,102,106,101,107,96,98,95,108,104,113,101,98,108,106,102,91,113,89,111,101,129,78,98,134,113,98,106,108,105,107,111,114,94,116,92,122,128,101,101,96,123,107,95,111,108,100,98,106,104,81,98,103,87,102,102,107,94,102,106,117,91,102,101,114,104,105,111,109,97,91,102,99,98,104,107,103,97,117,99,105,103,112,113,118,105,103,111,80,112,104,99,102,101,103,105,109,108,99,106,101,106,109,109,101,91,91,96,109,115,107,97,100,111,92,117,115,104,105,120,100,107,98,116,108,111,101,103,103,99,97,100,99,104,113,111,115,106,99,109,100,112,103,108,115,100,106,95,105,106,108,104,113,104,101,97,99,95,110,101,105,102,110,103,96,110,104,104,118,106,111,109,81,105,96,109,111,94,102,99,102,110,107,112,100,92,106,99,106,114,107,113,103,122,106,107,110,105,99,106,99,97,94,107,99,106,104,108,104,115,104,92,97,98,103,106,100,116,106,107,108,103,103,110,111,96,98,109,115,108,108,104,111,102,95,103,102,99,101,98,106,98,104,109,103,106,99,113,103,108,114,113,118,111,86,115,104,105,104,110,106,100,112,101,107,105,108,97,102,102,116,107,108,84,110,104,100,109,84,103,104,99,120,113,108,99,108,102,100,108,107,119,99,100,105,102,110,87,99,114,103,109,96,117,113,100,111,90,109,107,110,106,101,110,115,85,108,104,114,113,107,114,110,94,93,109,123,98,106,106,106,102,100,108,100,103,94,120,106,105,112,105,95,111,104,100,98,100,98,104,104,102,95,95,106,106,96,97,102,89,115,93,118,100,95,90,100,109,95,114,102,94,94,104,111,114,100,106,105,106,109,105,101,95,100,107,103,104,98,96,93,93,105,100,110,111,100,100,99,104,108,117,109,116,77,92,87,103,96,105,117,97,105,101,105,108,104,96,109,103,96,113,105,111,96,103,114,94,100,100,107,113,103,112,104,113,98,109,113,113,111,108,105,107,100,111,99,100,103,90,85,112,112,108,82,93,101,95,110,113,109,102,105,94,97,100,107,111,89,109,100,112,98,106,108,97,104,114,103,113,100,118,112,116,109,108,108,101,103,106,95,111,113,103,115,108,100,117,90,116,101,107,103,110,106,110,113,110,118,105,107,110,101,115,111,90,94,101,94,104,121,106,114,108,107,104,99,111,109,104,73,93,108,121,107,95,109,104,110,117,112,107,93,104,90,114,103,122,105,107,112,106,112,107,105,103,107,96,103,105,101,105,110,104,95,113,95,96,103,113,103,108,118,107,106,100,104,102,107,111,109,102,117,114,102,104,102,116,113,111,112,113,107,99,113,94,110,111,91,108,114,110,98,99,96,108,92,104,98,110,107,125,113,98,110,102,100,125,104,105,96,124,110,109,101,107,97,101,98,112,113,114,109,100,94,99,106,101,101,117,102,108,96,110,103,99,94,109,111,108,109,78,106,111,106,97,104,107,116,110,110,92,106,102,111,98,98,104,108,116,110,108,103,98,120,104,101,111,116,101,104,112,110,111,108,103,108,108,112,109,104,110,105,110,103,103,108,84,97,107,108,102,99,100,102,111,99,103,105,100,112,111,108,114,99,98,112,126,110,113,107,110,96,102,98,96,122,96,95,109,92,108,102,103,105,114,113,107,101,105,98,99,102,116,91,106,110,103,95,97,102,111,106,106,112,108,109,103,123,111,101,109,98,129,113,104,104,104,113,98,99,121,110,105,101,105,106,116,98,109,100,102,116,93,109,117,104,112,110,101,114,103,101,103,92,109,115,109,113,112,108,101,106,111,94,108,104,113,105,91,99,108,101,111,96,101,103,122,104,93,109,100,95,107,105,109,102,98,112,108,108,100,102,96,102,96,104,115,117,108,105,115,99,99,106,104,108,98,114,105,105,112,112,121,112,120,101,116,102,114,120,104,106,113,116,99,98,105,108,116,110,111,110,110,107,115,120,108,115,91,109,93,109,112,107,107,108,102,105,102,104,110,105,106,107,100,106,100,104,109,118,102,100,99,103,102,92,106,103,118,97,107,102,120,105,108,110,112,118,96,103,98,99,114,105,94,112,106,95,118,107,108,104,108,100,111,106,110,94,103,109,103,110,103,96,113,125,99,73,115,101,102,119,114,103,101,100,99,105,106,109,117,98,85,76,120,114,121,102,100,124,108,119,107,112,106,104,101,111,107,117,117,108,109,99,111,112,96,119,108,104,109,132,112,127,123,120,106,130,189,178,166,208,218,229,237,250,244,249,235,253,248,210,221,189,187,172,176,145,146,110,122,111,107,129,99,114,102,111,122,114,106,82,105,103,108,117,111,122,106,94,104,104,95,108,99,110,104,115,110,108,95,104,111,112,112,99,114,106,103,113,108,95,106,109,100,117,98,104,98,107,104,112,109,120,107,102,109,107,109,113,96,116,105,102,96,124,110,121,109,108,115,109,131,100,98,106,103,117,105,111,100,95,99,87,112,96,112,107,112,102,101,99,109,115,109,110,109,104,99,117,108,96,84,99,108,113,121,104,117,108,103,80,117,106,117,110,125,101,117,103,114,103,106,111,104,107,115,104,111,109,105,95,116,113,98,105,105,94,113,96,95,104,106,109,102,104,114,120,94,109,107,107,104,113,102,112,114,110,106,100,120,111,105,105,91,109,101,104,108,101,107,97,94,106,115,102,128,104,111,109,102,107,107,96,111,93,110,101,107,104,115,109,117,112,109,93,85,113,105,104,111,88,101,102,107,105,102,116,116,121,103,108,106,96,119,69,115,119,105,102,99,106,105,103,103,108,108,100,108,109,102,102,91,94,124,108,83,119,103,101,100,105,105,114,103,126,108,108,109,106,98,103,110,103,105,99,106,108,115,106,117,112,106,105,113,96,103,108,130,106,110,104,111,95,93,105,121,108,105,114,97,112,99,103,111,103,106,107,110,108,128,106,99,122,107,100,113,113,101,114,115,112,120,106,115,101,109,107,107,101,109,110,108,107,113,106,103,111,143,101,105,101,90,95,105,108,109,102,113,108,114,107,98,111,100,116,100,96,112,105,106,106,102,103,101,106,109,111,103,114,103,103,114,117,121,97,92,98,112,106,109,102,100,103,109,108,101,101,109,93,91,110,113,118,117,105,109,99,100,103,91,106,99,113,109,103,100,103,100,108,108,108,112,111,109,109,113,108,105,85,111,93,100,107,107,103,81,91,108,105,116,105,88,106,103,112,101,110,112,100,109,112,116,105,107,102,92,112,108,109,100,108,113,110,110,107,95,113,95,110,112,108,107,105,99,101,119,112,106,106,90,89,108,96,110,104,106,111,101,109,102,107,101,103,114,105,107,114,101,117,120,91,99,103,103,113,116,113,103,100,108,114,103,105,111,107,102,107,108,117,119,108,112,111,92,112,112,107,101,128,108,117,106,100,109,100,95,105,95,99,109,100,107,113,110,100,111,97,101,113,104,112,106,109,103,105,104,116,108,113,104,108,96,105,106,106,102,113,95,107,106,116,115,102,107,97,108,98,102,105,107,91,98,108,101,96,106,68,110,113,106,111,106,116,87,105,117,110,121,99,103,107,98,109,112,105,104,103,100,69,107,95,106,95,108,100,105,98,110,96,76,109,97,105,107,112,113,108,109,95,111,111,109,115,106,100,95,91,120,112,108,100,102,102,116,104,121,102,103,102,116,105,102,92,103,106,121,102,117,98,95,114,101,99,102,116,106,103,107,106,79,99,101,102,102,114,100,98,102,103,106,110,98,102,105,115,103,116,96,107,113,125,109,108,103,117,113,99,111,97,100,115,110,105,110,76,98,106,109,101,112,114,91,113,103,102,89,109,113,94,106,98,114,120,98,90,103,110,108,106,99,102,109,100,113,86,104,102,111,114,99,106,97,105,125,108,106,101,115,100,103,103,105,102,109,123,101,99,91,104,102,117,102,93,106,113,104,106,94,103,105,106,101,108,98,106,98,109,105,102,108,102,115,102,102,107,103,103,111,94,100,93,119,105,100,109,107,101,109,114,102,97,107,83,111,109,114,99,97,108,106,106,115,111,103,121,97,116,121,104,102,91,109,95,104,114,102,102,110,113,98,108,105,135,105,100,100,103,99,113,109,112,109,102,98,105,96,105,105,106,107,110,100,105,100,103,109,103,103,109,111,104,95,106,123,80,111,99,116,111,115,105,120,102,116,104,98,107,96,106,113,105,103,102,107,115,102,104,95,105,110,104,112,108,113,105,104,123,87,103,105,104,111,95,95,105,113,108,104,102,100,107,116,113,105,98,96,93,104,98,112,102,107,102,99,116,120,103,103,105,97,113,113,96,104,103,117,111,101,100,103,100,114,95,111,105,105,104,112,107,109,100,100,117,108,99,107,105,101,103,104,101,93,108,108,105,110,102,110,102,104,109,111,101,104,104,92,98,97,109,107,106,100,93,98,107,102,107,95,85,112,93,107,104,118,105,117,111,100,89,102,96,116,108,107,108,106,105,105,97,118,103,101,108,116,111,96,107,105,104,97,93,96,113,87,112,115,108,99,96,113,103,91,99,102,97,101,105,98,109,104,108,111,117,96,102,104,110,115,92,102,111,78,107,111,107,117,91,115,109,102,109,103,97,102,94,102,109,108,107,111,108,126,104,92,103,103,101,100,95,113,102,106,106,103,103,88,103,96,109,109,98,104,107,96,102,110,104,104,97,113,103,126,86,99,115,95,106,108,91,111,103,90,98,107,105,105,104,109,112,110,98,85,109,96,98,103,103,98,104, +577.04663,108,96,100,114,103,102,103,99,80,104,101,102,95,91,98,98,94,106,117,106,112,104,108,101,97,105,104,97,108,104,107,110,103,101,106,100,107,99,105,82,89,101,110,99,125,106,95,98,107,106,100,106,112,108,100,93,102,104,112,101,111,103,104,97,90,101,105,118,101,105,81,107,91,116,95,115,106,101,109,95,102,103,95,112,105,95,108,117,102,98,85,112,92,105,101,103,78,104,99,106,99,99,102,108,122,93,108,97,102,89,105,105,109,105,104,112,101,109,136,105,99,111,102,107,109,108,113,106,108,100,99,113,109,99,94,105,101,136,94,99,98,104,111,109,99,101,106,97,98,101,103,104,97,105,106,104,118,91,95,86,108,113,102,106,102,119,95,94,102,97,108,95,83,99,105,103,108,89,98,110,108,99,106,100,106,106,84,93,108,94,108,104,109,109,99,104,105,96,107,120,111,96,107,106,105,96,98,99,111,109,98,111,105,109,103,96,93,114,101,109,113,105,105,99,113,111,113,126,112,101,109,106,99,109,109,100,109,109,106,100,104,98,112,107,113,88,104,97,103,102,105,111,103,113,111,112,106,102,102,103,105,109,100,114,100,87,103,102,99,101,106,109,99,96,107,101,92,109,105,106,109,116,98,99,106,103,97,123,111,103,100,98,111,101,101,97,111,109,105,99,103,103,105,101,95,99,99,104,86,99,91,101,94,110,108,101,100,112,73,102,105,104,108,103,114,99,101,102,123,108,107,106,115,97,113,111,110,105,98,106,98,105,108,103,103,99,113,103,113,101,117,95,108,102,107,96,105,116,111,109,107,106,90,96,109,114,110,108,94,100,105,107,110,102,110,97,118,107,107,101,101,115,106,112,96,105,106,93,101,98,109,108,106,107,102,100,90,103,106,100,102,104,91,108,96,101,100,105,116,99,98,114,94,98,102,111,100,105,97,104,108,101,99,99,109,107,80,99,104,113,110,98,87,103,101,106,105,104,101,101,111,117,109,109,99,107,117,105,107,102,104,94,99,104,99,109,95,112,102,101,101,100,126,108,100,109,95,112,101,91,100,97,94,93,108,106,104,109,100,105,102,108,119,91,105,92,115,115,96,106,101,119,95,108,105,112,108,108,93,92,100,105,104,103,109,110,105,113,109,102,106,104,85,96,105,118,112,108,99,100,114,108,101,119,100,98,106,96,95,107,107,110,93,99,110,101,93,100,109,109,105,95,101,113,116,92,108,107,95,108,98,110,92,103,114,93,112,102,111,107,103,103,106,106,111,102,109,103,108,82,96,94,105,115,102,108,102,88,117,103,103,93,99,106,101,98,103,109,104,97,118,106,98,98,115,116,105,104,104,115,102,109,106,108,96,101,101,108,102,119,114,99,117,108,101,98,105,107,113,99,110,92,106,102,99,109,104,107,107,109,105,109,102,106,102,99,108,116,100,108,97,104,109,112,112,99,91,100,119,113,99,98,105,107,97,111,104,108,102,117,109,112,106,107,116,116,118,104,102,102,120,108,107,106,93,113,112,103,100,117,101,113,109,104,105,98,90,104,110,105,98,106,100,111,103,104,98,116,105,91,110,102,105,115,109,92,112,102,115,110,103,110,117,111,123,104,113,102,105,99,108,102,120,112,92,86,104,110,111,103,84,93,84,98,105,87,92,102,104,107,115,100,103,101,103,100,123,105,104,109,110,105,103,101,102,105,118,115,107,106,104,105,116,107,97,99,109,109,96,87,110,105,112,112,112,106,103,110,99,101,107,102,98,106,95,115,120,108,110,108,113,113,106,95,104,117,110,116,112,104,103,114,98,120,102,113,110,112,110,98,99,111,130,98,110,107,106,104,116,101,107,108,106,111,96,106,109,102,97,116,103,98,109,92,105,112,105,113,104,104,107,99,103,96,100,96,96,108,98,83,108,94,99,100,96,113,103,108,102,93,119,110,98,100,103,95,107,112,112,91,106,64,98,97,104,99,99,108,110,101,94,106,108,106,104,108,100,109,98,110,106,100,103,115,93,123,112,116,111,88,114,103,111,95,101,101,94,108,98,111,101,96,94,115,111,106,105,110,101,112,90,102,102,109,113,95,100,104,102,99,114,107,85,122,95,110,134,96,104,99,105,109,97,109,110,108,99,110,114,105,101,115,107,102,110,109,101,118,102,107,106,108,102,91,104,86,98,98,107,113,100,104,104,110,96,99,109,103,99,116,93,105,110,88,106,108,97,91,99,108,99,113,93,100,106,97,107,99,140,114,105,86,108,110,89,108,112,106,97,118,90,103,116,99,104,110,119,113,121,101,110,110,125,113,109,128,90,104,109,120,118,117,123,112,121,117,127,121,177,191,180,184,221,246,247,235,277,221,205,215,204,201,183,191,166,151,138,153,143,143,117,117,135,102,122,106,113,117,114,102,101,111,128,113,110,105,103,106,101,100,99,98,102,99,118,113,113,120,107,100,85,97,91,96,96,102,101,99,100,102,105,141,99,111,111,109,102,112,104,107,100,106,111,95,113,100,115,105,100,104,101,98,99,102,127,106,105,112,111,105,109,99,109,93,104,108,101,95,93,88,94,117,109,106,106,106,88,87,102,94,100,102,111,77,109,105,102,109,94,100,111,96,101,98,104,117,97,91,100,103,102,96,109,98,107,121,102,94,120,101,112,101,91,114,100,121,98,99,109,109,114,104,113,110,96,109,101,89,101,101,109,98,101,111,103,118,99,101,108,93,105,95,103,112,102,110,107,112,107,116,112,95,107,103,110,103,88,106,116,114,101,105,97,110,98,99,97,103,109,96,113,106,89,97,105,107,103,111,98,101,98,105,96,115,102,108,113,96,95,118,100,100,100,103,105,102,114,101,106,106,109,101,100,114,118,92,105,109,115,99,111,112,108,121,102,98,106,106,108,106,101,119,108,107,100,108,102,100,105,107,132,104,91,103,100,100,110,111,95,105,104,108,97,125,106,121,103,97,100,106,105,108,107,76,114,92,106,98,109,112,103,134,94,112,101,103,104,113,91,121,102,103,107,106,106,99,90,91,99,103,99,102,106,103,91,106,97,105,103,98,112,104,93,112,113,97,108,107,118,109,99,99,91,110,97,119,101,104,99,102,113,101,120,108,99,92,116,102,107,106,104,100,104,122,105,107,105,108,114,104,99,101,111,112,105,104,116,101,95,119,96,107,95,115,108,102,96,109,95,104,106,98,113,104,91,117,91,104,114,111,106,107,115,121,112,100,97,113,100,89,102,103,97,106,102,116,81,106,120,109,121,98,103,117,115,112,104,98,107,97,108,93,106,119,98,98,95,98,118,98,107,108,107,80,102,102,101,99,104,107,117,85,119,111,111,101,96,99,84,97,108,101,93,115,110,101,99,116,81,106,107,105,105,109,107,98,105,109,99,91,101,104,99,107,109,104,107,97,102,90,99,103,99,113,99,110,126,107,94,98,100,104,112,97,103,71,109,110,106,101,102,106,96,103,110,105,98,100,98,98,111,123,105,104,107,110,111,116,105,93,100,117,95,105,112,102,109,100,107,117,108,113,99,109,103,114,107,91,101,90,101,108,97,114,115,99,94,114,107,107,100,95,102,102,98,81,106,111,94,121,98,107,106,107,101,112,104,110,104,105,91,99,95,111,102,105,99,103,98,101,101,101,105,100,93,101,108,106,94,105,90,107,108,98,103,110,110,106,108,94,121,101,111,98,103,106,111,93,95,105,116,94,94,94,104,103,104,96,102,109,100,105,98,107,115,101,104,103,113,106,108,104,103,107,100,84,87,101,104,107,103,104,105,102,95,106,105,96,81,100,97,114,100,94,90,105,110,105,106,107,104,104,120,113,98,98,102,104,99,98,97,96,105,106,100,96,106,105,103,102,100,97,86,104,107,83,100,116,108,99,105,98,102,113,99,94,95,102,108,113,105,97,100,108,102,102,106,99,91,99,116,102,113,97,98,98,98,104,110,103,101,109,102,101,104,100,99,107,96,102,101,107,95,116,104,104,114,106,105,101,112,105,95,102,113,106,101,104,108,101,94,97,101,100,102,87,87,112,98,102,115,103,95,106,105,111,93,112,111,104,102,99,66,98,93,106,119,109,115,105,108,102,103,101,106,106,106,100,105,102,107,105,98,95,104,103,106,108,84,95,100,109,106,101,102,104,105,101,102,102,117,100,103,99,111,103,96,95,84,105,100,106,110,115,106,101,105,103,108,101,98,101,105,100,93,107,106,99,107,95,110,106,106,102,88,104,108,102,99,115,96,85,101,115,110,103,106,90,91,115,105,118,112,109,115,100,101,111,102,98,105,107,111,105,102,74,113,107,100,104,105,105,85,99,104,109,102,113,97,114,100,109,105,108,87,98,108,103,101,102,100,96,106,105,105,103,99,91,109,108,114,109,109,91,106,105,101,97,77,107,108,103,111,99,104,92,116,102,97,90,104,101,105,101,100,99,106,112,99,94,111,104,101,106,99,102,106,105,102,107,95,102,117,110,94,106,101,100,126,104,99,98,109,102,106,97,103,93,106,107,100,110,98,104,135,104,113,110,101,100,98,100,93,106,105,101,114,112,106,110,119,102,107,93,98,102,101,117,96,112,101,106,96,96,104,98,116,105,105,95,86,91,107,113,110,113,107,109,102,100,85,103,103,107,100,100,106,140,101,88,103,108,100,111,90,109,91,101,101,91,101,105,111,100,99,101,99,102,109,106,100,103,102,83,109,114,95,106,115,105,99,107,108,107,105,103,102,98,99,103,105,93,102,102,110,91,103,108,102,90,108,98,106,102,110,86,112,112,109,93,93,112,109,93,95,100,76,112,104,101,101,102,109,104,105,91,107,113,106,87,92,119,103,101,123,98,107,124,116,94, +577.18756,114,108,101,99,113,105,105,108,74,104,106,112,108,100,106,101,98,97,115,125,107,99,98,117,103,109,107,92,95,106,99,97,110,113,113,92,108,94,103,120,121,113,109,101,101,105,95,101,100,111,102,104,100,109,96,61,106,90,112,112,100,103,122,97,99,104,67,103,108,107,106,100,105,114,98,108,101,109,92,91,109,109,103,101,113,105,109,110,104,110,106,108,109,105,99,99,110,104,109,91,106,110,98,107,109,108,113,98,104,103,105,112,107,101,109,120,104,103,99,108,122,105,108,111,110,118,100,99,115,133,97,105,94,104,100,110,96,109,105,100,97,122,98,109,109,96,115,106,103,98,103,115,107,99,104,94,106,108,97,111,92,105,104,120,107,121,116,83,99,92,104,89,100,95,111,101,114,106,102,103,94,117,103,104,79,99,95,108,112,99,106,104,96,105,90,109,115,102,105,111,87,102,104,114,104,105,92,91,111,108,110,102,99,102,100,109,107,111,105,113,111,107,99,109,113,114,95,107,101,118,96,105,118,108,102,105,139,99,100,106,112,113,113,99,111,110,109,95,110,106,102,95,99,106,106,94,106,96,96,112,98,90,101,124,110,95,97,104,104,95,118,110,113,103,111,97,108,116,114,104,109,101,83,94,111,120,100,106,113,105,114,98,94,105,106,102,112,87,104,110,103,80,100,109,91,103,103,111,101,106,97,115,73,102,103,100,110,102,106,104,101,94,101,99,88,90,104,100,103,107,107,103,105,111,89,106,103,110,100,108,114,102,96,98,97,115,107,107,107,101,103,107,95,92,105,110,103,111,99,107,98,116,85,98,113,93,101,105,106,104,111,108,107,71,95,95,108,115,106,110,109,112,95,104,100,102,103,101,95,102,93,92,77,104,116,101,105,93,109,114,100,96,109,103,99,96,99,97,102,102,99,99,101,106,106,92,108,114,98,104,99,93,100,104,100,91,100,109,110,114,99,112,101,121,91,92,108,114,113,98,109,97,109,103,103,99,108,90,96,102,100,94,105,112,87,99,88,109,108,111,103,103,128,120,101,105,114,113,103,113,117,112,132,104,109,107,101,113,86,105,115,113,108,94,106,99,120,111,104,103,112,113,97,108,109,117,115,99,99,103,112,99,100,109,100,96,104,100,99,101,113,110,105,114,91,98,111,101,107,98,105,113,118,110,103,103,103,102,112,112,111,105,107,101,109,109,107,99,95,112,101,105,99,97,117,105,96,105,108,105,111,107,114,103,98,114,117,93,102,105,103,103,96,99,110,109,110,111,82,110,100,93,98,110,101,111,104,94,110,105,107,98,97,102,109,101,114,103,102,97,115,107,105,103,106,106,95,103,105,110,101,117,117,108,113,93,100,89,101,104,111,96,103,102,107,106,109,107,116,111,96,94,108,109,116,95,107,104,114,109,114,101,109,111,107,108,100,98,113,97,114,105,95,95,106,109,110,112,104,121,91,102,104,112,100,98,105,114,115,112,103,119,108,97,98,104,96,107,110,119,111,109,111,98,114,112,100,100,103,100,99,98,108,108,108,101,96,98,97,110,97,95,103,122,108,103,110,109,95,100,100,108,105,105,113,106,113,104,91,106,109,100,115,98,97,105,113,108,101,105,99,88,110,123,92,84,114,105,107,112,92,100,100,104,100,92,112,78,109,116,109,107,90,107,103,102,111,104,104,111,85,103,95,106,92,113,91,116,124,110,95,110,100,104,88,105,88,111,108,111,105,113,113,102,112,101,90,100,100,87,103,114,106,99,98,91,99,112,98,107,107,113,123,104,102,108,97,104,104,96,98,100,104,98,90,105,117,109,100,103,105,91,110,110,102,110,105,109,102,98,113,107,114,105,112,121,105,111,98,108,106,103,118,95,98,98,96,105,100,109,93,111,101,104,106,101,98,93,99,93,104,117,104,112,96,95,102,114,106,114,97,100,106,103,112,85,95,98,109,113,110,106,102,105,102,105,123,103,109,113,120,100,108,87,104,110,95,115,121,108,117,110,109,119,98,110,114,111,106,98,113,104,102,103,118,99,98,107,101,108,95,119,99,107,117,104,96,104,108,101,110,102,115,101,126,105,104,119,120,95,114,115,102,112,106,100,116,85,118,105,100,115,103,122,100,104,109,102,110,100,109,94,120,98,115,96,107,103,90,103,109,105,103,98,102,108,93,108,108,115,109,90,106,109,109,96,96,96,118,113,93,107,117,102,110,104,97,109,105,107,107,75,107,100,98,110,92,103,102,103,97,95,112,100,117,99,99,111,105,98,100,106,114,125,116,113,115,91,92,100,124,111,105,101,126,94,108,109,109,109,112,99,128,114,112,111,126,143,145,163,200,207,270,242,236,263,245,243,208,225,228,179,199,164,155,153,158,132,149,136,125,104,124,123,105,108,113,106,100,110,109,112,111,103,105,112,102,100,110,102,92,95,103,97,113,116,106,115,106,112,113,99,107,90,95,110,96,114,103,105,109,100,115,108,105,98,92,107,110,125,100,117,96,104,105,107,110,102,95,108,100,107,96,134,112,89,119,120,101,103,110,95,98,107,92,98,96,98,101,98,95,100,98,103,109,111,106,108,109,94,102,100,118,106,97,107,95,105,95,93,99,95,103,106,99,119,102,94,109,95,111,108,110,109,85,112,110,116,104,96,104,112,101,108,102,108,105,101,108,98,122,113,108,103,101,106,106,100,95,104,103,112,106,110,103,107,104,97,111,110,108,100,109,110,114,114,111,116,104,109,99,118,103,106,108,109,101,107,104,108,107,106,98,117,112,101,106,97,96,104,107,124,106,120,97,110,110,120,105,107,100,108,98,105,113,101,102,100,97,92,113,101,98,101,105,111,95,101,107,99,100,122,110,108,95,100,100,102,106,107,104,107,107,95,109,109,119,104,82,104,104,99,105,110,107,96,109,95,100,109,100,117,114,104,95,101,96,101,111,106,106,98,113,110,112,109,104,96,94,96,115,112,88,106,111,89,101,110,106,104,114,106,104,102,116,98,106,101,96,96,104,112,100,115,108,95,102,104,96,108,92,107,100,113,94,107,83,113,117,94,103,105,114,96,118,104,117,103,118,108,117,106,102,113,123,102,106,101,109,106,106,109,103,116,107,96,95,99,109,105,102,91,71,97,108,106,108,96,101,107,102,103,95,100,98,103,96,116,108,107,103,106,103,109,109,111,109,106,101,109,111,107,94,99,139,112,83,105,108,104,120,105,96,110,105,113,97,111,103,100,110,96,104,95,106,107,113,105,99,109,101,94,112,109,112,93,107,105,98,104,106,115,109,106,105,99,94,92,101,98,99,95,104,108,103,100,85,100,102,99,100,112,110,108,105,104,120,107,76,111,96,102,95,112,106,114,107,106,113,114,95,108,94,111,98,104,117,97,92,109,105,106,103,92,104,95,107,102,110,101,101,96,100,105,95,118,92,90,103,107,83,107,106,104,91,97,102,99,114,101,94,106,88,103,101,89,115,106,101,97,104,104,100,109,96,107,108,103,96,103,95,107,99,111,111,114,104,99,106,81,120,102,109,124,99,107,104,110,103,105,108,105,109,103,103,107,104,98,110,100,98,103,106,106,97,99,114,109,101,106,120,94,101,112,108,96,117,103,103,103,115,108,112,113,98,92,89,99,102,102,106,119,110,107,100,106,99,96,99,97,114,99,108,90,107,104,103,98,118,106,96,107,98,110,112,99,103,98,107,111,97,95,105,111,106,116,98,103,113,107,101,106,105,101,100,107,106,107,109,102,109,103,102,112,99,109,99,108,105,93,108,108,106,97,102,114,99,110,89,114,107,109,105,110,105,111,116,111,100,97,103,113,110,106,83,107,101,95,109,103,101,110,99,96,123,92,104,104,101,87,103,103,112,97,109,109,102,101,103,97,123,98,119,100,122,106,102,95,101,99,92,105,107,99,101,104,104,78,87,99,106,112,97,108,106,94,101,110,100,105,100,101,102,119,119,104,93,128,103,102,111,94,104,105,88,113,108,101,99,98,113,110,100,107,114,94,92,99,96,115,98,101,116,115,103,109,99,109,100,106,103,105,92,101,81,113,96,106,102,91,105,109,109,105,98,108,105,96,93,103,111,99,97,105,110,103,111,89,105,97,104,105,107,102,107,106,105,109,105,92,108,106,104,100,99,120,93,101,110,101,101,121,106,112,96,95,111,93,95,113,107,109,102,100,98,117,103,109,113,92,100,112,111,112,95,107,104,94,106,110,102,107,108,105,103,103,97,106,99,115,91,104,109,112,101,104,115,112,99,112,116,104,101,113,107,98,99,115,116,109,113,105,100,104,101,104,102,105,108,97,107,103,104,80,98,105,102,108,115,113,91,107,106,100,100,108,108,110,104,87,95,95,100,99,101,108,99,99,104,96,123,100,105,109,93,102,105,87,88,102,112,105,108,107,104,102,105,92,100,106,102,110,99,98,99,114,102,106,112,98,84,101,106,105,105,105,104,113,89,108,100,92,97,91,73,104,98,102,110,93,110,103,100,99,93,109,99,99,104,104,106,98,105,99,100,105,95,103,102,115,109,97,107,109,127,104,105,107,101,115,109,109,115,98,107,98,96,109,87,102,104,96,106,94,105,100,100,109,102,113,98,115,116,118,106,88,109,99,104,108,98,102,104,95,105,86,100,98,98,106,84,103,106,100,103,94,91,91,106,96,95,106,99,96,94,109,111,98,104,106,107,97,94,95,105,100,102,100,105,103,109,83,94,106,99,109,116,103,101,109,103,104,96,102,88,104,103,98,92,110,99,95,106,102,109,92,100,101,111,101,108,100,91,102,106,109,108,108,101,97,88,102,98,104,103,110,96,104,104,102,105,101,107,99,100,93,106,96,103,116, +577.32849,100,92,96,96,98,108,100,98,88,101,94,103,107,85,107,113,102,108,110,83,97,110,133,99,110,96,100,96,115,106,127,101,107,99,107,106,102,96,104,105,114,89,98,98,103,102,92,96,107,106,98,107,106,113,99,94,101,98,107,93,99,116,116,97,103,101,93,108,99,113,107,107,94,98,98,117,104,102,111,105,92,114,120,97,86,92,93,112,109,94,105,97,94,106,114,101,106,94,103,117,105,93,104,121,84,95,94,90,112,115,108,102,101,109,111,97,94,101,91,106,110,91,107,114,102,98,104,95,95,110,109,110,100,99,104,106,104,113,102,95,108,100,105,103,99,98,115,103,91,95,109,110,103,93,95,102,99,113,103,94,82,105,101,105,105,108,108,110,97,94,101,101,100,99,103,97,119,102,106,103,108,109,93,106,123,99,95,82,113,84,96,93,114,101,98,104,102,105,106,94,103,99,110,106,81,95,101,112,103,103,88,103,111,95,107,109,91,104,108,104,105,114,117,104,91,101,88,103,107,98,100,94,111,104,104,95,101,117,88,96,105,108,117,99,99,108,102,109,109,115,109,101,99,112,106,100,101,104,96,119,105,109,99,101,114,101,98,102,103,100,93,107,99,114,109,102,116,102,96,106,102,107,96,105,101,99,88,99,103,107,106,113,108,99,112,106,112,105,110,116,107,109,96,108,105,108,103,114,104,114,102,107,106,109,105,118,105,91,96,108,94,93,92,109,99,106,103,85,104,109,95,114,98,99,100,115,122,95,108,100,92,96,102,103,103,107,95,109,111,100,102,101,98,99,108,107,105,98,109,112,102,119,90,116,105,110,95,107,103,106,95,108,102,107,109,90,102,100,102,109,105,98,104,99,116,102,84,100,102,112,104,93,102,97,107,110,100,88,109,110,103,96,105,93,110,88,100,105,105,100,105,105,111,102,116,105,107,106,104,108,108,109,99,109,96,114,103,99,90,96,99,87,100,109,108,104,117,110,91,114,116,99,100,86,109,99,98,100,116,102,108,103,98,111,111,92,109,107,121,111,98,107,109,88,112,113,111,99,109,104,95,109,100,113,107,106,113,103,113,99,103,115,74,100,105,100,106,119,90,106,101,96,118,103,99,94,92,108,97,107,109,105,103,103,102,105,109,111,89,95,97,101,101,98,99,114,103,106,101,104,110,99,106,80,102,114,97,110,110,117,113,108,96,97,104,116,106,96,99,109,104,101,111,117,99,94,93,105,105,100,115,107,114,107,108,109,102,112,101,94,108,103,102,95,92,104,91,106,99,108,92,121,94,108,100,109,99,80,110,105,99,114,93,108,102,106,129,112,101,103,99,117,111,113,113,101,89,100,118,102,112,98,107,118,98,107,89,111,101,111,97,103,104,104,95,101,108,97,106,106,103,104,99,99,105,105,111,112,109,102,88,104,107,105,101,113,103,93,106,110,108,107,105,107,93,104,110,88,105,107,102,98,113,99,97,107,112,111,111,117,109,99,101,102,102,109,101,97,107,101,104,102,109,99,104,109,100,108,82,96,110,102,143,97,94,94,104,102,98,103,103,105,107,108,113,113,111,89,105,100,102,100,102,104,114,106,124,117,107,101,94,106,102,99,106,104,95,101,94,101,94,114,103,104,101,105,100,114,110,99,112,114,105,97,97,107,108,92,107,108,98,114,102,100,101,103,97,102,89,105,103,106,105,100,108,98,103,117,110,84,113,104,104,105,92,100,88,110,95,107,117,100,106,96,97,102,103,95,95,105,101,106,114,101,99,103,104,105,117,104,105,116,108,103,108,104,106,116,113,113,103,99,100,86,109,96,101,110,107,100,98,104,107,100,113,108,112,109,103,98,104,113,99,102,88,101,96,99,109,117,110,102,104,107,104,108,96,116,116,102,97,108,98,96,99,98,103,106,108,100,142,95,97,115,99,102,111,107,101,106,109,103,112,103,106,91,91,108,86,110,108,104,97,116,94,115,95,106,108,102,113,102,108,112,114,105,106,119,106,102,107,100,109,102,94,108,99,97,116,103,98,111,104,112,105,105,101,108,86,91,112,115,116,112,99,107,95,108,105,103,115,108,105,98,100,115,95,106,107,98,93,113,104,109,105,98,110,93,119,105,105,113,102,88,104,90,111,107,100,109,104,103,102,99,121,101,102,127,102,97,107,105,102,112,108,113,109,96,99,116,106,97,107,94,99,110,100,107,105,105,91,109,133,98,96,94,99,101,103,117,107,106,90,104,97,99,107,112,101,80,100,106,104,75,112,104,100,88,106,112,108,114,96,96,95,92,94,103,115,108,93,109,122,116,100,108,99,119,102,106,119,118,137,128,128,113,129,144,148,178,199,236,229,204,247,272,185,237,241,224,191,168,204,238,169,153,137,133,139,111,106,126,125,105,105,110,110,98,132,106,82,99,116,113,106,122,102,111,106,121,89,103,109,100,105,115,108,110,112,100,98,107,108,90,100,107,103,98,117,113,97,100,101,107,97,106,112,109,105,108,95,120,114,109,104,104,103,101,107,105,96,108,118,104,96,103,99,104,98,108,108,110,109,102,109,106,102,98,99,97,106,108,104,111,100,103,106,105,100,102,106,105,101,103,102,99,84,105,96,103,115,102,110,111,115,104,119,99,115,111,110,102,107,102,101,103,98,112,114,102,104,92,97,104,98,109,114,110,80,106,109,108,113,104,109,98,116,106,113,96,115,113,116,106,107,99,97,103,99,106,123,99,106,100,100,115,104,104,101,95,109,124,101,109,97,109,98,111,112,97,103,115,107,112,104,87,115,119,131,106,115,114,122,100,101,109,117,95,103,103,108,109,108,100,93,91,102,104,108,101,104,92,104,116,103,111,106,103,100,113,107,117,104,112,103,101,99,114,109,111,84,113,109,97,95,101,104,101,109,91,114,100,98,111,109,102,121,97,104,104,101,94,91,100,117,100,111,104,112,117,112,102,109,101,105,105,87,113,109,99,118,104,105,98,111,100,108,111,98,105,107,102,112,106,116,108,103,106,121,117,109,105,103,99,110,121,102,112,101,102,104,113,103,104,109,106,106,100,104,110,115,121,113,101,113,106,116,103,107,110,110,120,107,104,112,80,102,102,120,106,115,104,78,98,105,93,115,104,112,96,101,104,98,109,103,123,105,99,106,113,96,92,107,105,107,107,105,97,107,108,109,111,107,104,104,98,121,102,106,93,113,101,67,113,88,120,103,100,93,112,104,93,104,113,110,140,74,109,103,107,96,105,106,108,77,96,109,115,102,107,110,99,110,102,99,99,103,91,102,98,105,112,101,111,102,110,108,109,106,106,98,110,108,109,101,102,110,106,107,101,99,126,104,106,110,95,110,103,107,100,106,106,129,106,108,104,117,105,110,109,115,102,104,95,104,110,120,112,101,98,106,102,93,106,98,105,109,111,115,105,112,104,103,106,94,100,96,103,102,106,108,99,112,115,96,112,113,105,101,106,102,102,98,107,103,113,115,104,106,105,103,102,121,113,110,121,105,107,106,109,100,118,113,108,108,96,105,103,102,92,110,103,100,104,106,115,109,111,107,96,103,106,104,109,121,107,108,101,115,114,87,113,117,109,108,105,103,97,106,109,99,95,107,107,98,99,102,109,76,123,100,106,109,108,112,92,104,104,96,109,111,115,97,114,112,112,132,102,116,104,115,109,118,114,101,95,101,106,96,105,99,106,95,99,117,111,117,95,75,104,98,111,97,100,106,109,108,107,112,108,118,88,103,94,104,99,104,109,117,100,104,97,100,107,121,116,110,106,114,106,113,100,94,99,110,119,105,95,90,112,102,120,97,95,112,106,115,97,103,106,109,117,108,127,108,111,116,99,105,114,81,97,114,110,100,91,95,103,104,109,107,117,104,107,102,117,118,98,107,105,113,112,116,105,109,106,103,107,104,110,99,116,111,109,110,113,103,108,95,103,105,101,111,111,115,106,97,106,116,105,112,96,113,99,101,101,108,110,83,120,105,111,118,106,93,102,107,97,111,108,97,108,95,97,105,102,99,113,108,105,107,99,111,97,101,110,105,111,97,115,117,109,97,106,112,109,103,100,102,103,102,112,107,94,99,103,87,93,106,96,106,100,100,116,96,107,102,103,99,110,94,103,108,77,109,106,108,93,104,99,108,100,99,99,107,115,117,123,101,106,105,107,107,102,103,125,103,91,88,117,100,108,121,113,96,108,111,111,104,104,104,86,117,99,103,111,99,99,105,100,103,106,102,102,113,118,96,104,106,102,117,95,104,104,108,103,109,117,105,111,99,109,112,102,111,111,109,103,93,116,104,97,103,72,117,101,105,93,115,96,104,105,119,109,104,102,104,108,103,102,94,104,112,110,101,105,100,106,108,92,105,92,99,94,96,104,99,111,125,96,112,142,97,93,96,103,96,105,85,100,110,112,108,99,100,102,106,105,113,103,106,109,115,100,107,103,100,101,100,98,109,108,98,120,107,77,99,97,97,101,104,96,114,99,108,106,93,104,106,107,108,109,110,102,115,100,96,91,100,112,103,121,100,98,98,98,110,97,100,104,94,112,103,120,104,96,104,104,98,104,108,99,110,104,105,111,109,107,100,104,101,92,105,100,119,97,108,107,114,103,94,112,111,106,117,99,102,108,102,100,99,102,103,111,89,106,107,102,109,111,92,115,116,103,103,96,117,93,123,88,104,102,102,99,113,101,106,104,93,113,108,101,99,117,113,112,113,102,95,103,107,80,103,94,113,103,103,95,110,105,109,98,98,106,100,104,105,107,101,110,126,88,113,98,112,107,99,101,104,106,113,112,111,98,98,100,89,119,102,97,110,104,98,97,98,105,109,117,105,89,128,93,111,103,102,106,116,100,99,100, +577.46942,114,103,92,99,73,109,108,99,98,110,94,103,102,114,99,111,110,99,104,112,104,104,93,104,100,105,96,93,105,99,113,108,93,112,84,105,107,106,97,94,88,112,97,113,95,120,99,105,106,113,102,104,110,105,118,87,110,106,110,89,106,103,74,103,104,110,103,108,94,105,99,102,108,102,98,119,108,101,110,101,112,104,100,108,100,93,99,102,111,98,97,106,104,104,99,88,110,97,104,96,118,97,98,100,104,106,105,102,113,95,105,109,116,107,108,98,105,101,108,101,106,116,98,116,99,114,113,113,119,101,112,121,102,106,103,103,91,96,100,94,99,90,107,108,105,111,97,107,101,97,112,99,117,65,115,102,103,106,102,107,107,96,90,103,103,96,101,76,109,102,115,99,109,100,104,99,99,102,102,100,110,116,104,107,92,105,104,109,113,111,102,110,101,108,102,115,101,109,103,105,112,93,105,102,94,100,98,99,108,111,103,103,116,107,106,104,117,104,104,116,99,105,109,108,99,108,107,104,103,114,107,108,111,113,110,96,96,113,117,98,98,101,104,116,116,123,97,104,95,107,107,107,101,108,98,118,121,109,107,110,105,119,104,122,94,100,100,105,110,96,117,111,105,108,100,100,101,113,102,107,109,112,111,87,100,94,94,105,112,107,94,91,110,96,110,103,107,95,109,102,105,118,113,104,95,123,100,95,112,103,89,119,111,107,104,103,102,109,126,97,104,109,116,105,102,107,95,102,112,116,96,72,113,104,104,102,107,97,109,91,138,106,103,110,104,100,104,105,108,76,111,105,95,110,100,118,112,113,105,101,90,102,104,110,104,112,115,107,97,113,101,115,101,84,120,104,95,107,113,111,120,109,103,102,103,102,104,104,108,94,116,106,113,106,90,111,109,109,108,102,98,105,100,107,100,99,99,100,109,114,105,100,116,114,106,106,98,106,98,93,111,99,94,106,89,104,106,95,94,110,101,107,100,110,103,109,110,109,103,115,108,112,105,109,105,116,103,105,110,118,99,111,97,102,93,104,97,129,110,115,116,112,114,103,104,111,95,105,109,108,105,99,97,102,96,101,112,111,101,108,113,107,110,106,109,96,103,101,97,100,98,109,124,110,99,105,99,103,108,96,106,105,111,104,95,107,110,102,105,104,103,91,111,110,111,105,104,117,100,106,103,99,106,118,99,112,100,106,95,95,131,112,112,99,109,96,107,112,113,115,93,107,101,107,108,101,94,112,110,100,108,97,134,107,94,105,116,88,109,112,111,112,113,109,114,101,113,104,95,95,103,108,105,110,112,100,102,118,110,107,120,98,108,110,111,105,103,116,109,112,92,104,108,109,111,111,104,107,106,106,119,109,111,102,108,107,109,89,104,113,108,98,107,122,101,109,97,105,103,100,110,102,102,104,102,103,112,99,101,101,98,112,100,109,101,98,102,106,109,113,126,104,97,108,97,96,114,87,101,116,103,94,106,110,106,106,97,105,103,106,112,92,114,92,102,122,110,104,109,108,113,125,101,103,125,99,117,111,129,105,99,98,126,94,121,104,105,98,108,103,108,108,108,102,107,103,105,119,104,83,105,109,97,105,105,110,92,102,100,99,104,109,108,95,99,109,95,98,115,107,100,98,110,103,94,118,114,95,96,111,106,102,95,106,98,106,106,109,104,99,105,103,106,104,113,103,112,95,107,105,103,95,112,99,97,93,104,106,103,106,105,113,97,99,97,108,101,100,111,101,104,113,124,106,102,112,107,102,121,104,109,101,102,112,95,101,100,109,105,113,105,117,112,90,106,103,119,109,102,102,122,106,97,110,111,108,105,99,106,97,112,83,111,94,103,95,127,100,111,94,102,111,113,100,107,105,104,116,107,114,118,100,103,112,114,98,101,105,114,121,84,116,104,107,111,119,95,101,104,109,105,97,110,102,110,103,103,101,99,115,107,102,98,97,111,96,100,110,104,115,106,118,111,100,94,116,120,103,92,100,110,109,105,116,107,105,115,109,101,109,108,110,111,103,106,106,99,100,98,117,80,102,107,104,113,107,101,97,108,118,83,104,107,111,112,110,94,114,98,111,83,98,105,100,102,113,98,99,106,95,107,111,106,114,107,97,91,116,111,116,94,124,103,110,105,105,101,99,106,102,108,109,107,113,101,118,108,104,94,94,117,104,111,106,110,117,107,115,102,108,109,101,111,108,99,95,105,98,107,104,123,107,105,122,134,105,95,95,99,96,108,115,104,109,101,109,82,112,115,124,100,111,103,102,116,107,111,95,113,110,93,125,110,126,98,109,108,112,94,115,114,121,97,105,118,106,110,111,103,104,122,107,117,110,110,128,136,153,158,184,190,226,268,247,237,235,234,232,222,215,210,201,161,175,184,149,147,150,145,123,120,121,111,112,96,107,108,90,113,114,117,114,104,116,108,106,102,122,95,95,105,118,115,127,109,102,102,93,106,115,109,116,105,102,103,112,113,106,115,97,109,87,94,117,112,110,102,89,108,113,98,114,101,99,109,105,99,106,107,113,103,119,102,100,91,113,98,111,107,139,102,104,109,101,106,93,113,106,99,109,99,106,110,115,102,108,98,102,128,106,109,98,111,105,100,105,111,101,104,115,100,99,120,99,108,94,103,112,109,104,105,99,111,104,102,114,106,104,106,105,99,99,123,111,94,91,108,101,121,107,92,104,110,105,89,99,110,99,107,106,108,106,83,106,115,104,109,108,110,102,96,106,104,109,107,103,105,96,118,101,104,81,100,94,103,116,127,93,107,95,100,109,99,108,107,103,106,95,99,114,100,95,122,101,111,100,103,100,112,108,113,102,106,135,101,104,106,113,112,102,112,97,98,115,116,101,112,108,97,104,125,99,111,113,104,113,111,114,102,105,106,104,108,103,96,100,106,103,100,105,101,111,105,113,112,109,108,104,118,100,109,115,106,109,107,108,108,104,105,98,107,108,96,107,111,104,109,102,113,106,102,129,105,109,108,106,104,105,102,91,100,107,113,102,108,106,101,103,99,113,99,114,110,106,99,114,102,95,106,110,105,104,95,112,109,93,95,106,97,97,111,94,102,102,101,102,105,103,108,109,104,103,99,106,121,101,113,112,112,102,99,97,130,108,100,113,108,99,116,108,114,114,97,99,103,106,103,110,116,112,113,108,107,113,113,100,102,103,106,102,104,113,112,108,108,93,124,99,104,85,112,104,109,112,99,106,99,96,102,102,116,111,128,111,104,105,108,120,108,95,111,98,95,95,109,108,101,112,108,93,95,105,98,123,111,107,115,107,103,95,96,117,105,107,100,104,102,97,100,95,115,114,114,106,111,102,107,101,109,108,98,98,95,106,100,107,104,67,99,94,109,110,104,114,102,99,112,98,112,85,122,95,106,116,94,98,114,97,112,94,139,103,78,98,99,88,124,94,92,97,105,105,111,108,96,107,128,97,108,124,114,105,102,106,104,96,116,115,99,104,120,98,115,107,95,98,97,106,104,91,103,109,103,105,109,108,110,104,113,100,108,109,104,109,101,111,98,104,90,102,104,102,109,104,104,108,114,100,96,100,102,100,107,115,109,97,103,101,99,121,99,108,99,103,107,101,99,108,115,109,96,105,112,106,95,106,112,74,103,104,109,92,102,101,101,110,99,107,105,99,98,106,103,116,94,113,103,101,115,112,107,104,99,101,104,111,101,106,89,101,116,113,102,106,100,89,111,113,117,109,95,110,104,82,98,108,110,115,98,113,108,90,96,103,106,109,99,93,102,103,90,107,113,110,126,112,108,111,104,106,103,107,98,111,107,104,111,104,96,102,101,100,112,99,93,105,91,113,102,96,101,120,102,113,106,96,100,107,116,93,101,110,107,94,106,102,90,90,99,107,126,108,103,95,108,105,102,93,107,114,103,94,109,113,112,95,113,100,96,122,109,119,104,104,103,110,103,96,111,100,117,102,95,87,107,106,107,110,109,101,113,112,113,110,110,94,108,104,113,102,125,102,103,104,113,105,106,115,99,105,108,102,95,105,111,113,109,107,99,97,101,108,103,98,92,104,109,86,118,117,107,117,109,108,102,117,112,107,98,99,104,104,86,111,110,107,111,105,111,109,94,112,104,109,95,104,97,107,100,77,106,104,101,105,108,98,104,100,105,109,111,106,114,109,99,118,99,116,83,96,107,113,98,114,102,99,79,96,103,109,100,104,122,106,101,95,116,101,93,97,105,91,100,99,103,100,98,105,105,107,121,113,107,100,115,101,110,95,99,113,111,103,108,96,112,87,105,140,108,106,100,114,107,110,104,121,116,112,111,119,108,103,110,96,108,118,110,104,106,97,109,112,102,105,105,107,111,109,110,116,107,109,98,86,94,103,106,98,109,104,97,100,90,104,105,96,92,104,114,102,98,110,108,100,99,101,101,96,105,105,99,111,99,86,95,103,97,106,106,102,95,92,108,106,109,103,98,111,110,91,104,112,87,117,101,97,105,113,94,121,98,79,111,100,106,102,99,99,98,98,110,112,117,95,99,100,104,111,117,102,99,94,111,101,105,108,99,105,107,101,93,100,112,104,113,98,108,123,96,105,97,113,109,110,105,105,106,109,102,91,99,129,103,104,115,102,107,109,106,104,109,105,107,122,98,105,101,107,107,103,110,94,99,107,104,109,110,95,97,132,93,100,103,98,115,94,107,103,103,95,100,106,108,98,113,97,93,87,105,98,106,107,110,108,109,105,101,97,115,119,101,96,110,106,115,105,98,107,96,113,103,87,121,91,119,115,88,109,113,98,104,103,102,98,108,105,117,93,108,96,118,102,107,105,102,100,92,111,101,107,133,91,94,94,104,99,102,95,103,95,100,111,115,81,114,77,102,94,104,104, +577.61041,123,107,100,109,113,105,109,101,112,95,95,91,95,107,98,115,103,106,101,105,121,106,111,99,103,116,108,95,99,98,113,108,104,104,96,109,104,103,106,115,95,114,108,101,103,123,98,101,92,99,97,96,114,95,116,94,96,106,99,95,100,108,106,104,108,93,93,109,110,96,120,121,108,106,110,110,95,106,102,88,103,96,106,96,111,85,106,100,116,107,84,96,91,107,94,100,101,113,112,103,88,101,102,97,102,107,103,112,105,101,105,94,99,96,97,105,104,96,118,105,112,102,101,113,101,112,110,107,103,117,104,104,104,91,100,112,91,102,109,99,89,100,74,91,90,100,111,89,106,94,91,109,93,100,94,97,100,93,101,98,107,113,115,98,116,93,100,104,103,104,101,104,88,106,114,113,106,102,107,106,107,96,102,103,86,105,95,97,90,105,99,114,110,108,105,108,104,110,118,119,99,112,93,100,108,105,114,97,121,111,97,110,117,103,120,112,125,101,106,107,109,104,108,95,108,99,104,106,109,118,111,112,85,101,103,119,113,109,98,106,101,105,104,102,86,106,117,105,106,114,99,102,101,121,92,106,105,110,101,108,106,92,99,109,91,101,101,103,127,96,118,104,108,95,106,102,113,102,105,104,106,108,114,95,100,106,96,71,100,119,102,99,109,111,116,123,107,109,108,109,112,94,102,107,113,107,101,124,114,71,90,117,106,98,104,99,100,109,103,93,103,104,105,111,104,101,87,100,104,103,120,99,100,105,108,94,100,97,97,101,114,105,107,104,100,109,94,116,102,124,109,109,101,107,110,106,101,111,112,107,100,109,102,107,96,93,117,109,100,109,116,104,115,115,117,86,113,97,99,104,99,110,96,108,108,93,100,110,102,107,122,92,106,106,84,105,103,100,90,110,108,99,113,106,110,105,96,98,105,109,113,106,103,104,107,101,109,101,114,105,93,107,117,95,104,96,104,110,106,111,104,113,120,104,115,117,93,102,138,89,112,97,97,106,112,102,118,110,111,98,105,97,109,118,96,137,108,91,98,105,107,98,112,105,100,104,102,100,96,91,115,111,104,97,105,105,100,98,100,107,104,101,106,107,89,100,112,99,103,109,112,110,96,109,93,103,106,104,106,114,101,95,106,102,113,101,94,110,88,105,95,106,108,100,102,111,110,101,105,100,90,101,130,114,102,101,122,112,99,113,105,108,102,112,126,101,101,106,108,101,102,102,103,117,113,97,105,109,107,99,115,96,117,106,98,105,113,96,99,105,108,110,103,108,104,102,117,111,96,80,118,100,90,108,105,136,110,106,100,102,112,127,107,94,102,103,107,106,106,99,105,101,91,104,108,114,108,103,104,109,106,118,111,114,111,105,102,101,98,111,115,94,108,102,109,98,104,105,109,106,107,108,102,114,121,101,96,102,92,108,104,113,109,104,103,96,93,88,102,105,103,116,100,98,100,99,103,107,107,97,98,101,101,109,95,114,105,109,98,109,106,106,109,99,94,100,101,98,105,105,100,104,108,100,87,123,100,109,99,103,101,105,105,111,108,106,95,107,92,117,102,101,96,99,132,117,101,87,104,95,90,91,104,97,103,107,113,106,94,97,97,99,89,100,102,110,66,107,95,97,102,104,84,118,116,101,98,114,109,126,98,91,97,102,94,114,102,95,114,108,107,90,100,116,104,100,107,117,97,103,102,96,112,95,105,104,101,89,93,108,109,106,101,94,92,99,80,92,98,106,108,88,109,102,103,111,105,100,98,101,101,92,116,101,98,94,101,110,111,98,99,96,100,103,97,96,112,107,104,126,96,98,91,99,111,106,117,102,107,111,128,96,91,99,95,99,104,113,104,102,97,98,109,94,109,95,105,96,103,103,111,103,104,105,95,100,104,104,107,104,100,100,106,110,105,91,105,93,95,103,94,98,110,112,79,108,98,84,95,103,100,110,110,109,96,101,97,94,109,109,105,103,107,89,100,99,101,96,105,99,107,108,99,100,100,102,111,116,91,101,96,99,95,89,96,78,103,101,108,94,98,107,117,110,114,110,101,90,107,115,100,101,100,112,110,97,87,104,104,96,117,91,104,99,101,98,90,98,98,112,94,110,100,109,94,100,100,105,92,106,100,106,104,104,97,102,104,91,103,102,107,111,108,103,108,101,104,106,94,108,103,112,103,97,109,111,94,93,108,117,95,102,108,103,109,110,100,105,93,115,106,107,97,98,117,100,101,105,108,103,96,104,110,102,99,101,106,101,109,114,101,105,107,107,119,103,113,100,105,112,88,95,106,107,110,127,120,110,96,100,107,103,104,93,106,112,111,113,105,100,104,110,111,107,123,115,128,130,135,157,171,216,262,258,267,255,227,216,250,226,240,187,213,163,174,167,144,138,126,115,108,107,105,114,101,103,99,106,109,107,113,110,121,115,109,112,100,88,98,106,92,108,97,110,116,110,102,109,110,90,103,113,98,91,104,99,144,102,126,112,110,110,107,120,102,102,107,102,113,115,114,112,100,111,102,91,101,107,103,96,105,97,102,105,123,115,103,109,105,103,91,106,94,91,103,117,108,100,110,104,127,108,87,104,121,99,100,108,106,119,121,108,116,112,94,113,115,96,100,112,106,102,104,106,114,114,101,105,103,99,102,115,106,100,105,117,113,108,117,107,108,106,102,117,107,102,108,105,98,121,115,99,107,108,104,102,108,99,112,111,108,111,98,108,108,106,102,105,117,104,134,113,116,101,102,112,105,107,107,110,112,115,96,104,109,103,104,119,116,105,113,124,99,120,102,103,113,112,102,106,110,101,112,101,94,106,116,114,98,107,110,131,115,87,115,106,111,120,113,111,112,107,105,112,108,103,105,105,81,114,101,104,107,108,115,94,98,109,99,101,103,116,109,113,103,115,110,114,109,107,98,75,97,107,99,94,99,111,109,106,103,109,105,117,93,113,101,108,102,106,92,104,104,102,100,116,99,99,92,103,95,114,117,106,108,100,97,92,100,103,102,82,112,110,117,93,105,102,98,100,96,117,113,99,109,100,112,106,117,125,123,96,109,107,104,98,129,115,113,103,116,115,117,100,88,105,121,110,105,96,95,112,102,114,114,84,107,104,100,101,77,104,106,110,105,106,111,102,113,108,98,99,108,111,115,105,108,121,118,103,106,119,98,92,102,112,112,108,105,96,84,106,111,115,107,96,112,113,99,77,112,99,110,106,105,107,110,107,117,89,116,105,100,105,110,109,108,105,113,106,88,100,98,107,110,114,109,108,112,111,103,97,87,118,103,120,106,105,93,105,105,114,111,102,96,112,103,101,95,121,110,110,106,108,82,107,106,95,116,115,115,103,112,103,93,103,108,98,94,105,97,104,99,110,113,114,111,110,104,101,99,106,107,109,96,110,98,98,117,114,108,102,101,108,104,101,112,103,105,113,104,107,110,92,102,103,101,105,106,102,112,99,112,99,104,105,106,106,106,105,115,104,109,111,107,99,114,104,111,104,112,115,96,107,107,101,127,108,108,96,98,75,109,110,101,105,108,110,97,110,110,91,105,110,104,109,106,112,101,104,101,98,104,100,111,104,105,103,91,116,109,110,101,118,108,92,89,113,99,111,94,104,114,112,98,113,99,106,121,107,107,111,107,109,126,111,102,115,104,95,100,97,108,101,122,111,114,111,115,110,119,121,116,111,112,100,102,102,107,102,98,110,120,103,96,105,110,109,112,106,113,102,105,100,122,106,117,103,100,107,105,84,104,98,102,113,94,102,98,114,106,108,104,120,115,109,115,105,111,110,112,114,107,106,104,109,107,107,111,117,100,100,110,104,102,114,115,100,108,108,102,107,74,100,111,111,102,102,109,102,106,108,100,112,107,111,99,99,117,90,108,106,103,111,91,111,113,108,114,99,112,111,100,112,100,111,99,83,104,99,110,113,96,109,99,110,112,81,96,98,110,103,113,107,111,110,102,107,93,99,103,100,97,103,103,105,97,97,106,104,110,107,143,96,104,108,112,113,105,104,122,109,105,109,117,108,107,111,111,106,96,104,112,107,108,109,106,98,105,96,108,115,115,109,105,106,109,110,114,103,103,104,99,94,112,106,113,91,110,110,101,105,114,89,114,99,99,101,91,96,109,116,97,109,100,102,104,120,107,101,112,88,111,111,110,106,106,102,120,99,118,111,103,108,102,104,102,105,115,114,104,106,96,94,113,109,105,110,105,94,102,104,106,98,102,94,118,104,115,107,107,109,124,114,109,108,115,109,102,111,98,112,110,102,117,111,98,104,106,89,102,100,111,103,95,117,92,114,117,93,111,110,98,116,99,92,106,124,109,103,110,104,81,105,112,110,115,127,108,103,97,107,95,99,103,107,104,93,107,98,110,92,106,108,100,113,93,105,102,102,104,105,103,102,103,108,105,98,91,98,103,102,103,113,103,109,93,109,98,106,96,92,102,93,105,111,102,105,107,106,120,98,102,93,105,109,111,113,96,97,109,104,94,114,112,120,109,118,110,112,98,116,125,106,107,104,96,107,90,104,85,106,119,92,102,113,115,107,93,105,96,104,113,104,103,116,117,104,117,103,117,93,116,89,95,106,110,114,107,97,108,102,103,102,135,109,95,108,110,110,86,112,101,115,89,105,99,99,113,105,89,110,106,100,104,110,100,110,108,113,104,101,116,91,92,98,106,117,114,105,104,108,99,104,117,101,106,105,102,98,114,106,106,106,115,126,99,102,109,91,107,124,103,110,104,109,113,91,100,112,110,103,102,96,107,120,116,109,109,122,99,94,75,110,121,105,114,103,104,104,98,116,93,96,101,111,115,95,94,96,98,102,111,103,114,112,98,109,97,98,96,93,110,103,129,110,105,100,86,92, +577.75134,100,105,76,107,103,109,98,103,113,129,103,124,121,104,101,100,106,109,93,106,106,107,101,103,100,108,105,109,98,102,99,112,109,106,109,113,111,97,108,120,101,111,98,109,117,111,123,103,108,108,111,100,101,124,96,109,98,102,115,90,110,97,99,81,91,108,98,107,101,95,110,101,104,103,94,113,97,106,113,107,92,90,116,97,96,97,100,111,115,101,101,80,101,107,100,103,112,102,108,100,118,87,106,103,116,96,106,101,102,92,119,98,111,98,104,122,105,123,109,99,113,92,97,95,105,111,106,106,100,95,109,114,117,105,103,81,99,106,102,102,98,103,110,109,102,99,116,85,97,96,99,101,115,92,86,92,103,112,93,100,111,113,100,91,99,96,110,100,105,105,106,113,90,97,112,105,112,98,105,96,102,114,101,99,114,104,96,95,100,104,94,102,107,112,102,98,106,107,107,103,115,100,108,102,100,99,106,102,84,103,99,97,93,111,92,96,113,130,93,94,103,108,103,92,89,106,99,100,109,96,94,112,103,98,95,121,82,95,104,92,95,93,101,105,108,94,107,98,106,97,100,105,86,82,129,102,98,99,116,110,95,99,97,90,89,101,108,103,103,105,112,99,97,95,101,104,97,107,95,103,97,101,103,103,106,103,98,106,102,101,119,104,101,105,113,100,99,102,93,111,87,89,99,99,107,103,100,102,92,113,100,110,106,113,106,99,106,116,99,92,99,102,111,107,97,102,108,67,112,108,119,98,104,102,103,104,101,99,96,100,112,97,107,94,114,94,108,100,109,111,107,111,120,106,118,116,105,108,115,113,101,101,94,96,106,94,111,119,113,104,103,98,112,111,104,107,113,98,110,107,113,110,111,111,95,105,114,97,103,92,117,93,93,113,98,94,103,102,108,93,108,92,103,101,99,117,113,120,105,99,106,109,106,97,101,91,101,107,110,108,104,95,95,113,125,104,93,98,91,105,103,109,99,91,106,103,95,116,99,95,98,100,101,110,99,101,106,105,105,116,105,98,106,109,99,98,112,113,102,100,98,105,111,100,120,104,100,105,115,92,99,106,102,111,111,101,109,107,109,95,102,105,112,101,102,114,98,108,97,99,109,113,102,106,98,95,96,102,88,109,116,120,114,99,112,106,116,109,99,102,113,108,113,103,100,98,108,95,110,115,104,107,100,106,95,95,113,103,106,94,94,108,99,69,106,98,103,91,104,81,105,100,107,105,96,105,98,101,104,99,95,104,106,100,107,98,79,95,91,103,104,84,97,107,101,113,113,111,110,105,93,92,106,101,105,103,107,100,84,115,103,98,83,105,112,99,97,100,108,111,98,104,90,98,91,109,106,99,99,104,111,98,105,100,105,111,110,90,102,103,111,107,117,103,106,108,99,113,97,110,102,114,114,106,98,114,95,106,109,103,93,93,104,102,105,101,109,94,125,113,104,106,110,113,104,88,120,102,104,119,100,96,109,105,95,105,106,108,103,100,98,117,100,105,91,104,118,102,99,103,116,107,102,110,105,106,110,96,108,114,108,116,105,97,101,121,99,103,102,111,108,106,99,118,103,102,99,102,99,103,124,94,95,96,114,104,111,103,94,113,101,103,107,106,97,101,96,98,113,91,107,109,98,99,99,107,108,108,96,114,108,101,86,104,100,112,109,100,108,100,120,92,103,106,100,102,105,105,90,104,102,92,99,103,103,107,86,84,114,105,102,109,96,115,98,119,106,104,102,98,108,114,111,111,105,119,107,100,104,104,94,97,108,113,102,109,106,113,98,103,106,100,113,95,105,91,96,107,106,108,114,106,102,107,116,109,101,95,110,108,111,96,111,105,106,100,103,96,103,94,106,116,107,120,75,107,107,103,95,109,127,117,125,108,114,108,97,99,116,111,105,101,117,104,106,98,103,98,104,101,94,95,114,110,97,105,117,105,98,108,110,119,108,110,98,101,94,99,105,95,108,115,118,105,99,107,114,110,100,126,106,113,101,108,98,108,114,91,97,105,104,108,114,99,103,114,102,97,111,107,100,114,114,92,100,100,95,103,132,102,113,100,106,101,107,97,103,106,94,113,103,105,115,104,108,99,98,95,91,117,94,125,108,106,101,109,103,109,92,104,121,102,125,115,108,103,104,105,117,110,107,103,99,108,107,98,116,105,99,104,108,114,101,96,113,105,103,111,90,95,105,98,99,94,95,96,101,95,88,109,76,98,103,94,106,89,96,95,100,102,107,110,115,96,94,92,109,99,97,116,105,103,107,113,104,97,113,121,107,105,97,98,106,99,110,110,105,101,101,107,113,112,116,113,125,108,90,108,115,115,110,119,114,123,116,129,147,136,159,166,191,211,211,211,255,241,239,233,208,203,242,198,191,182,161,149,143,142,147,134,119,119,124,99,114,113,105,119,114,115,98,105,107,104,104,107,114,100,99,102,108,110,97,112,108,102,111,107,111,105,111,96,101,103,105,101,115,107,105,107,102,109,101,108,98,101,107,98,97,114,102,117,105,106,116,102,100,88,106,110,104,108,86,103,102,97,105,110,106,103,107,119,109,103,88,109,108,98,107,94,107,108,91,98,113,107,101,119,100,112,110,112,111,114,108,109,108,97,117,112,119,83,95,91,113,112,108,107,115,111,120,110,98,108,90,100,101,114,112,106,106,112,98,111,105,111,100,112,116,108,113,109,105,112,107,108,104,96,100,99,112,106,104,100,110,104,101,106,94,98,106,103,103,108,114,125,110,103,112,107,103,114,106,103,111,99,87,98,104,134,102,106,110,106,111,109,108,103,104,120,102,101,114,106,115,103,108,109,98,99,105,106,109,101,98,100,97,102,107,100,99,79,110,101,115,110,98,106,105,102,97,108,103,103,108,112,99,111,120,104,110,108,101,106,113,107,102,95,108,111,120,110,129,100,107,111,105,106,104,98,81,104,104,102,108,96,112,112,110,96,102,95,101,112,117,108,115,111,106,104,113,89,116,89,117,125,111,99,108,96,103,101,100,103,123,111,102,96,108,101,99,107,103,105,98,100,104,100,104,108,101,93,120,100,101,84,106,103,85,102,106,112,121,89,111,76,107,108,100,95,98,107,92,126,124,94,107,102,101,98,113,114,108,108,106,91,107,102,103,98,104,107,106,101,96,111,92,111,111,110,112,103,106,103,104,110,104,112,103,106,108,116,109,101,109,105,107,104,105,117,105,105,100,109,104,101,101,106,112,99,99,110,106,112,109,97,97,112,94,106,112,99,106,100,98,103,111,103,105,113,98,113,121,106,89,99,98,100,106,101,102,109,98,89,110,100,92,98,119,111,105,106,92,103,102,88,109,99,118,99,105,109,106,108,104,113,107,106,106,103,103,117,105,98,96,119,106,112,95,110,103,90,105,110,105,102,103,101,108,101,102,104,118,106,95,110,99,109,92,107,102,96,102,96,107,95,110,99,103,96,105,105,106,92,108,117,103,92,110,104,107,112,108,102,110,109,107,101,105,115,114,91,118,122,107,95,101,103,99,111,91,109,103,103,99,123,103,110,102,113,106,103,97,119,109,113,106,96,112,102,123,94,88,99,100,99,108,115,106,103,96,101,112,126,106,103,101,107,115,107,99,109,103,96,104,97,113,91,104,106,113,107,102,101,94,93,101,104,100,109,104,110,102,105,113,107,104,111,111,108,124,108,102,99,106,102,113,104,117,81,108,104,83,96,114,116,111,102,112,104,104,102,94,106,111,115,109,106,109,105,103,111,113,105,100,93,91,108,108,110,102,103,95,114,109,100,101,92,99,89,98,94,117,115,100,111,111,99,91,118,93,115,107,100,119,122,99,98,106,96,102,105,103,100,112,113,91,105,111,106,113,104,110,99,110,106,107,98,102,95,114,100,104,124,106,111,102,98,111,69,110,105,105,110,93,106,109,107,105,98,110,102,109,110,103,108,106,108,122,97,104,126,112,105,89,99,100,121,84,117,103,99,100,116,109,93,102,106,115,106,109,107,120,107,102,99,115,106,107,103,108,105,102,105,105,111,107,99,111,101,97,113,103,109,96,97,109,101,99,98,99,107,103,106,128,112,112,110,99,115,95,99,95,104,103,111,99,95,122,99,91,106,94,105,113,98,109,104,130,101,98,97,112,96,102,107,105,104,102,104,108,110,109,103,110,106,97,124,100,94,113,114,107,103,96,101,110,106,96,109,109,117,105,103,109,136,113,96,112,102,107,105,102,98,102,104,115,105,107,109,108,102,108,110,106,91,102,98,107,108,114,106,99,115,102,116,109,105,98,101,102,115,108,102,112,108,91,116,105,104,94,88,100,96,99,109,115,108,95,107,102,88,113,109,92,96,108,99,110,92,95,108,111,109,99,101,95,104,111,106,104,97,107,109,96,100,99,96,102,104,102,119,104,100,109,101,100,104,102,112,110,87,113,101,94,98,118,110,107,116,105,95,95,109,79,100,83,90,104,104,97,100,112,116,112,104,111,99,112,112,99,90,106,109,99,83,108,111,114,108,92,102,100,99,99,100,99,96,125,99,110,106,106,114,111,102,100,92,100,87,95,113,105,108,107,113,110,113,113,99,103,112,104,125,101,112,102,110,108,97,120,118,109,100,98,119,110,99,109,96,101,85,119,116,130,112,116,112,113,112,98,98,92,112,106,94,100,108,109,102,110,98,109,105,103,106,100,106,89,81,89,109,101,98,109,100,95,104,113,108,103,107,108,101,112,99,98,110,111,113,93,95,88,91,105,110,99,101,95,106,96,103,88,97,94,105,115,102,113,95,109,106,103,102,123,93,101,108,94,93,102,112,112,104,99,106,100,98,113,97,108,106,100,96,109,108,103,106,114,97,109,94,107,126,102,109,110,105,82,102, +577.89227,95,96,96,104,115,108,108,91,101,96,112,99,108,101,99,103,112,101,111,101,119,105,105,100,107,107,102,116,103,122,111,114,99,107,110,115,70,93,110,96,100,99,117,100,113,101,110,115,110,99,99,89,119,111,121,95,109,102,105,96,119,114,103,114,106,112,101,125,99,114,89,99,103,113,102,117,111,110,117,106,96,95,112,114,111,104,106,102,94,97,110,113,108,95,98,110,108,117,105,103,97,105,106,103,71,100,107,102,105,92,111,102,120,107,104,105,102,98,109,120,99,106,113,108,103,110,87,99,104,95,110,89,105,108,94,109,105,110,100,100,113,106,103,105,98,110,100,116,119,98,112,103,111,91,98,125,94,99,111,114,77,103,100,111,102,101,95,105,104,94,96,98,103,102,114,99,90,98,104,110,99,107,91,101,114,111,108,96,98,108,99,98,117,97,97,105,99,109,109,68,112,85,92,111,99,112,97,117,113,100,99,113,104,109,107,101,100,105,105,95,96,86,102,108,97,111,116,102,123,105,99,107,99,117,100,97,100,103,106,94,108,101,114,87,94,94,103,84,102,121,96,105,108,109,94,122,101,111,101,117,105,110,101,109,101,116,105,116,104,107,102,98,102,120,121,102,115,105,87,106,105,106,90,105,101,99,105,100,107,105,105,116,107,101,102,115,117,104,118,115,106,99,101,117,108,104,101,107,94,97,102,100,102,103,113,101,101,112,105,108,101,107,91,101,114,100,103,106,121,112,114,104,107,112,102,106,118,108,103,109,114,95,112,101,107,100,114,103,101,106,104,95,111,107,118,106,112,109,106,104,98,111,98,104,103,108,108,116,111,115,102,97,99,100,101,109,104,113,95,106,113,102,106,97,94,100,103,105,103,95,111,102,105,101,95,101,81,101,115,113,105,103,104,103,105,100,110,101,119,100,100,97,104,110,100,100,104,111,118,104,100,104,97,117,102,97,94,101,105,116,114,107,106,118,104,96,107,106,101,101,125,104,108,106,90,113,110,117,107,98,109,104,104,97,98,89,119,117,114,108,112,105,98,113,99,113,94,106,114,104,116,104,107,83,96,116,106,110,99,112,105,107,110,93,113,107,109,104,105,96,122,113,117,101,101,117,106,115,106,97,108,104,98,107,107,116,98,100,110,116,101,102,106,110,102,107,106,115,108,98,102,100,105,102,117,117,117,102,115,96,121,113,107,103,102,108,96,109,99,95,102,110,113,103,119,108,117,107,104,109,103,107,108,94,103,109,107,102,108,107,101,106,109,106,110,99,111,104,117,122,106,95,118,126,100,114,111,110,111,117,102,103,120,109,110,109,104,122,122,124,116,101,104,117,97,117,97,104,106,101,105,122,105,106,84,96,114,101,94,105,109,103,110,123,104,106,98,128,104,131,108,102,98,102,121,105,106,114,102,110,101,100,76,117,92,110,100,103,106,104,108,95,105,109,101,100,100,99,107,108,98,100,115,108,111,115,116,111,117,95,102,85,104,108,109,103,103,106,100,95,109,110,109,117,100,124,107,105,107,76,104,112,103,109,98,94,100,104,101,103,118,108,106,127,110,105,104,88,102,105,103,108,74,96,93,120,99,109,110,104,100,100,120,105,97,97,110,100,104,104,95,86,117,109,94,99,102,102,100,114,114,127,108,110,86,118,103,96,111,111,104,98,114,106,127,101,111,100,108,132,98,113,98,116,112,87,104,116,116,105,112,111,92,99,99,93,99,101,102,106,110,82,96,105,104,97,91,106,102,124,108,109,117,81,98,103,101,99,108,115,111,115,94,115,104,106,103,112,111,114,97,110,100,112,112,99,111,101,104,99,113,101,108,104,107,95,110,108,115,98,108,103,100,110,104,104,99,106,105,92,116,100,111,109,99,105,110,102,104,98,98,98,97,102,80,97,99,120,107,100,102,109,114,107,120,106,113,134,99,99,115,97,106,111,105,107,100,103,108,104,113,113,99,116,90,100,104,106,97,103,108,90,104,97,93,111,104,107,100,111,125,112,88,112,114,114,111,96,106,119,110,113,116,110,110,98,100,103,97,92,106,109,107,99,117,113,96,109,107,102,99,92,102,112,101,107,106,111,118,114,105,113,103,104,87,110,118,107,103,110,110,102,103,102,108,105,109,104,92,110,105,100,98,107,110,108,101,101,111,111,99,99,105,100,111,104,99,99,109,112,96,102,106,105,120,94,94,95,113,101,102,107,108,98,108,102,104,100,109,99,102,99,105,82,104,100,98,104,100,118,109,100,105,109,120,117,107,103,99,118,110,108,113,109,102,107,98,113,86,94,117,112,119,104,113,125,108,104,116,122,114,115,115,108,112,119,123,150,144,184,195,247,250,242,256,240,210,248,197,227,217,201,167,210,142,157,170,158,144,116,122,96,123,103,105,116,92,109,105,96,108,113,108,104,113,114,103,115,103,102,102,110,96,114,111,107,109,98,119,104,103,97,106,103,91,104,111,109,101,110,106,92,108,112,103,109,105,80,105,102,117,106,113,102,105,102,96,104,101,117,131,99,114,104,109,105,101,102,107,92,104,117,110,103,108,109,99,106,96,84,102,102,92,109,91,104,102,91,110,97,102,95,110,108,94,110,108,113,99,102,92,98,99,106,112,106,92,109,100,106,95,102,106,113,112,109,77,103,101,108,121,99,98,117,108,107,107,112,109,105,110,100,119,102,106,106,100,100,106,97,103,117,107,106,111,102,103,116,109,95,105,90,99,104,105,103,100,97,116,96,118,113,98,106,113,104,106,116,103,109,102,84,103,115,106,111,116,102,106,99,102,103,111,104,106,95,103,112,106,96,99,102,104,87,105,103,102,101,81,100,98,97,108,110,107,82,104,97,99,115,96,82,108,118,109,99,99,116,104,89,109,103,101,113,105,106,102,99,119,104,106,114,111,93,103,109,103,97,119,95,92,111,103,101,92,98,104,102,90,75,85,99,94,102,106,103,100,107,90,109,112,106,94,110,106,109,110,109,105,111,106,100,110,96,105,118,108,98,98,102,110,98,94,108,112,109,111,111,108,101,106,109,108,108,111,71,118,102,112,105,115,105,101,97,100,104,109,91,97,83,111,102,99,114,100,100,97,105,83,101,98,88,107,106,104,87,100,98,109,92,79,107,99,109,101,97,102,102,112,105,110,102,98,102,98,103,96,102,113,101,105,99,113,113,105,98,110,117,96,94,106,104,91,103,100,101,103,109,104,103,106,115,95,107,104,97,98,100,101,117,121,98,99,105,99,100,102,102,102,112,104,103,106,103,93,97,107,112,107,97,108,103,104,125,113,96,107,96,96,101,89,106,99,95,97,112,96,107,99,102,98,108,103,97,107,104,94,90,98,100,111,102,104,98,105,107,112,103,117,115,88,105,93,107,98,106,113,106,100,110,90,102,111,100,94,97,107,105,101,101,105,108,91,104,102,107,104,81,99,98,106,111,110,108,103,109,103,113,113,96,109,105,104,98,111,115,100,106,104,103,111,105,105,109,105,108,83,114,106,105,105,110,108,117,105,111,102,119,100,103,102,100,101,103,102,113,110,102,120,102,93,110,94,102,109,102,96,92,100,106,104,99,107,104,122,97,99,105,103,112,121,103,99,110,91,104,103,106,102,100,104,101,112,124,109,113,99,105,121,115,102,100,103,100,93,108,107,113,108,110,101,124,102,108,108,99,98,99,112,105,105,106,110,108,113,104,104,104,111,94,104,98,97,91,100,109,101,103,106,107,104,100,91,110,102,109,106,109,107,89,119,107,90,111,106,98,113,112,110,110,111,107,120,115,113,105,112,113,105,121,113,105,99,99,121,112,86,105,99,110,106,105,100,106,105,109,71,102,109,106,103,106,105,106,106,101,119,123,112,100,106,87,108,117,114,104,100,103,106,100,107,101,121,107,113,121,96,104,102,116,91,102,98,112,115,106,108,102,102,106,90,112,89,105,113,103,111,112,107,112,112,102,96,82,112,104,100,103,100,118,107,104,98,106,109,110,106,89,104,111,115,105,111,101,113,110,116,97,93,109,101,107,107,109,99,104,98,99,100,124,95,94,112,104,101,110,97,95,99,104,105,106,119,121,111,107,108,100,103,100,99,104,100,103,112,100,112,80,99,110,105,99,72,94,113,95,105,100,101,108,103,106,123,133,106,105,91,113,106,97,120,98,116,94,113,106,99,112,143,115,102,111,116,114,94,116,115,106,105,102,105,103,102,98,99,98,103,98,104,112,101,120,103,99,111,103,105,104,107,101,99,103,110,113,109,109,113,110,91,98,102,99,113,104,99,102,106,103,98,100,101,106,97,104,108,108,102,89,101,112,102,105,110,109,99,106,101,110,95,104,108,105,119,92,96,109,103,100,120,90,95,90,84,103,99,121,98,108,110,98,120,112,108,103,96,109,105,103,99,102,100,102,108,117,97,96,104,116,109,95,94,106,98,102,100,97,107,101,96,102,81,87,94,107,92,105,108,109,101,93,82,103,93,111,106,107,128,99,102,141,98,92,117,110,101,110,112,112,108,99,125,102,94,101,106,102,105,105,96,108,102,94,100,117,100,99,102,110,101,111,100,103,107,87,104,102,109,112,109,107,106,101,111,106,96,105,106,117,95,109,104,99,105,86,98,101,84,108,110,108,104,98,84,120,113,106,99,106,106,79,113,120,108,100,101,99,99,102,99,96,103,87,97,102,104,104,95,105,100,110,103,106,98,111,108,112,112,99,100,102,113,103,113,94,110,112,131,104,105,99,106,101,106,97,104,95,98,96,102,84,100,98,106,87,105,100,103,97,102,106,108,123,88,113,100,101,113,99,109,112,97,83,90,93,95,92,99,96,104,103,105,111,106,111,102,107,113,102,98,94, +578.0332,106,95,99,86,95,98,101,101,118,98,96,96,103,99,108,106,107,103,94,102,98,92,104,102,96,102,103,103,101,97,83,80,102,113,110,116,97,96,106,106,101,110,101,100,93,103,101,99,108,109,107,67,104,102,117,100,100,89,97,93,109,113,120,109,98,104,110,102,103,98,99,105,93,112,108,116,90,92,105,100,108,98,97,117,93,106,113,102,103,102,101,114,114,106,95,98,102,102,101,97,113,91,91,98,98,106,102,75,108,79,104,102,110,96,107,106,101,102,104,103,124,115,98,119,99,117,113,112,105,109,115,116,90,106,103,102,110,104,104,109,100,102,90,101,95,101,97,100,92,100,101,103,100,94,98,105,104,97,112,100,88,117,98,105,101,91,103,100,114,102,99,108,101,111,101,100,95,97,105,101,87,107,86,105,108,102,101,80,100,109,101,104,105,105,108,109,100,106,94,101,98,107,99,113,121,106,105,97,101,94,111,89,95,93,103,102,105,96,90,95,107,100,120,93,103,101,96,98,104,106,92,99,74,91,105,114,95,101,105,111,99,110,108,86,113,105,107,112,97,105,100,98,101,107,107,99,93,107,93,90,102,105,89,100,104,97,104,98,93,99,96,109,104,110,107,101,100,99,99,91,104,116,112,96,99,97,93,93,101,103,91,131,93,103,105,105,98,102,100,94,92,105,109,116,104,105,109,99,107,105,91,113,121,104,108,100,87,106,103,94,103,92,100,98,103,99,100,100,107,108,94,101,101,96,104,108,110,105,106,86,102,99,90,111,96,107,98,99,100,103,96,103,113,109,112,101,103,94,104,107,95,92,99,103,92,107,91,108,108,107,94,99,106,102,99,93,108,96,110,110,102,99,112,107,102,108,99,95,104,84,119,99,103,105,99,98,88,95,86,96,94,109,106,103,105,96,103,111,99,109,110,96,108,101,102,95,112,102,94,93,95,108,88,108,96,104,96,113,102,109,95,113,98,108,113,105,91,102,117,110,109,110,85,113,101,96,106,113,110,112,98,113,100,108,100,111,104,98,90,93,110,115,112,107,95,103,107,99,109,113,115,103,105,100,98,100,100,108,104,108,137,97,107,97,100,92,108,97,108,117,101,99,110,99,109,80,117,104,95,133,109,82,96,99,118,100,105,108,112,107,112,102,94,101,112,111,101,100,100,95,98,95,109,102,97,98,106,96,112,101,95,101,112,99,100,81,94,110,104,105,96,106,100,97,103,105,120,107,98,108,105,106,100,110,82,109,103,95,83,107,99,107,93,96,103,102,104,112,97,103,96,106,113,99,113,104,109,103,108,104,105,108,84,107,101,105,103,108,103,109,116,95,104,102,107,110,102,99,108,95,101,91,105,114,104,75,99,108,96,106,100,109,96,108,100,105,94,115,111,89,112,98,103,106,101,113,102,109,108,105,98,105,105,112,103,98,93,103,110,103,100,100,104,70,106,98,111,98,103,102,99,98,104,109,94,111,109,101,103,70,115,96,104,104,97,92,105,101,103,103,103,109,99,107,95,94,109,106,111,103,107,106,104,111,88,100,98,113,101,101,101,94,96,102,106,99,100,103,100,90,102,95,96,110,94,117,101,108,96,110,99,98,98,97,105,105,98,91,109,95,119,105,96,110,109,97,109,109,117,107,106,106,101,105,107,99,107,102,110,102,105,105,101,106,105,99,101,115,93,105,100,109,112,103,106,101,112,112,107,102,99,101,101,102,106,95,92,112,107,103,95,98,110,100,105,121,101,94,102,94,97,106,106,109,97,104,83,103,110,116,104,99,107,113,109,100,106,119,98,135,105,101,104,110,115,101,108,111,103,113,98,111,107,95,111,107,124,118,105,114,100,105,99,100,111,109,99,103,110,107,100,102,106,114,115,108,104,112,109,107,99,110,99,97,101,111,121,108,104,109,97,88,103,102,95,109,106,99,89,107,98,99,99,102,103,97,103,105,118,111,93,97,98,107,95,103,112,94,114,99,90,77,102,102,113,102,95,114,99,112,96,108,93,97,105,101,99,95,100,101,94,102,99,113,99,104,99,111,102,105,105,92,103,113,95,90,106,109,104,93,114,103,103,109,99,100,107,96,95,96,98,113,115,106,95,99,101,101,93,125,94,107,107,110,105,107,117,98,104,100,113,111,109,120,112,98,103,103,108,114,109,118,99,103,104,100,102,107,99,120,93,81,97,107,96,92,114,100,95,101,102,102,99,107,103,106,95,97,101,101,95,112,106,111,103,99,100,115,112,121,98,95,104,108,104,100,93,105,108,100,101,104,98,129,105,111,102,103,100,104,116,104,112,102,109,102,106,109,129,113,108,137,124,116,95,131,116,142,145,167,194,233,209,242,259,241,258,226,200,213,203,201,205,197,182,157,172,145,116,107,128,107,116,106,105,109,100,121,117,109,104,108,115,107,103,111,112,101,105,91,107,97,115,109,104,128,100,103,113,117,98,101,104,111,93,102,101,95,115,112,106,112,101,113,107,109,121,106,101,107,124,122,112,101,109,105,103,96,88,99,111,98,110,99,104,104,110,106,123,118,109,99,106,105,113,92,109,93,101,113,102,87,99,105,106,108,97,105,106,96,118,103,112,102,111,108,112,103,105,109,97,102,114,90,118,104,120,103,110,103,96,99,108,100,104,87,100,102,103,100,108,105,101,106,107,108,111,120,101,108,119,106,113,106,113,105,98,91,107,106,108,100,101,95,109,109,98,103,121,106,100,102,104,107,108,100,97,100,103,109,110,107,102,103,108,104,100,103,101,99,111,104,103,109,105,109,98,107,112,98,108,106,100,100,105,106,102,110,110,113,115,103,103,103,92,102,108,111,104,110,99,106,102,105,110,93,99,113,96,113,110,107,102,109,102,100,121,111,93,94,98,105,95,75,105,104,99,107,111,98,108,117,106,112,103,106,113,107,111,105,107,113,110,110,102,99,111,111,103,117,102,110,84,114,99,107,106,84,109,103,106,111,109,100,107,100,100,107,115,97,103,94,103,103,91,104,111,104,104,106,105,105,96,100,97,105,103,120,108,115,104,100,101,108,101,104,107,101,107,98,117,103,94,106,96,105,93,119,102,104,104,111,107,107,109,106,99,102,91,117,105,96,112,112,97,105,96,112,81,133,98,103,107,113,117,104,100,101,118,130,113,83,93,112,109,104,104,113,99,101,103,100,95,94,102,99,108,109,99,104,117,108,99,103,111,105,96,111,106,106,99,104,114,107,106,101,96,112,108,106,96,100,108,97,101,96,99,110,110,103,104,105,111,99,85,105,90,75,102,100,96,106,105,99,103,110,113,96,101,106,104,128,107,107,103,100,115,100,95,111,99,111,107,112,104,99,104,105,109,106,115,98,103,114,104,105,111,107,103,106,102,106,109,114,99,111,107,95,96,108,95,77,99,112,92,110,96,106,111,95,105,101,97,106,105,105,113,108,94,103,100,100,99,98,97,99,102,91,112,103,101,114,90,103,107,99,108,99,95,101,100,95,102,103,116,111,109,101,96,105,106,91,103,95,79,98,106,104,109,96,101,99,103,107,97,99,102,102,95,95,91,106,107,107,103,100,109,115,95,135,107,104,115,108,109,99,89,99,98,115,94,96,110,104,93,88,95,108,102,106,84,103,117,103,95,110,92,83,106,97,103,106,102,108,102,105,112,101,106,108,105,100,106,99,106,106,111,111,98,95,97,112,95,98,107,106,95,108,98,92,98,120,96,87,108,121,102,98,105,104,99,99,100,83,93,105,116,98,109,113,101,100,111,102,102,103,106,94,91,113,109,99,113,108,105,99,114,94,94,109,98,117,101,121,105,114,114,92,108,93,101,109,109,104,102,102,101,99,93,107,92,95,102,103,100,103,95,98,100,104,113,100,98,99,88,107,100,98,105,101,99,106,112,95,110,113,115,92,104,99,107,110,108,105,106,100,117,106,96,102,77,108,103,109,120,100,123,107,97,97,95,110,117,108,106,101,99,117,99,102,100,96,109,98,111,99,106,99,104,103,96,119,99,98,105,103,113,104,112,102,101,97,105,102,105,103,121,104,107,93,105,95,105,100,98,101,106,109,103,119,95,99,107,102,96,115,113,97,115,97,76,87,112,96,98,104,110,103,94,116,105,96,104,91,103,102,105,113,104,103,121,101,113,108,117,106,108,109,99,106,103,105,104,102,113,114,108,112,105,97,103,93,135,107,92,104,106,101,113,97,96,100,103,98,104,105,99,108,95,101,95,114,118,113,76,97,110,102,100,102,104,106,102,106,115,103,99,96,99,112,99,136,84,96,111,112,94,115,101,108,108,108,97,112,99,104,87,99,104,107,100,94,112,103,99,105,105,108,98,94,98,110,113,101,107,104,106,118,109,101,105,88,97,91,101,97,105,103,121,102,109,95,96,102,94,95,105,96,95,105,106,107,97,113,94,94,100,111,99,129,110,97,98,93,91,97,109,96,104,101,108,113,101,104,106,110,131,106,93,101,108,96,98,106,98,105,107,99,107,122,96,94,97,102,95,96,109,86,111,84,96,116,113,112,101,111,95,125,103,105,109,96,104,110,103,104,99,100,103,90,94,103,102,101,112,109,123,100,113,110,102,110,97,97,109,107,104,100,98,108,100,102,109,103,100,107,114,104,102,124,92,102,100,105,108,108,106,113,91,91,107,95,108,110,93,112,96,106,99,100,100,109,110,104,116,105,110,105,98,109,98,99,106,94,101,99,101,127,103,90,96,95,106,104,97,101,112,97,102,100,99,93,105,108,95,98,94,98,91,106,98,110,99,106,103,100,108,104,93,109,100,108,101,108,90,108,80,97,108,94,108,112,109,95,94,100,98,107,115,116,108,115,101,99,108,106,109,117,106,90, +578.17419,109,101,99,115,73,99,98,99,106,109,99,102,101,85,110,104,110,85,107,106,109,110,99,137,110,101,109,104,97,96,100,95,99,99,104,113,96,99,104,103,100,122,98,104,109,93,102,130,103,104,103,103,95,88,107,99,93,99,100,90,97,101,122,109,108,119,98,106,122,118,108,124,103,105,100,113,104,99,104,96,109,94,108,96,108,95,109,114,115,109,127,107,106,106,101,102,114,98,109,84,95,110,104,123,95,104,98,102,111,100,100,128,109,106,93,106,98,120,105,95,112,102,107,111,113,103,114,105,111,113,110,105,104,122,110,104,98,97,98,96,112,117,99,95,96,117,109,105,108,88,102,103,112,112,92,98,97,106,96,99,103,105,95,105,105,116,93,101,110,103,109,103,100,94,95,109,109,97,113,100,107,103,105,102,109,113,105,89,121,97,107,95,104,88,115,105,95,96,83,111,72,113,115,95,98,78,105,108,101,105,103,102,91,109,86,100,103,90,110,114,110,105,109,101,101,112,107,107,105,122,109,95,106,111,106,112,104,107,108,112,109,106,112,101,105,105,104,111,124,120,98,107,103,119,98,109,106,109,90,126,111,115,105,104,90,106,110,101,108,111,103,99,102,98,84,99,113,111,102,106,109,96,110,118,109,100,98,103,109,104,105,103,117,99,102,96,116,113,95,111,111,104,106,107,101,94,99,109,101,110,96,105,108,123,105,103,101,110,67,101,119,115,105,98,100,97,108,103,114,116,109,99,121,112,99,122,106,109,97,114,109,110,99,109,107,105,107,108,109,107,108,105,103,103,107,102,101,98,106,105,111,101,106,105,94,93,103,105,104,109,99,96,111,108,101,105,110,102,108,103,109,100,108,102,100,96,105,100,115,93,111,105,110,104,110,105,106,105,103,88,111,104,107,105,110,94,112,106,110,108,89,102,109,102,106,106,117,103,104,111,114,107,100,119,101,105,121,105,102,115,106,104,115,98,111,94,89,99,102,103,128,102,112,102,93,105,110,96,92,111,102,107,95,114,84,104,100,101,113,99,107,101,88,104,101,104,107,109,115,99,108,118,109,105,99,97,85,94,83,112,99,104,110,110,104,128,97,103,112,94,110,112,107,98,97,98,86,119,105,102,99,107,105,100,117,108,100,102,109,100,111,116,102,109,106,104,108,109,103,102,96,101,109,105,104,91,103,108,121,96,103,93,104,108,99,115,111,98,107,110,87,106,95,101,102,112,106,101,107,108,109,113,112,95,89,98,113,106,109,103,99,99,102,117,97,109,117,99,107,99,110,98,101,115,91,105,98,105,99,97,107,113,103,100,99,106,108,103,107,103,115,107,101,91,110,103,111,99,103,106,109,99,108,106,98,102,108,107,101,113,108,92,108,103,110,104,118,108,112,98,102,116,109,98,110,121,113,111,100,109,104,107,106,106,107,103,121,109,109,101,113,106,105,107,91,90,98,98,83,107,108,108,108,112,105,91,117,99,103,100,122,109,103,111,103,99,114,92,111,109,95,94,103,106,99,107,97,97,105,102,108,94,104,87,121,106,104,104,119,104,104,100,134,99,103,100,109,104,105,97,110,94,117,98,102,111,113,117,100,116,100,105,103,105,95,104,94,99,117,94,117,113,101,107,99,106,111,129,109,106,102,113,93,104,107,99,102,88,106,102,125,90,106,117,102,100,108,101,106,104,105,94,103,107,103,106,104,103,118,110,104,99,105,120,97,104,98,105,99,97,107,107,110,102,111,111,101,104,120,109,102,110,88,107,93,107,109,97,104,114,93,99,113,102,95,113,109,105,114,98,100,99,106,89,114,105,101,107,99,97,100,113,118,108,111,111,103,114,99,88,106,111,105,109,109,110,111,94,113,108,99,104,98,114,105,108,95,98,121,104,101,104,120,91,97,103,96,111,100,84,108,97,95,102,108,98,104,107,112,87,102,100,103,116,71,120,114,107,100,104,125,93,94,114,112,87,115,108,93,109,107,105,98,112,91,111,94,106,114,110,97,112,94,98,102,101,122,98,97,90,110,104,96,104,99,100,97,109,105,106,94,99,117,119,104,107,108,115,99,93,103,102,102,111,113,108,109,99,104,104,96,108,105,106,97,101,103,108,107,112,106,103,104,111,96,99,108,105,103,107,108,104,116,109,120,110,111,106,95,96,111,94,104,108,104,103,98,96,79,96,98,104,101,100,104,105,102,109,115,97,105,99,106,96,99,101,91,92,109,96,110,115,100,87,103,100,99,99,122,121,106,103,102,104,105,108,120,110,101,103,99,108,105,104,94,102,111,112,92,90,95,116,102,98,113,107,118,104,112,94,114,116,117,107,122,128,134,140,151,171,188,219,225,228,249,278,219,216,250,221,206,229,189,175,180,156,145,132,129,109,121,125,119,104,111,94,99,103,96,98,115,118,99,112,109,100,115,98,94,109,103,114,96,106,117,107,107,99,76,107,113,99,123,106,108,117,101,113,114,120,92,97,87,106,113,110,100,110,111,104,101,110,105,102,107,95,110,107,113,107,92,115,100,101,93,103,105,69,94,98,81,129,109,97,108,116,103,91,102,102,115,93,105,106,103,103,108,98,100,93,107,104,110,110,97,96,110,101,112,116,100,99,100,88,105,114,101,99,111,111,103,97,109,107,103,104,109,111,111,109,106,108,101,101,103,112,122,100,109,110,104,110,117,102,100,105,104,99,102,105,101,113,100,115,95,111,101,116,94,106,109,107,95,108,104,103,112,98,113,117,103,103,116,88,109,99,103,102,112,103,108,110,112,119,108,103,115,105,110,105,112,111,108,99,108,102,107,99,96,116,115,115,111,110,112,106,103,111,117,100,104,100,109,110,109,75,101,116,105,110,105,100,113,100,107,107,90,108,114,108,106,111,107,98,108,121,101,104,110,102,105,109,77,115,100,117,103,112,85,106,117,109,106,117,116,110,109,100,103,106,104,117,98,105,111,113,106,103,114,109,117,114,110,103,108,139,103,114,86,104,103,104,121,128,110,111,123,101,108,94,105,106,107,99,119,108,115,122,107,114,108,121,103,113,105,116,104,105,92,114,109,111,104,103,127,113,106,108,108,97,108,107,105,107,104,114,113,105,103,109,110,109,114,116,112,106,113,109,105,100,137,103,103,102,108,103,100,101,107,97,100,101,94,109,96,105,107,100,117,108,132,99,109,108,111,111,102,97,107,109,107,103,95,111,101,116,110,104,113,104,105,111,112,116,114,102,112,101,120,98,103,102,110,106,100,114,98,106,107,119,104,97,106,117,99,102,103,112,111,86,95,111,107,115,121,113,99,107,108,115,113,109,106,119,107,110,107,99,122,103,106,119,111,100,105,99,124,116,103,100,97,108,100,115,112,96,105,102,113,98,110,121,85,104,113,90,117,102,109,100,101,106,106,115,114,106,93,102,124,106,111,107,109,104,102,102,107,105,100,109,95,96,99,91,97,111,112,110,107,95,105,104,91,115,111,113,108,100,104,108,100,99,108,121,103,104,102,98,109,90,108,109,109,103,118,115,87,112,100,104,112,109,109,105,116,100,109,110,108,88,102,97,100,105,100,106,90,111,102,109,92,107,109,103,106,108,97,99,92,102,107,107,112,116,98,117,105,96,94,123,109,101,110,82,106,111,106,101,115,100,111,106,89,107,110,93,117,114,113,109,114,100,105,119,116,104,102,113,108,101,81,104,104,98,109,102,106,112,105,109,112,102,93,105,111,98,91,96,108,115,110,111,94,108,112,94,107,110,109,108,112,102,94,106,109,95,110,109,88,107,105,110,107,101,103,105,103,101,100,114,113,111,108,113,108,103,105,113,103,106,101,112,102,96,96,96,118,117,110,100,94,107,100,99,106,98,103,104,104,120,105,110,103,117,106,105,108,112,104,95,95,102,106,87,119,111,99,110,118,102,98,110,97,113,104,113,113,116,101,119,115,110,101,116,94,102,101,113,105,104,117,104,102,105,101,110,96,108,102,110,115,106,108,88,129,107,108,96,101,117,104,108,99,106,104,100,101,104,108,104,96,93,106,101,101,88,116,99,113,112,100,129,117,112,110,107,124,114,96,113,117,99,109,114,98,108,111,110,107,116,111,107,98,102,95,105,113,107,93,108,117,105,104,105,101,99,114,102,94,104,107,123,102,90,100,113,103,106,109,97,113,102,103,108,116,106,102,110,108,112,111,107,99,106,93,99,120,116,104,102,112,99,105,90,113,120,107,100,107,102,105,97,108,108,102,99,111,113,85,114,103,109,97,109,114,107,106,108,105,112,120,94,94,108,102,119,113,103,102,99,106,99,96,106,68,104,112,113,108,111,113,106,113,100,117,105,104,105,101,98,113,87,109,119,137,99,102,107,120,114,114,97,104,103,99,66,106,111,116,98,104,113,105,102,104,110,109,96,100,112,103,106,108,95,103,106,103,92,107,102,98,101,118,114,105,108,112,104,109,106,98,102,102,103,106,110,97,115,100,91,105,99,101,96,99,110,107,128,115,111,99,104,112,102,101,102,109,98,120,105,99,113,110,107,110,107,103,111,92,104,106,121,105,100,112,98,97,105,100,100,72,128,102,103,104,89,100,137,107,103,111,103,87,100,105,95,88,111,114,103,94,100,105,104,113,96,89,103,108,103,99,95,105,110,107,106,110,112,102,100,103,113,93,112,110,108,97,98,98,103,104,103,103,97,109,110,108,102,101,116,113,88,106,117,87,109,106,102,102,114,123,103,102,101,105,109,105,102,102,110,93,98,114,95,109,95,107,94,104,108,100,107,104,91,113,110,103,112,136,97,99,101,106,110,95,105,94,108,107,93,108,108,102,98,87,98,96,110,103,102,106,108,95,109,110,116,72,105,108,102, +578.31512,114,100,93,102,97,75,96,100,94,93,102,107,108,100,109,99,96,117,105,94,99,107,102,101,103,114,109,100,103,108,99,106,107,103,106,114,97,106,95,97,105,102,101,121,108,104,100,104,110,120,104,96,98,119,108,110,105,115,105,93,100,88,102,91,110,111,98,90,99,114,119,116,107,106,101,106,110,110,108,105,95,106,105,101,100,97,97,110,108,93,104,109,110,86,104,114,102,110,119,108,100,111,96,105,105,102,102,107,106,103,101,101,119,117,104,110,105,98,110,92,103,109,99,96,104,113,104,90,113,119,104,98,86,106,95,98,99,102,93,108,115,105,91,95,99,107,103,114,95,107,99,104,101,98,106,115,102,109,109,110,97,91,86,104,103,112,108,114,106,95,108,102,125,101,108,106,100,111,108,100,99,100,111,108,98,113,107,94,106,100,112,98,104,100,94,103,102,107,103,111,106,105,109,103,96,102,104,104,112,91,92,103,112,117,113,103,104,113,110,104,112,103,91,95,105,104,110,103,110,106,101,113,101,117,104,102,109,116,93,101,105,110,113,111,95,103,87,102,109,104,99,106,99,113,109,129,108,108,108,98,97,112,105,103,101,101,109,107,101,104,102,112,121,114,121,104,102,104,100,96,94,109,121,110,109,105,101,104,108,100,101,108,115,97,108,116,110,113,114,103,98,109,101,114,98,112,119,104,105,112,103,116,113,114,102,106,105,110,101,105,97,109,114,113,103,96,101,98,104,105,99,80,108,99,110,99,94,91,99,114,89,100,103,105,102,104,109,108,110,97,97,105,112,96,94,104,101,110,107,108,107,106,96,101,89,100,99,106,83,100,101,103,107,86,112,91,103,109,106,107,113,103,111,112,102,109,108,91,90,106,121,104,104,112,103,125,105,105,103,117,103,104,93,92,120,83,100,104,124,96,99,91,143,108,110,96,110,102,117,108,111,102,93,102,102,114,103,81,98,107,95,108,101,101,104,97,81,125,101,107,112,106,108,113,103,94,98,104,98,110,103,99,106,103,105,96,115,105,103,107,99,113,105,116,112,107,112,108,111,104,112,104,100,94,119,106,106,117,110,110,112,108,136,104,111,95,94,112,99,73,101,107,103,95,116,109,96,102,109,73,115,103,106,104,97,110,101,103,78,112,93,107,106,108,107,103,116,94,94,96,118,109,112,109,120,99,119,109,102,105,105,112,107,99,82,99,107,98,102,117,118,110,102,107,127,100,105,109,111,119,100,105,103,105,105,96,109,108,104,100,108,104,104,102,101,103,110,98,116,96,97,99,104,121,116,110,104,108,118,102,104,114,106,97,108,119,116,102,121,95,102,105,102,102,124,113,99,105,110,107,111,105,101,107,109,96,104,106,118,107,99,104,103,110,129,97,110,97,95,105,113,114,109,102,100,108,89,103,113,112,114,112,100,99,93,111,103,84,103,93,94,101,106,105,95,98,96,106,104,101,104,114,109,108,115,97,96,112,112,90,104,102,103,106,100,110,97,105,116,100,108,103,111,104,101,105,88,101,97,112,124,107,109,81,110,97,98,101,100,100,97,102,110,107,115,104,98,103,90,101,102,100,106,94,102,108,115,103,117,113,115,99,105,103,109,108,102,108,113,76,104,103,98,109,104,93,113,115,100,108,98,105,92,105,105,113,107,102,110,106,107,100,108,99,96,99,109,105,104,104,102,101,103,101,109,105,79,106,111,102,104,99,92,106,93,116,89,102,100,96,113,113,106,103,119,111,107,86,102,95,104,66,110,104,113,94,107,96,106,109,110,125,109,117,101,110,111,108,106,109,100,103,110,113,112,116,94,104,104,103,110,97,103,108,112,108,110,106,107,110,105,103,105,102,109,108,107,116,109,104,102,94,110,106,89,113,107,102,111,107,113,94,103,120,88,108,100,98,101,109,104,110,97,87,92,112,94,101,100,106,114,103,112,110,96,112,99,115,102,95,104,112,86,112,108,101,105,102,101,113,109,110,114,110,97,119,104,110,107,99,103,105,101,105,105,100,108,108,102,116,110,118,104,101,105,97,105,100,103,113,112,106,100,96,107,103,86,108,90,104,107,107,99,112,104,115,112,90,108,115,98,112,107,114,116,120,107,100,115,104,118,96,107,97,111,100,112,98,110,122,97,108,112,102,106,118,100,100,106,99,112,90,108,100,109,106,110,99,108,97,100,116,95,103,93,114,102,114,77,100,107,109,108,96,100,105,109,100,107,116,111,109,103,97,112,100,114,112,102,105,115,96,101,107,102,123,104,131,102,114,103,121,107,116,104,120,111,107,113,101,94,106,109,74,103,106,110,116,84,117,109,112,102,122,112,128,127,133,151,157,181,225,216,232,237,226,250,265,206,223,217,215,172,143,168,172,142,153,115,116,126,124,122,118,112,104,102,132,105,100,114,122,112,127,116,112,105,112,100,127,112,99,101,108,114,123,102,105,121,97,95,111,110,97,100,113,103,103,105,104,110,106,103,124,104,104,112,102,108,113,108,103,100,103,117,96,109,108,112,104,115,94,106,116,107,106,111,114,98,80,116,107,114,101,111,112,113,118,112,102,110,110,107,108,99,109,104,100,106,102,111,99,118,95,106,110,125,104,120,115,104,102,107,101,105,101,104,96,119,115,101,103,114,103,98,104,99,117,116,106,107,116,107,119,96,103,109,108,88,106,109,110,117,99,102,104,102,95,105,109,111,107,105,112,108,112,109,109,102,95,98,109,102,116,103,110,107,109,127,113,103,113,98,104,114,115,98,108,126,100,109,117,97,101,105,113,98,102,119,101,107,107,117,98,104,110,111,99,99,100,120,97,100,124,113,99,91,117,129,99,118,99,115,116,104,118,111,108,105,108,108,104,110,111,99,117,105,109,107,110,117,100,107,98,108,106,97,112,101,107,106,113,91,104,100,114,124,113,94,108,108,113,99,113,106,97,108,108,103,94,102,110,96,99,93,96,111,104,112,100,99,97,124,121,104,109,106,97,97,100,78,113,111,107,103,106,100,102,99,94,104,108,116,109,99,103,112,96,118,93,105,114,100,106,106,98,108,107,92,98,105,111,117,103,117,112,106,97,114,113,106,104,102,116,112,109,100,114,104,120,97,106,103,99,100,96,109,114,109,94,101,103,127,113,94,114,109,108,119,108,120,100,99,95,106,110,106,108,112,111,96,98,111,79,113,107,115,104,96,113,113,106,100,89,97,104,105,98,92,106,108,95,118,115,107,105,106,114,118,106,101,118,103,101,100,113,95,109,107,108,125,104,112,131,103,112,109,110,106,95,121,117,101,107,104,113,100,102,85,106,103,113,116,104,104,90,120,105,103,106,96,104,104,111,99,104,113,100,96,94,112,98,108,88,117,109,108,113,107,109,103,99,112,89,100,120,104,122,86,103,92,103,104,94,102,103,85,105,116,91,107,108,112,103,119,99,120,106,105,103,98,95,109,94,107,107,109,99,114,84,112,103,96,112,97,100,109,107,100,96,106,103,98,104,110,98,116,107,112,113,98,107,116,119,114,106,105,106,105,112,111,108,96,86,103,107,98,103,112,108,95,105,101,104,107,122,109,117,112,106,92,99,106,102,106,100,99,111,105,108,105,98,99,99,130,93,89,115,98,105,104,104,108,108,99,98,98,115,113,84,108,106,102,106,98,101,102,89,111,98,103,110,107,104,109,87,117,116,125,95,104,102,93,110,108,105,114,102,114,104,99,104,102,99,110,99,99,110,111,106,104,118,117,103,103,97,108,94,105,113,103,118,108,113,116,111,102,109,111,102,112,99,101,115,116,108,107,91,106,117,102,109,111,98,112,111,110,108,113,108,104,108,101,114,122,109,113,107,97,109,110,108,103,111,105,100,108,102,95,79,101,95,102,105,110,105,109,106,120,107,103,102,111,106,100,109,108,98,106,103,109,102,107,116,99,114,108,102,101,109,99,109,100,100,100,109,102,100,100,103,111,111,112,99,107,93,107,87,99,109,102,121,104,109,109,107,106,116,117,97,109,98,100,102,122,105,120,118,110,110,109,96,96,105,104,112,101,94,97,107,111,111,113,105,117,100,110,120,108,116,108,111,100,95,106,105,116,107,97,96,96,91,122,110,106,109,111,108,102,103,101,108,105,100,119,91,108,105,99,97,86,105,104,103,116,107,113,112,115,113,119,108,98,111,100,94,105,104,65,103,127,110,103,113,109,109,103,101,104,101,98,102,97,90,102,80,99,104,100,97,108,107,114,110,109,104,100,113,97,81,87,101,106,111,101,101,104,109,104,111,112,116,109,105,113,99,121,105,100,110,106,95,116,115,105,114,99,104,114,111,102,112,106,115,107,112,115,99,106,98,101,107,113,101,105,109,95,118,112,107,96,100,100,104,107,108,119,112,105,102,107,96,102,87,105,103,101,106,92,92,140,117,119,100,99,98,83,101,100,107,106,108,117,112,100,104,108,105,107,100,95,82,101,107,125,106,102,75,107,100,76,98,101,106,106,101,105,108,104,107,109,87,108,103,95,105,109,105,106,101,106,122,112,98,100,105,95,109,101,81,101,101,130,127,101,105,101,99,99,102,105,101,107,118,95,104,106,114,105,99,113,115,103,88,108,105,103,95,107,91,99,98,105,115,91,96,99,73,95,95,90,97,106,104,99,111,111,112,110,110,105,110,102,106,103,92,106,92,116,98,109,90,104,102,95,107,95,107,103,111,116,100,110,94,100,107,100,90,86,104,97,87,113,106,114,107,110,100,99,102,105,92,104,94,111,98,94,106,96,94,110,95,115,79,92,102,91,102,91,112,94,102,123,114,97,99,92,103,102,89,72,110,93,103,117,103,91,109,98,96,96,112,95,97,96,102,104,71,98,99, +578.45605,111,102,85,96,86,96,100,98,91,105,107,108,94,118,107,102,99,95,99,103,116,103,109,98,99,100,97,108,105,103,105,108,117,95,117,110,116,104,93,101,105,106,96,105,109,110,109,101,101,118,116,109,100,102,102,105,98,110,107,111,112,115,107,105,100,108,85,105,104,113,104,116,96,99,108,117,95,102,100,96,110,107,109,108,105,103,94,106,110,96,100,100,99,110,90,112,102,106,118,111,109,106,98,106,98,103,104,112,108,105,104,99,107,100,103,104,108,115,97,108,114,111,109,105,98,99,98,103,111,103,102,100,91,100,99,105,99,102,100,106,109,100,104,111,108,103,100,109,109,90,105,103,105,91,100,90,112,96,101,105,94,105,106,110,110,94,103,94,108,92,89,107,106,98,108,101,106,94,109,105,73,110,89,109,115,111,102,105,109,101,103,109,112,91,118,97,101,102,103,102,114,89,103,109,84,110,102,99,111,104,119,114,108,114,106,102,102,101,108,111,108,98,105,100,99,111,101,101,101,108,109,103,103,104,106,102,114,112,109,106,103,110,121,116,112,112,101,105,115,101,109,112,95,106,103,104,99,106,101,110,116,108,106,103,111,107,109,97,98,98,104,104,104,113,75,109,105,104,99,96,108,104,113,98,100,100,103,120,108,108,104,110,107,107,126,104,111,105,107,109,100,110,104,114,90,119,105,115,105,103,100,114,108,100,88,104,102,106,109,98,101,99,106,106,103,109,103,104,97,110,120,111,108,111,104,120,111,107,94,104,89,108,107,87,97,119,113,103,107,115,103,107,97,112,86,114,100,102,102,92,118,100,104,107,90,99,106,109,105,111,109,109,115,102,116,104,89,108,97,110,108,103,114,109,107,92,114,103,73,95,99,99,98,115,101,109,98,116,100,109,108,108,115,101,98,104,102,109,96,99,102,103,113,107,105,104,104,100,117,94,123,106,99,109,95,103,105,95,97,99,92,109,103,101,100,101,100,107,113,107,92,96,97,98,95,106,100,93,111,106,109,103,103,94,132,115,108,100,108,100,101,94,106,92,107,103,105,101,100,98,91,141,101,103,100,101,109,114,95,110,94,106,106,99,142,98,115,112,104,99,117,114,111,112,91,94,94,103,102,100,103,116,105,98,114,99,103,99,105,107,107,114,106,110,103,117,108,110,102,112,110,112,93,109,109,110,107,97,105,104,93,100,91,108,108,121,97,106,105,95,110,101,103,101,109,93,116,92,96,98,98,105,115,100,106,101,110,100,109,108,109,109,100,99,107,111,102,114,98,105,97,102,103,105,112,110,99,99,106,103,112,98,105,87,101,102,101,111,118,109,120,108,99,104,99,111,111,102,99,108,100,99,103,79,109,101,112,94,98,80,115,98,87,104,103,103,98,94,113,101,101,104,105,107,116,110,97,102,103,109,125,111,94,106,111,97,95,92,106,117,104,112,107,107,99,99,88,99,113,103,111,100,100,103,98,101,108,103,101,98,118,113,106,103,98,105,103,101,98,102,118,102,97,99,103,106,128,109,101,104,108,102,104,99,102,108,96,114,106,118,118,117,103,109,111,103,111,101,109,95,109,95,104,95,106,110,87,104,100,102,98,99,97,103,99,102,104,90,104,100,110,100,113,103,108,105,106,115,105,116,107,104,99,104,113,108,110,104,108,107,118,107,102,99,109,111,112,101,87,104,102,101,103,122,98,109,96,103,104,104,100,97,90,101,97,104,95,107,96,109,113,106,103,106,96,109,109,111,100,95,97,105,106,124,110,104,97,103,104,105,99,111,108,128,82,94,104,96,100,106,90,107,106,114,124,101,108,108,93,99,107,113,124,109,103,101,101,97,106,113,97,113,114,105,99,103,106,99,99,105,102,84,109,107,109,106,94,98,104,109,102,106,106,101,100,94,108,110,91,104,101,105,107,110,106,113,110,117,126,96,107,115,110,108,112,108,101,112,113,102,109,99,101,107,104,108,102,100,97,109,111,109,103,103,98,111,95,107,120,103,105,104,104,113,97,96,120,96,85,103,106,103,107,103,109,99,103,110,102,102,98,107,103,105,107,115,106,103,118,108,104,100,115,103,105,111,99,102,108,100,106,113,101,117,117,100,108,116,108,98,106,98,116,104,92,103,108,104,107,111,107,100,117,101,108,113,110,111,104,100,117,107,104,101,103,84,105,111,117,109,99,100,123,97,105,105,99,100,91,124,117,109,103,104,91,104,105,114,100,107,105,99,102,103,103,103,114,103,105,107,108,89,97,96,104,113,90,97,104,109,89,107,108,110,101,109,108,108,117,121,115,112,106,108,103,106,99,112,133,102,105,123,104,113,125,124,120,146,178,192,191,193,209,213,214,229,227,214,251,233,202,192,196,167,146,154,148,139,117,126,132,108,127,112,117,108,100,112,117,121,104,104,100,116,113,113,110,110,112,91,127,108,91,100,105,108,109,83,106,106,95,115,87,102,98,95,95,105,99,103,105,89,108,103,111,97,116,101,106,97,113,111,103,109,97,116,112,108,96,98,103,101,96,105,98,113,103,99,109,91,94,103,107,105,107,102,114,99,111,99,102,102,80,103,103,108,110,106,104,106,106,104,114,105,104,128,98,111,100,110,101,94,112,100,108,110,100,98,113,76,89,107,111,112,84,100,107,100,96,106,103,103,114,100,100,91,121,102,115,105,106,107,119,108,95,112,113,98,86,101,113,97,102,100,99,102,110,113,99,73,106,102,94,101,116,98,101,112,104,98,102,108,115,96,135,111,99,104,99,108,101,113,95,108,107,101,96,133,84,108,109,117,101,93,103,103,110,103,100,102,97,109,109,107,98,107,116,99,103,101,104,97,100,94,105,103,117,103,109,117,106,115,108,108,109,112,98,103,102,121,108,107,119,106,107,107,103,104,99,105,105,110,107,96,87,98,101,105,102,108,107,107,114,104,108,113,111,104,95,106,114,100,95,107,106,99,113,103,108,99,108,103,106,101,108,106,113,99,109,111,103,113,97,104,110,98,97,102,106,107,102,109,117,87,104,97,107,107,107,103,98,108,101,105,111,91,106,104,102,96,107,98,106,94,109,103,114,100,104,99,101,99,102,114,100,120,97,102,119,107,108,109,83,120,101,106,98,100,101,110,101,101,105,99,98,109,88,97,105,98,116,98,99,104,104,105,117,99,108,91,102,105,88,113,121,101,100,102,122,112,103,100,99,98,93,121,106,106,112,100,91,109,106,107,110,112,105,106,111,77,105,103,99,96,106,94,98,100,102,95,106,86,102,101,102,107,111,107,97,108,105,105,102,94,128,104,99,109,117,108,100,106,97,102,90,103,109,106,107,111,115,99,101,101,111,106,102,97,95,103,107,95,106,113,116,118,99,109,115,104,95,103,102,112,94,110,102,103,104,105,87,104,93,104,111,102,101,106,113,76,100,112,104,104,101,93,104,105,100,102,118,98,113,100,110,100,114,102,109,91,113,100,96,95,116,109,116,101,95,104,110,110,102,110,108,96,96,95,102,107,106,109,116,104,101,98,98,102,104,121,99,99,113,105,103,124,106,107,109,94,94,97,110,95,101,106,106,109,101,112,94,107,115,94,116,112,112,100,103,103,91,101,112,100,99,110,95,95,107,99,108,88,94,107,96,98,99,99,116,98,96,100,103,102,94,105,110,97,102,110,103,106,103,109,106,105,108,97,106,94,110,110,101,96,110,91,111,104,111,102,107,102,102,112,95,111,125,110,132,97,101,104,109,124,108,106,100,104,111,90,72,104,106,102,104,98,102,110,108,99,96,99,109,107,112,95,105,115,93,109,99,109,106,100,103,102,99,98,108,110,106,119,103,100,112,107,103,102,110,112,104,99,98,113,105,105,111,104,95,115,91,95,100,104,82,108,109,104,95,98,114,102,112,116,109,111,96,91,95,104,96,112,106,107,88,112,135,109,93,106,104,103,119,103,109,100,103,109,101,113,100,110,104,100,105,102,90,99,110,100,110,103,110,100,105,103,99,110,114,99,106,105,98,83,100,112,107,99,118,105,94,95,101,108,110,100,106,100,113,114,87,106,92,107,110,98,95,106,102,108,114,98,101,110,108,100,99,102,110,104,110,92,100,117,98,108,106,109,100,104,99,105,90,100,105,110,110,118,99,108,94,101,99,102,111,91,106,114,106,101,113,97,103,100,102,105,115,90,97,99,107,100,113,95,86,112,109,98,103,96,102,96,98,99,97,110,101,96,98,103,120,96,113,112,104,104,105,99,102,101,98,98,115,103,97,104,101,106,99,102,99,99,106,91,109,104,113,105,107,103,94,96,107,109,117,107,92,98,71,108,112,113,96,105,108,103,97,97,95,101,104,113,99,96,99,106,93,91,110,108,95,97,101,112,106,98,102,110,102,106,120,109,98,95,101,108,104,110,88,96,107,89,103,106,103,91,115,98,105,94,105,94,116,120,108,105,105,103,109,103,90,86,101,96,104,108,100,100,98,101,118,113,108,102,102,97,107,85,106,110,108,96,110,99,94,104,105,96,106,95,109,111,102,101,85,106,97,104,104,113,94,100,106,106,107,105,96,98,97,98,105,115,104,104,110,112,105,110,100,87,107,117,103,89,105,101,119,110,105,116,98,96,103,108,111,106,101,123,108,108,103,104,113,101,99,101,111,99,102,97,109,98,98,87,96,102,111,98,109,97,84,107,99,102,96,102,106,109,105,116,110,104,108,88,97,99,113,112,95,100,108,92,95,92,100,104,105,107,100,106,100,103,73,107,107,109,100,92,126,116,120,106,99,85,109,92,132,96,116,101,96,92,110,110,108,115,103,95,86,103,110,110,107,98,112,109,119,119,99,98,115,116,104,109,111,113,95,114,105,90, +578.59705,100,105,107,97,109,110,98,95,104,108,91,99,86,97,108,99,102,105,105,103,123,96,97,95,102,106,104,85,97,102,99,107,132,96,104,94,103,97,114,102,108,109,103,89,107,101,112,96,98,98,111,100,103,102,95,105,104,95,115,98,105,103,100,104,107,123,93,114,97,108,105,103,85,106,101,107,99,94,108,114,99,106,102,98,102,95,107,98,96,96,103,98,115,94,108,99,106,102,99,94,92,104,107,112,83,107,104,113,103,114,104,114,110,93,99,95,99,112,103,100,94,96,108,105,108,93,112,110,104,106,107,113,97,108,102,96,100,79,93,105,91,109,103,88,100,111,96,88,96,101,98,141,111,99,96,104,99,91,97,107,104,96,104,104,104,99,104,103,74,115,100,110,114,98,112,102,106,98,108,94,106,100,109,97,114,104,99,104,111,103,100,94,100,102,111,102,104,99,115,92,95,106,105,113,103,111,111,108,112,116,110,106,104,103,98,95,99,101,98,105,101,106,103,93,96,112,104,100,105,102,104,105,101,102,105,123,120,105,109,102,82,116,98,99,97,116,107,120,96,138,110,110,118,102,97,110,104,106,96,95,109,106,90,118,100,98,117,112,109,113,99,120,105,95,111,103,106,96,102,105,110,113,107,100,123,104,98,109,113,105,88,105,111,103,129,103,106,94,99,100,100,102,94,109,92,111,103,110,99,104,92,103,106,113,102,102,113,109,104,112,120,105,104,116,118,100,108,90,117,111,107,109,101,97,114,95,101,104,104,104,92,110,106,101,90,103,111,111,108,108,117,114,106,109,106,122,110,108,101,104,110,100,100,101,96,99,102,113,106,113,107,95,111,94,110,110,111,101,99,106,105,102,106,109,104,97,113,95,100,105,100,108,103,108,103,111,99,111,98,110,99,86,91,95,104,108,98,86,113,108,108,92,102,113,96,102,101,106,100,92,104,95,92,107,103,108,90,100,111,109,72,100,111,100,120,105,101,93,100,125,106,99,95,106,93,99,98,91,106,106,106,116,114,109,105,104,98,97,103,109,107,101,100,108,100,111,104,96,114,99,100,98,106,100,123,109,105,103,103,101,90,101,111,108,100,109,113,113,100,124,117,104,95,105,94,102,106,106,105,96,109,103,101,114,100,106,100,109,101,100,101,115,103,104,93,98,115,103,116,105,101,103,98,105,95,96,104,102,107,103,113,101,109,97,103,116,111,110,113,116,105,95,107,104,107,92,110,103,106,69,94,113,106,121,95,99,118,101,105,103,104,92,103,118,92,106,94,104,102,106,99,91,110,101,109,109,103,110,99,101,101,125,107,126,103,117,112,107,97,97,107,119,92,98,107,101,110,105,108,109,114,111,109,81,103,102,93,105,112,107,100,118,97,102,102,106,109,99,112,103,101,102,106,104,106,99,93,99,119,107,90,105,97,100,104,129,96,103,114,98,109,105,102,100,106,97,114,120,113,112,107,113,105,111,116,106,109,116,110,95,112,106,111,110,103,94,108,109,113,100,105,98,102,102,109,108,121,105,108,109,125,106,104,98,120,101,94,125,104,117,102,98,109,104,100,109,104,106,116,100,111,109,105,109,118,104,105,115,109,104,103,95,102,118,103,108,91,108,100,114,101,94,111,107,98,101,110,110,108,109,96,117,103,110,101,100,110,107,100,109,107,110,107,105,105,106,107,105,104,115,87,101,109,102,116,104,104,105,101,99,106,97,107,98,94,114,93,99,108,108,119,108,107,106,109,99,111,102,100,94,105,100,114,110,110,112,106,110,111,108,111,112,108,112,94,114,95,98,111,138,106,104,116,112,98,102,105,100,116,95,106,110,101,99,108,104,96,97,107,108,104,96,106,114,102,104,114,106,114,106,105,94,101,97,112,104,123,96,113,111,112,105,115,107,70,105,107,111,100,111,98,104,102,94,95,109,99,90,105,99,82,118,96,105,98,111,91,110,116,99,111,104,110,105,113,112,117,98,98,116,105,111,109,109,111,122,97,80,113,95,91,109,107,97,97,101,105,101,102,87,91,105,111,121,101,109,106,113,106,101,105,114,109,100,108,103,110,117,105,100,108,89,103,118,102,111,106,115,101,90,104,101,111,120,109,111,102,103,96,103,113,92,106,108,111,93,111,111,107,103,100,109,109,108,110,97,116,98,109,97,111,108,114,86,101,110,113,106,92,99,95,115,104,107,99,111,119,96,98,97,88,102,103,101,124,104,96,101,96,110,111,117,103,100,104,114,105,99,112,104,103,93,110,107,102,117,102,106,111,99,104,103,103,121,110,112,114,69,103,99,103,114,111,110,123,112,113,103,94,114,128,98,117,109,115,129,126,145,136,147,174,200,208,251,241,230,260,241,225,205,184,177,190,168,162,160,137,118,126,126,123,144,114,122,117,119,115,108,109,90,103,111,104,126,112,99,109,118,107,106,106,116,80,103,94,101,106,105,119,103,113,105,112,104,109,98,107,103,117,112,109,95,112,115,98,106,97,98,96,105,107,120,105,107,109,105,97,107,96,97,110,94,100,102,98,99,117,107,99,103,108,109,99,99,99,98,117,113,103,104,102,90,110,102,101,104,98,98,116,98,110,106,115,103,103,100,108,111,107,104,102,96,101,104,95,104,96,101,108,94,96,92,107,102,101,70,114,98,91,111,105,99,104,99,106,107,104,102,104,104,108,107,120,107,105,106,106,97,106,107,111,95,105,93,113,98,103,104,104,90,111,104,103,101,112,107,98,121,107,104,104,107,117,98,100,116,90,116,100,99,106,107,105,103,118,97,104,94,110,106,99,99,99,102,100,109,107,107,109,111,101,110,110,113,96,103,104,105,105,114,113,113,101,104,114,95,106,113,105,102,111,112,117,99,102,122,111,107,106,126,89,106,103,110,87,108,103,101,105,104,93,103,90,106,102,106,99,100,119,115,98,113,102,107,91,108,105,116,103,99,101,104,101,83,96,115,102,101,120,107,93,116,106,114,112,107,112,102,99,103,103,98,99,110,111,103,93,101,106,102,107,92,102,112,91,98,115,101,105,103,111,113,97,106,89,113,111,112,110,101,105,104,103,101,102,98,94,105,95,101,103,102,108,110,105,108,110,102,102,116,99,105,102,107,112,111,102,105,105,99,98,103,108,106,109,102,98,102,112,97,104,108,95,104,103,106,115,100,116,107,83,90,107,112,113,103,91,114,112,116,110,95,97,100,88,114,98,104,104,103,99,105,108,110,121,94,97,102,104,99,108,98,113,87,85,100,110,115,112,98,105,103,106,95,98,103,119,112,96,115,112,106,118,111,100,115,91,113,117,99,99,92,113,101,112,101,126,89,111,111,103,98,104,109,104,115,100,101,115,107,106,107,104,94,107,106,99,104,99,107,98,103,92,116,98,113,109,91,103,104,105,98,104,94,98,102,103,112,100,98,102,116,97,115,108,106,113,99,110,103,115,116,93,101,122,99,110,82,109,101,107,103,101,119,96,106,90,112,117,97,101,101,91,104,105,110,103,108,98,105,113,111,107,104,105,110,106,113,111,114,115,103,105,102,111,95,94,117,142,117,90,87,99,109,97,94,113,106,105,105,90,113,113,100,82,94,89,103,108,107,108,99,106,105,101,102,113,108,109,105,91,106,108,106,98,106,105,99,106,116,99,113,115,102,108,104,102,101,115,107,109,124,109,95,107,103,105,114,100,86,104,93,112,101,105,108,103,112,95,100,94,108,109,104,99,108,113,102,112,114,108,105,107,100,120,121,116,101,108,98,86,106,106,104,105,112,110,102,101,101,117,101,95,94,108,107,109,91,104,106,91,108,104,106,99,109,107,107,98,110,106,98,98,100,104,89,99,96,100,105,102,103,114,96,106,107,94,105,92,101,107,106,106,106,75,95,106,102,112,100,125,109,110,102,97,116,103,120,99,108,104,109,96,103,98,108,101,110,87,108,91,98,103,106,90,99,103,102,98,111,107,99,103,104,64,120,96,107,107,99,117,106,106,91,108,103,115,92,103,107,96,103,105,102,110,106,109,106,116,93,104,104,106,106,103,101,119,104,109,98,102,110,113,119,95,104,105,108,111,100,109,101,116,117,112,113,117,104,98,108,105,103,95,104,105,100,110,111,113,113,103,112,104,96,101,117,108,111,109,128,100,97,104,101,103,112,103,104,119,99,119,116,106,108,96,101,103,121,99,98,99,91,106,99,100,106,112,97,98,110,101,102,105,104,105,94,114,99,91,117,110,106,109,97,97,92,102,98,87,107,124,103,103,102,91,100,98,96,105,106,111,109,110,86,103,107,116,100,108,113,100,108,84,118,110,94,101,100,118,99,100,105,88,114,82,98,102,114,97,112,109,116,106,99,96,107,102,100,107,91,99,106,96,115,118,99,92,107,111,102,110,102,103,101,110,100,100,98,120,103,106,120,96,104,98,105,108,101,98,98,92,96,101,105,125,100,108,119,108,105,93,124,108,120,100,111,104,110,93,112,94,96,97,105,98,114,102,104,105,106,103,110,105,116,117,101,99,103,109,98,91,106,109,94,96,117,104,93,99,105,102,102,102,99,117,99,99,94,110,99,94,95,108,109,104,96,106,112,106,109,112,111,115,99,112,101,118,101,110,97,74,95,107,121,94,102,105,97,103,86,105,105,107,112,105,103,100,98,109,87,106,98,95,101,109,103,116,114,99,114,110,105,92,111,105,94,95,101,95,97,107,106,109,101,99,106,120,97,102,112,105,103,105,100,89,100,92,97,93,109,103,100,95,110,107,104,105,92,109,94,124,92,102,98,116,103,98,94,116,108,101,101,105,104,78,121,99,96,111,100,113,101,123,104,104,117,93,101,103,90,111,108,105,90,123,103,97,119,103,83, +578.73798,85,115,95,118,103,101,101,115,112,108,105,106,90,105,97,91,100,108,113,105,98,100,92,113,91,105,105,110,103,99,104,110,97,107,101,114,102,86,100,101,109,93,110,107,92,107,105,112,96,106,106,93,94,87,109,93,114,111,108,89,102,99,104,104,98,126,100,104,82,108,94,94,101,108,102,99,80,94,123,103,91,108,84,89,104,108,111,98,114,105,103,107,101,102,102,106,102,94,105,91,92,102,109,102,103,105,105,94,95,96,106,96,107,98,113,102,134,108,104,99,114,91,101,112,98,109,110,93,111,108,103,106,97,99,104,104,99,103,110,110,95,98,98,107,113,104,121,105,93,91,97,96,100,100,111,106,106,94,103,99,94,108,94,110,110,107,108,103,113,106,112,99,99,98,113,89,102,94,102,116,100,94,112,108,96,111,93,93,108,100,103,101,103,107,101,97,113,103,101,107,101,100,100,103,106,105,98,107,119,99,89,78,103,109,90,103,105,99,103,105,102,106,99,100,101,100,109,101,103,81,93,96,108,109,117,113,114,102,96,98,99,99,105,110,98,113,96,96,100,100,107,105,104,102,95,105,96,107,104,97,102,99,106,99,107,115,99,97,91,91,98,97,103,99,107,104,109,95,100,102,102,98,113,98,94,103,93,98,98,114,103,109,104,104,105,94,108,101,93,105,99,95,129,113,98,101,108,107,107,104,89,105,105,101,105,119,105,103,112,110,101,93,102,102,109,101,101,91,75,106,106,117,106,104,97,105,101,99,94,103,104,83,101,107,112,97,104,100,83,100,105,103,100,94,113,102,113,111,101,103,94,95,105,100,102,97,102,103,100,100,108,105,105,114,105,91,107,94,107,99,110,104,89,107,83,98,101,107,104,101,108,100,121,100,92,100,95,102,109,109,102,85,96,95,94,103,90,105,114,104,94,120,108,112,104,107,102,101,89,110,97,103,95,103,100,109,108,99,108,103,109,113,103,116,97,92,105,105,105,112,117,109,103,110,105,105,97,103,104,106,104,107,112,103,106,113,97,106,102,102,99,99,114,105,108,100,109,101,99,111,91,97,101,108,109,107,100,105,128,107,94,107,103,100,98,95,113,103,111,108,108,106,77,90,96,102,102,100,105,99,109,103,99,106,110,99,92,92,112,109,109,107,95,110,108,97,110,93,106,91,102,86,101,99,119,110,117,113,99,90,108,110,112,93,106,92,99,110,95,112,101,103,109,108,108,101,91,131,101,85,114,115,107,102,99,91,102,117,101,110,113,101,106,104,100,101,118,106,118,100,104,103,92,104,102,93,109,103,83,97,103,113,103,100,108,119,100,111,105,99,102,102,107,105,104,108,95,99,107,94,103,101,108,113,104,100,94,99,106,102,92,94,104,109,104,99,97,103,84,103,111,95,92,107,109,95,103,125,112,116,105,93,103,106,100,100,99,94,102,112,102,94,84,103,107,100,103,99,92,109,92,118,106,105,102,100,110,107,104,107,110,108,103,104,98,113,108,104,99,86,113,106,85,96,100,102,91,91,113,106,106,98,121,99,95,118,111,86,107,99,106,101,100,97,104,113,103,105,104,111,100,97,114,105,94,98,97,95,98,102,101,109,109,100,100,98,106,86,121,111,101,103,117,99,91,88,106,116,92,106,95,106,104,97,104,95,98,94,125,100,109,103,111,100,72,133,95,108,92,102,105,105,105,102,102,113,111,113,102,106,91,103,103,109,97,103,105,100,103,97,95,90,101,99,94,108,116,96,99,99,100,113,82,107,102,129,104,109,98,92,104,116,111,115,98,114,98,105,94,103,102,93,106,103,99,117,98,107,113,111,100,104,107,97,104,105,116,104,121,101,104,100,106,120,107,108,115,108,120,99,99,107,107,88,113,106,111,90,106,104,94,103,105,105,102,90,106,109,99,94,100,97,107,94,105,117,101,112,109,114,107,100,90,110,101,101,104,103,117,113,107,111,101,113,114,111,103,95,105,105,105,96,105,108,83,95,101,103,86,101,124,110,102,100,96,102,98,106,104,113,113,104,104,108,108,93,103,117,86,103,91,104,120,109,109,101,94,112,109,113,103,102,112,108,100,101,104,103,115,109,98,112,104,104,108,90,119,98,101,99,101,102,103,97,94,100,106,114,109,112,100,98,105,109,99,112,98,108,90,98,113,104,111,101,105,107,104,104,101,96,101,98,105,100,100,111,104,95,103,114,99,105,104,114,96,97,77,101,93,99,104,103,103,98,108,100,95,97,104,120,98,92,107,102,117,117,94,112,106,95,100,108,110,115,112,96,109,106,96,113,108,101,97,103,103,110,104,106,100,98,111,91,117,104,112,122,125,142,151,162,184,202,215,251,229,236,230,240,179,228,228,226,256,177,159,146,149,162,128,118,110,119,115,115,108,102,110,121,125,108,114,125,123,111,117,121,103,98,102,107,99,107,104,102,97,111,93,101,110,106,107,117,110,103,98,116,107,108,99,113,101,104,117,104,105,104,123,97,109,103,100,101,108,109,103,95,99,106,79,97,100,115,109,100,91,124,96,104,104,133,106,109,108,93,111,102,112,89,101,93,98,95,93,116,100,99,75,103,108,106,110,102,111,101,110,97,110,100,91,103,104,110,102,97,110,106,101,110,116,108,99,93,105,104,101,95,97,101,109,103,100,97,110,106,106,107,105,106,101,97,91,104,102,98,80,103,109,93,93,105,105,111,94,102,115,106,106,101,107,110,102,92,100,107,111,113,105,107,87,103,102,106,99,101,100,98,119,103,104,110,96,113,112,98,105,96,109,100,101,118,109,108,112,95,108,97,100,112,94,105,108,97,109,112,98,98,111,112,108,97,106,99,114,110,111,89,89,112,104,101,107,117,104,107,108,91,101,101,108,113,115,101,114,107,109,98,108,109,101,105,119,107,104,106,103,110,120,103,105,106,105,108,123,106,87,102,111,121,104,103,100,97,104,101,102,119,125,112,113,99,114,101,126,100,115,99,116,96,112,96,101,100,111,106,111,91,91,95,95,108,109,98,102,103,109,108,97,105,104,108,87,114,107,113,102,108,105,115,95,102,107,110,103,113,112,100,95,98,106,96,107,99,95,99,105,111,107,90,105,105,86,105,103,104,88,113,113,79,100,103,101,109,116,84,113,108,109,100,110,114,102,95,93,109,106,104,106,96,98,100,91,104,97,108,116,107,94,91,114,100,109,94,96,102,95,97,102,106,111,102,107,100,117,105,109,108,97,106,105,106,108,101,100,105,103,97,91,102,106,108,91,81,114,104,110,101,104,97,95,102,100,92,103,101,101,106,96,90,113,98,94,103,91,93,106,101,116,91,116,113,97,112,105,105,97,101,103,103,111,89,105,111,105,94,94,100,100,102,101,90,85,92,106,106,105,100,86,103,99,92,111,106,96,98,105,95,87,106,112,101,101,100,106,103,112,92,91,89,97,113,110,99,101,94,107,106,99,124,113,96,113,106,112,103,103,104,96,100,104,106,92,104,103,109,102,113,106,103,106,101,105,113,107,106,108,102,93,105,106,114,112,101,117,103,100,89,99,100,117,97,94,100,95,115,111,106,101,105,91,106,94,105,116,98,104,83,103,114,109,100,91,100,100,87,107,75,111,112,104,100,103,109,94,101,67,117,104,105,104,106,97,94,104,106,104,107,107,111,109,95,96,102,107,97,106,108,110,104,103,97,106,92,92,95,102,107,102,114,75,113,98,95,109,104,104,102,101,106,104,103,119,99,89,97,117,102,87,94,82,109,89,107,87,111,102,94,107,94,94,122,103,101,116,96,100,103,101,101,88,105,101,92,102,102,92,110,116,110,107,102,87,105,113,103,102,105,91,93,106,103,95,104,91,101,115,108,104,106,92,89,92,103,82,113,100,94,92,102,80,106,88,99,107,99,96,113,82,103,107,94,109,99,96,111,104,92,103,93,100,103,94,101,105,112,103,102,100,98,97,125,102,100,107,99,104,90,98,108,103,98,111,101,102,109,104,112,108,106,111,100,113,97,105,103,78,95,108,99,114,104,97,103,107,102,100,94,102,105,101,102,88,95,104,104,103,109,100,110,95,107,103,101,112,110,99,95,104,102,106,106,68,93,120,102,95,95,110,113,102,102,104,108,102,94,109,110,102,104,111,102,94,108,103,99,101,107,114,100,113,104,102,116,104,98,101,101,109,102,112,107,112,97,108,92,98,103,112,99,93,105,98,106,97,95,99,96,96,90,99,107,104,113,102,92,106,105,107,92,87,112,105,109,98,117,99,102,104,106,96,102,112,101,99,96,109,102,112,101,102,97,90,109,101,111,106,97,113,98,98,94,104,105,99,104,106,108,104,103,103,99,106,98,111,109,112,103,111,89,110,107,99,104,108,102,96,99,92,103,113,105,88,96,106,112,100,91,98,99,105,129,101,104,117,99,104,100,105,93,97,106,104,106,107,83,107,101,96,108,104,84,98,121,100,101,109,91,105,109,94,104,101,105,102,98,95,115,70,110,115,98,94,118,91,93,102,109,97,98,113,103,100,113,113,105,95,110,112,105,82,101,102,101,106,87,104,105,98,102,112,110,109,98,95,103,102,102,99,99,105,99,113,101,96,91,104,100,112,103,104,107,102,97,105,103,90,98,104,98,107,94,96,98,104,91,108,112,105,104,105,92,99,91,106,106,86,106,106,101,97,65,93,96,104,103,106,99,101,85,99,88,100,84,114,110,91,99,102,95,100,101,103,110,111,109,113,105,82,96,101,92,98,112,98,102,97,96,79,109,93,102,115,88,92,98,104,93,100,113,97,96,106,101,108,95,95,101,91,100,113,96,111,87,112,94,111,101,112,110,105,97,102,107,99,82,104,101,101,108,104,104, +578.87891,85,93,100,99,94,96,111,121,119,114,95,102,92,108,110,100,103,106,81,103,103,112,108,104,98,104,107,107,102,109,103,109,99,111,116,106,100,100,103,91,93,109,107,93,105,87,98,105,91,105,103,83,96,97,100,98,97,105,102,103,103,97,99,102,105,103,102,131,93,115,102,109,103,108,112,108,95,98,113,110,106,79,107,103,110,95,95,95,109,104,90,94,99,97,89,106,93,90,117,106,105,92,102,91,99,102,103,100,98,100,96,104,100,103,106,111,104,101,108,100,109,99,112,111,105,117,91,102,105,95,112,113,99,125,113,107,101,103,109,88,110,91,106,104,117,94,109,104,100,92,102,110,99,89,110,118,103,99,93,100,110,101,107,104,99,95,103,109,105,103,102,99,127,105,97,96,104,90,104,114,114,104,103,115,112,97,92,105,110,110,98,101,100,108,97,110,109,104,106,110,104,102,111,100,98,96,91,102,112,102,107,108,110,108,104,79,108,99,97,99,101,107,95,108,102,117,123,104,110,108,103,102,116,104,114,93,115,110,101,105,104,107,89,98,107,88,105,106,110,106,113,103,117,106,102,107,105,94,94,101,98,97,95,104,99,100,102,106,112,106,106,95,110,96,112,118,105,108,109,89,116,110,99,104,98,106,111,91,110,114,105,104,114,106,110,104,109,96,100,103,95,108,100,118,105,109,104,106,108,121,95,107,97,98,102,88,87,112,94,98,109,97,106,108,98,104,98,101,112,112,114,100,104,112,100,114,120,113,114,95,92,97,104,109,97,110,104,105,104,103,108,101,98,113,105,108,109,110,108,103,105,95,103,110,104,96,97,98,95,103,115,102,96,112,98,100,104,107,112,104,99,104,98,106,109,96,102,110,104,107,108,93,86,99,104,104,91,117,99,107,118,99,115,99,114,107,114,113,106,107,96,106,101,103,110,99,106,100,115,102,109,96,108,103,111,91,106,116,114,110,93,116,102,116,108,101,106,120,100,90,116,102,93,109,105,95,105,97,113,114,100,107,111,120,106,104,94,99,106,99,92,113,100,105,108,107,113,123,95,91,112,109,105,99,98,105,93,105,109,111,85,107,110,103,100,109,109,98,108,109,112,117,100,102,102,103,99,100,95,95,118,110,105,99,107,106,101,91,107,94,107,100,95,115,101,98,110,110,91,91,102,99,95,95,80,114,122,127,99,107,98,115,106,106,104,108,80,98,99,106,102,109,110,110,121,101,107,98,107,102,113,103,101,102,98,95,105,103,99,95,107,100,95,117,96,119,116,95,104,96,98,91,103,97,111,95,113,94,118,106,102,99,125,101,98,103,113,117,112,106,97,95,92,101,105,106,105,102,103,120,97,107,111,105,109,104,118,96,101,119,109,120,108,107,109,89,101,104,100,104,109,105,123,100,121,109,106,99,108,94,109,111,108,97,98,88,99,93,101,97,119,110,104,96,96,100,76,89,94,106,118,109,105,107,100,117,108,109,100,117,107,106,101,107,91,101,115,96,112,97,117,106,108,110,102,108,120,108,118,99,105,95,109,117,103,101,105,94,119,103,104,88,113,106,112,100,101,105,94,117,109,108,108,91,106,111,96,122,99,103,105,100,107,95,106,102,99,108,120,101,99,103,107,110,102,101,109,103,103,110,109,104,110,105,100,87,102,93,107,106,105,97,98,101,99,102,106,110,108,107,112,106,97,102,110,109,111,102,109,132,102,112,98,109,89,100,99,98,114,111,114,101,116,106,99,113,100,103,105,96,103,108,110,95,103,105,107,107,123,104,108,87,100,119,106,107,103,103,99,105,91,110,99,99,126,114,118,113,99,98,103,107,113,111,103,111,105,101,101,98,101,91,100,105,96,98,102,106,107,109,98,107,112,116,102,110,111,94,95,113,96,106,101,94,109,122,111,106,105,97,112,103,103,105,96,102,97,102,116,100,108,113,95,102,100,106,104,120,106,105,102,109,101,104,113,101,105,115,106,113,97,121,96,118,118,104,93,113,109,111,98,107,126,102,115,84,98,89,111,110,110,112,108,113,95,101,93,101,102,112,102,102,129,98,102,99,84,110,95,106,109,111,108,107,99,102,99,102,110,100,105,104,99,106,97,91,104,110,99,104,104,113,91,112,104,91,103,98,104,99,67,103,107,112,99,105,101,98,104,105,111,103,100,90,100,109,101,108,100,111,92,99,103,121,104,103,111,110,92,103,105,107,97,92,111,95,108,105,106,113,111,102,118,94,126,105,108,125,106,101,121,94,103,114,111,107,117,112,96,117,100,104,104,105,109,100,108,107,93,106,116,113,117,100,113,122,112,110,110,109,117,97,115,115,95,134,126,129,165,158,180,186,224,252,208,223,225,235,213,225,179,185,188,178,177,149,130,157,136,124,104,105,112,95,117,112,108,111,117,117,116,114,112,94,118,105,115,120,92,80,104,109,96,101,103,107,113,106,117,102,119,91,99,106,99,108,97,117,109,111,95,107,113,106,111,110,111,119,107,111,105,96,104,102,115,109,111,105,102,119,112,107,110,107,113,104,120,111,106,103,106,101,105,106,105,102,103,92,107,94,101,111,92,109,101,99,101,91,98,109,106,95,116,115,112,103,119,121,104,104,115,98,110,93,108,112,105,104,118,104,97,101,104,105,106,117,97,91,110,110,109,105,82,101,104,107,112,98,106,104,105,103,131,96,91,111,94,102,104,102,91,103,104,103,104,101,103,113,134,101,125,104,98,103,104,99,101,104,98,108,108,98,102,100,102,101,111,106,98,99,102,102,103,104,106,109,108,109,105,111,106,108,100,104,102,112,125,94,83,114,93,96,105,107,106,103,101,99,106,104,108,116,108,103,105,106,103,99,101,104,113,108,107,90,110,124,100,100,101,108,111,112,118,108,102,106,103,102,106,97,106,101,107,101,105,106,106,110,110,97,110,119,111,108,107,105,105,99,96,93,105,107,95,102,116,103,124,94,101,120,110,104,108,90,107,105,101,100,105,99,100,109,120,100,107,107,102,110,109,99,106,111,92,104,106,102,107,110,102,98,106,111,127,102,98,103,102,99,90,104,112,120,105,108,104,106,101,102,97,96,89,100,98,102,99,102,123,109,106,107,100,105,104,106,102,100,103,107,98,98,105,106,109,103,92,99,108,92,110,101,107,101,120,106,108,103,115,141,114,102,105,103,106,102,114,103,108,109,103,105,89,103,103,101,99,107,107,102,124,113,95,117,109,105,108,112,96,112,109,101,110,114,107,116,105,98,108,105,94,110,107,92,96,106,115,114,120,107,113,103,113,109,112,104,75,92,107,100,98,99,99,111,106,114,101,112,105,107,109,106,105,101,104,110,102,99,110,99,105,99,98,102,95,103,108,93,117,95,100,106,101,117,98,106,105,105,120,102,114,114,91,107,110,106,100,113,99,101,98,98,111,109,117,108,106,110,104,97,104,98,110,107,97,115,101,105,116,115,112,102,97,100,109,105,113,95,102,92,106,112,110,111,106,103,113,116,110,108,100,109,91,109,99,100,113,109,105,103,103,109,106,104,106,124,97,108,113,105,115,101,107,117,99,108,108,100,101,100,107,109,103,117,108,102,96,110,104,109,118,109,103,80,110,103,101,108,98,106,109,109,96,111,100,108,99,104,105,97,111,100,105,106,102,92,113,101,109,97,88,99,113,101,111,101,96,108,113,116,117,100,96,96,96,105,106,109,102,102,111,93,105,105,109,97,111,110,102,124,110,109,113,103,116,117,104,107,103,101,108,98,77,117,109,116,93,103,105,106,97,109,99,76,86,103,99,101,103,101,101,106,100,109,107,99,103,103,105,116,102,78,100,117,95,100,103,98,85,119,96,100,101,102,92,112,102,104,101,98,102,104,105,97,103,110,86,107,112,96,105,112,113,99,108,101,98,109,101,105,100,108,102,101,105,117,103,103,103,106,98,89,106,110,100,97,99,111,107,102,93,115,113,114,87,102,107,107,104,104,102,112,104,119,93,65,113,96,108,93,109,84,112,102,92,100,113,111,102,101,110,77,104,103,96,106,93,116,100,105,107,113,116,102,95,103,111,118,108,94,95,86,95,101,123,102,109,113,106,106,100,103,111,101,99,112,94,103,101,120,105,109,108,85,98,112,111,109,114,114,94,106,122,106,103,107,109,109,102,103,97,112,104,98,104,105,130,98,113,101,106,102,103,99,106,109,102,100,111,104,111,103,102,87,95,107,103,108,111,102,109,105,109,111,112,109,90,105,111,100,98,94,98,108,101,106,112,102,99,107,106,112,106,108,100,99,103,109,96,100,103,99,99,91,99,113,101,102,98,114,104,112,108,110,106,103,96,106,107,97,104,108,98,95,99,106,109,107,104,101,108,114,104,96,107,111,107,103,92,112,103,115,106,94,95,91,95,102,103,116,103,104,94,102,108,105,105,107,92,115,108,104,104,111,107,108,103,96,97,118,91,98,109,98,103,105,110,108,106,109,116,105,103,99,105,107,107,94,110,111,99,105,112,106,106,93,106,111,115,86,102,103,109,111,117,104,104,109,76,111,101,106,102,95,97,107,102,115,116,102,109,103,97,102,105,85,103,118,117,116,104,91,102,84,116,93,116,93,106,109,113,105,90,96,112,100,96,108,106,96,104,99,113,104,116,103,107,109,112,111,92,103,106,106,103,103,102,94,119,108,88,86,97,108,105,100,104,108,113,97,110,94,91,98,106,109,102,107,97,104,98,98,102,121,111,100,89,105,103,97,107,108,94,112,91,111,100,109,90,98,99,96,100,117,118,104,112,97,105,103,114,102,98,110,102,97,96,115,96,96,102,110,111,106,110,97,110,103,105,124,117,97,101,104,103,81,112,102,96,100,111,97, +579.0199,98,85,89,105,85,117,98,112,113,117,107,113,118,125,95,95,109,105,111,113,104,109,97,105,99,108,110,108,95,99,102,98,115,97,107,113,108,98,103,107,105,105,99,100,104,109,109,102,106,108,100,104,101,134,97,103,107,97,120,89,115,98,110,105,104,103,94,108,102,109,91,105,94,124,94,93,106,95,113,105,113,113,131,123,94,106,103,105,103,97,103,100,88,75,102,102,113,106,88,111,112,106,103,103,102,109,101,90,117,98,103,120,117,94,102,100,94,107,113,108,97,114,95,100,114,98,104,104,109,113,110,109,96,105,105,119,103,83,101,130,103,113,100,101,99,110,106,107,110,96,104,104,121,102,98,100,101,99,98,100,103,132,106,108,107,102,101,113,98,99,102,109,103,104,98,95,104,98,102,102,103,121,109,108,117,109,104,92,108,111,92,111,92,97,103,116,113,100,97,114,108,104,106,114,103,109,103,99,110,105,100,111,86,117,104,100,113,114,107,104,98,107,112,99,98,82,113,94,108,110,101,113,103,108,103,104,99,106,103,102,113,99,99,109,95,93,99,113,111,105,107,119,119,109,100,104,103,102,108,109,98,104,89,97,83,82,113,105,104,105,106,112,103,100,99,100,113,92,104,98,110,119,100,104,106,113,92,99,104,115,98,109,108,117,108,112,113,100,98,117,101,105,96,111,99,106,104,80,106,108,101,114,116,96,103,107,116,103,104,97,88,89,96,101,104,104,98,96,113,111,110,103,117,111,112,84,103,97,119,104,100,106,113,96,105,110,105,98,118,109,108,120,108,98,93,116,94,99,116,106,89,102,112,94,107,87,102,115,113,114,102,98,111,113,102,95,113,110,93,120,94,108,105,103,107,99,96,88,115,107,101,98,100,99,104,105,109,109,108,106,109,114,99,91,107,104,100,110,101,108,117,103,105,106,100,101,108,101,101,101,104,111,117,115,114,102,112,96,91,104,99,111,100,99,106,95,102,99,104,124,112,100,104,100,104,105,96,104,104,115,102,108,106,114,95,113,103,115,112,105,97,95,112,120,112,108,103,98,105,117,113,107,101,104,101,100,100,125,95,87,109,111,117,109,101,101,114,114,103,108,117,101,115,100,98,104,101,122,109,114,105,102,95,114,97,107,103,108,102,106,102,122,108,105,115,108,109,115,111,106,108,105,118,117,104,107,111,109,109,106,134,96,106,114,110,100,104,107,92,99,104,103,113,105,112,93,109,100,107,111,91,108,103,95,101,108,104,111,106,107,110,86,112,111,97,101,114,101,100,110,99,121,113,102,100,98,100,102,110,101,118,99,123,104,106,97,105,110,112,103,108,111,97,95,115,108,109,102,120,95,92,116,104,103,110,113,105,99,113,117,87,105,109,116,103,105,103,107,102,108,115,107,101,116,111,116,96,107,111,111,105,102,98,112,107,97,105,104,109,119,110,96,104,106,105,99,107,106,103,102,106,108,113,118,105,101,103,108,111,99,101,120,107,101,104,94,88,89,104,89,98,110,99,108,105,107,99,104,114,100,107,99,110,96,99,100,71,120,108,107,108,102,106,104,105,115,112,107,105,99,103,98,89,96,116,109,103,102,110,105,94,91,97,108,101,103,117,114,121,100,112,98,96,111,102,112,114,113,108,75,102,107,106,111,92,117,96,101,108,110,103,103,113,105,102,110,103,111,109,107,113,91,100,101,110,92,117,105,110,118,109,113,104,102,101,108,92,109,106,104,112,132,99,102,106,103,97,96,109,117,114,110,125,110,113,94,111,111,95,100,107,98,114,105,108,97,111,102,103,106,117,107,95,108,106,109,105,84,116,109,110,100,111,95,111,109,110,104,105,80,106,114,107,103,104,108,110,115,117,105,85,100,101,123,120,105,102,94,113,111,105,117,94,107,91,117,105,99,103,100,103,107,97,100,113,103,104,104,106,100,105,99,104,102,117,96,104,112,113,109,139,119,103,98,94,104,98,104,117,101,101,98,110,125,122,105,95,121,104,111,113,118,116,94,112,101,104,105,99,106,96,111,107,108,106,109,105,119,94,115,93,108,109,104,110,98,101,101,101,107,100,113,80,118,104,110,108,102,120,102,107,114,108,117,96,111,99,96,104,103,101,111,119,105,117,101,110,96,95,100,106,96,104,111,93,101,94,96,101,109,102,107,102,105,102,112,112,105,111,96,102,104,100,87,105,117,110,106,93,98,100,108,102,99,112,105,99,100,107,112,102,96,102,106,100,94,98,110,113,103,124,90,101,117,106,106,94,138,103,116,91,95,111,112,117,95,98,103,101,106,115,102,107,103,110,103,98,106,102,124,107,111,114,131,128,105,151,155,184,194,202,219,205,233,266,266,217,214,215,250,199,208,180,194,155,140,153,147,152,121,117,114,117,107,121,113,94,102,115,106,107,116,111,105,109,116,102,128,112,101,94,103,103,96,103,109,98,98,106,117,105,103,105,96,86,109,105,92,96,92,113,96,121,110,109,102,105,110,111,117,96,117,101,108,99,95,120,99,89,109,109,111,95,115,103,105,110,110,95,113,114,110,105,72,114,102,117,105,105,102,106,98,100,110,116,103,112,106,100,101,117,106,100,100,119,100,107,123,113,108,95,103,102,101,95,110,116,107,112,93,101,104,103,101,102,94,102,109,112,103,108,99,95,102,102,107,110,105,99,103,102,106,118,110,94,111,105,98,91,102,114,109,102,108,111,97,111,110,97,92,101,120,99,105,119,103,104,104,111,98,108,121,108,97,117,104,89,98,103,92,102,98,115,109,92,108,113,109,106,114,104,102,101,107,98,107,109,112,107,111,121,110,108,102,104,109,108,99,97,107,104,98,102,113,105,106,109,104,98,98,111,99,103,103,95,106,90,107,108,108,102,105,107,105,113,108,93,105,106,107,111,107,117,109,104,114,107,112,107,103,119,111,100,109,105,108,114,106,97,97,97,108,98,96,99,115,90,112,91,100,111,79,104,96,116,95,107,105,94,88,104,105,99,118,103,103,104,100,112,101,101,95,99,122,109,109,110,97,117,109,99,112,108,102,93,104,108,106,85,124,100,104,140,104,99,100,109,107,112,103,94,116,102,119,106,106,111,108,106,109,99,68,99,111,101,99,103,104,97,97,103,102,100,109,107,103,124,112,113,101,96,79,98,120,99,104,103,118,104,102,109,98,113,120,110,101,106,112,108,112,110,95,109,104,100,96,112,106,105,107,105,95,101,108,107,106,113,115,106,107,106,98,92,95,97,104,107,124,100,92,90,97,120,96,105,105,110,109,104,116,110,111,99,112,85,112,109,116,102,111,111,112,102,115,91,98,98,109,118,100,105,106,96,102,99,113,114,103,103,98,108,87,102,108,108,108,105,113,126,104,82,113,114,106,113,106,106,100,99,83,101,103,97,99,101,93,100,99,97,98,105,98,103,98,106,115,96,104,97,107,105,119,106,112,106,96,106,97,112,100,103,99,104,104,109,108,108,107,99,98,117,110,98,116,99,101,107,109,100,112,104,112,113,103,83,114,106,104,104,115,105,88,115,111,108,105,107,107,109,108,97,103,101,124,105,95,108,95,97,99,105,87,111,108,98,94,112,111,115,106,103,105,105,113,113,103,93,99,102,109,106,103,117,116,106,98,89,110,97,93,110,123,110,105,96,94,102,98,103,106,116,112,137,110,107,102,117,99,115,104,103,110,113,99,112,105,114,105,102,106,108,112,94,99,107,105,112,99,103,100,103,77,104,97,112,110,112,108,99,104,90,102,103,117,99,99,113,110,105,102,103,96,98,100,111,102,119,104,112,113,106,109,110,98,107,91,95,98,96,100,95,110,117,103,114,99,103,97,100,94,103,102,105,91,100,101,114,106,90,104,97,102,104,111,106,106,107,99,100,104,107,103,109,103,118,121,106,89,114,111,91,108,91,120,102,103,108,128,104,95,114,107,92,94,100,106,95,110,94,111,106,105,95,111,111,116,96,102,118,92,105,119,99,99,106,108,104,102,107,113,102,91,92,99,98,114,102,108,113,82,114,105,110,108,100,108,106,112,105,103,105,105,103,112,107,117,114,113,104,109,136,103,122,105,122,114,102,107,100,114,110,106,97,102,113,96,108,112,91,103,96,110,97,100,105,109,87,95,87,114,109,108,116,103,91,104,105,120,102,110,109,105,101,114,113,99,108,106,95,107,99,101,117,95,106,75,115,104,108,98,107,105,111,102,103,107,98,105,104,97,100,95,118,103,100,99,103,108,102,104,94,115,114,103,115,112,108,96,99,104,113,111,102,109,109,113,104,110,104,109,104,109,113,116,104,99,96,99,97,97,111,99,106,104,111,98,104,106,107,94,112,103,119,109,91,103,110,116,91,93,103,91,114,101,113,76,101,109,109,99,118,91,105,101,107,100,95,104,105,110,96,113,117,108,108,95,97,121,106,104,110,102,109,95,109,103,110,110,113,116,104,94,107,93,119,113,111,103,94,101,99,113,106,106,98,108,103,110,101,100,109,105,101,95,116,107,102,98,88,105,112,106,107,114,111,104,107,115,99,103,113,102,106,103,104,97,106,100,119,101,106,105,104,99,116,107,110,103,97,110,102,109,110,100,103,85,98,108,101,114,96,108,103,98,105,90,103,101,105,102,102,113,112,94,107,118,112,112,113,80,108,107,115,119,98,101,108,95,106,88,104,112,94,106,115,112,99,102,96,84,105,102,96,109,102,100,96,94,107,104,114,115,95,108,103,99,109,99,116,100,107,105,103,94,103,105,100,107,102,105,105,99,113,98,112,120,113,99,87,92,96,102,105,104,82,107,102,116,103,92,107,109,108,94,104,114,100,121,113,87,118,100,108,99,117,100,110,108,97,87, +579.16083,103,101,102,104,111,106,96,105,93,101,85,103,103,102,107,102,89,109,103,112,99,107,110,107,109,101,107,108,99,96,124,93,96,113,91,121,105,101,105,105,96,115,101,112,100,100,99,112,95,100,89,104,105,104,118,95,112,101,115,97,92,105,104,109,101,116,94,103,117,108,113,108,108,97,94,126,99,91,105,99,95,113,104,92,98,107,101,100,84,122,107,102,77,104,116,102,100,118,96,105,105,102,107,101,103,111,101,95,107,93,126,105,99,99,83,99,117,100,114,95,112,104,103,91,113,111,103,114,99,88,101,103,108,112,107,108,104,97,99,97,109,108,102,118,104,102,120,94,85,99,95,102,108,104,94,102,100,119,113,109,97,108,100,103,105,91,109,108,105,112,98,93,108,104,105,94,110,86,109,103,91,110,97,115,98,107,105,93,110,107,113,111,94,102,88,101,104,95,103,114,89,98,95,95,89,106,109,109,107,98,103,107,99,94,93,104,102,108,95,112,104,100,99,118,99,117,112,109,98,99,91,95,102,105,113,91,97,102,108,109,114,104,111,105,100,98,104,107,91,105,100,104,104,107,110,109,92,98,90,103,94,105,97,102,96,103,83,90,87,97,102,99,103,101,95,114,104,91,95,123,102,110,95,101,114,91,107,108,110,98,100,102,110,94,106,105,103,107,97,108,92,90,113,105,100,100,110,109,107,116,97,108,108,106,125,106,99,106,83,93,101,108,111,107,106,115,98,105,106,110,106,90,102,115,101,106,114,95,107,104,95,95,102,113,108,110,134,104,107,100,99,103,94,113,109,98,97,103,97,107,100,99,103,98,102,106,104,117,103,115,117,102,102,106,93,110,110,92,110,109,107,101,115,105,96,90,98,94,106,97,102,101,102,112,106,106,96,103,95,115,85,100,105,100,101,96,102,107,105,109,110,102,105,91,102,92,110,102,103,113,104,102,102,108,103,103,110,97,101,114,92,74,87,110,99,108,102,90,99,107,121,102,100,105,97,109,88,108,104,107,101,113,120,105,110,102,101,100,110,109,110,103,99,100,113,108,99,93,108,95,102,107,108,103,99,100,104,91,83,93,99,112,117,105,106,109,116,102,103,115,110,101,106,107,90,115,96,103,109,107,113,90,113,116,100,109,101,100,104,106,103,117,104,100,119,87,109,101,101,73,110,96,87,105,101,113,110,108,105,104,94,100,102,103,103,107,101,105,87,95,98,109,90,105,112,96,112,90,107,109,112,111,104,107,103,95,109,105,104,109,87,101,96,108,102,101,103,104,97,109,91,96,105,93,108,104,101,98,106,111,98,104,113,100,105,104,104,104,109,101,101,104,106,108,97,106,87,102,115,102,109,104,100,107,97,106,105,106,103,100,108,90,120,101,108,107,108,110,109,105,108,103,112,105,108,121,103,112,99,101,96,109,109,107,102,118,97,108,112,99,108,102,103,111,103,94,113,105,101,110,118,104,108,103,102,104,110,100,106,91,100,98,103,97,95,100,111,98,111,95,105,114,118,91,105,110,98,118,98,100,103,103,101,104,104,96,100,111,103,104,115,102,108,106,110,99,107,95,91,100,101,93,102,104,95,108,114,110,104,105,105,102,120,99,101,111,104,91,114,101,107,111,103,89,98,95,101,117,112,109,113,98,106,100,109,100,102,91,103,118,104,105,110,96,108,98,95,99,74,99,106,99,101,75,110,117,108,101,108,95,83,110,106,96,92,103,84,97,106,116,110,105,110,102,99,84,86,107,108,102,104,101,89,99,97,105,113,104,104,107,98,112,105,107,130,116,97,116,104,120,108,95,100,103,106,89,109,93,112,103,104,112,108,96,112,108,116,112,103,105,116,99,106,107,97,113,102,109,112,108,103,108,106,106,94,109,99,90,100,112,114,101,85,103,108,119,108,105,117,103,95,113,101,100,110,111,100,106,95,109,114,105,99,102,106,86,105,111,105,111,94,101,103,101,100,105,116,92,114,104,132,109,113,105,110,110,107,99,104,80,105,108,114,106,99,114,106,100,101,110,110,99,94,101,108,100,95,112,118,86,101,110,101,114,102,95,106,107,109,99,93,109,107,112,108,106,112,98,103,99,99,102,95,123,88,108,102,110,107,102,125,108,96,106,95,108,99,102,102,112,104,95,111,114,96,87,105,106,94,108,116,100,105,81,105,108,99,106,99,95,93,99,95,104,106,109,99,102,102,107,113,116,100,102,105,101,98,99,102,104,108,126,125,98,106,97,105,104,105,108,108,98,107,81,100,119,109,101,101,96,98,110,102,105,104,106,107,104,111,94,103,104,113,94,113,119,134,95,98,113,113,108,103,112,107,117,125,141,162,166,207,211,199,223,197,211,205,228,213,171,209,189,208,158,167,168,124,149,117,114,107,124,98,116,119,110,117,104,116,115,114,106,106,115,113,107,107,118,97,78,95,108,102,104,85,108,105,102,121,103,98,102,89,99,88,106,107,109,109,113,92,108,105,111,105,122,94,109,97,116,100,105,113,106,106,111,109,113,95,106,107,108,107,112,105,90,99,113,109,100,106,115,105,101,107,103,112,110,100,100,96,112,101,97,101,93,108,104,94,101,102,114,99,109,91,104,122,117,109,82,109,94,98,102,92,99,100,102,110,110,112,99,110,116,113,106,99,100,110,107,112,96,96,108,105,105,119,113,99,102,89,105,110,102,111,105,105,94,98,64,95,108,103,109,118,104,112,104,109,103,102,98,105,105,105,111,101,114,94,111,107,117,110,106,106,93,105,117,95,111,94,106,111,106,111,119,106,109,103,116,107,103,102,103,110,138,124,106,114,95,107,109,112,109,114,111,108,104,111,95,114,100,100,105,112,110,96,99,93,113,110,98,116,112,110,105,98,98,108,121,108,114,104,106,119,102,105,106,118,99,102,108,104,103,97,102,109,102,104,112,84,118,90,102,97,93,99,107,101,108,123,116,103,106,111,100,107,112,100,115,104,122,100,102,108,97,116,87,109,92,110,97,100,102,132,105,99,106,94,116,95,112,105,110,96,103,109,110,111,105,110,112,121,109,105,109,99,100,110,99,91,119,93,113,106,99,103,91,104,105,106,101,109,107,99,110,101,112,91,100,107,105,114,106,95,98,108,105,103,99,99,95,102,109,114,111,114,97,108,111,108,100,100,103,107,124,112,107,111,110,100,101,102,113,121,105,106,112,93,119,106,104,100,92,96,104,102,98,112,105,100,98,113,108,115,111,102,98,101,99,107,114,108,118,104,95,91,107,113,98,105,93,110,109,110,110,104,101,97,97,102,105,103,106,116,113,100,90,101,109,100,98,105,99,108,107,97,104,100,118,105,101,106,95,102,111,106,100,104,104,99,91,99,105,99,107,101,95,98,103,91,116,103,117,101,100,100,106,88,110,106,101,96,94,102,109,84,99,106,95,104,102,101,103,110,111,103,111,107,105,107,104,93,90,97,96,115,109,107,102,112,102,101,111,109,108,114,106,95,96,117,105,113,111,104,106,107,115,110,101,99,104,100,106,104,112,103,100,113,113,102,102,110,97,100,113,109,105,112,108,98,94,92,102,110,98,92,101,108,101,108,112,98,95,110,92,102,109,103,102,101,105,102,104,108,106,102,113,101,105,99,98,95,110,112,103,108,107,106,102,96,111,110,106,98,107,108,114,94,114,123,104,94,104,112,95,113,123,109,101,114,113,99,116,102,117,117,106,109,122,104,102,78,95,109,107,98,104,105,109,104,101,96,108,109,105,97,93,103,98,91,113,105,106,87,103,117,98,122,101,116,112,120,107,108,100,101,112,103,102,101,105,100,108,112,105,108,96,95,112,91,104,96,110,113,105,106,101,105,114,115,106,106,103,103,110,107,110,98,103,103,114,105,83,106,93,104,109,101,102,109,104,103,112,102,110,95,97,97,109,101,97,101,116,77,112,105,105,103,103,102,107,102,108,108,113,105,103,115,116,115,115,100,106,100,86,103,109,102,111,121,109,99,105,113,112,114,96,113,96,107,106,101,109,101,102,110,111,102,109,113,105,106,91,106,107,109,108,111,100,102,102,103,104,112,110,95,98,99,113,100,92,106,109,109,89,113,95,118,116,105,96,97,107,101,89,104,100,119,102,103,107,117,104,112,94,102,119,94,99,119,99,105,89,96,104,101,113,100,99,110,110,98,96,112,110,109,111,111,109,99,97,95,100,103,102,101,106,113,104,109,96,107,108,104,94,108,71,101,104,105,109,103,101,101,109,101,109,101,117,102,111,108,99,107,102,100,116,105,111,121,114,97,101,108,94,101,105,97,107,99,104,111,109,108,106,113,107,126,95,95,111,115,104,106,95,100,96,99,106,101,100,84,111,100,104,113,108,115,91,115,93,112,109,108,105,102,103,103,105,109,102,104,103,120,98,97,96,103,103,114,102,99,107,112,102,116,100,106,121,101,98,108,103,107,105,108,99,100,107,104,105,65,116,98,106,103,105,99,108,97,101,104,109,123,85,111,102,111,96,99,106,99,104,95,105,100,117,105,123,97,105,101,106,106,112,107,115,99,120,102,99,91,108,103,105,100,98,117,115,104,97,92,103,109,116,97,103,109,91,103,116,91,92,110,96,98,120,104,108,83,102,106,105,87,99,109,98,102,100,106,98,107,108,112,85,107,109,104,92,110,113,104,116,106,87,76,90,72,94,92,98,105,95,106,100,108,103,105,106,102,106,113,116,103,101,111,110,110,113,99,97,97,124,110,90,104,103,97,88,110,99,107,113,102,97,101,117,92,90,109,104,89,110,103,108,109,103,103,113,97,118,113,104,98,93,90,101,98,104,108,83,106,100,106,92,93,115,102,107,128,99,113,102,106,106,102,109,94,101, +579.30182,110,100,112,102,92,83,100,96,129,107,101,109,115,109,108,100,64,103,106,95,115,103,97,102,99,125,105,113,105,106,99,132,103,108,106,97,106,110,116,100,104,98,95,94,95,104,98,97,84,102,118,100,94,103,104,96,106,106,104,101,98,101,79,127,108,106,95,112,101,93,105,116,100,114,108,113,105,102,108,108,110,105,108,111,95,87,105,111,111,78,116,94,106,109,94,104,102,98,105,111,101,103,93,94,94,90,109,97,98,72,98,103,102,105,107,107,101,112,106,105,106,108,102,96,93,118,123,103,95,94,98,105,94,116,118,94,108,100,109,88,102,103,102,94,109,99,111,97,99,108,109,104,115,95,101,106,105,104,113,113,99,108,112,105,102,90,101,89,100,109,91,98,110,96,114,105,84,95,105,102,110,100,99,105,97,96,108,92,102,103,103,103,94,104,101,109,99,107,105,105,105,115,103,103,110,101,103,102,104,107,95,99,92,102,108,102,110,108,106,101,105,91,112,108,90,94,101,115,108,104,117,114,99,103,115,106,115,121,103,105,109,96,111,108,106,101,105,107,118,112,103,133,98,95,105,112,101,108,94,104,104,112,101,104,104,106,93,111,99,100,137,104,111,105,102,101,104,115,105,95,98,115,106,137,103,91,99,105,107,95,106,99,103,112,112,105,102,112,106,99,116,102,118,119,96,106,100,114,108,111,99,100,107,107,109,106,102,105,105,97,108,99,103,119,88,112,110,101,103,105,105,96,115,109,103,107,102,101,86,111,96,113,103,94,99,102,99,115,102,110,97,105,103,106,98,103,120,99,97,101,83,103,103,111,104,104,114,100,110,107,102,103,108,95,106,106,122,100,97,98,105,107,107,109,108,105,98,93,103,108,106,108,95,105,108,92,112,96,105,120,101,100,107,91,103,99,93,106,104,98,100,92,94,99,109,96,104,101,105,93,116,101,99,89,112,107,105,100,107,99,89,98,105,111,100,101,108,112,102,105,112,115,101,102,96,101,99,99,103,117,109,99,128,110,112,105,107,101,114,116,113,110,102,96,104,108,97,103,99,118,74,108,102,107,87,105,87,108,112,98,93,94,122,101,112,103,116,114,103,101,105,95,103,102,106,100,105,103,111,105,113,109,106,103,102,101,106,95,105,95,112,112,101,111,108,118,109,113,100,101,99,100,99,108,106,99,107,109,109,108,103,103,113,99,99,109,79,103,109,103,99,110,115,113,108,101,114,116,102,116,96,110,98,107,99,114,108,105,101,107,102,100,101,108,102,91,105,96,92,106,101,93,109,92,99,105,104,105,103,108,97,101,112,102,110,109,111,95,112,111,113,102,104,101,108,96,108,112,87,113,103,112,98,113,107,101,119,103,101,112,95,121,101,94,117,99,101,101,111,107,105,103,95,104,109,105,95,105,95,124,100,94,95,97,88,110,106,99,89,106,125,98,108,102,109,93,104,95,94,104,95,113,101,111,94,109,103,118,97,89,103,101,104,102,93,96,64,108,97,113,110,91,95,94,96,96,107,100,94,104,101,103,97,106,104,96,110,97,103,102,96,96,94,110,98,89,113,92,112,95,102,97,103,110,102,109,103,116,111,99,108,106,111,103,112,112,105,91,109,96,111,108,111,116,99,118,110,100,104,102,117,113,97,107,97,102,108,95,109,91,99,86,103,107,100,99,99,107,105,122,101,102,105,100,96,104,98,105,112,106,102,71,95,113,90,115,101,110,110,92,121,101,103,92,100,103,105,113,98,95,104,114,110,103,100,108,104,103,97,110,103,97,102,97,104,109,105,109,98,104,99,110,109,100,103,101,101,112,96,105,114,104,96,97,113,93,109,116,107,106,97,108,99,93,103,103,112,92,108,99,116,98,106,100,98,109,99,89,117,107,102,103,108,107,122,91,104,97,106,94,109,98,96,107,97,116,104,99,91,104,113,99,102,98,97,99,108,105,108,106,98,100,99,103,98,99,117,93,94,95,114,104,105,106,106,107,104,97,111,110,90,108,114,108,96,104,94,108,93,109,110,91,108,106,104,101,98,101,119,111,92,102,110,109,105,92,98,110,101,104,101,101,105,97,104,105,104,105,99,102,104,110,101,103,101,94,86,97,106,100,102,101,107,111,97,96,107,101,94,101,97,112,108,100,111,112,118,103,101,109,108,102,93,122,106,104,78,105,105,104,105,102,108,106,101,99,113,112,95,117,98,104,118,107,107,99,92,105,94,104,110,110,111,109,95,70,109,106,104,103,94,103,108,92,100,101,98,117,102,98,106,99,107,103,95,100,94,112,115,95,107,102,106,101,99,107,117,102,112,112,101,116,118,111,141,116,133,138,155,174,146,230,206,233,232,234,207,205,203,195,206,192,182,155,147,170,152,141,132,120,98,99,112,106,97,117,118,109,113,106,108,120,131,113,97,105,109,107,110,108,101,108,105,116,106,100,95,116,114,107,106,95,98,93,112,103,107,91,115,116,100,109,111,111,108,116,121,116,105,109,103,116,106,107,94,104,100,115,87,113,112,106,99,125,102,106,106,108,106,120,120,111,104,97,114,104,102,109,102,110,95,105,113,113,102,105,100,115,106,105,121,107,111,106,104,104,115,109,116,94,104,90,115,127,104,113,96,101,117,102,97,121,104,104,102,105,109,117,106,136,109,94,96,106,97,100,108,108,100,108,107,105,110,94,116,97,98,101,108,89,110,103,109,112,101,112,114,105,113,99,102,98,114,111,106,113,108,106,105,98,105,107,114,94,100,100,106,107,111,92,117,98,90,112,113,92,105,107,106,76,110,98,110,108,106,109,104,109,110,104,106,108,111,109,102,105,101,103,99,111,98,96,108,121,113,101,98,80,120,112,116,109,109,123,107,105,105,105,119,111,100,117,112,100,97,109,108,112,110,103,109,104,103,95,103,105,99,99,100,109,109,101,92,116,107,97,117,104,100,101,103,117,109,100,99,106,92,107,109,104,96,121,99,95,120,101,106,105,98,113,110,100,99,121,115,108,106,106,94,109,92,116,116,106,108,103,104,105,114,101,104,111,91,106,101,102,100,117,91,104,104,115,106,115,105,91,107,98,102,105,107,112,110,114,116,102,98,108,100,111,98,85,101,109,106,110,96,99,110,102,88,98,105,97,108,103,106,104,117,104,98,102,96,105,108,107,115,103,93,106,109,102,108,97,94,98,109,110,104,111,110,100,101,101,102,78,98,99,133,112,101,113,106,112,103,105,98,117,103,103,107,105,125,97,98,104,103,117,119,107,109,104,105,87,98,100,114,96,112,112,87,103,95,104,108,118,102,96,102,109,99,108,102,99,102,87,107,116,117,107,107,131,100,106,99,104,101,86,113,103,111,102,100,96,102,111,114,103,103,102,103,103,104,106,107,116,110,104,107,115,107,105,91,105,113,109,115,111,101,97,95,102,109,98,109,112,106,98,103,99,102,101,107,62,100,110,106,100,111,103,107,98,108,117,104,104,103,106,101,107,109,69,101,98,103,113,100,115,102,103,93,109,98,105,115,101,106,101,107,110,99,99,101,106,102,105,113,102,104,97,95,102,112,121,112,101,113,101,93,103,104,112,109,105,99,96,110,107,98,110,97,104,115,102,116,90,117,113,109,110,102,93,107,124,103,105,101,106,96,97,115,107,95,108,119,106,110,81,109,106,111,108,116,107,100,103,106,122,84,101,108,106,111,102,110,101,105,91,100,105,119,102,100,103,129,89,108,95,118,111,104,108,92,112,126,106,103,101,113,117,95,111,100,124,110,99,115,101,99,102,115,109,110,113,107,111,139,115,102,104,110,105,108,102,97,93,125,100,113,110,111,103,106,101,99,102,98,87,90,97,92,105,101,110,107,101,107,108,114,102,94,101,100,99,120,108,97,111,110,110,119,104,106,101,107,102,110,111,98,103,100,109,115,113,116,115,88,110,108,104,109,96,101,103,102,102,100,97,103,124,100,101,100,110,113,110,105,96,108,107,109,98,102,98,112,113,111,112,112,110,107,116,114,118,107,133,104,99,104,94,98,100,105,100,114,112,112,106,118,117,113,100,100,111,109,102,104,109,107,106,106,103,102,113,112,98,104,115,113,102,106,129,98,101,102,100,96,108,105,107,108,121,97,101,98,98,110,98,91,95,102,111,109,114,94,118,104,113,114,94,105,100,106,91,109,100,101,105,106,95,107,109,108,109,112,97,95,107,111,103,107,109,99,87,98,101,108,103,111,102,115,99,116,108,117,108,115,96,98,125,103,100,109,113,100,107,98,105,106,102,102,122,106,108,106,98,106,128,101,102,107,105,103,97,96,104,117,100,110,104,97,106,119,98,96,110,96,111,99,99,94,95,112,119,91,91,106,110,99,109,115,114,100,110,117,116,102,78,90,104,113,103,101,98,121,104,92,106,93,100,98,104,102,114,98,111,107,77,105,98,102,98,116,110,110,104,98,101,101,114,101,98,116,105,105,116,113,111,112,108,93,112,109,112,109,104,102,112,96,90,102,106,113,113,108,112,101,114,105,91,100,103,113,106,108,102,110,103,120,104,95,88,102,102,109,105,105,99,111,105,105,104,101,103,90,115,103,99,92,100,111,117,121,96,116,100,99,93,110,106,92,84,104,106,107,105,100,102,101,111,99,116,104,111,103,107,99,97,99,102,103,109,103,105,112,103,103,99,113,102,128,101,91,110,90,100,108,100,111,106,88,89,129,100,100,113,76,102,106,95,102,109,109,115,98,104,99,102,107,107,102,106,90,105,102,89,104,128,102,102,120,113,103,108,92,105,104,83,104,108,109,111,101,108,105,107,96,104,121,97,76,101,110,110,140,96,104,109,113,98,122,112,99,104,115,103,106,102,105,107, +579.44275,94,109,96,102,102,101,88,116,105,109,108,113,92,101,103,104,103,113,96,98,107,99,104,103,115,112,136,83,109,120,119,92,100,116,126,110,119,99,111,104,97,104,99,121,98,99,106,120,96,112,102,108,97,95,111,91,72,114,107,90,109,83,112,97,103,113,99,117,103,110,106,114,105,96,106,109,108,102,109,115,105,102,101,104,110,94,107,104,106,94,103,102,96,117,103,101,116,97,115,107,108,116,108,93,94,114,110,105,105,97,104,118,99,107,91,107,103,108,89,96,110,101,102,112,103,97,124,102,110,115,104,96,71,101,115,107,93,98,97,102,76,95,101,106,103,104,111,98,96,115,102,112,95,88,104,106,126,102,99,112,105,102,113,105,105,106,99,82,94,102,110,109,101,107,110,94,106,99,114,107,114,96,118,101,104,105,106,99,93,106,109,106,112,110,99,105,112,105,106,120,94,107,96,87,100,99,100,100,107,102,102,95,112,107,97,92,109,104,102,104,101,110,98,103,95,96,98,124,99,107,106,106,109,114,114,124,111,102,107,101,102,100,107,110,104,100,109,101,109,93,92,110,107,109,97,109,103,97,98,121,99,111,101,101,88,94,102,110,114,97,99,101,107,98,115,104,98,117,102,106,96,102,95,103,107,108,100,116,106,99,89,110,121,101,111,112,107,103,112,103,95,94,111,114,94,105,103,108,115,113,95,109,107,110,106,102,118,108,110,90,103,104,109,99,103,111,112,102,112,111,95,104,125,106,108,99,106,98,108,97,98,98,114,97,100,105,99,103,104,106,109,106,98,97,102,107,103,105,126,104,106,105,107,106,84,94,98,102,103,95,103,128,108,107,105,97,100,92,94,107,108,100,103,115,106,106,108,101,105,99,113,95,100,99,95,102,104,110,99,113,99,98,117,104,104,99,106,108,110,99,94,98,111,110,104,94,95,95,102,95,99,96,95,104,114,99,88,105,106,111,106,106,102,101,107,105,113,113,101,98,116,80,140,110,106,109,104,102,106,103,103,102,100,112,113,97,107,107,102,103,114,118,108,103,106,100,97,87,107,106,106,105,115,101,103,109,106,104,100,113,105,111,96,100,109,103,87,87,116,107,100,98,91,103,107,105,100,95,112,93,115,91,100,111,105,99,95,107,102,96,105,96,99,104,106,91,106,108,111,106,84,106,111,107,108,117,103,111,95,109,96,109,94,98,88,110,108,106,107,111,101,99,95,104,99,92,105,99,111,96,106,107,99,101,112,84,95,97,102,105,98,108,107,117,101,98,97,116,100,99,96,109,111,104,104,106,116,102,93,107,108,117,104,104,122,106,114,100,105,102,116,108,103,102,118,105,105,99,110,100,100,113,110,121,111,94,100,99,108,103,106,106,117,106,111,101,100,98,104,110,99,113,117,108,107,105,101,108,103,110,109,114,82,112,99,114,106,120,112,92,112,105,119,112,94,108,103,97,94,120,101,95,96,109,103,105,103,126,116,104,114,88,109,105,105,99,112,92,100,106,113,120,99,107,104,104,105,110,112,102,101,106,111,97,111,99,98,119,100,112,102,106,114,119,94,106,102,112,107,105,98,100,95,98,106,112,114,118,105,109,108,101,115,99,88,99,97,103,101,103,109,102,99,108,103,115,106,102,113,119,104,106,101,103,97,105,91,98,99,118,103,98,111,107,101,103,100,96,109,110,104,97,98,100,96,103,109,95,119,112,97,117,107,113,103,113,97,96,106,102,106,100,104,94,109,101,102,102,111,104,108,120,111,122,111,108,98,127,104,106,113,97,84,108,104,102,99,98,101,106,110,122,101,106,113,100,100,95,101,97,104,101,97,110,108,116,116,111,108,106,102,108,110,104,107,86,112,105,95,114,92,96,109,102,115,106,106,112,113,90,90,110,103,105,104,109,94,95,79,92,107,105,108,108,108,103,106,110,92,101,123,102,111,71,105,105,101,96,101,95,100,101,98,111,94,99,118,104,111,107,108,94,109,95,102,108,113,119,102,115,123,114,113,124,109,107,104,98,117,102,106,110,111,110,105,94,100,108,108,112,94,114,123,99,97,101,111,105,102,98,98,112,105,101,113,110,98,98,114,98,101,120,106,107,105,99,97,111,111,111,104,107,104,104,110,100,123,116,102,109,114,101,117,111,107,98,98,100,91,113,109,109,107,103,103,104,104,91,90,120,107,95,102,111,98,88,89,107,99,89,100,101,97,98,104,102,101,98,108,102,99,105,103,107,105,104,105,98,102,111,93,98,105,100,122,105,104,101,104,114,111,105,105,108,120,105,113,108,107,102,108,107,98,99,116,109,98,99,119,122,117,116,116,110,112,104,124,131,151,158,179,207,242,204,212,255,216,207,210,210,167,215,186,166,158,177,142,142,132,127,122,118,99,110,121,108,87,115,94,97,107,114,113,112,110,111,107,103,92,103,100,112,94,107,122,115,104,99,116,109,122,109,101,120,102,111,97,111,107,100,108,98,104,113,103,124,103,109,122,102,103,106,96,102,102,104,87,106,98,98,110,102,111,108,107,109,99,103,107,103,112,114,109,104,112,114,82,102,106,89,120,108,92,107,106,108,97,105,103,90,109,90,107,127,106,97,102,97,100,120,99,92,112,101,116,118,99,108,116,114,116,96,110,105,109,102,120,98,119,109,98,104,103,106,116,107,112,125,103,112,103,112,111,116,108,118,104,95,107,121,100,105,127,109,104,108,102,121,117,123,104,110,111,110,123,105,102,101,112,108,99,109,104,110,106,110,110,111,107,101,118,117,116,112,91,99,102,106,114,115,95,102,108,98,107,101,124,114,119,106,117,109,108,94,95,108,112,107,111,114,108,100,111,125,98,105,100,111,110,112,107,91,117,108,109,95,106,93,104,107,112,105,107,107,100,108,116,106,115,111,108,110,111,107,107,95,94,136,102,103,115,92,98,113,111,98,107,127,104,103,96,106,92,95,110,125,99,107,98,111,103,106,97,102,102,106,110,99,109,100,105,86,111,101,107,104,114,110,98,115,106,102,104,115,109,118,131,108,119,103,95,113,101,120,108,107,99,96,103,113,95,111,118,107,103,114,115,138,111,113,102,97,108,102,102,109,117,126,104,93,102,105,107,116,113,105,126,105,106,108,112,99,125,101,105,113,111,102,101,113,103,105,111,102,71,103,104,92,109,122,111,98,114,100,109,100,102,125,109,116,101,111,104,96,99,102,105,107,111,101,103,102,103,110,96,106,100,111,103,109,100,96,105,116,107,115,104,95,99,103,108,103,102,119,117,114,120,110,123,100,108,101,98,114,107,100,102,108,108,108,104,107,100,98,111,101,111,106,104,104,108,103,104,115,92,109,115,105,107,96,110,124,93,100,103,85,115,94,117,106,88,103,118,114,82,106,106,109,109,111,96,106,108,102,103,97,101,96,107,112,101,120,116,104,103,109,109,113,108,96,103,99,97,97,107,104,110,91,99,109,101,110,101,111,107,113,108,109,109,102,112,114,91,116,110,98,115,87,120,119,107,100,102,102,108,105,97,85,109,108,109,107,108,106,92,104,108,106,114,92,100,104,110,110,113,112,110,112,111,97,106,107,102,106,96,100,106,98,107,102,112,104,114,104,111,102,100,102,115,106,106,101,87,120,116,105,116,100,110,102,111,104,99,109,102,93,106,100,108,99,109,98,110,115,106,102,107,103,107,104,105,92,103,100,102,106,110,107,93,96,115,94,102,109,105,120,101,109,109,107,106,109,99,104,107,107,105,106,111,107,115,116,108,106,123,109,104,91,107,121,106,114,101,108,109,101,93,107,100,122,108,111,109,113,106,111,105,95,107,97,105,103,96,106,106,115,109,104,107,90,97,107,97,90,108,96,105,106,106,109,102,99,101,103,96,106,109,102,107,97,101,99,106,101,105,106,107,115,118,107,98,96,102,124,113,101,101,108,107,97,99,101,96,111,111,112,91,108,98,112,105,113,102,72,103,105,89,110,125,98,112,111,99,113,110,112,106,123,117,115,96,106,93,104,127,109,110,88,103,100,104,111,106,109,115,104,110,98,102,94,106,106,107,118,107,121,109,104,106,105,93,106,113,91,112,107,104,98,109,97,108,106,110,124,100,113,97,102,108,107,118,106,105,91,99,112,117,100,110,111,101,110,118,116,109,107,128,112,115,116,116,102,106,101,100,102,102,106,106,109,106,106,97,100,102,101,111,98,102,100,98,107,69,106,94,96,112,105,103,100,110,92,112,90,93,112,107,116,100,98,104,113,112,107,103,98,119,106,100,108,112,107,107,106,105,105,106,107,99,113,103,104,99,110,107,107,102,102,107,112,103,109,102,111,110,107,105,97,117,102,109,97,98,121,101,100,97,110,110,103,105,103,107,112,109,114,108,98,102,99,107,105,105,110,108,117,105,109,99,113,115,107,113,97,102,104,87,104,106,100,99,104,103,114,109,114,109,95,104,121,108,98,114,99,109,111,106,108,103,108,101,108,95,128,99,123,100,107,99,100,108,112,108,116,95,87,98,101,97,99,88,119,103,105,95,102,112,94,105,109,103,103,113,102,101,102,106,107,107,99,112,106,114,89,105,108,117,101,91,106,109,103,113,88,114,108,136,102,100,100,85,105,106,100,107,94,95,113,99,112,111,101,109,111,101,109,109,94,75,112,118,95,99,102,97,100,115,128,96,102,120,108,106,102,107,100,108,92,102,113,104,104,102,113,111,94,99,99,101,97,109,110,101,97,114,113,107,106,96,103,108,111,107,99,107,101,99,108,88,99,101,102,100,117,109,104,109,108,106,122,119,101,106,107,92,107,97,99,100,95,102,106,117,100,99,102,106,106,89,99,122,115,88,103,102,102,90,112,114,105, +579.58368,105,86,101,106,77,100,105,107,100,109,101,100,108,108,110,111,86,105,105,115,116,104,101,91,104,108,115,85,104,110,99,103,99,107,110,99,114,93,94,102,102,113,109,109,103,94,110,104,121,118,86,105,95,101,90,109,98,94,98,100,89,103,87,76,118,99,103,106,111,104,84,111,98,110,111,104,104,102,106,106,121,120,122,104,107,100,95,104,96,85,118,94,98,113,115,74,121,109,103,92,109,92,116,99,98,94,116,104,111,106,102,113,111,112,108,104,108,101,105,105,98,110,106,97,107,115,117,95,124,111,98,100,95,102,113,107,94,129,107,95,101,112,115,102,104,112,120,105,103,118,96,111,100,100,109,114,91,110,107,95,96,99,98,100,105,106,123,109,101,104,107,107,97,110,98,125,109,84,113,95,106,103,99,99,96,102,103,86,105,103,88,108,114,109,108,108,99,96,104,111,101,112,107,104,107,104,108,102,106,113,100,112,109,111,102,101,103,121,102,100,101,103,75,98,95,98,100,105,111,106,105,106,92,104,132,98,109,104,104,112,105,115,100,103,98,104,107,108,105,102,108,104,97,88,103,114,85,106,106,94,106,101,96,74,95,118,104,97,107,98,88,90,105,109,99,113,95,104,105,95,114,109,109,112,120,112,99,97,103,97,106,100,105,107,111,104,110,119,115,100,117,99,105,108,99,103,113,118,106,107,105,109,100,77,125,90,95,104,111,105,106,103,112,104,106,94,106,103,103,99,103,109,109,100,99,104,106,101,110,101,105,108,96,93,103,113,105,113,102,106,112,109,112,91,102,101,102,108,105,124,100,105,104,103,93,105,106,107,113,104,109,99,95,112,113,113,114,109,100,105,107,117,107,112,103,109,118,103,100,98,103,102,108,115,102,95,107,106,96,107,96,103,112,104,121,104,100,98,101,95,97,101,107,96,112,105,106,108,97,108,111,109,104,127,103,96,108,102,108,105,111,105,108,96,106,99,110,103,110,112,114,104,96,106,89,112,100,99,103,100,104,100,121,109,103,111,95,107,95,113,100,103,106,103,99,113,103,100,120,106,114,110,115,93,105,100,103,109,109,117,95,106,114,109,130,103,107,105,107,104,102,104,101,103,95,94,89,105,104,107,112,104,106,115,105,108,103,108,105,107,102,105,108,104,103,125,137,108,106,97,115,105,120,103,98,100,113,111,95,86,99,97,96,108,113,104,135,108,81,101,108,111,97,104,115,96,107,102,113,121,87,106,113,92,108,99,119,100,101,100,83,101,124,98,105,103,108,107,117,101,97,88,99,111,107,93,107,97,100,94,111,96,109,102,110,104,116,111,107,92,105,111,94,96,109,106,106,110,100,100,104,106,121,107,101,101,103,105,104,110,112,101,91,78,93,105,100,101,99,104,96,113,107,109,104,100,89,97,116,103,103,102,96,108,106,114,107,100,100,106,95,102,98,107,108,104,110,120,102,101,100,111,104,97,99,103,124,110,97,120,119,100,110,114,95,118,109,106,113,109,98,104,109,111,121,105,93,109,98,87,111,111,103,91,114,110,103,99,103,106,109,105,114,117,114,88,109,109,111,121,102,96,108,94,110,113,111,107,105,112,99,105,105,108,105,106,96,109,116,106,101,99,108,113,93,109,106,105,106,94,109,105,104,104,99,106,126,92,104,91,120,98,101,104,74,103,104,100,99,101,115,110,104,102,114,114,95,92,111,102,103,104,104,112,99,116,87,114,98,103,96,89,108,107,94,88,109,105,97,104,101,105,109,120,99,103,105,100,117,114,105,107,102,113,107,107,107,101,101,114,107,118,108,111,103,96,108,114,110,104,106,98,90,104,109,105,109,102,101,105,108,109,111,112,120,104,118,110,107,108,99,118,107,99,118,101,108,88,104,108,113,116,125,108,102,108,105,104,91,94,95,101,111,92,89,110,113,108,100,110,103,108,97,79,95,105,94,105,102,105,102,106,104,108,94,113,120,108,110,104,103,117,103,133,110,105,102,112,111,103,113,107,119,113,102,102,102,107,112,92,102,108,110,107,118,97,94,107,116,97,106,94,115,100,107,94,95,103,108,113,112,116,108,107,102,96,91,100,124,113,106,102,105,117,68,111,99,103,109,110,109,120,111,103,112,110,111,104,106,103,101,103,99,110,109,99,114,92,92,103,114,113,116,113,114,105,101,105,100,114,108,95,111,105,93,104,103,98,101,104,94,106,117,96,107,111,98,105,118,97,115,111,109,108,108,97,99,114,99,104,99,89,114,89,99,99,110,111,98,106,93,113,105,112,115,102,99,103,76,104,99,107,102,104,108,116,132,106,114,118,115,123,122,128,126,117,131,126,156,162,179,221,229,224,242,227,230,230,204,230,231,174,183,184,157,190,134,132,119,127,115,107,121,135,111,113,109,116,105,130,102,111,112,116,117,121,120,128,95,107,101,107,93,110,110,107,83,96,104,97,106,99,107,103,95,85,113,115,104,100,105,97,116,100,107,107,95,106,112,105,100,106,102,102,102,99,102,97,95,102,111,102,100,106,109,109,103,110,105,99,92,121,99,84,106,99,106,108,110,110,95,108,102,116,102,108,90,94,107,101,117,104,120,111,95,95,121,100,104,102,103,97,109,95,113,104,102,108,105,91,103,102,115,110,125,104,105,98,95,105,107,117,98,99,107,118,111,114,106,111,96,115,111,118,110,96,90,100,91,106,112,105,89,102,120,106,106,147,110,104,102,98,111,109,102,94,103,111,85,106,108,96,104,113,105,125,98,104,112,106,99,110,100,96,109,98,107,117,105,115,103,90,114,111,113,105,102,108,107,107,106,117,105,102,99,112,93,116,100,112,114,95,94,110,116,109,102,107,95,115,99,108,109,109,100,84,89,104,97,116,121,100,114,102,104,107,102,110,114,131,104,102,96,108,97,101,100,91,101,113,113,92,109,114,92,101,86,121,94,97,103,106,111,114,100,103,113,105,104,102,98,98,96,112,107,120,106,108,109,106,102,98,119,117,94,99,107,110,93,109,93,104,106,92,100,100,105,105,107,93,95,109,99,102,96,95,98,113,103,98,99,99,107,108,99,110,111,98,102,93,105,110,106,112,107,106,105,102,106,93,102,103,104,112,107,100,102,97,103,114,102,101,100,112,114,111,123,95,98,122,99,93,94,107,102,104,82,108,110,91,102,98,91,96,109,97,108,99,94,106,104,114,97,101,91,97,99,81,109,103,99,104,99,111,113,104,94,86,116,101,101,88,99,107,99,110,104,108,113,105,111,98,111,98,98,109,91,94,106,109,107,92,100,113,98,104,94,97,110,104,96,102,87,104,93,106,112,108,101,113,101,109,110,106,108,102,92,104,105,103,101,105,102,105,103,109,127,108,99,107,100,96,98,106,102,99,114,113,98,105,97,104,100,104,104,109,109,115,111,103,89,95,92,98,101,102,113,101,97,104,121,120,96,95,102,107,111,98,101,104,104,128,102,97,106,114,104,95,107,113,104,109,103,118,112,124,99,106,106,85,95,108,99,104,93,112,95,108,108,106,115,108,108,103,98,112,95,83,102,95,100,106,99,99,107,100,110,105,110,93,106,106,97,100,96,99,115,108,93,96,97,87,101,102,114,104,109,105,109,102,95,108,113,104,89,104,111,102,102,103,113,113,95,103,109,102,103,107,108,107,112,103,110,109,113,101,114,115,108,108,103,103,117,95,107,104,104,108,109,107,110,94,113,108,105,104,111,112,108,112,91,103,97,111,100,113,108,112,105,105,100,120,102,100,105,96,109,124,107,102,112,108,104,106,112,109,95,102,94,106,99,109,103,105,96,118,97,102,105,106,113,100,91,104,100,101,94,106,94,99,102,105,91,104,101,100,104,111,95,94,97,107,98,115,99,102,116,112,107,104,117,95,106,107,104,102,107,104,106,104,106,105,101,108,102,106,108,102,94,110,101,106,111,100,115,103,98,104,101,104,106,96,86,103,105,87,101,113,106,97,116,101,106,98,104,97,113,103,106,104,104,103,106,103,104,113,102,99,113,104,117,110,104,106,112,103,110,106,106,101,101,117,106,105,109,125,103,116,108,115,98,100,105,105,100,126,132,91,106,113,103,98,94,100,115,103,117,111,115,112,106,104,110,103,99,106,102,106,107,107,118,109,108,113,101,99,103,124,89,102,108,117,102,104,112,105,104,96,88,99,116,105,99,101,107,106,104,109,109,105,112,101,100,112,105,111,103,101,113,99,97,108,100,103,109,103,94,101,98,86,101,128,123,106,113,97,98,101,109,106,106,108,114,102,96,95,95,105,112,102,108,101,115,100,106,87,102,98,103,86,103,107,106,109,105,106,112,113,104,100,101,99,99,103,100,88,99,117,99,121,102,100,114,103,110,111,111,100,120,103,98,115,112,98,90,98,110,105,69,103,105,110,107,107,109,104,112,105,104,106,105,102,104,110,95,103,97,107,104,125,115,106,92,101,101,94,104,113,110,95,100,91,108,99,108,103,110,117,109,104,105,110,98,92,96,100,85,114,108,123,111,100,90,113,109,106,99,116,87,95,116,90,105,95,104,108,112,96,116,103,97,95,95,97,129,117,112,105,113,98,113,105,102,114,96,95,116,100,99,95,113,108,110,107,111,111,93,109,99,97,96,91,71,112,111,104,105,107,115,105,112,104,108,112,91,92,100,120,94,98,100,97,93,115,113,103,100,95,113,99,100,106,110,95,107,127,108,109,95,100,111,96,108,108,106,107,115,102,100,104,106,95,93,104,123,98,113,111,105,102,104,85,111,110,113,107,115,106,106,102,108,112,100,99,94,119,97,110,103,88,108,100,106,91,101,113,107,96,101,105,116,103,68,95,98,113,117,102,91,111, +579.72467,115,106,86,99,101,103,104,109,102,101,108,103,108,104,111,124,107,106,95,98,132,105,109,100,97,100,106,103,96,106,102,86,92,102,106,97,106,88,109,98,96,98,100,98,95,102,89,91,98,107,101,105,112,101,98,94,105,84,112,96,116,109,104,94,109,117,106,101,108,104,106,116,110,92,100,105,89,104,103,116,104,105,100,100,102,98,94,109,101,107,99,104,95,94,96,100,94,98,102,91,97,104,99,92,100,107,97,94,92,87,103,106,96,102,117,97,106,97,111,100,105,97,91,101,98,108,120,109,113,108,103,98,94,104,106,95,92,102,101,105,99,101,103,88,95,103,107,97,106,112,110,102,111,91,111,98,110,100,105,101,106,113,106,101,109,93,107,95,109,102,113,99,101,107,109,104,113,95,97,111,115,87,96,108,111,121,109,106,104,107,96,90,107,104,96,104,103,101,93,109,98,105,104,106,90,106,99,105,121,103,97,117,113,96,105,116,92,104,107,112,99,107,103,102,97,102,101,99,94,107,107,103,98,110,112,103,101,118,115,114,112,92,107,110,99,93,107,108,109,111,98,100,100,113,100,117,117,105,95,97,105,94,100,108,89,105,105,115,110,118,93,90,103,95,103,97,107,108,114,110,105,108,106,100,113,95,86,97,68,96,100,102,107,102,109,104,114,114,104,90,110,106,113,99,97,106,103,104,106,103,101,114,100,89,104,87,108,100,99,95,106,94,98,98,108,107,133,102,93,105,77,91,104,107,83,101,98,105,108,105,110,99,107,91,99,128,105,112,96,105,110,96,102,112,113,106,110,111,102,110,94,91,106,100,104,109,97,107,102,108,108,98,118,111,96,97,105,96,87,108,102,100,105,103,108,110,99,99,120,106,105,94,109,117,95,98,105,102,109,96,101,108,96,106,107,110,88,110,95,94,102,92,101,99,107,96,95,106,101,100,95,99,102,106,94,96,100,101,103,107,116,110,102,99,114,101,97,110,106,113,108,102,114,109,98,96,104,102,107,103,96,99,122,106,100,108,109,111,108,95,106,105,98,111,102,108,94,104,98,97,109,116,96,106,115,104,111,108,117,98,102,106,115,97,127,101,107,96,98,94,97,108,91,109,95,101,102,93,117,85,105,104,107,98,92,99,111,105,97,102,101,104,101,79,108,106,113,106,97,114,106,105,95,99,113,103,103,105,101,112,105,102,91,97,75,102,100,107,103,100,107,110,106,102,115,108,98,102,104,113,101,107,106,112,90,110,103,90,104,89,105,97,105,101,95,95,111,111,106,99,101,103,102,98,108,100,96,91,105,111,101,109,98,107,104,113,105,113,111,106,112,108,106,114,116,107,90,109,113,111,98,95,106,96,103,107,98,106,118,94,105,96,103,107,110,96,111,110,102,111,109,108,101,108,101,96,89,104,98,114,101,115,107,119,89,101,99,98,101,108,102,102,102,93,105,90,100,99,101,117,102,116,104,108,104,106,90,109,100,113,93,113,118,92,98,101,95,104,99,100,103,108,104,105,117,113,103,102,104,103,108,109,116,105,102,100,102,104,112,102,96,95,105,105,100,112,103,113,110,102,95,64,108,94,94,105,107,111,91,102,103,100,113,99,105,112,98,97,108,96,102,105,100,113,111,90,111,98,106,106,97,111,96,106,103,104,104,120,113,106,116,90,86,119,109,97,111,113,112,106,106,98,113,94,106,96,101,107,107,106,105,100,100,106,88,129,104,96,99,95,103,107,116,96,110,102,100,105,90,103,127,94,106,103,102,106,99,101,103,114,117,114,120,105,103,105,101,107,102,103,94,96,95,103,113,109,103,113,111,109,114,102,109,111,107,104,116,112,99,94,105,111,105,105,104,107,102,89,102,101,105,129,83,103,107,105,126,103,109,96,99,108,117,107,108,109,104,108,107,90,100,96,115,101,103,75,119,109,104,127,96,105,115,103,103,91,101,104,108,107,100,103,100,110,103,101,110,112,108,97,108,101,105,111,103,102,101,105,102,98,99,104,102,108,100,106,110,103,113,109,109,104,109,94,110,106,103,106,102,103,112,104,104,106,111,94,94,111,117,107,126,102,103,110,117,103,102,103,105,98,103,107,102,104,92,100,95,100,104,97,114,107,102,112,100,106,111,104,107,99,114,103,109,102,109,100,108,108,100,111,121,123,111,114,95,101,102,105,102,120,109,111,110,95,113,107,101,109,97,102,95,98,107,100,121,104,98,102,116,96,109,95,97,104,101,106,106,116,99,96,95,90,104,100,105,120,99,104,107,96,97,112,99,100,106,104,104,95,107,103,128,103,114,102,103,111,102,107,101,108,113,105,120,103,126,133,131,130,150,161,174,230,204,231,243,254,217,246,230,209,191,180,169,186,154,110,178,150,118,131,100,128,119,110,96,106,105,100,73,107,79,116,108,94,111,106,96,100,110,99,103,98,106,96,97,98,105,99,108,98,107,103,113,100,108,107,102,109,113,113,96,103,106,100,75,124,98,108,108,105,95,84,103,110,112,86,111,109,97,97,96,106,103,100,112,111,108,115,113,99,111,93,96,99,103,112,101,86,98,101,105,101,104,112,96,108,103,104,94,112,111,104,110,106,113,107,77,103,105,95,108,104,112,98,109,101,121,111,103,101,99,96,95,122,104,103,102,113,104,115,100,113,101,105,102,105,98,104,102,117,110,116,108,107,114,113,101,112,112,121,98,89,105,115,109,106,105,100,106,96,112,101,116,112,97,107,98,118,99,105,103,102,108,85,120,98,104,101,118,110,110,102,106,105,102,109,101,106,105,108,96,103,113,98,94,102,126,116,98,106,96,107,100,103,111,103,103,116,98,120,97,107,111,120,107,106,86,103,95,116,107,106,90,111,94,109,103,104,102,123,103,109,107,96,104,106,101,112,91,94,111,99,105,107,116,110,109,99,107,105,99,110,108,115,102,103,111,101,102,105,102,98,100,98,97,116,118,104,109,99,103,101,113,102,80,99,115,106,106,102,103,92,104,100,104,110,109,103,101,101,102,113,106,104,113,119,101,100,111,98,117,109,96,108,109,87,104,105,102,108,104,102,114,98,104,104,101,98,104,108,98,95,95,109,109,103,96,113,98,109,101,94,101,96,107,96,110,102,103,67,94,95,102,102,107,100,111,98,103,118,106,96,92,113,103,112,113,111,104,114,103,111,106,104,107,96,116,103,114,117,110,99,111,88,104,108,95,107,133,92,104,106,118,99,99,109,96,93,106,112,102,107,102,92,98,102,105,103,106,112,105,105,112,113,112,103,105,107,104,110,115,113,102,108,99,116,101,102,107,95,104,95,109,102,107,110,112,109,99,98,109,108,111,124,103,99,103,116,104,105,113,117,103,104,100,109,94,103,104,109,109,113,105,113,112,102,101,93,105,104,109,75,105,108,100,110,94,113,99,113,107,107,105,107,101,109,92,111,101,102,107,106,112,96,98,105,102,95,127,109,122,127,105,102,102,100,112,94,88,110,99,97,105,105,98,104,100,107,104,102,107,113,100,96,107,71,85,109,96,110,106,98,108,100,113,98,90,105,116,92,120,96,96,85,100,98,109,119,111,105,112,104,103,102,105,92,100,98,118,98,98,95,106,97,96,111,114,105,109,109,100,99,107,107,102,113,113,112,117,105,110,103,104,110,100,116,109,124,98,104,107,107,98,96,94,103,98,105,107,98,105,105,108,98,104,102,104,99,94,96,106,105,98,104,98,110,113,103,115,97,103,104,99,102,102,106,91,98,107,114,103,112,93,101,114,104,111,101,106,103,105,91,105,108,95,108,106,102,101,106,98,115,92,72,102,106,104,96,104,99,95,96,94,100,105,115,107,101,105,112,97,99,107,111,107,95,96,93,109,104,100,111,103,108,94,125,112,98,106,100,102,107,105,102,81,82,89,94,112,109,97,113,102,115,100,105,102,83,102,99,110,101,99,110,109,99,98,106,94,106,113,99,92,109,114,99,110,110,100,108,99,104,110,99,112,96,102,104,106,100,114,112,74,106,99,113,95,105,104,91,106,101,104,98,106,92,121,103,108,97,105,112,106,102,113,100,98,105,112,112,101,102,115,105,102,94,105,108,103,93,96,96,102,106,107,106,109,111,104,110,106,110,104,92,97,95,104,112,101,103,101,111,121,125,105,116,91,109,100,112,107,95,100,101,105,96,98,96,103,114,109,91,109,98,110,105,106,111,103,91,106,99,112,91,103,116,88,107,105,106,101,101,117,112,98,110,109,100,106,112,98,105,109,104,98,93,98,113,99,115,81,109,98,89,107,106,102,115,104,108,97,105,87,105,98,100,121,113,92,113,91,102,96,102,101,108,104,109,122,96,111,108,114,112,106,112,99,93,114,109,105,97,101,116,96,113,96,100,92,111,120,117,99,109,98,109,101,83,103,104,80,93,104,107,92,93,109,98,99,109,86,100,99,92,100,104,108,86,102,113,83,102,93,104,110,100,111,89,85,86,98,103,99,103,97,104,97,91,109,105,94,103,78,72,94,96,99,87,105,100,94,101,102,99,103,104,103,102,102,104,103,95,116,105,117,105,92,99,97,108,107,110,107,99,98,130,110,116,109,94,103,102,96,100,105,102,108,110,111,104,104,94,107,120,98,96,103,97,109,95,105,103,101,106,95,100,108,105,97,105,101,110,116,97,101,113,98,100,98,96,102,103,112,104,93,100,100,101,110,106,109,107,97,95,93,107,100,90,106,100,106,109,102,105,88,102,119,95,113,106,108,95,105,108,101,120,101,93,87,95,124,110,102,108,97,96,92,103,103,87,118,109,98,96,108,99,93,96,112,104,101,103,113,93,117,97,108,108,115,104,111,103,104,107,100,99,108,97,89,102, +579.8656,110,113,111,103,98,119,92,100,102,113,92,100,101,113,112,91,93,105,113,115,107,93,95,108,104,99,102,111,82,117,107,110,97,114,96,101,101,101,99,97,106,93,107,108,98,115,105,99,98,103,105,110,107,102,105,104,107,96,105,112,110,107,104,96,98,104,105,105,97,111,94,120,92,102,103,116,98,75,119,102,105,111,95,120,98,99,110,100,102,105,99,86,109,103,103,104,88,103,91,94,99,101,93,108,105,97,103,110,108,93,111,112,98,100,114,112,103,105,109,103,106,101,101,110,91,99,108,100,107,94,105,108,108,96,104,106,96,103,96,99,104,103,99,108,111,96,112,103,104,99,114,108,93,110,86,113,111,99,92,111,103,105,108,93,105,103,100,95,97,106,119,104,107,103,103,95,113,99,99,113,97,94,113,110,109,112,124,100,113,101,107,111,116,109,104,109,101,108,104,114,106,106,98,112,86,103,100,90,110,108,103,117,99,107,97,97,103,101,107,98,111,114,107,104,106,86,117,103,111,110,92,120,104,107,109,112,106,105,102,107,98,88,109,102,109,109,104,88,110,95,126,91,102,107,98,108,103,109,103,109,93,100,108,105,94,108,107,123,111,107,105,102,100,105,109,102,109,108,104,108,112,101,103,118,102,106,94,119,125,119,105,107,105,102,111,108,104,108,100,104,109,107,111,107,97,112,109,102,90,117,83,101,104,86,96,112,107,114,106,99,93,99,108,113,103,103,109,108,112,113,103,103,110,100,117,116,115,106,104,114,112,106,108,101,114,96,112,100,109,109,104,118,104,102,105,109,112,109,108,101,103,109,113,98,108,99,106,106,104,119,104,99,110,109,108,104,99,109,111,114,112,118,115,106,108,101,104,102,99,103,102,94,97,113,114,109,98,97,113,104,105,119,112,103,113,110,99,99,96,105,101,109,104,113,108,98,99,90,117,93,105,107,109,102,109,92,110,104,92,113,98,97,113,106,106,104,104,115,104,105,111,114,103,101,99,132,97,98,115,102,93,107,104,108,107,100,99,91,112,117,114,119,122,108,109,97,103,99,104,94,95,100,114,113,97,101,101,112,107,104,99,104,105,108,109,106,115,114,107,99,117,117,113,109,116,109,101,97,114,105,112,101,111,107,104,103,101,113,99,100,112,109,103,112,114,116,112,105,104,114,120,103,115,119,108,91,113,113,103,106,108,104,108,112,105,109,108,106,113,103,112,90,97,109,108,103,92,98,101,84,104,102,103,103,103,106,103,103,102,114,108,114,103,101,106,102,110,109,116,106,92,104,104,116,105,103,108,96,106,103,106,104,106,103,104,99,104,105,99,103,108,112,98,102,113,107,104,101,114,100,99,108,117,113,103,81,100,100,101,107,113,83,109,106,104,102,100,110,116,86,98,94,109,116,107,109,109,104,105,114,106,113,105,104,104,115,102,103,105,111,116,108,110,90,97,91,105,105,100,102,102,98,91,111,110,112,111,114,107,118,111,100,107,98,103,100,110,106,111,110,100,114,95,108,106,107,98,108,106,103,113,103,106,99,94,106,103,110,112,103,105,98,103,120,116,94,107,117,111,110,108,98,111,95,102,126,137,131,96,113,115,105,112,107,107,102,106,113,109,141,109,101,108,102,110,104,111,95,108,120,108,106,97,105,99,111,100,101,110,108,91,95,113,104,104,106,114,98,109,106,105,104,105,116,113,98,112,109,109,115,117,94,111,103,108,93,110,103,103,102,117,103,105,102,108,102,112,103,106,103,101,112,107,107,106,112,96,107,117,117,96,106,107,116,101,98,107,91,107,103,99,95,103,109,110,108,102,108,107,117,117,106,107,107,107,110,110,105,112,104,103,119,108,96,95,110,96,103,114,116,121,109,106,108,110,92,108,108,104,109,97,110,98,107,103,102,116,96,105,86,109,101,101,121,105,100,106,107,93,100,101,100,105,102,104,103,110,107,100,104,100,109,104,101,110,100,101,107,95,99,98,103,112,103,115,103,99,107,120,106,105,107,109,113,110,100,108,96,109,90,116,102,106,103,135,117,100,108,103,109,106,94,111,96,101,107,105,104,93,119,114,103,108,112,112,119,104,105,100,113,111,95,113,110,93,100,96,109,105,107,104,105,127,102,95,104,89,111,106,72,106,105,111,112,113,94,110,118,101,105,107,112,107,98,106,94,100,107,120,99,111,89,137,116,96,112,113,95,113,97,118,118,108,114,117,106,99,97,93,105,108,116,102,97,102,96,108,119,102,112,99,104,101,113,104,105,110,97,101,108,96,103,109,105,94,103,107,104,101,118,109,111,114,100,111,112,108,109,137,106,108,115,122,103,117,112,127,120,145,166,176,205,199,216,249,205,232,256,216,191,199,199,204,167,208,131,123,150,133,124,115,113,109,111,118,98,105,121,105,105,105,115,108,108,102,114,114,90,98,103,107,107,102,108,106,109,106,117,110,107,98,119,105,105,88,108,108,98,112,105,98,98,106,108,117,114,108,104,101,112,111,102,105,101,117,97,106,110,109,100,106,99,94,109,103,103,111,111,111,102,119,113,107,113,113,132,99,97,104,99,101,101,99,117,105,102,96,117,98,87,111,109,109,102,117,104,100,96,109,98,101,90,112,95,108,102,106,107,106,98,103,106,106,109,87,107,110,91,109,100,106,119,99,110,108,103,106,110,119,102,107,120,103,107,111,106,108,102,107,112,102,100,106,101,117,113,98,104,113,110,105,109,94,115,99,111,111,105,102,102,113,96,108,86,106,96,109,101,102,111,105,98,100,90,113,101,116,92,111,114,103,109,113,108,93,118,104,112,96,109,113,108,109,99,100,110,98,108,110,107,108,104,116,116,110,106,106,113,107,95,96,118,117,115,106,108,111,109,94,100,98,91,109,105,92,106,116,107,110,104,105,105,98,102,107,109,98,111,100,107,99,123,113,110,106,105,104,108,111,103,100,107,98,88,116,105,105,107,97,102,105,97,104,103,111,110,108,96,106,94,99,85,100,116,96,97,77,115,102,104,102,109,112,112,115,91,102,92,109,88,110,113,94,104,82,62,85,106,107,104,105,108,109,100,108,107,104,99,92,98,106,99,105,111,109,110,106,106,101,109,100,101,108,97,101,106,99,105,106,95,106,96,100,103,101,111,106,109,114,125,105,101,100,98,105,100,106,108,98,108,105,108,107,103,102,95,102,104,103,108,98,103,111,114,100,110,94,98,113,106,96,103,98,104,99,103,112,111,126,92,96,99,104,97,119,109,120,113,97,95,113,103,103,107,100,107,116,104,95,106,113,85,111,110,118,112,114,95,115,116,109,111,107,107,105,94,114,113,111,102,104,110,106,108,95,119,120,97,101,111,103,107,104,109,107,106,102,110,101,109,104,104,112,107,107,102,126,108,107,107,102,97,96,112,113,110,104,105,103,103,111,106,104,94,106,103,98,114,104,102,108,95,99,106,88,106,111,106,107,114,105,107,98,103,132,91,104,87,106,95,109,105,85,103,115,111,115,114,98,96,110,95,100,98,111,106,88,66,95,111,119,99,105,92,98,112,95,101,104,99,93,105,105,122,94,102,101,99,104,109,94,102,104,108,93,106,105,99,101,111,108,109,119,99,103,107,107,104,104,102,109,120,88,104,110,99,100,122,109,77,98,109,106,100,109,101,105,113,110,100,113,107,100,105,103,98,110,104,113,101,99,91,107,91,106,112,105,111,108,103,114,97,106,99,112,95,100,107,97,100,110,97,111,93,106,100,99,98,123,103,103,111,102,106,96,122,108,103,111,105,114,102,102,99,118,113,114,96,105,106,89,108,84,100,92,100,112,100,105,109,101,104,110,80,112,109,107,106,117,107,100,113,102,92,108,107,99,94,111,105,103,113,113,88,117,120,120,98,99,110,106,101,100,103,95,108,101,100,101,109,108,101,102,111,105,105,102,107,102,113,103,103,105,103,102,107,98,106,90,121,104,115,87,104,109,109,101,110,114,109,94,101,113,112,110,111,110,103,104,104,106,112,99,108,113,103,105,110,107,106,113,95,126,97,102,90,112,102,99,114,116,101,107,123,88,100,109,101,113,112,116,100,113,104,104,112,114,121,106,100,95,104,94,99,90,106,108,114,99,110,107,115,107,89,99,104,115,102,105,105,105,116,102,102,106,95,96,109,109,109,109,111,117,101,116,102,105,99,104,103,115,109,99,105,100,95,99,113,117,102,105,120,84,109,98,110,97,107,102,99,106,107,101,99,105,108,104,92,100,104,95,99,105,106,98,95,109,97,108,112,112,103,106,119,109,106,93,108,109,112,105,99,89,95,109,99,123,106,103,99,107,102,107,107,96,103,95,102,106,105,117,115,96,98,94,105,88,92,117,95,99,100,104,102,84,111,112,106,95,105,123,103,102,109,113,87,101,96,99,107,108,118,116,106,95,106,87,100,107,99,94,100,105,105,101,124,98,103,114,109,107,109,110,109,110,104,111,108,105,91,112,109,108,109,115,96,110,102,117,105,98,103,98,107,107,115,92,99,97,111,102,108,103,99,103,109,111,119,102,103,100,107,105,99,115,110,103,96,104,104,95,105,112,107,100,99,106,95,114,97,99,119,104,101,98,104,112,103,100,109,99,98,95,106,92,102,107,110,107,95,104,88,100,113,111,102,106,101,98,99,115,109,106,99,106,98,98,107,104,100,107,102,101,105,107,95,111,91,119,95,103,114,89,102,102,111,91,115,102,95,111,89,99,105,98,109,111,99,108,100,101,96,99,101,98,70,109,100,103,113,107,103,100,104,112,107,93,104,103,84,111,108,102,101,98,96,100,105,102,97,77,96,104,91,98,66,108,103,111,108,110,95,101,107,99,106,95,110,109,99, +580.00659,97,122,89,100,101,101,105,97,102,96,99,95,94,106,104,94,101,109,97,117,118,97,95,106,88,94,111,100,95,101,101,114,110,98,106,105,95,102,112,103,97,106,110,110,92,115,108,80,98,100,111,101,110,108,111,90,107,101,99,95,99,101,109,98,108,109,85,95,102,102,115,99,102,97,98,107,100,102,97,79,106,115,94,113,78,105,102,100,101,109,109,107,104,107,94,95,95,99,97,111,103,98,100,103,111,104,107,91,107,100,96,90,101,98,108,101,121,95,112,102,105,91,116,113,99,103,110,112,109,105,104,98,90,102,102,103,103,101,87,83,99,63,93,103,100,111,112,115,98,106,106,102,108,104,92,105,105,98,100,100,103,100,114,103,107,100,92,81,95,110,95,100,101,93,103,122,99,101,107,100,100,103,106,103,103,112,101,98,110,104,102,113,99,106,89,102,105,101,93,108,122,104,103,106,102,101,107,100,104,103,96,109,100,106,95,106,110,106,96,101,96,112,97,102,100,91,104,103,107,100,100,120,94,101,110,103,104,105,107,101,109,107,112,98,105,104,105,106,100,109,110,110,103,115,110,117,80,109,103,103,92,98,105,98,96,96,80,112,95,95,87,105,88,100,100,116,108,107,83,118,103,110,97,103,112,100,94,99,89,103,110,102,104,114,103,106,102,95,105,102,95,99,108,116,108,99,108,115,102,112,103,111,109,109,111,108,98,109,107,101,98,107,106,109,98,96,100,102,116,107,108,104,99,108,105,105,95,124,106,104,102,103,99,104,100,125,105,111,106,99,106,129,107,109,95,106,111,112,102,107,91,108,105,91,109,101,103,123,99,111,109,105,106,96,93,104,108,102,97,131,106,118,95,95,114,105,104,108,98,99,112,102,99,99,100,119,100,99,107,111,107,91,102,93,97,98,98,117,104,103,93,94,105,105,104,111,108,110,108,114,113,97,103,106,99,99,106,93,97,116,105,101,95,111,115,104,117,103,98,104,106,98,101,101,103,113,86,98,104,120,102,103,114,110,106,110,108,108,117,99,98,95,90,108,99,86,95,94,102,96,104,107,110,103,104,102,89,121,85,98,93,98,116,97,110,93,116,107,105,113,124,102,100,100,104,111,93,104,113,115,108,102,112,114,117,112,96,104,103,106,119,106,100,107,109,99,105,103,104,107,106,104,105,108,109,96,108,107,100,114,108,114,112,104,108,109,101,104,113,110,96,110,99,101,105,106,114,98,98,100,117,109,115,95,105,106,92,107,105,116,104,109,108,109,104,108,112,116,95,100,101,95,102,106,94,107,107,112,100,103,105,115,110,84,115,103,116,95,112,99,107,110,98,94,103,108,106,108,112,104,99,103,109,105,101,123,102,102,105,109,99,103,101,96,110,97,104,106,106,96,105,113,107,97,112,94,100,107,111,102,112,105,105,108,117,107,112,109,105,106,106,102,98,104,100,103,98,108,104,113,98,115,98,97,109,103,111,104,110,104,108,109,101,109,105,109,108,103,112,125,116,111,115,100,109,101,103,102,115,100,113,104,103,95,102,101,103,91,101,111,114,108,99,108,113,105,117,99,103,102,111,109,102,99,86,108,109,81,108,113,109,102,109,108,100,111,94,100,102,86,109,112,103,108,103,94,105,99,94,110,101,117,106,99,96,98,117,103,109,90,102,91,107,104,100,109,112,109,103,106,115,114,124,106,99,101,125,101,109,105,97,113,117,97,107,104,95,102,109,87,116,113,114,109,106,102,103,104,106,108,113,102,107,108,102,106,107,116,112,105,105,106,102,105,104,120,80,101,106,109,103,90,96,108,116,113,107,112,100,111,125,106,115,101,113,101,117,98,103,94,83,108,104,105,102,116,117,99,127,124,108,108,103,104,101,97,103,120,112,94,101,111,108,117,98,95,109,126,100,106,102,107,103,99,104,116,100,92,110,103,94,104,105,91,99,89,88,98,110,111,113,108,109,117,107,100,105,94,94,99,111,104,107,96,104,103,103,120,102,102,120,102,107,106,107,106,106,96,115,104,117,111,108,111,99,105,104,106,103,116,103,109,106,114,105,105,103,100,112,108,90,99,91,118,101,117,106,100,84,103,113,104,122,113,101,103,116,94,91,100,110,113,109,91,90,102,112,110,108,111,86,113,115,114,101,117,105,87,114,108,105,80,108,102,115,108,102,99,106,82,112,100,101,103,105,103,111,109,101,117,136,106,103,99,115,99,103,109,102,102,109,100,100,98,112,102,94,110,123,107,109,106,94,106,121,114,88,90,112,103,100,98,104,110,94,102,122,112,120,108,103,105,118,102,103,112,110,108,115,109,124,115,105,100,119,108,117,146,163,144,178,202,214,206,222,259,216,240,225,197,207,196,203,179,157,158,115,142,142,141,107,106,131,115,107,102,107,123,104,108,108,130,107,114,105,110,95,109,106,100,93,102,102,102,111,113,111,97,111,113,105,108,101,106,95,112,99,117,98,105,110,92,114,113,98,108,94,103,107,100,111,124,101,100,99,105,97,108,95,107,97,98,105,102,99,109,110,106,101,112,98,114,102,100,100,87,99,96,108,100,109,96,94,106,113,104,100,103,89,91,100,110,104,87,94,98,110,105,104,104,94,95,100,102,101,100,109,104,109,104,103,106,100,108,113,96,98,116,95,78,107,116,104,103,91,113,116,103,90,120,102,99,106,109,97,104,105,106,110,103,98,103,108,110,109,73,96,106,82,118,106,107,106,102,103,120,109,111,112,105,105,103,125,106,109,98,102,93,112,115,99,118,109,107,98,97,100,96,105,99,120,107,113,102,116,114,105,111,113,121,97,109,110,115,112,96,124,112,101,99,104,100,97,108,113,102,93,109,100,116,105,99,106,120,102,105,101,103,106,121,104,116,104,105,95,107,108,115,103,106,105,104,104,96,107,115,100,127,109,109,105,110,95,110,98,100,120,104,109,100,98,102,113,101,114,111,107,106,113,108,104,97,106,94,115,97,117,109,106,105,109,105,99,116,98,106,110,104,104,100,98,105,121,117,112,113,112,102,105,101,109,109,101,95,100,91,99,103,97,111,102,117,107,95,99,99,96,118,118,102,117,104,112,109,100,109,105,112,95,101,111,101,119,95,104,90,99,101,93,94,98,107,98,111,102,107,109,110,105,99,103,102,94,101,104,111,111,101,113,107,100,109,115,94,109,109,104,109,106,104,129,93,104,117,99,108,100,105,103,100,109,95,100,114,115,100,94,110,103,95,102,108,118,86,102,117,103,96,121,106,109,94,87,105,110,113,101,113,113,91,112,108,109,100,96,103,115,87,104,99,106,103,105,94,105,99,92,101,112,106,101,95,106,104,103,111,108,96,115,101,85,101,90,110,106,101,109,112,114,102,92,116,100,109,99,95,99,95,109,110,104,136,96,102,102,94,105,109,92,108,105,105,108,104,97,116,101,117,99,109,105,91,103,102,113,103,115,103,98,104,115,106,101,111,109,117,111,101,105,88,111,104,103,109,102,99,99,93,91,106,98,94,99,78,115,112,99,92,101,114,107,101,113,99,102,99,104,105,106,102,103,95,110,107,109,103,105,106,125,116,96,132,104,99,111,94,98,101,116,116,106,96,107,103,102,100,104,108,108,120,102,116,112,105,106,108,90,106,102,111,102,120,106,114,107,103,105,97,114,87,124,112,110,113,101,96,103,109,112,105,103,108,106,99,107,114,94,111,99,109,98,104,99,98,110,104,109,101,117,110,101,109,104,101,106,109,104,112,112,107,100,118,107,108,112,91,120,104,113,107,103,95,104,87,107,104,110,97,123,110,93,98,102,103,90,110,110,101,106,111,107,113,102,102,111,104,101,100,105,102,96,100,92,98,109,104,106,102,97,110,109,97,100,122,110,110,111,106,110,102,107,102,108,101,91,115,98,98,102,100,100,109,98,117,106,85,118,107,106,97,111,108,107,103,102,116,110,90,102,98,105,101,113,104,100,99,103,102,75,102,107,107,88,96,107,112,118,109,111,102,104,103,92,99,92,109,103,112,95,111,94,112,106,102,102,125,107,97,102,111,108,115,107,92,105,113,109,109,98,107,100,102,93,111,90,102,124,87,105,108,106,99,110,103,112,105,104,101,98,110,103,100,103,102,91,104,103,96,105,97,100,117,101,103,116,102,92,113,98,95,112,100,99,104,108,95,113,94,113,96,116,91,121,117,94,85,110,104,104,119,99,101,111,104,108,103,105,104,108,107,100,85,113,103,105,117,97,102,91,103,103,101,106,98,113,100,102,101,108,105,107,109,106,107,119,102,124,113,107,106,100,115,91,98,101,121,106,97,116,104,99,111,109,76,104,111,106,115,107,86,101,98,100,100,106,115,101,110,112,100,100,99,73,103,102,101,101,106,101,97,120,113,104,109,117,104,93,102,104,103,95,98,102,113,113,99,101,105,101,117,116,97,108,102,98,107,107,105,106,109,103,109,92,102,99,105,100,103,103,124,107,107,116,105,103,99,92,114,124,103,106,104,97,104,105,95,105,96,108,102,102,111,109,108,105,103,112,110,98,99,108,95,118,96,113,103,105,87,99,103,85,103,109,115,106,112,110,115,107,98,100,107,109,88,112,98,103,100,109,91,91,90,97,78,112,102,88,95,101,115,107,92,101,107,97,125,107,104,101,104,101,100,123,107,112,94,116,91,114,113,109,105,87,111,102,114,102,115,107,122,101,101,100,107,96,89,90,113,99,105,104,105,106,100,93,109,122,107,104,95,94,111,90,91,115,111,93,96,92,103,113,96,94,107,97,112,116,116,104,110,89,100,105,85,103,96,103,110,107,90,111,96,93,101,105,96,96,114,109,88,133,101,86,96,117,93,107,115,106,101, +580.14752,97,89,101,117,105,88,91,92,121,110,91,108,105,105,100,102,88,115,113,99,86,99,102,90,106,95,94,96,106,83,65,115,95,98,114,98,96,91,105,87,108,104,95,97,111,116,114,110,94,113,115,98,110,106,101,93,104,103,98,93,118,103,117,107,97,115,101,98,101,104,85,110,113,102,99,113,99,104,112,104,106,112,120,99,99,108,92,116,102,95,111,104,100,106,105,106,106,114,108,106,104,111,100,95,77,108,80,105,98,91,112,102,97,117,98,107,97,103,114,109,106,132,83,112,115,114,96,99,99,113,107,105,101,99,118,99,99,96,102,100,100,95,110,104,107,108,103,100,105,109,105,105,116,94,93,97,105,106,110,101,111,118,113,107,124,105,102,98,109,104,106,109,99,96,101,132,109,99,105,99,100,99,115,109,101,102,100,102,113,98,109,114,101,116,102,108,111,104,107,99,111,109,98,99,105,104,106,96,122,110,106,74,103,118,113,114,109,110,106,113,99,111,107,117,98,110,74,110,111,107,100,105,96,101,110,113,104,124,95,109,105,116,107,96,109,97,110,108,94,112,105,112,100,108,90,106,107,102,98,111,93,109,108,100,103,106,114,107,115,67,99,106,107,103,108,105,107,111,98,112,98,109,111,104,111,101,99,111,98,110,99,112,109,109,110,114,102,107,105,103,110,102,106,109,82,112,116,108,99,101,92,105,96,108,96,105,99,110,98,109,99,96,110,109,100,99,106,105,101,108,105,93,104,97,103,100,112,100,100,107,109,98,103,90,100,102,100,123,107,104,104,113,102,113,101,98,91,101,101,106,106,117,109,95,108,95,115,108,95,111,103,95,111,114,100,99,101,106,107,104,107,115,96,116,107,100,100,105,96,109,112,98,99,100,102,100,113,89,100,117,105,97,98,100,124,98,107,106,103,105,93,84,122,113,108,104,124,98,114,112,107,107,105,96,100,103,104,99,102,118,104,98,84,103,103,105,106,100,110,107,103,103,105,94,104,105,96,91,109,107,108,105,107,104,106,100,97,97,105,109,108,110,113,99,121,114,110,105,102,109,102,116,112,101,100,110,107,110,99,120,101,108,100,98,99,108,113,114,103,106,104,120,108,99,104,105,107,103,108,99,103,106,102,110,109,114,105,103,110,105,106,110,101,110,105,110,128,96,114,95,76,104,100,95,105,106,105,120,109,102,110,107,110,98,108,105,102,92,107,121,97,105,96,97,106,92,106,117,109,99,102,94,101,99,100,108,109,99,101,114,108,102,108,118,112,108,100,102,103,91,104,107,99,112,119,102,98,105,78,109,113,98,107,97,106,105,108,108,116,99,114,106,106,102,111,108,95,104,103,99,105,100,104,101,91,99,100,100,97,109,99,97,126,105,98,113,105,101,110,99,117,105,105,108,97,101,97,99,101,116,101,102,99,104,99,114,121,99,106,103,112,105,101,104,102,100,80,94,105,114,111,115,110,109,99,106,99,111,100,114,110,97,121,93,109,97,108,117,94,99,101,96,101,114,104,106,82,100,108,98,98,107,104,112,106,101,97,102,104,104,104,116,98,116,104,106,108,101,102,103,115,97,107,97,122,108,126,99,105,110,101,103,110,92,96,100,99,106,107,85,99,99,99,114,114,96,96,117,110,109,114,106,111,102,104,100,107,102,90,103,106,101,95,102,98,102,107,113,107,116,120,101,107,101,117,108,107,105,111,99,118,86,90,110,104,114,99,105,108,86,108,121,99,92,105,100,106,106,101,109,102,107,125,113,106,94,107,106,101,109,116,105,104,103,106,114,120,108,112,106,113,101,99,101,102,109,103,82,110,107,115,106,106,102,116,107,107,106,105,106,96,95,108,110,120,100,110,99,117,84,113,111,115,106,111,115,123,103,102,106,99,105,103,106,103,101,111,102,110,109,109,101,109,108,100,106,118,105,110,97,100,107,111,101,115,94,106,103,108,109,105,118,111,111,95,90,124,108,104,101,98,109,94,108,102,113,103,102,107,111,114,134,89,99,101,96,99,107,113,95,103,99,99,101,103,96,96,104,106,114,105,112,111,113,108,99,95,98,96,110,106,104,120,95,117,97,108,100,105,90,97,95,107,108,98,109,105,95,113,97,103,96,110,100,117,100,112,103,101,105,107,105,106,105,106,102,115,100,93,114,119,106,101,90,116,106,100,113,98,103,100,109,113,95,100,108,107,107,98,97,100,99,100,106,112,100,102,112,95,113,116,100,117,112,99,94,112,110,102,111,106,109,105,98,109,103,100,108,102,97,108,105,107,111,103,105,112,113,107,114,102,111,108,99,102,119,112,116,116,104,122,115,131,115,135,105,123,136,138,185,178,179,205,234,233,239,218,180,217,204,198,188,172,178,163,138,139,142,131,132,102,111,109,110,110,107,134,101,105,102,108,114,108,110,108,112,102,120,104,101,110,109,103,106,123,104,116,106,103,104,120,113,117,96,123,105,101,100,105,105,110,102,103,97,107,106,108,108,111,110,111,117,112,109,115,106,91,103,95,106,100,113,108,100,105,113,110,114,134,118,92,106,101,99,117,119,108,98,103,110,98,99,95,111,105,107,109,107,113,103,108,92,112,112,107,103,97,108,103,112,112,105,106,98,120,102,109,114,103,114,113,105,120,111,113,103,102,113,113,112,98,107,106,102,107,119,113,107,101,109,110,106,109,109,101,103,105,106,128,109,101,105,111,106,107,109,105,84,102,102,113,111,109,106,105,113,102,101,109,104,111,105,116,119,105,107,95,104,108,112,95,112,110,106,105,109,93,108,103,99,106,126,108,105,98,112,105,106,100,111,98,103,100,112,107,102,106,104,104,108,106,104,97,113,103,108,117,101,95,117,104,108,110,117,112,111,101,102,99,101,118,113,105,108,112,98,117,125,97,102,110,117,98,114,97,99,113,99,101,99,104,115,111,109,112,109,109,90,99,97,103,110,109,109,107,107,101,106,108,93,107,113,98,109,99,104,118,102,111,91,109,107,101,99,121,108,112,103,117,106,105,107,116,91,96,103,111,113,109,99,98,106,114,108,105,105,118,105,104,106,113,103,96,109,104,111,102,104,105,95,103,116,98,114,112,102,110,95,99,101,118,92,79,109,103,101,101,104,98,108,90,100,102,125,115,98,111,116,110,102,113,106,109,104,102,113,110,108,105,109,115,107,101,116,103,90,106,99,92,106,113,105,94,96,108,100,99,100,87,105,113,115,105,118,117,106,105,113,110,110,105,104,108,106,103,98,109,104,105,103,100,105,104,100,93,105,114,99,89,96,117,123,104,106,106,107,91,101,97,99,98,109,106,111,100,97,98,104,109,112,96,107,92,107,98,112,120,124,103,107,100,102,112,112,105,110,122,108,113,100,106,104,101,104,108,105,106,102,108,113,107,106,101,113,112,99,101,93,113,106,111,111,104,100,93,119,97,94,109,104,110,104,106,102,106,94,106,104,98,103,97,107,103,113,103,99,101,102,105,92,112,109,121,110,111,115,98,106,138,88,105,112,105,102,107,109,108,106,101,106,108,103,102,109,106,110,102,98,106,100,116,109,106,100,103,98,111,111,102,114,97,104,109,101,113,93,106,114,104,107,100,84,106,110,91,120,109,103,102,84,113,106,108,111,114,94,95,110,105,116,111,101,109,102,113,93,102,101,113,98,109,119,104,106,95,114,111,112,100,95,98,103,120,116,105,99,113,98,103,105,117,104,104,101,105,96,106,115,102,86,106,98,99,106,92,110,116,97,102,97,101,125,93,110,106,104,103,105,99,113,117,100,105,99,110,104,108,96,108,94,96,115,100,111,107,92,113,115,108,94,115,119,110,104,98,111,110,104,124,105,110,100,100,104,106,110,114,98,99,90,108,108,115,109,101,104,119,107,114,104,101,108,115,101,117,108,102,122,98,120,101,106,105,113,104,120,115,95,94,102,97,94,105,117,98,110,112,87,98,110,123,113,106,102,102,95,98,101,120,103,113,100,113,96,112,117,108,104,101,99,112,106,96,104,103,121,144,114,109,96,109,95,104,106,108,109,117,107,103,97,114,106,100,119,111,124,103,120,107,104,103,107,111,115,103,112,137,104,115,109,109,91,97,98,91,98,99,105,106,109,119,111,104,96,95,108,119,106,98,105,109,107,94,114,114,109,100,106,111,117,118,104,100,108,103,103,100,103,87,102,103,99,105,99,113,100,118,102,107,104,100,104,117,109,103,94,107,110,105,97,117,93,117,117,93,125,113,115,100,113,105,104,111,96,104,106,91,91,115,107,110,104,103,111,112,104,101,99,97,101,105,117,104,113,106,111,112,109,107,107,99,108,108,117,92,107,108,110,103,95,99,115,112,113,109,91,111,111,101,94,104,93,108,106,110,111,89,101,96,96,119,108,103,107,98,106,108,117,107,106,111,108,111,112,106,110,106,103,111,110,105,105,103,97,123,105,97,106,114,107,90,92,117,109,110,109,115,104,108,98,95,100,86,93,99,101,104,105,96,102,116,113,97,101,110,97,101,92,99,108,105,105,85,115,93,111,102,108,103,106,97,94,112,97,111,106,110,117,113,109,103,118,106,110,110,101,97,105,108,121,103,112,109,114,117,88,112,106,115,121,98,86,98,103,113,103,111,114,97,104,107,112,108,103,117,94,97,110,100,89,105,117,105,101,119,104,108,104,112,92,98,124,107,111,117,107,106,109,103,107,115,112,100,103,105,112,103,112,102,96,95,108,104,106,90,121,110,109,102,113,110,101,103,109,99,104,112,112,115,96,104,90,114,106,105,113,107,111,115,105,87,119,96,80,109,104,117,115,103,91,87,114,95,102,120,106,110,113,98,101,121,95,109,102,112,109,106,117,101,94, +580.28845,103,100,108,99,99,102,113,91,102,108,101,105,108,113,112,105,103,117,104,105,106,118,104,96,102,116,99,107,114,100,84,107,103,104,110,91,99,101,115,93,97,121,86,111,95,98,108,105,99,105,99,110,105,102,107,93,105,83,107,99,93,108,108,107,107,111,101,103,104,126,106,97,109,100,95,98,106,99,83,110,112,105,99,110,103,93,100,94,110,102,105,118,96,114,93,129,100,133,101,115,113,86,100,75,110,99,118,107,93,105,95,102,116,103,108,111,93,113,75,98,118,101,107,116,105,108,103,95,119,112,119,104,101,100,100,108,111,105,100,104,108,107,98,106,89,102,121,105,88,103,97,99,106,103,98,99,100,114,118,108,105,108,101,118,116,112,100,96,105,95,103,100,101,102,105,107,116,91,109,106,103,99,114,104,102,104,94,105,107,102,90,99,111,111,99,74,92,92,98,112,112,107,108,105,109,101,107,107,103,92,107,110,111,109,104,115,101,104,98,103,107,102,109,94,100,99,107,109,99,97,113,94,117,90,114,104,87,106,117,99,96,95,105,103,108,98,110,98,106,106,95,103,99,105,96,101,104,106,108,107,92,102,85,103,87,119,108,114,103,104,100,102,112,88,103,104,114,107,100,100,108,108,110,111,113,92,104,96,118,102,118,70,107,100,116,104,108,108,107,111,101,101,112,110,103,124,110,107,109,117,106,103,105,107,108,112,100,108,115,99,108,115,94,102,104,105,111,90,121,80,116,106,114,99,109,99,108,90,103,95,100,95,99,96,105,104,99,97,113,97,103,112,99,111,112,108,112,136,100,109,101,109,115,106,101,101,110,116,99,107,99,106,95,112,100,104,108,109,102,106,97,104,109,104,99,101,93,110,105,86,102,99,92,108,103,106,85,114,105,107,106,107,89,101,111,101,95,111,107,105,90,76,118,105,109,102,108,106,108,109,84,117,101,100,95,100,114,102,102,114,108,107,111,100,103,104,102,108,94,97,108,99,100,115,87,102,102,101,105,114,93,110,102,116,106,106,103,98,110,112,107,99,103,109,101,106,113,113,96,117,110,104,106,108,110,114,98,112,106,100,106,100,102,96,112,123,106,110,112,107,110,113,108,102,105,97,103,103,110,117,110,103,106,108,96,106,92,102,116,104,112,99,105,96,107,111,95,104,132,101,107,106,106,104,111,104,108,106,108,109,102,114,104,93,115,114,115,108,109,106,99,114,103,102,103,110,92,109,105,109,114,98,104,104,102,96,97,107,94,106,87,110,105,102,106,97,109,109,99,102,112,97,102,104,105,107,100,101,89,107,102,101,106,93,102,106,91,108,103,95,109,109,92,90,112,107,110,110,115,100,101,113,100,100,105,104,95,108,106,112,102,103,97,109,101,104,107,106,110,95,100,104,120,109,103,114,109,113,102,104,102,110,105,105,105,104,108,109,107,107,106,109,101,102,100,88,112,106,112,114,100,114,104,105,105,99,103,106,99,106,99,101,109,108,107,96,105,105,106,105,119,102,110,102,102,106,76,107,107,94,117,103,116,105,103,102,104,97,109,99,104,112,98,103,106,91,111,100,108,101,103,103,103,106,102,102,98,101,98,104,104,108,117,101,105,107,105,116,96,91,98,99,109,114,108,115,106,101,102,101,109,94,99,93,106,111,102,99,122,116,106,96,108,112,105,110,112,112,105,99,123,100,101,102,101,112,102,97,101,113,91,99,104,83,107,110,97,101,99,110,107,103,108,105,103,77,113,106,90,121,116,128,113,97,115,102,104,107,106,103,107,106,108,106,97,100,109,94,105,105,105,105,101,104,96,101,109,108,105,95,107,106,103,109,116,117,114,104,120,107,113,113,107,110,73,117,101,106,103,102,108,96,109,111,105,106,73,110,93,103,112,101,105,110,108,98,107,99,98,88,113,102,86,102,107,111,102,106,125,104,111,95,99,101,103,108,93,110,102,104,103,114,108,114,117,112,113,112,106,108,124,109,117,95,116,105,100,107,100,119,104,115,106,105,108,90,103,107,106,110,103,101,113,95,108,105,102,69,109,97,105,97,107,105,99,101,118,112,109,121,110,103,109,101,100,109,105,102,96,116,102,104,95,109,100,96,108,107,98,113,96,107,105,103,100,110,98,110,99,105,98,100,102,100,103,107,118,103,105,110,113,103,108,103,101,104,105,97,98,105,104,90,103,102,103,105,123,99,83,108,106,115,109,117,105,107,104,105,107,103,107,97,105,99,107,103,92,110,103,103,105,94,114,104,101,104,100,113,90,105,112,96,99,110,99,113,106,95,108,115,102,111,105,109,111,106,109,118,110,113,113,116,111,118,115,113,111,129,157,165,151,208,213,230,232,228,244,199,228,218,194,198,204,169,162,165,128,122,147,117,126,129,98,118,113,106,99,99,109,113,115,114,115,104,105,122,105,73,70,101,93,106,103,109,115,98,107,113,104,121,108,107,111,100,109,115,97,111,114,102,113,91,102,110,99,107,101,105,116,112,109,110,99,97,99,100,95,92,105,113,109,107,103,105,102,97,100,112,105,92,105,105,101,99,99,97,101,99,71,99,98,99,107,118,101,99,116,91,101,105,115,117,111,93,101,99,131,101,103,112,97,87,109,97,114,104,101,104,101,105,92,103,102,109,103,95,106,100,102,97,110,107,96,108,100,96,104,74,96,104,101,111,96,101,94,124,89,101,98,102,108,97,104,109,87,119,89,91,100,110,100,93,107,115,102,98,104,99,107,100,106,116,107,90,97,108,100,101,105,116,95,108,97,108,108,100,110,84,108,109,98,100,95,106,101,96,106,103,103,107,102,102,109,100,102,98,95,104,106,104,98,101,119,102,107,106,107,109,96,114,93,107,106,116,91,102,104,104,105,113,113,106,102,99,104,101,108,107,118,94,113,106,89,104,97,109,93,106,110,105,103,109,96,112,98,97,103,101,99,98,100,106,91,95,105,108,103,107,94,105,117,106,106,114,115,107,116,97,108,101,97,113,108,104,115,118,88,107,86,95,102,113,99,101,110,100,100,102,113,105,96,87,95,96,96,98,111,117,102,100,108,103,106,100,105,104,110,107,105,112,109,116,108,105,113,102,100,106,105,110,102,92,103,115,107,98,104,108,106,106,106,105,114,101,108,104,106,99,106,99,102,105,107,107,84,105,94,109,115,104,83,100,100,104,102,104,98,103,103,115,105,116,94,97,95,104,102,112,103,103,103,95,104,115,115,114,109,119,109,110,108,106,101,106,105,98,118,99,95,96,109,104,111,90,107,120,109,104,91,102,105,111,108,104,110,103,90,100,97,99,106,102,105,99,91,101,96,110,104,97,112,121,106,97,101,109,108,96,104,99,86,106,104,109,89,117,100,109,98,99,99,102,83,95,88,98,104,104,109,99,96,98,118,112,106,101,117,101,108,107,110,105,100,94,107,116,109,104,104,95,91,103,92,104,104,112,104,113,107,107,102,107,104,104,105,107,104,105,101,99,106,101,115,115,111,107,108,104,103,110,104,113,101,100,107,103,103,98,105,121,106,89,105,104,108,100,101,102,109,98,97,92,92,101,103,104,101,111,100,106,87,106,110,116,97,102,115,106,103,113,100,102,103,103,106,101,98,101,69,106,83,110,105,105,103,107,115,117,110,114,114,104,98,106,94,98,100,108,91,93,113,97,101,106,100,99,94,110,109,101,111,111,98,94,120,105,102,117,99,102,96,102,100,100,102,94,113,103,108,108,115,100,94,111,103,101,103,91,108,101,89,110,108,106,104,105,115,99,107,107,117,101,108,108,113,106,102,104,105,98,102,104,106,101,104,112,106,109,98,106,95,104,103,104,113,107,109,97,120,91,94,105,101,101,111,98,96,101,111,106,91,103,100,108,108,103,105,98,103,104,108,100,103,100,99,103,107,109,110,108,98,119,99,102,99,102,117,96,103,93,135,119,106,113,98,97,70,94,101,105,103,93,101,110,105,107,106,104,103,103,121,109,95,110,106,101,97,84,108,96,105,102,104,111,109,101,99,100,118,124,103,95,107,104,109,102,104,101,92,96,110,100,103,106,108,112,105,112,104,108,105,122,95,104,109,105,109,100,109,101,103,93,105,104,104,105,107,108,100,110,101,105,90,102,91,111,102,91,102,104,102,100,116,106,98,113,101,109,97,100,100,108,117,104,114,105,95,104,103,113,104,105,102,103,109,110,124,108,108,93,105,114,121,89,101,106,107,98,101,102,107,101,125,115,109,109,100,93,108,98,94,104,107,95,106,103,101,93,109,101,110,114,116,102,103,99,96,95,112,104,95,96,107,106,99,107,102,100,98,108,105,105,107,110,95,104,106,109,100,94,106,97,105,97,99,111,107,98,108,106,97,96,115,106,108,101,100,107,103,96,100,108,107,90,105,103,113,106,87,109,104,100,94,102,107,101,97,108,103,96,77,101,94,87,113,102,106,92,102,108,104,97,96,112,108,110,100,108,106,101,89,91,99,103,108,106,100,107,109,100,97,97,110,91,102,95,105,100,125,116,101,107,110,99,111,98,110,98,93,107,104,83,96,105,100,89,121,106,106,106,95,92,90,109,102,106,98,103,95,99,110,94,99,99,102,85,109,103,113,104,96,105,112,113,93,123,95,80,121,99,91,91,99,97,96,105,112,99,102,101,93,116,112,114,103,104,106,100,106,93,119,104,92,116,80,101,97,102,112,84,108,92,100,94,100,104,97,106,107,100,115,106,134,88,94,96,109,106,104,94,94,102,108,95,101,99,81,102,92,90,111,107,102,93,93,101,109,115,105,110,99,112,102,98,89,115,106,109,105,106,109,68,105,104,105,108,102,107,117,89,112,102,104,110,103,110,113,103,98,95, +580.42944,97,95,107,95,107,101,105,98,101,110,100,109,104,104,101,95,110,97,97,113,109,103,106,102,102,108,107,110,102,115,96,105,101,106,114,99,102,100,104,120,102,107,104,103,100,105,114,110,83,104,104,105,93,106,103,99,98,96,107,103,99,99,96,104,104,109,95,105,109,107,96,109,92,104,108,113,107,102,110,109,110,106,110,96,96,98,105,109,110,109,100,97,95,110,95,104,102,97,106,101,91,100,99,93,113,94,110,87,113,96,102,79,104,115,106,101,91,100,87,96,99,113,105,103,104,103,106,105,112,96,105,108,95,108,102,99,120,90,102,105,97,88,102,105,96,99,100,111,117,92,100,108,113,105,93,100,100,98,106,108,100,110,105,100,109,104,94,98,107,106,101,103,100,97,103,110,104,89,103,115,106,104,95,100,97,102,101,93,100,102,100,105,101,114,93,99,76,103,105,103,104,99,114,125,103,98,101,102,99,106,113,106,116,105,100,109,104,106,102,108,101,100,104,108,94,113,106,95,109,101,98,97,106,105,102,104,98,111,116,100,96,102,104,94,101,113,102,111,110,101,108,113,98,105,106,133,99,102,110,100,108,101,102,83,105,95,102,107,105,100,95,102,99,100,106,101,99,97,106,103,110,101,96,94,108,108,111,111,110,102,100,113,107,104,103,106,102,103,120,112,93,97,114,111,105,103,113,97,121,120,95,111,102,110,106,107,95,95,107,95,102,98,98,101,109,108,113,101,108,129,104,92,118,109,113,118,102,97,98,97,109,105,112,98,110,117,102,100,113,102,106,96,87,104,108,114,99,101,104,101,89,108,100,99,106,92,104,113,100,116,112,100,109,90,85,112,108,101,83,93,113,100,94,105,101,94,107,97,98,104,105,90,99,101,111,97,96,103,94,107,101,91,87,102,110,103,105,129,96,104,105,97,101,116,98,101,95,103,130,110,112,84,112,106,82,88,109,111,98,110,101,121,98,111,104,105,98,103,102,105,120,103,104,95,114,105,107,101,112,104,106,109,99,113,114,101,104,112,116,107,110,109,97,109,104,102,99,103,106,104,111,119,97,105,105,87,111,106,104,113,113,101,109,94,100,98,104,98,107,99,95,102,95,104,106,99,104,120,93,109,107,101,98,118,80,118,101,100,102,105,102,109,99,98,108,111,95,102,107,117,98,99,109,108,111,111,101,111,96,113,110,104,82,101,106,100,103,113,100,112,104,115,107,105,103,95,90,99,99,104,114,106,97,99,111,101,104,109,125,114,98,114,94,106,115,102,106,97,107,108,103,85,99,105,96,103,98,103,105,103,100,107,89,100,98,109,98,113,67,101,109,107,98,106,107,106,103,107,119,99,104,102,109,105,100,104,82,105,128,92,112,103,109,110,107,100,104,104,114,104,103,91,88,99,112,97,111,112,100,103,95,110,96,105,100,106,92,89,115,108,103,107,115,113,103,91,90,114,113,110,100,107,98,113,125,115,104,105,105,110,103,116,107,108,97,109,98,104,102,101,124,109,100,94,101,110,105,106,114,98,103,108,99,94,113,105,97,105,102,106,95,105,106,98,110,113,102,115,106,100,104,100,100,100,98,109,110,107,97,114,109,87,113,90,102,103,117,102,100,91,112,104,100,98,113,94,106,108,90,111,103,90,116,91,93,106,108,95,110,104,106,109,104,102,101,102,107,99,105,114,106,107,113,93,69,90,99,104,107,105,103,99,110,97,106,102,108,96,94,95,114,99,107,94,103,117,101,98,113,108,86,111,105,112,107,102,107,101,108,100,114,109,103,103,115,110,98,109,102,110,104,107,100,108,106,100,97,106,103,104,116,102,89,98,103,117,108,102,112,102,102,79,103,94,106,99,106,100,103,97,103,103,104,105,105,111,117,108,109,113,108,124,107,114,83,89,100,109,102,96,87,104,113,119,95,105,101,109,97,96,110,101,105,99,108,106,97,104,109,104,116,110,105,104,108,98,103,105,113,104,106,95,110,90,110,104,95,111,108,97,106,115,100,111,108,105,121,100,103,115,105,112,112,103,108,98,99,94,109,103,100,106,108,104,125,101,103,110,114,107,107,98,102,99,93,120,94,113,105,98,112,104,101,94,98,101,92,99,108,107,100,109,99,102,104,95,97,115,96,99,111,112,114,113,115,107,104,98,100,103,105,97,101,99,94,102,110,101,118,108,97,100,112,64,111,117,112,104,99,108,103,111,110,106,106,115,99,114,101,103,110,98,93,110,113,97,79,106,103,108,105,104,104,114,129,108,109,106,94,100,99,109,105,111,120,95,117,112,116,105,90,113,86,108,113,116,114,113,111,107,114,105,112,105,117,128,149,142,145,164,184,203,182,235,226,226,203,220,167,173,183,216,186,150,155,127,144,126,152,125,103,120,132,133,113,105,85,107,123,102,122,119,129,122,118,107,117,110,103,92,95,100,93,110,106,114,103,106,108,106,107,108,105,105,98,119,112,106,104,112,99,94,117,93,100,105,110,94,105,100,97,108,98,105,109,99,95,101,97,103,106,113,98,106,111,97,107,114,102,100,110,99,108,101,121,106,102,91,98,107,110,85,100,117,115,109,100,105,113,112,111,121,110,104,104,105,116,110,108,111,98,88,115,83,96,111,104,103,108,99,109,95,115,102,113,105,99,105,105,76,102,104,103,99,101,109,93,101,108,124,107,114,113,116,105,111,104,96,108,104,103,97,104,105,116,109,101,102,106,103,121,121,105,125,105,102,117,93,105,106,101,107,110,102,105,105,115,115,110,103,108,111,107,98,116,96,122,106,105,112,117,96,110,100,114,110,101,110,98,105,110,108,114,107,108,113,96,113,109,118,106,102,99,116,115,99,109,95,104,109,111,102,102,110,100,98,104,111,97,116,99,93,107,111,104,109,98,98,107,106,100,109,129,111,93,100,108,99,100,115,106,106,104,108,106,93,97,112,103,114,108,95,108,113,108,105,97,95,106,103,107,112,105,101,100,110,103,102,116,115,104,105,101,115,120,110,99,111,117,106,112,115,108,100,106,119,109,108,109,101,101,102,102,100,100,109,100,108,95,98,112,107,101,119,106,109,106,103,116,103,109,104,102,103,99,98,102,103,107,104,108,105,97,124,100,96,112,113,106,107,102,94,110,113,106,116,74,107,99,102,109,103,105,106,88,97,114,95,124,120,105,109,104,107,105,91,106,100,113,117,105,101,127,101,102,103,111,101,122,101,113,98,100,115,112,120,109,112,107,121,100,94,90,94,108,108,116,102,104,97,98,92,98,102,114,124,103,104,99,95,99,114,118,106,103,104,107,111,104,109,113,116,99,101,105,115,105,99,105,106,102,96,106,109,106,102,105,105,109,96,133,106,104,103,112,111,108,114,117,106,96,101,100,132,106,107,99,106,98,112,100,94,103,104,102,104,103,107,106,109,105,108,105,117,103,102,115,98,108,90,99,102,107,109,95,102,101,103,102,112,96,93,97,109,119,105,108,102,103,104,122,111,124,107,93,106,103,99,98,105,100,95,105,103,104,109,118,91,108,114,103,109,102,105,98,115,95,102,103,105,104,109,109,110,81,101,105,101,79,123,91,106,112,100,115,99,110,108,113,112,105,98,115,104,73,107,101,100,103,109,101,113,102,108,115,113,96,106,107,99,113,120,111,114,113,107,107,104,100,112,105,109,110,106,95,100,105,111,102,108,109,105,108,100,101,93,113,116,101,119,102,103,91,103,107,105,114,102,110,108,103,98,91,113,102,115,115,107,111,112,96,106,102,106,111,99,111,104,96,117,109,98,109,108,111,105,107,102,110,97,113,97,99,106,90,113,90,98,114,101,110,93,100,114,106,109,111,109,112,93,98,83,94,94,103,95,118,87,91,102,99,102,106,108,96,98,110,104,100,95,101,99,98,99,112,103,109,105,113,114,96,103,108,86,107,108,108,111,114,99,103,101,103,106,95,110,113,102,106,107,113,100,107,107,95,104,105,99,106,107,105,95,96,106,110,113,102,91,124,108,118,102,109,94,116,110,105,102,108,106,108,69,110,98,111,105,108,109,100,107,107,124,114,95,101,107,119,103,97,94,130,102,101,108,100,126,102,79,79,113,97,99,104,106,94,107,104,108,95,107,110,123,98,105,107,107,109,106,102,97,105,104,87,112,100,112,113,99,101,101,108,105,113,107,120,115,105,105,103,109,109,107,108,104,106,99,81,95,121,106,103,107,98,104,107,98,100,103,101,111,102,102,106,113,103,109,112,98,94,117,111,117,108,97,99,115,108,107,109,104,95,106,109,117,106,94,100,104,108,92,100,102,103,104,106,108,96,89,101,109,142,98,95,106,117,120,98,117,97,103,99,90,95,112,109,103,120,116,99,109,102,99,99,107,98,109,96,103,102,91,106,103,84,104,121,96,91,109,97,106,102,119,113,118,100,95,109,89,102,102,109,99,111,108,110,100,96,107,103,105,98,101,90,110,114,108,105,110,103,109,83,87,101,110,100,115,117,101,110,102,104,112,111,115,122,89,105,77,104,106,120,120,117,109,95,105,98,100,97,99,104,94,100,103,108,106,106,95,121,108,104,123,103,117,118,115,111,109,125,86,109,110,108,106,105,109,102,99,116,105,102,108,101,119,85,108,105,100,103,103,136,106,92,101,113,106,107,114,109,98,108,95,104,112,120,102,111,99,100,98,125,115,104,106,105,97,72,116,105,101,113,101,97,108,112,104,97,99,105,105,112,111,114,98,98,116,107,104,110,105,114,108,109,112,108,98,111,111,106,95,110,109,103,98,115,112,108,117,106,84,103,98,101,101,108,102,102,105,104,100,107,88,111,107,112,114,107,117,101,103,116,100,106,102,106,100,98,91,93,121, +580.57037,106,106,107,92,89,107,96,116,103,99,93,103,99,113,94,120,106,98,108,109,94,103,96,96,100,87,105,100,101,87,104,87,92,92,108,104,101,103,139,105,91,117,100,112,107,113,112,95,94,118,106,103,113,102,106,89,97,92,96,91,112,99,100,88,98,105,81,103,85,99,115,108,99,117,104,113,114,95,107,91,109,98,105,97,110,104,98,110,97,94,115,100,100,117,106,102,108,94,95,107,112,98,113,102,107,105,98,96,116,102,99,102,109,92,86,101,105,98,112,96,108,96,119,104,103,103,96,100,99,100,119,110,100,102,125,98,106,103,99,104,98,110,99,102,111,95,98,94,106,95,100,139,97,90,98,99,90,92,110,97,100,80,106,116,106,91,116,100,104,105,105,102,96,100,117,105,94,95,105,105,111,103,112,102,96,96,136,102,111,108,112,100,90,109,104,116,98,112,79,90,107,104,114,93,102,117,103,106,101,107,106,96,109,91,100,107,104,105,108,91,104,97,98,101,106,105,111,106,113,104,101,104,97,101,99,105,117,100,90,113,106,113,103,106,87,88,104,106,107,105,106,106,98,94,103,113,87,94,98,100,104,102,102,98,98,125,123,102,116,93,90,95,91,99,110,95,103,108,105,108,110,102,104,100,103,89,97,108,95,97,99,102,117,100,105,106,108,114,101,101,91,113,106,126,96,80,111,104,100,113,103,104,104,92,102,101,113,104,107,99,109,105,98,117,105,114,105,101,109,102,95,107,102,71,112,104,106,107,118,100,91,101,109,94,95,122,109,103,105,109,101,90,98,98,114,99,103,109,113,103,101,103,99,102,102,133,112,110,106,105,97,99,99,104,116,95,106,95,99,96,100,96,102,110,91,95,105,98,121,103,107,98,105,97,92,105,100,114,115,108,99,99,108,98,109,105,129,106,101,102,96,101,119,111,99,106,108,113,103,102,87,95,95,107,95,85,103,86,89,95,111,103,105,112,129,105,106,111,102,94,112,96,100,106,97,111,104,99,101,108,104,110,110,116,103,101,100,102,106,82,98,104,110,108,105,101,119,108,92,104,112,106,99,99,110,98,103,116,111,106,104,105,106,120,94,99,108,109,99,127,102,105,113,109,104,84,100,101,105,104,105,105,112,107,98,104,104,116,94,105,117,105,103,108,100,103,99,94,105,101,104,106,104,109,101,105,102,99,111,99,106,116,102,98,112,106,95,105,122,105,106,114,107,99,111,114,96,99,136,120,140,109,101,128,106,104,105,113,131,107,116,109,103,115,102,105,97,91,94,99,101,106,97,100,98,102,98,92,95,114,108,105,122,105,105,104,97,103,108,106,118,108,108,108,108,113,100,99,113,104,102,108,96,104,90,110,111,99,100,94,102,98,104,103,120,101,97,94,105,98,106,97,111,93,105,109,95,100,109,106,105,97,106,103,126,100,90,99,100,106,100,108,92,96,113,106,98,101,104,110,104,98,120,110,109,111,106,107,98,105,112,94,118,103,103,89,104,93,105,102,113,105,86,114,90,108,108,97,99,106,103,103,100,100,107,113,105,105,96,105,96,95,103,117,102,103,105,113,107,96,98,113,101,102,106,105,101,94,110,111,109,103,104,104,109,101,110,110,99,109,105,102,113,97,119,105,104,104,113,107,118,101,101,95,80,103,113,100,95,112,113,96,108,105,94,106,99,102,98,89,103,105,111,112,110,95,101,107,98,113,108,95,98,97,117,106,101,99,112,102,116,105,112,105,108,83,99,113,109,92,97,122,100,87,100,114,104,108,106,107,106,107,112,96,114,109,102,108,83,110,87,102,92,94,117,99,105,95,102,100,97,99,105,107,87,118,100,115,109,106,113,109,107,101,103,106,102,102,98,103,110,105,114,107,100,97,117,96,95,93,103,112,102,96,99,104,117,88,119,105,104,103,99,104,106,96,109,117,98,113,98,110,116,109,92,102,93,104,118,106,101,115,90,104,92,95,104,92,106,102,99,100,106,102,110,107,99,95,127,100,116,113,103,99,90,98,112,99,115,109,93,115,100,88,105,106,101,102,91,108,107,104,100,118,95,104,101,112,106,100,95,102,95,93,98,103,76,108,103,97,113,109,117,106,99,114,94,93,112,109,106,106,101,98,102,107,116,98,111,99,97,94,93,117,104,111,107,117,112,99,108,103,97,104,113,115,83,103,101,109,115,111,102,95,94,106,110,113,103,108,101,105,109,111,107,106,105,99,115,113,95,95,107,99,116,106,96,105,88,94,118,109,86,115,106,104,107,108,103,110,95,103,97,90,96,103,104,104,115,110,124,110,114,100,101,107,100,112,120,109,103,138,110,122,112,116,137,131,142,143,205,161,190,200,250,232,243,205,218,177,182,219,190,162,146,127,118,132,115,114,104,111,128,111,109,106,94,111,117,114,115,102,87,113,118,130,114,104,101,105,109,101,106,117,107,110,100,105,104,115,114,97,103,97,101,96,105,107,113,105,110,93,105,106,124,106,102,112,112,107,96,113,113,108,101,102,111,109,103,97,119,99,113,110,95,108,111,118,114,100,112,75,103,105,114,97,101,104,101,102,106,103,114,98,100,101,98,116,109,109,107,116,111,104,100,108,103,111,111,102,105,95,102,101,105,109,98,111,98,108,108,101,109,125,106,92,109,118,109,113,102,106,129,92,96,109,116,109,116,103,102,99,107,102,100,109,103,91,124,108,109,110,93,117,104,99,114,103,120,106,96,106,95,111,116,111,106,91,106,116,110,124,102,94,91,103,96,108,117,108,115,108,92,108,114,116,107,103,102,107,110,116,102,102,103,119,114,107,116,115,105,107,86,109,108,103,102,105,94,108,98,120,116,103,110,115,103,107,103,129,118,109,112,99,109,104,96,92,102,108,117,113,102,105,117,91,103,100,92,94,105,96,105,110,117,113,114,99,103,106,112,103,110,115,103,104,108,106,94,102,110,117,98,102,99,117,101,118,108,97,96,102,109,109,120,98,101,112,108,110,106,109,112,115,100,102,81,103,107,104,82,105,107,101,106,104,103,112,113,105,108,101,99,103,102,106,99,107,96,103,114,95,113,113,113,100,100,109,112,100,101,117,105,117,99,88,113,107,96,121,110,94,95,102,107,105,99,72,96,102,115,112,114,107,91,115,94,108,116,95,95,102,97,116,96,125,132,110,110,105,102,114,99,110,119,108,104,98,100,105,98,108,96,103,112,88,107,104,108,115,107,102,107,110,108,108,110,104,102,115,110,95,103,99,91,116,98,117,102,97,100,99,106,111,106,119,102,109,101,102,114,107,113,103,118,100,112,108,102,105,100,108,110,112,95,105,113,103,102,96,101,96,116,111,100,107,113,107,102,106,102,103,111,108,108,107,98,115,103,100,96,109,117,115,99,104,103,110,117,116,118,112,99,103,114,103,122,97,107,98,101,108,113,112,101,99,108,103,116,113,117,104,102,91,95,117,104,98,102,107,102,110,105,97,109,89,102,104,113,99,96,106,98,104,98,106,116,106,104,103,106,108,118,118,90,113,100,114,102,109,117,100,98,107,98,106,97,97,100,92,94,103,99,109,110,105,107,110,108,109,98,104,100,108,91,111,103,109,105,85,110,105,107,109,114,98,106,105,103,105,99,104,108,99,90,99,99,112,102,109,108,99,101,105,91,89,103,108,116,106,116,107,100,107,96,101,105,109,103,80,107,104,103,83,108,113,106,105,92,121,101,100,116,109,110,107,106,102,117,98,107,110,99,104,113,110,104,101,111,117,99,102,108,105,100,99,112,117,99,117,118,107,102,134,98,110,124,119,94,114,99,109,115,105,98,109,103,101,116,102,105,107,98,102,105,105,107,91,124,111,107,104,124,100,121,97,107,107,91,110,102,99,107,109,103,104,118,98,104,111,111,99,107,105,112,112,108,104,110,106,83,102,102,101,99,91,111,106,107,103,108,118,106,113,116,103,94,99,102,113,110,115,104,110,113,107,95,109,116,114,116,108,112,105,107,80,119,105,76,104,104,107,90,109,96,111,109,103,102,106,112,101,117,97,95,106,109,107,106,98,105,103,116,110,108,103,106,99,112,101,112,114,98,101,98,106,113,107,99,107,105,99,115,121,104,117,107,109,111,100,92,106,109,91,113,115,104,116,102,101,103,110,116,110,108,112,105,97,103,110,106,102,106,108,116,103,76,99,108,103,118,101,106,107,101,102,100,106,118,97,91,100,125,96,104,101,101,104,109,105,101,101,107,100,96,123,104,103,101,106,97,104,106,96,93,110,120,113,102,107,111,108,103,120,107,111,108,107,95,106,102,103,95,107,87,83,116,107,113,117,110,118,108,109,104,107,108,120,98,109,107,121,115,99,89,109,106,103,105,102,101,93,102,100,112,94,103,103,114,98,114,101,104,102,110,98,97,102,108,93,111,103,104,108,103,103,101,104,110,124,101,98,109,121,98,91,104,103,100,99,110,108,95,107,117,110,101,94,123,104,112,98,108,89,116,108,110,100,102,99,105,109,113,104,100,107,106,108,113,105,101,85,87,106,107,106,93,107,106,108,100,99,104,119,98,112,108,101,103,107,107,109,98,85,108,103,115,104,105,100,101,115,104,114,95,118,100,94,98,127,109,100,100,102,103,89,100,99,94,96,96,106,94,102,99,99,120,110,105,99,97,100,95,99,104,98,103,110,100,100,95,97,96,96,103,104,115,110,108,110,98,99,97,114,100,93,111,94,116,116,103,112,102,105,103,104,90,90,113,101,107,101,112,101,105,98,120,106,99,106,110,104,102,135,105,112,105,117,108,107,106,108,90,103,96,103,93,101,94,102,113,125,86,91,109,100,110,101,106,98,98,112,106,116,92,110,111,91,97,110, +580.71136,112,104,102,100,91,111,119,97,103,100,103,114,103,108,94,119,98,105,104,108,101,110,115,92,109,125,109,112,95,110,99,99,112,125,127,99,109,105,110,98,114,116,104,110,121,107,95,106,113,116,117,118,104,98,99,87,103,92,115,116,99,112,103,103,107,117,101,99,108,125,101,106,91,98,95,118,108,94,111,100,103,110,114,122,97,115,99,103,95,102,103,104,103,109,99,102,100,102,103,102,111,94,113,109,89,94,109,105,102,100,98,71,104,108,111,110,117,103,106,102,96,107,109,102,117,103,115,95,96,87,103,109,96,83,106,111,104,104,117,105,99,113,102,99,103,107,106,98,102,104,105,88,105,103,95,95,89,103,114,106,127,103,122,106,111,99,115,100,94,104,115,100,99,104,104,108,102,87,117,95,102,99,106,104,102,113,113,107,95,109,102,110,107,107,97,111,106,86,104,111,110,101,95,110,106,96,106,110,108,109,103,96,101,80,99,103,106,110,100,95,98,98,97,108,83,118,107,106,110,104,94,103,110,109,120,107,116,99,106,106,113,100,111,107,108,102,97,105,113,102,102,102,105,81,95,94,113,103,94,94,99,122,105,103,98,97,117,107,107,110,106,106,110,110,109,102,105,103,106,107,100,113,105,105,105,108,83,102,109,119,117,96,108,111,102,107,100,95,99,98,104,104,113,100,102,103,104,115,96,94,101,117,107,106,97,94,95,114,99,112,100,106,108,106,112,102,103,104,109,114,111,110,108,92,107,109,109,104,88,131,105,97,99,95,113,104,99,117,103,102,99,110,124,100,97,102,108,99,102,99,104,103,112,96,106,106,105,108,109,100,108,106,93,113,101,102,103,107,106,104,103,104,101,119,102,104,90,109,98,101,103,95,99,111,99,102,100,135,102,109,99,113,87,102,121,96,106,112,119,99,94,105,102,80,100,115,107,95,97,110,104,108,102,117,101,97,101,99,92,101,95,110,103,109,112,95,113,110,112,105,125,101,103,112,97,104,108,104,106,105,113,93,104,104,99,106,100,109,103,105,99,97,99,103,118,122,104,113,107,126,103,93,108,110,110,107,111,110,115,112,99,108,95,102,100,96,124,124,102,92,113,105,116,113,97,105,99,116,111,103,120,103,104,109,100,103,99,109,113,85,106,106,122,103,82,105,100,116,106,98,109,113,121,111,109,107,105,105,109,119,106,114,105,99,104,86,105,94,94,108,111,105,98,108,105,109,98,102,110,115,107,114,106,105,98,105,99,113,101,100,108,101,108,98,101,120,103,102,116,106,93,113,113,112,109,106,102,105,107,111,103,103,76,102,109,103,114,112,118,109,116,99,104,92,113,104,109,99,106,98,103,113,117,99,96,99,115,92,99,104,103,98,110,103,99,105,104,101,100,104,106,98,106,111,112,101,117,107,116,104,94,104,112,102,106,103,104,99,98,112,106,117,120,110,100,105,108,105,103,109,110,94,103,103,96,106,117,109,108,91,111,104,116,102,95,96,109,109,106,97,118,117,110,87,106,121,113,111,113,100,104,101,100,106,94,100,105,105,112,109,103,108,107,101,109,104,119,98,102,98,99,98,94,110,103,114,107,104,104,124,96,101,120,100,93,108,81,93,107,85,104,93,96,108,113,103,94,104,118,112,92,109,101,107,117,99,109,102,101,114,122,107,113,102,103,114,102,114,97,106,103,114,107,100,114,111,112,102,109,111,106,96,98,102,91,108,101,118,109,112,100,112,108,104,109,107,106,107,102,109,106,100,108,103,92,110,105,108,100,114,93,118,108,104,110,109,110,117,107,117,109,96,99,100,106,113,101,104,101,106,100,110,108,107,118,109,112,104,93,128,113,106,106,99,103,107,116,108,114,99,106,103,96,109,103,105,107,101,101,112,107,105,113,95,102,111,98,100,103,91,100,102,115,112,104,97,132,97,110,99,99,89,96,120,107,90,94,102,112,110,112,104,107,120,101,100,113,94,79,90,121,113,112,102,108,113,109,107,121,112,117,105,106,118,108,114,103,100,107,95,115,112,107,102,124,105,108,96,100,107,109,97,96,95,116,91,93,111,102,103,104,107,101,106,104,100,101,117,94,94,101,100,107,88,103,105,96,107,111,103,103,97,88,110,106,105,117,111,98,109,99,108,110,106,100,120,97,106,100,113,111,121,112,96,104,101,109,102,103,109,96,107,103,116,110,114,105,108,99,102,75,110,100,110,99,107,103,101,122,105,109,109,96,95,107,104,95,108,103,113,112,99,103,68,103,118,113,102,105,100,105,92,105,110,107,107,118,112,111,112,92,101,108,100,110,103,125,101,115,122,94,111,118,120,128,120,140,128,155,167,172,219,205,235,266,235,221,252,223,206,177,179,197,184,167,175,179,137,125,113,115,117,115,120,108,115,107,125,103,116,101,119,118,123,126,116,112,108,102,93,106,112,106,98,122,108,112,108,113,117,101,116,126,104,99,103,100,120,118,116,111,104,106,105,98,125,113,113,113,107,91,110,102,113,116,106,102,106,109,108,115,100,109,115,101,109,109,107,106,100,104,109,112,108,100,99,101,110,102,107,114,93,102,112,104,108,109,110,92,96,135,106,110,107,107,102,113,105,107,90,107,97,109,112,120,123,111,109,100,97,103,95,117,109,104,99,131,101,116,75,116,116,106,111,105,111,111,108,100,118,108,103,115,110,95,110,98,108,112,103,114,111,106,111,113,111,105,115,117,115,111,110,102,111,108,115,109,110,91,111,104,100,111,105,115,103,108,105,99,112,111,116,99,108,120,102,108,109,92,100,105,117,111,98,98,100,104,120,104,99,100,109,97,98,108,109,112,103,103,95,111,101,102,108,107,121,75,117,107,104,105,112,110,111,108,106,104,125,104,115,108,104,108,106,103,96,91,104,110,111,101,111,95,107,107,105,108,101,113,111,110,122,98,101,117,108,101,110,100,106,106,98,108,102,122,100,80,109,108,106,127,108,108,120,106,106,114,124,112,109,112,116,104,117,108,75,64,97,104,103,110,98,110,106,110,105,109,119,110,112,104,98,103,98,113,106,115,105,115,109,108,116,118,94,118,113,107,109,105,107,102,102,87,113,92,109,121,111,99,100,100,104,109,99,111,94,107,104,102,105,97,101,108,97,109,100,106,111,103,108,113,104,122,107,124,103,117,107,111,115,98,106,115,102,106,117,103,112,103,106,110,110,91,102,98,99,104,108,114,104,115,109,112,128,114,104,99,114,101,88,99,115,103,94,108,100,106,110,106,101,121,109,114,113,104,113,127,114,124,108,116,104,102,105,92,106,109,105,103,108,101,106,104,103,97,108,105,120,101,112,108,100,106,106,106,96,101,118,121,98,102,101,98,102,112,109,111,102,101,111,111,106,113,122,103,100,97,114,106,112,111,98,103,119,116,96,107,102,117,110,112,107,111,102,98,109,112,102,108,108,119,104,102,99,104,110,101,104,108,105,113,117,114,98,111,122,97,102,99,103,102,110,108,114,108,115,102,115,122,110,94,114,104,109,108,111,99,104,111,110,101,101,108,118,112,103,101,104,109,100,106,95,92,117,117,99,111,113,86,111,110,118,100,117,130,101,97,111,106,107,115,95,95,112,110,102,102,106,103,110,102,105,92,102,105,117,107,113,107,118,99,109,102,110,105,99,104,106,112,98,108,111,113,105,113,112,106,113,110,96,116,114,113,108,117,135,108,114,106,113,112,107,106,110,109,111,110,109,116,104,112,106,103,84,118,109,109,80,116,99,92,117,110,114,109,115,119,118,100,107,111,100,113,109,94,117,104,103,104,138,92,102,106,104,103,118,118,105,106,97,109,106,113,117,116,112,100,102,114,110,104,105,97,106,98,94,107,96,107,117,95,117,102,114,103,101,109,113,109,98,107,113,109,102,96,107,97,99,100,96,109,110,107,101,109,95,98,101,103,104,109,107,119,116,102,115,91,109,98,112,121,104,100,108,117,106,109,107,110,109,114,115,112,105,106,102,108,102,104,105,112,105,94,111,115,94,91,104,120,101,106,90,110,85,98,106,108,108,117,110,110,109,99,97,116,111,103,115,109,99,104,132,116,99,117,114,112,100,109,110,100,109,112,94,116,117,110,133,117,114,106,102,96,102,108,102,87,104,110,109,102,104,105,107,112,107,105,112,104,123,122,97,107,108,90,99,108,105,104,105,106,100,100,106,102,110,111,110,109,99,102,104,107,106,91,108,105,117,110,103,104,102,109,112,107,110,114,100,110,100,110,99,109,104,104,109,89,94,98,107,114,115,113,99,122,117,103,118,109,115,115,100,109,103,97,112,108,115,110,104,109,102,101,111,107,102,110,102,99,100,111,110,109,115,115,107,108,109,115,113,102,110,104,105,108,114,117,108,98,108,112,121,95,112,108,120,108,105,112,99,107,103,102,104,117,99,106,113,124,114,96,135,103,108,112,101,103,104,105,105,103,105,105,127,117,104,116,103,108,90,107,98,105,111,116,113,96,109,98,95,109,104,107,111,104,102,98,102,114,102,102,105,117,100,118,104,106,98,99,104,99,98,102,112,110,113,111,102,101,106,102,121,87,99,111,102,114,102,103,113,108,118,85,105,120,111,113,97,112,100,97,106,102,112,110,109,100,104,121,108,91,99,102,121,116,113,112,135,102,107,108,115,104,104,94,112,107,104,107,106,107,124,91,95,106,106,106,108,116,109,116,107,121,94,107,98,91,106,102,96,109,116,115,105,104,112,111,96,93,104,104,113,120,95,98,99,104,117,113,108,108,113,103,108,116,108,108,108,103,107,106,99,65,102,104,113,97,96,109,80,109,90,93,107,99,103,108,106,95,107,109,97,103,88,97,98,112,103,102,96, +580.85229,105,119,87,77,80,104,98,102,100,116,91,95,93,96,102,110,114,97,91,104,103,100,102,109,115,109,96,118,111,112,98,117,103,130,107,110,115,96,96,100,107,120,103,107,99,116,111,107,109,110,103,95,112,118,105,100,113,122,105,91,115,115,98,114,109,104,87,108,109,92,108,111,80,104,94,115,102,107,104,107,131,122,99,100,113,102,101,117,95,103,113,101,106,108,85,102,111,99,93,100,102,107,88,101,96,112,103,110,103,98,107,111,117,105,101,103,107,102,109,101,105,111,111,105,108,108,106,94,104,105,105,105,105,111,108,113,102,111,100,110,105,114,107,107,101,109,106,66,110,115,94,95,111,97,103,104,99,118,106,99,114,102,115,107,122,101,110,105,106,105,109,106,94,105,100,105,114,101,111,116,115,125,99,126,113,97,98,105,92,102,113,107,103,100,118,102,110,105,95,91,92,103,101,103,90,101,100,121,125,104,111,105,116,105,99,116,103,113,91,104,117,105,121,101,109,105,113,107,104,110,112,98,101,113,104,107,93,102,106,113,111,97,109,119,96,101,118,105,113,105,110,118,103,110,104,113,104,99,102,101,101,110,109,111,94,100,104,105,111,105,98,79,100,100,111,111,97,111,104,74,118,99,110,106,100,109,104,123,95,112,105,102,104,102,104,111,99,117,97,111,101,116,122,110,103,110,103,110,111,117,108,114,106,99,95,109,104,111,109,103,113,100,102,107,111,106,96,105,114,122,116,115,122,99,98,90,114,107,106,102,100,107,107,99,92,98,96,108,103,100,95,102,107,106,99,109,103,99,100,104,96,104,103,114,99,98,102,121,102,109,105,108,116,98,102,99,105,116,100,114,98,106,99,109,107,111,112,109,93,104,104,105,101,116,110,113,101,101,104,106,101,101,107,75,100,109,112,118,99,101,101,111,108,100,96,70,106,104,96,106,85,100,92,124,109,99,109,103,120,112,99,108,88,102,105,103,113,107,98,111,114,103,119,94,83,104,103,100,105,123,102,125,102,105,108,109,101,95,107,115,121,114,127,114,97,113,108,106,98,91,99,101,107,103,102,111,112,106,108,106,102,95,109,103,102,119,115,101,88,101,85,128,105,95,106,114,98,109,112,102,111,116,85,108,98,106,98,110,107,89,117,105,116,110,111,100,103,110,100,96,98,118,90,108,119,111,103,104,96,92,106,95,99,99,105,102,96,97,114,117,127,115,117,104,96,105,117,96,113,98,118,120,104,101,126,102,112,96,112,116,113,108,85,109,113,88,103,108,106,104,104,101,103,101,110,114,107,102,116,97,106,95,106,97,109,102,125,107,95,105,106,98,111,105,110,116,110,105,105,107,105,106,110,102,119,113,103,75,110,107,99,98,67,105,98,100,116,94,117,98,118,105,108,99,111,108,101,106,105,98,97,109,98,115,110,98,106,89,121,103,117,105,101,123,97,97,95,108,107,105,95,82,106,107,97,109,115,109,102,107,110,114,114,115,88,93,106,103,113,95,113,99,110,105,101,107,102,108,113,102,112,105,111,97,104,97,104,103,89,100,102,99,108,111,105,95,104,109,112,101,109,105,100,118,101,97,107,106,114,116,105,97,109,103,100,105,101,107,104,111,104,109,105,116,104,96,93,113,109,115,102,115,104,109,105,112,107,105,112,99,96,98,110,100,127,102,112,102,101,112,112,101,109,111,107,109,100,112,107,111,109,100,94,109,128,102,92,112,102,101,111,108,93,96,106,104,104,112,104,94,121,107,97,112,111,102,106,105,98,111,109,103,111,98,110,107,94,98,104,103,97,114,102,98,109,105,112,115,101,109,117,95,108,113,107,105,114,115,96,106,107,101,99,111,97,107,110,106,102,104,102,96,102,97,106,103,111,114,109,116,104,114,107,98,104,103,108,97,112,95,113,99,105,91,98,98,109,108,106,115,113,101,103,107,94,103,97,107,110,98,96,104,99,97,114,99,102,71,113,114,104,106,114,106,114,113,109,113,101,99,102,109,93,107,102,106,98,112,108,116,99,104,106,107,104,106,101,106,95,98,105,102,111,105,108,98,107,102,102,102,79,115,105,97,106,95,102,98,111,109,104,132,107,107,112,107,106,104,106,104,103,107,109,102,102,103,78,91,104,105,104,102,109,96,106,100,97,100,105,101,107,109,109,99,115,105,96,104,100,104,101,101,106,103,102,94,105,97,89,109,99,109,104,105,113,103,99,104,103,107,108,97,103,97,98,110,102,76,110,103,106,103,99,108,119,111,109,99,101,102,92,104,116,114,114,96,107,93,99,106,85,107,115,99,112,104,126,127,114,108,121,115,106,98,126,122,132,135,167,120,159,184,210,221,199,226,208,225,184,203,187,178,206,170,175,160,129,138,117,123,109,109,131,96,108,102,113,124,92,110,100,107,99,111,114,129,95,89,104,99,97,96,102,95,116,114,109,101,118,117,107,108,104,100,99,101,100,107,98,139,117,96,124,111,108,111,102,118,102,97,105,104,128,98,113,79,104,97,96,107,97,95,109,103,92,83,108,112,75,103,96,99,109,116,110,104,104,117,112,102,102,108,100,110,101,112,113,102,113,109,104,114,113,99,94,103,107,102,112,105,113,96,111,96,108,105,113,108,98,76,106,112,106,117,95,109,119,107,112,105,110,103,102,97,117,97,106,104,99,105,84,115,125,106,110,108,100,99,112,110,112,111,107,106,114,115,110,104,114,96,98,117,116,112,112,116,106,106,106,114,111,104,101,102,95,112,109,95,105,117,112,107,91,107,106,112,116,108,99,117,114,114,92,90,115,108,112,115,102,106,96,109,116,119,96,112,106,116,116,106,98,107,103,104,103,105,101,97,112,110,96,105,102,100,108,105,105,112,106,110,102,102,110,89,102,96,103,99,123,105,100,110,108,99,113,99,110,101,108,99,119,107,102,106,115,107,103,106,98,106,98,102,110,94,92,98,93,96,115,100,102,114,93,96,88,110,108,103,106,101,106,104,99,112,121,98,113,107,90,98,96,111,108,104,103,103,108,102,102,82,102,120,100,113,91,94,103,92,99,101,103,107,108,109,124,110,110,109,106,106,104,108,109,113,112,112,94,103,106,106,126,109,100,106,108,105,105,104,113,90,101,107,102,117,111,108,102,104,84,112,100,106,92,112,102,93,105,96,100,108,68,100,112,107,102,103,99,102,106,103,114,129,97,113,108,106,109,105,117,113,108,110,113,122,111,107,99,110,110,106,111,104,115,104,110,95,95,108,94,107,91,100,117,112,109,98,102,140,111,102,114,104,108,108,107,117,99,103,102,104,102,115,102,99,99,96,102,96,109,109,93,101,119,104,106,120,113,97,102,105,79,105,101,115,99,112,113,109,97,103,101,100,113,109,92,103,105,103,117,118,92,75,111,97,107,112,120,112,119,101,103,102,98,114,96,97,121,100,104,108,101,110,107,102,99,114,102,116,122,112,113,114,108,107,109,115,109,102,97,101,113,106,118,111,118,95,115,111,98,93,113,107,107,104,110,113,91,110,109,109,116,102,98,117,113,100,108,107,102,105,101,107,124,110,106,99,108,99,114,106,94,117,105,106,111,92,124,105,111,102,102,109,101,108,104,102,113,100,111,116,92,109,114,107,94,111,111,107,101,108,102,111,100,103,111,95,113,113,115,94,104,104,110,101,106,105,100,94,104,96,108,109,88,99,118,109,84,107,135,113,120,102,107,108,119,96,110,111,116,110,105,99,111,114,104,100,106,112,109,105,107,117,118,108,102,111,102,113,103,105,131,97,101,102,109,107,104,110,108,107,100,108,113,112,105,109,92,114,111,105,78,104,129,121,112,116,104,103,104,101,105,87,93,95,105,99,115,100,95,107,109,100,105,112,115,106,112,90,109,94,108,100,116,112,107,110,114,110,111,115,95,111,101,123,101,99,113,101,97,112,102,111,98,101,108,96,106,108,102,100,103,109,114,107,117,105,107,101,111,107,115,106,107,105,113,105,109,111,100,106,99,100,97,89,117,109,104,113,103,109,115,107,102,100,96,102,112,96,106,114,115,100,135,106,113,108,111,112,103,103,77,103,102,100,109,106,98,108,116,113,100,96,105,108,111,105,101,109,112,71,100,125,102,89,97,105,110,99,102,100,120,99,102,109,110,110,109,111,113,114,92,106,105,107,103,112,105,104,96,107,111,111,106,109,100,99,110,110,123,103,99,101,105,97,102,104,104,99,108,121,97,96,112,106,90,109,94,104,99,106,107,109,103,102,111,99,108,102,106,104,93,103,119,105,127,112,103,117,100,99,107,108,108,101,88,114,95,105,110,113,98,122,98,105,110,123,99,107,99,104,100,106,79,111,104,101,102,93,77,106,105,115,107,105,115,106,96,105,104,106,110,120,95,98,103,102,111,105,119,95,120,108,103,115,96,101,104,103,71,103,105,102,104,124,106,107,98,105,99,111,104,102,108,109,124,103,103,110,117,114,102,91,98,102,103,111,98,109,98,103,108,108,98,102,93,85,98,107,109,115,104,88,109,98,113,107,99,105,123,100,98,104,101,105,118,106,114,104,111,105,101,101,98,114,106,113,94,106,104,98,96,102,99,115,115,97,110,91,103,106,97,91,101,95,104,106,87,112,98,109,98,107,105,105,112,111,100,102,120,111,111,95,107,111,105,99,105,94,91,102,100,97,102,121,96,102,101,103,99,111,99,97,103,111,126,100,97,102,110,103,96,115,106,96,93,105,109,109,112,108,106,115,99,104,115,99,99,103,106,99,102,102,109,100,116,111,96,90,95,109,111,94,105,115,101,84,112,108,109,105,109,106,96,100,116,95,111,108,95,121,102,94,115,118,101,114,109,100,115,85, +580.99329,115,104,103,116,97,105,101,123,94,81,101,96,93,114,91,100,96,100,103,102,116,106,100,107,90,111,117,111,105,125,113,100,100,115,97,91,97,104,110,95,100,110,123,110,121,107,111,96,109,114,122,95,109,100,109,92,110,100,106,86,91,100,108,99,124,112,94,108,97,102,104,115,104,108,95,129,93,102,128,96,107,109,90,102,130,108,96,106,111,93,98,99,100,108,104,100,91,109,102,89,96,114,110,93,86,70,111,111,121,107,111,110,101,114,91,98,113,102,101,95,99,90,103,104,111,112,113,95,100,94,96,106,106,112,104,120,111,99,106,105,99,99,115,114,119,108,100,106,99,107,117,110,111,99,95,101,95,103,109,118,91,107,113,98,103,104,102,105,93,113,105,104,106,107,107,106,106,93,117,109,102,109,100,103,104,106,109,99,100,108,102,108,106,106,118,102,110,101,98,111,103,90,99,114,102,109,104,102,100,106,106,113,117,106,98,99,106,102,104,99,105,111,110,100,97,110,96,106,105,102,116,103,95,94,116,113,103,99,116,105,111,110,109,109,87,107,102,99,105,100,91,114,108,101,104,113,95,108,98,117,90,105,105,108,95,99,90,105,103,91,100,96,102,108,112,99,104,74,100,123,97,95,102,114,96,106,99,112,109,103,96,110,110,118,102,107,110,116,94,106,99,103,100,109,99,114,104,113,118,99,101,111,101,112,102,94,104,96,103,98,117,99,115,106,109,100,115,101,92,107,106,90,101,103,108,107,106,99,102,94,111,112,104,108,105,109,103,109,104,112,109,105,113,96,119,106,113,115,108,111,100,104,104,99,91,102,100,98,95,108,100,112,106,98,105,97,117,106,111,106,112,111,120,113,109,111,92,104,104,113,116,96,94,112,102,87,105,110,107,105,99,104,98,122,106,96,109,117,95,104,89,105,110,117,111,110,110,110,107,100,118,116,105,94,89,102,95,104,100,108,98,103,117,105,100,122,112,99,112,107,107,106,110,106,88,98,92,89,119,109,114,99,106,101,106,117,109,92,118,103,117,105,94,112,111,113,99,111,109,96,105,112,99,100,109,99,93,89,111,103,101,113,111,100,108,102,110,95,104,107,110,103,112,110,109,105,92,103,102,113,113,101,116,98,105,95,102,115,106,102,108,97,114,113,92,116,115,102,101,108,103,102,106,104,99,112,117,100,108,120,106,115,102,94,109,103,109,94,99,96,96,99,110,104,107,105,102,109,110,112,103,106,114,102,86,100,104,108,90,106,103,105,102,83,95,107,118,113,99,90,109,89,102,100,102,110,101,117,104,119,117,105,109,105,94,95,106,106,102,87,106,97,98,107,96,91,105,99,115,112,107,114,108,102,97,107,101,96,113,109,110,110,106,99,114,100,101,90,106,89,108,104,110,100,101,109,109,112,79,109,102,97,105,103,112,104,110,93,99,105,112,106,114,113,114,97,96,103,111,110,107,115,132,69,105,94,113,113,107,104,111,109,103,118,100,109,103,98,118,95,98,111,104,113,101,108,101,105,120,102,103,124,113,99,105,104,103,106,116,101,107,118,105,111,102,103,110,117,99,98,109,89,110,96,114,105,107,110,116,110,111,109,106,93,105,100,101,116,104,99,103,99,112,97,104,91,104,99,112,118,106,108,109,109,90,106,111,100,111,115,107,116,103,99,105,111,112,106,105,97,103,105,100,96,110,106,110,102,112,116,95,101,88,109,104,99,92,108,105,106,108,96,104,83,101,110,99,101,106,103,109,114,109,106,106,114,101,108,107,118,112,107,103,115,110,110,95,108,108,95,101,102,89,106,106,104,109,103,100,102,115,99,101,99,114,109,103,109,98,109,108,106,114,104,110,121,106,116,104,105,126,91,112,105,105,113,108,112,110,95,104,100,108,122,104,102,112,103,103,97,107,109,105,112,105,109,117,111,113,103,100,106,107,109,109,105,85,116,119,99,113,106,101,77,105,109,101,113,114,99,112,108,103,120,107,112,103,107,108,109,107,115,106,102,97,105,105,113,99,106,95,121,106,108,87,98,98,114,110,101,107,113,113,112,115,103,105,117,113,107,106,111,106,104,112,103,92,108,101,106,104,105,105,113,104,111,108,112,121,100,107,99,106,109,114,105,98,90,99,119,113,100,110,107,110,113,100,99,91,103,110,126,96,103,125,111,102,114,114,88,106,114,105,96,98,99,109,104,113,99,109,119,114,104,116,101,110,103,111,120,110,95,113,78,111,109,109,102,104,109,100,95,108,99,109,106,107,117,95,110,109,118,112,113,100,99,110,116,109,87,121,116,114,106,110,125,109,110,109,102,111,109,107,113,123,112,129,131,144,181,176,194,218,214,213,234,245,229,207,188,210,225,162,180,163,149,144,125,127,148,123,116,101,113,102,110,104,127,109,108,108,110,112,100,121,104,107,105,91,105,109,108,98,120,110,105,106,108,99,104,107,120,102,109,107,106,117,104,109,121,105,98,106,117,117,111,115,106,98,107,100,110,113,113,113,105,110,103,102,108,107,106,99,94,105,119,102,103,115,113,100,90,124,90,98,112,100,99,110,99,92,106,100,115,104,109,104,106,99,94,104,100,113,107,96,94,110,99,103,98,101,89,106,105,116,109,111,100,110,89,105,94,111,100,75,103,111,95,102,96,111,113,97,106,98,103,117,94,91,122,98,107,113,104,93,102,109,107,110,100,106,105,98,111,104,109,107,110,119,105,78,105,81,95,122,89,105,111,107,108,108,104,106,99,110,106,107,102,107,106,110,120,109,104,102,105,99,104,108,97,127,103,120,91,101,109,105,99,96,96,113,117,117,112,113,96,118,107,106,117,105,103,99,112,117,109,111,113,91,112,103,108,114,98,104,107,107,103,102,107,109,103,117,99,107,103,103,110,101,107,100,96,106,94,111,106,101,108,108,116,104,106,110,104,106,109,96,102,102,97,78,110,94,89,105,95,112,105,108,106,94,102,92,99,112,113,124,116,113,94,105,99,114,109,110,102,111,96,100,123,108,100,108,107,101,103,118,92,117,101,91,111,102,95,102,96,114,113,96,102,103,117,107,99,120,113,120,109,73,98,105,99,105,106,112,100,91,89,104,104,103,106,110,96,97,100,98,113,87,106,113,98,113,110,105,109,96,100,100,105,114,101,76,112,117,107,109,106,117,108,90,107,103,102,103,93,97,106,102,98,108,104,91,99,106,100,117,109,104,110,106,113,106,104,108,101,117,142,109,113,103,107,118,110,103,107,102,113,111,91,104,100,101,96,83,101,107,113,107,99,102,106,103,106,116,115,104,101,98,110,77,107,109,99,104,101,123,106,112,107,109,106,103,105,112,105,113,114,104,103,109,109,94,101,101,115,107,112,104,101,109,111,107,99,92,98,102,88,110,106,101,120,101,102,103,113,125,100,106,112,106,105,101,108,103,106,101,119,105,100,103,99,101,95,100,95,100,100,112,109,103,102,104,106,131,114,97,119,97,96,103,112,95,108,113,103,104,111,105,120,110,109,107,103,118,108,93,113,115,113,117,111,99,103,106,94,106,106,98,100,102,94,110,112,110,102,108,106,110,107,96,104,99,112,113,105,108,102,102,114,109,106,100,118,104,99,95,93,99,121,109,99,101,108,101,99,96,107,104,104,113,98,117,97,103,96,99,108,113,99,111,103,107,103,100,105,102,114,104,111,120,101,107,110,114,90,99,104,106,105,108,92,97,96,113,111,107,104,98,108,101,111,112,124,106,105,111,120,108,107,102,115,95,109,99,108,105,104,102,95,100,96,103,107,110,103,121,105,106,111,98,111,108,111,93,114,112,103,106,96,108,119,106,121,110,88,100,110,103,93,102,114,97,107,109,93,112,103,98,116,105,106,102,100,117,100,114,106,104,102,109,91,112,96,110,112,103,97,110,120,100,107,105,104,109,111,117,109,98,105,91,104,117,106,106,110,100,94,106,121,95,107,113,108,118,98,94,101,99,102,104,75,101,103,122,111,107,95,113,110,108,110,120,121,105,113,99,112,104,90,110,106,113,87,104,114,91,104,108,110,112,95,107,110,114,99,101,111,107,104,96,109,112,107,105,111,98,94,108,98,110,86,108,112,107,111,110,98,108,116,101,106,107,95,116,102,104,105,103,100,99,114,101,96,117,124,100,104,108,103,115,111,90,110,104,107,103,107,99,113,113,107,107,100,106,100,111,124,110,123,124,101,114,108,107,104,105,110,104,102,113,137,115,101,96,106,98,109,93,113,112,111,110,107,113,109,94,117,109,99,119,92,108,119,100,106,105,117,103,110,108,95,121,114,95,106,112,107,104,110,108,108,100,99,108,101,106,101,104,103,100,119,104,117,104,99,104,105,107,100,107,106,104,106,111,95,101,100,92,104,113,98,105,102,105,97,109,103,109,111,109,112,92,110,109,101,103,93,95,111,103,106,96,116,113,115,75,99,117,109,108,108,111,109,84,100,115,110,101,98,98,94,97,106,105,107,107,117,107,98,102,101,100,113,103,126,106,109,102,106,91,111,108,105,110,110,102,100,95,107,105,109,106,111,104,104,112,102,105,110,107,99,88,100,103,99,107,106,108,105,122,97,97,100,100,112,111,98,102,111,96,106,100,105,106,93,101,112,78,96,97,96,97,111,105,93,107,109,102,101,110,123,105,99,101,105,101,104,95,92,107,94,104,103,104,101,73,105,108,113,113,109,100,97,103,112,102,104,105,103,113,97,103,103,94,127,91,101,111,103,99,96,97,112,102,116,102,96,109,100,108,105,103,98,120,93,109,109,99,109,98,94,104,99,98,98,107,107,101,97,79,109,87,95,119,108,88,105,99,104,115,100,113,113,91,114,89,103,98,101, +581.13422,116,113,100,92,83,102,108,101,102,94,93,92,102,109,98,108,110,105,86,102,108,96,117,108,95,107,102,93,98,108,102,115,98,109,110,105,106,79,111,112,92,92,109,117,98,102,109,120,103,106,108,116,100,103,112,102,110,95,105,102,107,116,99,91,113,105,96,111,106,97,103,115,100,102,94,106,104,115,95,102,99,108,95,111,106,88,101,111,98,95,105,109,95,92,93,92,100,98,101,98,97,96,108,109,100,104,117,93,104,101,100,94,98,102,110,108,99,108,102,114,106,103,102,108,115,91,104,97,109,109,99,116,99,91,110,106,104,104,112,102,114,99,118,106,105,92,121,110,101,110,104,106,115,91,110,113,99,101,115,91,106,101,98,109,102,103,105,106,110,109,113,104,94,132,111,122,101,108,105,108,104,103,114,109,105,108,95,94,107,103,103,95,112,100,106,108,104,106,99,95,105,106,99,104,107,102,97,109,87,93,102,114,99,94,103,122,114,109,96,113,99,110,106,107,89,116,110,115,104,96,84,110,104,102,98,117,111,88,122,106,101,97,109,105,109,105,92,106,108,112,108,102,95,109,106,99,108,106,106,102,108,107,112,103,77,99,113,111,114,111,105,105,139,101,114,100,99,114,107,114,101,106,118,96,100,116,92,104,86,106,106,77,116,99,106,109,125,105,107,104,103,95,107,115,116,108,101,100,93,96,102,114,115,110,113,105,113,116,104,114,91,100,104,92,107,99,91,109,105,105,113,102,104,115,103,111,125,104,103,114,105,118,96,99,109,108,109,102,110,103,103,100,103,108,106,104,105,103,107,118,111,103,138,113,110,118,108,100,95,103,103,109,105,103,77,100,111,116,114,112,114,110,103,114,95,103,95,114,103,106,103,96,83,103,125,110,105,112,107,82,110,116,98,103,116,106,111,116,110,110,112,104,107,105,98,108,109,114,110,95,102,108,102,109,107,82,99,102,98,99,110,117,94,109,91,92,110,105,99,102,109,99,99,108,109,103,98,105,105,114,92,108,106,112,114,106,113,103,109,104,102,107,105,112,114,121,104,104,101,103,106,105,117,110,112,96,97,108,117,106,119,106,127,99,126,103,110,104,121,113,112,119,114,100,95,101,114,103,100,110,110,100,105,105,100,109,108,103,113,101,110,109,96,106,110,112,107,123,113,91,98,105,118,105,105,112,115,94,99,119,106,102,117,109,102,103,101,112,100,111,100,108,104,125,104,103,115,99,112,113,109,110,105,134,101,100,105,105,105,107,105,103,102,106,93,80,120,108,96,104,90,97,107,125,108,118,95,113,100,116,115,102,108,108,90,83,106,116,82,96,106,103,121,120,118,109,104,114,109,108,96,106,110,108,102,115,103,94,100,102,113,94,117,104,117,108,98,96,117,114,96,110,108,106,107,108,93,101,103,110,113,97,110,104,103,108,88,94,109,116,105,116,103,112,105,109,91,117,116,103,110,117,85,102,86,106,100,114,112,101,105,121,119,107,103,107,104,95,114,117,109,113,103,116,108,116,104,95,114,109,87,96,105,104,95,88,116,108,110,103,104,111,104,119,104,100,111,101,112,104,91,100,109,111,103,112,109,107,109,112,117,97,104,99,107,110,117,107,102,99,98,103,103,102,123,106,109,98,112,96,107,109,100,105,105,106,91,102,103,95,101,91,115,105,99,109,102,105,100,111,114,99,98,114,112,113,113,107,102,117,107,103,89,102,109,95,114,117,102,120,115,116,118,111,100,98,114,98,109,98,97,108,99,118,114,112,109,105,103,105,105,102,107,106,108,107,102,101,104,111,94,109,99,92,117,110,106,113,104,111,114,105,88,95,110,99,119,117,99,122,109,118,104,122,118,109,114,104,100,101,106,107,117,106,118,104,132,99,106,120,99,99,99,107,113,106,95,91,114,93,107,96,103,110,101,91,109,100,106,108,86,107,118,94,103,110,106,112,110,115,103,119,101,114,95,104,96,106,104,99,106,117,105,101,109,95,101,121,104,109,113,108,103,107,124,101,93,109,104,103,105,120,109,111,105,116,113,113,95,108,121,110,104,113,111,100,114,119,101,99,99,83,105,108,104,104,95,122,98,104,97,110,91,102,102,107,104,106,93,112,117,100,97,102,94,101,95,101,93,113,102,117,113,109,108,113,92,104,107,106,122,110,112,105,102,99,109,111,102,109,106,106,117,101,83,109,108,103,117,97,112,107,109,110,107,108,108,106,119,110,107,101,125,112,96,109,115,70,93,110,112,122,95,109,113,97,100,109,96,109,95,103,105,102,107,111,110,113,128,98,108,115,128,118,110,98,108,104,137,122,115,108,117,111,131,119,143,157,161,157,199,175,191,210,234,205,240,186,192,178,182,219,203,179,171,144,124,143,120,119,117,123,121,109,113,104,113,120,98,113,106,90,113,94,100,114,109,123,95,107,102,105,94,110,105,116,101,114,101,116,92,116,99,105,100,109,109,118,120,107,113,100,106,96,108,104,99,110,119,111,96,117,116,98,117,106,105,109,92,105,96,91,102,119,89,115,91,113,109,113,108,123,121,102,105,106,109,103,106,105,100,100,113,117,104,91,105,109,104,103,105,106,108,102,93,117,105,109,112,84,104,95,111,100,108,98,109,103,119,98,103,87,116,105,95,97,74,108,123,102,109,109,93,109,101,106,114,102,109,104,100,110,102,103,100,102,96,102,108,108,90,98,117,98,114,117,103,107,106,98,100,116,75,121,112,116,110,111,115,108,112,114,88,98,107,108,109,106,103,102,110,108,118,107,104,108,114,96,105,114,107,111,98,87,105,103,117,96,99,105,110,105,102,110,110,118,100,117,94,106,106,102,105,93,106,118,102,103,94,117,99,107,109,106,97,107,125,109,111,107,101,77,90,113,105,109,104,109,119,113,113,112,98,84,100,117,108,87,108,112,110,106,103,107,113,113,119,100,91,107,87,110,102,112,105,110,113,106,106,98,123,104,109,111,106,100,110,114,104,108,106,105,101,109,100,100,99,103,100,105,103,107,108,103,99,92,96,116,103,110,101,107,100,109,99,103,98,104,103,97,106,101,109,107,104,110,109,107,108,100,107,115,108,114,102,103,96,109,103,106,119,98,110,106,108,104,92,106,116,103,89,94,115,105,100,107,105,106,112,112,103,108,97,101,113,102,108,108,115,106,106,105,105,102,118,102,106,81,113,106,110,119,106,94,113,99,112,107,91,112,109,98,106,107,105,99,96,104,85,106,105,106,115,112,110,104,107,103,93,96,106,88,110,107,120,106,105,90,140,98,109,104,113,104,97,99,102,98,97,111,101,113,100,102,103,108,99,104,102,103,87,102,107,112,106,79,103,110,106,94,109,81,111,111,110,111,120,112,111,108,101,112,103,103,99,106,108,99,110,104,103,112,94,104,96,107,94,109,100,104,108,103,97,99,97,106,106,108,98,106,106,105,102,92,101,76,100,99,119,106,105,102,99,104,117,109,102,103,107,137,124,109,111,113,96,107,103,104,96,109,97,99,96,105,103,115,91,93,103,93,102,104,101,113,107,104,114,111,111,105,112,112,104,106,110,130,112,102,103,109,104,100,117,121,110,92,118,104,104,98,97,110,110,109,113,111,101,95,121,110,107,113,104,104,99,109,99,102,133,109,98,95,96,91,102,102,99,114,121,102,98,107,98,107,109,94,100,104,113,97,103,94,130,98,89,101,105,99,103,96,107,101,80,99,123,72,103,97,108,108,106,114,113,108,94,98,107,108,120,121,99,100,98,112,110,96,104,109,107,105,103,105,102,92,100,98,112,104,113,109,96,112,105,104,105,114,106,92,98,102,104,105,109,113,114,94,105,98,113,108,96,110,108,101,101,100,111,97,98,106,103,103,88,108,115,111,102,100,92,103,130,103,114,104,108,99,101,108,110,102,82,92,91,105,101,102,98,95,108,117,80,96,95,108,115,111,113,109,100,100,109,96,108,108,113,110,95,99,105,113,106,104,114,99,88,109,94,107,104,100,109,118,104,102,108,118,109,108,103,98,107,97,104,95,101,112,107,109,106,98,99,110,106,101,102,100,104,124,90,108,107,102,96,117,120,108,106,107,103,108,94,106,110,111,101,107,95,115,107,87,83,88,105,99,88,106,106,87,105,102,107,114,96,106,117,112,105,134,102,111,98,107,102,100,102,104,101,115,103,102,109,94,109,105,109,104,107,108,116,102,103,106,109,104,111,100,127,101,120,98,110,100,133,98,98,115,104,87,89,92,113,103,102,111,102,103,100,109,79,128,105,106,108,71,114,104,104,105,104,103,102,101,110,101,100,102,116,103,113,106,104,92,96,113,103,100,106,110,99,114,103,107,92,110,106,99,104,98,111,99,95,97,102,82,114,102,97,112,115,98,105,108,110,103,101,101,105,91,92,104,117,108,106,105,103,107,120,104,123,97,104,101,102,128,106,110,110,92,108,110,84,111,100,103,102,99,97,108,95,108,100,103,82,100,106,96,98,110,94,100,103,121,106,110,107,108,92,94,101,104,118,105,106,99,113,118,124,101,96,110,104,99,96,109,114,108,94,110,109,106,129,102,112,97,97,115,103,105,105,114,109,104,115,115,99,102,98,112,101,104,97,101,105,93,100,97,113,101,98,99,102,111,114,108,104,104,109,106,101,98,99,95,102,85,107,112,98,113,100,114,118,107,109,113,108,110,117,96,101,103,113,102,106,98,103,88,102,97,109,97,106,105,105,109,106,107,113,96,91,98,115,103,106,108,131,102,94,97,103,98,104,99,103,142,104,110,104,109,110,102,110,110,82,92,92,98,102,83,112,100,126,102,103,93,112,107,104,111,97,97,103,93,106,98,115,88,119,104,98,109, +581.27521,114,114,95,105,104,104,112,109,102,97,99,101,119,93,112,107,115,110,99,106,95,102,114,95,103,108,97,108,116,88,111,110,105,105,112,105,113,102,101,104,93,74,104,115,101,108,109,117,100,102,103,107,93,110,100,103,86,94,117,90,108,93,106,100,102,111,102,106,99,99,113,109,95,102,108,113,109,101,102,103,104,113,109,87,102,97,102,99,104,111,99,97,111,109,95,93,100,100,107,116,98,110,98,103,94,102,92,96,108,93,103,114,108,94,116,98,96,82,97,108,104,107,107,113,97,113,104,97,103,110,102,122,95,106,117,91,109,95,106,100,112,109,104,109,95,111,102,114,100,108,100,117,92,96,103,96,105,107,107,97,108,109,96,105,113,109,107,100,95,97,111,97,94,103,117,110,97,93,103,75,106,103,101,105,102,102,95,72,103,102,101,102,99,118,93,110,102,109,95,97,105,102,108,102,101,100,94,94,121,107,98,109,112,114,107,95,94,117,95,104,108,107,110,114,91,109,109,98,105,110,99,112,104,94,103,99,109,96,107,115,108,99,104,108,105,97,98,108,97,110,108,106,94,111,109,103,99,109,98,109,94,99,104,90,96,104,103,88,100,101,110,106,113,102,109,115,103,98,102,96,108,107,106,110,91,102,95,99,109,100,114,115,102,109,98,96,97,98,102,94,92,104,106,108,92,102,114,108,106,104,100,91,95,106,99,105,102,95,100,98,99,91,92,106,116,102,100,96,106,117,103,102,100,99,114,100,95,95,103,98,108,103,85,119,124,100,101,104,99,106,108,97,112,107,91,110,111,108,102,103,94,102,107,103,111,98,119,110,93,113,117,110,117,127,100,104,100,110,104,110,107,113,113,101,101,92,102,95,110,100,110,97,99,103,109,99,103,106,100,100,91,123,94,109,110,105,100,105,112,103,104,100,106,121,100,98,106,110,107,102,111,105,89,113,92,106,104,97,101,110,98,109,97,97,114,118,99,112,114,111,104,99,101,90,90,99,101,99,100,113,74,95,114,104,106,111,99,98,97,108,109,100,99,119,103,104,103,103,112,106,108,106,100,95,112,104,100,108,104,99,96,117,108,102,109,97,106,108,110,100,110,104,109,106,105,112,111,80,103,105,117,92,107,94,96,108,90,120,127,103,109,108,103,104,106,107,92,99,108,90,108,95,94,107,113,101,107,121,98,101,91,95,99,81,97,108,100,98,97,94,103,116,110,102,124,100,103,104,106,91,101,102,111,106,99,105,111,110,114,89,101,100,106,103,105,104,106,103,99,113,93,99,101,107,106,102,108,99,115,109,96,109,101,97,114,97,111,98,106,103,109,108,103,131,111,108,104,103,104,111,111,114,138,106,112,101,105,103,104,100,109,98,101,108,103,105,100,102,111,97,99,106,114,95,100,100,112,98,108,105,107,104,101,103,82,101,98,84,93,105,110,106,113,109,109,99,98,105,104,117,95,113,95,96,104,106,105,120,103,102,108,112,105,110,98,107,112,103,114,103,103,105,118,112,105,103,108,92,113,91,108,107,104,99,100,91,95,110,119,104,100,111,109,119,102,99,117,112,87,98,109,97,99,114,101,105,117,105,99,114,96,108,98,109,104,97,91,102,101,124,111,112,106,108,106,88,103,104,114,110,91,114,108,104,103,106,115,99,113,105,120,98,92,116,99,92,111,99,104,99,103,103,109,93,106,99,105,111,105,110,100,96,102,100,102,104,95,94,112,98,110,103,111,97,105,110,96,105,107,100,105,102,112,98,114,114,115,102,100,109,110,96,101,109,102,121,120,95,103,117,104,103,96,102,95,105,105,113,85,111,111,89,105,101,110,104,105,96,105,109,98,118,106,115,102,116,102,115,113,112,103,96,98,104,108,108,101,102,107,104,102,114,106,82,103,106,90,92,99,107,104,104,87,101,100,116,113,107,97,99,99,91,107,97,109,107,96,102,109,105,108,107,112,113,115,104,96,111,115,100,107,118,113,99,112,102,92,116,83,104,109,107,107,111,80,103,95,95,108,109,105,108,102,106,108,102,95,93,109,112,101,104,105,106,108,111,101,101,108,105,99,101,111,103,102,107,102,91,105,110,102,96,107,108,105,105,87,99,109,97,108,108,103,101,98,112,99,99,101,104,108,114,115,115,110,103,107,112,96,103,110,117,107,104,108,109,101,89,97,98,98,103,100,118,99,112,112,102,100,109,100,109,99,103,106,100,91,95,96,103,114,104,111,98,99,92,104,94,106,104,99,100,111,113,108,101,108,100,104,111,119,117,98,109,99,105,134,102,107,111,100,114,115,98,94,100,104,110,88,110,115,133,103,96,136,109,120,152,143,173,182,195,176,223,227,229,189,216,183,211,189,181,182,148,163,145,137,132,136,121,111,122,128,99,101,106,110,108,113,102,105,118,114,123,105,106,113,128,97,128,102,98,97,115,106,104,111,94,111,98,104,104,110,101,89,113,98,98,111,113,128,106,102,98,116,113,110,99,94,115,103,100,104,105,109,101,102,104,106,95,116,102,99,95,101,101,102,92,98,109,110,110,104,108,109,95,95,104,110,104,104,102,87,90,101,104,114,111,103,97,117,117,96,83,101,112,107,107,101,113,107,92,100,101,100,102,100,106,99,106,101,98,109,113,100,88,94,106,98,97,111,105,107,102,103,108,104,102,123,99,124,97,100,110,91,102,92,97,99,105,98,119,110,105,102,112,120,98,101,112,96,120,99,111,123,113,115,106,108,99,113,109,96,95,99,98,105,103,96,105,111,99,105,91,106,100,107,105,99,116,110,104,104,99,120,97,112,108,101,105,98,100,101,96,104,101,107,112,98,102,103,104,107,100,114,93,104,108,96,115,103,110,96,102,106,108,112,107,99,108,108,93,109,105,96,108,96,125,111,105,137,113,94,102,113,99,95,100,106,110,94,95,99,110,110,91,105,110,106,99,96,94,90,99,100,103,114,103,114,96,106,117,101,99,105,104,115,100,97,110,100,101,104,117,113,110,101,97,101,103,106,106,107,112,103,103,120,98,113,103,81,116,103,108,91,94,112,105,101,109,116,105,109,100,104,81,104,105,105,109,114,109,100,110,110,104,103,102,102,99,103,103,92,101,108,116,101,104,99,113,116,91,106,107,104,120,106,109,105,100,104,100,104,106,97,116,108,83,112,103,101,105,92,98,97,111,104,102,102,124,122,83,93,112,113,109,94,101,122,98,111,96,103,106,106,89,102,106,101,95,100,100,104,117,94,97,109,109,110,99,95,91,112,106,95,112,112,105,96,96,109,94,111,114,111,79,94,92,103,113,102,104,108,100,91,108,102,102,104,116,108,110,104,104,107,100,102,102,103,104,94,120,102,103,108,112,109,103,102,112,94,105,119,105,97,102,103,106,102,107,116,103,93,98,89,109,101,110,107,103,114,105,104,113,111,94,111,97,105,101,105,103,119,100,98,104,95,110,110,104,97,117,98,107,102,104,91,104,121,106,89,103,88,102,112,99,102,93,80,103,102,94,105,89,103,107,104,100,101,101,87,101,101,119,105,102,98,105,109,110,106,87,110,111,106,105,115,79,102,109,97,95,104,114,120,97,103,99,98,112,100,103,113,119,94,96,92,103,107,105,109,103,112,125,100,100,113,105,106,103,109,91,101,112,99,102,104,107,106,89,109,112,105,104,102,105,111,120,110,98,103,104,101,102,104,113,105,106,107,105,110,101,110,97,102,106,108,113,102,95,115,97,110,103,106,103,112,99,103,104,97,101,100,105,104,107,111,110,105,96,109,101,108,124,107,115,116,108,99,97,83,102,107,101,91,110,107,103,107,102,107,106,114,102,103,113,106,98,89,107,98,107,103,115,105,87,95,98,106,91,85,100,105,113,121,106,103,99,103,109,100,96,111,106,114,95,109,97,99,103,103,100,93,99,104,97,101,93,105,93,99,103,99,83,95,103,98,95,99,121,93,101,93,109,115,99,99,100,104,99,126,98,101,111,100,104,108,101,111,99,113,110,103,98,111,109,103,103,106,101,111,110,93,100,102,102,88,98,100,113,107,115,104,111,98,104,104,112,109,113,87,100,100,116,104,121,106,98,91,113,105,104,99,106,120,115,99,124,98,115,104,96,104,104,95,110,129,108,93,94,115,106,111,109,98,101,110,114,99,108,105,97,101,98,103,93,105,113,93,96,128,105,108,106,105,105,108,108,106,102,65,104,100,92,100,95,96,107,103,106,109,111,117,100,110,107,98,100,103,109,95,106,110,97,97,96,98,101,100,112,112,102,107,108,103,98,92,109,89,115,111,100,108,88,108,102,110,104,75,113,99,106,118,112,102,107,113,112,103,97,102,93,68,110,102,103,98,111,93,117,94,91,103,111,105,120,85,89,109,90,105,114,97,98,109,107,104,103,109,109,101,114,101,103,100,107,107,95,95,109,108,98,102,112,112,109,107,88,105,112,94,98,101,109,108,106,102,94,108,97,94,105,115,113,101,105,100,98,105,102,94,107,94,96,99,101,99,113,113,110,99,108,102,100,96,103,105,83,101,109,101,100,109,115,102,111,103,110,111,118,104,96,105,126,104,107,108,95,103,109,104,108,108,102,106,111,101,103,98,104,106,99,102,109,110,98,96,115,107,105,111,105,92,104,101,111,104,101,106,92,115,99,96,107,104,97,108,106,100,105,108,82,98,81,91,107,108,105,94,97,102,108,101,108,116,103,98,98,109,73,104,103,112,108,94,95,104,101,105,105,112,101,100,111,106,111,97,117,113,101,110,108,103,106,104,96,96,101,100,105,95,110,102,96,90,90,93,117,92,96,110,109,111,99,105,98,102,101,100,102,104,105,124,102,84,119,103,97,97,105, +581.41614,91,118,85,121,85,114,96,95,102,113,99,100,98,108,96,93,94,109,85,101,77,113,109,105,111,114,107,109,94,114,110,79,95,112,107,102,112,101,92,95,99,115,104,106,118,99,91,110,109,103,103,103,112,103,106,97,107,104,92,93,109,113,104,91,113,109,103,101,113,109,103,104,104,107,97,112,105,101,102,112,108,109,109,107,106,101,112,110,95,98,93,93,106,103,94,96,104,94,117,106,101,108,103,107,103,100,92,104,114,101,93,118,93,94,87,103,87,104,106,87,108,108,100,108,103,114,114,119,102,110,98,113,99,112,119,108,104,97,114,97,101,99,97,82,104,107,95,111,101,94,119,110,93,97,112,107,101,99,116,108,111,107,115,104,110,106,117,90,101,99,118,100,91,108,98,105,101,104,106,111,92,95,99,108,101,103,96,105,90,91,88,114,109,100,97,107,103,109,99,110,112,99,89,86,101,106,107,102,103,109,96,108,104,100,103,104,104,101,107,103,107,118,109,112,97,106,102,104,101,113,107,105,108,112,121,112,107,121,104,107,102,98,99,103,105,103,103,98,96,130,89,109,103,105,96,133,100,101,112,97,108,112,96,98,91,104,103,95,107,107,91,100,95,110,102,102,87,106,109,116,117,103,101,91,104,102,107,106,107,118,110,97,101,101,100,105,109,100,106,98,104,106,98,108,99,105,106,99,102,114,101,107,100,104,109,98,98,101,105,108,91,92,111,108,115,106,103,90,119,106,100,97,108,101,109,99,103,102,107,110,109,107,96,98,94,105,95,107,106,106,114,101,106,96,116,104,111,108,101,96,99,107,86,97,103,109,102,98,109,94,103,107,106,116,102,101,105,112,106,126,104,100,98,126,102,104,108,92,105,98,112,91,116,102,103,99,85,103,124,116,104,119,114,104,99,105,110,99,104,97,99,103,98,100,104,94,91,110,103,102,117,105,108,114,117,105,102,107,107,111,101,105,96,110,112,105,92,102,104,104,112,106,112,111,97,110,109,109,104,110,103,106,95,109,112,110,117,109,106,100,111,100,111,107,104,95,99,116,105,95,106,111,110,105,111,95,104,129,116,99,111,113,109,113,115,102,107,104,95,100,108,109,105,101,94,108,103,98,110,112,109,102,111,100,81,100,101,100,111,102,104,104,107,104,100,108,103,99,106,100,104,100,116,107,103,106,98,104,94,102,102,99,110,125,104,101,102,97,106,110,112,93,101,106,103,104,111,106,115,124,91,114,91,89,60,92,94,106,94,113,108,109,104,108,105,114,106,102,113,107,105,95,115,104,99,112,111,91,108,111,101,105,121,107,113,102,114,112,107,95,111,107,91,99,118,112,102,103,128,115,108,95,106,88,98,107,98,112,103,103,108,101,108,108,101,96,107,98,101,102,108,100,97,108,117,106,117,108,114,103,103,107,96,114,101,103,118,103,114,100,99,107,105,101,113,106,101,109,96,106,101,105,106,107,88,94,109,93,104,121,94,105,113,110,102,93,97,93,99,118,110,105,101,106,102,103,106,115,104,113,111,126,106,103,106,104,96,111,96,105,103,109,109,114,102,99,96,104,99,95,106,93,104,99,114,109,109,107,103,104,113,107,113,102,104,105,109,113,79,95,104,96,104,106,99,105,98,102,92,109,110,105,111,101,92,104,102,102,99,112,103,91,111,109,116,95,123,106,97,119,104,96,115,103,100,99,113,88,117,111,100,117,93,107,99,98,104,110,103,102,98,110,114,103,127,110,96,112,119,98,103,118,108,103,110,114,111,106,68,104,103,111,107,111,89,117,103,102,112,102,106,105,103,107,110,104,103,112,114,104,128,112,112,105,108,106,112,110,99,85,105,100,110,100,107,95,101,109,99,101,111,96,104,103,104,92,108,112,106,106,103,103,112,108,111,103,93,115,112,100,104,100,100,107,104,91,98,103,97,90,110,98,100,102,122,94,108,106,114,104,105,109,110,112,103,108,114,99,96,98,104,118,103,106,104,107,107,127,107,114,97,109,111,75,107,104,112,108,110,106,100,123,106,103,103,117,98,133,113,90,91,105,107,104,104,112,93,110,96,105,105,106,117,111,108,97,113,106,106,100,102,115,125,108,111,112,92,86,110,114,118,110,101,106,104,106,108,107,105,106,102,98,112,114,109,96,113,117,107,104,101,107,103,99,106,100,114,97,97,105,99,104,107,96,102,105,121,101,103,101,99,103,105,95,106,98,107,96,104,114,86,105,112,87,99,110,114,116,104,99,106,121,98,130,109,105,112,108,104,113,116,124,102,100,128,102,113,111,111,117,121,109,94,122,113,108,96,100,116,113,102,117,114,91,118,119,143,136,149,173,206,205,181,213,222,226,181,216,201,207,205,168,171,175,161,164,110,153,119,119,119,130,110,110,103,109,119,102,113,106,122,120,119,111,118,115,116,109,96,104,92,107,106,122,103,99,102,102,110,117,114,126,119,100,95,106,120,103,112,104,102,109,104,110,105,106,100,115,108,122,111,103,111,104,98,96,99,111,92,119,107,108,104,85,106,116,104,113,114,102,95,106,120,96,113,106,121,106,106,111,117,93,101,100,98,105,103,105,110,108,119,93,111,114,111,100,113,103,107,121,102,96,118,101,120,103,99,93,110,120,102,100,120,101,120,89,103,100,108,115,107,116,105,106,109,113,124,104,105,99,108,106,123,90,100,109,112,100,117,103,99,104,109,106,95,69,103,116,109,103,106,109,107,119,115,110,72,88,108,101,129,112,107,112,103,110,101,103,116,99,103,108,114,108,117,107,125,90,106,120,117,120,110,103,121,104,109,114,108,104,110,109,107,98,110,111,94,106,95,107,109,105,108,117,103,121,99,98,108,113,102,113,110,109,123,103,109,116,91,111,104,113,103,109,117,107,115,112,105,84,112,109,91,110,120,105,123,103,100,102,101,114,121,121,109,99,115,114,101,98,110,104,98,95,112,103,107,103,102,116,112,100,115,101,111,107,117,106,109,109,99,100,109,105,117,111,112,108,107,113,112,111,108,102,120,111,117,106,104,114,102,94,94,102,103,112,104,104,105,113,118,117,105,104,113,97,108,112,110,106,112,140,104,113,109,105,100,112,106,102,97,104,100,109,111,102,127,111,106,113,113,97,110,123,105,106,109,104,107,95,106,109,111,100,114,104,116,105,117,102,111,103,106,124,102,106,112,101,107,105,107,79,93,100,114,107,100,101,118,109,110,101,105,112,99,108,111,107,111,109,109,113,96,77,96,105,108,115,117,105,107,94,94,105,117,103,119,100,95,104,111,132,108,106,130,98,100,79,105,100,113,121,102,104,117,102,118,108,115,111,92,104,106,102,106,106,107,95,113,104,108,115,121,110,105,107,104,114,113,102,97,92,100,112,96,109,114,108,104,104,98,102,90,100,121,113,121,105,109,106,109,105,108,104,110,112,105,106,108,108,126,107,97,105,106,103,100,114,106,104,113,110,103,105,130,106,101,107,98,102,108,128,106,99,102,105,115,111,95,96,110,113,105,96,112,113,102,119,116,114,104,98,103,105,105,107,101,99,102,101,107,100,104,117,105,105,106,111,99,101,103,105,108,113,102,97,110,116,97,102,101,104,100,103,95,109,105,119,107,113,107,106,106,114,105,106,97,110,104,97,106,123,109,106,98,103,108,106,109,112,107,108,103,109,114,102,107,111,115,105,105,112,110,112,93,106,109,82,115,103,113,98,105,109,101,98,115,99,111,114,120,99,103,122,103,96,110,105,111,129,103,101,96,104,112,105,104,113,110,117,114,88,104,117,93,122,127,107,115,97,99,122,121,97,98,106,121,110,108,103,110,108,102,108,117,116,114,111,111,110,107,102,100,108,116,103,98,94,101,113,97,112,106,101,110,101,96,99,106,104,100,99,112,110,109,115,94,117,120,105,105,123,102,108,104,98,102,102,121,115,113,109,105,111,102,108,93,102,106,110,100,102,96,92,109,90,110,102,87,112,111,99,114,93,106,109,111,114,113,109,108,100,94,106,103,118,121,108,121,114,112,107,117,106,116,102,80,109,110,94,117,92,102,117,112,99,104,109,102,98,108,102,110,130,97,114,103,76,104,105,99,103,95,121,98,102,103,100,106,106,117,106,101,96,106,106,112,102,113,105,99,99,111,100,112,111,100,104,102,112,90,96,99,104,100,82,85,98,103,108,103,95,113,105,110,98,106,107,113,99,107,99,110,114,108,113,108,100,108,95,93,103,109,106,98,113,98,95,103,110,109,116,101,110,114,108,100,105,103,111,103,105,101,107,109,117,107,100,100,107,121,98,104,112,109,116,119,103,102,103,109,107,106,116,100,121,107,106,103,114,103,117,111,109,103,103,116,107,109,98,91,101,112,118,120,105,101,98,105,98,121,100,114,111,79,102,108,94,115,105,102,106,102,103,114,107,102,99,101,102,88,102,103,104,100,108,98,100,97,107,106,126,106,102,118,108,107,118,114,109,102,96,107,111,109,108,100,99,109,112,101,102,111,107,106,120,112,96,112,100,105,110,109,100,112,110,99,100,99,106,91,95,107,106,116,109,106,106,100,111,109,101,103,102,107,89,125,99,96,117,116,110,105,105,115,112,107,86,109,100,106,109,110,102,102,105,95,109,103,106,101,94,112,85,114,102,106,97,91,101,99,122,104,111,113,105,101,91,98,91,104,114,106,110,106,95,105,102,104,100,110,104,103,114,103,107,113,103,118,113,103,112,91,95,95,102,124,116,102,107,105,108,111,114,106,92,97,107,103,112,96,94,109,91,109,64,108,95,104,106,93,101,93,100,95,99,89,110,116,110,102,114,102,119,104,108,69,111,108,99,114,107,112,114,95,113,98,106,99,96, +581.55713,104,113,104,111,95,125,111,91,104,106,109,110,103,98,70,105,105,125,100,96,109,89,103,106,111,93,101,110,120,97,110,94,112,107,108,106,112,90,101,111,109,103,82,98,105,112,117,96,107,116,102,99,99,72,106,87,89,109,109,103,105,91,117,101,108,98,106,107,98,107,105,107,98,118,95,115,100,101,117,103,112,106,109,117,90,98,102,105,93,82,91,90,102,107,107,102,100,109,99,105,70,102,99,106,110,109,110,107,96,105,97,106,103,103,105,104,117,105,121,96,101,94,105,108,110,105,86,99,102,100,98,109,102,112,110,107,101,108,99,101,112,121,98,97,87,108,113,105,81,95,108,122,98,104,98,94,105,106,98,101,91,105,112,110,103,96,100,100,101,100,107,114,103,105,104,106,96,95,112,102,107,98,95,103,106,95,93,100,114,106,121,106,112,100,92,108,107,104,105,109,100,108,109,103,98,120,98,109,109,100,116,86,105,101,104,97,83,108,98,113,106,108,104,96,96,98,94,98,98,102,112,109,101,101,97,112,95,111,114,113,110,106,113,104,101,101,108,112,100,105,109,86,96,102,102,112,100,87,98,102,101,113,107,103,97,103,103,109,96,105,121,110,112,102,111,99,95,119,101,113,98,113,96,113,103,108,115,106,108,104,108,112,112,110,112,109,103,108,113,102,98,100,105,116,80,103,110,111,88,108,97,108,106,107,104,113,106,106,105,113,103,100,98,105,105,97,99,91,100,102,98,97,114,115,108,97,103,104,95,110,109,99,109,91,111,102,103,108,100,108,114,93,112,100,104,103,102,107,108,113,102,107,97,98,115,108,109,112,102,121,110,123,104,99,108,102,108,105,112,121,107,105,116,106,90,95,95,99,101,98,111,98,91,105,100,102,106,110,102,107,104,95,100,105,116,96,113,91,109,109,101,98,108,101,102,105,107,106,98,103,98,98,91,106,95,99,113,105,102,103,101,100,96,98,100,101,103,106,97,105,107,106,105,108,95,109,102,104,95,112,108,99,110,67,95,115,115,108,111,106,101,93,113,104,101,110,105,102,111,100,106,118,98,97,121,99,117,110,95,107,94,101,94,104,108,83,111,114,111,104,107,107,99,95,95,110,97,106,106,103,117,73,100,111,99,107,104,106,103,117,109,100,105,107,103,103,109,99,100,109,97,102,121,92,91,108,119,103,92,108,95,103,106,86,95,94,103,102,111,101,103,109,106,102,108,101,105,100,104,115,128,108,100,104,95,105,111,111,97,106,95,106,101,113,107,113,106,112,107,110,96,97,111,103,85,104,111,97,103,108,99,109,105,106,127,105,102,99,111,98,113,115,93,100,110,100,92,101,111,95,109,110,118,98,104,99,94,99,109,98,110,95,97,102,109,101,103,99,101,113,100,110,111,107,108,93,108,101,106,109,101,97,90,96,100,104,100,108,106,108,108,103,94,100,109,99,91,97,97,104,95,107,114,126,103,107,106,102,96,108,106,98,113,112,98,101,112,97,113,104,118,110,102,98,110,121,102,112,113,96,114,106,106,113,99,116,108,110,103,97,108,109,94,112,115,104,108,102,97,110,99,112,96,105,111,76,97,117,94,103,107,114,113,110,110,113,112,99,108,95,110,91,111,110,98,93,106,99,105,109,106,113,105,104,99,88,100,90,104,104,108,114,111,100,106,105,107,105,101,104,108,110,115,106,95,102,102,103,102,107,108,103,94,105,102,106,102,96,105,95,94,101,109,116,105,105,114,95,105,116,121,98,114,100,114,114,98,99,100,108,112,104,109,97,106,106,111,110,111,93,97,103,77,108,114,105,102,106,116,95,101,99,92,96,113,104,94,113,115,104,110,102,102,103,110,103,98,109,108,107,109,111,107,115,99,99,106,103,107,107,108,109,106,114,95,106,101,101,98,90,99,99,100,99,108,100,118,106,103,112,103,105,101,136,102,104,103,124,108,103,108,111,116,110,117,103,106,114,100,108,106,112,116,106,99,106,99,107,119,98,101,105,115,104,110,100,112,100,99,120,111,112,104,101,119,104,105,110,92,108,95,99,107,109,112,110,99,98,90,97,97,89,113,96,90,92,108,101,105,105,98,109,107,107,95,91,98,97,112,99,106,87,109,105,93,100,139,100,106,113,104,105,95,113,105,103,103,109,96,106,116,101,110,105,108,110,112,104,108,106,105,97,105,105,105,105,100,104,104,101,108,103,101,96,92,102,93,102,95,98,101,89,101,101,100,95,107,93,96,99,112,97,114,110,102,101,106,113,97,113,101,101,94,103,108,105,86,104,121,115,116,112,103,106,115,118,103,91,110,105,116,107,129,106,120,113,136,122,153,133,199,189,211,238,183,210,280,195,199,183,218,188,157,165,148,127,134,143,144,89,99,119,106,104,107,107,97,98,99,105,91,119,108,102,97,104,99,94,102,109,103,112,107,96,113,97,105,103,98,99,92,105,107,112,103,100,104,100,107,106,102,95,100,106,104,102,102,120,96,107,94,105,113,102,106,103,105,114,122,99,115,109,101,100,109,105,105,105,110,107,113,108,101,91,106,121,115,110,102,103,99,94,91,128,112,103,105,99,103,103,104,121,112,115,115,108,108,103,100,112,108,100,105,91,106,110,109,106,110,100,103,104,107,99,102,94,104,106,108,97,96,99,95,100,116,108,110,105,108,107,99,98,104,113,106,108,102,113,116,97,103,117,123,106,103,84,114,102,100,113,105,108,117,107,106,122,113,106,105,105,108,110,103,102,103,103,90,98,112,121,113,105,103,126,108,101,116,110,107,115,105,106,109,105,111,105,104,104,107,104,108,107,110,101,106,98,98,108,100,113,107,104,101,108,106,100,100,110,102,108,121,109,105,120,111,93,110,112,107,117,97,106,102,96,101,110,112,98,99,103,108,112,103,98,97,104,102,101,110,95,108,114,106,113,112,110,109,107,89,105,98,109,106,100,115,124,99,101,100,98,108,107,110,104,110,111,104,103,105,98,86,90,109,102,105,112,102,100,124,104,102,109,115,99,116,108,100,119,113,97,109,99,87,115,106,101,109,107,104,108,111,107,104,101,113,104,105,109,112,119,99,109,104,106,113,98,108,104,103,109,95,98,107,99,108,102,103,110,105,114,104,91,102,102,108,115,99,94,113,115,106,117,99,113,96,113,119,105,120,115,111,102,109,116,109,105,99,108,104,98,105,112,97,89,128,80,98,106,105,111,107,108,106,100,99,109,93,103,100,114,97,103,89,105,120,103,106,103,90,100,115,112,102,98,108,105,106,107,111,105,105,105,95,118,111,111,98,102,87,88,106,102,120,97,102,103,111,109,109,106,89,105,116,109,114,103,111,94,109,104,107,91,101,108,112,98,111,96,107,98,86,80,108,107,108,91,106,127,121,113,103,109,113,104,107,111,108,109,93,98,79,114,102,97,101,99,106,115,99,100,102,107,100,96,100,107,98,113,108,100,110,112,110,104,127,98,89,85,111,105,111,116,102,107,107,107,92,136,99,120,112,118,85,104,108,113,102,117,93,113,114,102,102,116,102,119,106,107,99,91,105,108,105,109,96,112,112,106,111,102,105,108,101,108,101,93,104,95,104,100,110,111,108,111,103,98,96,117,104,99,115,91,100,104,95,107,98,104,106,110,96,115,98,104,104,103,111,99,108,110,107,111,105,110,103,115,113,113,94,101,104,96,113,98,106,103,112,106,99,108,132,104,104,109,114,106,107,100,105,104,111,115,99,101,94,102,109,104,100,103,113,108,96,107,105,93,112,103,107,107,121,111,104,103,100,109,103,121,105,106,96,109,103,113,125,112,104,117,110,103,109,103,116,108,112,114,99,113,101,106,102,105,98,95,106,109,108,119,97,101,104,117,102,100,112,103,101,115,117,105,105,96,101,93,106,101,109,98,100,105,102,115,107,111,112,94,109,106,104,102,104,113,98,104,111,113,104,112,100,98,106,108,88,108,116,113,108,104,107,108,111,120,116,102,108,106,101,101,89,106,103,106,101,96,102,111,107,109,119,98,114,107,105,108,93,101,102,112,101,112,103,115,103,109,108,109,101,112,100,108,110,106,85,111,98,111,111,101,107,104,99,95,105,115,105,101,103,104,117,106,102,96,100,99,109,112,107,106,117,104,103,103,117,117,103,110,104,108,108,100,118,103,124,89,94,85,119,108,108,116,107,99,95,98,96,99,113,105,106,100,104,99,104,100,91,106,100,114,113,101,113,97,106,109,103,95,103,98,98,99,95,109,100,108,97,113,112,110,95,83,97,102,104,107,106,107,105,105,121,111,113,94,107,102,95,110,104,107,107,98,94,105,108,105,105,102,105,104,105,111,103,109,106,112,95,103,114,103,108,97,85,100,97,117,99,114,98,83,107,99,111,95,97,108,99,88,104,105,108,100,100,110,104,115,102,94,105,103,110,106,84,100,94,89,98,116,93,109,126,98,97,107,96,108,103,105,113,109,108,101,97,95,102,106,100,104,89,107,94,109,102,108,99,100,107,103,104,108,100,107,109,108,102,97,102,117,109,116,88,104,113,100,111,107,98,104,102,99,91,104,96,116,90,95,107,116,112,88,105,113,114,108,106,99,94,127,118,96,110,121,115,109,122,109,97,114,90,87,113,98,108,109,104,108,105,92,99,115,101,105,114,107,103,108,111,97,106,110,94,98,115,104,102,102,91,98,93,107,100,89,100,99,103,90,83,98,101,108,96,104,110,119,106,105,104,107,108,115,98,102,106,92,100,101,116,113,113,103,106,100,103,91,107,103,97,94,107,99,98,105,103,107,104,92,90,114,113,107,100,105,123,105,100,99,82,105,106,106,99,94,117,105,103,92,106,119,94,96,117,99, +581.69806,110,105,92,112,80,95,102,105,95,120,105,99,99,99,107,108,95,116,112,92,109,104,92,105,101,99,108,100,98,111,103,108,115,102,112,106,87,97,90,104,108,108,109,110,111,115,108,110,100,116,116,116,111,108,106,95,101,99,106,108,112,104,99,100,108,100,117,104,105,127,104,70,109,109,108,111,92,99,106,94,111,95,107,99,102,109,99,114,101,98,107,112,118,100,107,107,105,105,99,99,116,113,101,100,100,103,109,118,102,100,103,103,103,113,105,99,112,102,111,119,94,101,102,69,95,103,114,105,103,102,90,108,99,95,116,98,106,107,114,100,100,96,100,107,98,96,97,113,104,117,100,110,100,93,103,104,108,116,103,95,120,96,112,103,87,98,108,102,96,99,113,99,112,110,102,100,100,114,122,111,102,108,104,98,100,92,98,92,106,100,110,110,101,110,101,116,105,105,111,75,99,103,100,99,105,118,104,95,100,116,99,110,114,106,108,110,90,108,103,112,100,129,103,99,96,102,102,115,108,109,112,103,110,110,109,98,117,101,101,104,103,114,109,111,96,88,111,110,114,100,95,100,105,101,79,96,101,112,99,115,90,122,102,101,96,114,93,101,95,116,95,103,99,122,113,106,108,81,111,95,101,105,92,100,98,114,99,106,104,107,109,105,99,109,109,116,96,117,107,98,101,102,103,113,103,112,106,117,106,106,105,117,99,102,97,101,86,100,95,106,99,105,96,110,109,97,105,105,108,107,109,99,93,92,111,104,101,99,96,122,104,97,114,91,103,112,101,112,102,114,106,100,111,103,114,118,104,106,108,102,91,96,99,105,96,100,97,94,103,99,116,100,111,106,98,103,96,114,105,99,110,110,90,103,98,107,102,98,100,98,122,88,98,101,115,100,103,104,101,117,113,120,102,102,93,104,98,109,98,116,92,115,106,117,79,91,105,102,104,103,104,93,94,106,105,109,99,109,136,108,96,113,130,102,105,100,98,98,106,106,106,102,110,105,96,107,97,100,110,114,104,117,103,115,98,109,104,101,113,111,100,98,88,108,105,108,109,115,105,96,118,124,106,108,103,99,106,104,114,108,100,108,108,100,107,109,113,95,107,95,106,103,100,107,99,107,108,106,110,103,108,99,105,106,107,106,100,101,109,101,114,113,101,106,94,101,96,101,114,106,103,105,107,107,100,110,111,104,102,106,99,88,109,121,106,100,105,101,106,99,106,99,100,94,101,102,96,86,100,102,112,103,100,107,110,102,107,105,99,105,110,120,110,102,87,101,103,102,104,103,104,109,92,98,121,95,100,112,107,95,108,120,108,105,113,110,102,94,105,112,103,104,104,99,102,111,106,97,102,101,110,99,107,105,102,109,102,114,119,99,107,92,106,99,104,102,109,93,97,103,103,117,111,94,111,106,96,102,110,108,108,105,105,118,104,107,90,102,102,99,100,100,109,109,99,102,105,101,106,98,105,107,98,103,110,97,111,100,101,108,106,101,112,110,102,96,108,96,107,94,106,100,100,102,102,100,107,103,115,109,121,114,114,69,101,103,86,107,94,99,115,104,96,111,95,111,105,107,113,95,103,105,99,96,109,113,108,117,104,106,111,96,105,115,107,91,92,113,103,100,107,106,98,94,76,111,94,114,106,112,111,111,108,100,103,102,102,98,96,95,108,95,105,113,111,111,105,103,96,109,109,107,104,100,111,111,105,98,105,116,103,97,89,104,100,94,105,98,112,105,102,107,99,100,108,117,103,103,100,82,85,74,102,104,110,110,100,105,103,125,112,105,100,113,99,105,104,106,103,101,113,107,97,104,103,106,107,105,102,110,122,99,99,112,106,102,105,113,111,113,109,93,106,110,109,92,101,109,107,100,113,94,114,105,98,90,99,107,115,97,99,100,109,107,115,112,95,104,103,115,114,94,105,116,101,107,102,104,99,102,114,91,102,106,98,94,98,102,103,94,119,99,106,101,105,102,103,103,105,110,101,98,108,110,102,91,101,113,113,110,92,111,101,100,117,97,105,109,103,110,110,96,102,96,101,100,113,105,100,102,104,99,121,113,103,95,99,110,95,81,100,99,108,108,109,104,100,99,109,110,134,112,116,94,92,90,105,103,103,103,125,109,100,107,102,101,99,112,96,117,110,109,110,105,99,94,103,76,104,107,104,112,107,104,106,109,110,100,117,105,105,106,116,102,95,92,109,113,117,104,96,113,108,112,114,102,101,103,98,114,111,104,118,92,95,93,103,106,99,97,102,107,94,110,113,103,95,110,98,108,94,95,106,102,110,121,100,105,104,116,113,105,107,107,100,109,106,114,107,105,106,119,99,112,115,128,137,153,152,149,174,180,182,210,200,236,208,198,177,178,210,181,165,152,161,131,151,132,103,132,120,115,122,121,119,96,120,118,111,101,117,111,105,108,105,100,114,109,101,105,115,113,92,104,111,112,106,114,104,110,112,111,110,98,99,106,96,105,114,113,107,93,107,98,120,106,110,110,114,111,109,103,97,98,106,106,96,105,107,106,104,94,102,103,102,100,94,112,95,111,99,106,108,101,106,107,113,102,102,102,98,96,96,114,98,116,112,100,104,103,117,94,117,112,94,106,110,104,98,113,106,101,103,88,96,116,97,115,107,92,122,86,95,92,92,96,101,94,126,110,108,108,105,106,101,113,112,106,96,100,114,95,105,105,98,116,122,106,109,103,96,117,101,103,92,108,109,100,104,107,103,104,96,99,109,122,100,97,95,107,101,111,93,95,111,91,100,109,104,103,108,99,108,91,133,112,110,104,110,104,109,100,119,104,106,107,113,107,114,102,103,117,101,91,95,105,102,110,95,88,113,103,103,89,116,109,103,105,96,108,111,109,111,104,110,105,105,103,107,104,102,106,116,97,117,115,86,104,109,105,104,112,103,100,108,111,99,119,102,107,93,99,117,117,100,111,106,73,115,97,106,106,102,107,130,105,97,103,91,97,100,110,109,92,98,108,113,110,112,112,101,94,105,112,109,97,107,99,101,108,100,109,107,95,103,105,98,107,101,110,107,113,98,94,105,103,115,110,112,98,110,117,112,102,105,104,129,107,111,110,110,105,121,105,101,100,102,107,106,110,112,95,106,127,109,102,110,105,96,104,89,108,102,98,104,115,108,98,96,112,110,97,109,102,103,95,111,128,108,106,112,109,105,111,110,109,94,112,74,111,105,102,99,110,103,101,118,93,108,113,99,105,103,118,111,107,110,119,100,104,112,113,113,102,98,104,100,97,117,104,96,83,102,109,108,105,105,91,99,113,97,102,119,88,111,105,101,102,84,95,102,114,102,102,114,102,85,103,116,117,109,113,118,113,95,95,108,103,101,99,98,140,124,102,104,109,91,108,105,91,99,104,109,129,102,104,104,94,99,118,101,99,106,113,98,105,105,101,102,102,119,116,99,102,108,98,119,100,106,103,115,104,108,100,103,104,93,105,106,75,132,103,105,97,112,114,104,104,98,105,106,104,110,111,95,109,102,108,104,124,102,101,111,109,103,117,106,98,104,107,124,97,111,120,112,105,113,112,103,108,108,91,122,120,93,96,94,112,104,104,112,101,107,108,113,100,106,107,99,106,101,114,102,93,95,97,97,87,97,104,93,113,98,108,96,103,107,106,121,104,80,98,111,111,125,108,87,100,105,76,98,110,105,104,107,107,112,104,109,104,105,110,110,92,102,106,109,104,105,109,117,114,108,94,100,113,117,107,120,104,95,103,115,92,116,101,98,96,105,114,108,103,109,110,110,112,102,113,96,97,107,98,105,109,103,100,95,109,97,107,95,115,91,114,110,102,111,126,99,100,107,103,103,102,110,104,115,104,101,113,100,109,97,98,112,99,107,106,99,109,103,111,103,104,90,108,114,88,109,98,107,96,99,133,92,114,102,101,95,105,108,99,105,110,88,98,99,102,101,109,98,106,111,108,107,95,111,106,103,103,105,117,95,93,115,109,108,113,115,107,97,112,103,104,114,104,113,100,117,104,114,94,109,102,105,100,132,106,116,95,100,101,99,95,111,99,113,108,107,104,105,97,109,116,119,108,113,104,113,90,118,102,102,101,89,100,96,92,98,115,105,92,112,102,105,97,105,94,109,102,99,98,105,102,102,110,114,106,106,98,120,108,105,95,107,132,101,110,106,99,100,102,96,105,98,103,103,106,101,106,104,95,112,103,91,107,111,102,108,104,121,120,103,81,102,113,95,110,102,119,96,113,131,109,87,108,102,108,93,104,100,108,97,110,115,102,98,105,104,105,103,115,119,112,106,101,112,107,95,96,113,110,103,104,94,84,105,66,103,108,109,85,103,99,110,101,112,98,108,100,100,117,93,100,93,105,112,105,104,99,91,101,98,115,99,101,109,113,117,97,124,106,103,128,130,109,107,106,90,100,106,99,99,108,104,93,118,93,104,98,89,113,103,115,124,96,109,117,99,109,101,96,99,114,123,98,93,128,106,100,109,105,108,102,101,103,109,103,93,91,109,102,102,101,109,93,100,97,111,98,109,110,104,97,107,102,100,105,96,87,99,95,104,119,107,104,96,105,90,101,143,91,96,111,108,107,109,105,113,98,108,98,104,113,109,104,115,108,93,84,99,105,118,109,109,108,104,100,111,102,99,106,92,100,104,113,106,99,96,100,103,107,91,113,101,89,100,108,102,89,106,106,94,103,102,95,100,103,109,107,112,92,103,107,101,113,100,105,115,106,100,103,114,107,91,99,92,99,114,96,104,83,98,110,98,110,110,104,97,103,94,98,109,102,104,99,94,96,103,110,100,100,92,110,95,105,106,98,115,88,102,107,98,109,102,99,94,102,107,103,95,93,102,112,104,93,117,111,96,93, +581.83905,110,110,101,93,96,87,106,98,102,108,102,93,102,98,125,128,112,111,101,95,83,99,111,101,119,89,92,101,102,106,103,106,89,101,97,109,110,95,97,100,94,106,85,89,108,99,109,96,104,107,109,101,83,101,105,102,102,98,102,92,100,111,96,96,105,83,99,116,109,99,95,114,99,115,96,100,98,98,112,115,108,105,105,105,102,93,104,102,109,115,103,112,98,109,95,106,116,107,106,113,102,105,104,105,104,94,104,98,104,103,98,105,108,112,104,101,110,97,100,110,108,98,107,100,105,106,104,93,116,110,116,118,99,115,105,109,103,99,122,114,97,100,102,111,106,105,112,95,93,97,103,109,105,103,111,98,101,104,108,113,100,113,106,136,102,94,106,98,92,119,104,96,100,105,107,89,108,117,97,114,95,89,106,109,100,99,109,87,107,83,116,96,104,107,107,108,92,99,118,102,111,100,102,92,109,100,94,104,100,110,95,112,107,105,104,95,106,112,101,100,102,94,114,101,104,104,105,105,111,103,90,116,101,108,103,103,94,115,125,107,103,100,113,97,106,102,103,111,104,103,100,107,107,100,96,111,104,105,100,107,88,96,110,108,85,103,96,108,109,105,90,107,74,95,101,99,109,107,103,108,106,103,103,100,118,105,102,103,100,114,103,101,102,114,105,97,111,104,100,109,109,108,109,108,97,104,109,109,104,112,74,94,105,109,107,97,97,104,109,109,117,97,104,104,107,95,97,106,111,130,108,101,100,92,106,112,109,110,98,100,126,105,107,102,91,115,110,113,108,108,100,102,103,106,107,100,109,104,100,109,105,104,99,102,121,112,107,98,98,105,114,106,112,101,93,94,104,105,106,106,122,99,99,107,109,99,103,96,108,98,107,97,97,114,107,99,109,106,110,118,103,135,113,102,107,118,104,101,107,105,90,99,113,103,101,110,105,101,104,100,111,87,117,118,100,94,107,101,108,102,114,96,115,90,113,101,104,110,89,113,109,97,115,102,68,103,102,106,110,106,106,110,118,104,100,102,104,105,105,76,96,98,104,102,102,112,107,105,107,95,97,108,111,106,102,102,96,99,107,95,99,101,109,92,105,108,100,104,113,110,99,109,123,107,105,94,108,109,98,127,98,88,104,104,105,111,108,104,104,94,107,98,103,105,138,102,115,109,97,78,102,100,105,97,106,105,111,109,106,105,94,105,106,84,110,122,108,101,107,111,95,113,99,109,106,101,118,104,99,118,105,102,99,108,99,112,108,116,99,106,90,103,102,104,104,104,95,105,95,102,94,101,113,105,106,109,103,106,106,120,114,100,107,98,110,103,101,117,102,113,101,116,113,115,119,71,110,97,97,104,104,109,107,96,104,121,108,97,103,103,107,101,98,117,93,99,91,110,94,104,95,95,101,95,97,110,101,109,103,105,92,101,94,105,106,105,110,97,104,87,101,111,109,117,110,107,98,102,95,102,90,99,109,104,98,112,106,100,95,99,107,113,100,109,111,97,114,97,102,101,104,105,104,97,114,110,101,108,107,110,106,97,113,102,99,108,104,113,110,117,105,94,105,105,102,112,81,105,107,105,102,97,111,99,97,101,99,109,96,121,105,97,111,96,106,92,99,103,109,98,108,105,115,113,104,110,103,99,105,109,103,112,100,101,113,126,94,100,132,100,113,98,108,111,103,105,93,101,99,90,110,109,112,107,106,108,106,109,119,113,102,112,105,97,121,111,97,101,89,105,112,103,102,98,123,97,111,105,99,104,100,102,114,98,101,110,88,103,96,103,107,111,114,117,117,122,97,94,103,112,105,102,106,104,110,131,109,115,113,118,111,96,106,102,116,92,117,106,106,101,107,101,105,107,103,99,109,102,107,98,112,97,107,106,107,95,98,104,108,112,98,102,106,92,101,107,102,88,111,109,110,100,95,122,97,105,106,119,98,73,95,100,98,103,105,102,98,118,111,105,113,100,113,113,100,108,104,107,100,103,108,100,115,104,97,116,100,94,88,104,106,118,119,105,115,87,102,106,88,107,106,105,104,104,97,102,139,88,94,95,112,79,110,98,133,106,96,106,105,113,103,100,84,100,91,106,71,114,109,103,99,97,95,101,95,113,103,109,103,103,95,105,112,100,103,106,120,101,110,105,105,113,111,102,105,105,96,113,110,112,99,116,91,104,109,100,112,106,114,119,100,92,98,105,96,107,92,100,90,93,104,104,106,112,109,103,90,113,81,113,108,103,99,90,97,112,114,104,117,82,108,112,103,103,112,99,104,105,108,105,96,113,112,108,106,104,117,115,106,103,113,119,108,104,111,116,107,112,96,107,113,112,109,130,136,130,114,138,155,136,208,190,233,212,270,214,204,214,196,210,207,174,167,170,147,183,122,142,138,118,135,125,106,99,105,106,121,120,90,104,117,119,111,107,80,108,111,107,93,110,107,95,101,117,113,120,103,106,116,114,107,111,107,107,96,110,109,104,101,119,109,114,120,93,104,101,101,113,112,110,105,115,109,102,116,93,107,107,99,103,104,99,106,99,106,99,96,104,112,100,104,108,100,101,100,119,96,96,98,104,109,75,106,117,95,118,111,120,112,107,104,108,108,126,103,102,105,105,105,107,101,92,108,93,112,120,103,103,104,96,105,120,105,97,110,106,107,108,109,105,110,111,102,115,101,113,113,102,105,102,99,94,105,99,95,111,106,110,113,102,104,117,91,119,105,107,107,117,112,109,102,113,104,92,103,109,116,117,102,107,98,106,102,100,100,96,92,87,115,99,98,113,108,120,105,92,100,111,107,80,99,76,105,100,108,111,102,103,106,110,92,99,97,98,90,125,104,106,102,121,109,113,107,106,108,106,109,104,102,115,99,100,110,105,108,95,100,111,104,107,108,99,99,108,105,98,88,92,100,108,104,91,110,109,101,102,101,132,103,113,113,104,110,120,99,111,98,89,107,110,105,108,99,108,104,111,106,111,113,91,110,108,115,109,113,108,101,102,98,111,96,113,113,107,111,102,103,94,106,112,120,117,120,101,106,100,99,95,109,108,114,101,103,90,104,108,103,93,113,105,91,115,105,107,111,100,117,108,99,88,98,100,111,112,90,104,104,107,107,106,95,96,101,107,100,107,101,106,126,98,113,115,123,105,106,110,106,105,98,95,101,107,74,99,105,98,86,96,100,109,107,103,102,108,110,124,111,103,102,107,110,95,108,94,100,109,115,106,106,99,105,104,102,110,114,106,105,111,113,110,111,104,106,104,101,109,98,110,105,108,96,98,104,108,100,113,90,104,104,100,102,102,94,114,109,107,101,97,102,113,101,113,97,102,111,111,107,111,103,114,110,101,111,109,99,106,119,98,109,103,103,107,106,97,109,102,104,108,110,103,95,99,96,109,98,89,105,108,114,106,110,126,100,92,106,103,109,101,112,100,108,111,93,109,98,98,105,99,109,101,110,99,91,101,101,95,103,96,119,99,109,116,101,114,115,108,102,112,78,107,111,110,113,108,108,111,101,101,107,115,111,106,102,100,102,104,101,112,104,110,121,109,102,109,110,131,108,115,105,102,80,106,104,97,103,105,95,109,84,107,102,108,106,105,108,99,136,103,101,112,113,116,98,109,101,120,112,106,88,113,107,98,96,109,100,117,111,113,114,102,103,109,112,103,91,104,111,99,101,126,107,109,105,117,113,108,107,104,102,96,107,103,105,93,98,100,101,109,75,88,102,90,102,112,104,109,111,108,110,111,104,99,105,113,121,102,108,90,116,92,102,92,112,105,103,108,99,108,98,107,128,102,119,110,106,107,105,99,100,102,103,113,102,98,106,98,106,104,105,114,99,116,104,99,106,107,105,98,110,102,103,111,91,83,106,106,98,93,99,95,102,106,103,98,107,103,105,102,106,92,101,105,106,111,109,111,107,104,78,112,112,106,96,93,90,107,100,112,112,98,104,103,93,105,106,98,99,106,99,104,114,108,109,101,109,100,100,112,113,103,103,93,103,113,98,106,117,106,109,87,98,142,102,102,93,103,107,104,117,107,113,102,101,98,101,110,108,98,96,102,93,116,126,95,108,92,101,105,105,107,91,99,95,112,95,110,118,90,118,110,121,99,94,102,105,135,105,102,114,102,104,99,101,99,86,98,96,93,98,87,104,100,107,111,111,100,87,101,110,99,102,101,107,79,100,99,104,105,93,112,96,113,106,79,94,105,116,106,119,87,91,99,110,95,106,105,118,111,102,106,111,102,109,110,97,110,110,114,95,106,102,100,92,108,103,98,86,96,105,113,111,113,108,115,104,108,100,98,97,102,116,109,109,108,108,102,91,107,110,102,84,94,107,108,109,109,102,105,107,109,109,96,91,107,97,93,100,100,125,94,101,98,100,94,100,111,97,108,100,102,110,105,101,102,105,84,102,94,100,103,95,99,107,110,128,107,108,104,113,105,96,97,105,123,100,112,98,92,104,103,109,106,112,79,104,105,99,106,104,96,97,101,90,97,95,98,100,101,97,100,75,100,107,115,109,104,110,100,92,102,100,135,97,106,95,116,98,88,100,109,95,95,110,99,100,115,101,101,108,118,91,114,101,98,102,101,113,109,99,76,101,105,113,100,108,94,115,101,107,108,101,101,103,115,112,95,97,99,102,104,102,104,98,110,111,96,114,106,103,92,103,92,109,95,107,104,105,102,95,98,100,109,92,95,101,89,101,101,103,102,98,81,106,93,92,111,92,113,116,106,102,105,110,106,103,108,119,108,121,95,98,112,107,96,97,94,101,95,105,99,109,93,114,102,113,103,94,99,113,102,107,95,101,104,96,104,88,100,114,93,112,103,101,89,75,105,104,97,106,111,103,101,116,89,101,112,98,95,111,92, +581.97998,104,100,103,108,97,109,98,105,102,95,90,108,97,117,86,104,111,117,102,114,111,111,100,113,98,101,90,108,103,101,116,103,97,100,105,106,106,96,106,100,104,101,122,95,103,100,104,115,106,111,102,117,111,80,102,103,102,110,95,101,113,88,104,104,96,130,91,100,93,105,114,107,104,102,108,100,102,96,103,99,123,94,95,107,100,102,104,113,98,100,88,99,91,109,95,101,105,98,99,95,97,109,99,118,105,102,110,108,98,101,100,103,106,113,99,105,96,110,87,72,99,95,123,109,104,121,96,100,113,102,101,100,97,111,105,110,107,85,96,112,98,103,100,93,118,101,96,93,102,97,91,102,106,99,105,98,94,97,110,110,100,128,103,102,105,98,113,125,102,93,100,107,92,108,105,113,103,96,95,95,98,107,97,104,107,94,96,97,122,109,97,106,99,105,108,109,88,101,101,114,112,109,88,108,90,113,92,102,118,104,93,102,107,109,104,92,96,96,99,99,103,77,100,105,112,114,111,113,105,99,84,89,100,118,119,99,110,113,117,111,99,103,112,113,103,105,107,118,103,125,114,101,95,111,100,113,114,95,104,109,103,118,100,105,95,110,107,112,97,100,106,104,106,114,116,113,105,112,106,104,117,94,112,111,99,97,103,102,102,98,110,92,116,121,113,103,96,113,103,101,102,109,117,112,96,99,100,100,97,111,99,107,112,101,106,117,103,110,103,111,94,103,108,121,108,101,96,100,111,122,112,96,105,88,113,107,102,102,96,132,100,105,100,93,104,102,98,106,105,104,108,108,109,102,106,110,113,101,100,112,104,103,95,89,94,114,107,106,104,103,112,113,114,108,117,112,107,96,100,106,106,129,114,108,100,96,102,106,116,113,107,87,98,107,110,106,105,102,100,108,102,102,106,110,98,105,103,104,112,109,105,103,112,89,100,109,87,98,106,102,106,115,94,100,109,107,90,94,93,114,103,90,97,112,106,107,113,100,97,97,103,106,103,110,105,113,89,101,103,108,88,92,99,113,103,103,98,113,97,111,108,99,108,99,121,116,117,109,120,111,110,118,115,104,105,102,112,111,106,113,110,114,106,103,95,96,103,106,110,106,101,102,115,101,99,113,100,92,98,107,91,104,100,103,120,117,84,110,95,104,107,107,102,94,104,116,107,111,98,98,87,98,96,103,104,106,114,109,110,105,101,97,118,103,109,110,114,104,100,110,105,104,98,112,107,95,106,107,99,100,101,106,117,106,129,106,99,105,98,101,109,106,101,106,93,106,97,100,109,96,100,101,97,108,113,113,117,104,87,108,111,113,100,98,102,109,109,109,97,110,113,107,92,99,118,110,100,94,118,103,108,100,115,120,102,90,105,113,121,103,99,93,105,96,112,115,110,104,103,107,116,120,100,117,100,104,105,100,99,101,111,95,104,103,100,111,111,97,100,110,105,115,99,101,104,115,107,107,103,100,107,106,95,105,107,113,112,115,115,103,134,106,109,105,103,111,118,92,109,104,111,106,119,96,102,104,104,105,103,114,106,111,110,109,105,115,98,100,111,106,99,99,66,107,101,101,107,116,104,101,113,94,109,109,107,112,100,93,105,82,112,112,105,99,117,105,113,99,99,92,110,113,107,109,106,106,110,104,101,113,85,98,95,100,103,108,104,100,106,102,117,106,103,113,121,102,107,101,105,102,115,104,100,114,106,112,108,94,108,98,102,105,100,110,99,107,90,99,106,95,96,104,105,100,112,111,102,102,117,99,99,109,114,106,94,102,110,109,99,104,114,109,102,110,117,109,118,111,100,110,92,107,98,109,102,106,108,108,103,98,115,101,104,102,109,114,104,103,100,99,102,113,91,116,104,107,115,106,118,119,106,98,95,105,96,101,113,113,103,113,91,112,100,107,102,110,94,103,95,102,112,94,102,98,99,104,103,97,98,112,111,103,94,97,105,106,106,116,108,112,98,108,104,104,99,105,109,103,104,107,105,99,99,105,101,117,87,112,103,113,103,123,107,106,105,106,107,111,103,117,106,99,117,102,91,101,99,103,101,102,94,95,114,97,100,85,105,103,109,101,103,100,109,109,117,102,106,96,110,103,107,109,102,118,105,100,84,72,104,107,117,116,98,108,117,100,91,105,97,94,107,102,91,111,107,107,101,103,99,98,109,107,95,95,112,101,95,100,102,98,94,105,98,98,99,113,102,106,94,107,93,108,97,97,94,96,113,97,97,87,107,97,97,114,101,104,123,99,96,101,97,105,105,97,103,109,103,104,106,101,97,102,110,112,101,117,111,103,110,106,97,102,96,97,113,97,87,103,107,108,107,113,107,112,109,104,136,135,140,153,135,196,178,189,225,205,202,237,174,194,159,189,200,150,164,134,123,119,96,108,113,97,110,101,111,115,110,91,83,106,100,102,99,99,106,105,104,92,117,92,112,117,127,108,115,76,94,109,97,98,109,100,99,110,99,110,93,110,112,117,100,100,103,85,106,106,109,104,121,105,106,118,112,107,117,103,107,81,99,105,112,103,92,109,100,101,105,108,96,109,113,118,113,101,120,109,99,104,83,104,103,100,95,106,97,109,113,106,98,107,122,90,128,112,96,97,108,106,91,103,101,112,112,98,99,123,105,111,106,110,102,110,115,98,110,93,110,99,108,93,110,101,106,81,106,113,104,120,99,112,114,92,109,103,99,108,96,104,109,112,95,110,105,104,112,102,109,98,99,99,105,93,107,115,102,104,104,103,106,104,109,111,102,101,108,103,95,111,92,101,99,113,88,112,97,102,102,109,105,98,118,96,98,106,91,110,117,113,98,97,116,113,100,104,101,98,117,117,100,112,106,96,108,117,116,101,103,114,104,114,120,99,120,112,102,115,115,113,107,117,98,103,121,107,112,103,114,111,113,107,112,103,112,108,108,98,106,94,125,108,106,104,105,116,99,109,103,107,111,103,99,119,111,94,95,110,105,104,104,108,108,103,106,116,108,103,102,113,107,106,110,100,103,111,111,110,103,116,109,100,102,106,112,102,108,113,111,92,99,98,103,99,93,102,82,108,112,106,121,113,113,120,108,100,109,99,111,109,98,106,102,113,111,107,98,103,99,107,87,121,112,111,93,104,105,103,112,103,99,116,85,75,97,98,109,97,103,98,110,125,120,101,108,115,94,113,110,97,110,109,106,113,103,107,100,95,108,107,98,114,109,108,105,104,102,102,110,105,111,105,73,110,107,112,116,111,104,100,102,105,109,101,102,106,101,106,101,109,114,99,80,125,108,105,110,108,100,103,108,99,113,116,95,113,108,119,96,107,107,100,85,102,106,94,117,96,109,125,107,100,108,106,95,106,105,117,109,110,106,105,105,102,99,103,93,102,107,104,115,104,100,107,109,108,116,104,123,105,105,107,100,98,104,103,108,114,116,97,99,102,99,118,100,93,113,121,117,98,112,94,95,98,105,98,99,102,105,107,114,107,101,99,106,105,120,120,111,109,98,122,108,110,98,101,101,115,118,113,105,109,107,105,105,109,103,103,106,101,112,116,100,89,115,103,103,112,107,95,120,108,98,98,96,108,106,106,106,103,109,117,100,104,104,104,97,95,105,110,110,118,97,108,112,105,74,117,104,97,93,103,102,104,111,100,93,103,103,99,94,109,116,112,96,112,109,99,91,105,110,105,106,95,116,106,107,98,121,105,103,112,102,109,97,102,104,106,108,106,102,105,112,106,101,101,107,100,100,108,96,116,121,105,104,100,107,92,110,103,117,103,108,107,117,108,113,105,109,101,96,108,115,95,113,108,100,114,131,100,107,105,108,112,102,105,93,106,96,113,111,111,96,109,114,104,107,105,117,104,109,115,113,101,103,103,102,100,109,119,113,111,99,117,97,92,102,113,109,94,113,97,113,98,111,94,112,79,94,99,107,117,103,96,90,115,102,105,101,116,98,106,103,118,91,116,102,90,101,104,107,113,109,103,102,116,113,102,106,102,114,103,99,123,102,106,103,116,101,98,102,99,106,98,99,117,108,103,108,99,109,117,100,110,116,97,101,108,104,98,111,108,116,100,109,103,103,111,108,102,109,123,103,112,100,98,109,111,107,100,99,113,101,100,100,92,121,100,96,104,104,121,107,113,100,92,102,106,118,120,106,110,106,115,113,103,104,122,104,114,114,100,118,113,105,106,106,113,110,112,104,107,108,97,111,101,99,105,105,101,111,100,97,94,110,106,107,101,98,105,101,102,100,102,117,103,106,101,101,105,93,105,95,105,106,111,102,99,97,118,98,102,111,100,103,99,109,105,110,106,99,114,109,99,113,108,110,104,111,123,102,108,101,108,110,105,99,101,104,105,103,109,112,108,110,92,101,104,112,109,101,100,108,97,105,98,105,96,104,104,108,106,114,114,98,108,105,101,96,93,108,115,109,115,111,104,106,94,120,99,113,114,105,106,107,113,124,89,98,112,105,96,107,108,110,110,102,104,107,101,102,109,101,100,94,110,113,115,105,108,95,92,109,112,86,113,104,106,101,94,96,99,98,92,104,103,107,85,112,104,96,97,104,99,113,119,102,99,106,99,108,109,98,106,91,98,93,112,94,108,100,94,106,103,101,110,123,105,111,99,110,104,98,99,105,108,108,99,94,106,104,92,103,95,95,120,126,111,110,109,109,113,117,99,108,103,106,105,94,108,100,105,105,97,95,102,92,86,108,95,98,106,99,124,109,102,116,98,104,106,104,110,103,105,104,105,111,113,91,91,111,101,102,100,102,102,104,102,98,111,95,88,112,94,101,106,111,101,103,101,106,120,109,111,89,106,97,95,83,102,112,83,96,102,93,106,112,108,101,107,106,88,103,103,101,89,106,73,128,117,109,90, +582.12097,101,102,107,100,119,116,110,105,104,98,98,104,103,109,112,95,95,117,111,115,108,88,99,108,109,104,109,101,101,105,107,101,99,96,111,96,95,112,105,99,134,93,100,95,102,71,133,90,103,91,109,101,116,112,116,109,110,98,109,99,106,107,95,91,117,103,104,105,112,97,99,103,103,108,97,119,98,110,102,113,109,109,104,104,104,108,83,115,120,107,103,98,117,92,97,105,98,104,101,95,103,99,78,101,102,98,99,114,99,101,94,96,115,115,130,103,94,100,114,99,98,93,108,106,108,114,103,105,98,106,103,102,89,112,103,104,100,100,102,106,100,102,106,100,106,95,119,100,93,103,112,96,111,97,112,98,113,98,117,112,95,109,109,101,107,98,111,113,110,109,105,106,106,104,109,108,102,89,115,105,99,108,105,108,107,95,88,96,108,101,106,117,94,104,104,110,99,100,115,98,108,102,97,111,96,110,101,105,113,118,100,109,104,104,121,103,114,107,108,82,113,103,106,103,99,110,104,137,100,109,99,111,77,115,111,112,115,104,103,109,100,102,101,115,101,95,92,103,106,124,111,103,104,98,103,100,107,120,103,108,94,119,117,102,87,107,102,114,111,93,110,108,101,99,116,107,108,97,116,105,101,105,88,110,115,113,97,103,95,98,95,109,110,94,107,112,111,99,110,95,93,107,113,114,112,114,105,105,106,123,103,111,105,116,107,79,104,109,100,101,105,92,101,118,108,109,101,102,108,102,105,104,99,109,111,106,99,103,98,106,102,96,107,95,104,101,102,113,110,111,105,110,97,106,109,107,103,91,99,105,104,118,105,107,100,110,108,110,106,123,110,101,106,112,112,98,110,113,94,103,106,101,89,107,100,95,104,105,109,97,101,64,96,105,100,108,96,114,114,106,100,95,92,98,103,93,110,108,95,95,103,92,116,96,109,103,96,108,99,101,105,113,105,98,102,83,103,92,110,121,105,109,108,114,101,96,102,109,95,108,99,111,109,99,106,105,107,99,97,102,114,110,109,119,98,109,103,116,103,102,99,111,111,105,110,113,96,108,111,104,108,99,99,106,106,90,103,117,104,112,108,105,120,106,96,113,114,109,105,102,121,113,103,104,107,93,91,108,114,115,111,103,106,99,92,104,99,95,130,102,121,105,107,108,110,114,105,95,112,102,103,103,108,112,98,96,111,104,99,107,105,108,107,102,101,114,111,97,104,119,104,100,107,108,111,103,122,90,100,111,99,94,108,101,101,97,105,113,107,87,113,123,113,99,94,99,104,92,125,117,78,108,101,112,109,104,96,102,98,114,109,102,111,94,119,104,103,111,113,109,103,110,101,111,107,107,94,95,104,98,103,116,104,105,103,96,98,107,112,100,97,91,117,97,103,92,91,110,99,110,112,99,104,100,77,102,92,109,115,96,105,115,110,99,90,116,95,103,99,87,99,104,103,92,122,104,99,99,101,118,95,104,105,94,91,114,106,114,96,116,104,108,94,97,97,91,107,100,115,108,103,107,106,121,110,106,84,98,96,117,102,115,104,107,93,98,105,104,106,105,100,109,108,107,109,98,104,105,104,103,126,108,100,100,112,113,107,108,90,100,96,104,105,106,93,114,99,104,97,102,109,100,111,116,99,98,100,100,103,107,109,111,106,101,99,115,102,107,103,105,107,106,95,104,88,104,115,104,101,114,105,109,99,104,106,81,94,101,104,100,106,118,109,104,97,99,101,115,123,108,105,104,110,106,100,104,103,112,104,98,104,103,99,110,108,78,107,101,98,107,107,97,98,107,100,101,96,103,87,107,104,113,98,106,106,119,104,113,115,118,111,106,94,98,114,117,120,105,106,115,97,111,107,117,95,116,115,98,104,105,101,104,104,109,103,112,95,106,107,114,93,114,110,126,112,103,102,98,93,100,122,105,116,102,96,100,79,105,102,113,113,102,94,105,107,94,102,118,99,108,109,105,105,108,98,106,106,88,97,108,106,103,96,118,95,98,111,111,106,110,102,110,105,109,109,92,101,113,98,108,134,116,98,101,103,101,95,106,103,97,105,96,110,107,101,107,98,105,101,107,95,103,117,106,101,117,105,98,101,109,96,117,108,113,112,104,99,125,103,108,108,104,103,99,104,102,106,99,117,111,116,81,105,105,109,101,102,100,99,109,108,94,104,98,108,110,107,98,102,93,101,106,102,104,102,105,97,105,94,104,86,115,102,102,104,101,115,96,100,99,102,109,100,106,107,101,105,98,105,109,102,102,108,104,114,117,103,116,99,103,102,116,97,105,107,122,111,87,94,108,112,109,103,94,108,107,100,105,113,111,108,114,115,102,123,102,110,133,133,163,183,191,201,222,215,219,189,209,202,194,218,197,200,151,151,152,149,130,134,106,115,112,118,112,131,113,119,110,117,107,120,108,96,104,107,131,107,120,107,102,105,104,115,109,112,96,105,71,104,117,112,119,108,97,98,98,104,91,124,82,116,98,122,119,90,112,101,104,91,96,108,124,109,113,83,95,105,113,108,100,95,99,113,73,106,97,113,84,106,98,110,95,102,100,98,106,102,101,110,95,105,98,95,97,101,97,105,112,111,107,113,91,114,117,99,99,131,92,115,123,114,106,111,91,102,127,88,97,69,101,108,104,124,124,110,102,96,107,104,105,103,105,102,109,112,113,116,109,112,102,111,97,101,100,112,105,113,114,105,99,105,112,103,122,123,104,116,94,98,100,109,100,94,85,117,116,104,82,106,94,117,106,102,105,87,101,117,107,105,116,113,112,95,119,112,102,120,101,104,105,119,104,107,102,102,93,113,105,113,110,98,99,104,112,105,89,103,125,103,108,100,102,105,109,102,102,98,114,99,105,112,98,114,93,96,107,114,97,102,104,103,103,123,103,99,117,102,89,103,102,105,107,114,101,101,111,115,89,107,104,92,110,103,111,100,100,114,126,96,108,93,87,103,98,117,97,107,97,104,110,114,107,101,112,105,98,104,111,117,121,109,106,105,104,96,110,101,102,105,102,88,117,108,96,103,95,123,107,116,103,111,100,117,94,98,111,97,95,114,105,99,125,105,100,108,107,109,94,99,104,102,91,112,110,106,118,109,105,98,103,110,106,100,112,103,107,99,107,108,106,100,113,109,108,107,103,94,105,110,104,104,109,105,103,109,109,107,110,125,109,102,116,105,95,114,112,101,104,110,112,110,84,94,113,90,100,97,101,111,97,109,103,106,106,111,104,112,116,105,96,106,107,102,99,100,123,99,109,104,103,102,99,107,117,102,104,110,106,105,102,111,107,109,96,104,109,111,99,101,94,104,110,108,98,97,104,108,109,112,98,106,122,109,101,123,98,97,94,100,107,105,90,113,104,112,99,110,107,113,98,96,108,112,128,99,106,100,102,110,132,99,95,87,105,102,105,97,111,111,102,115,112,87,108,87,91,97,96,100,101,110,100,104,104,88,108,101,98,101,112,112,106,107,111,106,98,109,106,100,101,101,106,105,95,95,105,104,107,104,105,100,110,103,106,114,106,104,107,103,99,91,104,110,112,96,107,102,101,120,106,109,117,98,107,109,108,100,109,110,108,99,99,102,96,107,96,117,93,100,113,101,95,118,94,108,100,100,107,94,116,94,106,105,98,106,105,106,113,104,102,113,107,99,101,107,121,90,103,107,103,113,104,113,108,113,103,104,113,113,98,101,107,100,107,102,109,104,104,98,109,98,108,99,103,107,97,109,102,102,109,109,92,104,112,105,105,111,105,103,110,80,116,106,120,112,118,104,110,97,105,109,118,101,110,114,99,116,95,106,114,101,97,110,101,103,110,99,107,104,100,97,103,107,116,106,112,103,95,111,91,100,112,110,104,102,90,113,95,100,108,105,123,93,101,116,104,109,102,103,78,103,116,104,104,85,100,109,109,106,106,103,110,113,114,104,100,106,107,96,98,107,113,88,96,102,109,111,106,114,118,103,103,100,95,113,102,103,111,113,108,100,103,109,112,109,102,120,87,108,111,105,101,109,102,115,101,105,118,109,101,108,94,104,117,100,98,102,109,91,91,126,107,100,91,111,120,104,127,101,97,108,108,108,104,103,76,100,120,99,98,108,89,102,103,116,100,89,110,102,106,94,115,108,108,103,113,98,108,94,110,113,106,101,98,101,102,94,111,96,112,106,116,100,111,102,100,111,96,115,107,113,108,102,95,117,116,98,119,106,95,110,103,102,100,103,116,95,105,95,106,93,113,112,104,104,106,100,95,88,109,105,117,105,99,105,103,100,110,100,115,108,108,110,105,98,98,113,98,111,110,100,100,93,106,102,98,88,105,94,98,101,116,105,110,101,124,91,125,121,101,101,105,99,109,108,95,121,109,98,95,103,106,102,139,114,116,100,117,113,99,99,104,100,110,100,117,98,102,109,108,112,111,111,102,97,104,111,103,109,97,97,103,105,95,107,96,109,117,98,96,94,90,99,106,105,111,96,111,101,93,76,101,105,103,84,98,95,111,103,110,101,90,104,108,102,102,102,102,97,113,98,106,108,111,100,101,102,86,98,108,91,104,100,116,113,110,92,104,96,104,100,104,93,105,95,107,109,104,107,98,111,105,112,79,111,106,110,103,109,95,93,95,111,117,92,104,111,96,94,102,101,98,98,99,102,94,114,105,92,108,97,113,81,107,108,103,96,96,111,91,102,73,105,104,107,102,116,96,97,95,102,99,99,99,94,108,94,98,104,106,98,100,110,93,103,103,113,99,121,116,101,110,101,82,95,102,104,112,112,104,112,102,100,111,113,108,83,115,106,106,108,95,88,122,109,107,105,105,106,96,100,113,108,107,103,101,87,116,106,105,108,103,102,92,109,103,113,104,104,100, +582.2619,132,102,99,100,102,104,101,100,125,100,113,103,104,125,97,101,105,117,91,111,96,105,120,98,106,96,110,103,101,110,115,104,79,91,100,107,96,106,103,96,106,94,99,123,103,96,93,112,102,105,105,102,98,100,106,92,103,109,104,119,109,117,114,94,107,107,112,105,109,109,117,98,100,99,110,113,106,95,102,96,102,103,120,108,106,99,98,105,109,100,112,109,96,100,101,98,112,94,107,131,85,104,98,111,110,95,102,103,87,111,98,104,100,105,101,93,103,105,100,98,109,100,105,101,119,104,99,99,104,95,95,100,100,103,113,103,103,101,105,108,102,111,98,96,101,99,104,99,106,99,108,108,105,94,127,93,101,109,100,126,106,91,105,113,109,97,111,125,103,103,114,104,98,104,107,105,108,111,110,112,109,111,98,105,97,112,97,104,122,115,112,100,94,103,118,111,105,107,114,108,116,98,99,112,108,116,102,93,111,120,96,108,99,102,98,113,107,100,110,102,106,111,113,100,110,112,96,98,98,105,90,107,110,103,101,102,106,108,116,87,99,109,115,110,95,99,88,120,98,95,107,105,108,113,110,111,107,113,104,107,99,112,104,105,108,104,114,98,117,118,110,108,123,106,121,109,107,110,100,102,114,106,97,103,105,106,112,126,107,119,116,110,110,107,106,109,78,71,113,101,110,100,103,107,99,105,107,108,108,113,85,123,105,103,107,108,117,105,104,114,113,116,105,112,106,104,100,102,97,114,105,99,113,104,96,110,101,121,102,102,104,100,107,103,118,99,104,104,117,109,103,102,112,94,106,92,116,114,97,103,113,109,106,101,101,96,95,99,93,112,110,110,110,99,101,109,102,91,97,103,105,102,99,113,100,105,111,110,95,107,121,96,106,104,99,104,97,97,107,112,118,112,109,105,103,101,99,99,99,99,106,107,116,104,102,108,105,96,110,100,103,104,99,103,102,92,112,93,100,103,97,113,107,100,101,104,105,106,103,105,102,93,102,90,107,110,102,82,101,111,103,103,98,112,109,110,108,109,106,101,94,109,102,112,115,108,122,99,119,101,104,98,109,103,99,100,107,106,105,114,106,112,110,95,98,101,81,103,107,111,105,120,111,110,90,121,95,104,107,100,107,114,107,98,96,98,105,110,110,117,116,126,90,109,106,113,109,101,120,105,128,106,111,121,92,101,88,107,96,107,107,103,95,103,94,102,103,110,104,110,100,113,105,98,116,111,109,111,107,100,123,99,103,118,96,106,110,98,113,118,105,99,101,115,109,105,102,99,107,106,108,99,108,109,115,107,106,113,105,109,103,101,117,102,104,100,104,104,115,100,107,109,87,106,108,107,96,98,96,95,101,113,112,113,105,103,99,104,100,100,98,101,107,116,110,98,106,104,110,109,105,98,112,71,100,104,111,112,106,110,99,113,105,107,98,107,103,114,108,104,100,98,97,98,106,101,103,107,114,112,102,99,111,101,106,109,107,98,103,102,101,103,103,103,89,89,108,105,90,113,105,121,115,111,98,113,101,102,108,107,101,103,106,95,101,96,126,110,98,113,92,98,98,109,104,104,100,117,108,101,96,109,103,100,99,97,115,106,95,99,108,107,107,84,108,103,101,116,108,104,100,92,114,118,111,107,99,100,104,108,111,117,102,111,106,116,104,104,102,124,101,127,99,91,112,106,103,110,101,119,104,97,103,109,91,117,111,106,118,106,109,111,110,101,100,106,97,108,101,106,116,100,102,110,107,112,102,117,107,106,104,113,87,117,104,117,103,111,108,116,104,109,106,114,106,105,85,89,96,106,103,95,107,111,107,100,105,104,98,101,114,92,103,117,80,114,102,99,104,100,103,113,112,107,113,106,101,113,107,99,105,126,114,112,99,102,104,111,98,108,99,116,116,106,103,99,103,109,106,106,113,109,101,98,103,102,102,102,110,93,105,95,114,106,98,111,90,111,122,104,110,101,104,105,110,99,117,106,121,102,112,102,103,105,104,105,122,112,106,119,104,115,104,107,92,96,95,106,106,99,112,111,105,96,113,84,94,104,105,102,106,95,110,96,98,96,71,103,102,102,105,106,106,108,111,106,107,109,102,108,95,114,104,104,93,109,105,109,111,98,119,105,109,113,111,101,106,101,99,111,109,141,107,90,94,102,90,101,107,105,107,98,111,92,110,101,110,106,112,98,107,107,99,104,112,112,100,107,104,114,101,109,112,104,99,107,104,107,107,106,111,102,110,105,107,108,99,109,111,105,104,98,102,90,107,108,102,102,99,108,109,111,99,111,108,114,104,99,103,108,109,110,132,95,134,110,104,129,106,106,106,105,116,117,119,115,112,142,133,158,197,223,186,187,218,201,216,216,208,192,163,193,148,154,146,150,115,115,131,108,112,103,117,125,112,104,110,95,108,112,103,98,118,78,111,110,113,111,104,103,111,110,107,106,100,110,95,102,107,94,109,111,108,107,113,108,106,114,113,114,118,109,100,102,111,99,79,110,107,123,107,107,117,107,108,105,102,103,102,110,110,109,91,101,109,108,67,110,104,99,108,117,98,101,115,128,121,99,99,105,104,92,105,109,107,106,113,106,106,102,111,100,117,119,85,107,107,113,110,105,103,101,88,112,110,104,112,109,127,91,100,104,120,107,106,118,111,99,104,113,115,106,103,113,112,111,115,78,114,110,107,100,117,110,99,115,106,107,109,116,103,119,102,118,117,104,103,102,107,106,114,110,96,90,111,106,106,89,115,94,113,113,111,110,111,102,103,103,113,106,103,108,107,123,93,114,114,115,105,107,107,105,115,100,110,120,91,109,106,104,103,112,78,113,108,115,104,111,108,112,87,108,111,117,119,106,113,114,93,112,119,108,98,114,117,107,116,102,100,116,118,106,121,112,113,103,117,100,115,93,110,116,95,114,111,115,116,111,91,110,101,91,103,105,112,114,115,132,110,105,109,93,106,105,105,115,111,113,109,106,105,92,99,94,106,119,116,119,108,109,107,104,102,101,99,101,106,108,105,118,112,109,118,105,111,109,131,112,117,108,109,105,97,103,108,107,108,114,113,134,122,99,108,111,120,110,108,113,105,102,106,116,99,106,102,114,88,111,106,114,106,107,109,98,106,112,106,105,102,96,99,110,113,108,106,106,113,101,111,94,110,99,104,115,104,99,112,111,117,79,88,96,103,111,109,102,89,100,108,98,97,107,105,117,95,110,110,109,99,106,103,111,117,122,100,100,97,114,96,112,102,104,115,110,120,106,99,108,116,116,99,105,99,109,97,107,109,94,121,100,119,102,113,113,110,117,107,96,100,115,99,109,95,115,114,119,104,113,109,112,107,93,115,110,103,102,105,102,117,113,104,87,113,131,112,125,120,124,115,112,97,75,108,131,108,107,119,109,102,108,105,104,119,102,92,105,125,106,111,111,109,117,122,102,109,115,105,102,109,113,114,109,115,97,102,106,110,115,118,101,111,108,89,106,102,113,115,116,107,109,115,118,105,113,116,100,105,107,108,108,105,115,106,107,114,104,126,69,115,132,120,111,102,119,105,106,113,103,104,113,101,97,113,103,100,113,109,110,106,98,95,109,112,106,111,100,103,112,113,117,106,110,112,117,106,108,87,106,102,112,112,116,116,102,110,102,113,105,116,127,106,118,112,114,105,103,99,107,116,99,107,115,117,108,107,112,106,112,106,105,105,126,95,117,117,104,106,108,94,113,106,107,99,108,107,103,121,101,110,107,109,99,106,103,104,99,95,97,108,116,101,110,115,106,101,106,108,106,99,112,114,110,113,104,108,109,102,103,108,113,94,112,90,101,112,119,104,109,114,105,117,107,111,116,108,107,111,121,103,99,113,107,100,109,102,99,107,114,101,121,100,109,111,96,119,103,115,98,99,111,103,107,116,111,105,131,117,106,119,107,104,128,106,106,99,102,108,103,106,102,106,106,112,100,99,103,106,109,103,109,109,108,106,111,107,103,107,114,108,101,110,92,102,115,116,106,113,109,106,105,112,112,98,103,112,103,99,104,112,121,112,109,110,104,107,113,110,94,111,102,108,106,106,111,106,113,105,114,94,110,107,108,123,125,106,122,111,103,96,117,117,108,108,106,112,102,98,112,108,104,111,103,106,88,97,109,115,106,113,102,107,107,106,105,110,112,108,112,114,103,123,101,109,103,111,119,116,113,116,107,107,101,124,99,105,98,123,117,102,111,103,99,108,99,104,105,111,104,103,97,99,101,115,106,111,107,107,87,107,113,105,120,108,108,99,109,102,100,104,102,111,103,119,109,114,117,93,100,110,109,103,121,110,95,110,96,107,109,103,90,120,104,110,110,99,106,103,107,110,109,119,106,123,109,120,129,107,98,109,105,108,106,95,108,85,103,104,99,108,107,111,110,102,97,112,103,72,97,99,99,109,112,113,106,106,89,104,107,112,101,96,118,108,119,112,122,100,96,108,110,88,111,103,114,101,117,95,103,103,100,110,102,65,102,96,119,89,106,84,106,107,115,106,102,95,103,106,111,99,129,109,106,109,110,113,107,105,112,109,101,103,101,95,108,121,99,98,104,102,106,88,107,109,110,119,119,115,122,103,101,112,104,93,106,110,111,100,113,107,123,99,103,106,102,103,100,107,112,102,97,100,83,98,109,102,111,115,128,125,98,107,97,110,109,99,101,103,100,109,99,102,108,97,90,95,121,109,110,95,105,114,102,101,107,100,107,102,107,104,106,103,104,102,103,102,109,105,105,105,96,116,100,110,98,108,107,92,93,99,106,84,103,108,99,115,104,103,82,96,111,101,105,95,111,107,98,103,103,112,111,91,89,109,99,124,102,100,104,119,109,106,110,126,100,106,112,108,104,119,99, +582.40289,98,113,98,75,99,104,104,125,99,112,90,87,104,94,103,87,107,89,116,132,111,92,110,119,94,104,118,114,105,123,113,96,106,110,104,102,112,92,109,112,104,94,115,105,102,109,115,101,101,102,95,102,96,91,114,110,95,103,121,102,103,106,106,89,100,97,115,99,103,117,120,117,105,101,108,112,112,113,106,119,93,102,101,93,97,102,92,98,84,96,102,96,105,101,93,100,108,90,109,102,111,105,95,100,113,87,89,105,100,120,113,106,100,90,105,96,98,97,99,99,100,101,95,112,89,99,102,100,101,109,100,107,95,117,105,94,110,108,112,96,100,114,100,106,104,100,95,101,104,113,99,99,103,109,96,100,98,126,105,105,112,104,105,104,104,101,92,102,98,100,100,113,109,104,103,102,101,92,100,106,103,106,122,99,102,101,100,107,99,93,97,101,96,95,95,104,106,117,130,100,114,105,106,103,96,110,100,104,110,121,94,112,107,111,98,96,98,103,94,109,106,102,105,109,96,110,104,102,100,103,94,115,94,109,106,100,102,103,110,103,104,108,96,108,119,86,94,102,103,137,103,102,103,100,113,113,95,113,72,109,114,103,98,103,93,112,103,105,90,110,109,102,117,108,104,99,98,106,104,100,64,83,111,100,94,108,97,95,87,97,101,112,109,111,107,104,107,91,108,104,109,108,100,107,91,116,106,102,105,102,102,104,102,104,101,106,108,101,112,106,100,105,109,110,102,108,108,81,119,110,106,103,103,109,103,106,106,103,102,102,94,102,113,95,108,101,99,107,98,106,104,100,103,105,103,103,101,99,90,100,102,100,95,112,109,95,111,82,91,101,116,99,106,97,96,94,106,104,102,104,112,109,109,101,99,87,90,104,106,98,104,93,109,106,103,109,98,110,101,108,108,105,100,100,110,111,115,106,97,99,104,98,95,107,104,112,100,103,108,101,101,103,113,108,106,91,101,96,99,114,96,120,95,107,104,109,97,120,126,100,108,99,98,102,106,110,106,117,86,111,91,107,91,107,104,103,99,104,100,95,109,94,125,105,109,125,114,110,121,100,111,112,98,102,106,112,110,121,90,105,103,108,112,102,106,93,99,110,98,96,108,112,105,105,98,102,101,100,114,105,107,113,110,91,99,106,97,105,96,101,115,108,107,100,99,105,94,93,111,108,103,113,109,112,105,97,108,110,88,108,111,99,105,122,99,102,110,97,109,114,99,108,110,92,92,104,108,108,117,114,111,102,101,100,95,104,112,112,100,94,114,106,103,121,105,104,98,100,107,109,96,101,105,103,107,103,101,100,109,102,106,103,98,107,117,103,114,116,99,99,105,104,98,109,106,103,107,108,103,94,102,101,107,110,96,97,102,113,108,91,100,89,115,111,96,107,98,99,106,105,105,102,115,99,112,112,105,102,105,111,100,104,104,102,76,109,105,100,111,97,106,91,93,103,93,111,107,100,105,113,101,109,97,103,105,97,109,118,101,76,94,104,102,108,108,101,100,96,108,113,107,102,109,108,101,99,109,99,123,106,103,96,99,97,90,89,103,106,112,86,105,110,92,111,121,100,101,105,93,97,111,95,114,99,106,124,109,88,88,103,103,118,103,101,101,103,96,107,120,96,97,120,97,99,93,105,86,101,101,120,103,117,100,96,108,115,88,103,116,109,116,110,80,114,99,112,109,95,93,108,109,104,101,109,108,98,111,97,104,113,96,100,101,106,102,103,95,105,107,99,109,92,111,102,103,89,96,104,98,99,98,100,108,112,106,100,102,104,97,117,125,103,104,107,91,105,103,106,113,105,93,103,99,107,111,109,76,110,107,104,112,95,107,101,84,103,106,99,104,113,115,104,104,107,116,104,93,99,101,109,108,106,106,104,106,116,114,105,107,103,94,100,96,86,126,96,123,109,113,89,96,116,99,109,99,109,104,109,108,90,105,84,104,121,102,106,98,101,99,95,106,105,103,106,95,101,113,102,103,94,107,99,118,104,105,100,91,103,102,93,106,107,111,109,110,105,101,107,106,91,99,107,102,113,92,106,104,111,96,104,100,103,106,107,108,108,101,106,111,95,103,98,105,108,108,101,102,104,113,94,112,99,105,123,102,116,114,107,113,100,104,100,107,118,105,108,110,98,87,106,105,93,106,104,83,99,114,103,105,94,115,99,105,91,110,96,99,103,100,99,106,99,101,98,107,91,72,109,102,107,107,106,106,102,97,95,99,101,116,104,98,105,117,112,92,98,101,95,112,125,104,96,102,93,118,107,98,115,101,97,92,103,103,106,103,106,101,110,102,106,102,102,99,109,114,106,107,95,108,130,115,110,109,104,122,118,128,130,144,163,167,197,185,200,228,212,209,221,206,191,159,183,157,145,169,159,145,127,123,116,90,98,114,77,94,113,120,102,117,107,101,114,97,104,102,98,110,109,97,94,116,113,104,98,102,111,107,107,118,113,104,104,103,101,100,102,111,105,113,102,102,105,99,102,107,109,102,99,113,104,98,117,104,122,107,106,109,101,97,100,102,107,94,110,119,110,98,102,106,97,110,115,109,81,82,107,92,111,99,101,101,104,90,110,114,109,96,105,112,106,107,110,119,109,104,107,113,107,103,98,80,92,111,95,111,111,103,107,97,92,112,98,105,110,74,100,106,114,107,110,116,109,103,98,107,104,114,120,107,105,102,104,115,127,94,105,100,112,110,115,120,100,103,103,106,117,101,120,108,106,100,122,108,101,109,105,115,108,108,98,108,106,111,103,107,109,109,103,106,109,105,113,109,104,104,123,113,107,101,112,119,89,122,95,114,101,105,104,112,103,109,116,115,110,116,99,100,109,109,118,119,108,112,108,108,112,106,109,110,106,111,101,107,112,100,96,108,113,97,109,119,106,104,108,102,107,109,103,95,108,100,104,103,104,102,113,113,107,107,96,102,104,101,112,107,104,95,109,105,112,95,115,101,104,116,107,111,80,105,100,112,105,96,125,110,104,84,112,107,104,109,68,99,106,98,85,101,105,98,105,104,100,107,98,108,90,108,110,107,96,110,99,116,111,96,92,106,103,107,120,109,109,114,109,94,98,109,109,96,96,103,112,100,96,111,107,106,118,100,106,102,104,110,113,114,99,111,110,104,101,101,98,119,114,119,102,106,96,120,105,113,104,95,116,91,111,102,110,101,107,111,103,113,102,99,101,105,108,113,116,102,113,100,105,96,109,103,99,105,100,105,109,104,112,102,102,106,102,107,110,99,109,103,109,108,96,109,100,106,102,105,83,108,111,106,100,117,113,108,117,109,106,102,107,100,110,99,100,105,100,109,98,99,105,82,108,107,104,107,98,119,105,95,102,77,108,97,104,107,96,103,100,107,109,105,109,97,108,110,108,100,112,96,100,100,107,104,118,101,108,103,109,111,93,94,94,117,107,112,95,112,113,98,98,113,107,98,108,108,102,124,105,99,100,102,107,98,116,103,99,105,120,100,117,110,107,102,99,101,110,109,103,106,106,106,109,103,113,99,106,105,99,105,108,116,123,97,109,104,108,105,94,101,121,94,114,96,103,104,101,96,117,114,99,109,94,96,82,109,102,92,109,108,93,104,111,112,102,102,109,113,109,110,98,103,102,102,97,103,112,112,107,112,115,98,112,109,99,118,99,102,103,114,123,100,102,106,119,106,109,116,85,98,110,92,99,102,94,108,97,107,111,109,103,118,109,117,106,108,119,96,117,98,93,112,108,114,114,99,101,107,107,108,110,104,103,113,121,111,100,100,108,91,105,108,117,88,110,111,96,113,109,114,109,105,105,108,109,77,100,98,92,101,112,95,100,105,98,119,102,106,106,101,108,102,110,100,99,71,99,108,93,114,108,106,101,99,102,101,113,108,103,112,103,109,86,109,105,106,100,103,99,102,110,106,93,103,115,99,90,97,111,106,107,107,100,98,105,102,103,115,102,89,107,110,101,104,108,100,94,106,105,107,109,103,107,99,109,102,118,108,106,111,109,105,105,114,102,95,102,106,112,103,103,118,107,109,86,109,96,127,117,107,120,103,106,101,108,112,107,109,121,95,102,107,117,109,118,113,99,100,96,108,105,106,107,117,101,111,98,100,101,97,103,110,108,106,112,104,111,104,105,104,101,101,96,116,106,105,102,91,110,101,98,108,106,102,121,109,113,120,110,106,111,103,107,117,110,106,112,115,129,105,121,87,107,85,106,110,105,99,111,115,101,108,103,101,110,114,104,105,110,114,123,108,101,114,106,114,102,104,110,109,95,107,104,119,105,103,114,110,109,116,113,108,112,106,110,107,118,98,91,106,94,108,105,102,110,103,94,106,108,106,103,115,110,102,103,109,114,110,121,103,102,118,97,102,122,111,87,101,93,112,103,111,108,104,84,114,106,108,111,97,108,106,103,95,93,97,106,102,109,100,106,93,102,98,104,113,108,103,115,109,111,94,109,91,111,99,113,104,108,100,116,98,121,95,96,112,103,106,64,102,120,120,99,107,105,112,108,109,111,94,91,111,100,101,115,88,96,111,96,117,105,127,105,102,105,111,99,94,100,117,105,105,103,102,117,105,95,108,105,83,111,111,105,107,111,117,103,108,102,101,105,113,106,120,98,99,106,92,101,98,102,103,111,102,104,105,91,101,94,95,111,107,98,105,103,108,99,113,98,113,102,124,97,120,103,79,115,102,116,97,110,96,95,117,108,126,96,108,100,103,99,109,100,103,92,102,112,93,113,109,102,105,109,108,108,100,106,100,92,103,111,104,98,106,112,105,111,120,116,100,103,111,102,114,101,103,88,106,104,99,104,87,103,103,117,121,90,112,94,109,102,76,108,108,108,93,106,109,95,106,101,94,104,120,109,93,108, +582.54388,108,105,108,90,101,111,120,90,104,103,119,112,111,109,103,104,103,109,96,117,114,101,95,101,94,97,98,95,99,95,112,94,104,107,117,95,105,93,108,103,86,109,96,100,100,118,103,98,103,113,103,110,98,98,111,99,109,100,106,68,97,117,110,99,104,113,98,100,116,100,92,114,98,96,110,109,90,104,114,70,91,99,114,102,87,99,90,100,108,101,111,108,118,103,88,118,105,110,105,104,119,106,117,112,94,107,101,105,112,100,103,111,103,96,96,96,108,100,106,119,112,106,107,132,104,90,99,108,106,93,107,114,78,100,115,107,99,105,116,91,102,89,98,105,98,91,107,107,82,105,102,106,108,94,84,98,100,101,106,106,86,104,115,100,101,107,100,100,99,104,94,107,103,103,109,109,98,96,102,111,101,128,102,103,99,114,113,98,101,108,98,114,98,97,97,131,84,96,102,103,79,99,100,102,103,102,110,108,116,103,105,109,109,113,102,100,103,102,98,89,109,119,91,98,110,105,97,110,102,103,106,104,117,95,100,98,106,110,111,117,104,104,124,110,100,91,101,119,110,96,101,73,106,108,103,104,101,111,95,104,107,106,97,96,102,105,111,111,104,102,101,99,104,102,101,112,100,102,109,109,102,107,108,115,108,106,87,101,101,105,102,110,117,117,94,107,110,100,117,108,110,95,111,100,113,105,103,105,109,112,100,108,108,79,104,99,88,107,93,102,109,102,111,91,106,99,99,105,99,111,113,113,111,98,114,110,117,105,118,114,101,103,109,105,106,105,111,114,112,104,107,98,90,107,111,106,105,101,108,100,104,113,102,100,96,110,105,107,112,114,109,95,107,108,100,101,94,100,112,111,104,118,108,103,110,76,136,122,104,108,109,102,103,110,104,98,97,113,68,113,105,95,117,113,104,108,109,107,101,120,98,109,101,106,106,107,104,98,106,98,112,98,100,116,102,98,102,109,106,112,104,120,101,114,109,98,101,102,116,100,98,108,106,110,95,110,114,113,105,97,121,109,103,110,112,101,98,99,110,105,99,100,105,114,84,114,94,108,105,105,102,110,104,103,107,103,95,141,109,105,105,95,103,120,102,95,115,108,99,112,109,115,112,111,98,99,107,111,120,114,97,105,109,105,106,95,96,103,118,100,106,110,113,97,105,95,108,107,102,97,98,117,111,108,118,108,105,100,107,75,100,104,96,111,113,114,115,101,98,106,110,113,100,94,99,99,101,105,100,99,108,104,109,118,118,110,106,98,104,118,105,104,104,107,92,105,114,116,109,103,101,112,103,99,107,108,115,100,91,93,96,100,101,110,98,106,99,101,96,98,105,97,103,107,103,108,98,110,114,96,104,112,102,101,105,96,100,110,98,110,94,103,92,94,102,95,98,94,95,103,107,106,102,103,99,98,109,105,95,109,104,96,113,108,109,109,100,99,103,114,103,103,107,106,105,111,101,100,107,110,97,101,97,103,114,99,112,102,116,98,108,100,104,103,97,111,101,97,98,108,107,109,112,96,105,104,104,105,107,95,112,103,107,104,96,98,103,98,102,112,106,94,90,100,111,109,107,108,110,91,94,95,103,106,96,112,105,109,100,109,94,95,105,90,102,97,104,98,105,105,110,113,111,105,104,113,97,110,103,105,108,108,114,84,106,103,114,94,99,106,96,100,103,115,113,102,105,111,108,103,106,105,104,107,116,113,100,99,95,101,113,113,105,104,99,109,95,97,104,103,115,113,101,114,108,90,121,101,107,103,101,109,111,108,101,101,79,108,106,110,99,103,103,105,107,79,107,103,102,114,103,76,85,109,104,106,109,107,106,105,106,106,112,103,107,113,110,96,109,98,104,108,109,112,112,102,107,109,105,117,108,114,111,101,100,106,113,108,103,106,100,101,103,118,107,119,99,103,101,105,105,108,108,99,104,99,106,95,111,108,96,115,109,107,110,108,94,104,109,110,102,99,98,100,101,105,104,94,104,102,102,95,91,96,114,109,107,111,98,120,105,117,110,108,97,109,117,91,102,89,106,104,105,114,108,111,94,126,105,110,118,109,107,106,107,95,100,108,95,117,104,102,109,110,113,99,112,112,106,109,108,109,102,111,100,113,112,107,109,106,108,105,103,100,108,112,110,113,116,87,103,96,109,110,103,99,98,96,92,109,120,103,104,110,98,105,123,121,91,107,92,96,108,113,113,106,98,108,103,98,109,111,109,122,96,115,98,101,107,110,112,101,109,104,103,107,104,100,104,107,109,109,102,93,107,110,110,107,104,106,113,97,104,136,102,118,122,107,95,103,113,106,106,105,98,102,118,120,110,95,125,109,122,129,104,120,115,143,124,170,169,163,209,220,252,196,198,178,201,228,203,177,139,166,149,118,140,125,125,121,109,112,109,88,118,123,110,97,98,98,104,127,105,110,109,104,128,100,103,80,94,107,85,102,113,102,107,105,115,120,108,105,103,112,102,102,113,96,121,110,103,105,102,98,100,103,106,111,104,110,96,117,90,101,113,104,101,101,98,98,110,104,107,111,108,96,107,106,99,113,111,110,95,115,102,105,117,103,104,105,98,105,105,104,101,111,109,99,95,110,106,102,121,91,84,105,116,94,102,111,96,93,116,95,98,99,114,101,114,92,117,110,112,109,103,108,101,107,106,102,105,84,81,105,95,123,109,96,107,108,105,116,124,103,96,101,110,101,108,114,103,113,98,108,102,106,104,114,101,109,92,115,109,117,109,107,103,114,109,105,102,98,97,103,109,105,109,101,108,111,108,114,96,95,107,115,108,110,113,109,108,112,105,113,107,99,110,108,103,109,103,100,105,110,92,117,95,112,106,115,95,98,110,102,109,106,108,104,99,107,102,106,113,102,102,94,103,105,114,103,104,99,106,92,112,96,102,102,116,108,98,100,112,106,102,97,107,101,110,106,100,114,92,108,98,102,117,109,92,108,113,99,103,104,120,106,108,101,113,98,109,102,100,105,106,109,118,105,102,100,96,103,110,99,104,97,99,102,105,103,110,97,96,107,105,101,121,102,105,110,97,101,88,100,103,116,110,106,109,102,112,122,106,108,109,114,110,106,107,109,111,122,96,122,105,99,106,106,99,103,102,100,98,110,91,102,92,112,98,98,101,87,102,110,102,106,116,97,102,108,116,96,98,105,114,116,118,97,108,109,101,98,105,104,105,106,107,105,98,102,96,108,103,105,104,113,107,104,108,113,109,112,108,105,109,105,126,102,106,104,106,86,113,99,107,111,104,106,107,108,115,88,99,105,99,93,105,110,95,95,106,101,101,101,114,102,97,105,110,97,112,117,107,102,87,105,103,113,104,100,93,121,121,118,103,110,104,99,94,109,103,106,97,110,118,104,100,119,106,111,100,102,102,99,95,112,95,104,106,102,97,106,112,98,106,103,103,117,113,117,119,113,120,114,109,94,107,106,105,102,111,77,102,101,114,103,108,98,99,100,98,113,107,107,95,102,105,112,100,98,112,100,104,101,96,106,100,101,102,103,101,97,105,116,103,114,105,101,109,98,99,101,113,95,107,100,97,107,117,97,107,99,116,112,99,102,130,110,106,110,100,113,119,102,113,98,109,95,109,70,103,100,108,97,104,100,103,106,99,114,107,107,111,90,102,98,109,117,111,102,110,101,95,107,111,99,108,93,99,99,113,105,113,113,100,90,98,96,98,104,128,101,108,113,97,98,95,96,93,89,99,108,119,83,109,97,102,103,111,104,109,105,98,97,99,104,116,107,106,119,101,98,105,117,100,102,110,103,111,107,104,107,89,114,95,109,106,101,100,109,101,91,109,115,87,99,102,102,104,104,105,94,109,69,115,109,97,101,113,92,98,96,109,104,99,108,116,95,107,97,112,116,94,91,94,107,112,113,104,86,97,93,100,100,105,102,102,94,105,105,102,105,102,109,104,110,102,108,105,105,96,109,96,110,108,92,98,111,99,102,101,99,106,101,108,100,94,96,106,99,110,97,110,105,107,111,123,102,111,111,111,111,105,108,99,109,116,99,106,101,110,101,111,99,111,109,104,95,109,117,106,103,80,113,95,105,109,110,106,91,101,91,102,113,99,104,104,108,99,106,109,106,102,99,103,114,102,106,103,95,109,96,87,102,115,109,105,98,105,94,105,109,94,85,102,122,99,106,107,112,106,103,104,103,112,95,106,110,100,116,108,97,116,99,93,106,113,93,106,98,101,110,104,108,95,93,97,99,105,107,108,107,117,107,90,104,113,98,105,104,103,116,98,102,118,101,110,110,107,103,109,100,113,116,87,97,103,110,99,105,101,83,94,95,99,105,105,96,111,98,96,99,110,100,99,103,100,108,103,105,106,91,109,108,104,104,105,109,105,108,95,106,111,109,110,112,117,93,92,102,100,106,99,104,99,88,103,103,104,107,100,111,97,106,87,108,95,97,107,100,117,104,103,110,104,76,98,101,107,113,97,113,112,110,108,109,103,108,105,91,114,105,105,91,105,106,87,100,113,79,86,97,117,97,99,92,106,112,112,102,100,86,110,99,110,107,104,102,90,100,97,101,100,121,106,88,98,110,95,95,110,106,105,112,110,94,106,104,108,123,103,103,99,119,104,109,109,93,111,106,97,86,88,103,97,110,117,100,102,112,95,90,86,101,99,116,106,108,110,101,115,111,102,100,100,100,111,94,100,105,106,114,81,116,96,109,109,98,80,101,96,95,112,105,113,94,94,115,113,102,100,114,109,102,91,109,112,108,105,98,106,95,111,106,81,115,94,100,119,99,96,105,79,103,102,98,97,104,94,94,107,92,100,98,102,99,104,96,107,104,102,91,105,107,92,99,113,118,113,101,105,100,92,87,101,95,102,103,117,104, +582.68481,91,104,108,100,88,104,104,89,97,112,97,91,102,91,103,78,99,100,116,107,100,110,107,111,104,125,99,80,108,102,99,102,108,100,100,101,108,103,105,108,105,113,97,102,108,105,94,108,96,110,99,110,102,95,103,87,103,96,110,103,99,105,107,96,98,92,101,104,92,108,94,108,104,110,102,109,114,93,100,104,105,103,110,98,106,106,97,109,98,134,101,87,102,105,97,110,105,95,102,112,114,91,95,123,106,126,111,97,100,105,97,103,105,100,114,97,98,101,79,101,104,114,108,112,96,111,106,94,106,99,105,96,102,103,112,101,99,106,101,93,90,102,98,97,74,109,111,99,101,97,100,112,104,95,108,97,103,103,109,100,101,94,113,99,110,102,106,103,102,97,117,100,98,95,106,99,106,95,113,96,91,107,99,99,105,96,104,116,100,97,98,106,99,97,106,89,104,106,100,119,122,94,110,108,102,100,100,105,98,117,108,107,103,102,104,100,109,102,110,96,105,114,88,97,107,112,103,107,106,92,113,101,103,94,106,104,104,104,120,103,97,101,102,109,109,100,108,100,98,113,101,103,106,114,98,116,101,97,97,95,91,123,107,120,98,118,112,115,102,103,113,99,108,108,101,103,99,107,105,90,108,98,98,90,104,109,107,103,116,108,96,95,117,113,110,114,104,105,109,109,108,107,96,110,92,103,103,104,106,127,100,117,122,107,98,97,99,100,104,99,105,92,100,113,103,104,102,96,109,113,113,92,109,107,109,104,113,98,96,110,97,104,103,103,107,112,106,108,118,98,108,106,103,97,106,108,90,107,110,109,109,107,96,90,107,95,100,106,99,105,114,120,100,104,97,106,112,99,103,98,112,106,120,108,105,100,103,110,119,96,108,107,104,111,96,104,100,89,105,96,102,115,98,95,92,97,100,110,105,114,102,100,102,99,102,99,102,100,110,102,94,100,99,118,93,103,103,94,103,113,103,95,107,106,83,108,95,113,98,99,104,100,103,113,100,116,106,109,108,112,104,104,105,105,114,105,113,101,112,106,115,105,108,112,109,103,114,116,103,96,103,124,102,114,111,91,112,117,96,110,105,104,105,110,103,111,96,109,117,106,103,103,115,94,105,110,97,123,105,100,107,110,114,97,113,93,106,92,116,100,115,89,102,117,105,103,99,97,85,83,104,96,106,113,109,105,110,104,105,100,105,101,110,109,109,103,107,101,108,107,96,103,103,96,107,104,116,102,106,103,96,127,99,98,105,105,108,100,105,112,104,111,101,102,99,104,105,103,120,93,100,99,94,104,79,105,103,113,108,114,103,101,101,111,101,109,112,104,106,108,96,116,103,102,119,96,97,106,106,105,95,102,104,94,89,102,106,97,104,96,92,136,104,96,109,91,106,101,96,104,104,107,104,101,106,112,106,98,113,113,103,102,102,116,107,88,110,95,103,108,105,106,99,94,112,106,98,109,97,102,107,101,107,101,103,92,115,99,101,93,110,99,97,105,109,114,92,100,105,103,126,103,102,104,102,95,112,105,92,100,107,118,115,105,101,87,77,99,113,105,106,107,94,115,112,96,98,109,100,92,109,85,100,111,105,109,101,107,95,104,111,108,97,99,102,99,118,105,91,110,105,86,108,113,93,105,115,101,106,108,107,104,110,99,93,103,98,111,105,110,99,94,105,108,107,104,105,100,102,99,108,100,94,108,109,105,101,87,114,104,108,98,99,96,94,111,99,110,105,103,119,112,106,103,94,104,106,101,120,110,101,95,95,104,96,115,99,98,95,109,109,100,112,109,103,107,96,101,95,112,98,108,102,112,99,113,110,99,106,105,113,102,107,115,120,96,107,102,109,92,100,112,104,122,116,111,108,99,112,107,115,96,103,96,108,99,108,107,106,100,109,106,101,129,111,107,100,99,115,97,112,97,109,103,100,107,101,105,107,96,123,99,107,103,101,95,107,89,73,102,113,102,109,100,100,112,121,109,95,111,108,97,112,114,107,100,100,115,106,102,102,104,98,111,112,102,107,100,99,117,107,111,105,105,99,109,107,98,99,106,103,96,106,110,101,95,95,98,104,108,100,103,89,120,106,109,114,99,94,104,109,102,113,109,108,107,107,111,114,110,102,107,102,116,91,117,111,113,113,108,92,97,110,112,107,107,99,99,97,98,123,101,101,106,109,96,92,100,100,101,95,118,106,102,106,111,101,95,97,92,105,126,103,104,100,104,104,88,97,111,103,115,101,105,109,98,102,97,99,101,80,98,92,108,107,106,102,91,105,99,104,109,115,119,97,112,112,101,107,103,122,104,112,92,99,102,109,102,112,118,100,113,114,108,120,112,121,129,143,174,176,190,209,213,193,185,233,209,199,161,197,166,169,167,139,166,112,119,132,115,118,121,108,107,99,109,111,118,108,110,91,110,124,117,120,106,107,107,90,98,93,108,98,108,102,112,85,107,112,111,115,88,109,105,102,103,96,116,105,113,104,109,103,113,99,106,101,109,86,115,108,117,104,104,125,97,96,90,98,101,116,121,106,97,108,99,119,104,110,113,103,117,106,77,109,106,107,113,101,100,100,100,107,108,103,107,111,109,117,95,110,96,116,105,107,103,116,106,99,107,118,101,109,93,113,115,103,108,91,112,105,97,116,106,103,121,88,103,116,109,113,101,115,104,113,97,102,97,123,105,103,91,115,103,101,108,99,108,100,117,110,69,98,107,108,112,100,102,111,107,111,103,92,99,117,108,107,110,104,112,104,112,105,113,108,109,113,99,100,106,112,105,104,103,108,98,101,112,108,102,122,106,107,102,96,103,102,102,123,102,110,101,106,105,102,101,107,109,116,111,104,96,105,122,119,100,102,99,94,120,98,103,100,102,116,108,92,99,107,108,98,113,120,115,96,116,102,73,118,104,113,109,96,86,100,104,105,107,105,111,94,109,96,106,104,106,96,113,94,117,104,93,106,109,120,108,100,117,106,105,105,111,108,114,94,99,113,102,104,97,98,94,108,106,124,109,104,94,105,110,103,95,102,107,110,113,102,102,110,108,88,110,99,115,98,117,92,106,115,90,107,100,117,103,113,104,109,115,120,99,109,99,106,109,110,102,104,103,105,113,95,108,108,94,99,101,107,113,96,106,114,95,117,98,135,115,111,105,103,105,127,96,91,109,94,105,112,105,113,104,130,99,113,92,115,110,92,100,108,98,116,112,103,114,108,105,106,100,103,106,112,115,104,113,113,87,105,117,104,104,105,112,108,102,104,101,117,111,113,106,106,88,111,104,102,95,103,98,112,95,109,113,107,83,103,100,91,103,109,100,103,107,102,111,111,126,105,109,104,106,95,112,101,102,114,107,95,107,102,107,107,94,106,96,83,104,103,112,97,113,95,99,107,102,87,101,100,100,106,88,111,112,95,94,103,103,110,96,109,108,110,107,91,97,108,92,85,101,109,109,94,103,88,95,97,104,109,114,113,105,120,105,97,115,106,106,97,107,97,104,105,117,104,103,98,103,97,107,100,109,104,124,110,89,97,99,99,83,102,122,77,99,107,110,95,106,115,117,105,103,93,116,109,111,100,100,108,102,131,117,98,106,106,105,96,108,110,113,98,113,107,104,105,103,105,96,104,103,113,106,111,100,108,99,112,109,112,112,107,103,108,121,123,100,96,101,105,95,107,101,111,109,107,112,105,110,113,103,109,113,110,92,105,117,102,109,120,109,107,107,107,102,90,98,119,103,108,110,114,97,109,108,100,108,108,107,109,97,110,121,107,102,105,105,110,101,116,108,108,100,110,104,106,104,108,107,102,100,114,115,109,109,104,97,98,117,109,100,112,103,113,105,106,111,106,104,97,102,116,103,110,107,96,100,112,113,101,79,100,114,110,111,105,108,118,100,108,80,97,106,95,97,113,112,104,116,107,115,107,111,105,126,88,95,107,109,105,104,95,116,109,110,98,98,116,117,101,105,86,110,111,112,110,114,113,94,83,119,99,126,117,112,68,101,102,97,102,111,98,104,105,101,103,115,104,109,108,105,110,105,106,92,110,103,100,108,109,89,85,102,128,113,98,90,106,110,120,100,94,103,113,109,107,111,114,104,107,109,111,110,91,97,102,105,107,108,100,102,109,108,110,106,112,110,100,109,98,99,96,106,105,117,94,101,109,108,94,106,98,105,104,107,104,106,102,111,110,106,96,106,121,94,106,103,106,95,94,104,110,104,102,106,107,99,87,99,115,90,107,116,103,103,104,110,104,129,103,108,95,111,91,109,121,113,98,116,102,110,97,120,109,92,106,103,107,109,113,98,109,100,108,109,106,104,98,97,110,107,101,106,84,98,106,101,104,111,111,95,99,101,102,104,112,110,92,105,96,113,110,104,105,107,100,114,95,112,102,103,93,100,124,105,91,91,107,98,57,95,104,106,110,111,109,112,69,105,113,96,101,106,109,105,100,113,73,95,95,111,108,109,102,102,115,109,118,95,100,107,99,104,98,99,129,94,107,108,103,87,100,103,102,107,101,105,109,107,109,110,101,105,108,107,103,91,112,100,75,106,107,100,96,108,104,108,115,100,110,104,106,113,100,101,108,102,106,103,105,107,102,97,102,93,109,112,96,106,118,104,116,123,101,100,124,95,116,76,111,98,106,92,109,115,86,83,106,91,105,105,96,94,104,109,109,87,110,105,113,102,102,123,92,114,97,96,99,109,94,106,116,112,89,102,132,107,106,119,98,97,93,104,100,103,110,102,98,100,99,89,102,107,92,83,115,117,97,95,106,102,104,114,117,100,111,95,109,111,107,85,108,111,112,101,104,109,116,105,101,104,109,91,96,99,119,95,112,89,91,95,105,100,88,102,111,105,102,106,103,108,97,95, +582.82581,95,110,97,109,117,95,104,96,103,88,114,110,110,116,109,103,105,121,101,109,111,98,105,100,96,106,95,101,113,112,109,112,112,97,120,112,104,106,111,103,109,100,106,108,109,106,106,107,99,109,109,115,110,97,111,99,100,117,101,104,101,108,100,103,92,111,98,84,97,101,107,111,104,118,97,124,113,122,99,100,102,104,103,108,113,100,120,113,103,110,112,105,91,114,117,97,104,99,105,109,106,110,108,99,92,104,96,100,109,106,109,104,110,104,106,94,102,102,112,120,90,99,117,103,111,110,99,103,109,114,113,95,96,103,118,103,99,108,94,107,108,111,101,112,94,107,103,102,100,102,117,102,108,100,94,105,118,103,106,94,107,107,109,105,114,108,95,105,104,95,106,111,104,116,113,109,109,96,102,99,92,99,108,96,119,111,83,89,109,95,110,104,105,102,108,107,99,114,103,114,109,97,100,97,117,102,122,97,103,101,125,101,102,96,112,114,103,107,108,105,92,99,78,99,109,113,122,111,114,101,99,113,102,96,116,109,117,100,95,104,102,97,107,114,90,102,112,95,89,105,99,105,109,102,100,106,91,120,107,105,103,98,82,104,110,107,103,104,101,100,92,98,104,99,112,100,92,96,114,116,108,113,112,104,91,104,94,107,115,96,101,105,98,108,112,112,107,95,99,110,99,102,101,116,108,113,113,108,104,115,103,112,97,112,104,101,113,108,114,99,110,104,105,111,113,105,101,97,107,107,106,98,105,106,105,94,114,98,108,110,98,103,88,105,118,103,98,111,106,105,116,91,105,100,101,96,104,102,104,100,101,103,105,122,104,108,115,110,98,106,109,104,101,107,108,102,116,93,93,112,123,100,106,110,124,96,104,97,111,105,108,108,95,108,116,107,115,108,102,104,108,102,110,102,101,94,102,106,99,117,95,121,112,103,104,100,98,89,111,86,90,105,105,99,106,107,119,97,92,107,100,110,111,100,104,101,100,75,100,104,111,118,115,107,117,111,102,108,115,102,100,104,104,129,106,109,107,94,103,107,98,105,118,112,102,102,108,106,101,116,96,114,113,116,95,103,117,123,111,114,96,111,110,112,96,104,104,104,101,103,109,101,113,110,105,105,102,99,105,93,111,92,111,104,105,102,100,104,112,90,92,103,111,108,116,114,98,107,91,108,105,113,104,108,108,111,106,100,117,109,100,116,100,109,99,111,98,99,108,101,108,118,104,109,124,113,115,106,110,115,108,90,117,113,95,105,108,105,105,103,99,100,118,108,110,110,98,105,112,100,101,109,118,104,106,100,107,113,104,114,108,94,109,105,89,113,103,117,113,99,111,108,109,125,112,116,108,104,102,113,112,95,117,98,105,97,107,102,90,94,114,113,119,99,114,102,106,97,101,117,104,114,96,108,97,106,102,120,100,110,119,109,110,105,109,111,109,107,135,111,109,101,104,96,93,99,106,94,101,118,100,104,105,106,105,109,111,108,105,112,109,104,102,121,99,112,98,99,110,93,108,115,108,93,100,103,109,105,107,116,102,100,111,105,104,110,106,113,111,121,98,101,106,113,96,97,99,108,109,93,100,112,104,114,91,102,97,109,103,104,104,121,111,104,108,96,113,108,114,88,103,115,119,114,107,95,113,98,106,114,109,117,101,107,94,86,104,105,114,110,113,103,105,102,97,110,118,94,100,109,111,99,108,106,111,103,110,103,104,100,107,102,106,107,108,84,98,106,106,109,116,110,108,111,108,87,112,104,113,114,102,122,113,99,102,110,109,119,112,109,100,105,111,110,102,100,108,99,122,110,104,99,96,112,112,108,117,109,77,98,114,110,113,111,103,101,107,112,111,113,107,106,110,101,95,110,101,103,107,113,108,107,110,108,104,100,109,92,110,108,106,104,104,93,106,95,98,103,107,104,107,110,104,113,98,99,105,105,100,83,118,117,114,118,105,117,108,113,118,133,103,99,103,115,102,103,98,105,115,116,100,106,109,104,104,111,112,108,107,101,104,107,104,95,108,108,98,102,113,108,112,109,107,94,125,107,97,98,108,113,99,119,106,107,106,100,105,111,110,113,110,104,112,104,118,113,104,108,100,105,107,104,99,106,104,99,108,113,110,108,104,125,104,103,114,112,114,106,94,98,94,116,106,107,114,116,101,103,102,112,102,120,97,107,125,91,104,108,91,106,109,113,104,116,108,95,105,99,97,98,117,105,115,99,100,114,107,103,104,110,107,109,108,103,106,114,94,102,96,98,102,92,100,101,107,107,100,108,109,110,115,108,116,102,106,94,115,104,103,91,113,105,112,107,100,114,105,98,133,101,109,108,121,111,125,125,140,155,146,156,169,220,167,202,208,209,188,203,179,183,184,167,192,164,177,153,155,133,148,93,95,119,111,117,105,122,125,104,109,103,93,122,112,122,113,106,103,108,102,111,106,108,99,113,110,110,110,96,110,108,99,104,100,113,100,111,102,102,99,107,90,91,100,103,109,98,111,112,96,107,108,103,84,102,104,104,102,100,101,103,89,103,92,109,99,98,103,106,92,98,108,104,110,109,112,96,114,114,112,116,104,94,105,106,103,99,114,107,132,96,107,98,110,106,97,99,107,104,113,110,113,106,112,101,108,115,105,98,109,111,110,113,101,106,99,95,97,119,112,109,108,89,99,99,98,109,101,100,72,100,104,98,103,109,100,114,96,93,103,98,105,104,111,103,97,116,96,106,101,107,105,111,103,106,112,101,103,107,109,107,116,96,104,116,100,103,104,105,105,100,103,101,100,103,104,106,102,116,113,103,105,105,111,97,95,99,100,97,100,102,105,108,110,113,103,112,106,109,105,101,115,96,106,103,97,106,112,100,106,111,104,101,110,117,100,108,103,103,108,105,110,106,100,98,102,118,106,112,103,96,110,116,95,97,116,107,97,100,114,108,108,103,94,97,101,107,109,107,96,104,93,111,94,108,108,112,101,107,95,114,110,100,100,102,113,80,112,100,102,96,102,102,99,81,119,102,107,106,98,112,103,100,108,114,107,104,106,105,96,115,92,98,102,107,90,101,106,101,108,98,96,116,103,101,113,97,109,98,99,99,99,103,99,110,109,103,107,95,90,128,113,102,117,110,104,101,109,111,109,90,107,100,102,109,112,107,99,108,119,110,116,101,103,113,102,111,109,100,94,120,107,96,120,104,109,102,109,105,109,105,108,104,100,99,98,102,108,97,115,115,106,116,111,114,103,108,108,95,112,100,110,100,99,102,105,118,104,99,121,107,107,96,112,95,115,118,98,109,110,92,108,112,95,102,112,101,105,97,104,105,113,113,100,111,99,109,112,104,98,101,103,113,109,102,107,107,112,112,102,103,102,108,99,99,119,103,98,98,100,106,98,109,103,101,105,101,106,101,105,115,101,122,119,104,96,109,98,99,100,103,106,106,106,106,101,112,115,104,104,94,112,113,103,106,96,94,96,99,98,99,109,106,104,101,98,113,104,100,106,103,104,113,99,103,104,102,108,110,93,106,109,108,92,117,112,112,107,121,104,122,105,99,105,109,105,98,85,99,103,105,106,102,101,102,103,95,122,112,92,102,93,106,118,113,101,67,103,92,109,102,113,91,112,95,98,102,99,108,109,104,112,112,107,121,96,95,100,108,102,105,102,108,105,112,103,99,95,109,110,95,100,96,103,104,106,103,92,110,103,105,99,106,114,101,114,98,116,100,99,106,109,100,128,102,105,105,109,103,113,108,110,107,105,105,104,95,106,101,100,117,106,101,112,103,95,113,105,98,105,99,68,116,108,104,112,88,102,95,104,106,112,102,105,110,99,106,103,98,102,101,97,108,100,111,102,103,99,100,115,99,102,106,112,115,100,123,99,102,121,107,99,106,108,117,105,100,106,101,109,107,102,100,109,89,103,106,98,108,109,103,98,117,96,117,103,106,100,103,80,107,107,136,95,105,109,105,93,105,95,109,103,107,97,108,105,108,105,99,103,101,103,105,95,107,103,103,115,92,104,110,106,107,103,99,112,109,104,97,111,113,86,109,116,107,99,102,102,112,105,96,114,102,113,102,110,102,112,111,95,111,98,127,102,102,105,106,109,105,111,119,117,106,88,106,99,106,104,106,110,95,108,106,100,110,105,109,102,103,101,102,116,108,99,99,118,117,116,119,102,107,113,113,107,102,89,102,112,105,87,107,113,111,102,102,108,101,106,99,101,104,102,95,122,107,106,103,99,110,122,111,103,107,106,95,96,102,100,103,102,104,101,100,118,109,99,107,109,102,108,98,106,99,117,106,113,103,96,108,114,104,104,104,106,101,101,98,96,108,102,106,109,112,109,116,106,107,113,109,115,102,98,113,107,106,101,114,112,96,107,121,94,101,102,102,112,112,89,108,105,110,106,117,106,105,97,102,96,84,103,99,100,105,106,108,111,104,104,109,104,109,120,95,102,127,119,102,109,103,104,96,99,99,66,116,104,100,122,113,101,102,103,101,87,100,97,102,105,105,108,96,75,111,106,96,99,102,101,104,117,98,106,111,112,107,97,110,112,86,98,98,113,96,105,102,106,114,102,101,101,105,111,102,111,104,104,101,101,107,104,106,86,102,98,100,95,106,113,88,102,103,102,103,116,99,107,108,98,102,104,109,110,106,97,99,113,97,102,95,93,98,103,104,104,103,100,98,97,91,98,110,90,92,112,106,104,92,103,106,110,95,105,98,107,94,104,109,100,99,99,102,98,99,107,98,93,100,111,102,110,100,106,101,120,99,108,106,100,113,76,99,138,99,103,113,104,106,98,112,101,94,111,102,95,99,99,104,97,106,112,96,91,96,102,90,102,80,101,103,111,99,108,108,87,90,100,106,109,94,93,109, +582.96674,90,111,115,102,82,98,115,113,108,111,97,103,110,108,117,119,101,106,95,113,107,103,108,127,97,101,96,106,131,113,113,82,93,111,105,100,105,96,95,105,92,97,96,94,98,104,99,102,106,103,113,97,118,104,95,109,100,110,105,105,120,101,108,102,110,115,108,113,94,110,118,118,97,106,95,112,89,107,110,109,92,103,95,106,107,95,96,108,105,98,105,100,109,100,91,105,112,104,99,102,106,100,99,108,113,106,97,109,106,93,108,112,108,99,95,96,123,109,116,93,121,109,114,106,94,99,119,93,91,111,91,102,98,109,107,100,112,108,104,99,102,110,103,104,102,108,108,91,112,104,94,97,109,108,91,97,111,109,105,105,104,106,99,107,126,102,110,96,110,113,112,102,95,93,109,108,105,89,116,98,119,100,103,99,108,106,98,82,102,103,107,106,105,100,90,117,106,107,118,107,99,95,110,102,83,97,107,116,119,104,102,104,107,110,97,109,96,91,106,106,112,113,107,101,109,122,100,96,98,106,109,104,111,110,102,122,103,115,122,104,105,97,107,88,87,111,101,98,103,108,112,104,97,134,106,109,95,95,95,112,104,103,104,117,101,97,102,104,107,96,136,99,107,102,117,95,95,103,117,106,97,117,106,106,106,97,96,104,94,99,114,105,109,101,110,114,106,103,107,108,98,95,106,102,99,115,105,90,110,113,102,123,97,125,102,112,115,105,99,104,96,102,106,107,113,121,99,94,109,99,92,101,103,100,112,95,100,110,109,106,101,118,104,104,112,110,90,106,119,95,117,91,92,108,105,99,115,100,94,100,113,97,109,94,111,116,98,110,104,113,101,107,114,106,120,102,106,93,112,106,114,106,105,107,101,113,107,95,112,110,115,100,102,108,87,110,98,104,100,109,106,100,114,105,102,97,117,102,103,105,111,114,114,100,117,104,106,98,101,106,118,106,100,105,115,101,96,109,108,108,100,103,105,107,120,110,111,104,110,96,121,99,100,112,118,95,110,92,118,117,103,99,108,115,86,99,104,121,114,115,111,112,110,101,109,111,94,95,104,103,108,99,106,106,100,100,98,100,102,114,116,102,112,106,115,103,105,120,99,117,104,104,108,98,95,105,113,113,111,98,102,98,99,105,95,100,82,99,99,99,96,87,91,101,88,104,107,112,93,96,110,102,122,112,113,96,94,101,104,94,105,105,102,107,100,97,108,96,113,109,95,111,95,106,100,105,103,102,98,105,107,96,112,107,96,108,105,99,104,102,109,107,109,110,108,109,100,105,107,100,102,103,110,113,107,104,109,108,101,101,103,101,116,96,111,88,106,106,98,106,106,110,109,98,104,111,108,102,102,103,96,107,110,106,97,103,94,100,94,105,103,110,98,110,111,99,94,99,110,87,105,104,83,93,89,109,99,110,105,113,96,97,110,106,85,94,73,96,104,98,117,107,111,106,98,97,94,105,108,114,115,117,104,117,96,106,109,103,120,112,119,103,113,115,91,106,119,94,109,101,102,101,103,106,105,112,102,95,110,106,96,117,113,108,109,100,109,95,104,100,104,109,98,101,95,110,95,112,110,106,101,120,97,119,100,105,104,109,100,107,95,110,115,103,102,104,105,101,96,105,95,101,106,120,107,99,107,100,107,111,107,98,105,96,104,108,102,121,112,94,100,103,107,107,111,103,80,101,110,105,102,106,111,99,96,103,112,109,111,101,106,106,104,103,106,103,100,97,97,104,103,115,106,105,90,102,102,109,101,98,101,107,105,114,107,107,97,109,99,104,105,110,111,105,116,99,101,100,96,113,102,98,98,99,92,116,113,116,95,112,109,106,96,104,99,94,105,118,108,95,107,82,99,106,102,108,114,112,110,108,104,109,116,101,109,99,102,109,102,111,104,110,97,100,112,112,103,92,108,100,98,96,112,112,97,109,99,101,99,122,107,120,99,99,95,101,95,108,112,110,103,113,101,119,110,98,101,101,107,112,101,120,102,105,97,98,103,103,93,115,74,110,111,117,117,94,103,117,96,109,111,100,111,105,104,87,101,102,104,114,101,106,106,107,112,80,104,101,97,122,95,104,104,109,102,96,108,112,102,106,100,114,108,92,102,109,99,97,102,111,106,96,122,98,99,100,108,108,104,102,107,96,118,95,103,100,104,108,96,106,101,108,120,83,117,102,103,102,98,112,97,97,114,102,90,100,96,107,96,101,97,99,112,110,99,106,94,106,107,99,112,104,104,107,108,106,90,113,99,103,103,94,105,106,116,103,113,112,96,111,102,108,104,104,96,103,107,116,100,117,114,98,119,106,103,102,107,82,118,113,118,129,121,102,118,122,120,112,145,166,165,198,220,204,198,221,194,171,210,188,200,205,174,165,140,142,145,124,103,105,113,112,123,126,100,108,109,109,110,102,104,114,102,104,110,101,125,99,102,103,96,92,86,103,118,95,111,109,99,109,102,104,108,101,99,96,101,95,123,104,106,96,121,105,112,106,104,100,108,105,107,113,99,98,107,103,102,109,91,112,107,106,109,99,98,107,90,111,107,117,104,104,103,102,97,106,93,94,105,112,113,91,100,107,100,108,106,105,90,103,102,105,103,104,96,116,102,91,99,101,111,107,115,103,113,110,93,102,96,87,104,103,107,106,112,109,93,104,111,100,101,111,102,111,112,103,106,115,101,108,116,100,106,109,127,107,103,102,106,101,138,97,98,113,114,103,110,129,109,104,104,108,94,116,108,107,96,108,99,98,98,107,97,100,106,97,97,96,102,98,107,119,110,109,87,103,93,106,98,110,88,100,116,102,85,92,102,91,106,95,96,97,110,105,101,112,109,113,94,90,109,98,107,107,109,113,103,118,102,106,98,112,98,111,106,92,101,96,105,98,110,102,92,108,109,108,103,116,99,113,108,108,116,108,82,94,104,108,108,101,100,105,101,102,98,113,106,97,94,117,103,91,103,100,108,110,107,94,106,112,101,105,84,103,109,105,101,107,80,99,103,106,99,111,107,97,106,110,97,106,101,112,107,102,107,94,95,107,107,102,104,98,112,94,110,117,116,99,105,101,113,107,125,101,117,117,78,90,107,92,101,96,106,110,111,105,102,119,107,109,115,104,95,102,100,103,104,101,102,106,96,111,90,83,108,105,105,96,100,96,114,106,92,105,95,107,88,92,105,103,106,91,97,117,104,95,98,103,99,110,100,108,104,92,110,100,98,101,108,103,96,109,110,102,113,106,88,105,107,103,107,83,107,106,110,96,105,86,108,106,95,104,97,107,110,104,92,102,104,92,89,98,94,94,105,99,106,97,101,98,107,105,94,94,106,88,112,112,110,106,104,103,89,95,104,93,87,93,95,112,89,97,91,94,102,99,85,96,124,106,91,100,100,99,95,103,94,98,103,104,98,98,77,94,105,104,103,90,111,103,110,102,107,114,94,109,145,112,93,105,98,93,89,99,91,106,105,103,120,109,105,107,108,109,105,100,104,97,119,102,116,120,98,101,103,104,103,113,106,93,103,109,117,99,112,100,99,95,110,100,106,108,101,111,104,91,105,105,112,104,114,103,105,109,93,116,99,102,102,102,98,91,96,101,102,87,99,105,105,106,92,106,104,109,104,109,107,89,105,114,117,98,110,104,91,96,107,119,96,112,103,106,95,109,98,92,100,92,109,93,113,109,108,107,100,111,105,121,101,102,100,113,104,102,114,102,111,112,93,97,105,106,101,107,87,115,90,96,126,104,123,98,98,110,104,108,124,104,102,114,101,98,96,103,104,112,99,103,110,106,99,95,113,114,102,96,102,102,104,109,104,108,110,99,105,109,116,113,114,104,100,103,94,112,95,105,89,102,111,101,107,105,101,105,111,96,115,110,107,92,102,104,100,130,108,99,107,103,95,106,103,91,101,104,103,112,101,101,100,98,104,104,90,104,104,102,107,95,111,97,105,107,105,113,103,117,100,93,85,103,94,83,122,99,109,87,91,105,89,113,113,94,91,104,95,108,106,104,98,109,104,119,115,106,115,102,102,108,102,101,96,94,102,92,118,115,100,115,98,94,102,105,98,101,106,103,100,102,91,104,104,112,89,100,100,106,112,113,101,117,115,96,105,105,100,95,102,99,104,99,103,71,92,90,90,98,98,92,102,101,108,99,121,99,97,95,110,106,101,109,106,115,106,107,114,101,114,111,101,107,94,101,102,96,136,80,112,114,103,99,103,102,102,101,83,104,109,98,119,92,101,104,109,99,98,102,101,95,87,109,99,104,109,96,103,103,109,113,105,108,104,105,114,108,104,113,106,114,101,109,96,97,87,106,113,100,106,94,107,114,109,113,109,116,95,101,97,100,104,108,113,102,106,107,102,88,101,113,106,87,101,97,117,110,95,107,99,105,91,110,108,100,99,114,96,102,100,111,94,107,79,112,105,114,112,100,110,106,109,92,89,92,105,113,91,107,91,94,107,109,95,105,97,100,99,131,102,112,101,107,105,96,103,101,105,114,104,108,101,104,102,104,88,96,109,100,104,94,89,96,114,104,113,104,99,97,106,109,96,91,90,103,94,96,113,90,107,99,99,109,87,96,106,107,95,120,100,109,114,112,102,107,111,95,102,103,100,106,107,98,77,91,103,107,103,111,101,94,102,101,101,105,100,102,107,99,100,96,94,101,111,105,108,96,99,127,91,99,90,94,94,103,100,121,99,105,106,113,88,103,98,110,105,113,91,98,98,107,100,95,86,101,76,103,118,87,92,100,113,104,113,103,117,91,97,107,86,102,102,103,109,102,101,100,111,109,108,117,102,93,109,100,95,100,91,112,104,104,116,81,105,85,113,116,103,99,92,91,89,106,104,87,120,96,100,99,101,88,104,114, +583.10773,98,90,117,114,122,102,86,87,102,104,95,98,100,108,100,103,102,109,113,91,114,104,100,111,113,120,93,93,117,107,101,106,117,106,104,107,92,92,94,98,96,112,97,102,83,107,109,116,106,105,105,103,100,101,110,106,97,106,119,106,111,116,120,95,105,112,136,115,100,94,119,106,103,123,111,102,105,98,103,103,111,100,107,111,102,115,124,121,104,82,101,106,101,110,97,91,97,120,107,107,111,99,108,101,99,100,100,108,103,128,112,96,98,98,109,103,105,133,95,111,106,110,106,112,103,124,114,84,107,99,104,109,98,113,107,101,97,98,105,105,105,103,99,101,108,111,109,128,129,107,111,120,119,112,100,106,127,108,107,109,100,111,115,101,108,110,110,105,108,102,114,99,128,110,102,98,113,106,115,103,108,117,104,112,121,101,107,96,108,112,104,99,108,103,97,102,106,106,106,104,114,106,104,105,106,112,100,101,108,98,104,106,108,104,109,102,100,111,99,106,111,95,104,115,104,101,104,102,114,101,99,100,99,101,101,103,110,112,111,97,107,114,108,100,101,106,108,109,105,103,114,103,117,106,109,104,97,101,108,75,92,100,105,102,99,105,106,105,117,102,105,109,107,95,107,111,116,108,97,112,96,95,121,103,103,99,100,98,108,104,103,111,104,105,110,115,103,93,105,96,120,106,99,103,115,103,105,118,103,101,103,112,99,102,107,103,106,104,105,112,112,104,105,114,110,111,112,102,103,115,108,103,109,90,89,103,111,102,113,107,105,113,109,107,101,108,100,96,110,106,96,120,125,102,105,119,106,114,99,101,99,109,106,107,104,103,107,118,103,116,110,103,111,109,103,90,111,110,110,120,106,108,112,104,122,98,101,99,96,100,109,101,106,121,112,103,102,110,113,123,99,110,90,94,111,106,97,108,115,108,104,112,107,100,110,87,100,100,114,104,110,97,120,101,90,102,91,104,104,112,83,110,101,98,99,106,109,121,115,103,106,100,78,108,101,122,109,105,105,119,108,98,90,118,103,103,105,89,110,105,120,107,107,104,112,110,117,95,104,99,105,104,98,112,109,110,130,101,98,96,108,110,112,137,106,100,109,103,104,99,109,96,112,112,98,99,108,107,109,117,102,105,111,109,106,103,97,108,102,98,110,101,113,109,106,102,124,103,98,107,106,116,111,106,92,94,120,101,105,95,112,111,109,104,105,104,121,105,101,111,105,104,83,112,107,102,106,102,103,117,111,120,106,106,95,104,114,114,109,107,106,110,113,99,87,98,112,116,97,102,99,109,113,101,109,98,81,100,110,102,111,104,104,106,104,93,107,107,104,104,111,110,114,102,104,108,96,100,108,103,94,109,112,99,98,108,105,106,98,92,112,114,110,111,109,111,101,99,113,109,116,104,109,103,101,106,110,104,117,92,97,104,110,103,99,105,110,98,113,104,107,100,99,106,111,91,95,100,112,105,96,105,102,118,101,102,99,106,94,109,98,130,125,107,108,113,128,102,103,119,114,108,98,112,106,105,101,104,105,100,104,118,108,100,100,116,104,110,111,112,104,103,106,106,105,103,106,104,105,105,112,97,108,109,107,109,108,113,110,114,116,96,106,100,107,99,102,124,116,107,111,108,114,115,119,97,99,121,109,114,105,107,103,104,96,89,103,105,107,106,117,110,103,105,105,103,103,103,112,104,120,99,113,115,109,103,108,94,102,105,108,108,111,94,98,107,103,98,100,113,107,114,103,101,112,102,102,106,113,102,108,110,104,101,108,101,101,107,102,109,108,107,102,107,102,111,117,117,99,106,112,99,100,99,124,117,107,106,98,105,111,88,109,108,103,111,91,104,123,108,113,103,104,104,107,109,112,108,116,111,102,98,109,102,110,105,104,103,113,103,102,99,113,103,100,102,106,104,109,100,113,94,100,104,100,112,109,103,103,112,101,98,112,99,112,107,109,109,103,71,106,112,114,108,90,101,107,102,98,91,111,115,107,110,107,112,102,108,112,99,104,113,93,113,103,103,103,115,111,102,107,109,108,119,81,120,90,111,103,102,105,114,108,115,100,101,103,121,109,102,105,106,110,112,107,110,117,107,104,99,113,103,108,110,98,102,102,106,110,95,107,101,104,125,112,102,112,103,92,102,101,99,119,107,88,121,103,112,108,117,108,100,107,104,106,111,100,108,116,112,110,99,109,108,96,104,117,98,102,110,107,104,107,120,116,104,95,107,113,105,108,102,111,103,106,103,101,101,102,107,121,107,104,108,107,108,111,95,104,111,98,110,116,105,83,94,109,100,116,110,94,107,101,103,108,106,107,103,112,95,119,124,105,112,119,121,125,144,154,168,151,187,199,215,196,208,208,177,165,209,183,181,177,162,161,160,139,127,119,102,107,120,108,115,112,77,106,102,113,116,105,112,99,101,109,126,109,94,106,91,115,100,106,110,108,106,105,99,114,110,104,101,118,104,91,107,103,116,110,127,121,101,81,98,100,106,96,113,111,105,112,104,111,104,98,106,110,109,108,103,111,119,92,104,102,104,102,109,111,118,104,110,103,98,109,97,89,113,109,106,105,108,102,94,102,102,106,96,107,91,99,97,124,94,97,112,115,112,106,104,102,108,94,90,106,111,105,112,98,92,102,108,104,115,114,110,115,106,117,109,111,117,128,124,115,111,114,109,98,103,102,100,112,105,100,106,107,92,100,99,120,107,107,107,107,104,108,113,99,110,106,115,103,104,116,113,108,97,114,102,115,117,111,118,110,104,105,98,106,110,95,106,99,121,107,120,109,113,113,110,112,96,113,119,105,107,106,113,103,113,105,102,109,112,97,109,103,102,100,105,109,93,105,114,112,108,105,110,106,101,125,105,113,114,115,89,103,99,120,112,108,125,100,103,140,113,103,107,112,120,104,104,109,88,111,120,106,92,117,99,120,104,108,116,110,102,102,107,107,97,100,98,107,106,113,105,95,115,95,102,113,105,109,96,112,94,103,119,117,101,116,110,118,111,100,106,104,117,108,113,100,113,113,106,103,102,99,109,102,105,108,116,111,108,101,101,102,105,118,114,106,110,106,102,103,95,111,106,101,99,100,97,88,114,108,101,101,114,104,100,113,80,98,107,107,100,123,109,98,99,111,102,102,113,125,117,91,92,104,104,117,113,109,111,101,103,100,110,102,111,113,118,119,92,99,131,98,116,109,114,107,97,98,107,113,118,102,104,106,112,92,100,113,106,112,115,101,103,103,104,105,106,116,112,102,108,105,105,103,107,96,103,95,106,117,116,103,106,114,106,104,105,107,108,121,121,83,109,89,104,101,116,114,98,104,107,110,99,107,98,134,117,101,104,109,106,109,101,108,104,105,100,96,93,109,112,108,95,103,113,95,105,111,105,113,104,108,114,109,113,95,102,97,112,105,102,80,102,112,100,113,103,117,113,101,117,109,107,103,101,113,98,115,114,76,96,102,104,109,106,118,105,99,99,106,102,101,104,95,95,107,105,99,104,101,110,106,116,103,94,108,113,113,104,116,112,94,100,119,112,109,99,100,108,100,68,111,107,108,103,102,109,100,106,103,111,101,113,103,113,101,106,115,120,102,97,117,135,108,113,92,109,110,109,113,96,89,101,102,118,117,101,70,123,101,114,108,116,106,100,99,108,104,127,108,100,110,101,115,103,112,114,104,106,98,102,103,112,113,100,91,104,102,103,106,99,97,106,105,115,89,110,121,104,105,98,102,98,112,106,102,102,80,117,103,107,107,123,105,92,121,105,93,122,97,89,99,122,111,136,121,91,107,114,119,125,106,84,101,98,106,111,117,108,100,101,110,97,115,108,107,117,99,109,106,114,107,111,110,96,105,101,107,98,105,71,86,109,105,108,103,103,103,112,115,109,105,116,111,103,109,96,108,108,105,103,105,111,106,110,108,89,106,110,104,110,100,104,106,109,102,102,113,102,99,111,112,105,103,102,106,104,101,109,98,117,105,78,100,102,111,109,100,98,114,106,108,102,93,110,111,108,97,96,112,104,102,106,109,102,94,110,107,107,113,105,104,112,117,95,99,113,103,111,110,108,101,102,110,111,107,97,114,101,104,120,97,103,117,120,97,95,99,105,109,99,102,100,106,115,100,106,97,91,100,110,113,102,108,94,108,100,113,126,108,101,92,108,109,106,124,97,106,108,105,92,113,102,96,107,102,97,107,107,103,100,110,97,111,96,100,97,104,108,77,101,92,96,101,108,107,105,102,113,105,113,118,106,108,109,96,93,117,104,120,102,112,102,100,112,103,107,98,102,104,92,115,115,114,120,119,102,113,112,96,97,109,109,111,116,105,120,108,100,110,111,100,117,106,112,107,118,105,127,91,103,99,103,110,102,98,100,110,117,110,108,98,100,114,105,103,106,100,102,107,97,115,107,113,114,106,101,102,106,104,104,105,94,117,98,102,102,116,104,112,77,107,102,121,109,93,100,109,101,104,98,106,105,106,101,88,93,94,113,103,113,103,106,103,110,110,107,117,108,106,107,128,113,105,106,98,94,103,107,104,108,108,98,97,113,100,96,115,111,100,103,90,83,106,105,106,101,103,123,112,102,101,109,100,94,114,108,104,106,92,98,121,104,112,107,129,112,109,112,103,104,90,108,109,105,104,116,106,114,100,94,113,110,109,92,103,111,107,98,104,108,103,109,106,113,107,113,92,104,114,110,118,84,102,101,114,84,92,105,98,108,84,108,106,104,112,96,117,93,113,107,114,115,113,108,106,101,95,96,98,97,91,107,111,64,104,103,92,99,120,104,90,117,101,106,128,136,101,102,92,115,91,112,101,89,107,109,107,105,109,123,103,113,105,81,116,108,102,107,109,95,116,76,106,94, +583.24872,104,109,106,108,108,108,109,100,100,103,112,100,99,106,92,98,101,105,102,96,102,100,115,99,99,99,106,120,94,97,102,104,104,95,118,107,102,108,102,98,97,110,87,103,101,103,110,120,100,108,106,105,88,101,106,113,98,101,106,99,110,120,109,107,113,103,120,119,106,112,94,110,98,115,108,109,105,111,106,104,107,104,103,109,102,104,123,112,119,98,102,113,107,96,99,103,99,107,103,109,111,101,97,112,122,112,101,111,116,111,109,105,113,100,106,94,103,106,108,105,102,103,113,110,109,117,118,101,114,96,110,107,92,98,106,69,102,103,97,107,96,99,110,109,79,103,98,98,112,102,106,126,105,112,90,104,110,103,105,101,120,131,106,91,103,86,102,93,107,99,116,102,106,104,108,112,99,99,99,98,97,112,106,113,103,105,95,114,110,105,103,105,103,120,100,103,90,107,111,105,98,105,96,106,105,105,103,116,116,104,109,90,109,111,108,111,104,113,113,122,107,103,107,104,103,110,96,113,115,105,108,114,103,100,105,117,103,123,110,107,105,90,95,110,99,100,117,107,112,101,108,117,103,117,95,109,108,115,100,106,99,118,99,100,89,104,106,103,109,92,113,95,87,105,112,121,110,110,95,85,113,106,102,115,106,94,105,105,119,99,97,112,120,104,109,108,105,112,95,103,102,107,106,123,100,109,111,104,99,110,104,123,111,111,115,109,109,112,108,108,99,119,99,110,114,109,87,94,119,106,95,99,104,115,102,93,113,123,102,107,98,101,111,139,112,123,94,107,102,106,101,111,121,88,105,102,120,116,108,105,103,100,109,107,101,113,104,108,109,124,102,126,117,105,114,101,115,86,113,107,110,98,97,103,93,110,96,107,110,87,116,97,101,111,102,109,89,94,102,103,123,104,113,111,95,105,101,122,111,122,87,100,127,114,106,99,109,112,96,96,98,109,116,99,112,98,104,120,102,101,84,102,103,94,110,105,104,115,104,107,97,99,106,101,102,100,113,119,108,98,91,105,106,116,102,104,104,124,105,104,121,109,113,105,107,108,108,104,100,99,105,106,101,100,99,108,105,111,97,102,102,111,119,104,99,102,107,99,104,99,95,103,115,103,95,95,91,106,116,95,106,122,130,102,100,113,100,107,108,121,106,113,107,106,128,107,85,109,102,103,109,82,101,93,106,100,105,106,95,88,99,106,114,97,104,98,107,106,109,94,97,97,91,111,116,109,107,111,101,112,110,105,105,90,105,105,106,103,105,112,100,119,95,100,107,92,117,106,109,98,112,104,92,110,96,96,101,109,110,104,102,115,101,85,110,100,104,107,114,108,113,109,97,101,114,98,112,106,108,87,99,117,96,107,104,88,94,108,108,109,95,68,112,97,110,112,112,100,104,110,125,100,113,100,101,115,107,72,108,102,102,116,110,96,92,110,99,100,104,107,118,112,104,95,97,106,107,118,101,110,105,103,116,100,98,78,104,114,107,98,120,112,115,113,100,116,103,100,104,106,105,107,110,111,108,111,112,101,111,110,108,113,111,101,106,105,107,100,113,101,129,109,112,121,113,105,113,106,100,103,99,102,106,108,122,105,105,109,101,110,116,103,99,116,98,91,100,107,117,113,82,102,105,106,113,99,110,104,103,105,102,106,114,100,111,109,107,98,100,107,109,94,124,103,98,115,113,95,99,99,93,109,94,104,117,105,115,110,106,119,95,114,105,94,119,112,106,109,99,106,107,110,105,98,101,118,104,109,109,97,107,108,119,102,91,111,107,113,99,99,102,112,95,111,116,107,79,99,104,112,113,101,106,107,113,97,99,108,106,101,99,113,117,107,119,90,104,113,105,104,106,106,115,102,103,103,105,107,103,107,103,117,111,96,103,108,107,106,106,102,110,104,104,108,101,105,106,100,96,99,117,106,99,107,100,115,100,95,98,111,104,109,113,115,110,99,105,107,92,116,99,113,115,107,109,113,106,94,108,118,113,107,110,117,114,105,105,97,104,106,96,99,110,98,121,99,108,100,103,100,113,88,118,99,106,110,113,100,105,104,112,113,114,115,98,104,112,103,112,100,108,106,105,106,107,92,113,103,105,109,107,112,114,109,104,81,98,108,101,110,106,99,103,114,101,104,105,100,99,104,118,97,118,128,116,119,107,107,107,99,117,124,112,100,112,100,103,114,102,100,114,109,99,108,104,114,103,101,111,106,110,104,102,119,106,118,99,97,110,111,91,104,104,108,111,104,103,102,104,107,119,105,101,95,104,114,101,107,105,118,115,118,105,102,120,108,114,100,103,96,116,111,129,93,109,107,112,106,104,98,111,115,100,120,114,121,119,154,131,162,185,182,141,203,211,227,196,190,195,194,188,169,155,157,169,143,132,131,131,129,117,118,115,97,88,116,114,117,111,102,114,123,103,111,113,108,116,110,111,105,106,114,92,108,106,123,106,111,106,103,110,95,105,101,105,105,105,77,106,113,110,112,101,100,103,111,98,112,98,101,108,114,102,106,102,98,112,120,96,105,117,103,114,84,119,109,110,102,108,105,113,113,113,106,105,102,102,108,100,110,107,105,102,110,109,108,111,98,99,98,115,114,89,114,98,102,110,98,100,100,118,90,107,96,109,116,109,113,106,105,106,96,104,71,97,100,103,105,109,108,110,96,96,104,95,109,127,108,103,103,102,104,121,101,108,108,112,107,106,111,110,104,111,98,111,97,106,97,107,117,93,108,96,108,119,115,107,116,113,100,106,104,92,96,98,101,100,104,121,112,109,95,101,109,102,118,106,106,119,116,116,106,111,105,79,108,106,121,108,107,112,104,116,108,100,100,96,99,104,105,103,105,110,102,109,99,100,108,110,116,115,102,104,134,111,107,107,104,106,99,99,98,98,118,104,113,100,116,115,99,95,94,112,108,100,117,102,109,109,114,103,112,108,117,109,104,117,102,96,116,109,107,90,104,106,116,106,107,113,107,105,112,108,112,103,104,105,113,113,98,110,102,96,112,106,106,111,119,109,113,114,102,101,105,107,110,107,113,104,96,82,117,105,109,89,108,95,96,101,112,103,118,111,105,99,88,106,95,104,105,112,95,107,114,132,110,107,109,103,102,104,107,100,109,121,105,111,99,109,118,105,117,80,102,104,109,104,104,109,105,125,101,89,93,110,110,104,102,106,105,100,102,100,111,117,101,99,106,98,112,112,110,102,111,106,97,107,101,117,106,107,118,119,111,74,112,112,103,109,114,110,112,102,108,97,106,105,74,101,93,97,98,94,110,104,118,117,112,102,96,112,98,105,102,106,110,104,102,115,101,109,107,104,110,125,114,100,100,109,108,106,90,116,111,108,108,101,110,97,103,106,107,100,104,112,99,104,111,103,105,98,103,109,120,109,97,109,96,110,95,100,107,112,98,97,98,111,110,104,108,115,111,100,97,104,99,100,85,102,97,110,103,124,102,103,101,105,108,106,106,99,107,107,111,104,104,104,79,107,106,107,101,100,103,104,104,102,113,115,109,88,109,113,99,116,109,94,109,99,114,112,115,92,108,110,95,115,102,113,92,106,103,105,107,106,109,104,99,111,101,91,119,118,102,109,93,102,103,112,122,101,110,109,97,113,114,116,112,92,113,99,95,109,116,112,98,107,104,110,105,111,106,105,98,110,112,106,91,116,117,108,94,106,117,102,104,109,112,107,105,124,107,102,97,101,101,106,113,104,97,99,104,98,103,112,106,110,106,98,115,107,113,114,105,99,107,101,103,105,112,102,107,95,107,106,110,113,98,125,105,108,108,117,100,122,121,110,107,106,116,98,102,110,120,105,108,102,104,129,104,110,111,102,106,98,106,108,107,104,110,101,102,98,107,96,102,111,103,105,108,111,113,111,110,108,104,110,91,100,98,107,92,105,107,99,108,116,109,94,106,100,116,115,113,102,99,109,114,101,95,110,107,91,110,102,103,106,100,96,104,82,110,98,109,110,133,97,94,108,104,106,102,106,100,117,100,105,115,113,105,108,105,91,92,89,103,117,114,117,106,111,103,109,102,104,106,111,91,100,99,120,105,104,102,112,120,96,76,100,113,94,101,98,103,112,113,114,113,108,106,83,106,107,100,114,111,108,120,119,101,108,117,95,94,100,108,114,101,91,97,99,111,106,109,109,87,105,119,116,114,110,119,110,112,108,105,119,116,101,99,125,112,112,105,103,109,100,110,78,107,101,108,111,99,113,101,103,117,112,99,103,102,101,108,101,112,102,106,99,102,114,108,106,105,103,88,106,101,99,95,99,110,102,99,112,113,111,100,97,112,103,109,102,116,117,106,108,112,99,99,110,105,107,110,101,88,100,113,103,109,103,106,91,116,95,109,110,113,125,113,101,110,104,115,81,124,96,112,106,104,119,105,112,105,102,97,105,107,81,117,114,98,103,98,97,105,98,106,109,104,104,104,101,99,107,120,111,106,106,105,104,120,108,110,92,111,111,105,116,105,113,106,106,106,119,104,108,109,104,102,106,109,105,99,115,92,106,109,108,104,97,121,109,112,93,124,109,117,102,89,101,99,113,117,103,102,96,111,131,110,94,98,109,116,105,108,114,109,101,105,105,116,122,97,98,110,115,105,107,71,113,107,106,115,111,112,114,107,114,98,108,112,109,100,109,113,104,87,117,110,116,88,102,112,110,99,105,109,110,110,114,106,99,113,114,105,109,90,99,103,102,109,120,104,103,119,117,121,122,100,105,92,106,106,113,115,124,110,108,106,112,97,109,106,104,100,94,99,104,105,84,84,114,85,108,98,95,103,95,98,112,113,102,121,101,111,88,109,110,97,101,106,94,103,105,112,102,117,94,112,108,97,111,103,99,111,110,119,99,106, +583.38965,107,103,100,102,106,106,99,93,87,115,112,94,110,115,99,113,99,96,120,96,122,97,114,92,100,91,88,80,104,113,104,91,108,102,103,105,95,117,94,106,106,105,92,109,104,101,87,111,102,105,108,113,93,100,90,83,104,87,96,91,103,103,102,103,108,98,79,111,99,114,101,102,96,100,104,103,95,97,92,107,93,101,116,96,111,99,114,104,103,102,108,103,100,98,100,96,99,106,105,104,108,108,99,105,91,105,130,106,96,94,118,110,105,102,116,105,127,124,103,104,106,105,110,103,97,110,105,106,127,99,99,105,114,95,105,99,104,111,100,92,105,113,103,92,98,96,120,102,105,115,93,90,116,97,109,95,104,103,92,103,97,109,100,108,102,102,115,100,106,99,110,92,100,114,98,110,104,95,116,104,102,109,99,95,101,105,92,93,95,110,107,96,90,96,105,103,98,95,103,102,105,97,103,112,99,94,122,99,99,110,106,102,119,106,112,101,101,108,100,102,97,116,118,103,102,112,101,101,107,115,99,107,105,100,115,104,103,107,105,84,92,94,110,105,100,110,94,99,101,113,102,119,100,106,96,98,92,116,97,91,106,107,109,102,92,100,118,104,96,110,101,104,105,121,104,105,87,111,111,122,102,104,106,101,110,107,98,97,90,118,109,112,107,112,105,101,116,104,108,106,114,111,111,112,88,116,103,106,100,104,91,99,96,99,108,104,99,109,129,103,98,109,107,107,102,97,102,98,115,96,98,108,108,106,105,104,108,101,97,104,100,109,96,104,105,110,99,107,99,110,114,102,100,106,91,103,98,110,107,104,96,109,99,96,98,108,95,117,97,111,106,103,113,108,107,89,101,99,109,102,110,99,98,118,110,118,108,117,101,106,121,99,99,104,85,93,97,110,100,108,112,102,115,107,96,89,115,107,99,103,102,103,104,113,99,108,106,111,110,113,102,95,103,108,102,82,80,105,103,94,107,102,103,102,96,87,88,105,104,104,107,102,102,102,97,102,96,95,109,88,102,99,106,110,116,107,108,108,101,121,102,100,108,102,82,114,96,128,95,109,99,105,123,99,95,98,95,108,105,107,113,97,103,93,97,103,112,109,97,108,99,102,97,98,117,104,102,113,107,101,98,108,103,100,106,123,100,98,103,103,102,91,103,104,110,103,107,96,82,108,107,99,97,107,97,87,114,97,112,108,94,85,105,94,104,97,105,109,107,107,108,106,100,102,113,95,99,121,84,105,101,119,113,94,89,98,98,107,96,92,118,103,107,104,104,106,111,109,104,110,96,108,108,109,103,102,92,102,102,86,104,107,106,107,107,100,108,108,109,109,101,111,97,99,111,109,107,118,105,111,103,104,95,104,102,107,120,102,98,122,102,106,102,96,85,105,112,103,105,97,110,105,116,100,99,99,103,98,97,105,104,101,109,113,96,99,97,82,73,106,99,99,103,99,112,96,105,98,106,109,110,91,99,98,112,107,100,102,105,100,98,127,95,109,105,117,94,102,100,97,91,110,94,102,94,103,104,118,109,105,117,107,117,109,97,106,119,102,104,106,106,100,95,91,100,117,99,93,112,92,106,104,106,92,112,108,98,108,109,94,114,118,99,89,99,96,98,110,106,105,104,107,102,119,101,96,99,108,103,97,109,103,100,102,106,100,111,96,100,109,104,102,103,99,105,109,96,104,111,106,110,109,116,104,107,97,94,106,102,112,99,99,105,102,101,111,108,107,106,108,108,106,113,104,102,118,106,103,120,115,102,106,115,112,102,117,115,117,109,109,109,108,103,97,122,108,116,96,115,110,95,108,91,108,103,97,111,106,106,104,113,117,104,110,108,100,108,110,113,95,112,129,98,109,117,100,110,107,102,105,113,103,100,106,109,100,98,103,112,99,102,104,113,131,98,93,106,103,101,114,113,114,94,106,109,122,103,120,112,90,121,103,95,112,99,105,99,105,103,112,109,115,111,102,111,100,111,98,102,104,105,113,104,109,113,97,99,106,101,99,103,112,107,108,109,104,119,105,112,118,97,113,106,109,104,103,94,107,104,94,113,99,115,100,109,108,108,104,100,118,117,83,113,107,104,78,113,115,102,100,104,112,103,111,98,101,82,114,111,100,99,103,98,112,98,102,90,96,102,102,108,96,117,107,109,109,104,106,105,97,102,109,99,111,122,104,98,105,111,95,94,101,108,115,97,101,109,103,113,106,119,107,109,106,102,105,100,100,109,108,106,90,108,105,99,88,104,100,114,108,103,105,118,99,105,117,108,104,98,93,103,98,98,105,108,110,112,99,102,102,118,105,121,93,98,115,103,116,107,144,124,118,111,101,132,108,108,147,140,166,160,191,201,178,228,221,198,169,200,183,187,177,175,161,113,130,121,129,129,129,113,115,119,125,115,105,114,115,104,117,95,114,109,112,129,106,101,98,115,100,94,121,96,68,114,107,104,104,110,108,103,108,92,88,112,104,104,96,129,110,105,99,95,94,105,103,117,100,109,108,103,106,112,106,95,109,106,117,87,105,108,109,97,98,106,110,103,112,105,111,102,107,101,103,113,108,100,94,101,95,109,99,102,113,99,106,103,98,108,123,93,101,107,102,96,103,113,100,103,105,114,91,106,105,121,113,97,98,102,118,98,110,106,112,106,98,106,107,97,100,109,106,93,115,108,112,117,104,97,104,102,109,114,113,106,98,113,102,110,100,115,120,104,92,119,106,107,104,113,106,87,113,107,103,99,113,110,104,83,114,109,101,89,99,104,106,105,106,111,98,104,103,100,117,105,108,115,101,117,106,113,102,109,103,103,97,110,105,108,106,104,106,113,104,92,97,104,105,98,112,113,87,105,99,113,126,108,111,99,111,98,100,110,106,108,106,112,89,104,114,102,117,101,112,102,106,112,109,80,108,110,106,100,109,100,99,129,98,109,107,66,99,96,114,104,94,109,104,101,114,102,105,104,102,127,101,106,106,103,129,112,107,116,105,98,108,111,112,109,104,104,79,95,117,102,109,76,98,98,113,109,101,108,96,105,107,111,105,107,104,95,102,93,106,93,108,102,105,103,83,110,102,106,99,108,89,116,103,96,99,109,110,101,98,98,100,96,100,105,95,110,108,106,97,112,103,102,111,102,115,100,102,102,109,102,100,99,113,110,102,108,104,100,109,104,105,109,103,106,109,105,95,101,104,107,92,110,115,107,103,105,103,103,96,106,126,117,118,109,118,117,117,120,106,110,113,100,111,104,103,101,94,120,103,113,115,104,96,100,96,98,100,112,91,101,107,100,83,100,95,102,105,108,110,112,102,90,108,114,79,97,103,103,94,105,93,98,103,108,99,101,113,115,103,108,118,100,104,119,95,105,95,95,115,104,106,99,108,108,90,100,105,90,100,105,98,107,96,105,101,88,98,107,107,104,113,130,102,99,105,112,112,108,98,92,113,105,96,109,107,112,109,110,94,101,116,113,99,107,102,102,109,101,104,102,98,112,129,93,97,119,92,101,94,111,98,98,118,108,113,95,105,109,114,111,102,90,99,98,103,107,108,99,107,106,103,117,108,114,92,102,97,95,110,104,100,111,101,96,112,92,88,102,103,109,97,112,107,103,96,108,107,103,100,97,113,104,111,109,89,104,93,106,118,104,79,103,110,110,113,108,107,106,110,95,116,102,95,124,96,103,108,95,110,98,98,115,104,113,110,114,110,92,100,101,107,92,98,112,109,106,95,93,98,99,101,99,112,99,98,103,101,96,66,97,101,100,102,82,113,97,101,95,119,114,96,101,107,104,100,112,99,104,108,97,121,91,97,104,102,99,86,93,110,99,105,110,104,110,103,100,117,104,100,110,95,109,108,83,101,100,120,92,105,109,98,113,97,97,99,105,89,100,99,93,93,101,99,116,97,128,101,106,99,96,93,115,104,109,87,95,100,106,105,121,91,90,88,92,101,121,86,104,102,100,104,95,96,92,94,107,98,92,113,120,110,116,88,102,114,93,105,105,113,108,109,106,101,91,104,109,106,107,87,104,106,91,95,113,76,102,99,101,94,104,101,106,106,101,107,108,93,96,90,111,106,97,101,102,108,92,93,102,104,90,107,100,101,108,100,96,89,100,104,104,107,117,105,98,97,113,103,107,100,110,95,93,119,102,98,102,106,101,112,99,112,97,107,104,95,120,99,95,109,107,90,101,94,105,101,111,92,109,108,92,98,98,123,104,97,105,107,103,94,87,108,94,102,108,94,108,104,95,104,107,108,99,102,99,104,98,112,110,114,106,95,107,105,105,104,105,97,102,105,117,104,108,101,99,103,128,94,101,107,109,111,112,100,97,107,101,122,107,110,84,104,106,101,105,98,93,103,100,109,99,104,92,104,107,101,97,78,102,89,108,113,98,109,114,105,105,95,105,101,116,96,101,104,92,96,99,107,107,103,103,102,101,98,117,114,91,91,103,95,117,109,104,106,108,94,99,86,103,100,95,110,103,120,107,112,109,88,117,96,108,101,116,109,101,105,103,101,101,102,123,104,82,109,108,114,102,98,93,105,91,107,95,97,99,100,102,102,116,108,98,93,101,95,106,93,107,108,89,109,95,110,112,127,98,106,107,102,98,102,113,110,109,95,91,108,98,87,112,95,92,105,100,95,108,88,95,103,102,75,102,98,100,99,94,94,112,112,105,107,102,91,123,101,95,105,104,89,98,87,102,107,103,96,101,123,104,97,102,104,95,107,101,110,106,95,106,95,91,95,113,96,111,105,85,102,99,97,111,102,98,99,96,93,86,96,99,93,106,104,97,99,93,109,114,103,112,106,105,87,93,108,88,110,109,72,112,108,108,78,104,98,88,102,92,98,95,98,109,108,113,99,91,108,83,94, +583.53064,107,102,93,113,91,115,99,98,90,102,101,105,89,102,109,115,101,87,105,109,96,97,105,107,106,105,100,108,111,86,99,93,105,94,102,107,92,108,83,115,103,102,106,108,113,105,113,102,102,90,101,110,106,109,118,104,98,99,98,96,108,111,119,113,105,116,102,103,106,103,113,113,88,102,99,102,108,115,111,105,110,99,115,107,95,103,112,106,121,102,100,105,95,100,95,101,107,95,114,103,104,98,98,102,99,108,108,116,101,95,99,106,103,97,113,111,101,112,96,101,117,88,99,107,103,113,106,99,101,107,114,111,103,106,95,113,99,113,106,99,109,113,98,103,99,99,100,98,102,115,101,104,114,102,109,102,107,106,107,108,104,100,113,97,113,101,95,91,92,101,106,110,103,105,111,112,107,107,102,105,93,108,99,97,119,110,102,93,112,109,114,103,107,105,111,100,103,100,111,116,82,93,95,102,103,99,109,109,121,113,106,111,103,106,112,91,109,106,104,100,113,115,109,96,100,138,111,107,104,115,105,110,99,111,100,108,110,123,107,92,105,109,109,103,104,116,98,108,103,101,98,106,107,79,111,106,111,97,105,109,111,96,91,127,95,119,112,107,100,113,102,91,120,100,108,100,89,113,96,112,101,104,110,113,109,107,94,115,104,108,116,100,104,106,124,106,118,105,85,113,104,109,100,116,95,103,108,110,121,116,108,118,115,111,125,118,96,108,116,103,119,114,113,120,107,109,116,118,108,107,104,103,104,110,97,101,116,101,113,113,108,116,99,95,103,115,104,121,113,99,103,105,96,109,104,97,112,107,102,101,106,105,108,92,89,94,105,123,108,117,102,100,117,105,111,97,105,102,105,108,109,99,93,113,106,117,100,103,103,107,111,102,102,107,93,100,99,103,100,107,97,119,107,102,85,111,110,109,113,106,102,102,107,105,110,100,101,101,114,112,103,103,105,98,104,108,100,95,104,121,97,102,99,114,115,116,105,111,103,103,107,99,100,116,104,103,100,102,103,112,109,113,97,111,111,112,108,105,105,108,104,94,110,102,110,109,110,110,108,94,101,100,113,103,93,109,121,107,102,111,104,94,100,107,105,104,93,112,99,106,99,96,110,99,92,109,72,103,97,107,116,104,92,113,97,106,98,100,125,98,105,103,116,92,109,107,99,114,111,125,103,111,111,104,116,110,124,112,100,99,99,111,103,109,99,112,87,101,103,109,119,119,118,113,115,112,110,108,112,94,102,105,103,94,105,100,99,99,108,98,104,93,95,105,95,106,118,96,100,97,99,109,111,106,110,103,99,123,103,94,102,102,91,110,99,111,114,119,97,95,111,112,97,108,103,108,108,104,99,109,111,110,99,91,95,104,107,104,100,98,93,101,112,112,112,101,99,97,109,100,104,108,101,96,125,114,111,101,107,102,102,103,94,118,84,113,104,100,106,108,124,99,104,107,97,98,103,94,107,117,109,76,109,113,101,109,107,104,108,106,110,111,95,114,110,108,108,101,115,103,109,103,100,81,106,108,108,109,103,109,103,116,107,102,121,105,109,105,103,112,122,104,99,103,99,101,112,112,103,82,103,104,118,111,94,109,124,108,84,118,107,104,109,97,105,104,106,106,103,99,92,101,107,107,105,105,110,118,118,108,104,106,106,103,111,118,117,104,117,102,125,109,103,111,107,112,111,104,103,100,119,99,99,109,109,103,104,113,109,104,103,110,115,99,104,106,107,104,107,98,111,99,117,95,103,103,111,107,107,100,103,109,111,108,92,115,103,130,107,106,113,105,113,110,109,101,98,104,106,95,100,104,103,98,125,103,102,106,104,99,117,106,101,111,103,103,108,103,91,117,116,115,102,103,112,100,109,105,103,114,114,107,107,103,94,110,122,108,97,103,105,95,99,111,109,111,114,114,111,99,102,106,115,111,107,100,101,100,103,104,71,108,112,104,106,107,93,111,109,103,110,112,102,109,105,108,103,113,110,102,115,107,117,99,98,102,108,95,110,105,99,106,98,96,110,102,108,113,107,104,101,112,107,107,106,102,96,107,90,106,105,108,99,110,95,110,79,100,98,91,106,109,112,115,112,111,94,98,105,100,87,111,112,110,109,113,105,102,106,102,85,108,115,102,106,111,94,102,79,114,105,107,98,109,97,95,91,118,102,94,126,98,97,98,109,107,110,123,80,105,109,113,97,104,115,110,94,99,93,120,104,103,110,99,92,95,107,106,104,112,90,108,118,99,100,91,108,110,117,113,115,106,97,106,75,106,103,116,104,95,108,106,109,114,110,112,101,110,99,122,104,104,107,93,117,116,100,111,109,105,103,122,105,112,111,121,127,126,127,146,172,200,206,197,212,194,221,183,203,163,203,195,163,150,152,144,125,128,136,110,129,125,105,110,109,111,102,108,103,97,113,111,110,108,114,117,102,101,111,111,111,107,99,106,119,96,105,101,115,109,103,121,116,96,102,100,114,95,106,101,102,115,104,99,114,98,101,106,108,115,106,105,109,105,101,106,96,109,99,109,114,105,96,118,105,106,111,113,89,109,111,104,93,115,100,100,98,105,105,97,100,96,111,106,104,112,110,105,118,105,118,99,106,83,100,105,110,106,107,97,104,106,117,99,103,103,107,111,99,104,107,105,107,96,100,108,113,119,105,104,119,108,105,112,92,123,99,99,100,110,81,113,108,103,99,101,101,100,98,90,98,103,106,113,104,108,102,102,109,97,101,110,101,110,97,113,101,107,109,117,109,103,100,117,105,110,98,108,102,109,102,96,109,113,94,113,119,88,99,110,110,105,109,105,99,109,101,100,104,101,116,98,105,108,99,98,108,98,101,86,104,104,105,117,118,105,107,99,111,102,88,106,109,99,110,100,113,109,115,99,92,112,109,104,89,99,102,113,92,105,105,96,104,103,100,111,103,93,87,90,106,103,103,108,104,105,116,123,102,94,109,103,104,93,113,111,100,123,102,100,108,109,109,115,104,99,83,101,91,112,108,102,112,109,116,105,95,101,113,106,92,110,112,106,108,109,104,106,107,108,103,113,107,112,112,101,106,105,102,112,102,111,102,102,101,114,105,100,107,117,104,102,110,104,112,108,96,105,114,96,103,85,97,119,106,90,109,106,99,117,110,99,115,102,95,112,104,111,97,109,100,104,105,104,113,116,111,93,119,113,112,100,97,95,106,97,113,111,100,128,116,107,108,99,109,91,132,106,113,102,109,110,95,113,121,109,120,110,99,113,103,104,106,107,104,105,101,79,106,111,98,106,103,103,101,106,105,111,123,108,112,115,101,107,106,106,102,101,98,96,108,107,107,102,105,96,108,106,109,106,111,104,117,93,90,121,95,105,101,92,107,116,98,94,97,108,109,94,108,106,104,111,102,101,104,103,97,100,97,102,113,110,103,95,100,104,102,99,102,102,104,105,106,104,99,116,101,108,99,97,108,95,98,95,94,108,107,99,104,113,107,115,108,97,108,112,98,103,103,105,108,105,99,99,102,113,107,109,112,111,68,108,97,111,121,105,96,101,94,98,104,98,100,101,101,107,105,104,113,109,98,106,97,98,111,104,115,110,103,96,110,106,127,109,100,96,115,115,109,105,100,103,107,111,120,107,106,91,100,106,98,106,96,104,93,101,94,110,105,108,111,108,99,112,92,99,103,102,110,112,120,94,98,105,97,103,117,113,118,112,106,94,100,88,90,113,108,101,110,94,96,112,100,105,105,106,95,105,108,103,103,107,113,109,109,108,99,106,95,114,108,110,91,106,103,105,117,112,98,109,103,103,114,123,107,120,103,97,96,107,106,111,95,98,109,109,124,96,101,100,97,114,103,111,121,104,96,100,100,101,100,104,99,99,105,98,103,102,114,106,106,112,107,120,105,104,104,115,105,99,105,104,106,112,113,112,108,98,110,112,102,116,104,115,99,113,101,112,103,105,104,100,104,110,111,105,106,112,93,110,102,110,94,100,108,96,98,104,106,116,121,102,107,105,105,108,117,102,117,103,80,108,103,103,104,113,98,112,115,112,110,109,102,102,98,117,113,99,99,102,110,101,100,106,107,114,98,101,99,100,113,91,90,110,101,107,106,100,100,93,105,112,108,110,105,106,106,107,99,101,106,108,108,105,117,106,111,96,104,106,99,108,107,106,113,101,100,101,107,105,113,108,112,108,107,101,96,105,111,102,102,105,108,91,104,109,112,98,97,97,102,115,112,99,99,100,104,106,108,110,104,99,141,106,113,101,97,99,106,99,106,100,109,115,116,108,113,107,115,102,110,103,120,100,113,102,110,107,104,104,99,101,100,103,104,108,103,101,103,97,107,108,112,102,100,102,123,96,89,110,103,110,101,119,115,120,108,103,104,105,105,98,104,121,100,137,84,95,111,97,110,111,92,113,102,102,103,104,105,108,106,84,101,99,104,94,112,100,104,104,105,99,99,104,99,88,102,99,105,103,110,84,111,109,116,120,113,111,98,92,106,97,105,101,112,99,104,94,71,102,100,98,99,100,107,113,108,94,100,100,105,116,110,113,106,112,109,98,108,116,104,101,108,105,114,113,104,115,94,98,109,106,110,116,109,118,110,104,100,98,103,102,106,98,88,105,107,109,120,105,110,113,99,121,103,109,105,99,102,98,98,117,100,116,117,104,114,108,88,104,109,87,115,101,118,104,103,105,109,105,105,108,109,104,102,100,99,100,97,108,110,103,101,99,114,100,111,112,102,106,119,102,98,109,100,108,114,99,102,95,106,106,110,99,104,104,106,101,103,109,108,112,99,89,110,99,74,99,95,111,103,105,108,104,102,99,102,101,98,109,118,105,107,97,112,111,109,96,97,96,91,105,96,99,86,113,122,105,109,102, +583.67157,129,109,93,96,79,99,102,104,106,94,101,102,99,117,114,104,96,97,90,124,93,98,71,107,107,110,104,107,106,98,116,111,97,108,113,96,118,105,95,97,111,99,106,94,103,110,104,100,88,109,90,102,100,103,113,99,97,100,100,98,89,103,109,106,107,113,101,113,74,114,104,107,90,97,98,105,101,115,107,105,116,101,110,68,87,99,107,118,99,96,106,103,109,105,101,102,107,94,97,96,115,108,110,106,113,108,103,102,97,96,117,100,108,103,101,103,104,103,100,100,92,101,99,114,116,106,104,95,96,99,110,100,103,89,107,112,102,95,120,100,101,109,98,102,100,103,99,112,93,101,91,101,106,112,103,107,102,94,114,106,101,96,98,102,98,97,102,102,105,98,86,100,88,85,91,104,97,97,105,98,102,107,125,110,104,91,92,99,95,101,95,106,98,91,101,96,101,111,104,104,112,104,117,114,93,97,107,84,103,112,90,103,100,99,92,95,100,106,111,111,112,96,108,97,99,110,99,102,111,104,103,102,104,108,104,111,110,104,107,96,110,100,109,100,108,101,98,117,107,125,105,111,102,104,107,105,95,104,97,96,122,99,108,95,103,108,99,99,97,89,91,107,102,80,97,96,100,106,104,119,110,100,101,100,94,114,95,104,92,106,103,100,106,95,105,119,106,108,104,98,98,108,93,111,98,104,114,108,103,110,93,114,101,111,109,104,94,93,99,97,94,100,96,115,101,104,101,88,101,109,101,101,107,104,102,98,102,95,104,106,106,94,95,92,109,108,119,102,102,105,95,99,120,102,117,107,99,99,107,107,105,99,104,106,100,94,109,117,99,113,104,101,111,126,113,110,108,102,95,108,109,118,105,111,99,95,102,115,109,84,84,108,108,97,101,95,89,76,82,110,92,110,110,109,109,112,99,71,110,106,112,93,97,99,95,95,108,106,104,105,103,96,95,102,117,104,70,109,100,101,96,103,100,99,89,110,113,103,103,100,103,101,98,104,91,108,106,103,115,109,98,96,101,113,107,113,99,104,113,107,109,106,125,107,96,121,104,99,102,101,101,110,92,112,102,99,109,109,110,110,105,107,99,88,101,99,108,114,89,94,95,103,104,107,105,103,95,110,104,95,104,102,92,96,92,87,120,97,106,117,108,104,112,107,108,118,96,103,96,101,103,104,100,106,101,103,103,107,113,107,100,84,110,106,101,106,101,105,105,107,102,108,110,96,107,115,105,97,83,112,110,96,95,114,104,105,113,92,94,91,105,109,104,108,92,102,103,100,108,90,101,97,102,98,93,106,93,96,99,90,112,102,98,109,96,97,99,104,95,106,103,102,98,103,112,113,95,102,106,112,103,100,97,93,102,99,100,97,105,106,101,91,111,103,96,97,115,95,99,106,109,109,91,113,109,108,116,117,111,118,106,99,116,111,100,109,102,96,101,93,101,107,101,115,101,99,101,101,103,113,98,105,99,108,93,99,109,109,105,104,107,104,103,106,100,95,103,105,107,101,108,101,106,97,100,109,107,100,94,108,106,99,109,104,111,83,94,101,95,121,103,108,91,107,113,101,98,117,102,96,102,96,104,105,107,98,101,113,93,118,107,114,106,94,104,95,98,94,107,108,109,109,110,114,95,94,108,112,100,113,99,108,99,104,101,94,106,103,100,107,102,101,106,107,99,94,108,99,103,95,119,96,112,96,101,99,81,109,107,108,93,104,104,104,93,104,98,118,109,122,106,122,112,104,94,105,101,110,113,108,105,103,102,107,106,102,109,106,109,119,112,119,97,109,102,99,107,113,107,109,95,104,91,91,101,111,112,103,124,107,121,113,99,92,111,106,109,108,96,101,108,91,108,110,107,104,94,110,101,113,104,98,117,104,99,112,119,101,104,100,120,105,113,93,104,100,106,98,104,96,110,97,104,93,104,110,94,95,118,101,107,104,121,103,138,88,105,107,111,98,100,111,108,101,98,109,113,80,98,104,109,109,94,101,103,112,99,109,83,100,84,98,104,111,102,97,102,103,98,109,98,96,101,104,93,108,98,114,104,113,112,100,104,122,109,106,99,109,101,102,105,102,109,102,112,110,111,96,100,100,114,115,142,105,97,106,91,110,101,100,117,113,94,106,105,99,102,106,112,92,113,86,107,113,115,102,107,93,96,91,133,103,108,113,116,99,97,114,107,102,97,108,106,100,96,103,107,94,98,112,93,111,96,119,102,110,99,104,100,109,105,110,103,105,107,105,93,113,100,95,103,102,98,91,92,99,111,107,107,106,98,102,105,105,112,113,105,108,101,104,119,110,121,97,102,107,101,114,105,117,105,120,98,110,109,118,116,137,142,153,148,178,184,191,210,217,221,188,185,186,192,204,188,154,140,144,125,120,148,128,104,117,106,101,93,96,121,103,109,97,108,121,105,116,118,103,77,82,108,97,105,103,101,110,109,116,103,98,115,89,99,106,110,106,99,109,109,107,104,112,117,101,115,113,109,114,114,102,106,108,107,112,110,94,108,97,111,102,102,101,109,106,107,115,120,110,99,110,104,108,111,96,110,91,127,103,104,100,112,94,109,103,109,102,105,119,103,96,103,98,124,117,101,100,102,99,111,86,116,103,107,101,108,101,118,107,113,108,105,112,105,105,110,100,102,100,102,99,110,114,110,107,104,98,103,104,119,98,101,115,113,106,113,103,106,105,112,109,120,102,105,111,113,104,99,114,114,110,116,106,102,105,116,107,99,104,110,111,101,113,116,136,105,98,108,102,101,108,100,115,96,110,104,110,107,106,95,111,107,117,102,105,122,111,97,108,109,93,98,102,106,114,106,107,121,106,117,100,96,114,109,99,105,112,114,113,107,109,119,100,99,116,97,110,93,106,97,106,105,113,103,98,118,99,106,107,102,92,111,100,106,109,105,100,108,110,101,108,96,112,103,113,98,106,111,97,119,110,107,99,96,107,110,96,112,99,100,119,106,107,121,103,113,112,98,115,103,103,116,99,103,95,101,95,107,106,106,108,94,104,99,117,116,112,106,101,109,113,106,103,104,103,80,109,109,90,104,114,108,107,113,119,106,121,106,117,98,98,102,102,104,83,102,113,116,97,109,125,106,103,101,90,106,95,109,98,107,102,104,104,89,104,119,102,117,102,107,100,109,93,107,97,83,110,107,112,113,104,115,96,100,104,98,98,98,106,96,102,99,106,98,108,103,101,98,96,106,98,108,98,105,100,102,124,106,103,99,105,106,106,103,105,112,113,121,103,100,107,105,99,99,102,101,114,102,100,112,102,106,102,99,99,106,107,109,113,87,97,104,102,91,109,112,106,110,103,120,110,108,98,97,114,103,99,91,106,86,106,95,119,99,92,97,110,104,112,94,118,111,108,105,109,109,110,97,108,106,104,99,102,99,102,110,102,87,102,100,103,109,100,107,112,105,112,107,112,108,97,97,104,77,100,109,99,109,100,117,109,115,107,111,108,103,102,109,101,105,105,96,95,109,120,92,115,106,98,104,105,112,100,113,109,108,112,113,107,109,109,111,114,107,114,94,106,100,99,122,100,108,94,99,100,103,100,113,97,115,110,107,109,96,104,111,108,109,103,98,101,106,108,91,100,112,117,105,107,117,129,106,95,98,98,119,108,92,106,109,104,110,115,127,112,94,113,104,107,103,100,96,92,98,95,117,112,102,97,95,100,103,111,116,95,105,103,114,119,109,104,95,112,101,105,110,98,110,86,101,114,111,109,111,112,123,107,101,104,104,103,104,107,99,98,106,105,130,103,105,108,103,98,98,86,121,112,98,106,98,95,108,113,108,104,113,109,108,105,102,106,104,95,116,105,103,111,103,97,89,104,121,102,108,90,104,94,108,98,109,99,84,102,101,115,104,112,104,109,106,97,112,105,84,103,104,101,103,96,124,103,109,99,105,119,102,103,103,100,102,100,102,106,115,112,98,117,116,101,103,107,99,117,99,121,109,106,114,101,102,99,108,102,108,112,107,129,102,99,94,96,106,115,104,105,97,102,107,112,110,115,109,107,98,94,93,96,94,106,102,105,111,108,120,102,101,112,107,106,105,104,111,114,105,98,102,88,101,99,106,102,111,102,102,100,93,113,106,110,106,94,99,98,96,112,109,100,105,100,113,101,101,111,105,110,111,111,105,108,102,120,111,102,103,100,125,108,107,104,122,108,107,98,102,104,117,117,101,103,121,105,98,110,97,110,99,113,105,112,97,109,108,96,103,97,116,108,119,108,115,100,100,107,113,108,101,108,98,97,109,98,111,98,110,101,105,109,105,102,128,109,99,109,107,98,91,113,109,116,107,106,103,120,103,104,102,112,100,103,106,105,116,105,96,110,112,102,114,108,105,86,116,103,112,87,106,119,105,115,105,101,103,106,125,95,112,104,95,102,99,105,101,103,102,94,99,108,109,100,107,97,101,107,108,92,111,112,109,102,106,115,102,104,98,94,95,97,96,104,107,112,96,102,117,108,100,102,112,101,105,111,107,108,103,108,105,100,90,120,99,106,107,111,104,109,112,100,107,103,106,113,100,100,105,97,111,116,117,106,119,109,106,112,104,119,104,106,100,101,105,113,82,109,106,106,111,103,112,112,120,99,102,108,100,105,100,102,86,99,110,97,110,105,108,110,107,99,94,94,103,123,100,112,105,109,113,92,108,101,109,99,91,102,102,99,105,110,104,105,92,99,103,105,103,101,102,103,100,106,80,105,101,101,105,103,107,109,121,109,107,98,109,109,108,77,99,125,110,111,71,106,97,105,121,104,100,97,101,109,116,92,98,89,102,117,106,116,108,113,102,119,109,106,88,98,106,102,113,107,97,95,118,95,102,96,110,107,134,115,107,96,116,107, +583.81256,102,113,96,117,85,113,91,102,102,102,99,96,96,107,100,107,105,105,111,100,110,85,103,105,98,93,99,122,103,98,96,91,112,106,117,100,105,86,100,116,101,98,90,91,115,115,95,106,110,110,104,110,98,104,105,102,95,100,110,113,98,101,101,97,105,110,87,108,125,113,104,103,99,101,100,104,106,108,104,107,94,93,87,100,104,96,102,102,107,114,97,95,109,106,105,108,108,88,105,108,98,102,106,114,109,113,115,99,95,99,81,102,103,108,104,107,92,106,101,105,108,106,108,103,108,112,102,109,100,100,110,107,112,102,104,104,99,111,94,95,108,112,110,104,92,97,121,98,89,101,105,86,102,102,93,99,92,102,111,91,99,101,121,113,117,112,96,104,114,96,94,113,100,97,97,101,105,100,107,105,92,94,108,104,103,99,86,100,90,108,118,95,95,100,112,83,104,94,107,127,98,104,91,110,96,104,99,112,115,128,102,107,103,105,95,104,100,102,102,106,121,108,104,98,98,118,100,104,106,99,84,102,100,116,97,106,110,107,92,113,84,100,111,103,113,114,106,94,93,108,107,97,96,100,100,101,105,116,95,96,95,117,95,97,100,112,105,104,94,93,107,84,101,99,106,107,108,100,118,98,99,97,75,101,96,100,103,95,105,105,102,106,117,118,111,110,122,101,96,117,97,97,106,126,92,100,107,113,99,106,97,121,107,113,100,83,105,113,102,115,105,106,132,99,111,97,102,102,114,108,110,100,109,98,104,100,106,108,97,100,110,103,88,103,104,112,113,112,100,104,101,103,109,101,102,104,122,105,109,109,111,103,106,105,100,102,103,119,102,104,114,102,99,105,101,132,109,98,93,109,116,99,96,103,109,112,97,101,101,92,128,98,114,105,119,98,100,111,97,111,93,99,87,93,124,97,105,107,105,98,102,114,104,108,103,110,100,100,114,98,108,95,111,106,114,107,95,93,93,104,104,106,103,97,97,113,92,100,104,104,93,96,111,107,94,100,95,102,109,106,104,101,123,108,120,119,98,116,103,110,109,98,97,115,106,104,102,107,101,93,99,103,105,100,97,113,97,117,106,105,102,113,110,108,103,102,115,105,101,94,115,110,94,100,98,115,98,108,111,104,113,105,97,113,101,121,86,110,100,109,107,95,93,114,109,111,107,103,103,108,117,116,108,113,125,95,114,102,102,87,111,99,99,100,104,115,103,88,101,96,92,120,106,100,115,106,101,106,123,94,106,100,100,118,101,98,101,108,89,95,94,109,103,108,104,99,105,97,117,105,97,105,91,106,111,104,128,96,112,118,106,114,104,95,108,104,103,112,88,96,99,105,85,110,112,94,90,109,104,100,105,106,104,96,95,82,100,109,107,106,108,99,109,105,114,107,113,96,115,101,101,94,104,106,115,90,100,107,108,102,121,103,94,111,101,113,95,97,107,106,114,113,94,101,104,101,100,91,108,105,117,122,127,95,108,103,109,98,110,102,109,99,88,109,110,106,114,88,119,104,105,96,111,111,114,106,102,97,108,108,112,110,115,82,97,108,96,72,100,108,110,103,92,108,109,100,89,109,103,94,88,107,98,100,83,109,110,103,103,106,109,99,96,109,107,98,139,98,96,92,109,89,105,100,95,97,114,102,110,107,106,122,105,87,116,114,112,114,100,110,111,105,104,100,100,105,92,110,92,106,104,88,104,96,107,121,114,104,108,114,105,102,116,99,110,113,107,113,100,106,115,99,104,108,100,101,108,99,93,75,100,107,112,110,106,107,109,102,105,114,108,108,100,107,96,111,109,110,110,107,106,103,93,94,107,108,118,95,95,92,100,115,104,104,105,104,106,111,92,108,103,104,102,116,102,98,105,111,117,125,114,111,105,104,99,98,105,106,105,105,88,109,108,107,108,103,102,103,116,100,115,105,109,97,107,111,97,114,80,102,108,103,102,94,106,108,99,108,105,100,102,114,91,107,104,101,101,88,98,106,100,108,112,109,95,102,102,116,113,107,113,118,107,98,110,93,99,108,107,106,115,106,100,100,113,98,101,108,110,99,101,107,88,94,116,117,95,106,91,104,111,116,110,107,103,91,99,102,96,95,104,99,101,107,95,97,96,102,101,102,107,95,112,114,109,103,98,102,111,106,96,107,121,111,100,116,100,99,90,113,82,113,103,98,116,96,103,92,102,104,100,105,117,99,103,101,109,107,104,97,98,109,111,104,109,96,101,94,111,94,113,99,106,101,114,109,106,99,101,99,111,98,104,99,96,109,97,113,114,91,105,106,103,97,123,90,108,98,97,109,107,102,104,100,108,126,102,108,96,103,120,99,113,115,111,112,115,130,135,169,134,197,216,232,201,187,195,176,182,164,169,192,152,166,152,156,137,122,130,118,125,116,112,97,112,108,97,130,105,107,108,112,97,106,110,108,111,101,104,105,104,100,96,107,110,109,94,103,112,108,111,114,111,102,87,102,108,77,106,107,112,124,132,104,104,110,104,105,106,101,105,112,115,100,108,96,94,85,103,113,115,111,106,92,116,110,117,111,103,100,104,110,107,82,109,102,114,116,116,101,113,98,101,106,94,100,99,100,104,112,111,107,110,98,113,112,115,98,109,112,106,82,110,100,105,101,120,120,131,88,105,101,113,101,109,103,113,101,104,92,99,99,85,107,109,110,126,116,103,111,95,101,103,107,107,104,100,103,106,106,116,107,117,127,102,110,103,106,100,100,112,111,100,119,111,108,104,115,98,102,111,107,117,106,105,103,117,106,107,115,102,113,108,104,102,98,98,112,104,107,133,104,113,108,111,108,100,109,110,111,106,105,116,107,103,106,98,113,100,116,111,98,105,113,118,101,93,105,112,118,113,94,81,107,107,105,105,112,113,108,106,103,112,98,123,113,103,113,116,104,105,112,103,115,82,121,108,107,103,113,71,105,103,103,106,104,103,106,106,95,117,96,99,111,97,97,106,106,110,83,114,113,105,108,106,108,103,115,106,118,106,97,98,108,103,111,103,112,117,102,101,107,94,106,114,104,102,99,97,109,101,117,100,106,99,107,102,108,103,100,116,119,102,109,104,103,108,105,97,108,105,110,109,102,107,107,102,126,99,105,105,100,107,109,107,106,109,113,108,106,98,95,111,98,100,102,103,109,114,100,118,91,103,102,119,111,108,119,102,104,102,95,93,96,102,99,98,109,102,103,104,108,103,105,115,106,119,105,114,95,119,106,111,110,110,109,104,83,104,110,127,105,99,105,103,101,100,107,110,102,99,86,111,113,108,125,111,101,93,91,106,106,111,105,113,107,106,93,102,97,94,112,109,103,105,102,106,103,116,86,94,103,109,103,98,120,105,107,100,109,101,106,110,108,100,110,86,106,122,102,95,104,113,112,99,105,100,95,107,110,101,107,100,95,102,102,106,108,101,84,98,108,107,103,80,95,105,102,97,100,111,108,113,103,99,91,97,96,95,101,92,90,98,116,98,107,95,96,100,104,113,99,108,103,98,116,113,105,106,109,111,98,96,113,108,109,97,105,106,112,121,95,109,104,93,101,100,101,112,112,76,102,110,107,112,133,112,103,104,102,96,117,102,100,110,102,109,112,100,100,97,104,113,112,103,108,106,107,113,119,105,110,102,113,111,109,97,110,104,114,105,107,100,103,106,104,100,88,111,92,87,99,102,101,112,104,109,124,100,98,103,106,102,106,108,117,106,101,96,104,102,102,95,101,120,105,100,111,99,105,103,105,110,94,104,106,93,107,107,99,98,98,108,111,115,112,94,103,105,101,113,105,104,94,104,107,100,99,106,111,88,117,99,105,108,124,108,117,108,105,115,99,100,115,113,95,105,101,110,103,106,109,103,108,112,101,100,103,106,99,78,91,83,95,107,102,101,89,103,101,116,102,110,109,116,103,103,102,83,106,109,102,106,105,116,112,108,100,107,112,109,102,122,107,105,109,107,98,100,99,101,103,106,106,117,90,98,107,95,108,113,114,97,103,103,110,110,111,119,103,113,103,100,97,107,104,80,103,113,110,83,101,110,102,109,110,101,116,96,107,106,120,110,106,105,107,105,99,108,105,113,116,89,102,86,109,110,105,103,104,96,92,106,108,100,107,110,104,107,107,117,96,95,103,108,106,105,110,106,101,104,117,112,107,100,107,105,104,112,97,105,103,100,114,116,108,94,99,97,107,95,112,95,107,99,104,106,106,104,103,103,109,103,109,101,107,102,95,103,100,106,100,107,114,98,103,103,89,91,108,117,113,116,105,111,125,105,101,101,94,121,112,107,113,101,107,115,105,106,113,112,100,106,108,110,111,120,107,105,103,108,106,104,103,91,109,109,113,107,106,101,98,108,105,109,96,98,120,107,108,107,95,107,97,113,107,104,108,105,96,106,102,109,94,95,105,97,109,109,102,110,105,103,122,99,101,106,109,102,94,111,92,104,105,108,109,109,93,96,116,107,105,101,108,110,104,113,105,98,108,94,84,105,107,119,107,110,109,106,106,98,107,108,98,111,116,111,87,102,106,122,107,110,102,106,95,111,104,99,103,102,100,110,105,103,115,103,93,106,102,102,106,95,104,93,97,114,106,110,103,101,107,102,94,102,101,109,100,103,92,96,101,116,93,104,100,100,101,91,102,95,101,94,100,110,105,107,99,94,105,105,115,105,108,100,105,107,89,112,100,96,99,105,125,107,98,104,106,108,106,99,96,88,109,102,101,116,94,102,109,109,102,109,101,105,91,108,91,99,107,107,103,87,88,95,106,96,95,101,102,99,103,88,99,100,111,115,92,100,101,112,112,96,102,91,111,95,104,113,101,112,104,109,108,95,104,96,102,103,94,91,113,94,111,98,113,96,107,108,103, +583.95355,99,104,111,96,109,104,98,96,92,107,82,103,98,107,93,111,112,101,99,108,110,117,107,98,110,66,104,103,112,104,116,109,106,117,109,96,103,115,97,113,97,106,99,95,104,109,113,111,124,95,105,97,114,112,98,88,109,103,104,105,103,107,104,100,106,114,108,100,100,74,114,107,98,99,100,109,108,108,113,106,111,113,101,98,103,97,101,105,118,117,121,105,102,113,106,103,79,95,103,89,98,104,105,95,101,98,102,102,100,105,110,98,106,97,116,94,96,122,103,92,105,113,110,110,106,113,110,125,110,120,99,103,102,116,104,116,101,100,105,90,93,111,105,83,96,104,102,108,109,105,103,101,103,99,98,99,103,107,108,103,109,92,104,117,89,100,108,96,93,103,106,103,103,119,109,107,107,106,118,98,106,99,99,101,107,79,94,103,94,103,104,104,91,103,109,103,99,102,97,116,102,109,105,105,101,104,108,100,96,102,98,106,96,104,104,103,112,96,103,103,111,104,105,101,96,109,94,111,120,108,94,95,104,110,111,96,109,111,101,101,103,108,107,117,105,109,111,104,99,108,100,105,99,108,99,104,109,106,76,99,109,103,91,90,107,95,102,111,109,119,108,105,101,112,108,93,94,109,115,101,109,107,104,98,97,93,92,100,105,109,95,116,110,96,107,106,95,100,97,106,109,119,100,121,97,116,100,98,98,100,107,114,94,101,92,109,104,110,100,87,100,108,125,96,115,98,116,96,109,102,112,108,103,104,125,100,100,100,101,97,100,104,112,104,114,110,98,102,116,95,113,73,103,112,101,105,109,109,114,102,107,104,106,103,110,107,111,117,107,111,110,101,92,91,104,113,87,101,102,116,101,119,111,94,104,104,101,108,108,102,111,101,104,101,114,102,99,107,109,106,114,107,99,89,99,94,99,107,103,99,98,91,100,111,103,100,106,99,101,106,106,77,99,106,100,97,94,95,108,107,109,110,108,104,108,106,84,98,101,103,112,111,115,109,103,113,104,88,112,102,103,99,106,120,96,115,97,122,103,109,114,107,100,104,111,112,101,121,117,101,101,121,114,104,87,102,114,113,107,108,94,103,105,113,97,98,109,112,112,86,102,96,104,104,105,104,107,104,103,104,113,113,99,112,104,120,104,111,103,100,98,105,105,108,103,107,95,119,100,98,101,101,105,103,110,100,109,111,99,109,108,96,108,98,109,111,117,99,105,109,111,104,109,101,113,100,102,103,110,90,101,104,116,95,108,104,107,100,107,101,129,103,83,100,114,98,105,109,98,96,88,95,99,108,108,118,103,100,111,110,103,108,119,108,106,107,114,99,116,103,108,124,99,105,112,111,101,103,105,103,115,105,97,96,107,98,109,94,106,107,94,94,110,110,108,97,99,108,103,123,114,96,105,101,100,107,90,93,90,100,119,98,102,102,109,103,83,92,112,115,109,99,106,118,112,104,109,110,107,108,96,110,83,101,97,110,106,112,109,111,113,101,109,106,106,109,120,101,110,110,116,110,99,104,100,105,102,111,104,103,110,109,92,105,117,97,112,106,106,113,115,104,99,98,96,101,114,102,97,100,91,101,106,108,106,109,106,106,104,100,105,104,111,103,98,105,110,104,102,91,90,109,118,109,106,95,107,100,120,116,101,117,98,102,105,120,111,110,122,104,96,106,104,102,110,99,117,98,99,104,103,107,97,125,104,95,102,105,115,99,108,102,98,102,92,107,95,106,107,104,107,99,106,100,109,107,110,95,121,105,107,104,113,104,92,102,105,98,93,103,108,105,100,108,105,105,104,121,104,86,102,106,98,100,107,108,106,117,110,107,118,112,103,103,104,93,105,113,103,100,99,107,106,106,104,112,112,106,110,111,114,110,112,100,105,106,117,94,104,114,111,103,118,109,103,105,103,103,98,113,98,109,102,107,105,118,106,105,101,104,94,100,99,110,93,92,112,100,100,115,102,133,105,100,87,70,103,99,95,111,105,108,102,108,108,98,127,107,117,102,99,108,103,110,109,97,95,105,98,106,95,114,99,102,98,101,100,137,99,106,98,107,108,112,102,102,108,112,112,114,92,102,122,105,107,104,102,106,113,117,113,97,105,101,112,110,104,112,100,102,107,97,106,107,120,102,110,114,100,95,104,103,105,107,121,111,110,107,105,97,103,113,98,104,107,110,88,102,109,102,106,112,108,120,112,124,98,113,110,112,92,103,106,101,105,105,103,116,99,111,91,110,108,112,101,96,97,104,110,114,103,102,97,97,141,103,104,110,111,100,120,116,107,91,111,105,120,122,105,94,112,111,115,95,113,108,107,98,113,110,116,95,116,116,113,126,106,135,135,148,138,179,173,180,204,195,175,182,206,186,197,149,169,150,143,132,138,134,122,125,121,119,109,104,103,96,114,112,94,110,115,134,119,103,103,110,103,106,99,96,99,113,113,136,108,116,103,110,110,107,118,115,100,106,102,100,102,102,104,89,103,117,102,103,102,106,98,103,102,108,102,117,102,110,103,79,98,118,110,113,98,105,91,112,105,98,99,94,97,103,84,115,101,103,102,101,94,121,111,96,98,108,109,110,101,91,105,100,106,95,101,108,110,101,108,107,105,106,106,105,109,94,108,100,97,104,101,113,118,106,103,107,106,99,102,104,117,109,104,111,102,115,103,105,113,111,111,110,98,119,105,102,89,113,104,103,109,101,114,104,108,106,106,104,103,114,101,103,110,112,102,105,109,100,106,114,110,91,98,98,108,97,94,95,78,100,108,95,100,96,111,109,96,118,110,95,100,98,109,94,105,117,101,97,105,101,124,103,101,103,106,113,109,107,104,112,126,104,94,112,95,117,89,113,114,112,111,104,103,102,96,104,113,107,109,104,102,96,117,102,105,107,117,94,108,106,74,108,104,106,106,96,102,94,95,140,108,117,109,102,109,104,112,97,90,85,108,125,107,95,127,109,103,92,89,113,103,110,109,112,114,96,111,100,119,102,124,81,112,104,91,100,101,108,99,105,100,111,98,109,97,106,106,106,123,102,108,101,121,97,88,103,91,106,111,103,98,97,93,86,110,97,73,92,104,95,113,108,103,111,100,104,103,103,104,96,102,95,96,103,96,103,100,111,96,97,108,96,107,85,97,114,99,108,109,107,97,107,105,105,112,99,99,98,104,111,98,99,121,111,103,98,118,102,108,94,99,100,99,113,104,105,101,98,99,106,95,95,120,95,103,117,103,116,110,105,104,118,102,103,110,102,127,109,116,102,98,109,111,95,101,110,105,100,109,101,106,104,122,108,106,107,108,106,106,106,101,113,109,92,91,109,102,108,109,117,107,105,108,102,107,98,104,103,117,105,100,99,95,108,103,103,109,106,98,101,108,107,106,101,108,84,106,107,103,112,99,102,97,98,100,98,98,101,102,111,108,116,106,99,105,109,98,104,104,110,98,104,103,118,118,106,105,114,99,111,109,105,107,108,110,102,124,118,109,85,110,100,109,95,109,102,111,106,102,96,102,99,95,87,112,102,107,100,112,102,104,92,106,105,109,81,105,103,101,109,100,108,109,107,95,103,104,116,97,112,115,111,113,108,105,103,105,108,101,105,99,100,109,102,96,116,118,127,102,99,113,107,106,111,112,88,93,103,99,106,98,104,101,94,106,114,110,111,88,110,128,112,140,100,112,98,98,120,99,101,105,113,106,113,101,116,100,101,96,96,99,113,98,102,111,101,102,92,101,107,102,101,106,94,108,105,83,101,104,107,116,105,108,84,101,98,92,108,108,109,99,106,99,98,105,108,104,101,106,110,105,113,115,113,95,105,105,101,96,108,108,108,87,103,101,102,88,111,109,117,108,98,104,103,96,106,98,106,89,96,109,110,95,104,97,99,100,110,106,101,113,123,107,107,99,102,106,108,113,114,107,102,99,98,115,114,100,115,123,118,96,102,105,107,116,112,113,104,97,111,98,101,102,102,109,109,96,114,109,99,103,102,109,105,109,110,101,93,109,103,113,109,138,100,106,109,73,98,109,111,112,107,113,100,113,96,116,108,99,117,100,100,123,101,108,94,109,148,112,109,100,109,95,98,113,104,104,111,114,113,109,113,108,127,114,98,105,98,117,100,102,105,104,111,101,102,108,103,112,102,111,100,101,106,101,102,113,106,98,121,104,111,112,114,103,108,104,98,102,99,111,97,95,106,105,105,106,120,116,105,108,106,101,109,101,101,112,117,91,110,101,104,104,98,103,103,107,98,108,106,108,105,94,121,110,106,111,98,146,100,110,106,108,120,102,113,112,117,121,107,96,97,109,110,103,109,115,108,101,95,107,102,106,112,107,100,100,120,111,112,112,95,107,100,91,114,109,114,102,111,107,105,102,109,98,87,99,107,107,101,98,106,106,102,117,108,110,99,109,99,94,95,99,100,94,102,101,107,113,106,104,96,108,104,105,101,105,120,119,109,108,97,102,112,94,104,96,117,105,114,108,97,99,102,103,115,106,117,112,96,110,111,99,102,98,93,101,110,98,110,113,101,112,108,101,119,102,104,99,102,81,116,103,97,109,101,96,100,99,107,100,94,111,111,104,111,110,104,107,116,100,94,109,100,100,113,110,103,136,100,111,101,110,113,101,92,112,95,109,103,112,103,111,107,112,114,106,103,104,113,103,110,123,94,110,110,112,100,108,106,109,80,108,94,104,105,104,107,117,98,104,104,111,100,113,117,117,102,104,119,104,106,110,117,113,102,107,102,106,111,102,102,107,104,102,109,113,99,97,107,114,108,106,98,110,114,132,107,104,96,116,110,101,109,103,108,95,92,111,130,105,92,99,108,110,107,97,99,94,98,94,121,117,115,120,115,97,99,102,106,101,104,113,101, +584.09448,95,109,104,86,107,120,94,99,100,121,99,102,103,93,105,100,99,120,104,95,103,101,101,114,92,100,96,97,85,115,98,101,103,98,114,114,113,92,112,104,99,104,111,110,101,115,115,114,108,130,97,104,106,106,106,116,102,98,107,100,119,100,108,108,98,114,99,102,107,95,110,112,84,116,114,118,85,104,100,111,106,102,112,103,96,96,104,117,111,112,112,104,102,110,102,100,106,110,89,102,93,102,105,105,92,104,95,100,97,103,108,109,107,99,100,101,83,103,108,127,102,112,78,110,95,109,111,102,117,107,106,114,108,113,106,103,111,110,128,99,103,104,102,105,97,104,96,102,94,104,105,99,117,82,103,110,97,112,109,111,94,97,103,65,105,77,97,101,90,131,99,109,99,101,109,101,102,89,114,105,117,110,105,108,108,111,98,101,105,96,112,105,91,114,102,79,129,103,105,106,108,101,103,100,105,107,114,103,108,103,109,128,106,108,108,105,99,111,99,103,104,97,97,104,106,117,100,102,126,109,71,83,110,106,113,98,109,106,104,103,107,119,108,103,107,103,107,108,106,109,100,94,103,105,104,112,100,113,104,102,87,114,103,76,100,110,101,111,104,108,107,116,103,107,110,104,118,102,115,103,112,103,103,101,102,100,90,105,91,95,103,98,115,110,108,108,113,103,106,106,112,106,113,113,95,89,118,105,116,111,106,108,108,111,112,102,109,116,114,101,104,98,109,116,114,104,97,102,115,110,105,107,98,102,117,107,91,116,105,102,95,111,104,106,108,103,101,106,123,98,107,109,115,99,102,105,106,105,104,103,102,101,104,112,98,106,108,111,102,108,109,107,105,112,110,103,105,110,104,105,107,105,106,112,118,101,105,111,112,101,106,98,104,118,106,107,89,119,107,115,100,97,111,91,115,102,110,102,83,96,98,114,106,110,117,92,110,98,112,130,118,102,95,115,104,112,101,104,120,100,98,96,109,104,107,92,96,97,104,106,108,100,115,94,109,101,110,102,99,100,105,103,96,107,114,107,92,110,112,108,104,103,101,111,121,118,102,113,94,99,107,111,105,97,109,118,119,108,108,113,111,108,107,105,85,119,110,110,107,104,112,103,118,106,93,101,106,105,116,103,115,111,102,99,98,109,104,94,115,114,123,103,111,102,100,109,107,99,97,91,105,94,104,109,108,103,144,101,122,98,110,110,109,112,102,107,114,114,109,110,96,117,102,111,107,107,107,87,111,103,97,102,99,114,95,109,120,113,113,112,97,100,114,103,107,106,103,140,111,115,98,81,122,107,103,108,101,109,108,111,113,108,126,86,108,112,118,121,105,100,105,104,114,102,105,108,93,114,107,104,103,102,107,111,103,103,113,109,99,70,100,104,114,101,95,106,99,101,109,103,104,110,117,102,109,106,100,113,103,109,109,108,103,101,90,118,110,109,107,109,111,110,109,102,121,97,103,70,102,104,99,117,99,103,108,104,106,109,109,111,106,95,96,118,98,107,106,111,121,109,104,105,99,113,99,111,116,124,117,104,111,114,107,109,94,111,115,99,109,112,106,99,97,100,116,102,102,100,104,98,99,101,108,102,98,102,125,99,100,91,100,106,101,95,113,104,99,91,108,114,101,99,94,111,90,95,100,104,108,107,105,107,99,91,108,95,107,105,114,122,107,96,106,113,96,97,111,113,103,107,111,98,118,117,108,107,96,101,104,104,99,96,108,106,99,110,103,116,99,111,110,112,116,105,110,109,97,99,95,97,105,102,112,117,102,107,103,117,112,78,98,112,121,111,108,103,110,135,94,103,99,113,105,109,100,99,86,105,117,101,111,100,109,104,116,106,102,116,102,109,93,109,111,108,109,110,111,108,118,113,110,95,107,93,97,106,102,106,111,114,103,107,117,99,96,99,98,110,92,94,98,95,106,114,97,89,121,98,109,105,114,98,117,108,109,106,105,107,112,112,125,107,102,117,97,102,105,112,102,105,111,103,120,98,102,98,97,115,111,112,103,109,103,98,105,112,106,113,104,115,109,104,109,99,108,103,97,119,96,105,108,109,113,141,109,101,95,104,99,100,110,101,109,112,115,105,114,110,101,110,109,109,103,72,105,113,105,93,105,106,114,107,118,104,105,100,103,106,105,109,98,105,99,138,116,112,121,91,97,94,111,108,116,107,99,109,99,108,106,110,87,90,94,104,108,116,111,103,96,101,106,112,98,112,103,115,97,101,100,113,116,90,102,111,106,107,98,91,105,108,113,98,111,114,101,104,103,109,111,105,104,102,107,103,98,96,101,110,110,101,103,106,115,106,110,99,111,94,98,84,107,107,75,112,110,132,100,135,148,151,170,162,206,175,176,184,187,196,212,204,176,207,161,154,138,142,133,114,137,109,108,116,110,110,111,105,95,112,118,106,102,115,105,95,99,100,113,113,96,100,105,105,104,118,116,105,98,92,110,120,116,103,98,108,105,119,114,122,105,109,107,104,108,115,98,113,111,103,121,113,119,100,111,105,122,112,103,107,100,95,123,120,113,105,99,105,99,121,72,105,99,98,110,95,100,106,112,120,110,102,113,117,109,111,105,113,110,114,106,109,121,106,110,116,101,108,117,125,95,106,120,107,103,98,99,108,98,119,113,102,92,105,87,109,103,110,101,108,97,109,104,108,107,106,117,110,116,123,95,119,100,105,119,114,98,113,87,99,104,108,105,100,113,114,100,111,98,111,123,102,110,98,104,103,103,110,115,111,107,105,106,102,122,113,117,115,108,105,108,103,87,112,85,111,105,105,116,109,106,114,119,107,113,102,94,100,104,107,112,113,108,116,112,121,96,126,104,110,108,104,124,107,109,109,102,102,106,115,105,110,119,117,109,113,121,104,111,99,109,117,108,99,112,94,119,102,104,108,106,101,113,106,110,107,128,111,111,110,103,110,121,110,116,105,100,107,106,108,102,109,108,99,118,95,119,109,106,112,118,116,97,102,114,113,106,98,135,97,118,101,113,113,110,109,117,106,119,102,113,121,106,110,110,105,109,110,120,106,111,114,102,117,73,107,105,105,103,105,106,101,115,109,101,101,114,98,108,116,98,112,112,91,113,112,108,112,103,121,119,113,91,104,107,110,110,104,112,116,117,113,113,107,109,109,97,114,106,110,108,108,101,82,117,120,101,101,103,92,103,100,109,112,108,104,115,105,117,120,99,106,99,108,89,102,112,99,109,107,118,103,106,106,111,114,117,104,98,113,104,107,112,116,110,98,104,104,100,114,99,109,112,98,116,119,113,104,112,106,86,87,100,117,111,106,119,108,85,96,110,97,92,117,104,99,98,98,105,117,103,113,111,118,117,109,107,110,94,104,99,108,105,98,91,116,105,112,103,113,109,108,103,127,105,111,94,117,103,116,91,103,101,103,96,105,95,102,117,110,108,113,112,106,112,113,103,107,109,108,92,111,102,106,106,108,99,100,109,120,126,93,115,105,118,86,114,109,100,114,99,105,105,110,118,102,95,112,122,109,90,107,105,107,109,109,111,106,107,120,109,108,106,102,98,124,105,112,106,85,103,98,101,105,107,106,110,110,112,103,108,103,112,102,110,107,129,101,110,96,110,120,106,103,101,112,102,107,102,106,102,99,106,124,112,110,95,125,110,99,112,100,104,110,103,111,99,102,108,110,108,102,99,89,118,113,111,98,110,108,108,104,113,120,100,106,108,93,111,113,108,118,109,105,102,96,89,104,97,100,112,109,120,103,73,110,109,109,120,82,109,115,108,100,124,112,114,99,111,103,103,100,116,103,104,106,117,114,119,102,103,102,99,110,92,114,99,135,103,97,109,104,108,116,98,106,115,114,90,107,105,109,110,99,95,88,100,98,118,110,96,109,99,105,98,102,113,97,107,99,104,107,113,109,114,107,95,116,104,100,107,95,109,109,87,103,104,97,98,93,99,102,105,107,96,111,106,120,119,104,102,104,114,115,99,106,108,111,98,107,111,113,112,121,102,108,103,102,128,122,105,111,108,111,108,111,109,112,119,114,124,113,107,101,107,108,115,117,102,102,97,105,89,112,118,116,110,112,97,107,119,124,111,109,100,119,110,100,112,98,103,100,106,112,100,102,112,100,109,108,83,118,100,108,106,109,112,109,114,109,109,116,91,117,106,110,107,103,98,116,109,117,108,111,100,96,97,105,97,117,111,102,104,110,109,106,117,116,107,108,93,106,99,98,104,109,109,114,108,102,97,122,111,101,103,102,100,112,118,101,98,108,111,103,121,103,111,99,120,106,92,114,106,108,108,108,120,102,107,106,98,99,107,113,106,103,104,101,103,105,113,120,99,114,111,114,111,101,100,99,109,99,102,103,98,108,104,116,115,118,110,111,101,93,107,115,97,113,92,101,117,102,107,107,104,111,109,105,104,101,102,108,116,110,104,104,117,101,101,94,99,110,98,99,108,106,108,100,107,104,97,112,106,100,107,120,110,106,101,112,111,100,115,106,109,96,108,99,99,98,102,117,102,110,125,104,105,108,108,103,115,106,106,100,112,111,106,111,111,94,109,95,100,102,109,101,98,106,111,120,106,104,104,112,119,103,99,108,114,102,105,99,120,100,117,103,113,95,119,99,97,110,118,104,113,101,102,94,105,102,102,92,104,97,113,106,108,98,99,98,98,103,113,104,114,96,128,97,104,105,105,116,110,102,94,111,100,94,107,105,100,100,94,108,93,114,94,112,96,111,109,107,96,104,95,91,107,80,110,98,103,84,106,97,109,115,106,109,98,106,98,104,110,109,103,111,119,102,113,99,94,80,100,107,112,102,99,102,104,94,99,95,107,101,70,102,106,106,101,107,110,103,97,104,100,111,100,114,106,106,100,98, +584.23547,113,98,100,109,100,131,110,106,101,100,121,111,103,108,108,105,91,116,96,110,105,101,101,130,98,101,110,105,106,102,110,111,106,101,105,95,125,108,103,109,84,90,101,111,109,108,104,96,111,111,112,109,102,83,102,109,115,97,114,100,88,108,91,111,98,106,106,109,98,75,110,113,106,107,91,113,110,111,101,104,108,96,103,97,112,101,108,108,101,109,112,100,98,108,107,100,103,92,93,103,102,107,107,96,104,98,103,98,102,100,118,107,109,101,102,87,102,117,103,108,100,109,107,106,101,109,105,100,113,98,99,108,98,98,113,110,104,99,109,113,105,99,93,113,102,95,115,123,97,100,109,104,101,116,91,111,109,95,106,105,112,110,102,104,100,86,110,106,116,105,101,108,84,116,100,97,103,109,106,107,111,108,104,100,101,112,98,105,105,97,91,102,100,108,100,105,115,99,95,97,122,104,104,104,100,98,111,102,113,107,107,98,107,105,94,104,94,105,101,112,104,110,105,117,103,92,94,108,102,106,97,100,103,129,101,91,120,100,117,116,105,102,109,108,96,115,108,111,111,106,103,101,100,118,108,117,97,109,109,103,120,103,87,102,100,116,99,101,108,91,102,100,108,118,109,108,94,108,102,103,96,92,114,103,96,100,97,106,100,109,96,117,109,107,103,94,112,98,104,102,103,107,94,112,100,110,109,101,102,102,104,110,106,95,102,97,94,98,103,112,109,95,104,108,111,106,106,82,112,102,94,103,107,99,112,98,102,105,104,116,110,98,99,103,101,109,99,98,102,103,107,103,88,67,105,111,117,101,98,99,107,98,82,107,121,100,99,104,96,97,101,96,114,101,109,109,100,113,86,103,96,93,104,117,87,107,91,102,106,101,100,96,105,112,110,109,80,108,112,103,98,93,100,100,112,98,108,100,101,96,98,99,105,96,104,103,94,103,108,98,106,115,116,105,131,101,99,108,95,115,96,106,102,97,102,110,101,111,101,108,87,100,101,108,101,99,97,97,101,103,100,97,122,110,106,116,101,110,113,105,102,96,102,106,88,107,105,105,113,97,105,107,101,98,100,98,107,105,103,106,103,111,92,95,111,101,97,103,98,111,114,102,114,113,112,98,108,107,100,122,116,97,108,106,105,107,105,108,117,103,101,112,104,107,108,109,116,97,86,101,104,101,121,97,98,106,99,109,109,101,107,99,111,94,108,105,113,96,96,109,107,106,108,103,112,98,109,109,115,105,95,109,94,111,106,98,116,125,105,101,103,103,104,106,103,94,109,104,109,102,105,117,100,106,102,106,100,106,104,103,96,105,120,101,98,104,118,101,110,91,111,101,107,100,107,95,104,108,100,104,113,108,103,98,104,103,95,99,99,104,114,110,98,103,110,93,101,86,97,108,94,103,99,97,122,100,102,107,107,106,100,94,95,113,97,104,99,110,110,100,103,99,107,103,106,103,103,98,113,105,106,101,95,108,96,102,118,106,104,100,109,121,113,107,102,120,105,96,107,98,107,119,105,98,102,112,106,112,106,108,107,108,109,92,97,103,94,99,103,104,105,94,96,98,111,101,102,102,100,94,100,96,110,101,102,108,105,107,109,94,97,81,108,113,103,92,103,90,91,104,103,108,102,112,98,93,96,105,119,98,132,96,103,101,101,114,111,93,106,98,94,91,107,109,106,105,104,114,125,94,109,100,93,109,109,121,111,95,99,112,102,103,110,98,94,96,104,109,113,98,120,96,102,74,109,116,101,100,103,108,92,111,108,110,97,91,103,103,97,121,97,108,110,111,112,96,91,100,93,109,107,91,101,102,107,102,111,117,105,100,109,111,97,111,99,105,104,100,104,98,88,108,107,106,98,121,114,103,102,105,109,93,111,102,88,102,109,98,106,102,113,105,117,99,116,100,111,104,102,109,110,108,110,99,107,118,101,105,95,90,114,101,105,122,100,99,95,102,85,88,103,84,96,106,95,106,100,120,92,100,103,106,102,105,105,106,96,117,112,98,113,114,100,106,104,116,107,115,108,107,100,106,96,109,106,100,114,104,107,105,123,104,107,94,110,107,98,99,106,102,105,103,105,112,105,102,105,94,112,103,91,107,104,105,90,102,98,102,110,101,100,103,102,103,114,106,99,102,98,111,95,109,108,108,100,111,109,97,111,93,101,104,106,98,111,99,97,106,100,118,83,101,105,95,110,113,103,97,98,103,107,108,102,105,104,104,76,106,100,105,115,103,109,105,112,106,104,106,99,102,107,115,111,103,100,105,106,119,100,126,97,103,107,108,96,112,107,113,111,103,102,113,117,108,108,98,120,102,105,114,114,115,111,106,141,114,130,141,159,142,170,141,201,210,220,160,161,198,171,151,182,200,162,146,161,134,136,115,143,120,85,119,104,119,96,102,110,121,105,110,103,119,97,113,108,121,116,111,99,107,103,94,97,117,115,106,108,106,117,121,114,120,101,94,110,102,102,98,98,102,111,116,110,105,105,113,110,96,110,102,106,123,103,102,112,107,99,104,102,100,110,104,108,106,90,97,97,110,104,115,105,105,116,108,98,107,97,106,93,97,98,110,105,103,91,111,112,106,91,104,111,109,106,96,110,86,119,107,95,85,113,113,106,97,103,110,101,102,119,98,104,101,110,96,97,117,104,105,105,112,102,109,101,108,113,109,101,106,106,87,96,105,102,112,95,104,107,96,103,103,106,113,107,117,116,111,107,116,109,107,106,107,112,98,107,114,103,107,105,94,99,104,99,104,107,114,98,115,102,113,105,112,109,111,100,92,105,109,101,117,111,106,118,95,100,108,104,100,112,103,114,105,100,101,109,98,113,101,106,111,112,105,98,109,107,104,109,103,96,117,91,106,118,116,105,105,109,106,121,111,104,117,124,105,106,98,104,98,110,113,129,113,102,99,116,113,114,106,112,114,108,110,103,103,117,110,99,114,113,95,98,105,92,98,108,112,113,110,92,99,118,105,112,103,113,102,120,98,107,102,119,98,116,103,77,120,109,116,109,104,119,95,110,106,113,106,109,97,109,126,100,119,104,115,94,96,117,112,99,85,111,114,91,113,118,99,110,103,104,101,99,125,107,109,113,98,109,100,113,107,113,89,106,109,101,100,106,105,93,79,88,103,96,102,104,101,81,105,112,107,113,108,104,110,107,116,103,116,113,108,103,110,93,98,111,109,105,113,112,108,98,123,91,113,112,105,112,100,119,107,119,109,130,116,105,107,107,119,87,99,106,103,98,100,104,95,110,104,105,115,112,106,108,105,108,105,106,99,112,110,117,105,99,102,102,121,104,109,109,106,88,105,102,98,108,104,105,93,107,113,101,110,110,104,113,111,93,108,99,107,115,94,112,114,110,131,102,100,98,104,98,100,95,111,120,110,89,94,97,112,90,109,116,99,83,101,99,111,106,100,107,110,102,102,106,115,117,94,108,104,114,103,107,98,101,116,101,103,89,98,100,106,107,103,104,121,98,109,113,107,101,99,108,118,91,117,103,96,92,111,104,110,111,102,95,98,113,101,117,108,105,103,104,107,108,115,105,114,119,101,96,107,113,107,100,107,105,100,108,106,92,92,108,106,103,115,116,94,97,118,102,108,82,101,106,93,111,112,111,108,111,109,99,105,105,102,98,102,100,114,114,118,99,104,105,102,101,99,101,105,99,95,102,107,107,107,112,105,106,96,107,115,103,107,116,110,112,113,106,98,106,104,103,104,108,100,106,104,110,120,107,112,108,108,103,104,115,100,102,108,103,117,105,103,117,109,100,105,104,108,96,98,109,107,99,106,111,98,106,102,96,85,111,100,113,103,117,107,107,112,111,98,97,108,117,96,106,93,106,107,113,109,106,102,106,113,108,106,108,102,100,96,105,107,107,104,105,114,104,89,97,105,110,106,104,99,117,98,112,110,102,111,120,110,95,84,105,107,108,96,103,114,104,106,103,120,102,115,94,109,112,112,98,111,115,100,100,118,101,116,108,111,100,107,89,108,119,115,105,103,115,105,102,111,119,96,87,101,116,102,125,98,110,106,101,110,102,116,101,97,80,121,101,102,119,104,102,109,101,95,109,91,110,119,103,112,108,101,125,103,103,95,104,102,108,97,101,108,98,90,116,98,80,96,111,109,113,102,100,87,103,103,100,102,94,113,103,90,110,104,116,98,95,110,113,107,109,105,112,94,111,103,107,104,103,96,95,107,100,104,84,111,103,109,100,106,109,113,94,110,107,100,94,109,99,102,111,96,94,113,109,110,96,103,89,113,106,99,106,111,110,116,108,108,98,112,106,103,107,103,104,105,109,98,108,107,112,101,106,123,89,113,118,115,100,117,115,100,100,109,99,104,123,108,98,101,100,104,91,92,106,106,99,112,109,116,102,109,111,106,101,99,102,92,101,103,104,106,104,101,104,106,96,113,113,101,105,105,115,110,101,96,101,96,94,94,91,104,94,104,106,98,106,113,96,95,111,103,96,117,111,109,98,129,102,110,99,105,111,106,109,107,104,98,105,105,106,101,110,98,104,113,106,95,107,107,117,118,92,108,105,88,117,102,119,100,103,101,116,97,95,112,107,102,93,104,105,106,97,109,101,97,119,105,129,106,104,104,102,100,89,105,103,123,100,116,110,101,90,108,107,95,113,97,106,101,105,102,109,121,108,102,103,102,117,99,108,100,102,114,94,115,99,104,104,122,103,102,105,107,112,93,93,98,110,110,98,111,99,108,101,103,112,114,102,113,91,86,111,102,98,98,109,103,103,108,104,99,90,106,111,96,108,107,102,121,118,99,82,102,105,99,110,113,117,93,96,97,103,94,107,104,99,111,100,102,105,113,127,102,101,109,96,101,99,107,114,102,96,114, +584.37646,101,100,110,101,88,99,110,105,99,106,113,121,114,97,111,98,106,82,112,111,96,106,109,118,94,97,115,98,101,112,90,100,98,105,109,92,119,98,102,99,110,93,96,98,118,117,100,115,105,100,119,100,86,95,91,101,87,99,107,97,140,95,96,106,114,99,107,103,111,105,111,102,71,95,90,106,94,113,119,102,91,115,109,103,119,91,105,117,113,105,101,114,108,97,111,106,98,102,99,73,98,107,104,100,94,110,110,98,95,105,104,114,117,102,101,94,111,110,109,101,112,103,99,113,108,106,113,94,108,115,96,109,123,134,100,102,104,88,90,109,98,110,97,107,105,105,105,103,86,97,109,109,116,90,102,112,105,109,113,103,102,103,114,102,99,100,118,101,111,102,98,108,108,97,99,101,105,109,126,112,102,110,110,110,102,107,96,94,107,98,101,103,108,103,111,98,107,110,87,104,105,104,115,106,109,95,112,114,119,116,96,101,115,100,108,107,110,98,112,111,103,111,99,100,107,105,109,102,92,117,99,103,104,110,107,121,105,108,96,95,96,83,87,113,100,95,95,106,104,99,117,107,101,100,112,111,108,120,98,105,99,106,118,110,106,101,92,113,102,105,113,105,99,110,123,118,113,108,76,101,96,96,108,105,105,104,100,111,101,110,104,101,109,92,117,98,112,106,110,109,102,109,99,97,99,113,121,105,106,110,105,107,101,108,104,108,106,111,99,104,100,105,105,102,105,93,91,86,112,112,108,109,100,111,105,100,100,95,97,105,104,102,104,102,94,105,91,100,91,116,104,109,112,93,99,107,114,94,110,110,104,106,107,91,95,104,105,110,94,108,91,91,110,110,95,103,104,104,103,103,101,112,104,106,104,101,108,125,110,100,112,95,107,103,110,108,104,112,106,103,94,101,98,110,121,94,99,108,103,97,105,91,100,101,121,103,105,95,110,106,98,99,92,103,100,107,104,114,100,108,96,110,102,100,124,109,101,104,106,96,101,117,104,110,106,102,93,107,98,102,105,105,105,113,100,91,120,106,98,96,121,108,112,116,111,107,98,82,116,106,102,103,104,108,96,97,95,117,107,113,114,108,109,103,104,103,105,104,114,105,109,102,106,100,110,97,100,94,110,99,106,82,99,124,107,113,100,106,109,107,91,112,92,104,118,96,106,110,75,99,96,104,113,104,110,95,97,123,103,104,88,113,101,103,101,130,103,106,109,100,106,120,79,93,106,113,100,106,121,104,99,116,103,104,99,94,100,94,114,72,114,113,107,65,105,98,114,102,119,101,99,104,96,100,135,105,97,106,116,113,109,107,119,110,105,103,109,97,109,109,111,112,101,106,115,81,109,112,109,103,108,110,109,100,95,103,70,90,114,95,94,107,111,116,91,103,108,106,103,106,98,99,112,102,106,96,102,107,98,101,112,109,102,112,96,102,108,94,109,111,108,108,102,99,99,91,108,109,102,115,104,114,104,106,102,108,99,112,104,98,112,106,113,107,108,111,101,108,107,120,87,101,113,106,116,107,107,99,107,106,113,111,106,94,94,84,104,113,99,89,112,103,95,113,115,111,96,106,105,106,107,90,101,117,101,101,108,104,101,97,110,98,103,109,97,110,120,69,122,102,104,111,104,110,108,82,101,107,113,103,102,110,113,96,97,96,107,104,110,107,103,88,102,103,109,101,101,91,121,99,106,105,120,98,90,103,106,103,109,115,122,102,103,108,97,105,94,103,104,118,97,113,98,106,102,109,105,98,103,110,106,103,111,122,104,109,107,105,102,114,119,106,102,109,102,110,104,117,109,109,107,103,97,104,97,101,109,112,113,98,121,112,102,109,118,107,110,92,98,101,106,108,106,107,101,108,107,109,108,141,110,89,111,92,105,109,109,123,100,105,94,112,118,105,109,100,110,94,107,105,120,106,103,108,100,104,105,108,107,106,107,105,84,98,104,103,108,98,99,114,115,107,98,103,105,104,110,110,101,105,116,104,100,100,111,96,117,121,100,112,113,107,102,112,118,109,101,104,104,99,105,97,116,105,95,112,90,101,98,108,92,120,116,105,98,90,102,102,100,101,93,109,113,97,107,98,94,109,114,98,109,108,105,117,104,84,100,101,105,98,112,102,109,96,116,99,118,94,112,109,87,107,101,99,107,109,96,97,109,106,107,129,115,95,107,99,105,101,110,101,96,101,107,108,104,118,120,104,80,92,105,102,100,105,110,112,117,98,106,112,113,100,104,90,114,99,100,112,93,132,113,99,112,105,106,86,101,117,92,135,102,109,97,113,103,103,112,102,114,85,114,99,104,121,107,108,111,126,109,123,133,95,99,102,115,104,124,132,130,109,168,199,173,144,205,207,184,201,194,159,189,178,151,164,137,160,134,132,114,127,108,111,112,106,104,109,104,121,123,105,128,110,102,107,107,114,105,78,107,118,110,109,104,113,117,101,110,102,120,103,119,105,107,93,105,103,113,109,120,98,120,93,109,97,107,109,106,106,110,102,103,106,103,99,97,116,109,119,112,104,115,110,88,105,107,102,101,109,99,102,108,111,103,101,106,104,95,89,96,95,109,103,99,111,99,115,99,113,105,97,113,100,104,117,109,102,119,111,117,118,110,97,109,103,109,114,99,103,109,105,106,108,111,122,107,113,103,111,91,110,95,103,102,113,105,102,113,110,104,112,97,103,102,103,116,117,115,101,104,115,117,103,106,106,105,95,123,116,112,102,108,107,103,119,118,107,112,100,114,99,125,114,99,106,115,102,115,120,103,104,107,113,104,120,109,104,107,107,88,106,107,100,99,116,110,103,105,98,107,110,113,113,103,105,106,100,110,113,104,120,111,115,105,107,107,109,83,119,114,116,104,110,106,112,95,107,107,106,109,111,94,104,117,108,112,109,99,103,112,125,113,98,97,103,102,99,109,129,113,95,112,109,109,104,103,99,121,108,108,110,91,111,97,112,112,112,102,101,116,105,117,107,104,107,108,104,106,108,108,103,94,100,108,119,107,113,104,100,88,107,98,106,107,103,98,102,104,96,117,110,105,115,113,108,112,109,101,108,117,102,110,106,110,101,106,115,105,100,106,121,98,105,107,123,108,105,91,100,103,112,117,101,103,92,104,105,97,102,110,96,115,117,110,100,93,113,102,87,118,102,113,102,94,105,100,119,100,103,113,130,95,110,110,108,98,103,105,105,110,101,97,89,107,115,100,113,104,104,111,109,99,97,113,121,111,108,108,112,100,113,84,106,106,110,102,122,102,95,92,107,102,117,102,114,98,108,105,99,106,101,105,111,101,109,106,111,101,107,124,106,94,103,110,91,114,115,111,104,107,104,105,105,113,102,99,87,103,113,113,102,90,100,102,105,105,98,100,103,113,103,104,97,105,96,102,113,103,96,98,102,106,95,98,111,90,109,108,95,105,106,88,95,99,99,86,110,102,115,107,105,110,110,107,106,101,90,113,113,103,99,108,111,100,115,102,98,99,104,109,104,109,100,102,104,91,112,107,103,100,107,85,121,112,99,106,109,104,100,75,104,107,95,99,106,99,95,114,102,105,93,99,84,102,108,89,96,103,111,107,104,100,101,114,116,109,102,108,104,118,110,99,101,100,102,91,98,106,97,97,104,108,108,106,116,108,97,105,104,106,117,103,103,99,103,102,97,111,106,109,103,109,108,85,111,100,100,106,109,104,97,118,101,112,105,114,97,111,90,104,113,102,124,104,101,96,104,112,102,109,101,94,112,112,105,119,96,108,108,119,111,104,119,104,102,121,113,110,106,108,105,113,101,107,103,103,109,107,107,112,116,91,90,98,105,105,128,98,109,101,98,78,107,108,128,102,108,117,110,104,100,106,106,103,110,103,102,109,109,100,106,104,110,96,101,112,94,108,97,104,104,112,98,112,108,113,103,107,111,109,100,104,117,111,95,110,107,111,105,99,110,106,131,107,103,113,113,106,97,107,114,96,106,97,88,107,106,102,108,100,104,103,103,109,97,108,103,109,95,119,101,96,78,110,115,112,112,103,99,106,103,107,102,116,98,98,105,103,111,79,93,113,102,102,99,105,117,111,103,108,105,94,100,108,101,101,101,106,100,117,100,117,134,98,106,107,102,102,114,99,106,110,105,100,95,105,106,103,107,112,105,104,100,107,108,100,107,108,104,116,108,117,118,110,106,105,102,106,104,115,108,103,102,106,114,100,95,105,112,103,110,111,115,113,119,98,109,93,99,99,98,96,101,118,108,99,110,100,97,99,98,104,106,134,115,110,102,100,109,132,116,117,108,118,102,109,106,105,112,119,107,103,106,111,91,98,106,108,106,109,94,107,103,108,97,105,118,91,104,105,106,97,105,104,113,112,108,104,111,111,92,94,97,103,109,106,115,96,113,103,108,85,96,110,104,111,102,98,100,106,113,116,104,92,100,102,97,103,102,97,110,109,100,101,110,112,102,103,111,112,108,99,101,104,112,117,101,99,83,104,106,94,105,120,102,124,111,105,109,110,101,110,107,100,117,111,97,100,110,108,92,106,104,107,126,100,110,105,102,94,110,101,106,113,104,102,85,97,104,114,101,100,106,112,100,96,119,94,104,113,95,102,96,114,81,116,107,104,119,107,111,100,104,109,96,101,109,104,104,122,101,108,98,105,110,112,100,100,105,95,105,114,114,112,110,103,114,112,106,104,102,106,102,73,99,103,101,105,99,103,101,115,105,103,94,103,105,96,115,99,95,105,108,105,97,103,97,116,102,101,104,112,74,112,99,106,98,113,103,100,104,102,123,95,105,101,111,100,121,105,99,109,140,105,95,106,107,109,104,95,104,102,101,112,101,90,111,100,124,101,109,102,99,107,103,110,98,110,96,114,106, +584.5174,111,91,102,87,104,114,124,113,104,102,99,99,94,93,118,90,95,115,105,88,105,103,100,101,102,100,109,117,98,102,109,105,108,102,112,108,88,109,106,108,120,104,95,98,102,95,105,103,101,105,98,110,97,110,97,98,103,99,111,96,107,114,106,97,112,117,99,90,99,98,97,111,103,116,106,101,104,96,108,101,102,104,95,127,95,89,122,108,97,104,102,102,107,107,104,99,106,107,69,93,117,112,105,103,104,129,98,106,97,111,109,109,122,91,103,109,101,103,95,92,112,99,101,112,113,103,108,96,110,116,109,99,96,86,109,100,108,100,109,97,103,119,95,106,102,100,114,112,105,109,97,98,110,97,106,101,103,109,104,92,109,110,108,102,108,109,100,101,111,106,112,103,99,96,94,105,109,99,98,99,109,112,101,96,98,106,113,97,101,103,108,105,100,106,100,110,104,102,116,106,95,110,104,101,108,100,107,108,112,119,105,115,100,109,117,97,102,108,87,112,110,108,100,115,101,81,94,111,109,93,102,107,106,109,94,97,101,101,103,108,110,104,100,107,105,105,118,106,105,110,92,108,86,107,96,101,99,100,91,104,94,112,113,102,116,98,98,110,93,91,96,118,104,97,110,90,102,122,103,108,107,103,103,92,109,107,106,103,109,98,95,87,99,115,102,99,102,114,110,100,103,107,102,111,104,101,107,107,102,110,99,116,101,109,115,103,97,115,100,108,116,88,109,110,108,100,105,83,112,109,105,98,112,111,105,105,110,110,103,86,119,100,103,101,106,116,98,112,116,101,82,115,111,92,100,101,102,106,102,110,113,91,93,92,102,102,105,115,96,100,102,92,109,106,101,98,117,102,96,122,112,110,81,109,103,94,109,103,109,101,114,91,103,119,107,105,99,99,111,93,90,106,97,99,106,99,109,121,105,106,94,114,100,99,101,103,109,102,104,113,106,98,100,112,92,104,100,104,118,109,103,103,102,101,99,107,100,99,101,117,113,93,100,105,98,114,110,97,100,103,96,107,102,99,106,107,103,109,110,91,106,106,107,114,113,103,109,102,119,118,95,110,102,96,104,88,96,114,109,104,97,109,135,101,112,119,120,116,96,102,125,94,121,109,94,96,104,102,111,112,106,94,99,117,107,108,94,101,95,98,112,98,97,115,106,108,101,104,96,108,110,94,133,98,104,105,112,107,97,96,104,102,98,101,101,110,109,104,90,106,108,95,67,115,103,102,117,91,89,105,94,106,103,105,114,84,112,109,114,104,108,111,114,90,104,98,108,109,103,119,100,99,112,105,109,117,107,94,104,109,105,112,98,96,95,111,110,116,98,96,103,102,96,100,105,103,95,109,94,116,96,109,114,99,103,95,104,104,113,113,101,103,111,103,109,106,106,101,110,97,107,108,101,106,113,92,109,110,104,113,100,104,97,105,99,108,105,99,113,135,106,92,110,104,102,102,104,92,91,110,107,111,75,96,113,111,115,124,101,109,111,114,96,109,95,99,97,96,105,113,107,102,106,101,95,100,104,91,108,98,105,106,110,101,102,105,99,96,108,105,102,79,101,108,107,104,125,118,105,101,97,83,101,96,107,103,114,111,106,127,114,86,111,107,105,101,108,105,108,108,86,101,109,108,101,97,110,109,108,129,114,112,99,105,108,109,109,104,118,131,111,101,106,104,99,94,106,105,98,100,117,110,100,102,107,114,102,99,111,110,97,95,102,116,101,101,97,102,99,104,105,105,114,106,113,94,95,92,107,99,101,99,105,99,113,104,92,111,101,126,110,106,111,110,106,104,100,108,109,107,110,100,106,108,118,116,106,109,108,104,107,71,97,112,109,104,105,101,102,102,94,107,102,113,119,109,107,102,104,92,105,96,102,103,95,94,98,104,116,104,101,108,104,103,100,105,92,95,105,104,97,104,109,105,90,103,108,99,105,99,101,94,115,100,110,97,97,111,108,118,111,117,101,110,102,99,116,111,98,109,106,103,114,109,102,110,101,83,101,109,98,100,102,101,111,94,91,106,95,106,117,116,98,107,99,106,93,103,100,108,115,87,110,99,121,97,78,113,102,103,104,112,114,115,107,113,108,103,100,104,99,100,108,113,105,102,93,105,83,96,102,106,111,109,115,107,97,102,101,114,103,120,119,112,116,95,116,112,105,102,102,113,114,105,103,107,106,102,96,108,111,106,110,107,119,111,107,101,100,101,99,118,117,94,96,101,102,99,106,84,109,102,108,116,118,118,108,95,108,100,103,87,102,107,103,106,107,104,110,107,107,124,90,104,114,116,112,118,105,91,110,108,103,114,104,99,103,119,122,104,95,117,107,108,112,101,132,150,126,172,153,195,235,227,222,195,212,190,183,178,158,174,163,159,122,155,135,141,118,129,110,113,127,120,104,116,106,100,121,95,101,113,113,117,104,114,103,106,112,110,116,99,103,101,114,103,106,107,107,107,110,95,109,98,101,108,101,100,107,115,119,99,113,100,98,113,98,103,106,110,98,105,112,92,106,97,105,113,129,140,112,105,109,110,109,99,104,94,76,84,95,120,106,95,106,113,103,100,104,102,103,109,88,106,99,99,106,105,100,101,108,114,118,107,104,99,115,116,102,104,106,96,114,96,115,108,107,104,95,108,109,104,118,101,101,109,112,98,111,109,100,117,109,101,112,110,123,103,112,97,73,115,105,119,123,110,119,99,110,105,104,103,107,113,91,107,118,108,98,104,114,106,103,112,117,107,116,109,113,103,110,103,105,101,107,85,114,108,117,99,112,98,110,108,108,106,112,117,106,104,117,99,102,87,105,99,110,106,101,112,97,102,107,97,107,94,96,103,113,105,111,97,103,102,106,112,107,106,105,116,101,116,104,106,108,95,102,102,103,105,131,118,114,103,115,104,111,111,102,107,105,99,113,100,85,82,114,107,103,105,110,105,104,110,113,100,110,107,104,91,117,102,106,108,107,104,102,100,120,114,108,105,111,102,105,101,103,109,112,94,102,109,93,94,130,106,105,112,109,103,97,103,100,111,106,105,108,107,98,104,100,109,113,113,103,93,110,113,100,110,112,117,96,105,137,100,92,105,110,103,103,96,99,116,110,99,90,110,104,96,99,82,100,109,107,90,96,107,113,113,109,107,109,105,97,120,97,99,106,96,123,106,109,108,101,95,98,101,103,103,100,109,108,98,100,107,96,102,113,110,110,115,104,107,106,111,110,108,112,103,102,103,119,103,111,95,99,108,107,92,107,113,101,121,91,101,99,113,90,119,100,102,115,106,100,99,114,103,95,102,106,106,112,101,110,112,97,106,104,97,110,100,109,102,113,103,110,111,113,102,100,112,93,103,113,96,103,87,105,100,95,112,102,106,120,104,108,117,106,99,105,112,105,94,100,108,108,109,101,106,98,98,114,105,104,102,103,116,127,103,107,109,107,96,96,97,109,99,93,106,107,117,106,111,106,102,103,107,107,104,107,107,101,112,104,105,103,112,107,99,95,103,100,109,100,107,110,97,108,115,103,97,108,92,123,107,100,103,104,103,114,97,110,119,117,100,104,99,104,97,107,106,110,111,111,95,103,104,105,108,100,106,102,100,106,91,98,105,103,116,107,116,102,107,115,97,109,108,116,122,97,103,122,121,107,102,95,109,110,102,103,115,104,90,108,99,102,124,109,104,93,107,104,98,128,110,99,101,96,81,106,114,84,102,111,110,108,115,99,99,98,118,84,100,112,101,105,109,102,94,107,108,110,102,123,85,83,96,109,111,108,107,102,114,108,111,118,100,107,95,115,107,102,88,93,96,102,113,96,118,93,118,105,108,109,116,104,89,106,99,105,121,105,103,109,102,110,103,103,100,102,99,105,106,104,104,106,96,102,111,105,100,104,100,109,108,101,107,105,103,108,108,126,104,98,121,101,96,104,117,101,106,116,99,97,101,97,96,101,107,106,112,103,109,106,113,96,101,102,117,109,114,110,105,109,101,100,97,104,105,114,105,104,99,100,107,110,111,86,104,101,95,101,109,124,113,98,96,117,101,106,102,102,109,113,102,114,109,100,95,111,115,116,113,105,102,100,82,95,108,106,99,102,116,89,102,111,90,101,102,98,108,105,109,95,106,96,107,111,104,106,102,109,98,108,95,96,88,112,102,117,116,105,105,82,111,99,109,109,103,114,103,108,100,94,104,113,91,110,90,110,106,113,100,104,101,95,110,109,92,101,96,114,95,97,104,102,96,103,120,120,104,110,106,106,104,124,103,105,106,104,110,101,102,124,70,110,101,104,100,100,95,111,104,113,103,110,108,103,106,109,100,99,107,106,93,91,104,109,114,107,101,99,98,108,100,101,99,100,117,104,108,106,104,109,101,112,105,105,110,93,97,100,108,97,118,112,98,109,99,119,103,111,90,100,123,100,107,119,107,107,111,102,102,104,100,115,107,115,104,113,105,112,108,105,104,102,96,97,110,113,110,102,101,99,118,103,106,107,113,91,91,107,113,118,105,106,114,95,85,125,102,84,104,72,102,103,102,107,117,106,112,111,107,104,103,112,109,91,93,112,115,109,114,98,105,97,105,107,114,98,100,104,103,84,112,94,106,96,76,97,103,112,103,98,96,120,116,113,86,101,101,104,100,104,96,101,105,113,106,101,104,122,107,95,107,117,91,99,88,107,107,105,104,101,116,108,91,98,112,98,102,96,104,105,102,97,101,107,96,111,101,87,63,104,112,106,112,99,108,103,108,114,108,111,115,106,110,105,111,102,100,108,98,94,114,101,114,106,111,107,110,102,98,116,110,118,104,98,92,104,108,87,109,93,117,98,102,99,95,110,104,121,87,108,93,112,111,112,93,106,96,122,111,106,109,119,103,106,94, +584.65839,101,102,98,100,93,112,110,95,103,106,92,69,117,116,112,74,103,91,86,107,94,99,105,103,94,109,104,101,108,95,102,110,90,92,120,107,88,105,114,112,106,101,94,110,99,96,106,107,100,106,100,101,109,91,117,97,105,108,108,99,94,108,98,95,110,96,105,112,100,116,104,99,100,111,98,101,113,105,108,107,96,104,100,116,96,108,100,108,99,105,100,95,102,99,113,109,110,101,92,136,103,96,106,98,130,101,107,102,112,116,102,101,97,95,116,95,104,97,105,107,103,113,105,116,106,107,112,102,103,101,118,81,91,98,102,110,89,111,109,111,102,109,103,97,100,105,92,116,105,96,108,93,117,93,110,102,107,99,111,96,105,104,89,106,95,94,110,96,109,110,106,99,102,105,96,96,103,92,114,102,105,114,101,98,118,99,106,91,113,99,101,109,119,104,116,98,112,114,103,107,99,95,127,107,96,104,94,114,128,114,94,100,100,110,95,108,103,110,114,112,104,99,99,106,104,95,105,106,98,81,100,108,109,105,109,112,108,114,95,103,137,103,99,120,94,105,111,106,118,115,104,100,96,106,81,105,98,103,94,104,112,114,106,102,118,113,101,100,101,100,108,106,91,105,104,115,108,101,109,104,98,98,106,109,112,98,102,112,83,114,95,108,121,106,105,99,105,103,102,109,105,100,103,100,91,109,113,109,110,106,116,119,103,90,70,106,101,103,104,111,109,93,103,94,108,104,104,105,117,110,111,100,106,109,103,110,114,108,108,104,98,98,118,103,125,103,99,107,105,102,95,96,114,104,108,109,94,102,110,95,102,95,97,123,95,99,111,101,110,113,84,100,113,103,113,99,94,105,96,108,128,117,106,111,98,96,102,89,99,90,111,104,112,97,117,102,91,90,101,104,94,108,97,89,95,111,101,106,116,100,111,96,101,100,109,105,112,96,102,101,106,107,74,105,126,104,99,98,97,109,114,101,106,90,99,103,100,106,87,106,112,99,103,105,110,118,103,96,102,107,105,99,124,112,101,121,107,105,107,104,89,97,102,115,112,105,109,98,110,106,115,100,95,101,111,112,100,104,93,100,119,102,121,105,85,92,101,111,110,104,111,98,103,94,106,109,105,110,103,103,110,102,108,98,107,108,99,102,103,105,91,123,106,91,106,103,117,110,111,83,103,105,96,109,99,108,112,97,100,111,99,96,108,105,116,114,111,103,109,117,102,106,97,108,118,97,114,110,116,106,108,107,104,102,107,102,85,99,111,99,102,100,104,104,113,74,122,103,104,104,99,102,106,98,116,100,99,95,113,100,104,93,99,102,103,108,104,113,112,96,100,103,96,90,73,112,105,98,121,99,99,113,112,102,93,105,111,98,101,109,99,109,97,102,120,95,101,91,103,113,107,100,102,117,121,109,91,100,102,111,99,108,117,106,94,103,99,91,116,97,103,97,114,103,95,99,117,89,95,100,107,113,106,106,103,109,117,113,91,106,111,98,109,97,94,100,99,97,100,103,112,116,100,91,107,105,112,100,99,90,100,105,114,85,106,97,114,121,116,104,103,96,104,112,108,104,102,94,84,101,104,81,97,96,87,111,110,106,101,107,111,110,97,103,101,103,95,99,114,110,105,89,102,113,110,91,101,97,105,113,102,113,95,98,109,102,112,93,94,97,100,94,109,107,116,108,97,92,96,111,105,101,111,114,119,143,110,100,92,100,107,95,99,105,99,99,97,99,110,107,107,101,99,110,109,112,104,98,120,107,103,113,108,93,98,121,103,99,107,106,108,113,109,115,98,95,91,119,107,101,107,96,101,109,109,112,100,98,92,98,108,102,109,103,114,104,99,110,95,104,114,102,106,111,112,110,104,108,107,109,107,100,112,110,96,125,111,96,109,105,107,99,110,105,104,106,117,105,101,105,106,98,100,98,103,114,108,106,105,105,101,97,106,99,103,100,102,101,107,106,101,77,103,108,101,98,102,101,101,101,103,102,107,102,100,95,100,103,102,102,108,107,94,102,98,100,92,99,74,103,112,124,113,104,105,99,113,108,86,101,126,113,107,113,95,109,110,107,101,115,108,113,117,107,101,99,106,100,110,114,100,117,108,108,94,113,105,112,103,110,107,106,93,106,98,96,105,106,103,109,117,116,117,99,116,108,101,117,99,106,105,105,116,104,105,113,108,100,91,109,82,105,104,106,109,109,114,121,97,106,99,110,102,100,91,98,104,103,94,99,103,107,93,126,98,100,95,102,105,103,101,108,111,100,99,90,111,109,105,106,77,113,109,113,120,108,105,105,111,95,110,83,114,89,112,109,101,111,112,108,108,116,96,106,132,110,111,138,150,136,165,145,191,173,189,189,214,160,165,176,195,167,164,138,148,154,118,139,118,117,109,109,114,106,107,100,101,112,124,120,82,110,87,100,120,99,99,106,107,109,115,100,79,105,109,109,94,103,107,82,117,96,105,103,124,100,104,100,112,98,99,88,105,104,108,109,110,107,94,106,112,114,116,101,104,100,109,109,103,106,102,95,102,100,104,99,108,108,111,109,107,112,107,111,103,102,108,103,106,100,113,103,95,108,96,91,104,105,101,104,112,102,107,94,97,117,112,101,105,106,106,92,112,99,111,102,112,85,136,107,114,91,93,101,97,109,105,105,104,107,114,96,103,105,97,106,113,111,114,107,99,107,99,97,99,106,96,104,103,109,101,103,99,103,115,119,109,104,100,121,111,105,112,109,115,101,113,107,111,97,105,106,96,88,104,102,109,115,103,111,102,113,99,119,105,113,105,104,113,109,98,117,116,99,111,116,104,106,111,110,100,109,108,104,106,99,96,113,99,100,109,101,112,109,104,101,103,113,107,115,107,114,114,119,99,112,119,113,105,112,101,109,113,106,99,104,80,96,111,101,105,99,114,108,107,105,97,105,94,77,96,116,111,114,101,108,97,107,98,114,92,100,99,107,118,115,98,101,100,100,102,102,114,113,106,95,102,113,106,96,102,83,103,101,116,101,99,105,112,108,103,94,104,108,106,102,110,102,102,94,111,110,105,114,106,104,112,122,117,91,110,113,106,112,106,109,96,106,91,109,91,105,105,113,103,101,108,103,116,100,99,99,96,113,106,97,108,105,103,94,106,100,100,94,103,112,101,103,99,113,97,88,105,104,98,108,105,105,102,104,96,113,102,96,98,100,105,115,110,107,116,99,105,106,106,109,106,105,109,98,108,103,110,116,112,111,103,99,110,109,105,109,96,102,103,97,95,104,109,119,106,108,117,102,102,105,85,112,102,107,111,86,108,111,110,109,85,86,116,101,110,97,101,117,110,105,101,102,105,99,97,108,97,102,108,102,111,104,108,103,104,113,109,107,101,106,105,111,96,111,94,103,108,116,91,100,108,98,106,110,102,96,103,100,106,108,106,111,97,103,116,85,100,100,98,115,110,112,109,105,102,98,109,94,103,104,98,105,112,91,107,112,106,113,106,113,103,102,109,72,112,98,106,113,104,106,98,105,114,115,109,106,104,112,106,113,110,106,129,105,120,107,97,117,112,103,96,103,107,88,116,98,107,114,114,106,111,105,102,109,80,108,108,103,101,99,106,110,108,100,97,107,113,109,107,102,120,107,107,114,96,106,107,110,118,104,100,107,102,108,111,100,104,101,99,111,113,107,101,108,108,84,103,105,105,94,103,104,95,96,110,104,95,108,100,107,105,101,79,101,98,104,106,99,109,102,110,106,108,112,101,100,103,73,106,110,102,100,110,112,99,121,101,102,109,101,107,109,107,99,102,109,101,112,113,111,109,93,91,107,118,109,106,104,97,111,107,100,112,109,105,104,75,108,106,99,97,103,102,99,107,105,99,98,104,111,113,101,95,107,91,106,113,116,94,102,103,85,111,106,102,103,110,115,98,100,102,111,105,95,103,101,101,108,102,107,101,105,105,103,94,109,97,100,104,105,115,104,89,104,106,110,107,106,81,103,98,103,101,99,105,106,101,104,111,99,108,99,109,104,117,103,96,106,110,106,120,111,103,96,105,98,106,99,98,100,101,100,113,93,109,98,95,107,119,106,116,112,113,96,101,102,104,111,89,108,95,117,98,105,100,104,95,101,113,102,83,107,96,106,107,112,102,96,132,100,108,100,95,93,114,109,112,106,106,108,102,106,106,106,97,115,114,113,101,98,107,98,101,113,94,103,103,117,95,96,103,100,101,92,100,110,119,90,106,96,103,108,103,102,106,105,103,92,103,102,102,96,93,102,118,99,101,117,99,99,79,105,103,99,108,109,118,103,108,109,103,92,106,111,131,105,108,100,106,102,107,94,113,105,108,97,86,101,103,115,108,102,85,99,85,100,102,108,106,102,121,113,109,109,91,95,111,106,107,109,98,105,123,94,104,110,106,105,101,94,87,102,98,98,108,126,116,83,110,108,108,105,103,102,109,102,123,103,107,98,97,101,96,103,108,105,95,102,101,105,111,84,98,111,113,100,99,102,108,105,107,105,95,96,98,98,90,112,101,100,99,103,102,105,107,111,100,100,79,115,111,121,124,91,96,95,105,102,102,109,100,94,106,97,113,99,104,110,106,113,110,122,71,108,102,106,99,103,104,97,107,110,100,101,91,99,120,118,120,104,102,98,100,97,88,102,101,99,107,102,109,104,122,101,115,141,102,102,97,103,100,99,114,102,102,98,107,112,107,108,97,109,107,116,108,96,101,101,101,100,106,106,108,99,108,95,107,100,100,95,118,94,108,110,111,115,111,104,102,110,101,109,94,68,99,117,104,88,107,109,105,118,100,93,111,105,107,96,95,112,94,102,116,94,106,105,102,89,98,105,113,107,93,98,111,108,108,101,87,109,118,86,117,102, +584.79938,119,113,97,95,105,110,104,107,93,103,99,102,95,91,100,87,95,119,116,113,109,98,97,116,116,108,126,105,85,102,95,79,107,113,106,103,109,106,106,112,93,97,103,88,96,79,97,105,94,107,104,98,94,103,100,112,88,103,117,110,103,121,98,101,108,101,93,117,106,100,102,90,105,112,111,113,101,88,100,117,98,108,108,105,109,97,105,108,91,110,101,124,111,101,95,103,100,108,104,99,100,118,110,96,102,82,103,117,97,99,110,111,108,115,106,111,104,117,102,94,105,110,112,103,113,108,100,103,119,104,121,107,110,110,117,107,88,105,104,113,102,108,99,99,94,111,109,109,102,99,99,104,109,117,102,100,100,89,111,95,102,108,98,112,108,108,106,104,105,113,106,95,108,102,100,117,114,113,119,100,124,102,102,105,105,100,102,94,133,92,97,105,105,113,100,97,100,89,99,106,112,98,101,79,101,102,94,97,118,116,94,109,99,99,105,108,103,105,106,109,125,105,108,96,103,100,102,103,109,109,112,110,105,118,106,116,102,110,113,100,97,110,116,94,97,103,117,104,99,101,110,116,102,103,103,107,108,113,74,100,90,102,115,101,107,105,109,114,104,103,110,119,104,108,100,93,102,101,102,114,110,95,107,87,102,104,94,100,99,111,107,74,98,97,103,103,101,102,100,104,97,96,114,115,114,112,109,98,115,110,107,102,107,110,93,91,108,114,99,108,103,104,102,99,104,102,104,101,109,101,106,99,100,95,105,101,110,109,105,102,108,108,107,112,109,101,113,107,126,109,121,101,105,104,94,104,106,113,111,91,102,106,98,105,96,103,120,111,111,109,104,110,111,111,97,97,102,100,93,109,95,108,98,100,102,92,116,99,111,94,101,94,111,106,118,90,106,108,114,124,109,100,104,105,106,105,102,105,102,102,111,105,106,109,106,97,112,104,107,97,110,103,103,86,116,97,104,97,109,102,105,106,104,100,60,97,104,113,97,114,103,74,105,112,102,101,105,106,95,114,109,102,100,110,101,104,93,100,112,109,107,85,103,110,120,101,94,109,108,112,95,107,101,112,101,116,110,110,110,107,98,114,115,96,98,100,105,103,113,106,117,107,111,106,104,104,98,103,95,104,114,98,117,101,113,108,109,107,114,91,114,70,110,109,106,113,104,105,115,100,114,100,115,94,102,109,109,103,95,111,94,116,108,110,105,101,102,103,93,105,109,113,114,104,119,105,97,101,100,119,112,113,104,100,97,93,120,108,95,103,109,88,115,103,107,85,95,95,100,98,106,101,112,104,103,97,74,96,127,105,99,102,105,112,91,99,108,99,109,100,112,110,95,99,109,113,98,113,105,98,118,108,107,106,96,108,94,94,101,125,108,101,116,107,111,107,100,114,107,101,108,105,102,94,105,106,100,110,111,96,105,112,115,111,97,106,119,102,98,105,112,116,102,103,92,102,101,88,108,103,98,120,105,105,107,103,108,107,98,98,108,106,113,109,124,95,111,100,110,100,106,106,112,117,92,111,112,87,104,98,106,98,104,97,102,105,89,99,104,100,103,104,93,113,106,109,98,103,110,113,113,97,94,97,103,105,98,122,111,107,100,101,110,97,86,108,103,97,104,107,105,104,89,102,102,104,98,96,104,105,99,99,99,100,104,103,110,103,114,101,119,112,102,99,102,102,99,105,93,100,116,108,104,98,95,108,101,89,110,103,88,130,100,108,98,96,107,111,91,118,115,115,104,102,92,109,110,116,88,107,115,113,99,105,101,109,115,111,113,117,99,102,125,98,106,104,94,101,100,99,98,117,115,101,100,106,107,104,119,107,107,97,116,106,108,104,113,94,101,103,109,119,109,90,99,105,104,100,110,111,100,101,94,93,100,113,110,109,103,114,99,115,109,94,98,105,110,70,100,100,103,90,105,118,93,97,106,113,104,99,112,108,117,117,103,100,79,107,110,103,109,116,100,102,108,113,102,101,125,106,107,105,104,97,103,105,97,106,100,109,103,116,94,113,104,94,110,108,101,106,115,125,96,116,96,104,102,107,99,109,121,111,104,110,99,107,109,103,96,109,100,118,100,103,110,121,85,99,87,99,100,105,107,101,111,102,103,101,106,97,107,103,116,117,98,111,96,105,99,110,112,109,111,114,107,96,108,112,106,104,106,102,108,94,109,104,114,108,90,106,108,99,107,93,107,114,106,110,102,108,108,110,109,107,112,105,99,101,82,110,105,105,128,115,96,88,105,111,106,107,112,105,102,101,111,106,115,119,94,103,100,113,107,129,104,104,107,106,104,104,98,112,125,99,102,98,112,109,115,109,112,101,108,94,118,106,117,139,132,148,196,154,154,186,217,177,215,168,196,187,143,180,174,155,147,133,120,119,100,109,110,120,105,108,123,80,116,122,114,93,101,116,108,115,102,74,112,101,111,107,94,99,105,109,116,98,104,108,109,90,91,117,102,109,110,100,92,97,116,95,104,105,116,108,106,102,113,91,91,114,98,122,109,99,117,91,93,82,107,106,101,104,106,99,93,111,97,101,106,102,103,117,105,105,105,124,103,107,100,103,107,117,103,103,98,105,101,96,88,102,123,111,97,116,98,108,108,103,106,106,100,104,109,102,123,111,109,109,117,113,110,92,102,112,106,110,106,109,105,106,103,113,83,109,104,108,110,107,103,100,97,95,112,113,92,102,96,104,103,107,98,106,108,100,107,106,102,110,102,94,96,103,96,110,98,108,110,105,120,116,117,106,93,110,106,100,119,109,116,104,105,108,122,110,110,103,103,107,97,113,113,110,113,98,106,108,102,108,105,110,113,87,112,109,98,108,105,123,104,116,113,100,113,108,120,100,102,112,115,105,96,98,109,112,112,112,109,106,105,103,104,111,106,109,108,98,102,95,108,108,107,112,109,94,113,101,101,107,96,108,121,108,108,107,117,115,110,107,108,107,104,105,87,100,101,108,103,93,110,99,108,110,112,102,103,97,119,106,112,103,106,108,111,111,114,84,103,112,95,106,92,113,114,117,112,103,111,107,109,102,109,94,114,99,110,74,109,97,103,102,107,100,94,96,104,86,107,102,98,91,110,109,105,111,98,104,107,102,110,103,102,102,101,97,103,100,104,108,109,98,97,101,91,92,100,101,104,94,104,108,113,103,105,101,98,110,115,112,102,116,107,101,102,110,113,96,97,105,105,106,107,108,95,85,104,103,98,102,116,106,110,105,97,106,107,108,105,110,107,104,96,106,98,100,100,106,103,106,106,113,100,91,107,107,64,107,114,99,96,100,105,100,100,106,109,106,101,95,106,97,94,114,83,106,114,113,107,108,98,112,106,99,112,105,94,110,100,98,96,99,109,104,98,113,108,96,87,121,103,101,104,102,116,117,104,103,111,110,106,101,95,100,103,103,114,102,109,111,106,98,92,109,108,105,97,97,99,108,103,96,108,114,102,98,87,99,100,102,111,102,109,125,102,116,99,101,110,70,111,99,110,105,116,106,102,111,123,100,106,93,100,123,111,116,101,111,112,99,97,106,111,105,101,101,99,101,110,109,103,100,95,102,97,117,99,107,122,86,98,99,97,98,110,101,99,110,104,102,106,103,109,97,108,112,108,99,97,93,103,104,105,90,113,113,117,97,102,111,99,93,106,121,105,104,107,108,100,99,109,100,105,107,109,112,99,97,109,117,95,94,103,103,103,95,105,103,107,98,113,114,107,106,97,101,107,96,110,91,95,101,102,106,114,105,106,110,95,103,113,107,97,120,117,112,108,101,104,106,103,109,105,110,112,116,99,103,108,101,97,105,101,109,103,105,106,116,113,109,112,98,98,104,108,105,114,107,94,110,101,102,107,90,105,101,115,102,99,100,91,101,99,104,101,100,100,107,104,86,103,97,106,93,118,113,88,101,91,106,102,97,108,102,108,117,88,111,103,108,105,105,102,113,103,111,110,103,103,105,96,98,107,99,109,101,107,92,101,119,104,105,112,104,104,106,102,116,97,94,109,108,107,102,91,98,108,113,119,102,104,100,111,108,102,106,113,101,102,105,91,99,95,119,90,103,103,124,103,105,105,88,111,113,104,101,105,101,103,101,101,103,121,93,128,101,96,100,102,104,111,92,95,102,105,90,106,106,102,103,110,102,113,112,111,93,105,110,106,107,105,112,104,113,88,108,105,104,99,98,99,107,108,87,114,131,111,103,104,104,110,108,102,108,106,102,96,97,91,85,107,107,106,105,103,100,100,100,105,81,95,99,102,84,112,102,105,121,107,106,105,112,107,111,102,97,120,118,98,127,102,104,102,98,96,95,110,103,112,113,84,101,96,116,124,102,106,109,98,118,103,103,94,118,103,106,113,105,98,104,101,94,108,93,101,102,102,106,100,108,99,104,104,109,113,101,107,88,112,95,109,115,120,116,106,96,103,101,92,102,106,107,90,107,97,111,107,107,106,114,108,107,97,108,96,114,106,102,113,104,98,96,101,100,119,105,122,100,115,107,103,92,103,79,103,91,120,111,116,105,93,99,98,120,119,103,114,110,111,98,87,115,92,111,111,106,103,104,113,104,98,106,108,106,104,109,103,107,95,105,103,103,119,94,108,104,112,106,114,101,113,105,104,104,109,125,88,97,105,102,98,98,84,118,106,106,91,99,114,109,112,100,112,119,93,103,108,96,107,89,108,79,108,94,105,105,95,106,102,90,105,104,108,96,87,125,94,105,99,109,99,101,99,103,100,79,112,107,114,92,109,108,109,108,110,98,98,105,104,101,103,103,111,108,112,110,108,104,110,78,109,82,105,113,105,64,109,106,106,99,118,102,105,112,106,112,96,99,104,99,113,93,95,102,89,108,96,103,118,96,116,106, +584.94037,100,106,97,103,105,118,111,110,107,110,111,114,103,111,129,100,100,104,97,110,100,105,102,112,96,99,105,95,103,104,105,109,95,105,106,125,101,92,113,106,90,96,100,102,105,109,106,106,99,111,112,84,107,113,107,92,98,104,112,90,105,101,104,104,100,122,86,106,101,99,94,114,105,114,81,116,96,107,97,85,96,117,117,102,112,96,100,103,112,106,106,108,106,92,111,106,96,85,95,102,100,112,89,106,103,98,102,104,97,110,113,106,99,89,108,109,98,115,99,92,103,105,104,112,104,107,110,102,104,109,111,106,115,99,101,109,117,96,109,99,96,101,98,103,110,103,102,100,84,95,96,106,121,99,102,100,101,83,110,99,120,109,101,112,109,103,104,110,105,102,114,102,91,102,117,90,123,92,104,96,105,94,103,103,109,105,95,105,94,98,102,101,109,113,109,106,110,98,106,102,117,108,106,103,101,111,117,107,111,107,104,115,111,116,94,108,95,104,98,97,118,109,102,107,91,110,105,108,95,117,109,93,106,107,99,108,116,103,70,101,107,83,118,99,110,104,113,99,111,108,104,105,101,102,108,118,105,118,104,102,107,105,103,99,109,104,105,106,102,95,105,114,105,108,110,97,100,109,108,106,103,101,113,104,108,109,97,136,103,118,100,103,110,111,100,109,106,103,99,94,105,109,111,109,104,108,108,107,111,114,95,108,111,107,109,107,105,108,98,118,108,99,112,113,114,110,87,86,104,103,95,102,115,106,113,108,107,99,94,109,95,110,101,116,118,99,99,103,112,107,100,105,90,116,99,100,112,107,117,118,111,97,105,113,90,79,109,115,107,108,116,94,108,98,107,101,103,101,107,110,120,114,108,95,110,100,103,106,102,110,106,94,104,104,108,94,103,95,103,99,112,110,114,100,104,111,105,94,122,104,105,100,119,107,110,100,109,113,104,114,106,106,99,104,98,101,118,77,100,108,103,107,104,97,101,107,91,116,108,106,113,96,115,113,106,111,113,102,108,105,98,100,115,114,93,103,100,109,111,100,100,105,95,109,112,106,112,103,120,110,111,113,97,101,100,100,111,117,110,104,104,106,108,99,112,98,107,105,89,100,95,104,100,102,106,114,110,115,108,105,107,94,105,108,110,99,107,118,107,103,111,102,108,108,100,113,101,103,108,102,109,109,108,102,103,108,112,99,116,103,93,112,111,106,102,105,104,107,111,112,95,111,101,101,101,102,106,117,112,119,104,105,108,103,100,92,117,107,108,103,105,102,103,108,111,94,113,110,98,103,104,104,102,106,100,98,104,108,116,111,120,98,112,103,122,118,103,99,98,99,131,118,105,102,106,102,110,107,109,116,98,93,103,137,107,112,94,103,110,108,102,91,104,104,109,115,96,108,116,111,107,105,109,108,104,107,107,104,127,101,107,104,99,99,99,111,107,96,108,105,106,109,116,110,102,101,114,107,100,105,98,110,99,113,106,113,119,117,103,120,117,103,106,112,93,109,103,102,117,110,115,101,111,99,97,111,108,100,122,111,116,118,87,104,110,112,110,110,109,109,113,112,100,104,107,110,121,107,108,101,99,106,99,95,112,103,100,108,92,109,112,108,73,113,95,100,100,102,115,103,108,91,102,116,106,75,113,114,92,108,104,109,94,99,99,116,110,88,120,104,104,95,112,106,115,105,103,102,116,96,116,99,104,108,112,105,108,105,107,100,94,109,93,104,95,112,95,114,118,91,99,111,103,114,117,95,102,121,102,103,108,110,108,107,95,97,101,87,107,117,113,117,104,120,107,109,109,106,112,115,95,115,101,133,103,100,106,107,107,110,109,102,105,95,111,114,101,110,106,102,100,107,99,116,102,110,104,106,100,104,100,105,107,102,108,105,77,108,105,108,118,104,109,91,116,104,104,99,107,88,108,108,103,95,106,112,110,116,107,109,103,104,94,98,108,112,102,110,111,102,108,96,102,108,104,102,107,106,96,106,114,117,99,125,100,101,97,104,107,107,107,112,111,105,106,88,103,112,112,91,118,106,94,100,106,102,104,95,112,108,121,111,111,108,114,110,107,116,93,104,115,118,106,109,121,109,113,125,96,103,106,85,103,116,107,107,98,107,112,103,108,97,109,103,108,113,120,99,100,106,114,110,134,104,98,109,105,107,124,107,111,107,114,97,110,104,105,115,95,125,105,100,116,98,114,107,106,112,107,114,109,119,101,101,92,112,109,103,102,105,94,99,101,103,112,110,101,102,110,101,85,115,106,93,121,110,104,91,98,115,105,116,106,101,113,117,105,112,107,113,111,113,112,112,104,105,103,100,106,100,117,102,107,107,124,125,116,142,125,134,160,163,191,169,178,173,227,168,181,183,168,181,152,156,163,121,130,135,115,132,100,119,126,114,111,136,106,117,107,98,102,94,109,114,115,118,102,104,114,102,104,110,105,95,96,118,104,105,105,105,108,110,110,104,96,121,97,106,120,119,91,91,105,91,91,109,102,104,106,104,112,106,102,101,101,87,116,123,92,116,105,102,110,86,104,98,106,114,110,117,113,129,112,100,106,104,111,110,98,112,113,103,103,106,109,108,109,101,114,107,106,100,104,78,108,97,110,93,108,102,120,86,104,96,107,106,115,102,111,100,127,112,111,111,105,105,106,103,107,98,103,112,103,107,99,100,106,102,99,88,103,113,110,111,110,107,101,97,105,117,113,108,117,109,98,104,97,106,106,99,105,103,96,104,102,99,104,110,102,103,123,117,105,106,112,105,101,109,102,125,122,107,102,109,110,108,113,96,102,73,99,104,110,94,117,110,105,102,89,106,104,110,102,103,90,103,94,108,103,112,112,96,102,113,110,111,97,114,118,112,104,123,113,116,99,102,106,109,89,111,104,108,122,109,99,102,97,106,112,102,99,118,101,98,105,102,106,107,118,106,108,102,99,108,109,97,109,101,106,99,101,107,94,76,106,108,94,106,100,96,105,82,106,100,92,106,106,102,106,100,111,97,105,88,109,109,97,113,105,101,111,98,107,102,105,103,111,97,111,102,101,104,114,102,107,100,112,107,102,106,107,115,110,106,96,94,107,95,109,97,106,125,108,109,118,106,103,86,99,99,100,96,91,91,111,113,99,97,99,107,132,106,111,105,101,100,109,108,113,96,100,109,106,107,101,100,109,103,116,114,94,106,98,96,99,102,99,110,112,103,99,111,100,103,110,102,117,104,110,104,103,105,120,102,123,101,118,106,93,101,103,96,116,107,103,97,110,112,111,99,93,105,115,89,94,101,109,108,113,106,106,111,100,103,105,114,99,107,110,105,102,106,104,106,106,116,105,99,97,89,101,100,105,111,112,119,90,107,105,101,107,105,100,103,109,107,105,71,117,102,103,102,104,110,109,105,105,103,89,124,113,102,98,109,96,105,109,107,112,112,102,114,109,98,102,91,111,103,105,115,108,105,99,99,100,87,100,103,103,106,113,101,96,109,107,86,96,107,110,98,103,106,106,102,102,86,110,114,98,103,91,106,121,105,114,103,118,109,106,109,113,112,106,106,111,104,121,108,102,97,99,104,100,113,117,117,98,95,109,110,100,106,104,108,112,97,101,115,102,100,99,101,104,99,102,91,98,107,108,112,110,92,108,109,108,92,102,105,86,106,108,96,95,107,98,101,87,115,106,94,109,112,110,102,105,95,112,104,105,102,113,102,105,99,126,111,107,96,114,96,104,107,104,98,113,106,103,112,112,108,87,100,106,106,108,97,112,105,116,127,112,96,108,113,106,97,114,110,113,99,112,106,108,107,109,99,94,99,101,106,103,117,121,101,103,106,106,94,104,94,107,98,98,72,97,107,105,100,119,105,105,95,103,104,113,98,102,99,97,106,115,103,104,103,97,105,101,116,109,91,108,102,102,90,105,108,106,82,118,99,116,94,104,105,99,91,104,111,104,97,122,102,102,96,100,96,106,111,105,113,103,93,104,97,108,98,101,101,109,108,93,99,100,92,97,103,114,100,107,108,100,95,82,106,110,100,101,114,113,107,112,107,113,85,98,107,117,94,111,101,100,108,109,106,113,96,113,106,98,104,106,106,100,95,100,98,104,99,103,103,94,108,105,87,107,79,94,94,110,113,103,100,95,106,104,108,108,104,91,109,102,105,104,98,114,110,100,109,98,102,105,88,103,104,108,104,111,110,104,99,101,84,107,108,119,124,106,99,102,131,96,101,102,113,83,120,102,108,107,107,98,94,109,102,104,111,102,109,96,107,101,104,106,108,115,105,108,104,99,107,96,107,114,113,107,111,97,114,99,109,111,105,103,108,91,88,113,104,123,104,107,111,106,117,74,106,108,99,104,109,92,119,88,117,111,101,95,107,95,118,105,82,99,99,98,106,90,91,100,97,103,95,105,107,102,99,105,100,101,99,106,111,100,107,113,89,107,92,116,102,98,104,101,109,99,109,100,109,109,93,100,111,88,104,103,99,103,90,95,97,95,98,113,104,107,98,107,111,101,102,106,106,92,88,74,101,119,102,104,119,87,109,103,102,116,102,110,104,81,78,101,105,115,105,101,107,106,89,112,111,97,103,118,103,124,117,95,98,106,95,109,102,106,97,115,103,110,100,110,95,101,101,105,113,92,98,95,111,114,102,101,106,108,113,96,109,107,106,99,97,106,110,100,105,94,106,93,104,89,101,97,90,113,108,100,97,87,88,112,107,113,105,110,111,99,107,121,105,102,108,89,105,111,114,109,98,101,113,104,113,98,95,102,95,101,95,105,115,97,103,108,92,95,96,95,106,93,112,104,100,101,117,94,109,100,107,97,110,107,100,90,94,105,101,105,98,114,111,121,104,113,96,103,104,105,75,113,103,95,115, +585.0813,75,117,96,100,99,106,110,96,96,95,100,90,97,92,98,119,100,136,91,109,111,91,104,110,102,110,103,108,99,94,83,84,104,108,103,92,95,98,114,99,64,105,108,95,94,100,109,113,97,104,117,113,109,96,99,99,117,96,113,98,101,99,122,97,99,107,95,109,105,82,107,102,112,103,84,108,96,118,102,100,110,110,94,108,97,101,97,102,97,101,104,105,99,104,92,100,109,110,87,108,111,106,87,103,110,105,112,92,108,104,101,104,114,100,106,120,97,100,103,98,99,105,99,108,105,94,117,100,104,106,87,104,97,95,99,93,110,117,90,97,102,110,92,96,106,93,104,116,106,104,95,101,115,109,98,105,98,104,115,107,94,107,103,101,122,106,91,91,96,92,106,100,102,95,98,109,106,88,104,109,102,102,104,112,95,98,95,91,108,105,92,116,100,96,102,100,106,96,108,74,106,94,101,93,120,99,99,91,105,86,102,104,103,99,104,110,100,100,98,107,101,99,103,102,109,118,102,116,112,107,98,105,100,109,110,105,105,89,111,106,112,107,111,109,113,108,103,94,105,108,94,118,97,88,111,119,102,103,98,101,91,114,109,108,96,104,115,98,103,84,95,120,110,105,107,103,90,107,102,98,105,105,105,100,99,98,99,107,104,104,103,110,102,104,104,108,108,99,90,110,95,99,94,112,109,121,108,99,108,106,100,106,96,97,108,103,106,106,112,105,99,98,102,112,113,103,102,96,115,107,95,103,114,111,111,97,105,96,109,107,90,111,100,108,101,117,112,109,103,95,109,111,109,103,115,99,107,100,96,100,107,103,95,99,107,101,109,100,104,100,97,113,109,92,107,99,106,102,100,117,96,111,106,106,106,99,102,100,107,98,104,94,108,98,98,94,103,106,121,103,112,85,114,88,114,91,107,108,106,114,103,108,102,100,102,105,98,94,99,116,102,100,109,103,107,87,101,96,96,106,103,101,105,103,98,100,106,109,97,94,103,98,95,98,90,100,105,94,111,101,96,94,94,111,111,122,103,103,95,99,112,103,120,110,87,99,118,108,99,114,92,105,96,98,109,99,91,89,118,104,94,102,115,106,102,90,107,104,96,102,96,104,100,90,97,101,102,92,112,94,106,90,93,100,113,118,91,97,105,100,99,98,110,111,106,97,110,104,92,99,102,90,117,90,87,101,113,101,100,101,107,99,102,106,101,101,106,96,95,107,99,104,101,102,120,100,101,100,101,108,101,100,99,106,92,88,110,98,99,108,100,95,92,104,89,108,100,104,101,101,94,100,109,107,108,113,106,113,97,104,103,98,108,102,100,99,94,109,108,98,102,110,103,96,88,117,98,104,105,122,106,106,116,105,107,103,98,95,93,109,97,88,99,105,112,96,105,89,103,89,98,105,99,114,104,99,106,110,107,106,95,106,104,104,115,99,108,102,121,100,101,106,98,100,87,102,89,94,99,109,86,103,100,104,99,96,98,105,103,94,102,101,111,100,98,112,108,95,102,106,99,109,122,99,94,112,97,108,111,102,106,114,103,108,106,112,104,107,114,114,100,95,101,101,95,97,103,116,102,95,119,96,99,107,77,100,102,114,104,97,109,108,110,99,106,103,112,105,94,105,112,94,96,110,106,114,103,105,103,104,99,104,104,102,94,108,94,101,114,97,104,110,98,108,105,110,109,100,97,97,109,110,103,114,104,90,104,104,105,111,105,109,102,105,99,113,96,96,95,107,108,100,106,95,106,107,111,106,109,97,96,108,108,104,108,101,101,112,99,107,89,111,96,102,97,114,106,105,121,108,101,105,112,99,106,99,99,114,109,100,113,101,102,97,106,95,108,98,100,109,97,109,111,106,104,109,107,102,110,104,103,92,107,116,109,104,115,116,101,114,91,120,100,103,106,97,102,103,114,99,100,98,99,107,100,108,102,97,114,97,114,91,112,104,104,107,103,96,105,107,112,110,93,114,99,101,125,97,125,90,103,104,106,108,105,96,103,106,102,107,113,113,83,103,105,98,79,99,100,107,108,111,114,105,109,101,91,100,100,104,107,107,102,123,99,112,108,96,105,108,110,114,109,97,109,100,95,101,100,113,107,111,101,96,108,105,100,108,106,105,108,105,110,100,106,120,101,104,99,110,101,105,108,102,108,110,103,106,110,110,111,129,119,109,111,102,97,98,105,99,98,108,91,108,96,105,106,94,117,99,102,133,95,104,105,100,104,103,94,105,113,99,98,100,107,102,96,125,103,116,106,103,106,103,112,102,111,112,102,104,94,105,109,116,106,94,97,106,118,98,121,102,104,100,111,95,110,112,105,104,110,115,106,119,117,99,116,113,142,165,155,177,178,213,199,219,187,186,186,179,163,147,166,167,144,141,126,131,130,120,106,102,108,106,100,115,102,94,126,101,101,97,110,117,109,102,107,101,100,95,114,104,109,105,103,110,109,98,125,117,99,113,110,104,95,99,121,103,104,100,110,101,106,91,99,106,117,95,103,119,107,117,92,103,109,126,107,109,96,102,104,102,114,92,115,101,96,96,115,107,104,120,111,113,96,111,100,105,105,116,101,105,96,104,90,111,95,97,113,88,109,97,108,103,101,111,125,116,110,109,105,98,108,109,113,104,94,86,98,94,79,104,99,113,103,103,110,97,123,94,111,120,100,104,121,106,110,101,103,113,95,96,106,116,105,121,101,106,93,104,109,103,110,99,77,107,95,113,114,101,102,104,95,110,117,115,103,111,97,99,110,107,104,102,102,106,94,109,96,110,109,106,103,115,106,108,112,109,111,98,109,106,123,87,103,111,101,103,112,110,104,98,111,124,101,106,112,109,102,103,112,102,105,103,96,99,110,98,101,112,86,121,101,108,77,111,104,106,104,107,110,100,105,121,102,110,95,123,103,110,112,102,101,106,104,111,104,112,105,107,116,114,92,105,98,98,108,105,109,101,106,97,102,102,99,102,100,130,107,95,113,115,106,122,100,107,105,106,111,97,115,99,106,112,107,115,105,95,107,101,105,93,115,108,79,108,112,101,98,106,108,116,104,107,98,87,115,99,124,95,97,110,110,99,110,104,108,109,95,100,91,104,108,101,99,99,107,94,115,100,98,103,108,123,111,109,117,115,116,87,108,108,103,102,113,111,103,110,102,106,104,101,97,104,101,89,105,110,106,107,89,107,110,102,105,113,107,111,108,113,108,110,111,111,102,93,109,106,111,102,115,104,112,103,100,103,108,94,116,94,102,98,102,87,102,103,105,107,106,104,110,106,104,105,106,104,111,91,94,101,104,113,113,103,101,99,93,96,103,107,106,118,98,106,102,89,109,110,121,108,109,111,110,112,110,99,109,109,114,97,116,99,94,98,99,106,92,109,108,107,102,103,111,110,107,108,110,103,99,99,100,95,101,116,103,102,105,101,110,103,112,108,113,108,100,103,123,95,109,113,98,96,95,109,106,93,112,110,106,94,113,113,107,102,134,112,110,102,104,96,114,108,111,98,106,101,116,98,98,91,98,106,112,93,104,78,98,116,100,103,93,101,104,115,96,88,108,100,135,97,104,103,108,105,101,101,96,104,109,107,78,102,103,112,100,100,111,102,106,108,109,111,103,99,107,101,104,114,101,98,108,97,105,109,110,114,103,104,100,100,110,106,112,103,105,94,113,112,112,106,101,101,104,106,100,91,101,129,100,102,123,104,120,97,108,100,115,109,96,92,112,111,103,100,103,102,109,106,103,100,114,98,84,112,106,103,110,100,112,105,99,112,110,102,100,96,95,103,112,100,108,84,115,91,101,112,106,100,104,112,93,105,103,100,73,103,102,96,96,91,106,103,100,96,108,112,98,106,103,106,105,100,97,100,112,90,99,98,111,97,119,98,104,91,102,101,106,100,108,95,99,108,102,109,104,112,107,106,99,96,113,98,99,109,112,113,109,106,100,103,102,112,96,112,94,104,116,101,102,97,101,105,102,101,109,109,99,102,99,109,102,102,102,107,106,104,118,113,104,109,108,107,92,107,111,110,98,114,103,113,101,107,103,84,112,99,110,105,107,100,96,109,101,105,108,114,109,105,103,113,113,104,103,108,107,100,113,104,109,101,117,96,96,108,108,110,113,101,112,106,107,94,101,93,98,95,102,97,103,86,108,114,116,107,103,103,111,108,119,107,113,113,105,102,116,94,103,99,111,92,110,102,92,104,104,100,129,102,109,92,102,110,98,97,99,108,95,104,100,108,98,109,120,107,109,102,111,95,107,111,101,102,107,98,109,105,108,103,105,107,112,116,112,118,95,108,98,98,101,117,113,110,113,108,110,104,106,105,101,100,110,106,107,118,110,100,112,107,96,105,106,99,100,117,105,104,109,103,99,97,99,110,100,106,105,106,98,110,107,106,99,105,112,104,115,92,103,96,104,109,114,110,99,106,97,100,89,106,110,100,116,97,107,112,100,112,98,96,92,105,119,103,91,117,107,106,113,103,91,94,97,99,104,112,107,109,104,116,111,101,104,112,104,119,104,117,99,100,99,115,102,114,102,100,99,113,109,98,103,102,93,108,105,111,70,103,104,102,103,98,99,102,109,105,112,101,96,109,109,107,98,102,107,98,102,111,106,101,98,96,106,102,105,107,108,104,116,105,110,103,101,104,110,115,95,104,103,75,99,102,103,110,107,101,111,97,101,95,111,95,103,83,105,99,104,94,102,112,96,115,102,98,102,109,95,93,100,119,103,104,97,115,110,114,110,105,114,105,102,110,108,102,115,99,95,85,106,108,101,96,117,98,100,104,113,106,98,112,104,107,109,110,115,107,96,109,106,103,108,103,100,104,100,69,106,108,118,112,106,103,108,120,108,110,102,96,131,114,107,93, +585.22229,110,104,88,98,95,104,112,104,109,94,88,102,94,102,109,101,119,105,113,82,102,102,97,110,98,104,101,111,103,98,121,100,96,110,108,109,104,116,103,102,103,107,88,104,94,110,132,97,94,111,99,90,114,87,98,102,111,105,115,106,105,110,112,101,107,101,105,99,98,107,98,104,107,111,109,125,99,101,107,105,105,106,105,99,83,88,111,96,111,102,105,91,109,101,120,99,94,105,102,99,97,109,95,95,100,105,99,103,101,108,91,120,105,107,112,105,115,96,103,106,108,92,111,105,99,103,99,97,100,107,96,101,99,95,91,99,101,112,100,83,96,103,96,102,103,93,106,104,112,109,112,101,109,95,95,110,105,105,110,102,103,104,106,100,112,106,106,91,101,97,101,84,105,98,102,110,95,86,90,103,100,108,100,110,107,106,98,75,101,99,106,102,95,110,105,99,106,91,113,110,107,107,102,108,96,116,83,96,108,137,118,107,118,112,108,110,99,104,107,103,106,95,81,122,98,108,104,100,88,79,113,95,107,106,107,105,94,106,106,100,97,91,94,118,97,87,101,90,109,117,107,118,107,100,89,104,106,98,96,112,90,103,105,104,97,110,118,96,106,104,88,106,100,96,121,104,95,92,99,92,109,108,111,104,98,108,96,103,95,103,100,111,114,102,119,103,94,111,109,104,113,102,104,107,102,109,111,110,102,113,94,110,105,103,100,94,121,103,102,106,98,109,93,107,106,94,110,98,102,104,104,108,103,106,72,106,105,104,109,107,103,100,108,98,100,106,96,112,94,95,103,94,98,100,101,110,109,99,101,110,96,111,110,108,113,103,98,98,110,110,116,83,114,100,90,101,106,113,128,101,107,112,99,99,96,109,95,121,105,101,108,102,103,96,96,95,96,100,102,127,100,100,112,99,103,96,101,113,109,109,98,101,104,112,96,89,99,104,126,105,103,96,95,98,102,96,104,108,101,107,100,104,101,98,101,101,97,99,100,121,111,112,107,99,96,95,110,97,116,112,105,105,101,109,103,102,101,105,106,86,118,109,108,111,103,109,105,108,112,94,102,88,97,108,106,95,97,112,110,112,112,109,104,104,105,119,82,95,107,89,103,111,108,104,101,102,100,109,103,114,114,94,106,109,122,114,93,99,102,93,112,107,102,94,97,90,100,108,98,106,103,92,104,111,111,85,111,105,101,96,97,103,79,105,92,86,113,108,107,117,104,110,98,107,102,89,99,108,102,108,111,105,87,111,100,107,109,105,98,98,112,103,101,103,96,107,105,107,96,102,83,90,116,108,110,107,103,85,102,105,106,102,104,102,101,116,99,112,114,99,91,113,102,102,115,123,104,102,106,110,99,96,108,96,100,98,94,103,105,105,86,102,114,100,97,108,105,100,88,110,101,106,111,97,105,110,100,105,102,113,104,102,103,102,101,113,105,98,112,104,94,99,99,102,101,103,104,105,102,106,91,117,113,80,99,104,126,110,100,102,106,111,114,98,96,96,116,102,84,99,106,104,100,70,103,104,113,96,112,83,103,100,111,100,108,108,105,100,106,109,106,99,95,104,104,101,107,104,99,111,112,86,95,115,111,101,108,116,111,88,94,107,106,100,94,102,113,95,110,96,110,106,100,106,104,103,101,108,108,102,103,105,98,101,99,108,97,106,103,102,100,99,98,98,99,119,113,114,91,106,118,109,96,109,95,99,103,93,120,113,105,121,88,108,96,109,98,99,108,102,101,109,125,98,108,102,117,112,98,116,117,94,93,112,100,110,93,114,107,113,103,96,109,107,105,105,108,112,109,94,103,98,105,100,121,113,99,99,96,93,115,96,105,95,118,96,105,98,104,107,107,109,105,110,106,116,100,108,100,106,116,98,108,107,107,109,104,113,99,102,110,118,104,108,90,98,93,97,100,108,101,104,96,117,96,102,110,104,116,106,105,72,103,106,93,108,96,117,123,114,94,111,99,104,108,111,99,113,121,109,96,95,99,104,98,109,106,112,106,97,106,107,104,102,104,96,106,110,98,128,99,99,98,108,106,95,94,109,95,102,109,105,100,110,104,86,112,99,102,107,110,117,98,104,106,103,106,99,100,108,84,116,95,94,102,114,95,109,103,74,103,140,105,105,107,109,111,101,94,99,95,99,101,104,119,113,90,114,113,114,113,100,108,99,114,102,96,112,80,103,95,104,106,108,117,103,95,109,109,100,105,103,99,96,115,103,120,104,98,108,108,99,99,89,106,98,117,106,102,120,102,104,109,102,104,105,112,94,108,97,101,117,98,120,96,109,103,95,102,115,107,101,107,106,110,111,114,94,114,110,113,115,104,97,107,118,122,134,128,164,158,169,163,187,233,208,186,176,138,172,163,176,145,174,131,141,135,149,128,114,118,105,140,106,102,116,94,119,112,97,113,121,107,107,102,104,110,102,104,109,101,102,99,101,117,102,109,104,119,116,93,104,94,110,107,109,105,103,123,106,87,92,104,104,112,114,112,109,101,107,97,107,125,95,101,85,106,113,100,108,111,99,93,109,109,108,109,119,100,107,90,114,106,90,102,105,125,103,99,95,99,99,100,103,99,89,99,95,101,98,113,101,109,105,94,102,109,92,91,104,106,94,90,138,106,112,102,105,114,96,108,106,113,101,137,98,117,96,120,104,113,116,102,109,105,100,94,113,73,101,98,118,111,102,97,108,107,101,95,104,107,108,95,105,113,104,107,119,111,109,109,104,93,116,104,105,103,123,99,107,105,105,103,102,102,97,105,106,110,108,95,108,104,104,108,100,113,106,103,117,113,107,111,111,92,116,100,117,102,109,106,109,112,100,110,103,95,108,112,105,106,99,107,103,108,97,101,117,113,110,102,110,101,114,106,100,103,99,101,96,102,112,109,107,111,100,103,106,113,104,92,106,104,113,109,108,107,99,85,112,107,106,84,103,102,103,102,101,112,94,107,95,111,93,109,102,104,118,111,100,93,94,99,105,113,107,110,101,102,72,116,107,109,110,114,100,112,109,109,105,101,103,109,97,105,106,117,104,110,96,106,111,108,85,108,104,100,101,106,98,105,100,109,99,120,99,107,102,103,107,95,101,91,105,111,109,104,117,113,102,108,103,109,96,112,108,101,112,107,114,106,103,94,116,116,103,107,99,111,125,110,113,105,103,108,110,108,104,105,96,97,107,117,101,117,108,97,100,111,127,123,111,96,95,115,103,104,105,104,102,107,102,99,112,101,99,97,108,101,96,101,101,96,121,99,82,107,105,108,104,101,98,98,103,103,101,114,110,109,116,103,105,99,116,100,100,106,103,106,97,115,111,98,89,106,92,109,101,102,99,93,107,99,105,95,102,105,101,97,99,115,99,91,101,108,98,106,108,112,110,103,97,100,107,121,111,108,125,99,104,108,107,100,119,108,103,105,105,112,109,102,104,105,104,106,101,106,99,113,104,107,110,106,100,111,93,97,105,120,108,103,105,103,108,100,112,100,110,120,108,111,109,105,98,98,113,99,103,109,108,111,102,103,105,105,117,99,109,103,99,94,104,105,119,102,118,94,117,98,95,95,109,95,112,101,106,109,118,103,95,106,97,100,113,112,99,112,96,107,99,98,107,112,104,105,113,110,107,110,113,105,116,107,120,102,104,101,91,104,107,113,103,102,108,106,91,90,115,100,112,99,110,109,120,106,102,103,102,105,105,98,104,99,114,121,91,97,91,99,102,101,103,109,85,102,99,92,95,82,99,94,102,106,88,96,102,102,103,67,87,75,113,113,107,95,97,100,104,102,98,94,100,100,94,109,80,73,104,100,103,102,105,106,107,98,99,128,108,108,99,110,125,106,110,108,113,106,113,98,113,84,112,102,102,107,99,96,110,92,94,135,100,106,94,96,106,108,103,96,102,97,97,109,101,106,113,84,112,103,103,102,98,102,96,101,111,99,112,109,102,110,86,102,71,93,106,113,107,97,110,113,100,95,102,106,113,86,102,101,102,100,102,98,92,95,103,103,105,108,116,100,105,104,106,103,113,112,102,94,105,99,106,115,98,95,107,101,119,109,106,104,107,107,114,97,113,98,116,125,103,105,99,104,102,87,110,103,105,109,111,101,105,101,96,100,107,96,98,93,100,98,121,95,113,111,102,116,121,95,95,115,117,108,103,109,103,99,102,114,92,99,102,100,107,107,95,109,111,89,113,120,106,116,104,98,103,103,106,101,109,103,106,107,96,95,101,103,117,102,112,104,100,101,101,104,93,102,99,97,100,100,126,98,101,109,105,108,98,84,99,116,105,113,113,109,108,81,106,108,110,103,114,114,109,113,107,114,109,124,125,97,104,108,100,125,115,124,112,103,120,137,118,107,108,97,97,108,107,124,108,93,98,108,99,100,109,98,95,100,105,105,104,93,108,91,105,99,102,92,105,107,112,111,100,96,105,105,101,111,102,100,101,102,115,109,95,98,108,108,100,95,108,87,105,105,103,100,100,98,108,101,97,107,100,102,109,109,104,103,100,97,100,101,107,96,103,97,108,101,101,107,117,110,108,103,100,103,89,117,106,99,91,106,108,101,109,110,105,115,108,95,90,104,94,100,90,103,103,106,107,86,99,104,92,106,95,103,116,105,94,118,94,102,110,106,90,104,103,92,105,96,104,100,100,103,95,112,99,90,100,95,102,103,103,84,84,100,109,109,98,108,99,108,102,102,115,104,108,106,115,118,109,91,104,102,113,93,103,103,103,113,90,107,101,93,96,98,105,110,109,104,71,108,86,95,103,117,104,124,105,115,112,90,106,103,106,92,75,91,97,99,113,104,84,105,92,99,102,98,98,104,100,99,97,113,102,96,109,112,105,102,107,112,110,107,108,102,100,105,101, +585.36328,109,106,101,105,107,99,88,117,98,100,103,107,105,112,108,110,110,110,105,86,105,108,89,85,89,106,108,105,105,103,113,90,99,99,104,93,122,103,99,114,93,111,97,82,100,110,100,108,94,99,93,100,79,92,90,88,108,95,109,93,100,102,99,96,81,118,91,107,98,95,103,107,103,109,98,108,110,108,115,109,101,94,99,119,107,94,102,105,108,116,95,87,104,104,115,102,100,99,91,96,97,105,122,96,106,108,108,112,96,101,105,102,106,83,91,95,92,108,113,106,89,109,98,121,113,100,106,87,105,112,101,104,117,98,108,103,91,103,104,112,112,117,100,101,102,116,117,103,99,103,102,99,104,91,95,115,115,111,100,106,101,107,100,101,110,107,111,96,109,98,108,118,110,95,107,109,104,92,103,105,98,102,95,100,117,95,97,92,97,99,110,103,92,108,104,95,100,105,108,101,99,99,101,98,101,111,116,93,113,107,80,105,100,110,91,108,97,107,110,120,129,133,107,104,105,110,106,106,113,97,111,104,107,110,110,110,104,99,116,103,115,97,105,96,100,112,113,111,101,117,98,110,100,102,93,98,103,109,105,113,100,100,102,113,102,104,104,103,118,100,87,104,101,101,104,105,110,101,110,100,104,115,105,109,94,83,95,100,117,110,117,107,94,104,108,112,104,121,93,102,100,107,106,111,93,112,115,104,105,114,100,114,107,104,129,105,104,109,100,108,111,96,109,107,104,103,103,94,113,104,91,97,105,87,102,105,108,98,93,105,109,91,100,104,102,102,110,102,114,111,111,108,122,104,110,105,102,101,98,103,106,100,101,101,119,108,105,118,96,97,114,98,107,104,110,103,104,113,113,89,104,102,113,113,98,109,94,99,117,104,102,103,97,117,103,95,107,112,107,114,107,114,107,105,122,101,107,105,104,99,105,105,103,98,113,90,104,106,94,99,104,106,97,106,98,105,106,100,106,106,105,101,108,107,96,119,98,96,106,102,104,111,110,102,102,111,86,95,105,116,79,96,99,102,96,95,94,107,116,106,99,101,107,107,108,102,108,98,107,124,102,100,94,109,109,97,102,109,110,110,109,105,97,103,99,91,111,98,94,106,113,112,105,113,86,116,98,113,102,112,109,98,112,106,110,113,108,107,119,99,87,109,106,116,120,103,100,129,115,94,102,100,101,107,108,106,114,113,106,108,97,100,101,93,103,102,103,114,111,115,116,111,114,103,110,92,111,89,106,128,101,99,121,113,120,110,104,111,99,92,109,114,98,110,116,109,114,99,100,107,91,96,110,111,106,117,100,108,107,111,112,99,102,107,97,109,110,95,113,122,109,109,108,107,119,107,105,108,106,102,99,112,108,108,112,113,96,104,110,105,106,102,108,101,112,103,107,99,129,131,94,97,98,105,113,108,104,111,91,104,109,116,109,112,101,99,109,115,100,110,106,107,105,88,105,90,103,102,129,101,104,113,109,113,145,107,111,113,102,110,118,104,108,107,89,108,99,102,114,102,113,101,116,94,110,104,114,88,102,109,109,100,108,95,119,103,91,108,119,105,98,123,100,106,92,90,109,106,114,106,108,95,105,104,111,107,105,104,95,108,92,103,104,109,104,100,93,109,93,103,109,99,100,107,111,103,108,105,107,102,109,108,103,94,95,97,102,99,103,101,97,100,108,108,121,106,102,109,107,106,103,103,114,101,95,100,93,112,113,91,119,111,120,109,95,106,94,126,117,102,108,112,112,96,104,99,107,108,103,103,102,105,112,109,109,114,100,105,111,135,119,126,117,118,106,99,106,111,117,106,112,107,107,110,107,102,84,110,99,94,113,84,110,108,110,103,113,114,110,99,114,101,81,99,96,104,100,94,110,88,98,102,104,106,103,99,100,108,111,100,116,111,109,100,98,109,102,105,100,106,113,97,109,95,110,99,101,107,93,110,98,103,108,97,108,102,113,103,101,111,104,109,100,107,111,108,112,112,101,102,101,98,104,104,102,91,104,111,118,104,114,113,103,108,98,106,109,101,98,108,105,112,104,101,107,106,99,108,106,117,115,110,107,114,106,96,93,103,105,103,111,101,107,99,100,111,108,111,109,112,106,105,103,113,107,96,83,102,100,107,119,96,102,99,108,103,100,103,116,102,95,102,98,107,123,82,99,103,101,110,104,105,111,108,115,92,109,104,93,101,113,112,98,115,96,105,103,99,98,103,117,98,106,107,108,115,95,102,107,101,107,105,106,104,106,109,117,114,91,111,99,113,96,103,123,96,97,104,101,109,104,109,102,108,101,105,94,112,102,105,108,107,93,111,106,107,90,98,106,102,100,115,87,100,117,118,105,122,141,145,142,172,194,185,189,208,174,162,164,164,206,172,135,152,145,127,137,134,147,122,109,126,104,104,122,110,109,102,119,110,109,109,107,104,95,100,105,93,77,109,104,123,113,108,89,112,79,117,106,112,95,108,94,99,101,106,101,99,122,99,111,111,100,104,107,100,107,110,105,113,101,108,102,110,110,103,108,109,109,105,97,100,106,101,100,121,109,111,100,103,99,116,107,98,100,110,103,101,113,98,117,97,103,117,101,99,112,92,110,110,110,110,109,95,86,108,96,103,104,104,106,103,113,102,106,110,105,100,111,97,105,103,121,100,105,109,105,104,109,101,108,95,101,99,113,87,111,90,103,106,107,102,103,107,108,103,110,83,110,112,105,103,111,106,102,120,92,115,117,99,103,100,104,102,115,84,112,106,99,97,96,115,102,101,113,99,109,112,111,107,100,99,97,103,107,102,98,84,107,99,94,100,105,108,109,98,121,107,114,94,111,113,106,117,107,104,103,116,94,117,104,105,100,109,131,76,98,106,109,101,106,118,113,115,96,95,111,105,108,107,110,108,111,103,103,106,103,104,98,110,115,115,105,118,103,110,107,100,107,116,99,113,93,115,108,91,109,106,87,104,111,100,104,116,98,104,105,100,112,105,103,110,107,95,108,110,91,99,111,107,100,99,104,113,119,110,114,101,106,99,108,97,102,102,91,102,102,103,100,108,92,121,116,109,92,99,119,99,104,99,111,102,116,98,98,100,102,108,109,95,99,100,102,105,102,101,112,99,120,100,109,96,99,109,114,100,112,112,111,106,84,111,96,100,105,115,108,102,103,107,107,104,94,109,102,107,100,93,121,105,100,100,97,99,102,89,100,122,95,101,107,98,101,96,110,121,106,106,109,103,102,103,111,119,112,107,96,101,94,90,108,106,104,106,121,83,112,104,104,109,106,101,119,105,99,116,103,99,96,105,89,121,94,108,108,103,108,103,94,98,95,99,98,88,102,79,112,106,92,99,97,109,111,92,101,100,99,111,99,96,93,102,94,102,122,108,105,107,113,92,98,90,106,109,105,88,93,91,103,113,96,103,97,96,100,111,114,119,105,109,111,111,105,115,104,106,102,103,109,113,98,110,102,97,92,106,98,109,115,106,105,116,98,104,100,99,101,98,101,89,94,102,104,107,102,102,109,115,107,105,97,105,108,106,102,110,96,109,108,117,107,103,98,107,110,114,126,107,98,94,106,108,104,116,104,113,113,98,96,113,100,91,109,115,101,100,94,114,104,105,104,117,106,124,99,102,109,101,103,111,107,97,94,108,113,103,98,112,104,111,108,100,74,92,108,115,112,118,97,111,111,103,95,103,106,102,115,97,114,100,105,112,101,97,105,110,119,99,101,103,102,100,106,108,106,111,102,106,109,97,110,106,92,102,97,98,97,102,104,110,95,121,91,100,109,99,100,100,99,102,124,100,110,107,101,105,110,97,105,106,110,108,96,109,101,107,100,110,103,106,96,101,117,106,102,92,96,102,108,108,113,91,102,85,99,111,101,101,103,104,98,95,121,103,117,98,97,97,110,106,80,108,114,91,108,90,101,92,106,90,98,119,95,107,93,97,109,105,102,92,108,98,119,107,109,96,106,105,110,111,104,100,93,114,110,96,96,103,102,101,108,107,101,108,107,101,113,104,110,109,93,105,90,94,117,112,99,101,105,112,102,95,119,90,108,101,108,102,107,85,101,105,109,91,95,105,109,112,116,99,111,105,111,110,124,102,114,99,102,103,98,99,96,102,110,95,101,110,103,109,106,107,109,93,101,71,104,96,107,106,95,87,105,103,110,108,107,112,108,103,117,115,103,114,92,123,108,115,101,104,112,101,97,99,110,111,114,92,120,88,98,113,101,101,102,105,101,108,118,111,105,109,100,101,105,101,110,94,95,109,104,84,103,108,116,104,109,98,96,132,108,110,105,113,124,92,105,79,105,113,106,102,101,95,109,97,107,105,104,113,93,102,108,108,98,86,105,104,109,100,100,96,109,114,96,117,93,105,99,113,99,100,116,113,101,110,91,103,105,104,106,93,105,114,106,101,107,99,101,108,106,102,104,111,107,94,101,106,96,100,115,108,110,103,124,113,93,103,106,105,92,95,101,108,107,99,97,107,112,100,99,103,92,92,104,95,107,115,108,108,91,96,94,117,105,96,93,88,104,114,99,116,108,105,102,100,95,102,101,97,102,113,96,104,99,97,98,109,83,104,125,112,92,103,91,115,95,112,103,96,89,105,106,117,103,109,122,98,109,107,109,97,96,97,95,105,98,99,116,102,121,97,98,106,111,109,105,105,91,110,102,112,109,107,107,103,103,97,110,96,105,109,105,92,99,101,97,98,104,92,102,108,99,105,102,111,102,90,105,109,108,105,99,98,93,97,108,110,108,94,95,106,105,105,96,113,94,99,123,90,99,106,102,96,93,93,90,105,100,110,95,125,99,104,89,102,102,108,99,98,106,99,106,94,89,106,87,109,106,76,99,101,130,116,112,100,111,105,102,104, +585.50427,105,97,90,91,104,102,101,95,105,114,118,103,103,112,108,105,116,113,99,122,119,98,128,110,107,105,108,105,101,113,117,101,101,90,111,116,95,94,109,99,92,97,106,109,102,114,99,96,98,100,104,106,103,100,110,102,107,108,112,109,93,106,90,101,100,104,104,105,90,93,99,94,88,100,89,109,95,97,104,99,97,106,99,109,105,105,109,113,103,74,95,96,96,93,98,84,105,103,107,108,116,84,99,96,73,101,99,96,104,110,101,103,92,105,86,99,105,97,104,86,106,95,107,111,104,108,100,116,110,107,102,100,101,131,115,104,92,94,114,103,109,112,97,101,107,97,113,82,102,99,99,96,119,100,93,103,95,100,110,122,107,98,115,102,99,118,98,96,111,88,97,99,104,95,99,101,92,86,107,97,107,105,98,114,101,97,106,96,116,96,106,107,103,98,109,105,110,96,104,110,89,96,99,97,97,107,112,114,111,104,90,117,106,99,110,106,112,94,116,115,106,113,103,106,109,101,101,103,110,97,105,107,104,118,107,104,94,115,94,98,100,80,109,107,101,99,99,105,93,105,116,98,107,119,115,115,118,97,114,98,101,96,96,110,100,110,118,94,99,99,105,106,98,94,105,94,104,98,104,103,104,114,100,102,106,102,114,96,115,108,99,109,102,102,95,104,110,108,99,109,76,111,105,104,95,104,113,102,99,108,98,103,95,101,99,99,96,105,102,98,95,100,104,104,113,111,111,94,111,113,87,98,103,95,99,114,99,99,100,111,96,114,103,107,105,102,107,109,106,116,93,106,110,95,104,105,108,105,108,101,97,96,118,98,99,100,103,78,106,117,103,104,107,105,114,96,106,103,95,100,103,101,113,104,99,113,105,96,111,92,117,89,117,114,99,105,86,110,117,108,94,99,114,108,108,106,95,100,117,108,93,100,94,95,106,96,104,99,109,67,104,103,104,90,98,106,99,113,108,104,94,99,112,102,101,100,113,108,117,101,99,114,120,112,101,104,106,104,102,109,99,105,92,100,111,101,109,103,110,93,103,99,102,109,108,109,109,103,99,103,106,119,105,110,97,100,96,122,114,111,94,111,102,91,103,101,105,99,108,105,105,119,106,106,97,90,99,100,108,99,123,102,109,112,114,93,96,112,109,103,109,104,110,110,101,95,113,91,114,102,109,105,94,96,108,104,101,112,125,115,106,112,113,104,114,90,112,109,92,108,105,99,110,101,110,101,109,102,98,105,116,100,108,109,91,95,96,103,99,98,102,100,104,116,91,96,104,104,105,105,97,98,95,110,98,112,100,92,101,96,102,95,109,109,99,104,84,102,93,100,113,108,94,109,96,105,106,121,102,109,105,109,111,109,109,95,94,100,96,100,106,98,110,102,102,86,112,106,109,97,97,105,105,99,104,106,107,95,117,107,86,102,100,102,107,111,108,91,123,103,118,112,108,105,108,101,105,105,95,105,103,105,103,110,116,118,103,105,105,102,98,111,94,99,114,103,106,102,109,91,103,106,113,101,100,115,104,93,97,107,108,105,103,98,98,106,104,105,115,104,98,97,96,93,103,104,104,105,103,96,94,95,104,107,108,108,126,91,100,107,110,105,102,98,102,105,88,100,113,94,109,101,103,117,103,113,101,114,118,118,113,105,105,107,100,87,100,99,101,87,106,99,102,102,105,99,100,105,109,98,85,95,106,104,104,99,100,108,111,109,96,117,113,90,74,113,102,104,99,106,100,105,100,90,83,111,111,95,105,106,113,101,108,114,94,102,113,97,103,108,105,117,100,116,105,112,101,117,91,110,101,99,115,103,101,107,111,107,114,117,80,95,113,99,113,110,103,109,117,116,99,108,103,97,98,103,106,109,119,102,109,106,107,113,104,100,107,100,101,99,103,93,110,111,98,107,108,93,107,98,95,94,106,107,109,107,105,110,105,93,104,98,104,103,104,109,90,109,109,109,106,96,111,115,98,112,108,101,92,97,106,112,76,109,98,104,102,118,98,108,98,121,110,111,91,95,101,109,102,107,97,104,110,98,105,120,95,105,108,117,107,97,106,107,103,90,94,119,107,105,121,104,107,102,103,108,98,97,110,99,97,101,101,121,99,106,104,101,92,95,108,95,104,104,96,111,105,104,98,111,95,95,112,98,104,108,107,97,116,94,117,106,110,91,101,106,102,105,98,103,100,89,110,106,96,113,120,104,109,106,108,104,108,102,101,108,94,103,109,106,102,109,108,103,118,103,115,98,107,114,91,102,101,105,98,100,110,102,102,100,108,113,98,101,110,112,103,115,103,101,99,108,112,111,110,93,114,98,102,110,109,109,113,132,112,107,103,146,142,149,172,159,188,175,195,208,198,206,171,151,160,171,167,135,140,133,119,144,134,127,101,120,115,106,102,113,115,125,102,104,116,131,112,103,113,113,117,97,106,111,103,113,112,103,106,110,97,103,117,108,95,99,113,84,127,113,100,109,117,99,122,100,106,94,122,116,110,85,109,109,89,113,105,99,111,91,95,117,94,110,104,112,99,116,108,106,98,98,97,104,105,106,109,109,110,108,106,108,96,96,111,105,91,108,93,103,109,89,104,95,104,108,105,77,132,102,97,98,118,107,95,97,94,106,106,104,99,97,96,105,111,102,106,111,104,102,101,105,95,106,116,99,103,128,109,102,117,112,108,93,102,99,108,103,111,111,109,100,99,109,112,118,119,104,102,107,108,103,104,100,96,103,107,107,106,105,98,109,116,105,112,105,100,109,98,119,108,110,123,110,103,117,113,106,113,114,105,102,101,105,101,113,108,106,121,91,106,109,83,109,115,120,96,87,102,109,119,107,129,116,107,107,108,105,119,103,115,102,94,123,110,100,109,111,109,106,116,115,92,117,113,99,102,105,116,110,100,106,106,103,104,114,95,108,109,103,116,95,110,107,101,119,86,119,98,93,109,99,92,106,104,103,117,107,109,102,111,111,113,99,102,106,101,104,101,113,107,95,101,100,96,92,97,118,112,79,111,108,108,104,105,103,104,99,108,98,108,95,107,113,101,101,106,111,110,102,102,107,107,114,120,120,104,95,102,97,113,109,107,105,100,108,103,112,105,109,110,107,100,110,98,115,105,106,96,104,104,104,104,99,98,96,109,115,116,105,113,96,115,110,104,104,124,128,103,104,107,106,107,102,96,115,101,92,112,77,107,102,97,107,113,105,105,96,102,97,103,96,117,109,109,105,99,103,123,111,107,110,115,98,104,107,113,106,112,96,102,108,91,102,101,91,125,108,111,108,111,100,100,98,124,101,108,107,105,102,94,107,106,107,106,110,102,87,106,102,108,108,109,104,111,85,104,107,107,95,104,105,96,108,105,108,104,105,98,110,96,102,99,108,112,107,101,100,105,108,98,109,108,102,106,112,102,98,99,82,108,105,106,105,110,114,110,98,110,104,99,96,121,102,109,98,113,105,109,100,97,112,110,102,100,104,100,92,106,103,106,110,99,110,109,111,103,105,110,109,112,104,109,122,112,114,108,112,107,110,91,120,116,103,113,114,126,106,103,107,110,109,102,112,111,108,103,95,101,107,113,116,104,100,94,108,102,113,106,92,114,113,109,97,117,96,103,113,93,98,96,108,96,109,127,116,97,107,90,94,104,99,102,112,116,105,110,102,111,104,104,98,106,118,107,95,108,99,95,102,116,105,96,96,102,83,104,96,101,103,104,95,97,111,97,96,121,114,107,143,94,107,109,116,105,102,99,100,98,120,101,101,110,98,95,102,97,112,100,108,109,113,105,101,116,118,109,105,109,111,101,103,98,113,98,109,98,112,106,107,105,96,106,77,108,105,103,126,111,109,109,113,106,117,100,112,87,94,109,118,110,107,97,94,111,106,102,117,109,107,117,100,116,110,99,104,113,103,99,101,108,102,104,104,105,102,109,113,108,105,104,103,102,113,102,100,117,109,98,121,101,112,97,103,70,83,106,95,79,101,103,105,123,113,105,109,91,109,104,105,112,97,110,103,109,104,90,113,105,124,108,106,105,100,96,106,113,94,106,105,108,105,121,106,121,116,96,106,104,104,101,125,99,107,113,96,95,98,106,84,84,100,106,109,108,103,100,120,105,101,89,116,112,122,101,91,102,108,105,105,107,106,96,103,109,116,110,120,100,109,96,117,112,106,112,95,109,93,100,100,108,112,109,112,100,99,96,98,114,120,112,106,119,105,104,102,108,75,99,111,97,105,114,110,110,117,108,108,110,83,106,108,104,110,101,108,99,116,112,96,118,79,98,116,96,109,104,109,109,115,114,102,98,125,108,88,104,108,112,120,107,97,115,117,112,109,103,116,101,109,85,106,105,103,95,103,100,103,111,72,99,119,108,118,91,98,91,111,105,104,101,100,117,104,111,102,107,107,107,109,103,95,109,112,101,115,106,98,98,102,116,104,105,109,103,107,114,116,109,96,99,107,99,99,101,99,99,104,113,105,109,98,99,106,100,114,93,106,99,100,104,99,119,113,104,99,88,97,98,100,101,106,104,108,105,117,117,114,128,103,120,122,109,107,103,107,106,115,103,104,106,113,105,103,100,114,102,105,117,106,105,109,103,101,111,108,109,100,105,107,112,119,113,101,96,116,98,94,113,101,106,104,105,100,97,105,105,105,103,119,103,111,101,117,107,106,111,120,81,100,98,104,108,98,98,92,98,113,106,114,107,96,110,105,100,116,92,113,107,109,115,108,101,89,104,113,105,85,84,106,109,88,99,106,102,112,121,101,96,105,117,102,100,105,117,106,98,99,95,95,97,103,99,104,107,102,88,112,97,109,84,101,116,87,121,106,99,102,105,102,110,105,108,116,99,93,102,107,143,103,113,106,124,97, +585.6452,111,86,103,102,92,116,103,94,90,99,110,113,107,102,105,110,87,112,88,108,108,105,103,105,109,112,103,105,123,95,102,106,106,94,104,98,99,105,96,102,96,109,103,92,101,103,98,102,105,89,106,95,118,101,102,102,95,98,117,105,108,78,108,111,98,102,108,108,108,106,113,105,83,109,102,105,99,94,90,103,103,106,102,102,100,96,95,122,105,102,88,119,100,98,104,96,102,107,104,104,117,95,91,102,107,103,91,99,114,94,99,113,107,102,95,101,111,102,106,101,97,101,121,108,112,106,105,93,109,113,100,103,107,105,103,110,106,91,96,105,105,106,92,103,99,106,113,104,96,109,118,97,86,92,98,98,107,106,107,99,106,114,105,91,97,105,111,115,117,99,107,91,91,113,107,104,112,84,110,106,101,104,95,113,124,107,95,106,112,102,91,104,112,99,97,117,100,100,117,126,109,107,99,100,102,109,105,99,121,105,95,92,102,104,109,104,104,118,101,117,103,105,98,97,90,102,99,116,101,107,111,98,94,94,96,102,104,106,94,115,108,109,121,123,113,99,95,107,102,105,96,107,100,106,104,100,98,96,99,105,120,100,110,108,95,110,108,94,94,111,94,97,113,98,101,99,100,112,98,105,104,113,111,107,103,109,104,109,111,114,94,103,116,99,102,99,100,104,88,104,98,100,95,103,95,113,103,108,125,101,102,99,104,111,109,98,81,111,102,99,99,108,105,106,106,102,107,94,115,104,110,107,105,110,110,116,106,113,89,102,108,103,104,110,116,108,117,100,112,113,118,121,107,95,104,104,101,94,107,108,101,93,90,92,92,101,97,108,117,117,99,106,100,97,99,142,100,104,108,109,99,81,112,98,99,107,98,100,99,107,108,86,100,116,101,98,95,102,108,103,92,114,97,87,106,96,108,102,108,94,94,103,103,104,97,95,101,100,106,103,101,100,108,105,107,103,97,116,99,105,108,101,115,102,101,103,109,107,99,103,114,100,109,120,98,103,86,102,101,100,102,87,86,106,100,108,101,99,104,109,91,103,114,117,105,107,113,103,113,109,105,113,103,94,107,94,97,100,102,107,102,116,102,110,93,102,102,105,101,100,92,101,116,92,102,104,99,109,108,113,107,105,107,102,109,109,97,104,104,95,118,91,108,109,110,92,105,98,100,95,106,107,120,104,107,122,107,108,116,104,102,104,96,109,111,104,118,93,119,118,113,136,98,98,113,104,109,103,103,101,107,97,101,97,117,108,114,106,105,110,103,114,98,103,93,107,109,115,97,103,104,100,91,117,92,105,110,101,91,112,107,114,97,94,107,104,125,114,100,108,115,101,105,101,111,108,102,118,111,135,101,95,109,103,102,104,100,115,106,106,97,103,81,107,100,103,96,101,105,103,113,98,110,105,101,105,115,101,104,106,105,95,100,105,112,108,98,112,114,102,103,89,106,98,100,102,114,107,99,97,103,120,106,110,111,109,109,104,98,100,102,112,102,110,108,113,112,117,98,98,106,103,102,96,111,105,94,113,102,101,111,100,113,81,100,106,114,111,108,110,101,97,109,103,108,104,115,100,106,98,106,104,97,95,105,106,117,89,99,110,109,108,100,98,111,109,106,96,105,100,108,101,108,112,112,110,91,115,101,108,102,108,105,102,115,107,107,105,105,111,98,81,107,107,96,109,105,100,105,100,112,83,100,128,102,80,105,101,107,103,100,102,109,108,105,103,99,100,102,112,95,96,105,108,96,105,111,106,96,109,95,98,105,109,100,103,109,97,82,102,108,107,92,116,96,108,105,98,101,84,106,92,106,102,110,98,100,100,106,103,109,103,107,118,103,79,105,102,101,91,108,111,114,111,111,112,110,110,108,111,93,112,106,107,91,110,116,106,109,106,96,116,114,101,102,111,94,114,95,96,101,94,102,104,75,97,108,95,70,111,104,96,105,105,101,96,110,95,104,99,100,88,103,99,99,113,105,103,103,104,113,94,108,107,95,114,103,110,105,107,112,113,105,106,90,105,103,97,97,110,118,108,104,102,107,131,108,101,100,111,102,111,105,101,102,99,98,109,99,105,106,116,116,105,109,115,91,112,102,105,87,106,107,98,120,115,97,109,111,105,105,98,96,110,119,93,107,89,103,106,114,108,105,103,103,100,101,100,100,102,108,99,108,108,104,108,94,100,120,110,104,108,111,112,94,103,119,104,105,109,110,108,112,92,111,99,86,114,115,106,109,104,107,109,109,100,100,99,95,104,113,104,88,101,101,100,110,111,106,113,97,103,109,109,101,109,103,103,94,94,109,109,113,126,82,98,112,106,122,99,112,121,114,110,118,103,126,129,128,150,170,172,209,199,208,191,204,168,153,139,156,181,168,163,151,158,122,126,105,112,105,103,108,122,101,101,121,104,115,112,106,126,100,100,108,109,103,129,104,112,103,100,100,111,95,104,110,100,108,110,105,110,113,102,98,98,104,94,99,109,112,95,107,100,106,108,103,98,109,109,113,111,110,99,91,117,108,106,96,109,107,127,111,105,111,110,96,107,95,117,107,103,90,96,106,116,103,98,96,100,108,112,98,116,99,106,114,95,102,101,98,104,113,121,100,102,105,107,111,102,109,88,111,103,112,122,107,102,115,95,110,108,111,104,100,108,105,99,105,105,109,102,104,105,98,103,108,110,103,100,107,108,104,102,111,100,104,114,111,103,106,116,108,105,106,103,111,88,104,109,104,97,93,95,110,100,108,116,100,100,108,105,103,115,106,103,77,109,100,110,115,97,115,116,110,91,106,111,107,109,101,105,103,105,100,112,101,110,99,111,110,73,98,106,106,97,104,104,108,113,110,119,102,104,103,104,96,98,104,110,120,105,112,132,102,132,105,103,107,111,101,98,104,100,120,111,102,112,115,118,108,102,101,108,111,106,121,98,98,121,99,107,106,113,126,109,97,102,112,105,103,108,113,91,106,96,96,110,107,105,117,109,97,103,117,76,115,91,104,101,111,108,89,92,102,106,101,102,100,100,109,98,101,101,115,107,101,89,116,107,106,105,103,108,102,92,106,97,111,107,111,101,119,111,109,109,103,97,105,92,103,105,100,102,107,98,99,113,110,113,90,105,96,113,107,92,101,108,100,104,108,105,114,98,105,109,107,104,108,108,106,104,96,107,120,104,117,107,114,99,99,110,103,106,101,91,91,102,101,97,101,103,94,106,104,105,113,114,105,114,116,109,105,121,114,91,96,101,107,80,104,113,99,107,102,95,104,112,106,114,106,106,112,84,102,105,102,109,115,98,116,114,104,107,108,116,105,102,106,102,105,122,106,101,113,99,100,101,104,112,91,106,113,104,112,99,98,106,100,106,100,115,111,112,97,120,105,106,110,98,82,107,106,113,99,112,106,105,103,106,98,109,102,106,101,111,95,93,96,110,109,119,104,111,101,130,109,104,118,103,104,116,113,103,117,111,103,108,107,98,112,97,95,107,101,97,100,118,99,117,113,106,101,105,111,93,106,105,114,118,107,103,102,99,98,120,103,100,112,102,113,104,112,103,100,108,88,105,108,99,93,110,112,108,125,98,113,108,104,105,95,94,120,118,101,110,104,101,111,99,110,107,106,111,120,103,106,101,113,100,100,96,110,105,100,130,108,101,103,103,111,102,100,103,100,113,102,115,111,105,115,99,106,93,110,110,106,110,101,104,102,107,117,119,82,103,94,96,95,112,131,106,105,102,104,100,115,98,97,90,104,108,96,99,108,103,109,98,108,108,87,110,104,114,99,107,108,105,91,105,116,114,110,102,106,109,103,105,102,112,104,108,105,114,88,107,108,102,99,97,119,113,98,106,103,77,107,103,109,112,111,111,104,102,120,118,112,101,104,108,105,99,105,109,108,102,106,108,112,100,103,102,104,98,107,108,100,108,97,104,103,93,105,102,118,101,107,117,107,99,100,113,101,98,113,96,101,111,97,110,104,103,109,121,103,104,106,107,102,89,134,106,110,114,110,108,103,96,106,92,112,105,85,100,106,110,106,103,101,95,115,107,105,98,112,105,96,103,108,100,103,102,119,100,113,123,112,110,109,103,100,102,96,110,99,87,111,106,111,104,113,105,100,108,107,111,96,104,112,101,113,99,95,107,99,99,113,115,87,110,106,110,113,107,111,116,94,106,121,110,127,101,112,99,94,101,98,103,106,102,97,102,84,103,109,96,108,101,112,97,95,87,102,109,109,108,107,97,104,98,103,113,104,91,96,105,107,95,105,104,108,95,116,101,100,102,108,107,98,107,103,102,100,97,107,99,109,111,100,100,104,108,115,115,112,109,97,103,114,101,77,99,111,102,94,105,97,95,98,113,115,108,111,95,108,101,107,106,105,104,106,101,99,112,99,109,101,101,115,111,114,107,109,103,112,100,98,99,108,113,106,94,100,104,96,107,96,108,103,102,100,109,113,110,102,97,103,96,106,101,99,112,93,92,104,100,114,104,105,103,106,100,116,92,109,103,108,97,105,99,105,85,116,97,116,111,99,99,107,96,100,110,113,103,104,96,109,111,99,98,91,104,112,102,103,95,113,104,119,96,101,106,99,108,109,108,108,115,104,102,109,92,110,105,117,112,116,105,115,116,103,109,109,116,109,94,106,103,103,92,87,98,106,103,122,111,98,105,105,102,109,102,111,89,101,99,109,94,88,115,106,98,112,107,106,101,115,91,90,105,100,113,98,100,97,93,98,101,103,92,117,93,98,129,105,109,109,108,120,104,107,114,113,102,96,104,119,104,98,131,100,118,99,100,97,107,116,107,106,111,102,106,109,99,89,95,102,95,104,96,104,103,115,99,102,102,106,115,107,93,95,102,104,105,101,112,100,132,105,114, +585.78619,118,126,83,109,131,95,102,95,106,104,82,108,100,104,101,114,100,100,101,118,107,100,113,102,101,97,114,109,97,105,103,91,112,99,99,98,93,101,99,106,95,87,112,105,107,104,105,110,98,117,96,108,105,101,99,90,100,95,98,95,103,75,112,106,101,108,97,106,109,101,97,105,85,112,100,109,105,112,109,107,103,114,115,106,96,101,110,108,108,95,117,105,95,118,105,101,113,110,107,102,100,104,97,111,109,110,109,110,93,103,100,105,105,102,104,110,103,107,106,112,113,110,106,110,103,111,94,98,117,104,103,103,99,105,107,104,101,94,94,88,99,117,100,110,114,100,109,108,98,100,104,105,105,91,96,93,96,91,120,99,108,99,98,113,96,94,123,99,121,102,103,109,101,111,124,97,106,93,117,101,77,105,99,101,99,109,94,92,117,101,102,123,105,109,100,109,93,102,100,104,102,104,99,101,104,100,105,108,106,101,103,107,109,103,116,106,102,106,115,105,110,116,94,96,115,111,110,111,109,114,105,103,108,103,113,108,105,101,94,105,96,98,111,94,99,105,99,107,107,112,106,111,101,105,101,103,101,129,115,111,103,105,97,99,95,107,112,122,106,91,105,106,119,104,113,104,112,105,110,93,100,104,103,94,103,109,106,95,104,79,98,120,97,109,103,110,105,114,122,101,97,100,103,111,91,101,111,113,105,105,103,120,102,115,108,101,109,95,97,95,106,106,104,109,114,118,108,114,116,101,111,114,94,102,105,102,103,99,104,121,99,98,103,96,109,114,105,89,113,113,112,106,103,110,88,102,103,94,96,114,108,79,111,104,97,112,101,108,103,102,113,102,98,106,99,108,129,125,108,104,109,111,111,113,103,92,91,104,121,106,114,95,99,105,106,125,112,109,105,111,105,105,109,107,87,109,113,99,106,108,98,99,108,103,109,87,116,98,109,109,108,114,108,108,109,111,104,101,95,120,105,98,105,108,98,112,101,108,97,110,120,95,102,121,96,111,95,112,98,117,99,107,96,105,108,104,104,105,108,104,105,116,111,105,102,109,101,105,110,94,101,125,104,97,94,100,108,103,112,110,96,101,115,104,114,94,116,111,103,96,106,113,99,106,97,105,80,117,105,109,107,117,93,100,96,112,95,103,108,106,106,104,99,95,105,104,98,107,103,95,103,106,118,107,106,109,107,108,114,96,94,113,103,90,100,110,119,101,111,111,101,107,106,113,110,95,117,100,109,102,106,118,114,103,105,109,116,108,107,98,109,110,116,96,105,113,116,122,91,114,103,101,119,121,102,113,103,101,135,106,107,94,98,111,114,108,115,111,105,94,109,98,94,102,87,108,89,108,112,97,116,105,108,100,103,99,104,99,105,111,110,113,103,101,103,112,100,86,113,109,108,114,103,104,112,110,112,110,106,112,100,99,98,112,101,116,95,116,113,89,93,109,104,113,110,98,112,110,113,114,102,108,99,95,112,102,108,109,103,110,106,105,115,108,104,112,102,111,114,103,110,97,103,103,104,101,106,101,103,116,98,112,96,92,102,93,110,107,107,112,105,100,106,101,99,100,110,104,123,103,115,95,109,99,112,115,105,104,113,102,109,99,89,90,105,102,95,111,95,104,109,108,111,117,103,109,101,100,99,110,105,108,113,104,90,111,118,95,108,103,118,110,114,99,107,116,108,110,108,109,109,106,99,100,125,106,100,112,100,95,110,106,116,98,93,114,100,98,114,107,115,114,98,118,103,110,108,92,109,131,116,102,111,104,106,109,98,113,104,103,102,109,100,109,107,117,93,104,104,99,115,99,108,112,108,108,104,102,107,104,114,87,112,100,105,103,120,110,105,103,114,114,100,103,107,111,112,120,99,102,108,109,105,108,103,107,104,106,105,110,138,116,125,104,100,104,101,102,106,102,104,103,84,105,103,116,105,107,96,102,111,102,103,109,97,110,100,114,99,109,104,102,103,87,98,129,114,89,108,94,102,118,109,101,115,108,96,118,114,110,114,108,110,103,102,102,112,108,99,97,109,120,113,102,108,95,94,106,121,109,103,107,102,98,105,105,102,106,95,98,96,109,84,112,102,106,122,107,101,81,136,108,114,108,107,109,95,122,88,109,101,110,108,114,100,105,99,99,100,107,114,93,116,114,113,107,107,97,106,113,106,108,110,101,104,104,110,109,109,98,107,108,103,104,98,107,105,97,97,106,106,105,105,101,112,117,116,97,108,106,114,107,108,105,117,91,93,129,104,104,120,108,103,108,99,104,103,109,106,113,94,107,95,102,111,107,117,83,95,97,109,119,118,102,106,101,105,106,106,105,111,105,105,118,125,111,126,128,123,143,166,174,171,190,202,173,181,195,184,180,165,161,160,168,153,137,139,128,130,121,107,103,124,112,105,106,112,101,107,92,106,112,111,106,112,112,105,92,108,97,113,114,95,115,109,120,105,100,109,128,111,109,108,100,112,108,103,105,111,102,105,94,98,118,102,108,102,98,113,104,94,111,93,106,105,98,116,109,116,103,103,116,98,112,98,109,122,116,100,102,112,113,106,95,109,114,101,105,101,97,93,103,98,119,90,106,107,106,103,106,108,109,110,107,109,105,112,104,124,102,110,120,103,99,106,95,101,93,109,101,99,107,120,125,99,103,108,107,124,108,110,111,118,102,107,119,106,112,113,97,109,101,103,121,99,93,99,102,100,105,102,105,101,109,111,111,88,118,112,121,116,111,92,109,104,97,115,103,130,104,115,108,107,101,102,107,109,98,110,110,104,115,102,114,115,112,109,111,99,107,115,97,113,106,87,106,110,107,106,108,108,100,107,108,93,98,112,101,103,101,112,110,107,103,115,106,127,115,109,112,104,112,114,110,113,114,105,115,102,101,108,99,103,91,107,114,102,102,116,103,100,106,104,109,100,100,121,106,113,106,111,107,102,106,102,102,106,107,99,103,110,106,99,107,113,108,94,126,121,108,111,105,104,94,116,92,107,114,109,99,102,107,106,113,111,101,100,107,102,105,105,108,123,102,103,101,117,108,87,120,100,112,107,112,96,101,120,98,104,96,116,104,112,105,112,96,105,110,107,112,103,95,104,119,102,107,102,95,108,94,102,102,108,76,113,99,93,98,115,98,80,115,105,104,104,105,113,108,120,98,115,112,102,110,101,111,129,113,105,106,98,75,113,115,108,93,110,111,101,108,96,102,112,102,103,110,110,106,117,115,96,107,107,113,110,116,99,116,92,109,108,111,107,107,97,100,99,99,105,101,97,105,81,106,109,107,109,100,110,111,105,105,121,107,106,109,109,95,91,90,108,107,100,109,104,91,100,110,110,107,99,107,105,99,107,91,103,90,113,119,104,108,105,103,102,93,91,106,105,98,98,103,107,107,105,109,115,105,106,96,111,109,100,88,98,99,101,105,105,96,71,114,101,100,102,109,96,103,102,116,109,107,106,91,91,103,118,105,105,97,115,108,95,111,114,106,107,95,115,104,118,102,110,102,115,121,115,101,110,109,96,102,111,101,108,116,113,104,102,117,99,99,111,106,101,99,107,98,104,105,101,113,103,113,101,116,106,109,112,102,92,93,98,100,103,106,110,112,106,102,112,107,106,107,76,100,100,95,97,104,109,101,110,115,114,100,103,102,101,104,101,98,99,104,97,92,103,105,94,100,108,115,111,107,111,98,101,108,103,99,131,105,109,99,102,113,112,108,93,112,103,96,110,102,108,99,109,114,114,104,96,97,90,109,102,136,104,107,113,101,100,101,99,104,111,98,112,107,102,104,109,105,100,103,107,111,100,104,92,101,101,98,113,107,94,114,99,104,113,93,101,111,115,106,106,129,99,103,103,109,94,113,101,110,98,98,112,98,99,109,105,106,112,112,104,95,118,111,106,105,103,99,105,108,104,110,110,109,112,120,101,103,110,98,117,105,108,116,109,109,116,105,112,110,103,98,108,102,95,107,99,109,110,105,112,81,108,129,108,113,111,97,113,109,109,107,109,92,97,101,113,110,113,94,110,106,107,101,98,103,105,83,95,92,107,106,111,100,118,97,113,94,108,110,96,109,101,121,91,106,116,103,118,104,107,92,99,103,105,100,102,99,99,106,101,117,99,100,101,106,105,105,100,93,107,106,107,99,107,102,109,102,114,103,104,109,102,114,100,111,105,101,111,98,118,110,105,99,111,105,114,93,109,104,85,113,103,110,106,97,103,107,105,114,108,109,88,111,108,109,116,116,103,100,89,113,120,101,102,100,113,105,108,102,106,107,103,105,106,119,115,117,105,112,122,111,99,105,112,79,106,109,110,102,94,101,104,104,103,97,118,111,110,123,108,100,102,113,109,93,101,102,117,115,111,99,108,106,106,100,77,93,98,111,98,99,105,94,103,103,109,113,98,113,106,116,104,103,104,118,94,113,118,98,78,92,116,94,118,119,107,102,120,116,92,109,110,105,104,102,100,112,95,105,108,103,104,106,106,111,95,100,97,102,110,97,94,122,108,109,114,103,104,120,102,96,98,109,117,113,102,123,105,113,109,103,109,98,96,104,99,95,107,108,108,110,94,105,96,110,97,115,96,105,101,99,102,105,99,97,120,114,111,103,109,106,110,105,106,104,95,102,110,112,98,103,102,96,113,107,103,112,99,109,115,98,102,110,103,109,108,94,94,114,110,100,104,117,98,108,117,109,90,106,109,105,112,117,93,116,123,94,101,95,104,115,96,112,109,112,102,101,108,94,102,111,97,98,114,111,100,111,128,100,106,96,120,100,94,105,104,116,97,109,109,103,91,106,111,95,102,90,99,111,99,96,91,92,115,96,92,103,105,99,113,101,98,106,110,106,117,101,101,102,110,101,110,110,101,113, +585.92719,112,98,104,103,97,98,96,99,102,100,98,109,108,110,101,98,99,107,109,118,102,84,109,121,101,98,95,96,107,105,103,95,94,101,114,106,100,92,102,106,110,103,119,106,95,109,109,106,93,100,118,111,101,104,103,118,103,129,100,104,102,117,115,91,111,106,90,113,98,111,104,103,104,93,102,116,105,90,103,96,108,98,105,106,95,97,100,110,92,106,106,72,118,102,98,107,106,100,99,117,112,99,104,97,97,103,97,100,105,97,116,92,100,98,107,105,116,101,106,108,115,104,105,111,114,129,113,109,105,112,106,109,117,95,112,106,101,108,105,116,100,110,117,108,108,94,99,105,105,104,98,99,102,94,102,112,115,95,104,97,98,95,108,120,109,109,105,104,103,107,109,104,112,91,96,77,103,95,105,99,104,106,96,108,110,113,83,90,106,99,103,130,114,103,92,100,98,121,105,110,100,120,101,102,102,109,99,111,108,119,108,106,99,102,100,111,109,91,92,103,107,100,82,97,115,108,112,106,108,107,101,105,105,111,102,106,110,105,114,112,97,104,124,100,99,105,108,100,99,112,75,103,75,110,110,103,107,114,93,115,102,94,117,114,97,113,95,110,103,101,105,100,104,86,109,96,105,106,98,108,103,105,113,111,108,111,93,104,100,118,106,116,106,112,93,112,106,105,111,115,114,101,116,125,101,116,105,118,97,108,93,107,111,100,105,99,116,121,111,97,103,113,112,102,107,95,96,106,112,130,111,112,113,98,109,101,101,111,99,102,114,111,98,110,114,103,113,110,111,104,110,96,105,115,111,107,99,110,108,111,104,104,110,105,106,104,100,103,100,105,95,118,105,108,108,98,114,114,93,108,109,104,110,113,113,115,103,89,97,99,115,101,102,98,108,101,103,115,110,116,102,103,100,109,101,102,102,111,113,99,106,100,100,125,100,105,104,105,109,113,104,113,95,104,108,89,113,114,93,104,122,104,112,98,104,95,100,115,104,99,106,102,108,110,113,109,99,102,105,102,99,105,111,95,113,105,105,101,101,113,111,99,109,121,113,112,96,108,104,104,103,101,104,109,100,98,105,110,110,95,102,122,109,106,109,106,110,117,73,103,105,107,102,99,105,106,104,95,102,103,113,115,108,115,101,108,103,110,97,104,94,104,106,104,99,103,93,99,114,97,103,96,107,107,108,101,115,105,105,107,102,114,103,105,108,95,110,103,109,113,107,118,94,91,104,98,104,103,105,113,115,108,112,87,112,110,106,106,111,98,96,106,106,119,100,108,104,99,112,108,110,98,116,120,99,92,105,105,104,91,104,99,104,117,116,113,112,111,106,107,108,100,105,105,112,107,99,94,109,100,100,101,121,103,101,106,115,96,93,111,109,104,116,108,106,120,117,93,105,113,93,106,115,112,111,109,108,109,95,90,113,100,97,112,98,105,103,103,109,103,109,100,98,95,99,102,110,107,104,109,112,109,117,105,100,84,113,110,115,107,102,94,107,121,99,105,105,99,111,111,110,103,109,94,91,116,98,99,101,133,105,101,108,108,109,106,106,112,106,102,97,97,97,105,106,111,95,109,107,97,98,98,96,103,105,109,113,109,96,102,92,106,106,94,93,101,105,102,108,109,102,100,106,102,118,101,127,112,95,103,107,103,99,106,99,108,103,115,116,97,106,105,111,113,110,103,101,99,113,90,110,108,102,117,107,95,117,121,109,108,99,106,132,99,96,107,92,99,102,102,104,109,104,110,106,108,103,102,122,112,116,106,99,105,91,113,104,107,106,105,113,113,113,98,87,118,95,98,112,126,91,106,91,114,87,114,121,107,110,112,104,109,104,110,107,109,116,102,107,101,107,112,102,116,121,118,95,119,106,105,104,115,121,119,112,113,107,98,112,106,107,101,113,113,110,108,107,98,107,101,88,109,98,118,104,113,106,113,110,100,107,110,104,104,108,99,94,124,110,113,97,121,108,112,108,119,105,96,99,105,113,114,126,101,108,98,88,122,112,103,118,112,104,119,117,112,111,108,108,101,105,110,114,106,95,96,97,108,110,113,113,109,109,108,77,101,98,105,109,100,106,103,107,111,104,109,95,110,115,109,91,86,99,122,102,128,107,107,103,100,108,114,110,107,95,95,104,100,100,97,122,114,113,108,108,106,107,102,91,121,126,104,107,102,109,113,110,110,111,113,106,101,104,103,118,109,116,106,104,105,118,110,90,98,111,107,107,107,99,110,105,94,114,108,100,110,122,104,108,107,101,103,102,107,112,123,121,101,98,91,104,107,104,93,107,124,113,112,115,99,119,105,107,106,114,115,98,106,102,104,118,108,115,99,119,127,137,119,123,148,184,178,189,210,179,166,178,191,212,176,135,170,177,153,136,138,145,130,121,118,108,112,115,106,111,109,117,110,116,99,91,110,106,95,109,116,112,120,109,102,103,105,98,104,108,110,102,102,125,109,109,118,100,98,110,99,104,116,107,111,102,108,113,101,103,111,105,106,110,101,97,104,110,116,116,112,110,99,128,113,108,113,117,103,113,107,101,113,111,102,109,111,108,101,106,99,115,103,109,136,107,99,98,100,100,106,104,115,105,92,102,110,118,101,99,98,108,102,117,94,111,102,108,105,111,103,111,103,102,104,106,113,116,105,83,91,100,116,120,104,115,117,111,101,106,127,103,112,120,105,108,117,107,102,136,93,110,106,109,107,103,106,107,105,105,107,120,113,107,105,102,99,106,103,107,106,115,95,110,111,95,115,96,116,117,107,102,116,109,90,102,111,109,103,111,114,105,104,113,113,116,119,111,100,102,119,104,115,103,102,94,105,132,94,103,112,117,130,95,124,110,94,113,110,108,80,114,97,129,106,92,104,107,115,95,104,113,104,104,121,112,113,106,109,95,116,117,104,105,111,100,114,107,107,115,110,117,106,105,116,108,108,114,113,99,107,115,105,125,109,117,106,108,102,113,113,94,99,81,82,114,112,105,111,104,96,101,103,114,107,106,106,103,116,113,102,100,99,105,102,85,103,101,112,105,105,111,95,115,121,98,111,107,102,109,97,103,104,124,101,109,115,105,101,112,104,116,103,109,105,108,111,91,117,98,109,99,100,110,113,106,101,86,112,108,102,104,111,94,99,102,105,103,106,115,108,120,86,113,109,111,106,109,101,100,102,109,97,88,97,100,95,96,99,108,110,99,117,97,119,78,115,102,98,98,111,106,106,112,99,92,109,113,98,106,114,105,112,108,104,103,109,119,100,114,112,102,98,119,99,101,111,106,109,101,101,106,104,102,109,106,108,99,108,114,110,108,105,106,113,115,103,113,113,112,116,105,100,106,99,100,102,105,125,102,100,105,110,114,96,118,113,113,126,101,100,107,106,122,110,89,115,107,104,105,118,107,105,109,103,109,105,107,105,112,101,117,107,109,107,109,106,110,105,100,105,105,106,118,109,102,103,102,109,105,108,112,110,126,107,102,108,106,96,107,112,117,103,103,105,109,117,123,93,105,103,111,109,103,120,116,101,110,111,110,108,116,109,111,110,104,110,114,104,113,110,112,92,102,101,118,104,107,98,117,103,89,118,98,108,103,95,116,107,100,94,98,108,93,126,107,115,110,109,104,108,110,99,101,116,84,118,83,111,117,97,99,103,107,109,115,98,79,116,113,108,101,67,105,116,113,116,102,114,110,98,106,98,105,95,106,104,117,109,85,123,113,106,110,99,103,95,107,103,117,103,120,114,100,97,106,113,106,100,107,108,107,110,103,103,96,115,109,107,116,108,114,109,112,112,114,115,107,105,110,106,113,100,93,106,91,111,105,119,109,109,119,117,104,103,106,105,110,109,109,87,101,112,116,111,109,100,109,121,92,98,111,101,107,94,100,116,97,108,107,114,118,103,107,94,99,106,114,94,101,107,105,94,103,94,108,116,97,109,103,115,102,112,101,104,97,104,105,126,116,109,89,109,106,124,103,115,85,109,112,109,98,104,102,118,120,98,99,100,107,102,100,95,119,105,110,93,102,113,107,111,103,115,112,104,87,105,104,98,106,115,102,108,115,105,104,114,109,105,109,106,92,103,115,109,105,105,108,106,108,103,125,109,110,103,94,100,110,106,104,104,110,110,110,116,105,92,100,101,96,100,101,102,96,90,107,99,112,115,102,103,106,99,117,99,122,130,125,100,112,112,116,109,103,105,115,95,93,112,112,93,107,104,99,99,96,111,102,108,96,114,104,106,106,97,109,127,117,111,113,115,112,103,97,87,106,107,138,100,93,102,118,105,97,117,100,121,106,107,116,112,121,116,103,105,95,103,110,93,114,104,96,105,100,91,113,116,109,114,102,101,101,100,105,100,109,114,108,116,113,115,113,118,109,103,102,104,108,102,103,104,112,119,106,109,111,108,103,115,111,102,98,101,133,104,102,113,106,99,108,115,102,100,103,102,102,104,106,114,110,99,113,117,98,108,104,99,103,105,118,113,111,106,107,104,110,110,115,105,100,101,102,83,99,108,108,95,110,111,100,105,108,111,91,106,101,117,105,120,122,106,98,109,80,106,92,117,110,102,109,129,105,106,104,109,99,99,104,94,109,107,117,97,102,95,117,105,113,104,110,99,115,117,95,103,104,108,109,107,86,102,103,108,108,101,119,102,105,116,112,112,102,112,108,102,108,110,109,107,108,104,123,94,105,98,98,106,69,104,111,107,102,96,112,104,109,108,114,102,92,98,106,119,88,109,101,107,101,105,104,116,132,100,103,95,101,108,113,91,102,103,89,128,98,107,113,99,97,106,110,124,104,105,95,106,114,122,105,107,117,104,107,104,101,101,103,107,90,97,86,101,99,93,107,114,103,107,109,96,115,115,110,100,105,113, +586.06818,94,105,105,99,104,111,113,116,107,96,89,100,100,97,102,110,103,106,118,141,103,101,95,104,94,115,105,95,98,105,103,103,110,105,105,102,97,107,108,98,100,105,100,93,104,107,103,117,105,116,105,99,96,99,100,78,108,84,106,106,106,110,112,104,114,109,102,108,107,90,123,110,100,102,101,107,101,91,110,107,101,99,109,107,99,98,100,75,89,98,97,117,95,89,107,71,114,102,90,95,106,113,94,111,116,113,105,120,71,113,99,108,90,88,103,96,97,96,103,93,100,99,103,108,102,92,113,101,98,112,114,101,100,109,120,94,117,100,106,122,105,111,110,104,92,91,112,104,114,114,95,88,102,102,118,103,103,95,111,88,96,102,108,114,98,106,104,75,107,89,116,91,112,100,113,94,113,98,111,100,124,112,100,122,103,100,93,100,110,108,99,106,103,101,102,91,104,100,107,93,105,97,100,82,119,98,102,105,104,109,102,110,117,94,102,103,96,110,99,107,117,110,109,101,104,95,103,97,103,103,104,92,93,96,109,99,99,103,109,101,100,99,98,103,102,106,110,101,111,100,109,101,97,108,95,102,120,107,99,97,107,103,87,103,88,90,100,109,96,94,114,108,98,111,106,93,107,100,99,102,107,107,109,94,100,115,96,108,91,106,104,102,110,104,105,99,112,92,120,105,100,106,98,110,92,108,113,99,115,103,97,121,114,100,109,92,99,101,101,97,106,108,98,110,103,99,110,96,75,106,108,99,116,95,105,94,118,103,93,118,107,78,91,109,110,109,110,100,105,97,109,101,106,110,99,106,104,101,104,104,99,109,99,97,116,108,109,111,98,97,102,113,110,103,97,99,98,104,96,119,103,101,93,108,93,106,99,109,99,101,107,90,110,95,95,100,127,103,102,108,101,94,103,101,106,101,109,104,97,94,74,93,107,102,104,113,110,100,98,105,105,100,76,104,108,97,107,108,107,102,94,103,106,101,109,96,106,95,102,89,108,109,94,102,94,108,109,99,113,109,110,98,106,103,105,113,96,101,104,100,102,107,100,106,112,109,95,94,109,96,101,107,108,98,104,107,102,107,108,99,100,106,103,95,105,115,94,102,98,92,118,109,106,114,95,99,92,116,118,108,115,113,104,101,98,105,88,103,110,80,110,108,103,98,103,99,115,103,96,112,97,99,113,113,101,103,122,113,109,108,90,113,101,95,102,100,104,107,107,122,99,109,88,103,105,112,108,95,98,100,110,98,110,101,122,103,107,113,107,106,113,100,97,107,110,102,110,106,103,107,101,95,98,92,111,101,105,110,94,122,98,102,110,102,99,110,109,107,105,97,108,110,109,101,121,114,117,93,104,94,98,113,112,92,96,110,104,103,104,104,89,113,99,105,110,97,103,116,110,109,104,105,103,115,87,114,95,107,116,92,90,114,109,106,125,116,104,106,108,100,109,113,105,101,107,103,102,115,116,102,103,78,111,94,107,110,111,119,104,106,123,116,106,112,107,103,114,105,112,115,103,102,101,101,112,110,93,127,107,105,102,111,107,99,96,104,100,130,104,124,106,104,107,100,101,108,100,108,96,100,107,110,100,102,105,101,114,104,110,104,107,119,103,115,98,104,110,121,98,101,100,107,118,119,102,100,102,110,101,122,102,104,105,95,99,116,108,108,106,113,116,97,106,93,110,93,98,107,94,112,109,103,101,103,104,83,102,92,106,110,106,88,100,105,101,103,98,100,103,112,111,101,106,112,106,100,108,94,106,112,99,104,111,95,115,103,95,109,111,109,109,100,118,104,113,111,116,103,121,117,109,104,102,110,115,114,104,101,98,99,106,110,113,97,118,133,106,96,106,107,100,102,106,124,110,99,113,111,108,103,70,121,115,103,98,118,100,102,102,109,105,100,106,108,102,95,105,101,100,104,82,107,107,114,102,101,99,95,100,106,90,116,116,104,103,115,107,102,109,112,102,105,99,105,111,110,106,101,103,113,107,104,112,99,102,91,91,101,114,105,108,110,105,105,99,105,108,100,97,102,113,107,104,95,112,101,105,114,107,123,111,104,107,106,112,101,119,101,96,106,117,108,113,105,103,127,102,111,109,106,111,106,103,116,117,107,104,105,100,106,119,110,99,109,100,103,112,98,95,106,123,100,106,104,106,103,117,108,101,103,107,113,108,109,113,105,99,97,109,110,110,107,102,102,113,109,107,102,97,104,96,105,105,104,93,104,103,83,90,111,102,95,112,105,107,100,91,98,112,112,103,103,107,117,113,108,112,108,99,107,103,95,114,117,103,106,100,98,111,107,96,123,114,97,105,123,114,107,114,109,103,108,112,111,122,115,110,137,128,131,141,184,156,197,196,179,160,177,143,160,168,155,165,137,152,128,125,116,106,129,105,105,106,133,115,122,109,111,98,118,109,131,105,98,112,103,95,99,112,101,105,87,90,101,117,106,102,111,107,119,109,99,99,117,97,98,115,110,103,104,92,98,98,103,128,111,108,119,117,105,92,106,104,102,104,108,102,101,100,121,103,106,102,105,104,99,107,110,105,95,102,108,102,103,97,99,104,94,95,104,110,103,82,111,127,116,109,100,105,132,113,101,118,100,112,107,100,107,104,110,104,92,110,104,108,110,105,114,94,95,105,108,111,102,95,111,112,99,110,118,110,107,95,99,99,110,108,103,94,117,109,106,104,121,108,115,108,108,102,105,107,106,104,103,112,109,98,103,109,102,101,108,102,119,124,110,107,100,111,106,106,105,104,106,106,117,116,102,93,104,99,103,100,101,110,103,105,108,98,108,109,113,117,101,91,103,104,96,112,95,110,111,111,107,113,102,108,106,103,100,104,98,116,115,105,97,102,104,111,118,97,105,106,108,103,91,98,105,101,93,101,104,106,102,111,106,104,96,99,112,115,99,104,103,102,104,108,112,118,111,103,113,94,119,108,103,100,108,109,100,97,108,120,99,118,103,108,98,106,104,98,112,100,95,107,108,104,107,113,107,104,103,101,102,111,99,109,98,113,87,112,119,117,95,115,98,103,98,119,100,103,116,100,104,103,108,103,95,104,110,110,126,108,99,112,105,107,117,112,101,106,127,98,109,103,104,94,109,105,117,115,101,101,94,105,102,108,102,95,102,106,116,102,105,109,112,105,113,120,92,106,108,98,103,107,107,109,105,113,105,117,110,93,103,105,100,114,101,110,140,109,96,99,104,100,110,100,99,109,102,108,99,110,107,113,103,95,114,101,109,102,92,106,101,107,102,87,106,118,121,109,90,115,111,102,108,122,102,99,109,109,110,105,102,119,101,97,93,110,107,103,110,110,102,111,113,99,92,102,104,83,115,100,111,99,99,115,96,98,109,94,115,101,109,91,104,106,104,91,120,105,102,114,109,111,93,117,100,98,98,106,68,103,95,97,103,103,103,115,116,99,111,95,93,95,106,114,102,106,104,120,115,117,105,102,104,100,99,108,98,118,99,93,103,108,107,113,99,108,101,101,107,113,103,97,111,100,107,99,109,114,103,116,97,117,106,100,117,105,111,106,101,102,104,105,108,119,105,115,95,102,95,113,111,96,115,107,108,101,100,102,96,106,106,101,100,105,111,108,104,106,111,117,108,100,102,104,93,100,106,109,94,111,119,105,107,113,98,106,103,102,116,112,109,98,108,108,110,113,103,111,114,109,111,109,96,107,104,102,97,102,96,104,99,111,102,110,122,101,96,103,115,108,103,102,118,117,100,106,116,106,96,100,113,111,101,107,94,117,104,102,99,110,118,88,82,94,103,107,100,107,108,103,100,102,110,104,99,87,109,101,110,108,94,109,115,105,105,95,110,120,106,111,104,102,115,114,108,100,107,108,105,93,103,104,106,104,106,107,115,112,108,101,116,102,98,99,106,113,103,117,99,106,110,115,121,103,110,73,105,102,113,105,107,95,118,95,97,101,90,96,113,107,119,117,108,95,106,99,107,126,114,101,100,108,91,99,100,91,91,107,104,118,108,103,103,110,99,103,99,97,108,109,105,86,92,95,105,110,105,109,93,103,100,110,104,91,112,101,95,117,103,91,113,104,124,100,101,90,110,111,69,108,105,118,102,108,109,102,101,101,95,117,91,114,123,104,106,107,105,98,102,105,104,108,101,111,98,103,106,96,107,109,118,102,114,100,112,118,106,107,103,117,112,101,97,87,82,102,96,104,109,97,92,122,113,124,89,110,100,100,108,103,105,96,116,107,103,102,108,101,101,115,100,108,99,106,100,87,100,96,113,103,105,106,89,95,113,119,104,103,74,134,92,103,100,106,111,102,116,104,104,109,105,108,112,106,116,98,99,109,109,110,98,118,106,88,101,109,103,99,109,106,107,103,113,108,107,105,108,113,96,108,108,88,99,96,101,103,109,114,102,118,79,104,111,103,101,115,106,104,103,99,100,103,107,91,103,110,102,102,103,111,109,96,100,108,103,99,109,97,108,100,106,113,105,101,99,95,112,108,98,101,100,110,113,104,97,97,115,101,108,87,100,102,106,102,107,97,108,112,112,107,97,105,105,121,102,102,102,96,100,106,109,104,100,97,105,95,95,102,101,95,106,103,113,111,108,105,101,105,105,116,104,103,104,113,112,95,95,108,97,105,115,98,95,111,102,108,95,103,110,101,107,103,97,106,106,100,84,107,117,90,97,103,87,105,95,117,106,99,79,96,101,112,100,109,90,110,97,116,108,114,114,108,98,106,113,89,99,104,96,106,101,114,106,98,112,105,106,91,96,113,109,95,109,98,106,114,102,112,104,112,108,108,103,109,137,106,96,106,95,101,112,128,112,105,97,82,109,94,103,100,102,106,93,111,88,112,98,117,117,87,87,96,95,100,108,106,95, +586.20911,91,97,113,83,105,107,113,110,109,122,106,114,97,98,91,94,106,113,113,110,107,98,103,100,106,95,100,114,117,122,106,112,94,106,103,104,105,106,101,115,108,84,104,100,97,111,106,103,102,101,94,104,104,103,96,102,105,100,100,95,109,106,100,100,106,116,94,97,95,93,97,108,107,108,102,93,101,92,101,94,104,102,116,103,110,109,105,112,101,100,105,98,110,91,103,103,96,100,94,99,125,103,104,97,99,109,103,108,97,92,103,105,101,107,110,99,110,96,103,111,88,102,99,104,108,113,100,93,106,103,95,109,104,100,103,107,102,102,92,102,96,92,103,108,101,100,109,94,107,106,110,101,100,98,96,101,109,123,97,112,101,109,102,102,108,118,99,96,99,99,107,116,107,102,116,101,100,100,104,95,105,101,104,107,92,111,105,99,122,103,108,107,117,98,100,100,97,105,113,110,105,104,88,108,95,109,108,103,107,111,107,113,104,94,126,109,97,99,98,113,103,112,102,110,96,116,105,106,104,101,107,105,104,96,120,105,105,102,103,105,96,107,107,108,98,94,113,100,95,94,99,102,108,98,107,99,107,109,102,105,102,117,100,107,91,108,99,112,99,108,124,95,99,100,107,106,113,114,101,100,97,108,93,106,103,103,98,96,104,100,84,105,108,104,106,99,101,117,111,102,102,99,106,88,92,112,101,108,100,95,105,115,113,124,110,96,93,97,101,94,98,100,117,100,96,99,91,105,113,117,107,93,104,112,112,115,103,94,119,108,101,99,110,95,110,104,104,112,102,105,106,109,102,106,103,105,105,88,114,114,105,108,119,108,99,111,100,105,98,109,116,100,106,110,102,102,106,114,109,103,111,98,98,113,108,102,103,78,110,97,111,108,106,95,93,102,109,99,98,112,104,101,97,93,96,99,109,119,106,99,103,105,110,101,108,101,101,98,107,92,92,122,103,100,107,110,109,121,84,101,99,109,106,104,101,108,103,109,96,109,111,102,106,105,104,99,105,101,104,114,105,109,102,107,101,99,103,100,108,102,101,95,100,107,111,95,126,105,120,95,102,107,106,92,102,92,97,104,106,103,99,98,110,103,84,100,110,111,99,107,120,104,111,109,96,111,113,109,103,101,107,97,95,108,101,114,100,106,104,104,101,114,100,110,113,104,96,105,96,87,93,129,105,98,105,113,112,107,99,103,96,109,110,104,96,106,115,106,112,120,98,100,106,91,117,103,96,101,116,108,104,92,101,107,103,108,103,112,110,99,109,103,99,104,95,113,116,113,90,104,102,95,94,109,109,97,81,111,104,110,90,90,100,110,99,104,107,109,101,94,96,104,97,97,114,110,106,108,109,102,120,109,96,105,100,102,115,105,100,111,102,102,110,118,110,105,101,103,90,108,108,98,108,98,102,110,104,105,104,101,101,93,99,102,103,105,87,101,109,99,102,102,98,105,108,113,94,100,111,96,104,112,90,99,103,105,107,112,107,117,117,117,113,121,114,120,102,92,111,92,93,100,107,95,113,107,90,108,111,104,106,102,115,102,98,97,100,112,103,99,103,99,106,106,98,122,113,100,99,109,107,102,100,101,103,112,107,99,113,115,111,108,87,101,101,104,110,99,110,105,106,105,95,113,96,113,96,103,101,96,117,104,98,106,88,99,110,117,115,133,125,102,104,107,117,104,110,101,109,93,101,100,94,106,95,112,105,90,98,106,106,109,106,100,85,113,103,110,109,100,115,115,106,99,107,104,100,111,106,105,104,121,115,103,105,112,108,107,98,110,112,99,100,118,98,113,113,118,113,100,104,100,102,111,116,99,105,104,117,117,117,102,110,98,107,115,117,95,111,103,111,106,109,99,116,104,114,112,107,110,102,99,112,126,92,100,119,108,107,102,113,105,100,107,105,103,97,109,105,96,106,107,103,110,110,95,104,110,109,124,110,115,100,109,107,105,129,108,118,103,108,103,111,100,130,102,114,98,103,103,106,105,96,98,121,106,107,110,99,119,103,102,98,114,113,83,100,111,117,78,104,115,114,101,109,100,95,117,98,100,105,103,101,101,102,96,100,114,102,113,92,103,102,98,109,111,99,102,104,105,105,103,108,119,99,93,102,103,112,107,104,113,102,106,109,111,99,115,111,104,111,100,105,105,105,90,100,111,104,116,123,111,106,101,83,103,103,105,106,113,105,106,114,102,93,112,108,98,87,102,113,109,109,118,98,106,103,95,112,114,91,98,114,103,111,105,113,98,105,102,100,101,113,110,108,111,113,95,100,112,98,118,99,125,89,103,102,109,103,100,109,103,108,73,103,104,98,101,110,117,86,120,100,116,114,110,110,123,139,133,162,164,192,196,194,193,181,182,179,197,161,157,142,147,116,142,126,116,117,101,114,106,106,101,114,118,101,112,102,110,102,117,107,117,109,99,111,108,102,99,96,113,104,99,113,114,112,96,120,102,112,117,97,94,116,97,110,99,124,95,98,94,100,113,104,98,98,113,98,102,98,107,113,107,112,107,112,96,96,104,99,105,91,92,113,96,116,109,104,109,106,123,112,68,102,121,104,113,109,103,95,108,103,121,107,93,105,106,107,103,100,99,113,112,96,102,102,104,106,112,121,99,109,104,108,117,85,98,98,100,102,111,110,111,107,82,119,111,116,104,88,107,106,103,90,108,101,107,106,115,98,114,112,103,92,113,106,99,102,108,103,103,108,99,104,118,108,109,115,105,110,98,101,101,104,102,109,108,113,105,112,106,103,85,108,112,112,117,116,103,107,99,106,108,102,114,106,106,109,87,97,100,114,100,100,109,103,120,102,109,110,109,105,96,113,104,108,107,104,109,107,106,101,103,108,109,96,112,117,107,127,112,122,111,100,113,110,102,110,102,106,97,117,100,106,107,102,106,107,104,107,106,90,108,106,117,107,102,109,118,102,98,98,103,99,114,111,113,91,101,96,91,104,105,116,111,109,101,112,104,109,102,113,101,106,101,103,92,109,101,95,118,102,109,97,98,97,100,106,118,101,107,112,92,106,97,99,104,115,102,103,101,99,111,113,107,102,97,105,113,116,111,109,105,111,98,107,102,102,104,98,105,100,123,100,97,92,104,93,100,108,94,101,95,106,99,107,102,106,101,108,101,107,96,120,104,93,96,114,107,113,95,107,117,119,117,108,104,109,103,109,90,112,111,111,107,108,110,118,103,109,109,96,104,108,117,97,96,106,112,103,110,107,115,106,96,101,106,112,110,90,114,114,100,111,111,109,103,113,98,98,92,99,106,107,92,109,101,104,91,107,102,108,102,98,106,101,93,94,101,88,116,121,110,107,112,109,96,108,101,98,114,97,103,103,94,108,108,98,106,105,98,91,108,108,101,103,103,108,104,106,107,111,95,106,104,102,92,99,103,98,110,98,105,104,106,104,113,84,100,109,100,101,90,103,98,101,98,91,100,102,105,112,93,108,114,111,115,104,98,111,100,107,113,105,99,101,111,106,95,97,103,103,107,108,111,112,108,102,111,109,105,110,106,113,112,105,119,104,113,115,98,105,108,98,106,99,113,99,109,98,107,116,109,90,103,116,103,104,95,96,99,104,108,107,93,106,104,109,109,113,102,122,107,108,92,94,90,117,103,115,92,109,102,104,114,104,121,105,108,113,112,115,106,105,95,85,109,111,105,108,98,106,111,104,108,103,123,99,80,107,102,99,107,103,100,111,107,102,101,77,112,103,104,98,106,106,102,111,101,109,87,113,106,107,97,107,112,116,108,99,103,90,110,121,94,121,107,99,104,108,96,111,104,109,106,101,103,103,106,113,105,113,104,110,86,115,112,111,113,119,104,104,115,106,99,134,96,104,109,102,95,117,95,117,91,113,102,124,105,116,113,102,102,110,104,115,90,110,105,83,95,104,109,97,114,99,115,108,100,110,114,97,96,106,109,104,99,116,101,108,110,83,115,96,101,105,102,102,96,109,117,100,106,121,97,103,98,95,115,77,101,103,114,115,99,101,107,97,113,104,97,97,111,104,105,103,96,119,102,112,113,109,93,102,96,100,105,101,107,109,88,102,107,122,118,109,118,108,99,106,113,103,106,107,106,103,103,102,100,104,95,102,101,98,112,113,112,105,101,110,88,103,111,108,98,101,102,103,95,113,103,104,100,93,103,95,103,109,91,103,96,107,112,102,105,110,103,102,112,106,103,106,104,105,105,104,96,100,101,92,98,111,108,88,102,104,98,112,112,104,98,82,105,103,99,121,94,104,104,109,106,109,102,111,102,106,98,115,100,108,94,100,105,96,107,100,99,95,98,107,104,96,95,101,109,111,102,101,99,108,110,105,103,107,108,106,106,95,111,107,108,110,112,107,106,110,114,102,100,104,94,113,105,109,113,113,110,106,105,110,111,92,102,102,95,99,98,98,110,112,117,95,102,104,116,100,101,140,99,110,100,105,105,104,103,97,95,105,116,96,112,89,105,102,108,108,77,128,100,105,124,94,109,109,113,105,94,102,107,114,92,100,104,113,99,106,106,112,105,98,95,107,102,109,116,107,111,91,110,102,95,99,107,116,103,91,105,106,112,97,103,117,96,102,103,110,103,102,104,117,104,110,98,105,109,122,102,109,109,95,95,104,97,98,97,97,96,96,101,104,99,90,107,101,98,103,111,105,107,95,106,91,100,103,115,102,102,113,89,114,98,113,108,120,105,104,93,103,110,102,99,113,110,100,95,103,109,103,106,107,117,109,101,103,98,99,99,102,108,96,92,107,91,107,106,113,104,95,96,102,114,102,94,98,111,105,111,110,99,110,107,106,114,104,120,108,112,126,103,96,86,103,102,96,104,102,108,104,104,114,94,98,98,110,102,93,97,106,99, +586.3501,124,115,92,93,102,92,115,113,92,111,120,106,94,136,111,106,100,113,101,100,104,101,97,103,102,104,92,108,99,103,93,116,90,113,116,98,108,88,90,70,95,104,109,108,118,112,100,100,96,102,109,115,101,100,119,110,90,101,106,79,113,111,115,110,109,99,98,98,108,111,109,113,114,87,101,117,96,91,117,105,104,111,116,109,99,101,98,103,104,102,91,105,99,107,85,95,106,106,102,96,102,92,98,105,102,103,103,114,112,104,104,98,103,110,104,107,100,113,97,103,101,107,97,103,102,110,113,84,122,99,105,113,95,107,106,103,101,107,110,114,100,104,103,105,110,103,114,103,97,102,92,110,118,94,102,97,109,108,109,115,94,109,113,107,106,110,102,96,112,100,99,116,106,103,88,99,108,94,103,106,113,110,99,117,104,94,103,82,106,110,123,103,93,97,110,111,106,98,99,113,108,100,103,107,131,107,110,100,110,100,103,99,105,98,102,100,98,91,112,113,92,118,88,100,114,104,93,100,109,108,107,101,125,103,103,101,96,108,100,104,101,117,95,95,106,109,109,105,105,105,95,101,104,101,101,111,107,92,99,103,100,105,95,100,90,110,102,92,102,99,106,99,107,120,111,111,105,103,113,98,96,116,108,98,102,92,103,101,99,102,105,107,115,103,108,116,98,98,110,108,109,103,102,110,99,106,124,87,111,112,95,113,102,99,111,106,109,108,96,112,102,109,113,106,107,108,101,102,109,103,106,105,107,100,108,111,125,108,108,106,100,111,103,107,102,105,123,105,108,87,113,92,106,98,112,83,102,113,95,101,112,108,108,112,71,101,96,108,90,96,110,100,101,111,108,95,106,99,111,113,109,89,113,106,105,94,101,112,96,107,109,99,106,103,104,103,116,112,98,119,104,99,105,120,102,92,100,102,85,95,99,92,104,103,105,104,105,103,101,109,100,107,102,83,118,91,104,98,88,105,105,108,103,88,104,101,109,101,106,103,98,104,102,113,102,102,104,100,104,101,95,95,98,112,109,105,102,100,103,105,111,104,101,103,114,108,96,103,101,94,108,104,111,98,103,111,95,116,95,107,106,114,108,105,105,104,114,103,107,102,103,92,109,99,103,100,105,103,109,114,113,107,106,100,91,100,89,108,87,105,99,103,107,102,112,108,104,100,115,98,116,109,100,100,103,109,106,108,101,110,102,111,100,104,111,109,105,100,113,102,116,113,107,108,108,102,101,113,90,99,98,102,107,100,95,104,108,123,100,105,108,102,108,99,109,106,98,109,108,95,96,108,98,106,108,107,103,102,98,118,106,106,110,98,104,98,108,104,103,100,102,114,100,100,108,110,96,99,110,109,98,100,103,109,98,101,110,104,101,106,104,108,108,104,111,103,97,98,98,105,107,109,108,109,115,102,91,100,99,109,99,95,100,106,101,98,114,105,98,102,108,105,105,109,92,113,110,107,106,102,107,110,100,103,104,101,93,100,102,117,117,107,102,90,107,100,114,100,111,104,115,102,104,112,118,105,97,107,104,121,114,104,117,103,111,99,99,110,98,88,103,106,125,105,104,110,101,105,106,105,101,118,101,103,107,91,95,114,103,102,100,100,111,96,103,99,102,109,98,99,99,104,101,116,102,102,118,105,119,106,103,116,101,108,103,102,111,95,103,100,110,96,110,111,107,96,110,107,113,114,100,109,92,100,102,108,97,109,110,82,110,117,93,111,95,105,105,113,97,103,109,116,110,110,100,103,105,107,106,103,111,94,99,104,100,112,104,108,104,97,103,118,106,99,100,109,106,96,108,105,101,99,107,107,115,103,90,109,99,105,109,110,109,104,105,99,109,98,101,101,109,110,95,103,106,103,112,95,106,104,121,92,103,112,106,106,106,110,118,101,109,102,106,106,117,103,108,95,102,97,105,103,104,106,106,99,104,107,102,102,110,102,109,98,99,112,105,102,100,114,134,101,105,105,108,94,98,116,104,100,91,102,103,107,105,103,104,120,113,100,106,111,107,115,112,103,105,106,88,106,112,109,95,101,110,109,92,102,96,104,105,110,100,95,119,97,91,96,109,97,97,102,104,117,103,96,87,107,97,111,109,107,107,102,100,128,111,100,109,121,107,101,91,108,98,112,106,77,111,102,101,117,109,98,105,111,96,106,105,103,100,112,101,100,113,105,104,111,92,81,129,108,110,114,108,77,100,99,100,113,110,103,108,110,121,91,92,104,99,103,97,108,105,108,99,106,101,102,106,109,104,104,101,101,115,103,98,110,107,99,91,111,97,96,105,95,105,101,97,100,106,116,106,89,116,108,98,104,114,96,111,97,119,111,106,121,123,145,127,143,182,174,202,201,193,180,185,176,164,190,174,164,145,172,133,129,130,121,123,121,116,119,118,100,100,106,116,104,102,102,96,100,120,110,102,109,107,108,111,103,107,111,114,108,112,110,106,104,116,105,108,99,112,105,99,97,105,94,139,109,104,102,98,100,108,109,106,106,106,115,116,114,114,102,106,80,109,108,113,102,96,99,113,107,76,108,101,112,103,119,107,104,98,101,111,111,106,98,92,99,110,105,93,101,98,96,112,102,120,109,120,96,120,102,94,101,101,112,103,106,111,113,118,102,111,111,120,94,106,112,117,110,89,109,104,116,106,105,126,91,107,119,108,101,111,103,103,112,110,110,106,103,113,109,110,108,107,107,99,107,123,118,113,111,111,105,102,112,107,109,105,111,103,109,111,102,115,109,104,114,103,112,98,95,103,114,92,116,96,95,101,105,95,100,80,112,108,103,110,99,112,98,108,105,106,107,102,101,103,111,111,109,116,113,109,103,80,106,109,107,114,106,102,102,111,99,110,110,105,103,116,108,106,114,116,116,102,114,120,107,115,107,113,102,117,103,107,113,107,104,106,112,101,105,106,114,84,104,108,105,105,112,102,110,110,82,106,102,104,118,107,98,95,111,104,112,99,106,99,114,113,102,94,103,100,98,114,100,106,98,94,107,101,132,97,122,96,95,104,96,95,103,110,103,113,99,116,98,106,113,104,120,106,106,104,98,113,110,103,107,99,116,99,99,102,107,105,102,103,103,111,95,106,115,109,106,109,116,105,97,105,96,99,104,100,95,107,107,104,95,102,95,112,103,100,100,112,102,111,97,107,110,109,100,101,104,104,116,120,105,105,110,100,115,105,91,111,100,106,105,102,110,99,99,97,102,106,89,108,98,121,111,99,104,104,100,111,99,108,112,98,106,96,104,97,94,106,107,108,106,101,106,108,101,109,92,115,107,112,98,112,110,100,106,101,111,103,99,99,86,104,99,91,103,108,116,112,93,106,113,107,108,109,108,92,104,97,101,97,97,109,105,99,112,104,106,109,114,97,107,107,103,108,101,101,108,97,105,103,106,99,107,104,107,104,101,100,112,100,108,115,90,101,102,112,106,95,102,103,98,103,117,105,101,113,121,106,114,103,106,120,120,95,105,110,101,113,105,110,99,103,89,101,108,99,108,101,117,96,97,107,105,99,103,110,83,98,136,97,108,113,97,114,107,103,107,110,109,109,99,106,106,112,101,109,98,101,110,104,106,98,93,110,109,101,102,116,105,83,107,106,112,107,103,93,95,106,91,110,102,97,106,105,105,104,104,105,112,103,82,121,111,99,108,114,102,103,102,109,96,108,110,104,75,96,78,108,106,95,100,105,98,102,97,105,103,118,104,100,102,105,117,98,97,103,95,117,97,117,116,103,94,91,98,112,108,100,102,113,109,99,104,68,107,108,108,98,104,107,99,113,103,96,121,96,102,117,104,96,104,92,111,102,106,115,100,103,105,103,90,109,91,124,107,95,117,108,103,102,93,91,104,100,100,109,98,113,98,105,104,99,114,112,107,95,95,108,98,105,108,105,93,103,100,109,103,104,108,102,97,99,119,96,115,104,100,104,112,96,109,113,112,113,114,125,118,111,102,99,112,112,99,100,114,110,99,104,109,110,108,108,113,103,109,107,100,111,108,107,91,124,111,105,105,116,106,111,101,98,108,107,110,99,109,94,107,95,103,99,119,98,107,103,94,99,112,117,108,109,100,96,108,113,108,119,106,114,105,113,112,127,96,97,102,106,98,122,114,108,116,102,106,98,103,113,108,101,105,112,91,110,107,113,103,106,114,106,117,111,120,111,109,97,103,120,112,114,112,114,90,91,105,100,102,115,108,104,99,102,109,94,99,108,100,90,99,112,105,95,106,105,105,102,106,98,105,102,105,107,83,105,101,111,107,103,103,104,105,99,111,105,111,116,121,108,122,106,117,102,110,113,98,101,112,98,99,102,110,102,123,97,108,106,107,95,99,109,108,111,92,104,101,110,106,99,120,106,105,88,87,96,110,102,114,98,93,106,103,104,105,110,105,104,107,103,106,96,96,116,106,106,104,112,121,108,98,111,108,103,108,102,93,98,113,106,102,94,100,108,100,104,103,109,109,98,101,116,104,123,96,102,113,120,103,94,98,106,100,101,105,89,95,99,91,103,100,109,117,89,101,95,107,112,83,120,108,105,122,102,106,98,87,107,113,121,117,108,94,103,103,111,104,96,88,101,105,125,110,107,97,116,105,108,99,96,94,104,110,111,100,98,88,108,105,102,101,109,105,126,92,89,103,112,108,115,116,96,121,98,108,109,120,101,111,104,99,109,104,105,98,96,102,105,108,107,91,109,104,113,104,106,110,115,98,99,113,117,116,106,107,102,105,98,115,100,102,99,99,104,110,118,98,121,104,104,104,124,102,92,99,110,75,100,102,103,100,113,119,99,98,95,104,93,103,96,111,96,115,104,109,97,103,102,92,106,100,108,105,96,102,97,105,110,88,102,110,109,95,113,104, +586.49109,85,100,97,105,86,102,99,100,99,128,95,112,95,103,97,99,108,106,109,97,107,85,104,107,102,110,106,86,96,104,95,105,112,105,108,119,108,88,101,110,100,96,112,99,101,122,91,105,102,111,98,106,113,110,110,82,101,88,119,102,100,115,75,100,98,106,107,117,96,107,113,106,105,114,106,108,93,91,104,98,107,99,101,119,94,105,91,109,106,101,120,114,106,96,102,113,106,96,104,105,103,87,108,93,105,109,104,104,99,107,100,100,108,102,97,98,96,99,103,105,99,101,109,104,109,129,98,90,117,103,112,98,103,109,110,105,101,112,108,107,101,94,109,105,109,133,109,97,110,107,112,108,115,108,103,112,107,103,108,93,103,95,86,106,113,93,105,109,119,106,107,113,102,108,107,102,94,110,106,97,102,121,101,116,107,103,101,101,109,108,110,111,106,116,116,111,116,116,105,110,100,113,105,101,111,103,88,100,102,115,115,111,102,105,102,97,102,106,103,123,113,108,98,94,102,101,104,103,111,103,94,110,92,99,117,103,106,114,113,100,98,115,117,96,102,103,113,108,105,111,101,111,90,108,116,113,107,123,103,108,94,107,105,98,106,101,105,122,96,109,96,123,108,107,105,106,95,105,103,94,105,102,104,105,104,103,98,96,101,99,93,100,99,106,110,101,109,106,117,98,103,101,95,105,107,108,97,103,104,105,111,115,119,99,105,106,102,105,107,97,102,109,98,117,107,109,104,97,107,100,107,104,113,97,98,102,100,107,97,96,92,110,104,104,105,108,99,101,99,113,106,88,113,105,98,105,95,116,107,108,107,105,98,94,111,102,110,120,101,110,105,94,114,110,105,88,120,115,118,115,108,91,101,109,94,97,106,99,110,104,119,102,103,110,105,103,94,103,108,102,96,90,101,109,114,112,100,111,103,95,99,102,116,112,120,105,105,95,99,97,100,116,101,124,107,105,103,103,100,110,113,125,95,101,109,98,111,108,99,104,109,98,108,96,109,111,104,110,118,116,107,114,101,98,95,103,113,102,103,95,109,100,101,104,116,122,105,96,102,108,90,113,118,104,108,117,95,114,104,105,101,113,104,103,103,112,97,108,99,109,104,104,107,103,95,102,103,106,119,94,110,105,105,112,98,113,103,96,108,105,124,95,105,98,105,110,105,91,103,95,110,105,89,101,105,99,106,99,102,106,97,107,107,97,102,117,103,97,115,113,107,112,103,98,112,99,107,111,114,103,109,100,102,91,111,107,99,102,97,99,96,100,102,106,108,103,117,109,104,105,104,86,102,104,82,108,96,102,98,108,97,106,110,105,113,99,104,117,124,103,106,106,107,103,113,93,101,109,105,102,101,107,111,118,94,106,95,107,108,100,96,100,113,95,113,99,119,112,82,101,107,111,95,99,102,100,87,109,95,110,103,110,107,111,101,109,105,110,108,98,104,111,109,90,112,104,95,112,108,108,79,107,111,108,109,103,121,103,102,98,113,110,102,103,105,102,108,92,96,101,111,113,107,100,106,107,105,98,101,124,109,95,115,98,103,109,105,90,106,105,112,108,103,107,102,96,102,110,105,110,111,113,106,104,108,121,110,104,105,98,103,111,107,90,116,99,106,106,112,91,101,112,105,104,106,89,107,113,107,111,102,106,103,111,101,100,112,93,102,106,112,95,109,127,100,109,72,102,101,111,109,94,103,61,101,101,110,98,108,99,110,105,102,97,121,111,95,105,100,105,114,96,115,99,79,106,99,116,94,103,113,105,118,98,95,114,109,108,91,112,106,114,101,104,111,114,101,104,81,104,100,107,97,99,96,107,116,108,96,105,107,130,100,102,112,107,89,103,102,104,107,112,111,108,117,103,104,108,101,101,110,114,96,103,103,108,93,101,115,113,94,112,107,107,98,94,98,82,109,112,110,102,82,101,98,98,101,110,98,108,112,108,99,112,97,105,97,102,102,107,105,102,92,111,100,107,99,105,103,110,110,103,109,96,109,115,108,124,108,100,102,102,109,105,119,96,99,108,94,87,108,103,115,103,100,102,87,95,108,108,112,113,99,134,99,102,91,104,103,113,108,92,112,103,102,108,91,108,110,104,105,104,100,109,90,97,119,101,113,95,110,104,103,125,99,112,93,92,102,107,104,103,103,108,111,103,101,109,99,103,98,96,100,112,104,110,108,99,95,112,105,100,110,102,103,120,112,98,107,109,102,98,101,111,94,92,104,98,90,73,105,79,102,104,102,104,103,95,96,98,109,99,97,104,110,117,107,113,106,96,100,99,101,112,109,111,113,117,113,117,111,100,106,102,95,95,104,94,115,106,107,108,113,100,103,118,118,133,139,150,164,150,157,175,163,186,175,203,160,183,148,162,152,138,141,153,131,124,120,133,103,122,121,107,100,106,99,108,105,118,101,106,95,111,122,123,101,111,104,104,108,105,101,99,105,100,106,125,108,113,106,93,104,93,96,91,102,105,115,112,116,99,107,99,100,102,100,97,107,96,95,129,101,96,102,109,100,101,104,107,100,111,117,106,104,99,107,100,99,109,117,103,99,96,117,111,103,105,94,100,104,105,95,112,107,97,124,103,104,94,117,99,111,116,112,110,98,109,97,117,127,92,102,103,109,105,102,113,105,111,95,111,108,103,116,94,105,98,111,114,108,99,97,107,103,110,108,99,123,98,104,104,112,107,112,112,109,97,108,96,108,103,108,113,100,103,107,109,95,100,115,106,116,103,107,103,105,100,100,104,102,117,105,98,94,101,101,118,105,100,94,108,111,99,105,101,114,96,110,108,103,106,104,93,109,100,102,102,94,105,100,92,115,106,103,96,108,113,105,113,106,106,112,110,109,88,107,106,111,117,106,108,100,113,68,100,114,98,106,110,102,103,108,117,118,110,98,96,99,123,105,101,106,107,115,101,112,110,105,99,118,99,96,120,107,99,99,102,108,101,114,105,112,104,104,108,103,87,113,111,96,91,104,105,106,96,112,93,108,99,101,107,101,107,109,105,91,105,102,101,106,97,105,99,109,98,112,104,118,103,115,113,111,103,104,101,95,101,108,105,109,109,100,105,107,97,113,100,102,99,105,104,103,99,102,104,107,113,103,111,103,99,93,105,91,104,109,96,94,88,104,116,99,98,109,112,109,102,103,109,110,106,104,103,109,106,122,104,116,108,98,109,106,94,96,96,104,105,91,119,99,103,101,109,106,103,112,100,109,98,114,107,103,106,107,99,99,110,99,111,100,108,105,107,105,101,106,100,117,104,111,96,105,103,117,106,105,106,106,102,104,108,102,105,105,106,97,100,101,103,98,99,102,106,97,105,105,114,96,110,93,101,114,110,92,117,107,113,107,108,99,106,93,99,115,99,107,103,108,112,83,96,107,98,93,100,104,101,115,95,104,98,99,104,94,106,101,109,111,117,93,96,106,96,103,105,100,93,112,105,105,120,104,96,98,110,104,115,102,109,108,98,103,106,94,107,106,113,96,104,109,99,102,100,112,107,119,109,107,111,104,97,106,105,128,108,114,96,109,109,106,97,99,100,103,124,114,108,111,98,105,103,113,101,113,103,121,112,91,115,105,107,93,108,106,98,104,105,104,104,104,102,117,105,110,109,105,106,101,114,105,98,107,102,103,108,104,103,113,105,98,108,108,110,107,94,105,108,105,109,101,106,105,103,98,102,100,111,101,94,114,93,91,102,111,108,100,103,105,103,100,102,85,99,108,102,99,102,112,96,98,100,108,96,122,102,95,104,109,111,104,99,102,106,92,119,107,113,94,102,107,113,95,97,97,93,97,95,99,106,106,102,99,107,103,106,99,106,102,110,93,101,111,98,101,116,105,115,96,106,90,97,102,91,116,105,101,97,105,115,109,102,109,102,111,97,121,113,115,106,112,100,106,99,97,138,113,90,100,96,111,106,96,123,101,104,96,104,100,104,98,113,101,88,116,88,94,105,108,113,109,116,102,103,109,102,111,109,105,92,98,95,101,100,96,102,99,108,99,95,106,113,95,97,113,88,104,97,105,97,112,113,113,114,103,121,113,96,111,104,102,110,100,101,103,110,105,97,101,102,103,104,101,106,106,106,120,96,126,104,95,98,108,87,108,108,116,102,109,107,109,110,90,100,107,112,100,114,101,105,97,104,110,110,99,109,100,95,103,97,112,105,95,99,113,104,98,108,113,101,94,112,102,100,106,95,118,107,113,107,96,102,111,100,104,101,85,111,101,106,103,88,106,97,96,117,105,110,105,103,113,108,99,103,104,99,109,110,110,109,104,103,122,104,110,107,109,102,93,98,101,110,104,106,98,104,111,111,103,94,93,110,95,106,103,118,104,102,98,109,111,111,109,100,93,108,105,102,110,98,106,76,106,106,109,103,108,91,97,115,113,104,99,98,103,113,107,96,99,108,120,110,89,98,101,94,105,117,107,102,98,103,102,103,95,111,88,104,91,101,108,96,104,106,105,101,111,104,99,97,105,87,100,112,96,110,115,107,99,107,99,104,93,103,100,96,99,88,102,96,113,115,106,107,101,106,112,99,111,103,105,99,107,110,98,101,106,100,103,106,120,105,103,101,90,109,117,103,100,99,111,120,101,106,108,110,112,100,121,96,102,90,94,109,91,102,110,99,115,99,86,105,109,101,113,102,106,106,105,98,133,102,105,114,107,98,96,100,70,100,100,118,98,98,100,85,102,97,111,86,102,110,103,109,109,108,107,93,108,104,95,113,110,94,85,98,95,99,98,96,95,117,117,100,95,113,104,98,93,108,121,90,102,99,103,105,83,98,111,74,108,105,113,84,100,84,101,99,110,94,109,95,98,108,100,102,87,109,92,103,129,122,109,109,110,105,100,87,87,97, +586.63208,99,93,100,109,97,102,99,102,87,99,89,99,107,105,103,101,102,101,116,99,114,79,102,98,120,97,77,99,110,117,103,111,101,94,101,104,90,97,110,96,95,116,106,87,108,110,94,106,93,110,101,104,95,98,98,96,109,93,95,97,69,114,83,94,125,99,94,105,108,91,110,97,95,96,93,102,106,109,120,91,98,101,112,91,90,95,107,100,99,106,101,109,108,110,97,105,94,108,108,105,98,103,117,98,98,92,92,103,110,104,103,99,95,107,105,98,107,107,110,101,103,104,99,115,97,99,105,96,118,96,98,99,106,98,99,106,98,108,106,95,115,95,105,94,99,92,104,98,128,103,110,113,121,93,93,75,105,101,100,105,97,92,103,99,100,93,105,105,96,95,105,104,105,111,102,88,97,101,107,100,109,102,96,101,107,92,90,91,109,95,91,107,105,104,97,108,107,114,98,108,93,98,103,94,106,95,96,102,109,100,109,100,113,106,94,97,91,105,105,97,102,113,101,101,100,101,67,84,107,110,102,114,104,105,94,107,109,99,106,97,98,106,105,101,103,117,92,99,93,105,104,99,113,102,99,104,96,106,91,118,103,109,101,104,116,101,99,102,77,114,108,98,95,109,105,109,112,101,116,101,103,107,93,110,108,99,106,93,100,114,76,103,108,110,102,98,100,92,113,98,91,108,101,107,96,102,107,101,94,108,111,99,91,106,106,108,101,90,108,102,103,98,104,107,108,92,100,91,108,102,101,91,105,101,89,104,105,103,94,105,102,102,97,81,104,111,109,103,99,111,106,105,97,103,105,105,113,107,105,105,99,100,114,97,104,102,101,91,100,112,105,96,103,116,100,100,103,118,104,100,124,113,97,102,97,110,101,97,108,94,103,90,106,104,104,103,102,105,109,97,92,104,98,98,113,102,109,100,110,101,88,104,97,90,113,91,109,97,100,100,101,106,93,103,101,94,102,98,112,104,112,95,107,100,108,94,102,103,92,109,99,106,105,109,95,97,96,101,108,114,113,105,105,97,93,102,103,98,117,100,108,98,99,103,116,118,108,78,97,101,98,102,102,106,103,98,91,116,90,82,112,105,110,109,105,113,98,99,96,101,117,103,119,94,100,104,105,103,99,102,110,113,95,108,104,101,87,96,101,99,103,100,94,71,105,87,102,100,91,113,102,105,106,102,94,107,96,109,102,122,103,114,98,100,98,107,102,103,121,106,95,92,97,90,117,88,106,102,96,104,89,112,105,109,105,109,108,110,105,109,106,121,102,100,104,102,113,98,101,97,91,98,115,104,82,98,104,104,98,104,99,94,98,113,89,98,106,106,106,97,104,108,101,67,86,100,99,111,92,108,103,105,109,105,100,104,91,107,100,102,100,115,120,96,115,96,99,105,100,110,105,96,104,85,103,107,90,100,99,117,86,101,101,108,84,95,109,95,104,104,104,107,97,90,110,100,92,101,91,106,100,106,103,114,97,112,104,102,97,111,104,94,108,109,96,111,105,102,104,84,115,100,105,109,101,106,100,84,108,86,98,117,109,98,99,82,94,112,94,110,99,100,98,118,102,107,100,103,107,108,98,110,95,107,109,115,108,108,100,122,113,102,96,104,94,108,104,107,101,96,111,100,102,103,109,99,101,110,102,106,101,104,89,100,105,103,99,107,117,104,113,109,116,102,99,101,87,121,95,103,107,102,95,92,106,110,112,95,110,109,106,112,100,104,95,91,97,104,111,97,97,93,112,91,111,114,112,107,98,96,99,100,114,108,96,107,114,97,108,112,104,95,101,107,89,98,86,108,90,98,98,101,90,100,121,107,112,103,92,90,105,110,91,105,110,101,106,103,107,99,97,106,100,113,107,112,115,104,92,109,105,103,104,110,104,104,111,97,111,104,90,112,105,93,103,112,95,96,91,125,92,104,100,102,98,99,108,90,95,98,104,104,102,102,98,120,99,101,108,94,101,107,111,101,105,100,109,103,114,115,100,106,132,101,103,106,103,111,118,114,105,107,100,103,106,86,103,103,110,106,102,107,111,100,109,97,100,100,106,117,92,94,107,98,92,89,101,91,83,103,99,101,96,107,104,91,87,93,104,104,94,106,97,104,94,98,91,109,105,114,91,112,122,116,94,108,96,97,99,102,103,97,114,108,112,110,104,104,98,109,100,105,101,84,121,99,91,107,110,118,100,102,93,94,111,102,101,94,110,105,128,99,80,109,105,112,92,96,98,98,103,107,104,96,88,99,98,108,100,99,103,96,98,92,113,79,101,117,95,114,90,99,91,106,97,102,106,99,108,94,116,100,91,105,112,108,117,105,108,116,105,100,108,129,106,107,115,131,137,138,122,180,178,208,204,174,186,183,153,180,152,159,155,158,136,119,94,105,107,123,103,101,104,99,105,101,99,105,98,102,103,110,102,97,106,100,101,105,110,105,99,99,104,97,112,112,98,96,111,104,102,110,107,104,105,103,103,99,118,110,110,96,98,95,111,114,110,98,105,98,114,110,111,102,117,93,105,110,102,96,113,103,95,116,114,104,97,104,100,95,109,106,113,97,117,100,103,108,116,106,95,129,105,104,107,111,100,113,101,102,104,108,110,102,113,107,112,95,86,107,109,99,91,99,106,76,115,109,102,105,101,110,112,109,106,100,97,116,115,111,113,101,90,117,104,109,109,103,109,110,104,95,100,102,111,104,110,103,110,102,103,107,88,117,102,114,104,106,108,102,110,108,110,97,107,109,112,127,100,106,105,108,106,92,101,101,109,114,103,123,105,108,95,97,118,107,105,104,104,109,88,97,106,105,106,106,102,77,104,94,99,95,112,96,102,103,97,112,95,108,115,111,101,103,102,100,105,94,86,112,110,102,106,83,100,100,103,101,93,112,103,109,106,99,101,95,113,101,118,102,104,114,84,105,107,104,106,106,90,98,106,117,116,108,124,103,111,109,116,113,105,112,104,103,102,110,114,93,105,96,105,113,109,104,108,97,106,108,114,99,102,92,99,130,116,93,98,98,105,83,92,110,102,100,110,116,121,109,115,83,99,111,116,113,108,110,106,108,90,118,117,106,102,106,107,92,106,120,101,101,103,113,101,113,113,107,102,100,106,91,104,107,106,115,105,99,109,93,103,102,104,102,111,92,97,98,116,101,106,102,102,95,113,99,104,121,117,102,104,112,99,109,99,89,112,88,104,99,113,105,103,97,94,102,115,115,96,108,109,112,102,95,130,116,116,73,100,103,102,110,104,100,100,99,104,102,117,117,112,103,106,97,102,101,103,112,114,102,115,103,109,109,92,102,87,113,102,100,99,98,87,107,92,106,93,84,109,101,105,105,97,114,97,102,111,108,96,96,90,106,100,99,104,126,109,103,90,102,115,93,94,97,105,100,108,108,94,97,87,100,113,101,105,108,100,102,95,102,116,101,114,100,94,105,88,110,107,100,103,106,100,78,103,95,109,102,102,101,121,89,102,98,106,105,83,107,96,100,102,104,95,103,100,95,97,103,109,107,112,117,103,106,102,99,89,88,102,98,108,108,112,93,97,109,94,106,105,101,103,99,100,107,92,116,89,99,113,104,94,109,101,110,116,142,102,106,103,112,105,105,103,91,111,105,108,108,100,115,98,112,98,105,106,107,98,105,103,133,96,115,112,104,102,106,105,102,98,107,97,107,95,91,104,109,91,98,104,113,117,100,100,100,99,101,113,96,113,101,101,106,98,88,103,102,104,105,105,118,103,106,105,89,106,105,105,101,99,90,102,107,106,105,110,106,105,107,74,108,104,98,117,100,109,106,96,104,96,98,107,111,105,113,99,109,101,92,107,106,101,95,102,114,97,96,117,111,99,102,98,113,108,108,93,98,99,103,119,91,116,104,98,107,105,97,108,96,103,103,103,96,107,91,121,106,98,99,101,96,130,111,101,104,113,117,106,101,105,105,94,108,103,110,93,107,108,110,106,108,97,103,98,97,104,105,95,93,110,102,115,105,106,111,102,84,88,108,108,110,104,107,108,104,122,96,104,108,107,102,106,97,99,95,102,98,107,105,104,101,96,92,110,116,106,114,102,106,98,99,116,93,71,101,106,110,98,103,101,105,107,99,100,101,103,113,116,103,102,97,110,113,99,87,102,88,106,103,102,82,97,104,104,107,99,96,107,93,96,107,101,103,114,95,102,109,105,113,102,90,106,102,103,102,108,91,106,98,103,109,100,97,110,116,108,116,105,113,123,109,92,102,113,102,113,102,113,94,114,99,100,104,93,104,92,111,94,114,104,97,98,110,109,99,107,107,102,106,97,117,106,109,108,100,91,100,102,101,110,118,102,108,102,107,105,97,104,111,120,94,99,94,102,109,106,103,100,95,101,108,98,104,106,90,100,111,101,108,113,75,93,113,110,93,88,102,99,85,95,95,88,102,115,106,95,108,99,101,108,104,95,106,87,113,108,110,98,105,90,96,97,95,106,100,94,96,103,90,106,105,111,97,99,100,87,107,98,109,108,113,99,106,109,100,102,100,104,95,102,111,98,93,99,101,105,106,112,100,105,102,96,80,102,92,101,113,113,118,113,106,113,109,97,104,103,93,99,107,109,99,104,107,87,89,94,112,100,99,105,103,95,99,99,90,103,109,104,97,103,119,107,94,84,112,94,117,112,93,96,113,103,113,101,110,112,97,111,114,108,105,100,100,113,91,98,98,104,114,113,94,102,97,93,96,94,100,109,93,95,113,120,105,83,105,101,95,95,91,107,100,103,101,100,95,96,113,107,101,98,98,106,98,101,101,106,79,101,100,103,100,91,93,110,93,92,82,96,85,96,122,69,75,92,101,103,108,88,85,87,96,95,94,120,100,99,101,106,102,104,106,94,79, +586.77307,116,110,108,108,83,102,120,103,101,101,108,94,112,96,107,100,91,110,88,91,103,95,105,93,106,99,97,103,113,94,100,100,118,111,94,100,119,91,100,98,98,107,107,109,112,122,104,113,91,104,69,94,104,102,110,102,99,94,104,89,102,96,105,97,102,105,96,83,107,93,96,111,92,106,99,105,101,97,105,83,95,113,93,101,110,92,101,100,101,97,134,102,102,103,98,96,122,95,121,96,111,100,98,100,96,92,109,102,99,104,98,102,118,102,99,106,94,104,95,107,108,104,91,105,96,104,97,95,121,107,107,91,95,105,105,111,92,107,85,97,79,107,120,102,95,100,108,111,95,108,91,98,117,95,92,98,100,104,111,100,101,99,111,95,96,95,87,107,104,101,105,92,102,98,96,102,103,97,97,100,93,92,97,106,80,95,105,109,100,101,95,97,103,91,110,91,102,95,97,106,106,96,107,96,97,105,103,106,113,109,112,104,107,112,94,100,103,107,93,104,97,114,107,99,102,99,103,108,108,107,98,102,103,108,104,97,89,105,113,102,114,111,108,102,119,112,100,98,108,109,104,109,103,103,98,104,103,99,100,83,79,116,91,102,107,100,100,118,102,108,103,100,99,105,100,97,108,112,100,95,111,113,106,117,95,101,90,102,104,95,100,98,103,113,98,104,116,94,96,102,96,97,108,112,108,105,104,113,103,109,96,112,100,107,108,98,97,105,103,108,109,113,106,104,87,101,109,96,80,121,112,102,108,103,109,102,110,96,101,102,101,114,106,107,89,106,109,81,97,100,106,90,97,104,99,104,104,102,92,106,101,93,91,109,101,109,97,102,104,106,109,70,114,106,109,97,110,83,110,120,115,108,88,105,109,105,103,112,102,83,101,98,99,94,105,105,90,96,102,97,107,102,100,105,105,103,102,108,119,100,100,102,106,113,105,96,99,103,99,97,102,105,96,125,97,93,99,99,101,126,119,111,108,97,104,110,100,106,91,110,113,114,106,118,92,108,105,99,102,105,96,97,95,103,111,104,108,94,104,103,109,101,100,106,99,110,84,109,111,106,102,104,114,109,98,109,101,102,97,113,108,116,95,100,100,102,108,98,96,99,102,102,92,103,95,94,113,103,108,117,115,131,101,91,98,96,100,93,83,100,118,100,101,79,100,105,97,104,97,113,78,97,105,108,100,89,107,93,102,118,103,104,99,100,98,100,104,104,105,100,112,115,108,98,98,104,112,99,103,104,108,113,117,97,100,97,100,98,99,97,107,114,102,106,109,99,107,88,110,95,106,99,119,111,90,99,117,94,90,103,104,106,114,103,88,83,87,112,104,95,94,102,105,99,104,101,99,100,109,102,96,101,100,101,98,106,113,101,105,95,111,102,108,76,107,99,93,94,102,100,108,96,103,109,103,90,112,109,105,109,109,93,89,100,96,108,104,101,105,105,107,109,104,98,87,111,99,98,98,110,103,115,96,101,96,101,93,93,103,101,105,102,114,104,92,105,102,89,137,100,104,120,113,102,105,116,113,110,105,99,105,105,112,138,104,96,108,114,90,109,99,111,100,112,113,102,102,117,99,110,91,104,99,102,102,108,94,110,93,98,108,96,112,106,113,100,102,110,110,99,107,91,104,110,115,100,105,105,112,104,105,110,100,91,95,102,114,108,95,102,110,84,105,96,107,96,102,98,124,109,108,90,105,112,88,104,106,107,119,123,102,109,98,80,96,113,97,112,102,96,89,102,116,101,109,98,111,106,106,99,104,100,97,110,96,109,113,102,107,103,115,101,104,102,92,98,104,113,113,109,93,100,116,100,106,113,99,98,103,104,125,97,106,95,111,88,107,121,101,102,105,103,104,102,105,103,110,109,112,95,106,101,117,112,83,99,104,108,105,105,98,105,108,96,93,102,109,98,109,90,106,78,98,100,114,105,103,106,107,109,97,103,112,103,105,105,95,103,114,108,116,130,102,96,90,107,112,87,91,109,106,99,112,98,100,108,98,110,103,99,113,103,109,104,107,103,104,99,78,88,114,93,81,124,106,113,107,108,91,98,115,104,109,114,92,109,101,110,96,97,110,109,103,113,102,106,101,102,102,103,96,97,94,100,94,120,101,107,107,92,121,93,104,105,112,99,92,78,73,111,117,113,104,101,107,104,97,117,99,101,118,110,115,97,103,99,99,108,95,103,88,95,106,102,100,97,98,94,96,107,90,103,92,92,93,95,91,102,98,111,96,116,109,101,101,90,95,107,95,101,96,104,99,95,99,99,105,100,95,95,91,104,92,111,100,105,97,113,105,101,107,111,99,99,123,115,106,106,103,106,109,109,113,110,115,107,119,144,148,152,139,162,156,188,149,168,189,181,156,175,154,134,143,138,159,109,123,115,118,125,120,115,97,119,90,103,104,94,104,114,95,111,100,108,98,112,108,97,105,101,91,104,92,108,108,109,90,121,110,121,102,108,103,99,105,96,106,105,106,115,115,99,100,104,118,106,113,115,105,101,111,106,111,117,109,97,106,115,95,107,101,101,108,102,99,108,97,105,112,108,109,109,108,98,105,101,101,104,83,102,99,93,100,111,107,91,96,100,111,110,101,115,117,108,95,107,102,108,107,86,110,102,103,97,97,108,118,113,96,101,101,110,103,116,99,106,116,113,112,96,111,96,108,104,108,106,102,93,106,106,99,102,110,96,94,111,98,112,111,109,102,112,114,113,102,111,109,107,123,102,109,99,107,111,97,104,108,109,98,105,101,99,108,105,105,99,100,100,105,121,109,102,109,103,112,107,111,102,110,86,112,113,102,131,85,101,110,99,97,112,102,106,117,113,104,94,106,98,97,105,121,109,107,109,105,113,116,79,94,114,98,100,94,116,103,97,107,105,82,110,95,89,110,100,115,107,105,98,105,98,101,96,98,104,113,107,84,87,96,99,100,107,102,103,101,107,88,110,103,116,100,108,96,114,113,111,113,95,105,85,98,96,94,105,117,102,119,92,100,105,103,93,111,96,116,99,108,93,95,108,103,99,107,99,100,105,96,110,111,117,105,101,102,108,95,96,112,112,98,104,105,100,105,101,112,103,113,114,97,96,104,99,104,108,106,103,100,112,93,105,97,105,108,100,102,126,109,106,109,90,91,115,115,102,108,103,96,105,96,109,102,122,98,107,90,105,100,105,99,115,110,113,103,99,105,102,98,113,111,109,101,105,105,94,88,88,110,97,113,85,110,109,105,110,109,103,96,107,100,117,98,103,115,108,93,104,107,109,78,102,113,101,100,109,101,94,116,113,113,117,103,117,94,97,112,102,108,105,104,107,106,105,99,105,112,101,112,107,110,107,104,103,107,103,97,108,109,113,104,98,108,103,92,108,102,107,105,108,107,99,107,94,92,105,107,101,113,95,98,112,94,109,97,100,86,98,108,93,106,109,112,101,96,94,92,108,98,106,113,93,109,96,98,97,101,90,106,113,105,100,106,97,109,105,95,104,106,105,105,105,104,112,102,114,92,108,105,109,113,101,99,103,106,108,89,102,102,98,135,115,103,93,103,102,103,100,100,102,104,103,100,104,113,112,113,100,113,100,98,94,100,105,108,102,118,94,98,107,99,110,102,114,101,117,95,96,103,106,103,95,115,105,109,106,103,90,95,105,110,109,102,92,107,102,104,102,101,106,115,101,116,106,101,112,106,110,101,98,100,98,112,100,107,113,82,103,106,104,109,104,102,105,107,97,103,106,103,103,114,110,110,101,109,105,104,101,110,94,97,101,98,93,105,109,109,95,109,104,101,106,101,93,103,100,96,107,99,111,108,109,95,103,101,116,112,107,85,109,110,103,92,97,113,101,104,95,100,105,93,95,81,99,106,103,100,93,103,103,128,102,98,128,109,106,105,103,121,102,106,107,103,97,98,100,103,102,92,105,102,98,105,106,98,110,105,106,98,102,94,103,106,108,99,102,108,100,112,111,98,105,97,91,98,107,108,91,113,100,109,109,105,99,101,95,109,102,108,115,97,96,102,106,100,104,97,102,107,107,104,85,98,97,116,96,103,109,117,98,113,105,103,95,106,100,112,106,109,100,112,118,100,113,104,79,99,95,103,91,104,113,107,99,107,107,88,95,99,102,108,113,97,102,101,91,113,102,97,107,81,92,107,103,91,107,104,101,106,107,104,104,99,119,105,100,102,102,105,107,108,105,102,110,98,113,110,100,99,106,109,100,68,99,120,113,106,105,107,104,93,95,101,97,105,103,102,101,104,103,89,116,113,106,92,100,103,96,100,72,99,116,114,101,119,95,111,105,112,110,82,113,108,95,113,103,101,110,102,110,113,98,107,107,104,117,104,100,105,90,87,104,112,119,112,103,111,111,97,95,109,91,98,88,102,106,96,97,106,104,108,101,108,102,108,102,108,100,89,128,88,95,110,113,96,118,108,91,104,113,103,98,98,97,110,108,115,105,112,99,98,112,96,97,103,98,104,107,101,94,100,101,101,103,102,103,93,82,90,108,109,101,111,106,96,108,113,102,107,105,106,93,105,129,109,105,107,107,84,99,100,108,108,92,111,107,125,99,113,102,108,102,81,104,96,99,96,101,102,100,107,93,101,127,111,98,99,91,99,107,124,113,99,93,95,100,99,117,95,107,102,92,101,104,111,111,101,110,98,130,100,90,114,111,100,99,101,102,113,107,91,98,109,118,105,102,112,103,105,77,108,104,91,106,104,111,101,110,93,110,113,128,99,101,95,101,106,99,108,95,110,106,107,112,87,91,103,116,114,117,115,110,106,108,98,108,100,108,106,94,101,107,100,88,105,101,102,113,103,111,99,102,93,103,95,98,102,98,99,117,108,100,99,93,96,100,95,96,114,103,108,100, +586.914,99,109,99,113,100,112,98,102,107,104,91,110,107,109,104,103,111,102,113,103,108,104,107,103,108,110,109,116,105,119,112,110,113,99,127,98,108,82,95,102,90,90,102,95,99,110,104,80,95,126,103,110,100,103,102,106,103,110,108,104,103,115,103,99,104,113,91,94,97,110,114,109,88,107,110,104,107,96,122,112,104,88,116,101,116,106,104,118,103,93,113,112,114,116,96,103,105,101,95,109,103,108,96,95,100,104,100,97,98,86,99,103,112,104,103,95,93,95,120,104,112,104,96,107,100,107,110,87,121,98,102,110,104,102,98,94,76,102,118,88,109,105,102,100,103,100,111,103,104,94,116,110,115,94,104,111,115,104,103,102,109,113,107,87,100,104,104,92,106,106,100,107,106,99,111,101,106,109,117,110,111,109,103,112,100,96,93,98,108,101,89,98,105,103,100,125,109,106,110,108,94,111,101,100,103,100,108,102,118,126,110,106,109,118,112,110,92,107,125,102,102,102,92,102,101,92,101,113,103,100,97,107,103,107,110,108,110,97,117,101,108,100,107,100,106,101,93,101,104,109,107,103,97,103,98,110,103,104,96,118,98,101,84,103,111,98,111,104,108,99,102,113,102,110,105,93,102,100,100,105,100,92,110,100,100,98,117,108,123,113,97,121,98,103,101,115,116,100,108,106,82,77,106,107,99,103,104,108,101,110,98,97,74,102,114,108,101,100,106,120,104,109,108,99,110,108,106,97,115,115,107,111,106,98,103,109,95,98,105,106,110,109,100,97,118,95,104,93,108,104,103,108,101,103,95,115,98,98,111,102,91,103,108,92,106,86,109,108,100,120,102,101,100,102,105,102,104,100,116,119,112,103,103,120,98,104,99,91,100,92,95,92,88,113,106,101,104,109,74,115,99,102,105,91,98,95,102,98,98,104,90,105,117,104,102,121,103,109,103,97,104,100,96,103,104,96,110,99,104,106,98,112,107,101,113,99,107,113,114,101,103,104,112,97,113,109,96,96,109,104,107,113,101,110,114,114,101,92,113,103,117,102,96,102,100,101,105,104,117,107,103,80,117,98,99,115,100,101,105,103,98,105,115,88,100,98,127,107,100,113,113,117,87,96,91,102,113,104,101,106,107,92,103,100,102,107,106,101,102,77,118,105,103,95,106,105,117,103,96,100,107,106,104,110,106,96,114,102,111,103,110,105,105,101,111,110,111,93,105,109,110,78,99,101,112,107,101,101,103,107,108,106,95,113,98,97,108,113,98,115,101,97,107,103,101,109,104,119,120,98,109,110,110,114,113,111,96,95,73,117,102,108,102,79,101,95,111,111,102,101,77,121,104,109,116,91,106,98,109,109,103,84,114,105,106,103,101,108,95,105,121,99,108,106,120,108,94,107,104,106,103,110,106,114,92,105,105,108,101,106,102,106,101,104,98,113,100,101,109,98,136,102,104,101,129,101,100,105,106,122,117,104,96,93,108,114,116,108,103,101,113,101,102,112,101,107,89,100,107,95,106,106,103,96,103,100,108,106,105,102,103,108,110,109,106,110,112,97,111,97,111,98,97,104,106,99,104,125,103,106,95,118,109,104,99,109,120,107,107,101,109,114,108,108,100,109,105,116,106,101,99,102,110,110,97,95,96,104,111,112,103,106,101,71,103,98,104,118,105,96,98,114,102,96,102,102,103,104,95,108,104,100,106,106,103,90,103,110,110,100,120,96,106,102,109,108,104,107,114,102,109,95,112,112,100,101,103,104,100,104,117,106,114,108,102,106,101,82,97,114,109,97,124,108,103,100,113,87,108,113,111,107,105,101,103,115,92,111,94,92,114,106,107,97,107,98,113,99,110,106,92,105,106,103,103,90,108,99,103,104,98,105,101,76,108,114,114,112,109,119,101,97,107,98,101,96,89,103,98,105,99,97,101,113,97,113,106,103,107,109,107,109,101,113,102,105,110,101,89,106,105,100,104,99,114,105,113,96,104,105,111,106,98,103,101,95,101,106,104,93,115,100,101,115,106,107,120,103,93,120,114,108,115,105,130,91,111,99,100,109,101,104,118,109,96,106,101,105,103,104,102,94,105,102,109,114,108,95,107,99,100,99,115,103,99,96,114,113,120,102,111,109,104,108,100,97,104,118,115,114,99,96,108,98,105,107,100,100,103,104,99,107,98,100,90,82,99,103,100,115,103,101,106,80,106,109,103,103,99,102,91,98,95,112,109,99,82,110,89,98,113,113,103,109,98,109,104,111,106,100,116,111,97,98,113,108,106,121,96,102,93,104,98,104,101,110,119,110,93,104,102,114,105,71,102,100,125,98,114,103,100,110,116,119,113,110,107,118,135,160,139,167,183,181,174,165,168,163,182,141,144,184,159,142,132,143,133,136,129,111,121,115,102,114,117,110,112,105,115,109,118,104,110,106,125,103,104,104,110,102,112,90,106,107,109,107,110,107,104,97,99,106,111,102,125,106,103,107,113,110,91,106,101,115,110,117,100,113,94,113,99,103,103,108,104,115,138,104,94,112,109,104,103,100,108,108,97,98,103,108,107,110,109,93,98,83,118,107,98,110,123,103,75,110,96,110,112,104,112,99,108,103,97,117,106,101,95,103,107,107,109,90,105,98,95,112,85,105,107,104,103,93,112,118,106,113,96,108,104,114,86,94,104,112,98,112,107,99,99,103,98,107,102,85,89,113,103,98,88,107,103,102,107,101,84,111,109,103,97,106,106,113,100,106,108,105,113,87,117,109,109,108,102,99,102,102,105,114,107,101,102,110,102,107,103,95,106,103,112,102,103,129,106,93,107,104,113,112,108,107,106,103,102,98,107,96,103,107,106,105,86,88,105,104,124,112,103,99,117,93,105,98,96,115,102,101,108,103,105,100,105,110,112,115,116,113,83,100,107,87,99,99,107,110,112,105,122,109,115,103,105,112,95,98,99,97,117,96,111,109,97,98,109,105,115,105,95,105,109,97,110,105,94,105,102,113,95,97,95,106,105,113,89,105,110,113,102,100,103,105,95,106,115,92,113,105,109,99,102,99,108,83,102,95,98,95,101,100,100,100,110,120,103,79,100,103,101,103,79,90,107,89,106,107,91,95,105,104,98,103,101,100,115,102,106,96,112,92,95,108,108,106,106,106,105,99,104,106,97,106,105,103,101,104,87,111,104,110,105,103,98,103,107,111,104,108,103,95,108,106,118,111,96,111,111,105,106,95,107,100,106,86,108,112,110,101,110,111,107,117,110,101,100,107,104,101,103,104,102,111,100,102,92,113,111,107,103,103,106,103,108,105,106,105,113,118,103,101,101,117,108,117,106,106,99,101,112,98,98,112,97,107,104,118,98,110,102,103,107,97,116,93,92,107,99,109,101,113,91,103,105,107,104,110,98,104,98,108,101,105,95,100,97,106,103,108,102,109,102,95,103,97,93,106,106,94,103,91,103,107,113,102,104,114,102,109,111,113,98,110,103,113,116,124,97,98,101,116,98,110,105,103,97,113,93,99,108,103,105,99,117,101,105,102,109,100,102,94,106,102,104,106,102,110,120,103,99,92,99,105,96,102,89,116,113,105,111,103,117,108,105,107,103,99,116,110,103,90,108,105,89,116,112,116,126,100,99,100,106,112,112,104,99,104,98,98,105,95,104,97,99,112,105,98,101,109,105,98,106,99,98,100,105,108,106,106,105,109,102,101,95,102,104,92,101,99,120,102,103,112,108,102,107,105,99,104,98,98,91,94,106,100,104,108,95,103,100,112,94,119,98,119,95,103,97,97,100,109,92,106,106,110,102,111,106,102,116,111,102,109,99,102,116,104,99,97,99,101,123,113,100,96,109,104,101,110,94,108,99,110,91,102,102,99,99,98,83,103,111,95,110,100,95,108,107,111,111,99,117,91,102,91,112,73,103,104,111,104,111,95,109,102,102,106,101,109,112,97,108,100,102,113,99,113,107,89,98,102,106,87,105,107,88,111,101,85,100,100,117,105,116,106,104,101,121,96,129,97,112,103,106,97,93,100,113,99,120,113,107,104,111,100,101,98,104,103,113,105,100,116,108,124,103,101,106,107,107,110,112,112,117,93,107,117,107,98,102,102,103,110,110,95,100,110,108,108,106,110,109,114,113,104,108,94,114,103,95,101,98,95,110,116,109,100,98,121,99,114,105,107,95,98,102,111,121,107,98,114,107,106,110,109,103,107,81,100,104,105,116,93,84,101,113,106,97,96,106,99,108,94,108,102,105,105,90,91,116,105,116,100,106,110,111,103,98,92,100,90,102,106,112,103,111,103,107,104,104,113,114,102,114,101,106,108,100,98,108,76,102,108,100,96,109,109,104,113,102,94,115,103,101,105,102,116,100,103,112,97,97,105,108,105,112,103,100,121,104,97,117,103,121,113,90,110,102,111,105,102,103,110,105,120,109,112,96,103,120,110,106,99,105,94,107,106,93,81,106,105,110,106,98,91,101,107,99,106,103,110,106,114,97,102,108,111,99,108,95,87,116,107,99,115,100,109,91,104,106,104,93,110,103,109,117,102,105,97,114,105,94,98,118,109,109,103,108,132,109,99,98,114,99,112,90,110,109,109,80,102,90,109,111,115,93,102,107,109,102,101,99,117,98,109,103,106,97,85,105,104,93,95,109,104,108,100,103,109,100,105,99,85,99,99,122,100,97,112,109,124,101,92,94,94,97,111,91,91,100,93,120,109,94,77,108,101,99,96,95,107,109,105,85,88,108,82,97,116,107,109,118,93,112,102,100,91,101,100,99,111,106,90,111,103,109,96,117,116,96,96,101,108,106,98,93,88,85,99,92,109,97,98,116,93,105,100,100,90,113,106,107,94,111,106,112,104,112,103,98,97,96,101, +587.05499,120,93,97,100,95,92,108,106,92,96,80,98,115,96,114,105,103,117,93,104,96,117,99,102,107,110,102,91,94,111,92,103,98,101,110,110,102,96,101,107,102,97,109,92,101,113,94,111,97,108,85,94,110,96,106,102,98,99,119,100,103,108,101,97,106,90,95,106,103,105,121,111,105,104,98,109,110,86,92,107,105,99,104,100,101,103,106,117,107,96,102,94,98,99,98,103,86,101,104,111,109,99,99,107,107,107,102,91,106,115,104,109,114,94,95,74,101,117,114,98,95,110,104,83,104,100,114,94,111,96,106,105,97,124,102,124,103,100,92,99,108,103,96,114,97,103,114,114,112,112,106,104,104,98,103,110,107,111,99,114,105,109,103,108,90,92,96,96,103,104,103,76,96,105,83,108,101,102,100,96,99,107,99,97,108,122,103,98,106,97,105,101,109,104,90,100,104,105,101,109,98,105,95,111,87,99,98,117,100,119,98,103,117,109,101,100,104,96,98,101,112,117,99,101,97,105,107,105,96,102,92,105,110,109,100,94,92,80,116,114,109,109,109,113,101,113,104,108,112,101,108,99,109,112,104,98,97,114,119,118,104,89,110,101,104,107,92,133,100,103,104,105,106,102,110,93,102,113,105,105,97,110,98,111,108,113,102,100,105,103,108,100,103,102,91,106,87,99,110,93,100,103,109,118,104,109,104,94,105,109,101,112,96,106,104,105,106,95,100,99,106,104,89,105,100,107,106,87,92,101,107,99,110,100,107,99,105,94,99,113,103,107,104,106,89,100,103,110,94,97,100,104,104,99,113,105,101,99,101,103,100,101,104,112,99,128,96,104,108,99,107,95,115,114,104,94,114,97,99,109,114,105,106,98,94,95,97,114,99,103,100,97,117,108,105,105,105,97,95,116,86,108,101,111,110,102,104,106,98,87,111,106,99,125,80,107,113,95,99,111,101,101,108,104,115,108,104,91,116,104,100,120,102,95,102,106,105,90,79,100,100,104,96,110,99,110,100,123,105,109,111,103,103,112,101,100,102,133,117,99,99,98,100,93,91,109,99,98,104,105,103,90,104,99,107,96,102,106,100,110,97,112,109,104,111,119,101,102,101,109,108,107,127,126,95,99,94,90,113,106,94,106,91,103,112,101,97,103,115,100,101,111,105,113,116,101,104,104,100,104,108,100,102,109,103,106,98,108,104,113,91,96,97,108,98,100,104,98,110,92,110,102,93,116,104,108,98,105,95,118,109,110,94,124,109,107,113,98,99,87,97,117,99,105,100,100,117,105,91,99,100,111,118,101,105,114,105,99,97,109,102,105,106,100,108,109,111,97,108,102,104,104,91,113,111,107,112,95,103,102,101,102,101,95,102,108,98,100,97,108,98,81,112,102,113,106,96,104,94,96,114,95,98,104,122,97,105,100,100,100,95,99,92,101,94,100,101,93,88,112,103,101,101,98,97,94,89,100,108,105,102,98,111,115,112,94,103,122,93,110,108,102,98,106,104,111,103,101,105,115,107,109,95,97,107,110,103,109,112,100,107,110,109,96,105,105,91,101,108,102,101,96,93,101,109,107,114,102,110,91,96,108,103,100,99,121,105,100,104,98,109,99,113,93,105,103,98,91,110,100,107,100,110,85,96,121,90,100,88,113,109,106,95,99,107,99,106,114,78,96,90,102,104,101,94,107,108,110,97,102,113,109,97,117,114,103,112,106,109,100,91,106,101,100,108,98,92,96,107,98,113,115,104,96,116,110,110,107,102,105,107,97,114,121,92,100,108,101,112,102,110,110,110,105,105,103,102,103,107,104,106,91,89,104,108,108,98,109,109,108,90,109,111,104,96,106,105,120,112,106,95,108,98,104,104,103,111,110,107,89,108,102,104,96,113,102,102,105,77,93,94,98,106,113,99,100,102,103,95,107,105,93,101,93,92,112,108,102,108,94,106,104,109,101,109,121,100,99,101,103,106,108,108,95,103,114,100,94,108,107,95,107,108,104,103,108,98,108,103,110,108,107,102,92,116,99,104,95,112,102,107,99,109,99,96,108,90,114,102,105,100,92,114,90,110,92,92,102,107,100,106,104,100,97,122,102,103,108,105,104,104,99,91,105,106,86,114,101,108,99,105,96,108,115,105,101,100,107,88,99,102,103,100,104,104,102,104,106,105,107,104,105,95,98,107,112,88,122,98,99,113,91,105,108,100,107,111,109,105,102,98,117,106,111,99,94,105,108,105,97,105,110,106,108,100,91,105,103,98,105,101,100,105,104,110,109,101,94,96,109,110,100,107,104,100,114,114,102,108,98,108,106,98,96,112,122,112,105,124,114,103,120,107,124,120,102,144,128,131,129,155,172,172,126,188,183,169,137,169,174,154,166,148,120,126,143,119,113,120,110,106,103,113,121,100,105,102,112,117,109,103,128,111,109,112,109,109,109,92,92,109,110,105,88,106,107,99,113,114,112,118,111,101,100,105,97,107,108,98,113,99,92,108,106,94,115,100,110,110,115,122,130,98,106,118,118,97,101,100,96,106,107,109,112,117,108,92,104,104,105,103,110,91,106,104,95,117,97,106,92,85,92,104,119,99,98,108,111,117,105,106,105,114,109,127,98,110,101,109,115,107,97,119,104,109,105,105,98,95,94,105,114,97,111,102,103,105,93,121,118,109,102,92,95,103,113,108,111,100,105,109,101,89,108,109,102,109,100,105,107,115,109,102,108,107,91,110,107,104,120,100,97,97,105,106,102,98,94,99,111,99,122,100,104,91,92,96,105,112,96,100,109,107,107,98,98,79,107,95,106,107,104,105,103,106,93,104,113,107,91,105,107,104,112,95,82,113,109,116,112,101,99,106,114,120,112,108,103,106,113,106,92,106,120,115,114,104,93,73,103,101,97,107,108,106,110,113,116,103,108,106,104,81,103,102,100,102,103,110,104,123,105,98,106,115,116,112,99,101,101,113,119,91,95,106,108,92,108,106,105,119,98,103,105,113,99,101,106,98,109,112,105,104,77,113,100,99,96,101,112,113,110,107,97,103,109,121,110,109,109,96,100,113,117,102,106,112,115,104,124,103,110,111,113,125,106,116,115,100,96,113,107,102,113,104,100,92,100,110,113,110,107,108,112,116,89,117,92,117,112,95,110,107,107,105,113,95,107,106,105,103,100,104,111,87,91,98,107,112,98,100,120,100,103,101,109,98,109,106,106,113,112,99,104,98,96,110,104,113,99,101,104,108,112,116,116,105,103,90,111,108,112,100,111,120,102,116,96,102,101,106,104,114,117,109,112,109,100,109,95,111,108,104,104,112,108,107,101,84,107,111,116,98,109,111,89,102,93,106,111,104,96,114,85,111,101,110,113,96,94,99,97,110,107,104,106,103,118,115,108,103,104,108,101,89,106,107,112,108,99,111,98,116,102,98,101,111,97,97,110,103,67,100,95,94,101,98,97,90,96,112,100,116,77,103,109,95,104,100,107,105,112,85,107,118,112,102,104,102,108,106,102,98,109,112,80,100,109,108,105,95,95,92,111,109,101,119,106,113,107,96,89,108,103,106,117,103,105,111,104,106,102,98,98,105,72,100,107,98,103,102,107,112,113,98,103,100,102,107,108,91,100,102,104,90,106,102,95,104,99,108,106,107,106,111,91,86,111,103,96,118,117,118,107,109,100,106,97,113,99,110,104,110,113,115,109,106,103,117,108,111,90,118,104,108,96,102,94,109,98,105,100,102,123,96,118,100,121,108,100,108,89,106,99,97,86,103,100,109,98,116,110,115,105,120,85,98,102,98,101,95,113,101,106,97,94,103,104,99,107,109,100,91,104,113,112,113,102,99,113,110,111,97,103,102,104,91,97,98,103,102,103,92,96,109,94,104,116,107,104,107,116,106,107,104,103,106,88,117,102,125,96,106,105,104,103,93,98,97,101,101,104,102,107,109,105,95,99,110,112,108,96,113,108,104,113,106,112,99,111,104,113,98,102,108,102,74,100,112,112,100,92,91,98,109,97,111,109,104,96,106,100,79,95,113,100,112,106,107,90,112,94,104,111,99,104,113,106,105,101,105,100,100,120,96,106,112,103,101,107,100,94,107,112,113,117,100,99,96,112,106,103,97,113,113,103,104,112,101,117,94,112,98,87,107,99,111,104,112,100,107,107,91,105,112,108,102,109,112,113,109,106,100,116,116,100,109,112,99,101,116,109,113,101,106,102,101,116,103,102,107,108,108,105,95,103,108,103,104,95,112,95,88,95,104,111,106,102,95,113,107,121,105,113,102,103,91,108,100,112,104,108,111,103,108,108,96,113,106,100,118,94,98,101,99,116,99,107,107,109,105,100,100,102,105,110,109,112,107,102,97,113,104,111,100,104,105,110,111,99,105,105,72,111,102,102,94,103,100,103,110,101,110,102,108,108,101,101,103,113,71,104,103,110,101,105,101,106,101,90,95,101,102,111,101,110,101,108,108,105,97,99,92,105,113,108,99,99,110,98,93,99,115,106,96,103,102,109,110,120,107,95,111,108,112,110,91,110,117,102,125,105,96,106,104,99,111,99,92,90,101,98,123,111,107,107,100,98,98,93,114,106,102,107,127,110,96,112,106,101,117,111,106,107,103,95,115,99,107,93,85,113,101,119,96,100,106,116,123,101,99,90,117,104,99,98,108,103,98,97,119,100,109,103,102,97,113,108,106,79,99,112,94,104,102,134,98,99,104,98,102,103,102,108,95,104,111,87,104,110,102,97,84,106,95,114,105,94,103,96,108,95,105,96,102,108,105,95,107,104,110,95,94,110,98,100,106,100,98,97,109,99,108,103,105,100,107,99,105,91,106,100,105,92,106,107,90,86,106,102,98,85,105,71,126,110,97,114,105,102, +587.19598,90,99,100,108,103,107,102,110,92,99,104,111,117,105,103,87,93,107,116,109,109,95,104,108,103,107,108,83,93,120,99,97,109,104,104,102,105,114,116,101,98,95,103,104,100,113,99,99,100,110,125,94,103,96,102,110,104,101,103,85,101,93,100,103,95,113,100,110,95,129,101,107,109,116,99,110,95,113,106,102,102,103,102,100,114,106,105,101,120,109,125,105,110,98,93,88,113,97,95,108,97,114,106,105,102,94,91,103,99,93,103,89,109,87,99,104,99,104,103,99,102,114,105,120,105,107,110,116,107,106,106,115,102,106,106,90,110,106,107,98,103,103,106,105,113,102,99,115,105,98,101,110,108,94,94,95,109,113,109,98,105,120,109,100,105,105,101,105,115,110,110,96,102,92,105,112,109,93,104,106,100,107,101,106,115,106,103,90,99,108,108,95,112,96,97,108,104,99,121,110,94,108,96,90,96,90,121,105,103,99,102,121,108,115,114,98,111,104,100,109,114,117,122,109,99,114,103,99,112,107,96,96,111,120,94,117,102,103,117,109,97,110,108,110,103,92,109,109,109,100,104,109,108,80,90,102,104,99,106,106,99,100,115,108,95,109,115,110,99,97,102,103,102,110,121,107,95,110,90,116,102,123,102,102,99,101,100,105,104,96,105,109,107,107,104,117,114,110,111,117,102,107,111,108,95,100,98,113,100,105,111,101,114,114,102,114,105,106,106,106,95,101,102,108,125,103,98,100,107,104,113,91,110,98,100,104,112,102,103,105,97,95,101,104,105,104,106,128,109,97,112,109,103,104,112,105,99,107,100,103,100,100,103,110,95,98,104,109,99,102,99,104,115,106,105,102,95,110,102,108,105,108,104,97,98,102,104,113,114,106,112,94,102,104,91,112,98,104,111,107,91,106,108,89,106,103,102,110,78,106,101,107,100,122,102,108,105,100,104,95,114,110,101,108,102,95,102,100,105,110,74,121,87,111,92,92,97,112,99,84,107,101,99,103,104,111,109,102,99,118,101,104,101,118,101,110,109,106,120,103,103,94,105,105,106,112,103,106,101,104,88,113,105,107,112,88,97,116,108,95,99,108,112,103,98,91,104,108,99,95,101,107,97,115,100,103,88,125,112,103,108,111,100,94,106,97,95,104,111,112,73,112,104,100,106,87,105,107,103,99,91,110,105,103,99,113,110,102,99,116,66,108,95,105,112,106,103,105,108,121,107,98,100,104,87,101,105,95,96,104,102,106,100,101,113,99,106,100,105,97,104,96,108,112,104,108,127,111,118,99,109,107,110,105,108,103,106,112,103,105,94,98,102,99,123,109,112,116,114,101,100,103,106,103,102,101,110,103,104,101,105,121,109,96,102,109,96,106,113,109,96,105,111,103,99,109,110,95,101,106,104,109,94,102,101,115,103,107,100,122,107,105,97,106,93,104,102,107,92,98,94,117,106,105,105,104,114,100,106,103,105,115,110,132,101,106,90,109,100,104,97,116,102,113,93,104,100,98,96,109,99,105,117,102,99,99,103,109,125,110,105,109,113,108,102,113,98,101,89,116,109,102,103,122,119,109,103,105,108,105,103,97,96,94,100,99,102,104,108,101,104,109,106,90,102,108,100,109,90,96,104,102,106,101,101,105,109,95,99,110,116,109,103,92,112,113,97,103,107,103,106,90,98,114,82,111,104,111,116,122,113,98,119,109,107,99,104,103,117,107,102,102,97,98,92,117,103,100,109,102,95,97,93,107,91,112,100,94,110,114,109,103,98,114,109,90,109,109,108,94,112,116,111,98,104,98,111,64,110,107,108,109,97,104,99,116,121,89,115,107,134,119,105,101,104,94,108,104,114,110,106,112,98,115,103,105,114,116,112,109,110,105,100,105,111,110,106,110,96,107,100,117,107,105,108,93,89,109,103,104,101,111,107,104,97,108,94,92,100,117,108,101,99,80,109,108,106,95,107,126,117,111,111,109,115,97,113,99,101,104,113,105,90,112,108,99,112,94,113,100,111,106,100,107,102,109,103,112,97,107,114,110,101,132,99,95,92,108,105,108,109,103,106,96,110,118,93,108,101,105,105,102,101,101,112,98,90,103,116,108,99,111,116,96,108,90,102,99,101,87,124,108,117,103,106,104,99,105,95,101,99,118,110,109,119,104,119,105,101,116,111,108,103,103,103,110,103,107,115,113,100,107,107,107,110,124,96,100,101,98,104,121,105,114,104,123,99,86,99,101,95,104,119,112,98,112,110,104,106,106,107,103,115,122,104,94,126,121,99,113,112,95,109,103,103,114,115,106,109,101,110,114,116,96,99,115,96,106,99,107,110,114,119,112,112,110,120,134,151,143,145,177,158,191,186,164,177,188,161,167,158,173,138,166,141,104,137,127,105,115,104,121,95,107,92,99,113,100,112,104,97,113,117,101,88,117,102,100,90,90,106,102,91,74,112,111,119,112,102,100,112,100,112,102,105,109,105,113,121,110,110,102,105,117,117,110,103,106,102,102,108,116,109,99,111,102,109,106,98,106,100,98,134,102,129,107,118,98,101,102,108,118,97,100,102,95,107,113,105,96,109,93,103,112,98,106,99,102,102,112,111,101,108,109,106,108,114,108,108,108,116,104,108,110,96,106,102,108,107,121,115,104,111,108,98,105,89,103,107,108,109,106,95,107,109,107,113,100,99,116,105,109,99,99,110,108,100,105,108,96,108,109,109,100,116,108,108,112,119,102,98,120,106,103,99,108,112,102,109,105,116,106,99,104,107,101,111,106,117,100,102,99,95,104,100,93,103,108,112,106,112,98,107,99,101,119,112,102,92,101,98,103,111,90,107,102,104,116,106,108,113,109,100,121,101,115,105,107,112,83,112,110,102,120,109,96,111,113,103,125,101,106,104,105,96,113,107,105,108,103,99,111,123,111,104,107,107,98,109,113,113,103,106,114,131,99,74,109,110,109,115,110,100,105,101,108,107,112,108,103,103,105,106,109,113,100,111,108,99,113,107,106,73,103,119,109,102,103,107,112,111,111,118,101,90,104,100,116,109,101,94,117,98,111,94,99,108,103,109,99,108,119,111,122,101,101,108,112,92,106,97,110,114,115,103,103,104,106,98,112,100,99,102,95,106,106,110,112,100,100,98,106,125,95,120,107,110,103,110,110,109,127,111,95,107,97,106,102,119,130,95,107,106,112,98,114,128,112,107,111,111,112,117,104,112,109,117,95,104,106,109,108,114,116,111,100,100,116,97,102,110,108,110,105,105,115,113,109,111,105,109,98,116,109,97,105,104,104,106,109,113,104,95,101,119,108,100,99,97,102,106,108,98,107,100,103,103,125,110,107,78,116,103,115,117,111,114,112,108,100,112,108,113,108,107,112,100,108,100,109,89,120,117,103,94,102,109,115,112,104,96,94,104,98,92,107,102,108,97,104,96,111,103,125,102,93,104,103,101,66,112,103,106,92,101,102,93,110,106,96,108,98,111,97,74,99,108,120,110,94,108,101,104,113,127,108,114,116,123,111,102,100,101,106,108,109,101,105,96,99,111,99,99,99,112,115,107,95,111,100,109,107,100,114,112,103,113,96,66,103,104,108,113,108,100,107,90,101,103,119,115,108,130,115,108,106,103,103,118,103,100,102,104,111,105,99,96,107,114,111,100,110,112,105,112,108,111,101,117,111,114,109,103,106,103,79,109,105,117,97,100,105,117,97,112,108,103,98,104,103,110,99,108,96,112,98,102,121,111,106,110,113,103,106,115,105,94,92,128,105,103,98,99,104,104,104,112,104,105,94,110,99,107,104,110,107,103,113,105,113,96,105,111,110,100,107,111,96,102,101,116,108,113,102,119,106,102,107,100,106,96,105,91,95,108,94,110,101,93,104,96,109,114,106,98,108,109,105,113,118,113,107,110,101,116,129,109,105,105,101,109,107,94,117,101,105,99,107,106,98,94,121,89,112,105,106,101,102,109,107,108,112,104,105,112,99,98,105,108,104,102,106,111,112,116,106,102,103,92,104,114,88,107,121,106,104,104,108,112,102,102,98,101,94,106,109,117,96,102,103,117,92,100,111,103,105,105,108,102,95,110,103,116,101,115,109,103,116,108,99,103,104,90,115,102,99,91,103,104,125,112,113,100,104,103,112,114,109,106,103,113,103,107,110,106,102,96,107,100,108,112,114,111,102,114,101,105,103,105,119,100,101,101,100,111,102,111,109,91,111,97,99,106,106,103,117,99,97,99,93,113,95,99,109,117,99,126,99,104,91,102,103,102,108,113,109,117,98,95,98,99,85,112,119,105,113,105,109,114,99,100,105,98,106,103,105,107,107,107,99,91,116,105,104,99,109,110,106,110,101,100,101,109,95,95,113,99,104,114,108,88,93,102,105,106,106,106,110,97,109,97,105,90,91,102,94,104,95,101,106,107,108,113,114,105,88,89,113,114,95,104,99,120,106,88,99,111,104,110,110,103,107,101,101,108,106,107,115,106,104,99,101,102,109,99,111,103,109,115,101,81,101,99,107,110,115,103,111,96,129,96,109,110,103,104,108,100,108,116,120,104,100,101,115,98,109,105,91,102,102,104,107,100,100,107,113,108,94,106,98,109,109,104,101,108,92,111,122,104,105,101,100,115,102,103,115,116,106,119,107,116,91,103,102,101,120,110,117,96,110,108,107,112,107,119,98,109,101,111,101,105,101,100,100,103,110,99,107,104,105,112,103,96,108,80,101,100,105,116,111,98,105,102,104,104,100,105,90,131,95,100,116,110,108,104,105,107,105,98,110,94,100,101,102,120,112,109,120,77,99,96,95,88,110,110,96,100,104,95,91,104,99,105,102,118,106,105,100,125,108,105,113,106,76,106,97,87,100,101,122, +587.33698,99,100,96,85,109,102,102,108,92,100,101,106,108,99,87,101,101,97,103,106,121,105,88,91,102,76,90,101,115,101,98,136,101,97,98,99,97,93,97,89,108,119,106,118,103,101,79,113,103,104,96,102,127,82,97,90,96,99,116,99,103,99,110,105,113,106,89,106,107,89,97,121,102,100,107,107,105,108,97,90,91,104,94,102,100,104,109,117,94,101,111,97,93,100,87,95,97,122,99,110,108,101,103,98,103,99,94,100,97,104,102,110,106,104,105,103,94,112,103,105,114,112,99,106,109,113,110,106,102,105,99,104,102,83,104,98,102,102,103,93,97,96,97,81,108,96,100,99,108,95,108,100,115,92,97,96,112,102,108,108,94,106,103,109,99,107,98,105,104,99,106,101,112,116,97,102,119,104,102,99,100,103,98,122,101,94,100,94,101,89,111,100,111,116,95,114,111,94,109,107,103,101,95,105,107,93,95,105,99,103,107,97,108,100,119,106,100,101,102,100,109,101,107,106,86,114,108,113,106,100,107,100,99,100,113,124,97,102,98,92,104,116,98,113,88,99,104,104,102,101,96,81,92,104,105,108,98,97,93,113,96,111,99,110,108,96,106,124,109,110,100,112,99,99,112,99,116,105,112,105,96,101,104,100,126,100,120,99,106,103,109,103,100,104,103,108,107,100,104,106,105,100,97,118,97,102,114,101,100,108,107,114,93,113,98,99,112,106,105,102,104,74,119,106,102,95,110,106,110,114,111,113,110,99,113,106,73,100,102,108,93,103,95,95,108,104,107,95,105,98,108,103,109,101,117,101,108,114,105,102,107,107,103,96,100,110,105,104,101,96,97,94,108,85,104,97,106,97,100,111,101,95,102,114,104,104,99,104,99,111,109,103,114,111,110,103,100,108,104,100,112,100,96,93,108,108,104,96,98,104,82,90,94,121,107,99,100,105,113,107,104,104,96,111,99,102,109,85,101,107,121,96,101,92,116,101,95,103,109,115,117,105,101,97,98,98,95,109,97,118,91,100,102,112,109,114,93,98,109,98,99,102,105,111,103,115,102,86,114,98,108,101,107,104,105,99,95,110,116,93,102,117,104,91,92,101,113,98,102,104,102,102,110,100,100,103,108,107,104,103,109,101,100,121,97,104,100,107,95,108,99,103,97,100,100,103,110,91,114,102,104,99,109,117,110,101,108,110,99,101,101,110,96,110,80,98,94,112,106,95,107,104,98,105,93,103,124,99,104,115,101,103,107,116,93,109,104,111,88,112,104,115,102,109,101,99,97,105,111,101,101,104,91,105,107,99,98,100,103,103,113,92,99,100,108,115,95,91,97,110,102,113,111,73,77,104,101,87,106,116,96,94,101,99,111,102,95,106,110,104,101,110,113,101,107,104,99,111,109,112,103,93,108,102,100,105,104,104,98,110,71,104,93,111,95,116,106,104,119,103,110,112,103,100,98,101,104,91,116,110,106,108,113,115,105,99,109,111,111,98,105,100,108,101,99,102,106,101,106,107,117,104,113,99,113,110,101,112,108,98,104,119,109,109,98,101,76,107,106,107,94,99,108,109,108,89,104,102,103,95,102,105,98,110,111,103,109,100,105,99,112,101,114,108,101,105,98,106,85,101,96,94,105,112,88,117,110,104,104,116,110,106,98,103,101,103,109,101,110,98,105,102,101,110,79,135,107,108,99,106,110,97,120,101,99,106,99,102,85,115,87,104,98,101,101,116,96,105,94,100,111,95,107,109,98,104,105,100,114,110,103,103,104,103,94,99,101,117,105,116,109,104,108,117,118,110,99,107,109,121,102,95,103,113,109,103,95,100,100,103,101,116,113,91,100,104,110,100,101,111,104,98,109,112,104,104,97,113,99,103,103,102,106,100,102,96,101,77,121,102,94,101,94,93,103,105,76,96,97,106,108,102,116,109,100,101,99,106,112,111,102,108,110,113,93,115,98,107,113,104,105,96,94,94,101,101,113,95,104,97,112,106,104,102,76,114,104,98,135,106,116,113,104,88,115,104,115,107,105,103,72,109,105,129,110,104,103,104,102,92,112,107,113,117,94,96,105,109,110,107,102,113,94,109,112,105,84,104,102,104,108,95,109,109,102,90,105,110,112,108,98,103,100,107,99,97,99,108,106,112,106,90,112,106,102,106,109,103,100,94,88,105,118,94,102,110,111,108,103,111,107,108,105,103,102,91,97,110,99,99,99,103,102,119,114,98,110,100,95,107,106,95,104,109,107,115,98,106,103,88,97,105,95,95,105,107,100,104,104,108,97,106,108,108,109,103,108,109,117,90,116,95,105,109,106,110,119,110,103,116,107,117,137,85,121,84,120,105,134,135,147,156,163,189,184,182,161,166,156,159,165,143,161,153,129,115,116,104,133,107,109,106,109,106,109,98,100,114,108,98,101,117,111,98,104,103,109,113,101,100,95,96,107,105,103,83,91,105,110,98,101,103,117,91,105,77,86,110,102,113,104,99,113,103,108,110,119,105,121,106,108,108,99,100,104,115,102,116,103,99,110,105,95,110,120,99,101,109,105,101,103,124,106,106,98,98,92,95,100,99,98,95,94,107,91,67,102,107,95,94,107,110,105,103,101,110,99,110,103,113,109,100,100,108,107,106,101,104,112,113,99,101,108,107,104,104,104,94,108,98,109,105,94,96,96,102,107,111,106,102,99,109,111,115,102,109,91,94,100,106,105,103,121,96,97,108,96,100,106,98,112,109,104,101,104,99,109,123,104,106,114,113,101,110,113,111,117,106,104,119,95,99,107,114,105,91,104,112,105,109,111,105,102,100,108,112,106,96,100,99,105,106,112,106,104,89,99,103,115,107,100,101,105,116,110,110,104,105,101,104,105,104,118,111,102,100,110,116,84,102,108,120,113,103,95,109,106,111,104,101,110,107,103,107,119,108,124,105,108,107,107,111,105,102,87,112,102,116,102,100,108,109,113,96,108,113,112,116,100,100,101,93,99,108,105,91,105,107,102,104,94,85,102,95,112,119,102,113,118,115,107,119,112,99,118,108,120,120,106,94,104,105,103,107,89,92,113,101,103,102,98,112,110,96,115,103,92,98,124,102,102,113,137,116,106,112,92,124,133,107,98,104,100,119,101,106,112,103,105,107,113,108,110,99,110,111,98,95,110,114,119,95,101,108,96,112,131,107,98,105,101,115,97,112,91,117,104,113,110,111,95,101,100,104,113,116,113,72,103,93,105,104,103,102,102,101,102,111,105,106,107,98,110,94,107,111,95,117,109,122,98,100,85,106,109,106,110,107,101,113,99,98,98,114,106,104,107,110,116,91,105,99,97,104,108,99,112,98,117,98,99,102,98,100,115,77,105,99,117,104,102,108,110,112,94,108,104,108,99,107,113,104,113,104,116,99,106,98,98,110,106,105,103,109,111,98,111,108,108,93,109,110,106,102,102,100,100,111,109,104,104,99,96,105,96,103,105,104,120,100,97,105,105,104,120,118,109,107,101,102,107,104,113,101,116,99,111,109,107,113,70,102,106,107,104,91,102,113,94,110,121,120,105,109,112,110,108,97,94,92,83,105,115,114,95,113,111,106,108,112,98,99,99,121,113,99,103,108,107,114,82,99,131,109,102,105,102,102,100,120,110,107,115,105,104,99,73,107,99,96,108,101,104,102,100,105,99,104,117,94,96,105,99,107,105,98,105,98,95,100,110,111,100,106,108,108,104,105,102,116,98,105,87,111,98,106,81,104,103,106,117,99,98,118,99,97,100,94,107,110,109,110,104,109,102,99,106,104,104,105,115,100,121,110,111,129,104,119,107,103,113,107,114,106,95,108,118,107,111,119,94,104,106,115,104,105,104,110,102,111,96,98,103,95,107,103,106,96,95,105,107,108,111,124,103,110,110,108,112,100,83,95,106,107,111,114,107,98,102,110,92,118,91,111,91,105,117,82,98,105,106,116,100,104,110,100,105,103,101,117,108,113,96,113,106,102,96,106,101,95,110,109,107,103,117,96,104,99,106,106,109,109,94,104,89,96,126,100,115,106,117,108,113,109,102,115,98,110,113,108,116,107,79,101,109,113,110,113,109,108,101,94,106,114,104,98,111,96,115,113,109,102,114,109,103,107,104,113,107,109,107,102,99,103,102,109,108,97,100,106,106,107,108,103,111,104,98,108,106,104,107,107,104,100,100,96,91,108,112,123,114,86,113,109,112,102,111,113,111,98,102,109,108,106,100,91,97,105,103,115,113,104,100,102,104,114,111,101,96,111,107,109,114,107,110,100,91,104,106,102,111,101,117,103,104,90,109,95,111,107,121,101,115,100,106,97,105,103,100,106,110,104,112,110,97,113,106,77,109,99,113,114,121,111,114,102,101,116,108,87,99,93,100,102,92,111,117,105,111,109,103,106,106,96,107,95,97,112,93,109,105,114,104,99,106,102,99,105,100,106,107,107,107,104,107,100,95,95,98,99,106,107,101,101,91,100,111,105,87,97,93,103,105,115,98,95,101,99,98,106,99,104,103,108,102,96,116,102,96,108,88,102,113,113,103,112,105,109,98,105,101,101,103,110,112,104,109,107,108,103,119,96,87,105,108,99,106,108,100,101,82,106,103,120,114,102,119,110,116,106,108,97,106,112,89,94,103,104,99,108,103,100,106,95,94,95,100,100,87,105,96,102,107,109,104,95,113,105,101,83,113,98,101,124,93,88,109,96,108,106,109,100,109,103,102,105,107,99,107,94,108,106,104,107,104,102,102,106,98,92,112,103,113,103,103,97,101,103,113,103,119,99,100,106,110,92,115,107,122,105,113,113,99,117,99,98,87,92,127,106,103,102,108,87,102,92,98,102,106,87,104,93,106,104,105,95,120,109,102,100, +587.47797,106,98,103,104,107,109,100,96,82,106,105,106,107,105,101,102,91,112,97,106,107,96,100,110,102,100,92,78,100,102,106,93,100,90,103,112,98,91,99,102,96,104,117,108,112,103,90,122,97,115,94,97,110,102,114,94,106,105,103,92,102,109,106,87,93,117,90,123,104,118,108,103,98,109,106,106,108,104,103,86,107,101,112,106,117,90,96,111,116,130,90,109,103,116,100,103,99,106,98,103,110,82,99,105,112,105,101,109,111,105,95,112,100,103,98,110,102,103,103,102,104,118,110,98,103,108,103,93,106,100,111,111,110,134,109,94,114,112,96,92,118,112,100,112,103,105,109,95,92,107,97,107,107,109,101,101,95,97,91,117,111,104,111,102,101,114,95,83,103,105,106,99,109,98,111,97,103,99,105,106,106,107,110,101,96,89,97,115,105,109,120,100,113,101,109,102,82,104,102,99,99,113,98,98,105,108,96,96,108,115,105,112,113,95,97,132,99,109,101,110,103,94,99,107,103,111,109,107,99,98,113,99,103,107,104,101,103,120,98,90,114,109,122,106,103,105,114,102,114,103,105,107,100,109,110,104,101,113,97,111,99,101,105,106,117,116,95,107,104,117,113,105,122,101,103,101,87,104,98,105,97,114,106,100,109,113,87,103,98,110,105,90,116,109,105,105,95,102,91,104,95,109,103,116,97,116,116,103,104,97,99,124,106,97,110,105,107,101,95,106,103,97,108,102,97,106,103,100,100,104,109,109,98,121,99,107,106,95,95,126,104,106,99,99,110,94,107,120,101,100,104,109,104,104,100,99,106,105,109,110,117,104,103,90,103,110,101,122,100,106,104,104,104,97,126,90,97,105,106,101,99,99,107,104,98,96,95,104,107,97,105,96,104,109,108,109,109,105,111,113,101,111,106,97,113,109,91,112,106,100,87,104,95,106,105,105,94,98,98,111,103,110,101,92,104,97,105,91,106,115,113,109,100,105,103,104,105,116,111,90,115,107,104,90,107,105,99,95,112,124,94,105,106,116,110,102,100,105,106,97,99,103,122,114,99,108,104,100,101,81,91,103,106,108,97,110,101,102,103,103,98,108,107,99,98,100,113,111,102,92,126,116,110,94,92,91,106,99,108,109,99,109,96,108,109,99,98,101,97,106,87,103,102,99,111,106,102,101,110,93,85,118,108,108,105,94,110,102,116,104,107,96,100,117,109,97,123,103,97,107,109,115,104,104,107,104,107,105,111,114,118,103,117,104,104,111,111,91,110,99,113,108,109,108,104,114,111,98,110,96,94,108,101,81,95,97,103,104,107,107,107,96,107,101,99,87,101,104,108,101,109,99,102,100,100,103,102,94,116,94,98,104,99,107,100,99,119,100,113,100,122,110,109,94,100,110,111,108,103,98,104,115,116,102,105,108,100,103,110,105,94,93,108,96,114,103,95,113,106,98,90,121,111,99,106,95,111,111,99,130,97,96,105,104,113,115,101,116,111,89,109,94,105,106,98,109,99,98,122,93,109,105,108,76,94,118,98,101,107,113,115,105,112,99,100,98,108,108,102,103,110,116,105,108,99,102,94,113,96,105,107,103,108,104,109,123,112,112,98,105,97,105,125,102,105,95,101,102,110,99,111,95,109,109,83,97,112,99,105,127,118,117,107,90,100,112,104,107,115,104,113,110,95,98,109,112,105,102,116,100,108,99,95,98,118,110,101,102,103,113,109,106,95,111,105,106,103,101,104,104,104,115,109,88,109,104,108,113,105,104,112,114,108,95,100,115,104,113,95,103,107,79,104,108,106,99,98,106,116,102,103,97,105,78,103,102,109,111,102,100,117,111,102,109,129,109,107,117,102,111,120,98,110,109,81,104,111,85,109,97,111,105,101,122,103,107,107,109,113,101,124,109,104,99,103,105,95,98,113,108,106,110,96,116,102,98,106,108,101,105,80,112,108,100,109,95,85,106,99,103,108,112,100,93,109,102,109,101,105,99,98,96,88,104,105,96,107,111,93,98,116,104,96,112,118,111,110,113,111,109,94,99,105,102,104,102,105,97,84,112,98,101,97,95,116,94,100,106,102,105,112,123,97,109,107,100,112,101,112,105,102,105,92,100,107,104,99,111,102,103,101,112,114,108,105,101,105,105,111,120,95,103,110,100,104,123,101,100,115,114,108,108,110,97,109,102,112,122,107,108,76,102,107,108,108,105,110,104,97,104,97,101,103,107,98,116,102,112,94,103,107,110,96,100,110,109,101,106,102,108,98,118,91,106,117,106,110,95,104,113,87,116,109,107,94,106,97,100,102,98,99,107,111,100,106,122,105,117,116,102,114,107,118,121,121,95,114,118,123,154,152,171,166,136,183,149,176,165,175,148,154,158,147,161,136,131,116,119,121,113,108,98,113,113,109,100,109,118,95,104,93,100,102,99,103,99,110,99,101,84,119,116,107,110,105,115,104,112,106,90,97,100,112,108,98,112,120,104,108,110,99,105,116,108,106,121,107,104,90,106,99,96,105,103,112,111,93,110,99,107,106,113,101,102,109,105,95,112,104,118,112,101,108,112,114,101,100,96,111,100,97,106,98,117,96,112,102,109,108,114,111,125,87,111,99,93,109,101,109,105,111,90,110,115,106,110,109,122,114,110,103,97,107,111,113,124,103,91,107,102,102,106,94,112,106,112,99,104,98,108,101,108,110,105,99,109,100,101,99,105,108,108,114,100,116,112,112,106,105,100,108,105,116,94,109,103,97,112,105,110,103,111,98,92,109,104,108,104,108,119,94,107,103,112,106,105,108,114,109,103,113,98,111,98,105,104,102,108,112,107,111,104,106,118,102,108,103,105,98,124,89,96,102,106,102,111,105,108,95,108,116,108,105,106,116,113,101,110,103,99,97,84,102,99,103,100,100,108,108,101,85,122,102,111,103,122,110,99,100,102,105,106,106,113,97,105,102,112,104,102,110,107,105,110,108,113,115,110,118,104,106,84,105,101,108,103,102,113,100,76,111,103,103,109,103,99,117,105,97,102,105,103,108,103,106,94,106,104,107,108,105,101,103,113,104,109,100,114,94,99,87,105,105,110,112,102,115,106,108,99,100,101,104,101,103,109,95,114,92,109,102,96,110,106,97,106,106,107,102,100,93,102,113,102,111,113,95,109,113,116,106,100,109,107,104,103,114,95,124,95,108,106,104,102,116,112,105,87,98,112,96,103,94,109,91,103,105,102,109,102,99,103,113,110,97,116,95,109,98,109,89,97,109,116,104,103,99,103,112,98,103,98,117,106,112,104,113,108,110,100,112,110,102,101,104,113,96,88,96,92,95,103,102,109,103,111,103,93,109,93,92,110,110,100,104,103,96,105,98,106,95,113,106,96,102,107,105,113,107,113,95,105,111,99,108,107,104,100,98,111,104,99,98,102,109,87,107,113,105,121,109,99,109,108,106,101,102,106,106,104,101,101,107,97,104,103,120,97,116,98,108,110,99,107,117,101,101,99,106,98,101,108,98,93,95,115,121,109,100,103,104,107,102,99,109,92,100,104,111,95,94,102,113,109,110,104,97,96,106,93,83,100,106,108,104,84,103,106,99,104,79,111,109,121,108,98,100,103,105,114,88,95,110,114,103,117,99,113,113,109,107,101,100,105,102,121,102,116,107,103,107,116,112,118,94,110,106,94,113,100,107,98,99,102,98,103,102,114,103,118,97,112,112,100,99,105,105,103,113,112,104,90,105,92,91,109,121,100,102,95,113,109,95,106,113,103,101,98,107,107,96,110,109,104,92,96,106,104,112,122,119,105,98,108,110,115,117,95,102,107,107,111,107,104,101,106,107,115,106,117,99,99,111,96,100,111,101,103,107,86,109,112,108,96,102,107,102,97,113,95,88,103,87,108,110,106,101,76,91,95,105,102,117,100,105,109,113,107,120,110,109,117,99,98,103,88,103,99,104,105,95,100,99,107,98,109,113,93,98,107,103,97,97,96,105,107,103,95,103,100,105,112,106,103,91,115,121,117,109,110,112,105,91,111,122,94,105,102,106,111,116,102,97,109,110,102,100,107,110,102,101,99,79,101,99,107,96,110,93,110,104,96,106,101,109,116,113,104,111,101,109,104,84,98,80,93,106,113,101,101,114,97,88,88,108,104,114,107,84,92,106,113,127,110,117,115,95,103,97,97,121,106,101,99,91,104,109,80,98,104,109,106,108,105,98,96,108,94,112,87,113,104,100,113,116,101,102,91,98,106,109,106,112,107,115,104,99,84,99,106,90,103,105,108,107,92,104,113,111,107,100,105,98,96,99,103,103,105,106,99,108,99,108,107,95,102,103,98,102,113,104,113,103,96,96,113,109,105,106,104,98,103,106,107,105,115,108,104,100,102,98,88,101,105,94,101,105,102,96,89,113,106,102,99,92,101,106,103,91,118,95,106,109,102,109,97,94,105,95,108,102,101,101,110,102,108,113,98,105,117,109,94,95,112,117,110,102,100,72,93,86,111,95,110,106,103,110,105,103,109,105,96,98,104,93,105,99,111,92,95,105,93,118,94,98,97,98,95,90,96,87,104,103,97,108,97,104,113,104,111,95,122,114,102,102,109,101,101,111,112,100,104,107,121,111,117,112,115,104,111,111,95,106,107,95,110,111,104,113,99,106,96,124,102,117,105,107,113,103,98,112,98,113,108,112,83,105,77,94,95,107,112,102,77,112,104,105,112,111,102,116,104,106,99,101,95,108,117,73,92,107,108,121,104,101,116,113,92,105,98,115,95,113,89,109,105,100,93,99,100,116,96,112,98,108,110,111,94,96,99,107,109,119,96,99,110,85,120,104,93,102,108,117,105,108,98,83,108,98,102,116,118,106,110,94,111,109,109,94,109, +587.61896,96,83,98,105,95,99,126,75,91,105,99,90,91,104,108,100,95,112,109,102,113,109,99,76,106,101,90,105,108,112,102,118,97,104,113,107,113,95,111,108,101,92,105,106,108,112,96,104,112,106,90,111,99,82,104,102,99,81,106,111,95,117,110,91,96,125,96,115,107,99,112,113,102,122,102,135,96,109,103,110,111,102,114,106,98,101,92,109,98,87,101,111,99,113,95,113,91,90,104,101,97,104,108,117,107,108,95,102,95,102,105,134,114,90,108,88,102,98,105,112,106,109,104,102,108,108,106,97,114,121,117,94,102,105,95,98,114,106,99,100,101,117,89,104,98,110,110,88,101,100,114,103,100,98,107,98,107,107,90,98,110,114,113,113,113,100,105,97,110,104,102,116,94,105,99,101,107,98,99,104,93,96,114,103,104,107,102,109,117,103,111,111,117,98,97,102,111,106,105,109,108,112,112,113,96,64,95,105,111,108,100,104,103,111,108,102,102,111,113,95,121,120,97,105,101,105,114,112,103,121,112,114,107,106,112,134,99,102,94,105,101,94,110,116,110,101,105,105,114,100,118,107,114,114,104,109,99,108,100,103,78,109,104,106,103,105,101,98,101,113,94,102,100,92,106,109,111,112,95,107,102,108,113,105,99,98,99,104,113,120,108,105,115,106,108,107,108,101,109,99,132,102,119,106,115,102,114,101,97,103,102,103,97,87,106,104,94,105,107,110,110,113,112,103,99,104,113,106,106,110,109,108,102,108,103,93,103,106,93,111,104,104,100,108,99,103,103,108,103,98,105,105,96,109,113,99,109,105,104,114,105,96,93,89,101,98,96,115,101,109,88,118,111,108,106,89,113,112,103,104,80,105,106,98,91,107,101,105,104,93,103,99,106,100,98,93,110,95,111,98,111,110,111,108,94,94,106,109,110,103,101,102,103,109,97,101,90,101,104,104,106,107,70,109,88,103,104,95,100,100,99,102,100,103,98,116,108,120,107,105,108,96,105,105,119,103,120,95,96,109,103,102,114,101,113,106,117,109,108,99,108,113,105,112,113,93,113,110,97,99,94,104,107,107,104,96,105,94,114,96,114,104,114,109,109,88,112,109,102,105,98,118,110,109,115,101,109,108,109,109,109,96,103,108,96,110,109,93,112,109,104,104,108,110,106,112,110,113,109,99,94,107,112,101,101,105,119,110,99,109,88,102,113,109,102,99,101,111,99,109,109,114,98,105,99,103,106,113,118,96,100,112,117,103,111,105,122,97,111,98,105,99,111,112,101,95,107,105,111,116,96,95,104,104,112,108,99,103,96,108,108,107,112,94,114,101,104,109,100,103,91,103,101,100,113,98,104,107,102,105,97,110,109,112,108,107,109,98,101,107,96,102,108,100,119,111,96,91,96,103,107,104,97,94,110,100,101,103,110,129,95,110,117,96,100,99,101,110,103,100,114,98,97,110,90,107,114,101,122,111,103,103,100,109,115,120,103,115,105,114,108,105,101,97,112,107,109,101,102,104,112,98,105,95,97,114,104,102,106,101,114,117,101,103,102,105,93,100,94,109,110,111,86,113,134,104,101,109,99,93,85,103,106,86,124,108,101,105,85,108,110,95,114,103,96,100,111,98,100,103,114,103,99,106,102,104,98,94,101,110,111,103,101,107,105,77,108,107,109,102,104,98,108,98,101,104,117,109,100,114,90,79,106,101,112,110,97,102,84,103,105,114,109,108,92,115,86,107,110,105,107,108,101,93,115,107,104,106,103,102,115,95,107,113,106,93,97,103,79,122,107,109,115,120,110,107,93,111,112,97,103,100,104,104,100,88,105,110,101,112,108,114,100,100,122,126,106,110,104,109,109,98,97,106,107,113,100,107,132,105,116,111,99,111,91,114,100,95,99,99,110,116,114,108,112,111,106,97,112,102,109,102,113,96,105,100,128,106,110,100,107,107,98,103,103,101,105,112,112,114,113,103,103,117,100,100,104,112,90,108,113,114,93,101,106,101,98,109,104,110,105,108,99,93,107,98,101,108,91,124,105,108,101,105,98,107,100,62,105,105,109,112,104,107,106,105,97,108,110,121,98,96,83,99,103,109,101,98,106,113,105,108,113,120,101,102,91,101,99,110,107,104,103,109,109,107,104,106,105,109,97,103,101,98,106,95,116,99,122,106,113,117,98,105,103,94,99,99,101,120,116,103,107,112,110,105,100,106,92,111,113,109,99,96,98,114,102,107,108,96,113,99,97,113,108,113,105,106,99,113,108,109,112,100,116,112,101,117,103,106,95,114,94,94,109,120,102,108,104,102,119,109,103,96,98,106,116,106,111,119,123,103,128,115,117,129,119,124,117,128,173,171,177,180,166,183,149,174,164,144,157,169,157,134,144,120,125,114,105,133,117,110,96,101,120,110,102,118,110,102,115,112,104,99,111,109,108,108,101,101,100,108,100,111,111,107,112,101,118,98,93,104,91,107,97,103,116,106,110,129,94,96,120,93,115,117,102,100,102,98,90,99,101,113,113,106,91,103,100,112,102,97,92,107,110,131,103,112,111,118,105,116,110,99,105,105,94,115,98,80,110,99,79,104,107,108,99,112,110,98,96,113,112,104,100,110,104,99,100,109,113,102,109,99,97,103,120,110,104,112,105,108,110,116,90,98,113,106,103,98,107,104,101,99,106,102,107,109,110,110,105,93,109,102,105,101,111,103,98,101,105,101,99,105,112,122,106,101,101,110,111,114,113,101,106,101,100,121,109,99,99,108,107,106,77,109,106,110,109,101,85,107,100,110,123,111,107,91,113,113,105,111,128,110,95,130,113,113,106,108,101,110,106,106,113,96,112,100,109,116,103,112,105,119,118,106,106,103,88,106,117,109,104,108,98,102,110,99,105,101,114,87,108,100,97,112,95,105,109,108,107,96,108,100,109,110,108,104,111,115,100,100,100,117,118,103,109,81,111,98,99,109,104,110,103,106,106,103,113,91,116,107,103,102,100,100,104,104,98,106,120,110,90,107,106,106,103,109,103,108,101,98,127,88,108,110,123,100,107,99,102,108,93,108,92,87,105,99,93,91,95,111,107,99,105,92,113,110,100,110,109,104,102,112,107,95,106,99,133,116,101,95,105,117,99,98,100,108,101,104,101,95,96,107,109,101,106,88,106,106,101,99,99,99,113,103,113,101,98,92,103,94,108,103,99,97,98,100,98,109,115,103,102,103,112,95,105,85,108,107,121,114,92,98,102,108,103,106,82,110,113,99,107,90,106,105,106,120,107,103,105,91,103,111,105,94,107,109,103,101,111,102,97,95,111,106,96,96,111,112,100,100,108,98,106,103,88,103,105,98,96,91,99,113,105,95,100,101,101,113,103,102,94,106,102,103,102,110,103,100,100,72,113,83,103,108,118,98,106,99,109,100,103,108,105,110,113,110,115,95,109,115,103,94,98,113,110,101,104,102,110,89,110,107,105,108,101,110,111,97,108,112,97,104,99,100,96,105,108,94,108,107,113,112,111,109,113,109,104,108,96,102,106,104,106,127,98,104,102,104,102,104,101,113,104,111,111,111,102,109,102,105,109,106,99,117,111,86,103,106,106,130,93,105,101,107,101,110,101,95,117,120,115,112,102,104,107,107,102,87,99,104,108,107,91,96,101,109,112,114,106,107,111,98,87,88,103,99,106,105,97,112,112,108,97,99,96,110,101,117,110,105,109,107,110,102,114,97,110,100,117,116,104,62,103,106,102,110,108,106,97,107,103,104,100,107,106,101,104,99,105,106,106,105,110,103,102,121,99,93,102,102,109,106,101,114,107,98,112,112,98,92,88,106,104,106,106,115,112,102,95,102,98,117,95,105,111,119,103,113,101,95,105,103,108,115,110,106,107,112,108,102,106,107,97,99,99,102,108,94,81,112,109,104,109,103,116,105,106,107,101,116,103,104,137,104,101,100,102,104,100,103,109,114,121,91,101,103,100,113,107,108,98,121,99,106,102,113,104,103,115,100,96,97,102,109,109,104,111,126,104,101,105,102,111,106,96,105,117,114,104,106,105,113,106,112,94,103,97,100,108,112,107,111,104,104,98,106,104,84,104,110,106,103,98,114,97,113,116,100,113,95,95,105,101,105,107,105,109,113,109,94,112,105,102,105,99,91,102,111,111,112,118,116,104,99,113,117,121,67,100,101,98,79,98,98,100,102,104,129,87,100,105,109,110,106,105,109,71,105,102,104,110,107,102,100,96,100,109,97,105,109,109,103,101,96,108,104,102,104,101,113,99,113,103,99,83,91,103,106,108,107,113,108,100,109,105,104,104,104,105,103,106,95,110,110,124,103,99,106,102,98,106,118,103,101,107,107,90,99,94,103,112,108,99,107,105,107,106,95,93,100,113,120,105,101,109,104,96,92,111,98,98,98,100,103,92,103,115,111,96,106,126,100,98,97,112,113,106,107,96,108,109,103,104,109,107,108,113,107,98,109,88,108,103,105,109,93,103,108,118,100,116,101,95,96,99,111,105,113,107,102,97,99,98,94,99,95,106,99,105,106,139,101,97,115,100,105,98,116,108,93,101,110,108,107,116,105,88,112,105,109,95,111,98,127,106,113,114,92,132,106,116,99,104,109,109,104,100,94,114,96,107,106,102,128,100,101,108,98,104,110,115,108,105,100,110,106,92,88,101,110,96,104,95,108,116,100,104,92,101,97,108,119,100,108,109,102,114,106,108,102,97,101,106,104,117,116,101,101,106,125,102,104,90,102,117,92,110,117,95,100,105,97,108,84,84,101,109,90,109,101,97,103,88,98,93,85,101,104,104,90,88,132,100,105,98,94,110,114,113,106,102,84,103,94,103,113,84,88,92,99,113,114,100,111,103,108,106,103, +587.75995,113,113,106,99,102,101,100,96,106,104,105,107,107,103,104,106,95,106,101,110,116,97,95,105,119,133,115,98,99,98,121,84,109,117,112,94,105,95,105,114,112,104,118,114,111,108,94,109,91,106,112,109,114,97,108,89,107,99,104,96,104,97,94,98,102,101,101,109,100,110,103,91,95,103,99,112,101,104,98,109,82,104,107,104,104,102,102,103,108,96,107,109,104,103,109,94,108,102,107,103,105,110,106,108,99,102,100,107,102,124,103,96,100,98,107,99,91,120,114,110,97,105,121,110,103,118,102,98,114,93,133,99,106,114,106,95,106,103,94,104,98,105,108,93,102,107,105,106,109,98,92,110,107,97,112,101,98,112,102,95,115,111,112,103,104,108,107,94,106,99,104,115,105,96,109,104,102,104,113,106,102,107,102,100,106,112,103,103,94,106,97,102,94,88,115,98,103,113,98,111,107,114,100,128,101,113,105,105,95,114,91,105,109,101,111,109,86,101,111,99,109,113,100,102,98,98,102,105,103,101,111,118,103,104,94,113,75,113,112,102,95,91,119,100,92,100,102,99,120,110,97,93,104,108,107,95,100,103,103,122,95,110,110,101,87,97,111,109,111,101,112,106,98,94,103,104,98,110,115,92,121,107,103,83,104,106,100,103,106,104,97,94,112,99,102,98,104,109,122,110,106,109,108,113,99,115,104,106,113,106,98,113,102,107,107,109,114,108,122,113,95,102,100,98,106,102,95,91,103,119,104,107,121,101,108,108,102,107,104,112,111,106,117,102,104,113,105,103,108,99,96,79,103,110,107,110,107,114,99,102,105,100,96,99,102,96,98,103,102,106,119,110,116,94,95,103,110,103,99,120,95,124,106,99,108,97,102,107,102,102,98,105,107,93,85,101,109,110,109,112,101,110,98,105,108,106,98,99,111,102,100,96,110,113,107,99,102,99,110,103,112,104,110,80,105,99,95,98,106,117,95,105,95,117,94,104,96,106,101,99,120,112,113,103,95,107,100,95,108,102,95,119,91,113,100,103,96,117,107,111,104,112,105,111,115,87,98,92,101,104,95,100,102,91,98,100,99,106,104,114,99,103,116,106,99,111,111,105,115,97,106,110,103,106,100,102,103,99,113,103,107,100,111,108,93,103,103,108,102,95,103,97,120,96,91,105,102,105,98,96,107,105,105,110,109,108,100,107,108,101,107,104,100,106,111,102,109,103,104,101,96,124,98,98,130,96,105,110,112,101,111,106,114,97,113,103,110,112,88,113,106,101,99,102,104,91,108,107,98,74,105,90,95,105,116,94,96,82,111,117,106,69,111,105,97,100,111,114,109,106,98,112,103,106,118,108,116,107,104,97,103,104,94,97,99,101,94,96,113,87,104,93,119,97,104,110,112,100,105,104,97,101,105,103,108,95,112,74,106,104,91,111,104,96,101,102,112,102,113,102,107,120,115,90,102,107,100,104,90,110,110,115,106,102,102,112,107,101,114,104,99,98,98,108,110,106,113,101,104,117,111,91,108,95,97,103,113,107,97,110,103,112,103,95,98,106,93,108,108,98,101,111,109,102,99,110,107,110,111,98,99,83,101,111,100,116,101,102,104,105,106,104,104,106,97,95,99,108,101,105,103,93,103,109,113,96,102,110,102,120,116,106,89,98,90,110,103,100,104,104,111,102,103,112,118,100,104,102,105,101,104,104,96,102,106,114,109,110,102,122,89,106,105,96,112,107,113,109,108,109,93,106,112,112,96,107,104,106,98,92,110,100,103,102,96,109,107,114,116,100,101,114,103,86,106,108,97,98,101,106,95,121,100,113,110,95,115,112,99,109,112,96,108,107,118,78,108,105,107,106,99,91,105,109,117,112,105,103,100,105,114,95,114,103,90,100,96,107,104,98,109,103,109,96,105,99,90,103,116,102,113,92,101,103,96,110,105,98,106,94,95,98,105,106,108,104,100,108,101,105,99,107,105,97,99,101,106,98,102,101,109,109,105,104,94,102,118,102,101,96,106,115,105,110,105,103,111,107,112,111,100,104,106,112,107,100,98,93,110,93,105,111,103,106,113,124,91,97,117,105,95,99,111,104,108,107,98,93,95,103,102,103,102,96,113,103,103,100,116,109,125,102,112,102,109,102,120,110,107,109,99,99,109,112,101,94,114,107,125,110,101,108,114,101,112,101,92,102,111,105,113,104,108,109,101,104,111,82,88,107,102,99,108,93,90,103,111,135,105,114,92,98,104,96,104,111,99,106,103,112,103,99,109,115,109,104,110,98,112,103,92,98,102,110,115,95,92,111,106,106,115,106,113,88,107,103,102,105,99,106,117,112,111,103,111,120,120,159,148,136,170,155,159,195,184,150,177,158,159,137,141,172,146,167,125,127,119,120,104,117,108,110,111,101,107,109,103,94,108,118,132,111,102,112,114,98,90,106,90,114,96,100,100,113,95,106,99,87,120,94,109,100,104,99,104,87,110,104,108,100,96,99,117,100,112,105,88,102,109,98,103,107,106,109,106,93,100,108,110,111,100,108,97,103,95,112,104,91,105,107,110,101,109,106,101,91,104,105,106,88,115,87,105,107,97,102,105,97,107,120,92,109,107,102,111,103,107,110,100,109,116,97,104,100,106,113,102,108,104,102,104,99,115,117,106,109,101,89,103,109,103,98,102,114,98,111,111,101,99,102,105,104,94,107,102,114,107,95,103,109,104,102,111,109,109,107,100,98,94,113,104,113,110,115,123,114,107,95,89,100,119,106,102,97,104,103,95,116,103,110,101,104,109,106,110,116,108,107,97,116,96,111,100,104,105,99,100,107,101,117,96,100,118,114,101,113,91,111,111,119,102,106,111,106,103,108,96,118,103,109,104,99,102,82,103,107,95,103,103,117,105,125,110,102,102,91,113,104,98,101,92,113,107,111,106,103,102,108,110,125,104,96,105,103,100,100,111,110,103,97,105,108,104,103,107,119,111,113,114,100,107,103,103,99,107,96,115,109,106,101,108,105,121,113,110,107,104,109,106,109,91,116,110,101,126,105,114,89,101,115,98,93,105,105,95,106,101,110,99,98,99,99,105,84,111,73,98,114,100,114,99,104,105,112,94,98,101,89,113,92,108,100,102,110,112,99,100,116,87,102,103,99,108,114,115,100,96,112,108,112,116,97,107,111,108,102,107,103,97,107,102,108,106,102,108,91,104,108,115,124,113,95,80,104,83,112,112,97,108,95,104,113,103,109,107,98,104,108,92,91,111,108,107,97,100,112,103,100,110,97,101,100,99,100,107,98,105,110,99,107,107,117,97,114,114,97,106,107,100,110,104,110,107,105,109,107,106,101,117,105,100,100,88,97,98,129,108,103,103,95,113,105,103,108,106,106,91,86,105,98,116,118,99,106,109,94,102,106,100,99,99,104,121,90,100,102,116,96,104,108,106,98,104,97,127,100,109,112,102,104,104,110,108,97,108,106,114,100,104,116,114,106,98,104,113,100,107,113,103,92,125,110,100,104,94,106,107,109,104,104,95,100,96,91,100,98,100,106,109,101,118,108,112,108,112,107,103,106,103,100,91,109,102,112,72,107,104,110,117,102,102,104,106,110,100,99,111,93,109,100,103,107,94,106,103,96,108,92,88,106,106,101,113,112,93,101,100,95,106,101,107,104,100,111,105,99,103,107,100,109,108,114,103,109,104,110,107,117,110,114,97,107,102,101,112,99,115,103,106,107,109,98,95,100,101,107,99,109,105,111,96,106,106,103,105,108,99,117,89,103,112,117,77,111,117,95,91,101,102,99,105,103,115,98,105,114,113,112,113,103,106,112,109,102,107,103,95,99,101,104,87,116,105,105,105,108,118,97,103,90,104,100,92,116,99,104,106,97,103,102,102,95,96,101,104,102,98,94,108,95,107,109,106,100,106,115,113,115,107,110,101,104,104,97,117,100,103,97,100,92,114,102,111,100,110,101,99,90,98,114,88,95,126,98,109,123,94,105,108,106,109,107,112,95,112,109,113,109,112,106,106,112,92,106,105,106,108,92,107,121,102,103,114,105,94,108,91,104,101,106,114,109,101,110,105,100,96,100,101,99,98,101,97,110,117,98,106,102,110,102,97,100,106,112,103,102,118,108,109,107,99,109,102,89,116,101,110,84,109,92,100,113,104,108,99,105,96,129,108,98,100,103,110,113,104,94,111,100,93,107,104,107,101,97,103,111,110,106,107,92,111,106,99,100,117,102,111,92,103,109,113,99,121,115,101,101,109,94,79,104,106,75,113,107,108,102,102,107,113,99,88,112,102,102,104,109,102,103,111,102,108,102,104,109,109,113,91,105,103,111,110,97,98,108,102,104,110,104,118,104,102,102,106,114,94,95,104,121,104,106,102,99,117,111,94,104,103,104,105,127,110,101,87,111,104,107,91,100,96,100,93,104,126,102,94,101,93,111,96,100,107,102,99,98,101,129,105,102,107,107,101,94,116,106,110,107,99,95,104,98,99,97,102,116,105,109,95,114,105,96,94,99,102,111,98,106,108,100,108,109,109,92,103,102,102,113,95,100,100,101,97,92,97,101,109,98,113,105,111,110,115,98,94,111,107,105,104,102,101,96,113,102,111,88,97,103,98,106,100,100,106,106,111,106,88,99,101,101,110,98,104,90,106,98,96,98,99,99,85,92,106,103,88,101,103,101,103,103,101,102,103,109,101,96,112,108,106,107,119,97,106,107,92,126,97,99,104,95,90,94,106,104,114,98,110,106,104,99,107,115,115,80,106,102,109,116,99,104,103,101,120,102,111,124,99,112,124,109,114,111,108,103,68,93,91,101,77,114,120,108,92,108,102,109,109,92,105,106,99,107,104,107,105,102,114,92,113,105,105,99, +587.90094,95,117,104,100,96,91,100,95,96,117,104,110,96,94,103,88,117,95,97,104,101,112,101,97,100,106,107,97,92,97,96,104,105,110,102,99,103,101,99,115,97,92,112,102,115,113,123,104,106,103,94,108,100,100,94,104,78,104,101,81,94,95,97,99,111,97,91,111,109,121,109,107,111,103,91,105,108,98,83,96,108,99,111,93,108,95,114,107,108,101,95,96,104,107,100,104,109,99,109,98,88,94,98,100,94,100,106,105,119,91,102,112,104,94,106,104,96,105,97,117,112,104,103,113,103,105,100,101,100,118,101,104,100,113,91,110,114,97,95,111,114,105,91,98,99,113,97,110,106,98,95,95,110,92,105,100,99,115,94,105,110,103,103,105,114,113,97,83,106,107,99,103,94,97,96,102,116,103,104,100,88,103,104,111,97,104,109,94,99,95,99,98,109,109,100,113,106,124,121,110,96,99,125,100,122,116,103,99,109,116,104,100,107,90,113,108,110,94,99,106,113,105,106,100,99,107,102,106,101,106,103,103,121,83,102,108,99,119,123,102,102,91,117,98,99,107,100,114,109,96,102,102,106,98,101,99,99,105,104,104,102,97,121,100,107,98,81,103,108,101,112,100,98,105,110,91,102,99,97,101,104,107,95,102,107,106,85,90,102,106,98,106,103,101,106,98,99,106,108,107,95,98,109,120,102,118,112,102,104,103,99,102,112,125,102,105,95,97,99,100,103,95,114,98,106,96,105,87,103,108,102,110,98,105,106,109,92,114,94,95,113,109,121,92,106,114,102,102,105,102,109,117,92,106,106,112,99,95,95,105,104,97,112,113,96,114,111,97,105,102,102,105,103,98,100,106,98,115,109,72,110,110,112,131,127,106,105,105,114,100,106,103,106,111,100,86,106,103,107,105,98,100,105,97,101,104,100,104,99,105,89,108,113,98,98,101,108,109,105,114,107,106,104,97,104,99,97,100,99,106,99,112,103,91,92,108,115,103,101,115,112,97,101,106,101,108,102,91,99,110,109,98,103,106,103,112,107,105,103,113,94,108,96,108,105,89,92,120,106,111,101,112,100,99,98,93,89,109,104,106,112,103,105,98,109,90,116,89,108,98,100,110,107,111,99,93,105,107,95,98,105,106,117,112,100,103,102,107,121,96,99,96,95,74,103,97,101,112,109,91,93,100,108,110,93,115,120,97,113,111,92,105,105,104,96,97,110,117,111,106,104,105,92,101,80,104,112,109,105,105,104,102,100,105,94,99,98,99,102,105,104,108,103,101,94,109,118,115,108,100,102,100,113,108,99,116,94,101,109,104,99,103,105,100,105,103,100,107,109,92,105,101,107,102,114,113,104,104,95,100,106,103,107,107,102,113,109,97,102,98,100,92,103,106,112,106,104,110,115,96,82,99,101,95,112,99,125,103,103,105,106,110,95,113,94,102,106,105,96,103,111,105,104,104,108,104,115,99,100,111,114,108,106,102,91,99,142,107,104,109,113,110,104,103,92,102,110,96,109,97,110,108,107,109,107,108,103,106,121,103,107,111,101,106,111,85,101,116,97,105,98,106,108,117,112,98,103,123,102,112,105,94,96,96,110,114,103,94,92,94,106,105,99,102,97,104,97,96,102,87,94,106,108,108,95,108,105,110,112,115,113,110,110,95,104,98,103,96,98,108,103,90,103,101,101,101,104,104,111,82,116,101,111,98,112,105,104,108,116,107,99,104,95,98,105,101,97,108,107,93,96,104,108,104,104,116,112,99,97,104,103,98,111,105,89,98,105,116,112,107,104,102,106,106,105,119,98,100,104,114,97,101,99,104,107,112,109,93,104,103,105,97,100,106,107,100,102,107,105,102,105,99,102,106,102,105,103,109,107,102,121,99,109,104,105,108,88,101,100,100,97,109,97,106,98,91,95,67,100,113,104,109,102,107,94,106,100,109,106,110,95,102,109,108,104,103,100,102,98,109,106,113,106,98,107,102,106,101,99,97,105,107,104,116,114,104,98,115,107,107,106,99,107,108,104,98,110,111,102,97,104,96,110,111,112,87,98,98,100,96,87,91,114,108,107,97,117,98,108,104,108,101,105,97,108,103,94,91,99,97,95,111,104,106,105,95,94,106,107,105,108,104,106,105,105,102,95,91,112,96,113,106,110,106,117,105,92,101,96,92,114,107,105,96,107,100,89,90,100,98,86,94,117,104,102,103,96,103,98,107,96,109,106,105,114,109,111,102,113,93,100,103,112,96,109,97,105,122,102,108,99,103,102,106,114,113,92,104,107,109,101,92,102,108,100,116,113,113,106,79,108,106,105,95,110,105,104,128,115,102,106,102,111,117,123,119,122,133,138,179,148,162,163,172,192,181,166,169,155,166,142,136,151,151,130,119,117,125,117,112,120,109,115,121,103,94,97,128,104,104,97,109,111,102,108,114,93,99,102,107,104,111,100,105,108,107,98,109,115,102,104,113,94,96,103,101,90,111,104,96,100,94,116,105,101,104,100,117,101,102,95,106,116,94,96,106,98,113,98,124,113,102,98,95,107,107,106,122,113,108,111,99,109,106,102,103,92,102,114,101,96,92,66,109,112,107,109,103,110,101,97,98,118,107,112,105,114,98,91,99,112,110,105,107,111,119,111,97,103,118,102,97,108,109,112,116,106,102,111,107,110,76,98,117,116,105,102,102,92,113,102,108,106,111,104,114,98,115,113,107,95,106,103,106,99,113,102,107,107,130,117,119,113,103,104,96,108,111,99,110,100,104,105,97,110,107,103,116,105,109,106,113,108,106,112,102,113,115,113,104,118,100,109,107,106,109,103,114,99,110,104,108,111,104,98,105,102,111,100,107,114,106,91,112,116,115,103,113,116,112,105,103,113,99,100,104,104,115,111,104,99,123,110,116,108,105,121,97,111,107,105,100,102,105,82,114,110,121,101,114,112,112,106,107,103,109,122,111,78,110,112,109,101,121,93,106,112,110,111,99,123,109,105,106,114,103,95,116,109,114,105,90,99,103,114,101,109,95,108,103,101,110,110,110,105,112,124,114,106,99,102,112,112,125,115,103,113,111,99,100,115,107,110,92,105,108,107,138,110,89,93,90,101,125,105,113,112,104,104,114,107,100,108,108,104,113,94,97,105,127,98,113,111,95,99,125,110,97,107,107,110,108,99,104,103,106,107,117,113,101,97,102,113,106,114,112,108,101,109,106,140,111,113,97,98,104,116,105,116,100,109,113,107,108,123,116,107,108,95,105,101,103,110,110,111,118,115,100,112,91,107,107,105,88,95,101,103,109,91,107,120,103,94,101,96,119,110,103,103,95,109,111,117,98,105,99,111,103,110,104,105,113,100,106,99,122,103,107,105,107,93,104,97,105,100,107,90,100,117,104,95,113,111,121,96,107,98,107,104,140,98,109,103,100,110,115,115,91,97,106,111,108,98,96,97,107,116,109,105,99,102,113,109,107,110,109,101,105,93,109,101,107,109,114,121,100,113,105,116,93,112,110,107,110,96,113,105,103,117,97,108,106,100,101,106,106,121,101,113,106,121,114,106,112,95,100,96,106,121,96,107,102,98,106,115,104,103,106,103,108,100,105,100,108,106,86,111,113,109,110,101,99,105,110,105,102,102,109,103,107,89,112,88,109,99,117,100,98,121,108,113,111,104,105,105,97,104,99,102,106,102,117,98,102,100,105,95,99,101,93,100,112,103,104,93,105,112,96,106,109,109,96,100,105,116,104,104,102,101,98,104,100,94,101,109,106,124,105,91,103,95,114,96,118,106,115,110,110,107,99,106,105,106,110,119,107,102,101,99,128,104,110,104,87,106,107,108,116,102,101,112,101,101,100,96,97,101,104,99,102,119,114,97,96,113,108,107,100,100,100,100,100,106,103,98,91,102,98,107,106,105,99,109,102,101,103,108,105,104,100,99,116,98,104,102,102,99,109,109,105,105,110,106,110,111,109,96,100,100,102,117,114,100,104,107,95,102,99,113,107,108,106,105,101,101,102,114,114,101,105,108,116,114,105,112,108,104,116,117,110,107,94,119,100,113,114,96,113,106,108,106,116,111,123,104,105,97,100,110,113,103,98,103,108,106,105,115,100,102,107,109,115,100,106,114,104,91,102,116,113,111,103,108,96,102,96,82,116,96,105,117,118,109,105,101,108,101,109,117,125,107,104,107,115,110,104,97,105,100,110,106,109,112,101,113,109,105,112,99,107,108,107,109,97,106,106,100,111,99,107,115,103,127,114,106,108,104,111,106,93,100,107,111,100,112,117,96,100,110,80,105,101,109,104,108,102,107,107,101,101,102,108,107,104,98,105,85,103,115,110,102,102,119,105,86,101,127,117,121,117,101,116,111,92,109,100,107,108,118,108,112,104,112,110,103,107,105,106,100,89,112,104,105,104,108,92,106,100,92,107,106,95,96,106,101,100,102,105,100,112,102,101,117,106,92,103,100,103,105,98,95,107,104,110,112,100,109,109,100,104,97,100,103,116,93,120,103,109,110,103,100,103,123,99,92,98,105,100,100,106,109,110,109,106,111,113,106,109,104,94,98,88,97,112,104,95,105,112,104,95,105,96,116,106,102,106,110,114,109,92,102,120,91,106,119,96,110,113,126,102,113,102,100,110,109,107,98,99,125,99,101,105,82,107,101,70,118,109,111,91,103,107,117,90,105,93,109,99,98,114,108,112,91,103,104,113,107,95,109,105,92,113,104,98,104,97,101,109,104,108,94,110,107,125,119,116,115,106,107,116,99,116,117,95,94,90,105,106,101,108,110,106,105,89,99,107,102,113,97,85,105,115,98,103,97,106,124,105,108,75,104,121,102,102,117,104,104,102,104,96,106,104,100,113,139,104,113,101,109,102, +588.04187,105,104,106,96,90,107,99,94,87,98,116,104,103,103,102,110,113,115,97,107,114,97,100,103,107,101,100,103,99,117,101,109,101,104,107,97,99,109,108,103,103,105,98,110,100,125,101,101,103,123,105,105,99,104,109,80,119,96,110,106,111,111,99,101,111,107,91,103,82,102,100,108,96,113,100,102,109,111,107,101,106,110,112,103,99,105,106,95,93,98,96,108,101,104,88,90,107,101,81,97,108,106,103,105,104,90,105,108,127,98,96,106,119,102,99,103,103,103,105,113,101,112,108,103,104,103,114,103,107,100,100,107,117,107,106,84,110,104,93,114,102,107,106,108,105,113,96,110,108,102,106,99,107,100,106,109,107,111,102,109,105,109,106,108,109,109,105,91,106,101,98,100,105,110,111,107,110,94,109,106,114,113,95,102,103,91,104,104,107,101,100,102,125,102,96,115,113,96,111,109,96,101,106,103,104,93,104,91,105,110,104,101,111,96,108,116,94,97,92,103,91,108,105,114,99,104,110,112,108,105,105,107,100,98,98,109,111,109,99,91,100,104,105,105,105,94,106,104,119,110,105,91,109,107,112,100,106,101,103,106,100,109,117,96,95,115,96,104,116,103,105,106,98,105,107,102,103,107,108,106,113,109,104,108,110,110,98,91,111,103,117,98,110,101,114,110,106,96,106,107,97,89,110,113,108,104,115,91,100,102,101,104,115,117,100,108,99,98,101,105,105,121,107,106,106,106,101,85,97,117,105,112,113,96,99,107,94,100,98,107,104,91,109,102,93,108,113,112,115,96,106,107,108,114,97,102,112,117,100,109,109,106,111,105,98,99,114,104,105,106,131,101,110,90,100,103,98,104,108,107,104,113,110,105,98,96,113,109,113,102,110,100,95,111,92,96,92,107,99,117,104,106,99,99,106,105,86,107,108,93,102,101,105,104,109,100,98,103,107,107,94,98,110,102,104,101,101,98,115,100,96,109,105,95,102,103,102,101,107,104,105,102,100,113,96,117,113,100,106,106,117,99,108,113,94,104,106,107,120,112,101,101,113,111,92,105,110,109,105,114,108,117,90,113,98,90,112,119,109,106,108,116,122,101,97,104,103,103,101,105,102,110,105,99,102,105,93,89,76,103,109,107,108,107,108,108,96,102,113,93,109,128,114,121,104,103,102,97,123,94,112,112,109,102,107,118,111,97,102,103,103,110,98,94,105,107,109,100,99,112,94,106,110,95,106,105,108,113,106,111,104,111,126,108,105,96,113,102,113,116,102,104,97,103,97,105,103,84,114,106,104,110,116,97,110,115,109,105,100,105,113,95,116,120,112,98,104,105,105,106,109,106,96,106,118,102,103,105,106,108,116,111,115,103,108,96,95,110,117,103,103,109,115,132,113,114,111,103,109,107,109,109,99,112,111,113,119,107,109,110,108,111,106,102,109,98,103,106,96,105,99,99,120,107,102,99,110,106,115,107,118,120,106,102,111,102,112,116,98,110,121,114,102,102,102,114,109,113,122,108,108,112,114,105,107,108,109,100,120,105,113,106,101,108,109,99,91,105,106,103,104,112,96,109,100,114,107,109,104,94,105,108,101,105,97,114,111,78,114,104,99,102,118,107,99,103,104,111,95,100,108,115,95,101,107,97,105,114,102,115,138,93,105,113,110,98,112,105,99,105,109,93,115,102,103,110,107,114,100,115,105,98,102,103,103,99,97,106,106,106,115,102,101,107,106,100,100,108,118,96,119,114,111,111,99,104,111,105,138,111,113,99,109,101,98,108,104,106,109,118,104,141,113,110,101,90,108,110,109,118,100,100,106,101,119,107,104,98,115,96,110,110,99,95,111,110,117,108,120,106,105,96,108,109,104,114,116,113,126,103,105,105,101,112,103,111,108,116,121,102,107,101,109,107,112,100,89,88,105,109,100,91,105,121,91,106,100,111,110,114,103,109,100,106,105,98,109,107,121,101,107,108,100,121,92,104,111,111,103,107,99,115,106,102,106,110,106,121,103,106,103,124,99,103,128,103,100,105,103,103,101,113,110,106,104,106,98,104,98,104,109,117,92,109,113,106,91,88,109,113,99,108,96,106,109,105,98,103,108,104,109,113,94,101,99,109,96,103,98,104,109,110,121,89,104,103,110,119,111,112,100,111,113,95,107,109,106,121,116,110,109,98,105,108,122,111,90,102,96,97,93,105,109,96,100,114,104,109,101,104,122,112,105,100,111,120,101,103,103,109,133,113,117,78,102,112,105,110,100,113,109,101,116,116,105,118,114,94,98,117,114,97,102,106,112,99,102,116,103,113,123,106,111,90,112,104,110,104,111,102,129,115,110,101,108,124,126,143,127,144,154,162,195,197,172,191,153,162,176,148,191,159,145,157,124,129,109,115,118,129,111,97,119,123,100,129,116,114,105,98,106,132,111,101,103,106,117,99,98,107,101,110,113,117,107,115,93,88,118,110,105,102,98,103,99,91,113,114,107,99,128,100,110,117,99,101,105,106,105,102,109,113,94,104,102,107,99,102,103,116,110,96,107,100,100,95,106,110,111,105,108,100,93,95,108,102,105,105,106,102,108,107,96,116,107,109,112,103,112,103,112,138,121,84,109,100,101,125,120,112,103,93,102,106,107,112,106,106,91,99,101,96,102,120,111,104,96,99,119,109,105,110,102,107,103,108,128,100,88,114,104,99,114,100,95,99,108,112,111,105,102,102,113,112,108,115,109,109,101,104,106,106,107,102,125,100,113,96,103,94,93,109,99,104,118,100,111,111,104,95,97,103,101,99,106,115,110,109,95,111,110,100,103,106,100,103,113,105,103,113,105,109,108,95,85,98,99,104,101,102,106,121,97,110,109,98,102,115,109,102,109,108,102,101,96,104,110,108,108,109,96,117,106,106,106,100,104,106,112,108,105,116,100,113,106,115,102,114,118,107,106,102,131,108,106,106,106,104,100,104,103,103,103,107,107,109,105,108,107,94,123,120,103,103,108,98,109,100,99,104,110,106,109,105,106,116,106,93,113,109,100,100,106,100,104,104,111,109,108,105,106,103,97,97,96,105,109,117,96,105,112,111,104,104,106,105,105,104,101,94,115,95,101,114,79,109,92,111,105,94,103,87,107,102,107,104,94,100,100,103,96,100,95,107,106,109,105,100,87,110,111,99,100,109,102,137,123,100,107,108,87,106,117,103,103,106,105,122,110,89,105,115,100,98,94,95,102,99,117,104,103,113,105,104,112,114,99,118,91,100,98,98,101,112,98,107,100,109,106,96,96,106,111,87,86,109,113,73,108,93,112,95,107,103,99,100,106,104,102,99,94,103,119,93,112,105,96,99,112,103,99,102,100,97,109,106,106,105,97,93,104,96,112,95,113,103,119,102,105,102,104,120,100,109,111,106,83,106,107,100,118,95,102,94,101,110,99,98,105,103,95,106,106,111,107,103,108,102,102,102,103,115,106,103,102,107,115,109,106,99,115,99,79,118,106,95,108,100,103,109,114,98,109,113,102,105,116,105,103,94,87,113,105,110,136,110,110,102,105,99,111,115,102,115,107,109,108,114,112,91,100,100,106,110,118,109,114,92,105,98,86,102,106,107,105,101,105,107,113,109,103,105,124,114,96,105,107,98,108,110,99,89,117,99,107,108,109,112,102,104,101,118,113,93,105,100,109,101,101,115,107,100,109,112,103,103,113,101,106,72,108,75,94,107,96,108,113,108,99,112,101,108,91,102,127,104,104,100,111,105,117,102,113,105,105,102,111,101,111,105,96,93,118,106,116,107,83,112,102,88,104,108,109,106,92,72,86,96,100,111,106,111,108,103,113,112,103,112,112,98,110,95,119,104,112,106,111,100,101,104,98,135,98,100,111,107,95,91,100,110,114,92,109,100,110,91,109,95,103,100,115,101,110,110,106,102,117,97,105,99,103,113,94,112,102,116,100,107,90,120,103,109,112,113,110,116,91,98,95,98,96,103,100,98,109,91,106,98,106,105,112,104,102,107,109,112,112,100,84,117,106,107,102,109,100,106,99,105,108,110,109,96,111,107,109,91,103,109,103,91,99,108,104,114,107,83,106,103,99,80,99,97,114,114,99,110,90,102,113,105,103,91,88,114,113,107,107,99,105,105,101,113,109,95,111,93,107,102,102,98,91,109,98,92,107,112,110,113,91,102,103,116,111,113,120,98,117,102,118,109,105,93,97,99,99,112,96,98,101,102,104,103,115,109,103,106,100,98,107,97,113,101,110,94,97,115,109,105,112,115,98,105,105,117,96,113,110,108,108,108,105,103,109,107,113,102,99,111,109,120,99,106,106,101,108,97,111,116,112,97,106,123,105,102,94,94,110,106,104,94,92,110,101,96,100,107,103,121,107,110,99,108,97,112,114,102,101,95,107,113,114,104,100,105,103,104,81,99,99,110,108,122,103,106,106,96,95,108,105,113,96,105,99,103,107,113,103,93,105,104,104,95,88,102,99,109,123,99,106,98,104,106,101,107,101,96,107,111,104,108,98,112,99,117,102,79,121,109,111,97,113,113,112,94,106,102,103,102,117,104,100,101,104,111,104,105,109,112,112,110,112,110,101,105,101,112,101,91,104,83,109,113,106,101,106,101,99,113,105,90,98,102,101,122,104,108,100,108,105,95,95,97,103,117,97,90,101,116,106,90,104,104,112,105,92,99,131,100,96,107,97,101,96,94,104,98,105,97,110,112,115,81,100,113,100,101,107,92,102,106,109,95,100,106,103,99,110,96,104,124,109,96,99,95,121,102,122,114,108,111,99,99,97,103,130,102,115,105,111,98,102,108,112,107,103,111,109,96,97,107,117,91,109,112,86,90,101,87,99,104,103,105,101,103,107,113,117,99,109,91, +588.18286,112,100,114,99,105,99,110,99,117,110,111,102,104,96,111,84,105,104,138,95,96,96,94,108,93,120,113,92,110,116,108,94,111,104,106,114,103,90,117,108,95,104,110,111,106,92,110,113,115,106,113,103,99,108,100,99,111,102,107,97,117,96,108,101,107,110,72,109,99,112,98,112,102,100,107,109,85,103,106,117,113,90,111,95,108,88,99,94,105,84,100,88,108,118,96,111,96,107,96,115,107,100,123,100,108,103,104,95,102,104,101,106,97,105,91,107,100,95,111,113,108,105,109,111,116,111,109,106,110,112,102,107,107,106,129,107,103,101,113,102,101,141,97,92,100,104,105,90,111,95,104,109,112,93,109,100,96,95,98,118,106,104,98,103,96,102,103,100,115,109,107,111,109,101,123,105,103,106,95,118,107,120,98,102,97,107,99,102,108,100,112,103,105,104,106,101,106,103,110,104,105,106,101,105,96,103,107,103,110,103,106,115,110,108,107,113,115,105,109,116,104,103,102,101,107,107,108,103,109,110,92,105,109,110,105,104,100,112,108,105,103,106,114,130,106,107,121,99,97,103,101,106,111,84,108,112,104,104,97,111,103,103,109,109,113,114,110,109,107,101,96,106,112,104,115,114,98,99,105,95,112,113,111,107,105,112,96,97,111,111,110,104,112,116,111,110,105,98,104,117,108,101,125,104,104,112,113,105,100,110,96,98,109,113,92,105,108,101,107,113,109,106,100,103,99,106,100,99,104,88,113,109,104,104,107,105,107,114,104,102,111,110,96,97,108,102,103,102,114,106,109,113,105,109,98,108,117,100,117,116,112,95,105,106,103,99,96,121,113,117,112,89,112,102,103,110,109,105,97,107,109,118,113,108,114,96,96,113,110,113,116,98,106,96,104,103,100,97,107,106,103,109,91,108,109,94,103,114,117,107,108,104,103,109,111,111,108,102,114,106,106,112,109,105,115,99,104,110,99,119,99,116,113,117,98,112,95,128,107,112,113,104,105,110,95,102,107,99,113,125,109,109,104,101,109,105,114,121,108,101,103,107,108,103,113,105,107,108,104,97,103,108,102,108,104,105,112,122,110,115,127,107,112,99,109,101,103,99,112,96,104,112,121,105,100,102,101,103,124,110,109,113,104,107,112,106,113,104,96,94,99,107,95,98,95,115,114,102,104,94,103,113,114,118,118,105,108,110,108,104,112,104,105,99,100,120,106,103,98,112,106,111,96,106,112,97,103,103,120,104,102,98,113,103,108,113,107,108,95,108,66,105,111,105,108,112,121,107,113,96,105,106,108,106,124,110,96,106,98,110,109,96,107,109,109,92,112,106,106,109,113,104,112,103,114,107,105,103,120,104,110,108,105,99,105,109,100,94,110,106,111,99,114,100,107,98,106,102,106,112,111,98,115,100,106,106,100,98,108,118,96,108,106,103,113,100,106,107,113,99,102,107,102,94,95,106,116,107,105,110,103,104,112,114,103,105,107,106,108,86,103,99,106,110,101,99,108,93,103,105,108,108,107,102,102,117,109,117,113,101,112,99,106,100,107,103,84,108,108,110,105,89,111,107,93,105,118,107,99,107,113,104,104,106,114,110,101,109,97,100,121,84,120,126,104,89,90,103,105,102,107,107,96,116,102,119,99,98,117,103,109,98,108,110,100,112,98,99,109,104,95,115,98,100,108,111,105,109,128,110,99,116,125,98,115,111,102,99,115,99,103,109,98,108,102,112,99,109,101,102,107,115,99,94,98,105,100,104,111,95,108,104,115,118,104,111,99,100,117,120,110,104,102,116,108,112,116,113,113,106,110,99,83,107,104,104,113,102,109,105,110,117,105,108,118,95,97,115,113,100,105,114,124,103,114,111,104,108,108,105,92,101,110,96,113,119,115,103,118,111,100,111,95,91,99,99,96,106,109,95,100,109,110,111,104,100,117,106,104,102,102,95,95,113,108,108,103,113,114,98,111,100,109,111,101,108,109,95,102,111,96,96,104,103,100,109,96,113,111,111,97,114,105,104,112,113,118,103,108,109,104,102,107,100,109,87,102,104,102,113,111,108,109,110,106,106,113,121,95,116,99,110,106,118,104,95,104,95,103,113,113,104,116,104,109,103,97,113,126,110,108,102,105,98,95,109,105,113,112,100,98,101,106,116,120,103,118,112,115,104,113,109,104,105,110,133,90,100,104,111,105,109,102,83,95,104,109,118,101,111,94,112,104,96,104,105,105,110,100,99,110,111,129,104,123,104,109,114,104,106,111,112,117,113,100,97,104,104,103,88,106,107,100,115,106,102,97,112,103,105,122,115,114,101,113,106,117,105,97,115,108,100,106,122,121,106,114,115,123,139,137,148,171,180,182,169,158,175,154,144,152,177,135,144,160,130,140,129,126,109,107,112,114,131,108,121,109,109,112,114,109,109,118,109,98,118,117,104,102,95,94,105,100,118,103,96,111,98,111,121,99,113,117,98,103,101,93,106,109,108,91,106,112,110,108,106,102,114,104,106,105,114,128,108,113,108,98,102,105,98,108,106,104,95,90,100,98,102,100,99,106,105,79,99,98,110,97,104,95,96,95,98,96,107,102,107,100,98,107,101,122,91,100,102,100,94,111,112,121,107,106,86,121,90,91,112,102,102,101,105,97,99,114,107,107,121,106,113,124,100,105,101,102,108,117,101,102,92,108,110,100,110,102,93,112,107,99,91,103,101,102,108,108,110,108,127,123,117,94,97,109,107,84,114,110,105,106,103,97,92,116,112,99,106,95,98,111,103,112,106,106,102,94,108,107,101,102,108,109,99,113,101,123,106,100,95,106,100,105,121,106,121,100,113,102,95,96,107,99,112,109,99,98,105,127,100,107,110,100,103,117,111,120,108,105,103,105,98,105,93,100,103,103,103,101,100,94,106,107,100,115,100,100,93,100,107,95,97,94,117,100,105,100,99,114,95,109,103,102,105,98,93,101,96,92,110,107,108,101,112,101,108,108,103,108,102,115,106,98,107,124,92,109,114,99,121,105,101,111,120,104,117,109,106,110,90,102,95,110,107,100,102,112,107,102,106,98,98,116,93,100,117,98,96,118,92,94,116,101,97,103,122,95,110,110,116,103,112,102,103,100,98,111,110,86,114,102,94,119,99,109,100,118,114,105,100,103,88,111,107,104,93,108,116,108,120,109,107,109,111,107,103,96,84,108,101,106,87,105,104,114,90,103,108,117,99,107,143,109,100,107,96,113,109,110,109,99,114,99,99,106,108,95,104,105,108,78,99,107,103,92,105,99,98,102,94,101,125,104,104,96,100,96,110,106,111,111,92,114,109,96,105,105,102,104,113,111,107,103,110,85,110,102,103,90,102,101,98,112,83,99,113,99,117,108,98,107,114,113,104,106,100,106,118,97,98,98,110,106,112,108,103,100,100,108,79,102,111,102,125,104,98,95,107,108,104,107,104,115,99,93,111,102,93,98,101,104,102,108,97,105,118,98,99,109,102,97,117,91,102,100,108,104,98,108,96,101,115,115,109,104,110,107,96,111,104,81,94,109,101,107,100,102,106,111,103,117,104,109,101,103,100,102,109,109,105,102,107,105,115,108,105,111,105,114,139,102,105,106,95,95,102,129,123,105,100,116,110,111,112,99,99,100,107,104,99,101,96,102,89,99,105,106,100,107,90,111,110,103,100,106,102,100,103,100,103,100,109,103,106,95,99,107,90,99,88,109,104,104,104,99,100,96,112,105,119,105,98,109,108,102,103,120,101,107,95,98,99,104,106,102,107,104,111,99,113,107,112,95,113,113,103,106,101,104,91,99,110,91,105,92,111,103,108,105,112,112,112,104,101,110,96,116,108,106,104,106,113,103,99,101,106,86,111,95,98,98,102,108,99,133,104,116,106,97,91,107,101,109,112,94,105,95,107,102,91,89,100,110,112,103,115,106,100,113,98,107,90,97,106,103,116,98,102,97,110,103,102,104,108,95,104,103,89,120,97,105,116,96,107,117,104,104,100,106,105,110,112,103,96,102,115,105,105,108,114,95,110,100,100,100,100,99,100,96,102,113,93,101,108,117,98,106,103,108,117,101,113,113,100,109,101,104,117,105,118,96,107,99,101,107,98,104,103,110,109,109,109,125,113,103,117,105,99,108,96,110,102,99,107,116,114,101,100,96,103,100,100,102,103,105,110,110,110,109,97,108,104,97,100,110,100,113,94,101,108,102,105,112,99,112,99,113,110,96,113,122,95,107,102,103,107,108,106,102,95,102,105,94,99,108,102,106,105,92,96,102,110,107,107,112,94,89,111,104,106,99,105,104,99,94,117,125,102,101,93,103,107,104,107,104,110,111,90,102,111,103,91,106,112,86,105,105,98,105,96,99,113,114,109,99,109,107,100,92,104,102,98,100,105,111,101,100,96,110,98,101,101,83,96,98,111,111,103,72,101,108,111,117,104,103,115,107,106,115,107,106,99,108,107,101,103,126,94,111,107,96,104,111,90,112,107,127,122,106,102,98,100,107,103,115,116,102,104,112,103,97,102,99,109,91,106,100,102,107,95,99,103,108,99,85,106,92,106,99,112,106,95,108,105,91,110,98,106,90,96,112,104,103,102,113,105,99,103,111,87,108,106,103,87,93,110,102,100,106,107,109,98,103,108,102,112,98,101,96,91,108,104,97,103,103,78,98,100,108,100,95,106,96,100,92,104,109,130,100,102,119,96,115,106,106,101,102,115,96,109,102,97,112,111,97,91,98,93,104,99,111,101,103,110,104,111,99,98,99,99,101,107,98,114,119,92,104,99,100,101,98,105,97,114,119,106,120,90,93,104,92,106,98,97,107,109,96,105,107,96,96,113,112,101,110,115,100,84,100,84,109,109,99,107, +588.32385,101,113,133,99,98,110,104,101,94,106,105,95,93,102,70,98,106,106,100,105,99,107,104,106,126,111,110,111,112,112,107,91,106,103,108,76,102,114,102,121,112,118,120,107,104,107,104,104,105,114,98,90,101,91,126,105,117,107,115,97,96,112,99,90,109,112,104,107,110,106,108,107,100,108,100,112,101,109,97,98,101,102,109,99,103,101,107,108,103,106,103,91,102,113,111,98,105,103,99,109,96,91,102,88,96,100,109,96,106,100,110,107,108,105,118,111,117,107,107,108,103,74,116,101,122,99,117,105,108,95,79,101,114,102,109,105,96,93,87,106,99,107,111,96,122,111,110,105,87,104,81,110,101,100,100,107,108,104,115,121,96,123,116,115,100,116,102,98,101,112,108,105,99,106,105,91,93,90,128,109,135,95,110,103,110,84,101,103,110,109,121,111,108,108,110,101,100,104,104,105,111,104,103,114,96,103,104,117,106,116,100,105,100,103,102,96,118,106,102,106,98,104,110,99,102,108,105,111,94,96,102,113,105,114,97,103,108,89,115,98,109,105,100,104,104,103,97,103,105,102,104,113,111,111,104,102,103,111,108,121,95,113,112,135,99,109,102,102,119,101,114,104,100,113,110,91,92,111,105,114,106,108,112,106,102,102,103,104,103,119,105,109,108,99,108,106,117,102,97,109,105,112,101,103,101,109,109,106,110,104,105,108,95,98,101,110,96,120,96,100,117,108,99,109,109,106,99,105,112,113,99,115,100,109,117,106,97,108,109,96,97,106,116,95,105,114,111,112,114,99,102,108,111,110,103,103,99,108,99,92,99,108,108,109,120,100,102,118,110,107,117,107,112,119,113,98,112,113,100,107,113,115,99,106,104,116,98,92,109,111,113,115,88,113,103,106,95,99,112,110,100,104,102,97,112,96,107,99,100,104,104,109,117,107,99,99,107,95,121,120,107,114,87,102,101,95,112,100,110,102,106,107,104,108,128,103,109,97,105,111,110,94,105,106,91,91,109,95,120,113,92,109,115,107,114,93,109,104,103,112,92,114,123,109,104,103,108,101,108,98,117,108,100,103,97,105,100,102,101,103,109,100,103,118,104,116,115,111,122,103,104,96,116,93,104,107,100,105,109,108,115,89,108,111,112,114,102,117,113,99,121,105,112,108,111,115,108,105,104,110,105,108,106,105,103,112,115,117,105,109,104,107,102,111,105,111,121,112,114,111,104,93,102,102,104,92,103,103,96,101,103,102,104,113,90,122,106,96,104,104,94,109,91,109,105,99,112,104,98,100,93,95,106,100,117,108,113,99,108,116,105,95,109,96,104,105,109,112,103,95,114,104,100,110,118,119,108,104,106,96,102,98,103,108,112,106,112,106,113,112,115,112,109,103,107,108,118,109,108,91,116,110,118,111,106,101,98,101,113,106,100,105,95,113,101,116,105,90,107,115,99,103,91,102,106,103,103,91,102,109,113,106,113,102,104,105,105,103,113,106,111,112,110,106,93,99,99,112,108,95,109,117,112,105,102,116,109,108,98,105,103,108,109,128,105,110,117,106,101,97,109,108,103,115,113,102,108,112,115,92,98,105,96,106,127,100,108,135,101,104,118,116,99,106,98,103,108,107,94,103,108,96,104,99,108,115,106,94,111,100,109,104,119,102,100,105,93,105,112,113,109,113,100,103,95,105,120,113,122,113,123,98,105,99,103,103,105,117,106,107,94,108,107,91,84,108,94,98,104,102,114,102,104,105,101,109,94,97,109,100,109,111,104,144,104,101,106,111,108,107,110,99,83,118,121,116,104,104,120,109,108,118,100,122,108,117,96,115,114,95,105,95,120,108,117,121,116,100,110,103,104,108,103,95,124,114,120,102,109,110,117,96,96,102,113,112,108,106,100,99,113,107,105,102,113,129,104,95,115,90,107,114,101,114,106,114,103,104,112,102,100,110,99,102,97,114,107,104,101,94,110,115,108,107,110,106,103,100,117,112,96,112,99,110,108,110,96,120,121,108,102,77,105,112,83,103,107,109,98,95,100,107,103,100,110,112,100,102,91,109,99,107,110,113,107,114,100,112,111,114,109,108,101,118,117,109,105,88,102,100,114,107,113,105,88,103,87,105,112,102,106,113,96,103,111,98,121,122,117,107,103,97,96,108,104,115,106,110,108,107,112,98,109,95,111,106,103,103,125,109,109,113,140,99,117,99,99,104,100,107,107,110,100,120,112,100,111,106,110,103,111,98,104,114,97,92,102,97,98,107,102,100,109,104,108,106,74,104,105,107,110,106,88,109,107,98,108,112,99,99,107,105,103,107,125,111,104,105,95,110,115,100,108,125,125,108,113,127,139,144,151,149,162,186,187,182,179,160,167,170,154,150,167,119,124,130,132,112,104,129,105,113,112,111,107,122,94,124,105,116,87,110,106,122,107,106,100,99,102,104,87,96,94,94,125,103,98,94,111,100,97,110,107,98,84,107,100,106,114,103,96,98,104,117,109,109,91,126,105,98,108,108,111,107,107,101,100,100,90,88,105,109,99,110,116,110,101,85,98,103,106,99,98,98,108,109,91,103,97,100,113,91,87,126,91,107,107,102,99,100,103,104,106,102,96,98,104,107,102,103,112,100,121,116,99,110,94,98,112,102,110,103,113,102,102,99,107,96,98,100,100,104,98,101,94,118,112,96,102,110,102,100,100,101,121,88,113,94,104,110,113,106,100,110,105,91,104,99,87,117,98,94,102,99,105,108,116,104,101,103,106,110,113,112,105,95,111,103,99,111,104,109,102,104,111,101,93,113,104,109,104,106,102,100,100,106,79,110,112,104,114,92,100,109,116,111,95,109,98,121,107,121,103,104,112,109,113,98,120,123,98,104,118,108,111,102,105,108,102,114,106,80,104,107,108,106,100,109,117,106,79,100,97,106,106,98,99,105,105,120,119,106,99,112,92,105,124,99,97,102,120,126,106,108,106,121,98,103,110,103,110,107,108,99,110,104,110,102,100,109,117,98,97,99,109,105,95,99,101,106,103,112,116,76,107,102,112,106,113,102,109,107,100,110,100,115,110,109,102,102,113,114,107,110,119,101,112,126,110,105,91,103,107,109,108,84,99,113,98,115,99,97,104,107,116,99,104,105,103,107,104,106,107,113,108,106,106,104,116,105,111,110,99,106,103,108,89,106,105,108,87,104,98,117,98,99,109,114,108,103,104,104,102,87,108,106,109,90,120,73,106,102,112,113,110,112,88,108,105,105,98,99,110,100,102,103,108,101,99,101,109,87,109,91,105,111,96,103,99,92,96,94,102,109,111,107,102,109,104,100,100,108,108,96,113,97,108,99,115,101,95,111,113,109,102,106,105,101,100,101,113,100,99,98,107,111,102,101,104,93,124,110,105,110,91,104,106,107,97,124,105,92,110,108,109,103,106,98,89,106,104,107,104,120,108,106,108,112,113,103,97,96,106,94,112,98,103,106,110,85,102,111,99,100,104,102,116,94,97,94,87,108,103,112,103,99,108,120,92,112,106,101,102,95,101,105,101,105,91,111,100,102,108,105,104,115,98,102,99,101,94,103,99,97,98,79,103,104,99,116,96,106,90,117,97,99,108,112,115,107,103,102,114,111,104,104,116,109,96,98,117,109,124,102,92,111,104,96,101,99,88,112,115,104,94,96,100,102,93,100,108,94,100,117,115,105,108,69,121,93,97,107,121,108,106,103,102,113,87,99,101,106,66,111,110,109,102,105,102,102,93,107,92,93,113,106,95,94,99,98,105,107,107,109,104,107,107,95,105,116,118,106,104,114,99,104,116,99,100,102,99,113,107,100,94,99,108,98,111,110,109,109,100,91,117,116,98,75,118,97,102,96,100,87,99,113,96,105,104,98,100,94,99,75,99,101,97,103,109,97,109,102,113,108,89,109,103,106,111,104,92,91,95,108,113,102,99,106,101,106,106,107,102,115,110,110,106,91,101,105,113,102,101,98,94,99,101,112,103,95,112,117,109,103,110,113,117,129,117,114,106,106,96,103,107,106,96,96,96,113,89,103,111,99,99,90,117,106,104,107,113,111,103,105,110,114,113,104,98,108,109,94,111,104,101,104,111,95,84,112,105,122,105,111,103,123,105,109,101,104,97,92,104,113,96,107,112,94,95,105,104,104,106,101,99,113,93,106,125,109,105,115,113,102,100,102,101,102,102,114,120,103,110,96,95,110,101,104,98,108,116,100,104,110,103,110,113,100,105,95,107,110,113,97,102,101,102,97,85,109,107,99,99,108,103,95,117,111,113,83,119,68,103,94,115,92,100,108,114,98,99,108,102,106,106,106,105,100,99,105,91,99,107,106,119,93,113,107,106,98,102,108,98,103,107,101,103,108,110,104,102,96,113,105,98,89,101,114,99,96,106,104,92,104,91,110,102,109,101,89,102,101,116,107,92,97,102,100,100,91,104,94,106,106,98,106,100,103,103,112,102,109,95,120,108,112,100,109,92,93,102,107,82,101,106,104,105,102,94,98,101,98,83,103,99,100,107,99,103,132,111,103,107,100,107,109,106,103,86,115,118,102,116,103,92,101,114,92,105,93,104,104,101,95,108,123,109,109,106,97,108,104,115,106,103,115,110,105,88,97,91,94,95,87,108,112,105,95,100,107,92,92,97,110,103,108,121,104,100,110,111,97,119,92,110,94,99,97,95,97,100,92,98,98,107,103,98,114,91,93,105,104,107,109,100,105,98,110,103,104,92,90,79,98,97,107,92,93,82,97,99,99,95,102,113,94,91,111,98,104,100,108,95,96,114,104,98,101,98,102,106,98,102,87,103,101,72,98,108,87,99,116,113,90,112,99,84,114,105,100,114,97,99,113,103,112,108,87,103,106, +588.46484,104,106,101,92,104,116,86,105,100,102,112,91,99,103,99,87,111,101,102,105,102,106,111,99,108,103,104,97,103,105,94,106,96,107,83,95,112,105,101,104,95,99,102,97,98,82,98,93,121,133,109,103,101,114,111,103,89,105,99,108,89,98,99,101,99,111,97,104,116,98,106,106,106,99,104,112,101,105,99,76,113,98,104,108,95,90,105,102,116,103,99,130,107,94,117,104,102,104,114,120,104,98,112,101,105,95,106,108,106,102,104,109,113,104,112,100,107,96,112,96,94,88,100,104,113,113,111,109,107,98,99,93,99,107,99,105,95,100,96,110,99,97,97,103,102,118,101,121,96,100,105,108,82,113,89,114,99,107,105,99,106,102,99,105,109,110,91,105,104,112,95,108,111,113,88,99,113,106,108,94,97,106,102,103,96,108,100,89,101,94,103,108,116,105,118,108,114,100,94,110,104,106,96,103,99,101,103,112,106,95,90,108,102,114,103,100,96,108,100,95,103,100,106,103,95,108,116,112,100,122,97,104,104,107,112,102,107,102,138,108,101,121,118,114,98,100,108,111,104,109,97,99,108,114,91,114,102,110,99,107,108,104,104,99,96,114,102,97,107,103,99,94,113,118,116,99,94,104,96,95,102,112,108,112,104,99,91,112,104,100,101,90,99,94,95,98,91,98,102,137,106,109,105,110,106,118,100,100,105,114,98,102,107,104,110,109,103,95,99,109,112,114,114,101,100,106,102,100,103,105,105,104,107,102,108,108,121,98,98,122,100,98,102,96,98,113,97,103,114,99,92,108,101,111,107,111,103,105,99,105,98,96,105,105,95,88,97,111,108,104,106,81,109,101,105,98,104,112,101,105,115,106,91,106,99,99,95,105,99,100,119,90,106,107,106,95,98,92,115,98,96,109,103,102,97,98,93,97,117,101,113,102,104,107,100,93,102,97,102,99,99,97,111,104,100,109,99,95,104,105,111,107,108,103,101,102,105,118,100,102,104,115,103,106,101,109,105,128,116,100,109,103,74,119,105,111,102,108,102,97,129,104,94,109,101,103,103,102,102,116,108,109,98,106,114,95,107,106,102,112,108,108,114,108,109,111,116,116,103,106,121,111,109,104,95,101,93,111,118,118,107,108,107,105,110,107,109,106,118,95,99,112,108,106,105,104,102,123,95,91,104,108,114,101,109,109,110,97,90,110,70,106,95,107,106,110,111,107,98,98,107,105,94,99,103,116,105,104,109,110,95,106,116,117,101,108,95,97,107,105,105,108,113,100,109,98,84,96,100,97,100,109,109,98,106,101,102,105,110,98,95,98,108,85,116,98,95,102,99,104,101,117,99,103,114,101,93,99,99,95,99,98,99,95,112,105,99,102,97,110,97,108,107,109,100,106,107,99,107,102,112,110,116,94,110,101,93,103,110,105,105,87,95,101,109,110,109,97,99,104,101,104,103,90,107,113,106,108,96,93,111,103,86,98,104,103,112,113,110,94,92,99,110,102,104,105,105,104,112,96,110,118,107,89,106,112,115,108,89,107,102,107,109,118,97,103,102,95,107,102,108,108,92,112,107,108,106,117,108,87,104,106,103,79,113,122,92,101,107,111,103,99,103,99,103,104,105,105,109,99,103,100,117,111,90,96,100,110,104,108,104,110,98,110,97,107,106,101,101,98,99,97,102,130,106,96,104,112,99,106,104,99,100,103,112,116,111,101,107,101,92,109,107,86,98,107,96,104,109,110,111,104,108,95,107,103,105,98,107,104,98,106,108,94,93,104,99,106,108,119,106,94,107,107,114,101,107,113,109,109,94,97,104,75,103,98,113,103,109,105,133,99,120,102,118,96,96,109,108,102,101,105,110,101,99,116,103,109,102,113,107,105,114,99,108,108,103,99,94,112,114,117,93,95,108,107,101,105,120,104,107,99,109,101,93,113,99,98,103,98,106,111,96,97,82,127,103,113,109,102,104,106,108,97,104,102,103,108,113,107,105,97,102,112,107,108,95,108,120,100,100,115,99,97,102,88,97,96,97,113,109,93,112,103,108,99,102,97,90,116,92,98,108,99,111,94,96,109,109,105,109,98,109,111,98,103,98,107,95,120,104,110,90,110,96,109,105,104,110,106,93,105,96,97,112,101,103,88,106,102,95,107,98,106,110,108,106,106,100,121,112,105,114,103,109,97,97,105,103,106,108,96,102,109,103,106,116,110,119,105,103,109,105,109,95,108,103,94,107,108,87,112,108,99,105,95,115,107,91,106,95,114,101,104,107,97,121,97,112,98,100,104,101,108,96,110,108,111,112,108,105,103,141,101,111,105,108,112,116,115,90,87,115,119,113,118,119,121,152,121,141,161,146,183,167,164,166,171,162,141,136,144,148,141,167,141,126,128,126,117,115,114,114,113,98,99,100,100,114,94,100,105,98,117,91,107,116,106,106,108,101,108,97,89,108,98,100,113,112,110,104,108,105,116,108,122,99,91,116,95,111,86,111,106,98,101,87,123,106,105,93,99,101,107,105,102,121,106,101,101,114,88,94,111,106,113,103,95,105,111,113,105,117,96,94,96,97,91,100,106,99,102,106,112,110,108,113,110,107,119,112,112,105,114,98,102,109,103,91,94,87,96,101,93,110,111,101,113,109,104,108,108,95,104,96,101,105,110,97,109,107,109,95,83,102,96,106,98,104,103,101,94,117,116,95,101,112,100,108,100,102,114,114,99,90,115,109,113,91,110,109,101,105,95,99,103,102,121,99,102,104,103,99,95,104,94,108,115,102,115,102,97,102,106,104,100,106,110,113,92,108,100,109,106,99,103,107,102,103,105,110,109,109,108,110,116,106,120,93,114,106,104,103,128,98,95,112,111,117,112,117,104,112,111,109,100,97,106,101,107,102,108,101,112,95,113,98,98,96,107,101,106,83,107,113,117,107,91,102,101,99,103,94,99,118,97,77,105,94,93,118,99,96,99,90,114,104,102,111,90,104,91,115,119,103,95,105,109,114,93,89,105,108,114,103,68,100,92,106,116,111,104,97,115,103,108,110,99,106,113,102,115,96,109,103,98,91,117,99,92,110,106,105,98,103,102,121,107,112,103,105,116,99,109,110,99,88,115,106,96,102,103,102,95,104,99,113,113,102,101,112,102,97,103,108,120,97,101,117,101,106,108,95,112,99,89,77,96,112,93,109,104,109,104,107,103,103,91,101,106,116,110,100,100,95,99,128,103,104,105,109,105,108,109,114,108,104,114,105,104,103,99,104,82,124,99,104,108,112,100,91,101,104,107,109,121,115,101,99,106,106,109,109,111,104,109,116,97,106,108,99,107,109,110,98,108,104,103,116,91,103,102,102,104,110,103,107,105,106,100,96,106,112,94,106,113,108,106,97,102,91,117,113,107,95,95,110,96,98,119,99,97,113,93,102,103,109,120,94,99,105,103,115,96,109,110,112,102,113,97,100,117,110,104,106,108,106,107,111,93,101,108,95,92,109,107,107,105,102,107,117,115,110,102,99,101,120,116,98,119,109,96,108,106,117,107,99,102,108,116,117,111,102,111,105,104,105,110,105,96,96,109,98,97,112,112,106,109,93,101,122,115,101,97,100,110,106,109,99,95,104,103,109,106,100,113,96,100,112,119,76,109,95,96,101,101,103,105,110,92,112,108,103,101,101,94,105,95,101,117,110,95,113,99,91,96,109,101,103,101,95,104,116,90,103,109,108,114,102,99,112,98,101,94,96,98,101,105,100,106,106,96,99,116,97,107,110,108,103,110,82,97,95,97,116,113,105,119,111,104,105,101,110,107,107,118,111,111,103,96,98,85,104,106,104,106,108,104,118,101,106,106,103,100,113,109,94,112,94,96,97,92,94,93,114,98,98,101,91,96,92,107,116,109,103,103,111,96,113,96,105,92,107,100,103,104,103,98,106,103,107,113,86,105,109,114,116,98,108,103,113,106,110,106,111,95,96,114,95,99,101,105,93,94,109,96,96,96,106,105,101,98,98,103,107,120,110,107,104,106,106,108,101,109,115,104,100,99,105,94,109,99,103,136,90,122,112,104,107,107,109,113,107,100,109,101,104,108,105,109,113,108,106,106,101,104,106,105,108,115,96,109,98,108,104,120,90,105,101,98,103,94,105,96,106,109,107,99,96,104,112,107,116,125,91,96,98,105,111,101,101,103,90,107,96,103,102,95,100,109,106,98,97,98,116,115,105,108,100,103,99,123,108,88,102,110,104,115,96,105,92,105,90,100,99,99,113,92,101,105,110,103,114,104,101,102,106,96,104,109,95,106,106,104,110,92,100,116,91,104,82,101,106,103,104,87,115,98,102,101,107,107,108,94,98,101,101,112,117,106,105,100,112,101,101,101,108,101,108,112,107,106,111,106,109,92,113,102,106,104,113,96,110,109,99,102,101,93,91,105,98,108,105,101,104,100,111,89,106,103,97,77,81,113,109,101,102,111,102,98,70,100,101,118,93,94,105,103,112,100,111,113,102,108,113,111,95,95,96,105,110,107,95,98,107,97,107,105,97,110,108,103,110,91,100,115,108,108,106,101,94,94,109,103,115,107,102,96,118,100,106,95,95,98,106,105,103,106,113,106,112,96,101,100,110,99,121,111,97,106,99,102,91,106,103,109,105,95,108,102,103,111,106,108,102,95,119,95,100,101,105,123,87,118,96,102,101,98,105,101,105,98,104,116,95,101,70,94,101,103,91,116,101,101,101,112,104,104,114,113,114,103,98,98,95,108,108,99,107,118,92,120,100,90,115,111,93,105,121,100,128,98,107,97,106,100,90,108,107,115,106,102,109,98,107,106,110,109,91,104,106,104,112,107,104,105,106,97,98,112,121,102,98,105,117,93,106,105,108,100, +588.60583,110,107,103,78,88,121,111,121,107,114,97,98,107,104,113,75,107,107,104,108,104,103,101,103,101,107,120,130,110,109,101,104,119,102,110,103,99,106,92,105,103,98,103,113,104,102,106,98,101,94,112,114,109,108,112,113,105,99,106,101,108,99,114,103,106,107,109,121,95,110,112,103,116,107,97,109,99,98,134,113,111,104,117,108,91,103,91,120,115,108,101,111,112,111,95,101,104,96,100,96,114,102,101,110,106,105,100,110,89,99,98,87,109,103,104,114,110,100,113,104,105,114,100,112,108,104,109,91,103,112,109,94,93,111,116,103,97,98,95,95,102,108,94,112,94,101,115,94,94,99,107,111,107,126,96,116,106,104,104,95,88,117,113,109,108,99,99,108,95,102,103,101,100,103,93,100,114,99,103,110,109,114,104,111,96,109,107,117,117,110,101,90,102,112,107,102,98,103,96,95,101,99,92,106,102,110,98,106,106,111,99,101,104,113,108,86,100,107,92,98,113,119,107,119,100,113,111,104,108,102,100,100,107,104,118,99,104,115,129,96,106,111,109,104,104,108,106,102,106,98,111,100,104,108,112,100,107,103,109,105,100,106,111,116,106,99,121,113,94,95,108,115,108,108,119,100,119,111,100,107,82,102,104,86,111,114,101,104,100,106,106,111,109,107,103,106,107,95,104,107,119,104,113,112,107,109,109,109,103,108,95,95,108,108,120,112,120,113,97,101,99,110,101,105,106,92,103,99,103,118,119,108,116,96,116,97,114,114,113,116,93,104,99,109,109,98,109,98,110,111,108,100,111,94,120,107,109,103,102,107,105,105,111,97,103,111,115,109,98,116,105,112,109,102,112,106,112,105,92,109,109,116,99,108,98,106,102,110,112,103,107,108,115,108,118,104,98,109,104,118,92,103,107,94,102,101,105,114,121,106,102,100,114,102,103,102,107,116,111,107,103,117,105,114,109,109,107,109,103,108,90,104,106,110,114,104,106,104,102,108,110,112,104,103,94,114,116,111,102,121,96,98,94,113,107,111,98,105,106,103,90,116,108,106,100,102,104,100,108,103,113,115,103,104,99,92,108,97,103,110,102,108,111,97,100,106,100,109,102,110,100,117,107,114,91,104,110,102,99,106,111,94,115,106,100,93,113,101,102,102,116,100,118,92,121,107,106,106,99,102,109,106,94,101,105,114,95,106,104,113,102,96,97,103,96,105,109,99,98,105,90,117,104,94,111,104,107,95,109,105,112,110,104,111,98,98,111,100,105,105,108,100,113,104,103,112,102,104,109,103,105,101,105,112,99,98,114,103,96,100,104,102,99,110,109,109,110,104,106,106,105,113,101,100,92,105,87,103,110,109,121,106,99,100,88,102,92,102,104,110,100,101,101,95,99,106,95,98,107,113,97,100,95,100,101,117,102,81,107,98,94,98,94,102,103,128,95,102,117,103,96,120,99,110,100,101,109,107,112,100,98,115,106,107,111,100,96,97,102,103,103,114,110,102,102,105,110,84,100,104,109,109,105,108,105,100,108,107,110,99,101,102,108,95,83,101,110,117,101,102,115,101,98,111,114,99,102,104,102,76,104,104,105,102,104,112,105,107,99,109,105,98,109,109,98,101,113,109,99,87,104,95,99,110,101,129,103,102,91,103,100,97,103,116,97,98,102,109,96,100,109,105,111,98,108,107,110,110,103,98,112,102,109,104,105,98,101,101,121,101,113,104,104,93,101,100,93,107,103,110,107,110,100,101,94,116,112,103,105,98,115,114,109,105,105,90,111,102,108,104,97,111,97,106,105,110,113,99,104,113,101,110,100,102,107,107,110,100,109,106,110,110,99,107,114,98,125,116,111,103,111,101,103,108,105,110,106,81,91,106,104,106,102,112,89,108,106,100,112,101,97,95,96,137,92,107,112,95,112,99,106,97,108,106,95,115,105,117,95,101,93,91,104,113,102,105,101,109,117,117,99,105,99,85,106,100,101,105,98,99,117,109,108,105,93,106,100,108,94,108,115,101,96,104,117,100,94,105,92,111,101,123,116,106,110,114,95,117,109,128,98,116,103,103,106,115,93,102,105,99,108,103,117,116,109,109,94,113,108,102,99,106,87,105,99,103,99,104,109,108,117,109,116,103,104,105,92,111,99,101,89,95,107,99,104,106,107,99,89,106,114,104,101,100,108,105,94,93,108,96,91,118,103,113,118,115,108,111,98,99,113,109,107,102,109,102,102,97,105,104,127,99,103,117,95,109,101,97,99,116,106,95,104,105,105,91,117,107,98,106,116,109,102,102,104,98,119,113,95,110,110,118,109,98,103,111,101,109,115,114,103,120,113,110,105,113,117,109,124,146,123,153,171,154,166,190,168,142,144,175,160,160,168,136,141,124,122,130,145,102,98,102,131,116,113,117,92,124,105,107,99,121,103,100,134,88,105,98,114,111,87,116,94,105,100,112,101,73,117,109,108,95,103,105,109,107,102,104,117,99,111,99,116,107,108,113,113,109,104,102,104,112,109,111,104,105,107,120,94,91,101,108,91,100,124,112,101,102,108,95,99,105,103,103,102,92,98,105,99,99,115,105,104,96,108,116,108,100,113,104,99,113,117,105,108,97,114,102,104,109,112,101,114,100,104,102,100,102,111,93,96,103,94,113,104,99,107,92,110,104,111,106,94,104,92,81,113,109,99,104,117,100,123,108,110,119,104,98,102,108,95,118,116,108,94,111,103,103,99,109,121,100,125,109,95,112,98,107,98,105,103,106,103,109,103,112,107,107,109,107,102,109,98,87,97,104,109,114,102,102,106,99,108,97,96,104,95,114,105,106,96,100,108,109,108,98,110,105,106,105,107,108,98,101,95,109,126,117,107,113,98,107,113,120,99,103,101,105,105,98,110,110,107,100,116,112,93,109,112,109,104,100,107,114,104,111,105,102,94,97,95,117,99,108,100,106,113,105,112,94,103,104,104,94,111,98,117,108,97,91,98,116,105,112,110,100,113,101,117,101,104,105,102,102,92,121,97,98,113,112,103,111,111,83,108,108,103,98,110,109,107,113,119,100,98,99,83,87,106,93,99,115,115,97,110,93,107,85,102,108,100,108,110,116,110,103,99,101,105,96,102,109,103,96,113,104,95,103,92,95,93,107,112,103,86,108,105,106,108,118,113,102,94,106,99,103,102,104,113,104,111,109,107,105,105,92,106,113,104,111,93,104,106,103,98,103,101,103,118,94,113,103,103,108,123,98,96,120,101,105,106,100,116,110,93,104,100,103,113,102,104,109,105,114,100,109,121,95,107,102,102,110,99,114,115,104,112,103,103,87,114,116,98,113,98,101,108,111,102,109,100,117,103,105,105,96,100,107,102,68,119,100,111,116,108,105,107,111,98,95,88,107,102,111,97,113,104,103,125,113,96,103,103,111,100,104,114,106,93,105,109,104,107,118,100,102,124,110,106,96,102,104,104,100,108,110,102,98,104,115,115,109,99,96,104,111,104,102,110,99,118,105,108,110,100,106,110,109,112,106,99,107,106,105,110,113,104,102,91,110,116,101,99,104,100,113,102,102,99,100,94,110,102,94,108,92,107,109,113,112,105,106,100,99,102,95,109,109,103,95,95,106,113,109,94,106,99,98,104,86,96,97,94,106,109,103,112,104,100,104,102,81,88,105,99,106,104,109,108,94,108,95,111,108,111,95,103,103,109,97,108,110,98,118,106,101,137,98,110,92,90,101,96,96,98,105,113,87,107,100,119,96,113,118,113,105,105,98,113,98,97,101,88,109,96,105,107,113,99,103,108,101,108,111,113,90,100,88,97,108,107,116,95,107,80,105,94,93,121,99,107,102,103,114,82,103,99,105,89,99,90,106,106,101,93,102,110,109,103,97,101,117,116,114,106,93,107,95,102,102,114,99,109,94,78,111,104,108,112,102,104,100,105,105,99,108,114,101,99,122,104,108,105,98,104,97,103,88,91,107,107,106,100,104,113,96,100,101,105,91,102,100,106,101,105,115,117,101,99,97,112,112,97,116,114,112,119,90,90,105,110,95,102,115,102,102,109,115,110,100,108,113,102,98,101,102,108,107,103,101,102,104,117,109,102,116,115,94,96,113,110,111,98,110,113,124,101,97,89,114,75,108,109,91,105,106,101,95,108,105,102,107,102,98,119,108,97,105,102,112,111,103,110,107,105,101,113,105,103,114,108,98,111,95,108,115,108,112,95,103,99,102,114,103,99,104,114,101,101,105,103,106,114,104,110,102,112,102,98,105,109,109,99,103,96,98,108,91,105,111,96,117,112,109,104,99,99,104,104,112,103,98,105,95,109,102,106,94,112,104,98,110,103,101,97,100,106,100,108,108,105,121,110,121,91,96,94,105,104,112,103,89,101,106,96,81,114,101,101,95,103,103,100,102,108,99,109,96,104,105,110,106,98,106,105,104,102,105,101,95,95,99,115,91,125,106,96,100,96,102,112,109,100,108,113,102,109,102,111,100,98,102,102,98,110,103,107,99,98,109,107,107,98,101,101,99,98,85,100,109,119,109,101,108,111,118,113,103,99,95,110,101,96,109,104,110,106,113,105,112,116,110,107,108,98,115,102,108,108,97,103,101,99,105,101,106,100,111,101,100,89,101,116,108,101,110,92,100,103,87,108,100,94,119,109,110,108,106,98,98,108,106,113,103,96,102,103,106,107,99,105,89,100,112,105,104,116,98,107,97,87,106,104,111,110,101,101,102,101,99,105,100,120,101,102,84,105,101,104,110,104,98,107,114,83,99,98,119,85,114,95,105,98,93,95,100,103,106,108,107,92,111,112,111,91,99,97,93,105,109,104,99,101,103,105,97,99,95,109,109,125,92,98,105,93,99,87,101,120,82, +588.74683,98,98,110,104,91,108,116,102,112,115,105,118,104,115,94,103,113,99,107,110,97,101,86,116,101,105,88,106,114,99,99,102,109,98,127,88,122,89,91,106,103,102,93,122,113,114,104,113,109,105,103,104,103,102,110,106,103,113,99,103,102,112,107,95,104,103,95,115,104,104,90,117,102,96,97,117,95,108,110,105,115,97,121,114,95,90,100,117,105,84,98,94,99,110,107,107,109,107,103,103,95,101,99,100,99,104,107,102,82,118,94,124,96,112,93,105,106,100,96,119,92,106,103,115,104,99,113,95,94,99,104,109,105,99,106,99,109,119,96,104,103,110,99,111,104,97,102,102,92,106,101,107,98,101,98,109,105,109,108,110,104,95,102,102,125,87,108,112,103,108,101,108,118,99,94,106,105,112,113,108,100,101,110,92,98,108,92,91,112,112,100,114,109,118,95,100,105,103,117,117,103,104,102,93,120,125,86,80,113,110,121,111,91,114,97,108,97,100,99,112,98,105,114,100,88,119,123,95,103,107,109,100,116,104,100,123,99,110,114,104,110,109,111,111,100,98,95,113,103,98,106,104,94,111,99,110,103,101,90,107,107,104,120,108,95,104,115,106,112,99,111,101,97,95,112,102,109,103,97,97,103,102,105,106,115,104,90,108,111,108,104,111,100,105,101,115,128,98,100,114,107,123,112,104,89,81,107,122,107,126,105,99,109,103,103,103,108,90,91,99,108,113,99,105,101,91,103,107,99,113,105,110,111,109,104,100,102,105,107,98,99,107,111,111,105,100,116,110,103,108,106,99,103,108,103,108,99,107,99,99,111,110,113,109,98,94,101,112,103,113,102,109,105,120,107,100,110,100,110,117,112,103,102,103,95,98,101,105,108,101,109,103,103,107,108,105,95,94,108,90,98,97,105,99,105,106,106,112,108,98,95,94,102,102,106,88,108,97,103,118,103,110,108,103,94,103,102,106,96,112,107,114,91,96,106,109,101,105,106,97,98,104,104,110,105,104,119,85,109,108,98,104,104,108,111,97,104,93,103,108,106,108,101,109,116,96,104,95,102,100,110,116,107,105,103,101,103,124,111,106,116,97,108,105,115,108,87,104,110,112,102,100,100,112,105,97,100,89,114,100,114,107,109,101,102,98,94,106,104,105,117,111,107,109,102,116,99,105,104,100,93,104,133,116,108,104,124,107,104,109,103,121,114,106,107,107,104,116,99,89,103,114,108,99,95,100,103,112,95,115,95,102,102,99,112,110,112,112,108,111,95,109,105,93,116,102,114,109,121,103,95,101,120,98,101,100,98,122,104,105,113,103,109,96,102,104,107,111,102,108,113,105,100,116,111,100,109,105,110,102,102,110,100,84,111,98,100,112,105,110,103,98,102,105,103,103,108,118,112,104,117,105,113,89,109,104,91,100,117,108,103,99,108,113,101,103,98,95,104,98,108,99,103,98,90,87,111,117,107,110,112,111,108,89,101,105,103,95,106,95,105,102,107,114,100,105,105,104,109,113,102,113,104,104,115,118,124,110,98,113,100,83,108,99,102,97,99,94,102,105,109,106,111,112,102,117,95,105,110,94,103,103,92,104,101,108,105,87,114,135,82,112,106,111,109,101,109,112,125,109,105,94,113,107,100,91,102,109,107,108,105,110,101,94,106,103,112,94,108,109,134,99,104,98,106,107,100,108,97,85,114,98,101,104,108,132,109,102,108,107,102,108,104,112,101,111,109,100,91,109,110,103,93,109,117,117,105,107,97,99,92,100,105,110,104,121,111,103,108,108,104,119,108,113,105,103,100,108,91,109,99,112,109,102,119,105,101,104,102,106,107,91,99,104,120,108,108,110,107,102,104,109,127,103,105,100,90,110,107,101,116,97,113,111,100,113,106,86,123,99,108,112,100,108,107,95,104,102,106,107,102,99,118,111,94,106,120,103,104,97,99,104,107,107,113,96,98,99,116,95,97,118,102,97,105,95,100,108,111,98,99,111,102,109,105,94,100,108,106,93,104,111,105,113,107,104,102,103,100,106,101,106,111,102,94,100,98,108,99,121,105,123,114,101,109,105,91,118,77,109,95,104,106,103,109,118,103,118,110,96,104,97,99,109,99,107,121,93,109,108,102,111,99,103,99,107,105,114,110,97,108,112,110,108,106,94,110,107,95,101,102,110,102,93,118,100,98,104,103,120,114,116,114,106,106,106,124,108,100,103,97,106,98,115,104,102,96,99,113,108,107,97,108,103,92,105,110,115,96,111,99,103,105,103,107,108,113,98,114,95,96,100,100,81,91,107,114,103,113,111,114,107,107,107,110,111,99,104,108,100,98,123,114,101,90,99,117,122,116,136,138,169,162,152,169,179,189,144,161,161,152,149,154,155,156,147,141,131,125,99,116,118,117,98,77,110,103,107,112,95,109,113,92,107,117,105,92,107,104,105,101,93,71,118,101,102,99,90,119,102,102,102,107,104,98,107,96,108,104,112,104,102,110,117,103,104,114,101,107,89,103,115,102,121,132,91,101,100,100,98,95,103,106,101,104,105,104,109,112,115,117,108,100,101,100,94,100,102,94,95,104,100,107,115,101,101,107,98,116,99,107,95,105,100,101,89,110,91,99,117,99,101,71,86,84,108,109,98,106,102,107,118,114,103,93,90,92,100,105,124,92,117,110,116,94,114,108,100,107,102,102,94,100,109,101,88,104,109,88,97,115,94,102,101,130,71,99,113,113,101,106,98,92,108,108,109,108,101,105,104,108,116,104,105,114,97,101,107,104,105,103,98,97,106,105,89,98,102,101,116,112,92,108,91,107,112,103,110,98,113,111,100,112,103,100,88,92,70,93,112,106,102,110,110,115,100,100,97,104,102,106,90,109,118,99,99,90,105,101,93,97,114,105,108,105,105,101,98,109,101,117,107,105,113,95,106,96,100,92,110,121,114,102,112,105,108,106,109,101,101,101,116,96,104,113,102,103,105,115,98,102,100,110,99,107,92,106,95,106,94,104,108,109,100,109,113,123,106,109,103,109,103,102,101,113,99,101,112,98,113,103,98,95,113,99,102,94,112,103,99,113,101,105,92,106,127,109,105,99,111,107,111,106,94,109,100,86,106,104,98,112,93,94,114,115,100,105,103,93,105,91,104,107,115,116,102,114,103,114,121,105,102,94,98,101,111,119,98,98,113,109,110,101,118,97,104,102,98,98,112,105,109,92,103,95,100,103,96,110,109,103,121,98,128,103,111,109,109,102,101,99,103,96,88,107,104,96,95,113,93,105,101,102,106,101,102,104,99,106,104,112,115,102,99,103,107,91,94,98,93,93,115,125,94,94,93,101,107,89,105,101,96,104,101,104,109,101,119,113,101,110,103,121,105,103,107,92,94,108,108,99,104,103,113,98,111,105,109,126,111,104,107,113,102,103,106,90,103,106,105,110,103,105,100,104,99,100,109,103,95,113,106,107,98,106,104,112,99,109,99,106,102,107,101,118,94,113,121,117,100,113,116,99,104,101,98,101,105,97,94,115,99,111,90,96,85,108,96,108,110,104,93,109,113,93,102,106,98,104,102,89,94,107,118,103,112,105,98,107,109,77,106,113,101,108,91,67,93,105,99,104,110,110,103,110,98,115,102,101,105,100,106,98,106,100,105,101,109,87,100,105,101,105,110,105,100,101,115,99,100,114,104,104,104,103,105,104,109,103,99,103,100,106,100,107,103,105,104,110,112,109,106,95,101,106,94,105,102,99,107,105,102,117,104,112,101,96,97,106,100,104,104,106,109,97,94,95,105,106,121,116,116,107,106,103,103,110,99,106,114,102,112,109,95,104,102,110,102,100,92,105,114,98,102,104,99,99,106,89,115,120,104,110,102,97,98,113,90,71,105,101,109,93,100,99,107,117,102,102,92,103,99,100,88,109,102,106,99,102,108,103,103,107,81,94,107,116,98,92,113,89,99,102,114,128,99,82,83,107,100,99,100,95,109,113,113,101,106,103,111,121,105,111,106,106,112,95,109,104,98,106,109,103,100,109,108,112,102,110,122,108,99,113,103,100,99,104,105,97,100,105,105,95,100,110,107,113,98,87,104,104,110,104,97,83,105,98,113,96,117,102,109,105,110,119,110,116,112,108,99,128,99,97,101,99,128,112,100,95,100,115,101,111,97,106,112,87,107,107,114,105,109,105,110,104,110,104,100,113,88,98,98,104,104,106,113,105,107,110,116,88,103,117,105,109,113,105,105,104,110,103,97,99,88,103,117,112,84,94,104,106,104,100,106,110,112,99,85,100,104,106,100,92,105,109,98,106,109,105,101,113,104,113,113,104,112,98,100,106,99,98,102,106,102,102,101,113,101,105,112,101,97,121,102,95,95,97,121,105,103,97,69,106,106,105,100,107,95,120,96,119,97,97,111,95,100,91,94,88,102,104,112,107,121,102,89,111,104,98,110,96,102,108,105,106,104,98,94,99,108,88,102,108,121,103,101,99,103,103,93,92,98,108,90,105,109,96,111,91,119,99,105,95,101,98,118,100,101,110,106,102,116,104,93,94,96,95,105,100,100,88,101,115,120,109,122,73,89,93,105,103,108,88,105,91,109,106,95,109,94,105,94,107,121,110,110,92,95,106,101,101,100,99,104,100,101,102,99,113,100,108,103,100,101,105,95,80,93,79,86,115,105,110,111,100,116,104,104,107,106,73,105,103,93,112,97,104,108,109,96,127,97,120,107,96,103,98,100,98,103,123,116,104,89,115,103,102,89,107,106,109,109,100,98,108,107,108,106,97,98,109,96,99,100,115,96,106,84,106,100,107,112,102,101,103,117,89,102,110,105,114,121,105,96,104,107,100,92,110,101,113,100,96,101,106,98,107,98,95,98, +588.88782,105,99,92,106,98,116,115,100,96,109,112,110,95,111,81,113,84,112,111,94,98,113,100,104,111,105,130,106,110,132,95,115,97,98,105,103,100,95,114,112,115,109,105,123,106,102,109,103,104,99,114,102,95,88,114,93,95,109,109,101,93,116,99,97,110,104,100,96,111,102,99,104,103,112,111,109,103,98,110,112,117,113,88,118,104,104,100,118,105,111,120,109,121,109,105,108,118,115,102,113,97,114,112,106,101,104,110,107,104,95,98,88,113,99,106,113,114,107,117,102,97,118,114,114,105,114,107,104,124,122,117,103,115,131,103,109,107,105,103,116,105,99,99,94,107,100,103,106,102,104,105,101,96,101,97,122,127,90,94,107,99,100,108,108,109,108,107,105,105,102,101,97,107,97,96,99,102,107,120,134,105,107,111,96,117,108,112,104,104,106,65,102,101,99,104,106,93,103,106,104,116,112,103,99,98,101,90,106,107,132,99,119,110,120,110,102,110,104,98,102,104,108,108,107,101,113,104,106,113,105,114,121,103,111,102,108,110,109,115,99,118,105,116,111,101,101,113,79,113,98,103,107,105,106,110,109,104,120,105,104,98,130,96,101,103,104,100,100,102,104,103,109,106,107,109,113,108,112,114,113,103,114,90,109,104,110,108,111,110,79,102,105,113,113,114,107,87,104,99,116,105,98,103,117,97,124,108,116,100,115,100,119,106,106,114,98,122,101,104,107,115,101,104,101,113,98,113,101,105,105,105,111,99,105,107,109,114,95,104,121,103,98,109,104,121,110,109,110,107,116,109,94,112,102,119,99,108,124,107,112,103,116,100,103,92,116,97,112,87,102,105,99,107,102,102,103,117,116,97,112,111,122,100,122,106,110,103,113,115,105,117,102,105,110,102,106,107,113,105,95,115,104,97,99,101,113,96,110,101,110,109,79,102,102,119,106,99,102,112,108,109,117,100,114,108,107,101,96,103,109,103,103,95,110,114,98,101,106,106,102,106,107,117,104,99,102,94,108,101,112,105,106,117,124,109,101,106,120,117,112,110,113,110,109,110,98,101,110,106,104,112,121,96,108,128,110,111,116,117,114,106,102,111,107,107,106,106,117,102,106,113,112,104,99,100,106,117,107,115,86,89,103,116,109,97,116,100,105,106,103,104,102,101,98,84,112,107,117,112,110,108,114,109,108,100,105,104,109,113,112,101,99,101,103,114,123,105,107,107,111,114,107,98,103,112,99,105,104,108,111,126,114,105,113,114,110,113,101,104,112,106,102,96,117,104,111,118,102,105,116,100,99,100,107,108,102,118,112,101,115,115,101,108,102,100,105,111,106,107,110,116,119,105,98,110,136,104,105,114,120,115,102,107,101,102,106,111,118,110,101,98,97,100,115,117,111,103,109,107,104,107,102,105,114,108,88,102,113,107,110,107,107,98,107,97,113,104,99,116,99,113,99,105,102,106,104,100,96,110,103,98,129,114,109,109,107,114,112,106,111,120,106,107,110,102,100,111,93,110,102,117,92,112,101,108,121,101,111,110,109,113,111,113,76,119,91,115,104,112,95,101,112,103,120,106,111,109,110,105,87,114,105,105,106,110,105,96,116,100,115,109,98,101,115,105,99,108,112,92,112,110,112,109,119,105,103,112,111,108,119,110,113,116,105,93,107,122,104,114,102,117,115,115,94,113,101,106,107,112,95,109,102,103,103,92,110,108,96,119,99,113,99,99,111,108,90,91,104,109,109,112,113,102,112,117,102,107,104,109,97,103,130,119,100,100,110,119,111,107,109,113,113,113,109,120,113,105,96,129,115,108,98,110,98,113,101,105,103,108,102,114,97,117,120,110,98,108,115,113,112,112,111,117,102,96,122,106,99,112,113,103,101,113,110,107,102,102,99,91,119,108,116,107,84,114,104,97,96,103,95,122,104,99,114,100,108,96,133,112,112,108,115,102,103,117,101,109,103,115,112,109,112,103,108,97,102,108,111,102,104,112,113,99,103,116,110,71,99,115,110,100,107,114,111,103,101,98,107,105,107,115,88,107,118,102,98,115,116,105,103,99,106,107,116,117,96,99,114,116,109,98,111,105,114,111,105,99,113,103,114,103,105,107,116,93,117,104,98,109,109,132,109,115,88,103,83,97,111,96,108,97,95,112,108,109,110,127,105,100,99,115,113,105,110,111,109,106,108,106,111,104,98,100,108,102,103,113,96,106,137,100,109,104,105,101,114,109,105,109,103,93,105,128,111,96,116,109,111,116,93,101,105,110,107,103,104,107,116,105,107,99,96,110,114,110,123,109,107,108,113,98,101,116,87,100,112,99,104,107,102,115,118,120,109,109,132,121,136,122,123,141,157,157,158,187,166,169,157,170,151,160,150,143,142,124,154,131,126,125,107,118,111,93,113,100,117,110,110,124,100,100,120,108,110,116,94,109,109,102,97,96,96,110,112,106,107,104,89,101,100,96,112,96,101,92,103,113,94,94,120,117,92,103,108,118,91,92,112,102,106,113,133,105,112,103,96,105,107,108,106,108,118,114,117,104,98,108,97,113,108,103,108,101,97,96,105,87,104,100,105,105,96,91,102,102,100,110,114,112,102,108,108,106,112,99,104,106,110,95,89,117,100,106,98,103,111,95,102,102,104,113,101,113,105,102,112,104,113,91,123,93,94,105,103,105,111,105,104,104,103,112,91,99,106,96,108,99,82,109,110,112,99,119,102,95,115,100,100,103,113,105,101,102,116,119,102,102,117,95,112,105,114,101,94,101,104,101,116,111,107,107,104,99,111,103,102,89,106,120,103,91,103,111,99,98,113,108,106,101,102,106,113,123,93,110,110,103,120,88,100,109,103,110,111,120,97,108,109,93,98,106,101,109,113,103,96,101,101,97,103,95,75,104,109,95,114,95,93,110,116,102,106,101,111,98,120,105,107,110,108,99,112,73,117,103,102,101,116,90,102,100,110,98,91,113,110,117,110,95,100,94,107,101,95,103,113,116,103,108,103,110,107,98,110,110,94,104,103,117,110,116,108,109,103,110,115,111,109,118,101,108,112,94,99,102,107,99,107,105,104,104,124,117,100,110,115,108,98,106,99,113,102,102,99,106,100,115,125,108,99,99,116,111,113,113,114,100,105,101,108,99,100,102,116,104,91,108,94,114,107,100,95,101,102,101,108,107,106,109,121,101,139,108,116,108,98,96,102,100,113,111,98,102,104,98,103,95,104,110,110,97,108,130,115,102,94,106,100,96,117,103,95,111,106,95,110,99,120,113,110,117,105,107,117,109,101,98,104,108,102,107,99,108,114,113,106,112,100,94,107,107,102,110,120,98,107,102,104,110,112,106,109,120,97,96,110,107,92,103,96,94,106,94,110,99,105,88,101,95,104,102,113,105,100,103,109,111,97,102,109,101,112,108,108,107,102,100,103,103,93,116,110,101,112,109,133,111,106,94,110,109,99,106,113,99,103,105,103,107,108,101,112,105,106,99,128,103,98,111,99,107,115,99,113,95,94,107,112,106,110,108,105,117,115,98,120,109,94,99,102,107,109,97,113,113,113,103,64,103,103,102,107,98,106,106,98,104,103,108,95,101,98,105,116,117,95,112,108,109,108,110,106,100,89,98,109,108,103,117,109,105,91,98,102,109,92,95,110,102,91,105,109,101,97,99,91,98,123,103,102,83,99,98,92,108,96,105,104,105,108,95,98,101,88,95,99,109,101,114,105,105,104,113,98,110,93,89,87,108,114,97,98,102,108,116,115,107,110,102,105,100,105,112,113,105,111,113,105,99,108,111,107,95,104,104,105,105,109,103,113,108,107,100,101,100,104,83,115,106,89,92,106,104,111,116,105,107,100,96,108,98,102,68,100,100,79,94,116,103,99,99,102,99,100,101,99,113,100,113,101,96,115,117,109,96,113,95,94,92,129,90,106,97,111,104,98,114,111,100,104,101,109,104,114,114,103,109,105,103,113,97,106,95,98,105,98,102,100,109,107,103,105,109,111,111,113,100,109,112,103,99,114,103,96,96,107,113,110,108,101,102,107,99,106,95,103,113,113,102,82,95,102,113,110,104,113,99,113,105,99,102,118,87,108,107,103,109,113,95,117,103,97,90,110,101,130,99,111,107,111,106,98,101,99,108,101,100,111,106,104,114,111,105,109,110,91,107,113,102,95,112,96,99,104,108,111,92,97,100,104,103,110,108,108,95,101,110,99,103,105,111,95,104,116,103,91,102,103,116,100,111,102,88,99,100,105,95,94,98,108,92,97,116,93,105,83,99,95,108,109,106,98,110,100,102,84,108,106,102,103,112,101,97,100,105,102,106,105,107,106,106,103,100,100,115,98,99,102,110,111,101,106,87,102,91,110,98,96,114,103,105,94,96,106,110,115,115,100,111,115,104,105,106,103,106,104,97,87,114,119,107,110,106,103,108,106,105,103,111,89,96,95,102,110,114,102,106,105,87,102,94,100,97,103,106,99,109,106,116,113,90,105,134,102,99,108,104,85,114,102,111,111,105,103,120,100,85,110,113,111,99,96,111,102,108,112,113,104,95,96,103,93,105,115,103,104,94,112,100,99,103,107,100,92,102,109,95,99,90,110,112,96,101,97,111,103,114,109,103,102,114,93,102,114,101,92,100,98,93,96,109,113,94,105,113,99,117,110,94,98,114,107,108,104,110,110,108,109,81,104,105,103,107,96,97,98,96,87,97,107,102,110,103,117,94,120,109,109,112,103,105,102,100,88,113,119,97,91,98,110,94,98,100,103,110,81,106,94,106,104,116,116,91,104,99,110,100,105,103,93,108,139,88,109,96,108,97,103,73,100,105,130,104,108,100,99,111,119,104,105,105,105,109,97,107,97,104,112,95,96, +589.02881,104,110,97,91,95,102,109,96,93,102,96,102,95,115,99,112,103,88,115,100,115,87,83,101,101,87,112,101,101,118,103,98,107,95,100,106,103,100,103,90,99,99,113,91,107,95,87,110,103,96,103,101,107,108,104,106,99,114,83,90,109,97,105,114,105,105,98,108,98,99,104,116,99,98,116,115,102,107,105,111,109,114,109,91,99,103,108,103,107,109,104,95,106,95,104,92,97,105,99,106,94,103,107,95,98,102,98,100,113,95,105,111,107,107,105,107,110,95,111,99,103,102,103,103,103,112,109,112,103,112,103,104,96,108,126,91,93,99,110,107,106,100,98,101,93,103,103,69,98,110,91,111,109,87,86,102,104,95,106,109,115,102,98,108,98,94,108,97,95,96,101,116,99,67,94,106,112,103,106,106,101,108,99,98,99,114,106,96,110,95,98,97,100,103,96,91,98,110,101,104,99,103,96,106,105,113,109,86,106,94,101,104,119,94,106,99,94,106,91,110,113,110,102,113,109,111,99,106,106,110,102,106,117,102,113,103,106,99,112,105,105,105,113,100,95,106,105,119,81,116,96,79,102,119,100,111,103,102,104,112,98,112,102,99,96,91,100,94,105,93,115,110,105,98,103,110,107,104,104,95,115,106,97,102,99,100,105,105,103,102,108,104,107,109,125,104,104,107,101,109,107,114,113,108,99,109,95,106,110,102,108,112,109,102,104,79,110,107,100,99,120,96,95,94,109,104,110,112,104,102,109,113,97,114,105,103,106,100,76,116,125,103,90,112,102,113,114,109,103,91,95,99,111,94,112,100,86,113,107,121,87,102,89,104,98,104,99,103,98,109,114,111,116,99,111,98,105,94,104,108,102,125,97,101,109,111,104,105,99,106,103,105,100,99,77,98,108,101,117,109,107,100,105,100,112,100,102,97,113,105,104,100,99,106,112,93,103,109,107,109,103,107,94,98,108,93,99,110,103,97,104,102,98,95,107,95,95,116,95,112,99,98,96,96,112,108,110,103,101,113,108,97,113,113,112,100,107,111,108,115,108,105,108,103,115,113,109,112,82,106,106,103,110,105,96,100,106,110,117,105,113,107,105,103,93,113,105,107,106,78,121,111,104,118,117,98,94,92,103,109,102,104,81,105,106,118,96,107,103,102,86,109,102,97,103,109,109,96,100,109,100,109,109,109,99,102,108,102,109,101,93,124,102,110,110,101,103,95,95,110,108,106,109,103,106,104,110,93,108,119,108,96,105,104,101,95,94,110,99,101,105,107,104,103,92,100,107,108,99,98,102,91,111,107,108,97,112,92,114,102,102,119,105,105,93,111,100,108,98,92,100,122,110,99,104,127,106,105,114,101,88,102,104,101,112,93,99,101,114,94,107,87,108,102,105,105,104,107,103,108,104,114,99,104,109,109,98,105,86,105,94,103,102,106,101,103,105,104,100,113,112,110,110,100,117,97,104,101,99,104,111,117,113,104,111,98,109,102,91,98,98,102,99,90,95,100,108,108,100,137,108,112,113,100,101,105,99,101,104,101,108,116,105,107,94,108,110,92,108,109,109,95,109,111,105,98,101,106,106,99,105,102,99,90,98,94,109,102,103,114,99,108,98,107,100,81,105,95,102,116,94,94,103,108,101,98,113,104,100,108,104,100,97,76,106,103,110,85,122,104,108,111,112,98,105,112,100,95,101,98,116,97,102,89,102,113,115,105,117,100,103,104,98,105,101,104,109,102,112,98,116,103,106,101,101,116,97,96,109,102,113,107,119,107,100,100,106,87,118,111,124,109,111,113,115,112,101,96,103,109,101,107,102,107,102,104,103,115,104,114,119,100,112,97,108,105,102,99,107,109,96,100,99,102,102,102,108,114,120,104,115,108,117,108,101,110,107,102,102,97,116,118,104,113,97,103,109,104,109,101,98,106,120,106,99,96,107,103,103,104,95,94,104,113,92,100,111,107,93,117,136,107,84,103,105,107,110,99,96,103,113,102,108,100,101,109,105,110,109,96,96,112,103,109,92,107,103,107,99,85,112,110,102,105,97,119,98,109,103,104,98,90,112,108,109,102,96,105,87,109,109,112,104,97,105,106,103,101,112,103,99,100,102,98,101,104,91,102,95,102,112,102,103,99,91,101,90,105,98,93,100,91,115,96,111,109,111,104,112,115,107,116,95,98,89,90,97,100,109,100,101,102,103,103,110,108,96,100,108,109,104,100,106,107,97,105,107,107,106,111,102,96,100,93,129,104,104,103,101,111,117,116,107,116,105,113,109,98,102,104,98,112,112,119,107,113,89,97,87,101,112,112,108,103,103,98,115,100,97,103,110,111,118,120,116,112,110,144,122,125,173,154,167,140,169,164,166,138,157,177,148,125,127,155,132,121,118,101,128,120,106,102,122,118,106,106,97,111,111,106,102,113,120,110,115,98,110,109,99,104,98,99,98,113,117,107,102,104,104,101,93,116,96,99,101,110,98,103,111,105,75,101,120,124,109,114,103,96,100,109,103,104,111,106,120,105,115,105,107,109,125,97,136,96,103,109,96,112,107,102,110,109,96,95,116,101,104,110,112,105,98,99,101,96,111,100,104,102,112,99,115,95,99,95,106,108,108,111,99,111,113,96,109,92,105,104,109,96,111,98,98,107,104,104,109,114,107,111,96,104,107,105,108,115,81,108,99,89,103,116,95,100,109,106,100,94,107,85,105,102,111,109,108,111,104,109,104,103,104,101,105,98,101,97,104,110,95,107,96,124,106,108,100,102,110,129,111,104,98,100,90,111,97,102,112,101,116,104,111,104,93,118,107,107,103,115,110,107,105,103,106,100,107,109,104,89,109,111,102,91,98,105,105,101,93,103,104,110,94,113,104,110,103,111,110,86,101,98,96,108,112,116,106,106,98,108,97,94,104,104,108,117,127,117,102,109,120,96,114,102,113,94,102,112,101,99,102,96,111,91,111,106,102,109,104,105,104,109,112,112,103,109,103,121,126,86,101,103,98,110,106,105,100,109,102,100,99,97,96,107,102,103,103,113,103,104,99,113,105,105,112,112,94,108,110,104,118,108,101,97,110,114,120,92,110,111,103,108,110,109,115,106,121,101,107,116,99,99,114,110,106,95,106,114,101,96,99,104,96,106,104,101,95,112,107,114,93,107,111,111,103,109,97,96,98,91,102,112,105,101,91,105,96,109,104,95,101,93,112,100,102,98,92,118,106,90,95,101,116,71,115,103,108,112,102,78,105,123,108,100,94,94,103,104,97,91,91,106,114,109,110,95,128,101,107,98,109,107,111,103,113,110,107,115,131,95,98,101,111,105,111,115,105,100,104,99,98,113,104,103,96,109,110,113,97,98,108,100,104,104,99,103,104,103,109,103,101,120,101,106,110,102,103,103,109,99,99,99,102,110,109,118,108,104,98,108,111,106,98,99,115,107,104,119,107,119,103,106,117,101,104,103,113,107,97,108,105,108,109,99,103,106,118,114,115,109,105,119,83,95,108,109,107,117,113,119,117,107,100,99,111,97,102,102,113,106,111,99,105,101,119,106,101,106,107,94,103,103,95,98,102,99,109,106,108,103,100,91,108,107,106,113,109,104,95,102,110,104,113,110,113,112,117,112,100,98,91,101,100,115,98,114,98,99,99,106,97,108,101,103,111,103,95,101,110,80,104,92,107,90,106,98,128,107,103,111,103,104,103,108,94,113,105,114,116,99,108,104,99,106,98,116,95,92,111,109,102,105,101,106,94,98,104,104,108,117,99,98,112,105,97,106,94,98,99,99,104,102,99,98,102,87,107,116,105,102,108,102,104,120,93,106,96,92,105,99,107,104,121,106,99,105,90,110,117,109,91,100,97,99,112,108,99,100,102,105,102,105,102,104,111,108,117,106,117,103,111,101,110,100,100,109,102,102,97,102,108,105,105,105,110,103,108,110,106,112,108,105,95,106,102,93,110,102,104,112,106,98,106,105,110,116,105,119,106,104,109,99,112,105,104,95,102,110,104,108,117,106,97,102,109,98,112,113,102,122,94,106,106,106,107,98,100,102,102,109,102,125,98,107,109,100,93,80,109,116,112,115,91,109,95,100,94,103,104,121,108,113,99,104,100,95,110,114,104,106,97,95,118,104,107,94,87,104,97,117,122,111,100,110,105,124,111,98,95,104,110,112,99,106,117,111,100,109,100,106,106,100,98,104,102,103,95,109,107,91,120,100,100,96,102,103,101,105,101,99,98,111,106,106,112,88,111,106,106,110,102,108,84,103,109,111,104,95,135,105,104,109,106,117,104,101,108,109,117,108,105,112,108,110,119,97,105,116,97,109,101,106,103,103,90,119,105,107,102,102,116,91,93,96,107,116,100,109,107,100,102,101,99,89,78,85,109,108,105,103,104,102,107,110,113,103,104,93,92,93,98,111,97,116,96,99,100,109,102,106,91,106,95,105,105,104,99,115,102,98,99,88,91,98,102,104,91,94,103,102,105,106,102,91,98,99,103,102,103,102,76,97,100,107,93,101,105,103,106,101,101,92,101,106,102,112,113,101,100,100,109,116,87,107,94,98,101,98,105,104,98,95,105,103,97,108,94,101,103,108,100,79,111,82,118,107,106,87,102,104,105,121,97,88,98,98,104,102,107,110,106,89,113,108,96,112,96,105,103,115,104,127,108,117,108,107,106,106,104,90,102,108,104,86,99,116,105,108,101,100,99,95,102,111,92,98,112,90,120,85,93,95,109,102,108,95,115,119,96,99,114,99,105,113,96,100,108,98,101,92,102,100,107,99,107,96,103,107,105,102,101,102,94,106,118,100,111,115,97,103,98,106,98,85,115,98,103,104,109,112,100,107,103,106,112,94,106,95,120,116,102,105,92,101, +589.1698,103,108,95,108,101,110,91,127,109,100,98,101,114,112,115,98,88,101,103,103,99,108,108,112,105,115,93,105,103,96,121,100,92,108,113,88,121,106,97,98,90,106,136,100,98,105,97,110,105,104,93,103,106,103,102,106,109,110,113,99,92,107,109,93,102,114,107,109,107,90,111,108,103,110,101,111,96,139,104,107,109,97,103,96,103,94,109,100,100,101,100,103,96,106,103,104,102,94,105,113,96,106,97,104,107,108,95,113,100,120,100,97,77,105,100,96,110,102,108,104,98,105,104,106,107,114,110,103,114,93,107,104,97,99,102,104,113,111,107,110,108,95,112,93,102,105,109,100,98,96,101,101,102,97,95,100,103,101,99,112,99,102,109,95,106,105,106,111,102,105,102,96,109,104,105,120,106,110,100,97,132,108,108,106,97,98,95,93,109,102,101,94,93,106,92,102,111,124,96,115,90,120,106,109,89,102,99,98,109,108,97,102,101,106,117,95,102,102,100,96,117,118,99,101,99,122,103,113,112,111,102,103,100,106,112,99,105,110,103,102,97,108,118,100,104,99,103,105,114,92,109,107,96,103,98,110,107,92,104,105,97,114,103,105,95,105,109,109,104,87,107,114,94,103,107,111,103,119,111,106,98,114,105,137,84,105,97,100,109,104,108,102,109,121,106,110,113,105,117,113,93,92,78,102,98,106,108,113,105,110,108,102,116,115,106,99,109,84,101,117,120,96,108,110,124,108,101,80,112,108,108,109,102,105,105,100,93,107,97,105,104,114,125,108,106,95,105,110,108,105,105,107,105,103,109,112,107,114,76,109,103,103,94,110,99,105,97,104,108,113,105,105,116,114,105,99,107,121,110,108,108,108,95,94,108,85,95,110,110,109,105,94,103,108,109,102,111,90,105,104,107,96,102,94,112,99,105,104,112,102,117,107,113,106,101,100,107,104,115,102,105,113,93,108,102,91,107,106,96,99,99,113,109,101,103,103,98,100,105,97,117,105,98,100,94,108,102,103,91,107,102,99,116,106,107,104,112,97,105,103,101,94,110,96,118,115,108,102,105,94,113,87,94,100,103,91,102,107,113,102,111,105,104,103,99,97,103,76,105,102,112,106,109,110,96,106,109,108,116,112,123,94,97,103,99,110,99,111,104,110,106,109,99,91,109,93,109,109,102,102,110,118,118,111,98,98,101,115,108,115,105,123,113,112,119,106,103,97,84,108,95,104,112,106,105,102,109,106,121,109,111,110,118,99,106,91,95,107,103,104,118,105,101,123,96,102,113,105,103,96,95,105,110,107,104,108,104,114,100,103,107,104,111,100,105,115,112,108,106,103,114,112,106,104,126,103,105,111,113,99,107,127,105,107,111,103,94,105,110,116,111,110,105,105,99,101,101,117,106,99,116,107,108,105,101,102,108,90,109,108,105,104,98,113,102,113,102,106,94,95,116,107,110,109,101,97,101,98,110,111,101,106,110,106,77,110,103,98,108,104,112,92,108,98,109,106,100,97,122,105,111,113,102,106,103,113,106,112,107,108,108,104,106,102,98,98,96,90,103,99,98,108,95,113,106,100,107,98,108,102,97,104,106,113,118,107,103,101,106,110,99,105,101,109,102,111,108,88,105,99,111,106,113,87,106,100,112,106,110,106,115,103,94,111,121,101,114,105,112,106,99,113,108,91,102,95,105,103,100,106,109,95,95,99,98,106,109,110,110,112,111,104,100,114,100,105,98,107,104,100,121,117,102,99,101,104,98,104,114,106,111,102,106,114,67,99,120,103,105,112,111,109,105,105,115,113,92,109,117,116,112,103,106,103,105,100,101,110,112,115,119,93,99,98,109,113,121,113,104,106,117,109,103,104,90,117,104,121,116,108,110,85,112,108,114,107,109,101,104,114,107,99,102,98,108,103,111,100,101,102,103,100,100,108,89,81,96,107,99,109,108,108,111,96,113,91,102,89,107,76,110,108,112,106,109,103,102,106,95,91,90,110,107,120,104,110,101,105,114,108,112,109,106,122,112,95,103,100,95,112,102,107,102,112,103,113,103,112,103,111,104,114,129,119,103,108,102,112,99,101,121,109,103,106,102,106,121,106,100,113,100,116,120,103,101,88,96,103,104,99,103,98,106,106,107,99,102,105,111,102,90,105,118,109,109,103,102,107,93,101,104,124,98,109,104,109,98,94,108,107,105,113,107,116,107,105,104,124,121,98,101,110,100,109,100,98,105,99,103,110,105,96,108,113,96,113,102,105,100,105,103,111,104,113,111,108,105,107,97,111,105,112,99,95,103,96,110,92,114,111,112,85,106,109,109,109,111,115,110,118,103,117,114,110,103,93,106,139,128,142,144,149,178,186,170,170,170,164,178,152,140,158,153,126,123,108,122,140,125,115,102,113,109,96,102,98,102,109,108,101,100,118,93,77,123,123,105,109,107,107,101,110,98,115,109,95,102,109,111,106,106,112,112,101,102,102,110,117,107,98,104,100,94,104,109,111,113,105,127,115,97,99,107,104,109,97,110,127,100,106,111,100,91,107,99,108,103,108,103,102,110,108,102,94,104,110,121,112,98,102,112,111,95,128,94,105,105,108,131,100,114,101,116,105,107,96,107,96,100,107,113,104,101,96,98,97,117,94,114,106,102,97,113,109,105,90,116,105,99,101,107,106,106,116,109,112,115,102,99,104,103,111,106,112,100,99,117,112,100,105,104,113,108,106,99,104,99,109,105,118,115,103,99,108,109,111,105,117,126,102,106,106,101,104,110,94,103,108,121,103,110,114,106,134,113,92,107,112,105,115,112,103,103,92,109,102,106,95,117,115,106,106,107,116,103,108,103,104,104,121,113,100,112,106,108,101,101,100,103,115,107,108,116,119,113,100,99,106,87,104,120,105,93,96,118,106,110,97,100,112,105,108,99,105,106,99,96,97,103,105,104,112,104,113,100,101,108,105,101,101,98,102,103,100,112,108,112,103,102,120,115,109,108,102,105,114,95,105,106,97,108,98,107,102,102,106,114,111,100,104,105,97,109,104,104,78,109,99,103,90,95,102,105,95,101,101,115,106,102,105,107,101,102,99,108,102,107,109,109,101,90,100,100,105,102,109,100,113,113,101,112,105,108,90,118,103,101,95,105,109,102,96,103,101,109,105,101,107,113,112,105,102,94,101,105,112,118,142,113,91,77,102,106,102,113,96,100,111,95,106,110,122,106,107,111,95,103,100,109,110,108,107,97,105,122,97,102,93,91,102,96,117,109,103,121,97,101,97,108,107,102,107,106,100,99,120,118,94,113,104,113,104,86,113,104,107,98,86,116,89,98,99,101,95,102,107,115,98,109,109,105,109,114,103,106,118,94,108,98,141,102,111,110,103,98,109,118,99,89,96,86,120,106,115,112,111,109,107,104,103,100,117,100,97,106,110,107,113,105,104,106,105,99,108,98,84,102,112,98,107,113,109,105,114,104,118,102,107,113,96,116,105,113,115,108,94,104,106,100,95,113,104,104,112,106,102,104,113,105,109,98,103,104,96,91,109,100,99,109,112,110,106,101,108,105,100,109,99,107,106,101,104,110,98,100,107,96,104,105,109,105,117,106,111,100,105,111,106,108,105,112,107,92,105,105,102,112,89,96,113,106,110,103,100,116,95,109,110,108,103,109,118,106,98,100,111,115,99,104,108,102,106,110,95,114,100,108,112,105,98,106,112,131,104,105,99,113,103,113,113,116,110,106,113,101,106,102,110,109,110,105,104,95,102,105,103,113,100,116,106,102,102,98,138,99,111,106,107,117,96,94,98,112,104,98,110,104,108,87,112,110,113,130,108,118,109,97,102,114,100,100,93,97,114,100,124,115,110,95,122,101,96,98,106,110,90,110,102,108,117,104,103,95,107,96,109,99,103,103,101,103,96,110,95,106,94,87,104,104,95,110,101,105,104,103,105,102,97,94,93,96,110,106,99,109,105,90,100,110,113,102,110,106,97,100,96,115,97,98,115,102,101,104,93,110,110,106,117,109,105,114,85,106,106,107,107,127,107,107,113,96,113,109,110,111,121,98,90,105,105,111,98,97,119,116,113,103,105,105,108,113,105,88,105,115,113,113,99,102,101,96,97,105,106,102,104,107,105,121,114,107,102,107,100,95,104,95,109,107,121,106,102,120,106,109,101,102,109,105,96,98,104,105,103,103,104,107,106,82,103,106,105,101,110,98,115,101,112,108,100,109,107,104,114,108,99,108,113,105,108,113,103,110,106,105,106,109,116,99,95,109,103,113,105,99,108,97,99,97,102,137,110,118,114,102,111,95,98,106,110,107,100,100,105,138,102,101,109,98,121,100,109,107,115,99,113,93,102,109,101,103,88,100,110,111,96,99,103,105,113,101,93,102,103,101,105,103,99,113,103,102,109,106,104,115,99,97,125,102,81,97,99,107,107,100,89,93,97,117,104,113,106,113,103,105,110,92,101,96,100,113,81,107,89,106,125,106,94,105,97,97,114,106,95,104,115,97,106,94,82,91,112,99,121,98,106,114,112,112,98,116,97,111,108,104,105,103,110,99,106,90,88,109,109,102,123,95,78,106,93,110,108,111,97,102,119,91,77,109,94,111,100,106,109,105,110,101,105,108,98,100,109,108,101,100,104,107,97,97,116,99,106,121,110,105,99,111,129,105,110,109,109,112,104,117,92,103,87,102,106,105,115,102,100,104,86,101,109,107,103,113,94,109,100,99,102,108,111,104,108,99,104,92,112,99,111,101,109,99,101,104,102,102,94,108,114,87,108,99,73,109,90,79,106,106,128,97,109,93,103,102,107,96,106,93,109,98,100,110,101,103,106,113,94,105,102,101,105,98,87,115,103,104,99,95,112,116,110,109,96, +589.31079,111,77,101,83,104,110,104,110,100,110,95,77,104,108,109,101,100,109,104,106,112,108,104,100,91,113,102,112,112,106,101,102,108,119,106,101,104,113,92,106,103,107,104,104,104,105,108,103,101,115,112,99,104,90,118,79,105,98,109,95,112,108,100,103,104,111,105,106,90,95,114,119,121,110,119,112,102,103,115,104,92,103,108,108,101,92,114,111,104,96,103,108,102,113,106,114,105,100,113,105,102,99,113,96,95,102,93,106,97,105,120,113,96,97,100,95,102,99,117,120,99,105,117,105,111,103,101,106,120,102,108,107,106,102,106,100,111,108,93,100,110,110,99,111,104,105,109,104,106,74,96,104,112,109,99,98,94,100,117,95,101,98,107,94,102,109,91,104,115,86,100,99,104,112,105,94,101,100,102,103,101,115,108,122,101,98,95,110,111,100,95,101,106,103,118,107,95,98,108,103,96,103,101,107,91,89,104,102,101,106,103,103,100,98,105,95,94,90,111,114,104,107,101,107,104,116,108,107,106,101,114,109,108,114,92,112,107,88,106,120,112,101,101,103,99,101,117,103,105,109,94,109,107,96,97,112,109,106,95,106,93,111,122,117,102,101,98,107,108,107,104,110,112,103,112,105,105,126,110,107,109,102,111,117,99,106,100,98,101,106,103,110,108,112,100,110,110,100,88,95,88,95,113,115,79,100,108,99,95,102,99,118,100,106,113,96,103,120,118,117,105,105,108,98,116,89,105,99,111,118,105,104,88,93,104,108,97,98,121,107,116,96,97,94,118,108,99,101,116,113,109,100,104,103,94,113,109,108,101,100,96,123,100,99,103,102,104,113,94,91,109,109,109,120,108,91,100,114,99,109,113,109,104,108,101,107,98,113,91,101,111,108,98,91,92,106,102,104,103,112,93,103,99,101,97,106,103,113,121,105,98,90,109,106,118,96,107,108,108,105,104,104,91,102,101,88,104,106,109,108,98,114,87,116,101,93,96,121,121,107,117,93,113,77,105,103,98,105,100,107,103,111,93,100,105,103,103,100,115,108,102,113,111,103,115,124,116,91,103,94,101,103,122,105,110,98,99,103,108,96,108,96,116,100,107,100,108,116,113,102,112,95,102,106,109,103,113,95,99,96,110,105,92,108,107,110,102,109,96,83,102,108,93,120,112,108,100,110,111,112,111,113,105,87,103,114,106,110,104,136,95,94,125,98,115,117,113,97,101,107,98,106,105,91,103,109,106,101,114,117,106,99,101,102,104,105,95,109,109,100,109,101,99,116,109,109,113,83,103,98,97,109,99,107,111,108,107,99,114,111,105,99,107,104,96,105,103,107,99,98,114,106,82,104,115,116,111,103,99,111,98,109,94,96,103,107,95,104,106,106,117,111,102,95,107,96,98,107,93,114,97,101,104,102,99,92,91,80,107,108,109,108,98,109,100,104,112,97,109,100,101,107,98,90,111,103,102,100,119,114,101,112,108,110,100,102,105,102,88,106,106,111,108,110,100,99,115,110,127,116,110,114,100,106,104,103,108,104,98,101,111,99,113,108,98,103,90,113,106,103,108,104,107,105,88,102,104,106,110,111,116,102,103,109,102,117,116,103,100,94,108,121,95,105,79,105,111,103,103,106,99,98,116,121,100,98,104,101,113,107,98,82,100,101,109,100,98,108,110,109,98,105,125,103,101,94,102,107,97,114,106,87,109,111,106,105,113,120,120,109,120,111,107,113,104,106,105,99,107,94,103,97,114,104,99,105,104,94,95,110,109,111,104,111,98,102,106,109,109,103,98,100,115,111,108,99,105,102,105,100,112,100,110,108,111,111,113,99,95,109,108,106,102,109,122,107,95,112,105,105,114,95,109,115,98,109,105,97,103,101,101,98,104,101,109,109,105,105,114,101,106,119,121,105,129,113,112,105,88,113,95,110,103,103,109,110,112,116,104,110,119,89,110,104,107,106,109,101,104,104,105,104,101,108,107,101,106,95,90,112,129,98,94,110,116,117,93,107,108,102,93,103,108,112,106,96,116,107,108,108,99,103,102,101,108,112,105,105,100,102,103,114,110,98,100,106,103,101,104,104,102,114,107,109,117,110,111,112,103,93,107,109,110,118,108,95,108,99,107,103,102,102,112,119,108,104,114,107,97,113,113,105,116,122,109,111,104,115,114,108,119,122,99,113,113,121,101,101,105,114,107,99,108,100,93,102,109,97,94,104,110,113,107,105,101,97,112,99,103,111,105,115,114,95,104,110,101,105,108,97,105,106,103,94,116,108,111,103,111,102,105,119,118,113,105,109,113,100,99,104,105,122,111,112,101,121,100,124,120,103,101,111,126,115,114,106,118,119,138,128,158,138,177,176,207,179,158,187,180,143,161,160,148,148,135,133,139,120,114,106,102,121,111,110,110,110,113,109,116,115,94,113,110,103,117,103,113,107,97,110,124,104,101,109,116,97,91,101,106,104,108,103,113,104,108,107,88,119,111,100,102,103,103,107,93,117,116,98,106,98,111,105,104,99,104,103,113,100,108,108,121,110,104,110,112,104,110,111,108,118,91,124,114,103,111,108,103,106,96,99,99,101,104,101,112,88,117,106,103,111,102,100,119,110,106,103,114,108,110,104,113,93,101,105,107,102,109,101,112,110,106,105,110,102,109,122,96,116,117,106,101,104,102,112,99,107,139,115,116,107,101,102,100,110,114,113,98,98,100,98,105,102,116,113,105,119,109,100,114,116,111,106,114,120,98,111,104,104,124,100,114,121,109,109,110,94,105,113,101,98,109,105,115,95,114,97,110,117,98,110,99,111,108,98,104,109,106,105,104,112,107,109,105,96,106,108,97,117,106,104,94,111,101,103,111,100,113,109,106,102,106,95,116,113,111,104,99,91,106,110,111,107,106,106,106,95,107,109,99,96,106,108,91,113,103,93,64,116,110,99,98,106,99,100,108,109,103,106,94,103,109,110,105,102,110,120,109,104,84,111,99,113,104,116,119,112,119,105,91,95,125,112,113,104,114,105,111,103,105,109,97,111,105,97,119,113,107,108,96,115,107,92,105,98,88,106,107,109,115,106,118,108,100,101,102,101,108,83,95,113,105,105,113,101,109,106,111,95,99,100,110,110,99,107,103,106,103,92,93,113,95,100,99,99,100,107,103,100,112,109,108,120,100,86,99,100,102,104,97,108,104,100,97,104,95,104,115,106,107,98,110,113,107,103,109,90,104,104,108,102,106,111,103,103,112,107,104,114,96,102,102,102,100,102,104,110,107,105,121,96,106,107,99,97,112,102,115,98,108,99,109,103,104,109,103,115,94,88,112,97,105,112,100,109,105,99,113,102,95,116,106,101,110,100,92,109,115,99,99,102,110,107,101,119,84,110,107,108,97,110,102,98,97,100,108,95,100,116,107,95,100,103,99,102,94,106,112,102,109,103,109,105,98,102,104,106,117,102,101,93,87,107,112,108,100,107,101,106,120,104,93,105,98,88,106,109,108,101,106,96,107,109,90,116,100,101,102,104,102,104,97,110,117,98,124,110,104,115,113,130,105,102,104,106,100,109,104,100,108,94,110,103,112,107,95,111,103,91,106,116,105,120,124,114,111,101,110,105,104,107,93,107,113,95,102,94,102,112,114,112,121,95,101,104,107,105,103,114,96,111,105,124,103,123,109,107,95,112,116,116,121,99,112,97,120,104,105,113,104,107,112,104,108,94,72,107,99,109,101,103,102,103,108,93,104,115,102,119,104,110,117,106,103,106,94,105,122,95,107,111,100,106,95,109,108,108,105,94,96,109,106,103,105,103,105,106,111,106,98,104,104,106,102,109,108,100,98,109,109,94,100,100,116,107,102,96,108,105,104,104,102,99,103,105,110,105,106,92,98,95,109,113,101,99,109,96,108,100,96,113,110,104,111,95,114,98,102,112,111,105,83,101,94,106,118,102,100,115,103,95,113,107,102,105,92,106,105,98,105,108,111,100,100,105,92,94,98,107,106,105,103,115,110,106,106,109,115,98,110,116,104,110,104,97,106,108,101,100,109,91,128,93,91,99,102,105,106,98,99,109,101,116,96,101,104,99,106,110,108,92,108,102,105,108,106,109,106,101,103,102,102,95,91,98,109,106,96,107,107,98,105,113,100,102,107,113,107,108,102,95,108,107,105,106,111,102,107,110,107,107,117,109,107,109,99,106,114,98,103,109,106,116,104,101,101,108,104,102,113,109,101,109,104,99,99,97,103,109,121,99,92,105,116,109,100,103,111,79,104,103,104,112,106,101,106,119,106,112,110,106,126,99,94,114,108,103,109,107,92,99,112,106,103,99,106,108,99,107,108,112,102,106,109,108,110,101,104,111,106,109,96,106,95,111,119,118,113,116,108,103,97,94,97,107,103,96,102,101,104,103,120,120,107,100,114,105,105,112,111,106,113,112,110,109,106,105,106,106,103,108,109,106,111,113,113,106,108,98,92,105,94,103,111,116,116,103,108,96,110,87,102,97,108,99,108,90,111,108,110,100,99,108,104,104,94,104,103,90,100,110,102,88,109,82,109,125,101,99,107,115,106,105,108,113,103,99,99,112,107,113,99,125,102,95,100,110,102,99,108,100,119,116,102,103,118,107,122,120,107,104,117,105,109,103,97,114,101,106,101,103,106,103,106,111,112,87,99,114,95,79,99,104,102,114,117,98,98,100,109,101,97,94,100,106,107,106,111,93,121,108,108,109,87,101,103,110,93,104,112,110,111,104,101,97,102,107,111,97,97,85,116,98,91,94,123,101,99,102,104,104,103,112,126,116,100,102,69,99,72,88,107,102,96,109,100,96,85,105,99,110,100,110,100,125,109,92,109,108,92,102,107,99,94,99,99,104,109,118,116,100, +589.45178,101,97,98,102,97,120,99,98,98,104,104,95,100,125,110,87,93,114,107,104,84,99,109,117,111,95,90,116,103,107,108,99,106,86,108,107,107,110,99,88,107,103,98,96,125,107,130,103,113,113,99,112,101,112,96,106,97,102,117,100,108,113,104,104,105,109,104,105,100,110,110,102,106,112,111,108,78,102,114,119,106,100,108,111,100,93,117,93,95,96,91,95,98,110,104,96,104,102,98,107,98,114,105,104,105,90,105,118,108,110,103,107,106,117,99,105,103,111,114,118,110,109,102,103,101,110,102,101,121,108,98,104,99,106,109,100,109,100,108,107,110,101,97,92,103,114,107,107,95,115,101,104,106,96,112,106,91,111,105,102,103,108,107,114,109,93,103,93,114,98,107,94,115,110,114,97,108,105,103,98,102,95,109,112,114,82,96,108,108,106,100,98,114,125,95,108,102,106,109,105,105,97,113,101,108,106,96,108,120,106,95,113,98,107,104,98,103,102,116,87,104,107,105,99,101,107,94,111,97,122,91,109,114,92,91,114,115,110,101,102,98,108,100,108,96,88,106,117,102,105,108,103,106,105,97,117,103,104,103,107,91,111,108,112,109,112,109,96,106,98,103,106,109,101,109,108,112,106,103,100,108,116,99,111,107,101,105,97,101,90,104,104,107,107,113,144,111,106,101,114,120,107,97,108,101,110,118,111,103,112,115,100,102,88,101,91,99,110,119,107,106,106,110,110,100,104,83,99,98,105,121,87,97,116,111,104,98,108,94,110,111,106,111,115,99,98,99,107,107,104,103,102,73,114,117,96,119,106,98,108,102,101,100,94,87,96,106,102,104,104,99,97,106,108,85,118,110,103,119,112,98,117,103,114,111,94,107,103,114,109,130,117,103,108,114,97,103,106,105,111,107,96,113,103,98,101,117,114,116,104,94,96,102,114,108,103,109,108,98,111,93,100,94,97,108,88,109,107,111,109,109,118,92,100,105,108,105,126,99,106,111,115,98,103,110,104,93,105,112,107,114,100,107,117,106,103,100,106,98,104,101,94,96,93,112,111,109,117,110,105,104,102,111,108,103,99,101,107,102,113,102,109,109,104,103,102,118,107,110,110,101,105,102,103,101,108,100,107,100,104,112,105,116,99,111,91,100,106,105,114,101,126,113,121,113,113,101,99,117,111,110,106,121,107,100,100,108,116,102,109,95,118,112,106,95,105,123,104,115,98,112,112,110,111,106,104,102,112,122,111,109,104,98,109,104,114,97,104,104,110,106,111,118,102,103,90,116,106,89,82,101,100,101,104,102,108,113,98,108,106,116,102,99,96,109,105,116,110,109,105,114,104,99,104,104,106,101,104,113,112,95,104,117,101,99,101,96,107,113,121,117,98,102,82,104,102,92,97,118,113,103,123,95,107,96,99,106,105,101,105,103,108,96,96,100,103,102,93,107,108,100,108,99,108,96,100,106,111,108,107,104,99,116,108,103,105,100,108,99,108,105,111,115,104,121,99,101,100,109,117,108,99,103,134,105,111,98,99,114,103,107,106,103,110,105,102,95,100,99,109,108,113,109,122,99,106,115,99,105,107,103,101,99,105,106,105,108,111,98,103,110,102,96,97,105,103,102,101,103,107,105,98,105,116,98,77,98,108,103,108,130,111,92,110,102,102,117,98,106,116,107,114,110,108,101,101,119,113,97,109,111,102,109,91,110,109,100,111,102,112,95,112,93,114,91,101,108,115,106,121,104,115,102,107,103,116,99,106,101,101,100,106,113,101,106,112,108,121,106,115,105,106,102,108,112,107,98,116,103,111,103,102,105,98,111,115,106,109,107,112,115,102,105,107,117,108,106,104,110,107,102,106,103,78,102,108,106,99,103,99,113,94,111,104,112,110,108,103,106,105,105,105,113,95,97,109,100,109,109,104,95,107,100,97,97,113,116,103,101,100,85,103,101,112,105,109,95,100,118,94,100,85,107,108,98,111,105,111,111,107,105,116,105,108,111,98,98,104,113,94,119,114,82,107,112,110,105,100,110,116,113,110,106,117,99,113,105,97,102,105,117,117,104,105,112,104,103,118,98,114,120,101,114,99,105,95,106,97,106,98,109,129,111,105,96,95,101,97,112,111,101,106,111,109,96,106,103,110,107,113,117,108,108,109,71,106,109,110,104,114,103,109,105,101,108,101,96,109,111,103,109,114,112,103,106,109,112,121,96,103,100,114,114,106,108,100,113,126,103,104,97,111,104,86,107,105,118,96,111,99,107,118,110,104,113,114,104,110,95,110,100,115,104,116,88,103,108,106,105,119,121,113,117,108,101,99,110,109,110,106,109,117,104,107,113,111,127,127,130,145,181,162,177,129,149,147,170,178,168,156,162,145,141,162,146,131,116,124,146,120,126,100,120,104,107,110,108,108,116,77,117,110,113,114,113,113,104,110,103,102,109,104,104,107,106,98,109,98,123,123,106,106,117,98,98,100,102,105,100,111,97,106,108,103,116,121,111,88,109,98,104,106,105,98,121,94,104,103,100,114,88,108,100,98,107,106,96,113,107,110,101,112,99,105,108,108,104,106,109,105,101,93,104,98,95,106,105,107,108,83,122,99,107,106,108,106,112,105,102,98,125,94,107,94,92,77,117,98,108,101,94,94,105,113,110,107,111,101,101,99,103,106,104,108,97,103,115,102,98,112,107,107,104,112,88,104,116,87,103,107,114,99,101,118,113,115,107,105,102,105,102,94,110,107,96,101,106,106,99,113,121,104,102,103,102,99,90,114,111,100,109,98,105,111,82,102,108,111,108,108,113,117,101,82,96,98,108,105,132,120,94,100,108,102,82,110,101,108,95,113,95,96,102,106,115,104,98,100,102,106,102,105,112,113,106,106,102,105,112,100,109,107,110,112,99,110,116,104,103,101,101,109,104,100,103,99,108,117,119,119,108,103,106,100,103,105,107,110,113,96,111,98,95,107,98,111,111,113,102,105,109,107,104,110,109,103,108,107,103,95,97,110,98,123,115,105,115,106,100,102,104,110,131,104,108,106,109,107,104,102,112,86,97,115,105,102,108,104,119,97,101,105,121,110,96,100,77,102,106,97,109,95,107,98,98,108,102,109,95,108,102,109,105,99,108,107,95,112,106,98,99,107,105,99,108,104,93,102,101,121,100,112,102,127,92,100,97,103,107,96,106,95,112,137,101,98,113,98,101,104,113,96,112,95,114,95,104,131,89,101,108,121,110,120,110,112,99,107,95,90,103,108,106,95,100,103,113,109,113,104,100,96,103,95,105,100,95,97,101,101,115,107,99,106,100,95,102,104,99,104,98,104,104,107,114,97,103,104,116,95,105,95,101,102,98,96,102,98,110,101,118,96,101,96,107,111,100,98,105,102,125,104,113,113,109,103,118,95,97,109,96,93,111,100,95,97,92,101,109,103,112,98,115,100,118,112,95,104,102,108,86,109,107,96,103,100,103,94,112,93,93,98,106,107,108,102,95,110,104,111,110,102,102,112,102,112,116,113,97,102,103,105,105,107,109,103,106,95,88,109,108,104,106,109,99,103,102,94,94,95,104,106,102,102,107,103,113,110,110,91,91,107,105,97,104,100,106,109,107,95,115,106,100,109,97,95,99,103,107,93,100,118,96,103,88,105,89,104,98,94,105,104,98,102,111,101,101,102,107,100,102,104,110,103,96,109,96,113,106,105,102,96,100,109,104,108,98,101,115,105,104,104,105,107,103,99,98,117,108,102,112,102,92,113,113,98,102,97,119,103,96,94,101,108,108,100,102,109,99,99,88,119,100,107,106,96,96,95,103,103,99,115,97,106,97,101,102,106,117,103,80,105,101,121,106,107,104,106,96,96,87,97,111,107,90,109,108,100,94,81,108,101,109,106,95,107,98,90,113,108,102,92,99,98,102,96,97,100,105,95,92,102,108,111,90,101,103,102,99,89,104,91,94,109,107,101,98,113,95,110,113,109,75,100,105,82,106,108,111,102,112,113,89,112,94,107,103,111,117,106,110,111,97,111,99,107,99,102,110,96,105,84,115,83,103,71,101,106,107,95,89,110,102,108,101,114,110,122,90,103,98,108,95,96,101,112,103,102,94,98,106,108,86,100,103,104,93,98,95,94,113,115,99,104,100,113,101,94,104,96,98,106,110,103,108,106,101,99,105,99,110,103,106,110,92,101,106,101,109,99,120,105,103,100,101,105,104,115,106,94,94,140,111,106,117,99,97,102,96,95,119,110,111,127,110,103,110,98,95,107,104,87,106,95,119,102,104,87,102,108,110,97,114,117,108,108,96,102,97,101,91,107,97,104,97,95,96,100,105,104,98,113,110,107,109,107,108,116,111,97,94,109,102,106,110,115,100,110,103,107,97,103,102,115,109,104,98,104,100,100,109,111,94,89,109,102,102,100,103,106,95,114,96,108,104,94,101,108,87,101,103,91,97,106,106,93,103,106,100,110,107,102,99,110,114,98,106,110,98,102,93,93,97,107,107,109,101,98,105,112,96,111,99,103,98,101,113,100,97,105,101,104,88,82,98,104,94,115,91,99,114,100,97,112,121,110,109,98,107,103,94,100,110,108,91,97,103,98,88,107,109,128,97,106,106,96,109,99,105,94,110,102,95,92,94,113,109,93,87,94,105,109,98,122,102,104,114,91,104,95,106,112,109,106,109,108,111,102,92,102,107,119,89,98,104,90,106,98,106,103,105,103,96,94,117,98,116,104,99,98,111,124,108,102,108,115,109,93,103,100,94,113,96,103,96,116,101,100,102,95,107,101,105,111,111,111,90,106,97,115,104,111,112,102,98,125,112,107,99,108,110,109,99,108,103,102,108,107,102,82,107,102,91,98,102,96,106,121,102,91, +589.59277,105,99,99,103,100,103,111,97,102,91,103,92,102,113,96,109,107,105,107,103,99,94,106,105,100,111,100,105,103,92,107,116,100,94,115,102,107,100,99,103,102,107,100,101,102,109,97,115,95,120,105,106,116,97,90,99,95,93,108,82,114,104,101,103,100,110,113,103,102,103,99,113,97,101,103,119,102,113,109,109,103,107,117,104,100,106,98,112,105,101,101,105,111,84,101,104,119,97,106,101,118,95,99,73,97,118,106,106,91,102,95,103,109,95,116,104,106,102,99,114,98,115,111,106,109,105,109,98,121,105,106,94,97,100,109,106,101,95,104,99,97,111,102,101,101,98,105,104,106,109,95,103,104,106,98,102,105,119,103,104,99,85,103,106,105,92,121,93,104,103,97,96,101,87,107,103,101,91,108,101,112,101,101,101,109,101,87,100,99,100,110,105,97,108,103,116,110,110,101,99,112,105,103,100,97,105,109,113,109,129,102,107,106,112,97,100,107,106,105,125,118,97,107,110,112,115,109,107,117,110,111,108,120,103,115,117,111,112,98,106,99,118,106,104,112,104,99,103,112,101,109,115,102,100,103,107,105,101,103,113,88,106,102,99,102,99,106,99,105,100,110,106,103,99,113,108,95,109,107,89,108,110,107,103,102,108,105,102,106,109,103,106,115,98,114,106,99,98,90,100,99,103,103,92,110,104,92,103,108,111,98,110,110,103,104,111,111,92,111,92,100,99,106,106,106,102,94,110,105,117,108,96,110,102,111,121,124,100,117,106,106,107,101,99,111,104,93,97,100,96,105,109,100,114,108,93,106,116,98,93,101,99,86,100,121,104,102,115,97,105,103,104,96,100,101,102,112,100,102,109,116,112,104,113,107,105,79,104,112,99,112,92,98,97,103,109,115,106,110,106,115,110,102,83,88,99,104,109,98,95,101,106,105,96,105,109,107,95,107,97,102,99,106,108,101,88,106,106,99,107,101,103,111,110,111,80,94,100,98,106,111,97,103,110,103,103,109,104,113,101,104,105,99,122,94,98,101,100,98,95,104,97,112,102,102,117,102,110,97,105,93,108,90,95,96,103,102,112,108,118,95,114,116,99,107,103,112,100,96,106,110,106,107,93,106,104,104,102,113,103,126,104,100,115,101,101,96,101,90,94,104,100,113,105,106,104,96,111,108,93,100,109,112,105,108,111,100,114,93,96,121,103,101,101,98,102,122,104,101,94,99,118,105,109,114,101,107,111,105,134,102,110,109,90,104,98,101,105,107,105,118,102,102,107,113,99,99,94,99,103,98,103,105,102,100,104,99,97,102,118,101,99,80,103,104,105,106,117,102,101,105,104,91,114,106,106,109,93,107,105,98,109,103,113,101,95,100,106,109,103,94,102,95,105,113,95,105,86,99,110,118,102,111,104,109,106,99,105,115,100,87,106,89,97,103,110,96,109,90,100,117,107,97,92,101,108,99,113,108,106,95,108,115,106,107,112,113,112,121,101,109,100,102,101,93,107,86,110,104,105,97,117,105,112,101,117,107,108,111,92,97,97,104,100,108,105,113,113,99,94,103,108,105,105,104,95,109,108,107,100,106,114,107,99,113,104,113,97,96,104,105,105,107,95,97,124,104,111,107,121,108,98,93,96,102,96,96,106,109,111,112,105,108,114,108,96,112,100,94,105,107,97,112,99,106,106,105,106,99,121,123,103,110,101,99,102,106,124,107,97,98,94,98,101,97,108,95,97,105,101,99,108,117,111,93,106,111,108,98,111,117,115,107,109,87,102,106,98,108,110,112,102,109,110,103,115,106,97,100,112,102,103,106,100,103,112,109,105,111,109,103,113,103,118,98,93,104,110,107,105,109,107,107,98,103,113,99,110,125,96,104,107,97,114,99,106,99,101,106,100,102,98,94,110,121,109,101,89,103,86,109,105,99,110,98,110,100,100,92,103,100,109,99,104,102,97,102,103,102,97,102,111,101,108,78,95,102,102,106,103,103,108,117,98,119,118,106,99,108,108,108,103,95,100,99,106,108,110,108,99,118,89,110,94,100,102,91,116,93,104,106,108,115,102,108,109,100,109,97,103,101,117,110,99,101,104,96,96,104,113,112,111,103,110,102,105,105,101,109,103,101,108,101,117,99,87,111,103,95,112,109,115,104,90,110,98,96,94,99,110,99,111,112,103,103,105,91,105,90,104,108,112,102,114,108,107,113,119,110,113,111,107,119,100,108,98,91,102,100,113,111,117,114,107,118,92,111,115,96,103,105,106,103,103,114,109,96,96,96,110,97,109,98,107,108,101,94,105,99,98,101,115,104,88,110,105,104,124,110,100,107,119,107,118,121,103,109,136,131,141,132,161,146,152,155,169,144,154,153,143,140,128,184,130,140,136,124,122,96,122,115,113,99,104,111,90,102,118,105,105,101,121,94,113,118,104,101,95,111,93,88,94,115,111,99,108,112,110,91,115,91,109,104,90,104,112,94,108,102,106,120,119,95,113,93,105,91,109,105,100,118,113,106,94,107,100,121,108,117,113,69,95,111,104,105,113,112,102,111,95,108,98,94,102,121,108,103,120,108,95,118,106,108,113,105,95,108,102,116,95,119,101,114,109,108,97,114,108,91,100,111,80,117,91,126,110,104,106,107,106,94,104,116,101,100,109,114,99,106,103,100,120,87,99,100,117,103,101,110,104,99,106,96,99,104,109,112,103,109,103,106,115,106,104,100,112,103,106,102,115,116,97,104,96,104,106,115,116,121,102,103,111,108,107,105,97,104,116,110,104,105,106,100,112,109,97,104,110,99,113,110,95,116,114,104,92,110,104,97,108,106,108,96,101,106,106,112,116,96,104,100,102,106,100,103,99,106,75,106,98,110,87,118,96,105,100,108,99,92,114,95,100,104,100,106,100,107,106,105,95,112,102,105,109,105,109,103,101,110,119,104,116,107,99,107,105,110,110,109,110,108,104,105,110,106,107,108,106,116,95,107,96,109,105,106,110,105,106,106,88,104,97,109,100,116,110,107,102,98,107,102,96,99,104,105,109,112,105,113,120,118,95,113,103,112,106,107,115,112,107,98,123,100,102,113,89,111,96,109,106,112,104,111,106,99,107,106,106,107,103,102,105,113,108,102,101,90,98,113,108,110,97,95,103,99,95,113,107,94,123,100,100,97,103,102,105,108,102,107,103,96,98,105,105,98,94,94,103,106,110,104,85,100,111,102,110,106,118,100,117,107,113,103,114,115,102,111,120,121,116,109,111,112,121,104,101,97,98,109,102,97,109,118,80,105,109,113,108,103,101,100,109,109,104,107,105,110,94,99,99,106,107,97,103,100,104,115,108,108,115,110,98,106,119,97,106,104,108,120,108,106,103,99,99,106,113,112,95,120,109,98,108,111,101,114,105,113,101,108,105,110,95,103,106,91,104,107,102,112,113,107,103,108,110,98,110,98,106,97,97,102,91,117,105,119,100,103,102,101,105,100,120,110,102,111,97,107,109,102,91,109,105,121,119,119,101,109,115,102,110,93,105,104,108,125,105,104,100,112,103,113,99,99,105,111,107,115,97,100,102,95,100,111,111,107,105,108,100,110,100,97,118,104,91,109,96,98,108,100,116,106,107,99,118,105,118,119,105,113,105,102,100,104,123,107,99,107,93,106,127,110,99,91,104,111,95,112,109,109,92,109,99,111,94,100,94,109,103,113,108,97,93,110,136,103,96,140,112,99,93,116,105,112,94,105,107,99,107,105,105,123,98,106,112,108,108,107,104,109,94,95,104,122,101,99,104,104,103,111,105,104,101,116,103,106,104,102,121,105,135,115,108,112,103,103,102,109,103,111,103,103,105,119,101,106,121,105,120,100,94,107,106,104,115,104,94,108,94,108,107,101,99,103,117,124,99,113,111,118,103,106,111,105,104,128,116,96,108,98,107,115,97,105,109,105,112,117,99,90,104,107,110,108,100,117,112,100,110,102,115,103,100,102,106,104,103,104,103,115,111,111,102,96,97,110,98,108,105,101,85,96,105,85,107,101,105,109,108,113,104,98,102,104,97,101,114,107,110,107,97,103,118,98,110,107,113,107,113,94,107,99,98,100,110,108,105,100,107,111,103,104,98,105,104,99,118,110,111,99,114,109,101,98,106,123,104,102,96,90,101,108,105,110,102,112,117,104,111,106,107,113,107,110,107,107,112,98,102,100,113,110,112,93,107,104,110,112,107,107,122,100,108,108,107,103,107,108,110,94,113,87,109,109,106,96,114,103,99,104,104,99,121,104,111,113,102,108,115,113,116,119,110,113,100,102,108,97,116,91,118,112,110,114,68,114,111,109,103,107,89,109,99,96,103,109,112,103,106,111,104,102,119,112,110,111,102,113,107,88,111,98,96,94,101,99,122,106,109,72,114,110,114,106,107,103,94,102,117,103,100,96,129,98,109,112,98,107,105,96,73,114,98,102,105,107,110,82,111,100,113,104,105,97,122,106,107,100,92,105,101,101,72,98,87,101,90,87,104,106,103,110,84,100,107,105,106,95,99,110,113,102,113,110,104,110,99,104,106,94,110,100,93,105,109,107,108,102,97,108,84,95,95,103,105,107,116,102,114,109,96,112,102,102,116,117,93,107,103,103,103,97,95,99,110,115,97,98,110,107,88,103,98,112,120,110,109,100,97,105,94,107,103,100,107,95,107,111,108,110,106,95,105,100,104,96,104,110,99,116,107,106,97,112,98,100,112,108,109,105,109,102,96,103,101,99,107,104,110,105,109,121,99,95,86,98,132,96,100,113,110,119,106,108,108,112,96,103,108,116,98,117,103,101,101,86,106,100,104,117,108,106,112,124,101,96,103,99,108,105,96,102,100,106,105,99,96,103,99,102,113, +589.73376,109,71,95,97,105,106,108,97,106,106,98,103,103,93,94,89,100,107,121,90,105,96,101,105,105,101,111,107,107,104,109,99,86,98,102,108,108,110,105,98,104,108,94,106,113,108,105,107,115,100,96,103,108,106,97,103,99,103,101,101,105,104,90,107,100,120,99,116,97,101,99,107,109,94,95,110,111,101,108,115,101,103,105,107,103,101,96,104,108,110,104,92,87,106,98,105,102,95,102,105,102,97,107,74,100,106,113,110,106,98,112,109,98,112,96,100,103,112,121,97,94,108,114,103,111,110,113,109,103,110,102,109,89,121,112,95,99,102,113,80,95,104,107,106,91,106,103,112,108,104,103,106,102,109,101,110,100,97,112,98,105,110,104,106,104,84,107,99,114,114,104,94,104,105,110,104,106,104,111,93,103,108,107,102,106,115,102,91,114,102,97,95,97,108,105,110,93,98,100,120,103,107,112,105,98,110,106,114,118,109,120,95,98,111,110,86,87,106,102,99,95,101,104,124,104,103,113,113,107,113,93,92,94,106,100,123,109,98,112,114,95,97,121,95,98,101,99,105,110,103,99,100,86,101,92,100,92,102,92,93,111,99,93,101,96,90,112,114,103,102,115,107,115,105,96,109,102,107,116,110,105,99,107,96,100,96,91,101,108,103,98,101,97,96,104,106,116,106,105,114,94,88,107,111,97,106,106,113,103,106,99,125,98,114,108,101,105,110,135,108,106,109,114,111,105,103,100,99,107,104,73,87,100,99,108,106,98,105,105,106,107,107,97,112,104,117,100,103,111,111,116,105,101,106,103,90,108,106,102,110,99,105,101,94,99,111,106,105,78,110,104,105,110,109,109,86,106,96,107,98,98,112,99,108,105,103,107,100,110,112,114,109,96,106,89,121,105,110,104,107,97,113,89,116,106,99,109,95,109,89,93,95,102,99,103,96,96,114,107,92,88,106,110,107,110,101,100,99,103,112,93,105,98,109,103,95,101,106,103,106,108,109,107,100,109,114,112,97,110,109,102,94,97,88,122,101,90,106,102,98,96,97,123,105,103,104,112,115,111,111,106,106,99,102,104,104,108,104,106,91,107,92,113,102,112,107,115,99,102,102,111,104,111,101,96,110,114,87,113,114,105,96,89,103,112,100,97,105,117,106,108,114,95,107,108,113,108,108,93,111,94,113,112,113,101,114,121,105,94,108,105,105,98,94,95,120,117,99,108,102,106,91,103,105,109,117,101,90,105,131,104,106,113,105,95,110,108,98,110,110,102,109,106,99,101,97,94,102,104,107,97,118,107,119,110,103,99,111,109,91,102,97,104,98,104,96,117,111,112,95,106,101,109,103,105,98,100,94,103,86,112,110,112,91,113,92,97,100,105,104,111,106,107,95,102,95,102,97,105,107,96,136,104,111,118,99,101,104,95,92,103,107,102,98,103,103,94,91,108,113,91,106,112,93,114,117,105,104,101,91,106,100,94,106,129,116,114,117,105,106,107,115,108,106,100,93,108,113,97,111,106,112,112,110,107,105,111,104,117,96,108,107,116,106,96,101,101,122,108,105,106,108,95,102,100,105,97,104,112,107,96,97,103,104,114,100,111,108,106,115,95,103,110,112,108,115,86,96,105,96,104,106,96,105,110,105,106,111,96,110,102,101,103,86,102,90,100,118,105,114,100,109,114,106,92,89,105,109,111,105,105,107,103,104,113,108,113,100,99,103,87,101,108,111,106,105,82,100,101,92,110,100,111,112,108,103,101,106,101,93,106,109,109,107,99,117,107,100,98,112,104,110,99,123,106,119,98,122,112,104,99,103,115,98,121,100,94,99,105,106,108,111,115,103,112,94,106,105,109,108,101,111,116,110,99,106,111,108,103,107,120,91,112,107,106,110,110,101,113,109,109,100,105,99,112,100,94,107,96,89,104,80,98,108,88,96,109,116,93,106,96,111,96,95,95,104,96,106,105,111,95,100,109,118,106,93,120,104,91,97,103,114,107,109,109,114,94,110,112,102,111,95,103,112,102,106,105,99,101,102,111,107,106,104,111,100,104,105,103,100,115,107,103,87,101,102,104,109,103,109,106,96,115,105,112,100,110,116,98,89,123,120,112,109,107,88,95,104,106,101,107,98,97,103,102,101,112,113,107,113,107,106,102,112,111,106,104,102,98,102,108,112,100,116,86,119,98,99,99,112,100,106,105,104,117,92,102,101,99,120,118,105,110,106,95,101,100,102,100,94,112,95,105,91,87,100,101,106,108,109,113,106,95,98,108,103,101,102,93,94,102,103,105,106,107,108,105,99,100,100,75,103,113,107,111,89,98,96,114,98,104,121,106,111,120,104,120,123,125,136,140,167,156,184,128,176,152,152,176,175,139,137,127,149,140,136,115,125,105,110,110,122,110,111,105,114,110,89,113,112,99,107,107,103,100,108,117,113,101,103,105,102,91,123,122,108,104,105,113,106,107,106,97,98,93,101,109,100,113,101,104,106,118,103,100,120,98,102,108,102,103,111,104,106,105,75,103,109,87,108,108,94,95,102,113,103,113,101,101,110,107,115,119,112,99,100,87,110,81,123,95,104,103,106,103,102,108,113,110,99,107,92,113,102,110,102,92,103,98,98,86,102,96,91,116,113,106,103,117,107,106,101,100,100,102,104,117,96,104,107,104,98,102,113,100,111,105,98,113,103,93,97,106,111,108,125,107,100,88,105,107,108,115,112,114,113,100,96,98,104,99,98,95,108,90,108,106,101,115,94,113,103,95,115,105,103,120,110,100,109,104,99,104,109,101,101,105,101,111,106,105,104,109,96,101,105,107,101,105,104,102,117,110,101,99,110,99,100,88,105,99,113,102,114,95,90,106,98,103,102,102,107,107,106,113,114,117,101,103,109,112,109,98,91,107,99,87,95,107,104,112,112,98,102,100,108,95,105,105,97,110,90,88,109,108,93,105,106,100,98,105,101,92,108,102,91,104,92,110,108,112,101,103,107,104,100,110,109,109,97,99,110,109,97,106,108,112,109,105,105,100,87,122,102,106,99,108,104,110,106,110,96,103,108,89,102,95,102,89,91,101,109,120,98,110,98,87,92,99,97,109,95,112,103,106,109,98,113,96,102,113,109,101,103,103,92,111,106,109,103,103,100,100,111,110,113,103,102,112,117,109,103,99,98,117,109,111,117,92,102,99,100,111,103,108,98,97,105,109,102,108,105,96,104,99,107,80,109,119,105,99,110,115,107,103,110,111,108,99,106,109,103,110,107,105,92,98,108,109,99,106,79,104,108,108,102,116,103,100,107,113,104,112,102,102,100,95,101,104,98,102,114,106,85,102,108,117,109,114,108,100,120,104,109,110,102,98,106,107,96,106,117,104,81,113,127,94,106,100,105,95,95,102,116,109,101,108,88,92,97,105,81,116,109,100,114,106,107,111,104,106,101,105,101,114,111,100,103,99,106,109,89,85,106,96,105,108,104,106,99,114,106,109,104,102,106,111,90,91,101,117,109,102,106,115,99,107,106,107,111,115,100,108,101,105,103,102,92,113,105,103,99,103,86,107,111,102,109,101,103,94,99,113,105,108,103,125,102,98,108,91,113,108,97,110,98,101,111,109,114,104,113,110,108,112,92,96,101,96,107,101,112,113,96,96,93,95,113,103,102,108,106,110,106,112,107,111,101,120,94,101,94,102,109,99,97,105,116,111,108,105,102,101,98,102,114,117,100,102,88,100,87,88,96,111,104,105,102,95,116,96,98,104,106,104,91,98,96,102,103,106,97,100,90,109,110,103,101,100,97,101,106,109,104,110,117,101,100,92,109,96,117,107,115,108,103,111,121,109,105,92,109,100,102,103,104,94,102,101,109,95,104,106,98,105,96,109,101,108,98,102,103,97,103,104,100,109,117,113,91,99,104,108,94,101,109,103,105,107,100,113,103,102,112,105,99,104,103,116,107,110,100,97,100,100,109,102,106,118,102,117,101,99,105,115,97,98,111,101,99,95,116,103,130,106,109,109,98,117,103,96,109,116,105,96,116,100,114,95,94,108,104,113,95,69,107,97,102,100,100,94,110,98,95,112,104,102,108,102,89,95,106,92,102,104,106,105,103,105,106,109,96,105,106,105,111,95,102,96,106,109,98,112,98,103,93,115,106,102,102,106,110,94,105,121,99,96,131,108,96,122,124,103,96,106,104,107,100,105,111,119,93,103,106,99,120,106,112,98,90,102,101,125,105,120,108,100,102,113,100,110,106,101,114,110,104,96,106,112,112,94,110,99,108,106,110,113,115,107,111,111,108,100,102,115,102,110,102,92,118,107,101,108,111,104,104,101,94,105,117,99,123,103,115,97,98,103,112,97,100,106,119,133,94,95,109,106,110,108,100,106,97,105,112,100,102,95,102,102,113,104,105,110,98,94,94,102,95,104,94,107,99,101,106,105,97,96,95,111,101,92,95,112,111,105,93,97,103,95,92,105,109,96,92,102,99,106,106,105,82,72,111,101,101,105,103,99,102,104,99,114,101,95,107,110,103,96,106,104,97,108,102,113,101,95,91,114,100,111,97,107,98,91,99,109,102,107,103,104,103,103,113,96,98,99,104,112,103,100,119,96,101,119,110,106,87,104,108,124,110,110,107,108,98,106,131,105,100,92,97,113,101,91,104,102,87,99,99,102,100,107,106,84,103,100,107,97,110,105,95,109,102,87,91,106,104,102,90,102,107,112,101,94,128,106,117,103,95,107,113,96,111,103,109,122,101,112,107,101,118,102,94,98,105,105,99,93,102,94,96,112,88,107,124,113,100,117,102,95,101,95,127,115,106,71,91,99,104,107,99,90,100,108,87,99,94,121,97,116,104,109,90,94,113,95,83,103,97,98,96, +589.87476,96,114,105,112,101,100,95,108,106,103,95,116,106,107,109,105,97,115,113,91,102,97,104,102,114,99,98,99,113,107,106,110,91,100,108,101,109,99,100,102,120,106,94,102,102,109,89,90,103,106,102,103,123,94,112,98,118,108,114,106,127,106,106,105,106,95,85,89,97,102,95,111,105,104,101,109,109,112,101,106,105,88,94,93,130,95,102,108,106,109,102,100,102,111,101,104,119,117,100,81,90,105,103,92,109,105,93,103,104,110,94,100,106,101,113,96,102,109,99,107,119,102,103,104,108,108,113,104,103,110,99,101,104,106,92,103,100,113,99,102,99,91,110,103,97,108,106,106,113,90,104,108,104,104,99,104,117,97,104,100,109,95,118,100,122,113,109,112,108,102,117,117,104,101,103,100,102,89,129,100,96,100,108,94,94,106,70,94,104,101,105,113,101,101,95,126,114,109,114,110,109,96,89,105,112,100,127,97,113,106,104,94,106,112,104,103,98,110,101,105,115,111,113,103,99,105,104,109,97,110,111,114,111,107,83,95,105,97,90,105,100,97,111,108,100,106,104,104,108,104,109,110,96,109,95,112,101,94,102,112,97,112,96,94,98,99,112,104,109,100,102,107,112,97,102,98,97,77,108,108,110,105,101,105,107,107,107,106,110,109,102,123,108,125,107,112,111,98,105,115,105,111,103,110,103,76,100,108,98,113,104,104,104,91,122,99,104,105,98,107,106,102,107,116,113,108,110,105,114,111,112,107,100,102,108,113,100,97,99,105,100,102,102,95,99,110,105,106,103,90,107,109,72,110,102,105,106,111,104,107,116,101,112,108,102,99,113,109,97,106,69,105,98,97,99,86,106,111,102,110,107,102,103,107,125,81,106,103,105,104,112,94,100,105,103,83,97,109,91,102,109,107,99,105,94,104,111,128,104,107,110,114,95,107,107,104,99,102,105,97,113,72,101,86,109,102,107,100,98,110,106,121,113,103,109,110,99,107,102,105,110,104,103,107,95,110,103,100,107,110,106,107,111,114,113,98,94,103,112,105,96,119,107,115,116,114,99,105,109,108,113,103,99,103,105,99,108,109,105,110,105,119,107,104,107,95,104,120,99,91,110,106,111,98,107,110,100,85,95,109,106,122,100,97,117,108,104,99,108,104,108,100,107,100,115,99,109,106,99,83,113,109,71,104,110,104,111,110,100,113,103,112,117,104,107,101,103,124,111,105,97,106,110,117,102,91,103,98,110,111,109,72,106,108,84,105,107,99,109,102,106,110,112,103,102,107,113,110,106,103,101,98,97,109,103,115,105,105,108,110,103,103,108,101,104,77,110,101,109,101,102,104,104,100,108,104,106,96,112,111,98,104,112,119,103,109,101,100,103,83,94,110,115,111,106,102,104,104,98,94,105,100,106,104,112,101,93,104,106,110,106,118,118,117,110,112,105,96,114,114,106,117,107,104,77,106,103,105,104,101,98,113,119,108,96,110,109,110,103,108,104,117,103,128,101,101,110,103,103,90,109,103,118,81,104,103,111,103,94,99,111,118,114,105,102,115,101,109,106,113,109,112,103,112,116,110,92,124,116,110,107,104,106,129,115,120,113,104,96,110,107,98,107,106,94,119,98,119,120,103,94,93,104,106,98,100,113,123,106,117,117,108,105,113,106,103,105,84,101,110,106,103,90,106,98,115,104,104,99,116,113,109,102,98,103,110,99,109,113,99,101,120,106,109,117,98,104,99,109,99,124,100,113,107,110,105,107,104,102,106,114,123,114,115,114,109,104,119,101,107,107,103,111,107,114,95,103,103,115,129,106,102,92,106,109,109,102,114,99,102,104,103,108,84,110,108,111,104,114,105,97,120,106,108,91,108,112,99,108,107,116,98,101,115,102,118,104,112,102,120,107,98,107,118,99,115,103,91,109,97,111,100,98,108,104,96,107,131,103,92,100,113,115,112,109,98,104,104,115,99,99,120,100,106,99,102,110,113,117,101,117,104,102,104,104,113,105,101,98,109,111,107,103,107,98,97,96,103,102,107,113,112,109,96,100,92,106,105,96,113,103,129,120,113,107,105,108,110,108,101,94,105,120,106,104,108,112,110,105,118,101,97,101,109,96,104,108,101,108,99,105,96,100,106,94,98,106,106,109,105,102,109,108,115,104,101,100,91,97,101,94,106,114,89,113,109,97,101,105,105,101,99,96,105,122,112,105,103,104,112,103,106,103,94,95,99,106,125,96,99,109,98,108,101,112,98,113,109,101,100,132,94,108,109,110,103,104,115,106,104,109,101,104,103,106,103,104,105,99,103,122,116,111,115,109,102,110,113,111,111,108,106,113,120,107,114,138,136,120,116,151,162,169,177,177,154,169,150,136,137,139,168,143,140,120,132,111,126,118,111,108,118,104,114,102,121,107,107,106,101,110,106,106,103,121,114,75,115,104,101,94,108,124,104,109,112,114,115,106,104,124,119,110,90,99,106,102,95,118,110,95,90,108,103,105,114,103,107,104,105,96,111,91,100,96,103,104,108,97,108,109,103,91,102,105,110,102,96,96,100,100,114,110,102,104,95,108,101,103,99,99,108,116,111,90,105,105,115,122,98,115,98,122,104,95,106,112,109,95,106,112,87,119,92,106,110,89,98,116,97,105,108,110,106,105,106,108,101,119,106,99,113,138,110,109,114,97,98,102,113,107,103,111,113,97,106,114,92,109,110,117,109,111,89,96,111,111,104,108,115,113,108,114,109,102,112,96,109,103,89,109,108,102,107,100,106,102,112,110,109,105,100,107,108,90,109,111,106,112,110,102,100,101,91,112,98,107,115,112,112,111,101,123,120,98,105,83,106,89,118,109,93,112,117,109,111,108,109,102,86,102,107,119,113,99,97,100,110,119,123,110,101,114,88,100,103,89,102,97,94,109,114,102,108,121,104,109,96,110,113,96,106,93,96,92,104,102,116,98,111,94,104,106,104,93,96,108,100,104,111,108,97,109,104,105,120,112,131,107,105,116,98,101,106,108,100,111,101,98,105,103,102,104,102,99,102,105,106,96,102,110,106,116,103,99,120,105,107,110,105,99,109,110,113,100,101,112,104,107,106,105,119,109,105,114,108,104,102,109,100,108,101,101,107,106,91,109,107,115,104,95,131,111,105,105,107,111,98,109,111,93,101,112,103,98,107,113,112,103,104,125,101,108,93,102,100,100,93,109,98,99,95,99,103,106,101,99,104,121,110,108,109,102,114,103,113,109,117,93,116,108,101,121,103,111,94,124,100,111,110,105,104,104,98,96,100,111,94,105,95,104,96,112,110,110,103,102,94,96,101,106,112,100,107,104,113,112,121,98,106,105,78,113,103,102,95,111,104,105,115,112,112,100,100,102,109,108,104,94,108,99,100,81,110,116,96,107,102,103,100,110,100,111,96,123,98,103,100,104,98,108,112,108,98,91,113,109,109,110,94,105,116,106,89,90,103,106,107,105,108,116,101,108,96,104,102,130,106,102,96,112,116,101,104,115,114,104,107,106,107,100,95,102,98,120,121,108,95,103,99,100,100,114,100,125,108,110,106,108,99,110,104,111,111,100,103,100,106,111,115,93,103,107,111,113,106,106,108,100,112,113,114,117,96,104,102,107,97,94,104,97,101,141,110,103,104,98,119,104,95,111,101,113,110,102,97,104,95,98,108,127,100,97,101,119,95,100,107,109,107,112,130,100,121,107,102,101,99,96,101,110,109,95,111,115,106,106,107,113,106,101,104,104,106,99,98,117,110,113,105,98,103,99,105,116,104,97,113,108,117,109,116,108,103,101,99,106,105,105,115,97,104,71,101,101,110,107,101,102,96,103,107,112,83,113,98,119,114,77,109,98,104,104,102,112,93,104,106,95,100,95,104,108,102,104,107,100,101,115,101,108,98,96,98,97,113,109,106,103,102,101,108,94,114,96,125,112,90,98,111,120,108,104,105,102,104,113,100,103,108,103,105,104,109,124,93,111,108,113,110,128,103,95,103,118,105,103,97,103,103,109,108,113,105,115,101,106,106,102,96,108,102,106,108,107,102,98,100,107,103,110,113,91,99,108,120,108,100,102,103,113,108,105,112,107,108,112,105,107,106,103,117,104,99,109,105,87,119,108,107,104,100,107,110,108,107,113,113,110,105,95,113,108,125,122,117,109,92,107,109,112,104,101,101,109,106,95,98,101,106,100,95,110,103,101,101,94,119,117,102,100,106,107,98,104,115,96,117,98,120,112,108,121,110,109,107,109,103,92,105,102,104,114,107,110,111,104,116,100,89,105,98,91,110,121,102,111,111,111,107,104,104,95,111,108,101,112,112,104,109,111,107,121,86,109,103,102,106,100,88,113,108,91,108,100,105,87,110,113,111,92,100,99,98,117,105,105,93,105,107,113,122,104,112,104,103,102,105,113,104,91,116,107,114,116,93,100,99,93,97,114,89,98,106,101,108,100,112,98,127,107,95,102,104,98,111,106,116,119,101,98,95,99,101,104,107,105,101,114,104,106,103,110,112,99,104,102,94,107,114,99,117,116,83,97,110,113,129,101,109,101,96,113,104,107,107,93,97,102,103,103,104,134,109,94,98,94,113,99,104,113,106,106,109,108,100,100,108,100,99,111,102,110,140,101,104,103,100,110,107,102,120,115,96,131,107,98,106,114,96,97,112,112,97,105,107,109,112,99,87,96,107,93,106,107,104,109,93,106,111,101,126,117,118,113,103,112,109,89,109,112,103,101,98,94,102,114,94,113,101,111,96,106,100,98,111,98,110,82,100,104,104,97,100,113,115,106,107,104,97,96,115,93,102,89,100,102,112,117,112,107,102,93,100,117,119,117,107,99,104,100,108,101,96,111,97,107,96,119,92, +590.01575,107,80,87,93,120,109,105,104,117,99,99,113,110,120,107,106,94,89,98,96,93,98,92,102,95,110,98,107,95,114,109,99,98,92,116,117,109,98,99,100,93,97,103,78,101,106,99,116,99,107,113,91,113,115,105,104,108,95,112,102,114,90,107,106,94,116,92,104,105,95,102,104,86,96,102,92,118,97,108,104,99,107,97,105,106,92,97,91,103,94,98,103,106,97,111,97,107,102,104,92,101,100,113,99,87,98,110,108,104,108,97,92,104,87,112,117,100,95,105,116,105,96,109,117,109,103,104,103,105,103,109,110,103,112,102,109,113,103,119,106,103,109,97,106,106,107,108,95,86,97,102,99,94,105,102,98,113,110,97,105,98,100,106,78,104,102,111,106,99,110,105,104,98,99,95,122,105,103,92,108,99,94,102,103,97,105,118,89,98,111,108,112,106,111,99,105,108,111,104,108,123,108,96,113,101,106,116,117,107,108,106,106,99,109,103,103,101,118,85,94,107,104,98,108,104,103,104,108,124,118,98,105,114,105,107,103,102,102,96,108,91,106,113,103,102,107,107,109,116,101,103,98,101,106,96,105,94,114,126,100,100,98,96,104,98,110,104,118,104,112,107,95,114,99,103,98,95,100,114,99,103,100,102,108,102,104,100,113,105,103,118,112,107,110,115,99,107,99,94,108,95,109,99,104,100,100,100,102,115,96,93,112,91,99,130,107,120,106,111,106,110,99,115,111,118,99,102,93,109,101,78,101,103,112,120,100,94,104,109,95,101,101,101,93,100,102,107,102,100,106,73,107,107,117,115,95,98,96,112,95,87,94,97,102,101,108,89,108,103,120,104,106,97,100,110,98,106,91,106,99,117,97,97,107,98,108,105,97,106,102,113,101,89,114,102,103,104,98,119,116,71,101,98,101,103,73,103,104,96,110,99,98,112,106,91,115,114,97,112,93,112,99,107,107,100,91,107,100,106,108,98,108,111,108,96,104,88,100,99,100,109,104,106,101,101,102,96,110,112,106,104,109,110,101,92,106,108,91,105,117,88,107,110,108,116,102,104,95,99,105,116,111,100,110,99,100,107,100,102,104,99,102,107,97,101,115,105,109,97,103,111,99,105,113,96,108,94,116,113,107,108,106,118,104,88,99,100,94,107,113,114,99,98,111,113,103,102,118,105,101,104,102,111,113,104,118,92,64,102,105,107,101,91,86,110,116,111,103,109,108,109,109,124,98,116,107,118,102,107,102,108,107,115,107,92,104,107,104,91,107,94,118,106,103,97,101,111,100,96,113,94,109,100,119,117,100,102,83,93,115,98,102,107,104,100,96,98,108,97,103,112,109,95,94,101,101,103,109,105,94,102,105,105,105,103,98,117,108,114,103,109,103,96,104,90,97,100,111,98,108,108,89,101,98,99,104,107,102,92,103,113,114,96,113,103,108,100,105,111,104,111,96,99,100,99,87,109,99,120,96,95,101,111,106,103,109,104,111,121,109,117,107,102,113,101,97,97,99,110,108,112,106,113,88,105,107,114,101,115,107,104,114,104,102,88,103,104,71,102,103,106,116,112,107,98,107,103,97,109,128,109,104,116,107,115,111,75,108,99,107,103,109,101,102,107,105,95,105,94,116,100,106,104,118,96,99,110,92,106,102,95,102,108,101,106,96,109,91,112,113,102,112,118,102,114,91,114,96,101,82,102,97,117,106,105,112,107,99,113,104,107,96,106,99,101,105,101,113,111,95,109,113,121,98,100,97,124,105,117,106,94,114,103,118,108,106,115,105,112,91,108,102,108,88,104,109,106,103,108,110,98,102,134,107,102,94,104,127,107,116,116,107,109,100,108,105,115,109,103,99,95,131,100,117,107,100,106,113,113,111,95,112,113,87,96,104,96,95,100,115,87,113,107,104,106,96,120,103,96,97,111,91,118,108,103,107,103,108,109,105,112,102,106,100,94,99,101,93,103,113,100,101,94,108,99,97,105,104,93,107,140,99,95,98,103,98,95,113,110,98,104,91,100,89,97,103,99,97,121,112,112,95,101,102,96,99,95,105,104,108,114,103,111,102,111,107,108,100,87,102,102,107,108,108,101,110,109,89,98,106,103,108,110,110,124,92,98,104,109,104,109,107,83,106,100,103,103,108,107,114,108,107,122,103,108,112,102,114,100,114,104,111,101,104,117,96,116,104,103,107,101,106,97,103,97,110,102,92,111,104,102,107,102,94,104,108,110,100,110,103,105,100,112,104,113,100,97,111,97,96,108,108,103,100,114,113,101,103,92,113,109,106,104,99,117,109,89,112,105,104,102,104,103,101,98,94,108,117,106,89,114,118,111,113,118,109,100,128,140,129,158,152,168,166,180,163,161,147,154,156,168,151,149,133,138,101,122,123,118,117,98,129,114,113,101,94,103,106,96,107,104,116,101,105,109,99,84,102,107,109,94,95,91,112,112,102,77,106,101,114,98,108,112,101,95,110,96,107,104,97,98,94,86,109,108,111,99,103,116,110,82,108,105,108,120,103,114,109,105,107,99,96,116,100,117,104,106,107,114,113,98,117,113,112,100,117,103,117,113,107,105,92,95,99,120,89,121,104,103,97,109,116,110,114,106,107,109,99,109,106,130,98,112,106,116,116,106,109,101,103,104,95,104,104,117,100,110,100,107,110,110,104,111,95,98,116,106,100,94,107,103,97,99,118,104,103,113,111,100,125,100,104,106,116,113,105,89,108,105,90,104,105,103,104,108,111,112,102,105,111,108,103,119,94,89,96,100,115,111,100,84,107,94,94,104,93,107,103,96,112,109,105,101,104,112,100,110,103,108,95,106,117,105,132,92,103,100,94,111,117,118,111,111,102,121,101,102,106,110,104,121,102,95,112,103,95,92,95,107,87,117,108,111,107,97,96,88,97,110,127,105,104,105,110,98,101,105,109,99,99,106,88,115,99,107,100,102,113,100,107,108,99,100,103,118,112,101,105,94,113,113,105,108,104,108,104,117,105,109,91,109,96,110,110,106,99,98,110,106,103,95,100,113,104,78,105,105,99,105,113,102,121,96,100,93,106,105,112,111,104,100,108,113,113,112,97,106,116,107,101,105,96,110,104,115,100,110,106,116,114,99,104,104,109,86,94,117,111,95,95,100,103,117,113,116,106,114,97,98,104,112,102,98,109,104,117,109,106,103,114,106,100,106,95,108,101,97,92,108,117,110,111,103,107,98,117,104,103,117,106,115,104,100,110,112,105,102,100,97,108,102,108,104,92,112,102,110,95,92,113,112,90,100,97,105,105,107,98,104,105,121,104,112,116,109,107,98,102,103,97,100,109,117,97,105,116,106,107,103,103,101,104,94,103,113,108,109,101,113,101,100,138,100,110,101,99,110,106,111,101,102,109,107,102,104,114,112,101,121,97,114,104,75,105,96,86,113,126,99,95,94,109,100,115,87,108,100,109,97,91,105,104,111,105,106,101,102,105,102,114,121,106,111,106,109,100,106,99,105,97,110,139,107,112,108,103,114,91,104,100,99,113,96,90,99,111,107,130,105,113,111,100,102,100,104,121,101,103,122,120,106,112,96,107,125,104,107,110,96,109,105,101,100,98,93,99,100,99,102,103,119,101,106,108,109,97,102,103,113,102,109,103,97,102,102,93,90,98,125,81,101,133,92,110,96,120,107,99,112,113,109,104,74,108,72,108,91,109,88,105,108,112,101,107,108,93,105,103,108,106,113,103,109,103,106,99,115,99,99,115,99,106,117,100,101,110,106,100,111,106,87,115,96,109,110,91,98,98,91,100,115,109,101,98,106,111,107,103,101,100,104,115,102,103,99,112,104,91,111,110,96,104,99,100,101,128,105,109,105,103,103,114,106,114,107,102,95,107,102,108,98,112,94,103,118,95,112,92,103,118,114,104,88,97,89,112,127,104,107,109,106,103,110,111,109,103,95,129,93,104,114,89,103,98,110,104,110,119,110,107,103,108,100,94,104,104,113,113,109,111,115,100,97,100,109,106,117,99,117,113,115,95,99,105,100,106,94,106,108,100,107,108,100,107,102,98,104,101,82,111,95,115,117,110,105,91,99,95,92,117,108,108,102,107,116,112,117,96,104,113,112,100,102,105,128,101,108,110,106,114,108,104,100,92,107,104,111,103,106,105,103,105,104,106,107,102,108,111,105,102,110,99,104,108,119,106,105,104,105,104,128,95,108,111,114,100,109,100,107,91,100,101,108,123,121,94,101,102,110,109,98,102,108,113,103,114,97,91,101,110,101,106,121,105,107,117,111,104,98,109,110,118,107,116,104,104,101,105,105,105,103,101,109,105,103,93,100,109,113,94,87,112,107,108,107,103,102,107,98,104,101,106,104,97,109,107,103,108,108,98,87,97,105,104,106,106,110,104,101,90,117,103,94,116,109,100,90,109,102,101,100,136,100,115,101,88,105,109,95,110,93,106,104,115,114,121,106,97,117,104,108,105,104,117,95,103,102,104,95,108,99,102,103,101,103,111,103,103,93,104,100,108,102,121,103,97,107,109,108,102,92,113,109,106,91,105,111,107,101,99,112,95,120,112,111,104,101,95,100,96,103,104,92,100,97,108,94,119,101,85,101,113,112,103,103,108,105,91,108,105,100,109,116,112,99,94,94,97,107,108,114,96,101,102,103,96,101,97,105,104,105,112,103,95,118,113,102,117,117,106,88,99,98,119,107,92,101,93,105,87,102,98,92,105,105,100,105,103,92,102,121,96,102,113,106,121,105,96,102,104,101,97,117,99,100,107,105,113,105,75,109,101,91,102,107,104,107,108,105,117,87,104,93,100,92,107,101,104,98,90,109,103,112,109,110,112,102,110,105,87,121,101,105,112,102,77,105,97,96,106, +590.15674,111,102,95,102,93,106,112,85,101,101,100,98,106,91,112,96,105,100,100,87,105,105,87,98,118,103,102,100,92,96,95,119,107,105,95,103,97,91,102,99,99,109,103,86,117,108,92,98,112,99,107,97,80,97,110,93,99,103,103,86,100,102,101,92,90,127,107,103,99,105,87,96,105,105,97,104,104,98,100,98,96,106,109,99,98,104,99,98,111,104,110,102,114,100,116,94,104,100,94,113,107,104,104,94,76,101,92,96,105,101,99,95,110,109,107,110,101,101,97,89,114,105,104,118,91,102,116,90,73,109,105,117,94,107,99,72,109,105,91,106,101,101,79,92,93,90,102,101,105,113,87,118,107,110,104,115,84,99,106,94,100,95,106,102,118,100,104,91,114,107,96,108,101,92,105,119,101,92,102,97,110,97,103,117,107,105,114,91,109,103,84,109,97,99,113,107,90,108,94,106,100,105,88,104,98,113,129,100,107,102,107,102,101,86,95,108,109,98,107,109,101,88,101,99,100,100,101,97,92,114,109,97,100,104,113,93,100,104,111,97,82,113,104,102,105,105,98,94,121,98,95,98,94,108,99,98,96,111,98,111,95,99,109,102,94,132,99,98,109,99,105,112,103,100,95,114,107,101,97,98,105,101,97,113,72,116,97,105,99,103,98,95,82,101,104,110,97,107,100,88,104,108,96,102,104,106,111,110,94,132,110,117,87,101,106,101,103,100,105,92,104,99,97,98,97,98,102,95,98,109,109,113,114,94,91,104,105,104,100,104,90,110,111,108,108,83,103,114,107,110,96,92,114,97,101,85,110,103,87,89,102,96,113,95,101,104,104,112,100,110,99,107,133,104,104,98,106,92,102,107,105,119,101,105,100,96,105,101,108,95,122,99,98,75,104,99,105,104,96,117,95,105,111,100,95,90,105,95,114,96,109,76,103,104,80,78,96,109,105,108,97,110,95,121,113,89,101,93,90,106,110,112,112,107,108,94,100,113,110,100,110,107,121,113,105,110,109,109,108,95,91,104,95,97,101,99,94,100,99,99,107,92,103,100,111,102,104,92,103,98,97,104,95,91,96,108,106,108,100,114,119,105,117,102,92,105,98,99,95,105,113,91,112,91,96,106,97,96,99,103,94,106,103,108,117,106,97,108,106,110,113,106,104,107,92,101,108,103,104,99,92,97,80,104,110,99,95,97,115,96,105,105,96,105,96,101,111,98,92,108,103,110,95,104,107,101,100,98,109,108,105,102,93,106,91,96,92,108,107,101,106,103,111,112,107,105,96,110,110,100,100,97,100,111,93,104,101,79,118,99,115,81,99,104,99,108,106,105,104,108,102,102,102,109,110,107,102,106,82,104,90,118,107,109,101,105,103,105,116,104,99,109,120,100,102,79,91,94,94,106,96,106,117,91,111,120,96,103,118,95,107,106,98,108,95,105,104,98,103,98,111,117,85,101,103,101,96,103,109,108,107,103,79,109,106,113,113,105,103,106,110,96,116,98,99,104,105,108,111,114,101,103,101,100,106,113,105,93,110,96,104,106,110,104,102,104,109,108,106,107,97,99,105,106,111,110,110,105,110,110,96,95,102,113,104,107,103,103,98,105,93,109,103,134,99,113,103,117,105,112,110,105,102,106,102,102,116,104,126,112,95,102,104,100,98,97,100,106,105,105,106,105,109,102,106,109,101,107,101,103,101,92,105,86,109,98,108,92,100,99,124,101,101,103,105,107,102,104,100,92,114,95,108,105,86,120,108,112,118,110,106,108,111,100,102,132,110,104,108,111,108,112,112,100,110,124,111,101,109,105,102,102,125,89,116,109,106,105,101,91,115,105,86,109,110,105,103,106,109,111,104,106,115,102,108,99,126,101,107,100,102,102,112,105,86,106,95,94,91,110,97,103,109,102,104,95,104,91,108,99,97,110,107,111,90,102,108,109,100,110,99,104,104,95,113,103,98,98,104,104,108,111,113,102,96,103,113,116,99,99,115,90,103,99,106,104,100,107,102,105,103,116,108,101,99,115,106,112,105,100,108,99,111,109,109,102,103,104,95,104,95,116,115,121,108,99,93,109,106,105,117,104,103,111,118,106,110,111,105,93,93,103,112,103,99,103,99,104,106,104,111,110,109,110,89,109,104,106,111,95,90,101,109,113,109,96,97,108,99,119,106,93,107,100,101,120,113,104,108,101,89,104,110,96,99,103,109,103,94,122,103,117,91,94,108,99,110,101,103,127,99,94,101,113,102,90,103,116,95,103,103,95,102,107,102,96,114,100,98,90,99,113,101,112,95,104,109,117,97,91,106,105,105,104,100,106,99,116,104,104,111,102,100,94,116,107,122,119,133,131,141,145,149,128,175,171,189,163,137,136,141,139,124,146,103,159,113,127,103,108,81,114,111,103,105,92,105,104,98,116,86,106,95,108,96,75,120,104,106,112,112,102,100,99,100,115,95,98,101,94,96,93,91,109,113,106,86,115,108,121,103,100,98,99,108,103,104,100,99,109,102,101,112,109,106,93,102,106,91,110,97,96,102,102,109,102,103,98,109,102,94,110,107,94,99,96,95,107,101,92,104,106,104,102,91,104,96,89,100,103,110,101,111,111,84,106,102,96,108,102,103,107,93,101,103,99,95,101,107,103,120,113,103,103,97,90,111,96,114,103,104,102,97,103,102,102,111,117,105,109,89,101,102,85,96,103,103,102,101,111,100,115,105,108,91,106,128,113,117,109,106,92,111,110,114,113,113,108,104,87,104,98,106,109,116,106,102,99,106,109,96,99,97,110,94,111,104,101,103,102,94,98,116,92,95,94,100,108,99,107,97,105,106,98,97,101,99,103,102,103,101,100,103,102,119,112,103,97,102,104,98,109,98,108,112,100,99,95,106,113,107,95,111,100,121,69,104,99,101,102,104,103,101,99,98,110,112,106,102,104,94,118,92,106,110,105,106,110,105,96,98,98,106,103,107,97,76,106,115,101,106,103,101,102,108,100,121,83,96,85,98,90,101,95,99,110,105,96,95,105,96,103,106,110,101,95,93,99,117,102,102,102,95,93,96,100,101,109,96,101,108,108,97,98,116,112,99,90,93,95,108,91,111,108,119,95,99,110,100,102,107,100,96,100,105,98,109,97,97,102,107,98,100,126,104,94,101,106,115,112,111,86,100,100,106,116,94,106,106,98,95,105,114,104,102,86,106,104,93,109,107,108,108,105,102,105,91,106,106,87,106,115,91,115,113,105,112,117,88,107,115,104,110,99,113,105,100,102,93,103,93,106,118,106,105,109,115,106,104,105,107,109,110,91,102,78,102,93,105,100,94,107,105,105,102,100,99,109,114,95,101,107,105,96,103,112,112,103,113,105,106,99,93,105,99,108,107,113,113,105,108,106,98,110,107,117,105,105,108,91,87,105,98,112,101,102,109,110,94,103,102,98,111,101,118,97,104,112,110,98,105,81,99,102,94,97,99,107,112,96,100,111,102,95,102,105,105,110,101,94,115,104,97,99,106,92,111,105,98,109,102,108,115,94,102,121,87,100,104,96,98,98,99,113,98,102,111,99,113,97,99,113,98,104,113,100,98,94,116,112,97,107,101,105,109,101,117,103,118,110,106,95,106,109,94,99,93,99,113,99,87,108,99,113,93,109,108,101,98,116,101,108,98,102,94,99,95,100,116,87,106,109,108,96,117,100,116,97,101,112,107,109,102,105,113,95,104,100,86,105,96,98,104,102,106,101,109,105,96,99,99,90,103,99,104,97,101,94,117,105,102,100,88,101,107,98,108,101,107,98,94,91,114,96,104,109,101,116,109,101,111,102,95,100,105,95,124,104,106,106,108,101,95,95,98,68,90,102,109,109,102,109,101,105,102,96,109,75,99,98,104,117,95,120,106,101,97,100,101,89,103,95,110,91,104,82,96,103,112,103,100,113,91,112,97,105,95,109,99,97,107,96,103,111,110,99,101,95,108,91,113,104,95,104,107,92,110,106,98,98,115,104,103,109,96,101,108,99,116,100,112,98,108,96,100,99,109,106,95,105,79,95,113,94,93,106,110,102,97,96,107,109,104,99,107,92,106,117,88,104,104,99,109,102,109,102,98,103,105,99,119,91,99,107,101,103,98,109,103,82,105,90,100,94,117,100,113,90,87,104,103,109,106,91,96,97,97,82,73,111,106,99,100,108,107,106,104,102,108,95,102,104,107,89,116,107,93,101,101,75,101,110,108,102,102,105,94,112,120,100,111,96,108,102,97,105,112,93,93,112,102,99,96,104,95,85,91,96,103,103,108,97,99,95,102,106,101,97,104,104,103,109,122,105,102,96,110,98,102,109,102,108,105,109,113,108,95,103,105,98,109,103,114,107,106,104,92,99,108,100,101,87,100,108,105,109,92,96,116,116,109,103,95,95,106,113,98,105,110,106,96,111,101,115,106,98,98,85,104,99,87,87,98,106,112,99,105,96,106,102,94,93,98,106,105,96,114,114,93,96,101,111,112,92,102,96,100,109,114,110,99,108,102,111,104,98,99,97,105,110,100,131,96,99,108,103,105,102,103,105,99,102,108,102,115,86,97,99,110,112,93,91,109,92,95,125,87,108,105,98,109,106,114,101,106,97,114,103,101,96,104,105,87,103,99,87,101,113,109,101,110,97,98,105,113,93,110,98,101,94,107,103,99,104,120,105,98,94,104,110,94,100,104,110,89,112,101,107,102,105,96,97,106,104,105,105,102,97,87,104,99,108,107,101,98,105,96,117,90,100,109,109,105,102,106,94,94,92,96,102,125,91,100,110,101,98,117,113,98,91,98,112,111,109,110,98,105,96,106,95,108,113,108,113,101,94,94,100,131,107,110,110,76,110,104,92,100,90,108,94, +590.29773,107,111,87,100,108,107,114,112,98,109,103,104,110,99,74,110,107,101,109,96,108,100,100,102,99,104,93,101,98,103,104,122,104,108,86,120,95,91,99,95,91,107,104,98,104,97,110,104,92,111,95,105,115,101,101,101,95,91,104,93,87,118,109,86,102,108,102,113,108,103,114,74,107,113,108,102,103,96,111,107,111,109,100,114,84,92,117,110,109,108,93,115,101,122,91,101,100,96,98,103,100,101,106,117,96,113,110,113,103,118,103,99,109,106,110,113,122,102,100,124,91,98,101,94,101,97,114,113,108,99,100,116,93,101,91,108,99,115,94,103,105,96,64,102,108,101,106,97,109,90,107,105,124,101,100,105,93,110,104,109,111,104,98,97,96,102,102,108,105,86,107,101,88,84,108,112,106,91,103,101,108,107,104,106,107,93,105,95,112,97,104,106,92,99,94,105,117,107,103,111,100,105,119,101,111,110,95,109,110,121,111,115,104,93,110,103,100,117,95,102,103,105,95,102,107,108,104,116,102,104,102,110,100,122,120,116,118,124,110,106,92,103,106,105,91,102,106,98,110,120,112,114,109,107,104,105,103,101,66,114,101,108,96,103,100,108,105,103,106,107,104,109,114,125,103,94,107,107,94,103,100,101,103,105,100,116,95,106,104,96,113,104,101,99,114,106,100,105,107,117,108,97,112,110,102,102,89,107,120,112,93,118,110,102,113,101,103,116,108,103,99,97,94,102,119,102,108,95,104,121,118,100,97,92,99,104,104,94,106,109,101,104,100,115,94,86,112,121,115,107,114,99,106,114,105,114,116,120,110,113,110,102,102,105,111,113,112,121,101,107,104,101,116,97,110,106,110,110,118,103,106,108,113,107,114,102,101,109,79,90,97,112,94,107,101,104,105,113,99,106,99,110,113,125,89,101,91,108,104,107,99,110,99,107,102,101,105,111,100,95,104,111,101,104,117,109,104,95,94,106,103,108,113,106,104,107,102,121,106,106,110,107,99,108,103,106,90,102,105,114,111,97,99,109,120,96,110,112,115,92,112,107,112,113,116,110,103,112,107,103,106,102,136,89,103,103,90,110,95,102,100,107,116,102,110,109,107,105,109,101,110,115,105,106,106,108,104,102,109,104,106,96,114,99,106,107,95,92,109,98,110,98,101,90,111,121,102,97,101,106,117,110,89,106,117,108,113,104,108,105,101,100,109,112,113,112,110,112,99,101,107,114,86,101,105,97,101,114,109,103,97,107,106,114,96,98,98,99,100,100,103,92,114,102,93,101,117,103,103,101,97,92,105,108,106,112,103,107,112,108,108,114,102,84,109,104,107,101,99,91,104,99,96,103,123,110,112,98,109,107,91,105,112,103,95,107,95,92,111,98,99,105,103,105,104,119,99,95,102,110,97,105,99,107,110,108,101,100,104,106,99,100,102,104,100,105,95,102,102,111,110,85,109,111,110,100,111,102,99,115,94,91,109,117,115,108,116,109,105,94,109,105,99,100,104,113,109,102,92,112,109,103,113,97,102,107,95,104,110,112,103,109,110,102,106,104,105,97,109,106,107,104,103,112,108,112,106,94,105,102,103,105,129,94,107,101,105,114,99,104,132,102,98,100,108,122,108,98,130,101,108,106,107,108,110,107,110,107,104,104,105,92,96,103,106,102,109,103,130,109,106,110,102,114,98,97,107,108,110,105,110,95,116,101,118,119,104,106,112,107,102,89,102,102,100,112,91,106,99,101,108,102,117,106,104,115,112,99,110,113,99,100,96,103,107,102,106,103,98,106,103,101,104,105,101,117,99,101,103,116,96,99,114,102,106,111,99,98,112,114,106,106,102,104,103,101,98,108,107,107,110,109,105,110,102,104,104,96,110,104,116,100,103,101,105,103,116,103,113,99,91,109,109,109,103,108,95,113,120,96,111,102,109,114,99,111,107,105,106,103,109,86,103,105,103,107,105,134,114,111,106,113,116,105,101,103,105,101,104,104,113,105,113,110,110,104,102,111,111,105,102,130,105,104,115,108,100,115,109,116,106,111,113,104,103,109,97,106,99,106,103,103,95,103,113,115,91,106,105,103,111,99,116,109,87,116,102,94,114,93,110,98,114,109,94,94,94,91,101,91,104,109,110,108,121,113,112,99,95,113,97,94,105,100,103,115,108,109,109,101,109,133,107,101,103,105,106,101,97,102,106,112,121,109,99,99,110,102,113,114,100,117,101,109,115,102,99,104,111,105,103,104,113,100,104,131,100,117,83,113,98,105,98,101,115,109,103,114,91,117,108,110,113,106,107,108,104,100,113,97,110,113,103,103,106,103,91,106,116,117,99,103,98,125,116,120,117,136,128,137,144,164,152,142,170,157,184,174,165,167,143,158,131,142,129,134,132,118,96,124,112,112,123,118,89,108,106,113,115,91,103,123,114,96,111,92,103,113,97,92,100,109,108,109,120,85,119,124,94,111,113,105,109,109,111,116,94,100,103,104,110,102,105,105,106,98,102,99,114,98,109,112,88,105,104,114,114,115,93,97,104,98,84,112,109,96,102,102,102,95,100,114,107,101,107,106,104,104,113,101,98,100,110,117,100,105,106,105,91,92,98,102,107,105,107,131,112,101,91,106,113,88,100,94,101,106,91,114,109,112,111,92,98,100,104,107,98,108,102,104,109,106,100,111,110,103,115,109,111,116,96,85,109,102,106,101,98,94,99,107,113,102,99,110,106,116,105,101,105,105,112,104,97,98,98,113,111,108,118,104,77,105,101,109,118,107,104,110,78,111,112,104,91,104,111,101,103,110,79,84,98,103,74,107,103,111,113,110,93,111,105,112,104,102,99,110,105,104,110,104,120,100,115,90,103,96,103,99,122,107,99,117,106,99,101,104,108,112,112,118,98,116,108,99,95,94,104,106,98,104,115,103,96,102,103,100,113,104,106,110,112,87,115,113,95,88,95,102,111,103,104,102,101,85,112,110,110,105,106,108,112,127,102,114,107,101,105,129,110,105,107,103,95,110,106,99,102,121,108,108,108,108,112,99,108,103,96,97,108,106,101,113,105,112,95,106,94,120,101,104,115,108,94,102,102,97,118,78,102,113,99,103,116,106,104,107,106,111,106,96,105,89,99,106,94,90,111,101,92,99,111,104,116,95,100,112,106,105,105,109,113,106,105,95,109,106,102,99,118,106,86,105,103,101,108,103,104,103,113,105,99,109,104,89,108,110,99,112,112,113,110,102,113,100,117,129,104,115,112,110,118,141,109,109,101,114,103,105,109,110,107,103,105,113,110,97,100,112,100,99,101,96,97,104,100,121,101,96,103,102,100,103,104,99,104,112,107,114,103,99,104,116,113,106,110,105,108,106,99,113,101,118,99,109,105,107,98,111,104,99,102,109,112,109,111,117,94,76,108,121,117,105,90,96,103,101,97,97,107,93,112,102,118,91,99,97,97,105,104,93,108,103,126,97,107,117,101,104,110,95,119,112,106,98,106,104,86,105,107,96,108,104,105,111,109,110,106,103,127,104,100,105,97,106,104,109,105,99,114,104,104,100,105,103,95,111,97,113,108,100,100,97,109,106,110,97,103,132,98,105,94,102,96,102,101,93,103,108,110,109,116,102,104,121,112,102,106,101,104,106,105,108,95,119,108,93,96,101,106,120,104,112,103,92,107,99,109,91,108,92,106,108,105,112,117,93,111,100,111,110,106,104,104,99,105,104,115,95,85,100,98,93,108,98,100,106,115,115,104,106,114,100,76,117,98,108,105,104,117,117,99,119,106,100,117,104,121,111,107,105,108,104,106,109,117,110,98,100,109,98,103,102,101,113,98,99,111,113,87,96,97,103,102,105,117,108,106,106,110,80,99,108,98,105,113,104,81,113,109,103,106,97,101,110,106,106,111,111,111,104,94,97,118,105,93,94,99,92,102,106,95,94,100,103,100,99,117,109,104,87,112,93,104,119,108,102,103,112,105,96,113,106,110,111,106,106,97,119,107,120,123,106,101,108,100,116,102,98,101,111,108,104,98,93,112,112,100,102,114,105,104,100,106,114,88,104,106,102,99,104,101,103,112,110,108,106,99,103,102,102,97,106,98,101,106,104,112,99,108,116,108,105,103,113,90,105,103,112,101,106,110,113,92,101,102,93,101,106,96,102,98,115,106,101,105,116,105,109,114,105,114,104,102,110,105,103,110,110,115,108,103,99,109,101,99,102,103,110,102,99,113,108,113,100,95,100,106,104,116,104,106,105,107,105,104,109,106,101,96,100,110,108,108,104,100,98,97,100,105,116,108,94,113,88,101,104,101,103,103,106,106,100,105,104,96,112,116,111,109,107,96,108,98,105,105,99,109,99,113,98,95,75,98,108,117,108,108,107,111,92,106,76,98,108,115,113,129,109,105,108,110,87,102,104,113,104,91,96,82,108,98,94,104,106,101,98,103,111,105,92,100,107,107,97,104,104,112,105,115,103,98,100,95,88,106,99,104,113,113,102,118,105,104,105,98,108,85,106,99,95,93,125,104,102,103,106,102,104,95,99,105,108,108,103,117,113,104,99,99,107,99,105,107,114,117,116,105,102,101,118,97,103,102,102,114,100,126,101,97,109,99,106,115,105,104,91,114,114,110,93,86,98,112,105,96,90,100,103,104,105,104,105,111,106,107,102,111,109,98,103,98,106,93,106,98,92,98,103,97,110,101,94,92,116,103,117,102,101,109,107,101,99,112,106,87,106,93,103,92,99,108,94,101,100,132,114,98,100,115,103,109,109,106,96,109,94,117,106,114,107,97,91,101,104,125,105,102,101,97,108,97,109,104,99,84,103,112,113,95,90,110,98,108,111,113,97,106,120,119,117,106,93,100,113,92,103,104,96,75,95, +590.43872,100,101,106,107,127,108,98,120,112,116,112,115,100,106,123,109,103,130,108,100,112,95,112,100,104,109,104,97,103,123,106,89,97,100,107,104,123,110,114,91,99,127,91,98,97,111,95,109,94,119,104,106,112,95,111,109,109,107,107,97,117,105,104,84,119,121,101,94,112,103,123,111,101,105,95,113,86,111,111,98,105,110,105,119,99,106,109,114,110,102,113,111,111,108,106,110,108,87,100,104,104,108,91,102,100,105,97,108,109,100,106,84,101,107,100,100,108,111,115,108,112,104,95,94,106,101,114,104,111,117,107,112,98,94,108,108,102,110,107,106,100,108,106,116,100,102,104,98,104,102,106,113,111,113,96,109,113,111,95,99,103,104,99,109,114,112,103,104,105,103,106,86,114,108,106,114,96,103,108,100,110,108,99,120,106,106,103,100,109,100,99,106,102,101,118,117,109,113,104,107,102,117,103,112,116,103,85,99,112,111,76,109,105,103,104,97,116,111,108,106,106,98,101,104,98,105,117,107,112,111,107,115,110,113,115,108,105,103,115,109,113,104,112,102,110,111,117,104,115,102,113,103,105,105,104,108,121,107,82,113,90,107,117,95,100,106,113,106,102,89,85,111,118,109,113,118,120,103,118,111,117,120,110,101,105,113,97,112,103,113,103,105,108,112,100,109,111,104,122,92,109,98,107,114,84,113,112,106,98,122,96,111,95,110,106,104,106,108,118,103,104,99,112,116,104,105,114,103,103,112,80,111,114,102,100,108,114,113,111,106,102,102,103,106,115,98,114,108,114,106,108,102,130,111,108,107,116,77,101,105,116,106,102,109,108,110,117,110,116,100,103,106,118,111,110,121,114,104,107,108,93,110,98,109,105,111,121,120,104,96,113,103,102,121,104,102,102,98,110,122,106,106,109,108,115,105,108,98,106,104,101,111,103,102,97,100,109,101,115,100,98,120,112,106,112,105,107,101,112,114,108,126,108,116,99,110,104,106,108,100,112,104,108,107,101,105,107,107,115,110,91,104,111,107,107,112,110,102,123,107,107,109,110,107,114,112,109,109,113,98,109,108,114,117,109,112,105,106,114,111,105,95,119,113,110,110,108,94,94,111,112,106,93,102,104,109,105,110,103,102,107,88,106,109,102,120,86,100,106,92,115,116,95,106,102,99,105,107,105,110,101,110,102,103,101,111,114,104,111,113,109,100,106,105,107,100,105,111,123,104,100,120,93,97,114,98,98,105,108,95,108,88,119,110,107,106,109,102,113,110,103,111,117,102,105,102,106,108,99,87,124,118,107,104,106,109,105,105,103,103,109,111,110,107,110,112,110,114,112,104,113,105,102,100,107,106,110,118,95,108,96,117,105,111,125,113,113,114,110,109,103,98,103,110,109,95,108,105,116,102,101,124,118,102,112,104,104,119,110,118,108,112,102,106,100,102,107,99,109,117,114,106,116,109,103,106,107,130,103,103,108,100,103,115,107,117,111,117,103,87,125,103,100,113,85,88,101,108,102,103,112,105,103,111,99,104,109,103,104,99,118,114,130,100,107,110,111,102,96,107,107,116,104,103,103,98,102,124,111,100,91,105,101,107,107,109,123,116,113,117,107,108,104,99,107,108,102,109,112,103,113,105,100,120,106,113,110,108,113,110,115,119,100,104,113,111,103,100,110,113,110,103,116,106,106,112,101,103,101,109,113,104,105,99,105,108,106,111,121,109,115,105,96,99,106,107,105,106,106,102,115,107,104,98,102,113,101,104,101,105,121,110,122,117,124,105,105,111,120,109,114,102,121,114,102,107,87,111,113,115,112,113,111,103,108,107,104,103,111,102,106,97,112,97,119,98,108,107,118,110,107,106,94,110,106,114,110,91,106,103,99,102,109,101,110,99,103,93,110,117,110,112,102,102,111,109,114,109,98,96,111,113,108,105,101,113,109,103,113,102,104,106,104,113,100,97,101,104,114,112,115,105,102,99,103,107,110,107,112,104,99,108,108,121,104,100,102,129,98,106,112,124,94,108,110,125,111,99,103,98,105,104,107,106,101,99,112,100,109,86,97,106,113,99,102,99,111,104,103,108,112,103,100,102,109,106,111,113,105,109,102,112,86,115,112,109,109,105,108,108,89,112,104,110,110,109,95,126,110,107,108,115,112,119,101,99,106,131,109,106,107,114,126,101,107,99,110,102,108,106,95,114,106,115,109,104,109,100,108,89,113,103,115,108,113,106,102,95,101,106,103,107,108,95,100,109,113,108,113,83,97,94,94,106,110,109,110,110,102,115,97,110,97,110,115,102,108,112,120,125,111,102,98,100,108,116,106,111,113,113,115,105,108,109,129,102,117,109,133,145,137,151,172,140,168,167,159,156,159,140,151,139,149,142,114,136,129,103,106,107,104,123,98,105,98,119,106,100,96,117,104,124,109,102,102,108,129,106,94,100,94,114,92,106,108,110,96,87,107,115,111,135,112,98,99,109,83,98,102,101,100,96,102,98,92,108,108,111,99,67,98,113,100,102,106,110,104,101,106,98,109,99,99,92,108,93,100,103,104,99,101,118,103,96,103,105,117,99,110,93,108,93,94,117,110,116,110,100,115,111,110,101,113,98,108,103,99,101,84,104,124,97,61,104,108,121,96,115,96,107,100,107,103,106,91,104,112,99,107,109,111,112,103,111,114,119,105,104,103,116,68,96,102,113,97,114,108,95,104,105,108,100,107,109,99,116,103,87,95,111,105,101,99,103,117,106,106,99,96,105,115,103,116,108,113,96,101,103,112,103,102,103,96,103,113,74,107,115,92,110,102,104,105,109,115,98,107,97,108,108,100,107,104,111,100,91,115,105,107,112,106,98,105,108,95,110,107,111,109,95,113,102,99,111,108,104,107,106,112,111,91,106,111,106,108,125,102,100,105,108,101,113,96,102,116,104,99,101,112,104,105,107,99,107,109,102,107,101,102,99,121,94,90,105,103,122,95,108,114,99,109,109,105,109,107,110,111,111,94,94,105,106,97,109,111,109,103,106,91,112,99,106,104,94,102,102,116,103,116,109,108,117,105,104,111,97,106,104,108,107,101,112,117,99,118,103,86,101,113,108,109,105,111,102,109,106,104,101,100,105,102,111,106,114,109,110,101,112,101,115,112,96,102,107,115,98,104,108,108,104,101,102,98,102,108,107,116,106,96,104,98,114,101,112,105,98,87,107,113,127,105,111,100,108,94,109,109,103,95,110,137,110,102,117,118,104,95,104,105,101,98,99,105,103,99,104,107,105,102,102,109,109,83,123,105,122,108,113,125,99,104,105,103,106,100,108,94,106,114,101,99,109,109,101,113,109,109,100,113,108,108,103,106,100,106,111,115,98,111,100,108,112,96,119,104,105,89,103,110,98,106,101,112,104,91,104,108,106,98,98,96,106,111,107,105,102,108,93,101,102,97,100,113,103,98,75,114,108,103,127,93,107,105,104,98,97,112,107,93,97,99,107,104,116,100,106,104,100,112,100,105,99,100,109,116,110,107,107,82,105,110,110,101,95,108,101,106,105,100,124,113,102,89,112,111,111,102,109,108,107,98,104,99,105,108,110,103,112,106,106,110,109,112,103,103,104,100,101,112,97,99,102,100,106,102,109,104,105,109,113,98,101,109,107,106,98,103,108,100,95,103,111,115,104,98,121,103,113,110,93,80,93,122,102,123,99,97,111,97,107,90,109,109,100,108,84,109,105,111,107,111,95,110,102,102,95,103,110,108,107,99,107,95,102,108,100,112,108,102,104,101,101,98,112,99,110,106,111,109,103,107,95,104,102,119,106,112,113,102,110,96,111,102,119,94,106,108,110,97,96,99,117,103,103,106,107,98,116,101,106,94,88,104,95,103,103,102,99,99,113,102,98,104,111,106,104,109,122,103,93,105,99,96,106,97,110,119,94,112,95,102,117,110,109,107,101,103,93,118,104,116,99,110,104,99,105,104,115,100,117,120,113,101,123,112,109,104,102,94,106,110,99,112,104,104,103,115,98,104,105,111,108,106,101,101,116,109,113,110,103,117,109,102,98,106,122,113,102,98,105,93,124,99,118,113,113,109,102,102,96,98,103,113,94,111,110,94,105,106,116,91,116,142,102,103,107,113,101,115,102,104,91,104,102,110,118,110,95,108,103,112,104,113,102,108,122,97,104,111,112,104,112,107,119,106,98,105,104,105,104,111,104,105,98,105,97,107,103,104,113,95,110,119,101,103,101,100,99,104,109,120,106,115,102,109,104,102,101,96,104,105,97,108,109,105,108,93,96,102,110,127,94,115,107,116,109,94,117,105,93,110,103,112,107,105,107,106,109,111,106,95,107,124,120,104,76,105,111,106,103,106,119,115,105,107,109,110,111,105,109,96,99,102,107,98,104,97,99,100,140,112,116,102,104,103,105,103,101,106,109,110,113,94,101,85,103,97,100,102,105,106,111,105,107,110,115,113,108,110,103,95,96,119,111,107,111,105,105,105,105,111,111,99,104,107,120,105,121,94,104,102,104,113,94,104,100,109,112,103,92,112,99,113,109,112,115,104,103,98,103,106,99,107,104,94,114,95,103,108,107,100,110,101,117,100,104,108,94,104,106,117,105,107,91,103,100,95,102,110,104,111,103,95,105,93,100,101,111,106,93,110,98,108,103,99,104,99,98,108,112,110,102,103,102,102,103,93,89,115,102,94,109,110,120,107,110,80,107,95,81,112,84,91,107,116,99,102,100,103,98,104,102,105,105,114,109,108,95,103,91,105,106,104,97,105,117,111,119,98,109,120,95,100,107,88,112,89,89,109,106,112,83,105,102,96,101,113,96,113,98,94,105,121,97,101,97,104,98,93,106,112,98,116,108,93,100,111,104,109,98, +590.57971,99,88,100,114,94,124,130,89,98,92,100,94,91,104,105,115,93,131,113,101,117,106,103,110,100,86,96,108,109,103,105,97,102,97,107,97,104,92,103,91,100,108,98,114,106,107,95,114,113,101,104,104,108,108,116,85,93,104,99,87,109,103,92,106,109,106,102,113,117,100,113,117,104,99,91,103,107,98,103,108,109,109,94,97,110,107,104,90,112,97,109,97,95,98,104,101,91,106,102,100,103,96,99,92,109,108,91,116,101,102,107,96,112,99,98,104,90,111,114,95,116,106,103,99,104,112,110,93,106,113,102,99,109,107,100,95,103,112,97,103,100,107,109,98,107,93,110,101,101,98,99,108,117,108,97,96,127,102,110,111,109,105,107,99,89,102,99,111,108,95,112,96,99,97,114,101,91,104,108,108,103,103,94,111,95,108,108,88,93,108,106,114,109,113,109,92,107,105,108,105,103,107,121,100,92,101,104,104,102,97,100,117,110,116,110,100,105,104,99,109,105,105,112,86,112,114,87,102,106,110,95,105,103,113,91,91,113,110,109,106,110,100,99,100,112,73,98,106,105,99,102,97,123,104,101,112,100,107,102,109,105,111,102,108,99,103,104,101,99,112,106,107,118,111,104,94,103,104,102,96,110,105,105,100,98,98,101,94,106,114,105,106,104,112,103,99,98,104,105,100,98,100,114,123,117,99,117,137,107,101,112,109,110,98,104,121,97,99,111,108,108,91,111,119,100,98,95,99,114,113,110,90,108,106,108,107,99,106,99,101,105,101,102,97,105,102,103,109,108,99,110,92,105,93,107,102,129,106,106,109,103,94,94,100,99,91,114,116,104,96,106,97,107,99,111,99,118,110,107,108,115,117,108,96,129,91,99,101,104,106,104,106,106,96,100,105,100,108,103,95,92,114,95,97,115,91,84,117,105,105,93,105,108,104,97,104,111,101,106,107,109,112,136,99,89,95,102,97,106,122,105,113,112,106,102,104,90,101,94,106,94,112,87,94,100,107,111,101,108,98,104,97,108,108,110,107,106,101,108,97,103,100,103,117,109,126,105,94,109,92,101,99,111,99,116,107,103,126,95,121,98,108,106,95,110,99,103,100,109,95,114,107,104,114,106,106,102,113,120,91,105,103,103,104,114,112,100,105,100,98,113,106,104,110,119,99,105,91,100,102,100,106,100,113,109,98,109,97,102,107,96,107,109,107,100,103,107,98,109,120,105,94,105,112,103,100,105,103,108,112,99,112,101,106,106,102,95,112,75,95,113,98,109,107,96,108,97,96,105,111,109,95,107,121,94,102,100,105,110,105,102,109,90,102,95,94,112,96,95,95,110,88,111,103,112,88,97,114,95,105,107,87,102,88,100,104,97,99,107,105,93,101,108,101,102,92,100,101,109,94,108,129,108,87,110,99,108,107,105,103,112,103,106,103,87,105,105,105,103,108,103,100,96,109,107,95,100,106,104,120,98,91,96,108,100,98,106,103,105,115,104,104,103,102,98,120,103,102,99,98,105,105,108,107,109,104,109,106,95,95,104,112,106,90,121,105,103,100,116,125,105,91,99,103,98,93,102,106,103,98,112,96,92,103,104,107,108,118,81,98,102,114,110,90,94,111,93,95,110,100,110,95,108,109,94,104,107,103,110,105,116,106,105,99,105,111,100,104,99,91,114,95,110,106,102,113,109,114,113,100,105,107,103,104,99,111,113,105,94,101,97,99,86,101,103,102,100,106,100,104,102,99,104,82,107,97,82,103,111,107,100,107,109,97,103,115,109,105,102,131,116,117,114,109,104,107,88,103,121,98,106,100,99,101,94,113,92,107,110,78,118,97,95,98,116,93,110,110,104,92,107,125,112,98,98,105,105,110,102,70,106,114,109,104,108,117,94,105,116,108,92,105,112,88,104,103,108,100,113,101,109,87,93,113,117,105,112,108,102,103,109,90,107,96,112,100,103,114,114,104,101,103,103,115,107,97,104,95,93,109,100,101,109,85,110,107,91,117,116,104,106,106,97,107,121,90,110,101,104,99,93,105,112,87,100,107,117,98,100,106,105,112,105,105,96,119,96,106,104,108,112,100,107,104,111,95,98,103,87,104,106,98,107,104,106,103,103,112,100,105,103,109,94,115,100,99,95,107,104,104,113,107,104,106,117,97,99,104,104,109,109,113,99,100,108,103,98,72,80,98,95,95,112,108,100,108,117,106,103,115,137,108,109,107,117,102,71,106,116,100,100,118,88,94,94,93,90,111,101,103,111,100,98,105,120,104,95,98,103,104,102,113,99,106,101,113,125,98,100,87,103,101,108,108,106,112,108,93,106,109,101,117,117,109,113,117,115,110,115,125,142,150,163,151,163,160,159,158,164,141,144,139,131,135,128,122,114,123,119,106,97,111,103,107,105,99,70,101,95,100,96,93,97,109,100,123,101,109,103,101,113,108,95,108,92,100,132,112,101,112,102,96,116,101,89,103,90,109,108,83,111,102,116,116,98,118,106,100,100,105,105,110,109,107,122,103,103,112,103,88,102,113,101,106,101,102,99,103,103,115,98,95,119,107,104,100,102,106,102,99,94,94,90,121,99,112,111,108,108,112,102,116,109,99,105,110,108,107,115,107,97,90,107,94,109,109,89,95,90,103,104,89,103,103,99,104,91,102,97,114,109,102,90,112,114,104,106,97,120,100,106,103,111,95,103,89,105,103,112,105,102,103,116,110,113,96,120,99,115,93,106,110,108,106,109,110,98,106,107,102,110,97,100,96,104,119,107,108,108,97,95,114,107,109,101,100,120,94,117,112,120,109,99,101,100,100,109,111,103,109,100,106,106,106,107,110,105,110,99,113,97,87,108,101,107,109,108,101,100,105,120,112,107,112,116,109,95,108,92,111,99,110,118,108,102,98,102,106,68,105,107,104,101,103,112,103,100,106,99,117,103,106,102,98,93,105,107,105,112,104,87,106,104,98,106,107,103,112,110,103,129,109,109,100,97,104,124,102,94,112,93,104,91,107,111,108,99,94,103,106,99,122,107,104,96,101,93,95,111,99,107,110,101,96,92,91,94,101,99,95,102,102,102,113,102,89,104,96,95,112,109,108,106,114,102,109,99,101,90,106,108,98,107,95,102,104,102,112,97,89,98,91,111,108,114,106,94,104,100,92,105,110,104,95,92,102,99,103,112,99,111,107,103,95,106,104,107,101,71,107,112,105,95,99,106,115,116,98,96,94,103,121,116,109,104,102,102,113,98,92,103,107,113,101,100,102,100,101,104,94,108,92,108,94,100,92,113,106,109,105,108,106,103,78,106,104,96,102,109,109,94,104,107,104,103,103,107,99,111,116,109,107,117,107,102,109,103,102,96,97,108,87,103,93,105,97,99,102,115,112,91,100,96,101,116,101,102,93,99,102,94,101,112,110,100,115,101,104,101,103,99,113,100,96,99,104,100,104,106,103,98,104,108,96,108,103,115,110,102,99,117,102,102,110,106,105,108,97,105,113,129,106,100,120,105,106,119,108,95,106,126,108,114,99,99,104,96,108,110,117,91,117,111,109,104,96,108,109,99,75,113,110,105,99,99,108,115,100,106,99,100,99,109,109,113,96,109,98,98,104,103,103,110,95,107,106,102,104,106,92,108,96,111,106,95,96,90,107,102,96,106,106,100,109,96,100,113,115,115,106,98,91,120,111,78,100,108,106,101,84,98,99,110,111,107,110,116,106,98,98,102,104,103,129,105,98,112,109,109,109,107,113,94,101,94,99,100,102,101,109,103,116,94,117,109,98,98,105,105,109,110,98,106,101,101,121,102,103,98,110,97,101,100,117,98,111,102,97,111,102,108,108,106,101,105,98,95,95,107,108,95,110,102,105,108,114,94,101,97,99,95,77,105,107,117,95,104,104,108,109,106,111,112,104,100,102,95,97,63,94,104,116,102,108,103,97,100,108,94,102,99,100,91,99,99,105,85,114,96,98,105,119,96,116,107,95,104,91,101,104,109,110,100,113,86,99,107,94,107,90,107,106,90,106,125,111,99,106,112,112,106,106,103,106,93,103,106,102,99,94,97,100,99,100,107,103,108,105,107,102,97,105,102,101,107,111,114,104,106,103,110,111,89,104,112,113,100,102,111,109,99,101,98,100,110,112,100,80,101,105,102,105,107,115,100,111,104,112,123,85,98,113,99,95,100,97,95,114,104,107,116,97,112,104,96,103,104,99,110,99,100,98,102,106,96,94,98,110,96,102,95,104,112,97,113,104,92,108,91,106,100,106,96,102,99,102,116,95,107,115,118,110,113,101,103,115,100,100,100,107,110,109,104,108,110,91,111,101,109,124,108,110,106,112,103,104,104,112,104,102,100,105,113,102,103,107,111,105,101,98,90,111,113,107,93,108,103,104,92,95,106,91,113,102,109,106,107,90,89,103,109,117,106,102,108,94,85,104,108,93,99,96,108,107,99,91,106,107,98,112,101,105,103,96,103,104,95,101,117,101,73,101,99,99,101,103,121,102,84,85,111,98,79,109,104,107,99,105,122,96,93,107,98,93,94,102,101,108,97,92,104,82,100,100,109,108,104,105,101,107,99,101,101,105,106,99,101,92,92,107,108,98,87,97,106,103,110,95,104,100,105,105,98,94,106,94,110,96,113,100,121,111,120,113,100,80,98,101,94,97,106,107,107,98,102,106,95,97,103,117,112,109,102,108,103,105,109,95,108,86,96,96,107,107,102,107,95,103,102,98,107,98,84,118,100,100,83,98,89,103,100,104,106,101,93,102,105,91,100,96,104,99,100,103,103,107,94,92,106,100,115,104,99,85,112,112,102,116,108,105,91,114,91,98,97,103,106,102,106,98,106,100,106,93,105,100,117,93,103,101, +590.7207,104,118,110,97,99,105,109,90,79,94,104,111,114,110,115,107,109,106,127,98,98,101,100,105,99,103,83,97,109,85,109,99,84,116,96,105,114,103,93,106,97,105,113,102,108,122,101,112,110,120,101,101,105,96,116,94,105,114,123,97,99,92,109,95,101,117,100,112,105,98,107,94,101,108,98,113,119,107,92,101,107,96,109,99,106,100,105,94,96,103,99,109,93,109,106,104,104,92,104,98,108,102,112,108,107,105,96,101,107,106,91,98,108,85,102,102,109,106,108,108,105,108,100,117,111,106,110,104,112,122,113,112,99,98,101,100,108,117,103,110,94,99,99,113,100,103,111,113,101,109,108,107,95,92,90,113,114,124,102,101,110,99,104,106,108,108,106,106,94,96,111,103,102,96,114,103,98,101,87,102,105,105,108,102,104,98,100,111,98,103,110,97,106,96,98,107,102,103,96,104,100,112,91,114,94,114,107,117,107,110,103,93,105,93,83,109,96,109,106,107,110,107,105,100,107,101,102,118,105,110,125,104,100,107,102,98,104,120,104,107,107,108,110,88,97,103,119,113,101,96,105,115,103,112,100,115,104,108,106,108,80,111,107,112,106,94,113,98,90,96,98,112,93,102,108,109,116,102,100,113,105,109,94,100,100,105,95,103,102,99,103,101,99,98,122,119,98,114,106,118,85,107,104,125,99,91,102,98,108,104,95,113,103,99,121,99,118,104,114,100,95,109,109,103,111,110,103,105,100,103,110,113,104,102,102,112,102,96,76,105,97,101,75,103,98,112,102,98,100,101,109,94,99,109,114,114,109,104,104,117,100,96,98,99,103,106,97,111,96,118,107,91,104,100,100,99,100,109,101,99,85,108,98,103,101,104,95,106,108,100,111,99,104,141,105,108,106,100,107,99,110,118,110,98,110,97,102,107,99,107,99,107,100,115,107,116,88,103,105,94,93,101,105,105,102,98,113,92,103,96,106,110,102,108,82,109,94,109,99,116,113,102,98,113,95,98,106,96,124,124,89,101,98,102,110,104,114,121,111,97,98,107,103,106,125,105,108,93,99,104,103,104,111,97,90,85,103,92,111,109,121,104,121,97,108,94,112,116,107,103,117,106,111,106,114,109,97,98,103,100,118,112,112,108,112,124,105,106,107,110,109,108,71,100,100,104,108,110,98,94,107,106,101,100,114,100,103,109,104,94,109,127,108,107,97,112,105,102,98,107,110,103,105,107,102,100,103,107,93,100,106,109,118,111,88,104,91,110,106,97,107,106,108,109,106,109,99,110,112,105,99,111,104,99,106,91,102,105,97,110,107,103,108,92,109,94,113,119,108,104,100,114,99,109,109,116,107,97,110,99,101,103,113,103,95,96,93,101,105,105,113,103,113,109,109,106,101,100,94,104,102,100,96,97,104,116,96,117,114,98,102,92,113,91,109,103,88,102,111,104,115,113,106,109,107,106,96,94,121,102,104,119,106,100,101,93,109,121,99,110,114,99,106,113,73,103,112,99,99,94,107,109,105,107,96,95,108,108,109,96,101,107,117,109,122,101,109,116,103,117,88,108,108,95,104,99,105,109,104,98,68,102,107,104,105,115,101,108,109,104,109,101,100,90,99,117,112,97,100,100,113,94,110,91,99,97,123,111,113,116,108,102,103,109,108,108,110,103,106,100,108,112,106,100,102,104,105,109,102,119,101,95,107,109,103,103,97,110,109,111,99,99,91,97,112,94,99,120,104,115,111,101,115,99,113,115,100,113,107,104,92,103,104,104,93,119,101,113,104,113,114,108,98,104,110,101,99,107,106,108,96,102,98,112,100,117,105,113,96,116,119,105,99,101,108,105,112,106,108,116,104,109,102,106,98,109,95,107,110,112,95,126,103,109,105,118,107,98,103,103,98,100,125,108,111,111,98,105,106,103,103,105,106,101,97,99,102,107,95,103,114,109,108,110,104,103,112,104,112,99,106,107,100,108,109,110,103,99,99,106,109,113,111,121,110,100,89,106,100,99,105,107,106,104,99,99,105,112,100,117,103,86,117,108,102,110,95,114,97,109,106,104,111,111,102,95,113,102,107,111,113,107,110,96,95,99,108,94,102,99,117,114,87,115,104,109,102,112,98,102,102,110,109,107,99,97,112,112,98,105,113,116,108,102,106,111,115,89,108,112,106,113,102,107,114,103,97,101,96,107,103,102,103,114,105,110,102,114,94,106,99,97,94,98,103,99,104,111,103,102,93,108,118,98,108,103,104,107,99,98,108,97,102,109,107,109,111,108,91,111,94,106,94,112,105,127,115,112,106,102,114,109,90,117,108,114,105,107,105,111,121,104,98,106,106,122,121,130,117,141,144,157,154,176,167,164,127,165,132,153,144,149,132,137,143,125,109,110,106,117,119,114,108,110,106,111,109,104,78,102,96,115,111,110,113,101,117,104,102,111,71,103,112,106,102,106,114,101,110,108,105,124,112,96,107,103,115,98,105,112,105,106,94,101,111,121,108,113,111,102,104,117,123,126,124,107,95,113,88,119,107,106,104,107,107,115,101,115,112,105,101,117,109,104,102,118,88,106,97,102,111,106,92,108,103,93,118,113,102,108,115,104,109,112,112,104,110,111,117,104,107,99,98,98,97,131,108,106,115,95,101,101,120,113,111,116,108,106,100,110,103,103,106,113,105,107,103,105,105,105,101,100,112,111,106,111,109,96,111,104,106,106,107,86,116,116,112,103,109,116,112,110,112,103,100,106,109,103,108,120,120,115,104,105,114,105,87,110,111,94,115,105,104,112,108,105,109,105,103,113,100,108,106,118,113,107,102,108,100,104,103,124,129,109,98,99,107,104,106,104,109,112,111,116,117,93,101,100,103,111,97,104,105,103,104,107,101,112,112,117,103,98,106,106,92,108,107,100,98,110,110,103,102,112,108,120,102,105,96,93,111,106,100,105,100,106,111,119,106,80,105,107,100,80,113,122,111,97,117,106,111,120,98,106,113,113,112,107,103,105,115,92,104,107,106,99,97,110,106,85,106,98,95,99,107,103,96,97,113,106,100,114,96,105,94,100,108,101,106,103,114,101,118,108,114,106,112,114,107,95,101,109,99,105,112,112,101,105,102,106,96,101,108,98,107,92,105,108,109,113,100,100,110,99,110,106,103,94,106,97,103,113,105,111,98,123,106,106,105,106,96,111,110,123,105,102,108,113,101,105,94,99,100,102,80,104,113,92,109,75,107,101,108,105,115,115,99,113,108,105,110,106,100,112,116,104,111,119,99,108,99,105,94,117,108,104,99,139,131,100,111,108,100,112,107,115,101,104,118,102,115,113,105,98,117,104,119,126,108,113,106,91,109,111,95,123,108,102,113,101,106,112,99,111,113,116,100,110,109,97,103,117,118,69,102,106,97,109,109,103,102,94,106,116,91,117,92,102,97,103,116,88,108,100,104,101,104,108,105,101,113,106,110,103,111,107,108,98,108,117,110,107,102,90,116,108,106,106,107,94,112,108,112,103,108,113,110,105,113,109,95,106,95,110,114,101,110,116,109,107,112,108,106,108,117,107,107,107,110,103,106,104,112,117,117,88,102,113,112,104,94,103,104,88,106,98,108,100,118,115,113,107,118,112,109,110,100,100,100,109,109,97,108,111,114,103,107,109,107,99,104,110,108,107,110,109,126,112,104,111,94,113,104,98,107,99,96,115,105,105,110,109,101,101,104,105,96,115,98,99,117,108,84,104,101,105,104,98,106,106,112,100,94,95,104,103,117,103,123,105,102,112,106,109,111,106,116,101,116,107,100,99,97,101,109,102,110,96,107,99,98,102,110,86,107,112,99,113,120,99,117,107,107,107,105,124,109,95,107,113,101,103,106,105,112,108,92,102,91,105,95,109,107,103,106,109,121,95,104,110,111,112,116,109,106,105,107,102,110,108,92,103,106,99,101,109,101,108,108,101,111,112,103,106,117,104,85,96,101,125,103,113,100,94,116,95,106,95,104,88,112,105,106,103,102,101,123,110,104,113,105,107,103,108,110,104,104,103,100,101,100,105,109,100,96,98,105,98,103,99,101,106,104,99,110,109,94,110,105,114,75,107,119,104,94,91,102,108,107,106,101,98,110,114,104,94,95,120,103,107,108,90,101,88,105,99,102,104,105,113,114,107,101,109,98,106,106,126,112,84,109,107,104,115,108,101,100,102,113,105,108,109,111,112,102,106,103,115,102,95,94,109,108,105,98,102,111,98,98,108,110,111,107,99,98,107,113,84,87,98,99,102,103,105,114,114,115,107,97,116,101,107,100,111,120,107,102,106,96,104,109,108,117,107,99,101,101,102,102,109,108,106,112,102,110,100,105,93,107,92,102,107,106,105,91,95,106,125,100,81,96,101,110,113,110,96,97,126,110,98,121,104,108,107,99,109,104,89,74,107,113,115,103,107,124,96,107,100,114,119,102,97,123,101,110,105,107,107,105,108,98,101,97,122,110,113,109,103,101,105,110,103,107,101,80,88,109,110,104,105,105,105,105,126,108,94,95,99,100,109,109,94,99,92,102,108,109,102,113,98,114,88,91,105,105,103,104,110,90,98,109,106,98,108,109,111,106,107,114,97,109,102,100,111,109,115,103,96,104,100,80,92,101,100,107,107,110,100,105,98,109,110,109,102,101,100,112,106,104,96,104,104,85,113,94,116,120,104,113,101,107,80,99,110,79,108,111,103,106,104,107,100,87,106,99,117,102,109,89,106,109,102,114,97,108,93,101,113,113,99,106,93,121,92,90,105,105,103,71,101,114,104,100,108,115,104,107,97,112,110,114,114,103,106,111,120,108,102,110,92,105,95,115,113,103,105,91,111,109,87,106,93,127,123,110,104,106,102,101,121, +590.86169,115,96,103,94,95,129,106,99,107,97,109,115,104,103,105,98,98,101,99,94,91,95,99,101,95,100,101,88,93,111,95,91,112,105,87,114,110,98,101,94,101,104,104,103,92,118,95,108,107,107,98,105,104,105,105,82,92,105,99,99,91,94,117,86,94,107,82,111,112,102,88,95,107,122,99,102,108,110,119,98,109,108,98,100,98,102,113,106,98,91,98,101,105,107,100,108,96,98,94,95,70,98,100,98,99,95,104,108,91,104,100,99,117,104,106,101,102,113,96,103,105,97,97,111,102,103,109,99,93,101,118,118,96,113,100,102,101,123,113,99,104,105,99,75,91,104,104,108,97,94,105,101,100,92,106,103,104,107,118,120,102,101,103,108,102,94,97,105,110,104,105,112,116,113,99,110,87,112,102,101,99,98,99,110,118,92,81,96,97,99,107,105,103,95,85,91,104,103,105,108,102,101,112,97,110,108,99,102,104,95,103,100,114,115,112,99,108,103,100,106,103,102,110,103,95,94,107,119,109,106,92,113,99,88,103,120,101,124,101,107,109,96,106,119,92,109,99,99,98,111,112,110,98,119,96,107,83,110,95,109,103,109,106,100,102,105,101,102,107,99,91,101,112,103,103,120,105,96,97,105,96,113,106,104,97,113,102,108,118,105,100,115,109,103,102,107,102,106,114,106,104,103,99,112,105,106,117,102,95,113,94,105,121,105,107,99,102,79,101,108,94,109,111,108,98,92,106,106,95,110,105,103,112,104,102,102,105,106,107,110,101,113,103,104,103,112,105,113,105,101,108,104,101,108,104,120,110,110,94,104,99,100,98,103,105,102,101,99,107,102,116,104,104,116,111,92,108,110,101,109,113,105,106,86,99,99,84,106,117,113,117,96,110,97,104,102,94,107,104,103,111,109,123,94,100,111,103,109,102,110,94,109,95,106,113,103,112,95,110,103,95,107,109,91,101,84,96,99,100,112,94,103,106,95,102,103,109,104,104,100,105,108,98,104,101,94,101,109,114,113,113,103,89,107,109,99,104,109,107,91,103,102,91,108,116,115,99,110,98,93,105,103,116,98,126,93,107,108,106,83,103,108,112,94,96,107,112,95,95,109,108,99,106,97,94,99,109,104,102,112,120,99,108,107,91,102,90,104,115,99,110,96,101,101,105,105,109,107,99,62,99,101,114,94,91,96,104,117,102,106,100,97,108,105,108,104,106,90,109,109,102,111,102,99,108,87,99,105,101,95,110,112,115,103,95,106,119,96,94,99,100,108,105,111,104,94,99,112,100,96,99,101,105,107,100,99,102,103,106,96,103,104,108,101,106,112,117,107,100,102,99,110,103,102,108,103,127,99,119,95,96,99,112,102,112,115,107,101,114,103,92,109,98,103,118,98,90,100,97,112,100,106,89,97,107,95,100,95,112,107,99,106,101,106,98,108,102,100,102,98,107,104,107,137,110,97,108,99,105,116,105,100,107,105,90,100,113,120,107,102,112,100,104,100,101,103,112,102,108,100,112,101,94,97,98,99,108,109,110,105,112,104,110,95,74,104,112,107,111,109,103,110,101,111,111,106,107,107,109,107,90,103,104,108,100,107,108,101,98,105,101,99,104,94,109,98,97,96,108,118,106,109,96,109,95,101,103,103,92,109,112,101,98,124,108,111,92,100,102,122,95,95,98,104,122,95,109,110,107,99,101,102,107,100,101,108,119,111,115,107,105,106,106,98,103,104,105,99,98,103,110,106,106,118,105,104,105,98,95,105,107,107,113,103,108,107,102,100,117,105,104,108,113,107,100,103,114,111,106,97,78,98,94,101,108,94,105,109,112,110,113,108,98,104,112,106,101,110,105,101,130,126,113,107,98,102,122,103,108,109,113,105,104,102,86,102,108,97,108,106,91,96,102,99,102,111,107,98,102,114,114,105,105,109,96,105,93,106,112,114,104,102,105,95,105,96,102,103,108,101,100,114,107,108,99,110,97,97,103,107,103,109,102,105,105,103,90,101,113,96,104,100,121,112,108,95,109,87,117,112,104,103,99,104,102,118,103,109,95,96,97,105,117,113,113,110,112,107,109,96,122,108,114,108,102,111,91,106,105,117,106,114,116,106,101,105,109,102,104,110,115,106,102,108,113,107,104,100,103,106,105,96,102,107,113,113,106,117,85,110,98,104,96,106,97,107,104,95,103,106,104,93,105,103,106,107,112,102,108,92,97,111,102,100,111,108,101,105,103,96,106,107,102,115,90,110,117,113,95,106,107,113,87,102,96,102,109,107,98,102,97,100,115,99,108,113,106,118,98,112,100,102,104,107,113,103,106,121,107,112,116,112,112,111,115,107,116,123,122,141,133,159,169,201,167,161,157,144,150,177,160,161,153,142,131,108,123,121,129,117,110,103,116,102,80,101,112,107,104,96,113,125,106,111,99,101,97,104,97,99,111,109,111,98,109,98,88,99,121,118,87,110,100,106,102,106,109,94,122,109,94,110,112,101,101,120,104,107,111,90,114,102,120,103,95,96,96,92,100,110,106,103,95,95,96,115,97,107,109,104,108,109,112,99,110,107,95,107,105,107,98,102,90,108,105,101,105,104,95,92,113,105,108,131,105,105,106,117,114,105,104,99,106,96,108,108,109,106,119,105,104,98,101,97,104,104,101,98,120,109,117,105,97,103,105,109,103,109,108,105,104,114,115,108,105,109,116,96,97,111,96,111,113,106,93,113,97,102,110,113,103,92,101,109,112,106,106,115,116,108,106,109,117,106,102,109,99,103,112,97,91,102,97,107,103,98,105,98,112,123,111,104,106,103,109,113,101,110,98,101,99,114,108,93,103,103,108,103,93,119,87,100,104,119,108,110,99,111,104,108,103,119,94,113,116,111,124,100,121,95,118,97,100,105,117,107,99,98,109,117,106,109,100,100,99,108,102,113,106,100,110,104,107,115,103,100,107,108,99,92,108,105,98,98,104,105,103,110,90,91,98,101,104,123,103,116,102,103,104,102,95,108,90,107,122,109,116,102,95,99,106,104,105,110,104,114,115,100,102,96,101,109,112,99,99,113,105,94,104,104,107,101,111,101,124,107,110,102,109,117,97,101,107,106,108,124,104,94,97,106,111,87,101,102,96,101,113,107,97,117,103,102,110,100,104,97,97,105,96,114,114,109,110,104,112,102,113,100,99,102,103,103,106,121,112,98,106,101,102,111,118,94,107,100,105,103,95,113,102,104,113,119,110,116,112,105,98,112,113,91,103,102,104,104,113,109,113,108,111,101,105,94,112,116,102,106,111,113,109,92,100,105,97,122,95,111,102,99,110,92,107,114,101,102,102,101,111,99,109,99,105,114,108,110,91,124,103,115,105,102,119,104,100,111,116,112,98,105,104,96,98,96,119,106,95,117,91,96,105,97,98,105,106,103,97,100,95,104,112,111,99,95,102,99,109,112,118,115,106,91,100,110,108,100,111,117,97,96,113,105,87,117,115,82,111,104,109,110,96,99,122,113,100,92,100,120,108,112,102,108,95,99,128,135,108,108,103,98,85,116,113,101,105,113,109,110,101,115,109,101,107,103,101,69,113,124,100,92,111,128,100,101,112,102,106,96,102,121,101,113,103,104,115,102,105,108,111,117,109,94,104,102,118,107,97,101,106,106,94,105,107,112,108,90,102,103,109,95,109,99,112,110,116,109,103,92,113,116,94,105,99,98,98,98,114,112,123,120,98,101,85,117,105,106,94,99,118,104,104,108,99,107,116,102,116,107,106,92,114,108,104,106,77,102,117,113,114,104,100,109,115,101,108,108,108,97,106,95,101,104,104,100,104,104,85,109,113,106,98,103,102,94,125,101,104,114,107,107,98,103,101,122,96,94,105,115,106,91,107,107,107,115,99,105,102,103,103,105,100,97,103,105,100,101,102,109,113,108,108,101,94,121,109,123,97,105,110,97,105,112,102,115,94,108,98,113,109,110,91,84,100,100,95,107,112,104,100,97,101,108,109,104,96,103,99,100,104,99,102,112,96,106,95,105,100,109,99,106,106,106,100,97,108,103,117,98,100,106,110,113,99,101,113,113,106,106,99,103,104,110,97,108,103,118,104,103,115,96,107,105,89,98,106,101,101,114,103,102,88,106,111,94,96,103,85,111,101,103,102,104,98,128,92,96,110,107,84,119,105,117,117,105,103,120,107,100,94,111,108,105,97,94,109,102,106,113,121,99,106,107,123,101,106,99,106,115,109,102,98,108,101,97,110,105,109,107,102,98,109,108,101,106,109,108,110,113,113,98,106,107,121,109,112,110,112,116,113,110,87,91,120,100,109,108,109,102,98,105,116,104,107,104,102,97,107,92,99,105,97,112,92,113,95,103,107,102,109,113,108,105,106,99,110,109,104,112,92,109,101,114,105,105,103,107,109,99,103,111,114,109,98,100,108,98,110,99,110,108,113,102,98,96,111,104,116,106,105,117,112,103,96,108,104,105,106,104,112,100,104,92,100,100,117,103,99,113,92,107,101,99,113,104,95,96,109,98,115,105,110,108,95,107,109,119,107,100,104,117,98,109,98,98,107,129,106,103,101,103,77,101,98,111,96,77,110,115,100,96,102,102,93,124,108,96,102,109,103,113,110,114,118,103,103,113,104,105,110,104,102,113,100,110,104,100,107,106,118,117,112,105,103,120,101,103,94,96,100,116,96,97,99,107,114,109,101,99,96,82,110,105,103,107,99,106,95,105,90,94,73,103,101,108,100,107,97,110,100,98,109,111,95,98,111,93,87,109,116,108,111,97,110,100,98,99,101,110,102,105,106,90,110,107,101,114,101,96,93,96,103,101,100,107,96,112,94,99,98,100,112,80,113,97,91,91,110,108,119,104,108,88, +591.00269,109,84,101,100,83,103,120,95,100,107,106,99,89,74,105,107,100,105,97,114,101,99,106,100,103,115,120,104,111,105,100,105,113,94,122,101,106,104,95,106,100,109,108,110,99,99,99,95,89,114,105,105,124,110,98,98,105,105,92,100,105,113,104,108,109,108,117,109,103,110,101,107,99,102,93,107,91,111,98,109,88,107,121,111,106,103,91,101,93,104,107,100,103,109,102,99,102,117,107,102,101,98,99,93,116,96,107,104,105,103,99,117,110,103,94,111,105,105,95,110,107,102,102,99,101,115,97,102,113,101,100,102,96,95,96,97,101,105,105,101,98,104,107,91,114,96,100,105,104,105,98,104,108,101,98,104,106,94,110,124,102,109,98,103,95,103,101,105,98,91,97,104,98,98,121,104,87,97,108,101,120,109,98,107,91,98,102,95,103,101,101,108,111,98,99,104,110,105,94,107,109,101,101,93,99,106,100,93,108,103,100,107,100,104,108,111,101,100,102,102,99,95,96,94,96,124,103,117,104,102,97,106,102,111,105,110,94,97,102,115,112,109,114,94,96,105,105,108,105,98,108,100,100,94,101,113,94,110,105,106,82,105,104,99,102,99,103,102,107,106,99,102,121,101,114,112,110,102,102,112,100,97,106,101,102,112,103,99,102,101,91,108,108,103,98,101,110,98,106,110,97,101,114,132,104,95,99,102,106,110,119,91,107,104,111,89,106,114,103,99,108,95,99,107,108,98,103,93,102,107,109,100,103,102,98,101,91,113,110,92,104,103,104,95,93,105,121,93,106,103,108,98,125,116,106,98,105,79,109,120,110,107,102,104,113,110,116,105,98,103,107,100,115,110,123,96,91,100,105,109,116,114,89,115,104,94,107,110,98,98,113,96,99,116,101,103,102,102,101,108,109,99,101,102,102,108,107,113,116,104,95,105,95,96,113,95,109,105,100,103,108,104,109,111,101,102,97,98,95,103,99,89,78,106,106,112,99,113,112,105,106,118,94,104,108,102,109,102,103,102,100,107,107,85,101,106,110,105,97,104,103,103,101,103,116,111,106,104,103,106,113,106,104,104,114,95,101,111,100,108,92,111,116,100,95,101,113,102,101,93,105,117,104,109,94,108,96,94,112,95,103,106,98,114,98,107,101,102,105,109,93,105,121,98,102,111,107,97,99,101,111,109,115,107,95,105,100,103,103,109,107,104,108,105,112,119,108,94,101,100,102,108,101,108,102,106,97,108,104,110,118,107,98,105,101,91,104,98,98,103,100,99,102,100,106,108,113,95,111,99,101,104,110,104,102,97,122,99,104,106,100,111,97,107,109,106,111,108,113,95,111,102,109,93,113,106,104,99,117,88,100,100,113,95,100,97,103,96,109,100,105,116,100,99,105,98,109,95,95,109,101,101,110,99,114,106,99,99,103,123,105,93,104,111,104,108,101,98,99,109,96,93,103,124,105,82,99,95,104,106,106,111,101,82,96,100,116,108,108,107,106,99,125,100,96,109,105,96,116,106,103,100,105,101,103,112,99,98,100,102,112,108,117,120,129,100,104,106,101,111,130,109,101,96,102,104,111,116,114,97,101,101,107,111,100,103,100,94,104,106,80,111,101,94,104,100,106,117,111,99,109,95,106,101,100,112,96,108,108,106,101,109,104,100,105,114,106,107,106,103,122,106,91,103,110,98,116,100,97,112,103,104,104,100,100,87,116,109,120,100,105,92,104,109,90,90,104,94,103,96,112,100,105,108,109,112,98,105,69,106,102,109,102,106,91,117,137,113,110,109,108,127,109,106,115,108,119,104,106,110,113,82,138,117,105,104,105,96,79,95,104,112,100,104,107,95,114,98,115,106,89,92,111,109,106,101,104,116,98,99,109,99,112,113,107,114,103,97,100,115,102,111,100,102,103,108,91,97,102,108,95,92,99,103,105,104,113,108,120,104,102,113,94,97,110,100,99,110,105,109,106,108,87,106,108,98,112,105,100,105,100,104,105,99,110,94,100,107,106,104,105,109,107,107,103,100,104,94,102,103,107,103,116,99,94,98,105,101,99,84,111,106,100,100,97,91,112,107,101,103,105,112,114,106,111,105,109,95,101,97,101,110,95,108,110,97,105,73,110,110,107,110,132,92,112,116,101,105,101,117,100,107,109,117,101,103,101,99,98,117,106,113,110,100,103,112,97,103,98,104,108,97,108,107,96,101,106,106,106,102,100,104,94,98,105,103,106,95,93,102,88,94,106,125,101,103,94,108,93,102,107,84,97,100,99,97,109,98,120,100,105,106,101,122,109,105,104,107,102,94,110,100,110,105,98,110,97,105,100,107,113,114,95,123,107,113,111,121,143,137,134,149,126,161,152,145,148,161,166,131,165,128,130,118,141,141,120,131,109,108,112,111,101,101,103,101,105,114,114,98,94,116,108,115,104,104,109,99,83,96,94,88,103,98,106,80,115,100,110,106,100,111,115,97,113,101,108,93,108,110,113,99,118,112,98,113,99,102,96,107,102,116,106,112,112,101,96,102,104,106,100,103,106,135,108,100,108,112,90,112,96,106,104,117,110,108,108,110,96,113,112,98,104,109,119,95,101,97,110,99,102,110,116,100,136,99,94,108,97,118,109,97,99,93,105,107,99,91,113,96,96,97,116,90,102,92,110,102,102,109,104,111,100,104,108,105,107,105,100,97,107,105,110,97,109,116,112,102,97,99,107,107,92,96,107,110,103,100,108,99,95,102,107,104,113,108,112,111,106,104,100,106,99,103,106,94,103,110,109,104,90,115,106,106,102,97,100,111,109,90,110,96,99,97,105,100,110,99,102,99,105,92,99,104,101,108,102,106,103,104,104,99,100,99,114,104,123,106,100,101,104,95,88,112,106,92,97,87,100,123,108,105,117,99,113,106,101,95,105,100,107,100,102,96,103,104,98,101,109,103,93,94,99,109,102,113,101,101,99,108,123,108,98,97,102,119,101,108,97,109,112,108,106,106,105,105,102,104,113,104,105,105,105,113,107,100,99,103,98,102,118,106,107,97,112,103,106,111,105,94,98,104,106,109,102,102,107,100,110,117,100,116,103,113,92,106,111,93,101,100,85,113,97,108,103,102,109,111,110,102,102,108,113,101,112,97,105,94,119,105,114,102,102,103,103,114,108,91,99,104,100,98,111,109,108,109,103,111,113,102,102,110,95,99,109,110,95,102,115,105,110,101,98,87,105,99,90,79,105,101,100,103,107,107,117,102,69,110,99,101,88,102,106,100,103,110,98,90,96,117,108,105,101,112,92,102,107,87,110,102,102,117,113,106,105,108,104,102,100,113,108,104,108,95,104,98,133,103,87,101,95,91,109,100,91,109,114,106,96,111,99,103,95,109,105,104,105,96,104,115,101,83,103,101,94,103,116,105,112,112,106,99,95,112,108,104,101,107,100,104,116,102,107,94,99,101,102,94,99,81,116,110,106,104,105,101,98,109,102,105,95,112,82,116,106,107,98,113,104,117,114,114,99,101,99,117,114,104,117,104,118,102,104,110,99,100,99,107,107,104,95,106,113,106,83,100,92,104,99,112,107,109,110,105,90,109,105,113,106,102,90,111,121,112,99,113,99,103,108,108,98,97,104,100,97,114,99,122,109,108,89,96,110,97,95,104,112,101,104,93,106,114,95,101,94,109,116,114,95,106,106,100,103,102,109,103,105,102,101,113,103,105,100,112,106,104,94,101,106,101,100,95,108,103,101,109,102,107,94,98,99,94,98,114,113,104,98,100,102,115,99,111,92,108,104,102,99,85,95,109,102,105,112,104,100,109,110,102,109,108,103,106,121,104,101,98,103,108,100,101,110,101,105,98,108,89,98,104,117,109,88,101,106,112,103,99,109,117,95,113,108,112,109,105,99,112,109,102,95,99,98,102,111,113,99,105,100,94,107,111,101,108,95,104,96,105,101,102,106,104,116,103,101,102,101,103,91,121,97,113,103,98,121,101,112,99,110,92,98,105,99,105,102,96,101,112,102,99,125,116,93,113,119,99,106,102,91,113,99,101,103,92,104,95,114,94,112,98,100,103,89,102,102,96,106,120,93,98,109,110,95,97,108,105,102,104,110,99,101,100,100,106,99,111,98,114,100,100,97,121,106,97,103,101,112,100,114,88,108,102,107,121,65,109,110,113,99,107,94,100,100,96,107,106,113,112,105,103,98,85,119,89,106,100,107,117,109,116,117,99,94,113,103,119,102,115,100,110,98,109,106,93,101,100,109,112,108,100,104,118,96,111,100,100,106,108,97,108,100,118,111,108,110,102,99,113,107,99,109,101,111,99,102,101,104,103,116,98,110,108,95,95,107,133,106,102,105,110,104,102,94,93,106,108,103,96,111,110,106,83,105,107,107,93,95,101,110,101,106,101,99,107,91,101,97,89,87,102,104,112,94,104,105,113,107,113,109,98,119,101,98,107,107,92,106,104,101,108,97,98,98,103,100,108,94,89,88,111,96,96,110,93,104,112,115,112,97,123,114,105,89,105,96,96,107,98,101,103,86,100,113,121,100,100,107,103,104,103,89,101,96,89,108,116,108,100,110,81,89,103,102,115,97,115,100,100,103,97,95,107,104,99,105,100,108,79,108,106,106,109,92,97,104,106,113,97,102,107,104,98,97,106,96,98,91,95,106,103,94,90,110,113,103,101,102,91,108,102,97,104,113,100,112,122,103,95,96,97,106,95,108,110,103,103,109,109,94,97,107,90,105,110,115,91,99,96,92,98,103,104,101,100,105,98,119,101,100,132,101,97,100,95,109,96,109,102,104,112,107,96,99,99,100,99,98,110,87,103,119,97,100,100,81,104,104,105,123,104,104,92,106,100,117,98,106,101,111,111,92,114, +591.14368,103,112,97,94,106,91,111,117,101,107,90,101,99,87,120,113,90,104,105,108,112,99,108,119,102,92,101,101,115,103,104,102,81,100,101,99,107,108,90,112,107,119,105,108,96,113,103,110,128,117,123,90,101,101,112,99,105,73,126,106,96,111,76,108,96,100,105,102,113,108,90,100,106,78,87,106,100,100,98,115,113,95,111,102,95,107,109,94,105,99,108,103,98,107,87,92,102,95,112,100,117,92,102,91,103,106,128,106,109,110,112,96,102,105,110,107,102,106,111,104,109,98,90,100,123,121,100,99,118,107,116,112,97,113,113,104,110,107,96,103,108,116,87,103,95,104,113,107,107,116,101,106,116,99,91,106,95,98,85,105,100,97,109,114,106,103,103,105,97,113,106,108,108,98,115,111,112,97,100,103,113,107,101,109,102,107,114,93,99,109,98,112,104,113,113,111,106,104,106,113,103,82,102,102,100,99,116,105,119,113,89,98,100,106,111,112,99,101,95,98,114,112,94,107,103,100,121,124,104,113,96,99,116,100,112,104,134,92,100,101,88,104,103,96,106,103,91,112,97,109,102,100,96,104,99,114,99,106,114,110,105,112,92,109,97,112,100,103,107,112,117,100,100,93,93,120,102,99,98,108,117,111,109,105,105,97,83,111,110,110,109,86,121,102,106,138,116,102,102,95,108,101,98,99,98,107,106,109,96,130,101,108,97,116,116,114,96,104,105,107,105,102,108,100,111,102,102,94,109,104,117,95,116,110,105,121,105,116,107,104,110,102,84,104,108,105,107,113,108,84,123,96,96,111,107,112,102,112,104,114,98,102,105,106,106,102,107,105,103,105,108,95,112,108,106,113,104,114,106,113,117,111,106,107,103,113,104,103,108,114,131,104,100,109,112,95,100,108,119,106,92,107,117,103,102,92,107,102,100,104,108,113,110,109,115,110,99,95,110,109,106,100,106,102,100,98,97,104,116,110,105,112,103,91,97,83,99,102,96,107,94,108,88,96,96,104,117,103,109,117,113,98,101,113,94,91,105,121,119,104,103,104,112,98,112,100,96,102,96,99,106,108,109,106,110,111,103,104,117,117,96,100,112,87,106,108,101,105,104,104,132,125,99,107,106,103,104,109,112,110,108,101,108,105,111,90,102,103,104,118,109,97,99,101,104,113,105,103,111,92,106,88,109,106,98,105,108,116,97,106,102,100,106,100,99,109,104,102,104,94,113,105,97,109,99,97,105,95,103,139,97,98,116,96,96,107,102,105,100,111,117,106,117,109,99,106,98,106,110,101,95,107,115,90,102,101,105,113,96,110,108,108,113,94,110,104,108,106,107,109,130,105,101,103,109,107,103,99,112,101,100,100,109,123,90,102,101,102,104,112,109,110,105,101,107,100,109,96,113,108,102,101,107,108,110,107,110,113,100,95,100,101,100,107,101,101,111,100,114,104,115,105,108,98,107,102,103,105,106,105,94,101,104,109,107,96,105,113,104,108,116,94,91,98,93,113,115,96,100,105,99,100,116,100,93,104,106,107,107,103,99,122,115,106,97,110,99,106,109,85,113,103,82,114,108,105,110,110,109,99,109,105,93,106,114,106,104,113,107,115,116,106,111,99,98,99,100,100,107,98,110,103,104,116,106,113,90,101,104,102,104,111,100,103,104,104,113,118,106,106,117,115,110,101,109,95,96,105,124,101,111,82,121,112,92,103,106,94,104,111,104,100,108,108,105,113,97,102,106,110,105,103,67,109,119,100,91,106,107,95,106,109,110,110,101,115,111,85,96,99,110,104,92,92,109,107,102,108,107,108,96,109,110,111,106,99,99,112,111,106,116,105,106,107,105,105,100,107,111,101,110,110,105,117,119,109,99,113,103,71,107,104,106,87,106,105,99,104,116,98,97,104,108,103,92,88,107,113,100,95,132,103,96,96,110,106,101,116,104,109,107,98,113,111,101,102,108,105,103,103,106,99,90,104,117,103,102,93,110,103,104,112,118,97,104,100,92,109,103,116,95,102,120,103,112,105,106,104,100,105,112,95,110,96,114,110,90,106,98,76,98,91,114,116,113,111,102,116,98,97,116,115,113,122,116,100,103,110,113,105,108,112,108,103,109,103,113,102,108,105,103,103,112,110,103,103,100,94,115,137,112,111,118,110,102,110,108,113,94,108,100,105,110,107,104,104,101,106,111,97,104,102,106,106,107,112,99,99,97,101,112,111,92,110,113,106,117,101,105,100,85,103,97,113,105,98,98,116,105,104,83,110,105,110,116,93,104,108,109,104,99,117,101,102,99,105,104,121,103,111,123,101,105,102,109,104,109,103,117,110,93,91,129,110,131,108,126,135,142,148,139,142,150,147,154,180,181,176,127,139,148,165,156,124,122,150,126,111,109,107,112,112,117,106,100,109,108,111,105,100,115,114,100,92,118,116,113,103,117,100,96,105,92,121,107,102,100,102,104,104,110,105,116,104,99,111,96,104,100,109,105,103,118,103,99,99,102,100,110,94,102,102,109,110,111,89,90,110,106,106,97,97,108,95,105,101,90,107,102,109,82,106,103,88,117,99,112,116,112,108,95,95,102,105,93,108,115,108,120,94,111,101,108,102,96,105,111,102,105,108,100,99,113,109,111,110,108,103,113,73,103,98,112,104,95,99,106,107,104,84,112,104,96,107,96,124,108,100,110,108,111,115,111,102,110,94,117,99,86,101,111,112,103,122,104,108,104,117,101,104,102,90,99,116,125,101,116,105,108,99,95,99,105,110,112,85,98,99,108,105,106,109,100,100,80,99,112,101,114,102,104,105,102,106,102,104,103,104,98,109,103,116,104,107,77,100,106,104,105,114,110,108,116,103,101,99,104,112,105,103,109,108,100,109,112,111,107,99,94,100,107,117,110,91,100,104,121,111,91,102,99,111,100,94,92,114,109,100,99,88,116,106,95,111,94,108,142,107,104,95,106,96,113,101,114,104,101,105,104,101,103,94,105,104,105,110,106,115,107,103,99,106,109,103,107,95,94,105,97,102,101,102,104,101,113,99,109,106,100,96,98,98,93,111,102,101,104,114,113,109,100,113,98,108,105,112,114,105,110,111,117,89,101,121,101,105,120,97,112,100,103,107,109,102,100,97,107,115,102,97,100,98,103,100,100,95,113,96,114,100,110,106,94,107,104,107,98,107,115,104,108,103,92,111,113,98,106,92,104,100,103,106,100,93,101,109,104,97,75,105,116,99,102,101,116,81,98,105,103,125,81,110,103,111,105,105,117,103,79,108,102,96,115,103,102,110,112,87,106,109,111,112,116,93,110,101,105,96,105,107,96,107,116,117,133,114,97,99,113,98,91,102,105,112,103,104,104,109,108,106,100,102,107,105,104,102,129,99,105,95,104,104,117,90,100,93,106,99,100,97,99,99,104,102,112,102,97,87,105,104,108,105,105,100,104,98,100,103,109,103,113,121,101,98,108,103,99,109,114,106,117,98,110,102,118,108,100,102,116,109,103,102,112,102,92,108,113,102,109,99,100,107,106,110,95,111,105,112,100,108,111,98,100,102,107,100,105,109,98,104,108,96,103,99,107,121,102,102,100,103,107,100,110,92,104,102,99,113,91,118,87,105,99,106,100,108,103,102,105,108,97,102,109,109,101,103,106,100,114,99,109,109,104,103,102,105,100,94,106,82,108,111,114,94,97,102,101,106,106,97,104,107,108,96,106,102,107,110,104,94,105,95,115,94,99,106,102,109,105,104,104,103,113,99,99,92,104,99,102,98,104,99,92,100,102,117,109,119,99,102,108,109,109,104,114,101,109,92,105,100,105,100,100,110,90,116,67,91,95,98,108,105,103,102,108,115,99,103,99,94,99,111,101,105,93,105,102,109,95,107,108,105,109,108,105,99,103,101,103,136,99,103,103,99,96,104,104,99,110,114,103,106,85,90,112,112,104,90,97,113,112,95,99,110,114,116,105,104,95,110,98,83,103,106,104,95,94,104,87,108,106,102,109,103,106,98,103,92,117,95,103,83,91,106,111,121,87,87,111,106,89,94,112,109,106,103,97,102,115,101,103,114,99,121,104,108,102,95,97,105,99,106,104,98,108,105,106,103,106,118,94,94,104,101,91,92,109,115,106,106,110,95,106,92,110,98,103,96,111,73,103,95,84,102,93,99,99,111,112,108,106,113,114,99,86,117,116,98,87,95,109,110,113,107,96,100,106,112,96,96,102,105,105,87,96,104,90,99,102,112,104,97,106,111,109,109,111,91,105,94,107,106,112,98,96,96,91,98,98,109,117,99,93,89,97,108,109,99,99,102,106,101,93,102,104,88,111,103,119,93,98,108,108,104,96,105,120,105,104,102,98,100,103,106,106,107,100,100,99,99,96,74,104,100,84,105,98,94,103,97,99,108,101,105,109,101,100,103,110,100,91,100,107,102,105,104,102,114,102,107,104,107,108,98,100,112,125,105,102,100,113,106,87,102,118,105,109,104,111,106,91,108,88,113,105,107,104,110,101,103,102,100,95,98,86,103,114,107,114,76,112,99,114,100,113,82,108,97,98,102,100,107,102,108,110,95,120,110,107,104,89,95,104,102,101,103,98,106,109,88,134,102,104,107,103,113,110,114,113,91,107,94,104,98,89,99,106,102,102,99,100,113,105,104,99,106,110,108,114,97,105,80,112,99,104,105,118,103,100,102,84,105,97,113,110,119,105,98,111,102,99,91,105,104,93,102,108,108,87,100,98,94,102,110,117,118,116,99,108,100,109,110,104,94,101,102,93,108,106,98,112,101,99,105,112,108,74,113,98,99,121,108,94,111,77,109,103,82,98,98,109,110,109,92,119,111,107,111,105,102,121,121,118,91,106,109,112,100,100,96, +591.28467,97,108,96,92,110,99,110,111,105,99,106,94,106,91,107,109,68,106,96,97,125,125,107,120,105,106,104,88,112,92,102,102,92,109,113,98,108,110,106,107,103,110,98,106,99,114,112,116,105,103,88,106,99,100,94,101,106,109,112,83,98,97,104,101,104,113,105,108,108,103,111,115,96,112,96,116,104,82,83,96,106,103,100,112,102,103,108,121,105,107,114,86,100,103,83,107,108,104,103,102,104,113,101,96,103,99,116,98,93,94,110,104,113,104,104,100,113,102,98,98,97,99,116,109,99,112,112,76,112,110,119,103,99,113,114,122,96,114,103,101,112,98,107,107,98,109,98,101,100,98,106,98,121,105,99,108,104,110,103,106,99,108,94,95,110,94,112,100,111,97,113,101,101,98,112,99,102,95,105,105,103,103,98,98,105,105,86,90,99,110,108,122,104,108,94,110,98,111,101,100,96,104,110,116,107,113,95,99,104,105,109,110,100,103,108,93,107,103,108,95,110,129,104,94,101,111,110,120,122,109,99,96,106,109,100,112,102,109,125,98,99,108,107,116,98,87,109,101,113,110,94,113,109,105,111,98,108,101,100,114,99,99,108,109,93,103,117,98,104,104,104,104,115,104,99,108,107,105,98,109,110,95,115,102,111,102,93,103,111,113,105,95,98,106,118,109,109,94,106,82,111,101,105,110,97,91,102,101,104,127,94,118,103,119,110,90,109,107,108,108,101,98,104,100,110,101,111,96,98,109,111,107,100,112,105,98,104,89,91,108,91,104,107,102,104,108,106,104,100,109,106,103,99,120,110,97,97,84,101,101,99,113,93,96,120,101,91,105,116,102,105,113,106,110,103,112,106,110,98,124,102,112,100,110,110,106,105,102,112,100,104,105,78,97,106,85,102,100,104,130,120,106,94,103,102,102,101,101,109,101,97,99,110,108,105,90,99,98,105,103,104,97,110,95,102,105,100,97,73,94,106,101,87,107,71,99,97,101,97,105,107,107,108,90,95,111,100,111,100,93,118,108,107,106,111,107,99,100,114,117,97,105,99,78,119,104,131,114,92,106,102,113,109,101,107,100,91,122,105,106,101,107,104,102,92,97,112,103,111,104,104,96,119,105,86,103,109,102,110,106,109,116,94,107,95,113,93,104,118,116,100,125,98,106,106,106,102,108,102,109,100,108,116,112,97,98,120,101,107,105,109,115,103,111,108,111,100,99,97,108,96,117,99,94,102,119,113,108,122,113,109,111,103,87,96,102,102,102,104,104,96,106,116,109,107,108,106,118,110,98,87,112,110,106,110,110,94,107,103,99,106,114,91,103,122,93,125,107,113,120,108,117,100,105,117,112,103,103,102,103,106,99,102,101,107,97,120,103,106,101,97,109,108,111,95,113,94,100,110,97,116,112,103,105,99,105,105,98,104,103,109,104,96,113,104,108,109,87,99,104,107,103,104,112,118,111,102,98,104,114,102,102,108,115,121,111,116,110,103,106,123,103,113,112,92,97,117,100,121,90,111,105,90,102,113,104,110,97,121,106,105,111,105,104,93,105,102,111,109,112,108,110,104,114,99,99,94,111,102,104,116,87,103,98,82,117,111,108,99,114,105,104,103,91,109,88,99,103,109,105,109,109,96,111,101,91,109,108,107,115,109,98,121,103,98,113,117,99,99,101,116,91,100,105,108,107,100,98,106,99,107,95,117,106,115,111,115,102,118,96,100,100,97,104,102,97,95,103,109,102,102,96,115,111,97,102,108,113,114,104,108,97,92,124,90,103,109,105,97,107,102,115,109,92,106,97,96,103,106,104,101,91,98,107,111,103,123,109,113,105,112,104,110,76,106,106,107,111,112,108,95,110,110,114,104,110,108,109,110,86,111,110,112,113,101,96,114,104,98,106,95,99,116,102,101,107,103,106,101,101,109,98,96,109,109,116,103,102,101,98,108,121,106,96,99,98,106,109,110,106,117,115,90,107,99,104,108,103,105,96,109,97,98,104,95,116,108,114,97,100,109,110,95,124,105,96,111,93,102,100,113,103,116,108,116,98,97,96,103,99,100,101,110,99,107,109,92,104,108,109,107,92,102,106,125,107,105,107,75,112,100,112,105,109,94,110,112,103,106,81,107,105,103,96,108,118,101,79,110,116,113,109,112,103,115,104,96,120,95,117,113,106,109,91,102,114,99,112,110,105,117,96,80,110,122,110,111,103,103,117,106,102,109,114,122,102,96,98,111,85,117,106,117,104,96,103,107,104,102,109,104,99,109,108,116,107,74,105,101,109,117,107,114,102,102,93,109,109,97,101,92,117,116,99,107,102,108,82,118,104,115,105,118,105,116,109,116,127,120,126,159,160,158,172,162,167,186,147,149,148,157,131,152,118,131,129,123,117,114,107,117,110,106,112,107,102,80,108,103,96,101,118,105,102,108,93,93,102,102,118,104,107,107,107,103,92,107,103,109,103,113,87,107,106,113,98,103,96,101,110,105,109,111,97,111,109,103,110,103,117,94,106,114,111,93,97,105,102,100,111,108,109,115,113,106,102,101,99,107,120,110,119,101,96,89,97,107,98,106,97,92,104,97,129,104,98,99,115,115,94,101,97,107,96,112,98,90,112,110,100,105,90,105,98,102,104,103,97,113,96,107,109,101,97,92,99,99,113,112,102,110,101,87,109,113,116,116,116,103,116,103,92,99,111,104,104,105,94,116,108,108,105,105,107,114,95,104,118,121,103,96,112,110,107,102,103,105,110,111,111,117,109,98,101,106,97,96,99,104,102,106,109,110,106,101,103,101,102,92,112,107,102,115,97,104,102,114,113,96,95,108,116,118,120,101,103,104,94,98,108,106,96,100,117,102,109,105,107,93,117,114,111,111,108,98,112,101,93,95,105,110,104,105,110,105,103,105,102,104,100,103,107,91,89,93,103,102,101,111,106,104,111,100,97,98,99,114,101,87,93,105,103,111,103,101,104,102,117,113,96,95,102,94,105,106,103,117,96,105,103,95,100,95,117,111,121,110,107,107,109,96,94,98,118,102,107,112,102,106,104,106,106,98,110,105,101,101,105,100,100,104,106,105,91,119,95,112,104,101,93,102,109,96,105,110,111,105,106,95,104,104,111,113,104,106,115,109,100,106,108,93,120,93,105,90,103,106,102,81,95,102,98,111,103,99,108,103,107,96,111,103,114,105,99,113,116,98,106,110,117,101,105,113,91,98,101,113,95,113,112,124,107,113,122,94,99,102,112,103,128,102,98,110,103,95,101,114,109,109,95,102,93,110,133,115,100,107,106,104,88,106,106,95,110,104,106,109,106,110,101,106,108,101,94,115,119,106,105,102,100,98,112,102,109,90,100,110,86,113,88,92,109,101,110,99,108,102,99,116,102,113,114,115,103,98,105,104,100,98,101,96,100,112,96,102,108,105,114,96,101,105,113,104,99,91,109,101,109,106,92,97,105,102,96,96,101,99,109,105,85,95,109,101,110,102,107,110,94,106,92,113,112,91,105,102,109,103,97,101,126,111,96,112,107,107,95,110,103,103,92,99,96,110,102,106,106,109,91,106,103,97,84,95,100,107,93,101,106,107,105,105,102,117,108,94,106,96,106,115,97,112,100,90,105,106,99,92,103,101,107,97,115,110,121,108,91,107,92,96,105,116,117,109,107,104,97,99,102,115,101,113,109,113,112,114,106,99,118,92,85,115,100,103,72,109,121,101,111,102,89,98,97,100,114,111,98,106,100,112,124,101,101,107,103,106,100,117,101,107,110,92,97,104,110,100,105,107,80,101,116,113,117,106,110,104,120,105,104,109,116,74,115,100,108,95,94,102,86,108,106,109,102,105,100,107,95,96,111,109,103,105,99,102,100,96,98,104,103,102,108,106,91,104,96,97,109,111,103,103,95,105,111,109,118,103,93,105,103,107,118,107,109,105,107,97,116,110,110,78,99,105,115,107,96,97,104,98,105,94,141,107,107,98,84,109,109,118,94,110,101,118,109,105,103,111,104,115,95,106,94,110,106,107,95,114,106,95,107,99,93,104,95,98,99,109,113,106,94,106,93,109,105,104,106,107,102,106,115,104,98,107,104,111,108,91,91,110,111,93,108,104,109,95,100,118,101,105,102,109,108,103,107,101,99,113,116,99,120,103,97,119,102,107,106,115,113,94,105,104,115,112,91,98,118,105,94,110,103,103,105,100,102,105,95,108,103,99,107,109,101,91,90,107,107,93,109,104,96,98,100,102,91,104,99,91,104,112,96,94,106,94,113,104,96,104,105,109,113,100,102,98,107,102,114,104,109,108,107,109,104,106,106,101,91,112,119,99,107,95,108,118,109,106,110,100,99,109,110,103,106,100,106,106,107,103,105,101,103,110,97,101,93,106,104,102,91,96,109,121,95,113,124,107,94,98,98,96,105,106,90,104,102,106,126,100,99,116,100,113,96,98,94,106,106,107,108,110,105,104,97,97,104,102,103,104,98,110,106,99,98,98,101,100,102,98,109,111,108,93,100,91,118,107,92,86,97,101,107,102,100,112,103,99,89,117,106,108,106,112,98,109,102,93,102,108,98,108,106,109,104,108,113,108,112,119,107,98,123,116,98,107,108,112,104,109,105,102,119,120,108,110,116,105,106,101,90,111,105,102,127,83,109,95,102,109,108,92,97,83,99,87,111,106,104,100,105,104,107,91,108,100,103,103,91,109,93,104,106,110,100,111,100,117,109,110,111,100,110,97,106,106,102,107,103,110,109,122,102,105,109,107,108,109,94,118,98,99,113,93,103,102,112,108,100,107,114,106,113,100,102,129,116,93,110,92,108,105,106,104,96,98,111,98,101,121,117,99,109,120,101,125,92,103,114,92,98,96,98,110,102, +591.42572,103,99,95,106,95,104,107,115,68,97,106,81,107,89,114,107,101,115,105,102,110,112,110,101,119,123,89,97,117,104,115,86,104,107,96,91,112,103,102,98,100,105,116,102,102,108,107,114,94,108,104,98,99,101,99,97,104,91,98,89,121,101,105,94,91,118,115,74,112,110,99,102,107,90,103,106,117,95,103,104,116,105,92,102,111,105,108,106,103,105,110,96,102,104,113,106,99,99,98,101,96,95,101,103,104,101,87,102,104,98,119,125,101,101,102,112,95,110,111,101,104,113,82,118,96,109,118,105,106,104,99,114,96,108,132,107,98,108,82,105,109,105,108,104,108,91,101,104,95,109,101,102,102,97,104,110,104,102,115,95,110,105,108,111,106,100,107,104,96,105,97,102,94,90,91,108,105,100,94,109,101,101,101,104,97,109,102,97,113,108,98,99,103,107,96,101,99,90,107,101,111,98,111,110,102,96,111,103,115,100,92,102,103,99,95,99,100,96,100,94,102,114,109,108,100,106,99,110,111,105,98,104,119,106,105,109,98,98,119,101,106,105,124,95,110,89,96,106,100,113,74,102,102,90,111,99,91,107,99,114,95,106,110,104,100,106,106,104,96,99,101,103,98,99,112,103,101,109,110,99,108,108,100,101,107,100,97,92,95,103,99,105,103,114,106,103,106,110,130,104,98,104,103,99,95,112,106,103,95,112,109,103,104,114,99,110,110,115,109,100,107,106,105,109,108,91,89,98,117,90,104,108,119,114,107,101,121,102,108,99,123,109,106,91,101,112,100,104,109,106,99,106,109,100,104,111,103,103,102,102,109,115,100,102,98,99,108,104,107,108,102,96,113,109,99,100,117,118,106,101,117,100,86,117,100,109,90,95,101,98,108,98,105,103,105,100,113,97,103,106,105,87,108,101,94,103,96,99,98,102,95,107,102,100,100,90,92,103,109,111,94,94,102,93,99,102,109,106,102,117,112,106,105,97,103,88,96,107,102,101,107,118,101,113,98,94,96,109,97,116,104,98,103,109,115,105,79,105,97,114,108,102,99,102,118,109,122,102,105,119,111,98,99,101,105,99,97,113,111,109,106,103,103,99,110,90,119,103,110,103,119,107,116,93,98,96,94,105,97,122,118,100,117,95,108,99,109,108,98,106,101,95,103,100,102,108,96,111,103,102,102,105,101,106,107,101,105,103,106,101,107,102,105,99,104,103,102,93,102,86,116,108,95,108,95,92,105,100,100,94,108,105,118,90,99,97,106,100,97,103,104,86,108,99,112,110,98,106,110,105,81,64,99,106,99,104,96,93,118,105,101,91,100,99,129,110,114,114,101,113,106,108,101,107,108,96,101,100,99,115,110,102,103,101,101,107,108,99,97,106,108,107,101,112,109,106,96,99,96,98,106,100,108,94,105,117,103,108,113,93,109,100,97,112,109,104,97,99,117,113,97,107,75,102,102,101,95,104,114,113,98,101,105,116,100,102,100,104,110,114,94,101,124,110,96,104,105,97,106,92,112,110,109,113,104,74,94,113,100,100,108,87,104,95,104,103,99,97,101,95,101,112,98,110,102,88,110,99,109,99,112,109,105,110,102,91,102,88,93,108,99,110,124,96,95,108,89,102,104,111,101,100,103,110,109,117,91,97,106,109,110,104,107,104,115,111,124,101,95,101,124,96,110,101,108,113,101,108,103,107,119,99,105,114,110,100,101,106,95,99,99,122,106,107,101,112,116,99,107,94,101,116,104,108,117,95,95,109,117,99,113,89,103,102,113,101,96,100,110,103,102,106,98,133,112,113,102,106,95,101,98,115,102,97,109,113,105,98,106,99,111,113,103,104,103,101,98,108,83,97,89,114,107,97,121,108,111,101,99,108,105,105,110,104,115,101,108,105,111,106,104,102,106,92,102,118,105,92,118,101,99,100,107,102,106,103,80,99,110,117,103,119,101,99,108,94,113,104,100,95,115,112,98,110,100,108,98,99,105,117,111,110,110,112,114,109,95,111,100,105,108,110,106,100,90,101,113,106,93,105,102,105,106,103,122,102,99,102,113,102,102,100,102,118,96,96,90,103,91,103,99,115,104,99,110,115,111,107,104,117,107,106,102,104,104,108,100,99,107,115,104,96,102,95,96,100,111,109,104,105,106,116,115,105,111,98,77,116,97,106,107,112,101,100,117,101,95,102,112,119,94,98,118,98,97,103,121,101,104,123,101,100,102,106,116,90,112,109,95,98,104,100,104,96,104,114,99,107,95,106,103,99,103,94,121,95,97,98,107,98,101,108,97,114,107,96,94,104,105,116,113,128,93,95,108,97,105,73,105,114,107,115,112,113,124,98,122,120,118,143,164,154,159,163,135,151,168,123,168,154,158,152,138,138,135,119,119,112,132,112,102,129,109,118,106,108,107,104,111,105,100,103,98,101,106,94,99,107,120,97,97,101,112,110,104,107,94,94,117,114,106,104,106,106,100,108,102,91,121,86,86,84,100,101,104,108,109,121,103,106,99,107,112,115,121,107,98,103,102,111,99,95,106,100,112,112,113,112,103,101,96,95,116,108,127,109,110,111,99,84,104,88,103,119,96,103,108,106,106,109,124,108,110,92,109,107,109,106,104,99,106,99,112,100,105,113,103,101,112,113,96,109,106,103,108,101,109,108,103,101,110,99,94,85,106,104,103,113,96,107,106,100,98,111,110,112,116,104,101,92,105,107,108,100,110,107,113,110,105,103,113,123,104,114,118,104,104,100,110,89,107,108,100,115,103,105,114,105,106,104,94,117,106,110,104,104,102,107,100,113,102,108,110,133,106,99,113,102,110,96,104,107,111,97,107,117,103,102,103,116,98,87,122,113,108,101,87,110,92,116,112,106,110,107,100,105,119,107,98,106,113,102,109,100,107,113,113,116,111,106,100,113,90,106,109,114,112,102,104,109,115,103,108,102,71,96,121,105,109,114,109,109,102,104,106,107,96,97,110,107,111,109,105,107,113,99,99,100,108,104,107,94,98,108,124,108,83,100,108,102,105,110,105,99,74,108,115,106,121,121,94,102,107,97,111,111,117,107,104,96,109,116,106,106,115,98,106,107,104,98,97,103,116,117,112,105,97,108,115,106,105,96,98,118,106,95,109,94,94,103,82,103,116,113,95,101,112,90,118,109,107,111,117,92,91,108,106,100,113,117,103,103,94,112,105,105,111,124,111,114,107,107,109,115,107,108,110,93,109,104,94,108,91,104,103,103,113,104,112,82,104,111,105,89,107,104,113,104,109,110,107,89,110,109,109,106,110,109,110,105,90,103,103,115,106,108,109,109,112,105,106,109,110,97,109,108,99,104,102,103,99,113,108,102,113,106,114,100,99,106,113,109,105,108,102,107,121,112,104,107,105,99,109,116,99,95,106,116,99,120,103,100,114,79,111,102,108,106,101,98,106,97,104,121,101,94,106,116,105,112,104,105,104,98,106,109,100,109,115,103,100,110,107,107,115,106,105,86,110,121,115,87,111,124,109,117,104,99,98,103,107,112,107,122,107,121,112,114,90,117,116,106,109,99,109,110,101,105,106,107,92,98,103,107,77,97,114,95,106,112,101,98,107,105,105,114,100,112,112,107,111,96,119,105,102,98,108,106,108,98,115,95,105,97,92,113,109,114,99,104,100,108,102,108,91,107,110,110,98,112,95,97,124,110,111,106,112,111,107,107,106,113,95,112,109,99,109,103,118,118,120,119,108,106,112,110,102,112,99,99,106,96,113,107,103,94,106,97,103,110,72,106,97,99,91,99,105,105,101,109,114,101,112,109,99,107,113,116,109,117,100,106,105,110,110,114,101,96,103,90,87,105,96,102,106,113,104,96,104,86,104,116,96,101,114,100,111,105,111,98,95,88,65,110,111,104,93,103,105,112,111,104,104,100,106,106,107,99,99,108,112,111,99,113,102,107,106,108,104,104,110,108,108,110,106,99,96,102,103,106,109,102,100,105,125,108,91,101,114,114,114,109,105,103,105,109,104,98,108,103,109,91,108,96,106,109,106,104,121,121,83,95,107,101,114,109,103,86,102,111,111,96,112,97,114,109,106,120,97,105,104,110,106,114,107,107,91,123,109,112,106,94,102,100,103,104,108,90,113,95,107,104,103,105,107,107,93,98,108,94,99,118,105,109,118,107,95,98,103,114,91,104,111,111,108,106,102,72,99,101,109,102,105,101,116,98,122,110,106,95,99,109,109,102,121,98,102,103,106,103,98,96,117,101,96,112,109,96,105,98,109,106,119,106,102,97,108,105,106,112,110,107,107,103,111,103,92,115,103,102,109,96,92,110,105,96,105,112,102,108,113,106,110,122,102,104,106,108,110,107,102,109,116,113,105,119,103,106,103,101,87,96,115,102,92,100,101,101,109,93,111,110,95,105,105,97,99,101,102,101,95,106,101,105,107,102,106,106,109,97,118,113,107,98,107,104,110,101,98,109,108,102,95,118,107,104,104,116,102,110,108,106,113,89,107,108,91,107,92,96,118,109,99,105,102,109,99,112,114,109,103,101,103,109,90,105,102,96,87,94,110,104,90,111,107,95,104,102,96,95,106,123,101,109,104,99,102,102,92,93,106,106,105,105,108,109,103,114,100,95,101,98,105,101,98,99,99,94,106,93,102,98,103,94,93,98,106,98,99,95,99,92,104,111,120,105,100,112,113,99,104,104,103,95,113,98,96,109,113,99,120,103,108,114,107,106,103,106,114,109,99,105,105,92,100,107,98,112,94,91,94,102,102,102,108,98,99,95,98,79,114,89,84,96,102,88,111,109,117,115,121,94,106,105,95,104,97,108,101,91,108,99,93,102,114,104,104,113,83,99,126,109,96,92,109,78,126,95,113,94, +591.56671,90,103,109,103,91,104,124,108,102,117,100,105,106,108,98,113,106,115,106,92,113,100,117,111,96,115,102,103,122,106,114,96,100,81,117,91,117,96,95,108,115,113,114,100,99,120,88,118,94,101,118,100,91,91,95,99,119,101,107,105,109,128,110,100,109,111,108,103,109,97,117,108,102,102,99,98,92,109,110,107,110,110,74,101,98,105,106,116,106,99,104,102,94,105,102,110,97,99,112,107,102,113,99,103,102,106,104,106,90,105,125,100,102,108,110,111,105,121,100,108,102,99,103,118,110,109,119,115,108,106,106,96,92,100,107,107,107,110,101,100,102,121,103,113,95,98,122,101,103,97,111,112,108,99,110,114,107,101,106,101,108,91,113,105,111,109,103,104,129,102,105,107,100,107,88,109,113,102,103,99,99,104,99,111,116,109,107,105,108,106,105,104,101,97,103,103,114,107,101,110,91,98,95,104,101,95,100,105,104,106,107,118,95,105,108,111,116,102,99,106,83,116,106,116,98,110,109,108,109,107,95,109,120,105,110,101,107,128,85,110,94,107,114,102,101,109,111,110,109,111,112,120,93,116,117,112,103,103,99,115,106,107,100,97,87,100,95,110,92,100,95,111,95,109,105,100,92,112,102,103,107,99,106,113,99,110,104,110,91,99,100,79,106,129,117,107,98,95,102,109,99,112,112,110,102,108,107,118,101,111,97,112,113,113,108,96,111,101,115,116,105,95,121,130,100,100,101,100,102,106,105,109,138,117,111,122,113,127,102,102,105,111,109,110,104,119,110,103,132,113,101,107,102,109,101,114,114,111,107,108,109,107,103,93,133,109,111,102,107,108,99,110,118,107,117,105,92,104,114,109,100,111,96,114,96,100,98,105,88,94,119,98,94,105,112,103,100,107,109,95,98,113,98,92,113,107,104,106,103,99,98,120,102,104,108,113,105,112,105,105,101,121,99,112,112,107,112,99,105,98,97,108,110,116,101,99,105,118,102,115,100,104,95,110,95,111,104,99,99,99,107,115,111,107,107,91,105,103,98,114,102,106,96,106,104,111,112,109,102,109,119,106,108,99,109,117,98,115,125,90,97,113,118,108,105,98,107,111,107,102,98,109,104,106,102,98,109,117,109,105,99,99,104,117,103,111,113,128,114,101,109,114,105,109,86,99,108,96,116,79,111,100,115,104,121,110,108,122,108,100,104,114,112,108,105,120,110,108,94,107,105,117,106,100,116,99,118,108,109,105,105,112,118,102,112,107,112,104,103,105,100,107,112,124,110,108,100,113,111,100,100,109,98,108,116,111,104,104,121,124,101,104,101,91,115,91,112,110,102,112,106,128,108,98,99,104,108,103,110,108,104,99,109,110,103,99,109,102,105,107,108,96,114,102,112,102,99,114,104,112,107,105,112,104,107,120,108,110,112,95,98,95,104,107,108,109,92,90,120,101,95,121,106,105,104,104,102,113,109,105,104,109,97,121,117,118,104,115,99,106,110,104,106,109,105,113,109,106,113,103,102,108,98,91,108,95,105,105,114,102,109,114,117,99,102,108,103,109,114,106,114,112,99,112,108,98,104,111,117,106,108,107,106,115,105,103,119,114,97,105,106,112,109,109,103,110,94,115,111,102,105,98,119,108,86,97,99,102,103,126,97,102,93,106,104,109,89,101,103,100,111,110,103,102,103,109,107,99,110,88,119,103,108,111,115,111,104,108,110,101,114,92,93,101,95,96,102,112,115,113,121,99,107,106,100,113,109,108,106,98,95,94,111,107,97,108,103,103,107,109,99,104,103,112,103,118,102,106,98,104,104,104,113,117,106,92,116,107,116,98,107,99,96,103,112,111,110,107,100,105,113,119,102,111,105,95,112,112,103,106,95,111,105,105,106,102,124,110,105,116,102,117,102,101,109,101,108,109,108,102,106,102,113,107,103,116,99,108,97,108,94,107,106,110,117,96,105,108,112,105,110,111,94,108,103,111,108,100,108,94,105,114,103,92,113,103,113,121,107,104,102,133,112,101,94,100,105,106,98,111,111,114,105,104,109,103,115,100,102,97,110,100,108,103,108,91,99,99,109,108,108,104,104,108,103,114,118,111,106,109,103,115,100,118,99,109,111,106,106,116,126,111,102,110,103,101,98,103,103,112,104,104,75,116,110,94,104,115,87,117,117,123,112,94,117,111,109,97,99,118,121,106,100,112,102,96,99,116,100,107,92,105,109,103,104,102,104,106,103,107,112,108,117,113,114,122,107,122,109,115,105,107,102,99,120,106,95,99,92,105,95,113,97,111,103,123,115,105,113,106,116,121,96,108,102,101,103,110,115,115,111,111,117,104,104,98,111,112,138,135,175,168,146,156,178,147,147,139,143,134,137,149,150,150,125,128,135,109,102,121,109,128,115,116,114,108,102,113,105,107,106,111,106,114,116,117,108,117,109,115,107,115,100,105,107,102,96,98,106,117,106,103,105,106,98,96,108,94,107,117,94,102,106,100,96,105,96,113,107,114,104,114,106,102,102,98,92,119,103,102,99,104,98,101,109,97,114,117,110,104,97,105,101,100,95,101,105,112,91,96,104,104,107,117,104,108,111,115,118,88,113,97,119,111,85,107,113,111,106,108,99,90,118,89,103,104,111,106,104,101,127,97,111,108,99,108,98,100,102,104,108,100,105,101,104,104,113,100,98,103,105,101,114,106,102,106,88,93,105,103,107,101,133,104,99,113,100,104,101,104,101,108,100,116,104,107,112,112,103,102,102,113,103,110,116,100,111,109,100,94,104,107,96,115,107,92,102,114,95,102,102,95,100,94,112,100,96,107,103,117,101,108,107,121,102,101,105,88,103,109,131,98,109,108,110,117,100,109,105,111,109,112,110,116,102,103,109,111,109,112,104,108,115,112,101,113,98,102,98,87,92,108,95,102,127,104,109,105,106,98,101,105,87,103,100,98,100,112,109,101,113,105,105,96,91,104,104,100,106,99,119,112,113,107,106,110,100,105,104,91,95,110,113,114,114,70,106,113,100,99,108,101,109,108,107,95,102,95,105,110,99,83,100,120,101,77,101,105,94,105,96,104,99,106,104,102,110,105,104,95,104,99,117,105,95,106,91,108,105,98,99,111,113,105,91,113,102,106,99,102,100,104,97,104,116,111,106,95,110,108,95,99,113,112,116,104,113,101,105,78,113,99,112,102,110,105,107,96,93,125,113,98,98,107,119,106,108,104,102,99,111,106,106,87,108,108,94,101,102,109,108,100,100,100,112,102,101,91,106,107,108,97,112,107,108,80,103,109,106,99,70,108,105,97,105,107,102,95,103,96,101,98,100,105,103,107,107,104,104,99,104,109,108,115,100,100,102,112,99,92,113,106,103,101,113,104,110,94,110,99,95,111,100,97,108,102,111,106,107,101,84,95,108,112,98,109,107,109,104,101,109,111,97,104,102,102,107,106,96,100,107,100,99,103,112,102,106,96,94,99,113,95,106,102,108,103,107,101,110,100,110,102,109,96,110,99,112,95,97,117,94,116,132,106,97,104,103,105,106,103,117,101,93,94,100,112,110,109,103,95,113,105,95,112,114,107,112,98,97,105,114,98,91,111,98,100,111,121,105,107,102,105,109,117,99,106,112,97,111,112,110,95,104,114,99,94,102,92,111,105,107,109,88,103,97,101,113,93,98,103,99,99,103,106,101,90,110,105,104,100,106,100,106,98,106,103,99,105,110,114,114,109,117,100,102,104,103,96,118,96,117,106,98,102,108,100,104,99,105,102,109,103,104,98,111,80,117,96,95,109,107,103,111,93,102,103,115,102,103,107,109,99,99,104,105,105,102,99,108,96,100,117,110,95,106,110,101,107,98,111,107,103,102,103,103,108,96,100,98,91,106,101,106,95,97,94,100,104,110,102,114,100,97,96,97,107,97,113,116,109,98,99,93,107,106,102,101,91,100,110,101,137,108,94,111,107,97,107,98,109,108,114,97,105,108,99,96,109,101,97,121,118,109,90,99,109,108,102,106,117,96,104,102,91,104,112,96,105,112,102,110,94,104,100,99,105,99,104,106,100,106,109,109,103,120,104,100,114,107,96,110,109,116,112,108,113,112,103,121,104,92,109,107,102,108,110,117,107,97,112,96,98,97,101,88,110,97,99,95,87,109,100,108,97,110,99,111,106,110,104,98,109,103,115,102,113,99,98,103,102,106,111,113,105,103,100,93,101,107,98,102,105,94,99,93,100,103,106,110,98,96,110,113,96,96,105,88,101,103,109,83,104,118,113,107,102,86,105,101,87,108,104,119,105,108,108,103,104,100,101,123,105,83,100,120,107,116,105,118,102,93,113,120,101,106,114,125,89,112,92,101,91,99,97,99,107,98,102,96,97,100,95,103,112,111,117,101,101,106,106,106,102,108,89,92,97,89,94,99,113,121,114,111,103,110,90,112,108,104,104,101,108,116,105,105,114,98,113,109,107,78,109,95,98,116,108,100,98,105,91,105,101,98,116,98,116,113,101,82,105,103,120,87,102,115,105,103,106,98,100,102,115,111,119,95,103,99,98,100,97,109,96,109,94,85,99,109,107,120,107,102,108,110,95,101,113,110,110,107,106,107,136,110,121,117,97,103,99,105,98,93,96,118,104,97,98,99,100,109,103,102,106,101,96,101,103,116,110,112,104,113,106,115,100,101,99,100,101,95,100,111,96,116,106,103,100,111,94,112,102,79,98,117,96,96,101,102,105,105,95,117,107,97,101,90,94,102,101,101,105,96,96,95,115,114,108,95,110,111,109,113,97,107,104,109,97,87,113,88,109,112,107,95,111,88,111,101,104,105,105,114,94,93,90,96,99,106,112,105,100,106,107,110,107,99,105,118,104,101,70, +591.7077,83,112,106,110,108,95,102,93,95,117,101,102,104,95,109,92,110,113,97,93,105,92,86,110,87,100,97,98,98,106,102,105,94,99,117,105,99,106,101,100,99,103,90,95,107,96,100,115,106,109,88,97,103,88,101,92,108,87,118,94,92,111,100,94,102,101,89,90,97,88,108,104,115,103,112,91,105,112,101,105,93,102,102,102,75,91,93,99,103,103,106,98,93,103,96,104,94,96,91,94,110,91,96,106,108,104,95,116,100,94,109,105,104,107,109,99,97,101,105,92,114,95,103,110,122,103,112,110,117,104,106,111,109,86,108,113,89,108,102,95,100,111,103,100,94,94,110,102,95,103,102,101,116,94,89,86,99,98,103,95,95,102,98,95,113,95,128,87,100,94,104,107,98,101,101,100,103,106,106,116,101,79,101,105,98,104,96,90,114,97,108,107,98,94,106,95,95,102,100,101,97,103,96,99,103,105,106,103,104,103,104,105,98,106,101,104,87,99,92,92,131,104,121,89,109,106,100,111,108,108,111,107,94,101,115,115,99,105,106,107,125,98,102,118,88,100,92,114,99,106,113,105,105,106,102,118,107,115,100,110,95,110,94,87,112,101,105,106,89,102,96,105,105,94,104,104,85,95,108,112,106,102,107,113,101,103,90,93,107,108,93,103,92,108,107,112,102,93,102,117,98,121,96,104,114,106,106,103,115,105,107,116,113,109,95,102,112,110,104,93,101,113,90,119,100,94,98,124,109,105,99,98,98,109,98,94,105,96,102,110,94,113,99,93,113,107,103,116,110,103,104,106,108,107,98,90,96,112,105,102,100,98,97,90,105,109,110,99,105,99,106,94,108,98,108,86,118,110,90,102,110,92,101,100,109,96,101,100,112,96,107,109,91,88,106,95,104,86,108,114,103,112,96,94,102,90,96,114,113,95,90,104,103,106,107,100,101,102,111,95,100,103,105,109,103,102,107,100,107,108,103,99,114,104,100,70,108,102,110,104,110,108,94,107,87,117,100,83,113,96,104,96,98,99,101,109,97,107,106,96,98,103,93,108,108,110,99,107,103,108,107,83,113,103,96,87,92,109,96,106,106,106,105,113,104,106,113,84,106,101,109,118,107,104,109,100,100,113,109,95,107,103,98,96,106,99,102,114,101,103,96,104,111,68,100,97,99,124,114,101,99,109,90,96,113,105,97,99,112,102,103,94,97,115,112,105,104,101,106,103,97,104,96,104,108,106,106,98,98,102,107,97,110,100,95,112,106,98,107,100,107,102,98,100,99,105,108,91,97,103,98,107,114,107,103,102,103,106,87,109,96,99,109,93,101,111,110,105,109,92,113,106,106,109,118,113,104,104,114,105,119,91,110,90,93,122,101,100,90,111,101,104,100,96,102,101,95,80,88,99,103,109,99,107,114,87,98,109,109,114,117,95,110,101,100,102,107,98,110,108,110,101,100,109,100,97,108,100,112,112,105,102,101,107,110,99,104,102,110,101,104,101,99,88,109,120,110,104,111,107,102,107,103,102,104,101,101,104,117,95,113,98,109,87,103,112,100,107,103,115,98,101,100,108,104,94,97,104,102,92,91,103,99,107,99,104,109,98,109,106,102,91,99,96,99,96,77,107,101,102,102,104,99,102,99,88,109,105,104,111,95,110,101,106,98,98,112,93,97,93,111,101,110,107,107,101,101,115,117,109,98,87,97,103,103,97,104,116,109,98,98,94,99,112,104,97,96,107,96,101,114,104,88,101,98,113,102,108,95,95,106,91,110,110,100,106,104,118,100,100,118,112,109,93,95,102,117,98,107,112,98,109,112,108,104,107,116,108,108,110,108,96,100,101,101,103,113,91,98,95,109,111,103,107,101,107,100,100,118,99,101,105,107,103,98,101,109,119,116,105,104,106,109,97,98,107,111,105,99,98,106,91,105,109,74,103,105,104,109,99,112,107,121,96,99,105,102,104,94,117,81,94,111,108,100,104,93,109,105,95,108,112,89,110,125,106,108,98,106,96,114,108,112,107,101,99,105,106,103,90,100,114,98,115,104,100,100,88,94,107,100,106,119,107,108,112,92,104,102,117,100,104,99,109,106,103,106,78,100,113,113,111,110,98,104,104,108,89,105,105,99,104,110,111,106,94,110,99,99,96,96,96,111,112,114,90,109,107,95,103,106,117,106,104,111,114,108,104,111,98,100,100,104,112,95,111,108,100,105,113,90,95,98,103,106,99,110,98,101,110,109,109,106,106,102,92,100,113,90,110,102,115,120,106,109,99,91,107,97,100,102,106,101,120,110,90,120,99,101,93,116,103,110,104,88,97,106,98,122,96,114,110,104,110,121,113,115,126,138,144,124,149,163,155,172,172,157,107,133,130,153,136,149,135,140,125,123,108,132,98,104,113,105,101,102,96,96,109,105,95,106,115,90,107,87,103,113,99,108,99,106,113,103,102,103,98,107,99,102,108,104,92,90,109,95,98,94,109,112,113,94,100,91,96,104,117,116,113,99,114,101,115,108,96,101,102,110,103,105,111,103,81,103,109,102,97,98,108,113,115,106,114,106,104,113,108,108,104,108,108,111,110,103,116,103,91,104,102,108,105,100,106,116,101,103,99,106,98,108,100,109,106,109,98,111,106,106,105,108,108,89,83,100,112,107,100,119,107,114,113,99,108,96,118,97,105,115,102,105,107,100,95,112,103,95,108,106,106,102,103,100,108,108,112,111,106,107,102,102,104,104,102,98,105,105,121,109,106,106,109,98,119,111,105,109,122,103,109,117,95,105,113,95,114,100,112,123,109,102,114,102,104,105,98,104,99,116,99,128,105,104,116,89,109,110,115,108,119,105,124,109,121,83,113,113,106,101,121,117,114,118,107,112,119,98,99,109,106,108,116,109,99,92,109,116,120,95,95,103,114,102,111,111,104,97,80,87,105,117,108,116,110,102,115,102,103,114,107,110,100,102,108,102,94,105,101,99,124,105,112,107,106,104,109,113,109,116,96,111,109,88,106,98,107,105,114,118,100,109,107,103,95,113,108,111,107,105,106,106,108,99,110,102,120,112,105,116,96,104,102,109,114,113,102,111,103,96,105,107,117,118,117,105,101,107,102,99,103,110,96,104,108,100,107,119,102,113,104,95,107,117,91,110,109,113,111,120,95,110,107,102,103,114,107,112,105,108,112,102,103,92,105,91,110,111,96,117,100,96,96,114,113,98,98,99,102,108,101,121,96,105,102,109,106,96,104,92,99,102,96,107,104,118,115,108,107,112,107,112,100,101,87,102,110,103,108,107,104,106,95,112,96,87,99,99,109,94,96,97,87,95,100,98,109,108,103,102,100,99,110,102,110,99,109,113,95,104,105,101,102,108,96,107,110,98,109,95,97,109,109,99,108,105,105,100,108,117,103,106,93,105,94,112,103,104,114,113,102,105,114,112,113,110,100,100,114,115,102,96,98,112,101,103,107,115,97,109,104,104,99,111,94,101,105,105,103,98,110,113,121,103,100,112,110,103,107,109,109,95,100,102,104,109,96,106,111,100,113,103,120,113,98,93,107,111,137,96,123,112,103,99,103,109,109,96,105,96,109,104,101,97,96,103,111,103,109,124,109,100,103,102,97,95,114,98,107,70,112,101,120,102,109,110,102,103,102,99,103,104,100,106,98,102,126,104,108,96,106,98,98,105,100,112,104,128,99,103,98,106,91,88,98,106,109,104,105,113,120,113,104,104,91,115,105,112,116,105,103,119,96,96,102,105,107,98,89,113,88,116,99,113,116,105,103,112,69,110,114,100,106,112,103,95,108,99,107,99,99,94,96,102,101,104,114,104,97,109,104,117,111,116,105,89,107,102,107,91,103,85,109,92,105,101,107,101,107,108,108,99,109,99,103,106,109,114,107,112,97,113,101,114,99,120,91,104,106,104,98,105,89,104,108,106,111,102,99,100,117,101,96,106,102,104,106,111,119,104,102,94,100,112,113,112,76,103,100,95,106,115,93,112,113,104,112,106,100,113,101,117,104,100,102,109,111,111,110,107,112,111,107,109,100,106,109,109,102,108,109,105,108,106,109,103,117,110,110,109,105,101,102,104,102,107,98,116,110,107,105,100,113,109,110,104,98,104,97,110,100,110,118,75,102,101,94,115,121,98,111,104,104,100,109,141,98,121,105,103,110,105,99,92,112,108,103,103,113,110,101,96,104,124,103,108,100,101,102,106,112,113,115,105,95,114,113,96,102,113,100,125,109,102,106,108,83,104,112,96,104,96,113,102,110,114,109,103,105,86,99,80,109,105,105,107,106,107,106,97,95,102,108,92,95,110,92,110,104,96,91,100,102,97,105,102,116,100,98,110,109,115,108,96,101,106,99,107,103,106,115,97,95,97,94,104,103,108,102,101,93,114,117,111,95,89,109,95,93,100,113,96,102,100,119,100,109,108,97,106,97,111,99,92,90,108,99,109,106,98,93,114,105,99,110,107,109,116,107,107,118,109,102,107,98,107,99,104,119,112,98,104,102,99,100,114,106,107,97,110,100,110,111,99,103,119,103,107,109,102,106,93,101,97,96,99,103,103,111,100,94,105,95,101,112,107,107,93,110,114,106,101,94,107,109,94,110,109,106,105,72,107,102,110,105,105,110,102,94,118,108,99,105,93,84,99,103,95,96,92,98,96,98,103,109,95,120,103,98,105,98,107,97,98,78,100,104,101,104,101,106,101,107,119,114,96,99,82,104,108,124,108,105,108,113,93,103,103,107,107,105,98,112,106,104,103,95,110,124,100,108,97,113,109,112,113,99,104,112,99,108,104,95,73,93,117,116,95,107,93,104,102,91,101,111,110,94,102,103,105,111,106,83,120,109,107,100,102,104,97,106,116,82, +591.84869,99,100,109,104,91,98,103,103,99,108,102,92,118,99,119,100,98,107,93,110,108,113,131,104,102,96,97,105,102,118,118,101,113,107,111,120,97,89,99,87,105,96,106,102,96,95,113,91,98,99,95,94,111,100,116,96,104,100,116,105,92,98,102,91,100,105,106,108,112,105,105,103,91,99,99,99,94,93,107,101,93,114,93,115,121,95,105,90,105,117,93,74,91,103,86,111,108,95,110,104,105,107,131,96,110,110,102,102,110,117,101,94,114,98,97,104,108,88,110,105,117,107,80,102,110,99,104,103,102,114,102,110,109,119,115,100,97,110,96,106,102,113,101,109,108,94,110,100,96,100,99,105,91,99,101,99,104,108,93,92,94,95,108,103,111,115,109,94,96,110,108,101,99,109,106,101,104,106,112,104,101,98,108,103,103,109,107,96,101,109,105,82,101,105,111,92,99,103,104,103,101,83,95,98,96,108,103,124,125,109,111,101,107,112,110,100,90,105,107,106,113,113,101,110,101,103,108,102,109,103,104,112,93,108,109,125,116,107,103,113,121,96,114,138,112,101,116,99,108,101,101,107,104,103,101,111,92,100,95,83,101,112,109,108,99,110,124,98,110,89,104,108,113,105,92,95,106,98,103,107,107,99,113,104,109,99,109,113,105,112,98,104,122,97,116,112,114,104,102,104,99,101,119,111,102,125,111,105,79,112,91,102,99,109,114,97,105,112,104,106,95,108,109,105,109,105,113,113,123,121,104,100,134,88,104,109,100,108,102,102,88,104,104,103,94,112,103,108,75,103,96,107,106,104,101,98,102,100,109,97,108,95,109,113,91,101,109,109,93,90,116,102,110,100,113,105,103,115,102,116,105,107,98,106,102,103,93,100,113,106,108,107,109,111,115,97,109,92,100,107,99,104,98,105,100,107,107,110,111,99,95,109,101,113,110,92,96,95,104,97,105,112,109,114,94,101,109,100,119,110,99,110,103,91,95,103,112,106,110,96,113,95,92,105,104,104,95,97,104,111,107,104,96,121,104,103,95,97,106,114,110,115,106,113,87,100,107,99,107,104,92,95,106,104,108,105,106,121,119,110,109,116,107,114,104,110,92,101,120,107,99,112,98,106,95,114,100,113,91,107,109,97,99,108,115,113,101,115,79,103,105,110,104,93,94,112,94,105,95,107,100,94,108,105,97,75,123,106,109,111,94,71,98,94,99,95,98,110,102,100,104,120,94,106,109,100,102,107,101,108,104,95,106,102,110,95,111,109,104,104,106,108,105,105,103,98,119,108,100,106,81,97,98,118,106,109,98,103,104,106,100,106,99,100,96,101,111,107,103,95,113,107,97,91,104,106,115,108,110,118,106,108,121,106,93,103,92,98,101,124,111,103,99,107,109,111,113,98,118,106,104,104,106,94,84,106,101,103,111,108,103,117,95,107,103,112,97,90,111,104,111,119,110,96,113,118,93,109,113,105,106,120,95,104,111,103,111,103,124,95,110,106,97,107,104,112,108,106,119,69,99,110,97,104,105,108,100,109,109,101,117,110,96,92,101,91,95,120,95,105,106,98,107,103,101,106,102,120,100,94,122,112,95,105,108,108,104,111,104,105,110,110,115,113,101,102,99,108,104,98,113,102,101,109,97,107,103,107,108,113,124,106,108,110,113,112,115,107,107,110,104,103,103,107,100,112,105,105,98,78,111,105,106,105,104,112,109,109,105,105,110,105,107,117,104,106,90,103,108,103,96,119,108,101,101,108,101,113,107,103,99,103,116,107,109,101,108,112,104,108,119,113,101,90,113,106,99,98,99,109,99,98,93,113,98,110,111,107,103,110,108,100,107,107,103,101,97,109,103,119,99,93,105,121,111,81,105,101,108,105,108,109,107,99,106,99,102,110,109,109,106,97,107,107,112,107,106,105,98,111,94,99,96,113,94,102,109,99,108,110,110,105,99,114,109,102,101,101,110,99,110,101,99,111,101,111,114,102,107,106,105,106,113,118,101,112,81,113,95,97,109,112,107,112,115,98,103,122,89,99,116,115,108,114,104,109,96,107,99,96,102,101,118,113,105,99,99,108,100,110,113,117,102,93,99,107,106,121,90,100,100,105,107,102,100,112,92,106,105,118,99,92,91,95,108,101,106,116,112,107,98,115,104,109,107,102,122,105,100,100,128,119,115,90,112,100,100,101,104,102,109,106,101,106,107,102,112,87,106,97,99,104,116,104,85,105,109,102,105,112,95,86,105,112,95,90,100,105,105,108,101,105,91,112,102,107,112,108,102,129,99,104,104,112,108,100,112,88,104,121,109,100,105,91,106,99,115,102,115,100,104,123,121,107,111,106,128,133,123,144,148,146,139,149,148,144,152,177,155,155,140,164,145,137,117,134,108,144,110,116,104,114,111,118,102,99,110,111,107,96,113,111,103,101,111,108,102,104,105,108,108,112,94,96,115,125,102,109,117,120,108,100,105,99,102,102,91,106,105,101,118,106,117,91,117,108,101,102,105,103,98,104,113,107,102,95,113,102,92,105,100,101,105,122,78,108,118,112,95,71,99,117,103,102,92,112,92,95,68,105,94,95,101,104,98,96,116,101,114,90,105,108,113,128,110,109,106,86,99,102,105,105,100,100,107,99,93,109,114,99,113,107,101,106,101,99,102,106,114,103,106,109,89,104,102,107,109,103,102,107,116,108,110,126,95,102,109,100,96,111,106,104,114,90,99,124,121,113,100,99,108,99,98,110,110,112,98,107,108,101,110,109,100,95,99,117,103,138,101,125,98,123,109,113,104,102,115,111,118,103,90,100,102,105,106,106,94,111,104,97,108,111,109,113,98,101,105,112,107,100,91,105,101,122,110,102,106,111,105,93,97,114,95,106,107,104,94,109,96,103,102,99,109,99,104,108,105,106,106,110,98,110,100,102,98,102,115,105,99,99,119,108,88,111,105,105,110,71,104,108,108,109,96,95,104,110,100,106,92,107,106,115,100,105,105,111,106,109,110,103,104,99,109,96,111,104,96,94,98,100,94,108,112,103,101,103,101,104,97,94,104,102,121,96,103,99,109,111,102,96,87,106,103,106,107,109,113,108,106,130,102,97,102,119,104,113,106,111,96,102,103,109,113,104,108,92,101,121,100,103,95,102,104,102,107,104,101,100,99,102,114,104,104,107,107,107,108,104,108,109,116,107,94,111,106,96,92,105,100,94,108,105,94,111,90,103,117,103,106,104,102,106,94,112,83,86,93,115,130,94,99,93,88,110,103,110,95,100,110,94,87,91,111,108,88,101,100,100,110,97,108,103,104,104,97,93,98,101,93,113,108,114,99,105,96,96,105,110,106,104,126,96,111,116,102,117,107,103,107,101,108,102,101,108,105,106,95,102,96,105,108,113,99,99,107,106,101,98,109,115,104,112,110,114,102,101,106,101,110,93,112,89,107,104,91,101,108,99,102,109,94,99,104,108,94,124,90,113,102,104,90,115,113,105,114,108,105,111,84,109,100,84,100,114,95,115,107,104,104,114,106,111,116,107,111,106,89,101,100,120,101,108,104,99,105,106,103,104,120,103,116,93,100,103,102,115,106,109,99,101,100,102,102,98,86,83,120,105,104,119,109,92,96,108,96,109,95,112,116,109,102,108,103,106,88,94,97,110,79,105,100,115,112,100,100,89,105,102,102,93,104,100,88,114,108,105,113,107,102,98,105,109,95,105,106,112,115,108,102,106,91,100,97,83,106,102,92,102,117,109,120,106,102,113,106,94,107,92,115,83,97,109,114,125,117,97,78,98,97,104,117,103,98,103,110,96,106,103,108,104,96,115,99,113,96,113,113,99,113,99,97,105,114,103,102,99,100,108,106,105,92,115,113,93,103,103,124,113,105,96,95,108,118,104,100,102,121,107,113,101,103,117,108,102,108,109,104,112,103,105,106,97,110,127,117,99,109,107,98,103,101,102,103,114,97,104,114,112,93,107,113,103,108,104,102,112,117,120,101,103,106,135,108,102,107,104,106,106,103,113,121,103,106,104,102,115,114,104,114,94,96,106,105,103,111,108,112,118,88,109,99,109,97,100,78,117,106,114,104,113,91,107,110,108,114,104,107,101,109,110,102,97,105,106,107,110,108,104,107,106,101,100,97,104,100,106,107,99,104,103,104,122,103,104,111,104,100,110,111,99,106,104,116,109,105,93,99,87,112,99,111,97,112,112,97,99,65,103,101,113,91,100,98,115,87,106,97,103,122,109,113,110,116,103,113,108,108,92,101,98,106,107,138,112,104,98,98,108,100,110,98,114,110,73,106,103,107,110,106,100,99,109,106,107,108,105,110,93,107,109,95,98,103,119,94,106,101,99,106,98,107,104,112,118,101,111,129,101,113,95,110,100,105,106,109,112,116,96,99,107,113,110,94,95,98,93,99,117,111,116,101,112,104,105,102,112,91,103,103,95,105,102,92,109,109,71,117,104,96,111,100,97,96,109,113,110,94,99,97,118,105,96,105,102,95,131,97,104,100,104,97,91,103,103,109,104,109,86,102,109,103,101,116,94,107,104,114,98,110,99,101,91,104,101,103,111,101,112,100,116,110,107,109,115,100,100,106,79,116,98,115,102,100,90,109,92,111,108,105,93,111,102,119,90,108,101,100,94,100,101,95,105,101,102,108,88,107,110,96,99,108,107,113,105,100,100,107,105,88,94,108,90,95,110,100,109,108,94,103,102,102,98,101,112,102,105,91,120,105,100,93,100,92,111,109,106,99,99,92,104,105,109,92,101,119,109,95,101,116,113,124,99,97,106,101,111,106,116,116,101,102,101,93,102,90,116,81,106,108,89,102,98,95,124,102,100,109,125,107,98,105,103,115,92,95,104,106,99,108,97, +591.98969,119,114,103,127,101,116,100,105,102,110,88,99,109,115,104,93,116,106,105,99,101,90,95,117,105,117,114,94,100,115,102,105,106,85,101,107,99,101,100,105,106,116,103,103,103,106,106,108,90,99,105,93,109,106,99,102,101,100,99,97,115,114,101,112,103,114,97,104,101,96,96,95,109,111,100,107,120,100,96,105,99,106,100,95,104,99,104,119,110,96,99,92,95,108,105,91,128,116,89,97,106,106,100,127,107,121,109,105,111,89,106,116,111,95,106,110,98,102,105,92,98,102,90,125,102,133,113,86,98,108,103,104,111,104,109,97,105,102,98,115,93,106,104,107,96,119,91,105,103,102,118,99,113,80,105,107,120,104,96,104,102,90,105,117,103,104,107,108,98,103,112,107,100,103,100,106,103,95,104,100,116,113,95,106,99,94,91,96,111,106,96,104,104,111,114,96,103,96,102,100,97,107,92,81,106,109,95,105,113,107,85,100,119,101,107,100,113,84,110,103,100,103,107,104,83,111,105,85,107,99,94,104,104,104,105,98,97,115,103,104,109,100,102,102,99,108,100,94,103,109,114,110,109,107,102,96,104,106,98,97,105,111,98,100,102,100,99,99,104,106,101,99,105,120,106,101,107,109,98,100,112,99,97,100,109,112,97,109,101,117,103,116,102,94,106,103,96,98,103,106,99,104,109,124,103,102,98,101,111,107,112,94,109,107,95,95,95,99,109,99,100,102,104,98,109,106,107,97,112,113,103,74,105,111,100,110,103,100,109,106,93,99,103,111,106,95,117,103,120,108,104,105,89,103,113,112,110,110,108,114,110,113,101,84,95,103,102,110,108,101,93,107,111,107,112,94,104,101,95,128,123,106,101,104,106,113,96,113,112,107,112,91,101,94,125,103,99,96,103,105,118,119,111,112,102,119,99,101,98,104,93,113,99,113,107,84,109,103,109,102,101,99,108,105,108,107,98,101,97,105,92,100,102,107,109,105,102,102,97,99,99,100,77,107,105,118,101,90,99,107,100,95,105,87,119,102,84,91,96,110,108,100,108,91,108,101,110,109,125,92,104,115,104,106,108,91,100,109,103,112,104,110,121,107,103,99,113,103,104,108,106,118,101,98,105,97,109,107,106,104,106,108,103,95,101,101,95,108,106,104,111,114,112,117,105,108,90,91,97,101,100,84,104,102,111,104,116,110,109,101,102,114,113,106,109,104,111,98,108,114,110,109,100,101,99,104,103,102,114,102,118,107,96,97,95,102,106,104,107,112,109,101,98,115,112,105,97,106,105,103,99,99,104,100,99,95,103,94,101,109,111,93,101,104,124,109,115,106,110,99,112,99,116,122,122,104,101,113,125,95,97,103,113,99,109,105,103,97,98,105,107,97,105,118,117,108,101,96,111,107,99,118,100,107,105,117,87,113,88,109,110,109,96,113,107,112,98,100,106,107,97,116,103,95,114,92,107,105,111,108,107,103,101,109,106,101,106,100,98,100,108,105,99,130,97,109,109,110,107,106,94,102,104,138,110,110,103,96,101,93,94,114,99,94,84,84,96,110,99,112,107,92,109,90,110,107,100,104,106,97,106,103,107,102,104,111,107,119,111,108,104,100,105,103,97,97,118,112,109,96,108,96,105,107,94,94,105,102,110,110,80,100,106,117,105,106,101,96,97,115,110,99,99,122,113,106,105,99,120,119,109,97,114,95,107,97,104,118,91,108,87,110,109,103,96,111,96,111,105,105,111,96,99,98,89,108,108,105,80,91,128,110,99,109,94,98,97,105,112,106,105,104,103,108,103,113,104,100,100,117,101,97,104,96,118,126,108,104,110,105,104,113,104,121,118,103,114,105,100,116,109,103,122,96,101,124,115,114,104,99,97,93,98,97,101,105,106,104,117,113,86,113,103,104,87,101,107,96,99,94,109,83,106,101,94,103,102,93,102,104,117,112,105,96,102,106,104,109,104,96,104,106,121,98,103,109,109,114,105,94,97,122,108,118,103,112,100,104,110,112,98,112,121,94,107,102,101,104,93,106,109,102,97,91,98,98,88,108,97,110,107,117,111,98,115,105,104,95,110,131,108,110,101,107,105,94,103,102,89,112,94,108,92,107,99,102,102,112,113,99,124,119,106,106,87,108,104,105,113,106,100,101,103,85,105,101,92,99,103,114,118,95,103,111,107,103,99,114,106,98,109,101,100,113,113,100,101,88,116,102,117,109,114,95,93,94,97,89,97,100,86,106,98,94,72,109,110,106,108,94,100,116,90,107,109,112,105,93,104,108,99,110,92,120,117,108,112,108,108,101,110,113,121,108,109,99,109,97,112,109,117,105,122,99,121,110,120,129,121,123,145,155,173,132,152,146,147,149,135,146,142,126,139,145,117,128,141,125,113,93,108,121,113,107,95,106,102,108,112,108,99,110,133,109,95,110,110,117,109,110,111,119,105,98,106,110,116,85,103,104,110,106,93,91,112,104,108,102,97,107,139,114,105,104,96,92,100,106,97,105,105,108,106,102,111,102,108,95,107,97,104,101,107,103,113,104,105,116,101,101,98,104,110,104,98,103,106,103,75,91,104,94,111,107,104,113,89,107,105,90,121,107,109,112,104,102,105,106,117,114,102,96,102,103,114,99,105,110,114,101,120,99,103,101,83,88,102,110,108,86,116,98,104,87,113,96,111,104,107,110,120,106,99,113,95,95,100,98,98,131,103,91,109,93,105,108,117,114,113,102,106,114,98,102,105,103,100,110,109,103,109,104,126,106,103,93,99,107,87,112,93,113,101,106,109,121,113,109,110,102,110,99,110,103,106,99,107,100,106,109,116,107,104,106,109,105,92,100,99,113,113,118,104,108,107,110,103,114,107,107,107,120,97,118,88,100,99,103,102,100,117,112,106,103,89,103,124,106,103,103,97,103,107,99,98,97,106,100,111,106,105,101,110,116,109,105,106,103,108,103,107,120,106,94,104,121,101,104,97,92,102,113,98,109,98,98,98,95,112,110,94,101,105,105,105,106,98,103,105,98,114,102,116,95,103,106,111,93,108,111,107,98,109,110,92,97,98,120,99,78,102,102,110,97,109,112,111,104,112,111,102,102,110,117,116,98,103,95,102,100,103,105,117,112,91,82,104,106,101,108,110,105,83,99,103,109,94,102,107,116,101,90,113,96,100,107,101,106,102,102,109,95,102,108,104,91,106,98,103,107,106,103,109,101,106,105,104,125,99,97,108,110,98,107,109,100,104,121,89,99,99,99,110,98,101,102,106,92,107,107,104,91,104,105,110,114,111,104,109,101,105,110,105,100,110,108,110,114,103,109,106,98,118,99,97,103,101,100,103,100,93,116,141,105,108,109,121,107,108,100,109,114,105,119,121,105,96,107,115,116,103,110,109,101,109,97,100,102,97,108,99,96,106,105,96,105,104,108,105,105,96,108,106,122,90,94,104,98,99,102,98,110,123,103,106,112,105,110,95,96,111,100,113,97,96,111,103,97,111,96,111,100,102,110,98,101,103,96,87,104,104,132,105,96,113,90,95,111,98,113,103,108,112,110,105,93,106,100,119,89,105,106,104,107,99,107,99,96,98,103,110,104,110,109,99,100,107,96,108,114,105,106,99,96,110,104,95,108,113,101,106,114,113,117,109,114,100,101,107,111,89,107,112,100,100,95,111,87,107,94,102,109,141,110,105,101,107,98,98,109,102,97,113,106,121,106,108,101,104,112,102,109,104,105,94,102,112,99,112,101,107,100,99,113,96,92,105,98,112,98,104,117,104,94,113,99,99,100,109,104,108,105,85,97,102,93,104,105,111,107,119,112,91,108,97,99,82,99,101,100,106,114,107,112,106,89,113,103,100,108,109,101,105,109,95,92,95,105,99,90,113,98,99,89,91,107,97,98,104,105,107,99,114,119,113,100,110,115,104,109,117,106,103,112,102,108,109,104,106,98,104,104,109,113,98,97,100,101,104,118,109,101,95,95,105,101,107,99,105,110,113,92,109,99,91,86,111,87,95,104,108,109,95,110,106,109,107,106,100,100,113,104,101,100,97,125,93,103,109,91,100,111,105,124,117,104,104,106,103,100,102,104,103,100,107,108,107,106,102,115,110,101,97,72,98,109,102,106,104,103,111,90,105,108,101,101,112,107,91,109,109,112,115,104,100,119,107,111,109,108,109,112,106,112,113,98,134,109,98,109,109,109,105,106,109,101,110,101,111,98,99,105,106,104,115,95,99,112,115,107,110,104,111,95,94,112,93,98,104,87,108,106,114,108,102,109,108,114,108,107,110,108,113,111,105,105,106,98,106,114,101,104,110,113,84,104,109,107,106,98,106,104,113,104,95,97,93,99,100,100,92,119,105,106,109,111,118,92,98,106,99,139,96,97,95,115,100,106,110,111,108,95,104,109,109,92,95,96,99,112,109,115,105,100,114,91,103,111,116,101,112,100,99,99,114,97,119,108,120,112,99,113,98,99,103,105,106,105,104,96,104,98,108,105,101,101,108,93,98,102,107,103,101,92,104,99,102,93,103,109,108,98,117,95,103,101,106,109,100,106,110,99,106,109,80,111,93,100,101,109,109,96,88,101,94,106,91,102,114,102,113,102,89,101,103,103,118,98,111,98,106,95,108,95,95,97,109,97,101,88,100,116,106,113,115,106,106,105,105,108,105,117,106,103,113,99,105,102,102,96,107,105,97,101,101,100,106,96,121,110,110,108,105,116,102,104,113,121,103,98,102,98,105,111,97,84,110,106,102,96,113,107,96,107,92,108,105,98,89,103,116,105,99,105,106,116,68,102,100,113,97,106,102,93,70,105,85,110,106,88,106,116,103,120,106,83,102,107,109,104,102,98,73,107,98,102,119,96,106,95, +592.13068,110,100,85,108,85,103,99,102,84,108,97,113,80,86,111,105,103,100,111,119,107,102,99,96,98,102,96,99,106,105,118,68,96,104,99,123,113,112,68,104,101,105,104,99,103,110,96,95,102,96,115,104,94,92,100,95,90,97,104,104,97,107,97,87,97,110,94,96,98,94,102,113,106,96,113,95,104,119,96,98,93,98,99,93,98,114,102,95,103,95,101,106,92,101,95,96,87,96,100,105,105,99,96,98,84,96,99,101,79,96,102,100,117,101,107,96,103,111,103,105,100,104,96,134,98,99,112,98,107,102,93,96,114,110,94,88,103,101,100,102,101,87,115,97,101,103,105,107,114,95,72,110,108,97,95,98,99,99,106,86,65,95,96,99,114,106,91,95,110,102,98,99,98,96,109,117,96,96,106,105,92,110,99,102,104,121,97,91,95,127,103,109,100,103,112,99,103,105,108,112,98,94,97,108,94,90,95,101,89,74,99,96,98,104,98,104,100,105,91,102,103,101,110,104,108,114,112,108,106,121,96,101,101,96,105,111,95,107,110,106,100,106,97,106,99,94,105,102,106,101,88,95,104,101,105,96,104,100,78,110,99,99,100,104,96,107,102,104,92,107,107,104,111,96,108,99,93,97,118,94,105,99,91,110,109,98,94,103,116,98,96,104,110,101,120,100,93,109,96,104,109,96,104,109,94,111,103,83,106,110,94,96,94,99,107,110,94,87,112,119,101,103,119,98,84,95,98,93,95,102,99,105,108,103,113,101,95,97,110,106,99,110,102,97,98,104,105,101,114,101,99,102,108,97,105,97,98,104,96,80,106,107,107,112,93,115,107,99,75,106,110,104,109,103,104,114,99,98,93,110,103,107,104,102,106,112,97,103,102,111,94,103,114,96,95,100,109,100,96,107,90,106,102,113,110,104,99,109,96,110,103,106,110,104,91,100,100,97,105,98,104,108,94,98,110,103,100,99,129,115,101,99,103,103,106,95,100,109,91,101,109,111,93,113,99,96,97,109,112,99,102,114,98,97,104,106,89,103,109,102,104,95,88,134,99,108,102,99,91,106,99,107,104,106,103,87,108,106,100,99,103,109,87,105,95,106,109,104,108,114,101,113,106,92,93,97,93,131,87,104,114,104,106,97,103,131,109,96,108,93,95,105,102,109,102,110,103,96,96,98,107,115,136,96,110,99,117,104,110,100,96,116,89,100,114,96,110,98,86,108,103,106,102,103,100,112,108,101,109,89,99,109,103,114,105,111,106,105,103,99,100,114,88,102,103,109,110,106,94,110,98,94,97,105,97,112,99,93,105,102,101,96,112,95,90,87,98,109,105,108,101,105,105,100,100,113,102,108,106,119,107,107,103,108,96,109,94,110,109,106,95,99,110,100,103,108,98,97,96,94,99,99,101,101,97,98,110,104,101,103,102,98,98,102,107,96,110,93,105,105,111,98,105,93,106,99,106,96,106,106,104,103,87,104,105,107,117,109,111,102,96,99,104,104,100,94,116,121,110,110,110,103,117,103,100,106,94,98,97,104,103,102,95,101,104,99,93,107,113,117,116,93,94,102,108,99,104,108,109,108,94,95,99,113,105,104,96,95,110,98,105,108,112,95,109,98,106,106,104,99,106,113,98,113,95,104,99,106,100,104,102,105,104,98,102,110,107,92,103,86,98,95,96,114,105,95,109,109,97,101,96,107,105,102,104,108,96,99,110,103,84,99,104,80,97,107,78,98,112,101,98,108,106,96,100,104,102,121,99,96,109,109,101,105,96,90,83,94,93,105,95,112,98,109,104,102,107,108,103,94,92,105,99,110,101,110,99,93,106,105,122,94,98,113,110,107,108,100,98,105,107,99,92,103,101,103,97,99,116,101,99,95,106,107,104,111,110,82,108,101,101,108,101,101,98,103,102,101,95,103,112,108,108,117,104,99,109,113,102,109,109,95,105,104,115,102,87,108,129,105,103,118,108,97,108,104,104,96,98,97,106,101,103,108,102,89,96,102,100,100,92,103,110,114,93,90,102,103,120,103,103,110,100,94,102,90,92,102,122,108,96,108,103,105,109,92,86,98,97,98,101,107,111,102,100,102,105,95,107,106,101,100,115,109,105,101,103,121,106,103,107,109,98,114,109,104,104,93,100,114,94,96,113,99,108,104,104,114,88,107,105,114,111,101,101,100,104,110,101,111,82,110,97,104,94,112,110,94,98,114,93,109,97,106,91,103,96,107,104,101,98,99,105,101,100,104,104,104,103,100,92,106,102,102,106,102,109,88,107,103,101,100,105,101,98,101,97,109,117,109,115,107,93,95,105,106,99,120,101,95,102,113,116,117,114,116,106,111,124,133,142,131,166,163,175,192,143,146,144,167,144,148,147,124,128,128,112,126,118,117,107,103,90,102,119,89,104,105,100,107,106,100,118,119,98,107,113,83,101,101,109,108,94,106,106,114,101,105,115,106,107,124,103,78,105,103,98,82,102,97,106,94,102,99,106,111,102,104,81,104,101,107,99,100,111,101,100,115,120,114,99,102,113,113,94,105,102,110,106,91,99,109,100,91,125,110,111,98,100,98,98,101,100,116,93,102,108,105,96,98,125,106,120,95,98,109,94,87,96,111,113,88,88,92,113,130,123,97,102,98,98,107,111,95,102,87,112,113,106,113,101,104,114,112,102,116,107,99,114,108,91,100,117,109,108,111,105,109,102,98,109,117,117,107,116,107,113,108,106,108,95,105,96,115,97,108,113,121,93,109,103,109,96,94,96,108,103,99,107,113,88,110,95,112,91,105,104,104,107,106,106,113,108,94,102,105,121,88,96,106,113,104,109,96,106,102,98,120,115,100,88,119,110,96,118,106,116,98,107,110,105,100,98,104,108,99,106,103,102,116,111,93,102,102,97,107,124,102,107,104,102,107,105,102,106,99,98,102,109,102,101,100,100,112,91,99,109,103,92,126,91,120,102,108,108,99,97,107,106,99,106,102,103,105,108,108,118,107,111,101,103,101,102,98,123,96,111,105,110,106,101,106,112,101,99,87,100,102,100,104,98,106,94,109,108,106,109,106,94,112,104,100,109,97,105,97,92,106,101,97,99,90,104,107,103,87,96,104,114,105,80,95,112,102,103,105,102,117,99,106,86,101,102,102,113,112,100,108,110,101,106,97,103,109,119,108,104,100,107,102,104,101,114,105,111,104,106,100,99,106,101,107,91,109,99,98,100,110,109,93,103,111,106,113,112,98,103,104,95,105,106,103,103,111,102,89,100,99,103,104,114,110,99,93,98,107,92,112,101,100,109,117,108,113,117,107,92,105,101,103,105,105,103,96,109,100,110,91,109,108,101,112,105,100,109,105,112,94,103,104,113,106,106,85,108,109,106,96,106,102,94,101,104,94,102,101,99,97,89,104,92,108,90,104,110,102,99,104,109,118,97,113,94,92,106,98,99,95,96,92,104,91,126,90,111,105,100,114,92,106,108,103,102,100,108,111,113,108,112,85,111,109,80,113,97,112,103,84,112,108,103,88,100,105,113,108,103,109,73,104,105,99,99,116,98,111,102,110,106,96,103,98,103,107,109,98,99,93,107,107,104,103,113,110,90,107,96,109,106,99,117,99,100,94,100,103,113,96,109,98,103,105,91,107,93,102,97,95,102,107,105,115,104,101,108,100,110,109,97,85,112,95,92,107,111,112,95,108,93,93,111,104,108,105,106,107,101,85,118,110,113,93,102,95,101,102,104,117,106,104,113,92,100,102,107,101,104,79,105,112,93,108,109,128,117,113,109,105,106,109,105,93,115,96,100,108,111,104,101,113,101,98,115,99,112,111,112,102,106,103,111,102,109,105,103,98,107,100,105,113,105,104,114,104,115,91,96,99,102,103,102,104,105,112,108,105,107,107,110,112,113,105,125,96,75,102,101,87,100,109,98,103,102,100,110,107,102,101,103,86,103,112,98,100,113,91,102,101,103,112,116,112,102,115,106,82,105,98,116,100,108,102,112,110,100,104,105,112,104,99,108,96,108,100,115,106,102,109,116,94,115,95,104,95,83,119,104,114,106,109,99,108,115,107,112,101,103,101,98,108,106,106,113,107,125,109,117,113,108,95,108,101,112,115,109,110,104,104,112,113,107,110,94,87,112,91,106,116,102,97,104,110,116,103,108,103,106,107,101,106,123,106,102,103,103,91,106,109,100,112,101,94,97,110,97,101,86,99,103,104,94,105,111,101,103,120,96,108,107,105,103,106,110,100,112,106,109,101,106,81,95,104,98,91,100,100,96,95,94,109,113,121,112,116,106,110,90,110,108,93,110,105,128,116,104,108,100,104,111,118,100,110,115,99,98,105,102,113,95,106,103,103,99,106,102,104,110,105,102,110,106,100,100,99,83,103,105,103,100,105,107,106,107,93,66,96,105,105,94,114,104,109,102,92,108,97,109,112,106,91,102,108,105,103,91,99,89,103,96,106,98,101,104,102,100,112,107,98,93,103,104,96,106,99,98,101,108,102,110,96,98,110,98,105,99,109,114,95,112,102,91,112,106,103,98,112,99,92,103,102,103,109,98,102,109,119,99,101,102,101,112,105,103,99,95,107,109,114,112,100,109,110,99,95,103,99,100,101,108,108,101,94,111,102,100,105,118,102,103,106,98,91,95,113,104,92,98,101,106,102,112,115,109,102,83,111,105,93,108,92,104,102,104,101,114,89,102,99,95,112,114,105,110,104,101,91,95,101,118,97,108,101,93,104,113,99,106,96,82,107,110,98,100,132,96,99,100,110,98,128,104,107,107,106,98,98,104,100,124,111,103,119,102,95,95,102,97,117,98,94,105,100,113,102,109,98,96,115,98,103,103,96,110,94,106,89,96,113,87,95, +592.27167,97,118,104,91,95,110,106,96,107,102,98,96,100,96,101,108,106,106,104,117,96,98,116,108,116,112,102,103,103,120,94,85,106,103,104,105,101,96,98,124,101,102,96,105,109,106,111,102,90,111,112,96,93,122,100,105,121,98,115,111,107,109,92,98,104,102,104,117,97,109,105,96,100,108,98,101,91,102,99,96,105,118,106,103,107,104,103,116,105,122,105,99,100,106,113,95,110,85,108,103,106,93,117,112,95,99,92,100,99,113,110,97,105,96,101,110,105,90,109,94,98,110,98,108,106,121,111,102,119,107,121,99,100,107,105,97,107,103,102,104,104,123,110,100,98,111,108,111,95,105,122,95,108,110,116,100,98,101,107,111,105,103,113,116,107,95,104,107,110,104,105,121,109,96,106,109,103,104,103,110,107,108,109,118,100,109,97,90,104,105,98,117,107,101,102,102,105,110,110,111,112,93,106,104,98,100,101,103,107,100,101,97,112,105,112,119,100,110,101,107,110,113,96,105,115,112,93,109,91,101,98,110,115,117,99,102,111,112,103,111,100,107,106,70,104,105,114,98,104,99,102,111,100,104,97,95,99,106,106,95,96,100,106,109,105,106,107,119,123,105,100,104,103,99,111,111,89,104,103,107,99,116,108,107,104,65,97,97,101,113,99,111,99,111,115,99,94,110,99,98,101,101,105,114,103,103,103,108,108,103,99,114,108,112,96,112,112,105,112,95,114,103,115,98,100,109,99,99,106,112,116,95,109,96,98,110,104,86,108,110,115,99,100,92,110,104,104,125,109,109,106,104,107,105,104,98,98,94,111,122,98,96,99,102,101,100,87,121,114,112,104,99,112,104,103,102,110,104,97,109,112,107,96,97,114,105,98,107,114,100,113,109,109,110,87,104,113,113,108,96,106,117,104,102,101,109,105,108,114,111,99,105,112,104,116,99,100,100,99,94,113,103,105,116,107,95,106,100,107,105,94,122,107,101,105,104,106,105,108,117,101,102,115,109,99,110,104,97,100,88,103,96,97,116,100,102,102,109,102,110,99,106,103,104,106,123,106,104,107,101,102,109,107,130,102,100,101,108,108,113,117,103,111,100,97,104,108,105,101,105,109,107,108,106,105,99,96,104,109,101,94,103,125,92,96,103,112,95,105,98,120,105,87,104,101,113,119,95,105,109,102,106,117,105,108,106,98,102,97,113,98,110,111,114,117,97,112,90,109,110,109,100,98,100,103,105,99,129,105,103,87,129,106,76,104,99,110,94,109,94,101,100,118,116,106,91,108,102,104,103,100,95,102,107,101,95,100,107,103,101,108,104,104,90,114,99,101,107,117,112,102,107,114,117,110,114,100,91,108,121,95,101,103,96,105,96,104,101,107,108,108,99,108,103,108,93,100,106,104,105,113,109,106,105,103,100,120,97,98,108,102,92,113,105,97,107,106,102,113,123,100,107,100,108,98,95,108,105,105,109,104,97,104,108,106,103,113,114,105,109,107,104,103,106,100,96,108,93,116,106,106,107,94,108,102,94,104,105,99,104,111,117,120,99,89,106,98,109,104,106,101,97,109,110,107,116,107,97,113,101,106,97,109,99,110,99,100,112,96,101,101,103,104,101,92,96,103,101,97,98,106,105,96,105,109,98,100,106,110,113,103,106,97,109,101,106,112,105,108,111,118,105,103,117,100,109,108,100,106,104,104,107,95,107,108,112,105,101,104,102,116,119,100,85,98,107,105,100,108,95,107,113,104,102,96,121,101,87,106,80,118,110,117,107,114,102,100,109,114,101,112,105,107,102,108,100,106,114,102,101,69,100,102,101,109,118,118,110,113,108,103,101,101,109,98,109,106,121,101,105,104,117,106,106,103,101,101,105,117,120,107,99,110,96,113,102,114,97,121,116,99,97,102,98,107,100,116,98,116,87,112,104,106,108,102,104,109,116,106,106,108,106,104,103,111,105,106,103,119,114,114,103,117,109,107,100,108,106,91,103,108,109,106,114,99,106,99,109,106,113,102,99,95,106,112,106,101,118,96,121,101,102,105,108,98,94,105,101,104,106,92,112,116,105,109,96,99,100,109,112,106,101,91,120,100,106,96,91,107,103,107,109,102,93,101,117,99,106,105,101,126,105,106,106,101,103,110,108,97,102,97,88,111,104,88,116,111,111,96,105,111,115,125,105,105,91,112,102,107,103,120,97,114,113,116,106,100,101,93,115,108,115,103,99,100,109,104,111,133,106,110,105,101,103,105,108,110,114,102,119,107,105,98,96,112,118,108,113,106,102,101,98,98,102,101,106,114,102,114,103,110,117,111,110,112,96,116,104,98,113,109,115,102,116,92,107,113,132,113,109,121,139,172,170,205,186,164,183,148,167,122,154,124,120,117,138,115,123,124,112,78,109,113,116,108,109,102,102,109,102,103,110,107,108,104,99,113,100,96,103,78,98,100,102,111,114,111,114,104,105,107,95,115,100,88,99,99,102,115,107,112,87,108,98,105,102,105,99,101,108,111,103,122,99,104,105,102,103,96,96,99,108,92,100,117,98,105,107,104,101,102,103,113,102,113,104,107,96,113,104,95,95,104,109,98,116,107,116,112,98,105,101,109,103,106,109,111,95,112,100,109,99,103,108,99,107,107,102,103,112,106,116,107,107,107,105,104,106,102,109,104,106,90,107,112,110,109,98,105,102,95,95,104,109,96,93,121,113,103,96,100,100,104,106,100,95,113,106,109,102,106,115,113,98,112,105,98,107,104,120,108,121,96,102,101,62,101,105,88,99,91,113,99,106,104,118,111,109,96,98,106,104,103,104,107,109,97,110,106,104,111,105,126,98,123,126,113,110,104,104,107,99,117,99,113,106,112,115,108,116,96,102,107,108,102,102,99,116,94,109,109,110,105,105,99,111,103,99,81,104,108,115,96,95,98,115,117,102,108,90,108,100,107,103,100,112,109,107,103,105,105,104,104,106,102,99,99,114,104,106,118,101,99,104,99,102,95,107,98,100,109,104,107,107,112,98,102,103,96,98,106,107,112,99,108,110,113,103,95,102,113,107,116,109,105,103,105,115,104,97,110,117,100,111,113,94,104,91,102,113,110,109,110,109,106,99,112,103,106,106,88,100,105,106,107,113,110,102,92,102,106,119,113,100,104,108,106,106,97,99,84,100,121,112,75,105,103,99,111,109,97,106,103,102,102,102,103,109,97,100,106,104,96,108,91,84,95,103,96,116,106,84,106,108,104,139,94,98,114,92,104,115,110,109,101,121,95,98,124,94,110,95,102,100,110,107,109,113,109,97,101,91,92,91,102,113,99,95,101,101,102,105,100,107,103,104,108,102,108,99,97,99,108,107,98,108,89,106,110,113,113,96,96,109,104,101,113,108,86,103,100,103,101,115,111,115,109,107,108,123,108,98,102,105,102,105,113,114,113,104,106,98,102,104,108,112,106,118,104,103,90,114,110,93,99,102,107,102,115,94,105,114,108,96,105,112,108,100,109,109,104,106,105,111,103,105,100,91,114,94,107,113,92,112,105,113,111,119,102,110,116,99,106,106,108,107,110,113,106,96,109,98,103,116,89,113,105,109,101,107,98,94,107,108,108,87,93,105,103,110,92,107,107,95,102,110,112,103,97,107,107,106,102,94,104,87,106,89,113,106,98,111,104,110,98,103,109,100,116,99,105,101,115,107,101,99,97,83,79,100,101,96,112,96,113,96,107,101,113,110,97,115,110,97,106,110,99,115,99,96,104,109,96,116,102,110,105,98,95,106,102,108,102,91,112,111,111,109,123,106,110,92,110,104,102,115,102,112,90,115,109,107,96,98,96,104,100,127,112,106,95,115,89,107,106,106,101,99,105,103,94,97,96,105,108,105,107,109,104,101,109,106,100,96,110,88,118,107,117,111,112,99,103,104,109,99,99,109,106,113,105,121,105,110,103,113,104,105,103,93,118,106,105,117,99,101,105,99,103,106,104,100,96,103,101,99,101,111,108,102,110,105,104,108,107,102,109,95,91,110,108,93,103,109,99,101,96,94,113,110,101,102,111,90,101,105,100,109,97,96,105,94,100,118,102,115,106,103,109,105,106,102,112,99,104,122,104,109,103,113,106,97,84,96,97,92,110,91,103,104,111,104,97,92,107,107,107,101,100,100,104,92,106,98,120,117,109,105,104,99,93,106,113,103,109,102,112,105,102,104,113,100,101,98,96,96,107,116,101,95,84,104,113,121,116,99,100,103,112,109,95,107,117,108,106,108,102,105,99,113,109,99,103,114,80,102,107,96,98,100,130,102,112,120,108,116,111,107,99,100,103,98,107,94,119,96,112,104,106,99,114,90,98,125,100,99,96,105,95,93,101,110,101,102,102,115,95,109,109,114,108,91,101,103,104,98,83,90,113,106,102,103,83,108,100,105,88,102,108,99,100,102,109,103,118,110,104,109,88,107,96,94,108,107,118,116,102,107,107,111,97,97,98,111,105,112,111,100,109,98,98,102,95,104,115,104,104,115,103,88,105,113,89,102,99,100,106,114,116,116,113,99,101,77,104,104,103,104,99,106,88,107,106,102,112,109,114,110,101,108,96,102,109,103,97,99,111,110,106,107,104,115,92,100,108,103,115,113,109,108,95,97,114,99,104,104,100,100,131,105,109,101,83,90,109,98,113,108,130,99,119,117,111,104,112,115,104,97,98,102,112,104,93,108,107,109,90,91,90,102,114,99,103,100,99,98,93,102,109,107,98,103,112,101,103,104,114,95,103,101,98,108,75,101,104,98,96,118,111,93,100,105,105,100,107,108,106,113,95,113,104,99,99,88,107,96,106,96,106,86,100,106,112,99,99,98,117,113,143,110,109,91,98,116,98,87,106,106,110,109, +592.41272,86,102,97,91,103,106,104,118,105,100,114,102,106,112,90,102,107,92,95,136,96,92,82,94,114,91,91,106,106,108,92,104,94,90,97,108,108,95,106,118,85,95,115,140,116,105,99,100,108,96,106,102,110,108,122,102,105,98,97,106,101,101,124,96,107,104,105,103,124,97,99,103,122,93,95,115,100,103,98,104,114,102,111,97,95,98,101,107,114,114,104,101,94,103,107,118,96,111,99,112,94,101,101,100,112,98,106,100,101,99,113,105,103,98,101,112,105,83,106,97,83,112,121,109,113,109,110,95,103,113,99,113,97,125,106,97,110,73,117,94,97,112,96,95,94,109,109,104,92,105,99,86,122,107,97,103,121,106,108,101,99,104,105,99,106,107,96,95,97,108,102,104,107,105,119,91,103,95,96,73,101,104,94,105,96,102,93,105,99,100,102,110,101,118,109,110,104,99,103,103,92,107,83,111,99,116,94,93,104,102,115,101,104,112,100,101,72,121,111,114,91,100,104,94,113,103,96,108,99,100,83,95,90,103,86,114,99,107,100,107,99,105,102,104,98,105,107,111,107,106,99,118,107,100,97,111,94,114,101,102,101,101,99,101,102,109,112,107,102,104,100,99,109,102,101,96,118,82,100,102,93,108,98,108,113,114,91,110,101,107,114,110,105,99,119,100,101,98,103,99,96,114,104,107,105,114,107,106,107,101,99,107,98,105,90,105,92,95,110,89,96,84,110,110,92,115,118,104,105,107,101,91,106,102,105,104,104,93,103,113,98,104,102,97,101,107,96,137,110,90,100,98,98,103,105,115,99,103,100,105,103,107,107,106,110,110,103,108,106,110,110,102,105,116,106,110,112,102,102,114,95,107,104,108,101,104,96,100,102,112,101,92,103,116,100,105,72,102,104,104,111,98,113,105,94,107,99,104,105,95,100,95,106,95,104,102,96,100,104,103,109,103,105,110,98,66,98,107,99,103,101,109,97,94,99,108,76,101,95,96,95,113,101,95,110,114,103,96,100,103,102,98,108,117,102,113,96,95,70,91,106,111,102,105,116,105,103,102,99,99,103,110,87,101,99,103,97,103,109,102,98,105,112,99,101,101,113,98,102,109,101,100,106,103,102,94,101,106,100,93,102,106,99,103,95,119,95,107,113,126,107,98,103,97,108,97,97,100,101,96,110,107,111,94,115,100,103,99,102,97,118,107,95,120,105,109,116,103,113,104,97,102,108,104,102,109,101,100,97,102,102,94,97,104,101,102,91,92,95,102,103,103,99,95,113,102,71,110,96,104,121,93,95,94,95,105,97,107,104,98,101,94,105,106,108,105,99,109,93,96,99,105,98,102,118,101,103,101,99,98,105,102,105,101,87,102,94,104,111,89,99,99,108,96,106,97,113,87,102,95,100,110,98,95,94,95,109,104,112,97,115,101,103,107,104,96,97,108,118,106,103,112,94,103,103,95,105,100,102,99,101,104,104,110,110,100,100,103,111,105,108,110,114,110,97,99,116,107,112,106,113,99,105,104,99,111,104,102,105,99,106,119,118,99,108,104,108,99,108,103,110,99,104,95,83,105,102,103,103,88,102,97,92,101,91,109,107,107,107,102,110,105,104,103,84,109,104,112,99,100,104,98,99,106,95,100,103,107,94,103,104,105,98,97,105,107,99,101,97,110,112,81,94,111,107,113,96,98,106,116,105,111,108,110,102,99,106,99,103,109,101,113,88,111,95,105,101,109,91,100,105,100,104,102,74,92,102,101,109,93,99,108,105,102,99,100,106,101,90,99,99,109,109,102,106,106,107,98,107,100,105,107,100,95,110,98,99,94,106,103,107,110,105,98,97,90,106,101,102,106,117,100,109,118,121,103,100,103,109,95,106,93,98,102,105,100,98,101,99,115,96,102,111,98,109,111,95,92,103,101,103,98,93,100,98,97,100,111,93,96,101,99,96,111,109,99,108,109,93,81,105,109,97,89,103,100,103,96,102,101,105,108,99,101,102,118,101,107,105,105,103,104,105,106,97,97,113,110,110,95,106,100,101,96,91,102,97,118,94,97,99,102,104,104,97,95,105,106,103,104,108,95,115,97,111,104,86,102,99,98,98,104,121,100,111,119,108,97,106,103,98,96,91,99,109,101,100,101,104,106,98,91,98,91,118,118,109,104,105,110,103,110,101,100,103,97,95,105,96,98,100,95,106,96,101,94,102,109,103,90,95,110,102,87,107,98,102,88,95,107,104,96,98,120,108,91,92,95,98,106,102,99,104,107,91,108,104,100,104,99,98,95,94,90,98,98,113,109,108,104,98,102,95,97,104,108,97,90,102,115,117,99,99,88,129,101,132,112,150,129,132,134,124,145,169,144,157,145,169,139,134,148,145,135,122,115,117,117,99,104,112,108,117,106,96,104,102,121,112,104,96,109,99,109,111,112,100,107,107,100,129,97,69,113,107,113,99,105,118,102,110,107,100,95,112,101,106,95,109,106,109,104,101,105,106,110,95,101,106,95,113,112,120,104,98,106,103,103,101,95,95,102,95,96,102,84,105,110,115,109,106,102,103,107,97,104,104,113,104,105,103,102,110,102,104,96,106,103,108,97,108,102,102,121,98,102,104,108,105,112,121,106,104,95,113,111,96,98,102,94,104,95,99,99,107,104,104,94,102,99,103,94,113,104,112,105,116,114,102,112,108,103,117,112,93,101,102,90,100,111,112,82,102,100,127,100,119,113,108,105,108,109,104,107,119,102,112,108,105,103,124,109,110,98,94,88,101,106,115,102,109,109,105,112,111,99,101,110,106,106,113,110,103,102,112,112,103,105,110,98,102,114,109,107,111,102,107,114,102,129,108,109,108,107,121,108,106,125,108,103,118,107,112,112,102,108,98,104,101,108,107,117,106,91,105,109,91,97,101,113,114,109,113,103,104,109,101,99,102,102,99,105,112,103,101,94,103,94,106,102,111,104,108,105,111,112,106,101,92,109,124,101,110,102,112,108,102,100,97,103,105,104,97,115,111,105,104,109,114,104,91,114,107,93,101,108,113,101,101,100,98,124,109,111,106,98,112,108,101,94,105,108,108,117,110,88,103,96,101,112,100,111,104,117,105,105,96,109,107,100,120,109,100,119,109,100,99,103,83,102,111,87,113,119,109,105,107,103,108,101,99,114,101,119,96,103,122,82,100,106,108,100,105,119,100,110,105,99,104,101,100,98,108,108,100,103,98,101,103,105,111,95,125,118,109,90,99,101,103,102,109,109,107,110,110,115,114,105,109,102,102,101,108,97,95,105,109,108,107,92,124,103,97,105,118,108,102,95,113,96,99,109,110,102,106,106,100,117,108,94,128,106,96,107,117,116,100,111,106,106,113,96,72,107,109,116,107,97,107,97,103,98,98,120,104,95,115,101,109,95,99,106,103,101,95,117,109,119,92,114,109,106,107,102,103,113,105,108,110,106,98,105,108,108,89,97,114,106,109,101,107,114,83,114,116,103,108,111,104,105,103,100,95,112,113,107,102,112,117,114,113,100,106,119,110,106,113,107,103,112,108,98,99,102,106,99,104,112,111,103,106,100,87,102,100,102,104,110,95,104,106,102,108,109,106,96,108,108,129,108,69,99,116,105,103,86,97,95,109,97,99,103,101,100,108,100,100,109,104,110,107,98,82,101,101,105,101,103,101,100,109,116,103,111,107,103,103,112,112,103,97,94,117,95,119,113,103,106,111,110,108,99,99,93,99,108,109,100,104,108,102,94,107,111,101,126,105,105,110,99,107,104,100,114,110,102,96,113,99,105,102,99,109,100,107,118,108,99,93,109,95,107,102,109,100,108,107,118,117,109,98,114,104,116,117,104,106,105,108,107,100,104,102,101,104,100,110,104,103,99,95,102,105,95,105,107,103,109,100,102,98,104,103,105,112,99,101,92,104,104,112,107,97,119,104,102,100,110,103,109,107,108,103,98,95,102,120,93,123,78,106,109,102,108,108,103,103,112,95,109,107,104,95,108,116,83,114,123,95,113,108,110,93,104,109,116,102,95,108,115,106,101,112,113,106,109,101,96,99,110,106,106,103,123,109,104,105,121,100,95,100,104,101,105,116,102,103,106,96,106,109,95,102,108,103,104,105,110,103,110,108,90,109,98,138,114,113,99,107,98,110,106,115,108,99,112,102,115,96,95,106,106,103,99,108,103,111,102,102,104,112,112,112,102,103,102,117,115,119,93,110,99,100,97,99,113,106,104,95,95,92,106,108,109,108,95,105,99,102,119,106,104,104,108,111,99,83,119,101,78,104,103,127,114,104,97,113,106,103,107,112,99,109,120,112,97,102,112,105,99,115,104,102,109,108,94,114,106,102,95,108,102,116,107,107,100,113,100,98,96,103,97,106,106,89,108,103,92,103,90,101,88,99,107,110,113,106,110,98,109,106,92,113,108,107,103,103,102,110,123,96,104,117,96,99,106,101,106,116,106,105,86,98,109,100,117,102,100,107,104,96,99,99,101,98,98,105,133,112,116,113,103,113,107,104,104,113,106,107,92,109,94,102,121,101,94,110,115,89,105,105,96,97,102,111,102,98,103,109,108,103,108,101,116,104,113,90,109,99,114,105,96,97,94,107,95,112,88,102,119,100,98,109,93,103,108,105,98,108,101,107,110,84,114,102,98,111,110,98,93,101,108,109,98,117,106,125,108,106,109,106,115,96,106,94,107,106,107,108,96,108,95,99,110,112,110,114,99,100,101,89,105,98,117,101,107,110,91,104,104,108,107,106,76,99,102,100,113,107,113,99,106,108,106,111,105,132,104,101,88,97,113,108,109,105,102,102,106,109,101,107,92,105,113,105,116,87,120,104,98,117,77,103,86,99,117,118,96,102,104, +592.55371,104,110,99,107,91,103,98,114,103,108,102,106,96,93,98,95,92,110,101,106,101,109,97,97,126,122,116,106,121,100,95,91,97,100,108,98,100,96,91,94,113,107,100,104,104,106,90,115,106,105,92,109,122,101,92,96,100,105,112,114,106,110,110,97,101,101,91,111,103,97,105,95,100,100,96,108,94,109,109,104,114,113,103,92,100,102,117,104,96,125,103,89,110,92,100,95,91,106,107,108,96,98,112,96,109,106,90,105,105,101,106,98,106,105,103,108,102,107,103,87,105,65,85,113,104,100,104,110,104,110,113,112,105,105,105,101,104,99,112,96,102,108,108,95,99,94,112,98,116,119,103,107,108,80,99,100,94,104,95,110,108,91,114,104,108,95,108,103,104,102,115,91,105,91,108,104,110,94,102,121,96,112,90,106,130,95,100,94,107,96,114,104,96,85,90,106,99,108,101,100,104,99,99,109,102,110,114,97,100,119,109,100,96,96,97,113,104,95,104,115,118,107,112,104,120,94,96,106,85,103,96,101,99,114,107,108,116,102,106,103,97,99,101,100,100,95,103,113,113,102,98,105,94,99,90,106,105,92,101,105,109,106,102,104,100,107,105,111,110,109,110,107,105,100,102,101,105,102,124,97,98,112,111,128,109,102,110,106,112,106,92,106,106,100,112,126,116,101,100,102,99,100,99,104,96,98,108,116,104,109,95,113,93,98,92,106,109,97,109,91,99,95,93,96,106,99,99,102,108,102,102,107,113,105,104,105,102,96,113,104,99,108,111,109,108,109,97,105,112,116,118,114,117,107,110,108,95,117,99,100,107,99,105,96,101,105,111,105,110,114,106,100,116,110,114,104,108,106,86,108,106,99,102,114,107,103,97,101,112,108,110,95,99,97,109,120,108,104,100,113,92,91,115,110,112,91,102,105,106,104,93,99,104,108,103,94,104,103,122,109,110,105,103,106,116,74,107,105,97,103,111,93,100,109,109,125,101,98,115,106,105,102,100,95,90,76,97,105,102,103,102,94,108,106,103,110,108,100,108,93,97,105,105,97,109,102,114,108,105,107,99,109,102,109,91,99,103,111,104,113,108,108,117,101,99,102,98,102,115,99,107,103,108,108,91,107,92,101,108,104,112,114,104,111,110,97,102,111,98,102,108,100,113,109,106,101,80,101,87,110,105,107,112,104,107,105,113,117,105,109,101,115,94,99,108,97,108,96,102,114,110,104,111,104,120,103,96,92,104,115,105,105,106,96,90,110,97,104,100,93,106,100,112,111,106,108,109,99,114,105,99,93,121,103,111,101,100,95,109,101,114,112,98,111,106,100,99,104,102,106,100,86,99,105,113,103,105,103,102,102,105,121,108,108,101,104,99,104,109,77,118,99,103,96,111,101,102,106,106,125,107,108,106,106,118,125,84,96,112,105,100,95,107,90,91,102,113,88,112,112,106,108,90,109,108,104,112,104,98,114,79,107,112,113,108,101,98,103,106,88,99,110,96,115,93,106,107,75,102,113,107,104,97,100,110,107,98,103,104,102,92,113,108,103,109,94,114,114,111,106,110,105,95,131,110,104,114,68,94,95,101,100,108,112,109,104,110,104,102,104,112,108,112,95,101,110,108,104,110,77,98,97,115,114,113,84,105,116,94,111,107,100,96,104,105,84,103,77,115,108,115,104,98,102,103,101,118,97,103,108,108,104,87,108,111,109,102,114,115,94,95,101,98,107,96,102,99,103,100,104,115,100,120,105,92,106,107,104,104,107,108,110,108,106,102,117,103,93,97,110,103,109,104,115,98,93,110,105,109,112,97,116,97,115,107,117,95,112,104,95,117,113,105,99,103,113,106,100,102,100,103,122,106,102,104,103,104,93,92,106,106,91,95,96,113,113,115,110,113,100,108,112,109,115,94,113,100,121,108,97,102,115,102,106,101,107,108,108,102,112,102,108,112,113,114,105,96,130,111,101,99,112,98,112,106,107,98,103,112,107,101,110,103,107,107,103,118,116,103,112,111,113,99,103,105,104,114,101,106,99,115,104,106,105,103,110,94,123,109,100,79,97,103,104,108,100,100,106,97,118,113,103,110,100,115,107,104,106,112,116,109,113,111,107,109,117,99,104,121,102,105,95,92,121,120,105,102,107,106,109,107,102,109,102,105,102,111,108,95,104,125,108,91,92,101,117,109,94,111,105,106,107,93,107,106,100,106,101,94,99,106,104,104,92,94,94,104,108,91,96,111,101,87,107,97,99,103,119,106,107,126,72,110,109,108,99,112,110,101,97,93,120,98,112,109,105,115,75,82,113,104,108,109,100,112,113,110,105,115,112,112,105,106,107,109,107,117,116,133,128,120,136,119,158,165,153,159,165,156,131,123,132,130,135,118,112,120,126,111,109,105,114,104,132,107,108,110,106,109,113,89,120,107,117,111,98,105,119,121,111,100,102,107,116,129,117,100,103,138,101,99,107,105,105,94,114,104,97,104,113,110,105,110,106,123,99,104,77,85,100,100,114,98,109,100,92,109,116,93,102,132,103,88,93,112,112,109,116,103,101,97,120,113,117,103,113,112,116,103,95,107,116,104,124,95,107,100,99,96,95,116,114,119,107,108,104,80,110,114,105,107,117,127,109,113,114,114,104,96,104,108,100,115,111,108,108,108,109,102,119,103,102,98,116,103,105,110,99,115,106,105,108,105,99,102,106,112,108,103,102,108,109,112,104,119,112,102,110,96,91,116,97,107,114,106,106,109,92,139,91,121,109,129,106,109,105,89,104,103,109,106,112,111,103,101,94,105,117,104,117,99,105,102,107,120,103,109,108,108,113,89,103,108,105,98,108,114,96,102,101,112,88,103,110,111,114,106,109,106,109,111,111,100,96,109,99,106,114,117,110,113,105,108,99,108,107,115,103,103,121,105,106,93,99,96,107,100,106,102,101,103,102,102,111,100,102,122,116,102,93,116,104,98,99,111,102,111,114,104,116,115,102,120,100,111,108,105,116,104,97,106,105,114,111,114,106,96,95,105,108,111,96,109,107,102,109,106,92,106,98,103,112,102,111,106,99,109,95,104,102,117,111,117,108,115,104,100,106,108,99,106,108,96,106,107,102,113,113,103,104,112,115,116,103,110,96,102,110,114,100,95,103,132,94,97,119,102,93,106,108,121,103,93,110,109,103,115,118,113,110,94,92,109,104,109,107,105,90,106,110,106,104,89,113,107,106,112,106,124,102,109,113,110,108,106,94,111,101,121,109,107,97,114,102,112,131,100,119,109,104,110,76,104,115,102,108,110,107,110,95,116,113,104,103,109,115,102,107,121,90,99,70,103,102,106,114,131,101,95,110,100,103,107,119,107,109,106,97,115,96,108,117,111,110,106,105,107,87,113,104,102,113,112,98,99,95,115,120,116,106,95,97,107,102,105,105,109,106,116,99,102,107,113,108,97,108,124,90,109,102,68,113,101,105,105,108,101,100,108,102,117,99,103,109,117,112,96,104,106,88,102,95,111,99,102,101,108,108,103,112,104,109,116,99,101,113,99,105,92,97,118,106,117,100,97,109,103,100,91,101,103,111,107,109,100,108,111,123,111,95,99,102,109,100,96,98,109,103,102,126,110,109,121,104,110,91,105,88,104,110,106,88,108,113,109,107,108,106,112,99,113,98,117,104,102,108,108,118,114,95,110,100,115,119,100,86,107,109,108,94,105,96,98,104,103,115,103,125,108,99,105,103,105,105,113,105,128,116,113,99,106,100,104,109,106,101,109,83,119,106,94,103,112,120,112,92,107,95,103,117,106,109,103,88,110,113,101,103,112,132,98,118,106,100,84,99,102,102,83,101,102,117,97,116,101,101,92,107,104,97,98,110,111,105,109,111,102,100,96,105,96,113,102,113,110,98,103,110,115,102,110,97,103,99,102,98,110,100,110,93,107,104,89,107,112,114,100,106,98,110,105,103,106,105,110,101,93,108,103,110,101,110,110,108,107,109,99,108,113,105,116,112,102,93,109,114,113,87,100,108,96,106,123,100,103,103,100,107,104,113,111,107,111,100,110,112,110,102,98,104,102,100,103,100,119,117,104,116,116,117,114,84,114,112,108,110,103,101,103,121,105,99,92,111,104,110,102,100,137,103,93,99,109,104,111,102,110,111,96,87,119,111,122,109,107,103,104,111,100,121,105,116,113,104,113,109,101,108,113,94,109,110,109,113,99,115,112,109,117,101,100,106,112,110,103,97,92,97,73,101,99,100,110,102,109,105,102,115,106,105,102,105,98,113,108,94,108,103,104,107,102,103,108,113,99,120,108,117,100,98,109,117,102,103,109,101,117,113,113,106,101,107,107,110,97,102,106,109,114,99,96,104,105,100,113,98,101,108,108,95,97,101,96,114,96,101,98,102,116,98,107,116,103,115,92,106,117,99,102,106,103,112,94,108,112,103,106,106,106,107,95,110,86,110,103,104,97,99,103,106,104,94,97,84,108,103,101,99,106,106,106,103,107,120,101,114,110,94,106,101,114,102,109,102,105,102,100,100,84,103,120,119,109,100,104,100,112,103,91,102,101,121,104,114,117,96,103,98,113,94,96,105,105,119,113,99,104,112,103,104,103,109,113,103,102,100,113,104,99,111,108,73,105,110,101,108,113,91,124,89,109,121,116,113,114,108,99,114,100,99,107,99,103,95,94,111,99,97,113,106,103,103,99,111,107,99,115,89,101,93,108,103,117,99,107,91,100,101,112,100,127,101,101,95,96,104,106,96,102,118,97,94,100,90,93,115,104,100,106,125,100,103,91,93,112,100,103,103,72,106,102,111,94,104,99,107,98,110,100,98,107,91,101,105,117,104,97,100,92,97,111,96,113,106,119,109,107,105,109,109, +592.6947,109,114,99,92,112,105,101,98,99,103,122,94,86,90,94,103,100,99,109,104,101,98,103,97,103,103,100,99,101,103,98,94,97,86,108,101,99,112,109,102,103,105,77,99,102,88,108,102,114,98,97,99,106,98,81,110,101,101,104,106,96,97,95,94,100,98,99,108,94,95,104,125,105,92,103,104,93,117,119,107,118,87,105,113,104,90,104,100,102,114,102,96,114,115,99,105,82,108,109,97,98,113,104,97,103,114,102,98,104,100,112,113,103,97,120,105,109,89,115,100,97,91,103,112,97,116,102,112,100,121,128,93,108,100,101,108,106,111,91,106,93,107,95,109,99,101,105,103,101,104,101,101,98,104,104,95,104,102,106,108,103,106,108,103,110,113,91,108,109,95,130,110,105,108,111,99,108,100,101,104,101,99,106,100,106,86,101,88,105,105,113,98,97,101,108,118,106,107,97,112,107,104,104,108,109,114,94,95,129,107,105,96,109,107,106,104,107,101,111,101,71,122,114,98,119,108,115,121,109,103,87,96,95,107,115,126,99,99,107,113,96,99,103,107,102,92,108,116,101,106,96,97,101,106,100,99,95,98,95,97,103,112,103,92,98,108,106,104,102,102,103,103,103,102,116,98,102,113,103,109,108,107,93,99,112,110,99,102,105,125,110,114,104,104,115,103,88,99,103,103,98,106,98,112,92,106,108,102,111,111,101,113,111,108,102,105,90,104,113,88,98,102,73,106,109,112,109,103,117,115,108,89,95,107,104,95,105,104,100,88,101,125,101,97,96,105,106,96,98,106,111,106,99,97,116,104,100,92,102,108,101,112,113,82,93,109,97,102,101,110,111,102,93,114,118,106,103,110,110,110,117,101,109,107,103,106,101,102,94,103,100,94,112,86,98,96,99,118,101,122,104,87,80,96,118,95,99,98,105,100,102,97,107,116,98,106,103,110,87,104,96,93,108,118,74,101,91,109,105,104,100,100,113,71,100,110,114,97,108,97,100,100,104,97,98,101,85,103,99,108,106,102,99,100,93,103,105,100,99,109,93,101,103,115,114,105,104,114,101,104,108,105,105,92,105,97,100,117,104,110,94,105,106,107,99,101,113,118,93,105,117,114,119,104,91,129,108,103,113,96,106,103,95,109,104,93,91,105,112,106,112,98,99,99,97,95,97,98,107,113,113,100,83,106,104,98,109,101,107,104,105,101,104,102,109,99,117,99,105,103,113,94,114,101,118,100,100,117,104,110,105,107,96,97,100,70,104,105,96,119,99,91,96,112,104,108,115,101,105,105,101,103,103,107,108,103,97,113,94,102,100,102,104,105,101,112,100,113,97,103,91,101,95,97,105,108,100,104,108,106,99,102,108,96,104,106,107,107,104,104,103,104,78,97,101,104,96,96,106,109,98,106,114,103,98,107,96,99,102,103,104,99,100,103,97,105,112,105,103,94,104,123,98,108,103,103,96,107,102,101,104,107,114,107,114,106,95,97,100,88,114,106,102,103,92,107,102,104,119,99,108,92,99,103,99,117,107,106,112,87,110,104,106,93,106,95,109,116,91,103,107,105,98,104,113,97,122,103,108,98,105,101,103,108,108,108,112,108,108,109,106,105,118,101,106,108,97,109,115,110,101,102,105,118,109,105,108,108,110,113,98,100,98,116,120,88,120,111,108,102,102,97,90,99,100,107,99,94,91,111,109,101,107,99,117,100,110,96,112,96,108,108,105,97,95,109,108,108,96,97,104,101,109,111,102,111,101,115,109,112,103,129,109,98,100,99,86,108,109,136,104,107,108,115,102,101,96,107,109,108,100,95,118,99,113,102,109,94,114,108,100,117,103,113,112,103,104,121,110,106,92,109,104,114,108,105,99,117,100,99,98,88,113,102,108,102,98,97,107,107,95,103,111,103,97,112,111,114,116,108,105,83,104,102,93,103,105,100,101,115,112,112,113,112,108,108,105,105,95,112,103,93,108,95,108,110,95,114,110,111,124,107,97,127,109,95,104,111,107,108,100,135,108,97,116,96,100,97,106,107,103,101,108,90,123,98,93,101,106,113,108,109,118,101,89,88,95,102,105,107,98,107,104,104,104,98,98,102,107,110,95,114,103,102,112,105,106,107,105,105,123,98,111,100,100,104,101,104,117,113,115,107,99,113,107,107,107,110,109,106,103,111,107,95,100,95,104,112,106,93,105,105,101,102,108,106,106,103,100,103,104,110,102,103,96,114,98,93,101,88,108,102,111,102,98,101,102,109,106,95,114,95,99,97,104,102,97,109,114,109,93,111,114,106,101,113,107,99,95,90,102,118,113,101,109,110,109,111,105,112,109,105,104,105,113,123,126,133,104,120,127,158,167,148,141,158,158,148,163,148,143,158,115,137,138,132,109,117,109,102,106,118,109,106,118,101,110,108,102,103,98,104,108,107,107,109,97,92,98,99,107,107,101,104,100,128,111,86,112,95,95,74,98,103,110,99,99,103,108,90,112,106,100,101,92,108,92,74,103,99,98,111,111,106,110,109,99,104,93,100,97,106,107,94,103,124,109,103,112,100,115,117,97,88,107,99,107,97,102,96,93,99,83,95,103,110,110,97,110,101,106,114,113,105,102,111,118,115,96,94,121,96,105,96,106,117,109,106,114,102,91,108,108,103,101,109,117,105,103,114,108,108,108,106,103,120,111,88,107,114,102,97,101,104,91,89,114,102,132,109,104,105,110,108,102,93,110,100,99,104,118,135,106,112,106,113,99,114,108,97,116,113,87,110,106,117,104,103,112,106,107,115,101,107,105,115,112,102,114,114,116,95,90,106,99,103,100,112,106,110,103,115,101,109,108,99,115,104,98,108,103,101,106,109,114,111,118,102,107,105,108,105,103,119,102,103,99,103,119,107,115,98,129,95,104,112,115,112,120,109,88,108,97,103,95,113,112,103,102,118,96,107,108,104,104,94,104,114,106,101,105,109,115,101,104,111,95,115,116,101,105,110,107,106,103,107,120,94,103,107,131,95,96,106,70,101,95,116,96,102,115,99,112,95,104,102,112,109,108,97,101,116,111,112,99,95,118,111,100,105,109,110,99,116,100,98,104,113,108,103,113,101,94,116,104,111,105,114,104,99,107,109,94,108,101,97,115,93,113,98,101,123,101,102,113,93,102,105,96,103,107,95,110,98,102,107,108,108,110,99,111,79,113,95,106,102,105,111,98,104,101,98,98,102,99,109,87,104,101,112,94,96,103,106,104,87,96,116,108,107,109,113,109,87,99,105,92,100,105,103,87,99,92,99,108,108,104,103,97,102,103,108,93,101,112,103,103,97,96,93,97,104,104,121,102,125,98,109,90,110,111,106,105,104,105,107,101,101,109,99,110,110,100,102,112,99,112,93,116,100,92,106,80,104,94,99,108,108,112,95,101,107,96,100,92,90,101,113,90,104,105,109,105,103,100,96,121,99,99,106,102,105,107,99,95,107,100,94,116,100,96,114,106,106,102,109,107,112,110,105,96,113,95,107,106,109,103,104,113,111,120,106,102,116,107,106,97,112,115,111,115,98,96,102,106,97,99,99,102,92,100,98,107,117,87,94,102,95,103,95,103,98,113,102,95,91,107,95,95,103,105,103,95,103,105,100,103,104,108,111,99,105,76,102,110,95,91,112,103,107,100,109,105,101,103,104,108,116,111,105,97,107,111,112,105,104,112,98,107,101,91,94,94,106,102,102,107,109,108,96,102,107,100,99,96,99,113,117,99,98,110,102,109,115,97,101,116,93,99,100,100,106,94,106,107,106,117,108,104,90,114,103,94,95,104,108,113,100,108,105,99,112,103,92,110,94,106,110,108,97,103,100,106,108,130,99,76,97,107,96,95,102,76,97,102,103,102,101,104,100,104,102,99,112,108,97,101,111,102,110,114,103,104,124,107,107,116,101,109,106,102,108,104,102,117,114,118,109,105,104,97,113,108,102,103,76,92,100,107,111,103,108,99,111,118,112,104,119,112,101,120,98,103,106,103,110,111,90,107,107,99,107,106,106,113,103,111,111,107,95,107,100,103,112,99,104,111,102,111,106,99,102,105,101,109,102,97,101,98,96,113,106,100,112,107,113,116,110,102,102,100,91,75,118,101,103,103,107,88,110,103,90,96,95,98,111,108,84,94,101,99,105,110,87,119,111,98,113,105,104,109,92,105,96,110,107,124,99,125,99,107,92,106,117,130,92,114,112,113,108,95,100,118,108,96,104,98,95,108,99,109,110,94,116,98,112,101,103,107,112,90,106,107,103,109,103,102,98,100,110,113,108,107,94,102,100,106,109,115,109,99,108,105,108,103,99,117,110,107,122,106,110,94,119,84,94,111,113,98,111,95,138,98,105,88,99,120,106,102,113,116,97,103,91,107,106,97,117,109,106,109,102,101,108,95,90,105,106,98,102,106,109,105,99,102,108,97,99,107,108,110,109,110,109,97,113,97,122,94,95,96,105,97,109,94,108,110,98,98,99,105,92,92,107,114,114,115,111,99,98,96,100,98,104,98,95,92,92,100,102,120,112,114,106,112,106,110,98,107,111,81,95,107,125,101,90,110,96,105,79,80,109,100,100,103,112,105,104,104,107,101,101,95,102,117,108,114,113,99,102,99,98,100,100,97,113,107,106,106,103,100,103,115,119,110,98,101,111,98,108,100,102,105,113,109,94,113,107,106,88,96,97,101,99,98,104,98,101,106,109,111,107,95,110,91,102,108,111,113,101,103,90,103,98,112,106,102,100,107,111,117,93,102,99,107,99,110,114,105,109,104,100,117,98,116,101,109,118,111,105,91,113,106,101,104,114,101,106,115,105,101,105,118,116,101,96,100,123,98,105,117,98,112,100,122,113,112,101,95,101, +592.83569,103,123,110,107,97,87,93,97,98,82,93,114,105,90,103,95,95,120,107,110,98,101,96,109,91,102,103,98,101,99,95,80,118,105,121,104,108,89,110,96,110,111,95,113,90,108,97,104,114,110,95,111,112,107,110,99,101,105,105,104,105,103,92,97,106,86,90,95,89,113,90,79,95,117,105,123,95,108,116,91,109,96,117,95,92,104,102,96,97,107,112,102,121,100,100,92,93,101,111,111,103,98,91,102,114,112,105,101,97,94,98,101,114,97,123,104,100,96,101,86,100,102,96,109,100,97,107,110,104,103,107,84,98,105,109,107,98,111,101,96,105,116,94,98,101,89,113,111,100,85,104,114,100,94,100,110,92,90,107,114,107,93,104,104,99,104,108,95,105,103,116,97,101,105,110,92,91,100,98,96,100,99,101,101,102,104,93,97,114,92,102,105,94,112,105,93,103,108,90,108,116,75,93,101,98,110,105,133,100,112,94,115,104,113,119,113,111,108,102,100,110,102,104,114,86,106,101,91,112,102,100,105,94,110,110,98,99,104,107,111,99,128,113,71,94,95,113,98,107,107,103,99,102,103,94,118,98,104,99,107,110,111,92,113,99,107,109,106,114,96,101,109,103,103,109,107,112,96,104,104,101,114,104,104,109,99,112,89,109,110,101,107,116,109,114,110,103,98,107,88,95,109,113,112,98,92,112,97,106,111,107,112,104,89,114,110,118,106,105,103,109,100,94,106,105,103,96,108,106,103,109,110,117,110,101,110,108,114,88,106,105,109,103,102,109,107,105,97,105,103,95,107,111,113,103,103,99,101,102,106,97,107,114,103,105,89,113,106,102,106,116,103,105,111,109,98,112,105,114,110,112,104,103,108,104,116,98,93,99,99,102,97,99,107,100,87,101,109,117,105,100,113,106,102,102,106,100,103,104,103,86,107,98,107,91,101,95,103,106,98,119,110,101,107,105,110,95,102,107,126,106,112,112,116,107,122,101,108,109,101,111,105,112,111,112,112,96,98,105,98,97,105,109,112,116,118,99,100,106,110,103,105,88,112,121,122,95,86,104,102,93,107,102,88,113,116,100,100,114,102,93,106,100,109,108,103,109,108,112,86,114,109,117,114,93,108,106,110,100,99,111,107,107,102,105,111,105,109,110,94,107,117,110,112,92,93,98,100,96,87,102,110,96,94,88,113,99,103,108,99,112,113,109,109,103,110,108,105,85,116,106,116,91,99,106,96,102,120,119,114,112,104,105,103,103,113,110,107,100,97,95,99,99,103,108,104,97,109,101,111,95,95,97,106,98,105,118,101,114,108,109,114,113,104,97,110,112,101,100,96,113,105,103,104,105,99,101,103,110,104,106,108,98,99,104,108,95,106,107,95,103,96,109,87,95,96,113,89,115,110,104,109,95,95,105,104,101,97,123,106,94,112,99,104,84,107,108,98,97,106,102,105,94,105,107,96,100,109,110,107,97,120,107,120,105,94,101,99,117,103,101,108,99,107,94,99,102,99,133,106,115,115,109,109,96,116,108,104,110,113,109,104,101,101,94,101,104,105,98,112,95,109,116,113,101,96,113,103,111,97,110,100,91,94,106,117,90,116,105,110,96,110,103,98,94,99,99,98,109,107,102,96,97,105,97,86,95,108,105,113,107,106,105,102,95,108,99,95,121,95,97,111,105,100,108,99,108,106,110,102,115,102,106,92,108,129,113,95,110,108,106,108,102,100,102,112,96,92,103,103,105,101,106,104,101,103,103,98,106,103,106,105,111,101,107,110,104,112,101,100,102,111,107,102,98,108,112,100,109,108,108,107,96,97,104,107,113,108,109,112,101,105,105,99,116,107,101,103,109,90,99,108,118,113,101,99,104,90,103,97,97,110,106,91,104,119,122,109,98,103,142,101,106,98,105,107,116,89,110,100,106,97,108,102,103,118,99,102,101,88,118,95,91,118,105,107,100,116,116,106,106,107,93,105,98,105,106,108,104,100,94,103,103,109,112,111,96,127,99,104,104,121,101,106,85,105,111,104,94,110,111,105,119,95,97,98,93,102,99,92,94,112,104,95,104,100,105,106,98,105,110,105,119,111,114,110,100,100,111,102,122,99,98,99,91,101,104,105,103,102,101,102,108,101,106,99,102,80,92,117,100,84,114,102,108,99,100,92,95,103,114,99,111,86,103,84,90,107,99,92,94,100,102,100,104,106,113,99,98,104,95,106,112,95,99,99,106,120,111,89,103,100,100,97,112,79,102,104,97,112,107,103,114,95,112,118,103,117,102,106,95,111,98,115,110,101,109,101,94,105,99,104,104,100,110,93,113,107,113,114,109,105,96,110,111,90,96,130,129,123,135,164,127,135,146,136,159,155,150,150,149,130,129,124,128,108,107,104,127,118,101,120,110,114,110,115,106,107,101,105,113,111,102,113,101,109,106,110,105,125,101,113,106,118,104,117,107,111,107,101,117,102,95,98,96,104,120,102,107,102,96,113,96,99,106,117,104,104,108,99,95,107,112,95,115,100,102,100,102,119,110,103,108,112,104,104,107,115,101,104,106,109,109,117,104,117,100,113,111,101,94,93,104,102,104,91,116,112,107,103,106,100,80,98,104,106,107,97,100,103,111,86,114,92,103,112,98,96,118,106,107,120,117,95,113,113,104,95,118,95,109,120,108,104,102,108,102,99,104,110,98,96,100,114,112,102,110,101,102,99,106,110,117,103,98,102,109,108,116,117,103,108,108,117,111,122,113,105,107,113,99,110,102,108,103,107,97,112,109,101,101,110,104,103,117,121,95,102,108,102,107,107,123,97,107,115,102,107,117,79,113,115,116,93,110,111,107,124,106,105,112,107,101,107,102,110,101,103,106,113,110,108,134,112,106,111,101,106,96,108,107,106,109,109,103,109,101,109,87,109,105,113,107,110,101,119,113,107,105,114,107,100,110,109,100,92,110,115,120,105,109,110,103,104,103,113,103,110,97,106,119,105,110,108,112,109,110,111,103,115,95,104,95,107,125,103,104,88,103,112,103,102,103,101,100,107,117,97,112,106,121,125,105,112,94,95,102,104,108,114,105,116,113,103,83,113,115,118,123,102,104,98,112,114,104,94,106,106,110,107,108,99,113,115,122,108,112,107,113,100,127,95,107,118,114,115,84,95,130,105,117,98,102,109,103,109,110,104,108,102,115,106,100,99,102,96,95,110,102,118,116,101,110,100,105,110,100,101,110,104,121,106,110,88,114,123,120,113,104,97,116,106,109,104,99,103,105,108,103,112,105,110,113,116,112,98,95,107,82,101,109,114,97,101,115,113,105,95,102,114,95,117,112,102,99,116,120,99,115,106,96,104,115,101,109,103,108,98,102,109,106,99,90,102,115,103,99,107,100,103,105,123,108,101,80,97,103,107,106,99,104,116,103,107,91,97,105,111,103,104,93,107,100,111,103,103,112,95,102,101,118,111,117,100,100,99,100,101,115,106,110,100,84,111,111,112,98,120,103,95,113,111,106,110,113,109,107,124,100,101,114,100,92,101,101,124,101,107,108,107,102,109,107,102,102,105,110,79,103,103,104,132,105,110,122,113,109,111,97,114,112,102,97,103,102,101,100,104,106,91,99,102,107,118,100,96,103,106,105,118,88,93,104,109,109,109,110,110,103,108,117,95,100,108,110,104,105,115,112,99,110,102,123,111,103,104,110,102,108,111,117,99,112,104,102,109,107,106,100,91,101,108,120,116,93,100,107,134,105,110,105,107,112,113,102,96,72,92,98,118,94,98,107,107,113,108,106,111,101,115,104,111,105,112,124,110,105,107,115,104,103,105,106,113,97,119,84,117,105,102,104,107,97,97,108,115,97,100,102,112,107,101,106,94,92,105,106,109,106,105,114,120,113,108,112,105,112,102,114,105,100,99,104,119,106,115,106,120,104,103,101,109,98,113,111,100,106,93,102,113,125,112,101,98,107,109,108,99,100,108,105,101,105,99,100,106,103,101,98,103,106,77,112,102,104,113,105,91,129,100,112,105,106,95,100,134,111,104,109,98,113,71,100,99,92,103,116,106,109,112,121,108,109,107,103,116,101,115,111,103,105,108,102,112,110,103,102,101,102,106,113,108,96,109,103,102,90,103,113,99,99,107,108,100,102,108,107,105,97,112,110,122,110,104,132,107,117,106,104,106,120,102,101,85,109,105,116,107,112,99,107,100,102,107,102,104,115,102,109,100,92,95,121,101,106,104,102,107,103,101,110,102,119,96,109,103,112,98,100,104,83,104,105,97,108,101,116,102,100,105,107,115,93,107,135,83,105,99,104,111,100,98,97,108,100,100,104,103,110,107,110,144,112,108,103,103,112,104,112,105,97,115,105,108,125,103,112,99,102,121,98,101,103,107,100,98,103,106,103,91,118,113,106,105,94,98,99,112,110,94,103,104,111,99,96,110,103,91,121,108,111,100,104,99,108,112,106,112,101,108,105,102,110,108,112,105,99,107,106,92,88,103,107,85,106,109,115,77,104,103,116,106,106,104,93,112,101,105,101,105,100,123,108,100,109,105,109,103,116,96,106,76,110,118,110,95,87,103,107,100,101,100,113,112,112,114,109,109,110,102,122,108,105,102,109,101,123,108,104,108,102,109,108,105,98,112,103,97,108,104,98,101,96,96,83,125,101,107,118,100,108,105,105,102,98,91,110,95,115,107,98,106,100,106,102,101,110,108,116,100,102,105,97,110,102,110,92,103,87,104,113,114,108,112,101,104,123,101,102,107,103,118,110,94,123,95,113,113,108,112,100,99,108,94,106,100,112,100,102,101,111,107,108,105,95,99,107,106,120,94,96,97,105,101,103,110,100,128,109,112,112,116,113,95,117,98,107,93,130,97, +592.97668,111,101,95,98,88,96,104,111,99,96,124,98,119,118,101,100,121,110,116,108,100,103,110,102,110,110,101,106,99,102,109,102,107,103,113,98,119,112,100,108,88,111,97,100,117,124,73,113,109,88,104,106,100,111,93,103,112,89,107,103,111,107,120,88,114,99,98,102,81,98,111,105,101,114,95,110,101,111,102,100,109,91,114,105,97,101,108,101,94,95,104,106,98,113,98,104,107,101,101,125,111,113,101,102,103,91,103,105,97,101,96,109,104,87,103,97,103,94,113,100,106,106,108,108,114,102,138,100,113,113,92,112,96,104,97,99,113,122,115,103,100,112,92,109,108,110,101,101,101,107,102,104,96,104,117,104,103,103,105,106,96,112,107,100,110,91,110,109,103,105,106,103,105,102,112,109,114,105,108,108,98,109,105,114,96,102,104,86,110,101,108,99,113,117,111,104,112,101,96,109,98,109,100,108,99,104,95,107,102,111,97,112,126,104,101,101,105,109,103,116,99,87,102,96,108,107,105,104,91,106,92,100,106,101,101,94,104,106,107,108,100,110,91,96,104,113,86,104,113,92,117,101,99,80,90,104,110,112,82,111,91,102,104,100,98,97,113,110,114,96,98,102,115,110,109,102,106,103,116,109,103,112,105,103,110,110,109,108,106,98,99,107,103,112,94,102,101,104,116,102,105,103,95,109,89,103,106,102,91,111,99,104,106,101,103,101,97,114,99,103,110,110,119,98,120,107,104,103,97,97,96,118,120,113,97,92,109,102,87,104,101,104,110,99,107,103,98,99,117,108,104,101,104,98,109,96,112,112,95,106,105,108,100,96,106,92,104,117,81,130,99,101,112,116,107,110,111,100,110,126,107,116,97,99,101,107,104,99,111,112,94,98,113,114,106,97,99,77,112,111,108,97,96,105,103,105,109,121,99,104,101,86,110,122,108,97,126,105,109,98,92,106,118,108,107,93,105,105,93,125,103,109,98,96,94,99,101,107,102,106,107,112,99,103,89,101,103,110,103,102,94,110,105,104,122,100,99,116,110,112,101,116,110,113,107,113,104,117,103,105,120,116,103,104,105,112,97,110,117,108,105,109,125,110,106,115,105,105,113,99,107,107,110,104,105,105,100,96,105,108,102,112,91,108,98,105,101,103,105,111,109,114,103,110,113,108,106,101,109,99,103,104,110,111,110,109,107,117,90,105,101,104,102,102,106,104,114,104,103,76,101,109,101,110,124,106,105,102,99,111,101,99,100,111,99,100,104,100,104,109,100,101,110,104,99,103,102,111,88,110,98,94,103,102,112,113,106,101,108,114,103,107,101,98,108,102,95,114,118,104,102,103,101,101,104,95,126,102,104,99,95,95,107,102,107,107,102,113,109,98,97,111,116,104,110,106,90,108,104,109,117,101,107,102,100,105,108,91,102,103,99,121,113,110,96,118,112,98,116,107,100,109,112,109,99,98,103,99,112,113,102,108,98,95,101,102,110,108,102,112,104,114,105,102,96,109,111,97,102,105,113,108,105,111,105,115,78,102,96,119,96,106,102,102,108,108,113,111,106,108,103,107,105,109,110,100,113,102,102,98,111,103,113,118,97,124,107,105,90,113,116,105,105,101,112,103,111,99,108,102,111,94,106,110,112,108,106,113,110,108,108,98,98,105,100,105,96,67,104,116,103,100,110,105,95,99,115,101,101,109,108,114,91,116,104,107,112,109,105,99,99,125,94,99,98,95,97,109,100,105,107,109,111,95,109,111,108,108,102,120,104,111,114,106,109,94,111,118,109,109,109,107,94,108,102,93,110,102,102,121,113,65,111,100,104,103,100,101,105,98,108,111,103,107,126,105,105,79,102,98,113,105,117,112,99,111,90,113,108,103,108,108,98,103,102,100,96,104,100,111,110,110,109,97,94,104,117,104,110,105,102,112,110,96,100,103,111,118,103,108,102,100,105,106,92,102,112,107,113,103,104,119,102,110,103,94,119,106,106,105,107,109,100,101,110,105,110,100,103,99,111,108,105,106,98,102,102,114,109,112,107,106,103,114,114,107,106,98,95,115,109,116,112,116,107,93,97,99,105,101,112,102,114,104,99,97,110,95,106,95,105,105,99,98,109,95,117,106,107,123,108,106,77,92,108,108,102,100,93,107,99,121,101,116,90,100,106,99,114,115,103,95,103,104,117,110,103,100,102,105,111,103,104,104,104,103,85,128,99,110,97,97,120,111,117,104,98,93,102,98,96,99,106,113,98,102,121,103,98,111,113,114,110,108,105,105,98,103,96,110,97,106,103,109,107,96,103,107,100,105,115,120,106,123,134,114,117,109,102,111,103,120,113,104,125,100,111,131,119,136,133,153,137,127,146,148,134,170,153,134,145,145,126,119,107,118,133,106,110,104,109,114,109,97,90,110,100,103,126,86,112,107,103,105,111,107,100,114,104,102,101,116,75,105,113,109,110,100,115,105,113,97,111,98,107,85,103,105,105,109,102,97,111,111,107,116,110,99,104,92,102,113,109,113,109,111,107,107,104,101,117,98,106,115,110,101,102,99,106,112,112,110,96,93,98,100,112,109,101,121,109,108,96,106,93,117,102,102,110,123,113,87,112,103,104,96,99,110,118,117,98,95,109,104,84,107,116,106,107,83,88,105,106,103,106,95,95,102,102,103,96,106,104,107,79,106,111,105,106,117,100,109,103,100,107,70,116,105,87,104,113,84,91,96,108,107,115,104,92,110,105,100,101,98,117,109,105,106,96,108,113,110,106,95,111,97,87,103,106,106,95,102,89,98,98,105,117,109,111,100,109,105,116,103,113,108,109,106,105,102,101,106,106,112,109,102,106,120,99,112,113,103,106,98,106,103,118,113,103,113,109,100,106,111,104,105,110,100,99,110,97,105,118,120,102,108,106,111,83,88,94,116,95,108,97,109,112,97,104,100,110,102,87,113,91,106,101,101,111,104,108,108,99,102,96,109,104,111,104,100,103,106,102,95,115,98,103,104,101,103,90,100,109,102,117,109,92,101,103,98,100,98,102,120,104,106,109,108,102,99,99,104,94,104,93,108,101,97,107,110,116,115,106,103,101,99,100,78,92,111,103,100,109,111,109,97,113,111,105,106,111,99,98,123,98,108,96,104,111,96,108,107,97,117,96,102,100,98,107,102,99,105,100,108,99,102,104,105,103,85,95,104,109,105,101,106,102,104,106,113,108,103,106,106,106,111,113,108,106,108,93,110,102,111,112,101,105,107,90,105,103,99,127,113,103,105,120,103,107,111,105,96,110,99,101,94,103,113,115,117,112,118,100,108,107,120,83,93,105,110,101,109,115,95,101,95,103,121,119,100,98,114,106,106,92,102,106,96,100,91,103,107,91,101,112,101,99,101,98,100,103,115,103,120,98,110,109,98,107,94,110,93,91,99,106,91,104,95,114,100,110,107,110,102,110,113,124,94,97,97,103,108,99,108,100,102,99,104,94,107,107,113,104,100,108,90,104,101,94,92,103,108,99,103,115,93,110,101,102,114,100,101,90,106,85,115,97,115,108,103,94,99,105,97,98,102,114,92,102,103,118,102,93,105,110,105,106,109,105,92,95,106,107,99,107,96,101,110,115,92,103,107,107,113,113,104,113,110,101,98,135,106,108,108,100,106,112,106,109,103,104,119,108,110,126,95,85,87,101,111,109,112,103,86,98,100,98,123,101,107,83,109,96,103,91,96,98,109,106,96,89,96,112,110,115,117,95,99,93,100,98,109,104,109,100,91,97,99,111,105,98,110,98,106,105,92,113,123,102,96,99,105,107,92,108,105,102,96,105,105,113,103,102,104,99,109,121,100,114,110,111,105,106,99,100,101,107,100,108,95,95,104,102,99,97,98,96,98,102,100,109,98,103,108,122,100,107,105,112,101,99,100,111,100,108,104,108,120,114,103,74,110,113,112,116,114,93,97,118,109,106,110,106,109,106,109,113,101,100,111,102,108,114,111,108,109,109,105,76,105,114,99,96,107,105,112,112,121,114,103,110,101,98,97,105,121,100,90,109,93,110,99,103,108,105,102,102,104,106,107,107,104,102,101,105,106,109,98,107,108,79,102,102,113,103,109,105,105,102,96,107,96,104,103,111,110,110,112,104,111,104,111,102,103,95,93,102,106,99,99,92,94,106,110,102,111,115,94,98,102,110,92,99,104,117,91,103,122,100,121,116,100,69,98,97,106,115,111,100,112,98,102,106,100,100,112,109,110,96,108,93,99,107,85,83,92,96,100,94,107,88,96,93,94,101,104,100,106,111,95,106,99,100,105,108,106,101,68,106,105,99,102,96,105,103,97,103,104,109,108,103,111,109,105,105,105,105,115,95,105,96,101,92,109,113,115,108,109,96,106,101,102,105,111,102,114,105,107,117,111,120,106,106,106,110,91,94,103,95,98,104,100,102,98,110,102,101,99,109,101,90,102,102,103,107,98,99,96,104,112,100,106,98,104,112,107,113,101,104,103,113,92,106,101,93,105,94,104,98,98,97,103,101,98,106,104,100,99,108,112,105,114,104,100,108,98,109,105,108,107,95,105,101,106,120,93,106,113,105,108,90,111,102,106,118,111,108,106,106,106,111,99,112,97,87,110,106,101,103,97,109,108,83,102,106,102,107,103,97,86,103,105,91,102,106,98,83,96,113,102,101,105,103,99,100,96,103,117,99,103,96,104,104,98,102,106,99,89,109,105,91,103,109,98,105,108,109,103,106,95,100,84,96,104,110,105,113,97,102,93,113,80,104,91,99,118,106,108,97,95,121,107,118,115,114,96,108,119,102,93,103,98,76,109,112,101,112,105,114,113,98,104,97,112,106,104,95,112,99,113,119,96,121,117,96,99,109,107,102,98, +593.11768,101,95,97,99,100,101,88,99,105,86,104,102,108,106,116,112,113,113,96,110,70,95,118,89,104,94,101,102,108,111,105,101,101,96,92,103,106,111,114,101,103,104,105,113,107,111,112,94,91,106,107,83,99,97,102,113,101,106,115,114,95,105,107,100,110,107,93,103,108,101,99,108,88,112,108,104,105,106,109,104,92,90,108,112,102,106,102,102,115,93,105,98,105,114,107,101,100,107,92,105,108,95,111,103,106,98,96,99,99,91,94,84,102,92,120,99,98,105,104,78,101,98,109,108,97,108,100,106,90,100,95,99,98,115,103,112,105,92,92,110,97,106,99,101,108,96,100,103,98,112,125,110,101,98,90,109,106,113,92,110,89,92,95,105,111,98,101,88,107,112,97,104,105,89,102,99,108,86,98,101,101,100,100,107,94,93,97,96,106,105,102,100,103,103,95,97,113,106,98,102,97,108,100,109,105,106,95,113,111,110,95,104,99,109,105,103,96,98,105,97,105,111,105,90,102,107,104,103,98,99,97,109,94,121,99,102,107,103,93,120,108,95,111,96,102,97,112,102,100,95,100,113,99,108,110,89,102,114,96,96,105,107,105,97,100,101,121,102,111,105,104,109,124,112,112,96,101,98,103,94,99,102,94,90,109,100,98,112,100,98,99,101,107,116,106,98,111,110,107,91,103,103,108,107,105,106,107,96,105,108,104,103,109,104,117,110,105,138,104,92,101,109,101,110,100,93,101,98,109,125,109,102,100,89,108,106,94,105,90,98,99,92,100,95,115,109,108,96,105,109,128,97,108,100,100,103,132,101,95,98,104,112,98,103,101,92,113,103,102,110,110,104,104,100,119,102,110,104,114,110,114,103,105,106,109,106,94,99,92,108,110,101,104,95,95,104,95,104,112,115,97,108,118,107,97,101,102,103,102,103,87,123,94,108,99,112,91,69,103,98,96,98,105,104,96,95,100,95,104,97,89,102,93,99,117,103,104,106,104,108,89,97,94,113,102,106,90,106,99,106,104,104,105,103,91,98,100,109,102,70,113,109,109,110,101,105,107,107,110,97,113,109,107,109,112,99,106,113,101,102,103,119,106,105,107,105,104,98,102,99,87,108,96,110,88,106,118,98,117,101,116,91,100,106,108,100,111,111,117,101,109,104,105,99,99,104,106,98,102,96,101,98,99,95,93,120,88,96,101,101,91,113,101,111,107,110,99,100,107,106,101,102,104,108,94,107,95,99,109,101,102,106,104,111,108,105,106,109,109,112,99,96,108,96,110,102,100,112,100,100,92,100,104,110,103,103,110,108,99,109,103,113,104,107,100,102,106,103,89,107,109,103,72,125,112,100,96,96,113,106,93,106,109,95,130,98,111,101,103,104,101,106,96,95,96,111,119,104,95,87,106,100,105,96,96,102,113,92,109,111,95,111,95,99,97,100,105,94,108,99,114,104,94,96,111,99,98,111,114,113,93,103,97,109,115,102,100,100,89,104,109,106,112,107,102,101,95,92,106,95,117,103,115,95,102,119,101,125,106,96,92,105,104,96,95,105,106,112,106,97,104,99,102,115,109,107,109,100,112,92,113,106,96,110,99,109,115,110,113,111,109,99,108,93,95,101,92,105,115,91,93,111,104,116,105,90,107,110,112,105,115,98,121,103,91,90,108,104,108,104,108,92,116,126,118,96,91,103,101,105,104,90,107,109,109,103,92,128,101,130,83,106,106,98,83,107,94,90,107,97,104,115,97,98,99,104,99,98,122,95,113,104,119,96,113,94,98,123,103,107,113,107,107,110,90,106,111,113,108,106,102,101,94,100,101,109,105,106,103,101,116,112,101,100,119,104,100,109,112,122,108,107,118,101,103,105,105,109,112,104,111,102,110,109,103,108,102,108,98,100,110,108,117,101,100,107,103,96,114,118,98,105,101,110,95,109,100,98,103,122,106,107,100,102,105,95,105,102,117,107,106,97,100,112,107,108,99,115,103,118,106,96,120,99,103,107,109,109,104,110,102,116,103,110,107,100,107,91,94,118,105,112,117,104,101,111,104,106,105,113,87,109,105,99,106,94,107,105,103,96,98,113,116,96,103,91,99,103,96,107,89,115,103,92,96,99,94,105,112,95,105,114,114,113,94,107,114,103,107,121,98,102,106,106,113,95,99,118,84,81,113,116,104,102,116,103,91,100,92,94,95,102,102,109,103,101,115,99,87,109,97,99,105,95,92,103,98,90,103,108,116,98,106,127,101,95,107,102,104,118,96,104,102,100,102,107,104,109,90,111,109,100,87,100,111,124,117,128,86,112,107,99,94,95,102,111,105,111,104,101,123,104,102,105,111,110,114,133,116,155,128,124,136,128,150,145,149,164,151,131,152,137,137,118,139,138,124,109,117,111,104,126,121,101,118,100,94,108,109,104,108,117,99,99,92,104,102,110,100,100,104,106,113,103,102,106,97,94,119,97,113,103,103,112,89,105,68,97,113,101,121,109,105,97,117,109,106,103,106,107,103,112,117,100,120,107,109,117,102,102,115,101,102,106,106,98,96,102,111,106,110,115,109,97,99,110,109,113,98,105,94,96,114,111,86,104,111,100,120,123,109,106,121,106,109,92,104,108,117,112,113,117,111,105,99,99,118,102,107,106,100,103,105,116,104,97,97,104,112,104,97,107,102,110,114,103,113,111,102,106,98,106,102,99,103,121,100,99,113,118,98,103,108,119,99,114,120,115,83,114,108,100,106,109,120,108,109,115,104,104,111,106,90,94,116,115,104,110,100,100,99,103,95,115,98,105,89,105,102,103,119,100,105,99,100,98,96,112,97,103,105,109,92,89,96,109,101,108,106,97,102,104,116,97,114,104,111,103,94,105,115,99,89,114,118,102,99,107,102,111,113,95,108,97,124,115,96,109,117,101,100,108,105,110,96,110,109,101,103,119,101,105,99,111,106,100,114,106,106,96,93,102,105,106,115,120,93,104,92,109,125,115,99,94,102,101,100,98,100,106,104,99,100,104,113,107,103,98,123,96,101,110,112,93,114,104,124,108,108,100,105,128,104,104,104,108,113,109,98,106,104,110,104,105,110,100,105,101,101,101,110,102,99,115,98,99,106,107,110,105,99,100,102,105,104,107,107,101,105,105,121,97,109,103,95,106,104,100,108,104,119,105,122,112,100,101,114,105,110,107,101,98,94,96,95,105,99,90,95,99,103,95,102,95,107,103,99,112,114,106,97,106,114,116,99,102,108,113,106,103,100,110,109,98,104,103,92,106,104,98,97,91,108,103,99,105,96,104,103,103,111,99,91,111,102,112,100,99,105,110,84,101,125,99,108,92,110,112,109,128,94,105,113,101,105,100,107,98,102,101,102,93,110,106,117,104,101,105,105,104,89,95,98,92,112,100,109,96,99,108,103,112,116,90,107,92,103,108,107,111,96,112,109,109,97,123,110,96,99,99,115,90,113,90,98,107,102,111,108,99,107,101,85,108,112,109,97,103,109,91,93,113,107,108,108,97,97,112,105,103,106,109,101,96,108,99,104,111,107,111,103,98,97,103,103,111,98,106,109,93,102,96,103,107,95,108,104,102,103,107,103,106,107,100,103,104,110,99,113,107,96,110,97,103,99,105,108,103,105,99,101,99,103,109,106,111,95,94,112,94,91,107,102,102,106,102,104,105,99,100,107,99,125,108,108,101,104,103,117,104,106,108,107,98,110,105,109,99,102,108,104,95,101,102,106,106,96,104,104,106,100,100,104,129,110,82,101,75,106,104,101,99,105,105,105,106,113,113,115,105,102,102,96,106,111,100,104,97,106,88,104,107,106,97,99,113,105,104,111,95,106,101,92,108,99,106,116,109,94,106,105,96,107,105,98,100,106,97,106,87,100,100,63,92,103,96,98,105,102,108,129,92,102,90,110,94,98,95,95,115,97,108,105,116,110,98,109,104,106,94,90,100,108,95,104,98,106,103,93,102,119,115,103,103,105,86,88,99,121,131,126,103,104,102,117,94,108,107,95,106,107,96,95,99,98,104,117,95,109,95,101,97,99,104,101,104,100,102,108,102,117,103,107,109,119,108,105,101,116,120,115,113,102,110,109,104,106,112,102,79,109,99,113,112,96,106,97,109,108,105,107,96,99,91,98,106,92,96,104,83,98,103,106,102,104,119,105,102,109,113,108,106,92,107,117,105,95,109,103,107,105,109,98,109,94,99,101,117,109,117,93,108,106,111,134,106,105,123,93,104,103,95,110,109,105,96,110,110,103,95,92,103,112,111,102,100,100,121,95,111,97,102,88,123,107,102,97,112,103,124,117,110,103,106,99,98,109,105,108,97,99,117,102,95,97,89,106,110,115,119,100,113,119,102,106,101,84,108,121,98,97,93,112,112,109,101,112,98,112,96,108,102,95,93,91,102,100,90,98,106,104,110,108,107,105,107,97,99,102,115,101,98,111,128,98,104,103,106,73,94,97,110,98,104,115,104,104,107,102,105,90,104,97,91,102,117,109,97,87,108,99,99,83,106,111,100,101,100,101,104,98,98,83,106,101,105,113,111,100,110,110,104,115,112,103,107,91,93,104,98,74,114,108,107,99,103,105,104,99,98,101,106,96,103,120,104,121,113,102,96,102,100,95,100,94,107,105,99,111,125,99,95,110,121,106,95,88,104,110,99,98,105,97,102,105,93,103,104,86,104,105,102,91,106,76,118,106,109,107,95,106,104,99,117,109,98,101,112,103,86,94,107,83,119,100,90,106,77,106,109,92,100,118,109,110,84,98,106,110,118,110,108,102,105,118,114,107,95,106,111,106,93,90,97,99,104,98,101,126,102,113,95,103,100,109,95,110,108,101,98,115,92,106,93,109,95,97,122,101,100, +593.25873,96,102,85,109,90,98,115,100,104,108,99,98,91,108,106,96,104,102,93,85,100,100,96,114,87,102,97,115,110,106,109,110,94,100,116,99,117,113,108,81,73,102,92,92,104,107,108,98,98,104,94,108,99,94,108,69,107,102,112,88,97,118,95,90,106,108,105,98,101,110,103,109,104,109,98,95,91,104,111,105,96,96,100,107,98,110,112,109,111,110,99,99,105,105,93,108,109,80,104,109,106,111,106,103,98,104,96,99,100,94,109,107,114,96,113,107,102,115,100,110,97,100,113,107,112,94,105,98,106,110,107,118,93,98,104,116,100,88,82,106,99,95,77,113,91,97,82,102,94,101,109,109,97,94,110,98,98,98,109,100,110,99,109,107,101,99,103,99,96,95,100,92,98,104,103,96,110,93,102,97,102,91,111,90,101,108,95,97,97,101,127,95,99,108,104,107,110,112,103,83,98,95,102,84,93,95,91,116,108,105,101,106,108,114,105,106,108,106,95,97,111,107,93,96,93,117,118,107,105,106,97,116,110,117,100,101,116,110,103,105,117,96,96,121,101,96,111,110,108,111,106,103,92,97,102,103,99,102,97,106,100,113,76,104,96,99,103,106,91,96,87,115,101,95,101,104,98,102,100,102,108,98,106,106,103,86,100,99,118,102,103,106,109,104,103,111,106,101,107,114,93,104,110,103,115,99,116,103,104,108,106,100,107,100,113,95,117,110,99,101,101,93,134,107,93,96,99,104,100,109,108,102,107,89,103,85,99,98,116,114,100,103,94,92,99,106,102,102,102,114,112,100,104,98,99,79,95,111,100,114,102,100,108,107,101,98,102,112,97,104,108,99,98,96,113,97,111,110,102,118,103,96,106,105,90,109,96,104,99,115,104,109,101,103,95,104,101,90,101,116,95,101,105,99,105,98,112,97,106,108,95,102,109,107,112,105,95,112,108,113,103,105,100,106,112,103,104,106,108,97,101,109,92,108,99,97,90,112,100,98,92,103,104,110,91,101,93,104,103,110,108,106,98,107,106,95,104,105,103,82,101,100,98,107,111,102,107,103,99,114,108,94,108,109,109,111,108,110,113,113,108,98,107,104,96,95,108,99,101,120,99,110,98,101,92,103,107,105,103,102,101,108,97,106,102,105,100,104,88,101,112,95,100,116,101,103,108,99,97,102,111,100,99,110,105,102,102,103,84,96,94,110,92,102,100,104,112,103,111,94,112,107,94,102,107,107,102,103,111,98,105,98,102,106,106,95,101,100,106,109,95,97,99,100,102,107,98,108,110,98,104,92,109,103,100,100,108,91,103,117,101,96,100,71,111,100,104,101,111,104,111,123,107,99,99,108,108,105,106,105,92,102,102,98,102,103,96,121,106,106,107,109,114,113,107,117,107,92,105,99,86,112,109,89,99,98,101,102,115,117,95,102,109,107,92,108,110,107,100,94,103,96,109,104,102,102,109,133,118,116,104,100,99,106,89,95,92,121,107,115,107,95,108,107,104,104,112,113,88,112,105,101,103,100,108,102,95,87,96,99,94,84,114,95,105,98,96,108,100,105,110,103,107,108,110,92,112,104,104,87,104,102,103,93,67,94,112,100,116,103,108,104,108,97,104,105,79,108,94,97,101,100,103,84,99,110,102,111,95,115,119,102,101,99,103,97,102,107,104,98,108,91,103,109,121,95,107,112,125,109,100,100,111,93,109,106,108,111,107,87,105,113,103,96,98,111,99,102,97,106,113,103,103,106,89,110,102,90,108,99,107,104,110,106,104,114,104,104,104,108,91,98,92,113,89,96,101,108,114,104,105,95,104,100,108,111,99,116,104,104,103,111,110,101,106,96,107,105,99,112,102,118,120,100,110,126,107,98,112,104,118,108,92,102,104,102,112,114,98,113,106,109,69,93,105,112,107,107,95,89,111,105,98,108,99,115,104,118,98,98,110,100,102,114,88,91,108,104,114,96,119,112,110,106,107,100,109,88,119,98,106,117,106,93,105,109,96,103,118,105,103,108,119,103,106,107,100,99,100,121,105,111,112,93,120,99,104,118,98,110,109,108,106,109,125,107,92,91,99,111,114,101,107,100,105,103,103,101,105,100,104,110,110,103,106,108,67,102,105,112,101,97,108,108,89,99,94,105,106,115,89,111,116,106,101,102,102,113,101,103,98,101,113,102,108,103,82,95,77,76,94,109,113,109,109,96,99,97,99,97,112,103,100,113,103,108,94,104,101,94,106,111,96,105,96,102,98,79,93,111,107,110,98,104,102,100,106,99,96,111,105,108,92,97,110,111,99,104,112,107,110,122,104,108,106,105,115,98,110,102,119,126,103,90,126,104,114,122,116,158,137,139,136,149,156,133,177,145,144,166,146,124,136,122,133,110,152,100,119,102,110,111,107,101,110,100,99,96,105,102,110,117,109,107,121,124,128,104,113,99,102,101,81,117,72,91,94,94,106,121,112,115,99,104,111,102,95,108,113,111,99,102,101,104,97,105,110,115,94,104,112,113,104,108,95,105,119,102,108,98,112,92,103,117,107,102,115,104,100,96,111,103,105,112,103,96,99,106,103,108,107,110,95,104,95,102,122,135,99,105,106,111,113,104,113,97,94,102,101,112,109,101,109,103,109,113,110,103,105,111,103,112,109,118,96,94,118,107,104,98,108,113,104,105,109,117,106,82,103,103,94,109,106,100,102,104,109,104,107,96,99,110,90,106,117,110,131,110,104,94,110,107,97,118,117,112,126,124,112,104,95,101,118,100,112,95,118,100,119,89,101,104,106,106,106,101,112,111,111,96,107,98,102,98,97,98,116,105,92,111,105,121,127,98,102,119,99,110,104,110,114,104,109,120,105,93,103,99,116,115,110,103,110,115,110,94,104,111,101,105,98,107,115,102,110,117,114,100,100,105,101,107,105,105,116,106,101,101,95,114,103,102,109,111,96,116,88,106,101,100,98,109,100,103,100,119,87,106,100,104,106,110,100,114,111,84,112,109,98,102,101,105,107,117,111,98,103,111,108,104,110,95,107,74,107,104,99,103,101,99,111,113,109,119,93,93,98,96,104,101,103,107,114,107,109,96,127,110,106,94,102,112,99,106,114,110,104,134,95,111,104,99,110,106,106,96,103,85,114,105,108,95,99,105,107,115,135,113,103,104,100,107,91,104,121,97,100,107,101,90,104,97,102,109,110,104,113,110,110,107,108,111,105,106,114,115,106,108,102,106,119,113,110,104,113,103,109,108,97,104,101,99,105,108,102,95,101,109,122,105,100,99,109,111,109,109,117,102,72,95,115,94,109,117,105,107,89,104,105,98,106,116,103,101,97,107,116,108,106,94,109,102,102,110,103,99,109,99,97,94,95,103,96,118,111,103,99,102,105,109,100,101,103,102,96,103,113,106,106,106,94,94,94,106,98,103,102,96,103,102,101,105,98,115,110,105,94,101,121,108,110,102,114,97,105,101,106,112,115,101,108,109,97,98,117,114,109,106,100,91,111,116,92,113,105,100,98,111,118,109,105,110,79,107,91,107,104,112,103,108,93,97,115,103,102,105,102,94,119,108,98,103,98,116,103,103,110,98,101,108,106,109,109,106,96,96,128,95,109,98,101,107,102,107,103,100,106,100,100,103,100,83,97,106,96,112,97,112,102,104,98,110,108,112,101,101,108,108,105,104,100,106,98,108,103,98,83,103,112,102,115,103,117,103,106,107,112,98,111,91,105,105,103,99,102,110,100,102,103,102,106,106,101,104,93,104,100,105,112,91,99,74,109,110,102,83,120,114,111,95,108,103,104,105,101,115,101,106,101,98,102,106,105,112,102,110,110,103,109,94,104,113,95,102,104,115,100,97,99,102,98,96,112,108,106,99,109,94,111,101,107,97,108,109,112,109,105,108,97,96,108,92,108,99,99,100,103,112,100,110,98,110,102,115,109,99,109,103,104,95,121,89,98,99,113,98,103,97,111,120,101,91,106,104,105,98,98,112,98,114,103,95,104,98,108,103,103,84,113,93,105,102,111,98,102,121,106,105,107,119,106,102,116,101,108,108,111,106,98,101,96,102,110,98,104,101,102,94,105,99,99,107,108,108,103,118,111,103,98,103,84,104,96,109,106,99,106,101,104,97,98,105,117,101,110,97,107,99,98,98,124,102,96,103,110,101,100,104,109,112,110,88,108,113,108,92,96,99,96,107,106,109,99,104,104,107,126,105,92,101,91,96,99,100,113,96,103,112,99,100,114,110,108,99,116,99,104,101,85,104,100,109,99,101,99,91,99,103,113,117,103,103,113,117,86,95,108,121,103,103,105,104,90,107,101,111,108,103,106,100,104,103,112,108,95,100,119,106,106,100,108,101,103,109,107,101,101,100,112,111,92,108,111,110,103,117,110,109,106,98,109,100,95,102,107,107,97,102,113,87,99,104,101,108,100,95,101,92,122,102,107,106,97,102,106,108,97,97,113,98,96,102,97,103,99,93,112,108,120,95,110,99,97,113,99,105,110,111,105,94,109,105,95,103,106,104,110,102,94,109,98,105,123,106,107,107,94,98,113,109,101,109,115,109,100,125,99,108,99,106,108,113,106,110,105,115,108,97,112,106,101,97,111,104,102,92,101,110,105,89,98,88,87,95,101,101,98,93,109,94,104,114,98,94,97,116,104,109,102,107,106,91,120,103,109,104,105,99,116,99,102,103,95,98,108,108,108,100,105,110,102,110,93,103,101,106,100,111,102,95,101,105,105,105,99,99,113,104,105,107,111,104,105,105,94,103,102,98,98,125,109,102,91,96,109,101,94,121,75,110,105,114,103,96,91,125,79,90,102,75,110,111,104,106,119,98,91,107,85,113,107,87,104,89,102,102,95,113,95,98, +593.39972,114,110,94,99,100,94,112,96,106,92,97,113,111,101,101,105,104,108,99,102,108,101,111,114,108,117,104,112,104,104,95,112,103,105,109,101,105,100,95,104,100,108,112,108,100,108,104,107,101,80,103,106,107,125,93,106,105,108,104,95,112,110,110,94,125,115,118,116,92,106,109,113,91,104,103,92,97,105,107,103,109,105,100,110,99,100,102,99,121,102,105,115,110,94,102,97,95,105,95,104,97,103,89,104,105,104,104,89,100,96,117,117,109,102,102,99,139,96,100,93,112,106,102,119,106,101,96,101,106,110,99,114,97,104,100,99,104,106,114,101,110,105,98,110,103,90,106,117,103,109,105,111,104,96,106,108,94,107,111,115,110,95,99,104,112,117,106,99,98,105,116,108,102,87,104,99,94,98,112,96,95,111,106,108,103,113,94,90,112,112,100,105,101,109,100,103,98,107,107,113,99,107,96,110,97,99,102,102,99,109,96,88,102,93,109,90,107,102,104,88,109,102,114,102,101,109,108,105,112,111,102,111,109,112,95,105,109,117,108,98,98,102,105,104,94,102,104,103,102,107,108,97,94,117,107,113,103,106,101,109,100,92,112,115,101,109,97,106,122,112,107,99,98,114,94,101,96,100,103,109,97,119,98,108,111,108,121,101,110,103,88,118,81,107,106,109,104,112,104,110,94,110,111,101,107,103,107,109,110,103,92,98,108,112,101,98,114,94,103,94,103,105,103,95,107,107,109,102,117,104,108,101,103,113,107,98,109,104,104,96,101,105,99,114,108,114,101,103,110,119,108,104,112,113,98,115,102,97,104,94,96,105,101,100,87,109,110,104,100,112,100,105,120,105,105,108,112,102,97,114,103,115,109,106,108,91,110,117,101,94,105,98,98,123,111,100,102,111,98,112,107,99,113,114,98,107,80,110,99,105,111,104,108,109,117,95,105,103,118,109,125,90,99,96,109,105,98,90,105,103,104,103,101,95,108,100,104,105,100,110,94,105,97,101,108,100,103,98,111,107,102,99,106,126,101,117,106,107,99,106,110,108,94,111,112,123,106,107,109,123,111,106,111,98,99,109,98,99,99,99,97,116,109,103,108,112,97,100,71,99,132,112,105,112,110,100,99,109,97,118,110,117,100,111,97,106,102,96,106,84,99,104,106,119,102,105,95,107,95,110,108,84,136,109,106,114,107,100,100,95,98,114,102,105,104,115,103,105,108,112,113,99,110,115,120,100,117,100,108,96,111,104,114,101,96,97,110,105,112,111,121,92,102,109,109,103,106,105,97,103,117,105,90,92,95,97,99,103,101,99,108,94,109,85,113,99,104,98,111,115,104,105,106,110,115,103,99,100,105,99,101,93,95,95,91,101,105,115,100,107,101,110,114,103,114,101,105,103,95,115,114,109,109,90,108,95,93,108,103,104,112,116,103,99,89,104,108,95,110,108,109,78,105,110,105,98,101,104,108,107,104,104,96,116,104,117,110,108,113,108,109,117,104,103,91,99,114,109,107,111,90,108,99,104,99,110,115,110,110,105,117,98,94,98,107,108,97,113,97,98,94,99,94,113,102,104,105,121,105,104,114,106,95,108,108,113,100,108,91,113,105,95,114,95,107,102,112,104,92,103,103,107,105,107,95,109,103,110,103,107,101,107,94,101,104,108,114,80,111,115,93,96,101,106,133,99,107,111,98,124,86,105,108,102,99,107,95,99,113,111,116,105,101,109,119,104,98,108,94,100,114,101,111,106,92,99,94,103,80,110,118,114,111,112,94,108,108,115,109,111,112,108,106,100,101,100,104,105,117,79,103,114,89,103,102,109,101,113,97,114,113,104,98,103,110,92,118,109,109,117,109,102,107,107,112,118,109,91,110,109,117,95,116,105,102,114,101,113,113,99,98,111,114,96,95,100,95,106,102,96,111,102,90,106,92,96,107,114,103,96,108,105,108,113,111,105,100,102,105,106,105,119,125,103,109,90,103,105,91,100,109,101,103,105,107,102,104,122,106,92,109,112,116,114,109,89,112,119,110,103,106,113,110,98,116,105,86,119,101,109,108,109,103,144,104,109,101,107,102,89,109,108,100,113,109,104,100,106,108,98,97,112,102,117,101,118,101,101,98,115,122,70,104,103,94,80,119,98,103,103,115,97,106,94,112,87,114,109,99,105,104,115,108,103,106,111,101,109,98,109,105,109,101,104,96,109,109,107,107,98,99,102,109,100,102,125,95,104,100,112,88,104,106,108,94,107,86,98,92,114,105,103,101,110,97,119,108,101,116,111,95,108,102,117,102,102,107,94,117,110,109,110,110,111,96,109,112,116,112,102,110,115,104,104,111,103,126,123,129,140,136,150,137,174,173,146,155,147,137,138,152,145,139,137,120,120,116,108,142,95,95,93,112,116,106,122,103,110,111,101,119,113,105,108,116,109,105,104,83,114,87,94,96,108,106,101,100,96,113,107,101,115,100,103,114,104,106,98,108,132,99,115,104,108,95,112,105,97,108,108,113,107,105,101,109,112,105,109,106,110,96,112,111,96,104,100,104,109,115,95,110,109,105,101,105,105,101,93,107,95,108,103,105,105,106,94,100,114,95,91,115,99,108,103,110,116,104,111,98,109,111,95,111,104,112,102,119,100,79,103,113,97,113,119,105,98,110,99,116,109,106,115,110,108,102,105,77,96,103,102,125,99,115,109,109,109,100,98,109,105,101,108,107,111,105,108,103,119,103,111,101,96,112,94,103,111,109,110,115,109,108,116,105,104,105,96,102,96,104,107,102,99,100,99,109,100,113,101,104,109,109,101,110,118,92,88,116,99,109,94,110,103,108,114,101,104,98,102,107,111,109,100,103,116,100,97,107,109,106,103,97,91,111,114,100,110,105,108,100,91,102,94,113,102,103,98,98,71,108,106,95,111,105,89,89,111,113,93,108,106,125,100,108,110,95,95,102,114,86,107,98,105,114,91,107,96,80,113,114,102,117,113,96,103,101,107,106,99,98,114,108,66,101,103,113,108,99,113,111,102,103,111,109,98,101,112,105,103,106,98,104,108,98,95,96,109,103,115,113,109,114,105,100,98,104,97,101,121,108,115,117,106,96,98,111,101,111,110,111,101,114,97,94,110,105,102,109,109,109,85,99,90,105,112,111,103,108,94,124,112,117,96,94,106,104,103,112,109,104,106,97,113,94,106,102,89,100,102,100,111,106,115,92,102,105,100,98,93,109,102,112,109,110,110,97,109,103,112,95,105,108,98,91,104,113,100,100,104,115,93,101,101,115,101,99,98,108,112,100,102,103,104,116,102,96,139,113,102,106,94,96,95,108,102,104,110,119,104,115,120,97,108,104,109,88,99,101,105,105,106,117,105,117,103,108,105,105,112,95,107,105,114,90,98,109,107,125,93,103,100,95,103,94,100,99,113,101,95,100,109,94,104,105,113,102,103,94,99,113,101,107,112,98,92,115,92,107,107,103,93,109,103,103,106,107,96,98,96,102,99,108,100,106,104,95,114,102,100,115,100,107,105,98,108,91,113,107,92,84,134,110,107,103,102,111,104,111,98,112,103,100,100,112,95,84,113,100,109,96,108,103,99,105,109,106,111,100,99,104,99,108,107,116,111,95,97,109,98,108,102,100,103,106,117,94,102,106,108,105,112,100,115,115,102,99,95,100,102,108,107,106,86,87,116,113,92,113,107,111,94,97,90,116,93,111,101,100,114,111,95,105,102,84,109,119,109,108,100,105,82,112,102,108,99,99,112,99,106,102,111,101,96,87,108,107,98,112,106,107,111,113,113,112,102,102,99,104,103,95,99,107,113,103,110,108,102,108,109,102,95,101,101,108,102,96,113,112,86,92,106,121,101,92,100,113,95,104,100,104,99,98,89,106,96,95,110,99,117,107,101,93,101,112,115,119,112,115,117,93,128,99,119,107,107,91,101,103,103,107,113,98,99,106,90,115,105,108,98,104,113,94,114,92,100,103,104,108,98,108,101,102,107,92,123,100,111,117,105,113,108,104,103,101,102,94,109,92,104,121,87,104,106,96,104,96,97,96,103,97,114,109,104,102,121,101,87,98,99,110,109,111,99,109,112,98,118,98,105,102,94,88,95,98,83,100,88,100,105,103,108,106,119,98,106,104,96,119,96,99,102,109,91,107,107,102,98,104,108,113,114,111,105,109,103,103,95,101,119,99,112,102,103,111,108,94,103,100,102,107,97,105,105,115,102,102,95,121,113,105,108,108,98,108,100,103,115,106,108,111,97,104,109,111,98,113,94,102,113,105,106,107,84,102,103,102,98,85,104,102,111,98,106,105,105,102,114,110,98,109,96,91,116,91,110,100,116,121,107,98,101,110,112,118,107,102,116,101,99,107,108,93,103,102,101,105,99,103,106,103,101,108,95,102,112,105,107,97,95,96,94,117,110,131,97,108,110,110,117,132,103,103,104,104,105,92,104,95,128,102,108,130,105,106,87,109,93,102,110,93,105,95,107,110,102,102,87,95,113,96,102,94,99,107,100,101,103,113,108,105,106,84,113,106,104,111,102,106,100,89,99,98,101,110,84,106,101,108,110,101,104,103,102,106,89,99,100,103,110,106,94,113,95,104,88,100,89,112,115,108,116,96,101,105,113,100,102,102,101,95,100,91,111,104,108,103,99,110,104,94,103,88,115,104,105,106,105,105,93,87,91,102,108,88,111,113,117,110,104,108,96,109,104,103,102,108,109,99,104,106,95,112,102,104,110,102,109,100,97,94,107,104,89,97,91,98,122,98,113,94,91,100,102,107,105,117,116,106,107,92,107,104,110,107,113,94,104,94,97,103,104,110,99,118,102,102,100,98,115,97,91,109,102,72,102,116,113,112,105,112,99, +593.54071,102,109,121,109,94,102,137,105,103,109,109,89,100,102,103,98,107,114,124,100,81,110,122,99,103,118,89,99,106,114,107,102,113,99,102,112,100,96,110,96,100,98,103,103,107,116,99,105,135,115,105,95,113,101,106,100,111,114,105,110,100,98,101,98,117,98,124,122,101,118,95,108,110,116,115,111,96,94,107,104,102,102,103,103,103,113,105,104,96,102,117,108,104,97,112,106,100,97,98,107,117,101,106,100,99,103,97,93,97,90,91,105,129,103,92,107,105,103,105,113,108,95,105,109,99,114,108,111,122,110,100,125,92,106,113,102,101,103,101,105,107,112,116,105,104,108,95,103,99,99,99,95,104,94,114,98,106,97,115,114,95,105,111,123,116,103,104,93,91,111,105,117,102,106,104,102,106,100,106,108,105,109,96,110,121,110,99,92,105,89,99,104,108,110,105,105,82,115,92,116,97,121,94,109,107,113,104,107,114,120,109,118,117,105,100,102,94,95,107,112,116,99,100,99,103,101,118,109,76,90,105,118,97,108,106,99,98,102,104,105,101,85,113,100,96,90,100,101,105,116,94,104,113,116,111,112,101,87,95,105,101,109,97,102,90,108,105,106,112,101,69,109,104,132,101,106,106,106,106,105,90,109,118,106,124,107,94,104,107,117,99,102,95,98,108,100,110,100,107,110,109,107,91,116,100,116,94,120,107,107,98,105,99,101,107,111,112,118,103,64,103,107,105,113,107,101,129,103,110,121,91,97,116,111,104,97,104,110,105,109,94,103,99,101,103,113,113,107,94,107,109,107,126,109,115,108,96,104,103,102,102,90,114,107,115,103,94,111,91,123,101,92,114,118,111,109,121,94,109,110,109,102,105,112,98,103,95,102,115,96,102,100,108,96,100,111,119,103,108,113,92,104,109,103,92,95,97,105,126,106,101,91,112,109,115,109,105,103,117,95,105,100,82,115,110,100,105,114,105,116,107,116,94,110,111,109,106,102,119,99,109,108,98,109,99,104,103,110,107,113,101,99,102,103,103,109,105,96,104,90,104,94,103,116,111,111,112,109,104,117,102,102,106,105,100,112,113,101,101,112,106,114,108,106,114,92,118,96,99,114,108,110,99,113,91,104,112,99,100,111,112,95,101,115,95,108,102,105,103,112,118,112,99,111,112,108,118,105,107,102,105,113,100,99,96,114,111,108,101,118,106,110,105,107,109,98,110,88,101,110,110,109,106,105,103,100,103,108,84,114,112,114,106,95,114,100,89,106,105,96,101,105,108,114,103,100,106,102,103,99,94,106,117,104,102,110,102,108,108,108,112,99,103,96,104,102,101,109,120,94,104,109,111,115,105,114,94,108,103,100,94,114,97,109,103,97,102,108,110,109,108,116,118,112,112,104,103,94,104,121,98,103,108,105,104,109,101,102,116,113,112,99,104,101,106,101,101,100,105,110,112,103,121,99,105,110,108,108,109,118,99,103,99,106,104,104,125,112,108,99,112,100,95,100,94,106,113,104,98,98,96,95,124,105,98,103,104,104,99,101,107,103,106,99,119,107,102,95,106,113,110,108,112,106,98,103,110,107,102,96,111,106,105,108,108,99,95,110,102,108,102,110,113,104,90,96,116,105,110,104,120,94,108,106,105,97,97,107,101,129,109,107,104,100,107,100,98,108,114,103,110,99,104,109,116,121,104,115,113,115,103,102,104,117,125,99,114,109,109,85,109,103,113,111,98,107,104,106,105,102,109,89,112,110,104,99,106,123,111,104,103,103,106,102,105,99,99,118,110,107,115,114,99,72,103,99,101,106,110,110,107,91,106,115,106,103,96,106,110,99,103,111,110,95,106,103,120,100,108,98,107,114,102,110,106,114,85,101,115,110,103,110,117,103,105,106,102,107,117,103,115,115,103,100,95,105,108,107,112,91,119,100,98,111,111,113,107,111,109,110,110,114,106,111,114,109,97,107,109,121,104,114,109,103,112,109,103,94,117,106,119,108,101,107,107,105,105,116,109,100,97,119,105,104,109,104,105,116,109,104,100,115,113,93,107,96,70,113,110,99,101,114,117,103,115,97,110,108,103,101,93,109,91,102,104,108,112,72,91,109,105,98,114,117,101,107,104,101,104,109,108,105,103,94,105,107,111,109,99,104,96,99,97,98,112,106,106,108,100,104,118,103,113,99,101,109,99,109,109,102,99,111,120,88,113,106,100,104,93,113,94,109,110,108,112,107,99,107,108,98,107,103,97,112,103,99,113,94,99,116,112,109,107,103,111,110,98,105,117,111,103,114,101,116,110,109,108,95,114,97,115,114,105,122,114,101,103,90,114,102,120,103,92,106,105,98,102,129,107,118,141,132,150,128,158,160,161,144,147,181,146,147,142,129,120,122,119,125,124,95,109,112,111,140,110,107,99,105,91,99,95,116,108,99,108,102,114,95,103,111,103,108,80,95,107,106,106,102,121,109,103,114,95,107,105,110,107,103,105,105,104,117,112,99,96,120,107,105,102,102,95,109,118,103,111,100,102,113,99,114,110,105,104,102,105,102,97,110,99,98,105,109,104,99,119,89,108,98,105,94,124,100,96,102,103,94,104,98,107,100,105,101,106,105,108,111,109,109,97,95,109,97,105,94,100,102,110,85,108,97,108,99,117,107,102,94,91,88,110,97,103,106,106,101,104,120,115,90,108,109,106,108,121,110,109,102,102,87,104,110,96,102,109,107,120,92,99,106,99,113,95,104,108,104,106,114,105,118,111,102,103,111,104,97,103,92,104,103,99,94,96,103,99,106,102,108,110,101,101,109,104,97,104,95,111,125,100,93,124,104,100,122,111,122,118,86,112,103,99,109,115,103,97,103,105,108,103,107,100,120,94,105,107,117,102,98,117,117,107,105,82,109,112,106,102,86,111,110,105,100,100,113,100,104,96,109,113,108,112,91,112,102,104,105,105,108,101,106,115,114,110,113,117,90,106,105,110,109,113,98,113,117,105,114,108,116,100,104,109,99,91,93,92,113,93,110,105,101,95,102,84,111,70,101,104,107,105,100,119,103,97,105,115,106,111,106,106,105,110,89,103,115,127,105,116,93,110,96,106,110,110,110,100,102,92,103,118,100,108,102,98,100,99,114,113,102,103,99,115,119,103,103,108,115,111,102,112,93,100,98,98,100,112,107,110,92,117,108,112,104,121,91,102,108,109,113,89,98,103,104,110,109,70,103,100,101,86,80,99,95,98,113,110,106,104,100,96,107,104,106,103,100,111,98,98,100,108,101,105,100,102,88,97,108,100,105,102,106,104,99,98,102,105,89,109,105,88,99,105,105,98,89,97,103,108,108,110,96,86,117,104,110,98,103,104,96,104,112,107,105,107,101,106,104,102,103,100,103,109,112,94,85,112,94,79,100,121,109,96,106,87,91,102,102,99,108,106,112,108,109,120,107,102,112,104,97,113,116,105,98,99,118,104,96,105,96,99,110,112,99,114,123,112,116,109,103,113,102,103,106,113,100,106,100,111,109,106,113,100,104,101,107,103,104,111,104,95,114,107,110,106,93,102,109,107,124,94,94,109,94,91,124,114,96,104,85,107,101,105,99,88,105,101,107,80,106,104,99,101,94,112,105,118,104,97,102,98,101,109,119,121,95,97,113,105,108,96,107,106,98,106,107,102,107,103,96,91,102,107,114,106,102,106,103,104,90,106,100,94,95,110,108,97,101,102,100,111,99,101,102,132,99,93,103,94,106,110,110,107,101,95,107,100,98,127,102,94,104,99,100,104,83,93,102,105,107,96,91,104,100,103,105,103,113,86,114,97,107,103,114,72,106,109,96,94,94,106,96,104,86,103,101,100,107,114,97,111,107,115,102,97,102,103,98,113,101,112,108,96,100,101,101,106,98,92,101,116,98,104,112,102,102,100,111,104,102,112,102,105,111,94,103,94,106,101,119,105,96,107,96,106,111,103,104,106,106,117,101,109,110,109,110,121,113,108,106,110,99,94,107,120,107,102,110,106,96,104,101,98,99,115,102,116,102,114,102,109,120,116,90,95,94,110,103,91,113,116,121,99,120,102,110,103,109,102,108,102,114,97,112,112,109,114,99,94,107,105,97,109,104,108,106,109,116,109,112,102,111,114,96,98,112,90,92,102,103,97,100,91,89,108,117,106,120,103,96,105,101,105,99,103,106,98,119,110,105,101,104,102,105,107,113,96,102,91,104,100,108,101,100,99,102,103,101,104,98,104,99,104,113,114,102,111,107,117,92,94,108,94,109,86,98,89,100,96,96,99,97,93,116,92,111,112,95,94,104,109,108,116,96,104,106,105,109,119,105,122,97,109,105,109,107,115,96,104,109,102,102,102,98,100,97,105,113,105,104,115,114,102,109,75,106,105,107,112,105,108,96,100,97,101,102,112,110,109,104,100,99,113,94,108,105,95,95,97,103,95,101,107,101,105,102,107,109,103,107,99,99,108,109,87,113,100,105,114,108,103,106,108,96,96,89,104,106,112,105,106,92,101,102,90,97,105,93,77,106,98,103,100,96,101,102,98,107,97,120,98,98,93,97,100,96,109,105,105,109,103,103,111,94,87,112,106,102,100,101,107,111,73,110,101,103,113,95,110,106,107,111,108,96,83,97,96,100,97,99,106,99,89,105,102,99,97,102,95,100,124,100,79,101,98,92,104,111,100,106,104,113,103,101,103,90,108,102,95,95,103,91,97,106,110,98,95,113,69,86,102,94,94,95,100,99,96,116,107,100,109,65,101,101,74,102,108,101,98,112,103,106,67,99,109,94,80,91,107,99,101,116,109,111,105,116,96,102,88,97,99,102,101,105,118,113,101,88,103,105,110,100,103,97,119,107,117,106,110,103,107,108,103,89, +593.6817,119,119,92,94,116,116,98,111,101,100,99,107,98,100,88,103,109,101,104,102,107,100,105,90,107,103,98,103,107,103,111,93,106,132,106,108,107,93,89,102,87,95,99,83,106,105,108,104,95,99,100,96,111,98,96,95,83,104,97,93,98,104,100,92,100,104,104,113,109,106,110,103,87,114,100,100,101,102,117,86,101,109,97,100,106,111,117,111,105,96,85,106,108,103,98,107,96,92,104,97,124,109,90,100,77,107,99,95,102,107,108,95,119,103,95,103,96,106,129,99,97,97,110,112,100,108,101,94,108,114,102,107,103,105,104,104,67,105,102,102,115,108,113,103,105,96,105,103,98,103,100,100,104,91,104,97,92,93,95,103,101,98,113,108,104,109,113,103,80,101,111,110,103,104,101,95,102,96,98,121,119,116,101,98,110,98,93,86,103,104,103,90,98,86,108,99,100,99,103,121,101,116,96,108,89,91,109,101,98,114,96,110,101,105,95,97,93,109,104,96,106,77,110,104,100,95,110,116,99,100,101,98,108,124,90,101,109,96,84,91,113,113,98,99,102,108,105,118,117,103,98,104,119,116,100,113,93,106,92,107,114,99,101,124,99,108,113,106,104,102,95,108,106,117,104,117,119,104,103,96,97,107,108,95,107,98,97,108,107,105,105,99,126,78,105,105,109,105,117,99,100,100,98,106,86,106,98,111,99,104,102,116,138,101,102,109,86,123,102,96,113,101,115,104,105,106,108,109,114,121,91,136,110,111,112,97,109,106,120,90,113,109,110,105,98,115,105,108,110,103,113,101,100,107,99,108,99,106,115,110,95,101,102,101,99,105,92,99,105,108,123,106,97,98,104,98,110,103,108,114,109,94,106,93,110,76,98,102,105,101,108,79,100,107,106,92,106,106,108,99,114,118,106,103,102,111,113,100,106,116,91,94,108,103,98,91,104,90,99,105,119,99,108,110,96,98,99,89,110,104,106,93,109,117,102,109,110,110,105,105,113,103,102,95,91,110,106,86,109,115,93,117,102,100,130,73,102,104,105,106,112,98,106,117,104,111,107,99,99,101,106,100,104,111,104,109,96,106,98,108,101,99,112,98,102,89,118,104,104,104,117,105,95,110,95,66,107,99,104,107,106,103,102,116,95,93,110,104,113,103,101,101,112,102,116,106,99,88,101,101,122,106,104,85,106,95,120,107,83,100,102,99,110,109,100,108,107,115,104,107,74,115,77,113,114,103,109,106,109,109,104,119,108,107,116,92,110,106,103,104,112,104,96,117,108,100,98,105,106,106,100,97,100,99,103,91,105,131,102,101,106,101,113,100,108,106,103,108,101,100,105,96,93,91,112,107,104,122,98,107,101,100,117,102,111,102,109,81,100,105,113,97,101,107,107,97,106,94,98,100,104,99,105,92,106,118,114,102,89,101,100,122,106,96,102,100,74,109,109,89,108,99,95,114,98,108,99,101,98,111,104,114,104,94,113,98,118,114,116,115,97,100,103,107,101,112,103,104,100,91,112,101,108,109,93,105,105,103,121,107,104,107,108,99,104,109,95,106,105,100,103,110,107,113,102,103,107,117,101,92,112,100,109,103,106,117,115,110,111,107,103,97,103,112,109,96,101,103,107,99,120,109,91,98,106,102,109,106,117,112,104,103,111,95,103,104,95,103,114,105,104,109,101,82,92,117,111,115,107,110,113,102,106,107,102,99,113,109,104,107,115,110,95,102,108,110,91,70,109,96,102,108,114,99,105,106,106,99,110,117,97,111,108,111,92,102,110,103,90,106,112,106,99,103,112,89,95,124,108,111,109,92,83,97,102,117,104,111,101,117,117,115,98,119,105,99,113,117,106,95,88,117,104,110,108,107,113,107,104,101,112,95,99,80,100,96,105,90,97,105,115,104,104,107,112,95,94,108,113,113,107,100,98,106,105,113,94,92,105,100,112,113,103,106,91,96,102,105,95,102,99,111,114,96,109,107,121,111,119,97,83,107,116,107,100,99,97,128,106,97,116,105,103,112,103,98,100,103,87,112,90,103,104,103,96,99,96,102,107,110,110,103,95,82,95,99,101,106,100,109,111,108,107,104,105,96,105,98,117,104,71,115,113,117,103,115,94,103,104,106,102,95,108,107,91,110,115,101,103,105,74,112,98,112,109,118,107,111,99,109,108,107,103,100,113,100,93,113,100,117,118,96,105,121,102,104,110,101,108,103,101,111,106,95,98,110,94,110,108,103,95,104,109,106,101,106,91,93,109,89,114,109,119,91,110,103,113,104,78,113,95,96,102,104,102,102,111,102,109,99,104,108,90,118,109,110,103,102,105,112,95,112,107,124,109,109,117,113,116,127,149,148,136,160,118,173,142,148,135,128,138,139,137,134,120,123,127,106,116,104,104,112,99,104,108,87,109,109,105,101,106,106,115,115,100,126,97,113,101,92,98,112,100,110,105,107,104,92,99,105,107,109,100,99,99,109,109,98,109,105,103,106,113,110,96,103,98,110,118,95,101,99,101,111,100,80,104,96,99,111,121,102,106,114,90,108,115,100,112,103,94,115,117,90,112,108,102,101,93,114,108,99,105,110,104,90,111,102,103,102,99,111,108,110,106,102,106,108,101,111,104,95,98,97,103,123,98,103,107,103,100,102,108,99,104,95,103,109,92,103,105,101,102,102,112,93,107,96,96,103,104,103,103,113,98,107,103,76,98,112,113,112,109,105,101,103,91,101,107,109,91,113,103,108,115,101,109,102,116,101,104,97,115,111,106,95,101,113,110,103,102,103,92,99,99,90,116,114,110,97,119,99,103,109,115,100,113,110,104,123,113,107,103,98,111,111,107,100,99,113,108,96,100,110,102,110,137,108,103,96,112,108,94,115,105,103,116,105,107,98,114,114,108,99,95,103,95,103,115,84,92,117,104,106,110,120,98,103,115,105,98,110,98,102,102,100,108,100,103,118,105,97,115,103,104,106,111,103,107,102,116,106,106,115,98,104,109,110,103,92,106,108,106,109,112,99,101,104,101,107,96,120,91,108,109,100,92,94,104,103,92,115,112,99,97,102,111,104,100,97,106,113,105,103,104,97,94,117,96,111,104,72,94,108,116,99,111,104,110,110,97,107,95,113,106,95,105,96,136,111,115,88,108,99,115,101,98,109,108,72,108,107,113,106,101,104,108,106,94,120,104,117,107,105,103,111,100,117,93,109,113,115,89,103,111,103,98,98,114,103,95,104,117,106,112,106,92,103,112,71,92,104,113,111,103,111,103,103,113,98,109,94,114,108,101,111,106,100,106,79,102,106,101,100,101,106,103,97,95,99,70,103,108,99,110,112,97,105,104,103,117,103,108,103,113,103,98,105,106,106,98,104,100,98,106,131,115,110,101,112,105,100,115,106,101,113,116,93,110,102,101,95,102,98,109,111,107,101,113,108,115,98,98,110,100,98,96,102,95,111,106,107,94,103,103,94,98,102,109,105,108,108,96,97,105,117,100,104,104,98,109,95,109,73,102,99,108,101,104,113,91,101,103,109,97,109,99,107,103,97,102,93,98,103,91,101,120,103,112,116,101,100,108,107,101,111,104,111,92,106,95,103,102,102,111,101,102,100,105,108,82,105,105,106,112,83,101,92,106,107,109,100,98,107,102,102,105,113,102,98,115,102,116,121,113,87,95,110,107,90,102,92,97,106,108,108,115,113,101,100,106,103,105,101,110,116,97,106,110,108,104,102,105,95,92,110,99,110,100,109,90,95,94,92,103,94,93,104,116,103,94,108,107,100,117,113,107,119,98,103,102,99,98,106,93,109,95,98,99,101,68,110,96,102,109,103,117,113,105,112,103,103,112,105,109,105,94,111,96,79,92,103,113,77,102,109,106,103,100,108,100,106,103,103,104,107,110,109,108,96,109,93,92,105,113,100,106,112,104,101,105,121,94,123,95,97,101,104,102,114,108,102,108,101,115,106,104,104,105,101,106,110,106,112,109,92,112,103,99,117,107,106,112,113,107,107,113,110,91,102,116,102,98,98,109,102,103,105,106,99,98,101,101,101,101,107,103,98,103,91,105,111,106,108,107,108,104,103,113,100,103,102,123,107,112,107,109,100,93,93,105,95,106,104,111,107,109,107,102,98,98,101,94,105,109,100,95,104,113,105,108,112,109,109,94,105,95,113,108,103,99,96,100,108,121,94,108,121,96,94,105,117,93,104,101,98,109,105,94,109,101,110,97,113,96,105,108,105,100,102,111,100,105,109,97,104,105,92,96,107,98,110,104,105,101,94,95,90,107,108,101,105,108,114,106,99,109,104,98,101,105,94,99,94,103,87,101,97,98,114,89,103,103,98,93,98,108,107,96,97,107,107,120,110,93,95,106,101,107,106,104,85,114,103,93,119,104,96,102,111,96,107,93,99,91,92,100,108,110,100,91,110,101,103,112,92,106,99,111,101,96,97,90,104,91,102,105,105,106,105,100,96,107,116,98,101,95,107,110,73,104,95,95,96,99,100,106,115,104,105,110,109,100,105,99,102,105,111,98,112,100,108,103,94,110,99,104,94,91,101,90,95,99,121,105,98,103,95,95,104,105,95,100,107,103,108,102,112,101,101,105,81,99,98,101,106,115,115,109,97,103,108,113,111,94,113,101,94,101,101,84,95,112,94,104,94,112,98,95,106,105,102,108,105,109,103,97,105,95,102,94,96,96,93,93,101,104,94,103,90,95,96,104,102,98,100,92,114,118,103,106,109,112,106,102,101,91,99,107,101,107,104,105,107,103,105,98,104,94,85,117,108,93,101,105,100,113,113,99,98,93,96,102,101,98,112,107,105,105,94,96,104,129,102,88,102,109,88,89,108,105,103,95,104,106,91,109,99,95,107, +593.82275,105,112,111,94,104,109,109,81,92,85,93,105,92,99,99,97,116,112,110,105,95,98,101,99,99,76,105,97,110,99,110,100,107,107,100,104,110,106,100,114,98,102,96,93,93,116,98,105,90,60,101,107,104,100,100,109,98,99,96,99,90,107,99,102,113,104,104,96,84,101,96,110,104,102,104,117,96,110,98,103,109,99,108,101,106,97,112,112,94,98,92,117,99,115,89,94,105,110,105,98,113,100,92,106,97,100,100,110,96,99,113,111,105,102,101,114,100,88,107,114,103,114,97,106,98,102,103,104,116,110,100,98,91,114,105,113,96,108,109,94,94,87,100,107,94,95,107,108,105,108,96,100,103,98,100,99,100,108,118,102,94,93,109,96,103,118,95,101,98,110,108,107,103,100,127,100,100,90,107,85,99,99,118,113,107,110,96,108,91,102,101,104,117,103,93,101,117,96,122,108,103,103,97,113,116,115,110,101,104,102,118,101,100,103,103,106,101,118,101,99,111,113,96,108,89,99,102,91,112,103,89,102,101,111,107,118,115,110,102,101,109,116,108,99,114,103,103,108,108,111,103,106,93,100,112,97,99,106,90,99,91,102,96,106,105,104,106,97,114,107,114,108,109,100,115,106,102,112,101,91,98,98,112,109,111,110,108,100,107,107,103,110,111,107,97,97,112,105,110,113,103,80,112,93,93,108,105,111,95,101,111,113,103,103,119,103,116,108,116,99,107,119,95,115,105,113,96,97,112,109,109,117,104,103,115,94,102,96,105,104,103,98,110,102,107,106,104,107,102,108,102,104,106,106,102,99,114,117,99,108,105,103,100,98,107,99,104,106,102,95,108,102,108,102,101,102,102,95,101,102,92,105,115,103,87,97,88,104,106,87,109,97,111,110,96,103,97,97,90,107,102,103,98,106,104,101,110,95,89,112,94,110,103,107,98,95,83,98,107,100,107,100,115,111,95,102,92,95,115,108,97,96,106,97,107,103,97,110,104,102,98,103,106,106,102,99,96,100,94,100,100,100,110,113,98,102,100,104,102,102,98,120,96,105,138,103,101,109,96,103,114,114,96,106,113,98,104,107,95,102,98,113,106,103,105,109,113,112,105,103,107,114,110,85,97,106,112,91,103,95,116,105,98,92,108,105,96,101,100,97,104,107,102,104,111,102,102,99,97,108,110,107,96,113,116,100,107,105,101,102,105,109,103,92,105,113,113,113,100,99,98,115,106,89,99,106,109,100,106,98,106,100,104,115,97,94,89,109,110,102,98,100,105,102,91,87,91,109,117,93,108,102,95,104,108,105,97,87,108,110,117,99,106,100,106,102,102,99,106,95,102,111,116,99,107,112,98,106,100,101,90,94,108,91,98,109,98,99,109,110,99,104,108,95,108,102,105,99,106,106,105,100,100,106,108,100,91,106,107,106,97,94,99,98,108,105,104,99,83,102,106,103,104,98,109,76,99,94,110,104,103,117,105,99,89,115,104,109,87,111,100,87,103,93,92,106,110,100,105,98,104,99,91,102,103,108,85,118,113,104,102,112,110,106,102,119,101,115,112,99,96,108,106,102,116,98,105,94,112,100,98,98,92,93,99,117,104,101,101,105,98,107,118,104,98,112,104,109,103,105,109,106,101,99,105,100,104,99,115,108,104,98,98,106,111,103,110,105,105,92,116,92,108,108,113,105,92,103,107,109,107,92,98,101,106,102,113,113,112,101,105,112,95,106,99,107,102,105,96,105,113,98,105,102,107,100,98,88,105,109,105,103,106,116,85,99,110,106,92,103,88,115,115,117,100,103,108,101,106,107,100,96,99,90,108,90,107,102,107,104,118,107,107,92,108,114,109,106,121,98,103,101,107,112,107,107,93,109,95,97,99,97,110,95,117,106,109,109,110,103,116,98,100,105,128,96,110,102,103,101,109,95,107,97,98,99,107,100,107,124,100,110,113,109,101,111,96,96,108,99,107,110,107,99,100,104,104,98,108,102,110,93,105,94,96,107,105,116,101,111,123,113,96,108,105,100,112,106,101,104,85,106,108,110,100,97,104,103,110,101,97,68,110,92,102,99,114,98,94,103,105,95,113,111,95,113,98,97,106,106,104,107,104,116,101,106,102,105,118,106,109,115,100,97,92,108,107,98,109,69,103,102,100,103,106,100,105,107,92,94,115,94,119,96,114,99,93,106,104,86,101,117,104,94,102,81,114,106,94,101,90,100,88,87,103,106,104,101,104,102,104,98,115,110,103,109,97,107,85,112,93,110,94,96,97,105,95,103,92,100,99,119,103,112,109,107,111,106,116,114,106,116,99,104,99,107,106,91,113,113,105,110,105,101,106,111,121,124,127,138,124,145,149,151,142,173,143,145,129,134,154,137,132,115,127,114,144,108,116,106,101,111,99,107,99,106,102,87,100,103,109,108,111,101,103,99,113,100,98,96,102,110,119,96,109,115,111,103,107,108,102,107,109,96,103,112,101,105,109,112,97,108,104,93,107,103,101,98,99,101,123,111,114,101,107,106,102,106,98,109,109,100,109,114,108,109,109,98,98,106,93,122,110,100,99,111,113,108,110,88,116,96,104,117,106,106,101,107,117,95,103,106,105,94,102,105,110,104,108,109,110,110,106,96,103,99,113,99,113,110,92,106,99,98,103,92,107,116,111,106,99,104,113,110,110,113,98,115,106,105,103,107,111,109,96,108,109,100,95,78,110,108,102,142,99,117,107,100,102,100,113,104,109,113,102,120,120,102,107,101,87,108,95,116,99,114,98,105,108,109,87,105,104,99,111,108,114,100,92,107,112,113,113,94,98,110,112,91,99,104,106,90,110,97,111,104,96,112,107,108,102,103,105,105,109,92,116,113,109,98,101,102,106,122,95,100,100,111,111,71,100,125,115,104,92,105,109,107,105,107,99,106,108,107,111,135,95,107,128,101,116,104,105,102,112,104,105,98,102,109,105,112,111,121,103,100,107,97,107,104,110,113,99,103,112,93,113,110,103,99,108,100,109,106,107,115,128,100,104,102,111,127,112,108,102,110,103,113,102,108,104,99,102,117,103,111,94,106,98,116,120,104,122,101,108,101,94,103,103,97,103,110,114,113,107,107,115,104,113,112,106,107,103,98,105,113,106,99,102,107,97,88,91,100,114,112,102,101,98,106,106,110,106,98,107,113,118,106,104,102,106,108,97,102,111,107,111,102,90,100,113,113,99,101,95,108,108,95,115,113,106,117,109,110,120,93,113,113,92,75,111,91,116,95,99,113,105,91,108,109,107,98,113,106,102,96,125,116,103,98,103,96,79,95,108,106,103,118,103,107,114,109,108,103,99,109,105,114,126,104,97,106,101,107,111,111,111,116,106,102,100,99,101,110,97,100,107,106,102,109,113,91,114,111,101,102,98,116,93,99,116,107,114,94,101,116,102,114,102,94,106,108,100,104,105,98,105,103,100,104,66,100,100,100,95,104,104,109,113,104,107,104,102,109,108,104,96,105,107,104,102,103,104,104,96,107,102,98,100,105,99,103,119,107,109,104,91,101,94,116,120,105,105,106,110,118,101,104,111,110,117,104,99,105,110,98,105,112,106,105,97,116,106,108,72,101,106,104,106,66,100,104,104,92,103,111,106,106,108,108,100,103,100,107,106,117,99,114,108,110,109,114,112,106,95,68,104,104,101,103,101,98,102,96,115,99,99,104,116,101,107,104,114,97,112,103,112,100,108,109,97,103,104,100,107,117,104,92,110,106,91,100,100,104,108,101,102,103,110,105,97,116,100,101,113,99,113,107,100,108,113,100,102,109,120,110,115,108,95,114,108,118,116,115,108,103,106,111,104,106,113,111,106,105,105,109,102,96,107,110,97,107,112,102,104,85,116,102,101,101,108,113,113,109,105,115,110,99,124,110,106,102,103,106,104,111,113,123,109,108,141,103,95,115,102,98,110,107,102,109,111,111,103,112,99,102,97,103,104,104,105,109,105,112,114,101,108,107,113,109,120,91,112,107,123,101,108,105,105,102,111,108,101,108,110,106,109,100,102,92,106,104,105,98,103,102,104,107,113,101,106,109,96,115,107,114,112,119,111,117,105,105,99,101,106,111,106,111,104,98,102,100,96,104,107,122,102,106,115,102,94,94,101,99,116,111,104,108,108,98,113,105,115,109,102,104,95,111,103,120,109,114,117,105,117,104,99,105,95,123,104,91,103,118,104,102,106,109,110,101,102,98,131,99,104,102,105,105,100,98,106,107,107,107,108,120,110,108,97,102,95,96,113,109,104,113,103,107,101,106,106,66,106,109,118,109,102,111,95,110,117,93,100,123,116,107,115,120,112,106,114,107,117,105,108,108,113,106,127,112,109,99,116,108,104,109,104,99,109,88,95,91,106,103,87,101,110,99,106,104,103,104,97,100,105,97,105,92,101,108,108,100,100,100,109,110,111,84,103,99,87,102,116,110,109,109,102,110,94,101,93,113,103,109,118,108,113,103,102,103,102,98,113,93,101,111,105,109,104,95,98,107,102,102,100,99,109,110,103,90,87,98,111,97,100,121,98,106,105,101,108,99,107,107,104,111,109,99,98,111,95,111,101,111,113,101,103,103,102,103,110,90,123,127,110,110,112,107,103,106,102,106,109,110,112,96,115,103,108,101,104,102,95,110,94,107,105,105,102,112,102,111,103,102,115,106,116,109,104,98,102,100,100,109,99,106,108,100,111,109,110,115,103,104,102,121,99,100,95,107,92,111,107,121,100,99,112,106,111,112,109,80,95,98,104,116,106,96,125,95,110,82,101,100,106,109,109,98,96,111,95,105,113,112,94,92,97,96,102,100,108,108,110,111,99,109,91,113,105,100,125,99,113,91,101,115,113,113,113,106, +593.96375,100,98,98,102,97,87,107,121,117,94,99,97,98,98,106,100,108,112,99,103,112,127,112,99,96,104,103,97,107,109,80,97,103,94,134,107,120,112,81,110,103,96,108,87,99,107,109,102,111,89,98,102,104,102,117,112,99,90,108,95,118,114,95,91,106,105,99,113,109,93,106,104,112,135,103,106,101,99,109,105,105,119,109,118,101,100,108,109,96,110,109,109,98,89,103,108,107,101,98,105,111,101,114,115,108,108,107,99,102,104,106,105,121,99,100,103,97,109,108,96,99,115,125,109,109,109,115,98,103,110,114,99,92,101,110,111,103,101,109,102,104,114,97,93,100,106,111,92,105,99,97,101,106,96,99,108,99,104,136,100,96,99,107,109,102,112,113,92,109,101,105,101,100,111,108,91,114,113,97,112,104,122,109,107,95,90,88,97,97,105,97,106,113,99,102,99,98,99,103,108,120,110,94,106,104,105,97,100,114,110,89,113,96,105,108,101,95,111,98,110,115,99,106,107,94,108,113,106,108,105,85,105,110,99,121,121,105,121,91,108,100,103,98,113,91,102,100,114,107,133,103,105,101,110,103,112,103,98,91,104,111,108,108,95,97,107,103,95,107,122,107,103,101,100,111,105,101,105,100,98,104,100,105,108,112,98,104,107,120,116,101,87,97,101,107,121,112,100,100,87,98,79,95,123,101,114,95,129,105,113,105,110,99,108,99,104,122,96,94,114,88,120,104,106,107,86,95,92,114,109,95,98,118,100,102,103,108,108,102,102,80,97,94,93,99,103,96,111,102,108,101,105,109,100,108,110,104,113,93,114,112,96,102,97,100,91,102,111,97,99,111,98,108,110,106,90,106,112,106,117,109,111,109,79,109,102,94,110,109,101,106,108,98,103,106,113,107,107,101,100,94,105,106,108,90,100,104,94,104,95,87,94,114,120,102,96,102,98,100,112,113,96,102,111,102,102,109,99,103,105,103,100,109,116,103,87,97,114,109,104,101,105,103,108,116,97,106,102,108,117,104,113,110,114,102,120,122,101,112,107,113,98,98,108,99,116,109,100,116,96,122,103,99,87,98,104,101,101,110,107,97,117,113,91,107,103,99,101,83,102,104,108,103,95,100,102,100,100,106,108,122,109,98,99,104,104,102,106,109,100,100,104,93,114,107,111,107,106,107,101,111,109,109,96,107,112,114,109,101,107,106,112,107,105,114,115,109,92,109,100,106,104,112,108,117,108,116,126,113,107,106,104,113,104,99,109,106,105,108,103,101,111,70,108,90,101,103,103,87,109,91,107,106,95,115,108,108,109,106,109,111,95,100,107,118,91,104,90,108,102,112,111,103,76,107,119,109,102,82,117,101,105,108,91,111,103,100,100,98,101,91,73,113,104,111,109,107,103,110,101,98,95,88,109,107,113,95,106,87,99,102,106,105,109,103,106,90,95,112,111,117,97,115,107,103,99,100,108,98,108,89,111,106,107,100,123,106,118,98,112,113,110,97,104,100,93,104,101,114,89,107,120,110,88,87,117,100,108,108,100,105,104,105,96,107,103,100,107,125,110,104,98,92,112,102,99,109,120,100,97,101,109,109,93,115,104,100,107,105,104,99,99,104,101,101,107,104,105,104,112,102,109,96,103,101,98,103,105,95,115,99,105,101,99,92,106,112,101,111,101,103,108,101,110,98,124,112,108,100,111,111,110,98,104,102,103,91,109,95,108,112,82,101,102,106,94,104,99,105,110,107,93,113,103,95,110,106,124,101,115,111,105,101,105,110,103,102,101,98,111,105,115,100,100,89,107,100,110,101,105,100,113,115,92,119,109,114,111,99,109,113,100,115,99,109,107,107,113,103,107,106,123,107,83,99,109,117,101,98,104,121,108,108,110,81,99,91,110,112,113,109,107,110,108,101,104,114,95,109,100,119,94,121,105,97,96,99,101,112,105,111,104,109,97,100,102,98,117,107,99,101,103,97,98,116,113,108,104,100,104,107,97,111,100,113,105,95,113,103,103,105,104,107,117,113,94,105,103,105,109,107,111,109,115,91,100,93,109,91,109,107,109,116,110,99,105,104,118,63,99,105,82,101,106,100,102,117,109,112,95,102,124,103,109,101,103,86,105,115,110,105,97,107,101,92,114,113,108,104,96,113,109,106,107,111,123,108,112,91,100,102,104,105,95,113,98,100,96,102,101,99,94,108,76,106,110,105,117,97,112,97,95,106,97,107,106,102,113,99,112,103,91,92,114,103,95,104,104,93,107,109,108,103,104,103,112,107,102,130,112,108,94,113,109,101,111,125,118,100,107,109,111,107,110,107,107,104,103,99,103,121,101,117,102,105,112,108,124,135,113,125,146,138,150,151,145,174,135,125,142,126,136,157,125,135,128,124,127,109,109,101,115,120,126,109,107,96,116,119,99,101,118,99,104,110,86,96,117,84,109,98,104,106,98,93,108,95,112,101,100,108,113,98,96,73,105,98,101,109,92,107,109,105,107,87,109,103,103,119,115,112,119,104,106,98,100,113,113,91,135,109,107,109,99,100,106,102,118,103,109,106,110,112,105,108,107,109,100,96,103,107,96,93,72,71,98,104,107,104,113,112,102,94,100,103,103,106,96,101,124,102,99,99,107,108,109,102,103,96,97,110,110,98,104,114,100,104,104,110,108,109,112,102,99,108,114,115,94,98,101,107,107,108,125,102,105,97,104,94,83,105,115,112,101,109,108,111,105,96,108,92,102,100,106,94,103,105,110,94,89,109,104,102,93,99,99,105,100,110,109,117,104,117,104,100,96,107,97,102,107,97,104,116,109,105,94,110,104,109,109,105,100,105,106,108,90,105,118,101,108,99,112,94,112,109,107,103,102,100,101,106,103,98,110,107,97,107,120,105,109,108,106,98,92,100,111,97,108,106,97,98,125,94,88,111,107,106,115,102,108,114,118,99,102,121,120,103,110,109,98,108,96,108,97,109,111,106,107,101,110,103,90,114,102,110,106,101,103,85,106,92,96,106,104,90,103,119,106,112,89,105,101,106,102,104,102,85,109,117,113,78,110,100,108,99,113,117,90,109,107,114,116,101,105,101,100,106,97,87,101,107,115,114,114,98,97,93,88,96,91,103,101,104,113,103,103,108,116,102,100,105,101,99,108,102,119,102,93,123,99,102,106,109,102,99,98,102,98,98,104,106,112,93,92,96,101,98,104,98,109,102,102,95,112,102,109,98,109,111,96,114,98,113,95,103,102,108,116,115,105,93,102,108,102,111,100,100,105,104,101,117,102,97,106,93,100,98,101,125,98,106,105,120,121,96,106,85,108,97,93,96,93,95,85,91,106,112,101,113,105,108,100,103,107,82,104,94,104,106,98,106,103,94,106,102,108,106,106,106,95,97,106,105,111,99,110,96,100,113,110,107,104,98,109,113,97,98,119,104,100,106,99,87,109,102,112,102,109,112,97,106,104,102,92,107,98,102,90,105,99,99,107,98,100,96,106,105,105,102,103,104,112,97,101,117,92,103,113,105,109,107,99,119,113,116,100,93,101,85,104,110,99,113,116,102,103,107,117,103,102,107,109,117,105,100,100,114,105,113,103,92,113,103,98,112,89,118,106,104,107,93,108,100,102,95,99,116,109,106,109,98,102,98,104,114,102,104,104,98,102,105,132,107,105,104,87,99,103,100,109,91,124,112,99,106,98,105,106,88,102,95,104,104,100,103,103,104,95,114,94,113,97,107,104,106,103,104,94,105,104,108,99,113,104,109,101,102,95,108,115,110,102,108,98,108,109,100,107,114,108,106,112,98,105,108,104,92,103,107,115,97,102,102,98,97,112,109,113,105,106,108,100,103,104,113,105,114,101,102,99,102,120,104,93,121,112,111,105,102,106,111,96,107,105,106,89,102,104,107,94,119,107,101,100,93,102,94,100,106,100,96,105,102,103,92,108,108,107,106,100,102,109,118,104,91,103,98,68,103,105,101,100,107,100,116,110,99,104,101,97,98,103,104,106,100,123,91,96,110,107,118,95,99,103,96,102,100,104,106,100,111,92,95,101,91,120,109,109,107,103,104,120,107,102,105,109,109,119,102,105,107,114,109,117,103,112,116,102,99,107,107,80,107,109,96,128,100,100,109,110,109,100,101,107,101,102,99,109,116,111,121,111,108,97,110,108,100,109,95,105,95,98,102,99,101,106,106,109,94,102,96,70,107,102,101,98,101,93,117,105,100,111,115,116,105,120,99,108,102,103,90,91,105,93,96,110,104,109,98,105,101,98,95,109,100,105,73,97,101,121,92,101,111,103,102,101,119,87,122,116,78,102,111,93,100,103,111,92,102,107,99,109,104,95,104,106,114,109,101,107,96,112,112,110,107,103,102,105,97,103,103,99,112,101,103,116,111,109,111,105,109,105,122,107,100,109,94,95,111,105,103,102,92,105,107,110,103,104,104,112,106,92,95,109,116,94,105,89,102,96,98,94,107,103,95,101,103,105,106,106,102,97,104,105,101,110,100,109,114,93,94,109,105,112,112,99,112,93,101,107,95,114,100,108,98,101,107,94,91,103,94,99,92,109,111,90,96,104,115,94,89,96,94,100,82,103,102,106,123,105,92,105,100,105,100,102,109,98,120,100,100,123,120,98,106,102,112,109,107,104,100,99,103,93,91,99,111,117,93,99,108,109,110,112,93,93,99,100,104,102,110,109,109,107,108,92,121,106,100,98,111,106,106,95,102,98,101,102,111,112,113,102,114,102,98,116,99,97,115,105,97,107,108,94,93,97,91,110,83,106,102,107,98,100,93,103,109,110,97,98,107,106,93,104,91,118,97,107,97,101,102,110,111,102,105,98,108,108,103,100,119,88,107,102,114,99,117,101,101,86, +594.10474,113,114,79,120,93,86,102,105,104,92,105,97,95,94,92,107,110,95,107,106,108,114,113,128,105,94,105,97,105,105,109,100,96,97,105,104,97,99,103,102,127,102,112,109,90,112,92,75,113,109,103,102,89,117,101,82,103,106,120,111,105,95,109,98,97,106,101,103,100,97,101,114,96,106,103,107,98,136,117,110,98,102,99,119,102,106,93,100,80,99,103,132,107,112,101,90,106,104,99,98,100,94,114,96,109,92,102,92,116,113,105,103,112,101,100,107,92,95,116,103,86,101,128,114,107,103,93,105,107,97,117,107,100,109,106,101,97,93,101,101,103,97,95,109,110,112,101,101,98,99,101,94,108,117,101,102,104,100,98,96,103,113,104,100,101,112,98,101,112,91,93,103,117,98,102,102,107,97,98,92,94,96,115,111,94,111,105,86,101,99,100,95,113,104,109,101,106,117,100,106,103,110,99,105,99,99,87,100,106,95,93,97,97,99,105,105,103,103,107,101,113,107,103,95,115,110,103,115,101,106,107,108,97,104,89,101,102,109,112,100,111,86,107,109,82,99,104,107,110,103,117,105,103,114,101,106,106,105,97,112,95,99,99,109,99,105,97,109,103,107,106,99,104,93,105,95,93,99,106,94,100,109,110,102,108,86,96,105,107,114,102,102,109,102,111,107,109,113,103,110,91,104,117,133,101,113,117,129,100,114,107,106,100,102,111,118,108,118,104,99,108,96,97,92,101,100,102,90,117,106,98,94,91,100,101,109,104,104,97,103,99,109,99,96,103,104,109,90,114,103,91,101,102,97,112,97,117,103,97,105,109,103,103,93,85,95,98,108,98,107,112,99,81,99,108,102,109,97,112,78,112,100,89,103,104,101,99,92,113,94,105,104,110,96,105,96,101,118,108,99,106,105,112,99,107,96,94,105,111,95,96,101,108,88,104,101,104,108,97,96,91,105,102,93,105,93,110,98,101,97,104,105,102,100,100,95,108,114,104,109,103,92,110,94,92,99,99,92,118,109,99,102,105,109,104,85,101,101,103,97,93,104,116,100,111,111,108,106,102,72,99,103,109,92,98,91,99,119,103,114,98,111,114,97,103,108,98,116,102,105,103,118,92,98,96,105,103,95,105,99,115,101,94,103,101,120,97,134,98,106,106,103,105,101,100,112,99,102,89,98,108,100,85,97,112,106,99,110,99,105,104,109,106,105,107,101,103,98,100,102,98,115,106,112,111,95,113,105,113,102,110,106,95,104,100,108,108,105,108,109,96,96,111,103,96,95,97,110,106,109,91,97,119,108,108,110,101,93,104,102,107,88,108,98,104,90,122,116,108,103,102,104,105,108,115,112,105,97,97,105,104,105,126,106,104,90,97,106,102,92,103,103,119,94,104,85,99,102,102,129,111,105,116,104,102,107,99,103,98,109,103,103,100,113,82,105,103,96,102,93,104,104,114,84,110,99,107,92,117,112,86,109,107,108,102,104,107,103,111,95,105,103,120,99,89,116,117,102,105,99,97,102,109,90,107,107,91,100,101,140,115,97,127,101,109,104,103,102,109,100,104,96,98,115,98,103,105,99,98,90,114,99,107,105,100,106,108,105,93,106,99,108,105,106,96,104,100,99,110,118,112,110,105,102,96,102,110,87,115,102,106,102,111,106,100,108,109,99,100,102,119,112,102,105,102,116,96,107,114,109,104,101,100,101,105,104,112,111,115,107,116,108,108,108,100,118,91,108,98,99,112,96,106,111,96,102,112,107,102,113,108,99,107,103,104,100,99,110,100,117,105,92,87,95,104,118,105,110,102,104,106,112,104,104,101,106,106,106,112,123,104,105,99,100,101,103,100,114,99,106,114,109,121,70,96,114,111,117,100,110,111,107,106,97,98,113,108,106,114,98,97,105,99,96,104,114,99,95,114,100,106,103,102,102,96,96,123,109,101,93,117,106,96,111,102,94,105,113,107,107,98,98,101,105,94,106,103,106,104,118,80,108,105,110,102,103,109,112,96,96,118,108,111,117,119,99,100,101,105,102,116,106,108,105,99,103,100,99,106,121,104,106,113,103,107,105,94,97,107,100,114,97,104,100,94,113,106,106,103,104,103,104,102,99,101,109,73,102,98,97,105,82,103,98,96,113,104,114,99,95,97,101,109,103,101,105,84,116,96,112,111,104,99,104,95,105,98,105,90,103,99,82,99,107,101,107,111,97,105,95,102,102,102,101,97,102,94,105,107,97,101,106,105,99,98,105,111,87,98,106,107,103,125,114,97,111,112,124,93,118,84,104,90,109,103,112,82,105,107,107,116,108,105,98,104,109,123,112,110,112,99,98,116,96,113,104,128,129,106,119,115,155,154,153,169,147,169,142,127,133,124,149,120,113,131,125,120,114,97,113,106,98,95,96,110,90,102,108,94,96,108,86,110,102,105,110,80,123,100,89,94,116,102,109,98,104,107,98,116,102,98,114,109,110,90,112,101,97,120,107,102,100,109,106,107,121,105,102,100,101,102,99,102,109,108,101,112,109,98,120,103,103,106,111,105,105,105,117,103,99,100,98,115,88,100,99,74,108,106,107,103,98,107,57,91,93,110,97,98,101,107,106,110,93,103,102,104,102,106,109,101,90,103,100,119,102,104,83,78,103,111,94,116,109,104,95,103,108,96,120,99,105,106,103,105,98,117,109,101,100,113,99,107,97,116,96,122,100,123,89,105,98,98,102,102,104,109,108,104,108,99,112,112,98,108,101,95,109,101,91,103,103,100,110,96,99,105,112,112,97,95,94,110,110,101,104,102,105,105,99,95,106,111,98,102,98,104,115,104,106,108,105,103,97,117,98,106,102,80,115,102,110,118,98,102,107,115,107,102,106,103,107,102,104,101,87,105,116,108,113,100,105,97,96,99,103,98,99,91,103,95,101,92,97,104,103,94,105,105,108,108,102,95,101,86,111,106,101,108,85,99,105,103,101,101,98,104,115,116,104,100,109,100,108,105,103,111,100,103,99,111,112,98,99,113,95,104,110,98,110,108,106,113,111,104,102,115,110,96,99,117,104,97,105,97,119,105,98,99,101,106,102,112,100,113,90,98,102,101,83,121,96,109,123,94,111,105,97,100,113,104,102,99,114,98,99,98,92,119,111,107,102,94,97,103,104,111,98,112,92,103,115,101,115,103,111,101,101,105,94,108,104,109,111,97,104,106,103,105,101,109,103,90,113,109,95,95,98,116,99,100,124,104,103,104,106,98,103,99,91,109,102,107,103,107,102,98,107,100,108,116,92,95,116,106,95,105,102,106,100,114,99,109,113,69,109,98,100,111,109,134,96,102,95,97,108,120,119,102,103,101,108,90,105,92,95,98,112,109,95,117,103,99,103,103,113,109,112,96,120,102,104,102,114,95,91,104,112,95,98,91,91,104,94,88,109,102,106,103,98,111,101,105,100,94,104,105,102,99,99,108,117,116,91,107,98,93,98,97,98,115,113,113,108,106,102,93,101,100,105,87,103,99,114,98,116,110,117,101,107,113,103,106,107,100,114,109,96,102,117,114,96,99,104,103,122,101,96,101,79,103,115,101,111,111,109,106,100,97,107,96,96,108,106,120,96,107,103,100,109,109,99,106,105,104,92,97,97,107,104,94,98,112,122,97,103,95,108,108,108,113,105,94,110,89,103,109,112,103,101,106,107,88,106,108,99,117,115,109,105,92,111,87,108,100,92,103,101,90,98,113,103,79,102,95,112,105,97,105,111,108,110,98,106,115,91,99,97,98,106,105,94,94,102,108,106,99,101,101,110,108,112,104,103,99,100,110,101,92,103,101,116,89,99,102,120,109,93,113,91,110,102,110,101,104,101,90,98,104,93,112,95,103,94,104,110,102,100,110,105,91,109,92,112,96,95,92,102,99,74,106,97,102,96,97,108,97,89,105,99,93,106,99,109,104,105,98,103,109,87,110,96,110,106,108,96,103,112,98,109,116,102,104,97,109,98,98,94,104,99,111,92,96,88,110,111,109,103,110,91,103,110,90,109,103,111,105,102,113,101,96,101,127,109,107,114,88,98,102,102,95,103,89,105,109,114,104,107,112,97,103,98,106,102,101,103,108,78,106,104,112,96,93,101,96,125,113,112,98,96,105,91,96,94,96,88,104,97,105,105,107,100,93,110,101,108,95,107,105,101,101,94,106,104,114,113,98,104,92,94,105,136,103,103,95,113,112,110,102,101,110,106,98,101,112,92,99,97,95,107,106,127,100,108,90,128,93,93,97,113,105,92,107,95,104,95,102,96,104,105,106,103,106,99,105,98,103,95,102,98,121,86,106,97,104,95,107,106,106,94,102,110,117,126,112,102,99,108,118,87,100,120,111,109,133,105,96,114,69,108,95,101,105,107,104,121,94,115,95,96,116,106,106,105,109,103,104,94,95,103,92,112,117,108,105,93,106,109,106,100,98,98,98,107,97,106,92,89,95,87,95,93,100,103,110,97,115,91,105,80,92,97,105,102,95,113,106,112,101,99,96,103,74,103,110,105,102,104,111,102,106,105,79,95,98,100,109,96,88,100,103,98,96,109,106,110,107,105,108,98,94,95,98,103,104,98,106,106,102,90,113,98,98,105,93,113,93,96,112,94,105,91,123,103,93,100,109,101,106,101,108,113,106,107,105,91,106,96,97,100,101,104,102,100,104,116,90,93,108,108,101,101,109,107,102,102,96,106,106,102,88,107,96,108,110,99,108,112,107,107,97,96,86,93,110,91,91,110,79,112,101,114,114,108,105,95,97,108,86,65,109,95,98,103,98,93,100,101,110,106,111,99,87,93,91,113,86,107,106,101,110,98,96,104,123,98,115,107,110,95,102,106,100,99,97,83,106,101,99,92, +594.24573,101,106,101,114,102,111,112,98,92,93,98,99,96,102,102,115,100,108,101,105,106,102,107,92,85,100,109,86,121,103,114,135,104,112,113,95,104,103,99,97,106,99,101,101,101,109,105,91,98,99,100,112,113,118,104,105,99,103,108,104,100,91,116,101,105,107,96,100,110,101,119,115,97,67,95,121,105,104,110,106,115,99,103,100,100,104,100,98,103,86,108,109,107,107,96,100,94,98,99,97,112,109,109,111,105,117,106,110,99,90,112,112,108,105,67,99,100,110,106,119,98,107,126,107,98,106,120,103,111,105,99,100,107,103,109,108,90,103,101,111,101,66,114,105,101,111,108,112,104,102,103,103,117,101,93,110,108,100,99,97,124,99,113,110,91,104,106,99,100,110,121,113,103,110,110,108,106,100,115,102,109,95,90,105,101,109,91,98,109,97,103,112,102,103,97,130,103,102,106,96,108,105,107,105,95,107,105,113,93,104,98,107,103,111,99,103,97,114,110,105,96,100,98,116,102,90,110,111,115,101,102,106,114,105,106,104,98,108,111,108,106,108,117,118,110,110,104,104,100,107,93,102,103,99,92,94,100,115,105,104,95,109,104,75,104,101,106,111,100,115,99,119,109,91,107,100,105,110,118,107,76,100,100,126,111,103,102,95,109,107,98,103,107,99,122,95,107,112,104,104,98,115,106,105,102,103,101,90,100,100,118,106,83,108,109,112,105,104,109,117,100,109,102,99,96,99,98,98,105,103,104,107,109,126,100,102,107,99,104,107,101,109,104,107,105,105,104,107,108,101,101,101,102,103,109,98,99,109,108,102,103,110,96,96,98,91,104,109,100,117,116,114,103,114,96,100,103,109,107,112,107,108,98,114,117,103,97,104,108,86,119,104,99,117,108,109,108,101,113,103,102,128,100,82,100,110,108,106,117,103,105,88,104,111,105,109,99,106,77,103,99,98,117,100,105,105,99,95,99,114,107,109,94,97,96,104,102,105,99,98,107,110,111,115,101,109,95,108,101,113,99,102,98,101,122,103,112,104,115,107,102,114,107,106,113,108,104,101,103,105,104,114,126,97,111,105,99,102,102,105,105,106,112,112,96,101,112,105,107,108,104,113,112,110,94,96,117,76,116,105,123,94,112,102,101,117,106,94,101,136,108,96,105,103,111,104,111,95,94,102,100,97,128,107,108,112,108,109,109,101,102,111,106,98,96,104,112,101,108,110,103,101,105,99,119,99,98,117,112,77,108,106,117,104,109,102,109,106,113,109,101,103,109,97,95,106,112,104,104,110,106,98,106,109,106,124,98,109,97,113,104,113,99,100,98,107,111,109,115,110,114,116,98,103,115,124,107,111,119,94,96,104,106,112,105,101,109,107,109,99,105,99,127,109,110,107,97,105,110,106,107,102,95,106,119,110,114,97,107,103,94,101,105,88,107,108,101,93,107,108,105,103,106,118,105,108,97,95,100,94,93,104,101,107,104,107,101,99,116,109,107,104,99,124,100,102,127,124,99,110,113,102,102,130,97,99,88,109,106,125,113,111,113,95,117,101,105,102,102,109,105,109,100,92,99,104,107,112,103,114,107,106,110,109,111,124,101,105,82,109,111,98,108,108,107,104,104,111,97,104,109,113,106,114,101,98,100,107,86,108,105,92,114,107,91,123,107,101,102,113,105,100,110,106,110,109,117,100,100,101,105,104,116,117,104,117,105,111,110,117,103,119,106,89,112,107,107,106,105,108,111,101,103,94,114,115,109,93,112,95,100,103,121,102,107,103,101,111,102,109,118,107,109,112,108,111,96,89,107,119,117,106,103,110,103,108,89,110,114,107,110,119,103,109,107,97,110,101,109,104,82,116,99,100,117,106,101,101,105,102,100,107,107,110,108,77,109,100,105,118,100,100,117,106,108,106,106,102,104,110,117,114,99,127,95,109,101,94,111,101,112,102,98,101,104,95,105,112,101,99,117,102,103,115,86,110,99,99,101,97,108,103,102,107,96,109,93,74,115,113,98,109,105,111,113,96,101,100,91,112,107,96,108,104,103,109,96,106,103,99,99,100,114,100,115,95,97,120,114,109,114,106,99,113,98,90,109,110,111,104,109,106,106,108,93,121,96,105,106,108,116,112,114,105,120,102,122,105,118,118,97,108,103,110,115,103,114,103,102,103,122,113,113,82,120,102,94,110,108,100,101,106,109,110,100,107,119,102,101,103,100,104,103,102,112,94,98,98,106,109,97,109,97,112,103,99,98,118,98,88,99,111,104,87,105,106,106,119,99,104,87,119,107,108,109,99,112,118,107,101,96,107,123,94,113,107,109,102,96,120,107,100,111,113,117,93,125,114,115,131,142,156,143,142,134,168,139,169,148,142,150,138,140,132,150,140,133,118,119,99,104,114,106,139,112,87,112,109,109,92,102,109,99,112,102,111,110,118,94,109,116,99,100,105,99,109,102,97,108,109,102,109,109,90,104,102,93,100,112,115,101,99,96,101,99,117,93,96,107,108,104,116,88,105,102,112,125,92,103,95,105,106,94,102,112,102,112,112,97,107,98,117,104,107,113,94,113,110,98,93,99,103,101,113,94,106,109,105,100,99,103,101,111,100,95,109,96,99,105,104,98,89,108,95,107,112,103,119,100,104,91,104,111,102,120,98,110,112,108,93,101,100,109,110,108,108,102,104,76,103,106,102,113,90,99,109,117,85,101,112,109,116,98,102,107,103,116,106,97,107,113,115,114,95,98,96,103,114,105,92,104,112,97,100,103,100,95,101,103,94,100,105,88,105,114,105,111,108,98,117,99,98,108,82,103,96,102,117,107,100,99,102,112,105,103,101,99,95,92,108,100,113,108,106,108,106,107,104,114,107,103,117,103,112,98,95,100,101,95,114,102,109,104,105,102,100,111,117,104,100,111,105,99,100,102,103,104,97,96,112,111,96,88,97,98,101,114,103,109,105,90,102,92,102,98,102,92,92,102,94,105,100,99,115,108,105,109,96,117,111,105,110,112,109,105,106,103,104,95,94,99,97,95,103,107,96,115,104,92,106,107,105,92,100,105,82,100,104,94,104,100,108,105,91,104,95,106,103,102,96,108,93,119,105,111,100,110,124,99,98,97,101,108,109,104,99,96,118,101,94,109,99,103,92,107,104,106,100,102,112,103,93,94,112,103,117,97,110,106,105,95,106,105,115,104,88,96,111,95,105,93,96,92,105,91,113,96,87,103,98,102,102,118,121,105,108,92,105,100,99,100,96,111,107,99,100,89,108,108,101,96,96,105,95,106,104,102,110,96,100,96,105,100,101,108,98,93,105,102,98,97,98,91,103,101,104,108,106,109,102,103,113,113,95,112,107,107,102,114,105,102,106,106,105,107,101,93,106,106,104,104,100,100,110,99,98,106,103,113,78,108,99,109,102,101,100,108,109,103,120,106,112,97,107,94,95,105,108,99,117,118,104,113,107,104,118,78,98,96,107,108,107,99,109,107,101,108,100,93,98,108,98,105,102,100,103,113,113,116,102,104,111,79,108,113,107,97,111,105,123,119,105,103,102,94,104,103,109,108,97,105,99,110,103,96,104,94,79,99,99,91,100,103,106,90,108,105,103,100,106,98,100,100,105,91,97,103,97,111,109,112,98,87,107,108,109,103,113,101,101,102,107,112,102,101,105,105,98,114,95,109,105,104,111,104,101,109,109,112,89,95,101,101,105,103,105,107,91,109,102,97,113,104,103,104,109,107,110,104,104,105,100,103,96,105,98,117,102,102,100,108,110,102,109,107,114,99,93,98,92,110,110,101,105,99,102,104,105,83,107,100,101,107,103,105,101,102,112,108,97,102,117,106,104,112,100,95,94,121,87,115,110,105,110,102,105,112,100,99,101,99,95,107,102,97,96,105,103,117,105,101,99,102,97,108,101,101,106,107,109,108,94,113,116,101,104,99,98,112,115,99,113,98,103,112,101,98,98,94,109,101,108,110,97,100,86,95,110,96,109,107,110,102,118,107,111,97,106,109,96,103,111,113,101,113,101,101,112,110,105,99,99,108,117,109,107,109,92,99,102,101,98,97,96,105,108,94,104,94,100,99,113,101,100,100,92,93,94,109,96,95,92,102,103,104,105,106,70,94,96,98,104,98,96,107,108,135,106,91,94,98,101,112,94,99,106,101,116,103,109,116,99,101,105,103,103,106,109,104,107,105,112,117,94,100,110,94,118,113,100,92,88,104,100,101,103,101,96,105,112,121,76,105,101,109,93,106,97,99,103,103,108,104,104,99,103,100,100,118,98,106,91,104,94,108,89,96,102,107,111,94,114,111,118,105,96,118,106,104,105,96,102,98,106,97,104,100,109,105,95,107,106,104,101,104,114,103,87,110,101,95,110,112,105,89,109,106,107,99,100,110,100,106,87,100,108,95,100,97,112,84,96,104,106,104,89,102,115,100,97,109,102,103,113,110,112,91,67,103,99,104,109,100,103,100,106,105,109,95,96,102,102,90,106,102,108,105,106,97,100,97,101,97,94,100,101,100,101,105,92,104,110,98,94,97,102,101,97,96,105,113,86,109,96,115,103,80,105,102,103,110,100,101,100,103,98,108,108,91,98,108,94,105,110,102,92,107,98,105,108,104,100,106,107,117,111,116,93,108,66,97,105,111,111,95,109,92,103,109,98,104,102,101,100,105,109,110,104,98,98,95,110,103,103,102,101,99,107,100,100,109,99,116,108,113,99,111,101,102,102,94,95,102,93,117,106,102,111,109,102,104,98,110,97,91,90,114,101,105,108,88,111,96,116,98,92,98,91,120,115,113,109,100,103,91,98,109,115,125,89,90,101,104,96,91,96,103,106,102,90,109,98,102,101,104,104,98,104,105,101, +594.38678,97,105,80,87,93,99,94,104,106,98,101,103,107,110,97,97,114,103,120,95,113,106,99,103,104,102,96,116,107,79,101,107,95,88,116,98,107,100,113,113,100,109,110,108,113,106,91,92,109,101,111,106,87,100,92,118,103,115,95,97,101,97,105,97,96,117,89,112,109,99,104,94,106,94,101,117,97,107,100,110,110,121,109,112,102,94,101,114,105,104,100,107,97,106,100,106,94,107,104,85,87,121,101,98,107,94,102,87,87,87,100,96,91,99,102,112,105,100,91,107,98,108,107,111,92,100,108,101,116,100,100,107,106,119,113,105,109,107,123,104,105,100,95,104,101,98,104,104,82,96,96,105,99,107,104,106,99,99,87,118,108,103,110,99,103,105,106,99,105,115,111,100,99,110,94,102,103,104,105,103,103,98,103,100,97,100,95,110,84,105,102,99,105,94,99,97,99,113,95,98,115,97,100,100,113,121,104,94,101,109,105,109,103,100,91,111,109,111,100,104,109,103,76,100,109,114,107,101,104,95,111,113,112,118,111,109,106,112,98,107,112,98,104,108,106,107,101,104,118,109,100,97,112,89,105,106,106,121,93,115,109,113,104,115,100,112,97,103,104,93,101,105,110,107,99,116,111,96,109,107,103,112,106,98,110,95,97,91,100,105,118,109,116,107,104,104,103,100,111,98,95,122,84,133,105,104,109,108,99,107,93,109,106,106,104,102,94,98,110,92,113,106,111,98,112,102,111,98,97,111,114,107,101,94,96,105,98,106,105,91,100,96,112,106,104,126,105,101,114,97,92,108,106,96,102,100,120,109,105,112,99,116,104,105,84,104,106,122,94,105,117,99,107,108,107,106,96,100,98,94,98,99,109,104,107,100,101,103,97,102,117,95,99,90,100,122,105,113,106,93,106,100,101,101,99,105,106,116,100,101,98,104,99,110,94,88,98,95,104,110,101,105,91,101,103,100,99,95,95,101,102,104,102,102,103,99,99,110,94,96,105,109,106,101,102,101,97,97,99,99,109,102,101,111,109,99,97,120,109,103,101,111,99,114,108,112,103,97,101,122,100,119,104,98,99,104,112,104,111,109,97,101,102,97,100,94,106,110,107,97,109,111,113,101,89,112,101,96,108,88,103,96,107,99,103,106,113,86,105,111,102,103,95,99,102,114,132,99,113,94,103,110,104,116,107,98,103,117,108,108,121,103,98,108,116,105,96,109,105,94,131,105,101,102,108,100,101,113,109,115,102,98,108,94,111,103,103,105,99,96,102,94,105,108,94,96,117,111,94,97,103,108,104,110,95,106,108,104,106,103,108,98,102,98,101,99,129,98,107,96,98,111,105,102,100,105,100,103,112,104,110,111,102,110,98,106,108,103,101,94,105,105,109,107,107,103,108,101,106,113,112,105,110,107,115,95,107,120,97,108,104,109,110,120,99,108,89,86,103,91,122,98,95,103,106,96,96,106,113,107,91,105,92,106,110,107,104,101,105,124,107,112,102,104,109,115,108,106,111,95,108,94,97,118,93,112,99,102,109,102,101,125,109,96,92,114,103,110,116,114,99,106,102,112,109,103,103,100,95,98,105,104,103,103,106,106,94,108,88,117,103,103,96,118,102,95,106,105,101,106,106,97,104,114,114,105,90,96,104,106,103,99,100,99,94,86,100,88,125,99,108,107,106,117,98,103,98,100,106,104,114,105,109,100,100,106,95,96,103,108,102,102,114,90,95,117,92,101,107,100,110,110,117,100,119,105,111,109,98,97,109,97,113,104,107,114,92,107,103,105,109,118,93,108,129,103,104,104,117,118,97,91,98,101,111,99,113,111,103,97,113,100,101,110,115,113,103,110,92,107,103,116,115,102,110,114,115,100,106,110,96,89,109,107,102,120,94,90,119,110,96,109,113,105,105,101,115,103,107,95,99,111,101,103,102,98,96,100,104,103,105,102,105,109,102,91,104,113,113,117,111,98,100,140,102,102,105,99,110,105,113,115,106,99,110,103,107,107,114,102,98,110,105,112,116,115,110,100,107,106,106,99,109,100,93,115,105,104,109,104,122,106,105,115,115,91,97,113,103,110,101,108,106,98,98,105,109,102,96,99,113,105,102,108,100,115,104,91,102,105,100,85,113,121,106,112,114,109,111,96,103,104,111,112,104,105,89,109,111,102,116,107,100,109,108,113,110,112,102,112,104,98,104,103,104,105,92,92,99,69,106,114,99,96,104,102,118,101,103,111,107,114,79,100,93,87,101,104,106,113,104,100,82,109,116,113,95,106,95,110,94,106,105,100,104,118,115,108,108,105,109,102,108,87,106,111,109,121,103,109,120,114,118,106,105,114,106,136,141,131,131,129,145,163,163,161,156,153,152,136,143,150,135,143,128,123,122,106,129,113,110,123,103,106,102,107,94,102,122,109,107,110,109,106,104,129,107,101,105,103,102,95,106,112,110,99,105,117,118,113,95,108,105,102,105,115,118,92,115,115,102,98,108,103,101,101,96,107,109,104,106,97,105,105,95,99,111,113,102,122,105,108,118,112,101,103,100,108,96,104,110,94,104,100,91,112,106,107,107,101,96,118,92,112,103,102,102,103,109,104,123,102,115,111,100,125,102,97,105,96,107,97,116,101,105,95,99,87,101,120,110,117,99,108,106,107,104,106,125,107,108,101,101,116,97,114,110,113,99,102,110,115,104,107,104,110,99,109,102,111,97,106,90,106,110,106,101,103,94,99,109,106,99,106,110,103,96,112,95,108,112,113,117,107,98,112,115,102,110,115,95,114,102,103,108,102,94,103,96,112,96,111,105,103,99,106,110,113,98,106,110,96,109,99,102,102,101,99,104,105,101,102,99,94,114,101,93,112,94,109,107,111,101,115,109,92,112,98,102,119,102,104,103,106,104,112,113,111,103,108,111,108,105,115,103,92,106,100,104,99,110,99,100,107,110,109,99,114,98,76,101,127,116,97,107,110,110,109,107,98,106,101,102,106,97,103,112,106,105,115,109,94,94,112,101,99,113,98,98,98,102,103,104,104,103,114,104,98,112,108,101,118,99,104,96,106,107,110,100,96,110,110,122,125,113,108,120,113,101,88,101,105,111,107,102,104,89,111,110,102,110,109,108,110,91,104,109,109,106,112,112,105,102,104,107,103,100,102,103,109,104,112,107,106,107,92,116,119,108,96,117,99,108,96,115,106,107,112,108,101,109,113,98,93,107,108,96,120,111,108,86,93,103,108,95,91,109,107,116,100,108,103,104,116,108,114,98,105,113,107,107,101,106,104,107,107,104,103,110,78,108,92,108,105,116,112,99,94,98,102,102,117,98,108,104,103,80,105,121,119,104,102,102,104,113,96,105,99,116,92,102,104,104,93,112,104,108,88,106,114,103,120,80,87,100,108,105,102,100,105,103,99,91,113,87,112,113,113,97,103,113,101,99,103,102,98,105,102,104,100,106,106,100,103,112,107,95,112,111,109,101,100,101,107,111,109,111,98,86,103,103,105,103,102,125,99,102,113,115,108,106,104,95,113,107,103,97,102,101,93,106,110,104,91,117,103,108,95,112,103,96,98,99,106,105,108,110,107,111,105,102,109,110,98,107,94,104,108,103,111,102,95,111,101,110,102,107,92,104,102,98,106,96,107,100,100,107,98,113,99,97,112,117,109,98,100,101,104,86,112,107,105,94,98,111,108,97,102,116,101,105,112,100,98,110,114,120,108,112,95,112,119,75,68,95,102,113,107,104,113,102,98,110,105,105,112,103,104,106,102,103,110,90,110,94,102,100,112,88,94,107,102,110,107,111,109,103,104,113,111,100,102,107,111,95,108,104,96,105,96,106,105,102,103,103,115,100,101,103,100,99,107,104,98,107,102,91,101,108,93,103,93,113,111,106,104,125,106,103,87,109,104,113,105,116,105,104,115,109,107,108,83,99,105,105,108,106,108,105,98,111,102,111,95,98,102,103,118,78,113,109,113,102,112,115,105,106,99,99,109,108,109,93,94,107,100,100,109,102,111,100,102,101,101,109,106,85,106,101,108,105,100,94,105,101,111,104,98,94,113,99,101,103,127,97,103,98,120,96,107,112,106,115,106,108,104,105,93,95,99,119,117,99,112,109,99,106,104,104,101,111,103,102,109,101,94,98,108,116,92,104,109,104,102,108,111,91,94,97,101,111,102,106,105,100,108,98,102,109,105,85,92,101,112,104,108,88,110,117,104,107,109,105,104,107,106,112,103,100,102,96,109,110,99,95,89,108,111,99,113,116,101,104,99,103,111,102,117,117,100,98,112,113,115,104,102,100,100,109,105,94,100,115,103,106,96,109,99,102,105,107,102,108,82,100,83,104,98,100,106,102,99,109,101,95,100,102,106,106,92,92,93,92,111,107,113,106,98,107,113,107,102,91,108,108,101,103,93,92,105,98,95,102,102,97,104,99,93,98,102,101,94,113,104,92,102,94,106,104,100,100,110,99,103,110,107,105,103,95,102,105,108,97,103,111,112,115,122,115,112,113,100,100,103,80,108,110,102,112,102,102,108,102,108,101,109,116,112,108,102,108,97,59,98,106,111,96,109,114,106,94,99,106,109,99,98,98,92,106,90,90,117,105,99,88,90,106,106,98,90,100,96,114,116,103,99,104,88,98,100,106,104,95,108,97,99,107,113,103,101,96,102,90,101,119,102,110,103,95,107,96,105,101,105,87,110,105,115,117,105,104,112,109,98,118,105,102,106,97,104,100,109,96,100,110,103,103,109,101,96,100,98,110,99,100,107,97,99,112,97,105,115,97,104,98,95,86,85,106,117,100,116,92,103,73,105,105,108,109,105,115,111,113,94,102,109,110,101,102,95,111,95,102,107,108,103,103,78,107,95, +594.52777,131,112,93,87,98,95,94,97,94,136,96,95,104,102,89,92,108,103,85,106,112,104,90,101,70,113,107,105,101,108,103,104,98,105,113,104,105,90,93,106,92,103,110,109,120,100,101,108,109,94,110,95,99,103,124,88,90,99,110,95,92,101,103,89,99,120,109,108,103,105,109,111,94,103,106,116,80,107,104,90,107,100,96,105,104,97,103,119,103,101,112,108,95,107,94,110,104,94,104,119,83,96,105,92,113,101,95,110,102,101,104,106,104,97,101,111,89,112,101,97,94,98,112,110,99,120,111,91,115,92,107,106,104,101,104,124,92,91,89,81,104,99,92,87,121,123,102,95,100,135,105,106,120,112,97,109,101,94,105,96,115,108,95,97,108,95,91,99,99,101,104,98,122,121,97,99,114,109,103,112,94,130,96,116,105,106,92,85,99,105,100,100,109,97,105,110,107,109,108,107,107,96,98,106,101,108,103,110,91,102,104,114,107,99,99,101,98,113,105,125,116,111,103,104,103,112,107,96,100,103,103,104,103,110,109,110,105,100,109,108,105,110,107,103,98,96,108,100,104,109,88,104,106,103,105,117,95,122,98,95,106,108,104,96,73,112,104,91,105,115,102,108,99,112,117,101,109,102,106,88,110,128,108,107,99,105,101,101,95,105,112,112,108,103,111,102,107,72,105,107,102,99,106,112,92,108,106,108,98,113,90,98,84,113,93,100,106,82,109,100,100,108,99,103,100,101,114,101,96,120,94,94,94,114,118,98,121,103,95,102,98,93,108,90,103,98,102,117,99,116,106,103,101,98,117,99,102,100,108,93,113,105,96,99,109,111,106,111,91,105,114,105,108,113,113,98,103,104,92,110,103,104,99,118,117,97,100,105,107,97,110,76,93,108,103,101,96,109,107,115,106,97,96,99,105,101,92,106,109,81,102,95,125,103,107,88,116,102,117,107,108,99,99,102,106,93,100,91,102,99,102,107,94,100,109,96,114,103,95,102,110,107,96,100,102,99,95,107,108,104,103,97,92,107,112,109,107,105,115,101,99,112,109,110,128,102,104,88,105,98,103,114,109,100,104,89,104,127,100,113,113,110,109,97,112,107,103,107,104,89,98,108,116,106,98,134,99,108,102,72,106,96,97,119,104,100,88,100,100,104,113,95,99,108,99,108,106,95,113,95,102,104,99,109,96,105,110,92,98,103,106,113,101,105,101,111,112,98,106,94,92,110,103,96,111,97,109,110,104,96,113,89,110,114,98,101,105,106,100,109,96,105,96,106,95,105,112,99,110,110,94,94,95,109,81,83,110,100,108,114,104,106,106,106,100,97,112,101,97,117,107,106,99,97,103,101,101,91,94,98,98,109,108,105,98,104,111,112,108,96,114,107,107,105,103,92,111,125,93,105,109,117,106,104,114,104,91,104,105,100,95,99,109,111,102,104,103,104,122,106,95,102,94,109,100,108,103,115,95,107,106,98,114,99,105,92,91,109,119,94,108,109,119,113,99,99,109,99,123,96,107,109,105,112,102,115,94,101,114,101,99,117,112,113,88,103,109,116,113,100,118,102,112,115,98,109,111,105,105,90,100,99,117,96,106,125,109,109,101,104,90,102,99,108,93,106,114,102,118,109,106,95,108,109,103,102,93,104,99,111,98,103,107,100,108,95,94,109,92,113,107,103,113,92,104,122,117,106,112,107,100,106,102,85,105,102,105,140,108,100,102,91,100,103,109,108,105,121,97,98,90,110,99,103,97,107,103,107,94,90,93,107,112,112,94,104,103,98,106,99,116,107,100,108,95,116,100,102,117,109,104,103,109,95,101,116,105,92,106,87,115,122,106,107,100,114,121,115,106,103,108,113,103,97,113,100,114,107,100,111,107,112,106,98,94,90,115,115,110,97,108,102,109,94,87,98,111,111,107,98,102,102,117,115,108,107,108,122,108,115,110,97,101,104,99,114,106,108,109,99,113,109,114,108,108,106,110,109,104,95,102,110,110,99,107,114,108,113,105,107,100,103,107,125,114,107,112,103,104,97,98,98,109,111,107,111,96,100,103,112,101,97,117,106,100,103,100,108,107,107,94,97,95,107,99,105,102,105,101,106,102,78,113,112,120,130,111,102,124,109,97,98,98,114,103,115,104,114,107,113,94,99,120,101,117,102,113,106,92,97,109,102,104,103,109,115,84,116,114,118,95,113,121,111,102,105,103,104,105,103,100,104,103,80,86,113,98,113,110,100,104,104,102,114,102,95,99,97,103,104,100,105,119,98,108,98,96,121,97,85,102,99,84,118,91,104,93,97,103,94,110,105,110,94,116,104,98,114,102,117,103,113,105,103,119,108,114,107,124,130,120,167,122,146,172,172,149,142,152,137,137,114,121,125,130,123,130,107,114,118,88,122,108,106,106,109,94,98,102,104,109,111,101,104,113,112,108,104,103,101,99,112,102,111,104,105,108,102,114,104,115,110,102,121,111,117,101,114,118,100,96,110,114,100,101,98,110,88,108,99,113,124,103,106,95,100,110,116,87,87,102,88,100,102,108,106,106,100,106,107,110,111,111,101,115,99,105,96,96,100,109,107,101,108,105,103,98,96,98,102,112,119,103,113,103,102,102,104,103,106,101,92,100,99,100,101,104,98,114,110,97,105,104,106,94,108,121,97,108,102,107,104,101,108,116,109,120,103,107,118,98,108,105,95,106,109,105,106,96,96,99,108,104,113,99,108,113,109,114,101,98,104,94,124,105,106,104,102,95,91,101,103,93,105,104,112,101,107,108,81,103,115,104,117,106,109,117,121,95,109,121,112,114,104,98,106,103,131,114,117,98,104,114,109,111,102,101,110,98,106,102,96,111,125,95,90,95,105,89,99,108,109,109,118,109,105,112,100,113,114,102,108,117,98,100,108,113,97,103,103,102,109,109,102,97,108,98,103,108,96,104,108,98,104,95,93,111,106,107,109,111,115,113,95,98,112,105,109,112,103,109,105,96,110,122,102,117,104,113,93,96,108,108,108,115,100,104,104,93,106,116,103,102,95,107,110,113,108,108,109,111,100,105,108,105,96,80,103,117,103,103,113,96,105,116,100,105,107,109,117,108,107,99,123,104,99,107,111,102,93,111,104,100,113,112,100,102,104,99,72,99,107,95,96,101,113,97,106,102,114,106,104,88,111,97,103,117,117,110,115,103,102,103,81,102,101,104,103,95,110,109,110,98,102,101,109,102,81,107,109,113,118,103,101,109,107,112,108,105,107,108,96,107,98,112,104,94,110,102,94,102,104,104,109,100,111,115,101,102,96,107,111,94,108,106,119,91,95,102,118,98,105,77,98,107,106,107,104,105,104,101,117,119,102,104,102,114,108,121,109,96,93,100,99,104,111,105,102,100,107,92,109,98,107,109,103,109,99,93,103,107,107,112,95,100,104,109,103,105,105,103,99,102,104,105,103,112,117,100,98,104,105,106,114,103,109,110,106,114,103,108,116,102,103,109,107,112,107,104,99,112,96,99,109,106,96,113,112,113,114,102,104,104,107,109,124,105,99,111,127,101,90,93,117,108,110,117,97,105,104,107,102,97,103,112,109,107,105,123,106,95,111,108,100,107,100,72,107,100,94,99,103,108,107,104,107,102,109,108,100,99,104,113,106,105,94,107,109,109,106,102,113,104,104,103,97,109,97,114,96,94,99,113,102,102,103,111,107,108,92,107,96,105,106,109,103,107,103,106,101,102,100,99,113,112,104,103,102,111,108,100,107,99,107,115,104,93,101,109,95,121,107,102,111,106,102,101,113,97,109,110,106,113,112,100,105,98,98,87,118,92,102,85,95,107,111,124,100,117,106,93,108,94,117,107,103,97,97,108,106,98,104,104,113,117,98,106,115,106,98,112,110,113,105,107,98,99,104,111,93,100,91,101,103,101,110,105,109,104,104,113,95,100,109,103,108,93,102,104,113,101,116,98,104,96,81,105,107,106,126,106,95,72,114,109,91,100,111,109,109,110,102,103,98,111,99,102,100,112,103,118,109,98,109,121,109,105,101,102,100,103,107,93,106,105,98,119,99,98,107,112,104,101,99,106,118,101,107,103,100,103,116,106,101,102,108,110,104,99,99,103,93,101,93,104,104,104,101,103,110,103,101,99,99,92,106,97,93,108,102,109,120,103,99,113,106,85,111,109,90,102,102,91,103,113,109,100,104,100,98,100,108,99,107,88,95,110,109,95,97,100,99,128,109,107,98,98,107,100,103,97,99,107,120,106,95,99,111,100,100,102,105,115,102,80,102,91,104,104,113,113,117,116,109,105,98,113,109,110,107,103,94,113,103,99,113,102,102,109,109,107,103,107,120,69,101,102,110,106,100,97,105,112,103,97,103,97,108,96,105,100,105,102,108,100,104,97,104,101,105,106,109,98,110,109,75,94,76,91,111,93,111,83,107,109,95,77,85,101,99,92,98,109,101,91,107,95,114,98,99,114,104,109,103,118,109,90,116,104,107,109,103,102,99,114,107,91,96,98,116,94,129,105,105,95,90,109,90,111,110,104,116,109,105,105,111,115,113,104,125,94,99,94,106,126,92,97,103,106,114,98,108,107,100,105,121,110,100,107,94,102,93,109,98,104,112,108,114,98,99,97,98,111,91,96,97,80,110,111,97,98,116,107,106,103,95,102,104,96,104,103,107,119,110,105,111,103,96,94,103,106,105,98,104,101,95,103,107,102,119,110,110,104,105,93,104,91,107,108,105,103,87,96,100,94,108,104,100,95,109,94,109,99,114,101,124,94,111,101,110,106,98,104,112,112,102,99,103,103,108,95,100,97,110,108,107,105,104,108,103,102,98,114,104,119,93,110,103,93,93,99,103,95,97,98,122,116,113,95,113, +594.66876,108,115,90,103,101,105,106,109,108,98,103,105,96,107,98,107,97,111,104,106,105,115,95,115,94,122,105,86,95,116,99,100,104,102,100,105,106,99,104,100,102,133,78,99,101,108,94,108,95,106,95,106,110,102,99,102,100,95,117,92,91,100,117,85,99,105,108,97,97,104,112,104,106,103,101,104,105,98,104,99,104,109,95,106,93,93,101,105,104,106,113,105,104,108,110,101,92,105,104,100,102,117,96,116,90,91,97,109,100,110,107,106,110,110,104,99,103,104,93,90,99,104,104,113,121,101,108,107,111,105,112,108,103,104,106,103,122,109,99,96,98,100,73,102,97,103,94,94,91,103,102,106,107,97,120,90,109,108,106,80,92,105,105,102,101,99,99,100,127,92,106,107,113,100,107,105,99,92,91,95,108,98,113,127,114,112,102,72,92,105,93,101,103,102,149,114,105,106,100,117,104,136,116,107,93,116,100,119,104,107,103,106,102,114,103,103,102,105,107,110,106,109,106,101,97,111,106,99,117,97,104,96,102,105,100,117,104,98,120,107,113,101,119,108,111,97,104,108,113,110,108,94,80,109,100,106,97,95,95,106,93,96,100,109,100,105,114,101,100,109,87,107,116,113,115,116,101,103,97,111,113,116,126,87,103,104,102,104,105,95,100,113,114,113,109,109,99,111,106,102,103,102,106,106,87,113,110,107,120,122,96,105,107,111,110,103,106,96,99,104,96,102,105,110,100,100,107,104,109,119,102,121,112,108,105,114,98,109,96,105,116,98,113,113,103,103,113,109,111,111,109,102,114,104,105,107,111,98,96,110,99,96,113,101,83,102,99,113,103,110,112,108,110,100,113,96,105,101,97,115,105,103,96,120,121,101,110,101,112,106,115,108,102,112,95,108,91,108,99,114,102,104,106,105,109,119,94,113,106,102,101,99,107,117,101,109,109,93,113,107,87,97,97,105,112,104,96,96,108,103,101,108,105,112,90,101,102,118,111,94,110,113,121,105,90,98,97,105,111,121,91,106,86,97,114,96,119,110,95,101,119,96,106,97,108,103,106,113,116,109,100,90,108,114,107,124,99,114,101,115,108,95,115,92,109,103,117,105,107,102,102,99,117,100,95,98,103,97,117,95,110,98,99,112,114,124,103,97,109,99,112,115,91,120,102,114,106,107,91,104,118,102,95,113,107,100,103,100,96,106,110,104,108,103,104,125,108,107,95,112,107,109,101,104,113,100,111,90,91,108,104,105,105,112,99,99,118,101,104,105,113,129,95,101,102,119,112,113,103,105,100,96,100,102,100,109,109,101,109,101,102,107,100,111,113,96,117,95,94,101,103,105,112,102,89,107,103,113,123,97,108,130,119,103,98,94,99,92,104,104,97,101,109,96,96,97,118,103,103,102,98,87,105,107,109,93,107,111,107,113,111,109,94,99,100,102,99,109,73,105,117,108,108,109,102,94,100,114,110,121,109,105,113,110,107,103,109,107,101,102,118,116,107,109,93,109,105,111,118,108,117,98,110,105,105,109,98,88,105,106,104,110,98,106,97,111,108,107,118,106,115,95,98,103,100,103,107,112,93,102,105,95,85,102,103,105,111,109,98,102,108,102,109,99,103,89,113,105,96,107,98,112,111,108,91,100,103,94,102,104,101,108,106,94,100,99,102,94,120,104,102,107,109,103,101,108,103,110,110,109,105,101,98,87,98,103,102,112,110,103,114,111,86,103,74,105,99,107,100,108,101,104,114,103,105,116,110,107,105,107,104,94,108,77,102,71,95,114,105,112,107,109,107,104,105,83,110,116,110,103,65,90,101,78,104,107,98,103,101,104,105,110,110,104,101,106,77,98,100,95,102,108,116,104,95,106,116,102,109,93,105,104,100,112,95,93,112,107,109,109,102,110,108,92,106,104,114,99,103,98,97,104,103,114,100,95,96,116,109,85,110,118,98,95,108,101,100,114,85,97,113,109,96,129,97,106,105,113,96,106,107,107,107,112,97,107,110,119,116,103,102,95,110,110,111,111,103,103,108,96,94,107,103,95,107,100,96,104,105,106,86,105,112,104,118,111,102,103,109,110,108,95,118,109,101,98,102,103,117,106,105,104,99,110,101,104,106,100,125,110,110,98,102,95,95,107,95,99,102,111,98,106,116,112,110,102,108,84,103,85,110,106,103,104,83,97,93,106,99,104,111,112,117,111,104,109,112,103,115,107,105,96,118,106,95,114,94,94,104,110,104,103,99,111,112,102,111,107,96,105,111,108,114,111,114,114,107,101,96,107,86,77,105,100,99,114,98,101,114,100,116,99,110,107,85,117,106,96,99,99,114,126,103,105,119,104,104,129,114,99,137,130,140,160,143,135,134,154,153,161,142,140,122,122,107,120,108,115,104,106,108,121,105,107,92,105,114,114,109,93,100,114,104,104,113,98,103,101,101,100,102,101,95,101,111,105,109,95,121,97,99,104,120,110,87,107,103,105,117,99,92,98,104,100,110,104,95,94,103,106,98,94,117,95,121,101,109,94,101,104,106,116,97,103,111,115,91,90,108,118,102,116,105,106,106,104,89,104,100,100,106,107,105,110,104,126,101,109,101,100,113,99,110,113,128,94,113,109,103,103,106,92,101,94,115,116,105,95,105,91,103,106,115,98,113,96,103,94,102,99,107,100,104,109,103,114,113,105,98,109,103,94,103,111,99,105,108,109,106,109,99,111,104,91,111,92,84,95,102,106,117,105,106,107,121,105,99,103,101,110,117,109,91,104,115,99,113,110,98,100,108,103,107,107,115,105,108,112,113,123,105,106,109,99,93,94,104,93,95,100,102,100,111,104,110,113,98,121,105,112,108,91,113,110,104,104,113,95,86,117,99,120,110,109,109,94,102,108,112,117,116,112,107,104,104,112,107,95,107,109,110,107,109,105,102,104,110,98,117,108,95,104,96,116,109,107,106,100,98,102,108,104,102,109,105,103,108,113,120,109,104,109,101,105,115,108,103,101,94,101,92,99,117,90,105,99,108,110,105,106,101,105,108,100,98,100,107,117,110,98,113,99,106,108,116,93,101,113,100,103,109,113,113,100,106,102,113,96,108,96,118,104,99,112,106,111,113,113,103,113,108,98,94,110,104,98,95,97,127,115,101,116,109,106,106,125,112,112,108,111,106,104,100,103,108,113,113,103,126,94,100,106,106,113,109,95,112,109,98,106,100,114,100,106,110,104,113,102,109,96,115,117,109,115,101,105,107,110,107,111,106,105,121,94,100,109,106,107,99,99,113,98,114,108,108,115,95,110,102,93,115,119,104,105,107,107,109,101,111,102,90,111,105,97,108,107,112,113,115,102,102,106,113,115,105,105,98,107,97,110,99,110,105,101,105,105,113,111,107,106,97,103,108,72,108,106,111,122,97,109,113,111,105,109,96,118,117,103,108,101,113,117,111,87,104,104,109,107,94,104,110,102,100,90,102,105,104,109,104,99,112,103,98,98,99,112,110,110,108,99,118,104,99,123,102,105,104,108,107,107,100,98,129,100,104,94,111,101,113,122,106,98,111,125,105,99,118,103,105,100,95,102,112,109,108,90,110,86,124,98,104,113,106,113,110,106,106,97,98,110,100,90,106,104,81,98,110,103,107,99,103,104,107,98,111,101,106,112,97,99,106,117,112,111,97,103,110,118,103,96,107,102,99,108,108,99,109,108,108,102,100,99,105,102,98,117,115,105,102,106,107,94,115,105,105,99,94,104,103,110,113,98,102,101,83,97,86,96,95,105,100,98,87,100,98,111,101,107,102,112,112,100,108,100,110,114,76,96,98,111,95,111,102,109,103,109,98,103,117,108,104,120,102,107,100,102,104,109,92,97,108,97,99,104,113,101,93,108,98,91,107,96,97,96,117,98,107,106,102,112,110,80,115,99,102,103,110,100,102,107,93,117,105,103,92,107,104,98,88,94,113,101,106,102,92,99,108,99,105,100,107,102,117,106,118,103,107,111,105,116,101,108,110,104,91,102,113,102,99,106,108,102,91,96,100,91,99,94,109,135,103,97,101,96,104,109,106,100,94,111,114,100,96,102,99,125,114,113,103,103,95,91,85,112,109,101,112,107,116,104,95,101,93,97,109,110,107,110,99,100,115,102,100,96,99,93,110,83,105,97,120,106,111,106,103,105,99,108,99,106,115,96,104,120,94,107,105,97,109,96,102,106,99,97,97,101,101,107,109,91,99,98,108,91,104,96,101,104,103,110,97,109,99,102,104,112,100,109,100,105,110,96,108,83,111,98,91,101,110,121,104,112,118,99,100,100,108,110,105,107,112,92,100,99,106,110,105,95,112,110,105,102,103,116,100,110,103,103,121,94,108,102,103,98,103,105,110,94,111,100,99,99,93,107,102,107,102,100,108,106,107,103,105,92,97,98,107,99,105,112,103,110,107,111,101,88,104,102,98,113,102,109,108,103,110,98,101,107,102,104,86,98,98,105,103,101,102,101,109,115,92,96,113,128,99,106,112,113,99,117,101,106,93,102,84,111,113,99,107,100,116,97,107,120,99,111,120,101,101,92,94,101,100,104,97,110,100,104,113,97,102,101,99,128,108,108,114,117,113,102,117,100,112,99,107,106,107,93,119,113,101,95,110,104,106,98,96,100,102,101,103,97,105,119,120,109,115,99,99,109,104,125,114,102,107,109,105,90,95,105,91,105,98,110,104,100,113,99,94,103,103,98,92,98,108,103,100,105,105,107,100,106,112,113,101,103,105,99,102,96,107,98,103,100,108,91,100,105,96,94,96,118,108,95,126,113,111,104,98,104,99,116,97,111,96,113,104,105,98,92,112,94,116,117,106,99,98,113,113,98,103,107,107,91,96,101,121,104,112,106, +594.80975,103,98,112,97,109,100,94,100,106,129,114,97,113,103,117,106,102,99,105,110,110,111,109,103,102,101,113,100,88,117,97,99,95,112,96,110,105,87,103,118,99,101,109,108,87,105,104,102,99,102,105,103,112,83,90,98,94,85,109,99,106,108,100,123,108,103,97,106,97,100,104,100,106,103,95,118,109,107,99,113,80,98,102,101,98,107,110,100,104,109,110,107,101,103,98,89,101,113,103,113,111,98,104,105,109,97,93,109,106,105,114,103,105,124,105,125,108,117,116,101,114,110,115,103,109,114,116,112,100,106,107,102,98,112,103,130,97,105,96,96,101,100,117,96,111,105,110,103,98,92,85,110,86,98,96,109,109,99,92,91,105,103,108,108,110,100,92,103,92,96,103,103,100,109,96,112,97,105,96,94,103,102,94,118,92,106,103,77,104,89,110,106,99,129,113,110,104,104,99,101,111,121,94,97,112,99,104,119,99,103,102,102,100,103,112,100,110,107,109,113,117,109,104,114,112,95,104,99,106,100,95,109,103,121,113,101,101,97,93,86,103,103,112,112,113,94,97,109,102,108,106,109,103,97,105,105,104,119,107,107,105,107,110,106,104,110,109,109,108,97,101,110,99,102,96,100,91,107,107,98,105,103,106,109,105,109,93,100,99,100,121,114,107,112,109,105,100,98,92,96,97,119,102,103,102,98,98,95,102,108,106,102,101,115,99,98,102,106,96,95,109,99,104,89,99,101,103,104,118,102,106,97,103,102,118,118,113,113,100,103,106,116,106,99,109,103,81,103,109,94,109,112,121,110,121,109,103,105,95,112,108,104,98,104,104,107,111,120,92,108,114,115,111,100,108,98,113,94,110,121,104,102,88,119,108,103,105,108,108,97,102,83,100,118,101,105,102,107,105,119,98,101,107,99,103,96,99,110,108,107,95,109,99,109,101,95,106,99,107,108,114,104,88,107,106,104,111,100,91,108,109,105,77,109,100,98,109,89,105,118,106,109,91,106,98,91,100,101,106,106,101,100,106,113,95,104,101,104,109,107,97,99,104,111,111,97,113,98,100,98,109,110,97,98,113,104,102,120,107,96,103,102,107,93,106,107,112,116,106,108,118,114,109,102,107,114,105,113,105,106,114,89,107,107,99,101,94,110,106,110,123,107,112,105,120,113,122,109,100,108,87,85,113,100,95,100,105,117,98,100,98,116,105,99,112,104,106,98,111,98,102,107,109,101,100,100,99,110,110,111,107,111,118,106,107,103,112,101,95,91,106,108,98,105,95,104,107,117,103,103,94,98,111,115,113,105,107,102,94,95,105,99,102,110,110,97,114,100,92,111,107,101,100,109,100,104,108,109,95,103,106,101,110,108,94,97,100,111,102,101,105,100,101,101,104,105,95,108,112,111,104,111,97,114,119,106,100,114,104,103,99,104,104,113,110,113,113,98,95,101,117,110,110,113,109,95,100,99,103,96,99,111,103,111,123,98,104,107,89,102,99,108,103,99,92,97,76,88,104,109,112,105,96,102,103,112,94,92,117,101,112,105,105,101,90,100,104,102,99,118,99,109,97,100,102,105,104,112,112,106,114,96,95,103,105,104,108,107,92,103,102,98,107,110,100,103,111,113,110,108,106,107,103,101,101,106,108,125,116,115,105,83,96,109,87,104,110,104,113,101,109,101,104,114,98,111,97,86,102,113,110,105,94,100,107,93,103,102,110,102,103,108,113,100,100,106,91,96,105,110,119,98,81,104,108,91,120,97,103,107,112,99,107,98,102,110,109,110,117,107,122,109,106,114,104,106,109,118,113,108,102,111,96,108,120,99,101,134,105,108,113,106,90,107,106,101,108,113,102,104,103,117,105,113,100,105,110,96,110,97,109,95,114,102,101,103,100,92,101,107,109,118,116,106,100,90,112,112,104,94,103,95,104,115,107,104,99,98,110,105,98,109,109,98,103,109,98,109,116,111,100,107,126,102,102,106,99,92,107,108,107,107,113,112,100,109,103,107,116,115,101,109,99,108,114,104,94,105,105,109,106,107,104,109,101,104,109,105,112,83,105,100,109,114,99,100,107,114,105,99,110,103,116,109,101,108,98,108,108,110,109,102,111,99,118,109,103,102,111,108,116,106,106,105,101,101,106,101,104,97,106,103,105,100,109,90,100,106,98,104,112,98,110,97,108,100,106,105,97,118,104,104,108,100,98,104,112,102,100,109,98,99,111,101,95,105,94,116,102,99,105,110,109,106,110,100,96,100,87,114,115,105,103,99,91,102,102,96,96,97,110,121,110,106,103,94,107,104,95,98,114,107,110,101,107,110,109,114,114,100,115,104,112,117,119,101,109,136,123,125,131,131,114,162,142,145,159,150,123,140,132,126,124,148,131,84,124,119,110,114,101,113,98,115,102,97,110,110,114,110,101,125,108,105,108,99,110,102,116,92,112,106,101,101,114,124,94,109,103,121,83,99,110,98,94,94,112,99,107,79,101,102,115,95,92,106,92,108,87,92,100,107,97,111,111,102,103,122,88,115,113,105,99,97,106,94,99,105,103,109,117,120,104,108,101,97,104,105,94,105,101,108,100,107,99,101,103,98,106,99,122,101,101,106,100,111,114,110,124,100,107,97,98,104,110,92,114,105,102,106,111,107,102,106,108,103,105,111,107,107,81,103,96,91,87,104,111,104,108,112,105,102,109,100,91,105,104,103,110,117,108,106,110,100,104,103,113,109,104,92,113,106,109,111,99,92,98,113,101,99,109,116,95,107,110,111,109,96,103,106,109,108,103,124,106,105,106,83,99,119,101,68,111,98,113,102,112,110,104,102,106,122,96,105,105,103,104,107,107,118,110,105,104,110,112,94,115,108,106,104,115,108,100,100,109,88,115,109,104,117,110,103,106,97,109,113,113,95,103,115,102,109,96,109,115,102,103,108,92,105,99,113,102,103,100,103,113,103,100,84,73,104,98,103,99,111,107,105,107,96,109,105,113,103,73,110,98,110,112,115,110,99,99,115,105,102,110,102,99,102,95,111,105,99,109,102,121,103,109,116,108,102,100,99,104,113,108,108,102,104,104,120,110,105,103,102,108,108,116,106,99,116,112,113,109,103,100,116,101,108,105,101,110,117,107,101,110,106,108,92,96,120,103,113,100,105,103,106,79,111,107,95,108,98,104,108,112,98,122,98,96,114,96,110,109,96,102,108,108,102,100,110,106,99,126,100,97,115,112,92,98,103,108,107,108,89,95,99,113,108,103,101,108,112,114,113,89,102,105,95,103,103,94,108,116,100,121,99,102,109,109,104,106,92,99,98,100,104,109,107,109,109,99,102,102,109,101,111,113,99,97,105,105,113,99,117,111,90,113,104,106,102,106,119,117,113,101,113,117,105,98,108,107,105,116,108,113,100,114,108,108,104,95,104,95,102,105,89,89,104,76,111,102,107,104,97,102,103,90,102,108,99,91,95,108,108,103,117,107,104,107,108,98,104,104,113,118,100,106,93,107,121,104,104,94,94,101,104,93,102,107,117,106,101,105,93,109,108,106,106,108,98,99,106,102,106,97,106,109,99,105,103,104,108,103,109,89,113,109,120,110,100,107,106,101,98,103,92,113,106,104,112,110,105,105,109,103,100,87,110,103,99,113,115,105,106,113,112,112,103,105,95,101,107,101,107,77,107,119,113,109,103,101,106,110,97,105,113,107,105,116,113,105,110,100,113,112,103,110,104,102,98,92,97,102,114,120,102,110,87,103,94,111,104,105,109,111,97,113,107,94,97,98,108,121,105,104,105,103,101,98,110,106,95,102,100,102,105,94,108,105,124,100,107,108,112,100,102,106,99,104,110,113,101,109,115,96,97,102,119,106,98,121,115,120,103,113,102,105,105,95,106,101,104,112,106,103,101,109,116,93,107,104,105,96,100,116,109,106,80,120,119,106,116,120,110,95,99,99,116,101,99,87,121,110,103,96,104,109,104,105,108,111,91,104,103,114,104,113,117,92,111,116,102,112,112,109,102,114,100,98,100,95,104,101,107,81,112,102,98,96,105,103,113,97,109,116,103,120,93,113,113,107,111,100,104,85,104,108,102,105,96,98,104,106,106,118,98,96,108,98,99,101,111,99,121,106,96,86,113,93,111,97,87,106,107,107,108,106,110,96,115,93,100,117,114,95,117,106,94,101,102,116,96,98,97,98,99,106,114,102,107,101,109,102,104,103,98,100,95,94,99,108,100,101,101,93,96,94,103,108,111,104,104,103,103,91,108,109,99,102,104,113,94,104,92,95,75,111,110,108,108,119,101,101,102,109,109,83,105,120,105,109,100,104,98,99,103,104,101,104,95,109,107,109,105,98,103,113,105,103,109,117,100,100,97,105,103,102,104,83,97,102,110,102,98,104,122,97,93,118,124,97,106,112,98,95,97,103,109,88,106,110,100,101,88,95,104,104,88,104,98,102,103,112,108,96,111,94,119,93,98,96,100,110,93,94,103,99,100,97,101,98,108,104,116,103,110,99,102,106,102,97,112,96,113,97,89,96,103,107,112,124,93,100,108,93,108,90,99,110,112,105,106,101,117,116,105,103,99,94,102,104,113,112,117,114,117,104,98,87,103,104,101,102,102,110,95,102,108,104,103,121,116,97,119,112,106,96,102,94,107,93,98,115,104,99,98,113,102,86,104,116,99,120,113,116,94,94,104,84,112,95,102,100,104,100,105,114,109,111,108,99,107,107,88,99,93,121,93,104,86,98,98,101,114,106,102,103,128,110,93,100,88,96,115,98,112,100,106,90,105,98,107,106,92,103,109,104,95,96,109,110,100,96,116,111,106,111,100,95,103,84,106,105,84,113,112,99,98,111,96,97,112,102,97,110,94,111,99, +594.95081,106,107,104,86,98,106,105,122,97,108,108,98,110,96,93,113,107,105,120,106,107,94,96,95,94,109,96,95,110,101,135,108,97,94,114,101,104,95,114,109,100,87,98,111,99,100,95,98,101,110,96,98,101,109,98,116,108,93,102,91,105,102,110,112,104,91,106,92,103,103,126,102,101,98,99,111,90,113,111,108,99,106,97,102,109,96,98,112,110,103,102,110,111,90,102,108,86,95,103,91,101,102,91,108,104,90,104,99,106,105,109,109,101,107,109,105,100,112,97,108,111,123,116,109,113,105,112,99,109,116,105,103,93,92,105,93,107,100,105,90,100,97,95,108,98,99,105,111,107,99,97,112,112,88,103,102,106,100,109,102,107,90,102,103,116,98,105,108,101,120,113,106,102,101,111,105,81,109,102,109,105,97,100,105,100,92,99,94,102,102,112,109,98,107,109,99,114,105,110,114,97,109,79,101,96,115,97,113,112,107,101,110,103,104,100,106,111,110,99,105,109,116,92,117,111,106,105,102,100,110,111,101,97,109,108,113,108,117,107,103,113,102,104,103,102,109,108,106,108,95,104,106,94,102,88,107,105,106,103,100,109,99,111,114,103,109,106,96,99,107,103,114,94,108,101,98,112,102,103,90,108,103,100,112,104,103,96,98,105,103,100,109,105,100,117,95,114,105,90,106,105,94,104,103,81,103,95,107,114,101,89,103,97,101,97,83,109,109,95,100,103,105,108,118,101,107,104,100,97,112,122,108,124,108,107,110,96,84,104,105,109,106,105,98,97,121,123,106,115,102,118,104,108,115,102,105,97,121,108,96,98,114,93,110,105,100,102,105,72,104,109,98,109,99,113,141,108,108,109,94,121,107,109,106,102,102,108,112,104,99,111,104,104,106,106,99,120,101,115,102,77,109,99,113,100,97,92,102,101,101,97,101,101,106,111,90,105,112,112,98,107,99,108,122,104,98,101,101,94,98,102,98,103,106,103,100,102,102,96,113,114,101,109,109,106,103,104,101,113,103,103,110,116,88,109,103,111,98,110,97,103,88,100,129,99,108,117,107,103,100,106,99,121,103,102,100,107,117,102,113,98,106,106,103,104,105,106,109,111,110,106,124,82,75,102,99,101,94,115,104,105,122,109,108,106,126,112,104,109,104,101,109,109,113,100,102,109,109,106,101,98,104,112,110,101,98,109,105,87,102,99,108,94,110,104,116,102,112,103,102,102,101,101,98,114,98,106,101,96,108,121,100,98,108,95,95,96,112,91,101,101,105,104,112,107,99,108,86,111,79,104,100,107,104,103,109,84,106,97,116,100,121,95,107,98,104,107,105,90,117,113,112,108,111,108,111,100,108,100,103,109,98,106,103,84,109,99,102,119,106,103,106,108,104,96,110,105,107,104,102,104,101,112,95,101,98,104,104,104,100,113,105,97,118,112,140,100,95,98,105,109,114,103,110,98,104,118,94,99,112,98,110,110,118,108,103,103,92,98,102,114,111,97,99,84,100,116,94,109,90,112,112,102,112,92,100,101,104,91,108,114,99,105,99,101,102,110,110,105,116,101,100,101,95,110,98,105,104,105,105,104,106,99,112,103,108,115,83,91,98,84,104,106,111,103,95,106,105,114,100,96,104,107,91,109,92,115,96,101,105,120,99,99,102,96,99,102,96,95,112,98,96,96,99,98,125,104,112,105,99,109,103,97,102,118,100,102,114,102,105,106,108,109,107,100,103,96,102,101,94,99,120,110,109,117,103,103,103,109,102,100,117,111,108,107,100,100,121,133,95,104,114,104,108,99,105,107,89,98,100,109,105,99,100,107,92,107,109,108,104,108,106,106,103,104,106,103,106,116,112,108,106,94,104,107,116,96,106,101,111,111,97,93,91,105,103,110,103,107,109,104,105,103,98,83,103,106,101,97,107,116,103,110,98,107,103,114,106,94,103,90,108,105,109,108,92,98,105,116,110,103,114,100,93,93,91,91,111,91,109,108,95,104,95,107,121,104,100,102,106,105,108,98,90,103,93,101,134,103,112,106,104,118,104,100,101,87,102,99,109,94,108,108,94,100,108,110,117,100,85,109,108,113,111,103,107,106,110,108,105,97,98,99,102,117,102,94,101,132,95,104,109,109,112,104,108,114,110,99,102,96,116,104,95,110,108,104,107,103,116,99,112,93,103,105,105,103,106,105,111,115,113,109,98,106,99,108,102,96,100,103,109,128,100,101,109,108,96,101,104,100,105,117,107,103,99,94,106,94,100,106,103,95,106,118,111,96,111,105,103,112,110,104,99,98,113,103,106,103,105,116,111,101,97,103,113,102,94,103,98,94,94,142,104,109,105,122,137,123,142,128,137,125,140,157,144,131,164,133,131,131,164,137,139,119,136,135,110,103,112,113,107,104,110,115,102,105,110,107,111,116,110,114,120,113,103,106,107,102,99,114,100,99,88,113,104,103,103,117,117,113,112,109,100,107,101,104,109,110,102,98,116,107,111,112,105,97,102,104,96,113,102,121,103,119,118,116,99,109,114,106,103,114,95,104,105,102,94,113,99,108,117,110,104,112,105,92,99,121,98,109,117,115,113,105,107,105,117,104,103,111,75,115,104,106,91,103,87,107,99,104,102,106,95,104,102,104,95,106,97,103,113,122,121,86,108,100,98,105,112,114,107,101,108,109,99,115,100,105,104,117,97,103,103,101,104,104,93,99,90,114,109,98,106,102,100,104,102,107,111,112,115,105,107,109,96,110,112,108,111,105,103,106,108,105,94,98,104,107,106,106,110,111,112,80,101,97,116,110,121,103,102,113,99,113,109,111,95,100,114,100,102,114,112,102,102,106,106,102,102,108,120,101,104,111,108,105,102,101,108,116,107,110,106,98,108,101,115,101,113,93,93,100,109,106,108,110,99,114,107,106,108,116,104,113,110,105,117,126,114,94,111,114,119,98,116,103,102,103,122,101,105,108,106,106,123,109,103,105,106,106,106,103,115,98,120,117,109,103,105,109,117,87,110,110,112,106,110,115,111,106,108,112,99,113,108,103,98,111,106,100,131,138,106,100,105,113,105,114,95,117,99,104,94,105,106,123,112,103,109,114,110,112,111,116,99,105,108,111,110,129,105,108,111,96,100,109,96,106,99,99,101,108,100,107,114,109,113,104,100,100,115,97,102,113,98,127,118,110,108,109,105,96,96,99,105,104,115,113,105,119,113,102,109,110,108,103,102,113,107,111,109,97,111,112,105,109,113,112,103,112,109,100,108,104,103,104,103,127,106,96,99,109,107,106,113,104,112,121,108,117,107,96,112,102,108,95,100,116,105,120,120,112,98,107,110,109,105,106,104,94,116,103,102,111,108,99,94,108,101,99,110,113,110,91,112,125,101,106,98,102,97,106,103,107,96,121,104,110,103,104,103,112,103,109,99,100,109,103,122,114,95,100,99,110,109,108,108,108,104,97,112,109,103,102,98,103,99,115,96,107,113,111,95,132,101,110,105,101,95,101,92,102,109,99,104,109,97,106,99,108,113,112,104,104,107,106,89,95,105,102,69,94,105,111,102,96,100,115,91,102,87,117,110,98,110,116,107,111,106,96,102,113,94,108,102,106,119,92,97,103,109,101,111,98,113,101,94,109,103,107,113,123,117,113,103,106,106,101,104,103,112,98,94,102,113,91,103,110,109,110,86,113,111,116,101,112,117,87,93,105,114,96,115,107,117,107,99,109,109,103,101,109,100,107,113,104,95,113,110,105,100,110,92,121,106,114,140,101,104,101,102,110,103,89,110,108,101,106,99,117,104,100,100,107,107,107,96,100,106,106,109,102,99,104,108,103,99,109,104,124,109,117,93,116,109,117,101,103,114,101,103,104,102,95,100,101,107,106,109,104,109,117,97,110,106,112,105,102,100,109,99,115,100,108,99,111,99,108,111,119,104,96,112,115,106,106,89,107,103,98,113,95,109,96,97,108,103,102,104,110,110,109,114,105,102,109,112,106,105,110,113,110,106,116,113,107,99,88,108,114,113,105,103,110,112,102,105,106,121,102,111,106,107,95,108,112,104,97,96,110,107,103,109,104,111,101,91,110,91,105,109,113,117,98,98,110,90,107,102,104,95,106,110,107,113,100,97,109,105,115,120,105,98,108,101,92,125,105,106,113,106,117,105,110,95,100,108,109,108,104,111,106,111,108,105,110,102,117,73,107,107,98,106,104,102,110,101,112,108,99,104,102,113,99,91,91,112,91,108,113,101,115,104,104,105,102,90,94,109,102,103,108,87,105,100,97,112,106,117,107,119,101,112,101,113,97,105,95,109,92,98,103,112,103,106,111,113,111,110,102,108,106,112,112,112,107,121,121,109,120,113,113,105,101,111,104,106,90,104,109,96,114,110,98,105,92,104,95,111,110,100,102,102,100,117,99,106,105,104,110,104,101,114,106,114,109,100,107,97,109,94,104,100,105,117,111,104,98,95,109,102,98,106,121,94,98,117,108,112,100,112,103,107,117,99,111,111,106,112,106,108,107,110,116,96,95,103,110,102,103,116,104,108,103,107,118,117,103,109,106,105,93,112,104,109,95,117,109,90,112,112,107,102,108,117,107,104,102,102,98,109,100,99,120,98,102,105,93,111,105,108,113,113,68,94,116,101,114,101,104,99,95,106,123,107,103,116,115,99,104,98,88,101,106,109,102,94,90,93,94,94,105,100,111,96,99,104,102,116,103,105,115,108,111,111,107,106,92,97,99,97,111,119,103,107,114,102,108,96,91,105,106,98,96,110,105,120,115,95,109,105,97,102,118,108,110,109,117,119,114,111,95,96,85,103,99,116,99,102,107,108,110,99,100,101,90,89,120,102,104,113,110,103,111,101,105,96,105,103, +595.0918,109,109,92,98,104,104,104,112,82,113,99,109,100,107,74,110,109,118,99,97,99,83,102,105,107,98,106,104,103,101,102,102,87,108,105,100,99,105,97,109,103,108,97,99,109,121,107,100,86,95,105,103,111,97,91,110,141,98,108,102,100,98,85,98,107,111,114,105,108,104,118,99,98,96,103,100,109,105,99,105,111,97,99,106,102,85,100,110,95,109,109,103,99,102,99,85,99,106,110,116,100,107,97,106,99,106,91,101,98,92,90,98,110,98,105,113,93,105,99,94,109,89,103,102,102,102,112,92,108,103,104,106,95,108,102,101,110,111,86,93,130,111,93,96,102,107,98,90,98,91,103,89,109,102,99,114,106,103,104,108,100,95,95,105,111,106,81,106,104,95,110,108,90,94,100,114,95,96,113,96,94,97,96,91,100,101,104,89,113,99,113,109,103,111,105,108,96,100,100,97,113,107,99,98,102,105,101,113,101,128,117,96,117,109,103,103,100,99,95,100,93,99,104,102,98,114,100,74,103,106,103,115,96,99,103,105,107,105,102,112,112,108,106,106,112,99,89,99,98,133,99,107,95,112,100,114,98,106,100,101,91,117,102,95,106,96,107,95,108,67,117,110,107,111,114,105,112,92,112,94,109,101,110,95,112,101,94,101,99,98,105,107,100,108,99,105,112,96,98,104,107,99,99,114,105,115,105,108,103,109,96,110,114,105,99,113,105,91,109,112,92,108,108,103,117,88,108,98,112,102,111,109,111,112,111,106,114,106,97,105,109,101,106,113,102,93,104,95,111,97,103,98,103,100,111,96,109,94,99,108,95,121,96,110,100,104,118,113,115,107,108,100,115,109,100,101,75,101,109,112,103,106,103,118,91,92,98,104,121,93,104,99,104,100,105,113,109,114,99,91,108,106,105,98,102,104,108,100,101,99,99,78,105,113,93,106,116,103,113,103,112,113,95,118,104,100,95,101,98,108,100,99,102,107,103,83,104,99,91,102,102,108,116,101,100,98,95,99,118,107,100,105,103,107,116,109,111,97,110,101,115,110,96,126,116,109,112,99,105,127,103,103,102,100,96,104,100,103,106,108,109,112,120,103,113,102,104,109,106,106,103,104,112,103,101,113,104,113,114,100,109,103,88,108,102,113,105,106,111,110,106,119,104,107,116,100,115,112,97,108,106,140,119,113,106,82,105,108,115,104,104,90,94,108,95,115,103,102,114,110,114,110,102,72,102,104,108,107,116,103,106,100,104,112,102,104,103,122,105,102,104,87,97,117,105,102,108,85,102,104,100,108,108,99,111,101,102,94,93,107,116,104,109,95,110,103,112,110,109,99,115,104,106,117,102,110,105,118,114,88,97,101,97,92,105,98,107,102,98,107,106,92,119,104,105,93,104,102,117,117,111,110,102,75,96,94,100,111,96,100,110,112,96,106,93,113,107,96,85,106,100,105,103,111,107,99,102,102,95,107,118,97,101,112,110,105,121,110,98,105,122,101,111,107,72,99,106,103,106,96,96,76,120,115,103,98,100,94,107,115,108,105,113,110,102,106,101,107,98,103,100,113,108,111,110,95,107,102,65,102,104,102,95,91,112,110,115,117,110,108,109,104,116,102,96,109,109,106,98,110,101,105,107,111,105,105,109,109,99,109,108,106,98,100,91,105,91,82,83,103,102,95,109,104,96,100,116,116,97,115,110,110,107,104,101,110,108,104,101,97,91,115,99,99,107,114,105,119,101,109,110,117,104,105,119,105,98,113,125,109,114,111,103,110,107,116,119,126,100,110,111,107,100,94,110,94,110,106,117,105,90,106,102,113,112,104,115,110,101,109,103,93,106,106,111,108,123,102,106,98,110,117,106,103,104,117,110,108,106,102,101,105,105,104,98,114,104,104,120,107,106,123,107,109,99,112,112,101,112,94,103,108,95,104,103,101,114,112,102,104,97,99,101,98,101,92,94,104,116,117,114,100,103,95,93,115,108,109,122,97,102,112,105,115,108,83,83,108,111,101,103,103,102,104,108,83,100,113,109,99,105,119,120,94,116,110,97,103,102,105,113,109,114,113,95,116,106,113,107,113,112,113,124,101,97,84,123,96,89,109,100,98,110,112,97,108,99,96,109,109,99,108,103,117,107,100,116,103,119,105,92,109,104,115,106,105,106,110,105,104,115,109,109,107,131,102,106,99,107,103,99,101,120,85,107,105,117,93,92,102,108,98,109,92,104,110,97,110,108,115,105,99,95,98,113,103,105,87,100,103,110,103,105,106,105,109,100,96,114,107,104,101,105,113,109,116,97,99,97,104,108,126,96,108,98,128,124,94,110,104,104,104,122,102,113,119,112,115,135,120,123,134,128,148,130,130,152,156,149,144,115,125,117,139,113,109,133,113,110,116,114,125,108,101,113,99,103,110,120,97,95,122,114,110,99,101,108,117,102,104,95,117,92,118,112,101,104,96,111,110,107,108,109,104,103,106,110,100,107,118,109,109,113,98,92,96,110,100,109,108,108,108,102,102,116,101,104,99,98,103,121,99,103,92,99,108,110,114,104,109,103,116,109,96,93,103,105,107,95,92,96,100,101,111,107,107,108,102,98,109,80,113,132,110,100,107,99,95,96,142,102,102,111,107,113,110,116,100,109,93,103,95,128,119,106,100,94,112,103,126,101,83,98,103,106,111,101,99,103,112,105,91,107,107,112,104,106,106,107,108,106,100,109,118,104,102,120,103,119,107,94,96,109,105,114,103,99,75,114,106,114,110,98,107,115,113,109,125,111,108,119,90,114,97,100,98,110,97,111,104,107,109,98,98,99,103,105,104,100,113,104,109,113,103,94,107,108,111,102,109,108,114,114,102,116,102,99,108,87,107,106,107,88,107,116,103,102,114,99,101,99,109,107,97,98,99,116,113,105,106,100,108,90,116,103,104,102,112,104,99,110,103,95,105,103,108,105,95,109,103,100,106,110,96,110,120,107,99,118,107,109,106,107,110,100,105,106,107,100,99,114,94,108,109,109,105,108,101,116,113,107,111,104,100,106,110,95,104,106,109,95,105,111,116,100,100,110,122,112,105,110,124,100,105,115,108,108,101,101,109,113,108,107,105,103,95,112,110,113,98,114,96,110,113,106,102,108,108,102,121,107,102,116,108,100,119,103,108,112,117,106,111,101,101,102,102,107,108,98,112,98,112,101,101,100,99,107,108,109,131,114,108,91,101,108,103,111,96,105,96,95,103,107,111,104,105,112,91,102,103,105,113,105,92,104,109,101,113,97,105,101,103,97,116,102,106,95,100,126,100,80,104,98,101,100,104,101,99,99,107,107,104,115,100,109,119,120,108,115,111,94,104,102,120,121,110,117,91,121,99,106,108,116,98,102,110,92,103,113,120,100,106,109,95,108,98,105,99,95,103,104,105,112,107,89,113,101,108,101,100,97,107,111,125,99,117,94,112,116,109,112,87,103,88,103,110,105,105,99,102,114,104,97,113,98,78,110,111,94,102,112,107,102,120,98,108,105,114,107,109,101,99,99,93,111,106,106,91,102,112,110,105,109,108,100,105,101,103,109,94,73,118,100,106,113,119,102,78,99,93,103,100,102,115,109,112,103,99,100,117,113,106,105,109,103,95,96,100,106,113,105,109,101,107,99,105,113,102,112,103,101,106,102,116,108,112,102,117,113,99,112,107,107,116,108,102,100,104,103,109,95,103,98,103,98,106,104,107,108,103,107,95,102,104,112,107,109,115,117,108,102,105,84,91,102,97,103,98,104,107,112,107,96,113,109,105,117,105,104,107,106,93,100,107,110,108,105,101,104,101,112,107,104,110,106,96,108,102,105,103,100,100,100,97,100,96,96,108,101,97,100,105,91,102,111,119,110,99,108,97,99,108,95,95,102,100,101,110,104,104,113,80,113,96,97,115,97,100,111,127,103,109,101,109,110,104,101,87,111,107,114,115,90,106,95,98,103,115,115,109,103,103,109,99,112,98,104,105,111,108,116,110,108,100,113,102,113,102,108,96,103,105,99,98,117,102,106,105,117,106,106,109,103,105,116,116,102,116,99,98,100,117,103,103,103,109,90,115,101,119,117,101,91,116,108,106,112,102,105,111,101,100,109,115,96,100,106,76,109,102,114,97,104,102,107,97,120,107,98,101,108,113,106,98,116,109,101,110,106,116,116,108,84,107,107,104,94,99,99,101,107,97,102,104,99,102,113,114,107,98,98,108,104,98,111,102,95,98,111,105,96,102,95,106,106,101,104,92,115,108,104,102,113,99,101,94,105,100,106,115,106,102,102,106,100,106,107,97,113,98,109,92,107,106,110,100,100,105,114,121,96,105,102,108,98,122,104,111,103,94,108,109,105,95,110,102,104,108,97,104,107,90,105,114,108,97,104,100,111,114,120,97,103,102,106,98,100,105,116,124,106,110,106,115,100,102,102,104,103,110,103,105,95,112,112,109,110,106,102,117,94,111,109,106,98,96,101,107,91,96,100,100,95,117,105,102,110,111,104,108,105,108,95,111,113,93,106,99,100,98,99,115,109,109,115,110,113,106,107,108,103,105,108,111,112,92,121,95,108,98,104,105,88,101,107,113,100,112,87,88,110,101,104,95,103,105,100,83,104,114,102,111,91,103,101,102,104,98,107,98,109,117,96,107,102,106,103,96,102,103,105,105,123,104,104,105,106,104,107,95,110,104,94,80,112,94,111,95,106,95,96,104,95,92,107,112,96,100,116,112,111,106,107,106,100,108,113,100,110,101,117,87,104,87,114,94,114,90,108,109,106,102,112,103,109,108,96,103,105,103,116,111,136,92,110,103,88,102,113,98,99,96,100,118,109,104,89,113,101,127,107,81,108,112,97,110,97,113,105,113, +595.23279,106,105,95,126,110,98,116,106,109,82,72,93,98,114,112,109,109,105,107,105,109,99,99,104,97,112,101,108,107,107,111,97,84,95,115,108,102,100,105,104,118,100,103,108,100,111,97,94,97,113,98,121,109,107,91,101,91,96,110,92,112,106,107,83,98,116,94,106,108,104,111,99,104,106,109,108,105,103,97,94,104,95,115,99,84,106,102,109,109,96,109,119,109,94,99,126,99,100,95,111,100,102,108,99,106,98,102,109,106,105,101,100,101,99,92,104,98,103,100,109,108,108,106,116,104,104,89,100,101,106,124,107,100,107,99,108,112,106,101,103,103,100,81,97,114,121,112,100,99,105,107,102,95,93,93,106,106,102,96,94,99,91,107,104,105,110,109,87,109,102,99,107,98,104,99,112,112,89,103,100,100,95,95,95,109,102,100,101,103,97,98,104,99,109,112,120,98,121,98,105,115,96,112,109,95,104,103,120,110,109,103,102,105,103,98,101,108,117,100,105,115,102,98,100,87,102,112,114,110,110,108,112,112,92,114,103,106,107,107,92,100,102,113,108,93,104,94,85,103,108,102,113,95,106,95,121,92,102,108,102,100,108,105,115,95,116,105,94,96,101,101,106,111,94,104,91,101,102,104,98,102,111,109,102,103,104,97,103,100,104,107,119,101,99,103,101,106,108,98,90,100,105,110,107,100,108,112,99,97,112,105,115,108,99,100,100,112,108,109,111,103,105,111,109,104,108,103,109,101,99,106,106,106,103,113,110,110,101,98,108,107,106,105,103,112,76,106,109,109,103,105,107,99,104,107,117,116,105,106,99,103,91,101,102,89,109,105,108,102,105,113,102,111,100,112,97,102,110,108,106,111,111,96,110,105,110,91,101,94,96,104,110,106,110,105,100,102,101,113,118,96,108,112,97,111,104,107,103,100,96,103,88,116,118,92,98,105,102,114,126,115,96,102,118,118,102,95,95,106,102,102,107,108,99,108,102,102,111,106,104,110,97,120,104,102,116,94,103,104,104,96,101,106,114,108,104,109,109,118,107,101,97,111,115,108,110,120,108,108,94,99,124,108,96,98,105,100,112,98,116,99,102,115,113,98,117,102,105,99,98,109,107,102,100,89,96,100,99,112,105,108,103,104,117,101,113,106,110,115,110,105,100,105,104,113,101,99,109,105,100,114,101,110,101,103,102,111,104,104,114,103,109,118,110,102,114,111,97,91,102,102,119,108,106,114,102,106,97,111,122,97,117,98,91,115,99,110,99,139,128,101,108,106,110,104,116,107,113,109,100,99,109,87,118,105,116,93,98,108,86,113,113,104,105,106,106,116,112,107,112,96,105,99,96,120,112,110,101,109,96,103,99,109,113,110,105,105,110,117,101,104,102,107,99,118,103,104,100,118,99,90,112,87,101,105,90,111,98,97,99,109,109,116,106,110,118,102,103,107,93,101,99,109,99,103,98,114,102,124,110,102,109,101,111,115,104,112,103,106,107,99,112,120,100,78,102,107,95,105,114,101,95,103,113,94,125,108,117,112,110,111,104,111,119,100,102,105,113,105,90,109,102,104,105,103,107,103,114,96,89,71,106,115,103,87,111,103,113,95,118,109,103,98,95,97,92,101,105,106,95,114,102,120,96,105,102,113,107,108,111,113,104,100,109,106,108,103,101,104,110,114,106,114,112,126,92,109,109,103,112,108,92,96,117,103,111,94,102,115,100,107,110,108,85,102,104,102,103,85,117,99,99,98,101,97,97,108,112,108,113,109,108,109,117,104,119,102,104,100,104,110,113,97,109,103,112,112,75,114,102,97,101,92,102,108,113,109,109,114,103,107,99,110,96,106,90,108,98,103,109,110,97,102,102,107,103,111,110,108,103,112,100,96,109,109,111,110,100,117,105,107,115,88,97,100,99,102,121,109,111,98,95,109,98,117,100,98,110,122,100,95,110,120,105,110,109,82,108,109,119,100,133,98,100,108,100,112,109,100,95,105,112,98,104,108,84,110,106,107,107,88,114,94,110,104,95,96,109,101,106,109,106,110,109,111,97,93,101,103,100,113,102,85,101,94,106,98,108,114,103,108,94,104,116,100,120,109,90,102,113,104,114,108,102,104,118,105,112,86,99,110,113,112,110,106,111,99,105,104,108,89,98,109,93,114,86,97,104,100,105,107,106,127,99,100,104,107,109,93,117,92,113,100,94,115,101,102,110,105,97,111,108,106,101,101,116,102,109,101,106,94,103,109,115,96,104,93,113,110,114,107,97,101,93,117,105,103,105,96,104,109,111,98,105,101,103,104,107,97,108,111,112,105,88,108,109,106,98,111,102,102,101,119,125,119,112,94,107,129,131,130,141,144,151,126,161,145,134,145,143,140,130,132,132,128,133,124,119,115,109,105,108,101,111,112,103,104,106,100,104,110,106,106,95,104,104,110,101,102,100,103,98,107,113,108,106,117,115,105,110,113,100,97,87,97,111,102,113,111,99,97,94,112,117,118,108,107,102,110,110,110,114,121,105,102,111,96,101,81,100,107,97,103,100,91,96,91,100,93,111,103,104,96,106,88,112,90,100,105,97,106,97,98,121,93,101,96,106,90,100,109,102,112,111,106,100,104,95,108,112,109,98,103,100,98,117,102,126,103,107,107,108,100,105,77,102,102,94,116,115,76,109,93,107,108,96,101,102,101,113,99,104,99,112,108,109,95,108,101,100,102,104,95,110,95,113,117,102,108,108,103,113,101,97,116,102,99,106,106,101,104,97,94,110,109,90,102,107,100,102,91,99,109,102,101,108,116,99,92,109,107,95,108,99,94,104,105,107,95,107,105,113,111,99,98,99,102,102,98,109,96,107,93,109,106,88,103,106,104,114,118,108,103,126,106,92,104,110,104,116,89,110,102,104,103,103,110,97,103,116,99,110,95,111,74,102,100,95,104,103,106,106,104,87,72,112,109,91,96,100,92,97,100,95,102,106,96,100,113,106,102,95,104,109,102,100,89,92,99,101,93,97,106,103,117,102,99,107,102,85,103,106,108,84,104,99,109,94,98,99,101,102,103,87,102,104,106,105,87,96,112,105,105,97,94,94,107,91,104,86,104,103,95,112,103,101,101,111,97,103,102,97,110,97,98,87,89,83,106,104,89,95,96,97,109,104,105,98,88,109,118,108,92,110,102,99,107,112,91,107,125,108,97,94,111,117,102,105,101,88,113,91,98,105,99,98,103,105,117,116,98,105,111,116,108,100,100,105,99,123,107,102,113,103,91,86,101,103,98,107,98,112,100,112,98,113,106,104,109,114,101,109,87,106,90,107,107,90,116,101,104,100,95,83,104,98,85,109,91,94,105,108,93,95,100,106,100,99,98,99,96,103,112,110,107,95,105,107,106,98,91,89,118,105,105,121,99,119,123,108,94,111,103,105,96,105,87,89,96,107,102,107,106,108,103,98,114,95,107,99,104,88,105,111,109,101,105,107,110,105,101,100,113,104,109,111,106,115,100,99,141,102,111,98,108,103,101,107,100,99,98,104,113,106,95,113,94,111,99,104,88,102,101,100,109,103,105,102,106,107,103,103,109,114,102,96,103,108,108,98,98,98,110,102,94,75,103,102,109,110,101,97,104,94,113,93,101,102,101,101,100,98,98,97,93,96,104,102,96,103,77,108,105,112,103,101,102,104,103,96,106,109,104,101,99,111,102,90,83,99,112,103,87,95,105,113,109,104,104,106,81,92,93,105,113,98,103,99,106,99,100,102,110,94,114,102,110,102,111,92,107,94,96,108,91,96,118,107,94,124,108,111,103,102,105,105,96,102,98,91,103,105,83,99,99,95,108,100,104,102,111,97,102,100,100,107,105,123,104,104,112,96,107,102,100,98,112,108,94,96,106,100,91,103,99,107,102,104,110,101,98,93,112,95,102,107,109,100,110,125,101,98,91,111,94,118,106,92,104,116,106,109,115,105,117,108,95,101,102,103,86,96,90,111,105,99,100,99,102,107,110,110,98,107,100,81,108,95,105,96,103,108,96,109,86,111,107,93,103,94,98,97,106,112,103,99,95,111,111,101,107,98,97,104,94,108,93,103,104,91,105,94,101,104,110,110,110,98,115,113,87,103,105,106,94,105,117,101,105,96,109,99,88,94,94,104,106,102,93,106,100,99,106,97,79,107,94,102,100,102,102,109,113,100,98,100,106,118,101,108,119,96,94,99,95,106,114,112,103,95,104,98,106,131,88,100,95,99,111,98,97,96,98,109,99,101,107,94,102,113,110,101,99,107,108,99,109,95,103,112,109,116,112,110,109,97,103,101,100,119,112,98,105,95,108,107,108,101,101,106,111,103,103,112,99,106,116,101,99,101,96,102,109,108,97,101,106,103,91,99,113,95,99,94,95,100,97,99,96,101,111,103,99,98,91,109,104,103,96,102,87,109,99,107,105,96,102,110,109,100,97,95,107,105,111,105,98,117,95,104,105,102,105,95,109,106,109,113,103,95,109,96,100,100,101,85,113,93,107,103,114,95,98,103,104,116,103,88,92,98,104,96,115,99,107,108,105,97,100,92,110,95,99,110,102,101,92,94,104,117,103,103,96,103,106,97,109,107,110,99,110,97,102,100,108,99,109,111,106,98,108,99,101,112,97,98,100,103,103,101,107,92,104,84,105,98,115,107,105,100,87,106,97,108,90,97,99,106,109,107,102,106,101,95,101,106,104,99,98,111,100,104,101,118,102,117,98,113,110,99,96,92,101,122,84,109,93,94,96,102,99,104,95,106,109,103,101,103,89,104,113,105,96,91,104,110,115,104,94,116,100,110,99,91,121,101,97,115,107,84,101,106,102,93,98,103,101,99,116,106,106,105,95,104,105,100,112,105,101,96, +595.37384,101,100,81,105,94,104,93,92,105,98,106,100,102,98,110,95,96,108,115,116,97,109,106,106,111,114,111,97,105,110,101,108,82,125,110,118,104,95,109,111,104,104,109,96,98,101,99,100,90,98,110,83,102,107,126,101,112,111,101,95,103,95,99,91,102,99,114,111,96,97,94,118,111,118,113,109,106,101,111,102,100,111,92,96,102,110,95,108,98,97,101,104,110,96,95,96,100,99,85,91,112,94,101,111,114,98,112,104,106,104,92,98,111,118,107,99,99,83,101,109,103,104,98,100,100,100,103,104,111,104,108,105,103,100,113,86,104,92,103,103,107,97,92,98,111,94,102,113,109,101,105,92,102,93,104,117,101,108,98,105,103,107,99,103,98,117,108,103,106,95,101,121,105,100,100,100,102,97,104,105,99,105,105,97,99,93,111,90,112,105,102,113,108,102,96,104,104,98,113,117,81,89,89,105,100,92,104,109,108,99,109,100,116,102,105,106,99,102,109,97,114,118,100,99,104,113,104,115,96,89,102,106,106,113,113,117,109,117,113,94,102,103,108,109,102,96,113,103,84,104,99,98,107,106,111,106,106,101,96,107,97,122,104,97,104,110,101,89,105,100,104,78,108,108,102,103,96,103,102,108,89,109,108,91,98,107,92,113,111,103,106,100,99,103,97,118,107,105,95,115,104,94,109,100,91,102,106,97,100,112,104,107,117,97,97,99,117,99,104,105,104,100,107,112,100,100,107,99,103,87,111,98,108,102,98,109,95,103,106,105,102,110,106,107,101,94,107,103,116,101,117,112,117,105,93,105,107,144,106,104,101,111,106,102,108,98,90,107,99,102,114,97,108,95,113,95,103,103,97,97,132,111,95,104,96,99,100,104,100,96,114,95,102,110,101,106,103,100,96,104,104,103,103,98,96,103,105,101,99,103,95,92,109,104,102,97,113,107,99,94,108,101,103,97,103,110,108,85,99,110,108,107,107,104,106,122,104,106,109,112,109,100,87,111,97,102,93,93,112,107,99,102,107,111,102,102,105,102,114,117,99,107,108,109,113,103,103,120,105,91,101,117,96,101,96,120,100,112,112,116,102,109,103,106,98,100,112,109,99,108,113,116,102,104,96,98,98,96,98,94,105,100,111,120,102,105,99,118,117,106,114,100,101,95,104,110,99,107,113,93,99,101,108,112,106,117,115,111,108,95,102,108,109,126,113,115,109,97,94,113,98,108,104,109,111,97,112,102,120,96,106,105,111,91,100,107,105,106,93,102,105,110,126,100,102,100,109,108,98,101,96,107,101,108,112,92,110,100,110,111,118,116,106,97,105,116,116,108,111,95,108,109,109,100,105,109,108,112,115,105,108,98,105,90,105,104,104,101,102,113,104,115,100,94,103,98,93,94,112,94,106,94,104,103,103,105,110,87,119,109,115,117,107,110,75,101,108,108,99,102,101,108,105,93,107,104,100,102,93,100,105,113,113,95,106,118,114,107,100,112,111,112,103,113,89,115,116,98,121,107,101,109,109,99,94,115,110,100,107,108,114,109,100,101,98,104,100,97,109,106,107,95,99,115,106,110,111,96,110,114,100,101,106,103,104,102,105,102,105,109,101,125,126,118,104,122,97,104,99,99,85,100,92,118,116,88,99,110,97,103,108,104,100,110,134,95,118,109,111,101,102,113,100,108,112,97,108,106,94,102,106,105,105,103,106,103,107,105,114,103,100,104,84,108,94,109,97,104,118,93,107,104,104,106,105,92,100,106,95,104,94,120,104,99,123,106,111,108,96,98,104,108,105,125,102,109,109,101,102,114,118,109,95,112,106,103,99,107,109,109,113,113,104,104,128,106,108,94,86,100,97,109,117,109,104,115,112,95,94,100,108,99,107,126,116,118,128,103,99,111,104,112,115,108,106,112,95,87,116,99,114,116,100,99,92,107,96,114,108,87,105,95,108,120,106,106,106,112,112,112,114,110,110,100,100,90,115,100,114,120,104,101,102,114,115,116,113,104,104,103,95,101,110,102,122,105,100,115,117,108,104,111,105,93,112,115,96,111,102,111,104,100,112,106,108,98,113,107,96,105,119,133,103,100,104,110,106,107,113,111,120,80,120,95,99,105,117,102,110,105,106,107,114,114,113,96,113,89,116,98,106,108,100,103,113,95,110,105,109,103,101,88,102,117,98,110,92,101,102,100,111,107,89,106,102,98,104,102,92,98,106,116,100,94,112,105,100,102,119,100,119,100,112,110,100,112,108,109,103,109,101,98,100,106,109,105,105,103,103,102,97,116,102,111,75,106,108,110,94,115,105,113,100,101,110,113,105,100,115,96,103,105,112,101,121,117,108,136,130,130,136,139,134,143,167,145,167,141,151,176,145,140,117,129,123,117,110,102,114,104,112,103,106,112,112,110,118,100,103,95,90,110,95,99,101,109,112,112,114,103,116,101,101,108,126,104,104,120,107,110,107,106,104,118,94,112,102,111,124,107,107,112,80,106,119,107,102,117,106,97,99,121,100,110,103,90,101,107,87,109,100,112,105,109,109,102,115,102,101,87,112,115,114,103,109,105,105,119,106,102,115,95,99,102,100,115,104,109,113,97,108,112,101,98,113,88,113,103,103,101,114,104,103,99,103,115,108,109,116,104,109,94,106,110,117,121,103,103,103,103,93,127,106,119,100,113,104,100,100,117,119,115,102,105,102,114,102,102,100,92,109,108,106,108,116,109,111,110,105,111,115,108,91,109,109,117,108,112,109,103,106,103,108,108,108,103,125,105,110,104,83,108,107,99,104,96,92,103,113,127,114,104,113,106,109,112,115,105,102,111,107,111,113,116,109,111,110,108,107,97,113,106,115,108,112,107,113,109,102,104,106,107,106,108,123,111,110,109,107,110,103,117,105,106,109,106,109,117,108,105,120,104,105,100,99,88,105,105,102,107,115,112,96,93,110,98,106,101,126,104,102,102,98,98,108,107,104,112,103,110,103,113,106,110,101,100,111,115,113,104,106,105,88,107,104,88,102,113,106,107,100,105,116,105,117,107,117,96,95,102,111,107,112,121,99,115,106,97,99,100,108,111,106,99,106,96,112,102,100,105,100,103,104,102,106,109,110,106,102,86,107,100,117,100,102,96,106,122,105,104,108,112,113,100,109,107,106,103,112,104,115,107,104,106,116,108,113,112,113,104,95,102,109,112,105,92,102,107,107,116,100,93,97,96,103,116,103,103,107,85,102,109,118,116,109,105,87,88,100,112,99,111,92,101,98,106,96,102,102,93,98,107,107,113,103,99,100,104,103,123,108,101,104,117,107,108,108,99,115,98,100,102,102,97,100,112,101,102,118,101,96,103,106,109,113,112,101,104,116,108,112,100,99,105,103,108,104,114,117,109,112,95,107,109,102,108,110,108,110,102,98,110,104,107,88,109,115,102,102,118,107,88,112,108,111,106,109,96,104,97,97,110,102,75,104,101,111,112,106,110,98,113,117,102,108,111,106,100,106,96,108,101,110,117,89,106,122,104,114,108,94,104,109,103,102,110,89,110,112,117,103,106,99,107,106,104,106,108,103,101,111,95,101,112,114,97,106,99,106,104,90,113,111,110,106,103,117,112,107,109,103,104,108,115,118,106,105,106,109,102,109,100,92,106,104,117,111,100,120,108,80,111,101,113,103,100,105,98,116,110,96,109,120,93,102,110,114,112,99,102,120,102,105,106,106,104,99,103,102,111,103,92,105,101,109,113,99,101,114,111,105,99,110,104,102,107,105,95,109,103,104,104,102,106,108,108,103,115,99,112,106,88,108,111,99,107,106,99,98,111,113,109,107,106,85,113,112,109,113,96,110,111,109,105,110,114,110,101,100,111,97,108,96,105,106,105,107,107,88,109,117,102,100,106,104,100,101,108,81,108,103,114,97,101,103,109,100,103,110,107,102,106,113,108,108,98,111,117,105,105,108,108,103,123,105,102,109,113,93,112,115,116,100,106,101,103,105,107,104,106,103,108,98,129,119,107,100,97,110,115,105,113,117,99,97,116,105,102,114,116,102,94,103,115,100,104,101,111,96,103,94,113,108,107,113,102,104,125,109,103,104,101,112,104,105,108,114,104,97,105,117,105,103,102,93,104,107,106,107,112,108,97,99,103,100,103,107,106,109,99,103,107,104,115,99,99,94,105,107,105,108,117,94,110,99,104,108,108,104,108,107,91,96,123,100,132,113,107,111,102,94,97,95,97,102,103,84,106,101,104,92,99,113,114,101,100,114,95,104,105,96,104,119,93,113,107,100,83,105,108,111,84,113,94,105,122,108,111,102,117,106,102,112,97,105,104,118,94,102,108,88,103,113,101,108,114,120,102,106,109,102,100,105,107,94,108,115,109,105,118,108,109,105,108,99,119,110,98,116,99,107,106,80,107,110,102,110,109,111,103,96,112,101,110,95,99,102,106,109,117,108,103,100,103,99,103,107,106,113,114,112,99,107,103,112,114,95,109,110,110,102,99,104,106,103,100,102,101,113,104,102,103,100,117,134,99,108,101,112,98,105,100,115,100,109,105,100,90,99,102,102,99,95,102,107,103,105,108,103,108,102,100,106,101,106,104,106,110,111,100,110,108,110,95,90,95,100,106,102,96,79,93,122,119,107,106,101,102,99,104,103,79,103,110,101,98,111,96,108,95,109,119,98,104,102,106,103,96,75,95,113,106,109,100,106,123,106,112,102,95,101,107,90,103,99,99,86,110,102,100,113,104,113,107,97,113,103,102,90,119,101,125,111,79,93,102,105,98,109,104,106,116,114,102,103,112,110,104,111,117,111,114,89,116,96,112,97,101,106,91,116,100,113,108,106,95,117,99,93,98,108,107,90,103,114,115,106,109,84,105, +595.51483,99,107,97,93,114,100,105,103,81,109,86,104,102,102,94,99,106,108,113,106,120,97,93,102,101,104,127,79,73,108,107,112,74,130,109,89,109,105,127,95,109,101,97,90,100,113,100,97,97,86,98,118,83,102,96,94,95,93,112,83,96,114,112,92,108,113,94,99,89,94,110,102,102,111,106,102,100,107,107,112,88,103,117,104,112,101,103,97,131,127,114,103,105,105,108,96,114,101,93,87,103,100,101,99,116,119,104,95,105,99,102,101,95,96,118,100,80,107,96,97,107,103,103,88,107,91,99,100,97,117,100,106,102,112,98,115,113,109,100,109,104,101,90,104,107,105,97,104,101,127,93,99,107,102,95,98,87,97,110,102,100,95,120,109,109,99,99,109,109,108,100,115,113,102,116,107,111,97,92,128,106,99,107,110,103,99,104,100,103,102,82,95,92,108,113,105,81,109,94,98,103,116,94,103,108,92,98,104,101,108,105,99,99,102,108,91,111,112,99,103,96,119,102,95,108,100,106,114,100,100,104,99,105,120,105,108,104,108,107,103,113,106,109,103,117,90,102,104,91,104,102,91,113,98,108,108,102,108,102,96,97,100,108,108,97,108,105,91,105,103,112,96,115,124,102,113,109,107,100,105,105,106,108,99,97,113,92,112,105,100,82,104,91,109,114,106,112,109,102,113,110,106,111,117,98,109,108,101,100,114,94,105,100,111,96,103,98,100,110,105,109,99,109,117,109,109,114,96,114,121,94,122,118,109,109,106,123,114,100,111,96,108,105,113,117,103,108,114,107,113,94,99,106,108,109,118,104,110,105,95,106,108,105,101,111,87,112,111,96,92,98,106,113,113,108,103,95,111,117,98,121,108,114,101,109,103,99,101,106,100,115,92,101,104,102,108,114,103,90,97,110,106,114,108,108,113,87,102,105,88,97,107,95,111,93,104,98,100,111,109,109,104,106,115,102,96,105,111,102,110,104,94,109,102,97,81,90,117,101,92,112,99,112,104,106,108,106,108,111,114,98,104,103,103,106,109,87,100,109,103,95,97,111,102,112,112,105,111,104,106,96,112,103,104,93,97,100,109,117,86,100,113,100,108,97,103,108,106,106,103,100,99,104,106,96,100,104,104,96,100,127,96,94,102,120,104,103,107,108,96,121,113,113,112,109,112,110,95,97,101,102,106,102,101,115,95,112,98,115,106,103,115,107,98,99,105,102,98,103,116,106,94,99,112,103,103,100,99,115,98,110,109,103,104,113,111,88,105,106,108,101,96,113,110,102,93,109,117,95,95,94,104,88,103,115,108,98,106,107,92,104,99,104,99,110,96,105,113,109,101,113,113,112,112,104,108,113,105,105,103,101,108,98,87,103,107,98,102,99,99,103,96,109,100,97,109,105,103,109,97,102,106,108,96,93,114,101,101,112,108,108,105,98,109,100,105,98,101,108,89,109,108,106,101,100,92,118,102,101,99,114,108,108,113,114,110,105,111,102,99,112,107,106,102,100,102,103,93,114,116,104,116,94,101,108,110,106,114,95,103,99,116,106,103,92,93,105,100,100,105,110,100,107,107,106,102,100,111,106,114,100,100,100,95,104,106,106,124,101,80,102,101,108,100,92,110,107,111,116,102,109,106,100,108,105,105,112,106,104,113,114,104,101,97,114,99,102,114,99,108,108,97,90,96,113,105,98,107,103,99,117,92,94,100,118,104,93,101,101,105,124,116,108,98,105,103,98,99,100,105,109,106,103,103,88,107,113,101,110,105,99,112,118,105,95,110,97,100,103,91,103,105,100,95,103,108,104,97,109,102,97,112,116,105,114,109,106,109,98,106,110,94,104,110,89,107,102,107,126,105,111,116,99,101,101,115,107,82,104,112,111,102,104,102,99,100,119,99,113,110,107,104,110,108,100,98,106,87,103,109,111,85,100,99,91,100,103,106,120,93,109,101,104,110,109,111,100,103,110,111,92,97,106,104,117,105,106,112,105,110,94,123,105,114,106,101,86,110,103,104,105,98,96,106,100,109,111,103,112,117,101,104,105,104,107,96,98,101,107,102,113,116,109,107,112,101,109,91,93,98,102,103,105,95,126,99,108,103,111,104,103,99,114,96,97,102,94,104,107,110,99,116,100,113,103,107,102,102,103,108,96,110,122,109,102,91,103,103,93,100,108,95,106,107,107,93,108,91,95,91,104,113,111,104,109,117,109,109,109,95,115,103,91,99,91,98,103,91,98,105,81,105,102,107,99,91,96,104,99,103,110,109,76,96,108,108,109,108,95,98,107,107,102,100,97,111,111,122,105,100,103,116,108,86,111,108,102,96,106,95,103,112,116,102,124,100,117,121,117,98,132,127,148,152,142,110,134,127,150,138,140,147,119,141,116,130,113,114,108,112,103,116,84,111,106,106,108,121,113,120,99,104,129,110,89,94,115,102,112,97,93,97,91,107,100,112,113,93,112,113,109,97,106,101,109,101,108,102,114,111,93,103,119,111,99,104,100,99,102,112,92,121,100,110,119,109,119,103,101,106,121,95,97,108,112,110,105,108,101,97,102,103,112,99,98,108,101,112,92,99,104,101,108,104,117,106,104,98,110,87,106,91,104,106,99,102,112,107,113,79,93,99,106,98,103,113,100,97,102,67,107,107,107,101,135,108,97,113,101,109,103,101,102,97,80,100,115,90,109,98,110,101,107,104,103,103,110,114,110,97,98,99,108,108,105,107,111,120,101,91,106,101,105,108,106,106,94,104,101,110,125,95,102,116,97,108,94,117,114,105,119,109,96,96,101,95,117,109,99,88,104,106,116,104,114,102,117,120,105,104,112,105,104,125,84,111,95,96,88,100,103,94,95,105,115,104,102,107,112,107,112,111,98,109,107,116,110,105,108,117,99,106,112,106,98,100,107,100,116,107,101,103,100,104,107,104,101,102,104,103,122,96,95,124,105,96,110,104,97,101,105,110,104,99,111,104,78,106,100,117,119,109,97,112,106,102,98,93,96,119,99,108,104,113,103,100,97,105,90,104,116,108,107,118,107,101,109,109,113,95,81,103,102,104,107,104,97,104,113,98,99,106,111,109,105,96,101,103,107,99,105,96,102,94,102,102,101,88,105,101,105,105,113,99,111,87,109,109,97,106,93,101,103,117,107,104,107,100,101,105,95,96,97,108,107,99,105,112,102,102,105,104,89,120,87,89,117,110,90,110,102,117,105,93,105,108,113,112,111,98,97,99,105,112,109,104,100,98,96,104,103,107,114,100,104,105,116,89,110,112,106,96,108,102,103,105,100,84,115,115,109,96,98,96,105,86,115,98,97,102,109,109,99,102,102,100,109,121,109,108,120,99,102,104,111,98,102,106,104,82,96,102,93,101,110,113,113,101,108,95,109,101,117,122,101,98,112,109,109,100,112,110,117,99,101,105,109,101,97,107,103,133,111,116,98,106,113,104,104,110,108,111,106,99,100,96,106,112,110,100,100,106,100,106,107,105,108,102,98,108,109,104,91,103,113,94,107,106,110,106,99,124,101,111,73,111,106,103,91,104,113,86,90,96,90,91,105,109,117,102,111,99,98,111,75,116,106,104,109,116,110,101,112,98,90,98,98,119,106,108,88,96,109,120,96,99,100,105,100,91,105,107,100,92,94,100,103,99,118,102,90,102,101,116,101,99,106,105,116,102,112,98,113,97,103,102,100,108,121,97,108,103,104,96,92,99,107,112,113,110,103,97,105,97,107,100,106,95,103,100,101,102,105,107,110,104,109,107,118,108,84,114,103,104,93,115,103,101,102,106,109,101,106,109,92,117,94,98,87,99,97,98,100,103,94,108,108,106,94,101,110,102,95,93,94,106,110,98,99,95,104,111,94,119,108,131,115,95,97,101,95,98,96,111,106,105,96,101,120,101,99,85,102,116,98,104,103,104,107,109,125,111,100,105,109,103,103,108,93,98,105,101,96,104,97,98,106,109,102,115,114,102,93,104,106,113,100,96,103,104,106,111,102,107,99,111,95,93,98,111,114,92,88,99,99,106,114,100,109,104,106,89,87,101,102,116,103,104,108,88,103,103,95,100,109,106,92,111,100,111,111,108,100,102,102,109,103,104,109,102,99,102,102,109,112,111,104,83,73,99,114,104,86,90,105,107,116,101,102,113,101,117,73,99,113,111,110,86,96,101,114,99,96,107,96,96,110,107,116,91,108,92,103,99,93,112,98,99,105,100,102,90,118,97,106,102,94,90,114,99,103,111,120,104,108,105,109,110,104,116,92,100,106,104,118,90,102,113,91,118,107,121,98,108,105,102,92,108,120,104,110,96,106,97,104,101,109,100,99,114,106,111,114,100,106,104,112,111,109,98,112,103,108,95,101,97,118,98,108,88,74,91,98,116,92,109,94,111,104,105,96,102,87,97,102,97,100,97,101,111,95,107,100,105,113,103,108,109,101,97,110,121,109,103,96,107,107,93,120,104,108,111,99,109,96,98,106,115,113,92,96,92,103,108,105,98,96,110,74,101,96,104,95,106,91,103,122,97,98,110,105,99,89,103,102,99,103,106,115,105,100,112,96,112,102,94,88,96,102,110,99,93,95,108,102,105,103,103,105,105,99,97,109,112,111,105,111,100,100,110,106,88,115,124,94,97,110,94,102,110,105,103,101,91,107,108,103,99,106,103,100,117,102,103,94,102,106,107,106,106,96,106,108,100,100,121,91,101,107,96,108,94,112,87,113,100,99,103,110,108,110,107,83,98,110,99,105,105,93,95,108,89,112,99,100,102,95,100,97,110,103,110,93,93,116,87,102,107,88,108,96,95,90,108,94,103,95,109,117,99,110,110,111,83,111,109,98,101,93,97,118,119,106,98,106,111,110,105,105,102, +595.65582,91,100,92,100,114,109,116,98,105,109,106,129,105,102,110,105,101,107,117,111,105,100,109,102,112,94,104,112,96,95,96,101,98,103,97,103,102,112,104,108,110,107,116,97,114,112,108,102,107,106,117,104,107,108,106,105,114,100,104,88,96,100,112,96,98,104,91,109,105,105,110,90,113,105,96,105,94,105,113,123,115,117,110,105,102,101,107,118,109,99,100,98,103,106,100,103,106,113,115,120,102,102,96,97,110,110,99,90,111,106,101,95,109,98,100,103,108,103,100,95,97,114,107,107,102,98,115,93,120,113,99,116,108,111,109,99,106,94,104,104,112,99,97,114,100,99,101,112,111,103,103,114,99,103,102,112,104,103,94,101,99,108,104,97,111,104,110,108,65,104,100,99,99,113,117,110,103,96,107,100,95,116,99,113,120,107,109,105,106,93,102,104,91,103,98,106,98,110,108,93,113,107,115,103,95,111,110,100,106,112,95,98,105,110,85,97,120,86,107,95,114,101,97,109,105,104,113,112,103,107,98,97,91,112,109,104,81,92,104,105,109,104,114,104,103,99,117,92,106,106,91,97,95,98,96,95,94,109,99,107,103,90,109,101,86,102,115,104,99,107,103,95,114,99,110,100,117,112,110,106,115,101,105,120,119,112,97,97,105,95,94,105,109,92,104,98,107,100,100,100,99,102,104,110,104,99,98,111,105,95,101,121,93,108,108,103,105,103,105,116,98,99,104,106,95,102,105,99,107,100,109,106,107,106,101,100,97,96,114,100,106,102,107,96,96,111,104,108,106,100,109,106,104,111,104,108,103,101,101,104,104,100,115,101,106,98,94,108,108,110,107,104,110,99,112,87,104,123,103,113,106,105,88,102,106,105,106,98,107,103,105,99,91,110,113,82,99,106,101,106,105,95,95,102,103,104,99,104,125,99,85,98,124,102,110,104,111,108,108,91,102,109,103,91,87,98,106,100,104,102,99,107,109,109,103,79,99,109,95,103,105,98,111,95,113,98,96,96,102,111,104,102,105,115,106,91,107,118,102,125,93,89,106,117,107,99,108,106,109,91,104,100,110,96,102,118,105,118,106,97,94,111,107,106,103,102,106,97,100,106,100,98,118,101,109,110,102,99,114,78,108,103,117,95,102,104,97,97,123,102,105,110,128,99,103,90,100,109,107,91,104,101,111,114,125,101,103,107,110,111,113,96,107,102,104,97,104,113,103,108,118,117,110,113,109,104,111,103,110,113,111,107,104,104,94,112,108,110,104,98,112,103,97,106,102,106,124,102,111,96,101,107,104,110,102,118,102,103,102,96,102,98,115,99,112,117,103,102,104,93,98,99,101,107,109,100,102,114,100,100,95,98,104,79,71,106,97,64,111,101,96,107,114,110,101,103,112,99,114,106,110,106,103,100,112,100,97,109,95,97,108,92,89,113,105,104,95,98,85,95,104,103,100,104,104,111,107,110,116,102,107,116,107,96,109,102,113,113,109,102,107,114,104,100,104,117,109,95,116,108,112,105,108,104,98,96,102,107,109,106,99,77,103,108,98,109,110,104,101,105,103,108,101,113,122,114,103,114,98,118,103,84,110,112,105,105,105,98,107,104,104,96,102,95,105,109,112,102,104,91,104,95,107,118,98,94,88,102,100,105,107,121,106,95,110,105,118,101,101,96,114,115,109,101,94,92,99,113,107,115,101,96,97,100,103,104,97,99,105,97,107,114,101,105,111,96,103,110,66,87,108,103,114,107,96,106,109,109,96,99,114,101,117,97,105,102,109,111,98,111,118,91,112,105,110,113,100,100,91,106,105,104,95,102,102,97,103,108,104,92,116,108,95,110,87,102,113,99,117,106,111,112,96,103,110,116,103,101,106,101,106,120,111,102,102,106,110,104,108,112,102,110,123,105,90,95,99,103,122,101,103,102,101,112,102,104,110,114,105,116,108,92,102,109,101,105,94,111,102,118,110,95,110,113,102,106,108,99,101,95,91,112,99,114,108,106,113,101,85,112,113,109,102,106,110,95,106,108,101,102,102,113,104,92,106,100,121,105,109,112,111,105,102,109,101,107,104,100,114,101,107,109,108,102,106,97,114,109,108,99,103,110,115,143,104,121,105,94,109,105,106,100,99,109,111,98,112,109,95,110,106,103,122,107,100,125,90,108,113,109,100,110,107,93,117,87,101,96,103,90,104,93,103,102,97,99,106,103,130,109,95,114,113,97,98,100,106,109,103,106,97,106,99,109,98,94,109,104,109,108,92,103,107,99,108,109,100,103,89,107,104,114,98,104,93,109,122,102,107,104,111,111,95,100,107,131,105,95,96,110,117,101,115,121,107,112,122,138,138,118,123,128,123,153,116,148,128,127,120,168,121,126,140,132,112,115,119,102,127,105,118,103,113,114,117,114,114,106,108,104,95,106,116,111,111,108,118,118,107,93,112,111,90,114,113,117,121,107,109,92,111,106,114,99,101,99,87,101,115,106,109,98,108,117,94,108,102,105,121,104,107,109,106,110,111,105,101,112,107,104,106,92,96,108,123,102,112,106,96,103,106,108,114,105,104,100,101,105,109,87,101,84,100,102,102,116,98,105,105,104,111,111,112,102,105,121,112,82,108,97,110,99,112,93,95,100,110,107,91,95,112,112,107,95,91,110,109,108,112,108,114,113,96,108,94,108,106,106,110,102,79,108,105,105,105,115,114,106,101,109,101,107,102,99,125,100,111,114,100,104,101,102,96,108,101,109,103,103,112,100,113,115,110,103,102,97,98,109,110,114,99,87,101,96,114,110,110,101,104,107,106,122,106,83,104,103,113,107,113,98,105,115,110,102,101,108,102,126,105,104,113,92,105,107,106,108,104,105,110,106,103,100,110,110,120,102,106,105,120,110,108,97,93,92,100,92,105,113,103,113,99,106,108,94,115,105,108,107,106,112,108,99,101,111,110,113,121,85,97,106,113,121,103,105,110,105,107,103,113,107,112,109,103,95,99,106,105,106,102,101,106,109,98,109,75,116,95,121,103,113,107,103,114,119,109,97,117,106,115,84,109,96,104,106,92,123,90,107,103,113,118,101,106,96,113,116,114,101,118,115,106,100,103,117,106,105,96,106,113,108,93,98,101,94,110,106,117,107,96,102,121,99,108,103,124,113,113,105,114,103,109,104,92,106,110,102,109,103,110,107,104,109,108,102,116,105,105,93,104,103,110,114,103,110,100,96,100,105,108,106,110,113,108,119,113,100,99,113,99,102,100,109,97,112,106,94,109,106,99,115,102,96,109,98,104,108,97,107,96,102,98,107,95,105,105,98,75,103,82,106,99,106,109,103,113,111,108,98,112,107,95,100,106,101,106,107,104,97,107,102,100,109,97,105,116,107,107,123,97,104,99,112,104,96,87,114,99,98,103,110,99,102,95,104,109,112,102,120,103,96,120,113,104,111,105,106,113,109,105,103,115,103,106,105,101,116,112,111,110,115,106,113,97,111,106,109,98,113,80,101,111,105,106,108,114,98,96,107,88,110,91,111,109,92,117,99,99,99,95,113,101,103,116,111,98,98,107,91,116,108,111,116,108,106,114,93,110,108,103,106,91,104,116,98,90,101,113,102,100,93,100,103,91,102,103,106,101,109,112,113,105,106,105,119,91,82,102,98,107,99,100,112,100,108,97,95,104,95,95,104,117,101,103,111,99,111,110,104,103,101,99,109,111,102,107,114,105,109,116,94,111,106,108,103,105,102,108,104,106,115,131,108,103,95,106,111,109,88,120,105,102,106,109,106,98,99,116,105,112,103,115,101,114,105,95,108,105,103,98,110,98,105,101,103,95,98,107,97,101,106,114,109,108,96,103,103,102,119,98,113,101,98,106,105,98,104,104,124,98,108,109,94,107,95,103,102,103,103,110,102,100,99,116,104,105,104,102,120,107,98,111,107,102,113,110,102,108,119,100,101,106,106,111,111,105,99,116,105,96,102,97,103,97,113,99,97,105,116,113,98,104,103,90,113,102,112,105,99,119,108,96,109,105,104,103,111,115,110,110,100,102,106,90,101,105,94,103,94,105,92,99,112,98,90,109,115,99,106,116,115,98,104,111,91,105,107,108,95,108,119,100,93,103,98,96,98,96,91,100,99,102,111,92,104,99,96,113,103,115,100,101,104,114,117,81,99,91,116,120,97,96,109,98,111,92,103,102,110,109,106,86,100,94,98,102,105,106,105,105,114,102,111,118,100,99,104,113,109,108,114,94,103,105,114,111,99,104,103,88,104,102,113,106,103,105,100,116,110,108,111,100,97,105,110,113,105,110,112,110,101,106,103,104,92,107,95,108,105,102,80,100,115,104,116,96,106,114,106,92,104,99,109,115,104,100,103,117,100,115,85,102,96,89,103,112,108,90,101,99,108,112,103,105,111,103,113,99,100,101,108,105,99,96,99,111,88,95,107,109,109,99,96,90,107,100,88,108,106,101,103,102,112,105,97,102,110,110,100,108,102,87,104,98,118,109,103,106,112,104,102,98,104,97,91,102,103,109,89,91,102,112,109,101,91,101,104,106,104,96,109,110,116,112,114,109,97,109,107,97,113,105,117,99,98,91,110,118,106,112,94,118,106,99,104,101,96,106,106,98,113,107,102,104,110,113,107,95,99,95,99,109,99,104,102,104,106,108,105,95,89,92,113,103,98,109,103,104,94,103,112,108,98,93,99,107,118,114,99,109,107,100,104,108,78,93,99,116,100,94,98,97,106,98,93,104,104,103,95,110,105,96,101,109,103,110,106,97,106,100,112,122,100,95,98,97,103,106,101,100,120,108,106,92,96,97,106,97,111,115,100,126,102,102,80,92,104,106,103,107,120,110,104,81,101,91,112,95,104,112,95, +595.79688,123,100,92,107,102,102,101,103,95,121,106,90,90,98,110,109,72,100,102,117,102,103,89,105,98,103,104,102,116,103,98,105,102,98,100,100,123,102,115,101,88,106,101,98,100,103,104,99,90,109,111,96,92,107,107,98,106,91,122,98,95,97,120,113,97,105,99,108,107,112,112,107,102,122,90,107,103,102,108,106,102,102,103,108,107,93,118,112,95,99,90,101,109,106,98,100,100,96,102,72,104,100,103,109,93,95,112,103,105,103,103,113,109,105,107,104,111,113,103,104,107,102,101,110,115,111,107,105,98,107,109,106,103,105,103,115,97,102,102,111,110,101,100,101,105,103,117,124,111,104,113,109,113,90,86,108,110,103,107,101,94,102,101,112,103,88,112,95,93,96,118,100,117,108,107,100,113,106,111,106,107,103,103,111,93,103,99,98,105,103,107,99,100,81,103,100,114,106,95,105,106,106,99,101,98,102,102,107,117,103,113,105,102,100,101,105,101,103,111,105,94,82,105,108,95,103,105,101,109,105,114,101,103,105,103,109,106,117,97,106,106,93,113,109,111,99,98,110,97,114,104,85,109,101,91,98,103,100,87,117,111,100,109,104,100,103,108,101,95,97,110,101,110,121,107,101,99,118,95,97,104,110,109,118,95,108,96,120,113,77,98,117,99,103,106,107,103,102,112,98,107,115,106,117,107,100,105,100,92,109,100,112,104,103,118,105,77,102,97,96,99,106,107,106,113,90,104,90,108,116,104,104,107,102,105,113,102,97,107,103,99,96,106,100,103,124,99,97,117,103,120,109,108,101,109,97,100,101,105,111,106,93,93,105,111,100,106,108,103,108,107,98,109,109,102,86,102,107,111,106,113,108,108,105,109,111,103,99,109,105,120,109,103,104,113,96,95,94,111,111,100,94,99,101,99,111,104,116,110,97,102,100,110,106,112,105,111,109,99,99,98,110,99,113,100,108,109,93,107,103,94,100,109,86,101,106,99,99,106,109,115,91,106,108,93,99,102,104,110,112,110,94,100,119,110,107,92,90,111,105,116,100,101,99,102,117,105,110,107,107,98,99,103,110,106,105,94,108,93,110,100,108,109,102,113,110,116,104,103,104,100,110,101,109,99,103,101,99,113,115,116,104,91,104,107,113,91,106,98,99,109,104,112,103,103,103,110,107,105,108,101,92,104,106,99,106,106,100,102,108,105,108,107,97,107,104,95,103,99,96,103,105,103,107,109,104,108,105,105,103,106,116,112,103,98,102,100,106,102,100,107,99,108,95,95,108,125,132,110,106,97,98,112,118,111,96,99,110,104,107,104,86,101,104,104,115,98,105,106,113,108,112,106,107,99,105,106,114,114,101,99,103,98,103,103,95,95,106,109,104,105,84,113,99,113,112,95,104,93,114,112,110,94,109,103,94,106,105,93,105,100,96,98,98,106,109,87,109,87,105,111,107,112,102,100,100,98,107,110,104,97,116,79,106,102,109,112,105,103,107,100,100,105,103,100,100,106,101,101,105,125,102,113,103,129,122,98,106,107,91,117,109,111,85,108,91,93,104,106,113,103,122,100,104,108,103,103,100,97,110,106,102,101,104,105,98,104,108,88,95,110,106,98,106,101,106,111,114,109,94,103,95,97,130,111,105,100,112,100,99,101,96,105,108,108,125,97,112,104,106,108,103,108,107,120,109,107,111,95,95,116,97,102,114,66,110,100,102,99,101,109,110,99,110,97,107,102,104,109,107,102,109,109,113,107,101,98,107,92,94,106,105,113,108,103,109,113,113,99,105,93,114,95,95,99,109,101,97,96,109,108,103,99,93,107,98,120,112,106,98,104,108,98,110,126,112,121,118,80,108,76,80,117,103,109,110,107,99,108,92,104,113,108,98,108,113,101,107,102,104,112,100,105,100,111,103,101,102,100,100,96,104,98,99,102,101,99,109,102,103,105,86,108,106,98,97,100,92,94,105,113,103,88,102,96,106,114,101,100,103,105,113,99,116,92,113,96,113,102,105,120,112,111,107,111,119,102,95,101,108,110,112,105,109,121,89,99,112,99,99,102,116,116,111,101,104,99,106,112,116,98,101,97,102,100,102,95,116,100,110,103,116,120,97,106,124,109,108,109,117,107,103,106,100,114,96,114,103,99,117,100,96,102,105,97,110,90,108,98,106,95,94,109,102,90,123,108,93,95,104,97,103,102,102,101,128,102,94,103,107,107,112,94,110,129,100,108,106,101,111,103,97,113,87,102,102,111,115,107,108,106,128,95,121,117,106,91,91,90,98,99,94,108,91,112,99,109,109,104,106,116,113,112,104,105,114,111,108,113,104,106,99,115,111,122,99,121,112,119,141,148,126,133,151,163,149,138,134,141,140,128,140,126,120,132,129,132,114,111,125,108,88,107,110,115,100,110,110,103,96,117,107,89,107,108,115,103,116,102,98,113,94,98,113,99,101,100,87,112,116,100,105,103,97,97,101,99,88,101,106,102,102,100,105,110,109,105,95,96,109,98,103,106,105,109,93,109,101,95,101,98,81,96,99,112,103,98,114,107,112,99,111,109,101,103,91,110,106,106,91,90,100,102,89,103,100,98,115,105,100,102,101,118,101,108,108,91,105,112,112,99,92,93,92,104,106,109,93,112,105,97,94,102,99,104,108,97,118,99,95,94,119,112,104,112,112,101,103,109,96,96,100,98,101,101,110,97,95,101,106,88,94,82,96,102,112,112,107,99,100,113,103,94,100,115,105,102,105,89,89,102,110,121,100,105,100,107,119,97,101,101,121,96,117,105,106,107,99,105,96,100,103,99,108,116,100,96,108,100,119,109,96,114,103,106,99,100,105,94,121,106,105,104,105,109,101,119,98,102,111,109,106,112,109,99,91,95,88,91,107,97,105,100,107,106,98,107,92,103,95,95,113,84,99,110,101,93,98,105,106,100,111,106,102,102,100,100,108,105,93,114,117,104,97,108,110,106,102,103,124,98,102,108,113,108,98,96,99,107,93,85,101,95,106,110,99,92,105,98,103,106,102,108,94,98,104,114,111,124,102,97,121,104,124,99,105,110,78,97,100,112,99,104,106,106,83,100,102,100,106,108,110,101,97,109,99,106,104,111,99,109,97,102,119,109,90,102,114,92,118,90,102,101,97,95,109,98,101,100,105,112,101,93,91,95,107,104,109,114,98,102,102,100,104,113,112,102,96,96,98,110,112,104,98,84,95,104,103,99,107,102,97,103,107,106,93,93,105,96,98,99,100,96,91,100,101,94,95,91,105,87,96,110,103,97,90,100,117,95,93,96,103,93,92,104,108,87,92,100,95,98,118,97,102,95,113,97,105,105,106,90,104,102,112,102,98,98,101,85,101,103,93,100,103,108,101,109,114,120,102,99,107,106,101,97,99,110,98,109,120,109,119,87,92,102,109,108,99,104,100,102,88,87,96,100,100,115,99,102,98,101,109,94,96,116,100,94,101,106,96,110,108,104,103,107,94,95,100,91,111,105,94,104,110,108,107,101,95,103,107,98,99,103,98,102,105,109,101,91,113,111,101,90,101,106,112,107,92,111,100,105,98,105,98,102,113,101,96,114,91,103,94,106,103,98,91,103,110,108,108,104,96,99,101,116,107,105,89,104,102,98,96,99,116,102,107,106,106,109,109,99,113,113,103,101,94,107,99,100,98,112,100,104,111,98,104,97,115,103,116,105,104,90,76,113,107,109,99,95,103,107,104,97,94,95,111,106,109,103,99,100,100,100,99,97,96,106,102,109,93,97,96,106,103,106,108,121,102,92,88,99,101,110,106,97,95,102,80,97,106,109,100,101,97,98,80,127,109,101,102,114,101,91,108,103,103,100,108,107,96,95,96,102,109,109,105,98,92,88,101,101,107,94,111,110,95,107,96,105,112,110,88,106,96,94,109,109,106,101,97,94,107,99,121,98,98,72,100,101,94,105,101,98,110,100,91,121,106,101,99,99,108,99,95,100,106,100,94,104,96,102,101,93,120,117,104,103,105,113,101,106,90,95,108,110,109,109,105,99,105,95,91,111,108,113,110,100,100,106,113,111,102,98,100,103,110,100,109,105,102,116,99,99,108,102,103,98,101,101,99,100,94,90,108,93,109,97,102,98,112,100,110,97,109,106,91,102,104,101,106,120,99,111,103,103,103,95,106,98,76,102,100,107,111,100,106,107,99,103,104,98,96,106,103,84,109,102,99,96,99,108,96,99,86,99,109,106,105,111,97,103,100,104,93,109,105,102,111,94,95,95,107,101,107,108,93,107,102,98,108,112,94,98,97,113,94,111,101,97,106,106,95,77,105,95,103,98,102,95,91,109,105,117,113,106,98,99,108,98,105,101,110,106,104,109,102,101,98,112,98,91,89,105,98,91,116,95,105,98,96,110,106,99,111,110,101,99,102,101,104,102,119,104,90,110,92,99,87,105,105,99,90,87,85,98,95,102,104,98,100,95,101,112,97,100,109,104,100,102,99,102,106,99,117,105,101,96,108,96,104,99,98,88,101,104,96,100,100,110,95,117,103,107,94,115,96,105,95,90,96,97,102,105,109,100,109,99,94,96,117,102,101,100,90,101,101,102,103,103,108,94,104,101,81,101,104,99,102,85,96,91,99,104,76,93,90,104,92,95,93,102,100,101,109,106,96,101,106,88,99,102,104,101,112,89,96,103,104,101,107,100,102,92,99,88,98,107,102,99,109,104,100,107,94,112,93,103,104,95,104,97,90,108,95,99,89,94,98,112,134,106,94,98,81,98,103,102,108,97,98,110,104,104,101,109,103,90,101,99,107,100,94,92,97,89,103,91,107,105,100,87,80,93,102,96,82,104,98,100,95,126,104,99,101,98,108,109,113,101,105, +595.93787,94,95,96,100,105,127,103,100,118,105,106,99,80,102,102,124,105,95,109,97,105,116,109,95,113,96,98,95,105,101,107,101,104,107,114,103,109,106,98,98,107,114,108,114,114,117,94,100,105,117,89,94,106,89,97,105,97,83,112,89,110,110,105,102,98,99,103,99,81,111,100,113,103,107,112,115,108,99,111,106,98,101,104,105,99,98,96,99,90,126,103,82,110,110,82,102,86,107,118,115,111,82,101,85,110,115,99,113,90,105,114,116,98,102,107,113,109,113,98,96,107,101,108,109,109,117,97,103,109,106,100,102,92,89,108,97,97,96,102,120,99,117,102,103,107,91,98,103,96,96,107,108,104,105,100,100,114,105,110,102,116,116,106,108,98,121,111,99,103,110,121,100,99,102,113,115,112,124,109,102,93,102,101,99,86,111,115,104,103,104,100,107,104,98,105,110,96,101,97,105,106,104,118,111,96,109,113,101,100,108,105,96,104,110,98,132,111,110,106,123,108,111,112,103,121,95,102,111,97,98,115,98,106,113,111,99,106,118,112,102,107,110,106,95,109,100,109,104,112,113,101,119,103,108,113,110,106,107,133,94,107,107,108,95,117,109,94,92,105,95,112,98,86,106,114,97,110,106,110,107,101,114,93,106,103,98,96,92,117,109,107,98,118,104,112,112,102,95,109,109,95,101,112,109,108,102,101,121,109,112,101,107,108,104,93,123,99,100,103,96,104,107,98,99,102,92,97,95,102,103,109,107,106,109,94,115,114,78,84,105,100,109,97,98,114,92,101,98,106,96,94,102,108,99,108,102,108,87,107,75,106,96,105,110,95,102,98,114,110,109,119,100,98,98,108,109,112,100,111,110,98,113,108,102,103,102,108,109,102,90,117,91,103,108,108,113,108,103,104,99,109,99,111,120,112,101,122,103,118,105,80,113,118,101,90,113,106,112,100,107,98,101,105,106,104,99,102,105,100,96,101,101,99,108,100,89,96,104,103,107,104,108,95,106,99,104,116,103,111,93,95,101,99,112,111,108,109,100,111,96,107,96,106,102,109,103,108,103,96,105,100,100,104,102,103,101,99,111,103,103,102,113,111,103,101,106,102,95,116,125,111,119,97,104,102,103,113,116,113,91,102,100,108,99,97,97,91,100,96,102,106,104,101,105,95,110,108,93,101,96,104,108,108,92,108,91,111,114,99,113,99,102,117,96,99,98,116,111,105,106,102,102,99,112,105,101,120,102,105,108,115,114,107,98,113,114,107,116,105,105,81,105,92,102,97,116,110,109,105,108,109,91,119,111,108,102,111,97,102,107,109,98,82,101,107,95,107,92,102,110,113,125,102,85,104,110,95,111,110,102,97,106,105,125,108,98,112,126,99,101,107,106,108,93,106,98,109,104,104,101,101,102,109,108,103,104,94,104,105,111,97,105,98,99,91,99,109,101,102,101,109,109,104,103,105,98,101,101,104,105,94,103,114,103,93,103,113,108,101,103,113,80,79,104,103,114,112,96,97,100,121,106,102,114,100,111,109,138,96,112,106,110,109,105,97,105,107,95,102,97,106,99,104,116,109,74,106,111,106,114,106,82,90,106,99,112,99,101,105,93,98,119,105,107,115,100,115,105,107,114,102,109,102,100,101,107,108,109,110,111,105,101,95,103,116,96,98,107,110,105,110,102,110,109,102,89,113,100,106,100,117,107,110,92,98,107,111,102,111,96,105,101,84,99,104,101,85,103,107,102,99,105,113,100,102,108,96,94,106,110,96,107,91,119,105,110,96,109,109,114,109,111,101,111,106,114,106,96,100,117,101,111,113,100,101,109,112,111,109,105,95,99,100,113,112,110,120,116,112,108,105,91,116,105,112,122,107,108,110,113,119,91,109,107,121,105,103,101,120,101,82,110,104,108,68,108,102,106,104,99,106,104,95,102,97,107,96,97,115,110,98,109,93,103,103,108,108,109,116,113,103,106,112,99,110,113,104,105,105,109,110,109,101,100,102,98,103,112,108,95,100,104,112,112,105,110,95,105,115,112,100,113,107,109,108,103,121,99,117,107,98,106,109,96,112,107,97,105,115,115,104,107,91,99,94,95,103,95,113,104,111,115,103,91,104,104,100,89,102,104,109,101,114,100,103,111,102,119,109,103,96,107,112,102,100,114,112,113,110,107,115,103,102,108,106,114,101,103,105,104,91,117,99,103,102,123,110,105,93,114,122,108,112,99,107,123,86,99,99,106,102,98,108,104,102,108,106,115,99,113,109,107,100,110,108,114,104,109,92,98,90,113,110,105,96,101,95,101,99,104,113,111,95,108,99,113,116,116,100,109,97,109,117,108,101,94,124,106,82,119,134,146,153,136,116,175,152,126,152,149,132,152,126,149,125,141,129,105,114,99,106,113,98,110,102,115,110,110,110,109,101,105,111,107,118,113,118,102,91,100,110,100,94,94,103,114,106,117,109,112,99,112,103,91,99,107,102,97,112,109,112,107,108,98,117,106,102,110,112,107,101,123,98,102,93,91,104,104,104,116,104,108,103,77,102,87,105,111,109,96,111,115,101,98,109,105,107,106,112,102,95,99,107,113,107,101,108,103,112,94,112,99,99,98,109,111,109,112,104,100,105,101,104,93,93,104,131,100,117,110,97,102,99,107,101,105,102,105,109,109,102,103,104,91,113,100,95,117,115,113,111,107,108,100,104,115,105,92,106,112,94,99,122,109,107,101,106,115,113,105,119,99,102,104,106,108,108,114,119,109,109,100,106,97,92,113,92,112,110,109,113,113,97,113,116,111,105,111,110,105,114,108,101,103,110,107,117,104,103,103,107,100,103,115,107,96,109,90,94,113,103,88,99,116,115,97,105,110,105,108,102,96,106,109,100,115,105,105,103,115,109,80,101,124,104,96,115,111,98,103,117,107,107,96,129,110,107,107,104,95,100,102,101,116,112,104,108,106,104,102,106,117,107,102,111,108,106,106,126,96,103,107,111,109,105,108,113,111,90,97,103,95,92,95,84,107,95,110,100,104,103,102,114,106,113,103,112,93,103,106,102,113,99,100,107,98,103,110,106,100,112,96,110,111,108,106,109,103,111,95,107,106,108,113,114,101,108,84,99,114,105,102,93,104,112,110,114,85,98,101,97,102,108,96,119,104,104,104,113,106,108,95,97,102,103,105,105,99,109,105,117,112,106,105,98,89,96,109,97,109,123,114,97,123,100,100,107,100,117,91,112,106,111,107,107,110,106,107,107,108,105,114,95,105,100,98,108,104,115,100,104,101,112,114,105,100,108,108,117,104,105,109,133,91,118,113,96,97,108,115,105,108,110,85,103,98,104,117,116,111,114,103,99,110,97,108,114,101,108,100,114,106,103,97,109,101,106,102,103,108,98,107,101,104,106,88,104,106,105,104,101,92,102,115,112,106,105,103,103,98,112,101,109,100,109,117,101,107,107,98,105,107,99,105,104,107,118,111,108,109,99,104,133,93,103,109,111,105,114,104,111,101,96,111,103,113,74,99,96,99,101,92,99,96,121,110,105,106,115,104,110,112,99,97,122,104,107,107,107,107,95,108,97,108,96,96,101,102,103,95,105,103,117,99,106,101,101,117,112,103,101,113,105,105,108,99,110,104,103,110,107,112,107,104,105,91,106,107,117,103,113,111,90,111,105,79,115,113,109,99,106,99,104,104,100,89,100,97,113,106,111,103,104,110,107,107,102,109,105,103,99,99,99,111,103,100,100,90,105,105,116,109,102,81,110,98,107,96,106,104,102,110,99,112,106,113,117,116,100,107,106,95,98,117,108,109,101,110,95,113,103,110,101,96,102,112,101,98,112,101,99,87,109,97,101,103,107,106,110,106,94,105,97,109,102,89,102,105,99,116,93,96,94,104,111,117,113,116,103,102,106,95,101,105,98,102,111,111,104,99,95,107,98,113,100,85,70,101,109,102,106,109,98,106,101,90,104,102,103,86,100,108,103,111,105,98,104,106,118,110,100,112,101,100,105,103,116,96,107,118,116,110,107,99,111,106,110,89,117,120,110,100,120,99,104,99,93,99,103,102,103,104,98,110,117,103,88,100,96,101,114,107,106,106,101,116,106,112,85,100,105,89,92,103,106,111,105,102,111,101,110,109,110,95,90,87,109,114,104,106,106,109,109,91,91,107,103,115,98,98,111,105,104,90,113,109,91,91,90,99,119,104,100,109,98,109,113,115,107,92,105,102,109,103,120,107,96,99,114,95,109,108,115,99,109,106,106,117,93,108,113,75,106,99,101,110,100,110,108,111,116,102,101,99,98,99,99,116,101,108,101,113,95,99,109,97,99,105,106,107,119,105,111,97,104,100,113,110,103,100,91,105,94,107,99,84,104,98,110,91,100,97,105,101,110,103,111,102,104,111,109,102,109,95,114,103,102,115,109,101,116,102,111,106,107,95,111,100,87,96,98,98,95,96,100,104,104,101,101,92,96,97,100,102,109,105,111,98,106,96,100,92,96,119,106,120,102,113,113,105,101,92,109,115,104,107,111,100,109,74,100,103,109,91,103,93,91,103,111,104,95,100,102,112,112,118,109,100,109,104,91,108,110,111,102,89,101,92,105,109,101,115,100,87,102,99,103,107,109,112,84,96,104,115,105,104,109,104,107,106,105,94,104,104,115,105,121,112,106,115,93,114,108,97,105,99,97,94,102,101,92,105,99,101,97,109,113,100,115,103,114,91,102,98,111,108,96,99,102,96,99,105,114,99,121,116,103,102,112,117,117,106,102,118,109,98,104,101,101,98,77,107,99,97,106,96,100,112,115,113,86,112,94,99,105,96,104,78,106,99,103,115,91,96,89,73,95,100,109,107,92,112,97,105,99,91,112,88,109,118, +596.07892,126,98,121,107,81,111,100,112,91,99,106,103,94,114,98,121,97,98,109,96,105,95,107,108,95,95,105,105,110,117,109,99,110,97,111,106,111,110,112,104,118,95,100,106,103,112,110,103,114,111,104,107,105,93,80,99,109,105,110,95,97,105,114,89,108,87,107,127,109,106,110,112,95,101,102,113,88,103,122,102,110,93,107,98,100,109,110,114,108,108,111,105,107,94,94,101,101,90,107,114,94,106,93,100,100,105,102,109,104,96,96,93,80,100,108,99,116,100,85,105,101,103,113,105,117,101,104,104,118,103,116,90,111,88,104,108,111,118,102,108,97,111,103,140,95,97,109,99,101,109,104,81,101,97,94,107,83,105,108,104,94,106,104,107,105,102,114,109,108,95,113,89,100,91,100,103,113,110,104,98,105,100,97,121,100,104,104,102,112,116,108,104,95,116,96,103,114,111,99,108,106,106,91,112,106,107,99,108,133,105,103,117,106,103,108,107,111,111,112,108,113,131,104,94,109,101,115,112,100,117,113,121,99,104,96,107,122,112,112,102,103,107,115,84,96,112,109,118,100,102,114,104,113,107,105,98,103,110,92,132,88,106,100,115,102,109,106,104,105,107,95,104,122,109,120,104,99,90,107,112,118,110,119,106,105,105,93,102,96,99,106,113,112,104,90,104,108,105,94,117,109,109,110,113,97,109,119,110,103,105,86,114,110,115,75,100,103,106,100,101,100,103,107,107,100,106,90,99,107,118,101,107,103,99,109,107,114,97,103,100,96,109,113,109,112,115,109,97,107,109,105,105,119,96,104,111,105,116,101,109,106,100,100,105,97,103,106,109,100,102,103,98,101,105,106,119,106,104,112,114,109,98,109,100,107,99,91,100,104,100,106,97,113,95,109,106,99,99,103,116,102,115,108,100,100,104,103,98,114,107,102,98,106,101,95,100,95,96,104,109,94,105,101,103,101,98,96,95,107,99,113,122,103,118,105,105,104,111,109,103,104,112,99,111,107,112,102,106,97,122,101,99,110,108,107,108,90,113,113,100,98,99,100,103,107,104,105,111,116,109,118,111,112,106,109,112,113,103,103,109,103,110,104,107,105,87,113,110,99,82,99,105,100,116,92,116,103,116,92,101,99,99,99,110,101,104,109,90,106,96,113,121,103,113,104,100,82,104,111,101,96,95,102,122,95,91,105,95,99,102,104,115,101,109,111,109,112,109,112,109,100,117,112,108,108,102,103,108,111,103,95,103,107,116,99,98,106,98,95,102,105,117,105,99,105,111,104,98,99,110,99,106,86,109,105,109,108,97,101,112,98,94,99,102,98,104,107,117,110,103,106,118,94,100,112,96,101,106,98,113,89,116,107,112,107,108,99,102,95,114,95,106,116,109,100,113,105,103,119,99,99,98,105,111,100,122,106,105,111,103,102,114,106,105,99,100,104,100,103,108,97,108,107,99,98,93,91,85,86,106,77,98,115,107,107,100,110,113,101,124,114,106,96,104,90,103,122,109,104,88,105,106,104,103,108,114,107,115,116,103,112,108,108,95,114,112,111,109,102,99,104,109,111,107,122,108,104,90,91,94,79,102,109,101,116,110,122,104,102,87,107,95,109,97,104,110,108,105,104,86,108,100,108,118,120,107,105,98,105,113,108,110,99,114,103,109,108,106,105,109,106,108,111,112,103,115,100,107,99,112,109,107,129,123,114,105,103,82,104,117,108,119,123,113,101,105,103,114,119,112,115,100,116,101,105,109,114,109,107,98,106,105,109,110,111,100,113,104,105,100,119,106,120,108,111,100,100,100,107,107,118,112,104,108,81,99,107,110,90,99,106,94,102,135,106,97,108,105,110,101,102,110,108,113,105,118,119,108,107,118,111,112,107,99,99,116,68,104,118,110,106,129,108,97,104,100,109,110,103,94,105,115,101,103,103,104,95,112,99,103,112,111,117,105,117,107,105,102,110,104,95,99,99,103,103,99,102,104,98,99,104,103,104,103,103,100,102,111,98,84,99,103,100,109,104,100,109,104,107,110,121,78,112,96,113,100,101,90,109,100,110,115,111,103,120,94,101,127,110,106,110,112,119,95,105,109,105,106,118,113,108,110,105,121,90,99,92,106,101,100,68,109,98,117,105,118,110,109,101,105,95,118,122,105,105,114,110,109,102,103,93,105,84,110,102,103,98,96,116,99,96,105,103,97,97,110,110,119,108,100,99,107,111,109,104,99,106,105,101,99,95,108,101,123,102,90,100,105,117,130,99,95,92,112,108,110,111,105,98,90,100,109,107,105,99,97,104,92,98,102,107,100,111,103,107,109,96,107,99,102,125,115,124,112,111,111,120,119,125,116,141,123,144,135,137,150,139,154,120,122,127,166,126,138,110,119,107,122,116,108,107,118,103,114,112,87,102,114,95,106,112,108,99,108,123,127,96,109,103,102,101,117,94,120,111,111,114,104,106,96,113,108,111,101,104,112,81,106,103,113,106,109,109,100,106,92,134,103,121,109,110,116,103,115,115,107,100,111,100,97,101,71,103,103,104,116,99,99,108,103,104,104,93,100,100,99,96,106,94,95,104,98,106,102,104,106,106,113,85,98,99,104,104,93,110,96,107,100,110,106,111,90,111,102,95,110,100,102,111,126,103,113,105,105,99,111,111,107,111,104,95,121,100,99,102,99,111,116,109,113,108,110,110,104,96,119,108,119,112,94,104,105,116,114,113,111,111,105,108,106,113,115,71,107,109,100,103,100,100,98,106,110,113,102,101,98,96,109,104,92,101,109,102,109,119,102,101,85,108,112,111,104,93,99,102,114,106,111,79,108,98,98,96,104,107,100,98,113,113,116,100,124,107,103,101,111,102,102,107,100,111,102,106,105,108,95,106,102,103,107,93,107,113,104,87,117,113,85,97,108,100,113,93,116,102,104,104,102,105,107,103,109,117,98,95,125,101,111,96,100,108,117,110,97,102,111,99,103,111,96,109,125,98,120,106,110,106,107,101,104,106,96,97,109,111,103,109,97,98,120,99,107,103,102,109,109,118,105,103,106,105,113,94,104,103,131,105,103,104,105,96,107,99,96,114,99,110,107,102,114,107,102,99,114,112,88,110,94,109,111,104,104,98,109,112,117,117,102,100,108,104,99,111,99,115,115,98,108,106,107,115,100,111,100,100,116,98,105,104,109,110,102,102,106,109,92,98,91,102,94,102,92,94,105,97,112,98,113,107,109,114,104,111,111,107,103,115,100,106,107,130,98,117,96,99,101,101,99,95,101,95,97,110,96,104,104,105,112,107,104,116,123,99,109,117,109,102,110,117,100,97,103,108,102,111,117,104,93,108,120,98,99,110,111,105,98,91,91,107,97,105,99,118,101,110,96,108,106,107,95,100,108,101,127,103,100,99,98,105,103,97,91,111,108,103,119,113,111,102,97,110,101,113,97,107,99,94,104,109,99,112,108,102,106,84,98,110,119,106,98,114,110,94,112,97,98,111,113,103,101,120,90,106,110,83,109,108,100,113,116,99,107,96,109,111,109,124,112,100,105,90,92,105,97,110,107,112,105,108,95,104,98,105,95,109,113,101,102,100,114,97,105,94,107,109,95,101,103,115,95,83,109,112,120,104,97,81,99,110,106,101,105,103,111,98,113,106,100,108,108,103,113,112,107,100,98,97,107,121,95,111,98,95,113,98,113,107,104,120,93,109,102,102,105,105,107,98,97,96,108,108,98,96,117,96,117,105,116,96,108,113,94,67,108,107,105,103,102,108,115,110,101,101,113,102,115,109,106,109,108,103,99,110,105,96,100,102,100,97,113,98,113,107,103,98,112,98,109,108,113,100,112,99,102,108,111,102,96,97,109,126,113,99,98,105,108,106,97,100,88,107,105,101,109,108,100,108,101,86,103,106,97,106,106,94,109,105,103,107,104,106,104,107,109,108,106,99,105,96,110,112,112,113,117,110,104,102,98,99,119,103,104,92,108,118,109,106,114,110,99,102,104,108,108,109,106,112,107,112,95,117,94,93,107,107,100,112,97,99,100,104,104,94,98,110,104,94,113,101,98,105,129,101,94,112,104,103,119,108,95,96,93,99,103,105,105,91,99,115,96,106,100,102,106,99,105,107,98,109,76,102,109,96,101,110,91,110,105,104,103,92,103,90,109,112,103,104,106,110,100,109,106,90,101,103,113,105,92,105,103,102,109,96,104,104,113,94,120,102,99,111,109,87,98,97,113,86,109,106,101,112,90,113,116,96,130,106,90,94,112,103,109,103,121,102,107,105,95,101,106,119,109,114,100,108,114,113,115,104,87,117,108,102,100,92,109,103,106,110,99,111,101,109,104,106,109,119,106,105,109,107,111,113,106,97,106,105,102,108,95,103,76,104,129,99,110,99,107,98,101,100,91,103,101,103,93,92,101,104,98,114,102,106,104,100,113,105,103,97,103,111,104,102,103,102,108,98,106,106,102,89,107,103,108,110,108,106,109,103,103,107,94,95,113,107,111,109,103,91,106,104,98,112,97,106,112,106,113,89,99,102,115,120,95,101,98,116,104,102,105,112,102,112,108,105,100,112,102,102,91,98,100,106,113,105,92,99,97,105,113,106,95,107,98,108,103,112,113,114,106,106,104,95,99,102,109,117,105,104,107,94,105,108,108,102,102,107,114,94,112,105,110,109,99,106,102,105,98,111,109,107,117,105,103,117,109,101,115,108,105,121,94,100,102,106,92,105,111,99,103,104,97,107,114,107,102,113,113,115,115,90,106,102,117,117,111,94,106,104,102,117,94,114,103,103,93,101,104,104,100,98,104,82,92,99,123,92,97,116,121,107,96,99,102,94,101,91,121,114,96,101,103,96,99,110,91,115,121,96,92, +596.21991,108,93,91,101,92,132,118,99,86,100,104,112,102,108,114,104,101,125,110,103,101,95,111,109,95,102,105,97,77,103,103,119,107,101,108,106,119,88,104,107,107,105,96,99,118,107,100,105,99,104,100,111,108,80,113,87,113,105,112,102,110,108,114,104,94,113,111,99,114,88,116,102,98,104,124,109,97,113,116,100,103,101,95,113,104,109,116,102,105,108,108,101,110,110,114,107,111,91,94,105,103,98,71,97,101,122,103,102,91,106,114,112,109,100,111,115,102,105,106,107,99,105,102,93,109,111,114,95,103,103,106,109,96,118,100,115,92,92,104,95,102,83,120,124,93,102,107,111,99,98,101,109,115,97,106,104,109,106,100,119,105,103,110,100,107,99,117,100,100,112,99,138,97,102,118,94,103,102,101,109,102,96,99,107,106,110,101,98,111,107,101,103,106,112,107,107,96,95,114,115,105,106,107,115,112,118,98,115,94,106,94,106,117,103,99,101,108,108,98,101,109,108,104,126,105,107,100,101,104,123,110,113,98,99,106,111,113,121,116,107,99,114,107,118,105,102,106,118,114,102,123,97,106,110,103,103,112,103,95,110,101,108,110,114,104,107,100,99,95,98,105,109,106,109,99,121,107,108,103,99,118,98,106,108,113,99,103,104,106,102,106,101,114,113,116,118,105,115,113,107,109,100,94,110,98,110,113,106,121,118,108,106,102,108,103,111,107,113,112,109,104,105,112,122,111,109,105,106,114,117,119,102,116,106,90,103,109,112,106,110,108,107,115,114,105,105,106,112,94,103,102,91,104,102,114,103,119,109,110,104,105,97,113,112,111,107,111,105,117,108,122,106,114,109,108,102,97,110,103,114,116,113,100,115,109,108,115,94,111,120,107,99,112,112,103,103,113,103,108,90,89,110,117,100,118,107,131,102,117,110,95,102,115,88,103,116,111,109,102,113,108,108,109,113,112,112,102,99,97,112,92,95,106,109,113,105,100,118,112,103,101,97,101,110,112,109,92,98,112,114,103,111,111,109,125,103,103,98,105,106,89,108,112,72,110,107,109,104,103,92,95,107,103,97,109,104,101,107,109,112,104,122,101,103,116,101,105,115,116,121,97,108,112,105,98,110,119,106,108,101,128,105,104,120,108,109,109,109,104,98,112,117,110,103,98,111,94,97,116,104,99,101,102,113,102,103,112,112,106,104,89,68,111,108,110,93,101,104,111,100,109,104,105,111,116,99,105,88,113,101,99,110,122,109,104,104,103,100,98,99,102,111,118,109,109,101,90,110,112,96,95,98,116,94,108,98,75,104,106,103,105,103,112,99,114,111,111,113,110,106,107,109,114,86,118,109,96,103,96,117,100,116,124,112,99,103,112,111,106,100,114,106,95,107,111,99,104,97,109,106,124,103,104,102,106,104,101,97,90,112,95,109,107,108,99,110,105,115,107,107,105,113,103,101,101,96,97,113,102,114,112,109,108,122,103,103,122,108,97,106,104,104,102,111,107,102,107,102,99,85,115,118,101,116,81,120,106,99,121,110,108,112,107,96,90,102,76,110,113,106,98,111,96,98,107,108,102,112,101,109,107,109,93,117,108,108,103,94,108,97,107,86,112,105,100,96,100,100,103,108,83,102,121,101,97,100,107,100,96,112,104,108,104,100,112,103,109,104,111,102,107,97,97,106,109,112,104,111,108,109,106,102,97,111,118,104,108,110,105,101,107,100,87,100,109,113,119,103,93,105,96,110,107,104,110,107,105,114,109,103,102,114,110,101,103,113,107,111,109,111,113,104,101,116,108,117,112,108,105,105,117,110,98,111,115,112,116,122,112,106,110,103,102,106,108,109,102,114,107,102,101,108,104,107,104,110,102,101,110,105,110,106,111,98,103,109,99,105,117,103,108,100,106,100,102,99,99,103,99,107,111,96,108,113,86,111,106,110,112,108,98,119,96,103,110,106,112,116,119,95,118,116,107,81,106,105,108,104,108,113,109,109,112,103,102,99,107,109,99,107,100,102,121,107,118,110,107,104,112,108,94,113,105,98,99,110,96,108,109,102,110,110,105,101,112,109,116,107,86,111,113,100,107,116,109,106,108,98,110,114,113,104,90,103,96,111,106,115,116,93,110,101,107,81,107,118,105,109,100,115,100,95,113,109,109,125,110,112,103,115,106,122,106,109,107,108,91,133,121,96,98,104,115,96,105,113,114,107,96,106,109,115,110,109,104,112,100,102,110,102,99,97,107,91,103,105,97,87,112,110,100,96,89,106,106,98,99,102,99,109,99,99,103,79,109,114,117,120,112,97,111,113,107,98,109,96,116,104,101,113,103,118,116,78,117,103,102,123,132,124,104,166,134,119,142,153,151,118,123,153,145,131,147,133,126,128,129,124,108,113,116,105,101,108,104,98,101,118,107,99,113,110,100,99,110,117,101,106,113,106,94,99,99,111,106,103,110,93,115,103,101,117,118,107,104,94,107,93,107,100,100,105,120,122,109,110,114,108,105,106,121,100,97,98,114,109,98,79,100,103,101,107,100,92,111,109,111,106,106,101,97,101,104,89,102,94,103,96,98,91,110,102,93,116,98,99,88,98,98,115,110,103,104,114,117,96,109,99,103,110,107,91,99,116,102,118,99,103,109,104,113,107,104,115,112,100,114,99,104,115,93,112,106,111,111,101,117,102,91,105,104,106,109,110,102,100,117,104,103,107,109,92,106,101,114,114,110,113,96,104,96,104,98,124,95,107,108,103,117,109,110,104,124,103,107,117,112,104,109,103,106,107,111,100,104,100,104,104,99,103,102,112,123,109,98,97,115,107,113,123,98,105,112,103,102,109,93,106,109,120,98,103,111,97,103,99,109,106,96,105,101,105,97,103,108,98,84,110,115,109,117,106,99,114,114,104,93,103,105,117,111,103,107,105,108,118,108,103,90,110,117,110,109,108,105,99,110,99,102,101,109,121,119,99,109,108,107,104,111,123,110,95,116,104,107,107,125,116,105,106,109,110,109,109,108,116,116,99,104,111,96,108,104,105,102,112,90,104,98,101,107,111,111,95,95,101,118,107,98,101,103,123,106,102,99,106,109,101,101,94,117,114,91,112,108,97,105,113,98,103,106,108,117,104,109,105,109,96,106,98,118,97,107,105,107,104,76,101,85,99,102,102,88,102,104,104,104,106,103,107,105,111,99,105,99,109,95,99,101,110,102,109,92,96,98,104,102,106,112,103,105,110,116,107,99,106,94,115,113,101,103,106,115,107,111,103,113,111,123,108,109,105,103,88,117,111,98,112,95,101,115,132,100,110,117,99,92,79,90,106,100,115,102,100,111,106,112,107,115,104,102,116,108,107,104,101,117,87,102,98,105,100,98,109,105,101,108,113,113,100,106,110,109,96,102,108,109,112,108,106,95,102,96,105,97,123,105,105,112,91,108,112,110,106,105,112,109,106,110,99,98,100,110,104,107,102,106,103,107,98,102,113,115,88,103,110,126,92,104,105,108,108,106,101,100,105,101,102,97,110,109,110,105,114,99,101,95,107,105,108,115,109,95,114,100,109,109,119,101,103,112,105,98,105,104,107,118,102,102,109,98,114,107,113,118,111,101,116,108,108,99,104,112,105,116,99,117,109,101,96,81,105,105,108,100,106,97,114,104,112,106,109,113,106,101,101,106,99,95,98,100,95,110,103,103,79,110,88,103,117,102,106,108,91,113,112,110,97,96,99,116,106,121,99,112,97,98,109,124,104,124,85,96,101,113,106,107,87,111,106,104,112,109,120,107,92,104,112,100,96,121,104,78,99,109,102,100,113,109,103,109,109,105,103,100,94,115,103,110,89,113,104,106,98,110,106,101,109,101,90,102,102,92,105,100,104,112,102,117,118,100,100,103,107,98,118,113,103,81,98,113,101,101,114,107,95,120,98,96,105,99,109,96,119,100,108,105,106,69,105,100,100,105,125,123,83,110,104,118,112,108,108,96,113,112,92,91,106,99,102,111,100,110,108,100,100,105,91,112,103,100,107,91,104,106,109,108,109,107,107,104,92,117,100,113,105,104,108,117,111,101,109,97,120,117,105,110,106,100,100,115,107,98,104,104,113,115,99,91,105,112,104,102,112,105,108,111,107,104,103,105,93,122,90,107,95,107,118,107,95,112,106,110,85,112,111,137,120,107,88,111,115,96,113,96,119,106,95,105,97,105,111,101,102,103,96,108,113,114,100,95,112,106,113,96,103,111,102,113,114,111,105,105,105,108,110,117,101,105,108,65,88,105,108,106,96,95,111,101,104,100,102,106,92,109,110,120,116,105,112,101,100,101,107,109,103,96,95,91,107,111,106,112,116,109,101,112,112,105,109,110,95,100,96,108,111,105,109,99,103,104,99,93,112,109,113,77,96,113,100,114,105,89,104,103,98,99,103,112,107,115,106,96,90,112,108,104,104,109,102,101,106,99,113,113,102,108,117,106,107,104,101,101,107,113,108,134,102,105,108,77,98,99,95,110,118,110,115,110,120,99,106,104,116,99,105,95,102,117,106,108,106,124,96,87,114,132,106,93,101,97,103,113,104,111,105,103,110,103,107,101,102,101,105,105,111,102,98,97,112,110,80,100,97,96,99,109,97,107,113,92,98,112,94,105,105,108,112,113,114,107,102,92,101,115,113,107,104,107,113,98,106,106,117,105,102,105,92,110,102,102,100,99,99,106,98,109,112,113,107,102,103,85,110,108,98,97,75,112,98,98,98,105,104,112,98,84,92,102,112,104,106,120,97,109,112,105,98,105,113,113,102,105,101,99,116,95,109,100,101,102,104,106,96,100,104,88,104,121,101,115,113,95,105,96,89,104,117,103,108,116,94,96,96,114,99,110,102,112,94, +596.3609,118,89,102,112,88,119,96,108,118,106,83,127,90,116,98,114,109,118,99,99,117,102,99,104,109,112,107,103,79,112,109,106,110,106,99,108,117,87,106,103,102,94,98,94,121,108,101,94,111,105,115,87,101,103,100,102,90,100,101,101,104,104,97,103,108,115,133,99,110,109,118,90,106,105,96,102,98,93,108,102,113,108,121,108,108,91,104,110,117,121,110,90,108,103,106,110,117,87,92,97,109,105,108,98,102,98,100,105,96,98,95,96,102,103,110,95,99,102,110,110,110,113,97,105,108,117,109,94,104,137,100,106,101,119,97,107,102,91,104,105,88,113,103,101,99,98,101,105,103,99,107,109,102,85,102,99,98,112,101,104,100,100,109,100,112,103,109,91,116,104,116,107,111,96,102,106,99,117,103,104,101,97,109,89,113,106,104,91,117,112,110,96,106,104,94,99,102,110,105,121,114,90,112,106,97,105,105,98,108,98,119,110,106,108,101,99,112,108,103,102,105,96,102,99,117,125,102,104,121,98,102,96,104,102,101,119,100,103,99,106,100,101,101,95,106,95,104,106,92,108,109,107,98,108,99,104,101,109,95,93,98,103,106,103,142,86,113,105,103,102,95,120,111,106,108,98,93,87,102,94,101,104,107,103,112,105,110,94,102,112,112,87,120,111,105,103,110,105,103,104,96,112,100,103,99,103,108,103,94,105,97,104,109,105,103,105,101,104,106,113,100,105,109,105,102,100,114,109,113,105,110,99,100,106,101,105,104,114,124,104,101,113,106,103,99,105,105,108,97,103,87,102,108,98,97,114,115,111,114,119,102,103,96,102,110,106,101,94,111,101,110,103,117,101,101,97,120,100,107,106,103,102,85,119,95,100,107,104,108,111,110,92,111,106,104,96,112,111,117,104,108,93,101,99,99,96,115,112,109,107,137,90,101,109,106,105,97,108,107,116,113,101,100,109,109,101,102,109,99,110,104,103,107,104,96,105,102,106,96,106,120,106,101,109,101,104,101,90,105,129,110,102,105,103,109,117,100,105,108,105,100,99,104,108,90,101,105,96,101,104,108,112,110,106,104,105,105,105,111,122,99,100,129,105,113,119,102,99,101,104,98,105,110,98,106,109,99,99,105,93,98,106,97,91,99,102,101,106,104,111,107,108,111,103,101,102,97,103,106,106,95,103,105,105,91,111,109,107,108,100,106,115,104,96,100,95,107,88,100,108,103,108,94,110,117,100,96,112,99,111,107,113,120,113,110,96,99,106,101,105,118,101,104,108,111,105,102,101,103,96,94,92,100,99,79,108,99,108,87,103,104,109,102,102,92,105,103,106,113,91,113,101,116,96,87,109,114,99,108,98,106,101,110,95,119,102,105,110,111,91,103,104,97,103,108,87,119,104,110,104,109,90,109,103,107,113,105,98,116,108,106,109,119,109,82,116,102,98,117,98,105,109,107,94,105,101,108,94,101,118,99,110,97,102,92,109,105,103,108,105,107,98,102,104,104,113,117,101,120,110,95,102,99,112,104,91,114,108,111,98,103,123,114,94,104,110,94,113,98,103,107,105,92,108,113,108,103,105,102,100,102,112,118,101,112,105,98,100,106,82,103,106,112,100,102,105,86,100,107,105,109,113,108,112,95,98,103,114,101,107,108,117,93,107,142,96,106,91,110,103,95,99,89,106,109,105,115,107,102,111,109,103,100,110,103,89,107,112,113,95,112,108,104,112,112,109,94,105,104,100,106,100,108,98,75,125,91,100,101,105,106,109,102,119,109,108,111,108,113,104,131,103,103,99,114,108,95,115,99,110,108,106,104,104,103,106,105,108,126,101,94,105,92,109,112,112,125,110,96,103,103,106,100,107,104,109,116,104,98,108,107,99,105,112,108,96,108,98,108,101,98,101,101,98,105,102,89,108,98,105,104,103,117,103,94,101,112,103,112,101,88,113,105,114,107,104,106,101,105,113,104,112,99,102,105,97,120,102,97,102,108,119,123,115,121,101,102,98,106,113,100,97,101,129,102,107,105,103,118,111,97,103,117,117,103,108,98,105,109,109,95,105,94,102,99,108,103,102,110,105,101,102,109,111,114,103,107,93,108,108,99,99,100,110,105,96,102,100,103,109,101,115,108,106,106,113,115,112,104,105,99,109,109,112,109,105,133,99,105,88,116,108,96,100,108,121,105,95,98,107,98,106,106,116,100,102,108,104,90,95,105,115,96,82,106,96,102,95,107,103,99,108,95,117,102,95,96,101,104,112,103,101,100,101,87,101,114,104,100,109,105,105,113,108,109,97,90,105,105,105,106,104,113,100,98,106,121,98,110,107,103,116,119,99,109,112,104,121,129,120,117,136,168,124,150,144,149,147,122,133,144,138,159,132,128,125,115,110,126,98,96,100,108,111,102,114,108,102,98,102,115,129,106,113,114,106,95,104,112,102,105,104,95,95,96,99,108,100,99,113,112,106,99,94,97,102,107,117,103,106,111,98,100,95,108,107,112,103,98,100,113,116,104,104,110,111,99,107,113,105,114,105,99,97,99,100,98,108,108,101,104,106,116,94,106,102,98,95,114,104,108,105,91,110,94,92,98,102,117,116,105,93,110,105,109,99,79,98,105,120,109,91,117,97,102,106,109,86,98,111,106,109,105,103,97,108,102,102,91,99,112,103,90,100,117,110,110,113,112,120,99,108,117,74,111,95,103,94,113,105,111,120,95,84,107,109,105,106,104,113,106,110,110,117,108,112,103,109,97,99,101,112,96,103,109,106,103,111,110,113,94,100,120,106,106,99,114,108,109,110,98,104,111,108,97,102,105,109,112,118,112,123,116,105,102,104,93,107,100,96,108,100,105,106,103,117,96,107,101,107,94,104,102,103,106,110,99,93,103,89,107,111,109,103,100,104,93,98,114,94,106,101,103,94,102,111,109,111,112,112,102,100,115,112,99,118,100,107,102,106,112,101,100,100,106,104,99,101,103,99,99,99,106,109,108,109,110,111,106,79,116,113,108,103,99,113,107,110,105,108,99,109,109,84,102,115,116,101,108,104,102,111,111,109,105,95,100,109,103,105,103,107,118,109,103,105,101,94,104,96,109,100,92,95,112,98,112,121,109,108,107,102,103,93,110,101,85,92,103,105,90,96,110,99,104,118,106,108,118,105,103,119,113,106,105,103,120,111,107,109,122,103,107,101,106,107,94,100,108,99,102,105,106,107,102,96,103,96,115,100,104,112,102,106,107,99,110,109,105,104,98,91,105,109,99,104,93,117,113,87,110,102,106,98,114,102,91,99,100,104,103,105,110,103,111,99,102,113,111,102,93,107,108,101,94,109,103,103,95,120,96,111,91,114,102,103,101,104,106,102,116,118,92,105,104,104,94,111,113,108,108,97,115,99,107,104,97,93,117,104,99,117,101,96,97,105,113,104,104,111,106,98,108,99,115,125,104,106,100,98,96,105,82,107,69,107,100,106,109,110,116,105,98,107,117,100,102,111,102,91,115,108,105,112,103,124,106,105,95,105,93,102,100,106,111,114,107,99,75,87,96,104,111,99,111,113,116,108,102,102,104,111,106,103,103,111,103,102,95,101,101,105,104,105,106,96,114,101,102,110,101,101,96,102,79,111,97,122,115,110,112,104,104,99,102,106,103,116,95,90,88,103,104,104,107,98,105,115,110,105,110,106,108,102,99,94,109,118,109,102,98,106,98,101,95,114,106,112,97,94,107,119,102,107,102,99,104,108,94,110,102,106,101,110,105,92,96,106,109,108,110,109,96,115,103,106,106,103,93,96,106,106,103,105,107,95,90,100,90,103,108,105,100,105,103,104,105,117,111,112,104,95,100,103,115,105,104,98,104,96,103,102,95,106,103,97,111,93,105,107,104,90,105,107,109,110,109,96,107,111,104,108,101,71,105,113,100,122,95,104,109,116,98,103,106,108,106,105,107,100,91,105,98,94,100,106,107,81,107,115,109,107,91,93,104,98,102,107,103,96,118,105,103,102,102,104,101,100,104,105,106,111,109,101,113,107,101,109,116,94,98,101,101,102,124,122,88,106,107,99,116,106,93,101,107,109,98,106,102,81,105,102,106,98,117,100,102,104,106,106,108,105,97,102,106,105,109,117,112,113,96,106,107,106,108,111,107,105,97,117,105,117,114,109,99,104,112,106,116,105,113,111,105,96,103,95,106,96,106,108,95,97,100,100,101,90,119,108,104,108,111,98,107,106,87,105,92,102,117,102,98,106,111,95,101,100,103,94,92,109,103,93,108,107,103,105,99,103,95,108,100,102,105,101,108,105,111,108,104,96,106,98,106,93,88,112,114,100,111,115,87,99,104,102,117,116,113,117,95,93,96,113,114,104,105,115,112,109,114,101,105,99,96,111,105,101,104,99,100,76,104,108,113,95,111,95,80,117,106,103,114,105,99,102,106,84,107,102,107,105,106,100,105,109,108,100,109,102,101,108,89,109,99,104,98,101,105,100,100,105,98,95,115,102,104,110,113,107,107,113,102,108,106,100,105,105,96,96,113,102,115,103,106,106,104,104,109,104,98,93,114,103,104,101,107,106,98,107,100,120,113,104,100,106,112,109,116,108,88,105,109,96,107,100,96,113,106,98,98,112,91,108,112,95,108,105,108,98,101,94,106,99,85,102,106,94,95,99,105,99,107,109,109,108,103,107,97,105,101,106,85,93,96,99,98,93,104,104,108,120,109,107,105,103,101,94,98,107,103,113,110,86,115,107,105,103,109,95,99,107,103,102,102,92,68,114,123,110,102,113,110,106,100,64,105,104,101,114,84,108,95,89,83,111,103,100,113,100,106,97,107,108,99,84,101,96,108,103,100,111,95,126,99,113,96,111,110,101,106,104, +596.50195,114,101,96,104,101,94,102,99,98,103,102,94,98,95,118,98,104,108,113,96,115,84,112,120,100,111,100,109,96,108,101,112,104,101,114,102,116,102,95,116,108,104,117,100,105,112,94,77,101,106,83,101,86,98,107,101,105,109,98,101,110,111,105,90,111,104,92,100,102,98,97,110,106,110,97,112,101,96,107,106,100,100,104,104,111,92,102,106,115,114,93,100,99,93,102,105,96,112,106,99,101,99,100,101,92,106,103,101,100,99,101,95,96,86,99,104,107,109,98,92,107,116,111,103,105,119,117,100,112,112,98,105,118,105,98,92,99,114,97,105,66,104,87,62,92,102,107,109,100,97,100,88,113,107,106,94,124,111,110,112,105,101,99,103,95,96,112,114,102,107,111,103,93,91,98,98,101,109,103,104,106,106,100,120,113,99,100,91,116,103,101,116,102,111,67,97,109,87,109,109,105,114,87,104,106,105,109,109,106,106,95,114,97,108,100,104,101,105,109,117,96,103,93,97,109,139,97,107,98,109,110,117,102,108,107,123,109,103,110,100,104,105,107,103,96,105,102,114,110,110,116,96,110,90,105,95,106,103,101,106,104,110,114,113,101,95,110,104,105,102,107,104,101,108,103,109,105,98,112,96,109,102,113,110,116,105,100,103,118,110,98,104,110,121,122,98,113,105,112,107,113,103,99,99,118,113,107,105,103,109,102,105,103,106,109,113,109,97,91,111,89,108,98,110,109,105,108,99,113,124,100,107,109,117,103,93,101,110,102,94,114,101,104,95,124,104,105,107,99,100,109,111,107,102,99,99,116,100,114,102,108,103,104,93,81,105,109,117,112,110,97,107,107,88,113,109,99,106,104,107,114,109,98,93,100,109,104,94,112,94,100,91,98,117,112,116,104,121,106,113,112,110,96,102,111,96,105,110,104,113,104,94,109,118,103,95,117,109,103,103,102,106,101,100,98,103,102,105,88,115,105,109,107,105,105,103,107,106,113,108,108,105,108,113,102,104,102,110,102,106,96,103,96,108,100,109,103,101,104,93,105,106,99,121,97,113,108,99,105,103,103,103,104,100,108,91,91,104,96,99,106,110,111,100,110,132,109,92,94,96,96,106,107,108,95,109,116,103,98,104,109,88,110,102,102,113,108,104,113,105,95,107,114,109,101,128,107,95,99,107,108,103,103,108,105,113,109,98,111,95,108,103,100,103,99,120,100,111,108,101,112,107,96,96,114,104,120,110,100,108,109,85,114,123,97,107,109,103,89,92,99,112,94,103,87,104,110,101,126,115,100,110,103,89,110,110,105,101,119,97,108,113,125,100,102,88,109,100,109,97,104,112,106,98,117,113,91,97,101,108,113,114,113,101,115,92,107,99,109,114,95,90,100,97,104,108,114,100,113,102,102,100,102,109,91,102,95,96,102,121,112,112,123,110,95,98,87,116,105,92,120,109,105,108,111,94,109,100,87,114,106,101,110,101,112,101,121,106,112,97,94,99,114,107,91,99,109,99,107,100,104,114,103,101,97,110,103,99,109,106,106,102,115,99,113,110,107,94,124,101,103,116,102,99,105,107,78,102,113,93,100,96,108,99,109,98,120,94,99,109,88,110,106,104,107,106,109,101,96,102,101,109,113,121,99,91,104,107,110,127,102,94,106,98,114,100,88,102,108,105,109,100,100,102,96,98,110,107,119,105,111,99,105,100,91,106,110,102,108,95,115,103,99,101,109,100,101,112,96,123,109,102,115,113,98,107,108,98,104,101,102,103,102,97,96,104,105,111,100,100,96,134,107,114,107,117,102,110,103,105,109,106,106,108,105,101,102,97,103,101,106,108,102,101,83,100,106,110,104,106,99,95,91,101,87,101,106,101,106,100,111,107,112,90,107,116,95,104,112,115,111,110,110,99,106,96,96,112,103,97,107,110,102,105,114,125,102,109,99,82,98,100,113,128,91,98,99,91,120,101,105,105,101,96,105,99,99,107,102,105,101,104,90,109,107,104,112,105,96,105,103,119,95,101,102,97,113,91,99,102,102,104,107,99,109,103,109,106,101,105,107,101,104,109,102,97,110,97,98,112,116,95,109,99,101,101,100,95,102,102,107,98,98,103,110,112,90,100,106,104,107,99,107,125,104,106,124,97,71,98,98,109,92,101,108,101,114,98,105,112,103,114,110,108,109,122,91,120,96,109,110,113,105,121,93,101,98,104,101,101,99,101,110,109,99,99,97,101,95,105,104,113,109,105,99,104,102,108,103,103,106,106,104,117,87,105,108,106,107,111,89,105,95,112,104,101,97,106,106,112,108,80,132,106,113,99,103,85,113,113,123,106,110,105,116,107,110,131,126,121,127,129,138,157,173,145,138,142,137,132,128,117,127,139,134,114,115,117,115,121,115,120,112,123,106,104,109,110,104,103,100,103,99,127,110,97,113,98,105,98,114,104,97,94,106,100,90,95,109,92,97,106,103,92,94,94,111,92,116,102,102,101,115,108,101,111,99,95,101,98,99,102,111,101,103,102,114,107,102,100,104,104,109,102,110,62,101,103,109,81,115,105,110,92,95,98,120,112,102,103,98,117,103,100,114,103,104,106,106,106,103,101,105,100,98,101,100,96,92,107,96,103,108,89,103,100,104,108,97,102,111,108,102,106,95,120,88,72,109,113,104,107,102,109,96,88,112,107,107,112,98,107,107,107,106,102,113,114,111,105,105,108,106,104,96,104,107,106,102,106,109,84,110,105,103,109,111,109,91,113,102,118,107,109,97,93,84,102,104,85,113,93,101,109,107,98,113,105,104,105,106,100,114,96,99,96,113,100,104,106,102,100,103,112,102,97,108,115,96,100,102,97,105,108,107,100,97,107,110,120,93,105,108,107,107,117,97,100,102,116,113,113,104,108,95,99,96,107,100,105,104,108,104,93,111,100,102,112,108,103,121,99,109,103,100,100,95,108,114,107,104,106,105,96,93,102,104,110,102,105,107,104,108,102,101,108,102,107,92,105,108,94,96,113,111,106,95,76,102,113,102,94,103,97,106,91,101,105,120,92,105,104,105,95,95,84,104,108,103,95,112,102,77,103,109,105,98,89,100,106,97,106,99,111,111,107,104,102,105,108,117,100,109,102,100,105,104,97,117,66,104,99,101,99,117,117,100,100,119,103,107,99,104,106,106,107,110,103,108,104,85,115,97,104,116,105,108,104,120,119,102,93,105,102,102,90,103,103,111,105,105,106,100,116,112,100,99,103,97,89,109,103,104,100,105,97,93,89,114,99,108,65,101,101,105,105,102,94,107,108,105,105,95,104,106,100,109,98,98,106,93,106,103,98,101,103,118,107,109,102,109,98,130,120,91,104,105,107,103,106,119,101,98,112,112,111,103,101,105,109,117,100,106,98,98,88,116,96,96,110,96,107,109,105,104,109,101,111,107,107,103,107,106,87,93,104,104,103,102,103,117,110,108,102,109,109,113,105,104,87,106,94,101,113,107,102,108,98,109,85,98,111,107,112,102,97,108,118,112,99,104,95,97,99,118,131,105,105,100,103,116,108,107,103,106,101,94,99,101,94,103,113,143,96,87,97,95,95,106,104,106,103,101,104,103,108,100,107,99,99,97,106,95,101,92,97,82,108,101,102,106,96,92,106,78,99,126,106,107,98,98,100,101,110,101,85,102,108,99,102,109,116,106,101,96,86,104,97,103,97,106,98,102,100,82,103,99,100,113,96,102,99,106,108,107,108,91,101,104,99,104,99,110,93,89,88,108,103,104,99,88,117,101,107,107,105,103,102,94,105,106,99,105,100,113,102,109,83,97,100,104,109,100,96,102,97,110,97,100,87,90,103,106,99,100,98,100,109,107,106,99,107,113,101,117,98,99,91,98,88,113,95,92,108,109,108,113,120,110,108,116,108,108,95,101,104,92,101,102,100,115,119,95,118,109,106,109,100,93,112,117,110,105,110,105,106,99,99,107,119,95,102,98,97,108,101,107,102,107,98,105,95,99,111,98,97,109,100,100,108,113,92,106,99,99,113,95,100,109,85,114,102,91,99,100,99,98,99,113,101,104,108,105,96,108,116,98,102,94,99,101,82,106,103,103,109,101,107,111,100,96,107,93,100,105,114,100,100,106,116,101,99,96,90,109,108,108,104,109,93,110,119,103,106,98,112,102,111,105,104,108,98,98,97,67,105,110,108,104,96,109,110,104,106,88,101,111,97,107,102,100,103,102,100,98,112,97,107,113,99,101,104,117,100,106,102,109,109,89,103,104,97,111,90,100,102,104,106,108,113,107,102,107,109,100,103,99,115,103,103,101,99,107,97,82,94,102,104,91,104,109,111,100,95,105,105,91,100,105,93,106,103,109,105,102,104,116,101,100,85,94,96,100,99,101,105,102,102,104,102,97,100,102,99,104,98,96,93,103,100,105,107,102,87,104,94,114,106,109,102,96,102,100,109,106,102,102,102,102,108,88,95,99,100,101,95,98,107,101,87,99,102,95,95,98,103,102,106,98,112,99,107,105,99,100,109,99,72,105,98,95,123,112,97,107,99,109,91,104,104,100,112,101,98,100,92,90,80,96,101,105,98,104,103,101,116,106,117,106,90,102,97,103,97,113,97,117,96,108,93,98,91,99,112,96,86,113,98,98,102,93,114,105,107,98,98,97,92,103,108,102,111,109,102,105,109,105,102,100,102,100,87,101,112,103,106,116,99,105,105,105,96,111,107,107,101,106,102,91,97,98,79,109,91,106,114,113,101,109,106,94,102,89,91,109,99,108,117,104,101,110,106,111,100,103,119,111,92,90,97,118,95,94,98,95,95,96,99,101,78,105,101,103,93,117,87,94,105,104,103,100,99,102,121,98,107,103,90,99,104, +596.64294,109,107,84,99,88,100,105,102,110,110,85,119,110,109,109,91,92,105,96,101,103,102,106,112,100,111,110,110,100,103,104,100,104,96,113,109,113,106,104,102,93,91,95,89,107,112,99,125,92,102,98,90,110,106,101,87,107,97,108,103,106,116,108,92,101,99,98,101,99,111,112,101,110,111,90,95,103,120,99,102,104,93,94,103,105,97,100,107,107,105,106,106,101,101,116,93,103,78,91,99,99,96,102,99,114,109,107,100,100,106,113,96,104,99,116,96,107,105,96,111,100,103,112,104,98,102,117,104,112,101,107,110,97,103,113,106,108,97,91,98,106,107,94,112,101,99,98,101,110,100,96,120,94,105,104,111,124,93,91,100,111,98,104,103,100,97,114,88,100,101,116,99,110,108,106,98,98,98,101,100,102,103,102,96,93,127,86,96,106,113,113,99,105,99,92,97,95,102,105,97,108,112,100,91,101,99,105,106,108,121,107,107,116,110,107,111,104,110,107,93,88,103,99,102,94,110,100,105,106,100,100,101,98,103,119,116,113,98,103,104,108,114,106,98,100,88,103,99,93,93,96,107,108,106,93,98,113,97,104,108,97,111,89,109,117,102,102,100,105,92,107,114,108,98,104,104,68,92,81,96,111,121,105,106,99,101,92,117,95,115,100,101,109,114,109,104,109,100,89,90,97,115,113,106,103,100,106,107,102,108,91,126,103,91,103,96,95,104,107,104,100,97,124,108,98,103,99,95,105,99,104,108,113,90,104,113,96,83,101,112,107,91,108,100,110,100,117,107,105,100,104,106,107,110,95,110,80,102,100,108,110,109,96,104,95,111,104,108,96,109,105,95,107,103,99,95,94,100,99,102,107,91,117,99,96,112,102,90,102,91,113,97,96,107,101,101,101,95,103,102,93,86,107,95,101,107,104,101,112,93,103,115,90,105,113,104,99,100,140,110,103,105,104,107,104,109,99,90,109,104,108,99,97,101,104,118,113,99,105,112,111,106,80,105,83,95,98,91,108,104,104,109,96,103,104,97,109,96,107,104,100,103,116,122,98,109,109,91,106,109,96,104,103,107,112,97,88,106,101,116,106,101,111,100,99,101,105,101,104,99,87,107,101,103,101,100,106,95,100,105,102,106,100,104,107,119,104,105,107,90,112,93,94,102,102,108,104,104,98,105,107,93,85,99,112,104,98,96,105,95,86,112,105,84,97,107,100,104,113,111,113,108,100,101,81,100,107,103,98,104,100,102,114,103,96,104,94,127,99,90,99,104,92,94,115,106,105,96,107,100,101,103,107,96,106,109,100,103,104,102,118,91,110,97,110,109,105,98,100,97,99,109,105,93,97,98,99,107,99,99,111,98,114,91,107,99,98,105,101,98,105,106,116,109,101,103,113,94,104,96,98,102,105,95,103,109,104,95,101,105,112,109,94,104,113,108,102,105,103,108,101,105,105,98,101,105,121,105,101,108,100,95,102,90,104,100,107,108,102,109,120,114,111,112,92,107,109,96,95,100,114,99,94,99,100,111,98,87,108,100,112,107,108,103,114,106,87,104,112,112,99,106,108,113,105,97,104,105,101,97,100,107,99,105,108,116,110,105,103,106,101,107,99,103,97,89,90,107,102,96,111,99,116,108,106,98,100,94,106,114,104,105,93,97,110,101,118,120,109,99,104,112,104,94,102,95,96,99,106,91,95,114,105,96,104,104,132,101,108,102,115,118,88,101,73,114,94,111,105,103,104,113,110,113,104,104,106,127,84,97,103,107,109,122,97,102,105,118,106,112,108,94,105,120,100,106,112,103,101,99,93,110,97,106,104,111,99,106,99,99,117,90,110,98,107,96,100,110,112,110,119,98,101,106,100,96,113,110,102,103,100,99,110,95,99,104,109,108,104,100,99,106,96,106,96,104,98,106,106,109,93,116,103,111,107,117,114,110,96,107,99,96,102,104,96,102,95,101,103,111,98,89,95,141,104,92,111,98,101,108,97,106,105,98,105,104,102,96,111,115,89,113,104,107,102,101,88,110,86,105,120,107,111,122,109,98,97,107,103,109,104,92,112,115,122,99,92,99,104,98,113,99,103,98,107,98,114,86,101,109,100,103,110,99,103,108,88,91,99,98,112,100,108,108,103,102,110,107,107,98,100,106,97,104,95,97,118,103,106,100,113,104,108,90,102,77,97,103,94,114,108,101,103,98,108,111,111,103,107,102,95,99,101,101,104,101,95,102,103,116,97,97,101,108,97,99,107,105,103,109,99,91,103,99,108,104,112,103,111,99,95,107,89,113,100,112,112,117,97,97,112,99,107,79,98,112,109,100,95,102,113,118,103,118,120,99,98,112,123,116,142,130,161,146,145,157,127,156,137,146,140,134,135,119,124,118,118,115,104,125,104,106,113,102,94,99,101,102,112,109,103,79,111,109,116,108,110,99,101,105,99,94,112,102,101,105,95,107,106,99,106,113,112,93,106,115,109,104,102,98,103,107,98,88,106,102,103,108,103,104,114,110,111,106,112,103,102,104,112,116,110,101,106,95,90,98,108,98,102,103,98,109,102,111,111,100,118,115,112,96,110,101,105,102,100,104,90,106,113,100,104,105,117,96,105,109,115,102,98,117,100,106,113,87,108,111,103,109,102,113,94,110,105,105,109,100,108,103,95,94,110,101,101,102,107,88,73,107,119,109,98,108,115,108,104,74,100,97,108,99,98,104,103,98,102,111,116,108,102,119,108,108,104,104,111,109,98,121,107,124,95,96,104,109,109,113,100,96,113,115,110,100,103,113,105,108,102,98,106,115,123,100,108,106,104,112,110,109,106,111,109,106,110,106,95,105,105,112,111,114,118,104,104,113,116,111,108,95,101,103,110,104,110,113,102,107,98,99,110,96,112,111,95,108,94,106,96,101,94,102,104,103,98,108,106,99,93,98,107,93,93,111,100,109,105,103,102,109,105,103,104,110,104,100,110,113,102,114,101,102,107,102,92,105,104,106,118,109,110,107,104,106,101,111,115,102,121,85,79,108,101,91,112,95,115,109,95,103,104,102,103,105,104,110,98,112,116,98,103,83,115,110,114,112,123,94,112,100,98,96,102,106,98,110,94,83,104,103,104,104,113,102,104,113,132,102,112,108,98,102,108,105,95,97,111,104,105,101,117,106,110,108,106,107,116,109,115,101,105,117,113,99,101,104,92,95,99,104,100,106,102,109,95,87,113,101,112,100,104,112,100,112,89,113,85,99,99,105,103,111,98,109,98,102,108,109,108,101,113,107,103,91,114,88,94,112,112,104,108,110,86,113,106,108,110,88,93,101,105,99,91,112,101,99,98,110,104,99,115,103,100,105,100,103,111,108,98,107,108,100,103,106,104,102,103,106,99,108,106,111,103,107,77,106,101,102,105,102,103,108,103,104,103,107,112,128,103,100,110,97,106,99,104,105,97,89,102,122,85,113,93,101,100,99,98,110,103,109,101,99,99,113,94,99,103,100,103,116,100,110,101,105,109,84,100,104,127,114,103,109,107,111,104,112,100,121,100,110,106,112,108,109,111,107,108,104,108,83,99,108,108,108,109,108,100,105,105,104,105,110,104,113,115,109,116,99,113,105,112,100,102,112,109,91,106,117,106,103,101,99,109,111,99,124,102,109,87,102,104,91,104,119,90,109,105,113,99,102,105,95,104,113,107,96,95,98,94,89,111,90,100,103,110,96,101,99,107,94,92,106,118,107,98,95,89,106,104,106,105,124,112,106,94,101,110,98,110,74,110,103,89,95,102,98,100,101,96,117,111,102,107,102,106,97,105,95,105,104,101,95,90,100,104,97,102,110,100,89,111,103,103,92,101,91,107,90,108,106,102,100,91,100,95,106,109,106,101,101,113,102,97,98,94,107,113,108,103,98,104,105,109,100,110,86,102,102,94,106,106,106,104,103,99,117,105,100,92,102,116,95,115,99,110,109,110,99,108,106,97,119,100,105,91,111,105,96,94,96,113,110,104,100,97,108,104,103,111,104,102,111,112,88,99,108,113,97,105,108,101,96,96,97,92,107,104,100,95,105,108,96,95,109,99,106,112,86,82,117,109,111,109,102,108,117,105,113,106,98,93,99,98,103,99,110,90,108,102,111,116,107,108,94,80,83,113,115,109,99,92,99,101,105,117,97,102,108,93,109,110,102,107,108,99,106,102,107,98,98,104,98,110,109,99,99,104,101,103,110,92,112,106,114,106,110,109,104,99,101,99,122,115,106,100,104,101,111,98,98,102,112,102,103,119,101,107,116,106,108,98,111,109,109,114,116,113,106,99,104,102,108,107,104,114,103,106,101,108,124,98,113,100,127,107,101,110,115,111,95,108,86,106,90,102,99,108,110,110,104,94,105,95,66,100,97,104,124,99,104,106,95,117,109,90,115,97,98,98,90,101,102,102,111,106,116,101,99,99,102,112,99,99,108,104,113,121,103,105,99,107,102,101,107,96,108,110,96,113,101,108,100,108,102,92,108,116,102,117,97,97,100,95,106,99,88,106,120,103,100,99,110,95,99,104,101,98,106,100,122,104,100,97,91,107,104,110,115,93,102,103,100,116,100,102,110,99,105,102,116,104,92,110,106,100,95,106,99,102,120,101,104,91,109,104,112,98,110,130,100,103,117,98,105,101,96,104,112,101,105,137,114,103,102,105,102,98,103,106,96,116,96,95,100,107,100,94,108,110,102,113,98,102,98,99,105,99,98,104,102,102,108,97,102,111,91,95,94,113,104,106,101,88,101,103,112,104,107,95,109,103,110,98,98,105,101,106,109,100,105,103,107,112,102,91,109,109,114,93,101,115,94,124,95,91,107,117,89,103,110,103,92,102,107,104,106,103,106,99,100,114,118, +596.78394,97,101,114,108,106,97,109,95,104,114,105,111,96,109,101,103,92,102,106,99,139,111,105,99,99,127,119,98,122,115,100,113,101,108,102,117,103,95,97,122,70,100,87,91,105,110,115,105,118,80,108,105,92,88,94,99,109,105,121,96,98,111,101,104,114,109,84,107,126,108,105,115,102,119,103,111,111,105,107,113,100,100,103,116,107,98,115,99,112,96,99,102,107,98,112,94,116,109,102,118,87,110,112,101,97,116,102,104,106,110,103,107,104,122,73,107,99,102,113,109,93,110,104,109,98,93,103,106,101,102,96,113,102,108,103,104,102,109,118,98,105,103,110,95,99,104,104,99,105,104,122,113,110,100,103,104,108,99,113,100,109,102,99,120,105,112,95,93,110,96,102,103,112,107,100,130,97,96,107,99,100,105,118,103,103,118,108,104,96,105,91,96,110,106,113,95,113,87,103,108,104,113,121,106,106,114,104,95,106,117,100,101,119,108,96,118,97,111,114,108,109,105,104,95,123,112,100,116,99,117,113,104,109,103,94,106,107,116,113,101,105,100,108,110,102,98,103,111,103,109,106,118,101,110,114,106,100,110,99,109,97,98,109,100,104,107,111,108,95,97,103,103,105,104,104,99,102,117,117,113,89,99,102,110,110,105,105,97,113,109,108,105,104,119,95,98,104,102,102,108,103,105,114,105,108,109,116,127,112,110,95,108,118,105,114,116,105,100,105,105,110,103,101,94,111,98,92,101,111,111,97,90,118,96,103,102,100,116,99,104,113,122,105,106,96,109,93,117,106,94,100,103,103,104,124,112,99,115,109,112,106,103,111,94,101,110,99,104,113,110,117,109,120,101,112,102,103,99,111,98,106,106,106,116,101,101,106,107,112,92,109,105,115,106,99,102,117,107,112,105,106,108,117,108,112,113,92,106,110,121,107,108,81,119,100,106,91,96,112,101,105,105,103,116,113,102,97,113,114,96,113,110,109,94,106,100,111,101,94,108,112,114,113,109,107,103,123,109,113,106,102,97,103,102,105,105,113,112,116,113,107,108,107,96,124,113,114,85,101,109,101,114,105,112,111,94,112,119,102,108,100,109,114,103,102,95,105,94,111,103,102,106,106,109,107,105,112,107,104,103,118,114,95,106,105,100,113,122,99,96,103,114,96,109,100,110,114,105,112,98,92,105,103,105,113,87,109,110,110,101,106,120,109,102,102,125,117,84,105,109,107,116,100,104,102,116,110,93,114,105,110,104,110,102,114,99,97,94,100,100,107,99,107,104,100,103,114,117,107,107,101,84,108,101,117,111,103,101,95,109,101,99,100,99,97,107,107,105,114,112,107,98,102,101,106,107,110,108,97,99,123,108,83,98,107,102,98,103,99,110,100,102,106,103,102,96,112,98,106,113,102,110,102,106,98,89,101,110,100,104,84,106,113,123,92,103,108,100,109,97,110,113,116,105,103,115,101,102,103,108,100,108,101,108,106,100,109,112,102,113,116,113,105,105,94,107,126,102,136,107,106,110,107,115,107,108,103,99,108,100,100,115,109,99,101,113,114,90,103,114,113,113,109,102,110,116,89,131,109,109,117,103,118,111,114,107,106,112,100,101,94,114,95,107,95,97,95,102,106,99,118,113,115,111,100,100,112,98,104,123,102,103,95,110,108,99,109,107,99,97,107,105,101,102,96,96,110,97,118,100,114,105,102,101,106,104,102,105,122,96,108,102,109,103,91,104,102,103,100,102,122,107,110,95,102,109,112,108,110,113,108,104,101,116,94,116,105,110,99,105,105,105,104,103,103,105,101,110,102,107,97,105,95,100,108,101,112,105,109,116,107,93,113,103,94,108,114,114,94,108,98,116,110,113,98,105,115,93,109,111,100,100,101,100,108,91,99,107,107,107,103,100,114,114,106,118,105,103,106,95,108,99,99,100,91,113,105,103,107,101,101,110,106,116,102,102,96,106,128,105,109,96,102,105,106,107,116,97,109,99,109,92,98,105,109,102,115,104,104,109,113,94,113,99,105,104,111,94,108,117,106,105,121,104,111,98,103,107,104,92,95,105,111,103,113,102,105,96,106,105,110,97,116,119,111,110,110,112,101,101,117,117,108,104,106,96,101,101,112,110,100,109,100,111,100,101,123,107,101,105,105,101,102,110,116,89,106,100,106,101,109,112,100,85,106,94,98,106,101,110,105,102,110,100,111,98,112,99,101,95,110,95,90,104,104,94,108,103,106,124,103,95,108,100,93,102,96,111,91,98,101,107,113,123,111,112,114,92,108,107,95,101,113,107,121,105,95,110,101,95,117,103,107,104,101,104,78,101,101,110,107,115,113,103,98,109,115,122,131,133,147,146,113,127,128,148,155,143,134,150,126,115,123,135,123,122,115,115,123,97,100,102,106,103,105,109,114,121,106,113,106,94,80,110,99,111,102,103,104,98,107,107,107,124,110,102,87,80,113,104,104,116,111,100,87,113,101,91,113,104,99,100,104,134,101,97,99,113,107,101,92,109,103,113,108,86,98,112,96,119,104,110,106,107,112,102,117,111,110,101,100,105,113,103,104,99,99,107,105,98,103,102,122,103,101,113,104,104,102,92,106,95,115,111,106,112,120,103,101,94,83,102,93,96,104,101,101,101,115,106,94,88,98,114,104,102,104,111,109,108,125,102,97,106,108,107,114,111,99,135,107,116,95,99,104,102,97,107,88,117,123,106,102,104,111,129,78,111,110,101,109,119,106,112,117,103,112,105,106,98,98,109,99,116,102,98,111,105,102,102,89,113,97,111,104,99,108,97,102,104,102,98,110,98,100,112,110,105,112,108,108,119,106,99,96,110,106,87,107,117,98,105,104,102,106,102,104,112,108,104,110,114,107,104,105,109,97,92,106,123,93,115,107,108,98,105,104,99,96,114,109,105,101,110,101,113,100,114,109,107,104,102,112,104,116,96,106,115,105,94,107,85,93,104,98,116,110,108,108,100,99,108,105,90,109,105,104,120,102,104,110,113,106,110,129,100,115,112,105,99,99,103,109,108,127,101,104,96,137,108,104,106,103,106,106,93,100,91,94,92,103,100,109,110,99,104,108,106,101,95,83,117,91,103,110,113,107,117,101,98,100,100,109,117,106,87,106,106,112,95,106,101,108,108,106,95,118,102,107,94,125,109,104,102,107,108,109,110,104,104,106,96,109,105,113,109,111,105,93,108,106,96,100,107,104,102,108,98,118,110,80,107,120,112,116,88,107,112,103,110,98,104,108,109,102,102,113,116,108,97,99,93,111,113,99,108,98,120,102,101,97,108,117,107,125,109,99,91,108,99,102,106,121,101,99,107,113,117,103,92,94,102,107,95,103,97,106,125,86,99,99,94,91,102,99,92,98,110,107,88,107,94,111,102,95,104,112,92,105,106,110,98,105,113,105,93,105,106,106,99,109,109,103,97,94,98,110,113,99,107,107,99,111,92,105,104,103,123,107,103,107,110,103,123,113,107,107,74,98,106,106,117,87,109,112,105,99,116,101,96,102,121,110,100,124,96,106,112,102,125,108,82,95,99,93,113,96,109,107,93,103,101,93,109,107,101,112,109,116,103,103,105,97,99,96,97,121,106,103,101,113,116,103,92,97,98,108,99,120,105,93,91,98,104,96,100,111,103,109,101,106,102,105,117,95,108,113,100,101,104,104,95,110,93,130,106,105,114,100,100,108,109,94,119,95,109,104,108,100,106,99,104,114,101,108,99,105,97,106,110,107,104,126,116,114,108,104,78,112,106,90,113,100,115,99,110,110,100,102,114,99,105,111,114,106,105,102,111,120,108,90,106,95,95,109,113,93,109,107,95,113,94,108,106,101,107,107,102,104,103,121,109,109,102,101,95,102,106,106,104,106,100,114,105,95,110,82,99,102,101,96,94,119,106,109,101,108,103,121,113,99,106,109,96,94,99,109,100,99,101,96,103,100,109,79,96,98,107,99,103,108,104,95,96,102,94,103,107,99,99,116,106,75,99,95,109,105,102,113,107,106,99,114,97,107,110,103,109,116,104,94,105,110,92,97,103,105,102,105,99,105,106,103,111,108,102,94,114,98,107,101,100,109,105,125,109,110,103,109,101,101,97,99,96,97,104,106,109,98,104,107,127,102,95,106,112,102,107,108,105,101,110,105,104,100,101,105,97,126,106,120,101,101,100,98,110,100,108,97,112,111,109,107,106,110,95,108,98,90,115,106,106,108,104,105,114,101,108,109,109,108,102,113,109,98,98,91,92,102,103,94,109,99,116,111,107,106,91,106,118,112,104,108,110,102,112,107,104,98,106,115,100,105,107,96,104,110,99,110,104,103,111,114,110,104,106,97,101,106,100,97,99,107,96,109,107,113,116,108,93,99,100,106,110,101,123,103,114,102,100,99,105,107,101,104,103,95,100,101,113,93,111,106,109,102,98,98,100,101,102,101,101,102,106,121,118,103,117,111,107,101,96,92,123,101,97,108,112,110,104,102,104,97,101,100,109,98,104,102,109,109,94,109,91,113,99,105,90,109,106,106,113,110,93,96,104,104,90,95,99,100,103,101,112,102,105,101,99,121,115,100,104,108,107,95,108,108,111,107,97,101,96,113,96,106,102,101,99,119,103,108,89,116,93,105,99,92,94,94,98,110,100,98,111,102,91,112,108,105,113,104,99,103,98,102,92,99,96,111,99,99,97,99,96,106,111,101,100,109,114,108,93,91,99,107,109,108,97,96,106,118,98,101,109,113,105,91,99,104,95,101,131,91,104,105,105,107,109,114,106,121,117,106,100,115,104,99,115,106,111,100,85,79,79,96,89,93,101,111,91,104,105,105,104,94,102,98,104,114,113,106,105,124,112,89,103,111,101,105,90, +596.92499,112,108,115,116,87,99,112,105,111,85,96,96,102,105,120,109,125,112,95,107,92,99,97,114,118,100,93,98,99,99,67,114,106,95,113,104,111,111,103,110,97,104,104,128,105,103,92,109,109,103,98,101,119,102,93,97,112,92,102,95,106,94,98,101,104,117,141,102,99,101,102,107,94,105,101,97,105,98,108,111,95,101,111,104,91,97,110,116,107,109,93,114,103,109,105,92,103,105,103,84,97,109,102,112,95,105,108,97,99,106,100,106,103,96,102,98,105,104,106,93,103,104,115,114,106,111,108,95,110,117,112,123,101,84,92,106,105,108,104,95,103,108,90,98,104,104,106,111,105,121,107,102,98,104,106,113,103,107,115,101,104,90,114,112,110,101,105,114,117,101,98,105,110,107,106,110,103,102,113,110,102,108,94,110,96,116,106,99,107,103,103,111,104,95,114,107,121,115,100,109,115,110,110,108,104,116,108,118,99,115,100,96,106,95,100,96,95,109,96,109,110,112,99,97,106,106,97,116,109,86,103,108,101,103,93,109,107,110,96,95,110,105,114,106,105,107,105,109,112,99,105,112,110,102,108,94,96,93,107,106,104,116,116,96,100,110,91,107,103,90,99,99,107,90,109,95,105,110,95,114,108,125,105,106,111,116,106,108,81,100,97,108,105,107,96,117,105,113,105,86,111,108,96,93,100,114,106,128,102,95,93,114,99,104,99,99,104,103,104,102,103,100,110,101,95,103,103,100,105,108,90,93,105,106,102,104,106,112,103,117,104,99,102,101,94,102,107,99,116,101,105,105,105,102,100,107,98,118,98,103,106,104,94,115,100,100,102,115,110,105,101,104,112,113,104,104,109,106,100,102,115,115,104,112,106,107,94,103,106,103,111,91,91,96,112,97,109,81,103,105,104,114,117,104,120,101,99,96,103,107,112,83,107,80,104,75,105,99,107,117,113,120,94,87,102,104,101,95,112,107,106,83,104,100,105,110,127,101,105,109,120,114,98,107,113,105,105,109,111,105,95,111,102,108,94,104,99,109,116,111,110,100,98,103,98,117,97,108,121,100,114,115,108,104,106,91,98,99,97,95,90,104,108,106,95,100,96,112,94,113,103,112,108,108,95,110,102,105,107,100,102,118,117,99,101,65,98,104,104,98,90,109,78,107,118,103,101,106,110,92,100,95,107,105,99,102,107,95,96,116,90,103,91,109,100,101,98,95,99,105,112,95,95,100,108,105,92,100,94,106,97,114,102,124,91,106,97,105,103,102,108,82,110,106,105,83,101,142,97,110,99,103,84,86,106,103,102,93,106,91,109,89,110,100,91,95,107,77,106,100,100,105,101,99,109,107,99,96,101,109,104,102,109,104,105,100,110,104,96,106,101,110,109,107,113,92,108,106,105,113,106,102,104,104,103,103,94,99,116,108,105,117,107,106,96,102,103,96,96,94,81,111,109,105,108,109,113,96,115,87,105,104,105,106,110,107,105,126,102,107,105,107,101,106,95,105,108,105,127,110,111,111,101,104,106,108,103,112,113,97,111,100,114,101,101,105,107,109,95,110,107,107,114,108,108,108,90,96,105,108,98,104,95,100,115,107,106,100,108,97,108,103,93,105,99,104,125,112,90,86,99,101,94,101,98,106,95,98,114,82,93,103,107,111,106,112,105,106,108,109,114,113,94,105,110,108,119,116,114,103,115,93,104,94,109,99,99,104,95,102,97,101,98,104,90,99,86,93,89,99,99,115,113,116,95,106,102,108,111,100,107,108,95,114,100,106,112,102,97,102,102,93,100,122,105,109,106,116,97,117,108,117,100,110,103,97,108,105,95,99,112,107,103,99,111,103,74,106,107,98,104,110,92,109,113,86,100,115,105,103,99,104,99,107,111,90,100,102,106,102,97,106,109,99,109,95,109,101,122,99,111,94,124,99,100,105,99,115,98,117,113,113,111,105,113,98,104,112,108,116,91,120,103,113,103,106,116,107,96,98,104,103,109,105,104,97,109,107,107,96,96,100,98,109,103,79,102,98,98,120,111,117,101,118,116,98,104,104,87,108,106,126,99,105,93,95,110,99,99,103,105,104,104,98,101,102,106,101,103,111,110,112,89,107,95,93,98,89,91,98,83,94,101,115,95,118,105,101,96,105,102,113,101,101,111,91,98,105,101,106,100,114,81,103,98,103,93,104,107,106,102,101,96,102,106,97,112,96,112,113,100,101,104,89,110,108,99,109,107,110,103,111,96,111,95,108,92,95,109,112,96,100,116,108,94,118,107,107,103,100,100,112,103,109,102,99,102,97,112,112,102,112,101,103,99,119,100,90,107,102,105,103,116,117,71,101,115,125,119,142,151,153,137,132,130,129,128,141,140,135,121,154,124,123,126,146,111,116,129,109,99,118,119,109,107,97,104,105,122,95,104,120,96,105,110,118,106,97,109,89,89,106,118,106,99,111,99,112,101,100,110,105,98,92,103,112,104,117,109,114,96,96,107,120,96,91,108,98,104,113,99,111,109,106,106,107,103,110,96,110,106,108,122,111,105,110,87,106,106,97,113,113,97,101,101,98,95,94,98,102,83,105,109,106,106,106,102,118,98,99,113,88,113,101,104,105,109,92,109,117,109,98,112,87,99,101,104,105,106,101,98,107,115,99,107,103,126,96,107,110,106,115,108,103,94,115,112,116,106,104,97,110,106,107,106,100,95,108,106,119,102,105,105,98,109,100,107,114,103,97,110,111,95,102,104,104,101,117,112,104,103,106,92,97,112,101,103,101,94,105,103,102,112,105,119,87,102,94,109,109,107,97,103,98,95,111,117,109,95,117,112,98,107,99,99,84,100,108,113,111,116,106,105,105,100,120,95,106,108,117,99,102,110,113,105,101,110,104,107,113,114,105,111,113,110,125,102,100,113,102,114,104,109,107,87,91,108,102,115,99,114,93,109,106,96,115,106,98,108,109,94,106,105,132,96,98,107,114,104,98,105,91,98,101,110,99,111,101,98,96,109,105,96,106,108,98,113,106,99,111,103,111,107,107,101,101,112,108,117,114,112,100,95,110,109,94,103,105,105,99,108,103,115,99,103,102,100,106,95,102,107,113,109,111,116,96,98,108,117,107,102,102,110,98,108,98,91,99,102,91,88,104,107,100,106,111,111,109,109,107,109,102,110,101,103,104,97,108,109,98,104,107,105,106,106,97,111,102,106,103,95,102,104,103,98,109,107,103,106,122,98,95,111,115,98,96,105,103,92,102,91,97,95,105,111,108,98,108,96,117,112,99,111,96,97,103,91,103,107,84,100,110,107,99,99,109,100,88,107,108,91,114,107,122,94,106,107,107,109,103,101,112,95,100,113,92,113,100,114,95,84,102,103,110,108,113,99,102,102,101,107,105,98,106,107,110,111,109,99,95,93,103,88,104,76,108,112,103,99,108,113,107,103,97,107,104,106,108,98,105,114,108,99,105,98,71,74,104,104,103,112,112,95,111,104,90,103,95,94,91,100,109,116,104,102,91,113,100,105,105,108,104,107,110,106,112,101,103,108,104,111,109,106,112,103,95,107,103,100,115,113,98,112,98,91,109,96,110,119,102,106,94,105,112,99,101,97,108,103,109,105,98,109,96,99,98,117,111,112,96,92,112,95,100,106,104,88,109,114,104,98,114,108,101,99,101,107,109,112,100,98,89,105,105,93,99,104,130,104,106,98,100,103,102,108,104,101,106,100,113,112,102,106,70,110,91,109,118,96,112,102,102,113,95,106,90,102,112,103,109,94,115,99,102,98,104,117,106,105,105,92,105,107,99,104,103,116,99,104,99,109,102,103,108,103,103,113,94,97,100,104,114,101,114,93,98,107,110,114,109,103,106,103,122,105,103,119,100,105,98,96,105,106,108,104,99,116,106,118,96,105,113,107,108,91,101,105,103,82,113,106,100,100,98,113,113,110,106,122,100,108,100,107,109,99,96,102,107,108,98,97,116,92,115,104,95,95,98,109,95,109,102,101,106,109,108,104,87,109,93,100,101,97,136,112,112,96,99,108,109,98,108,102,100,111,86,96,108,103,94,111,88,112,113,103,102,113,100,108,102,98,98,103,109,96,113,95,102,114,96,103,101,100,115,104,95,102,109,123,105,99,113,107,99,105,101,108,100,101,96,115,97,117,107,109,118,106,116,100,99,100,110,112,103,98,104,93,95,83,99,107,102,105,116,105,111,119,117,116,106,83,102,118,98,109,98,96,104,103,104,109,94,106,95,112,105,95,93,98,106,106,101,81,123,109,98,106,114,106,102,112,96,114,95,120,102,112,99,92,107,104,103,80,100,106,96,107,104,98,116,106,113,105,107,99,106,109,100,99,116,90,98,99,107,110,111,107,107,102,104,95,87,105,99,90,103,101,107,107,100,116,109,90,102,107,98,105,94,104,95,122,105,95,91,117,104,97,102,106,115,101,113,120,104,109,105,96,108,104,102,103,101,105,92,104,105,105,107,111,98,88,99,117,114,100,101,102,87,103,99,108,98,100,102,107,112,115,84,99,109,103,107,99,103,105,111,105,108,102,102,100,92,123,105,121,106,95,106,104,106,106,109,99,113,105,96,115,114,94,109,102,106,113,104,79,118,99,95,104,106,100,93,106,107,95,107,112,95,101,109,91,93,97,105,125,103,97,99,99,100,104,98,123,109,103,104,114,90,110,98,65,98,93,103,102,111,102,117,105,106,106,91,107,104,111,94,102,95,95,95,104,106,90,119,93,99,101,91,110,116,97,135,115,88,91,104,101,86,100,98,113,90,88,100,121,105,110,116,96,100,87,99,96,112,82,118,99,112,112,102,108,115,107,97,105,91,109,114,88,105,102,88,92,102,105,92,108,102,107,100, +597.06598,106,118,97,94,88,97,89,117,107,120,111,106,99,106,111,101,92,99,98,119,99,95,100,107,108,99,104,104,106,101,102,107,116,105,107,120,102,108,107,117,109,103,95,102,106,93,101,104,98,118,103,95,115,103,113,92,99,95,99,89,103,100,103,88,103,106,98,114,94,92,96,112,113,101,98,100,100,99,104,102,115,95,100,99,108,95,98,103,104,109,109,107,114,146,109,103,96,108,99,106,103,95,104,101,102,106,92,86,97,107,94,97,98,85,109,113,108,110,112,106,106,98,97,107,104,104,103,100,109,108,106,91,106,106,113,104,105,96,108,93,102,104,110,104,100,99,116,116,104,102,97,110,103,100,105,103,113,109,107,108,102,109,108,105,102,104,105,106,94,99,99,106,113,100,93,100,107,96,98,105,106,111,104,107,100,107,103,87,93,108,88,100,108,104,91,106,106,92,126,97,111,84,104,106,95,105,111,94,117,88,102,115,95,98,99,113,106,95,99,116,96,112,99,100,95,102,92,119,103,109,101,111,100,90,102,107,73,101,111,86,105,94,119,108,110,88,99,100,100,107,112,97,109,103,104,106,104,98,103,111,104,96,97,101,107,98,99,98,97,103,105,119,114,99,68,102,103,107,108,109,95,97,109,99,111,103,99,117,97,102,123,101,104,104,102,113,111,98,107,99,103,95,109,116,104,106,95,104,98,103,111,100,99,92,103,100,103,103,107,103,105,105,109,102,121,104,99,97,114,109,105,96,99,108,102,104,98,120,93,119,94,107,103,102,105,113,108,105,105,103,99,111,108,97,111,114,104,110,110,109,105,103,97,102,110,104,104,106,95,102,106,98,106,100,104,113,115,110,107,98,116,87,98,110,102,95,100,104,111,114,91,116,98,105,101,105,102,105,102,112,125,102,109,112,99,105,113,104,98,100,104,96,103,109,108,101,99,108,106,96,105,109,100,92,120,91,102,83,106,116,107,101,91,101,99,112,119,110,108,97,104,109,96,96,95,108,106,104,102,108,104,108,109,105,96,109,110,108,118,107,97,109,94,102,118,110,108,101,105,115,87,97,94,104,103,101,96,112,117,108,97,100,104,96,112,99,100,101,99,106,106,106,99,110,96,104,95,105,111,106,108,115,111,96,95,108,99,107,99,95,102,103,108,110,100,112,108,107,107,101,101,109,108,102,98,105,109,107,107,117,92,109,93,96,98,102,100,101,101,91,97,120,90,96,114,115,106,100,109,113,100,113,92,104,101,97,98,98,110,98,92,116,99,110,116,96,93,118,103,106,97,113,107,114,112,94,100,100,117,109,117,109,101,108,95,108,109,104,103,103,116,120,105,95,106,111,112,105,132,99,99,91,105,119,95,109,103,90,108,111,100,117,133,113,107,99,114,99,117,94,99,98,108,109,105,108,98,105,106,109,96,104,91,90,96,106,110,89,100,118,108,107,90,93,99,110,98,104,101,106,107,112,110,97,107,109,106,102,99,106,112,112,113,104,101,103,126,83,114,108,102,103,109,105,105,105,105,105,117,117,125,91,116,99,102,109,95,104,113,110,101,114,98,87,108,114,112,100,110,103,112,110,102,95,100,116,105,101,106,106,105,100,93,112,93,90,105,111,102,111,108,104,105,119,100,104,107,109,110,107,117,113,97,101,105,99,102,91,108,100,109,98,100,98,91,95,104,100,92,99,89,109,128,95,108,100,98,112,95,104,97,98,107,97,101,92,102,102,103,103,95,116,108,116,100,106,91,102,120,101,91,103,112,108,114,106,99,89,116,105,109,111,112,113,98,110,107,106,108,104,100,77,99,115,108,90,118,107,98,91,126,103,110,114,104,111,100,105,95,96,111,107,101,101,98,103,109,99,97,102,98,101,105,91,108,96,111,98,103,99,110,89,105,106,100,103,102,105,108,119,89,117,95,112,98,99,108,106,101,109,103,114,110,96,110,104,91,105,101,91,110,105,105,97,95,102,109,105,103,96,82,119,112,94,103,110,94,88,116,82,103,117,107,107,101,101,109,104,102,103,111,107,103,99,109,102,98,105,101,96,114,104,94,114,114,115,99,105,102,102,102,109,102,116,110,104,95,100,110,108,102,98,102,106,120,108,96,111,113,102,106,107,100,102,112,115,101,104,91,105,116,103,104,105,106,111,108,106,107,99,121,99,95,68,117,102,102,95,104,104,111,106,107,103,102,99,105,91,98,95,107,107,94,99,103,104,103,104,94,111,106,101,110,111,101,86,96,100,105,106,103,104,97,108,117,104,105,101,92,113,98,107,100,107,102,110,125,103,116,103,109,118,104,106,103,111,104,111,101,97,104,99,117,109,104,95,123,109,141,120,134,142,125,130,154,149,175,142,158,146,119,152,134,115,116,121,116,85,104,110,99,114,108,112,107,105,99,96,99,108,114,114,114,103,105,112,104,114,99,92,91,105,100,105,104,90,108,103,117,112,104,117,103,98,93,110,113,110,101,112,103,107,109,109,95,102,116,102,111,106,109,97,97,109,110,107,103,106,107,116,102,101,111,92,102,105,106,106,107,110,114,111,124,101,107,100,105,101,88,102,106,105,102,114,100,104,107,91,114,113,111,94,94,111,107,97,111,112,103,109,121,108,106,98,110,125,98,97,101,114,104,104,119,109,104,108,99,108,100,101,108,105,114,100,105,111,82,113,106,109,104,106,112,105,102,102,109,89,108,111,97,103,114,100,99,106,90,121,115,116,108,114,92,111,107,113,105,108,106,110,110,110,104,104,104,74,104,113,106,105,117,99,103,103,102,97,104,108,97,114,105,104,124,102,109,106,105,101,105,122,120,113,114,106,108,108,115,125,105,106,113,105,105,104,110,89,109,105,105,105,103,96,106,110,103,105,111,102,90,96,102,111,115,104,122,111,95,110,100,108,98,108,101,105,104,99,113,103,109,111,102,104,98,107,109,101,98,102,107,109,95,98,99,109,113,101,110,107,105,109,112,119,103,92,105,117,107,96,101,96,106,102,105,104,120,110,97,98,101,93,101,103,107,107,113,110,116,113,106,108,91,111,97,113,110,92,110,98,97,110,90,117,101,92,77,101,110,117,109,110,101,110,112,93,105,94,106,101,108,105,103,103,95,107,95,96,99,94,103,102,102,105,92,104,113,120,106,105,107,102,104,123,99,108,108,103,113,112,120,109,106,98,128,94,108,99,102,100,108,107,125,99,95,103,110,105,98,108,112,96,102,98,121,112,113,105,112,97,105,108,116,97,100,105,98,107,121,109,95,114,91,109,103,95,99,110,120,104,106,108,111,98,102,111,97,101,107,103,112,96,97,113,106,99,101,103,102,98,98,99,97,107,108,99,100,116,107,103,101,106,103,102,87,116,97,114,113,103,102,102,107,101,91,78,102,109,105,123,109,112,103,100,105,101,109,105,113,106,103,111,103,90,131,100,112,112,108,102,100,104,90,102,100,105,98,95,104,109,105,98,107,107,99,105,98,121,110,105,108,106,113,101,104,106,105,93,109,111,101,117,103,107,98,94,99,102,101,101,112,106,110,106,119,113,105,109,110,101,98,101,101,91,102,104,124,108,99,92,103,104,104,96,107,105,100,105,88,107,92,104,98,107,96,103,101,104,98,108,109,94,107,124,110,110,101,106,92,100,105,113,109,96,107,108,100,101,95,108,104,100,114,105,112,109,95,105,117,106,93,100,103,94,99,107,110,106,106,107,98,108,109,114,96,102,110,106,131,107,105,114,109,102,120,99,103,94,101,103,104,100,95,106,112,133,102,94,109,116,74,102,108,100,95,107,117,102,102,99,99,107,96,103,105,102,109,118,110,108,95,99,99,108,109,111,85,102,107,113,104,95,110,98,109,103,104,98,107,108,99,104,99,113,109,113,101,117,111,96,117,116,100,98,102,89,95,97,96,114,106,98,100,112,125,104,89,102,103,114,116,95,106,99,100,110,104,113,93,104,98,124,103,77,91,103,117,102,87,101,116,118,120,128,114,106,94,109,108,97,102,86,109,102,100,102,104,96,104,99,101,95,100,101,111,97,97,108,106,97,74,105,111,97,106,105,94,111,103,103,109,106,109,102,108,99,104,93,109,107,109,110,100,104,94,101,105,107,98,97,103,110,105,97,106,98,105,108,100,99,99,101,122,111,107,109,108,95,105,108,113,108,115,102,122,105,114,96,104,96,95,111,111,76,113,109,106,108,114,108,105,115,105,106,115,89,106,96,99,103,106,109,90,106,118,109,109,101,109,93,105,108,106,106,103,103,112,102,97,107,109,96,106,106,101,108,99,103,109,107,100,112,108,107,103,100,110,105,107,87,111,101,92,102,102,105,111,115,98,106,103,109,108,102,91,104,98,94,107,100,99,98,89,98,96,101,103,107,96,93,107,105,119,106,108,102,103,88,87,111,99,113,111,105,110,103,115,93,87,106,98,105,97,97,113,107,107,105,85,96,115,105,99,100,90,126,96,93,104,120,96,100,118,104,104,101,114,114,94,105,105,110,111,102,102,91,92,103,99,101,90,112,107,96,104,97,106,103,109,100,93,103,108,90,113,102,95,104,106,90,107,97,95,100,100,97,100,104,107,109,99,94,107,100,101,101,104,100,106,115,93,112,101,87,107,107,103,107,102,103,92,101,104,101,115,134,95,105,92,102,90,94,100,98,108,103,104,102,101,94,101,92,103,104,103,107,98,100,113,104,96,93,102,93,96,106,128,102,91,105,95,98,101,96,97,115,100,88,106,113,105,100,100,97,102,87,103,94,84,98,106,91,110,102,79,112,104,90,104,91,92,92,100,104,103,100,105,112,100,97,112,89,97,106,98,119,71,91,96,116,92,90,112,116,96,87,101,105,98,95,93,98, +597.20703,103,106,101,94,102,102,89,101,93,101,95,109,94,103,103,113,109,107,96,93,110,91,101,103,111,109,104,116,105,102,110,106,99,108,104,117,100,99,100,112,106,96,100,103,106,109,106,100,99,119,98,99,110,98,112,110,92,98,100,92,94,96,117,101,111,122,109,106,99,108,94,101,104,104,104,115,96,112,100,122,96,116,120,93,101,91,97,107,102,103,101,103,103,107,105,99,96,100,102,103,85,93,95,95,78,72,105,100,100,109,104,102,113,109,114,99,115,101,99,98,98,103,97,121,106,95,109,100,112,99,100,119,97,84,95,101,110,104,101,105,106,106,95,112,96,104,105,105,105,79,96,108,105,90,104,118,108,106,106,116,102,92,112,106,113,95,105,102,103,106,88,102,98,87,104,96,116,100,106,99,92,94,107,95,108,92,100,92,83,97,108,96,95,100,110,99,110,106,96,105,101,106,106,98,108,108,88,104,101,109,95,108,110,115,106,102,105,95,99,104,124,108,99,104,90,110,109,103,115,107,98,109,114,100,107,106,116,116,103,102,100,96,112,112,99,107,104,104,100,121,106,99,102,111,102,107,106,106,101,110,93,101,94,102,110,120,116,109,98,102,118,103,104,114,105,95,91,107,113,100,102,106,101,100,102,102,96,114,121,129,96,99,110,108,116,105,102,102,110,100,118,110,104,122,105,113,107,106,99,104,108,121,104,107,107,107,81,99,109,110,104,105,101,95,100,117,99,108,112,102,108,97,101,109,98,108,104,101,97,115,110,115,110,99,107,115,109,99,92,103,110,106,115,110,103,114,115,111,98,108,97,99,98,113,118,101,101,101,117,113,106,108,115,111,112,98,101,114,103,107,109,111,120,100,113,103,103,103,105,107,107,104,95,105,94,97,102,88,98,116,95,87,98,105,101,101,97,96,104,101,103,118,103,121,103,74,120,98,93,109,96,98,105,105,103,83,106,102,113,108,93,102,106,102,143,99,98,114,92,113,108,106,92,109,91,104,108,103,102,78,103,105,100,107,109,101,120,102,85,87,100,110,117,95,107,109,126,94,114,107,108,112,98,105,105,114,95,99,106,88,100,106,105,89,109,106,105,106,110,105,104,107,104,106,90,99,99,94,90,110,117,109,99,107,92,109,108,105,110,103,82,116,105,105,104,107,113,95,113,97,112,105,116,114,106,108,112,104,113,96,109,113,102,98,101,110,113,98,106,103,106,96,100,104,110,115,114,87,104,117,105,115,107,110,109,101,103,111,103,99,94,107,103,108,113,107,102,105,110,109,100,91,125,124,98,103,111,99,98,104,110,100,106,102,105,125,119,98,109,109,107,91,112,97,106,97,121,107,103,113,100,107,102,99,101,102,96,108,109,112,99,94,106,100,120,100,101,122,90,100,99,102,94,69,109,98,108,108,108,114,106,95,109,106,112,95,100,93,119,114,107,109,110,97,115,94,99,103,103,108,100,108,104,115,116,98,105,120,91,100,122,111,102,113,98,112,113,95,107,111,122,95,103,99,100,113,101,113,107,107,106,101,95,94,104,96,109,112,96,112,114,94,98,97,99,110,121,105,98,91,105,114,102,98,108,112,112,119,114,108,111,112,111,104,104,95,97,111,97,108,105,87,102,118,99,104,100,105,118,119,108,108,99,83,103,113,104,107,116,98,122,88,110,101,104,103,106,104,103,118,102,95,107,114,105,107,109,105,105,106,112,100,99,95,98,105,91,105,109,97,107,105,106,109,107,112,101,100,94,105,105,102,113,99,112,107,101,110,117,107,105,110,99,108,116,111,99,106,100,110,101,109,103,108,107,109,77,108,112,95,127,109,109,97,113,103,106,119,106,102,103,120,97,106,95,111,129,105,102,104,110,93,113,88,106,103,92,101,95,89,109,90,112,107,100,107,100,96,88,100,107,123,109,114,100,101,100,121,116,117,109,112,95,116,95,106,101,109,108,111,106,101,107,115,106,108,113,93,97,105,114,109,107,98,111,94,83,111,109,116,114,110,94,108,105,105,100,114,102,109,121,108,105,104,109,91,104,102,114,95,107,110,99,118,108,117,102,116,109,105,101,102,107,105,105,109,105,103,108,108,91,106,105,95,78,100,94,103,97,95,101,93,101,107,96,92,115,103,100,111,100,108,103,113,111,107,103,99,102,115,115,125,120,99,105,105,105,100,98,112,104,109,104,104,94,96,99,100,100,109,111,97,101,103,101,100,96,108,103,106,95,107,103,105,102,95,105,113,113,89,110,111,104,99,100,102,104,86,102,104,100,104,106,103,102,115,120,110,105,87,106,106,108,102,99,104,112,110,102,116,101,114,105,99,123,104,98,122,136,140,145,136,120,136,142,140,133,141,149,131,156,129,117,128,111,123,123,105,111,103,110,116,102,106,117,90,100,110,110,97,111,117,127,97,94,106,94,101,113,110,96,102,95,106,117,107,99,97,107,113,117,102,108,94,111,100,95,103,118,107,91,102,86,98,104,109,94,104,107,101,108,98,95,94,102,101,111,110,98,103,108,105,100,106,107,109,110,97,108,108,101,99,104,100,113,105,110,104,105,104,93,98,102,117,100,98,120,104,106,98,102,109,104,110,104,112,108,112,115,113,106,99,99,102,111,109,101,99,118,120,101,124,103,99,103,99,109,99,121,116,115,107,103,104,106,108,103,68,119,98,120,109,106,116,104,98,98,105,107,97,100,109,110,106,103,122,110,111,97,99,90,101,108,106,112,102,93,112,99,102,107,111,109,105,107,104,100,109,111,94,112,120,96,93,108,112,121,112,111,106,108,105,104,111,105,106,75,108,107,101,91,106,111,98,74,103,99,102,105,110,114,91,95,111,100,123,109,102,108,102,115,108,102,113,107,116,110,104,94,112,114,103,107,103,99,105,106,106,101,112,109,115,91,111,118,108,100,98,116,107,112,120,103,107,105,95,95,102,113,102,96,100,109,107,105,106,90,111,115,98,102,109,109,107,110,102,122,100,106,93,108,95,111,103,106,115,111,117,108,105,91,105,99,85,107,109,109,106,100,105,102,112,100,111,97,102,101,113,112,99,115,106,108,103,105,112,93,104,100,101,104,113,104,107,107,107,103,101,110,116,94,97,103,95,114,97,100,100,101,98,105,108,117,110,100,112,103,109,96,114,115,108,105,101,103,107,104,100,104,102,109,100,111,97,106,107,97,95,99,102,116,109,99,107,106,120,108,91,124,95,111,105,110,121,104,112,100,104,99,111,106,90,100,95,95,99,93,99,111,104,98,112,98,109,98,100,114,112,102,106,109,109,91,103,106,98,104,109,72,91,97,94,90,102,99,113,101,106,103,116,99,100,100,117,114,104,102,101,93,108,117,91,115,107,104,98,114,107,112,97,81,103,103,116,118,92,105,91,107,105,103,95,95,95,97,108,105,110,100,109,107,108,117,109,91,103,106,93,113,105,99,102,111,105,96,117,102,105,112,107,113,101,109,108,108,106,98,104,101,99,96,101,97,103,98,106,113,107,106,112,103,109,114,96,120,111,104,100,115,99,109,122,104,105,97,99,105,110,107,97,100,103,109,104,102,113,107,101,98,106,99,109,111,102,107,105,105,107,109,122,108,104,121,103,105,100,113,106,115,113,117,112,98,100,106,109,101,112,110,110,111,103,108,120,99,106,104,99,98,71,112,103,113,100,113,108,104,107,108,105,105,102,107,99,102,100,107,95,107,102,96,116,106,89,95,108,111,106,104,102,102,96,96,102,105,98,108,109,103,112,92,102,112,99,98,117,113,102,100,99,110,108,113,99,114,96,104,120,109,101,96,111,108,99,88,108,117,106,100,107,117,109,117,116,99,104,117,92,107,105,106,99,106,107,91,100,99,99,107,101,101,108,91,113,116,100,111,95,113,101,102,91,118,103,105,102,107,116,110,106,112,105,97,111,104,100,72,109,98,105,114,103,110,113,107,78,108,111,103,109,117,107,93,113,101,100,112,93,105,113,107,95,98,113,112,114,120,105,104,112,105,110,108,108,109,101,101,109,116,96,113,101,111,103,97,103,111,92,92,100,99,93,106,98,104,106,101,103,93,117,115,98,107,111,103,102,107,103,113,98,94,104,98,93,99,94,108,115,99,103,92,101,99,102,91,112,103,96,90,108,105,102,100,95,107,110,99,97,97,117,110,99,104,116,102,109,111,108,109,99,114,98,120,106,96,115,112,121,127,97,97,106,99,100,110,96,109,106,105,95,111,100,102,106,113,104,104,94,91,112,100,105,105,101,101,119,101,123,101,111,117,107,102,105,115,116,98,106,108,105,108,98,105,103,102,105,108,110,109,102,97,124,112,120,108,103,100,113,107,109,104,123,102,105,109,98,104,109,109,101,104,97,106,112,90,109,99,89,89,96,113,106,104,98,84,91,99,112,105,117,100,98,114,99,109,103,117,85,102,100,107,102,118,108,96,97,93,106,112,98,106,113,99,92,114,99,112,102,96,87,107,103,98,94,101,111,99,109,106,100,100,108,104,117,107,106,111,101,94,95,98,103,110,83,109,101,99,112,90,95,104,99,108,106,84,107,102,96,105,135,108,98,106,100,121,101,105,121,105,109,110,100,104,103,120,109,113,101,95,102,104,94,101,105,97,102,100,106,101,95,107,102,110,106,112,112,115,115,103,103,105,115,109,103,103,85,101,114,104,101,109,114,100,94,96,94,97,104,103,99,114,105,91,111,94,110,102,110,104,106,101,109,107,120,97,98,112,98,93,106,87,98,105,113,113,83,105,96,123,99,113,102,99,115,102,112,116,115,90,105,125,108,98,100,97,115,113,100,121,101,79,97,102,112,108,113,105,109,102,102,105,105,102,104,102,108,85,120,93,96, +597.34802,96,86,100,94,109,108,115,91,99,118,108,103,99,99,100,112,97,116,102,114,111,105,98,97,104,108,113,101,101,109,98,93,111,101,104,90,122,87,104,107,104,111,116,113,93,104,113,109,103,99,87,119,96,95,104,97,89,104,112,96,91,109,105,66,105,106,75,98,95,101,107,110,105,105,110,98,107,107,95,94,104,96,115,109,95,93,118,109,107,95,103,109,117,93,111,97,105,105,100,105,112,105,111,107,102,91,106,102,101,121,106,101,114,103,108,132,98,85,122,91,106,99,104,89,93,102,109,95,108,106,102,113,95,106,109,114,105,109,98,103,94,97,95,95,97,99,110,102,91,99,109,114,101,89,101,96,101,105,107,113,98,100,91,96,111,110,91,98,105,103,100,103,104,118,96,109,100,103,95,112,110,117,114,97,101,107,95,100,124,102,101,97,102,101,99,107,114,109,98,100,100,105,95,110,112,108,120,110,121,102,107,92,111,99,112,109,97,112,96,103,106,115,92,105,103,106,110,109,116,108,104,104,107,98,112,104,112,97,108,90,113,102,101,111,119,102,104,107,102,109,99,104,96,108,101,105,109,114,101,112,107,82,105,96,103,90,97,105,97,104,109,106,115,104,110,107,84,116,86,101,107,108,108,108,112,100,72,104,120,101,105,104,109,111,106,95,99,102,95,93,96,107,104,123,99,99,112,105,103,104,100,114,99,118,104,112,104,113,96,91,105,99,109,117,109,106,96,105,102,104,104,98,95,118,102,99,110,99,103,100,106,100,91,105,107,116,102,108,113,104,100,108,110,112,108,106,94,109,110,105,100,104,109,95,102,106,86,95,101,93,102,102,97,107,110,105,117,105,113,99,94,96,106,87,91,103,106,94,100,101,120,109,105,103,101,108,90,105,94,102,99,121,115,90,108,104,96,95,110,106,94,95,113,112,102,103,112,113,111,94,105,109,106,102,94,61,98,101,95,107,101,109,108,120,100,103,116,106,110,107,113,108,121,102,105,95,114,106,106,103,102,101,109,112,106,111,106,111,118,100,101,104,115,115,111,103,113,112,104,104,104,69,102,102,111,101,110,113,104,110,100,91,94,90,98,108,98,116,108,97,102,105,112,91,103,106,108,104,113,106,110,112,101,110,104,106,111,108,111,119,106,108,109,109,111,98,94,104,104,84,112,107,109,110,98,113,93,104,104,100,98,113,85,107,102,102,126,104,101,101,109,91,103,111,111,96,98,110,104,103,102,111,113,107,100,104,117,99,103,95,113,110,108,114,118,114,112,101,107,99,96,96,96,107,117,109,122,114,92,109,85,117,112,106,112,114,116,103,119,104,102,99,108,101,110,103,110,105,115,108,104,107,105,112,104,100,84,110,110,104,125,124,109,100,113,99,109,100,121,102,108,98,101,96,107,103,121,92,94,108,102,98,100,114,95,105,106,104,102,99,110,113,109,120,95,94,111,103,96,102,99,109,109,104,120,104,121,106,112,95,99,118,96,102,92,100,101,100,107,98,103,100,112,111,116,111,100,108,112,101,101,103,106,107,106,104,112,109,104,102,109,118,102,112,110,111,102,103,110,96,106,106,98,100,99,118,109,116,115,110,103,137,103,106,107,102,103,104,99,101,102,95,116,108,119,109,112,112,114,113,100,112,100,120,109,113,98,105,113,105,112,98,115,117,116,132,109,107,106,108,103,100,111,112,114,90,103,107,108,105,72,106,97,100,93,106,95,111,96,117,93,98,103,131,107,106,125,114,117,111,105,108,115,114,102,109,117,101,110,112,104,108,111,109,102,101,97,95,99,81,101,107,112,104,106,101,109,113,106,104,113,124,105,101,118,109,125,123,111,109,112,107,116,107,110,116,107,108,108,106,106,103,108,111,103,98,105,97,87,108,117,104,116,106,105,106,99,100,101,107,121,113,108,107,110,104,107,109,103,109,107,86,103,117,101,115,113,117,112,108,110,100,108,100,103,106,103,112,105,106,94,109,107,110,100,110,101,98,106,97,104,100,108,106,112,104,113,107,90,101,112,104,92,107,104,113,102,108,103,98,110,113,103,114,102,100,111,108,114,107,111,108,113,98,103,98,108,106,106,113,93,114,99,113,99,97,99,120,103,102,125,109,98,107,117,105,97,102,108,112,117,111,106,107,118,92,110,107,112,101,108,112,107,118,107,113,117,115,93,103,101,105,107,107,90,123,116,100,106,101,108,112,121,125,96,99,105,105,105,99,107,100,99,88,104,111,106,99,110,101,115,106,93,114,116,101,105,117,91,101,90,108,103,116,90,103,109,111,98,103,105,110,119,98,89,112,103,120,105,100,110,115,116,100,118,108,89,116,101,131,147,136,120,130,147,148,166,135,135,153,149,115,139,120,110,115,114,104,122,129,103,110,117,111,99,128,120,91,119,106,99,105,113,100,105,97,107,114,112,93,99,104,113,107,102,104,99,116,117,106,95,120,109,98,103,106,104,104,115,106,120,100,97,104,103,98,108,95,112,114,100,103,72,104,107,96,107,114,92,107,110,100,101,109,105,109,95,103,93,114,91,97,104,109,101,99,111,103,101,94,106,96,102,111,106,95,108,115,106,109,116,121,112,121,109,104,108,96,105,105,110,107,138,97,108,113,117,115,119,95,109,87,102,89,95,107,111,102,118,107,95,117,106,110,108,120,99,101,107,110,95,109,99,111,106,106,105,111,118,117,111,84,112,103,113,103,98,101,106,111,110,96,105,109,101,97,108,84,106,99,113,110,113,103,117,104,95,101,111,97,97,112,100,89,110,112,106,118,103,107,112,102,103,101,97,110,109,108,116,104,96,116,115,109,87,102,98,114,94,106,97,107,109,106,118,108,116,104,96,111,97,103,103,111,108,97,97,98,110,117,99,104,116,109,107,104,103,106,113,99,109,83,96,105,103,114,105,104,108,116,103,107,109,107,108,108,106,110,97,98,100,109,107,105,109,108,115,96,93,109,111,102,100,98,131,109,107,101,108,108,99,101,105,106,112,111,99,121,111,99,112,103,105,101,108,100,107,105,99,110,112,113,91,110,100,90,115,98,103,102,113,91,93,120,113,124,106,97,112,100,89,111,92,107,113,105,87,111,100,112,105,101,112,97,100,109,95,106,105,117,113,88,116,110,104,108,102,93,104,101,102,105,101,117,109,100,100,102,100,101,99,102,88,113,99,104,113,94,99,106,105,107,100,100,80,108,76,103,119,105,117,102,121,111,116,93,103,115,108,102,102,100,99,97,105,101,128,115,92,100,111,100,116,97,97,106,103,106,107,107,105,124,128,112,108,124,86,104,110,116,104,105,107,107,100,96,98,105,102,92,112,90,110,107,110,107,108,97,123,102,107,99,95,99,104,103,117,112,107,107,104,104,100,108,105,109,100,105,117,87,115,102,104,105,108,115,97,98,98,104,96,106,91,110,107,114,107,107,90,102,104,106,99,90,121,109,102,101,104,121,116,104,107,108,101,106,107,104,87,95,94,104,94,107,104,102,108,120,88,103,107,100,129,102,112,115,104,112,102,111,110,96,101,82,103,86,111,96,101,95,105,80,113,105,115,98,115,106,104,105,102,94,104,100,95,101,112,92,108,113,102,101,109,107,104,106,98,115,94,106,97,93,102,110,112,102,105,113,112,98,102,114,111,111,110,111,106,106,106,98,91,96,114,110,107,108,106,105,96,98,119,113,100,100,102,103,105,104,105,119,108,99,105,99,106,102,110,113,112,95,108,105,103,100,112,98,107,104,114,113,104,102,107,102,106,102,101,107,107,105,99,97,104,100,99,94,110,120,112,112,101,108,104,118,105,111,107,110,108,100,112,102,101,105,103,99,104,101,110,111,103,102,101,100,108,110,102,94,105,98,104,116,97,100,108,98,112,109,98,99,113,98,110,107,100,81,113,103,122,98,113,95,97,110,104,102,111,85,106,107,121,112,106,122,110,92,111,95,97,109,100,117,83,108,105,87,110,118,102,99,102,103,111,109,98,108,125,108,111,97,113,110,102,92,107,106,95,108,107,108,95,107,108,81,107,106,107,95,102,108,109,104,110,107,68,108,104,107,108,105,105,105,102,107,107,102,108,108,94,102,113,101,94,112,113,92,106,103,97,88,112,104,105,102,107,111,106,103,100,73,111,105,127,101,98,112,113,114,102,95,117,107,104,103,107,95,103,102,100,109,120,99,100,112,106,107,111,103,101,98,108,113,106,106,91,117,92,108,106,117,117,102,103,115,113,107,105,100,104,103,98,102,107,104,115,111,89,101,93,116,103,114,120,114,108,100,104,105,105,107,107,101,115,105,99,104,113,106,98,107,102,109,114,119,109,94,102,106,78,101,96,100,111,113,94,98,100,106,104,110,91,94,109,104,100,115,108,95,105,120,117,110,96,98,109,98,99,101,101,120,112,104,114,104,90,96,96,95,106,100,95,107,101,113,108,101,102,98,105,111,100,87,93,124,94,107,95,104,113,98,105,99,98,84,100,104,116,109,112,106,100,107,98,99,105,89,99,104,132,110,104,106,118,77,109,101,104,94,100,107,110,96,97,107,111,110,103,106,116,97,118,113,105,106,117,105,101,109,109,105,105,103,115,100,110,95,117,98,102,92,99,100,86,100,98,117,98,105,110,95,101,104,112,116,103,100,112,113,100,93,106,109,110,104,117,118,108,105,105,101,108,98,105,109,113,109,98,83,101,112,114,114,82,101,107,107,107,108,111,67,111,110,107,101,102,109,103,101,89,106,113,101,106,98,109,102,104,94,98,103,85,121,113,95,90,93,105,104,94,90,94,101,104,103,104,102,68,107,110,95,115,91,98,71,106,99,94,118,105,108,118,108,110,102,100,107,94,103,106,119, +597.48907,109,100,94,89,101,106,97,108,125,95,102,111,114,106,85,125,117,99,108,107,117,117,98,106,91,113,103,110,107,104,107,110,105,119,108,99,108,107,105,73,99,115,95,110,93,104,112,105,84,115,96,114,107,93,102,106,97,113,124,109,89,108,103,88,87,113,88,108,112,113,81,109,104,107,118,114,108,108,106,117,108,97,104,118,94,115,102,117,103,104,117,107,114,120,101,103,111,98,104,91,109,105,102,105,109,100,114,100,97,101,110,89,115,108,107,105,99,112,99,110,109,103,110,121,102,107,117,113,126,116,121,112,101,96,106,106,104,97,108,116,104,114,101,102,103,97,101,102,105,94,109,110,108,98,95,92,112,100,110,88,102,112,109,86,95,110,105,96,101,105,109,110,113,103,98,106,104,84,109,126,107,113,107,110,103,98,96,91,98,103,104,114,101,107,113,98,107,102,101,100,98,104,104,99,99,117,110,108,125,111,108,91,98,102,79,108,104,101,109,110,100,113,103,93,97,109,104,107,103,106,102,99,99,107,99,95,107,106,106,106,113,97,104,107,105,96,101,100,100,99,105,105,118,102,101,122,105,113,97,100,102,106,97,106,92,105,114,110,112,99,96,103,102,107,109,96,89,101,104,108,103,94,100,96,105,116,100,92,100,101,86,105,120,108,105,115,101,105,112,105,101,109,106,111,121,102,115,117,101,119,109,111,101,112,115,94,111,109,103,103,102,82,115,105,101,104,108,105,113,105,124,118,113,103,95,98,126,100,104,108,103,102,104,97,103,114,102,101,113,102,99,104,105,114,115,106,116,116,103,104,103,102,73,107,89,100,104,102,109,99,105,102,105,108,104,108,115,98,101,117,109,108,110,107,111,98,108,111,111,105,109,113,103,99,98,92,90,113,101,109,106,116,106,120,106,103,91,107,118,103,116,102,103,132,112,105,109,99,109,110,106,111,110,101,108,98,109,106,105,107,102,104,103,95,99,107,101,98,99,109,112,99,103,109,91,100,105,110,112,113,109,102,120,103,97,108,104,104,96,106,105,103,103,117,107,99,104,106,110,101,99,107,117,96,113,105,110,106,106,106,106,107,114,110,97,111,96,107,97,99,109,108,95,106,103,125,111,108,103,100,112,110,113,98,101,90,101,105,103,114,110,111,102,95,103,111,111,96,94,105,105,115,108,98,113,105,100,112,103,113,98,99,116,104,103,122,103,91,99,104,103,120,109,103,112,116,102,107,118,107,109,108,106,103,101,91,108,99,111,95,109,107,103,114,114,113,110,100,111,114,105,97,107,109,129,105,106,107,108,107,119,97,117,102,104,122,108,112,105,108,122,105,102,105,110,114,94,103,108,103,118,109,117,101,113,102,126,99,109,106,102,91,109,126,111,102,100,104,112,112,104,106,105,110,108,116,118,109,111,109,102,114,99,109,98,104,99,92,124,104,98,98,98,114,104,98,99,106,110,104,99,113,102,116,103,110,104,110,105,104,114,113,114,107,95,109,114,106,107,109,109,105,106,103,100,100,101,111,99,102,109,106,118,100,100,114,98,110,103,111,98,115,105,105,98,105,120,94,111,97,116,95,118,111,117,107,108,118,113,103,107,103,106,94,109,102,103,100,107,100,104,98,96,101,106,99,104,112,109,109,113,107,105,108,94,112,99,102,107,109,110,114,103,114,104,123,105,108,107,100,109,105,99,109,108,113,101,104,112,104,102,111,101,88,105,117,105,115,104,101,103,106,113,113,113,105,108,102,109,109,99,104,118,101,96,104,108,116,133,105,108,108,94,107,105,105,100,114,103,102,102,110,116,99,99,100,97,110,107,120,104,112,109,113,80,111,111,105,119,116,107,104,90,103,106,117,99,104,102,104,104,110,109,107,106,110,107,111,102,110,103,116,116,98,105,105,110,108,108,105,109,102,105,111,103,104,111,112,105,107,102,88,103,125,107,112,103,103,112,102,113,103,130,116,102,104,99,105,105,117,99,106,106,102,97,102,104,97,104,100,120,107,97,112,108,107,115,103,95,106,110,106,99,103,106,93,103,110,102,109,106,117,105,99,114,99,97,97,112,100,102,117,104,113,106,106,112,103,113,117,91,120,99,109,112,108,97,106,120,82,112,101,108,102,101,107,99,102,101,103,104,105,112,113,106,105,112,105,92,103,104,105,99,104,117,115,109,107,93,108,95,103,123,112,98,108,110,103,108,97,106,105,105,109,103,107,99,102,107,98,110,98,95,113,118,99,104,102,108,113,115,103,99,107,118,124,103,104,104,110,97,110,104,112,99,104,109,119,102,105,105,108,110,118,98,113,120,105,100,102,109,109,111,103,121,105,111,115,117,126,126,147,137,127,118,150,147,142,134,120,129,133,126,129,123,129,115,118,116,104,113,112,109,108,105,105,105,104,117,103,112,124,113,109,102,97,116,106,104,127,95,115,103,108,99,104,107,109,98,104,102,98,101,99,113,112,106,102,104,103,102,101,109,108,93,108,97,100,91,109,109,120,111,104,111,104,104,107,109,108,105,116,125,112,102,102,103,136,113,109,98,112,105,102,93,101,95,105,107,95,110,105,90,119,99,91,99,97,118,100,106,97,92,111,117,105,104,113,104,106,108,95,110,93,99,106,97,103,112,95,84,100,101,100,109,105,99,110,98,99,109,100,110,113,114,101,113,103,106,102,99,100,109,108,103,104,105,107,77,107,99,112,105,90,102,111,102,108,109,102,107,108,100,112,111,104,123,106,102,104,112,95,116,117,105,100,103,100,95,116,109,104,105,112,110,110,91,107,100,105,116,111,107,110,102,90,115,112,101,108,107,94,117,114,107,105,103,112,100,115,111,90,100,101,105,101,101,108,102,110,107,111,101,108,108,114,121,104,119,113,131,102,120,106,103,101,106,86,104,106,99,102,106,102,107,100,108,104,101,97,101,108,81,104,102,99,95,102,102,91,109,106,93,109,103,110,99,113,100,117,106,111,97,98,114,109,109,109,105,103,100,105,98,109,107,106,106,101,101,108,93,109,106,111,113,99,105,105,106,96,103,108,109,105,112,92,102,112,109,94,113,108,101,105,117,104,101,106,107,102,102,114,101,119,108,95,102,106,106,107,98,110,104,111,107,100,101,91,101,103,101,105,96,101,114,105,102,106,100,106,117,99,102,116,104,105,111,84,106,115,122,108,107,108,106,87,109,96,109,104,102,102,96,99,117,94,100,104,110,110,108,102,112,123,103,94,113,105,108,105,110,103,113,103,121,108,98,107,124,107,98,114,109,101,103,102,104,108,109,97,106,119,97,108,106,107,112,95,115,98,92,104,102,106,99,109,105,100,110,120,91,100,75,110,83,93,102,95,109,105,105,110,100,99,110,103,113,100,105,109,98,111,101,94,116,114,108,103,83,93,100,96,106,83,97,102,108,113,105,107,111,81,99,97,108,118,98,104,110,102,108,108,113,81,106,115,107,98,108,100,114,109,104,103,115,104,105,113,94,80,94,122,88,109,104,110,97,113,116,104,115,105,105,98,105,120,108,106,141,110,103,96,97,103,117,107,108,103,102,103,102,95,103,111,92,103,100,115,110,95,99,103,99,111,112,112,105,105,94,109,96,108,105,103,106,91,120,113,108,99,113,113,98,117,98,110,97,106,113,108,99,113,109,92,113,97,97,106,98,110,106,103,111,107,121,103,105,96,102,105,108,100,106,106,108,96,103,108,106,110,111,104,87,109,108,98,95,100,119,135,105,103,100,116,96,95,91,99,109,103,106,98,99,110,83,94,107,105,100,95,126,107,104,102,99,99,111,108,103,100,102,125,113,79,84,104,112,115,91,109,109,96,110,109,98,93,98,116,119,103,106,107,105,101,105,92,114,95,102,83,110,113,100,104,119,113,129,107,109,98,112,119,107,99,106,110,106,109,114,100,91,98,103,107,108,107,119,106,104,113,124,107,115,105,102,102,116,105,104,102,108,112,101,106,107,105,67,108,102,101,107,97,100,94,105,107,105,82,103,104,116,98,102,92,110,113,113,99,103,102,107,100,98,115,92,105,103,102,114,117,120,106,102,105,109,113,109,107,102,101,108,103,115,100,103,94,112,103,106,97,109,102,94,111,104,104,100,108,117,103,108,99,97,88,120,109,101,104,102,99,102,113,109,98,98,128,103,103,113,99,109,101,96,100,113,92,116,102,103,106,107,114,90,100,99,110,102,99,107,104,108,117,111,106,109,101,113,113,96,97,103,92,102,105,96,94,117,109,88,99,96,102,103,107,99,80,117,98,109,105,98,99,104,101,103,107,90,114,102,117,114,104,99,102,109,117,110,92,112,111,100,111,112,105,112,108,102,100,97,102,105,106,116,110,103,113,111,122,91,107,107,100,94,106,87,117,101,101,108,103,117,103,100,111,105,106,97,105,106,93,91,98,90,102,102,93,101,106,104,97,111,89,100,97,111,118,99,98,90,99,93,101,87,100,106,101,94,104,110,108,104,89,98,107,95,107,106,94,104,96,109,105,108,106,97,98,108,105,100,105,93,97,127,108,114,113,105,104,107,106,98,98,94,99,104,98,105,114,97,101,97,100,90,100,103,110,102,106,97,99,87,108,81,101,109,98,123,119,102,101,101,100,95,113,101,100,104,96,99,96,103,108,91,107,105,109,111,109,104,98,113,110,96,106,95,116,99,96,97,101,94,98,99,105,104,112,108,99,106,111,100,103,100,98,91,103,87,113,111,99,105,101,98,102,104,98,120,102,108,95,96,106,118,81,105,99,105,112,103,94,116,100,97,97,100,106,114,107,84,101,90,98,88,109,106,103,103,91,102,102,95,101,78,107,106,83,91,112,89,103,116,93,110,103,75,113,107,90,113,116, +597.63007,110,85,96,98,110,106,99,112,107,106,98,107,96,102,109,115,105,101,105,97,108,95,108,122,112,116,96,107,114,111,104,95,80,107,105,103,118,118,116,105,109,112,110,100,108,112,78,113,99,116,113,105,93,109,104,90,107,106,117,109,107,104,70,73,107,114,95,104,103,86,108,113,95,102,97,94,107,113,106,105,114,110,102,101,106,87,88,92,122,109,99,115,100,107,97,95,105,107,92,101,111,103,94,103,100,103,102,106,104,101,105,108,109,101,109,87,102,105,107,95,120,100,108,101,92,99,97,101,106,129,109,111,97,112,82,94,123,93,102,97,99,107,92,109,92,108,96,108,98,101,94,113,115,92,102,97,100,102,112,108,108,99,99,102,113,106,98,103,100,87,107,106,104,106,114,110,104,82,111,92,111,112,103,105,97,92,93,90,97,110,101,103,103,110,96,106,121,99,95,106,101,108,107,109,97,105,107,101,102,95,99,117,98,102,109,108,116,101,92,98,106,108,109,99,104,104,112,106,96,115,117,114,107,109,105,108,104,126,113,91,102,98,109,108,98,112,115,98,106,106,101,109,89,106,99,99,108,99,125,109,94,107,121,105,104,100,104,96,107,100,96,102,110,110,106,103,113,112,103,103,129,108,113,113,114,133,93,97,109,101,103,71,109,103,113,114,107,92,109,107,94,105,96,101,106,120,110,99,100,117,102,104,98,103,103,112,100,103,120,99,100,100,107,96,100,97,96,91,106,77,103,103,94,110,103,81,120,113,96,95,102,108,102,107,102,103,97,109,105,101,106,93,106,110,114,107,113,97,115,103,108,113,99,105,109,92,110,113,102,109,107,102,102,107,98,107,106,113,108,109,109,104,102,100,115,109,104,95,101,99,107,103,130,114,102,85,102,102,86,106,99,102,96,103,110,98,112,97,112,113,98,93,112,109,105,94,96,93,104,98,113,106,97,99,110,97,110,111,104,104,113,104,96,96,106,99,108,109,106,102,118,103,91,107,110,110,109,110,110,113,105,124,99,100,110,105,115,99,118,104,99,100,125,113,108,100,113,98,103,106,102,109,98,116,104,107,109,104,118,116,102,105,112,100,109,108,106,97,100,105,91,101,116,102,103,113,99,107,107,110,112,110,95,105,111,113,96,120,111,102,106,97,101,106,110,109,121,100,108,110,102,96,110,112,119,102,106,113,84,104,95,92,107,104,102,106,108,101,95,102,101,96,98,92,109,103,110,107,110,116,107,105,106,98,97,111,105,102,108,92,102,103,105,114,102,103,102,110,117,106,105,104,100,97,123,111,102,99,100,87,102,109,102,100,108,95,113,107,90,99,111,98,107,105,101,112,107,112,107,105,99,109,110,106,112,104,96,106,111,98,93,102,117,97,99,98,104,106,112,100,102,103,102,106,104,99,133,110,114,105,112,100,105,104,105,105,95,106,113,105,103,109,117,115,108,107,100,100,103,113,100,99,100,114,104,121,110,106,99,106,114,105,82,106,101,108,100,108,119,105,102,113,115,113,119,77,116,111,96,106,108,109,103,93,111,96,99,104,103,110,121,108,103,109,103,102,108,106,114,97,115,103,106,113,97,114,107,100,107,105,106,99,99,124,134,100,104,115,103,105,107,103,103,116,98,95,92,113,109,116,105,122,104,105,110,111,108,113,117,107,98,111,100,120,102,100,103,108,105,105,113,113,109,100,105,97,112,109,111,104,106,110,102,116,101,101,90,108,98,95,105,109,116,102,98,105,103,113,104,100,103,101,106,108,102,102,95,100,105,119,105,117,102,115,98,98,99,94,91,108,96,111,95,114,108,109,104,99,103,90,112,99,107,100,108,108,105,84,112,92,107,122,107,113,105,105,95,99,108,105,100,103,108,105,102,108,120,110,116,116,101,107,123,104,90,127,99,95,114,96,103,90,99,91,109,106,99,101,99,103,108,103,102,114,102,99,108,101,103,119,102,103,108,101,104,107,106,104,93,102,103,117,114,91,101,107,105,111,106,91,113,120,100,113,105,104,94,105,93,113,113,107,108,119,99,113,95,96,100,105,107,112,108,105,102,103,97,96,95,99,113,101,102,115,85,102,104,106,103,104,106,112,104,94,115,113,104,86,113,108,105,116,105,105,94,94,101,105,103,77,105,108,87,100,105,105,119,116,101,109,101,106,107,95,108,107,108,109,111,103,104,114,110,102,71,109,99,112,101,110,101,96,111,108,104,107,100,99,114,115,98,96,105,105,104,101,108,107,95,96,121,102,106,108,126,122,122,110,104,101,78,108,102,104,106,95,110,101,103,102,119,109,101,104,101,110,98,105,108,108,96,108,106,116,122,109,109,130,125,140,116,142,137,138,160,136,133,149,144,147,145,148,121,144,120,118,118,114,109,105,103,107,108,91,90,100,104,102,102,110,95,133,108,95,112,105,123,109,98,108,103,91,102,107,110,108,97,102,112,114,100,113,108,115,94,98,101,85,101,113,107,107,94,106,100,121,106,104,105,116,108,106,107,103,112,103,102,107,101,106,112,110,102,107,99,114,94,113,100,105,113,114,105,113,97,108,101,106,103,116,106,112,95,105,115,101,108,97,111,93,106,95,102,100,112,103,105,109,98,96,99,108,98,103,100,107,104,95,109,94,101,98,105,104,98,102,121,99,97,101,103,105,105,113,111,104,112,104,100,99,88,103,103,111,98,93,98,105,91,98,107,122,103,94,109,108,103,120,105,102,102,119,112,114,113,103,97,107,112,86,115,98,100,116,108,100,109,109,101,99,81,97,94,103,96,93,120,85,114,106,110,101,113,95,99,99,136,103,116,102,121,108,100,105,104,105,111,98,97,103,104,111,110,114,94,97,96,114,110,119,102,102,102,117,122,105,106,110,100,115,107,112,114,103,105,108,114,96,107,102,107,113,95,94,106,100,103,101,117,105,101,116,107,110,103,115,117,102,105,115,89,113,99,99,103,111,107,101,100,108,108,110,103,110,96,112,110,110,107,106,106,102,91,109,123,100,113,93,122,102,112,111,117,109,106,100,105,113,104,95,104,113,100,108,102,108,98,107,103,123,106,116,102,101,104,107,110,93,110,101,104,120,108,112,113,99,106,107,109,103,102,98,104,105,111,111,97,103,106,117,104,111,99,102,110,91,100,104,109,115,114,100,106,106,102,99,116,101,114,98,93,104,117,98,113,106,100,89,102,110,126,104,106,106,106,108,108,86,110,77,99,117,116,106,103,98,115,106,112,110,109,105,97,115,106,110,107,103,119,113,110,98,117,103,105,123,101,110,112,105,109,105,108,107,116,107,101,113,105,101,89,105,116,99,109,107,103,122,105,105,98,108,104,109,118,104,99,109,98,105,102,117,105,111,106,113,99,103,108,101,104,101,110,107,112,110,106,100,107,111,100,103,117,102,109,103,100,110,106,108,108,125,103,106,104,121,102,122,91,100,109,105,109,101,94,91,107,107,107,110,103,109,102,106,98,107,100,104,103,97,102,94,112,94,103,100,101,112,97,99,98,116,116,107,102,101,99,94,113,109,103,106,106,113,103,107,103,110,110,98,113,104,116,107,114,102,111,103,106,117,107,101,100,108,96,105,108,97,100,98,129,105,103,99,103,105,101,111,121,105,107,102,90,117,105,97,121,111,103,97,105,109,112,116,96,88,106,102,116,108,105,109,105,109,103,109,121,95,127,103,84,99,108,97,109,105,101,91,110,104,107,100,101,104,104,110,111,110,116,107,98,96,111,100,109,103,111,103,104,106,102,106,106,123,121,106,116,99,95,107,109,99,104,105,107,128,108,102,101,107,96,102,116,104,116,114,98,107,114,98,106,101,103,104,106,103,111,107,112,98,117,104,98,117,111,89,113,103,98,101,102,95,98,109,106,106,123,94,107,95,113,105,115,107,106,100,109,108,108,99,114,87,107,112,111,117,98,100,105,106,118,107,102,106,103,98,102,99,105,87,94,101,98,104,121,103,105,97,107,110,111,102,123,99,110,117,113,95,120,122,112,113,110,105,96,103,103,96,111,102,106,108,103,112,107,108,95,109,85,106,116,105,105,110,115,103,109,102,111,105,104,107,100,112,111,96,105,107,107,107,98,92,112,114,101,99,99,111,97,108,114,100,97,88,114,106,118,117,92,96,110,77,110,103,117,110,117,113,108,100,112,108,113,116,110,99,117,108,109,90,110,110,104,118,107,108,113,129,114,97,112,101,108,101,98,114,102,114,98,110,103,81,111,100,113,115,105,98,107,109,118,106,110,99,109,101,111,106,107,105,121,107,103,121,103,107,97,99,104,108,94,94,103,106,104,108,110,110,100,107,99,102,107,108,117,113,115,119,85,92,107,113,103,103,110,91,94,106,102,98,104,101,103,109,95,109,91,104,105,98,102,103,104,102,104,97,97,98,105,111,100,105,103,101,104,97,106,102,104,102,96,99,102,108,104,101,104,107,116,107,108,101,100,114,104,102,108,104,103,103,107,104,107,102,102,103,111,106,99,101,92,116,124,100,110,110,109,103,106,106,116,98,102,89,111,104,110,112,103,90,98,98,97,116,103,106,103,98,106,87,100,108,96,95,114,100,102,108,108,109,106,122,111,108,110,103,102,127,100,113,99,107,106,113,108,105,109,109,99,89,105,100,107,106,112,116,95,102,98,113,109,108,107,98,107,106,105,102,89,97,101,91,107,115,103,104,113,111,109,123,97,115,117,96,112,93,107,108,100,109,91,96,104,92,103,92,108,104,101,105,113,121,116,104,108,100,116,95,112,105,112,95,104,99,106,113,115,89,100,108,111,115,97,93,83,113,90,109,91,96,97,95,108,99,80,100,91,110,105,96,100,108,117,109,101,102,105,98,97,128, +597.77112,103,106,99,101,93,114,104,101,116,111,102,109,103,117,116,90,104,119,102,100,112,99,107,107,100,97,105,101,108,110,104,115,104,101,110,103,105,92,112,103,95,81,108,102,111,113,105,111,106,104,106,110,109,95,94,94,93,97,122,97,104,125,103,94,92,104,106,103,98,97,101,108,114,109,94,110,98,109,109,112,110,109,113,101,106,97,94,113,105,105,108,109,98,106,111,113,101,97,109,105,99,111,98,100,109,106,110,117,109,84,99,97,108,102,103,100,112,110,112,103,115,84,102,96,126,112,125,92,114,110,108,114,104,103,107,94,90,103,95,102,110,119,97,97,91,112,115,106,100,111,108,89,106,98,95,98,107,105,106,105,102,103,111,110,96,102,101,114,100,109,121,102,89,112,102,106,109,101,96,114,108,116,96,109,109,100,115,92,121,100,114,109,115,104,92,110,119,119,111,95,102,113,126,105,101,109,99,102,121,113,102,109,110,106,105,95,98,116,113,114,97,108,107,100,96,111,111,103,104,117,87,107,105,105,105,103,120,118,99,103,108,120,110,105,100,99,100,101,101,103,96,111,122,107,100,97,107,107,97,114,98,109,113,87,93,104,114,102,106,111,99,105,98,104,104,102,108,101,102,98,109,118,106,102,109,122,90,102,98,95,99,112,119,110,100,112,112,100,114,113,101,103,110,112,108,111,125,112,109,101,109,107,113,114,113,90,108,107,104,92,94,106,108,100,109,114,103,103,101,116,106,121,109,111,108,105,98,102,101,114,107,106,95,112,120,114,121,116,116,83,89,106,104,110,103,107,99,110,105,105,71,103,111,100,99,87,102,106,108,109,108,94,105,110,113,102,109,99,108,112,115,126,111,99,108,105,111,104,112,100,103,92,96,112,82,102,97,115,101,113,95,99,90,102,110,96,111,108,106,108,99,102,100,106,110,105,96,101,113,94,105,101,105,103,106,101,108,99,105,108,105,118,127,108,99,104,111,99,111,100,115,113,115,99,91,105,116,102,110,109,116,94,106,107,93,102,110,106,109,106,103,95,108,109,112,112,126,117,111,104,108,108,100,99,108,99,105,102,110,90,110,112,110,106,100,101,106,112,104,101,104,106,108,102,101,104,101,102,104,111,99,102,103,119,104,95,104,101,92,118,106,108,83,112,103,101,105,107,106,112,107,89,103,106,104,100,125,102,108,109,105,111,118,107,101,106,113,96,101,125,115,107,104,100,113,110,111,101,94,105,93,106,125,105,103,99,99,103,100,104,89,100,108,111,114,111,126,110,96,105,96,104,103,103,104,101,90,107,99,97,109,108,104,98,99,111,119,111,109,102,111,113,107,108,107,98,107,99,110,104,113,100,112,104,105,102,110,111,108,106,111,99,100,99,105,71,109,107,99,114,113,119,101,102,105,99,97,104,104,93,106,106,100,104,113,102,101,99,102,114,107,105,103,93,98,99,100,103,111,110,103,108,94,110,107,109,118,114,111,102,110,92,102,112,104,104,106,102,109,99,123,112,117,109,106,93,127,123,91,102,113,103,107,106,114,106,107,102,117,100,114,104,100,112,99,100,95,103,112,112,78,96,114,105,120,113,110,110,103,108,89,136,107,122,105,110,107,110,105,109,107,107,110,116,102,96,121,114,117,105,93,111,108,102,98,110,107,99,101,105,98,117,104,107,107,108,116,114,105,115,116,99,101,92,71,112,109,106,130,121,121,92,80,70,96,109,106,108,97,99,100,103,105,108,115,104,113,111,100,107,101,117,102,105,103,109,102,103,113,92,106,106,118,128,108,101,114,106,101,107,98,107,102,100,115,98,104,106,104,97,117,108,100,107,117,112,113,112,109,97,108,95,109,104,95,108,119,102,98,98,119,109,100,116,106,122,99,100,118,98,109,111,114,94,112,99,115,98,103,100,121,90,107,105,109,105,113,106,101,108,98,110,103,108,96,102,116,113,103,115,104,120,107,106,102,91,108,100,120,108,104,107,98,101,100,95,118,112,105,106,94,128,108,102,102,107,109,100,121,99,105,109,108,100,105,115,97,98,94,104,121,103,125,107,122,103,103,109,110,98,97,116,95,108,95,98,115,108,107,111,112,113,100,113,94,118,105,98,111,98,117,113,94,83,105,103,104,113,116,118,111,108,114,104,106,104,102,105,89,116,109,112,112,110,112,112,96,100,108,118,115,116,108,103,102,102,121,95,110,104,97,105,112,109,96,105,95,113,104,105,113,98,131,108,106,115,103,91,114,92,104,103,111,108,86,111,95,105,91,117,105,113,105,103,95,106,108,109,114,113,111,114,113,102,106,108,109,111,115,107,108,108,124,103,109,103,101,119,108,114,138,137,144,144,155,118,137,158,135,138,124,132,127,133,119,125,116,110,118,118,109,110,104,106,116,105,112,101,121,111,106,113,111,111,106,87,102,123,93,97,103,117,104,107,120,114,101,105,114,117,113,109,107,104,105,104,103,99,107,104,111,139,109,111,111,115,99,93,112,100,119,103,106,102,93,98,109,97,104,122,109,91,98,103,105,95,108,102,98,123,113,115,97,106,108,100,107,115,93,107,88,96,101,118,101,103,100,107,101,102,99,107,121,112,102,96,118,101,95,98,98,92,103,92,107,82,103,115,106,100,107,99,104,101,97,101,103,104,118,104,111,102,99,117,100,118,124,104,110,102,92,110,117,114,108,111,103,105,99,105,105,94,101,117,117,108,110,106,94,106,100,110,113,99,100,110,106,109,98,102,114,114,99,89,96,105,104,102,104,103,104,98,113,103,103,99,100,94,103,111,107,102,100,96,99,120,110,99,104,103,104,108,113,92,97,97,103,107,98,114,113,94,102,104,111,100,100,103,95,95,117,105,96,117,111,107,102,68,116,105,125,110,104,96,104,108,123,126,110,103,96,107,102,90,112,101,130,98,105,116,100,114,98,111,109,111,111,95,99,107,108,111,111,100,108,107,107,113,135,101,118,108,99,103,96,100,107,77,119,105,116,101,95,102,113,105,109,123,99,96,115,113,107,93,112,103,100,94,106,95,116,103,105,96,111,105,101,98,97,106,102,111,111,96,99,98,112,102,109,95,102,111,104,101,103,89,103,107,99,101,102,104,86,104,104,98,96,99,111,89,88,78,82,104,111,115,114,106,102,113,96,115,103,108,96,104,110,108,106,105,96,106,100,118,99,102,102,109,97,106,101,110,109,104,90,102,99,98,110,96,115,107,99,117,101,110,93,101,103,105,91,103,106,116,121,117,106,84,113,104,104,89,94,104,108,118,91,102,96,91,109,105,92,113,101,116,103,96,102,97,102,103,102,100,108,105,104,102,103,108,100,110,113,103,110,99,107,115,100,97,103,102,98,100,110,101,104,117,104,109,102,110,123,105,103,91,114,96,101,98,95,75,103,106,103,117,100,101,66,101,109,106,100,108,109,112,105,99,91,102,103,102,101,102,113,109,105,109,114,102,107,113,109,116,101,99,112,116,113,95,106,108,106,105,98,102,107,112,103,103,109,116,111,102,115,96,113,102,107,111,116,105,104,111,109,92,103,108,117,100,102,114,94,108,112,100,103,102,117,107,88,100,89,105,99,94,105,109,110,119,99,94,105,101,113,96,115,109,99,111,86,105,105,114,106,104,104,90,108,98,96,98,104,97,105,103,96,102,106,109,95,109,104,104,111,104,90,128,102,101,118,102,102,98,106,98,103,103,99,102,101,106,103,108,96,102,115,109,105,103,111,100,102,103,94,92,107,108,119,109,102,103,103,102,102,106,109,117,79,103,96,100,101,93,93,115,109,100,92,106,98,115,105,110,119,99,122,120,110,106,101,114,99,101,110,111,113,103,98,100,102,100,100,111,109,110,108,111,90,106,91,93,113,117,97,112,113,101,97,109,95,95,104,91,103,94,105,101,111,106,103,122,104,98,99,96,113,110,98,105,104,92,94,97,114,94,104,88,98,102,118,106,100,110,112,108,101,94,109,109,101,101,105,100,96,108,105,92,101,99,111,102,99,94,104,105,109,100,108,84,117,98,106,125,104,97,112,109,103,102,108,111,94,126,113,105,101,117,105,103,76,101,135,113,100,98,103,111,98,104,105,94,98,102,99,107,110,98,120,108,88,99,95,101,111,112,101,102,106,100,103,109,104,105,105,100,108,112,102,108,112,120,109,99,108,105,100,95,84,103,100,106,94,113,100,98,114,99,101,98,99,101,120,106,96,104,94,113,101,101,112,116,111,101,99,105,105,100,97,108,110,107,105,101,112,97,117,98,100,108,87,111,95,108,88,100,101,99,106,97,111,72,101,110,120,98,106,109,110,112,109,116,102,115,102,103,113,95,108,102,109,111,108,106,113,104,112,109,114,113,100,98,102,102,91,109,96,92,110,100,113,107,101,105,104,99,97,93,103,106,103,109,97,91,88,100,103,106,106,99,93,94,110,100,109,88,120,90,98,105,96,100,95,113,114,97,114,95,92,95,94,99,112,101,107,117,113,90,113,109,105,123,99,107,99,101,103,101,105,101,118,96,109,103,108,89,112,95,93,103,121,98,108,109,113,94,111,95,100,108,87,102,106,104,97,102,111,99,112,108,114,109,103,107,109,90,101,113,105,120,96,98,99,113,88,98,114,106,119,106,100,103,103,100,97,89,105,108,102,90,102,102,83,102,95,96,102,86,96,96,94,110,99,101,103,122,118,100,101,102,90,107,103,105,106,101,96,97,97,107,105,109,86,95,99,117,93,126,106,104,90,103,81,95,108,95,93,106,97,105,115,98,111,100,109,111,100,101,92,123,105,110,97,100,95,96,89,115,86,105,100,99,114,89,100,103,99,115,91,101,107,118,104,101,104,104,92,109,96,100, +597.91211,91,109,102,97,105,95,103,101,109,106,116,113,86,107,91,113,96,102,102,100,97,100,105,91,86,111,94,107,99,101,93,85,104,99,110,101,109,101,99,100,101,108,100,110,122,112,106,125,101,105,107,108,101,94,99,104,102,113,114,95,95,104,117,106,102,118,91,110,91,115,109,110,96,83,94,110,99,94,102,103,103,98,105,114,109,114,121,113,98,106,101,100,101,102,93,107,92,107,117,79,110,97,98,110,109,108,90,85,107,95,112,98,110,102,105,103,87,104,111,101,100,98,129,112,109,109,108,111,101,104,105,107,92,111,105,119,112,109,101,101,97,93,105,89,99,104,107,108,94,109,109,96,115,89,98,102,109,99,105,101,95,100,105,94,97,101,101,98,106,111,110,100,97,108,95,98,109,93,110,101,111,102,92,115,97,99,97,94,103,92,104,107,103,101,115,108,106,110,106,110,98,104,112,104,111,111,100,121,109,100,110,92,103,111,97,113,103,109,116,102,98,111,107,107,94,111,105,96,106,94,119,99,104,104,119,117,103,101,96,110,108,99,106,104,105,98,118,101,107,110,99,102,110,103,103,94,94,112,107,103,99,104,98,96,104,99,104,99,98,102,114,110,104,103,107,108,100,108,104,99,106,115,106,102,109,102,109,105,108,100,94,110,103,101,111,100,109,106,102,95,97,87,103,104,97,105,108,120,109,113,104,114,108,93,105,104,98,101,97,107,102,97,124,100,98,123,101,105,103,108,120,92,101,102,104,104,94,109,96,104,100,113,99,105,99,112,100,111,104,104,106,105,99,101,111,106,99,110,103,106,98,107,96,99,104,101,106,102,113,110,113,112,105,109,95,103,111,109,98,103,114,109,105,104,106,102,91,119,101,103,107,86,111,108,90,111,102,106,87,109,103,106,111,99,117,104,112,101,100,109,91,102,110,114,105,92,114,99,100,101,112,102,98,106,106,107,105,97,101,120,102,111,100,99,106,116,96,98,103,98,108,103,103,103,136,104,104,90,103,110,99,101,106,108,96,110,105,99,95,92,108,100,117,121,104,113,98,106,100,108,105,106,106,96,108,116,108,117,108,117,101,101,100,99,100,110,108,108,101,99,109,105,110,106,98,112,101,98,111,110,113,101,102,85,115,91,109,106,106,103,113,98,100,110,97,112,111,105,102,74,102,107,109,95,99,110,119,71,102,99,101,109,104,104,106,105,102,110,105,103,99,107,104,85,102,105,106,109,101,106,99,110,110,98,109,101,87,101,101,101,91,109,101,107,112,102,97,91,114,106,87,105,101,103,105,106,103,94,106,106,107,100,108,134,103,109,95,101,103,106,105,113,111,102,112,117,106,108,117,99,101,108,117,108,115,125,104,106,103,108,103,99,103,108,101,100,105,113,101,100,110,113,121,111,86,102,112,109,97,117,101,100,113,89,95,100,107,100,113,109,104,100,112,93,101,101,99,94,103,112,109,110,108,107,117,108,103,108,118,106,100,107,102,112,90,109,112,96,109,77,83,102,105,104,104,111,103,101,100,106,105,100,110,96,104,110,93,103,108,105,112,114,104,104,112,104,94,125,99,101,96,103,106,94,105,98,99,117,99,103,102,109,95,98,98,104,103,101,98,98,110,105,109,92,103,109,109,93,107,108,105,103,101,110,103,96,106,99,117,116,107,97,103,106,110,106,112,102,100,98,121,106,115,99,102,105,100,100,110,115,106,96,99,104,77,113,103,109,107,105,99,98,110,101,104,106,111,109,101,107,99,114,111,109,95,114,110,112,92,103,109,114,95,110,99,105,110,96,102,114,98,106,97,109,101,109,103,106,109,113,107,118,106,102,108,104,104,95,108,109,103,108,110,81,102,88,106,105,114,103,101,104,114,111,106,118,106,111,115,108,109,98,103,106,102,91,112,84,112,95,111,96,103,102,100,98,108,107,103,97,102,102,108,102,95,96,81,100,110,117,96,107,112,101,96,113,105,91,101,121,111,107,105,112,108,104,104,117,105,111,103,114,110,93,113,113,101,111,97,100,97,105,111,115,92,103,103,100,97,111,97,90,106,102,96,110,107,114,111,95,108,107,107,113,103,109,110,112,104,116,114,102,104,115,109,103,102,105,103,95,103,108,100,102,94,90,104,109,103,98,94,99,110,108,91,99,108,99,97,110,95,103,99,97,112,104,100,98,105,117,106,115,112,101,102,101,107,102,113,99,92,116,103,117,96,100,106,108,99,99,95,110,97,95,109,108,103,109,104,110,102,97,99,114,93,107,105,112,100,108,104,111,105,92,104,102,109,94,111,117,116,116,103,102,107,118,117,97,101,125,110,89,114,117,109,103,119,125,123,141,127,156,131,140,153,142,135,160,150,137,148,138,112,116,125,125,111,126,92,132,103,101,108,125,91,109,109,92,115,102,95,98,99,104,98,92,101,113,92,103,108,104,101,97,108,106,107,87,100,102,113,102,113,143,100,112,101,95,107,98,104,102,109,95,100,110,105,114,107,101,106,109,108,108,110,101,98,92,96,122,117,99,107,102,100,103,99,102,98,96,112,112,96,98,103,102,102,115,119,109,102,84,108,105,95,105,98,97,99,83,111,114,111,105,96,103,101,95,106,103,98,100,108,100,92,114,110,104,109,97,108,96,108,110,104,113,110,98,84,107,104,76,105,116,112,116,117,100,101,99,100,104,105,97,108,110,95,106,114,84,119,102,104,115,99,100,101,112,102,104,107,105,102,94,97,108,103,123,111,102,94,104,99,107,110,113,113,118,94,106,94,115,105,104,92,107,100,110,102,104,104,100,121,100,107,102,105,95,100,122,109,105,109,105,96,97,102,111,104,112,96,103,99,108,94,102,116,102,108,112,116,103,117,88,104,110,109,91,114,108,113,109,95,106,109,98,98,100,105,109,105,112,105,94,76,125,98,107,109,112,103,108,109,93,97,113,109,97,95,106,105,107,100,98,107,103,104,111,110,112,104,121,116,101,107,104,116,110,96,108,107,87,103,118,106,106,123,99,98,113,105,108,102,109,101,110,113,104,94,97,110,95,103,102,102,99,102,103,100,100,112,103,99,102,108,98,114,91,96,109,108,94,98,114,109,103,102,107,108,104,108,103,109,110,107,102,104,106,107,113,103,107,104,94,103,109,109,104,109,96,96,106,112,109,109,114,105,102,97,109,99,111,108,105,98,112,110,97,96,105,121,107,107,93,103,94,91,107,106,107,104,107,100,112,112,96,108,119,98,117,106,100,101,113,96,93,89,97,114,103,110,107,95,109,108,95,93,113,106,97,111,105,99,101,105,101,81,101,102,102,99,98,114,104,103,106,104,109,111,111,104,98,113,102,110,102,97,112,102,90,98,101,107,100,103,102,101,105,119,108,102,106,111,112,103,106,102,106,106,93,94,99,104,101,113,103,102,98,109,105,101,108,106,109,96,103,104,115,90,107,103,113,103,92,104,94,104,106,99,88,107,96,95,105,106,108,110,107,104,114,108,102,97,108,94,104,100,112,109,107,99,99,109,111,111,105,90,105,98,111,105,103,107,99,118,100,103,109,106,111,106,100,100,99,108,105,105,115,109,99,108,91,92,102,113,103,102,116,105,105,98,97,103,108,91,104,99,100,93,101,108,109,105,108,111,119,97,105,96,121,110,104,104,108,95,100,101,113,103,100,110,112,106,115,104,107,99,90,108,105,108,96,102,101,106,102,109,100,103,108,105,100,83,102,98,99,111,99,99,109,104,101,103,101,117,97,116,110,111,98,85,92,119,110,104,83,116,99,124,110,103,102,113,103,101,115,111,99,106,107,93,94,109,109,103,85,102,103,111,97,109,105,105,108,113,91,86,100,103,106,100,96,105,115,116,94,113,85,92,112,99,98,116,107,100,114,107,104,99,106,116,97,110,106,112,116,90,104,96,105,97,107,109,124,109,105,102,100,98,109,108,105,109,106,114,110,111,116,103,106,106,106,114,113,100,113,106,100,106,98,103,99,104,113,96,96,99,95,104,102,113,92,107,103,102,111,111,99,105,105,105,83,107,104,99,108,105,101,96,97,102,98,101,117,112,115,106,103,109,111,103,99,119,97,110,106,104,113,106,104,97,104,100,95,97,96,103,95,104,104,104,100,107,92,104,102,102,109,91,106,109,95,85,118,99,103,96,107,99,109,112,111,105,102,105,115,117,101,107,106,105,103,106,108,105,108,110,103,116,98,114,107,106,104,101,103,103,109,93,99,103,103,105,120,110,106,111,105,110,116,101,114,111,102,105,103,115,107,94,100,117,93,99,107,106,113,110,83,95,94,106,103,118,87,102,109,115,108,100,125,102,101,116,106,110,116,103,104,107,102,98,102,87,95,109,100,100,121,108,98,93,103,94,103,96,104,98,109,89,98,122,110,109,102,102,93,98,103,110,107,107,104,112,106,106,99,99,105,91,97,103,108,106,103,112,102,106,110,84,120,102,101,99,92,106,120,104,99,110,72,107,105,99,97,98,99,109,104,100,91,90,108,94,105,95,99,115,99,93,95,99,114,100,105,106,110,103,96,92,102,123,101,121,97,112,93,108,94,111,122,112,107,107,110,107,119,99,106,91,116,100,96,104,100,87,103,97,103,110,94,100,98,104,100,101,105,117,101,102,112,96,101,106,107,100,99,109,113,114,103,103,101,113,113,108,108,114,102,96,99,104,108,104,107,95,104,101,91,94,80,93,93,110,125,104,100,106,97,94,93,105,109,103,99,103,108,113,105,98,97,87,101,108,103,99,99,109,108,103,99,122,96,100,108,97,114,109,103,108,98,104,111,106,120,101,105,89,98,113,107,108,108,121,102,103,81,115,103,111,100,113,98,100,108,105,106,106,92,91,92, +598.05316,99,100,96,104,97,104,95,105,99,108,99,116,94,114,107,101,106,105,115,92,104,104,95,80,95,81,102,122,103,106,102,89,98,103,108,98,111,95,100,96,103,100,92,93,100,106,115,96,112,111,111,94,104,98,106,85,92,109,109,94,99,121,112,103,98,109,98,97,93,100,109,108,105,84,95,106,99,108,112,123,113,117,109,115,79,97,106,104,90,104,107,102,102,114,100,103,100,97,96,102,94,103,91,108,113,109,96,98,102,112,108,104,101,91,98,110,112,105,103,97,102,95,98,106,105,103,108,83,102,104,99,104,112,117,98,93,100,94,99,109,103,112,94,109,98,103,110,95,104,99,105,94,95,107,111,103,98,112,119,104,91,121,107,95,109,88,106,97,106,95,79,104,94,97,96,102,74,107,98,104,123,105,107,92,104,108,103,86,105,110,101,96,134,92,104,107,109,106,112,100,121,101,103,103,105,105,103,100,121,102,89,75,96,93,92,109,106,103,94,93,99,102,101,114,97,110,111,109,111,96,66,104,103,108,101,113,98,110,99,109,102,95,105,119,106,96,102,97,102,87,110,104,108,104,114,94,116,104,103,104,95,109,103,99,100,99,87,107,94,99,106,104,106,105,108,111,104,90,101,105,101,104,110,116,101,109,95,95,102,105,104,92,109,108,100,105,110,105,103,108,96,101,98,106,108,103,105,96,113,112,108,112,95,94,113,109,112,97,108,112,95,104,107,95,102,96,96,98,103,109,121,105,104,104,99,108,114,95,93,101,109,100,96,105,96,102,105,112,101,100,116,82,99,104,102,110,104,111,80,113,99,107,109,110,98,87,109,101,101,114,118,101,110,98,108,99,116,104,105,100,96,111,106,113,104,108,98,101,116,122,109,103,112,97,109,104,101,101,103,113,105,109,105,109,95,102,105,108,115,99,91,105,108,97,103,99,104,99,96,114,101,99,99,99,104,100,103,102,98,113,103,106,97,121,98,103,111,116,100,100,104,112,96,91,100,100,96,105,114,108,107,106,114,113,103,97,103,111,124,102,109,104,108,99,106,122,105,96,99,86,104,97,92,96,104,92,106,115,108,94,109,105,107,111,114,106,106,111,100,99,102,109,106,106,117,109,101,116,95,102,110,106,103,115,113,109,101,114,109,102,95,105,114,88,113,107,101,93,104,89,113,107,96,109,97,101,107,99,98,97,97,107,91,94,104,127,111,106,91,113,111,111,116,100,113,103,103,107,102,102,110,118,108,107,100,95,107,119,91,110,105,102,96,99,103,115,100,106,102,101,95,94,107,103,104,106,107,96,102,113,101,104,106,107,104,94,108,107,112,97,104,106,93,92,108,109,97,101,96,105,111,110,102,99,95,94,96,115,102,109,108,108,114,108,102,97,110,116,106,98,103,108,98,116,103,107,102,99,108,106,110,104,110,96,103,104,104,102,105,107,119,109,99,90,75,102,113,98,108,108,108,107,105,108,114,100,110,106,103,116,94,99,97,110,105,104,95,104,106,113,126,103,101,107,101,100,111,99,114,107,102,100,101,102,82,103,113,117,103,110,106,108,105,97,91,110,104,94,117,98,105,101,107,93,114,98,107,109,114,114,123,105,107,98,97,113,84,68,101,101,107,107,116,104,98,109,103,115,106,99,113,102,108,95,65,104,102,103,102,113,103,104,103,98,110,110,117,109,107,98,112,92,95,104,107,109,110,105,112,96,104,118,92,111,103,97,103,99,105,104,102,114,121,102,95,107,96,100,101,110,111,105,123,86,101,117,101,91,125,119,106,112,105,109,101,109,105,82,101,110,99,105,101,101,97,108,117,112,125,99,141,99,103,109,106,100,108,108,106,99,106,94,104,107,106,117,113,108,100,101,108,113,108,103,109,106,99,114,104,117,102,102,105,96,93,105,103,96,95,101,99,96,100,102,104,108,115,112,96,107,111,114,85,100,104,105,109,107,110,111,114,102,94,116,106,103,109,104,100,102,110,103,105,105,106,100,96,115,109,115,101,110,113,108,111,104,103,115,107,114,82,108,107,112,112,102,111,101,97,117,129,104,110,113,103,100,111,138,108,115,105,107,133,113,121,105,105,101,117,99,102,88,104,109,98,105,97,102,100,102,97,99,104,109,97,96,95,115,107,109,99,114,119,108,118,101,113,124,85,109,102,119,102,100,108,103,102,99,98,109,107,98,117,97,101,109,100,99,100,101,106,111,112,105,101,108,94,104,111,101,99,94,91,118,90,106,111,106,92,102,99,97,103,95,106,98,110,108,95,113,99,100,104,111,97,107,112,102,106,98,105,119,126,94,110,125,121,104,95,102,105,110,114,97,115,113,107,113,126,138,136,141,133,165,129,131,133,167,148,152,116,130,124,156,131,119,108,112,120,94,100,119,104,100,106,105,118,110,118,104,114,108,115,100,107,129,116,100,97,102,103,115,91,113,112,110,99,97,107,102,109,99,103,95,112,99,99,100,119,91,105,111,116,101,99,113,106,103,108,87,115,119,103,110,107,99,100,107,104,117,101,109,109,92,106,113,105,112,109,114,112,110,102,105,95,100,108,98,102,101,100,106,93,118,100,101,96,109,103,112,114,111,110,110,109,105,114,103,102,116,106,101,117,105,108,109,97,91,104,100,102,107,101,117,111,116,111,102,108,106,109,109,102,107,117,109,117,113,114,106,82,103,111,110,105,94,102,109,102,103,122,115,105,112,109,109,109,96,112,107,105,105,104,114,100,109,109,113,116,106,100,105,96,107,111,106,102,106,106,102,95,109,105,111,108,96,98,113,110,103,118,106,129,95,111,119,97,106,107,106,112,98,105,103,116,103,101,95,102,109,110,103,115,104,116,103,106,106,99,117,107,105,113,117,97,109,104,111,107,111,109,131,101,108,108,104,112,106,102,106,97,113,96,110,109,111,107,113,98,105,96,120,97,93,105,107,108,108,107,104,103,109,105,107,109,107,106,112,114,111,115,96,112,91,105,108,113,114,94,109,105,94,109,109,110,104,99,103,92,103,95,107,118,95,110,111,119,109,109,118,107,96,103,100,100,99,104,100,105,96,97,96,113,95,111,91,111,109,93,108,108,101,104,98,108,100,106,107,90,87,113,101,100,109,109,92,107,108,106,117,96,103,122,101,66,115,107,72,102,106,113,100,90,116,102,99,113,117,100,98,99,99,104,116,102,92,105,112,99,97,95,104,105,95,111,94,100,90,108,113,101,108,102,105,119,128,102,106,104,98,101,114,108,100,101,107,125,99,113,107,123,101,100,104,98,119,92,120,102,95,102,116,96,112,107,119,81,99,103,111,99,103,109,98,102,105,106,101,91,106,109,106,113,104,113,93,91,101,104,102,111,104,96,100,103,104,114,124,96,116,102,110,107,102,109,89,105,102,111,107,105,105,105,108,109,118,112,121,101,112,110,110,106,105,99,100,107,117,103,101,117,131,102,96,98,108,92,100,98,99,114,108,99,103,103,107,110,102,116,98,93,105,95,103,113,106,105,108,92,104,99,106,118,106,102,102,96,110,104,103,102,105,104,103,113,110,103,115,103,125,108,114,104,105,108,98,116,109,101,113,95,85,112,97,112,113,117,112,103,105,93,93,106,106,115,103,110,105,103,114,107,100,104,93,84,95,97,131,98,113,106,111,106,102,98,99,106,103,107,115,102,102,109,101,109,125,113,104,105,98,111,93,107,109,106,96,110,109,104,108,102,102,105,85,115,105,105,109,105,104,108,116,96,94,100,116,105,104,93,110,106,115,105,114,105,110,107,113,103,101,117,105,106,109,119,115,104,103,98,118,105,68,107,91,106,102,112,100,113,102,120,91,110,107,110,107,108,115,106,117,103,106,113,99,106,144,106,102,124,99,108,108,97,115,105,101,108,106,101,99,107,110,117,94,102,100,98,91,113,108,102,111,97,106,104,93,96,102,106,105,109,102,99,98,128,95,109,106,105,78,105,108,101,104,114,110,106,100,107,112,106,117,108,107,113,106,116,107,110,114,122,99,132,113,109,108,99,111,110,101,102,104,106,85,102,96,100,91,111,89,103,105,103,107,113,115,103,99,103,102,98,95,124,91,102,110,105,95,98,113,97,108,101,105,112,104,102,105,109,98,105,104,96,103,78,103,102,121,99,104,109,101,109,100,103,107,102,104,96,96,97,106,104,110,104,110,113,95,102,99,107,114,91,89,99,101,111,123,99,108,106,111,106,99,97,99,107,108,100,102,105,116,115,95,113,111,107,99,98,104,106,102,104,112,106,113,109,104,107,128,110,113,103,99,107,98,109,105,103,124,105,107,107,114,115,101,108,103,106,109,104,110,117,106,109,110,110,103,119,109,95,111,109,98,102,100,102,104,117,102,107,92,112,101,107,104,99,87,95,94,116,104,99,96,102,107,104,102,88,92,104,104,108,113,108,103,90,108,117,106,99,98,113,109,110,109,103,107,108,102,94,96,101,111,106,110,108,100,101,103,106,114,95,100,110,102,118,104,104,100,97,110,111,103,115,107,105,88,108,117,109,106,106,97,95,75,98,101,96,106,99,95,96,116,102,102,102,111,98,99,111,102,107,101,102,121,103,117,97,93,94,100,95,100,106,96,116,113,105,108,90,98,101,111,91,104,96,104,102,111,112,108,90,98,111,96,101,113,93,109,101,110,102,115,113,114,102,85,116,100,105,92,105,104,117,92,91,106,92,111,122,96,105,108,100,112,113,91,98,111,99,104,118,109,115,106,100,104,98,103,106,102,103,107,107,90,103,109,100,98,107,101,103,108,109,107,107,117,104,103,116,100,112,99,79,116,95,101,102,107,95,102,89,90,108,106,99,110,113,105,112,106,115,95,117,111,100,117,111,110, +598.19415,94,92,98,101,108,112,88,91,108,102,98,105,102,95,116,107,107,103,95,95,109,109,103,103,117,92,102,108,108,92,120,116,117,101,111,101,88,104,92,105,96,113,105,99,106,103,113,92,101,100,99,109,97,94,104,103,66,88,109,96,100,103,112,95,106,113,96,103,89,112,100,99,98,95,101,106,97,90,98,100,108,105,103,105,112,99,108,117,82,98,108,105,112,130,100,105,103,101,112,107,98,104,113,98,100,106,105,125,119,95,95,107,103,103,109,104,99,110,96,100,113,95,116,99,105,115,105,92,113,99,100,116,101,100,100,112,101,117,107,104,103,97,104,95,96,82,103,106,98,107,102,107,109,107,97,103,100,111,103,100,104,98,112,105,104,100,96,101,114,107,99,105,116,98,107,102,117,93,98,109,108,109,106,113,105,124,99,106,105,91,110,99,104,96,104,102,106,102,103,106,95,110,95,98,111,113,106,99,105,105,95,106,111,108,93,104,105,108,105,97,107,115,111,92,103,95,99,98,105,106,88,103,115,102,88,111,116,100,106,105,121,105,105,106,92,94,98,99,116,111,104,110,78,99,104,110,102,105,109,116,100,102,95,102,102,108,113,113,118,95,110,107,99,93,100,106,109,101,101,101,105,119,102,113,117,109,95,103,99,102,98,106,105,105,121,102,101,103,105,99,105,109,112,117,121,107,122,113,120,108,99,114,99,120,93,106,106,91,96,116,99,123,111,110,122,104,108,116,113,106,94,98,101,122,94,97,109,92,98,107,102,104,108,95,103,113,101,108,98,107,114,92,113,109,69,105,111,109,104,103,103,108,102,99,107,99,103,107,92,106,109,102,108,109,103,100,115,101,103,103,110,111,104,118,114,90,99,108,108,120,113,99,103,106,95,105,73,95,93,108,104,105,109,96,103,95,103,117,98,103,101,95,102,99,99,98,103,97,103,97,106,103,101,101,98,95,95,111,92,110,86,103,94,116,114,98,101,106,91,94,107,96,108,96,97,113,109,105,103,103,96,117,98,118,103,105,107,100,111,111,98,93,113,104,99,117,103,102,114,97,104,133,110,103,107,97,95,104,111,112,87,120,102,89,99,98,107,99,105,109,113,117,102,103,91,106,112,111,101,98,108,100,109,103,105,100,96,106,115,111,104,107,109,102,91,107,108,104,110,99,111,104,113,97,116,103,112,112,94,100,103,105,102,110,87,103,111,102,103,109,105,113,103,108,102,99,111,99,108,103,116,109,98,99,92,120,96,116,97,105,96,100,101,108,102,97,105,119,106,114,96,104,96,108,92,98,104,98,110,105,105,105,88,105,96,108,105,115,108,109,117,108,104,98,107,99,117,102,108,120,108,95,96,98,105,108,103,109,96,102,108,107,100,111,104,94,109,109,104,101,113,109,104,112,79,103,107,103,108,113,105,99,88,117,112,109,112,97,112,103,110,105,98,97,108,100,105,102,105,107,108,105,102,108,101,101,107,113,113,110,109,96,100,106,105,113,110,101,104,103,119,103,91,106,106,111,104,112,111,99,104,106,113,103,107,106,93,103,94,105,113,110,106,110,107,105,90,88,97,101,94,92,91,99,112,102,108,104,112,83,101,105,97,94,103,117,99,96,109,99,107,99,111,99,96,100,100,115,116,102,111,112,97,109,109,103,111,101,104,105,105,92,100,98,106,98,106,109,102,122,116,106,113,96,105,99,117,101,110,99,110,103,116,105,104,99,117,100,105,108,103,102,115,108,106,107,100,105,108,115,101,99,116,80,104,121,109,102,130,104,101,106,117,91,120,104,101,107,99,114,103,117,103,115,115,104,104,94,108,92,104,103,99,107,99,117,103,116,107,117,107,109,127,95,106,101,103,108,118,108,116,118,114,105,103,106,105,112,111,99,96,110,116,105,103,105,103,107,118,104,100,93,107,109,99,106,114,107,115,103,127,102,106,114,99,94,99,99,122,115,117,99,103,119,93,104,103,100,108,96,103,93,99,98,95,99,99,108,107,96,109,102,105,109,111,92,104,93,99,113,101,96,92,112,105,104,113,110,103,109,95,78,118,107,106,110,100,106,111,108,114,104,116,95,112,107,101,114,103,107,95,118,105,108,100,113,105,101,115,104,88,110,114,99,99,94,106,116,108,93,103,99,121,107,108,113,102,108,96,113,103,101,95,88,95,110,94,91,113,109,91,100,106,100,99,99,103,105,95,112,95,102,95,96,106,95,106,105,104,105,105,102,103,108,109,109,109,84,75,106,95,107,112,101,100,103,108,101,90,118,102,104,96,110,101,99,111,106,101,104,105,122,104,102,111,107,99,108,119,100,103,116,115,107,115,105,109,119,132,121,129,146,139,130,131,138,135,149,154,139,134,122,107,122,121,123,103,111,111,110,115,96,91,121,115,112,92,114,107,110,103,118,101,109,109,106,113,101,121,100,98,103,92,112,103,114,101,99,113,110,100,99,113,110,105,107,107,92,115,103,114,97,104,103,98,95,104,104,120,116,107,125,102,110,107,91,102,106,94,100,121,100,124,107,103,107,120,91,102,106,103,111,99,113,103,99,106,100,105,108,103,104,76,112,100,96,102,88,101,103,94,103,106,116,122,101,97,99,103,124,98,94,107,91,101,107,106,133,107,103,106,105,107,90,94,88,102,106,104,97,106,108,93,100,114,95,102,113,115,119,102,95,101,108,111,106,107,113,98,96,98,103,106,94,112,106,108,102,98,90,116,108,103,103,92,106,108,113,120,102,109,102,97,100,103,121,107,103,106,90,106,117,116,106,109,104,101,107,103,106,106,94,113,105,101,106,113,106,91,103,119,113,116,109,101,112,106,94,101,110,105,103,112,103,110,103,104,107,99,121,100,108,121,112,117,111,108,107,100,106,105,116,99,102,105,114,95,98,103,100,104,110,103,102,104,98,102,93,97,106,111,109,97,111,91,109,109,131,108,103,101,101,99,99,113,104,99,105,87,98,99,110,116,104,109,110,104,130,106,107,111,103,104,100,110,117,108,100,105,96,93,110,109,97,105,105,112,111,102,100,107,100,105,103,90,104,102,101,91,105,110,107,111,107,111,102,108,115,109,108,99,109,110,94,105,100,102,104,103,111,94,112,109,119,104,111,110,98,109,98,119,103,106,109,109,101,113,103,108,113,114,121,99,120,96,110,113,113,104,116,97,108,107,108,97,126,111,111,98,105,117,105,104,69,111,102,112,97,106,105,103,105,103,99,102,94,100,113,103,90,111,101,108,102,102,103,99,111,103,104,107,97,103,113,119,115,115,93,117,103,101,116,96,101,97,109,84,104,102,99,112,110,104,109,93,106,102,109,101,108,102,98,102,103,106,109,100,100,102,98,97,97,109,110,101,107,101,105,105,99,113,98,89,110,108,98,98,98,105,116,99,105,102,103,93,101,94,109,92,103,84,102,98,101,105,109,103,105,105,81,104,97,100,105,113,112,99,110,100,110,105,101,108,100,105,110,94,109,111,107,103,118,100,98,105,102,114,103,98,105,111,107,115,104,109,108,105,96,110,105,103,105,105,111,112,103,111,100,111,100,99,102,109,111,102,104,100,97,108,100,102,114,105,103,93,112,116,103,108,104,98,104,96,113,109,99,116,99,98,104,98,93,104,98,108,93,104,120,110,97,106,110,111,106,104,110,108,109,100,103,111,111,111,105,91,108,101,108,98,101,110,97,109,99,102,105,105,99,105,111,103,109,96,102,102,112,112,104,108,101,99,104,103,105,90,104,99,106,113,102,103,94,106,102,110,110,107,108,104,107,104,109,119,100,108,108,105,104,99,109,112,113,104,100,105,103,106,97,98,103,92,108,97,103,104,115,112,98,101,106,102,99,97,121,106,102,114,98,97,102,103,98,111,100,102,103,112,109,97,103,98,92,110,98,95,103,113,102,105,96,103,104,100,104,101,88,106,106,90,105,117,92,108,99,92,102,117,100,104,110,113,102,104,93,117,104,94,105,103,120,112,107,103,100,118,101,112,96,109,102,74,117,96,111,109,105,101,100,97,100,85,98,109,103,111,110,104,100,94,103,106,102,104,120,103,108,114,108,105,96,95,105,105,114,106,99,118,104,96,91,100,102,99,107,115,109,108,104,117,110,103,101,115,93,103,102,102,98,123,136,100,92,103,104,112,111,105,98,99,109,106,101,112,110,107,101,101,99,109,107,82,101,102,102,112,95,107,77,111,99,95,104,95,98,108,101,100,100,100,96,101,116,107,107,103,103,100,84,110,99,100,110,105,102,100,127,93,113,109,102,97,100,103,112,99,101,111,103,99,106,114,93,104,102,98,101,124,107,106,117,91,100,102,98,108,108,101,102,104,113,110,117,112,100,104,101,105,113,103,109,100,84,103,96,94,106,101,108,103,122,106,94,104,94,99,114,95,101,106,108,117,109,104,96,99,108,103,97,99,108,107,107,102,104,106,106,94,113,101,96,97,107,93,106,103,103,109,108,100,107,100,101,104,115,110,95,105,105,99,106,91,102,106,108,84,120,93,100,100,92,101,107,109,104,102,119,101,101,101,79,98,104,113,116,104,99,126,117,105,97,99,116,96,100,112,99,103,121,99,104,93,99,106,106,110,100,119,108,110,93,102,89,106,102,115,93,105,104,113,83,120,97,103,104,110,103,97,109,95,97,92,104,94,105,102,129,98,117,105,92,99,106,113,109,93,98,103,98,109,105,95,107,94,107,113,98,101,111,98,107,127,112,89,78,104,110,109,102,106,103,95,109,106,105,97,99,101,110,111,108,108,113,95,104,111,106,105,101,100,117,103,109,86,100,93,119,96,94,104,101,80,99,98,109,104,122,93,105,108,102,109,108,106,123,112,99,99,97,96,86, +598.33521,99,94,109,86,87,108,99,99,97,103,109,111,101,104,104,99,97,98,102,90,107,98,94,104,108,104,97,95,113,108,106,108,114,116,82,93,104,100,111,91,101,101,102,108,73,99,79,110,98,114,121,117,103,101,99,98,100,100,99,100,98,107,95,106,90,112,92,104,101,92,108,83,108,109,92,103,93,100,97,104,97,101,114,87,96,99,101,103,109,86,107,117,98,101,103,88,108,110,95,101,105,98,106,115,104,103,98,105,110,99,106,97,102,102,109,103,101,113,106,104,105,109,107,102,95,106,107,110,117,100,110,111,99,98,101,103,92,104,92,106,90,95,113,113,90,105,114,95,88,100,98,107,87,101,92,107,108,100,107,104,92,101,109,102,96,101,95,84,118,94,115,89,91,95,105,106,105,86,103,108,102,100,92,111,108,104,113,102,102,105,110,97,103,99,118,102,108,89,87,98,98,103,106,99,103,97,112,105,103,102,97,110,100,105,102,95,102,104,97,118,104,84,90,106,104,110,104,116,95,111,106,107,99,106,95,108,98,107,107,104,102,108,106,100,112,98,101,111,118,96,103,98,119,95,103,95,86,100,95,113,95,100,104,105,104,102,98,96,97,96,115,103,110,107,96,94,107,113,106,95,91,107,94,103,90,105,98,105,98,117,138,104,104,96,110,100,118,107,105,98,104,97,112,106,95,102,96,122,85,107,103,101,103,87,106,108,100,103,103,102,93,94,101,108,101,76,99,96,108,106,101,96,113,94,110,103,110,103,101,109,93,99,106,85,113,117,110,118,77,101,105,106,106,107,112,98,111,112,107,93,117,102,103,101,99,96,100,106,99,118,92,106,107,83,106,94,120,113,104,107,95,103,96,107,103,112,106,92,90,104,115,96,120,108,104,104,99,96,101,100,102,105,101,110,108,90,119,122,100,97,102,105,104,107,100,83,93,109,111,91,110,92,100,102,100,87,107,109,100,99,108,106,95,108,103,100,106,116,99,98,103,89,113,107,101,105,105,95,103,99,93,101,104,112,90,116,113,103,108,110,106,104,104,110,85,102,99,97,110,95,86,111,109,103,106,95,113,121,108,114,75,109,104,106,103,107,90,105,111,101,103,118,106,108,79,119,109,100,109,109,113,106,104,107,118,98,91,106,112,99,95,91,104,100,127,96,99,103,102,95,114,103,93,101,99,96,123,109,98,97,104,119,97,80,94,99,101,95,102,102,103,112,119,96,102,88,101,106,112,101,99,106,117,113,100,101,105,94,94,97,89,97,107,102,109,96,105,95,113,111,96,100,98,109,88,99,106,96,108,113,105,106,103,96,99,106,96,103,105,126,92,101,107,96,108,113,91,92,103,104,111,108,107,87,106,99,108,100,107,105,100,98,99,101,100,91,106,109,117,107,110,109,105,93,101,103,102,116,104,110,105,112,97,99,98,105,96,99,112,90,104,98,96,103,96,94,110,103,110,112,112,111,126,111,107,93,105,100,98,111,100,95,100,99,95,108,103,99,107,117,109,106,107,101,111,109,94,100,85,102,108,94,80,91,106,115,102,98,106,114,101,65,106,96,101,83,100,101,110,108,106,94,102,99,102,116,105,118,100,101,89,98,109,100,103,107,105,100,119,108,110,91,101,105,101,93,110,111,97,101,81,106,96,105,104,89,101,102,106,98,107,110,108,114,107,101,104,99,108,106,111,92,120,97,106,95,100,142,114,98,110,119,94,98,104,103,99,104,104,95,101,100,116,109,87,105,99,95,103,107,100,113,107,96,99,117,105,107,91,108,93,83,104,107,107,107,108,99,134,89,91,108,109,92,112,111,108,113,111,95,110,92,103,103,99,104,109,101,100,99,102,100,102,111,97,101,111,97,84,101,106,108,99,105,101,100,105,103,105,111,95,106,107,110,103,97,94,86,100,99,112,109,113,103,110,101,109,112,104,95,101,114,112,99,103,109,100,97,106,111,99,102,111,103,108,104,99,94,109,95,116,120,93,109,89,93,90,110,95,112,102,106,104,104,110,104,97,104,105,119,99,98,108,99,99,88,107,95,100,99,114,111,96,116,90,106,100,106,104,99,105,96,105,116,104,100,95,87,101,102,105,111,101,102,94,88,99,112,102,99,113,106,88,112,106,100,110,92,101,111,112,104,101,84,105,107,105,111,96,108,107,124,106,105,101,99,100,109,105,90,100,99,105,101,104,100,109,96,98,108,103,109,102,102,96,105,126,86,106,102,111,109,102,101,96,101,112,102,102,105,108,99,96,100,98,100,110,101,101,99,93,105,94,93,98,112,106,113,102,110,126,105,113,102,103,106,92,99,108,104,101,105,109,111,120,118,111,128,118,123,118,156,121,150,159,134,141,131,130,132,105,137,130,114,104,115,116,116,110,106,113,98,108,103,107,111,93,102,109,112,110,121,101,107,99,105,105,100,95,112,112,108,75,108,110,111,98,109,98,90,109,104,108,90,106,110,105,104,113,99,118,111,108,93,106,108,103,116,105,104,106,99,106,111,113,114,113,106,100,113,112,98,93,93,98,101,104,115,112,106,115,115,110,107,106,108,103,106,98,111,107,84,102,116,103,100,98,103,103,109,103,102,112,119,106,107,108,102,116,101,91,116,113,93,96,120,112,102,104,105,107,85,105,103,100,113,109,103,112,115,108,110,97,96,112,108,115,111,103,111,102,121,108,108,99,99,104,96,109,113,109,112,112,96,102,119,104,103,106,98,113,109,103,95,111,113,118,113,107,103,103,110,114,101,106,114,103,100,98,106,111,104,115,99,103,99,96,110,117,97,115,104,104,107,104,101,95,116,101,115,124,106,106,105,101,101,99,106,98,104,104,111,103,104,117,98,115,111,104,114,112,103,102,104,108,109,121,109,109,116,112,108,89,100,101,109,98,103,105,100,98,99,87,95,106,110,114,107,95,100,117,119,105,105,97,106,128,112,110,110,104,115,109,91,109,101,96,115,119,104,106,105,100,128,117,116,115,112,112,115,114,97,119,104,121,98,105,115,91,104,96,113,117,94,109,107,137,103,104,114,98,102,93,94,87,112,102,100,81,116,98,113,108,102,106,110,103,99,106,96,102,79,108,116,120,100,104,105,106,92,103,95,98,102,100,110,117,113,104,108,93,110,104,102,94,112,101,96,117,104,100,107,108,105,118,107,104,98,112,102,103,100,105,112,96,102,104,101,98,108,97,101,98,107,94,102,92,97,100,101,94,100,109,116,114,115,103,103,98,96,94,107,102,111,113,108,105,109,96,104,100,94,101,106,106,99,100,109,105,109,114,99,119,110,108,105,106,93,95,100,90,109,96,106,117,126,107,87,101,98,108,115,114,108,104,105,101,98,105,101,100,109,98,105,102,109,102,102,102,102,96,117,105,107,94,106,105,93,111,100,110,101,105,111,103,102,108,108,110,106,115,102,103,100,111,103,101,109,107,100,105,116,108,106,98,95,107,105,103,109,100,103,102,104,107,117,104,105,109,109,93,110,109,126,96,110,110,107,88,105,86,108,128,109,94,100,94,117,98,110,105,102,106,85,98,98,95,104,97,94,103,87,104,112,95,95,104,105,101,96,105,108,107,108,98,101,111,117,116,93,105,119,123,112,105,107,97,94,105,107,101,95,95,111,103,95,91,111,107,91,113,100,98,98,102,104,107,102,111,100,88,105,87,110,110,110,130,100,96,98,101,75,98,126,107,103,109,108,104,99,95,99,99,105,112,95,110,114,111,120,107,104,109,104,97,101,108,96,99,95,99,107,103,110,102,95,102,112,98,105,113,107,114,106,112,96,103,110,106,112,92,112,108,104,104,111,96,90,99,107,110,104,109,103,103,98,104,111,95,104,100,114,102,107,110,103,106,96,110,104,108,121,100,112,105,101,109,102,104,100,101,100,105,110,98,106,110,82,104,107,95,112,104,99,97,83,100,104,99,100,111,91,102,106,112,97,105,104,99,100,109,113,105,98,107,99,100,105,101,124,91,107,100,109,105,100,104,105,101,108,109,117,109,104,108,102,99,104,112,108,92,111,107,104,107,103,106,109,95,101,119,110,107,98,108,99,93,114,106,118,101,97,104,98,98,108,116,97,102,88,105,95,95,104,105,112,119,95,100,105,104,93,113,102,112,109,90,107,94,110,104,98,111,106,97,118,109,129,105,99,98,98,104,109,107,104,113,113,87,103,103,109,97,104,105,105,105,113,103,97,102,116,99,108,96,113,101,109,110,109,107,100,107,107,99,107,98,108,101,106,108,97,101,95,103,108,101,98,106,101,94,100,106,110,94,120,112,102,109,99,102,105,109,104,98,101,106,117,100,106,112,99,105,115,97,97,106,114,93,106,93,115,99,105,91,116,113,124,104,121,112,102,103,103,110,104,103,104,103,98,114,108,88,100,103,95,101,100,108,81,102,117,95,105,114,101,104,110,111,94,97,102,117,107,107,103,101,99,109,103,93,108,96,104,101,106,111,107,95,96,95,112,105,100,106,108,105,105,109,98,104,103,100,112,97,102,100,113,92,105,116,97,103,106,87,101,115,100,99,96,104,98,91,116,109,101,120,100,101,104,100,75,115,105,102,117,98,106,111,99,117,107,96,100,105,104,125,102,99,94,96,105,106,112,101,99,100,102,105,92,118,101,98,94,116,108,125,112,109,101,109,103,111,110,101,109,112,102,97,101,103,98,92,104,92,108,105,98,103,100,97,104,96,99,90,101,137,132,94,100,101,105,98,120,98,106,109,107,106,98,105,116,105,96,90,100,103,98,116,99,109,108,97,100,96,106,100,115,103,107,99,112,104,105,105,104,102,100,122,92,101,102,84,101,116,100,111,96,90,108,109,103,105,105,115,98,112,98,113,97, +598.4762,104,94,98,105,104,89,112,103,108,92,99,108,98,121,87,107,99,112,105,97,104,118,95,104,104,103,112,109,109,95,95,90,90,91,98,107,97,109,115,101,87,97,87,95,97,108,96,108,94,112,112,99,102,94,97,90,103,98,109,94,85,107,94,96,86,105,110,106,98,105,109,117,91,92,96,103,100,93,101,98,108,91,103,119,106,105,97,103,98,98,105,117,94,100,99,103,98,89,100,103,104,100,102,107,66,100,96,116,96,119,110,94,101,97,110,100,113,108,106,105,106,108,98,100,112,115,103,102,111,108,102,100,89,110,104,102,104,111,109,103,108,115,102,103,103,102,107,82,98,97,115,109,100,101,110,110,110,108,107,99,107,112,105,94,110,98,106,90,101,104,115,110,111,102,102,103,106,110,107,95,105,108,104,108,107,105,97,83,109,105,116,98,106,100,95,113,110,111,102,99,90,89,107,106,117,107,105,110,111,115,88,118,101,112,120,96,102,104,97,107,107,117,109,100,126,112,110,103,110,99,115,103,103,100,101,106,103,120,106,115,103,103,96,96,96,107,97,96,103,118,117,105,108,116,110,104,98,113,102,110,108,103,102,101,102,114,117,107,114,103,113,106,106,108,117,97,118,99,116,106,93,98,103,101,103,100,95,99,104,105,103,116,127,108,110,106,109,113,98,107,103,105,101,108,102,100,99,103,115,115,89,129,94,107,110,104,110,106,114,91,105,97,110,103,103,94,101,106,103,100,109,110,117,101,106,98,100,91,94,102,117,103,95,101,103,107,112,114,100,98,112,100,114,113,109,105,86,116,111,101,97,105,116,106,107,101,99,105,97,110,106,93,103,111,104,100,114,91,100,100,102,102,99,98,101,96,91,99,105,109,109,94,105,115,99,117,98,96,86,116,101,103,92,101,102,104,105,106,109,98,102,97,104,110,113,93,98,90,102,100,101,103,113,95,104,100,99,99,95,110,102,107,98,108,100,96,100,78,112,99,104,121,106,87,99,95,107,106,110,107,100,95,108,116,107,94,103,106,118,101,104,105,91,88,112,109,101,109,94,104,110,103,103,104,105,104,104,109,107,102,109,104,109,109,110,109,105,106,84,97,109,110,118,99,104,93,91,92,90,102,107,99,105,110,106,113,106,105,111,108,106,105,97,107,102,104,102,102,113,102,109,94,110,101,101,106,102,124,115,109,110,115,103,98,95,95,103,105,103,106,113,108,98,116,112,97,99,108,107,102,105,113,107,101,110,100,106,95,94,108,106,116,95,101,96,101,116,105,108,100,98,95,99,102,106,114,105,105,103,92,104,104,111,106,103,105,120,99,104,92,107,122,90,99,111,94,111,112,105,95,102,104,117,114,109,101,92,101,103,102,100,86,106,97,112,98,101,85,90,115,115,116,98,96,101,108,121,113,103,94,101,100,110,103,113,107,92,93,116,100,103,88,122,100,113,89,114,84,101,106,96,119,94,100,105,105,104,108,107,116,109,99,96,110,88,95,112,106,115,103,99,110,100,100,103,114,104,105,112,105,106,104,109,105,113,102,95,100,110,102,101,95,110,106,102,100,102,105,110,100,105,98,110,104,105,105,109,95,105,105,107,107,108,89,96,101,96,103,99,95,113,92,119,111,97,94,100,105,108,126,96,107,104,96,107,105,106,101,101,94,105,93,99,103,97,107,116,122,80,100,118,103,95,107,96,106,118,108,100,95,103,112,98,101,92,109,87,133,110,104,99,127,107,108,102,110,105,101,100,113,107,101,110,103,110,103,112,103,111,108,106,96,99,106,106,110,109,94,121,105,108,109,107,100,112,106,103,112,113,116,124,98,104,96,104,101,96,117,94,100,103,120,119,111,108,104,106,101,103,115,108,109,105,98,117,108,128,95,104,111,106,111,113,105,118,94,102,92,102,95,103,115,104,114,102,105,103,105,114,107,103,98,104,111,108,112,101,107,96,100,95,107,91,109,106,112,105,99,97,110,112,107,89,112,116,94,108,102,101,120,96,108,109,103,120,91,108,110,105,107,94,109,99,106,109,104,93,104,101,112,98,114,108,99,110,88,98,98,90,107,100,107,124,106,103,110,111,95,102,108,118,121,96,105,100,102,97,103,104,106,101,103,102,103,105,88,110,108,106,108,111,101,107,111,113,109,114,96,93,113,113,107,106,104,110,117,90,100,114,82,95,109,118,107,100,105,107,96,112,103,115,89,107,99,113,90,88,94,110,92,113,106,95,72,104,92,103,97,100,117,99,100,99,100,104,112,112,101,103,95,109,107,109,104,108,111,93,120,103,98,114,102,114,93,106,94,117,94,112,119,119,105,107,100,108,102,121,113,123,117,119,123,144,127,149,148,160,118,119,115,99,148,122,129,117,109,116,102,101,109,98,111,116,96,105,98,118,116,118,115,107,116,94,121,118,107,97,102,92,100,110,110,102,120,111,105,101,101,102,119,119,107,104,99,100,87,106,104,104,99,96,92,102,103,91,109,105,98,118,99,108,105,106,106,106,95,96,102,94,106,102,108,99,104,94,106,103,110,104,110,108,108,104,106,112,109,115,100,103,100,113,102,90,104,107,101,109,102,111,105,101,106,107,100,98,88,135,112,98,99,123,100,104,110,105,100,104,98,104,83,110,111,108,105,105,91,113,95,109,109,103,76,92,105,103,127,107,112,94,97,103,100,97,121,105,117,109,96,102,97,119,105,108,105,109,111,101,105,100,106,109,94,109,115,106,114,103,107,105,103,113,113,113,98,106,114,101,111,110,94,100,115,98,105,95,106,109,99,109,108,109,98,110,95,111,98,106,103,108,116,131,106,106,108,100,64,116,105,97,103,105,99,117,112,104,101,106,108,102,120,108,107,108,113,110,108,108,133,112,96,117,95,104,111,120,106,109,97,108,103,106,94,101,113,105,108,113,105,113,112,102,107,95,87,99,108,111,106,106,102,108,99,104,97,114,95,106,109,110,108,108,104,98,94,113,102,122,102,104,97,103,97,107,106,109,102,90,104,109,102,109,105,103,107,104,96,110,106,99,107,88,131,115,106,105,110,106,112,94,109,107,107,105,105,105,112,113,96,106,103,100,111,103,108,102,97,105,101,106,101,94,107,124,99,107,103,102,108,105,106,106,111,99,111,103,107,104,103,98,112,110,95,107,86,104,82,105,109,106,98,87,104,108,100,94,104,103,100,95,117,104,112,109,98,107,99,105,96,110,122,102,106,104,121,111,113,109,107,108,100,89,100,102,102,110,94,102,110,100,106,102,96,120,113,100,94,95,112,109,103,111,102,86,128,120,100,104,115,117,97,74,120,97,111,99,79,73,107,104,110,101,109,136,91,107,104,95,99,79,101,112,100,94,96,113,112,89,98,91,95,103,106,100,106,98,104,110,114,101,102,90,95,94,103,115,99,102,96,88,107,108,104,105,97,99,106,104,105,97,106,99,111,109,107,119,109,97,112,99,106,122,105,113,116,111,106,102,106,104,107,102,104,105,110,98,105,119,101,80,100,98,106,93,112,103,104,108,96,103,109,104,102,104,108,100,102,109,99,99,92,98,98,132,116,115,96,105,105,98,109,98,106,105,95,120,108,109,107,104,109,110,113,113,106,106,94,96,98,80,119,106,100,100,115,97,109,109,106,101,123,98,116,98,108,98,101,100,102,99,106,104,104,98,102,99,99,101,107,100,105,106,109,108,106,117,86,108,96,105,103,102,107,96,97,103,103,98,105,108,138,97,104,102,114,104,106,106,124,101,107,100,102,101,108,100,106,105,124,110,98,107,113,111,111,107,113,101,102,91,91,101,105,113,98,97,95,120,104,115,109,110,110,89,101,107,104,103,108,100,103,108,105,104,112,105,102,106,111,102,98,105,110,109,103,100,98,95,93,95,98,112,115,103,98,109,113,117,113,118,108,102,108,89,96,108,104,103,103,105,112,123,82,106,96,103,85,110,66,107,102,110,117,102,120,111,106,97,110,108,111,129,99,83,96,110,109,107,97,110,94,115,97,110,109,99,118,117,100,106,113,110,104,101,91,97,103,98,94,98,94,110,117,105,106,103,108,112,97,100,107,101,91,99,98,96,111,108,97,107,111,97,103,91,111,108,110,100,101,93,83,93,105,105,96,105,100,98,105,100,106,102,105,107,91,96,108,110,112,116,109,98,103,96,91,98,98,111,99,111,111,104,112,105,107,106,102,102,112,99,91,94,97,103,84,127,101,106,109,121,99,108,107,100,104,102,114,96,100,100,102,96,99,102,88,109,98,99,100,92,103,82,105,105,104,68,110,110,102,105,96,101,91,98,105,90,102,110,100,98,107,84,105,87,120,105,104,84,115,105,103,99,112,103,109,100,97,111,103,111,105,97,96,115,118,102,79,109,94,105,99,107,108,105,108,103,99,95,104,99,106,97,107,107,95,115,108,110,100,112,104,95,113,108,106,111,106,100,99,97,99,98,99,95,109,117,100,99,89,103,91,90,103,102,102,100,90,107,104,96,115,97,92,98,98,102,108,100,109,99,95,134,108,109,109,123,120,96,99,109,101,101,98,104,109,106,102,87,98,108,103,110,104,96,100,95,116,98,113,99,97,106,99,114,99,101,98,113,102,104,97,101,101,113,102,102,115,98,100,105,104,100,103,101,107,71,97,111,109,99,91,113,117,101,121,103,89,102,110,100,85,88,103,94,101,104,94,90,95,74,103,104,103,102,98,103,107,93,107,99,87,104,105,102,115,94,102,97,117,104,105,102,114,105,99,98,100,101,98,96,105,109,103,100,100,100,96,93,114,92,99,98,102,91,99,105,101,92,102,103,83,101,115,97,110,121,129,100,116,95,101,90,102,98,106,103,104,105,96,105,92, +598.61725,95,94,105,99,99,106,100,87,96,96,96,104,105,98,106,104,95,95,117,101,112,102,103,113,109,91,116,105,129,129,99,102,118,102,110,91,78,87,99,109,104,99,101,98,99,104,107,98,114,99,106,100,95,96,113,90,98,107,99,99,113,112,103,106,102,110,91,105,108,98,102,101,94,100,113,97,105,98,123,121,97,104,93,108,107,100,104,89,105,90,108,99,110,97,99,109,105,101,104,112,91,110,102,104,99,104,102,113,98,92,94,100,97,105,108,99,91,112,94,98,118,109,101,106,99,105,128,106,103,103,94,103,105,113,89,99,105,106,97,87,98,113,100,96,95,92,103,119,103,98,99,96,108,87,99,107,77,97,108,110,74,100,107,106,111,84,95,99,106,94,104,109,97,108,93,111,112,94,105,114,103,105,101,111,108,122,107,93,111,112,106,109,100,92,95,123,83,99,108,103,101,96,83,112,108,103,86,109,112,107,97,94,114,77,106,103,102,97,102,109,98,106,102,102,109,103,107,106,104,105,113,100,100,106,92,95,106,112,100,106,83,98,122,105,107,97,99,115,107,105,101,107,97,99,116,111,106,90,87,93,100,78,102,103,109,107,99,98,88,94,108,104,122,108,110,115,100,109,130,95,101,98,99,108,99,96,77,100,90,104,108,103,114,107,98,111,105,112,100,105,99,104,106,114,72,106,122,101,100,108,96,100,96,105,86,97,105,104,99,91,100,101,109,106,103,86,104,105,117,107,112,103,109,97,94,108,98,104,101,104,100,104,95,91,100,108,94,106,116,112,108,106,102,120,114,103,100,117,116,108,109,95,99,101,101,93,103,109,113,113,106,97,109,105,122,105,103,103,106,99,99,108,94,104,112,100,89,102,110,102,116,101,98,111,106,114,104,94,88,106,99,104,97,101,87,94,102,105,102,113,106,104,91,99,110,96,108,104,109,100,93,126,97,103,109,95,92,104,94,112,101,101,95,101,95,99,86,111,99,107,108,99,109,104,104,101,101,108,104,116,97,104,102,103,103,127,101,107,114,126,86,94,106,95,95,101,100,107,90,99,110,124,96,108,107,99,89,107,107,114,104,116,118,101,125,101,101,96,108,108,92,114,110,98,104,96,96,99,100,104,103,99,95,104,106,105,100,101,98,99,104,104,110,107,112,109,107,108,117,103,105,105,115,96,115,105,113,108,111,100,95,100,104,101,101,104,103,104,105,114,107,95,117,99,110,90,95,107,110,80,105,115,100,97,101,108,104,105,98,105,104,97,117,95,112,114,101,105,92,104,101,101,111,108,106,104,103,106,95,96,97,110,97,95,104,101,101,108,100,106,110,108,115,94,118,105,100,105,108,102,108,99,104,104,101,112,103,94,104,100,105,98,116,104,114,112,109,92,96,100,109,105,104,112,100,104,105,110,102,110,108,95,116,105,95,104,89,109,93,97,102,102,107,100,106,87,102,111,99,109,107,100,102,97,104,103,112,101,101,109,94,101,97,107,107,106,96,96,101,108,108,106,99,109,108,113,94,102,103,99,109,98,110,79,99,101,95,102,115,111,95,87,94,99,96,103,111,108,110,95,101,110,102,96,95,114,104,113,102,95,108,115,113,98,96,100,100,106,108,94,109,99,96,107,99,117,107,109,107,104,108,102,95,103,106,100,104,95,118,102,96,105,106,111,116,92,107,112,93,105,101,101,113,105,110,104,111,94,110,97,111,108,86,95,93,105,113,102,101,88,108,106,106,108,96,104,113,88,99,100,115,104,113,101,95,100,108,109,100,91,99,116,98,133,101,125,111,111,107,111,96,113,101,101,113,87,94,108,109,99,99,105,108,100,100,102,105,75,105,91,117,117,95,108,105,97,109,104,110,107,102,110,109,104,100,99,112,108,99,100,95,105,109,103,107,96,106,102,101,97,109,100,100,103,91,88,104,106,107,104,107,90,107,96,99,124,98,119,110,108,92,115,121,100,115,105,105,103,109,99,113,99,99,117,105,100,99,98,112,102,94,115,86,114,126,106,104,109,99,116,99,107,110,92,93,113,96,111,102,109,106,104,115,106,106,106,109,115,103,116,104,119,109,99,123,87,104,113,105,102,100,112,96,110,90,97,93,110,126,108,109,103,109,105,97,91,106,113,100,113,110,106,100,106,107,108,112,109,98,99,100,123,94,105,127,109,101,93,100,98,102,105,76,112,103,94,100,109,98,106,109,108,99,109,106,116,102,101,98,102,96,92,113,116,99,107,102,97,90,104,102,103,106,105,102,101,102,99,99,104,104,104,105,113,123,102,93,108,104,102,98,112,108,95,136,93,94,103,121,102,107,112,111,111,97,89,111,115,134,132,123,147,132,130,146,118,156,119,135,142,135,132,123,131,110,108,113,107,106,103,101,113,115,100,101,108,104,102,97,102,97,123,96,101,92,92,97,113,92,101,100,98,94,102,106,115,87,108,110,113,98,126,106,89,92,83,112,98,112,112,99,96,111,91,98,106,116,115,100,106,110,103,106,125,112,104,109,106,101,102,96,102,111,95,106,101,99,117,103,92,102,94,110,117,91,99,101,98,98,101,101,108,106,104,103,109,120,112,107,96,107,103,102,105,108,108,95,106,99,92,107,95,104,104,106,103,115,98,107,103,93,102,115,100,107,106,97,93,87,101,98,117,103,102,91,106,106,101,92,101,106,105,102,107,97,112,102,91,104,104,115,102,107,106,106,105,103,111,102,102,109,104,105,97,109,105,104,113,100,111,100,117,95,112,102,106,88,102,106,98,100,110,100,111,97,107,109,103,109,103,105,105,107,101,106,111,99,98,115,110,101,110,102,104,119,85,104,115,79,102,102,104,123,114,110,98,105,105,91,112,107,115,87,114,103,115,97,112,97,115,102,102,95,110,108,112,101,92,111,98,91,111,100,97,95,99,103,89,108,94,112,102,104,100,84,103,109,96,103,110,105,102,108,106,112,104,98,106,83,99,110,100,99,100,110,104,109,107,96,98,106,95,102,113,113,98,111,104,103,103,98,113,109,110,97,108,107,116,98,111,105,102,102,106,92,99,107,106,91,114,102,116,103,102,94,110,116,92,99,98,102,104,110,92,107,87,102,108,110,102,96,104,103,105,113,96,98,110,114,99,106,96,106,109,95,106,92,110,102,80,110,101,102,101,84,100,102,98,107,102,113,106,99,103,105,91,102,101,94,106,107,96,109,100,102,110,108,91,105,112,102,103,101,111,98,97,112,111,112,106,87,109,98,113,93,103,101,93,117,102,106,98,111,111,102,103,113,100,105,105,115,111,102,111,111,116,106,96,111,102,94,100,97,94,116,121,104,99,101,108,95,97,108,90,99,96,99,103,93,103,113,112,102,108,101,100,118,118,99,102,106,106,101,112,94,111,108,96,107,103,96,88,111,97,92,103,103,99,92,109,97,110,101,106,104,100,112,109,109,99,105,106,102,109,97,92,107,112,107,96,110,109,107,117,104,110,110,109,107,108,99,106,100,112,98,107,109,100,98,108,67,106,109,104,109,105,100,106,109,108,108,94,117,111,106,106,103,105,115,94,105,114,86,111,89,103,102,119,101,98,96,99,111,105,107,104,105,93,107,106,93,105,110,107,99,112,101,98,101,104,112,96,103,96,113,101,111,97,100,103,86,120,101,102,106,98,119,102,96,101,101,97,115,107,95,95,100,103,106,97,97,90,99,93,96,115,104,99,106,101,103,107,93,108,95,100,100,100,105,87,96,99,115,103,96,104,96,105,112,104,88,108,104,114,111,104,101,99,105,100,116,101,108,107,99,106,101,103,102,111,98,126,99,71,115,98,108,105,103,104,99,109,100,109,101,102,99,102,92,103,109,99,95,117,95,101,125,109,97,99,113,110,102,83,104,105,120,99,102,113,99,72,105,98,105,107,98,109,102,108,91,108,117,103,104,113,106,90,97,109,101,112,95,113,110,112,101,109,103,98,104,105,99,114,108,91,98,112,123,107,110,93,106,107,109,110,102,94,104,103,109,97,104,95,106,110,119,108,88,98,113,101,108,102,101,101,106,104,116,112,117,103,116,110,91,116,100,103,106,100,103,99,102,102,105,102,107,99,98,108,101,96,91,106,108,114,109,92,98,96,113,103,106,102,107,117,98,77,95,103,114,106,112,110,110,104,100,118,104,111,113,117,109,93,105,110,97,105,100,112,101,80,110,99,104,105,97,105,92,103,101,108,109,99,97,100,105,109,103,104,105,98,112,105,115,108,110,92,97,107,79,107,101,104,104,111,96,98,102,104,101,98,110,98,121,95,104,106,117,100,101,108,105,83,98,93,118,101,109,113,95,101,105,120,108,105,100,111,95,109,106,117,108,113,98,95,93,123,98,93,106,98,112,105,99,101,93,103,104,109,104,84,101,110,99,97,112,106,72,90,111,98,101,96,100,116,106,94,112,106,104,110,106,117,105,86,96,93,100,108,99,107,93,94,107,111,102,113,115,94,104,118,100,102,110,125,96,107,105,106,115,104,105,99,96,102,95,101,102,96,115,107,107,106,102,127,86,110,84,117,111,110,108,122,107,92,100,114,103,110,101,103,97,108,101,104,108,99,90,101,106,110,101,105,104,95,116,114,99,110,79,97,94,102,86,101,93,111,113,97,99,112,95,113,100,105,97,91,96,103,109,112,109,115,92,96,99,94,100,107,111,109,97,91,109,110,113,97,104,109,99,106,106,104,100,103,114,90,105,109,88,100,117,98,109,117,104,100,98,113,81,96,101,79,108,110,101,98,104,104,109,94,89,99,109,98,98,102,100,107,104,107,115,111,100,113,117,95,100,105,103,117,105,97,95,101,100,93,89,91,113,128,93,101,112,98,106,106,109,95, +598.75824,117,90,101,95,99,105,94,67,116,102,88,83,103,125,101,103,107,105,109,105,100,100,111,105,114,74,108,108,91,103,101,121,103,100,102,103,91,102,109,114,109,131,119,106,101,102,94,94,92,111,91,92,98,106,108,99,77,92,108,97,103,102,104,117,101,108,93,112,102,104,105,95,108,108,96,107,103,116,108,104,115,99,90,97,126,88,99,105,103,116,98,98,100,112,98,102,103,98,96,100,102,88,96,106,92,86,104,106,102,97,103,105,84,113,101,112,107,99,95,96,111,105,98,125,91,108,113,95,114,106,114,100,114,94,108,79,96,116,106,95,99,96,98,98,83,100,113,104,107,98,102,105,106,85,109,101,96,115,106,101,87,100,100,99,130,103,104,99,96,101,97,99,96,93,120,99,100,94,106,110,109,112,98,109,101,99,92,103,99,107,102,93,107,108,101,95,99,105,101,116,104,102,104,111,102,96,99,98,109,91,109,109,112,128,109,99,98,105,94,99,101,99,100,82,105,106,114,101,101,103,98,105,109,102,96,111,94,91,101,116,86,101,105,109,109,96,103,105,103,117,100,92,96,101,103,104,118,108,93,90,99,99,112,109,112,98,110,102,112,99,103,106,106,104,106,100,102,103,108,119,101,96,92,105,102,100,91,112,104,103,98,114,100,108,122,105,87,98,102,110,107,86,107,102,74,108,102,110,108,106,93,99,88,107,112,94,101,105,97,114,102,97,96,114,97,94,104,96,103,106,110,91,107,109,98,100,103,108,97,110,110,109,101,83,101,96,96,100,125,107,106,109,108,98,102,106,110,114,102,94,101,120,95,97,96,90,102,108,97,107,107,114,113,104,73,97,107,104,90,104,96,110,100,117,99,109,100,106,108,94,108,87,99,118,92,98,108,104,108,96,100,103,101,109,99,99,99,98,111,92,95,103,103,100,102,98,107,96,111,101,98,99,110,108,113,97,97,102,93,101,110,97,105,100,109,114,114,103,101,99,87,108,102,110,88,102,98,95,100,114,105,106,96,97,109,110,111,102,119,104,106,109,98,112,110,104,98,108,111,100,99,110,102,91,97,95,108,118,113,98,106,111,117,91,98,96,99,109,105,104,106,121,111,112,113,111,99,104,116,100,105,109,99,102,98,109,100,103,104,108,119,114,106,115,105,90,109,110,103,95,97,98,105,110,74,108,111,107,104,106,107,96,102,109,105,101,87,107,97,99,102,103,102,104,102,98,108,104,109,110,102,92,115,102,94,110,115,100,104,97,105,103,101,89,101,126,101,101,107,102,103,94,113,96,108,109,104,98,109,104,110,94,96,104,96,104,102,102,96,100,102,106,100,110,91,103,97,109,106,106,105,113,99,98,95,102,115,99,92,112,107,127,115,109,111,109,95,95,109,119,100,109,93,100,97,104,106,111,108,109,103,111,107,116,105,103,100,99,90,114,110,112,103,106,87,94,100,91,99,104,100,99,91,106,98,100,107,104,99,117,101,103,111,113,91,100,109,97,103,108,108,111,111,108,106,113,104,95,113,105,100,128,106,101,106,100,101,98,95,107,100,104,101,107,107,108,94,105,106,103,96,106,98,100,109,95,109,109,101,108,69,95,93,120,102,87,105,101,107,97,96,99,110,111,97,106,110,106,95,103,116,102,106,101,101,111,109,97,105,102,106,101,100,105,109,107,96,101,98,102,105,102,102,99,111,103,105,103,100,118,99,111,88,99,100,111,95,106,102,101,112,109,107,98,104,111,102,98,99,94,106,106,110,114,107,107,102,99,95,106,113,109,102,87,99,109,102,105,102,104,98,102,99,101,98,109,106,96,107,105,112,97,105,97,113,99,110,114,100,94,112,109,100,113,97,96,118,104,103,105,102,91,103,95,102,115,108,112,95,72,100,121,108,104,114,113,118,94,116,100,106,104,104,105,99,103,91,102,101,112,103,94,106,87,104,112,113,114,110,106,105,99,98,107,99,104,87,104,100,99,104,102,105,114,107,101,89,105,118,112,102,103,100,97,109,109,104,108,81,96,104,110,126,101,99,106,114,95,100,99,92,107,117,103,98,95,117,102,107,102,102,121,99,95,114,94,104,78,103,102,90,107,109,96,97,124,96,117,109,87,95,108,101,98,98,103,101,102,107,99,104,107,108,81,97,100,109,111,97,110,98,114,121,109,122,98,99,99,105,102,125,102,107,86,104,99,104,101,111,90,94,104,104,96,102,99,93,97,87,97,120,93,104,86,105,105,101,104,109,107,108,96,93,103,103,104,99,100,108,103,106,107,94,104,105,107,78,99,104,99,126,121,98,103,134,102,112,101,108,104,97,102,106,116,105,98,106,112,114,130,131,127,116,138,165,143,131,119,149,132,129,118,115,126,118,102,106,117,112,104,106,102,104,109,92,96,99,114,98,101,88,98,75,122,104,109,90,106,93,99,96,100,100,104,96,118,92,99,117,95,111,104,103,97,109,107,110,101,108,105,106,113,110,101,114,112,100,114,110,98,109,109,96,103,99,97,103,104,113,108,110,100,108,93,92,107,103,95,115,88,102,121,110,92,104,99,103,74,96,93,99,107,91,107,109,108,107,120,103,104,106,121,101,110,104,102,104,105,123,96,100,102,99,109,103,107,114,92,98,113,99,103,105,122,90,99,108,101,107,95,97,104,98,96,109,115,112,103,117,107,104,106,120,112,95,111,104,106,110,104,120,97,80,106,103,105,108,116,104,100,100,100,107,99,103,98,99,112,103,102,113,108,95,98,111,103,101,110,113,98,95,100,108,112,115,102,112,115,107,117,103,117,108,110,114,104,101,97,101,101,96,113,109,111,106,93,93,107,105,110,103,107,109,106,111,109,106,122,113,102,106,105,103,95,106,100,87,110,105,101,109,116,107,102,107,115,94,106,120,106,101,109,96,105,96,113,106,101,99,113,108,94,90,106,93,96,108,105,104,102,113,112,107,112,102,115,97,103,120,101,94,99,103,106,113,101,113,105,97,94,100,95,101,98,93,105,107,101,102,126,110,114,97,91,112,108,105,103,108,103,118,100,103,113,96,100,116,123,97,110,98,117,108,103,109,106,104,96,98,102,102,82,97,121,110,107,113,108,102,103,103,96,109,101,117,99,106,113,98,91,106,106,102,100,103,116,121,117,102,99,98,141,107,100,95,109,106,90,106,117,102,111,94,110,108,113,94,95,104,116,107,118,104,93,98,110,102,113,99,117,113,101,109,112,117,100,106,96,112,103,110,104,102,76,103,102,107,100,101,101,108,96,119,97,97,106,99,106,110,109,101,100,106,97,104,90,109,83,100,98,95,101,90,95,116,108,97,98,104,92,101,103,98,98,102,70,103,116,108,107,109,96,109,105,120,107,108,105,107,103,100,101,107,98,104,108,89,96,108,107,97,109,108,98,95,99,121,116,99,106,109,103,101,109,95,101,104,116,109,94,112,112,126,100,95,109,89,107,102,104,114,75,112,110,103,120,102,106,95,93,97,107,99,108,96,94,115,116,102,110,107,110,94,120,100,105,97,105,91,104,113,92,109,90,115,104,108,95,100,100,100,97,101,106,99,101,114,104,107,105,103,102,108,91,113,92,113,92,110,105,101,107,96,107,113,105,103,103,108,122,114,99,98,99,99,99,104,103,99,106,130,102,100,104,93,108,94,77,116,101,102,111,103,103,109,103,113,107,103,107,107,106,108,106,108,105,110,95,103,103,98,92,98,109,112,133,94,108,110,105,106,96,87,88,102,112,112,106,102,104,97,114,103,100,102,103,118,117,106,98,112,92,109,119,106,115,103,108,93,114,92,98,101,91,108,97,112,98,121,98,110,120,100,113,103,109,99,108,112,110,110,100,110,109,108,88,104,101,117,93,101,107,105,110,104,98,98,83,102,95,97,97,104,96,104,106,115,101,122,108,106,101,98,112,113,109,113,106,105,101,102,106,75,99,110,106,110,97,108,113,114,103,94,101,113,102,91,108,114,111,109,98,107,99,90,101,109,104,103,97,103,110,91,92,105,101,104,98,120,99,100,106,102,91,94,106,100,96,101,127,105,102,101,95,101,116,100,112,104,101,101,100,98,110,112,108,105,111,92,96,101,94,101,120,107,106,111,106,106,99,104,105,107,97,104,103,97,105,101,103,111,95,105,100,90,112,96,104,97,93,112,105,112,112,101,104,118,98,104,94,99,99,104,105,91,101,113,105,114,106,97,99,94,111,110,97,100,98,107,111,108,104,112,107,108,108,106,100,102,103,84,105,107,109,110,95,97,98,103,122,106,104,106,101,104,114,104,105,105,112,117,85,111,97,103,105,106,101,79,105,113,109,112,107,105,103,110,120,103,104,101,103,113,111,105,108,107,107,114,112,100,100,88,103,128,101,109,109,95,96,111,101,107,105,109,90,102,108,102,104,109,109,104,115,120,112,103,103,108,106,101,94,100,96,108,115,102,92,94,99,96,108,106,106,91,88,108,95,96,106,101,113,112,100,104,106,116,98,106,86,95,98,103,104,122,113,111,100,103,103,95,101,109,112,105,107,98,93,101,102,100,103,92,111,103,91,89,100,122,109,95,98,110,103,104,104,103,102,110,94,106,104,99,98,107,99,106,96,112,95,103,103,105,110,102,96,107,95,115,98,93,75,110,97,112,107,115,111,105,87,104,93,112,106,114,89,106,94,105,95,96,107,100,108,104,104,102,98,108,91,105,102,88,97,101,99,98,98,94,93,94,86,109,108,104,106,97,94,104,114,108,127,116,115,99,108,102,95,104,95,111,104,95,99,99,95,107,104,90,99,115,136,92,114,104,104,100,100,100,105,108,91,108,100,96,112,105,104,98,101,122,110,114,93,111,101,104,96,101,105, +598.89929,110,107,102,113,96,100,106,104,107,86,89,116,101,114,121,103,103,111,98,92,109,109,107,94,107,103,111,111,97,115,100,113,113,113,111,96,106,108,70,104,98,105,84,114,96,111,94,99,100,102,102,126,115,88,102,108,104,103,113,99,100,112,118,96,105,88,92,113,89,119,99,106,105,100,98,105,93,117,89,117,110,108,102,99,102,108,110,113,101,97,109,102,103,103,92,110,101,107,102,101,113,103,104,109,106,110,105,109,97,99,98,111,102,108,111,104,99,114,102,96,115,102,102,98,107,112,107,106,99,112,124,121,100,105,95,105,100,98,109,106,105,111,101,95,97,78,99,93,99,96,105,109,87,101,107,106,116,102,110,112,101,116,116,106,113,101,100,111,94,95,70,93,110,114,108,105,110,107,109,113,120,101,103,116,104,117,105,91,102,109,105,120,120,109,101,96,104,98,101,110,109,104,118,109,101,106,110,77,106,95,94,98,104,103,102,120,103,106,111,111,103,105,106,106,104,103,114,105,122,105,112,103,112,99,106,115,105,129,114,105,101,105,109,104,100,93,109,119,115,106,99,114,97,108,102,105,103,104,120,108,80,104,106,109,106,107,110,98,104,106,105,107,109,78,101,99,104,117,104,116,107,113,102,97,118,102,107,94,109,93,109,110,106,95,104,105,96,108,108,106,106,103,116,113,107,123,114,103,114,127,100,110,117,105,105,98,103,95,125,102,100,105,103,109,104,100,124,96,106,107,115,109,116,100,106,110,115,106,103,101,95,109,101,112,96,101,93,108,110,106,103,106,92,116,103,101,108,104,109,111,117,111,104,91,110,105,103,114,104,109,99,99,112,108,102,116,109,109,108,120,114,103,101,105,101,101,101,113,102,90,100,100,103,112,102,104,100,93,100,106,99,117,101,109,98,101,109,120,95,103,92,99,105,113,107,98,96,107,111,95,104,107,108,75,106,108,100,95,94,93,108,107,103,112,108,106,108,100,98,99,113,109,113,112,101,122,99,99,105,113,95,112,91,112,110,105,108,107,107,106,114,107,76,101,118,113,112,106,106,101,109,108,107,108,97,100,103,104,111,104,105,108,108,98,111,103,105,99,116,101,125,104,109,104,109,100,106,100,104,87,115,103,100,99,97,108,110,101,104,105,114,109,106,115,104,104,100,107,105,102,107,99,104,119,113,100,122,110,108,104,105,108,111,105,104,93,103,102,107,115,100,107,108,99,120,114,105,108,116,102,113,102,121,110,107,106,114,110,108,110,102,99,117,109,97,103,113,109,100,103,93,96,116,114,111,103,106,98,110,116,110,101,103,107,100,108,111,114,110,115,110,114,100,107,121,80,98,110,130,106,101,109,113,107,101,104,123,101,108,106,111,99,109,94,97,113,113,99,102,122,104,100,102,107,104,113,116,107,106,101,115,121,104,110,101,113,109,106,108,104,102,118,115,102,88,109,108,106,99,109,111,109,114,103,106,110,121,106,98,116,115,114,101,112,111,111,106,98,109,105,126,103,130,99,97,111,116,101,108,106,101,102,106,98,110,105,104,98,108,107,106,120,108,114,105,104,122,109,113,102,97,98,102,106,101,101,95,105,111,105,104,97,102,108,102,116,104,112,111,120,113,105,99,105,99,90,96,96,104,114,107,108,113,98,100,108,94,95,106,110,100,123,108,106,101,94,108,100,108,104,112,116,96,102,108,99,105,113,105,102,98,101,101,91,97,106,109,109,103,99,113,106,113,110,105,107,86,121,115,108,110,103,106,108,107,114,105,99,96,110,110,108,101,118,118,104,102,99,106,113,111,105,94,104,107,116,103,108,115,113,113,91,99,98,110,112,109,92,114,115,104,116,107,105,95,102,110,100,104,104,107,117,118,108,103,105,116,99,99,103,94,111,111,102,100,100,111,106,121,95,105,96,109,111,103,106,104,105,96,108,95,103,109,113,98,99,100,107,104,111,108,87,109,112,103,109,105,102,113,98,116,107,107,106,114,106,103,108,101,93,96,116,103,110,103,106,100,122,108,119,102,109,110,109,105,100,102,103,107,122,105,113,97,101,100,89,88,103,127,106,97,111,112,113,88,97,100,92,101,101,104,114,108,99,103,109,95,102,103,87,109,107,102,108,103,102,97,111,115,99,110,105,109,94,102,103,112,115,95,95,115,98,103,102,108,98,92,102,98,111,109,101,104,91,108,105,93,129,111,98,109,101,104,109,114,103,89,100,104,103,102,108,110,96,111,102,107,117,99,101,109,133,108,104,111,97,103,109,96,114,99,100,110,115,98,105,103,119,96,117,98,99,107,93,108,117,116,110,112,114,102,119,120,108,119,104,120,110,128,149,130,128,123,180,152,147,141,149,122,132,132,162,129,130,110,114,104,128,102,115,108,118,107,121,100,97,96,103,101,98,101,120,118,106,105,98,98,107,107,105,103,114,106,78,125,107,98,105,110,78,95,99,98,110,100,119,111,112,99,112,114,112,110,102,96,92,100,107,99,102,93,103,107,103,106,95,104,92,106,107,103,105,109,103,110,106,89,104,114,104,109,107,99,120,94,103,104,98,107,97,105,108,73,110,99,103,121,106,117,85,108,94,81,103,107,100,106,112,103,108,108,90,104,106,110,105,83,98,105,102,107,88,113,107,94,90,108,100,110,81,114,102,90,109,125,98,114,98,102,116,110,101,110,98,100,112,101,96,106,121,106,81,103,111,79,104,93,103,107,100,101,103,98,113,109,103,103,110,95,94,100,107,121,92,116,96,85,102,119,102,90,102,105,105,104,110,99,106,109,111,107,96,108,102,96,104,106,104,102,112,115,105,110,102,109,112,106,95,104,109,111,100,110,98,98,90,91,106,104,106,106,110,99,100,113,87,94,108,109,102,111,113,110,116,100,125,102,104,104,111,102,108,95,107,102,105,96,95,109,100,99,94,98,131,99,112,106,106,95,91,106,110,108,103,108,105,97,111,101,108,104,105,98,101,104,106,106,104,91,100,106,96,96,112,95,106,110,108,98,99,111,111,112,98,87,113,101,101,106,107,94,97,100,96,109,109,103,126,116,96,124,111,107,106,108,102,102,101,102,103,120,102,116,106,94,113,127,113,121,99,104,89,101,110,105,99,94,98,121,95,108,91,104,109,101,112,102,99,100,115,112,98,111,109,109,100,106,100,95,100,102,103,110,113,109,100,75,104,108,91,116,106,99,90,97,98,108,124,104,117,103,105,109,102,93,106,97,106,99,117,96,97,104,103,100,105,107,93,109,103,102,97,98,80,100,80,109,109,95,100,110,106,118,100,106,109,97,104,99,106,117,109,108,108,110,89,99,98,107,110,106,100,101,106,105,108,116,99,98,94,112,99,118,94,104,130,115,120,115,104,96,114,99,98,102,113,107,90,102,107,100,93,107,113,108,107,101,98,97,109,104,99,94,98,102,114,100,100,93,98,113,107,109,102,99,103,84,109,105,99,109,109,97,109,108,102,106,93,101,104,107,94,105,117,98,110,103,106,110,106,95,117,105,98,110,100,103,109,102,114,93,102,98,89,94,105,105,105,97,97,101,94,94,105,91,98,107,116,110,91,82,112,100,110,100,93,108,105,108,99,97,98,105,109,106,92,88,106,105,107,109,104,98,105,98,113,93,112,111,103,117,106,111,112,93,105,121,98,109,99,96,111,113,107,98,108,108,111,118,102,103,98,99,96,109,105,112,93,109,100,122,99,104,101,99,105,116,95,109,104,101,111,102,98,110,94,91,102,101,102,102,109,101,106,104,102,101,103,113,116,117,103,120,106,113,109,92,112,100,96,95,99,122,96,105,100,111,104,103,108,106,94,104,108,109,102,94,103,100,107,107,106,100,99,107,101,114,100,98,120,112,95,112,96,107,98,102,90,106,96,108,103,105,108,105,119,103,96,108,116,110,108,96,100,99,86,106,95,109,102,107,109,106,105,94,113,98,104,100,99,105,111,99,103,111,90,109,99,89,97,119,105,102,105,102,114,111,105,107,96,102,99,107,94,115,98,90,95,112,105,105,104,110,106,100,90,116,90,108,96,97,110,103,111,116,105,101,107,108,114,99,92,127,104,90,104,102,108,99,110,112,103,74,104,103,101,113,109,106,105,103,97,94,95,105,94,105,101,104,96,103,104,95,109,105,108,105,97,101,95,111,104,93,103,89,103,107,99,103,108,101,92,110,98,98,105,97,120,104,114,113,95,105,110,107,95,102,102,121,98,101,105,101,105,104,95,114,101,101,101,107,106,92,102,104,104,106,104,96,105,110,96,105,112,109,107,103,108,93,94,103,95,103,110,101,106,101,67,94,103,103,97,100,98,95,113,112,108,107,103,95,106,106,100,103,101,111,102,102,101,104,87,102,101,100,106,95,78,104,101,107,97,92,95,100,112,105,106,106,110,104,94,110,112,98,102,105,120,117,96,101,112,111,104,107,117,121,103,120,99,87,108,90,92,78,104,99,113,100,85,95,97,100,110,106,114,105,105,106,101,106,76,98,91,101,95,96,82,123,85,94,95,95,99,110,101,102,98,101,106,101,98,101,94,97,103,98,100,101,111,92,103,100,135,112,105,110,88,87,98,104,104,110,108,112,101,104,122,109,115,116,90,108,105,109,94,105,126,111,95,100,76,113,106,78,115,102,102,100,97,106,105,102,94,102,101,96,104,106,94,99,116,91,113,128,105,113,94,110,94,123,92,98,95,90,117,99,114,87,108,117,93,98,105,101,109,93,108,99,102,103,111,106,100,100,100,97,101,103,83,109,112,115,97,108,99,109,95,102,96,75,101,101,106,98,112,90,68,123,99,108,105,94,108,108,105,95,119,87,98,103,103,109,112,98,98,118,105,106,86, +599.04028,114,95,116,112,103,119,110,84,86,115,102,107,96,116,100,93,100,87,112,107,99,95,104,101,93,111,110,105,109,116,97,99,117,99,106,103,96,109,109,106,116,81,96,94,104,102,110,95,107,104,99,107,121,106,105,105,111,102,105,99,107,106,71,92,99,111,101,110,94,106,107,99,98,99,103,99,128,109,106,99,103,91,98,111,114,91,92,104,96,110,99,82,106,109,86,106,97,125,111,110,87,102,109,99,109,90,102,103,101,99,103,115,95,88,103,105,112,107,112,103,108,108,118,103,99,109,99,111,113,122,90,111,98,107,106,109,105,95,97,105,100,117,97,95,92,113,103,102,101,102,106,100,97,87,107,101,101,104,109,96,109,95,105,120,109,100,117,85,109,108,96,107,109,97,107,108,109,101,110,107,105,94,97,100,108,101,94,104,103,97,109,109,107,106,100,96,108,108,107,109,101,98,98,105,105,111,104,109,100,113,104,105,99,106,105,99,107,97,107,108,104,128,109,98,112,95,102,96,92,120,102,95,109,107,101,101,95,101,109,106,91,99,112,104,97,110,100,96,117,81,102,109,113,108,116,111,114,111,104,114,87,119,101,104,103,103,110,106,95,100,108,105,106,107,110,106,106,129,101,95,95,110,105,104,102,113,100,111,106,105,99,126,109,113,114,105,99,102,106,118,96,91,116,98,105,118,110,109,95,110,109,108,86,88,102,97,109,108,103,102,98,83,122,121,96,102,103,105,104,103,121,96,107,104,114,91,111,109,99,103,107,108,104,99,112,110,70,103,111,107,115,101,119,86,115,111,102,110,106,97,115,98,103,87,101,107,111,115,105,109,101,113,109,107,100,101,107,109,110,110,111,105,86,107,116,108,106,118,103,110,119,105,84,133,97,98,121,110,99,121,70,101,100,99,99,101,108,90,105,106,100,96,108,117,111,90,92,94,115,108,110,97,106,110,124,92,105,109,101,107,102,113,101,105,104,102,94,104,109,113,109,119,106,107,102,94,134,96,106,113,107,98,106,108,104,93,99,101,117,109,106,104,102,106,109,102,106,99,104,98,99,102,105,111,108,95,107,102,115,110,103,97,120,88,107,94,101,111,100,114,103,116,104,113,99,104,100,91,95,102,104,95,115,79,95,104,99,109,113,102,108,109,99,103,104,98,100,113,105,104,112,103,100,106,99,97,104,91,103,98,100,111,109,107,101,112,100,99,112,101,102,117,103,114,98,110,118,105,104,105,110,105,109,98,99,110,119,107,117,100,100,113,100,112,104,97,101,104,112,107,105,102,104,105,94,104,85,114,104,102,114,93,98,113,107,109,111,110,106,105,114,110,105,75,109,112,104,96,102,99,87,96,116,105,105,122,85,105,111,98,92,108,116,113,112,99,101,108,116,95,109,81,100,98,96,102,98,141,111,112,104,100,89,117,112,105,111,107,110,110,102,99,108,106,103,91,71,112,112,102,102,112,107,107,110,111,95,119,108,111,103,111,113,104,100,90,108,105,100,106,102,104,116,111,91,99,98,100,100,100,114,103,102,93,110,94,113,110,103,108,107,105,105,115,108,105,114,111,113,103,114,106,114,106,104,96,104,95,112,102,108,100,104,94,102,104,112,105,105,108,102,116,101,105,100,102,102,98,112,107,118,94,117,97,109,113,112,99,113,102,110,124,113,112,104,100,99,103,86,110,112,108,98,103,104,108,88,101,107,105,103,101,102,108,102,99,92,107,97,108,122,101,101,106,98,108,106,101,115,86,106,110,114,98,107,112,111,105,104,114,113,107,95,104,96,108,98,100,102,114,106,103,96,108,117,116,111,127,105,99,103,96,104,97,101,99,109,110,107,99,109,116,98,108,115,113,94,101,112,120,109,100,115,100,115,108,115,108,111,98,106,108,98,81,107,109,109,102,106,98,91,93,95,104,96,104,103,113,101,103,104,113,105,107,91,94,105,123,105,97,121,85,119,108,101,94,111,97,101,100,101,107,96,94,109,108,83,99,106,114,106,115,106,115,103,108,107,110,100,102,99,106,106,103,104,102,98,107,110,91,102,109,116,105,102,108,96,102,101,102,113,103,120,108,114,103,111,98,100,101,110,103,108,110,108,114,102,92,99,112,100,102,113,106,81,95,108,107,108,116,115,109,127,109,109,106,116,107,95,111,103,106,109,111,114,110,102,95,108,89,95,125,108,99,107,121,87,107,112,102,101,98,107,117,105,101,97,101,104,100,109,112,115,110,107,109,97,122,100,113,118,106,100,107,120,114,108,102,97,115,97,115,106,114,104,108,109,112,115,108,110,115,111,92,114,118,113,109,113,107,113,107,117,121,96,110,102,123,106,131,121,151,170,126,146,147,132,136,129,134,128,107,132,121,118,110,145,105,105,106,99,102,106,107,107,106,100,105,106,104,114,106,111,102,113,113,110,99,104,97,104,105,103,103,117,107,109,105,101,104,108,102,105,100,102,101,102,107,106,104,95,109,113,96,106,110,113,100,103,105,108,105,102,101,107,96,101,109,116,99,107,109,106,100,106,105,89,119,106,105,99,109,108,113,103,92,100,104,101,100,99,105,92,117,96,98,100,103,107,94,110,94,119,99,110,103,109,112,94,98,101,78,100,108,108,104,99,104,101,101,107,104,112,99,102,100,106,105,105,108,108,95,101,109,107,97,111,104,94,105,94,107,108,103,108,94,102,94,102,110,100,116,101,113,105,112,103,102,90,105,98,102,109,103,112,109,104,100,100,101,105,106,96,94,105,100,96,110,105,106,104,105,107,103,113,103,118,101,96,98,101,102,107,98,99,114,103,107,97,109,110,105,100,71,103,111,111,109,108,107,100,115,97,121,108,112,99,108,93,110,98,100,112,104,111,98,113,114,112,108,120,96,102,107,108,105,94,87,116,109,107,112,105,98,109,109,103,99,111,106,102,112,94,110,100,94,103,100,99,95,105,99,97,99,103,98,95,100,104,100,98,120,96,104,100,88,110,103,104,101,94,107,101,106,107,96,101,108,106,112,109,99,104,88,108,110,116,101,104,105,95,109,104,117,95,95,99,106,108,125,99,129,106,97,100,109,98,105,106,99,108,103,88,109,96,108,98,103,105,101,101,125,127,101,98,105,99,102,113,99,98,98,103,102,103,92,93,120,105,111,109,104,108,94,108,105,118,102,109,116,107,113,112,103,110,101,98,100,111,100,111,111,102,103,99,107,111,108,103,105,109,101,105,111,101,105,109,113,99,100,113,106,98,112,97,103,109,90,114,107,98,101,98,89,111,107,95,109,103,104,99,102,106,99,129,106,97,102,98,99,108,104,104,99,95,107,112,98,99,120,104,108,109,99,95,95,101,103,96,86,97,91,66,103,99,96,114,119,108,97,103,107,71,106,114,98,99,106,100,97,106,101,98,133,108,93,101,77,100,103,108,107,96,104,107,97,110,103,109,95,110,87,109,101,91,105,113,108,99,109,100,78,103,111,97,96,115,105,99,104,103,112,116,114,98,97,102,103,95,109,105,99,105,100,106,111,100,97,95,111,120,98,102,95,112,107,106,99,109,94,106,99,74,105,105,116,84,111,109,104,100,102,110,99,104,105,104,97,110,105,105,97,110,111,108,92,96,77,102,115,100,99,102,108,101,88,111,105,101,103,99,110,102,113,114,107,102,98,100,115,102,94,101,108,105,108,108,112,101,97,109,91,102,106,110,109,102,100,101,104,75,106,94,105,99,96,108,102,103,108,111,101,102,101,99,115,100,98,109,109,103,112,127,101,107,104,112,105,102,95,106,113,105,102,102,101,104,99,100,92,94,110,107,98,90,97,98,87,101,109,106,101,113,100,103,104,123,106,100,107,104,94,99,104,117,109,107,93,105,96,108,105,107,117,103,102,95,103,94,92,81,111,102,101,106,106,94,104,105,95,98,120,108,103,105,113,113,100,117,104,105,106,106,103,98,106,106,103,107,104,115,104,101,109,106,106,95,106,91,94,113,106,97,107,106,108,102,95,100,111,116,103,104,97,113,111,94,101,107,100,110,110,109,107,110,103,113,105,100,110,105,95,103,111,99,107,98,103,99,99,107,105,90,113,111,106,105,101,102,121,103,83,97,111,100,106,94,109,103,102,102,93,93,89,106,104,95,104,96,99,104,110,104,106,101,107,102,110,108,100,102,111,107,102,103,113,103,103,107,110,108,101,107,96,91,100,111,108,95,96,99,104,120,93,103,100,109,91,112,100,84,99,111,108,100,110,95,87,102,101,97,93,112,88,95,112,112,109,97,120,94,101,95,95,99,111,91,108,107,95,98,103,113,108,93,107,100,104,98,109,104,101,110,105,97,109,107,116,92,109,96,117,102,101,104,129,100,112,115,94,105,98,121,101,112,105,104,112,108,116,115,111,101,104,100,106,98,102,99,98,112,116,106,101,107,99,96,97,100,107,97,82,114,113,98,105,105,116,105,109,78,94,98,107,111,113,102,104,132,95,108,93,99,109,110,102,107,106,109,94,112,103,97,102,100,101,96,102,101,109,101,104,100,106,115,105,98,103,96,103,106,104,120,101,111,95,94,110,100,98,96,91,90,92,99,84,113,113,95,109,111,103,119,102,105,104,99,102,94,104,100,100,96,111,94,105,101,99,90,95,107,116,107,116,103,100,104,112,96,99,83,110,115,98,127,79,106,105,96,107,109,105,129,94,102,99,105,102,107,103,111,105,94,96,97,97,105,101,110,84,109,100,97,103,95,86,100,98,102,91,99,94,95,109,112,103,90,102,95,110,112,94,100,96,107,100,108,118,104,104,93,116,105,99,98,106,94,102,114,96,103,108,103,106,99,94,93,110,97,97,119,83,88,112,101,111,106,101,101,99, +599.18134,87,95,67,111,87,92,103,115,102,105,112,93,66,110,124,105,115,115,107,102,113,110,94,103,90,122,101,98,124,91,111,102,111,106,116,94,103,87,109,108,94,107,98,103,93,114,90,107,102,101,109,99,111,100,100,106,102,88,110,98,104,110,99,107,80,104,99,108,116,111,85,96,118,105,102,109,92,106,113,113,105,103,102,95,109,111,105,105,90,103,108,97,100,102,117,103,109,83,100,93,104,103,107,104,92,104,65,114,97,98,96,104,114,99,123,91,98,96,110,113,95,108,110,114,109,105,98,104,105,108,104,101,87,98,91,92,98,97,99,110,103,102,118,104,101,104,113,91,91,101,95,91,116,119,88,95,105,108,90,109,95,93,99,116,115,106,108,103,103,104,102,110,108,103,108,99,112,98,107,94,102,87,107,106,103,111,109,82,100,109,119,120,99,100,97,108,109,101,121,100,98,99,96,101,111,95,106,99,108,106,110,95,120,103,115,114,99,105,87,101,126,108,114,105,109,98,99,111,99,109,104,111,95,100,101,104,113,117,104,101,106,108,109,97,110,104,106,109,116,95,101,107,94,107,102,106,102,110,96,103,99,104,73,118,101,106,99,117,121,101,102,101,99,111,106,99,101,104,122,101,103,100,102,100,102,98,95,102,97,103,104,104,98,86,101,126,111,98,121,93,103,104,111,112,93,109,113,109,108,120,113,120,112,100,98,110,102,109,103,104,106,119,101,114,97,111,99,95,128,116,104,97,103,104,92,106,109,97,97,101,102,106,103,95,108,110,77,101,109,116,102,73,108,114,130,107,124,115,99,105,107,106,108,79,103,89,106,118,94,105,103,110,97,99,100,107,110,103,107,115,105,103,113,120,104,99,104,92,122,107,122,91,102,107,89,100,96,112,109,103,94,104,113,110,113,109,102,113,101,107,104,107,105,107,104,106,111,107,103,110,95,120,100,99,95,94,98,97,109,99,96,102,118,117,107,104,102,99,103,100,100,98,100,111,68,91,103,97,104,111,102,97,110,99,105,100,95,112,116,115,108,99,115,114,106,112,103,99,102,104,109,105,106,101,105,83,99,125,99,105,103,106,111,100,116,105,98,102,100,97,112,113,104,104,94,102,113,109,102,87,130,91,104,103,103,113,97,95,110,109,111,99,107,110,107,100,94,103,104,100,93,99,104,106,99,96,116,112,91,101,101,99,112,107,108,103,102,108,103,108,144,105,94,80,109,96,108,106,91,114,107,98,108,103,99,99,107,99,104,111,104,114,96,103,95,117,98,95,112,109,86,103,86,110,102,96,105,104,104,110,105,89,107,99,108,94,112,107,107,110,113,126,102,100,102,100,102,110,103,96,103,101,98,101,96,102,105,100,105,107,103,109,110,100,109,104,111,98,104,116,100,92,113,103,100,102,112,104,100,113,110,85,110,99,104,105,110,85,112,111,92,99,114,96,104,99,115,109,99,110,109,108,107,102,95,87,101,111,110,99,108,100,100,115,84,101,106,105,132,99,108,118,113,110,97,100,104,110,110,105,112,113,103,97,107,99,100,113,112,105,102,112,100,107,108,108,110,102,111,107,94,112,102,103,109,98,95,103,109,102,115,112,97,116,107,99,115,111,101,106,106,102,107,104,89,103,102,111,110,110,102,114,93,104,89,98,75,97,115,87,105,103,100,119,114,112,105,113,104,100,113,107,112,103,102,103,114,107,110,106,74,109,88,102,102,109,108,110,105,104,105,108,115,102,105,102,113,113,90,102,97,103,98,106,122,103,100,113,109,105,112,110,110,102,112,101,108,114,111,104,118,99,118,103,103,98,98,110,114,105,113,113,112,113,109,110,108,118,100,102,105,107,97,111,102,107,100,105,108,102,103,97,103,98,113,105,99,107,115,105,102,97,113,111,98,108,101,104,112,104,101,104,104,103,113,103,100,108,104,95,103,108,98,106,103,109,99,96,113,105,97,97,105,98,120,99,113,116,98,100,102,112,138,99,106,110,121,101,110,110,104,122,109,105,109,102,104,94,95,122,102,96,109,99,100,100,108,110,109,108,98,107,109,113,98,101,93,98,102,136,100,110,109,111,112,95,107,102,104,105,97,103,102,99,108,106,100,88,105,107,110,92,95,104,113,105,95,104,106,99,94,107,106,110,113,97,111,106,99,109,91,90,108,94,113,99,110,110,97,108,95,103,117,101,114,102,122,92,100,98,104,107,109,103,98,105,107,112,104,96,108,107,107,111,112,103,82,105,113,104,105,109,103,85,113,116,106,101,100,97,109,98,102,89,99,105,113,105,98,99,108,114,105,105,104,99,116,96,109,97,102,115,99,113,125,100,108,131,103,149,128,143,133,118,135,119,150,135,114,118,108,130,118,130,117,106,111,121,118,111,109,125,121,113,105,104,96,114,95,102,109,115,111,104,107,112,104,107,106,96,87,106,96,111,108,92,105,89,108,105,112,106,114,96,103,107,109,103,102,106,117,112,105,105,105,108,110,104,124,93,111,124,120,105,98,101,114,109,104,107,106,108,104,104,109,102,123,109,108,110,105,105,104,104,105,102,105,94,114,106,101,110,109,113,100,98,108,113,112,106,111,108,132,117,101,115,113,84,108,104,109,98,108,102,105,117,99,109,107,100,105,109,112,80,106,99,108,104,110,105,109,106,102,82,99,114,105,101,113,106,93,96,92,110,97,110,89,88,100,100,122,115,116,98,105,110,113,109,99,91,116,105,103,103,101,111,120,108,99,96,119,104,93,99,110,115,104,104,95,107,114,106,101,107,97,108,110,103,103,113,111,109,110,115,103,106,113,109,98,109,88,100,107,112,104,117,110,107,110,112,100,107,114,100,115,100,103,122,100,109,102,113,107,109,103,91,105,107,113,105,104,116,114,117,117,103,100,110,102,101,113,122,95,109,97,102,103,110,106,123,97,107,123,103,99,108,114,119,105,101,105,111,103,98,101,110,104,104,117,97,111,105,109,104,110,121,117,102,108,101,111,95,97,78,115,117,104,106,107,83,109,109,115,109,117,84,100,105,118,98,102,111,115,93,105,93,108,102,92,102,110,108,108,110,106,100,103,98,106,126,113,109,119,113,106,98,102,103,103,105,115,97,120,103,84,101,102,115,102,104,91,116,108,97,113,104,113,94,95,71,104,112,102,109,102,97,88,101,101,105,108,116,91,117,107,98,101,107,112,108,105,95,110,104,98,114,98,111,122,118,112,110,112,108,103,103,109,111,101,106,111,110,114,120,107,100,101,99,108,107,96,112,115,108,110,105,112,104,102,111,103,102,98,102,106,138,112,101,109,105,114,107,113,74,103,104,112,104,99,99,99,99,102,123,115,99,99,110,108,102,123,108,87,106,116,112,106,109,110,109,96,113,127,116,105,102,104,107,111,106,103,107,115,117,104,104,106,104,99,110,113,96,111,104,96,109,104,94,109,101,105,98,117,113,98,104,79,109,107,76,112,118,98,116,96,99,100,117,108,86,108,102,99,104,102,105,105,113,103,104,103,95,105,101,96,110,109,106,104,99,107,99,97,109,98,110,109,109,100,89,101,97,102,95,117,106,106,87,104,110,105,109,122,104,117,97,117,101,106,101,110,94,103,104,95,102,110,98,105,110,86,103,106,99,103,97,108,108,106,122,116,113,127,115,106,104,103,116,124,95,115,106,98,109,114,104,111,105,111,101,105,112,108,101,121,103,109,104,120,107,112,116,104,98,109,99,94,95,102,113,114,112,104,102,107,92,98,103,112,107,104,121,105,107,98,95,118,103,92,108,111,105,117,99,103,117,107,93,103,97,96,97,102,101,106,104,119,101,101,101,102,115,104,93,106,86,109,112,102,119,105,113,91,102,109,102,102,99,96,100,110,110,112,111,115,105,101,89,112,108,108,107,103,112,112,103,102,100,112,117,107,120,103,109,107,102,109,102,107,108,96,107,102,102,111,106,102,109,99,109,113,109,98,110,123,107,108,102,105,104,114,114,100,111,115,104,107,109,104,113,114,109,109,91,103,110,107,102,111,102,108,111,104,103,116,103,110,85,113,105,108,93,102,103,107,119,105,113,102,109,103,109,110,104,110,104,100,101,112,102,89,98,102,117,121,107,106,100,96,112,91,99,98,88,117,110,98,120,108,97,102,97,113,111,102,102,94,112,101,106,98,104,95,113,117,94,106,111,102,121,105,114,108,112,113,98,106,114,100,100,106,104,109,113,98,105,104,100,88,100,102,101,108,103,99,109,94,101,96,109,106,99,100,109,102,106,92,109,102,106,102,109,111,104,92,101,108,107,97,112,115,118,106,103,119,99,99,101,117,115,120,94,95,102,106,101,124,102,106,92,96,100,112,110,101,101,108,88,108,100,104,94,110,115,77,103,100,104,116,97,113,114,95,102,100,103,109,103,117,116,99,103,113,110,103,109,99,93,107,96,98,111,104,107,104,105,102,105,106,101,111,98,94,111,117,76,108,104,106,92,103,92,103,96,107,103,114,106,96,105,100,115,95,120,107,109,110,99,107,115,110,117,108,94,98,111,102,102,104,106,93,107,99,102,111,113,101,97,103,113,109,103,106,107,96,104,112,108,106,108,99,102,89,106,104,106,95,105,115,99,92,106,111,105,101,102,112,100,113,92,100,83,108,110,104,102,117,123,91,98,103,109,103,105,104,104,103,109,102,100,106,99,108,95,102,105,110,109,110,107,109,122,112,107,105,107,96,124,95,96,96,104,113,99,109,92,120,111,110,108,95,107,110,108,107,111,111,116,104,89,114,94,103,99,103,109,120,85,106,102,101,105,103,104,104,116,105,107,79,94,102,98,107,102,87,115,93,100,99,113,117,99,104,108,110,117,111,113,108,104, +599.32233,100,98,82,110,103,115,110,89,113,100,92,104,104,100,117,101,92,107,87,77,95,96,102,105,102,102,105,105,108,109,113,100,111,106,111,91,106,113,104,116,105,110,97,94,107,104,106,100,93,97,101,99,102,96,105,107,106,106,104,95,108,99,100,97,108,103,92,105,98,107,100,104,115,110,105,86,99,94,99,96,98,107,95,112,100,86,105,102,109,98,99,109,107,100,95,95,100,101,103,96,99,101,106,91,97,98,101,109,98,99,108,114,124,113,84,99,110,106,103,101,105,111,107,89,110,115,115,104,119,104,92,115,117,105,105,103,112,100,108,103,111,110,95,95,89,92,120,114,108,130,102,109,89,98,88,103,109,104,101,95,103,112,108,112,117,96,112,110,109,96,105,102,104,98,100,105,113,107,118,105,101,108,98,108,98,99,98,90,106,95,97,103,101,95,91,109,106,105,103,106,112,107,104,108,101,114,106,105,111,102,97,115,104,113,116,108,103,106,93,113,99,110,104,107,103,128,89,103,112,130,103,118,99,116,106,115,85,102,92,110,101,113,104,114,106,97,94,98,102,105,106,100,104,91,95,106,100,101,104,126,104,98,99,114,107,105,105,103,101,109,101,99,94,112,105,109,103,103,88,108,115,111,99,104,114,107,95,98,125,106,110,100,134,100,111,79,106,107,109,109,105,98,97,105,98,107,113,116,91,110,92,113,105,115,99,101,90,102,109,103,110,106,108,111,99,102,92,108,116,106,93,103,99,103,103,106,90,123,100,95,105,100,104,113,103,95,105,112,98,104,102,110,108,104,117,96,104,103,107,104,102,107,105,99,99,104,109,117,93,113,113,112,100,113,112,91,105,98,103,105,108,96,107,113,107,122,101,122,114,105,117,108,110,118,104,102,93,110,94,106,104,95,110,112,91,95,105,120,98,92,101,116,104,102,123,95,105,80,105,107,108,111,104,105,106,93,106,93,100,101,95,99,103,104,95,99,106,115,101,110,104,110,111,106,99,79,104,101,115,102,103,104,118,102,126,114,105,104,111,109,99,95,104,106,104,116,101,104,102,97,102,104,94,95,111,105,99,104,106,104,122,120,113,113,98,101,105,94,99,76,114,89,99,116,91,103,110,105,93,105,114,113,104,111,108,101,99,104,108,103,112,101,110,138,102,103,117,99,99,105,106,101,110,104,112,105,124,113,103,97,103,111,93,109,102,120,101,118,114,98,113,98,102,111,99,124,96,107,107,126,100,107,103,100,104,93,106,111,97,140,115,106,97,100,104,117,103,99,109,105,97,100,105,102,104,100,101,98,102,104,81,100,103,114,103,112,99,101,99,112,111,102,99,127,117,109,97,115,104,107,108,120,105,87,99,104,94,88,105,106,115,112,112,100,106,110,95,97,90,100,100,99,102,114,96,103,106,111,106,120,101,100,103,103,88,105,110,99,107,100,112,114,106,113,113,99,116,109,109,105,103,107,135,106,101,118,106,103,106,96,96,112,95,104,99,116,118,97,122,94,106,110,98,106,99,101,99,82,112,90,99,104,105,102,108,95,95,102,101,104,118,109,107,105,91,120,104,91,99,94,71,106,102,106,113,113,110,101,104,109,91,107,104,103,107,109,97,102,105,97,99,106,109,107,102,100,102,108,112,94,107,112,94,83,93,94,99,95,115,100,107,105,105,99,103,113,113,98,103,104,121,114,105,112,99,108,127,101,110,98,108,87,101,98,113,104,103,110,126,106,113,99,122,112,105,110,106,100,96,91,105,100,106,106,113,113,102,102,110,102,111,117,108,112,113,110,105,100,107,108,101,112,120,100,107,120,88,101,109,109,115,117,105,89,105,108,120,106,111,112,110,115,108,112,116,95,118,106,100,101,111,103,111,107,101,105,103,101,109,108,101,113,121,102,107,111,109,108,112,106,90,117,107,105,106,114,117,104,99,113,105,112,107,104,103,113,102,96,102,105,92,101,109,96,104,104,106,104,104,92,96,107,108,96,83,114,103,95,104,106,110,99,108,110,107,95,108,112,113,99,109,102,99,100,107,99,107,104,92,105,107,108,110,113,105,103,104,112,105,117,109,80,112,100,106,110,100,104,98,107,99,100,104,104,100,90,106,116,110,102,112,109,102,113,94,103,106,108,108,104,106,104,106,114,109,98,108,105,111,91,104,106,97,108,108,99,82,99,108,86,105,99,106,101,105,89,98,116,103,111,93,107,100,98,96,88,109,90,97,105,105,110,109,109,105,103,102,99,97,98,106,103,99,110,88,111,122,104,97,112,99,111,107,104,106,90,103,99,102,109,107,103,99,93,115,118,101,107,112,92,109,109,117,112,115,117,113,131,113,113,125,142,148,116,136,133,144,140,124,134,128,116,121,121,115,122,109,80,98,127,106,117,129,102,119,98,112,108,102,109,98,109,108,103,119,111,109,100,104,103,93,108,91,108,121,103,114,92,108,95,106,96,96,85,103,106,91,110,107,117,98,98,105,106,93,126,96,108,105,94,97,116,114,101,110,108,107,103,99,105,98,103,106,120,105,96,105,105,122,104,104,114,103,103,97,102,106,109,110,109,110,109,104,114,100,86,112,97,108,94,126,100,115,111,100,105,110,104,97,106,107,104,106,101,96,113,111,99,97,95,91,100,102,109,102,105,102,111,110,99,109,112,104,104,104,99,111,108,109,99,107,88,109,108,120,105,113,98,97,93,109,103,101,96,96,105,107,92,109,81,110,102,90,96,95,105,103,102,121,104,118,116,105,100,105,104,105,107,101,93,97,100,96,100,113,106,104,115,119,106,99,102,108,95,98,102,114,99,105,104,97,101,107,112,95,108,110,103,106,99,102,106,105,101,109,92,105,105,107,94,102,107,90,114,103,99,116,98,111,83,110,101,111,116,108,105,109,106,105,85,104,99,100,103,100,107,98,99,109,107,99,103,104,100,105,97,107,107,102,103,106,93,92,96,94,106,97,103,107,110,110,113,101,108,123,96,108,99,104,108,104,102,99,110,136,99,112,105,106,112,95,103,107,110,104,110,108,101,104,117,83,108,108,110,91,106,104,104,96,113,106,108,99,108,117,95,107,97,103,119,88,111,95,121,112,107,113,113,99,112,97,106,102,94,104,100,98,92,102,107,102,101,105,108,102,105,101,102,103,103,99,97,109,116,98,107,109,112,106,104,85,104,109,100,95,101,102,101,101,96,102,107,109,99,93,100,98,82,113,102,104,107,100,110,111,107,95,107,100,109,103,106,99,102,101,99,102,96,116,112,103,103,128,89,112,106,98,107,112,99,112,100,97,101,108,106,100,99,106,106,97,109,106,96,108,93,108,101,96,111,102,111,104,107,104,100,88,99,92,106,96,104,100,112,103,103,106,102,103,98,90,109,103,121,105,104,112,90,117,109,94,96,97,97,102,103,104,102,102,103,108,111,95,107,100,104,96,110,102,98,109,112,105,92,92,116,109,110,102,101,106,105,99,99,108,99,93,95,88,104,118,113,101,112,103,124,94,106,73,88,130,102,99,99,110,113,100,87,92,104,119,107,102,102,107,106,107,94,100,91,68,104,124,108,81,117,100,107,102,105,72,100,103,116,92,108,106,109,111,102,91,107,103,96,94,101,118,98,90,90,96,107,99,105,113,108,98,101,105,115,102,105,101,98,95,108,109,97,109,107,105,90,101,101,117,106,97,97,105,103,110,94,105,112,110,98,110,110,102,97,101,103,98,98,107,105,108,111,99,115,116,106,117,105,95,98,102,104,116,111,102,98,109,104,95,109,101,116,99,91,111,105,107,102,98,112,104,108,105,99,111,120,88,108,110,103,108,94,98,108,101,110,112,95,109,112,100,102,106,111,112,95,106,107,117,100,103,96,95,109,84,100,100,91,107,116,110,109,108,101,107,116,117,90,103,107,102,104,98,95,98,102,95,102,92,103,109,100,104,99,106,107,113,108,99,102,98,103,113,104,92,80,100,111,111,104,98,95,102,108,102,109,105,107,99,99,108,102,103,98,112,104,104,96,101,104,106,111,113,106,101,101,103,102,108,111,99,101,98,99,109,103,104,108,107,108,92,89,89,114,102,99,99,107,108,103,107,89,114,104,108,108,100,100,103,80,106,90,99,100,106,106,98,89,117,87,117,104,94,99,104,101,116,94,104,99,96,99,102,100,106,107,106,84,102,108,87,103,104,115,110,113,105,99,103,103,111,107,107,98,102,96,115,94,95,96,113,102,101,101,113,106,112,103,107,112,100,93,98,100,101,117,98,97,68,107,101,105,102,109,100,102,110,97,100,106,104,107,106,99,125,94,113,97,95,96,98,100,99,101,98,102,113,107,133,105,108,108,101,99,112,105,95,102,106,98,107,94,112,98,97,99,96,111,100,102,97,109,101,107,113,111,99,113,107,113,101,99,81,108,110,98,109,112,111,114,98,114,108,100,107,117,101,102,98,101,101,104,96,96,101,108,108,106,115,104,113,93,100,99,97,101,109,98,95,105,107,108,100,123,102,98,93,102,107,103,99,104,100,113,94,91,101,94,102,113,100,105,96,110,104,100,98,100,88,109,97,102,113,99,95,111,91,100,109,103,94,103,106,108,109,102,97,100,105,94,111,100,90,107,100,99,107,114,87,103,107,102,102,95,102,111,99,100,108,98,106,86,103,97,107,110,101,100,113,101,106,93,104,96,114,104,110,103,104,102,108,95,107,112,92,99,112,112,101,91,109,104,113,106,99,99,106,101,99,98,102,102,94,98,111,98,116,97,104,106,101,115,105,126,120,104,96,73,107,104,108,106,107,96,117,98,111,110,101,97,103,92,101,106,108,83,96,104,97,93,112,122,104,97,104,103,105,96,106,102,106,94,100,88, +599.46338,103,113,101,95,104,114,92,89,99,113,104,104,101,114,98,100,96,112,104,111,103,86,98,84,94,103,103,109,111,92,112,94,105,106,110,101,96,103,109,110,79,105,105,95,107,105,94,92,90,103,91,105,93,97,98,107,114,97,110,111,101,115,96,108,113,107,104,114,90,93,108,117,99,100,107,108,94,119,95,93,105,88,111,95,97,95,103,109,91,87,113,107,103,102,103,105,105,97,94,100,102,100,88,114,97,91,91,99,105,93,101,103,106,104,93,104,102,99,105,100,108,94,101,109,97,100,107,101,112,113,95,104,109,93,83,94,102,105,99,99,105,111,105,94,104,97,104,100,112,108,95,93,99,100,97,109,103,105,95,95,105,76,99,105,101,102,97,103,109,101,103,111,97,87,103,100,97,109,107,105,119,108,116,122,103,105,108,98,99,99,125,106,105,98,104,110,117,101,112,103,102,100,103,105,97,103,106,101,111,106,93,117,107,101,112,122,85,92,100,124,105,101,110,79,95,106,104,108,95,100,94,96,112,107,109,102,92,120,99,109,115,98,100,108,106,110,106,101,117,108,100,92,98,113,103,98,90,109,99,100,99,103,100,106,103,111,100,92,109,91,101,100,103,96,103,104,103,110,106,107,112,110,97,101,97,103,108,106,104,99,105,107,99,90,111,103,104,99,107,103,93,97,109,110,89,116,112,104,114,117,117,106,98,115,99,105,110,103,117,110,114,100,93,97,107,100,96,99,109,105,106,91,108,114,109,115,97,104,108,99,109,106,103,93,118,105,112,109,109,109,106,108,106,98,101,112,103,125,105,108,100,109,106,84,96,101,105,101,97,100,104,98,125,107,99,89,115,95,100,104,108,115,100,106,94,104,106,101,107,105,109,91,98,99,100,99,110,99,112,101,102,102,113,98,100,111,105,108,96,107,111,100,109,95,118,102,101,119,108,101,104,106,102,92,91,99,106,99,101,109,110,131,107,112,97,110,102,103,100,101,107,98,102,112,98,108,120,96,98,104,109,97,110,103,100,106,108,97,102,101,91,104,104,106,114,105,105,103,110,98,101,112,105,101,101,109,100,105,100,105,103,98,108,110,109,103,101,110,90,109,98,108,98,73,95,99,117,96,99,105,110,105,109,85,100,116,95,108,110,91,113,101,108,122,105,105,98,92,114,105,109,100,113,102,109,102,101,115,109,104,99,105,86,120,113,103,111,83,104,109,106,108,110,98,103,105,103,101,105,102,112,99,102,111,104,104,104,101,106,101,102,110,118,99,99,107,110,112,102,100,103,99,99,98,98,117,99,103,97,102,112,108,97,104,118,83,114,100,109,110,91,106,75,106,103,98,93,99,104,102,103,104,103,88,102,95,112,63,108,117,97,101,102,95,108,102,73,101,114,113,113,102,100,96,107,109,108,113,113,111,106,101,93,121,105,108,106,133,110,97,107,99,86,98,102,109,100,99,108,103,99,109,100,102,103,99,105,109,102,102,109,101,103,104,102,96,106,108,116,95,107,102,105,110,95,98,114,118,98,96,114,93,117,96,104,109,106,101,98,97,102,94,82,117,98,109,102,105,96,104,99,105,102,111,95,110,112,113,104,121,109,86,105,102,100,104,92,109,100,101,109,118,105,114,101,84,94,105,105,106,107,110,105,94,104,98,101,92,121,104,108,97,95,105,95,98,100,113,102,109,96,100,99,107,113,100,109,100,106,106,110,103,98,102,111,116,102,98,105,91,105,106,105,103,103,98,96,104,94,103,107,104,110,110,97,101,109,108,97,107,102,107,98,106,110,101,114,105,104,93,107,112,86,104,100,102,118,101,93,95,111,107,94,96,116,110,109,106,94,107,89,113,105,105,109,112,119,93,105,105,103,99,92,109,104,112,109,109,108,116,106,111,109,100,95,107,103,105,99,95,112,110,90,105,108,108,99,93,98,100,108,101,99,98,101,128,99,99,108,115,97,104,96,110,87,107,101,105,106,77,109,102,106,104,99,94,100,120,102,98,109,109,108,105,104,103,95,111,92,97,111,105,116,79,102,110,101,106,100,106,115,100,97,84,103,95,113,114,87,106,106,113,103,108,106,107,104,110,105,100,108,108,106,104,101,109,87,67,100,111,98,98,100,102,105,109,108,107,115,104,102,108,114,110,108,113,104,103,104,119,116,102,122,106,97,105,102,117,109,99,96,104,111,108,97,109,106,113,94,87,102,113,105,113,102,105,112,105,110,106,99,99,108,101,102,109,98,104,103,105,100,79,101,88,105,102,118,120,106,108,104,109,99,111,111,112,116,107,106,104,106,109,107,100,110,111,118,110,103,109,121,107,119,112,124,102,111,120,97,113,126,126,148,125,136,147,138,128,99,143,127,115,131,107,116,118,112,100,134,112,104,99,107,109,107,105,117,118,107,107,97,113,115,106,97,94,102,96,118,113,107,111,113,113,95,101,96,98,114,104,115,111,115,101,100,113,119,93,109,110,105,107,97,99,108,87,95,98,112,111,94,111,100,89,91,101,111,113,102,105,103,98,95,107,97,106,94,105,102,98,111,104,107,102,108,98,109,105,110,105,100,96,100,108,105,105,107,108,110,95,109,95,105,108,115,106,108,97,98,124,75,98,110,97,100,101,100,97,124,106,108,116,115,111,106,97,107,98,118,112,101,98,114,101,112,103,107,107,95,114,103,105,104,106,104,106,102,101,101,114,115,93,115,106,107,111,106,105,120,99,111,107,100,104,107,101,99,109,95,93,113,125,107,99,96,105,98,99,107,105,106,102,115,101,103,106,95,81,104,131,106,108,106,113,104,113,101,108,109,100,102,91,111,107,99,105,95,109,109,110,109,112,111,90,104,99,96,105,91,101,110,117,113,112,108,103,104,112,101,119,110,106,108,108,113,108,95,94,106,107,98,107,104,101,103,109,92,96,95,98,100,119,102,104,101,111,106,107,115,113,96,97,111,97,96,102,109,94,105,96,108,115,105,109,102,94,120,101,96,112,104,91,103,105,118,99,103,113,108,99,104,105,102,108,112,96,107,85,104,102,98,113,113,107,92,107,109,98,104,101,111,99,117,103,105,82,108,102,107,123,110,109,98,110,98,113,102,108,100,105,101,99,96,97,108,89,106,102,113,102,91,103,125,103,109,122,102,110,104,105,111,94,109,111,102,99,112,100,89,109,87,110,99,106,97,94,101,97,103,107,111,103,88,105,107,103,117,116,116,111,119,106,111,111,116,104,109,112,108,92,102,98,111,100,105,98,100,103,102,101,102,102,106,111,102,108,103,110,95,109,101,98,107,105,103,117,100,93,102,104,99,111,97,91,104,102,100,90,107,96,95,107,113,98,104,112,126,99,106,98,99,106,93,103,108,91,110,105,95,101,109,127,110,118,113,102,106,100,115,102,109,104,102,97,95,103,106,103,88,100,108,110,94,102,101,102,102,104,113,93,116,113,97,102,109,105,117,112,113,96,104,112,93,112,105,128,101,100,106,96,96,113,103,102,121,101,112,105,105,102,89,118,116,99,94,98,96,106,102,99,104,112,115,108,109,106,97,105,94,95,99,97,101,112,108,100,102,100,114,103,104,100,108,113,106,104,97,108,107,112,102,87,100,99,100,106,114,89,96,117,108,96,99,112,96,99,91,103,107,104,99,109,134,105,95,105,104,118,107,99,106,102,109,105,107,102,106,104,105,93,103,106,111,93,113,108,108,113,118,109,94,99,114,101,101,99,106,97,107,86,103,103,90,106,94,90,110,104,96,108,109,102,97,89,99,100,100,112,93,94,108,104,105,111,101,108,109,103,103,115,106,93,107,108,102,110,113,92,101,93,105,105,103,104,106,97,100,103,106,113,101,87,118,94,124,106,103,101,109,98,103,104,111,113,106,96,108,91,96,91,106,101,108,117,95,111,94,107,102,106,104,103,105,111,84,110,105,87,101,95,99,116,102,114,102,110,110,113,92,104,102,105,102,102,101,113,110,106,104,106,115,103,105,101,98,98,104,104,80,106,99,101,96,95,108,106,108,103,112,91,106,101,110,100,103,115,103,98,109,103,83,106,114,113,104,105,97,116,103,108,111,104,111,107,98,117,94,103,107,95,104,106,98,109,95,104,103,101,83,96,111,99,102,90,101,98,110,104,96,104,110,104,96,112,103,105,105,107,104,92,101,99,99,105,97,101,114,97,99,86,103,107,99,106,105,106,107,103,103,109,94,110,109,94,76,109,91,110,108,109,106,91,117,101,93,97,116,92,97,101,100,92,97,109,105,102,110,108,91,107,107,97,94,90,101,100,103,104,100,103,116,100,113,100,105,104,111,108,101,106,107,98,92,91,111,103,112,110,103,83,90,107,107,110,104,89,95,123,113,102,91,90,114,102,91,109,98,106,102,103,105,103,93,101,98,96,85,97,124,102,99,94,98,98,101,116,99,92,104,109,101,105,101,101,95,101,99,104,94,101,101,98,102,112,108,109,95,99,94,91,101,98,107,105,113,105,115,125,106,92,103,105,99,104,109,89,92,115,104,97,107,112,102,120,110,105,95,105,106,102,118,101,96,106,101,106,115,100,96,100,101,105,83,117,91,92,106,103,103,105,112,102,92,103,102,101,119,104,104,96,100,105,115,108,100,91,106,105,101,98,101,111,107,102,102,98,112,94,93,91,100,119,107,97,102,98,101,104,102,94,99,111,103,107,102,96,107,100,103,109,105,100,96,101,104,101,93,108,111,105,98,107,106,101,93,105,107,108,90,104,111,116,106,106,101,121,113,110,106,99,118,102,113,89,111,105,105,99,99,107,105,101,89,102,84,108,94,88,118,87,106,99,96,98,99,105,103,103,119,100,106,105,98,81,110,109,116,116,95,97, +599.60437,94,99,91,94,88,104,109,95,104,102,103,116,106,109,94,97,104,95,98,113,116,109,100,101,101,116,104,111,91,115,92,100,100,96,100,102,91,108,102,99,96,100,98,87,104,121,97,107,110,102,104,107,91,91,89,92,107,98,100,102,97,88,103,103,108,94,101,110,86,104,106,96,104,108,93,98,117,102,121,111,92,97,96,108,89,91,104,106,103,95,99,101,101,106,108,94,67,101,100,106,103,91,94,97,102,105,104,106,98,86,109,105,92,96,104,98,99,103,110,104,98,91,102,106,92,112,107,101,101,108,101,86,96,99,94,114,117,105,95,103,87,102,105,105,90,102,107,75,92,105,104,100,110,94,137,103,85,100,104,104,118,108,87,105,99,99,112,105,105,102,104,102,84,101,107,87,104,99,106,97,112,110,113,115,99,101,102,105,103,104,122,101,100,88,94,101,105,106,107,108,92,100,106,107,97,105,101,102,106,117,97,93,103,106,100,121,96,94,106,99,113,105,101,99,101,109,96,104,100,100,99,93,95,100,87,105,102,113,98,99,115,106,103,107,109,99,91,105,109,103,82,106,90,81,93,106,110,113,99,112,97,102,105,83,106,97,103,99,98,98,103,95,126,106,113,103,112,104,109,94,100,104,106,105,103,104,94,125,99,127,108,100,105,106,112,109,99,104,87,108,107,110,100,104,102,112,112,113,110,103,99,112,106,105,113,108,89,113,95,113,105,108,112,97,103,141,100,98,109,109,114,98,103,116,102,98,102,104,110,100,120,106,102,110,97,106,92,115,112,105,106,105,90,105,118,100,108,102,104,110,102,103,110,106,101,105,117,113,97,107,102,100,109,102,99,94,101,107,100,113,106,99,94,109,112,105,109,106,98,105,107,119,99,95,113,105,101,109,95,111,116,94,95,103,96,95,112,105,111,104,99,98,95,95,115,100,98,101,109,113,95,102,95,100,107,106,92,102,94,105,77,133,103,100,107,98,109,102,109,107,108,106,96,117,104,111,91,104,104,100,135,109,114,103,113,102,110,106,109,104,102,99,111,109,105,108,99,100,104,105,105,102,106,110,98,100,106,109,112,112,108,100,105,102,100,109,139,105,101,107,103,119,112,95,96,99,109,100,104,105,99,106,102,107,101,96,98,93,105,99,99,99,96,114,102,102,100,96,96,86,116,105,104,104,106,106,102,102,99,108,102,118,107,94,102,91,99,99,110,102,99,115,98,97,117,99,105,104,112,109,116,101,136,104,95,95,106,111,110,103,95,97,95,109,69,99,82,105,113,108,100,95,95,109,102,96,114,108,100,93,103,101,99,97,105,106,108,99,109,108,108,105,108,88,113,115,99,104,111,99,104,100,110,99,102,102,100,102,102,90,112,99,101,107,108,94,119,110,99,95,102,104,108,101,113,112,105,106,107,113,114,95,120,96,102,105,93,94,97,99,101,104,101,105,106,103,109,101,112,118,100,106,107,107,114,79,98,111,108,95,103,110,94,105,107,104,99,106,101,103,111,107,129,112,103,95,97,101,97,105,104,99,113,95,109,104,107,99,93,105,106,100,114,113,101,103,99,105,112,95,108,109,105,103,108,98,102,95,99,115,105,107,115,107,99,94,106,104,96,113,105,104,98,105,91,107,105,102,110,119,103,95,105,106,100,97,106,100,104,109,116,92,114,99,113,89,85,100,106,99,109,104,102,109,84,107,102,112,101,99,106,107,95,115,91,97,117,109,108,108,114,96,107,102,95,107,96,92,111,102,99,110,124,102,108,117,102,106,95,98,92,109,101,112,106,112,102,102,107,107,100,114,89,115,87,91,112,105,97,109,104,101,101,108,103,106,105,102,112,101,102,100,107,102,106,105,106,117,105,103,102,95,103,100,112,103,85,104,102,109,102,92,111,104,88,99,97,96,97,98,107,120,101,108,87,117,106,97,112,108,100,111,104,98,105,104,103,103,108,101,106,107,91,102,104,100,112,109,111,104,106,98,97,95,101,107,103,120,108,100,109,105,102,106,120,83,106,124,100,109,103,104,108,122,109,95,94,104,105,113,100,107,119,108,116,104,103,93,98,110,97,107,126,106,107,108,117,117,109,92,72,110,102,110,99,95,99,109,94,90,105,106,110,102,116,94,99,93,105,118,101,104,112,111,91,104,91,109,103,119,105,89,104,107,98,97,97,97,101,103,90,114,98,85,116,113,101,93,100,105,104,99,91,106,108,102,110,100,99,117,94,97,108,101,96,103,100,110,103,88,110,101,106,96,105,84,101,113,102,103,101,106,99,114,96,113,122,107,101,102,106,104,99,106,104,104,115,96,117,114,101,118,124,109,105,109,122,110,132,124,103,124,127,140,143,139,160,127,138,139,127,133,129,134,111,104,121,106,101,113,104,105,108,110,119,99,115,110,106,110,114,108,105,101,102,103,104,116,105,105,111,102,91,121,94,91,104,105,106,112,112,100,100,97,111,106,117,112,99,107,109,102,104,109,107,111,111,105,101,112,107,111,101,94,101,109,95,107,117,117,97,114,102,119,114,121,90,108,104,102,105,116,119,95,107,109,112,102,94,101,103,113,101,112,93,100,126,109,103,80,110,115,119,104,102,86,101,97,104,113,101,96,88,110,108,114,102,103,115,113,121,107,117,110,93,98,95,115,94,106,98,105,79,108,96,110,106,106,106,109,118,106,117,107,109,110,95,100,95,114,81,105,100,117,114,101,116,114,111,116,87,97,116,107,108,110,110,108,110,100,108,110,91,109,101,111,104,101,106,88,96,93,98,97,109,97,106,105,110,100,109,98,121,103,109,114,115,100,103,107,107,120,93,103,102,101,92,91,104,115,100,124,94,106,102,101,110,104,112,103,111,103,97,110,106,93,110,108,115,106,110,116,118,107,98,119,113,107,107,115,111,113,103,102,102,103,95,98,116,114,110,102,102,103,104,106,106,101,110,106,102,110,98,105,109,109,89,112,100,98,105,103,104,99,108,93,117,101,106,112,112,105,106,122,125,106,102,104,100,100,105,108,106,92,105,89,102,112,116,93,109,113,113,115,98,98,96,114,109,102,111,118,111,108,114,107,116,108,100,103,108,103,117,116,117,110,102,98,101,116,109,94,106,104,109,95,109,108,105,65,113,103,117,107,98,104,92,93,106,110,107,103,99,97,103,113,102,103,113,90,99,98,100,100,104,98,100,96,106,99,110,102,96,106,86,110,106,97,114,97,98,106,111,119,106,97,110,112,98,101,102,97,94,100,110,97,110,107,104,109,116,103,99,111,106,96,100,94,121,114,99,99,105,109,93,104,109,97,112,96,105,111,98,104,108,98,92,105,101,105,100,72,102,101,108,101,106,103,116,101,106,100,107,105,107,103,101,104,110,101,120,106,102,88,99,117,102,119,109,104,98,109,102,109,99,109,120,103,100,104,104,92,115,103,99,122,103,72,95,100,102,109,110,102,105,115,106,110,116,115,107,104,99,108,116,110,96,113,105,98,113,116,94,114,104,95,108,109,105,104,98,105,106,103,100,124,108,95,112,115,117,93,112,106,87,107,111,109,105,102,101,99,108,108,95,98,119,97,106,121,109,92,118,106,99,103,100,100,119,97,91,107,113,102,97,84,117,112,114,113,100,91,107,122,102,108,97,105,113,105,111,103,106,112,101,113,103,102,100,120,104,95,108,105,114,99,105,117,105,105,102,102,100,97,113,104,109,108,112,104,96,112,102,102,106,113,105,114,105,98,102,96,103,114,100,99,109,99,117,99,87,104,112,106,108,103,102,105,103,99,116,123,104,109,103,103,99,98,109,91,113,88,107,104,98,107,107,111,103,101,112,111,101,97,111,102,109,106,105,102,103,104,101,115,110,113,109,98,99,107,105,95,105,86,99,98,103,94,103,98,105,103,104,108,96,103,102,117,102,95,96,99,95,106,102,107,103,113,92,98,94,107,97,97,113,120,102,93,109,113,100,106,107,102,114,103,97,110,111,104,103,108,103,106,106,92,113,96,112,109,107,108,102,101,101,110,94,101,114,100,108,103,101,116,103,105,103,108,100,97,91,106,108,105,109,120,104,103,100,102,98,95,112,110,110,110,110,98,104,102,101,103,89,103,91,103,97,113,103,110,115,111,108,105,112,115,102,104,102,98,119,103,91,100,93,107,117,106,87,129,112,104,108,101,101,105,81,114,102,111,110,102,96,113,104,115,102,104,125,99,104,114,104,100,107,108,99,108,91,101,103,118,108,110,109,110,103,94,97,114,102,100,111,105,108,107,121,105,117,108,103,108,113,103,96,93,102,98,98,109,110,105,98,94,111,105,114,117,108,113,113,107,112,110,104,89,110,112,117,94,95,106,100,112,106,109,104,112,112,119,113,72,123,98,102,110,103,106,106,101,88,106,94,110,96,100,116,92,110,107,100,111,109,109,109,96,102,97,101,107,107,97,106,106,112,114,96,106,102,117,101,102,112,106,120,106,101,104,108,106,108,112,104,107,110,104,101,106,99,112,89,108,101,112,114,100,109,100,107,104,116,102,121,98,100,105,106,96,99,93,106,83,106,131,108,109,105,103,102,111,94,115,108,113,104,104,107,108,100,118,100,98,94,93,100,94,102,104,95,96,117,98,114,104,100,91,112,114,106,98,107,80,107,113,95,102,112,98,103,108,113,113,99,102,103,102,100,99,117,105,104,100,95,106,110,98,96,98,110,113,100,91,96,96,101,98,116,100,98,100,117,101,86,109,96,109,108,112,106,107,126,107,100,102,92,98,95,106,99,100,108,85,101,107,118,128,88,99,72,108,112,105,102,98,116,101,116,108,99,85,87,106,99,119,90,105,94,104,89,104,98,104,106,94,106,103,93,107,103,102, +599.74542,96,88,102,95,91,99,100,97,110,101,105,96,102,102,106,101,105,103,116,109,97,108,100,89,108,97,94,99,110,97,87,99,91,105,88,107,111,106,117,100,91,105,103,98,106,111,81,121,112,111,92,111,117,86,111,91,85,95,114,97,102,107,93,88,96,99,92,109,95,107,113,114,103,106,95,104,101,103,114,103,94,102,107,101,115,101,106,106,101,128,98,108,103,96,101,101,97,97,113,106,104,103,103,94,112,108,120,100,113,106,100,116,101,98,97,118,106,106,108,106,125,138,99,107,123,109,101,94,115,97,100,102,98,97,104,119,101,108,93,111,137,102,99,75,98,102,99,107,109,109,92,111,106,91,96,98,109,90,107,101,101,109,101,107,114,100,109,100,103,96,95,108,100,96,107,105,100,118,99,95,91,112,98,96,108,95,89,104,102,109,102,106,111,97,106,94,105,102,111,116,113,94,102,100,112,101,100,97,102,104,112,108,114,113,109,110,99,105,106,122,93,100,107,110,103,99,114,115,126,103,118,109,93,102,100,90,106,106,108,104,101,106,101,94,100,103,95,98,108,103,92,112,107,102,97,110,106,106,94,113,105,94,97,112,107,103,118,110,98,111,99,103,108,107,101,102,110,107,103,104,95,107,107,92,118,99,92,98,99,105,104,103,98,102,109,131,109,102,100,108,107,96,103,109,93,109,113,106,107,107,114,109,112,98,98,104,111,101,100,98,103,98,116,104,117,104,97,94,107,115,104,115,110,95,96,107,108,101,97,112,110,101,107,92,102,103,89,118,102,117,104,107,92,109,95,102,98,113,108,109,111,101,106,110,100,103,105,100,100,107,105,107,112,113,95,97,105,100,95,100,100,93,99,109,102,101,94,103,107,99,113,118,98,110,108,103,108,108,101,95,102,102,96,92,106,105,102,107,102,112,95,111,85,97,106,94,97,93,120,91,95,105,95,104,95,94,100,83,106,105,94,100,112,98,99,109,106,108,96,92,87,104,100,99,105,105,110,85,117,121,105,88,113,98,108,100,90,100,119,107,102,106,110,126,99,101,114,97,121,109,97,89,102,102,83,107,113,103,105,107,113,99,114,115,121,112,111,107,97,96,108,104,109,104,95,116,102,113,107,102,108,101,112,110,106,125,96,92,106,114,115,114,109,113,95,100,110,102,107,108,103,98,96,110,104,113,107,99,99,101,104,113,92,106,113,110,119,104,106,108,99,109,103,77,110,103,108,109,107,110,114,109,117,109,106,76,95,65,104,104,108,101,111,108,105,103,104,109,96,101,96,104,103,101,94,101,83,99,109,101,109,98,99,106,106,99,111,107,99,121,109,104,111,104,104,105,110,107,109,112,109,111,108,105,114,99,95,85,114,114,95,113,102,104,100,108,108,104,123,110,107,113,95,100,105,101,100,108,110,104,124,113,101,95,96,87,102,104,106,112,116,105,112,113,104,96,94,101,103,110,97,117,92,106,108,107,116,102,113,105,97,111,99,116,96,96,110,100,102,112,103,109,102,112,104,110,117,99,95,109,107,122,109,96,100,96,112,108,98,105,129,108,96,97,98,106,103,102,107,86,106,102,107,106,106,96,116,109,100,87,112,112,116,100,115,100,105,104,112,105,104,104,113,110,110,116,102,103,108,96,112,117,108,105,80,102,109,97,102,102,89,102,102,103,101,101,121,106,97,106,107,101,106,103,104,104,100,118,110,113,98,110,106,97,104,113,100,103,103,104,104,104,112,103,103,110,98,99,118,101,104,107,109,110,101,108,96,113,111,113,95,124,109,112,98,99,113,108,111,93,114,100,98,107,104,91,105,98,100,103,116,111,115,113,100,113,112,108,112,102,108,106,109,114,108,111,106,105,105,90,96,95,114,100,102,112,109,96,105,108,100,105,95,106,98,108,103,98,108,89,109,111,107,111,116,120,102,102,91,107,95,92,95,119,98,101,101,107,120,106,113,112,108,109,91,81,103,105,95,101,100,114,103,127,113,105,111,109,105,109,102,103,104,98,117,93,113,102,94,103,110,113,96,124,108,97,105,109,109,116,91,105,105,97,107,101,87,106,105,110,113,110,104,103,112,105,95,102,100,108,109,108,99,124,113,102,118,110,102,100,100,98,106,113,95,110,103,117,102,96,106,110,97,109,75,106,92,125,114,107,112,105,96,95,109,109,98,108,96,113,114,105,114,101,101,104,111,110,106,94,112,106,109,98,110,101,105,108,107,89,107,99,111,110,101,103,97,115,101,114,105,103,106,109,109,105,101,111,95,109,108,94,94,101,112,100,110,101,100,108,107,101,113,103,105,113,110,110,110,109,105,104,99,116,112,93,131,107,108,129,136,131,130,131,143,160,124,138,146,124,135,108,109,121,113,121,113,110,114,117,115,99,108,122,105,95,102,116,115,102,101,110,101,120,109,104,86,108,106,104,95,102,109,100,108,115,101,102,112,107,110,96,117,95,92,101,98,93,105,108,102,89,121,111,103,104,108,103,103,94,106,116,115,91,103,68,112,104,95,113,120,91,101,101,115,110,102,101,104,115,109,108,109,94,103,102,110,98,106,108,92,107,112,77,105,99,94,100,101,116,102,95,105,113,101,108,106,105,106,103,115,112,111,96,107,111,108,97,103,106,110,111,119,117,108,97,100,102,103,107,102,95,96,107,117,107,99,106,104,109,111,94,98,98,93,96,108,97,113,103,103,110,97,90,119,91,103,87,103,104,115,83,104,105,108,94,110,110,106,89,95,93,95,99,100,108,103,100,97,108,99,108,108,121,116,104,114,108,104,101,98,110,99,101,91,109,110,109,103,84,107,121,96,107,112,95,105,98,103,112,117,106,113,106,98,101,105,103,104,100,101,94,112,102,92,101,104,105,113,104,81,110,102,105,101,99,108,105,115,101,94,117,97,96,100,111,111,94,98,110,110,96,101,104,115,98,92,93,105,102,111,102,105,106,114,103,100,102,101,96,104,103,109,92,117,103,112,97,96,85,94,93,108,103,102,101,111,99,102,110,108,113,105,104,101,93,94,111,105,125,99,110,99,107,103,90,99,103,104,92,102,99,113,93,113,103,107,105,110,98,102,99,99,109,106,110,94,108,105,95,104,102,110,116,114,124,114,101,101,104,103,100,88,109,106,108,110,83,109,100,105,105,96,99,117,101,105,108,102,93,113,85,108,103,110,104,107,102,98,98,109,106,102,105,97,104,125,89,101,116,104,108,106,112,105,106,103,80,86,106,107,112,108,106,98,94,113,104,96,107,84,95,105,105,108,93,100,92,115,94,109,96,109,94,99,104,94,93,112,98,102,121,108,96,108,93,107,119,104,112,102,107,109,118,105,121,102,96,108,97,110,114,104,105,109,102,97,102,113,95,97,109,116,99,107,109,113,104,117,107,106,110,105,102,105,106,108,106,96,99,106,77,98,107,104,119,104,100,107,99,98,98,87,102,96,88,123,99,101,111,102,110,90,129,112,117,105,106,98,98,100,109,104,103,102,110,110,108,104,109,113,112,119,97,103,110,95,106,101,112,112,106,105,103,96,100,112,111,104,99,106,111,104,109,113,105,103,118,106,106,100,103,118,97,103,105,102,105,109,110,105,107,108,121,85,102,109,110,108,108,95,108,99,101,116,106,110,106,106,103,106,110,95,109,96,110,104,102,108,103,103,84,112,96,105,107,104,114,105,94,101,100,112,100,109,133,102,101,112,95,106,102,101,97,98,103,108,111,105,98,113,94,101,101,112,109,108,101,109,114,101,113,109,99,99,109,109,102,97,96,116,97,89,103,100,105,108,106,87,109,102,107,101,95,109,104,106,103,107,101,97,103,104,112,105,108,95,109,112,89,84,116,106,104,99,95,124,70,105,103,98,109,101,96,107,110,100,129,109,99,101,106,111,71,105,102,103,101,108,105,101,107,95,106,102,110,97,99,97,110,104,96,102,106,98,105,106,112,103,112,110,110,103,106,101,105,94,78,110,99,108,101,102,110,100,110,106,97,123,112,110,91,104,121,106,108,100,101,109,98,85,103,108,93,103,99,95,97,102,95,94,119,109,99,113,106,103,106,92,93,100,102,83,106,104,97,99,86,108,99,105,102,92,103,106,74,82,98,95,106,113,111,89,98,99,108,102,98,94,87,101,94,107,101,97,108,100,96,107,84,126,100,97,91,108,116,111,100,98,104,89,98,109,103,101,115,107,105,124,92,99,110,109,96,100,97,105,103,92,114,99,96,99,117,106,109,106,100,109,132,101,99,108,99,104,103,102,91,106,117,107,103,116,103,105,88,97,95,113,99,99,103,97,100,104,106,98,100,78,102,104,105,94,107,102,109,109,104,97,110,100,99,112,99,96,105,104,105,94,86,80,96,92,102,97,104,84,92,103,91,105,108,108,104,100,105,100,79,109,101,105,100,103,95,106,97,107,105,70,101,109,96,100,107,111,100,103,108,105,100,97,96,108,103,96,98,96,97,106,106,95,105,111,112,104,107,108,110,107,104,110,105,100,112,110,104,102,94,101,100,108,108,106,101,101,98,110,104,94,97,90,84,98,103,102,98,92,109,109,98,106,91,93,98,95,108,105,112,96,102,97,101,95,103,107,97,108,99,107,105,98,77,107,105,98,109,112,107,113,82,102,99,107,107,96,100,110,109,96,90,92,113,102,97,113,100,101,98,101,112,107,109,99,99,90,104,93,119,100,107,103,93,99,109,103,94,99,100,108,104,115,100,104,108,109,96,104,96,92,98,97,125,102,87,109,95,95,100,97,97,95,88,96,115,111,102,91,93,105,109,95,89,92,97,100,108,108,91,107,85,100,82,116,101,101,98,98,107,104,105,109,102,104,102,88,109,90,113,90,101, +599.88647,103,87,108,99,102,106,96,96,113,99,108,103,102,85,102,111,110,96,102,100,106,81,101,96,112,98,99,104,103,96,94,106,110,90,119,109,108,109,107,96,94,101,97,96,103,113,103,105,105,109,101,101,93,112,95,102,88,91,107,97,113,106,109,104,89,107,108,110,113,106,105,111,102,113,95,99,101,107,103,101,109,92,105,102,99,97,99,102,107,95,99,112,75,114,90,102,104,108,90,94,112,101,93,100,98,105,106,102,103,106,104,97,97,101,113,93,99,111,103,103,95,99,109,114,98,106,96,101,104,107,105,106,93,101,102,83,100,109,101,93,79,106,97,104,98,102,105,107,106,109,97,103,94,99,133,103,103,107,106,90,102,122,116,108,115,91,106,112,99,106,102,119,97,108,120,104,109,108,109,100,70,110,89,103,103,119,101,93,119,114,109,100,110,106,98,105,121,106,100,111,105,110,98,80,100,95,104,107,118,93,88,109,101,105,102,100,106,113,95,96,123,108,99,100,112,105,113,101,103,110,112,107,108,101,100,101,106,104,90,113,120,118,100,99,113,101,108,100,95,109,98,110,95,108,100,110,94,101,95,103,99,106,99,112,97,111,105,92,102,101,100,112,106,105,100,101,99,106,99,98,102,102,109,119,100,106,111,92,108,112,109,94,72,106,110,103,85,105,99,113,105,98,106,106,105,114,86,104,105,107,103,106,101,103,104,102,100,109,112,108,103,95,91,99,76,100,114,106,96,97,122,95,115,102,118,103,106,106,99,105,99,102,101,102,92,109,99,113,85,107,102,103,102,100,107,111,101,97,107,85,107,101,113,98,105,107,107,111,100,96,95,106,112,103,105,93,108,119,106,105,98,113,113,105,99,95,100,109,103,95,113,120,87,108,105,99,100,105,100,80,95,102,112,108,95,93,95,103,119,105,100,95,100,105,99,95,95,91,97,108,100,99,96,95,100,98,103,101,102,108,100,113,104,97,93,115,103,102,101,97,106,110,103,100,106,112,100,94,106,103,93,109,113,112,101,98,90,102,115,98,98,103,108,92,100,106,111,110,102,95,109,103,106,98,99,110,97,119,106,99,105,106,115,103,94,104,100,104,103,104,120,101,114,103,94,100,104,114,111,100,99,107,102,95,97,102,105,104,104,108,132,99,94,103,91,110,75,117,98,98,102,100,109,91,106,103,109,99,97,106,94,114,95,98,99,100,97,100,94,114,112,108,93,95,109,116,105,86,114,108,106,100,103,118,96,100,105,92,99,100,107,112,113,104,111,108,90,116,104,103,99,95,97,91,94,114,99,111,102,111,113,112,105,105,96,99,94,109,99,102,87,109,98,107,105,100,100,106,121,111,110,102,102,101,101,75,110,110,102,102,98,96,97,104,111,110,112,110,105,104,101,99,91,92,112,106,104,106,93,100,98,107,95,102,110,104,113,98,105,111,105,98,96,111,106,92,101,99,106,106,94,106,108,111,106,108,98,109,102,89,113,105,103,96,83,107,96,106,104,105,97,109,104,114,103,104,96,95,104,104,98,107,116,104,100,91,99,108,97,101,109,109,105,109,112,108,108,113,103,100,105,101,111,104,107,94,70,112,104,104,109,119,108,100,109,90,101,97,113,91,100,105,99,104,107,99,100,103,102,109,112,100,96,85,97,101,95,98,105,109,102,109,94,101,88,115,111,105,105,100,108,90,94,100,105,100,118,99,101,108,110,104,96,108,100,108,93,95,98,99,99,105,99,99,108,116,105,106,100,101,91,111,106,102,114,97,98,114,113,103,98,109,103,103,110,110,97,102,96,116,98,90,96,108,112,107,119,97,96,101,109,100,117,99,103,109,100,102,109,100,103,109,100,106,106,107,102,93,123,104,102,100,103,109,103,111,96,110,97,109,110,98,104,103,101,103,88,95,113,115,104,113,95,106,104,104,130,103,103,101,105,89,106,94,112,106,85,109,111,112,98,111,87,101,106,94,91,103,100,106,106,98,111,104,108,104,100,110,114,103,105,101,98,110,98,96,93,112,109,108,103,94,117,105,107,109,109,106,104,101,102,113,104,90,103,86,105,109,109,102,112,108,102,103,99,110,105,100,96,105,110,114,103,109,113,108,107,108,106,110,111,110,98,95,90,94,84,112,108,110,100,99,90,112,108,101,99,100,101,104,112,102,103,120,111,100,88,104,101,104,106,117,106,99,103,100,104,93,95,100,94,107,112,94,103,103,99,109,104,108,103,104,110,95,102,100,102,98,105,99,106,100,94,110,112,110,108,107,101,120,100,98,95,109,90,113,103,112,109,110,103,110,108,99,117,106,107,111,109,98,115,98,113,89,112,109,111,114,119,121,133,141,129,170,120,136,140,141,146,123,117,130,123,133,133,126,112,106,105,112,114,112,117,113,109,108,96,98,101,114,103,109,99,100,109,99,109,105,100,100,101,109,103,110,108,108,98,105,106,110,108,109,110,100,98,114,117,111,112,98,107,103,104,105,108,109,113,97,119,111,108,109,103,106,104,69,99,105,108,101,103,110,95,105,96,100,98,98,101,105,108,104,101,108,112,101,111,106,113,104,107,105,90,104,99,98,105,119,119,83,111,102,102,107,102,101,104,107,99,97,101,109,112,88,114,100,106,105,109,100,102,105,106,103,111,106,108,104,102,105,102,119,103,111,98,108,117,103,114,105,103,109,112,101,96,106,108,94,111,106,98,111,98,105,95,100,98,110,109,103,100,104,92,104,107,102,98,109,106,105,122,95,103,108,109,105,99,104,107,105,106,114,98,110,105,108,106,112,102,105,105,106,105,100,108,102,105,102,119,115,92,99,106,126,94,96,105,111,92,109,101,96,109,107,103,112,92,103,104,96,113,85,100,111,107,119,106,106,101,106,98,107,98,104,105,113,104,128,119,110,104,113,116,98,87,115,108,97,106,106,109,95,91,105,103,106,102,115,106,109,94,109,101,92,111,97,103,110,114,106,100,115,110,104,106,106,116,107,117,96,114,100,95,112,116,106,103,94,106,120,123,106,109,116,100,106,94,107,110,92,108,116,109,112,99,99,109,111,113,109,104,104,101,106,103,108,98,94,105,112,103,90,119,104,113,103,84,102,97,103,100,98,110,95,112,104,100,99,112,116,101,103,101,104,102,102,112,104,102,106,100,115,92,103,100,113,101,104,113,108,111,103,113,102,106,98,110,116,129,107,111,99,99,103,120,111,111,97,111,103,105,102,113,109,109,101,109,125,105,108,102,100,110,105,98,107,106,105,106,101,111,100,104,106,117,97,110,102,109,138,108,108,101,105,110,98,101,107,106,101,103,105,98,95,103,121,105,93,115,109,95,107,92,119,103,101,106,101,99,104,111,105,97,97,112,93,100,113,115,92,103,115,113,102,107,109,102,109,113,94,87,108,114,104,96,100,111,108,113,121,65,106,98,96,107,104,100,89,116,109,110,102,99,105,105,93,98,103,107,131,112,101,105,106,126,99,108,70,112,106,109,110,94,107,113,103,102,100,103,103,105,104,106,101,98,107,92,104,103,98,106,108,99,99,108,97,102,93,73,87,108,101,103,106,115,110,106,103,109,93,101,102,103,106,107,85,101,113,104,103,88,104,115,110,96,109,109,96,106,97,105,95,112,118,101,99,99,107,101,120,98,112,105,107,109,112,97,113,105,100,95,96,109,111,104,101,100,100,108,108,103,110,113,96,105,110,109,99,100,106,110,92,95,105,98,113,107,117,104,95,109,98,119,99,98,104,101,101,105,105,107,106,106,103,102,112,109,115,107,110,103,113,110,90,109,118,93,95,108,119,101,112,97,103,109,116,109,101,108,112,107,112,108,103,104,95,96,95,100,109,104,109,103,98,103,108,109,103,97,96,93,100,113,82,103,98,114,101,107,109,96,104,105,98,106,99,99,101,99,103,101,104,100,90,107,112,103,108,110,114,94,108,104,123,106,108,113,107,105,116,94,103,104,107,114,97,95,114,105,124,109,95,107,99,111,101,119,109,106,119,104,99,95,105,111,103,113,111,115,105,111,104,104,107,108,100,105,107,101,101,100,109,106,104,105,115,106,109,103,114,117,108,96,106,110,123,104,108,105,109,104,100,80,112,103,105,100,101,115,106,101,85,96,93,98,109,106,98,95,110,109,108,99,98,114,117,97,110,106,109,114,110,106,108,101,104,102,76,102,117,102,99,95,105,95,112,121,114,102,95,91,99,102,105,100,113,96,99,104,100,100,103,109,103,100,126,105,98,103,99,99,117,109,94,103,112,102,100,105,121,104,103,109,115,102,104,102,103,97,111,104,112,114,75,120,104,102,98,99,109,108,112,72,107,99,103,106,83,105,106,107,106,105,103,106,108,102,107,103,87,90,96,113,98,91,118,104,113,102,107,98,98,95,113,109,103,99,105,103,107,105,113,101,108,100,106,113,95,111,104,96,111,94,86,106,114,83,99,113,101,100,88,92,102,106,102,105,117,106,98,98,94,99,97,106,121,92,102,104,107,103,106,97,96,102,90,107,106,100,103,92,113,108,105,102,108,102,105,103,104,95,91,102,98,109,104,105,107,114,100,98,106,102,97,110,113,104,110,98,103,94,80,105,115,110,98,114,102,93,102,101,94,111,109,94,104,107,107,107,113,108,108,100,109,100,102,92,116,86,98,109,101,107,102,103,102,110,103,98,104,117,106,88,99,103,106,116,97,102,100,95,91,102,103,119,98,98,102,91,101,117,96,116,108,109,103,96,96,99,105,93,108,117,106,91,109,92,105,93,109,114,99,107,97,123,103,109,103,99,102,122,108,103,110,100,107,95,95,124,103,119,109,112,91,116,100,98,110,107,113,112,105,118,104,118,100,106,85,107,101, +600.02747,110,111,103,92,124,107,102,113,87,117,100,95,101,104,112,103,98,106,104,103,108,102,94,105,109,130,101,92,112,104,95,107,108,95,85,104,109,113,97,102,106,102,107,91,101,106,91,99,87,98,105,107,104,100,110,100,111,110,118,103,96,102,100,100,131,96,103,110,137,113,100,115,101,99,93,105,117,100,106,107,99,114,106,99,104,90,77,103,94,95,100,101,104,109,101,100,106,107,100,103,103,96,114,106,110,110,111,111,117,113,104,110,109,106,99,118,115,123,107,118,106,131,109,119,108,111,104,94,100,99,110,101,105,120,103,114,94,108,101,103,105,101,106,104,112,98,102,113,104,107,106,106,102,107,111,122,116,105,113,99,92,95,115,105,106,99,116,115,104,97,110,90,101,99,111,107,124,108,99,96,113,105,109,102,108,91,104,92,103,99,106,105,103,103,95,105,102,113,105,106,98,102,97,100,104,106,99,102,101,109,101,98,98,102,99,107,100,98,103,98,106,115,100,97,101,118,101,90,104,117,109,94,108,112,109,111,108,116,122,118,107,105,113,103,90,101,99,96,113,99,92,96,103,104,98,97,94,109,90,104,104,104,106,114,90,99,99,105,91,100,104,97,115,114,113,102,108,109,105,98,102,115,108,90,102,100,89,101,103,118,110,108,110,94,112,112,110,114,110,109,107,105,89,99,103,116,110,103,96,114,108,83,98,98,112,112,121,102,104,98,105,106,109,105,98,103,73,99,110,110,108,98,112,102,106,101,102,118,102,108,93,103,105,100,113,108,96,108,111,113,107,104,94,103,88,98,100,130,107,96,104,106,98,82,100,106,101,107,91,112,103,102,95,100,105,110,99,91,104,103,105,97,99,106,95,96,87,104,123,107,102,104,109,102,100,114,110,112,94,108,102,103,91,101,96,79,105,72,108,92,74,103,109,97,109,107,114,104,106,91,109,103,100,114,107,87,103,104,95,99,97,107,108,99,104,101,100,110,98,90,109,109,112,102,97,104,110,97,101,98,99,100,105,104,108,113,112,95,103,103,110,108,110,123,102,110,113,99,104,104,99,108,112,113,95,104,102,106,103,109,106,100,109,101,105,95,76,106,103,102,97,115,105,93,108,105,94,111,105,108,116,115,116,110,110,102,102,102,95,105,109,104,103,108,102,110,87,96,99,74,102,104,115,105,103,110,109,111,106,106,98,95,107,90,95,110,103,117,92,107,113,105,97,103,106,117,109,104,105,106,98,109,118,101,92,104,98,109,99,115,98,109,109,106,97,100,106,111,109,100,108,100,94,105,99,112,100,99,107,101,107,103,110,99,98,97,109,109,109,107,102,101,96,98,87,98,82,108,106,101,88,101,108,109,103,96,100,112,105,102,105,107,106,107,104,102,106,101,104,105,99,104,97,104,105,112,107,95,106,103,99,102,96,97,105,104,113,111,101,102,109,103,107,104,104,99,99,107,106,109,115,108,120,102,101,104,98,100,107,107,99,103,103,100,97,106,113,98,106,107,115,108,103,116,101,111,117,122,110,108,111,110,103,100,106,109,104,103,95,102,105,90,98,106,97,105,113,97,115,93,106,107,103,105,105,107,100,105,117,111,121,95,95,109,100,104,93,82,117,106,95,108,96,105,96,99,96,109,94,108,120,95,102,101,102,112,99,103,106,111,102,106,100,94,108,98,120,112,102,112,105,105,107,114,105,114,103,108,106,105,100,112,104,107,104,116,96,102,92,108,112,101,105,107,105,107,106,83,113,99,103,103,105,107,108,104,118,99,105,117,103,111,98,121,125,100,104,105,112,106,101,97,102,106,111,117,103,114,102,95,105,105,102,91,101,100,120,103,100,99,109,112,111,109,110,108,109,117,106,102,99,100,100,104,101,109,113,107,104,96,101,98,125,98,100,102,106,108,98,96,112,102,117,111,96,102,103,98,104,106,98,111,100,112,124,112,107,103,104,110,107,107,104,112,108,100,106,105,92,108,107,96,114,107,110,98,104,113,105,110,102,106,100,117,104,100,113,113,107,92,102,111,126,98,102,99,107,100,97,104,107,104,110,106,105,99,99,107,102,109,102,108,95,118,116,92,99,122,108,104,108,108,95,111,96,108,89,101,102,107,102,99,94,107,94,94,101,126,113,101,98,106,106,104,108,117,98,122,102,99,104,94,109,99,107,107,105,100,106,102,109,96,102,90,108,99,109,97,104,111,90,112,100,109,102,106,110,96,106,102,100,102,109,113,107,98,103,108,96,109,108,95,95,87,113,107,97,110,100,113,101,107,124,109,95,112,112,90,104,105,109,109,94,104,88,109,109,111,110,103,86,103,119,111,125,71,116,123,102,118,139,131,123,146,139,148,141,116,105,125,122,125,126,129,126,129,129,113,110,112,111,115,108,106,113,106,115,103,109,95,108,104,101,95,135,111,97,103,91,92,107,101,110,101,125,104,102,89,104,107,102,108,101,89,89,96,104,108,111,98,107,114,115,110,96,110,97,97,112,87,105,105,119,88,98,114,104,107,101,106,102,94,95,106,113,106,112,104,108,94,108,108,107,111,100,103,106,109,99,101,100,106,105,105,100,109,109,103,112,106,116,79,126,105,98,102,114,111,108,100,106,93,100,98,103,106,106,104,108,113,105,113,109,94,113,106,102,94,110,99,107,109,121,107,103,102,102,98,101,117,107,95,111,116,100,109,102,83,83,111,101,101,96,99,117,107,101,93,116,112,135,109,106,85,108,108,105,116,101,97,102,113,101,106,105,106,98,103,118,111,100,108,94,118,117,102,104,112,124,107,99,102,109,97,111,107,122,99,113,111,103,96,116,99,102,94,94,108,100,110,102,96,110,107,103,95,95,112,98,104,106,113,97,109,118,86,101,109,103,102,108,86,117,105,120,107,100,105,104,99,106,103,105,110,100,104,113,100,102,106,106,112,107,107,90,102,102,104,95,94,98,112,105,98,108,112,108,117,94,107,90,102,100,99,103,93,99,106,61,97,102,108,99,106,99,103,102,108,104,100,103,110,103,106,105,123,115,96,117,99,106,105,106,108,97,99,95,115,106,107,106,107,100,101,109,101,102,103,108,109,103,114,107,96,109,108,115,104,102,105,98,101,107,110,112,97,110,107,101,98,102,94,107,112,108,102,106,100,110,104,95,111,81,95,116,107,93,104,101,110,106,110,103,104,103,104,106,103,100,104,107,103,95,97,90,99,97,102,102,108,102,117,100,107,98,100,103,102,113,110,103,94,109,103,104,112,105,110,97,108,99,91,102,101,110,101,109,105,103,108,105,98,100,100,113,111,94,93,101,106,97,103,104,99,105,106,109,106,105,106,99,104,119,107,92,125,115,106,108,112,115,96,111,101,109,104,96,107,107,113,97,109,113,103,87,110,110,110,95,104,97,102,103,103,93,109,107,104,102,108,74,100,106,99,100,94,103,105,105,106,96,103,100,99,100,96,108,103,99,103,113,109,108,112,104,105,97,101,113,100,107,96,96,109,101,105,108,115,109,104,95,107,105,100,112,105,113,97,98,105,114,94,103,109,111,99,104,112,102,94,98,104,101,108,93,117,98,105,105,100,116,100,116,103,96,90,106,110,103,98,106,106,112,109,105,100,113,104,116,87,107,105,105,113,113,99,111,104,103,106,108,110,98,100,98,96,105,91,98,101,117,110,96,107,106,95,100,100,104,107,99,101,99,103,95,125,117,103,99,97,108,106,101,101,101,112,113,107,96,105,104,104,98,111,87,100,97,97,103,105,105,114,120,96,112,112,99,102,95,99,103,109,110,103,97,101,109,109,98,99,108,118,108,106,112,98,113,100,112,96,113,111,117,102,104,102,101,103,106,102,107,102,99,92,104,106,98,92,101,94,108,102,95,88,102,106,104,104,120,109,112,108,113,112,97,128,106,100,104,105,101,100,91,102,111,112,88,95,102,92,79,106,94,95,104,94,109,101,87,105,107,109,98,110,106,116,124,102,104,94,111,98,113,103,110,97,100,105,113,98,100,90,100,104,98,115,106,107,114,102,82,102,108,102,94,111,107,104,104,113,103,98,113,101,114,118,105,114,100,116,89,99,107,109,113,108,100,108,108,118,112,100,109,109,102,97,78,111,109,87,94,109,100,106,105,119,103,109,106,106,119,114,120,116,111,93,108,117,102,106,99,90,103,105,109,95,84,89,97,101,118,102,107,110,109,118,113,112,88,99,103,96,110,93,88,102,92,102,112,105,95,104,116,102,117,105,100,97,96,101,102,114,88,107,114,111,124,91,97,105,100,103,116,106,105,112,95,106,107,84,109,105,103,101,96,109,115,98,108,111,107,101,96,104,98,112,103,83,96,97,108,107,105,110,105,100,103,113,110,106,96,102,109,99,95,118,117,79,99,98,99,103,89,112,109,98,104,95,111,107,99,117,103,97,106,88,98,100,106,103,92,107,107,105,102,98,105,105,109,104,95,92,99,115,104,121,97,107,97,116,107,95,112,102,103,113,98,94,126,100,105,103,98,83,98,103,115,102,106,113,109,110,102,98,103,112,99,94,101,99,84,103,91,100,123,106,104,125,110,109,106,108,103,102,105,113,103,105,105,105,99,100,117,97,109,102,101,95,108,98,88,103,108,100,104,93,104,101,108,97,104,95,99,103,103,101,102,96,94,93,84,106,114,112,107,115,101,124,109,112,94,99,112,100,114,105,100,95,115,104,109,93,129,104,97,96,97,110,105,100,91,101,121,103,105,118,99,106,128,97,95,104,94,93,81,106,101,102,92,109,125,94,96,93,107,104,103,118,102,98,96,95,95,115,93,106,103,111,113,97,110,109,113,89,110,97,102,106,113,90,111,111,98,98,108,109,103,99,112,97, +600.16852,106,100,102,102,112,115,110,102,96,108,106,103,109,99,109,108,99,98,101,105,105,114,94,99,114,99,106,112,98,103,98,111,98,111,98,101,103,99,96,112,101,124,106,111,101,108,114,99,97,119,108,106,100,97,102,107,103,102,109,104,103,109,91,93,101,111,94,96,106,111,97,110,105,98,104,107,102,111,113,112,113,102,114,112,117,106,97,102,104,103,110,104,92,124,103,98,100,110,105,110,109,104,100,100,99,105,104,123,105,113,102,106,101,108,94,112,102,99,95,106,97,96,115,106,112,107,108,96,105,109,106,110,106,103,108,101,100,94,113,101,109,109,104,97,97,102,105,105,104,98,95,95,103,100,105,103,94,107,113,123,94,107,110,102,104,103,103,95,104,104,102,115,87,99,111,112,112,108,109,110,114,97,88,100,114,79,102,91,113,110,104,111,110,109,101,106,90,95,101,114,93,104,99,118,105,108,98,108,101,110,110,114,90,99,103,99,103,103,114,103,102,118,84,104,114,98,108,108,99,121,103,86,103,104,111,109,113,102,99,104,88,112,105,63,96,97,100,103,115,107,117,104,98,98,103,110,98,102,108,110,108,99,103,103,100,98,99,91,112,109,103,92,122,103,110,90,95,97,100,99,102,97,109,112,111,101,94,89,142,104,104,115,110,111,101,109,106,112,103,103,102,110,115,109,100,120,96,109,102,119,98,114,100,112,107,94,119,98,110,105,111,100,98,102,115,104,104,99,112,106,92,97,109,103,92,89,94,94,93,109,100,106,113,88,89,114,111,101,110,112,77,101,103,113,104,97,109,103,106,109,99,116,101,102,99,100,91,126,98,99,111,111,132,104,106,92,115,101,95,114,102,98,109,107,98,109,102,106,118,96,122,105,105,111,96,92,95,106,105,103,118,101,114,102,102,100,105,101,112,104,110,103,105,103,93,107,101,109,110,96,94,107,94,110,105,86,98,109,83,95,114,87,101,97,103,100,109,115,109,102,119,90,103,102,94,112,99,106,103,114,103,120,116,109,104,94,117,113,114,110,112,105,95,104,103,129,108,109,134,97,108,107,108,103,96,96,115,115,110,102,105,113,102,107,109,105,99,99,101,99,110,105,111,116,107,99,101,114,102,108,120,107,92,95,112,101,72,100,98,116,113,122,110,107,121,114,100,101,91,96,102,100,111,104,102,102,110,94,109,113,108,107,102,127,108,124,101,102,113,113,103,108,99,102,102,106,99,108,113,106,116,113,107,108,104,89,100,99,115,110,118,99,113,105,111,104,111,101,98,104,111,105,108,105,98,104,102,100,118,102,108,104,114,89,105,99,113,97,109,106,104,105,92,109,104,105,95,109,109,105,107,99,102,102,109,108,100,101,97,110,105,97,108,108,98,100,96,102,99,98,105,111,106,116,108,113,109,94,112,104,90,93,105,116,91,114,101,100,112,88,107,112,110,113,107,99,105,101,107,113,108,86,98,102,116,114,103,117,80,100,109,101,110,114,99,106,117,93,104,99,110,100,100,99,108,110,94,96,95,105,100,103,114,105,109,99,105,118,101,110,112,111,104,111,103,100,105,107,101,100,96,102,89,96,109,101,100,103,91,104,83,101,102,90,100,109,98,107,116,107,114,118,115,93,100,103,95,103,118,109,112,88,72,117,95,99,113,105,75,94,101,107,102,93,93,116,104,114,103,102,102,102,105,112,105,98,98,87,121,98,99,110,101,109,89,89,118,92,99,107,109,111,108,103,97,118,104,115,97,105,106,107,109,109,104,107,113,119,92,117,105,126,104,107,113,108,105,103,98,104,119,99,100,106,98,109,108,110,101,103,108,95,94,106,107,100,107,114,105,99,103,113,112,100,114,101,108,104,99,103,100,98,110,100,92,110,107,109,117,123,98,102,112,102,101,103,107,108,89,84,98,106,100,78,101,93,110,113,105,106,101,102,103,106,110,99,110,121,102,110,124,114,110,108,108,110,119,107,99,95,119,104,111,102,107,109,95,104,85,103,102,106,112,116,100,96,90,107,103,112,108,114,107,96,104,95,101,112,105,118,96,119,101,103,94,101,100,113,94,115,108,101,100,97,97,115,102,104,111,126,101,114,98,97,99,113,101,104,111,101,104,102,106,104,106,112,105,99,98,108,104,100,100,104,99,91,111,116,98,103,99,87,98,105,103,105,110,107,106,121,104,113,114,95,104,106,108,105,104,97,108,101,103,100,109,105,109,101,133,99,96,100,113,104,102,94,112,90,107,101,94,95,108,123,111,100,91,108,98,107,108,118,109,115,111,103,104,113,100,110,113,113,106,94,108,111,104,107,105,108,107,110,113,94,82,99,99,120,125,141,129,133,118,153,163,126,142,158,115,142,128,131,135,136,120,110,110,106,117,101,107,116,101,120,112,121,110,88,102,107,95,109,100,110,103,114,99,110,91,99,107,102,104,104,105,109,109,99,105,107,95,97,96,97,105,99,107,99,107,104,95,95,138,108,95,116,106,106,109,105,104,114,92,117,100,93,114,101,106,102,103,115,108,101,113,99,93,112,113,100,113,106,103,104,101,105,101,111,109,99,107,98,93,106,104,111,113,100,111,102,116,98,103,106,104,112,115,101,112,109,107,88,100,94,115,109,99,101,110,102,96,93,91,103,100,96,111,110,120,118,108,100,107,95,102,106,109,99,104,94,90,98,110,97,93,110,103,96,98,94,104,106,103,121,106,105,98,106,111,104,103,103,105,111,102,95,110,96,108,98,114,111,101,111,97,102,99,99,97,97,99,87,96,111,116,108,111,106,110,97,106,98,104,95,106,105,116,114,102,115,94,98,98,94,126,97,106,112,109,99,107,104,105,113,96,102,105,110,107,101,109,102,116,114,107,103,94,99,88,104,105,93,95,105,102,122,104,93,108,100,110,101,115,97,100,113,116,100,109,112,118,105,111,112,108,104,102,109,105,102,94,96,127,95,115,113,96,100,104,117,128,106,102,104,121,95,92,96,105,74,103,78,97,108,116,113,96,103,102,109,100,117,114,99,103,101,109,106,122,113,99,89,114,114,101,104,101,103,98,107,88,117,107,102,104,107,108,117,113,103,111,102,108,113,109,84,101,99,99,103,107,110,96,107,104,91,100,97,108,94,108,103,108,99,115,106,108,108,109,100,118,105,116,103,104,109,108,105,94,103,116,106,105,110,102,106,98,110,106,109,111,111,103,110,92,101,117,100,112,110,109,102,112,113,104,95,100,102,111,118,109,100,110,97,99,102,104,106,98,101,101,102,119,110,99,113,112,89,95,102,107,105,96,99,91,94,100,106,104,99,108,118,102,107,106,108,110,120,95,121,105,104,106,117,94,117,104,101,89,100,94,100,102,118,109,104,113,96,107,100,99,103,95,107,103,102,117,99,121,115,98,92,105,112,106,104,102,117,107,91,104,106,118,99,106,112,98,98,98,97,109,105,95,101,106,113,101,102,111,88,91,115,103,112,104,103,95,94,101,104,109,99,105,117,117,108,104,116,103,103,104,103,105,102,98,100,103,108,110,127,111,101,113,100,109,98,99,99,100,104,104,98,112,99,108,110,106,90,112,95,112,97,98,100,98,104,104,99,111,110,102,107,105,109,103,117,107,103,106,108,100,93,106,101,114,102,101,107,107,91,112,109,103,115,124,94,101,103,94,95,98,105,103,99,103,98,97,80,109,98,116,108,113,95,107,109,97,104,94,97,106,97,95,106,99,105,108,91,109,102,112,104,102,102,105,104,107,100,105,104,97,100,104,114,73,103,86,115,102,103,111,104,102,107,100,115,115,116,96,111,100,111,104,106,109,107,115,92,92,104,111,99,105,121,99,117,97,108,100,102,104,101,91,114,102,100,90,107,114,117,102,111,101,110,104,99,105,99,110,114,105,90,111,109,109,108,113,112,107,113,102,104,96,109,102,110,96,106,109,110,102,104,97,102,97,96,109,99,107,108,100,93,108,102,109,98,104,116,108,100,113,99,99,103,103,106,96,109,108,106,109,106,92,99,112,104,106,109,106,104,96,99,108,107,103,109,98,116,102,107,99,116,109,102,103,114,110,107,103,110,88,107,107,120,110,102,99,91,104,109,106,121,105,97,102,99,118,102,102,99,112,105,106,113,98,110,99,133,95,106,108,98,105,104,109,98,99,120,102,105,106,108,106,102,101,100,109,95,101,102,103,104,103,107,106,103,107,99,106,106,80,92,114,101,104,108,97,106,108,117,106,102,118,110,119,91,120,99,111,98,109,101,110,102,104,95,79,103,112,106,119,103,102,112,108,112,105,120,97,99,98,111,117,120,105,103,109,106,105,103,102,104,109,103,102,106,102,109,109,99,101,122,106,102,104,114,109,95,102,104,95,103,107,107,107,104,96,113,91,89,121,101,105,103,97,107,103,100,111,110,102,111,94,109,97,103,116,103,109,99,101,96,63,102,98,102,112,113,102,95,104,113,115,91,107,111,106,100,106,95,93,109,102,104,122,98,94,112,89,110,98,90,98,88,109,107,88,108,95,105,98,109,108,106,103,111,109,102,96,102,109,92,106,100,98,109,110,99,107,111,96,104,103,109,113,108,97,106,122,96,108,103,110,103,94,81,109,97,88,108,99,104,110,99,106,88,90,99,94,103,102,109,115,104,99,102,100,94,103,106,106,99,109,112,113,107,99,90,99,103,96,107,96,113,103,96,74,94,103,106,106,114,109,103,108,112,78,105,95,120,103,112,94,106,108,108,117,98,103,114,94,100,96,86,109,107,95,106,126,114,106,108,84,102,104,105,111,126,109,91,105,103,124,96,97,102,104,112,109,108,99,92,100,113,96,114,107,92,95,96,113,96,106,107,113,108,88,104,108,99, +600.30951,115,115,96,86,95,108,98,104,97,117,77,97,104,94,109,99,117,102,94,105,114,93,102,104,107,113,111,94,102,118,95,104,109,104,108,110,99,96,109,102,106,98,104,100,100,111,84,105,95,103,120,91,103,98,82,118,97,102,105,99,86,109,106,102,101,114,97,102,93,96,98,103,104,92,100,103,101,98,101,104,93,106,106,107,110,89,104,105,94,104,99,105,101,105,104,93,102,100,102,101,101,107,106,94,101,103,96,100,101,103,97,94,96,90,96,78,100,108,112,98,103,95,108,108,91,108,107,102,102,109,109,109,101,106,119,106,98,101,104,104,88,103,118,98,106,90,95,112,103,104,107,103,117,104,96,101,103,107,112,100,97,105,103,93,110,104,94,101,109,109,94,107,100,105,109,112,105,97,109,99,105,112,89,114,83,96,95,106,105,103,94,99,100,109,97,108,106,116,104,106,93,94,95,106,106,101,107,98,103,104,92,106,102,109,93,101,117,113,100,93,98,107,97,96,97,94,112,102,106,104,92,70,98,105,108,100,102,101,109,70,96,100,100,103,98,100,108,94,112,109,110,111,79,93,99,89,102,96,110,107,101,106,101,95,102,104,104,108,99,110,91,105,107,99,115,106,102,104,108,105,98,112,90,102,107,98,108,108,115,94,106,103,130,101,111,118,109,102,103,100,99,108,112,101,107,101,113,100,103,113,91,107,90,94,98,98,100,106,99,97,112,90,100,109,95,92,132,108,113,106,78,117,102,110,106,117,106,98,83,102,93,105,104,89,112,107,102,94,96,100,104,98,97,105,107,101,102,105,124,98,106,91,95,98,114,94,100,107,95,98,101,106,100,91,108,102,96,100,102,111,112,104,93,99,107,102,99,95,103,107,114,102,111,105,99,106,111,117,95,109,106,97,116,109,97,100,112,106,109,98,94,93,104,107,115,109,107,94,110,107,100,105,97,102,111,87,99,102,113,108,96,105,110,101,98,96,110,105,87,110,103,103,90,98,101,99,101,92,91,103,108,107,99,103,103,101,107,104,104,112,98,98,93,108,99,105,108,91,91,106,96,102,102,76,96,95,101,101,128,100,93,106,109,103,107,104,98,105,101,103,105,109,95,104,94,96,101,112,108,99,109,105,107,101,94,117,90,102,99,112,113,95,91,114,109,86,84,94,96,86,102,111,108,109,117,103,121,103,107,99,102,81,104,107,104,110,108,100,110,108,103,101,112,96,113,100,103,114,104,106,94,103,98,97,97,106,106,103,107,108,98,121,112,109,80,114,103,101,108,101,95,94,98,83,112,103,106,99,120,100,108,104,106,88,95,111,103,109,99,92,102,105,102,87,96,83,109,110,113,95,106,111,102,96,97,110,91,107,99,106,111,104,90,107,113,110,98,108,98,101,97,98,104,94,104,114,108,96,106,84,104,97,106,117,103,99,108,92,109,86,103,116,113,109,102,100,108,101,105,108,105,97,103,90,104,97,111,110,104,104,116,101,103,109,84,98,99,95,118,108,115,99,108,102,96,101,101,114,91,98,108,87,108,102,97,95,114,92,88,102,108,99,102,99,103,96,117,95,97,96,106,95,101,112,100,113,103,91,97,104,111,105,84,105,99,94,97,103,105,95,107,99,118,92,93,100,110,111,102,106,97,92,102,103,79,118,104,116,113,76,69,105,103,102,102,97,113,115,103,99,113,105,128,102,99,98,91,98,109,104,102,103,90,96,106,102,93,110,106,97,109,104,100,101,108,100,105,92,95,93,104,113,119,109,95,98,97,101,97,108,100,99,110,103,100,105,98,108,109,98,100,99,106,115,108,104,91,106,99,92,104,100,98,92,116,77,115,104,102,105,87,102,101,96,102,98,105,104,105,103,99,97,111,97,97,109,117,100,106,106,89,94,103,102,98,95,97,107,101,99,101,99,100,100,99,113,104,125,90,101,99,73,95,99,101,101,99,96,105,106,92,108,115,105,101,109,107,100,91,118,108,103,105,111,117,103,90,100,108,111,98,106,101,103,97,95,116,87,108,93,94,103,97,110,102,101,97,97,95,105,108,106,113,99,104,109,116,100,102,89,90,106,111,113,102,110,104,102,106,99,103,101,103,108,113,117,87,77,101,120,98,108,102,96,118,98,92,97,80,101,98,106,114,99,110,84,107,105,90,97,105,101,116,100,105,101,96,94,106,107,88,114,105,105,101,95,104,112,87,120,90,114,98,96,105,95,93,102,117,93,99,110,105,96,108,82,103,117,97,96,97,116,96,89,120,100,100,98,103,107,93,116,94,104,101,102,103,95,99,101,113,99,110,97,99,99,104,101,101,96,113,104,100,99,112,108,106,128,105,129,139,147,133,130,125,124,141,142,123,120,130,135,115,120,109,104,108,105,111,106,100,109,99,98,108,101,100,103,93,113,94,110,96,99,104,92,92,104,105,98,89,100,102,108,114,98,102,105,103,108,94,103,112,92,99,113,106,107,109,102,97,99,100,99,106,107,103,112,114,106,100,111,101,108,94,95,103,113,93,133,113,98,104,134,109,90,102,103,95,106,99,115,105,113,102,108,103,113,111,107,94,99,93,111,109,109,105,100,98,95,104,115,123,115,99,107,111,108,113,107,106,96,109,94,88,99,110,117,114,79,105,108,92,109,109,106,113,109,110,97,94,101,105,111,112,106,118,110,119,112,104,99,105,107,113,108,113,96,113,109,107,105,113,104,100,105,116,111,106,107,106,113,102,98,102,113,100,110,112,112,110,109,93,98,116,102,95,104,95,101,103,109,113,96,109,103,114,107,116,111,108,105,107,99,104,104,107,104,117,112,100,101,104,119,95,112,98,103,99,107,109,101,98,112,104,96,110,110,95,110,110,106,108,112,115,97,105,100,100,103,111,112,109,115,108,108,105,104,109,111,98,104,85,106,109,101,104,93,107,110,98,106,97,102,101,106,110,110,100,113,102,99,107,93,110,114,110,99,117,112,123,99,109,108,105,96,116,102,108,104,109,103,112,110,107,115,107,110,106,114,109,108,113,84,108,106,104,109,105,111,110,104,102,110,96,104,119,93,95,105,111,104,91,111,111,92,107,108,94,104,104,110,113,102,97,106,94,95,114,97,95,93,104,114,100,100,95,101,103,79,94,105,109,103,102,95,103,98,108,110,100,106,95,96,104,108,115,103,103,96,95,137,111,122,105,107,106,100,107,106,100,108,104,104,106,109,114,98,110,102,113,101,110,85,106,102,104,106,109,92,108,109,112,115,103,99,116,110,103,106,96,92,118,107,100,96,115,100,105,99,113,109,101,106,108,105,91,95,112,113,96,104,95,92,97,98,108,122,104,110,103,99,110,108,101,98,105,99,118,107,101,117,100,116,96,106,106,92,108,104,112,96,112,105,103,118,117,103,108,105,100,98,107,105,92,120,91,106,102,107,104,106,101,101,103,89,104,101,101,102,106,107,90,96,109,90,110,109,115,89,108,102,98,108,117,97,103,112,93,109,115,110,116,113,108,112,110,124,105,107,95,119,101,98,123,115,100,100,102,105,115,106,105,102,109,108,99,98,106,94,110,109,111,99,91,110,87,97,109,117,104,117,100,85,97,102,102,111,112,98,88,109,121,105,90,95,113,103,99,103,104,108,100,112,93,103,75,98,105,110,104,115,105,110,105,109,107,100,120,96,107,108,106,105,99,107,109,107,95,113,104,99,100,101,119,103,117,109,99,104,75,100,107,97,100,110,102,109,103,109,102,98,90,105,100,120,99,88,109,120,92,108,112,113,99,94,105,105,107,123,104,112,114,81,111,103,105,104,98,111,99,103,111,114,91,95,113,110,99,113,101,108,109,111,94,110,108,105,98,110,101,99,74,105,90,98,94,98,119,105,96,99,100,113,103,103,91,95,107,108,103,98,109,110,108,85,109,106,98,101,100,109,96,119,97,103,104,93,116,109,102,105,109,87,109,105,109,99,115,112,112,89,110,94,117,100,100,103,98,102,100,99,100,96,111,108,101,101,105,106,110,98,90,99,103,113,92,108,110,105,103,95,102,109,95,109,105,103,103,109,108,110,106,104,100,111,112,107,102,100,68,100,108,101,102,92,94,103,111,119,103,95,100,101,106,107,105,105,108,99,99,101,90,98,108,97,107,97,102,102,99,103,92,96,113,103,110,101,107,107,104,106,109,115,108,103,108,104,92,105,111,95,108,103,97,108,121,102,105,100,96,94,79,110,101,99,86,102,96,97,103,106,102,95,109,100,113,99,91,108,121,96,97,100,109,101,108,96,143,101,106,111,103,98,107,95,107,101,105,108,107,105,111,95,110,100,113,102,98,98,105,100,98,110,121,92,105,95,90,100,98,108,93,91,101,102,115,116,103,102,113,98,104,104,89,99,105,99,105,106,112,120,103,95,92,99,88,107,104,109,107,113,104,103,99,105,106,98,107,105,98,100,100,101,98,95,96,115,108,102,99,104,108,109,106,113,96,108,103,103,93,104,103,103,100,94,93,114,101,132,112,92,105,107,105,101,97,94,106,108,105,104,95,94,97,102,100,104,96,112,104,104,92,97,109,106,110,101,104,105,111,91,100,105,101,106,109,107,109,119,97,98,104,106,89,98,95,96,106,91,106,100,107,117,110,99,110,100,99,104,103,104,100,109,104,111,102,102,91,99,101,110,115,96,109,106,100,105,104,95,101,107,87,114,111,100,98,104,104,103,89,130,107,105,107,102,103,125,104,98,96,104,106,120,108,81,103,99,96,93,100,90,90,103,92,99,88,95,113,100,103,110,99,99,101,88,104,93,106,98,109,103,97,108,96,91,94,86,105,103,110,94,120,104,103,95,117,103,108,93,104,89,95,95,114,109,105,108,95,105, +600.45056,113,107,115,94,92,111,98,108,83,104,78,112,116,115,106,109,104,120,97,103,117,111,101,86,102,108,78,102,118,113,94,96,101,91,112,95,100,98,101,102,99,105,98,90,110,103,103,107,101,102,100,101,107,119,95,108,104,101,105,91,100,110,128,119,110,113,115,93,106,108,101,93,95,104,103,104,103,113,72,92,112,86,110,95,100,90,103,90,108,100,114,106,106,88,107,97,104,118,93,110,111,97,89,107,109,87,98,79,100,66,108,101,107,102,103,107,102,109,109,99,104,103,102,102,103,115,118,102,98,115,94,108,125,105,108,104,106,117,104,102,95,82,104,101,97,99,115,107,95,109,104,99,100,95,107,105,100,104,106,98,89,112,102,98,101,93,113,98,115,104,113,108,110,100,112,109,103,102,99,101,102,92,108,110,108,104,90,93,96,105,113,88,105,103,91,103,106,102,96,121,105,94,99,134,105,94,118,105,108,107,96,97,117,108,104,84,98,118,107,107,104,104,115,95,110,104,104,111,107,116,95,108,108,107,105,105,99,106,109,111,95,113,97,110,102,91,116,102,104,108,110,105,104,96,113,113,100,88,97,108,96,109,106,111,91,103,110,110,90,92,106,99,95,98,110,116,104,104,105,111,96,102,112,107,110,93,95,106,95,109,104,107,113,109,107,109,98,102,103,118,102,101,102,112,93,105,98,105,103,111,92,117,97,101,102,96,104,116,106,99,79,104,105,103,111,95,103,98,103,112,97,103,96,110,99,102,101,94,99,99,100,94,102,100,105,103,90,107,106,103,138,100,95,108,113,112,96,115,114,102,102,89,110,68,99,113,104,114,103,106,106,96,107,104,128,117,109,110,108,104,110,110,110,108,100,99,109,107,101,103,114,95,102,119,104,113,111,105,101,103,109,113,99,120,109,105,112,95,94,113,106,93,104,94,97,91,105,94,100,103,104,86,91,113,106,107,107,106,111,115,80,114,95,99,112,102,88,115,103,101,115,105,115,102,101,92,96,98,97,108,106,119,101,105,101,103,103,104,106,100,98,109,107,111,101,112,100,101,107,101,114,105,106,94,103,100,108,114,103,99,104,104,109,111,117,104,110,108,108,104,113,104,110,116,102,98,94,105,111,90,103,95,104,112,100,109,101,101,103,109,103,87,105,107,98,105,95,107,93,107,108,109,111,109,102,106,102,98,114,98,97,105,101,100,91,105,109,102,129,108,100,103,102,99,94,109,105,96,97,97,113,104,96,97,98,104,102,95,103,103,99,100,104,101,113,98,117,110,111,83,106,108,99,96,98,109,96,115,111,99,117,109,93,98,110,100,121,107,113,98,134,110,103,104,110,105,97,109,103,106,101,109,118,111,102,124,90,98,96,103,107,112,101,107,121,105,95,102,100,99,100,100,104,90,120,101,110,102,82,103,109,107,92,109,98,102,97,96,99,118,99,109,104,103,97,99,101,101,116,112,114,110,104,111,100,108,113,104,114,107,115,109,105,108,80,91,106,102,105,119,116,111,113,98,86,102,108,103,114,109,102,101,111,100,111,90,108,100,114,109,100,98,98,106,114,96,95,125,98,115,108,106,112,95,101,93,109,101,124,111,109,106,108,128,108,111,82,115,96,103,100,99,105,104,98,102,104,105,114,96,106,104,104,104,102,97,99,104,105,97,105,105,100,98,103,110,113,109,79,104,118,105,108,102,103,100,95,102,100,117,103,118,105,106,99,105,102,105,102,90,106,109,106,92,92,104,106,113,107,91,100,115,97,95,105,107,104,109,103,102,82,95,100,103,102,94,112,129,112,89,117,113,105,111,102,105,107,107,108,100,108,105,92,127,109,101,106,105,109,95,113,100,107,121,111,120,105,113,107,99,104,97,116,112,92,108,106,108,106,109,107,104,113,101,100,98,108,104,104,103,99,98,97,106,90,99,108,103,99,102,112,110,102,110,96,98,110,100,104,100,99,101,109,104,94,101,113,98,101,99,95,90,92,102,105,107,99,98,113,108,103,105,109,109,107,105,94,107,103,101,102,102,109,96,108,105,88,110,102,112,97,99,108,100,100,98,96,103,105,98,99,105,82,111,100,106,105,91,102,98,105,112,106,112,110,98,91,118,109,105,105,110,103,119,104,95,108,109,102,95,105,116,96,104,112,108,127,96,112,102,106,106,106,95,109,112,107,91,101,108,109,101,102,101,124,113,117,101,111,103,97,111,109,106,99,100,105,95,102,97,104,93,106,105,114,103,100,105,102,100,106,123,95,100,112,95,108,107,92,119,115,104,116,97,104,95,102,97,103,103,106,106,115,113,108,101,124,99,106,104,110,103,106,115,105,107,109,140,134,117,126,130,122,131,109,133,155,115,156,132,115,125,136,124,110,105,114,109,126,98,98,103,86,111,98,101,88,113,109,111,106,112,107,93,100,119,113,107,111,106,102,64,105,97,110,113,102,110,110,98,120,91,90,90,104,101,104,97,106,112,100,101,101,106,112,105,108,91,109,98,113,102,102,94,98,95,104,108,101,100,104,100,98,91,104,97,106,98,102,95,103,103,117,102,101,113,117,101,131,85,91,104,98,112,99,87,114,89,110,92,105,97,119,107,116,102,110,102,106,109,102,92,108,99,101,81,102,96,98,94,92,96,97,104,105,90,112,117,110,101,107,102,115,112,99,103,111,94,107,117,99,108,99,105,104,104,103,102,102,125,105,110,109,109,109,76,104,110,98,108,117,112,106,102,94,109,100,104,103,103,99,100,94,106,96,101,95,118,109,96,106,100,97,107,109,95,113,100,96,117,113,98,101,103,101,109,104,115,98,115,140,109,102,114,98,106,109,106,97,112,103,108,103,111,105,103,107,99,98,101,102,108,112,106,101,96,102,107,99,102,103,112,108,108,99,100,96,90,99,132,94,91,100,93,100,102,87,98,112,110,116,104,87,106,100,94,111,100,106,91,98,109,96,91,101,102,98,105,108,100,101,108,101,105,95,102,109,101,91,109,104,103,80,106,104,100,106,101,92,95,104,110,115,113,87,109,114,110,113,108,110,87,117,104,88,92,95,101,98,93,99,105,119,100,119,92,107,98,108,97,103,116,103,100,103,92,111,98,101,96,95,116,114,98,104,95,106,105,107,99,102,109,108,106,103,108,103,101,109,103,106,104,102,92,108,111,103,104,134,118,107,104,102,111,100,105,113,100,101,106,116,97,98,80,100,105,113,103,121,99,92,115,106,100,103,107,93,108,101,101,101,92,105,120,108,101,99,104,109,106,94,93,105,105,102,111,110,102,109,105,97,102,102,97,102,97,108,96,103,101,106,112,110,98,114,96,105,99,105,109,102,99,98,102,111,110,107,96,104,106,111,106,100,98,100,103,92,106,108,99,102,93,108,107,78,104,104,108,99,117,95,101,101,101,99,115,93,97,100,88,100,117,109,112,96,109,96,104,101,91,103,104,110,99,102,99,109,96,126,98,107,111,101,102,103,105,92,99,100,103,98,95,102,111,112,105,87,118,113,99,107,101,107,92,110,112,105,94,95,105,98,88,97,95,101,99,98,107,93,103,104,93,105,100,98,101,109,97,105,111,96,95,96,109,99,104,100,101,115,104,104,105,117,103,97,108,110,91,90,108,106,95,89,102,96,102,103,112,121,100,100,118,95,105,100,102,112,108,108,123,113,116,106,117,116,101,118,116,101,104,103,93,100,101,118,104,105,109,97,98,95,103,108,99,108,105,103,138,104,113,109,113,103,101,115,107,101,102,109,100,106,96,100,99,115,107,102,103,102,100,105,108,108,93,92,99,103,100,102,109,113,104,106,106,101,110,100,97,106,80,94,107,118,107,110,101,99,110,103,104,105,96,101,106,94,101,92,100,108,96,102,96,102,101,109,109,105,104,100,98,108,110,100,96,101,112,104,103,104,96,108,81,115,98,105,106,105,98,84,107,104,110,98,81,108,102,95,105,103,104,104,107,108,120,103,97,102,97,106,103,117,92,106,101,101,113,112,99,112,90,104,103,101,102,116,104,97,94,115,99,102,114,96,117,95,100,105,105,97,102,97,111,104,103,102,111,108,102,104,98,102,107,95,103,113,105,100,116,93,106,113,106,101,108,109,103,103,101,102,116,107,97,88,101,96,78,107,93,103,99,102,96,104,103,105,105,102,108,107,96,109,103,92,100,100,92,98,78,105,98,105,119,102,102,105,99,105,105,95,116,117,97,108,116,116,96,104,95,104,110,95,111,102,120,106,101,106,94,95,111,99,98,98,100,99,105,109,106,98,115,100,114,106,107,105,103,104,105,107,98,104,100,112,89,105,109,121,103,108,117,91,84,104,97,97,93,99,98,114,108,113,95,106,99,105,103,108,94,102,108,96,98,100,108,99,98,93,103,112,100,121,103,110,104,104,102,95,100,71,106,95,117,107,101,106,99,104,94,103,101,95,92,113,100,99,89,107,102,99,121,87,98,94,102,110,113,102,109,101,101,84,95,111,96,109,98,109,104,109,106,99,106,99,99,111,94,104,108,112,113,92,122,111,101,98,106,99,94,95,95,107,86,100,107,102,104,110,106,101,111,121,102,106,103,112,97,104,107,96,90,93,97,102,100,109,95,111,100,98,93,87,101,116,91,98,97,102,101,108,112,93,116,105,103,106,107,98,103,102,75,104,105,115,115,100,95,102,97,108,76,111,102,110,102,108,115,101,92,110,100,106,91,102,110,109,109,83,106,105,108,102,98,140,106,104,100,110,95,107,100,106,102,106,108,111,101,87,100,91,94,70,98,91,83,104,91,92,106,105,109,120,107,98,122,107,99,92,94,87,106,94,95,105,100,98,91,89,105,117,97,123,80,93,107,112,113,105,105,104,97, +600.59161,100,102,106,92,101,117,95,94,95,103,102,83,109,92,80,96,96,104,105,88,86,114,91,104,97,106,104,100,97,101,103,107,99,115,95,90,109,95,93,109,98,93,111,105,103,113,98,117,97,105,106,99,99,102,103,104,95,94,108,98,91,99,92,102,110,118,98,102,97,105,110,110,106,105,87,112,71,102,101,109,104,100,114,94,80,84,95,102,102,102,114,105,98,107,104,97,122,119,102,94,101,105,97,100,110,113,116,100,100,103,106,107,99,101,103,108,96,105,112,94,95,100,76,124,103,109,106,104,98,104,101,103,105,98,109,104,106,104,108,101,98,84,99,91,105,103,112,113,105,101,94,112,105,95,96,95,99,104,103,105,107,99,126,96,116,95,96,101,105,99,97,95,104,102,100,102,101,95,106,105,97,113,94,97,115,96,102,101,103,108,88,101,100,113,101,108,111,87,97,109,104,102,114,108,105,108,91,92,97,101,99,88,95,109,103,104,100,115,103,109,88,113,112,99,106,101,90,110,105,100,108,109,117,104,107,94,102,119,99,95,95,101,100,97,119,101,101,105,100,98,108,102,97,104,104,106,109,90,96,115,97,95,87,106,101,95,117,107,100,99,114,95,105,102,105,109,104,112,98,107,112,109,109,101,101,105,105,111,97,108,108,106,100,96,113,112,104,110,98,104,104,100,103,106,101,91,100,107,107,104,107,90,116,101,110,98,104,109,101,108,111,97,105,95,101,97,101,97,114,116,114,110,108,105,109,107,107,90,88,101,95,102,94,102,103,113,104,121,102,96,111,105,100,111,97,97,112,100,103,103,108,86,105,108,95,99,94,111,99,107,117,85,109,94,100,108,99,96,109,101,124,109,110,106,109,106,108,95,115,95,118,95,99,111,111,96,98,114,120,93,107,96,97,96,85,107,109,108,103,103,120,92,113,84,131,91,101,102,94,102,103,98,93,103,96,103,103,103,104,100,103,106,104,100,101,94,93,100,98,101,115,95,106,96,94,100,97,96,107,99,101,94,102,119,102,100,109,115,103,101,101,99,100,119,117,117,103,99,103,81,102,100,105,98,100,90,101,115,111,100,106,104,114,109,107,99,104,105,103,94,98,102,94,103,95,98,118,130,111,112,104,98,94,89,96,98,83,97,100,104,115,110,98,110,91,103,101,100,108,98,112,105,109,91,94,107,116,104,102,109,97,114,90,102,97,110,102,96,126,108,106,103,112,108,109,107,103,99,95,113,99,109,107,116,110,99,104,122,102,102,116,105,106,101,103,100,102,105,108,95,95,103,99,105,107,105,102,99,98,104,104,110,102,108,114,93,91,107,107,95,105,107,99,111,112,105,110,103,104,103,103,110,108,89,106,101,85,109,105,82,104,103,104,96,111,111,115,104,99,114,106,109,103,108,104,104,106,107,109,107,82,101,104,101,104,100,101,101,105,93,110,104,103,101,99,99,120,111,101,98,106,103,107,93,94,110,108,96,86,106,116,107,116,104,96,80,107,100,117,110,102,99,109,85,102,114,100,96,102,105,106,109,109,101,128,103,99,100,109,112,106,100,102,105,92,103,95,91,106,96,83,111,95,92,92,101,101,94,106,99,101,102,108,112,100,101,101,121,105,74,101,103,105,108,98,110,79,112,107,108,103,100,117,109,108,109,101,95,111,95,107,100,107,109,101,88,104,112,108,99,109,109,98,109,106,87,94,115,117,99,98,117,109,102,110,103,95,95,102,88,112,111,105,107,121,81,105,107,95,107,109,105,121,107,105,101,109,108,113,100,105,115,99,122,107,106,102,101,101,106,105,103,95,116,103,94,113,106,99,90,107,100,105,101,126,105,103,88,126,106,113,91,98,97,114,117,101,110,99,114,105,99,111,109,95,106,94,99,99,113,98,105,101,101,104,109,101,99,109,105,100,83,100,103,94,115,106,105,99,88,91,104,106,108,93,92,95,111,104,98,105,98,109,113,119,91,108,96,106,101,113,110,113,111,111,106,109,106,96,104,105,103,102,112,100,100,106,105,110,103,108,103,99,120,109,94,96,92,107,110,111,104,109,107,106,102,105,107,104,104,104,115,102,104,116,104,101,108,102,105,98,81,103,103,106,104,107,102,101,91,100,111,92,117,101,77,122,113,100,95,106,101,104,115,102,100,105,73,100,117,101,99,124,86,103,108,100,98,109,91,97,120,96,108,100,116,108,108,113,105,104,105,103,110,95,87,106,79,112,100,99,116,99,103,99,104,101,99,100,116,98,107,90,104,109,120,101,108,87,112,83,97,113,105,102,104,101,98,112,100,114,123,102,107,103,102,111,107,92,102,108,119,113,103,108,102,117,117,120,132,120,126,120,128,122,134,137,130,141,144,147,113,119,130,114,118,103,101,113,114,98,105,111,102,97,97,102,105,103,94,104,106,103,103,107,106,114,112,105,96,101,109,91,116,104,98,105,91,113,107,109,115,106,104,100,112,106,95,109,106,102,108,100,114,103,104,113,99,109,97,112,121,106,98,93,106,124,103,95,101,101,104,111,96,115,108,102,106,115,97,103,116,117,97,103,106,102,106,95,98,105,101,104,98,103,113,110,106,103,108,104,99,103,102,91,105,123,104,96,119,97,95,106,103,105,102,109,100,110,104,100,106,102,110,112,94,103,104,105,102,101,108,95,118,113,111,115,109,102,102,88,105,102,112,105,126,111,99,99,102,104,121,97,91,106,102,104,104,104,115,107,105,105,102,116,108,100,107,111,98,101,116,99,109,102,113,103,112,108,112,95,99,80,115,100,86,113,96,99,118,107,101,99,89,104,109,102,102,110,105,110,92,98,113,106,100,113,103,91,111,100,104,99,98,109,110,94,104,105,112,97,92,87,100,98,96,106,96,92,110,96,108,112,117,103,94,101,99,88,116,103,105,100,108,108,103,102,114,92,113,108,105,73,112,99,124,96,101,102,107,102,101,104,99,114,109,115,106,100,76,114,123,98,107,78,109,108,98,103,94,105,117,103,104,90,91,114,112,106,95,98,101,108,111,104,109,98,73,103,109,113,108,102,107,108,109,88,110,102,99,107,112,111,96,99,100,100,108,97,93,103,94,107,113,107,96,101,100,91,104,102,98,100,117,103,94,99,90,108,98,110,98,108,103,109,108,103,99,109,103,120,107,102,96,91,103,107,87,105,117,88,111,112,111,113,93,104,87,101,108,100,100,93,105,105,90,101,97,113,104,106,102,113,116,100,100,99,106,104,107,116,95,100,98,113,114,80,107,113,104,102,101,116,109,117,114,102,107,105,108,102,103,95,99,102,105,109,101,107,101,96,99,110,94,98,105,101,102,96,104,89,107,112,91,109,112,99,95,116,105,111,104,112,90,97,109,116,102,100,105,108,94,101,114,85,113,96,107,93,103,103,104,95,99,104,107,107,112,98,113,103,104,91,99,110,109,109,103,116,93,104,135,106,121,98,95,107,105,107,108,112,100,91,110,119,99,109,107,97,107,109,102,94,109,91,116,113,111,100,94,108,112,100,103,113,111,108,120,98,106,112,103,106,100,98,105,106,106,105,100,123,93,89,104,111,105,102,94,108,104,116,111,99,104,101,94,96,110,106,101,94,99,117,113,104,115,104,109,99,103,104,97,102,102,98,96,102,113,113,101,102,79,101,110,105,107,100,111,95,97,120,102,110,101,104,104,102,93,104,97,88,113,88,99,108,106,99,112,112,100,115,107,94,103,101,97,103,121,106,109,101,99,95,113,103,100,100,91,105,108,108,101,82,115,99,109,98,105,103,111,123,102,108,108,102,113,103,106,113,99,105,93,102,92,109,104,108,110,97,118,97,91,108,98,106,112,115,106,107,109,98,110,91,101,100,80,108,105,100,106,99,100,92,98,96,97,101,101,88,102,96,108,106,103,100,102,110,72,117,121,114,110,97,102,115,102,100,106,90,99,106,101,99,107,100,96,106,99,105,87,97,109,107,100,101,103,110,92,97,107,100,90,96,106,93,95,109,102,103,102,97,101,98,87,107,101,104,95,79,97,97,104,96,100,113,100,111,108,99,96,103,95,96,107,107,111,91,107,95,117,69,97,113,101,101,107,107,89,107,107,109,100,109,101,95,103,99,116,117,106,119,106,95,99,106,108,119,99,105,97,94,97,102,113,116,108,104,113,117,95,91,100,93,104,105,105,89,104,99,117,106,90,116,98,99,103,98,95,96,95,105,102,99,89,97,99,104,103,106,114,106,88,104,113,102,105,107,110,102,96,111,112,99,97,100,106,105,102,103,110,109,113,98,128,105,100,103,110,92,94,102,106,84,113,108,95,109,111,112,97,85,104,108,113,108,110,103,107,99,105,106,103,105,113,106,105,111,112,108,100,109,103,113,106,102,125,83,109,114,105,103,97,118,99,69,104,100,100,96,108,99,103,103,93,112,101,110,98,128,99,85,100,102,103,108,103,98,94,95,101,102,92,93,107,88,101,112,108,105,95,107,94,92,112,100,110,106,108,94,108,102,100,98,113,108,115,100,109,112,96,102,88,102,97,105,108,98,97,93,103,113,97,102,108,107,110,98,119,99,123,88,98,101,97,100,103,105,103,109,96,102,114,110,92,105,100,98,96,95,106,98,109,101,102,101,114,101,105,107,102,96,85,107,101,102,102,111,111,89,113,105,93,105,96,106,92,94,101,93,101,103,101,98,101,111,83,97,108,90,102,109,101,102,106,108,104,95,96,93,87,98,107,97,110,111,98,102,107,121,105,107,100,108,99,108,106,99,104,109,106,99,114,84,104,109,110,107,100,102,110,96,99,101,93,101,113,96,103,116,84,104,93,116,85,90,103,71,96,95,89,97,105,101,112,101,117,89,110,128,104, +600.7326,88,104,100,106,98,96,103,89,100,106,90,106,114,92,102,108,105,93,107,104,96,104,104,98,95,103,114,102,99,100,111,106,100,105,109,100,110,99,116,109,99,87,102,97,101,109,104,120,116,129,101,96,97,97,100,111,82,104,100,100,90,105,109,97,99,104,108,111,106,110,97,109,104,94,124,93,97,105,102,103,107,95,106,112,102,95,104,102,103,89,106,129,98,102,103,91,99,102,96,103,112,100,108,93,101,103,98,108,109,113,95,91,92,113,104,111,98,109,106,95,94,95,113,110,113,104,110,102,102,100,99,106,108,124,102,101,98,124,97,103,104,109,98,104,108,100,124,105,116,95,97,108,98,100,108,100,86,94,107,95,108,102,106,102,100,95,104,101,113,102,97,102,110,105,95,109,101,109,111,100,105,106,97,101,106,99,98,84,78,99,92,114,104,120,96,104,105,110,94,117,104,94,108,98,96,94,113,112,102,103,94,109,108,102,118,91,103,109,96,100,105,98,105,108,110,106,113,100,104,113,95,110,95,95,104,116,103,105,109,105,108,113,104,106,95,101,90,99,101,101,103,100,106,109,105,108,106,105,97,106,98,107,109,91,112,100,97,101,110,102,103,97,109,106,89,105,95,105,100,88,105,111,94,101,101,107,100,103,104,108,91,104,109,100,108,101,118,114,103,98,102,97,103,97,103,100,98,107,113,107,110,113,107,99,106,113,105,102,105,91,100,102,108,125,108,105,108,95,111,105,113,100,74,99,104,71,100,102,96,104,86,94,94,103,112,108,106,109,106,104,115,102,103,106,104,114,101,111,109,123,98,96,109,107,101,99,106,110,96,103,109,122,97,105,111,97,99,94,102,110,110,111,98,117,90,107,104,101,101,92,115,93,91,108,90,108,99,96,105,108,95,89,104,107,91,96,102,120,101,97,102,97,102,94,104,97,100,90,97,104,114,98,109,83,98,112,96,91,112,112,106,114,103,100,98,86,110,103,99,115,91,96,100,102,100,62,98,90,104,111,95,89,121,107,104,100,109,106,105,102,103,100,107,124,96,94,103,112,101,104,106,112,99,98,99,113,106,95,116,100,95,105,109,93,104,98,115,94,102,105,100,105,98,98,97,106,106,103,96,90,111,99,101,94,105,109,100,103,107,109,104,107,100,103,105,112,105,95,99,111,97,97,108,103,102,115,114,114,98,101,107,100,101,113,113,108,103,82,109,107,115,105,107,91,114,95,100,106,104,113,96,122,94,109,98,107,110,104,95,96,111,102,111,91,101,94,112,99,108,92,103,102,108,110,99,108,113,99,100,108,76,105,103,102,98,98,108,104,121,95,107,107,97,105,114,100,117,104,108,105,113,93,106,108,106,94,103,115,118,108,119,110,104,99,112,95,121,98,106,107,113,98,127,106,115,109,110,105,107,96,109,101,105,101,98,98,107,90,112,105,116,100,103,113,99,109,101,103,105,99,98,113,118,113,109,107,105,115,102,100,120,111,107,97,105,108,97,94,107,105,111,109,107,106,98,111,95,100,103,107,102,92,93,90,99,105,102,101,105,104,105,98,98,101,103,102,100,101,114,92,105,97,99,96,100,100,112,121,107,104,95,118,110,99,102,101,109,131,110,99,94,109,112,105,94,110,114,88,105,99,106,105,94,111,98,115,100,98,112,105,100,107,94,103,100,106,108,109,111,114,117,96,101,111,113,106,96,107,114,103,96,87,92,102,103,103,97,115,110,98,110,112,115,93,109,98,110,99,96,93,114,100,115,85,100,109,110,105,96,95,103,112,114,112,119,106,99,115,107,95,100,108,97,107,105,105,105,103,98,105,113,104,110,105,109,91,99,112,111,95,99,106,103,101,92,111,105,108,100,95,102,104,106,118,102,105,94,87,115,120,103,102,113,108,93,87,102,114,106,103,103,101,101,95,98,120,107,105,112,98,94,138,106,90,110,102,103,102,77,107,116,105,104,106,113,101,101,110,121,109,104,98,98,109,92,107,100,114,108,103,120,108,109,109,107,117,98,108,103,112,90,109,92,105,99,96,91,106,103,99,100,119,106,106,113,110,106,108,68,98,104,96,109,109,113,105,103,95,114,95,104,102,99,110,91,98,99,106,107,111,104,98,92,108,86,100,99,99,102,101,113,107,111,106,117,97,108,118,97,103,95,101,114,99,111,102,100,104,116,78,104,109,106,96,104,104,113,104,100,100,104,100,103,110,92,106,105,101,94,112,83,100,99,95,107,91,98,104,90,117,114,97,112,95,106,103,102,104,98,118,97,110,98,95,105,99,99,100,108,96,106,117,108,93,110,101,106,101,130,115,114,112,109,107,101,99,116,123,130,123,118,102,122,119,120,125,113,123,114,136,131,136,115,105,94,116,111,116,104,98,98,101,115,112,111,99,95,99,123,97,103,109,105,96,106,108,109,99,100,107,97,109,98,104,110,102,106,98,115,124,95,115,113,83,97,108,102,101,98,108,102,99,111,102,114,108,98,75,105,99,100,126,121,101,102,103,102,102,89,98,106,109,109,138,102,104,109,106,105,97,96,115,106,95,95,113,110,116,111,110,112,94,98,108,103,96,110,91,103,102,105,96,110,109,111,97,111,98,106,109,118,94,114,100,108,102,117,102,110,105,105,101,142,110,101,93,91,116,115,115,109,106,97,103,108,107,108,109,109,98,107,99,122,104,99,118,119,98,106,105,107,106,98,116,112,101,99,99,98,106,105,106,107,106,91,108,97,99,108,109,111,102,99,105,114,101,104,103,100,105,110,94,103,103,90,100,98,95,105,119,101,95,103,113,104,97,125,101,110,108,101,102,113,103,106,110,78,113,88,99,101,85,100,108,101,108,113,104,118,69,102,110,102,111,100,101,106,100,99,110,111,115,107,99,103,109,85,93,100,111,91,102,110,102,94,113,107,102,100,106,99,103,100,114,102,97,113,99,106,88,102,99,102,84,97,110,102,96,91,86,120,114,112,112,112,105,119,107,103,116,99,96,101,107,105,113,104,107,101,107,102,102,109,89,106,93,99,90,105,111,106,106,105,103,101,114,100,111,98,126,104,120,105,99,110,93,105,121,98,111,111,84,101,108,103,105,101,113,92,106,107,100,103,121,113,99,105,100,97,112,106,105,77,99,108,117,100,108,105,109,107,102,95,106,113,105,108,111,107,91,82,99,98,109,106,103,116,110,93,94,118,108,91,100,109,103,100,109,109,100,113,101,101,128,103,96,96,103,96,88,112,98,108,104,87,104,105,110,113,113,98,103,103,104,115,117,107,103,104,96,103,99,95,99,99,103,110,106,108,115,102,102,106,79,104,105,104,103,100,97,98,108,103,106,104,103,108,113,94,103,109,113,117,116,95,107,105,98,103,103,99,114,110,101,100,110,102,106,109,105,93,101,99,103,104,101,99,103,101,104,102,108,101,106,101,109,94,103,108,96,116,95,95,92,103,92,125,110,104,94,119,116,100,106,115,104,108,108,102,96,98,118,109,116,106,100,96,103,113,108,109,105,105,104,117,114,92,99,104,107,118,105,111,111,104,103,98,100,97,101,80,104,103,113,102,96,108,103,92,93,101,115,93,104,93,110,107,119,112,102,102,104,109,108,100,110,92,104,104,115,98,104,104,103,109,98,119,99,116,94,113,122,108,112,95,114,111,106,115,90,93,96,103,101,112,108,107,111,103,98,120,99,98,103,108,99,108,109,107,98,104,108,95,116,106,109,119,119,105,109,90,109,100,116,112,97,101,106,108,106,107,102,110,104,113,101,113,112,120,113,124,99,106,104,109,107,107,95,105,117,98,113,101,102,97,95,102,93,95,105,110,109,98,112,102,97,107,98,104,111,109,117,104,110,102,103,105,91,87,106,117,105,102,96,108,113,99,98,98,99,110,102,113,94,92,103,102,112,99,106,111,106,101,98,105,113,100,105,108,97,103,119,99,106,110,118,103,101,103,107,110,104,95,103,100,92,95,107,119,107,109,101,113,96,104,109,111,104,117,93,103,101,108,99,107,109,119,112,105,126,91,106,122,91,111,110,113,103,99,91,99,116,110,103,107,108,92,113,95,106,102,103,100,115,98,113,102,104,93,106,108,113,103,99,108,99,112,103,113,107,116,97,85,65,113,92,101,107,100,96,103,113,107,103,108,108,113,110,104,110,109,107,109,105,106,108,101,105,104,109,104,106,106,102,117,122,107,108,115,100,105,108,110,111,95,110,109,104,105,103,100,101,102,103,95,104,103,99,112,112,104,106,105,110,103,100,101,91,105,117,91,115,106,105,123,105,102,96,108,106,113,99,107,91,97,108,109,100,111,104,95,120,106,111,108,107,96,95,118,110,101,112,107,119,88,111,110,98,106,103,94,101,106,111,104,106,111,112,114,90,109,100,106,88,117,102,107,90,106,99,107,116,100,100,106,80,99,94,104,107,110,109,105,103,112,98,90,99,97,101,87,98,101,110,100,104,95,108,111,108,88,99,97,109,93,106,104,117,96,113,103,99,112,112,113,105,106,106,115,101,97,103,101,103,99,99,96,102,87,95,108,98,99,105,116,95,95,103,91,101,101,109,96,101,81,104,129,104,114,94,102,103,115,87,109,108,108,94,122,107,114,91,111,108,106,104,91,99,99,103,95,95,105,105,109,94,109,104,99,90,117,116,109,112,99,84,106,112,102,112,104,95,94,103,122,90,101,101,111,90,113,110,103,95,108,101,114,117,104,102,102,105,101,103,105,94,94,104,108,98,92,109,110,109,109,108,108,99,88,106,111,98,93,91,113,91,102,106,108,104,103,98,99,107,105,97,98,97,102,109,102,105,108,98,108,73,103,97,93,93,98,104,115,93,107,105,108,82,103,104, +600.87366,100,120,100,90,106,119,110,109,103,97,106,93,100,107,104,97,100,86,98,102,106,109,105,99,102,103,99,100,109,111,100,100,100,108,102,109,93,112,106,108,111,100,108,102,105,112,104,102,91,100,102,80,116,103,99,98,111,96,108,106,108,100,109,109,106,113,101,125,98,110,117,117,103,108,98,119,91,107,101,105,105,89,104,108,112,102,104,102,102,96,93,109,97,105,104,103,93,88,106,116,104,99,107,106,96,110,108,103,95,95,96,108,106,111,106,104,95,122,100,107,114,104,112,103,108,103,108,94,103,103,97,99,92,108,126,118,94,112,100,104,102,110,98,100,100,98,103,104,110,104,104,105,102,102,103,112,101,100,108,83,103,105,106,110,102,109,104,91,109,96,116,104,101,101,112,107,103,76,109,107,85,100,104,105,96,103,109,95,96,113,107,106,103,100,80,102,110,111,113,95,105,108,104,103,99,105,105,106,118,113,106,111,106,102,109,112,105,105,93,118,110,120,92,119,97,112,102,117,101,100,105,96,106,97,109,106,96,109,102,100,107,104,108,110,102,100,112,98,100,109,114,104,104,110,100,105,104,106,95,108,95,112,112,106,92,104,111,109,99,109,117,102,108,110,109,121,109,99,103,106,101,112,102,107,107,106,108,106,106,107,101,105,116,105,106,108,105,104,99,112,103,113,112,113,113,105,112,104,106,114,109,115,102,119,107,109,103,116,99,95,101,100,109,105,95,109,106,102,115,111,116,107,118,104,88,110,98,116,99,115,102,106,107,95,105,133,104,100,106,103,105,101,109,108,111,104,100,109,123,91,99,106,116,103,90,109,102,111,113,99,124,104,107,99,80,95,106,101,106,101,107,106,104,94,99,113,109,119,107,113,108,101,105,109,105,94,102,102,105,114,104,111,106,103,105,97,105,107,114,102,92,102,103,118,104,112,108,93,101,105,101,101,97,110,109,96,105,103,95,109,114,101,99,87,111,95,116,109,104,112,121,101,95,102,97,114,103,107,107,99,108,92,111,103,112,109,108,108,128,98,100,107,110,105,133,111,94,106,104,108,117,101,106,105,124,105,99,98,105,99,100,92,99,97,105,105,101,105,97,95,98,118,100,113,100,112,110,86,106,96,110,100,108,107,104,96,102,103,121,105,118,124,102,98,101,116,100,101,94,92,108,102,118,108,113,83,82,104,119,109,141,103,107,109,104,111,105,101,118,92,110,103,106,100,107,104,110,106,111,90,107,109,105,103,117,127,110,98,105,98,97,68,105,100,107,104,105,101,118,95,103,100,107,117,106,114,106,101,107,112,113,102,106,118,112,107,112,97,92,103,111,110,118,106,112,104,100,100,106,92,102,105,108,112,104,108,106,118,111,108,104,120,108,109,121,91,114,116,119,94,112,103,101,110,91,115,102,109,103,108,113,96,106,103,106,103,96,129,112,105,108,99,109,114,114,98,103,102,114,109,103,100,118,108,110,116,122,115,101,116,104,100,117,108,106,119,110,108,116,104,108,111,109,138,112,108,102,101,114,100,103,110,113,96,101,100,106,103,115,108,88,88,105,108,99,105,107,108,99,100,106,98,103,101,98,109,111,96,112,112,111,108,111,109,94,110,111,102,107,105,106,111,96,114,107,103,104,100,111,116,108,109,106,110,107,112,108,99,96,110,80,106,102,101,103,101,113,106,107,101,104,99,94,105,106,121,101,88,113,96,105,108,87,110,95,120,104,103,109,109,101,95,99,101,102,112,102,108,87,98,114,106,104,103,76,105,108,114,122,91,107,115,117,101,107,110,98,104,96,116,101,99,114,102,104,105,107,105,110,87,110,114,105,107,112,107,114,104,110,108,104,113,106,121,104,94,123,113,110,104,114,109,121,91,102,119,112,91,101,106,111,107,103,111,102,100,111,104,107,105,111,107,105,112,102,105,138,111,99,96,102,109,103,118,106,111,78,108,103,105,103,108,104,96,103,106,105,110,109,100,106,104,104,115,97,114,104,108,120,101,107,115,121,105,107,116,109,98,101,111,104,113,112,120,106,111,102,109,103,114,105,114,109,106,103,108,88,104,106,108,115,80,113,105,109,110,103,105,110,99,109,99,110,108,102,121,105,115,106,108,112,112,106,106,120,104,103,100,91,109,119,119,104,107,107,115,118,99,110,108,106,117,111,99,85,94,89,113,97,112,98,84,105,93,115,106,122,109,116,108,117,108,108,113,98,105,99,92,112,105,102,98,104,111,104,100,101,105,92,116,111,102,109,101,107,105,112,96,107,100,106,95,106,104,100,98,111,105,109,113,120,120,127,100,102,123,109,101,109,124,107,93,116,138,109,111,113,112,132,138,99,136,122,141,140,131,123,116,122,119,137,133,137,119,124,124,121,106,114,113,98,102,100,111,104,100,105,100,104,107,98,117,108,112,102,101,104,122,97,103,88,93,101,100,113,108,111,104,105,109,105,105,106,102,101,108,95,106,111,101,96,109,99,107,104,110,96,106,109,110,88,111,108,108,99,106,106,109,88,105,108,121,94,107,102,120,96,108,108,104,107,118,108,100,108,105,98,104,92,98,106,101,91,113,106,103,104,86,86,100,119,99,113,102,120,85,111,91,108,113,108,104,104,100,117,107,103,87,93,105,99,103,98,106,109,111,100,107,102,97,106,110,112,108,112,104,111,109,98,104,95,107,117,109,112,113,101,109,95,113,95,108,109,110,109,89,112,109,101,107,96,117,113,112,107,103,94,105,101,103,107,105,100,103,99,109,106,82,107,76,107,104,112,110,91,141,114,110,98,94,108,99,104,95,103,107,111,145,97,102,104,103,107,92,100,102,98,124,111,110,99,119,104,114,119,120,113,109,97,104,114,111,100,91,111,99,108,101,108,114,105,115,111,104,101,116,92,105,103,117,102,88,99,95,100,107,109,101,100,104,102,92,106,109,106,92,110,122,91,100,83,100,99,91,117,110,104,94,102,107,87,100,95,89,96,106,108,102,99,101,88,94,84,102,109,102,103,96,85,103,97,92,102,119,105,114,91,104,102,103,97,121,101,108,102,120,98,101,109,95,109,103,105,103,99,106,117,99,102,119,101,104,102,111,117,93,95,106,106,111,101,98,103,98,104,87,101,102,105,98,103,101,106,98,84,108,106,113,103,132,99,106,112,112,103,104,113,108,110,91,97,111,113,85,102,122,102,99,108,105,108,103,109,96,95,103,102,113,115,108,103,121,117,94,116,113,99,98,100,107,95,100,115,105,91,108,96,107,96,106,96,102,102,97,103,99,109,96,113,109,124,95,103,102,103,100,112,114,114,105,91,121,94,105,105,102,66,107,110,103,97,105,112,105,101,106,105,114,99,105,89,89,93,116,109,97,108,110,105,106,103,101,121,93,103,100,98,103,102,110,96,110,98,97,101,108,103,101,116,101,112,87,105,106,103,94,92,112,121,98,121,100,97,105,87,131,106,105,111,112,107,109,100,100,107,92,104,99,99,102,116,96,111,82,108,107,106,99,102,125,102,96,106,99,101,107,104,102,90,99,85,89,105,107,100,106,105,80,109,102,105,100,95,93,118,103,114,106,102,100,92,96,93,105,99,101,105,94,112,104,106,101,111,108,107,102,92,107,109,115,109,105,101,105,97,97,117,107,114,100,108,105,98,101,90,91,96,98,105,99,112,105,116,115,110,106,114,105,99,94,103,96,102,101,101,92,112,78,106,99,113,104,96,107,106,99,94,117,99,106,101,105,101,112,111,96,92,117,113,99,104,101,101,123,110,119,123,121,96,102,102,98,106,102,107,106,111,102,110,112,107,115,106,110,95,115,103,101,103,92,100,110,108,80,111,75,106,102,97,103,106,105,90,93,108,112,107,106,101,91,118,97,110,113,103,104,109,113,104,116,144,105,93,91,101,103,96,108,111,98,100,108,114,95,108,104,96,102,96,107,107,112,106,112,102,106,109,100,102,100,87,100,92,113,112,100,101,109,99,111,114,109,97,102,96,112,103,102,101,110,107,99,93,106,110,85,107,103,120,99,113,97,99,110,106,103,112,113,103,107,110,102,103,103,108,111,93,98,97,109,105,100,102,109,120,112,110,106,93,103,102,109,107,104,112,94,102,108,108,113,101,99,107,97,97,97,103,108,103,65,118,118,109,98,90,92,106,113,110,101,105,101,104,109,120,99,116,84,95,115,104,91,99,100,92,98,108,114,106,90,98,99,102,101,109,105,98,102,109,115,107,103,116,98,113,106,98,96,92,96,98,116,109,106,109,115,108,107,105,105,108,99,108,101,113,102,112,102,107,93,92,88,107,113,106,110,110,110,103,109,101,115,97,107,102,109,114,103,99,102,90,91,114,111,113,114,107,110,104,102,94,99,108,107,93,103,99,94,98,103,104,104,101,103,98,102,114,101,126,113,102,106,105,105,85,107,92,99,101,96,97,92,108,100,97,106,95,94,104,110,96,94,98,103,114,109,109,109,100,101,93,104,90,103,108,104,107,104,103,121,102,95,90,108,106,93,95,99,66,111,109,106,109,108,110,99,101,101,94,102,82,105,114,112,110,118,107,107,111,107,99,88,102,92,95,105,98,110,107,107,99,100,96,92,116,100,113,104,112,103,102,99,100,91,104,105,101,96,97,94,101,98,88,104,102,99,102,107,101,105,104,105,101,111,100,108,95,98,108,91,103,101,96,112,111,84,102,98,106,107,102,93,91,114,98,106,120,94,115,103,101,116,83,100,113,112,99,103,95,112,105,110,107,98,92,105,85,101,97,96,117,105,99,105,114,94,97,109,113,110,104,119,105,100,102,102,94,87,115,109,107,111,98,95,100,105,98,71,75,97,96,108,107,100,101,95,95,96,103,103, +601.01471,93,108,97,93,114,87,106,102,103,108,95,89,70,116,101,101,98,107,103,87,105,108,98,96,106,100,109,117,109,109,104,120,100,102,113,107,118,95,100,105,121,102,99,103,104,111,105,97,110,105,87,104,110,105,95,110,109,100,91,95,101,101,120,103,107,108,108,105,81,106,108,101,104,101,90,101,106,101,98,86,98,90,104,106,121,80,110,103,97,97,103,104,103,101,97,107,99,102,92,96,103,90,104,78,107,92,103,107,105,102,95,108,110,96,100,118,98,127,99,117,91,101,100,104,107,116,99,102,104,113,93,117,112,98,109,95,96,95,106,95,104,101,98,88,105,101,106,112,101,106,105,119,101,90,118,97,94,110,111,108,101,98,100,106,84,101,79,103,100,101,121,104,101,92,123,104,106,109,103,106,105,100,121,107,104,113,101,103,113,94,106,99,105,103,99,99,108,103,103,104,103,103,118,103,101,102,102,100,103,102,99,108,116,97,99,103,91,106,111,92,116,102,107,109,102,103,95,111,113,72,120,115,99,107,91,113,96,99,99,99,104,112,107,116,109,101,93,85,89,115,111,107,111,103,95,106,114,95,106,105,93,109,106,91,115,107,108,104,95,87,102,116,104,100,92,108,105,112,103,110,103,103,102,104,93,103,103,118,97,92,107,104,111,102,107,112,106,104,98,103,99,108,108,98,104,108,109,105,82,102,96,103,105,104,114,110,102,99,102,98,104,91,99,133,100,99,105,102,120,100,108,104,100,103,98,98,100,109,97,108,95,96,101,94,105,110,111,102,104,113,97,113,102,99,116,113,90,112,100,106,105,108,102,94,109,101,96,114,103,91,85,104,108,92,91,108,112,95,102,101,107,113,112,119,111,98,104,111,97,94,102,103,101,105,112,106,105,104,89,113,106,107,97,91,98,100,109,96,108,95,100,101,96,100,106,94,121,98,94,115,106,114,100,74,107,106,96,99,105,102,101,99,110,106,108,97,88,104,102,114,107,99,104,97,96,104,105,109,113,101,99,105,106,101,103,108,104,113,113,98,115,109,108,100,103,100,95,103,114,109,129,111,112,124,109,95,99,97,97,102,94,97,98,96,102,106,102,108,97,98,98,107,106,97,97,92,106,113,98,109,115,102,104,103,109,103,93,109,99,107,109,106,112,100,103,110,106,105,102,89,96,102,92,98,123,104,118,108,103,100,99,98,115,93,91,100,107,103,97,108,108,108,110,98,108,117,103,101,104,106,99,102,125,130,110,80,95,111,97,107,89,91,108,109,95,88,113,103,100,115,87,104,103,116,117,108,106,104,113,97,129,102,105,95,100,108,109,118,116,98,120,113,101,121,107,102,102,101,100,104,99,116,109,102,103,104,105,97,113,96,97,100,112,95,111,105,106,109,105,103,104,107,106,100,112,108,105,108,106,98,99,110,100,106,106,100,97,107,104,99,118,96,99,121,94,98,93,108,110,105,93,109,102,95,112,103,109,105,117,106,113,97,95,121,95,104,108,100,109,105,119,112,113,96,88,91,89,108,110,106,101,104,97,105,102,92,98,110,106,99,110,109,105,109,98,104,121,108,91,94,105,103,109,104,117,104,104,110,96,104,103,107,95,88,101,109,97,100,110,104,111,108,105,114,87,105,116,108,103,103,105,116,106,100,85,105,103,94,113,102,114,109,95,94,102,112,109,114,109,104,105,99,102,76,100,98,102,106,105,101,100,110,109,109,98,114,106,101,96,107,109,93,117,110,97,106,101,105,86,100,101,98,110,103,117,113,105,93,113,99,103,111,112,105,102,114,101,101,104,115,105,100,106,111,104,104,110,113,103,116,108,86,104,114,120,105,116,110,106,96,106,108,111,99,98,102,99,99,106,114,111,97,97,95,96,100,110,107,107,108,101,102,106,99,94,103,105,94,97,94,99,103,106,96,102,109,98,112,109,105,106,101,92,106,82,101,109,108,110,104,104,84,105,109,104,103,112,101,116,110,109,115,96,112,102,100,91,107,110,103,97,106,101,109,117,107,110,109,89,78,93,110,102,101,107,106,116,97,110,97,97,107,104,103,108,103,107,104,113,107,103,105,113,105,111,108,106,99,99,100,132,114,109,116,103,100,101,101,111,96,103,106,99,100,109,100,99,101,114,98,97,109,115,101,108,106,90,106,115,103,137,110,104,104,98,96,117,90,94,117,106,98,98,105,90,98,118,86,99,110,112,119,110,112,104,100,107,102,105,109,99,106,96,112,95,105,100,105,93,65,111,89,102,105,110,96,111,108,100,102,102,104,84,113,114,99,107,109,104,102,109,109,116,96,85,106,98,93,106,111,118,119,96,96,122,117,108,100,115,116,142,116,142,151,135,143,122,133,122,111,111,143,100,135,107,119,114,116,117,100,118,89,98,117,98,97,87,109,116,91,99,95,107,124,105,99,96,96,104,111,108,92,96,117,106,116,96,116,112,106,110,102,109,102,100,111,96,113,115,110,102,104,102,109,108,107,116,101,102,90,105,117,111,91,101,100,91,112,108,113,95,99,108,107,104,134,102,103,108,99,93,100,114,95,109,112,98,95,97,100,106,98,103,108,106,113,102,105,98,103,114,104,113,81,108,102,109,99,104,100,100,104,103,96,111,117,91,102,102,102,115,94,121,112,105,106,111,108,104,108,102,115,102,112,93,105,109,92,107,110,113,99,110,100,95,92,120,92,102,106,108,110,104,115,105,104,106,114,104,107,105,110,98,100,88,105,113,108,104,109,107,109,103,105,109,97,92,112,109,107,106,107,100,105,125,107,108,109,112,105,121,105,116,107,92,110,115,112,104,101,100,100,107,106,107,110,106,100,109,108,85,107,110,100,105,102,111,103,97,120,115,119,102,114,122,95,110,123,106,114,105,102,104,110,98,118,103,98,103,101,112,88,96,104,102,109,99,100,106,102,114,104,99,112,102,105,103,99,105,98,106,109,113,105,107,113,115,108,97,106,109,100,104,109,113,112,106,109,102,106,109,103,109,117,106,108,110,99,94,99,104,98,110,99,105,110,105,69,106,102,100,113,104,111,104,117,94,112,88,111,111,117,105,102,105,96,111,95,106,108,103,103,106,110,110,110,102,101,108,99,116,104,108,118,104,99,106,108,116,106,111,106,112,104,116,110,113,107,111,108,108,114,102,112,102,118,110,101,105,107,106,102,100,106,104,90,113,101,105,113,111,100,117,91,102,95,106,112,124,109,113,100,110,114,108,104,106,116,98,100,107,131,107,95,135,101,110,102,112,101,100,100,102,108,105,109,104,113,99,115,95,97,100,104,108,113,95,108,96,97,105,98,105,106,105,102,110,105,108,114,106,106,108,112,108,110,106,104,91,106,103,102,119,107,110,111,121,104,98,101,99,104,107,97,100,108,122,109,120,97,103,109,107,110,104,103,102,110,98,110,105,107,85,117,98,103,108,102,113,101,107,94,102,112,107,95,109,106,111,112,106,107,105,112,109,116,110,109,100,106,109,103,100,123,110,96,116,114,106,107,96,111,87,109,106,100,111,100,100,103,118,94,105,93,106,98,112,90,106,110,104,115,102,117,99,105,103,108,114,101,101,108,111,105,99,104,106,98,119,109,100,116,107,117,103,95,105,121,94,113,104,102,112,102,110,114,103,111,115,92,113,115,97,125,90,97,102,110,110,117,105,106,102,112,96,107,101,111,113,107,100,95,88,102,104,98,108,105,111,102,100,107,102,104,107,100,100,100,110,91,108,104,103,95,102,105,115,95,111,109,101,108,105,93,108,95,101,112,113,117,117,107,108,98,123,106,103,90,104,108,99,107,100,110,95,103,116,91,109,97,98,113,103,111,113,119,105,106,97,111,109,109,106,99,108,109,107,103,107,104,100,100,99,105,103,101,111,93,125,106,109,101,115,103,90,124,106,103,102,100,112,103,102,111,101,108,109,109,110,116,102,92,106,108,112,111,105,104,96,105,113,119,103,95,103,113,95,97,101,106,117,97,107,89,91,104,105,103,113,106,112,99,104,101,104,106,107,103,123,99,104,97,100,111,103,99,105,108,93,111,107,106,102,109,109,113,112,112,99,105,106,106,114,105,99,115,105,94,108,113,104,113,98,111,104,96,104,101,110,95,104,101,91,104,95,112,92,108,109,103,103,102,108,94,85,102,116,118,98,106,111,111,107,111,109,107,111,91,100,104,106,104,101,108,105,96,110,102,100,103,106,92,86,96,107,97,104,106,95,104,98,109,110,112,107,100,112,95,97,101,109,105,113,105,89,103,94,105,103,104,95,97,110,104,110,98,109,102,106,106,107,95,108,96,93,130,102,119,114,108,113,112,103,99,102,100,102,110,115,96,109,100,107,114,89,102,114,107,119,100,104,102,107,94,100,103,96,102,94,105,98,110,97,96,100,92,103,95,111,105,109,96,102,99,107,106,103,93,108,113,103,104,99,104,97,103,115,99,107,104,103,95,106,92,117,107,113,120,108,104,87,94,103,101,107,111,98,87,114,104,111,107,96,116,111,107,109,93,108,106,89,99,99,96,100,107,92,119,101,105,112,99,105,101,117,98,104,103,107,118,106,115,108,97,103,97,101,128,110,97,107,108,112,88,120,105,98,101,94,98,107,103,104,118,98,112,102,105,107,102,114,108,116,99,104,99,107,115,108,102,104,113,97,97,106,107,106,107,101,111,105,105,104,107,92,117,109,95,106,96,111,95,104,96,92,106,100,102,109,96,99,104,103,111,114,117,109,93,121,109,94,98,93,94,121,102,98,110,96,99,118,95,105,112,102,101,97,100,101,102,126,102,119,98,90,75,100,90,104,87,108,113,82,108,107,72,113,104,99,98,109,92,102,109,101,111,103,125,89,97, +601.1557,90,113,98,95,102,121,110,85,101,108,122,107,113,93,118,108,95,109,107,87,105,96,93,108,91,104,101,119,117,109,103,115,101,90,111,108,111,102,110,115,116,103,106,99,104,118,109,105,112,107,99,109,105,93,97,106,105,107,102,103,90,103,100,97,103,113,100,100,107,106,101,104,107,106,86,112,107,112,105,116,96,104,118,86,102,110,93,95,105,102,103,100,112,91,102,96,99,89,102,105,106,124,107,110,98,114,98,100,92,100,106,106,107,105,114,111,103,95,122,101,99,122,101,113,110,108,110,102,113,109,112,108,105,110,105,105,98,115,99,74,98,111,110,113,98,103,116,107,113,107,95,116,110,98,88,106,101,101,118,96,105,101,106,98,106,103,106,68,105,110,94,105,100,116,106,112,109,101,113,108,111,109,106,101,109,99,100,96,110,105,95,105,100,106,106,101,102,105,104,103,103,110,103,99,108,105,101,114,113,105,99,100,103,105,99,106,92,101,103,94,106,115,111,91,100,101,114,104,109,101,92,102,99,108,117,103,117,108,99,102,96,105,111,111,105,103,114,103,114,109,103,106,97,90,106,108,102,109,99,113,105,102,95,101,102,118,113,116,101,96,91,115,107,99,100,105,104,111,109,103,100,114,114,104,97,105,106,114,103,96,99,107,107,112,107,103,105,103,104,102,117,109,91,113,96,115,106,98,98,102,100,104,103,105,104,137,100,99,108,100,109,78,108,92,100,103,97,98,111,113,110,99,121,106,105,98,102,106,97,100,107,102,112,103,103,92,82,102,103,93,104,111,105,106,117,102,98,104,113,103,108,94,103,107,109,83,94,113,99,109,106,105,104,110,98,104,122,117,114,112,108,113,106,107,100,97,105,109,108,96,110,99,88,120,100,94,109,110,100,103,103,101,91,93,113,104,105,109,109,95,101,123,112,94,103,105,98,97,117,96,108,99,105,98,113,101,97,97,109,129,99,99,112,108,91,105,119,104,99,103,112,109,103,107,90,102,105,101,117,101,99,122,119,93,114,100,103,110,102,114,106,101,113,105,117,124,119,103,97,101,101,107,106,95,106,100,96,95,108,108,117,110,120,113,97,97,120,107,104,104,106,108,107,103,102,105,94,105,102,106,116,111,109,116,98,107,110,101,100,111,115,107,102,106,104,119,101,99,110,114,97,76,114,111,101,100,102,103,101,108,109,123,105,95,94,104,100,105,99,107,99,116,102,103,124,114,99,101,97,106,108,97,104,95,108,103,121,106,103,109,107,114,113,102,112,117,120,103,106,100,101,103,109,112,99,114,98,109,113,110,105,110,115,109,107,97,107,112,113,103,112,105,115,103,115,119,117,98,94,101,91,101,114,109,106,97,103,105,104,105,95,92,111,100,121,105,114,106,96,95,97,108,108,106,100,96,98,100,119,113,99,113,102,108,98,105,102,105,111,108,111,104,107,113,102,110,103,102,98,112,89,94,105,126,106,106,109,108,108,107,102,107,100,87,89,125,109,105,102,107,110,104,107,98,91,110,105,95,98,103,100,105,108,90,97,113,98,96,100,111,103,107,107,110,104,104,112,109,109,87,95,105,92,104,109,96,103,105,103,114,96,98,109,105,99,113,113,82,103,100,91,116,106,106,104,96,133,103,96,110,114,100,95,106,101,114,107,103,109,102,103,107,114,116,117,109,108,106,101,108,106,104,94,109,102,95,108,90,83,82,104,113,105,105,104,99,95,104,105,108,99,105,100,96,99,99,122,102,95,98,107,106,99,101,130,145,110,101,103,104,108,113,108,115,101,106,89,110,101,107,111,107,106,113,113,117,101,111,102,107,98,110,101,95,99,97,106,105,99,101,107,105,103,104,95,106,112,103,95,103,99,111,97,96,109,103,107,107,123,114,117,103,116,96,94,106,100,91,101,105,108,88,92,103,98,104,106,112,104,106,110,92,105,106,106,104,97,111,108,105,108,103,110,110,115,115,105,97,105,97,110,94,105,111,107,114,94,110,107,107,112,112,96,100,93,95,105,111,107,104,114,105,111,115,110,95,90,108,95,105,91,114,111,106,107,103,93,101,109,106,104,102,108,99,105,94,92,100,99,104,108,112,107,111,91,96,109,92,113,105,98,98,109,98,94,95,97,114,96,104,108,105,115,109,83,104,106,103,113,106,109,117,109,75,99,98,83,101,105,102,102,113,113,92,99,103,110,104,102,110,109,98,103,109,102,112,96,101,110,100,109,102,95,95,111,106,112,99,90,106,100,91,113,92,101,104,106,101,79,109,99,115,98,106,111,110,101,100,84,85,114,102,104,91,97,107,93,105,100,106,113,95,97,98,99,101,117,125,118,130,125,119,122,145,122,133,141,135,111,117,140,145,110,139,123,111,107,150,115,112,98,107,113,101,105,98,95,110,117,104,91,116,115,98,109,100,107,102,105,112,98,103,107,110,116,99,104,99,104,104,116,109,111,94,104,91,108,99,100,92,109,96,99,104,103,104,117,103,104,123,105,85,110,113,100,107,110,108,101,109,103,101,94,119,122,103,109,94,98,98,101,108,94,94,94,101,98,90,101,94,106,96,103,116,95,108,109,94,108,98,98,99,109,106,100,91,119,95,103,101,118,102,102,103,117,96,101,88,100,115,112,104,102,106,90,101,91,100,106,108,102,95,92,115,107,103,115,102,102,103,85,108,104,116,111,106,103,90,107,119,99,102,108,100,100,99,109,115,115,96,102,112,105,100,100,105,98,105,111,105,108,107,105,100,111,105,95,104,116,104,86,103,96,99,99,96,99,95,109,113,114,92,98,104,108,107,104,114,108,91,99,96,108,104,102,102,106,92,96,110,103,108,98,106,97,87,117,96,100,79,102,108,101,91,117,109,106,108,118,99,104,113,113,103,101,108,95,104,111,105,118,93,108,107,113,97,101,92,105,105,113,124,99,97,114,106,99,95,108,94,99,117,95,92,105,100,95,95,106,105,118,106,100,94,113,91,103,99,95,95,90,91,92,102,108,102,93,105,99,108,115,101,103,102,97,106,112,118,107,104,105,110,97,91,107,84,102,95,93,107,111,107,108,101,101,92,105,104,106,129,112,110,75,109,101,104,96,103,94,98,108,105,105,99,99,103,108,98,108,105,103,100,103,110,97,107,125,101,104,104,112,95,92,96,105,106,97,107,107,107,99,101,109,100,91,100,109,115,103,101,98,89,97,105,95,97,103,108,109,107,108,102,113,99,111,97,100,99,63,97,97,98,107,96,87,95,105,105,113,98,101,95,119,100,104,103,97,110,101,98,118,107,100,114,90,103,103,106,85,103,100,94,100,85,100,99,108,105,106,97,116,103,96,103,116,117,119,103,104,97,111,104,111,91,112,103,103,107,116,92,100,111,102,106,109,113,105,101,117,91,102,100,109,104,96,91,101,101,103,112,95,104,103,98,116,101,113,100,102,95,109,117,96,112,96,106,111,104,104,110,117,109,106,102,101,113,101,126,87,102,100,90,94,105,108,94,106,96,106,113,98,98,110,115,96,101,99,98,98,115,103,111,97,97,94,107,100,112,105,91,93,91,72,106,96,108,92,106,95,102,97,109,103,97,101,96,108,116,96,95,98,91,100,99,92,90,102,96,109,116,97,107,108,107,97,95,109,112,103,101,114,105,99,104,112,99,105,109,97,100,95,111,103,106,108,103,100,101,103,98,115,116,117,101,88,97,115,104,110,100,105,106,113,100,107,103,109,93,99,94,92,103,107,99,97,112,110,108,113,104,94,96,112,97,106,90,93,105,109,109,103,117,102,102,112,103,113,106,107,115,101,101,91,102,99,98,103,100,104,102,110,104,99,111,101,102,106,88,100,107,109,109,102,103,107,102,104,99,103,99,111,88,107,104,109,95,93,97,99,96,105,104,104,107,101,99,82,113,105,102,102,106,85,100,106,101,101,113,109,84,105,91,102,96,106,102,93,79,90,107,92,95,124,101,102,106,103,113,111,98,103,100,99,102,101,99,104,106,100,88,109,108,110,84,95,98,85,100,115,109,100,103,112,94,99,108,106,98,105,94,92,90,105,103,91,100,95,109,100,104,96,94,101,105,100,103,102,110,100,88,106,97,96,101,111,102,106,103,110,90,92,107,105,96,102,104,120,107,107,109,100,107,108,104,110,101,117,104,102,104,113,105,106,101,95,96,102,105,99,108,103,102,93,103,94,97,106,111,105,97,94,100,105,100,97,104,106,109,104,104,97,92,115,102,101,94,118,97,112,98,105,114,113,102,108,106,95,104,108,88,102,103,106,101,105,102,95,102,101,96,113,102,98,102,86,87,106,110,107,104,101,110,99,109,91,109,103,108,104,103,117,111,89,98,112,95,112,102,110,114,97,104,106,103,104,111,95,90,110,108,105,107,104,96,102,102,111,104,100,90,113,102,100,105,103,93,108,97,100,102,107,98,94,110,99,107,103,102,103,98,91,114,89,101,104,101,101,100,97,96,100,91,97,101,102,91,109,98,101,131,105,111,110,105,117,110,103,97,117,117,104,133,124,103,102,107,109,96,101,98,100,92,111,98,100,93,98,100,96,108,96,97,83,97,104,119,113,103,101,105,112,94,113,97,117,95,101,106,96,101,101,99,113,110,109,104,96,98,103,97,95,91,113,106,99,82,105,96,104,108,117,97,104,117,105,103,103,109,117,92,100,100,95,113,96,86,103,110,102,93,97,102,95,92,109,102,102,98,108,96,92,84,102,110,116,106,108,89,104,98,105,103,113,102,94,104,96,92,96,98,105,105,82,93,98,106,107,101,100,79,99,101,108,74,95,99,94,108,109,101,98,90,106,97,83,115,102,118,102,95,121,91,89,71,107,88,108,105,81,99, +601.29675,114,104,89,84,88,105,105,100,111,110,112,103,100,103,108,93,103,106,103,99,108,93,106,107,110,102,104,114,111,109,113,94,106,109,105,103,114,108,105,107,94,113,105,101,100,105,98,107,96,106,110,109,117,112,99,101,101,105,103,97,121,114,103,87,111,105,101,113,104,101,108,103,95,125,103,114,105,108,102,98,104,100,90,98,110,108,105,101,100,112,96,96,101,99,121,114,99,95,116,92,100,97,116,110,97,109,101,103,102,96,108,96,109,104,95,95,121,110,116,100,107,112,117,111,106,121,103,113,114,99,101,110,96,110,109,105,100,100,106,101,109,103,100,102,104,90,118,109,96,107,113,93,99,100,96,101,104,105,86,113,96,104,107,96,107,123,94,107,113,96,98,108,125,101,105,109,103,104,111,107,102,93,100,103,101,108,99,98,120,100,102,117,101,106,100,102,115,112,104,102,99,96,104,113,94,100,101,100,117,105,87,119,106,112,102,104,114,103,111,98,112,100,102,105,109,98,106,96,94,110,95,106,109,102,90,103,112,109,99,104,109,95,110,113,101,72,94,106,115,115,107,108,98,114,109,108,104,106,98,99,95,93,113,99,98,106,91,83,103,96,114,105,119,113,125,98,107,95,110,98,99,98,104,107,108,99,109,109,104,114,101,97,117,116,105,117,111,104,109,104,105,107,107,99,90,107,109,104,108,105,104,102,101,112,96,108,114,98,109,104,104,96,98,108,104,108,92,98,111,101,136,104,118,106,103,97,114,118,106,92,105,107,112,95,112,115,107,116,114,106,105,110,106,109,107,108,120,107,108,109,104,97,99,101,97,101,103,116,113,114,106,118,112,109,106,97,109,94,104,114,110,112,91,97,105,113,101,101,99,109,110,96,86,71,105,107,98,102,103,112,99,111,109,105,103,94,99,122,102,106,97,104,110,104,103,104,102,104,109,100,98,105,95,109,116,105,107,81,116,96,95,100,105,112,104,98,109,104,117,117,97,102,102,99,101,109,89,99,103,115,94,100,109,113,120,96,113,99,114,96,103,104,94,97,113,103,97,103,85,102,107,110,109,108,102,97,105,95,99,108,90,107,106,96,104,105,102,101,101,108,102,106,106,120,113,96,95,112,101,93,101,98,116,126,105,106,95,103,113,115,108,131,111,100,100,108,100,101,132,95,106,104,103,91,110,95,116,113,98,106,107,114,101,101,109,109,140,106,95,107,109,110,100,113,99,95,102,104,106,95,109,105,108,107,102,110,104,107,95,99,111,102,107,111,106,117,109,102,109,95,92,96,118,98,102,112,107,109,109,77,119,122,96,97,112,103,106,111,115,101,113,102,104,106,108,122,96,95,112,109,108,121,107,102,111,79,100,101,102,100,106,107,101,102,106,100,102,104,108,118,109,110,100,97,111,101,106,101,105,100,101,99,109,107,98,102,96,99,108,98,104,110,97,104,105,95,98,104,99,99,105,113,106,108,101,114,102,114,103,107,113,110,105,108,99,109,106,105,116,105,105,109,89,103,95,103,100,102,103,109,98,106,116,100,102,105,86,100,100,102,114,101,100,97,111,87,112,92,107,107,106,101,99,91,107,112,109,101,100,122,107,112,104,103,100,105,121,103,103,121,98,95,106,107,101,105,107,117,111,109,107,103,97,92,92,100,118,104,116,103,129,94,93,118,111,106,105,113,105,107,114,96,110,101,114,110,91,108,121,101,103,104,104,88,96,109,109,98,109,91,107,99,102,101,113,107,102,102,101,105,98,112,110,103,94,113,92,119,108,119,106,103,102,115,100,104,108,107,110,98,105,105,98,112,109,116,102,117,102,100,118,104,100,107,111,98,99,112,110,108,109,122,108,110,100,103,113,103,96,99,102,91,103,98,107,114,86,113,99,109,124,109,121,113,102,100,107,111,103,108,113,110,102,106,114,129,105,104,107,115,99,114,102,107,98,110,103,87,109,96,108,115,119,105,105,103,105,113,104,94,109,96,103,109,102,107,110,111,117,105,119,102,109,103,109,94,107,99,104,98,109,112,100,100,106,104,109,115,95,93,109,100,118,108,106,119,106,115,99,99,103,108,101,114,107,96,106,101,103,99,112,100,111,99,113,107,103,102,117,97,100,108,110,104,114,105,102,106,112,107,106,109,118,110,101,95,90,95,101,114,110,104,113,101,94,99,104,114,105,121,99,113,107,100,103,103,116,109,91,100,99,116,94,122,101,109,118,107,107,97,116,116,110,96,103,103,99,112,105,101,102,107,94,96,98,106,102,103,105,121,94,103,115,114,109,114,102,84,113,106,105,101,110,110,104,103,102,102,108,107,107,117,99,99,112,114,108,118,128,120,114,148,141,148,149,128,139,164,141,140,140,130,131,101,111,113,121,109,123,113,111,111,100,104,110,111,104,108,110,110,103,118,101,100,103,99,104,109,101,106,105,111,83,101,109,111,102,112,124,103,104,105,106,116,101,94,101,102,102,101,100,113,116,117,106,114,106,115,113,106,112,137,108,111,103,107,107,110,102,91,105,73,100,111,116,102,96,103,107,101,110,119,114,107,107,105,109,123,115,106,116,100,95,109,103,117,102,101,88,113,103,108,107,101,124,105,102,111,113,88,114,103,116,100,112,97,84,98,109,100,105,109,106,109,86,94,108,101,97,110,102,107,104,101,103,103,102,98,99,110,93,121,105,113,98,113,99,104,102,113,89,103,102,100,113,98,109,94,109,98,103,112,105,121,91,108,110,112,102,103,99,110,99,111,110,105,107,109,105,100,98,115,112,101,110,115,99,114,101,108,106,101,125,108,98,111,98,92,106,100,95,108,100,109,104,113,96,127,114,102,102,102,110,106,108,101,92,103,104,119,107,106,103,125,100,107,112,100,80,98,102,134,103,102,103,88,109,107,110,103,109,110,101,109,107,105,111,94,100,114,121,97,108,106,105,101,106,99,111,100,117,108,101,104,116,116,99,110,101,100,102,88,101,106,104,101,104,96,95,112,106,96,109,124,113,96,112,110,119,115,109,100,113,108,104,100,103,112,105,103,116,121,107,107,104,94,122,110,99,105,104,108,103,102,100,105,107,97,110,100,101,113,105,106,106,104,106,113,108,103,106,98,110,115,106,97,106,112,109,110,125,92,89,101,101,115,101,109,122,111,112,105,107,90,112,110,107,107,113,100,103,114,97,102,103,98,108,102,104,107,104,108,99,112,102,112,109,110,124,105,107,95,101,99,107,106,108,123,98,99,106,106,115,109,98,108,116,103,107,104,110,101,104,101,103,104,106,96,102,103,111,112,114,110,105,105,100,101,95,104,94,110,102,95,104,107,103,100,95,100,103,118,98,102,108,113,105,108,103,108,99,100,108,109,114,97,97,96,107,98,100,104,107,105,104,108,90,107,107,112,106,111,100,108,94,104,110,102,96,105,98,106,104,112,96,107,101,99,113,107,113,108,109,106,98,88,106,107,110,102,131,109,106,101,106,105,109,103,106,102,111,88,115,112,105,99,108,103,107,103,103,109,106,104,101,114,101,117,108,99,104,104,104,106,112,102,109,96,96,104,116,91,96,111,100,98,108,107,98,101,107,106,113,104,113,96,105,107,102,113,96,88,102,104,114,106,102,103,120,103,116,98,99,94,92,88,104,115,106,101,89,90,119,114,101,114,104,105,105,110,102,118,109,108,102,100,106,100,111,105,99,111,104,101,102,96,108,112,113,103,110,92,106,97,102,108,102,110,107,101,98,102,115,113,114,100,100,103,115,104,95,111,97,106,115,94,113,108,109,110,103,96,103,93,115,105,116,108,91,104,99,112,112,97,100,101,107,107,97,95,90,104,104,103,109,104,110,106,98,110,95,101,98,90,97,101,97,103,99,101,102,104,104,90,109,112,103,94,103,99,112,99,105,108,101,113,95,106,99,104,106,101,105,109,104,102,109,112,102,111,107,115,105,113,102,96,98,107,91,96,102,113,102,91,117,102,111,112,102,102,102,105,100,121,109,112,102,111,100,103,104,105,103,103,107,93,96,111,111,115,102,100,98,101,105,90,106,107,108,98,106,91,106,99,119,121,106,110,106,104,110,104,102,110,99,102,115,110,105,108,108,98,100,117,122,107,103,112,113,113,102,104,88,93,113,102,103,116,93,99,99,100,106,111,88,100,117,95,96,100,108,113,105,104,104,106,107,91,98,103,116,117,105,98,109,99,102,113,103,102,104,105,103,81,99,100,98,104,95,103,105,105,105,106,109,103,106,112,100,112,100,101,98,99,104,101,107,110,105,106,105,99,106,107,100,100,113,107,101,109,141,110,102,110,94,103,114,102,104,104,110,102,98,102,105,103,113,101,101,110,102,103,107,110,95,103,112,105,108,110,106,92,104,99,113,109,112,103,109,99,94,112,112,105,102,100,109,98,108,119,97,106,98,108,104,99,100,112,98,107,108,108,108,110,109,97,108,92,118,109,105,98,108,112,102,105,121,85,106,103,95,102,102,105,112,87,106,102,112,95,93,108,98,99,102,101,95,93,93,101,106,102,110,91,103,122,89,101,95,97,99,99,109,110,110,108,106,110,113,109,103,103,96,104,133,102,110,107,115,104,111,102,105,95,102,101,109,105,107,95,113,101,105,96,105,119,102,88,108,107,99,100,94,113,105,109,102,112,109,100,104,99,118,107,102,108,116,103,109,107,103,103,103,103,100,95,102,116,122,102,103,109,100,109,105,117,87,106,110,100,108,104,102,120,107,100,111,109,116,100,98,121,107,111,105,92,98,91,94,98,116,94,107,117,101,111,100,100,100,108,98,133,114,72,106,107,85,99,117,96,108,105,100,102,103,112,97,107,95,79,105,101,105,100,104,123,101,97,92,109, +601.43781,96,121,99,95,92,112,102,87,106,97,107,98,106,105,118,109,97,108,102,96,109,95,98,104,110,68,84,90,107,112,101,105,96,95,112,97,109,99,119,118,91,113,93,96,102,108,108,94,114,110,100,94,115,107,89,110,100,97,113,98,112,103,117,103,106,118,82,104,104,104,117,119,101,112,97,97,105,91,104,101,99,91,92,93,104,102,104,96,105,96,113,111,112,85,100,110,107,95,118,109,99,99,121,75,101,101,99,105,96,73,105,102,100,92,99,112,106,113,108,99,102,104,107,102,113,115,111,101,115,94,94,97,96,103,111,108,92,101,100,109,99,90,112,106,110,113,104,105,109,98,102,105,109,84,102,118,99,97,92,99,107,108,108,112,101,98,111,125,99,101,115,101,91,94,104,111,105,103,97,107,122,86,101,115,96,63,101,101,95,99,100,99,111,99,90,119,103,108,101,100,111,99,107,107,108,100,108,105,110,100,97,101,102,104,99,111,106,111,101,99,111,99,96,82,96,118,108,121,106,107,75,103,102,100,106,106,105,115,105,100,110,109,115,95,94,99,98,121,113,90,110,108,92,95,107,107,103,99,91,114,102,102,104,100,102,96,106,111,107,89,85,103,112,106,105,98,108,117,96,102,110,97,106,101,108,113,108,101,99,104,105,119,111,116,79,109,108,127,104,105,105,105,109,108,89,110,112,110,114,107,106,107,101,105,108,104,104,110,112,101,100,108,98,105,97,93,106,98,122,111,114,121,114,118,102,103,102,114,106,105,105,97,103,103,102,113,98,102,107,104,110,108,110,102,104,107,110,117,110,88,107,104,96,102,107,63,98,117,96,114,105,95,112,90,110,99,110,99,96,100,109,104,106,106,109,91,97,105,96,116,96,97,103,124,102,122,109,104,101,112,100,100,116,98,105,109,107,99,104,106,82,107,104,117,96,93,100,103,112,101,105,103,107,94,93,92,105,97,108,112,105,105,100,109,113,92,97,112,99,94,108,102,103,115,97,117,110,101,89,109,106,99,97,107,109,84,91,109,100,98,91,87,108,116,97,107,105,104,98,100,106,111,107,101,103,97,106,115,113,109,112,103,106,92,106,101,105,99,100,109,109,108,114,108,99,93,107,105,103,97,98,102,109,109,104,96,97,100,102,113,107,112,105,104,106,103,97,108,91,103,107,124,104,96,104,115,109,101,101,101,99,103,115,97,99,109,109,102,106,112,94,104,101,105,104,92,97,105,103,111,97,114,93,113,104,96,100,96,106,107,110,95,104,96,102,99,111,100,100,103,100,90,101,101,104,108,104,90,144,106,110,102,107,98,107,108,103,106,115,100,103,115,107,93,109,96,101,107,98,112,107,102,104,103,107,100,99,115,100,112,103,78,91,114,106,103,105,108,123,106,110,102,111,112,111,102,104,99,106,108,112,111,95,115,101,107,98,100,91,102,108,102,105,121,103,93,104,99,107,111,101,110,120,104,101,110,103,108,114,97,113,99,104,100,100,92,108,104,110,110,132,114,109,109,112,93,101,103,113,105,98,97,106,101,105,101,108,110,105,110,108,102,101,112,104,100,111,104,102,90,101,106,107,92,111,95,103,99,99,101,105,95,99,109,96,98,100,120,104,68,84,117,109,103,109,96,104,100,109,112,85,109,111,66,95,97,103,97,104,103,105,97,86,96,99,106,104,105,96,108,115,84,118,102,117,104,118,97,112,108,87,114,91,113,110,105,102,94,92,92,105,95,105,112,99,112,105,106,102,96,93,108,98,112,113,79,105,115,99,94,108,109,118,116,106,105,113,103,103,99,87,91,99,109,108,99,98,100,100,105,107,84,106,113,107,93,112,109,111,112,104,117,112,84,100,101,105,95,112,111,109,104,99,96,106,103,98,98,103,116,99,109,103,97,99,100,111,104,100,100,106,108,97,92,112,119,101,110,100,103,109,104,114,107,102,101,105,110,105,92,109,110,105,109,104,91,98,109,103,95,95,124,104,120,113,98,106,107,110,103,106,99,114,111,109,90,99,109,101,99,102,107,124,104,104,109,100,105,93,119,107,107,112,99,107,107,106,109,106,103,95,103,102,112,95,116,104,106,101,105,109,109,98,112,114,102,95,112,99,100,105,106,107,104,94,98,101,109,100,104,114,83,102,114,105,98,125,114,95,102,105,107,101,100,121,101,109,105,108,97,83,114,109,109,109,107,99,102,98,106,98,101,105,97,98,97,103,101,99,109,105,100,101,101,95,106,101,108,100,110,110,111,97,101,106,102,103,123,96,103,99,111,110,98,108,101,89,101,118,114,98,105,110,106,109,109,92,102,103,102,115,100,111,107,113,110,112,106,126,110,127,137,124,136,141,139,141,120,130,123,124,122,111,139,123,115,115,116,106,89,110,104,109,107,112,95,101,111,103,110,103,128,102,106,110,99,100,108,92,109,99,92,98,110,97,97,106,105,104,96,105,101,111,99,91,111,93,102,96,105,103,90,99,92,94,99,112,106,112,102,95,105,101,102,107,103,115,104,106,109,103,102,116,98,117,101,98,103,98,118,104,112,73,98,113,105,105,107,111,108,101,67,109,99,109,107,103,95,103,102,109,112,100,110,93,102,106,102,105,104,109,95,106,87,109,103,108,103,108,107,97,98,105,84,94,99,103,104,116,85,93,102,110,110,109,112,122,101,102,100,123,105,103,112,96,104,113,87,99,108,102,101,106,118,111,115,92,113,95,107,92,101,89,97,106,107,96,106,104,99,105,106,109,118,99,68,90,107,109,101,97,114,100,95,103,103,107,100,114,108,109,98,103,111,108,108,108,109,97,92,100,127,96,106,116,97,103,106,110,119,100,111,115,111,110,101,102,109,101,116,117,115,97,115,100,99,114,112,101,108,96,92,117,106,103,93,110,103,100,104,103,103,106,101,116,99,97,92,110,108,99,119,99,104,94,109,108,108,109,117,105,111,108,95,110,114,95,100,109,116,103,107,108,103,101,100,120,104,80,98,105,102,101,108,111,101,106,101,99,123,105,114,100,112,117,88,78,105,106,128,92,101,106,93,108,117,105,111,99,99,110,118,110,98,111,97,108,103,102,104,106,109,102,106,106,97,107,105,108,97,109,106,110,110,112,106,111,116,101,102,92,91,110,104,114,115,108,112,107,117,101,93,94,102,109,107,119,109,99,103,107,103,118,104,108,100,103,96,98,103,119,112,94,108,99,95,108,104,109,97,112,96,106,98,110,102,101,110,91,107,98,116,108,101,99,101,121,109,107,98,95,108,109,108,103,108,112,123,103,107,117,103,100,91,110,112,108,100,103,108,95,96,88,100,109,101,109,90,96,97,90,108,103,103,100,117,95,106,110,102,109,107,95,103,107,96,98,108,112,104,103,114,102,99,101,114,100,110,109,96,97,88,95,113,109,110,104,102,111,108,106,102,93,107,102,109,108,107,107,96,110,108,109,95,97,103,102,102,107,107,109,111,98,110,102,106,95,99,95,110,109,117,98,103,106,103,110,98,103,113,110,103,107,109,100,92,89,96,115,111,105,103,94,103,103,95,100,91,100,108,133,109,112,99,104,96,108,103,113,104,100,111,108,113,108,97,102,114,108,110,102,102,110,98,102,107,105,100,107,87,100,92,118,107,115,101,102,122,98,80,94,105,92,108,89,116,112,107,104,100,110,94,103,103,98,110,104,108,105,99,115,98,103,108,112,102,104,96,101,103,105,95,111,95,110,98,95,108,113,95,108,110,93,91,99,103,105,96,107,103,106,107,100,91,107,106,117,104,100,101,110,96,116,108,97,108,104,95,98,106,134,104,97,100,88,104,117,102,102,94,112,108,113,109,91,103,98,101,108,101,110,97,109,107,99,84,111,103,100,106,92,106,107,111,105,112,107,104,117,101,102,96,110,107,99,119,113,84,104,118,102,99,87,117,99,107,95,95,110,103,100,103,104,114,104,104,106,107,102,115,106,105,97,113,110,97,112,109,96,113,114,104,104,103,102,123,110,94,98,116,110,97,95,93,103,107,95,100,103,103,109,108,103,98,111,100,111,109,101,107,109,98,91,107,110,102,90,98,100,101,107,112,103,107,96,116,110,106,91,92,103,102,98,103,99,91,100,109,96,107,108,107,93,100,96,102,99,104,84,102,103,113,100,102,104,105,96,103,105,117,121,107,103,105,107,110,98,115,95,94,105,95,110,98,108,91,109,116,78,95,96,101,100,103,95,113,94,115,95,98,95,97,108,103,110,115,94,98,92,110,115,98,109,104,103,104,106,106,98,120,97,111,114,96,102,112,98,113,102,102,113,104,97,99,90,98,103,110,102,99,98,116,110,109,104,105,107,99,117,94,106,117,102,101,106,112,110,106,107,115,97,93,113,121,104,99,113,109,110,97,115,104,99,75,95,96,95,107,106,104,89,117,96,117,99,96,92,108,109,121,108,95,102,109,98,118,113,88,81,96,87,92,110,104,102,106,96,105,106,99,98,108,107,99,116,105,104,108,103,105,101,110,102,98,104,91,105,103,106,114,113,104,107,101,102,111,106,102,111,96,99,84,107,99,110,105,103,102,108,104,110,98,97,109,113,105,118,106,112,96,108,108,107,86,107,102,105,114,113,107,107,107,103,107,95,100,103,133,101,107,116,99,110,112,104,91,119,91,107,102,104,117,107,104,107,99,98,113,94,66,103,109,98,112,108,105,106,108,94,110,113,95,101,100,106,94,102,111,120,97,97,107,104,105,96,107,92,98,105,101,90,100,104,96,98,96,112,106,116,95,117,103,91,98,102,96,105,99,102,111,101,100,98,95,99,107,92,103,100,95,104,99,98,100,103,92,96,121,119,86,81,93,97,101,105,107,119,129,115,100, +601.5788,91,94,91,98,103,105,116,98,93,97,102,100,107,88,99,103,100,83,103,104,106,99,98,95,98,101,95,110,100,101,96,103,103,113,109,93,103,114,91,96,95,104,108,101,101,120,98,108,87,110,114,108,109,106,104,100,101,104,109,104,111,110,92,88,99,92,104,120,107,99,110,104,93,112,97,111,87,102,114,99,102,98,102,107,102,109,100,113,106,93,106,114,96,113,109,106,103,100,111,114,107,108,107,91,99,108,84,108,102,106,106,109,96,93,76,100,109,118,107,90,101,115,105,103,131,108,103,96,107,107,100,107,109,113,101,115,93,102,130,108,111,99,99,87,75,99,90,104,106,107,80,95,124,99,107,104,102,91,102,104,103,99,100,101,96,104,101,100,103,98,98,118,100,100,105,104,97,110,117,100,98,103,99,87,112,90,97,91,94,90,102,112,103,95,117,105,113,109,105,109,104,98,98,109,106,99,108,106,101,105,92,109,98,118,97,106,106,109,101,101,95,98,106,101,109,106,110,99,102,99,105,105,112,114,118,99,102,116,104,99,112,97,118,101,93,114,102,107,108,108,79,99,98,105,100,111,98,105,89,103,103,100,109,99,114,94,108,101,101,117,91,111,108,96,120,102,107,112,106,86,108,101,107,101,99,109,116,108,106,94,103,112,111,102,99,105,108,103,95,106,105,103,100,108,107,107,105,111,97,96,105,107,84,94,109,99,99,98,100,110,83,102,102,98,114,95,103,106,104,100,99,110,103,110,104,91,110,106,103,106,112,104,99,96,107,119,116,101,91,102,113,118,102,109,119,91,110,100,111,104,106,108,100,101,84,109,100,114,88,118,107,117,105,104,106,96,119,107,105,98,103,117,107,104,108,99,116,100,108,124,98,102,107,115,96,104,99,95,100,103,104,112,104,104,100,103,100,115,106,107,93,94,106,98,128,106,98,98,100,90,91,100,97,105,118,100,95,96,99,110,100,102,112,98,91,106,92,107,95,100,99,106,113,105,95,119,96,92,100,116,94,110,100,103,98,107,95,97,121,113,105,106,107,108,103,104,77,108,109,102,112,89,93,98,121,99,104,105,105,106,114,108,126,111,105,108,99,108,100,94,103,106,106,106,97,110,92,114,104,103,105,102,114,98,108,106,105,88,97,109,111,112,105,99,83,99,102,100,106,113,101,101,115,108,115,96,102,105,89,93,100,117,107,103,105,107,102,106,99,104,104,114,102,93,116,111,110,90,107,124,100,99,90,109,106,98,97,105,100,96,112,101,80,104,90,108,104,114,109,104,99,105,105,109,86,115,97,112,108,136,100,102,98,113,106,99,99,95,104,108,101,102,94,113,110,94,98,100,109,96,114,116,112,97,100,95,98,97,94,105,95,115,107,106,114,90,103,101,115,110,117,110,118,105,108,113,106,95,96,109,92,116,99,100,111,91,107,103,98,106,95,106,103,107,104,96,98,98,117,104,104,108,111,101,100,118,105,102,88,96,108,107,108,99,102,112,102,104,103,104,96,104,119,100,92,113,110,105,104,101,110,99,103,106,101,103,94,119,106,102,94,84,110,109,121,96,106,105,103,97,95,93,100,96,100,119,116,108,98,111,104,94,94,100,111,65,99,107,107,105,102,105,103,104,96,97,97,105,92,108,101,92,103,105,106,98,106,98,113,100,73,111,101,106,112,98,104,105,93,108,109,91,95,96,117,83,111,99,104,109,101,103,98,117,87,112,96,98,107,103,97,105,101,105,96,104,111,110,101,107,101,111,99,116,115,80,114,115,106,97,114,101,109,105,103,107,102,105,109,91,116,108,119,102,112,98,91,100,102,94,95,107,98,101,117,97,99,110,107,101,117,109,107,110,91,89,112,84,113,93,79,91,96,114,103,113,114,105,108,113,106,103,113,105,95,103,109,101,89,79,100,90,113,98,106,114,97,106,136,111,97,90,94,96,98,95,101,106,115,99,102,129,101,112,104,113,112,103,90,94,105,101,99,108,102,109,106,119,97,96,111,101,109,99,112,98,105,92,106,107,108,122,95,94,110,98,104,97,101,104,133,114,98,102,105,108,98,101,120,101,117,98,100,114,100,97,98,89,100,117,114,94,117,104,104,109,108,94,112,112,103,93,97,97,114,108,113,119,113,100,107,99,106,110,99,104,103,108,108,102,93,106,107,100,106,109,94,110,100,113,100,117,99,102,97,108,98,95,104,97,111,113,103,90,97,84,107,97,92,95,111,86,105,98,108,116,88,105,105,103,98,93,107,102,102,110,113,111,112,108,107,108,107,110,97,107,107,102,96,98,109,108,106,114,106,112,102,114,111,104,107,115,120,112,114,110,111,114,107,118,122,132,124,136,121,142,133,136,132,115,126,134,120,131,111,117,104,113,115,108,112,120,98,98,94,108,106,98,89,102,109,106,117,101,104,124,103,96,89,95,108,108,111,103,113,112,106,91,111,107,98,96,113,83,115,113,103,94,109,107,106,113,81,105,102,99,102,109,108,103,99,115,117,117,97,96,97,113,87,108,120,106,116,113,110,113,105,107,117,107,106,105,107,116,101,109,101,105,106,111,103,101,111,113,105,101,109,105,113,101,108,113,109,100,108,111,98,101,101,108,103,101,99,102,106,107,128,110,109,106,115,109,110,112,105,106,117,115,93,95,101,103,110,104,99,116,110,99,114,111,107,112,109,104,106,101,104,98,113,112,115,103,109,110,105,113,112,106,108,102,103,99,85,107,103,107,107,111,102,105,107,102,103,97,103,97,104,124,104,75,114,109,95,123,100,102,105,103,100,107,115,97,106,107,121,100,106,106,102,106,112,99,114,108,102,108,106,105,87,99,103,117,99,117,107,100,101,106,106,117,104,113,120,105,102,101,94,105,104,110,113,112,108,110,108,102,105,100,110,109,116,113,89,104,98,116,108,87,106,98,117,103,102,117,112,103,106,97,105,94,87,110,107,106,108,99,105,110,107,90,110,97,107,107,106,116,106,105,112,107,109,101,108,108,109,98,103,106,94,108,109,102,109,103,102,102,109,91,115,97,110,109,102,100,105,117,97,103,92,113,110,94,100,110,98,111,105,103,103,95,100,109,107,99,111,102,102,109,111,111,106,94,98,109,109,92,94,113,104,106,98,110,118,103,111,112,108,107,122,100,106,108,97,104,99,104,104,101,108,102,100,104,99,110,113,93,94,114,110,104,109,99,107,95,99,118,108,102,112,104,104,99,85,107,109,113,106,109,98,103,111,99,105,117,94,102,114,104,100,109,107,100,110,97,112,99,114,109,96,116,112,107,106,113,116,116,102,101,119,99,95,103,105,107,102,97,108,101,129,109,107,91,103,113,111,113,107,111,109,107,101,102,114,109,104,103,116,124,109,94,113,105,105,119,87,115,106,105,108,106,107,101,102,102,95,103,115,88,99,107,112,102,107,110,106,101,88,112,105,100,104,100,106,118,91,106,95,100,95,107,95,117,105,99,111,111,105,112,88,99,113,104,101,113,111,107,102,90,112,100,101,112,109,98,105,96,101,106,106,100,103,95,91,106,99,103,109,109,91,109,103,107,105,116,103,102,95,112,94,103,96,121,105,106,112,106,103,101,114,113,109,100,95,105,102,113,106,109,107,109,95,136,93,109,105,97,91,110,114,66,103,113,102,103,96,88,105,105,101,103,94,99,116,117,106,102,98,99,120,120,111,119,103,108,110,102,111,92,93,103,91,98,103,104,114,107,102,106,112,104,121,103,105,108,107,98,90,85,116,92,95,105,100,94,102,94,124,106,112,99,108,106,101,111,108,112,106,115,104,106,93,106,98,99,106,103,100,108,107,92,93,99,106,96,108,111,95,109,113,106,103,112,117,109,104,105,106,109,103,99,107,102,98,113,112,99,104,105,107,100,103,100,115,98,111,106,107,107,107,111,121,99,104,101,90,105,93,103,103,104,101,109,100,105,91,91,107,108,100,94,106,108,105,103,104,102,105,107,106,107,114,105,109,101,103,107,114,117,105,101,95,115,101,103,111,102,98,100,94,105,113,105,103,100,97,114,95,108,113,101,105,115,103,101,116,102,98,109,103,102,111,95,101,110,108,114,121,121,99,106,110,87,95,109,108,113,120,114,105,94,106,94,101,88,105,98,109,103,104,103,108,125,106,101,101,117,116,104,106,109,106,102,100,102,106,102,101,114,114,116,103,109,96,102,112,93,105,101,115,99,98,116,124,99,103,103,101,114,103,113,101,97,101,105,109,108,103,96,102,107,110,104,112,100,95,101,105,102,101,102,104,109,118,81,109,113,113,97,101,109,117,103,110,107,101,108,106,102,98,109,106,105,103,105,104,107,109,111,101,106,107,112,104,103,111,112,111,107,90,102,83,90,98,105,97,112,103,99,104,101,105,100,102,115,95,95,101,97,96,113,100,102,110,99,91,111,98,95,124,104,98,109,105,102,93,112,95,104,99,97,100,105,103,119,109,108,105,91,91,108,103,95,107,109,106,110,111,102,90,96,103,107,99,104,102,112,92,92,100,103,90,98,102,106,100,103,99,107,92,96,100,95,102,99,113,98,109,117,105,105,100,104,90,113,107,98,119,100,101,98,117,99,101,92,107,100,113,116,96,107,101,101,96,102,89,97,98,119,106,97,97,107,102,104,112,96,83,107,113,94,111,81,111,108,105,106,96,103,109,101,100,97,100,112,95,97,110,96,88,76,92,93,102,105,103,97,99,98,106,98,103,106,106,103,104,106,96,93,91,102,105,117,105,100,101,117,106,99,102,105,102,99,98,97,128,104,98,110,110,107,105,103,103,106,80,107,95,111,105,95,99,116,76,102,99,99,101,112,97,101,104,105,111,102,113,110,112,108,110,99, +601.71985,104,92,96,100,104,103,117,108,103,94,91,109,109,94,101,108,108,111,96,109,110,114,101,99,94,104,108,94,101,105,103,112,111,100,113,101,100,99,97,101,76,110,99,100,102,103,121,106,113,107,98,118,94,101,99,93,103,87,109,83,105,100,113,100,104,105,100,100,105,93,113,114,102,99,99,96,96,109,100,106,102,107,94,109,108,97,82,114,95,110,101,100,104,107,100,106,94,101,110,97,94,98,111,94,103,93,107,101,105,103,100,88,106,96,98,115,111,103,94,88,99,96,112,118,102,107,110,97,108,108,98,99,104,111,102,86,104,100,107,107,106,108,95,117,98,106,112,104,88,101,105,109,104,91,110,111,103,109,99,103,100,98,101,95,102,102,99,100,100,104,106,97,97,90,115,106,96,100,102,106,98,106,105,117,112,105,96,76,114,95,97,100,95,104,93,117,108,98,98,98,93,108,110,103,96,99,102,107,104,117,98,105,99,109,99,122,101,109,100,107,108,99,101,97,101,86,102,108,99,103,106,114,94,105,107,112,95,117,109,120,102,108,108,96,109,101,110,103,104,110,101,87,90,105,100,108,96,94,94,106,95,105,103,99,87,117,106,107,104,94,112,100,113,97,110,110,103,102,111,101,111,103,99,111,109,114,97,100,96,113,99,113,103,106,101,108,108,104,105,110,103,94,96,114,101,107,102,115,104,108,108,105,94,99,94,97,112,102,108,113,109,104,103,101,102,96,105,92,96,113,116,105,105,100,100,106,113,98,99,99,121,114,84,107,106,109,105,106,101,94,98,95,99,104,114,99,118,108,107,107,105,98,98,103,96,94,115,121,103,100,108,109,105,91,105,87,106,113,101,110,99,84,97,105,94,110,94,103,96,95,113,91,100,92,104,109,108,103,102,105,113,97,104,113,99,102,112,103,102,111,94,102,105,101,98,91,87,106,106,108,102,99,100,103,126,103,105,99,103,110,79,106,99,105,106,99,95,107,101,104,105,107,104,112,113,108,99,87,92,112,97,100,98,107,111,105,105,114,90,109,104,95,93,106,110,108,102,108,95,104,106,103,94,101,99,99,99,98,104,120,96,97,102,110,95,108,104,107,106,114,110,105,92,91,91,101,100,100,101,111,114,99,100,100,97,100,88,104,91,96,106,117,100,109,102,109,107,99,109,104,114,97,109,107,98,101,109,91,105,105,90,96,103,101,103,103,105,99,116,106,109,89,81,99,104,98,107,99,116,105,102,100,103,107,114,100,113,99,109,86,123,111,123,105,105,103,104,107,109,106,98,95,110,105,97,99,87,87,67,97,101,110,96,95,93,100,111,112,100,100,115,99,105,100,112,87,106,104,113,126,97,110,109,102,105,108,100,95,104,112,92,96,108,102,106,112,105,116,97,109,92,107,99,99,106,105,99,103,106,108,99,104,111,83,103,106,118,101,109,98,113,122,95,116,105,101,105,114,102,111,82,109,114,112,109,105,109,104,98,94,107,112,100,105,104,100,99,109,113,99,95,75,99,98,104,120,92,103,111,107,105,87,103,101,99,102,95,107,109,99,110,109,100,104,106,104,99,107,113,96,101,90,109,107,103,103,106,100,110,113,111,98,107,107,103,103,97,99,100,101,109,109,96,104,102,115,94,96,114,121,107,122,112,103,102,115,108,102,110,98,108,84,94,104,104,91,109,103,100,104,114,100,109,88,116,97,101,103,103,118,109,111,94,117,109,113,93,110,101,108,102,107,114,112,102,109,109,101,101,106,111,107,108,113,105,99,106,97,105,103,109,109,102,107,113,113,97,114,106,115,106,108,115,100,108,110,110,104,99,106,110,98,108,96,111,114,107,104,100,109,104,125,99,101,116,114,105,106,105,103,109,99,109,106,103,101,107,104,109,113,95,113,111,86,96,102,98,104,81,100,100,114,105,101,96,107,94,111,106,105,94,94,108,101,98,99,93,109,112,105,107,104,104,105,109,99,102,105,100,80,112,101,105,108,108,102,101,106,97,100,102,121,105,106,105,93,106,111,102,98,100,107,110,96,111,94,103,103,103,97,102,106,120,99,126,117,103,105,108,103,92,99,110,103,105,105,102,117,85,109,117,112,108,109,101,107,103,102,103,94,97,100,102,105,107,100,108,104,104,104,106,100,118,107,110,110,116,94,85,111,113,122,105,99,112,113,96,96,99,113,102,101,114,94,103,110,97,105,97,102,98,95,104,105,92,108,108,110,102,95,100,88,87,99,106,107,106,107,104,106,105,77,105,102,111,111,101,106,100,105,103,113,104,100,104,88,114,103,95,105,100,108,109,102,100,82,95,108,111,105,105,112,104,97,117,108,111,122,119,122,143,132,127,141,124,160,145,127,153,147,124,111,122,125,87,110,112,121,107,103,96,108,102,112,121,105,104,109,114,107,105,121,105,109,93,105,98,102,108,92,96,100,102,112,111,105,111,114,102,116,97,101,102,105,98,108,103,99,115,99,101,105,99,90,100,115,119,99,103,115,108,110,98,104,112,95,98,117,115,107,99,104,112,113,100,103,98,107,105,108,105,104,135,110,84,107,101,94,102,119,107,100,94,105,85,99,115,106,117,99,107,116,109,97,108,102,117,105,94,112,99,96,108,88,107,100,107,108,109,100,108,102,106,111,128,110,104,109,116,108,97,112,101,107,117,107,111,103,99,95,96,95,112,116,117,109,104,97,98,109,113,106,88,111,127,103,113,98,106,99,112,107,105,108,121,102,115,119,109,107,107,112,100,112,103,106,99,95,108,99,107,110,107,106,101,92,104,91,98,106,105,102,118,109,117,102,96,113,102,99,112,116,101,103,101,112,100,91,105,112,108,110,106,118,102,110,83,115,102,109,106,106,100,93,103,102,95,110,106,106,100,103,121,104,110,106,109,95,109,105,113,114,101,100,126,109,103,99,122,103,82,106,113,108,97,107,98,113,127,104,102,107,104,94,122,122,106,101,99,98,123,102,112,105,108,102,111,108,117,98,119,102,104,101,108,110,107,101,103,86,102,103,121,106,125,106,109,100,107,109,86,112,111,99,99,90,101,112,90,100,106,103,112,110,120,113,124,102,116,94,102,98,117,112,119,98,107,99,102,104,96,79,101,116,98,108,109,113,97,98,106,106,97,105,118,97,122,109,104,105,114,104,94,107,104,81,107,104,105,101,107,109,95,105,104,104,108,113,76,116,109,106,100,100,102,102,118,102,112,110,116,106,104,110,103,108,123,112,108,100,104,110,100,99,101,120,116,98,121,109,101,115,112,105,113,116,111,99,93,94,113,102,98,103,102,113,103,96,106,99,110,96,103,102,108,107,111,79,114,104,109,117,105,95,106,99,109,105,103,105,121,104,115,104,103,111,111,101,117,107,122,94,102,103,105,92,113,103,111,112,99,112,110,106,91,112,103,97,103,105,98,108,106,82,111,95,88,103,110,103,110,114,111,104,111,98,101,111,116,104,112,95,111,113,104,132,104,108,99,103,121,113,113,103,74,99,112,103,104,111,116,119,103,101,105,106,104,109,108,118,80,102,98,110,95,108,109,105,103,103,111,102,95,95,100,113,100,115,114,113,98,97,113,107,109,99,119,98,109,109,112,105,103,97,108,114,96,95,117,102,104,113,115,105,92,112,101,93,108,109,108,114,102,109,99,102,110,115,113,88,114,100,106,94,112,106,103,99,106,105,112,114,106,103,108,99,99,114,107,98,111,102,115,109,115,109,118,92,105,105,104,110,96,109,108,109,119,121,120,112,103,104,102,114,108,112,112,110,110,104,113,108,99,118,103,113,99,105,101,116,112,103,99,120,96,113,104,105,122,100,98,103,91,113,111,115,104,101,86,118,106,101,107,120,104,86,112,109,94,99,104,115,103,104,104,106,100,112,102,100,111,116,115,103,109,105,113,108,108,103,101,113,106,106,104,112,106,103,104,106,115,116,103,116,100,107,105,91,101,116,106,117,101,110,117,103,91,105,99,99,109,109,110,114,102,113,117,105,99,111,110,130,92,111,111,109,115,100,106,92,110,98,108,100,108,107,118,106,109,103,107,118,106,106,112,108,110,87,99,105,98,107,103,99,97,115,107,128,109,103,115,112,105,107,100,102,107,104,102,105,111,102,95,103,110,113,113,101,105,106,101,103,111,111,98,116,91,104,112,105,112,87,102,90,98,106,105,91,111,96,117,107,113,113,116,108,98,96,98,102,97,105,102,114,106,106,109,100,118,116,103,94,111,108,101,107,110,109,90,119,95,103,117,93,101,111,103,74,89,114,95,109,109,111,122,113,99,105,104,111,110,115,108,92,101,99,111,98,105,98,104,124,100,106,99,98,101,107,103,96,92,102,100,111,118,85,113,100,103,93,99,102,106,104,98,110,108,109,95,111,114,98,109,110,107,113,92,106,102,118,103,115,101,95,110,92,101,117,103,109,102,93,115,114,91,115,93,95,102,101,99,103,90,105,100,110,109,92,99,87,106,101,106,108,103,106,118,98,106,99,112,119,104,105,109,107,105,108,104,109,109,113,104,99,110,104,103,104,102,104,112,93,99,118,121,108,114,103,107,107,104,109,106,82,105,113,106,115,106,104,107,104,117,109,118,111,108,111,101,104,103,98,112,113,95,104,98,91,101,102,112,106,105,106,104,101,98,114,97,105,97,102,98,111,109,98,98,118,100,102,107,124,109,105,106,107,107,96,104,121,107,109,98,104,102,85,103,104,102,107,102,90,110,96,114,96,112,99,97,102,118,102,116,110,101,97,119,113,99,101,109,83,100,87,109,106,106,117,104,105,112,114,100,101,103,109,109,103,114,89,109,103,108,96,94,102,95,104,99,106,99,96,113,94,105,104,110,102,105,89, +601.8609,100,101,97,107,91,108,98,102,94,107,115,103,129,94,105,105,96,107,102,99,101,111,88,106,99,109,99,96,93,111,112,104,112,120,92,105,90,105,104,108,98,104,111,114,102,110,90,104,105,121,98,124,98,103,89,112,103,104,97,92,95,99,99,91,118,104,111,99,99,90,100,106,104,100,95,110,101,108,90,121,110,102,100,70,100,96,106,110,112,107,111,114,119,99,92,97,100,104,98,101,107,99,113,124,104,108,104,98,100,93,114,105,109,106,101,102,101,108,110,121,100,87,113,111,110,85,92,99,111,121,108,105,105,106,103,104,114,105,97,101,100,104,80,106,109,112,92,106,101,98,108,107,111,91,85,109,114,94,121,109,104,97,93,105,102,103,101,103,106,103,100,107,101,97,103,104,102,109,117,101,106,117,102,94,91,93,99,106,110,101,105,102,105,107,94,99,103,105,108,104,99,115,108,110,97,104,106,100,111,116,108,95,96,94,94,106,123,96,112,101,107,109,97,112,113,109,98,115,113,112,105,104,104,108,100,109,113,107,82,99,102,114,114,112,104,110,100,100,102,99,101,103,96,110,98,116,98,107,95,99,103,104,103,109,98,115,116,89,100,104,111,77,104,109,103,109,98,108,112,105,105,113,98,104,89,69,90,109,97,101,110,116,117,100,106,117,101,78,102,115,104,104,87,95,93,92,108,105,113,108,101,104,100,107,111,108,105,107,78,112,108,106,111,117,100,101,99,94,98,102,104,112,104,95,110,86,100,106,98,114,99,105,110,101,114,106,107,107,112,106,105,116,99,95,108,103,104,104,87,105,100,102,95,101,101,98,103,114,91,107,115,94,104,99,97,103,117,126,110,100,110,101,108,108,106,104,99,88,113,97,94,97,99,109,99,96,98,100,96,109,105,82,113,110,94,102,98,107,110,104,100,101,95,107,98,84,97,94,90,81,117,101,110,117,93,99,99,102,105,113,105,115,113,108,103,110,105,97,94,103,102,110,117,111,97,104,106,102,103,126,104,108,98,108,102,106,98,98,113,100,91,92,110,101,104,107,103,105,117,105,108,109,111,103,115,106,102,106,100,105,114,91,114,90,104,96,104,101,101,99,113,109,107,99,106,103,104,103,102,105,126,100,88,102,103,95,107,81,109,90,87,104,104,105,101,94,97,117,96,95,112,100,104,94,98,108,108,100,100,112,112,96,106,103,111,114,100,103,105,119,121,104,99,108,110,98,103,109,99,101,107,96,102,116,100,104,112,102,106,97,106,101,111,102,94,107,101,103,108,93,98,100,95,104,91,119,124,95,99,106,96,97,104,100,102,105,107,109,99,99,103,103,99,101,104,105,98,104,110,110,100,114,96,104,95,110,103,106,105,113,103,101,86,107,114,76,112,105,108,109,103,92,103,102,101,115,96,98,111,105,107,107,99,102,107,101,105,106,108,96,101,96,123,115,116,102,88,98,121,104,95,94,99,101,95,117,112,112,112,109,110,100,118,103,101,95,102,101,114,101,103,96,101,95,105,108,97,107,107,105,107,104,104,113,98,91,102,104,93,99,98,101,95,111,94,108,100,96,104,100,104,89,102,102,108,103,115,109,101,88,110,103,105,105,103,104,105,109,114,107,98,74,98,106,99,106,91,111,112,104,91,109,110,103,92,99,102,102,95,113,104,103,104,109,98,102,95,107,107,105,119,99,106,94,122,107,121,100,110,98,97,110,88,105,105,116,104,103,101,108,84,101,108,103,116,112,97,105,102,132,107,94,117,111,109,109,105,112,96,120,126,102,108,111,120,94,101,106,104,109,96,113,97,104,115,103,104,102,106,98,109,101,106,95,113,100,109,115,102,102,103,104,114,105,99,109,114,109,115,102,97,108,100,99,112,119,99,95,106,114,104,108,115,99,99,97,101,100,106,114,104,99,102,99,92,103,107,106,94,105,105,105,100,117,103,104,102,97,118,103,97,101,95,98,98,99,117,118,104,106,109,116,100,111,111,103,99,112,99,113,107,103,108,116,103,94,101,112,107,101,106,98,101,106,83,102,105,95,101,106,106,102,102,109,99,95,106,108,105,109,120,100,98,100,95,106,104,100,102,114,86,118,113,119,105,111,103,99,113,105,107,109,99,116,88,110,114,111,100,112,94,102,103,101,107,95,94,100,110,108,108,117,104,110,99,116,101,98,107,105,96,103,108,99,104,105,108,102,92,104,103,106,103,95,107,113,95,89,113,99,96,106,101,103,90,106,109,112,99,104,100,100,93,98,93,105,116,95,95,100,101,105,102,103,106,96,109,105,103,100,107,105,109,90,104,94,104,101,100,96,105,115,115,120,73,90,118,123,112,132,118,154,107,141,126,112,145,131,116,134,130,131,140,120,121,91,105,113,109,110,97,113,117,114,105,91,99,118,115,95,104,110,108,93,95,113,110,106,94,104,113,102,98,113,117,112,102,107,113,114,108,86,113,99,98,98,125,105,108,109,100,110,111,110,104,96,96,93,108,101,94,109,95,109,99,100,97,102,104,101,113,111,101,99,107,106,110,99,99,112,103,124,112,100,116,112,108,104,96,120,119,102,110,91,110,101,107,99,117,106,118,95,115,99,101,92,107,102,115,105,111,100,100,95,103,101,103,103,102,104,96,113,109,109,105,97,92,100,112,100,106,113,94,100,100,108,103,104,100,107,99,110,108,113,90,104,109,94,107,108,104,113,95,104,113,111,116,105,95,94,101,103,112,103,109,117,101,106,104,110,107,116,101,95,108,91,103,101,113,119,103,113,106,110,102,80,103,106,103,105,110,104,109,105,88,111,117,98,101,108,101,112,107,100,110,113,93,111,92,128,109,107,100,117,108,103,94,99,104,113,106,108,103,96,101,97,108,107,117,102,108,118,110,102,104,115,113,108,113,104,99,107,104,109,103,103,110,115,96,109,110,104,100,106,81,113,104,115,100,93,105,111,107,104,112,109,102,102,86,100,110,85,97,107,108,105,101,109,113,110,94,87,115,102,95,109,107,106,109,106,103,125,116,108,115,100,117,105,113,109,101,82,92,99,106,89,100,104,104,100,113,107,101,103,101,106,109,110,103,94,110,102,103,111,101,103,98,103,103,99,111,102,102,107,92,103,108,102,110,109,117,102,96,107,109,104,113,102,103,104,110,105,102,119,100,104,102,107,87,101,103,104,103,99,101,96,108,92,111,100,106,99,96,106,116,115,114,101,106,103,109,106,106,115,96,110,100,109,101,109,101,78,116,82,77,99,102,106,128,99,116,94,110,105,104,127,109,94,127,96,106,102,104,108,111,116,100,107,108,103,111,112,105,95,100,115,112,107,107,111,100,121,101,105,104,99,103,107,111,108,117,117,101,105,84,117,111,97,111,107,78,108,100,112,86,109,103,94,114,109,101,95,92,105,116,105,104,113,103,106,105,108,103,96,110,104,111,107,115,99,101,108,106,84,108,110,109,109,108,75,112,100,103,103,108,104,83,99,107,111,102,110,111,103,104,113,99,110,115,100,106,108,107,106,105,116,99,117,99,101,110,99,116,108,111,87,98,101,118,102,99,109,110,113,95,104,105,111,96,95,103,94,104,89,105,104,111,106,116,113,108,107,106,110,113,105,111,102,112,100,106,104,110,110,95,107,104,108,98,96,107,111,113,106,101,108,102,102,115,124,118,113,105,105,91,106,120,96,101,94,90,104,106,111,100,108,93,106,107,96,107,98,101,126,105,117,108,111,114,102,109,100,104,103,106,96,113,110,102,109,96,110,97,110,100,110,105,109,106,104,111,120,107,99,99,110,109,95,104,121,99,118,93,98,109,110,95,103,115,100,104,105,112,102,102,121,96,95,117,110,104,119,102,104,105,94,103,101,94,96,108,99,107,101,113,103,107,91,108,99,99,100,87,98,106,104,103,107,113,99,92,99,95,102,92,105,103,94,110,108,105,99,100,101,112,92,110,81,106,121,107,107,93,108,104,105,109,112,117,104,106,102,94,94,100,95,92,102,109,106,106,98,93,99,102,124,113,112,109,103,104,95,107,95,106,104,107,111,106,98,96,113,98,108,111,109,98,105,106,108,102,107,104,113,108,111,116,99,103,109,105,94,101,102,79,101,117,113,97,104,100,94,88,107,98,97,108,108,93,107,111,98,101,82,108,114,102,106,107,103,107,108,111,110,100,107,98,99,96,105,110,96,96,107,98,105,97,106,116,98,98,107,98,99,102,106,101,104,97,99,109,110,107,112,104,98,98,108,93,100,87,123,106,106,116,99,104,109,98,113,108,105,101,105,105,115,113,96,111,108,113,111,108,94,106,115,114,102,102,92,118,116,111,101,91,116,110,109,119,101,105,103,93,106,107,91,110,107,133,97,98,95,107,107,97,107,115,114,117,102,104,108,107,98,98,109,109,103,96,114,103,99,102,100,115,93,115,105,111,95,98,103,102,112,102,86,107,108,102,103,96,104,100,110,110,103,101,116,113,112,106,108,84,103,111,97,96,99,102,94,102,100,110,104,112,101,110,94,103,102,112,106,100,110,115,109,95,103,110,99,91,110,109,113,114,104,108,115,145,106,113,105,102,109,100,122,96,110,111,125,110,99,106,103,107,106,113,107,102,91,108,99,98,105,117,101,112,95,98,113,108,95,99,103,114,110,81,94,113,93,112,114,105,129,115,102,106,102,99,99,96,90,113,125,110,88,102,102,107,106,101,102,109,107,96,105,94,111,113,109,99,107,96,117,99,102,104,113,95,96,96,102,96,132,106,116,95,101,104,102,107,109,96,129,93,81,107,101,102,106,105,101,105,89,100,108,104,109,98,95,102,95,111,102,111,102,104,109,105,96,107,110,100,107,116,106,122,100,94,94, +602.00189,93,106,98,106,97,104,100,110,104,105,101,124,108,78,116,70,114,116,103,93,95,99,97,120,115,104,94,110,96,103,103,95,107,105,125,100,109,112,108,104,101,122,119,97,106,103,89,102,96,109,86,119,106,92,104,117,113,83,100,108,104,118,123,102,95,81,94,106,107,105,101,90,94,109,105,85,110,117,107,117,110,85,106,97,107,92,114,106,100,85,95,110,103,113,87,105,90,89,106,100,107,99,96,94,95,100,111,92,100,100,91,98,110,111,110,108,104,100,103,101,103,114,106,113,106,105,126,93,111,98,106,100,114,100,115,102,103,115,105,81,106,113,105,92,113,99,115,107,106,105,89,108,118,105,91,108,108,113,108,117,103,99,103,97,110,105,113,103,99,106,102,108,111,99,89,103,89,102,109,117,111,101,96,105,110,93,98,97,98,109,108,107,101,87,97,105,110,99,102,102,103,106,94,119,110,120,102,100,106,112,95,99,115,113,100,102,107,109,83,105,106,109,92,97,104,105,106,98,77,112,103,102,98,109,109,90,95,108,104,117,114,109,105,94,105,105,110,88,105,109,99,105,70,93,99,95,97,113,91,125,104,105,101,109,107,108,106,108,99,95,102,98,120,97,107,121,100,102,107,99,97,101,103,96,104,101,97,102,102,112,104,104,117,98,113,103,99,105,117,109,95,106,122,105,96,115,110,112,102,97,103,109,98,104,109,101,102,111,105,105,93,109,104,95,106,102,103,105,119,109,103,92,100,94,102,102,109,102,104,99,108,91,103,99,98,113,101,114,109,98,91,96,105,114,106,108,98,104,117,108,108,118,111,116,102,98,116,116,97,106,94,109,108,109,109,100,103,103,105,94,99,106,112,101,103,110,83,99,94,112,100,100,117,106,102,104,105,103,106,100,123,109,102,108,103,118,109,105,110,103,102,105,108,100,94,103,97,90,98,118,103,101,101,112,101,97,112,100,100,115,88,104,112,89,99,96,93,104,96,106,100,100,106,110,107,101,103,99,109,101,92,119,98,117,104,100,101,114,103,116,86,95,100,123,102,98,101,106,104,98,97,101,103,100,104,108,99,114,99,114,117,111,103,105,103,105,99,105,95,97,115,103,103,109,100,104,103,102,112,105,110,96,101,101,99,114,101,101,104,109,110,112,95,108,102,112,101,92,117,98,106,108,75,96,94,77,108,111,88,108,114,109,120,112,104,112,93,100,98,109,109,105,104,99,115,94,105,104,69,108,97,118,96,104,103,103,96,91,108,105,104,109,108,105,112,100,98,92,105,107,110,91,89,115,112,108,103,96,95,84,100,102,101,108,109,102,101,94,102,109,104,109,104,98,101,113,98,99,100,118,109,118,104,102,91,94,90,91,114,110,98,106,115,113,106,99,124,114,101,112,106,108,105,103,107,103,100,116,91,111,105,102,112,107,105,101,137,105,104,106,109,94,107,107,103,72,96,86,113,116,109,96,105,98,96,113,112,113,106,105,108,99,109,111,106,106,100,100,115,104,99,103,97,107,102,111,94,107,104,105,100,116,108,104,100,105,96,96,100,115,118,104,106,110,111,105,107,107,96,97,101,95,104,104,108,112,99,98,109,113,109,111,101,120,101,100,104,109,107,111,113,100,97,101,113,105,114,98,111,93,101,105,103,108,106,100,117,118,121,110,109,118,115,106,114,107,99,92,98,102,102,94,112,109,107,100,97,99,115,106,104,101,106,109,100,103,88,105,85,102,110,96,106,102,102,96,108,99,108,99,120,127,110,85,96,113,97,108,108,103,99,104,107,107,109,100,116,103,114,116,118,102,108,107,105,101,106,114,96,102,103,113,101,94,108,114,116,106,98,97,90,107,95,100,106,121,97,91,108,123,104,91,117,111,103,108,109,122,112,111,116,96,112,107,102,121,105,95,101,93,95,113,105,100,103,109,91,99,106,109,95,127,97,96,103,96,104,107,99,107,93,98,98,101,104,97,101,108,109,99,106,108,112,106,93,103,99,110,103,102,106,116,109,118,109,101,107,108,99,95,105,108,107,105,108,102,100,97,108,108,110,98,107,104,109,83,99,96,114,108,103,107,102,108,99,108,114,101,96,83,100,86,98,108,97,115,104,99,116,107,111,94,109,100,104,105,103,102,82,113,98,83,109,120,109,91,105,102,113,112,120,114,104,107,106,97,98,101,108,103,90,107,102,95,100,101,104,97,100,98,95,103,98,101,102,110,111,99,105,108,109,95,104,105,106,108,105,109,98,106,109,109,96,106,101,100,112,113,114,100,108,112,111,114,114,87,101,103,105,97,118,102,109,106,105,94,111,107,111,108,103,110,118,121,112,101,111,134,116,122,129,142,136,140,114,125,141,108,136,145,122,136,111,111,123,109,110,108,105,96,110,94,111,103,100,111,102,107,105,97,101,124,101,95,104,105,106,102,109,119,112,117,102,114,114,112,120,99,111,112,127,99,101,96,101,106,81,104,106,112,112,96,111,102,101,108,123,103,90,108,107,96,110,95,87,100,102,88,105,112,116,106,98,116,113,105,99,97,96,104,109,117,103,98,100,105,111,120,103,90,96,110,99,116,102,97,97,114,105,95,109,104,109,104,98,109,109,109,82,106,108,105,107,106,111,113,85,113,100,109,114,113,107,108,104,115,125,115,103,103,101,91,92,105,105,109,90,112,111,85,106,107,115,106,97,120,106,103,74,120,106,103,106,113,114,112,116,109,96,96,117,111,100,107,109,98,113,113,104,102,108,108,102,107,97,109,107,108,107,104,109,119,105,102,104,102,106,106,117,118,108,114,115,109,102,98,98,90,110,116,96,91,115,104,112,107,110,107,93,114,118,95,115,95,98,107,94,117,117,104,107,103,109,114,103,113,114,103,117,113,102,107,112,90,95,95,101,107,115,107,108,112,97,110,96,100,109,110,123,105,109,102,112,103,112,70,117,106,118,106,91,108,106,93,97,116,121,111,112,97,109,95,107,108,119,101,113,102,113,68,101,103,101,104,106,109,112,111,100,108,121,107,109,110,109,109,109,91,104,106,100,106,101,105,99,102,104,99,113,101,105,119,118,92,126,112,95,106,107,101,110,117,97,107,102,102,105,105,121,95,106,102,104,107,109,114,108,102,112,112,110,102,104,77,107,119,104,111,110,101,110,107,94,98,107,110,119,107,104,112,93,104,103,105,110,94,106,105,100,118,96,106,110,95,113,107,114,105,102,107,110,98,111,113,124,118,101,110,118,102,106,106,102,104,107,104,100,106,117,96,109,105,103,101,104,96,112,104,104,98,104,106,97,105,121,119,112,83,99,111,83,110,111,117,92,104,102,113,110,98,96,117,105,103,102,115,94,112,108,104,106,110,116,106,107,94,108,115,105,100,115,106,106,113,108,102,113,100,106,102,100,92,107,106,103,106,109,107,112,104,113,117,119,97,109,100,104,93,106,96,108,107,105,102,93,102,111,97,111,103,111,115,100,86,109,105,95,106,81,105,101,112,98,115,110,103,106,108,106,100,103,113,100,100,109,110,103,94,121,103,107,105,114,107,107,95,104,104,109,109,101,88,95,114,113,106,106,108,98,113,99,111,104,109,105,104,108,113,104,108,103,119,109,116,103,100,108,84,109,103,106,104,102,104,98,103,108,108,126,94,118,107,84,111,112,103,111,104,112,101,103,110,108,105,88,111,97,70,109,97,84,106,102,104,103,104,111,107,96,94,97,98,102,93,110,101,106,108,115,112,102,96,101,100,103,119,108,98,97,111,105,110,117,112,114,110,90,122,102,110,110,102,111,106,101,112,107,108,88,115,106,109,105,103,112,112,106,116,96,113,110,107,99,97,100,108,113,104,113,107,88,116,105,108,95,98,102,124,106,100,105,106,96,136,103,102,118,99,114,105,101,95,113,100,116,109,109,113,118,115,105,132,95,102,109,102,106,115,95,118,105,99,101,99,113,100,104,95,131,110,102,105,95,102,110,107,111,104,101,107,105,104,102,104,113,112,94,101,112,100,106,99,105,104,109,104,101,107,106,109,110,106,106,109,99,101,107,105,108,108,89,112,102,103,110,117,94,108,100,111,112,104,96,99,100,116,111,95,113,108,101,100,109,109,109,110,104,103,116,99,109,106,115,108,109,105,105,111,96,113,107,105,112,102,102,111,119,99,98,101,106,110,109,109,109,102,101,102,104,105,94,100,106,105,111,113,106,121,114,106,105,100,98,99,107,117,109,114,103,100,69,106,117,99,101,109,102,105,87,102,127,100,102,107,95,108,108,87,96,115,114,119,92,105,78,102,108,108,106,108,117,94,115,109,103,99,117,106,105,102,99,107,106,107,100,103,100,104,119,109,98,109,106,113,114,99,110,114,97,100,99,91,113,103,95,103,99,101,119,105,95,114,109,94,92,90,94,102,98,104,93,102,112,111,109,79,119,114,108,108,76,111,98,87,107,102,107,108,91,99,111,89,106,112,125,88,108,98,104,106,94,92,99,106,103,106,114,110,94,111,110,105,91,111,100,101,103,99,102,92,112,115,110,95,90,103,107,91,103,94,98,106,99,103,102,110,106,101,105,105,102,97,103,112,107,77,98,100,102,95,109,121,104,97,104,106,110,106,100,98,113,99,103,109,107,103,102,100,104,111,106,102,105,105,105,100,108,108,110,100,103,114,97,108,102,109,113,99,110,95,98,105,74,103,118,93,113,105,102,106,67,105,97,98,110,106,111,114,95,96,103,97,109,106,110,113,92,104,97,113,107,109,107,98,111,111,102,94,89,112,104,102,102,95,104,103,103,104,117,119,102,111,99,107,108,100,88,104,99,108,101,104,95,97,117,109,120,106,104,98,96,113,109,101,96,99,111,103,93,109, +602.14294,100,109,105,97,94,105,106,100,97,107,104,108,72,101,102,111,116,107,114,103,111,106,109,112,104,100,108,105,96,106,104,114,96,109,104,99,98,87,97,95,104,101,110,93,100,96,94,107,108,117,103,103,116,106,101,108,105,102,102,108,100,110,105,112,100,106,100,95,109,95,105,82,105,106,92,111,95,102,111,107,105,98,98,91,99,104,96,102,100,98,99,102,105,106,92,108,105,106,106,99,112,103,90,103,107,104,101,100,100,116,103,106,104,78,96,116,98,110,90,105,113,100,103,107,115,105,110,79,108,107,102,88,86,108,120,98,95,113,111,111,86,93,99,106,92,96,107,102,101,100,101,107,101,94,105,100,102,108,111,99,93,93,108,99,106,93,104,94,98,105,108,95,99,98,97,106,105,99,107,101,108,92,117,99,102,91,92,99,100,90,105,107,99,106,111,102,94,117,105,101,100,103,102,103,95,112,100,99,95,110,77,108,92,100,107,98,102,99,103,106,100,90,105,104,99,97,110,116,98,104,97,116,123,114,106,112,113,115,90,110,112,101,115,102,96,123,99,95,103,110,103,111,97,89,112,105,103,110,95,100,97,97,109,108,109,103,99,77,111,105,111,107,111,107,96,88,116,99,99,95,107,99,93,117,104,112,96,105,109,105,96,103,103,99,118,108,105,104,107,106,106,98,83,110,96,95,102,100,118,96,94,114,110,103,102,109,107,104,109,91,100,94,107,99,108,102,102,107,116,102,120,98,105,102,106,119,101,114,104,109,99,107,99,97,104,100,118,107,97,109,95,118,100,102,109,109,106,115,98,103,102,98,104,81,110,103,69,108,98,106,107,107,114,107,103,102,103,96,111,100,87,111,103,110,104,103,99,108,113,108,102,97,91,99,113,106,104,98,98,107,90,102,102,95,108,104,98,104,108,104,82,97,101,106,96,84,102,99,78,100,100,101,110,107,97,105,100,107,102,114,92,110,93,110,108,95,99,98,98,109,102,103,105,105,101,92,89,99,99,98,94,113,93,110,96,103,91,107,112,105,129,100,108,101,104,105,92,69,100,103,110,108,116,102,94,103,97,112,103,95,108,105,105,92,95,93,101,114,92,105,123,128,109,102,93,101,100,103,110,100,107,112,95,106,113,104,102,106,106,100,113,104,101,102,93,101,102,102,98,112,113,106,111,102,99,101,101,105,112,110,95,96,104,109,109,95,108,110,105,107,98,100,102,106,122,103,106,95,102,100,76,99,111,84,90,102,104,97,90,114,108,103,110,109,98,87,101,94,111,96,100,101,108,102,101,111,98,86,101,96,104,98,100,96,107,90,103,118,109,110,111,102,100,93,120,107,99,98,110,99,100,110,109,108,103,102,110,108,103,109,97,107,101,111,116,98,123,107,108,83,107,105,92,110,102,96,97,113,96,102,107,99,95,104,97,110,101,100,102,100,98,98,110,103,109,95,120,91,108,104,106,98,88,102,101,106,104,116,106,106,100,117,107,109,96,97,105,101,98,95,102,100,94,108,104,105,99,109,109,102,109,103,117,96,96,99,103,108,108,98,111,118,107,99,114,101,101,108,116,100,104,100,97,109,100,95,95,109,99,100,98,101,102,102,101,101,106,117,113,100,99,98,111,107,114,101,108,109,109,114,105,98,103,104,106,108,109,109,101,95,102,104,109,83,106,94,117,107,100,99,111,117,112,91,108,109,102,103,100,104,103,98,105,94,103,106,95,108,98,107,103,104,92,106,105,106,105,110,107,101,104,100,91,111,100,113,115,100,111,101,110,99,97,102,109,105,110,95,108,106,96,109,116,103,106,114,107,109,105,99,103,105,106,103,103,108,103,100,108,94,113,113,97,107,100,116,104,99,115,110,95,99,116,116,100,109,124,98,114,97,105,110,108,96,97,100,101,95,107,93,112,100,109,96,116,114,101,100,121,102,104,102,112,109,112,75,102,105,105,108,114,104,78,107,94,98,110,103,105,115,113,107,110,117,106,109,102,90,100,99,92,108,117,110,106,101,103,106,105,103,112,101,112,104,111,102,97,113,111,102,100,91,67,104,109,103,108,82,91,114,111,120,110,95,105,110,112,98,113,101,100,98,102,101,98,102,102,105,102,100,104,95,111,98,108,101,104,102,100,102,103,110,103,109,113,111,109,105,113,106,110,108,109,105,107,107,100,96,99,103,107,108,90,110,95,106,93,106,102,108,99,104,115,99,94,95,101,97,97,98,105,105,106,95,97,100,107,114,112,113,109,100,99,89,114,114,105,107,106,94,104,111,103,114,92,100,116,94,97,103,119,99,107,110,106,91,100,99,105,100,112,121,107,111,117,96,98,116,114,114,128,139,125,136,144,135,139,132,153,107,121,135,127,124,121,113,117,105,117,112,96,121,116,115,109,98,107,93,100,100,107,105,111,110,101,98,114,89,101,104,86,94,104,109,105,102,94,94,104,103,102,107,95,91,94,96,98,96,101,107,93,98,91,106,105,107,90,99,103,110,101,109,110,116,102,93,96,105,106,99,99,108,103,99,102,103,86,102,88,106,118,113,115,103,104,104,103,102,107,108,102,110,91,109,90,96,103,97,103,95,107,102,112,108,105,100,110,94,83,100,106,88,107,97,103,134,98,112,106,104,97,105,90,112,94,108,111,81,103,101,103,108,87,107,90,105,101,101,110,98,104,107,96,108,91,108,100,99,112,98,102,117,98,102,112,114,106,108,106,101,95,108,104,105,100,108,96,108,91,107,109,109,121,104,108,98,105,102,105,94,106,99,91,108,103,107,103,117,127,102,103,92,104,93,106,111,101,111,99,102,101,107,104,101,91,103,101,112,97,104,101,95,100,108,105,105,98,112,93,104,103,106,103,104,95,97,118,104,99,102,110,106,101,108,94,110,111,99,108,104,93,80,110,100,94,111,116,98,107,112,112,111,137,106,107,93,106,106,96,73,106,110,100,99,94,95,106,104,105,104,111,120,96,108,106,91,122,100,107,106,95,98,109,111,104,116,101,105,99,95,107,109,116,102,106,103,106,104,97,112,95,108,103,100,98,120,102,102,106,102,106,102,106,101,103,102,104,106,102,100,97,98,104,107,95,91,109,115,110,109,99,86,87,104,96,103,107,109,99,90,109,106,108,97,109,101,108,117,103,99,96,102,99,90,94,98,104,113,103,113,109,95,106,103,109,93,103,102,95,100,106,110,93,94,92,102,115,92,106,109,120,107,99,109,109,91,110,108,108,102,108,96,92,115,103,105,98,106,108,107,101,117,108,104,91,98,102,94,109,91,98,107,101,106,106,96,104,95,97,96,91,102,105,109,79,91,91,90,110,101,100,104,120,98,105,100,103,100,105,100,104,84,95,112,104,101,132,101,99,101,97,120,104,111,104,105,107,108,75,95,108,112,100,99,106,94,104,94,95,110,107,107,101,101,95,113,117,89,101,89,105,106,110,103,101,96,107,109,106,85,110,97,90,110,105,96,114,101,97,116,103,108,103,97,110,100,98,108,96,97,104,100,107,104,94,108,97,100,103,103,115,103,106,106,102,99,108,98,106,95,100,106,103,107,107,108,101,87,116,110,99,103,96,111,95,97,100,101,118,100,102,101,104,95,100,104,104,97,109,99,100,103,99,106,104,96,102,99,84,84,100,104,97,109,102,111,99,105,112,101,107,104,110,111,109,103,93,104,109,92,98,83,97,102,96,93,103,99,104,110,97,96,93,115,109,107,112,102,105,99,94,105,101,101,106,104,111,102,112,103,85,102,97,116,105,91,105,97,97,128,109,86,109,99,91,106,105,106,106,106,95,103,96,103,102,100,105,81,103,95,91,111,102,91,91,110,125,105,99,103,103,89,92,98,112,96,116,100,109,105,105,112,107,97,108,96,116,101,104,95,92,100,115,97,93,105,97,94,85,108,101,112,106,98,101,100,110,111,106,101,105,106,107,98,104,96,105,97,106,113,88,103,92,103,112,107,100,94,97,101,95,101,105,107,106,99,112,106,99,108,104,100,100,122,98,113,107,98,94,106,109,95,116,103,73,100,101,94,105,97,107,82,94,96,99,111,99,109,102,118,102,109,117,100,99,117,103,100,104,103,103,95,104,102,94,117,102,101,102,102,112,95,108,90,109,97,108,117,110,96,88,103,108,89,99,108,78,110,107,104,110,105,108,97,95,107,101,103,129,112,110,101,110,101,83,95,106,103,97,93,96,92,115,99,96,104,89,103,99,103,98,93,116,93,102,87,104,93,98,95,101,96,104,102,107,114,109,107,95,102,106,96,102,97,99,95,106,108,99,101,101,103,105,89,108,77,109,100,101,96,108,100,105,110,107,96,107,106,110,98,116,110,106,102,106,103,102,108,116,101,111,105,107,112,102,110,94,107,122,109,105,89,105,88,109,101,100,95,98,107,110,114,111,105,93,83,103,94,87,105,103,100,111,97,105,94,105,105,108,106,84,103,85,137,102,103,102,107,110,92,101,103,93,101,95,103,99,103,114,97,111,96,110,102,124,99,91,94,109,98,101,106,93,104,89,122,108,101,100,95,103,87,94,103,112,102,113,101,106,103,107,110,108,114,105,105,100,106,102,89,96,98,87,106,89,104,96,109,110,96,115,115,102,110,103,93,99,96,100,100,103,83,96,103,109,98,107,104,101,83,99,98,104,100,83,111,87,103,98,120,97,108,102,94,113,91,99,103,103,105,109,108,94,107,105,108,106,116,108,96,102,96,115,109,91,94,89,123,91,107,113,87,101,108,106,101,98,105,93,114,108,114,103,100,103,99,108,105,95,110,103,106,97,87,102,85,89,96,99,111,101,82,108,106,109,80,104,102,108,100,99,105,97,98,104,91,113,98,104,88, +602.284,107,86,127,119,104,115,97,95,115,109,95,101,97,98,101,104,106,113,94,112,106,109,110,105,106,100,110,109,118,104,104,102,109,95,115,104,94,103,104,114,98,95,99,103,102,109,100,96,114,113,88,104,97,111,98,96,133,98,95,101,101,78,104,95,95,105,101,105,98,95,105,117,95,112,88,109,103,117,93,88,107,97,93,119,102,104,103,126,106,100,106,108,102,101,106,93,115,97,105,95,100,92,109,92,108,107,103,107,95,95,111,116,102,106,94,98,109,95,102,111,93,95,107,104,95,108,129,103,99,113,105,102,102,96,98,102,108,102,92,113,101,104,102,101,102,107,124,97,105,99,105,96,106,93,89,102,87,100,96,101,101,106,101,99,117,104,95,98,108,101,102,93,113,104,102,98,107,103,112,100,99,109,99,103,105,106,97,92,106,97,102,113,96,102,103,102,126,88,105,101,109,114,104,112,114,108,109,101,112,94,100,113,100,107,108,101,107,107,101,101,121,113,106,98,92,101,102,116,114,109,101,104,108,105,102,122,106,94,113,114,113,118,118,120,95,110,104,107,109,120,110,103,98,108,104,106,112,95,102,113,99,107,97,104,104,110,100,99,103,94,105,111,81,91,103,100,114,104,100,107,99,105,109,103,105,97,99,95,125,107,93,108,119,96,117,104,98,113,105,98,95,107,101,103,118,97,83,110,107,117,107,106,105,91,92,100,112,103,115,106,102,102,99,119,99,98,107,95,115,97,116,106,102,95,113,109,106,105,114,121,98,101,100,94,87,106,102,99,124,90,112,104,96,121,91,111,107,112,117,108,116,89,99,105,111,97,105,103,106,120,111,116,109,95,105,109,107,105,99,105,108,118,95,114,128,93,102,97,108,112,104,106,110,111,109,114,106,91,115,105,100,110,101,107,96,95,95,111,113,97,107,106,111,115,105,117,104,108,106,104,111,98,104,103,95,112,89,112,114,110,106,110,113,100,104,101,109,105,100,102,110,100,102,103,104,89,104,95,110,96,98,95,101,119,108,120,91,116,123,104,99,101,107,103,104,102,105,115,108,102,108,103,94,104,96,106,101,119,102,97,117,100,107,105,106,99,96,109,90,98,106,109,99,101,106,98,108,105,114,110,117,94,113,103,108,103,96,108,106,108,114,98,107,106,104,109,118,109,104,85,108,112,106,111,104,110,118,115,111,102,102,97,100,94,98,98,104,112,112,104,107,103,108,120,125,105,113,108,110,104,105,107,103,105,106,98,100,99,96,98,94,113,93,107,105,98,104,118,93,104,100,106,100,108,92,108,98,100,113,118,111,104,105,104,105,97,102,112,125,108,111,100,117,102,121,109,108,97,102,100,99,109,115,107,102,108,92,89,110,107,115,111,106,108,80,101,100,104,99,96,115,111,108,102,118,113,104,110,106,104,102,108,97,118,103,112,104,111,109,103,99,118,103,103,99,98,103,106,105,102,103,112,106,113,103,106,119,110,104,95,114,109,104,112,95,99,99,108,116,114,110,105,92,106,100,104,105,102,96,104,110,108,102,105,97,113,111,105,113,117,99,100,96,115,116,110,112,117,103,94,99,92,105,92,105,100,103,105,104,107,115,116,117,109,99,106,101,109,105,117,107,113,107,110,107,104,105,109,98,109,85,108,94,108,106,102,107,91,112,107,103,110,110,97,107,95,110,105,99,107,118,111,104,99,99,113,102,106,106,107,111,110,99,111,99,104,102,118,107,103,111,102,95,110,111,100,108,83,94,99,94,102,109,110,102,113,121,107,114,103,110,101,99,121,98,114,115,105,115,111,107,107,96,103,113,108,103,104,107,108,120,102,107,103,117,99,123,101,98,114,106,106,99,106,121,109,107,109,117,135,98,114,107,112,109,107,114,97,118,119,112,121,91,107,101,97,104,102,108,113,95,89,112,113,107,101,113,125,112,100,112,105,113,107,104,113,109,111,107,80,110,89,100,100,101,98,96,103,101,117,97,99,106,108,112,104,104,99,105,122,122,106,77,117,106,100,101,88,105,92,113,103,110,101,99,99,105,103,108,108,101,101,118,108,114,114,100,108,120,114,103,109,111,105,105,111,93,85,110,122,119,108,108,106,106,96,108,109,109,106,117,114,112,112,103,99,111,100,102,103,99,101,112,115,95,94,106,99,104,108,105,107,99,106,114,98,113,118,99,107,70,113,116,110,97,112,115,106,97,107,106,105,109,102,101,107,114,90,110,116,99,108,102,113,126,90,105,107,98,113,100,98,100,110,105,109,104,103,110,114,91,106,101,112,106,107,109,100,103,109,96,119,116,98,107,107,117,91,103,115,108,112,119,92,98,130,119,91,127,127,125,147,123,119,134,142,134,130,141,123,131,135,115,133,123,123,111,105,109,107,97,117,99,92,97,112,126,110,118,107,109,106,111,116,104,102,106,107,90,79,86,96,98,109,110,105,94,118,109,105,85,108,99,96,93,96,95,101,102,108,103,81,102,103,106,112,90,103,104,98,109,114,105,101,103,89,101,109,91,106,97,105,109,96,109,113,108,108,93,101,107,86,103,109,102,95,88,93,86,96,98,110,104,111,97,103,86,108,113,110,112,117,102,98,102,102,102,100,106,107,102,105,111,100,99,107,102,99,106,102,93,116,108,91,102,105,107,100,102,95,100,100,116,103,104,116,110,102,98,104,107,107,106,99,111,107,104,109,102,119,101,107,107,107,117,96,105,105,124,108,102,100,95,110,109,112,99,99,106,108,110,117,106,93,108,107,103,139,101,98,112,114,102,102,102,109,94,100,120,117,113,101,94,102,117,103,106,97,104,111,105,100,104,108,105,74,104,100,95,104,106,101,105,113,96,113,102,100,102,117,117,109,121,110,101,99,102,109,105,113,102,101,118,112,96,115,96,105,103,107,108,103,98,101,102,97,102,99,117,100,104,104,78,104,107,101,100,104,103,109,105,115,98,96,106,106,105,99,108,103,119,97,105,116,109,99,107,110,102,109,99,96,102,103,102,102,89,101,113,106,84,107,99,105,102,107,103,100,103,114,99,101,103,104,102,108,112,111,113,98,104,108,99,103,107,106,104,100,104,102,99,106,109,113,121,108,87,118,108,110,86,105,107,100,101,101,99,97,103,113,102,106,106,93,103,89,99,104,102,104,111,100,82,102,104,108,108,106,100,102,104,97,116,108,98,106,110,116,114,110,110,105,97,99,105,104,107,108,117,118,100,113,115,89,116,99,115,106,90,96,117,98,99,104,100,108,124,103,97,107,101,102,111,109,99,115,118,105,108,106,108,116,106,98,111,102,101,107,110,121,95,94,110,99,100,103,108,81,106,105,84,106,104,104,104,98,85,102,102,95,102,97,111,105,115,106,110,105,107,107,96,112,120,109,99,101,106,103,102,109,96,113,96,107,117,102,101,112,104,105,88,91,116,99,108,106,106,111,102,102,112,110,97,91,105,109,106,113,110,99,113,106,100,100,112,103,105,112,91,107,113,93,80,106,106,108,111,112,101,109,112,114,108,101,106,103,105,121,96,117,95,97,113,105,111,103,103,99,86,98,103,118,103,103,112,106,110,107,95,99,90,102,95,111,106,102,115,95,122,106,101,100,112,109,104,104,99,93,110,101,107,97,100,106,95,102,106,96,117,95,103,116,105,104,110,94,107,111,103,93,98,104,106,121,107,100,99,112,84,114,104,103,101,105,98,112,100,95,95,114,98,109,100,102,102,102,103,131,113,99,97,100,103,95,113,111,99,100,94,101,106,87,102,98,97,89,120,108,104,101,112,95,102,107,101,93,102,96,101,110,98,111,99,96,98,115,110,109,99,109,103,102,117,104,100,113,100,103,107,109,99,118,104,109,99,113,101,101,118,74,110,94,121,112,102,125,106,102,114,105,76,110,110,118,107,97,77,102,95,111,106,124,98,102,102,113,128,101,90,103,102,110,103,110,106,104,101,106,104,102,110,107,82,102,101,110,95,112,101,101,113,103,99,105,111,98,120,112,108,105,102,116,100,106,116,110,111,102,108,95,105,94,96,98,106,113,104,103,112,89,113,102,116,99,100,105,98,112,95,100,113,106,97,102,105,116,115,102,90,107,101,100,90,111,108,100,100,70,100,107,125,88,109,104,110,100,114,100,121,95,106,111,103,102,111,90,93,114,102,98,125,108,104,112,96,111,97,105,112,107,104,101,106,98,104,110,112,120,108,100,99,109,112,100,93,107,108,117,93,110,107,104,111,104,94,106,113,104,102,107,108,105,117,109,104,96,102,94,101,109,110,101,96,108,101,92,111,92,113,116,98,100,90,102,100,100,103,109,98,104,101,103,111,109,114,122,109,103,109,101,102,96,98,95,107,96,107,101,93,98,101,100,120,87,84,103,121,108,100,100,112,104,91,127,105,110,104,97,106,109,104,108,100,115,87,110,103,97,111,105,112,90,99,104,101,94,106,93,101,103,96,105,105,113,113,103,91,107,98,106,101,90,95,104,101,99,96,103,83,109,99,101,95,110,117,103,104,108,104,110,101,111,107,104,92,106,111,104,105,109,91,97,98,103,104,97,111,106,97,98,103,96,103,100,98,108,101,107,97,110,113,89,110,110,110,95,102,105,102,87,106,95,97,96,110,102,101,94,102,108,92,104,97,115,100,105,99,101,97,109,106,120,108,109,105,111,102,102,106,106,91,88,87,103,103,101,105,106,115,105,127,92,114,100,101,111,98,113,105,103,106,116,99,110,109,95,104,107,108,104,114,98,95,106,115,107,100,118,102,101,109,94,104,97,86,98,106,99,88,113,106,98,97,117,106,112,98,99,111,102,105,98,108,96,111,99,113,134,92,91,91,99,118,102,82,109,102,106,99,109, +602.42505,115,83,95,103,107,108,109,90,104,101,106,97,98,93,106,92,99,131,98,111,111,97,96,102,101,111,103,104,95,106,97,117,106,92,98,107,114,105,109,99,95,99,97,116,99,98,114,113,87,104,99,104,107,126,100,118,112,106,117,98,110,93,112,90,105,113,102,109,101,105,112,105,96,117,99,113,88,105,92,107,104,95,107,103,103,95,102,106,99,106,100,98,108,101,113,98,104,99,97,104,103,112,111,99,99,118,84,102,98,106,113,98,109,95,97,99,101,105,90,103,103,102,104,91,100,113,103,99,114,113,97,105,103,105,113,114,100,104,100,80,107,100,83,101,91,98,112,99,100,106,100,107,109,105,108,109,101,103,111,104,92,96,134,113,99,96,98,98,94,108,103,109,89,114,96,98,100,96,111,108,106,102,95,105,109,103,110,91,103,126,109,108,96,110,109,94,90,117,95,103,106,104,110,107,115,109,90,109,99,102,99,98,109,103,99,103,105,109,100,105,102,113,101,105,91,115,122,121,101,114,92,107,109,99,102,103,105,108,123,110,94,117,108,102,106,105,104,108,100,93,96,105,96,93,107,92,107,113,99,102,91,103,108,99,103,112,108,107,105,108,96,104,104,108,98,114,99,72,107,100,109,100,115,101,106,99,98,101,104,112,102,104,113,127,103,107,104,102,99,106,117,103,104,117,87,109,111,105,99,102,107,110,113,96,113,93,100,98,101,99,97,114,109,108,110,110,79,116,138,101,95,102,116,101,107,109,96,105,103,91,112,112,100,105,90,110,126,120,128,113,108,94,103,107,115,107,99,108,97,104,106,109,106,100,91,105,104,118,102,111,116,108,99,101,96,103,97,102,89,106,99,107,97,110,107,104,91,106,116,95,102,108,99,104,92,114,99,103,115,101,102,106,109,117,101,102,119,110,122,107,91,113,105,103,114,102,106,79,98,95,106,96,102,105,92,105,105,99,109,118,121,98,92,106,103,101,96,105,106,108,102,99,100,95,100,91,108,104,107,98,110,107,116,103,105,100,97,104,102,100,93,102,118,107,110,108,102,100,107,95,114,114,105,106,106,104,107,106,115,101,102,108,103,98,96,96,105,101,109,105,119,102,99,93,97,109,91,93,94,97,103,107,109,109,107,102,90,102,106,81,103,105,103,102,107,112,82,105,90,102,108,122,103,95,107,96,104,108,102,107,88,106,93,101,100,116,119,99,104,135,103,102,99,98,110,113,95,104,99,109,103,109,96,110,98,102,111,112,98,106,111,108,101,95,107,107,108,98,104,111,103,104,101,102,108,103,114,98,104,101,106,110,94,85,104,89,107,111,92,102,105,114,102,109,106,107,111,117,106,104,102,117,111,94,108,94,106,110,99,115,107,104,84,107,93,101,108,92,110,91,112,88,103,98,106,98,111,109,109,91,112,95,92,107,103,102,100,90,95,98,107,110,105,96,104,103,102,100,130,99,86,102,95,106,100,102,103,106,106,103,115,104,99,104,102,107,100,101,146,103,114,102,110,109,87,101,101,105,109,98,112,107,117,106,102,109,96,114,126,115,99,98,116,100,98,101,100,99,102,95,102,90,112,104,106,100,97,103,95,126,114,117,91,113,107,101,110,104,88,98,85,103,108,104,101,100,107,107,111,111,108,118,103,95,99,101,112,99,104,97,107,91,116,108,109,103,103,103,98,108,105,108,99,100,110,99,110,96,87,102,92,106,107,111,88,110,91,107,99,97,112,121,98,98,99,102,104,110,95,95,105,99,99,120,111,108,93,115,95,100,102,103,111,113,108,96,103,108,114,101,102,103,103,101,105,106,101,108,100,99,104,113,103,88,104,106,108,98,117,91,100,105,108,108,106,98,110,100,105,98,108,97,115,99,102,105,81,103,98,108,104,105,102,109,95,106,100,107,100,99,110,86,93,98,107,113,104,134,100,110,99,101,106,108,103,101,109,108,99,106,110,110,110,104,111,106,106,108,100,108,100,97,111,96,98,109,95,113,102,100,105,107,100,113,107,89,100,118,100,100,114,108,97,98,101,79,93,103,104,90,102,100,107,103,104,112,105,98,104,118,109,106,99,97,99,111,122,115,100,104,90,110,130,103,102,106,98,92,103,105,98,108,111,106,114,96,110,102,101,105,100,105,107,103,112,140,108,103,101,99,109,110,111,96,107,115,106,98,101,120,100,114,109,99,101,102,115,102,103,102,111,118,107,99,93,100,100,96,125,106,100,109,106,96,100,99,109,119,107,116,113,109,87,109,95,93,109,112,110,114,106,104,100,106,93,117,98,98,99,104,128,104,111,98,111,104,102,116,120,106,117,109,112,104,112,99,103,122,125,130,126,130,133,122,121,128,116,99,109,164,128,145,117,122,120,120,116,103,120,110,98,108,114,100,107,106,100,105,107,102,100,108,105,118,96,98,121,100,109,94,105,102,99,105,104,105,102,133,107,112,103,105,104,73,97,91,110,106,115,109,99,110,111,95,101,105,97,104,113,107,104,112,102,92,109,103,110,100,103,95,119,94,101,99,117,100,108,103,102,110,107,105,112,97,105,107,100,106,101,91,110,98,91,117,109,110,100,92,107,93,109,101,110,99,89,120,103,78,102,110,98,97,104,93,105,94,110,106,104,102,104,100,110,92,104,91,101,91,107,95,108,110,96,107,98,100,115,111,113,105,106,97,109,103,107,113,121,131,110,97,105,113,95,107,91,108,96,99,98,108,129,103,102,119,90,115,108,99,111,85,104,101,101,102,111,98,93,102,96,95,91,89,95,95,105,104,104,113,102,118,105,110,105,100,105,109,108,105,92,109,107,101,125,107,96,109,97,104,107,113,107,103,102,103,103,113,95,114,96,133,112,98,107,94,103,96,108,99,107,121,80,107,103,107,101,111,117,100,90,106,104,99,100,102,106,113,91,91,112,106,106,106,114,113,105,104,103,107,106,93,103,121,105,97,106,111,99,107,96,87,112,112,114,100,106,107,108,122,105,117,95,109,97,105,113,103,101,96,103,100,104,105,112,102,95,108,99,105,99,125,92,106,116,95,98,104,102,102,109,98,71,106,104,108,108,105,114,103,95,110,100,94,106,112,96,95,97,102,106,119,105,104,103,114,102,100,104,98,115,98,105,113,99,115,121,97,94,93,112,116,106,111,96,108,108,107,103,104,112,102,93,103,99,97,117,91,105,106,119,101,102,104,99,118,97,103,108,102,118,100,115,108,103,112,96,102,100,107,92,110,100,105,108,109,104,104,91,105,102,104,104,98,96,110,100,102,110,109,108,96,118,98,107,95,113,95,102,99,92,101,87,106,105,108,102,107,106,98,103,111,99,105,112,110,104,101,101,99,100,106,86,116,96,106,103,115,96,95,107,115,93,104,95,106,98,113,108,114,99,93,110,95,101,108,113,110,114,120,108,96,100,105,108,103,108,104,105,99,100,99,108,110,96,111,99,106,101,102,102,126,103,119,106,102,119,102,88,100,115,106,115,98,100,99,98,105,114,107,95,118,99,90,105,102,94,94,98,103,94,89,102,101,84,98,91,100,95,103,99,104,102,98,100,108,101,107,92,108,100,106,95,101,108,108,112,91,103,107,103,90,103,107,103,88,103,106,99,96,104,97,87,97,100,106,109,98,91,111,104,101,102,102,103,116,102,109,95,105,106,111,109,111,113,97,93,101,103,106,109,98,114,109,103,102,101,111,92,103,117,103,92,102,99,89,105,108,87,117,105,105,98,100,104,104,99,102,105,95,107,105,87,106,87,103,112,107,108,100,92,101,108,100,105,101,110,103,92,98,91,111,100,111,110,100,106,102,116,102,96,104,104,105,109,99,107,100,94,96,104,104,100,99,112,106,107,66,103,102,104,112,104,104,96,104,107,109,100,93,103,103,106,97,105,100,103,104,107,125,105,110,109,107,96,95,101,110,102,101,94,99,104,118,96,125,99,101,109,103,99,101,113,105,93,104,111,97,105,98,104,107,115,99,105,101,95,100,106,103,103,102,113,98,94,88,103,79,105,102,90,117,104,99,99,100,106,110,107,106,93,104,111,112,106,98,104,116,101,108,105,112,106,104,112,72,115,104,100,99,95,100,108,100,99,114,102,101,94,108,103,97,91,92,91,94,108,88,106,98,115,94,108,104,102,100,115,114,96,98,112,98,113,116,102,112,100,97,108,96,104,102,107,93,103,112,102,104,95,111,100,95,98,106,113,96,98,98,100,103,96,97,105,92,110,115,102,95,103,111,108,100,99,113,125,105,109,101,104,109,96,107,98,116,88,100,107,95,125,110,88,99,107,101,116,99,103,78,116,99,103,102,98,75,121,111,98,105,112,99,100,107,114,103,105,101,99,104,101,92,107,105,101,100,111,125,106,111,98,104,95,102,109,103,105,94,108,100,94,103,91,98,94,110,113,99,100,83,97,102,106,105,105,99,98,101,101,98,103,96,101,103,82,100,102,116,101,97,71,96,103,128,72,105,96,100,111,108,99,112,94,104,97,102,110,106,100,97,108,114,98,90,97,103,103,109,117,112,114,88,113,103,96,95,101,96,100,101,98,107,103,112,111,107,102,110,96,104,110,117,99,102,110,94,99,102,107,94,106,112,102,105,116,106,109,107,100,107,111,101,117,101,101,106,106,93,100,102,105,109,108,96,107,117,105,103,102,120,109,93,95,104,93,102,95,94,93,106,112,93,115,104,108,87,98,101,112,102,87,110,110,110,109,98,104,96,102,93,111,106,114,123,105,111,118,106,101,104,101,94,99,111,106,96,97,109,116,104,99,109,96,110,108,106,104,96,99,106,96,102,100,85,104,104,104,103,113,108,91,107,103,94,103,96,103,95,107,100,114,98,95,92, +602.56604,110,109,101,101,106,111,102,83,104,112,97,102,96,94,107,99,88,100,108,99,96,97,109,99,108,112,98,109,99,104,101,98,107,101,105,100,94,98,95,95,115,100,100,108,112,78,99,110,112,113,107,107,117,116,106,110,107,101,120,109,101,107,100,73,78,102,99,94,92,104,120,104,95,99,96,114,82,92,114,103,98,99,106,110,100,91,88,101,111,96,111,99,77,104,98,91,98,87,109,90,118,97,101,91,108,96,100,106,99,95,98,109,89,98,112,96,87,101,92,103,113,137,95,116,106,99,108,106,101,106,103,102,94,104,98,96,103,114,101,99,110,117,109,117,99,98,105,105,112,104,106,111,100,90,99,114,106,96,100,117,99,117,103,103,93,93,113,84,102,95,95,107,111,103,101,106,102,105,108,104,118,104,106,114,106,103,95,97,118,110,98,101,110,108,114,104,103,104,110,96,110,102,98,106,108,116,100,103,109,122,98,99,104,98,104,95,117,100,99,113,92,95,108,105,94,95,108,106,83,119,117,95,107,92,101,106,118,107,100,96,100,109,99,87,98,99,97,103,98,103,91,99,106,95,107,100,111,104,110,103,102,105,94,95,97,98,92,100,110,110,107,100,121,96,101,104,113,125,108,113,98,107,108,99,102,98,93,103,92,103,97,98,104,98,111,103,104,103,109,109,96,91,101,101,92,115,96,97,109,109,106,103,105,110,95,101,116,102,99,98,100,92,106,91,112,113,96,101,116,102,103,102,104,96,91,101,115,112,91,100,102,114,102,91,105,104,104,106,111,119,106,97,100,109,112,109,101,111,106,92,104,113,112,102,109,114,117,111,93,104,107,103,105,101,115,102,105,111,103,102,105,128,109,105,107,91,103,102,103,105,110,93,88,100,102,106,95,106,103,98,106,95,105,97,88,100,101,105,99,102,82,89,98,107,108,100,99,103,110,98,96,110,101,104,104,105,111,109,104,122,98,76,107,93,103,114,102,93,101,90,104,108,112,113,64,113,99,108,96,125,100,110,106,108,97,108,96,105,103,94,97,102,101,105,102,110,113,97,96,104,105,107,111,92,91,103,98,121,100,96,100,123,104,96,104,113,113,109,94,103,106,110,112,112,92,105,104,114,107,117,113,103,103,107,110,101,128,101,112,102,101,104,117,98,101,110,118,101,109,111,101,93,103,118,108,112,112,98,114,94,106,109,102,120,98,101,105,93,101,109,99,96,110,103,107,109,95,98,106,112,102,103,107,100,95,107,95,106,104,105,106,100,109,103,101,91,93,103,97,103,98,101,106,103,101,101,94,106,103,98,103,106,103,110,106,105,99,107,106,109,113,100,99,108,109,105,103,108,105,103,106,118,118,104,109,99,109,94,101,100,101,107,108,104,101,99,116,101,111,96,95,92,100,102,107,116,103,102,113,98,106,98,97,107,88,109,98,109,105,99,105,107,105,93,102,110,94,113,105,105,95,107,95,104,111,104,127,94,111,114,110,113,103,108,113,109,106,105,99,110,116,111,103,104,108,103,105,112,109,105,90,110,120,110,108,111,118,116,109,108,134,111,103,107,95,97,98,121,109,104,90,106,94,101,89,108,128,117,109,124,96,105,108,109,117,103,114,93,107,107,107,101,116,103,107,98,105,104,123,109,103,102,102,99,101,97,108,119,104,115,113,86,95,99,101,115,114,113,98,103,109,100,100,103,112,113,115,91,121,98,107,98,111,97,105,103,106,103,102,102,99,117,111,105,106,106,109,108,114,104,103,104,113,117,117,113,105,114,112,107,103,110,96,112,93,108,109,110,124,120,109,102,100,102,110,110,96,122,101,114,111,111,115,101,101,102,103,97,116,94,102,105,112,111,77,92,109,103,101,102,115,103,102,102,107,107,105,105,104,99,102,95,100,106,105,102,95,93,101,101,105,99,117,96,109,100,83,108,107,104,104,112,103,101,96,102,95,103,103,108,98,108,104,99,93,108,106,105,110,98,115,117,86,110,93,110,99,124,117,106,110,116,97,109,108,101,98,100,108,104,118,97,105,106,103,97,106,102,105,100,107,114,103,103,98,99,98,103,102,97,109,94,116,110,98,110,112,112,105,98,109,106,112,119,99,98,117,103,108,104,107,114,97,102,110,110,78,109,105,102,105,104,115,99,110,98,110,116,107,107,108,80,105,86,106,107,99,112,95,103,87,120,117,107,105,106,111,97,108,83,98,105,117,111,85,98,108,92,84,112,111,117,101,101,93,94,99,100,122,105,124,102,98,101,95,105,108,102,107,114,100,108,102,100,101,94,99,99,92,107,106,99,108,91,120,113,105,117,106,122,103,124,102,111,110,114,118,113,120,119,112,131,139,146,122,157,144,137,119,137,150,138,132,115,105,124,112,119,113,103,108,109,107,105,105,100,111,112,112,113,107,109,106,105,110,107,87,119,101,110,109,113,96,102,101,120,109,91,106,98,104,104,109,117,113,114,113,97,107,106,98,101,102,109,78,101,100,110,95,109,103,111,103,98,104,99,105,101,91,119,92,98,107,120,99,93,100,89,95,107,107,102,105,109,106,97,105,101,97,100,109,102,100,104,95,107,110,111,106,98,109,94,99,105,109,112,109,97,97,112,106,94,87,103,116,114,105,100,116,103,99,102,101,96,111,95,85,103,104,93,101,96,99,107,95,105,103,87,115,108,96,109,98,97,96,112,98,106,99,117,108,112,99,96,113,94,103,108,95,102,104,113,96,109,103,122,103,112,111,117,100,106,105,106,107,92,98,100,95,101,103,101,106,107,108,101,103,91,121,112,116,105,117,103,107,101,104,100,100,97,103,104,102,103,96,97,100,112,100,92,111,108,110,112,103,118,101,101,109,98,111,91,121,110,115,99,102,94,101,108,103,96,116,101,102,115,105,107,116,106,112,105,109,99,110,108,106,113,99,101,98,103,111,108,100,96,103,106,96,98,103,100,109,97,96,96,110,104,108,112,116,107,100,114,106,96,102,88,100,104,115,101,103,77,95,109,111,106,116,109,100,98,108,107,108,95,109,124,98,111,107,96,103,107,102,111,106,100,107,109,113,124,103,106,116,102,95,101,106,102,108,104,104,107,108,96,95,82,116,104,96,97,106,98,107,90,110,102,106,95,103,106,105,112,108,116,115,99,108,112,96,100,111,112,105,100,112,112,74,104,116,95,102,104,110,102,111,100,100,109,108,101,112,102,101,97,110,114,105,94,106,107,112,112,101,98,97,106,99,105,98,95,93,80,104,109,110,101,109,102,98,117,103,120,112,99,102,104,108,96,103,95,111,121,94,95,113,82,96,95,98,117,109,96,111,98,111,104,114,108,101,107,102,107,109,100,107,101,114,100,113,115,104,99,112,114,119,111,104,103,95,109,103,125,119,104,123,87,112,110,109,98,100,103,106,101,101,109,115,103,102,104,102,103,101,104,120,104,116,101,99,102,117,100,95,117,104,97,101,95,99,111,108,108,98,102,99,107,106,97,106,98,98,120,109,118,107,102,113,100,100,105,99,104,106,101,96,105,96,113,106,111,97,116,88,101,109,101,102,95,108,110,105,101,78,75,98,99,105,105,96,100,89,90,101,101,105,108,102,101,105,116,103,101,107,95,94,98,101,98,112,110,107,105,111,98,104,93,105,96,111,107,113,109,98,110,102,107,100,102,106,109,103,106,107,89,94,100,106,102,101,101,95,90,104,101,102,107,119,105,107,92,97,120,114,96,100,101,106,117,110,104,101,93,91,113,98,102,108,98,101,98,102,89,74,104,107,101,95,110,103,99,105,103,105,115,105,102,94,95,102,108,105,93,105,95,103,94,108,98,121,101,108,108,102,105,92,104,102,101,98,99,105,101,113,90,106,98,101,112,95,108,104,109,102,110,104,97,99,103,102,95,107,100,112,106,102,85,96,111,101,101,97,108,112,96,106,105,102,106,100,94,101,99,94,115,103,105,108,102,104,100,101,108,110,100,94,104,111,102,105,108,100,81,101,110,120,115,114,116,109,99,108,93,117,116,97,92,106,108,117,111,107,105,93,103,103,102,110,97,104,102,99,102,104,108,103,97,101,110,108,101,111,99,106,109,112,111,109,100,113,98,96,102,90,98,109,108,107,104,100,96,105,103,101,100,109,108,105,91,109,109,105,89,110,105,110,111,107,112,100,104,99,103,111,104,110,114,94,103,100,105,112,105,96,117,100,100,102,103,111,108,109,92,102,98,108,101,100,106,94,110,101,112,100,93,109,99,107,99,93,109,108,99,103,102,110,108,103,110,93,97,105,105,98,103,106,108,95,102,106,103,104,104,87,97,105,97,95,100,97,109,108,112,95,100,116,108,117,106,107,117,103,105,103,97,107,99,96,106,103,95,104,110,82,109,91,108,102,110,105,113,117,89,101,103,93,100,97,105,112,102,111,108,96,90,105,108,100,91,106,113,101,102,104,109,104,105,105,105,105,111,112,107,123,105,102,110,102,107,101,100,92,98,104,105,94,102,115,110,113,99,98,92,100,113,101,112,112,111,106,111,106,100,104,101,104,97,94,101,104,103,102,116,100,103,106,102,104,98,105,116,108,113,98,104,109,106,110,98,107,107,99,101,103,95,104,103,98,88,109,93,121,107,95,97,98,106,94,99,95,109,98,102,109,104,101,102,108,94,99,105,103,94,106,101,105,96,88,80,96,97,98,104,110,99,105,107,105,109,100,106,102,94,90,119,102,104,109,108,97,107,91,92,110,98,102,106,102,106,94,105,104,104,98,108,113,97,96,104,102,116,98,106,103,84,97,102,99,97,104,95,117,87,121,100,84,99,114,99,113,97,112,120,100,104,107,105,109,115,105,94,111,93,113,104,101,102,91,81, +602.70709,105,100,107,95,111,109,110,103,104,102,103,96,102,101,84,95,114,96,99,102,118,99,95,118,113,99,109,117,101,106,120,104,99,111,122,105,103,101,105,117,87,105,102,109,88,104,109,108,94,101,101,110,105,107,96,103,109,106,93,95,109,106,95,100,100,103,103,110,108,78,93,109,99,112,99,121,97,100,96,111,107,101,117,105,101,99,106,118,114,98,99,104,97,98,99,99,97,109,110,96,114,109,105,80,106,99,100,118,95,97,101,110,76,107,92,83,104,108,108,104,107,111,105,114,108,105,104,105,116,113,105,116,103,100,111,106,105,101,104,104,98,101,99,95,110,104,109,109,105,105,110,97,107,94,80,98,111,99,108,112,102,94,114,115,101,93,112,106,102,101,105,108,113,96,97,107,116,94,114,103,99,94,119,126,116,98,106,104,110,105,109,110,103,109,109,97,109,103,104,112,107,110,105,111,102,120,98,103,109,115,93,117,109,95,104,104,134,99,96,91,108,104,111,105,95,107,107,99,110,111,95,101,112,103,116,105,105,112,94,104,104,101,104,104,90,104,111,100,108,101,111,101,113,103,97,108,100,104,99,106,83,91,99,105,90,107,105,85,102,101,102,103,112,99,100,94,100,98,102,108,120,112,106,103,102,110,100,130,105,112,106,102,104,90,103,100,100,114,110,100,93,118,105,107,99,116,110,110,104,112,113,109,108,100,102,108,113,105,106,96,112,98,105,100,103,102,95,96,111,99,110,96,102,102,110,114,108,106,113,109,107,109,107,93,102,106,110,101,117,86,92,102,107,102,105,103,139,113,104,109,109,122,100,106,100,105,94,108,107,103,102,114,113,94,100,90,106,104,100,109,108,114,103,90,98,109,99,99,109,99,100,73,100,95,99,109,114,109,108,93,97,91,108,100,101,106,90,113,105,100,109,98,98,102,116,106,109,100,115,105,102,102,96,107,97,93,100,100,112,117,107,91,91,90,100,109,109,123,107,109,101,101,107,103,95,103,137,103,106,104,107,107,107,104,94,92,104,98,100,102,109,105,106,108,117,102,106,101,119,109,112,109,102,107,111,91,102,111,113,107,101,105,116,99,108,106,137,89,99,102,100,107,101,114,91,101,108,105,104,98,116,112,108,117,112,108,90,113,100,102,100,109,108,103,101,106,117,100,95,105,99,110,92,118,105,91,103,106,101,107,84,110,107,79,97,108,105,90,101,107,115,104,102,98,111,108,106,84,102,104,115,95,108,103,115,109,106,102,105,105,101,108,95,103,111,100,108,106,113,111,97,69,100,103,105,111,111,102,109,110,103,108,101,103,102,91,110,83,107,106,106,109,105,103,106,106,91,108,107,109,113,107,111,95,99,108,112,114,104,110,107,94,67,104,115,110,114,94,100,113,102,97,100,108,101,104,105,110,109,115,100,98,76,103,113,120,100,100,120,101,100,101,104,103,95,100,103,101,122,104,94,108,108,106,95,121,104,108,109,105,109,101,113,107,100,104,139,109,100,107,103,112,97,105,91,100,113,104,100,102,101,108,103,97,102,108,101,107,102,99,101,113,95,100,106,104,105,107,109,91,104,97,102,106,96,108,120,108,91,107,106,98,104,98,91,107,105,111,100,92,90,105,102,114,113,108,91,104,102,103,113,93,103,103,94,102,112,113,103,103,125,109,105,106,119,110,117,106,99,109,115,96,96,109,99,100,114,101,113,116,101,103,104,87,93,102,79,103,105,113,104,91,111,109,95,103,105,111,107,106,107,103,110,103,113,120,105,106,100,122,108,112,102,126,103,111,107,101,113,97,103,94,96,113,108,106,114,105,108,108,114,117,97,97,112,111,113,116,101,103,92,97,101,107,106,102,105,111,103,109,115,109,102,104,109,108,100,108,112,103,109,107,100,105,105,103,97,91,107,97,96,103,101,116,98,113,107,109,125,111,103,109,99,99,104,109,97,116,121,107,100,104,90,107,109,100,106,107,99,105,102,109,94,92,102,105,109,112,107,114,116,115,116,113,103,114,108,119,118,117,105,107,113,112,114,109,96,115,108,105,109,102,107,107,98,120,104,103,100,102,100,105,107,109,98,104,112,102,109,114,94,92,108,118,110,102,109,105,112,112,115,118,113,99,122,110,113,111,112,111,99,108,106,103,115,104,96,101,99,101,100,115,104,103,100,107,98,106,104,100,106,97,105,101,115,97,106,104,103,109,103,95,94,99,95,108,99,103,111,105,89,105,102,105,108,108,100,94,105,125,106,106,95,95,113,118,119,109,102,110,96,113,101,115,104,96,111,105,109,110,107,100,110,101,111,112,116,120,111,105,102,107,120,114,117,100,113,113,105,121,128,138,138,129,124,135,125,113,136,132,121,122,124,120,125,113,109,125,128,115,94,109,100,107,113,111,95,84,104,100,115,124,106,102,104,94,121,87,105,77,107,113,114,134,106,121,95,100,109,110,113,101,117,100,107,113,104,103,115,126,100,93,99,105,129,101,103,108,109,112,98,94,96,99,103,109,126,109,105,109,99,91,100,97,102,113,100,104,105,79,106,109,93,94,103,96,104,98,104,101,101,98,103,111,95,104,105,106,97,99,122,108,113,110,105,97,108,106,110,105,100,89,109,93,116,104,109,104,124,99,102,96,106,116,92,120,102,98,108,98,112,94,97,103,110,101,112,103,93,98,101,101,108,108,100,103,108,87,95,109,101,77,105,97,105,110,100,109,101,89,100,90,110,112,105,109,99,116,100,99,112,94,85,105,107,103,114,127,98,106,115,110,98,107,101,110,113,116,106,81,110,122,107,119,107,104,123,106,104,106,110,113,107,103,99,99,119,110,112,110,107,99,110,98,109,95,106,101,98,112,115,108,108,121,122,102,107,112,121,111,110,106,109,91,105,113,99,96,83,103,119,114,108,102,95,105,102,104,112,108,97,102,102,104,95,104,109,102,109,105,102,84,100,103,90,86,98,105,107,99,108,98,108,113,108,95,104,102,112,80,103,102,102,98,116,104,103,107,95,99,97,103,125,96,103,100,101,94,104,101,109,95,100,117,107,98,100,108,95,122,98,116,98,103,98,106,94,98,100,98,89,97,96,108,108,102,97,95,109,106,117,98,105,102,101,102,117,107,112,95,94,102,103,107,99,100,112,107,116,116,94,112,86,92,100,100,105,108,113,97,102,108,125,101,104,98,113,117,106,110,113,112,102,104,83,104,108,105,100,104,112,103,101,114,106,100,97,102,105,108,112,118,107,109,108,109,100,95,121,106,111,102,98,99,100,90,90,101,110,105,110,109,107,91,106,111,100,98,80,99,88,114,102,105,112,86,96,108,107,106,110,106,106,113,112,98,101,108,109,106,93,110,104,103,110,87,105,94,96,99,92,102,108,111,117,101,101,98,103,108,93,104,101,94,104,103,105,105,109,103,107,107,109,93,108,97,108,108,108,95,95,90,102,87,103,107,113,107,102,103,113,110,105,107,108,91,105,106,88,111,105,99,106,105,85,95,118,104,111,101,100,104,106,103,103,97,109,94,97,121,106,102,108,99,105,112,100,102,102,101,101,100,109,89,102,99,95,107,109,99,116,89,103,94,102,101,106,111,113,106,100,106,108,103,111,105,98,84,113,98,97,103,100,109,99,97,106,113,112,108,92,110,116,105,93,95,91,100,96,94,102,96,113,108,101,96,103,114,100,98,96,94,105,104,101,108,99,92,126,104,102,113,83,97,109,113,124,101,102,100,108,95,104,113,97,95,105,87,103,75,101,104,101,98,104,103,105,110,106,95,107,107,101,102,108,110,100,107,109,108,96,101,93,116,94,117,108,95,119,112,109,106,103,99,100,115,111,106,103,98,105,95,100,106,95,98,98,84,109,94,103,104,104,100,114,103,108,101,109,102,99,107,109,89,103,110,92,95,126,99,95,118,91,119,110,123,100,98,88,115,103,114,113,107,109,109,101,111,99,104,101,107,98,124,94,102,104,94,116,107,103,98,94,91,101,104,102,102,119,96,95,107,98,108,98,115,85,101,106,128,96,105,96,97,98,107,94,104,107,102,99,89,101,91,112,103,97,87,101,111,94,106,92,105,95,102,105,94,102,96,100,107,98,101,95,85,97,106,109,108,99,100,100,94,93,99,108,95,118,102,110,105,127,96,110,112,101,113,98,101,121,114,105,111,101,103,105,89,109,104,108,103,92,91,104,88,90,106,97,109,106,103,116,108,100,96,103,122,99,103,105,97,118,96,99,102,97,97,107,111,105,96,106,92,96,98,109,97,115,103,107,97,104,92,109,103,102,118,105,106,113,99,103,107,113,106,107,103,113,106,125,107,116,103,113,107,104,104,96,106,111,102,109,104,117,105,108,102,100,105,94,88,103,95,105,80,98,106,91,98,104,96,109,97,103,92,93,91,101,102,102,109,104,104,99,97,112,97,100,106,106,108,93,102,105,106,94,99,99,98,91,96,124,100,109,108,104,95,94,115,92,105,112,116,99,102,114,115,105,107,112,104,112,84,106,106,98,101,103,96,107,109,105,94,90,97,105,103,100,104,99,107,112,110,106,99,109,85,103,104,109,94,104,93,112,103,131,104,94,98,101,105,107,104,103,94,102,108,105,92,80,94,103,102,103,116,106,100,100,106,109,106,106,98,105,106,108,92,101,105,99,92,109,112,85,95,98,94,106,95,99,98,80,101,103,94,102,112,117,99,98,97,115,94,95,109,100,109,109,91,99,103,109,108,86,97,85,91,96,96,107,107,105,107,111,113,105,101,115,108,106,111,99,109,100,109,120,100,99,83,125,107,119,101,102,100,95,106,98,109,106,98,103,87,115,103,91,102,113,101,106,110,98,91,113,92,78,98,111,95, +602.84814,100,96,108,92,101,101,118,105,105,93,104,91,107,105,104,115,97,111,110,104,111,100,95,100,98,102,107,95,108,97,104,102,97,92,109,118,99,103,84,101,109,90,103,111,99,106,105,113,97,84,101,104,115,102,102,97,117,113,102,92,92,120,115,120,102,113,97,107,114,101,118,111,108,120,94,113,109,101,106,112,105,108,113,97,98,105,93,107,111,101,100,115,92,107,102,104,103,80,108,102,118,107,92,95,79,91,113,97,88,77,105,96,104,102,97,134,99,100,109,99,100,113,88,103,102,100,111,97,103,105,103,110,99,109,113,103,109,109,112,104,130,132,92,104,111,102,99,108,101,102,106,104,95,98,92,98,117,94,106,109,104,108,104,108,104,108,101,99,110,128,108,96,108,107,116,109,110,96,102,110,113,101,99,106,106,105,95,88,114,87,99,108,105,110,79,90,116,117,98,109,101,98,107,105,95,117,87,92,107,110,97,101,94,106,101,105,101,114,96,108,113,103,102,103,102,104,110,87,112,116,112,96,99,110,111,109,125,103,101,103,105,101,119,99,106,111,116,104,106,105,104,84,97,113,108,103,93,105,105,80,107,100,103,112,100,114,110,111,110,109,103,110,97,114,108,109,97,101,111,113,130,100,103,100,110,95,89,103,114,103,73,114,107,94,116,108,111,104,93,103,114,84,120,104,98,112,101,112,113,106,87,112,104,106,99,108,106,87,99,90,113,99,110,104,110,107,98,96,114,97,99,94,101,91,123,108,108,99,103,86,99,101,109,112,113,109,115,106,104,101,107,108,102,100,106,84,111,109,106,99,102,97,109,102,95,95,109,112,99,98,105,104,108,100,116,110,104,107,112,107,116,111,99,104,99,104,104,95,100,103,106,96,105,102,117,105,99,99,104,99,99,105,136,105,109,102,107,111,113,102,91,96,106,87,103,95,101,99,95,121,113,106,101,114,86,96,132,92,113,121,115,107,80,113,112,113,101,104,104,87,110,106,110,104,98,107,104,98,107,115,103,109,114,111,101,101,103,101,107,106,107,118,111,116,110,70,105,115,107,121,100,104,104,111,109,119,98,109,114,99,102,112,117,110,101,105,124,107,106,107,102,107,98,107,110,108,99,102,99,105,121,108,112,117,106,132,103,99,99,99,113,94,112,105,105,98,101,116,100,96,100,105,107,102,102,106,94,103,109,103,97,103,97,102,95,112,108,100,112,112,101,99,91,99,117,101,105,106,106,101,99,104,104,106,108,108,107,90,114,95,113,103,112,97,95,107,117,104,104,101,111,103,110,104,112,100,95,106,105,106,108,117,104,105,118,104,108,108,105,101,115,102,104,102,109,101,80,105,108,117,103,101,101,106,100,107,107,106,92,107,100,103,102,113,96,100,95,93,103,98,96,114,115,106,112,109,112,118,103,95,98,94,121,109,117,121,102,113,101,103,112,107,108,111,105,106,83,99,108,97,109,101,100,113,104,114,95,106,101,105,105,99,93,106,105,108,106,96,108,113,110,113,101,98,98,108,104,95,116,101,111,106,111,101,95,108,109,82,95,102,117,100,104,128,99,104,107,99,108,106,110,99,94,104,97,109,103,107,104,98,102,100,102,112,105,113,101,104,107,108,99,108,117,100,112,102,103,106,103,99,125,109,105,101,104,81,101,97,94,97,124,101,103,103,104,115,109,105,99,116,84,101,107,100,106,104,92,97,104,98,96,103,107,103,96,107,101,113,111,107,108,104,112,100,101,97,112,102,101,103,104,106,93,109,104,107,100,110,105,108,104,110,103,103,103,98,95,103,106,130,96,110,99,109,82,110,102,113,112,98,104,120,104,88,109,95,112,112,106,110,94,100,98,119,120,110,100,109,111,107,108,112,118,106,117,111,112,101,110,108,99,100,97,109,99,65,104,96,109,95,105,96,109,106,104,102,92,94,104,106,98,102,105,92,111,113,121,112,112,122,106,105,105,116,104,103,106,103,105,95,108,104,106,98,113,107,101,113,104,102,109,102,103,115,98,112,107,102,99,102,114,104,111,98,95,104,118,102,123,94,112,106,111,104,126,103,94,104,121,107,109,99,94,103,118,102,103,110,100,99,101,110,99,108,104,102,103,109,107,114,108,94,111,99,98,114,105,103,108,105,103,117,112,108,83,106,110,113,93,125,109,101,96,114,121,104,99,95,104,120,104,102,125,105,95,107,104,109,98,88,107,107,117,104,104,94,114,74,121,113,105,104,101,108,109,98,104,97,109,111,105,94,107,107,119,104,114,99,91,106,101,115,93,110,92,98,108,97,98,95,121,96,107,115,106,100,104,103,109,117,116,110,119,96,73,122,99,131,110,115,118,119,103,121,146,140,146,156,119,113,137,114,114,131,119,110,94,105,104,104,122,103,116,100,91,110,100,99,87,100,117,113,70,108,71,112,108,108,96,97,94,102,98,122,103,102,108,104,117,91,113,129,113,97,101,96,113,114,112,111,97,100,101,105,104,111,75,99,112,111,104,117,108,94,113,112,117,103,99,99,110,103,89,99,115,103,103,99,107,109,93,114,89,101,109,103,96,100,108,110,104,102,110,102,87,105,108,108,137,101,109,98,107,111,94,107,105,123,101,111,106,95,100,104,127,107,100,113,89,101,110,111,109,106,97,107,123,101,117,114,115,109,104,105,103,108,120,106,110,126,106,105,103,111,101,106,110,94,109,109,111,103,99,110,94,114,93,103,108,99,114,109,90,108,104,111,109,115,109,101,113,110,104,106,105,109,118,109,104,112,104,111,91,104,110,100,108,118,98,115,95,111,113,97,104,112,117,113,98,103,112,107,109,116,110,96,99,115,105,109,112,107,106,107,103,107,112,132,108,98,112,107,102,99,97,89,107,97,105,114,108,110,99,104,102,105,100,105,107,103,107,115,97,103,115,107,99,98,112,104,103,109,105,106,98,105,108,109,116,86,116,99,107,89,98,98,106,98,121,84,99,107,98,108,114,101,110,101,110,99,102,104,109,109,107,108,97,106,112,97,106,105,103,100,102,103,108,89,105,112,115,98,105,121,106,109,98,99,116,100,102,103,105,105,111,99,91,108,103,102,99,121,99,105,113,109,99,108,108,95,113,85,83,98,109,94,104,102,102,91,100,109,117,102,102,97,105,100,98,106,117,105,108,99,92,110,94,100,110,110,100,95,109,90,102,99,106,103,97,96,103,119,95,90,115,99,94,99,100,98,110,89,107,118,115,98,104,106,100,89,102,100,114,109,113,105,102,97,105,98,105,116,97,107,110,92,103,109,117,90,117,107,109,105,94,104,102,101,110,96,93,102,115,106,113,109,108,103,103,111,84,105,109,108,108,91,96,112,107,113,94,100,98,103,104,95,91,78,110,111,100,100,113,105,102,98,99,91,99,103,100,103,102,111,109,93,99,97,90,100,117,106,101,93,103,106,116,102,102,96,104,109,110,102,96,113,98,107,104,96,103,108,98,107,110,105,100,100,99,99,103,111,94,118,86,101,117,99,113,106,78,85,104,111,111,107,104,103,98,109,107,100,103,120,100,105,108,96,83,108,110,113,100,105,112,87,102,107,90,103,102,113,98,112,109,96,104,106,107,104,105,112,97,104,97,103,101,99,100,113,98,96,98,115,101,94,110,106,109,105,104,109,101,105,101,87,102,105,106,114,98,92,104,99,105,103,106,113,98,109,105,93,108,90,98,100,102,100,110,101,97,104,100,96,99,114,106,112,106,116,102,99,81,118,111,94,105,114,109,113,108,106,105,92,99,91,112,103,103,100,108,103,108,97,104,109,104,101,113,111,101,107,92,103,103,99,97,108,95,106,109,108,107,110,99,112,94,87,96,97,97,96,96,96,101,102,98,94,111,114,115,87,102,104,91,104,109,97,105,107,95,107,104,101,95,110,105,102,108,109,101,96,100,96,96,102,110,88,99,103,102,101,100,101,117,87,108,101,107,118,99,98,101,110,113,95,110,87,112,109,104,118,91,102,99,110,88,109,107,91,109,92,110,107,117,106,104,98,98,111,106,108,97,111,107,107,108,102,113,107,102,98,96,102,87,107,111,97,107,104,104,111,101,111,102,116,98,109,100,110,104,113,117,87,110,114,101,95,104,101,102,99,96,104,85,102,120,103,109,99,108,101,96,99,95,119,88,108,89,114,105,105,88,116,94,114,92,99,109,112,102,97,106,100,102,105,113,101,106,96,97,107,104,101,96,105,99,96,98,121,102,98,122,99,99,100,101,103,97,95,107,97,102,115,97,111,100,95,104,111,98,104,99,86,110,100,103,106,111,99,115,92,102,91,107,83,127,99,111,105,83,106,102,103,99,110,102,103,109,106,108,112,103,104,111,112,112,93,109,101,101,93,102,107,97,105,99,103,94,99,116,102,102,107,100,103,87,98,103,101,103,105,102,88,110,101,105,91,103,107,102,97,89,99,111,100,105,119,105,124,108,97,94,100,112,108,98,108,117,117,84,95,109,106,94,96,106,106,98,102,81,115,99,100,105,109,97,91,103,113,98,116,105,89,106,95,98,95,104,104,110,105,107,104,113,100,102,102,95,106,105,91,96,112,106,102,136,102,95,91,104,101,99,96,96,108,117,116,109,97,104,96,101,104,100,100,102,102,94,97,111,85,121,95,105,94,93,99,111,99,104,107,107,97,99,96,100,99,101,93,97,104,98,117,95,103,96,102,109,97,109,92,71,105,100,113,101,92,100,92,103,89,95,98,119,110,99,98,102,113,82,101,103,102,121,106,104,99,98,95,95,110,86,106,128,92,116,95,104,104,133,103,94,99,102,106,97,97,108,89,97,80,113,92,94,98,93,108,109,101,105,75,108,99,101,91,107,102,99,94, +602.9892,137,99,105,100,90,108,94,102,103,94,118,98,115,110,112,95,97,104,91,100,97,105,107,109,108,109,101,104,108,107,110,99,85,104,113,114,104,103,96,106,103,110,89,109,121,105,96,118,109,101,99,104,102,105,100,97,104,100,113,101,100,100,98,99,105,101,100,98,99,102,122,102,96,111,95,116,97,102,111,100,104,108,93,113,104,99,103,109,96,100,103,112,98,103,82,113,91,92,110,104,108,102,101,99,106,122,103,99,102,102,107,97,104,102,105,101,118,100,96,101,102,98,108,103,115,104,103,100,106,111,102,104,107,101,95,104,119,107,104,98,101,107,83,84,102,100,111,109,105,93,87,118,106,102,101,106,100,89,112,112,100,95,109,116,112,103,100,99,99,98,113,102,107,103,106,101,107,98,110,105,106,97,105,103,110,103,104,97,108,104,102,101,104,117,106,106,104,103,101,105,99,119,91,85,84,112,101,102,97,106,104,101,104,106,97,107,103,106,117,104,112,105,112,105,98,105,100,109,111,111,92,113,115,116,109,111,105,103,105,100,110,95,107,108,106,108,106,103,108,105,98,97,109,93,95,107,114,109,99,106,98,118,103,105,90,99,108,98,108,113,95,103,99,99,106,100,103,108,104,106,121,102,104,108,99,116,93,99,102,117,101,92,102,110,106,101,108,101,108,110,105,97,103,107,97,101,111,103,109,110,98,107,105,95,107,94,100,102,99,96,117,101,102,133,99,113,103,114,112,124,90,104,113,100,97,93,113,96,77,107,100,112,89,109,110,97,96,102,112,100,106,104,107,100,99,97,107,118,110,112,126,109,113,103,102,93,102,106,101,103,103,109,109,105,109,97,117,100,111,121,105,113,96,108,107,104,104,107,101,100,109,104,102,101,98,98,107,110,102,101,114,109,102,106,97,109,95,97,107,102,99,101,110,100,115,102,103,109,99,100,106,101,112,107,102,101,104,98,104,102,112,111,107,97,99,90,101,107,100,119,99,96,97,123,101,121,107,98,106,115,101,108,91,106,103,101,109,103,110,98,103,100,118,96,107,112,105,99,89,92,123,92,114,107,106,99,106,120,122,94,99,116,100,104,107,108,108,106,98,104,116,99,108,109,109,111,103,96,103,89,113,104,98,100,91,90,91,104,89,109,109,112,111,103,102,105,116,100,109,97,95,105,118,103,104,113,107,109,104,100,104,98,92,113,105,109,97,109,102,95,116,104,101,104,101,103,94,108,103,117,100,106,105,103,103,101,99,109,100,98,107,107,114,102,103,100,104,112,101,129,101,120,116,109,94,107,107,102,106,102,101,118,105,113,115,95,95,118,107,101,98,115,96,94,115,121,105,113,97,108,96,101,94,110,103,106,110,109,93,105,109,102,103,107,113,107,101,102,110,104,115,101,109,105,97,116,110,108,114,98,102,93,109,85,90,112,101,102,111,118,98,106,117,107,104,95,102,99,103,91,102,87,104,99,99,108,101,114,109,99,109,97,99,101,87,121,90,106,108,110,93,95,118,121,117,109,104,103,94,100,111,112,107,103,99,98,114,112,101,92,106,110,112,107,110,102,112,112,110,99,109,111,101,100,107,110,109,109,105,105,94,99,98,95,98,108,102,99,110,87,102,95,114,121,67,99,96,104,101,108,98,111,81,108,130,107,101,95,104,117,120,120,110,91,107,102,109,112,107,97,111,97,101,107,110,104,102,103,117,105,97,102,100,91,98,107,101,104,113,106,102,104,105,110,105,110,104,99,110,112,88,104,107,106,92,122,109,105,94,96,104,104,99,101,108,107,97,101,102,114,89,112,98,100,110,107,99,110,108,112,111,109,100,107,100,96,113,105,102,126,106,111,100,121,104,114,101,109,97,108,100,113,105,106,109,109,104,102,123,95,107,100,121,103,102,99,101,99,106,111,102,79,108,115,91,95,104,100,102,103,115,107,103,112,104,104,98,110,98,101,100,104,109,107,102,111,113,114,104,95,102,101,101,110,102,103,109,110,105,104,95,106,109,96,98,108,106,110,94,102,114,103,115,107,99,99,102,111,114,110,100,104,106,102,120,100,103,101,103,106,103,104,103,109,109,98,107,100,115,100,109,107,100,105,92,103,95,115,101,107,98,98,107,90,102,106,104,106,104,111,99,103,108,109,115,99,108,113,87,116,122,103,114,110,107,105,92,107,82,113,105,104,91,101,90,108,94,100,92,99,102,99,109,109,114,100,107,103,98,94,95,113,108,96,115,97,98,107,102,121,100,100,103,106,106,98,106,109,99,108,106,110,103,108,104,99,100,86,88,109,113,107,116,101,114,102,105,101,108,102,100,116,113,106,123,101,101,116,121,121,119,133,135,141,129,143,122,129,139,136,129,110,122,127,115,133,126,111,115,94,119,100,110,112,99,105,103,94,106,94,105,111,106,97,114,110,121,104,114,101,105,118,107,100,114,110,104,99,113,105,109,90,110,96,101,104,115,96,109,111,104,101,104,99,112,116,109,100,113,103,95,110,101,86,106,101,122,114,98,107,109,105,96,100,109,92,97,102,107,106,103,106,90,103,103,102,72,87,103,107,89,94,103,110,112,97,94,121,107,117,107,107,114,78,104,105,98,89,103,99,111,95,103,88,111,115,109,102,121,105,106,103,108,109,99,99,105,103,94,97,103,89,99,110,113,110,110,108,100,107,115,107,108,109,104,104,106,100,113,113,113,110,120,94,111,120,107,119,68,104,111,100,106,102,110,113,93,116,108,103,113,106,104,104,113,110,109,113,110,104,110,109,109,117,114,112,101,110,108,101,103,116,112,101,115,95,114,113,106,99,109,117,110,108,102,124,106,112,106,112,112,97,102,107,102,100,106,129,96,107,113,105,108,118,104,105,104,117,111,113,112,116,100,116,103,117,97,123,88,125,106,102,101,103,104,110,101,87,112,117,100,111,102,107,100,106,106,118,113,115,94,108,116,97,105,117,103,111,113,105,120,112,102,106,97,115,97,111,103,104,111,100,99,118,109,105,115,112,100,106,121,102,115,87,106,105,107,107,109,116,98,110,114,109,101,105,108,118,113,111,104,106,104,94,113,111,103,101,107,103,117,113,113,110,116,113,105,110,96,110,100,101,103,108,117,95,109,100,115,109,105,100,105,116,107,114,122,111,110,105,105,110,111,109,114,114,111,103,102,110,114,93,108,99,106,95,102,112,112,103,112,93,103,103,101,109,95,109,124,111,105,105,105,111,127,102,119,113,106,110,105,100,109,105,117,107,120,106,115,106,109,109,108,112,98,104,114,102,108,103,116,114,116,106,103,107,112,105,105,103,108,90,103,103,101,91,104,116,113,109,104,103,108,112,105,114,98,93,102,106,116,98,102,109,92,113,101,99,112,110,90,98,95,112,103,106,120,99,102,101,119,104,106,109,93,93,103,107,107,98,109,108,108,98,99,105,109,114,118,102,104,110,105,99,103,107,113,108,102,113,104,102,105,109,106,109,108,113,89,110,106,110,106,110,98,109,98,110,104,102,113,108,112,106,106,103,99,92,95,107,107,109,111,113,99,116,105,95,102,98,104,92,112,100,99,99,126,108,103,105,107,115,112,107,105,100,108,98,107,103,97,106,109,94,115,113,98,99,88,109,96,121,105,107,110,119,99,102,117,106,113,105,103,101,97,104,95,109,119,106,113,104,98,96,109,103,121,108,108,89,104,107,110,110,103,119,102,103,110,111,91,97,95,90,98,99,106,104,112,112,113,99,108,113,108,105,108,109,112,101,103,112,97,108,97,108,102,107,107,100,113,100,102,79,96,113,99,108,91,111,96,111,102,100,99,92,105,91,112,113,98,107,103,103,100,108,96,102,97,108,102,106,100,99,108,103,105,104,95,102,98,113,106,107,111,104,105,109,105,97,117,100,95,102,101,106,95,102,96,98,99,116,104,114,102,110,101,113,103,116,109,108,104,117,110,103,106,103,99,112,108,117,114,106,106,109,96,103,103,102,112,100,112,120,105,95,105,100,110,105,104,97,97,107,115,118,95,100,99,106,115,100,110,108,110,110,97,101,108,94,107,113,92,109,95,120,99,106,99,112,96,101,110,114,101,116,101,81,106,98,99,108,97,113,97,114,113,106,99,102,108,110,100,96,117,92,107,98,100,86,111,102,104,101,108,101,96,121,95,108,108,110,107,109,106,101,106,106,100,100,106,103,112,104,115,91,116,103,100,100,103,95,106,106,93,99,92,110,82,105,106,101,112,98,103,96,102,94,89,106,87,102,103,105,94,94,96,108,103,107,105,111,113,103,106,103,93,106,103,107,109,104,112,106,118,107,112,104,110,106,107,111,109,73,107,110,118,109,109,109,100,107,106,105,109,107,102,96,100,90,87,105,103,97,106,112,105,103,107,104,102,98,96,98,116,98,95,98,105,110,108,114,103,103,109,99,100,104,105,109,76,97,83,103,100,105,101,80,98,105,89,101,93,106,97,131,94,108,114,109,103,97,112,100,110,98,109,110,102,92,96,99,102,106,103,108,104,97,101,95,90,104,106,98,96,107,109,112,99,109,109,96,109,116,104,111,102,97,92,109,87,106,106,105,101,102,122,97,103,105,117,110,108,92,90,103,98,95,91,101,104,91,100,107,104,109,121,107,103,94,104,94,90,99,109,111,99,111,88,102,100,104,100,102,108,112,115,94,96,107,92,103,107,98,108,104,101,100,92,105,112,103,112,113,96,109,102,115,105,106,97,106,102,102,106,106,109,117,103,119,96,114,108,109,102,108,105,113,113,106,112,102,108,99,81,109,111,95,113,107,90,109,106,99,89,102,102,109,113,86,100,102,99,106,112,108,99,106,80,101,116,122,87,83,100,106,100,95,96,104, +603.13019,101,98,100,97,94,99,108,105,105,95,98,99,96,100,102,107,99,107,113,120,93,116,101,104,93,105,92,105,91,112,113,118,106,112,113,97,95,100,83,95,105,93,104,106,102,101,107,112,120,104,111,101,110,100,110,106,103,100,113,87,97,101,94,95,102,102,99,98,99,96,92,107,91,110,108,121,100,103,107,98,104,115,106,108,116,112,113,104,108,112,95,106,99,105,97,97,111,87,100,97,100,99,92,105,106,100,104,98,92,104,101,99,99,108,98,95,95,107,106,120,103,98,103,103,105,110,115,101,115,99,96,115,102,114,118,111,96,101,119,103,114,99,104,109,103,99,114,104,97,106,107,101,126,91,97,115,101,103,90,103,105,96,108,113,113,112,94,109,101,97,109,103,100,103,107,105,119,96,96,105,99,100,120,97,114,99,105,96,103,103,105,105,106,99,133,106,92,110,111,128,105,100,92,98,103,105,112,102,109,112,105,116,101,105,98,110,101,113,99,109,105,108,95,116,96,117,107,112,109,97,109,102,103,111,108,115,100,109,111,99,100,110,110,110,111,117,103,100,117,94,105,104,91,100,96,115,104,103,106,92,106,100,109,101,112,109,112,102,99,96,113,94,106,104,102,106,97,106,112,105,98,107,98,112,102,103,102,105,103,106,99,113,117,96,105,98,106,105,108,117,116,108,105,96,90,113,121,106,105,112,100,110,104,114,111,112,105,97,104,103,104,96,101,96,100,78,102,102,101,105,115,107,104,111,122,108,104,98,98,102,99,109,100,103,100,109,107,105,106,96,107,103,114,104,106,85,97,90,97,95,100,97,105,111,89,102,105,100,97,113,88,107,94,90,104,102,103,100,106,105,109,95,116,107,96,83,103,91,101,94,108,74,86,107,111,99,106,106,100,109,105,102,85,110,101,101,113,115,103,105,98,97,103,101,103,101,108,105,111,105,111,111,95,124,100,103,105,101,102,108,99,104,114,103,80,104,104,103,109,105,105,102,105,104,110,94,114,95,109,109,115,105,101,105,108,105,96,104,104,107,100,99,111,103,114,89,110,97,107,102,99,95,111,102,98,88,107,109,110,99,102,116,116,87,106,111,109,103,104,101,111,114,104,104,108,105,105,105,93,103,105,113,98,104,100,113,97,93,103,94,106,97,105,95,111,103,101,99,104,94,110,113,104,110,108,105,127,110,97,99,96,104,110,99,90,108,96,106,90,112,110,98,102,117,107,93,102,107,112,102,103,101,115,100,109,108,91,116,100,99,107,106,102,110,98,100,95,109,86,101,97,97,103,103,95,88,93,98,93,104,101,106,91,95,99,107,108,113,96,112,113,102,104,99,100,113,106,102,111,102,106,106,107,106,104,100,94,105,103,110,101,112,98,106,107,107,101,101,108,111,96,110,108,101,115,112,106,103,103,104,98,109,106,109,97,101,98,89,102,105,120,105,104,92,102,103,102,100,110,111,106,110,104,129,103,107,116,107,82,101,108,99,103,106,106,110,112,96,105,100,103,108,106,90,99,114,101,109,118,98,121,108,114,98,97,110,104,108,102,119,107,116,83,118,114,104,104,109,103,96,99,102,109,102,103,102,92,106,108,114,117,97,108,116,98,111,100,107,116,98,110,106,94,99,105,104,101,103,96,117,117,105,104,99,93,103,105,102,101,101,109,101,112,111,114,92,107,107,89,105,114,109,104,93,103,104,115,113,102,117,103,118,93,111,95,105,107,107,101,97,100,105,94,103,105,103,98,107,103,107,116,107,118,118,110,111,96,106,110,112,113,113,100,110,108,102,106,111,106,116,101,101,97,101,98,107,103,107,103,91,127,105,111,114,102,116,108,108,111,101,106,113,101,98,99,124,93,113,105,91,102,100,96,94,106,128,111,114,113,93,107,110,107,102,115,119,95,102,98,110,106,101,108,99,107,110,100,95,110,90,87,109,100,101,120,125,88,113,108,110,110,129,95,91,95,105,101,111,94,101,112,114,106,114,109,109,90,104,103,105,101,118,100,108,103,96,103,110,101,112,117,101,105,110,104,106,97,103,96,123,120,95,100,116,109,105,97,99,106,108,107,108,121,112,105,102,104,98,108,96,102,112,111,108,113,100,104,91,101,106,114,103,116,100,102,106,109,111,99,103,106,103,112,93,115,109,100,98,101,112,124,90,101,108,109,95,98,99,94,102,102,109,100,112,110,91,112,104,97,101,106,104,102,98,111,109,101,103,105,105,102,110,110,117,106,94,111,97,111,99,114,109,107,108,98,100,117,112,100,111,99,95,99,100,104,102,106,100,113,110,115,103,102,114,99,106,94,106,109,99,106,109,102,96,125,107,117,117,107,114,119,114,124,119,127,149,142,95,133,122,112,133,118,137,119,115,115,115,108,107,94,105,111,101,94,88,103,102,117,94,113,105,89,99,115,115,101,79,103,97,108,107,116,108,122,96,116,100,115,107,102,112,100,95,112,118,95,103,109,100,102,92,108,115,106,95,115,124,104,119,95,115,99,103,121,99,109,125,96,100,106,108,105,108,110,111,106,104,97,109,121,106,108,98,104,104,79,113,111,93,108,98,104,116,98,110,109,111,106,98,103,104,119,108,98,103,94,113,111,109,80,124,106,95,117,113,111,106,110,109,94,103,110,106,100,92,100,99,81,108,105,113,107,113,100,115,102,110,107,107,102,98,107,112,106,113,103,103,108,100,103,124,110,103,102,106,105,106,103,113,96,105,99,106,106,120,102,108,105,109,102,107,98,95,104,101,119,114,109,100,108,113,111,101,108,120,110,98,100,106,97,111,102,104,123,105,107,103,131,107,108,105,115,99,104,110,104,104,103,106,111,100,103,110,113,103,118,98,88,101,111,105,108,111,95,110,105,99,102,75,116,98,114,104,100,97,110,105,111,125,109,98,108,109,106,106,98,94,106,106,107,108,96,122,91,108,132,108,70,101,103,110,104,100,110,103,102,104,111,94,110,107,117,117,108,101,109,101,103,105,98,103,103,113,108,108,107,106,98,102,106,104,107,98,107,106,105,110,116,104,105,110,111,99,110,100,102,103,109,120,112,115,109,95,119,116,115,104,104,109,103,104,104,104,103,95,100,108,105,113,109,105,113,104,100,96,108,99,108,101,112,99,104,99,102,117,92,120,88,108,111,116,112,93,117,117,105,109,114,111,113,110,100,107,107,103,114,113,109,93,115,112,97,101,108,106,109,109,97,110,109,102,104,104,119,111,105,109,112,97,106,87,100,97,108,113,95,105,104,102,89,100,112,116,116,112,103,94,103,103,124,111,102,100,115,90,98,104,109,107,99,98,125,102,101,102,113,101,107,109,101,103,110,117,106,101,106,100,97,113,109,103,81,100,114,107,105,103,109,113,108,90,103,107,116,96,110,101,100,114,97,103,98,98,103,106,109,99,104,102,104,99,109,107,103,108,106,86,105,95,98,96,103,109,103,100,103,109,103,96,105,99,98,116,108,110,114,99,101,102,109,117,102,104,109,101,108,95,100,102,103,103,116,94,105,103,99,115,102,106,113,111,92,104,103,104,106,98,111,101,109,94,102,98,107,101,104,105,108,107,98,105,109,103,93,94,121,85,116,113,108,111,113,114,102,93,104,109,114,104,104,102,103,99,106,101,100,100,101,102,109,102,98,97,108,88,100,106,105,96,106,90,106,94,102,104,112,100,106,100,101,106,104,107,143,99,112,101,103,100,102,107,103,106,112,111,111,101,103,121,101,102,107,107,103,100,112,99,115,91,99,115,114,107,99,99,101,108,100,99,104,102,99,94,119,106,117,108,95,113,96,109,117,100,105,120,119,97,107,108,98,118,109,113,105,114,89,105,106,107,91,111,99,87,117,96,114,97,102,99,106,109,101,138,109,110,99,99,113,104,105,109,105,107,96,111,116,113,107,108,106,105,98,109,102,112,102,104,108,94,112,101,101,109,111,112,98,120,98,99,105,107,107,116,107,113,109,107,100,104,113,92,98,97,108,105,105,91,68,100,113,107,100,109,114,113,107,101,113,92,106,99,109,93,98,113,100,96,115,108,113,107,94,108,118,106,109,104,90,119,99,110,113,104,108,106,102,94,117,104,96,112,108,96,101,103,98,98,100,107,109,97,100,91,95,105,100,107,102,99,121,87,106,106,104,104,107,111,105,105,120,112,103,111,115,87,97,106,92,113,112,106,99,107,106,104,108,90,102,113,104,115,103,79,100,102,107,106,105,103,109,105,109,100,110,100,94,96,99,110,115,109,116,95,112,98,118,102,115,96,104,107,111,99,106,106,113,103,105,110,102,91,112,105,116,107,104,100,101,113,114,98,102,109,104,103,109,125,105,105,110,105,107,115,91,109,117,108,103,96,106,103,107,113,104,112,115,107,101,109,104,116,107,107,108,103,103,112,100,105,100,100,103,92,100,110,98,104,94,98,88,106,104,101,105,96,97,104,101,108,101,105,102,102,115,104,109,102,106,94,114,99,101,87,102,109,95,113,98,98,98,97,99,100,109,91,110,95,102,107,111,110,104,110,103,97,103,106,104,102,104,92,104,104,106,99,109,95,105,115,102,98,105,108,98,106,107,114,107,92,113,105,108,110,102,102,88,109,109,92,101,105,106,103,112,98,106,109,100,96,105,100,93,102,114,111,94,113,115,89,106,95,103,100,104,112,103,112,109,98,92,90,92,106,102,101,127,95,113,112,104,103,107,104,97,90,100,90,89,92,99,105,98,106,90,110,97,87,111,103,99,95,107,93,122,99,112,107,88,97,106,109,109,105,112,113,121,109,100,106,97,98,124,102,92,109,109,83,116,95,100,100,98,106,112,95,102,102,96,97,104,86,105,83,105,94,107,113,105,95, +603.27124,115,107,92,111,114,106,123,99,109,93,94,93,96,95,111,88,96,118,121,127,108,95,113,108,106,108,109,106,94,109,93,108,92,98,104,101,114,84,109,99,96,123,104,84,104,112,110,111,108,115,101,94,94,97,111,97,102,107,121,96,90,102,102,132,105,93,106,114,89,95,102,111,94,116,103,118,100,95,100,105,109,99,108,104,105,112,105,108,109,109,93,99,105,103,107,92,108,110,98,102,107,105,108,101,110,102,103,116,90,110,121,95,102,98,113,103,95,98,107,92,121,90,95,113,105,122,109,102,109,104,110,110,95,109,108,98,100,109,107,115,112,104,107,102,110,106,108,100,100,104,123,111,102,89,112,103,106,96,105,102,118,112,112,110,106,111,109,104,81,103,101,109,108,108,105,95,105,94,102,100,101,88,101,108,110,127,107,93,101,110,101,100,99,96,103,90,107,111,119,100,112,101,104,120,98,110,113,110,107,110,102,117,102,114,101,115,104,125,108,110,111,124,110,100,102,116,118,101,109,120,114,112,112,102,104,100,104,112,104,106,99,108,104,107,91,102,121,103,106,108,101,109,96,101,104,109,107,121,108,97,94,114,88,100,114,108,99,91,110,100,104,99,107,108,106,103,103,117,99,113,101,110,101,107,103,106,100,105,103,97,123,118,109,90,99,89,109,99,99,99,104,108,108,107,93,107,109,107,108,118,106,101,105,108,103,90,114,111,95,110,96,101,103,90,111,97,108,110,114,98,121,114,116,110,109,105,104,117,101,99,110,105,92,103,98,103,106,95,113,117,107,110,124,99,120,115,105,121,87,106,102,113,107,104,101,104,103,103,99,104,107,104,109,104,108,104,111,117,100,108,108,111,106,98,105,106,101,109,104,95,117,103,98,111,105,71,100,117,110,112,113,100,105,118,92,104,96,76,124,99,87,100,113,110,105,103,112,111,105,102,107,103,114,108,102,96,106,101,95,106,106,107,99,103,99,113,107,108,110,104,108,118,116,109,101,97,111,91,103,112,95,106,103,113,96,103,109,120,114,103,111,110,101,122,120,111,112,93,107,101,113,102,109,106,110,100,107,106,97,107,96,111,101,107,100,94,114,121,122,106,110,115,99,117,96,109,100,98,112,111,124,98,101,107,99,103,100,102,103,108,96,106,104,104,111,104,106,99,104,104,108,108,106,103,109,96,107,120,98,110,110,110,106,108,107,116,108,120,103,107,93,113,116,114,107,108,102,95,101,109,106,91,109,92,100,104,107,108,107,83,120,103,94,110,104,101,91,90,93,96,96,110,106,95,105,103,108,102,103,99,108,106,99,100,113,100,111,117,105,109,99,112,87,115,112,116,104,112,104,109,109,113,107,102,105,101,110,96,107,111,103,110,95,108,108,107,117,105,114,102,117,104,109,108,107,97,101,110,101,102,110,99,115,112,103,94,113,99,105,99,106,119,104,113,103,105,103,99,111,105,90,108,101,109,105,98,108,119,112,113,108,109,109,100,107,112,114,110,98,94,112,107,107,112,107,108,122,104,98,107,100,107,108,95,103,110,102,117,97,98,105,106,106,108,110,118,107,106,91,96,103,99,95,109,101,106,105,101,104,105,99,104,102,108,110,110,102,108,110,108,106,104,106,108,96,131,118,110,96,111,118,105,100,106,105,101,103,111,110,113,114,91,106,108,108,106,100,106,96,108,128,87,113,104,103,95,115,100,117,109,103,130,78,100,99,104,92,102,104,101,110,102,108,105,111,106,103,104,90,106,103,106,99,114,119,114,107,117,109,105,110,118,92,112,114,104,105,111,106,114,95,98,117,110,106,109,125,109,107,102,108,101,118,100,113,114,112,105,121,103,118,120,110,109,106,94,119,100,111,107,105,101,104,114,104,107,114,110,96,108,109,121,104,112,105,116,99,104,114,112,98,107,105,112,105,100,123,94,110,107,96,108,100,106,103,102,101,105,106,100,102,114,101,105,101,104,112,101,103,95,114,109,109,106,95,96,96,110,116,110,116,122,104,109,125,83,103,106,115,102,107,101,109,100,111,104,109,101,106,101,119,98,106,102,106,102,103,115,103,106,117,119,123,104,99,98,100,117,93,99,100,108,98,111,98,103,87,105,108,105,118,107,111,118,94,98,114,89,102,104,128,120,109,97,89,104,109,100,119,87,106,107,109,94,108,103,99,105,110,117,101,98,99,105,118,103,118,99,98,100,106,96,112,104,109,102,116,108,105,107,107,108,109,106,109,101,102,109,105,117,107,95,96,87,111,106,101,121,99,114,99,131,96,105,99,104,101,102,102,113,124,120,109,105,103,126,120,111,114,99,99,102,120,106,101,104,117,114,129,133,133,121,129,132,128,136,133,143,129,99,135,118,139,138,112,105,78,100,120,95,117,105,115,114,101,113,105,82,99,102,108,100,117,115,101,102,105,102,105,107,115,108,97,113,119,71,107,103,105,100,93,98,102,94,111,95,121,98,113,119,95,99,114,101,107,100,105,102,106,108,103,117,104,109,109,108,112,104,110,108,100,112,101,107,97,108,100,107,111,134,97,99,102,109,104,106,103,103,109,102,99,109,105,110,104,101,109,101,105,112,112,97,115,105,72,109,117,104,105,105,110,91,105,90,112,104,117,98,104,93,87,100,107,101,115,100,93,107,106,108,103,79,108,111,112,121,106,94,126,109,113,108,114,104,95,99,109,99,108,117,105,111,108,106,105,100,116,109,102,105,104,114,102,102,103,120,103,118,95,104,113,103,105,105,104,110,116,108,103,106,95,117,97,106,111,91,115,106,99,107,105,102,99,100,105,112,112,109,98,101,96,104,103,106,118,108,106,126,92,111,98,96,109,109,114,105,109,110,106,101,101,104,111,103,103,101,107,93,98,104,103,100,102,92,104,104,124,103,112,99,102,106,100,116,110,106,123,102,92,78,95,98,106,132,93,106,99,110,108,97,106,98,106,104,109,105,98,101,113,101,108,102,95,109,111,98,107,106,96,125,96,95,100,108,108,89,101,88,102,98,109,118,117,98,115,100,109,109,104,100,101,106,103,109,107,96,114,100,109,109,125,99,107,109,110,105,111,101,97,107,98,109,112,107,99,82,109,103,106,100,83,96,111,107,108,99,120,102,105,105,108,98,88,100,90,118,108,93,111,108,109,106,101,89,106,104,93,112,101,109,119,95,102,112,103,95,99,104,94,117,114,96,96,97,116,96,104,97,104,112,101,111,107,121,106,78,105,105,106,106,108,105,115,109,110,100,100,95,108,102,92,109,107,115,98,117,112,99,95,107,114,108,92,98,109,104,107,120,117,105,99,97,97,104,97,108,103,103,112,98,98,85,111,106,101,92,98,99,103,103,122,82,102,111,110,105,95,104,114,92,106,117,96,98,103,113,115,101,99,76,101,99,102,101,87,95,108,100,94,129,102,102,94,106,108,104,104,96,110,106,101,90,104,100,105,113,116,98,103,94,103,101,100,105,110,105,103,94,91,94,100,121,102,103,105,104,114,91,105,113,105,106,117,106,107,107,112,100,93,113,104,105,108,104,99,103,107,95,132,110,98,120,106,117,99,108,104,121,97,105,100,110,103,92,112,94,100,95,109,100,97,103,98,108,109,100,103,111,113,104,105,105,100,105,102,94,100,106,109,95,102,112,99,95,115,95,112,101,110,102,118,98,118,109,108,100,102,106,99,99,106,97,99,111,111,105,106,101,107,96,110,108,104,108,94,108,110,111,99,104,105,104,102,105,99,96,113,120,110,92,107,110,104,99,112,99,109,104,109,94,116,106,101,94,101,87,99,107,99,108,101,100,95,105,107,109,101,96,106,102,112,104,104,119,113,99,109,91,112,91,102,98,94,88,110,104,100,102,96,105,109,102,110,112,93,113,108,96,112,99,109,87,112,79,112,102,100,106,106,107,103,106,75,102,114,102,108,96,105,99,103,106,110,112,110,105,102,108,92,118,98,113,100,101,111,105,105,108,116,91,110,114,100,96,104,96,116,109,118,111,98,95,104,104,102,107,89,94,116,95,117,113,115,103,95,103,97,96,103,110,100,117,98,108,119,111,84,79,105,110,121,100,105,104,88,107,101,106,102,91,108,107,96,116,126,92,97,103,104,110,103,106,106,97,112,98,108,110,106,105,102,98,111,96,113,108,106,109,108,109,110,110,97,109,107,104,115,121,99,91,114,100,102,106,113,106,100,100,107,97,97,104,109,102,100,99,98,102,109,101,99,99,114,102,109,101,102,98,92,98,104,105,100,93,110,102,102,106,104,108,100,108,110,100,95,86,110,99,115,108,112,94,108,118,107,97,99,95,92,99,102,113,104,114,105,99,106,101,113,109,99,100,102,105,112,89,106,109,109,106,99,77,107,107,94,111,105,85,112,98,114,105,101,98,103,102,107,108,96,117,95,107,100,105,104,111,105,113,107,100,100,119,103,97,99,84,103,105,102,109,98,111,99,117,107,91,105,99,103,101,104,103,98,106,106,97,105,114,94,109,95,108,97,113,105,111,94,101,107,107,102,113,110,103,102,98,113,100,97,119,97,102,112,96,109,108,107,100,102,120,118,107,111,115,101,102,139,101,99,115,106,96,103,106,112,96,113,115,89,128,105,106,99,119,107,101,105,115,97,101,88,113,101,100,100,93,114,112,112,94,109,113,106,106,110,111,94,98,102,100,91,96,104,98,106,90,109,90,112,103,111,124,110,124,106,109,102,112,107,103,104,94,87,118,90,110,113,112,93,108,105,95,106,96,97,106,88,125,109,106,108,94,106,99,125,109,100,116,89,105,102,112,103,118,99,107,109,97,97,78,103,114,97,102,99,99,108,111,112,97,106,92,107,94,107,103,114,96,110,96, +603.41229,87,99,97,118,103,104,102,95,81,95,103,109,95,106,98,98,104,102,116,98,101,90,103,103,102,105,104,127,114,95,98,92,107,96,125,93,107,105,107,101,103,98,102,113,108,106,111,101,105,111,99,102,91,109,95,94,114,104,124,91,105,110,99,98,103,97,102,104,102,94,110,98,113,105,89,113,103,102,117,105,103,106,102,86,108,96,112,99,96,109,95,100,99,112,98,87,94,101,90,95,113,88,102,99,102,114,98,95,103,105,105,98,103,98,110,103,100,96,108,95,107,84,95,106,108,118,104,99,99,101,110,114,88,98,111,108,93,104,102,116,107,102,116,104,100,109,105,91,105,101,103,119,109,96,100,108,100,89,109,99,111,106,109,97,117,101,101,103,93,92,113,101,99,107,108,103,103,104,117,107,97,106,106,102,96,114,87,102,103,95,96,111,103,101,107,101,126,104,104,112,106,102,100,95,85,103,98,97,119,99,95,108,108,102,110,102,104,109,95,106,98,103,94,108,103,103,104,99,101,110,107,111,95,105,96,96,108,106,125,98,106,103,116,105,110,117,115,110,97,95,108,112,91,105,92,104,102,108,95,99,95,110,97,99,103,100,107,109,116,98,102,108,91,102,113,99,109,108,96,112,100,107,105,108,112,94,108,110,100,109,103,104,95,114,103,98,101,93,93,101,110,109,102,97,97,103,103,105,95,113,103,104,91,104,105,102,95,108,110,109,112,102,100,112,106,105,103,115,108,100,103,97,112,113,103,125,117,108,107,106,103,98,99,104,102,104,101,105,104,111,108,112,105,101,113,102,95,110,108,102,97,102,106,92,100,96,105,107,99,102,112,106,109,94,108,107,113,83,104,77,107,114,104,88,107,108,102,96,124,95,110,91,103,104,108,91,103,106,110,108,101,105,124,106,111,99,102,99,104,97,87,99,116,109,99,85,98,101,75,102,100,107,100,105,108,91,101,99,99,107,98,104,108,96,100,91,102,104,97,93,104,115,97,110,104,113,102,102,103,104,100,111,81,113,116,105,110,108,125,107,96,108,110,105,109,102,103,106,106,103,108,107,100,100,107,108,109,100,102,100,99,105,99,94,109,108,124,96,100,106,94,72,111,107,102,94,102,94,114,106,102,112,122,112,108,107,104,103,102,104,112,96,114,116,103,106,113,90,104,95,105,97,113,110,112,105,102,104,96,96,104,107,107,105,110,110,109,99,97,116,113,111,78,99,108,91,105,95,103,104,118,105,110,106,113,98,106,108,85,93,105,112,105,106,99,118,102,99,98,100,111,96,105,101,116,102,97,93,95,118,129,99,116,94,108,91,108,111,98,100,104,98,97,133,107,100,109,126,100,105,99,111,99,103,102,102,95,99,106,105,109,96,110,101,113,110,105,105,102,105,99,103,107,118,114,107,98,112,108,108,108,99,87,102,93,98,99,103,108,109,109,102,106,110,105,103,102,115,112,109,96,99,106,91,103,111,108,102,100,130,107,95,104,118,115,101,110,100,105,100,96,110,96,94,105,90,106,122,105,94,119,95,116,109,113,101,103,97,108,98,110,104,99,117,99,98,103,111,98,95,100,108,100,112,116,120,109,115,106,110,107,104,105,102,100,92,113,97,110,87,95,99,107,118,113,111,113,101,106,109,111,101,95,85,110,109,117,117,102,107,103,106,99,100,107,98,100,106,99,99,112,107,102,98,102,106,113,101,110,106,106,121,103,112,111,98,97,110,100,109,118,106,115,100,107,106,94,106,102,109,98,103,108,109,94,115,102,102,105,113,101,112,106,121,112,107,100,107,106,99,95,101,103,112,108,97,104,114,103,100,124,88,103,109,102,104,110,108,113,103,109,98,101,104,110,120,100,105,106,108,103,95,113,99,104,109,101,101,98,112,105,107,104,103,111,112,91,105,103,87,79,120,96,115,104,105,105,115,101,107,112,106,104,98,101,103,102,101,113,113,94,105,103,104,110,105,103,104,92,105,96,105,109,108,111,115,105,113,108,98,118,108,105,96,103,104,97,105,91,108,103,105,99,104,116,103,103,105,108,113,108,107,118,109,94,86,121,84,115,113,105,111,99,118,98,107,103,99,115,105,108,105,99,109,105,113,104,98,104,110,101,104,108,98,97,98,104,99,113,103,103,114,105,107,109,103,104,99,86,103,117,114,105,101,108,100,106,103,100,105,101,105,113,109,109,127,109,104,107,110,100,104,110,104,100,98,122,96,107,108,106,94,108,95,92,107,99,104,107,106,108,101,106,98,108,105,105,108,99,121,97,115,97,101,101,97,94,108,102,106,108,109,113,111,115,98,112,97,91,114,118,118,107,113,112,105,102,120,107,113,131,139,129,145,116,144,151,127,123,134,133,104,115,122,118,111,115,99,113,105,109,118,104,112,99,112,117,113,100,101,110,98,113,101,96,107,94,111,102,87,102,107,99,104,106,102,96,101,91,123,109,127,112,99,113,111,103,107,108,100,104,69,107,99,112,110,109,117,91,121,105,114,108,91,99,103,96,104,91,113,96,104,105,106,101,111,113,112,100,95,98,111,94,88,109,112,99,111,104,98,106,107,98,103,101,99,115,109,101,99,111,103,108,97,103,99,103,101,106,100,105,98,115,90,105,110,103,100,117,100,109,120,114,111,106,105,103,102,106,91,126,99,103,98,109,113,103,108,100,109,98,101,108,110,103,112,103,96,95,106,98,102,99,99,105,100,104,113,116,105,105,103,102,95,104,111,102,109,108,98,91,102,124,102,114,100,95,111,117,103,88,111,97,99,102,99,106,109,106,109,107,108,110,110,104,117,102,102,92,101,109,97,111,119,98,112,104,111,106,99,107,109,87,105,106,103,106,126,108,98,106,96,102,105,103,103,99,114,86,100,99,102,108,109,79,110,92,119,99,102,104,101,109,105,105,116,108,113,111,103,104,103,106,103,88,100,99,113,98,101,100,108,108,104,117,103,109,99,98,101,115,109,88,100,105,109,117,105,90,96,107,97,103,103,116,99,101,94,98,99,80,109,102,109,104,69,102,110,107,114,104,100,112,96,107,104,112,110,102,103,112,109,106,102,104,104,102,105,87,105,117,109,92,119,122,104,113,100,106,108,106,109,96,107,103,107,121,100,99,111,103,92,89,93,101,110,102,99,101,102,108,104,108,120,98,105,108,98,113,103,105,112,94,106,99,96,96,107,103,104,109,105,104,97,109,114,110,111,110,100,107,104,105,104,104,104,111,111,101,97,94,108,102,103,133,106,101,99,102,108,101,102,102,95,99,99,110,100,104,110,109,107,93,113,101,103,95,103,104,109,116,107,93,113,109,108,101,115,112,103,96,110,114,110,109,97,105,105,109,106,111,115,99,94,109,106,111,102,114,100,78,117,102,105,107,104,94,110,101,103,106,93,106,97,105,114,103,109,109,95,91,101,103,102,106,91,106,101,102,101,105,104,93,108,108,111,105,101,108,95,111,106,110,111,106,117,103,100,107,100,102,108,105,108,103,103,104,109,82,110,97,105,111,92,104,100,106,109,109,106,113,107,114,109,101,113,112,100,109,99,90,100,104,115,98,98,105,103,104,99,99,100,108,110,104,96,107,113,110,103,98,107,106,113,116,104,108,107,107,102,102,104,111,119,105,96,98,101,106,101,107,107,106,116,99,94,101,103,108,103,103,105,113,101,113,109,108,114,98,101,103,111,106,97,117,101,100,97,89,95,100,98,103,100,100,109,108,99,104,104,100,120,108,96,104,96,113,105,116,105,99,110,99,103,110,111,104,104,103,100,103,99,106,107,117,99,104,100,87,107,106,111,112,96,101,96,103,104,99,105,105,93,102,100,109,102,104,100,102,96,102,94,107,98,115,111,96,98,103,95,105,111,104,106,104,109,111,96,104,106,108,100,94,98,94,109,108,88,96,120,99,94,106,94,95,97,113,118,106,105,95,106,112,101,109,112,103,98,88,102,99,102,91,109,106,103,109,115,109,101,111,128,100,91,109,102,109,110,97,103,109,100,89,104,106,106,113,102,102,97,89,102,111,97,117,107,102,105,105,106,106,110,109,90,116,114,102,109,97,108,100,100,107,100,102,106,107,105,92,101,94,97,91,110,98,110,103,109,105,97,104,95,103,98,99,106,107,109,104,95,103,106,76,97,104,115,108,100,104,106,102,103,108,102,94,96,106,92,95,106,102,94,96,83,100,104,93,98,113,92,103,87,106,103,111,109,102,94,100,116,105,104,109,95,100,111,95,86,100,109,113,106,102,113,107,97,100,104,99,101,117,95,112,97,104,100,100,106,93,105,110,106,110,102,100,116,101,104,106,107,106,115,100,121,94,100,107,114,92,101,110,104,108,109,95,106,102,98,87,100,105,98,110,108,101,107,99,104,104,108,103,113,94,71,106,107,89,93,93,111,102,107,109,100,99,107,115,102,103,119,89,117,96,102,109,103,103,112,103,120,96,96,108,103,117,102,100,117,97,109,92,104,91,101,104,112,102,119,106,109,96,99,106,101,108,106,104,91,106,100,83,110,97,94,100,117,107,94,101,105,103,111,98,110,111,108,106,103,101,117,104,104,92,113,106,115,103,107,114,108,102,100,100,98,115,87,106,103,108,108,99,108,95,108,112,100,116,101,103,106,91,117,103,96,109,103,106,112,94,98,100,110,114,102,103,98,104,106,117,102,96,110,94,108,103,106,109,107,101,99,99,99,99,103,100,110,82,106,110,107,116,95,97,112,104,113,105,108,107,104,100,93,116,83,104,82,98,100,98,110,101,112,84,113,103,102,104,83,112,91,108,98,106,103,88,107,97,92,121,97,112,112,75,103,99,100,97,104,98,103,106,103,98,112,98,117,103,104,100,69, +603.55334,96,106,96,95,105,100,106,103,110,109,99,104,99,106,113,122,97,105,107,94,104,107,99,96,103,89,102,113,100,100,96,110,92,95,107,117,99,95,113,100,113,106,132,98,111,106,104,88,101,90,95,121,95,98,93,105,109,91,101,95,102,100,113,97,105,113,117,122,101,110,111,105,93,125,109,100,121,100,105,103,106,103,99,105,114,92,100,112,110,103,94,102,100,91,102,97,89,104,124,97,96,109,88,99,113,106,99,106,104,101,106,106,110,108,109,105,107,100,118,109,103,96,112,102,100,100,103,96,112,99,95,106,105,104,116,105,117,111,110,103,94,106,98,104,98,99,109,100,80,98,102,103,109,105,102,103,112,83,113,91,105,106,101,108,99,104,103,99,110,110,102,108,103,92,100,125,103,105,101,81,109,116,118,109,107,104,99,102,116,95,125,107,101,109,105,101,105,109,106,115,95,104,96,98,110,101,97,110,104,110,101,103,88,93,105,100,107,91,87,125,99,98,119,104,98,113,105,108,113,105,102,103,106,96,104,107,102,95,102,101,111,102,105,105,97,85,108,103,108,101,110,95,100,89,89,100,94,100,95,109,115,110,95,102,98,102,91,102,104,110,99,101,99,111,98,110,102,80,111,97,115,104,100,99,105,91,120,142,94,102,109,91,110,118,110,117,105,88,95,102,108,114,103,101,95,101,111,113,98,101,100,101,110,105,101,91,105,107,108,104,92,102,104,100,99,87,100,112,100,106,107,107,92,100,110,97,106,110,78,96,113,104,95,112,111,105,96,92,113,122,91,108,107,109,109,110,99,93,107,98,109,99,115,119,100,91,95,92,111,111,109,99,101,117,99,98,107,95,100,106,108,116,99,110,120,95,108,103,100,101,109,105,105,96,106,110,97,101,110,122,109,107,102,98,115,92,97,106,98,109,100,98,113,99,108,109,104,109,107,97,87,104,103,118,69,101,102,96,114,101,102,117,102,101,112,94,92,103,100,96,110,107,113,110,95,104,104,113,112,106,102,98,102,99,110,85,106,105,94,98,85,67,105,111,125,98,110,106,94,99,115,104,113,100,117,102,113,120,104,99,101,97,112,99,92,109,109,102,100,102,100,105,111,108,108,106,102,110,118,110,103,105,109,108,108,92,110,102,119,119,119,103,102,111,107,100,105,111,95,94,100,103,105,123,100,87,101,107,95,114,106,111,112,101,101,99,118,102,103,117,103,102,102,114,113,106,116,107,103,111,109,96,93,112,88,104,89,103,103,102,112,118,112,106,105,108,107,110,113,101,100,89,117,100,110,103,104,104,107,104,107,129,110,99,98,100,106,108,95,99,104,100,93,102,109,101,86,110,89,109,90,106,105,85,103,96,87,99,112,99,111,103,107,107,106,107,115,125,109,95,104,88,91,100,104,99,104,120,101,120,133,108,102,99,103,122,104,97,113,112,101,105,101,98,108,96,110,95,114,111,105,113,96,113,109,104,108,112,106,86,116,123,99,113,96,96,95,108,107,98,125,104,74,124,103,99,105,114,104,98,105,103,125,97,94,104,97,108,111,101,111,108,113,103,108,98,96,117,113,105,109,100,110,105,115,113,94,102,105,106,121,114,93,96,93,103,106,107,94,119,116,105,100,116,110,91,104,105,106,115,110,89,104,104,99,108,105,115,107,108,115,103,110,130,110,97,114,97,107,114,109,98,110,101,118,93,110,101,100,98,115,108,96,116,103,101,98,109,100,113,118,106,103,110,98,112,117,98,112,107,113,105,105,104,93,98,120,114,116,105,95,102,106,113,110,108,104,117,75,93,106,124,110,100,114,116,100,104,108,107,99,112,103,91,108,91,114,102,120,109,113,113,106,115,109,102,113,108,116,100,107,106,110,102,98,110,120,110,108,103,95,105,100,92,97,103,95,100,104,109,105,71,104,114,100,110,117,109,97,98,111,104,105,101,100,117,62,105,107,101,100,105,110,99,96,99,102,105,111,98,99,104,109,116,108,98,108,112,106,105,110,115,102,110,117,111,98,99,104,108,98,114,121,109,113,102,114,108,109,106,99,97,100,117,114,108,98,106,92,108,106,106,93,108,100,106,109,109,102,112,104,112,112,110,100,108,113,112,113,98,103,99,117,115,72,94,120,114,99,105,102,105,114,102,100,124,108,103,106,103,109,107,95,103,98,110,96,100,102,98,108,110,102,111,86,104,108,103,106,102,95,106,109,95,106,114,94,110,100,107,100,100,105,107,97,109,108,107,101,103,111,110,106,94,114,104,94,103,97,100,102,108,105,99,104,109,100,98,94,97,129,102,99,98,101,106,114,99,102,113,109,124,109,112,115,98,114,128,112,132,134,161,121,127,129,142,133,159,149,118,127,115,106,117,118,120,107,107,118,113,106,112,95,112,102,120,108,98,99,97,104,101,107,103,98,103,103,107,99,94,102,107,97,106,94,99,105,114,117,113,101,108,86,105,93,93,105,109,101,109,105,108,88,103,89,103,90,82,107,100,109,109,109,103,118,103,113,120,100,96,112,109,89,75,100,102,112,99,102,103,111,102,106,108,83,94,103,107,106,104,102,96,99,103,101,95,100,112,96,94,117,109,104,103,101,111,96,106,98,96,102,87,104,100,106,97,113,115,111,105,113,112,111,107,100,106,101,105,110,105,104,103,88,98,104,116,108,111,106,116,104,95,109,110,90,133,110,107,92,101,80,88,109,105,114,112,117,111,109,106,103,100,105,112,103,112,96,103,110,106,108,104,91,92,102,115,93,102,111,111,89,104,96,113,108,99,140,112,113,106,107,106,112,86,132,105,103,100,104,98,109,104,109,111,110,103,101,107,107,103,102,102,107,100,107,102,114,96,100,100,104,113,111,107,103,107,101,99,96,98,113,102,95,104,95,105,87,105,107,106,111,102,92,105,87,110,99,95,98,107,111,110,99,109,113,82,103,105,101,116,98,104,99,96,113,100,97,102,115,100,109,98,101,119,95,108,116,101,106,111,108,85,101,121,107,108,105,105,100,109,101,103,106,107,113,107,102,88,115,111,105,115,105,116,113,103,99,98,104,99,102,108,109,96,100,97,109,106,106,81,114,108,106,105,92,106,108,108,106,104,102,102,103,99,107,113,99,112,100,106,111,101,100,100,108,118,96,101,96,107,112,116,93,103,117,112,106,105,106,99,114,113,112,116,115,102,122,102,117,105,104,94,103,106,110,103,96,105,111,94,105,103,121,79,113,101,103,97,103,109,101,97,105,103,102,99,109,101,100,98,99,110,108,105,109,117,109,102,117,101,97,111,101,119,104,113,92,107,120,96,104,111,112,107,102,116,97,116,108,103,114,113,99,100,113,114,108,109,94,111,111,102,103,112,104,107,113,106,104,100,97,94,104,104,101,99,112,102,104,103,90,85,108,102,98,105,107,97,99,99,113,106,113,97,116,93,92,90,98,108,98,103,98,94,91,109,106,120,121,105,107,115,104,103,97,127,105,105,101,95,116,114,99,97,101,118,100,101,106,104,89,95,113,113,105,110,104,102,98,107,107,109,103,109,106,98,108,108,99,94,102,105,110,113,99,115,99,103,117,104,96,90,98,102,116,120,105,95,120,112,102,105,114,104,97,104,107,98,97,109,106,99,124,98,98,108,109,90,99,107,97,84,104,105,109,84,105,117,107,106,104,102,104,106,102,104,113,111,97,98,102,106,99,102,108,95,109,102,108,113,109,107,115,97,105,100,106,102,106,108,106,109,105,113,103,108,112,102,126,106,109,102,100,113,99,109,105,105,105,106,98,101,134,104,106,95,105,98,96,100,111,108,105,100,89,104,117,99,103,101,104,102,104,105,102,87,114,99,108,97,99,94,101,99,99,96,116,98,104,105,96,104,103,108,96,102,100,98,90,96,110,104,110,105,100,128,102,100,93,102,108,99,100,105,92,108,112,106,98,104,101,107,106,93,113,108,107,89,93,110,113,96,99,111,112,108,100,104,113,109,108,102,96,106,94,122,106,107,116,94,95,109,103,111,106,110,107,116,98,116,111,108,110,102,95,107,104,102,99,100,107,116,100,109,95,107,113,100,102,105,106,89,96,106,98,117,80,95,110,106,100,109,105,106,104,103,117,104,107,94,122,100,100,97,97,128,108,106,88,104,103,107,107,91,103,107,97,109,95,95,111,105,90,88,99,114,98,111,121,101,101,92,97,105,110,102,109,114,112,109,94,136,104,100,90,102,103,111,105,96,95,105,103,94,112,98,115,106,109,107,101,106,104,100,97,108,96,110,104,110,97,106,109,110,106,112,103,116,97,114,109,101,110,100,106,102,101,107,109,110,98,110,108,121,107,110,111,104,92,108,105,104,80,116,108,107,111,113,108,97,101,104,107,107,100,102,111,110,88,105,109,87,104,104,104,95,95,95,102,102,109,112,108,115,113,109,112,108,122,107,104,101,104,100,112,113,120,105,99,109,112,108,103,109,101,108,112,107,95,91,98,104,102,124,110,110,95,104,98,98,91,96,109,95,102,106,91,98,112,100,110,113,100,105,108,108,102,108,104,113,111,97,110,100,111,103,98,102,113,97,100,97,99,131,102,108,109,109,123,107,108,98,125,100,104,96,116,107,108,107,100,99,104,107,103,95,97,94,119,96,94,109,106,105,110,102,118,114,101,99,116,112,107,104,103,102,108,107,102,98,101,109,99,102,99,114,117,108,106,103,102,99,111,104,112,111,95,115,107,102,106,92,110,109,111,125,100,103,106,111,104,108,112,106,97,107,110,107,95,106,116,114,100,102,113,93,106,105,100,108,109,105,104,95,107,108,122,107,102,92,99,102,92,103,88,89,104,116,76,97,101,113,106,108,113,106,103,112,90,104, +603.6944,104,112,93,109,105,99,103,109,96,109,101,108,120,102,98,94,106,125,102,106,104,94,97,108,105,111,101,109,98,111,106,91,96,94,96,99,101,77,105,100,115,110,107,112,106,103,104,105,104,107,105,119,108,92,100,109,105,106,102,104,113,110,105,95,112,104,101,110,87,94,107,121,99,99,115,104,88,98,100,100,108,103,99,107,103,85,99,108,111,97,107,109,99,99,98,93,103,96,102,96,100,102,114,97,99,102,97,100,111,103,100,102,100,94,99,101,107,102,106,104,96,113,99,106,103,106,98,107,107,91,95,98,86,102,107,110,99,107,95,103,105,115,99,104,101,96,107,96,92,115,103,105,115,102,95,99,107,104,111,108,108,98,101,105,123,96,100,105,91,101,121,111,96,100,97,92,101,106,103,105,99,106,98,103,106,102,96,94,108,88,106,108,96,103,96,103,105,114,91,98,115,110,89,112,93,93,101,101,103,112,104,110,98,107,99,118,102,108,108,101,111,103,105,99,108,101,102,108,104,109,103,101,99,108,95,118,106,99,113,117,103,108,106,100,103,107,107,105,111,104,107,110,107,104,102,107,94,125,112,112,101,90,95,100,101,77,113,104,95,110,111,99,108,105,103,95,104,101,118,86,102,104,96,110,121,103,91,110,109,112,101,106,108,121,115,99,103,104,99,108,103,104,87,107,99,93,105,103,104,100,97,106,107,106,107,99,108,102,103,100,79,110,95,103,109,119,95,87,107,99,119,100,103,105,95,112,112,102,91,106,95,94,97,93,105,102,101,113,113,96,118,103,104,112,107,98,108,111,106,94,100,119,101,102,105,103,111,107,116,122,99,97,108,71,98,103,112,116,109,117,103,110,107,103,99,103,90,98,106,96,109,107,101,107,95,107,101,107,110,99,119,115,110,98,96,87,107,116,121,108,95,104,95,112,108,96,110,103,109,95,110,103,90,120,106,97,109,103,103,121,114,106,91,111,113,115,102,106,100,99,118,105,99,102,94,104,106,110,100,109,103,100,101,112,95,91,106,98,104,95,74,106,125,108,107,106,111,94,102,96,110,107,98,105,108,91,96,99,102,106,97,104,115,99,100,106,105,101,101,106,106,110,116,100,91,98,114,99,114,98,107,94,109,111,106,113,109,107,95,98,98,110,94,110,109,98,105,99,90,99,100,109,97,105,109,96,110,110,105,107,101,100,108,111,102,107,104,107,107,90,92,112,109,100,114,111,112,99,116,106,105,113,111,98,101,98,95,106,103,96,108,107,96,118,116,105,107,112,109,94,91,102,112,108,107,77,101,108,100,95,105,77,103,103,117,100,107,109,111,106,95,102,96,104,117,106,108,103,114,119,100,115,88,108,99,94,117,96,117,100,108,102,105,105,113,117,109,103,102,112,107,100,97,99,110,100,102,109,102,97,107,99,103,111,87,110,108,100,98,105,115,109,103,106,113,100,102,100,115,111,110,105,110,99,108,103,99,118,113,102,112,107,98,93,101,101,109,107,104,97,103,110,107,105,104,103,113,94,100,113,109,105,123,108,109,104,88,104,102,105,101,113,108,104,103,106,116,109,103,101,111,105,103,91,102,106,104,97,103,110,104,105,112,102,106,99,103,115,111,120,107,100,103,114,100,100,104,92,106,111,109,97,104,105,101,101,107,108,111,99,108,99,100,109,108,103,99,109,105,108,118,98,102,107,118,121,104,104,102,98,101,117,101,95,121,111,101,113,101,107,110,114,101,107,96,110,101,106,114,100,111,101,110,108,101,105,94,114,100,95,83,102,122,109,106,101,91,105,105,92,116,109,104,98,113,108,99,106,120,106,93,113,101,104,121,114,102,117,115,99,107,99,108,102,101,95,106,104,110,109,104,95,112,92,105,108,109,103,102,102,111,105,109,103,93,115,104,104,103,97,95,98,110,91,91,109,104,109,96,96,98,102,102,119,116,105,77,99,104,100,98,100,92,118,90,107,120,107,106,89,110,93,104,106,108,93,97,105,107,117,118,106,107,106,112,102,105,109,96,95,91,108,112,102,99,100,109,109,98,97,90,113,102,111,98,118,101,99,101,100,104,97,104,94,102,112,97,101,88,97,87,108,99,97,105,108,99,90,114,102,99,94,102,87,99,102,99,136,112,108,112,105,112,112,97,104,117,113,91,120,112,113,116,104,117,107,110,108,98,104,96,105,97,103,97,103,105,102,93,102,98,95,109,86,99,117,110,90,97,102,99,102,95,112,94,115,100,117,105,107,106,100,114,102,115,119,93,110,101,108,100,108,104,112,117,119,102,103,90,105,102,100,96,96,100,110,97,124,92,95,117,110,108,104,118,105,106,117,115,117,113,123,127,124,126,133,125,151,133,114,120,130,124,127,118,129,108,116,121,104,109,110,106,95,95,107,116,108,114,95,94,99,116,105,103,97,99,104,101,96,88,108,109,118,110,106,94,96,103,106,100,98,103,104,115,105,96,116,106,103,103,94,108,104,115,106,94,105,77,71,100,103,103,89,105,103,113,113,88,102,110,86,108,110,111,109,101,96,74,118,105,120,106,106,108,110,103,96,107,91,114,104,102,98,108,109,100,96,96,99,97,116,100,95,111,95,108,95,110,106,104,106,109,83,112,123,108,109,105,98,105,104,115,93,99,105,88,103,91,95,103,105,104,110,109,101,109,87,105,109,95,104,110,102,108,96,113,98,104,82,99,124,100,108,100,109,117,113,103,105,108,107,118,115,102,113,109,112,95,91,110,110,100,94,103,95,91,109,109,101,102,98,100,122,111,108,103,104,111,108,107,103,102,100,102,94,109,109,97,107,105,104,116,106,106,103,106,115,111,107,85,108,108,115,110,99,113,101,110,95,102,118,117,104,111,112,97,73,96,107,112,103,105,108,106,107,109,112,108,106,102,108,102,96,104,107,99,113,113,97,110,120,111,100,100,107,107,113,103,108,112,99,102,103,121,112,104,100,117,104,106,105,98,102,111,93,116,92,110,98,116,97,96,116,107,111,100,109,98,108,108,119,102,113,106,106,109,110,120,122,111,110,91,105,104,110,107,95,113,120,99,107,106,99,98,113,101,99,91,107,116,101,105,112,108,107,112,106,110,107,114,101,106,131,119,116,101,117,103,112,104,117,103,104,115,99,109,89,107,109,88,97,102,104,108,89,119,113,104,131,111,106,94,113,104,99,112,93,119,98,93,101,110,96,116,103,107,100,108,98,127,103,96,95,118,106,102,108,108,103,106,92,109,103,102,100,108,107,106,92,103,121,113,103,116,100,109,99,103,99,104,100,95,109,111,111,100,101,107,101,92,112,115,100,89,98,100,117,100,100,97,102,96,102,121,100,107,109,96,99,97,120,97,114,104,105,108,110,103,99,104,105,113,107,111,98,95,113,111,100,109,96,106,92,85,110,108,98,104,108,100,108,101,87,99,96,107,96,102,92,109,103,102,103,103,97,112,112,109,100,94,103,102,120,113,101,112,110,92,98,98,107,111,102,99,104,103,105,105,106,115,100,101,101,102,102,98,101,109,105,108,108,100,105,100,105,110,105,108,115,98,95,94,102,95,105,109,99,102,108,104,117,111,98,94,102,104,109,107,90,108,105,110,102,99,101,101,113,101,103,114,102,98,105,104,113,102,111,99,104,115,111,105,106,107,109,95,100,106,105,109,101,112,104,105,104,102,108,84,100,113,100,99,95,101,99,98,96,107,100,98,102,107,94,109,98,115,100,111,99,106,91,102,102,102,102,104,108,118,108,96,102,96,105,87,97,99,110,104,126,103,111,111,101,108,108,98,99,102,97,90,105,103,101,104,101,108,95,93,116,97,108,95,105,107,103,98,109,107,112,109,98,88,95,104,100,113,116,90,108,108,93,113,113,103,107,105,87,114,121,102,93,94,95,104,109,103,98,109,127,103,91,98,102,107,104,108,110,98,112,96,117,107,92,109,104,107,106,98,106,96,122,92,102,106,101,101,102,108,112,104,85,110,99,107,106,101,100,108,109,101,110,91,102,99,95,109,110,91,99,102,102,105,103,108,104,102,96,103,98,117,106,100,106,104,108,111,119,107,110,117,90,112,99,90,103,109,97,105,96,102,99,103,117,113,102,96,113,109,107,102,106,104,94,111,113,109,103,106,99,111,103,96,100,110,110,102,94,114,110,109,85,111,102,112,110,107,106,103,107,126,102,102,106,105,110,104,114,108,110,100,103,113,109,105,89,91,98,83,107,101,76,105,105,106,108,104,98,106,105,96,95,95,98,94,103,103,109,108,101,97,106,111,115,102,109,109,110,96,118,100,105,106,95,132,107,104,103,96,100,111,100,120,101,105,110,100,103,104,108,99,118,87,97,103,99,103,112,110,105,93,98,128,110,89,100,96,90,110,98,116,97,109,109,114,113,103,103,100,106,103,117,98,99,111,93,109,90,105,102,88,101,93,109,100,111,86,95,92,100,102,102,103,101,109,106,109,105,111,100,101,103,104,97,106,100,110,109,98,112,102,112,107,96,102,102,90,110,110,101,95,104,108,101,99,114,100,110,108,113,116,102,106,99,104,90,98,108,105,101,102,106,113,93,110,94,101,111,109,106,94,109,110,93,93,115,110,100,83,107,112,109,104,102,90,94,96,100,97,98,104,102,101,90,109,86,102,107,105,95,106,98,100,121,104,94,113,98,91,87,94,92,109,107,93,103,105,96,116,108,99,108,91,100,90,99,100,105,100,109,95,100,100,95,95,110,100,94,105,99,95,104,103,98,114,112,97,125,103,95,104,95,116,105,99,114,106,119,106,108,114,110,94,100,104,94,104,102,102,88,102,107,110,99,88,98,88,118,105,111,100,104,113,88,105,112,108,96,91,104, +603.83539,88,98,112,101,84,105,113,94,102,102,103,90,96,102,107,117,100,107,128,102,96,104,104,134,110,107,96,98,102,90,106,107,102,110,112,103,99,80,104,107,109,104,108,97,99,113,103,99,105,107,104,109,107,92,106,97,101,107,103,104,97,111,108,104,111,103,89,111,106,89,79,104,98,104,104,99,96,93,107,107,95,112,99,115,99,104,109,109,108,106,118,108,102,95,105,97,100,105,96,109,98,100,107,101,105,108,109,91,113,99,107,118,103,98,99,101,102,106,120,115,108,101,81,103,99,113,101,104,104,103,93,102,112,95,111,105,92,112,102,126,99,118,99,111,92,104,107,102,94,111,108,104,101,105,101,97,90,110,95,104,106,115,108,108,106,108,109,115,97,99,103,98,100,103,103,100,111,99,100,99,94,107,104,108,98,106,112,90,116,91,97,104,109,104,104,100,103,107,93,106,117,99,101,110,102,112,107,100,114,103,110,102,104,96,102,108,102,104,113,104,108,112,93,108,117,111,101,108,112,100,99,120,106,113,109,107,108,117,105,94,104,111,105,101,108,116,93,108,110,112,95,113,110,106,120,117,98,113,110,98,83,105,114,105,96,101,108,106,110,105,108,99,112,100,122,108,102,113,109,91,101,109,105,109,98,96,98,109,106,114,110,109,113,102,99,118,108,99,108,100,113,93,105,103,112,114,111,113,114,99,90,124,101,110,112,98,89,95,102,108,109,101,99,106,92,83,92,100,110,110,113,105,108,95,119,111,101,98,105,112,106,101,105,91,107,117,101,111,99,104,93,112,106,80,102,99,102,101,106,98,106,96,84,113,71,94,93,104,89,103,95,107,125,108,110,100,99,113,101,100,110,111,106,104,113,107,94,94,116,102,105,98,101,101,102,113,97,100,96,107,108,108,90,100,102,100,95,102,106,116,91,91,106,105,111,96,102,95,107,93,95,103,100,111,93,91,100,98,104,89,99,105,109,101,96,101,97,110,104,109,111,120,109,111,104,110,114,115,128,99,92,102,104,100,108,116,104,119,107,84,102,106,108,108,107,107,116,104,113,97,105,108,97,104,106,103,109,107,102,106,98,109,107,99,104,118,107,118,95,91,111,106,99,101,98,102,99,108,102,102,103,100,103,111,115,102,99,102,114,109,111,108,97,107,104,109,110,96,93,92,105,110,98,93,101,109,111,119,94,100,104,119,107,100,94,102,116,92,117,103,108,103,106,100,93,105,113,105,105,113,100,96,104,112,105,113,101,111,101,104,102,123,103,75,98,102,111,103,95,100,105,96,109,117,105,111,109,109,102,106,104,108,117,90,109,113,104,112,108,101,90,109,100,97,118,101,107,101,113,96,90,117,108,100,102,70,97,111,102,108,100,106,106,98,109,99,86,103,100,104,102,102,104,90,99,85,94,104,116,104,106,109,92,114,106,106,99,87,82,104,114,95,112,105,89,104,104,101,90,120,107,111,102,106,104,111,106,118,104,112,112,91,104,110,98,100,125,100,110,109,112,104,88,106,111,103,96,122,69,102,103,108,105,113,96,102,108,109,121,92,125,113,106,103,114,110,107,112,100,97,98,104,97,101,98,111,115,111,101,104,102,108,106,108,105,105,105,117,108,80,108,110,113,107,103,103,96,113,114,110,107,99,104,95,101,114,106,105,111,100,102,101,123,102,105,108,103,107,109,113,112,99,103,100,104,105,93,110,105,109,100,105,102,113,106,105,94,106,110,98,92,106,109,108,98,99,109,121,111,112,103,105,105,107,103,114,100,104,103,110,108,102,120,108,107,91,101,118,95,97,98,100,104,106,109,99,107,105,103,89,112,92,111,100,103,110,112,109,101,101,100,110,101,107,104,103,102,103,104,129,110,108,117,97,106,104,97,106,109,102,105,98,102,105,106,106,103,100,105,90,104,94,104,124,103,99,108,109,101,100,105,104,111,96,102,81,132,102,109,104,117,115,108,105,97,111,121,114,114,95,113,111,99,115,108,107,95,116,119,107,110,108,109,114,106,108,99,102,103,88,104,117,103,106,110,98,103,116,100,102,93,113,110,111,103,91,101,108,104,103,103,95,111,105,84,119,103,99,112,104,111,108,117,105,105,109,101,103,111,107,103,99,99,122,99,107,106,101,97,93,98,107,111,107,113,100,107,83,98,109,108,120,108,104,105,100,87,102,95,103,103,104,117,111,99,114,109,108,95,109,108,102,111,116,102,96,114,99,111,108,108,106,100,100,101,117,101,102,100,96,113,96,106,102,110,103,106,114,96,95,103,105,104,107,109,114,100,120,107,108,112,123,111,102,96,105,118,104,119,108,121,110,101,118,95,111,116,113,105,117,110,127,112,125,133,136,128,130,149,129,114,121,121,113,84,118,119,115,105,104,112,100,111,104,96,111,106,105,115,101,92,114,99,90,100,115,105,102,110,99,104,104,96,94,113,104,97,97,98,111,112,103,102,100,105,104,107,114,108,105,100,112,102,114,108,106,106,110,94,95,116,108,99,102,108,103,97,98,97,99,113,102,111,109,107,105,105,105,110,95,100,112,104,108,101,98,101,113,103,108,102,97,107,108,107,117,105,105,106,109,100,104,95,100,102,110,113,104,105,118,116,105,113,91,99,101,97,102,110,93,113,119,106,106,94,108,112,106,117,99,102,124,101,104,113,109,91,113,100,102,104,107,109,122,101,113,103,99,101,113,104,107,99,94,91,101,121,108,89,109,104,106,103,103,114,104,107,119,103,105,95,105,111,100,103,95,82,96,108,104,91,109,99,109,118,117,112,121,107,98,124,113,106,111,99,111,97,99,105,103,112,101,80,112,93,102,111,103,99,104,107,112,101,115,94,104,113,108,113,106,108,99,107,116,105,98,116,109,111,109,116,116,103,102,91,109,103,104,103,112,101,102,99,100,112,116,93,112,105,100,123,114,107,113,102,117,113,103,88,103,106,104,126,104,113,104,113,102,102,94,104,98,105,108,105,111,107,102,105,96,102,97,98,102,113,100,121,108,94,108,98,107,108,91,105,105,108,106,109,97,103,117,99,104,103,108,113,101,103,104,112,104,115,107,120,112,105,109,101,100,93,101,102,119,117,102,98,106,110,105,116,105,102,100,101,112,99,102,97,99,113,112,101,96,107,106,92,100,107,103,99,97,97,109,105,104,117,100,103,107,101,90,103,98,127,103,111,115,117,96,102,96,82,105,103,102,97,98,117,93,107,98,98,100,124,106,97,108,105,103,106,100,92,106,102,102,104,106,115,110,112,101,121,105,117,124,112,102,101,109,105,114,104,109,105,112,98,89,101,113,106,107,101,108,113,109,116,107,111,106,104,97,98,102,109,101,104,106,104,103,102,122,104,115,114,108,95,107,104,106,104,106,96,109,111,106,113,97,105,100,110,99,105,98,99,106,106,102,114,105,101,103,92,111,113,92,103,111,109,102,109,103,106,107,97,102,113,102,92,103,102,96,98,120,110,100,97,105,106,101,112,110,98,105,105,108,113,112,100,107,105,109,115,103,108,109,108,102,97,107,104,103,106,111,87,103,99,102,105,98,105,104,109,106,110,112,112,109,112,94,98,112,122,113,104,97,98,101,101,107,104,96,103,103,111,97,109,76,107,116,112,101,103,123,102,103,103,96,108,110,108,107,95,85,105,109,107,100,107,106,103,104,105,111,103,116,102,117,101,97,99,97,107,102,106,94,107,103,109,98,108,96,109,108,105,90,94,105,113,102,118,97,113,113,106,114,99,95,108,99,102,104,85,116,107,95,105,97,107,102,111,104,114,121,104,101,109,112,96,120,110,109,91,104,96,104,115,113,106,104,111,109,102,110,107,97,108,98,117,105,107,107,109,106,114,97,121,111,95,95,100,96,106,101,96,112,106,104,106,107,117,103,95,111,91,104,109,107,102,99,103,103,99,114,102,108,112,108,94,116,91,101,102,109,103,104,123,115,114,103,95,108,105,114,107,111,104,111,100,104,112,102,106,93,100,112,109,106,99,106,102,102,96,103,108,106,111,99,125,97,98,110,103,92,112,70,95,101,101,105,103,106,101,100,110,109,108,98,99,107,104,107,107,107,114,103,108,95,104,103,95,99,105,104,98,102,97,96,102,106,111,105,87,90,106,116,98,107,103,108,101,96,112,125,105,103,96,104,104,97,103,111,99,109,110,117,102,98,100,106,105,93,105,102,77,96,97,104,121,100,106,93,108,101,113,104,103,91,106,99,110,104,110,96,113,103,105,102,93,99,100,119,108,104,103,102,104,111,113,111,106,104,103,113,102,108,97,109,103,109,106,93,106,105,100,101,101,107,102,119,108,102,113,114,105,79,105,105,121,101,113,103,107,107,103,104,108,101,119,100,99,106,103,113,102,108,121,112,104,92,114,97,101,117,92,110,89,109,104,123,95,114,110,107,95,93,110,84,112,99,100,76,102,107,107,95,103,98,112,111,130,101,98,109,111,112,102,102,95,96,99,97,102,113,64,99,121,109,103,101,105,105,107,105,100,108,104,102,117,96,123,101,102,93,99,117,98,103,101,103,113,102,133,100,103,106,109,96,108,106,95,107,117,99,94,99,99,109,112,98,112,96,108,103,106,97,107,107,100,105,97,106,116,103,103,122,109,109,103,95,98,121,106,103,105,108,108,91,93,96,96,103,100,110,95,108,93,98,92,98,101,100,86,106,83,103,115,108,96,110,106,101,114,88,98,112,113,114,114,106,107,98,104,101,106,109,108,101,107,104,110,110,106,107,114,105,101,102,105,108,103,107,100,115,110,101,103,108,84,116,92,102,97,105,91,118,90,124,108,88,109,85,94,98,112,101,96,88,114,108,96,107,81,94,107,104,103,104,105,85, +603.97644,100,111,104,120,75,89,98,92,113,110,109,105,87,102,113,103,100,118,104,96,102,103,103,106,92,98,98,104,108,111,115,100,95,121,100,97,91,109,102,100,103,115,103,112,106,110,105,97,104,117,99,108,94,95,114,107,124,103,111,104,106,68,111,102,106,106,85,109,105,109,96,97,99,116,112,94,87,96,97,96,119,94,104,112,100,109,108,113,98,100,99,92,99,103,96,84,98,117,103,79,100,109,98,98,108,96,96,95,101,107,110,95,109,109,106,98,90,116,87,107,91,103,92,109,70,105,95,97,110,95,91,94,88,111,108,100,109,95,88,100,95,99,103,101,110,96,117,95,97,102,104,103,101,92,96,94,93,102,105,107,116,100,97,103,104,103,108,102,113,103,114,101,111,106,105,96,117,92,105,103,98,98,96,103,106,96,106,94,106,96,100,100,100,98,91,102,107,95,81,104,114,93,108,109,96,98,101,99,112,106,97,103,110,103,105,92,94,120,98,116,95,117,103,103,100,109,110,112,97,109,98,99,98,100,87,97,98,100,106,106,111,109,102,99,108,105,111,104,92,115,103,105,107,103,109,102,100,90,94,100,101,102,99,96,100,104,107,117,108,89,115,100,107,104,108,116,120,101,87,91,109,87,113,100,116,107,85,117,91,106,98,98,114,93,110,102,109,101,112,96,103,108,99,108,112,114,125,125,111,109,103,103,96,119,69,100,101,102,107,99,103,104,110,121,109,101,104,98,109,109,94,91,96,100,97,106,110,92,94,99,115,96,102,105,106,99,101,106,108,112,94,103,110,117,107,110,105,109,102,100,104,104,93,103,100,107,111,116,108,103,100,111,106,107,94,117,102,94,114,99,108,102,106,103,90,99,99,102,114,102,115,96,95,108,102,102,99,94,104,106,101,108,100,98,108,98,99,92,107,100,101,90,98,108,107,101,105,106,123,109,101,107,99,104,110,100,108,96,110,103,104,100,108,102,109,100,104,102,104,110,106,107,100,94,97,118,89,103,106,109,99,98,112,105,111,100,91,104,121,96,107,116,109,114,101,102,113,107,95,105,112,101,100,105,105,91,97,117,100,118,117,102,113,99,90,99,108,112,109,103,105,114,110,106,98,99,117,119,90,94,116,96,102,102,94,94,97,111,114,105,113,106,99,95,107,106,107,103,89,93,96,110,98,112,100,107,109,109,112,99,97,72,102,105,92,105,98,97,122,94,105,119,117,106,102,100,108,91,100,108,97,103,96,100,104,102,109,121,108,103,95,113,89,110,97,105,106,109,105,100,90,99,95,105,103,96,96,94,91,114,96,99,105,105,94,103,98,105,91,109,105,97,102,106,98,94,99,95,108,109,103,105,95,99,98,98,98,112,110,118,101,113,103,115,104,84,107,114,99,107,104,104,104,94,106,103,95,101,103,93,103,115,106,78,97,108,89,104,102,99,108,95,87,108,102,105,93,105,106,116,102,108,105,107,99,99,106,100,113,107,106,103,119,107,95,111,104,111,106,101,123,106,95,93,104,85,105,98,107,102,110,112,109,104,94,97,99,104,95,101,92,100,105,110,104,91,105,96,106,98,102,106,104,94,100,109,105,95,80,104,112,100,106,103,95,94,94,91,108,87,114,104,85,106,92,98,99,100,109,103,107,110,105,97,97,96,104,100,113,105,84,105,97,112,99,98,96,108,96,98,113,105,137,103,104,84,79,102,106,105,97,104,98,124,105,97,93,94,135,99,115,106,108,102,106,104,110,111,113,102,101,118,110,91,99,103,94,107,103,123,96,120,105,121,99,118,104,113,101,107,103,92,105,100,91,102,117,101,99,102,127,101,102,101,108,106,106,98,100,115,102,112,105,98,117,117,100,105,111,116,102,110,92,96,107,96,93,96,95,97,96,106,116,96,104,98,106,99,111,96,102,106,98,104,107,104,101,109,102,101,110,102,109,103,101,93,101,111,104,105,90,101,101,98,99,118,100,106,99,107,102,100,108,108,89,101,102,106,113,100,102,108,106,128,118,97,103,102,99,98,101,96,102,102,99,103,101,112,100,109,102,97,101,106,94,97,92,104,105,103,102,103,103,112,100,95,105,109,101,96,101,100,118,107,101,110,103,109,97,99,100,106,113,105,100,106,113,117,98,102,91,97,115,120,100,109,105,102,102,107,101,117,98,105,97,111,97,108,111,109,83,90,109,101,79,112,99,93,88,103,104,89,108,104,105,94,118,95,114,106,101,91,97,107,100,106,99,69,98,98,113,96,99,94,101,113,106,93,99,104,110,108,101,124,105,108,95,103,89,101,104,105,111,112,111,97,102,124,100,102,98,109,110,104,112,110,105,106,100,115,102,111,134,116,134,133,135,133,126,129,123,121,118,129,103,110,121,112,103,109,102,120,109,103,109,99,102,106,114,90,103,118,113,98,95,116,101,109,92,111,101,107,100,102,100,115,97,101,119,107,97,103,83,99,96,102,108,105,97,98,101,102,78,116,116,104,110,113,104,113,117,116,107,102,96,108,103,108,100,109,113,88,104,106,102,94,111,107,115,103,116,112,90,96,68,102,117,81,103,99,109,108,99,111,104,101,98,97,79,87,131,107,108,108,94,95,108,101,108,106,100,95,102,95,98,106,87,100,108,103,94,101,109,100,95,107,102,106,139,104,113,114,106,109,110,106,110,112,98,103,95,105,102,109,81,112,107,96,105,103,92,112,99,109,116,105,99,103,103,97,97,107,105,106,114,106,102,117,109,103,111,97,97,109,107,103,95,108,103,106,108,111,92,95,103,104,110,100,117,116,122,110,104,98,114,106,108,107,108,95,98,95,103,105,83,100,110,97,100,106,109,103,114,114,112,105,122,108,112,111,89,107,98,102,98,100,111,101,99,99,103,116,109,121,104,105,96,96,113,109,105,98,92,109,106,114,107,98,96,99,102,96,99,108,99,93,102,109,99,97,106,99,102,91,101,110,98,99,111,105,112,109,113,110,98,103,110,100,109,100,96,91,109,99,113,104,99,124,107,98,97,113,105,109,99,105,106,114,112,112,95,99,105,101,100,101,98,95,109,91,104,107,102,94,114,103,100,103,103,102,100,93,106,103,113,114,97,101,104,113,106,106,105,115,102,107,90,98,104,94,98,103,100,104,96,92,101,103,108,91,98,113,99,106,120,105,107,102,99,98,104,100,101,98,102,94,100,113,95,105,113,98,106,98,103,107,105,116,117,123,111,110,107,107,110,88,109,126,102,101,120,109,110,108,106,97,99,102,103,100,114,100,102,103,99,105,107,102,106,94,104,106,97,102,118,99,84,100,93,113,100,111,101,112,101,102,105,96,107,103,96,102,104,106,106,110,107,91,110,100,108,109,92,101,105,105,99,83,105,94,92,98,112,116,95,99,92,103,95,103,117,107,97,100,103,97,100,130,95,102,89,106,114,98,109,106,95,103,93,99,105,101,100,93,106,102,94,114,111,99,106,101,99,102,111,101,116,101,79,110,125,102,102,106,90,114,106,124,99,108,101,112,94,113,117,109,106,105,120,104,117,98,101,112,111,111,110,96,99,103,100,97,89,111,89,98,104,99,96,125,94,104,105,103,100,110,102,114,111,116,99,94,102,105,110,105,112,100,102,108,100,105,101,105,90,103,96,102,91,100,98,114,102,115,95,103,105,92,111,104,102,99,85,114,100,106,103,106,109,104,103,95,121,101,105,108,102,109,99,107,101,102,107,80,95,93,97,104,98,96,116,98,111,111,96,97,104,96,115,100,108,95,102,107,91,97,112,114,115,95,85,106,114,103,88,106,108,102,105,117,116,108,107,102,99,106,112,102,102,112,102,102,103,117,99,99,88,108,100,102,101,100,105,98,108,106,89,106,103,98,96,105,103,109,107,111,88,102,100,106,90,106,126,104,112,108,119,98,111,99,97,115,109,121,104,95,100,100,98,102,101,103,104,103,111,99,99,107,105,103,105,108,93,102,116,112,92,100,107,109,121,101,104,91,106,122,106,111,105,110,99,105,110,105,93,109,101,98,115,106,107,96,102,110,81,117,114,97,106,92,107,102,97,102,103,121,110,104,90,90,105,109,100,110,111,94,107,97,108,100,69,94,95,95,106,94,108,103,114,108,106,94,104,96,100,99,107,84,98,108,104,110,105,99,101,99,90,113,109,103,105,103,100,112,102,102,102,107,113,98,113,100,99,109,105,107,108,103,111,89,90,112,95,93,103,96,105,97,110,103,95,103,108,103,110,89,109,75,97,111,102,94,92,105,101,106,103,91,106,117,110,103,102,114,108,101,103,112,97,107,117,76,105,99,109,88,110,104,102,91,102,111,100,117,92,109,95,105,108,113,102,95,93,115,109,117,98,91,97,101,105,106,107,106,94,101,94,107,110,74,96,111,108,113,108,101,93,95,95,95,91,106,103,104,101,106,115,99,106,104,104,88,99,111,109,116,100,108,100,102,91,99,99,106,109,107,94,104,98,84,103,104,107,98,109,105,99,106,103,106,101,102,92,97,91,100,96,110,106,97,107,120,108,97,109,108,115,111,105,99,96,97,107,105,109,111,100,113,107,102,106,105,108,114,105,107,106,109,107,98,106,101,103,109,98,96,107,102,118,104,85,97,106,98,101,101,121,98,103,92,111,89,103,103,78,101,105,96,109,103,104,115,102,110,95,97,96,100,104,98,112,100,99,96,110,115,100,102,101,111,102,91,91,106,105,112,111,103,107,105,83,95,93,102,103,113,99,96,102,95,101,102,100,107,100,104,112,109,85,117,113,113,70,96,104,104,100,100,103,97,102,108,104,110,93,131,99,101,98,98,111,115,119,103,105,103,126,100,103,95,91,110,107,103,118,95,114,85,107,102, +604.11749,113,119,111,99,98,108,124,107,113,94,107,101,102,103,116,88,95,108,109,113,105,113,98,104,102,104,95,94,98,101,91,104,110,103,101,109,73,102,105,120,92,98,106,96,116,100,105,96,103,97,99,100,109,101,99,108,104,101,108,99,99,108,102,109,109,104,111,107,103,99,104,105,101,105,93,111,114,108,97,99,99,101,104,108,104,94,97,99,93,103,109,101,87,99,97,109,101,112,110,107,74,106,105,104,96,111,112,112,99,108,103,109,101,83,87,112,98,110,113,101,106,100,112,103,107,108,104,106,119,108,107,106,103,100,107,92,106,123,110,95,92,103,97,104,103,97,113,99,81,99,97,95,115,65,93,112,103,102,120,102,98,99,90,110,102,98,100,105,99,116,123,99,98,112,113,109,108,99,110,105,110,104,83,102,102,122,105,115,115,108,100,107,116,99,102,95,108,104,101,102,103,108,108,102,79,101,101,114,102,112,105,71,109,109,117,87,114,109,104,109,98,114,88,98,107,100,104,109,110,103,105,111,90,113,108,105,97,105,108,90,110,97,128,100,91,94,104,101,106,106,117,108,103,129,102,108,102,113,102,102,92,112,97,95,83,111,98,109,98,112,102,99,106,105,94,97,98,103,95,120,100,108,105,109,106,114,97,112,107,106,102,96,104,99,112,110,90,107,113,94,107,108,123,107,85,106,135,107,103,97,103,115,96,106,110,106,100,95,99,106,99,104,91,95,98,112,101,99,110,99,93,101,111,92,109,112,112,102,109,102,109,96,104,85,96,104,113,101,100,101,92,102,102,122,106,108,111,104,98,109,106,103,98,100,91,99,109,105,101,113,111,104,115,115,106,98,116,104,104,74,110,99,102,118,101,96,93,94,101,106,104,90,95,103,106,97,99,93,107,95,114,113,102,109,94,99,101,110,106,97,105,108,98,112,107,102,93,104,109,100,116,99,94,109,121,104,107,106,107,103,103,103,101,112,102,96,96,106,127,107,109,114,95,104,99,102,113,93,103,105,82,106,111,114,103,114,94,93,104,85,107,110,106,103,101,108,98,98,112,104,104,102,104,94,106,121,99,96,102,106,101,109,97,109,105,105,100,106,112,100,112,106,95,100,94,111,96,106,102,98,104,99,112,103,105,107,97,99,102,103,109,117,103,101,90,104,103,102,95,106,97,110,102,104,111,100,108,100,114,94,106,113,116,107,106,101,105,89,103,112,115,107,115,115,112,100,109,100,105,108,98,110,107,103,116,109,113,107,104,94,103,88,80,100,95,95,111,97,97,97,101,102,96,112,103,107,97,96,103,98,97,102,104,119,117,100,109,94,102,115,87,112,111,112,114,116,105,103,107,98,111,103,102,77,106,98,112,100,95,111,102,101,121,110,105,116,91,100,106,96,114,102,107,98,103,99,99,106,95,102,103,96,99,102,97,106,117,100,111,118,110,104,102,99,107,102,95,88,102,106,100,108,111,109,106,100,114,114,106,95,126,104,86,109,111,102,107,102,98,103,106,97,98,109,95,116,98,109,99,102,105,99,111,84,105,99,94,97,113,102,100,96,106,104,90,99,116,111,117,92,102,107,113,100,106,113,116,112,105,99,98,93,101,98,108,104,101,116,105,106,103,110,103,99,86,99,106,108,105,113,104,107,98,108,115,105,102,95,124,102,94,92,101,98,108,109,100,103,109,117,110,109,100,106,107,108,107,95,105,99,106,97,106,97,93,104,103,106,99,103,118,110,101,97,106,115,101,88,116,115,104,104,112,105,100,103,99,99,112,106,101,98,89,122,113,96,97,117,105,119,77,107,98,114,97,115,108,108,104,108,110,117,107,86,104,114,103,105,124,100,99,86,104,108,98,107,118,100,106,112,110,103,97,92,106,101,100,110,97,96,104,102,126,100,102,110,107,102,108,98,125,90,109,108,101,92,90,108,109,106,92,99,100,98,99,104,113,105,116,102,105,109,98,108,99,104,112,102,125,100,112,96,103,104,97,88,107,109,108,107,102,109,113,110,106,98,116,110,108,117,101,117,115,107,99,107,112,107,114,105,121,104,111,104,104,100,108,103,98,101,95,108,96,104,111,100,100,104,66,91,124,99,124,111,104,96,99,117,120,100,111,96,105,111,99,96,101,107,105,100,101,105,100,99,111,98,97,95,94,95,102,83,103,103,107,102,97,110,95,108,91,89,108,101,101,110,115,102,95,91,101,103,95,97,111,93,114,97,104,103,114,103,98,106,108,105,101,103,102,113,99,107,97,98,105,96,110,89,102,96,103,108,106,111,120,110,110,106,105,98,113,116,99,106,114,108,113,97,107,97,113,121,107,114,129,99,90,97,111,123,119,116,130,120,141,150,150,133,120,115,125,125,116,143,102,119,111,100,107,98,105,101,116,102,109,113,114,108,100,93,98,87,97,106,110,100,92,111,110,104,95,103,95,106,120,102,96,103,102,97,107,108,107,106,101,110,101,104,121,100,109,103,102,98,107,98,91,108,95,99,103,99,105,98,107,100,112,98,92,111,106,105,109,112,109,103,105,109,111,97,113,111,103,106,104,109,109,109,103,95,117,89,105,106,109,100,108,109,103,81,101,106,104,93,107,92,106,99,113,95,106,99,124,84,97,115,96,90,98,108,93,121,106,110,87,107,100,106,124,89,109,115,97,110,106,105,102,93,89,101,110,105,101,116,112,101,73,96,111,104,106,102,104,109,102,126,90,118,110,101,106,106,108,101,95,94,104,107,97,97,96,76,105,109,99,93,96,102,103,106,99,109,89,108,111,112,91,98,105,110,119,110,91,113,105,109,100,101,100,108,106,111,109,113,96,99,109,113,112,109,116,95,100,102,102,87,100,96,101,94,111,108,101,99,107,106,110,120,106,112,99,99,92,109,91,100,120,102,115,94,103,102,92,95,103,108,104,110,100,106,101,99,100,108,94,96,105,107,98,109,94,102,97,101,96,95,105,99,111,122,105,101,105,102,116,93,105,95,90,71,95,89,99,109,104,102,105,99,104,107,109,100,106,96,108,100,103,125,104,100,115,101,97,110,97,102,101,116,96,117,111,110,105,108,97,99,91,101,116,105,100,116,106,110,124,102,109,115,94,109,100,107,105,98,104,99,93,105,100,112,97,98,97,102,109,102,102,106,108,107,104,99,103,108,100,83,109,114,107,109,84,94,112,108,118,97,104,120,89,102,97,105,104,93,101,98,110,94,113,111,100,98,99,107,107,110,104,94,93,93,102,90,121,110,103,102,130,111,102,102,108,89,110,109,105,116,106,95,108,108,112,110,99,98,115,108,97,95,107,102,91,112,96,107,104,116,91,100,108,107,95,96,102,111,105,107,102,111,103,97,94,108,90,98,102,103,88,105,98,83,106,102,113,97,91,95,102,103,82,106,99,111,90,95,105,111,106,105,104,104,104,96,105,105,121,93,111,102,108,105,109,112,110,104,108,102,105,114,101,105,99,109,91,123,90,98,85,100,114,104,110,114,106,108,97,113,102,106,98,101,89,100,109,104,106,104,87,99,104,112,110,105,105,109,100,100,99,91,116,105,96,95,104,111,95,100,99,105,107,102,94,111,100,109,103,99,106,104,95,97,102,97,109,103,104,99,105,88,92,115,119,107,101,102,109,88,104,117,88,94,103,102,103,113,104,77,100,91,97,99,96,87,108,97,112,95,97,106,104,100,100,93,105,109,121,102,108,88,100,95,110,90,98,95,122,95,106,96,102,114,107,96,106,109,102,106,100,99,103,104,98,71,106,107,97,99,112,115,93,102,105,102,100,93,102,107,92,100,109,111,95,108,95,102,97,99,101,121,105,98,101,112,105,100,105,95,118,102,93,108,101,109,100,98,99,93,110,100,91,99,99,90,107,108,102,106,103,107,106,105,94,104,104,96,99,95,105,104,122,108,93,104,100,103,99,106,115,118,95,100,87,104,83,104,111,99,102,109,100,100,108,103,97,95,117,102,79,104,94,102,95,101,95,96,101,99,107,95,100,102,109,102,99,97,110,101,102,76,107,84,97,102,100,109,80,100,103,112,115,97,101,99,85,105,96,107,95,109,103,93,106,108,101,105,99,108,91,119,111,109,93,100,97,114,129,99,108,87,103,102,93,92,90,102,98,112,95,97,108,83,112,102,110,112,93,96,105,106,113,91,103,102,100,104,110,98,103,91,102,101,109,99,96,95,117,90,96,107,110,102,83,76,110,104,105,94,100,96,102,109,103,102,103,106,108,120,90,103,99,107,103,97,100,95,104,99,103,120,100,100,106,106,105,112,102,113,103,112,116,94,107,100,109,104,110,104,104,117,103,109,95,97,106,108,92,109,112,100,110,105,96,108,109,104,108,99,103,92,102,113,96,102,101,94,87,102,101,79,98,97,108,99,92,97,105,104,96,108,98,98,95,111,104,112,96,103,106,107,107,99,99,100,102,92,112,87,78,105,72,109,101,92,99,109,101,102,106,103,73,106,103,92,87,108,100,111,101,101,104,100,113,108,96,101,105,95,103,114,109,102,106,93,95,95,107,117,109,88,104,96,93,95,103,106,96,103,105,105,99,87,103,112,100,99,105,93,107,98,110,102,95,106,110,94,110,88,101,101,110,101,92,95,112,101,93,93,90,96,103,88,63,106,99,127,105,103,103,115,111,95,99,103,101,114,107,91,91,98,105,102,95,99,104,98,98,119,101,103,106,99,110,91,91,96,99,104,97,108,103,91,90,94,117,101,105,104,107,93,96,90,103,91,121,104,103,104,85,113,105,94,108,88,102,98,102,107,108,91,97,103,94,99,91,96,98,114,92,105,102,82,105,99,104,105,106,81,97,93,85,103,129,90,87,94,100,106,105,103,113,98, +604.25854,104,110,90,97,97,108,109,113,113,98,98,105,104,113,97,107,108,109,102,114,109,98,114,115,115,107,74,115,120,105,99,111,100,111,112,107,103,95,118,105,100,109,107,106,108,111,102,106,99,98,98,90,90,94,98,91,106,107,103,118,105,93,106,99,107,109,94,109,110,96,98,82,95,109,102,113,106,96,103,93,104,105,97,121,94,95,106,106,104,106,112,105,112,101,97,108,110,100,99,93,125,111,99,115,94,111,100,112,99,120,96,109,108,104,111,105,106,110,104,104,98,119,102,121,107,103,99,90,105,104,107,106,117,111,104,128,105,78,117,110,105,107,110,107,107,104,99,104,108,99,104,106,93,102,103,101,109,109,114,100,102,107,108,113,109,101,104,100,113,112,108,102,102,108,107,98,106,103,108,114,108,103,97,127,98,103,85,102,111,102,106,109,107,107,114,106,100,86,95,110,98,118,109,104,105,96,116,109,113,99,95,108,101,102,106,107,121,102,107,111,100,107,108,113,109,108,113,95,109,106,106,106,110,113,114,114,114,107,101,114,113,114,111,75,108,99,112,105,99,106,106,104,104,100,106,103,117,117,99,113,84,109,104,94,101,77,122,88,97,103,104,116,105,99,99,96,111,108,104,107,102,123,110,108,109,87,106,111,96,99,110,89,114,99,118,94,100,101,116,112,105,102,110,104,109,110,106,112,98,110,96,114,112,110,104,115,111,103,106,104,101,110,105,102,106,106,110,117,111,124,106,102,104,101,108,120,111,102,103,109,104,102,103,110,116,105,106,102,113,103,103,100,104,113,104,111,112,103,97,111,103,92,108,113,98,103,118,105,112,113,102,105,110,121,98,100,107,111,102,105,109,114,100,99,106,109,107,116,105,105,103,84,108,113,96,100,91,99,104,100,99,114,99,108,104,107,115,113,103,109,103,116,107,104,109,100,115,116,127,112,90,118,101,103,68,99,104,101,108,108,100,110,111,105,111,103,110,111,94,109,99,107,113,106,98,107,96,105,111,107,105,100,110,91,125,96,113,99,110,100,96,103,101,101,107,104,96,114,102,136,105,97,107,110,108,97,109,108,100,100,108,76,111,103,95,102,103,105,111,98,113,104,111,114,96,103,101,102,106,102,107,108,105,105,112,98,101,100,99,110,119,110,121,114,103,108,101,93,117,109,104,78,117,112,102,109,117,116,105,99,107,99,117,114,119,105,106,107,117,94,110,105,91,99,107,100,110,103,113,117,110,105,104,110,107,96,98,102,105,114,109,117,104,110,104,98,103,88,107,110,104,105,114,110,121,112,100,101,105,110,113,101,104,112,102,116,125,95,97,109,110,123,91,107,125,109,98,109,109,113,108,110,105,98,105,113,88,93,110,107,106,99,113,103,109,108,105,103,105,103,107,104,103,114,108,108,101,112,109,114,102,118,96,107,101,102,100,112,110,98,121,105,93,105,107,107,110,112,106,107,96,112,105,105,118,111,99,118,126,90,101,106,107,120,99,105,113,101,90,79,109,103,103,108,95,97,75,106,90,105,106,100,113,95,100,105,106,111,105,117,111,106,108,120,106,95,123,105,103,98,106,105,118,109,101,108,82,112,101,103,102,112,110,95,104,94,103,108,109,109,108,95,100,113,113,103,114,98,107,105,97,108,102,96,108,114,102,102,120,102,99,103,121,118,100,105,113,114,101,107,117,107,102,114,102,112,100,112,109,99,109,104,105,97,109,107,100,105,95,103,108,101,108,106,124,108,109,108,113,99,116,105,120,102,79,119,114,109,111,99,109,107,105,117,91,109,100,121,105,110,112,96,99,92,110,102,112,107,106,108,119,106,109,107,108,109,119,122,110,109,108,107,107,108,104,98,108,109,114,114,116,91,110,109,112,101,113,98,82,101,105,100,126,110,107,104,104,111,108,108,104,108,101,106,107,93,107,120,100,105,103,102,124,103,109,95,97,111,114,94,113,107,100,111,93,117,107,111,108,107,111,107,102,107,107,91,97,128,107,103,119,114,108,120,104,105,98,104,113,125,106,84,99,103,110,103,109,95,100,99,92,102,108,110,108,105,98,107,115,99,102,100,102,106,93,111,93,104,102,125,107,119,106,95,102,101,101,114,98,96,104,95,111,119,95,115,115,106,98,102,124,108,110,108,106,95,115,105,97,99,100,102,112,102,100,101,104,98,106,113,102,97,104,113,107,113,115,108,101,107,103,104,99,73,104,112,120,113,105,101,109,104,101,98,92,106,90,115,106,103,105,109,112,104,112,114,104,109,108,108,98,101,125,121,106,105,102,99,106,105,102,106,114,103,118,106,110,121,109,105,107,107,114,121,122,106,111,108,118,131,118,110,120,123,126,133,134,116,131,161,123,134,123,119,121,113,120,122,113,107,108,114,118,95,98,103,116,104,105,108,98,118,101,103,97,109,104,92,108,97,106,107,109,110,105,107,105,100,111,115,97,102,124,105,103,99,115,98,102,111,88,105,123,109,108,118,97,113,112,99,95,106,97,100,117,93,108,104,109,97,96,109,108,108,105,85,106,106,108,110,103,107,108,105,83,117,109,93,102,80,108,110,105,100,114,93,96,94,99,95,108,100,116,95,108,107,110,108,113,103,107,105,111,97,110,111,109,78,131,122,113,104,114,97,112,103,108,109,120,108,117,108,107,105,107,101,122,105,98,117,105,105,115,115,97,107,110,101,110,100,105,107,106,103,113,112,114,107,95,100,111,111,115,96,101,113,97,105,99,103,107,108,99,128,105,98,113,119,98,108,105,117,100,100,105,105,99,111,105,110,109,109,100,100,108,96,121,107,102,107,107,96,102,118,107,111,108,107,107,110,105,105,104,119,104,94,116,106,98,109,118,106,99,88,110,94,95,104,111,107,107,109,109,108,113,103,110,123,110,110,112,111,103,104,106,114,104,104,110,117,103,110,98,99,101,104,107,113,118,105,95,104,103,106,92,110,106,100,92,99,103,111,101,110,113,92,118,106,115,102,112,102,107,101,112,107,107,88,105,106,103,100,105,110,115,85,113,113,116,114,108,107,96,100,100,100,102,114,104,102,109,121,103,105,105,107,109,105,106,105,109,112,94,108,112,102,112,110,100,98,101,104,96,115,99,104,78,106,101,91,99,104,91,103,110,114,95,101,101,99,107,94,107,102,108,108,111,108,104,101,105,111,101,123,116,104,93,108,101,101,106,114,102,109,100,97,108,103,136,97,102,100,99,129,104,113,104,100,103,111,106,94,105,104,95,105,108,112,107,109,107,74,98,112,117,94,111,108,90,99,120,112,91,111,108,114,98,96,86,108,106,108,104,110,109,111,111,102,116,109,98,100,113,113,105,118,99,95,107,110,107,93,96,115,98,119,112,113,114,111,102,113,115,113,100,112,99,96,108,109,96,88,107,101,97,107,104,107,127,111,115,104,133,103,105,113,111,112,106,101,103,113,99,100,91,107,100,104,98,100,116,119,100,100,105,102,100,106,101,80,110,115,98,101,101,102,97,115,97,98,105,108,112,103,110,104,91,102,99,116,84,96,98,98,102,99,117,95,102,107,117,103,105,110,103,105,109,103,106,99,119,104,100,105,112,97,105,91,107,91,104,76,95,99,113,101,105,103,99,107,106,103,88,116,96,110,101,101,105,105,98,108,102,110,107,108,91,104,102,117,111,100,98,102,120,101,108,111,113,106,106,102,108,113,97,98,110,98,88,107,104,93,117,109,129,109,112,103,99,94,94,105,113,107,103,95,110,87,98,108,108,113,117,105,99,98,111,93,105,100,105,112,107,109,105,112,100,106,106,111,104,101,102,113,103,115,112,103,103,99,117,110,112,112,108,105,106,100,79,105,106,79,105,94,108,91,114,102,92,100,99,99,101,94,106,110,103,98,96,105,108,116,113,107,113,100,99,107,97,98,115,103,107,103,99,112,110,105,102,107,104,96,104,111,116,103,115,105,118,100,106,98,102,99,104,93,108,108,106,115,98,114,105,109,99,116,127,103,117,105,108,134,95,107,101,110,99,109,122,109,106,103,106,99,85,114,101,113,106,94,109,94,107,114,111,115,98,117,103,75,104,102,109,140,106,99,106,99,93,97,100,86,101,101,109,122,91,92,112,102,102,95,101,111,107,111,103,106,101,93,96,95,109,99,114,102,113,104,90,106,83,114,105,107,108,91,104,103,100,102,97,141,106,110,103,112,101,101,109,106,87,102,105,93,114,105,98,104,100,105,103,106,123,100,106,103,95,112,106,105,102,88,99,111,112,98,102,95,107,109,105,104,106,104,111,98,104,107,97,102,102,111,103,91,105,103,105,108,105,114,104,99,107,103,114,92,91,108,102,121,111,107,112,100,116,116,112,100,135,116,100,94,109,116,95,102,95,104,100,112,107,100,98,108,106,94,101,101,94,100,105,104,104,103,88,100,109,97,108,103,113,99,99,109,98,100,107,104,103,107,102,105,89,87,101,100,102,104,99,112,95,100,98,105,101,80,113,109,93,104,100,107,105,111,111,92,105,109,103,92,101,103,113,116,117,112,99,117,109,98,104,96,107,105,117,97,72,100,113,102,104,108,101,111,97,109,98,113,107,101,95,105,105,98,109,103,111,122,111,110,110,90,107,116,108,87,102,104,91,117,102,102,102,97,103,102,104,113,102,102,110,103,105,106,100,97,97,121,115,103,99,104,125,104,104,93,115,101,105,109,118,99,109,99,100,101,103,126,107,103,95,108,112,108,95,108,110,103,100,108,113,97,107,99,104,104,135,101,73,104,117,102,110,109,113,110,91,111,94,105,106,109,103,78,105,105,84,110,102,112,109,104,115,112,108,101,111,99,109,95,92,98,110,100,104,104,107,120,95,91, +604.3996,99,104,97,102,88,116,102,107,122,118,88,95,108,106,120,106,96,116,103,112,104,96,104,110,100,87,113,113,93,106,106,101,101,107,109,106,97,81,83,91,117,94,109,110,105,111,106,89,115,104,102,115,94,104,95,110,121,99,96,106,106,100,109,94,110,87,98,103,102,93,111,109,102,112,103,104,95,116,123,89,106,99,107,98,94,112,113,120,102,99,104,104,99,105,103,106,98,100,72,104,115,105,98,112,111,109,100,99,103,107,98,111,99,98,92,108,123,98,109,95,124,100,109,103,107,106,116,109,112,104,103,111,101,101,102,103,104,103,104,91,100,103,105,76,95,97,98,106,105,106,120,95,107,110,94,91,91,105,109,113,111,115,103,99,103,102,123,114,108,103,98,98,98,93,101,104,94,95,103,106,101,121,97,109,104,109,108,99,103,102,97,111,116,113,88,97,104,112,105,109,108,102,104,87,103,97,88,98,99,111,125,115,102,108,115,102,101,99,103,107,114,105,109,102,98,111,104,107,103,108,111,98,115,102,92,117,104,141,106,115,101,113,108,107,112,125,101,109,95,102,109,116,104,104,102,99,104,104,92,99,98,100,126,100,95,110,95,117,103,109,109,117,88,84,127,105,99,105,84,110,107,104,98,103,98,101,83,99,96,101,106,91,107,105,104,109,104,102,88,106,106,103,92,108,95,108,100,110,104,109,98,124,119,104,92,111,113,101,98,104,69,107,113,114,98,142,100,100,122,115,108,102,119,108,100,108,108,103,105,119,105,104,114,78,109,78,118,107,103,97,103,107,106,109,102,103,118,105,118,105,107,103,102,95,108,99,108,105,95,104,114,112,102,102,104,100,108,100,99,114,97,111,95,111,110,102,96,96,114,91,99,97,97,103,107,95,101,107,99,109,106,119,107,121,118,100,96,102,95,100,106,93,104,110,95,103,110,118,105,105,105,110,97,104,99,100,98,93,99,113,100,106,108,98,114,109,98,102,113,102,103,111,90,111,98,106,93,108,114,104,98,110,101,121,94,98,110,110,94,104,99,101,103,106,104,113,109,104,110,105,98,84,103,115,90,112,97,95,103,88,113,123,118,93,105,95,103,102,111,101,112,91,82,96,101,100,109,99,108,98,109,90,113,109,108,95,87,106,105,107,119,104,100,113,96,112,114,104,94,96,107,97,99,106,102,100,102,110,104,101,91,116,106,102,106,94,107,106,112,98,102,99,95,100,105,111,110,100,101,118,107,105,107,93,100,106,119,124,100,95,106,101,99,107,98,101,124,103,125,96,91,122,106,105,99,108,115,106,99,94,102,95,104,100,108,105,109,115,105,104,108,129,105,101,120,103,106,105,99,116,103,108,96,116,91,103,98,104,102,103,100,92,100,109,110,113,101,93,118,99,98,108,108,104,113,113,103,104,104,108,101,92,104,110,100,118,115,97,102,95,105,99,108,98,98,106,100,117,101,111,104,109,105,106,117,107,114,110,102,95,104,86,104,105,101,101,98,99,92,100,100,106,103,109,97,76,102,108,103,96,95,119,95,90,102,108,110,108,93,91,101,110,103,114,101,110,105,105,112,98,95,86,109,102,104,111,109,115,87,109,112,105,104,111,112,105,99,97,113,103,114,101,109,111,104,96,102,110,103,106,103,106,115,96,106,114,105,96,99,99,101,105,101,112,110,117,103,102,103,110,110,104,77,99,109,108,104,115,102,109,100,95,94,102,104,95,112,108,104,96,100,110,114,110,102,105,103,97,110,103,116,104,107,118,96,99,113,106,105,106,104,111,110,106,102,114,100,104,100,98,98,103,101,94,107,99,99,94,109,95,118,93,113,98,112,102,114,101,105,104,100,105,113,117,101,110,107,99,106,98,107,102,109,82,110,100,95,109,99,107,96,107,110,108,110,105,109,109,116,101,117,102,110,106,95,98,92,105,94,106,101,108,108,106,108,93,97,89,104,107,101,102,109,97,95,112,100,114,101,103,109,104,106,114,93,102,101,104,99,103,98,111,111,113,105,101,94,101,105,107,116,111,109,103,102,112,109,107,98,106,103,98,87,108,113,105,88,97,109,100,94,123,112,101,99,101,100,99,102,104,117,99,110,109,111,102,95,102,101,99,98,113,113,102,100,94,109,95,102,105,110,103,113,106,105,89,104,101,104,76,107,99,95,96,97,100,91,104,111,108,98,102,112,105,101,102,102,99,93,99,99,99,100,103,103,97,103,100,110,97,109,107,113,96,92,106,98,94,98,100,92,87,97,100,105,112,103,100,104,113,106,116,88,116,107,105,114,99,101,102,107,106,126,89,118,118,110,109,108,103,117,112,103,103,104,114,106,115,120,108,131,141,110,141,125,118,132,133,123,116,126,127,115,109,111,102,109,107,117,110,93,120,98,114,112,94,105,102,108,100,113,103,115,112,101,93,109,108,88,102,107,108,104,88,114,104,94,85,91,102,101,107,93,101,107,101,105,98,91,101,95,116,102,102,113,101,112,109,104,92,103,108,114,101,117,85,101,105,89,114,99,112,112,95,116,103,107,103,99,108,116,107,106,87,102,112,104,108,108,88,109,99,108,98,107,99,110,102,109,113,108,102,109,109,100,91,99,113,98,105,99,91,99,95,120,100,106,112,104,109,117,104,101,97,93,103,103,112,108,109,107,111,107,106,116,121,124,102,106,99,103,101,104,98,95,106,105,97,103,99,95,98,86,112,110,113,111,102,102,101,108,106,99,101,115,106,103,109,100,113,103,124,92,106,100,108,105,129,114,95,97,106,99,101,98,102,117,105,102,104,97,96,99,108,103,109,113,111,97,103,98,108,113,100,109,104,103,106,100,120,99,105,108,99,117,106,101,97,106,109,117,106,98,106,109,99,103,109,95,116,113,110,103,88,125,105,87,98,109,99,112,102,94,94,109,95,117,100,101,103,96,106,100,101,108,105,102,123,103,109,104,92,90,108,85,105,100,119,97,99,105,125,100,109,116,87,105,91,111,99,123,88,109,114,109,115,117,117,89,105,106,90,98,98,106,98,107,112,106,98,118,112,103,101,105,105,101,117,107,109,100,111,106,102,110,105,115,90,122,104,117,104,98,113,109,101,104,100,107,91,106,107,106,100,96,100,120,101,103,106,113,104,107,97,115,96,105,99,102,100,109,101,104,103,101,101,98,99,96,99,100,109,94,100,108,105,110,100,98,98,115,118,106,112,94,98,88,105,110,91,110,94,84,113,119,93,98,101,103,91,96,102,105,110,100,96,105,103,106,96,101,108,113,108,110,95,108,112,112,95,101,104,108,99,95,110,102,103,102,95,79,95,93,105,104,90,109,106,84,100,101,108,99,105,102,101,94,101,91,103,111,102,105,101,105,109,96,114,99,114,98,108,118,99,97,98,105,91,105,99,105,99,108,99,94,111,88,115,99,99,103,109,103,94,99,99,111,103,106,108,111,97,100,90,106,111,102,112,105,81,112,108,125,98,89,117,108,103,110,125,100,113,98,114,101,93,106,112,112,96,95,110,110,103,110,112,101,120,109,113,117,109,111,99,113,106,98,92,111,103,100,89,100,109,103,112,99,92,119,106,105,107,103,102,107,98,104,103,109,99,102,115,117,96,103,105,101,101,105,115,102,108,99,113,98,104,100,102,104,116,108,95,95,99,92,105,100,105,109,106,113,105,110,102,110,97,105,108,107,96,109,99,113,103,104,124,99,105,102,113,108,105,99,95,94,76,109,97,102,106,101,97,108,99,88,106,104,83,98,104,106,91,101,102,116,81,116,94,104,101,102,110,107,107,98,103,99,102,102,115,99,85,100,109,96,106,113,96,101,107,103,124,87,99,102,101,93,108,97,106,106,104,103,105,103,104,101,111,94,109,99,101,102,111,105,109,109,102,102,100,114,107,105,106,97,105,99,107,89,93,101,109,96,103,88,99,102,95,92,102,102,105,105,98,110,72,109,109,100,110,108,98,102,105,115,103,106,97,119,109,111,103,103,105,99,115,107,112,108,96,124,96,98,92,110,112,107,108,99,113,88,99,108,95,100,109,95,77,107,97,112,98,94,115,103,106,100,105,109,103,109,91,104,107,118,106,110,98,98,94,104,98,110,102,101,113,113,97,98,98,111,96,97,84,77,101,98,116,102,91,91,105,95,111,95,111,103,107,108,106,102,106,103,116,96,105,107,108,100,108,108,109,98,117,105,106,104,114,97,98,103,104,107,96,103,108,109,114,107,112,100,108,108,103,102,99,98,96,104,103,102,108,111,104,103,110,104,96,112,110,108,101,111,100,105,94,120,115,104,112,107,90,104,107,98,99,108,105,104,102,103,104,103,111,96,102,118,105,97,110,96,90,104,112,119,100,114,108,118,110,93,97,100,117,102,106,104,112,98,111,116,110,98,101,99,106,104,108,79,98,104,101,99,106,107,98,108,118,95,97,105,97,103,101,112,102,108,103,105,106,97,100,76,105,89,105,100,94,113,94,109,91,97,98,102,106,95,112,90,95,117,107,100,109,108,99,102,106,101,99,102,108,106,101,103,107,103,103,95,101,103,100,106,100,106,109,98,95,116,96,101,103,98,90,91,112,102,103,89,102,102,105,99,92,107,98,118,93,115,104,96,96,97,101,95,113,100,102,109,89,117,102,97,101,104,96,110,102,94,92,116,109,110,91,91,108,91,100,101,99,96,95,114,105,111,102,105,92,101,116,110,96,115,117,106,101,95,99,96,95,109,106,96,99,104,117,111,103,93,98,96,112,113,103,105,91,104,109,76,89,98,105,95,96,109,100,91,102,116,116,109,115,100,98,99,109,109,106,102,105,103,88,111,97,103,100,102,105,94,95,118,108,114,94,72,115,117,112,92,92, +604.54065,111,94,113,97,97,109,108,79,109,110,110,116,101,104,108,112,115,92,102,94,112,98,106,103,112,108,124,117,107,97,103,101,82,96,106,103,116,107,82,108,102,97,105,114,110,104,114,105,107,110,94,107,106,98,95,108,99,101,108,98,113,103,102,112,100,112,86,108,98,102,83,103,104,104,113,115,110,99,101,103,107,116,88,113,97,107,101,110,115,99,109,104,106,100,99,117,106,93,108,108,97,88,115,93,111,108,95,122,100,98,99,96,98,93,107,97,113,102,106,102,111,109,103,108,100,112,107,89,113,106,132,129,101,103,111,110,105,115,101,105,109,109,111,100,101,102,103,109,113,100,101,95,108,102,109,104,103,91,107,106,106,103,94,95,95,112,95,106,100,102,99,106,94,103,108,102,110,100,98,103,102,105,104,113,105,100,112,95,108,102,117,107,100,108,110,111,111,114,116,97,102,87,104,106,116,110,114,108,107,100,104,90,105,98,101,87,116,103,108,96,103,105,119,101,109,102,105,107,111,107,107,130,105,103,110,106,106,103,104,109,99,109,108,103,99,101,99,99,104,102,97,98,99,110,93,105,105,113,100,116,97,105,103,102,103,109,121,102,116,105,102,90,108,99,104,110,104,94,117,91,105,103,110,94,97,104,90,100,103,104,106,99,107,112,98,111,109,117,113,111,105,114,114,113,92,106,106,107,114,95,101,119,106,94,111,112,96,109,102,103,116,114,124,106,110,102,106,101,109,90,115,86,102,107,107,118,104,109,91,105,98,94,119,98,90,93,98,119,108,112,105,106,107,115,109,108,113,113,109,104,129,94,113,108,104,101,102,111,78,112,98,105,110,112,110,107,113,108,103,109,104,117,110,105,111,100,105,109,81,95,112,94,102,104,98,101,109,112,98,109,107,105,100,114,107,100,96,108,121,104,95,98,99,105,104,98,96,103,116,114,71,106,115,107,106,99,101,92,98,106,101,109,104,100,84,100,107,112,101,97,100,112,105,99,94,100,106,113,109,77,108,102,113,109,104,113,115,104,113,109,98,100,104,107,112,105,110,106,98,106,115,117,109,105,121,117,96,110,114,105,118,114,109,104,105,109,108,108,108,101,105,90,112,90,106,100,104,103,113,98,116,109,99,127,113,111,111,113,100,101,101,114,111,98,103,103,111,95,113,101,94,105,112,113,103,112,104,121,108,120,100,96,113,98,108,101,126,100,101,102,90,104,117,112,123,94,110,99,116,96,97,108,106,99,93,101,106,98,101,117,103,108,94,117,113,93,103,103,108,110,106,105,106,99,108,109,103,104,103,102,113,91,105,111,111,98,119,104,112,100,102,105,120,112,120,123,90,107,104,125,114,103,113,106,99,100,105,104,102,105,114,99,104,95,112,90,108,101,100,125,87,109,104,102,98,119,99,110,89,110,107,110,103,101,104,102,102,94,110,110,112,103,96,101,107,92,102,95,101,121,105,114,100,105,98,113,99,114,114,103,114,106,76,110,107,111,113,105,106,119,120,104,112,110,112,101,115,102,105,105,103,114,113,99,115,101,98,108,99,116,100,111,106,103,110,99,107,104,103,102,109,101,97,88,109,106,109,110,103,107,106,106,106,97,97,103,101,106,103,103,118,105,98,120,100,99,111,110,111,112,107,102,95,107,102,114,113,106,110,111,105,97,104,99,103,103,96,110,99,109,108,100,94,95,119,115,89,99,108,109,101,110,101,103,91,120,95,103,108,100,107,95,82,102,107,98,107,98,107,97,103,109,102,102,108,101,98,112,112,99,100,104,116,112,111,100,111,95,101,102,99,106,101,113,99,117,110,108,107,106,104,113,99,107,105,96,107,105,111,100,103,117,105,106,118,113,102,107,95,102,110,95,109,100,102,100,116,109,107,99,113,106,106,106,104,103,98,107,93,118,110,95,109,110,97,113,107,91,101,108,100,102,99,103,104,113,104,105,106,109,85,117,118,108,112,123,108,104,106,92,104,103,98,92,116,103,95,101,112,100,103,103,102,90,103,115,98,98,100,100,102,106,101,104,122,108,104,101,97,100,114,102,110,86,94,109,118,104,97,104,106,106,102,121,111,107,116,118,95,100,104,93,110,116,87,100,112,110,97,106,119,108,100,101,103,108,121,109,125,111,103,110,117,107,106,109,100,103,107,95,106,111,103,110,106,101,94,103,125,109,102,105,109,108,111,108,116,114,96,100,96,102,103,116,114,105,95,105,105,96,120,106,103,110,99,110,102,111,110,107,108,115,106,113,78,106,98,112,125,103,86,109,101,108,105,101,110,104,105,96,109,110,106,103,98,98,94,103,111,96,95,104,105,85,114,98,123,106,115,129,125,126,141,136,122,113,137,114,143,119,105,139,128,129,121,111,98,113,111,104,110,106,106,99,98,99,110,109,112,99,93,103,87,103,103,111,114,111,103,103,100,117,90,113,111,109,108,101,110,117,99,110,108,88,100,107,106,109,114,111,113,101,112,89,102,104,114,108,104,103,100,107,104,102,105,99,110,113,108,108,106,104,111,98,107,117,114,110,103,106,112,97,111,88,106,108,108,104,103,100,91,111,108,113,91,97,109,98,104,104,91,103,111,104,100,98,110,106,106,105,112,97,105,104,102,116,104,113,109,101,110,117,106,103,92,96,110,104,111,91,106,103,101,112,112,115,103,77,106,109,96,116,110,105,112,109,91,97,103,106,77,105,113,109,104,102,111,108,104,94,97,117,101,108,112,101,116,104,112,101,115,115,104,100,96,106,113,113,103,102,108,108,125,105,92,111,107,101,103,103,112,97,106,98,94,116,98,124,113,105,105,109,117,107,100,101,91,85,109,110,100,104,110,102,126,102,99,106,102,113,112,106,97,102,115,101,115,98,112,113,104,100,108,110,112,112,98,99,111,114,109,104,104,109,107,110,91,122,96,109,103,106,106,104,111,107,120,98,102,101,103,118,108,106,109,104,118,102,102,97,96,100,100,96,105,109,105,106,121,99,102,101,111,108,114,112,112,119,119,106,102,110,111,113,96,106,113,109,103,107,110,105,117,71,98,103,101,98,114,107,108,124,124,104,109,105,101,113,114,104,98,96,105,114,95,102,119,102,113,107,107,102,114,90,100,103,82,106,99,103,104,86,123,103,111,88,104,107,100,115,85,97,94,106,106,110,109,87,106,104,100,108,92,110,99,87,100,99,85,128,107,106,103,92,112,104,98,101,128,88,110,98,108,101,102,112,102,102,104,109,111,71,124,102,111,104,98,98,104,94,105,93,86,111,106,106,105,94,97,101,108,99,99,102,107,122,106,106,108,98,94,105,99,115,104,117,105,103,118,108,109,91,109,97,100,105,108,100,104,108,111,88,98,112,99,106,98,100,108,109,95,104,108,119,90,111,111,106,102,104,121,113,124,104,107,93,106,124,96,109,101,102,106,104,105,95,112,102,95,99,97,124,103,105,104,104,94,109,99,122,100,110,106,105,104,113,112,99,116,101,114,116,109,107,92,105,96,101,97,110,100,92,110,108,107,103,88,110,108,110,109,111,120,106,98,100,94,111,105,100,98,101,103,110,101,119,104,108,106,104,110,110,98,104,102,101,105,126,93,104,110,96,100,104,113,112,105,97,108,108,107,93,104,102,109,98,104,100,103,101,102,102,107,110,92,113,88,98,113,95,104,102,106,102,104,95,106,109,117,92,114,109,99,93,100,106,107,105,89,104,107,102,116,112,105,101,111,100,108,106,113,112,101,101,101,103,106,91,83,92,103,100,99,96,103,97,101,103,111,102,112,99,101,113,109,106,83,111,94,116,103,112,95,105,112,105,106,119,115,105,113,102,102,103,96,99,90,109,95,100,98,106,104,97,110,103,115,109,105,110,97,108,101,109,98,95,107,94,109,104,103,99,97,116,112,98,100,96,99,102,105,107,89,107,104,121,110,103,106,90,103,112,110,108,103,111,100,117,96,113,110,110,105,109,109,99,102,103,95,104,109,103,116,100,111,107,102,97,116,104,113,108,103,112,108,114,101,104,115,102,111,112,106,96,104,115,107,102,103,104,104,114,119,100,105,113,106,101,97,101,110,106,109,93,99,116,98,99,106,107,75,124,109,109,96,104,108,106,96,106,105,104,104,109,105,112,108,103,101,96,102,107,111,114,99,106,100,110,119,106,111,99,104,104,99,103,110,116,91,95,104,96,110,104,81,103,111,111,100,110,100,111,113,103,103,104,94,105,98,97,104,100,102,71,102,103,100,106,99,97,102,108,104,101,102,102,99,111,109,115,104,107,103,113,125,102,98,116,112,110,117,100,104,103,109,97,104,119,115,103,113,107,112,115,92,117,100,118,109,99,104,78,91,109,110,108,115,98,117,92,105,114,112,108,97,106,99,117,105,110,106,109,102,114,99,105,101,104,105,109,112,102,102,108,100,91,112,103,106,105,98,103,109,108,106,101,101,102,88,101,98,97,103,103,108,98,102,106,108,102,92,105,98,111,104,109,108,101,100,106,95,107,119,96,85,113,104,104,107,109,115,117,105,106,93,117,116,105,97,106,95,99,109,108,98,114,92,117,93,106,110,103,93,93,100,120,106,104,101,104,114,108,99,117,112,113,109,108,108,108,98,91,105,107,98,107,103,113,99,100,99,99,101,88,105,101,114,101,102,94,99,100,105,106,113,96,80,102,102,96,99,107,95,113,95,87,108,97,100,100,122,95,113,105,101,108,107,104,96,97,103,106,110,102,100,99,105,105,102,115,108,107,104,100,99,102,96,137,106,105,117,97,103,102,100,83,99,113,98,99,99,120,89,104,101,109,105,102,107,113,105,98,81,99,106,111,113,105,113,96,106,106,115,102,118,110,97,100,111,110, +604.6817,103,102,105,104,101,102,95,105,87,99,105,107,100,103,98,76,101,117,132,111,109,107,108,87,94,107,94,105,110,94,106,97,116,114,94,97,96,102,113,108,102,104,111,99,117,102,105,113,98,98,108,103,134,102,102,99,104,101,109,105,92,106,106,110,112,109,104,102,103,92,114,107,98,99,99,114,94,106,90,105,113,109,100,93,113,98,112,106,100,98,109,103,105,103,98,107,108,98,100,109,99,105,95,114,137,97,99,99,87,109,102,93,110,95,122,109,97,104,120,92,101,104,104,111,101,103,92,104,104,107,107,108,94,98,103,109,95,100,105,105,114,105,105,110,100,103,109,104,102,92,118,104,106,99,118,102,97,93,106,98,108,110,109,101,105,90,104,98,103,102,102,116,105,91,104,96,95,98,121,108,98,103,101,101,110,97,105,90,110,100,92,114,73,95,92,95,107,114,104,93,109,111,98,107,104,110,100,108,113,111,90,112,107,100,117,110,71,112,94,91,118,103,110,94,109,105,103,130,111,97,107,98,100,106,109,107,102,102,101,124,103,99,113,109,106,110,98,108,104,115,108,99,105,96,74,117,103,92,112,104,100,111,83,95,116,111,110,101,116,104,109,109,95,97,105,104,106,101,108,117,93,101,114,104,111,105,105,105,94,83,112,102,113,105,112,99,104,116,113,90,98,95,103,109,97,104,100,103,95,125,100,110,109,110,103,99,94,103,98,103,96,110,110,98,113,102,107,97,78,111,121,105,113,105,105,103,111,106,103,114,117,111,95,112,99,104,104,103,102,100,103,110,104,112,104,107,117,104,104,117,93,99,95,100,119,104,133,111,102,118,113,109,118,117,109,108,99,100,93,101,104,101,97,105,106,109,95,106,104,95,103,96,104,120,110,102,116,86,92,118,97,97,97,92,105,94,97,105,114,102,77,107,105,97,116,81,121,105,100,107,108,116,106,113,101,96,105,108,96,108,102,114,108,105,97,117,95,105,103,104,97,113,105,107,110,103,109,104,98,109,101,94,107,109,107,107,105,113,110,87,109,103,107,98,109,106,112,112,104,116,99,111,113,110,93,103,102,117,103,107,97,97,107,99,93,99,105,104,102,119,100,108,97,103,107,108,96,89,103,100,106,106,101,100,96,112,107,115,115,105,108,105,98,112,103,110,113,113,106,113,100,104,115,104,102,113,107,108,102,108,96,99,111,100,99,120,107,99,112,101,98,114,108,101,99,102,133,91,110,105,112,108,95,105,102,103,108,98,106,105,102,114,107,102,101,98,115,95,103,96,113,103,108,111,103,117,102,96,97,101,109,103,103,109,109,110,104,116,118,105,111,113,110,104,102,110,105,98,105,101,107,98,116,97,96,106,97,114,99,106,93,114,100,97,113,107,105,101,103,122,98,108,100,101,109,109,108,102,115,118,103,108,84,103,98,108,103,98,107,115,118,110,104,110,114,78,114,103,111,117,103,112,113,104,115,109,102,100,110,112,102,104,112,113,97,108,110,98,111,114,109,108,105,109,98,112,115,117,101,105,108,100,118,94,95,110,105,107,104,117,101,103,91,112,114,102,110,103,99,91,109,94,101,105,103,115,110,95,109,95,112,102,91,105,99,108,101,95,112,112,88,96,108,105,114,109,104,108,110,104,127,118,106,106,90,104,125,105,114,97,87,107,97,100,115,108,109,112,99,107,111,99,106,96,99,91,103,106,116,114,108,100,107,106,105,100,106,113,94,113,116,109,104,108,98,114,104,95,103,98,108,99,104,113,96,104,106,109,107,107,113,104,100,108,107,106,112,109,102,105,93,118,105,106,101,100,110,121,104,107,109,103,110,109,108,99,100,105,120,144,105,110,103,120,110,110,101,109,100,116,108,118,113,97,132,102,93,106,108,111,107,107,113,109,110,82,106,109,100,100,113,77,106,103,105,99,106,99,108,103,113,101,99,112,102,113,105,113,111,113,110,114,99,108,99,110,106,101,109,102,113,107,98,103,99,113,108,104,115,107,104,118,105,108,110,108,99,100,105,107,112,102,129,110,99,104,112,109,119,105,101,124,105,105,98,103,105,115,101,108,116,108,112,93,109,119,98,111,94,98,115,117,104,98,100,92,94,99,101,111,104,102,106,107,106,103,111,111,103,116,91,97,110,103,108,113,96,103,99,105,112,121,103,105,102,100,96,113,121,105,106,108,101,101,122,97,113,109,110,112,105,116,114,110,94,98,106,103,100,100,107,99,113,128,104,113,105,92,97,104,108,100,103,112,109,103,110,96,92,106,99,105,107,105,123,98,102,114,108,100,100,95,106,102,92,102,110,106,99,113,114,109,114,90,107,115,108,106,125,132,115,134,108,123,124,132,115,153,104,130,126,121,129,126,119,110,111,107,123,102,108,119,120,115,101,103,94,100,98,105,100,104,103,108,103,120,105,113,110,101,110,105,114,104,98,100,92,108,108,106,116,121,87,98,94,99,95,104,108,116,91,99,94,111,101,110,102,101,105,120,106,113,109,99,91,113,105,108,97,106,98,120,114,94,109,109,91,99,87,105,101,126,101,96,105,113,103,99,104,96,98,112,109,102,102,105,101,104,107,108,106,97,104,103,69,101,128,108,103,120,110,103,100,90,117,109,96,101,113,114,99,105,115,115,103,109,105,99,105,105,111,111,102,106,130,103,87,120,105,108,104,110,102,114,95,104,105,114,108,100,115,108,112,114,113,101,97,99,104,115,107,109,102,100,108,111,119,93,96,104,109,118,103,109,100,99,105,103,109,100,110,103,102,110,111,109,91,108,118,119,117,84,107,104,100,102,106,101,121,109,99,98,102,107,105,100,104,112,102,81,80,100,103,96,100,92,91,106,119,109,104,100,114,112,99,105,114,102,99,126,106,97,108,98,87,111,106,102,116,98,115,115,110,94,88,110,116,97,99,105,109,103,102,104,100,101,115,108,87,104,111,106,105,91,96,106,99,112,103,103,92,113,111,105,109,106,108,100,101,104,96,103,108,113,108,106,109,115,103,110,92,105,91,94,127,112,107,105,110,111,102,99,104,99,102,74,102,109,110,111,109,106,82,103,109,100,118,101,99,103,100,104,117,96,113,100,108,111,102,101,91,95,106,115,107,92,100,89,96,108,102,113,107,111,103,90,97,112,106,102,109,78,99,100,104,101,121,99,114,98,95,98,95,98,83,107,97,108,99,109,113,107,92,99,106,113,114,86,112,103,116,116,106,94,99,107,103,116,96,107,110,102,113,118,94,89,98,102,112,98,111,109,97,101,110,99,105,108,115,109,108,111,100,108,124,104,106,97,99,94,93,107,101,97,109,112,100,107,113,110,108,103,104,98,108,106,115,105,107,113,113,108,115,111,103,106,98,106,109,109,94,103,105,111,109,115,102,95,99,104,98,93,103,105,106,101,106,113,97,100,96,110,104,106,99,103,98,102,108,70,133,99,107,105,97,104,106,106,96,99,113,99,100,122,106,106,102,108,108,81,104,109,99,130,110,101,94,103,101,113,107,98,94,107,109,102,100,110,105,108,108,110,106,106,107,100,99,97,103,101,100,108,111,110,97,107,106,101,106,102,85,83,114,106,113,95,74,106,102,98,113,105,91,103,106,116,104,113,100,108,90,104,95,95,100,104,91,110,106,98,105,118,105,103,96,118,101,105,95,105,111,104,111,102,109,99,108,119,98,109,73,105,103,99,102,104,102,100,112,102,96,98,110,97,101,102,111,112,108,106,104,91,88,101,100,102,104,96,114,113,95,110,95,105,107,104,113,107,112,105,105,99,106,106,113,104,96,92,108,112,97,102,113,109,100,107,99,97,113,93,106,92,102,104,101,105,85,108,102,105,94,106,112,106,107,81,103,111,105,99,107,112,93,102,106,100,100,96,110,90,100,102,121,104,101,112,104,117,99,91,112,105,105,107,109,105,109,113,101,97,105,106,101,106,107,99,99,107,100,75,96,101,95,113,106,102,113,100,97,102,102,113,101,93,94,104,106,103,108,109,98,102,91,113,109,105,105,98,111,95,99,102,115,100,104,105,116,109,109,98,99,113,115,111,104,102,112,109,121,115,101,103,99,106,106,107,83,108,99,101,108,96,97,101,112,96,100,109,103,109,103,99,107,105,107,102,109,110,87,102,95,107,113,111,107,106,103,102,92,104,115,110,95,116,107,107,98,108,103,102,124,101,101,113,104,138,108,105,95,105,110,96,103,123,122,111,100,92,103,88,108,105,109,100,105,98,107,92,100,105,99,100,105,103,100,101,103,109,112,115,100,107,120,105,93,103,108,95,100,100,113,91,104,103,119,117,102,92,102,105,95,106,102,107,103,125,99,112,110,116,109,105,112,107,120,98,105,100,108,120,99,96,98,105,101,111,112,109,113,95,111,109,97,95,102,95,107,112,113,105,99,107,101,101,112,104,109,91,96,95,102,98,112,104,101,100,106,108,106,111,97,101,103,102,102,104,104,113,98,104,108,106,119,109,108,104,103,109,109,100,104,108,96,109,105,79,98,100,110,104,108,114,115,101,108,105,90,117,98,110,104,90,87,109,126,95,105,103,100,102,101,104,99,115,97,120,109,106,101,97,103,99,102,104,104,112,112,104,125,99,105,88,108,98,90,91,103,105,102,102,96,95,97,103,102,99,95,99,103,98,106,107,111,103,123,110,99,101,110,121,112,95,102,104,105,102,92,104,99,105,106,108,107,104,98,100,95,105,114,108,111,92,109,111,120,103,107,96,106,99,99,106,112,96,106,113,110,107,109,98,95,104,104,99,108,113,121,101,101,125,108,117,115,83,98,106,109,99,108,94,106,97,97,97,124,105,97,119,98,106,100,100,130,93,108,103,108,99,96,109, +604.82269,86,100,94,99,117,122,112,99,107,108,99,100,97,87,107,97,89,106,103,100,104,106,101,108,103,96,87,89,98,122,108,99,101,106,93,104,103,98,106,102,104,115,106,108,101,110,102,108,112,99,113,111,98,86,105,93,110,134,106,98,75,109,108,108,97,110,101,108,100,96,113,108,104,116,107,120,116,105,101,89,103,104,93,109,101,100,104,98,111,100,94,103,96,100,104,107,110,94,96,101,104,107,107,103,109,97,107,105,105,108,93,101,105,102,111,103,120,100,104,110,102,97,103,109,110,106,109,96,111,113,109,108,111,108,103,97,90,92,110,105,104,109,105,104,108,96,98,108,96,104,104,107,112,96,99,106,103,103,100,86,102,107,100,94,111,95,112,97,105,99,97,98,107,104,95,91,107,85,104,109,107,104,110,117,101,103,100,84,113,89,93,103,108,92,87,114,104,96,82,103,103,108,112,108,96,105,102,96,110,113,108,105,115,105,102,103,110,100,100,100,114,104,94,110,105,86,100,109,103,119,112,102,105,116,104,127,102,103,100,110,121,111,110,113,97,105,106,108,115,91,101,115,100,118,104,108,101,102,105,97,101,114,109,101,105,111,106,103,113,98,102,114,95,103,100,111,94,116,101,112,111,95,99,116,110,94,102,107,114,113,103,107,99,108,115,106,113,107,112,96,101,109,113,88,111,113,97,115,109,109,97,107,108,119,104,105,100,109,113,110,104,96,105,105,107,102,109,96,114,107,110,109,101,102,103,98,108,108,102,113,106,97,100,107,103,99,97,112,84,98,105,117,103,117,102,111,99,111,112,102,99,108,96,100,119,99,110,106,99,94,106,110,109,99,112,95,100,108,105,106,109,117,103,105,114,104,103,103,99,85,110,107,98,105,101,104,99,101,83,108,100,107,91,99,104,98,102,113,110,105,111,110,104,103,104,110,105,101,100,98,71,100,107,99,100,85,99,104,105,110,99,104,102,113,104,105,103,111,105,99,110,104,99,109,106,105,98,103,106,107,101,104,104,120,100,103,108,112,101,107,103,99,102,125,112,117,106,98,100,105,113,111,93,104,104,105,104,103,113,104,95,103,114,103,95,113,99,99,94,96,75,116,101,104,97,96,105,88,101,92,113,108,100,108,102,99,100,83,107,103,111,90,120,107,110,126,94,95,106,101,109,101,127,113,107,104,114,115,110,103,95,110,129,113,93,108,101,101,108,102,94,96,90,103,92,107,105,106,107,102,102,117,103,104,104,101,117,106,101,113,112,99,100,103,100,107,106,111,102,111,94,92,113,96,101,105,111,103,103,107,106,101,99,104,98,102,117,103,107,122,98,106,105,103,116,100,108,107,120,105,104,99,107,102,105,107,121,102,102,105,102,103,103,107,112,110,97,101,116,94,118,104,112,110,74,94,104,100,108,105,110,112,107,104,122,107,115,100,107,112,120,115,99,98,96,91,105,106,91,100,105,95,99,106,100,93,98,115,106,111,98,97,105,116,94,106,114,90,83,91,115,109,105,104,102,108,113,100,110,96,112,108,118,80,95,97,106,117,105,116,90,111,102,111,77,104,94,109,109,102,112,95,104,103,111,108,103,111,112,106,119,110,103,102,93,103,94,100,109,104,107,99,109,113,105,103,102,103,116,103,100,112,106,105,101,98,104,103,98,94,76,101,98,107,104,93,104,89,100,103,110,104,108,107,104,108,104,107,131,102,112,100,104,109,103,119,102,98,111,102,82,95,103,122,109,100,105,110,113,102,106,120,116,109,98,103,104,103,102,111,96,103,110,111,112,100,104,110,110,118,101,112,101,112,108,113,114,95,118,101,111,105,95,107,105,103,104,99,111,93,107,105,105,109,96,101,114,94,108,111,107,115,99,115,114,106,100,94,95,104,87,108,111,95,96,98,103,90,108,107,91,108,105,100,104,105,104,103,98,109,98,104,96,113,104,93,102,117,100,106,107,103,103,104,90,109,119,94,110,102,112,91,99,109,109,97,106,105,101,112,110,113,101,98,103,100,106,89,113,107,101,102,113,113,106,118,109,101,97,107,102,90,113,105,106,102,123,118,87,105,109,100,94,98,111,114,92,108,99,88,109,103,109,113,98,94,75,112,100,99,107,110,97,104,103,106,113,113,103,95,104,104,107,110,106,100,112,109,98,107,103,112,112,100,114,111,89,102,114,112,101,110,121,99,105,100,116,94,94,103,92,111,99,107,93,100,99,99,106,109,100,96,96,103,87,85,95,113,92,101,99,108,118,105,111,107,110,112,102,103,106,102,90,98,103,99,106,112,108,91,94,107,114,92,103,106,110,119,110,92,108,95,108,95,92,96,121,99,114,121,130,133,132,135,132,126,135,142,139,126,124,100,140,140,113,120,106,112,114,111,97,130,112,110,96,100,99,113,121,105,105,123,100,100,119,92,100,120,105,102,102,114,103,104,108,103,103,102,110,96,97,112,111,84,107,107,110,110,118,120,106,86,106,108,102,106,106,100,98,102,104,112,101,102,107,115,104,110,102,103,102,111,94,99,87,92,99,111,100,99,102,113,108,103,107,119,107,107,100,106,98,104,84,87,99,107,70,109,117,112,110,99,112,103,100,97,100,108,106,116,105,93,102,109,107,111,120,109,114,106,104,102,107,105,104,95,104,107,110,68,106,102,102,113,106,111,109,104,95,109,102,98,117,96,102,105,104,89,109,99,112,108,99,110,107,110,103,117,97,105,109,107,92,114,111,106,109,113,105,100,109,107,111,109,111,102,106,103,104,100,110,110,105,119,103,106,113,95,104,116,111,113,112,98,113,105,108,120,88,115,109,112,104,102,119,104,113,112,107,114,90,117,105,110,106,109,103,112,96,116,105,106,104,110,92,95,99,111,107,101,109,98,113,110,110,103,100,117,115,90,104,116,113,100,103,121,108,98,109,103,99,103,98,98,102,114,109,99,102,101,102,117,112,100,101,113,107,108,101,104,111,107,111,99,107,110,107,110,102,99,98,99,103,96,104,94,102,101,111,108,111,87,109,100,113,109,110,100,104,100,110,104,95,103,100,110,111,95,100,96,108,99,108,93,105,98,109,112,90,122,99,106,110,93,103,98,99,106,94,110,119,106,97,101,104,98,109,107,109,110,93,119,108,96,107,116,93,106,99,96,98,94,100,118,112,101,95,115,109,102,109,103,107,104,116,97,97,76,100,104,100,84,93,98,94,109,102,105,108,105,103,89,83,115,113,104,109,116,96,90,103,103,100,132,114,110,107,100,112,105,103,91,109,114,112,100,106,95,107,108,101,105,112,103,96,110,94,101,107,109,106,107,100,114,108,98,99,106,113,94,105,102,97,107,110,110,108,101,121,104,108,106,94,107,98,110,81,102,110,99,91,109,112,116,105,107,113,99,105,109,113,106,102,103,105,108,100,101,108,110,111,100,98,95,78,117,108,108,101,102,103,109,93,103,103,109,105,120,103,104,114,105,98,106,109,113,114,100,103,97,117,102,111,113,99,109,103,99,103,94,101,105,100,88,108,108,92,106,110,116,105,103,96,98,97,109,100,112,112,99,94,101,103,100,114,112,96,94,114,104,113,99,121,102,110,92,120,97,116,112,106,91,113,109,104,102,112,96,104,116,94,104,109,119,101,109,109,119,109,113,102,109,100,100,93,104,113,112,96,110,117,105,109,110,104,94,103,109,112,103,99,98,113,99,104,87,112,108,90,105,114,96,103,106,112,106,106,104,101,103,105,99,110,120,92,106,107,97,105,110,105,118,98,105,100,110,97,104,111,103,124,105,105,108,96,100,105,105,103,113,97,103,98,98,105,101,103,104,108,95,92,107,94,112,83,99,102,107,98,112,96,106,102,98,100,98,91,99,100,119,115,92,119,114,102,102,106,95,102,106,93,108,111,90,98,109,107,108,107,117,98,104,103,111,97,104,105,103,100,100,108,102,106,106,107,117,102,78,95,101,113,101,97,100,115,107,112,101,103,116,116,107,103,101,105,91,100,96,99,106,93,110,102,107,105,95,102,113,111,113,102,104,101,114,102,99,105,100,103,107,96,106,105,116,103,104,106,114,96,86,103,105,113,103,105,128,107,101,103,110,97,115,97,97,109,105,97,117,103,99,109,103,98,101,109,106,116,106,112,105,113,113,97,104,111,114,90,109,112,107,105,99,113,117,107,113,114,108,102,111,112,95,96,109,102,94,103,112,103,109,108,113,116,115,86,110,102,103,103,111,93,101,100,102,97,104,102,101,89,107,92,106,98,121,105,105,102,100,110,103,107,104,114,103,80,107,100,121,116,103,129,95,101,104,100,96,109,100,102,99,113,103,108,119,90,105,118,100,100,107,93,102,95,91,100,106,106,102,122,93,99,99,85,102,104,102,101,110,111,103,94,107,113,107,108,101,118,98,117,101,109,112,105,99,105,102,109,112,107,109,108,97,99,104,98,112,100,113,105,100,113,105,96,109,93,105,102,102,110,109,88,102,98,140,114,110,112,112,102,102,102,107,98,108,95,105,67,103,113,103,112,111,115,98,93,98,101,104,99,102,101,100,111,121,121,115,110,105,104,105,102,97,96,106,98,120,110,111,109,107,94,109,100,105,101,105,103,115,101,110,106,108,106,91,99,109,103,99,110,108,101,99,106,99,94,94,105,103,88,98,102,114,106,101,100,121,94,108,98,106,94,99,99,96,93,101,96,104,96,98,108,101,104,95,100,96,97,104,110,96,108,91,95,97,112,91,114,102,107,105,103,107,84,95,95,115,102,104,100,96,103,108,92,109,106,98,105,98,99,95,110,101,93,109,102,114,100,104,101,107,88,106,120,101,107,106,105,107,103,97,122,102,102,104,109,113,120,100,103,99, +604.96375,99,118,85,102,96,98,96,104,105,96,100,97,91,116,95,98,104,105,98,97,96,104,95,91,129,96,66,112,102,118,98,107,94,102,103,104,110,90,105,99,89,114,89,103,115,118,108,116,98,95,115,100,98,98,109,113,105,84,105,100,126,107,98,98,110,113,114,109,104,97,95,108,106,124,108,98,102,117,97,103,103,107,106,104,104,66,113,105,106,103,105,109,89,105,101,120,83,117,93,105,107,99,100,105,108,108,105,101,104,100,102,111,101,108,99,103,103,89,119,67,104,106,122,101,108,104,107,97,102,108,108,109,107,98,133,100,99,107,108,103,109,112,92,102,111,103,105,97,98,101,117,114,98,104,107,110,108,104,102,102,105,105,116,109,112,99,111,103,96,105,95,113,108,107,98,94,101,98,112,110,111,112,101,112,107,99,105,102,111,110,118,105,115,92,98,99,100,118,97,96,92,107,106,100,101,105,99,111,108,99,102,110,108,117,109,117,96,99,99,108,126,108,106,114,104,109,96,103,108,107,108,122,98,106,109,109,106,117,109,99,104,100,107,96,117,101,94,117,90,107,106,101,97,109,98,108,96,113,98,106,107,107,100,105,106,109,106,112,99,101,104,107,105,112,125,110,110,112,102,104,108,109,99,95,103,100,88,99,114,107,98,97,103,120,110,107,110,102,103,105,105,108,96,104,100,106,107,124,101,113,106,119,120,106,104,108,106,96,111,103,99,98,107,107,92,106,96,93,98,104,100,107,99,105,107,109,109,101,111,115,93,93,95,90,97,114,117,112,106,109,112,123,94,98,103,117,96,106,106,100,99,99,91,97,108,106,84,104,97,114,105,104,113,99,113,98,103,105,96,112,110,107,100,105,82,101,107,125,102,97,103,98,103,99,105,98,106,121,94,102,116,104,103,98,105,94,105,109,126,117,108,95,120,116,109,117,107,104,111,111,110,119,113,108,104,98,120,97,106,77,109,102,107,117,108,105,100,113,109,98,100,105,103,108,98,105,104,102,103,96,105,102,95,109,116,104,112,96,102,107,95,109,100,107,112,106,99,105,113,99,120,105,112,106,103,99,90,109,117,107,87,103,116,105,103,93,107,114,95,113,106,118,95,95,100,109,110,103,104,109,103,114,95,109,107,106,95,108,104,104,110,112,75,102,104,117,109,108,102,112,106,98,108,111,94,109,111,106,114,98,98,104,108,102,105,107,104,113,107,101,106,110,97,113,108,103,117,104,101,100,106,103,116,113,106,105,99,106,107,99,102,91,124,105,96,109,116,100,103,106,100,104,122,96,101,115,110,94,104,105,115,101,104,101,104,98,106,106,97,100,100,108,101,102,118,110,101,105,107,108,104,123,99,105,110,107,103,102,108,111,100,113,98,104,101,96,91,113,112,102,102,101,114,108,104,96,106,102,97,101,91,107,110,111,106,125,97,98,108,108,110,106,102,110,102,109,95,104,104,109,105,95,108,109,100,121,106,106,114,102,106,103,98,108,117,91,114,102,105,113,111,98,117,100,90,111,89,92,101,101,114,99,107,94,101,97,109,89,111,112,111,104,99,118,103,103,110,101,97,107,104,99,100,99,85,112,97,101,76,107,98,102,108,116,113,102,104,103,102,126,110,90,94,111,106,96,99,115,106,110,117,94,107,97,99,89,104,100,110,116,111,104,112,103,112,102,123,114,95,104,103,99,98,102,108,100,107,103,110,98,111,106,104,99,108,94,98,109,107,117,137,97,118,115,101,122,114,104,96,102,113,108,113,104,91,111,98,115,107,112,105,110,90,110,117,110,99,112,110,109,109,82,109,102,109,122,110,112,113,100,116,105,101,104,97,109,121,120,98,92,115,113,103,118,106,105,113,97,97,102,121,107,109,99,106,106,100,110,102,127,100,104,115,80,98,94,105,105,101,91,99,97,109,96,105,103,102,104,99,107,96,108,104,114,102,108,109,108,115,117,99,111,108,87,104,103,107,101,111,114,89,124,83,93,100,99,99,103,79,116,111,110,119,101,83,101,104,107,119,95,110,114,117,125,99,107,94,108,93,100,112,110,107,100,114,96,96,105,111,86,98,95,106,117,109,111,102,100,95,110,103,107,110,106,105,93,95,96,104,101,106,90,105,105,79,104,112,113,101,106,112,100,113,106,109,109,114,107,99,100,94,105,111,101,110,110,102,116,77,109,121,94,107,104,95,101,104,104,98,98,101,94,107,101,105,102,103,97,97,106,107,100,104,114,98,108,108,102,104,90,106,97,92,94,111,112,110,99,103,107,104,92,101,116,108,103,98,78,101,103,107,109,102,98,110,118,118,109,91,116,110,101,106,91,113,101,106,115,128,114,104,123,138,132,126,118,136,140,130,134,131,125,124,126,105,114,112,111,104,114,82,116,115,112,108,115,99,106,106,95,110,90,99,101,92,122,105,101,111,97,103,112,96,95,91,102,90,92,111,98,100,98,102,105,95,104,106,98,102,108,99,99,114,101,108,102,98,100,92,92,102,100,104,96,95,97,105,84,100,115,97,95,99,109,109,109,106,116,103,101,103,103,107,91,94,121,103,99,91,105,106,99,94,102,99,128,99,91,104,98,110,99,102,89,97,101,105,103,90,104,107,92,101,101,113,94,117,97,91,99,103,89,102,83,101,104,100,89,115,99,97,100,105,92,120,100,110,104,105,113,99,102,103,111,107,107,101,103,99,90,101,88,111,95,104,108,114,93,98,98,98,105,98,102,99,105,94,102,91,95,113,115,93,101,102,100,97,93,85,110,107,113,98,102,105,100,107,95,100,109,101,109,101,101,103,112,106,104,102,101,105,106,102,97,120,109,99,95,102,110,105,110,88,109,109,89,107,117,114,104,99,94,110,104,112,96,107,99,112,101,103,112,110,101,98,109,103,109,110,106,102,109,131,106,104,106,107,96,111,108,116,105,94,101,95,103,94,103,111,102,112,105,107,103,102,94,96,119,116,112,112,101,100,108,100,114,102,108,104,113,101,84,107,98,102,102,101,121,112,102,116,119,107,100,99,95,117,101,106,98,95,107,111,107,109,92,107,104,92,109,101,107,104,90,112,105,105,93,88,109,101,96,106,112,109,105,99,112,94,104,99,100,114,98,120,105,106,102,102,95,99,102,101,108,111,93,97,95,95,99,101,108,100,102,88,104,117,104,110,95,106,107,104,94,99,105,103,106,96,112,102,82,90,111,98,102,104,109,99,112,107,103,106,113,103,108,115,100,97,101,99,91,121,111,100,110,98,102,103,114,117,104,103,92,106,127,116,95,98,119,98,108,102,95,100,111,106,76,104,101,111,109,100,81,112,110,98,105,101,102,103,95,94,95,95,98,105,109,102,97,97,94,104,116,105,98,113,106,115,115,95,96,112,113,109,97,107,99,112,99,101,96,100,104,95,100,76,113,103,106,102,114,98,96,104,115,80,110,102,91,108,115,108,93,89,110,99,106,109,104,102,115,105,104,107,98,114,107,99,96,106,111,99,86,95,99,105,96,89,109,93,103,98,108,116,99,106,106,92,121,95,107,103,103,111,91,103,112,82,96,91,98,112,106,96,106,103,111,103,98,100,110,100,90,105,96,119,99,106,101,102,101,96,96,106,99,103,105,105,98,94,117,96,103,95,99,106,107,110,113,105,115,93,100,105,107,101,96,99,104,97,91,101,98,98,105,103,106,102,90,105,97,127,92,106,90,94,94,99,109,95,113,111,91,116,98,96,103,98,115,95,96,105,100,102,110,102,109,100,113,99,107,104,115,105,103,115,104,106,101,109,97,98,102,93,102,101,98,87,106,92,114,97,101,106,97,123,99,120,111,102,108,80,109,97,89,100,114,111,96,101,98,99,94,109,103,105,91,123,107,108,91,95,106,94,94,116,94,106,105,109,102,103,99,93,106,103,101,107,108,115,107,105,92,97,115,108,94,101,104,107,109,96,103,100,103,100,108,91,102,110,95,96,108,140,91,102,109,108,102,110,98,116,95,102,98,105,96,98,96,104,99,106,90,105,105,111,101,106,103,108,109,106,105,105,104,87,97,97,101,111,108,93,109,106,110,106,112,97,97,89,93,88,110,103,105,103,102,104,108,98,110,108,96,102,102,102,96,93,109,107,123,88,100,112,103,98,110,91,99,104,100,97,105,116,110,101,109,105,107,113,111,108,115,105,96,107,99,113,102,100,92,96,104,113,99,106,101,91,97,114,91,120,91,107,102,94,108,96,100,102,97,124,95,100,95,97,98,90,113,119,106,109,104,114,108,96,105,100,124,102,112,108,93,103,100,99,95,109,103,104,96,75,89,109,101,101,93,103,123,107,95,109,100,100,95,105,100,118,110,96,100,102,101,97,68,100,113,103,107,92,87,99,96,96,105,98,97,109,104,120,111,103,96,98,84,98,104,98,103,99,113,93,123,106,98,105,102,106,100,113,110,99,105,116,113,110,99,100,113,91,93,109,107,106,102,113,96,106,98,110,103,95,112,91,109,109,100,92,98,105,106,95,105,101,110,102,106,111,76,107,104,75,93,103,112,101,102,99,111,87,98,91,102,100,99,100,107,93,113,108,102,101,97,101,100,104,113,99,108,112,104,102,99,99,88,106,114,117,127,92,109,115,106,105,111,100,100,99,113,105,104,112,100,106,100,108,112,85,90,95,109,100,107,102,106,95,97,106,110,76,92,109,103,93,95,108,99,103,92,102,98,94,106,98,105,68,104,93,87,100,101,108,100,107,101,97,113,91,111,101,98,102,105,84,108,94,113,105,106,115,102,94,69,99,105,97,116,105,109,99,109,98,111,102,110,90,95,106,114,103,100,95,99,113,97,95,98,107,94,90,102,117,89,106,112,91,96,90,100, +605.1048,95,107,101,110,87,97,102,116,116,117,112,104,122,87,105,81,97,104,122,99,117,108,106,109,100,107,98,96,117,107,118,91,99,99,107,105,85,120,96,104,114,120,110,98,107,107,112,112,107,113,103,106,112,106,108,101,102,98,111,102,96,113,121,116,118,104,110,102,99,95,108,110,109,107,99,126,108,101,113,98,96,97,93,97,99,98,101,82,108,105,90,92,83,102,98,97,118,102,105,103,98,115,103,108,112,95,85,108,98,101,98,132,95,85,100,106,113,100,113,98,99,92,113,112,107,109,106,108,109,119,108,96,112,86,109,112,99,107,76,93,94,103,107,110,100,104,100,105,107,100,98,102,105,103,97,103,103,104,108,100,101,109,114,110,120,87,94,101,103,109,95,108,108,102,101,111,106,92,97,121,100,111,95,108,108,100,95,97,117,94,105,91,98,98,107,108,106,101,101,108,96,94,102,110,103,103,99,117,106,114,97,94,114,102,100,106,99,109,93,106,101,104,100,103,103,135,103,101,92,99,105,100,100,95,98,101,133,113,78,103,98,106,106,105,97,105,101,109,108,109,104,107,107,106,104,98,98,104,107,73,98,101,108,105,104,107,100,102,111,128,98,101,114,104,121,116,101,109,110,91,109,110,95,110,104,109,106,111,109,106,102,112,107,94,104,104,103,128,98,114,121,78,100,105,145,125,110,106,104,87,91,120,103,104,111,99,117,116,98,95,103,110,109,106,107,92,117,94,117,109,112,105,104,106,115,115,115,114,114,110,102,108,101,85,98,107,108,107,109,113,111,110,111,102,121,95,104,109,102,100,105,96,96,113,100,94,118,109,111,104,109,110,100,113,107,92,104,109,105,93,115,100,105,98,105,101,102,96,109,94,105,110,97,112,99,109,94,112,112,118,105,105,103,91,99,101,97,106,110,97,103,110,113,109,101,112,99,105,103,112,95,112,104,112,98,89,109,109,105,117,101,108,99,99,108,99,118,100,108,101,98,99,106,99,101,102,103,99,118,118,126,105,107,116,100,107,96,99,106,114,99,94,109,108,117,110,103,104,111,94,108,101,100,113,94,121,100,110,112,117,99,109,113,103,97,114,110,88,102,104,112,102,115,97,97,103,100,117,107,100,112,112,94,120,113,101,102,101,98,100,109,114,114,79,97,106,116,104,91,103,95,72,112,99,98,109,107,107,109,107,100,117,97,107,103,105,103,105,101,119,92,111,109,103,110,105,118,112,99,114,130,117,114,95,110,100,121,95,111,108,111,110,103,118,106,99,107,110,108,102,94,99,114,96,96,106,114,109,102,106,110,110,110,109,105,106,116,100,112,94,117,111,68,91,108,116,101,105,106,101,100,101,87,103,97,102,94,104,100,100,97,112,98,115,101,100,114,109,84,97,117,105,105,103,106,106,116,115,110,98,95,103,99,108,103,103,100,92,108,107,109,115,105,113,106,114,99,106,113,105,117,98,106,105,105,103,81,108,109,103,114,111,106,103,106,112,112,93,98,106,119,111,111,112,99,102,114,99,102,105,107,114,108,96,104,102,104,96,98,99,106,106,108,103,105,103,99,113,111,93,105,98,104,104,106,113,106,120,98,101,106,109,102,104,98,105,94,107,116,110,117,95,111,104,106,88,104,114,102,103,103,107,114,101,108,96,110,103,104,104,97,96,102,104,141,102,103,97,101,101,100,87,107,117,105,97,94,103,105,89,99,104,100,97,103,105,93,104,99,101,101,99,98,92,107,110,106,100,106,104,90,109,106,105,95,125,101,107,100,108,109,116,96,111,111,119,107,91,103,112,94,114,106,90,109,111,114,91,104,87,111,104,103,108,113,95,119,101,117,102,106,104,102,102,108,94,104,101,105,108,102,97,122,99,128,109,105,111,108,108,106,101,77,102,83,104,100,97,124,98,105,111,105,108,107,102,108,113,106,105,105,96,102,98,111,107,112,100,99,108,99,123,105,110,101,104,106,105,98,97,108,110,99,110,117,96,101,113,113,105,108,104,114,112,113,97,96,106,104,105,100,111,104,109,106,95,101,109,109,117,90,102,104,105,106,96,94,112,97,104,104,105,102,106,70,106,101,114,101,110,102,108,95,102,96,107,109,99,103,99,91,100,112,106,100,111,106,101,99,103,101,100,100,98,108,107,115,94,105,95,113,103,107,109,102,108,96,107,107,105,101,107,109,109,107,102,117,99,105,103,103,108,117,100,98,105,105,102,75,115,121,103,110,101,107,90,103,109,103,102,101,111,112,100,112,103,103,102,106,106,99,107,111,110,106,107,111,109,108,98,110,111,113,89,110,121,110,93,102,93,100,118,103,91,139,99,104,134,112,116,112,108,135,126,114,128,129,144,129,137,119,112,131,129,113,103,118,124,103,100,113,107,105,97,95,113,103,109,123,114,99,106,100,109,102,101,108,104,100,106,102,114,89,102,117,87,99,105,107,109,109,126,104,99,102,99,105,98,99,102,103,103,89,101,112,104,106,107,99,95,92,111,114,100,120,111,98,110,98,106,112,104,104,109,121,113,100,102,98,111,98,106,100,105,116,92,102,100,113,99,108,106,104,107,99,104,99,108,118,93,107,102,108,106,109,110,107,110,97,99,95,107,96,94,109,111,102,112,90,96,114,101,109,95,104,113,106,102,109,105,95,105,125,102,111,97,106,106,104,110,94,115,104,107,97,112,94,104,98,91,95,102,100,108,94,109,112,105,97,96,110,103,115,94,102,106,99,106,106,97,100,102,102,106,107,100,112,107,107,103,108,107,102,113,120,108,106,97,108,96,107,108,121,106,92,102,96,95,109,101,109,110,120,106,112,114,113,111,108,110,73,100,112,92,102,108,120,98,99,127,89,100,98,105,102,92,97,104,110,108,105,110,101,101,100,105,102,100,106,93,102,110,98,92,107,112,102,103,102,107,113,92,112,109,104,107,126,100,107,106,103,102,102,97,104,110,98,107,103,100,101,106,99,104,108,95,112,114,110,109,103,107,95,113,103,102,105,90,115,112,102,101,110,110,99,102,104,99,113,109,111,119,107,106,118,98,107,105,109,97,100,106,107,108,113,98,104,100,102,107,106,112,105,105,103,93,105,105,87,104,96,76,107,94,116,98,99,109,111,92,97,116,101,103,103,101,107,99,114,104,97,97,106,102,97,112,116,101,92,97,95,98,103,100,109,112,98,104,93,112,102,107,99,94,91,110,104,107,106,117,98,86,107,72,109,101,107,111,117,99,107,99,114,123,98,106,109,96,92,98,84,83,107,100,98,102,99,92,103,113,107,117,102,108,112,111,109,106,98,102,90,102,102,105,109,103,113,99,105,109,106,113,94,106,72,105,96,95,107,99,107,107,90,104,95,112,103,84,111,98,99,96,101,107,92,101,114,109,98,94,103,102,97,101,91,101,90,104,98,105,99,104,109,95,98,104,106,99,119,101,107,103,97,117,89,113,104,108,110,105,108,109,107,108,104,113,108,103,100,116,101,95,107,109,105,102,110,116,98,117,103,103,101,102,108,118,105,117,108,107,109,104,104,108,92,96,97,105,98,94,97,97,106,100,90,111,105,96,108,110,91,112,99,110,97,99,108,104,101,105,106,107,102,109,100,108,100,117,88,105,110,105,105,95,109,108,98,106,84,112,111,101,91,104,104,101,112,106,105,101,88,100,103,114,114,104,110,111,95,97,104,106,99,94,102,95,108,104,117,133,91,91,102,106,108,105,103,118,106,101,96,110,109,96,114,110,108,103,94,124,109,98,105,111,106,102,110,108,110,96,106,109,102,121,113,110,109,105,104,106,104,106,124,101,81,103,104,106,103,102,109,104,102,118,101,100,103,109,96,99,104,94,95,96,101,96,99,103,100,96,99,104,95,106,91,103,103,107,101,99,98,80,106,109,102,98,109,103,106,103,103,113,107,110,103,102,101,104,94,105,95,111,101,100,109,94,109,99,101,98,99,104,104,98,94,91,121,91,97,108,109,109,106,109,110,91,94,101,89,127,115,103,109,115,102,105,94,100,107,104,113,106,106,100,110,103,108,102,108,106,109,108,96,101,101,109,111,109,97,105,101,88,109,94,100,101,105,97,95,109,111,106,102,102,96,98,113,99,102,113,104,104,109,103,109,124,109,117,92,105,106,109,98,102,99,108,94,111,106,113,103,108,91,103,94,95,94,106,108,112,96,106,87,89,107,96,110,114,96,104,105,95,108,104,103,95,98,108,91,91,102,110,104,103,108,101,106,108,97,103,87,111,106,103,109,105,104,112,79,115,99,114,117,112,99,80,110,73,106,105,95,109,108,103,111,104,108,110,116,103,106,86,102,121,94,100,112,113,105,97,98,106,105,114,99,101,100,107,101,93,100,81,109,109,108,96,99,101,106,104,120,101,131,109,98,104,91,98,105,102,105,114,113,99,105,102,105,106,117,105,103,104,100,104,112,102,103,95,115,103,98,97,90,109,108,110,106,119,115,97,97,104,107,101,108,115,99,101,97,96,87,104,95,109,108,95,104,103,111,97,105,96,101,95,103,109,94,110,99,100,98,95,106,110,116,112,117,110,100,99,99,113,102,107,110,104,104,107,99,97,107,100,98,100,116,108,105,102,115,97,107,99,99,106,100,112,96,106,110,94,109,98,90,105,98,84,104,107,113,93,111,104,109,98,103,116,114,110,90,96,99,116,92,112,99,97,94,73,107,104,109,113,112,112,108,109,104,106,104,93,101,100,109,71,102,112,107,106,91,98,108,93,101,122,111,112,113,102,100,113,96,100,96,99,88,98,102,96,87,110,107,97,96,108,112,118,93,119,93,94,104,109,103,100,107,94,104,94,101,108,98,95,96,90,101,107,109,102,106,102, +605.24585,104,93,100,109,100,106,109,93,94,98,113,98,102,95,109,101,117,98,97,110,107,105,114,95,100,103,100,105,74,109,110,90,106,105,112,101,116,99,99,108,96,100,76,95,95,110,106,103,110,101,100,99,113,110,97,108,100,90,103,105,99,104,109,107,78,107,109,100,103,97,95,108,78,107,96,103,89,102,103,95,108,103,103,101,92,101,108,108,100,98,101,102,97,94,88,103,90,101,105,102,112,103,102,100,114,96,113,120,101,104,104,89,99,90,94,96,107,118,84,113,109,99,99,111,96,112,102,98,107,87,107,108,111,110,102,116,98,107,104,91,102,108,96,109,103,108,107,105,99,105,100,114,103,91,113,101,111,101,105,101,106,107,104,98,105,113,117,102,110,95,114,109,112,104,112,101,101,93,93,104,107,109,109,109,103,101,99,90,105,90,105,114,92,99,104,109,103,94,96,104,117,103,99,112,97,110,106,106,126,92,112,110,102,109,111,94,107,109,102,108,102,102,109,93,111,110,116,101,114,119,108,109,100,95,113,113,110,104,104,101,106,109,106,105,109,92,103,110,102,102,108,102,105,90,114,117,105,96,107,105,83,103,103,103,97,103,97,104,101,114,101,118,106,105,109,101,97,115,127,109,100,94,106,109,101,108,103,113,108,96,99,117,101,99,113,109,118,82,94,94,101,96,103,120,108,109,91,99,104,105,103,103,75,107,107,96,108,106,106,92,103,92,113,109,93,117,101,96,98,101,99,103,108,114,101,95,110,112,111,102,97,98,105,108,109,104,98,96,102,104,103,110,105,108,112,100,109,114,105,104,99,108,106,95,108,101,106,104,105,116,102,109,106,107,103,101,105,103,99,118,118,109,96,110,95,98,101,112,103,101,105,95,97,109,115,95,110,97,116,112,105,100,97,106,104,102,98,102,102,108,103,108,108,108,105,103,105,120,117,105,110,107,101,101,93,84,114,105,107,111,103,92,112,104,111,107,104,108,95,118,106,95,100,102,96,101,100,98,112,112,86,103,100,103,97,100,103,118,116,125,104,98,98,102,113,108,96,101,94,91,115,119,124,97,104,103,107,106,99,81,103,111,104,101,121,106,102,91,103,96,107,108,99,107,100,120,91,104,101,104,99,116,96,102,108,113,99,112,116,109,105,106,99,93,99,101,99,121,112,103,108,110,103,107,112,86,105,106,95,104,90,99,97,94,110,85,105,107,101,108,109,97,108,110,104,113,100,113,109,100,108,102,106,101,89,115,101,101,100,105,117,97,101,104,112,111,111,101,106,95,126,108,109,104,108,98,104,117,102,118,112,106,117,87,98,107,104,110,113,104,104,100,98,95,110,103,92,101,100,100,109,113,120,111,98,97,104,103,110,106,109,106,110,96,117,109,98,100,117,106,99,114,95,95,107,101,95,107,104,104,113,99,101,105,102,95,99,109,110,106,110,115,115,109,82,99,102,100,93,99,108,98,107,97,107,105,105,125,101,100,107,100,107,105,86,108,102,107,105,112,94,102,112,103,94,101,109,100,110,105,97,113,113,96,110,100,99,98,102,129,110,114,98,105,96,116,114,108,113,109,100,108,110,104,122,106,112,103,105,103,95,121,96,99,106,98,102,100,107,95,103,99,97,113,112,101,104,108,108,117,102,99,105,98,103,100,102,100,97,90,103,118,100,96,120,101,115,96,88,64,114,111,102,87,105,106,98,99,121,93,114,98,108,97,109,102,109,99,109,94,116,102,101,103,112,114,110,112,105,95,79,107,109,103,85,101,112,82,112,107,103,132,110,107,116,115,100,96,100,91,98,106,103,110,112,100,116,103,97,99,122,106,105,98,101,102,109,103,106,86,112,102,112,103,98,107,103,105,101,109,113,93,112,101,95,109,103,94,113,109,92,98,117,107,104,108,109,100,109,103,99,103,113,121,101,101,107,110,102,94,116,91,91,101,115,109,106,113,109,99,101,108,105,114,84,98,105,106,104,104,107,109,103,105,105,102,107,98,102,107,102,114,103,106,116,98,96,98,108,95,111,99,109,116,109,91,109,107,89,94,105,108,101,104,117,110,98,97,104,99,114,114,116,117,98,87,112,96,109,102,113,109,97,97,93,106,92,121,101,99,109,110,109,87,91,109,105,83,113,104,129,109,113,103,104,110,108,99,99,114,106,108,101,95,101,112,94,107,91,117,93,99,108,112,109,109,94,110,108,96,108,97,98,97,111,107,105,101,97,103,102,110,129,104,99,98,100,102,93,107,109,102,108,97,109,110,95,109,97,109,101,108,95,110,110,103,105,103,101,99,104,104,106,91,114,125,106,112,103,104,99,91,127,102,109,121,102,125,126,103,108,125,125,118,120,118,107,145,120,120,130,111,124,110,98,112,100,117,102,102,124,103,109,112,116,99,103,101,118,103,106,108,105,111,106,107,111,102,100,93,96,98,102,106,108,101,107,98,92,96,109,110,107,103,102,101,105,94,99,90,90,103,92,102,103,100,102,110,109,103,101,101,100,109,112,104,92,100,91,104,103,104,108,99,100,112,92,112,114,104,100,106,98,99,113,99,107,113,101,100,99,98,97,123,104,101,109,110,108,102,103,104,99,113,106,105,102,92,102,101,105,91,100,96,100,107,109,110,102,101,95,110,101,99,105,103,97,106,121,99,95,110,112,108,100,95,102,100,97,113,108,116,121,80,90,105,105,96,101,94,104,103,100,107,108,109,100,127,98,98,92,115,96,98,101,119,107,111,84,102,109,92,100,96,104,82,107,118,101,105,105,73,103,111,106,104,111,109,100,90,98,108,96,99,103,96,92,104,105,100,104,115,112,96,103,106,104,112,106,113,111,109,111,108,112,103,112,99,100,84,110,113,96,112,110,89,94,106,121,111,97,100,106,117,97,106,107,108,98,105,98,100,106,111,114,114,107,94,113,106,106,103,101,102,95,104,129,97,123,113,104,112,95,99,103,116,108,99,103,97,110,107,95,97,109,97,112,103,106,105,106,103,111,99,107,96,94,105,100,82,100,105,106,108,105,104,101,105,113,104,95,101,103,106,98,93,116,99,111,91,103,93,99,109,99,106,99,100,97,104,92,108,104,104,109,104,108,100,96,102,108,105,110,98,98,92,103,96,105,101,95,104,97,108,92,103,106,117,116,105,91,120,100,105,85,112,101,95,103,104,96,105,105,98,105,106,110,110,101,101,101,110,96,106,107,105,106,105,117,109,110,107,105,117,99,99,96,109,94,113,98,111,105,103,93,101,91,101,113,119,101,98,101,119,96,96,105,97,98,98,104,102,102,106,111,97,111,103,99,104,99,102,71,93,109,105,119,100,103,103,107,99,110,105,104,115,103,113,111,109,110,104,91,112,109,105,105,108,117,102,109,105,106,119,106,100,102,94,104,102,99,96,104,106,101,108,106,104,107,112,111,101,91,107,116,108,102,104,111,100,100,115,110,102,101,101,114,93,120,99,105,109,116,103,116,107,103,98,104,91,103,105,104,103,108,108,96,122,111,116,106,98,104,103,109,105,108,97,110,117,107,103,102,113,99,103,102,92,102,90,104,93,90,97,109,110,104,110,106,120,100,99,121,96,102,100,109,92,104,98,105,102,104,117,91,103,100,98,104,118,103,110,100,92,100,98,108,108,99,92,99,110,112,105,96,100,107,104,91,99,98,101,103,107,113,110,98,94,105,98,95,97,104,121,102,105,113,109,104,96,102,104,107,105,85,98,105,100,99,102,92,106,102,112,98,92,116,96,113,106,88,121,101,102,110,103,106,94,107,101,103,81,108,102,100,105,101,106,109,112,101,116,95,104,115,108,101,94,111,115,104,110,102,109,110,105,100,105,104,98,90,116,114,113,117,107,99,95,100,95,110,90,104,108,101,91,102,96,98,109,95,103,107,102,109,116,104,96,97,98,107,76,111,111,98,102,93,101,92,94,110,106,110,108,119,98,115,109,112,101,104,105,111,104,105,102,102,101,91,105,98,98,107,110,105,93,114,84,96,100,103,105,119,105,110,104,108,117,108,105,96,100,98,86,100,104,103,97,101,95,107,111,106,110,93,106,92,109,104,108,106,98,105,102,109,107,93,96,96,97,106,88,90,84,101,107,97,103,109,115,107,102,108,102,112,101,99,102,122,113,100,121,104,106,98,93,101,105,110,96,113,119,106,107,102,96,106,104,90,114,109,100,101,97,103,106,104,111,95,101,103,103,120,105,109,98,100,99,108,98,103,88,103,120,101,106,107,94,97,102,99,110,97,98,101,108,101,103,100,110,108,104,103,105,124,113,109,112,102,112,96,98,84,100,105,96,97,99,108,98,100,105,106,111,113,90,106,109,102,104,102,115,101,117,105,106,113,91,97,95,94,92,93,101,99,98,96,97,110,95,106,111,103,102,99,94,109,94,96,103,114,105,129,103,105,111,103,94,113,106,103,105,101,114,95,86,115,111,108,100,102,101,91,115,104,105,91,100,97,112,102,97,103,105,105,98,102,110,87,83,100,91,108,105,97,105,115,89,97,109,110,111,104,92,113,109,110,109,102,105,95,94,103,106,98,112,103,100,104,102,103,90,102,101,109,116,98,111,94,89,94,97,105,103,110,101,103,105,101,98,92,99,103,103,97,103,122,95,109,102,98,97,99,110,102,109,97,98,91,94,102,115,110,90,107,116,106,100,93,87,106,100,112,88,108,88,104,94,97,107,111,98,109,107,102,93,91,105,101,101,116,84,101,121,98,98,101,96,103,96,87,110,110,90,99,106,101,102,88,98,106,110,98,98,95,105,79,107,98,95,117,102,92,103,93,103,106,101,112,89,105,99,101,104,92,108,100,111,110,104,91,93,90,101,120,104,102,103,107,98, +605.3869,91,100,88,101,105,113,103,114,61,97,106,105,86,101,104,108,103,117,94,96,96,83,110,100,97,104,106,99,113,104,106,112,105,109,124,108,113,95,102,111,103,109,91,95,100,100,101,98,112,97,111,95,94,106,102,97,94,110,113,91,121,105,103,95,114,114,109,114,100,112,98,110,95,115,104,99,87,101,100,113,101,104,109,95,91,97,108,102,101,132,91,105,100,110,98,91,110,101,99,112,94,104,99,105,103,103,104,103,93,101,87,90,92,115,109,111,108,103,117,99,108,102,103,106,112,104,94,99,107,117,110,105,90,98,108,110,93,113,103,100,94,111,87,105,90,98,111,119,96,102,98,118,99,104,112,96,100,110,78,99,113,109,110,122,114,112,101,104,105,76,96,106,109,105,112,85,105,98,104,113,110,77,104,102,107,90,101,97,113,98,100,108,106,99,107,114,109,92,104,117,110,102,99,114,101,108,99,108,102,98,92,118,98,103,114,94,120,104,96,114,107,107,94,92,100,101,103,112,109,96,100,110,107,100,119,120,108,100,105,111,114,97,98,99,99,100,112,105,95,104,99,103,100,98,91,130,99,125,104,100,99,108,106,99,106,108,106,118,105,99,102,100,102,102,108,106,104,95,101,92,116,110,103,101,110,101,99,105,105,86,107,102,108,107,106,102,103,95,97,110,95,102,102,105,108,113,107,95,111,117,109,94,105,113,104,108,100,105,102,87,100,110,109,105,101,114,88,102,112,108,114,96,105,118,113,100,96,106,105,102,103,101,99,112,113,115,105,101,112,88,117,106,100,86,108,100,89,113,99,107,116,109,99,96,101,91,94,120,93,121,112,103,99,109,109,97,110,104,100,115,100,106,108,102,108,104,95,121,112,93,107,87,99,110,112,104,102,98,101,113,108,96,101,100,100,109,119,102,106,104,92,110,105,96,103,98,117,88,116,98,99,98,98,123,95,101,108,91,103,109,101,109,96,95,103,112,94,105,102,100,118,105,106,99,104,102,100,96,102,110,102,100,72,99,102,104,98,99,110,105,119,110,105,105,116,114,104,98,108,103,102,99,110,97,98,100,94,107,118,107,104,96,96,108,99,102,90,118,107,97,95,111,95,104,101,117,103,105,108,109,106,111,106,107,113,96,107,113,110,118,109,102,101,100,100,111,114,94,100,92,96,87,103,116,106,96,117,111,103,117,97,100,105,111,103,108,96,91,100,104,106,104,104,91,107,100,110,94,101,106,82,100,106,104,97,114,112,109,104,110,112,109,105,94,102,105,104,105,111,110,98,99,103,105,107,106,102,107,110,94,110,114,109,95,104,101,103,102,102,102,96,112,99,101,115,95,113,103,102,104,114,112,111,108,97,99,95,102,111,113,108,99,102,89,104,102,102,108,114,108,116,101,113,105,119,95,94,116,109,106,100,101,101,102,91,109,102,94,101,108,112,97,96,92,106,103,99,122,101,103,108,94,107,103,100,104,108,107,108,101,110,111,101,100,106,95,97,96,107,122,112,104,99,99,104,121,101,112,118,108,104,107,106,86,98,110,98,113,102,91,103,99,107,107,100,95,107,105,111,95,121,90,113,101,93,101,106,102,101,96,91,104,94,102,102,104,94,97,90,113,107,96,105,122,98,113,99,106,114,100,104,104,101,105,94,118,106,96,78,105,103,105,94,99,103,94,97,105,84,117,103,96,107,100,87,101,102,97,107,88,115,113,97,108,101,101,96,106,104,108,115,107,101,106,99,114,106,125,105,98,99,108,115,112,96,108,88,116,110,110,103,106,101,100,107,120,96,92,108,98,98,117,119,110,109,100,102,108,123,113,104,101,109,99,107,115,101,104,113,110,102,111,106,123,105,103,110,104,99,99,105,108,114,109,102,111,115,100,107,114,98,120,107,95,104,101,102,97,111,83,100,101,103,103,100,107,114,95,106,113,113,98,107,107,100,108,94,98,109,111,96,96,108,102,103,101,109,92,103,124,110,119,105,103,117,110,103,108,93,109,105,113,105,91,101,93,109,98,101,96,114,112,110,104,104,109,96,104,116,101,107,110,114,100,105,103,105,107,100,110,115,96,103,113,102,109,100,106,108,102,109,102,96,99,102,104,105,113,97,117,103,111,102,99,110,113,105,123,116,103,103,98,107,109,101,95,104,107,108,116,105,120,97,91,105,105,101,89,101,92,103,101,96,84,100,115,104,103,100,93,104,102,92,106,87,93,89,107,113,96,105,100,109,101,108,98,99,113,100,89,112,104,105,106,110,91,103,93,107,99,105,108,100,73,115,85,96,84,106,87,94,108,100,96,110,112,126,100,105,105,102,99,108,95,103,101,99,119,133,122,125,135,107,139,115,129,140,126,123,120,116,99,127,113,104,119,98,115,108,114,111,116,112,95,100,108,81,107,117,113,96,106,102,92,110,104,110,105,107,99,102,96,96,121,110,115,107,105,117,113,104,108,107,93,91,112,116,108,115,94,101,108,88,109,110,106,110,101,99,107,94,101,103,87,95,86,101,106,99,109,103,99,106,104,112,108,102,99,114,105,102,122,95,113,106,101,109,87,106,95,95,103,98,113,108,102,108,99,104,96,103,103,117,107,116,100,105,113,95,107,91,90,105,113,103,106,113,100,101,118,100,103,120,100,102,100,114,103,101,127,115,108,99,94,105,108,98,90,103,109,108,93,110,111,99,114,102,95,113,102,111,91,105,103,110,112,106,76,115,83,121,111,101,98,95,107,104,117,106,107,98,114,91,98,109,114,103,82,111,100,105,98,93,120,103,94,82,106,103,135,108,103,90,105,102,130,106,99,90,89,108,95,95,106,110,106,85,109,98,113,106,106,103,105,83,94,103,106,108,99,96,102,82,108,106,102,104,95,100,106,119,90,120,113,117,97,102,113,111,115,111,84,113,98,109,100,117,99,114,108,102,109,90,101,102,113,108,106,105,103,97,106,109,100,106,114,98,102,116,98,120,113,104,109,118,111,99,103,111,105,100,97,96,113,115,98,92,109,101,106,98,105,103,98,105,106,121,103,101,100,110,94,107,103,103,114,105,101,113,108,102,110,109,110,104,110,110,110,103,113,102,104,97,108,101,103,100,103,96,101,105,104,94,102,102,97,85,102,85,117,99,110,111,105,100,103,113,103,118,98,92,96,99,91,92,111,103,111,97,115,92,121,109,94,101,100,102,111,99,102,109,105,99,106,99,96,106,104,107,101,110,100,104,108,121,105,115,120,106,111,113,104,100,95,101,98,94,105,108,98,107,95,101,113,113,102,92,108,104,94,100,98,99,99,103,101,101,92,102,105,93,106,109,96,120,96,106,111,94,108,99,89,99,110,111,89,93,116,104,91,109,108,93,106,104,95,104,109,101,99,104,112,101,108,100,101,114,102,103,110,119,109,107,101,104,108,115,97,109,101,103,113,108,105,94,99,98,103,102,104,104,104,111,101,102,124,113,107,107,100,106,116,97,116,107,104,110,112,109,100,103,100,105,104,109,111,104,95,90,120,101,101,107,109,110,120,107,119,96,100,113,103,110,114,117,101,108,113,98,94,96,100,99,102,96,98,108,117,111,100,106,107,120,115,111,95,106,91,115,109,117,79,107,105,98,110,109,98,112,69,100,105,119,100,96,130,103,103,93,103,103,108,98,113,106,107,103,103,112,105,109,106,100,103,104,102,110,100,116,97,87,111,95,105,106,100,102,125,105,99,107,111,109,109,92,101,93,112,101,105,98,110,96,101,96,102,107,99,109,108,97,113,108,112,98,110,102,118,111,98,121,97,110,106,101,107,105,88,102,114,102,98,107,104,137,100,101,110,119,102,105,117,98,126,96,118,84,81,109,108,103,101,95,105,101,108,107,92,103,117,104,109,103,106,111,101,112,108,111,100,114,92,103,94,109,109,105,108,107,112,127,104,100,108,88,108,107,88,101,104,107,105,103,116,109,98,109,92,92,103,108,117,98,98,105,107,102,104,100,113,101,97,106,100,106,104,113,97,103,103,101,116,111,106,99,111,102,106,101,106,97,119,110,110,79,94,102,105,103,99,101,107,105,100,116,111,104,101,92,92,101,101,109,114,106,107,107,115,115,98,100,94,90,122,106,105,112,97,117,110,107,106,101,100,93,115,112,117,98,94,113,101,102,110,103,121,99,112,106,105,112,99,108,112,110,116,102,99,103,111,114,103,102,108,104,117,106,99,106,98,97,104,90,103,108,103,98,94,108,108,92,111,113,107,92,93,105,110,93,104,100,101,105,113,96,107,106,107,99,117,107,107,100,106,116,111,102,106,107,104,112,108,98,116,120,91,103,91,107,104,98,109,106,105,101,97,100,97,115,92,94,107,101,108,111,116,117,101,108,98,94,98,124,112,91,106,111,107,102,107,112,109,79,120,95,98,95,102,105,101,108,115,100,115,101,117,101,109,106,104,103,95,98,106,102,97,96,104,95,109,105,99,98,104,111,111,101,101,102,99,96,94,104,107,106,101,108,104,100,102,91,105,107,105,76,107,99,109,113,111,100,106,96,100,85,102,121,109,84,117,91,101,111,103,95,99,120,121,90,108,96,105,103,132,103,86,113,104,104,107,109,105,99,94,115,113,105,91,106,95,100,103,108,101,110,103,109,105,107,91,104,94,101,107,106,104,90,81,74,92,116,117,112,113,116,108,89,106,109,114,111,102,105,106,100,114,106,120,105,102,109,90,102,107,107,111,106,107,106,108,96,99,120,106,98,110,108,98,107,101,99,104,100,109,101,107,101,99,94,101,124,79,99,96,108,105,106,106,102,102,100,110,109,99,107,96,100,101,111,75,113,105,97,86,119,105,102,102,107,99,102,102,106,94,112,113,113,114,91,106, +605.52795,117,91,90,93,90,92,87,103,110,91,98,102,104,98,112,106,80,112,121,120,101,101,99,106,93,106,99,103,110,101,108,108,100,111,108,104,104,110,92,104,116,105,97,107,101,95,98,103,85,107,95,103,93,99,96,96,94,95,129,105,103,122,106,97,113,96,96,101,96,114,93,93,98,106,103,109,103,90,98,111,89,97,98,99,101,104,108,103,112,111,93,96,99,105,90,100,97,73,106,102,91,100,92,104,101,105,98,95,104,96,105,94,104,94,100,94,102,112,106,112,100,107,105,107,100,110,111,113,108,94,90,111,105,100,100,108,95,107,100,94,99,107,104,96,100,112,98,101,104,100,107,108,102,91,102,106,96,97,105,118,102,98,96,108,100,108,97,105,111,96,118,103,98,106,98,111,95,96,112,108,111,104,102,98,97,91,83,99,122,93,98,104,99,110,96,108,91,114,112,104,92,100,111,111,104,108,85,105,110,99,86,111,102,87,98,102,105,102,101,97,106,86,106,100,96,97,102,110,94,103,96,102,97,103,91,103,101,104,106,102,101,88,102,102,100,103,101,101,100,103,94,112,92,101,110,102,102,76,126,106,108,102,94,97,103,106,103,100,104,97,103,99,107,95,101,107,109,98,104,105,97,99,96,93,95,100,100,102,116,109,105,101,114,104,120,101,109,107,86,99,110,91,95,103,97,103,108,111,106,118,91,106,107,102,99,107,106,96,109,99,110,109,98,109,113,101,101,97,110,112,99,100,100,102,121,102,103,91,113,103,112,116,109,99,103,103,101,99,103,100,95,101,106,105,98,100,106,112,107,103,90,97,85,105,101,112,96,101,92,122,111,101,99,114,112,94,105,101,92,90,105,105,99,107,106,98,101,100,97,98,106,94,99,107,106,102,96,108,96,102,88,105,95,104,100,95,98,78,95,105,104,103,105,105,108,94,94,111,112,99,101,95,119,105,106,94,99,107,96,112,98,93,104,98,99,87,126,112,108,106,101,121,105,102,101,106,110,93,102,99,104,106,102,107,103,102,102,106,109,113,107,99,120,109,96,117,106,103,106,112,89,105,104,103,105,107,101,113,104,97,104,106,102,112,84,100,109,104,109,105,118,118,117,102,105,110,90,99,102,88,116,104,106,95,98,99,97,105,109,115,99,114,105,121,107,95,107,99,98,99,99,84,101,95,94,113,118,101,104,99,98,92,98,99,99,99,110,100,114,104,98,110,97,109,103,110,90,101,103,102,112,97,102,109,89,103,100,105,92,99,122,107,109,102,108,96,97,107,107,94,102,104,111,104,109,102,94,100,99,102,94,96,109,98,96,96,108,98,90,91,109,106,104,107,107,109,103,106,111,97,106,105,111,98,107,99,95,108,107,104,104,99,104,102,109,100,107,104,110,99,98,113,94,92,105,87,103,99,102,107,107,95,108,101,105,105,95,103,100,101,103,110,104,108,113,92,96,104,126,106,94,97,99,119,109,105,98,103,97,98,106,106,116,104,100,103,115,100,107,100,111,108,108,95,93,103,97,112,101,99,110,130,91,96,100,105,106,107,120,96,107,91,91,77,98,103,96,94,98,96,102,109,104,107,102,104,99,102,110,91,103,94,113,111,124,101,101,118,104,108,103,95,106,109,103,105,101,109,111,105,114,117,104,112,101,100,98,116,113,106,101,103,96,95,105,90,109,103,89,110,107,100,112,95,99,106,108,98,109,101,127,104,99,109,81,100,112,103,107,97,77,113,101,103,102,87,106,98,99,108,105,106,119,107,105,101,106,100,102,109,105,104,106,103,108,105,95,113,70,94,112,111,84,99,108,108,112,116,107,115,109,106,104,113,116,101,105,117,113,108,103,104,115,109,97,113,104,104,114,105,107,99,94,104,105,109,113,97,114,97,103,110,107,102,92,103,100,104,110,98,102,100,101,105,104,102,98,101,93,100,97,100,121,99,96,90,102,107,111,126,87,110,100,98,102,96,105,93,109,102,99,101,93,113,117,95,100,108,107,110,105,99,102,108,106,103,85,107,101,101,89,107,96,116,94,99,104,103,96,100,99,101,91,103,107,95,106,107,103,101,112,107,105,109,97,136,86,116,108,105,68,104,110,112,103,104,96,109,107,101,97,107,105,100,92,96,111,113,99,103,103,125,102,103,101,101,109,125,98,111,93,99,96,98,108,106,98,96,104,104,98,103,102,99,120,98,101,103,126,106,112,102,111,108,104,94,86,108,105,102,113,95,111,104,91,103,104,97,101,105,84,92,102,108,101,105,110,112,88,86,105,112,103,102,99,100,99,107,102,108,118,98,109,118,100,102,101,101,95,101,95,101,114,118,114,97,117,110,132,114,119,110,141,131,135,153,147,121,133,106,116,118,80,116,98,119,115,95,110,106,101,106,96,102,102,92,96,93,108,98,99,118,98,109,83,99,89,107,108,89,96,99,103,105,102,108,111,101,105,99,116,108,105,117,98,97,113,96,109,87,102,102,104,106,105,103,106,101,102,109,70,110,104,101,104,100,96,105,106,99,95,106,96,116,113,95,103,101,101,109,118,106,107,102,113,95,94,100,103,114,114,92,98,100,103,110,107,102,105,102,106,112,116,102,98,89,111,104,77,94,106,99,107,91,98,103,116,103,109,98,100,106,104,102,105,112,103,106,108,103,108,121,107,104,108,109,108,110,108,92,107,105,108,108,98,113,100,99,127,105,104,92,109,106,121,108,103,113,99,94,107,94,105,110,107,102,105,106,111,102,99,99,93,108,97,102,89,110,95,100,95,106,99,116,117,104,94,96,95,119,107,114,103,86,109,102,109,105,97,104,106,103,114,92,108,114,108,107,112,101,96,99,105,95,103,90,101,94,103,107,97,103,113,114,113,99,103,106,90,97,109,114,117,102,99,104,99,109,108,107,103,107,114,100,111,106,104,102,99,102,106,108,99,105,109,106,100,105,98,112,100,100,105,108,105,98,108,99,111,110,123,107,101,104,116,100,108,113,97,97,108,110,107,115,110,105,102,108,102,100,103,98,111,97,111,108,101,113,109,104,101,91,108,100,103,112,127,111,92,100,101,112,107,111,104,88,112,87,105,100,99,105,106,103,113,91,91,106,97,97,111,100,106,112,101,102,108,87,100,105,98,106,112,100,111,108,107,88,102,94,108,95,111,92,105,106,111,104,117,105,102,117,117,108,106,101,113,106,101,109,107,95,98,91,100,101,103,126,112,101,109,109,114,102,93,87,87,113,103,100,111,97,99,108,102,105,97,96,105,91,104,103,108,110,114,107,101,108,100,103,99,108,103,99,116,125,95,109,103,99,98,111,105,112,112,91,108,105,111,100,94,105,110,107,102,108,97,105,103,98,92,109,108,105,99,116,108,103,102,94,109,93,116,102,86,97,105,103,96,101,120,96,106,110,105,91,106,108,103,117,91,108,93,103,100,108,100,99,109,99,96,101,108,107,94,95,99,112,112,95,105,93,106,101,88,101,109,110,110,101,96,91,103,101,105,111,90,99,100,97,87,103,112,88,102,102,92,112,110,112,106,100,98,112,97,104,103,91,88,88,101,74,95,106,93,110,110,113,109,103,109,112,102,112,104,103,100,113,105,109,103,103,102,107,115,107,115,94,104,108,87,108,98,100,100,102,108,95,109,100,107,102,113,94,105,97,111,108,127,110,108,110,102,106,101,99,96,99,111,112,98,103,103,111,104,97,111,97,100,84,97,87,111,99,94,102,103,100,113,98,105,113,103,101,106,100,95,86,103,91,102,95,99,104,91,103,114,104,98,112,117,109,108,96,100,114,105,104,94,91,107,110,105,95,110,112,129,121,100,105,113,95,104,104,107,105,86,101,99,111,90,109,107,104,108,100,107,101,106,99,89,110,109,108,101,112,97,86,96,125,98,97,120,91,109,108,96,108,101,102,88,108,97,113,101,105,104,96,94,101,119,95,101,103,103,104,100,104,103,112,106,87,96,113,101,111,93,113,111,94,107,104,114,113,103,103,121,94,102,93,105,100,103,105,107,107,111,107,111,101,103,113,121,108,107,115,101,100,102,94,104,118,91,102,107,101,116,106,107,102,96,104,105,106,100,104,105,103,95,106,97,102,111,104,104,102,108,109,101,106,114,119,99,89,105,110,97,95,107,108,106,95,113,97,100,102,102,109,103,109,109,101,139,111,105,108,108,103,109,104,102,101,107,101,98,91,101,113,89,98,105,95,102,105,104,95,105,110,104,94,104,104,112,111,108,102,88,101,104,108,105,101,101,98,119,109,98,116,104,101,117,97,94,117,95,108,100,103,105,106,108,105,107,102,102,104,109,98,111,106,102,118,101,114,109,97,113,108,103,102,111,119,96,104,104,106,104,106,102,98,103,99,111,102,104,106,104,106,95,102,106,106,105,95,106,101,91,100,100,108,108,106,107,106,100,101,106,88,102,110,106,114,102,101,87,104,98,99,107,106,93,113,107,107,102,123,93,101,104,98,102,92,102,104,101,113,105,101,106,92,104,130,97,101,101,116,111,83,104,105,108,109,120,102,104,102,105,118,80,106,91,102,112,104,107,84,114,103,109,107,113,96,108,108,97,106,115,101,105,103,104,90,104,102,104,108,126,95,106,105,102,107,94,106,109,110,104,87,116,101,84,96,97,106,101,114,97,102,98,98,116,98,105,98,101,100,104,110,105,94,103,111,106,108,108,96,109,105,94,101,105,103,108,81,101,108,105,105,98,101,125,108,100,109,105,98,98,99,102,139,102,100,95,101,104,104,97,100,97,103,112,95,106,100,93,94,101,100,104,99,107,113,116,101,100,87,102,83,111,87,94,87,119,110,121,105,95,105,106,101,114,99,98,92,104,98,99,103,100,98, +605.66901,109,96,100,105,95,107,105,109,103,113,93,87,106,105,109,115,108,106,107,94,110,94,117,100,101,109,106,91,97,114,107,106,105,85,113,105,114,96,95,107,109,107,104,107,97,118,111,99,101,109,106,103,105,113,108,83,105,95,120,101,113,110,112,87,105,108,101,103,114,100,110,106,88,102,98,109,96,102,112,83,104,99,102,106,99,104,91,106,101,92,99,97,96,81,98,101,120,104,95,95,100,90,106,108,104,102,99,113,93,111,102,94,108,98,101,111,99,104,109,108,98,110,108,110,109,97,118,101,112,110,121,94,99,106,106,99,110,105,98,98,100,106,106,100,108,98,114,111,107,91,91,104,99,94,103,105,107,100,109,103,114,114,104,112,104,112,83,111,99,104,96,125,107,104,104,107,105,96,105,98,104,103,105,110,110,105,112,93,98,95,80,113,96,109,105,115,106,100,87,106,105,98,122,105,95,101,105,112,111,105,104,98,98,120,98,100,93,99,98,96,96,104,104,112,99,99,103,91,98,99,111,119,102,105,101,97,114,103,102,112,96,105,102,99,108,102,100,101,104,101,100,105,111,97,109,97,101,105,94,111,96,112,109,104,94,106,100,114,91,101,98,99,104,103,103,100,107,104,106,103,108,102,105,107,103,99,104,104,100,94,97,109,102,106,104,106,96,107,93,96,95,102,113,106,106,103,111,88,97,113,93,101,118,108,103,102,113,106,103,102,108,102,106,104,104,98,122,106,109,121,103,100,109,108,108,117,118,112,94,99,99,112,92,102,99,110,95,106,111,99,103,106,96,104,117,109,109,103,109,116,102,105,96,108,109,87,100,102,99,120,103,91,112,104,95,117,103,106,105,105,116,106,95,90,96,109,107,93,103,90,107,100,104,97,106,95,105,97,121,108,102,114,103,101,105,101,101,95,105,91,111,98,88,94,104,103,97,108,111,98,100,102,95,102,101,105,100,97,112,110,99,112,108,98,107,118,115,105,103,98,108,104,114,80,96,104,104,106,125,103,100,104,100,99,102,106,105,115,112,106,106,106,111,109,112,102,100,112,98,102,105,102,107,118,99,93,94,106,112,108,99,99,105,111,98,91,114,104,100,106,119,111,101,100,65,110,99,95,109,100,99,99,80,108,105,104,100,122,106,81,114,110,108,103,106,101,101,107,102,96,98,102,110,109,115,113,86,128,106,119,99,104,106,102,95,102,109,110,111,109,113,98,105,99,99,99,109,110,111,104,109,101,115,93,107,119,112,97,93,96,102,101,108,105,108,90,100,108,117,101,102,93,103,117,100,104,110,105,109,110,110,96,104,91,103,106,107,116,100,105,97,103,102,108,110,102,108,108,121,97,115,105,109,100,97,97,100,103,99,113,100,105,98,99,107,105,121,102,119,105,111,113,94,99,109,100,101,123,102,99,111,101,100,106,92,95,108,93,109,103,104,106,113,105,105,95,101,76,118,103,99,102,104,108,108,94,108,113,108,106,104,99,112,115,99,98,104,100,101,112,107,101,105,103,100,101,108,117,102,103,109,106,109,98,102,111,110,82,110,113,95,115,111,106,104,101,102,108,109,118,106,110,109,110,104,103,100,114,95,99,109,116,98,97,99,104,96,103,110,105,94,98,92,106,111,86,108,105,107,115,107,101,100,95,138,106,89,103,96,99,116,95,110,103,102,128,102,109,98,114,113,100,118,101,109,98,109,113,97,96,105,108,102,95,105,112,105,100,111,102,107,107,115,111,103,102,98,99,110,104,98,104,105,109,102,104,110,105,100,111,108,103,103,107,106,112,98,98,82,113,98,97,91,109,103,105,105,110,107,103,110,100,99,100,105,107,107,106,117,105,101,99,109,117,94,104,104,96,92,83,108,99,105,103,95,104,111,104,90,108,103,101,97,108,105,105,122,99,96,104,120,114,101,103,104,114,110,106,112,103,101,113,102,108,102,112,88,103,108,94,90,99,105,109,99,102,111,107,102,97,108,104,98,104,94,121,101,119,99,98,104,102,91,99,81,94,113,107,94,115,114,105,111,99,115,101,109,108,109,130,97,109,97,115,107,98,105,109,106,104,99,109,107,98,99,109,116,111,102,98,93,112,98,98,97,96,104,108,109,116,109,104,105,107,116,103,113,107,110,107,103,112,110,107,112,108,111,105,100,112,108,112,104,94,114,107,80,115,104,116,104,115,105,110,99,106,97,104,64,90,108,121,103,91,103,112,102,103,94,105,107,104,101,111,93,103,105,111,106,107,102,101,103,94,113,108,102,109,119,105,86,104,108,114,106,111,104,102,105,110,118,108,109,91,125,100,101,107,111,100,104,128,112,98,114,102,108,128,109,116,122,130,130,115,131,131,124,133,120,114,121,122,139,107,136,104,117,110,99,108,112,119,117,100,87,97,98,109,110,99,107,97,94,114,119,83,106,100,99,95,96,103,104,104,109,118,95,95,101,121,109,98,97,93,98,103,91,113,102,102,93,93,99,98,91,110,111,106,107,98,119,102,108,112,97,105,99,94,106,105,113,96,106,106,109,100,105,110,108,98,103,107,111,100,106,103,92,95,95,106,111,102,99,105,100,97,116,98,104,74,106,106,99,114,104,114,108,110,103,106,105,101,102,94,104,99,95,95,108,94,107,107,105,104,104,97,109,101,97,119,98,99,97,108,120,87,105,94,101,103,106,101,124,119,106,98,98,71,97,103,113,99,102,88,104,117,109,110,109,97,98,110,107,103,104,107,108,102,107,93,94,109,101,100,108,95,99,108,111,129,106,110,94,98,105,122,112,103,116,103,101,96,102,90,94,99,104,106,114,110,134,105,103,95,95,108,121,104,102,122,123,98,102,115,107,98,98,100,93,106,110,109,98,108,101,99,107,116,114,112,102,98,108,106,96,103,93,95,112,113,94,99,102,97,113,113,102,103,103,88,107,100,99,105,101,100,104,121,99,100,104,106,98,102,110,96,109,117,103,108,107,111,99,99,110,111,110,103,105,103,90,98,111,112,96,102,104,98,110,102,106,87,90,108,102,95,106,98,110,111,108,95,104,106,99,108,105,121,99,94,106,110,109,103,108,109,97,82,106,101,96,89,98,87,108,96,98,113,99,95,109,108,107,102,112,88,103,110,110,106,91,108,104,98,104,108,99,111,102,94,97,106,98,107,89,102,104,96,90,97,130,96,104,109,92,95,111,107,103,100,110,88,99,99,105,100,107,111,108,107,103,111,103,109,106,114,92,113,100,109,112,95,111,113,107,102,100,83,106,103,94,91,99,115,109,115,99,87,104,103,98,106,113,88,110,104,98,96,107,105,95,107,100,95,112,105,99,92,104,71,103,103,105,107,96,103,101,83,94,83,108,95,105,101,102,78,100,104,115,100,104,95,108,104,98,107,98,105,99,108,112,108,96,102,98,106,107,108,94,96,101,107,106,113,109,113,110,102,77,103,116,102,97,96,114,103,111,108,103,117,102,105,102,110,120,108,110,107,109,99,105,102,116,99,93,113,111,99,102,109,94,117,108,99,98,94,96,103,103,104,105,110,97,95,85,107,105,91,104,101,114,104,113,106,97,88,98,112,115,109,112,106,109,93,91,104,134,100,102,102,100,107,102,123,92,117,91,89,106,109,102,103,104,110,87,87,103,115,104,106,102,109,95,106,94,95,96,103,105,106,96,107,106,106,104,98,106,94,101,92,101,111,103,100,92,100,103,97,107,101,117,96,100,99,107,109,102,101,100,96,91,89,114,101,102,99,102,106,109,95,106,111,84,117,100,103,96,112,94,127,109,110,111,96,79,108,103,91,108,108,105,110,101,72,105,108,115,109,98,98,100,108,94,97,94,94,110,111,96,108,111,95,105,95,111,98,104,108,117,109,105,88,112,100,95,106,114,105,102,113,106,123,102,105,97,108,103,113,86,100,109,101,106,104,96,104,118,116,98,98,108,121,100,107,106,104,108,106,102,107,104,93,121,103,98,102,111,109,106,105,110,87,101,100,105,95,106,103,115,114,109,100,96,78,110,106,106,92,97,99,102,103,99,97,86,108,92,101,99,108,105,98,99,109,95,114,93,107,95,100,113,104,111,105,96,108,95,102,106,115,98,101,93,109,99,97,106,105,113,113,75,103,106,101,106,119,100,100,108,94,105,99,110,109,101,76,97,106,106,98,104,108,104,109,98,106,110,98,98,112,104,98,103,101,99,108,106,111,103,100,103,96,107,102,96,95,108,102,105,98,101,105,118,122,113,94,111,110,101,113,101,106,103,99,108,96,103,110,101,114,107,102,88,98,107,108,99,99,93,96,97,105,102,103,113,109,110,100,98,106,112,107,106,113,100,93,109,90,111,105,106,113,116,109,97,108,112,108,106,95,94,105,111,96,101,105,100,99,98,103,103,94,95,100,105,95,99,96,106,101,98,103,102,100,100,104,91,96,113,111,100,95,118,105,107,105,108,113,102,104,103,100,86,113,113,103,102,108,110,106,106,95,106,89,104,84,107,102,89,99,113,94,97,83,99,95,103,92,110,112,112,102,115,91,107,104,118,109,121,106,105,108,112,117,103,108,111,107,116,104,101,108,113,99,104,106,98,110,91,100,109,104,118,121,96,99,106,94,91,94,102,111,97,107,102,99,103,95,99,96,102,94,96,100,103,81,117,98,100,105,100,100,107,87,108,112,101,100,106,102,98,103,107,102,101,106,93,100,100,95,107,100,93,112,106,111,100,108,91,120,100,107,94,121,106,90,87,104,113,98,92,95,95,86,92,108,102,118,97,80,104,107,101,123,99,96,91,100,94,103,113,108,113,104,85,106,98,102,111,116,102,100,99,100,105,106,101,108,112,114,109,119,106,106,95,102,111,84,93,78, +605.81006,110,100,86,99,95,82,88,112,113,95,105,97,103,99,102,101,97,103,93,103,105,101,105,109,91,110,99,98,105,116,106,95,94,92,102,74,97,98,106,98,101,112,92,97,104,92,121,104,95,97,96,93,107,101,95,94,117,113,105,84,84,87,102,103,84,109,98,112,97,106,108,119,98,103,100,108,95,98,107,96,108,108,106,100,104,97,103,100,102,109,87,98,97,96,106,90,109,104,117,99,95,101,95,93,97,101,105,96,90,110,105,94,99,114,106,103,109,107,97,95,117,99,92,104,111,109,104,97,106,105,95,116,95,99,105,109,91,92,105,102,100,100,91,113,109,105,115,97,98,94,92,107,101,107,101,95,113,100,108,99,94,98,113,103,113,95,100,95,100,93,101,99,113,102,90,97,113,94,111,109,104,110,101,111,96,105,104,96,110,100,98,102,103,101,90,98,88,90,94,106,95,97,91,88,106,98,87,101,113,108,102,100,94,112,98,106,104,101,103,113,94,102,114,95,110,112,111,93,98,97,94,97,100,100,109,101,108,114,86,99,104,82,105,108,109,99,112,108,122,108,114,106,98,92,97,99,97,86,101,113,119,110,89,100,88,82,91,113,90,100,97,98,100,93,100,104,96,106,99,99,97,116,94,104,93,90,95,103,99,116,105,103,102,113,115,103,104,109,121,108,105,96,100,95,92,104,102,112,101,109,107,107,104,98,101,96,105,95,99,108,102,108,107,104,113,96,88,97,111,102,96,89,99,78,97,93,120,103,101,105,102,102,104,99,92,108,108,100,108,102,105,104,98,96,99,94,95,106,111,100,98,103,101,91,103,110,103,103,97,98,97,103,120,103,102,103,103,112,102,103,104,112,101,112,98,91,103,114,104,118,113,86,100,96,102,97,102,107,91,94,111,100,85,105,114,96,103,69,100,107,82,107,108,108,113,101,105,104,114,99,92,99,104,108,103,115,111,93,101,99,95,108,101,94,104,87,99,110,103,102,117,113,100,117,101,106,110,105,95,113,101,122,98,104,100,90,95,103,108,113,96,99,113,103,105,109,98,103,102,109,107,89,106,96,100,113,101,103,102,112,98,109,103,94,99,118,108,103,105,113,103,109,105,98,96,110,103,101,103,101,115,82,102,108,101,115,103,96,109,88,104,110,104,111,92,116,92,100,102,100,104,117,100,92,115,108,110,107,107,92,97,101,98,96,100,112,99,107,99,110,106,110,105,108,112,97,101,92,96,107,103,88,101,100,108,109,97,109,98,95,90,108,89,123,101,101,112,101,99,95,102,98,109,105,105,106,94,86,108,98,102,99,88,97,102,95,95,91,98,69,96,99,97,108,101,132,108,102,104,92,101,103,105,106,108,104,99,106,114,94,101,104,121,99,100,102,109,101,97,104,107,108,71,118,124,108,96,113,103,109,108,100,99,100,88,99,91,100,102,96,96,102,90,86,89,98,90,102,107,85,103,105,104,99,108,96,126,113,112,94,110,105,113,107,106,99,99,109,104,91,111,94,111,96,108,105,112,99,96,100,107,102,111,99,105,95,114,96,103,102,104,108,100,97,98,105,95,106,87,99,106,93,106,108,94,113,104,102,97,100,104,102,93,100,95,107,105,99,95,98,108,99,114,100,104,108,104,112,93,103,97,109,105,110,89,109,114,95,109,97,107,104,111,88,97,86,96,107,96,110,100,115,99,116,93,106,110,99,103,108,105,101,96,96,92,103,94,116,101,108,108,104,100,101,103,103,106,99,112,121,104,98,96,113,108,109,99,98,118,95,108,106,93,109,91,109,100,109,113,99,110,116,110,104,106,94,110,109,96,108,117,102,90,108,110,92,107,105,100,94,100,98,105,105,101,101,111,125,109,103,87,96,105,118,108,100,108,107,102,105,112,91,105,106,93,101,99,106,102,98,110,105,107,99,110,90,98,117,105,106,88,106,88,100,93,90,110,100,96,110,115,141,98,101,101,83,97,99,91,103,108,112,100,104,120,99,106,114,93,98,100,104,113,102,101,109,95,108,109,100,109,108,106,105,103,116,94,107,82,113,104,95,104,117,112,111,101,113,95,109,110,108,107,109,100,114,94,98,107,105,114,117,118,105,100,101,105,108,105,105,108,100,104,110,95,86,105,85,95,108,96,113,103,100,108,104,105,104,106,103,99,107,119,106,103,103,93,102,103,94,125,101,105,83,102,98,104,89,106,98,101,103,97,106,105,106,98,90,88,105,107,111,104,106,99,95,98,119,100,104,95,98,102,111,108,96,106,122,102,105,108,102,104,107,104,115,100,100,97,106,102,118,105,107,106,121,113,95,107,97,100,101,103,98,106,96,112,103,109,102,104,127,117,108,136,132,141,137,113,114,130,122,137,111,111,121,87,112,111,102,100,103,106,109,106,110,93,99,103,105,100,99,102,100,96,92,93,111,94,116,95,107,100,101,129,103,102,111,115,112,110,110,112,94,95,99,97,113,96,103,95,101,105,102,105,109,115,97,106,90,95,103,107,100,113,114,102,105,91,100,81,87,113,108,100,103,104,115,115,109,96,111,108,99,108,131,113,102,109,93,108,105,91,114,105,103,97,98,100,93,103,110,110,110,102,104,97,95,102,108,102,92,104,112,106,101,111,103,123,120,95,107,118,98,96,103,104,109,113,123,100,105,92,115,125,116,106,117,106,106,105,115,114,106,117,115,109,99,94,100,106,108,104,118,105,110,135,100,96,110,105,101,96,100,108,107,108,76,108,106,112,108,103,103,104,103,88,111,112,117,99,121,100,103,95,98,110,106,119,116,102,108,108,120,109,103,115,107,116,110,95,120,108,106,106,102,73,97,103,111,116,101,100,99,108,102,101,106,101,105,112,108,101,107,101,109,93,102,91,112,108,115,118,106,97,113,73,112,107,96,78,96,103,105,109,102,99,101,111,109,107,111,103,109,117,102,109,127,105,103,109,117,104,103,105,105,95,104,110,106,117,108,115,98,118,106,102,104,106,120,95,92,93,120,111,88,110,110,95,110,105,103,104,100,94,94,115,109,108,122,101,103,107,106,92,81,106,108,97,102,113,111,111,113,103,106,91,102,104,98,96,97,98,109,119,112,111,91,112,104,108,98,109,103,103,111,95,99,109,96,103,106,110,95,101,107,104,85,106,98,113,103,97,101,108,107,124,109,113,126,110,109,112,94,111,95,109,103,104,105,116,104,95,106,106,89,109,104,111,96,108,105,107,105,104,87,107,108,99,98,109,93,100,95,116,105,100,106,97,96,113,103,95,117,96,93,115,111,102,96,112,111,97,108,77,99,96,105,101,96,99,104,108,99,104,95,102,105,105,114,102,109,100,100,95,110,111,97,108,95,94,97,94,93,111,112,95,113,113,89,104,107,118,107,112,91,108,104,94,84,93,97,102,106,100,112,111,134,104,101,114,117,104,105,94,98,121,93,122,100,106,105,99,97,104,103,104,111,95,108,93,118,102,97,105,103,97,103,108,108,112,95,97,116,93,105,101,111,110,107,106,108,103,117,113,115,93,104,113,107,102,102,99,111,92,91,103,106,113,89,103,100,89,106,99,108,109,101,107,111,100,98,109,99,102,101,106,101,105,121,108,108,107,117,105,101,105,102,102,95,107,107,99,109,109,110,99,99,106,101,90,109,109,102,100,97,109,107,112,98,92,104,102,102,112,95,106,108,104,95,113,97,100,109,110,88,109,96,94,105,91,96,105,104,105,102,113,105,109,97,112,93,103,103,98,113,108,104,107,104,94,108,111,106,119,108,104,103,112,107,110,88,102,99,113,110,100,99,102,103,111,115,101,106,111,107,90,105,114,111,108,108,99,106,108,120,105,90,108,101,109,97,100,95,87,105,108,97,98,105,103,106,105,114,122,103,112,105,105,95,113,108,106,119,92,115,106,102,100,90,110,102,103,116,108,108,98,113,105,107,105,107,108,104,112,113,102,95,100,95,113,110,87,113,116,96,103,108,100,105,104,110,100,106,100,113,112,106,90,103,97,102,96,108,117,101,108,108,110,107,108,97,106,107,104,110,105,102,101,102,94,104,104,113,101,108,111,113,107,92,113,99,109,102,109,109,108,103,99,109,99,102,97,102,95,106,99,104,119,94,100,98,114,98,101,105,111,112,101,106,105,106,100,118,102,102,101,111,105,111,104,96,119,125,100,83,96,97,98,94,102,97,108,108,99,99,107,90,110,114,93,99,107,107,99,96,100,102,107,101,103,107,114,109,83,109,106,104,103,102,109,108,109,99,98,101,109,103,98,100,95,107,109,105,115,103,102,116,100,94,102,97,104,95,103,110,112,106,113,103,102,116,104,127,108,103,106,95,115,106,104,102,117,103,103,102,103,94,98,105,101,97,104,107,102,110,87,103,104,103,122,106,100,96,88,97,114,110,98,115,103,113,116,109,109,123,106,120,106,69,121,92,105,104,100,98,102,108,105,103,95,109,104,117,118,117,108,103,92,130,88,102,111,103,109,101,112,108,102,113,103,96,100,97,113,100,104,80,103,97,103,116,106,110,103,106,108,107,100,99,102,99,95,110,85,102,108,93,108,117,109,105,108,110,104,95,98,96,105,92,114,98,113,102,95,121,104,107,106,115,98,112,102,113,105,103,102,117,111,96,109,91,96,102,103,99,111,102,106,99,108,109,115,102,74,102,102,99,82,102,100,93,103,114,107,109,115,92,113,103,109,97,107,102,112,98,112,108,102,99,98,99,98,105,100,120,102,115,97,104,102,117,107,99,106,99,108,118,111,96,111,92,95,99,111,102,96,118,114,100,105,116,91,93,102,95,105,113,108,102,106,80,98,106,94,107,88,96,102,100,104,96,91,109,86,98,111,115,94,90, +605.95111,88,108,100,104,86,121,91,96,93,109,113,101,120,110,103,102,101,109,99,108,98,113,100,98,87,100,99,98,112,105,119,102,121,118,110,109,98,77,130,90,110,101,102,115,108,108,94,113,99,107,112,91,101,91,101,92,100,101,95,99,94,111,100,103,102,94,108,101,125,100,101,109,101,115,106,105,107,115,100,104,104,101,92,103,121,101,106,117,105,114,101,104,106,102,99,108,78,93,95,103,92,97,100,104,100,100,110,109,106,109,87,100,106,105,103,98,100,100,132,111,106,94,105,90,102,103,112,99,111,102,108,110,94,106,104,106,111,108,76,104,99,97,89,112,106,94,113,102,109,95,99,90,104,98,85,115,107,106,101,100,111,93,81,105,99,97,94,103,107,93,102,110,105,112,100,101,100,98,102,100,109,107,88,108,111,98,96,91,109,98,99,97,101,92,100,94,108,87,110,98,97,96,98,104,99,98,98,98,109,97,101,106,99,107,104,99,108,108,106,95,101,101,112,84,100,124,103,104,104,102,103,106,106,103,101,108,103,111,117,92,89,117,110,105,125,101,105,105,91,119,97,103,105,114,107,108,117,107,106,101,120,97,94,105,94,103,112,105,98,108,98,99,87,100,100,103,100,111,100,120,103,96,96,105,99,95,102,101,103,99,102,106,99,97,108,109,104,95,102,108,98,107,110,103,97,110,105,109,106,101,102,110,102,99,101,89,99,111,112,97,111,101,113,100,118,105,94,105,107,106,102,99,98,103,106,113,104,109,105,96,106,100,103,97,100,107,97,99,99,91,106,102,110,97,110,102,102,98,99,106,96,91,98,90,100,101,100,117,106,97,104,97,109,118,108,97,109,98,97,106,105,99,106,105,106,103,96,104,97,108,108,88,98,99,108,105,102,94,94,107,107,91,122,102,93,98,114,109,116,108,91,88,98,105,103,95,98,100,99,96,105,101,100,108,105,113,108,98,106,101,106,104,108,107,113,88,106,112,98,109,92,108,101,108,97,101,100,97,107,101,111,110,111,113,107,107,103,110,100,106,99,108,95,97,100,120,107,98,106,93,117,106,102,101,105,108,96,118,102,108,106,108,118,110,110,101,112,100,99,108,103,112,106,110,100,101,95,102,101,104,94,108,97,91,102,107,98,96,99,105,122,102,109,108,125,94,112,100,98,99,117,94,102,103,98,110,113,114,101,112,100,109,107,107,114,95,104,103,102,105,102,116,100,114,105,103,106,95,99,106,103,105,105,100,99,104,111,109,107,117,94,106,108,72,104,106,99,106,89,102,109,101,119,106,104,106,92,104,82,115,126,106,104,95,117,106,110,77,116,96,101,112,101,101,103,102,97,97,107,101,108,99,111,99,112,92,115,101,104,115,120,110,111,89,102,105,99,110,101,97,102,90,105,92,115,92,107,113,90,112,107,121,111,116,96,103,96,98,96,97,103,101,96,104,103,96,103,106,113,104,119,109,99,102,100,91,102,101,107,103,102,105,101,98,95,100,103,105,110,103,107,104,110,104,108,103,111,101,95,99,95,112,106,99,112,113,105,104,105,106,100,133,106,107,108,105,109,99,102,99,104,68,90,100,99,99,105,113,93,109,109,108,105,101,112,109,111,104,102,98,102,105,101,97,99,104,98,107,101,117,108,110,94,101,91,116,112,112,103,101,98,96,106,94,103,100,101,95,109,105,98,111,110,94,111,110,103,108,104,103,95,102,84,109,96,79,107,102,100,99,107,100,116,120,105,108,132,104,107,114,111,121,117,105,111,111,112,109,100,111,104,89,106,104,100,98,104,108,105,99,99,104,102,99,103,111,102,104,99,98,111,103,105,102,119,101,115,95,104,99,110,106,86,103,100,117,103,107,110,103,84,105,95,99,98,100,105,110,99,101,94,107,101,95,101,95,106,99,101,100,100,101,89,112,86,105,101,97,105,107,104,103,87,105,107,92,96,105,107,104,92,109,114,115,101,100,98,103,109,81,110,115,105,106,108,106,111,124,113,108,100,114,111,105,96,118,105,108,97,100,101,109,98,106,89,109,99,109,97,104,99,104,88,105,103,108,89,109,105,102,111,103,100,107,104,102,107,107,100,114,106,126,91,105,103,116,101,102,125,112,103,96,100,111,100,91,82,103,98,100,105,109,100,105,112,95,99,96,102,106,102,108,122,106,101,86,92,113,94,104,94,100,122,99,102,105,115,98,95,117,101,92,129,98,98,97,88,105,104,108,106,100,142,113,97,98,117,104,96,110,100,94,108,104,109,93,116,107,88,100,93,104,100,98,98,102,101,94,95,95,116,111,111,100,112,106,94,110,103,109,104,95,100,101,103,101,102,108,115,99,122,128,130,133,129,153,133,127,104,133,145,111,121,118,132,84,97,114,104,107,102,110,108,110,99,104,110,105,77,103,105,87,96,99,87,103,101,110,108,94,106,99,95,107,102,109,111,105,78,106,105,110,101,97,97,87,103,101,94,105,107,109,103,101,104,124,103,70,118,110,110,115,104,106,90,101,102,85,107,119,109,103,111,104,108,103,113,101,97,106,101,106,110,110,105,110,105,93,99,105,105,109,92,116,112,92,111,99,115,99,107,107,110,101,102,109,106,102,99,122,95,94,121,96,102,105,109,102,109,107,108,110,106,76,105,100,108,97,107,106,104,93,97,108,105,105,109,103,108,105,110,96,104,105,97,86,99,102,83,101,105,111,103,107,105,103,112,98,113,93,96,109,100,101,103,98,97,107,97,104,106,103,113,97,123,106,102,103,106,95,118,105,103,109,106,114,100,106,107,116,114,96,98,116,103,108,103,110,103,106,98,94,94,100,99,113,94,97,104,113,99,95,111,107,105,98,112,104,101,106,103,95,111,114,104,98,104,89,108,102,107,110,92,104,98,110,95,117,102,110,99,90,100,100,98,104,114,99,104,103,113,86,83,111,105,109,115,111,97,94,116,78,91,108,75,114,103,96,110,101,110,101,104,91,114,116,98,93,100,101,108,77,105,99,117,107,98,95,102,94,100,105,96,95,93,106,109,117,108,95,103,102,94,95,104,108,105,88,107,111,109,102,110,102,97,109,102,98,105,92,117,102,94,110,111,96,90,103,107,96,99,106,94,108,107,113,103,104,91,106,101,94,103,110,100,110,89,94,128,112,108,111,106,114,100,107,104,109,106,102,87,99,97,88,101,95,112,113,101,109,92,103,109,88,104,102,113,105,112,116,112,99,106,111,111,99,112,105,102,101,100,101,99,104,99,101,102,117,102,90,101,92,103,105,95,122,97,105,96,109,106,107,101,104,105,118,111,95,108,92,94,87,109,100,115,110,106,104,120,109,107,110,108,113,94,118,91,100,97,86,101,86,109,107,107,99,114,99,99,101,87,109,102,107,104,123,103,101,102,113,93,106,103,100,108,112,101,110,102,97,89,98,106,104,88,102,105,101,103,98,106,98,92,103,110,106,94,106,102,101,108,99,111,98,103,88,110,87,95,94,111,104,92,109,104,101,100,110,94,97,97,84,99,101,105,99,94,113,111,106,106,98,101,93,118,108,99,105,98,102,96,104,103,111,102,114,101,111,101,120,90,102,96,106,109,99,112,107,100,107,93,112,101,109,101,99,102,108,110,107,97,100,97,110,92,102,97,92,95,108,122,108,101,96,107,103,108,98,113,106,100,96,114,98,101,99,115,118,102,99,119,105,99,97,108,102,113,111,100,105,105,93,109,110,98,103,106,102,94,94,111,100,106,99,104,135,104,82,102,111,98,98,111,105,90,99,101,97,102,98,114,101,98,95,100,105,96,103,98,105,100,100,102,104,97,108,108,115,106,114,107,108,100,121,98,108,112,110,95,95,110,102,95,94,94,102,101,87,109,109,102,100,101,103,117,82,103,90,111,102,92,106,110,97,105,122,101,114,112,113,94,116,99,96,96,92,111,99,98,104,103,105,98,108,95,102,101,110,105,105,109,106,103,111,113,95,87,89,112,107,108,97,103,112,105,100,115,103,102,108,104,95,97,95,95,103,97,108,102,96,108,99,102,91,103,112,104,123,103,96,103,107,105,114,113,121,89,96,108,104,101,97,110,107,106,104,105,102,109,110,96,102,111,104,106,106,95,101,112,109,131,105,98,94,109,103,106,102,92,97,100,112,117,122,105,110,107,101,99,98,106,95,125,98,107,102,99,97,110,115,103,98,103,104,100,95,108,116,105,94,92,106,123,104,102,103,111,103,102,102,111,100,113,109,84,92,116,108,95,128,99,103,94,118,90,102,95,102,104,116,103,102,99,105,106,101,105,98,109,88,98,83,100,112,100,98,117,85,96,101,99,82,104,108,91,113,115,95,100,107,106,104,100,109,92,99,100,95,108,97,100,95,123,102,100,100,99,95,103,108,107,90,102,110,111,106,107,97,107,105,101,107,118,106,101,99,106,76,113,83,99,97,96,120,102,105,111,102,102,94,82,105,87,117,102,102,102,98,103,97,108,106,102,104,109,108,104,113,106,83,104,108,94,107,98,100,100,99,107,99,113,102,104,109,98,109,103,101,102,104,107,90,96,97,111,102,109,102,109,100,87,98,100,102,113,102,101,108,120,106,100,103,110,104,105,107,113,101,108,107,109,107,92,112,103,100,100,109,95,104,108,111,95,95,108,104,101,105,97,101,109,108,115,96,105,107,89,105,93,95,89,95,110,113,104,100,107,93,92,119,100,97,106,109,105,98,95,130,109,91,96,92,103,107,95,102,109,96,96,104,97,105,101,114,94,105,104,110,94,98,85,96,96,95,116,101,100,104,110,94,104,101,89,113,83,109,100,98,112,96,120,104,93,93,96,113,87,95,109,96,106,96,92,105,121,108,109,99,99,98, +606.09216,121,96,93,117,112,129,105,111,107,87,95,112,103,108,125,104,104,100,112,103,105,112,118,113,102,115,141,99,103,103,114,109,97,106,118,95,119,107,98,104,92,103,97,103,109,105,101,99,103,111,105,105,117,95,97,113,82,88,109,100,93,111,107,98,111,106,90,113,93,105,109,115,99,115,79,106,93,110,111,114,95,104,101,97,106,85,107,100,102,98,105,99,118,93,86,109,81,90,99,122,109,103,111,105,99,98,98,119,103,105,94,105,109,105,96,105,101,99,109,101,108,107,112,119,106,107,90,97,103,108,95,96,114,100,105,108,103,99,96,106,105,106,101,105,91,91,120,104,94,117,101,126,121,95,99,114,105,114,100,104,109,103,102,104,108,108,102,109,106,111,108,111,103,100,105,102,96,84,111,114,115,96,117,107,102,102,101,92,100,107,112,115,102,88,104,116,105,104,94,105,94,97,103,99,106,108,107,110,105,91,116,104,104,105,101,105,106,109,96,99,106,113,100,99,102,109,109,117,112,101,101,107,120,102,107,112,104,94,105,111,108,112,104,108,100,100,96,100,105,105,108,121,95,106,111,95,98,103,113,108,103,109,103,99,99,112,101,115,96,96,126,115,106,108,104,108,97,92,107,109,95,109,101,109,98,100,93,106,112,104,106,103,106,98,103,106,79,111,108,102,83,115,93,95,100,110,108,145,112,72,92,106,92,100,98,102,109,106,101,100,108,97,99,106,102,102,99,105,109,110,102,97,107,102,101,105,114,121,103,106,96,94,95,111,95,106,106,100,101,104,101,105,99,105,104,110,97,102,109,107,93,92,110,100,104,104,118,111,82,106,110,101,116,106,107,92,101,107,106,105,105,114,94,98,105,110,97,103,107,97,105,96,88,96,103,112,106,111,95,105,96,113,106,101,123,94,98,102,107,114,98,93,100,106,107,102,99,102,115,109,108,111,115,107,103,113,120,104,92,104,101,106,114,103,109,98,105,108,87,116,123,102,114,110,100,98,104,96,97,110,113,100,111,107,106,104,104,101,106,102,108,101,110,104,106,103,104,99,99,102,108,106,109,99,106,102,92,100,104,104,107,113,109,102,109,105,108,104,108,91,105,105,107,102,90,102,100,101,109,113,99,107,107,107,104,106,106,104,111,86,107,97,115,104,100,93,103,111,95,97,106,96,106,106,102,108,113,107,99,100,96,104,103,109,121,106,102,104,109,117,113,108,114,104,94,96,103,103,100,110,103,108,101,109,107,106,113,119,100,108,107,101,96,96,100,111,102,90,96,106,97,93,103,101,107,105,104,101,102,104,106,109,104,111,99,97,100,110,104,102,110,96,114,107,105,113,100,90,111,102,105,113,107,96,110,107,103,108,102,119,109,97,108,120,96,101,118,104,115,99,102,104,110,100,104,121,103,107,110,111,100,104,103,116,91,108,104,96,113,121,96,110,91,102,96,108,101,104,102,101,102,102,112,106,111,106,103,98,100,98,106,106,104,111,106,109,99,103,106,103,121,103,91,87,102,107,116,91,121,102,103,108,112,111,101,112,104,102,105,100,104,100,92,113,109,98,101,113,89,104,94,91,97,108,108,97,107,114,92,99,108,103,100,106,102,103,99,100,113,108,118,105,108,121,114,95,99,108,117,105,106,115,107,95,82,113,106,109,99,105,120,107,114,102,109,93,121,110,88,108,108,111,105,86,105,105,103,83,101,101,111,92,104,102,97,97,101,106,108,113,105,105,125,90,109,113,103,103,121,96,115,76,107,106,80,107,100,104,102,110,95,96,95,99,98,113,113,115,109,121,104,108,106,105,118,103,96,109,111,100,105,104,110,102,88,99,109,95,113,107,110,103,121,109,111,109,117,112,108,110,112,100,116,123,114,103,104,125,122,102,124,79,98,104,98,109,98,106,109,112,104,100,108,100,100,105,103,98,101,108,116,88,95,100,97,114,103,111,114,101,109,103,106,106,96,99,108,98,111,107,104,97,110,107,94,104,110,126,105,101,102,99,101,87,105,95,96,99,94,101,105,98,107,109,117,117,102,112,100,105,107,102,95,110,108,102,91,104,93,104,96,103,102,111,89,101,95,105,103,113,105,115,111,102,99,104,100,110,109,100,108,105,97,104,95,97,109,113,107,103,100,111,108,93,115,118,103,98,109,111,102,109,102,96,113,101,97,111,101,99,108,107,104,106,111,109,103,106,91,117,110,103,102,104,96,103,104,101,88,98,99,104,100,98,92,97,76,117,99,106,92,100,94,103,108,102,103,103,114,113,103,118,104,102,107,118,104,102,101,111,114,109,123,107,112,100,99,84,106,115,93,121,112,100,101,103,103,144,117,99,131,110,116,138,140,111,129,130,123,126,133,117,120,111,119,112,108,119,110,93,112,104,112,120,118,92,103,112,103,92,107,107,104,99,96,104,99,108,111,114,96,109,106,113,116,103,95,104,107,114,101,108,116,109,87,103,115,108,120,102,100,102,103,102,106,97,92,99,105,109,113,89,105,109,112,112,108,101,94,106,103,96,97,104,105,128,89,104,95,109,114,106,104,98,115,107,106,106,107,106,101,102,95,108,120,99,101,99,86,84,109,96,115,98,87,101,99,103,102,107,100,100,110,105,107,102,109,102,107,94,84,101,109,113,108,104,99,95,103,109,106,113,107,102,104,99,105,107,105,97,96,104,112,102,104,99,107,103,107,112,98,115,105,97,98,105,111,112,104,115,93,107,117,106,117,106,99,105,103,97,103,109,98,122,119,108,100,112,104,101,106,80,115,112,112,93,117,98,109,106,104,100,106,100,100,103,94,79,103,113,99,108,109,103,107,108,104,116,112,107,99,113,100,104,115,99,106,104,90,108,105,115,113,113,104,100,104,113,97,103,102,100,106,112,116,100,90,97,105,103,101,101,114,112,119,111,110,104,107,100,103,98,105,112,104,99,105,107,90,108,98,99,106,100,101,112,94,107,110,106,114,112,109,105,97,98,104,101,96,85,84,100,111,90,94,114,111,103,104,105,105,100,105,100,102,88,102,93,109,105,103,116,106,97,100,87,97,116,101,102,113,104,98,106,104,104,110,77,108,102,106,107,101,110,108,109,102,115,102,94,96,104,112,107,120,95,107,92,109,94,99,94,115,108,105,110,99,104,106,102,100,102,101,97,108,101,100,96,92,95,115,89,108,104,90,103,102,119,88,105,113,98,105,108,108,105,108,110,105,104,105,100,103,108,77,117,108,106,115,104,117,103,111,102,107,112,104,100,102,100,111,103,99,108,88,71,105,110,107,100,116,104,104,109,128,108,94,90,103,100,102,101,101,108,99,123,102,109,108,100,98,95,99,107,90,99,106,106,102,104,102,88,101,106,94,98,113,104,109,104,96,104,115,101,106,104,104,95,99,90,104,98,99,104,102,100,101,80,95,84,100,102,87,101,111,96,101,99,103,106,107,113,101,96,105,96,112,109,99,105,103,105,109,103,113,107,117,115,105,98,110,116,96,103,90,112,106,104,94,98,90,86,107,100,106,102,88,105,99,112,108,83,98,120,102,105,101,112,98,98,79,115,99,95,100,72,90,95,102,102,100,95,98,91,96,106,102,107,102,96,94,103,108,98,95,109,123,105,103,104,95,105,95,106,90,106,105,100,99,101,117,103,93,100,94,91,97,103,102,81,106,99,102,98,102,94,107,100,113,95,105,92,108,103,94,98,112,78,116,94,112,92,106,98,111,107,99,100,97,100,98,105,105,99,106,112,108,98,100,95,87,101,96,93,98,94,102,97,105,101,112,108,104,105,102,108,109,109,69,105,98,106,103,115,97,98,103,103,109,101,95,109,87,104,98,107,104,98,103,105,96,99,92,110,100,108,103,97,101,120,98,106,100,101,102,107,122,106,111,95,96,103,113,98,96,117,97,99,105,105,106,95,95,111,95,106,108,96,119,106,107,96,93,103,102,104,104,99,111,109,108,102,111,91,108,96,84,104,97,101,109,94,107,111,102,104,108,101,122,109,105,117,124,109,108,113,103,105,92,101,92,117,94,96,99,95,99,100,107,96,109,100,101,102,104,105,99,106,102,110,107,108,92,107,103,110,95,96,102,101,99,104,108,105,107,100,100,104,102,108,106,110,102,87,101,104,104,110,101,98,110,103,104,105,99,112,84,105,95,102,95,100,107,115,99,100,97,100,109,95,107,109,106,104,107,96,105,94,110,103,90,107,105,99,97,101,99,106,107,113,109,95,104,105,106,110,121,101,105,107,100,103,102,106,102,108,99,108,103,110,94,112,100,108,100,101,95,105,116,114,121,100,102,82,105,103,105,101,108,123,108,106,108,102,100,104,103,102,100,88,100,101,105,100,108,102,105,105,100,100,87,97,105,94,96,114,96,97,98,105,99,114,88,100,111,100,89,120,102,93,99,87,103,108,100,99,112,89,102,104,94,106,108,105,101,104,101,103,115,99,92,105,103,104,76,107,106,101,104,95,105,90,99,109,105,120,102,109,109,97,91,107,100,91,98,98,94,106,96,107,111,105,108,106,113,114,109,106,103,113,100,101,101,103,104,104,113,104,101,110,117,103,89,98,118,112,104,97,112,100,113,113,101,106,117,87,102,120,119,102,95,101,105,107,91,99,104,92,105,99,98,99,105,109,105,99,101,104,102,113,104,106,102,105,106,100,109,94,95,104,106,113,87,105,101,79,108,106,106,105,109,104,118,119,106,94,103,102,102,103,103,106,106,98,99,102,114,97,100,76,112,99,110,96,92,106,103,111,98,99,108,107,95,92,121,131,106,107,89,95,92,117,101,82,86,106,93,105,106,94,101,101,107,102,99,88,86,125,94,94,96,105,94,94,104,106,101,102,104,92, +606.23322,114,101,102,86,86,91,112,94,104,101,88,96,102,103,116,98,96,105,99,110,109,104,97,107,104,106,100,103,102,103,108,106,92,78,99,99,117,103,106,98,102,108,107,81,133,118,106,111,100,120,98,96,107,109,112,93,94,109,111,87,103,104,94,104,103,102,107,99,95,111,108,108,105,103,93,109,105,99,90,105,109,104,102,97,97,95,103,100,100,119,111,106,91,109,108,99,97,104,100,107,94,68,102,98,106,109,106,87,107,89,111,102,101,102,97,107,94,106,110,103,99,99,101,111,94,112,107,113,97,110,94,102,90,118,106,102,103,110,97,103,97,89,88,90,105,129,109,106,113,73,124,114,106,101,96,99,108,110,100,115,104,96,109,101,119,101,102,101,107,96,106,97,112,93,115,108,107,98,107,91,108,103,98,86,117,94,102,100,116,106,100,108,105,105,105,105,111,103,98,107,88,94,95,102,95,114,103,102,103,95,104,122,99,93,102,104,103,111,102,125,97,107,99,102,93,101,88,106,105,107,91,109,102,107,99,87,100,108,116,98,96,97,106,104,100,104,81,100,108,116,100,120,95,106,100,122,97,113,98,120,94,100,95,99,83,99,106,112,102,105,98,105,100,103,118,119,102,112,94,106,105,94,106,103,109,103,87,120,100,116,102,89,108,117,106,105,102,113,106,103,110,108,97,103,97,111,100,107,106,108,94,106,110,107,100,97,101,103,98,108,111,96,103,101,98,108,103,104,80,102,102,105,107,104,91,107,119,119,95,109,91,97,109,108,114,116,101,103,104,91,109,97,105,112,106,110,103,102,104,105,98,111,98,106,101,109,98,108,106,108,102,99,115,114,98,101,98,114,105,115,104,99,86,113,99,107,118,106,100,102,106,101,109,112,102,104,102,103,97,105,108,108,94,103,103,106,102,113,107,102,92,106,102,104,92,96,107,99,88,102,101,100,110,105,91,97,95,98,106,105,103,101,111,104,112,79,106,111,107,101,110,97,112,110,121,109,111,101,108,120,109,102,113,95,104,95,104,101,113,102,99,99,95,108,99,106,112,109,105,101,104,114,105,104,93,101,99,115,102,115,97,106,103,110,107,112,101,103,108,105,104,117,111,106,99,109,112,87,100,110,123,106,111,100,98,104,102,99,113,100,113,119,95,113,104,101,102,114,111,97,105,106,114,95,98,106,109,113,103,102,97,100,112,109,105,116,105,112,107,99,102,99,126,99,116,105,99,108,107,86,104,100,111,111,99,93,85,108,104,104,106,91,99,110,102,105,95,98,108,106,103,107,108,107,110,105,101,111,98,123,102,69,99,104,108,103,90,103,122,102,105,107,120,104,121,113,112,96,108,105,99,116,113,111,97,105,96,92,101,92,110,110,109,105,110,97,103,106,113,95,114,114,101,95,109,94,104,99,98,107,96,109,93,111,98,113,89,102,98,99,107,96,81,111,99,101,101,98,95,114,115,100,115,114,110,91,99,116,112,120,102,101,96,83,100,114,104,100,106,97,108,94,111,102,102,105,112,115,108,111,113,95,102,97,106,100,101,95,108,102,99,105,102,108,106,80,92,109,101,100,105,101,105,105,95,112,112,100,84,111,113,98,109,104,106,108,105,99,105,110,130,115,100,96,111,102,99,105,100,103,107,115,99,91,103,99,111,102,109,111,102,90,94,102,116,98,108,111,108,97,102,109,91,106,104,99,109,105,102,103,105,118,97,101,94,100,101,98,111,100,99,114,94,97,92,98,98,102,101,114,101,105,111,107,96,109,99,99,101,104,110,113,97,122,101,101,102,107,116,104,100,99,87,108,119,108,102,98,109,98,120,100,100,98,108,104,101,105,106,104,98,111,101,109,118,116,107,115,98,104,97,113,109,101,102,102,108,106,108,80,111,101,104,107,100,112,98,100,120,101,103,92,100,109,102,104,84,108,108,96,101,100,101,104,101,103,83,107,112,106,102,108,110,100,108,98,103,104,100,99,110,112,76,103,109,98,103,119,105,94,109,119,113,112,98,99,108,102,95,106,100,108,107,101,100,108,107,124,88,98,109,103,102,107,108,103,88,121,103,114,112,105,105,93,106,113,111,112,98,109,105,109,92,109,101,93,105,98,112,107,115,110,102,104,106,97,97,113,97,110,109,103,91,104,102,103,111,123,105,105,114,102,101,94,97,123,102,108,103,101,86,106,110,104,107,96,104,94,100,115,89,106,112,115,98,111,105,83,107,107,97,109,106,88,89,101,107,106,98,99,103,98,101,110,107,100,114,105,99,110,107,106,109,110,113,114,96,93,105,105,107,104,103,98,103,118,99,101,107,99,102,112,111,111,131,87,99,115,124,112,114,113,142,111,120,113,91,112,130,125,127,117,101,103,127,122,104,121,113,112,110,98,115,102,119,107,109,100,103,103,103,117,115,100,123,116,108,90,94,98,102,104,85,104,117,105,117,111,123,112,120,106,111,99,89,115,108,95,106,119,97,101,97,103,106,118,108,107,100,104,99,109,107,122,112,105,106,91,100,117,101,103,106,113,94,101,112,93,96,113,96,106,102,102,66,103,96,100,80,100,93,104,106,115,98,113,98,108,109,104,100,93,110,107,110,104,103,91,112,104,100,94,105,98,103,111,97,111,105,101,99,107,113,101,112,105,98,88,105,102,105,106,95,99,109,116,109,107,103,93,98,105,106,103,96,99,103,103,102,103,101,108,111,100,85,111,106,114,121,103,110,109,106,111,112,98,99,116,118,102,102,104,106,99,110,91,99,105,113,103,107,104,104,108,106,111,106,113,96,111,114,124,116,91,135,117,113,99,116,113,103,106,124,106,100,89,106,119,99,97,100,111,85,109,97,103,100,109,107,106,107,95,100,116,121,108,83,94,107,109,113,99,109,107,99,107,100,98,99,91,119,109,91,113,105,103,114,91,95,109,109,109,100,109,96,104,110,108,95,94,95,107,99,102,109,119,108,137,106,111,95,99,107,100,95,108,110,107,106,122,83,102,101,101,105,109,94,96,114,113,94,105,112,100,110,107,98,104,94,104,101,126,106,99,99,102,104,105,108,109,117,110,111,99,119,93,106,98,77,105,117,124,109,110,98,94,110,108,104,106,99,102,87,106,117,104,69,109,95,109,99,110,96,80,106,110,106,106,111,112,118,102,103,100,113,104,86,97,121,98,98,115,100,113,101,92,91,97,109,96,106,104,92,104,103,78,100,108,118,107,110,108,113,117,104,115,112,107,102,103,95,108,111,109,88,105,95,104,99,129,100,101,111,116,111,111,95,116,117,96,113,108,104,107,105,97,96,97,102,100,98,110,98,109,102,98,114,117,107,101,105,103,99,105,110,96,106,94,100,84,116,119,97,104,96,100,112,107,108,89,103,105,106,86,107,102,96,104,110,101,103,87,104,103,99,115,107,100,91,99,99,106,98,99,100,109,104,85,108,103,111,97,112,101,96,106,106,101,113,115,103,120,96,113,117,108,86,106,92,101,124,103,97,112,110,96,99,122,102,100,101,93,104,101,111,108,101,109,109,94,98,102,100,115,99,106,100,92,109,90,91,102,116,109,103,75,107,106,108,100,93,109,101,113,116,104,107,104,97,108,99,103,119,97,109,96,98,99,104,105,85,103,99,102,101,111,111,109,95,106,116,91,104,99,98,105,111,102,102,103,101,102,99,90,115,120,108,104,121,105,106,101,96,108,95,102,116,105,102,113,100,99,108,103,109,105,95,106,110,120,105,94,106,92,113,86,103,105,113,94,103,106,100,100,97,100,101,107,113,114,98,100,87,110,97,108,89,97,105,116,97,105,90,99,96,102,106,101,103,96,101,102,101,98,94,107,104,106,92,89,94,103,100,83,98,107,108,100,98,97,95,94,93,96,100,100,101,102,108,103,91,96,104,108,101,95,93,111,115,109,110,96,101,101,105,101,105,99,98,107,100,115,93,83,112,109,103,106,96,100,100,107,97,105,101,92,96,108,106,116,110,107,78,102,115,109,109,100,87,106,103,103,103,96,112,104,108,98,115,109,111,131,103,99,100,92,87,121,80,86,108,97,97,103,100,117,94,109,111,110,96,100,100,97,107,99,108,102,105,96,98,91,105,95,98,109,96,95,107,104,114,105,95,102,109,100,118,99,89,84,97,113,110,89,97,102,93,116,96,98,114,92,98,109,105,94,100,108,95,101,100,91,97,109,103,93,98,107,104,109,89,98,95,94,94,104,105,104,103,121,128,103,117,93,113,101,83,90,97,117,99,112,102,107,100,102,91,102,102,104,130,94,107,97,103,107,97,116,105,100,102,95,103,107,110,91,109,102,102,101,81,108,121,80,106,109,110,118,106,97,102,102,95,105,109,96,106,96,103,104,94,96,109,102,110,102,104,107,108,91,101,121,98,96,104,98,104,95,94,100,91,113,111,87,111,108,106,91,100,102,95,95,109,103,106,104,105,102,105,95,107,93,88,117,102,110,106,110,93,103,90,96,107,103,109,103,99,104,103,104,109,114,98,101,118,99,109,91,104,100,113,121,106,88,105,108,97,96,105,101,97,98,90,103,104,114,113,91,113,102,104,99,98,106,100,106,103,111,89,103,101,97,104,102,109,105,108,107,100,97,105,97,106,103,109,90,91,105,100,102,99,106,104,104,110,111,112,105,100,105,108,113,99,102,103,112,103,97,99,116,95,104,110,105,90,95,97,96,100,117,110,96,95,101,100,101,85,109,116,103,102,104,104,125,80,94,81,91,101,99,105,108,107,92,101,109,76,102,105,102,103,91,109,108,101,78,99,103,107,98,80,108,110,101,104,100,86,94,106,95,99,102,107,99,109,94,103,100,108,97,118,83,98,109,102,99,100,81,99,111, +606.37427,113,121,92,106,87,100,108,103,112,102,93,94,98,97,107,105,113,122,119,117,116,111,102,109,94,101,89,100,113,104,113,104,111,106,111,120,104,99,101,129,93,103,111,121,98,112,98,120,95,102,95,98,108,115,108,101,116,109,110,111,91,104,101,105,104,106,113,104,96,97,113,111,102,113,88,105,92,105,98,103,114,114,97,95,112,103,102,112,95,119,112,109,94,101,104,106,95,112,91,100,98,101,105,103,110,99,108,99,89,101,111,107,95,107,102,100,115,104,111,101,103,99,101,72,102,109,114,83,107,100,98,101,96,102,106,111,110,116,103,109,115,104,108,104,115,106,117,86,105,103,94,100,112,87,100,106,104,92,101,113,95,99,109,97,111,96,105,86,101,107,100,109,108,105,106,118,102,89,103,106,97,106,97,110,107,112,95,92,117,104,107,116,113,73,109,94,103,105,86,115,105,95,102,108,102,93,114,99,114,104,100,100,106,102,100,100,92,104,109,109,115,107,113,111,99,83,102,99,102,108,102,105,104,107,112,102,101,113,105,120,90,96,101,109,103,99,106,109,96,112,105,108,116,101,94,105,99,100,108,109,106,94,104,91,101,108,105,97,112,116,103,98,117,105,107,105,120,112,103,104,91,110,110,100,92,106,107,101,109,105,104,104,111,112,98,103,117,105,113,108,104,101,120,98,97,103,109,111,104,114,95,104,94,106,104,103,111,101,107,107,109,106,110,111,93,105,97,114,102,101,94,94,112,111,100,104,109,104,100,115,98,105,100,108,110,125,112,110,105,115,104,93,105,100,105,97,103,125,109,109,113,109,107,94,109,112,99,102,95,109,100,117,99,107,125,91,104,102,105,99,99,111,96,100,107,79,94,113,107,114,113,94,102,111,95,104,112,108,104,112,100,103,112,116,100,101,114,116,103,102,94,101,99,101,103,103,108,102,109,100,120,95,110,102,117,112,87,98,100,105,112,96,112,104,114,111,104,106,109,113,107,111,98,98,94,119,96,115,110,109,90,95,101,105,105,93,107,106,106,109,91,91,109,105,113,114,112,110,107,109,102,112,113,107,93,93,108,105,109,111,108,105,117,97,107,103,90,113,113,103,107,114,100,103,110,110,114,113,111,103,108,88,109,99,111,103,98,99,102,106,96,107,112,95,115,95,111,98,101,102,96,111,103,107,104,110,114,109,119,114,107,111,108,102,99,112,106,97,113,112,106,107,108,102,116,95,116,105,104,106,105,96,104,104,105,109,116,109,103,106,106,103,107,102,108,107,110,105,96,112,98,92,94,101,94,104,98,106,111,92,106,104,107,111,117,103,104,110,110,111,102,100,111,104,112,110,101,91,111,109,107,106,99,94,101,118,111,104,100,123,109,108,98,108,106,106,95,108,110,111,101,102,113,96,115,108,98,97,102,111,97,95,85,115,75,111,110,107,98,100,101,112,102,115,113,105,115,98,106,116,117,109,107,98,108,106,81,94,105,109,91,109,102,114,95,105,114,98,91,113,111,114,117,109,104,104,109,105,99,107,121,107,110,97,99,107,114,99,109,106,104,111,97,108,106,95,98,105,111,100,107,110,102,98,101,117,107,106,104,103,99,104,99,101,90,97,116,104,120,110,107,99,111,113,99,119,93,116,109,110,112,106,99,102,104,100,109,98,111,105,115,102,109,109,97,107,105,103,110,104,105,101,113,105,125,94,101,110,107,101,109,105,105,116,101,112,93,111,106,103,107,109,90,108,112,104,106,99,114,110,104,107,98,105,109,112,112,133,100,109,100,111,97,106,107,110,100,113,106,102,110,104,93,113,115,112,106,105,107,108,104,106,100,104,119,112,100,107,106,98,105,104,104,105,97,119,98,99,106,102,102,88,106,115,113,104,112,110,118,103,121,121,110,83,112,111,117,95,113,106,117,108,99,104,95,99,103,102,98,100,103,108,104,114,120,105,113,113,85,108,118,109,111,92,91,102,108,95,117,103,101,101,101,109,109,101,102,115,114,108,96,109,110,105,105,106,104,114,97,95,109,105,113,92,103,95,99,113,110,110,119,111,106,105,113,108,105,105,102,103,102,112,104,111,106,111,114,125,110,106,101,113,109,105,96,99,108,113,114,107,108,113,109,100,102,116,103,113,99,110,103,102,110,118,111,94,112,98,95,105,111,119,110,102,102,104,111,101,103,112,100,103,124,103,96,102,114,75,113,103,102,106,106,97,109,120,111,106,108,94,110,105,99,105,95,113,102,105,108,113,109,109,121,99,109,99,108,112,108,106,104,104,99,95,100,104,96,110,115,107,111,104,122,105,98,90,113,112,113,104,119,112,115,121,112,96,105,114,111,116,130,117,105,126,119,128,147,122,121,126,127,131,124,131,103,96,119,123,117,103,121,120,99,118,115,103,116,106,116,100,87,110,107,95,100,107,128,109,101,101,93,107,106,117,109,105,102,102,112,107,113,98,118,123,105,102,113,104,111,109,101,107,123,97,119,116,118,112,99,107,107,83,109,109,110,103,98,105,98,109,102,82,112,113,131,114,124,119,99,107,116,110,107,108,96,109,96,110,106,99,106,103,102,109,105,101,98,121,101,99,111,91,109,106,102,109,110,88,96,104,109,104,109,106,101,111,100,110,109,105,111,114,104,109,113,94,104,102,100,101,92,111,107,102,109,99,109,102,107,120,98,115,112,115,95,117,106,107,111,110,106,106,103,111,109,106,111,102,123,102,128,107,108,114,109,99,102,106,102,107,100,112,109,110,90,113,110,105,99,98,106,121,108,109,112,103,118,111,113,100,112,100,104,112,105,103,102,98,116,110,104,94,98,111,110,106,113,120,103,112,120,103,105,103,100,119,96,104,107,106,106,110,98,127,102,100,110,99,108,119,105,133,105,105,102,106,109,109,109,102,105,116,114,100,110,111,104,84,103,99,114,99,102,107,99,105,105,106,100,99,111,107,104,103,111,112,121,112,112,138,102,103,73,102,119,109,108,92,108,107,112,106,111,108,106,111,106,107,113,128,104,117,113,107,111,108,106,106,111,103,103,117,96,104,95,107,118,102,110,103,102,96,99,107,105,121,108,110,115,103,108,89,94,104,109,93,95,101,107,96,101,95,115,102,119,101,105,105,105,120,102,109,107,105,102,110,116,98,113,106,116,100,105,107,95,95,102,107,96,105,123,115,90,103,100,105,86,110,94,116,100,97,107,108,104,107,103,103,115,106,113,106,113,109,117,105,99,117,109,102,113,108,113,109,94,97,108,110,107,112,116,107,114,108,98,105,100,105,105,113,115,109,113,119,105,117,96,103,116,101,108,108,97,110,116,117,104,104,118,98,98,113,110,104,111,113,103,109,106,104,121,108,110,112,112,119,105,122,107,108,99,106,100,107,98,102,108,113,105,74,98,107,101,102,113,112,119,108,103,98,106,109,113,106,104,102,108,114,95,101,100,107,105,103,99,116,103,117,112,103,108,102,104,106,112,109,108,106,103,97,108,116,108,124,101,104,107,109,96,108,102,106,104,114,98,101,95,110,107,123,108,104,107,110,120,104,106,105,110,107,102,106,109,111,95,111,100,104,106,110,101,97,97,102,98,100,113,114,103,113,88,112,106,104,106,105,104,104,113,102,109,100,107,105,101,113,102,104,104,112,103,106,104,112,90,112,101,106,106,103,109,110,109,106,107,110,103,109,113,101,118,94,104,108,108,88,102,95,101,103,114,99,106,106,112,119,105,121,112,114,98,99,106,100,104,114,106,106,99,113,109,111,106,101,106,106,135,111,100,104,112,111,113,109,104,114,105,122,96,110,98,102,113,104,98,107,109,100,110,108,101,110,108,108,103,102,94,113,101,94,118,109,97,106,94,106,105,112,120,100,101,108,110,106,102,104,103,108,106,105,112,107,117,91,113,107,86,106,103,107,113,105,106,108,107,103,102,112,106,100,99,115,113,104,112,98,99,100,92,109,122,107,90,115,110,103,95,98,105,107,109,103,110,91,124,107,105,106,112,120,112,113,104,104,102,117,105,105,112,104,115,111,101,106,106,102,99,100,109,97,113,100,107,114,110,108,103,111,109,113,108,98,108,98,105,95,118,95,99,110,118,105,103,113,103,111,118,112,91,111,99,107,104,99,100,112,96,117,95,101,104,76,109,104,96,91,98,111,102,99,115,112,103,105,101,112,107,113,102,93,103,99,111,110,105,101,110,101,105,111,92,106,108,101,100,103,102,105,116,110,101,106,121,98,110,95,115,109,95,111,105,109,102,104,106,88,102,106,107,123,101,105,115,116,111,99,103,110,108,112,103,104,106,111,112,98,104,99,108,104,108,113,111,111,102,108,113,106,107,102,105,105,106,98,95,100,108,102,94,96,101,99,99,91,104,115,97,114,117,106,115,104,95,106,111,100,107,112,93,98,76,99,103,103,113,99,108,105,101,105,118,104,107,94,106,109,107,98,103,106,80,105,110,99,106,118,110,95,107,98,107,105,109,106,119,113,101,112,94,104,106,111,102,111,108,102,100,100,105,105,109,96,99,96,112,108,106,103,100,124,97,109,96,111,97,105,104,101,105,103,94,127,97,103,109,108,123,107,89,96,113,104,102,107,102,98,115,103,106,100,98,88,100,108,109,99,110,104,107,100,94,101,111,98,100,104,102,104,99,94,95,118,123,97,107,101,96,109,99,97,103,108,105,99,107,113,96,92,105,127,105,106,106,112,102,109,87,99,106,106,100,101,85,109,111,102,102,105,92,110,99,106,94,103,111,117,92,105,97,103,110,113,101,132,103,109,87,112,112,112,98,84,98,111,110,132,96,94,102,98,92,109,129,109,102,110,98,109,112,107,108,108,96,128,107,103,101,100,108,95, +606.51526,110,108,94,95,113,97,91,118,80,98,102,93,107,106,98,108,105,90,105,108,101,87,102,100,108,106,102,118,101,113,104,98,105,113,126,98,105,105,112,111,113,101,82,90,97,96,97,77,98,77,101,106,106,123,97,101,101,105,105,107,99,122,104,117,122,106,105,89,116,99,105,107,110,111,96,128,94,105,107,100,96,102,112,110,100,109,100,102,118,96,110,116,95,99,126,102,115,91,126,106,95,109,109,99,96,108,98,108,99,100,105,133,110,88,110,107,89,102,121,106,115,103,102,112,110,101,110,112,101,105,98,101,104,90,114,85,105,104,106,100,104,104,97,105,100,107,100,105,88,94,105,99,108,96,118,103,103,107,102,99,101,110,109,101,101,95,106,109,97,86,105,102,102,105,111,102,96,101,102,105,105,100,104,112,107,127,111,92,90,95,91,101,105,105,88,100,110,107,91,104,69,98,101,100,95,116,97,101,115,104,115,115,91,96,101,107,99,101,110,110,113,101,103,97,108,110,106,94,99,103,109,106,92,108,126,96,105,102,102,109,102,102,114,105,102,98,110,102,99,102,116,111,106,92,100,104,100,114,101,113,99,106,108,100,103,109,100,93,105,93,115,109,102,105,94,104,95,104,111,90,102,100,108,101,102,115,95,101,100,94,109,105,123,100,117,110,98,105,98,95,106,103,84,108,99,109,124,108,107,120,102,104,110,99,107,99,106,105,106,139,107,103,96,107,107,103,95,100,113,116,102,102,102,97,98,117,95,105,124,111,83,95,99,97,109,110,100,108,112,111,120,96,92,105,94,109,104,112,105,95,99,98,94,106,96,103,108,101,100,91,106,100,102,106,105,96,101,117,114,105,113,109,103,102,101,92,111,105,88,105,103,91,96,103,104,108,102,103,112,103,93,104,99,103,101,104,94,103,105,112,102,94,107,97,110,102,110,101,114,91,95,100,113,104,100,98,90,103,104,108,104,104,123,104,103,101,102,102,98,106,100,114,106,104,109,102,100,108,97,116,102,108,106,108,108,105,109,92,103,107,106,111,111,128,119,104,129,100,98,83,105,103,112,95,109,105,103,98,101,107,113,99,102,112,107,101,102,104,101,113,95,106,107,109,102,101,96,105,105,112,103,104,96,109,110,99,101,98,105,109,110,101,101,99,99,91,101,100,100,101,96,108,115,102,103,114,103,108,102,96,112,103,103,100,101,114,100,99,101,101,104,96,98,103,99,103,111,116,110,111,105,99,97,103,98,99,83,102,96,113,100,104,100,112,94,106,99,116,102,99,95,108,107,113,106,97,95,99,82,97,107,101,102,97,95,101,96,100,104,106,106,100,116,113,110,109,99,106,110,95,109,107,113,98,103,116,103,123,110,115,100,106,107,111,105,103,106,99,107,106,104,114,88,112,108,114,102,105,95,111,104,117,97,98,97,104,99,99,110,105,95,127,110,102,102,99,98,113,116,115,112,100,100,107,108,106,99,100,104,98,111,110,117,112,85,106,114,103,112,104,108,103,90,105,106,107,110,101,106,109,111,102,104,106,100,101,122,105,105,97,123,96,118,98,106,99,107,105,125,114,97,100,103,75,108,108,112,105,103,104,107,101,108,94,108,101,118,106,101,101,108,112,125,104,109,106,96,101,103,111,99,125,100,108,100,110,107,108,107,97,98,98,97,91,113,102,107,93,108,94,102,106,112,97,105,102,102,99,107,86,103,102,72,107,94,100,95,100,89,97,115,96,96,105,112,93,68,105,101,109,103,105,96,111,100,100,110,106,94,111,113,107,97,113,110,87,112,106,102,97,107,102,94,112,115,119,114,99,100,105,98,103,101,105,105,97,110,105,102,98,86,103,108,112,106,116,101,103,99,104,104,107,114,98,98,108,100,104,112,108,95,114,101,100,103,106,100,101,102,94,112,108,126,118,99,105,100,109,103,89,109,100,100,97,95,105,102,110,104,137,103,109,104,110,91,95,97,102,102,109,96,99,104,95,114,107,107,123,84,96,105,116,101,102,110,101,110,95,106,106,109,110,110,101,119,92,113,96,98,95,107,106,116,102,112,98,109,101,100,102,108,104,102,112,104,88,112,108,122,95,104,104,111,106,110,89,103,94,92,121,101,100,117,120,101,99,101,104,73,110,106,120,84,102,104,118,63,70,96,104,115,111,116,122,99,103,105,103,109,109,102,109,103,103,98,100,113,119,101,103,102,105,106,103,89,97,111,111,99,105,108,96,107,105,95,109,107,100,106,114,109,112,104,103,102,110,99,103,86,104,89,111,102,103,97,104,102,114,106,105,118,112,106,97,101,100,105,108,103,98,109,104,111,91,103,110,111,133,117,123,134,112,127,124,131,137,117,131,110,134,137,127,124,121,108,99,111,107,116,111,104,117,92,104,108,99,101,104,100,92,103,122,102,105,110,117,117,112,99,101,95,94,99,109,122,108,102,106,100,117,108,109,106,104,92,96,112,97,107,99,108,105,98,101,103,108,107,101,109,103,91,106,96,102,112,106,120,102,98,102,115,99,111,95,117,96,107,102,100,107,95,112,105,101,105,103,99,91,104,103,98,99,98,116,111,105,100,113,99,92,106,94,110,100,95,100,109,99,109,108,102,113,106,105,100,118,102,101,103,116,91,105,99,116,98,98,117,91,106,102,107,102,108,108,97,108,110,104,99,100,106,93,106,115,95,115,102,110,107,104,106,123,115,102,97,102,107,107,100,108,104,113,103,116,116,107,107,113,102,98,102,102,100,111,131,100,103,106,115,82,101,104,102,103,107,94,126,109,112,110,110,101,115,100,112,111,104,103,103,100,107,87,106,100,101,99,106,124,100,112,106,98,99,101,111,104,102,110,107,104,107,119,112,112,96,107,105,105,101,103,100,107,110,108,96,108,104,108,117,109,108,106,102,109,117,113,96,96,111,103,102,96,116,108,111,116,124,110,98,101,107,116,100,107,105,109,102,109,102,110,118,103,96,106,113,108,102,109,110,106,107,101,112,110,112,107,107,103,97,98,92,105,112,97,106,100,114,115,109,103,105,105,96,111,108,95,106,102,113,104,103,103,108,103,123,106,108,110,101,100,102,108,103,111,98,105,105,105,117,101,106,98,104,106,106,118,98,114,96,103,99,103,105,101,94,109,108,88,105,106,92,110,116,102,106,117,108,102,92,94,115,98,120,108,107,102,117,100,95,94,101,111,106,105,105,115,107,90,109,90,111,114,103,115,113,104,106,119,108,100,118,105,103,110,99,99,115,93,109,115,106,102,111,110,93,127,117,112,105,98,106,107,113,107,110,114,100,105,106,99,98,115,106,107,106,96,101,120,109,104,94,112,108,109,108,116,118,106,105,111,113,120,102,105,124,97,101,107,106,100,105,113,108,105,99,96,116,101,110,106,104,110,101,121,98,103,97,107,99,105,108,111,102,104,99,98,110,100,96,97,105,100,112,109,96,95,93,117,100,105,103,113,104,101,108,110,110,110,95,104,100,108,102,99,102,109,97,98,104,102,117,101,108,109,111,100,109,110,115,117,109,93,117,110,77,108,106,96,102,88,109,104,117,124,99,119,118,106,106,99,97,104,100,99,104,101,109,121,90,103,110,106,98,109,102,103,115,107,110,101,103,96,97,107,94,108,109,105,99,104,104,87,103,106,103,99,116,100,109,110,106,88,90,94,102,109,113,110,103,100,96,109,101,97,103,101,104,96,102,106,107,105,110,104,107,99,112,102,105,108,83,103,112,91,111,98,103,113,104,113,93,100,100,109,94,108,111,109,95,105,112,94,113,109,112,109,124,113,116,103,95,115,118,107,102,109,108,118,98,91,102,100,113,99,93,109,102,98,105,100,100,109,104,106,113,107,99,102,79,99,110,88,102,112,104,109,121,109,101,105,101,109,112,116,101,101,104,93,103,95,102,114,102,112,97,98,96,108,91,101,109,99,102,101,85,93,113,110,110,108,115,128,96,113,102,116,109,140,114,115,124,97,109,100,117,114,115,105,108,120,117,98,90,103,107,98,98,101,108,99,99,95,108,111,112,120,110,110,100,106,94,104,102,109,108,112,100,102,97,104,104,101,95,104,108,123,99,104,103,89,103,94,94,104,98,118,107,101,109,103,105,101,95,88,108,117,113,105,101,101,109,92,105,95,109,102,130,109,108,106,125,101,113,112,104,109,114,108,104,110,108,107,101,104,100,112,111,102,108,100,102,97,111,112,113,98,117,103,101,128,116,98,115,102,103,98,99,116,102,109,107,96,106,105,104,104,109,106,101,112,110,91,113,110,113,107,107,103,92,102,130,98,109,112,103,108,108,99,99,103,124,113,106,111,107,107,102,106,96,109,94,106,103,113,108,108,109,90,105,104,97,95,121,99,93,110,99,100,114,102,118,105,94,103,105,109,102,109,113,101,116,107,103,99,112,103,101,98,108,99,88,117,103,104,108,97,107,101,111,106,95,97,101,110,109,108,102,111,108,106,105,114,117,105,110,107,99,101,93,99,98,91,107,109,98,113,97,109,105,104,98,107,94,104,121,99,98,88,106,100,95,100,104,74,104,105,100,99,90,109,114,94,102,111,77,109,109,96,108,101,91,115,109,103,111,84,104,101,83,106,99,103,113,90,97,112,108,116,111,98,97,108,95,103,101,97,110,102,119,98,103,115,102,108,91,146,125,105,101,96,98,104,96,97,95,100,113,92,97,94,102,90,100,106,100,101,100,109,109,107,99,106,113,96,103,99,103,106,97,99,107,84,108,112,100,104,105,104,108,109,108,103,90,98,124,93,94,95,94,116,105,104,97,110,96,100,95,108,109,92,105,111,84,106,102,104,76,111,119,91,104,96,102,101,97,103,112,105,105,91, +606.65631,120,100,111,114,113,98,94,103,109,102,99,99,105,96,105,112,96,106,101,100,106,96,106,97,102,104,100,105,103,98,108,105,105,101,108,107,95,88,105,104,95,101,96,108,107,119,115,106,99,90,95,106,103,97,106,104,98,97,107,100,89,101,96,107,105,102,97,114,109,103,107,111,98,109,101,105,107,103,106,103,102,90,113,107,95,100,94,105,95,97,107,101,99,97,91,106,96,107,103,111,111,103,117,115,102,107,99,99,107,98,101,99,108,103,114,106,104,111,113,105,120,100,108,94,102,100,106,104,104,110,106,104,105,94,110,109,97,111,116,97,104,107,98,106,91,99,101,105,101,113,97,106,105,103,95,114,110,106,103,107,111,116,104,100,105,99,105,103,91,96,100,105,99,103,110,103,110,100,95,121,103,90,103,122,115,99,105,101,113,106,88,106,92,140,101,98,108,104,103,108,96,120,91,87,95,104,101,107,101,105,90,114,109,102,102,99,101,110,96,92,104,101,99,105,99,104,102,99,101,106,105,97,97,107,103,98,103,109,97,110,98,109,116,112,103,103,106,100,110,106,93,118,103,101,90,104,108,105,102,80,97,110,103,111,103,102,92,95,94,114,104,103,105,104,109,96,94,109,111,101,99,107,110,102,103,110,93,104,96,109,118,106,104,131,129,91,100,97,100,102,113,103,109,114,95,113,105,105,110,102,104,107,106,97,110,97,113,75,103,101,104,93,114,100,95,99,95,98,99,127,110,99,105,101,105,94,103,110,101,120,103,108,106,102,105,100,107,106,101,96,109,115,104,111,113,115,100,111,112,104,112,97,108,102,104,94,104,103,100,123,106,100,115,104,91,92,126,99,104,88,113,101,106,98,100,107,103,112,97,101,99,97,94,104,99,95,110,110,102,110,105,116,102,114,98,93,98,102,105,94,98,96,108,100,107,92,105,97,101,110,86,103,101,106,120,99,100,103,119,108,99,114,106,103,105,104,105,115,112,104,96,100,82,114,105,113,99,100,107,108,98,107,108,103,119,99,116,105,103,107,100,96,104,105,119,114,95,102,111,96,107,110,112,108,100,103,114,104,111,108,94,112,109,100,112,113,98,101,99,101,109,111,110,100,87,109,95,104,109,96,102,103,104,99,99,116,103,115,93,105,99,107,102,116,117,104,108,102,97,107,107,104,109,108,98,106,107,112,104,114,103,92,106,98,97,111,114,104,108,106,98,88,113,106,110,84,122,100,103,103,108,102,101,111,105,100,102,117,99,105,102,80,108,115,109,100,105,100,97,113,93,105,95,100,98,90,102,95,96,102,99,98,107,100,109,100,103,122,102,93,107,107,124,110,109,103,99,99,123,99,105,119,104,98,108,106,97,110,91,93,116,97,107,102,101,107,100,106,107,100,113,106,117,115,115,115,98,103,117,103,100,104,104,113,109,111,105,92,114,110,108,110,106,109,113,108,107,115,106,114,112,121,101,115,123,103,116,114,104,113,123,116,103,110,125,108,114,101,96,93,84,103,112,107,105,102,105,87,107,112,107,109,110,92,95,100,102,100,99,77,114,108,117,117,107,101,111,121,121,99,109,98,93,99,104,125,124,103,106,105,105,102,92,104,98,107,113,105,102,106,109,123,103,116,113,95,99,78,105,114,107,111,104,115,117,107,103,106,108,103,116,98,100,108,104,111,96,109,114,117,109,96,104,79,116,102,104,101,115,93,103,100,92,94,93,103,102,99,101,92,108,112,110,114,105,110,117,101,113,103,110,104,106,76,96,103,117,101,99,108,106,104,95,114,100,97,113,104,94,111,105,101,92,104,107,102,115,108,104,98,109,103,106,118,101,102,113,116,99,90,104,118,122,101,112,113,103,116,119,110,106,94,106,95,100,97,95,94,106,100,95,96,105,101,106,103,100,105,117,98,93,111,95,99,112,97,95,95,107,106,105,101,99,117,93,108,108,109,111,98,110,111,96,99,104,121,98,116,101,109,105,107,93,103,117,99,101,117,95,101,102,113,95,112,97,99,121,105,97,108,115,104,103,118,92,99,89,113,107,97,92,105,110,97,104,93,95,108,94,104,110,103,109,104,111,87,102,108,95,117,92,100,87,111,109,101,94,109,98,116,102,96,116,109,95,102,109,109,105,106,91,94,114,102,104,111,98,106,91,100,117,93,98,94,95,98,80,120,88,106,95,108,68,108,105,98,103,107,96,108,114,93,110,115,95,114,104,103,95,103,107,108,100,104,109,103,89,101,103,108,101,104,100,104,113,115,106,102,109,122,102,106,100,100,98,109,101,102,105,84,105,111,106,103,106,94,93,98,113,107,104,111,113,97,122,107,115,121,112,106,119,124,115,142,121,135,124,115,147,111,133,125,119,116,103,90,109,112,104,97,112,115,112,106,115,112,106,110,101,121,104,114,93,108,107,100,99,97,108,104,100,109,94,90,108,107,102,90,111,81,113,97,104,105,100,105,94,99,110,98,103,100,113,99,106,108,116,103,111,105,92,118,112,101,106,101,105,100,106,100,124,105,83,113,106,96,106,112,103,111,95,106,109,103,106,109,102,99,109,105,102,88,94,107,101,112,108,106,108,101,97,111,104,110,101,109,106,112,108,113,105,95,101,98,100,102,91,100,108,92,102,100,106,108,81,91,95,102,109,100,101,102,94,102,109,114,102,94,96,96,105,102,110,109,103,113,99,128,104,95,109,114,100,105,104,99,101,102,110,98,116,108,98,103,100,122,103,105,106,108,105,99,100,99,102,102,96,108,100,109,105,87,100,97,99,105,112,105,108,102,107,94,102,91,96,119,111,95,99,129,114,114,101,109,108,101,86,104,93,100,103,106,97,112,102,114,113,109,112,116,78,104,98,109,105,95,107,112,102,109,111,106,97,100,94,111,101,108,105,113,89,115,92,125,100,112,117,104,104,100,96,97,94,113,104,112,101,84,109,105,96,109,98,93,106,106,97,102,103,101,98,103,109,102,113,108,119,98,95,108,99,91,102,110,110,105,101,84,112,127,109,109,108,102,105,103,99,90,94,112,96,85,87,110,93,97,87,110,105,105,120,110,111,115,105,110,106,114,101,96,92,107,99,110,123,103,97,97,104,102,112,99,105,106,105,108,100,100,88,98,90,97,112,108,106,95,99,109,104,103,107,101,93,128,103,99,113,104,105,105,105,105,94,108,110,107,94,118,102,87,102,99,100,102,92,104,100,70,97,95,109,94,98,115,94,97,104,113,101,102,101,95,94,108,95,111,102,99,105,98,118,94,112,107,99,101,102,100,97,98,108,113,120,106,104,114,105,96,96,96,92,102,93,106,126,113,103,99,115,102,98,101,103,99,94,104,108,97,113,98,106,98,94,110,113,106,105,103,92,110,101,103,109,111,111,109,106,101,119,96,99,108,100,106,116,91,109,98,109,105,87,106,94,111,83,99,106,99,95,104,94,117,101,92,97,102,105,93,96,104,107,97,105,103,104,100,92,106,96,103,111,100,118,104,101,107,111,100,106,107,110,100,105,104,109,107,97,106,112,103,103,99,101,110,99,99,113,105,106,96,99,109,101,97,95,112,105,101,102,103,104,99,100,109,109,94,104,106,93,116,94,104,106,101,106,105,106,90,98,95,100,95,113,113,101,101,105,102,102,118,101,102,94,102,74,114,103,106,104,116,116,100,111,110,109,109,119,112,105,109,103,97,102,106,95,101,105,104,95,97,108,100,98,105,129,109,112,102,111,102,106,100,99,109,94,89,103,98,112,98,89,100,83,120,113,88,111,109,110,98,111,108,97,101,102,103,96,96,97,102,99,94,117,106,95,111,104,102,114,75,107,99,91,95,101,105,118,101,108,106,103,101,100,99,106,88,120,111,100,98,108,114,103,107,95,98,109,106,95,104,99,96,116,87,96,109,102,107,104,104,105,101,113,102,109,100,106,108,102,114,96,102,102,98,99,99,112,95,109,108,115,120,113,108,107,101,108,113,105,96,112,103,106,130,97,107,124,98,108,95,115,108,106,98,105,112,97,109,107,91,101,105,103,107,98,105,93,113,100,112,105,113,100,89,94,115,109,105,100,102,107,99,102,110,100,115,99,108,108,94,114,103,88,112,109,104,103,95,115,109,107,100,95,97,105,110,102,101,103,104,98,104,93,102,101,107,94,110,103,95,86,114,96,108,100,94,110,112,102,100,104,97,113,98,112,99,103,100,107,100,98,103,71,108,102,105,99,104,95,92,97,91,108,103,106,112,109,96,95,105,109,105,99,98,98,109,97,98,111,109,103,115,119,103,97,100,100,91,107,108,118,106,102,109,103,95,113,89,103,98,94,105,98,108,94,99,113,106,112,101,88,100,109,116,108,90,102,106,97,99,108,105,110,111,111,105,115,115,109,98,108,94,107,101,96,106,86,95,95,98,105,108,108,105,108,101,98,97,104,97,107,99,96,120,99,112,97,106,116,110,94,92,106,107,107,108,102,96,105,95,89,108,113,109,105,113,103,122,95,109,95,105,110,113,99,97,102,103,104,91,104,101,103,106,95,99,113,100,99,111,100,105,101,102,100,96,95,96,93,99,98,101,108,108,105,110,106,109,111,97,104,87,97,105,103,99,113,101,88,87,116,102,106,111,105,103,95,94,96,91,99,100,101,109,98,90,103,82,103,98,108,108,98,100,101,142,97,86,105,100,101,103,88,127,112,93,94,101,104,102,92,92,102,104,103,108,107,104,99,102,91,89,106,98,108,103,102,109,106,102,104,103,106,105,94,105,97,108,93,100,88,101,86,112,108,96,111,104,107,92,113,93,94,96,87,108,98,106,107,79,98,97,106,116,102,94,97,101,106,101,103,95,99,86,109,108,99,95,91,101, +606.79736,108,119,97,108,100,104,106,96,108,107,102,102,109,98,91,102,105,105,117,103,102,112,94,97,106,106,95,108,109,117,99,92,92,115,116,105,93,94,108,103,95,115,98,93,109,103,98,90,113,109,98,104,107,103,90,105,104,95,112,92,94,99,106,107,92,120,100,99,98,86,121,105,110,100,113,104,102,117,102,100,102,104,100,99,103,94,103,108,90,100,101,98,96,102,104,111,97,103,104,107,98,99,103,94,102,110,102,85,87,101,112,113,90,101,102,104,103,95,103,96,101,102,102,102,118,114,109,96,91,110,111,114,102,111,102,86,103,107,97,100,96,104,95,97,97,91,121,97,100,102,106,96,103,101,102,92,114,95,117,113,111,78,109,107,109,102,103,95,108,106,97,100,96,96,102,112,101,91,99,101,105,108,110,96,106,99,102,92,107,95,103,104,109,110,115,104,102,105,103,107,96,104,108,119,93,95,95,98,105,93,104,100,86,100,110,105,102,102,104,103,102,101,106,102,105,103,106,95,109,114,106,100,105,140,106,111,112,114,105,106,87,105,111,100,99,115,96,117,107,96,106,100,102,110,105,93,90,111,91,101,93,92,98,104,103,99,103,108,93,85,106,96,110,112,118,106,110,99,101,97,94,99,111,102,105,98,98,104,93,110,97,109,110,98,108,111,110,114,112,103,103,113,91,103,112,114,108,122,112,100,106,141,109,113,110,108,99,109,105,113,104,118,103,89,99,113,85,105,106,105,111,103,96,112,106,99,116,112,98,110,111,122,97,96,103,107,108,105,101,114,93,103,83,105,129,95,102,112,105,122,104,101,94,84,93,106,105,106,94,108,108,106,109,105,102,94,106,108,105,106,109,107,108,112,103,95,95,106,110,87,109,88,96,108,112,106,108,103,108,105,90,108,95,95,95,102,114,95,112,99,85,92,102,98,111,102,106,121,108,97,103,100,108,97,101,89,94,92,110,115,107,100,81,96,100,109,103,106,89,104,101,117,102,113,101,102,88,113,97,90,102,103,100,109,103,104,102,102,103,99,109,102,106,105,98,97,99,96,106,105,109,107,106,100,102,98,101,114,101,98,95,101,93,110,98,104,107,113,114,99,103,106,107,107,99,97,107,86,109,88,102,112,116,93,91,116,88,110,101,101,111,109,98,100,106,99,110,108,98,80,103,101,100,105,92,109,112,103,98,127,99,110,106,106,101,101,107,104,108,108,103,118,103,93,128,103,112,84,107,102,106,107,99,102,91,128,109,99,98,112,105,110,97,101,96,105,111,98,120,90,110,105,104,118,105,101,98,111,99,116,114,96,105,92,105,108,111,102,101,100,98,91,93,103,112,105,92,104,95,112,110,103,109,101,106,116,101,102,108,111,94,108,105,97,100,100,111,100,113,99,108,117,104,99,108,106,99,111,107,121,84,108,95,102,100,101,100,100,98,100,105,109,113,102,107,108,102,114,105,107,114,94,106,112,106,117,106,104,117,98,102,100,105,109,93,103,106,93,107,99,100,101,103,105,100,111,107,103,101,100,103,103,104,102,100,97,108,102,112,95,104,104,107,113,102,101,101,106,109,77,99,110,97,107,100,102,116,108,98,99,107,102,96,106,102,96,92,107,111,88,94,97,96,109,95,93,98,124,111,107,95,112,98,102,109,101,112,93,99,112,98,87,102,115,120,99,91,108,102,100,107,127,98,98,105,113,109,109,108,109,103,112,100,98,99,108,93,119,88,102,104,108,104,93,112,105,106,104,95,100,99,99,96,104,90,113,103,99,104,109,109,78,101,108,104,107,105,103,106,103,97,113,90,110,110,100,102,123,95,99,104,102,98,120,111,101,109,107,103,106,120,107,100,100,109,107,120,100,88,87,99,101,118,104,105,91,109,102,112,123,101,112,108,90,104,98,101,99,100,104,109,103,96,95,100,106,120,103,94,105,99,114,125,96,109,92,101,99,90,110,131,107,106,104,98,98,106,100,108,96,104,106,103,102,111,107,96,108,106,113,104,109,104,102,97,111,100,113,97,122,114,103,113,112,118,100,102,108,111,97,111,107,117,101,106,100,105,97,113,119,98,127,107,109,98,100,102,98,107,101,98,103,116,101,103,92,104,99,107,97,114,111,109,106,100,110,102,104,89,102,95,104,115,100,111,109,112,93,95,96,107,92,116,108,104,101,99,111,101,95,101,100,112,107,101,105,110,102,110,98,87,97,102,98,93,105,92,107,99,108,103,104,104,98,105,113,95,105,107,103,100,99,117,84,105,106,99,103,95,101,106,105,101,109,92,106,98,116,114,107,112,96,101,102,98,108,98,111,103,116,110,101,106,99,109,98,104,116,122,110,118,117,111,106,129,132,142,112,131,127,116,118,120,119,131,116,108,111,115,103,110,107,83,101,113,98,95,99,96,94,106,110,106,107,95,90,102,102,107,108,106,104,98,98,103,102,104,106,93,108,115,102,93,90,99,100,107,100,109,109,113,100,111,97,98,87,107,112,101,110,107,119,110,100,104,96,121,110,96,104,112,102,124,96,119,106,96,110,110,99,108,109,112,110,105,107,106,109,106,106,104,105,84,108,99,112,113,104,110,107,109,113,101,113,113,103,122,97,100,101,100,94,109,99,97,109,107,117,113,110,109,107,102,99,111,104,102,99,105,102,106,106,98,106,79,99,98,98,104,100,102,109,102,102,93,106,102,81,101,98,102,111,103,114,106,103,104,97,92,110,83,104,93,114,101,116,104,118,101,95,94,112,104,101,102,97,90,74,105,103,93,113,106,108,112,91,104,100,113,95,108,108,104,102,105,101,104,103,102,101,105,110,97,97,102,101,109,108,90,99,102,87,95,104,100,106,102,102,108,106,108,101,102,122,94,97,107,108,112,93,102,102,109,110,107,106,101,105,118,109,91,99,102,102,94,111,109,102,101,109,107,103,92,104,95,90,99,99,100,96,96,98,102,83,101,120,109,105,118,106,109,101,101,96,113,84,109,103,100,119,96,104,94,97,109,109,90,101,113,100,108,107,107,103,94,100,105,106,110,100,99,126,103,111,100,76,91,108,110,95,111,109,108,101,112,105,118,90,102,96,85,108,102,112,107,112,91,105,96,100,109,102,96,91,98,100,102,110,94,105,108,106,100,109,101,99,92,92,112,104,105,106,99,102,102,107,108,126,106,96,97,102,100,98,106,89,105,115,88,106,105,109,97,100,104,89,105,101,108,97,105,103,103,98,115,96,104,98,109,98,94,95,96,100,91,110,86,93,105,96,98,96,109,101,120,102,103,122,106,106,123,106,98,100,106,114,78,90,132,95,102,115,111,99,94,96,111,107,96,89,105,116,123,106,96,109,105,99,95,100,117,103,99,117,128,108,111,106,107,105,90,108,107,102,102,102,116,103,102,96,97,113,113,98,96,94,95,100,98,114,108,104,100,104,101,104,99,109,104,117,108,92,96,106,113,99,106,112,106,98,98,108,99,107,105,93,98,101,102,98,113,106,104,108,101,103,116,94,94,103,105,98,106,102,108,114,84,103,106,119,107,88,104,101,109,102,109,96,106,100,94,96,91,105,100,102,99,98,104,100,87,94,102,99,113,92,108,109,106,105,101,106,102,109,97,100,99,95,113,114,103,116,103,111,109,105,93,123,105,108,99,111,108,102,102,101,98,103,111,102,101,97,111,102,105,108,102,102,88,109,103,107,69,101,101,106,106,103,66,101,105,82,109,107,101,96,115,109,99,106,108,121,111,107,107,108,111,95,100,108,73,108,112,106,102,99,106,106,109,110,121,84,100,106,111,97,110,83,93,107,95,94,113,101,102,101,107,100,102,108,101,100,101,96,91,107,105,97,85,105,99,103,95,116,102,96,107,90,102,102,99,100,96,94,97,90,108,95,102,107,106,89,98,109,99,101,102,117,111,105,106,105,99,118,94,104,106,101,102,97,113,95,101,103,102,102,94,110,95,109,105,106,103,108,105,97,111,88,112,103,100,114,96,111,104,120,103,99,112,107,103,107,89,98,96,109,101,113,101,113,109,104,89,108,98,94,112,106,98,97,103,91,104,104,103,104,104,117,106,107,85,98,102,113,96,111,103,103,116,92,113,100,114,102,98,104,95,91,105,108,103,107,100,93,102,105,106,103,93,103,96,97,109,95,115,112,100,94,104,102,114,95,121,98,110,96,109,107,97,86,101,100,95,95,110,106,116,96,93,114,102,117,98,86,110,92,98,88,107,105,110,101,116,112,99,96,105,92,95,104,103,109,112,101,99,99,103,105,109,103,111,106,99,102,109,98,86,84,88,116,113,97,100,96,102,101,91,102,112,103,95,102,107,100,113,104,113,100,98,106,97,102,99,95,77,103,112,99,71,107,107,93,98,119,110,108,107,103,94,92,106,99,97,93,103,104,85,100,101,103,87,113,102,96,104,97,95,106,107,104,105,102,104,105,93,115,90,116,101,110,96,106,98,106,103,90,127,99,110,88,96,97,99,109,106,117,118,109,102,103,95,99,89,98,101,91,104,97,105,136,101,102,110,107,102,108,105,100,92,103,101,110,105,104,96,97,103,98,105,110,101,105,95,109,102,98,89,112,115,103,101,105,104,98,94,72,105,118,104,103,87,102,103,107,93,95,99,94,97,105,98,107,113,110,109,128,111,113,106,94,109,111,106,96,97,102,89,102,117,99,93,100,96,104,105,106,111,103,109,98,107,106,93,97,111,98,96,110,116,100,101,94,98,106,104,97,99,109,94,98,106,113,99,104,102,108,109,104,96,101,103,84,95,96,112,103,87,120,100,97,103,108,113,104,95,106,95,81,106,108,102,107,88,101,103,87,98,106,112,87,105,102,98,102,107,100,104,98,96,108, +606.93842,97,106,71,102,103,101,115,101,96,107,101,97,75,96,107,98,104,125,112,104,91,116,87,102,101,108,99,97,112,120,107,102,111,109,106,109,106,90,96,108,109,103,105,100,107,104,105,90,118,109,125,104,106,100,113,95,113,100,103,102,112,97,110,72,106,81,93,103,107,107,103,111,103,117,106,107,114,100,112,117,103,104,106,109,99,73,100,105,95,104,112,105,120,104,104,97,93,95,112,107,113,112,91,112,106,103,110,102,107,104,107,101,103,93,103,104,115,103,116,92,106,112,101,112,100,115,109,114,96,118,101,108,109,111,114,109,97,114,121,104,109,130,101,105,96,99,106,116,99,106,104,108,108,96,109,90,98,103,110,103,102,91,102,108,113,110,107,105,117,103,114,87,108,108,108,109,108,93,113,103,99,107,92,99,111,99,114,101,106,103,103,99,106,112,91,112,108,106,113,105,113,109,118,108,114,102,107,112,111,116,102,102,115,108,110,94,101,109,104,108,106,107,102,110,109,113,97,118,107,106,103,95,109,108,118,109,101,110,117,101,107,106,102,93,101,99,107,103,102,102,110,97,113,109,98,109,103,113,107,117,105,108,101,117,99,102,109,100,92,95,106,111,117,105,106,102,95,108,100,103,115,111,102,106,108,105,105,101,114,110,94,105,110,110,97,118,108,102,107,114,92,100,99,119,105,114,112,106,91,102,100,109,101,100,102,103,113,112,95,111,109,110,107,111,103,99,99,104,118,137,90,120,101,103,108,103,101,111,107,102,103,92,110,102,94,123,123,105,104,101,111,99,114,123,81,105,107,117,112,112,113,109,96,107,95,99,117,106,103,109,111,106,107,87,106,87,113,107,109,102,107,129,113,98,119,99,103,104,110,102,107,106,96,102,122,101,94,103,98,107,104,108,104,93,114,109,101,115,111,96,109,98,106,99,109,107,92,103,111,102,109,105,104,95,101,99,114,98,97,120,97,110,111,115,81,111,96,115,112,103,108,102,105,107,106,111,103,109,101,105,105,102,107,107,110,116,107,105,114,116,108,101,103,113,112,100,106,107,127,108,91,105,110,115,95,100,104,106,127,103,96,113,121,120,99,104,108,86,104,103,109,94,106,107,95,99,106,80,109,101,109,115,112,103,99,91,95,108,103,108,113,106,95,100,104,108,100,97,109,112,108,105,119,106,105,101,99,98,103,104,108,104,100,104,102,113,94,102,121,113,109,116,97,100,96,111,107,96,109,105,116,116,102,99,107,113,102,108,104,108,111,104,98,105,109,103,129,112,118,108,115,92,103,96,94,109,105,108,105,125,121,108,100,111,114,107,111,116,109,121,103,115,101,104,109,100,113,104,99,94,101,82,113,108,112,109,98,89,103,96,117,114,100,93,109,99,109,105,110,109,108,109,107,105,101,114,101,120,103,103,111,107,114,110,103,113,100,95,99,104,119,113,107,107,106,101,95,106,121,117,94,86,114,95,101,106,104,117,101,106,100,103,103,105,90,108,112,112,103,105,117,109,110,103,106,115,108,89,111,107,115,107,111,108,100,100,99,108,90,107,112,117,113,113,111,107,105,124,113,97,108,116,106,106,102,110,101,106,106,108,118,125,112,109,99,101,114,105,99,90,111,100,74,104,115,109,108,113,100,111,98,103,108,66,99,108,105,100,119,105,99,104,104,108,105,105,110,106,104,105,117,109,110,96,100,105,95,111,94,103,113,103,95,111,104,112,106,92,112,104,107,119,107,107,109,107,96,99,105,91,109,111,111,106,93,115,100,118,112,108,110,130,109,107,106,105,88,103,99,108,114,112,106,111,113,103,106,110,108,108,113,107,122,107,114,110,111,123,107,99,110,114,110,119,106,111,107,98,111,109,103,103,104,105,108,99,120,96,104,107,109,115,110,119,103,99,64,107,104,105,98,105,101,103,100,116,117,119,97,116,108,112,100,113,112,101,102,107,109,103,110,90,103,106,98,96,110,100,102,98,100,104,103,108,111,113,114,111,106,91,110,105,104,104,105,105,105,107,100,124,106,102,119,103,94,94,104,116,109,115,107,101,107,104,109,110,104,108,97,99,121,103,108,107,106,114,111,105,105,103,112,106,116,107,99,111,105,96,108,99,122,119,108,114,87,110,105,104,92,109,106,107,116,113,117,105,108,99,102,95,103,112,117,96,104,116,113,98,106,114,116,108,110,101,107,103,114,105,100,113,106,100,110,107,107,111,104,102,108,107,120,99,99,111,117,97,95,104,113,117,102,103,114,107,102,96,86,91,104,99,114,106,91,109,107,111,119,123,91,107,96,107,101,91,100,92,103,115,102,103,110,113,113,93,102,101,125,138,112,122,111,140,124,127,110,128,119,122,118,137,115,133,114,97,103,111,111,104,115,99,133,112,103,106,99,108,104,113,105,111,102,122,103,103,91,118,110,106,100,113,111,112,118,110,103,93,114,129,114,107,91,102,98,115,95,110,100,105,120,103,108,107,93,104,108,110,111,112,114,121,99,106,100,122,97,97,96,99,108,102,113,108,110,97,107,102,98,115,95,106,105,107,106,95,108,90,109,108,105,95,104,93,104,110,103,109,110,100,107,102,110,109,116,103,106,115,117,106,111,114,115,102,105,123,106,108,106,102,106,101,97,107,102,100,110,97,98,101,113,113,110,78,104,118,113,105,103,106,102,106,86,97,118,106,104,105,111,107,94,106,106,102,105,93,98,112,99,110,107,104,105,101,101,94,100,110,105,109,110,113,107,115,99,102,118,104,103,103,102,108,108,117,100,106,107,85,107,81,95,101,120,95,121,93,102,107,105,107,115,108,102,107,106,124,98,102,96,97,106,111,94,62,104,99,109,113,92,92,95,113,101,106,106,105,112,106,97,110,110,99,110,100,104,97,106,96,72,110,107,112,99,96,107,110,106,101,103,109,112,96,110,105,105,124,102,97,99,106,104,99,97,108,99,94,104,102,105,110,97,99,111,95,107,103,102,112,111,105,108,99,113,99,117,116,116,102,104,91,99,102,104,109,107,96,107,95,121,105,109,108,103,113,109,112,105,102,118,111,90,91,109,106,109,108,102,105,106,107,105,112,108,103,108,101,103,100,100,102,101,105,113,96,104,111,98,92,108,118,101,99,105,99,107,91,102,111,109,103,106,111,101,96,86,98,103,107,99,107,92,95,108,111,109,103,100,100,104,98,103,101,108,104,108,105,89,88,108,95,103,97,99,104,124,112,106,106,101,112,104,87,98,109,106,102,101,104,108,98,87,109,105,105,107,82,118,116,109,90,99,106,98,101,118,104,110,105,102,94,104,110,105,94,100,97,116,102,106,100,99,99,95,106,97,102,93,118,105,101,108,89,116,104,101,117,108,99,102,112,113,101,86,123,108,98,106,110,98,130,99,99,95,108,102,101,110,98,103,106,101,104,95,115,104,98,100,112,103,95,94,96,120,109,103,93,107,100,107,88,100,106,98,102,99,103,112,104,97,100,112,106,106,94,99,104,105,101,92,112,93,98,112,93,102,98,107,104,111,114,104,106,104,88,105,112,109,108,101,102,109,94,94,115,114,104,102,104,113,100,103,99,108,111,96,103,104,104,116,110,116,95,82,98,103,102,102,116,80,97,104,111,109,100,106,109,108,104,85,108,105,102,111,115,108,101,104,103,102,105,94,88,94,106,102,111,94,103,131,100,111,85,105,108,96,101,108,105,108,110,105,100,105,104,100,105,103,98,108,106,115,115,112,109,107,116,88,101,102,101,113,98,102,116,102,114,113,102,98,101,98,103,109,103,100,98,111,104,109,108,102,98,104,91,90,99,107,116,90,108,107,103,100,104,100,93,118,102,103,94,109,114,107,115,103,123,98,98,108,104,103,101,113,108,104,109,108,114,101,119,101,109,103,99,97,121,109,108,112,98,106,112,102,116,99,113,97,101,96,105,104,101,106,109,99,122,106,100,100,98,111,121,102,108,93,103,101,91,120,105,108,103,124,97,111,106,110,110,108,96,99,108,109,103,100,107,101,104,108,114,99,99,105,100,124,88,106,83,105,119,94,93,115,102,88,105,107,109,117,107,113,102,105,116,106,104,105,113,103,112,111,109,94,110,109,123,95,103,108,102,106,103,104,106,117,96,101,120,96,103,107,90,108,107,103,122,99,120,103,102,99,115,107,98,98,108,100,112,117,105,102,105,112,103,108,107,108,100,103,107,102,107,97,108,94,110,113,113,103,106,113,99,92,95,106,96,104,82,102,96,105,95,101,96,108,97,109,101,102,95,97,104,111,114,115,94,109,109,104,134,106,99,106,85,98,115,106,99,109,94,112,98,98,107,111,99,92,99,116,111,104,96,84,99,115,114,113,101,86,113,111,113,98,101,98,118,99,105,100,107,104,108,120,104,88,110,103,94,94,103,98,98,114,109,104,115,100,101,108,105,115,105,107,102,115,102,108,105,101,104,102,102,100,98,100,108,107,115,109,113,97,95,116,111,104,93,107,96,105,110,112,97,103,106,91,98,112,100,112,98,120,117,109,106,110,103,101,112,100,106,102,113,104,103,108,99,107,104,113,91,105,100,104,117,113,102,98,106,110,121,99,91,106,102,101,127,110,99,95,121,112,92,88,109,114,117,102,98,99,72,104,97,101,105,112,104,110,89,102,98,103,91,101,102,108,104,101,101,113,99,96,88,98,110,96,103,106,97,101,105,105,103,109,109,112,105,100,107,109,104,105,103,102,106,124,108,104,108,105,108,106,97,105,102,92,101,99,95,97,92,106,104,114,104,118,87,118,106,101,104,103,106,111,106,103,109,92,112,100,102,107,107,110,98,111,100,96,102,102,103,115,88,115,76,112,100,92,127,112,80,109,104, +607.07947,88,116,87,93,93,118,106,106,101,104,93,103,97,110,108,106,96,97,101,112,101,87,95,100,101,98,103,107,104,105,93,99,94,105,115,104,100,106,91,99,108,101,101,101,103,108,87,114,101,100,105,95,107,92,103,96,102,123,102,101,102,117,106,105,99,107,114,101,101,95,108,92,91,102,96,106,102,92,110,94,107,91,106,101,105,97,103,114,95,101,105,105,91,90,99,105,104,100,105,105,107,107,100,114,115,105,106,77,116,109,102,103,117,105,111,107,117,105,92,99,104,114,97,78,106,106,105,83,104,107,113,121,110,96,102,107,105,103,107,99,130,105,97,92,112,109,104,107,110,94,105,113,107,92,106,85,114,100,105,104,131,101,121,91,116,110,92,112,110,99,108,102,99,110,102,94,104,101,97,100,109,110,102,98,109,116,106,97,100,89,101,94,120,110,100,109,113,97,104,113,106,114,97,120,112,97,108,98,128,96,99,105,105,109,106,100,113,111,85,92,103,115,102,102,103,108,111,100,112,106,101,118,99,100,114,113,102,90,100,101,100,109,103,114,89,104,98,119,100,98,103,106,107,109,97,100,99,105,104,111,95,109,109,94,104,100,104,105,109,107,114,101,119,106,110,102,113,111,104,100,103,104,107,122,99,95,91,106,112,118,109,112,110,102,98,108,106,122,107,108,115,108,108,108,102,110,103,98,107,106,98,100,108,120,106,94,105,96,108,91,106,98,113,115,104,104,104,105,111,108,104,112,105,106,110,104,98,106,105,98,113,98,101,101,92,104,99,112,109,99,104,109,99,107,101,113,103,111,108,103,106,100,106,102,103,101,99,106,125,103,118,106,116,109,102,91,107,110,100,115,91,112,94,89,105,104,97,110,122,108,109,95,77,109,107,98,97,116,101,107,98,97,79,104,109,117,109,97,110,107,103,109,103,113,109,101,106,105,110,97,97,114,93,100,92,99,102,105,113,116,108,109,107,110,114,103,105,111,101,98,100,105,99,112,109,111,106,103,108,95,105,104,106,96,103,97,103,107,107,107,92,121,101,96,106,113,112,98,101,105,103,112,110,94,113,106,97,126,108,99,103,107,108,79,95,111,99,92,106,133,100,106,111,97,92,96,100,81,120,110,107,110,111,104,104,102,97,107,108,100,115,105,103,99,122,108,78,106,107,103,108,99,107,113,106,108,106,117,107,115,99,106,99,109,104,112,105,99,109,106,105,105,89,77,107,101,94,101,104,99,106,120,104,91,88,90,109,112,122,105,100,110,105,108,106,100,85,106,95,106,93,91,118,102,105,103,102,104,113,98,103,111,96,102,128,95,109,106,99,106,115,112,95,103,102,121,118,109,124,99,90,113,96,112,98,106,100,107,114,108,101,107,101,108,102,94,97,102,104,105,107,109,114,104,113,109,101,119,108,108,98,114,108,98,106,111,97,103,111,103,96,105,107,103,111,98,122,110,107,108,106,110,114,118,101,108,94,102,88,110,102,98,103,95,84,104,109,116,108,104,102,116,89,104,103,104,104,109,96,106,108,108,127,98,89,109,94,94,115,108,118,91,104,107,106,111,112,118,104,92,104,107,106,103,113,114,114,105,102,103,107,91,109,101,89,106,107,108,96,97,119,96,99,113,117,99,102,94,99,108,100,107,106,98,96,109,110,101,104,103,99,103,110,103,102,105,104,97,111,102,119,99,103,94,107,105,99,111,113,103,105,102,98,105,100,103,97,85,101,98,102,101,109,100,102,111,98,106,105,102,104,101,102,111,99,107,107,103,107,103,97,106,95,114,103,113,104,93,121,104,109,100,110,103,107,118,111,96,111,107,98,97,110,103,111,100,117,101,116,67,109,104,117,94,104,115,106,117,113,104,113,104,114,106,109,100,105,106,111,100,103,98,99,110,107,103,105,105,107,102,100,96,106,97,95,106,107,113,113,103,116,98,105,118,109,114,104,113,87,105,113,108,111,105,102,102,110,113,107,93,107,106,109,106,105,101,91,110,102,104,111,109,107,99,96,100,110,109,105,103,98,107,108,114,118,103,94,118,105,104,104,77,115,121,111,127,108,103,117,100,95,94,79,104,106,103,95,103,105,100,102,115,109,96,116,98,110,104,104,99,103,97,116,98,114,94,97,106,96,95,108,102,101,103,109,96,99,99,92,110,109,115,98,103,106,99,92,96,100,91,108,91,102,103,100,111,107,101,94,110,103,100,110,117,104,101,111,97,99,111,103,102,94,97,100,91,100,117,96,120,99,104,112,118,95,110,99,116,115,107,94,95,96,97,98,109,121,111,107,105,109,114,108,105,102,107,91,85,104,110,98,104,105,103,116,103,110,127,122,119,127,129,137,121,135,127,118,113,133,113,123,131,117,108,116,118,110,108,102,125,109,105,99,112,105,110,107,104,114,105,94,103,99,104,109,118,114,117,103,114,111,91,105,99,119,110,102,94,115,102,106,91,103,90,101,109,113,106,112,124,106,106,93,100,128,106,93,111,112,103,112,114,110,116,101,102,98,108,102,109,106,91,108,125,114,102,113,107,99,100,103,105,107,95,101,112,105,93,100,103,105,100,101,118,96,107,105,99,100,98,116,97,116,105,132,108,91,107,102,77,98,101,93,85,99,112,109,102,105,99,97,105,122,108,113,117,105,101,108,94,106,103,106,104,112,108,103,102,105,105,106,105,110,98,100,111,98,99,104,110,99,108,104,95,95,101,111,104,106,113,95,106,98,107,123,119,106,103,108,101,94,96,98,100,99,107,94,105,103,113,111,109,91,102,95,107,106,99,112,96,113,106,110,102,97,108,122,120,103,108,112,105,111,103,98,100,109,102,98,104,107,110,99,117,121,99,95,90,98,100,99,107,99,92,110,100,100,107,100,99,98,125,109,102,104,118,99,107,92,115,100,103,113,99,90,102,101,71,128,105,112,100,113,113,95,94,103,116,109,106,109,95,105,99,91,119,109,101,111,88,101,109,108,102,101,97,128,104,98,106,108,103,102,112,108,111,79,107,94,109,96,100,100,104,109,98,115,96,109,120,100,112,85,101,99,89,137,115,111,88,112,116,110,105,111,105,95,109,99,102,107,98,91,103,100,106,108,104,106,102,105,102,94,115,112,105,95,122,106,98,98,91,106,101,120,111,106,98,114,114,94,95,103,95,110,92,98,107,105,102,103,104,95,102,103,99,97,100,104,109,104,97,107,110,98,102,104,104,106,107,120,105,100,94,102,98,94,114,104,101,105,100,102,106,108,95,102,107,96,94,91,102,100,111,103,99,100,134,96,98,99,106,99,113,102,100,100,94,97,95,95,108,100,92,113,105,104,101,106,98,104,107,109,113,102,104,96,103,108,105,104,101,97,109,96,107,89,94,100,100,101,96,101,101,87,102,106,100,97,91,103,102,99,105,102,104,99,95,113,102,98,91,109,94,111,106,104,108,103,97,94,110,95,91,109,92,107,106,114,103,106,99,108,105,104,104,99,112,95,98,105,99,95,107,97,109,91,101,98,108,109,102,99,106,94,95,105,116,99,117,98,105,103,105,101,106,108,109,109,95,102,98,103,101,109,114,112,106,111,105,106,102,111,92,97,98,99,105,110,89,107,106,109,101,103,98,108,101,102,92,108,107,113,108,109,123,103,97,104,105,107,108,99,102,103,108,105,104,94,113,101,107,106,113,101,95,102,102,97,85,109,105,105,97,101,101,87,104,84,96,97,93,92,100,108,105,101,93,99,102,103,104,105,94,96,107,94,88,99,100,98,102,100,110,102,104,102,117,104,107,112,101,118,95,97,89,104,91,95,113,104,98,97,96,125,108,108,102,109,110,96,101,100,106,96,108,104,96,102,101,99,105,100,103,95,110,117,94,72,97,95,99,106,105,103,98,98,96,99,101,105,102,110,104,105,120,91,101,105,108,103,96,104,107,101,102,111,97,106,95,116,107,99,101,99,102,109,94,92,102,96,106,105,98,111,103,109,112,100,96,109,95,102,93,107,107,116,107,119,101,103,97,103,121,98,101,100,95,110,94,93,106,115,79,99,89,99,113,98,104,112,103,98,113,111,98,110,101,94,100,79,106,94,105,108,108,112,108,114,106,124,109,95,94,118,106,104,103,100,65,97,94,91,100,99,112,110,107,95,97,102,103,109,108,94,115,125,121,102,103,110,101,97,110,107,113,102,96,100,116,115,91,91,104,91,90,96,106,104,83,106,124,95,102,104,113,106,100,108,97,106,97,111,99,108,112,107,105,93,95,101,116,102,107,93,96,100,97,108,109,101,103,107,113,109,98,108,112,105,107,120,100,101,105,95,91,107,95,99,100,104,107,100,110,102,95,115,106,103,102,107,99,100,76,118,104,107,97,102,101,108,96,102,106,100,107,94,99,113,90,103,103,114,100,108,102,98,113,100,105,84,113,72,106,109,97,103,95,107,103,105,132,95,96,99,112,100,92,96,110,109,94,87,103,104,97,95,101,99,102,97,87,108,81,102,109,104,104,106,107,99,95,99,106,101,95,101,92,115,90,85,94,114,108,95,117,120,102,97,104,104,96,111,99,109,100,104,102,104,110,103,86,111,111,103,94,102,118,101,108,112,101,98,109,106,93,112,96,115,97,114,98,103,104,103,96,112,91,107,104,102,101,112,105,100,108,109,97,110,91,108,100,103,105,100,94,99,105,82,100,83,121,95,98,96,111,105,104,105,101,104,107,100,104,90,97,105,110,99,102,96,102,105,91,102,112,115,104,97,99,110,140,104,90,109,91,104,99,101,107,103,94,99,106,115,100,99,112,98,108,108,99,98,103,77,102,104,110,107,95,106,96,108,101,96,102,83,110,98,99,88,105,118,110,93,120,107,90,94,101, +607.22052,104,94,88,79,98,99,108,114,102,110,95,104,102,92,112,99,109,115,104,96,106,100,105,100,100,105,125,91,107,106,101,103,102,109,113,117,105,94,105,104,102,107,98,96,90,101,101,109,105,102,105,107,104,109,109,95,94,117,93,95,112,105,102,98,97,81,113,110,110,91,110,128,95,116,107,86,102,88,91,102,102,106,100,108,95,94,99,104,108,109,120,109,95,97,92,114,125,90,97,99,97,103,101,90,103,85,91,96,93,81,99,97,107,94,120,110,98,108,105,104,104,78,101,97,108,111,118,99,106,101,106,90,100,105,98,95,85,101,104,105,96,116,104,105,73,103,102,109,89,96,112,105,105,100,100,102,101,102,109,84,98,97,105,98,101,85,110,99,110,98,84,115,114,92,99,110,103,99,107,109,94,98,104,107,98,105,103,129,120,103,100,99,102,99,97,109,90,97,109,101,105,120,112,101,105,103,103,102,119,114,101,92,102,109,99,108,104,108,92,100,98,104,102,107,110,98,100,106,109,115,105,102,113,107,116,113,108,108,107,101,106,105,110,94,99,102,105,114,93,94,118,107,120,101,100,104,108,98,102,87,108,85,119,95,110,79,102,107,104,114,105,105,97,106,99,103,109,110,104,93,91,113,100,104,100,108,102,99,95,109,108,100,106,102,107,114,126,105,99,101,101,100,112,105,109,104,95,106,99,102,72,108,107,105,104,100,113,103,105,91,100,99,70,105,87,98,100,97,107,111,104,92,106,108,105,101,100,101,106,103,105,101,78,97,105,101,102,114,115,112,103,112,106,116,108,105,115,110,103,109,105,105,102,97,109,104,111,107,104,103,109,97,99,110,104,99,111,111,108,103,108,118,102,108,104,99,90,109,103,99,103,96,92,109,96,96,101,107,105,117,109,100,97,94,95,99,105,105,111,100,95,104,114,97,104,87,99,102,114,103,112,109,106,105,96,102,101,94,105,108,95,112,97,96,103,104,95,112,85,108,104,110,107,95,101,99,104,93,105,112,101,100,105,104,110,112,112,99,111,99,112,115,117,104,110,101,100,113,114,109,114,115,104,96,108,87,109,114,107,107,104,99,97,112,106,106,108,112,105,104,99,113,100,105,99,98,107,99,109,99,92,111,108,94,109,96,104,102,110,110,113,106,91,110,118,114,108,102,106,91,101,101,113,95,101,105,112,107,105,104,96,94,103,107,98,102,102,108,114,109,99,94,96,100,103,102,111,111,106,102,112,103,101,104,98,103,113,110,105,105,109,111,101,104,103,97,100,99,95,95,93,94,105,117,109,95,106,98,104,104,110,91,108,101,112,87,110,113,119,94,112,114,105,105,117,118,104,92,118,106,100,102,108,97,116,110,99,105,99,97,106,87,78,118,113,102,97,104,115,114,105,96,99,103,106,98,101,117,114,111,118,107,105,103,97,101,108,94,105,102,106,110,78,105,108,98,104,103,98,104,108,114,101,112,102,113,117,114,105,105,106,114,93,113,95,97,99,89,72,101,106,108,102,104,92,104,107,108,109,109,107,105,103,94,112,100,96,102,91,112,113,106,108,128,106,99,102,102,92,91,92,106,101,102,104,108,104,88,100,96,112,98,112,99,101,117,105,114,106,108,101,96,105,113,105,105,99,111,105,94,105,106,105,112,118,113,99,112,106,91,94,100,99,102,105,103,108,114,94,120,109,110,114,99,102,99,102,97,103,117,110,104,99,100,91,104,95,105,109,107,103,102,102,108,105,108,121,111,108,88,111,109,123,98,110,104,120,108,99,117,122,100,107,117,112,111,107,99,106,99,107,126,108,100,107,114,117,99,109,96,113,111,99,94,104,113,104,112,95,99,101,113,110,99,108,111,92,99,100,107,105,108,107,105,105,98,97,110,100,99,119,110,98,106,103,101,101,97,111,92,103,87,111,106,104,98,104,95,98,98,102,101,97,100,106,111,83,102,113,109,109,125,100,113,92,103,107,110,101,107,108,97,104,113,104,108,117,105,116,102,100,111,95,121,99,98,99,107,93,107,86,96,95,106,105,91,103,103,118,101,101,102,114,111,120,111,95,102,83,106,103,106,104,109,112,109,106,111,97,109,104,91,116,105,101,101,99,94,101,116,112,104,98,95,116,96,104,103,98,116,102,112,103,106,107,105,103,109,93,105,108,119,107,101,103,97,92,102,107,112,94,111,95,97,103,95,104,109,118,107,103,89,92,105,108,102,100,110,110,95,96,96,103,100,104,98,104,109,110,116,103,124,108,107,117,105,98,100,100,107,101,110,86,118,120,100,106,95,108,102,103,116,100,120,96,91,101,98,113,120,118,106,104,106,114,99,119,117,107,107,134,113,114,139,142,121,130,125,111,123,98,115,116,111,104,113,107,108,98,84,114,110,108,88,100,104,99,94,113,99,107,107,114,102,96,100,94,103,95,101,98,110,95,106,97,111,110,101,113,99,99,108,117,103,100,106,103,97,105,89,103,106,106,103,98,113,128,108,108,106,112,96,111,108,110,97,91,97,100,105,111,95,106,113,113,106,105,91,103,99,106,110,106,106,93,108,106,92,102,110,113,93,102,106,110,98,105,96,99,101,103,106,111,108,105,111,94,101,94,100,103,91,110,93,104,107,92,104,97,103,95,109,105,99,103,102,95,105,116,107,110,100,112,107,116,102,115,98,101,110,108,97,93,106,103,102,109,91,111,107,108,113,104,100,102,112,113,104,92,102,106,106,94,120,102,106,112,113,107,104,110,106,98,114,103,109,100,98,102,103,138,104,105,111,121,104,105,102,103,93,99,97,111,98,98,108,104,95,98,97,99,95,110,105,96,103,86,123,95,102,133,109,110,108,106,98,102,117,102,103,112,138,120,109,105,103,112,108,96,93,109,109,112,99,110,104,106,104,141,111,100,96,110,114,106,104,75,111,104,100,100,105,110,128,105,101,114,95,102,108,103,119,113,105,110,111,100,115,101,104,100,102,104,83,114,112,110,110,101,102,120,94,105,102,111,105,105,101,100,105,112,106,109,91,109,94,110,106,108,98,96,121,125,112,102,103,107,115,100,98,103,105,117,108,113,100,99,104,114,99,102,109,102,108,106,115,104,114,113,102,103,125,105,106,105,101,108,98,99,101,101,102,108,102,105,121,99,109,100,97,104,107,112,101,107,113,109,110,106,105,101,103,100,103,113,109,122,92,106,113,103,119,94,101,109,104,103,106,105,113,108,101,125,112,103,106,110,104,98,103,109,95,105,104,104,106,106,97,112,99,91,90,112,118,96,116,107,123,115,99,99,91,102,105,103,101,102,99,123,104,91,106,104,99,109,102,109,98,112,111,102,102,110,102,111,104,100,102,102,96,113,106,99,99,99,102,97,99,109,98,101,109,108,109,98,112,120,89,96,105,101,67,105,102,99,99,117,106,102,98,105,117,99,97,99,109,99,114,100,87,98,100,94,101,109,94,104,97,112,102,106,102,91,91,115,101,94,83,105,127,96,98,104,113,101,109,104,110,101,106,109,101,106,100,115,109,86,111,109,100,98,109,105,113,101,123,88,103,109,106,107,104,108,109,110,109,105,99,96,107,109,111,121,104,112,107,110,113,99,102,103,100,97,113,112,113,101,107,110,106,97,105,95,117,104,91,102,104,101,107,91,109,103,98,100,117,104,95,106,101,101,102,115,121,113,107,109,104,106,107,101,121,107,113,115,101,104,111,103,99,95,100,101,104,99,104,107,100,106,106,108,108,113,106,102,106,116,99,96,114,92,103,99,104,110,104,91,105,97,118,127,107,107,106,110,113,102,100,100,103,86,112,108,108,111,108,116,105,106,100,112,96,103,109,102,103,101,98,111,102,102,101,79,90,106,131,104,103,102,104,95,111,119,114,98,99,108,104,111,109,98,116,113,106,103,97,99,111,106,110,103,109,107,110,105,92,112,98,98,116,106,114,104,117,105,102,108,115,109,95,110,115,93,105,109,100,104,114,107,108,115,111,79,104,109,92,95,106,116,103,112,116,103,105,109,113,102,101,103,108,94,76,109,109,108,108,96,115,96,108,114,116,105,101,105,105,105,106,99,104,104,107,108,110,107,114,99,100,120,107,103,94,106,109,108,97,108,99,102,107,97,98,96,103,110,110,113,121,97,109,120,117,112,103,106,124,109,105,107,95,99,121,104,115,99,104,108,109,102,100,105,97,101,103,99,100,108,98,103,95,95,98,94,98,93,102,106,96,126,117,104,95,137,110,104,123,107,118,99,106,109,77,87,101,99,106,105,109,123,117,118,109,112,106,110,97,104,116,103,112,99,79,119,108,101,106,102,103,104,114,91,108,117,106,105,93,102,119,105,108,103,112,111,105,113,99,105,114,118,97,102,85,121,104,103,106,108,108,114,97,104,87,109,117,105,105,121,109,102,114,101,99,93,107,115,101,111,100,109,95,103,103,95,101,102,98,109,106,101,109,101,102,101,99,105,103,97,110,107,103,100,101,101,105,98,104,99,101,104,104,113,100,116,101,115,99,117,103,97,98,112,109,113,94,105,103,108,103,96,99,86,98,105,96,109,113,108,112,110,109,110,106,102,105,92,115,99,121,107,104,91,105,113,90,109,110,114,113,112,103,106,106,94,86,107,102,103,96,105,104,106,116,101,98,104,108,103,110,99,95,106,112,111,115,113,108,102,99,105,112,103,120,96,107,105,95,95,103,109,116,120,103,109,120,106,103,111,106,92,121,110,100,100,116,110,100,95,94,100,99,102,93,110,106,99,101,98,95,99,101,111,97,100,104,106,101,107,110,96,106,124,86,96,104,117,115,94,92,101,112,113,100,99,114,111,116,92,111,108,96,108,103,99,114,98,107,98,103,106,94, +607.36157,99,113,98,103,100,103,102,94,99,106,104,123,117,105,102,98,99,95,115,113,107,95,102,118,110,103,105,112,102,106,105,90,108,93,105,89,114,107,81,112,108,104,88,107,92,104,89,109,98,120,103,110,113,96,117,85,101,88,120,108,98,102,109,95,108,122,85,122,92,102,92,105,101,96,99,83,84,106,106,106,113,97,98,103,109,100,106,95,106,102,107,104,106,109,99,97,94,105,91,114,101,96,96,99,104,95,103,107,94,99,112,104,111,103,95,109,93,104,98,106,100,95,106,119,108,99,130,98,102,97,105,109,112,93,99,112,78,105,105,91,93,113,103,82,90,95,101,107,112,98,93,104,108,95,111,103,95,100,103,121,103,95,104,100,91,106,97,92,107,113,90,110,109,102,99,110,97,91,113,98,102,106,94,105,111,95,98,88,97,106,92,108,98,104,83,103,92,104,106,99,102,102,101,111,89,95,95,99,113,113,99,117,99,108,99,102,110,119,97,108,110,114,111,105,107,103,102,108,110,108,96,110,116,102,103,104,109,102,99,113,112,103,116,107,104,97,104,110,92,103,107,110,99,86,103,105,103,108,97,95,96,110,118,96,106,114,101,112,95,96,108,108,105,94,73,114,100,99,87,108,105,101,102,95,107,104,101,101,99,104,99,109,121,102,108,102,108,93,100,100,93,95,103,104,108,106,102,112,111,116,102,114,91,102,99,108,122,92,96,105,107,95,101,97,102,111,105,97,101,114,109,101,113,94,101,95,99,103,99,103,96,110,88,101,95,97,102,98,94,104,101,106,106,110,86,96,110,92,110,95,96,105,109,99,102,102,110,106,105,102,108,99,99,102,104,92,100,105,100,105,114,114,99,101,107,100,100,98,100,117,121,103,117,103,91,94,103,95,95,108,107,105,112,96,93,93,88,108,108,105,96,121,91,95,99,105,103,103,94,70,102,94,91,119,105,107,103,102,103,113,96,120,108,103,99,109,91,107,95,105,112,102,97,109,101,97,108,100,116,104,90,102,106,108,96,96,127,104,104,107,103,107,108,106,105,92,97,98,91,96,108,102,99,108,109,95,116,113,107,101,93,115,104,100,97,105,109,107,108,107,80,104,101,111,104,111,111,105,114,100,115,113,119,114,98,107,95,106,107,101,107,112,105,109,100,104,105,94,105,100,97,105,99,108,98,117,93,108,108,93,101,107,108,114,104,111,102,103,104,105,114,109,103,100,109,109,100,92,102,106,100,99,102,86,113,104,109,108,102,104,107,108,96,101,96,99,104,104,100,109,98,108,112,99,96,109,104,100,104,105,101,116,96,104,104,97,106,98,102,100,115,101,109,123,108,113,105,89,105,102,110,103,104,114,79,114,99,100,93,111,96,125,117,112,111,100,101,101,113,98,109,101,91,103,114,100,108,101,104,108,98,99,105,107,89,122,102,103,111,101,102,122,107,103,105,91,98,87,99,111,83,106,95,104,107,95,84,94,99,97,102,102,112,103,94,92,89,98,103,108,99,101,98,104,104,100,98,100,102,109,99,104,103,99,105,103,69,104,84,96,103,95,107,110,104,88,95,109,102,92,101,102,99,104,100,115,108,101,106,105,105,94,113,94,104,87,98,78,109,110,116,94,115,109,101,101,109,121,104,104,106,98,96,104,96,89,108,95,105,103,112,89,109,99,108,107,89,100,99,119,104,98,93,97,104,95,99,103,103,104,102,113,101,129,107,98,112,121,76,99,105,96,106,140,106,101,95,105,99,109,101,111,116,105,105,117,108,102,103,98,98,101,124,92,99,116,88,111,92,103,97,113,107,107,100,106,98,105,97,102,112,111,111,95,100,108,106,111,116,99,94,103,100,115,100,110,95,110,95,92,103,113,120,103,105,105,134,101,107,109,103,87,109,109,92,95,98,97,106,102,95,98,94,110,90,100,113,91,104,99,99,98,112,105,113,108,95,102,112,102,100,95,90,98,94,101,111,91,100,104,95,109,99,90,99,96,104,105,106,103,96,104,110,102,101,129,110,94,108,101,103,109,109,121,114,102,117,100,101,102,102,104,110,99,104,104,105,106,99,104,91,110,93,99,121,97,109,108,106,102,105,100,116,103,94,96,105,106,134,105,100,111,109,106,92,110,93,114,98,108,92,93,108,103,115,94,101,106,100,106,107,102,113,98,93,106,99,99,115,96,92,109,97,94,98,101,108,103,102,106,100,100,115,104,94,98,99,97,82,103,108,91,95,101,101,103,87,110,105,95,103,96,91,102,94,100,99,103,102,99,100,103,103,94,100,109,103,106,111,97,117,95,108,105,104,104,98,105,107,89,103,96,109,100,96,113,117,120,117,120,126,118,122,130,128,111,156,110,121,126,111,134,136,99,107,121,125,101,109,103,116,110,115,98,102,100,104,100,98,102,99,118,98,97,104,113,98,105,110,104,98,95,92,106,108,107,97,103,95,113,94,102,105,79,102,104,98,105,116,108,119,102,84,103,107,120,104,112,104,115,107,106,105,105,112,110,98,99,95,95,118,108,115,102,103,107,98,99,107,101,98,103,100,91,102,113,97,91,101,90,102,107,106,106,102,102,101,100,105,99,117,110,106,78,104,94,106,111,96,107,102,119,98,102,120,103,107,98,106,97,105,104,120,116,105,108,109,119,115,92,106,99,104,114,99,104,90,110,102,104,106,100,103,116,95,116,99,102,92,104,109,111,112,109,111,95,98,96,98,101,102,91,103,115,100,108,111,110,102,102,104,112,103,98,105,105,101,114,108,103,80,102,99,100,115,105,108,89,100,98,113,133,122,108,105,109,107,111,95,110,104,100,108,106,95,99,112,108,101,108,110,88,103,107,103,93,107,107,98,109,106,108,95,123,104,113,106,106,99,102,100,102,103,117,111,105,96,103,110,106,103,113,109,106,106,111,81,107,102,102,109,101,106,105,104,99,96,110,92,109,98,114,110,95,115,106,106,99,102,102,108,99,113,109,106,101,112,103,94,106,123,91,111,107,106,102,112,106,102,108,108,114,105,106,100,109,117,106,107,102,104,102,101,99,98,111,114,95,80,129,101,106,117,111,111,98,109,92,110,101,80,99,73,113,110,94,104,113,110,115,103,102,96,117,110,93,103,101,115,106,107,109,96,98,120,111,100,105,122,95,109,98,90,104,100,97,104,105,117,99,91,111,103,87,91,94,100,101,117,104,118,90,100,99,109,98,103,92,109,110,119,112,102,112,113,112,99,112,101,106,112,104,113,102,100,99,103,93,99,106,97,91,105,117,104,103,91,91,99,98,102,97,109,102,99,112,104,104,106,96,100,119,105,111,103,110,95,111,98,105,87,109,98,112,100,105,109,97,103,97,95,102,98,97,115,100,119,111,111,102,101,88,102,108,110,102,101,92,123,95,110,104,77,98,96,102,96,109,111,102,95,105,96,106,78,104,117,101,111,111,106,102,107,110,110,95,98,104,98,90,91,101,85,112,112,98,104,101,110,88,106,100,102,91,104,105,113,103,95,105,116,114,100,107,124,107,102,101,100,108,104,111,104,109,112,103,105,100,103,98,90,105,94,106,98,100,102,96,109,101,105,107,107,107,106,104,110,102,101,93,101,99,104,100,100,108,95,94,104,110,92,97,138,106,100,100,103,105,99,100,99,111,95,65,107,99,97,104,111,99,104,101,103,103,104,101,107,112,100,97,108,111,107,95,110,116,99,102,107,102,95,91,95,103,94,108,102,103,100,114,109,112,101,104,128,95,102,99,99,105,106,99,98,103,97,102,105,108,99,90,95,98,102,96,109,109,99,90,97,107,114,117,94,109,100,109,109,98,96,99,111,106,99,100,106,106,102,93,106,101,115,91,113,110,100,105,97,96,109,101,109,103,102,108,107,109,105,107,111,102,89,99,103,101,106,106,101,108,106,109,105,100,91,106,103,95,104,99,91,97,105,104,102,105,120,102,104,104,101,98,103,105,109,106,112,104,103,106,115,107,118,106,114,93,110,107,114,94,105,107,112,110,94,97,99,109,104,94,92,106,110,106,114,92,102,94,104,110,107,106,110,108,106,103,104,108,90,111,103,102,101,101,105,117,114,113,113,104,97,97,107,106,106,100,108,116,108,103,103,113,104,105,102,97,97,108,101,103,108,94,110,100,117,88,104,109,107,109,103,95,107,101,104,97,100,103,110,98,104,112,110,102,102,98,91,111,90,109,104,109,107,105,102,98,105,106,93,86,113,110,109,120,120,85,108,107,111,103,102,110,98,111,113,95,107,109,99,110,124,102,113,105,101,107,124,142,106,104,113,111,118,93,98,107,112,104,117,110,105,107,109,101,104,107,109,99,102,101,109,104,110,106,105,105,120,108,101,127,112,91,92,86,98,119,99,106,109,96,109,104,87,107,98,106,94,97,92,109,94,68,104,116,99,100,95,99,101,98,93,103,103,99,113,110,112,109,98,107,102,99,91,96,110,107,92,108,107,103,106,116,91,104,116,86,96,112,118,102,101,98,83,113,98,100,91,109,103,107,95,117,94,94,91,116,101,74,103,101,97,99,108,91,109,112,109,109,107,119,100,97,93,102,108,104,104,107,106,108,100,104,120,97,106,90,98,93,109,100,113,103,114,105,108,108,95,98,98,113,109,96,97,98,102,94,106,116,96,90,105,88,96,109,106,93,95,101,113,104,96,97,94,116,106,109,94,102,102,97,96,104,103,92,112,104,102,106,103,104,113,103,94,105,116,84,105,108,105,112,91,109,97,101,105,104,102,101,98,101,115,115,102,91,103,104,109,100,102,112,89,79,106,117,94,107,94,118,96,98,98,100,101,106,101,101,109,106,103,115,108,108,110,103,105,104,104,97,106,99,98,102, +607.50262,127,110,103,100,102,92,101,102,105,102,89,142,111,102,101,107,95,104,114,98,90,106,124,105,107,76,97,115,99,98,96,105,114,85,104,103,103,97,113,122,102,120,110,102,90,100,112,111,96,103,92,95,94,101,100,101,85,100,108,107,111,108,99,103,105,108,112,99,114,103,106,106,96,95,133,97,106,109,96,110,95,97,97,90,108,110,96,110,106,97,98,103,99,104,106,89,89,103,96,95,104,95,93,111,99,96,101,98,92,99,100,96,104,91,102,93,97,107,97,97,95,105,109,104,103,121,111,91,102,104,103,99,105,88,103,100,100,91,103,99,97,102,91,109,108,105,117,96,93,95,110,96,64,90,101,99,95,86,95,102,114,100,109,110,81,89,91,108,103,95,105,104,103,97,88,82,84,105,116,108,106,106,103,108,105,99,95,97,106,104,95,99,98,108,103,112,102,101,96,107,100,107,98,104,97,107,100,99,116,99,111,98,101,104,96,105,123,94,94,101,98,111,101,100,105,110,105,102,117,108,108,122,116,103,94,117,94,125,108,83,114,107,102,103,92,101,100,113,96,102,95,103,98,97,106,82,99,99,117,100,97,99,100,105,90,88,105,105,118,94,89,101,108,98,109,100,112,105,98,112,100,100,99,94,102,99,109,103,97,101,106,102,109,102,113,98,103,83,115,108,107,94,98,113,100,113,107,98,107,98,97,111,95,96,118,101,101,96,96,101,98,80,103,123,103,105,102,100,121,116,114,106,103,107,120,111,110,99,97,109,101,100,97,87,108,109,102,106,101,107,109,113,90,111,111,105,113,103,99,112,100,99,113,108,97,95,108,88,126,104,109,107,96,118,101,112,100,112,109,109,107,103,107,94,98,100,106,104,113,109,109,98,102,89,98,101,99,101,100,104,109,114,104,70,100,109,116,101,99,110,96,107,95,109,110,105,97,91,114,99,101,108,97,108,106,114,109,93,101,115,108,101,100,102,104,78,108,114,108,102,127,102,120,101,116,104,107,104,116,91,113,107,108,101,113,105,90,108,107,108,126,96,108,107,97,109,98,96,97,97,114,111,106,109,106,85,109,109,123,108,102,112,100,95,105,97,118,110,101,106,108,112,86,91,100,101,87,109,107,120,105,88,106,102,104,98,90,102,117,103,84,98,112,117,110,106,90,94,99,100,91,95,107,108,117,99,98,111,113,94,107,99,103,107,102,107,94,106,118,108,87,79,102,91,111,105,107,107,90,110,99,108,93,109,95,91,101,107,104,100,104,104,105,98,84,104,113,115,100,113,97,86,97,107,105,101,110,94,99,102,118,96,91,101,113,97,117,104,104,109,114,111,103,104,116,105,118,90,122,106,93,99,97,108,102,102,109,103,96,88,102,103,97,110,105,110,105,98,104,106,100,110,101,93,83,110,112,108,105,101,109,108,111,103,111,105,99,110,115,101,106,102,97,107,118,106,93,113,101,106,82,98,92,99,101,119,105,98,108,105,106,102,76,104,103,100,104,108,98,105,103,111,98,109,103,87,88,111,105,113,109,105,104,105,98,90,94,98,104,103,100,111,94,111,94,99,111,105,111,99,98,102,87,86,113,107,105,118,111,102,103,106,98,108,100,100,108,102,105,109,81,117,103,117,116,111,108,92,108,106,109,106,101,117,105,104,112,102,115,96,110,90,107,89,111,108,98,98,99,94,104,102,117,100,106,100,89,92,108,104,106,106,101,98,100,105,96,107,97,76,88,94,106,101,97,102,105,92,98,90,116,99,107,87,95,86,101,103,109,117,90,117,107,101,106,120,104,105,110,108,100,111,106,98,104,98,104,89,107,103,112,95,100,97,109,97,103,106,124,109,97,100,86,103,115,103,114,120,102,96,111,106,112,108,105,87,103,97,114,96,100,109,107,91,91,87,104,88,97,109,101,103,103,99,93,101,94,97,106,105,103,96,89,114,109,116,101,114,100,105,104,112,101,101,99,112,121,95,101,103,122,108,114,80,102,107,100,108,111,118,107,111,99,100,101,107,103,108,101,117,115,110,112,101,115,99,97,116,117,105,123,110,110,108,107,92,100,107,100,94,105,102,118,93,106,97,103,100,84,117,94,103,101,120,112,104,105,126,77,107,117,115,105,108,107,99,110,103,110,103,110,94,107,107,109,105,108,97,100,108,106,125,113,96,101,101,102,109,104,97,98,112,103,109,100,101,97,100,102,103,103,93,98,108,107,106,94,109,110,108,105,106,104,98,107,106,106,111,103,102,97,103,110,88,105,97,109,102,91,100,97,105,103,106,109,98,99,104,99,99,121,103,117,95,101,108,96,103,105,98,98,102,103,106,114,108,80,113,113,103,130,120,106,112,130,128,118,120,124,124,127,111,121,109,109,112,105,123,99,106,106,103,106,125,91,105,107,94,100,100,105,128,98,107,122,98,98,112,112,108,101,96,96,103,104,105,107,107,105,112,108,107,105,124,101,114,104,103,109,103,117,106,95,100,113,105,101,106,107,113,103,105,108,110,110,115,112,110,102,113,106,110,117,101,105,109,105,114,120,101,106,104,114,98,107,110,102,105,91,90,108,93,91,114,99,106,113,114,103,96,122,102,113,107,101,105,114,109,102,110,93,96,102,111,95,108,89,106,107,96,103,92,108,109,97,113,108,105,106,104,113,106,96,113,111,103,109,114,93,110,107,107,72,111,92,103,96,104,104,105,118,109,106,109,95,107,98,106,108,120,103,106,109,103,91,115,118,93,108,98,91,110,113,106,100,101,102,102,102,111,93,109,96,112,110,110,107,122,108,127,103,92,98,95,103,106,103,85,106,103,95,100,106,100,98,92,100,113,97,114,106,96,99,94,119,99,107,99,110,92,106,101,84,112,100,97,115,91,102,112,97,115,103,103,109,103,107,98,122,98,98,106,99,95,98,107,114,108,109,113,110,105,110,100,111,108,106,108,102,103,120,109,81,120,96,109,106,109,112,102,113,110,99,113,111,103,98,111,111,84,106,98,101,109,124,92,108,112,103,103,111,91,117,112,105,113,110,95,113,103,101,108,109,103,106,112,113,105,98,98,116,112,105,106,110,118,104,106,115,96,107,78,109,117,110,105,96,107,89,102,103,105,104,102,107,99,113,98,100,112,100,106,114,99,104,91,99,81,105,100,106,100,87,100,112,123,108,104,99,100,97,100,106,102,109,102,104,98,96,106,104,105,110,97,104,91,100,103,109,105,111,99,106,119,107,102,96,114,118,101,116,111,104,90,110,96,102,116,114,96,106,102,111,101,109,103,105,101,109,107,107,118,101,93,104,104,87,108,102,95,100,102,98,104,123,95,112,117,110,112,90,102,98,106,105,111,98,99,105,105,100,94,103,109,96,102,103,99,117,112,95,93,103,110,113,96,80,103,101,100,105,93,77,98,108,110,106,98,107,105,100,102,103,95,104,104,103,92,102,95,105,99,102,111,78,105,110,107,115,78,98,113,104,107,109,103,87,107,112,103,102,110,126,108,96,100,102,104,101,99,100,116,115,106,116,121,107,109,105,117,110,94,120,117,99,98,101,104,109,99,101,107,103,119,114,101,96,103,91,100,100,101,124,114,99,93,107,113,107,95,101,117,111,116,95,100,115,86,103,100,107,96,118,112,99,103,109,91,96,104,110,116,103,98,95,105,104,111,94,105,93,106,102,101,105,112,97,103,98,96,104,106,97,120,113,103,110,116,111,99,104,102,111,110,100,107,100,106,121,110,110,107,108,99,102,88,103,104,108,103,102,103,104,95,84,99,99,111,95,99,111,105,109,117,99,105,95,105,106,104,100,106,107,106,100,95,118,107,91,102,102,102,116,101,98,116,112,106,104,86,98,100,102,110,117,103,102,104,101,102,100,93,109,98,105,92,114,95,112,100,99,104,105,91,101,112,101,101,106,103,101,108,101,110,104,120,108,101,120,98,98,102,118,102,108,110,107,101,93,99,104,106,104,104,104,113,102,107,104,102,106,94,98,99,98,102,107,122,95,100,107,107,93,96,115,109,111,108,103,91,99,111,104,105,107,107,102,97,101,107,107,89,93,107,104,115,103,99,100,110,95,108,99,104,109,115,104,99,100,109,92,91,118,119,88,103,107,119,105,120,103,102,102,103,110,110,101,121,111,113,104,97,102,126,107,112,97,112,105,107,93,106,95,102,107,106,114,105,102,117,107,99,119,109,97,95,102,97,109,108,93,99,108,102,100,83,99,97,104,100,113,110,95,98,103,95,104,96,95,102,98,99,103,120,105,105,90,101,102,98,107,108,117,109,111,104,98,108,93,96,105,103,106,102,96,91,107,107,111,110,104,107,102,103,89,108,106,106,119,99,104,103,105,97,90,104,112,108,114,92,90,121,101,106,93,113,91,103,96,100,113,107,109,91,107,107,101,104,102,103,105,100,100,123,101,89,105,107,112,107,104,97,95,124,102,113,112,107,111,105,109,106,100,107,120,101,112,119,97,107,90,104,103,105,110,105,108,93,98,101,113,102,103,101,105,112,104,108,100,109,102,113,112,102,100,96,98,84,102,108,108,91,117,109,121,101,106,96,86,105,106,113,106,105,97,102,126,102,115,103,100,108,108,101,108,95,115,113,106,97,106,103,125,104,97,110,100,98,101,102,102,100,101,105,102,91,108,99,107,93,102,114,97,101,100,91,103,111,93,94,94,108,102,105,112,103,111,94,113,107,103,107,97,108,113,92,98,99,98,109,106,109,98,108,104,113,106,102,113,111,101,88,110,99,112,112,83,104,91,105,105,100,102,99,98,96,105,99,102,94,96,102,113,94,101,116,117,98,108,96,108,99,100,77,106,100,110,119,115,102,106,103,88,88,79,93,95,96,102,120, +607.64374,92,110,107,96,86,112,89,81,101,91,94,104,97,107,98,98,104,95,116,95,108,93,108,107,100,113,106,103,112,100,95,102,108,102,99,110,107,96,102,107,83,92,104,102,77,102,101,106,95,109,100,96,111,99,108,109,87,100,110,93,102,99,109,109,105,113,106,95,96,102,120,113,96,107,102,114,91,113,93,111,103,97,106,107,103,104,87,100,112,87,101,105,101,111,108,120,104,91,115,126,95,107,97,96,100,113,112,106,106,97,105,94,104,103,116,96,109,115,107,105,104,112,105,104,100,106,137,96,113,114,100,106,92,93,108,92,121,97,101,112,94,116,106,87,110,102,98,91,109,87,105,95,102,101,102,105,106,110,104,99,104,104,105,90,94,101,103,106,93,99,108,105,100,108,103,94,101,101,107,114,100,83,99,104,97,115,108,102,111,110,99,108,82,107,108,94,108,110,125,105,104,102,114,97,98,102,94,109,98,107,100,107,99,98,100,105,100,102,100,106,103,98,99,77,101,107,89,113,109,103,102,108,109,113,95,99,104,104,111,111,103,104,109,118,111,98,105,102,118,108,86,96,103,99,98,107,97,81,105,102,93,113,94,115,97,116,107,114,96,101,109,107,114,105,106,98,101,111,102,102,100,103,99,110,108,96,100,110,108,99,103,103,119,106,110,95,104,79,105,72,100,109,115,107,89,108,102,104,110,110,104,108,101,112,104,107,111,96,106,103,109,103,107,108,113,105,101,105,105,112,108,105,112,87,101,110,103,101,108,80,103,117,107,102,89,94,114,101,105,104,114,106,100,113,109,98,102,111,100,103,94,96,107,99,101,76,106,108,101,104,112,106,103,106,97,96,101,99,104,95,109,109,106,109,114,101,88,117,103,107,107,104,95,107,106,95,97,110,100,110,99,110,99,91,96,97,99,110,115,104,94,106,90,118,105,124,103,101,107,99,104,114,108,100,101,108,106,97,102,100,90,107,99,105,95,104,106,104,110,116,129,101,86,121,113,94,99,108,107,105,95,100,107,115,98,109,105,101,102,109,108,95,104,101,111,116,108,99,96,97,118,106,134,110,100,91,91,113,98,97,102,104,104,113,100,101,115,105,99,107,113,113,102,100,105,110,105,110,113,90,118,107,99,108,107,107,103,102,96,71,115,116,104,109,102,107,109,99,103,98,101,111,108,97,103,103,113,97,116,108,97,102,100,104,104,106,106,108,97,100,95,106,111,100,115,105,103,96,122,106,107,103,97,101,109,106,104,99,108,96,105,99,95,100,98,104,108,114,103,108,96,104,110,106,119,93,106,104,104,108,106,102,116,107,102,103,102,113,113,85,115,105,96,97,110,111,111,100,108,98,114,105,101,99,92,105,113,93,115,103,103,106,109,114,102,103,98,96,116,104,118,116,103,100,106,113,110,110,102,110,102,90,103,105,99,102,100,102,99,96,117,102,108,103,95,94,117,96,106,109,91,105,103,108,96,107,103,106,103,82,114,110,109,109,106,101,104,105,91,99,124,103,107,101,93,106,113,93,103,106,109,103,110,100,114,124,92,106,103,112,102,103,105,98,103,95,95,92,107,89,101,99,95,89,105,114,103,108,105,102,113,111,99,104,95,113,94,98,132,103,113,110,109,112,103,98,106,102,101,103,106,96,93,106,102,96,108,103,113,100,102,102,101,101,98,110,106,94,99,105,108,96,97,94,105,104,107,100,101,108,108,104,95,108,104,133,101,93,103,105,105,105,97,104,120,110,99,100,98,103,120,100,108,111,113,110,104,105,107,107,103,95,97,113,95,105,113,104,117,105,93,114,103,111,97,104,104,102,114,101,107,101,98,98,109,104,107,101,109,108,101,96,103,113,94,112,106,112,104,105,116,108,108,104,102,100,108,108,100,91,104,112,111,98,103,107,112,98,138,103,100,106,99,107,116,104,97,103,109,98,107,96,103,99,95,100,100,113,87,120,102,105,93,107,96,100,109,117,109,107,116,111,111,110,104,108,102,99,95,104,108,108,112,109,114,100,99,106,124,109,100,105,110,103,106,88,97,104,110,120,102,114,105,94,108,105,95,107,100,106,97,104,112,99,114,103,92,98,98,111,106,105,105,109,98,112,99,99,105,107,104,106,116,96,97,102,97,109,113,109,97,101,113,107,98,99,109,94,98,99,111,103,108,103,114,104,89,104,107,111,91,108,98,102,91,103,110,101,95,107,95,104,71,118,113,99,104,104,93,113,101,96,95,89,113,92,101,113,97,95,100,103,104,101,108,93,109,94,96,92,97,97,99,106,117,116,103,88,90,101,93,106,99,67,112,100,106,109,106,109,100,95,95,111,109,100,96,114,125,117,127,140,130,111,115,103,116,110,114,112,116,120,100,118,114,106,107,110,118,98,105,87,100,107,96,112,124,106,93,105,91,113,94,96,103,107,107,109,118,95,106,93,98,108,99,101,107,108,97,95,107,95,112,87,98,109,98,93,114,113,108,95,104,79,109,105,111,102,103,115,92,114,108,116,95,127,89,98,91,100,113,109,77,97,91,103,113,103,102,112,110,97,106,101,98,99,102,99,105,93,100,92,92,111,100,100,90,106,118,92,106,112,112,101,106,94,112,112,101,107,104,96,96,109,108,103,113,96,99,106,102,99,102,109,87,102,121,100,95,120,105,115,117,100,93,100,105,108,93,111,100,104,105,103,84,103,119,91,95,106,100,114,106,102,98,103,105,120,101,98,99,101,91,111,102,91,129,114,114,102,75,105,105,100,101,113,103,110,98,100,102,106,100,106,116,110,103,98,94,101,80,100,108,105,117,102,116,105,104,99,107,107,77,107,105,99,102,95,110,103,104,107,109,120,110,84,102,107,102,113,107,92,110,106,101,103,107,98,106,98,93,106,116,96,100,103,108,109,112,102,107,98,100,99,116,98,110,108,102,95,110,95,89,106,116,97,92,109,98,104,104,102,118,102,112,119,104,101,110,111,111,104,98,106,99,112,95,100,104,100,107,98,96,99,105,106,103,96,97,87,99,87,107,104,117,107,117,103,102,101,101,100,110,98,105,98,103,103,103,94,109,108,113,123,105,104,114,112,104,108,94,111,92,109,94,109,97,96,98,95,109,91,104,100,102,94,113,105,100,83,96,95,99,100,99,103,100,102,114,94,99,102,105,99,98,107,101,100,106,91,113,101,105,103,109,103,97,99,104,104,108,112,104,98,97,103,114,98,112,101,102,107,100,116,115,97,100,92,98,104,107,95,100,100,85,103,107,94,108,112,100,97,102,88,110,102,103,102,102,83,103,106,109,108,109,109,94,90,114,100,108,109,110,103,88,91,117,99,100,84,91,95,116,104,111,98,105,98,105,100,105,108,100,104,98,102,106,105,106,94,103,110,93,103,104,99,95,112,106,97,97,109,107,101,94,110,108,103,107,106,114,99,102,90,89,98,107,104,107,107,91,102,107,90,96,75,104,103,106,104,101,100,104,105,104,95,102,101,133,108,115,116,92,112,102,101,108,106,95,103,88,92,110,93,110,109,106,117,104,111,103,101,109,112,98,105,101,104,106,94,93,102,110,92,94,97,112,103,105,110,90,101,98,90,105,101,105,99,110,102,105,108,106,110,91,102,106,93,101,107,106,94,99,117,112,96,106,100,104,102,109,112,95,95,110,104,108,103,102,102,101,112,103,106,101,97,115,107,100,104,107,98,98,100,112,97,105,103,111,104,104,100,102,99,100,94,102,116,105,72,101,103,89,100,96,110,110,103,104,103,95,99,105,104,106,103,110,112,111,92,112,107,103,108,87,101,93,101,95,112,98,113,91,103,90,96,113,122,106,98,125,98,107,103,109,112,108,110,113,99,102,108,103,98,106,103,105,100,96,103,103,88,103,142,101,107,117,101,102,90,108,103,91,106,104,99,107,102,108,96,101,104,97,104,90,100,109,107,90,109,100,102,92,103,114,113,98,110,94,103,115,115,92,108,96,74,93,106,109,103,122,104,104,91,103,97,118,100,104,104,111,96,99,104,95,109,99,108,110,106,110,89,106,94,106,111,106,87,100,108,104,106,111,88,112,95,91,92,106,107,106,107,110,96,106,123,111,96,102,101,97,92,99,115,100,104,104,102,83,104,111,102,99,96,105,113,97,105,94,103,104,107,107,108,89,101,94,108,101,101,98,105,107,100,105,105,102,102,96,83,107,105,96,95,100,103,106,102,102,98,90,113,102,92,106,100,99,113,94,98,102,96,102,101,116,104,105,99,93,101,99,95,83,106,100,106,105,90,101,99,108,95,100,95,113,109,113,100,101,99,107,97,107,113,102,95,112,100,110,102,105,100,107,95,117,99,108,106,107,98,104,98,109,101,108,104,104,100,97,108,104,106,104,108,105,109,100,64,109,105,113,102,102,105,103,104,92,100,117,102,101,91,107,91,99,92,100,105,113,106,113,106,94,102,92,82,100,113,96,85,90,96,80,113,104,106,97,91,92,92,95,94,98,114,101,87,102,101,113,98,93,88,101,102,95,100,101,100,81,111,96,103,118,91,107,106,95,103,91,103,87,104,96,114,102,101,100,66,104,110,101,112,106,113,102,112,96,92,110,107,99,95,100,106,104,91,103,108,96,103,96,96,93,98,97,123,105,106,102,106,98,105,88,94,102,117,94,117,104,98,105,78,100,106,105,99,113,103,104,88,112,111,99,100,96,110,107,104,98,98,103,99,101,120,111,103,97,106,97,91,88,108,93,105,101,115,104,101,100,141,97,94,98,79,102,109,104,109,95,101,117,107,90,100,109,108,116,105,103,103,111,90,117,99,91,103,90,101,103,95,101,107,100,100,95,99,95,112,101,105,101,99,104,87,102,101,107,93,91,91, +607.78479,105,84,62,112,95,110,111,103,72,111,91,122,106,89,103,95,98,109,99,103,94,91,100,91,99,89,102,110,90,107,107,118,91,95,99,104,110,106,103,95,107,102,103,110,103,112,100,100,94,107,102,106,121,106,110,101,101,91,110,91,94,109,95,105,106,106,99,105,95,107,87,95,100,103,113,100,95,120,95,108,92,106,91,103,105,99,99,93,102,98,102,98,103,106,93,98,103,105,101,100,106,93,107,100,97,95,94,101,102,91,84,101,119,103,97,105,96,109,88,109,91,109,96,109,112,101,101,105,112,100,104,97,97,115,108,121,101,91,111,105,86,105,100,107,112,98,112,99,105,97,101,103,106,104,104,92,100,103,109,105,98,102,117,105,110,96,113,96,97,96,97,107,98,97,96,71,113,95,100,108,89,101,118,96,99,94,100,96,88,102,95,97,103,93,105,95,97,101,98,103,107,96,108,113,98,120,92,113,105,90,105,105,96,100,91,79,103,112,102,107,119,109,96,103,99,106,94,107,104,108,105,106,107,110,106,106,113,113,103,107,98,98,104,110,109,108,99,98,124,107,106,105,113,98,97,103,102,98,75,104,99,104,94,101,98,98,105,107,114,101,108,102,104,94,65,89,92,111,106,106,99,94,94,100,102,103,101,92,107,109,108,107,108,110,99,107,105,103,111,99,97,108,103,108,98,102,111,107,115,115,97,99,94,115,111,103,90,102,117,91,118,103,103,117,107,99,103,105,113,109,117,101,110,104,113,107,109,106,82,103,101,102,111,100,104,98,110,107,94,99,105,112,114,105,94,105,106,103,103,110,101,104,95,103,97,104,94,97,102,108,116,100,110,83,114,96,78,96,104,122,113,114,98,109,108,97,89,97,107,98,113,121,97,108,102,106,104,117,93,109,95,106,107,110,102,91,108,110,109,95,98,110,105,112,105,107,105,109,101,102,100,98,98,113,106,110,95,100,102,111,98,105,103,112,99,95,98,123,94,114,104,93,92,99,110,105,95,104,106,99,104,100,117,107,112,85,115,103,102,112,91,111,95,103,108,103,101,101,94,84,105,107,99,112,102,92,101,113,108,89,95,116,103,99,105,96,99,99,102,96,107,117,99,101,104,104,95,100,109,106,109,99,110,106,110,110,90,112,109,94,109,105,102,95,106,95,103,101,96,92,101,100,104,96,93,101,100,120,107,109,102,108,97,101,100,101,102,108,99,106,97,106,105,95,105,99,110,102,98,102,114,97,103,105,100,104,108,110,87,111,100,100,109,101,106,109,93,103,98,104,96,93,105,104,103,109,100,100,111,117,109,104,110,100,102,106,113,107,100,103,108,108,97,104,109,107,107,118,102,98,115,100,94,95,95,99,108,101,109,106,92,115,103,110,106,111,99,104,119,91,103,109,100,104,102,108,97,100,102,106,104,100,99,107,95,118,100,100,108,110,115,106,85,110,110,105,98,111,112,111,105,101,107,124,109,109,107,113,115,106,102,114,103,100,96,100,111,100,118,100,112,108,102,106,96,105,105,97,108,98,104,97,101,92,98,102,86,112,103,98,95,109,97,101,93,112,99,109,106,83,104,105,100,100,116,111,103,102,86,104,70,110,107,104,108,108,101,103,121,99,105,86,108,113,76,108,99,105,104,114,105,101,98,98,88,106,97,96,98,106,99,106,114,99,96,99,109,104,82,109,119,102,96,104,108,114,104,102,90,102,95,104,100,113,96,95,91,105,111,111,104,104,105,113,103,101,90,99,103,105,108,114,112,107,113,102,105,104,100,101,84,115,108,127,112,126,102,131,110,95,112,110,93,107,105,105,130,106,86,103,109,99,104,104,124,103,101,113,107,84,101,109,115,111,114,116,99,113,105,97,117,99,100,105,110,103,105,98,104,109,103,104,117,101,100,95,107,106,102,98,107,94,103,107,100,107,106,96,94,103,134,94,111,100,114,106,88,102,103,78,97,89,101,102,104,120,95,101,106,97,115,108,108,98,87,91,94,100,101,98,95,116,94,108,114,94,108,99,104,128,94,109,98,113,91,92,95,108,111,111,105,99,109,121,102,109,104,111,99,114,106,105,115,86,94,106,107,100,105,99,105,116,103,99,97,91,107,108,114,125,110,91,121,109,101,105,101,104,92,101,101,115,114,95,116,101,110,108,97,110,94,104,107,100,102,112,102,97,103,101,91,98,114,101,96,101,104,99,96,106,83,107,104,114,99,101,93,101,111,101,99,106,105,108,94,63,111,98,99,113,107,90,67,107,115,104,105,102,106,100,95,101,102,118,102,110,101,105,114,107,102,106,107,91,102,108,113,118,108,102,102,98,98,110,113,86,107,132,109,120,109,114,131,121,131,133,136,137,104,117,122,125,116,118,105,102,103,106,112,106,101,110,108,110,95,97,96,103,109,100,117,110,97,107,112,105,97,109,95,104,102,94,89,110,117,108,104,102,113,84,121,104,113,103,100,100,104,124,119,99,109,99,113,131,102,116,103,100,109,95,109,119,107,98,99,90,77,106,106,109,101,112,108,108,104,107,104,117,74,111,96,116,87,102,100,117,105,109,97,100,95,97,112,115,101,107,108,105,109,102,111,108,103,100,121,110,117,110,102,115,116,101,101,94,120,115,118,98,105,110,106,105,115,109,109,107,111,103,105,101,106,112,113,98,112,116,110,113,106,104,90,103,99,105,103,107,113,119,105,116,106,103,113,95,99,107,103,109,101,110,105,108,101,110,104,100,109,104,111,111,108,101,102,104,120,99,108,112,106,102,104,116,112,115,98,106,111,108,111,105,96,102,103,97,113,91,102,108,109,103,104,109,98,113,98,99,114,111,94,106,97,106,102,108,86,107,104,99,98,112,99,105,110,114,113,111,100,97,111,113,108,115,107,108,107,106,99,100,101,109,107,109,102,95,89,109,108,94,108,113,96,119,115,119,98,116,101,107,101,91,105,96,121,91,106,115,99,112,98,102,113,110,109,100,102,106,109,98,95,104,107,100,89,107,112,105,99,113,112,109,113,104,108,105,109,107,121,113,141,98,102,111,102,96,99,120,113,102,99,109,108,111,98,108,105,95,110,113,97,114,109,104,103,106,105,98,108,115,100,100,95,121,99,106,111,87,112,95,105,117,116,94,108,103,109,105,102,107,103,102,106,90,112,97,103,105,102,99,103,117,101,102,100,107,107,103,106,80,96,99,110,118,103,102,113,98,102,102,99,108,112,112,130,102,107,100,102,114,105,108,112,105,118,102,102,97,111,96,105,108,106,101,100,111,111,103,111,104,120,106,99,109,94,103,114,103,87,107,105,103,101,98,106,89,112,109,108,103,114,104,104,111,100,114,100,103,99,101,106,107,102,109,105,99,109,113,89,106,94,93,120,111,107,105,102,95,105,95,108,106,93,97,98,91,109,102,103,92,102,109,99,113,107,109,104,112,105,95,99,101,105,125,106,93,103,102,99,105,110,102,118,116,102,109,104,111,99,113,108,92,106,99,103,104,105,112,105,102,121,113,120,110,108,104,107,108,108,109,85,111,111,94,104,104,103,103,120,97,111,115,95,102,113,103,99,117,102,108,112,94,99,101,104,105,96,93,112,97,116,110,98,91,110,110,105,98,100,116,104,110,128,98,113,107,100,104,109,103,85,115,112,98,89,110,111,100,109,101,105,103,112,115,109,103,108,104,109,121,91,99,113,113,114,106,105,104,99,115,103,113,114,91,113,98,116,98,110,109,120,110,101,101,104,111,104,104,113,92,119,104,109,111,112,110,113,99,112,101,104,104,117,96,109,99,106,102,111,102,107,104,111,106,117,106,121,102,92,97,107,106,101,101,108,109,113,117,103,105,104,105,109,117,100,106,113,106,107,96,104,107,97,101,101,106,102,99,98,107,105,113,106,94,107,106,105,98,87,107,110,97,107,104,97,109,111,102,109,111,96,106,106,109,103,98,99,98,101,100,99,109,114,111,92,103,111,117,87,110,111,105,109,106,106,103,109,108,105,106,109,99,126,116,96,92,111,106,102,99,111,105,120,109,116,91,104,99,104,111,103,112,110,92,110,97,111,83,102,100,108,102,111,100,95,99,110,99,106,103,102,101,101,130,107,98,112,104,100,106,107,99,107,100,93,95,104,109,106,92,108,114,106,88,108,103,106,114,98,102,116,108,120,85,115,110,85,119,109,112,112,113,94,106,92,84,111,98,116,100,106,98,95,101,112,104,111,100,108,106,97,104,109,102,101,112,101,95,108,100,98,100,105,113,105,97,98,104,100,96,102,117,101,94,116,101,101,124,116,108,108,115,114,101,108,100,106,105,94,103,94,116,112,106,117,107,103,111,105,100,99,100,105,102,106,110,101,105,109,109,105,113,98,98,99,111,101,72,89,105,106,93,120,106,102,103,106,91,99,86,101,100,103,116,106,100,101,92,102,112,97,101,104,93,95,104,112,113,95,84,91,113,96,96,113,127,110,110,107,100,101,99,95,98,96,107,110,109,109,99,94,88,99,104,106,105,88,103,95,98,97,96,100,103,119,109,113,93,103,94,91,92,105,92,100,106,111,108,112,92,106,102,95,103,102,112,110,106,101,99,103,98,105,94,102,118,110,97,102,99,118,96,109,101,112,97,101,97,105,102,103,102,100,74,99,91,102,100,106,113,99,95,110,106,94,108,95,97,99,107,91,89,105,104,88,99,108,96,107,100,100,97,100,105,99,125,102,109,98,102,108,100,104,107,102,102,98,100,122,77,97,92,102,99,108,105,100,106,97,112,122,110,110,89,94,102,101,95,106,104,113,99,113,93,95,103,104,110,83,100,109,108,97,90,96,110,114,109,98,108,97,115,102,99,117,99,110,87,125,104,110,106, +607.92584,109,106,108,87,87,117,96,115,104,97,107,91,131,100,113,114,95,119,98,96,101,100,107,111,94,84,98,100,95,83,96,94,119,103,116,86,92,95,114,108,115,113,106,98,107,110,104,118,103,87,113,79,103,96,107,104,93,95,87,104,102,96,87,105,108,112,103,101,90,105,78,92,95,101,105,130,105,84,92,99,96,101,103,100,112,86,108,106,105,107,108,101,108,96,110,102,98,104,105,102,116,85,95,102,75,101,89,95,90,96,104,93,106,109,99,87,100,107,112,111,98,90,101,102,95,113,100,102,100,102,99,105,102,96,103,101,85,96,103,98,109,98,94,96,95,94,106,96,96,111,108,101,103,108,66,101,103,109,110,100,98,91,108,109,103,101,107,110,108,96,114,92,93,98,109,107,100,95,100,90,117,108,107,103,96,80,125,94,108,98,101,109,95,104,107,99,110,95,104,100,98,98,102,103,102,102,90,96,127,85,94,96,107,102,90,108,98,102,97,117,100,113,91,103,100,111,104,111,116,95,97,98,119,108,92,111,109,114,113,104,108,110,109,103,105,106,111,110,111,106,91,98,103,107,113,103,100,112,109,98,84,97,94,112,112,79,105,107,99,96,109,101,115,101,107,109,101,111,98,94,102,104,108,102,117,101,86,110,95,107,104,108,103,98,91,116,118,108,104,110,97,93,104,100,92,126,103,98,93,95,98,106,124,102,98,100,104,99,93,105,88,89,101,98,96,100,104,95,104,118,102,108,106,96,107,98,112,120,111,94,100,84,105,102,103,110,106,92,109,110,105,102,111,93,116,101,106,103,103,92,99,113,96,96,100,107,102,106,104,109,107,98,95,103,101,93,101,99,93,103,96,105,98,95,106,107,98,108,123,107,108,106,113,111,94,100,109,91,102,103,96,113,109,108,105,99,88,114,117,102,102,110,111,98,101,122,96,104,104,104,109,113,91,107,101,105,104,101,94,102,86,97,105,105,109,110,114,110,102,94,89,108,102,103,101,95,93,95,103,107,96,103,96,112,94,104,107,100,110,101,98,109,109,107,103,102,105,124,103,105,105,105,87,95,99,104,104,123,98,105,111,119,114,107,102,92,121,91,103,108,104,109,121,102,104,98,97,102,116,106,99,105,107,107,101,108,105,98,114,99,101,102,109,104,110,105,100,120,104,106,107,97,105,96,108,101,117,92,103,102,96,99,94,103,76,105,98,111,107,123,109,106,107,102,104,100,96,111,115,110,111,104,107,115,105,103,105,92,94,90,104,95,100,102,110,102,103,99,112,99,95,98,111,94,105,92,91,103,106,113,111,106,109,84,94,95,103,123,112,95,104,109,106,100,102,112,97,103,113,107,103,93,97,113,105,95,105,99,99,112,104,109,100,102,99,108,103,85,111,94,111,106,92,111,114,108,99,110,122,106,102,98,100,96,100,106,115,99,107,115,104,98,106,88,104,91,101,98,118,96,101,108,100,95,98,104,97,117,100,122,113,110,103,108,102,109,98,101,108,100,103,107,100,117,101,111,107,112,120,110,113,103,103,101,113,110,97,106,96,113,102,112,84,107,109,115,112,102,99,108,107,105,99,105,104,114,104,103,96,90,107,109,101,97,108,116,102,101,114,108,104,94,108,111,100,102,111,113,109,112,103,106,104,102,102,95,95,95,108,109,107,94,113,104,106,107,111,110,99,91,83,114,112,78,112,97,109,107,111,98,105,97,108,102,67,100,104,107,96,99,97,100,111,106,94,101,104,95,119,105,103,99,105,109,105,98,106,109,100,104,96,113,76,103,112,96,113,107,104,115,101,118,107,96,99,106,97,98,102,87,119,104,94,114,107,110,116,96,104,103,111,114,104,111,122,106,103,103,106,107,111,106,109,102,98,94,106,91,109,108,102,105,107,109,99,108,98,103,98,108,94,127,92,96,93,115,104,92,104,99,107,101,105,104,104,91,91,96,108,117,103,104,107,103,111,102,99,96,112,105,106,113,92,102,110,98,110,111,100,105,102,110,99,109,110,93,103,105,111,104,105,103,110,81,113,93,119,114,101,106,99,101,123,111,105,115,108,100,114,95,92,98,107,108,113,92,98,102,117,101,109,100,104,136,95,110,97,103,104,97,103,99,91,99,108,115,100,96,96,101,104,100,101,93,107,100,96,94,107,103,112,107,90,96,106,111,97,102,104,104,84,105,106,103,91,108,114,88,104,112,104,107,104,106,99,105,107,102,108,96,104,91,104,112,100,89,104,109,99,111,98,101,97,108,99,104,95,90,106,107,95,99,99,102,105,103,114,109,110,95,96,106,104,95,103,105,105,99,99,101,105,97,92,108,91,101,105,110,116,111,115,119,121,101,119,121,114,119,123,138,117,122,125,119,111,106,101,118,98,94,108,119,103,124,102,106,108,115,100,108,88,97,103,102,96,101,113,104,105,112,98,104,93,102,108,119,100,106,114,115,111,104,99,102,98,108,102,100,107,101,99,104,106,94,104,107,98,94,107,102,108,112,102,100,111,106,103,125,108,106,109,105,99,108,104,101,112,88,103,102,115,116,103,105,102,100,110,104,104,114,106,98,110,112,94,106,104,107,127,108,102,100,107,107,109,98,107,100,112,108,119,106,106,116,109,116,108,105,111,84,109,101,103,112,103,115,109,99,123,115,96,101,108,95,96,101,108,103,107,102,91,102,109,107,113,112,108,92,104,111,114,99,109,103,87,108,117,99,99,109,101,107,100,102,102,107,109,112,95,94,109,119,101,105,108,108,113,114,106,105,94,111,97,95,104,102,97,106,113,109,109,99,110,108,113,106,107,111,114,123,109,96,106,104,109,101,98,108,91,117,107,109,108,107,107,97,95,97,98,112,109,102,110,102,104,112,108,106,110,98,112,95,107,105,102,93,102,111,113,111,111,118,101,104,111,109,102,92,99,112,104,115,87,117,100,104,98,105,106,98,106,102,99,91,115,117,102,112,106,105,119,102,117,115,112,103,115,101,105,97,108,113,121,112,112,102,112,106,112,100,107,117,102,103,102,105,113,96,99,111,105,102,106,101,113,95,105,104,100,116,112,106,106,113,97,125,102,110,106,102,102,113,116,116,99,108,103,95,102,104,101,99,111,102,105,104,109,101,91,104,94,107,100,105,104,101,107,93,127,106,116,102,97,111,103,113,115,106,107,96,112,96,96,92,105,101,95,119,103,110,107,104,91,91,107,96,95,106,114,100,95,109,113,103,113,100,113,120,109,90,101,108,113,113,98,115,101,113,106,88,78,96,103,100,106,106,108,86,94,68,100,105,116,106,115,109,105,90,95,102,103,96,106,97,117,104,113,112,98,116,95,96,103,110,102,103,105,91,97,98,101,82,114,111,109,107,110,108,99,100,86,92,106,112,99,100,112,107,103,104,108,104,101,104,91,102,94,97,104,99,96,104,103,94,95,114,116,110,93,98,99,103,109,91,109,94,106,111,118,103,104,117,99,120,105,93,113,105,106,106,101,103,106,103,99,100,102,90,104,104,93,94,106,103,107,113,98,86,95,135,107,105,101,96,105,105,113,113,128,116,99,110,115,102,105,100,111,90,100,94,97,104,113,105,104,80,100,107,106,121,88,115,106,106,107,98,84,95,116,109,113,91,101,101,99,102,99,106,107,99,104,119,107,103,95,101,107,104,99,76,105,95,96,109,109,123,101,96,102,96,108,109,103,110,111,130,105,111,97,95,102,94,98,112,107,94,102,98,104,110,103,107,108,103,99,106,109,116,95,104,99,112,108,114,99,97,114,92,105,121,107,92,104,103,107,104,110,104,104,99,101,109,100,116,106,113,106,107,98,106,102,99,112,107,105,87,103,100,106,89,86,99,85,94,94,104,117,106,105,77,101,104,89,110,101,100,113,91,120,101,107,101,104,99,79,107,105,98,94,102,99,110,108,114,106,117,98,111,101,108,97,94,75,113,111,112,113,95,112,105,113,106,93,102,94,114,103,99,93,96,100,113,87,107,104,99,104,91,107,91,105,109,92,94,96,110,108,107,113,106,103,109,114,114,98,106,95,95,102,99,107,110,109,108,94,95,103,97,125,109,106,100,110,118,107,128,113,108,106,104,99,105,116,113,113,98,113,103,113,106,66,98,111,109,104,97,101,100,94,107,111,109,67,107,99,122,110,110,100,104,106,100,108,101,100,107,95,101,98,106,108,96,98,88,94,105,114,107,99,102,109,93,106,106,105,103,93,88,97,83,105,94,105,107,95,88,111,92,91,107,100,107,111,117,101,110,107,97,97,108,102,112,113,99,123,108,93,105,73,96,120,100,96,106,98,101,99,109,113,95,112,110,108,107,105,111,113,118,109,94,111,121,105,101,111,114,113,94,116,94,103,113,91,118,94,108,105,108,96,112,108,103,111,96,101,106,94,83,101,102,111,91,97,111,100,98,105,100,105,110,101,102,102,98,105,108,98,106,98,91,97,102,93,109,114,118,112,103,104,112,103,102,98,100,104,104,102,99,101,109,111,109,104,101,108,102,101,97,105,100,117,99,108,100,112,99,111,119,91,100,100,95,105,110,113,92,109,103,106,110,108,106,102,108,114,110,90,98,88,109,115,104,113,94,113,100,105,110,98,112,90,91,96,102,119,102,96,83,107,92,102,96,101,94,103,106,110,106,98,98,100,108,118,94,104,97,100,104,99,113,91,97,104,90,99,83,108,94,106,98,109,103,88,104,123,97,103,114,104,115,101,105,103,100,103,109,113,84,106,104,100,105,106,109,102,116,98,116,100,99,102,98,97,94,92,107,106,112,111,111,101,101,110,115,112,78,100,100,103,84,111,88,68,117,106,88,108,107,99,101,115,86,106,100,122,100,116,96,103,96, +608.06689,104,110,94,107,105,117,100,95,96,107,101,106,91,107,117,95,102,101,102,107,109,104,89,103,104,101,91,111,113,106,95,91,103,112,113,95,106,107,94,138,99,105,107,109,90,109,113,112,98,96,119,104,125,98,101,89,105,106,108,99,91,102,104,104,93,112,101,106,92,112,105,110,112,141,106,98,124,94,113,94,111,91,95,101,117,90,107,113,104,98,102,97,112,99,109,104,101,111,109,102,99,99,98,102,111,103,93,117,100,115,110,107,112,98,97,110,95,109,105,101,109,91,118,100,117,108,99,96,123,104,132,108,107,105,108,109,87,107,91,112,102,92,96,115,105,96,114,109,86,106,107,105,110,102,101,106,103,108,109,102,102,100,85,109,104,109,102,100,104,100,98,101,89,102,95,89,106,110,101,128,111,102,95,111,94,118,110,95,106,97,89,110,112,102,102,114,96,96,121,106,113,102,77,107,95,102,101,111,104,112,99,110,109,106,102,102,94,117,109,109,109,107,99,99,94,102,102,107,95,103,100,107,113,106,110,103,127,104,107,111,111,100,109,107,112,110,103,113,104,99,102,102,105,123,105,102,104,116,107,112,103,113,101,101,93,82,107,104,110,101,108,102,94,104,103,105,96,110,99,106,103,100,114,120,113,98,103,99,76,107,110,95,112,111,108,113,133,96,110,105,103,108,94,103,109,106,98,113,120,111,96,109,103,102,110,101,92,93,107,105,98,102,100,99,108,92,100,95,109,115,108,108,107,97,112,104,91,100,100,101,99,105,114,97,98,115,111,115,113,121,110,102,100,118,112,108,105,111,106,110,100,104,114,105,102,99,102,108,107,111,105,105,110,106,117,105,100,111,107,109,99,108,111,114,120,103,102,113,110,104,112,102,103,113,107,108,96,104,111,116,104,106,93,101,110,101,101,113,121,104,97,110,108,120,98,100,91,99,98,102,110,102,103,101,102,113,105,101,85,116,102,98,95,103,113,95,105,136,97,107,110,106,109,72,91,91,105,100,104,112,101,104,107,104,114,101,115,94,112,110,128,106,102,113,104,108,106,114,107,98,105,105,103,104,110,90,103,104,111,106,100,102,115,105,103,99,99,120,108,106,120,102,109,110,111,112,102,112,75,105,131,101,102,111,108,97,107,106,82,93,113,105,102,100,115,113,96,108,104,85,111,100,105,111,96,105,112,105,92,96,107,101,102,97,107,107,117,106,89,102,111,118,98,106,119,99,103,109,109,104,111,112,112,105,98,95,109,108,97,115,112,113,105,118,107,93,106,98,83,105,90,96,88,108,104,104,99,106,107,102,107,100,101,89,116,108,114,112,104,101,109,99,104,95,98,104,110,96,112,107,108,105,111,104,110,113,107,106,105,94,100,114,108,111,112,106,101,109,105,103,107,104,115,100,98,108,98,112,103,121,102,101,112,98,101,95,106,105,111,110,97,108,104,116,100,96,98,97,117,104,100,109,94,102,111,97,99,126,98,106,119,98,121,104,104,109,100,107,108,104,108,104,123,104,101,116,108,113,104,116,117,106,98,104,106,99,104,104,104,105,100,105,112,110,113,93,106,98,109,98,102,95,101,101,69,90,105,114,95,101,94,99,116,91,96,110,110,101,94,110,121,101,104,97,112,95,106,92,96,116,100,95,91,114,94,103,102,97,112,107,109,78,105,96,108,102,91,97,103,112,116,104,114,107,101,104,103,105,111,108,106,107,96,95,89,98,96,99,116,91,111,109,108,109,112,108,108,94,101,102,97,118,108,103,118,113,109,109,116,111,98,104,110,103,117,104,97,100,100,101,99,98,102,104,95,109,100,109,105,95,103,107,100,104,106,110,107,115,103,100,111,94,110,109,113,103,100,114,106,108,108,109,107,109,107,105,103,109,106,114,103,103,105,101,95,101,113,101,110,103,108,110,113,97,106,114,98,111,106,101,92,107,100,97,101,113,109,92,118,101,105,101,103,93,95,98,89,110,109,78,100,107,104,109,103,86,116,104,105,96,105,100,113,114,106,102,98,84,100,102,102,133,103,106,95,101,106,104,98,94,113,117,115,114,104,117,102,99,104,105,104,103,113,105,110,100,108,105,102,121,98,113,101,112,107,94,98,134,108,122,105,102,98,101,101,104,107,101,95,99,107,103,105,108,105,103,101,110,105,99,117,108,117,121,117,111,95,105,112,94,106,101,97,108,95,105,103,96,111,93,118,107,105,81,126,102,114,102,105,104,107,104,104,105,111,87,92,105,107,99,106,103,95,92,112,94,106,124,103,104,117,97,101,105,105,112,114,101,99,95,108,102,105,103,110,112,95,106,105,90,105,108,113,104,118,108,102,108,103,113,125,128,128,128,141,86,133,112,130,100,138,127,100,125,114,124,105,100,106,101,98,127,111,101,105,95,111,94,98,97,100,122,99,102,112,100,87,101,101,107,101,104,77,107,114,101,100,115,116,108,109,109,111,102,102,102,106,108,99,104,104,93,105,107,97,104,105,101,105,106,109,101,105,124,110,97,107,92,107,93,103,104,87,92,92,100,103,110,113,103,100,117,108,97,96,109,107,107,102,114,103,110,90,107,99,102,108,105,111,106,87,106,112,112,100,109,109,103,103,102,101,98,112,108,103,99,95,112,103,103,108,109,85,102,106,129,114,104,106,100,110,99,104,108,110,104,113,97,99,111,112,106,112,104,99,111,104,104,101,102,111,109,103,120,95,120,96,114,100,106,111,111,104,110,113,105,95,116,110,102,109,94,109,101,97,99,97,108,104,101,100,113,96,101,104,101,117,106,108,102,98,101,128,99,104,113,103,97,109,101,109,107,108,111,107,113,113,107,106,100,116,104,84,91,115,101,113,102,96,98,109,102,91,118,103,113,78,115,104,107,109,103,106,100,100,108,100,120,109,101,100,103,95,109,104,118,125,102,112,98,113,108,105,109,91,100,105,106,99,98,95,95,99,112,106,99,107,109,113,96,105,124,105,99,107,109,106,109,98,95,99,109,98,87,136,104,105,110,112,117,111,108,106,113,87,105,108,112,100,103,103,105,102,100,95,83,116,123,136,113,111,107,102,98,113,100,98,112,105,108,108,73,110,107,110,110,110,105,113,109,102,94,100,100,86,97,104,97,96,104,129,97,105,94,107,103,120,106,103,105,112,110,98,91,102,108,96,107,114,99,109,93,108,109,103,100,111,113,90,92,94,98,99,104,117,104,97,102,114,95,116,104,108,109,95,104,104,112,117,111,102,99,78,94,98,126,104,112,117,95,119,108,101,114,120,102,112,106,104,113,116,102,104,106,110,108,105,103,91,99,105,110,109,95,93,102,96,99,99,101,98,99,104,126,111,107,100,103,91,105,99,121,100,104,89,95,105,103,102,98,101,98,116,102,101,95,117,110,100,102,93,103,106,106,87,120,112,86,105,112,100,101,106,95,99,106,108,109,112,91,109,103,104,100,89,115,101,106,110,76,104,105,113,93,103,110,106,106,104,107,110,105,107,109,98,109,109,110,105,104,116,117,93,98,101,106,112,108,99,112,103,101,109,106,95,102,102,111,110,102,91,105,115,110,112,117,108,106,111,95,97,92,109,103,108,95,90,91,120,108,93,100,117,106,94,109,100,76,106,102,128,116,110,103,100,100,109,110,109,101,113,101,101,98,100,109,113,107,104,98,101,103,99,105,105,99,105,107,97,97,112,107,115,102,107,103,106,117,98,100,105,95,109,104,102,111,99,112,101,134,108,142,101,108,106,106,112,108,96,108,98,108,103,103,97,120,101,107,102,113,113,108,111,102,100,98,109,88,109,94,100,109,101,109,106,94,97,105,112,96,107,121,117,107,82,83,93,99,115,100,91,95,94,97,106,142,111,112,95,61,103,106,108,101,113,89,87,83,100,101,102,106,115,102,102,112,100,112,106,95,111,98,102,104,104,116,124,106,97,96,101,112,100,102,122,101,117,99,113,100,124,103,113,122,95,102,111,108,108,109,106,113,96,101,95,102,108,92,105,114,104,111,94,105,112,114,114,98,98,99,104,102,107,93,102,102,113,106,109,105,103,128,93,104,104,115,114,100,107,107,97,106,100,120,100,100,114,104,112,98,117,107,105,103,103,102,117,81,114,83,109,89,100,108,98,114,115,98,99,100,103,113,106,109,102,104,102,109,112,110,108,92,100,111,113,110,106,105,99,106,105,103,101,95,105,95,101,99,103,95,101,100,108,103,113,104,89,105,100,101,94,99,109,117,113,108,109,110,107,103,111,106,111,112,104,108,110,98,96,115,111,113,105,100,88,104,96,102,113,104,116,96,92,108,107,98,109,105,97,119,88,99,117,120,107,109,131,117,105,100,119,118,114,115,103,100,101,100,70,100,102,100,96,102,96,104,106,113,103,105,107,104,108,110,112,103,104,107,102,109,96,104,110,112,98,102,113,92,112,108,98,97,70,102,107,104,98,101,110,107,109,103,129,114,103,105,98,106,102,99,101,98,99,104,105,108,100,102,100,101,91,107,99,104,97,106,103,108,98,96,88,101,113,101,116,103,94,109,90,99,103,80,103,111,121,101,104,105,100,101,102,108,120,104,113,113,116,104,107,97,107,109,94,81,100,92,103,103,107,100,110,102,87,106,96,108,104,108,100,104,108,104,101,112,93,112,107,106,105,117,102,98,98,96,99,104,104,108,106,108,108,100,107,106,102,105,101,97,103,93,88,93,108,108,105,91,99,120,103,90,109,105,105,94,98,110,104,101,113,106,111,98,96,98,94,94,105,97,87,99,98,105,103,122,130,75,110,113,91,104,109,103,100,101,99,95,90,96,112,71,82,119,103,103,101,105,109,102,92,98,110,102,92,93,115,88,103,96,99,97, +608.20795,114,89,95,71,102,106,112,105,111,111,101,109,121,114,115,102,93,94,123,101,115,96,108,85,107,96,109,101,109,96,97,111,104,103,112,106,99,99,101,101,108,123,103,101,99,123,101,103,119,118,99,107,106,99,121,93,97,98,116,94,96,88,102,101,111,99,99,85,101,109,95,98,100,117,100,106,95,113,96,107,102,97,97,105,100,107,101,104,89,91,92,109,97,111,102,86,101,103,111,112,103,109,90,88,105,76,92,116,92,111,109,107,108,109,112,115,97,95,103,109,96,95,109,105,110,105,107,93,101,95,123,101,95,95,108,105,101,103,105,103,89,116,94,95,101,96,98,103,99,97,106,117,106,96,94,105,113,100,107,102,100,99,97,105,103,98,97,103,102,93,97,99,101,96,94,116,100,108,108,105,101,110,95,95,110,104,104,95,100,114,100,105,95,101,98,96,100,99,105,99,102,108,96,110,114,110,93,101,112,104,96,98,97,99,110,98,109,95,100,107,107,100,106,107,103,124,100,105,103,105,96,103,112,91,120,108,98,102,104,100,94,101,109,113,95,101,102,100,103,109,99,107,102,103,107,104,107,95,99,109,98,105,98,105,72,92,108,110,101,97,102,95,111,99,109,98,87,109,106,110,96,105,97,107,120,104,87,109,113,101,99,79,106,101,111,112,112,116,99,105,118,103,104,106,101,108,97,105,93,105,92,102,102,109,104,107,113,109,100,104,109,110,96,100,101,105,105,101,108,103,118,93,104,103,101,103,115,100,96,100,111,116,126,102,100,102,101,103,109,105,103,98,91,112,111,106,115,112,109,110,102,105,106,100,103,105,116,104,99,99,108,101,95,114,110,88,111,100,113,112,102,102,100,91,95,90,99,97,101,102,115,91,100,105,102,106,96,84,105,111,110,110,96,98,108,92,108,102,112,109,97,114,103,104,94,108,98,106,117,107,100,116,106,90,105,97,100,98,98,97,104,105,77,97,105,104,97,100,101,107,110,100,98,97,95,109,102,98,93,110,104,102,109,95,115,109,92,115,105,106,117,113,101,112,107,111,112,110,95,101,109,100,109,117,117,98,100,118,105,105,108,105,114,116,106,105,107,105,108,95,101,102,100,109,99,99,103,108,110,98,108,98,106,99,113,111,113,101,114,100,99,110,99,120,84,116,105,98,101,94,114,98,107,103,95,95,112,102,100,103,107,111,90,106,97,111,91,129,114,104,108,105,92,90,95,102,108,93,110,103,122,107,106,107,106,101,95,100,114,99,108,99,88,106,103,96,99,108,105,113,109,94,107,104,107,113,101,110,101,113,102,92,96,111,105,101,105,113,115,91,112,117,101,113,116,102,108,106,109,95,107,94,114,115,105,108,91,96,87,99,97,104,109,96,103,100,105,102,104,97,101,103,112,94,100,114,108,108,99,111,86,109,102,95,98,110,102,102,108,102,109,109,104,104,101,102,93,90,105,110,102,106,117,102,105,98,109,100,96,99,97,98,87,99,83,104,109,92,109,105,102,109,114,112,100,116,97,108,105,93,106,109,106,101,92,102,101,114,110,91,102,105,114,128,114,105,112,101,112,92,113,91,101,111,106,104,97,106,101,124,104,103,115,97,100,113,92,110,78,106,103,106,98,103,104,122,110,109,107,113,106,117,99,99,106,100,100,126,103,95,120,94,106,93,105,109,112,113,107,118,103,90,118,106,105,102,105,112,109,103,100,114,100,112,98,106,93,101,92,111,99,98,112,104,118,113,98,98,99,97,101,117,101,109,100,111,105,109,117,115,103,108,109,100,104,105,101,100,92,118,103,105,96,95,107,115,109,103,103,96,110,114,101,92,112,107,101,98,115,104,105,115,110,125,104,99,103,100,95,113,104,108,114,99,95,109,105,110,105,101,110,114,116,115,114,112,100,86,98,105,109,103,77,124,95,115,99,112,109,107,109,100,107,98,102,105,90,120,106,103,100,117,105,99,107,105,98,99,94,106,105,111,96,94,107,112,106,113,108,112,111,106,120,113,117,99,103,104,103,102,82,108,117,113,113,104,99,107,92,110,88,106,117,108,125,112,79,100,103,108,114,122,110,117,117,110,109,93,103,120,100,103,100,109,97,102,101,110,115,114,97,101,121,98,109,111,105,94,86,91,115,112,105,94,113,86,92,99,105,124,103,105,104,97,106,102,96,103,108,104,105,95,99,103,104,96,103,110,100,98,93,103,112,102,111,110,98,95,109,105,100,100,108,100,102,103,112,109,109,114,99,100,94,100,112,98,100,107,103,119,94,115,83,104,102,112,100,106,100,96,115,99,97,103,101,109,117,115,107,116,109,107,114,117,106,106,120,134,109,120,107,126,125,115,109,124,134,123,140,135,115,123,101,108,109,112,89,101,102,105,108,117,99,105,118,107,89,104,120,110,99,108,93,106,117,107,105,106,105,87,94,106,107,109,114,113,109,110,98,100,97,114,102,112,98,109,101,98,97,115,99,104,104,113,74,107,104,110,107,102,110,113,108,96,113,97,105,113,109,113,98,103,97,100,105,100,97,124,106,104,108,111,107,106,104,92,110,95,104,113,102,95,101,112,107,115,100,99,110,107,105,108,118,107,99,102,109,113,114,111,105,96,117,103,96,102,109,101,111,91,99,100,104,95,105,103,102,99,117,98,109,103,99,115,113,113,118,107,105,106,113,115,113,91,110,99,119,100,108,125,100,102,117,108,102,108,108,113,100,109,94,107,103,110,109,118,98,113,91,121,97,112,105,104,99,100,97,87,105,94,105,121,108,104,107,108,108,101,96,102,126,115,116,110,97,103,106,110,111,106,122,104,125,100,97,108,104,115,121,104,100,105,100,97,95,110,94,100,101,111,109,92,120,111,106,109,102,120,111,116,111,113,125,102,109,112,101,111,104,112,95,103,104,102,114,107,106,96,103,119,109,106,89,120,112,103,112,108,129,102,113,105,96,104,100,106,102,108,121,107,102,102,95,109,105,105,110,107,115,110,102,95,113,117,113,102,100,100,108,109,111,115,109,112,97,114,102,110,106,114,95,102,107,101,87,106,110,104,101,88,98,113,92,102,103,116,96,101,112,95,102,111,109,105,117,108,105,84,119,107,119,99,102,103,118,102,116,101,99,100,99,107,118,101,100,105,108,111,107,75,106,103,96,120,98,73,122,106,98,106,98,98,115,110,116,99,106,102,102,117,102,114,105,99,101,108,108,94,111,99,107,120,110,104,105,96,121,119,100,111,111,98,106,100,97,95,106,106,98,102,117,92,103,92,102,106,101,95,97,101,108,103,99,116,110,110,104,104,106,105,104,109,108,91,107,102,107,111,96,101,87,109,94,105,98,102,101,102,108,112,106,113,117,97,94,109,104,113,96,100,120,97,104,105,135,97,112,106,96,99,113,96,90,106,112,93,105,97,106,101,99,104,88,109,98,100,98,102,107,89,97,119,100,117,102,105,109,101,103,99,105,109,100,120,100,109,108,107,96,111,119,112,94,106,100,112,108,103,105,106,106,108,107,104,99,103,105,107,106,97,107,106,108,111,111,99,107,99,112,99,90,99,101,114,113,104,111,107,111,102,102,101,113,111,103,90,116,105,112,115,106,111,119,114,108,108,109,111,90,102,103,106,101,97,111,107,104,103,102,114,111,102,106,109,93,99,108,104,89,105,110,109,109,99,112,112,101,112,106,96,100,90,103,105,112,90,114,103,108,106,108,88,105,102,106,109,107,108,105,105,105,111,100,110,104,100,96,117,113,108,102,118,105,101,110,99,70,120,110,111,120,108,121,113,108,108,102,100,106,113,109,112,114,99,103,98,110,102,102,108,111,113,96,100,114,128,102,94,111,110,108,117,98,94,106,106,94,96,100,109,86,117,95,104,109,110,102,107,109,104,99,102,112,110,117,108,85,106,110,111,109,142,91,112,102,104,107,112,95,110,74,107,104,103,103,110,94,109,111,106,106,115,101,104,121,70,105,103,112,107,119,111,107,110,109,106,111,103,110,88,94,109,102,114,96,103,101,106,112,107,95,106,113,93,102,102,111,103,115,102,96,100,89,107,109,109,103,104,103,101,106,95,101,109,97,99,108,111,101,103,107,99,102,101,105,96,111,103,101,102,102,101,102,106,113,115,103,105,102,98,111,109,97,108,112,101,99,113,101,123,107,105,109,105,117,102,112,98,99,103,105,113,110,105,108,100,115,108,118,101,89,113,107,105,108,107,93,101,117,107,102,107,115,103,103,105,110,110,94,97,111,107,110,104,120,75,104,106,102,110,108,106,98,114,120,98,98,110,106,116,119,104,105,106,108,101,104,112,99,115,117,101,102,112,108,96,115,104,109,109,98,101,109,103,105,95,108,113,101,105,106,98,108,105,101,103,103,109,110,108,106,100,97,121,105,107,102,91,96,84,109,110,92,101,96,96,111,104,101,95,112,110,101,114,105,103,71,95,106,95,101,112,102,112,106,107,119,107,104,109,101,110,98,95,103,87,107,111,113,112,98,99,107,98,98,111,69,93,104,100,98,96,96,104,102,114,109,108,110,116,111,118,137,106,114,109,106,104,94,108,104,111,108,110,106,105,108,106,101,103,103,107,107,136,96,103,120,99,105,108,96,100,101,97,113,101,101,111,97,98,99,106,112,101,121,111,112,106,104,103,104,118,110,90,117,98,114,110,103,99,109,86,104,111,109,116,129,102,92,112,109,104,113,103,120,97,107,99,98,106,91,100,106,107,101,103,107,100,85,102,108,94,127,98,109,100,105,95,105,107,103,102,113,103,120,107,96,101,104,118,106,121,88,108,129,125,98,107,99,102,104,99,107,98,120,108,103,102,104,105,123,132,102,107,118,87,95,96,101,95, +608.349,101,93,105,93,84,101,105,101,98,105,100,97,103,107,104,103,93,125,111,100,100,105,91,96,98,100,100,109,104,94,100,99,111,99,108,111,89,117,115,107,104,104,96,104,101,109,104,106,101,143,96,114,105,97,136,99,112,86,121,96,100,102,103,111,83,118,99,111,82,102,112,102,99,113,106,106,102,97,108,110,104,104,100,103,97,99,100,100,94,114,98,96,102,95,108,99,108,93,99,95,112,104,94,98,113,111,100,89,91,96,99,104,109,105,103,113,100,108,113,103,101,76,113,110,96,106,116,98,112,106,90,74,105,112,103,105,113,104,108,94,90,101,113,96,100,99,106,99,117,103,104,96,98,86,116,99,105,94,96,106,102,114,103,107,114,108,99,106,115,98,95,108,99,94,107,92,102,102,107,94,104,118,96,89,102,87,98,104,98,108,105,95,117,111,90,94,103,106,100,107,105,98,107,104,100,122,99,101,111,102,104,106,83,107,98,106,101,111,100,101,107,101,112,100,107,98,106,97,113,101,97,109,108,106,102,108,99,107,108,104,108,90,105,105,91,87,96,105,102,100,99,103,121,92,112,106,110,106,101,102,93,108,97,88,101,106,108,89,105,111,97,98,99,95,108,100,98,99,95,106,105,107,89,110,92,110,84,112,102,119,97,104,103,95,102,112,100,103,105,109,96,118,103,104,113,106,103,100,102,111,103,101,103,109,106,108,106,92,107,113,93,98,99,107,103,102,83,97,104,100,111,107,112,108,111,106,100,103,106,104,105,105,118,96,122,100,100,100,112,101,109,98,94,107,111,110,116,100,97,102,113,105,105,105,105,116,106,107,113,108,101,104,105,102,116,115,98,91,112,96,120,101,108,118,98,104,105,115,95,99,118,103,104,99,103,99,103,99,108,102,109,95,116,105,106,107,92,108,109,106,96,106,110,91,95,101,96,104,107,101,102,98,95,96,101,107,101,108,109,103,106,91,108,104,112,107,100,105,108,113,115,119,93,102,93,108,100,101,101,107,96,101,104,110,99,104,101,107,118,104,110,101,115,104,105,102,106,106,121,109,99,96,103,90,110,98,96,91,112,99,95,117,113,112,100,104,109,107,105,93,110,94,100,110,105,110,103,109,109,117,104,112,94,109,110,100,100,123,94,112,99,100,109,101,108,105,110,97,121,84,104,91,109,93,98,103,106,96,105,102,101,103,90,88,108,108,96,97,105,114,97,123,98,99,81,96,107,104,105,94,108,102,107,104,98,89,100,105,104,96,111,104,81,119,108,99,119,102,113,100,122,105,101,103,102,101,105,110,109,97,101,103,108,100,102,110,121,114,118,99,107,104,102,96,110,109,98,97,102,107,106,100,97,101,111,108,113,82,112,97,106,109,115,108,90,91,116,89,105,105,108,118,101,105,110,101,122,95,117,104,118,111,121,109,100,99,99,104,99,110,107,110,99,97,98,93,107,101,88,103,109,109,107,102,109,98,104,118,98,107,108,114,101,102,90,112,106,92,90,98,105,105,108,103,96,95,94,116,98,94,112,115,98,94,94,107,98,107,105,104,99,88,95,98,108,95,98,119,72,90,99,93,107,87,100,98,112,114,100,85,106,108,118,105,94,117,98,89,102,110,105,81,101,123,95,99,103,114,130,110,109,104,101,109,102,96,110,109,110,108,117,102,108,94,122,97,116,107,107,99,111,93,102,100,104,91,120,105,100,102,94,112,101,99,100,106,98,109,106,100,120,104,105,109,95,110,95,122,103,99,108,103,118,103,98,104,103,101,116,104,105,107,93,117,116,122,104,110,103,100,97,109,106,110,96,101,102,95,68,99,123,100,110,107,98,109,96,112,95,95,100,115,106,107,109,117,113,107,97,98,110,105,104,95,84,119,105,108,106,117,87,108,116,104,104,101,112,112,94,101,90,106,108,105,96,103,111,111,93,107,98,105,86,113,93,100,104,70,107,116,101,124,101,104,101,103,109,99,88,106,106,99,97,112,105,114,122,86,109,105,104,109,97,97,97,103,99,97,110,107,110,120,108,109,93,104,99,98,118,102,101,101,116,106,106,100,95,108,102,109,81,100,108,99,106,99,115,96,99,113,106,103,80,106,132,106,105,98,110,114,108,103,109,100,107,103,105,92,95,104,100,103,108,105,100,117,97,105,109,107,113,115,112,103,92,99,104,116,91,98,101,92,103,110,111,101,110,99,103,113,113,103,104,104,109,110,102,101,107,98,95,103,99,101,107,104,93,112,105,103,107,111,104,97,111,106,106,106,109,113,97,128,108,108,92,102,103,108,111,95,110,101,108,109,105,90,108,89,99,95,115,114,109,98,122,107,98,111,109,117,132,119,119,118,115,138,124,130,111,114,121,124,114,124,114,111,120,106,94,107,106,117,105,107,107,96,100,114,106,92,118,87,112,102,103,103,108,113,87,112,111,92,101,107,98,89,110,97,115,99,101,101,117,110,98,95,109,110,104,109,102,114,108,105,112,110,101,111,113,111,115,109,96,106,107,104,107,104,108,110,109,113,88,100,110,99,106,107,109,104,105,113,118,104,106,98,86,93,94,100,113,96,112,105,95,113,106,108,94,117,110,106,107,102,106,108,109,111,116,114,103,105,99,103,85,111,92,103,116,103,95,104,119,105,110,107,115,94,107,114,103,107,106,106,107,106,104,99,111,102,99,102,102,107,107,109,102,99,86,94,108,108,115,108,111,108,109,100,113,113,113,120,94,107,108,120,92,99,106,95,108,121,102,111,97,107,99,102,115,101,87,112,98,92,113,112,120,98,114,99,102,120,112,91,99,112,128,108,113,109,104,113,114,112,101,116,121,100,109,105,107,107,117,114,102,96,106,106,98,109,108,107,110,108,101,102,93,102,87,97,117,101,121,101,102,95,83,110,101,111,106,108,91,92,102,107,117,98,111,106,116,99,100,96,87,106,120,121,103,106,101,124,103,100,115,108,105,109,109,101,108,100,109,104,104,97,98,90,113,104,107,108,106,111,113,102,104,114,103,114,107,107,107,104,103,100,104,95,109,113,101,101,109,106,103,99,115,106,105,94,109,107,113,101,100,98,94,103,104,103,111,101,111,102,100,107,103,105,102,102,113,116,103,113,117,99,104,96,98,114,99,99,113,106,97,100,104,107,115,119,102,119,105,106,67,102,105,104,100,108,105,96,106,108,101,117,105,108,121,101,105,118,101,103,113,106,104,102,107,102,103,102,103,104,108,122,102,106,109,97,105,99,104,91,106,89,107,96,110,95,91,92,112,114,100,107,108,106,103,116,112,91,94,105,106,102,97,104,103,104,108,103,100,110,107,113,106,103,107,95,106,104,90,112,113,109,101,107,114,105,103,101,102,106,99,92,107,104,117,110,100,109,104,105,100,103,106,102,113,105,110,103,109,88,96,99,107,101,116,103,110,101,103,122,103,106,103,119,102,95,100,108,109,107,122,117,103,92,100,93,118,105,108,103,112,103,109,99,98,119,114,107,108,112,106,123,116,111,104,102,103,106,99,102,108,102,91,83,107,95,115,99,104,106,115,102,110,112,102,95,104,105,114,110,106,102,106,96,100,112,92,106,120,112,107,103,108,106,130,110,99,110,116,106,102,96,106,104,105,110,95,104,102,112,102,101,131,102,89,108,109,100,99,101,102,96,101,104,99,90,111,96,100,115,101,95,100,113,103,107,103,108,106,105,109,92,107,109,106,101,100,103,116,95,102,100,100,99,107,97,107,95,104,111,103,109,95,99,120,115,106,107,100,104,104,95,108,97,110,97,112,99,116,102,109,110,108,100,100,110,94,105,100,113,99,101,103,92,119,97,112,101,113,123,96,107,104,100,113,106,103,111,98,100,106,99,104,110,92,88,116,113,96,108,113,100,106,115,107,103,116,98,102,105,99,108,109,103,113,107,109,98,110,117,113,100,101,102,95,105,99,122,113,99,100,99,102,104,109,117,96,115,101,99,112,110,102,103,102,113,102,102,110,112,112,98,106,109,108,94,105,116,117,104,111,102,116,102,109,109,110,98,104,80,110,94,102,111,100,109,117,105,107,110,114,117,115,101,108,113,99,103,118,107,113,111,114,106,98,113,98,101,112,97,108,113,112,106,111,106,100,95,105,99,120,111,102,91,100,94,119,109,106,101,106,109,97,101,107,107,107,105,102,81,105,99,102,93,105,103,116,96,105,107,96,99,112,115,120,96,108,99,114,103,95,102,92,116,114,108,105,97,105,97,109,94,89,102,101,103,106,103,113,108,110,95,95,121,105,109,102,94,130,109,105,109,94,98,104,106,110,106,113,96,93,103,100,112,103,98,109,108,114,111,109,113,106,112,105,110,110,111,104,102,97,99,108,87,115,110,119,93,105,95,94,103,111,105,104,104,112,95,94,96,111,104,101,105,99,108,102,103,106,114,106,98,113,109,103,98,122,104,103,110,111,94,128,103,110,109,98,104,103,103,112,93,98,121,98,104,104,98,104,107,97,107,102,101,106,103,104,100,104,99,103,111,119,103,106,105,101,111,105,101,99,113,105,100,102,97,96,101,105,82,110,97,114,97,93,112,102,99,100,105,104,112,104,99,107,96,108,113,94,99,103,101,113,100,100,111,99,105,104,110,105,106,103,91,98,110,102,106,100,102,106,95,93,110,111,101,106,103,105,108,124,90,104,100,111,117,103,98,101,111,106,100,96,104,115,107,117,103,103,102,111,107,97,103,109,116,96,112,104,102,102,107,88,100,105,103,113,102,101,93,98,97,97,100,106,111,101,109,119,101,105,94,113,98,83,113,112,99,91,96,108,104,86,102,102,102,108,106,101,109,108,96,105,98,105,117,110,113,101,103,105,101,103,98,116,101, +608.49005,119,91,109,112,110,111,105,95,96,105,108,92,102,99,95,102,97,112,99,89,83,120,113,103,110,112,106,91,101,90,97,98,100,95,106,103,77,96,97,106,98,112,97,106,109,106,93,103,102,104,96,76,110,110,108,98,105,105,101,108,96,96,107,101,96,107,109,109,90,118,109,116,106,100,102,107,111,110,101,104,103,110,116,111,96,96,105,97,106,110,102,99,100,105,100,106,105,101,101,120,96,109,93,102,97,109,108,106,107,123,107,100,113,99,106,99,128,99,102,99,106,99,100,123,99,111,116,108,118,99,103,87,111,112,93,104,98,102,94,109,104,68,102,111,106,95,109,102,100,91,102,93,97,98,94,99,105,98,97,112,103,110,101,100,106,96,101,98,106,102,86,107,107,103,99,103,109,107,110,94,108,104,106,106,100,100,95,81,95,94,107,104,99,105,109,102,103,111,104,104,89,107,104,113,88,111,103,87,117,107,94,98,99,106,94,94,96,106,128,107,103,107,119,94,99,107,115,93,107,77,98,99,110,114,99,112,100,107,98,105,101,92,115,109,98,113,106,96,104,107,106,107,109,109,110,100,99,107,94,102,95,105,100,104,92,113,114,107,102,94,116,124,107,91,99,114,98,105,99,88,94,98,99,108,96,103,96,98,104,101,101,87,104,113,102,106,105,109,100,102,112,108,113,106,95,117,105,104,94,109,103,101,104,101,105,103,102,113,95,112,117,94,103,100,103,98,102,91,107,110,112,96,106,104,103,109,103,106,94,110,113,95,102,117,98,118,109,104,78,116,105,115,96,100,103,106,101,103,118,105,105,98,106,108,105,116,108,108,110,111,105,91,113,99,105,101,101,100,98,99,110,98,105,106,106,113,119,99,102,91,109,89,115,100,89,107,97,98,95,107,111,110,106,84,99,102,95,99,107,92,100,98,107,98,97,97,102,98,104,105,103,100,95,93,100,98,106,109,111,111,92,99,96,108,103,91,94,106,93,105,94,99,101,101,103,111,109,111,114,97,99,92,95,99,105,106,106,104,124,103,100,103,80,109,108,104,98,108,101,114,105,111,109,106,104,109,99,116,98,100,99,96,106,114,102,110,105,105,116,99,106,107,100,108,101,98,73,113,111,116,115,106,113,102,99,112,101,110,100,97,111,104,108,109,104,99,107,110,98,103,109,133,110,108,99,101,110,104,99,89,96,101,102,111,106,112,110,98,108,104,118,113,101,115,109,101,116,106,112,105,105,109,112,97,107,105,113,109,111,99,102,106,101,111,108,114,121,110,101,101,108,100,110,108,111,102,102,102,109,103,74,104,108,105,97,110,100,100,98,93,109,112,103,98,109,100,104,104,107,108,95,104,107,103,101,109,107,101,104,106,106,98,96,94,107,101,103,116,109,105,98,71,79,110,81,105,93,111,118,108,104,103,100,113,102,108,95,105,103,95,106,105,117,103,109,102,113,98,116,107,96,103,99,108,109,106,105,104,100,113,117,104,105,113,92,106,95,104,115,105,102,114,108,101,106,95,107,103,106,110,107,105,108,103,99,118,105,109,92,116,104,101,87,111,101,109,107,102,101,103,106,101,101,92,96,117,107,106,98,106,105,96,101,110,102,95,101,98,99,110,105,109,105,105,98,100,99,99,97,107,96,99,109,102,108,107,97,81,114,99,101,105,108,111,113,119,116,117,105,98,116,111,105,92,97,99,98,108,110,102,104,98,114,121,96,110,97,107,100,99,106,102,99,72,99,114,109,119,107,108,103,104,102,97,100,104,111,103,96,102,106,104,104,98,103,109,105,87,98,106,92,106,129,99,111,107,109,120,106,102,120,117,101,113,106,105,101,106,109,98,119,102,106,103,102,117,110,94,108,102,106,112,104,98,103,103,103,103,103,120,95,106,107,105,99,120,113,115,110,114,104,108,92,119,106,103,99,100,104,110,91,108,120,99,113,104,97,79,108,127,109,107,90,109,115,93,94,103,76,121,103,93,101,95,114,100,99,110,113,110,118,105,111,113,109,92,103,105,100,118,94,100,110,108,113,95,102,104,96,69,112,92,102,83,103,103,106,99,103,107,106,105,107,97,106,95,102,97,104,109,102,95,96,110,96,101,108,105,104,101,107,68,109,93,101,109,102,115,115,112,89,104,126,110,108,102,103,105,90,103,104,111,95,104,111,104,110,103,92,102,97,99,103,95,92,93,104,102,97,97,102,102,120,106,104,99,105,92,103,106,109,118,114,107,107,96,93,105,105,105,110,116,119,98,113,114,107,106,104,106,95,116,92,114,103,94,101,105,107,96,117,112,108,113,114,104,94,95,99,100,108,86,111,114,119,108,103,103,119,106,120,112,113,121,125,123,137,132,110,133,104,128,113,111,104,122,111,112,111,103,108,108,99,105,107,95,105,97,100,74,103,110,100,117,111,73,111,102,99,92,135,109,102,99,104,116,101,104,106,106,111,108,105,98,101,91,105,103,107,117,97,106,89,103,97,115,88,110,104,94,122,110,104,105,108,113,108,102,91,112,112,102,115,102,95,105,103,110,116,100,98,111,104,108,92,102,105,103,112,92,100,103,121,110,109,95,108,98,105,113,99,112,112,106,103,103,98,98,104,102,95,121,103,109,98,102,100,104,114,103,109,103,113,91,106,100,119,125,99,103,109,92,93,106,103,103,108,97,99,102,100,107,109,108,107,106,98,94,106,117,104,107,106,109,113,103,106,104,106,98,110,105,99,105,113,104,102,111,99,108,102,113,111,106,108,110,91,109,109,106,100,106,95,111,117,106,107,100,108,105,91,109,106,95,97,89,104,107,86,101,96,112,108,102,108,100,102,108,110,105,103,97,108,96,102,101,117,94,90,115,108,103,111,113,99,97,96,109,89,102,94,107,98,106,92,100,90,108,115,109,105,112,109,105,104,103,102,105,104,98,102,107,103,109,94,106,103,109,99,97,114,103,97,104,109,119,98,111,99,113,108,118,104,99,104,109,124,107,103,102,97,86,105,103,117,107,99,111,103,106,103,104,104,102,112,109,100,98,104,95,104,110,95,106,88,100,105,104,99,101,97,99,104,78,104,98,98,95,105,106,113,113,106,95,102,106,98,109,107,96,115,106,112,113,102,93,108,121,101,106,105,109,100,103,104,109,99,95,109,127,102,105,118,102,100,106,117,109,109,109,100,102,118,106,104,101,99,99,111,101,89,118,91,110,112,103,100,95,100,107,106,100,95,108,98,97,106,102,101,104,102,113,109,102,104,105,101,108,109,115,109,99,109,100,109,111,111,97,102,103,95,111,103,113,102,99,102,116,106,123,94,105,102,100,106,117,100,111,108,103,103,103,113,104,106,106,98,113,110,117,95,101,103,105,109,106,111,119,98,100,107,93,97,110,107,106,113,108,105,103,90,109,106,112,100,108,104,110,92,111,113,106,110,104,99,112,102,100,99,101,109,100,101,109,103,115,96,119,115,98,108,91,92,117,106,117,100,102,104,108,98,104,106,100,100,99,119,110,105,107,97,113,115,105,111,103,102,97,96,112,98,104,91,94,116,119,103,95,100,90,111,92,113,110,101,107,102,110,106,97,111,103,99,113,105,107,109,106,105,120,113,103,107,98,113,101,109,104,110,105,99,102,103,112,104,118,113,102,105,112,113,102,105,112,100,100,109,123,101,100,93,99,111,107,97,99,105,103,96,89,102,107,108,100,95,101,108,103,104,100,104,106,106,99,107,111,100,112,103,107,113,102,91,102,112,89,115,102,104,97,95,99,99,108,98,84,106,105,99,104,109,91,101,99,109,103,117,87,102,105,92,113,101,108,102,108,103,97,98,101,107,110,109,91,100,98,113,95,102,96,109,106,109,92,101,106,107,96,92,100,101,110,113,79,97,104,116,96,110,103,107,99,96,103,104,101,116,98,98,102,104,107,93,112,102,98,103,104,100,107,105,107,107,101,102,104,109,84,99,89,79,102,84,99,98,100,110,98,104,107,119,97,110,106,106,114,112,98,125,105,112,113,98,87,106,106,102,102,93,116,99,106,102,94,95,102,99,106,104,79,112,108,116,109,103,109,106,109,98,104,122,99,109,104,101,102,116,110,107,115,99,107,95,103,115,99,106,98,103,112,106,105,104,93,108,110,115,105,110,102,103,110,131,114,89,106,103,110,105,101,117,113,104,103,110,99,116,94,96,95,109,100,97,101,97,113,74,96,102,103,101,101,109,99,97,83,121,95,99,104,113,100,113,87,114,109,101,103,105,96,91,107,108,106,109,106,98,100,121,103,110,95,96,115,88,102,103,108,113,105,101,103,108,99,114,96,99,103,98,114,109,106,101,103,100,107,101,114,97,96,113,94,102,110,108,106,102,95,107,117,96,103,99,119,98,100,106,106,112,113,110,123,119,90,98,104,109,98,102,105,113,104,113,103,114,100,102,101,114,105,128,117,111,76,109,98,123,105,113,99,106,112,113,102,117,107,107,103,115,100,115,90,109,108,104,102,107,108,108,114,102,98,98,107,120,105,114,108,110,104,95,111,106,111,106,103,121,107,109,101,100,112,107,106,100,102,110,106,110,102,117,100,102,91,106,106,95,111,96,107,107,113,103,104,105,105,96,98,102,98,113,110,108,109,93,93,110,101,111,105,98,113,97,111,113,110,103,95,109,100,107,117,124,103,79,113,95,102,99,96,100,102,96,112,95,96,102,98,101,110,109,115,108,102,100,108,117,112,95,107,92,101,107,103,103,107,103,96,98,111,102,103,117,62,103,96,85,95,95,100,100,94,110,107,107,98,103,98,100,110,119,102,107,113,92,99,95,107,106,87,110,104,105,99,106,102,104,111,113,98,113,96,98,96,113,96,111,101,95,95, +608.6311,110,101,108,115,121,119,105,110,101,117,81,101,108,107,102,96,103,119,105,101,106,101,100,117,95,100,87,105,98,101,87,102,97,103,115,101,91,91,101,117,100,97,98,99,113,115,102,72,107,103,116,123,118,98,94,103,100,110,98,96,101,97,100,90,93,110,98,103,94,96,109,133,101,109,86,111,91,115,99,106,103,101,99,102,94,92,100,96,87,97,110,113,85,106,103,97,105,113,89,87,94,112,104,102,102,104,103,118,105,93,79,102,99,98,111,103,99,98,106,110,98,101,96,111,103,110,115,95,114,106,115,101,112,109,108,93,100,93,104,102,94,97,103,99,103,101,101,103,106,98,100,110,106,98,105,97,102,116,115,97,105,106,108,96,96,100,102,102,113,104,109,113,105,117,96,110,113,99,100,103,92,103,108,96,101,101,113,95,114,100,111,108,109,100,109,98,104,102,96,108,110,96,99,112,105,100,112,95,105,106,106,103,100,108,106,90,109,108,99,95,110,107,124,97,103,101,108,102,97,112,104,106,105,92,105,99,110,107,94,118,130,109,111,96,98,87,104,96,116,121,102,108,98,114,99,101,109,99,97,112,106,98,98,129,90,110,116,105,99,107,102,113,92,100,110,132,101,100,124,107,95,103,99,100,116,102,98,112,113,106,107,111,106,98,119,106,102,103,113,107,106,109,106,116,101,115,105,105,103,102,99,110,96,107,99,109,126,103,105,111,105,105,106,105,115,99,112,104,104,99,106,109,107,117,97,96,99,114,105,102,101,105,105,107,99,100,105,115,103,101,100,103,104,105,115,92,113,115,112,95,114,112,108,87,105,99,103,99,93,104,99,100,97,103,99,99,99,101,108,104,103,112,99,100,102,95,105,113,96,100,101,112,105,117,99,107,111,112,109,114,106,107,96,106,104,104,106,122,111,101,97,105,108,117,98,98,106,111,110,98,103,100,104,100,114,91,102,90,99,113,103,106,102,99,98,113,95,98,107,113,110,107,111,106,80,100,96,91,104,104,105,102,103,137,108,104,102,103,96,103,99,102,103,112,110,105,103,104,100,100,107,94,103,95,114,99,105,106,111,106,116,113,103,114,99,109,95,104,98,105,110,107,110,103,97,113,104,110,118,108,104,105,99,109,112,105,86,98,116,99,96,111,102,104,104,105,116,99,104,103,100,105,104,111,108,98,112,104,91,111,103,104,107,106,102,107,111,106,99,97,96,113,101,96,107,102,109,103,94,114,101,102,103,117,107,96,106,101,99,122,118,110,101,101,87,98,102,102,98,98,112,100,104,99,107,96,106,105,104,93,103,95,100,96,98,92,106,100,104,106,111,107,102,102,116,113,106,105,123,101,106,104,103,106,100,105,91,102,106,106,106,96,103,110,104,106,101,94,101,101,105,115,112,111,111,104,114,95,117,109,109,104,94,99,100,116,103,100,104,102,99,108,108,108,87,99,88,101,97,117,105,106,105,112,88,104,105,103,104,113,113,111,104,111,102,102,104,104,112,109,107,92,96,105,94,113,105,101,111,100,109,99,104,107,95,104,91,106,105,104,116,109,109,121,93,111,113,109,101,102,105,102,97,108,103,103,101,109,88,104,98,98,89,101,88,106,99,105,116,110,112,88,109,108,108,89,107,102,107,111,85,111,103,108,104,101,106,108,113,87,95,98,102,98,113,102,118,109,91,102,113,107,107,102,86,101,98,108,108,102,106,111,104,108,119,99,101,107,105,109,116,105,111,107,105,104,98,113,108,99,97,120,122,110,107,98,113,111,104,114,100,115,101,107,95,117,95,113,113,102,94,104,107,105,99,100,103,113,111,112,117,111,106,108,120,106,107,111,105,113,105,114,98,84,98,105,120,103,112,110,107,99,109,98,118,99,103,100,98,102,110,99,112,96,108,100,98,94,99,101,109,94,98,102,92,101,112,97,112,103,102,90,101,111,109,97,94,104,112,110,105,112,90,107,90,101,101,105,94,100,104,106,99,107,114,105,96,100,109,102,106,103,106,117,108,103,104,94,102,103,106,110,111,108,102,112,108,96,94,100,103,110,104,116,113,91,104,109,96,104,106,103,104,106,104,100,96,105,104,102,109,110,95,111,88,104,113,103,115,110,111,104,98,111,99,103,105,120,116,111,112,110,107,114,100,114,106,105,103,106,100,110,106,104,98,100,103,105,100,92,102,103,101,98,105,103,101,97,94,103,106,100,99,102,106,103,103,97,102,112,102,94,112,104,113,107,103,99,113,105,98,121,105,104,112,104,105,98,104,100,102,109,105,105,130,104,110,101,112,102,112,101,105,109,108,100,106,113,110,111,109,107,108,93,111,101,105,120,120,109,126,135,102,120,120,125,133,131,123,120,117,123,108,121,111,118,108,105,117,100,91,103,101,109,102,102,100,112,103,104,118,116,86,104,96,99,101,96,97,80,95,99,98,104,116,106,106,105,105,112,107,101,108,108,108,107,91,102,100,96,94,101,96,103,102,109,107,107,98,92,102,110,103,102,89,100,95,103,109,97,101,104,99,103,107,94,93,102,100,98,116,90,96,100,99,112,100,98,106,90,104,111,103,98,112,98,111,98,105,91,109,101,109,100,106,89,106,108,99,102,99,98,86,83,108,102,91,98,96,100,93,88,104,126,90,91,110,99,105,107,98,107,104,109,109,107,112,103,109,98,99,91,102,109,100,122,105,102,113,97,106,101,108,127,102,102,98,104,96,92,99,103,111,102,100,105,99,107,97,98,112,112,95,95,104,107,95,100,112,105,112,108,99,111,93,113,110,101,68,110,100,102,108,101,113,104,105,104,98,104,105,105,103,102,111,96,105,102,95,102,95,99,105,107,106,106,88,98,102,98,109,121,88,96,101,99,91,98,117,108,96,106,101,95,103,108,84,110,108,95,96,103,108,104,91,87,102,110,105,100,114,106,116,108,94,98,100,133,111,115,116,101,101,103,95,117,96,105,105,96,112,101,121,115,105,102,102,117,89,111,105,108,96,110,103,111,106,109,99,104,122,106,107,116,96,97,99,100,105,109,88,109,96,110,95,86,96,106,102,108,89,111,115,112,109,101,96,98,92,92,114,102,102,113,109,102,113,110,107,107,91,99,88,127,95,111,100,100,88,101,106,94,97,113,101,102,117,98,104,95,100,95,94,102,96,106,105,94,109,114,103,104,129,106,112,95,106,105,108,104,100,105,108,95,98,105,134,102,109,95,116,110,106,111,102,82,104,104,101,106,111,88,100,99,109,110,97,107,108,103,105,101,100,101,105,96,109,104,100,92,107,78,102,99,98,106,101,101,102,107,77,106,112,92,104,108,100,117,106,104,98,105,115,95,88,112,112,108,105,94,102,106,98,108,96,106,111,99,108,100,105,112,99,107,84,112,112,93,102,109,95,98,107,94,103,102,112,103,103,105,92,106,97,106,96,107,104,95,110,110,101,111,83,104,82,102,74,103,110,100,108,107,95,104,107,106,92,106,105,97,94,91,95,104,104,98,98,112,103,115,116,108,102,99,97,113,96,99,101,102,103,101,103,94,106,103,100,89,93,101,105,106,103,105,108,117,106,117,100,102,92,94,104,112,104,100,104,131,85,106,94,109,104,113,91,101,95,96,106,110,96,91,121,98,105,100,98,116,106,94,102,104,110,109,96,101,112,101,101,103,95,102,99,106,97,113,92,100,107,84,110,99,101,101,103,97,107,108,100,105,100,105,111,101,105,101,101,93,96,99,97,104,107,107,111,104,103,104,116,96,82,96,102,103,97,117,95,93,100,97,119,109,112,100,102,107,101,100,105,112,104,113,94,75,99,107,105,106,103,101,104,100,113,95,97,103,104,94,91,106,104,108,100,102,93,98,104,99,97,102,107,108,111,103,101,99,95,109,109,101,107,99,111,114,90,112,110,103,92,104,95,111,97,107,91,109,95,104,98,80,108,108,96,100,104,97,111,101,105,104,117,102,108,117,100,91,101,95,107,102,119,96,94,110,100,100,112,97,109,100,104,99,97,99,120,120,97,96,83,108,112,107,105,106,102,102,109,107,103,121,112,107,91,99,97,101,98,110,102,103,114,82,93,112,104,102,110,91,105,106,107,103,105,106,112,109,99,102,111,103,111,98,101,96,102,100,99,100,100,103,103,102,103,85,96,109,106,99,103,99,121,109,105,100,108,106,104,101,98,104,103,101,107,106,89,99,95,105,100,111,104,95,118,105,112,106,90,107,106,97,105,102,107,111,83,106,106,101,102,95,99,101,111,106,116,102,99,100,106,117,115,101,98,110,103,100,94,106,103,106,98,94,113,97,107,107,109,107,115,109,105,113,104,92,102,98,114,119,101,116,107,106,117,110,103,110,99,105,105,96,103,95,121,106,95,112,98,102,102,102,102,107,105,98,94,126,102,104,103,99,106,109,100,117,102,96,99,96,95,99,102,97,116,82,101,95,101,99,100,107,88,105,94,98,100,109,99,95,97,102,117,90,101,98,109,108,102,117,107,105,99,105,96,98,95,106,102,105,109,105,109,104,109,94,100,111,107,99,94,104,93,100,101,108,113,92,109,109,106,102,101,103,106,104,106,114,107,94,92,106,98,100,99,118,114,105,97,109,112,100,91,98,106,108,67,94,99,118,109,98,96,105,105,93,103,96,96,111,101,105,112,105,102,98,97,88,105,108,109,83,95,111,97,85,107,109,107,95,109,80,104,88,99,92,100,95,95,101,107,92,101,116,83,97,104,114,107,107,98,109,109,107,94,88,100,122,116,99,101,98,97,104,96,101,116,89,85,110,115,109,104,107,99,98,78,101,101,100,109,92,103,120,105,97,102,96,101,104,90,100,102,122,91,99,105,105,107,114,102,93, +608.77216,110,93,87,110,101,101,115,103,90,105,106,103,98,96,108,114,116,98,88,104,96,99,109,100,95,103,107,96,104,101,107,110,102,108,115,113,108,110,108,113,110,114,108,105,107,106,99,116,93,102,95,98,99,98,103,114,100,105,105,89,106,98,96,104,102,104,109,103,102,106,111,110,109,102,98,113,101,105,107,110,104,109,106,100,97,107,112,97,89,87,98,109,102,109,98,98,99,96,103,103,105,97,84,122,116,99,122,118,107,116,101,105,112,116,117,100,119,100,98,108,102,119,113,113,117,104,103,98,102,107,100,97,120,102,115,94,117,109,98,116,114,106,101,93,97,112,96,109,99,99,102,101,121,94,95,96,100,90,96,86,96,106,104,109,109,111,91,102,79,110,91,105,113,112,103,104,105,101,110,113,107,110,87,98,98,102,87,103,103,94,105,99,104,96,103,102,104,113,105,95,96,104,110,116,102,115,103,137,104,117,110,99,99,106,106,106,98,105,102,104,120,104,101,109,93,104,97,112,100,107,114,99,105,102,112,95,95,113,114,109,109,106,107,113,118,95,106,119,102,112,114,96,100,96,105,102,112,112,101,107,95,96,97,106,89,120,82,101,97,113,107,103,112,107,107,118,97,101,107,106,95,107,104,109,99,100,93,94,126,109,112,104,113,116,115,78,100,103,102,99,111,107,108,102,81,108,109,102,101,117,89,105,101,116,108,113,109,100,97,119,103,102,99,118,100,101,90,100,112,99,113,93,107,98,113,105,101,94,103,106,100,111,109,111,129,114,109,110,109,115,108,105,121,114,112,102,99,99,98,112,113,98,102,102,107,99,98,106,109,108,111,99,99,97,91,104,129,98,94,124,103,110,100,110,106,116,101,101,102,100,108,105,77,103,100,109,116,103,104,107,100,107,110,105,116,94,95,103,109,98,95,109,117,103,104,105,114,93,117,97,109,117,111,101,99,109,110,100,117,105,110,99,105,113,112,97,105,110,100,80,102,108,111,116,100,104,109,100,138,105,108,99,105,95,113,110,98,106,115,105,98,104,106,92,111,107,106,95,113,102,105,111,96,99,117,104,101,105,114,109,104,106,111,102,87,113,111,103,99,116,102,115,109,101,101,99,105,125,107,103,119,113,101,111,115,107,96,102,107,107,113,102,106,96,97,104,112,105,114,89,96,100,107,126,103,101,102,103,112,103,94,107,105,105,111,106,101,90,102,109,105,112,99,99,99,101,103,93,105,101,119,116,110,103,112,93,105,111,101,95,114,98,96,97,106,114,124,102,104,93,107,102,118,110,109,110,99,103,112,101,99,110,99,104,101,106,113,109,105,109,100,102,107,102,100,102,111,106,116,110,104,103,104,100,101,104,109,108,110,102,110,94,114,106,103,112,113,122,124,100,109,103,99,101,95,120,103,108,114,98,118,115,99,101,102,109,104,97,113,103,121,109,109,95,99,101,105,99,102,104,98,111,104,99,117,99,96,98,105,113,116,110,108,108,105,111,108,93,111,104,109,102,117,108,106,100,113,92,97,102,100,99,106,101,112,99,115,104,98,97,99,103,104,97,100,104,108,109,104,92,121,104,107,105,98,113,105,105,114,94,105,109,104,101,110,96,100,119,116,98,116,105,111,108,98,114,100,107,111,104,106,109,107,114,105,101,112,109,101,105,99,101,89,108,100,104,107,99,104,102,110,112,111,110,89,112,98,99,103,111,111,110,110,103,110,101,107,100,106,104,106,97,100,102,104,102,111,109,111,103,129,107,110,113,90,102,109,112,101,78,102,118,98,107,112,105,104,104,111,106,104,122,92,116,105,109,112,118,111,110,111,109,96,101,106,109,111,101,119,78,111,118,102,107,106,104,111,103,105,117,109,110,106,106,107,100,117,112,112,109,104,105,100,92,103,103,104,103,113,107,86,101,107,101,95,100,88,110,109,101,80,114,95,132,104,94,100,87,114,100,120,123,118,112,101,108,87,100,109,121,117,109,104,117,118,98,108,102,101,106,102,112,115,107,104,102,108,97,103,98,114,97,107,101,108,108,106,99,111,103,102,105,99,107,112,109,102,109,111,104,102,100,120,112,98,112,106,103,103,100,113,104,118,101,103,108,98,116,103,115,111,103,113,107,108,103,113,112,109,110,109,115,117,94,101,102,103,75,110,108,109,104,95,105,103,109,105,96,103,106,105,116,100,92,114,95,106,83,101,107,106,102,106,111,111,101,104,114,104,109,105,102,111,104,101,98,100,100,104,103,102,114,104,98,121,110,112,110,98,107,95,114,102,110,103,106,104,104,101,115,112,123,119,100,114,113,102,105,92,111,106,109,116,105,116,93,121,132,116,123,122,123,120,116,124,136,153,130,127,116,126,131,108,108,121,103,108,121,101,107,110,114,112,107,115,119,113,108,107,106,100,125,113,112,107,111,124,102,105,106,94,96,83,108,109,103,85,98,117,114,120,103,122,101,107,108,104,107,120,90,106,106,110,101,104,110,100,110,103,109,104,117,103,103,117,101,102,94,100,110,102,98,108,109,107,100,96,83,99,87,110,116,104,91,109,94,81,88,103,128,93,97,105,98,104,107,113,106,109,86,103,111,118,121,116,113,133,102,107,95,104,94,96,85,98,98,94,99,101,97,104,100,113,100,103,101,110,102,111,109,101,106,104,91,100,108,103,110,107,99,105,120,93,113,101,103,99,104,105,121,102,111,109,109,108,119,106,101,113,98,87,104,107,100,129,107,120,108,97,91,98,117,101,113,96,125,96,105,107,109,76,107,108,97,108,99,117,125,103,100,108,100,118,112,114,100,99,113,102,112,110,99,83,110,118,106,94,118,99,101,108,99,102,106,106,105,112,114,106,101,99,108,93,125,105,111,113,104,96,114,102,105,99,99,98,105,90,115,104,119,108,106,115,108,105,101,103,100,118,109,87,111,111,112,97,94,100,112,99,107,95,104,103,106,119,119,98,96,104,112,105,99,110,100,109,89,105,108,116,86,95,97,116,108,93,116,114,97,108,94,109,125,106,95,99,104,117,106,106,104,106,107,104,90,105,102,116,102,96,96,84,112,113,101,106,117,106,104,100,109,108,113,102,103,117,102,98,105,108,97,116,87,98,88,101,110,69,106,105,106,100,97,113,99,94,113,108,112,101,105,110,101,92,107,99,111,109,108,101,101,106,103,104,94,91,103,120,107,100,89,95,103,110,102,110,99,110,116,114,89,117,105,95,121,106,104,114,106,120,113,106,101,105,109,111,119,103,98,101,98,109,100,111,110,108,101,100,99,107,100,119,108,99,101,105,107,105,98,129,102,101,112,102,99,107,93,109,100,102,104,108,104,98,91,110,106,102,138,94,97,108,116,107,108,101,106,93,105,110,113,74,114,115,96,100,99,100,106,112,112,104,105,99,91,106,87,105,108,102,108,128,107,114,95,104,95,102,98,104,96,104,102,96,105,103,108,98,106,117,106,115,104,106,106,118,117,106,115,92,107,110,106,91,103,109,108,109,107,101,104,92,116,108,105,112,108,99,91,106,103,102,95,99,128,107,112,116,91,109,101,101,112,112,95,111,101,102,104,102,112,100,97,103,105,111,109,101,91,104,99,101,108,108,98,104,100,109,126,114,104,119,95,111,100,110,115,109,106,111,106,98,98,104,118,105,91,112,117,95,110,103,103,105,104,104,105,109,116,105,98,88,105,106,102,124,111,113,105,105,113,105,103,101,100,101,108,106,103,105,104,108,98,92,102,99,91,98,99,114,107,108,103,99,109,102,109,110,104,99,109,112,103,103,103,101,131,102,111,101,105,97,113,104,102,105,95,109,100,110,107,105,98,102,100,98,109,116,103,114,101,116,99,107,109,139,95,104,90,98,103,103,103,67,91,107,92,103,98,109,96,104,100,108,115,114,101,99,102,109,102,98,111,115,122,109,109,107,117,98,108,104,105,100,100,98,95,86,93,97,111,102,95,105,100,102,105,103,99,94,100,105,103,109,99,107,111,99,97,101,105,111,100,102,96,106,114,107,107,92,104,103,98,102,98,93,98,108,101,110,102,103,106,108,109,97,120,75,100,105,102,107,103,96,105,112,110,99,102,108,101,105,98,100,113,117,104,103,98,116,102,119,93,102,100,103,98,94,101,106,90,97,103,110,103,102,111,85,114,109,108,113,94,98,108,110,112,134,102,101,97,105,95,99,104,104,108,107,113,106,108,104,119,104,84,92,98,101,104,99,99,112,109,106,102,114,102,112,92,97,97,99,100,98,110,101,106,94,99,114,112,108,108,94,113,79,110,100,110,105,101,92,97,114,100,96,98,108,92,102,100,97,105,107,103,91,104,120,108,107,101,101,110,109,111,87,91,106,111,98,101,105,92,104,113,83,109,95,107,99,109,110,109,108,94,102,106,92,102,99,109,109,110,116,96,96,103,99,96,110,109,92,91,97,108,104,95,98,97,101,105,101,95,110,94,106,105,116,109,109,113,97,97,112,99,87,110,104,110,110,100,111,109,98,105,104,104,104,99,104,98,99,108,106,113,106,96,109,104,90,105,105,95,97,98,110,113,104,98,110,95,101,94,98,100,110,106,104,115,95,112,101,109,108,113,119,109,105,102,91,102,93,107,103,104,100,119,95,107,105,96,114,99,99,98,101,113,103,104,101,94,94,101,111,101,96,113,107,95,103,90,106,98,106,100,101,112,105,102,100,103,99,116,99,110,99,90,90,72,107,121,91,97,97,96,85,109,103,110,113,105,107,100,112,110,108,102,99,104,104,105,113,97,99,119,85,103,109,109,98,107,109,94,97,110,114,123,91,101,106,116,100,109,101,97,107,99,84,101,116,102,121,109,103,98,109,97,108,100,111,92, +608.91321,73,93,99,109,94,109,65,97,102,111,103,94,95,104,103,102,100,105,92,99,92,106,102,82,98,110,97,109,122,110,98,101,96,100,107,110,109,121,127,85,114,110,103,104,99,98,82,114,98,125,78,95,104,113,90,92,102,106,109,97,109,96,106,114,100,100,116,103,102,95,107,101,99,108,92,113,104,110,115,100,107,92,103,101,106,108,98,100,113,95,97,110,105,96,110,108,92,101,110,108,107,107,109,99,96,113,105,109,102,96,101,72,108,107,107,108,103,113,95,95,106,88,112,111,104,117,101,95,113,103,100,102,92,110,101,99,82,117,97,101,110,105,99,100,106,101,99,108,100,101,96,105,113,100,98,104,93,109,112,106,90,96,117,104,99,108,93,98,103,100,103,89,71,108,100,103,103,97,108,97,100,99,110,105,94,102,93,108,104,93,109,100,119,114,98,99,111,107,115,117,88,93,99,101,105,105,108,106,108,106,97,124,112,102,101,98,108,95,105,111,87,117,113,107,93,99,112,103,103,115,97,110,113,117,100,100,102,100,104,109,109,105,97,97,101,99,101,92,107,102,92,108,102,104,100,78,102,100,100,100,91,110,105,107,96,95,111,100,123,106,108,105,98,102,108,105,109,104,107,97,109,111,113,105,105,109,98,112,110,106,104,109,113,122,103,106,96,97,107,138,106,102,103,97,92,93,102,115,103,109,96,111,101,105,108,80,87,99,104,86,97,104,99,103,102,123,103,99,109,105,97,110,108,104,103,100,121,113,112,105,106,110,113,109,100,111,98,107,114,111,95,107,103,116,102,102,112,105,107,100,109,112,104,103,105,104,99,119,108,100,105,96,95,99,97,114,114,118,111,110,109,95,116,107,103,103,100,88,103,94,132,100,97,102,117,84,102,97,107,115,90,104,94,105,105,108,87,95,112,102,98,103,102,100,97,99,111,101,105,95,104,107,113,109,95,106,95,101,106,108,101,106,100,94,105,103,95,108,102,84,101,109,103,111,95,105,99,106,106,102,106,115,103,106,102,106,107,112,104,102,98,97,100,106,107,113,115,112,103,102,98,106,107,95,105,104,104,106,120,109,105,99,102,111,100,104,98,105,97,106,110,102,101,106,99,120,98,104,94,87,124,100,105,103,110,99,87,101,91,109,79,112,106,107,104,114,70,106,116,89,106,109,103,104,106,113,100,119,103,111,95,109,119,109,98,83,110,96,100,114,98,104,98,105,119,107,111,107,109,103,111,103,116,105,106,111,108,95,87,118,112,109,106,117,117,109,101,106,115,103,96,104,107,115,95,92,122,98,94,113,96,96,104,100,114,111,109,91,106,105,108,109,92,96,117,109,109,101,110,108,111,105,103,111,100,107,101,98,94,103,107,109,110,122,104,108,90,114,108,99,105,100,84,108,111,80,101,106,106,106,109,101,114,106,100,104,86,93,114,113,101,113,100,99,95,100,97,124,102,108,110,105,84,103,95,119,117,116,107,107,103,104,104,109,97,102,110,107,105,109,89,104,112,101,109,113,105,106,105,111,85,104,102,106,103,100,107,108,111,108,117,97,96,101,109,107,99,95,107,108,95,100,97,108,100,108,96,107,105,120,102,97,102,95,98,107,109,99,106,101,97,94,102,127,95,107,114,104,100,111,113,115,93,109,109,99,111,95,105,101,101,99,101,105,105,124,101,101,97,115,103,98,107,98,114,105,105,109,105,91,91,100,99,78,105,110,99,102,110,100,113,105,102,109,103,104,122,106,109,95,110,105,106,101,103,110,107,106,105,95,107,109,91,98,102,107,99,97,114,113,86,105,100,105,101,99,101,93,104,95,104,107,98,99,114,89,111,104,103,116,94,108,101,96,95,107,100,98,97,102,101,109,103,95,104,104,106,105,117,118,113,99,115,114,101,94,88,87,105,107,106,100,100,96,102,105,102,103,104,103,107,100,97,110,112,96,95,106,99,96,113,107,98,98,101,96,104,100,112,107,102,100,108,104,125,103,102,121,114,109,111,111,106,108,103,106,93,111,108,88,111,117,117,113,118,109,88,107,98,101,100,111,106,112,109,93,100,105,89,107,112,106,111,100,100,106,105,95,104,88,96,108,100,100,96,108,101,109,108,105,95,122,83,95,102,95,92,116,103,104,103,95,114,104,105,107,112,100,106,83,110,116,104,104,105,76,99,96,96,97,101,101,98,96,101,94,120,112,106,103,110,102,103,95,103,111,96,94,111,95,101,119,104,106,96,117,76,100,96,114,104,96,102,94,109,106,97,108,108,97,95,98,106,110,106,105,117,110,94,117,107,114,113,93,113,117,79,102,104,102,83,111,107,110,102,80,93,100,129,121,107,125,140,118,133,114,125,107,117,123,134,116,120,108,107,106,102,90,111,105,104,98,107,104,93,95,106,121,101,98,110,106,101,98,113,115,107,121,97,92,107,107,103,112,113,106,96,101,107,105,109,108,99,98,113,102,99,102,113,105,96,106,103,106,99,117,96,109,104,95,99,114,99,105,119,104,108,112,108,106,129,115,105,110,82,104,110,108,129,106,106,113,116,110,115,116,120,98,105,96,99,95,110,119,100,86,102,113,115,105,121,119,105,115,104,110,103,106,96,105,109,99,98,90,115,100,104,100,126,101,105,95,120,85,112,88,104,114,97,97,83,113,117,106,103,112,124,108,103,107,106,99,111,105,98,92,111,102,115,109,95,93,112,120,99,99,133,109,102,111,98,117,113,108,105,107,110,111,100,108,111,105,71,98,94,96,108,112,112,108,102,115,90,112,99,119,104,102,111,104,120,102,115,98,105,99,115,104,103,112,111,111,104,111,105,106,100,105,112,112,107,97,103,101,112,105,98,104,98,113,108,99,103,101,111,87,111,99,95,103,102,103,113,109,100,98,103,113,120,113,99,115,98,106,114,112,106,99,113,105,93,108,111,113,113,100,99,103,110,104,106,96,97,113,103,106,102,107,119,100,118,104,103,108,112,100,113,116,96,98,107,109,100,108,105,111,106,116,102,106,96,102,110,110,110,102,104,113,102,102,93,107,109,120,103,103,113,103,86,107,110,119,99,95,111,102,117,109,99,111,108,99,105,116,96,102,109,104,100,100,96,109,108,110,108,113,109,104,110,106,105,104,103,109,103,102,112,107,108,103,112,106,106,110,95,100,109,96,110,101,100,116,102,99,102,107,101,120,113,122,107,103,98,97,109,86,107,104,123,99,113,106,120,105,107,102,108,119,104,103,104,114,98,116,130,83,101,117,107,107,96,94,113,113,105,106,111,113,108,101,109,102,135,113,119,103,94,107,111,104,95,99,100,107,108,104,98,109,111,103,103,99,118,113,105,100,97,109,100,104,102,101,109,91,104,109,88,112,109,100,95,129,100,99,128,111,116,107,109,102,109,105,106,101,101,100,112,110,108,112,104,103,106,99,104,93,110,90,104,107,110,108,106,101,102,102,112,93,115,100,112,116,108,85,106,106,108,96,112,111,114,112,105,109,96,110,106,101,105,106,102,129,108,103,123,109,99,107,104,120,106,106,110,96,105,98,101,105,110,87,94,103,97,99,92,111,106,105,105,98,99,117,108,101,98,112,100,113,115,117,103,114,115,113,103,108,101,100,104,88,113,99,101,113,103,109,95,101,105,95,103,106,103,104,104,98,108,100,104,113,97,96,110,109,113,109,119,107,116,99,104,97,99,117,111,109,113,103,105,101,102,81,105,108,112,106,120,102,112,103,104,113,110,109,103,98,73,101,113,103,98,112,100,118,104,93,103,106,103,96,108,102,108,109,112,109,111,95,107,104,106,114,104,98,87,110,113,105,107,106,108,102,103,106,115,106,105,111,102,109,110,65,96,108,95,96,102,99,105,105,104,100,101,114,99,107,113,99,100,98,115,94,116,111,97,109,91,95,109,109,106,99,110,108,108,111,113,116,108,104,107,100,113,111,92,104,114,127,107,99,111,103,96,107,106,104,95,113,96,117,102,98,124,107,103,100,110,107,109,108,113,116,95,115,122,101,117,99,111,114,107,99,106,101,95,118,105,101,109,105,105,109,112,119,111,109,113,110,107,100,105,123,101,117,104,112,114,98,102,121,96,102,96,107,98,99,100,106,113,102,107,101,101,99,108,103,110,115,109,107,100,98,106,105,99,110,125,107,111,116,114,113,107,102,109,106,103,106,111,113,117,113,101,104,99,99,115,109,102,109,110,117,112,102,97,99,97,109,104,108,101,102,89,110,103,103,118,105,94,107,105,105,106,113,107,119,108,104,101,103,105,102,117,94,110,109,91,97,92,117,106,95,100,93,104,104,115,112,95,99,107,116,112,109,102,102,117,99,97,116,94,111,104,103,106,102,115,101,99,96,116,99,95,109,112,127,105,107,92,98,115,81,108,95,102,120,106,100,109,100,109,109,96,104,115,105,120,107,90,96,98,101,105,119,105,97,120,103,105,109,117,112,99,114,110,104,114,108,107,105,93,100,96,118,105,88,106,96,110,103,98,107,113,108,102,103,102,121,91,108,112,98,112,98,104,89,115,73,103,108,103,101,109,106,107,103,101,101,109,104,109,104,106,122,102,112,101,113,103,101,121,120,107,99,104,104,105,95,101,101,106,98,100,108,102,104,108,99,113,99,101,102,108,105,94,99,121,117,96,107,104,107,97,103,99,100,109,106,99,98,65,104,101,110,96,100,114,114,115,106,97,97,105,109,104,103,100,99,108,97,108,104,125,99,106,99,119,93,105,109,97,104,97,97,101,110,97,108,86,107,103,104,107,101,116,106,119,104,101,95,96,109,123,108,93,104,83,92,99,95,111,96,107,98,101,91,95,100,100,100,100,109,90,131,102,113,99,104,113,83, +609.05426,111,88,100,100,87,104,89,99,79,96,80,95,94,98,86,69,98,101,87,110,101,106,110,97,110,105,90,101,96,106,91,100,96,104,115,109,98,113,100,93,98,106,107,102,105,88,81,98,108,83,101,105,105,88,93,98,100,94,105,93,107,98,90,109,103,108,100,101,96,109,110,104,98,108,98,116,104,100,94,95,107,81,95,103,104,95,91,94,97,106,101,97,102,103,101,98,113,100,84,100,88,114,90,102,114,103,108,103,100,99,87,113,108,96,97,99,99,116,96,101,93,99,100,102,104,94,105,97,105,110,103,100,105,101,104,105,105,113,95,97,92,85,102,99,92,95,98,117,107,98,103,104,108,97,96,102,112,100,106,101,98,99,106,106,98,103,98,99,84,100,106,114,77,117,93,102,105,100,105,98,99,125,96,101,110,100,98,90,68,108,98,94,117,92,108,114,113,97,106,100,84,104,107,102,104,120,109,92,93,98,91,107,93,103,101,90,104,98,87,105,102,101,114,98,104,84,104,99,118,103,105,107,95,79,106,94,92,80,101,102,93,98,86,89,86,96,92,99,106,98,103,118,105,64,102,105,102,83,96,107,104,100,97,103,117,101,104,95,109,107,103,94,90,98,106,104,90,103,105,100,110,104,97,99,100,97,96,102,98,109,113,106,103,110,117,102,86,103,118,105,105,108,101,104,91,106,102,100,104,104,86,97,101,103,103,94,105,103,114,106,103,103,110,102,118,100,95,95,110,109,98,76,103,108,98,96,85,90,103,100,100,93,99,103,106,91,91,103,103,109,102,103,97,103,102,95,97,99,110,102,109,108,89,101,104,96,102,105,101,105,121,104,103,115,113,111,98,106,91,108,97,105,98,107,107,107,102,105,88,88,105,94,97,114,100,102,109,95,102,111,111,102,102,105,99,89,111,91,115,97,99,91,99,107,81,102,104,112,112,105,90,109,96,103,101,84,87,99,102,100,98,106,108,92,95,101,97,108,92,101,114,117,95,103,88,110,109,105,103,113,97,107,100,98,116,105,104,88,118,105,105,114,89,102,101,134,98,99,112,97,99,119,105,93,102,96,114,96,98,102,103,111,101,97,103,112,103,99,99,106,113,104,95,104,106,100,104,98,108,99,97,96,100,105,112,107,102,108,122,106,111,110,101,93,118,113,103,96,116,102,105,104,101,99,106,99,101,104,105,99,106,102,99,104,103,110,91,120,104,104,96,110,96,95,111,111,101,99,100,109,97,110,111,112,91,97,102,105,87,94,95,106,100,113,110,91,107,99,94,99,68,94,99,117,114,110,88,102,97,105,106,88,106,100,106,100,104,102,112,100,97,102,105,103,110,112,104,93,106,111,96,85,105,98,96,108,97,93,124,105,105,115,106,96,101,119,110,104,100,88,101,99,109,92,110,111,94,107,96,111,99,104,105,100,88,117,98,95,106,96,107,104,102,105,92,102,100,92,98,104,99,106,107,103,104,97,107,101,100,110,115,121,104,116,101,115,115,113,120,111,105,80,97,95,110,113,103,105,107,111,110,106,120,105,88,98,95,118,122,105,100,94,107,102,114,100,104,105,123,101,89,103,106,94,101,105,99,109,99,97,113,109,102,99,106,95,102,93,100,102,99,106,88,102,102,93,110,98,101,110,104,112,101,96,88,94,96,100,97,108,105,99,113,107,94,109,101,112,88,96,107,102,99,96,93,98,112,113,106,80,95,106,99,100,96,99,90,107,84,104,100,98,104,104,97,111,96,98,101,99,94,105,100,102,98,105,96,105,106,103,97,91,109,113,97,113,104,106,94,113,102,95,98,106,110,93,115,93,114,105,119,96,96,107,113,116,109,102,101,103,104,103,118,105,101,107,127,117,102,104,112,103,105,113,121,95,100,94,94,100,95,101,95,109,91,102,96,108,103,106,102,89,99,105,91,104,99,107,113,74,99,105,98,102,105,105,93,95,109,81,126,105,95,112,113,88,104,98,116,98,106,107,101,98,106,104,106,110,99,103,89,107,108,106,109,91,93,113,100,106,108,102,104,83,121,100,101,87,101,94,94,110,103,102,104,99,113,102,101,105,90,107,111,97,101,108,98,106,99,108,102,101,101,117,111,96,96,103,108,110,109,106,120,109,103,105,106,113,97,122,110,101,108,96,126,107,101,105,104,113,96,104,113,104,124,116,106,95,87,89,104,106,100,97,110,99,122,91,93,97,103,98,109,75,99,112,105,97,92,105,108,104,95,100,100,82,108,109,101,100,99,96,110,105,112,105,110,99,96,86,96,107,104,113,108,112,113,118,102,92,101,111,98,93,117,112,103,109,105,118,110,115,91,104,108,108,112,120,106,125,132,102,112,122,118,122,130,108,112,114,111,109,119,119,122,91,91,101,102,105,103,112,99,110,99,107,104,110,103,100,111,113,104,106,99,99,110,100,102,97,94,104,92,106,105,102,103,102,113,99,107,101,98,109,104,107,94,107,107,94,99,97,92,109,101,105,100,106,103,100,107,119,107,87,118,99,97,113,87,106,107,94,110,111,103,99,98,103,106,116,89,96,97,105,110,106,109,87,105,109,113,109,100,89,109,110,91,104,97,100,103,105,107,105,101,113,99,109,98,111,113,106,89,97,116,112,126,95,107,118,105,102,102,110,106,112,99,97,112,110,120,97,102,100,106,106,104,103,105,107,102,106,100,101,99,110,100,93,73,100,121,104,99,104,104,104,100,117,108,108,105,108,100,91,104,110,115,103,100,105,86,102,92,108,100,99,91,114,98,99,102,120,104,100,105,97,104,96,103,99,100,98,108,115,105,105,120,102,96,106,108,101,110,97,98,112,124,103,99,94,106,104,105,93,113,110,102,100,102,98,122,92,113,110,87,114,103,113,105,108,99,109,108,109,108,100,102,96,89,101,99,101,98,107,107,91,102,102,102,105,123,109,103,116,98,116,124,101,111,103,104,110,102,108,108,103,105,111,101,92,100,110,104,96,68,103,104,106,96,104,106,98,98,136,102,98,114,114,109,102,109,108,99,107,111,106,112,111,106,106,98,113,91,106,111,99,113,104,99,100,106,103,115,111,112,107,99,96,107,95,79,100,106,109,84,110,108,118,102,104,108,104,112,106,105,103,98,107,110,102,108,98,119,109,105,100,106,101,96,100,106,101,96,103,99,104,103,103,102,108,88,98,100,100,96,96,108,97,103,109,101,101,109,104,109,114,103,97,105,96,100,110,100,108,94,115,100,104,106,100,95,99,96,97,98,105,106,111,115,97,101,96,100,104,102,98,115,93,108,115,96,123,108,107,107,102,95,104,101,111,110,111,105,100,97,122,114,102,88,104,102,113,101,99,105,104,105,112,99,110,107,94,100,105,102,129,113,103,108,104,109,95,108,109,104,95,108,104,98,100,102,105,109,105,97,102,109,101,99,107,92,109,121,100,100,104,107,94,93,100,99,109,98,93,108,107,94,117,110,94,109,103,111,102,110,98,105,116,98,119,109,100,104,101,102,106,108,112,98,107,105,121,101,105,118,109,95,107,103,116,101,107,108,112,111,109,106,109,102,100,104,97,102,120,105,103,100,109,116,116,96,98,105,103,96,102,107,106,105,100,99,96,93,103,111,105,101,99,104,117,107,103,104,100,94,98,105,91,105,102,103,98,113,111,113,103,100,105,105,96,112,100,109,114,102,135,101,107,100,104,108,95,100,100,96,101,93,102,99,103,103,99,98,95,99,113,110,102,106,109,108,101,103,102,110,100,116,94,114,109,95,101,109,113,109,110,106,88,101,92,107,81,106,103,95,102,107,96,92,99,102,106,110,100,84,102,121,94,128,104,117,100,107,100,99,116,100,109,109,106,102,105,91,109,105,116,115,100,101,100,97,118,110,105,104,100,99,94,94,112,110,97,115,115,100,101,113,97,102,106,102,120,95,99,94,92,108,103,98,103,114,106,105,117,106,109,107,107,109,111,106,102,112,116,103,101,92,94,111,102,122,96,112,102,107,109,111,103,112,107,102,108,97,121,95,108,113,104,103,99,105,102,106,105,109,104,108,102,109,95,115,107,107,106,107,110,97,111,104,108,94,86,104,104,95,108,96,96,101,108,92,112,103,120,104,117,98,105,100,115,117,99,110,101,106,113,102,107,101,91,106,106,106,109,115,105,110,106,112,102,100,116,112,98,105,104,111,100,116,95,103,99,117,115,99,96,109,113,100,96,101,107,111,106,104,106,94,106,109,98,104,106,114,94,96,101,99,106,108,106,97,101,102,120,114,111,104,111,114,124,109,100,104,108,99,109,91,105,71,108,97,95,106,96,110,103,95,104,113,103,105,104,99,95,105,98,102,115,116,109,108,89,120,105,95,92,107,108,110,95,89,96,109,98,102,107,100,122,107,109,116,103,95,100,98,101,94,105,101,101,100,105,99,101,131,105,98,91,104,101,104,99,98,112,98,103,112,111,111,93,81,103,101,117,102,110,101,115,78,96,99,92,97,97,106,105,96,101,103,113,113,93,99,109,98,103,107,90,95,102,104,107,117,91,106,102,108,103,100,106,104,97,101,111,96,106,99,106,95,113,99,100,100,105,94,104,116,112,91,97,107,103,121,104,100,102,108,108,91,116,103,103,117,95,106,95,102,111,98,100,93,106,116,116,112,95,76,108,112,92,101,105,103,103,107,107,103,121,104,107,98,79,99,86,103,104,108,102,114,113,106,97,104,100,103,116,109,101,119,72,105,116,98,103,107,109,103,108,101,108,101,91,91,94,101,105,104,99,108,104,98,111,101,108,106,88,89,111,106,113,112,108,91,109,109,103,110,97,99,109,107,103,94,104,104,111,107,102,92,89,111,108,101,88,95,112,113,101,107,112, +609.19531,110,105,120,97,109,105,107,108,107,103,100,87,76,113,112,103,107,101,105,104,106,98,102,99,94,105,104,96,106,114,105,97,105,103,109,99,112,97,101,99,94,102,105,99,108,106,101,98,114,112,99,105,110,116,101,77,98,106,104,88,103,102,94,93,106,101,107,105,109,104,112,109,100,105,105,120,95,90,96,110,101,105,97,112,98,106,110,109,99,103,103,110,112,102,85,103,102,108,98,105,108,103,88,100,101,104,101,99,94,110,102,105,105,103,93,111,100,104,107,100,99,94,102,103,95,101,112,117,104,100,98,106,104,103,105,101,105,103,104,96,114,96,100,106,118,99,112,103,90,81,110,101,112,106,100,101,121,101,95,105,110,110,103,111,96,106,97,105,100,115,107,100,100,102,103,96,105,101,106,105,98,105,110,99,98,94,97,103,113,100,100,101,96,110,110,108,109,89,116,109,99,96,107,89,101,100,99,102,114,106,111,106,106,106,95,98,95,104,124,96,112,101,112,112,105,120,105,113,107,97,100,117,112,92,113,103,110,116,90,104,104,101,101,87,97,111,109,106,101,110,102,111,105,106,99,114,106,110,85,106,95,114,87,100,98,103,112,106,113,111,98,100,106,90,99,104,101,114,97,108,108,108,112,108,101,107,98,107,86,105,102,96,116,107,108,114,97,112,100,107,109,94,104,104,102,105,98,109,99,113,93,112,91,112,102,117,101,100,109,94,97,86,104,103,110,105,93,88,109,108,113,110,110,103,107,95,100,96,110,95,114,75,104,105,99,109,107,113,101,92,111,101,109,107,114,91,94,108,103,95,96,98,87,76,124,101,100,101,106,103,111,97,100,109,111,99,102,102,92,110,100,100,95,96,105,108,101,94,99,98,110,101,96,98,108,109,85,103,105,104,113,97,98,106,100,98,103,108,99,95,91,104,107,94,104,101,116,104,104,95,113,97,100,95,96,95,92,103,98,106,92,99,105,98,104,104,105,105,106,102,101,92,104,108,95,113,92,111,111,107,111,117,92,94,110,97,101,103,106,109,107,100,98,74,100,104,105,110,112,101,111,113,108,100,96,109,97,102,95,97,108,95,115,96,114,106,109,100,95,102,103,118,108,98,99,103,99,105,102,109,109,70,100,111,75,96,99,93,99,105,108,103,110,108,103,98,105,102,113,96,109,100,109,106,99,107,110,100,92,108,108,113,96,92,115,107,113,105,111,106,102,99,98,96,108,105,109,104,100,103,105,107,114,100,99,100,117,105,112,94,98,112,106,108,104,83,103,93,97,101,103,109,100,104,100,107,103,106,99,104,109,95,118,95,98,88,104,100,102,109,110,97,106,90,103,109,93,104,110,103,93,100,96,104,103,115,100,109,98,105,120,124,98,98,98,102,98,106,101,111,103,106,98,109,104,110,107,107,138,101,103,108,106,111,105,110,105,91,102,96,104,109,97,109,108,107,117,99,94,107,107,109,102,97,100,97,101,106,87,104,100,106,111,100,99,106,105,109,104,105,103,109,98,108,105,100,87,109,96,101,115,107,110,105,112,99,105,105,92,106,109,121,110,115,101,107,91,113,106,98,113,111,100,111,107,114,98,93,108,111,103,99,110,104,102,87,97,100,86,111,103,102,106,107,92,92,114,91,99,99,108,112,111,101,100,99,100,89,103,105,95,97,99,108,105,102,108,122,108,112,101,94,107,90,101,108,104,109,104,95,109,109,105,102,97,97,96,99,99,99,104,105,110,108,108,94,102,114,99,88,106,92,102,111,113,103,100,101,92,112,104,108,113,107,99,104,99,108,114,103,97,103,99,112,103,97,92,105,102,120,110,99,94,117,109,113,109,119,96,102,98,106,107,114,99,96,111,101,101,110,100,108,105,105,98,118,98,105,105,106,100,105,112,101,100,126,103,101,92,107,102,98,110,106,103,101,101,107,102,112,96,98,92,98,94,106,84,109,108,109,97,113,95,110,111,101,99,101,97,107,102,98,114,113,104,105,86,120,111,108,100,108,106,83,99,97,99,100,103,105,113,105,113,109,114,92,98,104,103,96,105,112,99,107,109,95,90,116,103,112,102,110,107,114,102,106,103,108,99,111,99,107,83,94,98,103,97,100,99,117,103,106,112,109,111,97,99,107,101,103,99,100,115,105,113,104,102,95,98,113,102,109,91,97,96,105,96,91,113,116,97,120,83,113,116,103,102,93,107,109,101,102,100,107,124,100,102,109,109,101,101,104,114,114,111,96,113,90,98,110,102,105,90,103,77,101,103,114,93,100,107,99,102,107,91,104,104,103,90,129,108,109,100,107,113,104,108,115,106,98,112,111,112,102,122,101,128,113,113,116,108,120,118,95,124,123,121,120,113,149,129,118,110,122,111,123,105,91,103,115,110,106,109,95,100,112,102,108,99,102,110,87,108,129,112,104,127,112,112,94,109,113,108,106,113,107,105,101,109,104,98,107,99,90,102,87,104,102,105,107,98,99,108,105,115,109,97,100,102,72,104,107,99,104,110,106,113,122,111,106,102,124,103,102,113,117,99,106,107,103,110,86,114,102,90,103,96,103,97,102,112,95,90,109,101,104,102,105,106,100,113,106,105,101,113,106,104,106,106,105,104,107,106,91,109,111,99,98,100,104,109,103,104,107,95,105,113,110,104,103,103,109,102,102,97,115,103,103,100,104,111,112,109,117,101,117,108,103,120,108,92,126,102,108,118,107,115,105,102,101,120,110,106,117,108,104,96,117,95,102,120,105,109,86,102,113,103,107,107,113,103,129,102,106,111,108,109,106,116,106,104,105,112,94,112,107,105,118,84,111,121,110,107,109,120,91,106,109,107,107,105,92,108,119,106,100,102,113,98,101,121,89,107,127,102,98,102,107,111,101,106,119,124,113,99,102,104,102,108,113,112,109,110,115,112,86,102,100,101,112,110,98,94,112,106,105,93,96,113,106,102,113,106,97,105,111,114,115,121,103,104,109,89,106,102,102,123,108,109,106,104,109,101,106,109,117,94,107,101,110,113,94,104,102,112,94,106,101,106,110,102,100,98,103,97,107,97,104,108,115,122,105,107,81,117,103,116,90,119,98,103,115,100,95,102,113,96,98,101,103,99,108,103,98,99,123,105,106,95,95,108,110,105,108,111,114,104,108,95,112,99,102,102,111,93,113,100,113,102,100,98,104,113,115,103,109,103,103,113,111,104,104,113,99,109,112,105,107,102,115,117,106,101,111,107,94,91,110,102,100,99,95,89,111,104,99,112,97,112,98,106,102,104,108,96,98,105,108,105,97,112,102,107,104,116,100,101,97,78,95,107,105,109,89,105,107,95,125,105,110,112,115,99,112,116,97,103,108,109,105,91,120,98,112,94,104,93,107,92,98,103,106,117,115,100,108,104,112,113,99,101,104,115,107,89,113,114,106,102,98,110,120,117,104,87,107,106,114,111,96,95,98,102,100,106,117,100,99,117,68,98,114,110,107,103,91,122,113,107,101,108,110,108,105,109,118,113,112,101,111,93,117,107,112,117,105,119,104,106,104,114,103,75,105,113,105,105,112,102,95,112,107,100,100,106,116,84,104,111,102,91,101,103,111,114,99,110,108,108,105,97,99,110,105,73,106,107,98,106,92,105,112,104,89,89,101,111,104,104,104,104,110,104,110,106,118,104,106,102,105,100,101,115,104,101,104,105,111,103,118,106,107,99,98,108,101,116,96,97,95,105,102,104,103,104,107,100,99,111,111,109,105,107,100,108,106,116,100,106,111,103,99,99,103,106,115,113,106,112,98,102,99,95,112,91,111,101,95,101,113,106,112,103,98,103,119,113,97,115,111,110,102,101,105,106,110,104,101,98,112,111,105,94,103,103,116,113,103,100,105,109,103,101,107,83,105,112,100,117,94,98,102,110,104,92,113,115,99,108,97,102,100,100,118,98,108,94,73,103,103,102,99,106,105,112,102,100,117,104,104,109,104,101,109,107,106,93,106,110,104,113,97,119,108,104,107,111,111,107,98,108,104,96,101,105,111,109,107,106,107,120,88,99,107,104,107,104,112,105,103,109,105,103,114,106,112,105,111,119,97,96,94,101,105,98,121,99,101,102,102,110,95,101,113,94,107,113,104,104,99,104,103,112,96,95,109,110,96,113,97,102,102,110,96,108,103,113,109,109,107,119,108,105,104,104,110,104,102,109,85,121,93,111,106,97,95,108,78,103,102,104,109,98,103,108,108,100,100,99,103,115,102,118,103,89,107,100,107,95,117,104,92,106,104,113,106,102,94,107,116,105,114,113,113,107,97,100,97,101,112,107,111,109,103,109,113,110,99,115,100,97,96,114,104,102,98,101,107,107,99,102,101,106,100,110,98,104,112,111,90,108,108,100,96,110,114,100,88,97,113,102,107,102,111,98,99,94,113,101,113,108,117,102,102,102,100,100,97,94,117,106,88,115,102,120,95,96,111,105,96,106,106,101,104,106,106,100,118,116,97,96,91,98,104,96,105,121,98,102,111,94,98,112,102,109,101,99,98,102,104,100,109,111,122,103,107,113,103,90,102,112,93,105,95,112,105,111,100,108,121,96,109,109,108,98,104,104,108,124,99,102,107,109,107,99,102,101,114,108,92,98,94,110,110,84,102,107,103,98,96,104,103,113,105,110,105,113,109,101,109,98,104,95,69,112,114,109,98,107,99,109,107,96,111,101,103,99,122,105,107,118,112,99,97,98,105,94,100,102,111,91,111,94,120,101,105,116,100,85,112,96,102,103,97,99,110,96,106,104,105,96,102,105,97,107,95,109,102,97,104,105,102,125,90,107,99,98,113,88,100,112,98,104,120,99,100,88,114,102,113,91,104,92,99,101,93,103,113,86,103, +609.33636,108,103,100,99,85,109,114,113,91,108,102,109,111,122,105,108,111,91,109,109,108,95,79,84,108,105,112,102,109,116,100,113,98,105,122,113,102,114,98,94,112,110,105,100,98,119,97,109,95,104,103,105,117,103,103,98,100,112,99,102,88,126,95,96,99,131,101,102,103,89,118,92,100,106,101,115,99,105,103,97,108,91,103,104,83,102,112,101,113,109,112,106,117,103,96,114,102,103,104,101,102,108,109,101,122,104,109,102,109,95,105,102,102,97,106,98,103,104,101,110,96,110,116,109,111,111,96,129,97,116,113,108,103,108,102,109,95,94,101,96,109,103,92,113,97,107,121,90,102,103,101,107,118,107,96,103,99,100,119,99,102,107,101,102,114,104,103,106,115,108,96,97,103,99,102,98,115,104,116,113,109,109,102,95,103,91,101,69,108,99,102,107,99,109,96,87,115,103,108,116,99,108,109,112,109,93,97,103,115,107,107,111,99,106,99,111,110,109,105,105,98,103,95,107,96,100,107,103,94,105,100,100,100,104,113,104,99,114,107,91,102,108,101,107,99,130,105,92,95,101,111,94,99,108,98,112,90,95,99,96,96,98,116,116,97,113,101,90,104,103,89,108,118,106,110,111,114,98,108,103,99,113,112,99,101,102,96,92,99,100,104,111,110,106,104,109,118,104,103,108,101,102,89,106,95,102,116,117,109,105,98,119,104,101,113,108,92,114,97,108,110,113,113,109,116,102,103,71,125,92,108,120,91,108,108,103,102,105,111,105,100,99,99,102,108,107,109,118,110,87,101,93,96,98,113,96,109,105,94,79,89,103,94,108,109,100,96,119,112,109,96,104,102,106,97,110,110,103,104,103,116,98,107,98,61,95,113,90,109,95,102,114,100,117,112,108,98,106,95,115,100,101,104,100,113,113,105,105,95,104,98,101,95,120,115,97,101,105,103,101,112,104,107,108,111,103,106,109,105,110,100,109,89,99,99,105,101,106,94,105,113,104,106,106,86,112,97,106,118,99,102,105,101,104,98,113,98,97,107,110,116,107,109,95,109,109,99,107,101,98,96,104,103,106,102,97,106,105,104,106,104,114,115,112,98,108,115,96,119,98,103,113,115,112,95,107,93,96,109,104,110,102,107,101,107,109,92,94,95,102,109,106,94,108,115,104,109,99,105,95,96,109,103,100,101,99,112,112,103,108,99,112,105,92,106,108,101,101,109,106,101,107,104,104,113,102,108,118,116,113,112,113,107,114,94,113,100,116,103,100,112,106,107,108,113,105,117,104,105,104,100,102,107,109,102,101,101,111,120,107,106,104,100,104,97,104,117,98,99,110,120,114,110,100,109,111,88,106,102,107,99,82,106,106,117,104,102,117,105,109,110,107,96,107,97,105,105,122,105,113,103,114,107,100,120,96,101,121,95,92,105,104,112,87,93,108,114,106,98,112,109,97,90,120,110,122,98,87,102,117,113,101,98,100,101,108,107,110,140,107,109,108,93,108,100,98,100,96,107,111,107,120,109,93,113,108,102,112,103,108,109,102,99,97,100,104,107,107,93,112,102,111,97,101,99,106,116,106,106,93,107,102,90,104,105,110,113,108,117,103,94,108,100,98,91,110,105,113,104,94,117,101,98,98,105,109,112,99,113,117,113,138,105,98,101,109,121,96,113,110,102,103,125,101,101,109,112,95,107,102,116,101,102,98,109,113,100,107,108,123,118,103,104,100,98,105,99,108,108,102,108,102,112,109,100,110,98,96,118,104,99,107,114,110,107,107,122,110,103,109,105,119,96,115,110,103,91,108,109,106,106,99,110,107,113,110,105,98,107,107,110,112,114,121,130,120,105,117,102,105,120,102,106,101,113,108,102,108,112,108,117,109,104,111,108,125,112,106,109,127,104,96,98,88,99,99,115,103,97,106,113,97,101,103,110,105,93,109,109,110,114,109,111,106,108,105,106,105,112,116,108,96,100,111,95,93,109,95,99,93,97,109,111,108,94,103,99,112,101,98,113,112,106,112,101,109,111,108,91,90,107,100,97,107,103,105,106,106,101,113,107,109,116,110,62,102,99,103,105,114,108,104,106,104,109,86,106,109,106,102,106,89,106,110,98,102,87,107,108,111,106,96,92,112,100,98,113,117,71,106,104,112,111,101,112,113,121,105,111,97,106,101,98,100,107,84,100,106,118,104,112,97,118,99,95,113,92,106,97,109,92,104,105,106,106,109,106,111,98,115,100,100,99,97,108,104,99,100,94,108,98,91,107,99,102,113,106,111,107,111,100,107,95,106,83,104,101,108,106,117,106,113,110,77,111,105,112,111,91,103,99,108,113,111,112,100,120,111,128,92,128,117,106,137,107,125,133,123,127,114,133,126,120,95,112,94,108,99,110,108,122,114,109,115,116,105,98,97,105,105,95,102,105,108,111,105,112,117,91,99,100,103,100,115,106,95,104,99,112,107,95,107,105,100,109,99,124,104,106,106,103,97,102,102,106,101,94,107,107,88,105,108,97,105,109,91,104,104,106,104,106,81,92,101,102,117,102,110,108,98,98,116,109,87,100,108,120,104,98,100,98,101,100,112,94,103,110,99,113,111,103,96,106,104,105,111,105,95,108,91,104,95,105,85,114,98,97,96,109,114,98,104,103,109,83,104,104,101,103,121,91,109,90,101,100,108,82,123,102,111,97,109,90,107,105,110,105,101,98,113,116,103,92,99,96,112,100,101,115,108,99,106,115,110,99,111,98,112,104,111,88,97,116,98,96,103,116,113,96,104,95,102,99,114,103,101,106,107,108,106,112,103,110,103,103,106,107,98,104,107,111,104,114,98,103,81,106,106,95,112,99,101,98,117,95,107,105,109,106,108,124,93,103,101,96,104,100,91,106,107,100,113,98,101,99,106,125,110,109,103,105,106,110,100,87,91,109,92,138,94,99,103,105,102,94,92,99,102,104,113,89,96,108,98,98,109,115,100,108,120,116,87,101,100,111,92,102,97,103,84,113,106,106,99,129,101,100,95,116,112,104,95,104,99,103,112,100,102,100,109,104,112,105,102,110,95,96,100,115,99,98,104,98,99,95,109,102,99,91,95,115,94,100,109,113,101,97,117,107,100,98,102,98,99,106,108,109,109,105,96,99,103,96,104,113,101,107,97,103,112,96,98,100,108,98,98,101,105,85,103,102,112,109,113,100,101,103,100,99,108,96,107,100,102,103,104,115,93,109,94,105,102,108,102,99,113,96,106,95,98,104,108,97,98,98,112,95,106,110,110,112,95,102,103,87,92,109,101,107,92,84,101,108,105,107,113,101,97,114,101,96,103,96,84,102,87,102,107,113,96,101,105,102,96,100,110,95,101,99,102,95,108,99,103,106,103,111,105,102,99,101,108,101,97,90,97,111,98,98,103,97,96,102,97,105,99,99,100,100,103,91,109,102,93,100,93,123,103,95,95,101,100,103,94,104,94,125,102,100,92,106,106,96,98,100,108,99,101,101,100,115,113,103,108,87,110,112,105,96,109,103,106,96,99,101,102,102,105,104,102,104,91,118,110,103,103,104,100,105,108,101,133,102,97,106,103,102,102,108,102,99,108,99,100,105,100,110,99,96,95,96,114,108,98,101,101,88,109,107,103,102,107,100,111,81,100,102,107,96,96,91,114,106,109,96,91,103,101,93,104,109,96,105,103,109,104,109,105,113,126,100,110,107,99,99,106,100,108,103,103,104,102,102,107,101,106,94,101,113,101,114,95,106,111,97,103,101,95,98,109,98,106,112,98,103,114,99,116,100,100,111,97,99,108,95,92,117,106,105,112,100,103,109,109,99,103,102,107,109,118,113,107,112,112,106,98,94,105,106,104,106,112,101,92,105,112,84,105,105,92,103,98,107,106,95,101,105,95,98,104,103,96,103,101,109,106,94,106,97,84,100,97,96,106,107,107,131,107,89,97,96,100,100,96,113,104,108,96,96,102,114,105,102,109,105,96,95,93,103,102,99,109,102,108,98,110,104,101,115,101,110,100,85,96,108,85,106,91,104,101,98,97,99,93,107,108,98,83,103,113,97,98,116,102,109,118,98,98,111,103,95,103,113,84,96,106,100,96,102,104,105,97,97,99,99,106,103,115,83,103,101,100,103,101,100,102,102,103,102,105,106,108,114,103,112,107,101,105,110,105,110,109,93,103,113,109,103,100,95,116,114,93,98,102,98,100,94,110,92,95,104,96,109,108,102,108,95,104,98,101,103,111,106,107,102,99,107,100,98,92,104,106,93,106,99,111,69,100,100,98,96,105,104,100,111,102,106,90,98,106,116,107,108,104,100,103,111,101,105,100,94,103,100,98,99,93,97,110,103,104,99,111,89,103,84,95,110,107,99,102,102,96,113,99,87,116,100,112,94,98,99,82,107,100,106,106,91,97,107,80,100,108,107,99,105,93,97,103,108,110,103,100,96,104,104,100,105,105,97,106,102,93,101,109,100,96,111,96,113,96,97,97,99,93,109,110,102,109,104,101,104,107,97,98,110,101,106,102,99,107,92,110,102,108,99,113,103,95,95,112,109,80,104,99,110,107,109,98,119,105,108,97,94,107,99,107,86,103,109,105,100,99,104,98,102,87,113,96,92,103,108,99,100,113,96,106,105,103,91,93,110,99,106,113,109,128,106,113,98,109,97,90,94,106,110,99,96,95,103,99,113,105,94,112,105,96,97,87,104,87,104,83,102,94,119,98,100,106,104,94,112,100,103,110,109,104,110,94,97,100,102,101,101,80,103,102,97,86,95,121,107,108,109,89,102,103,100,100,84,97,100,107,107,68,111,116,93,103,110,91,100,87,104,127,106,104,109,113,102,84,105,107,110,110,115,94,95,102,87,99, +609.47748,91,98,101,101,109,120,96,108,101,101,112,121,101,112,91,110,80,119,96,106,105,105,93,107,100,112,103,106,102,117,105,112,98,104,113,117,116,110,107,103,122,102,100,102,102,112,86,99,101,98,105,106,114,79,103,107,110,96,111,100,92,88,97,97,123,122,100,97,109,99,103,104,109,103,95,113,105,117,111,118,119,101,82,109,104,94,114,106,120,91,102,96,105,106,101,94,88,105,99,104,113,106,100,116,103,100,109,92,95,109,92,109,104,124,96,98,98,99,103,96,118,98,98,104,103,108,117,97,102,109,98,118,105,111,97,105,101,111,104,101,90,105,105,106,95,106,104,102,92,104,94,108,92,100,96,101,118,106,105,108,122,104,102,108,106,93,96,94,107,110,109,104,114,102,107,99,113,88,97,97,106,109,112,106,94,113,108,104,113,115,102,103,103,96,92,79,105,109,109,112,101,120,111,107,101,106,86,109,113,107,108,106,93,109,131,110,105,109,94,110,111,97,91,100,100,113,109,86,102,107,128,113,106,109,109,103,97,100,112,117,107,98,113,97,119,108,111,104,104,115,100,105,108,92,101,98,106,103,102,114,101,107,113,103,104,130,111,113,103,106,105,100,91,110,109,105,98,105,115,100,106,89,109,104,117,140,99,107,105,97,100,105,103,112,115,113,110,104,108,98,90,106,103,112,124,102,109,110,108,115,98,119,106,108,106,109,103,109,110,114,100,105,110,109,107,102,106,100,107,121,106,105,109,103,109,99,102,102,98,114,99,110,113,102,107,100,101,121,108,99,128,99,100,94,112,115,117,105,107,111,105,112,103,103,100,106,100,113,101,106,101,106,110,100,116,92,106,101,112,110,110,113,103,94,100,104,111,100,116,102,118,99,96,114,102,106,99,107,95,103,108,104,110,100,102,102,98,116,103,103,101,105,99,120,100,101,94,101,106,95,108,92,120,133,94,103,96,109,108,102,104,99,102,111,105,94,115,100,96,107,109,93,101,100,94,99,98,106,105,112,97,102,114,113,122,94,103,104,110,103,103,109,98,101,77,104,107,91,101,92,103,108,107,113,104,109,99,111,107,109,117,104,111,98,103,94,114,106,105,88,112,109,109,93,100,103,98,104,99,106,105,103,103,111,103,108,106,108,113,104,106,114,105,110,99,102,117,99,104,91,98,111,123,109,94,104,119,124,92,95,114,104,105,99,108,105,111,104,96,96,97,107,87,106,106,120,112,101,115,115,103,108,106,110,96,105,100,96,113,113,93,114,104,110,94,91,107,102,100,99,78,96,99,104,99,101,90,106,99,93,102,111,102,87,101,106,117,103,108,121,112,98,101,110,102,75,98,112,97,112,92,111,117,95,109,105,91,113,111,98,101,98,105,109,115,105,103,102,104,100,95,99,105,113,116,113,114,103,105,103,105,103,99,90,95,103,104,103,107,106,108,117,110,99,101,106,105,101,100,113,106,98,97,99,106,104,109,114,100,102,105,95,100,108,96,104,117,95,108,107,118,110,107,95,97,113,111,106,107,102,105,100,105,106,102,98,104,117,95,97,101,102,102,102,131,100,102,104,105,124,108,106,107,100,98,108,113,111,98,97,104,105,99,93,106,108,99,118,99,100,99,108,94,115,95,105,95,110,98,102,112,111,109,113,102,103,111,104,125,82,104,107,105,92,101,106,97,104,103,99,104,98,100,99,102,103,111,103,123,112,100,105,103,105,97,109,99,102,101,101,108,110,109,97,95,106,112,115,103,103,106,99,113,100,103,113,108,107,99,106,112,98,102,114,101,98,103,107,112,103,109,101,104,97,107,110,102,106,103,99,110,101,99,106,104,103,113,109,106,98,106,106,110,114,102,107,110,105,107,113,101,100,106,105,109,113,118,101,125,120,106,106,109,104,111,100,102,104,95,100,104,101,101,111,109,106,105,111,112,114,90,100,109,99,100,103,102,110,111,112,103,102,110,97,94,102,104,104,94,80,108,101,113,113,101,103,103,118,103,108,118,110,114,107,98,103,110,103,103,100,106,99,117,118,100,99,95,118,113,105,99,107,114,77,105,104,102,113,107,103,113,114,107,99,106,100,100,89,106,104,105,110,92,116,104,105,116,88,108,112,100,107,110,107,98,101,109,102,96,114,100,111,107,115,111,82,108,102,97,106,113,108,91,98,103,98,108,102,98,113,98,98,103,109,111,111,96,100,100,98,105,100,101,102,105,98,93,90,107,102,108,101,103,89,107,104,103,90,100,110,114,98,115,104,116,113,107,106,100,95,104,99,105,110,116,103,93,104,90,86,109,111,112,107,103,115,111,99,109,107,101,109,112,110,108,109,107,112,115,129,121,117,128,118,122,114,106,112,121,114,103,141,118,117,97,121,116,98,108,114,103,108,114,106,109,106,111,105,126,108,103,118,105,103,99,110,114,112,110,98,98,125,104,90,104,106,106,109,116,116,96,106,91,111,110,102,101,99,114,111,98,106,119,103,112,103,110,96,106,108,112,110,117,103,105,107,113,98,89,114,120,103,100,104,106,117,110,107,105,105,109,104,114,101,124,99,89,100,100,109,110,101,103,112,107,96,90,120,106,103,99,111,115,114,106,104,113,102,97,103,106,97,108,105,109,110,99,102,118,117,98,99,91,102,104,132,110,96,120,104,102,95,105,106,101,104,107,105,102,106,94,99,100,109,100,117,114,93,104,86,125,107,113,107,105,109,113,122,101,105,109,117,76,125,117,109,105,111,102,105,100,115,104,82,100,101,100,107,99,99,95,113,103,100,109,99,115,103,98,123,107,103,99,111,109,78,108,108,96,102,102,106,106,102,93,107,106,104,106,103,107,104,107,106,105,97,99,110,119,102,109,114,115,100,99,98,111,114,109,104,99,108,104,101,102,107,103,100,97,115,116,112,103,113,105,111,111,94,107,102,102,109,97,117,101,91,106,117,107,102,106,101,114,109,110,112,107,102,103,81,116,109,99,106,113,105,110,106,107,103,104,105,103,107,109,135,102,115,106,107,65,99,113,86,118,105,92,104,104,117,109,107,102,104,98,111,89,102,109,104,121,103,106,106,105,112,69,100,103,112,122,106,105,102,123,101,102,108,94,87,101,102,104,109,111,111,97,105,108,113,101,94,105,107,96,104,107,104,111,108,106,101,100,106,108,101,95,101,110,94,103,92,100,99,117,110,95,89,103,103,110,114,107,99,103,114,106,104,115,106,109,106,118,84,105,108,99,108,93,102,105,114,106,108,103,101,105,110,103,101,113,97,109,110,100,93,110,103,100,103,106,106,93,112,114,122,94,101,113,105,97,99,103,93,101,106,107,105,100,98,108,105,110,109,105,106,95,104,96,100,106,107,111,103,107,113,118,89,102,107,104,108,102,108,112,108,101,94,100,106,99,117,97,94,92,92,99,90,104,105,101,101,104,110,94,100,102,108,104,107,105,111,111,96,111,106,104,112,109,103,100,96,101,110,104,104,107,96,96,101,108,108,111,128,103,95,107,108,102,106,116,90,120,127,110,103,104,100,107,110,115,108,114,101,106,107,110,97,102,105,99,108,100,118,99,107,106,115,106,100,88,118,101,108,112,119,115,100,102,112,110,102,123,108,114,104,101,107,106,116,105,118,108,106,90,111,111,109,117,101,113,115,105,108,97,112,106,104,106,99,101,106,112,109,93,109,101,113,102,85,103,106,100,109,95,111,107,109,113,102,113,98,106,93,103,94,104,102,113,91,113,94,115,106,104,103,110,107,115,124,110,108,103,110,95,109,114,107,106,109,117,102,108,93,101,130,110,98,99,110,117,101,94,119,107,106,101,103,110,115,106,101,102,113,94,107,105,108,112,95,100,114,94,91,98,103,113,103,103,102,107,106,103,104,103,110,103,96,104,109,117,110,103,112,94,99,108,94,108,119,116,97,99,99,98,103,109,98,84,102,110,102,102,103,110,105,103,103,91,115,113,106,100,134,100,99,121,110,110,102,111,108,111,101,113,113,112,100,102,104,106,107,95,96,99,104,92,98,99,104,108,108,111,106,115,108,99,100,104,103,117,103,96,108,120,87,110,100,113,98,103,102,101,94,104,101,112,104,102,96,102,102,102,120,115,111,108,103,100,117,89,102,99,98,106,98,100,105,96,96,116,106,100,95,100,103,99,112,104,97,98,101,106,111,131,97,68,97,101,99,103,94,112,100,109,102,100,120,106,94,99,92,106,105,96,93,100,99,100,98,97,110,111,108,111,111,80,99,99,112,104,103,100,84,92,106,98,106,111,102,101,95,96,89,113,110,105,114,98,98,104,91,107,114,110,88,113,90,101,103,104,104,100,118,104,110,110,104,111,99,101,120,114,108,98,86,107,120,105,99,102,98,94,115,93,110,96,107,112,100,122,108,109,97,103,84,102,100,102,107,84,85,89,109,112,106,98,99,106,97,107,101,103,110,103,108,102,118,103,111,109,87,109,101,111,103,95,107,97,109,109,103,113,96,100,114,97,103,102,99,111,111,95,105,112,93,102,99,111,95,111,115,112,110,100,122,95,110,96,99,99,109,97,121,102,101,108,103,101,110,105,105,104,118,88,117,112,102,97,97,110,86,103,106,98,93,120,108,120,105,87,107,122,104,101,103,98,108,105,102,101,97,103,109,98,106,100,116,121,111,113,106,98,113,100,100,113,95,117,111,91,104,111,106,102,102,76,104,108,103,117,122,96,109,112,109,113,102,109,98,111,100,109,108,88,118,116,105,104,94,107,100,108,107,124,115,89,95,84,102,104,90,101,96,119,100,119,102,92,102,108,115,86,107,93,106,101,95,86,100,97,100,108,111,100,115,100,110,104,102,116,104,100,94,109,100,108,117,108,102, +609.61853,100,99,102,100,87,109,114,112,108,114,102,104,93,106,120,113,104,103,109,101,98,105,104,102,99,88,115,103,109,111,106,117,102,105,125,112,103,94,103,115,102,106,125,105,98,115,113,100,88,95,96,104,108,101,96,103,103,91,104,98,105,110,97,98,120,104,109,85,113,103,101,103,98,106,113,103,96,108,96,112,86,109,103,102,100,110,111,109,112,92,95,98,108,112,102,103,110,100,106,92,106,115,105,96,118,121,104,86,105,104,104,110,126,103,106,102,95,106,108,114,105,102,97,112,109,117,82,88,105,106,108,95,104,98,99,112,93,109,107,102,101,113,94,116,99,100,92,98,105,96,109,104,107,108,109,113,107,105,108,103,109,101,105,94,98,110,112,110,116,113,105,105,107,111,87,103,112,95,106,109,113,97,95,105,108,104,112,103,102,97,99,112,108,108,103,112,108,120,102,103,108,95,104,99,104,112,107,117,116,112,87,124,105,115,99,108,105,107,105,112,105,109,108,99,103,102,101,99,118,107,102,103,111,110,103,110,105,118,99,100,111,105,120,105,105,102,103,102,103,99,105,115,115,105,91,113,102,109,104,107,106,95,90,98,112,105,109,99,94,117,111,119,109,94,101,115,110,81,106,120,99,104,106,103,104,114,82,102,105,118,97,92,119,121,98,112,105,105,103,109,109,110,95,110,96,103,106,101,92,107,98,120,111,116,109,98,102,105,104,107,106,89,96,107,102,95,99,100,107,106,113,101,116,109,101,109,102,88,104,113,98,99,105,106,98,116,120,115,102,104,115,107,103,106,109,118,103,103,110,117,103,116,99,106,105,99,109,100,102,112,106,103,114,102,111,114,110,100,98,99,115,106,109,118,103,116,92,122,92,99,122,101,101,109,105,107,97,121,88,109,101,112,99,95,104,117,105,97,96,99,101,100,105,111,113,96,97,109,115,104,113,94,112,105,111,104,94,99,105,107,107,127,109,100,108,108,107,118,94,108,109,98,82,102,94,99,104,130,109,112,89,108,105,110,94,97,99,97,101,97,90,109,109,109,108,109,96,104,103,106,102,126,100,97,110,95,105,107,110,113,118,106,113,105,99,89,96,107,89,105,112,115,97,106,107,109,120,114,99,114,103,118,101,116,100,101,111,106,109,106,88,110,95,109,101,117,112,109,96,101,103,99,97,106,100,95,102,101,100,109,108,119,100,106,102,114,112,107,113,110,103,100,105,99,112,102,107,105,110,112,111,99,95,110,86,112,117,110,108,106,103,98,104,103,96,112,112,103,100,102,105,99,117,101,105,116,109,107,110,105,114,94,101,106,96,95,113,95,111,111,114,109,109,103,101,117,97,103,113,109,111,108,114,97,104,114,105,99,108,104,105,112,114,108,96,104,107,118,116,100,112,105,105,106,109,110,117,117,112,114,99,130,102,112,112,107,106,109,109,97,100,104,102,110,97,110,105,96,118,97,116,108,97,138,105,103,109,109,104,104,117,106,105,95,121,106,106,98,92,104,128,103,107,96,104,106,118,103,120,113,95,94,113,93,99,97,104,93,112,102,109,101,116,105,109,102,107,114,117,112,96,106,103,99,104,106,116,110,105,113,110,98,98,106,103,110,119,112,94,122,112,117,106,85,89,101,106,111,120,109,113,115,99,94,100,108,113,99,111,102,110,105,99,100,120,105,99,120,113,99,103,100,106,115,117,111,86,116,111,113,98,101,102,106,103,107,92,109,98,102,107,102,114,104,102,99,106,103,109,102,103,100,97,106,113,108,98,117,112,108,120,112,105,109,113,109,84,114,120,105,110,105,106,104,104,118,101,90,117,101,107,118,103,100,110,114,108,104,106,100,114,106,102,105,105,110,118,94,110,105,112,108,101,104,106,104,103,102,104,100,107,117,113,97,76,100,99,103,92,102,111,87,112,96,91,112,103,109,100,94,109,100,100,105,103,99,106,104,107,105,110,109,109,116,100,103,105,99,104,104,108,103,105,118,110,107,104,109,107,106,95,110,103,98,109,100,96,110,105,107,108,106,116,105,112,107,105,94,104,88,104,108,109,113,109,102,96,104,104,111,106,105,109,102,99,102,102,100,98,106,103,104,106,110,98,103,108,103,103,112,118,90,103,107,109,111,100,108,104,106,109,86,124,108,102,112,120,112,104,100,115,88,102,99,113,99,93,102,102,98,101,104,105,100,97,99,103,98,101,104,97,101,112,102,103,105,91,104,99,119,103,106,99,116,98,110,104,107,98,109,114,100,108,96,107,103,121,100,95,100,101,109,100,91,71,122,104,99,106,104,115,112,110,104,112,115,102,101,116,100,108,95,113,111,109,106,106,104,106,126,111,109,118,120,145,123,112,115,128,126,125,138,115,124,114,121,118,115,115,111,113,118,107,105,111,120,99,112,108,101,109,103,108,106,112,116,99,109,103,104,113,108,105,101,103,104,103,115,107,117,112,116,77,102,110,107,108,102,99,110,108,111,102,128,110,108,95,97,104,109,108,114,99,120,105,100,90,106,110,107,103,109,104,108,95,109,103,114,102,124,101,106,108,102,125,102,103,91,109,106,110,99,98,107,105,109,108,104,113,109,100,102,107,106,111,97,113,106,133,107,114,93,100,99,104,103,118,105,123,107,106,91,109,100,106,90,111,89,116,117,99,108,102,104,110,107,112,109,103,105,99,113,113,104,96,102,100,100,117,109,104,89,97,116,105,110,103,107,98,98,115,102,97,113,107,106,109,83,117,89,119,118,104,113,93,115,100,104,114,109,95,84,104,96,103,115,106,107,119,118,114,111,126,111,112,99,109,105,102,98,109,103,114,98,109,102,95,111,108,87,111,105,102,101,104,96,105,108,100,126,117,112,92,101,102,103,103,106,109,113,109,100,114,107,107,117,102,103,112,107,108,110,100,106,108,99,90,105,110,98,115,105,124,95,98,108,114,113,102,113,106,106,102,98,102,119,108,109,94,120,107,106,104,105,116,93,117,107,107,108,109,83,103,107,120,99,103,92,103,106,118,73,109,107,100,106,103,102,113,102,99,114,96,114,98,96,105,118,90,96,102,107,102,81,106,100,124,112,115,110,117,95,109,116,113,104,92,116,112,106,87,94,105,104,103,104,97,101,101,102,104,92,102,98,113,103,104,106,93,103,109,103,99,119,102,103,104,112,99,97,101,125,108,124,103,100,105,93,100,103,109,113,106,109,126,109,109,99,113,110,115,95,107,110,115,108,94,110,114,102,107,111,104,106,99,107,104,98,104,106,102,101,103,105,107,98,101,104,108,94,109,97,106,103,121,108,109,111,115,96,109,104,95,105,103,99,109,107,108,97,88,113,117,105,98,102,102,104,100,102,103,99,100,76,121,111,105,115,114,108,92,111,93,107,94,89,117,102,109,104,99,94,114,99,100,108,107,105,101,108,91,113,103,99,113,103,105,109,99,99,108,106,103,109,95,112,102,98,102,98,98,105,105,89,113,107,107,108,116,98,109,100,119,111,102,118,114,101,109,104,105,101,105,104,96,120,106,108,114,103,99,99,99,111,108,108,109,109,101,98,95,95,110,108,99,96,106,105,92,106,91,103,90,124,101,71,117,108,105,118,98,121,106,98,99,92,98,105,101,101,110,102,105,101,98,103,102,108,117,98,115,99,106,100,97,106,94,104,103,91,104,102,96,108,104,106,100,101,110,102,110,91,109,107,115,98,110,102,97,108,107,102,107,105,112,119,112,103,105,97,103,112,94,105,100,103,107,108,113,108,117,118,107,104,108,103,115,99,102,102,104,107,100,95,112,110,110,91,108,107,106,97,106,101,103,108,110,113,104,100,113,112,111,102,106,102,99,100,103,109,102,107,100,113,112,107,112,109,97,101,112,106,104,94,115,100,112,103,102,91,96,95,108,103,109,84,102,113,111,112,105,108,105,107,104,112,94,104,103,96,116,109,116,105,104,102,118,98,105,113,114,96,98,105,100,98,92,104,107,106,108,116,103,106,109,83,118,104,109,108,102,106,106,97,102,103,104,108,114,97,99,107,100,95,104,115,93,122,123,101,114,95,98,114,108,107,98,109,108,109,101,100,113,116,98,122,109,105,99,110,104,92,107,109,104,103,101,101,106,105,101,99,97,108,83,109,103,104,105,109,103,114,104,116,115,111,93,107,98,108,102,97,99,104,94,109,115,102,107,119,115,99,118,95,105,102,109,107,104,95,84,90,115,110,106,94,96,87,110,88,96,120,111,101,116,100,105,105,94,110,101,118,99,109,100,90,105,103,103,98,116,104,103,101,105,101,110,105,102,103,102,97,110,98,101,111,108,89,112,110,114,116,117,99,108,100,107,106,107,103,109,102,95,116,109,107,107,113,104,95,90,102,97,112,113,111,110,98,102,109,112,116,89,121,106,103,104,107,104,101,90,111,97,112,104,96,92,111,103,111,107,98,98,94,106,114,108,104,95,107,105,112,93,94,98,112,101,89,98,116,99,103,105,99,101,117,106,104,105,107,117,116,89,112,102,112,114,114,96,101,106,115,83,92,107,108,104,95,104,95,92,92,103,96,115,120,96,110,110,120,99,107,106,90,114,120,104,105,104,92,110,112,113,99,109,110,113,121,89,104,94,108,98,113,106,91,116,98,77,95,100,112,114,101,120,103,109,108,102,109,95,94,113,119,98,91,87,85,112,108,89,100,95,111,96,101,104,99,109,114,114,114,98,109,102,86,106,94,102,91,99,117,108,106,109,121,103,101,119,101,98,105,96,97,124,110,104,113,104,87,117,95,97,99,106,109,110,114,104,96,101,104,104,100,113,99,89,112,121,102,109,103,99,103,117,102,108,121,106,101,108,85,95,77,102,112,118,111,114,100, +609.75958,96,108,94,104,100,102,118,98,108,98,99,115,89,102,108,105,109,106,97,103,121,103,102,106,110,100,111,93,113,99,109,100,101,105,113,95,128,101,99,111,100,101,96,98,104,104,105,96,93,107,104,113,108,106,103,95,102,109,119,99,101,107,109,105,95,101,104,105,109,94,108,104,107,88,98,110,100,107,106,104,91,102,113,103,104,101,103,110,102,97,108,99,99,100,108,101,108,97,103,118,112,114,106,101,112,113,105,117,102,101,93,104,110,102,103,108,104,119,100,96,112,96,105,114,103,109,107,101,104,109,95,102,108,99,109,107,97,107,106,98,105,100,88,95,101,101,103,103,112,99,99,90,110,99,99,114,120,100,107,103,103,94,100,100,104,113,94,100,109,93,102,108,107,99,114,107,109,111,112,99,108,102,96,102,108,106,102,103,95,99,98,92,110,122,101,107,109,108,114,117,91,103,106,103,86,105,109,106,102,108,108,111,115,107,99,123,95,113,90,102,100,104,98,104,94,111,103,97,101,107,112,106,109,126,96,101,112,102,110,97,110,109,108,113,95,97,99,100,101,127,95,100,102,97,96,100,105,109,109,129,97,100,105,125,104,125,109,103,98,87,117,109,100,100,100,94,96,113,112,104,98,105,117,97,105,106,106,99,102,113,110,118,122,103,98,106,102,113,109,109,91,83,110,105,98,102,107,104,90,112,102,106,112,103,82,113,102,100,91,104,100,102,115,99,114,101,124,105,101,103,100,102,122,110,110,99,104,104,93,108,106,102,101,103,105,112,108,112,116,133,103,104,94,110,113,96,93,100,100,88,113,90,113,97,107,111,100,118,98,103,104,105,107,101,96,103,112,93,105,95,115,110,105,112,102,109,104,96,113,97,116,101,105,112,109,108,107,98,104,102,111,99,93,101,74,101,113,105,106,103,100,115,109,107,99,101,104,102,103,107,100,100,109,95,101,96,114,100,102,91,111,113,107,113,102,99,97,109,103,103,106,100,102,116,125,107,104,105,105,112,94,105,107,101,107,93,115,97,106,110,105,113,104,111,105,108,106,105,99,100,101,104,106,107,101,104,95,103,111,112,112,100,108,103,109,117,117,117,99,99,103,108,103,109,109,102,102,108,106,96,109,109,100,112,109,105,95,87,105,103,105,109,104,100,100,107,110,92,98,95,108,104,102,91,99,100,112,99,108,94,105,101,104,100,108,114,108,98,102,114,99,102,91,108,91,106,107,108,107,111,99,109,109,100,101,107,110,100,99,110,104,107,103,108,95,98,104,108,99,102,103,86,102,107,109,112,104,114,106,110,111,100,111,106,100,95,99,100,100,95,99,107,105,99,114,107,107,106,116,94,105,106,107,89,104,107,107,107,109,98,100,112,113,106,115,92,114,97,97,107,108,100,116,104,88,96,113,110,108,99,97,109,100,109,101,107,102,105,106,101,110,113,94,108,108,102,97,98,136,106,97,128,100,112,79,100,121,106,105,106,107,108,99,119,95,103,115,93,121,103,103,97,112,98,100,112,108,108,100,113,113,103,105,104,100,112,125,100,105,105,103,114,99,105,108,101,96,99,97,93,102,84,111,102,108,105,112,100,95,96,106,102,105,112,91,105,100,116,103,102,99,113,106,101,102,106,104,80,101,99,105,104,118,100,105,102,94,92,117,108,118,104,105,115,101,112,103,102,108,105,110,108,106,98,85,107,95,99,99,107,103,133,100,107,98,100,96,105,103,92,126,105,115,97,92,105,95,108,104,109,96,108,107,101,101,111,104,107,105,112,115,100,98,131,90,98,95,108,103,105,107,105,95,100,103,107,92,112,110,92,105,108,96,100,109,102,108,115,109,112,110,111,110,121,105,110,109,88,101,110,97,113,96,107,102,112,103,106,99,108,104,104,106,98,106,95,102,103,98,103,106,104,97,110,102,113,113,95,94,107,108,104,96,113,108,101,105,123,103,107,108,103,79,103,114,105,118,107,99,111,106,104,103,100,112,106,101,145,117,98,110,108,102,110,107,112,115,104,89,98,111,100,102,94,105,97,100,108,102,111,106,90,113,109,101,106,99,106,99,71,113,100,125,101,117,81,116,109,103,102,118,93,101,95,87,106,110,102,110,113,113,113,102,101,95,97,111,109,93,100,113,117,107,102,101,120,104,110,98,103,109,121,98,110,111,64,104,99,107,119,110,106,120,101,97,101,114,98,98,105,106,114,101,109,104,98,103,114,108,112,107,107,101,113,112,94,111,102,103,97,105,100,102,107,133,112,111,107,105,102,103,99,103,107,99,100,106,105,106,108,109,131,104,107,109,107,103,110,95,112,106,110,122,115,112,104,100,116,131,103,126,123,121,137,123,117,136,112,129,121,116,119,126,115,113,110,107,97,119,110,103,115,102,103,109,99,105,106,103,113,109,98,95,103,95,108,94,110,95,98,100,98,107,109,106,107,98,99,112,93,92,101,101,94,116,115,91,108,105,102,117,87,97,99,100,107,99,106,101,112,104,122,101,102,106,98,120,104,101,98,102,95,109,111,108,118,104,111,104,121,101,106,106,107,110,101,105,104,112,98,99,99,67,112,103,112,109,107,100,109,99,109,115,100,106,99,111,104,99,120,102,91,115,92,108,106,95,103,111,97,101,104,110,92,96,98,100,99,113,106,98,103,99,91,98,107,109,101,101,103,104,102,103,106,99,107,110,104,102,110,99,107,97,104,97,105,112,100,111,116,103,110,105,116,118,98,99,115,104,104,107,92,98,108,98,106,105,112,98,92,97,115,96,95,107,104,109,97,108,107,98,91,103,105,87,92,107,112,87,107,106,105,112,103,101,112,109,108,133,115,107,104,98,109,101,107,101,98,109,111,108,107,102,91,115,100,101,116,110,103,101,100,117,108,93,108,107,109,109,87,101,104,100,105,98,104,95,100,101,106,104,93,105,115,97,90,106,105,88,101,102,113,105,109,109,119,107,107,118,95,102,106,96,100,104,103,110,111,102,101,106,102,109,113,103,105,101,101,98,98,94,64,105,98,100,112,108,98,104,103,95,89,98,100,112,120,107,98,124,89,110,110,113,99,100,109,103,103,95,96,95,104,112,127,103,100,110,107,112,105,101,101,103,99,101,104,86,108,115,100,106,105,114,113,93,102,98,96,121,105,108,101,91,97,104,98,118,90,99,100,98,92,103,105,100,105,92,103,102,114,96,106,99,108,104,100,107,105,110,107,96,123,101,109,106,98,104,101,102,101,103,107,108,105,114,95,98,106,113,126,99,99,111,104,102,100,104,88,103,95,99,83,101,107,104,103,105,111,109,111,107,106,101,95,96,113,107,104,102,102,89,103,113,105,100,103,99,100,106,108,109,110,93,95,114,105,96,88,113,111,102,102,106,87,99,103,99,99,98,98,110,103,106,103,99,102,103,101,114,118,107,109,104,103,127,104,103,95,101,103,102,103,107,99,108,99,92,104,106,101,105,107,104,100,112,111,109,108,107,100,100,109,104,97,109,107,108,103,106,102,110,94,64,104,113,116,100,87,100,108,107,96,99,109,102,107,110,95,102,94,92,108,108,113,108,107,108,104,113,109,106,103,109,83,100,108,97,106,99,98,95,100,112,102,100,108,109,103,101,103,100,91,110,90,95,101,101,106,108,110,108,106,99,103,97,96,111,103,109,103,100,94,103,95,101,81,97,101,98,88,104,101,109,97,100,79,109,133,95,104,116,111,91,112,105,102,109,102,108,111,110,98,87,99,110,101,104,93,106,97,98,107,107,107,107,99,111,107,100,91,114,99,109,108,80,92,105,113,113,111,90,103,106,96,98,103,107,103,102,91,99,101,99,99,99,110,99,107,93,114,104,103,112,88,102,96,102,99,98,89,93,90,91,105,101,113,119,102,106,104,104,103,98,101,103,106,102,85,103,109,114,97,107,99,95,96,103,95,109,96,83,106,107,100,107,98,120,99,105,110,106,111,95,102,106,98,100,124,107,108,92,95,107,105,103,94,110,103,111,91,105,76,92,99,112,105,85,99,100,103,104,115,104,98,91,97,103,117,103,109,100,110,112,105,115,115,105,94,94,107,103,94,107,102,98,104,126,121,101,107,98,117,108,117,105,100,113,99,115,93,115,91,99,94,102,107,103,98,95,105,81,111,94,103,102,102,80,98,103,87,90,104,103,108,95,98,102,105,112,103,106,73,102,101,101,101,98,129,125,97,112,99,72,102,91,98,102,110,121,97,102,98,120,105,99,99,102,87,98,106,109,97,113,90,99,94,107,100,120,97,109,109,116,102,105,113,103,109,96,104,99,99,114,100,95,95,94,97,112,105,112,102,99,104,92,104,106,101,105,99,98,109,102,103,102,99,107,112,95,103,98,89,102,95,96,109,110,99,109,100,107,106,109,101,96,115,84,101,108,107,102,113,108,114,113,106,98,102,110,104,96,97,102,96,106,106,95,108,115,104,92,110,102,120,107,121,104,100,113,117,93,128,102,97,95,106,108,123,104,93,103,90,100,110,105,102,101,99,111,99,99,99,106,100,96,102,116,88,109,103,117,105,100,102,119,84,95,98,101,98,103,107,95,99,102,117,106,104,100,102,105,105,101,94,110,104,101,95,98,103,97,96,106,105,98,100,109,104,108,99,100,93,111,88,104,106,105,101,101,108,92,96,110,104,93,106,93,95,101,91,114,110,83,111,109,107,117,107,109,112,113,98,107,107,107,126,96,103,97,107,109,96,100,104,104,102,103,101,104,100,120,113,101,103,100,99,103,100,95,69,113,97,99,99,101,101,100,98,94,102,99,106,97,104,92,121,72,90,112,82,110,109,87,104,86,109,103,102,90,101,103,100,98,105,102,109,108,99,93,110, +609.90063,112,110,99,96,98,109,97,100,107,107,105,85,105,101,74,109,107,98,115,102,110,96,101,103,97,104,96,119,98,109,104,119,110,94,109,107,116,97,107,92,100,106,95,102,106,105,103,97,118,107,108,112,111,94,96,103,109,98,109,98,96,103,86,90,98,110,100,89,96,102,98,107,97,98,95,107,91,102,105,107,102,101,121,102,104,102,110,113,101,96,115,101,89,97,117,94,107,103,110,102,99,102,101,106,99,104,103,105,107,107,96,95,106,108,102,89,109,109,120,97,105,102,98,106,111,106,108,105,114,114,105,132,104,94,104,105,97,101,100,111,109,98,105,101,99,100,115,110,93,115,101,108,102,98,93,94,97,100,99,119,110,103,111,112,105,109,98,105,109,103,108,111,113,115,114,100,101,103,102,102,95,102,91,104,101,109,104,93,109,100,98,103,100,97,110,101,112,71,94,96,117,107,110,97,95,102,106,114,117,103,110,105,101,114,108,104,109,103,110,108,102,99,109,118,94,117,108,117,96,107,99,107,107,108,109,96,99,96,107,96,106,98,108,97,101,102,98,107,108,111,103,103,96,95,99,89,95,104,90,101,108,107,97,96,104,110,114,110,118,116,104,111,97,112,109,100,111,112,108,89,102,120,104,104,95,113,86,115,113,90,123,113,102,117,110,70,114,113,108,95,98,104,99,107,104,102,114,115,104,112,88,109,110,109,114,118,108,93,99,100,110,103,123,105,103,98,97,95,121,109,97,108,110,110,100,106,105,106,96,104,97,111,79,96,109,117,93,88,108,103,99,96,96,116,102,112,110,104,95,103,105,107,109,101,104,101,101,105,107,113,111,104,106,99,97,97,113,101,100,115,115,109,98,105,101,101,101,109,97,99,99,104,88,111,108,99,104,111,103,104,105,107,103,90,98,97,109,97,113,95,104,95,101,110,100,103,106,98,94,102,113,113,89,109,84,95,111,105,101,117,107,94,115,98,120,104,91,112,80,105,106,100,101,105,101,111,95,104,104,113,100,115,95,119,113,98,105,118,110,107,103,89,112,102,95,94,101,104,103,91,95,98,110,96,107,97,64,114,98,121,108,106,107,113,120,102,103,109,104,113,99,105,91,110,112,108,101,99,95,91,116,106,103,113,90,99,105,117,110,108,109,112,91,97,103,101,106,111,101,103,110,101,102,116,113,108,107,102,112,109,107,105,100,95,98,106,97,101,110,109,114,99,109,123,101,103,115,117,103,116,105,107,103,115,106,101,106,106,97,107,101,114,105,102,113,107,105,100,101,111,100,103,108,113,109,126,90,108,111,101,96,100,118,100,112,113,100,95,105,99,105,118,100,114,101,102,101,103,108,83,104,107,109,98,102,104,106,102,112,105,106,98,94,94,118,94,103,96,103,114,103,116,107,105,109,105,105,106,107,106,112,103,102,111,94,113,107,98,107,108,102,100,102,101,105,101,100,104,115,83,103,95,94,84,84,100,105,109,107,91,121,104,104,105,92,111,113,111,99,100,102,109,124,95,101,105,98,99,104,99,100,106,114,112,112,97,95,108,106,102,100,103,110,113,110,110,103,105,110,91,103,109,103,113,108,116,110,109,92,98,100,98,101,122,92,100,101,107,98,100,117,113,105,104,99,103,112,109,112,115,116,108,96,99,118,95,106,103,102,99,114,107,105,109,108,94,113,103,96,108,125,108,111,109,102,113,102,105,87,119,107,110,101,101,97,117,99,99,103,94,114,101,107,107,113,114,113,115,101,111,109,115,124,103,106,92,107,107,103,102,103,97,107,110,91,111,107,91,102,101,103,108,96,98,114,108,103,117,101,120,72,100,102,102,112,106,100,92,102,98,104,101,106,98,97,113,106,100,121,104,111,106,114,95,119,129,109,101,101,113,106,113,107,107,110,102,102,91,91,104,104,108,104,109,87,97,107,95,104,102,121,115,107,102,111,106,124,111,105,107,102,100,98,95,111,101,109,97,94,96,106,112,107,105,106,120,108,107,112,108,96,115,103,111,115,97,95,101,97,102,102,101,106,94,103,105,98,104,108,104,121,95,117,119,108,105,99,105,102,105,117,113,111,99,98,99,105,109,94,106,109,109,100,111,111,98,104,102,114,77,98,107,89,106,92,108,113,102,116,109,90,107,107,111,110,104,111,110,98,108,107,112,100,93,112,94,97,111,97,103,107,109,106,95,106,104,108,96,105,98,110,100,107,109,111,112,109,100,106,105,91,101,106,103,117,93,109,118,102,108,111,102,89,106,101,101,107,107,105,100,109,102,108,103,95,115,102,106,104,106,99,93,101,97,106,115,102,105,96,111,112,126,106,101,108,123,114,109,104,113,112,135,115,121,107,128,123,140,124,124,129,119,110,120,114,124,107,108,99,121,100,95,108,107,120,106,103,100,100,105,105,118,98,108,103,107,112,113,101,99,94,102,119,111,110,109,106,109,113,94,100,94,106,102,105,110,113,124,110,98,107,96,120,103,89,113,101,108,102,90,95,109,106,100,106,89,110,95,108,83,113,94,95,105,107,105,99,104,100,96,104,117,102,101,109,99,112,103,104,102,103,104,111,103,103,100,102,106,111,108,115,108,116,103,113,103,106,84,104,95,105,96,104,93,103,90,100,103,108,106,108,105,107,112,101,94,120,111,104,112,95,98,104,99,113,111,108,109,100,109,106,115,103,103,107,87,95,101,109,95,99,102,100,82,111,123,106,112,110,114,104,108,100,106,106,106,92,119,87,111,116,110,98,108,99,98,104,104,121,98,108,105,87,102,103,98,108,114,95,112,113,105,107,105,100,102,104,103,97,102,97,112,103,109,97,109,107,105,117,109,98,99,108,114,106,110,106,108,94,76,113,103,111,113,111,103,95,98,116,115,95,108,102,93,103,95,95,91,95,105,99,115,91,108,102,105,109,118,104,104,90,107,106,109,118,100,102,106,100,108,106,136,91,99,107,102,95,120,111,92,111,100,101,105,107,101,100,106,102,100,79,102,101,112,104,111,107,102,94,104,97,97,110,99,91,89,87,111,105,107,107,99,102,109,100,102,101,92,104,100,103,107,103,117,98,104,115,96,96,99,109,102,107,118,115,102,103,107,101,102,112,104,105,107,105,95,108,97,91,112,94,113,110,96,105,104,95,94,120,116,102,104,100,106,103,105,113,106,117,128,96,107,100,104,103,108,98,128,98,107,110,104,110,113,99,103,117,100,96,100,106,100,100,127,92,92,112,106,105,93,84,100,107,96,110,84,99,103,101,114,96,92,83,108,103,126,107,82,103,100,81,102,102,105,109,113,66,97,118,109,100,98,96,107,103,101,101,114,108,106,100,115,113,100,105,101,103,95,118,101,101,108,92,119,106,103,108,89,98,105,101,106,117,89,98,101,107,99,94,115,90,109,101,104,109,106,84,114,113,106,98,95,99,108,90,87,102,117,104,103,104,113,109,106,99,134,104,101,118,105,106,119,95,100,97,96,95,103,98,101,113,99,113,108,100,111,101,122,102,117,111,104,102,100,109,106,112,116,101,112,107,108,99,116,99,105,89,99,109,98,101,99,104,109,102,101,105,105,100,107,100,107,102,100,103,124,108,99,94,108,101,102,105,100,109,99,108,102,100,102,106,109,97,114,92,102,104,103,117,103,103,111,99,105,101,94,108,102,107,98,107,93,116,103,98,112,116,109,113,107,109,98,102,104,107,102,98,95,96,120,105,110,109,106,91,92,100,115,98,95,108,99,80,105,106,99,99,104,107,105,113,106,103,107,110,100,114,107,99,103,104,100,104,105,103,109,112,91,103,97,85,96,104,74,115,121,106,101,113,106,104,112,100,109,105,124,106,101,92,101,99,102,99,110,102,101,105,101,110,111,95,105,104,102,102,107,101,103,113,99,108,99,121,109,95,108,106,96,115,93,101,103,111,111,79,101,100,100,104,111,99,100,102,99,108,98,94,97,94,104,98,109,100,95,108,110,105,96,104,111,136,90,101,100,96,117,125,96,84,106,101,123,109,92,102,106,103,102,109,111,96,101,107,106,100,101,88,99,98,100,99,104,108,102,113,105,100,106,107,97,105,91,101,103,115,122,105,91,112,103,98,108,107,117,109,110,107,102,93,98,108,105,84,109,108,102,106,104,97,108,92,100,110,113,102,80,97,108,113,93,87,101,113,119,102,106,108,100,96,106,104,98,108,104,102,103,113,98,108,97,98,105,102,101,84,90,98,111,107,101,110,103,112,118,75,111,105,97,103,109,95,100,109,97,99,108,113,106,102,112,105,98,96,119,115,103,86,102,104,109,107,100,115,98,106,111,93,96,113,109,110,92,97,99,101,112,112,93,118,103,102,98,106,111,103,107,95,91,110,102,102,116,109,112,101,105,112,109,103,96,118,97,93,94,114,113,90,93,108,105,107,102,102,105,95,100,108,106,113,100,106,85,96,102,95,105,100,101,105,112,92,92,106,104,96,94,104,88,119,112,108,87,105,112,108,97,111,109,105,100,98,109,101,98,103,105,102,96,101,98,107,113,99,105,104,115,110,103,97,107,103,90,87,103,112,113,107,100,89,109,97,119,98,105,99,103,109,106,108,103,92,91,106,100,101,107,117,102,105,105,106,88,115,101,102,110,118,101,108,99,111,95,102,97,103,104,100,96,98,105,99,86,102,101,104,103,108,100,98,113,101,120,97,110,110,99,98,104,114,103,116,108,93,99,103,102,123,98,93,117,101,94,108,106,119,110,103,99,110,90,91,89,91,107,100,92,101,108,99,94,110,105,99,98,112,116,102,105,95,109,118,102,77,99,91,102,106,101,98,106,113,104,84,110,81,95,107,101,98,108,102,103,106,119,106,105,77,92,100,95, +610.04169,104,123,103,95,87,102,113,94,98,95,104,105,104,103,99,103,100,98,102,101,112,108,105,99,99,103,101,91,108,105,105,114,108,103,103,112,111,115,140,96,103,103,98,94,83,110,99,118,88,109,95,101,94,110,108,105,98,96,107,103,100,112,100,100,107,93,87,95,105,102,103,102,117,105,87,101,90,116,115,77,100,113,103,115,109,96,87,109,99,104,103,101,108,114,95,101,94,107,99,106,110,111,101,104,102,104,100,117,107,95,101,110,102,110,104,103,98,107,101,90,98,111,117,114,105,101,107,83,97,116,104,102,107,103,105,93,104,109,106,113,101,93,106,96,100,107,108,96,106,104,100,103,98,100,97,103,99,121,105,100,111,99,102,121,83,99,106,90,100,100,94,114,109,104,109,104,100,97,117,104,110,110,98,114,98,109,106,92,105,112,118,110,106,109,103,111,104,106,103,104,96,109,102,108,107,108,100,106,113,114,99,100,104,101,99,112,85,109,114,107,95,98,113,99,98,109,112,119,100,103,98,91,99,110,102,105,110,107,97,109,110,109,109,104,88,92,100,106,108,100,108,118,99,112,118,101,95,109,97,104,100,102,99,110,103,110,102,103,90,103,100,107,102,113,106,110,94,100,89,107,122,109,105,104,113,117,94,100,97,100,105,102,114,111,106,110,98,107,100,108,99,104,105,109,110,106,111,98,111,105,93,111,109,116,114,97,98,114,104,107,101,87,112,97,117,96,98,97,107,104,110,106,110,107,102,115,106,101,100,95,101,99,95,103,95,103,106,107,110,103,103,105,102,110,107,106,97,113,110,109,107,102,100,95,104,107,98,114,115,108,98,101,117,100,98,100,95,100,112,99,104,99,112,114,105,99,102,74,100,100,102,96,107,90,111,114,91,99,99,106,113,105,95,100,98,100,104,112,111,115,91,116,108,101,103,104,109,98,112,108,99,103,103,116,112,102,95,90,102,128,105,105,101,100,102,100,96,101,97,105,102,101,103,103,99,115,98,105,96,107,110,103,101,108,116,104,107,108,106,113,104,117,99,117,97,117,99,101,104,106,112,101,114,109,104,106,100,104,112,102,105,101,118,109,97,105,112,108,108,109,116,103,109,104,96,102,89,114,95,102,105,101,106,105,112,111,96,105,104,95,120,113,98,110,94,105,113,93,117,105,101,105,105,99,96,105,110,100,109,95,100,96,107,106,95,118,103,110,106,113,100,103,108,114,108,113,100,102,113,97,105,96,96,94,100,101,106,115,96,111,114,96,105,107,108,107,102,115,100,101,99,95,98,96,103,107,97,110,103,113,107,91,112,94,105,96,103,110,114,97,108,104,111,99,105,117,101,103,121,95,100,97,108,104,103,80,104,104,92,102,99,99,108,106,102,102,106,97,107,107,98,109,110,98,98,111,109,110,103,103,124,113,105,112,101,105,113,117,87,104,102,116,105,95,102,102,112,98,106,111,99,102,106,113,120,115,105,111,99,103,105,105,96,112,99,112,132,99,100,112,100,112,106,99,114,110,109,98,99,100,104,108,108,95,95,94,84,119,97,109,111,99,103,116,105,108,94,113,109,99,111,98,100,101,114,113,111,106,100,109,99,106,100,103,91,104,98,98,96,113,101,104,117,120,99,91,113,106,105,105,108,103,107,102,99,103,102,102,105,110,86,98,107,99,96,97,101,111,107,108,113,103,113,101,96,101,107,108,104,96,104,104,98,112,99,102,91,104,131,109,99,116,97,104,114,96,96,98,114,96,118,114,109,112,96,116,114,101,107,114,97,102,102,104,101,107,97,118,103,107,101,105,103,101,108,104,105,101,99,83,120,103,110,109,120,110,113,95,105,97,114,105,110,92,104,113,107,105,108,110,108,103,118,113,95,103,112,91,101,102,97,102,105,95,94,108,98,100,105,104,110,117,112,99,101,104,100,112,90,100,106,95,110,100,106,109,97,111,100,100,103,119,104,105,105,100,113,109,92,100,95,105,116,106,97,102,101,112,107,113,106,117,109,111,96,98,103,98,109,98,100,98,106,98,112,99,103,105,125,95,99,105,99,101,107,114,100,97,100,100,99,98,105,108,113,109,111,104,92,94,93,96,113,109,101,103,110,86,106,103,123,96,114,100,99,105,117,112,100,102,109,107,121,105,121,99,114,115,106,100,95,104,106,101,104,97,102,104,108,105,94,102,103,99,95,111,102,102,95,104,106,110,100,93,114,103,104,110,105,110,89,101,105,105,98,87,100,106,101,112,107,99,101,108,108,86,112,104,95,102,101,107,116,104,116,94,98,107,106,105,99,113,98,101,100,104,104,105,112,98,98,102,109,109,117,87,106,111,111,124,117,111,120,108,120,135,122,129,125,116,134,132,107,116,120,106,113,112,120,121,71,116,106,92,108,95,107,106,107,88,100,98,100,100,109,94,106,105,101,101,87,98,98,112,114,104,98,107,87,107,97,116,105,101,100,104,104,102,103,102,109,96,93,101,105,104,100,87,116,103,98,115,96,118,106,94,104,94,100,106,122,118,104,100,91,96,113,116,76,106,111,107,110,119,134,99,92,111,112,94,92,95,109,103,111,96,109,113,110,104,104,100,117,125,102,119,104,106,80,104,113,100,97,97,121,106,103,96,113,107,107,122,107,98,109,94,106,112,112,114,98,104,104,103,105,101,115,99,103,115,102,103,100,107,100,109,111,98,105,103,96,109,118,109,99,104,111,106,106,99,105,133,101,111,119,99,111,94,101,87,102,117,106,80,122,102,101,111,105,101,101,113,102,112,100,103,105,107,113,101,101,111,101,112,83,101,121,114,111,139,106,100,107,107,108,98,113,102,112,110,92,98,94,104,111,117,100,105,123,106,103,107,115,104,108,109,89,107,115,108,99,86,101,106,108,95,109,109,109,102,99,114,101,100,98,95,103,98,119,94,91,107,97,116,108,112,102,108,120,116,95,111,96,97,112,105,108,112,96,104,113,106,86,103,110,100,103,101,103,97,99,103,109,112,105,109,103,116,98,90,102,96,112,95,106,108,115,106,113,111,103,91,106,113,99,99,104,82,119,100,95,95,78,97,109,104,107,104,108,116,92,76,114,129,108,114,109,120,94,107,101,99,104,115,99,110,104,103,102,109,98,105,110,109,108,95,110,101,101,99,95,105,100,101,101,105,108,110,99,90,109,95,104,107,106,96,97,108,128,103,125,102,104,106,92,94,108,111,107,98,101,105,112,112,109,98,105,100,94,103,96,105,102,104,107,91,99,107,104,105,97,97,105,86,99,94,113,98,99,95,115,111,108,88,106,103,85,101,97,104,96,109,111,99,102,98,109,103,106,102,100,100,113,120,114,97,115,113,95,91,124,99,100,104,111,98,97,117,105,112,101,114,102,99,97,97,108,107,109,117,98,112,110,93,107,107,104,108,100,115,109,104,110,116,94,106,101,108,107,89,117,111,96,99,109,104,102,103,102,104,107,101,117,122,107,101,104,103,117,105,102,103,102,107,106,100,111,108,102,113,73,102,103,109,113,102,109,103,109,106,116,117,104,96,109,115,95,96,113,101,110,103,92,100,103,101,106,106,102,109,99,115,113,106,91,102,112,103,100,112,103,106,103,117,110,122,89,104,115,108,94,111,95,113,107,100,100,107,95,106,103,119,104,112,108,101,101,92,109,96,107,102,104,118,108,113,99,92,117,101,99,103,112,107,106,114,106,107,100,109,112,109,112,99,105,109,102,113,106,102,102,97,103,108,109,100,106,111,98,103,109,116,115,100,109,108,102,107,106,107,115,106,100,111,108,94,100,100,102,105,106,104,99,71,109,104,105,115,109,107,103,112,100,97,101,108,107,97,107,107,103,104,98,109,122,97,102,97,110,81,104,100,103,111,96,105,98,102,103,106,106,109,110,103,104,113,103,114,115,108,99,112,104,120,108,106,111,96,100,110,100,106,104,102,109,108,100,113,101,106,107,112,93,87,102,113,110,101,109,103,116,119,101,100,107,109,118,112,104,99,105,124,97,103,114,109,106,104,110,96,110,102,98,106,104,115,104,113,104,105,98,103,99,103,109,116,107,110,117,115,96,104,112,99,106,90,96,109,115,112,91,102,94,121,113,125,116,111,98,138,102,107,116,98,106,116,119,125,91,104,102,100,114,104,121,99,106,103,104,106,101,113,99,99,99,91,102,96,99,104,99,109,103,107,101,119,102,109,102,103,110,108,98,105,111,117,106,122,113,108,103,101,107,112,96,104,102,102,98,105,132,103,129,96,111,114,108,102,96,111,105,101,95,99,105,116,103,100,113,98,93,99,111,101,104,104,102,110,79,109,102,109,120,98,108,102,95,104,96,96,113,107,99,104,105,112,105,102,99,105,102,95,109,107,95,100,98,101,105,103,121,100,104,85,102,94,127,112,107,96,103,112,106,111,93,99,110,99,106,87,113,108,113,105,96,114,108,113,108,117,105,100,102,115,109,105,102,118,98,101,100,111,109,104,96,94,106,101,107,107,100,101,86,102,120,95,108,112,124,104,108,115,103,106,113,124,123,101,108,96,102,107,99,102,113,104,93,102,103,105,93,105,112,104,103,108,98,102,105,101,120,104,107,116,103,94,97,103,109,111,104,91,103,104,106,117,96,96,96,101,110,99,120,105,109,95,112,85,105,98,106,112,106,114,96,99,92,104,101,100,92,118,98,101,108,104,105,90,108,98,113,103,100,105,86,97,109,116,110,101,109,109,94,105,106,113,105,85,99,110,103,108,100,63,106,95,120,95,96,98,112,103,103,88,100,104,103,110,98,113,100,113,97,109,102,103,99,104,107,96,119,92,107,111,104,92,96,117,107,88,107,102,106,116,106,105,99,92,107,106, +610.18274,113,98,106,90,98,104,105,105,98,101,94,103,89,104,123,96,105,104,95,99,99,99,98,116,115,115,106,110,104,114,100,108,111,110,105,104,126,97,106,113,104,101,104,116,105,122,104,115,103,126,95,103,88,105,108,100,102,105,107,103,101,104,102,96,107,110,112,113,114,105,113,122,125,102,101,120,121,117,96,99,105,107,102,113,96,107,92,105,112,105,105,106,99,108,94,101,113,105,104,112,99,98,109,101,100,102,109,118,104,95,95,99,105,109,110,114,94,101,100,117,97,109,98,115,125,111,98,95,100,99,73,117,111,100,102,105,97,97,95,97,114,106,99,112,99,106,114,109,105,106,85,103,106,107,127,105,96,100,103,107,104,106,113,96,106,92,107,104,101,103,112,106,106,102,111,108,100,93,99,109,105,108,120,117,110,111,93,88,113,96,92,108,108,109,101,99,110,99,94,86,102,117,100,106,107,96,98,107,109,107,72,102,113,111,98,99,107,107,99,104,103,113,106,103,104,105,100,108,99,97,104,117,91,97,106,112,108,121,109,117,102,108,109,113,98,97,69,97,114,108,97,108,102,118,101,102,110,111,108,104,107,99,109,104,96,113,97,104,105,104,108,104,103,104,113,99,94,112,108,98,107,113,115,113,119,106,106,118,108,104,100,107,114,102,112,90,114,106,91,109,118,114,106,98,103,104,104,106,101,108,103,103,116,111,108,100,95,105,108,102,99,109,105,102,99,94,107,95,103,102,108,103,112,107,85,119,102,108,106,105,108,108,111,100,103,108,105,113,114,113,99,101,107,112,106,88,108,109,108,98,117,122,106,102,98,111,98,108,104,113,99,95,106,88,101,110,102,113,121,97,106,101,101,111,67,102,109,101,105,103,109,100,99,118,113,101,106,103,95,106,101,107,101,108,114,102,111,119,89,91,102,96,114,102,102,102,97,96,107,100,110,108,112,119,103,105,85,101,96,101,103,115,100,98,110,106,100,105,98,115,95,109,104,120,112,105,97,99,109,105,100,103,98,119,116,95,114,101,106,112,92,110,107,87,111,109,109,114,98,100,108,105,101,102,93,105,104,107,116,112,108,109,114,96,112,104,104,100,96,104,121,103,99,106,72,107,105,107,105,100,111,112,110,98,99,113,99,117,107,104,117,116,112,131,100,89,102,93,114,93,111,102,110,99,105,103,108,105,126,104,107,112,99,112,104,103,111,98,120,101,108,108,106,101,103,101,103,115,91,99,99,105,108,105,110,100,114,98,100,106,100,107,99,114,107,106,105,113,107,109,101,111,106,116,120,105,112,105,111,116,95,106,101,111,100,106,107,105,103,103,99,114,99,113,109,102,104,107,105,108,100,115,116,90,100,106,109,96,99,110,103,105,115,109,92,104,116,117,110,108,90,103,105,107,114,109,99,105,99,100,105,123,109,112,101,103,103,113,111,88,104,105,114,107,98,108,97,99,118,109,110,107,94,100,92,104,116,108,96,109,106,102,100,103,99,93,113,104,102,103,101,94,99,100,101,105,102,99,102,94,110,95,103,106,98,95,104,104,103,113,102,111,108,103,94,110,107,102,120,87,108,93,94,102,115,127,107,109,115,99,122,98,110,103,101,104,110,118,109,102,96,93,97,109,106,99,117,105,96,105,128,115,100,112,109,97,130,105,107,106,117,103,109,93,101,108,96,108,110,106,120,103,104,98,116,102,108,118,116,101,105,108,99,111,92,106,102,110,105,109,106,103,117,104,113,103,106,102,99,100,106,105,107,109,94,117,103,117,97,108,100,107,100,111,107,99,102,103,104,116,115,103,95,117,117,108,98,110,112,107,110,99,112,107,107,106,110,101,105,101,100,105,107,112,98,105,110,99,101,97,95,106,102,111,105,114,104,94,117,108,104,111,99,99,103,104,103,109,103,103,100,88,99,110,97,104,107,105,94,106,105,106,99,94,109,99,97,106,102,114,106,97,111,99,106,104,112,105,116,100,114,112,91,99,116,104,106,103,106,106,105,99,105,107,107,103,109,101,103,109,103,96,107,94,102,99,97,100,106,110,103,113,95,115,106,104,102,104,96,113,116,114,103,128,97,118,99,101,96,107,96,111,108,97,108,106,104,119,115,102,103,114,103,101,111,108,121,95,100,125,101,99,106,118,101,104,99,104,100,116,113,114,105,109,120,111,111,100,109,113,102,107,122,100,105,101,107,104,103,105,97,114,104,106,92,93,107,108,97,99,91,108,108,106,98,100,107,100,106,142,100,102,102,104,109,96,112,105,107,99,105,105,106,107,97,109,109,98,97,105,113,106,109,99,103,106,99,123,104,98,108,116,119,101,130,90,114,120,113,102,122,130,125,116,106,132,126,118,116,125,137,126,126,110,113,110,113,114,108,103,103,106,104,108,112,141,100,105,114,98,107,117,103,100,108,102,108,85,101,103,105,111,88,106,110,99,110,100,95,101,108,100,97,97,104,108,111,116,111,106,107,87,133,101,103,102,113,110,102,98,111,95,97,103,111,110,103,121,100,116,96,114,107,105,107,106,110,116,103,117,109,105,105,109,111,100,96,103,98,98,94,96,88,112,118,107,100,107,103,99,108,102,113,104,116,114,111,108,119,117,103,100,113,95,112,113,91,105,109,92,100,103,105,105,104,114,97,99,96,123,105,95,111,99,107,101,113,100,103,113,118,106,113,111,95,106,118,101,114,96,105,105,100,111,101,106,109,104,112,101,95,115,106,109,105,100,115,93,98,110,111,109,104,103,94,110,92,116,110,105,103,104,109,113,115,104,117,110,104,99,98,98,104,92,109,104,98,100,99,111,108,105,100,110,110,107,100,113,102,108,112,106,108,105,100,88,111,116,101,104,123,104,96,117,109,102,110,108,99,108,108,99,103,109,105,109,113,110,114,106,104,113,106,117,99,106,90,114,100,105,109,111,103,111,113,113,101,106,104,105,103,99,106,101,100,112,108,108,102,95,109,106,112,102,109,103,107,113,106,102,103,107,109,103,113,107,99,99,99,117,110,119,107,107,100,106,110,124,106,106,116,110,102,104,97,98,99,108,99,101,91,104,115,123,102,103,98,105,111,104,107,107,109,103,112,100,103,100,99,99,103,102,96,92,87,109,102,115,105,110,91,96,96,110,104,109,125,105,105,113,93,113,108,126,90,98,109,102,116,91,114,101,116,108,109,98,97,112,106,114,111,89,119,105,100,95,104,103,115,101,105,107,104,103,108,103,110,107,96,117,109,101,108,99,107,107,99,112,117,124,101,105,111,86,104,108,99,92,101,97,104,104,106,86,96,105,91,101,101,103,92,124,101,109,100,121,122,110,117,108,111,112,110,100,100,110,111,99,101,105,110,107,88,106,102,113,105,109,89,103,115,99,108,100,113,118,104,95,102,107,103,118,111,102,64,109,99,108,91,112,100,106,105,104,99,105,107,117,95,99,112,108,108,99,110,116,106,110,115,98,98,117,117,104,109,107,107,99,103,94,100,104,90,115,91,106,108,110,108,110,90,106,105,105,107,99,88,108,95,120,95,110,110,115,104,108,117,107,100,100,109,98,105,108,110,113,112,101,110,105,105,101,91,110,105,104,101,106,94,104,102,103,107,115,101,106,103,96,114,98,101,92,97,124,112,115,95,106,101,107,112,114,102,112,101,106,94,117,112,114,105,106,92,110,109,113,114,107,111,97,96,103,107,98,105,102,96,117,103,125,113,90,97,90,103,99,111,112,112,101,112,95,109,94,102,106,117,87,115,96,99,108,94,110,96,101,110,119,108,103,111,101,113,123,115,102,101,106,99,107,102,113,102,104,107,103,109,107,108,107,72,98,127,94,103,109,110,101,113,110,108,105,100,96,102,116,114,117,103,107,97,112,100,101,105,112,120,103,113,106,110,106,104,99,100,106,109,102,118,113,97,115,110,108,101,105,112,103,108,114,103,110,106,108,107,104,110,110,84,117,105,108,104,117,102,105,98,108,106,107,111,98,101,103,105,103,88,102,113,106,109,106,91,108,102,106,94,97,112,102,107,80,102,109,100,97,112,115,99,106,113,108,104,106,117,106,103,107,103,112,100,98,107,100,102,122,103,109,113,111,115,95,94,117,112,110,104,102,106,91,110,95,106,98,109,100,109,76,113,98,103,108,112,94,98,100,123,104,117,107,102,102,112,103,111,113,110,97,112,105,116,109,117,112,98,112,100,104,106,88,108,94,110,108,102,95,110,112,110,104,103,97,118,116,106,117,103,112,102,92,105,102,111,103,114,103,102,101,114,91,111,107,104,111,119,102,94,102,105,112,99,98,113,116,109,110,112,103,92,95,99,111,111,109,100,105,107,106,106,114,114,112,85,113,100,108,106,110,119,100,100,106,95,107,93,112,94,105,98,112,111,88,99,105,100,106,102,105,110,104,95,108,104,113,98,94,107,99,104,99,103,106,119,105,107,111,102,106,118,110,90,110,106,104,96,103,106,110,97,94,114,112,96,118,104,102,100,109,98,110,102,119,103,95,117,95,98,99,104,91,106,120,114,101,108,103,121,117,100,91,107,111,98,106,112,110,105,96,116,99,105,114,123,117,102,113,72,102,108,113,109,106,98,111,98,102,99,110,109,98,113,107,100,105,90,103,110,109,91,99,100,101,107,106,101,101,114,107,107,86,108,94,106,104,103,105,92,110,95,101,108,106,112,104,80,97,106,110,116,101,106,104,88,104,100,101,90,110,98,99,92,98,107,102,108,106,105,92,107,98,104,95,89,113,111,100,98,102,92,120,98,93,101,112,110,109,120,114,101,108,106,99,104,91,76,109,95,102,101,102,112,117,115,95,94,95,95,121,106,120,113,91,107,112,116,96,122,104,115,95, +610.32385,92,100,105,105,93,98,117,95,98,106,101,109,86,100,120,109,104,105,108,99,110,104,100,103,120,108,104,103,99,114,100,93,104,109,119,99,106,83,95,102,98,98,95,106,133,116,97,102,105,103,94,108,97,113,110,88,92,99,102,99,104,95,102,103,104,108,112,94,106,94,101,108,93,96,96,109,85,91,106,109,107,117,103,99,104,99,112,95,99,108,107,101,105,109,100,105,98,114,100,103,107,111,99,95,99,114,112,98,103,96,107,108,95,106,100,90,99,106,96,107,107,108,97,96,108,105,100,115,102,94,106,112,96,93,108,85,102,101,88,102,87,103,91,112,98,109,111,110,110,114,100,99,115,97,101,85,105,113,94,112,114,101,109,94,107,104,110,101,93,92,109,102,105,97,106,98,124,89,109,99,98,102,109,93,98,114,99,98,107,116,93,103,102,102,91,98,108,100,107,84,93,99,101,101,106,118,95,100,96,95,95,110,109,112,103,106,105,109,91,103,120,105,99,102,86,108,77,109,105,95,131,108,104,104,110,107,104,106,78,100,89,103,105,107,109,100,104,90,102,95,96,95,107,83,101,112,99,107,98,109,111,112,100,99,103,113,103,105,84,101,99,100,106,109,103,115,102,116,110,99,94,98,94,102,111,107,94,104,100,95,106,110,106,96,107,102,114,91,98,92,120,107,116,99,111,100,101,103,90,109,110,141,105,107,103,91,108,103,100,98,108,92,109,112,93,108,98,92,110,107,105,109,104,114,112,100,111,109,101,99,101,123,96,96,103,104,108,104,97,98,106,103,107,102,92,103,103,109,99,100,104,104,108,100,99,96,91,114,87,104,114,110,90,99,98,102,90,100,110,99,104,113,97,106,104,103,116,99,95,104,106,96,94,103,98,96,78,95,96,111,94,85,105,79,99,96,107,108,108,90,94,108,91,106,107,91,105,110,109,101,94,107,113,87,104,89,85,101,102,116,101,105,102,101,103,107,109,97,106,106,104,98,103,105,100,103,104,96,102,111,102,110,106,113,102,100,110,108,107,117,106,102,110,100,98,101,116,97,105,103,100,93,107,115,107,98,104,106,97,105,113,111,112,99,112,106,117,105,97,103,105,115,111,101,99,102,98,99,121,104,106,98,113,124,99,103,102,107,116,108,99,98,93,106,114,101,101,100,116,104,125,108,112,86,116,76,118,109,108,111,101,105,101,106,95,113,112,96,96,104,106,106,109,106,106,107,103,100,112,105,110,106,113,94,110,90,100,101,108,106,108,100,101,100,99,102,101,110,105,91,103,99,110,118,102,83,101,99,102,117,102,98,109,100,101,106,95,112,105,104,112,99,100,99,107,99,103,98,106,99,98,111,115,100,88,90,102,125,108,112,104,91,101,120,110,97,98,100,112,108,107,104,119,99,116,94,100,111,104,104,112,103,112,108,89,110,117,96,101,102,103,95,106,109,91,102,87,106,102,102,108,110,101,109,104,106,113,115,109,103,112,112,108,100,91,100,100,102,107,108,110,94,111,107,101,105,107,103,105,94,113,107,108,92,101,105,89,104,112,97,104,119,109,122,94,98,110,109,112,101,111,97,122,108,102,108,117,109,112,101,95,103,104,101,98,87,103,116,101,103,118,102,105,107,104,96,111,103,103,116,112,101,109,95,100,95,110,97,96,105,123,99,116,115,84,106,107,102,125,102,101,106,109,103,99,110,109,97,115,100,92,115,114,108,110,110,96,94,114,95,107,106,101,109,105,95,106,99,97,101,109,107,114,95,105,116,88,113,105,107,105,104,114,107,97,82,105,116,97,118,111,109,109,123,103,121,109,104,103,108,106,109,106,94,98,105,103,96,99,105,70,102,112,106,87,105,103,103,103,110,105,105,108,104,101,116,103,102,98,105,109,111,112,98,109,94,103,105,108,95,117,81,91,112,94,105,112,110,95,108,94,103,110,98,102,100,113,101,108,113,98,114,102,109,108,94,113,108,109,117,102,108,118,112,109,110,101,108,117,94,122,101,104,108,105,100,106,96,107,103,121,105,109,106,112,101,91,105,104,107,95,110,110,107,108,103,100,100,106,101,102,115,100,102,109,98,106,108,113,111,105,115,102,105,104,102,103,116,89,95,110,103,113,109,112,99,105,104,95,95,105,101,118,104,112,100,109,109,91,110,105,123,90,106,106,109,99,100,108,103,104,115,110,101,99,95,106,84,102,101,112,98,102,102,96,102,102,103,100,107,108,72,116,102,98,103,94,99,95,94,112,104,100,98,98,101,120,88,103,110,102,109,119,104,108,116,97,87,104,108,112,106,98,106,112,122,102,105,98,105,122,109,113,100,108,107,108,113,99,116,121,115,127,125,113,115,115,123,119,94,112,130,110,115,113,131,102,101,107,106,102,112,101,106,99,107,117,100,119,103,92,102,93,129,104,108,106,90,104,97,103,113,113,114,113,105,103,101,111,102,94,107,104,104,101,113,112,106,103,107,117,95,101,101,109,109,112,110,108,101,110,117,123,104,107,110,109,98,108,103,101,99,79,113,115,109,106,112,102,119,120,110,100,105,102,106,115,116,110,101,108,110,104,115,101,99,102,91,111,115,109,117,112,98,105,104,121,105,105,119,111,102,102,94,102,116,110,89,95,103,95,104,110,110,88,111,100,102,120,100,117,103,97,103,100,104,105,100,105,99,105,103,108,88,106,112,107,100,103,111,108,102,110,102,108,102,98,106,99,112,111,99,101,114,116,94,101,107,115,88,104,107,125,111,104,105,110,106,133,116,102,116,105,102,105,98,109,96,95,106,115,93,99,108,106,101,108,110,109,100,113,108,119,109,108,120,106,102,106,121,107,113,109,124,111,106,97,112,98,118,110,100,106,108,111,97,98,111,121,103,112,111,107,106,101,102,105,119,110,105,101,112,107,106,110,103,106,109,104,105,114,116,111,110,102,116,106,100,105,103,101,117,92,90,113,116,111,100,113,106,110,116,98,102,111,117,103,103,106,108,124,96,99,99,110,106,106,111,107,109,113,98,117,113,100,102,129,97,113,110,106,107,99,107,100,108,108,100,96,106,104,101,104,106,111,115,105,112,102,100,108,114,95,113,105,102,110,95,100,109,103,115,107,99,110,100,102,104,104,104,95,105,103,105,106,114,101,98,122,111,103,74,109,86,110,99,108,104,113,103,111,99,106,105,107,114,113,96,116,108,103,117,106,100,101,102,112,107,111,99,107,102,103,125,104,108,109,95,98,111,103,95,105,103,128,99,103,105,103,109,106,98,113,108,106,104,105,105,114,105,101,109,104,106,99,114,102,105,106,100,108,110,102,72,80,95,99,106,115,105,102,103,129,106,93,107,101,101,108,81,111,102,103,102,98,99,104,107,107,106,97,98,115,107,111,109,108,103,83,113,119,105,106,92,100,109,124,82,103,105,115,105,98,105,111,105,106,110,96,95,98,110,102,95,126,101,109,103,113,96,92,121,104,118,79,107,101,113,96,100,113,109,98,124,109,115,105,118,101,105,108,103,117,110,102,117,109,110,109,122,110,101,129,112,101,107,98,102,97,103,90,110,99,116,115,102,109,112,99,102,95,115,117,109,106,98,95,116,104,115,100,111,120,110,106,100,100,93,107,110,106,111,104,106,107,114,110,116,119,110,103,116,97,115,98,106,108,108,103,107,105,100,113,106,106,97,83,96,106,104,118,105,118,104,108,110,107,108,106,108,114,110,106,106,115,100,104,107,107,108,110,105,115,100,99,99,117,113,102,99,111,109,101,104,109,103,109,111,103,107,117,106,105,96,96,107,112,96,96,106,104,115,94,119,102,119,104,118,99,113,103,108,105,106,124,101,107,110,101,105,102,96,101,110,114,99,104,104,94,129,108,101,107,116,99,105,107,102,103,91,105,105,97,100,107,99,113,101,117,103,119,116,100,123,91,110,100,105,105,101,112,106,107,101,102,80,104,98,66,106,107,122,112,105,102,102,94,107,125,99,111,109,102,100,103,109,106,103,106,102,107,107,94,108,109,116,106,105,109,94,110,101,107,105,102,116,99,100,99,108,114,94,94,105,117,117,96,109,105,118,102,97,91,114,110,113,110,110,100,107,93,100,95,97,104,94,108,107,107,98,108,113,91,107,107,97,95,103,101,104,101,105,117,112,108,110,111,110,107,106,104,109,112,115,116,105,114,105,95,104,120,103,100,101,101,105,101,112,113,102,110,91,100,105,96,106,109,113,113,106,105,106,109,104,107,109,103,104,102,103,97,112,114,91,108,99,107,90,102,118,106,110,111,100,104,103,92,104,112,109,100,106,96,102,99,105,101,111,113,107,109,95,110,121,103,106,102,104,107,105,109,106,99,108,104,103,116,107,120,112,102,100,107,117,116,109,91,106,97,107,106,103,102,110,102,107,102,102,103,99,99,91,115,106,112,96,99,107,111,106,102,102,106,112,103,103,107,100,104,119,99,102,114,125,117,109,109,108,97,96,108,87,102,84,101,115,112,90,98,102,103,105,107,118,115,120,105,104,107,101,116,85,113,112,105,109,108,106,97,105,91,95,97,112,104,113,118,109,106,107,108,119,112,117,110,108,96,117,93,108,108,119,97,99,108,99,100,100,107,108,108,102,93,111,105,95,109,99,121,91,102,106,103,112,103,89,116,91,106,101,113,105,108,101,113,103,95,91,109,110,114,106,104,109,100,102,113,103,110,109,107,107,102,106,119,98,96,109,95,103,105,80,109,92,114,101,96,108,109,108,101,96,98,98,106,108,100,102,103,104,105,92,102,113,113,117,110,85,116,109,104,117,95,115,99,102,108,119,98,80,102,89,107,111,106,100,100,96,90,110,99,99,71,102,104,89,106,112,99,90, +610.4649,128,106,95,105,111,101,104,100,102,108,99,100,104,99,112,106,108,98,103,100,107,91,106,106,85,104,99,107,122,106,110,110,104,107,104,106,110,101,95,105,107,128,114,107,109,114,82,124,96,106,97,100,138,96,95,87,98,87,103,100,97,90,110,98,101,106,103,117,110,101,109,118,113,106,93,118,101,108,117,104,100,105,101,92,93,113,105,104,106,120,103,101,100,102,102,109,109,101,101,98,101,107,104,103,114,106,108,102,94,99,112,100,99,100,110,98,109,105,101,99,99,113,105,112,97,104,114,108,111,95,116,104,100,106,110,92,109,96,107,101,99,99,100,103,100,107,107,97,100,94,93,92,115,85,104,103,99,103,111,96,99,106,123,113,119,117,100,91,99,91,106,102,109,113,87,103,122,100,117,104,100,111,99,112,102,96,116,105,103,106,102,99,103,113,105,112,98,104,107,102,103,103,102,111,109,101,107,108,108,117,102,98,105,109,111,96,108,109,105,106,104,92,105,107,109,113,94,99,99,104,90,117,107,105,102,106,110,104,105,109,89,102,115,112,103,101,104,104,102,102,65,106,91,117,105,102,99,97,121,90,95,108,108,98,98,92,120,94,108,102,102,89,128,106,99,108,102,103,107,95,108,104,109,112,100,99,106,110,109,103,122,121,106,102,110,106,94,109,103,112,110,101,106,95,93,97,110,103,108,114,96,107,110,109,106,106,100,112,91,114,99,105,116,90,101,102,108,123,116,103,106,109,107,116,104,107,111,106,98,115,114,90,95,97,96,101,109,121,103,112,99,100,96,99,98,110,90,123,107,94,108,102,102,110,103,108,103,114,78,112,111,103,110,101,101,106,102,108,108,104,98,112,100,112,99,105,105,103,104,107,105,91,103,117,101,121,99,105,99,105,107,112,107,106,113,110,83,91,95,97,102,111,105,106,103,101,99,91,105,110,98,103,102,109,100,105,101,95,101,105,108,108,105,105,97,106,82,100,98,107,107,101,94,106,101,128,100,104,108,103,105,104,102,107,85,104,107,108,105,110,103,98,99,103,107,99,109,115,99,110,101,115,99,107,104,121,99,104,98,114,87,105,118,102,115,105,106,102,110,91,101,111,100,109,98,104,93,117,109,103,111,113,101,106,105,108,103,111,108,101,101,109,113,113,115,105,99,108,105,101,101,98,102,108,105,113,111,95,102,102,97,114,108,105,110,97,111,102,115,104,99,109,99,112,121,96,112,103,112,105,107,116,102,101,98,93,95,97,103,94,103,97,112,110,121,102,107,104,100,92,109,97,118,97,103,111,90,111,103,118,108,106,103,107,110,105,111,120,105,96,116,113,96,96,112,122,102,109,113,110,105,96,107,106,107,106,105,110,96,106,116,104,115,113,99,98,105,121,70,97,107,95,95,108,106,111,83,113,103,105,101,112,104,109,100,93,105,109,96,101,97,107,114,101,101,101,111,104,98,100,95,104,99,102,105,109,106,102,102,107,103,114,109,108,100,93,109,107,107,99,101,117,104,109,107,112,105,96,111,98,110,103,104,86,103,109,103,99,96,104,106,101,98,104,122,102,108,109,111,105,103,95,102,102,103,108,104,112,101,89,111,99,106,108,100,106,117,90,115,78,102,105,103,103,90,108,117,111,102,108,102,112,109,94,108,99,106,99,128,105,103,109,112,104,117,95,102,101,113,106,115,99,106,110,107,106,110,105,110,113,109,118,108,104,97,106,102,98,96,100,111,108,112,118,97,102,107,99,105,111,113,103,104,104,107,108,103,101,91,102,114,95,109,116,97,107,103,99,118,115,113,108,101,96,100,122,99,110,110,100,110,112,97,112,111,130,103,116,103,95,103,100,99,101,103,99,101,112,112,109,109,107,106,116,100,99,110,106,108,106,114,96,103,99,112,107,99,96,109,104,106,94,105,106,116,106,111,100,115,102,103,95,108,94,113,96,96,111,106,105,106,113,104,108,98,103,107,113,102,98,102,109,107,119,106,103,130,107,107,114,117,116,112,116,105,99,105,108,103,96,93,102,109,110,114,101,95,102,102,109,93,109,108,88,114,102,98,105,107,113,107,101,107,111,100,94,104,108,110,119,122,112,101,104,99,102,102,109,108,93,103,99,112,112,109,115,100,88,94,117,109,113,113,122,113,107,101,122,94,79,103,114,109,97,103,101,100,103,105,115,102,89,103,82,88,124,112,87,107,104,101,106,103,106,97,112,89,94,100,100,99,107,83,106,110,126,105,114,103,110,101,110,99,99,105,90,107,97,92,112,100,111,105,104,101,104,108,121,109,76,112,134,100,95,104,107,104,113,111,99,119,107,120,96,86,103,106,121,112,114,119,113,113,110,90,110,129,143,102,120,132,107,114,117,93,117,103,122,102,111,100,90,106,105,105,104,111,101,101,97,99,121,101,94,107,103,111,101,97,97,97,97,100,91,95,105,107,87,101,85,102,98,100,96,102,110,98,107,109,105,100,100,96,96,109,107,101,114,110,107,112,96,108,109,97,98,108,113,109,99,110,107,81,107,109,107,91,111,105,109,108,104,111,100,98,103,102,93,99,101,106,99,101,118,96,102,98,112,107,108,94,105,120,106,100,110,97,102,98,101,92,95,105,101,103,100,104,93,104,105,110,97,112,108,103,111,99,107,105,103,104,104,98,112,105,101,105,105,73,104,99,115,102,108,108,110,116,104,92,95,81,112,113,105,108,95,107,106,107,96,107,94,91,108,100,101,98,96,101,100,109,98,103,96,113,111,109,111,113,103,126,98,93,96,106,105,109,114,110,120,102,91,111,102,108,106,110,99,96,109,99,112,105,103,110,113,101,112,110,114,99,99,106,108,98,98,97,108,104,113,86,103,106,97,105,102,109,94,107,111,96,96,114,112,103,109,101,117,83,107,106,106,99,102,112,103,116,99,97,109,96,102,108,105,81,100,112,113,99,116,108,116,90,106,103,103,110,106,101,89,115,113,103,98,101,115,115,108,99,106,82,100,100,96,106,108,100,97,104,102,111,109,112,104,110,106,103,97,102,102,95,100,113,106,93,99,104,76,99,100,106,87,117,110,102,101,103,89,93,118,96,101,100,105,107,120,113,109,103,104,108,98,95,106,100,97,106,109,108,117,104,109,102,103,103,109,101,112,105,101,111,97,98,107,102,102,112,99,95,87,103,108,99,115,113,105,99,98,99,94,106,106,94,100,98,104,107,104,106,119,101,112,125,113,103,105,100,112,110,93,108,93,110,108,116,108,100,106,109,100,105,101,93,98,94,103,116,101,108,109,107,107,98,96,113,120,100,85,105,99,106,111,99,96,98,113,101,95,97,111,105,98,92,102,101,96,86,112,97,96,103,108,106,103,98,104,100,105,114,101,108,108,94,98,94,108,105,89,106,92,101,93,109,109,100,102,93,98,99,99,109,107,97,107,99,108,104,104,104,105,111,107,102,88,106,103,110,91,100,98,90,102,103,98,101,93,102,73,108,94,106,103,82,106,100,113,115,106,102,96,94,95,101,116,104,107,90,106,107,92,95,99,91,98,91,103,102,101,113,106,82,91,100,111,98,104,102,104,111,108,97,109,111,106,104,97,104,102,98,106,95,85,105,113,96,94,104,98,104,106,111,109,100,109,91,106,107,95,115,109,106,103,102,102,101,94,94,119,114,103,100,117,101,117,107,105,99,94,102,101,97,111,116,91,108,99,102,98,93,99,119,102,97,94,101,104,97,103,110,104,99,99,97,101,106,107,105,98,102,98,92,126,105,114,105,108,106,101,98,105,123,105,105,97,97,88,99,96,96,117,99,113,91,91,108,115,98,104,113,100,108,109,113,109,110,98,100,103,104,100,91,103,95,101,95,103,95,101,132,105,88,95,99,92,96,91,108,117,98,102,106,101,110,99,102,110,105,124,107,101,99,109,96,99,108,107,111,104,90,96,107,95,94,106,97,113,99,98,97,105,109,91,102,112,98,101,109,98,95,104,105,98,96,104,104,103,104,101,109,102,112,102,95,107,109,120,101,91,102,102,105,85,102,100,102,107,110,101,104,91,119,111,102,107,94,103,108,104,100,95,102,94,101,105,102,107,105,100,121,120,102,100,79,108,100,99,88,102,110,100,91,92,101,117,112,110,93,92,113,99,104,92,102,95,99,106,114,102,98,124,99,101,100,112,113,101,95,93,111,103,99,81,109,98,109,91,98,109,101,100,91,98,99,102,106,99,90,98,103,106,112,108,100,96,92,101,105,103,86,108,96,98,121,96,106,116,102,103,106,95,101,105,118,102,121,99,90,98,107,110,77,102,112,104,104,100,98,108,108,92,99,101,101,111,94,108,106,107,101,92,107,107,92,112,93,110,107,104,106,94,95,96,111,106,96,111,101,92,103,102,109,97,97,103,98,100,94,97,102,106,103,99,99,104,102,94,105,103,110,107,90,102,102,108,105,101,94,107,100,113,105,109,87,101,103,104,103,91,96,105,103,92,99,100,98,98,113,124,87,99,103,97,97,96,113,96,107,95,134,103,101,105,94,92,98,108,121,121,90,99,101,101,110,107,106,106,109,87,114,123,101,110,117,124,94,110,104,107,106,79,108,99,87,109,130,87,104,106,96,98,101,96,102,90,101,101,102,100,92,97,97,101,96,94,107,97,103,109,105,98,106,109,118,95,111,104,106,95,108,100,98,106,88,110,101,96,95,103,108,105,105,87,109,96,106,104,86,99,98,97,97,110,89,101,94,112,108,109,108,102,109,101,96,106,97,98,90,94,91,92,97,99,101,106,108,107,107,95,103,90,106,111,98,93,100,100,93,94,107,91,119,112,110,92,110,95,95,102,102,92,100,102,108,107,99,117,99,105,117,89, +610.60596,86,103,94,109,112,104,110,113,100,100,97,104,94,96,105,86,91,117,105,94,100,99,99,109,101,109,106,111,113,101,99,100,104,97,111,117,105,104,99,105,109,107,114,96,102,110,110,96,106,100,98,101,102,105,119,105,117,103,100,76,61,108,100,107,111,95,99,111,111,123,102,86,98,114,97,103,82,95,101,103,111,108,103,108,105,95,111,109,93,94,94,116,90,106,92,102,104,97,101,96,109,113,98,99,100,113,105,95,97,112,102,105,113,98,115,100,108,105,117,98,109,103,109,100,111,110,108,101,134,93,117,100,79,102,107,103,104,104,103,89,99,107,101,106,101,100,110,101,106,101,116,94,95,94,98,100,101,105,101,105,100,100,102,112,113,97,116,94,100,97,92,107,104,101,107,107,101,93,113,109,102,102,96,109,106,100,94,101,97,104,108,121,102,114,102,102,105,122,97,98,98,100,111,110,96,107,105,99,98,99,102,104,96,106,100,99,114,105,99,110,101,104,100,106,92,111,111,98,105,107,89,115,115,104,102,107,108,103,99,101,113,119,117,125,103,98,97,99,105,100,91,116,101,100,90,117,98,102,95,111,89,99,114,101,91,102,91,113,99,114,93,103,96,104,96,111,95,110,94,94,95,107,95,106,106,99,91,97,96,106,102,103,105,93,106,105,102,113,102,101,104,102,103,107,98,107,104,110,115,112,115,112,87,110,95,104,117,108,104,101,99,108,95,113,109,103,106,89,107,112,121,107,109,77,95,105,99,105,108,102,107,98,100,109,94,105,108,96,120,102,118,107,105,110,114,107,107,97,100,106,105,87,104,107,99,111,109,133,99,98,99,119,109,109,104,100,98,104,106,106,108,107,103,108,101,100,105,102,106,126,108,112,108,101,105,105,100,98,94,104,110,110,100,98,96,87,102,108,94,103,105,95,108,104,115,112,99,100,103,109,91,95,96,99,113,95,104,110,108,111,98,108,100,125,109,115,102,113,97,100,119,104,98,107,92,105,94,102,113,109,103,101,102,102,100,101,102,102,109,114,101,103,100,107,104,108,122,104,110,106,107,70,108,105,94,97,100,69,105,100,106,107,104,106,94,99,103,118,102,101,104,106,102,110,96,104,96,107,103,99,104,104,110,97,113,108,102,104,97,95,99,105,98,110,108,102,96,102,110,101,109,107,113,122,88,106,97,104,104,106,104,108,108,92,106,104,109,102,103,108,105,108,97,93,118,100,105,96,103,108,113,98,105,101,108,97,110,108,103,97,110,83,102,108,100,101,118,111,91,103,90,84,100,86,120,108,111,104,116,99,104,94,110,97,120,110,114,131,95,96,105,110,95,116,116,103,97,103,107,110,107,115,119,114,107,110,97,98,111,104,106,101,111,106,111,98,108,103,102,105,108,104,103,87,99,106,96,98,114,109,92,110,104,104,97,106,104,92,106,120,106,109,113,97,95,101,105,105,111,116,108,107,96,114,104,106,99,114,88,96,100,112,97,112,87,109,100,91,114,112,120,113,99,98,93,109,101,85,119,105,99,102,88,100,109,101,98,104,101,108,106,100,115,114,103,99,106,111,99,102,94,109,107,107,106,113,111,103,102,107,96,111,99,105,94,118,106,111,103,114,111,99,99,108,94,102,111,95,127,114,111,106,95,96,96,107,90,99,102,106,113,102,102,113,105,91,106,107,86,105,107,109,105,98,103,101,111,103,99,99,111,95,105,96,99,100,111,100,96,102,103,103,97,107,87,109,106,106,102,106,107,106,101,109,99,113,117,108,94,105,111,108,113,111,114,101,110,87,68,113,103,103,101,105,100,106,124,105,103,105,116,101,115,105,108,101,104,107,100,105,101,103,100,97,105,103,103,105,110,101,88,104,105,106,108,115,113,117,113,91,102,112,108,108,100,99,109,109,106,102,101,97,99,112,105,112,105,108,97,103,86,108,99,95,109,99,104,108,109,109,98,108,102,114,108,112,104,106,103,97,95,101,101,111,97,117,106,111,103,104,104,101,106,120,112,89,101,102,105,90,100,92,103,115,119,100,98,99,107,89,104,127,107,94,114,95,96,128,109,106,103,99,110,102,105,105,95,107,117,109,112,98,97,100,103,98,93,107,102,101,101,106,109,95,102,74,106,100,99,104,102,109,114,122,101,123,114,93,112,106,116,106,109,105,104,103,114,94,103,106,109,104,110,95,105,96,111,101,116,99,108,106,87,111,105,107,99,103,112,96,99,104,102,110,91,83,99,107,109,107,106,95,95,102,118,110,109,107,102,111,103,109,103,111,107,109,101,105,109,113,111,112,109,100,117,102,117,99,109,106,99,116,112,106,114,114,94,119,113,108,118,117,134,137,130,115,114,125,140,116,127,115,121,116,102,105,114,116,108,100,102,103,106,112,102,104,88,106,105,106,106,113,108,109,121,105,107,114,105,101,90,104,98,110,108,116,105,108,118,117,107,106,106,95,104,109,109,107,110,117,123,100,117,107,94,108,101,106,108,87,110,113,110,102,95,104,110,103,98,101,115,93,107,99,90,107,110,106,100,101,116,110,102,101,111,100,106,110,104,104,120,95,89,116,107,102,110,100,118,95,99,95,111,103,116,113,125,93,124,80,103,92,109,107,109,131,96,120,110,104,99,102,120,115,107,110,110,107,110,105,107,109,100,103,115,108,116,94,112,103,113,102,110,113,98,100,109,102,105,105,98,110,117,122,103,105,92,96,101,96,108,112,109,105,112,104,107,112,102,108,105,117,96,117,110,104,106,113,109,113,120,95,105,103,109,109,113,106,106,105,118,104,96,100,100,109,118,114,100,100,98,116,117,109,101,103,102,111,108,108,116,100,99,120,115,96,111,117,97,107,110,111,95,109,101,99,104,103,104,112,136,108,105,107,107,109,94,109,102,115,118,122,106,99,119,101,90,109,111,103,107,109,102,88,99,111,103,107,103,116,84,104,91,100,97,107,105,114,104,100,126,107,92,109,108,108,111,94,107,94,124,117,98,108,110,107,96,103,105,112,95,104,120,109,107,105,111,121,109,110,114,108,100,108,103,100,106,103,111,96,106,102,112,104,116,112,111,102,108,94,108,104,109,110,102,120,103,102,106,101,120,124,105,96,103,105,102,110,123,105,92,92,96,103,103,117,110,96,110,114,118,100,96,108,120,111,101,115,105,94,96,86,107,107,103,109,85,106,108,116,106,102,104,113,109,107,110,106,114,102,102,107,104,110,109,116,106,135,107,106,97,112,104,117,108,105,94,114,99,85,103,97,115,95,111,105,111,107,112,108,120,112,115,109,102,114,102,105,96,110,100,104,105,102,105,108,111,93,104,107,97,107,108,106,94,100,98,95,112,110,109,110,112,109,117,98,102,107,113,91,104,81,108,103,109,108,110,96,113,109,100,102,94,104,110,108,97,105,116,107,112,85,102,103,105,113,104,113,95,108,113,97,123,96,107,102,106,98,103,110,107,107,112,106,106,111,110,118,105,98,103,107,102,105,103,98,118,113,104,104,101,105,111,100,114,108,110,117,96,96,103,106,102,110,98,100,109,106,103,104,102,100,102,94,107,92,107,97,114,123,117,117,115,104,110,108,115,95,101,103,109,109,121,104,100,107,114,102,110,101,96,94,94,106,99,111,124,110,109,96,110,118,109,103,103,104,98,105,109,99,113,109,101,116,112,108,108,109,112,95,94,107,101,105,95,104,101,109,106,92,103,100,117,104,117,90,107,109,107,90,109,97,108,94,104,110,107,106,103,103,104,109,102,105,108,101,103,116,114,98,109,112,91,98,95,110,107,109,114,98,91,102,111,124,101,109,91,115,110,101,113,98,90,117,109,116,110,95,98,110,107,95,94,93,105,102,101,110,94,91,94,102,112,110,106,108,116,97,117,91,107,101,115,101,97,116,104,120,102,105,96,117,105,117,103,102,104,102,105,106,100,117,99,101,92,103,108,96,109,110,105,103,111,105,105,105,107,107,109,106,116,113,101,93,115,94,105,99,109,92,106,103,100,100,111,109,92,103,105,111,105,108,106,104,103,111,117,114,109,92,99,114,115,117,123,106,121,98,109,108,108,104,104,99,112,109,101,115,108,116,102,98,100,109,101,101,100,100,102,109,112,103,128,99,100,109,105,106,107,104,103,112,109,94,106,110,114,123,116,105,121,101,97,107,102,110,93,98,125,101,115,112,97,96,92,96,105,105,102,100,98,98,108,93,95,98,75,112,121,96,107,109,110,110,105,100,117,101,98,103,102,111,76,107,99,116,112,98,101,104,105,103,111,111,113,100,107,100,96,108,102,96,120,110,100,105,110,98,100,105,100,115,110,110,114,104,92,105,108,83,114,104,109,106,102,104,101,88,104,94,98,94,94,107,103,73,98,106,97,110,106,119,101,95,111,99,95,101,99,101,95,99,87,107,107,100,100,94,105,104,104,104,122,110,103,97,105,105,103,112,95,111,104,105,88,106,108,117,111,107,99,96,102,116,105,111,101,103,109,100,98,106,125,118,110,97,94,106,106,106,97,96,125,106,117,87,99,100,107,104,101,99,116,113,99,105,116,101,98,116,116,105,116,107,109,110,103,94,102,107,106,107,107,105,116,121,99,101,104,96,102,92,112,95,87,98,101,103,98,104,92,95,105,106,100,95,100,100,110,102,114,99,99,103,85,95,105,113,105,113,104,101,90,94,106,103,107,98,117,106,112,109,103,93,106,107,95,90,112,98,96,100,99,103,106,141,107,76,102,99,103,114,102,98,87,94,99,97,112,108,114,110,103,104,114,99,105,108,100,117,118,114,91,97,95,100,97,105,102,97,103,96,107,107,111,100,97,99,115,102,117,99,91,107,94,111,112,99,116,111, +610.74701,97,108,101,101,103,109,110,96,113,114,107,98,96,112,112,81,91,96,104,116,102,99,98,103,105,110,98,95,101,109,82,106,104,107,113,98,109,115,109,106,97,106,97,114,116,121,102,116,101,103,99,115,109,91,97,98,109,106,100,107,107,101,106,99,104,111,96,100,112,91,102,110,99,106,96,104,88,107,121,103,98,94,101,106,93,106,101,115,94,106,112,102,112,103,94,103,99,105,101,103,101,109,100,101,115,135,99,118,105,109,104,98,113,103,120,116,109,108,105,91,107,95,109,106,109,101,95,95,118,114,108,95,99,101,115,109,90,101,101,115,101,108,89,110,85,102,113,114,101,108,107,109,91,101,117,110,99,102,90,95,98,111,107,102,108,90,100,94,104,99,115,107,93,96,106,99,101,107,105,102,97,100,89,108,109,86,82,109,112,103,106,94,116,105,106,107,100,100,93,114,105,109,105,113,89,106,100,109,117,111,101,114,109,95,103,109,113,103,101,96,105,73,105,103,116,106,96,119,99,122,110,104,109,99,105,104,106,99,103,101,108,115,116,92,101,109,82,118,108,120,112,117,114,108,115,103,101,105,109,99,94,106,101,96,111,110,108,110,109,103,109,102,112,101,101,114,103,113,105,121,109,104,103,106,106,95,101,103,101,111,100,104,106,103,110,117,110,96,99,100,111,111,103,106,105,101,114,113,114,107,100,121,94,114,112,106,111,97,92,104,106,103,108,98,102,100,96,97,106,102,97,96,113,113,104,95,99,109,94,111,126,92,105,99,114,122,103,106,104,104,108,106,98,110,116,93,107,110,104,108,101,110,104,91,106,105,109,102,99,110,109,103,124,114,107,105,98,102,98,107,109,109,112,113,97,108,100,104,99,104,103,112,108,103,108,105,112,109,94,112,100,110,114,83,101,95,99,113,97,108,99,102,109,100,108,113,94,103,104,102,95,96,103,110,106,97,98,104,110,125,93,107,96,103,108,107,110,103,102,77,111,95,101,95,113,111,109,107,109,91,87,95,105,112,108,103,94,104,105,102,100,93,113,99,106,106,109,112,97,90,108,107,104,95,108,101,84,117,114,102,100,112,108,94,117,100,115,100,96,106,109,112,112,100,100,109,116,102,105,97,101,104,107,103,122,109,104,110,104,105,114,104,92,111,107,112,103,120,97,96,109,116,105,100,112,102,104,113,91,110,107,113,103,100,104,107,100,95,116,100,106,113,96,101,114,88,110,118,105,100,104,120,102,105,97,102,95,88,102,113,114,100,106,107,107,94,107,110,114,106,110,95,105,102,99,113,106,105,100,102,104,93,103,103,103,96,104,107,103,109,106,96,107,105,113,105,109,112,118,97,102,99,135,103,116,100,114,109,108,105,107,105,114,92,113,100,113,110,109,112,103,105,99,98,102,104,104,115,108,107,107,100,95,110,95,98,107,100,112,116,108,104,104,100,101,104,104,96,104,102,100,98,86,110,109,103,115,104,121,105,111,100,108,108,100,103,102,113,105,97,119,105,104,109,100,116,97,75,99,109,116,97,113,105,113,102,102,107,108,105,101,111,112,110,100,109,102,105,106,105,98,107,102,97,107,111,108,102,102,106,98,92,101,107,88,105,91,107,98,96,125,110,101,112,103,100,105,93,110,106,108,110,82,102,104,100,107,104,115,100,107,98,105,100,109,109,108,107,103,103,100,111,107,97,108,100,103,98,107,98,102,116,111,105,101,102,93,104,110,111,117,105,118,108,106,92,102,106,113,98,112,115,104,114,101,109,107,112,104,96,115,105,99,107,100,109,118,108,107,108,96,104,95,98,105,89,99,109,101,107,113,101,96,103,105,103,107,90,109,95,115,113,104,115,96,104,107,103,107,97,102,106,105,112,105,125,112,105,99,106,104,104,110,90,95,101,114,99,102,102,104,97,106,97,97,107,100,119,103,101,100,99,101,108,90,100,109,116,109,94,102,111,92,105,107,103,105,106,92,99,115,122,96,95,112,110,93,112,107,108,111,114,112,121,100,100,95,101,99,95,90,109,100,104,105,107,102,110,97,102,103,101,124,109,107,109,94,105,96,104,114,108,103,102,97,102,93,104,111,110,103,114,99,96,101,108,109,107,102,99,95,114,105,102,98,91,91,109,107,117,99,112,113,110,96,97,117,110,98,109,101,96,94,93,108,104,113,106,72,104,106,115,102,106,95,105,108,105,97,114,90,93,102,109,106,99,107,111,92,99,106,94,109,100,101,103,106,99,94,93,103,103,108,126,93,117,108,104,101,106,108,103,103,107,101,102,100,101,116,110,106,115,107,112,107,90,103,105,101,109,112,113,99,104,109,102,114,125,115,129,109,134,127,127,137,121,107,139,128,124,119,117,124,137,99,100,124,114,104,113,99,111,110,105,104,108,108,101,105,115,99,111,102,102,112,102,124,101,101,105,102,106,109,110,124,118,89,100,96,105,113,103,113,92,108,100,120,103,106,115,103,87,116,83,93,104,99,94,91,97,127,113,104,98,113,97,101,105,87,108,109,96,98,107,109,111,102,104,109,95,106,115,97,104,103,106,85,107,91,108,95,100,113,109,101,102,104,103,104,117,103,111,133,105,112,106,103,116,112,102,88,102,113,102,101,108,113,103,107,102,104,119,110,105,101,109,102,97,98,108,104,98,99,85,105,99,116,103,111,109,100,102,110,104,98,110,95,101,102,112,83,104,105,110,105,114,98,95,108,99,95,95,85,112,122,121,103,112,98,106,106,114,99,114,107,98,94,109,104,107,91,117,95,103,113,111,111,98,113,99,92,108,113,114,103,94,99,104,100,93,111,112,113,92,119,109,103,104,97,105,106,101,103,108,109,102,113,106,106,102,108,103,112,116,104,113,92,104,93,109,103,107,116,100,113,102,106,113,129,97,103,109,103,98,83,109,99,104,123,109,99,109,106,105,102,103,102,107,109,96,102,97,101,103,98,116,103,109,105,109,96,107,99,107,120,99,99,99,97,98,102,90,103,117,102,109,101,90,98,102,106,100,118,101,111,93,98,104,105,106,114,73,104,107,111,107,115,117,104,87,107,117,117,99,106,97,99,104,109,108,93,111,109,113,106,109,109,108,106,104,102,102,102,106,103,102,101,87,111,98,94,111,106,101,65,113,102,103,106,114,109,102,93,76,108,107,98,113,104,108,78,95,113,108,111,96,104,104,106,123,102,97,93,105,100,100,94,99,111,102,86,103,105,115,96,109,109,114,94,104,128,97,115,95,111,105,104,96,107,109,102,108,102,88,98,112,118,105,108,104,98,102,105,101,110,97,88,102,106,104,107,99,102,95,106,113,103,112,123,102,105,107,105,109,89,112,105,110,100,100,99,109,98,112,106,104,101,107,106,111,111,116,105,105,101,91,106,93,101,127,96,109,92,99,103,105,112,102,96,84,98,112,100,109,95,95,94,98,84,92,105,99,110,95,107,115,104,101,101,105,95,107,72,113,113,102,120,98,101,91,96,108,102,109,119,93,113,115,89,107,108,109,93,106,107,112,114,105,103,102,104,105,104,106,103,100,112,106,106,91,92,99,104,116,103,80,112,101,108,103,83,88,113,99,99,105,104,105,105,111,91,106,101,110,97,103,107,104,98,108,94,109,105,106,101,91,108,108,112,102,107,109,112,100,84,104,102,105,114,94,95,105,108,107,114,106,103,102,114,110,95,96,99,89,104,107,104,92,92,106,105,108,100,105,97,102,105,100,117,98,100,103,104,104,104,105,108,102,107,76,101,105,100,103,94,102,105,95,111,105,102,103,110,103,98,95,99,99,94,116,110,113,110,101,105,113,117,103,107,101,105,114,94,101,106,106,100,107,95,105,103,97,103,101,100,96,103,104,106,109,113,103,102,91,104,104,108,101,99,90,107,102,112,106,108,106,101,104,96,91,95,101,101,94,100,108,91,99,90,109,106,113,105,110,109,103,102,115,97,104,104,121,99,114,94,91,100,108,103,109,100,108,103,100,109,107,99,94,119,104,107,101,93,101,95,97,110,93,99,97,113,95,100,102,94,108,111,103,102,99,101,101,98,110,107,108,103,117,109,113,114,113,101,109,86,105,106,104,101,98,100,98,105,111,102,91,102,107,109,105,112,98,99,99,106,113,114,107,115,103,98,98,111,97,101,94,105,106,102,104,119,102,95,114,108,104,103,103,111,110,100,100,105,104,113,93,105,99,104,102,102,99,105,88,99,101,102,112,102,111,111,102,107,100,114,104,104,89,90,110,97,106,113,110,107,106,102,96,104,115,102,102,114,102,107,114,97,104,109,103,106,105,106,108,101,94,102,102,115,100,109,100,100,106,102,103,106,100,92,103,103,106,106,107,106,114,116,106,99,103,85,91,100,109,92,104,117,104,91,91,100,115,98,111,99,107,99,102,111,102,101,95,100,104,108,92,95,114,108,101,104,91,103,102,95,100,106,99,98,110,102,99,126,106,114,106,97,121,101,106,93,91,100,92,100,102,104,109,114,101,109,112,101,104,102,103,106,96,106,113,99,107,105,107,103,117,107,84,92,99,125,101,121,101,89,89,108,110,103,111,91,109,96,105,109,102,99,110,99,109,105,124,103,102,97,109,116,98,98,116,85,82,113,113,103,108,98,130,107,99,94,105,114,102,113,107,100,108,94,111,94,100,106,103,96,106,105,108,108,104,91,102,99,108,103,99,116,94,111,110,104,99,103,100,108,108,104,99,100,112,111,91,105,101,109,108,98,96,106,88,105,102,101,104,99,100,107,101,108,107,111,102,107,107,110,104,106,91,105,104,95,115,109,95,92,83,89,102,108,105,106,103,101,98,99,93,105,113,107,114,114,101,108,107,112,110,81,102,83,126, +610.88806,105,108,105,97,86,98,113,112,106,101,99,105,102,111,115,103,101,101,100,101,110,104,115,104,103,93,102,116,107,108,99,101,113,104,113,101,100,114,92,108,95,99,105,114,83,109,110,101,93,114,99,104,99,108,108,108,104,100,105,86,111,110,109,100,107,96,96,104,100,106,102,106,95,114,101,92,102,108,103,109,113,105,81,123,107,91,109,104,109,98,106,107,98,103,97,103,110,104,103,111,105,104,106,101,106,99,107,104,103,114,110,105,91,110,112,105,110,105,99,99,100,105,119,111,112,115,110,111,106,117,109,98,115,103,112,112,101,102,101,103,108,112,92,102,95,109,125,96,103,124,114,111,101,95,105,99,99,112,101,109,121,105,107,99,101,101,105,102,117,96,98,104,118,88,104,109,112,96,104,97,103,106,114,108,105,107,113,91,100,102,99,92,107,97,102,101,116,106,104,102,97,86,108,111,94,104,101,105,105,109,107,103,102,111,114,97,101,107,108,111,103,118,95,97,105,99,100,99,96,96,109,84,97,111,105,117,105,101,117,112,99,101,100,112,104,91,96,107,108,105,100,98,100,110,95,116,109,114,97,96,97,100,101,105,100,106,99,105,96,113,108,76,105,86,130,103,91,109,115,115,105,108,104,106,99,113,104,104,110,103,102,104,108,120,110,104,102,112,105,113,102,107,97,107,107,109,111,107,97,109,109,103,115,107,107,129,108,114,111,112,92,99,103,109,108,103,94,87,120,109,95,100,104,95,96,108,97,103,109,93,92,94,102,96,94,76,106,101,99,119,106,96,104,98,106,108,96,97,109,105,108,92,107,105,119,97,112,109,104,106,109,104,100,97,102,102,122,113,95,103,106,113,103,106,99,101,101,106,103,118,119,91,102,120,105,112,111,103,102,101,106,103,95,101,106,97,113,111,110,103,103,123,102,109,100,98,116,107,116,112,96,103,110,115,108,100,105,106,103,107,95,110,93,109,100,105,110,112,97,106,104,111,101,103,102,100,111,95,105,120,84,116,107,118,101,68,110,102,115,102,85,105,98,112,103,115,106,99,105,110,119,103,101,99,114,112,95,99,100,103,106,95,105,98,107,99,104,98,102,103,106,110,102,110,105,107,103,109,120,104,110,109,113,100,103,106,105,99,104,105,116,112,102,101,106,91,110,103,109,97,108,107,99,114,103,102,113,102,114,118,114,118,123,125,102,102,111,107,92,111,107,102,105,112,118,106,112,91,108,111,107,98,113,97,110,101,103,93,103,96,103,103,102,102,106,116,113,107,103,104,102,106,94,109,114,105,112,106,97,99,101,107,113,96,98,98,110,98,117,106,117,102,104,102,110,108,87,84,111,109,96,124,104,101,104,106,95,97,105,98,98,101,111,102,108,90,98,111,109,104,110,94,104,103,119,94,101,109,118,104,102,115,110,107,100,106,102,94,91,113,114,104,105,101,109,108,108,104,103,109,105,116,101,110,102,105,104,106,109,106,99,114,100,105,104,91,93,100,103,110,107,104,95,99,108,96,99,107,109,103,112,101,109,106,101,116,102,115,107,114,113,118,107,106,95,112,95,89,95,105,98,100,88,108,113,105,108,104,102,95,101,108,100,87,94,105,105,85,100,110,108,95,125,113,97,98,96,113,116,110,104,122,115,103,107,101,101,103,115,102,109,90,105,112,100,100,102,107,117,104,107,104,99,95,115,97,113,100,101,99,101,108,104,98,101,111,112,97,105,103,104,105,101,104,100,105,106,102,103,106,108,101,100,113,104,104,108,101,105,109,103,98,108,113,106,115,102,107,114,117,96,100,103,113,90,129,110,95,108,112,122,120,97,112,99,100,102,109,109,108,103,108,105,100,105,115,104,99,105,92,109,101,111,114,110,101,96,96,96,104,102,107,82,99,102,97,93,113,102,102,100,112,103,102,108,110,112,110,75,100,90,99,109,103,108,111,102,99,111,117,106,110,99,113,110,94,110,101,112,111,84,109,107,104,104,108,111,103,108,103,102,116,102,106,107,107,91,103,104,121,101,110,112,103,104,118,94,100,105,97,122,108,111,105,111,116,119,114,105,95,107,95,109,114,115,105,105,108,101,109,106,126,100,109,104,110,107,91,110,104,109,110,112,112,102,95,99,110,103,106,87,109,115,118,105,116,125,100,111,111,110,110,104,100,111,108,109,106,100,102,105,106,122,107,116,94,99,100,106,112,105,109,99,101,113,101,96,100,103,106,100,97,107,110,108,101,104,116,92,104,115,100,99,94,105,121,113,100,103,108,92,112,108,104,100,80,100,95,101,108,115,113,107,109,113,102,101,96,112,95,108,110,102,102,117,111,90,104,100,150,125,129,122,128,123,119,129,117,107,123,117,109,108,110,99,100,106,122,113,122,93,107,114,102,102,113,95,117,91,90,101,107,101,100,101,112,100,118,92,108,105,101,101,128,110,103,99,96,111,121,112,94,106,95,109,105,104,105,109,106,103,106,112,100,112,103,123,102,98,105,117,120,106,110,95,110,110,105,106,120,105,103,104,96,110,108,102,107,99,115,110,115,110,104,104,121,117,99,102,101,100,96,110,110,96,111,102,94,108,116,111,103,102,111,99,109,113,102,96,112,126,101,113,97,108,118,106,99,130,90,95,111,100,102,101,107,106,113,111,108,127,81,102,113,101,102,107,106,103,104,90,117,95,109,97,109,104,109,108,111,98,103,116,96,95,100,97,109,108,102,110,98,97,104,106,117,107,99,117,99,108,128,106,101,91,101,110,106,120,90,116,111,92,107,109,101,112,98,106,100,111,99,118,102,110,116,107,108,103,112,108,99,106,119,142,104,105,109,87,114,111,113,108,115,113,101,116,112,103,102,106,105,110,113,115,96,110,112,113,107,97,110,100,104,101,109,106,113,103,106,99,93,107,103,118,99,93,105,105,100,96,105,103,108,111,90,105,104,100,100,94,109,103,94,100,121,109,95,110,106,104,115,100,113,117,103,106,113,100,110,81,109,105,100,122,116,117,73,100,100,116,101,116,97,109,108,93,98,113,102,107,110,97,121,108,91,102,94,101,102,113,102,110,111,107,104,129,106,94,100,107,110,109,110,110,103,100,106,103,112,96,104,127,109,112,111,113,99,94,116,94,98,108,104,120,106,110,98,102,102,104,107,105,99,107,104,104,112,107,99,102,116,112,109,100,112,106,110,88,99,106,110,106,102,108,105,106,91,111,98,98,104,114,115,104,91,98,92,101,95,110,110,103,106,103,97,102,103,107,103,101,93,120,99,104,108,104,69,99,114,111,92,105,104,98,103,99,105,97,98,95,112,108,91,116,110,113,108,113,112,106,100,98,103,102,101,103,91,110,102,104,104,107,101,98,105,110,111,116,99,102,90,106,104,108,111,103,113,104,115,109,103,106,114,103,104,101,107,100,107,95,103,98,105,112,101,98,97,115,99,113,108,106,108,108,110,106,121,105,102,101,101,94,107,107,109,99,103,109,95,115,105,105,117,105,95,116,106,103,114,104,109,102,102,114,95,102,108,105,99,116,90,95,111,114,98,105,103,93,110,105,95,94,114,102,101,101,107,110,103,114,101,86,102,107,107,105,112,103,108,92,111,106,99,113,112,115,111,110,112,93,94,105,110,105,106,104,115,108,102,100,123,100,115,104,105,102,93,97,104,98,105,108,111,115,117,106,97,107,103,98,108,103,104,118,106,92,117,125,109,112,113,105,98,110,108,112,101,112,106,94,91,113,112,113,100,109,105,109,103,98,109,111,100,111,108,123,111,103,117,116,99,106,95,118,114,96,89,100,99,99,103,120,103,95,105,103,113,111,111,93,99,106,101,104,96,106,96,103,106,108,100,105,118,97,111,103,95,102,96,105,98,100,110,95,99,107,114,117,96,112,104,109,108,103,107,98,104,110,108,98,101,88,113,104,110,109,110,92,117,113,121,107,96,102,115,107,87,104,114,108,112,113,112,93,100,100,101,105,102,102,102,109,115,102,121,105,93,105,94,113,100,94,95,117,108,113,108,116,108,105,106,107,102,100,109,101,107,105,109,105,106,104,120,102,102,86,105,116,106,117,99,90,96,107,81,123,109,98,107,99,102,98,106,103,119,91,110,118,116,107,105,96,120,102,113,92,98,101,102,109,110,105,99,109,121,83,105,115,104,116,104,107,101,107,95,89,109,105,93,117,107,85,102,105,113,100,111,98,106,110,109,102,102,103,97,95,99,109,85,108,112,111,104,100,86,112,103,109,101,98,93,104,105,89,104,107,102,104,102,120,104,109,113,101,102,117,105,91,95,75,98,119,103,106,111,95,94,107,115,95,97,110,98,93,103,106,101,102,109,96,107,96,106,102,103,112,97,110,94,101,105,105,104,100,71,109,99,99,114,111,106,104,108,94,97,107,104,104,100,104,119,98,108,102,91,109,102,104,106,101,110,112,109,97,106,100,113,85,88,91,104,102,104,113,102,99,102,105,98,101,90,102,99,92,105,100,108,104,98,102,110,96,104,107,95,90,103,109,103,112,106,117,101,101,110,111,99,105,98,104,93,103,124,108,108,111,104,109,99,92,101,104,104,102,106,111,106,87,101,99,109,104,100,104,105,116,103,110,106,103,98,115,108,99,108,111,100,98,99,112,103,108,103,94,101,103,102,104,109,107,88,112,104,95,104,105,124,104,116,121,107,105,101,109,105,113,98,98,91,115,108,103,119,110,112,104,109,96,106,99,101,108,97,102,93,109,97,110,99,108,99,109,112,99,106,107,133,92,88,115,111,81,91,102,123,100,99,106,112,103,95,99,112,119,113,104,96,106,92,124,108,102,100,105,90,114,111,93,109,114,104,99,112,91,105,104,103,92,77, +611.02917,106,114,91,104,81,92,98,93,97,106,105,111,108,103,101,106,93,111,105,102,107,100,104,103,107,102,124,102,132,117,99,112,107,105,101,92,104,95,107,97,93,97,113,103,118,99,118,102,111,116,101,98,99,107,93,105,106,100,110,101,109,104,106,91,104,113,107,137,117,98,100,103,104,95,92,120,104,116,107,111,117,110,108,105,108,113,102,105,113,100,103,100,95,113,93,101,112,111,102,101,99,103,90,100,97,113,109,105,110,101,115,90,107,114,103,95,77,104,110,102,106,123,101,125,96,98,98,97,93,108,105,112,101,103,96,94,122,115,99,94,107,106,100,110,106,104,113,116,105,98,99,101,105,93,78,99,96,112,95,94,105,115,110,104,90,131,117,107,101,105,113,111,112,107,106,91,108,122,108,108,103,101,115,111,99,119,118,99,79,93,88,103,113,105,125,108,106,112,100,109,108,100,94,119,91,104,108,105,99,105,97,103,113,112,100,104,103,106,99,115,103,97,118,99,97,93,113,113,110,107,97,99,108,106,108,98,102,100,108,100,102,103,106,107,112,106,109,115,102,102,96,98,107,108,96,114,98,116,105,106,97,118,103,76,106,114,112,101,101,101,104,96,114,112,113,117,102,108,108,98,97,100,103,102,107,100,103,99,98,100,98,118,117,94,84,98,129,93,107,105,103,101,94,106,106,109,105,110,104,106,99,110,105,107,103,101,104,106,97,94,96,106,108,112,110,92,91,103,106,98,109,102,104,110,94,96,112,97,100,94,107,98,110,101,107,99,105,95,108,113,100,111,103,101,106,105,104,101,117,103,100,100,109,106,98,105,97,112,113,114,102,114,116,106,113,104,107,97,98,114,108,103,105,101,108,116,100,106,99,99,115,90,100,109,113,103,103,101,101,117,99,111,99,95,101,99,106,124,107,103,99,104,102,96,108,106,100,90,121,106,110,92,104,106,114,101,96,96,100,113,106,95,91,87,98,127,101,103,101,109,104,95,108,110,101,101,107,86,80,79,109,117,103,132,108,109,96,98,116,104,104,113,108,100,98,109,87,95,124,101,108,103,109,94,93,108,107,109,107,86,100,118,113,99,99,99,105,99,103,98,99,87,104,108,97,106,93,107,119,104,106,106,111,100,94,104,98,112,103,103,112,91,103,109,110,106,113,105,129,116,102,99,99,108,104,118,113,103,109,105,107,107,101,103,99,106,109,118,87,104,105,103,94,87,102,111,107,106,102,109,117,115,94,94,91,108,115,109,105,107,103,115,123,115,108,106,108,121,91,118,99,100,99,109,102,102,104,101,114,85,96,100,117,100,94,114,117,111,116,102,104,107,101,104,116,112,116,105,96,97,96,107,103,100,115,105,94,100,102,100,104,102,111,85,115,108,105,121,125,105,113,103,104,104,103,101,100,103,107,104,105,109,103,116,113,104,108,102,97,112,103,105,106,115,101,91,106,106,101,121,103,104,110,124,109,107,112,119,112,105,106,106,112,112,104,104,107,111,98,90,104,110,99,99,117,111,84,108,110,117,110,102,101,104,99,109,106,107,97,101,103,103,98,114,92,113,103,111,109,101,105,110,111,110,113,106,103,101,95,96,107,105,91,100,110,125,101,100,93,115,112,91,97,110,99,107,125,101,104,99,95,101,107,95,105,103,99,113,107,107,110,107,97,105,105,90,116,110,100,108,110,78,107,103,102,109,113,105,111,106,100,101,104,109,99,109,80,104,121,101,105,89,104,95,117,104,109,99,100,105,101,107,122,118,113,103,99,112,95,113,118,120,85,115,116,100,104,91,101,103,108,93,112,115,125,111,107,93,92,107,105,109,114,109,111,101,113,91,99,105,111,107,80,105,113,107,101,99,108,92,98,103,105,112,110,107,111,109,110,117,102,104,102,121,105,112,95,106,112,99,113,105,103,98,101,107,110,113,97,99,105,100,110,97,108,119,100,117,105,94,91,107,106,104,96,99,120,102,112,97,107,105,134,104,100,95,105,114,94,104,112,110,110,102,113,101,104,112,111,98,101,99,106,98,105,95,100,103,99,104,106,107,79,104,108,105,111,109,108,95,104,107,112,91,102,106,107,96,94,101,113,117,99,104,102,112,107,97,99,107,102,107,123,108,95,99,99,105,109,97,106,105,96,108,116,106,105,113,94,106,107,99,109,102,103,97,102,98,108,101,109,111,100,92,111,121,105,98,99,112,98,118,95,109,92,88,107,109,106,99,105,98,105,100,97,97,113,101,104,110,102,101,100,99,109,105,104,104,105,110,96,100,109,101,93,109,116,104,110,109,108,107,113,95,115,104,88,100,115,108,126,102,96,102,105,95,113,113,111,109,99,116,111,122,127,131,121,122,114,113,113,112,131,109,104,116,107,107,112,97,119,114,98,109,107,116,105,108,117,130,100,115,103,114,119,109,97,110,103,107,107,89,98,98,107,104,90,95,110,106,104,106,103,100,96,98,93,109,105,113,95,104,110,111,109,113,108,99,115,131,90,102,90,108,100,106,106,112,111,105,109,105,108,115,109,104,89,107,98,115,94,101,107,97,95,106,93,98,112,110,97,99,102,112,96,99,112,110,108,98,93,112,104,107,104,106,118,109,101,100,102,101,101,98,107,106,113,101,108,101,98,116,105,105,99,112,108,96,109,98,108,105,88,91,102,123,101,98,107,95,98,99,113,103,113,101,106,89,103,98,99,108,115,97,101,98,101,98,117,113,107,95,110,95,115,98,112,106,107,99,106,94,109,107,99,109,102,100,104,104,89,113,95,106,84,101,102,99,102,103,109,95,105,105,99,96,98,111,104,99,108,94,88,111,102,77,97,108,108,106,99,107,99,112,105,86,101,101,110,104,104,99,113,101,113,109,107,102,101,109,112,98,97,106,120,102,105,99,99,98,98,95,97,97,88,100,107,103,101,100,117,103,95,108,108,106,92,101,113,87,96,106,100,98,104,111,107,106,102,85,94,103,102,106,117,98,115,102,101,109,103,104,105,113,97,110,105,98,98,102,105,110,109,121,113,100,100,103,82,90,111,107,99,97,101,103,113,105,102,101,105,104,112,96,113,100,90,101,102,108,110,93,116,98,109,98,98,110,113,93,110,100,91,101,100,116,104,112,108,91,97,91,114,116,101,129,109,100,100,107,103,101,92,98,77,98,136,121,103,102,98,118,104,106,109,105,103,116,98,101,99,118,98,92,104,106,99,107,108,106,106,109,97,109,108,116,96,117,103,110,98,102,93,121,109,100,113,99,104,102,100,104,110,94,98,117,103,103,115,95,120,104,110,105,105,98,99,104,101,101,105,105,104,95,97,101,97,107,107,103,109,104,89,101,89,111,104,87,111,101,103,91,91,96,109,91,118,96,125,86,105,107,97,103,105,121,103,100,105,95,102,97,108,95,110,111,99,97,104,104,106,103,103,97,113,98,93,101,98,110,111,95,102,77,100,110,121,98,105,103,105,93,110,103,103,119,105,91,93,104,107,98,102,105,98,100,106,87,104,108,104,122,103,105,95,103,86,106,97,119,108,79,130,100,83,113,112,93,103,106,97,101,109,102,103,104,111,102,94,104,94,77,105,104,95,91,104,106,100,98,109,100,101,92,99,96,99,116,102,113,94,101,97,113,98,105,102,112,88,103,116,101,101,95,90,98,103,98,101,101,109,98,101,103,113,98,94,103,107,96,105,102,104,106,108,95,105,100,111,101,108,105,98,98,107,102,107,104,101,99,107,91,111,104,103,102,96,94,105,111,96,110,88,102,106,103,105,113,123,107,119,96,114,114,108,101,105,94,103,96,109,108,92,98,96,99,103,99,106,91,95,123,114,104,104,102,108,100,96,103,101,107,101,113,101,103,99,97,105,103,98,101,110,109,100,106,101,96,95,113,109,122,120,100,98,110,96,107,99,99,101,100,94,111,108,109,94,120,103,109,111,105,104,95,98,104,92,102,91,112,109,95,112,100,109,102,101,115,106,99,99,97,98,94,101,102,102,100,97,103,102,104,102,105,105,94,109,100,103,111,104,97,101,95,100,95,103,102,110,101,116,115,102,100,109,113,98,113,94,110,116,108,101,103,97,97,110,104,108,96,92,102,104,96,106,102,97,97,102,99,93,108,100,96,100,102,107,87,109,100,114,119,95,106,109,97,103,119,105,104,106,111,111,106,124,105,99,95,107,108,101,99,116,107,102,95,109,98,98,91,99,100,117,98,111,96,105,103,102,96,97,99,117,99,92,104,112,98,96,118,102,108,102,97,96,113,96,102,102,115,114,110,116,103,94,121,106,113,100,104,117,108,129,107,97,95,97,98,98,97,101,108,118,97,100,105,107,99,107,111,101,110,97,95,98,126,111,106,95,104,105,100,101,100,104,99,98,112,108,98,116,105,80,87,94,96,82,107,101,111,112,111,114,109,98,94,96,96,107,109,113,91,94,97,101,100,104,96,99,103,101,95,106,99,106,108,114,108,105,106,104,97,108,111,100,96,106,102,98,109,107,100,92,106,98,100,105,111,99,98,88,102,98,97,94,115,108,110,94,94,106,98,97,114,108,92,112,101,91,116,97,108,108,91,98,129,94,95,99,98,115,78,99,109,110,101,105,103,102,101,111,90,95,105,100,105,93,95,95,103,102,101,113,101,112,91,96,103,92,88,113,103,103,105,97,108,107,96,102,96,91,105,93,101,101,92,103,102,110,100,100,105,90,108,107,102,109,104,117,90,126,118,106,99,95,106,109,101,106,103,101,95,109,108,104,106,100,103,100,112,110,104,98,88,106,95,104,99,99,102,106,116,93,107,99,106,106,110,90,100,91,100,110,102,124,83,116,109,104,98,99,105,98,94,112,108,113,97,112,102, +611.17023,104,85,108,99,107,94,117,103,112,111,88,107,98,111,122,108,102,109,102,106,113,108,98,113,89,110,93,105,101,120,105,96,102,87,121,100,133,100,123,108,115,111,99,99,99,114,110,118,106,104,86,108,117,121,106,96,95,109,115,99,108,107,107,107,114,104,102,98,110,97,102,101,91,105,95,105,101,94,103,91,98,108,107,97,109,95,111,90,105,105,105,111,109,97,86,108,96,80,100,95,100,103,105,107,98,108,103,100,98,100,99,109,101,92,113,97,99,111,100,104,104,86,113,99,104,102,106,102,112,99,105,105,102,96,122,104,112,99,108,102,90,103,89,97,99,102,115,107,99,101,120,100,102,97,102,102,109,104,103,110,100,114,99,99,113,102,105,83,102,87,90,109,99,107,103,97,109,92,117,98,121,101,101,111,99,98,105,65,110,100,103,93,103,102,103,109,100,95,102,90,101,100,106,98,104,108,104,125,109,104,89,96,101,99,108,99,113,95,94,103,103,108,91,115,108,116,95,101,124,104,108,108,108,114,110,107,107,115,116,109,100,103,81,106,103,106,101,112,100,110,104,101,107,115,103,108,102,107,102,105,99,108,109,107,112,103,97,111,118,99,110,109,111,114,101,108,90,116,91,117,98,108,100,118,106,99,100,110,109,107,106,100,126,87,97,108,105,107,95,92,116,124,105,98,86,106,105,109,113,108,90,119,111,103,107,95,104,113,112,102,105,94,92,111,105,92,98,98,115,112,108,103,109,112,119,97,102,113,113,103,107,109,102,103,100,115,118,128,111,98,92,103,104,100,118,107,110,123,105,94,98,105,113,93,102,103,94,106,106,111,101,109,107,102,114,102,119,98,111,114,108,118,97,124,109,110,111,101,122,109,114,96,110,99,129,112,97,110,113,104,95,112,115,104,107,104,108,103,102,110,95,100,119,97,108,101,96,110,100,97,106,78,107,103,104,110,96,87,95,106,106,121,106,106,108,87,106,103,101,102,115,99,118,112,104,125,109,109,108,103,102,103,113,109,101,107,101,106,109,103,95,93,113,128,114,94,130,94,109,107,101,107,102,103,108,110,97,110,114,108,102,119,103,99,104,92,120,106,95,108,114,122,101,100,100,115,111,100,107,87,110,95,106,86,109,115,108,111,105,111,109,112,114,110,98,99,104,102,106,103,100,93,107,103,119,100,106,108,99,115,100,101,106,112,103,90,102,88,125,98,106,102,101,96,117,123,107,108,98,109,110,114,101,86,111,103,121,98,104,114,121,107,106,104,98,106,118,111,111,111,104,120,103,125,113,112,104,94,107,108,100,111,111,110,102,104,109,121,111,97,83,120,107,103,110,116,106,115,110,111,110,105,104,112,119,94,104,106,95,102,102,115,106,104,106,91,110,102,119,107,116,99,84,106,107,108,101,94,99,110,98,102,109,115,109,121,113,101,110,69,99,109,106,122,97,104,94,106,123,107,110,96,112,110,105,115,107,114,115,106,107,112,100,101,100,101,99,107,130,106,109,103,89,103,113,106,100,100,117,105,111,104,112,121,95,107,99,80,91,104,114,115,99,111,113,104,103,92,105,103,95,100,92,101,111,111,111,118,104,105,112,103,100,106,107,122,116,103,123,100,98,107,111,100,106,107,107,99,112,108,97,102,122,103,106,92,103,107,99,97,103,71,117,107,96,109,95,95,96,114,111,103,93,108,116,99,113,98,109,102,112,107,97,110,102,97,96,108,107,100,117,119,104,108,102,112,114,109,107,97,109,104,112,102,110,102,100,117,110,108,113,111,107,106,93,117,99,98,108,111,101,106,97,103,106,92,99,112,103,98,106,101,98,119,113,108,90,112,106,103,121,118,104,95,109,105,108,104,110,106,118,102,112,91,110,106,112,112,104,96,89,115,113,106,101,103,121,102,104,105,99,100,97,103,97,100,106,104,100,109,112,109,121,113,103,93,83,104,98,106,100,107,103,108,104,101,110,116,110,105,113,103,105,115,111,110,91,112,100,114,111,110,111,110,106,98,116,107,129,110,104,115,102,110,108,102,110,105,113,120,105,103,95,124,111,108,99,101,95,117,114,103,116,103,107,110,102,105,108,112,98,105,107,109,110,107,114,111,102,107,122,103,107,113,107,84,128,105,86,108,117,102,104,104,114,125,103,103,120,109,101,111,101,95,109,105,100,114,106,106,100,104,106,109,106,102,110,119,100,104,100,115,114,95,104,102,100,112,98,105,113,100,100,72,107,111,130,117,115,102,114,101,122,101,100,108,107,109,105,84,109,101,102,108,100,96,107,104,94,102,108,110,108,99,106,104,93,111,122,96,112,117,106,108,102,106,100,117,114,113,102,107,117,128,121,134,119,131,108,119,137,124,112,108,119,106,134,112,113,103,114,103,103,109,101,113,100,117,95,108,105,122,103,106,111,98,112,104,107,104,98,120,103,113,81,124,95,105,106,104,113,112,97,101,102,108,102,93,94,98,106,87,113,97,102,100,112,92,119,109,105,106,99,105,109,107,109,110,94,114,116,104,104,109,109,117,106,98,133,120,100,117,103,101,99,105,110,111,99,100,106,100,107,102,104,107,104,91,112,98,97,105,107,111,98,101,111,106,101,113,105,102,115,95,115,103,122,113,101,99,103,113,103,102,100,93,111,99,104,116,109,105,106,104,102,113,106,92,106,95,112,110,106,105,119,104,98,121,88,108,109,94,112,102,108,96,101,96,110,107,105,113,103,104,108,108,115,115,102,96,95,113,110,115,101,102,103,111,102,104,105,115,98,96,100,108,107,96,117,111,107,99,111,101,95,117,112,113,106,92,107,104,117,94,102,95,102,100,103,118,102,110,102,101,96,111,110,102,89,99,117,98,108,102,103,99,99,96,103,100,108,94,111,99,96,97,95,105,113,99,105,112,97,105,103,101,99,96,104,104,98,112,102,99,108,107,113,103,102,115,113,108,103,95,104,110,117,109,106,83,106,107,85,92,109,102,110,99,107,108,98,102,104,112,106,101,106,98,89,97,97,100,107,106,100,108,113,107,106,94,110,111,104,109,97,106,120,100,112,110,103,108,105,105,103,99,112,104,102,97,115,107,105,121,114,105,110,104,101,98,108,88,106,112,103,93,105,99,100,107,104,96,105,119,106,100,99,100,117,111,109,97,93,104,104,110,109,106,108,97,98,107,103,104,109,95,109,97,108,106,102,96,91,102,91,95,111,100,109,103,106,116,112,113,103,102,94,95,107,106,109,111,106,104,109,109,95,107,106,113,97,104,109,114,108,96,107,119,111,101,111,111,102,102,105,100,102,99,108,95,118,109,123,105,106,87,113,108,96,100,101,115,95,104,85,105,103,111,99,101,110,107,100,103,106,113,102,98,107,100,96,98,106,107,98,96,108,85,99,100,94,100,115,110,98,106,111,95,95,99,98,101,102,98,83,94,106,101,104,113,109,107,109,88,115,102,95,106,112,98,106,104,104,109,114,108,104,96,103,84,105,105,104,112,99,106,107,103,82,107,96,103,119,106,102,99,96,111,105,114,124,108,106,113,117,102,103,115,109,98,102,107,112,110,105,103,113,110,100,97,96,102,104,113,109,91,102,113,106,110,113,111,102,120,99,108,103,121,107,100,98,99,108,113,96,101,110,109,101,105,104,104,96,106,98,105,103,100,97,99,95,107,110,108,110,116,96,96,101,81,104,105,97,95,104,104,102,107,99,97,107,98,104,106,106,108,117,96,112,111,101,102,95,107,108,98,116,100,120,81,99,104,102,107,116,103,133,100,112,104,114,115,111,92,97,108,101,92,111,110,97,101,104,99,108,107,109,105,106,99,103,107,87,101,95,106,93,106,91,107,87,104,99,103,105,113,88,114,108,109,105,112,104,114,105,94,98,96,103,111,111,106,108,111,108,113,103,107,106,98,94,109,95,107,102,101,102,102,106,104,95,95,104,106,110,107,99,100,96,107,120,118,98,108,93,116,112,105,108,94,100,104,95,108,104,96,95,114,104,119,100,103,102,106,108,106,105,115,90,95,107,95,113,88,111,98,106,103,109,108,92,98,107,103,87,111,94,112,94,94,105,102,101,96,120,108,107,107,110,95,112,95,105,106,116,91,100,97,110,113,98,106,108,106,102,100,115,107,100,102,103,99,119,98,110,95,100,116,100,111,102,98,109,109,101,108,105,107,103,102,109,103,100,103,95,113,106,111,103,107,105,97,106,111,117,116,110,100,106,98,110,94,115,102,86,101,103,92,95,110,96,98,105,102,119,94,92,95,112,108,88,104,113,106,103,109,100,91,105,112,111,109,109,108,112,105,95,110,109,102,118,117,103,104,102,101,102,109,97,109,95,110,101,109,102,107,103,106,111,105,104,91,112,105,101,113,96,91,116,107,109,96,119,104,101,95,104,91,116,108,98,99,99,104,116,104,106,98,114,108,95,103,98,102,97,114,104,106,107,96,103,101,100,111,128,114,115,103,93,104,111,110,106,103,92,94,109,95,102,94,91,107,98,114,90,98,104,102,67,112,109,105,91,96,110,104,79,98,93,97,102,83,108,111,106,109,98,116,100,111,102,117,99,106,112,121,104,110,111,104,87,98,82,105,102,105,108,96,104,108,91,98,113,100,98,110,102,106,102,98,98,116,112,95,104,100,102,106,112,98,99,111,121,101,100,112,109,103,119,87,100,97,90,104,120,91,109,116,79,104,113,100,107,103,109,92,94,100,104,100,104,107,111,109,108,114,99,114,117,96,96,107,110,99,77,83,87,107,100,103,109,106,103,94,104,105,97,109,109,98,101,109,98,109,107,97,109,110,103,97,92,111,81,102,99,96,102,114,99,111,105,101,106,108,106,109,113,102,94,91, +611.31128,84,105,93,102,133,105,94,103,85,105,87,92,87,88,117,106,96,108,104,114,100,95,99,108,105,102,90,99,103,111,105,109,124,112,100,99,98,100,105,97,96,108,100,113,99,99,106,111,96,105,96,98,96,105,100,101,103,106,106,107,100,110,113,101,99,113,100,89,113,114,103,108,102,104,106,110,107,109,112,104,105,102,98,76,114,104,95,125,124,106,112,94,113,93,105,105,87,101,101,107,91,108,113,82,96,96,100,96,106,109,96,99,113,102,105,97,99,94,118,102,110,117,111,103,102,98,98,101,109,114,112,114,100,104,113,102,118,120,100,114,95,101,110,109,101,103,109,83,107,103,93,97,108,104,101,111,94,94,109,106,108,100,105,102,101,101,103,104,101,112,101,108,98,101,111,104,106,95,102,105,92,95,104,105,104,99,105,81,111,104,102,108,99,97,96,102,94,113,111,109,102,97,90,109,100,101,91,108,105,105,92,100,104,106,99,110,121,85,115,96,108,113,99,92,92,96,105,96,106,99,95,107,99,106,107,91,109,102,103,106,118,101,129,103,106,102,100,105,102,110,97,107,97,106,105,102,106,110,100,85,116,95,112,90,103,111,102,107,100,100,107,98,118,115,120,104,102,94,102,105,108,106,104,99,100,107,96,104,101,106,102,110,113,99,106,113,101,99,104,101,120,101,87,102,102,100,108,111,102,110,84,107,108,96,104,96,109,117,109,102,98,94,109,107,107,101,99,96,99,118,103,114,106,109,130,94,109,95,99,105,100,107,106,120,96,112,109,107,110,108,114,100,116,85,118,99,110,107,103,100,107,98,104,97,102,99,105,97,100,99,115,97,102,98,97,97,112,105,95,110,107,107,103,104,114,95,106,97,111,104,116,90,101,112,100,103,96,104,107,105,96,99,104,99,112,108,106,106,109,104,104,97,95,98,97,91,105,106,108,97,103,115,110,111,94,104,105,95,102,105,106,104,104,104,98,109,96,112,100,132,107,112,107,110,104,107,92,101,114,108,104,85,100,111,98,112,98,114,110,122,94,100,106,107,110,112,101,107,102,72,98,117,105,83,109,91,92,116,111,106,113,105,104,112,104,95,105,103,113,86,81,105,103,107,96,106,115,99,97,102,111,101,96,107,99,110,94,98,108,113,110,104,100,97,106,103,104,108,101,110,103,112,104,118,98,106,115,104,99,91,105,101,100,95,112,90,113,94,109,101,101,112,101,103,117,105,117,102,106,105,101,96,107,110,105,98,112,108,104,104,101,100,111,109,105,94,127,105,104,117,95,99,100,109,109,98,97,96,117,103,97,102,105,103,105,110,99,100,102,111,114,76,103,110,99,107,103,108,99,100,95,112,112,105,96,92,106,111,107,103,101,99,96,104,101,102,100,109,104,103,105,96,111,95,104,112,94,104,97,111,97,104,104,106,103,98,107,99,96,110,108,104,106,113,92,92,111,99,100,104,112,113,109,103,107,115,103,103,98,100,107,98,95,91,97,95,100,93,126,106,90,79,97,105,104,119,113,101,109,95,106,102,113,98,111,107,109,103,104,105,104,105,95,111,98,101,93,100,91,100,116,94,115,105,80,119,100,109,96,102,101,108,104,99,93,105,100,122,97,103,105,92,107,106,92,97,107,107,110,107,128,104,104,109,96,95,108,109,105,112,95,97,108,103,92,106,102,109,109,107,110,105,96,104,91,103,112,105,104,118,105,104,106,97,99,92,95,101,105,101,112,96,106,99,101,115,101,100,102,99,108,105,102,106,108,112,103,103,108,105,99,94,92,109,94,106,106,116,104,100,110,105,91,105,73,107,124,100,94,112,85,99,102,96,105,119,117,115,100,100,105,111,109,96,104,117,109,104,107,99,110,84,104,102,102,95,104,96,98,108,106,98,103,104,104,102,108,106,97,104,103,104,101,103,115,104,118,105,100,103,96,94,102,115,106,97,98,105,101,110,92,101,107,101,109,117,101,106,99,99,103,99,91,106,110,107,111,107,114,101,101,114,109,110,104,101,97,107,101,102,104,100,114,106,97,95,99,105,100,103,117,101,116,101,102,100,89,116,106,101,115,96,101,101,109,106,101,105,101,105,109,108,108,107,94,98,104,104,108,104,90,113,108,98,107,104,112,99,105,111,106,100,130,106,114,103,108,119,102,95,120,104,116,107,80,107,106,110,106,123,85,104,103,114,108,89,104,105,108,101,109,97,96,107,107,109,76,93,102,105,87,102,81,107,87,99,85,109,90,107,102,92,107,116,112,107,122,102,92,90,114,114,104,105,101,113,106,113,110,104,101,99,108,108,112,105,90,107,96,99,130,99,115,90,105,96,112,100,108,125,112,118,108,90,120,121,116,119,110,123,125,103,104,133,114,109,96,112,106,103,88,101,111,99,97,106,85,106,105,94,110,100,100,102,105,92,119,114,100,103,98,103,90,105,109,106,89,99,107,105,103,99,97,102,106,102,99,96,88,102,100,106,99,106,101,105,107,96,97,106,109,106,127,103,106,99,91,96,94,89,108,96,96,102,119,95,96,119,105,105,102,112,108,96,99,106,88,86,102,106,100,99,92,104,95,111,100,98,99,101,99,95,102,97,106,105,108,100,99,110,90,89,105,91,98,105,97,96,106,100,99,99,116,97,111,103,102,97,100,98,102,101,93,99,115,106,105,98,86,99,87,105,104,96,100,99,106,68,107,106,100,102,113,110,111,102,111,114,102,109,112,97,104,110,109,99,110,100,104,95,95,98,108,123,100,100,110,98,109,103,95,125,104,98,101,104,114,104,102,96,82,107,105,104,103,110,113,100,105,99,102,109,112,113,103,98,108,103,95,122,107,94,107,99,97,117,96,109,95,102,106,104,108,112,101,100,112,99,103,108,107,116,114,80,95,106,100,104,112,95,99,107,95,114,101,117,100,100,104,105,105,97,93,103,92,110,87,112,97,88,102,102,94,106,99,109,108,133,106,100,98,96,102,109,113,91,98,101,103,100,101,95,111,102,95,106,104,102,110,103,100,106,93,117,105,105,94,103,105,105,100,108,103,103,103,94,93,104,102,111,109,105,87,102,104,110,112,108,95,76,109,80,98,113,96,105,106,99,105,92,102,106,107,95,91,103,99,68,103,100,95,96,99,106,99,117,96,95,102,108,97,112,110,109,99,122,113,94,135,106,91,114,109,109,105,115,100,104,110,108,96,96,98,86,98,102,88,108,117,91,98,104,108,112,121,99,105,109,100,99,105,94,111,94,97,110,93,103,99,98,102,101,102,95,97,101,97,97,105,110,106,102,94,93,105,98,103,111,103,99,108,113,105,96,104,97,100,109,104,97,93,99,98,104,100,106,106,107,100,85,95,103,93,105,97,122,107,109,94,90,100,101,106,112,101,109,124,101,97,111,90,104,117,93,92,105,116,100,102,106,113,107,97,88,101,91,93,101,106,117,106,100,94,98,95,106,99,116,112,112,100,99,111,100,103,94,105,103,97,91,105,103,102,111,95,106,94,103,91,95,102,92,104,99,99,108,106,102,100,116,102,94,116,103,94,105,106,114,101,98,95,100,100,107,96,90,97,106,106,94,112,107,100,98,107,107,110,102,99,99,109,98,103,102,100,109,100,106,106,102,90,91,107,117,105,96,99,117,98,104,99,108,93,103,97,99,103,98,95,107,96,102,103,101,97,91,98,108,108,101,100,87,80,99,107,104,101,121,108,104,106,107,102,90,94,99,105,103,115,107,107,97,110,106,112,109,93,106,120,116,102,102,93,97,95,109,96,93,105,98,109,87,106,96,106,107,100,101,99,94,101,98,97,106,101,100,104,95,95,111,108,102,95,102,99,95,102,113,93,100,104,112,93,96,97,112,111,91,99,101,91,104,94,94,106,98,97,97,108,101,113,112,103,91,95,114,105,105,104,108,97,91,90,102,84,108,102,96,105,101,116,107,95,93,89,110,105,98,104,106,96,106,100,97,100,106,100,70,117,99,112,104,110,90,85,87,99,106,110,112,117,99,99,92,104,106,105,102,105,117,106,104,96,108,114,92,89,113,107,112,110,105,109,95,101,113,109,101,98,111,112,105,104,101,104,107,109,98,103,101,105,95,88,113,98,99,95,108,95,111,103,102,101,105,105,99,108,112,96,103,111,94,95,103,116,127,115,105,115,98,110,109,97,98,108,103,101,100,101,102,107,89,104,104,105,92,112,121,113,92,93,106,100,109,100,109,97,96,98,105,112,104,106,104,98,107,102,98,98,107,109,106,112,103,91,82,98,97,91,109,112,95,107,108,101,109,98,105,87,121,113,107,96,109,96,100,103,98,105,108,103,110,88,107,91,104,105,103,96,106,99,106,107,111,98,88,108,98,100,95,101,93,104,87,98,116,94,79,106,112,91,80,104,107,95,94,100,105,104,106,88,109,99,109,91,97,112,110,117,104,116,91,109,96,108,93,103,95,96,96,88,91,88,100,101,95,99,106,108,94,87,104,99,111,106,102,117,110,101,97,101,98,128,113,102,110,89,108,111,91,100,113,98,100,87,105,114,105,101,99,102,102,108,103,114,121,111,100,104,106,108,99,95,122,110,121,98,103,108,99,97,104,100,98,103,99,116,96,102,89,109,98,108,115,98,85,88,95,88,104,98,103,112,103,92,108,109,116,109,104,113,100,106,101,111,99,101,102,99,98,104,100,99,105,99,106,105,102,113,109,117,104,98,110,104,105,105,105,94,95,104,107,110,92,103,103,120,100,102,104,108,88,97,98,106,102,101,107,105,107,100,99,94,101,98,93,102,108,108,109,99,95,91,100,99,99,102,92,98,110,107,98,106,106,92,107,111,120,92,113,99,115,102,94,110,110,98,127,106,97, +611.45233,100,106,94,101,103,105,88,104,103,105,106,92,98,90,91,92,93,114,113,109,94,107,102,94,91,102,115,100,100,115,91,102,104,97,96,103,103,98,96,99,99,112,84,108,89,112,104,100,103,86,99,101,101,101,103,111,96,101,108,99,104,109,110,104,108,122,96,104,105,95,99,100,98,111,95,99,110,116,95,102,99,95,101,106,95,101,107,115,96,95,114,98,106,103,116,101,107,86,110,115,108,109,115,83,102,96,109,106,99,113,98,103,101,103,105,107,102,99,121,107,100,89,97,84,102,113,101,93,105,91,100,115,79,101,95,100,112,113,107,104,84,93,102,95,101,100,103,95,97,97,102,103,109,98,100,102,103,112,98,108,88,102,107,101,100,110,121,100,105,100,105,121,90,106,109,89,111,97,113,100,95,112,104,117,103,104,101,97,113,102,111,95,104,111,76,113,103,95,96,98,102,106,103,101,103,96,101,98,113,112,103,112,108,111,100,111,102,107,106,108,101,113,100,101,88,94,107,104,102,106,98,108,98,114,114,90,104,97,106,92,106,100,106,115,98,125,103,98,99,101,109,108,113,75,102,117,111,108,100,116,89,84,106,109,109,102,113,96,100,98,96,110,104,104,121,105,104,115,100,104,105,100,104,110,106,102,101,106,103,103,92,103,110,104,116,106,106,114,91,97,96,107,96,101,95,109,94,117,103,103,110,101,98,105,101,98,101,119,112,101,101,111,97,102,113,108,97,98,96,103,102,98,108,98,110,104,102,105,105,107,92,103,100,95,99,99,105,106,92,102,94,107,99,95,104,114,104,113,105,102,97,106,121,109,109,103,102,113,110,93,103,105,103,101,100,101,115,109,103,107,114,112,104,107,109,101,102,88,99,96,118,87,100,112,96,99,105,113,105,118,97,104,106,98,102,103,101,109,103,101,110,105,116,93,108,104,112,99,92,107,95,107,94,93,94,105,99,98,111,115,95,102,110,100,95,109,106,103,106,108,104,107,98,103,113,112,104,101,103,118,108,120,113,108,105,105,117,99,105,105,106,104,104,109,113,117,103,98,98,97,101,107,103,119,109,91,100,106,102,117,108,110,108,109,115,114,112,103,104,96,106,99,90,101,104,106,107,108,110,94,98,109,115,117,98,103,120,110,115,105,110,116,101,68,119,112,100,99,99,106,102,98,102,100,95,101,118,105,105,105,103,103,115,104,105,98,113,108,97,110,95,115,103,127,108,97,100,96,112,106,108,99,108,117,94,102,103,98,94,98,95,86,96,100,102,101,95,114,97,100,118,98,99,120,113,105,104,107,108,102,104,101,111,108,106,99,99,120,110,113,102,112,101,95,110,109,98,105,100,97,100,124,118,95,110,100,102,99,83,102,112,106,107,91,100,75,98,113,104,103,115,102,98,102,108,92,101,100,103,104,102,98,103,95,109,97,110,86,121,96,102,114,86,114,108,96,102,111,107,112,111,106,98,104,104,113,107,96,107,114,109,106,99,106,108,98,112,102,113,101,104,116,115,111,116,103,100,98,102,98,98,111,113,108,109,99,104,110,101,105,104,99,113,111,117,106,105,97,101,109,104,87,106,104,103,119,105,117,110,105,120,113,111,100,106,97,94,105,107,114,109,99,115,105,91,95,109,105,104,113,94,107,113,99,102,103,99,91,112,79,110,102,106,100,112,110,114,120,93,109,96,110,101,98,110,91,98,116,117,109,109,113,101,99,95,107,99,99,111,101,103,110,122,104,96,112,107,101,102,109,105,106,111,112,109,109,109,107,102,108,112,94,98,112,99,102,109,113,103,107,111,102,99,111,111,102,106,110,106,101,128,104,123,94,112,103,86,110,103,105,100,109,112,105,104,109,104,102,102,97,107,107,83,109,101,115,113,101,104,110,102,102,101,109,114,96,119,77,101,106,112,104,107,104,95,102,101,104,117,109,109,110,88,106,113,95,100,107,123,111,120,92,113,101,109,115,114,104,99,100,105,108,109,114,96,102,96,120,94,84,107,109,93,100,104,103,105,98,102,99,116,108,110,90,137,99,99,103,122,103,128,89,103,101,96,98,101,104,112,102,101,104,109,111,102,107,115,106,98,105,100,92,102,103,108,100,113,101,102,112,102,94,103,113,97,107,97,105,106,82,106,97,110,102,96,105,111,99,102,105,100,104,102,100,105,104,100,111,110,103,111,116,96,98,94,100,113,90,107,103,94,106,103,110,114,110,101,99,114,101,102,112,113,103,89,117,111,102,119,102,116,107,103,113,105,115,117,119,101,114,102,105,103,107,108,88,100,103,102,117,95,105,101,84,111,118,105,90,109,113,113,107,111,108,97,103,99,113,120,95,120,129,115,96,117,120,108,119,114,120,112,115,113,107,99,115,105,116,123,116,109,99,103,66,103,105,120,100,103,88,99,131,122,99,121,110,108,100,105,96,113,105,91,99,110,104,109,102,125,114,100,106,107,97,102,113,118,108,116,97,100,108,114,98,98,76,121,102,118,112,111,108,106,96,109,102,118,105,95,102,98,99,102,101,103,110,99,105,94,92,107,114,111,100,104,103,104,100,105,102,103,109,97,108,98,95,111,107,114,102,103,93,110,109,100,115,89,104,111,117,103,95,98,106,113,106,102,86,111,105,114,102,125,117,99,89,105,109,117,99,98,99,104,112,85,106,113,108,108,101,103,93,104,108,106,98,112,87,108,103,106,77,104,117,104,107,104,114,97,105,115,103,96,114,104,108,95,107,103,104,111,90,106,103,107,110,114,108,103,105,93,111,99,114,112,103,98,106,101,121,114,97,107,100,98,101,111,102,113,114,105,105,106,113,91,83,94,98,111,116,96,95,98,112,113,97,97,113,110,107,100,112,94,119,106,104,96,110,107,103,110,121,116,124,98,105,103,101,105,103,107,106,108,108,111,98,117,106,106,112,91,117,92,110,105,98,97,120,117,95,104,96,107,100,98,107,105,116,108,100,102,103,104,100,107,104,135,105,118,85,96,100,107,115,127,97,113,109,101,109,105,111,112,100,105,99,116,105,108,88,108,99,102,109,104,100,107,109,111,108,100,112,110,90,101,105,103,92,97,103,96,111,107,111,107,102,97,100,100,100,113,101,112,102,94,94,112,87,98,91,104,104,99,107,113,90,96,104,110,98,108,109,96,121,106,101,115,102,100,108,112,108,104,105,99,106,103,111,101,103,118,112,96,105,102,104,105,95,114,122,114,106,105,106,106,89,99,109,120,96,99,110,106,101,95,100,78,98,102,122,103,92,110,103,101,103,109,101,100,105,111,99,105,111,106,109,107,99,101,103,95,113,111,110,109,103,112,102,111,99,101,107,103,112,102,101,101,98,117,107,111,105,91,104,106,101,87,107,109,96,102,108,104,113,103,118,105,98,101,106,106,103,102,97,108,99,112,109,103,107,105,102,109,111,115,88,125,90,106,103,115,112,103,107,98,94,99,109,113,110,102,110,96,113,104,116,85,111,102,109,98,111,105,101,102,108,105,102,105,104,87,103,98,105,108,97,114,100,100,110,114,92,109,93,107,100,105,98,90,106,102,105,108,103,100,110,105,103,98,75,95,83,110,111,104,96,106,107,102,106,104,115,121,111,100,112,111,119,106,99,96,99,100,100,104,101,103,98,109,106,115,111,115,97,105,110,111,102,107,104,110,87,110,103,113,115,120,103,120,102,99,106,108,94,102,97,95,106,96,109,109,104,105,93,111,109,100,104,98,103,101,105,105,114,104,101,102,103,110,115,99,109,106,103,103,112,121,99,64,105,97,100,105,110,106,114,101,104,98,86,101,111,100,119,97,106,99,108,113,101,109,105,94,93,102,108,119,98,100,101,105,112,104,92,90,109,109,99,120,99,107,101,95,109,109,107,104,101,102,96,102,108,116,113,97,106,106,100,105,107,96,113,106,98,111,105,98,107,95,110,101,93,90,102,112,123,107,112,94,96,98,108,103,106,109,104,97,92,91,99,113,115,104,102,102,105,113,93,108,97,108,104,108,92,98,94,96,92,117,105,107,103,91,101,103,107,105,103,105,98,103,106,101,100,118,115,101,109,105,100,103,107,107,121,94,106,104,102,116,94,107,100,106,108,120,98,102,110,116,96,107,113,92,105,122,102,113,107,98,105,97,100,106,108,98,111,99,94,107,106,105,102,104,110,107,106,103,100,100,103,100,107,98,110,106,118,98,107,110,103,104,112,105,99,101,92,105,106,114,87,99,105,100,114,101,98,109,97,87,113,88,92,110,109,102,115,107,104,106,107,107,106,108,97,99,103,116,113,112,120,103,91,100,111,99,92,100,105,108,108,103,111,104,110,91,108,87,110,104,102,100,109,113,112,109,89,94,111,113,105,94,94,107,104,101,114,99,106,99,87,90,107,98,106,84,102,106,98,110,94,107,92,109,91,114,98,98,108,100,103,93,103,103,97,103,98,104,98,108,118,93,101,102,118,90,95,74,104,106,94,97,108,106,106,100,106,111,112,112,101,116,126,91,94,105,109,98,100,112,105,110,99,101,106,114,113,85,100,101,108,104,106,106,103,102,97,107,100,102,99,91,112,100,108,91,108,86,117,103,97,96,98,102,109,89,102,109,104,108,103,99,112,101,113,104,102,119,107,111,113,91,113,90,110,120,94,103,107,103,99,111,108,99,103,100,96,107,109,83,109,93,98,116,113,102,113,85,118,104,118,98,98,111,125,105,106,97,99,103,108,106,102,97,107,98,113,108,100,100,101,128,91,102,109,100,113,98,96,90,87,106,103,91,109,124,96,97,106,92,111,112,84,105,94,97,103,100,103,113,101,93,112,112,96,102,100,96,107,115,75,83,87,98,102,109,86,83,106,108,99, +611.59344,119,87,91,91,114,97,86,109,107,121,112,103,98,102,97,113,101,118,104,108,112,99,105,102,101,97,107,99,113,105,127,112,104,102,101,109,109,98,100,93,100,101,121,130,101,117,103,79,101,92,103,108,106,118,112,103,112,97,106,102,99,108,111,103,98,105,101,111,88,101,104,112,94,97,98,99,92,113,103,120,105,108,99,106,108,99,93,79,117,103,102,107,101,93,103,89,89,108,108,130,104,96,100,103,74,95,108,109,98,106,124,99,94,128,110,109,98,106,93,108,116,100,108,100,108,105,101,94,97,108,104,112,103,108,109,98,96,106,106,101,97,87,98,114,108,95,116,106,99,63,104,101,98,87,90,104,118,110,97,109,102,114,109,107,109,107,92,99,95,101,105,106,99,97,112,109,102,92,108,85,107,134,115,111,100,114,107,88,101,104,92,103,106,111,97,121,107,105,103,101,113,103,99,106,107,100,102,98,109,112,96,109,101,100,95,101,109,105,79,103,100,111,96,100,107,82,99,102,73,103,90,93,106,108,109,101,113,91,101,102,97,123,104,98,99,101,99,106,95,105,98,95,98,109,92,87,104,113,108,102,103,100,108,94,96,109,93,105,92,103,104,103,102,83,108,82,103,103,102,101,103,95,112,102,107,102,108,110,117,107,102,113,99,103,100,116,95,115,106,111,117,117,104,109,101,99,99,64,97,99,100,102,100,102,104,103,109,89,107,98,101,101,90,91,111,109,100,103,98,117,108,100,96,96,106,72,111,96,103,96,99,111,119,95,112,96,107,112,99,98,116,109,110,105,105,107,111,116,99,95,105,108,101,97,103,92,103,101,109,107,112,98,103,107,114,117,119,95,109,109,114,113,102,109,104,108,96,97,109,95,107,100,89,96,109,93,88,92,111,118,106,98,104,106,99,100,98,106,112,99,101,95,99,109,125,95,105,108,110,71,118,111,120,106,98,89,119,87,102,104,96,100,107,109,120,102,89,102,91,102,104,101,114,109,109,112,103,91,103,118,95,98,91,106,104,103,93,103,109,97,116,108,113,122,109,111,107,103,99,105,98,104,97,109,106,117,100,104,104,104,89,103,114,106,118,98,115,109,103,93,95,101,106,99,100,112,96,100,116,109,99,99,95,97,101,113,102,98,105,111,109,116,102,100,108,99,110,110,91,105,103,92,105,95,103,105,116,116,109,111,95,94,104,104,96,99,66,93,114,104,110,112,101,114,108,96,116,97,121,112,102,100,98,93,105,100,105,104,97,99,97,113,106,108,92,103,110,108,99,104,103,102,101,116,100,111,109,99,118,116,105,107,102,108,105,112,114,124,99,102,106,117,109,98,113,106,97,109,104,100,104,108,95,109,102,107,103,100,81,117,105,100,109,108,114,103,98,109,125,113,107,101,110,105,104,114,112,104,97,94,97,101,98,98,96,108,91,104,97,91,118,107,109,99,108,97,102,103,114,109,80,100,108,99,100,103,99,116,102,102,103,114,116,101,97,99,103,104,106,99,104,118,105,97,113,105,108,95,104,107,104,109,108,97,102,115,110,107,99,105,109,109,109,104,101,97,108,110,109,120,97,100,99,100,103,109,97,99,104,108,109,103,100,106,104,104,109,120,118,112,103,107,103,112,99,101,101,95,111,104,96,108,108,105,93,100,102,109,119,112,114,109,105,112,99,100,110,117,100,84,110,99,103,91,106,95,103,106,94,112,102,103,125,106,102,114,97,104,106,104,108,96,108,101,91,108,104,102,95,94,100,102,95,108,103,108,105,111,119,100,100,102,106,113,99,100,105,99,108,111,96,113,97,107,93,100,104,97,111,97,107,101,102,96,98,96,102,104,102,102,118,116,104,103,105,109,104,116,110,94,109,101,112,108,99,110,99,101,106,104,96,102,98,112,95,105,90,100,94,106,110,107,103,110,100,107,106,111,102,107,96,99,90,107,100,110,118,100,90,112,118,108,104,102,95,110,104,102,103,113,99,106,103,118,102,122,106,108,107,109,98,107,112,92,98,99,101,107,98,112,102,107,107,122,102,101,87,104,101,95,105,104,100,107,118,98,93,105,101,109,113,104,91,106,100,103,103,112,100,100,106,113,105,103,115,116,97,98,108,103,107,93,100,96,106,106,106,101,109,105,96,105,100,109,110,112,105,101,120,101,110,107,99,80,104,98,91,111,102,109,95,97,110,100,106,104,117,82,91,109,100,99,107,110,108,96,103,89,101,104,106,107,100,109,90,103,111,110,91,99,95,103,105,94,112,106,104,111,101,113,78,107,99,107,79,98,109,116,88,103,103,112,112,99,114,104,107,99,108,113,105,114,112,98,108,112,104,128,97,113,126,130,103,123,110,128,116,113,134,117,126,121,121,109,108,118,103,109,116,101,108,113,94,100,99,114,111,112,100,108,105,116,113,122,112,105,111,95,95,98,107,104,99,107,106,99,110,103,105,101,107,108,97,94,100,107,111,104,110,112,94,94,99,110,105,104,100,110,113,105,98,114,108,101,103,86,92,120,88,106,102,103,100,100,99,108,93,97,116,103,99,112,102,112,111,100,109,113,99,100,90,100,102,110,97,101,103,113,107,102,105,99,111,113,102,95,109,113,113,99,103,103,94,102,102,108,87,104,106,106,109,109,119,104,104,101,99,105,101,102,98,100,113,109,109,95,117,108,89,96,115,114,108,98,104,104,95,102,100,99,111,102,113,112,104,109,101,109,107,104,103,101,105,102,107,102,107,113,109,105,92,102,100,96,107,116,93,108,114,100,103,68,95,116,100,111,104,93,110,104,102,106,108,98,86,116,94,103,111,99,100,105,111,96,99,118,109,109,104,110,105,109,106,113,101,104,121,101,113,116,106,104,108,114,110,102,98,98,96,96,104,94,104,102,101,91,105,106,111,110,109,124,93,64,100,104,110,104,93,106,105,99,85,98,91,104,108,112,108,108,106,105,101,106,105,110,91,105,115,98,103,101,109,96,118,118,104,103,98,99,117,118,113,121,113,95,104,104,95,113,97,114,102,105,102,108,106,98,95,115,106,94,98,102,108,94,104,98,110,94,109,116,103,112,95,94,100,110,98,100,103,106,113,106,111,102,107,109,119,103,100,102,102,100,115,87,107,108,113,100,101,99,99,88,110,119,113,92,108,106,107,98,86,94,94,102,104,102,110,98,105,105,92,106,107,103,109,110,102,105,103,108,109,98,108,109,105,110,100,101,106,107,110,106,101,119,103,111,110,95,93,98,119,104,91,100,116,92,109,98,112,105,95,107,102,91,108,121,103,104,104,109,101,95,98,99,102,99,110,112,99,110,103,98,93,99,101,91,92,90,106,105,105,107,102,108,95,102,108,97,117,98,109,100,109,98,95,100,99,99,74,98,103,98,94,85,78,92,103,100,107,98,111,101,93,102,107,105,98,105,101,93,107,103,103,97,92,102,102,95,100,111,116,92,97,104,100,98,119,98,117,96,97,104,110,99,115,105,96,102,109,72,101,105,93,111,110,103,100,78,108,109,104,101,110,104,102,115,106,106,111,101,100,105,94,106,102,97,105,101,86,101,90,101,95,99,105,102,106,102,104,108,114,86,96,99,98,106,113,97,104,100,102,113,107,99,93,98,101,97,89,100,107,118,110,95,100,103,97,102,107,100,102,104,98,105,102,106,98,119,103,109,108,99,99,116,100,95,81,108,92,78,101,96,109,104,109,97,103,101,122,100,107,96,88,104,93,99,117,82,96,99,94,103,116,98,99,96,101,101,88,92,96,113,98,102,109,103,100,103,107,114,116,111,119,105,97,101,103,103,99,112,101,118,110,109,121,105,105,101,81,108,103,107,102,99,100,103,103,114,109,104,112,101,94,92,121,88,103,99,95,97,106,98,107,102,99,89,117,104,95,99,113,88,102,96,86,103,106,97,104,98,107,106,106,108,110,87,114,106,116,93,99,103,107,108,106,109,88,106,106,123,102,111,99,92,100,95,104,104,107,105,100,95,116,106,97,100,106,108,97,101,95,91,106,98,72,104,101,102,102,100,105,108,94,104,115,109,115,104,113,104,106,111,100,111,97,97,91,90,101,107,85,106,110,103,91,113,93,109,97,91,100,121,101,105,93,106,100,113,111,112,109,103,102,95,115,98,101,106,98,107,118,105,104,109,100,116,114,99,112,118,99,104,99,100,103,74,107,75,108,103,105,91,100,103,87,107,99,103,100,102,99,107,95,93,103,107,109,106,86,102,103,99,113,83,84,93,98,108,97,96,96,130,119,97,104,109,113,105,108,106,99,112,101,99,103,98,88,100,137,105,99,108,65,95,106,96,90,95,120,117,103,113,108,112,102,107,95,99,97,108,103,119,100,113,104,101,109,112,109,91,104,112,105,106,96,121,105,107,95,109,91,106,103,83,90,90,106,104,99,118,104,101,106,101,102,107,97,109,108,105,109,110,103,102,87,101,100,121,101,95,81,102,115,113,110,103,68,113,106,88,104,114,87,104,106,99,106,108,104,95,96,99,104,109,101,97,109,100,100,109,96,96,108,102,98,117,97,103,108,90,111,109,102,108,99,103,102,119,107,104,108,106,92,104,110,90,101,105,101,113,113,110,95,130,109,105,109,98,88,106,97,104,98,109,111,93,88,96,109,107,98,100,103,107,101,98,102,102,109,103,106,109,95,104,103,95,102,107,87,97,110,101,104,92,99,108,104,99,107,98,91,98,102,101,97,108,93,105,107,106,100,101,106,109,101,105,101,105,102,101,103,101,102,96,94,107,102,91,94,99,100,108,87,102,98,106,108,98,96,115,110,114,120,103,111,106,99,110,111,104,98,100,103,108,106,95,101,100,99,90,98,87,106,112,100,91,77,108, +611.7345,90,103,111,95,103,99,119,86,109,99,106,102,102,106,116,106,104,103,89,101,106,105,103,106,88,103,101,102,94,95,117,102,97,101,90,88,101,110,115,96,87,102,106,109,116,98,114,94,105,105,97,105,99,95,108,105,91,72,101,108,102,117,109,118,113,125,94,103,88,116,100,103,102,104,95,112,98,102,81,98,116,100,92,90,108,116,109,109,106,116,110,103,93,97,90,104,108,115,98,93,105,101,93,101,106,102,96,103,108,108,87,101,104,103,104,107,106,108,104,101,83,96,104,109,102,96,112,96,116,112,113,104,101,96,101,99,95,107,108,102,91,104,121,100,68,87,111,104,100,107,102,108,108,103,101,90,92,83,105,94,113,107,105,108,110,95,100,98,95,102,104,116,87,105,96,104,99,96,112,106,97,87,98,111,92,103,112,101,103,102,96,113,103,105,102,109,92,120,102,101,89,105,108,109,101,109,109,102,108,107,107,102,101,88,94,101,97,117,105,102,97,107,106,104,98,103,100,111,101,101,110,102,101,106,101,115,102,96,118,105,90,106,114,100,87,96,108,102,112,111,109,78,92,95,102,111,101,95,103,111,101,105,98,104,101,105,96,102,106,107,87,110,113,90,103,103,98,105,99,102,99,106,97,98,101,86,96,109,113,97,99,104,107,94,102,106,123,101,95,111,102,112,107,107,112,107,115,107,88,108,86,113,106,103,105,105,103,96,114,101,95,97,121,91,107,106,100,93,117,104,118,106,99,114,95,107,97,107,87,107,103,109,103,88,87,104,107,102,106,110,110,100,108,116,109,97,102,84,104,107,96,102,107,111,108,96,109,103,102,95,104,109,101,87,94,103,125,103,96,112,103,109,111,103,104,109,106,105,104,110,89,99,110,114,110,97,93,124,104,110,100,79,106,86,113,99,100,104,123,89,97,88,110,107,106,106,113,92,109,108,96,109,106,104,98,108,111,95,92,112,100,106,105,106,107,100,117,99,121,109,99,96,106,101,108,101,106,104,101,102,106,83,99,114,113,108,105,115,115,108,106,105,118,108,96,103,100,99,103,103,97,100,104,100,92,100,95,106,110,100,118,109,107,108,96,102,95,105,103,110,110,100,106,107,99,102,95,101,110,107,99,96,100,104,111,112,91,110,104,91,103,101,97,107,112,98,109,103,105,97,111,110,89,110,100,112,102,100,103,104,100,91,120,93,105,103,96,114,100,114,95,111,96,96,105,109,95,102,95,114,117,107,113,99,114,99,108,90,95,115,92,97,87,101,97,103,103,95,99,101,97,106,100,109,100,108,106,89,99,106,103,99,111,103,105,100,104,114,103,96,110,99,95,100,103,96,107,99,119,99,111,95,117,109,102,103,105,101,111,105,114,93,109,104,103,112,102,108,106,93,81,115,102,103,115,102,124,101,104,101,105,103,79,99,96,101,91,98,108,90,118,97,101,118,105,86,98,92,112,98,99,98,98,82,98,100,112,97,99,122,111,102,108,106,98,99,98,110,104,104,123,98,99,108,106,109,117,113,94,93,110,100,108,98,105,112,107,93,113,104,98,100,92,100,99,109,108,97,91,92,102,96,113,101,96,128,104,99,114,107,106,108,103,101,115,85,103,101,91,102,100,105,100,109,103,96,107,112,102,100,106,96,96,96,97,97,84,101,106,104,110,99,105,93,102,87,106,94,92,125,113,103,115,101,94,100,103,109,104,108,101,108,113,96,104,108,104,95,100,105,95,106,118,102,91,82,100,104,95,105,104,94,104,99,115,116,107,108,95,95,70,95,110,99,104,113,120,104,108,111,111,93,105,101,108,106,90,105,101,107,99,93,92,113,109,112,114,106,96,104,97,83,105,96,106,108,110,87,106,100,113,101,108,112,99,96,109,101,102,106,106,94,108,104,107,102,96,96,105,106,106,102,105,101,107,107,96,102,108,104,89,125,109,109,105,104,99,100,97,108,111,115,104,105,105,107,94,111,104,102,108,107,99,106,121,103,91,109,111,102,112,107,108,113,109,101,107,106,94,103,105,114,103,98,100,121,93,100,93,109,106,109,104,116,99,98,89,113,102,109,108,95,100,107,114,105,111,118,102,112,97,110,106,100,102,109,119,97,113,106,103,107,112,104,105,116,109,103,102,107,102,104,106,99,109,97,81,108,97,105,113,105,109,103,108,99,98,97,111,92,109,106,101,110,106,107,104,106,96,112,98,111,104,98,110,103,108,92,121,105,106,102,101,100,97,92,93,82,108,95,94,92,92,85,105,107,100,108,99,117,110,95,109,109,101,109,109,95,110,79,112,116,121,90,104,106,107,111,112,100,104,115,100,101,105,95,120,116,122,105,119,127,109,110,111,125,133,120,118,106,119,99,123,112,96,108,104,114,107,118,116,97,99,95,108,92,90,114,95,101,96,101,101,107,100,93,94,110,99,99,116,92,100,112,103,107,96,117,105,92,106,118,109,99,102,90,104,99,107,101,99,96,107,99,113,112,106,118,101,103,101,98,117,105,105,106,104,108,103,102,103,92,109,109,116,83,100,111,125,101,115,110,117,101,103,139,106,103,100,98,97,105,99,110,94,92,121,112,103,102,112,107,110,101,105,113,114,106,93,105,111,100,98,95,93,110,95,106,109,96,104,105,95,112,99,107,97,97,113,108,98,99,99,92,99,110,113,106,113,105,100,96,109,81,98,109,110,99,102,109,94,98,110,105,105,108,114,100,110,100,110,100,105,98,106,117,116,107,100,87,112,106,90,107,100,114,107,104,113,108,111,101,100,110,108,120,106,103,108,98,99,103,97,95,106,107,112,121,105,110,115,123,107,105,72,91,106,114,109,107,102,126,95,118,113,99,103,108,92,104,105,110,98,109,106,111,101,110,115,104,106,109,110,104,97,111,93,103,113,109,100,109,98,99,100,110,106,122,105,106,112,106,94,113,100,98,111,95,112,88,105,101,108,95,113,105,108,103,96,113,101,108,114,110,109,106,114,117,92,102,102,102,111,104,117,103,85,97,96,128,92,68,114,110,104,100,103,109,115,100,103,107,72,102,105,99,109,100,108,98,103,92,106,116,104,105,112,109,104,99,98,108,108,113,107,94,104,106,105,103,101,104,101,111,94,93,118,114,101,99,95,110,101,100,108,101,95,106,107,91,107,97,110,105,111,112,102,117,102,98,111,102,98,122,109,105,115,100,101,105,92,102,94,97,94,99,104,93,107,99,118,102,107,106,101,107,104,120,95,97,115,109,102,116,95,113,107,109,117,109,109,94,104,119,104,105,119,116,103,85,108,97,108,98,102,93,101,92,93,101,99,90,97,98,101,101,121,98,113,104,108,104,101,107,103,100,111,99,106,121,108,104,112,107,103,104,96,117,109,105,106,106,102,98,96,104,111,97,104,105,95,101,105,103,95,103,102,97,112,108,100,106,105,89,85,94,124,98,94,97,120,110,105,98,103,106,104,108,108,95,102,98,94,108,98,108,106,105,105,101,112,97,103,108,98,102,103,109,100,110,106,100,102,99,111,104,126,107,95,113,108,104,94,104,105,113,101,95,113,99,109,103,102,97,102,95,113,105,106,110,95,102,103,98,103,98,113,97,103,95,105,109,116,100,103,104,117,98,103,115,101,95,110,117,82,96,101,103,100,102,105,116,109,99,96,126,101,114,104,94,106,96,99,119,104,98,110,103,99,110,105,106,106,90,113,103,107,101,117,109,101,107,113,99,116,97,105,106,118,101,101,113,103,111,103,107,103,104,106,106,99,105,109,112,95,104,113,105,114,109,99,117,92,107,111,108,104,103,97,104,101,90,94,94,104,109,123,99,106,100,101,104,113,110,110,91,99,90,98,101,120,96,90,114,90,109,97,100,104,108,101,104,73,105,96,101,113,115,106,105,99,99,114,97,107,99,103,90,93,108,91,101,107,113,94,99,97,101,100,109,119,115,105,102,110,95,101,99,113,105,106,111,101,107,89,114,96,105,107,119,113,102,99,102,110,97,109,91,113,99,110,106,107,93,99,113,117,98,113,92,106,104,103,96,97,109,113,112,94,98,104,103,103,102,112,100,112,112,97,114,96,96,101,106,116,105,102,98,104,102,97,102,107,114,95,93,117,106,95,105,100,94,86,105,96,102,105,120,93,99,104,98,103,111,102,113,103,99,105,101,112,103,94,87,107,125,97,102,118,101,117,101,109,110,94,92,105,73,91,108,111,107,108,96,99,101,108,109,99,110,99,104,110,107,92,95,97,108,98,108,102,106,118,109,113,90,109,106,103,111,120,102,117,108,108,108,89,105,106,108,116,100,106,105,104,63,110,97,98,102,101,108,110,113,95,119,98,83,98,95,98,101,94,91,100,114,114,109,100,104,101,83,101,102,108,103,99,121,104,95,112,108,103,98,97,102,98,102,105,108,97,105,112,111,111,103,102,106,106,107,95,99,111,107,97,102,86,107,99,116,110,95,99,119,105,76,97,87,107,101,100,87,95,106,113,103,113,110,107,92,96,96,95,94,105,105,113,106,103,103,106,112,103,106,102,104,110,105,104,114,87,98,111,112,98,96,97,94,114,107,108,95,109,114,104,103,92,101,116,104,117,113,107,92,102,107,109,106,110,97,89,103,96,112,106,109,102,113,88,116,95,121,94,117,108,110,104,108,96,99,101,118,112,131,95,109,104,96,95,89,108,113,96,97,110,101,110,111,103,103,105,102,117,113,112,99,116,103,105,103,94,106,100,115,106,101,105,103,98,100,111,91,117,93,94,98,97,116,108,83,103,108,91,92,103,102,108,107,105,104,98,96,108,98,91,112,99,100,112,112,103,96,111,102,109,109,109,116,101,105,117,108,101,110,104,100,114,104,103,95, +611.87555,101,94,99,107,96,104,113,106,107,93,115,98,101,105,97,87,85,99,98,115,113,101,97,105,89,110,97,98,107,105,93,105,97,100,113,100,101,107,102,99,103,97,86,84,112,108,106,91,102,102,100,107,106,109,89,96,96,97,104,89,96,107,101,98,95,106,92,101,98,94,130,104,81,121,91,112,102,101,111,120,112,98,100,104,99,108,116,111,103,110,105,128,96,105,101,100,118,99,98,122,102,108,102,107,105,96,100,102,74,119,101,101,110,92,100,106,93,95,89,106,97,104,107,104,103,107,83,102,106,116,91,112,104,106,103,101,109,109,97,96,110,109,99,108,99,102,104,107,101,83,105,109,105,105,101,101,86,87,99,92,92,97,110,101,93,102,112,106,109,103,109,109,105,92,107,99,83,105,111,106,111,104,106,109,105,104,113,113,122,99,110,108,104,107,91,91,106,109,107,110,105,109,101,101,104,103,104,117,110,99,112,97,105,104,102,104,103,109,91,102,111,110,102,106,107,98,112,106,103,109,75,95,110,102,106,104,95,101,99,104,100,103,109,103,100,90,106,102,101,107,114,114,106,93,93,104,111,94,101,102,99,113,115,101,103,109,110,105,108,97,94,105,113,99,101,95,104,124,96,114,100,96,91,107,104,120,100,106,95,103,104,116,106,113,94,102,105,104,106,104,83,100,107,109,96,100,121,106,111,108,103,105,97,110,111,93,111,94,105,103,107,107,100,111,106,104,101,95,137,107,109,105,107,102,99,99,100,102,91,108,83,106,100,99,116,99,92,114,105,105,101,116,122,98,121,105,106,102,109,103,110,117,95,100,97,102,102,117,108,118,105,111,104,109,68,105,107,113,99,112,103,103,105,109,106,96,110,113,102,101,122,105,88,102,88,95,104,112,103,107,112,102,87,109,108,102,104,106,114,90,82,99,106,113,110,93,106,90,101,91,103,103,97,114,102,114,110,87,75,108,101,104,117,114,117,100,108,95,105,97,112,103,104,113,101,102,96,102,108,109,99,116,96,98,102,103,106,94,107,105,105,100,112,115,106,106,91,99,107,99,94,111,103,88,97,95,99,114,108,110,97,91,116,103,97,95,107,106,106,111,112,113,109,107,106,114,111,93,115,98,110,102,93,110,108,100,95,99,101,108,117,108,108,92,101,119,103,98,109,98,100,98,113,100,99,118,105,101,100,101,97,116,109,107,104,108,112,100,123,105,114,119,102,112,94,108,107,102,92,108,105,98,121,105,102,107,113,101,93,106,113,101,91,112,103,103,112,95,103,99,95,67,106,112,115,113,93,83,104,99,99,108,104,99,104,104,101,104,97,100,110,103,100,110,108,121,101,112,117,105,101,118,104,104,110,95,102,103,105,117,124,110,105,92,120,112,102,98,100,111,111,109,104,100,107,96,106,106,106,115,103,92,95,107,89,106,96,98,99,119,109,125,106,112,101,104,103,109,111,112,105,95,104,102,88,105,105,101,109,116,102,106,111,105,114,106,101,66,117,110,108,112,113,104,107,99,98,103,108,101,108,112,110,99,96,109,98,103,106,104,108,112,99,108,105,107,99,108,99,95,110,106,114,109,98,101,95,102,101,98,106,117,94,101,98,105,104,106,107,116,68,100,99,109,94,109,104,109,106,102,107,98,98,100,101,98,104,107,109,97,125,104,97,102,108,106,109,105,111,110,102,105,99,84,104,109,99,101,106,68,106,108,110,113,104,108,102,99,107,112,111,107,111,95,106,110,97,113,101,109,94,95,121,102,105,104,100,100,115,98,102,114,114,103,104,107,104,103,111,105,100,119,101,91,95,128,100,109,101,103,104,102,104,98,117,113,105,110,111,104,105,109,112,101,105,105,99,105,104,109,106,83,104,107,114,113,111,78,115,112,93,108,116,110,96,104,110,105,106,99,94,102,110,99,106,95,115,104,118,102,97,105,109,121,109,108,89,110,107,113,100,109,106,112,94,98,96,108,98,98,129,108,104,110,97,114,94,116,112,116,104,110,104,108,102,104,93,98,99,107,93,107,113,110,104,114,103,125,110,105,107,106,108,104,108,115,114,99,77,99,95,107,82,118,108,120,105,94,105,98,90,111,106,96,100,107,86,102,103,98,125,99,114,97,110,95,96,107,104,112,101,95,109,101,116,95,97,103,95,102,102,98,102,96,110,103,93,100,106,104,101,111,102,77,104,102,94,101,105,106,99,106,113,106,106,99,98,101,101,100,117,96,115,102,98,104,104,108,98,105,105,99,97,106,105,99,106,98,95,111,102,110,110,104,103,115,106,109,102,108,107,112,106,88,112,102,99,93,96,97,99,115,110,99,99,95,119,113,122,111,113,115,118,107,121,119,129,122,133,117,117,117,112,120,102,109,97,125,117,116,99,103,125,111,110,114,107,96,109,113,98,107,91,119,98,113,96,116,105,94,97,106,100,106,93,95,94,103,119,113,98,105,99,101,107,99,103,104,103,99,106,95,108,107,107,108,96,117,106,97,89,118,101,111,111,87,106,108,87,102,108,112,95,101,109,104,103,101,102,101,99,103,111,94,109,101,102,112,104,95,96,106,92,109,93,96,114,105,101,99,113,110,109,91,102,110,111,105,87,99,121,101,114,116,106,119,113,91,103,100,116,93,103,104,92,95,107,98,97,100,99,92,102,104,100,114,96,88,101,104,108,98,111,107,113,112,98,91,92,113,109,101,109,98,99,103,104,109,101,108,105,99,95,87,104,107,109,111,106,98,103,112,99,106,107,112,107,78,108,106,96,87,107,96,113,99,112,105,101,109,95,93,103,94,95,97,99,83,103,102,103,112,83,102,110,107,110,99,100,106,114,128,94,106,96,106,97,97,106,107,102,104,102,119,116,90,104,104,93,102,105,99,114,108,108,101,98,111,116,120,93,110,111,107,93,113,89,101,121,99,110,111,109,99,98,100,108,103,97,99,90,108,105,103,118,118,103,111,99,100,117,108,108,97,109,95,114,119,99,108,110,97,99,102,108,104,98,96,95,110,107,88,108,109,115,101,100,106,103,89,100,96,132,110,103,109,112,95,120,112,120,114,102,105,110,116,106,103,114,102,108,101,108,113,103,106,102,98,104,110,111,95,94,103,100,94,111,105,97,95,102,102,109,105,107,113,103,112,112,105,128,99,106,103,94,97,111,102,118,106,96,109,110,109,106,102,117,101,108,111,108,100,100,102,96,103,97,96,116,99,105,99,117,116,101,116,93,111,114,102,103,100,97,106,93,94,91,96,115,102,95,93,108,107,105,99,111,111,104,102,100,104,105,103,116,102,93,92,98,97,96,106,102,100,96,105,99,115,105,95,101,108,101,101,107,106,110,108,106,95,102,102,95,109,103,116,102,113,110,111,100,110,116,104,101,102,109,95,108,110,99,113,105,99,100,109,106,104,104,99,101,101,109,107,104,102,98,103,95,113,103,101,114,98,104,85,95,117,106,101,103,116,110,119,114,92,117,101,99,94,106,102,105,108,109,103,105,108,94,113,103,107,112,100,119,98,108,105,98,96,120,106,106,104,102,106,91,110,109,99,104,98,98,107,109,94,100,87,100,98,96,94,102,96,101,103,101,106,91,102,110,109,119,99,105,109,112,102,98,103,96,108,105,107,106,98,110,108,102,105,105,109,99,104,104,106,107,95,98,102,100,109,103,101,98,94,120,103,102,101,100,104,87,115,105,105,112,105,103,100,108,96,92,96,117,103,118,104,112,94,101,97,110,102,103,110,82,97,111,98,101,91,115,85,97,105,112,105,96,92,107,108,107,98,112,109,105,103,99,100,98,109,97,116,106,103,104,94,100,99,107,109,108,104,97,106,100,108,109,103,98,112,105,112,103,101,101,94,102,73,96,96,104,104,104,116,94,105,100,110,104,91,98,95,117,103,100,102,84,101,96,99,113,99,103,101,110,108,99,104,110,98,107,107,112,102,102,119,92,112,104,102,95,95,113,104,98,113,106,100,107,106,105,113,111,95,113,87,103,120,102,106,104,99,117,111,107,110,103,104,104,101,109,112,104,102,126,96,107,100,107,91,107,103,112,113,111,106,107,105,98,96,103,87,98,107,110,112,112,107,101,108,87,106,101,99,105,101,98,102,108,108,102,95,91,111,109,108,92,98,103,113,108,102,111,106,105,107,101,117,112,100,108,97,88,118,104,102,105,110,113,91,117,100,91,104,108,102,101,101,113,112,106,106,104,95,109,103,113,113,115,105,107,103,100,104,104,100,94,115,111,100,115,100,127,106,104,104,109,108,111,103,120,102,103,110,92,97,101,98,104,100,123,95,102,118,98,95,106,105,96,108,113,109,108,104,114,103,100,105,100,112,112,101,93,102,107,121,104,105,103,101,109,104,101,99,110,98,106,104,124,105,106,98,98,100,98,90,103,104,113,98,91,106,110,102,101,104,99,113,97,101,88,104,98,104,97,101,99,93,94,107,100,95,94,102,106,82,108,90,103,104,98,101,113,105,108,110,104,95,106,119,100,107,89,103,109,107,104,106,96,84,111,111,104,102,108,119,94,102,110,90,94,106,98,106,120,99,105,108,103,119,100,114,93,103,87,106,109,117,111,90,103,111,113,104,103,100,109,91,100,111,104,96,103,100,107,102,102,115,102,101,107,117,104,99,98,100,108,85,112,102,109,87,94,99,95,102,108,90,96,94,102,97,106,101,69,100,109,120,111,107,96,97,99,91,98,108,99,110,104,96,100,96,100,105,107,94,101,105,98,101,113,110,95,108,101,103,100,99,100,112,94,104,111,130,110,103,95,95,115,120,102,102,91,111,107,97,98,104,119,108,102,90,85,101,104,116,100,108,105,103,99,98,99,96,98,100,86,96, +612.0166,103,101,96,104,92,102,103,120,84,105,98,102,105,110,77,98,99,109,108,94,110,102,97,109,128,98,94,112,95,98,111,98,104,99,102,96,106,108,105,105,99,108,92,105,105,93,111,105,105,116,103,101,100,95,100,100,90,95,113,99,109,96,113,98,114,111,116,82,106,93,103,98,106,93,95,99,118,103,108,101,110,103,97,109,110,101,106,117,112,102,94,71,108,108,102,104,93,99,103,100,100,103,98,114,98,108,96,100,100,107,99,98,113,104,103,118,116,125,110,102,108,104,118,122,107,101,119,105,115,101,105,104,100,101,99,105,114,110,108,109,108,109,96,114,107,103,81,114,98,93,104,103,112,99,102,107,99,99,104,96,101,92,109,106,114,93,106,103,94,94,97,110,107,89,103,104,97,108,114,107,92,98,96,98,100,98,97,109,104,102,108,100,90,96,100,104,88,104,118,95,100,108,103,111,114,109,111,118,108,117,89,112,121,104,93,103,97,104,101,110,114,112,100,106,92,111,123,118,108,112,103,95,96,114,110,119,105,107,113,101,102,109,107,111,98,112,105,107,101,111,106,113,122,95,93,117,115,115,99,112,96,108,119,109,111,113,111,104,106,90,105,101,100,87,98,110,115,99,98,108,121,103,102,111,109,108,90,102,102,101,102,116,118,101,117,116,93,105,103,118,98,96,107,106,99,118,111,89,105,103,102,100,103,100,103,97,98,99,106,118,105,103,112,109,104,111,99,103,112,115,104,93,107,100,100,107,105,88,100,104,92,102,106,101,102,101,101,116,111,101,95,98,107,109,103,116,110,98,108,109,100,105,106,104,92,100,116,109,111,99,108,133,110,93,99,100,107,105,113,103,103,114,104,122,96,83,101,111,110,90,107,99,99,103,106,103,104,98,112,104,119,112,113,101,101,99,91,103,100,99,98,99,109,104,99,97,100,110,107,99,110,109,94,96,91,100,105,135,117,97,98,105,106,106,100,99,94,114,103,96,111,109,107,112,106,110,102,106,106,102,107,103,109,108,113,104,118,108,99,108,106,117,95,119,123,108,117,107,108,100,102,108,100,99,84,102,115,104,104,104,108,94,103,101,112,92,104,102,98,106,110,99,112,107,100,112,96,115,103,109,105,116,102,111,112,110,99,101,113,110,115,105,107,108,116,112,112,87,103,100,107,102,102,116,105,107,102,101,100,88,90,114,99,121,87,112,98,99,115,116,95,111,104,117,112,99,105,105,113,103,108,111,107,100,100,104,112,104,105,105,93,110,114,105,105,110,112,87,104,107,102,91,96,112,92,108,101,102,98,113,104,97,108,99,105,101,110,109,106,102,111,108,96,111,114,125,107,109,103,98,91,109,101,99,101,103,119,95,105,102,104,101,101,105,106,108,130,100,105,104,105,109,100,111,120,110,114,102,106,112,91,103,100,107,104,106,96,102,109,108,119,104,107,103,90,122,109,97,98,109,94,106,100,114,106,99,98,95,100,111,115,107,101,105,106,109,101,96,93,91,108,106,104,102,98,110,100,106,112,98,100,110,108,116,107,106,122,100,95,118,109,116,102,117,106,99,111,102,105,110,91,98,104,108,113,116,114,104,104,104,103,101,100,107,111,99,104,104,121,106,106,98,100,103,108,112,106,96,105,102,94,92,93,103,91,99,104,98,110,99,98,107,102,103,110,115,105,105,117,94,106,100,100,110,112,121,72,102,106,111,106,105,106,121,97,117,98,103,106,100,105,98,108,89,102,104,116,109,110,103,101,106,109,110,94,99,112,99,111,77,105,104,102,108,107,110,98,107,92,105,105,108,96,97,120,111,104,106,104,110,119,101,105,109,100,111,118,106,111,100,112,124,102,99,94,105,113,98,112,110,106,101,97,101,104,100,105,99,107,94,97,125,106,103,104,104,102,104,114,120,106,96,101,101,99,107,98,115,118,107,113,105,88,103,120,101,109,102,109,115,106,118,90,106,98,111,95,103,94,101,107,107,120,115,102,108,109,97,99,100,116,110,120,102,119,103,108,104,113,98,103,111,106,102,106,98,105,98,100,108,96,101,121,101,108,105,106,100,103,106,115,113,98,116,99,118,105,98,101,101,106,119,109,118,95,114,107,106,108,122,100,104,96,101,118,116,112,113,103,107,112,113,102,109,109,110,101,109,93,107,111,112,103,95,106,101,101,99,110,107,99,104,101,103,104,109,98,102,101,100,96,97,101,99,98,88,111,98,95,107,98,104,98,105,100,97,102,101,101,109,112,101,100,100,117,109,104,101,95,91,94,103,94,104,113,110,116,104,95,109,113,107,110,97,105,113,90,95,114,104,116,105,107,101,133,105,106,105,119,111,101,105,102,108,110,127,111,125,100,129,118,106,114,119,95,114,102,117,108,103,87,103,109,103,92,109,118,98,104,103,98,116,98,114,96,89,100,102,112,108,93,112,103,112,105,96,103,96,107,97,99,102,105,100,110,99,91,85,113,118,105,101,95,100,108,105,109,109,101,112,97,107,97,114,101,106,92,101,97,94,111,101,105,93,104,109,98,104,108,102,100,107,101,104,100,104,96,90,112,92,103,104,95,93,106,94,109,91,128,105,104,98,112,99,95,106,114,116,114,120,107,100,102,86,108,105,94,98,94,108,102,102,113,91,97,99,99,99,92,105,107,98,101,112,80,108,101,99,114,107,101,109,102,107,111,103,98,83,103,113,110,106,100,109,100,104,98,102,120,100,104,99,102,103,113,114,99,103,99,110,111,105,105,99,98,90,94,113,109,101,104,99,107,107,108,95,113,101,104,107,115,113,103,96,112,93,107,105,107,106,102,127,74,98,113,92,87,104,93,99,109,106,105,109,114,107,114,104,105,103,121,114,100,93,109,101,105,117,105,112,102,95,109,111,79,107,98,108,106,116,110,100,73,105,96,105,96,99,94,121,75,117,106,103,100,89,113,108,104,105,83,99,105,99,100,110,100,98,113,117,99,87,101,91,109,104,101,97,111,109,97,101,99,103,113,97,99,94,100,102,107,96,110,93,103,108,98,101,113,92,87,111,100,109,103,74,93,103,104,101,98,101,108,102,123,101,100,109,113,104,92,87,120,96,122,110,100,106,109,114,88,104,93,104,108,96,109,112,104,116,88,95,105,94,113,97,113,95,98,112,113,100,101,110,112,104,102,100,98,119,105,103,103,106,94,112,95,111,96,106,97,107,110,97,101,100,108,97,109,103,108,101,112,123,104,103,99,104,98,94,104,99,106,97,115,75,103,99,111,99,102,102,92,94,101,103,100,98,104,110,99,100,102,103,113,107,89,92,95,105,103,114,93,102,110,124,104,105,106,102,102,117,102,104,104,100,100,111,91,98,110,104,100,101,93,101,98,103,113,91,97,96,93,102,105,103,105,91,106,96,102,91,95,102,104,114,111,101,113,105,106,110,98,92,100,108,104,108,94,97,97,108,92,92,103,107,103,101,110,98,105,110,113,103,108,108,102,101,97,100,110,95,100,112,102,106,110,105,85,112,95,102,104,105,104,110,100,97,101,109,108,69,116,110,90,88,98,93,129,98,96,107,107,111,110,96,101,99,113,98,98,103,105,104,104,110,110,102,106,102,97,91,99,96,101,110,109,88,100,117,104,104,100,102,89,98,107,91,96,101,100,110,109,114,104,102,112,114,92,111,103,112,95,100,84,101,104,101,90,89,91,105,98,94,110,99,107,106,81,105,108,107,105,95,105,113,104,99,106,101,100,100,96,90,111,113,87,101,103,110,113,105,107,110,108,112,102,104,101,109,109,91,97,105,121,112,100,100,99,109,94,108,105,109,94,100,86,94,103,95,98,110,106,99,110,104,96,105,95,103,98,99,100,121,117,102,93,100,95,94,93,92,105,111,105,105,112,100,91,99,103,96,96,100,100,108,98,110,103,95,107,108,104,105,99,104,102,112,107,113,109,100,103,99,99,93,100,100,102,89,109,105,100,103,99,107,91,101,106,109,112,113,104,92,103,97,114,106,114,97,111,103,105,88,112,112,92,108,110,95,102,99,116,101,102,119,117,103,105,65,98,115,99,109,116,106,105,108,102,106,94,101,101,103,100,103,113,99,91,106,104,110,106,121,102,108,100,103,105,101,104,105,110,92,111,106,122,101,117,103,107,114,129,113,109,98,102,92,117,104,105,107,93,114,98,117,99,108,89,100,112,113,84,103,97,95,118,123,120,93,121,100,99,104,105,115,95,103,107,113,101,108,117,101,95,102,108,102,97,110,111,113,105,96,104,98,101,105,102,95,112,96,107,121,107,109,116,105,83,102,109,105,98,111,90,100,109,77,106,99,107,104,105,108,103,109,98,92,104,100,104,103,100,110,96,114,101,106,101,98,88,103,98,107,91,117,99,107,105,93,99,83,110,98,70,82,114,94,101,106,104,112,102,120,111,109,104,107,103,98,105,95,103,109,101,105,96,104,108,97,79,100,104,102,101,95,112,106,105,107,95,96,96,109,106,108,97,107,107,95,88,99,102,100,96,102,100,100,109,98,107,102,104,98,101,113,108,109,98,107,97,89,112,104,101,91,101,100,113,101,101,94,98,106,108,106,110,102,104,94,107,97,102,102,98,105,113,108,119,100,108,106,97,94,90,102,108,103,75,93,109,106,95,98,98,101,112,105,93,112,103,110,100,97,102,92,113,105,91,115,94,94,103,109,105,89,104,108,94,106,116,92,91,103,103,98,89,101,94,103,103,100,102,103,99,93,96,104,97,110,103,99,91,95,103,99,112,106,112,117,97,107,98,106,100,114,94,93,105,83,109,105,90,107,92,107,95,97,106,97,103,96,113,108,97,96,107,111,96,85,97,103,101,98,99,82,106,113,106,113, +612.15771,108,103,96,95,105,99,91,102,112,99,100,102,96,104,104,103,100,109,106,97,97,100,100,111,92,106,100,99,96,101,111,104,104,106,121,103,111,95,109,100,104,100,102,110,109,118,101,97,109,107,70,100,106,104,100,91,77,97,103,84,90,92,103,102,104,113,113,108,106,99,101,109,100,100,100,102,103,96,108,94,125,101,98,114,105,98,93,92,95,102,104,102,110,101,108,113,100,92,107,106,106,90,98,107,116,101,95,106,102,108,111,108,105,97,102,103,92,105,93,86,109,95,111,107,104,104,103,91,103,102,97,113,95,89,93,104,112,113,92,94,118,107,92,99,88,74,114,100,101,105,105,103,109,88,101,99,101,101,119,97,102,101,103,109,105,99,109,109,109,92,99,115,99,114,96,99,112,101,87,105,108,105,106,97,108,105,107,100,118,100,102,99,101,100,91,111,102,101,99,109,96,100,99,103,105,113,94,97,106,116,109,100,96,105,83,98,97,101,105,106,107,110,98,98,100,111,98,106,95,104,101,109,106,114,99,106,108,104,104,102,107,96,103,108,93,102,107,107,116,115,110,109,106,103,91,110,96,111,111,99,83,104,92,108,77,107,125,105,95,96,97,112,96,104,105,99,102,98,97,98,102,114,100,104,102,101,101,98,105,104,113,107,110,106,110,98,105,102,109,119,104,95,101,93,102,110,103,117,96,117,103,124,103,110,101,103,112,111,116,103,121,101,99,100,103,114,89,88,96,109,108,111,104,102,111,104,102,102,109,105,108,106,101,104,103,104,103,97,104,104,100,105,101,93,104,108,102,98,100,84,106,105,104,101,96,98,114,95,114,101,111,96,105,99,106,100,89,91,95,113,116,91,104,109,110,93,93,100,98,108,117,101,74,113,123,104,119,101,95,104,83,102,113,91,98,117,106,103,106,105,102,88,113,92,105,88,98,102,116,113,100,104,104,94,101,94,103,121,101,114,97,122,97,98,96,110,99,112,88,107,114,112,94,105,101,102,99,90,97,104,105,106,98,98,113,111,98,114,112,104,89,118,107,121,111,118,111,109,104,107,117,99,100,98,97,99,97,122,103,95,97,108,110,88,96,95,111,106,110,100,109,115,96,107,98,106,95,104,104,105,101,110,91,109,107,105,105,97,120,95,87,102,98,95,103,111,103,99,83,94,118,106,109,101,100,101,89,104,97,88,96,103,93,105,110,118,121,105,93,105,113,116,94,102,109,90,116,101,102,98,104,99,112,111,106,103,113,104,109,97,92,112,108,102,120,100,109,96,113,112,100,101,106,109,112,112,113,95,105,89,100,109,109,101,98,111,109,102,116,97,97,103,109,99,105,100,92,102,99,97,99,99,98,110,99,101,117,104,104,109,73,101,112,110,113,107,103,106,102,100,104,104,107,110,104,105,99,106,106,105,113,118,99,108,117,102,111,106,113,124,99,108,99,98,101,91,113,100,100,106,97,95,93,106,105,116,104,104,96,98,113,117,109,108,78,107,99,90,104,107,103,117,101,121,99,107,94,104,109,101,105,109,106,100,102,100,98,103,99,111,110,115,104,106,95,108,116,113,97,91,109,102,106,108,106,108,108,110,93,98,101,111,106,104,103,95,102,95,113,106,107,97,108,95,95,108,95,100,101,110,120,98,101,102,100,83,109,92,96,116,103,102,117,107,99,110,123,99,92,94,106,109,83,107,105,108,101,69,106,102,106,102,98,107,94,98,105,104,100,103,93,103,101,112,99,102,107,101,111,92,103,112,112,98,101,110,121,114,113,109,103,106,90,107,106,107,107,99,103,116,94,105,93,103,104,98,93,109,115,96,115,101,98,107,108,100,115,118,107,107,103,104,107,112,97,119,100,96,102,99,98,79,110,116,94,104,113,83,117,99,99,107,109,99,107,103,94,105,118,100,111,98,105,105,107,97,109,113,98,99,104,115,104,109,109,106,100,90,105,96,101,108,98,105,102,109,98,94,94,91,100,107,98,109,113,97,101,106,114,111,109,102,106,103,101,90,99,102,92,96,120,100,108,102,89,98,96,108,98,113,95,109,102,102,99,109,106,100,107,100,116,96,102,106,94,110,112,102,103,99,98,100,87,97,98,112,111,106,112,106,109,104,110,121,102,103,103,101,106,98,99,109,117,101,106,87,104,100,105,111,107,122,113,102,114,104,88,106,102,102,95,99,110,111,105,117,90,109,96,86,95,105,104,103,98,103,97,100,116,94,101,95,107,95,94,94,93,106,99,104,103,108,108,98,112,113,106,107,100,84,94,105,98,111,105,106,82,100,103,106,99,106,110,102,111,99,109,95,105,116,123,100,105,101,103,109,100,129,117,112,112,135,110,111,125,132,129,122,112,115,108,109,122,106,121,101,113,105,108,98,93,105,95,104,110,105,112,109,108,92,106,117,132,116,102,99,109,105,88,98,99,102,90,98,104,103,114,100,105,106,99,104,100,81,109,108,107,91,107,105,111,104,99,100,105,110,110,120,99,96,98,100,116,105,112,99,98,102,99,111,102,106,96,100,119,106,105,101,95,92,77,105,102,94,104,103,107,107,88,96,109,99,106,108,91,105,114,115,107,92,108,102,105,106,114,92,110,104,111,105,93,101,103,95,102,113,97,102,104,113,107,96,104,103,101,115,108,99,111,103,107,106,102,113,134,91,113,112,92,102,98,116,109,112,105,95,98,95,108,101,104,104,90,120,116,101,102,94,100,102,104,101,72,107,103,105,104,100,94,102,101,110,104,109,112,91,105,106,122,117,101,108,97,105,96,101,94,101,104,90,96,91,96,97,99,108,112,110,97,110,109,104,110,103,103,97,102,104,105,99,115,112,109,109,86,105,99,99,102,109,99,102,106,106,107,101,98,91,89,102,104,97,107,118,106,107,102,108,91,107,120,109,98,109,107,108,91,104,108,99,94,98,89,96,102,98,94,101,103,112,120,110,105,97,103,114,113,101,95,99,116,110,98,103,105,107,118,94,100,114,106,100,101,98,102,106,83,101,107,102,96,127,94,104,105,104,124,101,101,107,109,95,107,111,112,108,110,97,96,98,123,107,98,111,95,104,91,108,99,102,98,104,94,117,120,95,117,105,106,110,108,99,118,105,109,93,105,105,93,92,99,93,101,101,115,104,80,92,111,92,105,100,101,112,110,101,109,102,91,102,110,97,109,97,102,102,105,97,95,105,103,106,99,97,109,104,99,102,115,104,99,111,91,108,107,103,98,93,100,94,108,94,119,99,118,116,106,102,101,110,100,103,99,104,97,107,109,124,103,79,98,95,104,96,80,98,84,97,105,99,90,102,99,108,109,104,99,116,116,119,104,103,99,100,105,113,102,103,106,111,106,102,95,108,96,100,103,100,112,102,102,104,130,95,93,105,105,100,91,96,68,97,105,100,113,97,87,98,103,96,108,109,109,92,76,110,102,109,92,93,112,108,107,86,106,103,111,113,76,109,107,100,108,106,104,105,93,101,105,97,106,102,96,107,97,119,101,118,98,97,103,94,104,98,117,99,111,105,99,108,100,106,91,99,102,117,99,100,108,112,109,105,112,96,92,85,105,107,99,90,94,95,109,95,104,97,96,95,114,121,100,117,110,103,89,98,99,105,105,109,112,92,111,98,98,106,88,109,106,101,93,104,97,102,99,111,97,110,109,90,102,100,103,105,121,105,116,122,102,100,105,102,102,108,112,93,102,85,101,94,111,87,98,114,105,100,100,103,99,106,110,111,98,103,92,99,95,88,109,94,97,103,101,105,88,105,106,89,98,98,104,113,113,91,106,116,97,101,96,103,98,100,103,104,99,108,114,106,109,100,90,100,106,98,96,103,102,94,96,120,110,103,97,106,108,103,96,98,101,105,120,105,102,95,98,92,110,104,113,103,94,103,113,99,113,97,95,102,104,100,101,97,102,107,112,115,106,103,108,106,112,105,111,104,106,95,95,98,93,100,103,105,99,97,113,95,102,89,106,95,105,79,112,117,104,107,114,73,109,104,109,109,106,100,112,102,101,98,104,95,109,100,108,92,102,114,116,106,112,98,98,111,104,112,114,109,104,103,105,104,91,106,108,100,105,100,117,107,107,113,112,73,99,109,92,91,96,104,109,98,102,94,94,88,111,74,111,102,104,97,101,120,96,101,105,106,101,108,119,106,118,107,103,103,101,111,109,95,108,111,106,107,98,91,92,88,103,115,108,100,102,102,110,84,91,104,97,115,105,113,98,101,115,111,102,119,109,99,93,106,116,103,106,98,101,125,98,118,109,110,116,119,107,71,105,100,102,108,77,102,106,98,98,99,99,99,106,99,109,96,121,113,116,112,83,98,100,100,103,116,99,102,107,100,103,101,105,125,107,103,103,97,105,111,88,97,96,106,102,99,116,96,106,98,106,67,106,90,104,105,100,99,110,103,115,86,99,103,107,97,106,100,102,106,121,98,110,108,93,111,87,105,109,108,95,109,94,108,110,93,96,95,90,111,109,105,109,123,110,103,105,98,91,105,115,112,103,105,106,84,105,105,104,100,114,91,106,98,109,90,91,81,110,106,122,96,85,103,96,110,96,98,109,110,92,105,98,102,105,116,108,106,108,112,105,117,96,105,109,104,94,98,103,82,96,113,93,103,105,101,103,112,101,113,106,115,110,113,106,99,107,87,77,107,102,96,92,98,96,94,87,94,113,103,106,101,105,94,105,108,98,116,105,103,107,100,107,94,89,110,98,109,109,98,98,104,108,120,111,96,109,84,108,91,101,99,93,101,98,115,102,99,106,105,116,109,117,97,99,103,109,107,109,90,88,104,101,111,112,87,95,91,107,102,109,96,99,132,99,99,122,107,108,102,126,95,109,101,106,97, +612.29877,108,112,102,78,101,105,100,97,99,108,98,99,110,99,96,123,91,108,106,100,103,102,102,98,93,102,101,109,103,120,103,112,104,113,91,100,109,100,100,106,100,108,96,105,104,128,102,96,111,124,103,99,100,92,110,109,103,111,112,109,97,102,124,92,104,99,101,107,82,99,109,109,114,98,94,108,102,111,107,95,96,110,102,101,87,93,86,103,115,86,112,115,104,104,109,99,104,96,91,107,87,93,98,96,105,99,105,106,116,99,101,108,104,106,97,106,97,103,108,104,101,103,100,107,112,114,121,91,106,101,107,110,109,112,109,100,105,103,106,98,84,95,94,108,106,102,114,103,96,92,104,90,107,90,91,91,104,96,106,93,104,109,108,94,109,95,104,86,105,95,102,122,73,92,114,100,94,96,107,97,103,103,120,93,94,108,101,89,118,95,98,112,91,109,98,97,102,102,111,109,114,110,100,93,107,100,100,103,107,113,95,107,97,90,99,94,102,104,101,106,79,120,100,104,95,109,104,109,99,104,107,92,104,108,100,105,99,115,97,107,101,104,112,103,93,101,107,98,122,102,95,113,90,90,101,113,116,103,95,101,95,116,92,106,105,109,111,97,107,103,96,95,121,104,89,110,107,123,103,104,122,93,105,113,104,98,101,97,114,99,100,100,105,102,86,124,104,111,103,100,102,101,78,95,117,102,96,104,102,106,91,101,96,102,109,101,110,108,92,100,104,107,104,111,107,96,96,99,76,107,106,103,110,93,122,94,114,95,96,106,94,107,98,107,99,114,98,106,103,104,103,97,98,106,95,102,112,106,105,104,100,94,97,106,107,96,92,112,105,102,102,96,127,89,101,106,107,97,105,95,107,108,110,104,100,104,102,99,104,108,108,94,113,104,100,90,96,106,110,119,104,106,101,106,105,95,102,105,115,94,92,109,103,97,103,85,109,108,103,96,93,101,113,102,117,95,102,109,73,101,92,105,94,103,97,117,104,102,101,98,105,99,102,107,104,100,98,95,97,118,118,98,102,103,105,107,106,98,104,104,110,102,106,106,109,111,94,101,109,98,103,103,99,98,127,95,112,121,104,110,106,104,112,103,97,105,108,99,105,103,102,105,108,113,94,88,102,121,101,107,109,102,110,108,108,103,96,104,109,95,96,100,112,102,101,105,104,111,99,109,109,102,105,109,114,109,74,100,106,95,91,102,99,96,108,110,102,82,104,107,93,116,98,91,114,105,111,97,105,117,102,94,98,98,87,107,93,105,111,93,95,111,98,102,98,112,102,106,93,105,103,95,96,112,107,106,91,103,108,112,100,102,98,107,99,97,106,101,107,107,110,105,109,104,113,104,102,107,108,103,107,104,98,109,105,105,110,101,102,92,105,99,99,99,106,104,105,87,110,107,103,91,115,119,100,103,110,109,103,94,115,113,124,105,93,102,106,106,114,104,104,96,102,109,91,92,103,113,116,100,109,118,108,111,101,100,98,102,110,110,116,102,116,97,97,95,116,104,104,108,114,99,107,98,98,107,104,95,102,92,101,106,112,106,95,104,105,87,103,106,97,101,117,104,100,104,105,109,104,101,89,96,107,94,100,104,100,106,109,113,109,115,108,96,107,103,94,109,101,88,122,104,109,116,93,98,103,99,107,86,104,110,110,112,102,75,93,102,101,82,106,115,95,107,110,111,115,84,100,116,109,105,103,106,100,101,105,107,95,104,105,100,99,106,97,105,103,106,103,97,110,97,92,110,98,102,108,107,102,100,97,110,109,109,92,117,95,93,102,102,88,104,104,104,97,100,107,101,112,102,92,92,96,90,106,107,107,104,106,98,102,100,95,100,109,101,90,93,102,94,113,107,105,105,101,107,112,93,102,101,105,106,106,98,100,114,99,100,67,96,104,104,108,113,106,98,113,96,106,104,102,108,102,97,103,110,103,110,101,96,106,110,107,99,113,104,100,101,106,101,97,106,106,105,100,108,101,95,121,91,107,104,108,103,105,101,93,112,109,116,106,115,108,106,102,105,101,87,96,110,97,101,96,114,98,109,102,98,68,109,99,100,100,101,105,106,94,103,101,101,94,109,113,111,109,112,107,113,107,94,112,97,92,112,103,104,100,99,96,117,104,112,121,110,82,103,114,106,101,122,105,87,108,98,111,113,115,114,109,115,103,102,89,109,122,109,99,104,98,108,97,100,105,108,107,107,109,97,100,98,107,100,107,104,94,77,100,98,114,106,103,92,116,106,105,98,112,99,98,103,106,108,98,109,99,101,118,110,92,93,87,105,103,110,102,116,107,101,106,109,105,99,125,92,102,98,106,90,99,110,105,106,107,104,97,85,104,111,132,119,108,106,120,111,96,113,127,119,124,115,126,115,112,118,108,94,109,102,101,102,105,116,101,88,114,105,112,106,102,85,111,102,104,112,99,100,112,105,98,103,96,102,98,113,107,103,88,103,112,92,105,100,99,98,98,96,95,103,109,112,103,104,108,116,106,94,106,99,115,96,104,112,98,103,100,124,93,106,88,102,102,95,113,98,102,92,100,106,105,105,112,97,95,95,102,102,93,112,109,98,91,97,98,106,99,96,114,99,99,82,102,105,124,112,91,95,97,107,99,112,99,109,96,93,95,99,99,93,109,119,107,114,106,102,106,109,101,107,107,112,105,93,88,103,98,112,114,106,108,103,103,99,103,108,103,96,101,96,102,102,101,102,95,98,89,107,104,111,106,118,107,120,94,111,107,104,111,110,106,104,118,114,100,105,99,73,116,100,105,103,95,102,94,108,115,105,99,110,107,85,105,117,108,105,108,84,113,109,101,110,100,106,91,102,91,90,100,99,102,96,111,112,99,93,110,98,103,109,98,110,110,102,108,94,101,106,111,112,105,129,105,106,106,103,95,108,101,96,96,91,116,99,113,89,103,113,107,98,121,102,101,101,110,105,102,113,116,108,107,99,109,94,104,117,106,111,117,99,124,107,95,109,110,103,96,114,107,106,97,93,110,96,109,110,109,109,104,109,102,102,109,99,102,100,109,106,96,98,105,95,108,92,112,92,85,99,104,107,90,102,107,110,105,97,107,102,103,106,101,104,109,94,109,98,100,101,95,105,101,110,106,102,107,100,104,96,109,100,103,102,95,88,106,100,101,84,110,101,92,116,110,112,102,104,106,118,92,100,103,108,87,103,103,109,114,102,98,98,108,106,109,105,98,79,99,107,112,98,111,95,101,108,116,106,101,111,107,95,104,102,108,95,106,114,107,103,106,104,96,93,99,101,97,93,107,106,105,109,112,102,104,97,111,122,107,103,91,92,94,91,101,116,107,105,88,84,103,98,112,98,94,102,105,83,103,99,116,99,125,97,100,105,95,98,106,110,96,111,106,105,91,110,108,107,97,101,106,98,110,110,98,98,90,99,109,93,103,97,108,100,102,105,113,120,121,116,112,96,109,98,93,108,107,107,113,100,106,103,115,105,112,111,105,102,112,99,100,106,98,104,109,107,103,87,117,102,130,85,99,98,106,116,98,106,96,108,98,115,89,116,105,105,105,107,99,117,99,104,106,95,106,91,110,114,98,99,111,104,83,107,104,106,107,99,126,102,108,116,91,106,117,109,109,108,113,105,99,107,98,106,107,95,102,108,77,104,102,112,97,102,104,111,103,105,96,104,104,104,104,107,90,100,102,108,105,98,104,91,100,99,103,91,107,102,100,91,101,106,116,108,107,106,99,90,108,106,102,108,102,98,107,109,103,99,104,104,104,102,113,96,105,90,108,102,101,109,103,102,104,116,107,97,99,111,103,106,107,102,102,106,92,92,104,101,95,105,100,92,100,99,105,102,100,103,93,107,91,94,101,106,108,99,111,107,95,99,109,99,101,97,104,98,120,101,96,104,99,105,105,94,100,91,114,102,91,108,109,106,99,98,98,109,108,109,101,117,100,117,103,96,106,102,104,94,110,101,102,81,88,125,93,118,80,83,110,100,102,113,105,105,112,98,96,117,103,105,108,100,103,102,103,105,98,102,116,114,110,92,102,106,104,107,112,106,99,107,106,105,108,110,101,99,109,107,110,113,112,106,105,106,104,104,99,106,103,99,124,98,120,108,102,101,97,103,116,73,96,101,98,97,111,100,99,100,94,105,117,115,103,96,100,107,95,100,101,102,105,100,106,101,108,105,101,99,99,98,102,105,102,96,95,106,108,105,110,100,105,100,98,91,98,106,101,116,95,100,98,95,106,111,96,98,112,109,99,97,100,90,99,111,109,100,109,121,109,99,104,101,109,94,103,113,106,109,98,103,99,101,115,96,108,101,100,101,112,107,103,102,102,94,99,115,101,106,104,103,102,100,111,118,87,99,94,108,100,92,104,91,95,95,102,94,97,115,91,111,102,88,76,96,99,102,109,105,103,94,99,102,113,114,100,100,99,106,92,91,94,108,103,116,96,108,102,96,100,100,97,95,100,108,95,98,101,100,96,105,107,106,117,93,93,102,101,99,113,105,107,98,98,97,106,101,94,104,107,91,91,104,101,112,91,102,113,101,98,106,107,107,92,86,99,115,101,97,98,107,98,103,111,92,98,98,107,105,96,112,93,110,105,107,102,112,102,108,104,102,101,84,106,103,98,106,105,104,84,96,103,101,110,98,97,114,107,97,99,93,98,114,93,114,107,109,107,100,97,113,104,116,98,109,101,107,108,108,111,115,103,97,114,112,108,99,123,105,95,113,102,90,103,107,112,95,121,107,103,116,111,95,99,102,110,103,107,95,98,93,95,98,110,110,114,107,98,119,99,104,112,98,105,118,110,100,91,105,105,94,96,108,106,97,105,87,92,97,121,99,92,95,106,102,109,116,102,91,106,93,117,112,81,82, +612.43982,133,87,116,102,91,96,113,100,103,121,111,124,104,96,101,113,98,98,112,105,102,101,99,104,104,105,95,95,98,107,97,103,103,99,108,112,106,116,112,92,99,91,107,99,109,111,108,99,109,103,109,103,99,110,124,91,112,86,108,104,102,110,89,103,98,121,92,103,115,104,106,112,102,103,109,103,95,114,108,100,101,103,98,99,82,114,91,79,91,91,110,118,122,107,106,103,91,98,111,101,111,111,92,105,108,75,96,100,108,95,109,99,94,99,103,111,104,111,112,108,106,101,89,111,112,108,105,103,109,97,103,100,100,113,100,77,102,107,105,107,110,110,103,102,78,108,106,116,100,106,104,88,119,116,91,93,98,103,102,99,110,109,108,100,101,93,93,88,96,108,98,106,103,115,106,110,104,88,109,111,107,105,103,104,105,98,96,96,113,95,105,99,108,107,110,98,99,109,109,107,100,114,108,103,111,103,101,91,100,103,106,99,112,114,111,98,113,92,100,101,106,103,116,97,97,109,104,102,94,103,91,112,97,72,107,104,121,110,110,118,100,100,110,105,107,99,98,109,100,113,118,92,102,103,99,111,92,103,92,115,88,103,99,95,113,117,103,108,105,109,106,91,110,99,102,104,107,99,104,107,106,95,103,105,99,103,91,103,107,111,104,115,117,111,96,104,99,91,102,115,98,97,101,105,98,97,113,98,96,110,103,88,108,91,102,108,115,98,110,96,103,97,102,117,103,103,87,100,99,119,105,120,99,110,111,104,108,105,97,103,102,114,99,99,99,114,110,106,96,121,111,89,111,119,107,109,107,102,103,107,111,110,98,100,95,99,104,109,100,87,112,107,96,120,88,94,107,101,103,114,91,106,104,98,64,93,103,111,113,98,122,95,99,105,103,114,98,96,103,118,93,119,106,98,100,106,98,112,117,99,104,101,108,91,107,114,98,96,111,102,106,101,100,103,90,103,114,102,104,102,99,102,105,100,127,100,99,90,106,105,108,103,107,104,98,109,105,101,98,113,106,109,112,103,106,110,107,141,106,91,102,109,103,102,109,109,103,107,106,98,106,114,121,113,94,109,87,90,95,112,105,101,113,101,108,111,110,113,118,121,112,100,107,102,99,100,91,111,82,112,112,106,116,114,111,96,99,104,106,105,117,107,106,113,90,103,110,107,104,88,115,96,106,112,90,103,124,105,102,87,102,112,112,103,117,113,96,96,103,109,93,115,103,109,108,99,117,107,94,107,116,112,108,113,106,96,107,106,103,96,103,108,100,107,110,97,104,98,108,104,102,109,113,121,98,93,111,98,100,99,108,97,95,102,104,94,109,110,109,95,95,119,107,99,106,104,96,102,117,103,117,107,110,105,112,102,116,107,95,102,109,94,103,108,103,95,102,97,114,88,100,110,113,97,101,109,103,100,101,99,106,99,109,108,99,101,82,96,117,109,109,107,104,101,112,100,112,110,101,117,109,80,112,103,102,108,97,107,109,103,113,115,107,110,114,116,109,95,110,111,113,108,122,102,119,99,103,103,104,115,112,107,118,104,92,96,125,110,111,105,108,108,97,113,121,112,104,99,99,104,115,108,97,108,103,103,101,113,100,98,114,110,111,102,121,96,96,98,102,105,113,105,95,101,99,108,109,105,107,106,106,101,111,108,106,101,106,86,108,95,117,106,100,93,125,106,114,112,99,103,118,102,101,106,105,99,89,113,116,112,121,116,101,105,109,107,74,92,94,101,105,113,100,106,114,98,117,103,103,91,91,112,110,101,115,106,116,110,101,100,115,104,104,109,108,105,95,102,102,111,101,121,95,104,107,108,100,79,109,99,106,94,111,87,117,112,113,108,104,102,110,114,103,113,107,113,115,120,108,102,108,96,114,114,99,104,107,79,105,102,101,116,106,96,117,97,113,103,97,98,110,99,115,112,94,109,113,100,103,103,104,104,110,107,108,109,97,114,101,94,97,109,95,94,102,101,99,109,92,107,109,112,106,110,96,105,89,116,105,103,100,119,97,109,92,95,106,110,106,119,98,86,110,99,98,107,104,120,100,96,105,104,104,105,100,121,97,115,109,108,105,104,104,113,103,98,96,110,104,100,117,117,115,101,95,93,102,105,106,98,106,85,98,99,98,110,117,105,94,107,94,103,104,106,111,111,109,113,103,110,100,102,110,95,112,109,106,117,104,112,124,92,92,113,111,118,103,94,97,98,100,104,107,100,106,113,104,112,103,97,110,96,108,106,113,90,105,119,109,105,116,107,100,102,97,109,108,101,102,104,102,104,103,110,101,117,112,109,100,105,102,106,103,99,111,112,100,118,103,114,111,104,129,99,101,111,105,113,116,99,129,125,131,114,135,102,124,112,107,132,102,115,108,112,117,108,112,110,99,75,97,104,97,95,110,102,106,119,102,112,80,107,104,113,108,101,97,123,78,102,101,116,102,107,117,109,103,105,100,113,105,118,90,97,91,115,104,99,107,118,100,103,117,100,93,108,100,111,99,105,108,100,103,103,111,97,99,102,99,119,95,101,102,96,96,116,109,105,98,101,104,111,100,103,112,104,118,84,110,95,101,108,87,113,105,105,99,117,102,103,85,110,98,96,111,101,106,104,101,110,120,100,108,97,109,113,98,95,105,108,107,110,111,106,94,109,108,107,95,102,87,104,121,111,99,99,109,113,105,121,94,104,99,103,100,103,100,115,104,108,114,121,100,114,106,101,105,121,111,113,111,108,98,95,111,102,104,103,100,96,101,100,96,106,88,101,105,99,95,110,99,113,108,104,116,105,112,111,103,109,107,102,104,99,96,105,105,97,106,102,85,105,104,111,115,107,109,109,97,110,113,92,108,108,110,107,94,83,96,113,106,113,99,117,112,96,96,102,101,102,109,110,110,107,93,112,108,121,106,109,104,119,104,99,111,108,109,102,112,108,112,102,113,110,94,106,106,105,107,103,95,110,105,104,102,103,102,109,124,92,104,102,99,109,109,101,107,102,115,108,116,101,97,111,107,113,91,102,99,107,105,102,108,112,108,97,102,92,104,108,102,110,96,118,95,94,108,107,113,115,105,125,108,105,112,111,117,104,108,95,99,102,101,112,114,101,86,93,110,97,101,95,115,105,111,111,104,100,102,101,99,92,99,95,98,94,112,108,99,95,111,94,103,109,92,101,119,109,115,107,110,102,92,104,115,109,102,99,115,100,112,99,93,100,84,116,112,99,109,99,108,99,104,112,122,96,105,100,73,101,98,103,117,113,96,92,105,107,95,108,93,101,102,101,109,100,118,107,95,100,101,102,100,100,106,87,102,103,107,105,104,110,100,104,110,108,109,115,96,111,100,112,110,103,100,114,104,102,107,105,99,99,88,96,113,108,109,109,103,98,115,106,105,90,112,116,107,108,121,110,98,108,106,107,104,114,74,89,98,119,100,97,104,91,121,110,120,105,109,93,112,108,101,100,105,102,105,116,115,94,102,110,117,102,120,109,107,98,96,100,114,88,98,102,110,111,98,108,101,105,101,99,121,103,101,99,109,105,99,110,98,106,106,111,109,114,100,95,104,92,96,102,103,92,101,107,111,106,113,109,89,101,105,94,69,98,100,103,104,105,89,106,107,112,105,87,100,107,96,98,109,111,106,121,94,100,93,103,87,91,99,117,106,104,110,104,108,114,112,103,106,93,112,103,104,107,114,101,99,99,107,99,101,101,108,106,122,114,112,117,113,103,105,111,117,116,103,109,119,101,111,98,106,104,95,98,109,95,112,105,98,100,68,101,112,109,105,89,101,116,104,107,106,106,111,101,102,98,106,110,109,110,114,101,117,96,106,105,107,103,102,125,102,103,107,104,110,102,101,107,98,107,99,93,100,84,99,105,102,104,111,108,105,110,97,108,109,101,100,108,104,106,95,107,110,105,96,120,105,109,106,110,102,103,91,105,110,107,111,106,95,109,106,104,96,110,104,99,102,102,99,92,102,108,100,95,111,92,102,113,113,104,114,105,114,101,112,78,100,113,107,107,102,90,102,104,109,113,107,106,103,100,109,92,90,109,111,102,99,96,99,103,93,102,110,117,102,111,99,105,112,103,102,109,98,107,110,108,87,99,106,95,102,109,95,104,99,112,90,108,107,106,101,109,104,102,109,110,104,97,110,109,101,90,108,104,94,102,105,96,107,110,102,105,107,99,113,89,101,101,110,107,103,99,105,106,99,100,107,100,94,106,102,105,99,99,99,96,96,95,108,105,97,101,102,100,110,93,104,103,99,106,97,99,111,126,101,91,105,117,110,121,113,108,96,111,106,99,94,104,108,97,102,98,102,96,111,92,125,111,109,113,114,111,112,117,98,101,102,104,101,113,106,108,107,86,107,104,107,109,106,110,97,109,103,106,109,95,115,105,107,104,104,106,92,98,101,102,120,98,97,100,100,121,102,102,103,99,109,99,100,104,109,106,110,100,113,108,113,105,94,106,84,116,102,87,96,105,109,122,94,67,104,102,136,104,92,113,94,98,101,99,74,101,103,95,96,102,126,100,105,97,110,102,114,115,104,109,102,97,105,101,110,101,109,91,111,109,103,106,102,104,79,108,106,113,101,110,98,102,104,108,119,105,104,101,104,104,104,99,105,99,108,113,92,100,109,100,105,103,100,100,102,122,106,103,113,86,103,99,135,99,98,107,108,113,98,99,84,100,99,109,97,111,106,99,104,91,97,106,99,98,104,104,117,100,83,102,104,95,96,117,107,95,105,115,88,105,100,119,100,94,111,90,97,105,95,102,104,106,102,109,96,115,106,106,99,121,100,130,114,105,96,100,103,100,97,100,121,98,102,97,85,100,90,98,97,121,116,93,98,118,116,112,104,104,105,101,114,95, +612.58093,109,103,106,82,92,105,114,105,92,99,103,111,114,99,94,113,100,130,99,70,115,95,99,106,96,97,107,99,113,95,101,98,98,97,120,95,109,93,117,102,102,105,106,104,106,99,102,122,109,98,92,101,102,103,114,103,107,95,95,107,81,106,95,106,83,113,92,109,94,100,117,103,102,107,99,98,115,76,91,95,90,117,118,111,103,100,89,105,96,91,97,104,105,82,88,100,102,101,105,112,113,104,102,90,109,100,105,98,99,108,111,94,103,99,103,103,101,109,107,102,100,104,102,92,111,106,119,89,110,95,104,134,101,102,105,106,100,105,95,105,109,112,99,109,110,102,118,113,95,105,99,102,109,114,117,113,107,118,106,104,99,109,111,111,112,100,93,101,109,111,106,103,116,90,110,107,106,107,101,100,108,96,115,101,99,91,64,96,105,103,114,94,119,112,98,99,99,111,101,92,106,95,113,104,100,106,106,104,112,115,103,113,100,106,114,106,109,103,96,115,116,110,105,95,109,104,107,111,104,102,103,99,98,71,110,119,108,116,112,107,100,103,95,123,104,91,99,101,110,107,95,100,94,105,104,105,111,113,99,103,95,106,94,97,92,103,108,117,96,104,111,108,104,98,99,106,99,108,111,95,106,115,100,113,106,101,113,99,91,108,97,106,108,109,102,107,111,113,100,102,106,104,101,100,96,95,114,115,94,111,99,117,105,97,100,107,103,105,101,109,115,96,109,112,96,102,106,88,110,97,105,89,107,100,109,114,107,104,110,104,110,103,107,104,101,106,114,110,103,106,91,107,105,95,100,103,94,118,111,102,110,99,95,110,113,102,109,110,101,105,102,94,101,104,109,86,99,103,108,115,105,111,106,109,94,110,105,104,110,105,115,99,93,114,94,98,101,111,115,120,99,105,100,106,117,96,113,105,108,91,97,80,97,99,100,99,117,103,108,109,97,93,105,113,105,105,111,104,99,116,98,113,105,100,103,109,98,106,105,99,112,105,115,112,117,101,105,97,105,110,110,99,86,116,109,108,103,122,117,93,102,97,95,106,104,104,109,103,105,114,107,104,100,99,95,97,99,120,106,102,103,102,106,108,97,112,107,111,104,101,114,112,107,96,91,91,101,113,104,101,96,110,102,99,98,115,102,103,109,100,86,102,103,111,129,112,99,101,107,101,100,110,112,103,106,104,113,102,102,105,107,94,87,86,110,103,103,98,106,104,99,107,119,108,118,96,96,103,104,107,110,110,110,95,92,111,99,92,112,92,88,103,102,107,98,102,105,102,109,97,96,104,102,114,111,109,103,100,97,94,106,107,113,99,99,80,97,109,104,108,101,105,92,98,112,105,97,104,110,97,101,99,110,96,101,96,102,103,117,117,95,116,116,108,106,106,112,104,110,101,96,112,116,105,103,97,115,100,104,95,104,112,102,105,99,109,107,102,107,114,103,102,102,99,112,99,104,101,102,115,93,110,109,108,101,125,107,107,103,105,106,110,118,105,101,96,102,86,107,103,117,99,99,106,107,112,98,104,113,102,103,117,107,86,103,99,124,108,113,109,112,109,99,102,102,102,108,92,102,107,104,105,100,98,98,110,102,118,101,101,117,124,102,99,92,111,110,100,104,106,99,98,104,95,95,99,105,112,100,122,99,99,103,97,106,100,104,94,105,103,111,108,100,112,101,101,96,101,110,110,108,108,113,98,102,104,108,104,120,105,108,109,85,105,92,103,100,98,96,104,101,99,117,101,106,106,98,104,101,98,107,110,117,101,94,109,123,109,97,106,98,99,113,98,100,106,105,105,87,113,110,102,102,103,105,112,103,106,103,111,118,103,117,113,144,108,103,105,98,106,117,103,99,107,96,113,98,89,102,93,105,114,103,106,98,102,113,109,87,105,105,113,111,121,89,103,104,110,113,106,86,106,99,105,109,103,105,102,103,106,114,98,95,108,109,106,111,105,107,108,103,114,101,109,99,98,104,105,110,120,109,131,105,116,101,104,107,101,108,106,95,104,95,111,107,96,101,108,106,113,89,108,110,113,105,107,106,110,108,113,97,118,109,112,129,97,115,116,95,111,101,101,116,100,104,109,105,113,107,114,103,112,101,106,96,91,109,108,107,100,102,118,108,103,106,112,106,109,116,100,101,101,103,98,112,100,116,95,99,121,108,106,93,112,106,100,108,106,106,103,88,109,92,90,108,104,100,104,98,101,116,109,108,87,119,98,105,82,99,93,99,95,106,114,103,98,94,104,99,141,94,102,107,97,105,104,103,105,89,109,99,96,105,119,105,106,107,108,98,103,97,115,103,109,107,98,106,98,120,118,104,102,121,98,103,107,118,125,108,124,134,119,114,112,111,112,117,125,115,113,119,121,127,118,110,117,112,98,111,117,113,95,116,106,111,117,99,98,98,72,100,111,93,98,107,118,107,109,110,108,98,106,94,98,105,97,101,101,107,90,97,105,103,110,87,102,96,111,108,111,116,105,122,107,99,93,106,96,102,128,106,110,94,96,87,96,110,110,102,107,103,104,101,102,103,117,87,115,100,115,104,114,110,104,106,98,96,110,92,99,99,104,91,106,100,102,102,108,108,100,106,104,115,106,108,101,103,113,97,111,109,101,110,96,104,96,104,89,104,97,101,110,99,109,102,109,97,93,109,111,104,115,97,120,103,107,100,111,95,108,124,107,108,94,102,106,106,113,114,106,91,95,119,103,99,120,114,108,113,104,108,108,114,109,84,107,117,107,109,101,106,110,103,96,111,102,110,106,104,105,91,109,106,106,113,112,111,92,115,107,113,113,102,107,102,109,104,108,100,102,101,109,110,107,108,101,98,116,99,113,108,118,108,108,99,93,104,112,98,103,107,103,103,106,112,99,109,96,103,101,96,110,114,101,99,105,93,114,109,119,111,111,100,99,101,115,104,95,108,90,103,97,99,104,103,113,114,114,112,97,97,124,95,105,95,112,116,111,99,108,111,109,100,104,114,112,116,98,110,104,99,93,100,110,93,104,105,104,102,91,97,100,91,97,104,113,95,97,109,104,103,90,95,106,99,100,102,116,90,101,111,95,115,119,112,93,112,94,107,98,112,98,113,121,109,100,107,123,108,95,107,98,108,113,105,95,112,99,109,91,100,105,106,117,108,112,99,116,110,100,96,111,106,91,103,106,104,103,107,98,98,108,104,112,89,94,114,106,98,111,111,117,99,99,104,101,118,109,117,101,103,110,111,102,100,105,100,111,105,118,106,103,94,92,97,100,107,110,102,108,105,104,100,103,112,98,112,93,121,102,107,111,100,107,105,105,104,108,113,96,97,114,104,70,98,113,101,102,114,102,87,99,96,102,100,119,103,112,105,93,102,100,99,90,110,110,109,119,88,100,96,98,106,96,107,111,91,98,102,102,102,98,83,88,98,100,108,111,73,106,95,100,104,88,102,92,107,102,101,98,89,106,105,109,105,102,107,120,87,100,107,112,107,106,103,108,98,118,116,110,112,100,101,107,113,99,108,102,109,106,95,100,102,105,95,106,113,98,114,111,104,101,105,104,105,98,115,113,110,95,98,104,110,100,86,105,108,102,105,101,95,99,105,107,108,94,103,107,77,103,98,108,100,102,109,99,96,100,108,114,96,108,95,95,103,103,95,102,111,103,102,113,113,104,98,94,120,94,113,93,110,124,106,111,111,106,102,107,106,100,115,88,104,106,99,98,104,94,107,106,100,105,108,102,102,102,90,110,110,99,100,108,112,111,102,114,110,118,104,98,96,110,99,99,108,102,111,105,105,112,120,111,112,94,100,113,97,98,105,110,109,109,103,99,101,105,109,108,99,101,96,109,121,107,126,109,99,106,103,99,102,103,104,103,108,97,96,104,101,107,98,94,80,92,109,106,100,100,116,89,79,106,102,99,106,106,112,99,109,120,106,105,96,113,99,105,109,117,105,109,98,106,80,106,111,115,107,102,96,113,107,92,104,102,109,114,106,98,105,101,94,98,109,105,111,112,111,95,109,109,111,108,106,102,103,100,99,98,113,94,106,97,94,99,100,105,113,103,113,94,105,101,112,108,106,113,96,96,97,103,94,99,99,86,107,104,104,82,100,98,111,100,88,100,103,105,109,104,106,104,116,103,104,91,105,89,109,112,100,105,109,96,95,110,120,107,100,105,109,108,102,107,108,99,104,102,99,97,103,105,95,92,98,69,119,91,100,117,105,107,97,88,108,94,119,102,101,107,102,97,117,109,114,109,95,92,106,104,107,108,93,120,104,109,101,107,103,111,105,113,112,109,106,108,116,108,107,112,101,101,118,100,102,89,114,107,97,107,111,113,104,105,104,111,117,108,102,102,82,108,92,105,105,103,103,94,102,103,99,92,107,105,89,109,103,101,101,105,112,102,107,106,101,96,104,98,120,94,97,95,101,103,103,105,101,103,98,103,107,107,95,103,101,113,105,113,103,104,98,103,100,97,105,86,94,108,101,99,117,108,96,106,108,104,105,108,104,109,102,111,100,108,106,106,116,95,100,99,103,107,103,95,108,112,110,109,116,105,98,111,107,97,120,103,109,93,101,108,90,112,98,98,108,101,93,99,99,117,96,101,114,106,102,106,103,105,77,113,117,107,95,132,92,103,74,109,100,100,92,95,104,102,101,111,103,106,102,103,95,95,105,97,97,98,96,104,106,93,101,112,127,105,106,106,113,105,104,84,106,115,106,107,102,115,107,100,102,102,104,101,99,119,116,100,104,114,116,92,95,99,112,100,97,96,91,111,101,121,102,106,103,102,97,103,115,103,92,99,81,104,121,102,85,127,97,106,101,88,113,105,101,83,94,84,90,104,94,100,99,91,81,95,91,103,98,96,101,115,103,101, +612.72198,123,94,93,100,110,113,99,96,98,103,102,104,99,118,97,103,112,110,110,96,105,82,98,99,102,95,106,109,107,89,118,100,99,112,99,116,103,101,94,99,107,110,98,100,101,108,102,103,92,112,99,101,114,102,114,112,119,96,95,101,110,100,103,101,108,103,103,95,102,91,95,102,100,116,103,98,93,99,137,96,89,99,107,106,84,97,104,112,103,87,113,105,102,91,89,103,120,87,108,99,93,104,99,109,106,110,97,106,100,99,95,98,106,102,107,109,97,93,96,104,107,99,110,114,96,78,120,115,114,113,98,109,105,108,98,99,111,102,109,105,105,117,104,105,100,95,107,98,101,107,108,101,100,93,92,104,97,109,104,90,92,99,107,113,111,94,99,103,97,91,102,100,95,94,101,111,99,95,114,97,101,114,94,103,108,103,107,91,99,94,91,98,120,106,100,102,106,99,105,109,132,103,104,97,93,113,99,98,137,105,108,108,102,107,116,112,108,103,86,104,106,80,103,114,99,113,103,105,101,105,100,111,103,109,95,109,92,106,103,108,130,107,102,97,99,103,100,105,118,107,103,109,108,105,104,106,112,102,98,99,104,104,95,104,100,94,88,101,79,84,103,100,108,111,97,105,98,112,104,99,101,82,90,102,104,104,94,99,100,110,107,105,107,104,100,99,105,106,97,108,102,118,97,114,98,107,107,109,91,99,98,109,98,95,98,101,106,101,111,99,102,99,112,95,104,101,103,109,114,108,110,94,100,116,112,108,107,106,101,107,103,99,110,90,100,116,110,119,111,109,97,95,95,99,101,99,107,121,102,95,103,105,98,95,104,102,95,116,94,113,104,86,103,99,114,98,105,101,117,122,117,103,99,92,102,113,95,100,108,98,116,102,98,105,114,114,105,102,95,95,94,111,102,106,101,96,106,79,111,98,85,97,98,98,115,102,110,108,119,97,103,110,112,109,105,103,98,97,110,112,107,95,102,109,105,107,99,112,101,107,106,93,97,103,107,90,103,101,108,106,102,104,113,112,105,103,104,98,117,102,97,97,88,107,111,102,105,107,115,100,96,102,116,104,91,93,86,116,99,105,95,106,110,100,102,103,100,105,111,96,114,110,114,98,95,98,108,94,106,87,115,128,101,95,122,112,101,94,115,97,107,97,100,102,94,112,92,99,86,97,119,103,106,101,108,107,121,108,103,106,90,101,107,96,107,114,107,98,102,107,112,100,108,109,105,107,105,124,88,109,101,93,108,95,105,105,95,100,95,92,88,108,99,115,102,104,94,95,96,104,92,98,114,101,109,109,102,111,110,100,108,100,105,101,115,88,108,96,109,104,96,102,104,109,103,105,86,107,85,99,108,98,117,106,108,97,97,111,100,105,105,98,114,95,90,114,98,95,104,110,100,109,114,97,98,83,108,104,108,98,111,101,98,108,110,112,99,96,107,99,110,114,110,108,122,100,101,83,117,106,99,102,105,94,105,105,108,110,107,105,81,98,104,103,101,99,110,97,100,109,100,91,100,93,99,89,101,103,95,101,105,111,108,111,74,98,95,104,91,114,115,108,106,105,97,96,103,110,97,97,117,93,98,101,103,98,99,106,94,100,125,91,105,108,112,103,102,109,92,103,102,102,112,103,92,100,104,104,116,110,95,106,98,97,95,113,102,99,108,104,119,98,104,107,105,102,109,106,84,111,106,102,106,114,96,100,108,94,106,103,101,106,87,107,87,110,97,103,102,101,109,98,112,102,114,105,101,116,104,101,113,105,105,90,91,95,94,130,99,110,105,106,95,104,107,105,103,99,108,107,106,104,90,109,101,94,108,109,101,102,106,122,103,106,96,109,106,98,97,100,108,102,112,93,93,101,108,107,105,106,105,105,107,96,104,110,105,112,117,108,94,106,109,98,105,96,107,95,98,103,99,93,105,117,90,101,97,119,96,103,109,107,106,104,120,87,98,110,111,110,99,116,113,109,108,125,105,108,98,103,112,109,99,97,104,103,106,100,97,99,98,101,103,106,102,94,85,91,106,113,113,94,116,102,109,111,90,101,102,91,101,102,94,93,104,85,84,107,111,95,103,96,117,104,103,97,103,92,106,107,108,109,105,98,98,107,104,71,103,107,92,103,99,97,103,104,98,105,101,103,101,96,115,110,98,102,94,112,84,119,109,108,73,96,99,96,108,113,86,104,104,96,103,105,102,99,105,102,103,102,86,105,102,110,106,105,112,91,110,92,107,95,104,94,110,83,99,100,111,93,98,101,94,102,92,109,111,100,86,103,111,117,103,102,105,119,117,102,105,120,110,114,112,94,117,110,104,104,113,95,115,100,101,129,109,104,100,118,111,104,112,120,114,132,126,136,107,91,109,115,109,117,128,105,105,101,99,101,95,112,118,103,69,106,105,109,104,120,91,101,94,97,97,101,117,97,121,91,115,96,112,107,108,103,107,95,99,104,120,111,106,110,110,93,101,104,104,99,90,111,112,98,104,106,106,118,109,125,105,117,105,117,104,95,106,101,113,101,115,106,111,110,89,108,106,119,96,105,106,100,105,108,101,84,96,93,112,102,100,101,95,91,105,106,97,102,94,111,103,105,104,79,95,102,112,100,107,95,106,102,102,104,122,86,103,102,102,105,100,102,95,101,116,106,99,97,108,105,106,109,115,102,100,100,109,102,110,110,100,102,103,116,106,99,109,101,106,104,101,104,118,104,115,105,109,114,101,107,102,116,109,104,98,104,103,98,104,105,99,105,104,110,102,106,112,105,106,97,106,103,90,103,97,95,100,109,103,112,109,106,91,103,102,109,94,106,101,99,101,109,109,98,109,114,105,100,90,114,96,110,100,97,108,113,98,104,99,113,100,115,117,108,116,121,111,111,105,99,101,117,96,109,109,102,105,103,96,91,96,115,109,98,136,103,102,106,108,109,106,101,94,106,102,121,100,119,110,113,99,112,91,116,105,101,98,121,103,106,100,103,113,99,94,109,99,106,107,111,105,96,102,105,105,101,104,119,103,106,118,103,113,104,107,107,101,108,106,110,109,104,100,97,104,99,101,106,106,103,106,120,116,99,101,97,121,103,104,99,100,105,102,100,108,109,84,107,95,102,111,103,106,97,106,110,103,109,98,76,106,98,103,101,108,112,102,109,115,102,111,117,101,106,92,104,94,111,106,100,120,105,105,116,72,95,104,124,100,80,108,115,115,103,99,95,94,111,102,107,125,99,108,102,104,102,101,106,104,104,105,100,111,105,106,105,113,101,99,107,103,106,109,105,116,93,96,106,99,102,113,108,108,99,101,128,97,107,113,103,120,110,93,106,106,104,107,111,106,106,99,101,103,90,99,110,96,103,106,101,80,108,111,102,94,103,102,104,82,96,97,112,102,98,120,102,93,115,106,106,100,109,102,106,101,101,114,116,101,135,103,110,109,111,102,109,105,101,109,105,102,105,115,91,109,106,98,107,111,92,112,116,108,105,103,105,102,103,108,113,105,99,118,99,88,95,108,99,98,103,106,115,102,111,103,132,105,105,102,100,98,108,107,113,102,100,108,95,96,116,73,99,106,107,104,105,103,125,113,98,98,105,110,102,99,97,105,100,100,103,108,95,105,103,115,109,95,94,114,109,116,98,103,99,98,107,93,101,110,106,98,104,89,99,99,109,92,102,106,108,106,99,105,110,104,108,97,102,108,109,94,95,99,99,94,103,107,102,94,127,103,101,104,101,100,102,109,111,113,107,99,105,101,103,102,101,104,100,101,98,117,100,118,116,107,108,97,92,98,101,96,101,110,111,112,105,105,106,102,97,107,110,97,106,112,109,84,134,108,104,93,94,96,99,107,96,113,102,96,102,91,117,105,105,98,95,102,105,96,87,104,83,105,97,119,110,109,105,107,94,111,103,95,109,103,104,103,108,104,100,105,92,106,119,106,116,95,120,99,106,104,103,104,103,96,98,110,104,111,112,108,110,106,100,114,106,108,116,93,99,109,102,107,103,107,102,102,121,106,105,123,94,102,102,93,98,121,120,94,106,115,92,104,103,108,105,105,101,102,98,107,105,107,111,103,108,95,107,104,114,117,117,122,105,104,105,107,115,100,116,112,102,106,86,105,106,108,103,101,102,107,107,103,100,99,100,109,102,107,104,100,100,112,103,117,114,113,96,100,106,109,92,107,108,111,113,108,92,104,106,116,108,111,104,97,102,101,111,120,116,103,78,100,103,109,99,104,109,119,82,103,111,99,107,115,106,111,71,113,99,103,98,100,124,115,100,98,108,118,106,100,112,108,98,109,99,96,108,113,107,104,94,95,97,114,109,104,112,91,106,116,109,103,98,115,117,108,95,110,108,102,109,107,120,104,106,104,96,124,114,104,100,107,94,108,105,92,109,94,105,94,99,108,87,106,99,106,119,98,95,102,107,111,109,108,106,102,94,99,99,102,108,67,101,103,115,107,115,95,101,99,100,98,112,106,108,132,95,101,115,109,99,98,101,103,107,110,103,89,112,110,93,99,111,103,110,107,109,96,100,107,115,105,101,115,109,108,106,117,104,110,106,105,93,104,107,107,114,109,115,136,109,106,110,114,112,110,112,93,111,80,87,110,116,92,90,109,104,104,108,95,96,99,113,98,116,103,103,115,111,109,98,107,103,108,113,92,95,109,98,108,104,101,99,112,103,100,112,99,108,102,109,95,103,101,112,99,83,109,104,109,104,104,98,103,101,113,110,109,101,107,107,104,108,103,100,94,97,113,99,110,97,114,105,95,111,106,104,141,112,94,100,100,100,118,115,108,90,109,104,103,104,99,100,110,104,91,104,105,111,92,115,114,97,103,107,103,109,111,107,104,102,102,101,102,101,112,97,99,102,100,102, +612.86304,112,98,104,100,108,105,108,111,105,83,100,109,110,107,96,80,101,111,115,103,96,94,97,93,112,111,111,123,95,120,98,101,117,94,111,94,104,97,87,91,101,76,100,104,102,105,99,105,91,109,105,99,112,97,105,109,112,98,87,110,102,109,104,108,115,112,92,107,104,107,113,105,99,107,96,94,126,93,113,118,112,120,111,91,96,108,94,107,96,99,107,107,104,99,100,110,103,94,107,104,95,97,108,99,97,109,103,97,103,117,107,107,101,113,116,111,102,108,110,102,99,106,106,102,106,120,121,95,108,107,67,114,96,97,113,96,95,102,136,98,104,107,98,98,106,109,111,99,100,104,103,105,103,94,86,100,104,101,98,83,88,108,114,90,109,105,122,102,104,117,107,105,113,101,115,114,109,72,105,102,118,80,98,107,100,108,93,106,99,108,111,98,109,103,113,70,105,104,106,94,101,100,100,107,102,104,105,98,110,93,92,99,101,98,112,106,101,114,98,108,104,105,111,115,95,98,105,102,116,102,99,102,89,94,101,114,107,103,100,96,108,97,105,106,110,105,100,99,98,102,108,112,103,100,97,106,99,102,98,103,64,107,111,101,106,108,99,107,101,95,83,100,95,114,102,104,103,87,110,103,120,107,99,102,96,105,103,118,115,93,101,107,112,105,116,112,115,93,94,105,112,108,101,116,100,105,109,112,109,104,98,106,98,110,108,99,104,98,98,110,115,106,112,107,103,112,97,97,113,111,84,95,107,102,102,108,76,100,94,98,107,114,106,117,112,105,102,109,118,96,110,107,103,98,101,103,117,107,99,102,109,82,101,94,103,117,106,102,105,109,112,106,100,99,110,97,108,105,108,96,111,118,93,97,100,103,106,99,99,95,111,93,92,90,104,96,102,119,99,101,98,99,100,107,86,105,105,95,93,106,90,95,106,107,110,102,117,112,109,107,98,106,91,101,100,102,102,108,108,108,102,88,106,106,113,99,104,130,82,101,117,101,109,109,109,104,106,100,112,96,102,95,108,94,103,92,114,103,106,96,95,96,103,105,95,113,107,110,95,109,97,103,105,102,104,95,94,84,110,113,110,102,108,112,100,104,104,106,110,102,105,104,123,102,97,101,109,103,104,95,107,115,95,116,108,101,100,97,92,114,118,99,103,101,113,109,91,100,106,99,108,104,104,111,99,95,73,109,113,105,106,120,100,115,95,101,104,99,106,105,102,108,91,120,108,109,106,102,107,102,100,107,104,122,112,105,111,87,106,103,99,106,106,122,98,108,108,103,101,94,125,86,111,93,100,99,96,98,84,106,106,107,102,111,95,91,106,107,106,103,112,111,110,93,106,105,100,107,94,114,108,110,103,116,98,98,84,102,106,100,100,107,105,106,112,90,114,106,103,107,128,94,97,91,94,116,110,91,99,98,113,94,101,119,92,106,101,103,118,105,103,91,116,97,91,90,105,109,102,84,84,106,104,102,95,109,111,113,100,107,115,97,112,106,97,104,112,109,107,102,113,118,106,84,96,105,108,109,114,111,102,99,103,94,99,106,100,105,97,100,99,94,104,103,109,114,108,104,114,102,108,93,110,100,113,116,111,109,97,102,93,92,102,103,108,95,107,113,103,114,109,90,109,101,100,95,106,74,103,118,98,113,81,94,103,97,104,104,91,100,104,96,109,100,115,107,107,104,98,101,110,101,106,128,104,109,89,101,103,105,95,98,98,113,84,100,84,111,92,94,101,83,114,104,106,107,97,103,100,103,110,92,104,106,103,114,92,110,116,110,99,113,104,110,97,108,102,105,108,104,110,98,103,86,114,115,102,104,110,105,106,101,100,101,108,102,100,113,98,100,103,116,106,99,104,109,117,111,107,101,113,106,104,95,104,100,106,113,104,105,104,111,100,105,105,87,93,100,83,110,105,101,90,102,102,108,102,96,101,106,113,111,99,111,99,84,103,114,105,109,97,99,100,108,104,105,103,94,105,99,116,120,104,99,108,108,100,109,103,100,99,104,107,112,108,115,105,100,112,99,96,121,111,95,104,101,107,93,100,109,109,96,115,99,98,101,91,90,95,110,99,111,122,103,94,113,102,107,100,115,101,112,121,117,102,104,114,107,95,101,111,103,105,99,109,106,109,104,103,106,99,102,90,108,113,101,111,106,101,99,99,101,94,97,111,114,109,90,108,103,96,114,99,113,86,106,94,97,110,113,68,107,114,110,112,89,97,99,113,116,98,99,102,112,99,102,105,104,99,106,105,99,104,105,106,102,105,96,95,102,97,96,95,106,91,99,104,115,98,109,101,108,126,94,109,102,112,112,117,106,107,117,102,106,100,116,91,118,104,115,115,139,102,121,114,115,131,126,101,115,128,107,122,101,123,105,104,114,108,118,111,110,110,99,94,94,104,102,103,87,103,109,98,107,108,108,110,104,107,98,101,109,101,113,118,117,105,100,120,101,100,99,107,100,116,116,112,103,103,101,96,101,103,113,100,97,101,91,92,105,91,108,109,103,107,98,103,97,99,110,103,112,104,120,92,111,106,102,96,116,91,102,110,102,107,104,102,90,93,109,119,108,118,110,101,102,116,101,113,102,109,97,108,116,101,107,100,99,113,102,98,85,97,102,115,113,99,94,90,102,102,97,109,103,101,100,95,108,105,104,95,101,113,88,112,111,109,103,106,107,98,101,108,107,101,102,98,109,98,104,106,106,105,101,113,119,120,108,112,99,107,109,102,100,107,102,113,108,105,96,107,115,102,106,125,104,107,101,106,107,104,113,99,103,114,114,113,121,104,115,107,96,113,91,96,109,102,92,90,111,94,116,114,96,100,112,106,107,106,116,111,100,104,105,100,105,107,98,105,102,102,109,101,108,95,101,103,103,118,90,105,121,114,112,89,105,103,105,120,99,100,99,105,100,102,121,111,108,107,105,104,106,115,104,112,111,106,104,107,77,109,108,98,105,125,116,93,119,106,95,106,106,108,108,115,102,105,101,98,108,81,102,102,105,125,94,107,98,109,108,100,121,102,93,114,105,102,100,108,109,98,108,114,93,98,94,121,108,100,112,114,92,104,104,106,98,103,100,109,103,98,105,109,110,105,112,81,104,106,101,93,104,105,105,106,99,106,105,104,112,98,99,95,104,110,116,98,101,105,87,102,110,102,99,106,107,115,106,106,104,101,106,109,116,109,94,99,92,105,97,122,95,106,108,92,97,114,103,106,106,105,103,111,112,116,107,119,120,103,107,104,102,103,89,115,98,100,107,120,117,120,94,102,106,107,92,98,102,94,106,125,105,104,106,103,105,99,97,106,103,96,113,91,109,107,109,106,111,107,108,108,105,101,109,101,100,113,112,86,102,101,102,100,96,102,108,98,116,105,99,106,95,111,110,106,104,112,98,107,91,94,102,101,109,102,113,102,113,82,112,108,113,104,98,108,106,95,104,96,106,105,105,105,96,108,99,107,104,109,107,107,100,92,114,119,111,117,103,121,101,104,111,109,79,99,113,104,115,101,106,93,105,115,108,103,116,91,81,107,103,115,101,102,129,103,108,94,99,129,103,98,99,102,105,108,96,110,105,111,112,98,96,97,108,99,113,75,97,104,111,112,101,113,105,98,108,119,73,95,106,117,101,110,107,98,110,111,102,102,99,104,117,109,106,110,104,95,107,108,106,102,106,87,109,103,104,104,127,94,105,102,100,100,91,104,111,107,109,96,76,119,83,95,97,99,101,106,98,113,78,96,117,107,112,95,106,110,89,88,109,101,108,110,114,103,99,93,99,103,110,110,103,93,98,102,115,91,106,94,98,96,111,100,99,115,109,96,111,108,101,112,123,111,114,109,104,106,106,104,68,108,102,100,96,103,102,109,100,100,100,107,93,118,109,106,94,108,117,102,87,113,98,111,113,99,100,107,96,106,105,109,110,112,87,101,109,95,115,110,109,109,100,117,92,119,99,100,96,101,109,99,100,98,104,104,99,101,95,108,94,111,117,109,118,119,107,111,103,105,112,108,104,91,98,111,108,94,107,102,100,111,102,94,94,100,110,116,104,106,105,118,114,105,97,100,117,114,117,107,96,113,96,101,118,94,110,110,98,109,109,99,104,95,105,113,99,107,110,102,98,99,106,88,97,109,111,104,106,101,103,106,107,106,108,117,113,99,103,96,107,108,107,111,115,95,99,109,108,88,87,106,101,108,102,113,95,105,116,105,88,104,102,115,102,100,93,101,103,105,103,101,109,100,100,102,88,116,110,101,112,97,109,108,105,107,99,103,106,106,115,105,113,110,103,98,113,106,98,108,108,99,92,105,109,115,111,85,102,117,95,103,104,112,103,107,106,104,111,107,110,96,99,108,104,99,93,105,102,98,117,99,95,94,97,102,106,92,115,98,96,107,99,97,88,104,98,105,100,96,113,77,92,101,102,110,87,107,98,106,106,100,102,99,111,102,125,92,97,115,108,91,107,106,104,122,105,105,107,98,95,97,93,126,109,93,111,109,102,106,110,102,113,101,102,104,93,109,102,108,103,91,116,101,101,101,102,107,100,108,105,102,107,100,109,96,122,107,91,118,102,100,105,103,107,106,103,110,93,110,95,106,104,110,117,104,113,114,110,95,106,107,102,100,106,100,101,92,103,91,105,91,98,101,105,104,99,105,100,98,99,102,109,108,96,104,108,105,112,110,96,108,110,102,98,100,108,99,93,111,105,122,106,103,98,99,100,113,102,105,105,87,120,101,103,104,101,97,119,99,109,121,106,113,100,98,109,103,97,98,96,100,96,94,99,108,94,103,103,102,80,91,107,106,102,95,112,94,107,110,91,101,99,117,95,113,108,108,104,98,78,101,87,123,97,120,97,103,99,96,102, +613.00409,118,114,101,105,86,116,84,82,95,96,90,102,95,105,96,108,98,117,99,106,108,98,105,103,98,104,109,112,92,100,102,98,105,102,104,105,108,87,109,92,100,94,106,101,101,110,101,120,98,110,96,99,91,103,87,106,97,91,97,105,102,98,107,97,102,100,100,117,110,104,104,107,102,106,112,114,104,97,103,103,107,103,108,90,105,109,99,114,92,105,105,104,102,100,107,95,98,100,102,92,119,98,96,96,109,107,99,113,98,96,104,101,91,107,103,99,112,108,117,109,89,103,103,107,109,110,106,105,110,101,95,108,105,110,101,116,101,118,100,109,107,104,97,105,87,104,105,107,105,95,110,96,102,112,106,99,96,104,95,106,99,99,103,100,101,83,119,104,105,89,95,102,100,105,107,87,109,96,93,101,100,78,106,116,103,100,104,95,100,106,109,98,98,93,106,109,95,100,112,109,114,95,105,84,92,96,101,98,105,111,113,103,105,108,79,107,98,115,90,107,114,106,95,99,97,97,104,104,108,112,126,101,109,100,105,101,106,97,116,89,94,100,95,101,100,109,98,104,118,99,99,97,114,100,95,114,102,105,98,104,93,106,100,94,103,126,106,107,111,118,105,107,98,100,113,97,105,114,103,92,105,105,103,98,109,106,95,104,107,111,109,103,109,115,105,104,104,107,116,102,106,106,91,106,90,108,119,100,105,111,109,108,98,108,106,100,110,101,108,112,103,111,105,108,109,100,101,87,102,106,114,95,102,97,103,105,107,98,108,96,112,96,113,83,99,110,106,104,100,108,105,108,120,95,116,117,116,115,113,100,109,92,117,105,117,103,104,111,101,107,97,94,99,104,106,93,109,92,107,141,99,105,101,122,106,107,92,99,102,105,110,115,110,113,130,110,101,105,109,113,94,88,110,93,107,94,110,106,87,110,97,100,106,103,107,118,105,95,108,96,103,86,110,103,93,101,110,101,106,83,124,108,106,95,95,105,96,111,96,108,99,96,112,101,101,106,108,101,103,96,106,98,103,113,99,103,101,86,109,98,107,104,98,104,104,103,100,100,101,102,98,93,90,109,103,111,102,102,100,112,99,102,110,103,106,95,111,93,108,94,107,114,86,106,96,105,102,110,106,108,104,66,96,104,114,126,104,99,112,104,107,91,110,103,111,106,99,112,94,87,115,108,102,112,102,100,100,110,101,103,98,104,107,110,96,107,103,99,94,108,95,109,91,104,112,113,108,91,114,96,105,104,111,99,114,107,108,98,103,114,114,99,104,99,102,115,106,109,109,101,110,101,103,108,112,104,106,96,117,99,113,105,105,105,96,110,99,106,104,98,117,107,95,101,91,99,98,92,123,99,103,106,97,106,117,100,105,100,103,108,100,110,97,104,106,98,106,99,106,107,105,97,109,99,110,108,93,101,102,94,109,105,97,106,106,111,100,90,107,104,111,121,110,90,99,105,99,100,104,118,91,98,104,94,99,111,102,113,112,112,104,103,103,107,100,115,103,104,110,104,102,112,99,116,104,112,112,100,115,104,109,116,106,101,101,110,92,94,116,110,96,93,106,113,124,103,120,99,105,85,103,111,110,96,104,114,112,103,95,85,100,103,104,98,111,104,103,108,106,104,107,86,103,109,109,103,105,101,105,103,111,99,117,101,100,96,110,93,110,99,112,94,106,112,116,91,108,118,119,105,106,91,110,95,117,111,98,122,113,97,104,114,111,113,92,110,119,100,102,101,99,113,111,106,98,100,103,99,101,104,109,93,109,98,97,111,118,114,103,121,108,107,107,111,100,108,107,108,99,107,110,114,110,103,113,101,103,96,112,105,106,73,108,103,105,100,110,99,97,99,114,102,107,100,103,100,114,100,112,111,108,109,91,106,109,113,111,109,97,130,82,105,109,97,99,126,101,104,105,99,105,111,107,112,102,101,123,107,98,104,92,109,105,98,111,100,103,114,115,103,97,110,108,117,103,100,108,109,103,100,103,107,111,116,103,103,90,103,100,100,115,117,111,98,87,97,100,107,113,101,101,107,117,109,101,105,97,107,106,108,116,110,89,112,105,91,102,113,115,111,108,106,120,102,108,111,100,98,106,114,102,80,104,103,106,103,95,93,101,100,109,100,108,95,100,115,107,108,115,103,107,101,121,106,99,101,107,105,98,104,104,110,104,94,116,99,94,100,102,106,99,95,105,93,102,100,121,107,100,117,98,108,102,106,98,111,95,76,101,106,112,108,109,94,93,68,103,103,117,108,107,108,94,95,109,117,97,101,91,127,109,101,109,110,104,113,92,113,93,102,122,110,107,90,104,106,107,97,108,123,104,109,115,96,116,109,106,111,120,102,110,122,118,127,114,118,135,95,111,128,120,119,113,92,112,105,107,101,111,123,103,103,104,101,100,108,99,101,109,91,103,112,120,103,100,100,100,103,97,103,95,108,91,96,102,107,96,106,104,105,99,106,106,104,103,107,115,92,113,112,107,106,102,104,110,110,113,105,111,109,104,116,106,92,103,105,124,100,101,99,116,110,114,102,99,102,99,101,114,106,92,122,100,86,108,99,106,113,109,108,97,99,101,110,104,103,83,101,119,104,110,99,110,102,103,95,108,115,107,110,105,91,103,116,108,101,105,109,102,114,107,100,113,110,108,100,110,108,105,111,108,91,99,114,104,118,115,100,99,102,100,103,114,84,100,112,106,102,111,95,96,107,109,104,113,116,116,96,107,107,101,110,97,95,109,110,110,119,84,100,98,111,102,91,115,104,106,100,110,96,101,123,112,104,105,112,105,110,120,107,104,100,111,104,102,101,105,103,107,120,105,102,104,96,105,97,97,96,93,119,117,108,119,113,106,102,108,108,113,117,102,94,91,113,105,112,104,116,108,102,114,101,104,114,108,115,98,96,102,108,104,107,105,105,121,113,98,88,106,109,110,106,94,109,101,94,118,121,108,99,96,104,116,101,101,110,100,109,103,116,102,99,121,97,116,110,115,102,109,87,110,92,101,105,106,118,100,122,111,112,98,106,113,105,104,115,111,111,116,110,101,108,105,93,101,96,107,101,117,96,107,107,116,104,106,104,121,99,87,105,98,113,113,104,107,105,99,117,120,107,90,103,110,110,108,104,98,107,115,116,105,104,98,106,110,107,109,107,109,102,84,106,105,98,124,112,98,98,108,111,108,122,115,100,106,100,98,108,103,125,110,104,103,111,113,101,114,108,124,103,99,101,130,98,112,111,98,107,100,102,108,104,110,108,109,109,96,108,82,94,100,101,107,100,108,103,108,102,102,107,116,107,115,110,108,108,112,104,100,107,95,111,106,102,100,100,111,99,104,104,101,113,112,108,124,100,113,103,108,99,109,94,102,109,92,111,92,109,103,113,107,99,110,110,114,109,106,102,103,108,98,102,99,89,141,118,96,106,80,95,106,105,115,104,112,107,100,105,98,112,104,111,101,102,102,89,101,109,99,99,121,104,104,107,103,108,106,109,107,100,108,107,93,118,106,108,105,105,109,116,109,105,100,112,116,112,101,109,105,106,105,96,95,107,99,95,98,110,110,111,111,111,117,108,93,101,97,106,109,116,102,102,107,100,105,95,105,101,104,104,108,116,106,109,108,97,110,116,96,124,101,96,98,112,81,104,102,102,112,103,110,108,112,107,106,102,113,103,102,88,108,95,117,106,104,110,106,116,98,111,100,119,110,105,104,110,117,106,95,126,106,104,117,91,119,108,120,100,108,105,113,100,114,107,121,109,104,99,102,102,111,112,96,107,100,109,94,112,108,116,102,104,115,111,92,121,102,107,92,106,97,113,115,93,108,112,100,110,89,105,109,108,101,105,106,111,83,110,103,89,92,105,102,104,109,93,114,103,99,103,105,104,102,107,109,92,105,97,113,101,115,108,108,102,112,99,98,114,108,101,98,105,103,121,100,107,112,105,110,108,126,104,98,105,105,102,105,107,99,106,101,109,96,107,114,115,119,101,104,106,105,89,111,124,106,113,113,105,114,94,106,106,108,106,101,115,75,110,109,105,110,104,99,105,109,111,110,102,104,116,114,117,103,102,111,108,80,107,109,109,107,85,117,104,115,98,109,95,103,109,103,97,108,99,95,100,99,102,96,109,108,120,93,102,105,99,104,103,102,99,100,112,121,112,109,105,110,115,109,102,105,99,109,109,113,105,106,113,126,100,105,110,107,90,104,112,103,107,111,93,94,100,131,108,99,108,91,105,99,128,105,112,98,103,104,108,101,103,112,102,78,103,97,103,110,107,103,107,103,115,95,106,110,115,109,102,106,112,114,106,118,104,107,105,102,106,95,110,99,104,111,109,105,109,114,107,107,99,107,112,104,122,102,103,103,93,108,99,103,99,104,104,95,104,109,112,86,105,116,99,107,87,102,88,103,87,110,99,109,105,101,108,105,99,107,95,104,104,107,110,104,97,107,112,108,100,101,111,119,98,106,110,110,104,109,107,111,106,104,100,99,101,88,121,110,111,117,119,110,107,103,85,100,106,74,100,101,117,121,98,92,111,112,112,117,106,109,91,102,94,92,134,95,109,100,99,105,98,104,108,103,102,100,122,98,121,108,101,109,123,118,107,86,98,108,117,103,110,100,105,101,112,106,111,123,101,125,108,123,102,101,108,102,94,109,89,104,102,99,95,104,108,111,100,110,111,100,103,98,105,107,97,96,102,99,129,112,114,105,98,110,99,108,101,123,106,101,104,108,104,102,107,101,103,91,104,113,104,96,118,108,97,100,89,106,102,89,113,106,91,113,106,100,114,99,106,112,114,101,110,116,103,98,113,96,117,84,116,109,98,99,118,107,101,104,97,105,109,117,109,103,93,105,109,111,93,111,109,121,114, +613.1452,103,84,93,98,90,112,104,91,97,108,107,94,109,101,106,94,106,94,87,109,116,88,105,102,97,108,100,92,101,80,100,92,103,104,104,105,109,113,95,101,105,101,101,100,108,117,119,100,98,115,100,108,92,87,102,94,92,109,107,103,103,91,97,109,99,101,101,104,113,97,97,98,115,111,97,116,104,106,98,113,103,105,114,110,113,108,91,105,105,92,99,108,99,97,106,92,94,105,104,97,97,84,96,104,102,104,108,100,100,107,116,108,107,110,118,107,104,98,106,107,104,138,99,107,104,104,113,103,113,106,103,112,95,99,103,100,92,109,95,108,102,101,113,95,112,96,113,105,101,103,88,107,103,133,112,104,94,103,103,100,112,96,100,97,90,100,103,106,108,85,100,101,106,103,102,100,104,100,106,104,94,122,109,102,96,105,95,87,104,102,105,100,113,111,110,111,120,102,101,111,110,85,101,97,98,104,91,107,105,99,104,114,108,112,105,102,101,113,109,90,113,109,101,91,102,111,105,114,94,130,115,103,104,115,82,112,121,108,111,103,115,103,110,106,103,99,106,109,107,111,95,109,87,106,105,99,105,112,101,109,97,96,103,97,105,96,113,117,128,111,108,96,104,109,104,107,109,98,96,104,105,101,99,106,101,108,90,107,106,109,109,114,111,90,108,96,110,109,106,109,100,107,107,115,117,108,112,110,109,109,107,105,106,107,99,111,112,102,103,96,96,104,108,99,94,110,95,94,102,102,109,103,108,115,100,108,109,102,109,101,115,109,99,105,107,99,103,85,106,99,106,105,117,112,95,101,107,100,120,91,103,107,88,110,102,97,118,117,107,110,104,91,116,110,105,101,88,118,107,104,111,107,96,121,107,84,113,102,115,104,86,101,108,121,103,103,97,103,106,108,67,101,102,97,102,107,110,99,113,92,104,104,108,107,116,84,109,95,95,91,106,97,104,113,106,98,100,93,101,115,105,100,88,98,92,103,97,124,95,106,114,91,123,113,87,111,110,104,115,105,113,111,109,116,93,100,109,104,105,100,104,100,110,103,116,119,103,103,111,98,124,107,110,106,94,99,106,125,109,105,99,113,107,92,114,99,94,115,103,98,105,101,109,104,97,129,104,90,118,100,102,106,104,111,105,118,105,94,102,101,104,108,108,97,98,86,105,121,104,103,119,99,100,111,102,103,110,115,99,104,93,108,97,101,95,99,95,95,102,97,99,108,90,90,113,95,103,98,110,114,113,95,96,96,108,99,100,109,104,111,99,110,97,95,113,105,94,101,110,103,107,103,88,110,113,113,104,98,102,100,104,102,107,102,109,108,108,105,114,108,95,112,102,107,111,104,87,92,104,100,103,106,104,103,101,114,87,112,105,115,107,94,108,81,110,103,106,99,102,109,101,100,90,106,109,90,91,111,111,105,105,108,94,100,125,108,106,96,96,92,98,108,103,101,94,125,97,108,106,111,102,103,109,104,118,97,105,110,76,103,104,107,99,100,99,107,100,98,103,110,99,98,109,91,98,104,89,108,99,99,109,109,101,95,106,103,104,87,116,112,109,109,117,114,92,103,110,106,105,93,106,100,108,105,104,105,96,103,110,104,108,107,112,112,108,91,107,114,112,100,108,101,103,111,106,103,103,102,102,110,99,110,97,108,93,98,105,94,106,104,112,101,98,100,108,103,110,119,84,103,102,91,96,96,100,106,102,94,113,100,105,100,88,109,102,103,98,101,91,121,107,91,116,95,108,91,95,93,95,101,109,109,120,101,110,110,112,111,103,99,103,111,103,122,108,106,119,108,107,104,115,106,100,102,91,102,112,111,114,100,113,104,100,113,112,103,106,110,98,104,108,117,108,101,106,105,96,102,107,103,99,96,114,93,99,106,106,102,108,99,103,113,113,97,98,98,113,96,90,93,105,106,107,104,98,113,105,115,101,94,105,73,102,106,97,109,97,111,94,118,109,109,114,114,103,106,107,113,101,123,94,106,99,102,108,112,107,84,109,103,101,101,94,106,123,92,100,103,111,98,105,112,107,98,101,105,99,95,104,117,111,106,114,108,101,109,102,107,111,108,104,100,98,95,116,94,106,108,109,91,113,111,129,104,100,94,86,99,112,111,103,91,109,88,99,103,90,105,96,92,96,95,99,104,115,113,116,105,95,104,102,117,103,99,106,104,102,91,98,98,106,110,111,107,102,96,104,99,90,107,106,104,107,110,114,99,98,88,96,95,112,95,91,96,109,107,106,112,102,106,101,112,111,122,104,95,116,102,100,84,105,108,101,108,102,100,106,103,97,105,116,114,116,96,99,101,105,99,117,115,100,108,115,116,104,92,116,110,106,111,123,136,116,119,127,100,119,88,128,136,136,123,115,120,99,122,107,105,118,114,98,112,98,106,106,108,90,91,104,109,93,102,96,103,112,103,99,108,106,108,117,95,98,112,99,107,104,107,117,105,101,111,103,111,107,104,96,95,121,100,111,106,103,107,97,113,105,105,102,110,81,107,100,89,135,112,106,104,101,109,114,113,95,111,107,120,110,121,107,102,126,113,127,106,104,100,106,102,110,98,105,117,106,107,98,104,111,105,102,106,117,111,106,97,100,101,101,111,112,108,91,99,118,110,96,106,116,94,105,103,92,107,108,110,97,109,101,100,101,103,107,105,95,102,94,88,104,104,102,114,101,100,111,106,105,99,115,97,115,94,101,110,113,109,108,104,104,100,105,109,112,106,100,100,121,109,107,107,113,117,97,114,99,109,115,112,100,108,102,106,104,106,119,110,118,104,100,105,106,106,105,98,121,79,100,105,104,125,100,116,105,111,107,90,108,106,105,99,107,107,102,102,102,107,101,99,106,108,117,106,101,100,116,105,111,111,105,111,100,103,100,95,99,107,103,98,102,95,118,111,110,104,104,94,98,101,96,108,96,98,97,100,102,109,94,97,96,104,114,104,91,99,100,98,108,107,107,108,112,111,108,104,85,106,113,104,113,106,114,114,110,101,107,114,106,110,94,102,100,98,116,116,123,102,120,107,124,95,112,115,116,111,103,104,104,94,99,107,102,98,111,106,93,101,115,99,116,110,112,114,104,104,105,105,105,96,104,105,89,111,97,101,106,109,102,94,104,113,99,93,114,92,121,100,113,112,100,109,118,99,84,105,95,107,103,107,105,101,114,98,105,91,112,108,102,103,111,104,116,101,101,99,120,84,102,116,111,109,114,99,100,99,112,121,115,95,101,106,109,113,105,99,103,106,104,109,102,100,108,118,102,100,102,114,104,98,106,99,107,106,105,108,113,107,109,103,101,108,101,95,106,99,105,104,100,101,104,95,99,112,106,103,109,105,101,108,105,102,107,105,105,106,110,109,112,104,99,96,110,101,95,109,106,105,99,104,103,104,109,102,108,98,106,109,109,111,103,106,109,112,97,111,112,96,111,102,106,105,120,99,104,125,105,94,96,101,93,111,117,101,103,108,95,112,107,109,91,107,98,79,109,102,102,111,89,108,108,117,87,110,94,101,108,98,101,108,89,101,102,115,109,100,113,94,116,100,105,106,83,94,116,108,109,111,117,100,107,103,105,113,101,106,111,94,106,105,104,103,111,106,109,103,108,103,112,93,102,101,98,111,111,106,108,79,98,96,121,100,109,115,106,108,112,102,99,97,113,107,102,99,101,108,108,110,112,88,99,107,94,109,98,96,112,104,101,101,103,102,105,99,106,102,102,109,111,104,116,102,104,103,102,101,95,110,102,119,110,101,131,125,102,114,108,90,106,95,104,99,107,100,115,102,106,110,102,107,102,113,108,115,92,117,94,89,107,96,99,109,106,93,103,103,116,104,109,103,104,112,104,117,114,102,104,109,102,101,113,120,102,101,105,127,104,103,104,93,110,96,105,95,111,94,93,103,107,104,103,98,97,106,95,101,113,95,114,101,103,121,113,112,113,106,99,106,102,116,99,99,111,98,109,101,106,100,113,98,104,109,99,105,109,110,107,101,107,109,115,118,113,99,112,108,105,97,105,98,111,103,109,107,109,93,101,105,109,110,112,101,113,109,116,112,99,114,109,113,85,107,109,99,75,98,92,97,103,97,98,100,109,102,108,105,102,113,103,104,103,101,112,110,104,107,105,99,106,103,103,104,116,105,104,110,116,108,106,101,105,103,103,106,102,109,106,105,110,104,99,99,111,116,106,95,99,95,104,113,105,111,114,95,112,96,108,88,105,93,105,110,102,110,108,111,106,108,107,104,115,99,97,114,99,98,104,102,106,118,91,112,115,107,108,110,112,110,105,103,103,103,106,99,117,107,119,93,95,102,102,97,109,101,105,114,105,113,105,123,111,106,104,104,99,108,98,112,112,106,101,112,109,97,96,102,104,105,94,102,94,105,107,98,113,109,107,95,104,101,98,99,99,111,87,108,107,109,106,84,98,103,116,111,107,98,109,98,117,104,103,106,113,107,115,102,98,103,103,105,104,105,114,101,84,95,102,101,94,107,105,107,105,136,100,121,105,105,111,96,101,106,108,104,94,94,111,105,95,99,107,100,109,111,99,99,98,90,102,107,107,129,106,91,98,101,104,110,98,104,98,114,141,103,111,103,119,104,104,100,115,106,96,109,102,91,104,96,93,104,125,100,108,103,106,113,101,98,102,91,107,105,99,104,103,95,107,108,132,108,96,104,107,105,99,105,101,110,101,98,107,88,99,105,101,109,106,103,108,96,124,103,127,91,97,93,111,106,102,111,108,97,107,106,90,100,112,90,101,103,80,106,107,117,99,83,116,85,101,95,98,99,91,99,105,103,105,103,107,116,96,105,106,83,109,112,103,104,97,98,98,90,105,101,104,106,99,102,109,105,110,84,101,94, +613.28625,96,109,90,82,80,110,97,91,106,106,87,94,114,95,108,111,101,108,94,109,96,110,100,108,104,94,104,102,110,99,99,108,108,101,107,100,95,117,103,99,104,96,105,113,107,117,102,99,103,113,100,102,108,115,105,114,97,104,112,93,76,103,104,115,112,115,106,104,98,99,112,122,105,103,105,105,98,110,102,103,109,107,120,108,100,99,121,101,99,96,105,93,104,103,126,128,103,105,113,105,73,91,108,105,102,103,105,109,108,90,119,120,117,105,108,103,91,114,110,110,111,102,107,107,96,115,102,100,110,106,106,118,103,120,98,102,103,102,95,94,105,132,101,114,100,100,102,101,90,109,107,96,104,102,99,99,98,96,113,94,103,85,118,100,98,102,100,103,119,104,106,97,102,101,111,92,107,93,108,104,113,103,109,109,106,97,108,111,107,95,98,109,100,110,110,98,112,108,101,103,113,128,103,103,109,111,107,100,110,109,110,111,98,117,117,97,109,116,104,97,113,103,114,103,101,109,110,108,105,106,90,104,99,112,106,92,94,117,91,89,107,102,102,113,100,105,104,107,108,102,107,99,104,102,111,105,101,113,107,109,75,121,109,104,102,110,103,110,103,97,99,102,106,95,104,116,105,98,99,100,110,112,102,102,94,118,101,101,98,107,102,102,115,91,102,108,113,110,105,106,102,107,106,106,97,110,83,116,125,101,94,103,103,93,108,105,97,105,100,117,98,105,100,106,109,94,95,102,100,98,113,114,112,110,99,101,100,107,105,108,105,102,113,115,104,113,97,109,119,104,118,102,112,114,106,97,104,98,121,72,97,104,122,99,100,100,112,117,96,107,94,115,113,108,106,112,107,116,117,107,106,99,111,102,103,93,104,110,118,105,117,100,108,108,92,111,108,117,105,104,100,101,103,102,108,102,105,109,112,108,106,97,113,112,109,103,104,113,109,118,108,100,96,108,90,94,106,94,102,96,112,117,113,105,105,107,102,110,105,102,118,97,112,105,109,103,104,104,105,109,102,100,106,102,100,104,107,106,102,105,105,99,107,109,115,107,113,116,105,113,106,100,102,103,103,103,119,117,101,106,101,108,101,99,96,96,110,112,112,100,100,93,110,104,105,103,96,105,102,102,116,101,100,104,98,110,91,96,104,109,124,94,103,93,109,106,106,108,105,96,108,106,121,89,109,99,103,100,70,102,101,106,111,100,113,103,112,111,110,105,111,109,115,115,98,103,104,96,108,110,101,116,104,93,111,114,107,104,109,98,119,105,98,103,100,101,112,102,108,106,99,112,91,108,102,116,101,96,93,95,105,112,102,102,107,99,102,109,110,111,102,99,85,104,110,110,110,98,107,100,111,100,105,95,104,94,111,109,105,109,110,100,117,110,117,103,106,98,103,98,98,115,110,99,107,105,109,106,103,113,112,108,106,104,97,103,94,105,101,83,106,120,111,111,101,102,132,91,120,108,111,98,107,106,99,99,104,115,117,105,109,109,100,105,110,113,102,99,108,122,114,110,117,105,103,117,98,99,103,106,101,98,100,92,95,111,106,96,104,103,110,111,99,106,94,101,98,102,103,85,105,112,111,107,103,108,114,99,113,113,104,101,95,99,99,101,107,108,101,113,102,93,104,107,96,95,107,104,104,107,107,106,98,99,122,103,130,108,109,107,121,74,114,96,109,85,104,108,95,96,104,104,104,95,104,107,95,113,102,115,98,113,105,107,121,94,88,95,114,104,97,107,105,109,100,103,109,103,112,103,105,109,118,102,109,126,103,115,114,114,103,101,84,106,116,116,109,103,111,121,122,90,98,100,103,102,99,113,122,106,103,109,118,97,109,103,107,105,120,96,102,107,95,81,105,104,121,98,105,113,113,102,100,104,104,100,108,102,112,88,123,110,108,105,111,99,105,108,96,95,111,102,98,99,103,102,106,107,100,98,106,105,100,106,116,100,97,105,100,102,106,102,118,114,113,114,104,113,100,122,98,98,101,95,107,112,106,115,109,92,105,102,101,79,119,88,106,101,102,107,100,100,125,103,92,101,93,94,99,111,122,105,115,106,113,92,107,96,107,114,99,107,114,106,105,102,107,113,105,106,113,109,108,104,104,100,110,96,92,108,102,107,116,114,105,111,109,105,104,108,98,111,110,103,122,106,123,106,103,120,103,110,109,110,106,106,104,105,107,110,101,101,112,109,93,114,107,101,100,105,110,102,100,106,106,110,111,104,120,95,112,109,105,110,114,103,94,99,105,113,91,97,112,106,105,117,110,100,99,117,99,100,97,113,88,94,97,99,104,114,102,118,107,114,99,94,93,96,91,109,99,111,99,103,95,98,103,110,111,116,101,110,98,124,106,117,121,106,129,131,90,116,115,120,104,118,102,103,112,106,109,97,100,118,112,107,104,108,103,104,107,120,98,101,95,94,110,72,120,110,100,100,98,103,121,107,99,107,102,108,104,103,104,102,104,104,104,99,107,110,107,108,101,91,100,109,98,93,112,95,103,118,116,111,125,99,98,109,101,116,112,105,104,106,108,108,109,113,108,106,98,110,92,95,99,106,116,96,95,105,88,112,101,116,103,103,108,106,113,108,105,102,109,120,94,107,112,96,102,104,105,106,109,104,95,107,115,100,106,113,105,98,105,105,89,100,104,100,105,115,111,105,77,100,110,113,117,87,109,116,108,106,101,111,107,100,112,100,111,100,93,102,106,98,109,98,116,105,97,124,121,113,111,104,109,94,104,94,99,100,108,95,98,103,106,107,95,94,109,112,110,97,102,104,121,104,102,116,97,135,104,112,98,100,108,94,107,111,95,102,104,104,109,103,111,106,95,107,124,103,114,90,107,118,99,120,102,99,94,103,111,104,102,109,108,95,102,114,78,111,100,103,92,94,105,78,99,117,99,96,97,111,104,110,92,100,100,103,91,114,106,103,98,100,106,109,89,99,95,106,97,113,102,102,110,113,95,103,99,108,101,105,93,108,124,97,109,102,111,98,96,112,107,106,109,100,110,94,99,114,98,106,109,89,102,117,106,111,91,108,109,104,119,95,96,104,95,100,100,104,116,105,110,106,106,98,102,95,96,96,96,103,110,99,110,108,95,104,93,99,129,99,92,105,108,102,97,93,99,110,94,100,105,110,116,102,102,96,97,103,98,108,102,111,88,114,114,93,109,105,100,105,115,99,102,105,109,85,109,96,110,107,94,111,106,94,114,108,110,106,106,107,99,104,109,105,106,103,100,105,99,82,101,119,105,108,88,96,96,104,96,106,93,110,106,122,104,111,101,114,93,120,127,106,111,107,98,102,112,117,94,105,100,96,100,106,105,115,105,108,113,109,104,105,110,101,110,103,103,104,112,103,105,104,112,109,94,106,102,92,102,106,109,104,102,105,103,105,105,110,101,102,104,108,101,96,124,108,87,104,119,106,104,110,95,104,114,105,102,101,102,109,83,98,104,94,104,105,104,106,117,123,110,112,108,96,115,106,108,98,107,113,100,83,97,120,115,119,96,99,107,104,104,101,104,98,112,96,104,99,117,93,102,105,91,112,104,96,101,102,105,110,91,112,102,92,98,109,102,100,87,106,109,104,99,107,105,109,115,110,90,99,101,111,109,88,97,100,92,103,106,93,108,105,109,103,97,100,102,101,108,116,101,112,95,106,114,113,107,111,96,102,92,99,105,101,100,107,114,97,111,93,94,109,95,98,103,106,104,107,100,95,113,96,109,102,100,111,116,109,102,110,111,118,107,106,102,99,111,102,94,108,97,105,118,107,98,121,106,97,108,93,105,106,95,104,113,97,104,103,95,105,104,135,106,107,104,103,87,101,99,108,103,100,91,94,103,110,107,96,105,102,101,100,111,112,113,104,98,102,106,105,105,109,107,106,107,92,97,102,107,97,119,107,104,114,113,97,108,102,89,107,97,96,114,112,104,104,102,103,97,98,100,107,103,107,106,107,97,104,95,108,119,105,113,118,105,109,94,114,113,109,105,106,100,102,107,99,103,101,112,116,97,93,112,104,106,107,110,113,96,108,93,101,97,104,91,101,92,106,115,111,95,110,102,85,106,104,103,103,111,112,104,99,100,102,104,72,98,100,99,87,92,107,107,111,95,115,110,103,111,101,91,96,107,106,113,121,108,108,100,102,98,110,115,96,102,99,104,105,108,70,105,102,102,103,92,98,100,107,107,92,101,117,102,113,104,104,76,105,96,108,103,101,93,96,95,106,115,102,107,116,111,104,105,107,98,101,99,104,98,99,86,110,96,104,106,106,99,97,110,104,126,108,106,99,109,101,98,106,105,117,99,106,90,108,119,105,109,112,98,113,104,104,106,109,103,117,101,86,107,112,108,98,113,101,98,115,109,98,104,91,100,81,94,102,95,104,91,100,109,102,96,107,98,100,105,96,106,95,107,65,96,108,102,96,111,96,105,118,105,105,106,104,95,97,94,93,106,107,95,105,104,102,95,103,102,123,98,106,95,97,108,100,101,95,104,105,104,111,108,107,109,100,101,105,105,104,104,113,110,112,107,102,100,107,105,99,112,107,99,98,100,109,109,99,104,105,94,99,104,100,95,106,104,115,110,110,100,92,95,95,106,87,95,93,108,104,108,95,95,109,116,105,104,103,100,89,105,100,99,95,94,108,91,113,105,102,111,108,103,111,111,107,110,100,99,102,98,90,105,87,109,100,91,103,98,105,99,103,109,93,93,93,116,101,110,115,79,105,95,112,103,87,80,105,105,98,115,125,87,103,110,95,106,112,103,96,117,90,132,105,108,113,106,113,107,105,107,99,105,106,89,103,114,83,95,100,101,93,108,109,98,110,87,102,90,103,95,99,107,104,100,99,107,104,97,89,96,100, +613.42737,116,126,112,114,94,103,106,99,88,125,87,102,113,104,102,103,107,102,91,107,107,106,112,98,100,113,109,111,115,90,98,117,112,98,91,88,104,99,104,99,85,104,107,114,106,109,92,103,111,97,95,102,101,101,98,106,98,93,116,119,104,101,112,103,100,112,109,107,116,119,105,118,107,96,107,114,101,104,106,123,104,108,110,98,100,106,96,108,104,127,111,82,112,99,110,98,95,87,94,107,115,102,105,110,94,122,102,111,97,120,118,105,99,105,83,96,106,95,102,112,122,114,116,100,109,79,108,96,96,95,99,109,113,108,100,103,95,100,92,113,103,104,99,111,111,107,119,112,100,89,106,97,112,90,102,98,114,95,108,109,110,106,111,97,114,105,99,113,103,100,109,103,106,105,121,105,95,110,101,114,91,109,107,102,129,119,100,100,125,99,88,102,99,96,113,120,98,110,101,101,101,96,106,108,99,106,105,103,112,113,107,103,111,107,100,107,88,108,96,93,104,104,113,105,103,104,104,114,111,107,124,99,98,96,106,110,113,106,108,93,100,97,106,99,99,96,106,108,100,100,108,95,92,118,119,109,99,102,96,104,116,103,116,100,108,101,96,121,99,104,110,113,113,112,103,100,111,114,94,99,80,103,103,114,97,115,103,109,110,115,108,102,127,107,115,117,109,103,99,112,105,109,100,116,103,101,121,98,100,115,99,111,105,93,119,104,110,99,107,106,101,98,101,103,111,102,97,82,106,98,112,107,107,112,98,102,108,102,104,96,108,105,107,94,96,105,101,112,113,108,118,96,101,103,112,104,104,103,103,112,104,104,99,115,110,117,102,108,99,109,103,100,106,98,108,100,114,106,111,110,104,104,106,92,96,90,127,106,116,98,102,105,95,105,96,105,97,103,95,95,103,100,103,113,90,100,91,108,108,103,106,98,106,116,98,106,123,99,120,104,98,107,107,104,98,98,103,100,109,108,95,110,126,105,106,109,89,125,108,99,110,117,95,96,96,107,98,99,104,103,104,105,109,115,108,101,96,95,104,110,110,102,109,108,110,97,109,103,104,107,110,107,102,101,99,92,105,119,107,121,93,116,96,102,98,87,113,100,103,106,105,107,105,105,108,92,101,103,98,97,94,135,105,103,104,106,97,106,106,105,101,103,102,105,117,98,104,107,98,107,105,112,102,97,109,101,105,112,111,109,87,105,104,100,92,109,99,100,98,112,105,90,99,95,108,113,112,90,114,98,104,99,107,114,98,100,106,104,110,107,100,107,104,108,108,121,114,100,111,96,96,95,106,114,103,116,102,105,99,102,102,102,95,98,91,110,102,112,110,102,112,106,105,111,112,115,88,97,101,109,97,114,106,101,100,106,105,102,108,107,103,102,110,87,110,109,106,92,123,104,93,102,102,89,113,103,109,108,104,112,113,99,102,105,116,118,94,98,110,118,114,108,108,104,103,97,100,106,118,112,105,103,99,102,101,108,106,121,115,100,94,108,104,106,108,112,67,105,104,98,108,98,112,96,99,114,104,98,112,120,104,108,100,99,101,109,103,115,99,98,111,100,91,111,115,108,118,98,95,104,87,101,118,107,98,120,105,109,113,98,113,105,94,94,106,104,101,110,106,95,101,99,103,97,102,103,108,106,102,111,104,110,93,94,104,105,113,98,103,110,115,100,114,109,114,104,114,112,98,104,103,108,107,106,106,91,105,107,124,114,101,106,94,103,101,115,98,104,99,100,141,116,102,101,99,123,93,103,103,96,96,100,117,105,95,106,106,109,100,99,108,112,111,117,95,110,101,102,109,106,107,103,105,98,117,106,102,104,111,103,108,90,99,112,110,105,117,109,103,111,101,103,106,91,102,112,106,98,112,108,113,113,106,103,91,98,102,106,95,108,100,105,109,111,101,105,101,102,106,93,87,106,107,106,105,107,116,105,104,110,109,104,106,102,96,115,100,107,106,114,104,116,106,110,92,114,99,95,101,105,110,94,108,97,91,106,103,102,103,87,116,104,111,123,111,97,107,101,103,91,93,99,104,101,105,104,109,120,86,115,112,113,103,103,115,96,101,99,108,107,98,106,114,100,103,110,103,102,96,107,107,96,116,107,95,98,110,85,114,112,119,105,117,99,95,105,115,104,121,109,99,108,108,107,115,116,94,113,92,99,109,105,104,116,110,105,98,96,105,98,103,107,108,115,109,103,107,108,102,105,117,107,104,110,110,100,105,107,93,112,101,104,113,103,97,108,102,107,105,93,107,97,100,95,114,99,117,98,122,66,95,102,96,98,98,101,105,100,105,117,105,114,102,113,108,113,101,111,116,97,114,110,113,102,106,95,103,115,125,103,120,121,111,123,100,119,124,118,123,118,98,105,104,109,115,98,84,107,106,122,91,118,110,110,102,94,102,99,106,103,107,114,109,73,114,99,115,93,90,105,106,100,110,106,107,105,105,105,106,112,103,105,112,109,105,105,113,106,102,98,104,110,111,105,104,113,108,107,94,119,76,109,113,114,106,95,98,88,97,96,80,108,104,120,104,119,106,113,109,98,108,119,102,92,117,113,106,95,114,98,105,116,83,136,105,103,112,104,101,106,101,102,113,119,102,118,107,104,95,122,107,88,96,102,105,113,103,109,105,112,94,100,102,99,108,108,112,105,108,104,112,100,100,106,113,104,110,110,109,110,115,102,104,107,94,111,90,99,109,110,99,110,105,97,99,103,102,106,108,91,114,109,102,110,109,115,120,100,108,105,108,110,107,100,105,106,106,110,97,106,111,107,100,103,100,109,124,119,117,103,101,95,121,98,105,97,114,117,110,106,105,105,101,121,103,87,116,103,104,101,114,106,105,111,116,111,98,99,101,113,114,109,103,113,112,110,101,97,105,104,116,103,100,108,105,114,107,104,107,104,107,103,98,80,98,84,97,106,113,99,108,110,109,105,102,95,106,110,119,98,96,100,101,106,109,111,109,98,110,108,117,106,115,106,104,94,112,106,107,103,103,93,105,102,126,121,94,90,106,113,96,112,102,114,108,108,100,108,107,86,98,117,119,110,102,94,107,124,90,114,97,95,95,100,112,116,103,118,107,111,105,99,103,104,100,109,113,107,94,101,96,101,102,94,113,89,102,104,100,103,102,105,105,106,115,107,102,105,100,104,98,108,106,108,100,105,108,127,118,103,108,100,114,102,99,111,120,107,111,97,111,101,103,104,103,103,120,115,118,104,118,104,95,121,108,99,96,106,84,109,85,92,107,102,114,109,107,80,106,111,105,98,110,110,94,106,102,103,100,113,107,99,109,100,102,103,101,92,108,99,98,103,96,103,101,108,103,107,112,106,98,104,116,101,107,113,115,120,97,104,108,96,100,108,103,87,99,105,103,112,110,102,105,112,99,106,96,99,101,106,113,94,111,88,104,97,103,95,108,96,106,106,99,113,105,106,102,104,101,108,90,109,100,90,105,92,106,101,108,92,116,99,91,103,105,98,99,117,114,99,101,110,75,94,92,103,107,115,98,102,97,116,109,105,104,102,103,111,113,102,109,109,108,105,111,109,107,98,110,85,99,110,108,105,98,106,109,100,104,105,112,102,105,112,103,104,106,100,108,106,109,116,117,115,91,103,109,105,110,108,124,101,100,122,105,110,116,109,107,120,94,122,121,103,101,103,97,104,113,103,108,103,102,119,111,102,96,108,101,96,101,113,114,106,120,100,108,110,96,111,106,106,105,97,105,117,114,103,117,108,102,96,111,108,101,101,87,99,106,106,98,106,102,110,110,104,106,108,82,117,109,103,109,107,95,123,95,117,106,114,109,109,98,108,105,114,104,109,98,107,104,105,103,95,111,97,102,106,102,109,87,113,106,98,98,105,109,107,90,104,93,103,106,92,113,99,111,102,115,104,104,101,84,99,108,105,105,95,99,106,99,112,108,100,110,112,108,110,98,106,112,106,88,103,113,102,119,101,97,106,127,103,128,112,117,95,121,112,100,104,116,99,121,100,113,105,108,110,112,97,103,107,116,101,111,110,112,116,112,115,108,103,97,97,104,98,103,99,109,97,106,83,101,110,112,112,99,113,104,108,113,106,93,115,111,96,106,117,104,99,98,92,107,109,105,114,100,108,102,113,83,109,93,92,103,104,112,101,108,93,106,121,100,102,98,109,104,112,105,109,91,101,101,107,106,102,99,108,89,103,103,108,108,104,94,106,119,105,110,97,103,101,103,110,104,114,97,115,109,103,94,106,98,107,111,76,97,112,91,107,92,103,107,102,98,118,107,99,104,107,111,91,99,110,108,104,100,108,102,112,120,116,109,111,107,103,75,103,105,103,115,115,115,102,100,102,111,113,94,106,111,111,98,104,106,109,85,106,105,107,95,101,103,111,98,111,83,101,101,102,102,96,108,103,99,107,102,107,111,102,94,91,108,115,109,96,102,96,99,108,93,95,108,102,101,110,100,105,104,106,106,105,102,109,96,105,110,101,92,104,93,91,110,100,110,109,100,107,112,109,101,113,101,88,116,98,100,98,91,114,98,106,108,101,108,103,119,106,100,127,107,104,113,109,113,112,102,113,94,91,109,109,113,106,102,106,94,102,90,108,112,93,103,92,109,105,113,102,106,111,91,103,117,94,103,103,113,113,106,100,122,112,92,102,103,92,105,124,104,113,116,111,96,106,102,102,106,106,104,107,93,97,105,106,104,106,116,123,100,112,123,101,95,100,98,102,93,123,98,103,104,111,112,94,105,108,95,110,104,98,102,99,96,109,107,97,104,107,85,109,101,102,103,98,101,104,109,85,108,108,109,93,89,108,105,104,112,96,102,95,108,91,111,80,101,112,121,116,105,101,117,84,97,107,97,101,110,101,92,85, +613.56842,130,115,87,94,98,103,98,101,76,115,101,98,97,92,100,106,107,113,107,100,105,96,102,103,105,100,103,105,99,100,98,107,108,91,113,110,104,99,112,95,107,97,100,105,108,112,112,106,104,98,113,98,108,87,126,101,109,90,108,83,98,108,102,100,113,100,93,96,96,101,99,102,98,84,95,102,108,97,109,115,103,99,100,100,106,98,103,111,91,108,111,94,106,93,97,95,104,107,98,104,96,93,107,100,103,120,111,97,84,106,107,95,101,93,99,97,117,97,102,107,104,94,97,101,105,102,102,95,106,105,96,112,112,101,117,109,105,100,95,105,97,101,103,93,95,94,105,94,97,86,100,95,108,85,103,98,116,108,101,100,111,104,109,102,98,90,90,88,112,102,106,101,91,98,92,105,98,92,102,102,105,109,107,98,96,101,102,87,112,97,100,95,105,109,102,104,96,105,102,101,110,101,105,104,99,102,106,106,104,106,97,98,110,105,105,100,111,113,106,91,99,114,101,115,97,107,101,106,113,103,106,101,109,109,105,111,107,117,104,94,106,125,105,100,107,105,104,104,95,105,105,95,101,121,106,118,105,106,101,116,99,100,76,109,103,103,108,93,91,91,110,95,99,100,92,110,98,92,103,104,105,105,89,121,109,100,98,97,95,99,96,94,105,99,110,104,95,105,105,118,89,104,105,100,98,104,110,108,107,102,113,112,116,104,101,122,113,84,99,96,102,91,100,93,110,92,101,84,98,108,110,87,103,101,105,107,99,94,94,109,104,102,99,98,109,108,95,101,105,95,105,109,103,103,90,113,96,108,101,96,101,94,104,98,98,90,110,96,111,108,116,108,93,119,109,96,109,109,98,127,105,121,105,100,110,113,99,107,91,104,104,104,83,103,96,104,99,102,102,103,116,102,108,97,96,102,88,96,122,103,100,103,89,111,99,110,104,85,100,114,98,110,89,88,104,93,98,99,99,106,105,74,108,115,79,95,103,121,91,95,108,109,97,102,86,107,91,108,103,124,87,87,88,104,107,92,105,100,99,100,104,102,104,109,110,108,108,77,101,94,115,117,103,101,99,85,100,111,100,106,80,95,108,87,109,98,95,96,98,99,105,110,98,109,101,95,97,108,109,101,100,106,100,105,100,85,109,104,92,98,98,93,101,99,101,101,96,109,101,97,105,100,108,107,91,109,90,91,106,100,97,104,100,98,96,109,110,110,112,106,101,106,98,107,115,106,101,96,108,100,102,103,102,88,100,93,120,112,101,101,96,99,98,109,112,107,106,94,93,114,98,104,101,101,106,112,105,94,102,90,111,103,99,109,95,103,92,107,106,103,105,113,90,99,103,113,94,110,106,95,103,109,110,95,102,104,101,103,101,102,87,109,103,105,106,101,101,92,100,107,99,121,106,96,94,103,97,108,98,102,96,107,106,89,113,112,114,101,101,97,97,103,106,104,111,110,106,102,110,110,98,101,108,116,102,100,109,89,100,104,75,112,94,102,96,99,97,95,99,97,112,107,110,82,102,108,92,111,87,103,101,101,104,101,104,96,112,101,102,103,97,94,99,140,117,81,89,102,111,86,89,92,97,97,99,104,104,88,98,99,98,103,101,98,110,99,105,105,102,106,108,105,109,70,105,106,105,98,101,102,101,107,104,114,106,128,101,91,107,95,109,99,109,102,97,106,96,115,107,101,94,91,104,95,100,116,120,99,91,110,99,98,92,104,96,99,93,107,106,106,97,102,101,102,109,103,110,106,104,98,96,103,114,95,87,105,105,106,101,101,100,89,99,103,103,102,113,125,100,110,109,111,96,104,97,104,109,99,103,99,109,113,105,105,111,99,98,102,108,107,99,105,99,105,114,109,97,103,109,100,109,98,108,102,101,90,105,124,103,109,91,97,105,86,103,98,102,111,98,102,103,106,108,90,100,110,116,107,99,103,93,100,98,103,109,111,97,110,105,108,109,100,101,102,94,101,104,95,102,98,104,105,110,107,104,107,109,102,105,101,101,109,101,98,108,97,109,103,109,110,105,103,103,101,101,103,101,104,97,93,105,99,96,98,100,91,91,94,98,108,101,99,113,96,130,87,99,101,105,107,93,100,101,109,86,102,96,108,104,105,106,101,107,95,97,112,105,99,110,102,101,96,111,98,104,114,101,95,97,98,116,109,105,110,99,101,113,97,105,108,95,102,110,107,105,99,97,99,96,100,106,102,98,113,114,124,107,108,91,99,91,110,101,97,102,93,106,111,100,113,94,102,100,102,107,97,104,104,106,99,96,106,94,108,112,129,98,90,117,104,109,112,96,95,99,109,102,95,109,96,97,115,98,95,95,98,112,128,112,102,94,116,112,101,119,94,100,119,125,126,116,115,133,121,113,106,95,102,105,107,112,102,95,97,102,106,110,107,101,109,112,117,109,100,112,104,103,112,71,112,100,106,96,108,96,97,98,100,112,117,102,103,113,88,103,109,86,104,107,137,120,116,72,105,109,110,104,102,99,123,103,109,102,105,106,100,102,117,70,106,104,103,96,107,102,102,106,105,96,103,109,114,101,103,105,95,113,118,99,95,97,100,104,106,98,115,120,105,104,97,113,107,109,98,101,96,113,106,96,107,104,99,108,101,104,116,106,106,107,96,96,94,112,115,107,104,107,102,113,100,104,96,100,97,107,95,113,109,105,104,111,99,102,104,111,117,116,97,117,96,112,103,99,111,111,112,113,104,104,92,116,96,100,106,112,112,114,109,99,113,96,112,100,95,100,103,100,100,95,101,104,101,114,108,102,98,117,103,104,116,98,113,108,102,95,96,113,105,98,104,94,103,102,118,95,102,102,106,102,99,101,106,107,104,98,108,104,102,100,112,103,99,103,127,108,114,111,108,90,119,103,120,109,113,112,107,113,105,114,111,95,99,111,100,94,113,116,121,96,109,117,135,109,104,117,98,116,116,107,109,96,106,94,104,112,107,103,103,99,93,103,106,91,98,107,96,104,104,104,112,108,100,105,112,104,108,88,117,112,109,87,102,109,103,99,100,105,105,114,100,116,112,103,103,98,97,101,105,114,97,127,116,100,93,97,99,118,93,107,105,109,98,109,98,102,99,101,116,101,102,92,94,104,117,98,105,102,97,102,99,67,113,107,118,103,113,106,109,106,111,105,107,93,116,99,103,113,104,101,106,105,104,92,111,109,82,113,98,100,106,110,109,111,104,92,107,103,92,115,102,113,104,112,109,115,103,107,99,103,110,126,105,100,100,111,98,111,90,102,96,99,89,105,117,98,100,102,106,121,109,102,111,98,104,102,98,104,102,99,107,100,102,101,108,99,108,103,108,103,101,95,95,104,108,109,96,96,104,77,111,99,106,117,109,95,104,94,106,105,101,116,91,101,118,95,114,108,95,103,113,119,95,123,88,101,103,95,116,94,98,104,115,101,101,92,105,102,94,111,96,110,113,107,99,102,103,114,106,120,105,106,113,101,106,104,99,99,109,112,99,121,107,94,111,105,84,100,102,98,99,100,94,103,99,104,105,100,103,99,79,112,95,108,98,112,112,99,104,122,83,104,109,107,104,91,104,91,99,90,97,111,96,105,106,104,98,94,113,103,105,111,101,102,105,109,105,115,96,102,115,103,117,97,102,97,100,107,98,92,110,99,108,109,96,97,100,98,106,107,98,116,113,110,99,99,101,103,98,95,92,97,106,100,101,71,98,98,105,108,100,98,104,92,111,113,107,85,96,104,110,106,98,110,94,100,101,108,102,113,101,98,116,102,111,99,72,100,115,102,98,101,88,117,103,109,103,106,97,87,119,100,102,105,105,100,104,124,105,100,99,99,96,101,106,104,109,108,98,106,99,99,81,103,102,99,105,93,97,92,108,99,108,101,98,98,113,122,109,105,118,87,103,120,97,103,99,112,107,107,101,96,116,95,96,108,109,92,108,84,100,98,117,104,104,111,109,112,111,107,103,118,110,108,102,104,97,120,97,102,98,109,94,105,103,104,100,100,97,110,111,102,100,85,111,97,107,110,111,103,99,112,98,101,101,107,109,103,109,104,105,100,106,106,101,105,101,106,100,113,103,110,111,106,108,106,104,109,99,94,107,81,97,115,102,96,96,95,101,106,119,97,98,98,102,100,118,111,106,111,104,103,128,112,83,100,101,109,117,99,110,78,94,108,108,109,100,108,102,100,107,99,101,109,109,94,108,105,104,108,95,99,104,105,103,100,99,65,98,107,105,102,104,110,94,95,109,102,99,91,100,105,114,106,95,98,102,108,95,115,111,120,97,103,110,99,97,110,103,99,103,103,102,107,94,113,83,112,111,103,105,103,115,113,107,107,102,102,106,107,105,97,118,103,101,103,100,104,97,116,101,98,100,96,109,95,112,112,105,91,104,111,101,101,63,98,106,102,114,93,103,104,120,104,105,104,96,101,98,111,80,100,107,116,94,94,94,106,101,107,113,104,94,94,101,103,73,108,102,99,98,90,113,102,120,98,104,106,112,94,108,101,107,94,93,88,105,109,98,96,99,111,99,105,95,102,99,117,98,110,97,107,90,102,105,116,109,102,98,113,115,103,109,111,101,110,73,105,106,117,96,112,123,100,104,100,102,104,103,114,94,105,91,110,104,107,108,105,109,97,100,109,102,98,109,113,96,95,104,99,94,95,98,103,103,105,102,103,106,98,114,98,109,99,109,94,103,91,103,109,98,108,103,108,96,95,109,96,101,113,103,113,108,99,104,92,127,98,97,106,101,105,90,100,100,87,107,96,110,102,115,105,100,119,102,105,102,94,115,106,113,119,110,107,105,89,100,104,94,117,101,114,96,109,104,122,113,100,100,91,102,113,116,98,101,84,110,102,107,126,86, +613.70947,111,105,99,107,94,100,100,94,103,103,88,110,102,101,101,105,92,101,107,114,99,106,118,98,93,102,98,100,109,118,93,98,112,112,102,106,101,109,99,95,95,98,116,104,102,101,109,102,95,105,97,108,97,105,96,107,101,73,109,100,91,104,97,112,92,109,105,100,104,99,103,105,104,95,91,99,97,103,83,100,102,106,105,100,100,91,105,102,108,112,117,95,98,105,112,95,111,104,103,109,100,104,102,99,111,89,105,102,109,101,114,126,104,107,110,108,108,98,102,105,97,115,105,104,126,99,107,100,101,119,109,100,111,106,98,105,110,104,114,103,100,117,92,91,103,73,106,106,102,106,97,96,104,94,91,109,102,109,108,108,99,94,112,85,101,99,111,116,99,106,102,108,102,109,109,100,107,99,108,102,104,98,102,112,109,96,95,84,103,125,102,106,98,105,105,82,101,101,95,100,100,95,100,101,109,102,105,98,107,122,101,112,101,98,101,100,101,106,102,103,123,96,105,90,105,98,100,111,105,100,107,97,116,109,102,110,88,102,100,108,105,107,107,107,96,96,103,110,88,106,93,119,96,106,95,110,90,103,101,105,67,108,104,124,70,99,124,93,105,94,119,96,106,104,108,98,92,103,99,111,114,95,95,104,98,104,97,110,96,104,103,103,101,115,97,102,105,103,103,101,105,111,90,101,98,118,108,110,109,108,99,106,109,99,105,100,114,99,108,95,99,103,85,112,106,100,100,93,106,109,112,109,107,117,106,87,93,96,96,94,103,104,97,86,105,103,105,110,117,111,106,103,103,101,122,98,101,102,106,108,120,99,98,105,87,101,109,106,109,104,99,92,104,113,101,103,108,107,107,114,99,117,100,88,110,104,105,78,109,101,114,100,85,120,105,96,93,101,102,116,101,107,100,90,97,96,98,106,100,101,98,91,101,108,112,100,100,110,91,107,101,88,99,108,95,99,101,93,107,104,101,120,110,107,99,106,101,113,103,99,103,100,97,103,101,107,106,99,105,110,101,107,107,104,81,110,103,115,105,91,102,104,109,107,106,107,104,96,100,98,96,98,114,104,98,109,104,114,100,114,106,100,119,95,113,115,102,110,110,98,104,108,106,101,103,100,101,103,101,106,114,97,105,100,107,93,104,85,107,102,95,100,97,102,105,111,110,99,99,86,99,96,109,103,101,104,96,99,102,104,96,102,116,101,95,106,90,112,101,107,109,108,97,104,110,102,106,105,92,104,108,101,102,98,106,101,101,100,100,108,83,99,105,102,99,103,98,100,91,120,121,98,96,93,104,99,104,96,114,98,109,97,108,96,104,102,118,92,113,103,99,98,83,102,118,105,98,100,104,98,98,110,106,94,101,95,113,104,109,101,103,100,117,96,105,102,98,94,94,98,99,98,104,113,107,110,94,108,105,103,98,109,100,110,99,109,104,93,97,99,103,111,102,113,105,101,113,95,108,100,100,99,113,111,107,106,105,105,103,100,90,100,111,105,96,97,101,100,99,98,106,107,104,101,94,112,103,106,125,114,104,98,103,95,96,95,102,111,106,105,114,107,117,107,97,100,96,110,100,95,116,120,95,88,90,112,102,127,108,95,103,106,106,100,100,111,103,106,106,95,110,96,91,108,102,98,101,111,93,109,113,102,103,97,98,102,108,92,114,105,108,102,104,99,95,98,103,107,100,113,106,98,90,105,98,99,97,106,101,101,102,105,98,97,98,105,92,113,100,100,113,105,104,97,97,77,100,102,100,95,125,100,94,106,97,117,101,109,94,121,111,100,107,114,114,96,102,94,107,105,100,103,100,114,82,93,117,109,99,99,109,97,96,113,112,110,112,111,91,112,100,104,121,106,108,113,112,91,101,99,111,100,107,100,103,103,109,112,106,105,111,91,108,108,91,103,99,95,100,103,114,107,93,95,105,96,107,107,111,102,90,101,97,111,107,90,100,101,120,112,103,103,96,110,112,108,101,107,82,102,91,103,109,101,99,106,104,111,114,103,99,110,107,109,101,103,116,96,109,73,106,109,101,107,108,108,109,97,110,100,108,117,103,117,112,94,103,103,108,90,109,99,105,118,106,117,104,113,105,113,110,107,112,114,105,100,104,114,102,109,98,103,109,105,102,107,89,113,102,111,108,104,110,102,104,96,102,111,94,106,105,120,106,87,96,94,107,103,99,96,96,81,104,100,107,106,110,105,103,103,105,110,110,106,110,102,109,111,100,106,101,106,107,101,101,94,115,96,114,112,87,90,105,74,90,108,100,95,106,111,105,104,94,93,111,128,111,120,95,110,109,107,104,108,111,83,122,98,103,110,107,107,105,100,113,109,117,123,113,111,116,128,123,102,102,118,119,119,127,132,134,125,106,122,128,119,97,110,116,107,103,122,113,109,110,106,100,100,108,94,96,104,104,99,117,97,103,112,111,93,103,107,109,105,97,95,116,103,113,107,100,107,98,101,98,103,118,103,97,113,106,113,102,99,109,114,110,104,102,106,111,102,104,116,120,101,107,109,104,103,104,105,113,105,102,98,100,102,122,103,120,110,113,105,123,100,115,115,106,109,104,102,96,105,106,107,104,113,110,95,106,115,111,99,103,116,99,95,102,109,99,95,110,100,93,99,96,125,102,98,105,83,98,102,112,98,102,102,103,113,107,104,109,110,100,112,101,101,91,107,109,109,102,112,104,107,103,97,97,105,105,82,98,95,109,106,116,110,105,109,102,106,100,108,105,95,115,106,110,105,102,100,113,98,97,107,94,106,104,103,109,95,104,109,108,100,103,115,97,115,104,106,116,90,109,103,101,106,94,106,93,108,109,108,102,107,103,100,104,105,105,98,105,108,126,98,103,118,105,104,105,111,115,113,121,100,107,112,77,112,98,108,100,93,106,95,101,120,110,113,107,107,106,106,106,128,110,112,102,112,104,103,104,114,98,113,108,102,101,103,99,91,100,102,103,114,93,103,113,112,107,107,124,104,105,97,108,103,101,109,103,121,97,105,113,103,112,98,100,103,92,106,106,101,98,102,110,106,99,110,102,105,104,123,105,101,106,102,99,112,105,108,117,99,112,105,104,102,102,99,103,112,98,107,116,76,107,112,100,102,101,98,115,106,109,100,105,110,116,103,96,106,105,92,112,119,119,101,97,102,110,109,100,104,102,105,102,111,118,102,101,107,107,110,104,101,107,110,104,105,119,105,110,104,99,110,80,108,121,96,105,108,112,109,118,110,116,105,98,103,111,113,118,99,106,117,90,105,97,105,105,112,104,97,102,105,106,107,104,99,96,108,105,105,113,99,99,93,107,101,92,96,104,99,104,103,101,111,110,98,107,105,100,108,103,95,95,94,107,101,111,112,104,104,110,106,102,117,108,106,107,101,104,99,98,110,104,111,107,91,100,115,105,110,103,113,107,112,101,120,91,91,108,108,111,102,106,100,106,79,92,99,111,100,110,103,112,82,111,102,102,112,110,100,106,99,111,103,105,96,122,108,102,116,104,104,118,110,101,106,116,119,108,106,99,95,105,113,102,110,105,115,107,106,99,102,91,99,102,105,104,100,112,112,107,109,100,103,116,97,98,108,102,105,97,103,102,98,109,97,104,104,108,106,102,98,121,95,109,118,101,96,114,104,98,112,100,129,107,109,100,117,108,102,95,98,116,100,117,103,95,96,100,93,87,112,100,109,101,101,109,105,110,112,102,101,102,114,106,103,99,105,105,107,104,104,111,104,99,102,105,95,102,97,100,104,107,88,108,105,106,106,98,109,115,101,109,108,100,112,91,102,102,94,102,101,106,99,105,78,98,95,107,105,102,107,108,100,96,96,99,105,104,108,119,108,117,109,104,119,86,96,107,104,95,108,97,103,102,106,111,104,100,106,110,109,109,97,94,110,101,105,102,106,109,105,115,95,104,112,99,106,105,109,109,103,101,102,99,97,106,98,109,113,119,106,97,109,101,111,120,101,102,99,99,110,97,109,101,93,101,108,107,107,105,107,110,101,104,102,110,104,108,94,118,109,111,97,113,88,115,104,100,116,103,120,102,103,103,108,96,112,116,108,98,101,97,116,141,98,96,115,111,101,111,103,99,109,110,93,100,96,81,109,103,98,109,103,105,106,106,105,98,96,105,86,112,107,100,102,93,108,106,119,95,100,110,113,116,119,99,116,108,103,108,108,108,108,101,98,101,104,112,107,107,107,99,117,107,101,104,102,104,94,105,97,109,103,104,69,99,113,116,97,95,105,100,107,91,108,108,102,105,108,98,104,113,111,104,96,106,114,104,115,101,98,93,105,92,105,105,95,103,106,100,109,111,117,107,107,105,100,119,121,101,101,117,102,97,90,106,95,109,108,102,109,102,107,113,95,100,89,119,102,105,105,100,98,106,91,99,110,100,106,102,116,93,104,106,103,99,106,101,109,99,106,94,111,95,103,104,102,112,111,112,101,98,106,88,113,114,103,102,112,99,97,107,94,101,96,94,101,105,108,116,97,105,95,112,108,96,98,95,103,107,102,95,117,108,103,116,92,102,101,96,107,108,99,102,85,100,97,100,106,100,100,108,85,98,99,109,116,96,83,109,111,108,121,110,102,92,113,95,108,114,97,106,111,107,102,98,105,117,94,105,99,108,100,95,100,89,92,109,103,101,93,98,103,108,108,106,110,121,107,116,106,93,105,95,92,106,102,107,106,109,101,108,109,132,103,105,94,100,91,91,97,103,102,102,107,112,111,115,109,101,114,102,91,98,106,118,113,112,106,104,103,112,106,77,97,111,91,101,76,113,123,101,103,105,96,104,114,104,101,96,100,90,105,112,105,112,93,110,98,103,112,89,112,95,114,110,106,100,101,112,104,108,104,92,102, +613.85059,101,108,89,90,86,100,110,101,114,96,101,98,128,90,114,113,104,107,107,111,115,107,114,100,100,103,112,93,96,106,102,104,109,99,104,102,94,101,102,88,104,96,101,97,103,106,103,110,103,103,100,91,94,115,113,104,83,101,98,116,109,95,97,97,116,126,112,115,106,116,109,101,106,117,92,97,106,115,104,95,115,100,110,99,98,97,104,104,99,95,104,103,98,99,97,93,94,104,113,98,97,129,100,99,108,107,97,92,94,106,103,109,108,96,104,129,112,112,102,101,118,106,108,117,104,111,75,99,113,107,106,113,110,109,113,112,108,107,99,92,97,96,101,96,93,103,113,111,116,106,94,95,105,80,105,106,103,98,105,105,100,101,141,105,97,111,103,105,106,98,98,108,88,107,105,108,79,102,110,110,101,105,108,110,106,96,99,112,98,101,109,108,96,103,99,91,102,100,91,109,106,95,108,102,112,114,109,102,114,102,112,123,113,104,99,99,105,96,103,100,96,111,108,105,104,101,105,109,101,103,113,99,100,103,100,103,108,105,103,98,101,100,107,106,95,97,102,95,115,105,109,111,104,92,105,122,123,93,111,110,91,63,95,93,91,108,117,112,121,103,107,95,112,105,111,102,94,98,93,102,105,96,96,104,111,99,103,112,111,107,102,113,108,101,101,102,104,101,99,103,107,106,77,90,106,103,106,103,116,118,100,103,103,102,95,102,104,86,91,94,129,92,102,112,106,99,97,98,110,111,110,109,105,79,108,104,112,114,122,100,106,102,104,102,107,111,108,116,107,104,100,115,109,100,102,105,98,121,104,114,101,121,105,91,82,107,109,110,105,113,102,99,96,117,108,102,109,99,101,107,104,109,112,127,95,116,100,96,105,90,105,97,108,108,98,99,104,79,110,96,102,109,99,108,102,101,105,109,106,96,101,96,116,105,99,106,111,100,110,113,119,94,107,107,114,92,113,111,113,111,95,113,95,95,108,103,108,95,121,108,98,121,107,93,95,108,95,98,112,111,99,96,102,107,108,99,104,95,104,110,115,106,106,115,107,98,110,103,97,110,100,117,115,92,107,112,105,116,113,113,109,104,110,111,112,93,103,95,102,99,124,110,134,103,112,103,95,98,99,97,111,117,114,104,102,109,97,102,107,91,99,105,104,103,99,100,113,104,109,97,100,101,110,108,73,97,114,104,102,89,104,103,125,103,114,103,106,110,106,105,112,111,99,104,113,102,117,102,103,105,109,113,98,101,99,103,98,107,105,104,102,109,95,104,106,100,122,102,91,114,101,99,112,112,98,106,97,90,103,94,101,120,103,100,107,104,94,109,101,101,104,100,93,112,112,108,98,106,86,93,103,104,110,107,101,102,105,103,107,110,104,96,124,100,107,96,96,102,109,105,109,117,110,106,107,115,92,114,101,97,97,115,98,105,104,118,106,99,104,127,115,109,123,94,100,91,103,101,106,102,106,105,107,114,93,103,100,99,110,118,103,111,105,103,101,104,104,103,100,96,106,139,102,111,98,99,101,112,108,108,101,108,82,108,109,106,93,101,110,121,101,103,112,107,113,103,124,102,103,103,103,102,103,104,112,123,110,106,102,97,109,103,104,98,98,109,111,100,106,107,115,107,108,102,108,83,108,99,99,117,104,99,106,109,110,131,97,88,99,104,112,107,108,103,119,98,98,100,95,99,102,104,94,101,113,89,110,103,99,117,99,97,95,110,107,100,96,113,109,106,116,97,124,113,100,104,98,98,101,101,106,103,110,99,100,115,115,93,105,103,94,101,104,95,103,114,103,104,110,107,104,104,97,111,96,102,107,108,108,108,107,97,97,99,120,99,106,103,98,104,99,104,112,109,110,108,109,107,104,94,111,98,95,94,108,111,115,103,115,103,108,99,120,106,96,99,91,101,110,103,104,113,98,95,98,110,110,108,105,133,108,102,97,117,103,95,92,110,108,99,99,94,89,110,106,96,98,92,110,118,115,104,111,101,98,109,108,114,113,88,113,112,99,93,94,104,97,104,111,98,108,112,116,120,105,107,92,102,96,104,108,113,106,109,98,95,92,113,102,105,112,107,108,103,106,100,112,99,103,93,95,114,105,107,95,102,99,99,106,103,110,103,108,100,105,111,108,109,110,105,113,107,108,94,121,94,77,88,108,114,94,113,100,109,103,89,99,99,108,89,104,105,110,104,104,83,104,108,94,110,95,103,98,108,94,111,105,94,119,107,109,102,91,80,97,92,103,103,103,112,113,90,106,94,99,92,109,107,94,104,110,106,102,118,93,108,97,70,107,105,107,103,97,103,108,103,110,100,109,101,112,108,109,107,100,103,102,111,126,105,114,110,98,117,108,102,122,149,120,118,113,96,106,132,111,106,116,110,105,101,98,122,105,103,110,94,102,88,88,101,89,133,92,102,94,106,96,105,104,94,103,115,102,119,102,107,118,98,117,113,133,108,104,105,96,113,113,106,123,106,104,98,101,107,113,115,106,87,104,94,100,117,110,93,99,102,97,101,107,103,103,101,98,104,109,103,102,123,108,107,112,112,116,108,104,111,105,111,104,96,111,110,107,111,102,102,99,105,122,100,116,105,109,113,105,114,120,95,105,103,102,107,113,108,114,110,102,106,113,101,102,94,107,125,108,105,113,94,124,106,103,90,94,107,101,106,120,108,111,106,109,100,102,111,113,113,106,101,109,102,95,85,111,113,105,95,100,91,111,106,104,101,105,106,106,122,88,109,112,112,109,106,102,127,111,92,101,101,107,104,106,115,110,103,106,106,101,105,99,114,103,104,111,102,104,98,113,107,106,106,98,100,111,107,108,109,109,133,102,107,112,102,115,107,105,111,102,113,106,100,112,104,108,122,110,107,108,99,102,128,116,107,109,112,103,86,113,104,110,116,104,105,109,109,98,97,106,101,101,108,83,106,111,102,108,90,104,114,104,100,112,109,90,99,95,113,101,108,100,80,115,113,88,87,120,113,103,114,98,95,79,91,100,102,102,106,105,98,103,105,98,107,112,116,112,98,104,103,100,109,99,106,105,130,95,104,115,104,100,99,106,107,99,110,111,92,104,107,105,100,100,97,105,114,110,104,95,111,101,115,98,98,105,101,105,101,105,100,91,107,109,105,123,108,109,117,94,113,110,105,104,127,106,100,104,97,117,114,104,98,96,104,109,105,97,96,101,102,101,109,106,121,109,95,97,109,107,105,112,105,116,110,88,108,105,109,97,108,117,107,108,100,102,113,108,105,105,82,103,98,99,96,101,109,101,95,102,115,105,104,98,109,105,110,106,101,95,100,101,116,98,102,97,103,103,114,105,106,108,96,103,116,99,92,117,117,101,106,113,105,88,99,104,105,107,111,112,107,108,96,106,100,108,100,108,103,99,103,111,116,103,100,106,110,105,100,108,115,110,95,103,109,104,113,75,100,99,109,105,101,113,93,96,96,107,93,118,117,102,96,113,96,104,107,107,107,103,100,103,107,116,97,110,109,107,101,114,102,113,115,98,112,112,108,107,109,102,119,108,106,102,97,102,106,107,117,108,105,103,103,91,112,101,111,111,103,107,104,106,142,105,109,108,107,103,101,120,114,108,112,98,85,95,113,102,100,98,102,105,109,97,101,107,98,104,101,108,98,101,102,107,117,116,105,100,93,113,111,104,105,103,117,98,104,107,101,105,112,100,106,103,106,102,96,104,102,117,111,103,110,107,103,110,94,108,117,117,113,118,99,103,94,115,108,116,84,103,109,110,108,98,112,110,108,116,101,121,108,106,102,103,102,104,104,105,105,98,100,96,112,98,105,96,108,106,117,115,98,117,111,108,112,101,106,102,104,98,102,106,105,99,106,93,110,109,93,99,99,98,99,101,103,104,114,106,105,103,100,101,106,111,104,100,92,96,112,102,105,123,108,106,100,96,117,95,106,106,100,97,109,110,120,102,99,105,97,103,104,101,96,118,107,95,102,133,116,107,107,99,106,112,121,100,111,115,102,113,104,117,109,106,117,104,94,115,104,102,102,108,99,111,83,96,99,119,101,112,100,106,108,95,95,101,116,111,112,96,102,100,109,117,113,117,98,101,106,117,107,98,97,100,103,97,115,113,109,107,103,100,105,119,105,105,105,110,104,106,105,105,105,104,108,130,102,105,104,100,98,105,102,112,102,111,107,97,109,106,98,105,98,111,85,106,117,109,103,113,122,106,103,108,99,101,112,99,104,106,109,113,101,102,86,94,110,114,104,103,98,87,105,97,117,105,99,91,95,91,97,112,123,106,107,100,117,112,100,110,100,111,112,108,103,108,106,109,121,102,108,115,105,99,113,116,104,112,105,106,95,117,88,101,100,108,100,96,109,105,99,117,99,102,94,114,108,108,110,92,103,98,115,89,103,100,94,105,103,102,107,103,115,99,104,103,101,117,99,100,113,104,93,103,89,104,105,106,113,113,112,96,101,105,98,109,108,104,113,114,121,109,97,102,104,94,119,79,109,105,114,110,103,92,112,106,107,105,111,104,101,105,104,74,108,101,111,107,119,108,99,102,97,104,106,107,112,103,97,110,106,106,110,111,108,108,115,106,106,88,113,110,86,122,109,109,105,82,106,103,103,123,98,109,96,111,106,104,138,112,108,103,90,108,94,122,120,109,98,107,94,103,95,111,106,104,88,93,99,108,118,102,104,98,101,92,108,102,104,95,96,117,101,110,117,103,113,95,104,102,100,104,101,93,98,101,106,114,106,98,107,102,100,96,109,126,102,98,104,105,106,102,101,108,109,110,105,116,115,110,86,101,112,105,106,98,104,114,117,94,101,102,92,87,105,101,106,108,92,105,113,99,99,81,107,94,89,109,106,121,102,93,113, +613.99164,109,107,109,102,100,99,81,93,86,115,97,113,96,107,105,91,100,120,109,94,112,99,89,100,105,103,102,120,106,95,100,90,106,101,104,94,116,87,100,119,106,106,75,108,95,102,101,99,91,104,103,93,98,97,112,84,99,103,100,98,106,100,100,98,103,101,113,99,102,90,96,110,109,111,99,120,105,96,102,102,104,109,109,121,106,73,92,98,109,94,111,106,98,118,106,105,98,102,104,98,102,100,108,98,99,95,95,99,95,116,111,102,103,113,103,92,105,103,106,102,100,96,112,115,114,111,111,116,104,106,103,92,108,115,109,104,97,74,100,103,105,99,94,113,108,101,114,107,119,101,100,105,105,107,106,100,107,78,109,110,106,101,103,113,101,108,99,97,92,98,90,104,98,108,121,111,106,92,100,116,104,104,95,107,99,95,106,91,103,99,110,97,107,101,94,103,106,109,104,97,110,99,100,110,100,113,116,109,96,105,91,108,109,109,97,97,110,99,96,100,105,68,105,110,100,110,99,116,106,107,116,103,103,112,115,96,105,111,128,106,101,103,107,107,68,108,112,102,105,116,106,106,100,103,120,115,113,120,103,113,101,110,82,103,103,100,105,101,105,97,106,116,103,102,105,102,111,98,112,98,99,116,112,106,99,102,93,101,103,116,105,96,116,105,126,108,102,111,107,112,104,106,107,110,103,110,103,99,111,98,100,108,105,93,105,103,101,100,94,109,108,97,117,107,112,87,95,96,99,83,112,96,99,97,103,118,97,97,104,98,107,98,104,85,107,105,103,106,95,108,108,101,118,99,109,101,109,112,90,70,111,105,117,105,105,95,109,103,103,102,104,102,120,99,105,100,115,98,96,102,91,102,101,85,100,93,100,102,107,112,124,118,99,106,99,105,99,98,100,120,110,103,112,104,108,110,89,103,100,92,96,107,98,98,97,95,104,110,117,110,103,105,108,86,96,100,94,90,113,110,95,102,99,101,106,106,100,108,111,111,109,91,106,107,95,104,104,110,91,99,109,112,109,102,111,95,109,116,123,99,107,108,117,112,116,106,106,93,102,106,108,107,102,109,97,95,98,112,110,110,82,109,91,109,110,97,102,99,103,100,94,106,103,102,101,114,99,105,101,106,112,126,99,111,109,107,96,104,109,105,107,105,107,103,104,97,101,108,102,101,104,93,116,110,100,100,110,109,110,117,95,105,104,108,94,109,106,98,90,108,108,107,95,110,95,105,84,101,97,107,114,104,106,98,96,92,113,113,107,97,117,100,109,97,112,103,102,105,96,105,98,91,99,113,109,102,107,105,95,85,102,99,97,96,113,107,114,107,103,105,104,106,104,103,112,105,105,103,104,106,81,82,86,103,105,91,99,107,95,106,96,112,124,106,116,101,108,94,112,111,116,107,107,114,108,100,113,96,105,109,101,111,104,101,104,110,118,107,101,102,97,114,98,100,98,102,102,113,107,123,88,110,108,109,106,96,109,106,101,106,101,118,104,107,100,102,111,91,101,108,102,97,115,115,100,115,94,101,113,114,104,102,103,110,101,101,103,103,103,109,112,115,106,106,113,95,104,111,104,91,117,103,106,100,102,101,106,102,113,108,102,97,109,102,102,101,105,104,101,96,110,99,97,108,105,103,107,100,99,107,111,95,103,106,110,102,110,108,98,96,121,109,98,104,99,101,103,103,92,107,107,99,98,92,110,102,78,85,110,97,95,105,95,113,109,98,103,99,102,100,119,100,112,103,99,110,117,93,105,95,105,97,110,96,112,104,104,111,80,103,101,103,107,108,107,100,110,92,95,109,97,108,113,105,111,115,104,112,108,106,109,91,104,122,102,98,100,107,97,109,98,104,106,113,100,107,108,98,106,95,109,109,95,98,95,103,111,101,108,100,106,108,98,98,101,119,87,98,100,102,104,107,101,102,113,111,102,99,98,121,107,99,111,93,117,108,105,106,105,109,86,103,99,110,109,101,110,116,99,109,107,102,111,93,112,99,102,106,69,96,110,94,113,128,104,100,109,116,117,104,85,99,124,111,121,103,98,103,107,112,103,99,108,104,95,105,100,108,108,104,104,114,118,103,103,99,108,112,108,99,101,114,119,102,101,104,108,102,108,113,99,95,111,100,98,95,102,97,103,104,109,107,109,115,97,107,106,110,117,101,115,102,105,108,90,101,96,113,98,112,100,110,106,111,88,110,114,99,98,104,105,103,117,104,97,110,99,112,104,104,112,106,102,102,101,97,101,112,126,107,103,99,107,103,104,101,100,110,101,106,104,99,97,112,113,98,107,108,104,87,117,88,99,101,106,105,105,99,99,105,114,115,116,107,102,112,119,106,104,103,112,120,118,115,110,118,105,105,114,129,109,133,126,107,118,106,102,91,117,113,99,114,114,102,99,90,103,106,92,114,93,112,105,106,119,97,110,109,106,108,102,91,105,119,113,110,116,110,107,107,107,100,110,107,115,114,94,109,122,92,114,109,112,108,93,110,108,90,110,125,107,106,104,98,116,103,107,91,109,113,113,113,108,103,91,111,108,83,103,122,106,123,116,101,105,101,101,103,106,99,113,105,101,106,112,94,124,103,110,104,109,115,117,110,118,117,109,107,101,107,102,91,96,98,105,106,113,104,110,95,95,99,96,111,100,110,111,100,98,101,101,103,112,95,103,104,103,99,117,118,105,106,113,110,97,103,97,95,97,103,106,113,105,91,119,110,102,122,104,105,119,99,99,111,98,108,95,95,104,121,102,108,84,106,109,93,105,110,106,117,109,104,101,107,107,104,125,108,110,105,89,95,115,99,109,95,100,105,109,103,113,100,110,109,110,119,103,111,103,111,99,121,105,104,108,106,95,96,96,106,114,109,113,119,112,109,80,112,107,111,106,111,117,115,110,114,105,107,102,109,107,116,103,102,85,98,118,106,106,106,106,104,110,107,106,102,110,118,112,99,119,113,96,104,109,102,96,109,106,106,113,106,101,124,109,101,110,101,111,105,106,110,93,100,110,113,103,107,105,104,111,109,112,107,103,110,99,79,106,96,111,129,108,97,107,107,106,110,108,103,109,96,108,106,116,96,109,104,95,100,108,105,92,110,107,107,114,108,106,103,106,99,113,115,103,104,101,95,99,107,96,109,102,103,111,117,96,105,112,118,111,121,107,102,96,107,106,107,106,107,106,100,109,107,99,99,108,111,105,110,110,99,95,88,117,99,107,97,99,103,108,95,100,124,107,99,104,109,111,95,105,111,107,103,97,110,97,98,100,99,105,101,110,108,104,116,111,104,116,110,111,115,98,96,106,105,103,93,109,93,104,109,87,106,107,120,109,108,93,103,110,133,105,113,107,117,116,96,101,98,116,103,106,103,92,120,103,110,102,101,106,83,101,108,102,103,106,118,105,98,93,110,101,116,104,103,106,109,110,109,96,83,102,106,88,116,103,104,105,107,127,110,112,99,101,106,104,113,106,100,105,103,108,111,117,104,104,113,104,105,109,112,110,89,103,104,106,113,104,111,99,104,108,105,87,108,102,113,98,110,104,95,114,102,103,104,108,91,98,102,91,114,90,75,100,103,113,113,108,107,98,94,112,102,102,101,105,96,120,103,114,104,107,100,103,108,107,113,102,107,112,103,114,121,106,108,111,100,98,112,103,108,102,99,102,106,102,103,110,107,111,98,103,111,107,104,113,112,109,98,104,119,110,108,99,110,96,101,112,107,105,102,101,101,107,113,106,106,112,104,102,113,125,102,113,95,100,97,111,103,98,99,111,110,96,100,113,109,97,100,104,104,102,102,102,109,102,117,98,112,110,113,120,100,99,113,101,104,109,105,94,108,120,100,111,104,105,110,104,102,120,111,102,119,116,95,106,107,104,105,106,107,106,113,119,116,110,105,113,114,105,107,117,98,95,99,111,106,101,104,104,108,99,114,102,100,116,103,79,111,95,105,97,112,123,113,111,104,112,113,107,117,103,95,112,96,107,111,102,108,111,105,116,108,114,121,106,130,113,105,104,113,92,112,67,93,106,106,102,99,117,101,114,96,108,100,116,125,101,106,110,101,117,107,101,102,98,110,108,108,97,120,117,98,106,117,117,101,100,114,99,101,106,109,99,103,107,93,110,111,100,102,104,107,108,102,109,94,120,90,111,103,125,105,111,99,101,109,109,122,111,99,100,103,103,102,116,95,103,105,107,114,103,104,103,103,112,108,101,105,110,103,113,109,98,108,98,110,85,107,99,120,108,108,105,106,96,97,102,105,108,113,105,104,104,115,98,103,101,113,111,107,93,105,108,118,94,96,99,109,103,107,105,98,99,107,118,104,113,119,102,115,119,104,110,111,117,99,111,99,99,116,92,105,104,110,102,107,111,104,105,90,106,110,110,112,99,106,113,106,117,116,108,103,103,98,109,110,110,105,116,114,107,111,111,66,103,108,108,106,100,91,100,108,106,105,102,106,105,105,101,117,96,116,107,99,120,104,109,96,102,99,112,99,113,110,110,107,106,108,110,98,100,99,121,106,102,94,106,107,93,108,121,110,110,122,103,89,102,125,104,104,103,108,102,110,112,105,104,103,107,102,108,101,98,115,114,105,106,111,107,117,112,98,112,100,96,122,122,92,93,105,106,126,100,104,98,101,103,84,113,101,102,101,102,111,105,102,96,107,106,105,92,112,105,80,104,92,93,107,97,100,114,104,99,100,110,100,109,108,117,100,111,102,98,113,119,116,98,100,106,96,105,95,105,101,112,99,105,100,95,110,114,98,99,104,101,103,110,120,116,113,107,106,102,99,103,103,113,100,117,104,109,105,103,111,106,117,101,85,106,95,100,104,95,107,107,112,100,91,106,106,105,100,95,103,104,99,110,123, +614.13269,119,105,95,88,92,129,102,108,125,111,103,110,102,110,117,94,98,81,107,110,113,103,111,110,90,105,114,116,100,102,106,100,104,100,111,99,117,100,97,97,100,113,83,83,105,108,110,113,104,95,109,100,98,82,99,102,109,103,104,98,100,111,97,103,107,104,103,109,109,98,106,96,103,109,95,113,107,105,99,96,110,95,86,92,92,98,111,99,89,98,129,114,102,104,110,109,109,99,96,106,111,107,105,106,110,103,95,108,106,110,94,87,108,104,104,92,110,94,107,97,109,94,110,98,132,101,96,113,80,111,106,105,93,87,105,109,94,100,101,106,97,92,106,111,98,109,117,109,98,100,100,94,107,71,98,113,112,96,93,90,102,107,102,109,112,95,108,98,110,96,98,102,95,94,90,108,104,92,110,100,94,98,116,112,105,103,104,101,96,108,98,119,104,115,108,112,100,129,104,106,97,98,111,103,104,96,101,91,104,107,107,116,102,107,111,103,105,112,104,103,104,94,95,102,100,106,106,113,111,106,88,110,98,108,98,104,115,97,108,116,110,95,117,106,97,111,109,113,115,87,94,100,99,106,110,107,99,108,114,107,90,110,101,100,97,99,115,99,109,97,102,117,117,104,108,100,97,102,103,112,102,105,117,113,118,108,98,89,112,98,104,109,106,101,96,104,90,109,106,103,105,99,104,113,99,109,101,108,96,97,90,140,114,112,100,90,105,107,107,100,97,99,96,77,99,90,92,105,114,108,83,107,109,109,110,114,108,108,108,100,102,96,102,100,100,115,113,105,109,103,111,103,114,100,120,90,110,101,101,112,104,105,128,108,101,96,102,117,96,120,110,105,104,111,114,109,104,100,110,107,110,94,99,107,101,112,111,99,101,101,105,92,99,99,108,102,69,106,132,106,105,106,99,84,99,104,108,118,114,102,96,99,107,98,108,110,99,106,105,103,102,101,101,96,98,100,90,104,99,110,91,110,117,118,104,94,91,110,99,112,104,112,96,103,114,90,98,107,101,99,94,99,108,117,109,103,101,96,113,114,103,102,99,105,120,119,101,106,102,97,102,101,108,104,107,110,94,108,104,100,91,103,88,98,88,97,107,111,105,93,104,113,103,95,92,104,91,104,112,113,112,104,103,99,128,118,102,105,106,110,108,126,104,105,110,100,109,104,98,104,133,97,114,102,96,112,113,107,99,102,111,103,101,103,102,102,99,102,82,102,106,121,103,96,109,99,95,86,94,100,108,119,121,103,99,105,107,110,80,106,108,107,112,113,99,99,122,105,105,100,103,106,97,120,94,102,116,102,108,116,97,105,93,95,107,106,108,118,110,108,105,109,106,95,113,98,102,105,104,100,109,120,100,110,107,99,98,101,103,96,106,99,99,100,108,109,107,96,105,133,111,109,104,118,103,109,100,110,102,108,108,99,103,116,105,117,96,110,112,100,111,114,86,110,90,94,121,90,123,99,95,95,111,104,95,103,100,107,111,109,102,117,117,101,105,106,82,109,104,99,108,90,118,114,96,118,97,94,109,99,108,97,130,110,109,103,110,110,108,100,108,109,105,114,102,97,96,110,113,103,113,94,95,111,95,105,101,96,101,99,116,103,100,99,113,94,93,103,96,103,97,101,108,101,109,100,106,104,116,103,103,105,102,99,110,114,97,109,102,99,96,107,104,92,100,104,96,105,98,103,118,93,108,107,104,108,104,104,109,102,106,111,110,93,96,78,96,115,97,84,109,101,99,111,103,105,104,113,106,94,111,106,115,109,115,114,120,112,103,117,104,110,101,102,103,107,112,111,110,102,101,95,99,104,113,118,113,103,110,108,117,123,107,100,103,98,119,110,105,109,98,115,118,92,113,109,114,109,99,96,72,104,102,95,93,105,112,99,109,110,106,109,111,77,114,99,92,101,93,101,96,101,103,117,105,101,122,113,104,122,104,102,100,108,97,96,92,100,105,115,98,110,96,105,111,105,99,104,110,107,112,103,109,98,97,95,102,112,98,113,118,104,99,121,104,109,109,101,109,103,107,122,111,98,93,113,107,116,95,95,98,107,113,105,111,104,107,104,112,97,112,105,103,109,101,109,105,93,108,103,89,100,100,100,99,112,115,105,85,96,113,127,106,119,104,101,111,105,104,101,104,105,109,96,106,103,113,100,93,88,96,105,98,114,103,107,113,103,103,121,108,92,117,103,101,116,112,102,103,94,100,96,116,114,109,102,112,109,121,98,111,105,91,91,89,131,99,101,105,105,111,103,99,107,105,104,114,103,100,100,95,99,117,108,95,110,119,100,113,107,108,96,79,116,108,113,99,101,130,112,113,98,96,106,108,102,109,111,99,118,120,119,110,114,116,136,121,121,129,108,120,111,125,115,117,104,109,100,118,117,92,100,101,106,106,98,118,87,103,110,101,107,114,107,105,97,114,103,110,91,95,113,104,105,112,106,110,98,117,110,99,102,109,95,108,105,87,94,107,111,99,102,101,108,121,116,99,108,111,107,95,102,95,116,115,101,106,99,88,91,105,105,109,100,116,109,127,112,114,104,114,109,107,91,108,114,107,101,100,96,97,110,106,101,104,102,94,103,113,101,116,118,111,95,110,102,106,113,106,107,110,98,99,98,100,99,76,96,106,106,107,113,102,95,130,92,109,102,107,106,113,106,106,98,107,103,116,107,104,113,90,113,112,111,106,109,110,103,104,112,115,110,94,117,114,121,107,109,116,108,111,95,109,103,87,70,105,106,90,106,106,110,101,110,94,107,95,65,110,103,106,97,112,110,90,103,110,111,107,103,110,108,109,105,101,110,117,103,115,95,99,94,114,106,115,105,96,115,116,129,113,102,113,106,121,108,102,113,99,101,103,105,104,114,110,91,102,116,109,105,102,100,117,110,115,103,103,114,101,104,97,100,105,89,109,107,109,109,114,113,97,107,98,115,102,98,126,98,100,110,106,107,103,103,110,117,117,113,108,106,114,105,95,116,110,114,110,110,105,102,111,101,101,105,115,115,96,127,105,113,108,109,114,106,105,96,117,105,117,122,99,107,105,100,103,116,100,107,98,115,112,107,110,108,115,103,111,105,107,96,113,101,110,101,111,106,130,103,106,101,106,99,98,111,104,106,104,107,101,102,100,104,104,113,116,119,108,110,103,105,108,96,107,110,109,105,112,116,110,107,107,74,98,101,109,111,97,108,98,104,109,107,95,99,97,78,103,99,105,117,109,105,104,104,111,106,96,105,93,111,104,87,106,107,97,105,81,108,99,117,112,100,87,101,99,96,117,86,99,107,108,112,115,116,108,106,98,103,110,96,101,103,101,92,100,96,109,105,116,107,102,104,101,102,115,109,72,106,108,96,100,95,101,106,97,105,103,119,119,110,93,109,104,99,112,106,116,97,112,91,107,101,112,109,99,104,103,109,69,105,113,99,98,110,108,103,104,99,100,98,106,99,99,109,116,104,116,98,109,108,85,111,98,108,109,92,110,107,100,106,107,105,95,119,99,109,103,107,105,105,86,103,109,118,106,102,109,100,103,111,108,103,111,104,115,118,84,97,76,106,104,106,90,99,99,99,122,112,128,105,94,108,107,88,117,91,112,108,105,114,100,107,109,83,111,103,106,116,91,107,107,97,113,103,109,112,104,113,105,118,121,112,101,104,106,103,107,105,112,105,106,108,108,106,118,102,118,103,102,95,116,99,113,101,111,109,104,106,99,102,125,104,112,102,96,117,102,112,110,109,105,98,114,112,98,99,100,117,100,109,90,111,97,105,101,103,108,107,106,100,101,103,113,111,105,104,100,100,100,110,104,103,105,113,90,112,104,103,108,108,112,104,100,108,108,104,103,109,100,99,90,103,90,90,106,109,100,96,110,112,113,98,102,101,99,110,100,96,98,113,101,95,97,99,107,113,109,107,137,105,97,111,102,106,103,114,106,109,94,101,106,117,110,102,109,99,105,96,91,117,103,105,104,108,111,96,101,104,104,105,117,105,117,106,107,96,100,104,113,104,109,106,111,113,101,104,105,117,117,111,109,97,108,97,103,97,105,98,105,129,113,110,102,111,106,102,97,110,109,105,107,104,108,113,112,106,107,103,95,99,103,103,107,115,117,113,103,94,105,93,104,94,103,96,99,118,102,108,104,103,99,102,107,84,112,109,106,89,104,108,109,109,101,104,115,95,106,88,105,99,103,93,95,104,103,94,102,103,104,104,108,106,105,116,91,111,99,111,104,113,106,110,117,101,113,100,109,100,107,98,92,109,108,95,108,113,98,111,87,102,114,116,108,117,102,127,99,110,99,108,113,102,120,91,109,103,106,105,98,108,96,104,103,109,109,101,105,117,123,115,134,102,110,110,105,103,100,103,109,105,107,98,115,115,107,117,101,98,84,100,117,101,95,113,98,104,104,92,109,102,105,103,113,119,111,99,97,102,91,112,106,100,104,97,98,98,102,95,102,110,104,115,92,102,103,128,125,113,104,104,105,99,105,99,114,109,104,108,104,105,105,106,110,111,106,113,106,110,118,115,103,104,105,102,95,106,90,96,102,96,101,98,100,122,101,106,108,108,107,112,117,112,105,109,96,112,94,105,110,103,110,105,91,100,110,113,105,113,117,113,136,98,118,119,127,102,95,109,104,99,87,105,113,114,103,92,113,80,105,99,104,108,117,105,107,109,103,102,99,105,113,71,115,112,109,102,109,94,106,100,110,90,103,107,108,111,97,115,91,102,97,112,109,115,108,95,117,96,107,106,110,102,106,101,116,106,110,107,102,117,100,95,99,123,84,106,99,105,91,110,102,91,95,103,113,98,107,103,99,101,100,105,122,108,108,105,92,110,106,96,92,109,93,90,107,107,108,101,90,103, +614.2738,103,109,87,106,109,93,108,101,93,113,87,105,89,104,100,104,103,107,108,114,110,112,111,102,101,104,102,103,95,107,103,122,98,100,126,113,99,92,102,100,98,105,103,110,96,114,127,93,79,107,93,107,94,105,110,99,109,96,117,78,110,86,90,95,105,117,116,104,115,94,117,114,116,112,101,113,88,118,95,106,91,81,100,105,102,105,99,117,99,106,103,106,102,99,106,116,99,95,113,117,101,102,110,102,95,88,108,112,112,117,112,105,108,100,99,111,100,115,93,91,94,89,95,101,91,104,104,90,129,113,100,106,95,104,112,110,111,106,126,100,112,99,86,88,101,116,111,92,117,113,109,101,104,101,110,102,112,110,113,90,109,96,115,115,104,110,100,97,103,102,98,97,107,105,120,104,98,103,103,107,114,109,103,111,108,105,94,97,107,96,102,100,92,104,98,116,114,75,99,100,105,108,98,113,103,100,110,108,115,107,108,99,117,111,108,103,93,100,97,114,109,103,113,110,97,106,107,111,106,108,105,108,83,117,107,125,97,108,99,110,105,96,113,100,98,103,106,95,101,103,94,102,106,115,103,109,108,110,96,117,93,106,103,128,93,102,104,104,96,99,118,98,108,98,113,102,104,114,110,79,107,90,98,111,87,102,92,112,109,111,108,74,103,108,110,113,114,104,100,111,106,105,112,117,103,121,121,104,100,115,99,107,100,100,100,112,92,98,107,112,98,107,124,112,106,99,116,74,105,103,106,109,100,103,111,99,112,100,111,118,100,110,101,96,107,111,100,98,113,102,110,120,114,104,104,120,105,118,110,106,116,111,116,97,103,96,113,119,100,106,111,99,95,105,105,106,96,98,103,113,108,110,91,99,117,105,110,101,100,94,98,90,101,105,103,96,84,110,99,111,91,112,102,103,106,114,100,108,111,113,109,113,109,102,100,95,106,106,117,101,111,103,90,102,97,117,98,98,107,98,116,102,108,105,102,94,110,95,109,100,116,104,106,96,99,109,107,107,116,105,105,102,104,95,100,109,103,99,120,91,90,97,96,110,105,107,115,108,106,101,118,108,102,113,108,92,98,113,105,102,107,85,107,100,110,127,101,105,101,94,106,113,109,101,104,114,108,113,116,106,119,103,104,113,97,103,109,114,116,100,116,116,111,100,103,111,115,117,98,105,106,107,95,102,103,99,113,103,95,109,121,99,102,106,110,105,117,110,106,113,119,81,113,102,101,107,114,97,104,111,106,102,99,99,98,106,97,103,108,108,97,90,100,100,114,105,103,100,106,109,91,99,112,100,105,106,100,101,112,100,99,100,107,102,100,100,125,116,100,81,106,99,99,116,106,109,113,108,109,110,107,117,109,100,104,113,99,105,104,86,101,98,106,98,111,108,94,98,90,108,102,120,116,98,118,118,97,110,104,100,100,109,102,105,94,109,94,100,112,102,104,102,119,99,118,106,101,113,101,105,81,103,110,112,93,102,111,114,101,103,108,113,102,111,102,117,108,109,101,118,110,112,99,107,91,99,97,105,105,105,111,107,100,102,99,103,108,115,108,109,115,116,99,110,103,99,95,112,106,89,101,101,107,98,107,116,99,118,116,98,110,113,97,113,111,100,99,98,105,90,113,111,112,110,104,105,112,103,99,112,80,112,103,105,102,103,93,106,102,102,105,108,110,111,95,109,113,104,91,104,116,109,117,106,118,106,106,104,110,109,100,100,95,104,113,102,104,105,103,93,101,107,111,100,100,99,108,107,121,112,112,113,111,110,82,99,81,108,114,97,121,115,103,115,104,106,98,106,112,112,100,100,100,109,112,96,118,94,118,106,87,96,110,106,115,106,102,91,103,103,98,110,103,107,102,109,117,111,97,116,96,101,100,97,93,108,103,99,106,95,107,111,106,109,95,105,104,95,98,89,105,97,116,111,103,93,110,108,94,117,100,108,111,105,107,101,105,86,128,107,101,104,100,109,96,108,109,99,115,104,99,103,104,108,90,95,106,102,104,102,98,106,112,107,105,99,116,102,103,118,107,107,106,116,104,101,93,104,109,94,107,109,106,110,97,92,106,105,109,106,101,95,121,72,97,105,110,111,117,113,112,114,124,114,107,114,106,115,102,112,100,123,99,114,106,125,115,117,107,110,121,108,99,103,113,104,107,99,97,105,117,105,112,107,105,103,105,104,103,103,105,109,110,119,102,97,117,99,95,113,89,95,84,105,105,103,100,78,106,95,91,95,117,99,103,107,99,90,106,111,116,109,105,108,118,109,111,99,105,106,94,100,111,91,105,110,115,101,110,116,92,125,108,100,106,111,109,109,120,104,102,111,117,112,106,109,96,115,118,120,117,131,98,119,115,123,123,125,109,117,120,120,115,120,119,114,103,107,112,112,99,125,95,106,104,106,96,101,106,106,103,102,104,97,101,116,106,112,106,94,95,99,84,110,112,103,91,98,101,101,105,105,115,93,98,104,95,102,112,94,100,89,106,84,106,94,98,101,117,94,116,103,90,103,95,100,104,102,90,108,121,113,102,104,95,112,96,99,105,104,120,98,103,119,108,104,103,90,98,89,93,99,96,103,108,106,108,104,99,99,104,105,106,102,99,98,108,111,108,120,110,92,98,98,108,106,101,106,103,108,104,116,105,109,106,113,112,110,117,112,115,105,110,81,115,106,105,92,102,108,70,94,104,103,95,119,104,96,107,105,105,98,113,95,102,106,114,96,98,97,97,107,112,94,98,121,103,122,106,101,110,102,112,102,106,98,92,110,107,109,93,102,108,112,119,95,107,104,91,109,107,99,112,96,112,99,106,109,105,86,109,106,98,105,102,89,97,112,109,109,100,93,100,118,95,98,100,91,106,107,99,105,118,109,142,112,108,107,108,110,107,112,113,101,106,107,105,92,97,105,105,103,97,98,95,98,96,101,106,107,101,102,98,104,118,98,111,112,110,104,101,106,101,87,111,97,105,98,114,102,104,99,107,100,103,104,99,107,78,100,106,99,99,102,113,105,111,104,101,106,105,113,104,97,107,102,103,103,99,102,109,106,106,107,97,97,105,106,103,103,124,109,107,121,106,102,113,111,100,109,102,100,101,111,108,101,77,114,110,93,99,96,101,102,104,98,103,123,108,109,109,101,99,108,105,113,101,112,110,111,117,105,97,98,106,88,110,101,106,108,103,125,105,105,107,99,99,109,105,98,121,105,107,106,105,101,116,112,103,97,99,104,106,115,112,108,102,117,101,112,108,109,128,88,111,114,104,99,106,107,104,93,102,103,113,103,120,94,99,95,90,109,98,109,103,108,108,88,115,122,94,106,99,106,109,103,105,106,99,100,99,106,100,105,104,102,94,101,96,114,111,104,103,97,116,99,112,106,106,108,110,96,100,94,102,101,105,103,108,97,95,100,100,108,102,100,105,101,95,109,106,107,105,102,102,107,82,98,100,96,107,103,111,108,100,99,102,97,103,91,104,115,100,124,105,102,106,105,99,101,93,107,115,107,109,118,99,105,110,100,88,98,125,109,121,110,102,123,112,115,111,104,99,102,99,117,106,106,103,105,104,98,106,102,102,115,108,110,106,112,106,94,94,94,105,97,116,113,120,116,104,98,101,103,104,103,85,100,97,105,106,101,96,105,99,95,109,83,106,92,112,96,109,104,102,107,109,100,106,101,108,101,113,105,98,107,118,114,104,95,109,109,111,99,99,100,95,96,100,112,122,88,105,88,101,113,102,102,110,83,101,93,109,102,106,97,101,107,105,120,94,111,106,95,98,91,113,135,103,109,110,102,103,91,99,97,91,98,109,103,106,97,99,102,100,96,111,113,100,96,110,99,99,95,96,103,113,106,95,97,106,108,101,98,103,100,106,101,98,104,109,116,94,105,98,100,98,105,121,100,108,113,101,95,103,100,98,96,100,106,102,99,103,107,113,117,104,107,106,105,111,104,112,100,106,108,120,94,99,117,109,101,100,110,102,93,120,105,106,95,108,105,102,96,103,105,99,109,116,104,122,101,105,99,102,96,106,109,117,103,117,104,106,101,98,101,114,101,112,103,115,104,108,111,107,118,102,111,111,103,99,88,110,109,118,102,105,99,94,103,104,103,103,100,99,85,104,114,103,109,121,106,106,85,94,106,115,91,104,93,105,100,102,109,102,107,104,105,105,99,104,104,109,101,116,102,99,103,96,109,101,98,101,111,108,100,114,110,104,93,102,113,128,115,98,106,103,114,96,92,103,100,91,107,113,94,97,115,94,105,110,97,111,95,99,102,106,104,108,112,121,94,111,100,121,104,98,97,115,98,100,82,108,99,111,105,107,103,105,82,109,109,102,110,107,105,105,100,90,97,101,108,108,108,106,109,94,109,116,98,105,94,98,100,99,106,111,91,98,103,102,103,95,81,111,98,92,96,102,105,95,110,74,104,104,94,107,106,99,106,109,103,105,99,96,112,98,107,100,107,107,90,93,107,82,81,95,102,112,95,94,103,95,107,101,111,110,109,78,95,96,106,101,91,102,101,106,98,99,98,107,102,120,103,107,112,108,110,98,90,110,91,99,107,103,98,102,103,95,105,108,102,109,92,116,109,102,105,106,109,102,109,115,102,107,95,110,107,100,71,100,104,103,108,95,102,121,100,113,108,97,93,114,74,106,113,112,102,113,85,110,107,104,95,101,89,99,78,99,112,92,102,103,98,115,105,106,93,104,107,104,110,106,103,97,98,98,99,95,105,105,125,105,99,97,99,95,107,105,90,103,113,95,107,66,105,96,111,79,111,106,91,96,99,95,93,93,119,101,98,94,113,108,104,92,101,86,109,108,91,121,107,94,106,96,109,93,103,117,108,117,106,89,95,104,100,91,100,126,113, +614.41486,96,103,109,113,97,75,95,107,97,105,101,91,89,101,109,116,97,100,101,119,99,106,119,94,114,113,105,106,113,107,107,115,111,106,113,102,99,98,107,109,101,105,98,101,103,104,110,106,97,99,98,97,94,109,109,106,103,106,117,95,99,121,99,94,102,103,102,105,122,116,101,109,108,121,125,103,97,106,96,95,80,95,98,111,110,97,108,112,107,132,90,104,109,104,107,99,96,106,97,102,101,113,91,103,108,104,102,101,109,102,105,95,91,110,85,102,96,100,105,107,110,112,92,100,98,109,94,103,120,107,103,88,109,102,96,104,99,102,99,96,93,115,102,106,93,108,116,104,108,87,102,112,100,104,93,100,106,105,94,97,99,99,130,100,99,110,113,83,96,100,68,113,93,101,110,121,96,99,98,113,108,99,110,88,105,105,96,101,121,103,112,106,115,100,96,102,109,103,109,96,108,76,100,100,100,100,109,109,108,117,107,114,95,107,98,103,112,96,87,117,99,103,83,108,109,107,112,112,114,103,102,100,117,108,101,108,99,96,111,101,105,113,102,104,105,102,108,92,90,107,110,102,95,102,99,103,112,102,87,103,97,115,104,106,112,109,104,104,108,98,112,112,106,102,101,110,93,100,112,101,99,98,94,110,107,109,97,110,114,105,99,110,101,109,110,105,107,102,116,102,99,99,99,102,94,104,105,112,101,97,99,101,100,86,109,102,101,119,105,100,98,104,108,100,99,94,106,98,111,101,116,94,99,112,101,95,98,109,89,106,118,110,101,102,105,99,107,113,117,108,112,96,99,112,110,107,99,109,100,109,106,101,95,102,118,94,107,118,105,117,112,106,107,102,103,114,107,105,100,95,99,111,111,109,116,108,108,108,105,98,114,99,101,106,93,100,103,104,99,111,102,110,112,106,100,96,109,94,109,104,115,87,106,108,104,89,98,106,104,105,98,100,109,107,104,107,95,102,104,110,109,115,94,106,116,112,88,100,111,101,122,106,101,109,100,100,120,118,101,101,99,102,106,102,92,93,93,109,107,99,95,103,112,110,110,100,107,102,107,101,107,104,100,97,103,103,99,113,90,92,102,102,110,105,109,99,107,100,100,104,99,101,105,114,82,108,105,109,97,104,102,108,110,112,111,103,100,94,119,116,113,102,104,98,105,103,104,113,107,109,100,100,100,103,98,94,100,109,93,113,100,105,91,97,100,109,106,96,126,105,108,111,91,117,104,90,104,106,98,108,106,99,109,106,88,86,103,110,117,106,103,64,102,99,95,104,106,127,109,74,120,108,108,113,106,104,99,103,98,108,102,100,104,97,131,95,78,103,120,100,107,104,107,104,108,120,117,105,107,114,111,106,108,96,98,108,86,113,94,102,108,86,107,106,107,102,100,110,106,94,100,107,106,97,112,107,102,99,117,115,103,95,110,111,100,103,105,110,103,104,92,111,85,100,104,106,93,108,112,104,100,109,113,102,101,93,105,120,111,103,105,100,104,105,87,110,100,107,108,119,100,94,114,103,95,116,105,88,98,97,100,109,110,95,95,100,101,105,106,111,103,103,102,113,102,105,111,105,100,99,110,94,105,101,113,106,120,104,100,103,113,106,113,101,99,99,97,113,103,108,104,102,105,121,97,94,100,105,112,109,105,102,109,89,103,99,109,112,111,104,107,91,112,103,100,113,94,102,92,104,95,111,110,97,97,104,97,97,72,96,99,109,98,95,112,101,115,96,109,96,111,110,111,107,101,103,105,95,110,107,109,105,99,109,117,108,100,110,112,116,100,107,98,107,112,109,106,110,105,103,102,100,102,105,110,114,117,100,115,88,112,108,112,101,107,106,108,108,108,108,99,104,101,102,96,107,118,97,113,103,98,102,100,103,104,106,99,103,100,101,106,102,102,96,110,102,105,105,106,87,113,95,105,87,100,111,107,117,109,98,99,97,113,97,110,108,112,97,111,114,103,114,112,106,99,104,113,108,108,103,110,107,105,109,103,101,91,113,101,107,115,114,99,88,104,98,105,104,104,101,101,116,107,109,113,133,99,103,108,111,100,121,107,110,107,110,101,99,110,105,102,112,109,97,105,99,109,115,108,107,116,110,95,109,95,78,103,101,102,103,98,117,109,103,100,97,108,94,99,104,100,94,108,113,113,105,99,99,96,104,90,111,113,102,91,99,106,101,99,99,104,98,103,98,100,114,109,103,106,97,111,99,92,100,115,99,113,107,113,101,104,109,101,95,95,112,105,111,104,102,108,110,104,103,113,113,95,86,101,101,98,107,103,105,108,103,94,105,96,117,100,100,114,96,103,104,107,100,107,111,88,107,120,108,103,108,75,126,112,105,122,117,97,119,123,128,119,123,105,108,133,125,123,104,123,113,118,99,108,106,95,99,103,101,103,107,97,109,102,97,106,105,116,108,108,101,110,107,115,108,105,104,101,105,104,100,118,98,114,106,108,95,103,103,87,118,100,106,109,102,91,97,101,103,112,99,98,107,94,111,100,113,102,101,103,106,94,103,107,116,99,93,107,102,105,110,91,110,111,109,94,105,101,100,107,106,95,102,102,94,103,90,100,110,97,88,105,105,104,108,112,106,101,99,111,95,103,97,102,115,97,86,129,109,111,108,108,108,116,103,102,125,102,94,99,97,103,105,100,105,110,84,100,108,100,96,119,101,103,87,111,101,104,109,106,102,101,103,101,108,113,100,111,95,102,113,103,113,95,119,124,114,95,105,116,93,105,103,99,102,96,100,123,95,113,116,94,104,102,111,109,105,100,104,108,113,109,65,98,115,106,112,116,100,109,93,112,110,105,93,110,104,107,99,94,96,103,108,99,117,105,93,119,103,116,96,109,108,98,107,106,104,120,104,117,92,110,94,102,116,112,105,105,95,108,116,92,108,100,81,103,101,102,95,84,100,112,109,116,108,113,100,113,99,110,101,113,105,103,116,79,120,100,106,100,108,105,110,113,104,113,106,100,96,114,100,120,99,98,95,113,99,100,105,102,103,125,101,92,104,123,99,89,91,107,108,105,102,99,94,92,116,105,99,103,100,102,102,107,102,101,109,116,101,93,99,100,103,112,97,112,104,110,103,121,99,103,116,109,109,105,100,104,105,112,83,105,104,101,115,95,96,96,109,112,91,107,104,109,99,111,94,107,111,116,93,110,104,103,111,107,115,95,109,105,107,111,124,112,107,104,128,101,100,109,109,103,127,109,104,97,104,103,100,95,98,108,108,98,110,95,95,98,111,106,121,114,96,106,95,101,98,105,109,101,104,129,100,111,115,104,101,106,104,108,106,102,106,108,94,103,100,102,93,109,96,106,103,115,98,98,109,107,107,116,99,103,99,107,101,113,96,101,107,104,113,114,120,111,101,98,107,106,108,106,111,113,102,125,116,104,103,101,105,96,112,83,98,109,109,111,104,106,110,99,101,110,93,104,110,102,104,106,101,109,108,117,113,117,107,107,102,100,110,102,99,114,99,112,103,110,99,108,102,109,100,95,104,94,103,100,110,92,109,100,109,100,108,103,109,107,79,102,110,102,108,103,101,113,103,104,96,102,99,108,99,113,88,106,107,110,113,102,113,99,100,105,95,113,104,111,106,109,102,101,124,112,124,120,96,114,102,104,118,102,112,108,104,98,90,101,99,99,104,97,68,92,110,95,108,100,108,102,117,94,116,109,120,97,108,108,101,98,97,101,101,111,94,106,87,111,96,112,102,107,111,117,105,99,101,106,88,106,123,97,102,99,105,104,91,99,102,100,81,107,105,113,112,106,103,112,109,106,122,95,102,96,99,96,103,105,106,100,117,93,95,124,113,110,102,115,95,106,118,101,107,104,102,95,108,100,95,98,100,103,95,88,97,97,102,107,102,108,88,100,104,105,109,94,91,111,99,99,96,104,105,95,101,105,117,101,105,107,109,103,113,111,112,100,90,106,111,111,110,99,85,115,108,98,104,109,117,104,105,103,99,106,117,87,108,107,115,106,95,102,107,113,101,99,93,101,113,107,107,119,104,110,108,98,113,110,99,101,100,116,99,109,106,98,99,108,124,107,105,92,108,84,109,110,115,96,119,80,93,101,116,93,103,107,105,95,101,103,111,63,101,99,111,117,96,117,99,104,101,103,109,107,113,86,106,111,117,94,95,98,109,101,103,111,107,106,117,114,108,114,96,103,110,113,93,108,104,108,97,99,105,86,102,106,100,106,85,102,95,120,108,101,100,100,102,108,75,112,100,103,106,123,95,100,113,101,89,93,117,109,101,103,100,99,120,108,102,111,114,107,97,113,105,115,98,107,107,107,100,101,97,114,77,103,114,99,105,97,107,108,97,114,112,106,99,108,102,101,100,105,100,103,114,104,97,103,100,80,99,94,116,100,99,120,105,118,109,90,127,109,112,101,93,83,88,108,98,98,98,94,91,99,99,107,105,104,106,101,102,109,102,103,106,107,97,101,99,96,101,110,104,124,102,113,103,96,83,95,108,108,105,120,100,109,109,113,106,109,106,102,101,100,110,111,113,113,92,103,91,104,88,117,107,106,99,105,94,105,91,104,104,102,94,85,95,109,109,113,104,94,110,87,108,106,113,102,102,104,109,96,102,110,105,98,108,106,73,102,98,88,121,102,107,118,102,102,106,103,106,103,109,115,103,100,118,106,104,103,94,99,104,106,103,93,107,88,107,87,96,106,115,108,98,104,102,112,94,101,110,104,105,117,105,105,109,92,99,107,99,113,102,102,105,96,93,105,106,96,106,93,106,96,108,95,92,113,102,101,104,107,103,65,107,113,98,89,104,95,100,93,103,117,94,112,90,92,92,114,106,116,110,96,104,100,82,101,106,102,91,117,103,110,115,87,94, +614.55597,100,108,109,96,96,106,108,99,105,100,97,87,97,107,118,89,97,97,96,96,111,106,91,96,85,94,100,109,118,108,91,118,107,112,100,103,106,91,104,100,100,102,96,96,113,107,108,122,93,111,94,81,112,102,98,109,96,93,118,99,101,99,109,93,109,121,104,106,102,89,104,111,110,102,91,101,87,93,103,105,111,100,92,115,101,104,97,94,106,83,89,107,102,105,117,99,104,97,94,96,96,111,85,109,89,99,100,102,106,100,107,97,101,109,115,106,92,100,103,94,90,117,107,101,115,104,95,104,105,78,111,101,98,98,117,105,97,103,101,96,94,113,95,104,113,100,108,90,96,106,102,91,97,86,70,104,106,106,99,103,105,107,112,110,113,99,93,105,104,98,109,90,100,106,110,100,101,96,105,135,110,106,99,110,96,95,97,94,112,106,89,84,104,109,113,92,94,98,91,120,94,113,109,73,95,104,120,107,104,114,106,114,108,109,99,109,106,113,101,91,114,105,100,100,90,95,113,105,108,109,96,96,105,100,100,92,102,99,111,93,100,98,112,120,102,95,103,107,93,113,91,102,109,107,115,104,109,97,100,97,104,104,99,112,80,102,104,105,109,100,99,104,102,81,104,109,103,115,108,110,88,103,100,101,100,116,101,99,106,104,113,111,106,105,93,104,103,105,113,114,102,96,99,108,108,100,108,113,102,113,92,94,104,102,94,103,106,108,104,102,103,97,103,107,102,107,103,109,106,109,107,104,115,102,107,99,108,91,99,104,108,93,104,93,99,99,106,108,106,101,90,100,100,118,105,98,111,110,102,99,108,109,90,106,100,103,113,104,99,102,111,104,123,105,89,101,100,106,91,96,107,112,104,91,87,83,93,113,103,103,112,77,98,96,107,99,102,99,90,113,97,96,105,101,118,106,113,111,121,93,93,106,104,112,106,95,115,100,105,104,115,102,99,101,101,90,103,90,97,103,105,102,100,104,97,113,92,103,108,94,109,103,98,111,102,104,91,97,105,95,105,101,102,100,102,103,105,103,113,111,106,106,96,105,119,103,96,101,104,104,102,116,111,104,104,108,100,114,108,108,101,104,111,103,92,98,111,103,108,101,93,118,112,96,104,103,107,103,106,99,114,110,108,92,101,109,96,96,111,103,104,93,108,100,113,113,104,98,103,66,120,101,103,113,105,97,105,107,99,102,98,97,117,113,102,110,98,116,98,110,103,104,101,110,118,102,107,114,85,112,107,117,100,105,104,108,102,96,96,97,87,101,102,100,100,95,106,102,102,101,100,97,111,96,98,101,109,109,104,115,116,98,102,124,100,104,105,107,97,100,108,111,100,100,111,103,104,102,112,100,102,90,98,101,98,102,98,95,97,99,109,108,107,88,104,110,97,100,102,102,97,113,111,98,111,107,97,100,99,92,110,107,92,108,85,100,111,108,96,99,102,107,95,109,95,94,104,91,102,112,96,112,105,110,105,107,110,111,107,94,101,110,104,106,98,100,102,73,96,92,102,113,108,95,103,101,103,91,98,92,103,98,100,104,96,104,108,97,111,113,101,109,82,84,81,98,107,97,97,95,112,91,104,105,106,96,100,108,90,103,103,107,104,109,93,114,103,95,104,101,105,92,116,120,103,102,100,109,93,108,108,96,113,103,107,106,95,80,109,100,110,96,109,108,97,107,102,106,99,96,90,97,105,123,101,112,105,101,107,99,96,102,96,117,94,94,89,116,100,89,90,98,104,110,100,107,101,104,90,100,90,109,105,105,121,107,101,97,107,103,100,101,94,100,104,116,96,90,117,104,99,101,90,93,101,107,114,110,98,106,113,103,107,114,106,94,129,101,114,100,110,104,96,105,98,106,100,104,114,99,101,110,121,97,119,113,103,91,103,92,109,100,104,113,107,110,98,97,98,112,108,101,102,105,105,107,100,97,106,101,96,102,105,103,104,109,107,106,105,112,87,108,101,96,87,109,113,107,104,106,100,115,101,96,102,102,106,111,113,98,105,98,114,108,105,95,100,89,109,104,112,100,106,115,110,97,101,112,96,100,97,99,112,106,108,105,96,90,107,95,95,99,94,99,99,73,98,95,114,98,93,93,115,102,102,100,97,106,106,109,103,101,102,113,110,106,98,104,113,103,95,96,118,111,103,102,111,84,108,107,106,106,107,104,100,102,98,110,109,104,90,104,111,100,99,100,104,93,106,94,102,109,103,106,105,105,95,100,105,104,109,103,102,122,116,108,103,106,94,104,95,92,108,100,112,101,93,105,98,102,114,105,91,103,105,95,104,95,106,103,114,78,101,99,114,113,95,107,109,112,95,94,108,112,96,93,107,110,100,115,76,116,113,102,131,114,123,115,104,111,102,116,105,114,111,117,117,108,103,107,101,102,102,117,97,108,101,103,98,103,91,99,100,106,99,107,113,111,92,108,110,117,96,96,107,108,104,103,105,100,103,93,99,81,100,106,106,101,97,100,105,87,102,109,99,113,102,104,90,99,95,98,99,102,111,101,95,110,104,104,107,89,89,102,139,119,111,108,108,110,103,110,94,108,99,107,105,109,104,96,105,96,103,110,108,94,117,106,106,109,104,98,110,106,115,113,99,102,100,98,101,101,106,105,106,107,108,99,102,101,105,93,115,104,107,97,103,109,125,100,112,95,110,108,99,107,103,97,105,114,109,116,99,99,109,102,98,100,116,105,108,112,101,107,99,111,103,108,113,111,104,104,98,117,110,111,108,99,92,109,120,84,92,104,109,101,98,112,109,101,104,113,103,101,101,97,102,102,100,112,115,106,79,97,98,100,116,107,104,112,100,99,113,101,106,95,105,111,109,111,110,96,101,105,110,101,107,101,119,117,109,116,95,105,109,107,104,102,110,102,100,103,106,110,103,114,104,110,93,103,100,108,94,96,100,98,102,95,99,97,107,108,103,109,113,108,105,100,114,112,103,99,102,107,115,110,116,104,114,105,119,111,102,103,102,91,102,111,98,100,89,102,105,127,108,107,95,108,93,112,105,109,103,103,99,84,99,109,111,110,113,106,106,101,111,104,100,98,98,98,103,108,101,104,118,97,109,94,96,106,102,108,110,107,107,113,84,108,105,108,112,95,110,110,109,97,116,111,97,112,109,99,97,104,110,104,112,107,106,113,116,100,103,93,101,103,102,101,103,101,100,111,86,100,108,92,103,102,103,104,115,104,104,96,92,89,101,97,100,95,104,96,103,119,106,94,97,109,114,106,97,100,116,99,99,104,108,96,110,105,85,71,109,111,115,110,113,90,105,92,107,106,103,105,99,101,96,94,99,93,109,98,113,134,93,111,91,104,116,110,102,111,90,98,98,106,104,100,108,102,116,107,97,112,103,108,96,102,100,97,95,83,112,108,123,120,111,112,108,124,103,101,100,96,112,116,103,103,99,91,104,103,106,102,88,104,108,90,96,99,94,103,104,85,102,96,98,94,104,99,104,101,95,95,104,117,105,104,103,92,98,106,111,106,105,102,101,108,98,104,105,103,90,105,104,109,106,110,95,115,107,95,102,109,103,107,99,102,105,101,109,109,94,104,101,101,103,97,110,104,92,98,106,97,92,95,97,111,106,105,101,103,82,102,111,101,104,98,97,107,104,105,101,113,102,109,94,101,109,112,104,115,99,106,106,96,97,96,111,102,104,107,98,111,85,104,107,105,103,106,108,99,106,113,103,104,95,83,103,104,104,77,110,100,107,106,117,102,100,104,112,106,102,104,108,97,109,92,109,117,90,104,91,95,120,100,108,110,82,111,102,105,95,103,107,101,112,102,107,109,96,106,99,96,100,113,110,116,94,110,109,100,97,116,108,91,105,113,108,120,92,104,92,108,113,102,107,100,103,102,102,91,102,112,96,107,104,96,124,108,121,92,109,111,113,104,95,86,115,109,91,108,112,98,105,104,112,109,103,100,105,110,99,101,90,105,91,113,102,105,93,96,117,93,119,88,98,115,95,105,130,116,105,109,109,104,99,99,102,91,110,105,94,98,106,114,116,96,110,100,113,99,110,89,105,118,100,113,102,106,114,108,103,102,122,110,100,105,104,111,100,99,113,96,122,103,104,98,105,94,101,97,93,106,110,107,113,106,102,104,111,103,92,87,111,88,98,107,101,95,110,98,101,99,117,108,96,111,95,124,112,109,118,101,109,105,107,109,93,102,118,113,105,100,111,98,109,104,106,102,101,108,103,111,110,101,102,116,99,110,97,85,111,104,107,98,83,104,106,100,102,105,107,99,98,103,94,102,105,101,108,104,103,102,110,110,100,100,103,99,102,100,96,100,89,91,91,102,107,107,109,112,121,121,96,106,101,98,111,113,115,113,104,96,87,90,116,101,84,102,102,81,94,99,98,115,103,103,99,92,102,103,95,97,105,108,89,87,98,103,104,104,116,105,96,101,95,103,101,103,105,110,87,107,103,112,107,100,91,106,99,99,103,116,113,92,104,123,105,90,97,112,95,99,110,91,100,82,104,110,106,98,94,99,125,112,99,98,104,98,85,102,113,105,106,109,113,99,92,105,99,92,98,115,99,100,110,75,99,81,106,108,91,112,102,98,111,105,94,100,101,99,103,95,105,108,111,106,99,117,98,99,110,112,98,112,107,102,122,75,99,102,105,104,105,106,115,97,111,90,106,103,99,114,107,99,102,103,119,95,96,99,87,107,106,104,103,102,100,105,104,98,116,87,122,109,102,112,106,98,111,109,102,109,96,103,96,106,100,100,108,94,104,100,98,104,112,102,106,90,120,88,101,110,99,97,117,104,99,94,102,103,79,97,106,115,107,103,102,87,109,98,102,97,116,101,108,97,99,110,102,110,101,101,106,96,103,107,103,100, +614.69702,109,96,99,121,96,99,112,97,103,93,103,105,115,112,101,94,112,98,120,96,117,106,92,106,97,104,104,113,96,91,109,109,105,106,85,109,76,87,99,111,100,97,102,100,100,114,98,102,107,108,106,108,106,92,101,95,108,109,104,92,100,116,109,99,107,116,103,100,102,107,97,99,102,100,91,109,96,109,90,100,102,91,106,121,105,93,97,103,108,110,102,114,112,102,111,96,103,121,101,98,96,108,97,105,94,102,90,108,105,109,116,97,108,97,112,106,91,117,112,99,102,102,110,94,99,105,109,119,114,104,100,106,92,106,110,106,108,105,96,105,109,101,99,102,95,109,103,101,93,95,114,106,102,109,100,97,98,108,107,108,116,112,114,107,103,101,99,96,111,113,101,101,109,109,102,116,114,92,99,116,101,108,111,99,105,99,106,100,107,96,94,102,111,98,106,94,68,104,107,99,102,95,102,110,94,106,108,104,99,109,99,114,104,89,111,97,91,103,101,99,107,120,103,105,97,112,98,103,106,109,94,105,115,109,104,105,96,135,97,100,97,120,102,98,100,91,106,101,115,105,109,102,104,107,101,116,106,101,113,93,93,112,102,114,95,116,97,114,102,106,106,109,118,111,97,113,95,114,105,100,107,103,109,95,103,100,104,99,110,105,107,101,103,103,105,104,104,103,102,90,100,107,96,106,94,117,113,110,105,104,92,108,110,103,108,79,109,100,109,109,105,110,110,110,103,103,113,103,107,111,102,98,105,95,116,104,106,88,83,114,110,107,108,102,116,108,99,104,115,106,101,113,104,91,101,111,109,101,117,108,114,95,107,110,106,115,108,102,109,108,118,103,92,109,107,105,104,104,86,95,108,111,95,104,110,102,110,94,119,107,106,93,112,118,101,102,107,110,111,107,103,118,94,95,89,99,100,95,89,106,104,103,102,101,109,96,99,118,102,104,109,95,109,109,110,100,104,82,98,109,100,95,98,102,102,111,111,106,108,113,109,99,116,111,110,121,106,87,104,115,108,105,90,106,109,107,103,107,115,100,111,108,117,105,109,106,108,119,104,112,103,115,110,109,111,107,95,113,110,113,109,118,110,102,125,104,104,114,99,102,109,125,113,106,98,117,111,103,100,102,111,125,98,91,112,97,117,98,121,110,108,101,105,94,108,108,109,103,88,92,102,106,111,101,97,103,122,105,99,96,101,107,104,104,110,100,102,113,106,105,94,104,120,112,102,98,106,115,103,113,103,100,100,101,99,94,100,110,96,97,109,98,110,75,96,106,106,108,97,101,87,106,106,101,98,106,93,92,114,98,98,97,131,89,109,111,107,104,118,99,112,117,100,91,106,98,108,120,105,86,108,98,117,102,101,101,98,107,105,115,106,94,112,102,100,102,106,93,102,102,106,108,105,115,109,104,101,108,96,108,103,117,103,108,117,103,100,118,116,109,103,100,112,106,102,98,104,110,97,95,95,100,103,110,115,116,117,126,111,111,104,114,109,105,91,110,107,100,111,104,119,107,114,112,109,110,81,110,98,100,102,116,110,95,99,97,92,103,109,76,108,92,110,99,101,105,105,111,118,88,102,95,113,111,104,114,103,118,99,108,103,103,101,107,92,115,108,109,104,102,102,118,105,113,96,94,101,100,110,105,109,98,115,100,97,112,108,109,109,107,99,107,114,100,109,107,110,94,101,103,108,108,95,108,104,109,99,96,113,113,103,101,110,112,97,109,93,91,104,98,107,110,109,99,108,105,112,109,101,99,109,108,107,111,104,114,94,118,98,102,95,113,109,120,95,116,110,102,95,104,91,98,98,112,107,117,112,107,129,107,118,106,98,107,115,102,103,102,115,109,108,107,105,109,117,99,122,101,105,100,109,110,102,105,110,105,96,96,102,117,79,103,102,110,105,102,113,108,106,99,89,107,105,112,102,105,107,104,108,111,99,117,111,83,106,111,98,97,113,114,101,107,114,113,92,106,95,110,114,100,113,101,104,105,100,105,95,108,108,104,97,98,105,95,102,95,104,106,110,93,120,109,95,108,97,104,97,100,91,103,78,87,75,121,104,97,105,100,121,111,105,114,108,115,103,100,108,115,107,99,117,117,112,104,100,94,97,104,110,88,111,103,115,103,107,115,101,114,109,114,106,95,107,108,127,104,109,107,101,90,126,88,107,106,99,116,106,109,104,103,107,110,105,106,106,106,105,101,102,101,92,97,118,107,99,101,101,103,112,105,102,99,81,99,103,81,96,104,105,106,94,98,103,100,108,109,96,103,108,113,86,108,108,95,98,109,98,96,103,111,114,115,122,86,116,98,116,110,108,108,102,108,101,109,103,102,113,118,107,112,110,121,120,112,112,127,112,120,108,114,124,108,109,113,113,103,113,99,102,111,89,103,103,83,109,103,100,84,114,99,109,113,95,107,98,109,105,107,96,93,107,102,97,108,106,106,99,139,110,102,114,103,101,101,110,95,101,111,104,88,104,95,104,111,95,112,98,108,105,109,105,106,99,96,112,96,94,94,98,99,100,115,117,98,97,98,96,114,117,112,105,100,100,106,105,103,93,113,99,98,108,106,114,103,112,104,115,100,102,106,119,102,103,103,97,111,111,96,106,113,112,92,103,97,113,95,109,110,111,109,105,106,125,102,104,112,100,97,116,108,114,107,90,110,105,102,110,107,107,111,104,103,111,108,105,106,112,103,114,110,106,113,117,108,122,109,108,104,107,106,100,112,116,100,106,110,111,111,108,101,102,114,106,107,102,103,102,121,109,124,108,113,102,106,113,104,111,120,110,121,106,103,107,106,108,107,111,99,97,85,110,102,113,104,113,109,103,114,116,121,112,110,94,108,104,97,105,114,109,111,113,102,112,125,109,116,103,102,99,104,107,113,100,106,107,115,109,107,116,125,116,120,113,107,96,117,103,108,100,102,120,105,105,120,90,104,104,116,105,107,113,99,106,111,122,102,109,118,104,115,117,106,99,110,99,98,96,107,98,108,104,99,98,112,102,101,117,101,109,105,98,100,99,100,124,98,116,106,103,106,113,119,104,104,97,110,107,95,105,103,103,119,99,109,98,101,106,104,94,104,99,99,98,116,94,105,104,119,100,101,103,110,115,108,103,99,111,114,93,90,112,94,105,101,99,111,109,102,97,111,101,117,102,106,107,110,114,105,96,108,100,102,116,101,118,104,112,103,106,109,103,104,119,106,105,97,111,109,105,99,111,102,97,106,107,112,102,98,91,115,100,108,106,116,111,110,99,99,106,100,100,94,109,109,109,113,109,114,113,101,98,103,92,102,109,95,103,98,106,95,101,104,103,102,104,97,111,113,109,95,117,119,104,113,112,99,105,103,113,116,104,105,112,105,114,108,104,104,105,104,94,113,102,105,117,106,109,106,114,107,91,103,104,111,102,107,113,106,93,105,109,103,99,106,109,101,111,99,99,99,98,114,99,104,101,103,110,101,117,112,112,122,109,111,106,103,111,111,102,97,110,100,83,110,105,93,110,109,109,97,110,106,108,109,121,105,97,103,96,101,104,106,106,99,109,114,103,104,101,100,114,102,98,112,99,100,109,106,117,100,95,102,106,108,101,82,108,100,123,118,102,103,101,110,100,95,107,93,103,102,107,117,105,120,95,94,95,107,106,104,104,115,107,107,103,98,105,111,103,100,109,107,95,117,98,108,116,99,110,96,87,99,99,95,120,105,112,97,102,115,100,97,111,110,92,108,113,112,104,119,110,105,110,98,107,110,105,101,102,107,112,106,98,117,96,104,108,99,91,104,110,96,106,108,112,103,97,107,101,81,97,95,106,117,110,100,103,104,106,103,104,112,110,103,95,101,106,107,108,106,102,100,106,109,100,99,106,96,103,114,102,107,110,117,117,99,93,97,101,102,112,96,107,106,102,124,103,108,109,113,111,108,105,117,100,119,86,107,110,116,113,105,105,103,100,103,121,110,93,103,124,110,99,112,112,110,107,121,111,106,116,108,118,100,95,113,105,123,104,103,115,109,97,105,105,111,102,106,90,106,95,100,105,87,103,92,108,97,110,104,113,112,109,96,117,107,104,105,111,113,98,110,123,107,108,103,104,100,108,111,99,99,113,106,127,112,107,105,116,109,105,100,107,104,103,109,101,98,96,107,109,108,114,99,113,107,109,116,105,108,110,105,110,102,122,110,103,95,100,115,113,94,106,96,112,104,100,106,114,90,90,100,128,100,101,107,103,110,117,122,103,102,110,113,111,98,98,97,105,112,116,98,99,101,101,105,105,110,96,112,115,106,105,99,125,100,109,100,97,114,105,101,101,91,112,103,102,99,111,99,100,100,110,120,110,107,118,91,113,103,99,113,104,99,104,94,97,111,98,111,97,90,100,100,94,104,87,107,116,97,115,109,97,95,101,107,108,104,103,113,99,95,83,94,110,87,105,101,121,105,110,107,102,114,104,94,100,102,94,104,93,111,121,115,113,99,112,113,97,100,109,98,100,98,115,104,96,110,79,119,109,105,116,95,111,108,95,95,108,108,105,120,100,104,110,104,109,101,98,100,100,82,101,104,107,102,95,116,103,107,113,84,106,113,105,98,100,102,109,101,103,113,107,105,102,125,113,116,101,106,100,106,115,114,101,103,107,105,111,105,94,106,104,113,111,93,106,107,95,103,110,110,105,106,111,106,110,100,92,101,104,105,95,133,106,105,111,99,105,95,115,105,100,106,103,117,102,108,96,116,101,111,120,108,109,98,106,93,109,111,109,98,98,90,119,113,97,107,103,117,121,94,104,102,101,101,100,104,93,113,102,99,107,117,100,86,97,129,110,97,112,90,99,110,111,87,94,107,102,108,103,103,103,96,106,108,88,110,100,94, +614.83807,106,98,101,110,97,101,106,92,105,102,102,91,113,105,101,101,108,107,99,98,77,85,90,95,85,109,96,95,81,107,110,99,104,116,102,93,111,112,104,126,100,118,116,93,108,110,98,108,102,100,91,103,106,98,103,87,94,106,115,93,109,107,92,100,110,100,103,100,101,106,114,99,94,103,97,102,97,98,87,91,98,84,102,93,110,92,105,113,102,93,96,110,94,109,85,96,106,92,100,92,97,109,116,103,104,109,84,102,93,95,104,104,121,100,95,99,99,107,101,106,93,105,105,115,94,101,101,102,109,98,98,97,99,102,107,113,102,81,97,96,92,103,104,95,115,108,105,107,95,105,105,89,111,88,70,95,91,112,105,94,97,108,95,116,109,101,107,96,83,106,83,100,113,95,99,97,106,66,109,109,95,97,92,106,102,102,107,87,105,90,100,108,94,92,93,102,102,97,102,94,94,109,110,106,102,98,111,103,100,111,94,92,100,88,92,94,101,105,91,98,96,108,103,93,96,97,109,97,103,105,114,105,98,100,95,96,119,94,106,96,104,97,114,107,107,105,92,94,109,109,96,88,93,106,90,121,82,95,98,95,96,100,95,97,92,112,103,104,102,100,98,95,95,105,98,89,102,95,91,95,112,95,103,102,95,100,89,64,94,117,98,101,98,109,95,97,112,103,115,95,95,125,105,111,100,108,108,103,100,96,88,110,94,97,104,105,105,95,119,106,106,98,108,99,100,94,92,91,99,108,102,102,97,103,97,101,98,97,97,105,87,99,101,104,111,113,100,101,107,99,108,99,88,104,102,103,104,103,109,104,107,99,109,104,118,103,113,108,106,114,103,109,110,102,102,97,102,115,107,108,105,108,104,110,93,103,104,108,104,100,111,100,111,105,98,98,114,78,100,106,102,104,101,106,104,104,93,128,102,104,102,97,104,105,114,104,103,103,106,99,95,108,103,116,105,96,106,110,101,107,93,111,97,85,99,98,101,104,105,103,102,88,104,89,94,92,109,97,119,106,95,109,114,101,96,97,89,100,103,96,92,117,106,107,105,86,101,105,98,101,85,103,103,107,103,92,100,109,100,100,99,106,99,110,99,96,110,104,100,99,103,88,113,114,96,103,101,93,100,80,106,99,99,107,99,89,94,95,105,108,104,107,94,107,99,98,100,93,96,96,100,97,110,102,103,80,102,91,111,96,99,113,102,90,71,103,106,81,99,105,102,93,99,97,116,104,96,102,94,104,100,101,102,105,99,110,106,107,101,91,93,98,91,104,95,99,102,95,96,98,107,95,101,99,106,115,99,98,104,106,100,96,100,98,110,101,95,115,96,109,109,110,109,100,103,111,102,101,99,99,110,102,106,87,110,101,92,103,100,124,96,99,100,130,111,112,100,110,100,94,105,108,93,98,102,99,96,104,92,118,110,97,98,99,94,97,110,99,103,102,116,94,96,113,90,93,101,101,91,104,86,106,106,103,107,97,105,113,93,104,99,107,104,108,98,97,99,96,103,109,100,98,100,105,90,102,97,97,104,104,106,104,109,125,92,101,107,104,99,97,96,96,96,94,107,88,104,113,105,94,105,95,105,98,91,105,104,102,106,98,112,97,101,106,102,109,99,94,107,94,104,95,98,108,99,96,97,97,95,120,92,113,88,89,101,101,109,101,103,97,108,99,108,100,138,87,102,99,109,111,105,102,102,103,108,98,98,101,103,114,102,101,103,103,98,115,96,109,114,111,105,109,105,101,106,101,108,94,94,111,108,104,106,104,101,103,99,108,104,95,90,102,98,100,96,96,107,100,95,106,117,96,95,106,108,97,102,110,104,104,118,106,95,109,100,117,95,97,101,96,100,101,95,105,98,110,112,105,103,97,112,98,103,99,89,114,98,105,108,103,100,91,110,95,99,99,88,84,101,100,105,98,94,117,110,103,98,90,105,102,115,109,103,92,109,100,102,99,119,94,104,106,100,130,101,97,92,106,100,100,94,104,100,108,100,108,114,103,104,108,103,119,110,117,103,106,100,109,101,88,101,112,117,107,105,100,109,106,102,100,104,94,104,103,95,102,100,96,95,127,104,94,107,95,101,115,105,101,98,105,103,103,102,96,97,111,101,91,102,101,106,111,108,113,103,95,115,112,108,112,103,105,99,105,103,112,98,110,97,105,112,91,98,102,111,91,90,104,105,107,114,103,109,112,106,106,94,105,94,96,98,109,105,104,117,105,95,110,109,112,111,106,95,102,111,99,101,107,90,104,107,112,111,101,109,111,110,106,97,107,104,109,104,99,111,99,108,99,108,105,104,104,108,99,101,100,96,100,111,106,94,97,98,98,124,100,99,117,103,106,111,117,118,129,113,119,120,125,116,133,114,100,112,107,100,109,115,111,108,117,98,101,99,108,107,109,106,95,91,102,104,110,105,106,93,99,102,130,103,103,99,84,105,107,107,102,92,96,102,100,97,101,116,99,107,95,104,95,75,99,105,104,107,105,104,106,99,103,94,101,91,116,99,100,112,114,101,101,94,105,102,98,108,103,109,109,118,104,106,116,95,112,102,102,94,94,83,98,95,102,108,108,86,100,102,109,114,108,110,101,91,91,102,100,113,103,107,107,106,119,107,87,100,98,107,111,107,100,104,102,103,117,112,92,104,98,121,102,102,106,108,103,100,111,103,106,103,105,105,119,102,99,107,102,99,97,108,114,107,93,107,100,97,100,119,114,103,100,99,102,94,112,94,130,98,105,104,108,102,106,103,106,96,100,98,129,88,112,99,107,100,108,96,111,105,105,120,95,104,103,106,96,112,104,100,96,105,93,108,106,94,113,105,109,104,99,92,111,102,107,104,85,126,100,94,113,95,113,100,108,100,111,109,105,106,105,94,102,114,115,108,99,110,108,99,105,107,102,107,112,101,99,101,107,103,103,108,102,108,105,101,104,98,115,102,103,112,115,101,101,108,103,96,98,102,110,113,104,99,84,115,88,108,106,108,102,105,107,118,100,95,96,95,102,105,108,113,105,87,113,97,106,117,114,106,110,115,95,99,103,109,108,102,97,97,111,101,110,107,98,108,98,106,98,111,102,108,83,96,113,104,104,103,102,113,104,99,75,109,100,98,90,109,103,103,98,93,102,84,83,92,104,109,108,110,107,104,104,107,116,107,107,103,106,104,100,109,103,106,106,108,114,108,104,75,93,109,102,106,111,109,99,91,80,100,101,102,102,110,99,118,95,98,122,105,112,105,113,110,104,92,98,96,105,107,98,94,107,106,101,102,94,116,127,109,103,117,100,105,109,104,101,95,112,97,105,95,87,101,109,108,102,98,88,104,107,103,109,104,111,106,107,111,117,113,107,96,105,101,93,108,109,96,107,100,113,112,109,99,105,112,105,100,107,106,98,118,96,104,108,113,103,94,97,105,106,100,106,106,109,101,94,107,92,90,99,103,106,101,105,106,110,100,96,110,104,106,108,121,96,113,113,106,99,102,87,109,95,109,104,104,111,96,101,97,114,109,103,102,102,98,98,106,103,107,107,102,93,114,111,100,99,94,100,97,105,107,107,108,94,88,102,88,99,108,108,105,90,118,92,94,94,98,109,113,95,111,104,92,117,101,101,123,97,103,84,114,102,96,105,106,107,99,102,97,87,93,105,95,92,109,98,103,117,99,102,108,86,112,100,100,101,110,115,100,113,99,95,108,105,98,113,101,105,108,105,105,99,99,104,107,99,95,105,105,95,106,99,106,107,105,95,104,101,94,106,105,100,100,109,97,102,98,103,96,98,95,95,106,107,106,97,100,120,94,105,101,116,112,94,97,100,97,120,104,112,103,103,94,103,98,92,116,106,108,108,99,70,117,99,110,104,93,105,110,87,98,116,103,101,107,109,102,97,102,109,88,100,112,101,102,111,102,107,111,98,96,101,83,98,94,115,111,113,102,101,104,95,103,88,108,115,104,109,106,106,100,99,94,116,98,109,100,108,100,98,112,89,116,101,107,108,120,96,99,104,107,104,103,106,101,89,117,114,118,105,113,95,101,101,110,108,105,98,101,101,97,105,109,92,105,99,97,106,88,109,101,106,107,105,94,97,116,97,106,100,116,106,111,91,89,100,112,112,107,94,97,115,95,104,114,100,102,87,100,103,124,109,108,94,100,106,110,109,110,104,98,86,99,108,141,98,112,108,98,106,109,100,102,95,117,118,101,80,103,95,104,113,103,105,101,104,103,97,116,96,103,115,121,113,102,114,111,100,106,95,111,90,94,95,92,109,100,120,98,106,101,115,100,107,106,99,109,98,95,103,103,102,107,97,109,107,94,109,106,106,117,105,104,107,92,99,105,95,93,98,97,99,92,102,115,108,89,108,99,97,114,106,98,100,105,98,98,100,95,111,97,99,106,94,105,109,110,95,95,108,89,87,109,106,107,105,102,105,109,94,105,100,106,88,102,77,106,110,110,104,113,104,107,96,85,112,100,116,104,99,98,117,98,90,106,92,92,105,105,96,100,101,110,92,120,91,99,91,119,109,94,109,107,91,105,75,90,100,101,113,107,101,101,112,91,87,105,116,99,110,104,102,107,106,99,104,99,108,102,116,109,96,87,107,97,105,107,100,101,107,104,101,102,82,97,102,108,101,100,101,113,96,111,95,109,103,88,106,96,102,97,95,107,92,97,108,112,115,105,96,112,93,100,96,101,102,101,108,113,95,102,97,101,108,101,102,104,104,106,100,83,104,97,115,103,106,98,96,92,103,103,94,101,107,90,94,108,96,104,97,93,99,101,117,112,104,100,99,107,97,113,102,108,91,79,97,92,95,91,107,111,95,102,102,103,102,105,107,96,98,111,106,105,96,98,96,102,92,106,115,107,105,95,103, +614.97919,105,103,109,98,102,95,103,104,100,113,100,111,85,96,101,110,137,96,111,107,108,98,104,103,98,95,99,107,103,116,100,105,111,109,105,105,103,86,117,106,100,86,105,101,99,118,96,120,107,103,102,107,109,108,99,113,104,100,115,90,112,110,86,98,105,94,91,103,93,99,106,109,96,109,95,106,98,102,91,95,111,101,99,94,104,99,105,85,94,98,106,106,114,90,102,99,114,113,115,113,109,104,102,97,105,97,90,97,105,108,106,98,117,112,99,112,106,92,103,104,104,113,93,115,109,114,112,99,104,110,105,116,105,103,104,111,114,111,103,120,99,102,95,101,110,82,104,108,106,112,104,117,101,113,105,103,95,78,103,120,102,103,102,95,98,99,110,111,103,96,106,115,104,102,108,107,107,102,97,109,107,139,114,109,93,92,106,105,111,107,109,102,115,99,99,108,116,72,98,92,109,102,100,112,104,109,96,100,100,108,100,99,106,115,98,105,121,110,120,102,96,111,103,103,87,94,104,106,105,110,97,108,95,114,111,118,112,102,102,93,114,103,99,105,99,103,104,108,96,110,117,108,109,98,93,86,105,106,95,98,96,113,111,109,103,108,111,102,103,102,106,102,107,104,109,105,103,106,92,103,104,107,69,106,112,107,96,107,98,106,132,107,104,99,95,95,107,111,113,95,97,109,108,126,100,113,115,100,95,105,97,109,100,114,98,103,102,116,117,110,111,102,102,105,113,106,101,117,124,110,99,124,106,106,101,102,107,105,103,100,99,106,109,87,111,118,114,108,106,110,109,122,104,98,100,110,107,101,109,96,103,106,103,107,102,110,113,107,103,108,102,90,104,104,124,103,99,107,110,109,108,105,105,99,73,107,110,98,101,99,113,99,100,108,99,106,103,103,113,106,113,92,94,93,129,95,89,100,108,105,74,105,111,104,91,104,101,89,110,91,91,111,108,115,86,116,97,103,97,96,98,101,104,93,109,119,91,106,103,105,106,103,102,111,104,125,123,104,97,104,106,103,102,114,109,108,91,108,110,111,98,107,100,110,116,106,111,97,96,109,115,91,105,104,105,110,137,99,109,109,110,110,115,94,102,105,109,107,103,101,104,108,113,105,100,105,100,99,103,107,115,106,103,88,99,119,104,95,106,100,112,107,103,111,113,97,96,108,108,94,103,107,111,102,101,115,98,112,98,107,95,100,99,106,93,113,107,94,115,110,97,107,112,96,110,106,107,107,126,117,115,101,124,117,110,108,124,115,105,95,116,101,107,101,109,104,104,113,112,110,110,113,109,114,109,103,110,105,107,110,106,77,107,93,110,104,103,102,103,108,109,101,99,98,113,105,106,114,111,111,104,113,103,99,102,105,106,108,114,103,100,111,110,94,107,97,100,112,108,102,97,96,115,120,114,124,100,122,113,100,110,91,102,110,109,104,103,96,103,105,103,106,97,106,104,101,107,84,102,103,101,110,104,110,119,108,133,105,108,105,93,109,113,107,104,108,92,100,99,105,110,109,108,102,100,109,115,109,114,106,115,112,108,95,102,95,95,104,103,103,111,95,107,91,107,103,106,109,99,106,106,102,102,100,110,108,103,112,109,106,117,107,102,112,107,105,114,106,103,101,102,105,101,78,108,109,98,111,108,103,102,66,105,112,102,95,102,97,114,101,109,95,107,112,105,99,103,113,104,94,109,117,98,101,113,110,111,104,92,112,103,103,92,103,100,110,98,113,106,92,108,104,106,92,112,121,101,110,100,110,99,101,105,102,108,100,103,110,100,109,105,117,105,106,94,108,103,117,100,115,117,108,103,104,100,102,104,104,105,99,104,100,97,74,108,112,108,112,88,105,100,117,108,117,107,107,103,104,106,101,96,110,112,108,102,119,116,108,107,110,124,100,103,97,106,107,99,105,106,97,103,97,100,102,110,112,90,103,110,104,116,111,109,116,108,95,96,108,111,105,111,114,107,104,99,112,113,107,90,112,97,107,101,102,97,83,100,93,117,105,109,108,113,105,105,105,106,108,114,95,98,114,96,113,93,93,105,113,102,101,111,99,108,118,103,116,91,93,101,110,114,105,106,109,103,118,104,107,109,118,110,102,112,107,104,108,94,120,95,113,110,104,95,102,95,101,103,107,103,101,113,102,120,113,109,111,114,118,115,99,114,109,106,115,104,94,105,103,103,103,118,113,114,105,102,108,109,105,101,103,100,111,106,107,118,83,105,103,103,94,100,99,115,112,107,87,107,104,92,106,106,102,100,101,105,115,104,114,101,95,101,113,91,115,102,116,113,109,108,102,106,134,126,99,100,105,103,103,99,103,113,99,100,108,108,99,106,110,110,110,112,112,112,117,113,130,128,112,127,100,114,115,111,104,103,113,91,122,107,96,105,109,95,102,103,89,99,104,108,103,98,99,103,109,105,110,106,92,118,109,92,102,105,102,104,97,101,104,121,92,106,91,117,101,99,111,104,96,100,112,104,90,88,102,98,67,111,101,100,96,108,102,107,106,112,103,83,112,108,104,106,105,106,107,111,86,92,113,113,99,111,121,101,100,116,102,108,108,94,102,95,111,99,101,100,120,107,107,108,102,109,117,115,104,111,107,118,110,111,97,108,103,100,77,107,110,95,102,100,110,109,103,96,112,110,88,109,107,110,106,104,102,99,102,106,103,117,94,107,103,100,108,108,106,88,114,102,96,107,91,101,105,95,108,117,101,107,108,109,106,113,94,114,115,100,110,111,103,108,92,103,104,116,108,99,107,106,100,113,99,111,104,108,105,108,95,106,111,109,94,107,105,96,106,106,115,95,114,107,100,98,106,101,113,91,103,99,107,105,109,117,92,113,103,120,106,108,106,110,110,111,99,95,117,116,108,102,106,100,118,110,103,92,106,108,114,107,95,115,99,106,113,93,105,94,94,96,99,109,110,116,108,116,102,111,98,120,102,101,116,91,98,95,83,106,101,97,100,116,94,106,99,99,104,109,99,109,96,121,90,113,105,99,109,94,106,104,104,106,103,105,102,109,105,100,107,98,99,102,103,102,104,99,113,99,94,102,115,100,103,117,114,115,102,112,101,120,102,113,110,96,97,102,120,108,99,101,105,108,102,115,85,104,107,105,111,101,103,107,83,104,101,98,108,104,100,103,102,111,106,108,96,101,103,101,118,108,95,109,108,104,96,120,103,108,111,104,113,111,106,97,108,96,109,105,85,116,102,112,110,114,113,109,106,106,102,114,100,93,109,103,118,109,102,123,106,101,115,104,113,112,101,116,104,104,108,114,108,105,95,94,98,98,107,106,100,111,87,97,96,102,104,91,111,96,111,100,110,107,102,95,102,99,100,102,93,100,108,99,111,105,109,101,96,106,102,86,101,99,110,97,108,117,109,100,103,102,104,112,101,111,90,97,102,104,95,99,113,107,109,104,100,108,99,112,113,82,109,98,98,110,119,108,91,109,111,104,101,109,95,102,109,97,99,110,100,117,96,104,105,120,101,117,112,112,103,96,105,93,103,99,104,93,105,107,117,87,119,105,119,114,107,95,132,107,95,109,110,102,89,88,100,120,117,124,103,99,105,80,98,102,106,102,103,97,93,108,117,112,98,101,100,135,106,106,100,105,102,101,104,95,96,99,106,97,99,87,95,108,109,102,106,96,94,97,103,97,105,110,99,95,100,104,112,112,97,111,102,91,94,112,98,99,94,108,109,101,113,124,93,98,109,95,100,110,102,124,111,100,112,102,97,83,110,118,96,87,104,104,106,84,96,102,102,99,112,115,109,105,102,113,97,103,104,100,105,98,97,107,106,92,107,104,112,99,104,111,99,101,102,103,101,108,116,97,101,103,94,95,115,96,112,102,104,113,99,106,100,100,96,92,100,101,108,107,77,108,98,101,107,111,97,106,107,93,105,104,79,95,103,99,101,88,108,104,108,106,115,106,103,104,96,114,104,88,102,98,99,101,100,105,113,103,127,124,91,105,107,106,104,115,100,100,95,103,92,102,105,100,106,106,109,99,106,98,108,96,107,104,91,96,103,110,101,100,98,95,104,107,97,98,117,116,105,110,112,108,103,105,106,126,109,116,109,106,111,119,99,112,92,106,97,98,99,116,102,95,100,117,112,102,103,113,91,103,102,100,103,102,93,103,106,105,101,94,103,94,104,101,99,104,94,99,100,110,107,117,105,104,108,101,95,101,95,107,97,124,117,112,106,92,88,107,99,102,94,105,113,97,104,108,109,103,106,109,117,103,106,97,106,110,106,105,113,108,98,100,107,96,110,107,113,109,110,113,93,103,97,110,104,98,98,103,96,106,96,103,101,104,118,101,107,99,111,85,117,99,111,98,99,107,101,107,95,92,97,102,117,102,92,104,92,105,99,99,102,106,90,110,83,115,91,91,105,107,103,96,92,108,98,99,106,109,94,95,105,102,104,108,133,109,102,111,113,104,93,111,113,94,112,101,91,118,108,91,102,102,128,102,96,95,101,98,100,114,103,103,112,95,117,105,96,102,93,113,108,99,96,109,109,105,110,103,105,117,110,109,100,94,102,98,103,100,110,103,104,101,108,112,100,109,106,94,103,100,110,109,103,123,95,111,102,102,109,91,109,103,104,106,106,103,95,105,100,93,104,113,101,107,106,100,100,105,88,113,89,106,117,99,97,100,96,114,116,105,99,98,105,95,99,102,101,108,101,105,99,103,95,98,103,120,106,109,103,104,106,94,129,106,103,114,91,111,105,105,103,112,93,112,103,106,98,89,110,99,97,96,115,102,110,117,115,98,90,123,107,109,95,105,100,109,95,104,99,105,103,106,102,112,101,110,100,96,96,101,104,101,104,96,85,116,131,102,94,104,136,103,112,94,90, +615.12024,118,87,103,106,96,104,117,99,99,110,110,93,103,108,108,101,103,108,101,91,103,100,102,107,101,79,102,112,107,121,106,109,114,106,111,111,104,101,106,114,91,106,122,92,114,119,110,111,105,106,103,96,113,118,121,100,90,110,116,112,97,88,105,101,101,117,104,106,109,105,110,117,106,104,104,114,105,98,109,101,115,114,111,116,106,102,116,104,94,92,103,110,98,105,133,102,110,86,98,78,104,104,113,108,114,104,103,119,100,112,103,89,110,97,116,100,99,107,112,102,108,119,100,104,99,112,95,101,111,114,117,108,96,113,107,83,106,108,107,109,98,109,105,112,108,91,113,99,100,104,100,103,109,82,94,112,108,89,107,102,100,106,95,98,109,96,104,102,105,111,112,106,112,105,116,103,109,98,100,96,96,104,105,105,101,110,100,96,100,103,94,101,113,106,131,102,102,104,98,90,99,96,98,114,102,107,124,99,115,116,106,98,115,91,117,107,100,104,96,102,93,110,92,108,103,108,100,108,109,104,95,104,111,107,105,107,101,106,114,98,101,108,109,108,105,107,115,90,113,96,125,101,104,106,95,109,115,104,107,111,91,102,95,104,98,107,112,107,98,109,106,100,112,108,111,103,97,100,95,109,101,105,112,99,111,114,92,115,106,104,99,104,98,108,108,95,102,105,112,108,100,87,109,111,97,110,110,112,94,106,106,117,98,112,105,99,108,103,108,106,117,102,115,101,94,110,106,103,103,103,105,106,116,101,95,104,115,100,104,117,93,99,100,66,104,104,103,109,87,104,98,112,121,110,103,108,115,100,111,101,104,108,100,119,98,95,108,102,119,102,100,92,110,102,106,104,111,88,104,110,101,111,99,113,105,100,101,107,114,95,108,98,104,113,95,118,99,95,106,110,117,95,100,103,94,110,91,103,110,110,82,91,110,108,105,113,108,100,114,97,100,106,119,102,104,105,101,99,115,103,95,109,100,103,108,99,111,97,96,108,110,98,109,124,102,110,91,105,113,121,95,104,110,104,102,100,108,109,123,102,103,101,114,112,100,118,100,104,118,105,104,113,105,104,117,103,99,103,102,106,104,110,101,106,107,110,117,110,110,109,104,99,108,113,113,116,100,112,102,110,107,95,116,92,96,103,114,104,124,111,107,112,111,104,100,103,101,101,103,106,106,103,103,106,105,98,107,107,104,98,100,112,110,113,108,108,105,101,108,108,101,112,100,109,110,103,111,107,110,102,114,112,98,91,99,110,110,103,108,100,113,99,112,98,96,115,110,97,111,107,103,101,108,107,105,105,107,109,90,106,110,110,106,109,114,100,109,121,118,97,107,107,116,105,113,117,110,100,108,104,114,91,107,104,105,103,115,95,111,98,107,100,109,103,112,106,103,111,105,98,115,103,100,98,98,96,81,99,110,104,98,123,94,104,107,108,105,116,108,95,110,98,102,117,102,84,99,105,100,106,111,98,110,112,103,104,104,109,125,106,104,104,98,110,106,104,100,91,113,103,117,103,95,99,90,107,96,109,114,105,113,107,113,97,99,104,109,105,108,103,118,98,106,125,92,106,109,111,109,94,104,99,92,106,95,109,102,111,107,102,111,107,112,114,107,99,100,106,112,99,103,101,111,109,103,110,105,104,108,118,109,113,98,108,101,101,101,103,107,104,102,112,102,97,107,115,97,108,93,103,111,113,86,101,102,102,103,96,100,98,111,107,100,131,98,99,101,108,110,104,96,104,109,112,94,112,102,94,106,88,111,102,106,107,120,100,108,109,117,97,107,109,107,107,113,107,114,105,103,111,112,95,104,102,115,101,114,110,106,110,114,106,109,93,113,104,103,105,109,102,105,104,104,111,103,99,110,113,61,108,121,90,101,104,104,109,130,101,106,99,95,99,107,100,112,101,106,102,109,90,99,103,90,108,91,104,98,101,100,115,103,87,109,110,109,118,102,108,97,111,126,114,106,107,95,108,106,97,105,109,99,122,118,105,98,99,102,104,94,102,108,119,103,108,105,103,101,113,99,106,108,111,108,116,108,102,92,97,98,114,110,119,113,95,104,110,118,106,97,100,107,114,119,113,112,103,105,115,101,105,99,104,102,114,104,119,104,117,114,108,130,103,95,69,89,112,112,115,118,130,105,104,112,103,125,118,110,90,113,99,106,113,110,126,99,112,103,110,108,104,110,97,96,118,102,117,107,104,95,106,110,111,104,102,97,103,101,105,121,101,92,103,105,110,104,104,108,123,106,107,104,103,100,95,113,100,106,114,100,113,102,108,110,108,96,116,106,113,111,108,105,118,105,97,100,102,123,98,105,105,103,107,106,109,120,106,111,100,111,110,116,117,115,130,125,110,115,109,98,125,134,142,118,109,106,99,112,112,94,109,107,95,116,99,101,103,113,103,116,105,115,106,106,111,108,107,106,110,100,109,104,108,82,105,113,114,109,101,107,106,111,115,100,109,100,99,117,108,121,105,108,95,105,104,106,113,114,108,109,116,99,91,115,113,119,96,89,103,102,120,102,113,106,104,117,105,96,106,100,108,112,103,95,94,98,103,98,107,97,95,111,98,104,110,98,102,100,106,95,96,107,89,107,105,93,115,105,101,101,98,105,111,107,106,104,105,93,103,110,102,109,104,118,109,105,101,114,117,98,107,103,101,94,113,105,100,104,97,93,102,110,104,116,106,100,104,100,113,104,103,93,110,126,113,109,107,115,106,97,110,102,106,112,96,102,111,95,102,106,102,112,116,93,106,110,95,112,107,112,108,106,99,97,104,112,108,100,107,95,107,100,91,110,109,110,106,101,104,111,99,109,108,113,105,102,101,97,105,105,93,103,99,109,107,104,98,106,104,109,107,98,113,96,109,102,108,106,102,104,120,98,107,110,99,80,112,100,110,108,111,108,111,99,111,85,112,103,99,94,105,95,103,102,117,103,105,104,109,112,103,113,108,106,107,102,118,98,99,105,101,106,116,110,106,114,103,124,105,107,95,88,89,99,109,108,119,94,109,98,101,103,114,106,99,106,111,106,97,104,104,108,103,102,107,103,105,100,111,105,91,114,114,98,113,109,105,102,106,94,102,110,102,100,106,106,106,100,101,100,97,102,109,84,101,93,94,100,105,96,102,98,106,109,106,110,117,98,102,112,100,101,104,108,104,109,110,108,105,129,98,109,107,111,99,121,95,97,106,94,109,104,112,114,100,98,113,99,118,114,108,114,104,105,105,104,104,101,117,99,102,98,101,75,72,104,103,105,100,106,85,98,101,107,103,97,112,113,101,108,109,110,97,99,98,96,108,99,106,99,109,100,110,99,89,106,116,108,112,114,102,102,105,112,98,125,101,113,92,112,102,98,100,121,119,106,94,102,105,103,112,103,100,80,104,106,106,89,113,118,98,105,96,106,104,120,87,109,95,98,96,84,93,109,102,112,100,116,94,104,111,106,88,117,106,106,91,98,102,98,109,104,112,92,112,110,114,109,99,119,103,121,108,106,108,100,114,116,103,98,91,99,109,118,97,104,116,114,100,107,117,103,105,110,110,104,104,104,102,103,94,97,102,108,108,114,98,112,113,115,108,110,95,102,105,119,103,105,117,106,116,104,100,109,104,109,105,99,109,105,108,103,101,104,99,88,110,92,81,99,101,100,118,116,87,111,105,110,94,110,106,117,104,110,121,120,100,100,108,103,101,117,81,103,101,99,108,108,103,104,79,111,97,103,105,107,108,103,107,107,102,108,107,103,97,118,106,104,99,106,105,99,99,94,117,108,114,95,100,91,105,113,92,103,104,110,104,100,103,99,108,95,114,99,108,98,103,119,101,105,93,113,98,108,97,83,107,108,101,97,99,102,65,103,107,109,96,83,95,97,108,105,93,113,104,94,101,100,101,115,97,105,106,106,101,97,113,106,115,118,95,105,105,93,104,98,112,87,93,94,105,107,101,90,108,102,102,107,104,113,110,97,101,106,99,98,98,99,98,99,104,108,106,80,106,100,109,119,103,107,106,108,114,99,89,112,107,93,108,96,112,99,98,103,97,105,101,103,103,104,101,115,99,108,101,109,115,92,106,96,104,120,110,111,104,91,110,114,103,102,108,119,98,106,115,109,106,99,109,111,126,104,103,98,87,105,115,104,101,80,95,113,111,123,113,103,99,106,108,101,114,99,105,110,99,101,91,108,99,106,107,113,96,112,101,105,96,98,120,105,97,105,88,107,99,99,97,84,112,123,108,103,96,112,113,98,103,101,89,83,99,105,101,106,107,101,91,92,106,95,100,102,100,107,102,107,105,112,106,105,108,108,100,101,89,106,105,101,109,114,93,97,100,103,104,104,105,95,108,105,105,97,117,103,99,89,99,104,117,103,107,104,94,109,102,84,113,96,103,105,91,109,104,99,85,100,91,88,92,98,99,86,100,97,112,100,86,100,87,99,100,102,94,113,92,113,113,105,102,100,105,106,103,110,96,102,118,106,101,99,106,87,97,98,104,105,102,102,104,100,97,97,116,90,104,117,97,75,94,101,100,100,95,107,110,107,100,101,101,96,107,104,93,101,100,80,113,102,102,101,98,103,103,85,103,106,100,100,110,102,109,103,101,108,95,123,89,107,101,98,104,118,114,109,103,90,101,97,98,104,80,88,101,89,107,109,118,85,104,105,90,107,99,94,106,89,91,99,104,102,101,104,99,112,123,116,95,99,107,112,110,112,106,106,110,107,111,102,105,111,93,128,98,117,102,112,93,109,99,103,108,113,97,107,101,99,116,108,93,103,105,103,103,110,100,104,103,105,109,90,70,91,104,102,106,104,104,77,99,113,101,105,109,101,100,106,94,117,95,101,105,95,90,98,105,115,116,108,111,96,107, +615.26135,97,112,91,104,93,94,98,116,105,108,98,100,105,103,105,96,103,114,108,93,114,108,102,105,101,115,111,107,111,103,107,101,104,99,102,116,104,97,107,104,102,89,95,105,104,117,103,112,104,109,104,112,100,109,101,99,104,95,109,92,95,100,102,95,102,102,91,100,107,101,107,93,99,108,103,111,120,96,102,92,109,96,112,108,105,106,103,103,97,96,94,115,110,101,105,90,121,96,97,90,101,93,96,99,102,105,99,98,115,116,104,104,109,94,94,103,106,103,102,103,98,104,101,122,111,109,113,115,98,95,104,104,100,105,100,105,109,107,99,111,100,103,99,91,110,109,98,96,103,107,99,88,107,100,108,110,97,113,137,109,90,108,102,94,99,100,91,96,102,106,99,104,106,106,97,97,104,92,106,91,102,102,105,118,69,102,103,94,111,103,105,100,113,109,93,101,101,97,103,102,114,101,105,107,91,102,98,102,110,109,105,105,110,93,111,105,131,97,97,100,105,105,107,110,101,112,100,107,110,99,101,105,110,98,103,108,104,111,103,103,110,106,108,105,89,105,102,98,106,101,114,118,109,117,108,114,107,118,92,102,107,111,97,109,100,102,115,98,103,97,105,128,105,91,105,116,99,107,108,110,103,111,115,99,107,96,106,101,118,96,105,103,100,99,97,95,107,106,99,96,110,110,114,111,96,104,100,105,103,103,86,107,105,113,111,105,104,84,101,105,104,95,102,111,77,102,111,101,119,106,107,87,94,99,105,103,105,106,87,105,105,118,79,103,95,112,98,98,111,118,96,98,106,105,94,91,114,103,92,104,135,101,101,94,105,99,115,116,97,114,118,135,109,109,96,119,103,98,97,117,100,107,117,87,102,98,105,104,109,102,107,95,109,111,96,95,100,103,108,110,93,95,98,95,95,101,101,109,105,102,107,95,102,100,99,61,106,100,108,113,103,97,80,108,62,99,111,96,102,109,90,107,103,108,104,114,95,99,108,105,109,93,99,108,104,98,108,99,101,98,94,91,115,107,110,103,101,105,89,103,100,110,107,115,119,100,115,100,121,106,103,115,108,100,104,101,101,120,104,121,100,106,105,117,99,114,103,104,100,96,112,108,106,113,106,102,97,113,101,100,113,100,108,103,115,104,93,121,92,104,129,107,99,113,102,104,108,112,107,104,110,105,109,107,109,100,82,100,95,112,103,100,94,101,105,112,113,105,97,104,108,99,95,87,115,108,109,101,103,107,105,100,109,108,113,104,103,106,113,94,105,104,96,93,110,116,107,123,109,74,104,101,97,107,97,105,130,105,100,105,99,105,113,106,113,96,91,95,119,111,98,94,95,108,108,99,106,100,102,101,110,110,86,113,107,106,113,89,106,110,102,111,97,102,108,101,121,98,104,95,103,108,102,100,112,112,99,105,109,101,90,115,82,111,108,105,99,103,119,107,111,104,100,84,99,96,102,111,108,105,109,85,107,103,108,104,101,116,116,96,98,106,90,114,109,102,102,100,94,89,108,105,107,109,90,113,84,106,111,104,110,108,103,93,96,109,104,107,106,114,104,90,99,104,105,112,99,105,103,100,100,112,121,117,98,106,100,101,106,105,103,104,96,109,95,106,98,95,97,103,95,99,115,116,110,108,104,96,103,111,99,107,93,103,101,103,113,96,101,103,115,110,109,103,112,114,108,100,102,106,101,107,106,101,108,107,107,96,118,108,98,87,101,95,95,114,80,84,105,99,106,99,110,122,103,103,111,91,94,102,110,111,98,107,99,110,107,105,95,91,104,113,108,107,108,108,104,111,113,115,114,99,103,95,100,103,104,97,94,105,113,103,104,108,109,103,117,113,116,100,108,105,104,105,98,111,113,111,98,118,107,98,102,104,106,108,100,102,116,120,99,104,107,93,102,119,94,99,98,109,104,112,109,109,101,103,100,112,110,110,79,75,94,130,96,100,105,95,107,105,103,100,97,98,108,104,109,103,109,103,104,103,98,106,111,93,105,111,112,98,120,107,99,95,109,108,104,107,98,119,120,102,107,98,105,96,93,105,102,107,80,93,101,109,100,111,102,107,111,112,109,103,103,105,97,110,90,106,100,112,114,105,71,111,106,97,108,101,114,100,113,91,119,103,100,99,112,95,112,87,107,103,105,113,107,96,113,105,94,103,106,107,110,104,102,99,96,103,102,107,118,117,99,87,103,107,106,103,104,99,93,107,104,104,83,103,98,107,106,105,105,97,98,113,101,90,96,94,95,116,92,99,102,101,111,102,114,108,95,113,90,97,115,107,107,108,103,99,125,100,99,110,111,104,112,93,105,107,106,114,103,111,123,102,114,110,104,109,120,101,115,135,111,121,115,122,119,127,115,114,106,116,111,99,104,105,96,111,112,107,96,104,116,118,107,101,99,110,103,98,108,118,101,117,107,99,105,102,106,107,91,101,103,98,98,96,95,106,112,111,94,102,100,121,94,104,97,95,111,89,108,99,92,102,102,107,103,106,102,97,104,133,94,107,98,102,111,87,92,106,101,108,95,100,102,102,98,101,97,103,99,115,114,97,105,101,98,102,110,108,85,91,98,109,91,121,106,102,106,109,106,113,93,117,107,118,91,102,98,98,109,105,102,93,106,110,111,112,112,109,105,121,104,106,113,109,118,94,111,108,95,99,91,100,103,107,98,104,104,78,108,113,107,119,115,108,110,105,105,103,106,105,106,103,109,115,111,108,99,111,98,108,105,102,108,105,110,103,86,93,92,110,101,97,100,100,111,117,105,103,91,98,100,103,82,110,102,106,102,108,92,112,113,100,114,98,111,112,84,104,111,99,102,109,103,98,100,100,106,101,101,112,105,105,107,98,100,107,104,108,103,117,108,113,105,110,113,95,119,103,103,107,114,100,107,109,105,107,109,110,106,120,104,91,104,99,103,98,108,98,103,107,91,111,106,109,94,116,107,108,94,101,93,109,110,112,94,87,102,99,97,116,95,105,113,100,97,105,89,99,108,101,96,100,111,102,105,125,109,100,92,103,106,104,108,110,109,107,121,95,95,98,90,96,93,110,106,100,121,112,106,98,114,107,103,99,104,95,104,103,102,92,119,100,97,94,111,109,89,104,97,82,101,111,104,99,99,93,95,96,94,100,95,87,93,105,104,94,98,109,110,94,105,104,115,114,106,113,101,101,95,109,107,108,101,113,99,113,106,101,103,112,98,105,106,98,108,95,105,98,92,105,108,102,102,112,107,95,110,94,105,98,109,107,89,113,96,93,112,93,101,94,112,99,98,104,110,101,113,108,104,105,110,114,120,92,99,107,102,104,87,101,99,87,100,106,101,96,111,100,100,98,100,101,119,98,78,95,109,101,103,97,103,92,100,103,97,106,94,102,107,110,112,104,109,104,100,102,94,109,99,104,116,105,103,96,112,106,100,77,102,98,95,112,110,98,104,98,101,96,109,108,101,93,89,91,97,106,106,96,102,115,98,104,86,115,99,95,104,100,98,108,88,108,116,106,109,102,97,109,103,114,102,105,103,109,100,111,101,104,102,121,89,108,112,100,108,102,115,107,93,97,100,103,102,109,113,95,110,98,76,107,94,103,96,100,111,104,101,104,119,101,104,101,112,103,97,96,105,116,104,105,106,110,104,94,111,108,112,105,107,108,99,101,98,97,98,94,99,97,106,118,109,102,113,101,110,103,98,95,115,83,111,97,98,105,110,102,107,95,98,114,96,93,98,124,111,100,100,108,112,93,96,117,106,102,105,90,107,100,103,130,98,105,108,112,103,105,94,92,93,102,108,98,94,115,105,101,104,103,100,110,97,93,115,117,106,93,110,100,107,109,101,120,107,112,104,97,98,102,110,107,99,104,104,98,96,117,99,108,93,103,108,107,101,90,92,107,120,97,99,98,106,98,100,96,99,112,94,114,100,111,113,123,104,110,110,103,113,100,104,103,106,86,98,96,109,100,100,106,108,105,96,101,113,103,98,102,109,100,114,104,94,82,103,105,100,101,105,106,109,89,106,92,108,107,99,103,111,102,113,127,109,93,100,96,111,94,101,76,99,107,107,97,107,98,106,115,83,98,98,104,100,112,101,105,102,101,108,92,108,91,108,104,91,107,110,103,109,104,106,106,105,101,99,106,124,99,93,87,106,108,108,101,106,104,94,99,101,108,104,97,121,105,98,126,97,100,80,102,104,106,102,113,100,103,110,95,98,89,98,99,106,99,101,98,93,109,101,107,96,103,111,115,108,91,100,92,99,99,100,126,102,97,113,101,103,105,108,105,94,95,103,109,112,100,111,104,112,111,100,110,99,117,109,99,102,94,103,102,93,96,104,108,100,107,111,108,107,117,96,110,100,90,105,97,98,110,119,105,104,100,107,88,105,113,105,103,97,96,104,124,87,88,98,99,100,105,106,102,110,106,112,108,100,94,97,98,109,117,98,107,112,108,92,106,106,97,100,96,108,110,80,116,109,106,101,96,104,102,98,95,117,102,106,117,103,107,91,98,109,96,110,103,98,109,101,103,88,100,95,101,117,117,107,95,107,96,105,105,108,96,84,112,102,106,111,107,97,114,97,104,105,105,106,107,96,100,94,84,107,111,106,113,112,104,105,107,117,110,97,89,100,99,109,92,105,99,102,102,109,112,110,97,101,108,110,101,108,91,111,101,115,95,97,100,98,97,114,100,106,95,98,110,101,100,115,95,95,106,115,102,103,97,100,106,96,99,110,102,96,100,123,94,99,103,99,111,112,99,105,100,96,97,108,111,89,103,120,115,104,101,87,93,109,104,100,82,94,100,106,113,96,104,104,111,91,100,117,101,91,104,90,112,114,80,99,104,109,98,104,111,102,102,106,111,107,109,108,115, +615.4024,96,76,92,95,95,91,98,99,90,103,86,99,81,105,100,94,105,115,96,100,109,108,87,105,94,113,94,97,99,99,103,94,85,105,113,105,107,91,123,114,114,73,95,91,109,98,109,99,97,111,113,107,108,111,122,124,99,123,119,95,95,105,115,106,91,103,99,111,102,101,107,112,108,110,90,115,91,113,109,108,100,100,110,98,104,86,120,100,106,102,104,113,98,102,105,121,95,100,105,120,111,106,98,95,107,101,105,105,97,109,98,109,103,103,122,106,98,95,107,108,100,104,96,109,107,101,114,95,100,110,101,103,103,95,107,110,96,103,97,95,102,103,106,107,103,97,109,113,94,96,110,108,111,117,94,120,108,111,100,96,104,99,91,115,104,109,111,93,117,106,106,113,94,94,103,105,98,88,104,108,109,107,113,99,108,81,91,97,106,98,101,113,99,99,90,95,109,105,102,106,93,124,104,99,111,98,96,102,110,112,71,99,109,106,96,100,101,106,108,117,98,119,95,111,94,112,111,106,110,88,99,101,100,109,104,102,105,115,101,95,103,102,118,95,99,89,92,104,101,94,118,104,95,105,103,112,85,116,102,117,91,121,122,107,101,89,113,114,90,108,95,102,105,102,109,109,103,115,101,100,113,90,104,107,107,107,98,115,100,98,103,101,109,109,118,103,106,105,100,95,89,71,106,109,104,107,110,101,100,105,108,116,107,113,99,96,103,108,100,100,105,95,106,116,106,108,83,96,111,110,108,99,132,99,96,113,107,100,96,120,97,98,118,100,115,87,116,109,101,103,109,114,115,107,107,106,94,110,114,101,108,110,110,98,93,102,126,109,94,98,108,111,116,119,112,109,109,113,106,98,107,117,94,104,103,92,107,99,93,99,98,106,107,105,100,105,99,116,104,88,100,113,82,101,113,95,100,99,101,110,107,100,102,115,103,98,106,78,107,88,108,108,101,95,102,83,106,96,96,99,106,92,112,112,115,102,100,107,96,102,104,109,107,108,109,94,101,111,105,89,107,102,104,107,109,107,96,105,96,102,107,100,103,103,104,111,111,101,117,99,103,110,100,100,100,100,98,113,123,99,104,109,108,98,114,103,116,108,66,103,109,98,102,109,95,106,112,96,106,102,108,105,103,106,100,106,96,103,99,108,106,97,111,109,104,102,106,99,105,110,104,116,103,101,104,97,111,113,105,93,109,111,104,90,110,99,99,104,102,103,94,103,104,101,100,99,71,102,113,127,103,100,114,113,103,87,107,99,111,109,91,96,98,112,110,109,114,103,105,100,105,107,102,105,107,108,102,123,104,113,106,105,103,99,111,98,99,105,103,104,108,112,97,117,107,105,104,106,110,104,102,114,105,101,112,103,87,106,121,108,105,105,91,103,107,97,102,108,109,111,128,115,114,109,100,98,105,100,113,73,95,104,103,109,102,105,99,95,108,99,97,110,100,107,104,94,100,103,113,118,108,109,101,115,105,103,100,105,111,109,70,105,102,100,109,92,103,94,121,109,113,100,100,98,107,101,117,98,106,93,95,103,84,113,111,108,122,101,98,111,107,104,103,105,107,99,110,100,111,108,106,100,100,108,107,104,85,94,113,112,100,92,111,104,102,100,103,96,101,107,104,108,102,101,107,95,107,85,103,120,108,110,86,101,86,101,109,109,103,94,104,102,96,104,111,97,116,67,108,110,112,95,106,96,105,105,104,102,111,74,101,104,120,84,102,111,104,116,102,97,105,94,106,108,114,117,108,111,98,116,102,106,113,104,113,107,96,115,106,114,98,102,107,108,113,91,110,114,108,107,112,105,97,102,111,108,109,105,106,101,114,107,107,108,108,103,99,115,110,109,117,91,93,121,108,108,105,96,118,98,111,112,99,104,109,110,96,97,113,109,92,117,76,105,107,93,105,95,101,106,109,103,105,101,103,105,113,101,104,103,108,111,114,96,103,92,93,99,109,100,89,102,105,108,97,107,100,94,104,106,95,113,108,107,103,98,105,103,113,80,104,103,99,105,105,106,101,114,112,117,104,112,109,107,102,105,101,109,98,99,118,106,110,116,119,102,98,99,108,97,113,110,94,107,102,108,104,112,102,111,100,111,96,101,82,103,103,104,111,118,105,110,99,115,110,100,107,107,107,111,96,104,112,105,99,97,97,111,104,105,120,124,104,109,99,102,102,101,122,106,114,112,104,102,105,113,110,89,104,101,103,106,103,110,114,101,94,121,103,108,99,105,113,102,114,99,105,100,94,115,92,91,102,89,107,104,103,108,107,113,101,119,104,115,114,105,111,104,109,108,111,88,102,99,93,98,90,101,93,116,110,97,108,108,112,107,113,108,100,104,109,113,105,104,100,122,106,120,108,130,125,132,105,116,106,114,111,118,109,112,104,113,111,114,104,113,99,111,102,100,95,100,105,110,121,93,92,110,104,101,97,106,109,91,115,95,132,107,112,99,106,108,114,110,97,102,110,109,101,110,123,113,107,105,93,106,106,100,105,108,100,111,91,105,117,106,105,108,102,105,98,101,109,100,110,106,100,93,111,106,100,109,93,108,102,114,102,101,111,101,98,109,94,113,107,94,106,107,107,97,98,103,109,107,94,107,108,112,99,102,111,112,113,97,111,112,102,110,106,104,108,91,107,108,96,107,105,68,116,109,115,107,99,110,109,111,116,104,105,105,102,100,105,106,97,85,112,97,102,115,98,110,114,103,96,111,99,99,117,95,98,116,105,108,117,109,116,112,100,100,99,112,108,117,95,82,101,97,112,94,96,106,102,109,106,103,116,110,109,96,118,108,107,102,107,105,111,109,101,100,119,107,113,108,112,105,108,104,108,119,120,94,113,101,104,101,107,101,97,112,117,109,104,102,107,101,105,103,109,113,119,101,106,94,104,99,102,111,104,103,103,113,102,107,116,117,96,116,112,117,109,108,105,105,110,99,90,121,119,107,108,102,102,104,113,126,118,109,113,116,110,111,108,101,113,110,110,97,112,103,100,102,114,93,114,112,108,96,110,101,96,113,113,101,108,103,104,107,106,97,101,105,100,68,95,103,102,100,106,91,93,116,109,107,105,98,104,109,112,105,117,102,104,113,100,98,103,106,103,106,103,96,98,111,107,108,98,112,103,101,106,109,103,113,116,100,117,116,110,98,103,113,100,110,99,95,99,89,98,106,109,104,118,83,108,102,100,105,106,108,129,97,94,104,110,101,112,96,112,111,98,104,110,126,121,95,99,115,106,110,109,107,114,113,112,116,112,113,102,117,110,106,103,110,109,101,107,108,99,116,118,117,115,103,106,111,109,99,104,99,104,108,110,101,91,93,106,109,128,99,102,102,99,102,111,106,107,103,97,98,113,105,107,97,106,113,108,107,112,110,94,109,110,111,104,115,110,111,107,107,96,103,112,116,99,111,100,106,103,113,107,113,96,106,111,112,106,104,110,88,115,109,99,99,95,113,101,113,112,87,109,105,109,83,104,109,109,106,99,93,111,107,124,124,114,116,102,112,112,109,100,110,109,106,109,102,98,95,114,112,103,90,105,105,112,113,102,117,106,101,98,98,99,113,106,111,98,84,97,108,88,100,110,105,109,100,100,105,101,107,105,110,117,107,109,105,112,115,104,96,100,102,105,113,109,100,106,111,99,98,108,110,105,106,112,114,113,100,98,112,100,102,113,113,118,95,109,102,110,107,101,97,112,109,107,96,107,112,103,99,102,109,87,91,115,100,110,110,109,99,107,102,111,109,116,110,112,100,106,103,105,100,95,102,107,101,100,108,136,108,114,103,107,102,121,117,117,102,119,111,104,112,95,112,112,106,103,96,111,105,105,102,91,70,112,110,111,106,102,96,109,117,113,107,114,112,103,97,92,103,81,97,105,115,108,96,105,105,104,96,111,109,118,101,104,113,106,100,99,111,108,95,98,105,101,108,105,104,110,97,108,111,119,102,109,115,101,108,123,109,109,104,69,98,111,105,105,104,98,107,99,106,102,108,91,110,112,108,117,103,111,103,104,101,112,103,103,115,105,111,115,103,100,94,103,91,109,110,96,98,111,108,105,101,111,106,102,106,118,102,94,99,108,85,110,105,112,106,104,112,108,98,94,120,111,96,104,99,104,103,87,102,104,99,109,95,108,103,96,104,98,105,103,114,96,106,77,103,112,109,101,103,98,117,98,78,95,111,109,69,108,104,103,109,119,104,118,100,107,103,102,94,105,95,114,105,101,107,102,102,105,105,112,105,103,113,76,112,94,100,96,102,109,112,97,110,102,108,102,112,101,99,115,107,109,100,104,105,113,108,102,81,101,96,102,117,99,99,109,124,104,112,120,104,101,94,105,100,117,96,99,107,105,72,100,105,99,112,99,86,100,99,103,103,100,102,96,102,106,100,116,113,98,113,101,99,96,106,105,99,128,117,106,103,101,98,106,100,102,100,109,95,95,102,111,106,104,99,100,97,105,90,83,111,93,106,104,116,88,102,109,108,107,94,102,110,101,100,101,100,102,105,112,95,103,109,85,103,110,101,106,102,111,94,107,118,106,115,87,95,108,109,105,110,106,110,105,103,117,115,104,117,100,97,88,105,101,109,111,105,99,142,100,97,97,98,104,96,110,103,100,106,108,103,100,111,100,99,113,102,104,98,105,108,99,83,93,117,106,108,99,137,105,90,112,101,97,101,115,103,90,93,108,107,96,96,100,104,96,109,112,94,100,106,101,98,113,118,113,102,97,105,97,94,87,105,109,99,97,99,95,87,109,102,104,88,110,114,101,99,100,95,112,134,114,98,101,112,113,96,110,104,99,102,97,106,90,101,103,100,103,114,100,97,107,105,90,106,98,98,99,104,104,99,109,84,93,98,99,110, +615.54352,114,115,95,106,99,107,94,102,93,114,106,102,103,107,96,113,101,95,103,104,109,95,113,101,100,101,100,108,100,104,100,88,102,93,95,102,102,104,104,125,99,112,113,104,98,100,104,78,90,96,102,110,97,108,88,112,106,89,87,110,105,98,98,100,101,107,101,110,95,87,105,116,107,105,88,104,114,94,103,107,100,107,102,109,97,106,77,103,109,89,98,97,102,112,131,105,99,97,112,110,100,124,103,109,107,103,92,95,101,90,109,86,117,87,106,100,94,96,113,108,102,97,92,115,97,100,80,92,86,104,102,87,90,104,102,97,101,124,80,100,119,95,104,101,101,100,105,105,88,104,115,93,108,94,97,98,101,104,92,105,102,106,111,103,100,102,107,86,101,102,108,110,102,86,104,91,95,105,101,99,103,93,103,113,92,102,92,105,72,108,87,110,109,104,89,101,99,100,104,86,105,100,109,101,101,111,110,102,114,99,100,104,103,96,95,113,109,104,104,86,101,115,93,97,105,107,110,107,114,108,111,116,106,105,104,113,94,112,108,105,105,102,106,107,103,99,110,106,99,116,118,102,104,101,98,103,100,102,97,118,97,105,109,97,110,99,112,110,105,92,103,95,109,108,100,110,112,112,91,102,109,99,108,100,108,94,106,111,118,105,95,93,94,116,112,104,108,85,104,118,86,114,106,101,109,99,107,107,103,108,98,107,104,104,112,104,94,109,101,112,114,93,103,92,100,106,109,100,104,110,91,97,106,104,100,95,99,106,95,112,116,98,100,96,89,105,86,109,117,121,102,94,106,93,99,96,106,123,99,107,105,97,101,109,84,100,104,102,104,102,106,100,113,101,105,117,88,91,108,111,102,108,112,115,107,78,104,106,96,95,95,111,108,112,91,100,110,104,107,102,92,99,102,128,112,91,104,107,112,102,79,107,109,91,107,104,98,102,114,105,104,104,114,98,102,103,108,102,99,112,98,112,112,101,94,98,99,108,105,100,112,99,111,109,110,102,118,101,112,107,97,104,108,116,109,101,104,103,111,99,98,103,116,116,116,102,100,94,93,91,116,81,99,90,99,108,92,114,94,87,109,115,105,100,96,107,99,113,109,102,98,105,102,99,102,106,105,108,109,105,105,102,102,100,100,107,101,84,122,97,106,111,101,100,102,109,113,102,104,101,94,96,99,96,104,102,106,110,100,98,105,106,110,104,92,102,100,101,100,114,99,100,91,96,100,105,112,104,100,109,103,109,105,98,84,102,105,94,89,103,103,99,105,104,90,99,103,102,92,98,102,107,105,105,100,109,102,96,93,100,107,96,99,105,108,93,109,101,112,112,106,98,105,99,110,104,99,105,99,96,107,103,93,96,105,101,103,105,104,78,91,104,100,107,110,104,111,102,106,96,103,107,102,98,111,99,105,101,108,92,102,99,109,113,101,104,115,108,104,101,104,99,99,106,112,95,114,109,102,108,101,107,112,96,103,110,112,107,110,93,66,113,99,102,100,111,79,81,113,103,115,117,108,113,109,105,113,94,107,102,97,110,108,115,102,91,105,93,113,103,82,90,92,114,111,98,108,96,136,93,109,103,97,97,101,118,106,108,97,103,103,97,102,105,111,99,111,99,93,93,104,108,81,109,95,98,102,106,123,103,87,99,112,104,111,103,104,101,104,112,108,102,104,107,106,113,98,103,106,98,104,108,114,101,106,109,116,105,95,98,105,103,104,100,95,97,93,113,105,89,109,91,102,107,92,113,104,100,98,102,122,96,99,112,100,107,100,108,108,103,109,124,106,96,94,110,109,104,112,101,102,104,100,83,98,108,117,99,118,108,103,105,109,95,107,121,108,107,109,113,106,112,102,103,102,108,103,100,102,106,100,102,103,109,117,99,97,95,110,106,116,125,101,100,105,96,107,92,101,105,110,87,99,100,84,113,114,98,86,105,95,96,98,106,98,98,96,96,93,113,104,115,95,110,102,98,109,96,108,100,102,120,106,117,104,112,96,107,126,102,103,100,113,105,108,101,109,91,102,100,99,102,112,87,97,94,103,95,106,101,95,104,97,104,106,115,98,107,104,106,96,85,100,107,97,102,106,106,111,98,106,105,107,104,110,96,94,96,94,99,101,100,108,93,101,108,109,112,86,112,96,96,108,103,101,102,112,100,102,117,106,112,95,90,97,108,93,108,110,103,95,97,100,96,113,104,107,97,95,108,111,112,102,102,105,109,102,109,95,124,108,92,103,104,99,105,90,98,107,106,95,89,82,79,96,102,107,95,100,100,103,116,112,97,104,98,103,96,108,79,124,102,96,94,106,97,100,89,109,102,111,101,100,91,110,101,106,109,121,120,121,104,117,112,107,114,111,112,128,111,117,105,105,111,91,117,94,112,102,104,107,110,102,110,108,115,112,101,100,110,114,103,99,96,105,105,96,118,102,100,126,108,112,99,106,109,107,105,127,116,102,99,109,106,105,102,108,103,90,96,110,100,108,109,110,113,100,106,110,104,99,112,106,108,128,103,106,103,97,103,112,110,99,106,99,99,94,108,103,112,115,113,118,111,105,112,102,93,102,95,95,100,98,113,96,102,106,99,86,100,115,125,107,108,112,104,106,102,105,121,113,111,121,96,96,106,85,102,111,96,128,97,83,118,97,113,92,108,105,106,116,103,104,113,104,101,98,99,67,105,95,102,108,106,101,109,91,97,115,103,102,111,118,108,113,112,109,106,103,101,102,103,101,99,102,104,98,124,102,95,109,119,115,108,109,90,100,104,107,104,95,109,110,99,102,107,99,88,121,102,113,104,109,101,107,103,108,110,101,94,113,108,102,111,97,109,102,106,110,105,108,96,109,112,96,98,110,97,95,107,123,105,105,110,112,106,116,96,97,97,108,104,114,98,109,116,92,105,108,111,103,100,102,106,98,100,112,94,107,101,85,94,100,104,107,93,109,99,109,106,93,104,103,101,100,109,97,99,113,100,100,98,84,108,106,125,106,111,92,104,106,96,101,101,110,95,104,112,101,117,94,112,106,94,107,111,104,92,101,84,104,118,98,113,96,115,102,101,112,106,105,110,123,105,124,100,117,108,118,97,105,116,105,105,95,106,93,108,95,110,99,97,108,101,114,103,100,88,111,102,82,114,115,111,112,88,95,102,106,117,119,117,108,113,98,110,110,108,108,111,111,104,100,95,112,89,100,101,114,111,119,106,102,105,103,101,110,103,107,106,132,116,115,106,105,102,105,85,103,102,108,101,116,108,96,100,105,105,100,95,93,109,111,99,98,106,82,100,116,111,98,105,94,102,105,108,116,101,95,102,94,108,88,137,113,101,108,98,104,121,95,105,79,107,74,99,103,108,108,101,116,107,119,109,98,105,99,103,102,98,97,103,107,106,108,107,106,106,102,109,96,107,104,108,109,99,106,95,94,99,106,113,96,106,69,99,107,95,99,106,101,110,104,103,103,103,108,106,102,101,103,90,99,126,112,110,99,100,113,101,116,112,98,99,115,98,111,103,108,101,100,110,105,111,107,100,97,109,104,105,99,109,94,118,130,87,107,103,105,101,100,115,94,111,106,105,94,81,102,91,103,108,114,104,114,107,109,91,100,94,90,103,118,116,99,104,119,95,104,114,102,97,96,118,95,98,90,110,103,92,93,107,112,104,95,77,98,98,103,115,106,103,109,113,98,96,102,112,106,93,102,103,112,103,105,96,122,91,109,103,102,107,105,96,117,107,113,101,110,106,98,92,105,105,103,106,104,106,109,102,105,113,106,105,102,90,107,112,102,102,103,101,111,106,124,112,107,100,109,97,95,95,97,107,113,105,125,110,106,95,112,98,108,103,109,100,133,107,68,109,107,104,103,90,106,110,105,101,91,94,112,107,118,104,103,89,102,101,115,88,100,106,107,103,99,109,107,110,94,104,105,106,97,106,107,106,100,100,112,98,91,101,95,110,101,101,101,91,109,119,90,103,101,101,105,116,109,102,112,102,95,105,104,93,109,120,113,131,124,106,113,103,103,112,110,104,100,92,98,111,113,106,115,95,106,109,101,112,100,109,112,101,104,114,124,110,99,102,100,116,91,102,102,103,109,101,99,108,102,109,95,96,88,109,108,108,122,104,96,114,106,109,101,108,104,105,109,107,98,91,118,109,113,100,94,102,124,126,108,98,94,103,97,101,105,100,104,95,97,103,90,98,117,112,110,100,103,84,99,125,87,96,111,100,100,98,99,109,101,97,93,108,117,101,99,100,87,102,92,103,98,107,117,105,101,108,109,97,109,111,106,104,116,113,110,94,109,83,92,102,101,95,108,112,101,100,103,102,111,120,99,102,103,111,94,117,108,96,116,109,102,107,113,108,100,103,106,110,110,109,122,98,112,105,97,112,103,103,100,97,106,99,104,116,109,98,94,108,107,105,96,94,99,117,110,91,103,102,104,102,102,109,103,111,110,113,102,116,103,101,103,104,100,110,124,99,107,106,102,98,97,118,106,102,106,97,116,112,103,95,93,121,114,93,103,101,99,101,102,105,104,105,113,112,112,110,105,106,111,104,115,98,96,111,88,103,104,111,104,106,96,110,111,85,98,112,102,102,113,104,105,97,107,100,107,109,112,116,108,102,99,107,110,101,108,98,99,112,99,94,105,99,103,119,119,95,83,119,99,118,109,103,116,116,103,98,106,95,108,102,92,100,107,94,115,103,108,95,100,105,105,105,101,104,90,101,97,108,106,98,97,107,110,117,103,111,105,109,102,104,104,102,97,103,100,108,100,109,107,97,114,100,95,95,109,82,94,111,102,105,110,101,98,94,92,109,108,95,112,84,106,99,104,94,96,97,108,117,89,98,121,101,98,107,105,97,128,113,98,110, +615.68457,109,111,100,104,97,109,110,105,111,94,109,103,109,97,109,100,104,124,118,118,109,111,108,102,105,110,104,110,108,105,105,104,99,111,104,114,106,122,101,109,94,103,113,104,106,112,99,110,103,116,109,109,107,105,98,125,91,117,105,112,108,111,100,103,107,103,98,91,100,104,111,103,99,101,105,116,114,90,100,107,106,103,112,111,95,110,98,101,101,93,100,113,107,100,90,109,102,107,101,105,91,110,90,107,113,110,120,110,101,100,108,91,103,115,107,108,99,97,111,111,108,104,111,102,105,88,103,105,110,114,105,94,99,102,105,123,101,110,90,106,106,101,95,99,110,108,109,94,104,100,110,120,111,95,104,108,114,106,106,102,101,103,109,103,103,103,117,89,107,105,111,108,111,114,114,107,100,88,114,118,107,109,95,99,102,92,98,96,112,117,108,85,95,108,101,98,115,101,104,107,108,107,112,121,116,102,108,104,111,106,107,111,95,105,112,104,113,111,80,106,109,111,94,114,121,108,116,104,124,112,97,102,113,105,116,119,99,108,101,101,122,119,107,108,101,109,115,116,103,109,105,110,100,98,100,113,100,104,113,91,103,116,116,98,94,108,112,108,98,106,103,110,106,104,109,112,100,109,103,123,121,105,114,103,105,105,105,106,101,89,113,106,113,111,127,102,107,99,109,102,100,109,107,93,110,114,102,112,109,94,102,106,109,96,98,108,106,99,108,105,101,95,110,113,122,110,93,106,100,115,111,98,100,104,112,105,100,101,98,105,107,97,99,96,92,106,108,106,109,103,97,103,115,110,111,107,111,96,107,105,112,100,97,109,100,104,112,113,111,114,107,107,107,113,107,103,114,106,106,106,103,103,125,119,95,94,99,102,111,120,124,111,107,109,112,111,102,117,108,126,113,105,97,89,76,116,104,104,118,110,90,104,112,100,87,108,112,115,95,119,104,106,97,116,105,102,107,108,96,121,111,108,105,107,100,117,107,97,93,103,108,103,101,85,116,111,97,111,112,112,105,111,116,107,84,105,118,103,111,109,103,103,102,107,99,102,111,133,107,108,113,113,108,104,109,102,105,112,101,117,99,108,110,109,113,100,104,101,101,99,108,106,108,99,98,103,80,117,114,113,111,108,105,101,112,92,110,106,112,103,98,106,97,116,113,112,106,108,103,104,116,105,107,111,94,112,104,109,118,104,112,103,104,109,104,100,107,109,109,112,96,100,112,113,110,118,90,124,119,105,109,107,100,105,105,97,109,102,102,103,104,102,95,114,103,103,117,71,108,102,97,132,103,104,109,101,113,98,101,117,111,111,130,92,100,101,104,124,110,103,93,91,101,106,102,103,107,109,114,98,115,95,113,111,110,103,103,99,99,118,115,104,111,103,124,102,107,113,106,118,104,111,106,116,85,102,99,116,103,109,102,96,108,120,106,112,102,101,99,112,103,95,109,107,100,108,96,104,110,107,99,122,108,104,103,121,102,107,109,94,107,108,92,107,108,97,101,101,105,97,113,106,104,107,98,110,117,95,116,102,103,105,125,105,114,101,116,104,102,118,112,112,104,113,104,107,116,127,96,106,101,107,104,116,113,112,115,99,96,110,89,117,112,131,107,95,103,100,105,121,105,78,88,102,96,121,99,107,101,108,108,112,106,105,95,121,119,113,113,107,112,105,105,133,112,106,123,102,110,97,116,104,91,100,100,107,100,107,109,105,103,91,116,106,90,101,93,98,100,100,115,111,120,108,106,111,104,107,98,99,116,111,116,110,99,106,103,108,111,120,104,107,105,109,103,109,107,117,107,115,113,105,100,107,110,113,118,106,107,98,114,110,110,104,101,99,104,95,107,109,112,112,101,112,99,110,101,98,104,111,102,103,118,109,107,107,96,108,111,113,99,98,111,108,105,105,114,107,108,88,106,102,105,113,106,114,100,109,123,93,105,105,103,110,109,108,97,98,118,100,102,103,96,100,117,110,111,96,103,102,109,103,113,105,112,112,106,94,109,96,112,115,106,104,105,122,114,105,108,123,105,110,108,114,101,110,110,96,112,113,104,111,107,102,105,98,96,98,99,106,109,126,101,114,123,111,104,108,116,105,113,98,118,109,108,95,106,106,104,116,107,112,106,114,99,93,106,99,104,111,107,89,122,107,103,99,85,101,95,104,102,114,106,108,115,91,90,103,112,111,111,98,112,105,99,106,103,109,109,95,100,105,112,100,102,101,106,117,96,104,105,120,108,109,109,112,101,120,94,74,102,102,104,95,112,106,121,94,99,106,96,103,99,120,101,109,105,111,104,95,99,114,106,112,92,68,74,102,107,110,118,108,104,101,98,97,110,112,114,107,115,118,113,139,121,147,115,121,126,126,129,114,115,109,114,118,113,116,104,102,116,103,102,109,104,112,108,108,111,90,97,105,100,111,122,103,103,111,99,105,92,98,103,92,110,103,96,113,110,115,100,103,94,101,109,103,89,102,106,103,110,95,98,109,97,100,136,99,105,114,103,116,96,110,110,111,92,119,102,104,102,98,97,107,96,109,94,113,101,93,101,105,101,108,113,112,108,96,102,103,104,106,95,104,102,95,106,116,102,104,107,101,99,116,103,105,115,101,105,107,105,106,115,118,98,107,114,101,113,102,96,103,108,111,107,102,105,98,120,108,111,106,101,109,113,114,104,111,107,106,99,115,104,113,100,105,104,75,102,99,110,112,108,101,126,104,110,103,104,111,100,103,107,99,109,112,109,109,95,108,100,96,99,97,108,103,106,98,106,96,103,112,100,109,87,98,99,91,104,106,103,94,111,93,111,99,113,114,103,102,109,117,118,100,97,103,102,110,105,97,102,101,112,122,108,98,103,117,106,106,106,103,107,122,102,80,98,99,100,118,129,109,106,89,112,107,98,102,115,121,96,107,98,98,108,98,106,104,108,103,101,113,111,109,110,102,107,102,85,106,117,118,91,107,95,102,95,113,109,94,113,103,104,113,117,99,94,105,87,107,100,97,95,106,112,97,106,107,100,109,112,105,102,101,110,109,108,106,114,101,108,121,101,104,96,108,114,102,113,94,98,108,107,108,116,101,106,99,68,107,111,106,95,113,115,113,94,100,99,83,100,107,101,98,92,111,94,110,112,105,94,104,101,104,99,105,97,106,104,88,106,102,100,107,95,112,107,102,101,106,109,117,112,99,102,99,102,94,110,112,128,98,92,93,104,106,102,104,108,104,109,100,103,110,118,92,105,97,98,93,109,104,104,93,109,105,91,105,114,106,121,105,103,104,100,107,107,94,109,103,105,96,98,118,105,103,97,103,98,100,104,102,92,106,88,98,100,98,99,101,111,106,113,93,102,101,96,100,98,102,103,110,98,107,109,96,106,105,106,109,92,101,104,117,100,105,106,100,91,111,102,103,104,112,105,107,106,112,112,102,96,92,112,96,102,94,108,93,108,111,104,105,104,103,105,107,103,98,120,93,114,98,98,96,144,108,105,105,108,95,95,95,95,104,102,106,120,112,109,103,100,100,100,100,99,102,104,91,111,104,112,107,107,108,111,113,107,111,102,96,99,104,108,103,116,105,96,126,108,104,99,107,108,101,107,86,107,105,101,111,119,99,114,104,96,118,91,98,114,110,114,107,110,112,105,107,119,126,117,112,120,112,113,111,113,107,122,113,106,103,113,91,105,106,105,93,103,121,99,83,102,104,109,89,106,86,101,115,103,116,102,101,96,109,113,102,93,103,100,113,115,116,94,106,102,101,117,101,108,99,109,110,104,124,109,122,105,120,105,103,121,108,99,109,89,103,103,102,97,110,103,113,95,102,105,108,106,102,116,104,99,98,103,111,104,99,98,109,98,88,113,101,127,94,107,96,116,106,103,120,94,110,100,96,103,109,104,103,95,102,106,97,102,69,103,125,101,103,112,99,102,97,99,120,104,102,107,106,91,133,102,99,106,102,100,94,88,102,99,105,102,99,96,102,98,100,96,106,101,101,108,105,91,93,97,100,108,93,100,91,110,112,101,105,109,96,99,124,116,109,108,105,108,89,101,111,112,101,98,112,113,126,111,106,99,109,84,99,107,116,115,104,107,96,98,110,108,109,110,114,110,91,111,104,94,113,96,109,104,108,102,98,109,102,124,105,101,110,120,101,120,97,108,103,108,103,106,102,109,115,117,122,99,97,99,87,97,106,109,108,109,99,113,112,95,112,113,108,99,104,106,103,97,92,106,103,106,103,113,101,116,108,112,99,94,89,113,96,94,106,101,89,105,108,108,112,112,110,103,109,106,107,107,140,109,115,117,89,87,107,113,106,109,104,111,93,106,103,100,109,95,92,98,106,97,83,112,107,122,99,98,110,108,109,110,88,98,111,117,85,91,100,108,93,103,111,98,105,103,97,116,109,93,97,92,94,101,98,102,109,105,112,99,97,95,99,99,102,101,105,87,93,101,105,114,105,120,111,100,106,101,96,102,113,107,96,103,105,104,106,104,96,100,107,102,100,103,107,113,105,79,109,83,101,105,111,105,95,102,102,104,108,107,106,113,109,94,115,93,91,110,97,117,109,111,109,105,96,104,105,91,116,107,101,102,115,92,109,110,101,95,93,98,98,110,100,111,104,103,92,89,96,98,109,103,115,105,96,110,105,108,99,105,112,97,100,83,116,97,104,105,101,133,91,98,94,100,92,94,99,103,92,94,116,102,108,105,110,98,94,118,111,114,103,107,102,106,85,112,125,121,105,105,98,103,100,112,93,110,88,102,119,104,112,95,88,117,106,101,84,107,104,97,114,96,105,99,103,100,91,103,124,103,117,92,107,128,98,120,94,106,121,95,100,109,94,113,99,113,86,127,98,114,109,95,101,117,92,80,93, +615.82568,105,85,121,115,88,99,98,97,120,97,107,111,96,91,112,118,103,98,101,102,125,106,93,87,103,122,97,113,107,108,96,103,99,88,110,102,88,98,106,95,123,106,93,105,97,115,98,135,117,105,101,99,102,103,93,100,107,101,105,95,115,100,102,95,105,102,105,108,97,114,103,97,113,95,99,113,105,116,111,104,98,121,102,102,114,97,111,96,103,105,106,98,104,94,95,137,103,103,107,102,109,101,96,112,97,100,111,98,90,105,109,103,120,102,105,106,112,97,100,99,109,97,95,108,110,97,104,90,114,104,106,107,94,110,94,108,101,105,100,109,98,110,102,101,104,129,109,108,113,105,98,108,102,108,101,113,109,112,93,98,122,121,104,104,121,108,114,116,108,111,105,101,101,98,108,121,99,101,92,111,99,110,102,107,108,83,104,100,106,97,110,103,96,106,97,114,98,108,105,104,105,99,110,105,104,106,107,104,109,99,118,103,109,109,100,103,101,104,115,111,109,101,106,104,96,100,105,109,115,122,93,67,102,114,114,101,107,96,112,107,104,107,118,109,103,87,94,108,106,97,104,110,94,110,100,86,86,99,104,115,96,112,96,98,110,103,106,111,111,98,108,80,104,118,110,113,104,104,103,106,102,97,95,116,108,112,97,99,116,100,104,106,102,102,116,110,102,101,114,105,110,105,105,108,92,107,112,105,103,108,97,115,103,109,93,107,111,96,95,66,100,118,102,131,109,107,102,97,99,106,106,108,105,102,87,107,106,108,99,115,104,102,81,101,104,104,102,106,108,117,99,101,113,103,110,101,104,109,99,118,105,119,97,97,97,113,85,94,103,99,113,103,109,105,109,110,117,94,101,105,106,97,100,96,99,91,101,93,108,108,109,103,118,102,83,101,91,101,98,108,101,103,108,101,99,102,131,108,99,101,112,102,96,107,97,103,107,103,99,104,101,113,100,114,101,88,98,97,105,107,88,114,102,113,102,101,94,104,103,115,107,108,103,99,103,107,104,114,109,116,106,107,113,100,100,92,101,112,110,103,98,99,104,100,118,125,107,92,107,99,100,111,111,106,112,110,98,103,95,108,115,115,117,98,100,106,109,107,99,107,94,99,109,104,92,105,107,98,114,97,109,109,101,103,101,110,109,108,107,106,96,112,103,116,102,113,108,110,97,108,110,109,100,110,104,113,114,103,102,105,100,118,118,105,115,106,113,109,102,99,107,112,106,104,103,113,106,99,110,103,101,103,99,102,97,90,105,88,111,106,101,104,100,121,106,116,91,102,104,113,103,105,95,98,95,117,102,92,101,103,85,106,100,106,105,93,103,108,113,98,110,96,102,114,115,105,99,107,107,100,101,107,99,87,102,102,114,99,88,110,110,110,106,113,112,114,102,104,106,82,106,107,123,120,108,93,96,92,101,106,100,97,96,107,92,104,101,108,110,96,100,99,102,105,101,82,102,87,116,97,95,92,103,99,103,104,107,120,104,104,103,109,111,101,102,94,101,90,95,107,107,105,105,101,98,99,100,100,125,103,104,95,113,101,99,86,98,99,108,108,95,102,98,112,105,114,97,107,99,99,111,98,99,94,93,100,97,103,102,103,99,99,102,100,105,111,99,105,103,101,94,90,93,100,95,101,101,101,94,113,106,101,104,98,103,102,94,101,106,96,101,98,99,103,91,103,107,107,103,105,106,91,102,95,109,92,97,97,104,97,88,102,95,99,98,99,100,99,103,98,113,106,95,99,104,105,113,108,83,109,124,93,102,104,104,122,105,113,104,117,100,110,98,117,104,117,94,119,104,107,98,107,107,99,111,117,101,107,114,104,108,110,101,115,102,103,93,101,99,108,114,101,106,105,114,116,101,119,105,117,104,107,113,102,102,110,105,95,93,119,90,105,98,97,97,99,114,98,100,95,113,103,107,100,87,106,97,105,79,110,103,100,94,102,99,102,99,109,104,104,100,107,105,95,103,104,96,125,100,99,98,119,104,102,99,106,91,105,92,110,99,105,104,124,102,94,100,96,107,107,93,112,98,110,102,93,103,96,95,100,82,97,119,105,104,95,95,112,98,109,99,102,103,102,104,104,104,92,107,108,98,99,107,120,99,87,93,114,99,95,96,102,97,92,101,91,109,95,107,107,118,98,105,100,95,108,105,104,108,87,116,108,90,91,110,103,100,91,103,106,91,108,105,106,105,105,95,99,108,101,106,100,101,98,99,91,97,88,102,98,96,101,107,100,103,98,99,102,91,115,117,113,109,95,107,103,101,109,101,103,104,125,84,88,102,98,100,102,109,105,121,91,104,97,102,107,88,102,101,106,103,91,113,101,110,98,106,115,102,107,107,105,126,100,119,114,126,99,110,90,103,111,110,121,114,117,110,97,93,102,122,105,104,93,106,101,99,108,99,105,71,106,105,109,108,109,108,98,101,103,95,93,91,106,114,105,91,80,104,91,109,100,110,101,96,102,101,96,99,109,100,109,99,100,99,112,106,103,105,101,112,124,105,109,116,103,108,110,100,102,101,113,89,103,120,102,98,116,106,112,108,103,116,116,121,97,109,105,102,106,106,91,100,112,104,99,94,98,121,106,109,103,109,112,100,109,118,112,98,115,108,96,114,107,108,103,104,98,110,106,83,95,107,100,100,110,103,108,105,94,100,98,100,102,108,105,105,107,109,107,102,114,102,102,99,98,91,108,104,98,109,106,110,104,100,107,108,99,89,108,102,111,96,109,112,120,102,110,104,88,106,99,106,102,99,103,110,102,127,103,103,103,104,106,112,104,107,96,99,110,98,109,110,93,103,103,104,100,107,111,111,117,102,98,109,113,117,101,85,116,119,90,102,111,101,115,108,105,110,106,103,113,96,107,119,97,108,108,108,109,105,100,117,97,113,109,104,106,97,116,103,102,97,108,104,98,95,105,109,107,108,108,112,101,94,96,107,113,97,112,112,92,101,91,101,118,104,100,103,115,104,110,101,92,97,99,109,99,113,91,102,102,103,100,122,73,112,106,98,101,102,113,112,105,98,99,99,114,105,95,102,121,108,105,104,94,117,110,103,113,111,115,110,91,104,98,111,98,106,96,90,103,113,103,118,112,100,97,105,104,112,99,122,106,106,108,104,106,96,116,105,96,102,113,101,98,110,104,108,101,104,106,87,111,99,94,115,108,106,99,98,104,103,103,103,84,96,100,94,99,99,107,101,110,111,120,98,101,114,106,97,100,107,128,109,108,86,110,98,108,115,105,109,98,81,104,115,100,109,96,105,93,94,116,99,104,102,116,104,113,103,105,101,106,95,110,100,116,102,111,110,97,97,105,108,107,99,101,106,117,102,101,94,107,110,108,104,99,109,98,106,110,107,113,99,107,106,118,114,94,95,101,105,96,111,110,101,110,106,101,103,103,99,96,97,94,101,102,97,109,102,103,106,83,98,97,113,99,94,94,105,103,120,101,99,81,90,101,106,98,102,87,101,131,99,105,106,111,102,94,109,103,127,109,98,87,101,102,101,111,125,105,101,110,113,116,108,102,108,101,111,109,112,101,115,115,105,112,113,95,96,88,106,107,100,109,112,78,105,101,107,86,98,101,107,95,102,104,97,112,98,113,112,105,101,99,100,91,111,109,116,100,107,108,113,101,109,119,106,107,120,101,109,104,103,113,107,102,107,106,102,92,99,109,108,102,101,111,103,97,93,99,102,97,104,104,110,99,105,66,110,128,112,109,108,96,98,109,99,115,105,104,117,92,100,100,100,102,109,77,121,115,112,118,114,101,106,103,109,99,114,106,109,99,102,114,119,106,105,102,110,98,97,112,100,99,109,97,101,99,92,101,103,86,113,99,112,102,107,101,107,95,105,91,106,109,102,100,105,112,98,101,113,95,118,106,108,100,100,106,99,90,100,107,100,116,104,107,97,103,97,114,98,102,101,108,102,103,113,101,106,103,102,107,105,103,109,102,100,111,107,109,106,103,106,103,101,102,100,104,98,98,105,97,97,108,105,95,110,89,113,99,106,110,98,112,122,112,111,89,117,110,100,110,101,110,103,106,105,90,103,101,96,98,92,110,94,113,99,103,108,105,102,95,106,114,107,100,104,88,99,87,92,95,98,108,102,112,95,99,101,102,83,100,102,95,108,104,108,102,104,103,99,112,108,103,93,93,99,116,112,106,107,105,100,104,100,96,116,101,103,107,102,109,132,97,105,109,107,101,96,101,112,107,99,103,95,119,104,120,107,100,110,102,106,104,106,110,106,111,95,108,103,95,101,103,101,98,107,100,100,106,102,88,107,120,103,105,105,99,111,103,104,107,94,102,113,92,97,110,94,102,91,109,100,103,107,92,99,109,102,106,103,114,105,97,104,119,95,98,86,91,103,111,113,98,104,106,109,105,103,104,104,95,117,100,108,110,104,99,107,92,94,108,111,94,107,96,109,112,110,98,101,99,105,105,102,97,96,100,104,104,99,97,100,100,102,100,98,103,101,111,108,111,102,110,102,139,105,101,112,106,109,106,104,97,99,111,112,114,102,103,111,99,104,116,98,107,92,95,101,104,113,100,100,102,104,99,102,100,100,99,97,97,97,95,109,105,104,103,117,103,98,103,107,102,96,109,109,111,103,100,100,97,101,105,113,95,110,100,121,97,98,102,96,100,112,97,95,107,102,97,102,105,83,108,99,101,95,104,98,99,113,100,116,103,104,94,108,104,103,102,95,92,110,100,79,107,102,110,108,104,104,92,117,110,110,94,107,107,105,95,107,108,109,103,97,114,89,92,118,96,102,92,109,96,107,105,95,125,92,102,108,116,97,107,110,106,89,93,108,96,103,101,90,100,101,125,102,95,96,97,114,94,82,97,101,94,104,101, +615.96674,102,100,114,82,108,99,94,91,104,93,107,93,96,108,97,103,91,109,93,94,99,103,106,95,103,94,98,101,118,101,101,78,112,100,105,110,117,98,92,104,95,104,96,118,101,109,103,107,101,107,101,107,104,104,99,100,75,89,95,98,98,115,109,104,100,103,95,107,102,91,113,100,109,104,100,118,91,110,106,132,102,100,93,104,103,97,99,96,103,91,95,108,99,105,115,95,97,104,96,105,109,119,98,96,100,95,94,102,104,86,98,108,107,99,100,91,103,104,109,116,110,110,105,106,76,98,107,96,87,113,103,103,108,102,109,96,116,103,98,101,106,101,104,100,102,95,103,129,113,98,98,113,119,103,98,83,91,99,107,98,93,104,100,104,125,107,105,100,95,112,93,106,101,102,106,101,103,90,110,101,85,105,96,100,102,114,94,117,107,97,114,97,84,91,108,83,88,100,94,127,98,104,101,116,103,110,102,97,108,105,99,107,100,108,109,99,92,104,102,101,105,101,102,106,97,107,93,102,98,99,103,102,101,105,91,101,104,99,105,95,90,117,103,90,104,100,96,99,99,108,97,98,99,114,125,116,101,94,104,108,108,95,103,94,114,94,109,110,103,98,105,90,107,95,105,98,111,108,104,104,96,95,93,100,101,104,88,109,97,96,96,102,96,107,112,103,92,113,91,103,99,111,104,112,94,87,98,102,108,98,87,113,105,114,99,113,105,99,106,100,97,79,94,101,113,89,92,109,102,83,104,90,102,113,98,104,107,89,93,101,87,89,101,98,91,107,103,97,101,101,100,105,100,99,95,101,103,102,85,100,94,106,92,100,102,94,106,104,101,109,112,100,108,88,93,111,113,110,95,95,100,112,93,113,105,110,104,101,101,91,98,96,100,112,97,96,103,99,109,98,100,112,104,96,98,99,106,105,99,97,94,95,113,102,104,94,105,113,111,108,102,93,101,111,96,102,92,94,94,113,96,111,105,101,95,100,92,101,100,101,102,97,104,108,95,115,103,99,114,95,101,100,106,100,101,101,117,109,115,100,107,95,106,104,96,115,109,104,111,98,104,112,74,97,105,74,104,114,99,116,100,121,115,108,108,97,114,116,101,104,109,101,103,103,94,100,110,116,106,107,115,114,112,96,98,97,101,106,106,100,106,94,107,110,85,106,98,95,104,105,107,112,97,99,106,113,113,96,106,98,99,99,103,100,102,106,93,96,108,102,86,95,99,109,101,83,94,102,111,95,111,100,98,105,107,105,97,102,107,111,90,98,95,106,100,99,104,103,101,101,104,106,101,105,101,92,89,110,91,104,105,92,98,99,95,107,94,99,109,104,104,97,120,98,105,112,96,104,91,114,105,108,96,100,98,100,108,105,104,102,99,105,104,92,99,114,91,113,94,110,99,100,101,83,116,103,93,87,91,104,98,98,113,90,86,97,95,97,112,107,100,109,92,105,103,101,97,113,99,104,85,110,94,98,104,105,94,105,109,106,100,117,102,100,95,109,109,105,109,93,119,105,106,100,98,95,105,103,102,99,99,100,115,103,105,109,103,106,103,98,102,99,105,116,110,92,103,120,86,100,117,100,94,89,91,113,108,109,103,117,96,96,99,100,109,92,104,102,101,96,109,101,97,102,106,91,105,105,97,111,123,111,106,104,102,105,84,96,109,95,114,96,72,100,98,97,109,99,105,103,125,94,103,98,97,92,105,101,113,99,103,104,106,99,98,108,104,105,106,97,101,100,82,94,102,104,109,104,99,100,121,97,109,110,120,106,105,106,107,111,105,99,104,99,99,108,104,100,100,113,108,103,106,92,115,119,106,99,104,78,102,106,103,98,109,93,109,116,104,94,95,111,109,110,104,102,103,106,106,88,110,95,113,101,104,115,94,98,108,95,91,91,115,106,91,103,90,97,105,98,101,95,85,100,102,110,102,104,100,105,105,101,103,102,104,93,96,99,102,111,103,117,102,102,96,110,104,104,92,103,112,105,104,105,95,102,99,114,96,105,98,104,98,103,105,98,114,108,94,96,104,114,105,106,120,97,103,113,110,105,105,111,105,107,92,91,102,98,89,115,84,98,104,94,93,92,93,103,98,88,76,99,93,105,110,104,97,102,102,102,111,119,109,98,101,85,103,101,94,93,100,93,113,89,105,99,99,99,100,98,95,110,90,102,96,100,74,105,98,100,108,90,98,97,96,101,107,103,100,103,103,92,102,93,103,99,95,101,89,89,108,90,103,104,124,103,100,109,101,99,95,109,106,95,94,99,117,101,103,109,91,109,103,99,109,100,108,96,98,100,96,75,102,98,105,114,91,114,105,102,109,115,98,100,102,93,106,102,106,112,101,109,127,104,116,127,108,105,109,126,108,103,123,111,122,117,117,111,98,110,101,101,98,108,103,99,87,109,96,95,100,103,90,99,106,107,112,104,100,111,104,110,101,109,91,134,124,100,91,97,106,112,94,108,92,103,99,102,106,104,98,107,117,109,104,117,112,111,109,95,104,103,114,118,118,110,114,117,109,105,107,113,111,116,109,117,91,108,96,99,103,93,105,91,109,102,110,113,113,104,103,102,107,106,102,103,94,102,107,106,116,100,104,100,115,101,105,111,112,108,115,98,102,96,99,105,110,115,110,106,101,105,103,102,94,99,101,106,103,103,108,121,108,108,108,104,110,96,112,103,111,97,98,104,102,108,102,103,109,96,99,99,107,92,101,113,76,111,102,94,99,99,100,100,115,114,101,111,99,86,105,101,112,103,113,119,106,109,109,94,103,107,106,104,117,117,101,118,102,115,101,110,109,92,93,89,110,99,112,94,109,113,110,117,99,92,99,95,112,101,107,100,91,107,102,109,105,105,114,99,103,108,108,96,105,104,103,107,107,115,117,108,102,96,106,108,98,106,106,95,101,105,91,107,106,110,86,98,87,115,97,113,90,105,98,106,92,88,98,114,81,103,99,85,107,114,96,106,100,91,116,104,110,105,112,89,98,104,99,105,132,116,104,113,92,101,95,113,94,109,87,113,99,103,104,100,102,107,115,96,102,102,103,106,101,103,115,110,108,113,113,121,117,99,99,97,105,111,102,108,101,99,100,105,121,108,105,121,112,98,105,93,88,113,93,101,106,106,91,104,97,102,104,103,112,103,99,106,107,106,98,99,105,100,115,115,97,113,92,114,96,112,106,103,99,103,99,109,98,111,108,95,120,100,102,125,111,105,106,98,108,105,111,108,111,109,117,112,102,96,109,95,103,88,112,100,108,124,103,98,117,89,112,105,91,105,109,98,108,93,90,121,113,95,100,124,99,107,102,106,95,102,101,102,106,113,94,94,99,100,102,105,105,87,113,112,102,102,117,106,109,91,99,101,117,95,106,104,110,105,98,99,87,98,99,99,126,94,103,109,105,100,94,104,112,105,110,111,107,95,117,105,106,109,102,112,121,95,110,108,121,112,103,104,108,97,100,105,112,107,102,106,91,109,118,109,97,101,103,104,104,104,107,125,107,101,108,115,104,88,107,98,102,107,119,106,107,108,129,99,106,96,105,117,86,113,115,113,103,102,108,110,98,116,108,110,90,101,87,99,104,108,106,112,105,108,105,116,111,102,97,108,118,115,93,99,96,113,116,107,91,112,106,88,113,105,90,108,89,102,107,111,102,112,113,112,104,108,103,100,93,99,108,102,96,106,107,102,107,99,91,94,92,108,111,90,85,105,107,97,98,112,109,101,97,91,114,108,106,106,108,107,113,106,106,100,109,105,106,127,94,110,102,111,112,108,116,99,97,101,107,87,108,120,100,113,100,103,103,107,93,100,95,103,93,102,107,105,104,79,100,103,115,100,107,116,106,101,101,94,105,113,107,102,109,122,103,113,96,104,98,95,106,106,115,98,109,100,104,99,99,92,110,113,108,105,96,101,117,100,118,115,103,112,110,106,94,101,107,109,103,101,102,102,102,99,108,103,91,107,99,100,91,114,118,98,116,98,105,108,107,97,103,104,96,113,111,93,109,100,92,94,100,108,107,109,100,108,106,80,96,104,99,103,100,96,98,104,110,114,108,105,98,110,101,104,93,107,112,107,117,103,105,112,98,102,110,115,102,103,99,106,104,109,110,105,95,109,113,118,95,102,92,99,96,108,105,103,100,92,103,110,96,105,121,119,101,133,98,117,100,99,108,96,119,94,108,91,105,99,112,96,89,91,92,107,104,118,101,99,94,108,114,117,105,96,105,111,105,107,105,106,107,111,110,111,94,94,102,100,104,107,104,98,80,110,103,99,97,112,106,93,100,98,112,95,105,91,100,109,113,99,90,102,109,108,113,96,98,104,111,105,91,111,108,97,98,104,108,97,105,122,106,112,99,105,106,97,114,98,99,105,98,114,96,117,99,112,100,114,107,97,114,99,105,106,92,110,105,108,97,102,103,100,111,97,99,101,104,128,111,100,111,100,104,108,96,112,107,103,97,102,101,116,100,103,101,101,95,98,110,106,106,112,94,106,109,121,97,107,114,101,102,100,100,105,113,112,99,113,106,114,119,110,101,108,101,94,106,110,95,104,102,116,101,105,100,90,132,108,98,111,103,112,113,98,102,96,110,95,107,96,102,90,106,95,105,110,111,108,106,95,106,113,96,109,108,108,98,96,100,107,104,103,100,99,103,92,104,95,100,111,106,100,95,89,113,90,106,111,92,98,103,102,79,103,99,102,102,110,114,100,99,104,94,114,95,106,107,117,101,108,100,102,112,110,111,96,100,115,101,109,98,96,103,112,105,98,96,104,105,76,88,108,106,65,107,92,113,99,119,107,108,98,101,104,108,106,107,102,87,99,100,102,105,98,109,99,102,113,106,106,130,101,103,100,110,100,101,109, +616.10785,112,114,82,100,88,112,106,119,102,94,93,98,98,101,105,87,110,103,98,95,103,97,90,94,99,101,95,103,95,102,108,107,81,112,111,96,95,100,104,102,95,88,85,87,83,101,94,106,94,122,103,90,113,98,91,101,109,104,98,66,103,104,97,95,110,120,106,95,108,101,99,107,97,97,104,94,92,97,107,105,92,117,103,105,105,109,108,111,107,101,105,103,84,101,109,107,99,108,110,97,107,100,105,98,88,103,105,105,113,95,90,104,136,108,108,99,117,101,106,110,105,113,106,104,105,112,125,108,97,99,114,105,92,99,113,127,96,116,101,97,102,108,91,98,108,112,104,106,107,105,99,117,109,95,97,109,102,83,103,104,100,105,98,100,93,105,105,94,105,98,108,100,95,106,103,116,106,107,107,93,104,103,126,113,102,103,100,96,93,103,115,107,106,102,105,113,103,107,94,121,96,94,105,100,95,118,109,111,122,113,129,106,105,107,106,106,106,108,103,104,74,113,98,106,113,99,94,101,108,98,92,86,97,117,108,103,110,98,103,110,109,104,110,107,97,100,99,113,104,107,102,106,95,91,109,99,103,99,100,96,111,100,102,110,91,92,111,107,101,95,102,103,111,98,106,106,85,115,94,99,95,101,71,95,103,101,97,101,97,105,99,120,113,104,106,98,113,95,105,106,111,100,112,102,102,103,94,115,113,100,98,109,94,105,90,95,98,121,101,104,103,115,93,116,98,109,94,104,108,108,102,91,114,104,94,100,96,98,109,106,110,117,111,101,105,101,103,106,105,113,105,104,106,102,116,109,101,85,99,98,111,102,102,95,96,110,105,115,102,110,117,96,89,111,113,113,113,110,92,114,114,98,90,114,99,108,94,123,94,109,99,100,95,111,94,111,106,91,104,97,100,99,102,105,75,88,110,107,92,104,105,95,108,104,103,103,98,92,99,99,107,95,96,95,112,101,102,108,117,95,91,108,102,100,113,105,100,104,107,96,102,99,101,68,79,99,102,84,103,113,87,113,104,107,103,100,109,102,109,103,94,102,106,110,105,100,105,98,105,105,94,115,90,95,103,105,96,108,97,112,100,108,105,85,100,104,99,105,106,101,105,105,112,105,94,115,83,102,109,74,101,95,109,103,94,102,90,102,114,109,111,104,112,100,104,106,95,99,104,103,105,105,82,113,109,99,118,100,92,97,97,108,99,93,96,104,99,113,105,104,94,104,90,118,109,111,100,111,104,100,109,108,113,107,95,110,94,118,95,100,98,99,103,103,104,101,106,118,104,99,119,114,106,111,99,96,104,103,103,97,100,100,110,96,97,100,102,110,100,100,95,103,95,106,108,108,104,117,95,106,105,102,110,105,102,99,104,99,102,93,95,80,113,105,99,73,99,94,114,106,103,96,107,100,107,104,110,104,100,92,102,106,92,101,89,97,100,94,100,97,116,96,106,94,90,89,107,102,102,113,113,105,113,92,99,105,102,114,112,97,104,116,104,111,83,110,90,104,110,106,107,96,84,100,97,107,109,103,109,90,100,117,103,96,75,105,108,106,97,97,114,98,104,114,85,100,106,98,95,86,86,95,100,103,101,116,114,101,80,102,100,100,100,90,96,106,106,106,99,100,104,101,87,111,99,105,95,111,108,100,105,97,80,109,98,99,106,89,112,102,112,99,109,86,101,92,100,101,104,87,112,103,92,95,98,96,100,99,112,110,101,107,105,101,102,102,98,111,97,103,112,108,100,95,105,89,103,104,105,97,100,107,106,112,103,101,113,105,97,107,93,113,110,115,137,105,100,86,111,100,102,113,104,91,95,114,102,110,103,102,107,99,92,99,118,100,110,103,118,98,103,100,106,110,107,106,107,98,101,108,105,102,108,92,103,120,110,105,103,108,100,106,99,107,87,96,95,94,99,89,106,104,110,102,112,107,104,104,106,105,106,97,111,92,95,93,108,103,113,67,101,105,102,113,107,95,99,103,110,93,103,102,110,110,103,104,101,115,109,120,107,107,109,99,99,119,82,109,70,87,110,98,101,129,101,112,108,109,97,103,102,103,117,109,90,108,77,102,110,96,95,92,106,104,102,109,99,105,99,90,94,113,108,113,96,103,104,102,103,95,92,98,111,101,97,105,115,97,103,110,101,96,94,102,95,98,103,97,91,90,118,107,104,100,112,113,99,108,99,105,94,98,102,86,113,97,102,95,106,98,95,103,106,96,105,99,97,102,94,95,114,114,93,102,99,104,109,109,106,103,95,105,96,105,113,101,100,93,94,101,92,106,97,94,111,98,108,87,109,102,104,110,107,93,108,111,101,120,97,98,117,107,116,105,109,109,107,108,110,102,112,114,109,113,112,114,137,111,121,116,118,115,104,104,112,117,112,103,98,107,109,108,119,104,103,96,94,107,102,91,99,102,115,97,112,106,110,109,101,108,111,100,88,103,104,101,105,107,100,101,95,113,100,90,101,116,104,104,106,101,124,103,93,96,112,105,97,106,104,96,92,100,121,94,98,102,106,103,108,112,101,113,108,99,108,106,105,109,109,101,100,116,101,100,100,100,93,108,110,100,98,102,108,108,99,105,98,104,136,112,118,101,99,99,101,96,98,101,109,96,113,95,103,96,96,112,101,98,113,108,94,103,108,123,102,96,111,92,108,97,106,104,105,102,104,116,95,106,100,101,69,107,117,125,107,104,104,109,104,102,103,104,113,94,101,101,94,100,92,102,109,109,101,111,111,103,94,102,104,87,83,104,113,103,111,103,95,112,115,82,103,110,94,114,104,97,100,113,101,100,107,104,107,110,96,108,105,109,103,108,106,95,112,109,104,117,131,109,96,104,103,100,94,112,109,122,113,91,101,100,106,102,106,107,114,108,102,106,106,103,116,108,109,109,109,98,99,100,103,92,120,107,100,105,111,101,108,90,113,100,108,102,97,103,109,113,106,109,106,99,102,99,99,74,105,109,99,112,108,104,106,100,108,99,98,98,101,103,102,104,96,99,101,98,92,111,108,104,95,105,99,99,88,87,108,111,105,117,112,101,92,108,98,101,98,92,103,98,102,102,105,105,87,93,102,95,107,94,105,110,112,107,92,111,109,103,96,99,95,102,99,91,105,101,98,94,99,112,101,100,114,95,99,104,98,111,113,104,111,98,110,95,95,74,99,115,112,97,98,97,103,107,92,107,99,96,108,87,103,109,98,107,114,99,94,103,105,99,112,91,94,104,105,117,111,96,103,104,104,100,107,99,112,95,73,93,83,107,95,97,105,103,109,117,89,99,105,100,105,103,96,97,111,103,105,103,100,106,105,97,94,106,97,102,99,103,109,105,111,109,92,109,104,93,105,87,99,104,102,109,106,97,99,98,69,97,106,94,110,109,83,101,104,103,110,101,104,104,106,91,103,100,112,112,105,94,98,97,101,121,100,104,111,104,97,98,100,92,111,106,112,89,92,103,101,104,84,103,99,98,98,95,92,106,106,112,100,114,98,97,108,105,96,104,109,109,97,106,87,113,106,98,109,98,100,112,100,102,90,102,109,99,100,100,105,114,104,107,97,98,97,106,96,100,102,105,109,114,89,104,113,114,100,104,86,102,103,99,106,117,99,98,105,104,95,77,92,102,103,103,102,113,85,102,107,90,101,102,116,105,97,103,108,104,98,104,100,111,121,95,100,98,120,107,112,101,96,96,102,96,109,103,102,98,103,114,107,100,107,110,113,121,109,109,104,101,111,106,93,108,111,109,97,98,103,109,111,97,94,98,100,98,98,91,103,80,108,99,104,105,105,94,98,103,106,114,116,101,102,113,96,106,112,113,98,84,91,101,103,81,97,94,88,102,105,103,100,91,102,98,107,106,107,110,94,104,103,94,96,95,111,103,99,102,99,106,99,100,113,98,90,103,102,131,105,121,109,103,106,100,99,115,111,129,94,91,96,102,108,112,108,110,65,107,112,73,107,93,99,92,102,101,107,98,109,104,96,110,111,103,95,103,117,103,83,99,110,89,104,99,104,106,100,108,100,95,104,99,100,116,105,107,89,109,113,108,104,107,103,107,108,100,98,103,102,106,97,101,108,101,100,98,100,112,105,109,97,102,117,95,99,88,96,98,112,104,99,98,103,101,108,108,111,77,108,98,105,104,109,102,97,101,105,114,112,107,113,100,74,102,93,104,106,104,104,100,102,97,105,105,108,112,105,96,112,100,112,100,107,97,88,88,102,101,102,68,94,104,105,94,94,111,84,103,112,96,107,104,101,94,90,106,109,102,97,109,105,90,98,109,111,100,105,71,112,105,106,108,104,106,109,95,110,103,99,106,113,93,99,108,106,107,113,112,98,97,105,104,104,100,98,96,108,90,99,111,126,117,93,104,86,81,114,98,103,107,105,111,99,90,104,95,103,113,94,95,97,91,107,112,106,71,100,88,98,106,101,92,112,88,99,94,101,101,106,105,103,104,109,84,93,106,104,104,108,100,99,99,133,96,109,93,110,102,97,111,103,106,109,90,110,98,99,109,98,107,107,88,124,90,112,101,108,101,116,95,111,121,104,105,99,95,98,104,72,94,91,99,94,87,101,104,95,97,91,73,106,103,101,104,115,95,104,108,103,104,100,112,100,98,103,95,110,109,98,99,108,100,92,111,99,129,98,108,99,112,93,80,106,92,104,105,100,98,112,93,107,91,87,96,109,106,101,102,94,104,101,91,98,97,106,103,104,102,98,104,102,108,127,97,100,125,99,105,86,105,105,100,106,111,94,100,95,106,102,108,98,113,94,96,88,108,86,97,95,99,100,105,99,113,97,100,105,104,88,100,92,100,100,75,116,91,94,129,127,92,71,107,100,93,96,98,104,88,98,102,96,87,98,93, +616.2489,113,106,94,110,96,100,103,100,95,96,103,98,97,100,113,113,96,119,103,75,91,107,91,105,108,104,79,110,92,78,110,100,95,97,105,114,105,96,98,107,101,109,98,96,114,108,110,106,101,94,103,107,104,110,101,101,75,108,99,80,79,109,107,87,104,105,102,108,87,108,104,112,103,98,113,113,75,109,105,91,105,105,124,95,109,91,103,102,100,87,107,101,120,87,96,108,76,95,107,113,106,102,93,92,105,113,100,113,107,86,104,96,118,101,103,99,98,103,106,78,108,105,102,105,97,99,104,95,110,109,100,111,97,116,102,104,107,104,116,98,117,122,100,113,111,91,97,114,104,95,103,102,100,99,76,114,97,104,103,108,99,94,116,109,103,100,103,108,99,103,106,101,104,100,105,103,102,102,105,102,107,105,108,97,95,97,114,89,104,124,110,108,99,102,105,114,109,92,111,98,115,102,103,108,101,104,105,115,106,106,103,98,105,102,106,95,111,105,92,109,103,100,101,114,108,101,133,110,102,97,113,104,102,113,108,104,105,98,108,112,96,103,102,114,103,109,104,117,112,94,94,109,98,97,90,123,95,111,92,91,106,106,97,104,105,99,110,103,126,105,103,99,111,98,101,109,100,108,109,106,104,111,115,103,101,98,96,73,112,114,98,111,107,104,107,106,103,101,109,109,104,109,99,104,105,110,106,105,103,113,101,98,103,107,109,105,99,111,100,100,103,93,108,101,107,104,136,94,100,101,91,104,102,94,108,108,104,105,105,103,91,111,110,94,96,106,108,105,113,120,102,104,117,102,101,103,117,104,112,97,102,92,102,108,101,100,105,107,102,108,107,115,120,102,101,101,103,110,95,101,104,105,92,63,102,101,93,113,103,104,101,88,98,104,110,100,114,100,102,103,106,111,101,100,112,99,100,100,99,97,91,92,113,105,97,106,92,103,124,94,112,108,107,113,93,102,104,101,97,114,99,94,101,86,109,101,109,115,104,106,108,84,87,101,97,106,94,93,102,112,96,90,103,104,94,107,100,119,104,98,108,106,110,104,102,114,110,97,111,112,110,100,101,118,94,94,106,99,120,115,99,99,108,112,107,98,111,113,106,99,91,103,103,114,95,106,98,110,108,111,119,102,107,112,101,99,119,117,106,103,115,105,109,91,111,109,103,108,120,92,100,105,110,100,100,97,103,104,117,129,102,105,96,101,105,110,114,95,102,110,112,115,113,101,116,110,104,100,121,106,99,103,96,100,97,102,102,102,118,97,103,109,100,102,98,105,99,115,96,98,99,105,102,109,102,89,90,100,106,112,98,101,105,99,98,101,123,105,109,105,108,111,107,107,125,115,103,111,93,94,110,105,99,102,99,97,97,117,94,102,106,108,119,109,119,101,98,100,81,102,118,108,100,96,116,112,100,106,101,102,111,98,101,103,95,108,87,116,117,113,109,108,105,126,106,94,98,96,67,112,99,106,102,106,107,119,101,111,103,98,102,107,102,105,95,101,106,99,106,103,102,102,104,100,100,100,102,105,108,101,113,111,117,92,103,100,104,100,110,120,82,113,93,106,108,100,98,111,112,102,102,99,105,104,100,106,109,111,94,100,110,109,111,98,96,105,96,112,88,102,106,109,106,104,113,96,119,105,92,112,114,106,113,105,98,109,116,94,110,104,107,91,95,103,114,101,99,105,97,110,106,99,101,110,104,100,101,102,104,76,95,106,114,108,106,108,101,107,107,96,119,100,105,97,105,115,114,104,117,97,100,106,104,99,107,106,96,106,112,103,106,100,104,97,115,103,97,98,108,96,105,102,107,111,103,108,100,109,105,105,111,103,103,105,106,98,105,98,93,118,100,113,102,97,116,93,102,104,109,108,116,101,101,107,100,113,103,117,103,102,112,106,108,106,119,104,92,87,110,107,99,115,96,105,103,103,100,101,93,99,98,100,101,111,107,89,96,117,105,108,102,106,109,99,100,96,103,96,106,121,86,114,109,110,93,111,104,108,113,106,107,105,104,103,124,97,110,105,99,109,103,113,108,83,67,106,103,98,107,114,106,107,107,112,113,112,93,100,96,102,109,105,108,105,109,102,105,108,101,98,108,103,101,104,97,101,108,94,99,111,105,106,104,111,94,102,105,90,108,109,98,96,98,111,110,126,103,95,102,109,107,106,100,109,105,101,78,99,104,97,105,126,106,105,110,106,112,103,87,121,103,109,111,97,104,96,111,101,102,106,98,99,98,102,96,112,112,105,91,106,100,102,104,98,108,98,97,104,96,107,79,101,97,98,100,120,99,102,102,110,111,106,101,107,105,111,114,100,112,116,108,102,115,103,86,122,104,132,135,117,112,116,119,112,109,100,115,125,100,121,108,113,121,101,109,112,111,113,107,105,102,87,104,118,109,136,99,108,94,95,69,105,102,106,107,92,95,98,97,102,110,109,97,109,121,116,102,104,116,110,108,102,105,100,102,99,113,107,102,116,93,102,106,95,102,113,99,103,112,103,95,102,99,112,105,106,105,104,95,104,100,102,114,99,116,104,110,107,107,95,108,112,101,93,110,112,112,102,112,106,98,99,101,111,103,109,102,109,106,95,111,98,103,104,64,112,108,112,113,98,105,102,98,91,107,106,94,112,112,122,114,109,114,102,107,103,101,115,120,110,110,105,106,111,98,98,102,98,111,112,102,100,104,113,90,107,106,100,108,103,107,102,107,103,110,95,112,102,99,92,112,98,108,110,119,108,109,116,106,102,100,88,98,96,118,95,102,109,111,110,109,103,100,115,104,92,106,95,96,97,119,95,107,106,107,111,102,111,105,98,91,107,95,106,103,110,105,98,109,102,101,87,74,111,112,106,108,90,99,109,109,104,89,115,98,103,109,108,94,101,110,107,101,107,103,102,119,107,103,91,106,105,102,117,92,101,104,110,104,100,102,97,108,109,113,106,99,106,114,113,112,101,99,95,104,109,101,94,106,93,93,109,102,110,114,112,106,92,100,103,97,98,98,114,101,103,104,116,102,126,105,100,109,115,107,106,101,108,108,104,95,106,111,104,99,99,97,105,92,98,115,107,107,112,112,96,100,103,100,97,104,106,105,113,109,116,90,108,102,108,109,98,116,100,102,96,99,108,97,96,107,94,96,115,102,107,99,103,109,100,111,111,102,110,96,114,108,114,108,103,102,107,101,101,99,101,113,101,99,99,110,109,105,119,108,98,108,102,129,119,109,98,112,112,102,108,105,106,97,106,110,109,99,113,99,98,106,105,116,97,114,92,101,115,98,111,103,105,112,111,101,95,106,113,104,107,103,97,108,105,93,108,102,112,107,106,113,107,109,108,95,107,99,104,104,103,84,99,95,105,106,102,111,93,101,114,107,115,94,98,105,108,110,101,103,102,107,104,103,98,94,95,108,107,108,98,104,120,91,100,97,103,110,93,105,100,112,89,105,113,105,109,117,103,110,109,100,98,111,120,107,107,119,106,131,106,103,106,96,104,105,90,110,111,97,114,102,103,99,116,102,108,109,95,108,108,101,99,111,114,111,107,100,110,107,102,103,112,115,107,108,115,106,103,105,96,103,109,105,120,95,105,105,109,101,105,103,94,107,92,106,101,123,117,111,106,97,96,103,104,102,104,94,93,95,100,102,110,110,102,103,108,106,102,103,114,93,105,103,117,107,100,111,103,103,95,108,122,107,99,101,120,106,91,105,95,94,102,107,100,98,107,79,100,103,91,103,102,90,110,106,101,104,113,112,112,126,97,113,102,100,125,98,110,107,114,115,105,113,108,120,97,110,98,108,107,103,105,100,110,108,105,129,109,97,101,109,122,107,108,101,105,106,123,112,111,113,93,106,94,98,79,98,92,98,95,113,96,103,119,109,100,111,104,105,117,103,112,98,106,109,98,107,110,95,107,107,99,100,111,103,109,100,108,109,107,97,103,95,95,92,100,97,96,96,102,105,108,107,99,104,105,107,92,115,107,95,100,103,110,93,99,119,109,130,111,106,100,105,107,102,110,107,107,99,111,108,117,112,119,102,117,111,106,103,101,101,100,113,92,104,106,111,115,120,112,96,128,107,101,99,91,102,107,94,110,109,91,98,111,111,100,116,108,103,102,93,105,96,104,103,104,110,89,103,106,97,96,103,102,95,95,102,107,103,108,100,95,102,105,110,103,104,112,94,101,101,91,102,118,96,102,110,111,100,106,108,101,88,97,91,102,95,111,114,107,81,103,110,111,99,102,107,97,89,110,113,92,91,104,99,109,119,109,85,104,116,110,103,113,113,112,110,112,113,94,107,103,100,106,99,105,106,104,100,109,100,110,107,89,100,112,104,120,112,101,107,116,100,104,108,107,97,102,101,116,111,123,109,93,102,100,115,116,93,104,100,105,111,94,123,80,97,98,94,96,97,98,101,109,106,84,101,117,108,97,82,116,109,106,90,96,99,115,103,102,107,102,104,101,99,109,101,94,101,110,100,106,109,91,102,117,101,101,114,122,113,112,106,103,100,101,97,105,102,107,106,99,104,91,111,75,104,109,94,100,106,97,114,98,96,97,105,99,98,111,107,123,108,102,102,94,98,108,114,84,107,101,102,101,96,90,93,105,107,111,113,105,100,99,100,86,104,102,85,121,103,102,93,98,102,109,97,92,101,103,102,109,100,101,107,99,110,100,112,102,104,91,101,93,108,106,91,109,100,113,107,105,113,104,113,90,87,104,97,90,98,104,103,108,114,104,96,106,103,102,108,95,102,106,103,99,103,71,105,91,104,102,111,95,113,106,106,96,92,105,103,119,113,104,81,114,112,109,105,111,93,93,110,108,108,119,89,112,95,100,94,102,107,100,99,108,98,112,108,108,100,96,107,103, +616.39001,105,102,103,103,91,97,101,103,103,110,97,94,97,104,104,96,86,99,103,88,103,108,99,99,99,105,121,100,105,103,117,96,108,114,108,119,100,85,105,115,92,101,101,104,108,113,110,117,103,110,108,97,92,101,100,92,92,101,105,97,100,106,104,93,98,107,110,95,98,101,100,116,99,101,106,113,82,99,104,96,102,104,101,92,111,96,94,97,101,92,107,96,113,108,101,107,116,103,97,96,101,101,111,102,114,113,108,104,96,104,98,111,99,91,102,113,105,113,110,106,96,100,99,118,116,106,108,114,107,112,106,95,93,115,100,99,110,103,107,81,94,94,111,105,90,90,110,105,100,99,96,105,100,88,100,107,99,91,108,99,106,104,102,98,111,99,107,91,88,105,105,106,96,99,108,109,106,96,109,105,106,104,99,125,99,104,103,106,113,87,87,111,97,98,99,105,105,100,101,109,106,106,96,105,100,102,99,95,102,96,97,110,96,104,102,103,91,106,103,114,87,105,103,110,109,108,101,96,110,99,90,98,124,104,110,108,113,98,104,102,105,82,98,91,96,94,103,96,114,96,74,97,102,101,101,97,92,116,99,102,88,113,95,98,88,113,104,108,108,100,107,104,103,94,109,105,101,108,91,97,100,100,100,88,104,92,100,99,73,104,99,98,95,101,105,106,109,108,104,95,100,102,102,102,101,99,118,100,96,110,101,109,99,104,99,76,113,105,100,95,105,101,100,110,119,112,90,107,101,106,113,103,98,110,90,109,99,97,99,106,105,95,101,88,109,104,100,109,108,112,109,93,98,114,98,91,99,104,96,113,104,102,110,107,102,90,104,109,110,106,107,110,108,100,100,107,96,110,74,105,110,121,94,98,99,102,99,105,111,105,101,91,100,108,98,96,94,91,115,95,102,88,107,104,100,102,114,107,98,98,96,100,94,103,96,107,94,106,104,100,99,103,110,108,103,105,98,110,120,124,104,113,97,97,100,103,91,107,103,113,99,103,104,114,105,99,102,98,103,108,92,108,98,121,120,106,119,102,108,100,113,106,102,106,97,129,112,101,104,111,110,111,105,104,107,100,105,105,108,118,94,98,97,100,114,99,104,103,94,103,96,113,114,105,103,113,99,114,113,109,100,107,96,119,109,117,105,110,98,120,115,95,106,106,106,109,100,96,99,89,109,106,106,100,96,108,105,109,110,99,111,102,97,91,94,109,104,76,107,102,94,102,95,117,107,103,103,113,110,99,104,98,108,88,101,102,98,90,71,110,102,112,99,83,99,99,109,110,97,100,96,105,95,105,95,106,117,104,96,115,105,109,103,98,112,110,89,103,110,95,100,112,100,101,106,103,94,109,120,94,104,113,105,64,103,104,102,92,97,100,120,109,104,101,97,104,100,102,105,102,115,107,121,110,104,107,90,101,109,102,101,114,102,99,95,100,102,99,98,100,115,91,101,110,94,87,92,98,103,113,92,108,104,97,101,103,105,99,94,109,97,118,107,100,93,109,94,94,106,103,108,99,117,99,112,108,116,89,104,91,98,113,121,90,108,101,95,110,96,107,106,99,102,110,109,117,110,95,107,98,90,104,106,107,88,107,113,103,101,99,99,94,103,102,115,105,106,103,91,111,101,96,113,95,84,76,105,104,103,91,104,92,101,100,94,100,103,125,101,102,106,101,100,110,109,94,110,92,106,112,107,100,110,91,102,117,99,95,107,102,116,124,104,109,90,102,91,100,108,99,106,110,106,97,100,107,111,97,100,100,109,107,110,103,96,104,105,116,108,104,103,108,110,129,112,105,118,101,103,123,109,112,126,105,109,107,74,93,97,99,109,109,98,96,99,113,99,103,109,99,100,90,109,117,109,111,108,102,83,99,108,101,106,102,103,91,114,116,101,111,113,94,111,99,99,97,109,111,96,87,105,102,102,99,113,101,113,103,114,111,90,105,97,90,100,111,93,108,95,112,124,120,99,103,101,108,104,103,106,96,109,98,101,106,113,102,101,92,108,110,104,120,92,103,100,94,90,100,97,116,125,97,108,107,103,95,95,113,119,107,110,97,111,108,107,107,111,110,114,105,116,114,105,110,87,89,109,109,113,106,102,91,102,109,94,100,101,101,109,100,106,101,111,112,100,97,100,96,103,109,97,114,118,103,103,98,108,96,104,107,111,115,101,103,95,105,99,94,95,103,101,107,98,101,112,100,98,112,99,99,117,88,105,106,105,107,87,95,102,88,109,105,111,118,107,103,107,111,101,103,116,97,101,109,107,80,114,112,102,104,94,101,103,106,80,107,90,99,112,110,110,102,103,100,118,108,104,110,89,103,112,104,110,100,109,104,112,105,109,107,118,122,125,119,126,105,129,97,117,106,105,112,106,115,94,116,98,105,117,97,105,98,115,99,104,110,105,115,94,97,105,95,112,101,102,102,105,101,77,99,109,114,110,96,118,108,99,106,113,130,107,94,94,106,103,104,104,94,91,115,111,113,100,101,99,113,104,98,113,102,101,126,97,102,109,102,118,105,95,107,97,101,107,109,107,106,104,102,105,100,109,107,116,102,101,105,104,99,102,110,106,97,110,106,96,105,102,107,93,108,116,108,115,104,96,109,120,111,98,109,117,93,111,101,108,108,104,95,104,110,116,108,98,109,109,98,109,101,110,99,102,102,88,115,102,100,106,79,114,99,99,128,90,109,112,103,113,101,102,105,108,103,112,102,113,107,112,105,94,120,112,116,105,100,104,97,94,118,103,102,111,106,101,100,113,108,110,92,108,108,88,115,94,112,117,99,117,102,115,102,109,111,112,106,101,99,104,105,108,103,103,112,102,104,94,98,103,121,105,113,97,106,114,114,115,86,104,112,104,98,102,95,115,116,107,103,102,103,105,111,104,121,105,101,112,106,103,99,105,94,96,97,99,105,104,96,123,108,109,103,88,117,100,115,102,102,92,117,91,108,106,112,97,111,112,109,89,111,102,113,106,98,103,89,83,101,104,100,109,107,112,95,104,103,102,104,91,102,100,109,107,118,108,100,102,100,109,93,108,108,102,107,97,101,105,89,105,94,110,98,107,100,122,100,106,104,100,109,103,99,114,101,105,108,82,93,109,116,99,114,100,99,109,116,95,98,111,99,99,99,96,92,104,95,98,100,108,95,94,97,103,92,95,112,92,105,111,111,106,72,90,101,94,108,116,98,95,96,105,113,91,100,99,112,94,93,111,80,111,102,113,106,107,112,113,113,108,109,90,101,105,100,99,92,101,100,87,81,99,104,101,100,104,102,106,80,109,110,127,97,112,100,109,97,105,103,106,92,108,95,106,99,111,99,109,108,113,105,112,101,102,117,98,99,104,107,100,103,105,94,106,107,100,103,108,104,109,113,115,111,94,104,107,97,108,108,111,113,103,103,100,99,104,91,111,102,105,108,100,87,98,94,105,106,107,102,117,110,104,102,106,115,116,89,101,118,113,97,108,95,105,119,104,106,99,107,91,110,109,96,102,105,106,110,104,123,114,109,106,102,90,110,104,106,109,107,95,102,105,106,116,97,113,99,105,108,99,93,119,99,99,103,113,110,109,112,109,99,98,102,85,100,110,99,100,97,115,107,106,112,99,113,123,102,108,105,112,94,100,104,106,106,103,106,107,105,92,102,99,101,99,101,109,91,106,110,79,102,98,100,103,106,105,115,103,88,114,71,101,97,121,111,102,99,104,103,104,105,108,98,112,105,102,102,109,104,100,114,100,111,106,104,96,98,101,112,105,101,113,110,101,105,94,121,101,109,114,101,95,120,115,101,114,112,102,100,124,108,88,108,101,109,84,113,87,102,108,92,104,109,107,108,109,110,96,100,90,106,114,113,112,103,100,98,104,106,111,108,100,85,116,104,112,102,100,107,85,101,97,106,105,105,117,100,108,117,101,105,107,110,105,79,109,110,98,92,102,105,80,100,95,106,94,88,110,94,101,99,100,102,117,142,109,94,109,103,98,106,102,109,114,112,102,100,107,96,110,104,103,112,105,99,103,106,106,111,109,119,94,110,104,96,107,97,95,106,95,100,107,108,115,97,106,92,102,117,107,103,115,107,110,114,103,106,100,112,99,106,97,111,100,104,97,95,104,98,88,113,112,115,99,115,105,101,113,107,120,102,108,99,115,111,105,104,103,109,109,106,101,94,100,106,99,113,91,106,95,101,101,101,96,92,80,99,102,99,115,117,104,92,98,117,98,105,105,104,98,99,107,106,116,105,108,109,96,105,108,110,96,98,94,99,104,101,96,97,104,93,105,116,116,110,112,102,110,93,92,110,102,107,101,103,98,108,110,109,105,99,103,114,106,113,108,117,94,111,112,103,103,102,99,102,96,94,100,105,96,109,106,99,112,97,104,102,100,105,101,101,111,90,94,108,103,116,82,99,108,100,104,114,106,104,117,112,103,106,122,94,91,105,101,93,108,103,103,108,103,105,104,102,114,100,102,110,114,113,103,103,92,93,106,102,106,94,92,101,116,106,96,113,102,103,84,108,103,108,93,98,112,108,102,111,107,104,119,103,109,109,124,96,100,91,109,121,114,109,115,104,102,103,108,102,96,108,100,97,100,107,101,98,101,100,106,109,108,94,104,99,106,113,99,102,102,112,113,103,113,90,98,94,107,95,98,106,103,111,88,109,99,100,102,96,106,94,111,107,119,111,103,110,89,95,84,99,102,98,108,100,71,118,118,105,101,103,87,110,93,107,114,108,98,103,99,116,117,96,107,98,107,89,102,101,107,94,102,118,68,109,113,116,101,98,101,103,126,104,83,97,130,104,100,125,104,106,113,98,109,109,109,94,99,107,94,99,102,109,108,96,102,107,95,110,109,116,110,87,102,94,117,105, +616.53107,86,101,99,95,93,99,111,118,87,103,90,99,113,113,117,114,84,113,112,112,106,98,103,103,99,105,113,105,95,118,100,93,96,102,114,101,100,100,98,105,89,85,112,99,101,108,109,103,108,105,89,107,102,102,109,111,99,97,111,101,98,104,85,104,108,132,92,115,109,111,120,105,105,99,101,103,95,101,96,103,105,97,98,105,95,101,101,107,99,113,107,103,100,105,109,103,113,91,104,108,102,99,89,100,102,91,83,101,98,93,106,80,106,105,113,96,115,110,108,95,101,85,111,114,112,107,106,109,109,111,113,108,94,101,112,104,96,97,78,110,91,99,82,92,100,103,112,114,108,97,91,97,106,100,100,102,109,107,94,92,92,102,106,74,105,97,100,97,107,102,101,103,94,90,101,95,100,103,99,112,82,95,99,96,112,89,91,89,112,99,96,115,104,107,114,110,100,112,98,109,93,109,107,101,110,108,103,97,99,131,94,103,115,100,91,95,103,105,101,109,94,105,96,100,120,98,101,105,114,94,107,119,93,110,111,109,86,106,88,101,89,99,112,112,83,109,117,110,111,104,98,121,87,104,96,103,95,105,106,103,97,106,97,120,85,105,101,113,112,99,110,105,68,99,105,93,112,100,117,106,108,112,97,101,105,101,100,96,126,113,100,95,97,103,119,108,108,104,95,96,98,67,112,110,93,111,85,97,103,98,99,80,103,114,103,96,97,102,98,101,94,100,103,105,100,88,87,95,100,101,103,106,98,105,79,96,113,108,102,102,108,107,103,106,111,109,105,114,107,99,104,105,110,106,104,104,97,107,98,114,108,90,96,92,96,110,96,105,81,90,107,104,99,116,109,102,109,103,92,100,110,102,105,105,104,98,94,109,103,109,101,97,105,112,109,92,77,87,106,116,94,89,99,101,106,94,89,110,104,110,109,95,111,97,96,107,97,98,112,94,101,96,96,99,104,94,111,101,113,120,102,93,101,94,104,102,101,109,92,105,94,100,110,109,99,85,77,99,97,104,116,102,103,103,91,100,97,90,92,94,98,91,97,103,97,109,106,104,103,106,103,108,116,108,109,90,105,98,102,102,115,107,107,99,104,102,96,107,107,99,90,98,97,103,83,101,98,96,100,105,108,118,103,114,100,105,90,95,106,95,110,99,102,105,111,124,94,91,100,99,100,114,103,104,99,100,105,105,109,106,95,108,103,101,89,102,105,121,98,104,104,107,105,105,109,97,95,95,109,105,81,105,96,94,92,102,113,99,103,114,102,102,93,112,91,112,111,111,97,96,94,96,101,100,101,98,96,101,101,103,108,102,108,90,100,112,103,87,110,97,94,103,106,98,118,98,104,106,93,105,96,84,109,90,97,94,101,98,114,98,97,102,105,98,109,104,100,87,93,110,99,95,91,108,97,100,89,93,110,101,106,100,108,112,97,108,101,97,98,93,118,112,100,106,101,101,110,95,106,117,102,92,98,89,104,89,120,96,97,91,113,95,106,100,105,98,109,96,100,103,111,105,96,90,104,106,106,106,103,106,102,103,100,90,90,97,91,105,102,105,107,115,98,112,108,98,99,119,100,102,90,105,105,101,100,101,100,106,103,98,82,106,105,110,90,100,101,107,104,110,108,116,98,102,105,101,95,103,95,114,100,108,98,105,101,106,115,93,97,109,101,105,88,95,101,101,105,104,107,112,109,108,108,97,109,100,104,99,99,105,108,107,95,107,81,99,91,92,98,106,109,108,104,91,101,106,88,96,105,107,106,97,104,107,87,104,99,109,104,108,98,115,111,129,129,134,101,105,106,110,96,107,102,100,104,102,106,101,93,107,125,104,95,95,107,108,97,103,97,100,111,106,102,85,106,108,122,95,92,105,108,99,111,105,110,107,110,102,125,104,88,102,103,104,94,105,96,100,99,90,104,105,101,103,107,100,95,102,94,104,106,105,109,108,99,87,104,102,112,110,106,104,113,108,119,88,95,104,94,114,114,109,97,106,93,101,95,120,112,107,96,113,93,102,109,90,99,126,101,105,105,110,105,100,105,94,102,103,99,96,109,110,105,102,104,111,93,104,91,101,108,113,110,114,104,98,96,108,89,107,103,99,104,108,91,102,100,102,101,111,108,98,103,114,94,99,105,113,107,112,104,100,106,107,108,109,113,78,99,112,106,112,104,90,92,91,115,95,114,95,107,104,98,108,104,106,112,100,91,111,109,83,109,101,109,99,91,97,109,99,98,97,94,102,96,110,101,108,107,114,109,115,101,100,94,95,104,103,99,111,89,100,102,104,100,109,98,121,104,93,115,109,114,87,101,108,104,94,83,96,101,98,105,104,101,114,109,115,106,110,111,125,102,110,109,106,107,120,120,99,110,113,114,113,93,94,113,104,99,100,92,117,85,95,108,103,99,106,91,109,100,112,102,92,101,98,105,97,94,95,109,115,109,100,101,97,106,92,116,111,103,98,108,103,113,106,93,112,110,111,93,112,103,100,96,110,107,88,109,104,95,111,106,102,97,109,99,107,97,108,117,73,84,98,105,97,107,111,115,104,108,107,101,103,90,99,109,83,101,95,103,119,113,113,114,96,97,103,102,111,101,110,121,107,108,104,89,106,100,95,121,97,102,101,89,75,108,109,106,104,107,121,112,99,102,94,110,109,108,108,105,104,103,103,109,99,124,114,109,113,104,88,110,108,104,109,96,102,106,119,108,102,93,107,98,110,111,102,107,100,105,111,97,96,100,107,106,108,100,113,108,108,107,95,110,115,105,115,109,104,101,108,95,117,125,97,96,119,123,113,86,102,109,97,117,111,116,119,95,107,101,106,110,103,106,104,106,111,97,110,96,78,116,114,108,100,106,106,105,101,107,104,119,109,114,97,117,99,95,102,107,109,121,105,110,111,104,102,106,102,102,114,113,102,97,104,105,101,99,108,109,108,97,102,91,102,106,106,111,110,119,113,91,90,106,108,94,103,113,101,119,108,99,109,107,101,105,99,102,95,102,105,109,97,105,103,96,96,111,103,98,103,111,105,97,97,115,108,106,107,103,112,112,101,101,96,119,102,110,92,104,112,117,96,107,106,105,110,94,94,107,114,104,103,106,98,121,124,102,87,109,106,105,100,97,91,104,110,115,104,99,104,102,103,106,99,108,99,107,102,98,108,97,103,106,106,102,95,98,108,99,104,98,98,112,102,97,113,120,110,99,93,106,121,108,100,109,101,108,113,100,114,110,106,95,107,100,116,106,106,110,117,106,122,112,102,105,116,117,97,98,105,113,98,115,109,107,112,108,97,104,105,101,109,104,102,108,107,109,100,94,106,105,105,89,105,106,109,111,108,99,94,102,100,102,98,103,104,108,103,104,105,102,117,113,94,99,103,116,121,96,108,96,106,107,99,99,100,104,100,105,129,108,101,89,103,112,102,99,92,99,108,110,95,101,115,117,97,107,99,116,108,111,103,99,107,97,110,94,107,105,99,113,112,118,103,103,106,98,97,101,103,99,110,100,105,108,107,106,99,108,121,108,104,117,111,102,98,95,106,105,109,115,98,112,103,106,118,107,98,91,105,105,114,108,104,108,121,114,117,109,106,127,112,105,108,98,100,100,113,107,97,101,113,95,115,96,106,101,92,116,106,94,102,84,85,93,94,98,126,104,110,112,111,103,98,102,104,98,110,105,109,106,111,116,101,106,99,108,100,110,106,112,112,102,103,106,106,105,108,94,107,100,106,103,118,106,93,123,109,104,100,103,117,102,109,103,106,116,102,106,102,110,110,105,96,115,106,101,109,102,112,113,94,106,107,98,96,92,121,116,106,109,104,104,114,110,115,108,104,121,116,98,108,103,108,103,94,93,103,108,107,103,102,98,102,107,98,98,88,98,108,98,108,112,103,112,96,104,100,107,102,105,110,92,130,110,115,106,98,106,106,96,103,109,102,115,91,99,106,105,105,110,113,115,96,96,90,104,108,104,95,105,101,111,100,103,112,106,103,101,101,109,91,116,114,105,107,111,103,98,101,98,107,111,118,105,106,114,109,106,102,109,95,103,104,106,102,99,109,116,104,108,101,103,117,101,92,104,109,117,109,102,110,100,102,103,111,116,110,102,109,104,111,108,108,88,128,100,105,100,101,108,103,104,117,98,110,98,107,107,95,99,113,91,87,90,112,99,107,107,104,116,103,108,117,110,141,116,106,113,102,97,106,110,114,103,121,100,108,105,98,108,93,108,112,99,99,97,94,114,101,119,103,95,131,109,109,113,101,98,106,109,103,108,98,105,105,106,114,116,109,105,114,107,109,133,112,102,111,101,109,105,111,98,95,100,106,105,107,100,109,96,104,103,96,112,107,89,95,105,102,113,103,101,102,117,106,105,100,109,70,106,103,107,111,104,105,102,102,113,99,107,102,103,114,105,112,105,107,103,109,113,92,115,101,104,108,101,104,100,108,106,106,105,101,102,97,96,111,106,95,114,97,114,100,114,100,104,111,93,99,114,105,97,113,109,106,111,91,100,105,92,114,100,115,109,97,107,104,94,108,82,112,108,111,101,117,107,113,112,101,97,99,100,110,96,103,100,87,98,105,101,98,98,106,92,118,117,94,108,115,109,101,99,99,107,105,97,96,94,103,93,105,92,110,106,99,107,108,98,103,112,107,103,108,116,110,105,98,85,98,105,112,109,102,109,99,99,83,98,99,104,100,100,101,101,103,106,113,107,108,102,105,94,115,72,109,101,115,103,95,100,97,103,102,100,102,100,102,102,111,115,98,111,100,113,107,89,112,112,105,102,110,128,117,114,95,96,98,118,118,102,117,97,109,101,101,113,97,112,128,94,109,110,96,96,99,119,89,113,105,105,91,99,104,107,116,99,105, +616.67218,106,102,102,120,94,104,114,103,103,89,95,79,104,83,96,85,111,99,96,102,103,99,101,100,132,107,101,102,97,106,112,103,109,78,102,105,100,104,103,108,101,95,108,108,106,119,98,121,107,108,89,112,108,118,114,110,104,97,102,100,101,91,106,98,113,105,95,118,92,103,101,114,81,95,98,108,99,92,99,102,102,103,106,115,125,112,94,104,94,111,97,102,100,99,89,105,104,91,98,101,94,102,96,99,110,110,88,112,96,105,105,99,105,102,89,75,105,102,112,101,107,104,117,111,109,112,118,112,108,109,96,97,97,101,107,104,96,104,110,110,128,111,103,104,100,97,110,104,102,109,106,103,136,99,99,118,115,108,100,122,126,118,103,106,114,110,116,103,113,74,112,107,106,110,112,102,110,97,105,100,113,99,107,104,143,112,99,97,99,97,98,107,96,83,95,110,98,89,108,96,102,109,111,101,102,99,110,99,118,79,102,103,95,105,108,96,100,97,94,108,117,98,108,104,83,109,99,99,108,101,101,111,101,107,105,105,111,110,114,98,80,104,106,109,101,78,94,103,76,108,112,99,94,99,116,102,104,104,98,109,109,116,104,112,99,111,110,77,103,98,94,101,106,105,96,96,103,105,93,104,117,101,94,108,88,104,103,108,106,102,100,118,108,111,106,100,105,107,102,112,108,109,106,107,102,98,108,105,118,105,106,99,97,108,101,98,111,79,104,107,109,108,104,96,115,98,118,116,117,107,110,103,107,89,113,117,100,109,111,116,109,90,95,98,115,98,108,119,107,104,98,97,95,118,112,109,99,114,103,104,110,113,85,101,95,92,106,117,98,102,110,115,118,109,106,100,88,96,104,113,117,107,103,129,109,99,109,98,110,98,109,108,81,105,114,106,94,106,106,105,108,94,95,109,99,97,103,115,99,96,95,96,108,106,112,103,104,114,109,106,105,102,103,103,102,98,96,99,93,109,101,107,91,95,116,104,99,110,105,87,103,102,103,78,100,101,91,103,100,104,109,113,98,104,98,109,101,104,110,103,109,103,115,109,116,101,98,106,103,101,102,113,112,102,93,100,105,104,114,103,113,101,104,96,109,101,116,107,122,100,115,102,107,100,97,102,103,107,94,109,110,108,118,108,108,104,91,95,110,115,104,99,95,105,103,105,104,94,98,108,107,104,114,102,102,103,95,108,99,99,90,95,102,109,120,95,103,102,113,99,114,113,104,98,103,115,95,108,103,96,101,90,96,91,104,96,107,109,98,111,101,101,101,106,103,109,115,107,112,116,109,104,106,99,105,95,85,95,106,104,106,100,111,94,100,103,114,102,102,110,114,135,108,112,106,107,103,107,103,92,122,94,92,100,115,109,110,102,100,117,104,96,107,102,100,93,105,108,94,110,106,103,104,110,109,90,101,108,100,103,99,112,97,105,107,107,100,92,106,113,104,103,113,117,114,105,98,108,125,106,112,119,106,101,103,104,97,115,93,120,109,91,113,112,102,104,107,104,110,103,133,97,97,100,100,111,105,122,100,100,102,108,99,88,98,99,101,117,92,99,110,100,98,98,107,110,103,112,101,87,102,101,100,98,99,103,102,115,99,119,94,104,110,92,93,113,103,108,110,105,101,108,110,107,76,92,107,104,115,109,116,103,102,98,101,96,115,103,101,91,103,97,109,109,110,94,101,104,92,108,113,112,107,108,116,97,107,116,115,85,98,103,104,107,90,117,94,102,99,108,104,118,102,107,90,104,96,100,103,100,102,108,103,106,102,111,99,110,79,107,110,117,114,94,106,102,99,105,108,106,101,111,97,107,100,122,107,114,108,98,118,104,100,101,107,100,112,88,115,95,101,105,112,104,115,91,104,100,117,95,112,91,87,111,103,107,100,116,105,102,101,108,110,102,113,98,115,100,109,102,106,103,109,102,105,95,105,95,108,104,103,94,116,101,109,95,106,105,106,107,109,103,90,105,111,104,104,106,103,108,106,111,104,102,100,122,102,117,117,94,104,96,120,106,102,105,103,108,113,99,103,99,99,100,119,104,124,108,101,88,100,113,121,103,112,96,98,111,95,104,99,110,108,122,111,113,94,112,104,100,117,110,99,111,104,106,96,96,108,108,79,100,106,103,93,107,110,104,108,108,107,104,112,108,113,100,117,95,104,102,113,109,116,99,108,103,106,102,111,103,103,111,106,97,103,103,101,106,103,96,98,112,103,111,109,113,99,95,101,97,105,104,108,95,125,98,102,108,111,103,111,89,101,99,104,114,111,95,102,97,90,101,107,115,114,105,114,102,110,100,111,107,112,102,94,100,115,100,104,104,112,111,106,92,117,105,104,121,120,118,120,109,111,104,104,100,115,127,108,124,108,123,126,106,116,86,76,115,89,99,104,102,110,104,104,118,102,111,93,96,100,106,100,108,94,112,126,92,94,98,108,99,104,100,116,101,107,107,110,107,112,103,105,94,104,110,107,104,102,105,110,110,112,98,95,107,103,100,74,98,100,106,107,102,102,95,111,108,112,115,113,98,109,109,112,104,101,111,107,117,109,134,112,107,111,102,122,107,111,100,97,101,95,123,109,108,118,96,109,106,106,113,119,113,105,105,111,104,99,110,92,105,117,83,119,113,95,105,112,112,96,96,109,117,96,113,108,107,94,124,107,105,109,100,123,109,110,106,117,102,103,113,99,111,83,105,102,113,120,97,99,102,101,113,106,111,111,114,99,105,104,110,93,113,105,98,89,129,117,99,105,100,100,104,112,95,97,121,97,112,110,106,106,100,109,100,114,106,106,104,114,99,109,98,108,102,115,106,96,104,102,93,111,123,109,110,107,106,89,115,122,114,102,123,115,98,109,106,98,113,117,107,114,111,98,106,108,106,109,100,106,101,115,104,107,119,105,109,113,104,106,98,97,115,109,112,98,112,111,95,102,109,87,102,109,98,112,114,107,97,114,102,105,116,102,105,108,100,108,101,118,106,113,116,113,106,102,102,106,98,117,97,116,110,108,92,106,110,97,113,107,99,117,105,112,101,109,106,104,109,104,108,94,108,108,95,105,108,106,104,94,100,103,107,113,107,113,96,100,89,108,100,80,120,108,95,99,110,98,103,111,107,99,110,104,98,106,107,100,95,105,106,99,102,104,109,97,101,102,109,139,98,113,101,119,131,110,102,114,109,103,76,97,109,106,111,110,91,103,100,125,105,110,100,97,112,113,118,113,111,103,102,113,109,111,79,108,106,104,110,100,106,98,106,95,105,95,104,113,112,90,95,88,121,103,110,116,107,108,105,111,98,109,110,107,104,110,95,104,100,100,101,97,95,102,110,105,112,115,96,104,99,113,95,95,85,109,105,105,80,107,94,98,97,106,106,100,111,106,104,106,107,116,113,108,113,101,76,95,97,99,98,107,95,104,106,90,111,100,101,86,102,111,103,102,102,106,102,100,103,108,109,107,93,105,105,102,109,109,80,102,111,125,97,96,85,101,107,106,89,100,106,105,119,107,116,111,106,109,96,104,110,113,103,91,115,107,105,101,109,110,97,109,103,98,103,110,111,107,100,100,106,103,115,101,103,112,107,110,112,99,111,109,101,100,109,104,106,103,112,109,110,122,111,103,105,92,100,106,117,110,106,100,111,102,106,102,100,103,103,107,111,87,87,91,109,100,106,97,91,108,93,106,103,105,103,89,116,98,103,96,100,107,99,89,106,108,104,122,105,109,107,104,113,105,109,104,101,121,110,99,108,107,105,106,106,96,106,112,105,110,111,102,114,100,109,103,112,112,82,108,101,114,97,115,105,107,113,101,88,109,112,103,102,107,113,98,94,117,111,106,100,102,102,105,105,107,105,108,97,117,106,105,107,97,105,111,108,89,106,98,89,113,106,95,107,118,101,118,97,117,110,111,108,107,111,111,95,102,113,109,119,90,99,90,119,99,102,102,106,102,102,106,83,98,102,103,102,107,103,109,101,97,110,111,103,90,98,105,113,115,102,98,111,105,113,108,98,100,107,120,108,101,101,113,109,122,113,121,112,102,92,108,100,116,108,115,98,104,99,116,113,110,110,103,98,103,100,104,110,104,104,116,104,100,106,105,102,102,108,92,106,103,98,113,110,114,110,98,101,108,95,102,105,103,97,104,101,102,109,102,101,115,95,107,115,88,106,111,104,111,96,106,113,109,115,116,97,105,98,108,109,106,104,104,108,116,108,123,97,85,104,106,102,108,95,102,110,106,116,99,108,107,105,126,102,107,97,94,99,106,109,120,103,107,102,94,104,106,95,102,102,110,101,111,97,92,104,112,112,103,99,100,109,110,102,110,90,102,99,91,104,111,104,98,117,112,101,84,116,106,98,117,117,112,106,113,102,103,105,102,93,105,118,98,108,99,100,108,99,106,102,108,100,104,94,99,109,105,114,105,100,105,108,125,112,109,98,104,93,118,104,96,105,106,107,100,107,96,119,99,117,110,102,104,124,99,106,103,104,114,98,101,95,107,113,94,96,98,103,104,121,102,106,100,113,102,102,96,98,87,107,106,92,110,104,125,111,107,106,93,101,106,107,102,102,106,109,105,103,104,102,90,115,97,100,107,103,98,91,101,112,109,106,106,104,105,87,102,97,99,99,111,104,97,96,103,96,88,101,118,96,100,103,116,106,99,110,104,96,109,87,101,98,116,87,100,103,84,102,109,109,98,104,103,102,116,88,100,117,101,83,119,112,105,96,100,99,103,108,96,99,105,95,100,104,114,88,101,103,97,99,96,80,111,109,70,103,104,106,111,102,109,101,110,112,106,104,105,100,88,100,106,99,97,95,91,91,107,105,98,99,103,98,110,106,99,104,101,103,111,116,115,113,111,105,100,97,107,98, +616.81323,100,104,100,85,108,107,104,97,97,104,91,121,104,107,96,114,106,109,113,107,110,105,116,100,107,103,100,93,100,106,105,104,110,101,99,92,99,93,93,105,108,107,95,107,117,111,105,116,110,99,104,109,98,106,120,96,91,103,96,97,95,102,100,89,118,114,98,96,108,100,118,109,103,105,93,107,104,104,94,104,97,111,110,97,93,96,117,107,88,104,105,107,101,96,96,97,105,100,111,107,106,84,76,110,94,99,92,104,95,95,99,102,107,96,108,98,104,102,105,112,103,100,101,107,99,112,114,105,112,103,96,106,106,99,98,97,102,136,109,106,92,105,95,109,97,101,97,106,99,87,103,103,111,90,94,95,107,103,110,105,105,106,101,106,104,101,93,95,117,98,100,92,94,94,109,107,91,97,104,127,101,105,92,101,102,120,101,104,86,97,107,100,101,105,74,106,97,101,125,85,101,108,104,99,110,110,96,116,103,112,78,109,112,106,107,104,92,103,97,104,90,100,119,107,82,115,92,91,102,95,96,108,93,95,96,99,110,102,106,92,93,100,111,102,108,105,97,105,96,105,117,101,104,103,99,113,104,101,106,93,103,110,101,95,99,119,105,101,106,87,110,92,95,99,108,92,106,122,108,94,102,110,96,105,113,97,114,109,98,96,93,103,112,112,112,82,114,91,96,99,102,83,107,110,101,112,100,112,108,113,96,110,104,106,108,101,96,114,102,107,113,99,108,109,102,93,116,92,98,99,96,101,99,107,93,102,101,90,113,102,106,104,112,86,117,108,92,98,108,95,105,103,105,98,93,94,104,119,95,102,115,111,109,98,98,91,91,92,96,102,96,102,99,114,101,102,107,104,105,94,102,111,112,111,90,62,99,92,105,104,116,92,99,110,92,99,104,116,102,118,94,101,93,92,103,95,91,97,106,102,104,88,107,120,75,100,104,90,107,101,107,103,86,109,99,98,108,100,107,106,105,104,101,110,109,105,101,115,102,104,114,99,101,93,100,99,98,101,108,106,102,101,92,102,107,98,97,114,109,99,107,105,104,96,104,99,106,91,104,107,108,106,113,103,103,98,107,98,110,109,105,101,112,99,106,99,99,108,108,95,111,114,100,92,96,109,95,102,106,107,111,98,100,110,109,68,103,108,94,100,102,112,101,104,100,106,98,100,109,87,90,110,116,97,103,98,112,100,95,111,95,106,119,99,97,101,116,109,106,129,99,100,100,101,105,108,109,99,115,105,99,109,95,103,99,95,104,108,100,107,103,95,107,91,101,98,104,112,104,105,105,97,88,107,103,99,106,112,93,100,87,94,102,102,111,110,108,107,114,100,102,100,98,102,121,107,106,101,107,92,85,111,108,106,107,103,96,102,94,103,104,106,108,114,93,110,90,107,105,121,104,109,103,95,107,101,100,92,94,99,101,101,103,98,104,94,105,97,106,95,110,95,98,114,120,101,90,103,101,116,82,114,99,111,94,111,107,106,111,104,107,96,107,111,88,86,104,95,110,108,113,104,106,109,99,103,93,106,104,106,106,107,114,98,106,103,104,112,98,100,100,112,90,101,101,94,116,104,102,106,90,96,92,101,102,103,133,101,88,87,110,106,103,98,77,110,128,95,107,98,98,117,110,103,105,101,105,100,89,99,103,94,106,109,101,94,88,99,115,111,92,93,102,112,100,105,104,113,116,109,112,107,102,108,100,106,106,111,100,104,103,111,96,101,109,108,91,93,105,102,103,101,103,96,97,106,105,101,92,111,98,100,98,100,95,98,105,108,102,102,102,111,116,108,97,110,100,101,110,114,102,100,101,98,99,106,99,113,109,105,116,95,107,100,120,93,113,103,88,79,117,103,98,112,99,102,110,103,94,99,99,108,97,103,99,100,106,102,112,113,98,106,108,106,106,105,90,103,105,98,103,108,96,95,112,106,101,103,94,102,117,103,92,94,112,104,103,102,110,103,105,110,107,106,96,109,100,107,99,106,114,107,124,98,105,100,103,106,110,104,111,97,109,111,101,107,108,102,103,107,108,95,131,101,108,98,98,100,97,74,112,102,103,106,103,104,112,106,101,108,94,108,94,122,106,103,85,87,96,87,92,116,106,106,116,106,97,90,112,96,102,98,104,121,111,101,92,109,93,101,82,99,118,100,114,100,100,105,99,97,113,106,105,99,113,80,96,107,103,96,100,102,102,118,103,99,102,101,117,104,104,116,92,112,109,105,104,91,91,77,99,92,98,97,90,98,97,109,112,101,101,112,99,94,107,99,110,101,92,105,93,102,89,110,119,116,106,116,105,113,109,99,118,96,101,99,106,102,100,99,112,91,116,105,120,107,100,117,102,119,116,120,83,110,101,102,115,126,111,112,118,107,111,116,108,118,113,110,101,110,103,105,92,108,95,91,96,109,103,93,95,109,98,99,109,118,105,109,102,107,104,102,85,109,112,115,109,113,107,116,94,99,95,101,98,110,95,104,114,112,103,102,105,67,120,114,104,104,108,99,103,129,107,103,112,108,115,105,103,110,117,105,112,109,112,107,104,104,112,99,95,108,115,92,98,96,100,82,109,89,108,109,112,105,107,109,100,109,124,86,120,111,83,115,109,103,102,106,106,103,90,95,101,92,121,113,91,109,106,105,81,69,111,104,101,94,102,109,110,106,113,91,104,105,100,104,107,98,113,97,95,102,119,110,106,100,105,99,100,94,115,98,103,115,106,95,108,102,107,75,97,101,100,114,113,104,94,106,102,120,98,115,100,110,114,98,104,112,104,110,111,117,99,98,106,97,109,103,113,108,120,99,109,115,108,112,118,102,104,108,103,110,114,100,105,102,99,106,97,117,118,96,102,108,99,102,109,106,97,109,120,102,101,98,98,99,105,115,107,106,108,101,117,100,102,109,106,98,105,106,109,91,100,107,107,102,107,100,96,79,93,99,95,99,102,106,117,111,108,99,101,108,92,94,103,107,105,96,110,104,109,98,96,104,105,105,107,111,103,108,113,99,101,111,107,108,105,109,109,108,97,107,119,105,100,107,101,106,107,117,108,111,106,101,103,94,97,98,102,109,109,115,117,113,116,102,112,102,91,102,78,103,117,103,80,107,101,108,94,92,86,103,104,113,99,98,98,100,105,107,107,91,93,98,102,101,102,85,111,113,106,110,95,100,103,106,121,111,109,102,100,106,103,106,111,103,111,101,114,109,103,100,98,106,106,98,117,100,110,101,110,103,111,109,108,112,98,107,95,94,91,104,94,99,99,105,138,104,106,108,106,100,105,105,102,108,90,110,107,85,102,104,103,108,99,103,87,105,97,93,110,101,100,84,92,97,95,96,111,95,96,113,117,102,106,99,100,99,91,101,110,109,102,100,104,101,104,105,115,108,91,115,113,98,83,111,112,102,98,102,97,102,117,115,99,108,103,99,107,121,108,102,99,104,104,105,109,92,101,111,103,110,116,92,115,93,114,111,128,108,104,100,101,106,111,104,112,105,110,108,101,100,96,113,103,111,109,112,103,108,99,106,110,99,108,101,113,110,96,103,111,100,101,99,107,107,102,100,100,110,111,104,108,108,110,102,107,112,102,100,100,111,102,106,92,107,106,118,95,108,116,112,107,105,100,105,91,110,99,112,107,102,102,120,97,99,111,101,117,108,110,115,111,102,109,106,110,111,91,92,108,112,103,104,103,112,110,108,121,106,98,102,106,106,110,109,114,98,104,102,114,104,105,98,104,107,103,106,109,108,110,109,99,97,99,97,119,107,99,109,99,106,117,106,108,97,106,105,100,109,103,88,116,114,103,109,98,102,108,113,107,113,105,99,110,115,117,77,111,94,99,96,98,122,104,110,99,102,95,104,106,109,105,107,106,105,109,98,103,108,105,102,108,96,107,100,99,97,102,113,108,99,113,102,97,104,107,117,98,113,105,114,95,104,101,98,110,96,100,106,105,107,102,94,113,101,102,98,98,94,110,116,81,104,116,102,93,100,96,104,105,104,115,100,103,104,112,105,113,116,107,112,105,105,101,100,100,105,111,104,110,107,123,100,103,107,106,98,104,101,99,106,99,99,101,120,103,112,105,112,105,104,109,106,103,110,112,108,111,102,102,101,99,109,106,102,123,119,95,90,109,108,106,96,107,97,106,108,106,101,104,108,104,92,103,100,110,108,108,104,115,103,96,107,91,117,110,99,89,98,102,107,104,102,107,99,104,100,109,99,109,95,106,115,96,111,99,112,100,97,110,96,110,112,93,95,116,104,104,97,105,92,100,107,103,106,96,100,106,110,99,115,111,104,97,101,106,107,106,98,100,101,115,104,98,99,98,107,104,104,98,108,106,109,97,102,111,112,103,103,111,114,108,108,108,107,113,107,112,102,94,99,113,124,109,109,102,104,96,102,105,88,104,91,89,100,101,106,97,105,116,113,109,120,105,96,110,110,112,110,98,102,115,76,96,103,117,104,101,96,103,95,107,107,106,95,95,107,102,93,95,107,103,112,114,106,108,118,104,104,105,120,97,100,99,109,105,84,109,117,101,99,127,107,100,97,112,112,93,106,111,100,101,101,102,117,101,112,102,115,98,104,97,106,88,98,100,123,98,108,102,97,103,88,111,111,108,119,104,109,101,105,106,124,109,99,102,95,108,110,125,104,96,100,103,91,91,113,111,94,113,113,109,91,104,95,100,104,116,102,105,97,103,117,114,104,107,96,103,109,117,99,102,109,101,108,88,109,103,89,108,99,107,103,104,106,109,97,106,109,95,124,104,110,104,106,101,86,111,87,103,100,95,99,104,101,99,96,108,102,95,92,94,94,96,113,103,92,101,99,110,108,102,94,83,105,109,103,106,99,97,96,100,104,111,107,108,89,105,94, +616.95435,98,99,105,95,102,104,103,107,100,103,86,106,94,100,124,102,98,104,93,109,107,106,109,110,102,99,86,112,105,109,101,89,109,99,107,111,99,107,91,101,110,98,102,112,104,108,95,105,83,133,105,142,95,100,101,97,93,107,106,93,104,94,94,116,91,114,113,105,111,102,115,138,95,107,99,114,106,110,110,112,100,115,103,118,100,95,118,114,111,117,96,105,104,109,100,85,108,114,102,109,95,111,103,101,105,107,106,101,100,94,102,98,105,101,90,108,103,97,113,98,108,108,115,104,99,102,101,100,109,109,101,106,88,102,121,91,96,107,88,103,92,104,109,101,110,103,98,108,99,104,93,108,81,94,96,90,108,108,102,100,103,93,101,112,112,103,101,98,98,103,104,100,102,110,109,96,99,95,110,95,96,101,107,109,104,94,105,104,100,122,97,92,113,103,98,99,98,102,106,113,96,116,82,107,108,96,100,105,114,112,102,94,103,101,113,99,105,105,98,94,70,113,102,110,119,104,119,103,98,105,100,104,114,100,113,116,112,107,122,103,95,104,108,102,90,108,81,110,103,111,102,102,99,110,94,95,101,103,98,109,102,112,105,83,97,109,115,98,95,98,100,99,111,117,113,103,105,103,101,109,102,101,115,107,100,100,96,107,98,101,103,109,121,100,95,101,105,83,105,109,117,99,107,124,113,99,103,113,108,99,104,117,99,104,117,108,104,103,98,96,100,107,97,99,95,103,109,96,95,108,109,107,115,110,103,109,104,92,91,112,99,96,110,99,101,110,116,112,105,104,109,101,91,99,74,105,93,118,102,107,100,106,100,100,98,110,99,105,113,105,112,101,98,94,98,99,98,102,99,108,116,100,102,123,98,98,99,101,107,106,102,107,110,101,103,90,95,113,110,99,103,98,104,100,116,103,108,92,97,110,99,106,100,108,86,95,120,103,103,102,103,93,102,101,88,100,92,100,107,117,95,99,66,99,113,102,90,82,96,109,87,110,99,97,103,97,94,101,106,99,94,107,100,109,104,90,106,100,112,101,103,105,108,105,102,110,100,99,100,103,106,100,100,109,104,91,104,103,104,105,108,111,88,86,100,112,99,99,103,108,115,90,110,95,107,106,103,105,100,109,105,100,107,114,101,103,94,98,105,102,107,105,100,100,90,105,107,118,98,102,109,113,103,106,102,106,102,106,112,109,100,107,94,104,102,101,108,101,123,103,104,104,98,92,118,116,112,98,103,103,106,114,96,105,94,105,107,101,106,104,103,98,104,125,111,102,114,110,102,92,99,98,104,98,105,106,105,97,85,111,92,107,103,100,102,96,109,105,101,104,102,103,96,104,107,112,96,114,111,120,100,108,103,111,112,101,93,117,97,101,117,112,104,104,89,115,104,110,101,103,100,83,118,118,116,100,100,93,107,92,104,81,94,101,101,105,103,96,109,99,80,123,99,100,91,90,97,112,100,104,101,105,113,107,98,113,109,98,113,102,112,100,99,107,109,105,124,108,98,102,89,101,104,98,99,101,100,86,108,92,105,100,112,109,95,118,107,95,101,99,107,104,100,109,98,108,105,103,103,86,98,98,89,94,102,105,103,106,97,107,103,110,94,85,106,119,104,94,114,111,112,108,107,99,105,100,93,101,92,101,119,103,93,104,90,105,104,95,113,112,103,102,95,106,105,103,96,98,96,103,97,95,103,108,103,105,97,102,110,104,99,121,91,108,103,101,99,116,113,107,102,108,108,102,103,99,105,89,97,98,102,104,118,112,101,103,104,90,91,99,109,102,102,107,99,104,98,114,106,103,104,88,104,104,67,82,103,105,105,106,118,102,116,82,96,101,112,111,118,113,109,104,109,105,86,112,109,106,101,104,118,95,102,97,109,113,98,104,108,114,99,119,106,97,104,96,117,98,106,91,102,101,100,103,104,106,110,91,94,102,107,94,98,104,112,112,106,111,110,110,104,100,105,103,108,101,108,96,102,99,104,99,100,112,76,105,107,98,97,106,95,107,112,112,125,115,116,118,111,108,102,115,99,95,101,104,92,107,73,90,103,102,124,102,122,101,107,106,100,94,110,108,110,108,103,89,104,84,98,103,113,102,105,107,101,105,94,95,102,116,95,106,122,111,99,109,102,107,90,110,108,76,65,111,126,103,105,73,106,109,122,100,104,108,113,106,83,93,114,101,101,105,106,96,90,124,104,102,100,113,109,113,108,96,106,113,110,99,101,99,96,109,103,89,101,92,104,101,106,103,98,101,108,106,109,99,95,100,93,99,104,125,107,94,108,105,109,108,103,103,133,101,113,106,100,108,108,92,102,104,98,116,76,103,105,100,97,111,110,99,122,116,120,106,114,117,137,124,112,121,112,116,125,104,106,102,100,112,110,93,96,107,110,101,84,104,86,99,109,94,99,115,109,112,115,107,101,93,97,84,91,91,100,110,109,125,108,94,139,113,107,104,91,104,108,98,109,91,104,99,104,102,111,90,111,98,101,107,98,105,109,119,98,116,94,108,125,102,88,94,90,106,104,102,114,106,99,100,97,100,104,119,106,98,106,110,86,103,102,95,108,105,109,99,101,103,105,106,114,68,114,105,108,99,97,95,109,116,136,101,119,81,106,105,110,115,103,104,110,106,103,90,115,101,107,95,105,117,116,101,99,107,104,103,103,115,108,109,100,104,96,114,108,110,110,104,106,98,100,95,104,94,102,104,108,100,121,108,105,105,109,106,115,100,117,110,102,102,106,110,105,107,102,106,103,90,113,102,113,109,107,107,97,106,91,102,102,100,115,99,108,99,107,97,111,102,104,106,96,91,116,101,106,107,110,103,101,115,102,102,120,97,102,98,88,95,115,119,105,109,97,91,95,109,103,109,125,96,108,105,109,92,108,102,102,105,108,111,109,112,100,110,95,99,109,105,107,112,102,102,95,100,111,108,95,85,105,117,99,109,104,117,106,109,93,114,113,89,108,99,111,112,97,113,104,102,104,96,99,113,106,113,106,106,113,98,107,88,84,114,111,108,111,103,93,111,107,105,106,90,97,105,105,102,102,113,69,102,100,98,121,102,107,102,105,98,113,99,111,112,98,98,108,95,102,106,104,97,123,109,108,95,113,105,104,102,98,99,93,98,76,119,103,101,120,108,105,118,111,107,104,103,101,106,101,92,108,103,105,105,93,105,101,104,105,111,100,107,103,105,113,99,105,106,101,109,110,103,104,110,96,100,100,111,112,101,102,107,106,121,111,99,115,104,116,108,98,121,109,118,98,93,100,106,103,88,108,104,98,108,110,88,96,97,112,97,106,105,103,98,107,101,103,102,81,103,103,105,92,113,120,102,92,103,119,107,106,98,112,107,106,112,113,102,105,99,102,100,108,111,103,96,99,102,99,106,89,93,94,114,95,100,108,105,98,108,95,103,89,108,106,111,109,105,107,103,101,105,103,101,107,90,99,99,104,108,97,105,128,94,95,105,97,109,106,105,100,106,111,98,96,104,108,112,104,108,105,99,106,109,100,120,102,105,84,77,106,114,100,107,113,102,101,103,102,108,110,101,102,104,99,102,85,101,105,105,109,114,102,117,103,102,97,105,92,100,99,107,102,103,105,90,115,108,103,108,96,105,108,105,111,101,105,109,105,97,96,103,104,104,119,111,99,111,99,108,116,112,113,111,109,91,100,116,110,108,104,116,96,101,105,100,71,99,97,85,109,104,96,105,106,86,95,99,105,106,107,116,108,103,105,99,101,100,115,106,103,113,108,111,100,94,93,102,111,120,112,105,99,104,99,103,109,80,102,105,105,97,110,115,84,126,101,100,98,107,104,96,99,95,108,103,103,109,103,115,101,103,108,100,99,112,108,108,107,105,113,100,98,98,100,105,100,110,105,103,107,102,104,96,106,98,115,96,109,109,113,100,112,107,97,110,78,97,101,111,106,101,100,92,105,102,109,98,109,111,111,113,124,99,106,103,101,101,113,110,98,111,114,109,100,116,96,106,103,110,113,102,111,106,93,117,112,98,114,109,95,107,103,102,109,108,98,112,103,112,104,103,107,113,103,104,104,109,106,106,110,110,94,105,78,103,93,110,108,112,102,100,103,105,107,98,108,110,103,90,112,111,100,102,98,113,100,94,110,103,109,112,120,102,104,99,103,113,114,105,95,95,106,105,107,110,115,99,88,100,102,94,103,105,106,110,99,108,113,105,107,110,98,95,106,97,107,95,101,96,96,121,105,113,93,107,94,113,95,115,108,112,100,98,109,110,107,102,103,113,105,100,103,114,109,106,118,116,113,113,125,106,114,99,112,102,98,115,110,81,106,107,106,101,88,129,132,103,95,108,110,107,102,116,101,117,101,118,101,73,112,103,99,98,102,67,108,120,99,99,100,106,113,94,109,110,113,93,121,105,107,120,99,109,100,106,83,106,113,101,117,101,109,92,102,110,104,103,111,95,117,119,112,103,101,104,109,103,109,101,102,102,105,91,106,92,109,98,107,98,107,110,75,127,99,107,102,113,97,102,100,102,103,105,95,96,110,91,102,103,113,98,100,101,105,105,103,111,103,92,109,94,108,109,106,110,105,111,105,112,125,111,102,111,109,93,92,113,107,99,98,95,123,99,95,100,107,103,103,105,111,108,113,101,79,101,111,114,99,107,94,109,106,99,121,99,96,95,120,99,109,98,108,104,108,90,101,104,108,110,107,97,108,100,88,95,94,98,105,108,102,103,95,105,105,105,102,100,97,108,102,100,117,95,91,106,124,109,107,102,102,109,105,113,96,81,96,98,103,97,112,107,108,106,95,103,105,109,93,108,91,124,112,89,106,116,95,96,116,101,107,96,112,97,100,104,93,114,113,99,117,126,90,104, +617.0954,91,112,96,89,89,108,106,86,111,96,94,105,105,100,99,104,90,117,92,92,94,107,123,103,118,103,103,90,98,100,110,99,93,98,86,106,101,116,106,108,100,108,104,101,107,112,104,106,122,110,100,106,103,108,99,100,105,95,115,108,102,122,98,97,95,112,97,103,100,111,108,105,85,107,109,100,96,105,107,105,108,105,98,100,126,92,126,132,106,102,118,109,108,87,109,97,104,108,102,94,105,117,104,100,95,106,91,113,99,112,116,110,94,116,107,97,105,100,106,94,98,115,99,111,108,103,102,99,114,99,96,91,110,83,116,102,98,100,102,100,106,103,93,94,103,102,104,102,103,105,103,106,107,102,102,95,98,100,111,121,114,103,100,108,102,103,97,99,102,104,98,95,99,98,106,101,107,92,105,115,105,88,104,107,106,102,93,97,101,105,109,104,99,106,108,103,103,100,100,104,114,101,97,111,107,113,109,102,100,103,107,101,112,96,102,98,102,101,106,109,100,105,112,101,106,100,97,109,103,105,90,103,103,112,104,118,107,103,106,113,95,113,114,108,98,104,112,106,119,105,100,111,111,102,100,112,91,105,97,92,114,111,84,105,90,107,99,75,107,107,103,95,109,94,100,106,104,115,105,113,110,106,91,111,106,106,101,84,116,107,103,96,112,107,102,104,95,107,112,97,97,102,104,127,96,112,104,100,109,105,86,102,87,107,111,104,96,105,102,93,101,109,109,117,112,90,111,89,127,105,96,109,102,108,95,106,111,93,100,100,105,108,97,102,108,109,119,106,95,98,111,100,107,107,87,111,95,108,110,109,103,120,101,98,95,108,96,113,102,100,114,94,107,99,109,104,120,95,97,110,114,111,104,105,103,85,96,109,103,106,114,96,92,112,95,104,105,100,113,99,91,113,114,97,112,104,109,122,107,100,93,100,129,99,104,101,103,110,108,110,101,91,88,113,102,102,106,109,101,103,92,107,78,114,102,92,95,100,95,99,105,97,108,140,96,109,99,101,109,114,102,104,82,113,102,99,93,105,121,120,108,110,109,110,112,112,95,114,100,95,104,113,113,96,93,102,97,113,104,108,111,109,125,94,127,99,108,101,98,109,111,106,112,100,100,96,97,113,98,104,107,114,107,105,108,103,100,105,94,116,114,115,100,102,109,108,109,100,96,99,108,105,115,104,111,95,98,97,104,103,105,109,107,98,117,120,106,101,113,109,99,92,100,102,102,106,102,90,95,99,100,110,104,86,113,110,117,98,103,98,100,101,121,103,104,85,102,96,101,98,94,107,112,114,103,104,113,93,117,100,102,97,101,110,109,94,110,93,100,102,107,109,101,96,115,111,108,87,114,107,110,115,105,102,105,103,105,96,91,105,109,99,110,121,102,104,90,94,107,104,102,113,114,106,105,114,104,114,106,113,117,124,99,124,91,98,100,98,98,96,99,114,98,102,103,102,99,109,120,103,100,95,102,116,103,102,111,100,98,95,101,115,103,112,94,104,94,100,124,90,108,110,105,89,113,102,105,106,106,113,109,109,95,115,95,99,118,98,94,109,112,105,113,110,116,110,105,98,104,109,102,112,118,102,101,104,115,107,99,107,125,106,112,80,99,104,97,100,102,98,104,101,95,100,79,102,109,102,100,104,112,97,105,103,102,83,102,95,111,108,111,94,107,102,100,107,105,102,104,97,107,101,105,104,110,96,103,99,100,105,105,102,98,108,105,102,83,100,87,99,89,106,103,94,105,112,104,103,115,104,91,102,115,113,97,129,107,121,82,100,109,108,115,104,107,93,108,110,122,111,96,104,96,96,101,104,100,115,108,110,102,104,105,100,119,103,103,101,115,106,109,106,109,117,104,112,90,95,100,97,100,105,108,105,103,97,107,108,114,102,107,109,108,97,102,91,94,113,113,100,117,85,105,109,103,107,113,102,106,106,104,108,103,113,108,95,98,106,110,105,101,108,106,98,100,103,104,78,97,101,92,112,111,91,103,106,104,99,117,114,107,108,106,108,98,109,102,106,106,100,103,125,112,107,99,101,104,115,108,104,95,96,117,112,117,89,93,105,99,113,107,108,107,112,95,112,109,103,94,97,112,107,86,107,113,106,95,99,109,109,100,100,119,105,110,110,125,95,94,103,103,106,105,87,139,105,108,105,115,109,99,104,74,95,98,90,118,89,109,97,104,92,100,96,99,107,88,99,91,98,105,108,105,101,98,108,109,99,103,95,102,105,106,102,107,90,95,97,98,116,95,91,94,103,106,108,114,107,98,101,112,86,112,114,99,105,102,110,103,106,117,105,107,92,112,112,110,102,111,110,102,104,98,111,107,100,96,107,116,116,107,121,124,102,101,98,117,128,126,117,121,125,103,106,103,109,107,117,101,98,106,104,101,108,110,109,112,105,99,92,109,116,105,103,116,104,112,109,98,93,101,107,108,83,72,115,72,94,112,102,101,103,142,109,113,109,94,102,107,97,115,100,112,99,113,110,104,98,109,125,110,111,102,98,108,93,111,97,99,103,116,95,96,108,103,107,99,101,107,110,104,103,109,87,107,95,98,103,95,96,96,95,99,123,91,93,106,107,105,91,102,106,115,107,109,83,99,109,90,100,101,103,108,99,100,101,100,94,109,109,89,102,110,100,105,103,110,106,107,89,106,105,99,112,99,107,106,103,105,103,105,113,115,110,116,108,102,99,95,99,108,104,103,111,100,86,119,112,97,116,101,106,100,109,108,113,105,106,113,92,103,97,95,94,84,110,98,106,106,100,84,99,100,105,102,108,110,107,113,105,108,113,109,114,95,98,103,101,107,106,108,110,85,113,107,109,118,111,121,135,106,107,112,110,106,101,106,107,102,104,112,103,119,111,100,113,116,101,89,108,107,101,104,104,112,102,98,102,108,99,104,113,114,109,102,116,114,95,110,111,111,111,81,122,96,104,106,113,109,108,93,105,113,91,103,115,102,101,105,109,111,109,116,119,106,101,122,123,107,99,101,95,105,111,103,110,105,113,98,98,112,106,121,124,106,104,103,98,99,126,99,101,114,120,89,100,107,104,115,99,111,109,99,109,95,105,108,111,97,101,115,110,104,117,109,109,104,121,101,97,99,101,103,128,106,107,110,99,99,103,117,107,111,104,130,110,98,98,101,105,107,108,95,106,105,103,107,106,95,107,96,104,106,104,107,104,106,107,124,115,91,105,113,106,95,109,100,99,107,100,115,112,103,110,106,98,103,103,103,102,100,109,108,105,105,109,107,107,101,88,113,102,106,107,108,96,116,102,98,108,105,107,109,100,96,106,98,105,97,95,92,113,111,96,95,103,109,101,107,117,97,103,99,99,94,115,107,98,99,100,115,105,103,111,102,111,111,115,104,96,101,108,103,104,91,125,110,102,100,95,100,108,101,110,104,89,100,100,129,103,114,111,110,96,110,99,122,103,107,96,103,104,106,100,103,102,108,98,110,104,101,106,102,102,113,106,103,108,112,103,87,113,116,111,99,104,106,108,99,96,94,104,110,102,111,102,77,109,110,118,104,102,112,83,109,111,102,108,100,97,96,103,109,106,104,109,108,111,102,111,88,107,108,105,95,108,102,107,104,100,104,106,109,94,111,69,101,102,113,100,107,97,110,102,93,119,107,103,112,99,118,108,99,103,106,106,102,113,99,117,103,100,115,112,103,100,112,106,117,105,99,96,113,105,94,101,112,104,110,91,112,104,101,99,101,103,107,100,109,104,117,106,100,108,96,104,111,98,102,91,95,110,103,113,110,89,102,114,107,109,113,118,89,101,96,107,107,107,107,101,102,102,102,107,100,101,95,98,107,136,98,106,117,101,108,82,106,111,113,99,99,78,115,97,96,110,104,101,105,115,96,105,111,104,103,113,110,94,109,106,121,106,112,92,106,106,120,96,110,113,112,109,85,111,114,108,106,108,97,90,102,101,91,106,102,102,111,96,105,101,105,111,98,94,113,108,117,108,109,99,119,110,99,106,99,103,113,91,117,105,112,101,101,96,124,109,102,103,117,108,102,105,115,105,96,121,99,108,105,96,109,110,101,103,117,113,112,107,103,110,105,110,101,113,103,106,108,101,111,108,100,105,104,100,111,97,99,104,111,108,114,107,107,98,109,99,109,106,100,101,116,109,105,93,102,108,102,113,111,102,96,113,100,102,103,114,109,101,101,102,102,104,83,112,105,105,102,108,98,91,98,98,111,97,110,104,100,103,102,101,104,95,95,109,101,102,108,117,98,102,108,104,109,101,103,100,102,107,106,103,97,105,106,94,109,107,105,108,112,101,106,94,112,103,92,101,109,103,108,98,103,102,130,110,102,109,105,99,98,110,101,103,98,111,98,117,122,106,98,109,93,91,91,108,90,100,102,94,107,92,98,100,99,94,103,98,105,110,92,108,104,108,106,107,103,104,92,90,109,104,111,97,108,107,109,101,104,113,97,96,112,105,94,102,108,102,112,101,93,94,76,92,113,97,109,92,87,104,104,101,86,102,95,111,101,109,104,97,99,111,117,100,102,108,102,99,110,102,99,95,106,93,114,110,114,109,98,99,105,94,99,101,101,101,109,108,111,103,106,95,98,97,115,102,108,107,100,111,95,114,96,103,102,104,104,100,103,101,104,96,124,108,110,110,103,114,96,109,99,98,113,109,89,102,93,109,100,95,92,101,105,100,112,97,117,102,105,106,109,100,99,102,96,96,101,102,98,108,109,104,114,101,97,104,112,109,110,94,109,110,105,97,106,97,109,103,109,108,109,104,106,96,112,105,109,89,104,109,103,100,100,102,106,104,102,101,98,110,113,126,115,112,105,97,118,110,88,112,111,102,116,94,114,95,109,103,99,112,97,94, +617.23651,94,108,100,92,101,105,92,101,114,116,102,111,109,109,98,106,102,106,96,101,105,107,103,101,90,116,99,105,104,124,101,100,109,104,108,120,108,87,92,81,95,94,110,110,107,106,112,104,91,105,104,94,96,99,119,88,103,100,111,95,95,102,94,95,112,110,92,104,104,107,99,121,117,112,96,110,90,105,129,99,103,129,104,105,113,92,102,106,96,105,109,87,101,108,98,112,103,103,110,104,109,97,104,105,107,96,105,117,110,106,98,102,96,108,99,102,92,100,121,114,107,106,109,109,99,103,116,98,112,108,93,105,113,101,101,116,99,68,101,96,99,95,108,101,105,107,110,107,104,106,96,99,103,90,97,99,87,105,103,106,100,99,116,109,109,93,95,103,102,95,113,90,123,94,92,113,101,84,117,109,102,101,108,108,99,90,112,98,114,109,96,87,112,111,118,105,103,106,102,101,101,102,103,108,102,121,99,105,110,110,111,103,100,100,101,116,105,99,110,103,102,112,98,91,101,97,109,113,121,101,105,113,101,111,100,99,102,109,107,100,101,106,101,114,102,111,96,98,100,113,94,95,96,98,106,115,104,104,101,109,94,102,113,88,108,92,105,102,112,91,102,115,112,105,97,103,105,96,107,93,98,103,109,93,97,109,98,99,118,103,112,100,105,90,112,102,111,103,100,104,108,107,108,117,105,111,128,92,102,105,91,112,105,126,95,109,113,104,106,94,107,111,99,120,108,108,108,90,103,106,108,105,103,103,104,100,82,102,95,101,112,109,109,107,109,117,122,106,111,102,88,116,131,116,95,103,112,102,106,108,114,99,90,111,110,110,116,107,104,105,99,104,107,95,113,104,110,99,101,135,109,98,98,101,113,103,109,108,72,106,103,103,106,113,117,106,132,116,91,101,100,99,109,101,99,108,110,107,96,106,109,97,107,110,98,108,98,96,87,114,121,99,102,113,105,97,95,106,109,113,115,108,102,99,116,110,103,110,106,108,104,113,99,105,107,111,105,101,117,112,106,103,99,99,103,91,105,102,118,105,104,112,110,108,79,110,102,99,107,105,114,94,91,117,94,100,110,112,107,116,110,100,114,102,94,106,100,96,96,103,113,110,114,99,100,106,104,103,113,112,95,105,104,103,116,117,94,95,100,98,123,131,113,95,106,104,97,113,110,107,108,104,104,113,103,95,110,99,101,103,78,95,103,99,106,106,107,96,108,112,106,107,94,117,102,115,101,102,108,108,114,114,106,96,93,116,109,108,101,105,104,105,106,103,100,95,114,106,105,99,96,111,97,102,100,102,107,95,100,107,101,109,104,95,97,105,104,103,104,101,117,113,106,111,113,110,103,101,108,94,95,106,112,100,110,95,100,85,104,101,100,118,103,118,88,100,103,105,107,100,107,104,114,110,106,95,97,108,96,106,99,112,99,109,108,109,112,105,137,111,102,100,116,122,104,98,100,98,113,103,105,116,111,115,109,101,111,106,109,95,103,122,85,112,97,113,115,111,103,82,111,132,106,117,100,116,106,105,95,110,107,102,102,103,101,109,103,108,109,113,95,106,106,109,126,99,104,108,115,99,110,106,108,114,97,100,112,109,107,101,108,106,110,101,103,105,99,110,110,69,113,102,112,112,108,101,112,117,107,100,104,101,104,102,102,112,105,100,108,109,103,102,105,98,109,109,102,118,113,117,108,108,121,99,107,112,103,111,98,110,108,108,96,111,116,108,104,101,97,98,98,107,114,90,112,116,100,109,100,98,103,109,117,107,107,115,102,121,108,101,100,102,113,100,113,98,106,102,102,113,105,107,101,105,103,90,108,104,104,102,126,102,94,105,82,104,102,109,101,117,101,105,95,104,110,103,103,97,107,106,106,96,102,103,99,104,103,103,130,106,104,109,105,100,113,106,109,91,97,95,93,103,106,105,106,103,97,101,98,118,107,94,111,106,99,86,110,101,111,107,98,109,105,88,107,104,105,109,107,92,105,91,102,110,105,112,113,115,112,102,85,112,105,114,96,96,97,103,85,113,107,108,115,108,116,110,99,104,103,102,105,98,106,106,101,99,108,113,110,105,109,107,117,99,109,101,102,94,106,109,109,101,111,104,99,100,111,104,95,98,111,106,106,101,95,100,113,105,110,105,95,106,120,108,111,104,100,103,109,108,101,121,114,102,109,110,96,103,126,96,109,100,110,103,99,103,99,101,102,105,101,104,110,110,106,105,113,107,104,113,93,96,108,97,100,101,85,99,98,109,103,111,99,105,111,103,99,102,105,108,91,105,95,98,106,111,101,101,100,95,106,103,77,106,115,99,113,99,110,117,106,107,129,108,104,103,108,109,103,123,117,114,111,126,107,129,129,107,122,115,114,130,123,109,127,121,98,97,137,108,114,104,107,124,105,122,109,105,109,102,112,95,91,102,116,104,105,100,101,106,89,93,116,110,108,105,102,98,111,113,101,113,91,118,103,101,105,106,103,136,116,94,102,105,104,110,101,104,120,111,93,118,99,103,94,117,103,106,101,113,104,99,87,99,111,105,101,109,103,97,101,120,117,95,109,107,120,104,95,104,103,104,108,112,111,101,100,102,96,103,99,100,106,111,119,103,109,100,113,112,105,83,107,101,114,106,113,102,103,104,101,106,109,100,104,101,104,105,125,112,100,108,94,109,108,94,106,97,110,102,108,108,118,114,99,103,106,99,106,107,106,105,109,95,104,102,102,90,104,111,113,106,98,102,108,103,107,98,104,111,108,104,99,106,97,91,87,98,105,105,93,102,104,107,107,99,94,113,102,103,107,99,100,95,113,102,106,103,91,96,107,95,103,112,109,96,104,102,115,109,104,105,106,114,113,91,101,98,115,112,99,104,107,105,105,109,101,102,103,92,109,108,115,110,95,97,99,105,100,106,106,110,100,108,109,139,105,102,99,103,119,99,98,114,108,103,96,105,105,104,94,117,100,100,102,115,113,114,110,101,104,106,100,105,114,102,94,113,108,109,99,98,109,110,112,102,101,85,123,107,112,103,108,108,95,105,101,104,118,104,115,105,103,109,102,97,98,103,103,107,109,105,102,102,115,99,120,100,109,91,117,87,111,111,117,109,105,103,106,108,92,103,101,101,90,102,105,105,112,87,107,97,91,100,107,94,100,107,113,101,98,104,100,102,99,93,118,104,100,104,83,104,103,110,101,98,106,93,108,105,105,108,109,110,108,104,110,84,103,99,98,109,109,106,99,109,105,108,101,93,117,108,102,102,107,95,113,99,124,107,109,99,106,95,113,112,107,106,93,96,134,112,124,103,114,107,118,105,115,102,100,120,106,102,102,101,103,108,106,106,92,109,101,101,103,96,106,106,99,93,110,83,100,109,100,109,106,87,107,97,111,117,108,90,101,110,96,104,91,100,92,94,103,112,102,92,100,105,110,95,109,93,104,101,105,103,99,101,104,96,123,105,107,108,109,103,100,124,104,101,111,100,111,116,102,93,99,107,105,101,117,102,99,110,102,106,103,103,103,101,101,108,111,100,108,97,109,92,113,111,120,91,97,105,101,106,95,112,102,109,88,101,102,92,119,108,100,107,99,106,99,113,107,108,109,78,108,127,110,108,108,124,112,107,115,95,106,100,106,107,89,97,100,112,96,96,98,101,107,110,120,117,111,113,104,99,108,110,97,101,101,99,114,104,96,104,117,96,110,104,103,105,98,104,103,106,108,99,91,109,99,102,105,108,108,111,108,104,102,101,113,112,96,105,102,98,96,98,107,94,106,110,91,110,102,100,111,101,108,103,119,108,119,104,91,100,105,96,108,112,104,104,108,102,98,100,121,91,115,104,96,124,97,113,108,102,89,97,102,102,105,110,102,118,104,120,101,102,109,106,99,90,98,107,112,122,111,102,102,113,98,110,113,98,100,101,108,102,110,107,104,96,119,99,103,117,106,103,110,124,104,103,113,102,101,100,108,105,99,105,110,104,112,96,110,99,105,108,110,109,103,104,94,95,111,102,105,98,100,107,96,103,92,109,111,109,108,108,108,94,104,98,101,110,92,106,102,105,112,105,108,107,106,108,113,111,112,108,109,96,104,105,103,113,114,107,80,109,108,116,112,106,102,99,108,104,106,98,84,115,106,100,99,91,94,104,128,96,100,95,109,111,111,98,103,104,99,101,103,105,89,106,102,99,108,105,91,109,101,120,98,95,100,102,97,105,101,102,98,91,109,105,100,103,100,97,105,97,105,100,79,113,113,105,107,105,119,95,90,121,109,98,108,99,111,85,88,98,116,112,98,92,107,107,117,102,109,110,106,107,104,98,113,116,103,98,107,97,102,111,94,106,113,120,99,113,111,112,113,110,100,109,100,99,135,89,110,108,104,109,98,94,106,116,101,108,99,106,109,106,111,98,105,106,102,97,97,108,103,105,102,118,110,114,113,96,109,96,101,113,117,91,121,101,112,108,101,102,111,105,104,94,109,109,104,108,95,94,100,104,97,113,105,99,101,97,102,113,110,109,101,100,126,100,100,117,110,95,100,97,107,110,98,102,122,107,104,102,98,108,96,100,113,109,113,108,105,96,98,124,99,106,119,109,93,103,98,119,107,94,112,106,97,115,113,96,109,97,98,93,95,113,109,108,85,108,104,90,97,104,95,104,102,95,100,105,109,108,105,100,110,120,121,99,99,112,105,106,107,102,104,120,100,114,99,117,97,108,106,113,112,107,112,108,99,103,106,86,104,88,97,112,97,109,92,110,110,98,109,100,107,96,104,119,105,95,105,112,120,127,109,103,101,113,106,104,121,105,95,88,119,127,96,104,95,103,100,108,126,95,113,107,104,102,112,109,96,106,100,103,106,99,96,99,105,100,102,106,116,105, +617.37762,108,110,97,88,101,74,100,107,105,109,101,84,105,98,93,106,97,121,99,114,98,105,103,112,108,97,111,109,106,100,114,104,110,81,116,108,94,91,107,104,99,95,96,95,94,106,105,98,97,105,102,111,109,106,93,96,115,100,96,106,114,102,114,103,100,99,100,111,95,117,100,104,97,99,95,112,108,97,109,99,100,102,104,114,105,97,113,110,103,120,105,97,96,101,98,101,99,97,100,125,110,99,88,119,98,117,95,106,111,121,101,113,107,106,100,100,102,105,110,103,102,102,110,95,82,119,96,96,102,90,101,105,93,106,93,104,109,106,99,97,108,113,94,96,94,106,116,104,94,110,105,108,116,106,93,101,98,108,96,104,108,110,96,100,102,88,97,106,95,103,113,99,105,102,104,110,107,101,110,109,103,102,100,108,104,103,102,103,89,111,103,111,106,110,112,100,105,102,112,98,94,99,94,104,100,107,98,110,107,102,105,99,110,105,110,111,124,119,100,96,101,87,113,98,108,103,101,99,107,102,94,94,106,100,106,107,101,100,102,100,109,111,108,105,80,86,98,97,109,114,103,113,101,106,98,103,113,105,93,100,97,88,103,98,94,104,100,108,102,105,117,103,113,98,105,111,106,98,99,103,114,106,110,104,99,107,94,101,118,104,111,108,106,104,108,102,99,108,111,109,83,107,110,99,95,103,91,114,110,99,101,115,106,99,117,95,94,110,105,105,89,97,112,100,94,105,97,98,113,108,95,111,113,103,110,114,123,112,101,109,74,96,83,103,102,89,72,100,109,122,124,90,96,90,113,107,110,99,107,114,71,101,115,93,108,91,99,109,107,107,103,107,113,107,96,92,108,106,82,101,104,107,105,132,91,103,106,104,98,103,108,104,87,105,101,88,96,109,98,101,103,91,104,102,105,117,95,113,105,103,92,98,104,105,112,104,102,113,100,87,105,102,93,106,102,91,100,97,103,103,102,101,98,104,106,100,98,110,99,96,117,101,103,113,87,111,95,102,105,116,99,100,106,108,108,102,96,99,101,100,96,90,116,95,106,104,102,94,107,110,97,105,106,106,107,100,108,110,101,92,93,103,95,103,101,100,101,111,98,102,107,108,103,110,99,112,96,100,104,102,111,107,103,107,117,103,84,106,105,102,103,124,95,101,102,97,95,110,99,102,100,105,102,91,103,87,98,111,104,98,95,105,102,98,88,102,101,113,102,112,82,104,114,96,112,102,108,100,105,110,105,99,99,104,100,101,110,99,96,97,101,106,100,116,105,113,108,109,105,91,102,108,113,95,106,104,108,96,109,115,105,104,113,95,118,94,104,103,103,100,109,96,112,97,114,122,102,92,95,100,98,101,111,114,104,104,102,108,102,126,107,99,104,105,107,105,100,106,99,113,104,100,109,95,103,105,100,107,101,100,97,99,106,121,87,97,99,115,111,102,112,125,96,102,107,90,86,113,100,94,103,110,102,100,104,105,107,105,105,103,106,102,105,109,95,89,99,129,113,117,113,115,110,111,94,105,108,114,114,110,100,134,106,129,102,102,101,117,85,119,93,100,104,102,104,103,97,108,112,91,93,107,102,97,105,101,96,107,119,110,115,112,85,106,108,101,106,92,103,98,107,116,108,111,106,99,104,100,112,106,112,104,89,115,104,106,105,111,110,105,104,114,98,113,96,93,118,95,97,87,117,93,85,101,104,110,102,101,106,95,122,98,91,101,103,101,103,105,103,104,108,95,109,88,105,102,113,103,124,111,99,101,113,95,100,117,98,132,100,103,105,101,101,107,100,102,86,100,111,113,115,97,99,113,96,104,103,110,90,113,99,105,107,100,95,111,117,117,91,113,106,106,101,105,105,95,101,116,106,101,103,100,105,100,108,102,104,106,102,99,89,98,106,100,98,102,99,103,69,107,108,109,101,99,77,97,104,98,108,106,112,94,110,100,109,112,97,98,110,106,122,114,100,99,101,114,101,94,105,104,128,101,93,96,98,106,95,116,102,105,113,113,99,108,112,99,104,98,110,105,104,97,111,97,102,89,101,91,114,89,92,112,102,95,109,94,96,109,100,96,121,96,100,104,106,103,103,105,112,104,92,109,106,99,95,99,89,113,103,102,101,107,91,104,105,109,100,97,112,100,108,112,96,86,108,117,121,88,107,104,102,109,92,93,111,91,96,110,112,103,96,113,104,104,105,103,102,116,97,107,98,101,105,96,91,109,93,114,102,104,103,112,112,100,108,101,130,121,100,94,104,87,102,102,106,100,108,82,103,109,75,99,106,102,99,125,114,109,103,112,115,94,107,99,104,110,110,108,104,109,104,113,83,95,102,84,98,105,106,116,108,114,105,110,111,114,122,103,123,113,122,134,132,107,105,128,103,110,107,109,88,109,105,109,100,98,91,104,103,92,96,111,91,99,104,110,107,110,88,97,106,108,107,107,110,88,117,97,108,104,113,93,106,94,105,99,97,109,113,113,108,96,87,99,99,107,105,96,115,117,96,109,108,109,107,113,121,103,90,121,93,108,93,108,103,87,92,110,105,114,102,99,106,116,99,101,108,95,113,101,106,96,106,114,112,91,101,99,113,98,100,98,103,103,96,105,104,108,98,111,107,100,100,96,100,109,104,70,113,104,92,99,100,106,96,99,100,101,109,102,100,96,96,110,106,102,102,99,109,120,104,108,105,109,96,104,111,95,93,113,108,100,112,101,104,117,103,90,112,105,106,120,98,104,109,96,95,110,106,104,113,120,102,98,94,96,90,102,114,92,101,102,99,98,99,98,105,108,103,113,108,105,104,100,117,96,108,105,107,104,87,107,100,111,106,109,121,101,104,120,95,104,106,108,109,94,108,114,112,106,98,100,104,100,105,118,108,100,104,102,107,100,107,114,108,102,93,108,106,102,98,124,91,106,110,110,124,91,120,100,91,107,96,110,108,92,106,98,121,113,99,110,107,99,113,104,102,96,117,107,111,111,104,107,110,100,111,114,90,103,99,94,107,98,104,107,106,104,108,108,104,102,112,103,90,103,102,113,143,113,108,110,113,104,102,101,100,108,106,105,108,119,107,66,122,95,110,100,111,117,104,103,100,115,108,108,99,101,109,105,106,93,117,106,107,108,94,103,104,99,100,104,110,111,107,104,113,119,102,102,100,93,102,102,99,88,111,104,117,93,108,104,102,102,119,109,89,108,104,100,108,91,103,109,103,119,105,115,113,104,108,96,93,110,106,121,88,107,106,105,105,95,101,108,101,108,102,99,107,98,107,109,102,106,101,103,104,108,98,125,111,105,108,99,104,112,109,100,106,101,101,108,97,99,105,113,103,103,104,120,98,100,104,112,96,106,105,88,114,101,102,109,101,103,98,117,94,102,113,103,99,102,106,110,108,109,109,96,98,111,97,97,106,106,122,112,106,119,109,83,113,98,118,97,103,99,114,104,108,108,104,101,107,90,106,112,110,104,104,97,98,105,112,118,104,112,104,89,96,98,112,103,104,109,103,102,105,96,95,96,105,96,95,105,116,99,112,117,107,107,97,100,106,98,90,110,101,102,109,100,94,111,93,103,108,120,89,100,100,104,117,99,102,101,109,119,100,100,97,106,111,107,107,105,112,113,107,103,88,107,98,110,106,109,106,102,102,132,108,109,111,102,110,112,105,106,98,117,99,101,113,109,106,102,102,96,117,96,99,104,98,103,91,102,84,107,108,106,110,102,103,104,104,106,102,102,117,100,106,85,110,104,95,104,93,101,102,94,98,86,95,113,101,105,119,115,101,116,104,106,106,98,108,112,118,90,106,100,106,89,88,108,100,124,113,105,106,95,106,105,95,106,94,115,100,106,102,100,99,110,105,99,113,105,96,103,113,92,91,90,96,104,100,105,103,106,100,99,103,100,104,98,111,113,103,99,115,114,102,96,86,95,107,104,113,108,107,91,101,109,109,97,105,111,108,102,102,110,103,107,100,110,99,95,105,95,104,100,102,101,108,77,107,100,108,99,109,100,107,112,107,89,96,102,102,101,104,100,109,118,110,97,95,117,102,111,109,114,102,106,114,117,115,109,103,114,101,121,111,112,108,106,105,100,115,108,120,106,100,110,110,100,103,104,98,109,100,107,105,123,107,110,100,98,110,87,110,101,116,98,107,98,108,113,114,106,104,102,108,112,106,97,106,108,108,119,114,86,105,100,119,96,103,93,103,116,102,116,101,76,99,104,106,99,111,100,105,103,113,96,107,87,113,110,98,100,105,98,104,93,101,105,106,100,92,101,106,107,120,108,109,90,113,111,112,119,119,97,101,107,111,88,106,112,106,105,109,108,100,101,107,117,105,108,98,106,112,108,104,110,91,101,94,119,104,103,104,127,108,119,105,109,106,110,101,111,113,107,95,107,97,105,125,124,107,67,92,109,110,108,110,113,121,95,100,106,106,102,104,103,102,99,110,95,112,103,100,103,92,93,90,104,88,98,102,99,110,97,106,96,103,94,102,92,105,108,95,101,107,110,95,104,107,121,104,101,121,109,111,100,94,111,110,111,110,108,113,115,104,102,105,85,104,107,111,104,93,96,98,109,99,99,103,107,114,117,104,103,98,106,106,117,107,100,108,102,95,109,110,108,108,89,111,117,105,109,103,95,102,89,94,107,103,94,99,108,101,96,104,91,102,98,101,101,123,103,112,89,109,99,93,108,106,115,116,103,106,82,108,108,114,101,105,103,117,112,103,105,100,95,121,92,112,107,111,98,107,93,103,104,97,77,107,96,105,101,96,107,104,104,107,100,99,117,105,109,114,113,101,100,100,107,103,96,89,96,110,113,104,87,105,103,108,110,109,105,97,108,103,95,95,89,103,108,104,102,99,96,97,81, +617.51868,89,96,101,103,94,95,100,137,106,102,86,103,102,103,102,95,97,105,101,110,106,108,100,114,120,81,103,106,102,103,110,109,94,110,93,117,110,95,102,100,113,102,88,109,95,100,109,109,95,96,65,110,109,106,94,107,92,107,103,117,113,96,106,104,103,94,90,103,96,101,93,112,96,109,100,99,100,102,104,106,107,97,117,105,88,99,90,110,91,100,112,96,106,111,98,105,93,102,116,103,110,109,105,97,100,100,97,99,107,98,109,109,102,119,104,108,94,96,110,104,106,104,109,113,111,107,114,91,98,95,125,109,104,103,108,113,113,102,90,103,98,102,90,94,94,99,99,95,98,109,103,96,96,107,98,108,109,97,107,108,92,102,107,78,107,103,109,92,105,106,107,99,102,102,106,114,105,102,100,92,88,101,113,113,100,97,112,104,91,106,103,105,106,108,99,95,113,102,101,109,82,111,93,98,99,106,107,102,116,106,100,120,96,109,90,100,108,109,95,107,117,105,98,113,101,114,117,109,105,119,99,96,103,99,90,105,85,107,90,103,103,108,101,99,100,109,98,102,77,108,88,105,112,114,102,92,99,102,83,111,102,104,98,129,96,105,106,101,101,101,101,93,100,104,97,101,104,120,95,99,106,99,106,108,113,110,92,108,103,109,98,103,98,101,117,105,106,111,110,108,108,97,107,109,98,105,118,105,107,108,85,105,102,100,106,99,103,106,104,97,114,98,110,103,111,106,110,93,108,107,111,103,121,107,96,109,102,98,96,95,110,108,102,98,112,105,116,98,100,104,101,109,115,104,105,108,103,100,119,104,103,102,101,104,98,107,99,121,110,95,109,101,107,136,101,102,109,101,101,101,105,99,97,107,97,98,96,113,101,106,95,97,93,100,105,97,98,113,100,110,100,127,101,96,100,93,100,98,113,100,99,105,103,109,106,98,106,107,105,94,128,94,112,95,99,110,95,93,106,125,95,100,99,105,100,109,101,98,101,112,110,103,106,107,89,115,99,95,108,114,96,97,101,109,99,97,109,107,115,111,105,113,91,107,119,104,102,111,99,109,94,95,112,125,88,100,109,102,113,100,96,107,110,99,109,106,87,100,95,102,123,101,101,107,98,101,102,98,101,97,112,99,99,111,101,91,105,109,101,111,104,114,115,104,105,105,107,105,95,110,98,100,109,102,118,96,110,108,101,91,114,94,106,101,94,111,99,104,101,115,98,99,104,101,114,101,109,101,109,116,98,115,98,100,102,99,102,100,106,104,103,104,104,105,108,105,112,106,98,102,98,90,107,87,112,109,101,100,96,113,107,107,105,103,104,107,112,109,90,102,107,103,97,94,129,108,93,105,103,81,109,105,95,99,101,97,103,106,104,98,103,96,95,113,83,96,102,109,101,124,98,112,116,109,99,104,97,111,108,101,90,113,100,103,96,101,120,101,114,104,103,102,105,100,103,83,92,106,101,111,91,100,113,108,100,108,97,108,108,105,112,107,105,98,101,101,105,86,86,105,105,112,97,102,104,116,111,100,106,104,109,95,100,86,102,96,99,115,108,118,97,111,114,113,101,96,113,109,109,103,121,113,104,108,112,107,103,112,102,110,104,115,106,105,92,98,111,107,111,103,94,102,111,118,138,99,108,110,104,110,109,100,86,96,110,103,101,103,103,113,123,94,85,110,107,105,100,97,118,102,114,98,110,116,116,108,104,115,106,105,114,104,96,113,77,96,102,107,110,103,109,100,101,106,109,91,105,99,102,96,106,102,111,98,96,107,107,125,101,97,114,102,106,103,100,100,100,108,105,108,105,104,104,115,119,104,103,109,106,102,109,103,113,119,104,108,94,101,113,96,94,103,108,108,98,104,98,107,108,100,115,106,113,93,92,111,100,109,109,109,109,108,109,110,98,104,102,97,102,106,116,112,95,108,106,137,109,107,110,98,97,99,109,104,100,94,103,90,107,98,109,99,95,108,97,102,109,107,104,106,112,100,116,106,100,98,103,107,112,109,108,114,109,95,96,98,100,103,99,112,107,109,99,96,107,121,104,105,106,108,107,121,94,105,106,99,103,106,100,101,108,99,117,107,113,105,104,111,90,105,112,108,112,110,99,114,99,108,111,106,102,102,115,103,109,108,114,120,101,113,118,111,124,105,114,104,120,120,92,106,98,112,106,117,114,108,106,106,99,111,98,102,103,111,102,108,112,101,95,104,102,99,96,110,101,102,105,100,107,94,89,104,101,100,101,97,100,92,103,107,99,96,104,100,96,112,102,107,104,90,99,100,104,110,99,112,114,105,107,94,113,116,111,99,115,112,96,103,122,97,113,109,108,107,103,96,106,121,102,94,108,126,116,112,116,117,134,118,110,125,139,116,121,127,104,113,99,81,102,111,107,103,101,117,114,92,94,103,105,100,94,95,99,110,105,106,117,104,98,98,106,97,109,99,107,92,102,102,106,95,108,98,102,117,98,96,111,106,117,97,101,98,106,115,107,94,121,109,113,107,99,118,79,105,109,98,98,99,95,108,98,103,97,83,114,98,106,124,97,111,104,113,92,99,113,110,102,96,105,97,113,104,95,107,112,92,106,103,111,94,94,100,110,109,106,95,108,102,109,91,111,94,112,100,104,106,117,105,114,107,97,99,104,113,99,93,105,101,106,98,117,116,109,84,125,107,108,100,106,110,95,100,108,116,111,93,90,107,104,116,100,111,108,118,96,103,109,98,101,94,103,106,98,99,105,128,107,122,124,105,99,102,102,94,105,101,110,106,98,103,116,93,102,108,114,106,104,111,118,113,109,95,111,106,98,113,107,104,96,104,102,112,112,102,105,114,108,106,105,110,103,100,108,120,110,96,101,115,104,110,100,103,117,112,112,117,104,93,101,105,106,76,107,98,101,109,96,101,109,114,105,105,104,108,116,99,101,108,110,94,117,102,110,114,108,102,125,98,104,91,100,108,102,113,102,109,105,104,92,100,112,98,104,102,101,98,120,107,98,108,102,95,103,102,106,117,101,108,116,93,103,102,104,101,102,96,136,105,118,108,105,106,99,105,105,116,97,112,86,106,116,115,111,91,92,105,112,105,90,95,106,108,117,103,107,93,99,116,97,102,111,110,95,114,107,95,104,94,108,105,105,107,102,103,120,103,106,104,109,117,109,112,101,107,96,107,102,104,102,105,107,100,102,104,105,100,99,103,104,111,116,111,98,102,99,101,106,106,121,116,104,98,106,115,105,97,100,106,104,108,104,105,98,102,98,95,96,98,97,104,89,96,89,97,102,104,120,110,113,112,103,103,107,115,106,96,118,101,108,108,108,106,114,106,99,113,108,106,112,120,92,107,114,105,98,102,102,93,100,96,98,100,109,107,81,125,102,102,110,103,92,98,98,106,90,87,99,99,103,113,102,118,103,105,108,101,103,109,104,104,109,100,105,97,96,103,103,106,99,102,95,106,97,103,105,100,107,113,101,112,108,100,114,107,112,106,104,102,97,108,85,95,97,111,105,97,106,104,96,112,104,104,105,108,100,113,95,107,108,103,99,119,100,106,96,113,118,100,110,98,90,104,103,94,103,116,106,99,110,99,80,128,97,104,105,101,119,108,106,111,105,102,102,101,100,98,101,98,102,109,106,101,107,112,97,102,95,101,112,115,98,108,106,103,106,102,114,94,107,100,99,103,102,98,108,103,89,84,90,116,100,103,107,105,100,102,103,101,105,101,109,92,95,113,118,101,108,110,118,113,113,94,103,106,117,113,103,95,109,112,103,126,97,112,103,100,102,110,103,95,114,101,102,99,95,119,113,109,103,100,108,108,84,98,105,102,106,109,95,102,111,103,106,101,105,96,109,102,104,104,105,104,92,94,99,97,108,97,84,98,107,101,104,106,105,92,103,90,108,109,99,98,103,95,107,111,105,109,112,108,108,87,100,99,102,118,114,104,100,99,98,114,91,108,102,92,113,110,106,107,106,107,109,97,100,98,92,109,110,95,107,119,110,93,99,107,98,97,101,105,109,107,97,98,112,106,113,101,98,103,105,110,115,99,110,113,109,110,102,112,107,98,114,102,92,108,106,94,100,98,105,91,111,99,100,111,110,97,108,101,114,91,107,108,104,99,105,102,110,116,92,100,111,100,102,109,100,103,84,104,109,109,99,102,109,119,111,108,101,107,104,102,113,120,110,97,110,103,93,119,108,105,113,102,106,112,99,113,112,100,101,99,107,107,113,101,99,105,115,105,101,96,111,72,108,108,104,111,105,101,102,97,107,102,91,106,96,105,89,109,103,108,117,114,113,111,99,95,93,102,113,93,87,109,102,92,110,103,109,109,98,116,116,96,107,103,115,106,101,107,99,109,112,112,95,106,109,101,105,94,84,113,102,102,97,120,105,101,113,108,105,100,95,99,113,100,94,95,96,103,101,106,105,100,104,104,88,100,125,103,104,102,101,121,96,105,100,113,108,105,95,93,94,99,121,115,109,102,99,98,94,98,108,114,114,119,100,102,119,105,102,120,98,115,109,112,117,95,98,100,96,103,104,100,96,110,107,93,100,102,118,103,125,101,94,107,96,105,102,113,113,100,101,111,102,96,103,99,94,105,94,95,119,97,97,102,102,96,100,109,105,99,110,103,110,101,95,107,109,106,100,101,111,100,116,103,117,106,93,107,123,112,110,104,109,99,100,92,97,101,101,111,96,93,102,101,116,102,107,105,101,101,94,95,100,99,117,98,100,103,106,97,86,103,111,107,105,97,121,106,97,99,113,94,116,112,89,92,105,95,115,110,96,104,112,98,94,105,116,104,98,105,100,122,102,108,99,98,96,111,93,98,122,98,114,89,87,103,99,109,109,94,113,95,89,104,107,96,99,90, +617.65979,113,106,101,106,108,95,101,92,104,112,119,102,105,107,107,114,103,107,112,102,98,105,115,95,93,108,93,97,102,78,106,98,86,99,106,110,93,107,112,95,93,99,101,100,107,114,115,109,107,108,91,92,100,102,97,90,105,70,101,101,95,102,102,87,102,119,107,107,107,104,102,105,105,108,108,110,93,101,108,112,95,105,102,111,92,100,96,102,103,103,99,108,99,88,105,95,96,88,110,103,110,104,102,108,98,95,97,99,97,107,103,95,101,95,111,103,98,97,122,100,107,102,113,105,107,105,109,101,106,111,100,99,96,109,105,102,100,102,105,112,101,108,90,97,98,113,98,102,94,83,100,91,110,93,105,109,105,102,102,107,97,106,94,106,105,94,111,98,104,100,113,92,92,90,97,110,108,125,102,101,107,101,90,122,95,105,97,88,107,108,128,84,106,122,102,126,108,106,103,102,86,96,99,113,70,108,99,118,112,106,93,101,94,109,98,99,103,105,110,94,95,97,97,105,102,115,100,107,129,103,91,102,109,98,107,108,104,102,94,122,95,103,106,95,105,101,106,93,98,102,95,117,100,99,98,99,101,104,92,102,113,107,107,95,90,102,81,86,99,104,91,104,104,102,100,109,98,107,112,104,106,105,110,107,97,96,94,76,103,102,115,110,122,102,103,107,104,119,105,100,99,80,109,109,95,81,108,93,117,104,96,100,110,79,101,100,101,110,104,99,108,93,91,95,105,113,105,105,116,111,97,89,107,108,102,105,104,101,92,112,102,113,108,104,110,103,105,113,112,110,99,90,106,98,100,99,107,112,113,98,103,96,96,117,97,89,92,99,99,93,116,96,103,100,102,123,102,101,111,108,102,116,108,106,97,99,102,110,95,95,102,90,103,96,108,102,97,105,98,96,112,113,102,110,112,91,99,108,103,92,94,99,118,104,103,113,95,92,111,91,104,98,93,111,103,100,110,100,99,97,101,101,95,106,114,102,113,106,92,101,112,104,104,103,113,100,100,95,104,103,95,98,110,110,111,83,102,101,99,98,102,117,110,81,105,111,106,107,105,101,96,104,106,105,100,113,98,98,100,103,109,113,99,100,103,113,108,112,97,114,105,114,92,109,92,102,93,99,95,122,105,100,104,113,108,113,106,113,120,105,99,107,104,105,103,100,97,103,97,95,97,108,103,115,107,100,110,100,98,95,96,125,102,105,105,113,111,95,107,106,87,94,114,102,123,101,94,87,100,98,120,105,99,103,103,83,106,104,99,100,100,118,93,110,108,128,111,96,109,103,94,101,101,104,106,102,94,93,108,109,112,106,101,105,107,106,101,105,107,95,101,106,98,100,101,107,99,90,104,90,107,104,113,101,102,106,87,105,103,102,100,96,102,120,101,104,113,105,105,100,101,95,96,80,93,101,102,105,112,110,92,108,102,112,103,108,99,113,103,106,106,104,114,93,101,103,110,101,106,103,84,107,111,113,109,113,109,109,109,100,107,105,97,113,96,112,127,92,100,112,97,104,105,112,98,109,106,98,103,98,102,109,110,105,102,106,89,109,119,101,107,98,107,105,106,116,103,111,103,93,103,100,94,101,100,107,94,109,96,102,112,102,88,107,107,97,95,90,105,103,96,107,99,104,93,100,109,101,107,106,98,103,89,104,111,106,119,113,105,87,98,126,103,96,102,108,103,100,101,108,124,108,107,108,102,110,102,99,90,112,102,102,99,100,104,104,103,108,100,114,114,100,104,95,104,121,101,87,99,108,99,100,133,92,93,96,103,102,107,112,108,113,105,108,103,95,90,109,104,105,105,129,99,101,102,103,104,105,111,109,112,100,96,102,104,105,113,109,109,105,102,99,96,104,105,108,105,107,114,116,107,113,112,106,97,111,99,117,107,113,116,102,99,103,98,106,99,104,85,96,113,121,105,112,92,97,130,99,99,94,86,91,109,123,101,101,95,107,107,98,100,97,94,107,92,106,115,101,93,109,89,104,104,105,102,106,103,110,110,101,97,121,109,102,99,99,105,111,97,102,106,104,91,101,101,125,93,104,106,104,94,102,102,109,101,97,90,104,113,98,104,94,98,82,105,95,108,107,94,103,99,111,106,111,92,99,99,100,105,114,109,88,101,106,95,113,99,109,94,118,100,106,117,111,103,101,109,109,104,107,110,108,79,96,103,100,87,94,106,104,105,100,118,78,104,111,98,106,100,108,102,123,101,107,101,96,107,106,93,113,109,93,102,103,98,91,94,104,106,111,110,95,98,111,110,109,95,103,108,100,101,100,114,103,93,112,110,92,101,111,108,114,108,92,110,95,99,94,97,96,99,109,107,105,113,107,91,113,102,111,109,113,121,118,116,103,130,132,117,128,113,122,118,108,109,130,97,110,132,107,98,104,112,84,103,98,109,118,89,109,113,100,104,92,103,93,112,103,93,105,94,113,104,123,109,104,110,99,103,113,116,111,103,82,100,103,92,112,120,109,102,102,117,111,108,117,108,102,101,105,112,101,103,109,109,102,108,89,104,110,103,107,111,100,109,103,109,103,108,99,106,103,121,95,103,107,103,84,108,100,106,95,114,115,76,108,116,115,105,113,106,109,116,119,109,99,113,107,105,117,116,91,110,105,105,102,98,95,120,106,90,108,99,98,105,103,102,104,101,106,94,113,102,111,107,103,110,118,105,103,98,121,112,115,98,102,100,116,99,104,118,110,92,116,106,117,93,106,115,111,96,112,101,115,81,108,108,95,102,103,113,103,102,106,103,102,102,102,104,105,104,122,119,107,104,113,107,110,103,116,76,104,117,99,94,102,103,104,116,111,114,105,109,104,95,105,113,104,102,120,111,107,117,99,97,93,102,96,107,111,113,118,110,105,111,112,107,97,106,107,105,117,112,97,107,91,99,106,102,113,99,127,110,94,103,100,104,107,104,106,120,117,109,103,107,105,114,113,97,112,108,102,89,108,108,110,111,109,101,112,117,101,111,101,123,105,113,122,109,105,103,93,78,110,102,104,80,109,113,111,91,106,104,104,110,104,118,113,88,106,110,90,105,99,102,93,98,106,109,100,98,104,108,111,107,84,114,113,85,103,98,101,113,98,110,100,116,108,108,100,98,91,108,102,104,111,108,97,105,100,102,105,102,117,113,117,102,105,111,107,110,99,105,109,96,104,97,95,105,118,95,102,92,102,110,111,118,110,106,99,107,104,104,102,115,102,109,105,113,109,84,105,103,130,110,101,108,105,117,109,103,103,104,106,80,92,115,107,102,102,109,93,102,107,104,82,111,103,109,103,113,109,99,112,107,102,101,110,106,104,108,115,100,103,112,116,100,104,106,120,101,102,98,103,112,102,107,113,99,96,102,115,107,108,102,106,102,117,112,124,100,114,109,99,107,100,105,102,105,105,106,93,99,105,98,98,99,101,116,106,96,108,119,108,85,105,103,103,107,102,110,126,109,105,87,119,118,105,122,100,114,104,108,105,117,104,99,100,106,114,108,107,102,105,105,103,112,101,101,105,96,113,104,105,115,108,103,105,105,97,99,106,113,106,105,111,112,102,112,94,101,105,97,100,113,100,107,98,99,98,109,119,106,100,104,101,113,102,100,103,117,109,113,100,110,113,105,100,106,108,107,96,99,123,114,111,105,117,119,93,96,121,102,106,104,98,102,105,115,107,109,105,113,98,102,94,104,105,104,95,102,108,104,106,108,102,98,111,107,109,100,106,98,98,105,110,128,109,109,106,96,103,108,99,110,104,109,110,105,100,100,113,117,112,105,93,115,106,103,100,103,124,109,102,92,105,110,103,96,95,86,102,103,112,104,123,106,99,102,97,123,104,112,105,114,119,86,101,103,109,105,118,105,112,112,107,112,98,92,102,110,106,101,100,101,109,121,111,113,110,92,106,112,109,105,101,94,115,107,110,97,99,104,107,105,113,111,115,105,105,113,119,101,109,104,99,109,107,97,101,97,113,96,107,124,73,105,99,98,104,118,106,112,106,102,116,115,98,112,95,112,91,106,117,91,112,95,106,89,107,103,112,111,100,102,113,93,108,115,103,105,102,109,96,96,102,99,113,120,107,102,102,96,110,105,107,111,111,97,104,91,109,116,102,105,101,110,101,116,109,93,106,106,98,110,129,109,101,98,110,107,113,98,108,100,94,99,118,99,111,103,119,103,105,103,93,95,108,101,99,121,94,102,96,112,107,106,103,103,108,100,98,87,96,104,103,109,104,105,102,104,88,117,102,98,105,92,113,98,107,100,94,100,101,113,95,106,89,107,117,117,106,106,109,87,108,97,108,95,94,108,106,110,107,91,92,101,118,110,96,104,100,107,111,99,99,107,96,94,103,99,88,110,105,103,101,114,99,113,104,81,101,102,107,100,105,112,109,111,101,112,105,99,104,109,93,105,93,117,107,119,96,105,104,113,94,96,90,106,128,106,91,104,103,102,103,99,84,113,103,93,106,98,103,103,99,104,120,100,106,97,120,94,106,107,99,108,111,101,104,107,102,105,106,114,107,99,108,113,113,109,108,113,96,103,106,117,110,110,106,104,106,91,112,104,106,110,102,132,101,119,100,109,104,97,109,106,111,86,95,115,104,85,98,99,117,103,102,99,95,99,102,104,104,97,101,109,87,97,100,98,101,100,101,109,107,111,106,99,100,115,114,108,100,99,108,106,118,105,109,93,106,91,94,107,109,103,93,110,102,103,89,104,109,106,103,109,120,109,104,102,117,92,116,108,105,112,110,113,106,107,106,103,98,116,103,113,115,114,110,112,98,114,110,112,108,108,109,104,105,95,104,96,90,99,109,95,101,110,98,116,108,110,92,123,112,88,102,89,91,108,92,92,95,113,106,109,106,96,94, +617.80084,100,94,103,120,98,87,97,102,101,102,102,99,107,103,110,96,103,96,104,104,105,89,88,114,108,109,93,103,103,108,113,107,103,90,105,105,107,106,111,113,102,101,108,98,110,110,92,103,98,116,112,102,113,101,108,93,123,100,113,90,96,104,128,88,109,88,107,105,104,117,108,112,96,98,102,111,95,100,106,98,102,100,103,100,117,93,98,101,102,118,109,107,109,101,89,99,100,109,106,105,85,102,99,110,92,118,107,96,90,108,104,104,108,113,106,106,101,112,102,104,102,104,90,93,107,94,103,106,117,104,98,110,103,107,117,96,104,109,102,93,97,118,102,105,124,120,105,107,118,95,111,104,104,87,105,105,101,104,109,112,103,99,108,106,103,105,101,103,100,102,117,97,92,94,101,113,102,102,115,101,107,108,108,109,109,118,106,119,113,101,102,105,105,95,105,104,116,101,103,90,105,105,95,96,95,101,108,91,109,109,96,96,109,114,114,95,102,94,105,95,113,99,108,106,103,109,95,98,113,96,111,94,109,117,98,117,103,112,110,100,93,92,113,104,95,111,105,105,108,86,107,100,95,96,98,100,104,106,98,110,87,80,108,102,101,94,104,103,102,91,122,104,98,121,119,89,103,106,115,121,103,113,107,106,102,96,87,101,98,105,109,103,117,103,106,106,106,118,99,110,113,110,103,100,93,105,108,107,101,102,96,110,92,115,109,109,100,103,103,108,103,107,96,94,96,105,97,94,113,117,109,92,97,100,106,109,88,102,110,105,95,118,96,100,95,88,112,117,114,103,100,98,106,106,103,91,115,111,108,96,98,103,103,106,98,112,95,107,105,105,107,88,108,101,86,101,102,111,116,112,112,112,102,103,108,93,88,106,108,79,106,103,105,110,95,112,112,103,97,97,101,104,98,95,90,98,101,92,101,98,94,105,94,114,103,108,94,99,111,105,98,100,105,116,103,83,101,100,115,108,103,97,96,97,111,103,71,113,109,104,111,106,99,102,98,98,97,95,116,129,97,93,104,83,106,105,107,106,105,95,99,111,87,100,110,108,93,104,106,98,113,102,103,94,108,99,104,107,110,87,103,113,110,104,99,92,120,107,102,104,118,99,112,101,111,104,104,108,109,108,102,106,106,120,100,101,95,103,95,109,102,94,112,113,116,103,85,113,101,102,108,102,102,103,103,102,104,107,106,108,95,108,91,113,106,110,103,97,86,103,98,111,93,106,109,103,96,113,113,113,121,118,118,115,102,96,121,104,96,103,105,107,97,109,107,101,103,98,101,102,113,97,95,97,111,98,112,108,99,107,113,109,108,97,114,111,89,87,105,103,110,94,99,95,104,111,103,98,96,105,98,107,101,110,109,97,96,113,102,98,113,103,106,107,105,106,92,114,105,111,104,112,104,104,109,107,92,99,114,118,103,95,101,105,103,98,91,94,109,100,101,110,102,82,100,97,91,101,121,122,98,110,103,104,102,104,97,108,108,106,99,112,102,104,89,91,106,93,116,109,107,92,102,112,99,106,103,96,107,100,110,95,103,105,91,110,110,102,108,103,97,121,94,110,95,107,100,106,104,99,105,100,97,106,113,107,107,91,100,102,92,95,102,99,107,123,91,96,96,101,99,97,105,101,107,102,113,101,104,118,105,101,103,107,112,108,99,95,114,95,93,104,115,109,88,92,91,98,104,106,94,87,105,90,103,95,116,107,118,105,100,109,91,102,110,118,91,95,111,105,111,102,104,119,97,101,110,106,86,114,122,94,98,87,110,109,99,97,113,116,102,105,105,105,102,113,101,108,114,102,97,100,99,108,94,116,103,108,96,97,113,107,105,82,97,95,120,106,97,84,113,111,96,106,110,115,95,104,116,106,102,97,102,102,104,104,110,104,108,101,105,117,114,91,107,86,99,92,90,103,106,103,102,99,114,95,111,100,86,111,108,102,116,103,119,102,109,105,103,115,106,101,101,100,102,101,99,91,121,98,107,99,110,108,96,104,94,116,101,94,100,104,116,109,108,100,104,108,92,111,110,100,98,105,101,90,124,94,96,99,107,91,95,98,112,106,97,102,101,108,107,114,99,94,108,98,106,109,110,98,99,113,87,103,112,104,96,102,97,104,97,114,97,90,117,114,95,102,100,101,107,101,107,108,103,82,108,98,102,110,103,96,105,113,107,98,92,91,92,103,113,98,116,103,100,100,106,86,105,95,96,99,95,103,95,95,101,99,101,105,104,110,92,109,99,108,95,97,93,109,100,94,102,95,94,92,105,114,95,106,82,113,109,102,101,102,100,98,95,108,110,126,97,102,91,117,95,104,119,98,97,107,127,102,106,84,122,126,109,118,108,126,116,126,119,101,117,108,108,130,115,107,102,110,105,79,114,108,114,98,104,96,112,107,111,107,114,97,108,98,110,107,105,107,98,102,101,111,97,99,92,116,102,113,118,106,105,105,105,115,118,120,112,106,108,107,108,105,121,112,115,112,118,112,101,131,109,111,99,111,92,110,117,112,107,110,112,115,109,124,96,112,101,95,99,102,99,109,95,84,102,106,112,109,106,104,109,111,117,99,117,99,105,119,99,104,109,106,121,111,111,90,111,105,99,105,108,105,99,107,97,104,105,109,109,110,101,108,117,102,99,121,113,109,109,114,99,97,107,104,97,113,104,86,123,107,115,110,95,109,103,107,120,122,108,103,106,100,100,114,107,103,109,101,116,108,111,106,99,99,110,109,113,107,114,107,113,107,111,104,107,113,101,120,110,102,92,113,113,102,111,104,91,117,107,95,106,104,118,108,112,105,109,107,103,119,101,107,108,108,95,105,113,123,92,105,100,110,106,113,116,98,113,103,109,105,107,94,110,109,107,105,102,108,126,110,80,104,135,116,110,110,101,109,106,109,92,111,107,112,106,99,105,108,105,111,117,103,115,103,113,106,107,109,107,112,108,117,120,103,102,108,113,104,112,117,101,111,106,103,110,109,116,100,102,119,107,109,110,106,108,110,107,109,114,119,102,118,101,110,107,117,100,104,116,101,108,116,109,113,105,107,104,115,103,104,107,116,114,108,115,110,112,108,114,109,102,106,111,103,100,103,105,114,115,100,96,103,102,106,99,103,107,107,98,101,118,106,102,110,102,115,102,108,107,108,108,98,105,95,114,104,88,101,117,102,111,102,102,90,97,102,119,109,117,103,100,118,102,106,109,100,91,106,98,109,109,104,112,99,111,108,93,110,107,101,97,106,116,105,110,116,113,102,110,104,111,104,106,114,108,107,96,105,98,101,106,111,112,116,102,127,108,105,108,106,100,113,114,97,101,106,100,100,103,106,97,101,106,116,108,98,98,100,106,112,111,106,116,115,95,107,92,91,116,131,120,107,111,103,105,90,108,104,96,108,119,93,108,128,104,104,110,106,103,104,94,106,100,105,104,103,95,111,108,108,103,113,100,100,107,109,106,96,102,101,117,101,99,104,112,106,99,104,106,99,98,108,115,95,109,116,108,111,108,103,95,108,103,114,96,108,100,100,120,111,102,100,93,129,116,106,113,100,104,117,113,117,109,100,101,105,101,108,98,104,106,99,95,106,108,113,108,109,82,120,106,131,99,102,100,105,107,107,103,113,105,105,113,113,114,78,99,117,108,110,109,106,109,106,108,114,108,111,106,108,99,105,106,111,118,114,107,109,88,103,102,101,109,94,111,112,113,103,102,110,114,103,98,105,98,103,119,102,97,118,129,103,102,74,87,116,113,104,109,97,89,99,115,110,94,129,106,107,97,103,103,106,123,91,99,115,118,103,107,100,111,109,109,117,103,124,120,130,104,113,112,107,101,101,91,95,113,126,116,105,100,98,94,99,98,107,95,101,107,103,107,99,109,102,115,99,108,111,110,114,102,102,100,108,108,98,113,106,115,108,110,108,102,111,99,116,103,108,115,113,115,100,108,104,118,109,99,101,107,103,111,110,105,91,107,108,101,94,110,92,102,109,107,98,117,121,108,105,124,123,105,111,118,113,98,97,107,107,115,107,104,116,115,110,103,98,106,109,104,101,100,116,108,110,103,102,104,107,99,108,100,108,110,132,102,103,100,105,99,109,121,103,127,106,116,93,105,94,108,108,106,125,110,103,91,116,108,90,100,107,116,110,105,102,96,96,107,103,114,110,103,101,115,111,111,111,115,114,110,106,111,113,109,95,107,104,102,99,105,99,102,117,115,102,103,87,110,99,105,102,103,91,116,104,81,103,104,91,87,111,115,95,105,108,99,104,113,97,107,120,101,118,106,117,102,111,120,106,115,111,112,96,99,100,120,105,99,104,125,103,117,111,103,108,112,105,97,99,98,115,109,101,107,109,111,117,99,92,94,95,110,108,124,99,109,101,107,118,103,110,109,109,109,103,113,100,108,106,108,99,90,99,111,103,102,109,96,93,94,99,107,106,122,122,100,114,96,110,99,103,99,107,102,97,93,98,102,105,104,106,113,98,112,97,100,99,107,106,104,110,105,104,107,102,110,99,109,104,93,111,101,107,110,103,99,104,112,110,98,112,105,113,109,101,103,105,102,102,108,104,102,111,102,106,90,106,108,107,105,111,106,115,102,96,110,102,102,106,106,104,104,106,121,99,107,105,112,98,101,106,100,98,107,116,105,97,108,99,112,116,108,98,100,104,112,95,109,112,93,95,103,110,100,101,121,115,100,123,99,110,100,114,116,99,109,99,112,91,108,99,109,104,101,103,101,111,111,115,97,106,104,90,119,104,104,101,124,89,124,110,108,113,106,105,109,94,98,114,110,106,116,105,103,103,116,91,100,102,90,104,88,105,115,97,112,104,89,104,107,115,105,111,98,121,121,91,102,131,108,99,105,96,110,104, +617.94196,106,113,107,108,98,105,98,118,104,99,105,106,88,105,93,98,102,100,87,107,131,94,105,98,109,103,109,93,104,112,113,112,105,109,112,107,98,96,98,105,113,113,104,110,94,98,113,107,95,87,91,104,102,109,99,102,135,106,109,108,99,116,104,105,116,101,95,118,122,91,117,110,119,96,111,116,108,95,105,95,110,90,95,111,97,100,109,108,104,94,110,118,115,112,105,101,103,116,100,114,108,116,106,114,111,108,99,98,105,102,101,100,102,104,105,109,93,103,109,110,102,99,106,108,98,133,113,104,99,103,112,112,94,95,108,109,113,94,109,106,125,109,111,90,106,97,99,105,104,107,117,104,110,90,104,105,93,96,113,111,108,91,105,105,116,107,94,122,106,107,106,102,99,107,102,99,76,112,112,117,105,108,104,113,88,121,89,107,109,104,101,96,108,101,111,98,104,98,104,100,105,117,99,113,104,101,90,113,118,102,99,105,110,115,114,110,86,129,114,127,122,119,100,98,111,108,106,117,95,106,108,106,110,107,112,117,110,101,104,104,116,100,112,117,95,98,95,98,113,102,104,116,95,104,98,122,92,116,107,101,86,96,100,98,97,102,121,91,105,105,112,115,108,94,109,117,96,101,98,104,102,108,107,102,81,101,108,101,104,97,98,98,107,107,107,108,108,98,107,102,99,96,105,111,93,111,105,118,108,99,97,101,111,102,107,98,96,99,99,100,110,99,100,96,105,104,105,86,99,103,101,104,113,107,106,106,121,100,102,105,108,103,104,101,108,113,117,95,114,102,105,104,106,104,105,121,107,109,108,113,105,98,110,100,102,95,104,107,107,107,92,115,110,116,101,112,112,108,95,121,117,96,95,108,99,93,111,90,91,104,111,97,98,100,108,101,97,101,106,109,108,91,100,111,105,100,99,119,99,107,93,100,118,114,105,93,111,110,105,95,100,98,106,96,112,105,102,96,125,115,97,104,104,108,113,109,106,99,65,108,112,118,112,106,94,113,108,83,102,115,90,108,90,107,107,99,105,114,117,102,113,104,95,107,104,111,112,107,124,92,111,107,104,111,86,97,98,105,80,113,100,109,102,99,111,106,108,108,108,108,133,116,112,99,95,113,97,103,98,106,115,110,92,96,100,97,96,120,95,85,99,98,104,102,112,93,113,113,102,86,104,110,104,100,103,103,97,109,101,107,109,108,100,100,103,107,98,103,92,101,99,114,99,110,116,108,112,94,97,106,105,122,86,95,105,105,96,114,94,113,104,104,100,99,119,100,109,102,105,104,112,102,102,94,106,106,98,97,107,103,110,90,101,112,94,103,106,110,121,107,100,110,99,93,106,117,95,118,104,104,109,109,101,104,107,105,95,94,107,103,109,106,113,88,101,101,110,99,112,100,114,111,116,107,107,93,121,100,109,103,89,110,104,117,100,107,105,108,113,103,123,102,113,96,99,85,97,96,110,105,113,118,107,121,112,99,93,112,106,105,103,108,123,99,102,126,105,104,99,102,107,114,100,106,92,109,116,102,100,95,102,102,103,92,100,110,99,115,99,100,104,99,117,112,99,100,113,111,105,107,101,107,108,93,102,116,98,96,104,105,106,88,106,101,104,96,97,88,99,108,109,97,106,117,117,104,111,111,99,116,101,110,104,104,106,91,106,103,112,106,104,98,83,105,99,109,109,104,124,108,96,105,95,111,108,107,88,102,107,113,103,106,96,79,93,104,109,98,104,102,107,90,97,113,109,105,111,108,106,114,106,104,102,107,100,95,97,109,106,108,92,105,105,106,106,102,97,97,110,104,81,96,97,96,106,110,105,112,107,102,98,98,98,99,109,105,99,114,108,104,102,108,110,102,98,108,109,104,105,109,105,115,141,99,101,111,109,109,99,94,94,98,93,112,105,106,112,95,108,116,100,102,130,99,93,99,108,107,113,101,113,117,109,106,100,98,112,107,112,93,96,103,111,93,112,106,83,111,96,94,114,91,126,106,105,100,100,111,110,103,103,110,102,98,99,101,92,107,105,103,110,112,105,95,117,107,103,117,99,111,108,115,109,105,100,90,115,102,97,102,117,99,101,108,109,100,83,101,104,117,104,110,110,108,103,114,93,103,105,109,98,104,75,112,108,110,101,109,109,113,104,102,118,119,108,97,102,106,98,126,109,102,107,101,109,115,102,109,100,103,99,74,99,103,100,92,103,98,105,96,105,104,111,117,100,100,103,102,110,112,91,104,110,110,101,101,106,101,100,108,100,91,103,100,95,125,116,97,97,101,98,102,102,107,103,105,107,108,111,110,102,101,103,108,112,110,108,107,110,114,110,112,118,96,112,95,120,112,102,125,109,120,123,129,107,121,101,129,112,110,111,107,114,110,95,116,98,113,104,106,111,104,98,107,113,113,100,98,115,100,107,107,104,98,94,98,110,107,103,94,93,100,102,105,113,107,106,95,110,103,83,98,102,101,87,112,114,89,114,96,118,98,101,117,104,114,102,94,100,105,103,101,101,98,100,119,98,102,101,108,103,102,102,90,103,106,105,112,104,113,103,111,115,99,109,106,110,108,103,96,105,106,91,109,99,111,95,96,96,92,104,94,116,105,98,108,99,108,111,123,99,87,101,95,99,107,105,91,90,105,90,94,110,93,100,112,106,103,110,108,108,101,98,106,117,107,103,104,106,107,94,129,114,107,105,113,98,101,98,104,97,105,102,96,107,109,114,100,111,109,113,95,105,97,110,102,109,107,111,97,107,108,104,99,107,95,101,98,112,113,97,92,100,109,98,121,95,99,116,110,100,100,101,99,102,100,98,96,109,109,125,98,103,100,106,110,96,105,97,102,102,102,101,113,109,112,115,117,106,98,97,99,101,97,99,99,96,94,99,108,102,104,95,102,102,104,104,113,102,104,102,105,98,105,109,102,107,109,99,109,98,100,94,112,94,86,105,117,102,102,104,113,107,93,103,105,100,112,92,103,105,91,96,102,80,85,105,104,113,99,100,108,106,95,113,100,102,116,103,102,92,111,106,103,104,101,113,107,103,96,102,136,116,80,98,99,100,106,104,91,114,109,104,127,94,108,113,102,96,98,111,102,115,107,113,104,107,116,104,100,104,90,80,109,108,112,111,95,104,102,102,101,111,100,106,106,95,106,115,103,99,109,111,100,111,100,112,96,98,102,106,101,105,104,102,105,100,109,97,97,102,111,104,112,108,104,105,104,110,95,111,102,106,113,111,106,113,116,106,100,96,111,112,116,109,107,104,102,117,107,112,98,96,113,93,104,107,112,105,92,110,117,99,120,109,108,109,94,103,101,100,92,107,104,109,98,102,98,106,99,105,105,77,110,85,102,91,88,104,103,106,98,100,103,90,100,106,117,106,95,95,98,111,95,98,111,98,126,105,112,95,97,105,105,95,106,112,105,100,97,94,94,104,94,101,96,92,98,101,99,111,106,94,94,102,86,96,98,99,101,115,108,108,106,104,118,104,107,95,99,112,103,95,102,106,110,116,116,113,108,103,106,86,81,98,103,91,109,104,102,108,112,108,115,101,111,96,104,116,97,102,101,103,113,99,100,106,102,101,107,97,103,108,109,100,101,108,103,103,102,99,107,105,89,105,85,108,105,103,105,98,101,99,142,111,96,99,114,96,109,97,103,100,96,98,116,100,102,88,99,103,103,103,99,103,105,113,101,102,106,103,110,123,99,111,101,99,109,102,114,100,91,98,103,104,105,101,104,103,107,98,101,91,102,98,108,116,102,101,111,101,110,91,107,105,109,103,112,105,105,103,93,99,99,105,108,104,105,98,102,98,106,108,104,105,107,95,111,108,102,115,96,126,98,101,102,104,106,103,106,95,106,113,97,94,104,102,92,89,105,104,105,113,99,98,97,109,91,123,98,113,111,104,104,99,96,104,107,106,111,100,100,117,108,95,93,111,117,103,104,111,114,95,104,103,100,104,105,96,105,93,103,106,117,108,101,103,112,97,103,114,105,105,94,102,103,113,83,113,114,95,108,113,98,107,120,107,100,95,104,103,105,96,95,109,98,104,101,109,102,106,99,100,112,107,109,97,105,103,100,100,121,110,112,110,100,102,113,100,102,112,100,95,120,91,93,117,107,105,107,109,87,103,93,112,107,104,102,107,88,106,114,95,108,96,107,104,106,109,96,108,95,104,117,103,90,98,107,78,101,114,102,83,115,97,100,112,116,108,99,77,106,99,102,98,98,99,107,107,104,103,99,111,117,102,108,99,103,99,125,90,94,96,99,109,112,96,99,98,115,104,100,111,114,99,96,104,104,105,109,110,98,103,106,118,94,113,113,109,108,117,106,98,106,97,96,101,79,105,102,111,92,109,105,110,107,96,97,111,117,106,89,104,98,94,104,95,105,101,104,103,106,107,104,105,105,98,109,96,113,117,104,98,105,105,103,90,103,104,96,109,100,103,95,111,97,103,93,82,104,97,90,99,108,105,107,108,96,102,93,97,90,108,106,100,108,112,105,107,94,95,98,99,107,106,97,118,104,99,94,82,110,102,88,90,99,118,102,100,89,68,106,120,102,108,121,105,105,117,110,96,61,103,108,106,105,102,95,95,105,107,96,96,105,106,95,107,113,95,99,115,92,97,98,109,102,104,94,104,106,95,94,93,101,112,97,96,104,116,103,106,107,104,122,99,108,102,104,86,85,98,105,101,92,95,117,117,97,96,93,117,102,106,115,91,102,98,104,100,96,106,119,108,103,107,104,110,87,106,107,108,96,110,101,105,103,109,105,88,104,102,97,95,95,101,98,98,99,84,92,104,121,101,96,98,95,102,110,100,93,102,117,94,109,109,109,102,106,101,94,96,96,113,106,107,111,110,102,98,101, +618.08301,107,119,91,93,94,96,109,110,101,103,99,100,104,100,105,89,100,113,75,98,100,88,101,106,94,100,96,131,96,89,116,101,105,117,104,111,100,102,100,88,101,88,89,101,102,110,106,100,101,114,111,106,105,77,106,93,99,91,101,106,106,107,105,98,104,106,108,97,83,101,106,102,98,115,97,95,107,94,107,111,102,111,105,86,104,92,106,109,94,90,101,99,99,103,100,101,90,97,102,101,109,102,95,98,98,102,97,101,111,105,109,105,99,93,97,103,104,102,101,126,110,94,99,93,113,111,117,102,79,94,102,114,99,100,109,98,91,105,111,93,91,94,85,113,99,106,108,101,109,96,105,103,109,100,101,104,108,101,104,98,99,96,115,91,99,96,97,96,105,97,105,96,98,109,101,99,106,102,108,101,81,117,117,108,101,109,99,64,107,96,105,93,104,104,100,101,109,113,107,102,91,100,105,109,96,103,101,108,115,104,110,102,108,119,102,104,102,101,96,108,101,93,99,94,81,100,88,103,103,101,104,98,97,112,102,120,96,98,106,103,104,113,108,98,92,104,112,104,82,101,103,117,112,95,98,98,109,98,95,93,115,95,102,97,99,106,98,104,99,109,86,98,111,113,109,108,95,101,113,105,95,92,105,107,105,102,87,104,102,111,85,112,107,117,111,110,114,90,100,98,104,102,109,110,91,103,106,97,96,108,90,111,102,108,95,108,101,105,107,109,103,97,115,102,98,97,96,98,99,109,117,95,99,102,99,105,95,102,102,104,112,91,101,102,99,98,107,109,118,96,98,102,110,126,93,105,105,109,107,90,85,97,95,110,102,102,104,104,108,99,88,105,103,96,90,92,106,99,94,105,102,115,101,96,102,99,98,106,94,99,111,101,89,102,91,98,98,119,81,108,104,103,87,112,107,106,104,110,104,103,115,101,102,94,108,98,99,96,113,116,106,93,88,99,112,101,100,97,105,107,93,89,99,103,117,96,108,96,100,101,101,95,91,98,106,97,109,109,93,103,97,104,105,109,103,103,96,103,107,96,97,111,109,110,118,94,100,102,115,118,99,103,108,111,99,105,107,105,102,104,112,88,106,110,104,91,97,95,98,101,99,107,99,104,92,82,98,90,104,101,99,102,102,107,102,104,87,91,100,103,105,118,95,103,99,109,85,96,92,98,101,113,98,103,108,105,110,101,87,98,101,103,108,88,103,93,100,96,98,100,91,99,91,94,113,99,97,100,103,109,112,106,98,112,111,122,101,103,101,104,96,92,108,99,101,104,100,98,104,106,100,101,99,104,111,102,107,91,109,101,113,101,98,85,90,105,93,103,103,109,107,113,115,92,107,104,101,94,99,100,99,117,100,98,96,112,90,105,107,95,96,108,111,113,108,109,99,105,109,92,83,98,103,106,111,96,106,100,117,97,100,107,100,108,97,101,105,98,99,102,104,110,105,102,106,104,96,96,105,107,99,106,105,78,109,102,100,107,101,103,112,101,111,106,96,108,107,105,94,96,112,103,110,107,107,111,113,95,99,102,114,116,117,101,108,106,91,103,98,104,108,109,95,107,108,105,99,101,102,97,103,102,104,102,108,97,112,95,93,111,79,103,102,100,104,104,100,103,98,100,105,100,100,115,89,98,104,101,106,110,107,116,96,95,97,101,108,105,110,104,101,103,104,100,98,109,109,110,111,114,102,99,92,103,88,104,99,96,105,104,90,108,95,97,107,110,93,100,107,108,108,94,98,108,103,91,110,106,102,110,98,106,102,104,114,96,108,103,124,87,98,92,108,84,114,100,99,110,113,102,104,95,101,105,101,106,96,105,106,116,104,100,104,107,107,93,106,122,101,103,101,104,109,95,110,103,108,99,105,107,107,108,114,89,102,90,101,94,102,116,97,101,117,100,101,114,99,106,98,103,110,100,103,100,77,101,96,117,101,105,99,91,98,103,104,98,92,87,112,120,94,108,104,110,105,109,103,92,105,98,104,117,99,99,91,95,107,114,95,99,102,117,101,100,106,105,97,106,94,113,106,97,99,99,107,94,106,99,106,112,104,108,96,99,95,95,88,102,103,111,104,105,113,106,98,106,113,99,94,99,100,101,104,123,98,111,99,103,120,106,96,106,107,107,100,110,100,109,98,108,93,100,104,106,104,93,113,94,98,102,113,105,99,103,101,101,101,105,87,109,104,114,118,100,95,125,107,106,107,115,98,99,93,104,96,100,112,108,97,96,94,86,99,104,93,102,96,100,113,101,99,95,107,103,103,110,113,103,97,109,102,93,104,101,95,85,106,109,141,101,118,107,99,102,91,112,111,110,104,114,111,95,108,110,114,94,106,118,105,113,102,110,102,113,112,108,111,114,116,126,124,112,90,106,107,112,119,98,114,106,90,89,94,107,100,113,109,100,94,98,113,105,101,100,98,98,104,112,92,99,102,83,118,105,99,115,100,105,116,110,99,104,107,100,107,109,98,104,110,119,108,87,112,110,109,111,102,112,112,108,98,111,103,102,109,111,115,116,117,105,102,107,108,99,115,106,111,108,103,97,99,115,106,108,108,106,106,105,113,96,97,99,100,106,119,91,105,96,105,139,113,101,106,109,99,96,117,108,84,112,112,78,119,94,101,111,91,115,109,109,108,109,110,96,116,112,103,104,109,101,103,112,99,109,106,107,100,99,84,109,112,105,108,96,102,97,121,102,94,93,103,108,101,100,103,106,110,107,115,95,122,109,100,101,99,109,105,120,100,102,111,110,104,100,96,94,116,113,104,118,101,107,103,113,109,99,109,103,107,95,95,107,105,117,101,113,107,100,113,118,108,108,105,98,113,108,105,99,117,96,107,86,100,104,117,89,112,102,121,100,111,112,110,121,101,110,99,91,88,107,103,98,100,105,102,113,100,105,113,100,99,105,93,99,101,105,105,108,109,120,90,98,104,93,101,72,118,106,104,101,99,98,94,102,103,109,100,109,102,104,103,98,107,107,104,109,108,92,111,122,104,106,113,108,118,68,98,107,103,103,98,109,113,87,115,108,110,100,101,93,104,93,106,106,101,94,104,103,102,95,109,88,102,107,103,100,102,98,100,113,114,104,105,127,112,99,105,103,99,103,111,104,112,96,107,107,101,94,98,102,99,109,109,103,108,103,107,103,119,104,102,102,115,100,93,106,101,96,106,105,100,99,109,103,102,100,117,108,102,103,93,110,102,95,102,100,101,92,92,101,101,110,103,111,101,97,99,121,95,112,98,96,97,98,100,109,101,99,115,96,106,93,101,113,103,107,95,113,107,95,98,98,122,111,99,106,94,117,115,108,96,90,95,97,96,110,99,89,111,96,103,109,106,105,68,110,113,103,100,106,108,109,97,99,106,95,100,104,125,105,97,102,106,117,101,102,95,112,95,100,98,111,100,88,101,95,102,95,106,113,110,113,110,97,98,95,97,102,109,102,103,108,102,105,92,108,102,108,104,99,106,91,99,113,110,116,106,106,106,103,104,117,106,116,102,124,110,115,107,107,112,99,103,114,111,101,117,107,107,99,115,117,108,105,90,109,105,97,120,98,100,92,112,104,99,107,103,108,106,98,91,90,96,104,104,100,110,107,112,110,102,105,100,117,108,96,116,97,98,105,106,112,119,113,106,103,97,102,109,106,106,73,110,116,106,117,100,111,102,113,100,91,101,112,104,103,84,108,112,91,106,99,112,101,106,114,103,96,113,97,106,102,113,101,96,103,95,93,109,112,102,97,106,98,108,99,118,99,121,108,95,118,110,100,116,109,104,106,102,111,116,105,101,107,100,109,109,105,101,98,105,107,108,92,90,102,107,108,107,103,107,104,94,105,100,101,101,91,61,107,99,104,107,85,101,93,100,112,100,96,101,112,98,97,94,99,98,106,109,99,98,112,104,98,106,95,115,99,106,108,104,126,105,99,104,113,109,110,111,103,112,109,101,107,108,105,105,100,105,104,101,107,107,110,103,102,94,116,101,98,109,95,103,107,103,98,105,102,103,95,114,100,97,105,106,112,103,108,110,106,101,99,106,97,102,108,117,94,92,86,109,106,87,109,111,110,98,107,106,101,98,116,98,108,108,105,105,115,97,109,88,95,100,114,102,107,98,105,107,108,107,100,106,100,93,96,106,99,97,102,109,117,112,105,122,103,115,108,102,105,109,102,93,103,99,94,101,121,100,92,97,106,98,96,123,111,110,101,102,95,100,99,110,116,105,91,92,100,103,106,103,100,109,95,102,106,104,107,100,96,103,110,87,89,104,100,105,103,102,105,102,105,103,95,125,97,106,109,101,110,104,92,107,109,101,105,110,109,104,99,106,109,103,107,98,100,105,101,115,101,105,103,104,110,99,100,115,117,97,103,104,93,115,108,104,104,93,96,101,97,104,90,99,106,107,119,102,107,100,104,107,100,110,99,102,88,94,87,108,108,102,99,113,104,81,100,101,107,103,100,111,124,90,101,102,100,105,98,108,96,95,103,109,90,87,95,95,115,92,109,115,115,105,107,96,102,112,97,111,96,108,113,108,111,110,98,97,109,97,81,100,89,95,95,106,106,110,105,97,102,94,101,99,125,97,101,102,105,103,110,100,98,103,102,110,94,110,119,109,100,101,101,118,105,100,91,97,98,90,99,101,100,106,108,108,108,91,102,109,94,106,108,112,98,107,85,97,114,102,93,104,106,90,91,105,86,116,103,106,101,105,108,103,115,99,93,105,102,111,109,96,113,98,101,118,102,94,106,118,106,101,105,89,91,111,98,103,90,103,101,108,99,130,95,106,101,100,104,92,108,104,95,106,99,97,102,113,100,95,100,102,87,106,90,93,102,103,112,105,83,120,96,99,84,106,100,100,105,106,110, +618.22412,103,118,102,97,91,113,86,107,92,96,95,102,104,91,101,98,101,114,100,107,90,98,106,106,100,100,104,106,102,103,97,94,107,119,103,106,97,95,86,109,101,98,104,98,90,109,116,88,111,109,93,97,105,106,115,95,102,98,95,94,105,94,91,108,95,109,87,99,112,87,102,96,106,105,97,101,100,89,109,118,118,106,95,114,100,93,98,94,105,96,104,110,108,101,97,105,100,103,109,102,93,101,103,96,107,102,93,111,93,92,98,110,101,106,101,104,103,103,102,107,103,104,109,121,98,113,113,95,100,91,93,111,94,100,109,95,90,106,111,110,99,96,97,97,108,109,113,108,94,95,96,101,99,101,100,99,106,81,101,103,106,101,99,94,103,102,109,111,94,101,93,110,112,106,113,99,102,117,90,107,97,106,106,101,104,105,100,104,107,95,111,76,101,112,95,97,99,104,94,102,108,109,89,94,94,107,85,107,115,103,104,107,103,101,99,112,98,101,108,95,97,88,88,106,98,102,94,100,120,107,101,108,93,120,123,104,116,105,114,96,100,100,103,105,110,95,113,102,99,98,94,105,94,90,102,105,108,99,94,92,87,103,104,98,102,107,100,104,103,89,114,105,102,98,112,101,99,124,102,99,103,105,107,102,101,99,97,114,101,100,102,110,96,102,101,98,104,116,109,91,99,88,109,105,89,100,96,99,103,80,104,120,106,101,106,100,99,103,105,99,97,93,107,101,105,97,103,101,115,116,98,99,117,105,97,113,96,100,99,101,102,105,109,97,109,105,101,107,99,84,100,104,108,103,92,103,99,116,89,79,99,94,94,89,113,105,101,99,98,115,117,106,104,91,110,111,106,110,97,78,109,105,104,107,95,97,117,93,103,106,107,98,104,96,107,108,104,105,102,104,109,105,101,95,83,112,112,102,111,67,107,102,105,102,105,94,110,95,99,108,120,102,102,98,105,104,95,107,99,110,106,100,107,105,111,110,110,109,108,98,103,93,100,74,95,97,100,93,119,113,95,102,92,96,93,99,107,99,96,102,95,101,90,106,117,105,102,96,113,100,107,104,95,105,90,99,101,107,94,93,113,112,104,104,103,110,100,101,99,105,108,103,98,90,97,101,98,93,94,95,121,103,109,99,115,93,95,112,94,99,107,99,122,101,106,106,105,95,101,110,101,94,121,107,109,100,101,111,100,99,84,105,109,102,86,104,107,129,104,96,98,100,104,105,108,103,109,99,109,126,92,98,101,110,121,99,112,103,108,103,105,98,98,96,106,102,100,93,110,98,78,98,106,109,108,100,107,90,95,96,95,109,113,97,97,110,99,98,108,103,126,111,98,105,111,110,95,104,117,96,82,137,105,101,108,96,91,99,99,103,102,104,116,100,109,101,111,114,121,108,108,121,112,95,101,107,95,100,94,97,113,103,105,117,102,103,108,118,96,110,106,108,128,105,103,96,118,94,104,103,110,105,98,102,99,113,98,99,110,105,107,97,96,108,86,93,112,90,100,106,113,98,100,108,77,103,114,104,105,97,101,104,107,103,104,97,100,103,121,100,100,111,95,103,98,99,98,99,98,95,97,106,89,82,109,103,104,112,97,100,107,105,98,105,102,121,103,99,107,102,105,105,101,100,91,102,107,102,110,105,107,103,101,98,81,103,101,99,113,103,104,91,102,108,87,103,107,99,99,109,96,94,91,103,103,111,102,101,111,108,96,106,102,104,103,105,101,100,93,100,79,91,100,98,96,96,98,94,104,93,110,102,112,101,99,104,101,96,91,102,106,107,87,117,101,101,97,109,110,97,103,111,98,102,98,111,99,100,104,88,112,105,75,105,99,95,92,102,117,107,103,127,103,110,104,111,109,111,106,103,118,95,99,113,89,97,106,100,110,140,99,101,102,104,96,99,100,104,100,99,103,107,96,85,92,109,101,98,98,105,94,94,95,109,105,104,104,108,101,107,93,99,104,102,103,101,110,101,97,109,103,107,106,95,89,101,98,110,109,101,104,107,115,106,96,102,114,109,98,106,113,102,84,96,105,102,92,101,98,95,95,107,102,104,107,102,98,108,115,117,108,97,100,102,101,91,105,107,103,106,110,107,91,105,96,104,93,98,110,100,95,97,91,104,105,96,98,105,99,101,98,95,97,109,89,102,98,88,99,110,101,102,109,109,131,119,117,104,93,106,88,99,103,107,94,111,92,122,99,105,105,105,102,91,94,109,112,95,92,90,114,121,96,95,98,93,104,109,100,108,87,97,103,80,111,104,120,108,101,71,110,100,114,104,107,104,107,98,104,107,104,111,108,90,99,96,115,101,105,98,106,104,131,107,104,101,121,127,117,134,112,115,107,126,106,122,118,121,116,98,102,118,117,114,113,109,106,106,111,112,100,111,112,113,97,109,110,98,111,105,106,108,107,96,111,103,97,107,106,106,122,109,96,113,99,119,107,97,104,105,95,98,109,95,104,103,93,102,107,104,107,92,107,96,109,106,103,100,108,100,109,103,106,103,102,103,108,103,109,108,100,100,88,113,100,103,108,106,108,120,107,111,105,98,101,103,89,124,99,94,96,115,105,114,100,101,85,109,103,96,99,118,100,102,107,117,82,106,103,94,107,104,96,104,102,120,103,106,108,93,108,106,110,110,103,100,102,111,112,83,102,109,107,102,89,116,94,114,104,109,106,102,103,106,104,95,102,89,121,101,114,97,108,95,108,107,94,106,116,97,99,101,108,101,103,109,109,105,97,106,100,102,98,95,102,108,94,95,102,99,73,109,96,99,110,98,97,99,106,100,94,105,110,95,91,111,111,112,106,115,91,97,106,105,109,95,93,111,97,99,106,117,99,104,106,103,123,105,110,101,114,103,114,110,107,105,99,100,115,112,109,89,111,120,104,113,98,108,106,106,105,108,96,107,107,98,109,92,109,97,99,107,91,104,94,108,105,107,104,95,110,97,92,102,109,112,104,108,110,107,115,117,98,104,111,99,104,103,105,106,115,95,92,102,100,115,101,68,104,116,101,107,105,110,104,93,99,93,102,105,102,107,105,100,99,106,105,81,109,104,96,114,99,97,105,94,121,116,99,103,96,108,103,89,110,101,106,111,91,100,107,101,99,95,121,100,99,100,113,93,112,93,92,100,97,110,109,101,115,104,103,100,102,103,103,111,105,107,111,111,102,112,95,84,107,90,111,100,104,106,98,97,106,98,105,101,114,109,100,98,100,80,114,105,112,106,112,102,92,103,106,104,101,113,100,98,106,98,105,104,104,103,102,107,100,100,106,97,98,102,106,104,106,98,107,103,86,107,102,106,93,111,90,91,92,106,98,109,110,106,103,104,93,110,98,113,111,92,104,97,109,94,99,108,97,101,106,101,106,95,95,100,108,99,106,103,102,104,109,99,113,97,93,92,97,92,91,113,95,92,110,100,117,98,92,101,108,93,96,112,92,108,91,97,97,122,105,106,113,95,104,105,95,113,101,120,115,99,100,92,106,104,103,116,108,107,121,96,109,110,101,92,105,99,104,83,96,94,91,105,108,95,103,98,116,99,90,115,115,107,99,97,101,102,104,105,123,105,107,108,109,103,102,93,93,113,98,111,109,94,102,104,103,117,106,91,107,97,105,106,98,95,94,107,96,92,105,95,100,99,103,101,106,106,99,108,103,105,105,106,99,99,91,107,99,99,87,107,100,111,108,101,92,97,112,106,100,109,112,100,111,97,96,125,90,105,106,106,102,112,100,102,98,105,109,109,103,97,122,106,80,99,98,105,94,105,95,111,91,109,97,102,99,99,105,103,98,107,100,103,106,112,95,104,114,107,99,105,104,95,119,99,109,108,96,100,97,104,88,92,102,99,97,106,102,105,105,104,117,101,107,99,108,103,109,104,100,96,101,101,97,100,115,113,98,104,96,109,112,104,98,96,117,106,111,117,105,100,107,124,99,113,104,104,92,92,105,92,99,108,108,106,101,113,108,102,104,109,104,102,97,103,96,110,113,114,104,111,114,105,110,98,97,98,91,117,109,102,100,90,108,101,96,110,94,100,108,135,92,104,101,101,98,114,105,112,109,112,110,105,98,100,110,106,96,108,96,98,103,94,120,101,98,110,102,109,73,112,98,109,102,105,114,102,94,100,100,120,110,103,101,110,113,115,116,100,107,109,103,104,121,101,92,105,94,99,95,108,96,106,103,88,103,99,105,95,119,109,92,119,99,109,94,99,100,88,105,105,113,92,90,99,97,82,108,93,102,103,86,102,95,99,103,107,106,95,98,106,95,112,101,111,121,93,108,109,103,103,114,78,105,102,102,105,101,105,93,98,100,106,102,109,106,92,105,109,102,85,110,116,100,98,99,109,107,101,113,100,112,115,98,96,108,113,104,100,96,131,104,106,105,104,108,101,107,109,101,92,94,101,116,98,95,105,98,103,97,90,111,109,103,101,104,99,110,107,108,99,91,106,94,103,93,113,111,104,112,97,109,100,102,98,103,99,102,110,116,100,100,95,110,100,101,107,95,109,105,90,98,95,100,101,117,106,95,108,96,95,96,76,98,101,96,101,116,85,98,97,107,128,106,101,104,100,92,84,106,101,116,101,104,98,110,103,125,100,106,103,97,93,89,99,114,98,112,101,93,105,105,91,97,94,100,113,107,106,99,87,99,96,110,95,107,96,98,112,88,101,94,102,100,90,93,93,105,112,102,94,91,86,100,99,95,102,95,105,94,110,109,120,111,106,120,83,107,109,102,93,90,101,106,100,102,67,100,123,119,103,90,97,99,99,94,114,103,100,94,102,101,103,110,105,93,105,104,121,117,125,110,110,107,113,98,93,103,89,83,101,80,97,115,88,106,68,124,111,123,91,112,100, +618.36523,93,97,93,86,99,105,100,92,107,116,101,100,85,115,130,95,79,112,94,97,94,105,134,109,112,101,113,113,115,93,103,110,102,101,99,96,104,76,116,98,97,119,110,104,114,75,97,103,100,111,94,92,100,106,99,102,104,106,108,106,107,93,116,102,109,108,86,97,120,112,110,106,95,102,106,111,81,100,98,101,122,109,96,101,100,98,104,113,98,104,90,112,98,107,96,121,109,100,106,113,105,110,104,99,100,92,78,113,96,116,68,115,112,113,121,107,105,92,107,114,109,97,102,102,86,112,98,100,109,101,113,99,99,111,95,96,111,110,101,101,101,107,104,108,112,100,111,106,89,103,104,100,108,83,108,104,100,106,111,100,126,116,111,112,112,111,97,100,104,107,108,101,103,103,104,97,111,101,107,121,121,100,107,91,114,97,95,98,103,106,99,103,107,87,98,105,102,99,108,103,101,116,93,117,102,107,106,107,119,117,103,103,105,91,101,94,113,104,95,106,111,110,114,100,105,113,99,118,105,99,91,109,102,109,103,114,105,98,100,115,112,110,120,100,102,106,106,113,102,117,108,103,110,106,100,102,105,107,97,113,82,115,94,100,115,106,109,104,115,94,104,99,100,93,106,102,97,112,103,110,105,104,99,90,103,115,108,95,106,101,98,108,106,129,113,98,108,112,101,106,67,105,110,110,100,112,123,102,64,107,83,118,106,109,106,107,91,114,101,115,108,99,94,97,103,93,100,82,108,110,107,126,102,99,102,102,96,110,103,111,102,113,94,99,92,104,94,112,103,98,109,105,101,97,95,121,109,132,104,97,108,103,107,100,89,105,105,115,103,97,96,97,111,85,112,101,101,103,108,117,94,116,113,111,108,106,99,105,103,111,107,109,112,100,100,103,110,98,104,117,90,99,82,98,119,104,126,129,100,101,100,101,102,102,109,103,101,117,109,98,105,97,117,92,93,96,108,95,114,106,110,108,105,94,107,117,99,98,105,98,102,101,109,111,113,116,95,105,105,96,111,105,106,99,96,108,122,99,118,91,105,97,108,92,105,87,94,109,106,108,106,118,101,101,97,96,97,100,113,103,95,105,102,104,95,106,105,100,98,112,99,112,114,102,82,108,112,117,102,103,100,113,103,96,110,103,101,121,108,95,107,107,110,122,96,109,94,116,94,103,102,112,99,104,104,112,91,96,122,93,91,100,101,101,100,109,107,98,113,102,102,117,101,100,111,109,103,91,99,106,101,101,103,105,105,101,99,97,105,107,104,99,89,100,102,105,107,116,100,101,92,106,104,100,108,99,102,112,108,104,85,97,98,97,102,101,97,108,125,99,126,106,100,104,111,95,97,105,109,84,112,110,94,109,102,109,100,98,109,108,100,105,110,97,95,85,117,88,100,105,106,101,103,93,106,110,114,112,104,104,103,99,108,100,90,102,95,96,129,87,98,113,101,95,93,100,101,108,94,105,109,112,117,97,104,111,106,105,112,112,102,103,107,116,98,92,106,101,97,110,98,106,102,107,102,119,112,106,118,120,113,102,109,101,93,98,103,104,105,85,103,99,114,104,100,113,103,99,90,98,105,111,100,92,97,87,104,109,99,115,108,98,111,105,103,98,104,107,97,98,101,102,102,103,95,112,109,114,106,111,110,118,116,106,103,102,107,93,102,103,108,97,106,121,96,102,90,100,108,89,108,101,97,105,97,112,102,109,105,118,101,110,104,104,98,109,86,108,109,95,94,103,104,110,98,108,96,114,96,99,102,114,109,109,98,110,94,106,113,108,104,105,112,104,108,111,95,112,100,107,105,109,97,100,104,107,103,108,106,107,111,120,107,111,108,95,104,95,110,97,108,112,109,99,107,106,96,99,89,90,101,113,112,100,115,117,131,104,104,108,111,105,110,98,123,104,105,95,98,103,90,115,98,81,100,92,110,105,87,108,106,92,109,108,107,105,94,97,100,111,112,121,105,105,106,100,104,108,110,106,117,105,102,103,98,94,96,114,102,103,104,106,110,98,107,96,99,107,104,98,94,95,119,117,95,108,92,92,94,93,102,112,100,102,96,120,92,101,112,95,104,110,99,109,103,93,98,106,94,97,96,109,104,109,103,106,98,101,116,97,97,104,98,107,124,95,96,99,99,103,114,91,100,86,91,115,99,106,93,106,104,104,100,107,99,109,104,83,96,101,112,96,111,91,106,104,107,98,100,107,104,114,96,100,95,106,97,100,104,108,103,113,71,101,90,102,104,106,106,98,97,114,104,109,95,112,107,124,102,93,90,99,85,110,114,106,99,107,95,105,110,96,105,95,104,103,92,108,109,101,99,104,98,108,112,102,97,107,100,114,112,117,101,107,108,123,123,99,109,128,112,120,102,106,115,124,98,99,106,85,104,118,114,98,100,118,101,108,118,101,107,115,105,97,100,101,103,106,95,96,105,104,101,103,105,103,106,102,117,101,106,112,91,105,94,107,118,102,106,113,111,95,100,116,101,104,103,129,109,103,98,107,109,96,109,109,99,111,103,103,108,111,111,107,103,103,109,108,108,106,110,105,112,94,102,115,97,89,113,99,92,102,111,106,96,97,113,99,117,95,109,105,112,96,113,108,108,106,105,104,105,109,112,101,107,103,118,109,106,96,113,112,98,95,98,113,102,90,108,96,103,100,101,112,100,81,112,102,102,130,107,104,119,103,99,110,111,96,103,114,96,91,111,112,106,109,101,122,106,109,103,95,102,109,94,102,103,115,98,101,107,118,109,111,88,121,109,96,107,105,104,112,112,102,114,95,99,105,117,117,100,102,118,99,102,109,115,104,107,108,99,100,102,112,103,102,101,99,110,103,112,97,99,101,116,114,113,117,106,102,109,106,109,98,111,104,120,109,104,115,99,112,109,120,104,102,107,103,104,128,106,107,96,109,99,110,103,107,98,110,103,113,103,107,110,110,114,109,106,122,99,112,98,109,120,109,107,94,107,106,114,106,104,106,108,105,112,103,110,102,117,106,101,102,108,99,93,96,98,103,98,109,146,103,107,116,101,101,106,100,100,98,98,102,107,108,110,101,111,97,103,102,111,106,110,96,120,99,101,113,99,104,109,103,116,97,105,108,107,133,105,98,105,115,113,105,96,109,102,96,65,100,106,99,100,94,110,99,102,126,99,107,106,106,99,111,117,108,103,106,108,110,105,107,106,101,93,104,94,97,108,102,103,105,101,74,107,115,108,109,111,102,116,106,107,97,107,112,112,107,109,106,105,94,90,99,84,96,106,88,95,112,104,105,99,101,112,107,112,104,115,116,100,129,105,105,87,94,93,103,98,114,110,96,104,107,101,101,97,106,94,106,102,105,99,105,109,107,91,108,110,107,83,103,112,83,95,106,106,110,109,97,101,116,88,103,116,104,91,109,100,104,103,99,95,91,104,112,111,105,109,101,108,107,97,110,104,98,103,106,99,102,96,100,101,102,102,112,102,92,114,110,104,103,104,106,109,100,95,103,111,101,86,108,94,110,112,113,95,121,102,94,102,99,104,117,90,109,109,103,128,86,113,102,114,117,96,94,106,96,72,110,104,105,110,120,101,99,106,100,106,111,108,100,94,96,113,106,105,98,91,101,99,88,109,102,102,70,108,110,105,103,101,104,99,100,111,113,105,103,108,113,102,123,111,100,112,109,108,102,99,95,103,104,88,96,126,83,102,104,107,108,107,108,110,121,106,104,107,106,104,110,97,92,108,106,117,104,103,113,105,77,106,94,113,110,108,91,98,106,111,123,102,108,103,109,117,116,101,97,107,104,98,107,119,104,111,109,110,123,95,100,111,113,96,102,121,112,105,102,112,105,115,112,112,109,89,99,107,93,105,105,101,108,106,110,113,108,109,99,119,102,105,111,72,103,108,84,102,100,112,99,95,105,106,99,97,98,108,121,110,102,105,117,118,96,112,102,101,91,107,107,103,93,99,105,88,108,109,95,95,98,99,108,107,102,98,100,104,101,108,124,105,113,106,105,120,103,114,112,111,119,97,96,111,117,101,114,105,108,110,101,96,102,102,103,104,105,108,110,99,96,101,100,119,100,92,94,108,95,97,102,104,109,120,115,106,123,100,100,103,99,102,105,98,102,107,112,107,107,102,104,106,106,109,108,106,106,103,96,104,103,113,101,108,105,105,117,110,101,111,91,117,104,102,101,106,95,98,105,112,103,116,98,82,102,124,110,76,99,101,106,106,109,107,108,105,112,102,102,97,97,118,66,100,100,102,100,107,109,98,95,113,98,107,107,113,108,106,106,94,101,104,102,111,99,102,110,117,112,101,108,106,99,103,104,103,108,97,94,99,105,108,104,111,107,107,103,104,111,98,102,102,98,95,97,104,107,111,105,100,97,113,110,109,112,97,113,97,114,110,109,107,104,98,99,96,105,99,106,109,93,105,106,108,102,106,93,93,98,103,102,103,103,100,96,99,104,107,104,92,99,96,100,101,111,95,94,120,99,92,90,113,95,101,100,109,112,99,106,108,98,91,102,91,98,110,97,116,98,112,106,117,102,95,105,105,99,102,77,108,91,101,97,115,125,109,110,124,99,106,98,103,114,103,106,108,120,108,101,100,106,111,96,105,111,118,109,103,111,102,109,109,98,93,91,101,98,98,107,98,112,99,109,102,96,109,111,116,90,109,96,101,97,94,104,59,96,94,105,87,93,99,110,109,87,99,92,104,101,126,92,104,109,103,104,86,106,110,109,92,107,110,102,91,104,110,113,97,108,108,107,96,79,105,110,95,106,112,110,111,101,97,96,126,101,109,102,102,111,105,118,84,93,107,101,104,106,115,98,105,104,100,105,112,109,94,104,105,91,93,92,98,92,120,103,102,103,109,100, +618.50629,104,103,97,73,96,109,98,113,102,99,100,102,106,100,108,111,112,102,111,93,98,103,106,99,81,103,98,110,97,105,104,98,95,97,116,102,100,99,98,101,91,89,95,98,110,104,107,95,105,80,105,97,113,98,101,99,118,98,99,102,100,103,103,95,88,105,111,112,103,107,102,95,106,96,97,109,107,104,115,117,94,105,104,91,105,100,106,107,105,107,102,118,107,84,108,96,102,96,93,103,104,93,99,90,97,93,96,97,105,98,118,94,105,81,119,102,105,108,121,115,113,99,96,100,102,117,108,91,110,100,104,105,101,110,103,88,107,110,103,119,109,106,104,113,103,104,112,117,95,76,103,108,111,100,111,103,86,79,112,104,87,101,104,94,99,117,116,107,106,77,113,115,106,101,113,113,101,107,106,104,108,82,109,108,97,99,83,97,108,99,108,106,112,98,100,115,100,110,102,111,94,100,100,95,102,112,99,109,109,104,113,108,112,111,104,99,99,100,87,111,103,109,113,102,99,113,103,109,106,80,104,98,96,94,104,115,87,116,102,90,102,107,97,109,98,100,113,115,100,105,110,108,110,102,98,107,87,100,105,102,104,109,105,102,101,112,103,95,105,100,103,116,110,99,105,105,85,105,99,99,125,77,101,98,100,113,100,89,129,98,102,114,107,102,96,114,107,101,96,99,112,94,104,124,92,113,102,111,104,90,106,106,106,119,98,102,100,95,99,96,100,95,109,80,108,105,95,97,107,111,103,95,100,117,104,100,102,105,97,95,119,104,101,111,116,108,104,107,100,99,98,105,103,116,110,108,108,111,104,109,111,99,91,100,95,107,103,100,97,101,108,95,118,100,98,111,109,101,107,93,120,109,106,104,95,101,101,96,113,91,109,95,99,110,107,98,99,113,102,102,100,115,116,105,101,119,99,97,109,92,96,95,105,106,100,103,91,93,108,116,102,95,99,94,107,95,100,132,79,102,102,107,116,104,113,101,101,109,94,102,103,108,98,95,96,104,94,96,109,112,121,103,99,106,84,111,103,104,99,95,92,115,106,107,100,108,98,106,104,110,100,103,101,104,97,108,104,100,91,103,101,114,113,107,109,102,98,100,99,104,110,115,110,90,100,104,102,104,106,103,105,100,104,108,97,104,109,103,101,112,108,100,103,124,98,105,105,95,108,113,101,102,108,107,113,113,108,120,101,104,86,100,99,97,90,98,100,89,106,105,110,98,103,93,106,105,92,101,108,110,110,113,112,99,108,103,94,100,94,93,109,99,109,97,109,105,102,112,110,97,98,106,102,105,117,102,87,106,100,95,116,104,117,117,105,95,108,118,111,109,98,103,98,104,113,98,100,106,109,99,82,108,105,85,91,102,108,79,104,104,110,106,121,113,104,99,103,91,105,102,97,100,118,105,109,103,103,109,114,131,107,104,101,108,78,100,106,103,98,113,102,102,106,92,104,109,99,102,105,100,105,107,87,95,116,100,94,112,95,85,105,112,102,107,94,104,97,95,102,98,104,106,97,102,97,117,98,105,101,104,104,111,108,92,98,104,102,88,103,110,98,104,99,107,98,105,103,100,94,107,99,117,95,102,116,128,109,103,100,114,96,105,103,96,105,109,92,120,97,98,100,101,115,112,105,103,97,103,106,99,124,91,84,86,100,100,120,100,116,111,115,104,98,102,108,84,107,103,104,96,105,97,109,104,113,108,106,99,101,103,106,98,102,101,95,99,96,110,99,106,107,95,95,110,99,109,98,114,99,108,114,94,107,104,99,107,96,106,91,106,118,101,95,100,109,103,104,101,102,112,105,100,101,94,106,93,105,105,131,103,102,108,108,111,107,128,126,102,96,108,100,107,104,83,90,120,105,117,113,93,94,101,108,108,112,100,97,105,101,107,117,108,106,91,103,95,98,94,103,103,91,96,105,96,97,105,113,106,105,97,90,90,104,100,93,106,93,93,108,96,112,109,102,121,100,101,106,105,115,97,109,116,102,112,96,128,122,102,109,107,103,104,108,98,102,94,105,91,102,103,104,103,114,102,112,102,103,105,102,104,108,104,102,109,104,110,98,106,103,95,126,96,106,119,100,105,117,112,96,105,106,100,103,123,98,110,108,95,106,114,124,100,108,103,104,113,102,108,109,100,82,105,120,104,100,82,103,111,96,114,101,114,103,112,113,105,88,94,108,101,114,108,97,113,114,107,110,102,103,104,100,105,102,96,105,101,106,107,95,111,105,108,90,96,110,104,101,97,105,109,92,104,92,94,109,103,102,103,104,109,94,110,103,103,108,83,109,97,106,105,107,108,102,97,103,106,109,112,99,103,105,97,108,119,111,100,108,117,101,110,121,116,108,113,130,109,110,101,138,118,102,94,104,114,101,92,94,111,109,113,95,100,95,105,97,107,95,98,100,96,103,118,104,86,99,108,111,99,101,102,103,93,98,100,96,102,101,103,107,113,95,105,100,111,99,100,99,90,127,94,116,93,108,129,101,114,115,99,102,99,96,120,117,96,117,101,106,107,101,110,98,99,109,113,114,112,113,106,102,107,113,110,103,98,107,105,103,99,89,101,109,93,89,100,99,84,106,116,103,109,108,108,113,99,104,101,108,91,93,102,102,103,101,87,110,107,111,111,110,103,110,95,106,115,101,106,106,92,103,102,99,104,77,105,95,102,114,106,103,116,92,105,109,113,91,107,134,107,105,104,108,107,99,95,115,109,112,110,111,110,104,120,95,100,109,104,101,97,105,103,91,107,106,111,99,95,95,111,105,105,109,101,105,115,110,106,97,92,107,106,110,89,88,104,112,112,112,96,103,106,110,118,106,111,97,103,99,102,112,108,103,108,107,110,106,107,106,100,113,103,107,104,112,94,104,104,105,121,105,114,100,115,108,93,109,110,90,114,113,113,100,95,91,113,100,91,97,113,111,104,99,115,96,99,79,109,111,109,101,103,102,88,105,106,105,114,111,110,100,105,116,108,106,107,112,105,101,104,108,105,101,100,87,109,113,108,100,114,103,107,108,104,115,104,118,104,111,107,98,105,103,105,100,99,111,102,104,103,101,102,110,107,120,104,108,94,121,92,101,101,106,107,108,103,106,104,113,96,103,103,104,101,108,108,106,110,101,94,102,107,102,87,104,98,99,98,97,99,109,102,112,106,113,109,96,94,92,96,102,105,103,95,103,101,100,112,101,109,109,121,103,116,102,97,92,93,103,93,113,109,106,109,107,108,99,103,106,103,94,101,109,75,96,105,109,103,103,116,105,102,98,105,109,108,106,113,110,108,109,117,98,114,94,82,109,104,102,98,102,98,107,113,108,103,101,103,105,113,99,99,112,106,96,77,99,98,102,112,102,104,108,113,108,94,103,111,106,100,126,100,115,105,111,105,95,104,99,99,112,88,100,100,106,102,99,90,95,101,100,98,107,106,101,117,98,103,103,103,105,99,101,99,104,104,111,104,97,114,111,103,111,107,84,104,105,107,102,104,97,101,105,121,93,107,104,93,105,106,93,105,100,113,97,128,106,106,102,105,107,108,103,92,104,102,99,104,97,101,105,100,97,104,84,114,115,109,105,116,105,106,85,99,94,88,103,92,105,108,109,110,95,94,88,86,102,93,121,92,107,95,102,100,103,109,106,98,105,108,105,101,113,116,102,103,100,99,105,101,105,106,105,112,99,113,107,100,107,100,78,98,103,100,108,100,104,107,109,101,102,102,121,92,97,101,106,108,102,114,113,106,106,105,105,128,98,108,105,108,107,102,101,95,98,100,109,100,100,102,96,100,99,91,95,97,108,93,101,85,106,108,107,103,97,106,99,105,112,119,92,88,105,100,105,100,105,113,119,106,93,106,125,105,87,106,117,93,101,106,105,96,94,92,86,104,108,102,102,106,93,97,96,87,120,105,106,109,117,101,96,87,105,101,101,114,97,110,101,105,109,97,108,98,102,92,101,108,101,97,97,118,103,110,100,105,110,91,105,104,108,99,108,107,90,92,104,104,106,101,99,92,108,110,100,110,92,113,104,129,110,112,102,112,106,103,102,110,107,95,102,106,126,109,97,111,107,111,106,100,99,92,90,98,110,103,102,107,89,106,97,117,88,107,110,96,94,97,110,111,105,101,102,101,93,90,102,94,98,84,102,104,100,104,113,101,100,99,104,109,104,110,101,107,104,111,106,96,99,103,95,99,117,106,101,97,109,106,91,105,101,98,105,94,117,105,99,98,104,105,102,101,97,100,108,103,100,103,88,81,101,99,103,101,112,101,103,108,113,95,95,107,101,106,108,111,91,96,94,105,95,92,107,95,103,108,105,103,111,116,98,106,101,103,106,117,103,113,113,117,107,107,93,117,96,103,98,120,101,110,106,109,106,86,98,105,87,106,106,102,122,102,108,99,90,100,96,97,100,102,97,105,103,102,107,104,103,101,96,97,105,97,111,93,95,109,102,97,99,97,100,98,94,96,100,101,106,134,99,108,104,91,101,101,99,96,101,106,106,86,102,99,98,95,96,100,99,105,112,100,103,100,110,103,102,95,107,103,95,108,102,103,106,99,100,107,118,87,110,100,105,116,110,116,110,109,98,113,111,112,108,88,103,91,107,116,101,99,103,96,100,118,108,96,100,105,117,101,111,105,109,99,107,102,105,106,108,99,104,110,104,99,95,108,102,121,108,100,85,101,95,97,97,105,96,110,109,104,107,93,96,105,106,99,104,95,104,104,99,115,97,103,97,111,107,118,101,123,106,95,105,112,98,102,111,97,102,98,94,105,98,103,118,111,98,96,108,105,109,99,104,104,119,100,106,107,92,113,95,109,118,94,111,109,102,104,109,98,92,100,97,93,110,104,110,108,108,105,109,92,107,107, +618.6474,116,102,97,92,101,90,93,110,98,96,105,105,110,107,104,111,90,103,100,99,91,95,100,96,104,110,94,102,93,104,105,104,92,93,102,103,94,125,111,97,87,103,104,99,85,115,95,100,95,97,102,97,92,113,98,90,112,103,119,95,103,99,103,102,104,114,107,100,107,92,103,95,100,94,76,98,96,99,95,96,113,104,104,117,116,95,106,109,106,96,107,117,96,101,90,105,108,94,111,95,107,104,110,93,83,98,102,98,116,91,119,109,97,109,98,105,105,104,110,105,93,90,110,112,118,105,105,100,113,102,109,101,90,110,89,109,105,103,86,118,117,97,98,106,91,74,114,116,113,92,102,98,91,102,100,116,103,104,101,103,101,105,102,114,91,104,104,99,103,75,105,96,103,102,105,101,111,111,104,101,119,102,90,108,105,81,113,103,99,100,100,100,106,99,112,90,98,100,105,95,101,103,105,96,104,90,98,111,104,111,99,88,97,104,99,99,102,105,100,96,100,99,103,100,99,105,104,117,127,113,114,101,107,111,106,104,98,111,110,102,94,110,111,99,102,120,104,99,106,99,106,96,87,106,94,111,94,96,100,115,104,107,111,100,94,91,110,89,98,90,129,96,111,99,96,111,92,114,104,104,101,108,93,100,102,116,102,83,101,113,104,98,112,115,95,117,113,103,101,99,88,100,107,108,84,104,109,106,106,111,99,120,96,103,107,96,95,112,100,104,96,100,99,100,103,102,99,81,114,114,94,96,106,114,110,108,98,87,104,117,101,106,96,95,108,111,91,88,74,100,114,111,102,108,99,99,108,103,94,101,113,103,99,92,100,108,108,114,98,104,111,90,99,103,105,102,109,89,110,115,108,111,100,104,96,89,102,92,113,101,110,97,111,100,93,109,90,130,112,102,99,101,104,99,120,107,94,102,102,106,94,105,98,92,102,96,99,101,106,94,114,108,114,109,100,101,101,103,96,105,99,119,99,122,96,114,105,105,109,99,112,107,108,106,109,101,105,92,105,91,103,101,95,106,102,99,124,104,110,94,101,100,99,91,110,111,104,104,99,110,105,118,106,105,101,100,96,116,93,104,108,122,108,108,98,105,108,111,105,97,97,98,107,101,112,100,92,108,110,106,113,102,103,103,95,96,104,101,114,106,109,94,106,90,116,85,104,102,104,96,117,96,115,110,113,98,105,107,99,79,94,106,102,115,97,107,102,113,102,98,93,103,113,106,99,108,109,104,132,103,104,99,107,103,95,102,102,107,106,111,91,104,116,106,90,105,100,88,92,98,101,92,114,113,102,117,96,100,107,108,99,103,92,94,112,99,104,100,100,111,100,100,105,110,101,108,97,102,95,99,114,117,99,98,103,98,90,102,104,110,113,109,104,106,105,111,105,99,112,92,108,104,95,100,104,106,87,120,98,102,111,107,105,109,95,103,105,102,101,107,104,100,105,101,97,104,100,81,104,95,105,101,106,106,106,101,76,109,123,109,114,108,98,104,105,113,104,109,115,95,104,105,110,107,103,84,121,101,103,98,113,107,108,92,122,99,87,113,113,101,101,91,88,115,98,101,100,101,91,91,136,99,100,102,103,98,105,110,101,109,113,107,107,102,109,109,103,105,108,107,102,104,102,94,104,102,98,95,99,110,101,101,105,103,102,107,109,97,113,107,110,107,109,108,111,101,109,103,99,100,118,71,105,106,97,92,97,98,111,105,101,91,111,105,97,104,115,104,102,101,106,106,106,101,87,96,95,105,106,106,108,98,103,121,107,103,103,110,93,105,104,108,112,100,107,118,106,101,109,103,104,98,101,122,108,109,108,99,105,109,111,96,90,105,116,98,107,96,106,106,106,110,106,108,101,109,100,97,114,102,94,109,108,102,105,108,113,109,98,96,110,112,109,109,97,96,101,102,98,101,100,100,93,120,114,100,108,107,85,117,109,98,96,109,83,101,104,115,99,106,98,99,116,107,96,108,110,113,110,95,108,106,109,102,106,96,97,111,117,99,138,101,100,94,107,100,105,99,106,87,101,105,96,107,88,112,99,115,105,105,106,108,120,108,113,97,103,114,105,103,102,102,114,113,99,104,112,95,100,95,126,109,107,103,94,104,114,97,96,106,114,114,104,98,94,103,116,131,96,116,108,102,114,106,110,99,111,114,128,104,120,110,102,101,116,108,103,106,94,109,99,104,96,128,97,107,104,100,104,106,98,106,100,110,98,105,110,113,114,101,109,100,112,107,104,109,103,104,105,119,103,105,101,107,103,104,103,110,104,118,98,111,101,103,82,105,91,106,114,112,105,114,103,100,106,96,111,99,100,94,109,109,96,109,122,118,108,117,111,105,125,118,130,101,120,121,119,110,113,115,129,105,105,105,109,106,99,99,97,115,109,105,117,133,93,110,117,105,94,109,104,104,91,106,109,109,120,100,101,99,109,94,99,113,95,105,87,96,97,106,104,109,106,102,103,97,114,105,104,113,100,99,109,122,87,95,95,100,109,101,112,117,109,108,98,105,101,107,103,98,94,97,83,112,106,115,114,115,99,112,108,107,107,95,104,110,89,100,95,80,86,84,97,115,113,96,94,95,105,103,112,96,90,112,91,104,103,99,108,95,99,79,100,83,109,102,114,93,111,107,97,87,100,102,105,110,103,99,109,103,105,103,100,101,95,98,110,108,121,101,105,95,120,102,74,112,99,106,96,93,99,108,98,97,104,102,101,100,105,109,108,82,93,93,106,99,106,113,92,94,106,101,115,95,116,112,94,99,102,107,106,116,95,116,110,84,110,103,104,103,96,110,112,98,113,100,107,106,97,108,104,106,110,100,95,94,93,113,102,101,99,102,106,109,91,103,120,99,105,105,96,109,94,131,99,111,109,94,90,104,102,106,107,97,103,107,99,100,82,103,103,76,94,94,113,96,73,98,102,102,94,105,111,106,90,100,110,106,110,84,107,103,104,101,104,104,96,102,108,109,116,95,81,100,101,100,102,107,104,91,95,113,116,106,106,106,104,98,99,88,103,91,103,108,106,96,104,104,107,105,92,120,102,102,101,91,95,95,99,101,113,105,110,99,108,100,101,110,100,95,93,101,99,106,105,107,89,104,103,113,110,104,105,102,101,96,107,102,99,109,92,114,93,108,105,103,106,122,114,103,113,100,97,111,119,109,122,97,110,102,97,96,106,93,113,102,98,113,98,105,100,106,99,106,94,97,102,96,105,98,110,102,107,107,107,91,111,109,110,103,102,103,97,103,101,109,96,104,92,109,95,91,109,99,104,103,107,98,105,102,103,95,107,97,105,100,102,98,100,113,102,107,96,106,109,108,103,93,108,94,91,105,88,97,90,103,92,80,95,106,102,111,91,105,101,106,98,104,115,117,97,99,98,95,101,113,103,92,109,89,110,101,102,92,97,91,101,113,100,103,105,102,121,106,97,91,109,99,98,89,109,108,108,107,106,110,100,99,109,106,107,104,111,105,109,101,95,94,111,100,113,109,95,98,106,116,100,92,108,107,116,103,114,107,100,109,118,99,98,114,108,94,80,99,99,97,93,102,68,93,112,100,102,110,111,108,99,92,112,108,87,113,117,113,102,104,99,89,94,97,99,101,100,122,96,97,98,101,110,102,99,90,103,115,108,100,95,112,102,99,107,108,99,107,90,106,106,103,115,106,113,93,105,103,105,111,95,103,98,98,105,104,96,96,89,111,100,91,104,111,113,92,106,92,123,111,107,113,107,108,109,102,113,105,111,91,104,86,113,100,101,94,110,106,97,89,110,106,108,124,103,104,106,105,103,106,95,95,93,105,93,115,103,106,105,97,101,114,92,101,84,104,106,94,108,98,97,105,112,84,107,128,106,107,97,113,101,109,95,103,97,101,98,109,102,92,95,96,103,105,110,107,95,109,102,103,91,113,106,107,109,112,98,109,98,105,90,110,106,97,107,101,102,101,111,112,107,101,91,106,101,109,98,116,96,106,105,110,106,112,106,95,106,109,107,106,100,103,109,100,91,116,108,94,93,100,110,105,112,101,91,106,103,109,121,96,101,97,105,97,105,109,112,95,100,106,92,106,104,117,104,99,101,113,102,101,114,97,101,99,115,105,98,113,101,105,105,98,99,94,104,97,89,76,110,101,105,102,97,103,98,104,111,113,111,97,102,103,108,104,103,107,97,110,96,91,106,110,98,98,104,93,112,103,99,89,105,105,103,91,111,106,99,113,93,107,93,103,90,106,91,98,107,87,102,101,104,102,102,91,99,104,104,95,104,103,89,108,102,96,99,113,96,101,94,121,97,110,106,107,102,87,110,103,106,98,96,103,103,107,104,98,100,92,107,107,99,94,91,106,99,104,96,99,107,100,107,92,84,102,91,90,106,105,102,85,112,100,96,94,113,99,98,96,100,101,94,106,87,109,107,103,96,109,97,88,92,101,105,104,106,93,105,98,108,109,93,93,99,98,100,101,96,98,99,105,101,88,92,100,100,101,113,96,96,109,101,112,89,111,105,88,108,122,104,104,95,100,104,102,97,99,109,111,106,95,113,91,102,91,99,89,103,104,93,95,114,93,102,105,107,116,90,95,110,102,109,114,99,98,104,97,108,110,102,99,91,120,110,99,102,87,92,98,107,105,98,103,93,87,102,103,95,89,93,97,121,115,97,99,98,109,106,101,96,98,107,100,105,92,83,98,90,102,99,97,108,101,96,106,110,96,88,113,108,100,94,99,94,123,111,95,80,107,96,100,105,141,87,103,105,102,100,100,105,108,91,102,97,108,103,98,93,89,105,94,83,104,80,101,98,106,89,112,88,104,97,100,82,97,101,100,96,100,98,112,97,101,111,97,101,102,87,87,100,94,98,111,113,105, +618.78851,113,98,106,115,110,99,102,108,101,91,101,114,110,112,113,93,96,112,103,88,116,124,120,83,109,99,107,105,102,103,98,105,109,87,105,106,116,87,114,100,101,111,99,101,112,103,101,111,88,115,101,121,98,95,125,110,95,107,118,98,115,101,112,106,104,108,101,95,107,105,118,114,114,108,107,114,99,101,118,106,103,89,106,113,109,103,99,101,109,92,106,103,103,104,113,116,113,102,93,101,109,102,88,104,100,100,104,110,100,104,115,98,108,112,103,107,101,97,108,107,95,106,110,91,115,98,102,108,112,94,102,117,96,102,104,104,93,113,100,106,102,102,102,102,101,102,108,113,112,102,106,94,101,103,108,112,114,103,100,115,97,130,105,99,96,96,98,109,102,107,116,96,105,95,92,105,109,106,103,119,114,109,95,102,101,108,87,104,79,106,107,115,102,106,97,102,95,113,113,110,105,117,104,111,96,96,106,108,96,108,98,103,92,98,105,103,73,93,88,100,106,124,102,111,110,102,103,110,99,100,107,94,97,102,98,98,96,125,103,102,109,113,104,101,101,94,103,109,100,105,106,110,88,98,102,118,91,116,104,99,100,105,117,110,102,107,102,107,105,105,99,93,104,122,103,102,106,116,99,109,119,100,85,117,116,106,97,103,116,106,106,110,107,106,111,106,105,108,107,97,111,107,103,107,99,106,119,103,99,104,101,106,110,112,94,105,105,126,105,111,99,96,111,112,96,110,106,99,100,102,109,81,100,94,96,107,108,104,111,109,111,112,102,101,91,106,114,96,108,110,108,100,110,103,102,103,115,111,106,101,105,107,108,102,100,100,104,103,104,107,108,108,117,107,116,85,110,100,88,107,91,103,105,112,90,99,102,101,109,101,112,93,112,102,92,96,105,105,105,106,93,115,107,107,107,78,105,104,111,110,135,93,105,105,104,100,104,94,105,96,93,110,101,105,105,99,89,111,98,100,109,98,65,96,106,96,100,104,98,117,125,106,109,113,97,108,104,100,105,108,107,101,120,108,106,105,102,115,118,101,117,102,101,100,119,104,101,112,95,104,105,102,98,102,109,94,97,105,109,113,105,114,99,100,105,102,112,117,115,104,112,111,94,111,102,99,91,106,117,100,103,97,106,108,101,108,110,101,105,105,104,108,98,120,109,106,107,116,91,94,96,109,97,100,107,102,103,100,113,107,95,102,132,107,103,97,110,99,93,103,99,96,98,101,116,103,98,98,101,108,108,112,99,113,101,101,99,105,107,104,109,104,105,103,100,92,112,100,107,87,107,104,102,108,102,102,113,111,115,98,105,102,94,102,111,93,106,103,103,92,101,109,96,109,117,109,109,103,112,114,100,105,91,90,106,104,98,98,103,107,106,107,113,100,99,117,103,99,99,116,113,104,112,99,112,96,95,112,108,108,112,98,103,98,98,118,102,87,104,119,112,116,87,102,98,100,107,109,109,120,99,111,104,113,100,102,109,105,103,107,94,104,109,107,97,107,102,104,113,99,122,108,103,99,108,98,90,104,113,109,108,105,104,102,99,109,94,113,101,108,95,67,102,111,103,106,102,105,106,94,102,111,95,96,113,109,99,107,108,109,107,109,109,116,101,100,96,92,104,108,96,94,101,115,106,98,104,116,105,127,116,113,112,98,100,112,122,98,108,102,106,109,108,104,108,106,117,107,102,105,106,106,104,101,107,113,110,91,99,109,105,111,109,112,100,102,97,103,115,108,103,106,109,108,114,105,99,101,101,98,101,110,112,108,101,115,105,104,98,100,87,110,113,95,111,108,99,109,102,109,110,97,95,110,108,110,104,105,108,118,109,96,102,113,124,112,108,110,104,98,107,102,104,106,105,109,116,109,104,103,111,96,112,117,108,109,117,112,112,99,117,113,110,113,102,108,104,92,109,98,106,119,107,100,102,103,98,117,102,92,102,98,102,112,103,111,105,114,112,107,113,83,113,112,106,103,105,104,116,111,102,117,116,93,109,95,96,108,114,109,112,109,113,109,95,90,110,118,115,112,104,111,112,111,113,101,96,108,110,105,111,101,101,109,103,102,103,106,112,115,108,94,101,116,97,106,100,100,105,109,106,99,95,95,99,102,106,103,100,106,106,108,113,98,91,96,118,105,110,105,97,97,125,118,95,108,122,125,100,107,103,105,104,100,98,100,100,111,106,109,103,92,96,104,110,102,107,106,101,99,105,110,101,76,116,100,113,100,106,98,102,102,109,105,99,94,107,111,108,117,99,124,104,100,112,114,113,109,108,106,117,103,112,104,106,109,108,108,106,99,100,102,72,104,111,99,114,111,120,108,98,124,120,113,113,94,109,109,109,110,126,106,109,122,100,106,127,131,103,121,125,125,117,96,104,108,110,104,110,86,108,113,109,101,108,92,99,108,108,94,104,96,99,95,94,104,114,104,95,91,103,104,100,106,107,106,108,91,118,100,119,102,100,107,88,107,95,96,110,111,107,97,99,96,100,133,102,110,104,108,111,113,102,102,100,111,102,103,104,94,104,116,109,98,98,95,92,101,107,104,99,111,109,86,98,94,116,100,110,90,104,112,103,101,101,108,107,103,92,113,114,116,119,96,113,96,102,101,106,100,124,95,113,91,100,100,117,102,107,101,114,104,111,104,106,107,98,113,102,113,105,94,84,106,102,108,111,93,101,104,118,98,104,104,95,109,99,106,109,117,103,105,100,106,109,109,98,103,101,98,115,103,100,104,110,109,87,115,94,100,124,102,100,96,75,108,105,111,113,114,104,115,104,100,117,104,107,96,93,107,101,101,106,116,110,105,105,105,99,95,102,124,111,86,103,99,98,96,106,91,103,101,105,108,112,106,112,117,104,115,108,88,109,116,109,101,101,104,100,106,98,101,99,95,107,95,101,103,120,99,103,113,96,109,113,115,93,102,110,102,111,112,99,113,100,107,102,106,96,103,103,95,102,99,106,93,109,111,108,106,107,120,101,109,104,103,69,112,105,107,114,99,102,108,102,102,112,94,103,101,96,104,104,103,110,92,103,106,136,94,101,106,109,112,91,99,98,101,92,107,105,100,112,97,109,109,110,103,102,105,114,93,92,118,111,128,105,105,107,109,102,92,95,99,110,100,92,115,113,105,97,97,105,113,98,98,84,97,99,99,105,98,101,122,103,114,122,112,109,112,104,116,121,106,94,98,102,111,92,118,107,108,85,91,96,96,105,93,119,112,109,100,103,125,98,113,114,102,102,119,104,105,112,94,101,108,97,99,102,93,95,84,115,99,105,105,105,108,108,113,111,98,106,116,104,108,92,98,102,106,96,103,104,103,107,108,108,100,107,113,97,106,104,102,106,101,104,100,74,106,104,100,99,94,96,105,99,102,104,107,109,98,95,107,104,96,103,101,105,106,93,102,99,90,100,103,96,94,98,96,94,99,113,116,99,109,114,98,106,108,109,112,108,105,104,103,104,109,128,106,103,96,104,107,116,117,102,90,109,88,111,113,110,110,102,116,92,112,105,103,99,88,113,98,114,112,89,107,108,110,100,102,105,111,107,115,100,106,102,95,103,97,93,112,109,105,96,113,104,107,102,104,95,97,110,111,103,109,112,110,103,108,111,106,99,106,103,104,113,112,97,108,103,108,125,106,94,106,98,102,109,111,108,109,92,90,104,106,106,105,104,100,112,109,112,105,107,102,107,100,100,112,103,108,106,100,115,117,112,110,104,99,106,101,100,105,100,113,118,114,104,100,97,93,100,76,116,110,100,111,100,98,98,111,108,109,105,99,107,96,108,87,92,103,113,102,109,96,106,114,124,94,111,104,106,118,111,100,108,106,104,115,101,97,98,111,100,104,110,103,110,100,110,98,128,88,120,101,98,99,108,108,107,106,109,106,108,101,103,108,100,105,107,107,102,107,108,108,103,101,113,112,99,107,109,98,108,106,104,103,106,91,102,104,92,100,109,115,94,114,110,99,100,109,104,96,102,83,96,100,104,101,103,98,98,96,109,92,97,110,106,98,102,113,102,96,99,102,100,99,119,104,109,98,105,104,90,103,112,95,116,106,101,102,103,117,99,108,99,101,117,111,99,88,95,106,108,103,100,107,113,99,99,97,96,113,101,110,99,110,115,94,105,100,102,102,103,102,104,103,105,107,112,100,115,110,106,105,102,98,126,102,100,103,102,104,113,104,92,108,93,95,107,109,105,111,108,109,87,112,103,104,98,108,85,91,99,91,109,106,109,116,102,116,113,95,108,99,103,102,108,118,92,101,116,102,98,99,101,98,99,116,107,102,112,117,124,102,106,117,103,112,115,106,106,100,100,99,107,103,97,99,103,104,107,106,99,98,102,102,104,109,101,96,114,100,102,97,101,105,104,102,111,97,105,95,102,132,109,108,104,109,108,100,128,75,97,111,100,108,116,113,94,112,99,97,108,93,104,108,100,95,106,97,124,96,101,100,100,103,96,102,102,113,108,100,98,115,101,97,105,104,100,107,112,98,106,97,105,101,104,111,112,100,98,108,96,94,103,92,113,103,108,94,117,104,115,100,101,95,111,101,101,109,95,112,97,93,106,94,93,102,98,107,80,115,108,104,107,104,107,94,101,108,111,109,101,120,106,113,95,104,97,105,100,105,101,84,108,113,105,116,105,110,102,89,112,99,99,95,112,115,93,102,91,100,103,108,106,105,103,96,99,112,96,110,110,110,97,96,105,105,109,98,99,106,89,104,81,107,138,107,107,100,92,115,101,110,107,96,110,114,109,103,94,87,88,111,125,105,104,100,106,90,106,116,100,111,91,104,101,119,100,100,100,106,99,111,99,101,97,88,95,102,106,98,103,97,103,102,113,117,87,101,82,89,101,99,106,103, +618.92957,91,93,97,102,108,101,117,102,107,98,107,108,106,101,94,116,102,104,110,104,115,96,91,98,106,103,105,115,108,90,105,106,94,95,109,119,110,108,99,116,97,108,106,101,103,104,93,111,107,92,100,112,101,101,103,94,102,85,108,107,96,104,107,102,70,110,93,82,105,121,107,107,109,98,105,98,106,104,115,99,104,86,103,100,94,101,97,105,99,91,101,99,102,95,110,92,106,94,100,100,97,105,102,107,99,114,102,110,95,92,100,97,97,103,101,97,109,118,105,93,95,102,111,114,101,104,67,89,100,98,109,108,110,102,92,104,104,108,98,102,100,100,94,94,107,106,79,103,93,121,110,83,101,101,111,122,103,98,95,99,92,104,111,107,107,105,103,97,111,95,97,103,104,81,101,112,101,104,122,91,108,105,115,91,87,100,97,99,112,95,102,102,102,112,83,110,107,102,104,123,91,112,116,107,95,98,122,108,115,104,99,105,97,99,103,109,91,100,105,97,103,108,88,87,99,112,102,117,100,99,101,105,104,100,90,97,130,104,101,94,107,95,116,96,105,103,107,71,106,101,105,103,96,134,102,112,97,111,109,101,105,100,101,103,105,104,102,91,105,97,107,101,104,99,106,87,97,114,102,114,107,102,104,106,106,101,101,95,113,105,117,98,106,109,108,97,109,95,104,113,110,102,97,118,94,114,103,111,101,95,108,101,111,107,92,103,108,103,103,106,102,105,100,133,115,110,108,99,106,106,111,90,98,106,102,102,110,91,110,91,99,106,101,109,106,111,99,109,102,105,102,104,106,98,91,113,105,109,98,100,103,105,104,97,97,97,103,99,94,134,104,106,112,97,92,89,109,88,102,100,107,117,106,103,99,107,87,103,96,100,107,76,96,97,92,112,102,101,98,98,112,80,106,100,102,113,99,115,107,94,93,80,95,121,110,95,104,112,101,90,105,102,101,103,102,95,103,100,99,104,100,99,100,102,101,102,84,101,97,101,102,108,114,107,104,113,105,109,100,116,109,100,108,110,102,112,99,90,110,95,108,103,104,103,105,99,106,119,101,106,103,110,102,105,107,107,110,98,112,98,99,114,110,99,109,104,105,96,104,93,97,107,111,104,117,70,102,115,101,102,111,99,108,107,108,109,109,108,109,103,108,94,102,110,102,117,114,102,118,99,117,118,112,98,99,115,116,119,100,101,103,106,110,96,96,108,106,103,117,109,103,109,88,93,116,102,105,109,121,108,97,103,104,100,109,95,111,104,107,109,119,99,106,107,94,112,113,107,102,115,100,99,102,109,98,111,114,98,104,109,108,104,109,90,118,112,109,106,86,96,106,111,100,119,108,94,100,91,107,115,102,104,113,94,103,102,98,106,110,113,88,112,102,102,116,125,100,100,95,102,102,97,112,94,110,110,84,93,106,106,109,107,115,120,100,101,100,95,112,103,105,107,103,92,108,113,114,91,102,113,96,105,106,93,102,101,98,104,96,103,106,109,89,106,112,111,106,97,100,108,109,105,107,108,104,101,104,124,107,103,100,108,103,90,95,108,96,107,95,105,91,117,103,100,99,104,109,100,123,96,95,120,114,106,105,107,112,99,104,105,104,100,108,90,99,101,99,99,103,103,102,101,99,115,105,106,98,99,96,97,100,107,89,104,117,107,113,100,117,95,118,96,104,99,113,109,107,112,104,106,106,100,113,105,103,114,112,93,125,100,120,92,96,104,100,111,95,98,87,109,107,102,101,92,99,98,112,111,109,94,102,102,99,108,89,113,104,98,101,96,103,102,99,110,105,106,107,104,105,97,101,82,100,98,105,112,102,97,109,96,109,111,95,95,113,98,115,93,118,103,97,102,106,101,95,107,107,104,110,91,97,97,106,105,104,114,115,100,106,98,101,94,105,93,92,86,104,106,99,101,111,110,104,89,102,118,97,100,89,97,101,106,101,76,108,96,106,108,112,95,105,109,94,103,99,99,109,97,110,105,109,101,120,110,109,98,117,101,108,109,78,103,94,99,97,107,105,100,109,108,109,112,99,111,107,98,104,100,105,100,117,106,130,98,108,104,101,110,100,120,106,94,70,121,105,109,103,107,94,93,106,99,104,128,89,93,106,99,99,114,102,94,102,94,103,104,103,109,105,93,102,115,105,99,111,104,95,105,110,98,90,113,90,96,97,107,112,110,98,99,129,101,107,95,96,108,86,103,126,121,99,106,110,94,114,101,113,100,114,100,117,91,106,108,94,99,100,114,123,116,105,105,104,103,108,105,109,103,95,98,95,97,105,108,102,104,108,102,102,102,100,114,95,99,105,110,96,93,109,102,109,103,105,103,118,102,94,104,115,100,117,99,121,112,112,121,117,115,120,125,111,103,108,121,112,102,108,104,97,104,105,115,92,109,104,102,99,99,121,97,107,114,109,95,105,109,99,109,108,89,98,110,108,104,99,104,106,94,108,111,98,104,107,98,93,91,107,105,102,113,83,97,100,99,99,116,108,117,112,112,99,106,104,91,106,101,104,101,105,109,110,93,113,107,94,102,107,100,103,99,103,108,108,100,109,106,96,109,95,93,96,105,91,94,96,99,97,99,101,99,106,107,105,107,112,95,101,101,103,99,92,91,107,99,102,111,103,122,104,100,107,107,110,106,123,111,127,112,94,108,113,109,98,92,103,103,113,118,105,99,115,103,104,121,96,102,108,105,110,103,107,103,98,108,114,117,93,110,109,111,99,94,103,99,98,111,102,109,101,102,117,104,104,88,107,96,95,95,99,117,98,102,106,111,113,96,98,111,111,105,105,99,92,106,101,117,104,109,104,102,117,113,110,105,107,93,103,105,103,96,116,99,107,111,110,97,104,100,112,117,109,124,109,119,89,106,120,114,110,106,94,106,124,104,119,103,112,102,100,105,111,104,102,105,101,101,117,98,113,99,105,97,102,109,113,83,94,114,106,108,112,101,103,107,109,117,110,87,102,85,102,76,109,91,123,99,94,105,113,100,103,112,84,110,107,95,109,116,96,86,104,114,119,98,106,99,94,102,115,92,109,104,102,106,97,91,93,120,104,104,104,108,110,104,106,113,101,92,105,104,108,92,101,102,105,101,103,99,104,113,98,103,104,109,103,105,104,107,108,105,109,99,107,110,97,104,109,108,100,100,105,101,104,105,78,100,112,100,102,110,101,106,115,95,112,93,102,101,97,105,98,106,89,91,101,96,110,101,107,102,103,99,100,112,104,115,116,100,95,100,113,96,95,101,92,112,94,115,109,109,100,103,102,104,98,108,104,106,108,94,124,108,113,112,111,113,103,93,95,101,98,113,93,94,104,100,105,100,98,101,91,111,97,104,98,111,97,104,107,95,99,100,107,92,104,103,109,101,105,93,99,96,99,101,95,116,89,102,102,96,110,108,97,101,104,104,97,101,103,99,97,87,101,97,100,107,96,103,109,96,113,96,119,100,98,102,95,107,100,103,100,114,93,105,112,111,93,106,101,98,106,102,99,94,103,100,107,113,103,96,88,103,111,105,109,108,105,99,118,100,103,102,96,107,107,100,107,110,108,104,87,106,110,110,94,95,112,97,100,102,106,113,110,112,111,98,111,107,106,108,108,103,118,103,105,99,106,103,107,102,92,98,93,109,103,101,93,95,103,103,112,94,96,108,93,106,99,104,110,109,112,91,108,107,108,92,104,108,109,98,108,99,101,94,100,101,109,99,98,105,94,112,113,97,98,101,116,106,105,98,127,98,127,104,104,103,107,96,129,110,97,125,92,104,111,107,114,103,99,124,109,84,107,105,111,106,108,100,96,92,100,109,89,87,105,112,127,100,105,112,117,105,95,129,99,109,103,97,100,96,98,108,102,100,103,106,100,97,112,104,111,84,91,94,109,100,103,116,108,108,99,98,119,113,86,112,98,94,100,100,105,103,109,89,99,96,104,110,106,100,113,108,98,127,101,103,93,92,92,98,100,105,106,96,102,94,93,103,99,107,103,103,99,97,100,95,98,104,108,101,103,104,99,97,107,109,96,108,114,108,96,109,104,88,100,128,112,95,100,92,105,112,99,108,102,107,98,106,111,104,106,104,107,109,79,100,115,99,100,108,98,96,116,96,104,111,101,110,100,99,109,104,118,99,94,109,112,98,93,96,101,110,105,105,112,107,106,112,95,102,103,104,100,111,98,102,109,107,106,99,113,107,102,96,101,114,119,124,93,103,75,111,96,108,104,112,96,97,109,91,99,118,97,83,99,99,117,97,109,99,103,91,99,100,95,85,103,102,101,93,116,113,114,111,98,102,103,102,110,104,109,94,107,96,102,106,117,101,104,103,98,110,110,106,116,94,97,98,106,98,99,118,104,89,90,93,101,113,104,97,111,106,105,105,101,107,96,106,113,98,106,108,93,97,102,109,95,90,99,101,112,108,101,116,107,117,105,104,108,102,94,103,101,93,94,98,99,96,96,114,103,99,106,106,96,108,85,108,98,90,110,105,98,98,97,105,112,102,95,110,107,108,95,96,101,98,104,98,110,102,103,116,89,85,98,95,109,104,99,107,112,83,103,103,107,91,99,104,102,101,102,107,105,107,108,99,105,106,107,98,115,104,113,102,98,96,96,112,112,101,99,92,102,106,97,97,95,93,112,111,101,85,108,99,102,103,109,98,92,101,99,117,102,111,71,103,101,102,81,94,110,105,101,98,107,103,88,92,110,109,103,94,96,102,94,98,94,111,102,106,100,100,100,117,101,105,101,88,107,108,105,87,110,107,105,99,100,103,91,102,97,93,100,106,112,102,102,99,101,100,109,106,102,106,112,91,96,110,104,80,100,91,109,103,106,95,95,116,101,97,101,106,106,91,105,97,106,120,106,91, +619.07068,123,107,104,106,98,104,114,107,102,107,89,115,101,94,105,106,100,99,103,101,106,103,96,92,108,116,100,107,102,98,95,106,116,108,96,115,97,115,94,122,109,110,97,94,113,99,94,98,100,102,100,103,98,87,99,113,101,106,113,101,108,113,95,111,111,102,97,109,100,110,109,99,108,100,97,108,81,91,107,95,105,117,97,105,99,95,106,106,92,91,102,105,99,109,94,101,101,99,105,108,97,90,105,106,109,106,109,100,118,105,95,97,101,106,103,102,94,111,114,106,91,102,100,106,100,98,108,87,111,107,101,108,78,107,113,103,109,90,109,92,117,100,93,102,90,105,108,103,102,94,97,109,98,111,92,100,93,98,113,105,94,105,97,110,96,101,105,103,113,102,105,107,95,105,90,107,109,100,97,113,120,111,104,106,100,103,95,94,102,115,101,107,101,104,106,103,115,109,112,111,104,88,101,97,90,118,104,100,100,113,98,108,111,103,97,109,117,111,106,102,97,108,103,90,96,102,109,107,97,98,100,101,97,102,95,121,105,105,101,100,107,106,110,107,109,99,109,99,112,120,102,106,90,117,98,84,107,100,99,91,95,114,97,101,90,97,94,99,97,105,98,106,100,102,111,101,100,104,106,95,108,102,94,104,108,97,105,94,97,100,105,105,116,110,95,109,106,103,102,116,101,99,82,110,91,98,100,100,88,106,114,118,104,101,95,94,100,112,101,114,112,111,102,105,113,106,99,98,97,99,112,98,111,84,102,98,106,99,97,101,96,85,105,112,104,96,115,96,95,116,112,99,100,97,80,109,110,104,112,110,106,91,101,111,95,110,109,104,107,114,109,92,100,101,110,103,116,102,107,104,99,94,110,109,98,96,106,117,117,107,116,103,104,99,102,111,102,97,107,99,97,103,97,87,101,87,103,111,103,99,97,100,104,99,102,92,109,102,108,113,93,111,94,94,93,104,109,106,108,107,100,115,96,105,96,112,98,114,103,64,96,106,105,104,111,104,84,98,109,112,100,100,112,113,119,102,97,101,93,112,103,107,110,112,112,114,96,109,110,100,100,111,115,88,111,96,101,104,93,112,97,91,104,102,88,117,111,106,115,105,103,104,116,103,100,111,92,100,106,101,108,97,118,113,102,102,101,92,85,108,106,93,97,114,115,112,110,105,102,88,106,99,83,94,99,98,102,102,126,107,109,98,103,105,98,105,104,102,108,109,103,103,99,108,112,91,103,97,102,108,103,109,105,105,113,100,106,105,106,111,107,95,100,112,106,109,96,101,111,105,98,92,105,108,101,109,109,112,107,105,103,110,102,108,112,92,108,103,99,100,111,114,91,110,91,100,108,108,84,108,104,100,113,100,100,104,103,102,112,106,90,95,109,103,119,100,113,105,111,96,100,108,104,103,102,113,101,105,99,97,100,109,92,112,101,111,95,97,96,113,101,109,109,102,86,79,105,117,109,106,116,114,108,105,110,97,106,113,98,107,110,109,115,103,119,106,94,106,102,104,109,103,96,105,99,103,110,92,109,102,117,96,103,135,109,113,102,94,104,102,98,110,100,100,111,104,107,104,87,113,101,104,105,105,100,96,111,103,104,99,99,101,116,100,107,106,103,106,102,96,111,97,105,114,113,88,106,99,105,117,102,108,94,104,114,110,116,106,112,99,112,98,105,113,103,100,116,108,99,97,103,103,104,101,109,100,107,104,104,96,107,114,105,109,91,113,97,99,109,105,96,99,105,103,99,106,96,103,103,97,104,111,108,100,107,95,107,113,94,106,109,108,89,93,108,101,107,110,104,108,102,109,99,107,98,111,106,114,100,73,118,105,101,95,108,107,91,101,104,111,93,120,102,116,113,100,109,102,109,107,100,121,107,103,97,110,96,103,99,106,108,119,108,98,104,104,91,104,118,98,92,101,88,97,99,112,107,99,98,97,103,76,97,99,98,110,105,118,107,117,108,105,106,109,94,113,96,84,94,96,107,114,97,110,105,104,107,102,107,94,99,108,113,108,109,100,102,99,99,106,105,110,110,99,115,93,100,109,95,104,109,94,104,109,109,90,118,109,113,116,102,101,104,104,105,110,120,112,96,114,110,114,99,113,92,109,101,106,110,93,106,105,102,99,107,103,112,103,86,106,108,92,105,107,106,99,98,109,87,111,108,106,105,101,88,96,101,114,112,103,103,103,101,106,116,105,100,106,106,99,111,100,91,98,95,109,101,101,96,105,99,100,113,105,102,101,107,101,101,102,91,83,101,101,103,103,108,96,103,101,96,109,99,96,108,110,96,105,99,100,110,93,108,116,92,121,105,103,102,103,114,106,100,106,96,101,85,101,114,106,109,126,129,103,112,116,143,97,118,116,106,108,125,111,101,111,106,100,111,103,108,122,105,109,107,102,99,109,108,105,100,114,106,89,105,105,115,100,113,96,102,96,102,92,98,123,103,91,102,103,97,100,103,99,100,111,110,101,103,103,93,98,98,106,104,95,96,106,103,111,110,109,105,106,111,124,97,106,99,98,113,94,108,116,105,107,96,102,107,104,106,109,113,90,109,104,98,100,96,95,99,108,101,111,85,103,100,105,103,109,106,100,91,106,87,109,114,108,98,115,101,106,117,98,102,110,104,99,122,103,104,89,99,98,107,97,98,99,106,103,103,98,99,87,98,106,108,107,103,94,110,103,113,99,103,109,102,102,111,105,101,95,99,113,103,111,104,104,104,108,106,123,100,86,118,104,108,123,91,104,111,104,105,106,94,103,110,110,116,99,89,105,97,113,107,93,112,105,103,111,93,103,105,102,98,109,102,101,103,105,96,109,106,116,99,96,112,94,103,109,106,101,102,112,102,104,125,119,94,97,105,95,95,112,107,101,101,101,107,103,103,107,105,99,102,103,116,102,94,109,99,94,110,101,108,124,110,94,110,100,103,105,95,112,106,96,105,113,91,111,93,111,88,100,119,113,97,106,99,106,109,99,99,104,95,97,97,97,101,111,97,90,106,106,105,112,99,100,102,102,99,114,95,103,116,99,107,98,102,103,102,117,88,109,98,76,98,103,98,117,96,123,108,123,117,101,96,101,97,96,105,115,92,104,96,100,98,104,98,97,105,94,108,104,98,110,100,102,113,92,90,92,104,113,101,102,102,104,109,101,80,98,111,101,112,104,111,109,102,104,98,92,98,97,92,109,96,100,95,98,116,101,94,113,100,109,98,100,107,114,102,107,98,109,103,104,104,98,102,99,101,105,100,108,105,113,108,100,110,98,106,100,101,104,116,107,87,100,103,104,105,120,116,102,110,97,101,93,108,102,100,114,103,83,104,98,96,99,98,104,100,120,103,103,101,94,103,107,105,102,103,103,88,119,100,105,93,108,103,99,91,105,102,98,104,94,105,99,115,104,98,101,96,93,106,103,108,103,104,109,108,95,100,97,118,97,99,109,100,105,104,102,95,108,108,99,102,106,99,107,100,105,87,118,112,116,101,106,102,96,101,103,88,105,112,101,108,103,114,106,108,114,97,103,114,104,102,105,102,90,105,113,109,99,100,92,108,110,107,101,97,107,104,108,106,97,111,94,91,109,93,80,110,98,115,87,107,102,106,103,95,108,112,96,116,80,100,117,106,108,107,109,105,98,90,100,101,102,104,107,104,112,104,105,89,102,84,114,109,94,104,99,106,98,90,102,108,86,114,122,95,106,109,95,111,103,117,101,95,105,100,101,105,101,132,103,111,101,105,99,109,98,102,110,96,103,99,101,107,109,103,90,100,111,103,101,106,117,105,103,110,91,103,107,100,105,96,102,96,118,104,102,104,117,97,104,112,95,99,101,93,90,127,124,99,99,94,106,99,98,109,103,97,103,102,111,100,93,97,105,95,95,102,102,96,100,100,97,100,104,103,100,112,111,107,117,112,101,103,113,101,98,95,100,99,97,99,109,98,95,120,102,101,105,96,103,117,114,109,105,102,102,99,93,107,136,101,98,99,98,105,98,105,109,99,104,108,94,104,106,98,111,98,99,86,110,106,105,112,87,102,107,109,105,95,96,100,107,91,94,99,105,109,114,112,95,91,112,112,110,91,115,104,116,95,103,111,114,108,104,101,116,90,100,101,106,104,113,110,103,117,99,92,101,98,116,98,95,107,102,103,104,95,108,104,108,105,110,120,94,101,99,111,95,106,100,104,103,95,102,110,102,110,95,101,92,109,103,95,94,110,96,98,102,91,90,100,104,102,119,100,113,106,100,83,104,100,95,92,106,110,99,87,106,104,106,99,95,100,98,96,113,100,100,117,112,91,95,81,103,106,96,106,99,83,94,100,106,109,107,96,111,112,111,95,87,115,101,100,88,103,109,114,115,87,103,105,106,102,107,91,87,99,106,101,105,94,98,101,95,104,104,100,75,108,117,103,101,105,104,97,104,106,99,125,92,106,94,95,103,101,103,107,106,107,104,103,110,95,113,102,101,100,112,104,99,92,92,99,105,104,105,105,94,99,128,99,109,97,109,107,106,101,101,97,102,102,97,112,97,121,110,99,96,106,99,96,114,97,98,87,95,101,96,111,108,105,99,105,96,113,107,96,98,94,100,104,112,118,102,114,108,95,103,104,105,100,106,111,87,100,108,100,100,77,103,100,101,107,106,124,105,117,104,113,92,102,96,109,94,116,96,99,104,103,109,97,100,95,109,96,104,98,96,102,95,105,100,122,107,113,114,96,95,104,98,85,102,98,99,112,105,103,105,94,109,114,107,99,101,97,104,112,95,104,105,99,100,98,106,119,96,106,112,117,95,104,94,87,98,106,109,103,106,91,98,93,104,102,99,89,85,120,107,92,109,101,118,97,99,98,109,96,92,99,101,123,97,105,109, +619.21179,109,110,107,85,90,114,106,92,98,97,104,110,96,79,103,98,83,115,96,101,102,102,90,109,102,107,109,106,93,105,114,105,102,105,94,98,116,101,96,104,101,93,96,105,105,113,112,122,96,92,105,100,98,94,105,97,105,97,98,97,95,101,71,98,106,96,98,98,91,97,100,99,96,106,98,109,109,97,95,99,89,101,128,101,112,94,96,99,99,96,104,88,105,86,112,105,96,95,93,103,99,96,103,100,107,103,93,108,98,101,104,107,81,112,91,99,103,107,104,95,94,107,113,91,101,96,99,87,123,98,102,105,93,91,107,110,104,101,96,108,110,111,112,94,92,100,97,107,106,110,107,99,113,93,103,102,112,99,98,99,103,102,103,109,105,99,104,96,93,98,90,105,105,103,104,96,101,109,98,108,112,109,95,101,97,102,95,91,108,98,89,107,97,106,98,110,104,116,101,109,106,103,100,95,105,108,108,118,98,105,82,107,105,105,90,95,97,109,102,107,92,108,90,98,92,116,98,112,98,102,89,116,82,103,112,98,99,99,107,104,104,93,112,112,95,90,102,101,99,102,85,90,102,102,102,110,97,99,108,106,101,98,103,97,93,94,95,104,110,92,111,94,113,110,110,92,100,103,90,103,109,116,94,101,98,104,95,96,119,98,101,95,100,92,79,123,94,110,99,98,98,95,113,112,97,101,105,95,105,120,96,120,103,94,102,98,95,79,102,100,94,106,110,103,104,91,97,98,116,99,95,90,109,93,98,98,100,104,120,94,112,100,100,91,97,105,91,92,115,97,95,111,109,105,113,119,101,107,101,108,96,91,111,97,122,95,111,107,101,122,103,97,94,107,109,95,115,101,90,114,103,106,89,108,93,93,92,101,97,96,104,109,113,105,98,102,89,94,103,103,97,106,114,97,100,96,96,104,99,117,96,106,107,105,96,83,112,105,114,107,102,99,99,95,87,97,99,87,94,113,99,103,91,100,89,79,92,98,90,90,105,98,98,106,101,94,95,98,95,93,108,100,97,102,96,113,105,101,107,95,105,109,98,113,104,107,103,96,105,97,105,98,101,107,109,91,105,110,101,109,102,110,92,121,97,99,127,102,86,109,102,108,101,109,113,107,90,107,104,103,105,79,100,101,108,116,99,100,101,104,112,98,117,98,77,91,105,99,86,99,101,100,106,97,110,103,108,108,112,105,120,114,117,95,119,94,111,95,106,96,90,96,99,110,114,83,112,105,112,104,117,88,100,108,115,106,105,93,114,89,108,95,106,107,98,101,106,104,102,96,96,88,92,99,95,97,112,102,109,99,103,107,104,110,111,103,104,99,109,105,104,108,113,100,105,113,105,103,113,105,103,102,105,101,89,111,92,78,108,103,96,99,94,113,117,94,103,98,103,107,98,105,100,100,101,89,99,110,107,109,105,92,105,103,96,101,96,71,90,114,107,100,98,95,97,99,91,100,112,98,101,94,96,102,106,108,109,103,105,115,115,102,102,111,100,96,100,97,105,103,110,98,104,97,98,113,102,99,102,118,109,75,87,98,96,101,71,94,96,118,88,78,94,108,115,98,111,96,97,91,105,100,112,101,103,98,105,109,102,103,107,106,87,95,114,102,101,102,105,105,98,92,92,109,102,106,102,108,104,107,76,100,102,113,97,111,99,101,95,101,123,92,112,103,104,107,97,99,104,114,115,93,100,108,103,103,95,114,103,105,92,101,116,108,110,95,70,102,88,63,112,101,108,91,101,103,96,99,99,99,107,99,113,107,107,109,104,104,133,113,87,106,104,92,115,102,86,100,110,98,92,91,103,108,107,107,100,105,92,94,94,101,94,100,98,99,108,107,102,100,99,100,98,113,100,104,103,90,101,114,97,100,108,114,95,107,109,98,106,90,97,111,107,90,95,99,91,83,94,109,100,93,96,105,91,105,96,99,100,117,94,81,98,106,109,79,103,102,113,97,105,108,104,102,110,98,121,119,105,79,105,99,101,92,114,92,92,106,95,106,96,101,96,99,90,94,97,116,113,99,107,112,100,117,91,100,92,94,93,97,93,106,98,105,103,109,94,90,99,103,110,105,113,95,97,112,103,101,107,106,113,103,129,104,104,100,95,103,108,105,106,111,98,105,92,101,102,80,96,100,95,99,110,126,98,101,98,99,86,105,98,99,103,101,118,95,89,96,76,100,83,109,96,105,112,104,97,97,104,100,94,92,103,104,103,100,97,95,103,87,107,104,108,98,107,110,86,96,102,103,101,105,98,99,106,97,103,98,92,113,103,90,77,113,101,88,105,106,99,104,90,106,105,90,100,103,109,97,109,103,101,101,98,99,119,107,113,113,121,96,117,128,103,119,113,127,110,124,112,114,118,120,120,114,118,106,108,105,101,104,100,112,120,113,111,85,98,115,107,96,84,104,101,117,94,97,101,109,103,94,104,108,111,112,103,95,95,113,102,93,100,96,104,105,99,110,97,103,124,102,102,105,110,103,109,105,97,107,92,113,105,78,102,85,106,97,102,94,105,104,103,116,108,87,108,104,101,116,108,102,120,100,104,92,103,99,107,102,107,93,115,106,112,116,89,101,97,107,112,99,103,102,100,104,103,112,111,111,118,104,119,98,105,97,102,103,94,107,104,96,113,95,100,107,97,98,93,101,111,117,105,91,99,113,115,102,123,121,103,107,105,104,104,98,101,105,110,106,100,98,106,103,113,112,117,98,118,104,113,87,104,105,99,110,113,98,112,106,94,87,107,95,100,98,113,97,100,92,113,117,99,106,101,120,95,106,102,103,111,103,107,102,114,86,120,107,117,99,103,106,94,107,109,112,84,112,103,120,101,100,106,101,105,108,108,97,117,111,104,105,104,109,110,110,107,106,99,101,104,107,105,103,106,105,100,104,104,118,90,97,108,104,108,94,108,100,104,97,121,107,113,112,111,110,106,95,108,117,106,95,104,109,95,97,106,100,106,103,115,102,113,113,109,106,113,106,108,100,110,104,82,104,109,111,117,109,98,107,104,109,102,106,113,103,112,102,105,116,114,104,106,102,100,99,97,109,116,89,93,99,109,110,111,94,106,97,107,98,106,103,104,111,103,132,112,114,110,99,102,98,101,94,108,113,104,107,96,106,104,105,115,102,109,107,105,100,101,99,105,112,104,106,108,108,104,104,102,113,112,97,109,101,106,113,103,105,108,112,95,103,103,90,104,101,93,108,104,97,111,106,100,99,104,110,105,108,99,113,114,113,98,114,98,124,96,90,85,101,115,96,96,102,99,94,104,100,101,106,105,93,112,102,102,113,111,117,115,95,96,97,101,113,106,96,110,109,102,99,114,113,107,108,103,107,104,104,108,100,101,100,96,106,104,106,111,95,103,100,102,106,102,106,113,104,97,102,108,96,98,99,111,101,110,112,102,107,99,91,100,98,107,109,97,100,103,106,125,111,99,103,99,95,113,99,107,98,109,109,113,101,110,116,107,109,102,110,108,100,97,101,105,103,113,100,113,108,118,110,106,118,89,102,102,108,113,115,94,108,107,92,112,104,101,107,102,107,102,115,109,90,96,95,99,112,106,102,108,106,107,104,113,101,113,104,113,103,109,109,112,101,123,105,103,112,99,106,110,104,95,108,91,123,91,101,112,109,122,102,108,107,103,113,97,102,103,101,106,86,102,107,95,93,91,97,100,95,116,106,101,97,105,105,112,89,103,95,103,104,98,118,82,98,114,104,104,109,101,110,100,108,98,102,105,96,117,96,114,115,115,110,107,106,97,99,103,95,108,116,101,96,106,99,92,108,99,112,109,109,87,114,94,106,84,91,107,105,101,96,105,110,116,103,99,112,103,100,108,106,112,107,111,109,106,97,98,114,113,101,113,113,99,102,100,95,105,102,133,102,104,101,109,88,123,104,96,112,105,105,94,104,102,103,95,117,105,105,111,102,102,109,112,109,96,114,103,102,101,104,99,108,107,102,92,106,115,100,97,119,107,106,113,97,105,94,100,105,108,106,109,94,92,102,93,108,107,107,102,102,96,98,107,98,117,104,98,100,96,109,103,96,99,98,106,103,107,129,98,98,109,122,105,104,104,113,82,98,100,96,99,99,112,101,87,102,102,102,102,94,100,110,83,103,113,79,107,83,106,103,110,93,100,108,111,96,101,105,115,113,105,104,110,109,100,106,108,94,103,110,110,113,94,91,113,98,106,117,102,107,103,115,102,101,111,100,104,98,96,105,99,103,113,98,108,102,107,113,103,106,103,107,107,96,108,97,109,103,100,109,109,103,107,100,115,111,111,89,103,106,102,105,112,100,92,102,100,102,101,102,110,96,107,106,112,102,102,108,107,102,88,97,106,86,108,112,105,102,111,89,109,109,102,110,109,103,96,115,95,116,104,95,115,102,104,102,109,113,97,102,95,110,108,101,100,109,107,87,111,103,100,98,93,110,103,114,115,110,102,102,99,108,113,106,103,110,110,109,98,110,107,120,102,105,109,113,79,104,107,113,98,112,99,110,108,107,99,108,98,100,94,77,96,106,105,101,97,106,100,96,101,109,104,88,98,103,104,110,120,105,101,102,93,95,91,92,96,102,107,104,100,106,113,107,102,105,88,99,114,104,116,109,95,97,111,95,108,94,99,91,104,97,106,100,101,91,104,105,102,104,106,105,120,104,121,101,109,98,114,102,104,105,99,101,91,100,103,99,95,99,98,102,110,98,108,119,104,97,102,115,103,92,101,98,103,95,92,99,98,94,96,108,95,108,111,102,113,99,105,110,101,96,101,111,104,100,101,101,97,118,103,98,99,114,115,108,100,115,104,100,87,109,104,116,105,114,101,90,94,92,104,86,118,102,111,96,105,95,103,106,102,90, +619.35284,109,91,118,105,94,107,105,104,99,120,96,103,93,107,115,98,94,100,95,131,102,108,118,113,101,94,113,91,99,113,103,93,110,106,103,112,127,97,86,82,92,93,100,97,92,123,102,106,101,105,98,99,102,103,104,99,99,85,105,71,110,109,104,103,103,110,100,120,110,99,108,112,101,103,76,106,87,96,96,100,115,105,101,103,108,95,110,95,98,120,115,100,100,105,98,104,113,112,100,126,111,106,95,98,92,103,99,107,95,91,104,107,112,106,100,119,103,97,98,103,100,105,122,123,98,114,102,112,113,112,108,110,101,109,99,111,100,91,100,107,111,106,77,110,90,104,102,96,102,98,107,100,123,101,86,105,112,87,105,108,93,107,115,105,106,100,101,104,107,102,116,92,92,96,109,107,112,110,104,96,108,105,126,109,102,107,112,101,106,109,112,108,104,107,98,96,100,107,99,101,103,90,109,103,95,118,79,103,105,103,102,99,108,112,104,103,120,109,98,85,101,107,104,94,101,106,105,100,92,102,94,113,104,105,115,101,103,103,108,109,108,105,122,108,88,103,108,115,94,110,103,115,98,108,102,91,101,106,95,115,97,122,99,108,117,100,115,103,107,100,101,102,98,86,115,88,105,95,102,124,102,102,122,110,105,112,85,94,91,109,99,99,105,115,96,111,110,100,101,97,92,96,113,127,96,111,110,99,102,109,98,102,110,124,104,106,102,105,108,106,109,128,102,108,112,110,116,102,113,113,110,110,97,99,102,110,110,95,104,101,105,97,112,102,102,90,116,105,108,78,107,104,110,108,106,91,87,94,106,110,106,109,109,97,112,109,113,106,100,118,108,119,109,107,105,100,110,99,104,82,108,110,103,109,103,118,93,97,112,99,103,97,86,105,106,103,106,101,109,112,100,108,93,96,104,95,101,91,92,100,104,95,107,104,102,106,111,117,111,108,109,125,109,117,113,106,92,99,100,115,102,120,118,112,102,107,102,102,101,105,114,106,96,114,93,105,109,102,101,110,107,118,110,116,105,95,96,84,107,106,109,104,98,123,105,101,106,101,109,98,98,100,116,94,109,99,104,103,111,110,88,101,117,99,98,103,116,106,112,65,101,119,114,96,91,112,101,101,99,108,98,111,118,107,106,122,109,105,107,98,111,113,95,106,108,102,109,103,106,102,109,96,107,111,112,113,106,102,114,112,96,94,116,91,109,108,102,105,127,116,100,100,108,99,107,107,112,99,102,109,109,104,113,101,99,105,109,108,98,101,112,105,101,110,110,108,103,109,109,101,110,103,104,114,101,105,104,95,108,104,105,101,102,99,103,105,121,100,105,95,107,117,104,86,109,106,95,111,110,103,110,111,104,94,102,110,101,98,99,97,98,95,113,101,109,110,109,100,100,106,107,115,113,115,107,104,87,96,104,99,94,111,95,102,100,104,108,87,109,100,108,109,101,107,107,112,115,100,109,107,118,102,109,105,106,101,117,104,103,92,109,109,108,109,105,105,102,105,103,94,108,104,99,104,76,112,106,102,108,102,108,98,105,105,105,100,105,106,105,98,110,106,113,103,121,113,100,101,112,101,104,99,96,96,118,109,109,96,109,104,128,120,118,106,96,110,101,106,103,106,99,100,117,109,97,103,110,107,105,108,98,109,105,94,103,93,99,95,113,113,106,94,105,99,95,98,105,102,108,104,100,121,99,103,109,106,113,107,102,105,103,91,120,105,83,111,97,92,89,92,110,112,96,104,96,107,99,108,100,96,103,100,102,106,105,104,100,104,106,107,103,105,120,113,90,136,103,106,105,109,102,105,104,100,95,104,102,109,114,80,102,112,100,107,107,92,103,104,127,99,120,109,110,118,120,109,107,98,109,107,109,97,100,104,107,89,106,103,108,102,82,121,98,118,99,114,109,114,103,95,99,96,97,99,80,95,103,104,106,108,101,97,117,107,99,89,113,110,120,104,106,105,103,117,94,108,98,98,101,94,97,97,103,98,108,109,92,114,104,94,91,98,105,110,108,105,65,103,93,105,107,106,126,108,104,105,93,117,88,110,103,114,107,100,116,99,110,108,95,102,107,99,118,106,104,74,114,105,102,99,99,105,103,105,101,104,99,101,106,104,106,104,110,101,112,85,114,108,106,114,103,110,116,108,102,93,94,120,103,101,97,113,92,104,91,102,95,110,109,99,104,101,109,119,99,96,98,99,98,103,95,131,109,106,101,101,103,111,102,107,105,107,108,114,107,101,111,112,93,107,104,104,128,120,104,109,110,105,108,100,94,112,88,102,106,102,86,100,105,101,118,101,94,95,101,100,99,104,117,100,99,99,123,103,114,96,103,111,118,114,100,126,104,100,103,122,97,116,114,117,110,105,112,105,100,112,106,126,132,111,103,110,100,107,108,93,116,108,118,93,107,107,97,100,108,104,104,102,88,105,106,105,105,106,109,102,90,100,106,113,96,110,105,88,105,101,92,122,100,117,104,105,112,109,106,100,86,105,109,98,111,104,111,98,101,104,111,94,93,102,104,106,99,103,108,97,113,109,109,101,103,123,89,101,98,99,105,99,102,107,100,95,109,109,99,111,106,105,105,97,110,98,106,114,107,93,107,95,125,109,97,102,105,95,106,99,103,101,112,100,83,103,116,106,93,100,106,100,88,100,104,114,108,102,67,102,99,108,115,93,96,97,116,93,97,117,110,84,105,88,85,108,108,100,123,121,105,106,117,95,98,113,122,112,104,98,100,115,91,103,101,103,100,106,109,111,102,107,99,96,95,104,92,105,102,91,103,109,111,108,95,93,108,86,102,98,110,108,108,108,101,109,106,104,97,97,98,109,97,108,110,108,97,112,110,117,101,94,95,99,96,108,99,76,97,111,96,105,101,104,105,100,119,103,95,100,101,99,106,116,108,110,99,101,96,101,106,98,106,94,92,116,93,107,110,91,108,113,106,113,95,112,106,94,106,106,99,103,112,114,108,104,95,106,111,103,100,107,107,105,97,106,106,109,124,98,103,83,99,99,88,95,112,103,108,103,105,99,98,100,98,108,104,119,95,92,110,88,101,120,102,101,106,105,91,100,94,96,92,101,108,98,109,106,106,98,102,107,83,119,108,90,102,110,102,104,105,110,94,105,108,97,87,90,93,103,110,90,98,116,105,87,98,104,91,98,105,101,98,99,106,109,101,99,108,96,105,102,110,118,104,100,98,96,105,110,98,90,112,100,99,96,98,112,115,99,107,109,101,105,100,105,110,99,100,109,105,109,96,97,102,99,106,105,89,104,115,105,105,95,101,108,107,99,102,99,96,99,102,105,98,100,112,98,102,102,99,104,101,121,102,104,100,108,93,121,101,101,97,99,96,96,108,102,102,123,104,96,104,100,96,97,102,99,95,102,111,95,105,99,113,100,118,107,106,102,111,109,99,112,107,103,113,111,96,96,100,98,72,109,102,94,103,90,94,107,82,107,108,108,110,108,92,100,114,103,119,122,99,102,100,101,108,111,91,86,99,105,99,106,107,107,106,94,104,109,90,92,102,109,104,110,108,100,118,117,99,83,101,97,103,93,101,103,98,104,116,108,112,104,95,100,103,102,120,99,100,98,99,105,103,103,103,102,110,113,105,98,104,100,101,108,107,99,97,94,104,106,101,69,107,109,99,105,83,109,108,89,103,105,106,100,106,102,101,103,98,101,95,101,110,92,105,103,112,96,97,100,99,94,106,100,100,108,106,107,109,107,97,95,102,108,102,107,91,104,107,100,100,112,85,116,106,117,111,107,95,101,105,96,117,91,101,105,111,104,104,93,109,118,98,114,98,91,95,106,98,84,104,104,99,113,106,103,104,95,94,102,111,105,100,103,112,105,106,102,118,99,122,97,92,99,106,102,98,91,109,88,106,102,116,94,96,94,97,116,102,103,94,104,108,105,85,110,115,100,97,112,106,108,118,109,108,99,101,109,101,100,108,103,102,98,101,106,88,91,101,106,107,109,107,90,101,100,107,95,115,102,109,98,112,101,98,99,101,104,113,103,72,102,92,100,105,108,107,105,98,105,99,109,112,96,100,91,96,118,107,106,95,106,115,97,95,87,99,101,97,100,91,106,104,107,102,110,115,103,95,98,102,112,116,93,100,105,99,96,106,104,109,103,97,101,99,102,106,99,113,99,96,102,93,108,119,99,110,106,99,100,87,109,96,99,93,104,115,98,116,111,95,97,95,98,108,98,103,98,101,103,105,95,94,109,117,98,95,95,109,85,101,94,104,115,106,104,99,110,85,131,98,95,98,113,105,107,116,103,111,99,98,101,103,97,107,89,99,94,102,99,89,108,98,94,84,94,91,99,94,92,98,103,108,113,104,102,106,100,109,102,95,108,93,99,104,118,115,82,100,117,93,107,103,106,103,98,95,101,100,120,97,111,112,102,105,107,98,110,101,108,96,104,96,93,116,98,109,109,104,107,107,108,113,108,110,103,110,104,105,113,107,100,95,109,105,110,104,94,96,112,103,100,105,103,107,112,112,87,109,111,111,115,125,117,111,106,110,112,98,104,97,97,95,91,97,104,109,95,97,89,124,94,94,105,101,94,112,95,103,99,103,103,100,98,108,101,99,101,106,98,83,100,97,83,102,90,98,108,106,100,98,87,104,109,101,102,117,103,109,106,97,105,104,106,111,102,100,103,88,101,100,105,102,98,99,94,103,92,112,102,104,101,101,92,113,103,103,91,106,96,110,108,99,97,92,100,105,101,100,96,100,101,96,102,110,110,114,82,92,91,102,90,95,91,95,95,97,100,103,102,92,90,96,116,89,107,88,105,88,91,121,101,100,98,94,109,101,120,100,93,96,88,106,94,94,97,115,100,99,107,96,91, +619.49396,95,107,99,110,114,95,110,100,98,104,101,105,98,104,103,93,100,115,104,107,103,99,102,96,102,102,106,97,94,109,103,105,119,101,101,90,91,95,98,104,119,100,101,95,91,122,101,97,101,111,105,109,102,112,100,96,108,111,112,111,105,95,90,112,107,96,106,112,87,97,101,108,101,101,91,103,96,108,96,102,109,107,88,106,94,102,92,126,109,105,98,96,94,108,92,103,112,102,94,95,105,97,99,102,107,107,95,121,96,108,90,105,90,66,105,107,99,94,108,129,91,95,105,114,105,103,126,99,110,113,107,95,99,105,101,100,101,98,105,97,89,107,95,98,93,93,98,104,99,93,91,106,115,93,108,115,114,102,113,96,98,98,109,100,108,124,109,92,109,100,109,103,100,79,109,92,105,103,103,96,107,99,109,108,107,101,104,88,120,104,96,98,94,99,80,99,100,104,104,79,97,110,107,106,101,112,100,98,108,105,91,115,103,100,114,95,94,117,99,112,105,115,105,95,105,71,106,95,98,97,100,102,109,108,113,97,99,109,102,105,112,106,114,103,100,90,93,99,106,108,97,103,101,108,109,91,115,100,88,108,89,102,98,90,101,105,105,116,118,95,103,103,111,95,108,109,100,110,113,90,112,111,112,92,110,102,95,96,108,91,101,115,103,97,98,101,106,95,111,117,102,91,100,107,98,100,103,90,104,103,104,100,138,99,87,119,97,98,113,93,109,97,94,99,90,102,114,103,101,109,75,102,86,102,107,106,99,110,96,110,101,96,121,102,111,101,110,109,110,112,102,103,109,108,105,98,108,98,87,108,103,100,107,104,96,107,94,106,99,100,99,105,100,105,100,102,104,105,102,106,111,102,104,98,116,91,99,98,98,97,118,106,100,107,106,103,101,106,92,119,106,100,104,97,101,105,120,95,94,95,97,109,101,103,109,98,109,95,99,105,101,103,107,90,110,98,109,95,93,103,98,103,92,110,93,94,102,108,94,99,115,115,100,100,100,98,95,92,110,109,113,96,108,111,103,100,107,95,106,103,109,98,109,95,112,95,105,107,109,112,98,98,106,91,100,94,110,99,96,109,99,87,111,96,102,100,95,87,100,101,106,92,95,98,94,100,101,102,102,102,109,116,117,107,103,112,90,93,98,106,105,102,107,115,97,106,104,106,109,107,106,112,94,98,106,115,111,95,104,115,95,105,113,112,100,114,99,104,92,99,95,102,106,96,113,105,71,92,103,100,103,115,114,100,114,99,109,103,102,101,96,96,99,106,108,118,107,102,106,99,98,100,102,99,110,110,103,103,108,99,96,110,91,88,101,98,111,106,102,102,101,103,109,101,105,105,102,105,115,89,102,106,101,96,106,102,99,95,106,100,96,109,101,84,103,98,103,94,102,108,104,98,104,109,103,99,118,98,117,111,85,107,97,106,100,108,102,108,107,108,120,109,87,99,99,104,103,100,106,107,103,103,101,116,111,96,97,111,95,116,104,105,95,95,105,102,100,109,104,103,108,118,87,106,100,107,102,92,102,99,111,112,114,80,111,95,81,108,101,94,106,95,98,104,102,95,99,109,87,87,116,111,104,117,99,103,112,90,92,107,101,112,100,103,101,94,101,98,100,103,105,98,110,117,84,96,99,100,93,115,100,104,78,104,98,105,103,120,97,96,108,98,106,90,100,97,98,104,93,103,107,106,97,109,103,110,96,104,101,102,97,99,82,92,99,112,107,118,106,101,102,99,113,96,94,112,106,95,109,110,88,99,105,101,80,103,102,113,98,114,96,95,110,110,104,104,111,88,105,91,108,110,101,95,101,110,96,113,99,92,105,107,93,92,114,104,100,109,100,109,98,116,99,96,92,108,118,110,104,119,99,104,112,94,98,108,94,109,105,99,101,119,102,98,99,104,104,98,95,98,95,94,110,102,96,103,105,98,102,103,102,106,104,106,110,101,105,104,105,99,111,112,119,104,99,105,95,101,110,107,100,107,101,102,106,101,96,104,106,101,103,101,98,87,102,99,98,107,110,107,106,113,108,112,104,93,110,104,93,98,112,100,106,93,103,107,108,89,113,99,101,103,101,105,104,106,118,94,116,92,110,101,117,102,98,103,96,96,96,119,110,99,104,102,112,92,110,93,105,72,108,100,102,99,102,109,99,106,102,108,106,98,92,100,115,101,101,104,109,105,106,112,92,116,103,96,98,102,100,102,96,84,90,96,101,99,102,96,96,105,94,107,106,102,104,101,102,117,98,111,97,100,101,102,107,99,112,103,101,112,104,116,91,110,106,92,109,99,102,111,107,117,109,93,92,89,103,108,105,102,107,106,111,106,104,104,107,104,118,105,95,105,108,117,122,113,118,100,106,113,116,117,107,108,102,109,74,98,102,87,110,97,106,108,104,107,108,105,105,95,95,117,89,79,97,106,98,110,101,93,101,101,94,113,106,109,109,108,100,110,111,104,106,109,91,95,103,104,103,103,107,102,111,99,104,98,108,110,97,102,99,111,117,98,96,83,101,94,90,95,111,103,96,107,99,105,108,95,103,98,96,106,103,101,103,115,108,108,93,113,102,100,98,120,110,93,98,102,105,103,110,97,108,108,105,102,107,116,102,109,108,102,112,93,112,112,106,99,101,94,103,115,116,108,104,95,109,107,106,102,110,100,97,106,95,115,110,101,117,111,98,107,100,100,99,99,109,99,111,107,99,109,122,113,96,121,106,104,99,115,113,114,102,103,106,112,110,106,109,106,106,108,96,115,110,121,109,106,113,105,116,106,99,114,103,104,114,104,104,110,103,106,100,116,102,120,102,114,109,112,108,117,103,112,107,99,104,115,98,112,105,95,101,110,109,107,94,107,113,104,114,110,104,121,117,109,98,109,102,104,104,107,113,114,99,103,111,116,106,94,89,112,106,108,106,113,112,108,100,107,95,102,96,101,109,107,94,117,106,107,111,102,112,110,97,108,100,110,114,112,108,131,95,115,108,108,106,105,103,103,113,105,102,113,98,100,105,102,96,99,99,105,111,100,105,103,108,111,104,107,109,107,99,104,103,119,113,107,113,105,105,112,108,110,109,110,111,100,110,111,103,88,109,99,113,97,112,95,105,100,102,98,102,98,118,100,113,103,90,105,81,102,107,102,114,107,99,91,109,108,106,66,94,105,122,100,102,105,97,100,106,110,111,104,103,92,111,81,111,107,83,102,94,104,111,95,108,107,102,94,112,105,102,114,105,108,96,104,82,115,118,104,104,105,106,111,92,116,106,100,96,107,114,105,106,102,107,103,112,98,102,103,95,88,115,112,103,103,102,92,95,110,105,103,95,102,111,107,113,101,94,110,106,79,106,105,96,94,105,103,109,111,96,106,103,105,96,98,114,104,100,94,107,108,119,104,110,99,105,105,100,108,107,107,107,100,98,110,100,95,99,106,99,111,108,92,101,110,93,112,110,109,105,91,107,108,105,106,109,110,109,110,101,111,113,110,108,109,96,91,93,105,98,118,106,98,113,107,94,114,106,109,103,112,115,113,107,96,102,114,112,105,116,102,102,112,93,113,107,100,96,102,102,112,103,107,105,118,106,99,103,96,103,100,104,100,109,112,104,97,105,107,100,100,98,103,99,108,118,102,116,106,106,93,106,100,112,104,101,102,106,110,100,113,96,119,100,100,99,100,109,92,101,114,106,93,112,104,106,119,104,96,113,104,120,91,100,98,105,105,108,99,100,88,109,102,103,107,99,122,102,108,110,95,105,121,99,104,98,104,95,107,120,116,107,99,104,109,120,85,112,103,121,101,102,104,103,103,107,109,105,111,100,117,110,103,109,109,102,109,111,107,109,112,102,110,110,108,107,106,100,94,106,92,114,112,104,104,104,102,98,104,116,104,100,113,112,106,96,101,106,100,116,108,103,99,92,104,108,106,102,110,120,106,104,111,90,106,104,95,98,92,92,106,121,99,102,97,88,114,100,96,106,100,114,96,106,109,101,83,101,108,112,101,107,99,106,95,104,99,109,113,104,110,100,100,106,109,113,102,112,121,110,96,103,107,116,109,100,103,100,113,102,114,107,104,100,103,94,106,109,102,112,97,101,100,99,98,105,99,97,96,103,128,99,107,95,107,105,108,122,96,101,100,106,103,102,98,110,97,108,109,108,105,107,100,99,110,119,113,121,91,104,105,122,103,86,105,138,107,110,117,115,109,116,99,109,109,111,105,105,100,112,101,103,106,101,94,118,97,99,111,109,112,102,109,116,105,95,106,97,97,125,104,103,110,115,105,96,117,108,109,109,109,115,95,109,130,101,100,107,104,112,107,108,94,123,105,106,99,91,88,112,135,102,106,94,108,103,114,102,110,104,110,107,71,115,96,106,101,107,96,109,106,96,106,104,104,99,110,113,111,104,110,105,103,98,110,98,99,106,99,98,106,100,102,105,100,110,109,114,96,91,104,109,109,120,101,94,125,120,111,102,112,98,108,103,114,102,94,103,91,109,102,108,110,115,112,114,98,113,105,95,116,100,96,100,105,99,114,101,100,114,98,121,102,102,102,98,104,104,99,120,111,98,87,116,113,103,107,98,109,93,97,105,106,107,98,107,112,105,100,112,103,112,100,113,108,98,97,103,91,106,107,117,111,116,104,107,88,99,101,105,103,92,114,79,103,96,99,122,107,111,110,106,99,111,99,94,113,107,102,88,97,112,109,105,98,93,98,109,101,111,105,94,106,103,117,111,92,93,109,106,107,94,106,107,100,102,101,106,96,105,97,109,95,98,92,100,102,105,102,104,106,89,117,108,114,108,103,102,102,99,117,102,112,102,112,113,102,103,97,103,91,96,111,89,116,100,64,105,99,103,104,103,92,112,104,112,118, +619.63507,104,110,102,107,106,86,109,105,102,95,100,107,96,100,92,108,96,105,114,107,102,121,100,111,100,108,104,100,105,98,110,95,110,93,112,94,76,103,97,104,98,105,99,103,115,109,96,105,82,110,111,98,95,117,99,98,100,103,99,106,112,114,97,106,95,123,100,107,102,102,105,103,102,104,105,106,101,111,135,96,105,99,103,96,91,114,99,122,117,105,98,87,103,104,105,97,106,113,91,100,96,116,94,103,109,117,96,95,97,102,107,93,115,109,103,103,100,97,97,73,113,109,103,113,109,113,114,89,112,106,92,102,108,96,101,112,100,100,105,115,110,110,92,105,111,105,107,111,94,103,104,91,97,90,109,115,98,100,106,113,94,100,103,118,92,101,105,113,101,111,95,106,91,98,93,105,95,96,107,103,106,107,109,109,111,96,91,92,112,105,100,93,99,101,101,97,102,97,112,111,105,100,92,112,107,100,99,105,85,96,110,76,94,103,96,101,99,97,96,101,108,101,113,108,94,103,97,116,113,88,108,101,94,118,111,103,97,99,103,101,96,104,102,107,109,104,100,102,75,118,100,96,96,106,100,106,92,121,101,106,111,105,107,99,101,103,103,109,113,85,103,107,95,103,97,88,114,103,92,100,99,111,109,104,107,102,103,104,105,103,96,100,103,104,112,105,95,97,117,104,94,98,100,122,92,98,109,107,99,106,100,108,106,110,112,104,117,97,105,104,96,103,105,123,105,100,101,72,94,104,76,92,105,82,98,94,105,107,111,94,112,99,94,103,101,97,102,106,113,107,118,98,108,97,120,110,99,110,101,102,103,103,105,94,105,101,99,110,99,115,115,106,109,104,110,92,95,88,88,112,99,106,107,113,104,93,110,95,107,99,106,97,101,103,97,102,108,101,98,112,103,105,96,106,104,99,91,101,96,108,108,103,114,97,100,106,102,99,102,105,121,94,108,107,103,106,107,117,94,123,91,101,95,102,100,103,103,112,103,110,127,101,94,83,107,96,98,98,100,102,106,118,102,97,103,119,109,108,100,90,101,113,112,119,114,113,91,104,101,104,96,110,101,110,95,102,103,113,113,104,107,115,110,103,98,113,110,106,110,102,102,115,109,94,102,107,115,96,111,95,98,105,100,102,98,104,99,88,103,111,102,108,105,110,105,103,101,107,120,99,99,110,98,114,116,101,99,103,104,90,102,98,101,102,109,104,114,93,107,101,107,101,108,106,110,106,102,97,121,101,102,104,106,94,104,91,107,99,101,100,105,104,101,104,110,100,113,109,102,102,93,95,110,116,98,98,95,105,100,102,94,96,107,107,86,85,109,102,104,94,99,117,115,100,110,106,90,91,105,98,100,89,113,101,112,92,104,99,109,121,108,97,110,98,105,116,113,97,114,99,82,108,105,100,99,109,108,103,102,107,96,103,99,88,96,95,95,101,115,100,101,109,98,98,91,94,99,103,106,101,102,119,98,115,104,99,105,99,109,122,113,104,116,105,101,116,100,90,103,105,112,100,103,102,105,125,105,116,90,100,111,109,105,93,102,104,97,108,106,116,106,95,87,99,105,105,95,115,110,105,118,93,100,104,108,102,99,109,100,119,108,111,103,103,113,105,108,85,91,97,108,116,110,97,99,92,109,113,111,116,121,101,96,104,93,102,106,99,90,100,117,108,109,96,116,108,109,101,109,104,122,100,101,122,87,110,107,94,113,100,104,103,105,106,93,110,83,100,100,90,100,101,108,103,84,94,109,109,96,103,96,97,96,105,107,108,111,109,108,105,105,103,118,110,105,96,112,103,92,102,107,103,103,114,105,101,105,94,114,96,108,83,102,103,118,104,102,103,111,118,103,113,111,116,95,102,119,91,101,110,106,111,93,106,90,110,101,108,99,96,105,116,104,108,88,99,115,97,107,102,112,106,130,99,103,103,111,100,85,113,110,100,99,96,86,106,108,105,113,110,104,99,117,111,108,103,106,113,107,103,103,93,98,111,93,97,96,114,105,102,102,112,101,116,118,103,111,102,104,109,102,100,104,98,103,87,106,99,102,87,101,103,106,109,104,97,100,103,111,102,102,96,108,111,104,105,105,108,94,109,114,90,103,108,94,99,96,102,104,105,109,115,93,109,109,100,104,115,94,96,109,95,110,100,105,112,104,120,104,103,104,107,110,105,121,101,100,95,97,108,100,100,96,100,108,100,115,101,92,103,85,103,97,109,106,109,132,104,111,108,102,106,102,109,95,106,100,104,110,97,113,91,100,99,96,113,97,91,87,101,101,108,102,107,104,102,103,89,114,105,107,94,106,98,109,119,113,99,102,105,119,101,112,109,100,104,109,120,112,117,113,90,102,126,127,107,108,108,113,112,121,130,123,122,114,120,117,114,106,79,106,121,100,100,111,112,94,98,105,102,101,114,102,103,106,110,109,103,101,101,106,104,108,109,108,106,111,107,103,114,119,106,115,100,105,117,96,109,109,116,100,98,103,107,115,91,86,116,97,103,99,125,104,115,101,109,98,112,104,111,105,98,105,96,99,106,107,99,117,107,107,97,106,101,99,121,109,106,112,108,96,102,105,101,110,107,118,111,100,98,113,106,102,101,105,108,101,112,107,110,114,113,104,92,100,120,109,100,118,114,102,97,108,79,87,100,103,114,111,104,109,102,104,99,113,107,109,116,97,108,92,108,111,109,113,113,113,102,112,99,107,102,110,98,109,103,115,106,116,108,96,110,104,111,92,105,105,106,111,103,109,108,111,98,78,108,104,96,113,106,117,122,94,99,107,110,113,102,103,100,106,111,104,97,113,102,113,91,71,95,108,107,92,129,107,109,106,109,100,104,105,103,112,99,106,78,93,104,103,109,101,114,106,115,121,101,87,102,91,112,100,97,98,117,107,102,109,111,102,107,109,101,107,103,104,110,100,108,111,104,109,104,101,116,96,108,106,98,106,99,103,101,106,100,106,94,97,121,110,113,102,102,107,111,104,102,103,106,100,119,99,113,106,118,118,104,102,91,105,115,108,108,117,105,107,86,106,106,105,105,102,106,100,105,94,106,129,106,106,104,130,86,107,96,112,96,109,88,102,75,109,108,113,123,105,83,106,107,107,110,79,94,113,112,112,94,99,103,102,102,108,98,103,100,106,109,123,109,115,111,110,110,102,107,117,102,111,103,99,101,92,93,114,84,108,101,100,114,102,111,104,109,108,102,115,103,109,101,117,91,109,112,106,120,95,110,100,105,100,110,104,113,107,114,105,103,107,103,113,108,108,103,108,91,113,110,104,104,111,91,102,98,108,116,107,107,97,108,108,109,103,106,107,103,100,97,96,92,96,114,107,102,101,116,109,110,120,111,84,113,100,102,93,112,107,102,105,109,114,105,101,102,107,111,93,103,99,94,99,100,98,113,105,101,106,108,102,115,91,115,105,105,113,107,103,106,116,97,110,94,109,107,84,95,101,101,110,100,114,97,102,125,95,109,112,105,107,102,103,102,109,120,94,115,111,105,104,111,112,108,104,103,103,101,100,107,99,106,112,101,106,105,106,112,117,104,100,104,110,104,104,111,92,108,102,110,116,109,130,109,109,108,103,115,114,98,97,107,103,102,112,95,100,106,95,103,106,86,109,116,98,105,110,95,116,105,101,97,110,109,103,90,101,113,92,105,109,109,107,106,121,99,104,115,101,104,123,107,74,101,79,110,95,107,110,100,116,108,103,103,99,101,91,103,101,95,117,111,107,109,122,98,101,111,108,98,100,99,110,105,103,101,106,105,103,107,118,102,112,98,109,100,98,103,99,111,107,93,107,104,101,109,105,100,123,113,100,94,104,102,116,123,109,120,110,87,99,111,121,113,102,103,104,102,104,111,106,93,103,108,100,106,100,105,111,100,101,101,114,102,125,109,107,107,109,105,112,112,94,117,96,106,95,110,100,106,120,105,105,105,106,99,95,107,109,105,96,105,105,116,103,108,105,106,102,94,105,109,106,110,114,87,112,87,104,119,109,102,107,99,98,106,106,107,108,114,106,111,112,104,105,108,108,99,101,116,98,109,102,116,103,109,106,109,106,110,105,115,111,116,105,107,105,110,94,112,113,102,108,113,115,100,102,105,109,100,96,91,110,117,101,110,114,107,113,98,103,109,89,97,116,96,108,96,109,120,107,113,109,101,112,96,105,97,115,88,98,101,117,108,112,117,105,109,110,98,105,102,115,110,98,107,99,106,103,118,94,103,96,103,105,110,109,112,95,102,104,110,109,115,107,96,102,106,99,104,97,94,117,109,108,120,116,108,116,101,106,99,110,111,114,97,108,102,112,126,115,112,108,111,111,110,97,113,114,102,102,111,113,105,99,113,106,67,103,104,109,115,107,103,108,90,124,106,94,111,98,105,105,97,98,98,106,104,117,100,104,104,114,71,99,96,100,107,107,106,99,105,111,112,98,101,121,109,102,115,110,101,98,104,101,110,101,112,120,115,100,98,99,99,101,104,104,105,106,100,102,99,108,106,101,108,96,85,101,109,115,95,102,87,102,107,116,114,120,119,100,105,99,113,95,111,99,95,116,99,109,96,109,103,107,104,104,110,100,113,101,112,105,94,111,113,120,101,120,117,101,114,102,111,104,111,104,102,100,93,101,100,110,99,116,120,101,102,109,90,112,107,111,104,103,113,105,99,106,100,111,95,95,96,99,116,95,98,102,108,118,90,101,107,95,103,104,108,94,112,96,79,99,105,93,102,104,112,98,106,111,105,105,91,100,107,104,106,113,104,107,118,102,109,102,103,101,102,113,100,106,121,105,121,93,103,107,108,100,106,104,99,104,101,115,100,106,106,101,101,99,112,101,97,108,101,120,93,103,98,130,108,95,116, +619.77612,96,109,87,118,94,75,105,94,98,102,89,112,98,99,115,101,105,92,111,104,96,97,134,102,114,94,102,104,98,121,112,93,103,108,105,102,96,109,99,109,117,107,107,104,112,103,100,99,105,112,133,109,99,90,94,99,109,96,114,93,101,115,99,95,116,110,102,106,104,100,108,102,108,109,111,108,94,114,102,106,95,92,106,102,99,98,90,111,115,95,110,114,95,107,122,105,101,103,105,108,100,97,104,93,101,108,103,111,102,95,91,107,95,113,103,113,100,99,98,121,113,121,100,107,103,101,126,92,98,109,100,108,103,105,99,97,105,98,92,107,101,108,88,118,96,100,117,111,107,100,111,95,108,92,114,103,110,106,104,106,98,98,100,95,105,95,104,98,95,102,95,103,102,104,116,105,97,100,105,98,123,105,102,98,97,96,102,101,121,102,101,115,105,96,93,101,110,111,89,101,92,106,100,110,99,107,90,95,106,104,96,103,107,102,106,97,99,96,95,110,109,116,91,115,93,112,103,99,101,97,109,97,100,99,105,103,101,108,99,99,121,98,114,100,78,101,101,111,91,105,109,103,96,97,97,103,85,94,110,103,107,79,105,95,111,107,107,90,102,100,100,84,109,100,102,97,110,99,101,106,110,104,87,99,109,102,100,109,90,100,104,97,124,120,110,107,105,109,105,108,98,107,113,108,94,117,104,111,102,104,113,103,110,103,115,107,103,105,97,101,100,104,110,100,107,106,111,103,119,96,111,110,95,94,108,110,104,93,98,110,103,123,96,109,109,108,86,108,114,106,103,103,112,98,113,103,123,98,109,117,105,118,88,101,93,101,107,113,109,102,108,101,102,104,107,106,106,105,94,110,113,99,94,107,99,128,104,107,105,100,102,97,94,108,99,100,104,114,93,112,97,90,87,108,105,104,95,113,110,108,73,99,100,96,104,98,105,120,95,95,108,105,106,107,95,94,96,96,113,109,103,104,102,106,97,107,101,107,95,104,108,116,101,98,110,86,116,91,106,105,104,105,115,108,96,106,97,95,109,104,113,117,104,107,103,104,108,104,107,101,110,90,113,67,98,98,111,124,110,105,93,108,112,106,94,102,115,99,99,109,114,118,113,98,98,90,104,106,99,101,105,106,105,104,100,107,95,108,95,101,103,103,97,112,100,111,110,113,117,113,101,107,110,106,102,109,109,109,81,101,120,113,104,107,107,118,100,90,94,104,103,105,106,101,108,97,120,95,104,110,103,112,102,113,102,96,101,96,113,105,102,99,105,94,99,86,88,117,114,95,101,106,102,120,99,98,92,100,91,116,105,106,109,86,112,105,121,97,110,94,108,108,119,108,116,100,95,71,105,92,98,107,107,102,110,110,99,92,105,94,109,105,116,109,108,118,103,99,95,110,98,110,98,112,113,117,105,115,108,104,105,109,107,118,91,106,105,115,104,101,110,108,109,91,109,105,100,90,98,109,103,108,113,98,104,69,103,104,112,105,109,117,103,92,97,98,97,101,106,104,89,118,97,114,90,104,103,117,106,96,108,98,105,101,99,99,111,113,93,94,94,97,103,110,105,93,113,104,92,97,107,108,123,112,104,104,102,97,113,105,117,110,117,100,107,94,101,99,98,112,100,97,102,111,110,111,105,98,103,103,106,102,98,101,107,113,112,95,120,94,110,102,115,106,109,104,101,98,115,120,115,114,104,101,116,106,98,97,108,98,96,97,107,109,97,103,97,94,106,124,102,108,97,98,110,105,109,112,105,109,103,120,108,112,98,96,109,105,102,117,106,124,110,114,102,103,109,94,112,128,111,107,103,120,108,119,102,109,107,103,101,84,100,97,109,99,103,113,107,109,109,115,112,99,117,111,110,101,130,100,107,106,110,101,98,115,110,112,105,99,111,100,99,118,95,90,98,95,99,102,108,106,106,111,114,120,100,90,98,105,94,102,103,114,106,105,97,110,100,100,100,122,105,107,100,103,112,100,109,105,66,97,96,105,103,103,105,114,99,100,108,104,101,104,114,92,97,104,102,77,100,109,109,113,105,99,110,106,104,107,102,106,111,95,111,96,95,107,124,112,112,107,113,107,105,105,106,98,107,98,101,109,105,110,90,133,109,111,105,109,101,103,114,99,90,103,106,124,92,101,106,102,103,107,107,105,111,98,102,107,114,101,103,98,104,100,104,90,100,104,82,99,103,107,108,103,105,95,95,93,99,97,109,86,100,100,98,93,102,100,106,89,94,121,86,100,106,101,106,107,108,114,97,91,107,100,102,95,104,126,98,107,103,95,102,101,96,108,110,117,104,108,105,107,82,104,133,98,103,101,101,101,116,107,103,101,93,117,118,99,101,117,111,108,112,105,107,117,121,104,103,109,120,103,106,108,102,102,110,111,98,112,106,101,82,109,95,105,117,95,100,100,113,104,104,103,103,103,103,87,99,111,106,113,102,106,101,99,102,103,112,99,126,111,96,100,116,106,111,109,101,90,113,104,98,95,92,118,115,132,112,112,113,101,110,99,111,124,93,103,108,108,109,113,101,94,99,107,115,113,106,110,117,107,97,97,103,106,108,101,106,113,98,115,110,106,106,107,107,100,107,116,110,107,101,110,105,103,113,109,102,101,107,91,99,110,109,93,120,109,109,109,92,111,117,108,113,105,92,98,104,113,89,114,104,105,110,107,101,105,113,101,110,106,100,120,113,108,109,112,105,111,119,93,98,102,106,113,101,110,109,102,98,104,95,106,100,122,101,96,102,99,102,96,108,95,100,115,113,120,110,102,97,100,112,102,96,110,111,106,105,107,128,95,111,104,113,103,104,115,107,97,105,122,105,112,91,98,105,114,109,107,107,107,105,100,98,105,105,106,107,110,109,114,98,105,106,106,106,109,129,106,97,103,104,123,104,95,106,113,110,102,107,103,110,102,102,96,99,97,104,102,102,107,101,97,113,109,106,101,98,117,96,102,103,114,91,99,119,106,126,107,92,97,99,99,102,111,116,111,100,109,95,100,114,117,112,95,109,101,88,107,97,99,101,105,69,116,99,112,100,94,99,102,85,109,113,109,104,111,123,114,113,122,105,102,106,99,107,105,119,109,113,84,116,103,99,107,113,105,99,94,107,110,105,105,104,111,98,84,91,95,108,122,110,104,112,112,105,106,114,117,101,93,119,113,105,112,112,110,90,104,98,110,112,98,96,99,94,108,113,118,93,95,108,103,107,104,111,100,111,116,103,110,115,106,124,110,100,113,104,95,79,100,107,117,108,111,110,109,101,112,110,123,94,103,119,109,102,106,105,97,107,105,106,94,103,97,98,117,108,110,109,88,104,107,108,97,106,104,105,94,95,102,111,116,102,105,108,104,93,123,94,103,107,106,110,95,99,106,94,105,104,121,106,113,103,112,100,100,107,103,107,104,113,109,108,119,106,104,112,107,95,112,106,121,104,102,104,91,109,101,116,102,112,102,108,106,132,107,111,117,104,100,123,107,110,104,105,110,107,112,105,104,106,97,117,119,109,85,110,104,112,102,97,113,100,101,106,107,83,101,99,102,109,104,104,101,113,95,95,95,102,119,112,98,100,107,91,108,111,110,103,125,102,109,100,98,98,107,103,100,117,117,103,104,108,110,120,87,102,113,103,99,118,109,91,106,105,109,100,108,106,109,102,98,110,109,89,110,94,105,108,108,99,118,102,106,100,109,109,109,96,98,111,104,101,102,112,100,98,107,102,101,121,113,103,112,105,112,103,115,119,118,111,106,104,105,110,117,99,107,93,104,101,115,111,104,115,106,102,96,93,109,95,102,112,108,101,108,107,97,107,94,99,112,98,116,110,112,112,111,117,119,91,110,95,114,104,107,110,106,94,97,111,103,109,105,107,99,98,102,96,122,91,104,117,106,105,103,88,98,110,106,96,107,121,109,110,115,107,102,103,110,95,112,104,100,105,99,102,94,101,110,109,109,105,110,106,118,113,105,99,105,114,102,102,101,103,91,111,106,107,95,105,108,107,104,103,96,104,98,107,103,105,107,107,98,102,113,98,98,107,94,101,105,107,109,101,115,102,136,106,115,117,111,98,101,102,114,112,109,107,103,104,105,119,105,111,97,103,97,96,109,100,105,108,109,100,111,107,105,104,99,100,101,113,114,103,97,105,109,107,111,104,109,100,118,112,105,108,107,113,112,119,97,96,107,105,113,102,106,109,105,102,119,109,100,124,92,93,114,106,104,115,110,101,99,127,100,108,105,113,107,110,113,92,85,92,90,110,104,103,109,108,95,109,105,110,114,111,104,100,109,114,115,108,105,112,102,109,98,103,100,122,106,110,100,106,99,95,113,112,107,79,105,114,107,119,104,109,110,95,99,102,109,105,105,115,107,102,105,112,102,120,100,107,102,104,106,102,105,105,102,120,95,90,114,87,100,110,108,110,117,102,106,101,95,121,105,108,102,104,113,109,105,108,103,103,121,99,102,109,96,98,102,101,115,106,97,104,103,111,109,95,99,109,111,106,107,108,100,95,104,114,98,95,99,99,99,105,110,106,99,114,117,117,117,105,99,106,99,107,93,99,107,103,97,108,104,98,101,106,92,82,107,102,102,105,107,109,114,111,96,100,117,109,102,106,107,105,123,113,113,94,105,117,99,94,125,108,116,111,103,108,108,102,105,87,108,115,100,102,103,90,112,98,92,104,113,89,106,117,104,96,93,94,116,107,109,105,105,109,88,98,98,112,116,112,82,99,106,107,121,102,122,104,102,101,107,113,94,112,104,120,103,109,112,105,110,92,105,110,109,110,114,102,108,110,92,102,113,115,104,95,126,90,95,106,99,104,108,96,95,102,105,103,111,102,103,111,111,86,114,104,116,110,118,102,108, +619.91724,115,102,89,109,103,107,101,100,99,96,107,91,92,103,104,100,82,110,103,100,111,111,87,113,109,103,108,101,108,119,91,97,94,107,108,97,99,116,101,104,103,102,104,103,109,127,113,107,106,118,101,109,99,101,117,100,108,98,132,104,104,99,102,91,120,113,102,106,108,99,106,104,98,113,94,118,97,108,112,104,124,112,108,101,91,98,109,112,89,104,95,96,93,106,88,106,98,113,109,95,102,94,100,111,104,102,107,111,92,105,98,103,102,116,102,102,113,113,102,111,105,107,97,111,96,99,102,101,109,102,118,117,108,113,106,104,96,105,103,98,107,118,88,106,95,112,117,104,124,95,114,131,101,93,91,113,107,101,97,115,111,94,103,100,104,102,101,124,112,105,109,100,107,105,113,101,99,111,108,115,104,100,115,102,107,106,101,83,110,108,98,112,109,101,113,95,105,98,100,119,104,94,103,105,99,106,103,101,122,99,102,112,100,107,108,93,88,126,95,100,104,98,108,109,113,109,107,114,100,116,102,87,100,98,99,103,114,117,103,110,108,98,107,106,108,94,113,95,110,117,95,111,100,112,103,99,117,111,109,117,92,112,109,95,99,100,93,107,104,106,100,106,112,103,105,110,103,98,101,101,114,95,103,112,100,103,98,101,116,104,104,108,125,108,111,112,111,104,107,107,96,91,100,108,99,116,99,118,108,105,90,113,105,107,99,100,103,111,113,100,117,113,103,112,103,113,109,103,116,110,95,111,103,105,107,111,125,109,118,125,114,113,108,104,104,113,117,119,103,108,101,108,101,101,116,112,134,117,98,98,108,82,107,108,98,106,100,99,113,103,103,101,109,111,113,87,98,111,106,115,104,106,94,109,107,95,114,108,128,104,103,109,88,106,117,102,95,98,96,105,98,105,101,116,107,95,103,102,106,110,107,82,120,99,105,99,101,101,104,104,105,102,101,106,111,95,99,109,110,112,117,121,106,93,116,108,100,112,113,103,106,102,106,102,103,105,99,97,111,105,98,119,112,104,108,108,108,113,103,103,107,97,105,113,102,86,117,111,116,100,94,115,108,95,118,122,111,109,103,116,109,119,111,113,104,108,97,99,115,126,104,96,104,95,115,112,106,104,110,108,109,98,112,96,104,113,89,100,102,104,122,105,113,108,105,100,105,99,109,101,126,108,99,95,114,124,107,108,99,110,97,112,112,111,105,103,114,84,114,99,106,140,121,104,98,107,110,98,114,105,105,110,97,102,97,101,104,112,92,96,103,85,102,103,99,104,117,117,101,100,89,100,114,95,106,105,125,105,99,125,114,89,96,102,112,108,129,122,101,101,114,102,100,116,95,128,101,99,106,107,97,99,104,97,82,107,106,101,103,104,108,95,112,111,99,108,102,106,103,110,104,120,89,107,107,108,98,99,107,106,93,93,93,105,100,107,108,103,92,101,108,128,98,115,114,103,119,89,109,101,109,108,105,121,101,94,105,112,101,115,107,104,111,105,93,103,104,104,109,103,104,106,104,100,93,108,118,108,111,95,103,104,103,105,109,103,99,116,128,112,112,109,113,92,102,101,103,112,106,97,101,100,99,112,102,109,112,104,102,111,115,99,102,91,95,110,102,112,90,99,109,114,114,110,97,100,106,96,112,104,124,109,107,88,116,102,114,118,108,106,99,112,110,108,105,103,99,100,84,102,106,109,99,104,109,91,120,103,116,105,113,111,109,108,96,105,99,109,107,109,106,100,106,104,110,108,118,102,114,109,100,103,105,117,112,108,114,110,101,117,100,104,103,110,107,109,115,96,104,102,110,108,106,113,113,108,98,106,106,107,111,102,92,107,118,107,98,103,112,119,98,115,112,86,98,120,110,104,106,100,104,102,111,106,96,117,111,113,119,109,107,98,102,91,98,100,99,101,110,95,108,100,102,115,113,99,118,104,118,107,102,102,98,109,99,96,109,103,113,116,88,99,110,106,105,117,105,94,101,100,118,98,112,119,103,100,96,124,102,105,105,115,103,108,113,106,108,95,103,105,108,104,114,106,110,105,121,109,112,113,104,105,114,108,109,109,92,101,98,103,119,111,116,114,119,115,102,93,99,105,106,120,102,88,112,110,99,74,100,107,115,106,104,112,103,113,109,112,102,111,108,113,106,99,111,98,99,107,91,103,109,110,112,102,108,103,105,105,106,91,99,107,102,106,97,108,64,95,111,104,104,95,106,96,111,110,100,97,97,118,104,106,116,104,100,108,105,117,106,102,107,103,99,112,104,97,102,105,113,109,105,121,124,98,107,105,108,97,104,97,94,104,111,102,107,108,100,96,105,104,133,110,108,97,103,99,119,94,107,108,103,103,95,115,110,119,129,105,111,120,113,126,115,116,115,121,98,100,114,110,106,115,101,116,112,103,117,106,94,111,100,109,115,105,100,105,107,106,99,104,100,115,99,116,124,108,112,103,95,109,102,81,115,104,93,109,107,100,113,111,102,99,104,113,106,109,119,106,124,99,96,113,94,102,94,109,109,103,103,103,110,106,98,104,103,96,103,110,105,101,115,96,96,105,103,109,117,110,106,111,106,101,98,110,121,104,112,100,112,79,112,102,108,111,107,109,104,107,107,109,113,108,112,94,101,109,107,73,110,105,108,98,103,114,100,97,109,105,107,110,92,100,96,131,128,105,106,108,91,106,88,105,108,119,104,105,98,100,113,103,112,109,104,104,113,107,107,99,119,112,114,111,99,99,102,112,104,99,117,105,99,109,113,101,113,105,101,112,103,104,93,106,110,109,110,114,111,96,111,117,108,106,105,94,101,98,103,110,111,109,109,103,104,101,102,104,105,129,98,103,104,98,99,119,108,101,109,100,98,105,109,106,109,110,91,105,104,87,111,109,120,103,111,103,108,107,113,99,98,87,105,106,98,99,89,104,87,105,108,110,109,105,109,96,98,106,103,81,106,105,129,113,93,102,100,109,125,117,105,100,118,100,102,98,111,110,102,103,106,109,105,98,107,110,110,113,108,106,100,106,110,104,99,94,103,111,106,114,116,95,95,107,106,96,98,100,100,98,104,113,116,105,109,106,104,105,110,109,89,97,111,102,107,122,109,109,94,97,92,108,117,98,112,117,116,106,92,108,114,104,87,90,105,100,107,115,114,99,116,102,93,108,102,100,108,100,121,106,104,109,107,100,95,98,108,102,103,108,108,124,112,99,95,83,102,91,114,104,110,94,107,113,108,111,101,98,96,109,114,97,113,103,94,104,110,99,100,120,109,106,102,103,117,98,95,111,107,88,104,113,103,102,113,104,108,92,99,107,107,102,95,109,97,109,103,101,110,105,97,112,84,111,107,112,111,98,106,115,104,103,112,112,93,108,111,102,112,102,117,96,97,108,102,83,99,105,111,106,86,98,104,109,108,100,99,99,100,109,100,120,104,97,114,108,95,100,106,98,103,109,111,109,102,95,98,116,105,104,113,101,101,109,114,99,113,94,98,87,104,92,106,116,100,110,106,98,106,108,97,108,94,105,107,110,96,110,112,120,108,111,103,102,99,95,104,106,108,113,103,111,106,107,106,117,98,109,125,104,106,109,100,103,95,86,111,95,119,108,107,108,105,100,97,101,105,128,107,105,114,103,95,107,107,112,112,103,102,101,100,91,94,103,116,102,106,103,105,101,111,100,103,109,102,98,97,95,87,107,107,95,120,103,126,101,104,112,107,95,111,100,109,95,106,102,102,112,102,108,108,116,106,103,106,107,100,103,99,102,105,108,101,105,106,100,116,107,103,111,114,101,114,102,99,98,125,101,113,104,99,103,67,107,98,111,94,103,121,109,107,98,103,113,91,97,110,106,111,102,101,112,96,107,96,108,114,102,107,110,102,115,110,114,99,111,93,103,111,111,99,101,111,87,112,110,124,108,117,101,117,101,107,106,91,94,106,104,121,102,99,104,105,116,106,104,99,113,96,104,101,96,107,103,108,115,112,97,102,94,109,115,112,90,95,103,91,117,96,105,113,99,107,109,101,98,101,94,104,109,111,104,101,99,98,103,111,117,105,95,71,103,110,113,108,105,122,112,110,72,97,114,111,104,111,119,107,108,107,98,102,103,113,102,100,107,113,107,110,103,100,121,106,100,99,96,99,96,109,106,109,106,99,103,102,125,103,105,106,112,104,77,115,103,115,105,108,105,109,112,100,106,110,104,101,84,103,98,107,104,113,98,92,104,111,99,129,107,101,99,109,98,103,110,97,101,102,99,103,102,116,104,103,103,104,117,104,112,105,100,94,110,108,116,112,110,104,110,113,111,80,90,110,109,103,102,102,102,109,108,103,99,116,105,132,116,114,91,101,113,131,98,101,114,107,72,95,101,100,110,108,103,88,106,100,105,102,99,90,101,118,107,108,102,102,104,98,99,91,112,101,111,96,107,92,109,93,97,109,108,111,109,108,100,104,106,102,98,100,107,84,102,103,113,102,108,114,107,106,100,100,104,97,103,119,104,95,113,105,116,104,102,102,106,95,96,121,101,105,97,100,106,101,104,106,105,103,81,107,95,101,99,109,100,110,110,117,105,113,86,101,72,102,105,99,104,88,110,106,107,91,105,110,94,115,108,103,100,111,99,103,105,91,106,110,97,104,100,104,97,107,94,96,120,106,101,116,105,112,112,110,112,107,113,106,108,106,103,114,91,102,95,92,100,91,106,110,106,101,101,103,111,110,110,101,107,107,117,103,110,111,100,98,104,88,104,103,107,109,92,88,102,109,94,102,97,108,99,100,108,107,116,110,103,102,87,84,95,103,106,96,113,93,98,113,94,88,103,94,103,109,79,117,99,77,100,108,117,94,108,101,104,120,104,107,95,94,109,101,110,96,102, +620.05835,113,104,97,87,95,98,95,100,101,108,126,100,113,104,109,99,90,98,91,100,106,93,89,95,101,96,93,109,114,107,104,122,108,117,122,91,93,116,97,128,98,114,92,106,104,107,105,96,102,100,98,101,101,113,97,95,97,94,107,111,92,105,110,100,139,100,104,102,105,100,111,109,106,101,73,123,102,110,98,102,113,111,107,110,102,98,113,101,110,104,110,108,96,129,94,102,104,104,102,139,105,114,105,105,115,113,87,111,103,100,108,100,96,109,92,102,94,105,110,96,112,105,98,113,105,107,100,97,100,105,96,86,93,103,96,114,107,102,93,112,103,100,93,100,103,101,113,111,97,94,112,95,113,100,114,86,98,103,101,110,105,102,101,112,113,95,96,104,101,92,92,112,98,107,110,105,101,107,112,96,113,103,104,112,96,105,100,86,115,95,111,99,102,111,102,101,90,102,118,109,97,105,103,98,102,100,105,106,110,105,103,109,109,106,106,98,90,116,101,111,95,97,94,99,103,98,107,108,112,99,91,98,107,104,116,102,94,106,105,100,98,96,87,108,95,96,96,109,94,110,106,113,103,102,106,121,99,104,105,132,101,87,102,106,96,108,103,106,98,97,107,104,112,108,112,97,109,113,102,106,106,97,95,122,101,107,96,111,98,103,99,110,94,106,98,109,99,99,101,112,103,102,100,124,100,97,95,122,108,99,92,112,109,114,99,106,99,107,100,107,95,104,113,110,103,93,97,92,115,91,109,114,110,101,101,104,105,71,106,107,99,107,104,94,95,106,113,103,108,120,102,101,104,104,111,104,100,103,117,100,91,108,111,88,100,106,118,117,100,104,109,99,102,113,99,97,110,100,109,107,103,106,103,102,100,109,103,98,117,106,107,96,96,86,109,112,92,108,97,111,116,99,122,104,103,112,109,110,108,108,101,96,83,110,100,98,94,94,106,93,116,114,107,102,100,117,99,86,96,102,109,105,107,97,107,100,100,99,102,101,101,76,100,104,91,105,103,101,94,112,97,111,107,108,95,95,115,100,102,107,97,100,111,110,102,106,94,100,105,98,88,92,89,102,95,100,104,101,102,115,100,104,106,106,106,88,100,103,103,109,101,100,103,100,82,97,94,113,113,105,104,105,103,109,101,105,102,94,104,113,108,103,102,108,94,104,108,111,108,105,108,99,117,105,102,103,109,104,109,111,107,96,97,121,118,101,104,93,111,105,102,116,95,109,114,99,92,94,99,102,104,99,102,103,99,118,104,91,112,107,96,104,101,100,100,94,99,102,107,109,75,100,108,109,102,108,93,104,99,93,115,91,102,88,96,106,108,101,95,97,103,111,114,111,102,91,94,96,106,104,104,110,85,104,100,103,111,108,104,96,105,90,103,91,99,95,107,102,100,103,98,99,106,105,107,104,100,110,102,114,103,101,101,104,111,105,109,101,103,106,102,117,110,103,103,93,99,96,109,100,109,95,115,94,105,77,104,103,100,92,118,107,101,112,111,112,109,99,94,93,112,100,103,105,105,120,110,109,107,105,100,107,114,108,101,103,104,106,103,105,104,140,93,112,107,96,113,85,104,107,73,96,111,104,95,102,101,89,95,102,97,96,104,111,107,100,113,96,118,93,100,106,89,103,100,103,105,101,109,108,107,115,87,105,103,109,104,94,111,136,117,90,106,100,104,103,95,104,109,111,102,88,109,98,107,110,100,96,100,106,101,95,105,113,95,112,124,98,92,117,99,90,96,101,104,105,72,96,108,113,99,105,108,100,97,101,107,95,103,98,104,112,102,110,115,96,104,98,116,102,86,95,84,112,90,112,118,105,112,99,116,105,99,99,104,110,105,112,103,104,110,86,99,110,113,98,105,101,106,100,117,107,109,101,105,125,102,103,103,99,103,111,98,118,91,103,103,106,97,89,110,97,90,104,105,113,115,121,110,100,96,98,106,105,111,103,97,96,99,109,105,108,97,102,100,121,100,102,101,95,100,89,101,101,110,97,101,110,113,109,104,104,107,114,102,108,104,75,104,114,108,96,86,115,96,88,95,101,107,110,104,106,110,114,111,96,103,106,111,100,104,100,103,104,111,114,106,103,104,120,112,103,98,100,97,113,101,112,97,109,97,100,91,99,97,108,101,102,103,95,118,109,103,107,111,101,109,114,103,110,100,82,111,108,108,94,102,100,126,98,110,112,97,105,105,94,109,101,104,113,99,100,100,100,101,106,95,104,95,106,95,99,106,113,104,108,100,120,89,112,110,115,102,96,117,100,110,110,99,109,91,96,101,102,109,108,116,106,99,100,97,110,107,89,82,101,98,105,114,106,104,104,98,105,116,96,106,108,119,121,111,105,121,101,130,129,107,119,114,115,118,117,118,114,102,99,112,120,118,104,98,111,102,105,98,111,104,109,106,106,87,108,99,106,103,95,96,105,104,96,123,115,114,123,102,107,108,113,117,110,104,105,108,103,99,99,105,102,106,104,99,95,107,106,96,111,102,107,120,115,99,106,112,110,106,104,108,107,98,97,112,105,110,121,109,113,103,90,108,110,95,109,109,104,111,114,109,108,102,94,113,108,95,107,102,97,110,121,103,106,108,100,108,112,111,109,102,115,106,112,114,94,107,95,110,103,98,102,113,101,124,104,114,109,99,106,107,100,107,110,106,108,100,96,112,114,106,105,95,106,109,104,113,113,100,122,104,106,103,98,100,97,96,100,98,98,112,105,115,110,110,104,105,103,102,92,107,107,95,99,102,103,107,97,94,100,105,110,121,103,100,108,101,120,104,108,103,103,112,103,109,103,106,107,110,119,104,97,80,114,107,107,107,97,105,96,116,104,101,109,116,100,118,103,110,110,108,97,104,106,114,102,114,110,113,104,107,102,111,106,104,110,90,109,95,102,109,91,111,113,103,115,114,111,95,119,110,98,87,111,106,104,91,109,102,102,99,105,98,93,108,95,95,99,120,119,104,106,103,113,113,115,102,108,102,97,112,110,103,83,122,94,102,104,124,95,107,94,104,113,114,107,103,106,111,103,106,103,108,119,92,110,99,99,106,108,107,91,104,116,104,110,105,106,110,109,102,93,102,94,111,102,113,109,115,107,96,102,108,92,100,94,98,101,121,100,100,98,102,102,104,100,105,113,115,109,105,100,110,109,114,96,102,117,98,108,96,103,106,102,97,102,95,97,101,93,108,112,99,110,110,113,101,105,106,107,99,92,111,104,105,98,119,112,85,108,101,112,109,112,95,106,115,100,110,102,103,104,112,102,99,108,105,77,96,103,105,109,125,107,113,110,100,108,105,101,101,108,103,98,92,71,93,99,94,108,92,94,106,106,92,97,107,101,102,100,109,113,98,114,100,113,94,102,110,95,101,105,97,96,83,88,92,107,113,116,107,108,98,124,95,94,111,102,102,106,103,106,107,102,103,100,99,107,108,106,113,100,97,114,110,100,107,83,101,106,106,97,98,103,104,100,103,115,94,105,106,102,102,109,100,112,110,107,107,107,106,106,99,93,110,111,129,107,117,108,106,114,117,118,99,100,106,116,80,107,102,106,100,110,101,105,103,105,102,111,105,111,111,112,99,87,113,100,98,121,104,108,105,111,102,111,114,99,100,93,121,82,96,91,100,106,106,98,99,113,106,100,84,100,100,106,98,108,83,109,102,101,108,94,98,108,109,102,108,100,101,101,105,98,110,113,108,94,103,96,109,103,117,101,102,109,91,105,115,116,107,110,100,100,95,106,121,99,91,102,101,101,112,108,108,96,104,105,85,108,118,99,108,114,104,90,105,95,113,116,101,92,101,109,92,111,118,114,99,113,105,97,101,93,106,116,83,110,96,102,96,93,101,112,103,106,112,101,99,102,106,97,103,108,95,100,120,112,114,100,105,98,91,100,112,95,102,97,106,99,121,91,112,110,95,103,104,108,110,112,94,109,109,95,116,107,108,106,99,100,120,99,97,106,105,113,95,112,113,112,101,106,107,104,109,104,109,104,111,106,106,107,105,109,110,107,82,102,107,107,92,95,108,96,95,105,105,105,95,111,96,108,106,99,109,114,103,120,96,116,109,107,110,117,93,105,102,100,111,97,112,109,99,95,93,100,112,101,104,108,117,97,104,112,102,100,109,92,97,120,107,102,93,108,100,121,108,106,95,106,106,113,110,97,114,93,103,99,109,98,113,99,113,112,95,92,104,113,106,110,109,106,110,90,103,107,124,100,104,111,83,109,97,95,106,92,103,99,104,120,111,88,94,111,102,99,100,110,103,104,94,104,118,112,109,108,117,113,112,94,98,90,93,106,111,100,111,102,90,123,113,100,113,111,109,103,105,106,101,109,118,101,112,109,114,109,96,108,101,110,110,108,92,115,103,103,119,98,102,96,121,101,91,91,108,95,112,110,110,102,99,97,109,125,102,97,86,110,103,97,104,103,102,97,101,94,96,102,109,110,102,117,110,102,90,108,103,95,102,115,96,108,102,93,95,111,114,99,106,110,107,89,107,128,96,107,101,91,103,93,104,87,100,117,122,119,100,105,115,104,111,107,97,98,99,105,107,92,112,105,116,117,108,105,100,108,120,111,95,104,113,103,109,120,108,110,97,103,75,101,94,102,109,78,111,102,102,100,105,97,102,106,102,100,95,102,103,107,103,105,116,102,96,116,123,97,110,103,110,101,107,109,103,107,106,101,90,109,120,98,120,100,113,103,118,91,115,95,99,106,95,105,91,100,102,99,117,111,107,100,120,107,86,115,96,106,117,118,102,109,96,87,97,103,122,107,113,93,104,109,100,95,128,87,123,106,92,103,97,103,104,106,108,110,111,90,105,106,116,109,106,96,112,106,97,99,85,99,103,113,109,97,93,98, +620.19946,105,94,91,92,113,100,84,89,101,103,103,107,82,104,113,103,94,94,121,107,104,100,95,104,100,109,103,96,110,110,99,105,118,96,113,105,105,99,100,106,103,98,117,111,108,113,104,97,105,103,105,88,108,99,108,106,98,102,98,106,95,117,102,100,95,108,98,102,103,104,103,102,102,116,103,109,100,103,109,123,102,102,102,103,103,110,103,114,107,105,106,103,105,89,97,111,102,101,89,100,113,106,98,109,94,97,103,88,98,101,99,103,94,98,101,98,101,128,98,99,129,104,100,108,106,113,103,104,104,94,99,109,103,95,102,95,110,113,101,106,97,103,106,106,120,113,107,98,102,108,102,109,116,89,104,109,119,96,108,108,97,94,92,111,102,90,96,98,102,113,96,113,107,116,109,108,101,104,103,107,110,107,107,110,104,105,105,96,113,104,101,98,104,99,99,104,100,111,103,103,110,113,95,96,92,106,101,104,102,108,83,103,99,95,91,100,97,114,93,106,98,103,111,108,115,120,101,103,97,114,102,96,103,102,103,100,89,93,108,103,103,98,105,94,102,106,105,97,102,113,112,109,118,111,95,105,101,108,104,105,102,99,93,99,91,105,100,88,117,90,110,102,103,104,100,109,100,87,116,113,102,96,108,103,102,97,102,76,107,119,106,99,102,114,100,114,100,106,108,108,102,112,117,125,99,122,113,118,111,104,102,117,112,108,108,103,104,104,100,114,108,100,112,93,117,103,105,91,122,111,109,107,115,99,117,111,108,92,102,119,109,105,99,90,106,109,101,107,120,101,112,102,113,105,102,107,107,101,103,110,102,103,113,109,102,95,105,112,105,111,112,107,105,100,99,97,106,96,97,89,110,107,107,116,100,104,93,113,117,103,108,96,105,102,104,86,108,94,110,104,118,104,104,78,101,95,89,106,95,106,100,94,102,111,108,108,116,104,106,103,104,98,91,103,132,104,100,104,106,113,100,108,115,100,98,99,106,114,100,109,109,98,114,102,108,113,103,113,101,109,95,104,114,107,110,98,102,111,111,112,100,112,103,108,110,106,101,95,115,95,102,101,106,96,111,94,104,108,111,106,96,100,117,104,99,99,100,108,113,101,114,99,106,119,106,107,102,106,109,114,109,97,106,102,94,108,100,101,102,98,94,111,100,110,109,115,103,99,105,96,110,106,101,104,110,110,104,99,105,101,108,103,102,110,124,105,106,94,98,108,106,106,108,102,113,101,87,118,111,104,104,109,96,111,99,99,117,91,125,122,104,101,101,107,92,109,95,96,104,94,108,105,110,105,106,96,96,109,109,95,106,99,106,107,103,107,109,95,104,111,110,98,103,106,111,98,91,99,98,120,105,75,110,109,86,105,109,105,113,101,102,104,103,108,105,102,97,102,99,99,109,95,100,100,105,95,95,103,121,111,103,96,95,101,102,101,102,128,102,108,103,99,94,105,105,97,101,96,104,109,103,106,103,109,103,107,116,98,117,105,104,90,113,109,107,91,102,106,105,100,105,106,106,114,111,119,102,114,104,109,100,102,100,105,99,104,116,83,110,110,103,109,108,111,113,97,104,81,106,99,96,103,101,103,95,117,102,106,103,107,104,96,98,105,104,114,103,99,107,112,104,98,97,101,109,106,109,110,114,117,98,103,100,110,106,95,111,106,106,94,105,113,99,103,112,117,96,105,106,95,110,104,97,101,104,103,101,103,101,105,108,109,96,106,98,108,108,96,101,104,93,105,94,102,134,110,105,102,102,99,110,104,116,112,110,103,94,99,109,113,105,115,95,114,101,105,99,111,95,103,106,79,99,108,113,103,103,93,106,101,117,103,110,96,110,107,115,99,110,108,118,104,110,110,113,113,111,98,110,101,103,99,105,97,110,105,113,107,108,105,104,107,102,107,105,102,104,92,109,96,91,111,102,104,100,104,109,106,94,100,99,98,102,80,105,118,104,108,108,114,102,99,93,110,120,111,115,101,107,106,107,105,98,101,103,102,103,99,107,108,100,108,108,103,88,90,117,100,103,96,98,107,102,105,102,100,105,103,119,107,94,111,107,103,104,105,97,105,103,103,116,105,99,110,96,96,102,108,100,112,98,118,94,109,95,111,97,113,114,111,105,110,106,106,96,109,104,99,95,108,103,108,99,104,105,99,109,103,109,104,109,127,110,110,79,116,96,109,114,95,112,108,103,99,107,109,106,103,96,98,98,100,98,101,96,99,98,96,103,106,106,95,103,106,94,99,105,121,117,102,109,92,111,99,102,101,107,113,93,117,95,113,98,106,96,108,105,108,110,101,101,106,121,95,104,107,97,98,113,99,105,106,115,92,120,95,103,106,116,98,105,113,99,112,119,129,113,120,100,103,115,113,129,129,113,107,118,110,118,94,91,116,93,110,95,107,101,93,98,100,106,109,109,112,102,99,96,97,99,101,105,98,112,99,108,126,88,111,120,100,95,107,121,90,96,109,123,109,104,113,128,104,103,100,115,102,97,105,112,115,106,112,118,111,113,111,109,112,105,112,113,113,114,102,96,102,92,111,124,127,71,98,113,96,105,101,104,110,121,109,109,108,101,115,116,99,96,106,110,99,103,102,102,106,112,125,117,93,121,101,101,95,111,97,109,109,113,99,115,96,99,94,112,118,105,104,109,107,108,99,125,101,98,87,100,107,102,83,73,106,96,130,107,112,99,103,99,99,106,107,103,120,96,114,104,117,105,115,106,115,93,121,96,123,110,88,95,123,73,101,96,117,105,88,105,104,108,96,107,105,106,110,103,101,121,111,109,101,98,117,129,106,112,102,112,106,104,94,102,104,96,100,113,111,106,106,104,106,97,107,109,98,119,106,107,104,119,110,117,108,120,109,112,114,99,108,121,106,104,101,105,113,116,100,117,100,113,97,113,100,108,98,101,119,95,110,114,100,115,111,117,104,102,106,105,106,104,109,113,89,103,101,103,113,102,114,98,105,113,110,92,98,107,98,109,103,103,101,138,98,109,90,108,121,119,108,102,107,110,92,91,113,105,94,115,98,122,104,104,97,100,102,103,110,106,109,118,103,117,80,111,109,104,107,103,97,114,120,96,97,112,107,100,112,124,102,114,89,101,103,101,98,98,106,104,102,113,76,99,98,102,106,108,110,101,108,104,108,104,105,122,99,95,102,107,109,105,95,103,109,108,109,95,102,111,99,120,126,113,112,107,107,107,100,110,108,92,98,122,102,112,98,106,112,112,106,113,116,111,108,104,94,102,114,99,103,90,111,101,87,117,113,112,106,116,98,112,112,107,106,108,107,109,98,110,120,104,97,104,113,108,104,111,116,112,104,106,97,103,106,104,109,123,119,101,114,101,93,99,105,103,114,103,125,113,95,115,102,98,102,111,110,103,107,78,112,101,102,101,110,103,104,106,106,102,104,118,104,98,92,106,115,104,103,95,105,109,98,105,101,105,92,114,103,99,100,104,94,108,99,104,124,100,99,101,99,99,106,101,102,107,107,105,115,94,110,105,107,88,106,94,109,101,99,83,106,103,96,114,90,101,107,107,95,110,103,92,98,104,75,99,98,99,104,107,113,109,94,100,105,109,101,107,111,105,100,113,113,104,114,108,106,100,115,104,108,127,116,108,124,108,101,97,103,99,100,114,105,98,112,106,112,107,102,103,112,111,92,105,109,97,81,109,99,104,115,107,101,119,99,99,108,109,101,103,127,112,96,104,91,113,107,111,113,102,103,109,103,106,95,97,101,115,96,102,104,108,110,124,106,111,101,102,90,112,105,115,116,87,103,117,106,104,98,95,84,101,102,100,104,109,105,102,133,117,112,106,112,102,103,105,109,91,118,98,106,108,117,119,107,89,101,109,113,91,98,105,102,91,113,103,100,115,94,103,112,113,105,105,123,113,106,111,99,108,110,95,115,97,105,100,102,95,108,103,103,93,95,103,109,115,103,91,103,105,89,120,106,112,113,107,100,98,101,107,95,99,108,113,97,114,102,100,105,104,109,106,109,108,107,102,101,101,101,104,110,109,108,101,99,119,101,109,103,94,117,109,99,103,104,103,113,106,115,97,119,96,108,104,103,116,99,131,109,106,111,105,99,99,109,100,91,109,116,121,105,107,116,109,106,107,101,99,114,123,105,113,103,105,91,116,120,110,115,124,96,110,99,95,116,125,101,118,104,95,105,109,112,103,110,107,110,112,109,95,102,112,114,114,90,101,99,109,112,106,116,104,92,104,109,117,102,111,119,95,107,84,95,104,110,104,104,95,104,102,100,107,99,104,83,102,103,107,98,98,102,97,109,104,108,92,113,116,114,98,106,109,95,104,99,111,108,102,99,107,104,104,105,111,105,96,103,104,103,111,111,109,117,115,96,98,101,101,105,87,108,98,116,99,109,110,103,98,95,95,104,99,99,107,112,98,105,98,101,100,69,96,98,109,101,114,98,99,87,113,110,91,108,102,117,96,105,105,107,116,116,107,105,113,94,103,111,102,101,107,97,100,111,92,113,87,107,97,106,113,108,97,108,105,105,104,95,121,93,108,99,105,112,108,112,101,90,123,69,101,113,109,117,108,100,102,109,69,110,109,114,107,119,104,108,111,97,102,102,100,98,105,111,105,97,88,98,111,100,87,102,107,100,105,98,86,101,105,120,110,109,100,96,99,103,104,108,115,125,114,101,103,96,105,115,75,90,104,99,107,106,115,101,105,106,80,102,127,108,90,98,96,108,113,99,95,94,97,98,92,89,104,98,108,109,109,110,99,111,106,108,90,110,108,122,115,104,102,102,86,116,116,102,110,116,100,109,105,105,108,108,86,96,120,92,106,100,98,97,84,105,110,102,101,109,123,110,109,110,99,110,108,87,93,94, +620.34052,104,89,96,93,96,109,109,93,103,101,84,99,92,104,114,94,102,99,93,107,97,94,102,107,116,98,90,93,103,98,94,93,107,95,118,95,100,101,106,111,101,117,97,105,102,113,104,106,94,99,112,100,110,108,109,99,95,112,104,91,102,102,98,124,108,112,92,104,95,102,97,116,95,102,100,109,90,102,108,100,114,98,91,101,100,85,99,101,113,104,108,105,139,101,98,98,92,105,80,105,96,106,95,91,105,102,94,105,120,91,104,99,94,99,99,111,112,100,105,112,109,90,106,101,114,107,110,106,105,122,103,113,108,104,117,104,106,103,84,94,100,106,100,98,109,117,132,98,84,96,106,108,104,108,88,112,106,103,108,104,107,95,110,101,111,102,108,101,105,100,93,108,105,103,113,100,105,98,106,104,108,106,108,111,95,98,96,92,99,103,96,94,111,115,97,103,113,117,98,101,95,99,94,116,93,111,101,103,98,109,94,103,109,105,115,107,91,109,96,96,103,101,119,97,107,100,98,106,97,105,104,95,106,106,103,115,94,112,109,107,110,99,113,112,102,98,110,113,102,112,102,113,101,112,105,109,103,110,93,112,95,106,111,102,95,101,77,95,118,88,107,92,119,101,114,99,102,94,109,103,104,97,100,115,99,95,92,111,108,113,108,108,111,107,113,112,108,120,103,110,98,101,94,109,93,100,111,125,111,98,99,113,103,104,102,114,104,113,136,97,106,108,96,80,108,97,99,99,116,117,98,121,107,109,111,105,98,107,103,114,92,98,96,106,109,95,66,106,111,107,107,127,110,95,112,106,100,136,103,104,97,105,105,99,103,111,108,107,106,107,125,100,111,109,112,106,103,107,106,113,110,104,115,120,109,103,105,109,102,97,114,90,104,95,98,105,107,104,95,109,99,88,110,110,106,122,94,102,107,111,93,100,113,108,102,124,99,104,94,101,95,87,103,108,106,99,96,92,106,100,76,111,104,98,99,96,104,112,108,110,99,101,100,108,92,102,94,102,90,111,108,100,112,112,108,107,95,113,113,100,98,107,116,110,103,101,113,110,99,101,103,104,121,108,112,95,99,112,103,86,94,108,113,103,114,101,100,96,94,110,99,109,103,108,110,115,99,96,99,99,116,121,96,99,113,113,97,111,93,107,115,108,100,108,108,104,105,97,101,103,106,101,113,106,104,99,99,103,122,107,104,112,116,100,105,102,102,113,112,105,104,99,105,106,114,101,102,102,99,100,108,135,106,109,103,101,107,106,115,101,109,99,105,107,95,107,105,106,96,101,97,97,102,104,91,128,101,111,89,117,108,103,116,102,110,82,110,104,99,111,108,103,80,106,116,102,105,108,115,104,99,99,106,117,89,89,90,97,106,106,100,102,86,111,110,114,104,115,107,107,105,105,110,101,109,107,105,99,112,110,108,102,94,106,92,102,104,106,96,106,109,108,116,102,106,108,107,134,101,108,98,109,109,107,103,102,101,121,95,98,108,104,109,112,106,100,108,92,119,105,104,107,107,95,92,93,97,116,110,102,100,91,101,92,102,100,105,94,102,104,101,103,87,95,108,113,102,107,98,87,122,119,106,103,113,101,101,114,94,96,112,90,88,109,107,94,106,103,98,113,106,102,93,101,109,103,106,112,109,118,108,101,87,108,113,109,106,102,101,110,101,98,114,75,108,96,91,101,97,112,94,112,99,94,102,111,104,113,105,104,108,105,104,99,92,110,100,98,103,101,113,105,104,103,102,106,111,88,109,100,117,107,106,105,97,98,96,103,102,109,105,109,100,108,105,103,106,114,101,113,90,99,92,100,102,116,98,100,102,92,117,101,107,95,122,95,114,103,101,105,128,99,108,109,105,102,105,103,102,98,106,90,94,111,87,107,106,93,111,112,113,99,102,100,105,105,99,104,108,98,107,102,107,67,105,96,97,102,99,87,98,98,94,110,101,94,108,108,100,101,97,97,115,101,96,112,115,98,112,109,102,104,99,99,109,98,101,117,110,111,113,106,99,98,103,94,104,110,96,108,104,105,98,88,104,97,99,99,96,105,98,117,121,110,101,109,105,119,95,88,99,103,106,105,113,83,98,91,103,92,105,115,100,117,114,98,105,100,100,101,101,119,98,112,95,98,95,111,111,104,102,113,100,105,106,113,109,105,101,101,112,112,113,105,116,105,95,95,94,115,85,84,109,114,108,116,99,101,106,103,102,101,101,101,102,99,98,108,92,109,103,113,114,109,90,109,91,108,109,101,114,96,94,107,95,98,112,109,98,102,110,103,107,106,90,113,100,99,107,115,93,107,116,105,110,98,117,103,98,104,110,110,116,93,132,102,96,104,101,105,115,124,109,116,111,128,119,108,115,106,109,120,110,95,103,113,110,111,97,101,99,108,113,110,109,97,109,105,113,95,101,111,105,102,100,113,105,102,95,101,98,104,85,105,106,100,96,87,108,110,108,112,104,101,96,110,104,103,110,116,107,104,110,94,94,110,105,113,104,91,104,102,99,98,103,112,102,93,99,119,102,105,116,108,98,110,105,100,106,95,117,114,117,103,88,99,100,105,100,105,101,93,106,108,108,96,106,103,105,105,102,103,118,96,98,99,80,101,94,99,107,97,111,89,113,106,109,100,104,99,98,99,109,114,106,115,99,106,103,101,113,80,98,109,121,106,113,105,104,115,99,103,101,103,106,117,97,91,107,109,111,88,108,101,103,116,107,106,98,112,112,129,106,104,106,111,108,106,121,121,105,105,106,114,107,104,97,103,102,103,84,116,102,105,97,105,109,108,106,115,113,100,117,91,106,108,113,112,99,103,108,108,123,109,104,106,98,117,98,113,110,107,111,105,98,108,111,109,103,107,101,107,111,106,100,113,94,106,107,114,117,106,109,105,97,116,92,109,116,112,103,107,97,101,106,98,127,106,99,104,99,108,91,108,90,105,105,108,98,100,102,105,99,104,101,107,97,105,117,105,112,106,96,112,112,113,113,108,107,91,109,100,99,110,104,110,109,118,99,100,97,108,115,104,105,100,100,109,104,111,94,98,93,116,117,98,102,93,94,100,105,125,108,100,106,89,102,107,105,96,103,125,102,108,111,95,100,102,112,107,94,101,104,96,124,101,105,107,101,97,93,97,112,110,107,104,105,109,108,107,95,105,100,122,103,103,107,99,109,113,103,94,101,103,100,102,107,102,98,119,102,111,106,100,105,95,91,101,103,98,89,102,102,112,111,90,102,113,98,102,91,101,70,96,104,99,114,98,102,104,108,108,109,112,94,99,98,91,93,103,97,114,109,91,101,95,113,92,102,98,111,98,100,83,99,98,113,113,106,106,98,103,111,100,97,112,113,108,101,104,100,99,107,100,111,109,102,90,105,99,97,88,115,100,94,97,109,104,102,99,108,85,94,96,91,109,89,104,84,90,100,101,100,99,104,101,112,105,105,96,112,102,98,100,109,89,110,102,104,103,107,100,87,108,104,118,94,94,101,103,105,108,93,102,102,95,103,106,101,111,95,112,116,102,101,107,89,102,108,112,104,98,104,106,107,99,104,105,119,91,105,103,104,106,100,110,107,111,95,116,76,108,115,121,93,97,90,97,91,109,94,113,110,103,99,99,104,101,104,111,101,92,109,113,108,110,102,109,100,112,100,114,103,109,91,93,95,106,98,102,107,103,101,119,102,92,93,101,94,99,104,93,98,108,89,112,111,106,94,100,105,93,98,100,106,102,106,107,110,106,110,111,102,100,108,101,103,96,106,110,96,94,97,102,101,104,99,102,97,96,98,107,109,93,104,100,110,106,91,123,108,100,108,97,102,91,104,102,107,77,96,109,103,100,102,104,95,106,105,104,103,103,95,104,104,87,79,99,105,97,92,96,99,107,71,101,110,98,104,94,127,104,107,116,98,94,110,104,111,96,97,111,89,112,99,104,98,103,83,102,101,112,110,92,117,91,101,115,94,107,96,98,97,102,109,108,102,102,106,93,109,103,100,107,102,99,110,99,100,98,102,102,102,92,92,110,109,113,101,98,98,104,96,102,95,113,101,103,103,102,102,109,97,106,106,99,87,108,117,107,104,90,98,102,114,101,104,100,108,109,107,95,94,80,95,108,105,104,113,100,79,104,108,92,106,107,107,90,105,100,113,105,95,91,97,117,109,106,100,109,112,104,104,117,105,98,98,103,97,99,111,114,95,97,108,97,110,102,109,97,94,107,106,111,101,96,102,102,107,97,97,101,111,101,113,107,104,104,108,99,108,110,111,103,94,106,105,110,92,107,94,103,99,93,107,103,101,112,103,118,98,110,105,113,98,98,128,91,112,112,106,108,118,109,101,96,88,98,109,99,111,102,109,105,96,104,92,97,98,104,92,105,112,103,92,118,97,99,103,100,115,97,98,96,97,92,96,110,100,99,106,96,100,105,108,92,105,98,103,106,104,106,97,112,111,109,101,103,89,101,93,89,116,107,112,100,113,101,98,94,98,99,100,102,114,110,100,98,88,104,106,98,102,97,105,93,92,100,97,106,101,106,116,106,104,103,106,104,90,103,99,102,110,105,108,105,109,97,114,94,96,101,102,96,102,93,106,104,101,98,115,105,98,100,108,93,109,106,104,99,111,95,107,121,93,109,105,110,114,100,102,88,99,116,118,100,101,95,107,107,118,103,107,99,96,94,112,105,109,99,110,83,108,91,98,108,98,125,105,112,113,99,107,96,91,104,106,109,96,112,106,112,97,104,99,99,111,100,100,99,105,98,99,105,94,106,83,108,104,83,106,107,105,120,104,99,104,143,104,98,106,102,106,87,92,109,93,108,112,80,100,101,110,104,105,114,93,101,103,95,111,100,79,104,107,124,115,108,105,94, +620.48163,94,98,109,96,86,98,90,105,98,101,105,103,95,100,105,99,95,113,108,98,101,97,98,101,113,94,95,108,84,112,91,111,100,123,96,129,114,105,90,104,108,128,98,104,104,97,97,103,96,102,103,93,105,102,100,96,79,98,104,90,105,81,101,98,98,100,106,116,104,95,97,112,91,108,96,102,92,104,109,107,100,111,101,114,108,96,107,112,108,93,108,109,108,105,91,95,111,96,106,106,104,106,96,100,94,107,104,108,107,106,100,96,95,101,102,95,103,97,114,101,99,104,108,102,107,104,98,80,114,96,96,111,113,112,112,91,112,107,86,109,99,102,107,104,91,96,101,107,90,104,97,111,97,102,97,107,72,106,113,105,105,96,105,101,101,113,110,104,114,87,94,98,88,94,93,105,109,101,94,97,107,102,112,98,103,108,91,121,121,90,86,105,106,105,115,106,100,103,97,106,110,102,96,103,96,115,106,112,103,101,94,88,103,98,107,109,91,115,103,121,109,98,112,97,97,95,98,98,103,107,106,105,94,111,107,106,105,107,110,115,94,93,110,105,102,108,113,97,101,111,104,99,110,110,94,111,101,111,107,98,88,114,107,104,91,115,107,100,100,94,109,106,107,120,125,99,92,110,105,83,101,109,99,103,114,100,101,97,104,106,114,95,106,91,107,105,92,95,99,95,81,87,100,103,96,103,110,98,114,106,92,92,100,109,117,102,112,108,110,104,118,99,99,100,95,100,107,94,103,108,117,105,87,102,99,105,103,100,100,103,106,103,99,97,85,133,98,96,106,117,99,110,93,98,101,101,109,108,106,104,106,102,94,97,107,100,112,80,96,109,112,118,99,91,106,117,120,109,96,112,112,110,96,106,104,96,91,104,100,104,122,109,82,107,108,109,107,101,105,103,104,106,109,96,93,94,116,113,114,98,103,103,102,113,96,89,107,103,100,98,101,102,115,96,99,100,103,91,103,105,88,107,104,112,108,95,91,110,76,102,105,99,104,104,98,103,105,103,98,110,104,94,103,114,106,79,101,118,99,95,108,108,100,115,100,107,106,104,103,99,109,97,95,104,94,97,99,113,93,107,98,97,106,96,108,94,104,103,104,92,99,112,109,101,99,100,106,100,110,111,99,100,96,117,105,99,78,83,137,101,107,105,103,102,123,108,94,119,99,108,109,106,97,117,95,99,107,123,113,101,102,107,105,88,92,110,105,99,102,114,99,103,95,113,108,93,94,99,84,102,107,103,104,103,96,95,99,95,99,95,103,105,97,106,102,109,108,111,101,90,93,97,96,111,108,102,108,98,105,101,103,90,99,91,106,93,109,104,109,101,99,99,103,104,117,103,106,100,98,98,105,101,103,101,90,98,88,104,106,111,110,102,118,110,100,112,70,91,122,103,110,84,103,110,114,94,98,112,120,99,98,111,108,101,101,98,101,90,97,98,108,140,102,105,100,103,77,109,100,71,100,104,108,91,109,112,117,103,111,98,92,113,109,104,104,104,107,106,96,98,116,96,105,115,93,99,113,95,110,96,101,108,113,104,96,115,96,118,108,110,100,108,100,97,97,92,108,94,92,94,95,105,101,106,110,102,102,112,105,97,99,99,101,102,100,95,97,96,100,97,100,113,100,104,104,104,95,108,93,119,106,98,98,99,91,104,100,91,113,96,102,104,103,103,100,91,116,95,99,99,95,106,99,104,113,112,104,96,103,103,101,121,97,100,110,102,97,101,91,111,117,88,102,105,104,122,114,112,85,101,99,105,108,106,112,106,107,134,108,101,116,104,109,103,104,109,97,110,106,110,106,104,104,115,110,112,108,105,110,99,118,93,101,103,107,108,106,104,100,129,101,86,109,113,100,99,100,101,112,95,91,92,113,105,99,106,107,108,109,104,103,103,106,113,91,99,109,107,102,96,91,104,101,109,101,111,110,102,95,105,98,107,110,96,105,112,112,101,105,102,105,100,108,107,98,100,98,98,113,100,103,104,107,110,113,107,90,102,97,113,102,114,127,98,93,99,89,114,114,95,111,100,124,113,108,105,99,114,87,106,104,94,99,97,97,109,105,101,105,113,109,101,107,112,83,110,109,107,104,89,102,113,110,106,91,92,98,104,112,98,119,100,102,106,99,108,96,105,105,110,94,97,103,104,108,109,98,105,103,98,115,108,108,113,111,100,97,91,101,98,103,101,101,105,93,82,115,90,103,96,100,109,102,104,82,99,103,96,104,92,111,108,97,105,91,96,100,110,109,99,100,101,98,103,113,97,100,94,102,99,95,71,100,108,112,108,98,99,106,100,113,103,99,93,108,86,102,119,109,96,109,109,103,97,109,98,106,107,110,104,111,104,120,107,111,116,106,130,107,102,99,126,119,121,102,120,115,100,105,95,104,115,111,125,104,110,115,108,95,113,90,106,77,101,107,112,112,96,94,99,111,98,89,109,106,107,108,102,116,122,114,113,101,99,96,106,110,108,121,101,105,99,117,110,111,105,123,107,98,74,107,106,112,93,109,99,109,104,94,107,100,98,111,85,114,114,83,102,108,104,117,95,93,91,111,93,97,109,100,94,103,95,91,107,106,101,125,117,105,96,108,106,115,95,102,106,122,106,112,113,95,95,109,102,119,106,104,107,111,102,100,102,113,98,102,104,107,100,107,108,68,109,99,115,106,104,119,120,104,118,93,103,114,115,101,94,111,108,102,103,115,101,103,99,108,104,109,98,95,100,112,111,105,102,87,98,102,105,110,90,103,118,99,98,103,99,96,107,111,102,95,110,109,114,110,101,117,108,116,110,102,102,104,101,115,112,107,101,117,108,105,98,107,100,99,98,102,109,99,108,103,105,106,104,102,88,111,108,107,109,112,104,99,101,105,119,107,103,113,113,108,79,87,109,106,110,101,123,110,114,102,111,100,98,99,112,93,112,116,115,79,110,106,104,116,110,105,103,93,118,96,102,98,98,99,117,88,112,91,103,92,102,101,104,109,108,105,101,103,98,100,108,105,107,102,89,98,117,111,108,111,103,103,97,109,115,113,139,110,84,98,120,100,104,101,99,87,106,98,103,97,117,101,107,111,90,113,102,98,99,102,110,111,116,105,111,104,120,105,103,109,91,97,102,99,104,108,95,106,106,109,103,106,109,111,96,109,111,101,107,102,95,104,107,101,107,106,113,105,101,91,100,100,96,97,100,82,106,104,100,105,97,102,106,123,101,96,100,113,110,117,104,110,108,105,98,106,109,104,108,100,105,95,111,100,107,110,106,105,96,108,96,107,111,104,119,109,105,97,98,102,113,102,104,120,108,105,96,136,95,105,113,99,95,103,102,109,104,112,104,95,109,112,112,113,101,102,105,105,101,110,97,121,103,109,100,96,108,110,102,110,105,101,98,100,106,97,109,105,101,101,92,104,91,99,96,105,119,110,106,100,110,103,103,108,99,107,99,102,96,116,113,123,105,109,123,106,113,107,101,99,98,108,106,99,105,97,102,106,95,110,95,102,107,98,106,116,111,91,109,101,105,100,103,108,109,98,99,100,105,99,91,105,117,108,97,110,108,110,97,108,109,99,96,107,94,103,97,109,103,85,103,108,100,98,87,111,103,106,105,102,102,106,109,99,104,113,90,105,113,103,109,95,105,108,98,113,102,108,105,101,111,103,126,96,118,119,91,106,88,105,102,108,111,115,105,112,94,109,107,105,104,103,103,108,111,111,86,104,105,101,98,98,93,109,112,107,109,119,108,111,106,110,95,103,110,116,95,120,101,96,117,110,110,105,105,103,104,112,105,104,100,112,100,113,109,103,102,101,106,95,106,97,96,103,103,113,104,108,110,97,107,102,98,115,128,101,104,103,119,107,97,98,95,102,105,103,102,105,110,91,105,96,97,103,104,105,91,111,105,98,95,110,102,93,105,102,106,99,98,95,114,101,103,105,105,101,105,85,109,112,87,108,94,113,97,108,120,98,107,107,103,90,108,104,112,96,108,118,100,112,109,102,100,105,102,102,111,113,97,113,103,99,130,109,109,102,99,105,100,102,110,109,100,95,120,100,101,96,93,104,103,107,110,110,115,87,112,109,112,110,91,114,107,102,101,109,91,105,105,124,98,103,94,104,116,104,107,104,114,96,81,100,92,116,104,109,107,103,92,100,102,100,107,95,105,108,110,105,98,110,107,105,114,106,113,91,111,100,105,110,106,108,112,101,112,109,106,104,104,93,102,120,97,102,110,93,110,106,120,96,103,117,110,115,106,99,113,103,113,132,105,114,134,106,113,90,104,107,113,106,109,98,97,80,103,102,108,107,97,108,95,106,101,94,98,102,102,112,101,102,104,107,111,95,98,106,98,107,111,107,100,103,109,98,98,110,99,104,110,92,103,96,102,115,108,98,95,109,112,110,91,94,86,103,101,90,107,100,111,119,88,93,94,109,98,102,95,100,98,105,96,94,110,108,99,105,108,102,106,87,100,93,109,108,93,113,110,111,100,118,109,118,104,99,104,101,116,100,113,94,107,104,95,99,105,106,102,108,104,99,104,116,91,106,110,120,100,109,99,109,113,102,104,106,101,100,112,95,112,141,108,112,103,97,127,104,103,108,104,105,111,124,106,109,94,122,99,96,86,94,102,133,92,91,97,108,101,103,117,98,100,96,106,101,106,107,102,104,92,91,113,109,113,106,99,97,100,95,103,74,103,104,99,109,96,114,113,116,94,104,96,95,111,66,91,100,104,108,106,96,100,72,101,113,109,108,89,112,94,123,101,102,96,81,91,104,91,95,114,109,106,106,114,112,117,101,109,97,97,108,106,94,99,95,105,102,113,84,101,99,79,102,94,104,103,87,109,111,88,120,105,115,99,111,110,117,100,98,104, +620.62274,106,101,82,96,109,117,97,91,107,116,106,104,106,101,111,105,101,100,97,109,87,109,110,97,106,110,91,100,104,106,107,103,112,112,102,127,109,100,102,88,100,108,93,108,98,100,110,110,110,104,91,86,131,111,115,116,100,101,97,121,107,117,107,95,117,99,94,113,95,103,100,99,91,114,91,121,102,94,94,90,102,106,117,105,109,92,95,109,105,98,93,104,104,107,111,99,106,93,97,100,113,109,93,96,104,97,102,101,114,103,99,95,95,92,100,109,98,90,93,111,99,91,102,112,119,100,114,101,108,102,99,119,93,101,109,86,106,108,105,103,106,114,90,107,107,108,110,105,93,96,99,106,118,97,94,95,106,108,102,94,108,119,111,96,93,99,113,101,67,94,91,90,96,112,120,86,100,105,102,102,98,115,109,103,96,106,98,94,93,104,59,98,107,101,100,107,113,104,109,77,108,103,102,110,108,91,108,92,101,100,94,103,103,89,97,88,108,111,106,90,101,96,100,99,101,102,102,98,109,107,103,117,106,89,103,108,99,102,104,104,102,97,92,98,94,110,111,100,103,114,106,95,92,106,101,111,109,113,101,113,100,95,105,110,84,100,92,111,93,95,100,91,116,95,97,107,90,110,92,89,102,96,98,100,112,112,102,97,111,100,89,97,105,109,104,98,107,98,89,105,103,92,106,109,108,102,111,100,95,110,92,105,91,90,109,130,95,113,118,97,110,94,82,105,102,99,96,92,114,105,107,95,96,111,117,115,97,91,88,101,91,99,98,111,96,107,114,110,113,109,93,104,109,105,93,95,102,110,111,111,100,107,104,109,104,91,101,109,98,93,121,107,101,100,99,102,123,109,106,109,103,103,104,113,96,92,100,87,102,89,98,105,83,104,102,101,104,98,108,100,104,139,90,94,101,90,98,107,108,95,95,98,112,102,66,110,108,90,114,100,100,96,103,97,101,96,110,101,105,122,101,103,103,102,112,97,109,103,103,106,109,108,115,101,101,97,91,101,106,99,99,109,106,98,105,112,105,105,108,78,106,96,113,99,104,108,104,106,104,91,89,106,99,101,105,108,96,122,101,91,102,102,109,92,82,112,103,110,102,102,113,113,106,98,103,99,96,99,100,97,118,111,109,105,104,116,100,100,111,104,100,102,102,106,114,103,101,92,95,95,109,104,109,105,106,109,105,97,97,105,107,91,105,103,109,110,111,100,117,111,86,113,96,101,98,101,98,103,104,109,98,108,102,95,107,96,104,107,100,87,120,112,111,112,104,109,112,95,110,105,103,111,94,106,103,105,100,93,104,108,106,100,106,99,110,99,105,91,101,113,110,101,106,106,110,103,97,101,99,107,108,105,91,121,117,67,98,89,106,109,103,102,106,111,106,103,98,109,108,113,113,92,107,92,111,113,108,107,101,111,103,103,98,106,106,97,98,90,94,102,111,102,104,95,106,98,100,105,104,101,106,109,104,109,113,102,112,117,96,114,113,106,105,103,98,89,114,99,100,108,121,96,116,108,110,95,104,113,102,110,106,103,103,95,98,90,89,106,102,101,105,104,107,112,106,113,107,107,106,88,115,100,93,109,108,104,101,110,95,102,102,101,102,87,100,95,93,108,102,100,114,97,104,108,105,108,109,105,84,113,107,105,99,110,103,101,91,107,95,90,111,118,107,105,111,93,108,104,99,114,106,93,97,102,106,101,101,96,116,115,98,104,98,100,87,102,90,101,112,92,95,100,99,92,114,94,100,110,103,90,101,108,102,100,101,95,110,111,102,108,103,101,106,98,121,108,105,114,112,104,86,95,97,90,94,107,110,106,98,102,105,100,96,101,111,103,130,99,108,111,102,109,102,108,100,111,89,116,106,103,91,106,111,97,109,104,107,92,103,109,103,105,102,98,100,104,100,106,95,90,101,106,109,101,99,118,104,122,108,104,94,111,114,118,100,91,109,102,122,121,104,100,105,104,101,105,99,106,105,97,107,105,105,111,111,99,100,100,99,101,108,99,96,102,107,101,98,118,99,114,110,105,110,106,105,100,91,108,95,97,118,109,99,105,107,104,112,108,104,102,96,101,106,109,99,108,95,116,107,102,105,112,107,105,99,106,112,99,114,109,75,91,102,109,97,106,103,108,99,101,106,95,103,104,118,92,112,107,99,109,107,90,115,112,106,99,88,105,97,104,109,98,92,101,102,87,108,101,109,111,98,107,108,100,102,116,111,99,101,101,129,97,105,108,97,101,100,105,107,108,110,110,106,93,105,113,107,100,94,103,93,101,108,106,102,97,103,105,100,108,99,89,94,100,106,110,99,116,117,115,126,105,110,115,131,90,103,94,107,96,104,119,103,118,132,122,120,111,120,106,109,107,111,112,112,96,101,112,108,104,107,106,111,105,105,101,99,103,92,117,100,99,104,109,110,96,112,114,96,96,105,110,92,100,106,102,99,91,121,89,99,106,103,107,93,87,95,105,103,99,100,99,102,98,98,107,111,113,106,87,98,114,96,105,100,69,90,100,101,102,92,97,98,103,105,102,105,134,98,103,109,107,104,97,101,103,102,101,109,89,97,99,88,118,99,86,92,100,108,97,118,104,112,82,98,91,97,100,95,111,120,108,102,87,97,106,107,117,103,96,117,96,107,102,95,101,100,114,116,104,104,115,86,105,98,109,113,97,91,112,105,104,103,108,100,112,95,100,97,113,105,94,95,103,100,111,108,102,91,110,107,109,106,109,103,90,107,96,121,98,113,100,95,92,100,107,107,126,105,96,98,100,97,108,104,105,104,95,95,97,105,106,94,96,102,87,105,102,88,105,98,103,106,107,90,99,98,109,95,113,103,112,109,100,105,102,94,112,103,127,100,100,121,115,117,97,105,109,101,108,100,98,104,106,107,115,93,109,92,88,97,108,116,104,100,106,102,98,109,101,95,99,104,95,102,104,108,98,102,105,103,108,104,95,120,116,110,104,95,93,106,95,102,100,110,101,97,109,97,95,111,94,112,111,124,94,93,100,112,102,111,103,102,106,97,102,102,96,109,89,104,99,97,107,100,91,114,103,108,106,116,87,106,110,103,95,102,109,108,109,105,98,101,113,93,104,105,99,68,108,110,108,111,101,107,93,104,85,99,108,95,91,95,115,124,103,109,101,94,100,95,104,109,99,111,100,104,107,105,98,105,106,101,104,113,94,105,103,101,109,87,105,98,93,92,101,96,108,107,95,104,99,80,107,113,108,94,109,91,102,107,107,99,102,102,104,79,105,98,91,102,107,104,106,102,111,109,115,89,93,111,102,100,96,104,104,94,101,113,99,101,105,102,96,96,101,101,82,103,98,98,97,105,99,99,99,105,99,100,98,98,108,112,105,112,112,103,106,101,103,108,104,106,103,98,101,104,102,102,107,106,91,98,109,95,113,102,114,100,106,91,104,98,96,109,97,107,119,96,99,111,106,79,94,106,104,122,109,98,105,97,109,99,99,99,88,105,98,97,100,112,98,103,118,84,95,96,121,96,104,97,106,123,106,111,108,87,99,95,125,118,91,103,102,116,107,109,81,106,95,108,92,109,83,103,96,105,97,100,99,100,106,104,104,102,96,109,95,99,104,91,116,106,105,93,99,110,101,110,108,97,101,108,108,98,95,102,104,106,111,95,102,112,109,103,103,100,107,98,101,115,95,99,102,117,114,104,100,113,80,99,96,109,98,110,95,93,109,106,98,105,92,98,121,101,110,107,108,98,99,107,89,95,109,106,100,104,97,107,104,106,117,93,106,88,118,115,94,104,98,120,105,108,108,102,107,92,107,88,113,102,113,102,103,105,107,101,95,89,109,67,109,100,110,101,103,89,117,109,105,101,101,112,95,102,100,87,103,120,116,102,93,112,116,95,103,106,101,106,94,99,106,113,115,103,98,99,99,66,101,104,113,106,107,97,114,117,107,95,99,108,88,114,102,105,100,104,102,94,108,93,101,88,98,104,102,102,95,102,107,101,105,101,113,113,91,99,114,103,95,91,105,80,98,94,92,104,104,95,101,125,105,93,106,99,100,101,109,93,114,102,108,100,110,110,101,99,106,105,120,107,98,99,102,107,111,95,106,110,98,98,93,104,103,103,102,96,111,106,110,95,105,97,97,107,97,115,109,100,91,109,97,115,103,107,105,93,99,109,105,111,94,106,91,112,101,102,107,107,109,109,98,104,96,92,103,110,106,108,92,78,109,121,109,103,106,94,107,100,103,103,103,97,112,101,98,105,87,98,116,99,92,109,108,104,83,107,102,104,100,98,108,107,100,109,100,96,103,105,102,106,110,111,92,98,106,116,103,118,103,106,103,108,101,103,101,93,102,101,111,96,132,105,112,105,91,106,99,95,100,106,101,100,104,106,110,96,96,116,94,109,104,98,102,107,112,90,95,105,97,109,102,102,93,98,95,96,109,99,115,102,94,103,104,106,100,97,96,92,96,79,106,99,108,115,94,98,93,128,94,99,95,90,98,103,106,109,110,109,99,98,98,121,100,97,103,120,101,99,102,111,98,104,103,95,94,105,110,109,103,112,90,98,108,103,103,103,107,88,99,106,97,110,120,117,100,99,106,104,98,101,90,105,91,103,111,124,83,87,101,93,107,93,93,92,100,105,103,119,99,94,104,112,95,120,91,80,91,109,104,103,92,101,103,95,99,95,97,100,92,99,96,95,100,102,87,105,109,116,100,108,108,120,112,95,99,98,104,78,106,102,106,96,98,104,104,125,102,80,112,108,109,108,101,106,98,105,107,98,98,107,97,100,89,98,107,121,87,103,124,99,98,87,102,106,101,103,98,103,101,91,107,110,102,126,100,104,103,100,97,105,94,99,102,97,111,102,103,100,112, +620.76379,94,91,101,103,92,99,105,103,113,103,103,86,93,103,108,102,116,97,110,106,113,103,106,97,108,111,103,100,106,100,106,102,101,83,102,114,112,104,109,111,94,122,102,94,99,115,111,99,102,98,122,91,94,99,103,95,115,105,107,87,119,105,100,103,96,128,104,107,105,91,118,99,91,103,96,107,100,97,94,93,77,96,104,108,97,91,93,109,100,100,104,101,100,116,94,99,105,107,94,106,87,102,91,92,105,104,100,110,92,100,95,96,107,109,110,107,98,115,106,101,96,104,101,101,117,115,108,108,106,98,99,111,106,110,92,112,93,118,107,97,95,104,101,98,116,104,105,95,97,87,100,99,102,102,103,101,105,95,96,110,120,123,115,103,101,103,116,99,114,91,96,74,99,106,93,108,97,97,106,103,96,117,105,121,104,99,106,99,107,100,97,103,123,112,101,102,110,118,104,92,114,94,95,99,114,93,100,109,106,104,106,111,99,103,107,91,96,107,96,127,107,95,101,108,88,104,105,101,106,99,90,99,99,104,113,99,100,99,98,102,103,117,103,103,103,107,95,103,100,99,97,95,92,112,122,107,98,103,90,113,101,105,114,101,117,106,108,94,91,96,96,99,114,97,111,102,102,104,103,93,98,109,71,95,107,104,103,103,113,81,111,102,99,108,96,109,109,95,106,102,103,103,99,114,90,110,100,113,100,101,107,103,103,105,103,118,99,107,107,103,106,107,115,111,97,101,96,95,108,111,96,104,108,106,107,105,95,106,99,110,92,102,97,105,95,99,117,106,110,111,95,109,99,98,110,104,99,82,109,103,118,98,105,94,98,100,109,103,88,101,96,107,111,114,106,100,115,106,91,117,104,111,98,115,102,102,108,106,99,90,117,100,91,104,107,106,90,101,108,107,99,96,94,93,105,109,106,133,102,116,100,103,110,117,110,98,102,107,102,97,91,90,101,109,103,107,110,86,94,118,90,101,86,109,103,98,83,108,105,101,101,109,104,95,94,109,103,101,108,108,103,106,107,100,103,99,82,108,120,117,104,98,99,120,107,92,110,93,101,91,118,105,102,99,106,95,92,116,110,108,98,108,113,99,100,121,102,119,118,104,116,107,101,105,104,100,107,113,109,95,99,101,100,111,109,103,94,106,106,112,112,97,102,108,107,110,95,100,103,104,108,103,98,113,115,102,100,104,98,109,77,105,118,101,99,106,112,115,104,109,107,109,124,110,101,118,105,103,107,91,111,95,110,120,108,94,121,96,105,99,110,105,112,110,96,123,95,98,116,102,103,100,107,107,102,97,106,96,92,106,109,101,117,97,111,88,105,87,102,107,109,104,111,105,102,108,117,105,101,99,108,109,111,80,96,98,101,93,105,100,104,103,98,108,109,107,97,115,109,107,107,114,118,96,105,103,110,96,105,108,114,102,103,111,99,95,104,107,113,107,106,111,103,100,96,94,84,101,116,104,93,121,117,103,100,114,111,116,103,96,109,108,107,118,104,101,104,106,114,110,95,102,101,100,108,102,102,97,109,97,107,109,107,101,93,97,99,114,106,109,107,112,114,101,106,98,100,107,101,102,96,113,93,94,110,116,107,99,106,118,93,82,109,103,109,97,100,96,117,92,109,70,97,103,102,100,102,109,109,116,104,113,106,94,113,115,103,103,106,96,106,93,95,102,100,98,101,112,103,100,100,97,92,113,99,110,102,99,113,101,103,112,99,111,84,95,93,95,118,110,87,103,116,116,101,108,96,94,106,117,99,101,109,101,103,88,100,106,100,108,106,102,107,92,103,102,109,98,93,104,102,100,97,108,105,107,93,98,102,103,102,100,106,101,93,104,111,99,104,100,110,95,100,101,101,102,121,102,113,109,107,102,102,101,103,109,116,107,97,104,94,106,104,108,93,104,93,87,72,107,97,101,112,107,94,117,114,107,110,110,83,103,114,111,100,108,96,104,121,104,100,109,92,101,97,99,109,104,101,80,108,105,95,102,108,106,100,96,109,109,115,105,107,113,106,93,110,102,110,113,102,107,102,106,98,105,90,107,98,95,112,98,103,96,105,105,99,102,108,106,122,103,100,113,110,105,104,96,92,104,92,101,111,78,99,86,93,98,104,108,103,108,102,105,80,100,111,113,106,108,108,110,105,102,125,91,113,105,96,99,116,106,101,109,120,93,106,108,114,120,99,106,105,105,104,93,100,97,106,106,99,107,95,96,108,94,99,121,99,104,113,99,105,123,104,109,108,99,113,105,119,110,103,98,108,107,107,100,98,99,108,104,97,108,93,110,107,95,105,104,104,111,83,98,110,100,106,104,88,99,104,117,108,109,94,101,98,102,105,116,110,104,97,121,103,113,115,113,125,102,129,112,114,103,108,111,107,111,112,107,110,104,109,108,104,103,99,105,101,100,91,111,115,104,91,122,99,104,103,109,90,85,92,112,98,98,95,101,116,103,108,114,105,104,84,95,95,107,109,108,91,102,98,101,103,98,105,110,96,79,94,108,108,113,94,104,105,106,113,119,115,104,97,101,117,106,105,93,96,99,100,98,102,105,104,103,106,99,110,108,98,99,95,110,105,109,108,113,113,103,111,107,119,103,112,99,100,104,111,102,96,95,109,109,102,109,80,101,100,101,110,91,114,102,108,103,104,108,116,111,100,91,99,117,124,91,110,98,102,113,108,96,100,101,104,100,107,105,103,105,108,114,107,109,105,116,94,94,104,98,104,111,99,96,116,101,112,106,82,111,111,108,114,96,113,99,108,101,106,109,99,113,108,111,100,98,108,106,109,117,110,88,108,97,108,106,113,101,108,100,131,114,99,108,109,101,112,104,100,106,117,106,113,113,125,101,95,103,102,98,109,112,110,107,106,94,108,107,115,113,115,101,110,101,103,95,77,108,109,97,89,104,99,105,102,106,95,99,108,113,97,108,93,97,110,99,104,100,102,107,104,107,102,97,109,107,109,95,109,79,119,93,104,92,109,100,112,103,95,98,101,100,103,116,116,112,114,105,101,114,122,108,107,99,104,104,106,93,114,104,103,103,102,102,108,108,99,106,99,113,119,117,96,101,104,106,107,92,106,106,107,81,104,140,110,103,107,100,96,99,124,104,107,119,101,106,128,111,97,115,112,97,102,104,109,115,96,108,106,103,102,105,100,104,120,107,107,104,117,108,91,101,105,100,114,99,103,100,112,94,115,104,90,102,102,111,104,102,112,110,100,104,102,108,105,100,104,96,104,112,99,103,100,99,104,109,111,113,107,99,111,107,105,108,101,113,111,71,107,109,105,113,112,101,110,104,106,94,110,100,106,103,96,80,109,78,102,115,104,93,101,98,110,110,89,105,94,89,105,108,101,104,102,118,109,104,103,106,102,94,113,99,108,109,107,110,104,96,102,103,98,106,113,100,109,100,105,120,97,106,102,99,109,110,97,109,111,106,98,94,101,104,109,102,107,103,93,104,111,121,103,103,124,103,107,102,97,105,108,97,116,98,96,110,104,99,104,105,93,106,99,101,111,98,107,99,100,98,102,111,98,102,109,111,108,103,95,102,110,102,118,102,102,101,100,110,127,88,106,108,105,106,108,99,110,93,111,111,96,111,101,97,104,110,114,98,124,94,101,99,113,96,128,93,99,116,108,112,104,102,113,107,107,102,109,99,101,90,117,81,103,97,108,102,109,109,101,108,104,98,106,103,104,109,94,95,109,110,109,102,106,104,105,107,102,105,100,103,110,109,106,95,111,108,103,106,97,96,94,115,96,113,92,107,106,125,106,100,99,115,109,110,101,120,117,93,96,96,100,95,99,107,91,112,100,104,109,98,106,98,98,103,91,113,110,107,115,102,98,93,99,104,104,106,108,103,102,98,102,111,109,104,92,99,104,111,98,101,109,96,99,105,107,112,101,105,73,94,122,107,106,87,91,111,102,109,103,94,95,108,98,107,105,112,104,98,107,111,92,107,100,117,106,94,102,103,114,113,108,96,102,101,113,91,102,99,107,99,109,95,102,109,103,104,126,108,114,108,115,109,109,78,100,87,102,94,100,105,91,97,108,110,108,108,71,98,93,116,84,98,94,102,107,91,106,108,104,120,99,88,103,99,94,106,129,77,96,107,101,102,98,105,99,99,92,107,107,99,108,124,101,109,102,119,107,104,108,84,102,106,124,118,92,111,101,94,93,90,106,109,110,101,108,104,98,110,110,112,108,105,94,106,121,107,119,100,109,103,102,98,122,100,112,120,102,105,102,111,97,97,98,104,92,113,91,104,100,102,110,114,112,74,106,106,128,99,104,105,107,100,116,110,107,106,105,106,105,106,89,96,100,86,106,117,103,95,105,95,104,108,105,114,98,104,102,103,109,120,105,94,92,104,106,106,104,108,105,83,102,106,112,106,94,116,96,98,98,94,113,99,109,113,107,102,96,90,91,100,113,93,118,102,102,104,111,97,98,104,102,109,94,105,113,110,111,113,103,109,102,96,102,96,106,98,101,90,106,102,104,136,103,105,96,109,112,96,96,110,109,95,104,94,103,108,105,108,105,110,88,112,102,98,110,100,109,97,95,110,104,107,91,99,104,116,106,114,107,115,99,109,108,96,106,95,88,95,104,118,110,109,77,104,105,100,87,106,100,102,104,102,92,107,101,115,103,101,104,107,104,106,107,116,101,105,95,91,96,102,99,97,99,100,106,110,99,99,100,99,118,108,96,104,99,104,105,108,105,83,102,101,105,119,103,101,108,105,101,97,98,126,108,108,97,97,109,97,103,103,99,113,92,109,99,91,102,101,99,104,108,99,100,104,109,110,104,98,98,118,112,102,100,109,104,93,95,77,109,118,110,94,103,112,109,108,109,105,103,105,104,100, +620.90491,113,102,102,98,86,101,109,85,95,114,108,102,88,103,111,109,109,111,104,106,104,95,122,100,105,109,108,102,111,108,101,104,104,96,102,103,108,108,106,105,113,102,102,105,94,109,104,111,74,108,98,98,105,92,101,91,100,107,110,102,106,110,99,100,105,107,102,102,96,103,100,109,101,106,99,104,109,105,110,109,115,119,99,112,108,95,107,95,90,101,105,99,105,93,100,104,113,96,102,102,103,100,99,100,113,106,104,97,101,93,87,109,99,101,111,101,97,111,101,102,105,111,97,105,103,101,121,101,104,99,107,107,106,108,95,104,101,111,125,112,101,106,117,120,101,103,112,102,100,117,107,101,108,79,99,98,101,95,101,111,110,103,111,97,109,90,109,98,108,110,104,104,97,95,98,97,124,101,106,91,102,94,102,108,99,110,102,103,104,101,101,98,106,99,102,100,100,108,102,107,112,107,111,105,98,103,95,100,120,114,105,114,99,91,106,100,79,91,107,111,104,112,108,101,111,97,101,107,92,97,104,100,104,101,103,102,98,105,102,110,106,104,104,106,105,101,94,105,104,101,95,110,95,110,106,105,94,117,91,120,95,101,85,90,95,99,105,103,110,103,92,91,90,105,107,104,95,96,99,101,108,107,108,95,78,105,100,104,93,104,103,108,110,103,93,94,102,105,97,100,102,109,104,115,96,107,109,120,96,100,105,109,93,100,87,102,114,100,100,106,105,104,101,104,90,102,95,106,105,119,96,101,107,106,100,97,103,99,117,116,111,104,101,98,97,105,112,98,108,101,121,94,109,104,92,103,109,111,112,103,118,109,103,114,97,94,103,110,97,94,108,85,124,109,100,98,110,112,105,92,108,100,94,101,110,103,93,97,98,101,94,97,78,104,106,99,104,116,103,110,100,98,121,113,90,103,98,109,100,105,98,106,106,109,103,102,106,120,104,93,102,107,105,111,102,99,97,104,103,102,99,100,102,105,95,101,94,107,103,104,104,110,108,100,95,111,98,102,104,97,107,100,99,110,122,115,100,88,113,101,82,104,101,91,97,105,113,100,103,99,114,106,106,103,107,103,99,107,118,94,83,109,101,100,105,97,112,109,108,100,107,105,121,106,95,109,109,105,121,105,104,98,98,113,94,115,105,98,102,112,106,96,100,90,111,101,108,97,109,96,100,107,98,92,100,109,80,104,104,96,101,102,105,93,104,101,103,105,97,104,106,105,112,86,103,97,110,100,101,97,115,105,91,113,108,95,98,95,89,99,103,102,114,99,113,117,104,104,85,105,97,100,110,101,107,95,102,106,104,104,100,95,106,108,101,103,102,118,97,97,98,99,104,105,118,111,98,101,96,111,104,110,98,93,91,93,100,100,102,113,103,109,102,90,104,107,100,111,106,105,105,105,104,98,91,103,102,112,99,107,109,105,105,111,99,114,100,93,109,97,89,114,96,102,96,98,107,99,103,110,91,96,90,115,96,112,105,117,99,105,102,113,108,118,97,104,102,97,106,105,111,106,100,83,131,114,99,105,102,111,109,108,103,115,93,95,92,117,114,96,106,105,106,108,103,113,96,104,104,104,98,105,103,95,102,107,103,112,110,90,105,103,103,97,96,97,109,102,106,106,110,102,103,106,98,105,100,100,99,109,95,97,104,99,90,95,117,91,124,99,84,96,118,109,114,105,110,105,94,107,114,94,91,106,111,91,87,107,116,114,113,97,92,100,90,97,89,96,104,107,105,102,115,104,104,96,118,100,107,107,108,107,120,105,107,108,104,115,103,118,103,90,96,110,100,117,103,113,107,91,91,109,99,103,99,114,105,98,112,99,110,109,93,99,101,97,109,110,103,96,95,100,93,105,114,108,98,116,100,97,108,106,117,106,113,119,114,118,103,108,111,98,105,101,89,105,98,106,103,101,86,98,95,101,94,103,102,96,100,104,104,104,102,97,114,100,109,106,113,107,105,102,102,103,93,102,108,103,100,100,100,94,98,102,106,104,98,103,90,94,112,99,105,110,108,99,110,104,110,109,108,102,109,102,87,115,97,106,98,107,117,117,109,102,91,108,96,109,95,111,98,101,106,91,104,108,102,98,106,103,103,98,111,101,97,106,85,100,94,107,105,84,103,102,91,105,91,100,98,105,103,115,107,102,98,69,106,107,104,103,112,116,98,88,109,98,95,112,120,106,105,110,107,109,100,102,104,95,98,111,94,106,118,95,99,100,99,101,76,95,104,101,109,111,101,108,97,109,108,104,104,98,107,105,104,109,98,96,95,96,93,111,90,113,101,109,109,112,98,93,109,111,100,102,109,104,113,100,104,94,113,104,112,106,99,97,97,108,122,99,122,122,102,96,111,107,120,121,106,99,112,119,125,105,121,116,103,103,105,92,108,107,100,114,103,98,93,99,100,86,84,120,110,113,107,98,90,103,99,106,102,96,97,108,102,109,112,102,111,97,116,105,110,97,99,97,100,88,100,102,103,90,112,106,97,103,85,103,96,100,95,124,99,87,104,113,100,80,86,94,105,110,114,110,102,86,98,100,109,107,112,105,99,105,108,108,102,104,110,84,87,94,98,99,91,113,108,107,98,102,105,105,112,98,99,102,130,116,125,100,89,102,90,112,113,106,110,112,102,101,105,99,111,91,101,100,96,98,94,101,94,108,105,96,106,105,110,110,113,101,96,97,112,96,109,106,93,89,124,115,99,96,101,91,112,101,114,120,107,105,104,91,107,107,104,114,119,102,103,100,108,107,105,97,101,107,111,99,105,88,105,102,110,99,78,94,107,100,110,115,128,111,99,99,122,106,116,103,92,116,102,101,110,111,104,99,96,101,99,106,101,97,108,109,102,106,105,104,108,100,110,105,97,99,99,105,108,122,106,109,110,106,107,113,95,114,98,96,110,106,104,109,101,110,98,103,98,95,98,96,100,105,100,109,92,105,101,112,100,97,95,104,100,105,108,110,108,108,98,103,123,106,111,99,104,107,104,107,109,91,108,110,113,105,99,113,105,102,99,97,107,106,109,98,112,101,97,101,103,111,105,109,93,104,108,102,92,104,99,93,108,117,93,110,101,102,102,95,102,98,101,113,101,105,114,97,113,103,113,111,95,99,97,109,108,95,110,95,93,92,96,98,108,108,103,106,105,100,109,112,102,112,99,110,112,106,106,97,99,104,95,110,100,101,103,101,94,106,102,114,118,104,96,99,109,99,108,109,107,102,91,106,108,109,108,103,100,108,103,112,100,111,100,113,98,90,95,106,100,90,114,91,104,115,108,99,104,115,110,98,96,112,99,104,101,109,103,99,108,95,93,105,108,101,112,114,94,99,96,104,109,101,104,95,114,110,105,111,108,97,108,111,105,110,110,100,109,103,109,88,93,96,102,104,97,97,116,105,105,102,83,92,111,113,104,101,99,102,108,111,101,108,102,101,106,99,101,103,97,100,102,99,102,94,79,99,107,112,104,101,105,105,104,96,108,94,110,99,94,98,110,109,99,104,105,111,95,102,102,96,101,106,99,104,95,134,101,101,109,116,119,103,101,94,113,100,117,113,97,105,97,105,106,106,99,109,99,97,102,102,96,111,105,105,113,108,100,102,100,109,98,117,108,93,136,98,108,113,98,107,102,98,98,105,107,93,99,102,106,106,103,94,114,111,107,107,81,105,114,105,103,108,98,111,112,99,101,98,98,92,106,109,103,91,101,108,109,100,103,98,100,110,108,91,108,106,102,90,107,98,100,102,102,100,103,106,94,100,112,113,99,101,110,78,107,95,102,109,94,105,113,98,110,98,103,106,100,106,114,106,91,110,95,102,105,103,110,100,111,102,100,98,103,105,108,102,99,101,106,104,113,104,100,106,110,118,102,109,96,107,105,99,85,105,118,95,108,110,114,94,117,97,125,119,95,98,103,109,119,113,79,110,104,101,105,120,110,81,95,98,100,112,100,99,98,97,106,116,109,101,107,115,77,110,105,111,95,105,104,110,113,97,104,102,100,102,99,96,109,104,100,114,98,100,107,92,108,105,109,98,114,106,111,107,98,100,98,101,101,108,108,103,109,101,110,109,108,119,106,103,99,103,107,113,99,102,118,104,118,102,99,110,106,107,95,119,103,101,104,117,99,103,103,99,111,104,108,101,102,94,109,96,104,102,99,121,95,109,106,104,106,106,109,94,114,102,114,105,98,105,115,95,117,116,92,94,108,105,106,110,102,102,107,99,103,95,103,105,96,106,102,97,112,98,106,96,100,95,101,102,98,134,108,99,109,101,98,107,96,111,104,109,103,108,108,108,79,95,95,113,103,102,83,87,98,98,98,104,109,108,114,99,103,111,113,103,106,96,105,95,93,98,103,106,106,107,101,93,103,98,109,94,96,95,101,98,81,102,108,100,103,102,103,105,97,90,104,95,83,94,110,110,101,103,104,100,97,109,99,102,98,108,81,107,99,102,110,106,105,110,104,106,98,95,104,100,99,104,106,100,94,101,103,111,97,114,106,97,93,111,102,112,96,97,98,99,109,113,108,125,98,99,117,107,113,113,111,90,105,95,97,97,98,126,123,107,109,106,103,114,110,104,92,110,111,103,121,111,98,98,106,101,99,117,105,79,125,105,108,102,104,93,115,111,96,76,71,108,103,102,105,105,106,98,96,104,112,115,92,98,99,112,118,104,76,105,113,105,100,98,103,87,109,97,102,98,113,103,118,110,95,90,97,99,100,101,99,105,106,107,99,103,98,106,96,99,102,99,110,99,104,108,105,103,98,93,101,98,102,96,113,96,92,106,109,116,124,94,97,111,103,108,95,107,88,99,103,94,87,94,101,114,87,108,94,87,76,105,87,83,86,114,104,88,99,105,102,110,104,96, +621.04602,104,103,113,96,91,107,92,117,96,112,96,110,128,99,98,113,102,103,110,98,88,100,94,101,94,117,104,97,115,110,117,107,104,108,95,93,109,94,117,93,105,99,110,111,108,112,96,100,98,117,106,92,99,112,108,99,100,100,96,111,97,101,98,92,102,114,113,92,92,97,102,116,100,95,94,108,106,103,114,104,103,101,106,95,103,105,104,115,109,117,102,100,63,95,106,100,99,80,94,102,104,94,111,117,97,99,101,103,102,102,109,105,101,100,101,104,99,112,73,105,98,95,103,108,107,113,94,110,110,105,99,120,102,86,102,110,100,103,100,93,80,95,91,98,90,91,112,104,92,96,102,96,98,89,88,115,96,96,102,106,107,100,100,113,100,97,101,99,102,108,115,94,100,103,101,110,107,95,106,101,99,108,105,96,102,95,102,100,100,102,104,93,96,107,117,102,102,110,103,106,114,109,95,104,117,100,106,100,110,107,101,92,112,100,93,104,98,92,98,84,116,112,96,103,93,110,108,96,90,105,102,100,107,118,113,96,93,116,102,103,103,97,104,104,105,88,99,101,103,112,103,100,106,110,103,97,98,113,95,104,112,96,103,96,95,101,102,98,99,98,106,109,98,103,100,118,83,99,100,100,95,92,104,113,100,106,95,104,108,110,100,102,104,102,126,109,100,101,105,98,127,109,108,95,102,113,102,77,109,108,105,104,97,100,111,102,91,104,116,103,89,97,113,103,115,109,94,96,102,112,107,90,106,110,112,103,100,97,100,106,98,99,99,112,101,109,108,98,114,108,108,108,113,111,102,106,104,105,103,105,86,91,102,102,97,111,104,111,102,108,103,104,112,105,98,109,72,106,103,101,118,100,98,97,102,107,102,111,100,107,105,98,107,91,115,103,106,80,107,112,103,105,107,99,101,104,110,97,110,103,95,92,110,105,92,98,94,111,106,112,111,105,91,96,104,100,119,106,101,110,93,104,110,100,88,107,104,102,104,104,109,101,95,95,89,109,91,100,101,110,113,107,108,113,120,97,130,107,102,105,95,98,97,114,113,102,99,101,103,108,98,104,99,92,105,101,106,110,107,101,98,107,113,99,110,100,110,105,113,99,110,111,96,96,114,106,100,100,99,96,103,109,95,115,113,103,99,99,98,99,102,100,110,105,100,91,112,102,116,97,117,104,106,100,85,101,103,103,102,97,104,104,97,104,100,122,98,101,99,111,104,117,86,110,104,103,97,100,109,109,104,104,103,98,97,101,107,101,112,96,103,108,95,99,118,96,112,114,99,105,105,101,104,100,123,92,85,95,121,97,105,100,92,97,108,114,113,103,105,107,108,110,103,100,110,118,104,99,96,105,95,107,121,105,102,95,101,105,109,118,106,109,98,106,104,95,116,96,105,96,108,107,102,93,108,96,94,105,104,102,101,111,104,97,105,96,97,101,107,105,97,105,97,105,103,86,101,116,107,99,95,101,112,113,99,99,112,103,100,98,109,99,115,95,92,92,111,103,106,97,103,109,113,102,98,119,114,112,116,104,112,108,108,103,92,112,96,101,98,104,107,110,94,117,103,105,99,115,104,102,101,100,96,103,106,110,113,112,111,78,112,97,108,100,96,100,102,99,108,95,109,97,99,119,114,102,106,103,108,115,114,105,110,103,97,109,101,105,107,90,82,81,107,99,109,101,105,106,105,78,99,105,102,104,101,99,113,105,100,105,101,115,112,93,101,105,99,91,106,113,109,99,107,103,100,115,111,98,99,97,99,103,116,112,89,111,99,99,98,114,110,106,96,107,100,95,95,103,99,102,109,102,104,95,103,103,108,106,102,105,103,90,99,91,104,110,111,112,102,105,113,96,102,107,100,106,100,107,108,101,104,102,113,108,108,116,97,97,108,117,91,110,98,99,99,94,100,79,106,101,92,100,114,104,114,93,90,108,102,94,107,76,90,108,103,103,102,103,112,86,98,108,106,104,99,104,104,66,101,91,103,97,99,98,107,98,97,106,111,108,116,107,105,104,98,92,102,106,99,100,98,95,105,110,105,108,111,104,98,108,110,111,105,103,109,84,91,107,110,103,98,96,113,108,126,92,89,101,103,106,102,120,105,117,111,106,96,106,105,102,105,109,107,105,98,110,95,97,82,110,95,109,99,110,97,113,100,108,113,73,115,91,108,100,98,97,103,103,98,99,109,105,108,103,101,104,106,107,118,105,95,104,95,102,98,102,101,94,99,114,100,100,103,124,95,105,94,113,112,104,104,90,103,99,103,101,111,107,97,100,102,102,93,106,99,107,104,104,101,98,107,113,103,98,101,109,101,103,113,95,110,108,105,105,105,105,109,110,109,102,103,109,129,101,109,112,117,128,117,111,122,111,99,93,106,104,96,124,98,111,106,102,116,99,106,101,105,100,112,93,100,113,108,111,113,106,103,102,108,113,102,118,90,100,97,101,122,104,102,86,103,104,103,106,89,100,111,111,104,107,102,90,112,92,104,117,101,96,102,107,114,102,98,104,117,99,101,111,100,94,106,95,97,101,102,96,96,106,109,103,109,106,113,93,99,100,110,99,83,98,102,104,103,107,104,102,99,105,113,105,105,115,106,108,103,104,107,102,100,99,105,96,94,97,90,108,113,104,105,96,114,104,104,74,91,101,109,98,103,98,113,107,97,105,108,108,76,110,99,101,99,106,103,102,106,98,97,92,93,117,106,110,79,112,103,111,110,102,79,124,110,86,101,108,101,93,119,103,96,109,106,103,104,105,105,96,102,115,99,105,96,106,95,117,110,91,118,102,111,98,102,97,103,99,102,109,110,100,103,109,103,100,100,103,108,114,92,102,91,106,97,95,102,109,110,101,105,116,103,118,104,117,110,108,107,101,92,104,105,105,108,105,109,109,101,103,109,106,107,100,80,102,100,104,111,103,104,104,96,110,100,99,100,108,102,93,102,102,113,100,117,116,103,112,99,113,112,104,93,105,110,111,106,116,93,114,103,108,103,87,97,99,107,99,112,107,99,96,103,87,112,95,86,93,111,90,110,107,119,114,103,104,118,106,100,103,96,107,93,105,105,105,113,111,109,101,113,105,106,94,112,95,110,121,103,104,101,102,110,112,108,109,105,103,107,104,100,97,115,112,103,111,99,99,109,101,98,107,109,105,102,101,90,113,89,109,104,118,97,111,102,103,101,102,111,104,104,102,100,114,98,113,98,107,105,105,109,109,102,102,97,107,99,103,101,102,105,98,98,107,96,100,101,112,125,106,101,100,104,103,109,112,108,99,108,109,101,98,108,98,100,105,111,107,111,113,106,102,102,83,99,108,109,100,108,107,125,90,122,103,99,106,106,102,107,104,90,99,107,90,108,98,97,103,108,114,97,99,121,109,91,95,107,108,97,99,102,109,103,113,99,94,94,110,105,102,108,103,99,115,101,116,104,119,104,104,116,106,99,114,108,113,123,114,105,104,103,102,109,101,111,108,108,104,102,103,104,119,103,92,99,101,102,107,102,100,106,100,107,103,96,119,105,102,109,105,110,110,121,109,90,98,105,105,95,108,103,99,115,99,84,99,107,99,98,100,111,101,86,102,84,115,103,104,100,99,108,116,105,104,89,115,109,83,104,110,104,105,101,119,104,101,101,106,96,108,106,103,106,107,105,109,104,109,101,96,92,104,114,109,104,99,99,101,104,108,99,103,102,94,113,107,105,96,106,95,105,113,100,106,103,111,108,101,98,116,101,104,103,101,103,96,101,95,100,106,100,113,116,116,120,112,113,113,111,105,113,102,93,110,113,106,112,103,109,100,106,102,94,99,96,101,103,96,98,99,112,105,106,106,94,104,108,104,103,104,112,114,103,119,103,99,102,102,113,101,86,109,99,94,101,83,113,101,102,93,110,108,66,102,99,112,108,111,111,112,102,94,104,97,98,102,111,109,113,108,109,91,100,99,109,97,74,104,113,98,108,117,108,120,110,106,91,113,95,100,96,105,107,101,109,108,106,104,98,104,108,111,109,99,107,104,99,118,103,107,110,98,112,105,116,93,98,99,113,110,101,100,100,104,107,106,106,109,117,110,100,106,108,106,114,109,108,92,86,125,111,100,103,105,89,91,100,121,104,106,101,101,97,117,99,93,104,101,100,97,117,104,95,109,112,112,113,110,107,107,113,93,103,91,111,104,97,112,103,87,108,100,102,105,106,99,110,106,105,107,91,107,103,104,98,110,120,108,124,105,82,108,101,102,103,101,126,101,94,96,90,98,100,104,110,102,109,112,92,113,101,101,105,108,104,123,107,102,100,120,109,92,105,98,110,103,105,110,101,98,111,102,103,109,109,101,95,109,108,96,100,111,113,91,116,99,111,99,75,109,89,104,101,102,89,94,102,110,87,103,100,103,98,106,111,106,109,95,102,78,98,102,100,115,100,100,105,99,105,105,96,99,101,84,84,98,106,94,102,89,98,99,101,108,91,100,101,110,100,104,103,94,110,117,109,106,102,113,120,98,98,91,94,105,101,112,105,93,102,95,113,100,103,104,98,105,108,107,117,102,105,107,106,102,95,99,109,109,102,104,115,103,98,105,98,104,103,88,102,104,100,106,95,97,107,101,110,95,98,103,99,99,114,102,98,99,113,106,98,102,109,110,105,106,101,112,101,97,108,119,98,105,101,94,116,116,99,107,97,91,83,98,99,92,93,101,90,100,111,91,98,89,115,107,105,98,101,113,108,94,93,99,87,99,99,94,102,116,103,109,100,115,103,97,122,99,99,107,101,103,96,104,112,102,98,93,96,95,105,111,111,103,94,119,114,121,112,96,83,90,97,92,107,109,98,101,103,92,107,90,101,105,102,89,101,103,104,102,104,109,96,111,91,101, +621.18713,105,96,74,109,99,109,95,109,105,115,108,109,109,105,120,94,103,102,106,97,104,100,107,100,104,103,112,115,105,124,107,99,96,114,98,97,109,102,96,111,103,103,100,104,102,95,116,103,102,99,107,99,96,102,103,102,115,96,83,97,104,71,105,105,107,105,87,113,123,99,101,109,104,99,102,116,106,95,107,110,110,98,98,104,105,99,88,115,103,90,96,105,113,96,95,102,101,110,80,95,86,106,98,101,95,103,100,100,103,97,95,102,106,108,104,105,110,100,96,104,102,110,93,105,106,74,96,97,114,101,109,105,103,110,113,96,105,90,98,104,94,99,100,100,101,110,95,104,99,91,101,99,101,113,93,108,106,110,105,108,108,107,94,100,101,98,90,101,108,111,117,114,96,114,109,102,98,100,108,105,88,115,95,94,113,90,104,102,107,94,89,94,109,98,103,111,100,96,96,109,93,102,121,93,100,107,106,98,100,108,95,104,102,106,99,105,94,103,96,123,107,109,121,111,95,114,93,107,111,96,122,106,106,100,103,103,102,115,112,99,95,102,108,117,103,106,99,105,97,103,96,109,108,108,90,112,91,97,100,100,93,104,104,89,97,104,105,84,102,102,118,102,104,99,112,98,106,106,95,102,108,107,103,97,101,101,97,107,92,95,103,106,118,92,104,92,110,110,107,102,110,105,108,117,106,97,114,96,106,107,99,110,101,103,109,99,80,102,89,106,109,94,107,97,110,98,105,109,108,114,116,103,98,109,112,93,108,111,99,106,109,101,100,99,106,95,95,111,107,101,112,122,96,104,102,115,95,117,106,107,112,103,102,85,101,111,113,106,94,107,102,103,114,102,97,92,113,115,90,106,95,101,112,118,106,100,108,104,114,96,114,98,105,107,96,122,106,85,109,113,105,101,101,104,110,96,92,100,110,91,120,94,95,100,94,106,102,112,107,104,95,101,95,109,99,98,91,109,98,103,101,94,100,111,102,99,106,121,106,94,100,107,104,100,108,86,102,98,93,92,103,98,101,121,105,91,108,99,107,99,91,100,100,105,112,117,104,91,102,115,110,101,93,101,107,104,106,111,108,112,104,103,111,95,109,109,98,105,106,104,104,111,107,121,96,99,98,97,106,88,103,101,100,113,102,102,103,99,108,83,108,98,112,105,95,95,94,103,111,102,105,106,102,96,104,95,114,114,69,113,95,109,132,107,100,102,112,125,98,111,98,103,103,103,114,99,102,99,112,99,94,117,110,97,92,107,110,102,100,90,91,111,98,102,96,98,98,104,104,107,101,86,104,102,102,98,103,99,80,102,97,114,106,99,106,98,103,102,101,90,105,103,104,98,109,115,110,101,107,103,104,101,99,106,101,97,110,100,96,114,132,98,95,101,115,113,96,114,115,113,120,110,101,104,100,105,103,94,109,101,102,108,92,101,96,109,98,107,110,119,115,102,99,102,120,101,125,92,107,102,104,103,109,110,119,108,110,102,100,105,105,104,109,100,99,97,101,102,109,112,110,99,104,99,115,117,119,98,109,98,105,101,112,103,102,95,95,110,106,93,101,98,99,105,92,108,99,104,104,100,117,100,99,103,103,115,113,105,94,101,106,97,100,113,105,101,99,117,91,86,94,109,111,112,100,92,92,114,101,99,109,96,102,103,93,96,108,79,102,96,108,94,103,106,104,90,100,102,87,109,100,106,101,96,106,109,96,104,110,106,103,106,90,103,102,108,90,85,78,101,112,97,112,94,100,105,94,96,102,100,98,99,104,109,101,115,102,109,93,98,96,103,116,100,90,121,100,105,100,95,112,117,108,103,109,96,103,117,117,97,110,94,102,96,102,104,113,113,105,107,107,103,95,104,107,98,113,109,97,99,116,104,104,104,91,98,128,95,108,104,100,95,123,100,100,109,99,100,99,108,103,100,112,99,101,108,100,107,104,113,99,99,108,109,96,105,103,113,97,108,99,103,98,109,68,122,99,102,115,99,118,119,98,97,113,95,104,119,105,104,109,109,106,107,122,107,99,105,115,107,101,99,105,102,101,104,95,94,95,106,102,116,129,121,99,110,93,99,95,101,106,93,103,110,97,86,108,95,104,106,107,112,106,110,98,93,110,101,104,99,109,106,108,105,101,111,117,120,118,115,102,108,107,117,109,111,107,106,101,103,108,105,110,106,97,96,107,106,109,100,95,106,107,107,132,107,94,113,101,108,106,113,112,90,104,104,93,102,95,101,110,102,108,108,99,102,112,107,99,110,114,109,102,99,99,110,105,111,92,111,102,105,103,113,112,98,104,106,127,102,94,99,110,94,108,102,91,103,102,113,118,111,104,104,94,104,107,110,105,101,113,105,111,121,125,131,116,113,104,111,127,116,113,117,117,111,103,125,96,85,95,101,108,124,101,99,96,109,94,104,105,119,100,98,103,101,103,111,107,105,107,104,100,107,102,98,92,105,106,99,94,102,111,100,106,105,96,94,104,93,110,94,108,114,101,113,98,87,93,116,101,112,101,111,108,99,121,110,106,96,113,102,99,100,99,94,101,98,117,101,109,110,105,97,95,101,93,92,65,93,113,95,104,112,113,99,98,103,101,112,108,96,112,95,102,105,102,100,102,114,109,97,109,96,112,111,93,91,107,97,102,96,134,109,97,85,98,104,107,104,102,102,90,108,96,109,98,114,104,109,122,100,95,95,97,106,81,91,103,107,94,110,96,100,106,100,102,107,94,104,118,107,108,108,106,107,106,109,107,100,116,113,112,112,99,94,109,110,90,109,101,112,87,105,103,84,106,113,113,117,91,97,112,101,99,117,97,103,104,110,105,112,102,105,107,100,111,101,100,110,92,104,96,107,106,108,103,104,97,105,102,109,106,109,101,104,90,99,102,109,104,104,111,98,98,101,101,77,100,95,94,97,113,101,100,102,117,100,100,101,102,108,103,86,102,100,112,113,106,104,106,97,133,102,117,112,111,96,110,99,108,104,98,106,106,100,98,103,98,105,108,103,101,104,101,100,98,97,101,108,105,97,113,99,114,105,107,108,94,99,99,104,102,108,90,112,109,98,98,113,106,99,98,99,115,90,118,96,101,102,101,113,116,98,107,108,93,124,95,95,102,88,104,105,99,88,86,110,85,103,103,112,101,111,92,112,99,107,100,114,114,97,103,102,100,95,113,98,112,91,102,95,88,96,100,87,106,91,110,105,104,102,87,109,103,113,98,107,115,97,114,101,107,109,102,108,111,108,100,98,101,101,113,100,106,85,98,105,105,102,100,96,109,97,91,104,120,110,83,83,100,110,94,104,120,98,92,102,106,106,101,105,102,102,106,106,105,112,111,105,111,106,96,87,102,104,108,83,109,94,101,96,104,118,114,108,90,96,103,100,100,102,100,92,101,107,98,97,104,104,90,103,103,102,103,95,101,102,97,105,104,112,110,97,99,112,104,107,91,97,110,94,96,96,105,107,113,96,109,103,102,105,108,100,102,113,76,108,98,112,109,93,103,113,98,93,104,103,104,109,109,105,106,104,96,96,102,106,108,109,110,96,95,102,119,102,109,107,111,90,94,109,106,100,95,99,108,106,95,99,91,113,99,100,104,104,110,109,109,92,97,118,108,96,100,93,103,106,104,95,103,101,106,105,102,102,90,109,111,97,111,112,107,102,102,108,104,97,113,100,102,99,101,95,97,110,103,103,98,99,97,94,102,100,107,125,117,102,104,135,96,99,99,101,108,88,97,113,104,96,91,103,109,108,95,106,100,83,104,102,104,104,91,106,101,119,119,108,91,116,111,120,102,98,96,102,106,98,105,102,84,116,103,92,103,73,91,109,102,99,101,113,105,109,111,95,99,101,102,88,90,95,96,95,108,104,105,101,107,104,98,100,100,99,101,95,100,94,96,105,101,103,104,107,96,99,109,85,100,112,110,102,103,104,114,107,110,100,103,106,109,98,96,99,93,97,106,108,99,106,105,105,96,97,106,102,103,103,117,123,104,106,75,99,95,113,98,116,102,104,102,113,98,92,95,110,110,90,103,106,111,97,117,108,96,98,105,100,95,95,109,104,105,109,95,114,99,114,97,107,122,104,111,91,105,108,108,98,95,101,112,98,98,99,108,116,109,99,108,121,112,117,96,100,101,107,105,95,86,105,104,107,106,112,116,110,97,116,112,101,116,89,106,107,103,109,102,104,102,112,106,84,94,97,102,106,112,96,106,108,109,109,108,107,81,95,98,107,92,88,108,100,95,106,96,96,103,107,107,103,96,93,102,105,89,91,106,117,111,95,105,97,110,95,92,104,102,107,92,106,93,111,107,109,116,100,107,101,100,104,104,109,103,99,103,105,117,102,96,110,107,107,102,105,96,112,107,89,99,107,94,104,107,109,101,91,91,92,112,104,102,101,105,134,101,102,98,87,106,113,105,95,119,97,105,83,101,111,102,123,97,112,108,98,104,107,108,102,95,91,96,117,99,103,111,103,102,110,100,105,91,100,106,99,91,101,90,111,95,96,102,98,96,86,99,98,99,94,103,95,100,91,104,97,96,96,102,86,57,94,101,102,93,103,108,103,110,99,118,105,104,95,107,104,101,105,102,108,100,87,110,94,103,96,95,105,103,105,103,95,99,102,103,100,101,106,97,105,106,104,109,106,96,89,101,108,114,102,82,94,124,100,94,97,103,105,114,107,91,100,113,96,93,94,99,99,106,103,111,96,110,99,99,96,106,104,99,91,101,95,109,99,106,116,108,104,107,101,104,114,88,94,89,101,95,107,96,109,104,98,105,103,95,66,104,104,105,99,101,98,105,94,106,95,96,100,98,99,99,104,107,102,107,105,104,110,108,96,103,89,100,102,115,113,94,106,108,84,114,99, +621.32825,115,93,100,123,91,126,102,109,98,108,113,94,91,107,115,103,95,103,99,105,94,115,114,103,109,119,97,105,112,112,100,102,103,103,110,99,100,103,95,102,113,121,107,131,112,109,113,108,103,113,108,117,98,96,104,94,109,109,104,97,108,113,98,97,107,113,106,103,96,111,94,118,99,95,95,109,97,107,110,104,92,106,93,126,102,76,101,98,103,92,102,93,106,101,110,96,93,107,105,109,100,103,85,110,90,118,117,103,101,95,110,113,102,113,109,87,110,102,104,99,105,83,99,100,100,102,97,105,111,102,95,112,98,110,99,86,103,97,92,100,112,111,105,111,95,100,100,89,112,87,106,91,96,98,103,99,87,85,96,106,91,105,104,108,110,90,112,108,95,107,105,108,110,110,98,105,106,100,99,89,106,113,107,97,100,99,103,96,102,85,103,102,95,102,95,120,104,96,99,100,91,110,107,92,103,103,105,102,91,99,88,106,109,100,97,95,101,107,91,111,110,98,93,104,95,108,109,128,112,103,120,100,102,111,90,115,92,119,91,94,99,88,105,102,105,93,111,103,101,109,110,108,105,102,99,99,101,108,126,83,100,97,100,105,99,78,107,98,103,111,101,101,105,111,115,99,105,109,105,103,104,101,116,108,98,98,100,121,113,105,105,123,104,105,98,87,104,118,105,118,87,99,105,109,102,102,98,103,102,107,95,113,99,108,103,106,102,107,90,94,103,99,118,109,102,105,94,101,109,102,102,102,96,101,106,121,103,92,96,105,107,102,109,98,102,101,108,110,113,103,110,100,102,106,95,109,103,115,120,103,105,92,90,101,120,113,105,96,127,85,120,97,111,100,103,105,83,111,105,105,105,109,101,109,109,99,120,110,100,90,109,105,112,99,101,110,106,105,107,85,101,99,100,105,105,117,101,117,113,110,107,102,108,97,92,99,102,105,113,98,105,95,118,96,96,109,95,101,98,115,96,112,107,95,105,99,112,106,106,103,102,91,104,104,108,99,99,100,109,109,115,114,120,103,99,105,97,87,101,96,106,102,95,110,103,98,122,109,104,90,102,111,99,112,120,103,97,107,113,108,94,100,107,94,100,101,98,94,109,99,106,115,110,106,75,103,110,114,104,87,111,107,96,90,100,104,103,100,107,114,114,106,103,116,87,103,104,107,104,104,103,106,99,102,106,105,114,109,109,104,108,106,110,99,105,111,112,105,102,110,103,109,95,111,108,101,109,108,108,97,117,108,98,108,97,101,105,102,93,101,107,106,81,101,96,110,79,113,97,111,100,88,112,109,122,104,104,98,101,120,104,88,117,115,101,107,104,100,107,100,104,98,109,99,113,111,114,106,113,103,122,98,111,92,111,104,101,94,102,113,114,101,104,109,113,111,91,111,129,98,126,114,109,109,108,102,106,119,111,113,87,103,94,103,100,102,100,109,110,91,101,99,98,99,87,97,100,105,94,104,97,107,102,102,98,101,100,98,107,100,105,116,98,102,101,98,99,101,105,105,120,118,118,108,107,106,100,100,94,115,94,100,103,103,107,104,112,124,98,107,95,103,101,102,100,112,102,105,103,111,100,96,100,101,105,104,101,102,86,104,96,125,98,110,104,100,108,108,105,112,117,113,109,108,84,100,98,100,100,113,111,97,98,102,102,98,104,101,98,107,102,97,109,117,101,107,103,113,90,102,106,101,114,108,102,101,105,103,121,106,94,114,87,101,99,99,90,119,99,102,107,93,109,96,112,95,108,98,102,105,100,99,91,96,109,86,113,106,89,97,94,115,106,106,102,109,97,99,105,113,105,107,101,97,111,96,118,101,107,98,110,103,109,101,107,109,110,91,102,110,114,115,104,117,98,99,121,91,108,99,106,101,105,107,114,112,105,105,100,121,99,105,108,97,104,99,121,100,98,103,112,103,102,95,108,113,100,105,97,105,96,102,117,97,107,106,94,108,112,109,93,105,104,109,109,103,100,103,112,97,113,92,108,112,109,113,97,123,106,115,100,113,129,108,111,97,104,111,96,98,106,108,105,106,108,106,97,100,104,105,101,103,106,109,120,100,99,107,93,104,102,105,100,137,112,96,94,98,95,96,97,115,110,108,108,100,104,98,109,99,105,104,111,98,101,101,102,95,109,103,95,106,105,107,106,106,112,107,97,106,106,106,136,101,100,95,109,117,101,95,104,117,107,101,102,103,104,91,91,97,107,107,93,107,110,90,102,100,110,80,98,89,94,99,107,94,105,104,100,110,111,106,104,103,108,101,112,107,93,115,101,103,114,94,97,112,94,103,105,97,126,108,106,95,101,103,110,125,100,104,107,105,114,91,127,99,89,110,120,102,94,106,114,117,101,121,109,127,122,133,129,107,110,114,102,112,116,112,95,100,113,111,124,106,97,106,111,110,101,106,103,85,100,102,99,86,86,102,103,95,97,108,83,95,113,98,92,93,108,104,103,91,92,102,113,104,106,101,114,102,97,91,102,81,102,102,100,108,116,98,108,103,114,112,105,103,105,108,91,112,105,95,99,101,104,97,108,104,109,104,110,99,106,102,101,93,112,105,111,93,100,94,93,72,91,111,114,99,104,97,96,104,109,117,95,104,98,110,117,107,110,100,91,103,85,114,112,113,100,104,93,91,109,115,88,109,96,102,113,106,107,103,104,104,106,106,125,104,101,99,117,94,102,117,93,99,111,100,95,97,109,106,103,91,113,104,108,115,98,105,98,102,99,104,124,102,108,103,109,97,99,108,111,106,109,96,100,110,119,110,92,99,106,112,103,105,100,107,112,108,98,98,120,103,102,116,118,97,103,111,108,88,107,112,108,104,87,100,121,115,109,96,96,103,106,102,102,108,101,104,105,110,105,110,108,101,88,107,105,107,102,107,111,91,104,131,94,110,111,110,97,100,98,119,104,102,97,95,103,108,104,99,97,112,105,137,101,109,112,91,75,99,90,103,126,102,96,101,117,108,103,108,104,116,105,105,106,103,102,104,91,109,102,113,116,96,93,104,106,110,98,104,102,105,125,96,99,109,111,107,124,103,102,115,100,99,105,118,100,108,111,117,114,103,106,93,102,92,102,90,112,97,112,120,106,91,99,106,92,100,101,110,110,104,109,95,109,110,97,107,76,92,110,104,101,96,99,82,106,106,96,98,108,108,97,103,99,113,108,101,100,88,103,108,94,100,97,102,106,107,92,112,107,94,90,104,101,98,104,97,102,108,119,109,105,120,102,106,106,114,103,100,110,81,96,99,98,93,108,125,108,99,109,99,98,105,104,107,107,96,102,90,96,92,111,102,94,113,98,98,106,106,96,102,112,108,115,103,102,98,112,100,108,102,111,99,110,98,98,104,99,86,101,113,102,103,109,102,111,107,100,111,103,99,108,102,106,112,102,124,108,105,103,106,95,108,102,101,103,95,108,109,109,102,102,105,98,98,100,93,109,109,108,97,106,95,102,102,107,117,100,106,104,109,105,112,90,109,101,111,104,109,88,112,110,104,107,108,119,91,104,96,106,116,93,107,96,105,102,104,112,99,99,107,114,102,117,103,95,106,105,113,92,109,117,105,102,98,97,106,86,91,114,103,91,98,95,106,103,112,100,104,118,102,95,104,94,103,95,111,105,105,109,110,98,105,99,110,99,108,101,112,103,109,95,95,95,100,106,103,129,95,110,100,109,96,109,109,93,101,111,104,94,116,113,89,106,98,110,124,105,103,99,104,109,97,105,110,112,100,113,98,111,103,105,95,109,95,99,117,111,108,100,104,93,104,100,105,96,98,117,91,115,105,109,104,100,97,97,99,106,102,95,91,113,97,106,109,113,94,101,100,94,107,101,105,117,97,116,98,99,84,102,95,96,99,98,104,105,111,88,96,98,113,91,102,113,93,109,94,94,109,113,103,93,99,106,105,105,103,97,106,110,96,112,99,94,106,94,106,117,106,88,108,93,102,100,102,103,90,97,104,104,113,98,104,107,108,96,98,107,122,101,111,100,100,113,104,113,107,104,103,111,95,105,113,108,98,100,97,95,102,94,109,108,113,115,112,108,90,107,99,95,97,118,104,101,101,108,94,115,108,119,100,95,111,97,91,105,103,95,102,92,115,102,104,120,101,103,101,99,100,102,96,102,109,99,102,101,90,109,98,101,107,104,98,89,107,100,104,109,96,105,93,111,111,103,101,105,116,109,110,112,105,112,95,100,109,109,99,97,102,116,103,96,97,95,92,101,92,101,108,103,102,116,102,94,101,97,134,105,101,96,99,102,113,110,99,99,99,109,120,109,99,105,101,109,97,94,92,106,101,104,112,98,93,113,108,107,90,76,103,113,109,95,94,111,96,111,102,111,109,102,105,97,111,120,98,95,96,112,109,94,98,93,101,83,105,112,88,98,104,104,94,111,116,75,106,104,111,108,106,102,112,95,92,99,99,107,119,106,100,101,113,117,97,97,113,96,103,82,105,103,105,112,105,105,129,112,94,105,100,93,109,106,110,106,111,90,110,98,98,106,99,101,104,94,100,92,102,109,103,103,97,101,108,111,92,95,84,102,97,108,99,95,113,80,103,99,117,101,105,102,104,104,95,97,109,120,104,105,98,102,97,98,105,126,98,115,102,95,102,99,99,97,98,95,100,109,110,96,90,104,104,114,105,107,103,107,92,89,93,100,95,99,93,102,113,106,95,94,97,91,116,95,92,103,111,107,114,109,92,100,113,98,108,103,102,108,103,103,105,103,106,92,113,108,106,95,108,98,125,91,98,96,101,103,99,109,101,95,92,99,105,116,103,99,103,93,110,104,105,95,115,102,116,91,92,104,109,100,109,113,99,103,118,120,95,98,87,98,83,96,99,110,79,117,96,108,96, +621.4693,103,95,94,104,85,93,96,100,109,103,106,104,95,100,102,93,109,103,105,107,109,98,87,94,113,104,117,101,105,103,95,104,106,99,98,120,111,105,106,113,109,108,110,102,106,104,98,104,107,112,109,101,105,94,108,102,117,114,107,103,101,103,112,95,95,116,100,108,112,101,104,107,106,108,79,111,91,107,100,110,110,130,99,106,105,97,102,105,104,98,100,99,105,106,96,102,103,99,110,88,106,99,101,105,100,107,98,110,96,103,103,87,107,94,115,99,102,105,117,110,101,99,112,96,106,106,134,92,104,97,105,113,103,102,104,105,100,103,106,99,95,101,106,114,100,110,100,98,96,107,100,101,104,105,103,102,95,111,108,101,102,96,106,103,116,94,82,104,110,100,100,110,117,86,108,93,83,97,98,97,105,116,105,103,101,103,98,98,116,99,100,94,116,118,105,100,97,103,94,116,99,79,113,105,106,108,93,106,98,90,95,107,125,102,101,104,99,109,102,117,96,105,93,89,93,91,103,103,104,105,95,110,102,102,112,108,106,113,114,108,108,110,110,113,108,109,107,103,96,104,91,100,90,113,107,107,115,109,109,105,92,102,103,112,96,99,108,109,97,106,111,105,110,115,110,103,109,109,107,93,103,101,95,107,120,108,88,72,106,100,108,95,114,108,117,103,103,102,113,113,109,99,110,116,102,97,102,98,102,97,101,113,99,108,96,107,96,117,113,94,112,99,115,103,98,105,97,103,114,106,105,101,98,104,107,107,114,109,96,115,112,87,110,103,114,111,108,108,100,107,102,106,117,101,98,116,101,104,102,117,98,96,98,100,96,68,107,102,95,100,106,88,117,114,108,118,128,107,105,111,100,107,90,110,107,94,102,110,118,105,107,109,100,101,102,101,98,100,127,99,115,104,97,102,106,110,98,98,113,104,99,94,111,118,86,99,102,102,111,103,93,104,96,96,103,89,113,79,101,113,96,98,114,96,107,101,98,107,106,83,101,109,107,106,97,107,113,94,103,95,104,106,93,104,116,96,98,120,109,103,91,113,101,96,106,108,114,107,110,99,99,99,103,100,109,114,103,104,110,113,103,103,88,104,108,107,101,108,111,102,113,97,112,112,94,104,94,101,102,98,100,119,95,109,102,114,109,103,106,103,105,106,106,112,109,113,110,99,104,110,109,102,107,109,107,112,115,107,104,105,95,104,102,80,102,106,101,105,110,115,99,105,97,104,89,100,99,111,107,104,117,117,110,103,106,100,102,114,98,107,97,105,102,115,103,106,105,110,98,112,109,106,113,89,106,102,84,107,94,98,97,99,107,117,91,103,108,106,112,102,108,104,102,89,117,105,102,100,95,113,109,120,104,94,99,97,95,113,105,113,114,105,95,111,100,108,94,99,100,100,114,98,107,94,101,112,99,99,112,101,101,102,101,103,95,113,106,99,106,105,121,118,104,97,102,96,117,106,112,114,94,109,100,114,121,101,102,118,94,112,105,95,121,95,104,100,99,111,111,110,106,103,110,112,100,104,104,102,111,91,108,105,106,96,103,99,91,98,98,111,100,107,101,100,102,106,111,110,106,113,100,105,119,96,112,109,93,113,98,112,110,115,107,108,101,104,96,101,104,98,126,104,109,109,75,61,85,102,96,113,105,98,114,107,88,109,95,96,98,98,91,99,97,106,98,97,110,97,95,108,106,105,101,103,102,100,98,102,109,98,105,98,91,93,101,94,98,100,95,105,106,95,95,114,95,103,111,113,107,102,105,92,114,112,96,117,103,84,107,114,105,105,103,117,102,116,110,103,94,112,106,100,111,105,96,117,104,97,100,112,118,99,103,106,103,110,113,109,103,96,104,100,91,114,107,113,108,107,100,96,95,102,98,103,99,114,103,116,121,111,110,104,109,110,101,101,92,105,95,94,100,102,110,105,104,98,114,113,102,107,111,100,94,104,101,112,101,97,107,118,108,120,114,99,97,99,112,94,104,104,111,112,122,115,113,81,102,104,101,106,100,103,110,108,97,101,104,104,95,112,105,111,108,102,100,115,92,114,107,95,103,102,100,88,99,94,124,101,96,116,98,108,125,109,97,102,99,104,110,102,113,107,106,106,98,108,106,117,98,92,117,94,102,92,101,97,109,103,109,81,100,99,104,101,107,117,108,107,107,91,101,100,111,103,105,94,100,113,84,98,104,107,116,100,107,101,102,101,105,110,101,105,99,106,101,99,127,106,104,96,98,111,107,102,104,106,90,108,104,111,95,96,106,113,108,113,115,117,98,104,107,119,111,109,94,110,97,97,100,97,99,116,110,103,102,122,88,99,95,100,87,112,111,102,106,110,105,110,113,125,84,125,123,120,120,110,107,100,129,115,108,106,112,96,116,121,108,105,106,100,99,108,103,111,96,108,102,113,99,103,108,101,113,102,112,104,108,95,113,103,106,91,100,105,113,106,102,112,98,99,103,95,112,102,113,105,83,105,109,107,110,94,111,103,104,100,109,103,104,115,103,103,99,97,102,100,105,118,101,121,97,87,101,112,108,110,104,110,117,96,97,107,105,87,100,80,108,102,93,95,106,93,99,110,117,100,90,115,120,107,106,109,123,111,106,107,83,106,106,111,116,100,108,98,111,110,111,96,108,108,102,94,112,94,96,106,101,106,96,109,109,110,94,102,113,119,83,100,102,112,103,97,107,115,100,105,102,108,108,108,102,122,94,100,110,97,106,104,114,94,96,101,117,95,100,113,118,104,108,107,103,112,95,96,101,98,108,114,105,100,105,102,99,104,100,97,107,113,100,131,107,108,123,89,96,100,112,112,110,92,109,95,113,123,104,106,109,108,99,109,110,102,95,116,113,117,109,101,104,103,118,93,106,108,96,109,101,108,103,101,95,114,108,103,101,104,105,117,114,107,118,104,114,97,105,101,104,105,117,116,102,95,103,108,116,140,106,104,102,95,99,108,98,113,113,103,109,102,107,112,102,102,102,113,115,98,120,112,94,104,96,107,112,91,115,103,95,108,112,118,107,107,117,107,98,97,105,90,102,103,104,102,110,99,110,103,103,98,102,117,114,112,99,108,117,94,103,91,92,102,112,100,104,98,100,110,111,107,100,108,109,106,94,112,100,105,109,102,111,93,105,95,99,107,98,107,96,108,105,107,111,104,112,102,105,108,104,102,115,102,106,111,104,109,108,106,94,107,109,101,118,114,96,113,111,112,110,104,109,116,103,111,113,109,109,105,113,115,106,101,104,116,104,101,109,95,104,105,104,98,101,102,109,107,110,99,107,96,113,107,117,98,106,102,106,110,105,107,98,94,96,104,102,102,102,109,101,106,113,97,101,102,106,92,95,110,114,99,108,109,104,106,102,96,116,107,101,105,108,110,101,103,117,112,100,101,110,100,105,109,105,111,97,110,102,104,108,110,96,104,86,114,107,100,112,106,97,113,104,111,106,113,116,106,93,66,102,97,105,100,106,115,102,110,106,107,104,102,110,102,104,95,97,78,98,103,110,109,95,97,109,101,113,106,106,110,92,99,112,109,103,101,107,122,102,98,110,111,125,90,109,113,103,107,100,111,99,102,99,107,104,112,111,98,106,99,110,97,71,109,107,103,113,101,101,108,109,104,109,107,104,111,99,112,94,94,101,101,117,112,109,123,93,99,91,103,109,104,112,95,109,103,107,103,110,99,108,95,110,97,99,106,91,101,100,113,101,117,91,94,102,104,100,93,102,112,111,104,92,97,104,108,113,102,100,103,101,103,110,106,83,109,100,102,108,105,98,111,111,123,100,89,105,106,110,129,79,99,96,103,106,112,112,109,104,110,91,100,121,107,118,98,97,105,120,104,96,116,109,97,96,101,109,96,95,110,100,104,96,118,105,124,101,107,89,100,107,99,117,109,112,104,106,100,103,120,101,98,106,99,133,113,96,102,98,77,94,110,101,102,98,106,98,103,103,110,102,103,103,111,104,104,97,108,111,98,100,113,90,103,103,96,101,84,107,117,109,108,126,94,107,101,102,105,107,109,117,106,119,103,105,100,97,117,98,101,92,101,106,104,105,106,112,112,111,112,86,104,99,109,112,105,108,100,104,114,109,99,114,104,102,106,113,112,95,115,105,101,94,97,98,106,101,95,108,105,120,111,89,105,102,120,105,102,106,98,108,110,99,111,98,103,104,104,100,101,98,98,113,107,117,96,113,96,106,101,119,102,107,98,112,100,117,109,99,103,98,100,104,98,106,113,120,106,102,113,100,100,109,111,106,95,107,97,96,103,98,93,97,111,120,111,102,107,101,117,102,101,109,111,107,94,90,89,107,113,105,101,94,102,99,101,103,104,100,105,113,105,102,110,101,112,113,101,109,87,116,111,111,98,95,98,101,97,103,107,87,116,103,99,112,105,100,115,97,102,94,99,106,98,109,110,101,107,104,91,111,101,103,106,101,88,107,102,101,117,98,105,107,104,98,112,105,111,105,104,107,99,101,101,108,105,103,111,107,104,98,100,103,106,106,102,102,100,104,98,105,102,108,107,105,111,102,100,87,74,115,105,106,98,111,101,95,112,99,102,106,100,106,109,106,101,86,95,101,107,102,110,98,106,107,113,132,87,107,100,104,101,104,107,97,107,100,102,104,114,85,112,107,99,104,88,102,88,108,98,108,113,113,98,93,117,117,108,97,108,106,101,104,113,94,97,95,87,115,107,102,108,100,108,109,103,115,113,83,98,96,103,95,99,97,104,109,119,114,90,98,100,95,110,124,101,95,107,112,93,102,105,106,95,104,107,92,108,105,99,100,105,96,106,104,110,110,107,98,110,102,100,108,95,97,105,97,100,106,99,98,106,101,81,113,98,102,97,102,102,110,112,98,91, +621.61041,79,101,103,109,101,107,99,97,104,106,96,103,109,98,113,120,104,113,108,115,104,107,96,103,122,100,98,106,92,126,117,95,105,109,98,114,114,111,113,111,100,104,104,111,109,109,99,119,109,109,92,103,114,105,103,89,105,93,101,99,73,105,94,95,109,109,108,113,103,84,110,93,112,99,103,110,102,102,111,102,107,95,92,111,99,104,98,91,106,94,107,116,110,94,100,94,111,106,105,104,93,98,108,104,111,104,106,93,111,108,96,114,103,79,106,120,105,114,79,112,106,92,110,106,96,111,100,93,106,101,86,109,88,104,103,113,92,103,97,111,93,105,102,101,96,91,99,115,102,109,95,102,106,98,103,100,97,99,97,104,95,107,101,103,111,92,102,105,110,103,94,109,97,97,109,104,108,93,116,99,90,111,93,101,106,104,101,102,82,96,83,96,106,104,98,105,103,109,111,110,110,97,96,101,108,107,100,110,107,99,96,78,99,109,97,109,103,97,103,98,101,116,102,102,99,110,103,105,111,98,91,99,112,97,120,113,118,104,99,105,106,98,114,110,93,105,102,99,122,106,103,115,98,104,105,106,101,90,102,95,90,106,101,94,95,116,101,97,106,87,99,97,100,97,109,106,100,105,98,97,108,109,105,110,99,106,92,75,101,98,104,98,103,125,96,111,109,100,113,102,105,99,112,109,97,128,103,96,122,110,100,122,98,117,96,102,101,99,105,104,106,91,96,112,108,105,96,95,109,123,113,100,110,100,115,104,98,103,106,103,103,110,107,109,104,106,102,113,113,88,124,104,100,95,104,109,105,104,104,105,107,90,100,110,101,105,108,104,102,105,113,112,105,99,112,106,117,110,96,116,104,96,98,102,110,110,98,108,101,113,105,101,101,107,86,98,109,86,106,105,108,101,93,96,100,84,113,97,98,108,98,106,112,88,83,98,94,97,117,95,103,109,103,95,93,100,93,101,114,107,118,99,99,123,103,105,113,110,117,96,109,91,100,100,102,112,104,96,96,101,114,104,113,107,104,105,114,102,108,103,104,96,106,114,111,112,104,89,100,102,111,104,105,114,94,105,105,79,108,117,109,105,113,91,107,120,114,98,105,102,107,108,109,99,108,99,94,101,111,101,107,111,98,99,100,112,104,106,121,96,108,105,99,114,99,108,101,90,99,81,98,103,116,117,100,110,108,110,107,100,99,104,110,116,85,108,101,91,105,88,102,94,99,111,102,97,106,99,106,107,105,116,106,94,98,98,99,100,87,112,101,103,96,94,103,101,121,109,118,96,97,98,101,91,94,106,99,98,102,111,102,111,99,101,105,110,127,105,108,108,110,108,93,95,110,101,113,115,110,109,88,99,117,102,88,103,96,112,103,106,107,110,99,95,104,87,117,101,105,97,112,105,102,113,117,103,108,110,110,98,101,93,103,105,86,99,99,94,113,102,120,96,103,99,110,96,96,95,102,111,91,95,106,113,114,106,107,101,93,108,95,110,95,104,94,91,105,89,108,109,107,103,107,97,99,96,101,117,110,97,111,91,112,99,111,108,102,111,95,106,106,111,106,103,110,96,105,87,116,86,106,92,105,109,104,108,103,116,100,108,100,109,112,99,103,113,98,107,98,101,97,107,117,110,100,95,110,92,113,99,91,101,96,107,101,107,100,103,113,97,102,106,113,106,111,103,102,102,111,113,124,102,108,96,97,87,71,101,94,102,98,108,107,98,95,105,102,106,107,97,106,105,101,96,107,109,93,96,102,99,99,100,113,112,125,110,109,101,105,106,96,112,107,116,108,106,104,100,95,98,96,109,103,91,113,108,104,111,111,102,110,111,103,98,114,88,112,114,98,113,116,106,100,104,101,109,104,102,114,94,102,82,109,98,96,101,108,106,102,94,105,99,108,108,90,107,104,104,97,90,112,95,123,104,98,82,94,103,100,96,117,103,120,109,105,114,103,99,110,105,103,114,105,100,103,115,103,110,99,103,106,102,109,118,107,113,97,114,105,101,112,100,104,96,98,100,108,96,106,103,100,110,109,103,112,89,84,104,102,99,106,103,102,106,103,94,95,100,103,98,133,98,98,106,96,109,111,94,101,113,100,117,85,110,103,101,92,105,98,102,107,114,98,102,99,100,96,107,96,101,101,110,98,99,94,107,117,101,87,113,104,94,105,102,98,108,95,109,103,104,112,101,96,98,105,83,100,98,98,118,111,106,95,98,113,104,107,101,91,95,103,103,107,102,103,106,111,104,101,114,106,120,102,105,109,110,109,103,99,97,99,108,108,94,114,111,100,98,101,109,96,106,140,95,104,108,103,93,103,100,98,109,103,138,110,100,96,118,112,108,102,103,110,115,107,127,102,121,105,115,104,114,112,109,108,91,112,107,88,93,93,119,108,101,102,104,100,99,107,95,101,116,94,99,94,114,97,105,120,93,104,106,100,112,109,93,120,106,105,103,111,103,107,91,108,111,99,109,115,97,81,93,119,103,108,98,113,108,113,110,101,108,120,103,101,107,106,104,94,94,97,112,102,115,92,100,102,121,109,98,116,120,112,96,89,123,105,104,91,101,111,100,102,109,117,107,113,116,101,106,117,103,111,103,105,115,118,93,101,102,109,94,101,86,116,98,112,101,117,98,99,100,109,94,104,105,91,108,108,102,98,110,98,99,99,106,105,108,106,112,102,100,101,116,90,108,105,97,97,108,106,104,101,106,118,115,95,106,96,108,113,100,99,98,110,103,109,115,91,110,107,103,107,117,98,99,117,103,107,100,102,120,92,103,118,90,104,119,100,100,111,109,116,93,99,90,106,96,105,107,104,99,104,89,100,103,99,122,107,100,106,100,102,106,105,96,103,110,93,117,110,106,122,113,106,95,99,108,117,109,108,109,120,105,112,95,96,109,108,109,103,98,109,111,110,102,107,111,102,99,117,100,103,128,114,99,110,108,101,96,92,95,88,96,99,115,108,108,104,94,103,110,106,109,113,102,111,111,100,96,95,118,106,108,106,104,109,107,102,111,96,105,104,106,101,101,111,80,125,96,94,122,101,99,102,108,97,99,94,77,102,115,104,106,98,96,109,105,104,105,100,137,114,113,113,108,101,112,102,103,106,95,110,98,106,101,83,106,94,96,107,96,117,120,106,122,100,113,114,109,82,104,105,115,96,100,96,100,100,102,89,103,106,114,104,100,101,103,96,101,96,102,100,107,106,106,104,106,106,105,104,100,108,114,105,103,103,97,102,102,107,109,102,108,94,111,99,108,97,111,101,97,104,105,105,106,118,104,99,102,116,104,106,97,103,116,101,87,101,90,104,108,105,88,101,85,98,104,107,106,112,99,99,115,99,109,94,101,94,109,106,102,108,106,108,105,108,114,97,100,99,108,112,108,104,94,100,102,110,110,100,95,104,93,80,112,108,107,103,96,104,105,119,90,97,108,123,103,109,97,113,105,75,97,104,100,86,106,105,103,95,108,102,111,106,105,98,104,98,98,102,112,111,110,105,101,107,102,98,111,105,103,113,103,117,108,92,107,102,113,112,105,97,111,108,104,113,97,100,112,85,112,114,94,98,98,103,107,84,106,96,103,112,112,100,100,103,112,114,97,101,109,114,102,107,106,93,107,104,106,113,112,113,102,111,104,105,113,105,106,111,107,92,94,106,106,111,110,117,104,101,106,118,104,102,113,94,104,97,101,97,102,95,100,121,97,96,103,99,105,100,97,102,96,104,111,98,105,111,100,92,96,91,106,107,110,101,88,97,117,89,107,96,104,113,104,109,98,102,109,105,109,99,99,111,103,97,105,99,112,108,96,104,98,113,108,119,113,108,103,108,108,106,109,104,104,113,91,100,94,96,96,107,88,106,99,108,104,106,104,100,112,109,106,101,97,105,95,110,82,116,122,108,106,99,102,95,101,97,112,105,100,93,119,106,103,102,102,92,112,109,128,112,119,107,104,103,106,103,100,103,102,106,112,114,112,106,107,107,104,111,99,100,94,104,103,114,111,111,110,100,100,92,96,99,100,98,111,103,109,99,107,115,106,106,110,108,100,111,106,94,129,100,100,98,119,104,98,104,100,93,110,98,103,92,105,115,96,95,99,113,98,117,113,112,104,106,117,115,100,126,101,97,96,107,115,103,105,95,104,96,96,109,100,102,105,106,108,101,99,106,110,100,96,102,106,95,97,103,108,111,93,95,99,105,101,94,105,102,102,95,91,113,101,96,101,97,101,110,106,104,112,103,97,115,113,97,98,96,108,108,102,117,105,106,103,105,98,100,118,103,104,114,98,106,100,94,115,102,102,108,100,102,108,112,111,107,102,111,107,108,112,117,108,100,130,97,95,105,108,98,106,110,105,109,109,102,119,91,89,100,98,107,103,105,104,106,114,99,101,108,93,128,106,108,113,93,111,108,84,109,119,109,108,112,92,119,106,102,109,103,110,96,99,113,107,116,103,111,113,108,105,101,111,104,109,129,122,105,104,102,86,100,88,98,125,104,103,107,95,102,103,99,116,108,100,103,118,99,90,105,113,119,100,100,92,128,111,83,95,110,96,99,106,112,102,103,93,103,104,104,107,87,112,107,117,105,98,105,103,102,104,106,103,128,113,103,107,116,100,108,101,105,109,102,107,98,105,102,100,95,110,96,101,112,90,103,106,110,107,102,119,102,100,88,96,101,101,109,97,105,113,110,102,115,101,99,96,98,106,120,103,107,95,115,104,116,100,97,101,117,91,94,110,106,111,111,103,111,112,111,83,115,120,104,112,96,115,113,100,96,117,98,102,99,106,95,111,84,117,97,94,97,96,105,103,102,93,122,96,96,99,101,113,109,89,104,124,103,102,106,108,124,108,92,102,109,102,89,103, +621.75153,103,102,101,105,106,97,108,90,102,108,75,87,107,91,94,93,103,105,101,106,98,95,105,106,104,104,117,106,100,100,111,110,106,108,102,104,113,99,95,92,80,112,105,105,101,91,118,104,125,97,100,102,108,99,91,94,88,90,116,91,114,104,96,97,95,107,85,106,92,100,109,107,99,107,95,112,92,117,117,105,107,123,103,121,114,98,97,118,101,119,84,101,118,109,80,97,102,108,101,116,100,97,105,95,104,101,103,105,103,106,100,118,112,102,99,96,124,103,114,95,95,95,104,113,91,107,109,97,113,95,74,96,113,91,107,109,80,105,109,96,98,86,101,103,104,104,111,104,94,97,106,122,113,98,101,103,93,96,97,110,103,97,116,104,112,113,102,101,111,89,103,101,104,99,107,110,99,94,99,94,98,120,99,101,128,100,96,100,104,102,97,101,96,109,113,98,113,104,101,98,112,107,101,108,105,109,116,118,111,111,97,106,104,103,110,98,101,110,100,109,94,100,102,95,94,98,107,91,106,113,99,94,108,117,105,109,106,103,108,93,109,95,110,97,102,90,104,95,99,97,111,101,95,101,104,100,95,117,102,86,106,111,102,106,100,96,120,117,95,102,100,98,112,106,104,114,101,96,88,119,107,109,105,102,104,109,107,106,110,98,111,118,117,91,105,99,122,112,100,105,104,114,119,103,94,102,108,108,96,109,100,112,107,108,101,104,103,113,116,97,112,89,109,101,99,100,103,97,103,109,102,107,108,102,109,109,99,108,94,103,105,109,110,106,91,108,99,98,105,106,99,118,105,106,110,105,95,113,109,106,108,102,97,96,90,90,90,99,126,97,100,102,107,103,94,109,111,108,96,99,106,110,103,121,105,94,113,114,83,96,112,102,91,107,101,108,111,104,104,111,92,96,105,93,106,100,109,103,108,114,94,68,117,107,99,105,106,93,106,95,104,102,88,112,107,104,108,109,98,102,105,114,97,95,91,101,102,112,104,103,106,106,103,98,115,107,93,100,105,107,98,97,102,104,105,106,103,102,104,104,98,104,92,125,102,116,106,104,108,91,95,110,103,99,102,87,100,110,107,103,108,94,108,94,108,100,110,109,103,102,100,99,102,104,95,111,107,98,108,107,117,123,112,108,105,96,95,115,108,113,112,107,95,98,99,116,106,103,106,110,118,95,103,114,99,106,109,106,106,102,97,103,104,104,104,110,104,110,87,117,98,101,117,100,110,95,102,100,94,105,103,107,113,107,95,106,104,104,103,111,98,109,110,97,108,101,100,107,100,100,102,117,112,102,106,106,103,106,103,101,121,109,99,98,101,109,109,106,74,101,105,101,86,102,107,108,98,111,104,107,104,110,98,91,101,99,100,113,118,107,106,96,102,111,91,110,97,96,109,88,95,103,107,108,107,99,104,102,112,102,96,103,100,104,100,100,104,103,100,113,96,118,101,109,98,100,98,96,110,104,101,106,105,112,111,112,115,117,109,96,107,106,108,120,102,92,103,91,109,108,111,108,106,115,108,107,100,94,100,99,110,107,109,114,95,101,106,98,107,99,95,101,101,104,116,94,93,98,99,96,98,98,96,96,103,104,102,99,93,114,111,114,103,97,99,102,99,101,105,65,94,99,109,100,102,96,107,118,101,103,101,115,98,98,88,103,111,117,112,93,89,97,102,93,95,114,102,111,106,104,107,111,119,116,105,103,96,103,107,106,107,110,100,105,105,103,100,100,117,94,101,96,99,101,104,90,123,109,103,114,110,111,104,108,96,98,100,105,111,100,109,92,102,109,101,112,101,105,110,106,105,105,125,103,98,117,100,113,103,113,103,96,100,102,101,112,107,114,108,100,105,121,102,107,108,119,102,103,103,101,110,128,101,107,96,104,109,107,116,103,108,107,104,103,95,102,91,96,96,95,105,100,90,95,97,96,99,102,97,97,115,98,105,117,105,109,95,110,112,108,110,113,100,105,87,98,97,100,111,96,110,100,102,112,99,108,98,122,111,106,100,112,103,118,119,103,109,93,96,98,96,92,91,92,99,103,108,111,107,95,105,117,86,103,101,99,101,110,92,108,94,100,110,116,71,102,104,102,102,106,106,105,109,110,92,105,107,100,101,110,100,117,110,110,111,106,104,101,106,104,128,109,102,109,124,107,107,97,112,107,112,110,106,101,101,117,101,103,91,105,109,125,110,100,105,112,109,101,98,102,106,107,106,104,86,103,85,104,99,108,110,104,96,96,93,74,99,100,102,110,114,106,91,106,110,104,107,103,112,108,107,105,112,104,109,95,109,99,111,107,99,97,101,108,92,111,105,101,107,103,112,105,111,100,108,96,95,121,119,90,93,119,116,122,116,116,107,112,113,107,107,107,112,99,115,99,108,113,101,104,94,114,115,86,103,97,97,107,93,100,105,102,104,107,105,109,100,109,107,108,103,106,113,111,102,106,97,98,109,100,99,111,113,105,106,106,113,112,100,104,110,108,114,112,99,102,108,104,104,114,106,95,95,99,103,120,84,99,98,102,106,111,108,116,105,105,109,98,106,88,104,106,110,96,111,113,110,109,119,108,106,99,118,104,107,99,100,99,95,96,111,113,118,100,108,106,98,103,102,119,95,109,112,90,108,104,104,91,107,113,106,105,114,109,102,117,107,107,115,98,111,102,102,111,115,98,100,117,115,108,115,104,96,113,100,105,103,112,111,96,104,103,104,110,109,108,107,100,109,116,106,100,107,108,109,104,104,105,111,106,104,115,97,110,109,123,74,106,94,90,114,87,101,105,105,89,112,100,121,106,112,104,106,93,107,102,100,106,120,104,106,105,101,113,117,98,84,94,105,114,102,98,105,101,110,103,117,104,95,107,108,108,112,120,106,92,113,95,97,114,111,98,108,105,125,108,110,101,95,106,108,108,105,110,98,111,110,96,104,113,117,105,101,112,103,118,114,112,106,113,96,98,93,108,107,114,105,101,107,103,115,105,104,94,112,113,84,102,105,94,102,109,104,108,109,106,102,109,100,98,103,110,103,104,112,102,108,99,101,101,104,117,103,106,104,109,103,117,98,123,121,101,106,112,112,94,109,108,100,108,102,100,107,90,107,98,112,103,102,117,104,107,103,113,101,99,107,98,107,95,109,99,102,112,107,105,110,97,106,112,116,110,116,101,105,127,101,105,98,97,97,111,108,108,107,93,90,102,119,131,103,104,83,97,111,108,100,100,111,107,107,95,106,119,104,95,99,100,100,113,113,101,96,116,96,102,99,108,106,106,110,94,109,111,111,111,113,95,121,99,107,99,113,110,124,110,98,99,100,94,98,118,100,95,106,88,110,103,98,102,89,107,111,101,96,115,105,117,100,104,108,113,98,106,116,105,105,103,106,102,104,108,99,107,108,106,113,100,107,100,103,93,99,106,108,105,116,101,101,98,105,116,115,104,100,105,105,105,118,101,123,114,103,126,103,98,98,99,107,126,96,124,96,113,105,112,99,101,97,87,94,104,96,105,106,105,113,111,100,115,105,98,113,100,116,106,105,103,104,101,111,102,108,108,111,113,106,112,103,102,96,108,98,98,102,113,103,102,111,96,99,113,102,108,98,99,104,106,100,104,104,98,132,112,106,102,106,103,103,125,104,106,103,108,105,112,100,108,97,106,104,118,99,102,106,112,103,102,110,108,112,104,103,112,106,87,104,101,108,102,108,100,100,100,117,99,95,100,106,108,94,103,108,112,97,111,102,100,105,102,100,97,112,113,107,102,91,99,108,115,97,102,108,109,112,125,118,114,110,105,112,98,100,110,96,101,70,101,97,92,100,108,106,108,103,98,102,107,109,109,98,103,110,100,106,97,109,106,101,107,108,117,105,96,106,93,123,107,102,120,109,85,107,118,111,104,101,101,102,109,101,100,117,106,105,117,116,95,110,102,102,119,110,109,92,102,114,101,101,99,100,103,105,108,122,122,102,100,104,106,125,100,106,103,108,99,99,109,109,96,93,105,97,96,98,101,106,107,105,91,105,96,99,99,138,107,109,119,101,108,109,112,83,105,99,104,106,113,76,96,105,102,112,117,109,102,100,105,110,101,95,105,117,110,101,102,110,102,92,113,83,100,106,100,82,107,99,100,93,113,104,105,108,103,100,91,109,96,105,101,108,117,103,112,108,97,103,105,106,121,107,124,118,106,111,111,103,114,100,114,106,106,107,113,106,98,104,110,87,103,96,100,109,99,106,98,94,107,112,111,109,94,101,102,76,95,95,97,100,108,111,99,99,80,101,112,103,110,110,107,104,110,112,105,104,116,97,112,115,110,99,102,111,95,98,114,99,113,101,105,101,113,111,99,99,93,108,103,103,102,112,96,108,100,104,108,104,111,102,99,95,98,100,109,99,111,110,104,104,110,108,111,102,102,96,110,103,102,107,115,120,115,106,112,104,101,90,109,106,108,100,104,112,105,110,102,106,113,94,112,91,99,93,108,106,105,106,104,108,103,100,111,95,95,117,111,105,101,92,99,92,101,106,112,102,95,110,92,105,105,86,102,99,108,105,109,104,112,109,116,93,94,98,101,104,104,110,91,103,101,104,115,92,114,107,123,103,117,97,107,94,96,106,99,102,100,92,97,106,102,99,101,97,104,91,105,89,120,108,94,99,104,91,106,108,109,89,111,110,100,108,104,108,117,110,104,110,102,99,98,87,96,94,111,102,100,111,97,102,113,110,106,102,103,105,103,93,98,90,107,103,84,112,97,112,109,79,105,90,110,108,105,101,107,100,84,105,117,117,68,105,100,116,99,107,102,110,90,112,101,91,93,101,90,99,80,89,101,110,94,113,101,112,94,87,87,116,116,106,86,103,121,86,117,70,102,90,110,117,91, +621.89264,109,108,101,80,114,104,111,105,105,102,98,117,104,99,109,110,94,112,86,88,91,104,98,99,98,113,95,119,99,94,108,116,92,97,102,98,103,100,85,107,94,110,106,101,108,111,95,109,108,108,109,123,118,99,104,100,105,64,112,96,107,100,110,93,116,105,106,129,103,103,109,104,130,105,101,107,102,97,105,87,85,105,110,108,99,97,99,107,93,87,100,114,109,105,101,103,100,94,103,103,100,93,118,110,99,91,102,112,117,107,109,105,115,111,103,101,117,95,100,107,93,90,106,107,102,109,89,115,99,91,102,105,113,94,115,111,101,112,95,100,92,104,119,87,93,100,119,87,102,112,109,114,121,102,101,102,105,104,96,95,96,84,100,100,120,113,102,89,113,108,89,101,104,107,111,99,107,85,107,115,94,93,115,112,103,111,111,98,102,109,97,118,98,110,95,109,117,101,113,110,106,111,106,113,102,112,111,109,93,104,118,109,103,112,104,109,92,112,99,101,73,111,102,111,107,102,104,84,112,103,67,103,105,99,103,101,99,113,103,107,101,99,106,105,112,100,98,108,107,107,101,103,101,110,93,99,99,107,106,104,98,93,80,98,95,107,107,103,101,99,104,109,109,109,120,104,110,116,106,100,94,105,103,106,104,111,94,99,100,118,102,118,127,92,94,108,116,102,113,95,100,112,110,108,101,112,100,105,133,122,99,118,117,100,110,105,105,101,101,114,117,100,82,107,110,88,98,105,113,105,105,102,107,99,104,113,101,107,109,109,93,107,96,97,110,102,109,105,121,99,114,91,114,108,115,108,124,114,106,104,99,102,94,106,107,112,107,102,99,108,100,109,120,109,103,93,104,110,89,110,105,95,101,99,113,98,115,105,103,100,113,101,87,109,103,94,92,118,106,96,113,104,112,106,105,105,96,103,102,103,98,89,122,87,108,97,94,95,109,105,80,117,99,108,104,93,105,103,86,109,86,100,104,101,101,100,96,110,105,106,109,108,106,89,105,106,101,105,118,107,114,105,104,111,114,104,103,98,111,111,103,105,74,110,112,107,106,109,107,105,100,107,100,115,106,119,97,113,114,109,125,105,109,116,100,89,109,99,99,114,91,102,105,84,98,105,107,108,100,116,112,108,106,104,102,99,98,98,100,98,117,119,105,110,117,107,104,117,108,92,119,104,102,97,106,102,119,118,97,105,93,106,114,111,104,93,108,104,100,106,102,107,108,104,107,115,106,99,106,107,100,118,97,105,81,106,103,99,113,117,88,101,99,105,100,100,104,108,113,103,99,101,112,104,98,100,96,102,107,113,99,97,97,112,96,101,109,108,99,106,115,106,104,100,103,105,104,96,106,103,109,103,116,99,94,101,103,110,108,113,103,103,108,100,114,112,93,109,100,109,110,99,117,105,109,101,101,121,114,106,116,108,103,116,102,112,88,109,103,106,95,109,101,113,98,105,97,100,115,107,104,111,89,113,115,98,108,99,107,115,112,103,104,103,102,104,104,91,94,113,107,99,99,112,104,106,104,108,106,103,105,109,109,100,101,114,95,107,113,97,103,104,99,112,94,93,100,107,99,98,118,103,96,101,106,101,140,102,101,109,105,108,99,100,101,100,115,108,103,100,105,108,108,102,99,103,105,103,104,109,105,108,105,108,105,104,118,100,108,95,95,91,100,103,101,112,98,121,104,105,102,97,106,99,100,104,100,103,117,106,111,107,100,111,93,100,102,114,108,104,129,88,107,117,104,121,95,114,99,111,100,71,116,95,108,110,101,104,100,106,125,94,105,98,111,110,102,114,116,110,110,107,97,128,105,107,101,109,100,111,117,108,104,106,114,107,106,110,122,92,114,109,99,106,104,116,103,121,103,107,114,110,108,111,113,112,114,106,110,99,105,113,101,103,105,104,107,109,108,102,107,103,105,102,117,109,109,99,98,106,120,96,90,103,104,105,96,103,118,93,103,97,104,98,105,109,109,106,104,108,106,114,115,106,104,125,100,98,103,121,115,109,102,103,98,106,113,118,101,116,95,102,105,88,107,95,114,110,105,105,109,91,106,111,101,107,104,113,104,102,101,106,102,106,110,116,108,102,88,103,102,106,104,98,105,104,102,105,113,110,89,117,90,118,113,105,95,109,103,105,100,97,94,108,118,96,100,108,95,100,105,113,111,105,107,106,96,112,96,98,103,108,101,98,116,100,114,87,106,106,96,107,116,94,113,102,100,113,104,96,108,104,104,98,108,111,105,117,101,102,117,89,109,108,113,113,97,101,91,103,93,82,97,106,137,116,106,93,91,84,98,87,102,100,107,98,101,103,112,114,114,100,105,118,102,103,94,115,117,117,115,133,102,112,127,104,107,112,111,121,118,123,107,118,110,108,125,100,114,99,108,112,99,105,91,94,91,104,104,120,95,97,114,100,99,105,108,107,95,111,110,91,99,95,107,92,99,83,116,119,108,100,108,95,103,117,119,98,108,104,103,92,117,97,94,110,100,99,112,95,100,111,101,104,118,116,109,102,112,102,108,114,110,105,106,98,102,108,105,97,107,100,92,95,102,102,103,117,96,107,117,105,102,120,97,105,109,107,103,94,113,105,105,101,103,105,104,107,103,106,124,102,108,97,96,113,100,112,112,109,93,117,116,106,102,101,111,102,105,107,105,115,98,104,87,98,116,110,103,103,98,101,112,102,87,99,108,103,103,104,107,113,92,110,104,105,108,109,118,114,112,109,100,91,104,101,108,113,103,98,101,108,107,108,113,114,112,104,104,103,98,104,110,108,103,106,107,109,103,120,112,97,112,96,119,105,107,113,100,113,107,96,102,103,102,117,103,95,104,113,109,110,106,113,104,105,97,106,100,113,110,126,107,108,110,108,104,102,108,108,102,115,88,104,104,99,101,98,109,111,104,114,128,102,102,113,92,100,106,111,108,110,80,104,103,93,107,107,109,117,113,116,113,106,112,113,98,118,114,101,103,106,109,97,117,72,117,109,102,97,103,95,102,114,107,103,115,101,103,112,121,104,117,102,108,92,104,103,106,106,109,107,119,84,113,71,100,108,106,99,107,105,109,110,118,102,105,103,106,104,102,103,103,112,113,103,104,110,103,104,98,101,107,117,106,138,102,102,101,105,105,94,104,115,103,104,98,89,107,112,115,105,115,110,106,94,102,117,117,91,103,103,110,80,98,109,97,119,87,111,98,106,98,101,102,106,110,98,113,104,99,93,110,121,107,97,105,119,102,101,98,104,99,95,102,108,101,103,122,100,108,95,98,116,116,103,99,110,80,101,104,107,106,112,116,84,100,95,96,86,94,121,116,93,100,99,99,106,113,114,111,111,100,94,100,104,102,101,106,100,99,105,99,102,121,97,106,102,100,105,107,104,95,98,98,106,110,106,92,79,128,107,111,115,105,114,113,108,105,94,107,109,110,104,104,98,102,112,112,111,102,108,99,95,90,109,115,129,113,88,99,114,98,101,110,100,110,91,102,110,98,99,104,107,104,112,120,103,108,100,108,112,117,101,116,99,106,101,107,108,102,104,108,100,99,99,102,93,98,99,96,100,119,109,102,109,101,109,110,99,94,112,103,131,101,98,99,119,104,104,112,115,111,98,100,109,102,97,90,103,109,106,108,114,113,94,104,97,105,107,108,101,97,91,104,103,117,109,106,106,108,98,104,101,117,101,110,115,103,100,100,102,99,105,105,104,102,112,118,104,102,99,75,94,110,116,102,107,104,114,109,94,106,113,97,113,97,97,104,109,95,94,101,102,135,91,105,95,95,109,107,105,104,107,108,109,103,109,97,107,102,109,113,91,100,100,106,106,99,104,110,110,95,104,106,109,93,100,103,95,94,109,112,93,113,97,118,98,91,98,72,111,105,91,105,92,108,106,98,90,108,95,110,106,119,115,111,120,107,92,104,102,99,102,106,109,99,109,98,84,100,97,99,121,104,99,101,106,105,110,112,107,98,110,110,110,100,108,108,106,102,99,105,106,106,111,107,94,116,106,110,98,93,105,108,117,102,105,116,93,100,109,109,109,109,110,103,102,106,98,106,106,109,102,95,104,103,71,102,99,104,114,109,96,117,105,101,105,100,108,108,94,87,94,122,95,96,97,102,95,101,104,92,102,100,113,116,105,100,122,97,102,101,113,122,112,103,113,120,92,105,92,106,98,101,109,112,104,92,99,129,106,99,100,108,109,125,109,97,95,100,84,113,99,106,100,104,95,114,109,99,106,107,115,109,109,100,97,97,107,98,99,108,109,114,105,100,95,109,116,109,110,110,117,114,102,99,105,105,106,106,105,113,98,104,109,109,111,109,97,106,114,101,106,101,113,115,108,123,96,107,91,99,104,105,108,107,108,103,100,98,106,85,105,101,102,94,103,104,111,103,99,115,103,91,120,95,93,98,109,101,99,104,122,115,113,118,105,106,100,100,95,101,100,97,104,87,100,104,105,102,108,100,116,99,113,110,103,105,98,103,102,102,105,113,106,121,120,108,95,105,111,111,99,96,98,106,91,93,116,96,101,137,105,102,106,107,105,107,100,106,95,99,109,107,113,101,95,112,113,101,100,106,117,116,110,105,110,104,96,109,110,103,104,112,112,97,100,100,102,84,112,104,111,102,81,106,108,99,121,108,107,112,108,115,93,109,113,91,105,106,97,110,102,105,105,108,93,108,107,103,120,106,120,105,112,109,105,101,110,111,100,100,99,104,110,115,106,99,108,105,103,110,114,94,101,108,108,108,107,106,96,105,94,92,110,106,106,105,86,97,121,101,97,108,110,106,109,105,101,92,106,99,87,104,115,87,92,104,101,102,112,105,89,105,103,111,116,104,94,92,110,103,98,82,106,101,102,98,95, +622.03375,105,116,98,93,106,98,111,93,105,105,97,101,116,111,109,97,101,111,99,104,101,128,100,85,105,124,112,130,103,105,108,111,99,107,101,99,103,104,106,106,97,115,96,103,129,118,108,116,101,115,98,117,104,95,111,96,95,101,96,104,106,75,99,93,101,118,109,98,102,110,92,115,102,92,104,118,90,113,117,107,105,112,107,99,99,92,105,107,93,104,99,98,118,109,86,100,110,103,96,89,96,99,99,97,106,119,106,106,113,115,100,106,103,104,106,105,104,104,107,110,104,117,101,111,87,104,107,106,94,116,109,109,101,104,107,95,104,114,92,102,110,108,101,104,99,131,107,104,98,102,106,113,97,126,105,117,103,100,104,91,104,105,101,110,105,102,103,98,101,105,101,98,101,108,117,114,106,103,107,108,117,122,109,102,104,106,101,100,99,93,96,105,106,102,112,102,104,104,121,111,103,107,104,112,99,114,96,114,109,107,92,102,103,98,106,111,109,121,104,108,108,108,110,83,104,101,109,110,103,104,102,104,104,90,112,111,103,115,106,91,99,108,106,120,100,106,104,96,103,111,101,119,93,113,105,107,99,101,101,111,90,109,102,106,104,102,105,96,95,102,113,87,112,104,114,107,92,107,103,95,93,96,118,120,100,101,94,105,108,101,107,101,110,103,117,108,116,114,99,100,97,98,105,116,121,110,117,115,102,110,119,117,102,106,105,98,106,100,100,99,98,105,114,109,93,106,121,92,116,104,112,109,105,115,120,110,99,114,103,105,104,96,94,89,117,129,105,117,98,95,105,116,97,100,117,97,94,116,109,103,111,102,104,96,98,106,104,109,98,99,117,100,108,108,108,95,91,99,105,96,107,112,102,107,97,105,99,127,101,100,110,104,103,110,109,97,111,83,99,104,112,107,105,99,110,91,101,106,109,111,99,104,101,122,99,96,117,107,102,92,101,99,102,99,116,100,108,110,92,106,106,92,109,97,100,121,100,102,106,108,111,111,105,111,98,110,98,106,108,112,106,113,103,116,109,103,105,102,114,105,97,108,111,104,112,117,107,102,111,100,113,114,121,103,110,114,103,106,91,104,101,111,117,100,100,111,110,112,92,109,116,117,107,102,94,96,113,111,109,120,129,100,106,102,106,109,103,116,104,105,98,106,98,117,117,104,96,124,115,103,109,102,106,107,122,104,115,108,105,102,108,97,112,103,92,100,122,102,117,105,108,112,104,114,106,112,113,119,110,102,99,109,110,105,94,104,88,90,98,110,110,106,93,103,93,112,109,109,119,104,101,104,109,102,94,102,98,102,91,98,107,113,111,110,94,101,109,107,98,109,104,110,103,113,112,109,93,103,102,111,104,101,105,109,105,99,92,107,100,111,110,99,111,106,105,101,107,108,103,116,107,105,108,101,101,104,95,94,102,103,104,105,110,112,83,106,97,114,110,114,103,106,108,99,102,94,102,101,102,111,105,103,117,112,96,94,112,103,104,112,103,112,109,104,106,103,96,107,103,114,106,96,104,95,115,106,110,122,118,112,111,124,106,98,93,103,97,89,109,106,95,109,106,110,112,100,94,113,108,81,96,95,95,98,111,107,104,105,98,114,98,113,102,99,109,102,101,97,102,97,110,113,110,118,100,109,100,100,109,101,100,105,105,105,108,98,112,96,101,111,110,114,113,105,109,105,114,101,95,104,83,106,106,96,102,110,95,113,100,107,108,110,98,101,93,101,99,103,113,105,104,105,107,106,104,103,103,108,103,108,110,110,108,97,88,91,93,107,95,80,111,100,107,107,109,108,102,97,107,115,108,112,107,107,115,103,112,111,106,111,101,83,97,104,115,103,107,98,90,101,101,107,99,122,100,101,116,111,110,107,104,102,104,108,113,107,106,102,103,103,105,109,107,106,108,107,106,111,103,86,103,101,97,107,108,92,109,106,98,101,105,111,104,112,97,101,102,108,108,109,115,105,89,94,123,115,104,106,109,111,101,102,110,129,104,125,101,117,114,103,100,111,116,120,111,106,98,120,102,111,97,105,106,99,112,105,110,95,96,108,110,110,112,104,82,104,78,126,105,108,102,99,108,102,111,103,103,108,100,105,104,112,103,98,102,105,103,110,109,110,106,98,110,106,105,103,104,110,105,106,106,105,105,102,107,100,114,104,103,110,101,102,114,100,104,99,114,111,113,108,102,109,110,100,107,112,99,110,109,107,108,100,99,99,94,98,95,90,104,107,101,100,117,97,105,99,97,111,96,116,95,102,98,98,95,111,98,100,98,102,102,111,112,103,121,102,100,99,107,90,109,105,98,78,104,100,108,110,112,112,104,99,101,101,111,92,103,117,119,95,121,113,109,107,121,103,133,120,123,115,126,117,114,103,111,99,101,118,107,97,106,103,113,119,107,109,106,102,95,110,97,104,101,113,103,113,101,103,100,105,101,98,105,110,99,106,99,91,93,121,98,109,112,88,96,96,73,109,100,105,96,90,108,91,120,113,121,110,102,107,103,114,103,105,99,107,117,97,91,114,99,108,93,106,100,117,102,98,105,91,90,110,101,102,110,110,95,101,107,100,101,102,116,108,108,112,106,103,105,117,83,105,104,92,111,85,109,105,98,121,117,103,105,103,116,121,97,105,110,106,93,109,101,107,99,109,94,97,110,104,101,105,101,99,110,102,107,114,113,103,108,112,115,104,99,112,112,111,104,106,98,106,124,95,105,106,98,102,101,100,109,101,102,111,103,115,108,109,108,110,113,122,111,106,103,99,113,108,113,99,96,109,101,111,119,108,112,100,101,104,112,100,122,87,97,104,102,105,107,107,98,102,106,101,94,100,102,112,104,103,81,106,106,101,104,102,105,114,107,111,107,128,107,99,112,96,113,97,100,104,105,104,103,108,101,100,105,117,107,117,105,86,109,96,97,94,100,107,108,103,102,116,109,117,106,102,99,114,109,101,119,107,105,108,106,106,99,101,116,96,109,111,93,94,107,110,114,95,110,108,94,107,105,110,106,104,100,106,97,98,104,102,109,127,109,102,105,111,96,90,98,103,85,103,100,97,108,106,72,109,100,112,98,117,140,99,114,105,104,111,95,102,112,120,92,113,104,109,104,102,102,111,103,91,107,104,105,111,101,104,108,109,110,91,109,98,102,95,111,106,114,103,113,109,101,94,104,105,105,104,100,109,110,102,110,107,92,106,116,104,102,109,101,99,87,104,110,109,99,97,104,99,81,115,101,88,117,117,107,109,107,100,69,91,99,102,114,108,100,109,97,93,117,99,102,113,108,102,115,113,100,111,98,107,111,111,107,99,96,99,109,110,110,101,96,100,109,108,95,91,104,100,99,110,102,104,98,102,115,103,103,111,95,103,116,112,89,110,106,101,98,96,102,122,100,95,109,103,91,115,94,105,104,104,99,125,125,106,97,100,104,106,103,103,109,113,106,94,101,92,118,98,106,99,99,110,90,112,111,100,112,112,95,101,111,107,93,97,106,101,98,109,108,107,98,94,120,101,104,104,111,110,102,102,109,103,101,106,109,107,114,112,114,92,103,110,111,109,104,90,96,110,98,106,97,111,117,107,95,108,100,101,99,92,108,110,101,105,101,102,121,105,99,109,117,106,95,99,110,116,89,99,101,100,110,97,103,102,105,103,113,119,104,104,107,107,100,108,106,110,102,101,103,113,98,100,92,108,133,102,106,105,102,113,110,106,109,112,102,107,99,105,102,91,104,119,104,107,107,109,115,104,111,104,113,105,100,96,109,107,107,104,95,100,104,99,102,102,95,107,112,102,102,98,105,93,110,95,101,105,98,110,94,98,103,79,115,112,103,98,82,113,109,96,105,94,73,104,98,106,97,109,112,103,109,109,97,96,82,105,102,95,87,106,109,105,97,97,112,100,107,99,112,111,106,97,100,98,98,108,104,102,102,98,100,105,105,123,100,108,96,112,92,94,106,95,103,119,100,112,112,97,106,112,109,93,103,98,104,112,100,97,100,103,103,101,106,108,123,111,112,102,99,98,105,114,105,102,106,109,94,92,109,105,108,100,96,106,105,101,102,96,95,93,91,125,109,108,95,109,101,103,104,112,101,96,101,106,116,97,108,115,103,99,111,102,103,112,115,98,108,94,108,97,109,99,108,107,95,102,97,112,102,116,119,99,102,108,115,113,116,104,106,107,109,118,104,92,113,99,111,104,109,102,108,101,111,136,105,103,99,106,100,102,89,106,99,107,105,100,92,102,113,105,117,110,127,87,106,103,117,112,110,87,102,96,105,99,97,124,111,106,86,120,89,106,102,99,115,106,105,98,102,105,104,104,102,101,114,110,93,101,102,117,106,115,103,96,111,121,104,107,109,101,106,87,111,102,110,99,102,104,107,112,92,94,63,104,110,101,105,101,96,97,109,114,97,104,104,102,103,107,114,110,99,105,96,107,116,100,102,97,104,104,100,106,98,101,115,112,96,98,104,112,112,112,113,103,105,104,100,91,94,99,97,117,113,102,104,109,129,101,95,108,106,115,115,98,94,101,113,113,109,99,97,100,110,108,97,100,97,99,97,113,117,99,104,116,106,102,102,119,108,106,109,105,106,115,109,94,100,95,112,105,105,105,105,107,109,98,111,110,110,108,91,110,102,99,112,92,103,101,101,95,98,118,94,106,102,113,108,117,108,99,104,110,108,93,108,110,97,103,101,111,105,99,105,85,104,118,108,101,115,112,94,116,104,97,116,101,75,105,103,108,101,105,103,103,110,98,108,112,112,111,104,82,99,102,100,107,92,106,94,112,129,113,95,120,102,99,109,113,89,98,93,116,92,111,112,90,110,94,97,111,105,95,97,124,100,79,98,102,115,98,112,103,100,105,101,85, +622.1748,104,111,90,94,113,108,99,115,92,99,107,117,101,93,102,90,101,92,96,100,109,100,95,108,96,97,103,100,99,105,118,103,92,111,106,97,114,90,123,104,100,106,110,100,106,112,92,104,91,100,98,100,95,102,114,103,95,94,111,107,114,97,106,102,90,94,99,89,100,94,105,91,101,103,112,114,95,86,96,94,98,128,100,105,111,100,92,108,99,95,105,105,100,100,95,111,104,104,105,95,96,83,107,114,107,83,92,112,109,98,105,100,122,98,93,98,107,88,105,94,118,107,101,130,105,107,101,103,92,101,99,102,105,113,105,103,106,101,102,95,101,111,99,109,95,104,116,94,103,112,102,103,116,98,104,102,94,105,105,81,93,112,108,115,98,105,91,96,105,107,103,107,103,96,99,100,92,96,105,112,104,101,101,91,112,104,98,87,99,104,100,102,104,94,107,113,114,104,108,112,105,110,99,111,100,102,104,112,112,104,107,108,106,99,101,99,98,104,104,112,115,100,100,104,93,104,113,99,100,106,97,109,104,107,108,111,110,106,103,75,99,115,106,113,99,91,97,94,103,112,98,108,103,115,117,101,107,99,93,105,121,100,100,95,97,101,102,96,99,107,99,109,101,111,117,102,99,103,114,113,86,125,95,107,114,117,94,106,94,100,103,91,120,118,106,100,99,104,112,108,93,107,106,112,81,93,108,93,96,118,92,120,99,108,104,72,95,103,112,104,104,99,95,118,105,102,96,95,97,111,112,102,102,128,104,118,118,99,106,100,96,114,96,112,94,115,106,76,110,90,117,111,93,100,109,93,100,91,115,103,92,107,97,102,104,111,104,108,107,102,102,110,104,122,102,104,103,100,100,102,111,103,96,118,102,87,112,101,100,99,110,90,97,102,105,109,109,108,115,102,109,111,108,124,107,106,91,100,111,104,97,93,99,100,93,100,107,96,106,78,98,105,108,110,93,93,107,100,99,103,103,102,89,103,84,97,107,91,101,117,108,104,102,98,107,98,100,99,94,109,99,109,97,112,92,109,95,102,109,98,111,117,103,104,98,113,90,94,97,109,107,110,101,109,90,100,95,114,95,97,108,98,109,117,81,101,108,107,101,87,105,108,108,108,109,103,100,98,104,101,70,102,91,104,117,104,102,110,106,96,99,111,102,106,108,98,92,94,111,100,99,97,104,96,85,114,103,107,104,108,107,114,114,87,96,94,117,99,94,106,114,107,98,107,106,110,96,102,110,96,114,113,95,100,99,88,101,101,101,97,114,110,101,88,110,101,102,100,88,91,90,102,111,91,113,102,112,103,104,113,110,102,129,105,99,97,100,108,108,105,122,106,113,104,102,98,94,90,98,98,98,105,108,99,109,100,94,110,104,109,99,107,114,93,100,105,109,95,96,94,116,104,102,104,101,99,93,104,106,108,106,92,100,95,102,104,98,96,112,108,104,112,106,109,97,95,103,91,94,111,100,95,111,95,104,98,106,103,92,99,101,110,99,98,88,105,109,101,106,85,105,114,114,101,108,105,98,90,111,97,115,99,92,102,91,112,94,94,107,108,102,117,102,108,109,101,98,103,106,91,112,110,89,110,108,106,100,94,112,95,92,99,102,102,103,109,99,116,98,101,106,102,91,105,107,98,112,99,100,101,100,102,93,99,100,100,103,87,120,100,116,105,101,99,98,94,109,120,91,104,116,83,102,103,102,105,106,105,114,107,99,109,98,105,90,110,108,79,107,104,90,95,108,98,113,101,105,99,91,97,111,98,111,110,108,122,106,104,96,101,105,102,104,103,110,94,106,115,104,100,105,101,103,93,105,105,106,114,105,95,110,131,98,93,104,100,113,100,110,105,112,110,98,108,108,112,100,94,114,112,100,94,118,116,114,103,95,105,93,106,94,108,105,103,110,103,86,99,91,108,104,95,107,107,101,91,105,103,103,109,103,96,89,109,104,113,92,106,111,104,101,119,99,107,96,129,111,117,111,94,106,110,100,103,102,95,106,104,115,99,108,120,91,91,114,86,112,107,112,103,105,101,118,99,105,103,120,101,109,103,100,100,103,107,104,98,93,100,95,109,113,108,104,94,105,118,96,113,94,111,107,100,112,97,95,111,112,102,109,110,87,116,118,110,104,89,95,101,93,109,88,105,107,105,100,98,107,93,113,103,113,104,99,98,95,105,102,94,102,103,71,92,78,106,105,105,87,109,101,101,106,102,105,100,109,109,107,112,101,110,98,113,106,106,95,91,99,109,88,105,109,95,95,108,95,108,103,99,107,114,97,108,129,115,106,108,115,114,110,95,110,106,106,82,102,82,107,94,107,103,110,109,121,94,107,91,117,122,101,106,116,110,122,123,97,121,105,90,108,111,113,120,113,109,109,101,111,94,110,100,98,108,109,104,85,109,100,102,116,91,109,102,119,99,111,94,91,116,104,107,93,108,90,81,100,99,98,90,102,100,96,110,100,102,109,110,95,91,109,98,100,103,94,109,103,104,88,101,106,105,113,105,80,110,103,92,108,103,103,104,91,107,98,94,102,100,105,101,105,106,108,110,103,89,108,97,101,104,96,101,93,100,94,102,116,114,106,106,103,85,102,96,111,109,96,102,103,109,91,99,106,105,105,91,99,102,110,104,91,99,106,94,106,113,100,105,104,96,97,101,106,115,100,101,90,109,114,86,95,107,103,100,96,108,105,90,108,105,95,97,91,102,94,98,116,110,90,90,99,109,105,108,102,107,114,104,92,93,108,99,90,117,100,108,115,98,99,105,109,103,93,92,109,100,94,93,97,105,108,101,84,104,96,105,99,91,104,99,100,100,95,106,87,106,111,94,91,106,99,112,103,106,101,102,103,87,102,111,109,107,108,94,106,102,103,101,98,110,89,106,98,103,99,104,113,120,95,95,107,102,104,120,87,99,117,133,102,102,109,103,104,106,98,100,93,89,108,99,98,98,109,89,98,95,98,107,101,102,106,101,96,92,100,97,108,92,114,100,107,109,103,107,96,103,105,102,99,90,120,104,70,98,117,102,109,98,100,100,103,91,113,93,105,100,103,95,101,100,96,94,108,95,100,104,101,100,115,103,99,100,111,99,106,110,108,104,99,99,109,99,105,99,104,91,100,109,89,99,108,107,107,91,94,112,106,100,95,103,105,108,115,104,98,107,120,103,91,106,99,94,105,99,107,109,91,102,103,96,101,96,95,105,96,109,80,105,100,104,114,98,115,108,106,109,93,95,88,115,106,98,112,101,109,96,102,107,105,112,100,104,96,100,104,100,95,96,109,114,97,91,86,113,104,107,98,100,87,105,98,98,106,115,92,97,108,103,102,101,103,95,98,103,110,105,98,110,112,101,97,113,109,89,98,113,100,95,116,105,115,93,95,99,91,105,106,91,105,102,99,98,94,106,97,95,99,95,108,102,95,86,101,102,120,100,87,80,103,102,106,101,109,101,71,100,106,103,98,99,112,95,98,112,94,106,114,105,100,100,93,112,94,105,97,100,104,95,104,97,103,109,89,110,92,110,91,105,105,90,112,113,105,96,87,101,94,116,101,92,105,90,99,106,99,97,99,101,115,101,92,108,107,95,103,99,110,100,97,104,108,94,98,102,94,97,92,101,102,96,92,113,94,93,105,97,113,110,99,102,97,117,99,103,100,94,75,90,111,102,102,106,102,98,102,102,119,99,101,98,105,106,106,128,107,95,108,91,98,110,94,106,105,106,96,105,106,93,113,98,99,97,97,99,118,107,97,91,102,91,101,95,106,113,105,105,101,94,111,117,104,104,95,98,112,98,99,96,95,84,108,101,104,100,107,108,97,97,106,95,102,99,105,108,96,106,104,89,106,109,90,100,98,103,99,101,102,96,93,113,110,101,100,109,118,90,102,102,93,96,100,101,115,105,92,113,108,101,114,112,97,114,84,108,105,96,110,108,112,97,108,85,107,96,113,112,106,99,99,113,93,110,106,105,91,97,105,102,105,97,112,109,94,100,100,96,107,95,109,100,91,106,100,88,82,93,126,107,101,91,105,95,112,100,99,92,115,108,100,96,112,99,106,104,114,102,105,100,97,105,98,95,97,101,115,102,94,99,112,112,95,111,111,88,116,117,102,107,97,103,104,103,113,103,87,93,106,101,99,97,92,94,106,90,100,96,103,101,108,103,99,111,114,110,99,94,95,107,99,112,111,103,99,91,95,100,100,100,104,94,89,90,97,98,108,103,99,117,95,113,96,111,99,69,113,115,102,92,125,94,95,99,99,106,96,102,106,105,106,109,100,110,105,91,119,98,115,91,105,97,117,109,100,108,107,103,103,102,95,103,105,102,95,108,96,117,104,117,111,91,108,105,103,104,91,112,102,112,90,108,106,109,101,94,101,104,101,110,101,99,96,101,110,103,104,91,109,108,100,85,113,117,97,105,100,101,106,100,110,94,87,87,72,93,120,85,96,100,94,104,93,100,108,94,90,121,112,98,101,98,99,102,101,109,98,117,95,110,102,98,112,101,113,95,99,113,113,106,79,91,100,79,96,102,98,103,103,94,101,102,108,103,104,96,106,103,118,94,101,108,105,108,103,100,102,106,99,106,95,108,111,93,93,98,91,112,95,101,101,100,112,100,105,91,100,106,71,101,92,98,103,100,111,108,102,90,112,99,99,100,102,102,114,100,117,100,101,73,103,100,109,93,103,95,110,105,108,105,112,81,108,105,116,89,97,93,93,97,96,99,106,108,102,115,103,104,97,98,117,97,101,110,84,93,95,113,92,91,109,107,106,88,99,116,100,101,103,97,100,87,100,102,107,103,105,103,97,91,92,105,105,92,92,102,96,98,97,97,99,112,120,105,104,106,81,118,105,103,105,95,101,90, +622.31592,107,98,102,100,105,114,128,95,103,107,96,105,110,112,108,89,96,81,98,93,116,99,82,112,100,114,98,107,104,108,111,107,100,101,105,92,123,109,101,102,91,113,107,104,105,113,93,121,108,119,94,104,118,112,103,102,101,104,106,98,110,107,103,108,109,106,93,105,110,98,134,112,101,106,99,118,115,113,113,121,104,118,107,104,104,101,101,107,96,126,109,118,82,120,95,110,102,107,98,103,106,88,69,103,107,96,98,102,112,109,102,94,112,91,106,105,102,102,109,98,103,108,109,107,120,98,105,119,102,98,101,95,112,98,112,112,99,106,95,99,105,114,116,102,92,117,108,99,91,98,98,115,104,102,109,104,119,102,118,68,103,81,101,119,109,103,112,114,99,115,104,103,107,105,100,106,118,108,109,101,104,102,99,99,111,112,105,98,97,96,94,108,122,106,109,103,89,115,104,107,92,112,106,114,100,102,101,98,104,104,90,94,104,109,107,101,100,121,97,109,102,111,110,108,110,108,100,101,103,109,109,106,93,111,113,104,96,107,107,100,96,114,110,106,99,107,94,109,105,104,108,104,112,112,109,105,112,107,103,109,95,100,94,109,94,118,105,113,96,101,105,96,107,102,107,87,110,97,84,105,109,106,105,114,103,108,94,104,109,109,109,119,118,112,113,107,102,110,96,103,112,111,108,117,104,103,92,125,102,103,104,120,95,102,120,106,103,102,107,96,118,83,111,104,100,102,105,102,101,110,107,105,108,108,107,99,112,105,103,108,95,113,98,87,101,110,89,101,106,103,104,106,112,101,108,95,98,122,111,101,93,99,95,93,110,103,115,96,103,96,112,102,105,101,109,103,100,112,108,115,103,106,103,111,100,108,96,109,112,106,118,89,105,105,100,95,109,96,97,111,111,105,112,108,113,104,104,126,105,100,101,102,104,110,104,97,104,99,106,93,112,104,110,100,102,103,111,102,98,111,105,103,121,95,102,101,98,117,110,98,112,107,100,104,97,121,102,113,111,106,109,103,88,113,108,96,107,114,117,109,99,98,136,107,99,104,113,75,104,98,115,94,107,100,94,99,96,102,100,106,101,113,128,98,90,105,110,98,98,113,110,100,104,103,95,98,96,117,112,102,108,98,111,106,99,108,101,111,113,105,109,103,102,108,105,109,107,91,100,108,107,107,99,96,105,123,115,102,116,102,114,100,99,104,103,103,114,107,105,109,109,106,109,101,110,99,129,108,119,110,100,113,109,100,102,101,102,110,105,95,110,118,100,111,99,102,108,104,104,94,97,99,107,99,99,102,106,107,108,107,109,100,111,109,107,103,109,108,102,104,110,102,104,108,113,104,100,95,107,96,98,103,105,107,103,112,105,89,89,105,109,104,108,97,96,103,97,114,111,109,112,104,123,101,99,114,109,98,114,101,109,116,110,130,108,105,101,110,114,106,97,91,110,112,107,103,129,104,106,100,109,116,116,114,107,91,101,104,66,111,92,99,97,105,106,97,106,108,100,113,111,103,115,100,95,99,114,99,101,94,108,102,107,98,99,103,100,97,95,106,111,108,114,110,102,94,109,100,107,109,107,107,100,102,92,112,105,104,91,93,102,104,106,103,99,109,99,116,102,120,118,96,109,105,114,101,105,102,95,108,99,93,99,104,103,111,98,113,113,105,94,81,116,119,108,105,103,104,100,99,104,98,114,110,98,111,116,107,119,109,102,113,98,108,100,101,100,101,111,105,111,99,113,101,94,112,101,110,105,98,101,98,94,115,103,104,100,103,103,106,108,103,103,104,112,105,114,87,113,99,107,110,105,108,112,97,99,107,121,97,121,100,97,102,108,108,109,106,98,96,97,104,87,110,107,108,107,105,103,136,115,94,103,99,109,109,99,71,108,111,112,108,105,107,107,116,102,92,108,102,103,104,108,112,102,110,103,117,103,112,120,111,106,110,108,111,102,103,106,101,97,112,107,105,92,109,114,99,99,112,104,102,98,117,113,99,96,109,109,97,115,115,107,110,105,110,94,111,98,104,112,112,119,92,103,100,110,113,106,98,94,110,102,98,123,109,95,102,100,102,103,100,109,98,96,111,95,94,85,112,102,109,111,109,91,100,96,107,107,106,91,106,130,106,93,117,106,105,104,113,115,99,108,111,111,109,109,94,109,105,91,106,109,115,106,108,114,112,100,102,103,108,102,103,117,98,107,103,107,100,111,105,101,103,87,109,97,98,95,104,113,102,113,104,103,88,91,105,94,94,112,111,93,102,113,100,111,110,102,114,101,103,110,104,101,94,102,100,100,99,117,107,114,94,109,109,94,91,122,134,103,105,112,104,113,102,93,123,108,112,105,120,112,112,87,116,116,109,117,113,111,124,101,125,113,116,88,110,111,100,102,111,112,116,104,99,102,102,104,101,127,111,95,103,109,101,115,105,109,100,105,104,101,106,110,114,97,104,123,113,106,104,99,105,98,102,105,108,118,128,101,104,99,108,99,104,106,119,102,112,96,127,112,96,100,96,94,108,104,104,92,103,100,111,114,98,99,110,96,102,106,107,112,102,107,99,111,108,101,95,116,110,91,111,92,99,107,97,112,97,118,111,114,112,108,99,112,104,116,112,120,88,100,96,107,117,111,104,94,102,107,100,89,111,112,105,117,115,110,125,108,109,111,105,98,107,125,96,97,115,113,111,91,98,108,94,92,97,103,110,119,102,105,104,116,107,102,103,104,106,109,103,90,109,97,109,125,104,92,102,108,96,100,110,112,108,101,79,97,105,93,98,101,101,109,92,102,107,101,121,106,102,91,99,108,111,90,123,121,115,114,107,107,111,102,110,91,103,110,105,107,111,111,108,107,94,108,111,112,81,101,109,113,108,107,109,105,96,105,101,104,103,112,103,103,105,108,101,105,109,100,104,97,97,106,106,105,100,106,103,106,108,109,98,110,98,104,103,105,108,102,105,100,103,107,111,104,103,111,113,105,112,99,120,102,103,106,111,108,110,102,100,104,108,88,95,106,102,99,102,98,106,113,102,112,134,119,127,105,114,97,112,99,101,91,108,118,88,99,109,102,114,106,105,105,112,91,109,103,100,112,99,103,119,108,94,102,120,114,101,110,102,100,114,119,94,109,109,104,102,91,92,95,111,112,78,103,104,108,109,114,104,102,117,108,105,126,99,101,103,72,112,102,113,106,109,91,107,110,95,109,100,96,115,104,91,119,96,112,103,114,103,98,108,120,132,109,114,104,105,105,103,116,104,104,105,111,99,105,107,91,106,113,111,106,109,110,102,106,100,99,112,101,107,109,104,105,107,113,104,101,115,104,100,113,80,100,77,96,110,107,110,100,110,86,86,94,99,98,93,116,101,99,116,107,108,117,114,121,99,95,109,109,120,109,107,97,105,111,98,102,96,94,98,107,106,105,106,107,94,106,98,100,104,100,97,83,98,105,101,100,99,107,99,123,111,113,103,113,111,106,123,104,100,109,112,107,103,114,92,110,101,107,108,98,106,108,107,92,91,94,106,109,102,112,115,96,111,104,116,119,95,95,91,101,107,105,102,121,105,102,107,110,114,112,110,108,97,104,109,102,108,100,98,102,98,108,100,111,109,110,104,111,108,106,102,107,112,114,107,104,103,103,106,92,103,101,117,103,108,93,130,95,106,107,104,106,130,106,95,102,105,105,100,110,102,105,102,107,88,107,101,101,108,98,104,101,112,106,100,104,104,110,104,103,101,106,109,120,100,110,99,109,99,104,111,102,105,101,105,104,107,96,99,103,119,99,115,100,109,107,98,107,102,90,103,106,100,89,112,106,107,101,120,105,103,105,99,108,106,100,115,105,120,97,102,104,103,102,98,108,113,98,96,108,112,115,105,96,103,98,107,107,115,104,100,101,87,99,102,104,108,107,120,103,115,117,102,103,94,110,118,99,102,101,96,93,113,98,109,98,100,108,108,106,100,108,110,110,103,108,111,110,107,104,100,96,102,117,98,105,108,105,104,100,112,117,102,106,97,106,113,99,103,112,107,100,110,99,108,102,105,101,97,111,105,102,90,89,103,115,99,126,103,99,121,96,121,111,111,118,100,103,102,100,102,103,98,100,110,106,96,97,96,93,113,115,111,102,109,106,123,107,97,111,116,106,97,96,94,114,114,92,96,106,105,106,102,106,106,120,107,103,117,113,101,105,113,140,104,113,98,112,102,102,108,105,120,105,80,89,102,117,109,110,98,97,108,105,107,102,110,105,97,98,90,103,113,114,108,105,111,113,94,99,94,112,100,99,112,108,114,101,116,98,95,95,111,97,96,95,110,117,96,95,102,94,101,107,103,131,112,111,113,102,104,108,108,113,110,103,112,115,100,106,99,89,113,79,104,101,99,101,103,112,112,104,98,113,99,100,107,99,103,94,112,103,96,98,101,111,96,104,103,107,104,110,101,96,117,103,104,79,98,110,95,109,111,110,103,102,98,102,106,103,103,102,93,104,99,106,88,106,96,99,110,98,95,109,104,111,95,115,107,107,112,109,95,102,104,117,105,101,107,115,114,107,102,115,87,104,104,108,112,116,96,98,100,106,99,105,101,96,117,100,100,99,105,105,102,105,115,100,104,96,115,112,100,97,95,98,95,107,96,97,95,103,104,103,93,108,104,108,103,88,107,95,90,99,100,106,106,102,115,102,91,94,104,71,99,100,105,101,113,96,92,108,102,110,103,79,84,102,103,98,104,95,107,115,99,98,101,105,103,99,92,123,100,84,118,109,108,114,106,99,103,97,102,117,105,102,106,97,115,96,108,104,112,94,100,124,116,98,124,95,92,97,108,106,102,107,106,103,105,104,91,96,88,98,102,98,129,102,109,95,107,109,104,107,75, +622.45703,108,112,89,112,98,117,106,95,101,88,106,86,95,114,101,91,96,102,104,119,103,91,103,112,111,101,101,98,98,104,107,113,99,100,103,101,99,100,109,87,106,96,88,98,99,99,93,106,97,94,98,96,102,97,101,99,88,106,95,87,97,102,110,91,107,112,110,110,102,107,104,108,119,100,102,106,91,105,113,98,110,98,104,109,92,93,104,103,117,94,110,92,109,117,98,112,105,98,97,96,94,115,98,105,89,97,98,97,108,94,95,103,106,93,103,116,93,94,98,103,109,105,108,103,104,110,98,83,102,102,95,102,106,108,100,100,90,100,102,90,100,112,109,95,104,101,104,100,98,87,72,103,100,100,88,97,100,102,113,102,95,103,96,104,97,71,96,94,95,108,94,99,102,111,105,100,96,99,96,98,103,98,96,94,94,105,91,94,108,94,94,104,106,108,92,105,88,100,102,95,105,110,117,95,104,101,98,103,114,112,103,102,106,107,111,109,106,107,110,98,101,116,97,107,106,99,109,108,102,105,94,112,96,100,93,106,103,104,98,101,97,107,122,104,110,105,92,106,92,109,101,105,96,92,102,101,94,103,109,107,108,109,107,97,93,108,100,113,102,100,102,105,100,105,117,115,114,100,81,107,100,101,103,114,80,105,89,96,115,95,97,121,110,90,96,104,96,116,114,100,110,88,115,103,81,104,125,99,106,107,106,112,108,102,90,117,101,96,100,93,100,88,105,100,94,98,108,92,113,121,96,95,102,101,104,123,106,87,106,94,115,102,101,100,103,99,105,109,129,104,99,107,100,86,105,110,84,118,105,98,99,104,99,108,100,102,102,106,108,103,95,94,108,106,107,106,117,95,102,121,101,100,102,108,102,124,103,98,91,94,113,94,92,114,115,114,95,104,108,92,100,103,90,98,74,87,89,95,110,95,100,101,109,107,121,108,97,98,91,110,131,97,96,99,101,102,126,101,118,125,96,92,91,109,106,112,100,104,95,99,112,94,112,105,95,91,101,93,112,113,84,103,100,104,107,100,112,109,108,108,107,95,104,114,110,109,114,102,96,102,108,117,106,104,85,92,106,108,105,113,109,106,112,124,109,115,91,90,91,95,109,95,98,90,83,106,106,98,98,97,115,92,101,107,95,102,102,96,108,103,105,111,91,105,95,102,104,87,92,91,120,105,95,107,98,99,105,100,95,110,105,104,102,114,108,98,108,100,97,105,93,99,95,102,104,98,106,108,105,109,98,111,109,90,94,105,112,108,97,96,104,114,99,103,98,105,103,108,102,107,91,108,88,97,107,108,89,109,111,105,96,102,110,97,100,91,114,104,108,103,107,100,105,101,108,94,112,104,111,102,106,102,110,110,105,106,99,99,107,99,87,104,107,103,104,96,99,97,98,93,109,94,105,102,114,101,104,103,108,102,102,114,116,118,93,82,97,95,68,97,106,98,113,95,110,98,120,104,100,105,97,98,106,109,100,82,117,107,105,102,99,103,99,105,101,104,117,99,116,103,100,91,101,90,89,111,120,107,109,105,108,101,97,104,109,108,96,99,92,113,102,107,98,110,109,129,94,103,104,95,96,116,104,96,108,101,122,103,90,113,104,107,104,92,92,104,98,102,94,107,106,93,100,110,112,71,77,92,105,101,99,107,103,97,100,101,106,98,111,106,95,105,107,106,104,99,107,109,108,110,106,106,95,95,108,103,106,98,108,115,110,104,101,118,113,103,99,112,113,103,99,104,111,106,103,106,113,113,98,103,103,80,113,101,102,109,91,100,100,112,102,107,101,109,108,83,97,114,91,101,91,101,99,103,112,101,105,105,109,101,111,101,93,97,102,101,112,78,112,106,108,108,101,124,108,100,105,95,98,102,96,89,99,105,103,108,94,107,112,99,70,102,101,100,110,104,98,89,106,108,103,86,92,113,97,101,101,107,87,114,103,106,101,113,103,100,95,99,106,107,101,97,111,116,99,104,112,97,96,105,111,105,97,94,101,105,96,111,113,104,88,116,103,120,111,104,93,116,90,88,113,95,104,101,111,109,92,109,104,105,97,100,102,99,105,92,97,108,108,105,110,106,111,103,105,107,99,109,104,100,102,91,109,104,104,94,99,90,112,68,104,110,104,106,108,105,85,106,95,105,95,103,105,103,106,97,105,113,103,115,115,103,105,104,102,91,88,108,99,103,113,100,99,106,107,116,101,107,104,96,95,100,92,97,111,113,74,100,102,106,104,102,112,90,101,103,99,106,100,104,118,94,96,96,109,133,109,100,104,115,109,119,93,116,109,108,106,93,100,108,113,102,110,90,105,107,99,94,105,95,110,95,117,93,106,95,110,115,130,110,81,105,96,111,103,106,121,102,115,107,117,102,109,109,91,114,107,95,95,94,109,96,117,96,87,104,100,84,111,102,87,112,96,101,106,91,115,79,98,93,97,100,97,114,104,97,102,100,107,113,100,98,85,95,95,101,115,108,112,110,102,105,104,110,106,103,106,112,109,102,100,103,110,90,106,97,102,111,103,109,107,110,100,102,103,103,102,90,115,101,102,110,111,108,102,121,100,98,106,98,114,101,103,99,105,88,104,105,121,101,104,100,110,113,99,103,112,100,103,102,113,110,107,91,107,105,97,81,115,91,125,87,110,97,98,110,110,102,102,114,105,106,117,92,95,104,110,99,106,136,100,98,117,104,99,108,110,96,94,108,97,109,105,114,98,107,100,95,88,78,98,106,108,109,103,103,108,94,110,110,128,121,105,93,106,101,99,105,91,113,108,102,91,118,109,101,105,105,129,111,113,102,104,99,92,103,113,112,97,92,101,112,106,100,113,109,106,94,86,107,75,103,94,102,111,105,104,106,102,115,95,107,102,120,109,94,112,98,95,113,95,112,106,114,110,103,105,106,108,101,108,108,104,100,103,103,97,105,108,113,102,102,97,96,113,101,121,99,95,107,121,112,107,113,107,110,106,99,108,99,103,111,96,99,91,116,115,96,101,112,94,113,104,102,99,92,106,105,109,111,106,95,112,87,124,111,109,95,100,92,112,109,116,116,100,106,95,113,104,84,103,110,105,101,101,104,98,96,103,120,98,113,105,107,105,112,113,100,121,103,103,103,113,109,103,91,117,97,98,105,96,104,92,109,99,105,100,107,100,91,106,107,97,116,104,108,111,113,97,104,110,97,103,96,109,113,107,112,70,101,104,100,101,98,98,106,114,104,113,115,116,108,96,108,113,101,101,103,102,108,93,87,95,109,99,98,104,112,108,115,101,102,105,117,88,108,104,102,120,97,112,95,104,102,101,93,97,103,100,109,104,116,95,115,111,74,112,105,101,103,102,106,108,111,97,103,100,105,106,95,95,106,93,108,105,102,98,123,108,115,94,104,109,104,102,107,107,94,111,124,99,107,99,106,95,107,105,105,102,103,117,102,75,98,101,100,88,107,101,107,100,96,103,103,115,108,91,117,112,98,106,83,103,126,99,119,132,105,106,100,110,108,105,110,104,104,101,102,107,95,105,103,104,110,106,89,111,115,107,105,121,96,105,108,100,101,109,102,106,92,101,96,86,107,111,102,108,105,113,96,100,102,99,106,98,96,98,91,109,106,98,112,100,105,108,95,102,113,113,104,100,122,100,117,110,104,106,120,102,102,111,104,110,107,100,109,100,101,105,99,105,89,108,115,96,122,106,104,98,87,113,107,89,104,112,100,111,95,108,99,105,101,109,93,104,107,104,100,127,108,81,92,108,111,107,109,111,95,102,111,113,113,106,101,104,104,103,100,98,98,95,94,107,106,115,104,106,105,112,102,100,99,100,113,105,92,106,105,97,111,113,99,107,114,102,109,79,101,103,110,102,102,113,99,105,92,102,120,91,97,100,112,111,104,109,112,104,112,97,105,114,91,115,111,103,108,117,100,117,98,99,109,117,108,97,102,106,103,102,101,108,97,96,104,98,106,97,114,89,106,98,76,94,102,105,95,109,109,95,104,93,98,93,113,103,107,111,102,115,106,108,100,102,102,107,98,101,104,96,98,103,73,107,106,113,108,108,103,88,121,111,103,101,90,98,96,104,115,105,105,105,96,111,102,95,119,101,99,88,104,102,77,88,98,98,107,104,116,112,106,105,104,106,103,106,104,104,109,102,102,109,113,105,108,101,115,103,106,103,105,116,107,104,105,109,104,102,102,90,97,69,94,114,92,95,114,103,100,105,95,97,106,113,107,117,105,101,120,119,112,111,97,109,105,113,102,100,96,99,106,117,102,109,103,108,106,109,105,103,106,100,111,119,105,109,109,103,111,109,104,99,98,117,108,100,103,106,94,113,95,75,99,107,102,109,110,126,112,106,92,96,93,86,114,129,99,94,110,116,88,95,99,107,105,94,105,112,108,97,103,109,103,102,105,108,104,92,109,113,95,102,107,121,109,102,90,95,96,107,100,117,106,107,75,94,108,106,92,117,101,92,103,116,110,108,112,100,100,117,89,97,101,100,116,98,109,117,95,106,113,87,93,99,94,109,109,106,101,94,95,99,103,104,110,103,129,116,99,99,109,102,104,107,104,110,103,105,115,100,104,90,101,95,101,99,98,116,109,98,102,100,105,109,102,102,106,106,100,114,132,83,104,116,104,97,107,99,102,97,93,101,100,105,95,106,92,103,87,99,106,106,105,89,106,102,92,102,106,108,94,99,104,99,109,103,101,111,99,106,103,106,103,97,106,122,99,103,109,108,105,95,108,96,105,107,87,110,111,96,101,85,98,92,95,93,117,98,91,85,100,99,105,106,106,116,105,92,107,104,94,96,110,113,95,95,103,106,116,115,100,104,95,113,102,107,97,92,110,106,83,108,112,96,107,109,112,104,105,131,110, +622.59814,122,101,93,103,106,103,98,99,95,104,95,94,107,94,96,91,97,118,108,113,99,93,105,100,106,104,127,91,104,101,97,98,90,104,113,106,107,108,111,95,112,98,103,102,109,104,108,95,103,115,103,98,99,85,105,106,95,105,98,113,101,116,111,100,103,97,100,90,110,107,116,112,88,104,101,104,108,102,101,106,106,108,113,92,95,103,107,101,95,94,93,106,117,101,100,100,102,99,112,77,100,141,108,105,103,109,99,108,102,110,103,105,108,97,106,95,107,105,101,100,109,97,105,105,103,111,101,106,111,106,104,68,107,105,116,107,106,110,98,101,101,116,102,106,108,106,100,110,101,101,108,100,115,99,103,98,100,99,105,122,95,100,98,108,106,105,122,98,98,104,103,109,108,99,107,101,104,99,100,100,107,104,109,104,101,97,101,97,91,85,99,108,107,80,103,116,109,99,98,109,124,119,90,107,101,98,99,107,113,121,79,120,96,93,106,86,93,107,98,103,119,107,101,103,96,117,100,101,111,107,99,100,114,111,106,110,110,109,106,101,104,104,112,92,74,91,116,91,115,110,101,112,117,105,102,112,105,107,103,99,102,109,94,102,99,110,103,93,102,92,99,115,102,99,98,112,102,111,78,97,104,94,104,98,91,101,98,110,115,114,89,105,107,112,120,92,122,114,100,102,107,108,110,99,103,104,120,107,88,108,103,105,104,106,105,114,117,104,102,105,109,105,107,106,115,101,95,113,125,106,111,104,105,108,102,121,95,89,107,92,117,100,99,95,108,112,92,121,106,105,101,104,104,98,127,108,91,110,104,102,101,95,100,102,94,113,109,106,96,109,100,100,109,95,98,103,100,106,105,103,102,103,95,110,100,113,104,101,99,99,105,91,99,105,99,100,107,112,120,102,113,103,101,103,112,99,106,100,111,108,100,102,91,108,103,108,103,100,98,95,98,102,95,99,102,106,103,109,106,108,105,99,100,99,92,97,96,97,105,109,120,106,103,100,105,103,119,98,106,112,110,102,103,84,103,99,110,103,113,107,113,110,104,106,113,113,98,103,99,91,105,116,107,115,100,81,100,109,109,108,113,98,100,101,105,106,116,94,89,100,111,105,107,106,103,98,102,102,118,108,103,111,108,105,110,109,86,107,121,109,109,110,101,119,99,102,111,105,96,106,105,111,104,110,100,114,102,111,106,109,91,112,108,90,106,97,110,111,102,105,113,107,128,107,124,105,117,117,81,108,100,105,106,120,112,98,110,102,80,123,112,110,103,117,102,105,111,87,100,104,100,92,113,107,100,96,106,109,109,117,101,114,102,91,115,120,114,113,105,97,120,106,105,104,110,110,91,108,107,107,109,95,110,100,103,95,117,110,106,114,109,111,102,97,111,100,111,102,114,79,103,117,104,101,92,100,91,104,108,99,91,110,111,110,107,117,104,96,104,105,100,102,104,101,102,85,117,98,97,105,99,101,111,105,99,112,106,107,115,115,114,99,104,100,103,107,110,114,105,105,107,112,94,106,101,107,104,110,107,95,104,112,106,108,95,100,103,107,113,104,99,102,97,102,107,97,112,111,104,112,103,104,99,103,82,98,100,111,107,98,108,105,109,94,109,105,99,107,105,95,105,103,106,119,104,100,109,117,106,112,109,108,113,112,112,114,106,113,113,106,107,102,87,96,111,103,109,97,99,110,125,96,103,91,90,104,96,82,103,108,104,101,91,112,98,95,88,108,100,107,101,101,103,96,99,114,95,102,96,95,100,116,121,102,100,105,108,108,106,99,106,99,111,108,111,111,107,103,115,108,111,96,94,88,107,99,101,106,107,92,113,90,99,106,110,110,108,104,108,104,98,109,101,99,115,112,91,92,103,111,82,109,106,102,108,102,104,102,106,103,108,99,109,98,105,96,107,101,108,105,91,99,105,102,108,105,108,107,106,104,100,104,92,109,99,88,106,104,104,104,109,118,101,106,111,100,101,98,109,108,104,112,99,110,116,116,99,107,113,107,102,101,111,107,98,95,115,109,103,102,99,108,108,85,103,92,109,98,97,109,99,96,110,109,102,97,100,104,114,106,117,96,121,103,109,99,107,92,101,100,109,110,96,108,107,99,96,106,102,119,99,106,112,110,107,105,102,95,111,109,110,99,120,117,136,99,107,91,108,113,117,121,106,115,100,101,91,106,104,122,110,106,110,105,104,101,110,99,105,111,95,109,91,109,111,102,104,97,109,108,100,101,99,124,103,94,111,118,101,110,126,94,96,104,102,102,109,92,106,101,104,113,100,108,91,121,110,97,105,102,119,105,107,94,102,106,111,96,101,121,109,104,115,98,106,92,117,112,130,107,112,118,115,118,123,123,110,126,118,130,129,125,125,112,113,105,106,112,110,92,106,113,91,109,104,106,103,121,101,96,121,103,101,91,98,105,101,95,99,127,67,102,93,109,99,106,108,112,103,120,119,101,107,92,115,112,103,89,107,108,114,99,107,102,94,103,109,102,116,105,101,117,101,109,121,104,95,86,100,102,88,102,104,102,111,102,117,97,105,102,94,115,117,112,101,101,98,104,98,99,129,91,103,109,99,104,89,96,106,97,104,110,118,113,109,106,108,105,106,102,100,92,98,105,99,112,102,107,106,96,109,101,110,121,130,100,121,100,124,97,110,106,104,111,111,109,101,103,112,102,103,106,107,102,113,113,121,91,95,110,108,95,110,92,102,120,73,110,109,109,104,99,103,108,109,117,106,110,107,100,102,108,99,86,103,121,113,110,103,112,92,104,118,99,111,108,103,98,94,93,96,105,112,88,97,101,100,113,97,104,108,105,90,106,85,106,105,109,101,110,110,104,109,97,105,100,106,104,92,97,101,98,110,110,112,101,123,104,107,88,102,127,106,105,102,107,99,125,99,121,102,116,102,106,98,109,94,91,97,117,107,116,112,108,94,108,107,111,102,99,87,109,103,103,104,103,104,108,95,94,107,103,102,107,100,104,107,109,100,108,93,108,106,106,111,111,100,120,111,105,87,98,124,98,108,105,112,91,107,97,109,108,104,97,113,102,105,106,105,100,103,110,115,108,108,109,83,100,102,100,102,74,105,104,112,94,102,101,101,106,102,113,106,109,117,100,105,101,105,100,99,100,104,98,113,109,100,101,96,104,100,102,98,100,109,116,105,103,109,99,104,105,109,116,110,106,103,97,104,94,74,109,106,91,109,95,106,105,112,94,91,112,115,88,102,101,106,100,96,111,108,99,96,90,110,108,114,110,113,103,110,85,105,99,107,112,99,97,92,106,111,100,138,108,103,122,107,92,100,118,103,98,98,97,103,104,111,102,107,103,109,112,105,102,111,103,106,90,105,106,109,115,96,103,104,98,105,95,104,102,92,108,103,111,142,103,100,95,103,112,109,102,117,92,101,111,98,101,95,105,97,104,104,126,105,114,107,104,102,110,101,106,102,103,106,101,102,99,107,102,92,120,99,115,111,103,97,110,100,109,101,105,96,99,109,116,91,104,96,90,116,107,97,102,96,106,106,98,105,105,109,103,91,116,101,119,102,108,106,95,102,97,109,92,124,98,107,97,105,91,106,110,100,127,108,105,105,111,110,122,98,99,108,104,95,107,111,111,98,103,114,113,106,104,113,102,98,98,107,107,94,138,100,97,100,103,101,102,115,110,115,102,108,116,101,101,104,117,91,99,109,108,104,90,116,106,104,107,112,109,120,100,116,106,110,107,113,109,115,104,112,93,95,110,96,102,95,67,96,103,110,112,94,105,124,103,111,98,103,101,110,104,98,110,116,92,108,101,91,108,96,111,104,100,89,94,112,100,104,91,100,103,110,110,109,98,92,97,120,94,70,98,99,97,97,91,108,97,104,91,103,106,102,98,116,107,108,102,98,100,110,108,115,111,102,124,100,110,109,106,105,111,109,111,104,129,113,108,99,103,113,100,99,111,105,103,104,110,97,95,103,117,96,111,104,103,102,108,94,106,105,94,75,105,110,101,104,109,101,103,99,105,107,105,109,111,111,115,109,104,97,101,113,110,104,110,109,105,101,96,104,107,102,109,112,123,98,97,90,92,114,99,115,112,101,109,102,86,105,100,120,101,97,105,107,109,95,106,114,100,106,105,105,103,107,102,120,121,109,87,101,102,102,103,97,107,102,114,113,108,106,101,103,106,115,107,97,123,139,99,118,100,106,105,115,106,111,103,108,104,95,108,113,113,105,99,116,92,109,115,109,101,119,112,90,117,114,105,100,108,100,96,108,100,109,105,91,106,103,121,109,110,108,104,102,92,107,106,103,101,111,100,102,90,107,114,114,114,111,95,104,99,101,121,103,100,105,111,104,114,105,108,94,95,105,121,119,104,105,109,101,98,104,108,97,110,105,97,89,83,115,109,96,114,98,86,110,91,99,111,104,91,110,109,104,104,93,113,96,97,108,108,107,99,112,108,118,102,116,104,106,103,101,107,112,103,110,113,90,96,104,100,103,110,98,108,117,106,109,103,97,110,101,102,110,103,103,104,117,101,111,99,99,92,111,104,107,114,90,112,102,106,101,109,106,111,117,107,110,107,106,100,115,108,111,108,95,102,100,102,105,96,104,95,92,103,103,113,128,87,117,106,109,95,100,94,92,100,105,101,102,101,90,132,102,102,107,106,107,104,116,106,99,106,96,109,98,102,97,97,97,98,105,101,107,95,98,101,101,109,103,101,100,110,90,113,105,95,103,114,102,108,103,112,108,98,94,91,106,112,73,121,108,109,110,102,98,101,97,103,119,102,108,115,111,99,97,105,97,100,117,99,106,107,109,90,98,112,105,91,102,79,98,100,108,107,109,120,107,105,105,96,107,109,106,107,103,99,94,93, +622.73926,100,105,104,102,114,108,105,104,88,105,99,98,113,106,101,105,102,102,85,101,104,100,113,127,79,112,119,107,98,102,96,105,96,107,104,112,80,90,109,109,90,107,94,122,108,104,100,104,100,122,103,97,118,99,119,95,102,93,96,101,104,102,105,100,105,106,101,106,117,101,109,103,109,85,99,110,92,104,84,102,102,98,106,101,110,100,102,109,105,109,113,113,103,104,110,119,95,109,91,102,98,116,106,115,103,104,103,107,91,106,104,100,118,92,121,105,88,99,89,115,117,107,102,105,114,99,109,97,110,114,119,110,111,114,91,118,106,93,107,107,102,113,105,92,103,112,109,133,107,100,101,103,106,110,113,104,97,115,112,106,105,100,117,107,116,116,121,99,100,105,111,108,103,100,100,106,103,88,111,106,109,106,106,90,101,103,96,89,110,113,89,107,113,95,105,109,122,122,98,108,105,97,100,100,95,112,91,96,111,102,111,133,98,101,91,112,101,101,94,105,99,110,112,96,107,108,112,107,117,104,97,93,98,110,105,114,88,95,118,116,113,100,102,103,95,99,114,109,106,109,105,112,102,94,102,101,105,103,100,97,105,104,104,105,92,93,125,103,102,109,99,107,111,101,104,99,107,102,109,96,99,109,99,110,102,111,101,97,108,103,108,88,101,114,99,111,117,99,121,117,98,115,109,108,96,91,108,121,103,111,93,122,123,91,103,108,109,95,98,103,102,102,91,105,95,97,98,85,105,100,102,100,123,100,109,101,89,81,97,102,104,99,75,94,108,112,109,112,109,106,112,104,113,102,100,102,110,114,104,118,105,106,103,67,95,113,97,102,99,113,108,98,102,97,108,115,109,116,101,103,85,102,103,99,98,110,99,107,109,109,112,95,94,103,108,110,97,98,107,105,113,101,97,103,102,100,109,96,107,100,99,108,104,108,119,105,104,110,95,103,107,100,98,108,120,99,101,100,110,109,102,102,103,101,114,102,113,102,99,112,113,102,98,112,105,113,108,101,118,104,120,104,106,137,105,86,91,109,114,110,101,96,115,114,87,123,102,111,114,119,114,101,101,110,108,90,98,118,112,104,113,94,109,114,104,99,107,106,97,107,108,116,95,110,97,94,98,122,110,101,105,121,105,100,99,111,106,114,98,99,99,103,116,115,109,98,106,103,107,108,103,115,99,116,102,107,125,94,107,105,96,95,106,106,105,111,101,106,120,88,103,96,103,101,105,109,101,98,95,104,110,109,92,114,106,105,95,101,104,98,126,110,92,100,105,112,101,98,95,99,92,103,102,107,116,111,100,109,113,104,106,94,111,96,98,103,98,106,98,101,104,103,100,101,103,114,94,109,124,109,106,117,110,98,104,103,105,96,112,99,121,99,104,97,103,93,85,96,123,100,116,97,111,105,114,105,90,107,99,107,85,110,102,110,104,111,129,108,109,111,102,114,108,96,102,105,102,91,102,112,103,135,109,113,106,106,101,121,108,103,115,105,119,104,91,110,96,103,106,109,102,112,100,110,103,105,107,104,112,112,107,108,104,107,125,109,98,109,109,105,109,104,101,122,104,108,102,104,115,103,102,98,98,106,102,85,106,109,105,113,101,109,106,98,87,95,101,111,113,96,105,95,99,99,97,96,91,103,109,112,108,112,97,96,95,100,110,113,112,98,104,109,124,114,98,97,104,108,98,110,103,102,101,105,103,104,106,94,103,104,99,102,92,106,104,97,95,107,95,105,104,106,104,106,117,106,95,96,110,108,119,105,115,101,110,95,100,109,107,106,114,105,116,109,110,104,103,101,100,104,104,113,103,120,106,107,104,113,104,105,107,96,103,109,106,113,107,111,105,113,97,102,115,106,106,103,111,111,75,101,105,96,103,100,96,101,106,111,117,104,109,107,112,109,101,107,107,100,102,98,95,101,106,112,104,116,104,96,99,106,108,98,100,100,105,93,96,104,110,108,100,109,113,99,100,87,110,100,110,112,104,105,104,113,96,104,98,125,111,106,117,114,104,90,116,95,104,118,117,101,105,103,107,116,107,104,102,100,98,104,99,101,106,109,104,110,105,99,99,105,103,110,101,116,100,104,120,112,110,105,101,112,108,101,86,114,91,102,103,102,106,102,99,114,98,96,112,113,108,103,108,104,112,108,111,104,105,100,100,105,112,108,97,102,122,100,94,127,96,120,120,105,96,105,100,106,121,105,102,95,113,114,102,99,117,101,121,98,97,94,107,93,106,103,100,103,112,102,94,109,102,98,106,105,108,109,108,107,95,108,104,100,104,107,99,110,102,103,106,109,104,107,105,102,97,100,100,110,95,101,103,100,113,104,106,99,105,108,111,129,99,108,82,107,112,123,121,122,112,115,112,103,123,105,111,105,100,104,108,90,97,114,105,110,96,99,98,93,101,102,104,107,106,100,106,115,105,112,101,100,119,109,96,128,110,104,103,113,100,104,109,91,102,99,111,104,106,102,114,95,114,97,110,102,113,120,90,103,96,110,109,108,107,105,103,104,95,101,92,105,100,113,102,84,116,116,107,109,105,101,110,84,112,106,109,109,109,118,106,87,98,105,131,126,89,105,113,113,120,93,106,109,105,105,107,109,111,106,113,110,101,98,108,95,104,108,107,98,96,100,101,100,110,92,109,102,102,106,102,100,108,106,106,101,107,102,103,105,102,111,102,113,113,105,103,109,96,105,110,99,104,109,92,99,101,108,110,96,104,109,110,105,102,101,116,112,110,110,121,98,111,109,109,102,103,105,97,108,103,105,102,110,103,126,113,100,113,100,105,105,105,110,105,97,108,108,112,99,92,132,104,91,117,109,108,108,106,109,112,108,106,101,113,103,101,112,117,87,94,105,104,100,110,108,104,105,99,99,96,97,107,110,110,114,103,111,116,106,106,104,103,104,101,105,116,101,112,96,102,105,110,99,112,109,105,99,113,100,107,113,108,102,112,108,113,104,98,100,102,112,107,98,113,112,112,92,101,90,101,100,110,104,102,122,115,108,110,104,120,104,106,112,113,99,103,108,93,95,99,98,110,112,115,106,87,98,101,116,103,120,112,114,105,101,107,95,113,98,96,100,101,104,90,109,100,95,94,106,106,104,107,96,100,112,108,99,113,119,113,108,102,103,109,101,101,104,102,105,103,103,88,112,96,104,99,111,100,100,103,117,121,115,119,98,108,108,107,113,111,111,102,95,103,106,109,100,106,106,104,109,104,102,102,110,112,100,104,131,109,99,103,99,104,105,96,102,99,95,114,101,103,99,108,139,105,113,98,110,110,104,95,96,106,110,108,112,103,89,105,100,91,111,104,106,100,112,110,108,108,101,128,106,99,105,103,116,103,101,111,99,107,106,103,103,92,106,105,105,99,97,90,91,113,113,125,105,97,102,123,69,112,109,100,117,107,78,115,82,113,104,104,106,98,101,97,110,116,116,123,101,105,105,105,111,108,103,99,101,106,103,113,111,105,116,107,110,127,108,110,98,96,113,105,106,98,99,111,102,113,116,112,100,102,107,117,122,112,93,116,104,109,112,111,103,114,112,100,95,113,91,104,117,101,112,101,105,91,115,113,106,83,102,107,99,114,97,99,110,107,103,105,103,116,101,125,99,118,105,94,109,98,114,99,105,98,102,105,104,109,99,104,94,95,105,103,97,102,105,108,104,115,96,111,124,106,100,102,106,116,104,113,94,103,99,113,113,109,108,98,106,113,116,112,99,110,104,107,98,121,102,94,94,106,98,112,108,113,104,105,108,123,104,98,112,113,94,119,91,101,95,114,101,119,99,113,106,98,96,107,103,103,95,101,101,96,116,107,100,103,101,102,103,120,106,103,104,113,96,101,106,99,110,100,100,108,97,103,89,93,108,102,107,86,110,89,106,106,111,101,108,110,91,108,97,101,117,109,114,97,91,89,109,109,106,96,117,87,112,105,99,110,118,109,106,109,98,108,117,73,103,106,108,94,103,96,96,100,119,107,106,110,102,110,113,112,96,112,103,101,99,109,102,105,86,109,113,93,95,106,91,107,105,104,114,90,102,99,101,101,109,105,104,104,109,103,87,121,113,108,89,104,110,105,99,96,119,108,108,101,110,106,95,101,102,98,97,103,99,98,114,104,99,99,101,110,113,106,105,109,103,113,100,104,106,104,106,109,110,112,116,99,108,107,108,116,106,99,114,102,114,110,102,114,98,104,98,100,106,96,99,103,103,112,112,109,103,89,102,101,94,112,112,116,104,135,117,102,112,108,103,106,140,116,101,98,96,96,100,109,113,101,116,109,112,101,105,104,116,109,95,104,102,109,91,99,93,117,102,120,96,89,112,108,107,104,102,107,99,99,117,109,111,109,99,105,108,98,125,103,101,104,96,104,104,105,112,87,113,104,108,123,108,102,112,110,80,101,97,97,103,102,102,113,104,107,94,103,94,109,114,109,106,108,101,101,105,103,109,123,104,105,103,95,125,106,88,101,110,101,95,100,96,110,102,110,97,106,96,103,100,102,95,103,109,108,97,98,93,102,110,104,112,113,98,115,98,99,109,100,97,113,106,108,113,102,100,100,105,98,102,112,119,104,112,103,118,99,116,98,114,109,111,116,110,102,99,115,117,105,104,107,109,102,117,108,117,107,106,108,138,101,94,111,84,121,120,108,110,114,98,117,103,104,113,99,89,102,98,83,106,101,105,111,101,105,108,108,100,110,107,99,115,93,103,104,104,100,112,102,100,115,106,109,103,109,107,99,109,113,100,87,102,105,108,100,101,117,110,100,102,103,100,99,102,106,105,106,100,94,98,108,99,93,107,104,99,98,110,113,109,122,103,101,134,98,99,97,91,113,99,88,99,101,104,100,106,109,96,112,110, +622.88037,100,113,101,87,104,78,129,95,94,109,96,98,98,105,88,109,110,95,97,95,97,101,97,105,108,110,90,101,114,95,110,106,99,105,99,101,103,105,103,96,84,115,105,88,85,110,101,111,112,107,102,101,101,99,124,105,98,104,104,99,109,93,85,95,96,106,90,88,111,105,103,105,103,113,108,108,91,106,110,101,111,109,107,112,103,72,121,106,95,97,94,98,105,109,113,107,93,100,102,113,99,108,109,100,100,106,108,106,78,103,97,94,102,100,106,102,114,91,109,103,100,110,113,103,109,89,100,86,108,102,128,90,106,100,105,107,113,110,98,110,95,110,108,110,101,102,113,109,101,100,104,101,121,96,102,98,99,96,110,113,109,93,107,104,120,130,120,94,106,110,92,97,95,105,114,117,117,99,122,101,108,112,94,99,109,97,100,101,96,96,113,100,108,112,98,99,99,109,104,102,100,117,94,110,91,111,101,105,111,102,101,103,107,112,109,105,112,133,112,100,103,112,100,70,108,113,109,96,99,109,98,113,120,113,103,99,96,102,112,115,116,97,120,112,101,99,98,124,105,99,106,109,89,108,111,93,101,110,106,104,99,112,92,104,92,109,106,109,100,94,104,66,62,114,118,104,100,114,95,105,87,103,102,87,103,105,98,101,99,100,111,114,99,107,120,106,103,112,111,105,104,109,110,115,106,96,102,121,90,108,96,110,105,110,107,110,114,107,96,109,106,102,108,103,105,104,107,94,111,108,112,109,93,121,100,118,103,104,99,108,112,99,91,83,108,101,99,107,108,109,98,120,83,119,66,103,106,105,105,116,109,109,98,86,105,95,101,113,113,106,104,104,102,119,103,96,97,108,111,121,99,105,113,114,103,94,101,111,109,110,108,104,105,109,103,95,108,106,101,95,102,87,106,104,99,116,109,123,113,109,90,96,114,91,97,103,105,95,106,110,100,94,111,87,104,113,100,88,109,112,91,92,104,96,104,102,92,108,105,112,107,95,100,102,95,103,96,105,117,102,104,96,104,119,95,95,98,106,114,101,100,104,109,97,100,108,103,103,104,105,104,116,109,121,96,98,107,98,101,101,95,113,101,101,109,103,111,110,102,109,118,117,106,110,94,112,98,110,103,100,121,102,99,95,107,102,109,108,107,109,112,109,108,104,114,96,100,113,103,89,78,104,96,103,102,118,94,109,96,97,95,108,98,109,105,97,108,99,104,110,118,104,132,100,101,91,109,100,104,103,104,108,83,107,108,102,100,120,106,106,110,105,98,114,102,103,109,95,105,100,99,92,96,130,101,92,98,98,101,93,107,102,107,99,105,108,107,100,110,103,96,100,97,104,111,100,96,107,78,104,107,101,91,114,96,103,106,112,108,112,93,94,105,99,106,91,95,102,117,114,100,106,110,104,122,93,100,104,106,105,112,99,99,101,74,107,102,116,107,107,96,123,108,96,104,97,103,89,121,113,106,105,113,110,95,105,105,103,108,103,112,97,102,108,104,80,110,96,111,95,104,116,105,106,99,107,123,97,121,96,112,116,115,90,96,105,101,104,96,132,109,111,107,102,111,100,113,104,114,96,101,92,109,115,114,110,99,108,98,125,101,95,117,100,85,101,99,103,108,102,100,106,102,98,105,92,100,112,106,114,104,106,104,103,101,100,114,100,106,101,113,109,109,111,105,114,111,99,112,109,106,104,100,104,96,106,101,100,107,97,126,113,101,107,106,122,94,122,109,99,103,131,114,102,105,105,102,104,114,104,112,101,106,114,104,112,110,103,113,122,109,109,103,109,99,95,99,108,109,112,108,109,76,110,106,113,110,108,92,105,110,113,101,87,112,97,100,89,108,98,105,111,120,102,91,102,105,112,107,112,121,100,115,113,97,103,112,117,108,99,113,112,106,106,98,99,109,102,109,106,125,104,109,103,112,113,97,108,108,100,106,107,98,113,113,99,104,92,125,103,112,108,96,109,96,110,107,99,107,119,98,79,110,113,102,106,98,109,113,109,103,110,114,108,101,98,122,105,107,109,102,109,106,118,102,100,109,111,107,116,98,107,103,94,107,76,108,95,82,94,107,104,108,106,102,106,109,96,106,92,107,108,103,104,96,105,106,102,106,105,107,106,109,117,103,108,105,104,101,107,114,106,112,84,103,102,114,100,111,108,108,116,112,101,101,102,98,98,94,97,87,107,105,95,96,99,121,111,99,114,106,115,106,117,103,95,109,100,99,94,112,108,92,105,107,102,104,102,92,112,85,98,107,98,111,107,136,107,114,104,93,102,103,97,101,108,107,103,113,102,106,101,113,104,109,107,114,111,103,111,92,110,99,107,121,99,116,124,114,109,104,112,123,116,108,103,101,124,127,116,111,108,100,130,102,117,108,112,105,103,98,104,103,101,98,100,109,103,99,106,95,106,88,101,119,122,109,118,96,100,96,110,89,119,111,108,101,106,107,95,106,100,103,96,113,98,104,108,97,104,115,102,104,98,110,98,113,90,89,106,107,102,104,109,99,90,120,106,104,108,102,105,106,92,120,126,106,117,109,93,108,116,114,89,122,120,91,104,108,103,103,107,91,114,99,102,98,114,109,85,103,106,105,110,110,103,101,98,104,108,105,98,134,107,96,112,106,107,112,112,113,102,106,107,96,99,103,113,116,103,103,104,86,109,87,101,105,93,119,113,107,109,120,105,98,94,100,97,104,99,102,104,94,103,108,111,100,112,111,107,109,109,106,95,109,100,101,99,133,103,105,97,95,113,103,94,107,121,106,108,106,116,105,107,100,102,107,102,124,111,106,102,103,99,96,110,119,122,104,104,101,104,107,106,95,106,114,101,95,119,111,113,110,92,116,100,115,104,100,107,118,119,100,86,112,101,114,105,107,119,102,99,117,103,110,104,98,104,97,113,101,100,104,99,95,112,108,108,101,113,122,107,103,107,107,102,108,95,90,106,91,101,99,111,104,106,102,106,106,108,97,96,91,101,90,101,115,114,105,101,94,99,80,109,115,100,109,96,97,91,110,106,113,105,116,123,96,93,109,96,109,108,102,100,93,107,102,97,108,100,103,105,105,103,106,93,111,101,111,91,121,100,116,103,103,109,107,108,100,100,101,104,103,100,117,116,103,84,108,108,103,115,99,98,105,101,103,106,113,104,108,107,95,92,105,108,91,101,100,110,105,95,100,102,109,105,105,112,92,91,103,101,99,97,104,102,122,116,101,110,102,92,100,115,99,96,116,110,106,92,105,110,106,110,116,100,112,102,109,95,108,93,107,108,100,110,112,108,111,94,97,108,103,105,111,108,104,89,107,66,104,108,112,101,100,103,103,106,112,123,94,102,99,108,115,106,107,91,113,103,111,108,94,111,102,113,85,107,100,101,99,88,119,106,108,104,107,111,106,98,103,110,116,94,108,108,109,116,93,95,113,109,97,113,106,102,119,107,103,103,110,102,111,99,95,102,120,101,117,94,106,111,108,109,99,109,113,104,115,98,106,116,99,110,116,112,99,116,120,111,101,102,111,105,104,114,112,103,111,105,120,112,106,109,105,105,116,112,104,103,88,102,102,93,77,107,107,102,108,111,91,99,112,112,115,105,111,102,100,114,99,98,99,104,103,98,110,100,104,116,103,92,107,98,136,95,111,108,100,99,102,108,112,112,93,116,105,90,109,104,103,110,109,112,128,117,97,99,117,105,114,103,103,108,105,117,118,109,104,91,99,100,111,102,94,112,121,102,98,92,120,105,108,98,109,109,111,101,95,108,96,104,109,113,111,100,103,113,110,87,102,109,77,100,108,116,113,100,102,107,94,100,105,89,95,110,99,101,99,112,97,109,109,104,104,110,119,112,117,106,99,101,121,89,102,105,106,94,100,104,105,124,108,104,106,96,122,113,96,105,102,101,110,112,103,103,113,106,106,97,106,98,102,114,108,104,110,104,86,103,106,93,98,100,104,90,102,109,95,104,111,102,102,110,104,105,100,104,100,103,106,104,87,100,112,105,109,102,108,101,96,103,99,107,105,102,98,96,107,95,107,91,96,111,102,91,105,115,110,106,112,95,106,112,93,111,98,109,108,124,102,109,105,97,100,106,108,102,103,109,105,104,99,102,109,119,102,110,105,100,107,99,102,105,114,101,103,103,101,100,100,103,103,106,91,107,95,104,83,113,95,111,98,118,110,109,101,97,101,108,107,113,114,102,92,108,99,110,98,100,116,111,97,99,102,94,107,91,109,96,82,105,100,102,101,102,107,113,104,117,96,100,106,106,100,109,103,102,102,112,109,91,110,116,107,107,103,111,105,95,111,105,105,104,105,95,105,95,104,112,101,101,112,74,99,103,93,115,113,91,110,99,99,112,104,89,110,106,108,118,107,104,121,104,100,104,101,105,109,104,111,111,114,106,104,112,92,106,106,98,106,103,113,100,99,91,115,95,116,94,102,106,106,94,101,103,100,113,118,107,94,103,103,104,106,98,110,111,109,108,102,82,105,87,103,112,113,108,116,99,110,88,105,112,123,102,134,97,113,107,106,108,98,101,105,110,115,75,91,106,98,100,105,98,107,97,104,117,102,110,103,110,99,103,102,111,108,99,115,110,110,107,110,100,106,106,100,109,104,75,97,95,107,109,106,116,106,102,99,121,102,105,88,96,104,98,101,104,100,102,109,109,106,108,108,114,110,113,100,88,93,121,111,90,109,92,102,94,102,107,110,97,121,112,107,99,90,113,113,102,95,101,101,101,112,101,114,110,118,117,101,116,98,100,99,96,103,96,105,94,100,108,105,89,109,108,113,108,99,133,109,115,113,102,99,108,93,114,111,112,101,104,111,99,97,109,113,103,97,95,119,97,102,105,82,100,107,102,96,103, +623.02148,110,108,94,91,118,91,121,95,99,93,123,102,97,98,107,109,120,125,98,102,102,94,99,113,97,104,96,107,110,85,102,108,100,101,97,100,106,95,90,99,105,107,101,98,101,119,113,91,110,100,98,102,95,106,100,107,103,105,113,101,114,90,86,91,92,100,104,100,97,104,113,100,120,99,107,116,107,105,99,74,101,95,101,87,108,96,94,121,113,104,102,103,96,100,94,104,106,86,100,108,87,106,96,97,88,91,108,105,109,101,101,108,109,102,102,116,94,101,134,106,100,96,115,106,90,100,117,99,102,98,109,111,97,100,112,106,103,103,75,98,93,107,91,104,101,98,97,107,92,106,108,100,104,102,104,102,111,103,108,101,96,98,105,107,100,102,108,99,99,120,111,109,99,108,103,105,108,93,106,113,107,129,90,117,106,103,99,91,112,97,108,107,117,103,101,101,108,103,106,117,104,93,112,94,103,106,95,109,103,114,102,106,91,107,105,100,110,92,105,97,118,99,108,105,114,108,104,112,95,110,94,108,106,109,118,100,106,98,107,107,90,98,119,99,102,104,104,105,111,100,102,99,104,102,109,110,97,108,99,106,97,112,105,87,97,113,100,96,91,79,103,96,96,96,100,96,114,103,116,102,107,92,96,110,107,108,97,105,103,106,106,116,111,95,123,116,120,111,94,104,98,109,124,111,99,100,94,105,106,106,96,106,100,92,84,117,110,106,98,80,99,112,113,104,72,105,95,73,114,103,99,103,97,105,110,108,114,107,101,104,118,115,87,98,105,102,105,108,110,110,114,109,97,107,100,92,106,115,99,83,120,94,95,102,106,108,104,111,101,97,101,97,102,96,107,98,98,101,101,107,107,98,102,109,101,70,98,107,98,88,110,92,120,114,98,106,107,105,100,112,104,110,104,99,89,95,99,108,117,97,102,92,110,92,109,99,115,112,111,102,117,108,102,105,103,111,105,98,109,95,100,106,105,100,104,114,101,109,90,95,112,103,96,98,95,93,93,97,98,114,97,105,93,91,106,88,109,104,106,103,95,104,109,105,107,121,97,100,104,104,112,107,96,99,100,99,117,110,109,78,103,95,106,107,95,101,112,107,101,105,107,126,110,106,97,113,102,106,109,103,117,101,110,109,87,102,105,104,111,102,110,91,99,114,105,113,107,112,120,101,110,96,108,110,101,115,108,102,113,119,107,104,108,97,102,112,113,116,96,106,100,119,94,96,108,113,100,96,105,102,103,103,92,114,105,105,104,101,93,107,85,105,104,104,97,107,109,120,114,93,85,106,114,103,100,98,106,94,88,98,104,92,110,114,102,105,110,116,112,100,105,98,101,94,93,102,88,92,110,100,110,86,107,106,90,105,85,105,113,97,107,114,96,89,106,95,110,101,99,100,109,98,111,110,109,100,105,101,110,98,109,99,111,103,87,105,105,101,109,115,107,108,94,99,119,100,75,112,105,107,100,103,86,99,115,99,108,102,109,105,109,103,98,107,112,103,102,92,102,110,81,105,97,107,100,91,102,101,102,105,104,108,114,96,93,108,103,95,96,112,100,103,105,98,107,101,98,118,110,97,100,90,99,103,109,109,104,107,104,108,105,106,110,110,106,86,100,102,105,64,96,103,108,113,102,108,109,103,121,105,107,95,96,92,91,112,103,97,108,104,101,103,106,106,75,105,104,98,101,109,103,95,107,104,98,103,106,96,112,112,98,100,105,96,92,114,90,90,94,103,96,102,110,103,102,106,103,95,99,98,126,95,115,106,97,109,99,109,108,100,101,108,85,89,112,103,95,102,99,111,95,99,93,99,113,108,103,102,117,109,105,104,87,99,101,102,104,106,105,76,108,111,113,119,121,109,118,100,108,109,112,100,109,100,112,109,103,103,112,112,99,108,104,118,107,98,114,120,98,90,102,96,75,105,99,96,114,99,106,99,103,90,108,104,109,93,112,101,110,95,109,126,102,97,96,110,109,109,98,109,103,117,100,113,97,114,99,109,101,100,102,108,110,115,114,98,111,106,96,108,103,119,98,102,101,103,88,107,102,109,100,107,107,117,104,95,99,121,117,109,113,104,106,89,95,109,100,99,103,101,98,106,111,102,110,101,115,99,109,97,103,104,109,117,79,100,90,110,95,111,107,118,131,107,107,103,98,106,111,112,108,113,112,106,89,111,99,101,90,110,104,103,95,109,102,107,113,106,104,112,101,103,108,102,87,109,109,97,108,110,103,113,108,110,109,100,115,122,100,110,103,106,103,111,103,107,105,93,89,116,100,99,96,107,82,99,107,104,116,107,102,99,106,96,98,116,109,110,106,99,94,108,125,117,108,90,100,98,114,115,103,120,106,105,107,83,123,124,122,121,126,108,113,110,97,119,94,109,90,88,109,98,108,107,106,98,101,110,106,109,99,102,107,99,108,116,111,113,84,98,98,91,92,110,81,103,99,105,112,113,114,110,100,97,100,107,105,98,100,112,111,111,115,92,102,97,92,95,103,104,105,102,110,106,98,100,100,108,97,103,115,98,106,108,103,101,103,95,108,108,100,121,113,98,102,96,103,98,112,103,109,99,96,115,113,101,95,117,135,101,105,92,111,91,96,108,119,103,113,121,110,97,99,94,102,102,96,104,108,109,96,100,110,106,98,107,103,99,109,98,106,97,117,110,98,108,98,114,105,105,117,105,104,123,80,110,107,106,109,92,99,101,100,116,95,114,109,105,101,98,122,110,113,117,105,108,108,117,121,104,109,100,99,91,98,104,106,106,109,107,97,106,105,108,116,96,99,100,109,115,120,106,116,106,96,109,108,105,105,125,114,85,129,99,129,100,109,110,99,105,106,106,108,99,106,108,108,99,108,113,121,108,94,100,109,101,94,95,94,104,107,115,96,111,111,103,91,101,111,110,99,103,121,98,109,115,104,105,98,113,113,96,101,111,98,103,118,103,102,106,106,106,92,104,93,113,102,100,100,101,101,107,117,103,110,101,107,96,113,98,100,97,100,108,109,92,110,113,93,99,107,105,79,104,117,107,100,100,109,113,116,95,88,112,94,117,97,110,92,101,98,101,102,98,115,99,117,106,104,100,113,97,105,111,111,103,109,105,102,102,120,99,109,105,97,108,112,103,105,99,92,103,111,100,100,106,105,105,97,112,117,101,107,103,102,116,95,102,107,108,109,121,103,102,103,105,110,107,126,102,106,98,86,95,101,100,107,100,102,90,94,110,113,109,107,121,102,118,104,110,98,100,101,100,105,110,120,92,106,104,101,103,105,108,103,112,106,98,115,98,104,108,94,102,101,105,103,97,113,103,80,108,104,104,112,105,101,110,109,98,123,86,102,105,95,101,98,115,104,91,107,111,93,108,110,110,101,107,106,93,88,104,109,109,110,102,116,106,116,105,107,111,76,112,110,99,109,110,108,95,106,106,97,98,95,117,104,105,107,99,104,111,113,96,98,102,95,103,109,106,102,106,118,125,103,120,102,102,108,98,110,110,94,117,112,116,113,108,104,116,102,113,111,96,115,100,116,101,101,102,109,108,117,95,95,101,98,95,104,100,103,101,104,113,103,113,92,102,105,100,108,109,101,101,103,95,106,104,110,102,106,103,99,111,104,106,111,96,96,115,141,89,111,109,97,94,87,102,113,90,108,105,90,94,70,113,95,101,112,113,103,102,114,113,114,94,104,119,101,94,102,103,103,110,104,107,117,109,114,98,105,103,95,104,100,92,110,108,103,98,106,106,99,100,106,105,110,95,105,103,116,105,102,134,103,94,101,121,105,102,116,102,105,79,104,106,109,104,100,112,86,116,95,103,108,106,115,112,110,98,114,95,107,102,105,108,100,98,109,100,100,104,92,98,108,108,106,107,97,109,105,96,103,110,109,101,101,106,95,93,97,110,103,111,109,103,101,86,80,106,101,101,110,102,100,114,98,117,100,102,112,106,94,114,109,103,97,109,99,107,111,101,96,104,110,103,103,88,111,103,104,98,102,98,113,117,107,90,107,108,103,99,104,103,100,104,110,92,101,105,98,102,104,102,102,100,102,104,101,101,104,102,97,110,107,112,104,101,99,97,108,98,105,104,98,107,107,100,86,108,106,90,99,112,108,103,102,88,85,110,94,109,104,106,106,91,103,107,104,107,108,99,99,78,106,97,104,109,112,102,113,108,98,107,102,102,96,112,101,101,105,96,100,98,112,98,105,81,94,111,105,96,118,108,116,111,95,105,97,101,101,98,113,104,93,109,100,98,104,112,112,104,93,102,109,98,113,112,113,105,106,105,112,91,106,108,103,109,103,105,111,98,104,108,110,108,99,109,105,118,102,89,108,116,90,111,99,103,110,109,99,98,107,96,104,94,103,107,103,99,97,112,95,109,101,99,110,116,102,97,111,103,104,97,111,87,117,109,102,107,103,113,103,109,99,103,102,95,98,83,106,101,107,104,108,96,91,95,102,98,106,103,103,114,113,102,99,87,101,104,102,86,103,109,105,102,105,102,97,105,90,96,102,107,102,95,103,93,91,100,100,107,100,106,91,106,107,120,104,112,93,99,97,95,113,112,110,83,104,110,96,97,95,101,105,118,113,107,108,103,67,95,106,100,97,102,109,92,103,85,106,110,95,105,110,110,110,110,101,92,102,109,91,112,115,91,72,105,97,103,106,107,99,101,94,89,108,102,115,106,95,96,95,114,104,93,92,101,102,106,110,116,100,100,105,98,89,100,110,102,92,98,102,104,90,77,76,94,93,102,91,104,99,104,107,95,92,103,93,118,101,87,91,96,68,94,95,107,98,104,106,110,100,100,109,93,76,106,109,101,92,103,108,94,106,96,101,114,110,94,109,103,94,110,94,73,128,98,98,101, +623.16254,85,99,105,96,95,98,83,117,101,115,102,106,103,92,102,116,99,104,93,107,108,100,107,104,98,94,102,95,90,108,98,102,103,104,107,93,115,92,108,98,98,108,100,99,92,113,109,119,103,116,95,84,105,84,105,100,99,94,107,88,93,101,97,84,107,99,102,105,104,112,93,105,91,106,110,111,96,89,107,101,100,112,120,106,112,113,97,105,125,93,110,107,104,108,97,108,105,95,110,109,96,97,100,102,97,99,91,105,95,102,104,94,71,99,102,102,99,100,100,116,97,105,97,120,100,112,106,99,103,102,98,114,105,99,105,101,95,99,103,110,107,109,102,107,100,98,103,97,97,101,97,108,104,101,106,102,96,102,106,109,105,101,105,98,115,103,109,91,81,114,106,108,100,97,97,101,121,115,110,104,110,98,94,96,105,97,98,104,105,110,100,102,98,87,105,96,104,95,102,130,111,95,106,107,104,103,91,100,109,98,101,95,73,110,99,97,111,109,114,82,124,110,109,91,95,113,93,97,96,107,98,100,107,108,99,100,99,94,114,104,97,108,102,98,108,103,114,106,104,96,102,115,97,95,105,104,99,130,105,109,93,98,90,99,90,107,106,104,102,107,110,99,94,91,106,101,99,95,108,108,101,104,114,115,97,104,98,103,93,99,100,98,112,100,102,111,111,114,97,108,95,105,107,108,98,119,94,108,98,103,89,113,105,106,108,103,90,107,113,92,89,94,118,108,105,113,101,102,100,138,110,100,104,104,107,102,108,114,93,101,93,100,76,92,95,109,108,107,117,105,110,114,97,96,110,108,102,99,103,102,97,96,95,102,100,115,96,108,101,109,102,102,110,91,120,105,104,94,109,105,101,125,100,113,105,94,101,105,104,102,103,103,103,111,109,95,98,99,93,111,98,103,102,94,111,79,103,103,108,104,106,91,115,95,95,115,112,92,110,90,90,109,104,104,102,91,106,91,101,110,100,91,114,109,105,98,102,95,105,102,113,104,115,110,105,100,106,108,105,98,122,110,102,103,107,91,107,103,114,107,94,114,104,108,106,102,112,112,99,97,111,106,103,100,107,113,93,106,111,116,107,116,113,111,104,69,108,111,111,99,101,103,98,98,91,90,78,106,100,110,108,99,103,107,108,106,99,103,104,105,111,108,98,79,106,94,99,93,108,71,102,97,117,96,99,105,110,109,104,92,112,99,98,103,113,101,106,104,103,103,110,114,95,105,96,100,119,97,106,95,106,105,100,100,103,99,95,110,110,89,107,108,98,106,103,104,112,103,100,102,92,101,97,107,116,113,102,106,105,101,96,106,97,84,105,98,103,105,109,100,109,101,99,93,100,113,101,99,102,97,95,104,113,110,106,104,99,106,118,103,107,106,104,104,90,76,111,93,103,102,106,110,105,95,102,117,106,94,101,116,90,109,113,87,107,100,91,98,93,107,114,109,93,86,106,108,97,89,96,108,106,99,113,99,97,103,105,109,98,112,114,103,98,114,101,102,98,89,131,103,110,91,105,105,99,108,109,111,105,102,103,103,99,102,98,104,107,94,102,106,107,108,97,114,112,106,101,105,102,86,104,101,99,92,91,125,96,109,102,109,91,103,96,95,92,100,107,103,98,98,109,93,102,95,112,97,103,99,101,111,90,97,99,92,103,106,97,94,110,112,100,111,100,99,100,121,100,116,94,104,105,106,98,103,129,110,104,97,107,100,98,100,91,100,102,106,102,98,117,97,100,107,106,95,100,88,97,110,113,97,99,104,111,110,102,102,107,89,105,114,100,105,104,96,112,101,104,99,107,102,106,95,93,105,103,92,94,109,110,112,91,97,100,105,110,104,99,104,110,102,92,96,106,101,105,107,101,105,105,106,100,101,109,97,112,97,95,105,105,108,103,95,118,106,93,107,96,110,73,102,101,105,120,104,106,120,100,94,122,102,109,95,102,96,100,93,101,102,112,104,110,109,109,104,103,110,117,92,96,112,75,112,95,113,99,111,97,105,107,93,100,98,98,106,104,98,87,105,99,96,101,113,94,102,111,102,105,109,96,99,106,96,112,114,96,98,98,96,95,105,103,107,114,101,101,99,97,102,105,98,108,103,112,95,103,112,97,99,97,104,112,94,97,100,109,109,124,99,87,108,95,85,106,110,88,97,98,103,99,123,106,110,103,93,108,107,95,99,94,101,96,92,104,101,103,99,109,97,99,110,97,91,102,105,97,96,100,98,115,102,102,106,101,100,105,98,106,103,105,114,107,118,89,105,101,109,98,104,99,95,77,99,108,107,89,86,100,91,113,105,106,111,85,97,104,91,93,87,96,97,101,106,92,111,109,108,109,107,94,108,94,115,105,106,114,109,116,122,105,127,100,103,102,98,103,108,99,102,113,111,95,105,103,100,102,105,108,96,103,95,96,106,94,96,104,86,95,101,89,103,102,90,104,102,105,107,107,100,105,104,102,109,112,98,93,101,110,101,112,113,101,94,129,121,102,99,82,113,102,98,88,121,106,104,108,102,110,107,99,99,103,104,95,105,110,101,103,104,101,99,98,102,108,103,104,107,99,99,111,108,103,102,95,100,97,99,113,115,97,98,111,107,105,106,98,105,119,105,102,103,107,82,111,113,124,99,102,100,103,98,101,106,106,101,87,104,108,100,103,82,100,117,98,107,102,115,109,99,87,108,93,100,100,100,106,102,114,88,102,96,103,107,106,121,111,109,98,107,110,104,77,89,109,118,108,102,97,116,104,97,104,101,99,97,105,101,113,112,109,103,100,103,101,100,82,110,115,98,99,101,94,99,104,95,99,100,103,107,94,107,108,110,109,99,103,103,100,108,92,91,116,97,106,106,104,102,96,111,116,112,103,128,109,109,95,103,99,100,109,113,105,101,102,108,91,109,117,106,103,106,100,106,99,104,108,114,106,98,101,105,127,97,112,108,108,90,98,104,113,103,103,100,100,102,107,94,110,105,99,99,103,95,100,112,97,109,74,99,105,108,98,109,100,116,109,107,104,99,107,104,103,95,100,96,99,101,106,79,101,109,100,106,88,117,103,97,114,104,110,98,99,108,96,113,98,99,105,97,105,100,90,102,107,120,108,101,105,95,109,95,107,106,108,91,116,92,97,112,103,110,93,102,107,94,104,105,104,109,104,113,95,108,112,90,107,98,106,105,106,102,100,92,110,92,100,108,92,90,105,114,104,100,96,95,102,90,116,110,130,98,102,105,99,101,108,94,96,100,98,90,97,114,99,106,95,101,90,94,119,108,103,95,97,99,102,110,110,96,96,106,111,103,101,104,112,98,103,103,104,93,103,106,96,96,113,108,100,102,98,124,102,121,96,107,102,98,109,95,98,104,117,98,98,113,106,101,106,104,113,107,99,77,98,109,103,113,105,106,95,113,105,106,93,99,107,103,113,91,111,100,97,108,95,101,99,99,104,97,108,103,106,101,100,97,97,98,100,112,109,101,106,105,103,112,108,96,110,105,109,102,110,96,108,103,103,109,95,100,100,94,101,106,102,96,102,98,104,100,102,112,84,93,105,96,105,93,104,88,110,101,96,105,106,99,95,113,98,110,111,105,95,108,98,95,104,96,105,91,83,118,111,109,108,102,96,95,96,94,105,118,96,102,93,109,101,91,105,115,102,103,103,106,107,96,100,106,104,109,108,94,115,87,104,91,95,106,107,96,98,96,103,101,97,99,115,101,104,109,98,84,105,90,101,98,106,102,113,106,109,109,92,103,96,83,92,109,98,96,105,106,117,110,97,105,108,99,100,106,95,103,121,88,102,113,103,102,100,110,94,101,101,109,97,118,95,106,116,104,111,106,99,109,108,91,98,102,116,91,116,103,100,95,98,88,110,96,98,93,98,102,105,115,102,113,101,102,97,116,112,100,105,88,113,91,101,119,86,111,99,97,118,103,95,103,102,113,102,99,106,100,110,104,109,109,94,120,102,98,96,103,104,103,99,115,102,100,102,102,102,105,117,90,103,97,99,105,105,110,88,99,102,76,95,104,112,103,103,106,109,112,82,111,113,101,91,100,100,116,107,91,123,99,94,114,102,119,110,100,98,104,99,105,89,112,101,125,99,111,96,96,111,87,93,103,104,94,102,117,112,99,104,104,90,96,106,97,111,103,107,102,113,99,109,98,95,94,99,103,99,101,108,104,102,112,98,102,89,103,99,110,104,105,107,88,105,94,108,115,87,99,106,86,99,103,87,101,108,115,101,102,128,108,109,103,95,98,109,101,78,104,110,101,110,98,103,97,92,91,113,98,105,92,90,106,101,104,100,100,105,104,112,104,104,99,96,103,117,99,98,95,99,119,102,92,100,100,111,105,111,103,84,96,107,110,105,114,107,103,108,104,100,92,105,125,95,106,108,108,104,106,112,101,95,91,99,104,87,96,106,105,102,108,98,103,97,91,101,91,95,95,90,121,100,105,101,73,90,104,96,113,94,108,73,109,98,103,100,103,105,99,102,96,94,110,101,92,105,110,115,92,100,108,104,98,109,91,104,108,97,104,98,103,99,92,99,103,96,98,100,106,98,106,96,110,101,112,113,102,110,88,96,110,97,100,103,105,98,104,102,96,111,93,109,91,100,133,102,92,91,102,100,72,96,108,94,95,95,95,101,109,83,98,101,105,117,95,98,102,95,99,112,101,106,102,114,102,103,106,95,86,100,102,97,104,97,102,88,97,117,105,102,108,91,91,97,81,105,95,74,102,111,115,107,96,114,96,92,92,91,98,84,104,103,101,93,105,97,102,105,101,106,106,103,106,100,79,108,118,103,102,94,113,94,94,119,103,118,99,109,87,115,99,94,93,116,109,101,97,93,111,102,126,97,105,101,103,97,90,129,99, +623.30365,87,105,103,90,104,91,99,107,110,107,105,100,111,97,108,96,95,102,100,102,104,106,93,98,95,103,108,91,98,97,100,113,87,94,118,106,95,95,95,101,91,94,104,103,109,113,98,98,114,110,102,86,106,107,110,97,107,97,105,112,98,105,109,101,98,113,101,104,102,110,117,104,111,104,102,104,115,84,112,97,113,103,97,110,89,91,108,98,69,108,105,107,115,94,102,79,95,108,107,98,106,109,110,98,100,104,106,88,100,97,105,105,98,103,111,102,99,124,102,103,102,95,98,103,106,115,99,100,106,115,100,86,108,115,107,94,97,117,99,115,98,101,97,92,106,109,95,115,97,102,99,103,99,80,112,92,110,96,105,94,108,92,84,93,104,96,108,96,104,95,106,108,86,105,117,102,116,91,100,111,103,103,127,102,108,102,97,82,109,104,119,114,95,102,88,98,102,101,94,102,107,105,95,111,96,108,96,98,109,108,105,114,97,102,121,110,95,114,104,105,104,117,103,92,99,94,96,90,114,110,107,108,105,105,99,98,100,111,108,111,105,98,104,95,100,96,94,102,101,99,104,107,91,99,103,111,97,103,97,113,100,94,96,101,95,104,95,105,101,101,100,102,94,99,106,100,101,106,103,114,126,97,89,106,109,94,92,106,103,108,106,106,117,102,111,105,107,116,99,102,89,111,111,118,90,112,106,94,97,109,84,114,100,106,103,117,109,96,100,102,107,91,110,110,101,91,99,108,110,94,100,108,112,99,95,103,102,105,96,110,98,103,93,99,98,102,97,123,105,107,100,112,103,102,91,103,97,98,97,100,103,97,101,103,109,84,100,97,94,117,95,108,103,108,105,105,102,99,115,91,96,103,82,108,97,103,101,100,106,109,112,105,101,111,95,94,91,101,94,107,102,103,96,109,107,104,109,108,106,95,106,103,101,104,95,100,106,99,110,99,104,106,92,110,91,105,96,101,122,95,105,96,97,110,105,107,108,113,110,125,111,102,98,109,101,91,102,101,100,100,100,101,100,109,108,99,107,102,107,94,99,100,101,111,96,105,102,104,108,107,99,103,101,101,100,96,100,91,103,111,103,102,81,111,102,96,110,99,107,104,95,94,109,97,95,90,94,94,97,79,104,108,103,78,96,102,102,105,107,105,108,101,102,104,100,108,93,107,112,93,99,101,113,108,108,97,100,102,94,101,101,110,101,103,98,101,107,102,98,109,111,121,102,104,103,98,119,108,109,105,107,98,105,113,98,70,103,91,108,113,103,95,105,113,121,107,106,103,80,119,94,102,99,97,104,108,112,114,109,100,99,104,114,104,85,110,117,100,106,103,94,102,97,101,107,112,95,113,99,94,113,94,104,101,95,104,94,103,109,94,120,110,112,92,109,105,104,113,101,109,101,107,100,100,92,96,107,93,110,93,108,106,108,113,91,113,102,98,107,104,108,99,117,95,115,92,95,95,103,107,91,103,103,95,110,109,87,106,106,114,110,104,113,104,99,104,121,94,113,99,122,112,111,101,94,110,99,93,102,101,109,94,104,93,98,91,112,115,106,110,109,108,98,102,106,101,102,105,101,95,87,104,113,115,83,97,104,118,105,93,106,97,97,114,99,96,108,104,103,91,100,107,108,113,102,101,102,104,96,100,110,96,100,97,109,94,108,106,99,105,105,106,92,104,115,98,108,109,77,101,105,102,94,96,99,104,96,107,105,108,99,100,107,106,92,108,93,103,108,104,101,98,124,108,104,88,104,93,104,101,112,113,123,99,99,108,94,98,96,106,108,104,94,103,100,100,91,102,96,104,103,113,110,107,107,101,102,109,95,105,104,71,99,104,114,99,118,108,104,103,105,108,92,111,100,100,102,113,99,102,103,100,107,100,97,103,98,96,109,107,105,110,109,103,100,122,121,101,101,104,109,101,105,105,94,109,107,119,106,102,100,110,105,101,101,101,110,109,108,110,108,122,99,104,107,105,97,102,106,122,106,117,111,110,104,103,117,106,117,94,108,115,100,100,106,104,107,113,122,100,111,106,107,105,119,95,87,101,97,102,108,113,113,103,102,106,95,111,98,101,98,95,104,110,121,91,102,103,110,105,98,113,114,104,101,101,97,91,104,107,98,95,95,115,109,95,95,102,100,111,99,100,103,103,111,104,108,102,101,106,104,109,105,107,108,110,85,103,101,117,95,91,110,100,113,101,112,102,114,95,106,103,107,97,96,107,103,103,109,99,100,99,112,95,110,102,94,106,112,104,100,105,101,104,120,108,107,96,110,99,99,112,103,104,99,106,99,116,105,101,102,106,111,101,95,111,88,103,94,103,108,108,105,106,110,96,110,117,123,114,122,107,110,125,133,100,114,116,99,126,102,113,115,128,112,116,112,101,108,118,107,102,110,98,104,93,100,116,105,94,96,98,108,92,107,112,104,100,90,85,102,107,96,120,107,109,109,114,107,102,105,104,109,98,100,101,110,113,103,103,106,105,115,124,103,114,93,129,97,117,111,123,107,107,106,106,91,93,112,103,100,100,115,99,118,121,107,113,101,106,111,107,94,103,116,103,113,113,100,102,107,118,98,107,105,98,103,99,112,111,112,106,104,106,110,100,95,106,113,105,110,100,102,116,87,108,113,83,94,109,98,96,112,98,104,107,100,104,107,120,109,101,99,107,102,103,121,99,114,108,96,105,105,102,110,95,109,94,99,113,99,114,107,92,95,122,107,123,98,118,109,105,103,99,107,107,101,105,98,107,109,115,108,102,112,91,98,114,111,107,110,101,100,104,102,91,107,110,95,99,115,106,104,95,103,106,107,129,91,109,101,102,105,113,104,103,109,140,101,101,108,103,107,106,104,121,131,101,103,98,114,106,106,112,109,108,105,101,103,114,103,104,113,110,114,112,98,109,101,113,106,101,87,106,111,100,113,96,124,94,109,106,93,111,109,103,106,119,125,100,99,106,106,110,102,115,104,99,109,99,103,117,112,90,105,106,109,98,107,108,113,108,100,103,113,97,104,102,104,104,127,111,105,100,104,103,96,106,108,109,101,108,100,108,99,94,103,102,97,115,94,110,112,99,120,95,113,96,97,96,108,100,108,107,108,110,85,98,97,111,115,120,109,112,104,106,116,102,118,105,109,118,98,94,94,77,109,74,99,110,113,121,96,102,105,115,104,105,100,120,104,100,92,108,107,108,108,95,113,106,117,110,95,104,104,106,101,103,102,111,110,111,100,114,123,102,103,95,102,110,107,107,113,108,119,108,95,95,113,109,97,100,106,98,98,105,118,103,105,104,94,117,104,117,98,104,108,101,96,97,112,110,116,110,99,117,115,112,101,100,112,111,116,109,101,94,110,110,98,107,108,95,102,108,100,105,105,122,102,105,101,103,106,111,113,104,104,112,101,109,105,112,104,106,104,105,127,95,103,100,120,109,107,106,103,104,109,120,103,103,98,113,104,99,101,110,106,112,118,96,105,113,108,118,110,105,103,105,102,118,109,103,105,124,100,109,105,113,101,104,112,106,117,120,113,113,101,100,106,115,111,113,112,110,75,110,97,105,113,110,104,102,105,118,109,105,106,95,99,108,104,113,112,97,103,109,106,110,108,76,107,94,101,120,97,97,112,113,101,98,103,100,102,110,108,110,108,124,110,113,117,114,99,119,102,100,108,94,99,111,113,90,99,108,104,101,112,114,86,112,119,108,108,112,106,101,99,110,122,100,108,116,103,104,80,91,113,106,96,105,108,101,109,128,107,106,115,100,115,120,114,112,113,111,114,104,116,104,103,116,105,112,111,107,111,102,101,103,100,112,94,122,101,105,115,102,98,91,103,111,111,100,112,108,98,107,106,107,112,99,99,100,100,98,102,96,101,119,105,105,107,97,109,87,106,107,95,120,92,100,108,118,111,100,102,105,103,98,118,67,99,106,105,108,107,100,105,102,103,114,106,101,116,106,103,97,99,105,98,109,108,113,99,100,115,126,105,99,103,113,109,112,110,104,115,114,97,103,99,94,98,103,100,102,103,112,109,105,105,99,113,102,115,102,100,103,109,120,99,113,97,93,105,110,113,112,128,96,108,94,111,108,114,99,98,105,112,111,98,130,101,107,103,124,116,120,108,106,115,99,118,103,99,101,109,109,112,108,100,98,115,114,98,110,107,106,93,102,117,106,109,121,119,102,104,110,104,117,111,109,110,76,106,116,111,108,103,116,106,109,111,108,102,111,99,113,111,107,128,104,106,104,104,106,110,104,95,72,76,109,107,102,115,104,102,102,102,107,97,96,109,114,110,113,114,109,99,94,107,95,99,94,107,106,96,103,130,105,114,102,105,102,114,109,110,100,112,113,105,91,111,94,115,112,107,117,117,104,113,106,103,93,107,102,98,105,95,108,102,98,113,100,102,95,103,104,103,113,82,108,106,101,101,112,103,103,113,109,105,106,95,101,106,102,109,112,110,106,102,115,89,106,99,104,101,115,109,108,113,87,102,103,97,83,109,84,112,114,108,106,109,105,95,101,107,104,98,106,107,117,109,119,109,104,117,101,103,106,97,100,98,96,102,116,106,109,103,101,96,100,95,124,93,118,90,105,102,99,110,93,108,82,105,114,110,114,114,107,116,106,101,96,111,102,98,102,102,103,110,110,103,101,98,103,104,82,116,92,109,94,97,113,99,116,89,99,102,98,109,100,102,120,104,107,94,95,101,100,102,98,104,99,101,103,109,109,105,78,114,111,100,100,128,112,93,103,119,96,101,116,105,102,97,105,111,112,97,110,106,108,136,101,112,98,110,113,104,108,100,112,99,115,116,115,106,102,86,100,100,81,110,100,108,107,109,109,97,121,99,106,98,88,97,115,101,81,86,95,105,101, +623.44476,88,90,100,100,90,71,94,95,100,110,92,114,100,101,95,104,101,96,108,96,108,105,111,83,96,91,104,106,103,97,103,106,96,103,89,92,121,102,100,114,83,114,93,105,108,117,103,120,110,98,90,96,90,103,112,103,113,93,94,92,100,117,97,94,98,106,97,97,106,104,105,100,101,104,94,118,85,108,95,94,106,98,94,95,105,109,111,102,112,104,98,104,102,102,106,96,101,100,109,105,109,99,90,99,93,91,105,117,87,106,106,110,109,108,113,102,100,103,112,104,100,94,103,111,113,99,112,99,105,97,85,101,101,102,112,114,108,91,100,93,112,99,91,105,112,90,104,99,104,106,106,99,102,138,113,100,100,95,106,99,95,106,98,98,102,105,100,99,117,99,118,116,105,119,89,99,87,93,111,99,92,95,105,105,100,98,95,86,109,109,97,99,93,104,105,88,99,109,100,109,120,94,106,100,91,118,101,103,109,121,86,108,99,101,92,106,93,89,105,97,112,102,90,111,104,109,110,106,106,106,101,94,95,101,117,111,102,121,112,95,99,98,83,99,92,108,95,98,105,100,97,95,87,101,100,104,87,110,110,104,103,108,90,106,109,105,102,105,124,92,104,95,115,96,99,113,100,101,105,109,106,98,98,91,107,97,95,99,103,106,106,113,103,116,116,78,104,103,110,94,99,104,106,96,104,115,104,112,110,101,93,108,115,105,103,109,105,109,96,114,103,99,118,106,75,84,102,105,84,110,103,93,105,107,109,109,100,90,103,96,107,91,108,90,106,110,102,99,95,106,105,116,114,109,102,103,102,103,111,103,106,106,99,113,91,96,103,100,102,104,107,110,109,109,116,99,110,106,92,109,103,121,89,94,100,100,90,102,105,104,103,90,106,106,103,103,110,100,112,105,91,104,107,99,101,110,91,92,103,100,101,102,94,101,103,95,99,100,92,95,96,101,89,109,110,96,91,104,104,99,95,102,112,107,99,107,101,106,97,113,106,102,106,108,96,104,110,95,106,101,105,109,106,98,98,83,107,80,118,103,106,106,107,104,117,105,98,105,98,100,113,105,98,100,104,105,95,104,120,118,102,99,113,109,103,94,105,91,104,105,103,100,108,99,96,98,97,98,105,102,116,87,100,102,102,102,95,103,105,95,96,104,109,111,94,100,94,116,109,97,110,94,115,100,98,102,104,105,101,115,102,102,105,102,110,109,104,106,102,106,109,119,101,113,95,99,96,98,103,100,98,112,83,94,98,112,108,117,94,105,110,101,98,101,109,98,103,113,115,106,94,92,102,104,106,90,105,94,102,98,96,93,96,97,108,97,108,116,96,103,97,107,104,93,111,109,98,108,117,99,104,100,94,98,102,104,110,93,107,102,100,91,106,103,112,93,102,99,107,96,103,93,109,103,106,99,92,87,100,99,70,102,108,93,93,100,110,110,112,102,104,106,99,95,82,96,95,89,108,96,80,90,107,109,109,97,103,98,100,106,110,105,99,100,110,99,99,91,108,91,103,113,107,136,99,104,101,104,93,98,102,93,105,88,94,109,80,110,101,109,110,99,104,117,100,96,101,101,95,99,107,94,108,106,103,114,98,113,111,88,92,107,108,100,109,99,88,98,105,95,105,102,116,105,93,105,107,104,102,95,98,105,95,104,97,100,113,97,107,101,112,108,115,92,98,106,102,98,94,99,109,102,104,115,112,106,98,111,108,103,102,106,100,91,109,107,103,101,99,103,98,102,71,107,94,111,102,103,105,100,119,113,97,109,111,98,105,109,108,109,102,98,105,118,109,95,104,102,97,103,99,110,94,105,98,109,100,98,107,93,120,109,84,98,113,103,104,104,106,75,105,107,103,98,107,122,105,97,105,113,111,94,105,96,102,95,102,106,116,102,105,108,101,104,109,91,104,108,104,109,106,89,95,102,87,108,102,114,105,104,113,103,96,101,100,89,96,91,111,114,99,99,110,112,101,93,112,97,103,97,114,113,103,111,116,104,91,91,103,102,117,115,108,112,98,101,108,98,104,99,95,103,103,91,104,93,78,117,102,94,95,107,108,103,112,93,99,101,94,98,108,103,94,99,108,102,93,104,103,107,94,105,106,90,90,85,109,109,105,120,97,102,95,99,101,113,103,116,109,106,91,101,103,103,121,96,108,105,102,106,98,107,100,124,101,88,103,108,93,106,112,96,111,94,89,106,104,95,71,98,99,102,102,88,98,100,102,104,89,98,100,93,109,107,110,97,98,79,104,106,105,100,104,100,111,108,108,108,90,100,92,132,113,109,111,113,111,106,99,93,91,103,111,101,99,109,108,102,107,93,101,99,103,114,113,93,103,116,105,116,110,117,117,106,110,91,89,122,106,112,103,101,121,114,107,105,100,108,111,92,111,113,116,99,101,101,100,101,93,98,98,107,100,96,108,101,97,98,95,104,104,101,98,108,121,100,102,113,108,98,108,111,106,101,103,100,105,107,105,96,109,98,111,97,100,119,100,114,103,107,102,99,107,89,103,100,104,110,101,100,115,103,93,105,99,102,98,104,101,109,117,109,113,96,108,107,108,101,120,99,100,106,106,106,102,106,103,111,104,100,107,99,111,98,95,101,103,99,103,106,117,102,108,110,117,108,108,103,102,108,112,112,103,110,106,100,134,81,109,102,95,106,107,102,95,106,117,113,90,108,109,94,114,113,108,115,105,98,109,102,115,100,106,101,103,107,96,120,116,106,106,101,100,109,94,96,106,120,101,104,95,136,104,96,105,117,102,117,115,109,98,116,129,105,105,99,106,114,103,104,116,100,110,99,107,105,103,116,102,112,112,101,103,108,101,103,115,108,95,108,105,101,93,102,115,112,108,89,103,109,99,106,107,107,95,86,114,115,95,98,109,110,125,95,102,111,115,109,116,89,111,102,101,98,109,113,109,105,113,106,89,107,96,116,106,109,98,107,118,105,103,100,100,89,95,110,95,109,99,119,100,115,105,106,109,91,111,94,127,103,103,98,108,105,108,101,119,108,105,99,98,107,112,103,106,111,110,89,109,108,106,120,108,115,99,106,110,108,107,105,98,109,113,107,114,98,117,127,100,96,106,112,108,119,107,108,99,98,106,95,97,96,110,132,144,103,113,101,107,92,114,101,99,107,108,106,102,106,99,115,116,102,105,100,110,99,102,118,115,93,106,101,105,93,102,113,72,102,101,102,103,107,106,106,103,95,102,106,110,93,105,99,79,107,108,103,105,121,118,94,107,104,117,92,103,101,103,101,108,100,105,96,105,106,112,112,108,86,116,101,105,102,102,101,106,105,102,91,92,106,96,100,111,102,99,102,99,116,101,109,103,107,106,101,112,103,118,118,107,94,107,99,77,101,99,106,105,113,108,112,99,105,96,98,107,114,99,102,104,110,108,106,106,105,116,114,117,105,101,107,106,112,105,105,120,124,96,111,101,100,83,106,118,101,110,100,115,101,115,95,110,110,100,99,107,109,106,125,108,107,110,113,89,109,105,112,108,104,110,110,107,109,125,104,107,111,101,103,102,103,109,129,104,99,102,107,107,114,104,92,115,103,103,111,114,113,100,95,92,90,91,95,105,102,104,90,107,107,111,99,99,110,107,100,97,101,116,102,103,112,113,103,98,108,108,94,123,100,108,95,109,114,98,118,91,105,105,106,126,101,106,102,106,96,100,108,110,106,107,99,100,95,100,116,114,97,103,101,100,116,95,94,94,103,100,96,104,117,103,100,104,107,103,107,105,110,107,97,121,102,104,106,94,112,118,102,100,107,102,106,103,103,117,113,87,104,101,109,102,116,93,107,99,110,97,103,116,93,113,99,104,113,105,103,100,113,107,102,101,109,98,105,107,97,110,109,110,101,99,101,113,110,108,123,99,99,98,100,95,101,105,107,107,99,97,109,108,96,107,96,82,101,97,113,107,114,95,106,87,91,100,101,110,107,107,108,105,102,108,109,104,101,100,113,103,104,113,115,109,105,106,100,103,104,99,100,119,108,115,99,103,105,94,112,116,123,101,108,113,113,107,103,119,103,102,105,105,100,107,98,97,102,103,102,111,109,109,101,101,94,101,106,114,99,94,115,103,97,112,106,94,102,107,116,93,104,106,102,101,109,111,116,100,101,103,103,87,110,95,103,102,106,121,88,102,109,97,129,112,101,114,99,94,105,97,109,103,111,100,96,110,97,91,105,92,105,119,101,118,113,97,109,99,104,103,95,76,96,87,108,100,99,101,114,119,107,102,98,92,122,105,107,103,101,105,101,104,102,111,112,124,108,104,109,104,103,111,100,101,99,105,109,111,86,104,96,108,111,86,106,107,110,113,106,103,105,108,102,105,102,103,104,91,108,102,97,110,105,100,100,104,106,103,102,95,108,110,97,119,106,110,104,106,92,92,100,94,110,104,120,125,112,99,103,96,106,106,100,101,105,109,93,108,106,120,101,97,106,104,104,98,109,104,118,102,103,97,99,88,98,111,94,106,105,117,104,109,101,105,110,101,107,101,95,94,98,105,116,95,111,98,107,106,101,110,110,97,100,98,113,98,100,94,111,104,102,96,83,111,118,98,128,102,104,98,102,100,104,104,97,121,99,110,98,120,110,118,109,118,96,101,104,99,103,109,117,105,100,105,105,111,112,104,109,98,87,112,94,104,101,102,102,102,100,102,101,115,103,117,102,117,108,95,97,116,96,100,100,98,106,95,99,90,107,94,105,99,107,105,97,109,110,114,103,99,109,107,113,108,115,107,76,92,87,100,103,95,115,121,97,124,114,96,115,110,94,112,103,108,108,120,86,99,107,95,94,92,120,106,97,105,116,99,108,90,112,89,76,90,111,110,97,102,84,112,100,116,104,98,100, +623.58588,90,104,96,98,101,101,88,105,94,104,113,103,100,100,130,97,105,110,95,102,90,99,108,99,100,96,107,96,113,96,94,100,123,101,111,102,109,92,99,92,115,98,94,108,103,103,95,102,110,118,110,110,98,108,117,112,108,99,112,91,106,112,104,92,114,104,99,98,78,102,100,103,113,113,105,110,116,97,102,104,100,116,104,111,107,105,102,94,93,111,101,108,105,95,98,107,100,95,105,99,107,104,102,101,90,98,97,86,102,112,109,105,101,112,109,102,95,118,98,99,94,100,107,112,109,105,104,98,117,117,99,115,102,107,100,114,108,79,104,96,102,100,96,114,97,89,99,100,97,106,88,121,103,91,119,99,94,106,103,115,110,105,109,100,106,137,93,94,109,105,110,105,91,103,103,102,106,99,90,108,104,112,108,103,103,102,100,94,99,95,100,117,69,102,102,114,113,103,106,103,108,97,100,103,106,115,103,103,112,110,100,102,107,115,100,106,100,105,102,100,105,108,108,114,96,101,101,98,106,106,101,117,99,103,101,109,105,113,115,109,96,98,110,100,99,101,99,102,99,115,94,95,108,108,100,108,116,92,117,115,90,110,99,111,105,98,100,104,109,109,103,99,107,107,110,94,113,107,89,109,98,113,108,113,99,109,102,97,105,113,102,107,115,98,111,100,107,110,100,102,92,99,108,110,98,106,98,110,109,105,94,114,102,117,107,104,107,98,101,105,103,108,110,122,95,108,95,90,110,110,114,117,102,111,96,101,109,107,102,102,97,109,105,108,94,102,112,96,104,92,102,95,91,97,107,120,116,109,96,102,103,116,92,104,103,101,110,104,102,104,101,103,101,98,109,96,102,96,104,113,94,96,99,115,113,99,92,113,109,109,110,100,97,99,100,91,99,100,107,109,95,103,98,104,108,99,108,97,101,103,105,95,104,114,108,98,109,95,110,97,105,105,94,101,107,92,106,85,87,100,108,105,108,109,113,92,107,104,97,105,104,114,118,100,101,112,111,104,113,117,91,104,91,109,99,96,108,123,107,101,100,105,108,115,114,105,106,98,109,108,100,101,101,107,111,94,106,111,119,99,107,105,112,105,119,113,105,109,100,110,108,114,108,108,92,98,108,98,104,107,105,107,103,118,101,115,105,103,111,99,110,111,113,106,109,121,116,104,102,103,112,113,109,109,109,97,105,103,109,108,96,110,104,108,102,108,104,106,106,108,96,116,99,98,93,107,104,107,111,108,107,106,120,113,102,98,104,101,109,124,107,105,113,111,109,97,109,97,106,108,98,94,96,105,101,111,103,90,100,105,99,94,110,106,107,101,112,97,98,104,103,101,119,107,113,113,104,120,107,111,112,98,109,104,111,119,114,100,107,103,109,113,113,110,104,100,106,108,109,109,116,105,102,94,121,105,100,111,110,123,102,111,107,95,95,116,118,94,100,101,107,96,121,112,100,91,93,92,79,99,100,100,108,88,91,103,105,106,118,118,111,110,113,111,96,107,119,99,116,108,107,110,108,112,93,106,113,104,114,93,104,103,114,104,102,104,105,100,95,115,101,102,98,103,102,96,101,111,107,97,105,107,119,91,105,109,111,114,103,109,98,112,105,102,108,94,109,107,107,76,102,96,113,97,99,99,106,97,99,98,110,82,98,99,107,102,130,106,100,104,104,102,98,101,112,102,103,109,103,108,99,102,110,113,111,107,125,104,120,106,108,105,101,99,98,115,100,92,110,101,109,114,102,110,97,110,103,104,102,104,130,107,100,108,113,103,99,107,99,105,114,105,103,104,98,99,112,98,102,110,104,105,102,105,95,124,102,125,112,103,111,103,95,105,111,109,106,111,102,100,104,106,106,96,106,117,103,99,119,95,97,99,103,111,108,113,118,103,120,107,91,102,104,97,106,97,121,109,101,102,104,99,104,112,111,107,99,104,103,106,106,113,103,100,108,104,102,99,105,99,106,89,100,109,96,100,117,93,109,109,106,100,96,97,115,107,108,107,105,106,106,111,91,109,98,106,116,108,106,106,120,107,113,104,108,96,107,108,97,94,94,103,116,109,106,111,100,100,114,121,98,81,109,105,111,103,103,100,105,108,102,104,94,101,92,99,107,103,109,104,103,107,103,100,100,105,109,98,110,103,97,106,117,92,104,97,93,101,109,121,109,123,97,128,98,98,95,104,103,100,95,108,105,105,104,101,101,107,91,111,103,112,91,104,101,100,120,108,108,91,105,105,102,105,106,99,98,107,93,111,110,109,121,118,110,95,103,107,98,104,100,115,101,107,105,114,97,103,95,107,113,113,109,95,97,89,117,108,105,120,113,103,99,118,111,98,90,101,129,106,109,107,103,108,115,126,121,125,127,118,115,104,113,101,106,117,99,100,102,114,113,103,98,113,94,105,113,110,103,102,93,95,91,121,111,102,106,127,102,101,102,116,105,116,123,112,101,96,113,101,104,106,123,102,94,115,109,109,103,93,107,88,102,100,116,108,76,99,104,105,97,110,101,101,107,95,100,108,98,113,113,106,113,103,110,102,105,102,96,115,116,103,113,96,100,108,106,105,102,114,96,107,99,100,105,94,88,111,114,106,103,96,109,103,98,94,128,107,100,100,96,103,102,104,104,111,128,96,106,108,106,105,110,106,106,108,99,106,101,95,104,96,107,109,101,97,109,120,104,103,110,105,111,99,102,100,101,105,100,108,108,95,112,102,99,92,104,113,97,103,100,104,108,116,108,104,119,108,113,105,112,113,95,102,107,107,98,118,108,108,99,108,95,103,102,111,120,95,92,108,102,96,117,92,120,115,105,108,103,104,92,109,113,97,94,123,112,98,96,111,110,103,117,110,103,98,111,118,107,109,100,99,101,111,104,102,97,101,107,100,93,106,108,100,110,98,101,125,108,108,103,112,106,106,117,110,106,78,109,102,110,113,106,113,112,97,105,105,103,98,107,106,103,102,110,102,102,100,105,96,105,113,103,109,104,110,112,95,109,107,97,100,94,108,112,100,110,98,102,98,110,97,108,94,115,119,113,87,102,101,82,117,106,137,101,106,120,107,95,101,105,81,115,92,103,112,121,91,99,109,111,116,133,112,99,94,110,102,110,102,94,97,92,95,103,98,99,102,96,101,104,106,107,91,114,101,108,100,111,104,101,98,94,111,108,102,109,96,106,112,91,95,91,98,112,94,123,104,105,102,105,96,103,110,110,100,107,97,102,109,100,101,113,104,102,99,104,114,99,94,112,105,113,118,94,106,115,100,112,115,107,105,109,110,101,108,115,96,108,114,105,116,106,105,102,98,103,89,112,93,103,95,102,103,111,113,98,104,107,110,99,97,106,108,108,109,114,99,99,90,98,100,90,102,98,104,105,95,107,96,104,92,111,98,113,98,98,100,93,105,112,100,99,108,87,100,95,99,115,102,103,111,101,113,103,110,101,103,103,108,95,112,115,88,116,111,102,98,111,105,70,109,111,108,122,113,108,105,106,107,113,109,92,115,114,105,108,110,92,68,98,103,102,103,101,113,100,102,103,106,105,102,107,111,106,106,103,108,114,99,105,105,93,104,108,105,117,107,95,99,94,96,102,96,108,98,96,91,110,99,104,112,107,96,103,116,96,85,105,112,100,102,99,102,107,111,98,103,110,101,105,98,107,98,110,102,99,106,100,106,106,106,112,107,113,101,103,99,105,95,113,95,122,103,118,80,104,106,101,109,91,96,104,103,97,104,108,98,101,108,107,97,104,105,108,125,104,113,101,108,91,102,112,104,92,113,110,110,116,107,73,84,100,110,102,103,107,100,105,100,94,116,116,101,110,114,110,100,105,93,98,99,110,91,98,108,109,109,99,108,104,95,98,91,105,101,109,94,108,119,100,111,101,102,105,101,111,91,109,105,107,100,112,102,101,78,124,98,104,101,96,109,98,102,101,116,99,103,113,104,103,104,110,102,100,91,107,108,79,113,88,100,99,107,106,101,105,96,100,109,104,100,106,113,109,95,115,101,103,112,101,104,114,90,107,102,105,73,105,107,106,91,105,105,95,97,109,100,111,98,104,111,93,92,90,114,100,105,113,87,104,99,98,104,102,109,102,102,108,104,107,104,89,104,96,101,114,117,104,111,108,130,111,81,101,113,103,110,90,90,105,103,98,110,104,115,92,98,106,103,100,105,95,102,102,96,105,109,94,101,106,95,113,99,117,95,119,99,102,101,109,68,102,101,101,97,102,116,112,94,96,109,111,102,104,98,103,108,97,112,100,107,106,103,113,109,99,90,125,113,93,103,115,113,111,104,104,106,93,119,111,101,105,107,106,101,113,105,96,114,97,91,96,104,91,113,122,109,98,99,105,108,105,100,101,104,104,114,116,95,104,95,100,60,103,112,103,98,99,108,106,103,102,108,104,95,104,105,84,102,111,112,108,75,100,97,112,105,107,99,130,96,98,111,108,106,68,68,98,113,95,99,100,106,107,98,104,114,97,96,98,101,95,103,100,123,110,118,105,95,101,113,100,108,101,103,102,104,97,103,104,110,104,113,108,99,97,102,103,98,101,90,106,99,91,116,100,103,94,105,108,85,92,104,106,92,118,104,103,108,91,103,119,99,123,107,114,96,111,113,104,67,109,105,105,111,103,108,87,107,105,108,101,105,114,84,99,112,94,87,96,91,95,91,114,112,111,110,120,101,109,108,125,98,81,62,104,113,117,72,107,100,97,100,109,113,96,104,95,113,83,90,96,102,99,92,102,102,100,91,101,102,103,116,105,107,104,111,94,111,113,92,111,110,102,105,95,95,109,88,115,104,95,105,92,98,101,102,110,110,111,93,102,116,120,104,107,102,107,71,110,90,91,113,119,110,116,91,97,92, +623.72699,121,115,105,90,101,83,97,111,97,87,96,99,94,100,99,103,111,110,103,105,111,117,99,111,91,91,110,101,107,96,104,102,98,112,111,117,101,108,112,100,99,102,100,118,96,104,98,102,104,105,102,98,104,113,115,96,97,108,111,94,98,103,95,97,93,109,97,101,106,97,119,111,114,110,98,99,115,115,108,100,116,101,115,97,118,95,116,114,105,115,111,87,103,102,108,107,105,99,102,111,102,99,103,105,117,109,106,104,106,124,96,101,102,89,104,99,104,84,112,103,118,107,123,121,115,125,101,102,102,105,94,106,95,105,106,104,108,104,101,103,109,103,100,109,99,101,106,113,101,101,103,103,82,95,105,105,106,126,105,105,112,107,99,114,100,94,101,101,98,110,89,90,104,104,105,98,104,97,110,99,103,107,94,111,107,100,106,96,99,117,104,97,108,106,109,115,109,103,111,106,98,115,106,112,96,104,105,98,98,104,87,105,103,108,109,104,98,109,99,117,114,111,101,97,97,110,98,97,91,102,101,102,117,113,103,107,117,120,105,110,100,107,115,107,86,119,104,110,99,105,105,109,102,107,102,101,104,107,104,102,98,101,104,103,106,109,115,121,104,104,115,105,115,100,107,100,96,100,97,96,98,112,114,96,107,108,103,102,104,99,96,111,112,106,103,100,111,113,109,118,106,108,111,114,108,105,101,115,101,102,104,115,107,110,106,106,110,109,104,94,94,98,121,106,110,105,110,94,112,107,108,99,96,105,105,113,86,98,95,97,102,104,103,92,87,115,93,107,102,110,103,105,80,109,111,100,104,112,116,102,102,101,81,87,108,99,97,114,115,100,103,100,95,108,106,103,103,96,104,104,117,99,106,107,98,111,96,95,102,100,108,96,96,106,132,95,96,106,69,97,100,96,105,106,101,99,97,113,99,98,96,103,101,91,112,109,92,105,103,100,99,111,92,103,103,97,105,119,107,94,104,97,104,104,106,105,107,119,108,109,108,102,102,111,104,100,106,111,120,106,91,105,99,110,116,100,98,78,128,97,111,110,115,110,120,107,99,93,117,97,111,113,96,98,109,103,117,102,100,108,99,105,116,105,103,105,113,74,109,91,116,98,110,107,103,96,94,106,102,111,112,105,96,107,106,102,105,115,99,100,98,101,111,103,107,119,95,97,99,100,98,104,114,101,109,99,109,104,105,99,94,109,99,104,102,103,104,113,106,101,107,111,111,90,83,101,107,100,104,104,113,101,107,105,100,106,98,100,106,98,105,108,104,103,95,102,113,116,109,97,95,95,75,116,110,100,101,99,96,103,110,105,136,106,105,92,101,112,111,108,103,105,98,109,99,107,112,95,121,94,104,91,108,98,111,103,89,94,116,105,97,95,109,103,104,85,123,145,118,105,107,100,101,104,123,106,97,93,125,108,104,106,95,93,97,102,114,89,103,99,112,101,99,97,98,97,94,103,107,109,87,113,83,111,110,104,111,112,106,116,104,100,95,104,101,98,109,105,112,116,107,112,110,112,107,112,105,95,108,96,98,105,115,87,107,109,103,100,112,114,102,113,110,109,105,113,111,102,100,98,108,111,115,101,105,107,112,98,100,99,102,104,97,121,104,98,107,109,109,116,108,103,114,103,100,100,98,109,105,102,118,116,110,93,108,111,94,96,110,106,105,104,105,95,112,99,110,113,98,110,95,108,105,103,102,114,108,103,112,113,101,102,103,108,97,101,102,109,103,103,107,104,104,103,99,99,98,105,105,107,105,107,100,104,109,111,110,122,107,112,107,104,117,110,104,109,105,101,107,113,107,89,107,109,105,107,109,110,101,103,120,105,107,105,113,93,100,105,104,103,110,112,103,100,109,111,105,104,101,98,97,111,105,103,96,110,100,102,115,109,92,103,103,102,101,79,97,107,100,107,99,109,105,98,105,106,76,102,88,104,129,123,86,113,101,101,98,99,106,106,106,108,103,114,94,95,104,105,105,110,110,107,102,108,104,100,102,87,112,99,108,117,102,107,103,93,92,106,77,94,123,111,114,104,111,111,99,103,96,100,104,105,107,105,109,103,100,109,96,108,108,113,103,106,114,117,114,114,110,108,112,106,101,117,98,105,92,109,107,102,95,103,110,113,114,97,107,100,111,105,101,106,110,103,97,104,110,95,100,95,138,109,107,104,103,116,95,93,101,99,108,103,106,121,108,100,125,120,95,104,102,95,100,114,98,105,109,124,102,101,108,122,96,99,97,112,108,100,89,97,105,108,108,111,98,108,100,106,93,104,97,104,106,114,99,106,105,103,100,105,107,106,104,113,103,107,110,112,103,112,113,114,109,117,108,94,116,113,109,130,145,103,116,99,117,111,124,115,122,121,107,94,117,110,87,102,113,102,100,113,108,117,104,110,106,96,101,104,100,100,110,105,102,111,97,113,114,105,94,101,102,104,102,114,111,108,96,106,111,109,112,112,110,99,94,105,96,101,105,67,110,105,103,102,98,100,92,101,113,72,105,99,105,99,116,93,103,105,107,119,94,89,84,97,117,106,98,108,104,94,107,104,99,99,105,106,100,105,107,96,103,90,106,115,93,111,105,98,121,103,94,106,109,108,105,104,114,107,106,106,110,99,111,95,114,107,106,106,110,120,109,111,128,101,100,113,103,103,99,105,105,102,99,109,117,112,104,101,104,102,109,98,110,111,70,110,109,100,99,100,111,106,95,108,100,116,113,96,108,118,94,111,112,105,104,111,104,104,101,102,101,108,115,113,103,109,97,96,102,101,108,94,106,101,106,107,113,94,111,128,110,98,112,103,94,99,112,114,110,110,106,114,101,124,104,104,101,117,113,100,102,109,103,107,102,106,108,107,104,102,110,112,112,130,98,94,101,93,102,107,104,101,114,99,102,101,81,103,104,95,102,112,114,101,104,104,98,97,107,105,106,117,104,100,100,100,102,101,105,108,112,102,95,103,109,96,103,103,97,104,105,118,107,106,96,113,86,132,105,110,108,106,107,98,118,99,103,113,99,112,106,111,107,104,113,101,111,105,102,109,96,94,120,100,105,101,102,109,114,105,104,102,95,114,122,89,94,99,105,104,111,99,104,106,115,112,106,108,102,116,98,92,106,94,111,111,112,100,98,108,91,110,106,92,111,119,109,95,101,103,107,101,97,105,116,113,106,113,83,98,103,110,113,105,107,92,106,97,96,94,108,110,102,95,97,115,107,95,108,104,110,105,114,113,102,112,94,91,102,98,103,102,103,106,103,118,93,94,101,97,111,104,98,113,112,107,108,103,113,109,95,104,108,107,110,107,107,96,107,106,108,108,111,96,100,99,99,106,111,102,100,102,107,108,106,108,118,99,99,105,95,99,102,109,112,110,96,114,106,105,105,103,104,105,101,113,106,97,103,111,97,112,102,112,98,104,100,113,92,102,109,106,86,102,102,102,102,104,106,105,116,105,116,105,94,117,106,105,83,79,102,109,106,99,94,115,100,100,115,100,110,94,94,103,74,105,90,84,101,106,102,103,97,105,108,107,97,100,104,114,117,102,102,112,98,107,110,106,104,102,105,110,112,102,113,116,106,112,104,98,97,110,111,103,101,106,94,115,108,105,97,105,111,104,111,97,106,106,117,109,110,98,104,100,106,98,113,103,95,95,99,116,97,102,112,93,106,107,105,96,103,106,103,105,103,100,110,101,99,103,110,102,98,101,98,91,104,96,104,104,95,104,97,113,105,111,104,109,101,117,99,101,93,94,96,110,102,103,109,102,105,107,106,100,103,105,111,99,100,116,112,103,89,108,105,109,96,104,100,109,88,105,104,109,105,100,107,96,101,106,79,101,112,105,109,107,110,105,101,107,111,98,98,112,109,115,108,98,105,96,112,98,99,121,113,115,113,99,110,102,102,112,111,102,96,116,117,103,100,100,108,101,105,111,107,96,108,96,100,103,108,109,99,98,99,99,100,94,100,116,117,97,107,109,106,99,99,98,106,99,108,108,94,101,101,98,115,100,108,94,98,116,99,111,96,103,104,113,110,109,108,102,105,107,89,99,103,108,106,108,106,106,100,106,116,107,97,105,97,110,110,106,102,116,102,104,101,111,100,100,99,105,134,111,114,104,103,99,102,98,109,99,95,102,97,103,110,87,101,102,97,109,95,102,110,104,109,104,100,109,113,112,113,102,106,97,106,123,101,99,100,107,101,100,112,120,98,116,90,107,101,108,98,109,125,107,102,93,100,89,97,100,105,113,116,111,109,107,107,104,101,110,112,112,110,105,99,113,104,110,107,114,112,111,112,105,87,104,108,109,109,101,124,99,103,102,105,99,117,113,110,95,105,110,99,100,114,108,109,99,110,102,107,102,106,122,96,112,102,109,90,100,100,99,88,105,103,98,109,101,115,71,106,87,109,103,116,104,98,97,109,103,99,109,116,99,95,104,102,98,96,97,99,91,94,96,98,99,100,109,105,95,106,103,101,76,98,111,108,98,96,97,100,101,101,105,100,105,95,100,100,105,97,110,104,104,102,100,107,114,108,115,104,99,100,111,113,95,89,98,101,97,114,102,101,106,87,104,99,110,105,109,101,116,82,105,96,103,101,82,108,104,100,100,111,104,96,113,100,101,96,94,112,105,94,114,106,113,116,98,97,117,98,101,109,106,112,111,141,87,101,117,89,114,98,95,104,95,107,87,101,92,95,106,105,108,94,96,106,104,110,91,97,110,102,97,99,112,99,87,93,105,107,117,105,87,98,98,110,93,104,87,102,111,101,94,92,102,102,91,107,102,104,111,93,108,84,89,96,99,96,113,94,109,95,110,96,102,110,92,97,96,97,92,96,108,102,106,104,127,102,93,98,109,119,95,96,103,100,88, +623.8681,106,110,108,110,103,106,95,89,98,103,104,105,106,101,115,98,90,108,96,105,116,106,101,117,117,112,106,109,105,106,113,94,112,104,122,101,94,108,113,95,98,111,92,110,110,100,92,114,100,111,90,102,101,89,106,106,98,98,109,68,112,105,108,90,104,107,107,96,96,99,109,117,89,88,108,91,83,96,114,83,103,116,123,99,104,99,101,100,122,105,116,96,109,107,84,102,108,107,105,102,97,97,100,100,103,105,95,108,116,96,99,112,106,98,112,104,105,108,94,103,106,107,102,109,96,104,106,97,99,104,98,100,97,116,103,105,98,92,104,104,92,93,113,105,102,112,104,96,82,106,125,113,110,95,114,106,80,102,94,103,104,102,110,102,103,120,87,79,92,90,106,107,99,101,103,100,108,100,106,101,102,100,112,110,84,104,92,101,100,99,104,99,91,93,99,97,90,102,106,101,100,105,112,109,95,107,98,105,104,101,117,108,106,111,109,99,100,111,95,99,102,107,96,102,103,104,95,110,101,114,92,104,104,103,107,109,108,115,104,101,105,112,107,91,106,76,107,111,108,103,100,102,104,104,103,102,101,80,104,109,87,113,115,97,98,98,108,102,106,102,97,98,112,113,95,112,103,104,106,109,106,91,105,106,105,98,95,119,83,101,122,108,105,99,108,103,96,112,105,97,95,104,106,116,100,115,101,99,92,106,92,109,113,103,84,107,111,107,101,100,88,108,82,118,103,100,106,91,118,116,104,102,114,110,108,99,104,108,106,105,87,103,97,101,112,109,115,118,115,108,110,104,113,103,110,111,103,114,98,109,114,92,79,98,102,95,111,106,102,86,107,102,100,93,101,112,112,110,109,108,90,103,106,104,105,109,91,95,99,99,117,104,103,104,99,99,97,96,96,102,90,105,96,110,106,95,117,109,102,99,96,102,101,102,108,96,117,95,102,99,105,106,100,88,114,92,112,94,113,100,105,99,88,101,111,103,103,110,102,104,106,105,102,103,94,113,110,94,109,108,103,120,113,113,104,100,100,102,106,95,107,120,104,88,107,106,96,96,95,103,108,99,84,116,103,109,105,103,114,109,115,103,110,101,102,106,107,108,106,108,104,103,97,104,96,113,101,92,104,101,104,108,101,106,99,103,91,78,118,98,104,102,103,107,106,102,103,108,96,93,99,108,102,96,107,109,109,87,94,99,113,108,115,97,105,103,109,118,118,103,98,94,97,102,100,89,105,102,101,99,103,104,93,101,105,102,112,104,108,114,103,95,96,97,95,107,111,71,87,103,100,109,99,108,102,103,102,101,122,99,103,100,102,110,112,109,99,102,103,102,103,114,92,99,88,113,112,104,99,110,102,102,105,106,104,103,105,112,110,107,110,102,100,99,104,96,109,97,98,88,104,94,106,106,103,112,91,113,91,113,95,91,99,115,103,104,101,99,105,101,99,93,113,99,108,109,109,104,99,106,105,114,105,104,102,113,103,121,110,104,107,96,110,103,100,94,103,111,118,115,111,108,102,103,103,92,110,100,79,99,109,99,113,91,110,113,104,104,110,109,113,106,100,101,101,97,107,107,104,94,100,86,121,99,107,121,96,100,97,107,117,118,105,90,106,95,96,108,98,87,99,96,104,114,91,101,104,106,104,104,104,101,100,102,92,102,106,98,104,103,106,95,107,92,96,104,105,101,105,107,113,103,91,117,103,106,105,95,103,104,103,112,110,111,97,106,110,94,114,110,98,109,101,101,108,99,113,109,110,105,96,108,111,99,107,110,125,101,108,113,105,109,104,108,105,106,93,110,111,103,107,99,108,92,109,106,102,105,111,111,107,106,100,99,96,102,109,100,106,99,91,109,105,109,114,102,100,117,107,94,114,106,106,107,100,98,109,105,101,91,106,101,117,86,111,98,112,98,94,96,111,91,104,97,99,109,109,112,102,128,95,96,96,104,110,100,113,102,118,110,115,109,99,104,110,110,114,101,100,103,114,115,105,100,103,88,91,117,109,103,104,102,114,104,103,108,112,109,100,106,103,107,109,109,104,112,107,114,94,109,92,108,111,113,82,102,106,104,107,102,105,102,113,95,100,91,102,100,104,98,101,112,106,106,90,103,96,107,90,98,99,104,102,112,91,121,109,117,105,104,95,109,110,100,117,104,103,106,103,96,111,128,95,105,104,98,98,108,105,106,121,106,104,100,104,94,101,123,100,89,105,101,105,100,106,119,106,89,101,115,108,110,129,104,106,91,116,107,98,96,109,99,114,113,106,99,117,114,97,102,94,118,109,94,99,112,104,94,93,75,103,108,111,109,103,105,99,104,109,95,103,150,119,96,99,114,102,116,105,109,116,113,121,113,115,121,125,111,103,100,112,112,121,100,111,109,93,94,113,113,103,117,104,99,110,115,97,113,101,95,99,108,101,108,100,96,111,102,97,98,116,102,107,105,109,103,102,107,112,100,102,102,102,124,91,98,95,112,103,107,106,100,117,109,109,92,102,98,104,107,93,122,120,101,96,109,108,113,98,98,111,103,110,108,105,116,118,106,106,120,100,106,97,90,117,110,101,114,99,102,105,102,109,113,100,100,108,104,110,98,116,97,103,96,104,103,109,100,110,101,110,99,116,94,100,119,109,101,99,110,110,101,115,83,107,95,102,102,86,105,89,97,98,95,103,119,118,104,112,98,92,113,101,116,104,111,92,107,104,111,106,98,109,98,99,112,108,99,92,109,115,101,109,106,101,108,101,117,93,110,103,120,103,108,110,103,108,121,99,106,112,112,109,102,104,118,106,123,105,109,107,102,107,95,104,104,110,104,95,100,96,99,111,119,104,92,106,98,93,107,111,90,109,95,105,119,113,115,103,102,93,110,110,105,106,101,110,112,101,94,105,110,110,102,95,112,117,103,114,107,105,95,101,101,107,121,112,102,113,141,110,98,95,98,103,95,108,108,97,104,100,95,107,103,101,115,99,105,106,99,106,113,105,105,109,106,106,91,110,104,98,93,99,102,102,96,101,104,101,113,101,104,116,105,106,104,117,108,110,105,98,132,106,102,101,94,106,119,108,105,104,104,111,109,114,96,105,102,110,109,103,99,114,121,114,101,106,102,109,101,100,99,100,110,101,95,95,114,100,103,111,105,101,115,104,108,90,99,109,109,105,102,107,104,107,109,100,117,116,102,113,111,103,93,108,101,101,104,101,106,116,123,90,99,101,107,106,103,102,107,113,106,108,118,112,100,130,107,94,102,101,105,109,105,97,101,96,108,117,110,108,117,108,122,106,114,101,107,89,95,103,103,107,110,106,112,109,99,110,97,96,91,111,108,99,106,99,113,100,103,109,117,102,108,107,101,105,111,115,98,103,98,106,109,102,98,94,101,117,97,108,103,116,99,88,109,103,104,95,114,89,98,104,108,95,78,103,106,103,102,68,99,89,101,104,106,100,99,109,95,97,102,102,100,96,104,94,103,106,112,109,108,101,107,98,104,105,88,93,117,106,113,102,104,106,105,102,113,112,104,96,121,93,101,112,107,106,109,97,103,105,104,103,103,114,107,100,99,105,88,103,96,110,111,94,110,105,99,117,117,112,113,121,109,104,103,106,114,104,94,101,99,101,107,104,104,100,107,106,111,104,110,109,107,93,95,104,118,102,109,115,110,93,106,94,92,102,109,116,103,107,102,90,93,94,91,96,107,117,106,103,95,115,95,112,100,99,111,108,106,106,115,108,102,107,100,105,94,100,116,102,104,101,110,110,119,105,97,111,98,103,103,96,113,103,102,87,105,105,93,108,98,104,105,101,112,105,103,100,113,110,106,112,101,97,110,111,110,106,113,112,116,98,110,112,106,112,100,115,99,104,94,92,106,98,95,107,113,106,113,105,102,99,102,110,107,102,107,92,100,95,115,117,88,117,100,91,99,110,108,99,106,100,108,96,93,100,104,96,103,113,103,113,108,101,92,99,116,108,107,103,104,101,90,119,107,106,104,108,109,103,103,112,114,99,95,103,109,96,115,102,99,95,113,102,107,101,107,118,104,103,106,102,109,103,100,109,110,118,102,95,111,101,111,111,113,108,82,79,107,93,95,107,101,107,105,80,113,95,113,115,100,109,108,103,106,101,109,108,105,111,100,103,96,105,107,108,108,85,103,100,115,97,94,103,112,112,106,103,105,104,94,95,101,102,104,113,103,112,105,115,119,106,92,101,100,94,97,104,105,96,101,86,91,102,105,105,99,105,108,104,99,104,108,108,103,108,113,98,101,94,111,103,100,103,115,113,106,95,107,102,109,113,99,113,103,88,105,106,113,104,87,100,104,95,107,111,128,111,125,104,105,101,81,93,107,95,103,100,105,102,117,115,109,113,98,110,107,109,102,107,94,115,110,126,110,105,106,102,107,101,101,108,97,106,105,112,96,100,104,100,109,104,110,93,120,102,97,111,104,98,100,98,107,108,97,101,104,107,108,108,104,100,111,87,102,90,97,109,92,111,100,91,98,115,119,110,102,113,99,104,108,103,108,108,103,108,102,100,103,106,106,119,106,112,105,113,97,114,104,94,97,103,109,91,120,111,101,98,107,106,106,98,100,106,102,74,102,105,104,99,108,118,97,106,106,103,127,98,108,90,98,107,99,95,102,105,104,101,97,106,105,102,97,104,101,99,115,108,98,112,99,136,99,78,104,112,103,93,99,95,99,107,100,103,105,109,110,115,107,108,98,106,104,107,89,99,124,109,101,121,105,96,113,94,121,102,97,105,114,101,105,109,89,82,93,100,100,103,77,114,103,107,83,108,94,101,95,94,98,99,111,117,113,108,110,89,105,106,98,103,104,103,109,99,105,107,100,97,107,113,104,123,112,112,101,112,105,103,96, +624.00922,118,95,104,78,96,100,104,76,88,92,103,111,106,102,104,104,107,103,96,112,117,93,113,104,117,112,118,99,121,95,102,94,113,117,119,103,111,94,103,98,83,107,99,114,107,113,98,106,111,84,106,98,107,92,103,83,104,103,99,98,102,97,111,92,101,112,96,101,106,104,109,128,105,106,94,113,105,101,75,115,102,112,104,115,111,92,110,102,87,100,104,95,92,103,118,108,109,113,113,101,105,89,100,104,104,104,101,105,117,107,113,104,110,83,107,99,94,98,103,99,83,112,101,108,89,121,109,91,109,109,102,114,96,100,109,102,101,113,108,88,104,117,98,113,108,97,114,101,107,113,97,108,102,93,92,112,102,98,117,107,114,100,104,106,110,98,105,103,110,115,92,99,102,98,100,94,111,93,102,112,100,104,118,113,108,98,101,110,107,111,95,96,90,99,108,113,109,108,84,109,102,108,107,107,102,118,108,107,114,106,96,104,88,103,104,102,94,92,101,108,98,113,120,104,120,102,106,103,104,102,105,102,103,116,105,97,116,106,92,97,110,100,109,105,110,107,106,110,119,96,96,109,94,104,105,97,98,103,103,111,109,96,106,104,94,104,109,101,109,97,112,112,137,94,93,95,98,126,100,113,113,102,107,95,104,103,101,97,106,105,71,100,106,97,99,98,117,104,107,99,101,109,108,115,107,108,108,109,117,115,93,116,108,121,102,105,118,109,102,110,110,98,104,110,101,100,102,99,117,105,115,100,103,109,105,112,106,102,100,100,83,110,100,94,111,108,103,99,97,102,99,105,110,108,100,110,105,107,87,101,95,105,100,99,99,96,103,106,96,113,101,113,112,102,125,111,108,103,102,103,108,105,106,104,93,109,106,100,101,110,109,87,113,106,102,101,110,94,103,108,93,102,108,90,108,93,103,95,120,113,113,100,97,108,107,80,106,97,119,102,109,104,105,123,96,101,101,99,105,110,98,95,101,99,102,107,108,111,107,92,115,99,102,100,101,110,106,100,111,106,91,104,104,113,99,90,102,98,111,104,104,106,105,113,98,111,107,103,109,108,100,111,99,99,103,101,96,115,103,99,108,104,111,108,97,101,113,125,109,99,95,99,103,99,99,98,99,99,110,105,105,101,98,107,107,107,92,96,111,103,110,112,108,128,108,104,124,88,107,102,103,83,106,104,93,115,107,106,112,108,95,109,112,114,103,104,102,108,106,99,99,108,112,110,104,112,105,113,97,106,108,92,109,104,102,102,106,103,102,106,100,99,114,105,104,107,125,90,108,112,99,104,96,103,102,106,92,105,109,108,111,108,109,110,109,90,115,110,116,114,97,105,102,115,112,105,101,104,116,98,105,104,106,105,101,105,104,102,95,103,105,92,100,100,111,88,104,103,98,109,103,109,104,122,115,94,104,103,109,102,114,87,93,101,92,114,89,100,105,101,102,99,101,91,98,108,101,104,111,99,72,89,100,108,94,106,109,110,106,99,126,99,108,94,91,98,104,91,109,94,101,91,102,102,108,105,92,124,98,97,95,95,119,97,117,96,101,93,105,101,99,109,102,97,103,100,116,113,101,114,107,105,112,116,95,107,111,103,106,109,105,107,96,97,101,103,103,101,109,110,98,93,97,104,70,98,82,105,101,130,106,87,114,101,109,104,122,105,110,114,96,110,88,103,109,111,113,105,107,99,97,106,112,104,95,102,110,105,106,89,104,94,104,106,103,119,90,100,99,120,107,102,91,105,107,104,103,99,105,92,109,112,106,102,103,109,103,109,112,110,103,82,105,110,94,100,91,104,105,103,105,99,100,109,103,104,109,103,96,112,119,88,95,104,113,116,98,108,101,105,101,118,109,99,100,108,105,90,112,102,100,113,109,97,99,102,98,101,103,92,103,112,109,122,103,108,105,101,101,112,105,96,100,99,99,97,90,105,85,99,104,107,94,104,100,96,97,108,106,110,107,102,96,110,98,108,113,103,96,99,110,107,91,101,102,110,97,108,90,105,105,101,106,107,100,103,101,105,117,106,101,109,95,98,111,96,88,100,110,101,99,92,101,104,100,99,101,101,102,90,105,108,101,101,110,112,109,106,110,103,122,110,109,101,110,112,109,112,103,102,89,107,110,112,117,104,107,98,108,112,95,111,107,100,109,97,113,100,102,96,99,104,109,102,99,97,100,108,115,103,89,104,102,111,97,74,103,106,104,110,102,105,103,118,94,124,109,98,105,108,117,107,110,96,104,110,103,94,101,105,92,98,97,109,106,110,101,94,92,103,97,101,101,110,105,102,97,101,106,92,109,118,98,103,108,109,113,105,93,103,111,102,121,105,106,98,105,116,112,111,125,119,102,99,116,96,110,113,107,120,108,106,116,110,100,109,100,110,118,100,98,92,111,99,117,86,95,103,122,98,99,113,109,107,104,104,102,96,111,88,101,102,125,103,106,106,116,102,109,102,95,111,98,96,98,109,102,115,113,105,102,109,116,110,98,109,128,104,102,100,100,111,93,101,103,103,127,109,108,102,116,99,104,100,94,96,107,103,95,106,97,113,101,108,109,106,94,93,97,105,116,94,94,105,84,109,89,108,102,90,104,115,104,103,103,103,111,81,105,110,88,105,108,93,118,112,98,99,118,92,116,113,112,100,106,92,109,109,118,100,107,110,111,108,116,111,107,93,113,102,109,105,103,101,88,113,105,113,99,99,116,110,119,107,102,112,105,106,102,105,98,94,102,101,104,109,113,102,88,91,112,118,110,104,108,97,100,110,124,97,95,102,104,108,103,113,119,110,105,108,107,105,110,97,133,108,95,112,111,125,106,100,104,106,102,99,111,116,104,98,105,109,119,100,117,102,98,109,94,103,106,110,104,112,99,105,108,100,91,112,98,103,102,95,99,103,98,101,105,111,95,107,100,99,110,110,95,107,105,108,106,101,98,120,90,105,72,112,108,103,106,103,95,100,101,110,111,104,116,99,111,123,112,105,98,105,100,101,101,99,99,71,109,109,116,111,100,106,107,106,110,108,109,113,105,96,112,116,102,105,101,98,88,102,109,77,95,89,96,105,102,114,108,103,100,104,99,99,104,87,116,100,103,111,113,104,110,102,132,112,98,102,115,101,113,106,106,105,98,99,103,108,105,116,104,113,86,83,111,108,100,81,103,104,103,105,110,98,110,102,96,102,113,93,105,102,104,96,97,97,102,104,106,97,100,93,102,104,103,99,106,111,122,112,110,112,97,111,105,114,97,103,89,92,116,101,99,98,120,100,109,99,98,96,111,109,98,104,101,105,99,106,103,109,90,93,104,97,113,96,103,107,96,102,102,107,108,113,93,93,106,109,101,111,115,95,103,100,100,104,104,108,99,106,103,102,102,89,98,108,96,103,99,108,113,105,96,99,101,97,100,96,110,99,99,103,107,101,113,99,101,114,100,103,106,107,99,91,103,101,104,104,107,97,110,106,99,108,110,99,95,104,106,93,94,105,103,110,102,109,103,109,109,120,103,117,111,108,93,106,106,108,100,105,102,112,103,106,113,106,124,95,105,95,106,108,103,102,109,92,108,94,95,107,90,110,105,107,106,109,100,110,100,96,104,106,106,101,111,103,115,105,108,102,105,100,103,99,110,101,107,103,109,102,98,91,109,105,104,110,108,115,104,103,115,106,118,116,108,87,103,90,104,104,90,102,113,107,107,112,108,106,117,101,106,114,110,109,102,99,99,95,100,94,111,105,102,117,105,105,95,115,95,106,113,107,95,105,124,106,105,115,99,111,104,104,94,108,110,100,111,108,111,102,97,108,98,106,101,109,89,103,106,108,94,98,112,105,99,111,107,101,105,119,108,109,110,96,96,104,109,106,101,118,105,113,103,109,100,106,95,98,108,104,109,110,114,112,99,94,99,98,108,107,98,103,99,96,105,120,107,119,103,113,108,105,103,101,105,104,106,105,96,110,104,107,91,125,105,103,117,115,97,105,102,107,100,110,121,112,111,98,102,112,99,95,90,99,103,101,98,104,97,101,105,101,102,109,104,106,106,103,112,96,98,108,109,103,107,96,107,115,95,98,106,96,115,100,104,88,95,106,90,112,106,106,97,105,117,106,100,81,102,94,99,109,96,97,106,113,117,89,111,97,99,70,110,122,112,97,111,101,111,98,103,95,109,128,102,90,100,106,104,106,110,99,111,99,92,100,101,104,108,102,87,93,98,111,102,98,97,102,99,104,107,107,86,112,113,107,96,91,115,102,100,94,101,101,108,102,103,88,91,104,100,100,96,108,106,110,112,116,103,83,122,113,99,102,96,109,108,96,109,100,108,99,105,100,101,102,106,107,104,106,107,110,103,98,100,96,103,103,108,113,102,103,120,99,105,105,98,101,95,92,110,107,89,103,105,107,113,113,94,95,93,91,99,95,103,124,107,108,92,97,111,112,107,96,110,102,101,108,100,95,98,105,103,95,98,107,109,99,106,99,105,92,91,117,94,93,95,96,106,108,105,108,109,104,99,102,98,92,99,102,99,102,107,97,97,103,102,112,118,108,107,112,105,106,98,110,101,88,107,105,115,103,118,99,108,103,108,105,100,119,96,111,109,112,97,92,122,106,102,101,102,101,120,108,102,101,106,98,107,101,110,96,102,113,100,97,96,97,98,108,112,107,108,112,95,103,119,101,87,112,99,100,99,104,94,99,88,117,116,98,116,110,97,102,94,94,111,107,103,99,98,96,96,98,111,111,102,93,112,105,116,107,72,95,104,84,98,115,113,112,103,105,112,102,106,111,102,101,98,112,118,100,105,103,105,93,102,109,83,98,96,107,90,113,106,96,110,105,99,116,98,106,106,98,102,102,99,102,97,104,97,104,98,96,111,100, +624.15033,118,109,105,99,106,99,121,101,113,118,94,107,105,92,104,109,97,91,111,100,102,95,105,110,113,108,105,98,103,125,93,111,95,105,105,108,103,100,106,89,98,114,86,105,103,124,99,104,113,98,88,98,87,101,111,99,99,90,117,93,100,112,105,104,111,122,98,105,93,91,104,110,117,110,100,117,108,99,117,105,99,116,102,104,88,90,111,100,98,99,114,102,110,112,105,109,108,105,114,102,110,97,100,110,101,96,109,101,94,88,110,96,121,109,105,112,109,110,110,117,104,108,101,116,98,96,108,95,109,109,109,102,96,97,99,109,96,99,103,102,94,107,96,99,97,108,110,105,94,103,100,106,105,94,98,104,101,111,109,99,86,101,108,90,115,96,113,87,102,103,109,69,100,103,112,100,99,91,105,93,106,100,104,96,101,93,103,106,113,103,102,98,106,113,99,100,104,99,120,99,90,113,107,99,110,116,102,97,108,110,98,122,108,98,110,103,108,95,100,100,108,98,106,103,106,87,102,110,108,100,100,98,102,97,100,108,119,110,94,109,107,100,112,120,105,111,108,100,100,109,106,114,100,98,106,105,102,101,106,101,105,92,108,99,104,113,103,100,109,103,99,109,117,103,115,104,99,98,112,110,110,103,105,103,94,109,91,102,122,108,113,106,103,103,121,104,99,95,100,110,97,109,100,112,102,118,100,109,99,105,93,103,118,109,96,101,107,114,113,107,100,97,97,105,117,102,107,103,113,107,105,101,101,110,113,110,105,109,106,121,104,100,95,106,105,117,108,108,101,103,102,94,95,109,99,105,114,108,105,99,108,101,99,106,95,100,107,117,96,102,112,80,121,95,134,107,107,96,105,121,116,106,89,104,102,97,97,92,104,114,106,101,110,109,106,92,103,95,95,96,99,99,91,107,88,98,132,88,98,103,101,108,104,104,105,100,102,107,118,103,112,108,102,101,103,100,111,99,117,99,99,114,104,102,106,107,114,112,99,107,117,110,104,106,101,103,99,103,106,119,102,111,108,109,103,98,98,97,94,101,109,111,105,110,113,112,119,94,104,96,107,77,102,101,104,110,109,104,114,101,108,106,92,93,110,111,102,109,96,110,98,109,91,99,96,113,94,99,99,100,106,104,115,113,106,103,106,91,109,107,107,122,101,102,101,112,99,114,97,96,112,110,106,108,103,110,108,97,103,105,107,106,102,97,90,92,113,103,109,114,108,109,82,109,99,100,117,106,106,112,98,114,103,113,103,95,99,112,113,99,95,99,102,110,106,99,108,106,110,122,86,105,100,98,100,112,98,98,106,111,119,108,108,93,100,100,108,102,116,97,116,99,112,108,101,108,102,92,100,107,102,117,109,98,98,87,112,93,95,112,107,99,103,100,106,104,120,108,103,113,107,105,98,106,105,106,71,103,119,109,101,101,110,103,100,104,101,95,108,107,101,105,99,106,102,111,100,100,103,98,106,116,121,114,113,104,99,95,115,106,92,102,120,112,101,99,102,103,95,95,110,107,109,103,99,109,107,113,63,106,117,108,107,97,121,101,94,106,110,113,112,106,107,102,106,109,110,104,105,106,102,99,95,103,107,130,95,105,106,115,114,107,93,100,116,101,120,113,96,102,107,111,98,99,96,107,95,106,125,106,111,103,104,105,97,112,99,117,112,105,106,120,104,106,113,97,112,105,100,121,118,109,108,121,106,107,104,115,122,99,115,95,95,97,81,107,106,104,92,109,109,115,98,91,109,97,95,104,114,105,106,113,121,104,101,103,109,113,112,103,93,98,113,102,101,107,109,107,106,109,98,105,109,99,102,102,108,115,97,91,103,108,92,117,121,113,107,106,99,104,106,98,99,118,114,101,104,104,116,99,105,103,95,100,104,113,103,107,102,95,100,106,115,99,83,105,104,118,103,85,108,108,126,110,120,100,91,115,101,112,94,110,98,97,110,104,107,120,90,109,107,117,108,99,75,104,106,93,95,90,103,110,99,112,104,104,103,104,110,107,99,84,107,95,117,94,107,103,92,98,113,100,105,79,105,95,95,107,114,86,109,112,111,108,93,104,104,123,108,108,106,103,118,103,108,111,95,106,103,104,109,110,105,113,95,99,105,93,102,112,97,102,83,103,93,92,114,94,104,105,96,108,114,102,107,90,111,107,109,117,109,119,115,106,105,97,101,95,104,117,96,127,118,98,108,109,113,101,101,95,104,113,110,99,116,118,113,106,111,99,112,105,94,114,106,107,102,103,99,109,110,100,111,106,110,99,110,114,111,111,106,113,102,117,110,113,113,106,90,101,104,73,106,113,115,104,111,105,99,102,105,114,118,97,108,106,94,115,110,116,110,110,131,109,107,131,120,103,101,111,118,121,108,109,109,107,103,93,112,101,107,107,103,109,107,96,109,101,113,105,105,105,105,103,108,94,108,106,101,109,100,111,112,109,102,97,106,108,101,95,112,113,101,97,105,105,109,106,95,94,100,89,108,103,102,113,82,117,101,84,102,119,92,109,111,93,113,114,100,93,95,103,105,107,96,102,113,102,106,95,96,93,111,95,103,104,97,109,96,106,100,91,107,105,101,103,113,100,86,106,110,106,88,95,91,89,92,98,106,114,110,108,96,91,116,107,101,108,105,107,103,109,96,89,94,94,97,95,110,91,109,87,99,107,102,109,111,95,107,107,111,102,108,108,99,100,103,110,98,117,106,112,122,99,100,111,104,100,123,98,101,102,113,101,102,105,112,120,104,117,110,107,105,92,104,109,98,113,87,105,96,99,104,105,112,111,96,113,109,96,113,101,109,105,100,98,112,112,110,106,108,108,107,106,95,94,109,107,104,111,104,101,117,108,107,106,97,93,100,108,108,111,97,110,104,107,110,119,97,102,101,103,120,99,98,102,117,107,110,110,107,108,99,100,108,106,102,116,110,105,104,105,101,106,87,102,113,95,95,102,101,105,100,102,106,103,103,97,114,103,95,118,108,106,100,98,98,92,105,103,98,99,99,108,112,112,113,108,112,107,98,106,98,116,108,95,96,96,105,100,98,102,101,102,114,104,101,105,100,106,106,92,107,102,108,100,98,99,94,93,103,103,106,100,111,100,102,106,110,103,101,94,123,108,105,116,106,106,100,112,96,90,101,104,90,106,106,115,100,109,113,106,96,115,103,85,101,120,109,93,90,119,99,108,121,97,97,97,96,113,117,113,106,106,96,101,106,103,113,112,105,113,112,103,111,97,113,114,95,101,106,100,106,97,97,99,93,102,98,110,110,101,107,115,106,99,99,79,95,108,102,108,107,102,116,106,98,101,96,99,96,104,109,98,101,95,104,108,98,99,98,117,114,108,116,103,101,98,109,103,97,109,110,92,102,98,99,98,114,110,97,120,103,112,98,103,110,98,109,99,104,97,109,99,109,95,93,95,106,109,105,114,98,108,108,94,108,101,99,101,112,108,112,103,94,89,102,95,111,95,106,99,100,105,100,105,109,105,96,106,101,116,107,106,106,108,101,105,109,101,100,105,113,106,111,118,100,101,105,111,115,100,113,105,101,99,98,95,108,97,105,100,84,105,115,103,107,109,106,107,103,98,115,128,105,104,103,101,105,95,98,112,108,100,103,84,128,112,106,97,108,105,112,112,90,101,99,104,113,100,110,104,108,112,100,121,101,99,113,108,107,106,121,105,102,95,105,114,99,105,101,111,106,102,100,103,97,102,91,106,101,104,124,107,101,116,97,111,111,112,110,109,113,111,112,106,99,97,103,103,101,99,98,106,106,115,109,108,94,105,98,107,107,109,97,100,115,106,95,94,96,107,107,117,101,107,105,99,97,114,102,98,101,96,102,99,109,101,99,103,98,103,97,114,102,94,96,108,103,101,110,107,102,118,105,106,100,94,106,102,113,97,116,108,101,103,110,97,109,107,118,102,94,108,88,116,103,104,102,95,103,102,101,106,111,102,105,102,91,113,100,98,92,95,106,98,88,95,101,105,110,95,98,102,107,100,116,104,99,87,119,106,117,89,117,108,102,110,97,98,106,96,110,102,112,101,104,106,104,103,125,108,101,100,113,104,95,116,108,102,111,104,100,112,108,108,109,104,91,99,102,102,82,112,97,101,99,108,111,94,105,99,99,107,88,95,108,104,99,81,102,68,102,104,110,114,86,72,99,96,107,99,108,107,101,109,100,112,89,102,106,119,103,109,107,113,94,103,114,110,104,111,114,91,106,104,101,106,105,95,118,98,104,107,95,92,91,113,90,110,122,95,101,100,104,100,98,105,105,106,107,104,105,114,104,106,94,108,91,104,119,106,101,108,108,110,107,99,107,107,98,97,111,86,96,99,105,104,113,102,104,107,109,97,102,90,107,108,108,100,103,97,100,107,106,97,110,100,113,99,100,111,109,106,102,97,101,93,109,110,86,95,104,104,103,99,108,107,105,103,104,95,108,108,98,99,107,99,108,93,102,89,112,105,108,114,95,104,100,102,94,89,113,99,105,105,131,103,110,95,102,122,96,98,104,109,109,100,80,107,104,109,105,108,98,107,98,108,91,109,114,136,108,103,104,108,110,107,102,104,98,105,106,73,99,109,99,115,109,106,102,92,100,95,112,102,127,100,99,98,99,96,91,108,87,92,102,90,108,116,108,108,106,114,106,94,99,104,109,102,107,100,109,103,101,106,112,107,110,104,95,101,101,96,95,101,106,95,111,113,104,108,112,107,99,83,111,97,112,100,92,116,106,108,105,94,113,99,100,100,103,94,116,104,108,102,100,105,102,100,104,113,97,97,90,110,106,106,103,100,118,100,96,107,108,113,104,106,111,107,101,99,98,105,104,95,111,103,94,98,108,103,103,75,102,102,102,90,102,81, +624.29144,105,109,100,110,96,104,102,102,120,86,118,97,96,104,96,98,93,103,106,77,106,106,104,105,106,108,102,103,115,121,113,95,97,104,108,106,105,79,99,104,107,110,101,105,102,105,107,97,82,114,97,98,104,104,101,91,117,100,118,96,103,94,109,91,99,96,95,101,98,93,102,105,103,102,96,126,100,101,112,94,97,112,95,105,96,116,96,98,116,110,107,106,108,102,109,101,100,108,92,103,111,88,101,101,104,93,113,100,84,103,89,105,106,101,106,108,96,103,105,106,102,103,103,100,98,95,98,97,110,120,98,102,98,112,95,107,101,93,99,103,109,115,97,103,114,96,117,116,108,95,106,101,112,101,109,99,96,104,102,109,100,101,97,105,99,102,110,94,87,107,100,107,96,99,101,105,112,102,106,89,91,93,105,109,107,106,107,98,100,103,112,102,105,100,101,86,108,104,109,113,98,110,111,107,111,98,94,95,108,106,98,112,133,75,111,100,118,101,90,101,93,105,97,114,75,108,110,113,116,99,99,113,108,108,114,104,112,99,106,129,107,108,104,84,98,106,107,106,109,103,101,114,97,112,96,116,105,104,93,94,94,98,109,105,91,107,107,99,105,114,107,120,100,92,104,94,105,101,100,98,105,115,108,104,114,101,104,108,102,115,97,98,108,108,103,115,110,107,108,104,102,104,116,113,121,102,113,113,105,110,94,98,117,103,104,86,115,111,91,109,105,117,109,108,100,100,114,104,106,106,96,97,113,105,109,104,103,109,83,106,100,96,103,103,126,104,102,108,111,99,107,108,96,119,104,94,116,115,94,112,107,110,105,108,107,100,103,112,82,107,99,101,107,104,88,110,110,106,97,108,104,118,102,106,104,76,98,99,104,110,100,100,105,102,98,95,100,101,88,108,91,99,93,102,106,110,108,108,111,101,104,120,96,109,101,92,99,96,107,102,99,104,104,108,105,104,98,105,91,108,105,111,118,99,108,100,98,106,95,117,111,101,100,96,95,107,113,101,98,102,109,98,107,114,114,109,108,105,113,109,110,106,116,116,103,121,107,102,109,105,111,93,120,110,101,105,106,108,109,102,112,99,108,104,94,106,106,108,102,108,106,98,104,108,102,120,109,96,110,103,112,103,100,100,105,96,100,108,109,103,121,117,102,108,123,101,109,73,99,99,106,101,100,114,95,107,110,112,102,106,103,113,101,92,117,102,108,101,108,99,108,99,101,108,109,105,93,100,108,102,94,105,99,106,88,99,101,87,97,119,103,97,100,105,97,103,97,117,106,119,104,92,99,106,88,88,106,102,112,107,107,102,114,99,95,109,117,104,80,99,115,113,109,109,112,103,100,116,101,108,103,107,90,108,103,90,97,102,96,97,104,100,104,107,106,100,111,106,122,90,93,99,106,104,102,103,105,97,99,119,113,108,105,105,97,109,106,95,94,97,94,104,95,102,95,113,69,113,123,114,114,108,106,107,102,96,104,96,117,117,117,93,113,109,86,106,96,105,107,103,113,102,101,91,103,111,103,112,81,88,104,97,101,107,98,110,98,111,103,99,103,108,100,95,107,96,101,104,92,104,106,116,107,69,105,106,103,110,98,108,92,106,101,98,101,92,89,91,98,105,107,100,104,103,101,97,97,105,121,109,107,114,115,96,105,104,104,102,110,102,108,99,104,104,103,104,108,108,107,105,117,106,96,94,102,101,104,96,117,106,108,96,99,102,108,106,91,98,100,103,89,106,103,107,105,100,99,101,105,102,104,106,111,118,120,99,96,94,98,111,106,126,101,105,110,105,87,98,102,113,94,97,108,109,100,91,112,113,109,102,103,103,104,99,101,102,110,78,105,111,108,113,110,110,102,108,100,100,105,104,111,95,110,106,106,113,100,115,108,102,108,118,109,100,108,100,100,98,98,99,111,104,101,96,97,98,107,110,108,119,106,104,103,101,102,95,91,110,97,103,104,105,108,114,95,102,115,112,105,104,101,112,103,105,102,118,110,119,106,118,109,103,108,118,100,106,96,102,99,109,96,104,124,113,100,102,124,110,104,84,116,104,107,109,114,100,108,98,105,98,112,111,105,109,116,105,100,110,103,111,104,120,104,89,112,111,117,103,112,107,112,102,114,95,97,102,109,107,108,96,104,99,108,103,109,98,106,107,98,107,109,102,107,100,110,103,103,100,93,111,96,100,97,92,114,111,100,104,95,100,86,108,102,110,105,100,101,97,110,99,97,100,95,94,93,98,105,101,104,113,112,97,96,103,106,83,112,104,115,105,101,109,99,103,109,110,108,114,100,103,98,102,106,96,91,112,109,96,102,110,83,87,115,97,89,104,98,113,104,128,116,113,111,110,113,116,121,103,113,106,87,102,90,121,95,116,111,98,107,95,104,124,113,106,101,96,94,99,101,95,120,94,112,102,107,122,115,104,103,101,102,99,106,95,99,94,100,110,96,111,109,103,111,101,100,98,105,98,107,99,108,102,113,100,125,98,122,117,100,107,101,99,100,112,100,106,102,98,105,109,100,98,104,103,106,104,113,96,123,101,101,114,115,117,97,107,85,117,114,116,103,100,109,104,104,75,99,106,116,102,106,116,110,97,106,110,112,111,100,105,100,103,115,90,108,109,106,103,109,118,91,113,107,102,97,98,101,105,106,102,107,108,104,109,106,108,108,99,104,111,101,95,107,112,111,114,99,98,95,106,108,113,109,111,99,104,98,101,105,101,104,106,100,109,113,102,95,110,97,108,111,109,119,108,105,102,105,99,107,108,93,106,114,120,95,101,100,112,89,104,104,95,118,105,109,107,109,112,100,106,77,106,106,98,92,116,102,99,109,104,113,104,115,114,104,113,102,109,109,101,112,111,116,115,106,93,99,101,107,73,106,91,93,106,106,108,107,111,112,110,115,105,109,102,99,112,105,105,113,106,112,117,91,111,88,61,100,104,96,104,95,106,97,93,107,109,105,77,102,105,103,111,108,120,100,105,112,107,85,116,113,101,98,91,102,105,112,107,99,107,97,115,97,103,99,116,114,104,102,109,114,107,103,104,96,103,106,106,105,119,109,101,105,117,110,106,104,104,96,80,81,92,107,112,100,108,109,110,100,107,110,94,132,114,94,102,95,104,98,86,104,112,110,105,106,109,100,103,110,100,105,89,100,111,89,102,107,96,95,101,105,114,99,106,110,94,96,108,107,106,113,98,95,101,108,101,104,95,113,98,112,111,110,105,113,120,102,101,110,99,112,118,100,93,95,109,105,100,120,101,99,104,109,105,97,118,107,102,94,93,103,111,102,100,118,114,98,99,109,96,99,100,108,89,103,110,103,110,110,106,94,70,110,119,103,111,114,111,102,101,98,108,118,103,99,104,102,102,132,103,98,106,103,119,94,99,127,98,109,120,112,94,111,100,110,115,99,108,105,100,98,109,104,100,116,101,113,93,109,106,128,94,95,99,110,96,107,117,116,107,111,94,103,106,113,117,115,91,98,95,108,110,92,106,106,106,107,93,106,94,100,102,96,95,100,103,106,104,99,106,112,107,114,111,94,117,102,111,104,93,107,116,92,102,108,117,102,103,108,110,95,98,102,109,108,99,93,106,120,94,106,112,107,105,103,107,106,105,103,106,104,97,108,117,100,97,97,106,106,102,100,112,109,119,95,108,95,105,113,105,94,103,101,102,98,96,86,110,102,101,109,111,102,97,124,100,96,97,101,99,103,104,103,98,105,106,99,125,106,104,109,100,99,109,119,110,103,98,116,115,100,111,102,113,91,112,101,107,106,108,107,107,100,84,112,102,108,100,92,104,94,111,110,102,93,107,106,120,108,102,102,108,95,88,106,111,100,97,94,99,112,111,94,113,105,120,129,97,103,98,96,105,112,101,112,101,102,101,110,103,101,93,105,101,108,105,108,105,102,102,106,110,112,110,100,103,108,102,96,102,102,100,103,110,113,101,112,103,94,108,109,116,103,108,98,95,117,111,105,110,102,94,100,97,93,106,104,87,105,107,112,107,102,100,111,103,111,100,122,102,98,105,108,115,101,109,96,91,99,106,102,109,93,102,106,116,96,108,106,110,80,108,124,98,107,104,114,105,80,105,94,105,112,114,77,118,111,106,106,102,100,107,88,97,98,111,105,101,109,108,89,113,101,103,108,107,102,108,91,97,99,113,112,105,93,117,108,105,92,95,104,100,94,106,105,105,106,111,106,105,107,100,112,97,111,126,106,103,78,114,105,111,111,110,113,105,100,105,101,110,88,98,108,103,103,106,102,98,113,106,109,108,108,116,108,103,107,104,113,109,99,100,105,105,107,106,108,107,105,96,90,95,110,110,110,103,114,108,102,102,101,92,107,110,117,110,100,106,109,107,107,100,107,104,99,81,110,110,102,105,103,102,113,102,116,108,104,114,98,104,98,110,101,107,120,119,101,102,109,100,108,102,105,108,103,105,99,100,111,107,106,92,100,115,99,108,92,96,94,123,122,92,96,110,108,87,106,105,96,105,104,103,104,103,86,104,108,120,109,103,107,91,105,97,91,96,101,115,91,101,99,92,107,104,110,106,100,107,106,93,107,112,124,99,102,99,99,96,110,103,107,99,121,111,99,112,114,112,109,105,97,97,115,113,101,105,101,106,102,105,111,102,98,111,127,101,110,102,108,108,106,101,103,111,101,111,93,92,101,91,92,118,79,109,97,94,100,106,101,102,112,105,94,100,105,97,99,112,111,102,103,104,94,107,104,104,94,96,98,109,98,110,95,109,109,109,101,98,94,109,107,92,103,112,94,106,117,110,99,99,111,98,100,109,113,105,96,104,129,105,101,100,103,111,90,101,102,108,106,115,93,80,107,96,98,98,91,102,106,99, +624.43256,104,99,105,104,106,103,109,100,89,107,102,95,88,103,101,101,111,104,104,94,110,100,105,93,103,102,88,101,97,96,100,100,104,96,112,91,103,94,103,105,95,118,97,112,107,106,108,95,77,106,122,98,111,104,89,109,104,94,101,96,95,106,111,90,101,106,95,96,97,101,109,97,100,118,101,120,110,105,93,108,109,95,87,95,85,110,127,109,82,99,85,94,90,101,95,111,103,100,94,99,97,101,110,97,116,94,103,112,102,106,109,106,105,93,92,114,116,110,103,84,111,106,96,105,102,74,109,96,105,113,93,102,109,97,116,104,70,108,97,111,93,105,98,99,99,111,97,109,102,97,101,105,112,107,105,114,101,105,92,105,106,111,110,91,117,99,101,104,101,112,97,116,95,100,99,110,96,104,101,108,93,106,106,106,108,104,97,94,96,92,98,106,101,101,105,109,103,111,106,101,110,99,116,100,113,109,94,99,110,114,94,110,98,98,87,104,99,109,105,101,114,99,93,107,91,104,103,117,103,90,90,117,102,92,105,99,104,105,98,107,105,109,123,103,100,112,98,79,106,113,103,102,114,109,110,101,109,104,106,100,101,107,106,104,98,107,104,102,103,104,109,121,100,103,124,109,109,107,103,102,103,89,105,96,98,108,104,110,94,114,96,115,107,99,69,106,100,113,101,94,101,92,113,107,98,102,106,96,124,112,89,103,101,100,113,109,97,99,96,101,67,107,104,125,108,106,100,92,101,100,93,103,112,113,104,102,111,99,98,101,99,87,101,99,113,113,99,105,108,97,113,98,104,100,103,104,122,104,112,103,102,108,95,110,101,99,116,109,95,102,98,109,112,107,111,92,108,101,108,105,107,110,100,102,106,105,96,105,97,97,102,92,97,112,98,106,99,96,104,99,96,108,112,96,109,86,95,105,103,112,96,109,115,106,96,107,97,95,93,103,102,100,109,107,104,87,109,109,99,107,100,107,107,95,106,87,95,103,93,96,107,107,95,110,92,108,104,117,102,108,101,101,98,100,103,99,98,115,105,99,100,107,104,110,104,102,100,102,106,99,99,103,98,104,98,106,97,127,105,108,99,101,107,103,110,115,106,101,109,102,98,112,116,103,99,100,107,107,107,102,110,98,96,104,106,108,98,108,99,109,117,107,104,110,101,102,96,97,112,106,118,105,110,73,100,105,99,109,99,100,105,119,119,112,103,109,108,104,109,105,117,113,101,104,101,94,88,98,102,107,98,107,105,120,100,104,104,94,100,101,100,104,102,122,97,109,106,101,102,99,102,97,98,106,102,95,110,110,114,109,105,109,99,87,114,101,106,110,119,100,106,112,110,90,96,103,98,101,118,108,103,100,100,102,107,128,106,105,100,106,109,103,100,118,102,107,90,86,108,116,93,100,98,102,120,99,101,97,96,100,92,93,103,104,94,114,97,96,105,120,116,108,113,86,105,109,103,103,108,94,102,103,100,97,100,113,112,119,112,109,105,107,91,102,105,108,110,101,104,104,97,101,108,101,101,112,113,136,110,114,104,102,115,103,101,101,98,109,105,109,90,99,96,103,93,100,102,121,100,94,107,95,109,96,137,115,109,116,106,108,102,115,83,101,103,105,114,103,109,97,100,103,98,88,94,101,101,105,112,113,105,108,102,88,95,101,107,101,103,105,94,98,109,101,120,112,97,116,115,105,99,112,105,84,110,123,109,108,91,99,111,104,100,104,104,99,101,109,89,101,103,103,115,109,99,97,109,106,102,108,106,96,105,105,96,108,105,113,95,103,109,103,109,117,108,116,108,103,98,103,114,103,104,100,118,103,107,108,116,87,116,106,117,97,108,100,108,102,101,86,102,110,103,102,111,120,119,102,99,104,115,111,111,93,93,104,97,115,102,100,95,102,104,115,99,96,91,106,112,104,99,110,95,102,98,99,89,113,100,94,102,114,103,112,107,98,108,111,111,116,108,107,95,111,113,111,106,103,99,90,96,106,105,114,107,77,100,111,103,111,101,102,92,104,101,98,107,96,110,93,109,103,108,96,116,100,108,104,98,98,113,99,105,93,96,101,97,95,106,101,106,97,98,97,101,89,88,110,97,102,100,102,101,108,112,112,95,92,106,106,105,102,99,96,107,87,103,103,99,105,113,111,107,109,104,102,100,112,76,104,100,105,97,115,105,96,100,92,109,112,109,105,103,98,79,109,92,93,112,103,97,109,114,100,111,106,100,85,112,104,95,100,102,90,97,104,103,105,96,92,87,118,95,113,98,113,102,102,92,100,105,107,97,92,99,96,117,94,110,112,113,100,102,112,97,91,105,96,95,106,120,105,106,108,114,97,93,107,119,111,103,111,119,105,116,123,122,96,116,105,131,100,107,113,103,117,104,109,99,104,120,101,112,100,108,121,105,99,100,99,101,100,112,112,106,87,102,106,107,92,91,104,103,101,91,100,107,122,107,107,98,100,109,108,96,107,109,110,96,110,98,107,102,88,94,93,105,102,108,115,120,106,93,105,104,111,110,97,95,110,103,96,100,119,109,94,98,91,106,114,136,126,98,103,101,102,103,101,93,103,86,103,100,112,96,89,100,109,105,106,115,99,112,110,114,95,106,101,105,107,111,91,102,115,95,115,80,98,105,109,105,101,98,108,95,102,107,77,122,108,102,110,95,108,102,98,67,108,100,103,102,99,83,109,112,94,112,102,95,113,103,103,116,108,90,105,105,109,101,109,99,98,98,113,97,103,107,95,102,102,109,120,93,112,102,105,95,109,107,93,105,96,71,104,99,94,121,104,96,95,102,95,124,109,102,98,103,107,100,99,103,107,109,106,100,97,105,104,90,113,91,116,113,117,113,98,92,102,106,102,111,104,103,115,90,90,100,114,103,98,100,101,112,104,102,107,97,108,103,103,97,102,99,110,103,99,103,100,106,108,102,111,97,96,96,99,108,122,107,94,95,107,94,98,109,84,107,108,96,108,87,99,94,95,113,101,103,101,93,111,109,97,96,111,133,107,74,110,96,101,103,106,102,99,98,103,101,108,112,106,99,94,97,106,95,84,111,100,98,117,107,109,100,90,113,101,98,99,98,75,108,100,103,105,98,101,101,107,107,100,97,102,109,99,105,99,111,92,95,102,105,97,100,103,109,99,98,94,109,100,109,98,95,99,113,99,112,95,108,103,108,98,101,99,113,107,87,97,86,104,105,106,95,95,105,93,91,109,102,92,112,113,114,105,108,104,98,95,95,96,118,94,110,99,103,96,100,110,106,91,96,93,109,108,99,104,96,98,85,95,82,102,106,107,111,103,105,99,97,108,101,99,100,106,103,107,114,107,99,100,117,102,99,100,104,104,97,116,132,104,108,105,92,110,94,109,88,95,99,100,92,96,104,100,106,104,102,106,97,109,109,100,101,96,115,95,107,104,105,108,88,100,109,99,99,97,98,96,96,104,103,107,98,97,97,99,105,96,109,92,103,108,99,107,94,109,101,111,109,105,112,127,100,99,114,107,103,111,93,124,99,107,97,115,113,112,101,108,107,109,109,94,93,104,100,109,102,108,99,100,97,110,96,116,101,96,101,98,106,94,100,116,99,109,108,102,101,104,103,130,99,107,110,114,111,100,108,103,106,107,99,90,102,114,109,93,107,109,108,101,106,117,87,99,93,91,100,101,112,106,108,103,95,112,110,104,112,108,96,98,105,109,102,72,109,107,111,105,103,99,103,122,103,100,97,104,107,97,113,107,92,97,109,112,99,107,104,104,109,101,100,100,98,117,102,106,101,106,114,111,109,101,104,98,107,105,101,105,103,113,95,100,117,100,111,93,104,93,103,99,102,99,108,110,110,96,101,104,107,101,91,100,104,103,109,147,109,94,92,89,105,108,106,96,108,97,99,102,110,91,109,92,103,99,103,115,102,104,100,104,102,99,99,110,105,110,96,106,109,103,105,91,103,98,101,103,96,109,96,104,106,94,85,91,102,109,92,103,111,103,98,104,102,99,105,107,114,113,115,100,94,115,109,91,98,95,107,107,107,99,110,98,106,87,102,107,99,98,91,117,103,114,103,109,108,107,104,111,107,111,112,103,113,99,103,99,89,107,111,108,98,101,101,103,96,108,104,103,113,108,96,111,96,93,93,108,102,103,112,95,102,106,106,117,95,111,98,108,96,98,100,92,115,107,99,109,113,103,91,103,105,101,108,100,101,105,112,99,89,100,94,102,99,103,102,110,100,100,105,103,107,109,110,104,97,102,104,100,105,107,112,103,100,130,98,106,99,97,105,103,112,109,108,114,84,107,94,96,104,114,113,99,104,106,114,98,109,104,97,89,113,92,96,112,117,112,100,99,102,99,99,107,101,107,95,100,113,106,102,102,97,96,113,117,103,103,102,105,115,86,113,104,67,95,103,111,107,91,104,95,100,110,99,111,97,104,103,108,97,101,98,95,102,103,106,104,105,111,100,110,106,99,110,101,99,107,99,95,99,84,93,95,104,122,100,81,106,115,106,99,94,108,105,105,91,105,97,98,96,113,110,104,112,96,90,101,107,83,98,100,99,97,102,124,99,99,107,111,99,107,101,112,95,106,107,104,104,97,116,103,109,102,95,103,107,106,106,125,108,94,92,112,103,103,107,97,99,102,114,99,84,106,83,100,95,102,70,105,100,107,116,103,89,112,104,102,99,97,99,94,95,102,104,114,112,108,99,88,97,102,113,107,106,109,92,79,106,81,91,106,82,107,98,91,123,102,90,100,113,114,96,105,96,95,107,94,102,107,115,98,102,109,100,107,106,95,106,98,96,94,95,102,109,119,99,116,80,95,102,109,108,99,99,100,95,116,105,90,98,105,87,112,100,91,94,102,106,90,137,103, +624.57367,102,96,106,96,82,114,112,78,95,111,104,102,97,97,103,100,92,104,99,101,107,107,100,105,105,96,87,104,108,104,91,98,93,93,103,117,113,95,101,109,92,103,93,111,99,102,85,103,95,105,108,87,76,104,79,91,103,97,110,94,109,100,98,98,96,109,95,90,104,104,102,109,91,87,102,103,98,118,104,101,102,105,105,103,93,91,95,101,100,91,113,104,82,96,93,112,93,86,98,95,96,93,91,99,104,106,96,103,99,94,112,103,104,94,97,100,103,100,103,94,92,105,107,105,103,101,107,91,106,97,111,108,105,103,98,98,117,110,91,105,96,105,99,97,94,101,104,100,110,100,103,94,101,110,97,104,107,82,99,90,99,100,105,108,109,100,102,99,103,102,105,102,110,99,103,105,107,117,99,108,105,106,96,101,101,106,98,93,117,100,106,109,100,100,105,90,100,96,76,103,94,102,99,101,92,105,113,106,118,109,102,105,102,91,95,95,112,111,98,110,101,96,89,95,98,95,82,105,91,107,96,94,101,109,108,104,97,102,100,119,87,91,109,102,104,101,104,102,110,99,107,100,95,98,99,109,89,101,84,113,84,92,101,90,111,101,87,97,101,102,111,99,105,97,115,91,88,96,111,105,96,105,107,100,100,106,104,117,99,100,94,109,100,108,108,101,105,95,91,95,102,106,100,102,92,97,109,89,94,102,97,106,93,107,104,120,104,113,90,100,94,104,105,100,101,115,102,104,107,107,100,98,109,105,107,114,91,101,100,97,108,106,94,105,101,109,107,108,129,109,114,104,110,92,106,116,102,103,66,91,89,100,107,91,108,100,103,113,91,100,109,105,105,102,100,111,104,118,104,104,107,101,101,138,96,97,101,106,91,98,117,98,93,113,105,96,108,102,92,112,103,113,109,102,114,93,114,108,112,98,87,76,105,103,102,95,96,94,92,130,98,100,86,98,106,101,95,92,98,104,105,114,98,110,102,119,100,119,79,103,88,105,99,98,95,105,106,95,99,111,99,98,95,122,102,106,108,103,103,106,107,100,105,107,111,114,102,99,112,101,101,103,99,97,99,104,96,112,96,93,102,104,116,121,107,104,109,97,102,109,111,105,93,102,102,107,110,99,100,103,112,117,109,113,96,104,97,110,103,103,108,120,117,98,110,106,98,97,111,97,92,110,106,97,95,100,96,106,95,109,106,101,98,85,106,108,106,92,102,101,97,103,98,101,115,97,109,102,103,91,99,83,101,115,95,95,105,98,98,97,107,106,106,97,105,101,98,98,102,100,99,101,107,109,90,104,105,98,102,104,100,107,100,108,104,98,109,107,95,106,113,99,99,108,111,97,85,109,101,84,101,98,114,90,105,100,87,100,99,106,102,98,107,107,101,95,103,110,94,107,110,105,99,97,110,91,107,95,94,102,100,108,100,100,94,73,100,109,97,99,105,104,103,104,112,100,90,101,102,101,101,101,100,108,102,107,100,94,102,91,105,104,116,106,97,103,106,96,106,93,103,106,100,109,96,108,104,102,102,81,114,96,109,112,95,93,112,100,102,86,97,109,90,109,108,86,94,96,119,95,111,103,90,97,83,109,101,110,86,95,101,106,96,104,105,102,104,104,99,122,114,116,106,108,105,102,103,104,95,100,101,105,97,99,94,108,113,97,76,110,96,103,99,106,120,98,100,91,114,104,108,97,91,99,109,98,108,92,109,103,99,111,107,92,96,113,97,109,91,79,111,109,102,98,129,110,109,91,96,105,114,97,104,105,114,116,109,92,96,113,105,119,100,105,99,97,107,98,108,114,96,102,99,100,104,111,98,111,103,103,108,105,111,95,104,105,121,99,94,100,101,111,103,109,104,121,101,100,122,98,108,107,116,116,107,112,98,89,90,114,93,106,101,95,104,96,101,110,127,93,108,104,88,101,106,105,99,101,99,105,104,103,99,98,107,106,99,102,110,103,103,96,97,96,104,104,104,110,97,101,95,101,113,98,97,103,113,110,96,95,101,120,105,98,100,98,103,107,97,98,104,107,106,94,113,98,96,109,110,100,102,107,106,106,111,111,94,97,130,114,108,85,93,105,110,91,108,93,113,106,94,101,94,106,100,99,95,89,107,109,111,93,104,108,119,116,98,106,102,107,106,102,92,100,112,101,99,106,104,98,104,102,100,98,112,96,92,95,95,105,101,106,92,101,87,106,106,90,103,98,101,111,109,103,106,104,104,113,108,110,87,99,94,106,96,92,100,109,92,104,95,92,105,100,99,117,112,93,100,109,93,114,91,104,79,109,99,105,102,105,105,102,113,93,103,104,110,103,105,105,114,98,103,104,107,98,117,102,103,118,121,133,118,109,114,101,121,106,112,102,129,100,118,114,106,119,102,105,88,90,95,111,102,101,103,96,100,99,98,102,106,121,105,90,109,98,107,104,108,94,103,103,101,100,114,100,119,111,119,112,109,104,98,100,105,106,120,106,106,115,117,95,107,113,106,112,91,111,119,106,100,104,106,100,108,104,109,106,120,110,105,114,91,98,106,100,104,115,114,105,114,110,99,103,124,100,113,107,83,109,102,119,105,117,110,86,100,108,117,89,89,98,106,103,99,108,104,103,88,106,95,103,106,110,123,102,103,103,123,102,108,114,115,108,109,104,91,110,104,122,125,107,91,103,110,94,108,103,109,103,96,84,97,111,99,110,108,109,108,110,107,113,103,104,110,122,109,98,99,80,95,106,103,110,101,105,109,106,105,91,104,104,108,94,100,94,95,109,109,85,105,108,113,122,117,96,113,105,110,103,109,114,126,94,111,100,107,106,122,113,102,109,108,101,119,107,107,100,102,113,104,113,106,110,107,102,99,105,116,116,107,106,108,113,109,106,86,116,101,109,102,110,118,96,98,107,107,99,113,109,98,102,125,95,104,112,98,111,98,108,109,111,115,110,105,99,97,100,110,106,107,92,111,91,108,109,108,94,108,103,111,108,96,100,111,99,112,101,100,94,120,101,105,104,90,104,117,88,105,98,109,108,102,100,95,112,112,111,111,125,100,108,102,104,106,103,101,112,107,111,102,106,103,106,104,106,116,114,98,103,105,105,103,105,117,101,107,99,103,101,105,104,104,106,100,105,99,112,98,106,104,96,106,104,105,99,108,94,106,102,103,101,99,95,102,105,128,100,106,103,109,100,102,100,103,102,101,111,97,95,102,109,92,118,95,113,116,101,112,105,102,101,115,113,106,107,102,108,95,95,87,99,97,107,104,106,99,117,106,106,103,108,101,95,96,115,105,106,105,104,107,109,92,102,103,97,99,121,98,95,112,103,100,102,112,101,99,100,116,107,114,109,105,103,89,93,106,102,105,105,128,103,95,116,100,113,96,108,107,92,96,91,97,96,95,98,104,116,101,98,106,99,104,99,105,92,107,120,98,104,101,95,81,100,101,114,104,95,112,103,104,106,122,109,103,116,104,114,112,92,94,115,120,108,107,109,113,112,99,109,109,116,109,113,111,109,104,100,106,120,100,109,103,110,120,115,107,115,106,115,102,100,114,96,102,114,102,110,96,100,106,106,103,110,104,112,111,105,96,100,103,103,106,106,104,99,107,103,101,109,110,102,117,106,101,110,104,104,98,107,98,115,125,102,103,98,102,95,102,112,93,102,108,112,95,77,109,110,100,105,114,106,107,114,100,101,105,108,101,99,91,109,100,107,107,105,96,114,108,125,95,109,101,105,101,106,107,101,101,101,114,97,101,88,109,116,110,113,121,114,98,104,102,114,116,108,114,104,102,104,100,92,109,106,103,104,106,118,98,98,99,110,91,107,95,111,107,104,107,105,96,100,113,111,112,115,87,102,99,100,112,103,104,106,101,105,107,103,112,108,103,115,111,107,103,112,110,102,116,91,100,90,123,92,91,108,105,107,110,95,111,68,111,95,104,94,112,103,99,109,96,91,103,117,109,103,97,108,101,94,107,111,132,101,104,97,110,101,110,106,117,103,106,114,101,94,102,103,99,92,116,105,106,99,113,109,108,108,122,108,106,104,103,103,97,112,112,102,99,111,106,88,103,96,100,107,106,94,95,107,108,101,109,109,105,110,98,103,112,110,99,100,104,114,112,105,111,116,99,102,95,100,107,80,104,95,106,111,99,98,111,104,100,98,106,77,99,104,107,109,103,109,100,108,108,99,103,101,102,101,99,109,102,102,103,111,111,98,107,102,102,107,96,102,96,75,88,101,107,96,100,101,112,112,99,109,100,123,97,107,112,98,105,97,99,96,109,97,98,100,99,101,101,104,92,105,96,94,112,96,116,95,117,104,101,110,109,113,117,103,105,113,105,104,105,112,117,122,105,96,102,108,111,102,100,102,124,101,122,94,93,117,101,102,96,106,86,102,113,102,116,109,98,111,106,100,91,115,108,108,101,112,106,111,106,91,104,106,107,102,101,93,98,104,98,93,106,95,100,97,105,95,102,112,99,111,108,113,106,97,113,108,103,96,99,101,102,109,108,102,97,105,88,91,105,105,96,91,96,108,115,98,100,98,114,102,105,110,106,110,97,96,109,122,98,94,104,101,103,95,99,104,104,110,92,103,108,101,96,98,110,102,100,113,103,102,125,107,110,109,87,108,105,113,101,93,111,85,106,131,107,98,100,102,104,95,110,106,104,95,111,98,109,95,104,105,115,99,101,99,110,100,96,121,99,104,102,112,104,102,123,101,105,85,120,101,102,104,101,88,100,108,95,93,98,102,103,104,99,108,94,108,108,112,100,100,84,111,96,91,113,108,104,99,103,100,104,101,94,112,108,112,85,106,96,105,91,98,98,102,101,92,103,111,98,103,113,102,110,91,102,99,105,94,106,110,108,91,106,112, +624.71478,109,104,114,113,100,103,115,117,95,117,95,88,104,115,100,99,97,111,110,94,95,109,104,100,107,91,107,102,142,101,96,105,108,100,114,91,98,102,96,102,96,97,100,87,93,107,100,83,103,99,115,103,105,119,107,89,96,104,97,97,87,94,81,100,103,102,86,116,90,95,112,103,103,108,95,107,100,101,112,98,102,105,106,96,93,75,108,103,98,112,99,104,102,109,108,96,95,94,97,106,105,104,100,98,87,111,101,98,106,98,101,99,99,114,107,102,95,99,114,109,100,100,108,113,103,101,115,103,112,105,98,105,90,106,101,107,94,98,117,109,105,96,100,106,106,94,113,95,101,107,105,119,103,104,86,108,108,98,111,102,104,105,104,107,98,90,101,100,109,95,95,96,100,101,91,100,112,94,109,93,109,102,102,97,99,93,102,86,110,99,102,109,109,103,105,108,127,81,107,106,101,99,102,96,92,100,111,107,104,113,94,106,94,97,100,109,106,116,88,103,99,115,98,110,102,97,114,99,114,97,90,99,107,105,114,111,109,100,108,101,107,109,92,97,103,108,109,97,112,111,102,108,95,108,99,108,97,95,91,95,103,112,97,98,115,110,102,104,102,107,93,101,110,103,102,105,107,98,100,101,87,102,97,109,93,96,97,98,103,104,110,98,113,117,108,103,101,109,101,91,109,105,110,103,91,107,113,105,93,104,101,100,103,131,101,95,102,97,104,106,79,104,88,110,106,102,104,109,109,112,100,92,104,93,107,101,110,103,99,88,92,109,109,116,78,104,121,113,111,94,108,104,108,109,104,99,119,101,106,112,88,112,96,102,103,91,105,99,117,106,111,105,98,108,110,97,105,104,112,106,105,109,107,104,94,97,98,114,105,96,115,93,97,103,104,100,109,92,113,94,109,88,104,99,104,99,99,122,95,105,92,110,104,109,105,93,105,95,104,103,103,98,100,104,107,109,92,91,94,112,112,110,105,101,106,100,118,103,100,100,106,99,100,104,97,86,112,105,104,109,101,111,99,106,100,102,100,98,115,87,102,120,112,110,109,109,110,110,92,102,118,103,102,105,106,94,103,120,121,107,104,109,103,90,110,109,104,98,102,91,99,107,100,106,94,105,96,108,114,105,95,66,105,113,103,114,98,99,115,99,108,110,109,111,105,105,106,103,99,102,106,95,110,104,103,104,103,113,101,92,106,112,97,105,96,105,106,99,96,101,104,117,103,107,111,106,95,113,104,116,113,108,102,109,112,112,108,79,102,101,104,104,92,106,112,104,116,112,110,107,93,104,100,99,106,103,104,90,118,107,104,109,111,109,107,108,111,83,104,91,98,105,114,98,113,103,97,108,95,112,113,108,113,95,105,101,101,103,96,109,118,110,106,104,101,110,105,97,106,96,106,118,96,107,109,113,109,113,97,107,101,94,104,114,103,105,107,98,111,95,108,99,91,101,113,99,106,99,110,86,91,113,96,94,92,111,104,106,104,97,104,110,109,91,101,100,121,107,109,108,104,99,104,109,96,100,106,113,108,101,109,109,98,98,95,101,93,101,111,107,103,110,100,105,109,104,92,105,119,102,100,99,108,102,105,113,107,113,107,113,102,107,110,110,84,98,105,109,99,107,104,102,103,110,104,108,97,110,93,109,116,106,98,102,100,102,76,59,104,101,101,97,118,84,102,109,110,91,91,105,111,108,103,99,104,104,96,116,101,96,103,106,88,95,83,106,107,116,114,98,126,99,106,109,105,110,101,104,86,99,103,105,106,116,109,107,99,102,96,106,123,101,93,116,99,110,110,100,103,111,95,107,110,103,115,102,101,121,106,97,107,93,104,106,102,102,108,112,113,105,113,107,98,112,113,92,91,106,103,99,113,105,106,108,110,92,102,112,87,104,97,112,105,99,90,103,95,108,73,98,104,98,91,101,98,102,108,114,104,112,102,97,106,108,105,99,105,106,105,117,104,105,91,105,95,98,142,104,87,108,102,100,114,101,116,105,107,118,104,96,103,117,97,90,92,109,114,110,102,107,99,105,106,113,92,103,105,102,101,92,105,101,101,109,107,95,99,104,114,83,94,98,102,112,100,113,97,105,112,100,98,106,97,104,113,107,95,104,100,115,120,106,129,99,103,99,108,133,109,108,98,111,108,108,103,100,101,97,95,107,117,122,103,94,107,109,113,103,105,102,89,84,107,89,103,92,108,98,100,100,99,102,94,105,106,91,102,93,94,109,107,98,112,110,105,106,110,94,97,97,105,112,108,116,111,104,101,105,98,108,95,103,99,102,105,97,107,98,94,93,113,102,104,107,99,102,101,100,103,104,108,94,111,102,96,92,100,112,107,110,102,105,109,106,112,113,112,110,117,118,96,94,108,108,103,91,110,103,128,98,108,101,94,100,110,108,103,101,111,108,103,110,118,111,102,103,102,102,105,95,121,100,105,98,101,91,108,103,130,103,119,109,106,98,114,86,117,94,77,103,91,80,121,98,95,102,106,99,106,108,108,115,111,111,105,101,88,101,101,108,90,113,107,103,105,102,96,110,103,109,101,103,109,109,103,109,102,99,95,104,94,97,108,120,92,90,85,101,115,88,90,101,111,94,92,98,103,106,103,80,107,96,115,101,106,110,100,113,101,91,99,115,112,96,103,93,103,99,102,93,112,104,103,90,100,110,109,109,102,107,91,114,104,110,109,97,91,98,76,101,82,102,112,105,108,109,103,108,106,105,117,106,105,103,115,99,114,135,89,88,107,102,100,114,94,109,74,106,107,111,104,104,88,109,104,87,118,103,100,109,105,110,103,91,112,94,102,105,99,112,113,98,103,99,102,105,106,95,107,116,114,109,93,106,102,89,103,110,91,104,119,122,112,114,107,100,90,100,87,120,100,102,101,105,124,110,92,96,112,101,108,107,102,95,101,110,113,105,105,102,109,103,80,104,92,94,103,104,96,113,102,103,102,101,88,99,103,104,105,101,110,97,99,102,112,105,107,106,120,101,91,100,101,102,112,89,102,108,94,105,108,104,110,101,105,94,102,106,96,86,95,101,99,104,100,92,107,107,102,106,107,102,100,111,119,100,98,96,118,92,101,118,103,110,107,99,113,109,99,108,102,97,104,110,94,95,105,106,109,108,101,103,104,96,94,101,105,87,123,121,103,87,107,108,107,108,97,103,106,105,89,97,105,114,109,98,110,100,101,109,110,98,99,96,109,91,107,95,102,102,99,112,105,113,101,106,98,95,100,121,101,93,95,98,100,105,98,105,98,109,102,91,101,113,102,87,104,102,109,94,99,107,98,118,103,107,105,95,102,101,107,98,100,104,113,99,104,103,102,93,97,106,105,106,100,102,107,117,100,106,104,107,89,108,105,104,90,100,103,106,72,99,106,106,106,93,97,103,93,112,100,103,106,96,101,108,96,100,119,95,98,106,103,111,98,111,96,113,91,102,104,109,102,105,105,104,109,107,94,108,94,106,101,111,98,98,101,114,111,92,112,110,100,109,112,105,101,103,98,104,88,102,107,101,118,96,90,100,107,111,108,106,96,105,101,113,88,89,95,104,91,121,100,105,112,116,112,103,104,101,107,104,113,100,103,100,109,103,110,111,109,104,112,99,106,96,112,107,100,95,93,106,113,112,98,99,100,113,117,105,107,125,106,98,92,117,101,106,100,113,102,106,108,101,105,109,103,109,109,99,95,104,105,100,109,112,118,114,107,109,81,95,95,101,94,103,101,112,98,112,99,111,104,103,120,98,104,89,106,117,97,103,106,109,106,111,102,108,103,106,114,79,118,80,109,106,104,93,99,126,96,118,97,93,101,92,120,94,84,103,95,103,100,106,106,117,109,96,105,99,104,98,106,94,103,100,95,103,100,99,104,95,98,118,106,93,109,105,101,107,108,107,119,108,105,111,104,97,119,100,106,104,104,111,101,96,101,106,92,103,119,95,103,108,116,98,104,102,110,108,97,105,90,104,104,89,99,105,95,121,111,109,101,106,114,98,119,95,107,103,110,100,109,109,105,106,109,109,111,110,110,88,99,107,96,105,106,100,107,103,106,107,101,106,108,109,99,109,90,100,99,101,112,116,98,101,87,105,103,104,111,105,108,111,103,96,91,101,111,113,108,110,94,98,108,113,104,101,103,98,106,111,107,118,104,106,98,110,103,100,107,108,98,99,117,119,95,100,100,110,109,108,98,100,91,93,110,111,105,101,102,98,95,101,100,106,96,98,93,119,124,95,115,108,109,87,81,112,97,113,99,98,104,106,113,102,77,98,102,107,101,110,99,96,113,111,96,100,84,111,108,95,115,101,98,104,98,105,100,105,98,111,108,103,112,111,101,104,105,103,104,107,104,100,100,100,120,114,99,105,99,101,104,100,106,101,108,99,98,106,98,99,101,102,94,101,109,89,107,106,97,110,119,100,102,105,105,110,117,99,99,96,91,112,112,85,94,99,107,102,97,98,97,109,128,96,102,105,101,95,107,100,111,101,102,98,104,110,103,103,116,94,97,102,103,120,94,108,100,98,102,95,109,103,102,105,105,102,96,88,103,97,99,115,107,91,104,100,99,100,99,106,107,106,116,98,94,102,95,96,105,102,102,102,111,103,98,102,109,106,108,103,101,102,94,99,110,100,110,97,119,104,122,108,110,84,107,111,100,121,117,94,116,111,101,94,125,99,104,101,91,96,108,94,100,88,100,105,118,92,92,100,102,105,104,100,117,100,102,106,87,104,94,89,98,109,95,90,78,103,98,100,105,92,104,103,104,109,100,99,92,97,109,101,109,113,111,95,97,108,101,96,97,117,68,104,97,119,141,94,102,101,115,106,103,100,104,102,92,117,117,110,87,90,107,98,103,106,102,87, +624.8559,103,105,85,90,99,105,111,107,93,109,86,102,108,103,111,106,97,90,104,96,103,108,95,111,105,98,101,95,94,117,99,103,104,85,95,95,105,96,100,92,115,96,88,108,97,67,99,96,96,108,115,100,98,118,85,96,104,104,102,99,103,113,100,109,110,104,111,110,93,97,106,117,92,116,95,116,94,109,87,108,114,92,108,103,91,88,107,88,115,99,112,121,98,106,104,105,107,114,105,95,94,101,92,104,107,105,98,107,121,102,106,93,94,94,99,98,85,102,103,99,91,112,113,107,112,115,131,100,102,108,101,101,101,111,103,113,105,94,104,116,106,101,99,73,110,108,106,94,109,110,105,105,99,106,97,113,108,110,105,106,95,90,109,122,112,101,97,111,108,97,115,106,106,112,112,93,109,113,104,110,103,110,99,104,96,99,102,96,107,86,95,107,98,110,100,90,102,106,102,107,107,101,103,120,89,123,95,105,114,100,106,108,102,109,100,97,93,112,106,106,115,98,124,116,110,117,110,104,99,113,109,97,104,100,107,106,103,102,89,99,97,105,117,103,107,104,94,103,122,107,95,99,101,98,109,109,99,95,98,103,109,103,100,98,99,93,107,96,101,111,100,96,108,104,104,105,98,109,116,96,102,108,96,98,87,110,86,108,128,109,94,101,102,107,113,108,103,104,105,96,103,103,111,106,102,104,103,111,102,102,100,114,104,68,95,118,101,112,98,97,98,105,124,109,100,104,109,98,112,107,107,106,108,115,80,101,104,112,106,105,118,99,101,100,96,100,104,102,108,105,106,97,105,110,105,114,109,112,82,105,100,107,105,91,98,97,104,107,112,101,116,113,105,106,95,108,106,105,101,113,100,112,107,90,101,109,104,114,105,90,108,95,107,103,97,97,102,102,106,113,104,96,97,93,70,91,105,111,98,111,104,99,97,105,103,96,102,105,105,109,91,77,102,98,87,104,103,98,102,109,101,106,97,95,102,99,99,112,108,92,107,103,112,118,97,96,114,96,103,112,101,107,96,118,106,110,99,104,116,109,99,109,109,108,105,109,114,95,101,112,101,108,80,92,100,97,109,83,102,115,106,98,106,105,108,102,104,112,94,99,105,107,92,102,106,104,102,95,115,99,107,108,87,117,102,99,96,105,108,84,107,81,100,113,106,109,102,108,100,101,101,101,106,100,105,101,110,97,113,109,102,112,101,96,110,110,114,94,102,111,84,96,103,103,113,104,104,97,125,88,101,104,104,104,107,104,101,99,106,93,96,98,103,113,100,109,115,98,86,98,92,88,88,111,102,90,104,106,98,106,99,97,102,93,106,106,111,108,104,102,109,100,99,103,112,107,120,100,91,109,100,98,87,109,93,90,99,106,107,95,105,102,92,111,108,103,101,99,110,104,102,97,100,96,99,96,111,108,105,97,102,97,107,113,103,112,110,100,100,97,101,102,109,98,106,106,106,103,119,104,108,113,107,106,102,108,117,106,110,101,117,113,110,109,97,103,111,86,105,109,113,103,105,104,99,114,105,105,106,95,110,106,101,99,100,100,98,110,107,110,108,107,102,116,117,102,94,98,97,100,95,92,114,109,107,111,103,105,97,109,100,101,107,111,100,102,102,102,104,93,106,103,95,117,108,104,96,113,105,103,105,105,96,103,102,111,104,107,110,101,106,96,100,106,103,103,99,112,101,106,95,108,107,97,101,98,117,113,112,111,92,108,100,109,86,96,96,92,112,88,88,92,106,107,107,98,108,107,105,111,105,100,107,115,102,114,99,101,107,116,95,107,98,104,92,80,92,90,98,121,114,105,103,90,110,107,93,96,112,101,118,92,103,104,103,112,104,115,95,90,132,101,104,108,102,113,99,121,111,103,115,107,107,101,96,105,106,104,106,102,104,94,104,96,99,114,103,94,105,105,91,89,101,95,94,104,108,124,104,101,103,104,107,98,97,91,108,98,107,117,91,103,95,110,91,101,101,98,108,100,109,104,96,115,101,106,100,102,109,108,111,102,111,105,103,101,112,104,96,97,114,108,118,99,116,99,102,117,95,105,103,108,109,91,101,100,97,107,87,101,103,104,112,101,110,95,98,108,113,107,102,101,99,127,86,92,88,96,116,96,112,109,106,102,108,103,99,121,93,100,118,95,113,105,107,100,113,121,98,107,106,102,98,106,107,102,98,103,104,120,99,105,94,95,104,103,102,106,115,102,104,99,116,101,90,102,107,103,91,109,88,111,98,94,98,107,113,104,94,102,113,110,120,81,105,105,98,99,97,113,104,113,108,107,100,104,105,112,90,104,111,110,109,95,81,101,101,112,120,111,110,94,104,103,104,102,97,118,108,102,116,121,125,116,107,115,112,98,102,110,117,77,98,115,113,103,110,107,107,106,99,116,74,117,95,109,94,113,91,113,101,112,96,103,104,99,103,107,94,110,111,119,107,114,107,109,116,104,121,98,100,130,106,95,103,103,95,102,106,101,101,105,116,105,91,111,95,104,117,114,105,105,96,102,98,103,101,99,115,110,112,88,108,110,102,95,95,116,99,117,111,114,92,96,111,110,109,111,102,101,95,106,101,102,122,106,117,118,109,95,114,98,102,105,107,107,105,100,93,101,104,112,102,96,110,118,104,93,98,106,94,98,109,103,109,103,103,99,109,101,114,120,96,100,107,106,128,115,100,100,100,90,92,105,107,95,106,100,98,107,104,113,104,94,103,108,101,102,99,101,93,99,108,107,119,113,104,113,100,100,114,117,99,95,87,116,100,104,112,103,100,113,109,119,109,98,113,108,115,96,100,104,108,117,101,105,97,103,110,104,117,101,106,107,106,100,101,109,107,116,99,105,98,117,116,98,100,105,103,100,101,107,111,123,100,103,109,96,107,115,122,94,107,102,114,108,94,100,112,101,106,107,108,108,94,107,97,105,109,109,101,109,108,102,101,99,99,102,99,99,100,94,104,104,95,109,110,102,94,96,105,106,102,106,117,108,102,107,109,106,100,105,97,102,113,105,109,102,89,98,100,106,111,102,100,100,115,86,123,98,102,105,95,101,99,96,100,102,108,113,105,119,105,103,103,114,99,99,99,96,111,109,108,92,113,116,115,116,115,101,96,90,107,110,107,113,96,110,113,117,98,106,99,114,97,111,92,94,111,102,107,93,100,95,103,105,103,95,98,104,103,113,101,113,105,93,104,100,89,100,106,98,94,93,61,100,106,96,107,99,99,107,112,102,117,112,105,110,103,96,108,109,103,93,105,103,100,97,103,105,105,103,96,107,101,101,112,106,100,106,111,112,105,103,111,114,107,121,106,103,99,109,95,95,102,107,111,98,99,105,103,116,101,109,88,115,113,106,101,104,104,109,91,115,102,93,105,100,108,117,105,107,92,113,100,99,98,103,107,116,98,105,99,104,105,105,100,107,98,113,96,95,102,102,101,108,105,108,106,100,107,107,104,113,100,103,102,107,111,101,98,108,104,106,104,78,112,100,111,105,112,108,104,112,100,101,109,106,102,96,95,101,101,103,100,105,101,101,113,110,94,99,115,113,99,102,111,91,97,95,103,105,101,108,95,111,101,101,109,102,112,101,103,111,113,97,100,120,116,112,86,107,86,101,105,106,102,99,106,109,98,106,99,110,101,95,106,107,103,99,107,110,114,111,103,110,108,102,110,105,114,87,104,103,117,116,105,98,107,96,102,101,98,96,111,100,113,100,102,117,95,100,107,103,101,103,108,107,111,115,102,107,111,98,96,100,110,101,102,111,109,102,99,100,100,99,104,113,109,117,105,94,112,105,104,106,94,110,94,118,100,106,102,101,112,104,113,105,104,104,98,94,108,127,96,105,100,107,108,99,104,93,105,95,96,100,101,111,107,107,108,124,116,113,112,99,103,103,115,96,102,97,98,109,99,98,84,123,103,92,105,108,100,108,98,105,107,101,103,101,105,106,104,112,101,97,112,102,99,110,113,112,103,108,106,100,96,99,107,115,94,105,91,95,104,102,110,94,105,113,112,100,96,107,104,112,98,103,115,99,118,114,103,99,104,106,103,83,107,119,106,112,92,106,105,108,99,94,111,109,91,107,105,108,104,103,106,101,79,98,103,102,102,129,98,111,113,96,115,99,107,102,104,101,113,108,104,98,101,71,115,110,117,106,105,109,99,110,104,112,114,104,106,102,106,115,104,108,106,111,103,96,109,102,93,101,113,117,104,97,99,128,117,109,102,102,105,107,105,102,110,104,98,92,104,108,109,98,99,104,99,106,112,96,112,98,108,115,102,106,97,103,111,103,114,104,101,94,106,101,96,84,94,102,92,110,109,113,87,104,108,101,115,110,99,102,109,102,100,98,103,98,109,110,97,98,107,111,107,100,96,101,85,98,94,105,85,106,109,110,108,111,99,112,98,102,92,104,110,107,127,118,107,109,113,96,103,102,108,99,103,92,99,94,114,92,107,107,113,99,92,115,95,109,108,101,95,117,95,104,101,91,96,108,100,111,95,120,110,109,107,100,105,100,112,109,105,97,105,130,106,98,110,102,100,103,108,141,109,94,99,117,104,96,110,100,109,116,109,115,108,111,114,110,94,116,111,104,98,98,99,98,102,97,111,113,110,105,117,104,83,80,111,106,105,95,109,103,103,86,113,102,105,110,99,97,106,109,101,97,123,113,115,99,102,116,112,108,104,84,99,94,101,120,101,103,110,103,107,103,110,108,107,83,100,111,90,107,107,101,106,99,96,110,102,94,105,95,112,121,106,114,94,91,102,109,93,73,97,110,117,95,106,101,96,98,98,100,108,100,121,107,102,102,89,99,107,109,110,101,108,104,104,113,109,100,106,112,111,104,121,115,93,98,102,92,106,102,90,92, +624.99701,91,96,102,104,98,101,107,109,101,108,112,102,106,102,96,97,114,116,117,111,106,98,105,74,115,114,100,96,113,110,121,103,94,111,103,108,91,102,102,113,106,115,109,96,98,108,106,103,117,94,100,103,101,109,96,99,102,105,106,102,88,107,110,98,96,104,76,96,105,107,96,122,108,111,105,98,100,117,103,116,97,87,77,108,110,96,112,98,108,109,117,105,103,104,99,104,98,106,112,107,87,112,96,105,78,100,90,101,98,87,116,103,99,106,99,108,120,102,94,118,99,106,106,110,104,111,109,106,116,111,98,102,100,110,118,105,82,88,97,99,99,116,99,93,95,101,99,97,118,107,116,119,103,114,106,105,112,112,98,93,95,101,102,127,106,107,106,103,98,99,115,101,100,100,108,109,86,104,109,110,116,116,94,105,99,107,84,97,105,103,101,114,105,101,104,90,98,106,112,104,102,125,101,106,98,99,108,104,108,103,102,111,96,110,112,96,102,105,89,88,108,104,91,99,118,113,103,98,102,116,98,101,100,92,99,101,105,104,117,105,102,100,108,108,103,100,102,98,104,102,108,99,102,88,105,103,122,100,96,105,98,100,94,118,88,105,118,97,106,99,109,104,113,98,115,99,96,103,93,100,116,108,103,98,98,100,109,111,110,119,99,105,109,105,112,109,115,100,101,106,103,102,111,106,96,115,107,112,94,108,111,114,92,101,107,102,103,108,106,105,108,105,99,120,106,93,106,90,106,103,118,101,126,108,100,100,100,101,98,95,107,113,117,91,101,122,110,102,112,109,105,121,90,90,106,90,106,108,132,98,115,101,111,105,111,95,111,100,95,88,108,114,100,103,96,102,105,98,113,105,107,107,90,109,104,107,93,105,101,95,103,107,92,112,111,102,108,103,99,106,99,102,108,97,107,107,100,108,105,93,98,100,98,97,110,92,106,115,105,105,107,105,100,116,98,102,99,101,94,113,92,106,105,104,97,96,102,103,109,101,104,108,113,105,108,103,98,100,103,98,103,96,109,106,115,99,99,93,110,103,102,115,100,104,115,111,98,99,112,103,99,109,103,97,104,102,90,100,107,104,106,106,106,111,94,108,99,114,110,111,118,73,108,103,99,98,113,99,110,117,116,102,87,103,107,104,107,104,109,102,104,102,88,112,119,121,98,91,101,93,101,106,111,101,111,103,104,100,78,112,102,107,109,95,105,95,102,111,110,104,99,106,112,95,102,98,98,82,106,100,108,104,106,107,99,107,103,112,102,106,104,104,99,116,110,110,108,109,100,103,111,110,96,105,105,119,90,106,106,107,112,102,101,94,97,112,100,99,95,80,105,105,103,99,100,124,102,113,100,111,105,105,103,113,110,104,101,106,100,95,102,105,103,112,113,103,108,108,93,87,109,104,102,100,107,104,133,107,109,109,105,112,116,114,109,94,104,104,110,108,99,104,106,115,97,101,104,91,110,108,91,98,103,106,103,120,121,103,102,105,104,106,107,103,90,103,99,111,106,108,118,119,93,97,107,104,102,101,109,96,106,99,120,104,95,108,83,109,96,111,98,102,105,104,99,95,104,111,114,105,109,113,94,98,109,108,104,112,117,116,95,104,84,73,99,108,107,81,106,111,108,99,98,113,98,98,107,112,96,102,118,107,91,102,108,104,99,100,106,100,111,90,110,103,115,98,99,103,110,113,106,110,102,102,103,101,108,98,109,119,129,107,100,110,103,102,108,98,98,88,112,101,115,92,104,96,111,107,97,105,100,100,107,107,112,111,109,115,92,99,103,103,103,95,104,112,93,102,105,108,106,106,98,106,95,108,113,102,106,103,121,110,101,67,113,103,120,113,103,98,88,109,113,111,114,105,106,107,109,95,87,113,103,116,96,110,103,104,110,111,92,113,104,90,114,97,109,97,108,100,104,107,82,105,95,112,113,111,103,95,107,108,107,100,100,104,101,112,96,93,97,95,112,96,94,115,91,96,99,98,92,106,107,113,90,104,97,104,101,102,91,103,108,130,88,104,104,112,99,104,106,99,109,95,98,104,108,112,99,96,116,104,97,104,113,103,96,106,109,105,116,103,100,99,94,110,95,107,107,107,98,113,107,106,97,102,119,108,106,112,103,99,97,93,103,103,104,101,101,104,92,99,117,109,94,100,115,111,91,113,105,103,128,106,103,111,98,101,110,113,99,115,102,105,94,106,110,97,115,95,104,98,102,104,99,112,100,104,104,87,106,104,121,101,100,109,108,98,112,117,107,108,100,116,107,111,104,88,80,103,95,106,101,118,100,103,117,115,104,102,102,92,104,102,114,115,110,80,108,94,104,107,106,108,110,96,110,118,121,115,113,112,113,109,115,111,115,111,112,119,125,102,108,115,92,104,99,106,110,98,124,98,102,80,107,104,112,109,100,99,100,118,94,107,116,113,108,99,106,102,105,113,97,120,113,96,107,106,120,103,108,115,99,98,95,100,92,100,105,105,91,103,86,104,95,107,94,110,102,97,100,117,101,93,103,100,110,129,107,105,98,102,104,109,99,92,105,78,115,119,110,113,111,105,112,99,98,101,107,105,105,97,108,105,95,102,101,91,107,109,107,100,110,109,102,102,101,124,95,117,101,94,110,100,103,118,96,101,100,98,101,94,112,101,100,111,113,111,109,104,100,104,105,99,100,98,108,112,106,99,99,96,113,100,106,109,102,93,111,99,105,94,108,106,115,121,103,100,102,101,104,96,109,110,103,103,108,108,107,106,98,107,107,106,98,106,83,98,114,99,98,122,94,117,108,106,109,108,102,98,72,96,99,104,109,105,109,104,94,117,97,119,106,105,106,85,107,107,106,105,111,99,124,106,112,106,107,104,110,98,105,101,95,109,112,108,97,97,102,106,113,108,106,102,114,109,113,98,109,112,104,102,108,111,102,106,108,105,122,122,128,101,108,112,101,122,107,106,100,108,105,92,97,87,113,100,106,112,113,120,115,99,102,104,106,103,112,108,104,107,107,109,116,103,115,103,110,99,112,114,110,103,108,98,102,87,100,103,113,113,111,102,100,86,108,105,125,113,101,106,109,136,107,105,110,106,107,113,99,96,100,102,91,115,106,102,91,104,105,97,102,96,97,105,113,102,105,103,96,106,105,102,104,117,116,110,104,103,108,102,110,106,99,105,106,104,110,101,102,98,99,109,118,98,104,99,112,105,92,98,109,91,92,100,103,88,100,108,108,97,101,102,110,106,101,93,103,100,115,95,109,99,102,112,98,105,105,84,114,117,106,112,114,106,107,107,103,104,110,107,108,121,112,109,112,114,95,101,96,114,103,114,100,102,94,100,104,97,113,113,92,107,102,106,94,106,104,96,97,97,99,109,113,109,113,98,105,99,106,99,98,94,96,104,113,107,98,101,108,102,98,111,103,85,65,102,106,111,100,110,110,92,102,103,95,101,109,109,106,101,109,106,113,99,106,103,107,97,115,95,103,99,98,114,104,115,114,116,106,107,105,105,81,112,112,102,107,108,109,103,99,107,111,101,99,108,99,102,98,110,100,103,110,99,106,116,107,103,104,100,95,110,102,106,100,99,100,110,101,116,102,107,120,87,100,93,94,107,92,112,99,103,104,102,97,104,111,97,97,102,100,102,105,102,104,109,94,106,114,104,111,109,102,99,115,102,105,102,114,104,102,94,104,101,103,105,108,105,112,101,99,105,88,102,107,105,105,103,97,112,111,109,107,105,98,106,106,99,106,100,117,98,105,117,103,101,120,101,113,106,117,111,93,105,99,97,108,106,98,105,102,102,99,92,95,101,107,100,98,99,96,96,99,111,87,110,110,106,120,100,98,95,98,108,91,102,102,103,102,102,102,102,106,91,107,98,107,114,106,109,101,110,107,122,105,102,117,94,104,106,94,99,105,109,97,102,100,99,97,104,105,113,94,105,106,102,102,104,91,107,93,104,105,120,107,94,104,84,101,98,110,99,99,102,111,108,100,91,92,112,124,100,84,91,90,90,98,100,96,102,107,106,97,87,103,99,102,117,104,99,105,98,95,96,104,113,106,101,109,98,115,102,111,107,112,106,103,111,99,107,106,109,98,103,109,112,112,106,100,114,106,112,93,101,124,104,100,101,115,108,106,94,89,99,121,98,103,104,99,100,95,116,99,106,91,116,98,107,110,105,116,111,95,79,106,108,102,114,106,94,99,109,104,97,88,112,108,105,114,80,112,101,102,109,95,120,102,103,99,89,107,108,113,105,116,113,99,112,91,106,98,105,124,102,86,87,106,101,102,97,105,95,106,108,103,97,104,91,102,105,115,100,104,60,96,109,113,103,109,107,86,104,106,104,101,90,108,105,103,115,100,108,99,107,100,102,100,103,106,90,103,94,96,94,99,102,95,112,76,117,105,98,107,102,110,107,98,111,112,105,102,98,92,101,102,98,96,98,102,96,95,108,110,112,103,92,103,106,96,109,94,107,98,110,109,113,117,107,108,102,94,96,112,108,100,111,86,121,94,104,102,102,102,96,98,90,102,97,99,95,104,104,112,111,118,115,111,117,107,96,96,107,105,106,107,98,104,127,105,94,98,110,112,121,100,96,107,110,105,109,113,81,111,102,109,111,115,105,108,99,88,88,105,77,111,92,107,104,100,99,117,99,104,120,107,118,105,107,105,99,108,110,92,93,108,115,100,87,96,106,94,97,103,108,91,107,117,92,100,107,106,95,105,107,95,91,111,113,90,103,76,98,98,106,103,92,109,92,115,101,96,98,111,93,103,104,99,98,107,96,106,93,116,111,111,119,106,110,96,108,109,107,109,96,105,116,104,96,100,108,100,107,99,107,86,80,116,87,86,98,115,107,90,100,103,105,95,106,90,95, +625.13812,101,113,104,96,101,106,113,107,98,104,89,91,109,96,100,104,89,105,105,84,110,92,109,114,95,118,119,110,116,104,92,87,113,98,113,106,103,100,96,114,108,101,108,103,108,114,121,109,104,115,107,117,104,101,107,112,95,105,108,109,101,99,110,106,101,120,108,99,96,105,103,107,99,110,105,116,101,106,106,104,112,115,118,120,98,76,118,107,100,114,99,93,103,92,99,86,103,111,101,106,126,103,113,102,94,125,93,124,99,104,97,103,100,100,108,119,107,112,103,78,96,102,106,91,111,111,111,96,101,97,82,104,119,116,106,98,84,95,105,102,100,103,101,99,100,95,98,101,83,99,119,101,117,91,113,113,92,105,105,94,114,112,97,120,102,111,95,102,108,97,114,100,100,106,107,107,94,99,106,103,97,95,110,105,100,97,104,99,95,90,102,116,100,91,104,101,110,96,106,101,114,90,95,108,94,107,96,82,124,109,89,103,106,117,121,104,104,115,94,100,117,99,110,108,113,112,100,104,104,95,96,103,133,109,101,109,104,107,104,100,116,104,112,108,104,96,83,109,104,103,106,107,101,109,94,101,104,108,95,100,106,102,110,121,95,102,104,108,114,113,105,103,104,103,104,105,101,104,107,109,109,104,110,83,116,110,91,113,134,101,103,118,114,106,109,95,109,99,99,105,87,109,104,113,96,108,109,108,100,105,97,105,110,110,111,103,108,104,105,104,94,90,111,106,98,104,113,102,110,111,106,105,100,100,111,96,114,106,109,110,89,102,98,111,114,106,101,111,109,105,79,100,116,102,104,114,103,99,103,107,71,111,104,104,98,102,107,102,101,104,112,102,103,104,111,98,78,104,104,99,103,102,104,107,105,78,110,104,108,96,117,101,97,112,99,106,107,99,89,103,95,108,106,109,99,98,102,95,121,104,96,98,97,97,98,99,111,96,112,113,98,102,110,105,109,104,101,104,104,106,99,97,101,91,117,109,114,112,90,110,106,109,104,118,119,92,91,86,95,116,117,114,109,103,109,95,114,97,109,112,103,104,99,101,105,101,110,110,112,111,111,110,114,106,105,103,108,111,105,113,107,98,112,111,104,113,101,98,99,108,106,113,107,106,113,112,100,115,110,98,106,119,105,107,111,111,89,118,87,116,102,104,112,113,98,98,106,91,94,103,117,99,107,107,107,113,98,105,104,116,105,103,105,103,90,97,92,112,100,101,105,115,106,100,114,113,130,98,107,100,108,112,110,102,103,98,109,92,94,108,105,105,96,103,101,110,108,97,108,108,104,108,109,105,100,96,102,109,106,99,106,105,106,108,103,114,117,105,110,109,118,118,99,103,112,114,83,102,100,99,115,101,114,122,119,108,98,99,109,119,112,92,117,101,107,113,103,106,109,117,98,104,92,109,101,119,98,102,103,96,115,105,95,112,120,112,113,104,102,102,109,109,114,96,105,99,98,103,115,114,107,102,110,93,105,110,103,107,106,110,108,102,107,100,91,90,107,101,107,95,114,103,106,107,109,110,107,107,111,109,100,105,83,100,104,97,100,91,107,112,116,105,108,106,96,107,105,113,98,98,97,108,103,109,98,106,104,98,92,99,108,114,111,98,105,103,111,99,118,96,104,100,109,98,102,107,92,116,115,94,102,110,109,104,103,107,93,72,104,105,111,110,115,108,120,105,112,96,100,111,108,106,117,100,109,102,117,95,103,117,108,114,101,101,95,122,101,97,99,109,105,110,104,107,101,107,103,113,111,96,106,109,101,113,103,104,94,107,107,108,105,114,110,107,107,102,92,113,99,109,117,103,107,95,109,109,123,112,111,105,114,114,99,106,97,101,111,102,107,106,101,105,110,108,99,109,108,99,112,100,108,99,87,109,106,100,99,98,116,97,98,105,114,109,110,108,100,108,99,92,100,108,96,116,109,106,104,117,100,105,105,112,99,115,111,106,97,107,103,102,112,103,100,107,99,99,114,102,97,109,110,98,102,107,97,109,101,105,102,98,103,114,105,110,104,122,121,117,104,114,105,111,81,96,113,112,124,99,113,101,95,110,103,115,110,100,112,104,111,99,115,81,115,115,105,123,102,115,103,109,103,102,109,116,104,98,112,111,119,109,104,93,106,101,107,107,99,106,96,106,113,103,90,103,115,83,115,113,99,112,116,117,121,100,92,102,84,106,92,98,105,111,102,104,99,106,103,100,90,106,106,96,112,94,104,104,102,109,95,104,108,106,104,89,92,100,109,109,107,103,110,101,124,110,101,101,97,101,98,113,92,94,99,122,104,102,109,101,97,97,106,119,111,104,110,117,115,102,97,113,103,88,113,102,98,109,109,105,111,114,119,106,120,107,116,103,137,102,116,123,98,114,114,131,104,99,118,103,104,104,109,100,101,107,109,108,102,93,102,105,99,113,71,105,98,91,105,107,108,101,105,103,105,107,91,108,90,94,112,109,103,104,105,101,117,104,122,110,102,106,97,91,106,96,105,102,107,109,105,108,108,107,108,108,109,85,103,102,109,105,112,108,97,101,127,107,106,103,102,116,100,67,109,94,79,113,105,102,99,95,102,103,95,110,100,106,98,103,103,103,105,94,121,100,99,113,101,91,105,100,99,104,122,113,111,108,97,102,101,105,105,93,123,119,109,109,103,99,110,99,114,101,104,113,116,103,115,100,96,115,96,106,116,105,95,109,91,96,106,105,95,109,110,109,110,111,90,108,103,103,104,106,108,110,110,111,113,116,109,101,106,110,102,111,113,111,92,112,114,98,103,100,97,110,103,110,103,105,100,104,121,113,105,90,94,111,99,105,117,108,109,107,120,108,112,92,104,94,106,107,105,92,96,113,110,107,98,106,108,110,109,116,100,115,101,97,100,100,102,106,106,107,112,106,109,111,96,105,95,101,99,108,95,98,104,106,109,112,105,107,130,100,100,121,108,97,105,104,97,105,99,101,105,101,108,101,101,110,114,107,108,96,100,110,104,100,101,100,106,102,97,105,89,105,120,109,93,99,103,108,103,121,112,95,113,96,111,107,110,76,115,104,103,106,104,100,103,106,101,111,107,107,112,112,113,104,115,106,99,93,108,117,100,120,94,91,107,97,117,102,108,103,93,121,109,100,92,103,95,94,106,100,101,90,101,104,117,105,109,105,108,99,100,105,104,91,104,103,92,97,111,81,125,99,107,109,95,100,101,105,108,97,108,93,103,86,104,104,107,102,99,108,103,108,104,113,109,104,108,105,113,106,122,100,107,108,99,105,113,106,111,96,118,112,100,117,117,96,104,101,92,114,105,108,104,107,94,95,99,100,99,104,122,104,102,120,100,104,110,102,98,113,102,107,102,114,106,104,102,102,107,93,108,101,99,97,97,104,106,105,92,112,102,102,102,102,106,87,96,106,101,110,102,104,85,91,109,110,114,113,110,112,103,117,103,106,110,109,99,112,105,109,107,105,100,126,109,100,102,107,103,105,83,113,112,101,107,94,79,104,104,110,107,112,120,80,103,109,109,111,98,111,110,120,117,116,105,119,96,106,114,107,95,115,120,108,87,96,101,95,101,106,106,117,106,98,113,113,104,106,114,101,104,103,96,99,106,109,101,105,103,106,99,108,99,108,117,100,94,104,109,106,113,109,97,115,102,107,103,106,100,119,106,112,100,109,104,97,98,113,101,110,106,112,97,103,109,91,101,96,97,98,93,98,119,108,104,115,108,101,101,88,113,103,105,111,123,100,113,80,89,109,98,119,100,94,110,83,113,112,103,108,90,116,106,88,97,100,104,116,108,100,106,92,107,105,105,101,102,109,97,105,103,124,105,93,108,111,103,105,79,82,102,101,103,106,109,99,96,98,107,113,112,110,106,108,99,104,90,106,96,101,133,109,95,102,99,98,120,107,93,102,115,103,89,107,104,103,105,105,99,107,98,121,96,105,100,113,87,100,108,110,93,102,87,110,108,103,116,95,109,102,100,99,117,104,107,92,99,113,107,107,110,96,112,103,106,105,103,104,93,101,103,103,109,111,105,108,108,114,122,101,105,102,103,104,102,100,91,104,114,116,96,111,116,125,102,104,109,100,99,99,102,94,106,107,97,82,112,88,107,96,104,91,106,100,102,100,115,121,98,98,105,97,100,109,103,96,102,97,113,105,116,119,109,108,118,96,102,105,99,92,93,104,109,100,108,105,109,104,106,100,95,106,105,103,102,91,107,109,92,91,108,99,102,108,95,115,107,106,94,105,106,102,103,100,107,80,121,95,109,115,102,104,105,108,109,98,107,116,109,108,106,104,113,105,97,103,98,101,108,96,100,90,114,104,112,100,106,106,104,94,108,99,79,92,105,107,139,108,105,104,96,115,101,107,109,104,109,103,107,94,106,106,109,107,103,115,105,98,99,95,90,100,101,97,94,92,102,110,118,107,123,106,108,97,106,108,112,106,115,99,93,104,111,101,101,98,104,96,106,105,105,110,102,111,108,91,84,97,79,92,104,103,104,96,107,112,102,105,112,109,109,104,90,106,103,103,116,92,106,113,116,110,107,102,101,129,97,91,76,102,106,115,95,107,112,103,100,94,96,110,106,107,115,108,115,102,90,105,99,95,111,102,106,104,104,98,95,103,112,101,103,103,99,105,115,76,97,94,111,107,105,105,100,104,98,107,116,105,105,103,98,102,103,102,109,98,89,97,113,89,103,111,92,102,101,103,120,96,117,100,95,102,101,90,113,101,110,95,96,98,99,102,113,101,108,106,100,102,106,101,109,94,95,102,98,105,96,99,101,106,110,100,101,94,103,106,90,102,112,111,107,106,108,108,99,103,104,108,103,110,120,105,103,95,98,107,109,112,118,87,104,101,115,116,114,104,102,97, +625.27924,115,106,98,105,95,89,128,111,120,102,94,106,95,126,93,96,113,106,107,104,123,98,92,105,104,98,98,97,88,83,123,89,99,97,113,99,97,94,98,112,102,96,100,110,95,109,105,115,109,113,111,136,100,104,98,108,105,105,98,97,106,108,106,110,102,91,121,98,96,112,99,99,99,120,108,103,98,89,107,87,101,107,112,101,98,87,110,81,103,97,101,115,96,91,101,95,114,105,110,108,95,94,98,101,98,107,102,96,117,99,91,108,99,106,119,133,78,103,123,106,108,94,118,115,98,104,112,110,106,112,98,118,90,106,98,101,117,102,84,96,108,110,105,95,108,91,112,104,101,105,102,113,108,97,138,107,93,98,99,100,96,104,97,104,110,91,113,100,110,105,104,101,101,101,117,119,106,94,108,103,118,110,111,111,92,104,103,95,100,100,104,107,109,111,97,101,102,102,95,106,109,101,101,102,102,101,109,99,113,109,109,115,90,103,106,103,102,104,96,113,110,110,111,119,103,112,111,98,110,95,106,105,115,98,104,100,100,102,92,104,98,103,110,99,100,114,105,103,107,105,111,128,105,102,104,96,106,117,106,104,98,101,98,101,94,100,94,121,106,107,104,106,113,99,107,84,110,91,100,98,106,111,99,107,98,101,88,104,102,93,120,92,109,111,102,108,109,102,95,101,109,89,84,111,95,121,105,101,110,111,93,113,103,104,115,109,131,101,113,116,103,101,104,107,110,104,99,102,118,103,102,88,106,97,98,113,103,89,101,107,88,108,97,116,104,95,114,103,103,99,99,104,98,122,114,114,105,111,86,99,112,67,103,96,103,96,109,99,103,97,113,106,102,100,86,90,112,102,88,105,101,100,94,113,110,99,108,105,105,99,104,96,94,105,97,82,107,92,100,101,101,102,109,99,105,100,103,126,104,97,98,101,113,112,98,98,99,99,96,96,107,104,111,99,101,102,85,96,106,105,102,97,96,110,99,79,94,92,101,105,97,98,108,100,90,104,94,109,108,106,96,105,112,75,104,97,107,99,89,101,109,109,106,114,112,109,113,104,105,101,109,100,104,101,78,106,94,106,105,106,117,114,114,100,99,110,104,107,113,103,98,123,98,96,88,102,104,107,106,101,103,110,97,108,104,102,108,103,95,98,109,107,105,107,92,100,86,100,104,107,107,93,97,99,109,121,99,110,105,107,105,96,107,100,85,108,106,85,93,106,91,107,97,103,89,113,107,106,103,121,107,106,105,103,96,96,100,99,98,106,94,102,103,103,111,110,99,103,103,105,84,102,102,111,101,113,94,105,98,97,102,113,96,98,107,126,98,131,104,110,108,104,88,105,115,111,102,108,113,108,116,101,111,97,103,101,105,103,102,97,95,112,113,99,113,101,123,105,99,105,108,114,107,110,112,97,106,101,112,107,112,102,98,99,81,102,106,95,99,105,124,102,97,103,100,96,102,99,101,109,107,106,103,103,101,105,104,116,98,100,106,102,104,107,107,96,101,88,101,110,94,106,120,108,100,105,121,101,116,106,106,123,118,86,100,102,92,107,106,100,98,83,101,99,104,100,99,104,95,105,103,97,95,103,104,99,101,103,108,86,100,99,106,96,96,110,97,103,106,105,109,104,111,97,94,95,104,101,110,110,110,101,115,101,102,82,94,105,106,102,117,102,97,95,108,99,97,100,110,104,110,102,99,98,92,109,110,89,104,109,97,104,110,99,88,106,90,102,115,98,106,113,104,98,118,114,107,89,92,100,115,103,108,100,90,105,113,108,102,116,105,99,111,109,102,94,88,102,104,110,102,113,93,95,101,110,116,110,113,96,104,126,100,92,112,119,106,120,101,98,99,104,97,104,105,97,110,96,117,112,99,104,113,102,113,98,112,105,102,104,99,105,111,111,102,100,96,101,98,107,102,99,102,119,104,105,108,100,111,116,104,91,104,94,106,101,96,94,98,104,91,108,105,102,99,100,108,103,113,99,115,98,99,115,107,106,103,110,105,102,103,104,106,105,83,98,107,98,104,95,114,129,108,100,95,103,99,110,127,90,106,101,100,106,104,100,97,98,100,100,122,108,102,105,105,133,103,101,97,113,99,104,92,111,100,110,116,102,107,98,107,104,108,100,97,131,107,117,103,107,106,100,101,101,110,94,105,105,101,101,99,113,91,110,99,88,102,109,90,104,97,100,113,104,95,98,115,103,108,95,103,98,110,113,103,87,98,113,99,99,98,103,108,95,95,97,98,98,102,107,107,106,111,114,103,100,102,114,99,103,99,110,111,98,106,104,112,92,102,103,102,117,105,106,102,105,113,99,102,103,106,109,111,121,122,98,110,117,111,99,115,110,104,95,117,104,131,120,119,108,124,110,103,111,97,107,107,113,102,106,106,114,103,113,105,101,95,113,109,104,102,105,119,108,109,107,102,113,102,99,104,105,88,103,116,97,112,105,111,104,99,105,108,90,96,97,97,109,108,115,80,101,104,99,96,113,67,106,99,104,90,101,103,115,112,98,104,107,108,109,112,107,102,116,108,104,108,99,109,121,114,79,109,97,102,111,117,111,97,104,97,103,98,97,103,95,116,99,104,93,86,117,117,115,95,113,104,104,104,102,103,97,99,109,105,103,101,101,102,110,99,100,111,113,110,100,108,116,108,114,113,109,107,92,107,99,122,126,106,99,99,101,108,110,95,113,106,95,112,104,109,102,110,102,113,109,105,98,103,95,98,117,115,90,105,111,107,121,112,91,109,105,105,94,113,91,94,106,110,100,103,108,98,121,106,94,105,99,113,105,104,106,107,90,97,109,96,99,113,110,95,113,109,96,102,102,116,108,103,117,104,99,100,121,95,99,105,107,99,118,104,119,99,100,102,106,107,107,88,107,108,99,95,103,106,113,113,113,113,103,102,107,95,109,107,110,118,97,97,112,109,112,102,104,112,103,94,117,98,107,105,106,99,100,100,98,113,102,94,99,105,108,105,102,106,101,106,103,113,94,108,100,99,99,112,96,98,101,113,100,92,104,117,91,109,108,113,107,100,98,105,113,105,104,100,89,109,97,107,106,105,105,121,100,113,102,104,93,108,116,110,113,95,106,110,106,108,102,97,99,102,102,101,96,86,99,101,101,97,106,100,121,117,98,110,106,106,92,94,122,114,109,111,108,103,103,106,103,113,102,104,104,96,99,102,93,103,77,106,91,104,96,97,103,104,100,114,106,110,92,107,118,106,110,111,91,97,109,106,104,97,99,99,111,109,111,101,97,108,108,106,92,110,102,105,100,103,91,106,108,106,109,95,97,100,103,95,100,108,91,101,99,98,94,94,109,101,103,120,109,113,108,102,110,102,99,102,101,96,104,105,100,108,100,109,101,108,89,114,97,90,97,109,109,104,109,106,107,102,117,97,102,97,99,101,99,102,109,98,106,110,116,95,97,96,104,92,105,99,103,100,100,101,108,102,101,101,114,86,100,100,100,116,111,99,108,115,92,103,97,105,104,106,104,102,109,105,102,120,107,100,108,113,108,105,95,96,102,102,106,102,92,106,99,103,110,97,120,105,94,111,107,99,105,110,99,95,108,100,114,99,101,100,104,106,88,101,108,105,102,104,104,107,110,114,106,115,100,115,86,99,106,135,121,105,105,110,107,104,87,120,108,107,104,109,98,111,109,95,98,113,110,102,108,115,92,92,108,114,96,96,104,102,110,93,112,108,101,104,95,88,105,112,104,102,98,98,116,99,102,102,105,105,89,101,84,92,116,109,110,96,113,104,100,96,103,103,106,110,100,113,102,107,108,100,108,105,91,97,96,101,106,100,102,99,104,103,105,112,102,108,101,113,102,100,102,82,103,102,129,102,94,94,107,104,95,105,100,71,95,100,99,100,108,100,94,112,94,98,91,99,97,100,97,111,106,99,101,92,103,93,112,97,105,99,101,106,95,102,98,111,106,96,99,101,98,101,104,104,105,100,111,100,95,103,112,94,107,102,99,112,106,101,107,105,105,102,109,106,99,105,95,92,107,104,111,124,97,95,138,105,101,100,87,102,104,103,112,98,105,109,103,108,101,102,111,109,109,112,98,99,97,102,101,104,111,103,95,102,109,96,102,103,130,108,87,95,100,110,102,94,106,91,92,98,98,107,102,95,98,108,112,101,117,104,115,99,93,106,97,103,120,107,113,95,102,106,100,109,102,110,104,105,96,113,98,107,76,115,100,113,101,117,105,99,100,110,108,107,95,101,103,105,101,95,101,88,88,95,106,110,94,111,117,121,102,99,108,97,99,97,108,95,99,109,91,91,104,90,101,109,107,109,98,101,93,124,96,104,113,93,110,102,115,97,105,98,96,101,110,113,96,111,104,109,104,110,105,99,105,111,98,102,104,96,113,96,99,103,102,103,114,96,106,110,101,93,101,103,93,106,105,109,100,106,87,95,98,95,113,95,102,72,114,103,104,116,102,83,104,95,101,105,98,109,90,101,105,106,110,91,94,99,106,98,100,101,106,97,72,90,107,106,98,93,110,106,104,101,108,102,103,107,105,96,109,82,108,96,112,98,97,108,102,105,110,91,106,104,98,105,94,111,106,103,93,108,110,112,104,106,121,109,118,108,116,105,97,107,103,102,114,112,106,98,105,115,109,98,92,105,96,94,107,104,108,104,105,108,88,109,96,124,96,102,108,99,96,102,99,94,107,96,102,118,101,96,91,102,101,105,96,88,104,104,88,89,97,108,104,104,97,110,90,104,102,108,109,97,100,95,101,101,103,101,103,97,117,101,106,107,100,103,112,94,110,113,106,83,122,104,89,105,109,93,96,110,94,113,109,102,101,111,86,101,100,96,100,105,97,125,108,90,98,100,89,110,102,102,105, +625.42035,105,101,103,96,100,90,107,106,96,94,95,132,99,100,97,80,99,104,96,98,102,121,103,131,101,103,104,111,96,74,97,95,113,108,108,105,103,109,104,109,98,108,94,112,102,116,121,106,102,112,136,99,109,113,100,112,98,104,105,93,92,96,103,94,103,117,99,100,104,106,98,97,103,101,113,104,90,110,110,123,99,98,104,99,102,110,102,91,96,115,102,99,96,118,98,112,102,92,102,103,108,98,91,102,100,113,92,105,99,118,95,94,94,95,106,104,95,109,117,111,112,116,102,123,105,91,110,100,106,111,102,106,90,109,135,108,101,95,105,108,96,103,98,90,109,105,105,101,101,100,103,110,120,91,103,100,104,104,94,101,97,111,111,97,101,102,96,103,122,109,100,100,102,106,106,109,102,108,104,109,128,105,106,104,93,105,99,109,102,95,103,104,100,110,111,99,110,101,115,121,102,84,86,96,100,98,111,109,104,107,99,106,108,104,107,105,105,112,108,119,108,109,98,103,95,110,99,107,103,95,121,102,96,114,108,99,105,97,110,99,99,99,114,102,113,100,104,99,111,108,112,111,106,100,107,106,88,101,89,102,100,102,104,104,100,112,125,105,106,94,95,107,118,116,112,109,106,109,101,106,113,117,116,110,103,105,96,101,104,105,110,100,107,98,87,108,112,108,117,112,101,106,108,109,99,106,71,106,99,84,91,87,95,103,102,100,102,105,99,104,97,113,100,107,104,117,106,92,114,110,127,107,105,108,100,107,117,110,110,103,104,109,115,105,112,97,99,106,111,100,112,100,103,104,109,108,121,91,99,105,106,101,96,108,101,106,103,104,117,96,98,91,104,101,95,102,115,102,93,107,104,109,98,98,102,101,109,127,100,95,98,98,90,120,107,100,103,99,101,113,108,100,112,97,95,101,109,110,106,100,102,105,105,115,109,108,109,120,112,102,101,102,112,104,107,106,92,91,100,101,97,104,101,106,101,98,100,96,103,101,101,94,99,110,96,101,114,105,111,98,88,108,100,96,109,101,110,96,95,102,103,97,100,99,104,109,114,100,106,103,96,110,101,100,89,96,96,99,112,105,99,96,107,99,94,101,112,111,105,109,103,98,117,101,105,109,81,97,107,100,108,114,110,98,106,98,103,99,104,98,116,110,97,94,105,106,95,114,108,93,109,103,120,93,106,108,93,110,113,111,100,102,75,96,105,101,101,96,102,117,101,102,101,102,103,105,108,106,107,109,101,107,95,99,100,107,98,103,102,91,97,102,101,103,97,104,99,105,101,99,134,101,98,100,98,98,131,100,106,109,98,106,101,102,108,94,106,97,105,100,95,96,95,102,104,98,90,108,107,102,102,106,103,98,99,113,96,103,112,115,102,108,115,110,103,100,106,119,105,107,107,112,98,100,102,107,100,102,100,110,113,105,109,106,97,102,106,121,105,97,103,102,99,103,102,102,110,97,116,105,90,106,96,102,117,102,104,109,102,108,98,114,105,84,91,99,111,103,109,102,104,108,95,92,109,115,102,102,120,109,99,124,106,94,109,98,92,109,104,113,101,95,102,111,110,103,111,100,107,90,103,90,116,111,101,102,104,114,99,109,113,96,102,96,91,119,88,101,105,106,106,111,105,106,99,88,107,111,96,118,103,98,105,104,108,99,103,92,107,114,111,121,105,102,107,105,106,109,105,112,103,108,107,73,112,102,110,99,96,100,101,104,89,100,100,94,93,106,102,112,105,108,111,91,103,121,107,98,97,86,120,109,108,100,102,99,100,101,100,109,100,101,95,104,103,112,94,102,107,101,108,105,98,115,94,101,113,108,93,109,117,97,103,111,105,110,114,94,104,104,107,113,112,99,110,110,110,97,109,96,98,102,108,106,104,90,113,97,88,100,99,99,95,87,104,95,101,94,103,96,118,100,110,105,94,106,106,104,107,113,96,103,99,105,108,107,108,112,99,108,109,120,105,97,113,105,107,101,99,112,99,111,99,96,93,111,110,109,104,103,94,111,109,102,99,99,105,117,95,108,115,109,106,106,93,107,98,99,91,95,101,111,96,101,88,101,107,99,95,108,105,103,98,118,94,101,109,101,112,100,104,111,110,111,96,111,103,90,97,104,101,85,102,100,97,115,107,107,102,109,102,107,115,94,103,109,114,104,99,111,106,115,102,100,90,95,86,113,100,102,104,105,99,105,102,98,99,110,109,109,99,111,116,104,102,106,107,110,106,108,106,107,103,100,104,103,96,88,103,105,116,86,105,94,109,112,106,105,109,109,91,106,111,105,107,105,109,98,102,108,101,112,102,105,95,105,103,104,109,116,111,107,104,108,100,105,118,113,93,124,116,114,111,108,123,118,108,121,117,114,112,106,105,117,109,106,104,113,100,112,101,111,125,107,104,94,105,114,94,107,103,125,88,101,115,121,107,103,109,107,122,97,87,100,107,116,96,91,108,107,109,102,96,103,102,111,114,115,111,102,106,103,99,108,95,103,94,99,106,117,99,99,106,95,115,101,121,112,101,88,96,115,108,109,108,117,105,101,116,98,106,116,105,99,99,102,95,104,106,102,111,104,96,115,113,103,112,106,112,102,111,110,108,89,106,95,106,114,112,108,103,92,112,97,108,116,97,108,101,114,100,101,112,102,107,90,117,107,106,101,106,102,103,106,98,117,106,108,111,106,112,101,113,112,110,99,113,98,112,102,101,106,99,102,99,116,111,106,116,99,104,117,103,113,98,115,106,109,99,100,112,121,102,104,102,107,110,89,104,111,100,103,108,101,113,105,97,108,115,117,108,100,120,87,102,98,104,119,104,144,107,101,98,120,88,107,106,107,111,104,112,99,111,111,129,109,113,116,101,113,110,114,99,108,113,116,113,109,104,129,105,112,106,94,103,116,96,107,124,103,105,108,107,103,113,117,98,94,103,106,113,113,106,112,107,98,114,106,103,105,95,101,127,104,103,115,100,95,107,102,106,106,87,89,112,111,108,108,119,98,112,105,109,112,104,102,101,116,114,108,95,113,99,104,87,92,102,99,113,107,115,108,107,83,106,114,112,105,103,111,106,106,93,103,107,110,99,103,103,100,102,108,107,112,106,103,101,112,107,105,63,102,91,97,104,99,104,101,111,112,118,95,98,98,107,115,103,102,92,101,105,101,98,109,111,110,109,95,117,99,94,99,88,96,104,102,98,104,101,107,116,104,96,106,91,105,105,95,115,102,99,104,107,122,101,101,103,110,104,107,92,91,113,107,107,102,103,104,107,117,99,111,113,99,107,115,108,115,124,101,103,104,99,113,118,102,104,99,107,112,112,106,104,112,100,135,121,111,110,118,106,112,99,95,114,107,80,112,103,111,102,104,103,106,112,94,107,115,109,98,99,106,110,106,92,85,104,107,110,105,105,103,111,100,102,100,99,103,98,104,102,110,108,110,96,109,98,103,96,99,108,87,112,111,106,108,115,116,111,99,113,106,104,112,112,99,113,104,100,100,127,101,99,100,113,103,119,107,104,106,105,105,115,104,101,106,101,115,100,112,114,94,116,104,103,95,112,103,98,93,96,95,102,106,102,101,99,110,99,100,92,119,103,89,101,98,117,112,102,123,98,98,110,81,108,96,113,102,109,96,109,111,116,99,99,108,120,112,105,106,112,112,103,115,100,106,102,103,107,102,96,98,99,112,106,107,107,101,103,103,92,101,104,103,99,99,107,105,106,109,102,95,100,105,95,106,115,75,109,106,109,105,96,97,98,103,109,95,107,97,88,104,103,102,108,109,98,96,96,109,111,93,110,98,134,125,105,102,98,106,97,104,102,102,105,104,117,113,108,94,111,111,129,116,98,109,101,102,87,85,95,110,98,90,107,104,109,101,101,88,110,102,94,119,113,104,113,99,111,102,114,113,103,103,102,94,98,113,108,104,101,100,105,109,102,119,117,115,106,109,111,113,103,125,95,97,105,100,98,103,104,103,102,109,124,103,107,107,109,98,112,105,99,106,104,101,107,104,100,109,96,119,96,112,107,97,96,104,106,103,100,98,102,107,101,99,85,101,105,117,112,105,106,112,102,109,104,113,96,106,108,106,111,106,98,101,109,110,71,111,113,101,98,116,106,104,125,103,106,98,111,105,99,92,112,107,102,112,104,98,103,101,101,114,108,113,102,106,96,100,109,97,99,100,102,103,98,111,90,97,103,113,103,100,94,104,104,101,110,98,96,95,107,117,109,99,89,91,103,113,111,117,106,101,105,107,118,106,101,95,94,104,102,101,119,113,113,109,104,114,107,100,109,109,117,106,107,112,95,100,103,97,103,98,97,103,111,100,88,100,106,107,122,112,103,94,113,124,111,105,93,107,109,121,96,110,105,116,101,93,98,91,100,95,93,105,104,106,114,108,109,104,105,96,99,92,104,108,113,109,103,107,105,124,115,97,103,88,105,108,95,101,102,114,99,106,106,110,102,104,106,87,110,105,102,103,109,102,95,112,108,120,105,108,103,103,113,95,106,109,99,99,96,107,115,115,95,110,119,103,98,100,104,89,92,113,104,104,112,101,95,102,104,111,100,120,103,121,117,117,105,117,108,109,100,106,107,113,112,104,108,109,101,106,113,110,117,104,96,83,108,112,120,109,117,104,117,96,94,109,97,104,108,109,106,113,105,121,109,101,114,109,101,111,105,97,109,104,95,111,104,98,97,139,92,90,92,96,111,106,113,108,109,109,109,118,98,115,73,109,101,101,106,98,95,116,66,91,94,109,113,106,113,103,80,112,93,94,106,112,118,115,106,97,106,96,96,107,100,110,99,105,106,105,91,90,105,111,110,104,104,107,95,97,107,108,104,99,111,108,104,104,99,80,100,119,93,99,100,98, +625.56146,108,78,95,105,107,105,100,90,111,100,89,110,110,76,108,99,75,112,93,103,106,124,97,102,122,118,100,96,116,98,105,107,101,93,95,108,112,91,92,105,91,98,93,120,108,109,107,120,100,105,91,117,96,104,101,109,115,95,111,70,92,108,114,86,83,104,100,114,107,102,106,99,108,108,110,112,102,97,100,95,108,101,95,103,108,98,105,108,107,100,102,125,107,102,101,102,105,101,98,104,101,91,101,93,101,101,102,103,99,95,111,99,98,114,119,115,99,98,105,97,102,105,102,116,97,97,107,109,110,112,100,110,98,125,107,111,97,112,95,101,101,108,97,98,92,117,116,106,97,107,108,109,108,98,102,105,105,101,105,97,92,111,111,110,118,120,116,87,104,90,112,112,98,111,112,112,103,93,108,79,100,99,102,126,107,104,103,86,103,96,108,100,103,100,91,110,110,103,96,105,104,107,106,108,93,101,109,104,97,113,101,100,103,118,105,104,105,110,105,107,118,105,95,95,99,101,101,114,103,118,92,99,111,112,100,114,122,116,106,110,98,115,109,93,105,98,117,105,108,113,103,123,96,104,97,98,87,80,103,102,103,103,102,121,96,104,100,116,89,108,106,100,110,123,101,104,99,90,95,105,103,100,101,102,105,104,88,94,111,112,105,111,127,101,102,109,98,101,94,114,104,96,94,109,104,104,106,116,99,105,99,105,106,105,102,100,99,115,106,99,119,105,102,106,94,99,100,80,114,108,110,95,106,93,98,104,100,89,90,114,103,100,95,102,103,103,100,109,108,96,100,103,110,116,99,104,108,117,102,102,97,101,108,103,103,91,109,98,91,108,119,99,92,106,108,104,106,99,105,111,107,102,101,127,106,108,104,83,98,101,96,101,95,105,101,105,107,106,77,111,103,109,105,96,107,98,113,100,102,106,101,96,99,103,102,101,98,101,107,91,105,104,96,97,115,102,107,92,131,97,102,105,103,107,106,107,98,114,109,113,120,104,111,114,99,107,104,112,95,103,102,108,108,124,112,99,98,110,103,103,106,92,110,109,108,110,101,102,103,102,92,109,108,80,98,114,144,117,103,110,106,104,97,103,102,96,112,107,107,95,113,95,99,97,97,100,101,107,114,103,104,104,101,81,104,101,103,107,105,107,109,115,107,103,99,100,100,108,111,103,91,108,107,109,105,96,104,96,97,93,105,100,103,103,99,86,104,97,92,115,98,102,106,119,106,108,103,114,115,102,108,106,102,98,103,98,101,99,100,97,99,104,98,123,99,108,122,110,99,104,98,88,106,109,98,98,103,101,106,104,89,91,95,95,101,104,112,106,103,105,105,111,102,96,107,109,117,71,111,102,99,98,106,100,121,98,103,109,112,106,102,99,95,102,103,103,114,115,116,107,100,115,107,119,102,100,95,102,104,101,100,110,101,99,103,105,106,116,106,106,115,102,118,118,107,96,100,98,104,100,100,110,101,110,114,112,108,110,114,94,124,104,101,98,103,137,109,92,115,98,106,96,102,109,102,104,87,107,114,94,109,106,115,105,109,101,100,113,103,103,106,106,89,109,98,100,103,99,103,96,105,106,108,104,105,100,105,104,117,96,99,102,100,112,98,106,107,100,108,99,99,100,109,105,96,123,101,101,110,107,105,115,108,109,98,105,105,108,111,110,108,94,104,107,106,109,108,106,102,102,96,108,100,101,106,112,105,102,118,90,100,105,94,95,95,103,93,101,109,96,114,91,104,112,105,129,107,112,110,97,107,110,112,103,110,114,111,106,99,106,100,100,107,107,112,106,106,140,117,94,98,100,103,102,113,102,99,109,86,91,96,108,107,104,110,97,111,102,98,109,100,108,94,80,100,103,117,107,83,117,102,99,106,108,109,100,130,103,106,122,103,100,114,109,104,107,98,106,116,99,113,109,115,97,107,112,117,107,103,112,95,103,105,116,110,114,96,101,117,108,99,107,102,111,104,108,110,97,100,102,116,106,94,117,111,105,99,108,107,96,112,114,94,112,102,93,102,108,104,102,98,108,109,103,97,104,105,105,97,106,107,106,108,102,108,92,101,99,117,113,102,97,119,105,108,104,103,107,104,100,110,122,102,95,91,110,97,105,100,96,112,108,96,113,97,108,99,95,101,103,108,118,105,94,122,109,113,108,109,109,112,111,98,95,103,106,93,96,101,121,106,105,118,111,96,90,104,101,89,101,95,106,108,105,103,118,90,100,99,112,103,76,105,100,111,104,105,110,99,108,116,103,106,101,106,107,106,107,104,102,99,99,108,104,106,109,94,93,102,103,105,115,100,99,103,104,93,107,108,103,109,114,99,97,122,101,117,106,111,108,113,108,109,112,119,110,110,115,109,121,115,115,117,106,103,115,104,91,108,111,102,105,109,113,91,92,104,100,107,103,94,107,95,85,100,104,121,108,98,106,97,105,102,96,111,108,108,101,114,107,120,100,100,105,104,112,102,113,116,108,106,100,109,107,101,108,92,109,93,101,104,117,104,102,95,110,102,110,99,97,80,101,103,95,109,94,105,114,109,104,107,115,108,105,105,102,101,95,102,101,103,104,97,111,104,103,106,105,112,92,110,96,103,95,112,113,103,104,98,107,102,96,111,102,114,104,121,104,102,93,105,108,94,83,101,102,106,113,113,71,107,115,95,106,106,108,116,108,98,111,106,110,113,106,104,109,106,94,104,109,110,117,105,105,97,114,102,104,104,115,106,122,104,98,106,123,102,120,106,98,115,114,96,110,87,128,103,97,112,97,90,113,105,94,107,97,108,95,106,116,109,98,103,102,105,102,113,101,99,121,121,104,103,91,98,104,107,104,102,116,110,111,106,102,117,102,107,104,99,109,104,103,101,106,114,101,104,106,104,117,106,108,111,120,108,107,92,103,97,98,103,109,107,96,100,101,105,101,108,105,100,108,101,104,84,93,117,111,109,104,100,99,105,103,121,112,106,106,101,105,115,109,98,112,105,109,117,102,102,100,80,98,100,103,114,94,96,98,96,105,107,108,106,83,110,98,103,101,107,107,106,109,105,106,112,113,108,100,109,110,122,103,119,84,99,113,107,105,91,107,98,95,98,107,103,96,120,99,117,103,104,94,106,106,106,94,77,110,109,106,103,107,113,104,112,117,111,95,67,106,112,102,95,107,101,119,115,79,104,98,100,101,101,113,104,109,102,111,100,102,112,103,119,103,103,110,109,112,109,87,101,104,103,104,97,102,100,96,107,96,98,113,113,98,106,97,99,106,112,110,109,87,100,107,116,108,101,111,101,110,107,101,128,105,108,112,94,105,102,90,102,98,107,99,108,100,92,99,109,100,99,111,100,92,78,106,92,97,103,107,106,105,96,100,116,110,103,109,112,108,100,101,106,108,112,101,94,94,97,116,100,103,113,99,104,95,97,99,108,106,109,106,122,104,97,117,91,115,111,108,112,101,106,91,119,110,111,104,110,88,104,100,85,110,110,92,101,102,104,108,96,98,106,115,88,102,99,106,116,105,100,103,97,104,105,102,110,115,108,107,113,110,113,109,111,88,116,105,112,91,88,99,98,116,102,114,122,102,88,116,96,110,108,99,100,114,101,110,102,102,87,102,106,107,94,110,106,104,102,110,116,105,106,127,88,107,95,109,92,110,101,115,109,114,93,108,107,107,106,110,113,106,117,120,105,98,113,111,90,99,107,120,106,99,113,109,98,112,101,103,106,101,99,95,100,102,100,107,102,99,100,94,103,104,106,99,102,99,107,83,86,97,103,106,101,101,91,107,100,105,125,108,103,96,92,107,101,94,94,108,103,94,98,97,97,91,117,106,98,105,99,98,100,112,106,117,96,96,95,101,92,91,102,94,105,98,121,114,113,99,101,112,111,120,102,112,88,92,108,101,96,88,107,95,92,100,89,97,108,95,85,105,97,116,108,112,113,107,97,114,88,112,123,126,111,102,98,100,90,103,99,95,99,120,101,99,101,105,112,109,108,113,106,103,103,108,104,92,110,98,104,103,105,102,109,93,104,95,105,93,97,80,115,107,97,102,96,91,97,96,112,108,108,107,100,98,104,108,104,111,107,107,100,106,105,114,99,100,98,98,111,112,102,114,99,96,97,105,103,105,102,99,92,99,107,111,97,100,93,99,96,102,109,97,103,108,104,105,113,109,103,108,103,114,110,96,104,117,110,91,100,100,100,108,101,102,111,99,102,100,109,111,104,94,99,102,107,104,100,106,92,79,98,116,98,107,116,91,99,119,98,101,104,100,99,83,103,104,102,109,103,98,116,94,109,102,108,103,99,101,111,93,106,108,116,105,91,109,105,112,105,105,105,109,99,87,95,116,102,102,114,103,102,112,95,102,112,101,100,95,99,95,92,106,102,102,107,102,109,95,111,107,104,115,110,101,103,104,116,86,97,105,108,103,97,89,103,97,109,93,99,111,103,107,109,104,109,108,106,100,100,112,101,103,94,113,108,106,96,109,101,86,87,99,91,108,92,109,101,75,105,115,103,65,111,93,92,96,113,97,108,91,112,102,115,110,107,115,102,110,81,107,96,103,102,110,102,99,117,98,90,105,99,116,103,111,96,105,91,105,112,107,101,98,100,99,111,111,113,109,118,106,116,97,104,103,113,118,104,97,99,105,115,112,98,94,113,106,90,99,105,108,107,108,106,109,93,111,106,87,96,103,110,119,101,103,108,101,110,99,108,117,109,108,97,107,99,109,95,106,108,110,97,106,109,113,95,102,99,113,108,92,104,111,95,100,81,108,99,99,118,98,108,93,109,117,106,104,89,109,107,104,104,104,98,104,88,125,111,99,110,98,96,99,109,99,99,109,116,95,101,108,100,105,116,97,111,105,104,97, +625.70258,103,116,104,106,94,115,111,90,106,106,109,101,103,99,96,105,80,97,100,95,98,100,101,101,100,107,105,95,105,97,96,93,108,78,106,88,108,96,101,104,101,101,78,98,98,102,85,102,94,107,90,100,104,96,90,91,122,114,100,93,81,91,103,102,117,105,103,103,107,95,110,99,103,104,97,111,90,105,98,117,96,91,102,92,102,87,111,99,110,96,106,92,94,102,101,101,99,94,113,97,95,114,93,101,94,109,97,99,100,89,100,87,94,91,109,86,96,104,105,104,103,106,102,112,107,112,109,102,94,100,103,106,98,112,101,105,104,104,104,94,102,95,101,94,96,107,111,101,91,98,83,117,110,105,95,98,99,95,106,108,96,96,104,103,100,98,89,108,107,104,106,107,94,101,102,152,121,91,103,103,111,103,95,115,100,97,97,101,106,99,100,105,103,94,108,108,118,100,108,124,94,102,98,97,103,95,113,105,98,111,101,90,98,114,104,97,104,99,114,116,119,108,99,100,105,99,109,107,105,112,101,95,106,118,103,104,112,93,106,103,96,96,107,107,103,93,102,95,84,102,98,104,94,97,112,115,90,100,99,106,106,99,107,98,97,103,97,109,93,114,100,96,103,107,114,101,99,97,113,109,99,97,110,105,88,112,105,84,94,104,97,94,109,107,104,99,101,98,101,103,101,106,95,100,100,107,95,114,100,101,105,113,99,112,107,93,97,100,100,91,107,109,105,109,117,91,102,95,110,102,99,100,97,102,95,111,105,101,102,112,90,105,105,104,110,115,100,105,99,93,105,78,116,107,96,95,100,100,92,100,95,107,105,94,104,105,104,109,109,101,105,112,107,92,103,94,101,105,104,84,102,101,99,91,102,96,109,105,105,101,118,93,99,106,103,106,95,99,100,96,110,98,86,80,105,97,104,118,106,101,113,92,109,100,101,99,108,94,98,91,115,106,87,106,108,98,102,100,94,101,97,102,91,97,101,113,121,107,108,100,99,106,97,95,98,112,102,91,101,111,86,109,101,99,104,115,98,103,112,103,104,84,103,93,107,95,103,95,114,99,99,101,100,95,105,113,109,108,106,116,108,105,104,108,98,108,111,108,96,109,99,105,101,99,101,104,96,104,99,94,107,103,99,101,102,107,105,101,113,105,106,99,100,107,100,102,104,90,98,92,104,131,102,103,74,99,116,110,105,100,78,102,100,94,111,124,104,110,102,96,97,106,109,103,103,108,98,102,124,105,105,101,100,104,106,108,109,93,114,112,108,118,97,96,91,95,99,100,107,103,98,100,102,98,110,98,108,94,105,105,95,89,103,101,110,106,102,113,101,118,112,102,115,98,101,103,95,101,100,106,105,98,116,102,92,105,90,104,107,103,110,114,101,110,104,106,102,104,100,117,107,106,107,98,106,117,107,103,109,107,116,105,100,99,95,105,102,105,100,105,109,99,124,100,105,102,102,101,109,115,117,98,106,106,112,106,101,104,99,117,106,102,112,99,97,101,120,96,108,106,107,103,107,102,108,105,89,99,103,77,97,105,103,87,83,106,109,99,98,104,100,107,107,100,102,108,100,98,104,90,100,98,95,116,92,106,118,105,96,108,108,109,106,95,115,115,74,107,105,95,105,97,108,111,93,98,101,109,103,118,96,103,101,102,99,89,96,109,96,106,92,96,104,101,108,96,102,113,104,95,108,113,96,99,105,106,105,92,107,101,99,102,92,90,105,107,79,106,101,99,107,110,95,107,93,100,101,102,101,95,103,108,102,106,87,108,94,100,106,108,107,115,120,103,107,117,94,98,105,109,109,124,102,111,99,108,104,106,113,99,117,113,111,91,109,91,111,102,99,78,111,96,105,99,106,99,110,99,103,106,102,101,113,103,106,106,103,100,107,109,97,99,119,103,99,96,100,106,96,102,103,106,115,104,107,110,110,94,96,105,102,101,92,104,109,104,105,106,108,107,108,106,116,103,109,100,104,100,96,125,96,89,96,107,103,111,99,109,110,104,106,104,108,110,99,113,64,96,101,97,97,105,105,95,104,92,115,101,88,99,111,104,105,105,95,88,109,104,100,98,109,108,91,109,90,87,93,99,106,99,113,105,107,104,106,100,105,91,105,103,108,97,102,98,92,104,108,104,91,103,98,90,104,98,107,75,97,111,88,96,114,105,98,94,97,100,95,101,106,99,101,105,111,95,106,110,100,94,107,107,105,101,97,106,99,98,89,98,103,101,95,100,104,97,103,104,94,109,113,96,109,99,96,103,93,102,107,103,101,105,96,95,99,105,99,99,89,103,131,102,107,103,106,107,93,101,109,102,104,106,108,100,114,98,107,87,99,105,109,121,111,118,100,113,108,114,106,97,116,108,106,113,109,105,104,103,113,108,113,103,100,105,117,103,90,98,97,107,111,81,91,105,102,104,97,124,108,104,104,107,105,95,100,109,112,114,105,99,107,101,108,99,101,97,106,105,99,112,109,106,103,78,107,103,92,113,113,103,109,118,108,112,109,114,108,100,117,95,103,116,102,105,110,104,95,93,113,100,114,94,115,110,108,109,107,114,108,72,98,109,105,99,112,100,106,101,111,100,108,101,117,106,103,118,102,96,115,103,104,106,104,108,114,97,102,115,104,102,108,110,94,92,103,110,113,98,105,113,111,104,103,98,89,107,106,94,113,99,104,107,95,104,102,99,99,107,104,112,99,101,115,92,112,110,107,103,94,75,96,100,106,105,101,113,103,120,102,123,103,117,99,118,102,107,125,100,103,107,92,108,117,108,106,105,112,115,107,118,101,116,110,91,99,91,97,106,107,101,110,102,108,116,109,107,108,104,95,105,86,101,103,107,121,101,118,93,112,111,99,109,106,99,100,117,101,108,101,112,97,101,104,106,106,105,104,99,101,101,108,111,109,110,96,108,105,113,113,94,92,103,98,97,92,110,100,99,107,115,104,108,103,112,114,98,108,109,105,107,108,105,118,102,107,111,114,106,107,100,105,91,117,101,109,104,99,105,119,100,107,103,108,112,99,105,114,116,96,104,117,104,109,102,104,99,103,109,96,116,101,94,103,110,107,101,109,113,100,108,109,99,102,102,112,106,103,100,104,102,100,101,105,102,103,100,106,108,101,102,105,99,103,104,94,106,101,108,108,94,94,112,100,109,97,93,101,104,101,100,97,103,102,104,79,101,103,101,87,98,104,109,112,98,113,99,106,105,108,103,112,102,104,109,70,112,108,103,131,110,95,97,112,104,109,101,94,98,111,102,121,108,107,105,98,100,113,98,103,105,96,107,97,106,104,102,99,99,99,92,101,113,111,79,102,107,109,103,105,108,106,104,91,117,99,100,69,108,108,110,108,102,110,105,111,103,103,91,100,102,116,95,88,91,106,102,90,103,103,90,102,115,107,108,108,106,91,113,103,105,98,103,106,103,94,110,98,113,95,108,102,95,84,95,104,98,107,107,102,100,101,116,108,102,95,107,114,104,113,117,93,94,98,104,112,103,101,101,101,105,103,102,104,109,120,117,100,110,112,110,109,106,99,98,102,95,120,119,84,104,99,92,101,107,105,80,107,123,101,106,89,109,94,110,100,102,115,102,100,111,95,103,110,116,98,99,106,102,102,87,107,113,116,109,100,108,101,98,97,114,116,106,110,117,101,110,109,98,105,107,100,110,101,98,103,103,95,116,108,103,116,86,106,108,102,103,116,107,97,104,105,105,98,85,106,93,112,98,105,101,98,106,109,104,102,104,106,104,115,93,108,93,93,91,116,103,98,100,108,102,117,100,100,88,107,90,112,109,104,102,98,98,91,102,94,95,104,110,98,105,129,105,87,97,80,99,83,107,107,98,107,91,100,79,86,109,105,101,96,93,100,106,99,91,106,102,105,113,101,100,116,99,100,110,108,115,94,110,109,109,115,99,99,110,108,111,102,109,98,98,99,104,97,104,97,109,100,95,93,109,97,103,103,103,105,116,108,105,105,96,92,95,115,105,93,110,103,103,109,99,122,100,94,106,101,103,96,103,109,113,107,104,94,99,98,105,112,99,103,104,96,116,104,104,117,114,88,116,113,102,101,121,110,109,104,95,102,112,104,87,102,109,109,100,109,100,99,103,103,107,105,102,113,93,99,79,110,109,113,100,106,95,104,108,123,106,92,108,91,118,87,109,113,100,81,117,107,104,129,94,104,96,119,102,100,97,94,95,99,108,103,110,98,92,109,101,97,89,91,103,100,117,112,90,105,108,105,104,99,107,95,116,98,109,102,97,108,98,113,105,114,111,96,99,104,120,105,98,113,110,91,102,116,108,109,94,101,88,109,94,110,99,76,119,105,106,101,94,104,107,113,100,111,101,123,105,102,102,107,102,107,100,109,95,87,111,100,104,107,106,122,98,109,99,100,98,99,98,106,111,109,101,111,100,104,96,90,103,100,112,113,79,110,107,102,96,103,95,92,99,107,95,95,91,107,100,106,100,112,110,104,96,99,99,109,103,93,101,105,103,103,93,93,115,75,101,98,102,104,94,105,104,107,105,113,103,104,93,114,99,100,96,99,103,98,104,102,104,100,105,94,105,103,97,107,101,106,111,105,108,104,94,95,108,105,95,97,100,109,102,105,99,94,102,95,105,106,110,97,102,102,104,108,107,98,101,106,97,101,102,113,92,111,92,104,94,108,107,89,118,107,98,99,101,108,100,98,108,105,102,98,105,98,102,109,100,97,118,105,112,113,104,108,103,115,102,112,119,106,106,104,101,125,88,108,89,107,92,103,95,91,99,97,93,99,108,99,110,101,109,91,104,112,100,90,111,96,106,105,101,103,95,111,108,104,103,109,103,109,95,105,106,101,99,130,104,105,109,110,96,109,99, +625.84369,118,114,91,100,101,113,95,94,109,102,101,102,106,99,84,107,95,105,93,100,82,100,99,114,102,111,108,113,101,104,104,97,112,103,124,106,100,106,107,101,112,105,120,99,98,126,123,104,116,100,109,91,114,97,109,94,96,99,122,89,105,109,112,92,77,111,88,94,113,93,94,103,104,100,114,92,102,104,110,92,101,101,79,99,98,99,122,107,109,105,100,99,108,105,101,102,105,95,86,110,106,106,102,103,99,107,98,105,107,100,104,107,106,84,89,89,119,112,100,106,103,106,99,107,109,100,109,98,111,107,102,102,102,126,109,94,111,96,96,97,97,105,92,105,88,104,115,114,103,93,98,88,127,91,101,106,85,105,98,95,105,98,103,102,107,106,100,102,112,96,104,109,110,104,114,109,95,99,112,101,102,105,117,102,105,101,101,79,95,80,107,111,98,101,105,115,102,103,111,109,109,107,108,113,98,94,109,104,112,137,97,103,118,104,111,98,111,111,95,107,114,109,100,105,98,101,105,116,105,101,108,96,101,101,104,105,95,111,114,87,98,100,121,102,104,85,91,109,109,107,102,108,101,105,110,107,98,112,100,105,91,101,122,109,110,109,99,96,105,101,99,96,98,91,107,113,100,109,106,98,106,103,103,102,106,109,108,95,99,111,105,95,104,109,110,98,112,115,98,104,106,114,88,128,96,110,120,100,93,105,103,100,117,112,107,100,103,112,95,114,93,100,98,91,99,109,98,99,105,101,111,104,113,121,109,97,117,113,109,107,113,95,101,98,112,109,101,102,111,101,98,120,109,109,110,104,100,110,116,103,101,100,104,113,111,98,124,104,103,116,103,97,114,106,102,107,105,106,88,102,104,103,107,114,99,97,106,101,103,96,111,93,100,117,114,98,113,108,94,103,110,115,105,103,99,107,104,102,103,105,90,93,115,101,101,103,99,107,125,113,91,95,91,104,102,91,95,105,86,106,100,117,100,100,109,102,121,112,104,103,110,103,101,98,103,108,115,94,107,101,105,115,98,97,94,106,98,109,112,96,115,103,105,103,109,121,120,103,107,102,83,132,109,101,99,113,103,110,102,108,109,106,118,104,106,108,117,99,110,106,110,105,98,91,103,112,101,111,114,99,96,109,130,113,113,109,81,104,98,99,110,96,82,115,110,112,106,116,107,100,108,105,120,113,100,110,110,102,98,106,98,99,112,105,109,108,120,101,95,115,104,99,100,99,92,101,106,114,87,99,101,102,113,112,101,105,103,105,117,97,103,103,101,101,107,94,100,98,99,100,95,97,111,108,98,104,109,100,118,108,104,105,107,100,105,91,108,107,98,97,104,94,100,105,116,113,98,108,103,102,93,112,107,107,100,102,101,99,103,96,121,96,108,108,113,108,104,101,112,95,113,106,121,117,105,110,94,116,105,100,97,106,96,108,99,104,106,108,113,107,100,102,106,84,107,99,104,94,81,99,98,109,101,104,101,109,109,99,109,105,108,108,100,99,107,116,110,94,112,91,99,113,112,94,95,107,103,103,98,110,92,90,121,103,100,102,96,102,113,111,98,108,106,100,105,107,107,101,111,98,105,102,95,101,100,113,106,102,110,110,99,97,113,96,104,103,98,109,106,108,112,113,101,108,102,111,110,115,109,103,109,90,105,111,97,99,118,100,110,98,107,113,100,99,107,113,113,105,106,110,102,99,108,100,100,84,101,116,109,100,108,107,107,104,95,105,99,102,101,107,125,83,116,104,110,113,101,104,114,111,108,92,106,112,106,106,108,100,103,90,112,109,100,103,104,117,109,81,117,108,117,110,94,108,90,105,122,106,112,111,103,104,102,108,101,91,118,98,101,107,113,112,108,114,103,106,123,98,97,103,103,112,93,102,109,103,108,98,96,100,104,106,108,98,99,111,100,97,104,94,101,103,92,102,104,99,95,100,95,97,95,96,107,69,96,109,94,116,107,105,98,101,110,111,103,106,104,101,100,99,101,91,109,101,108,111,110,105,104,105,104,106,99,110,103,105,99,106,102,102,103,111,101,100,102,100,97,109,118,91,108,113,114,116,108,100,92,98,110,104,113,105,106,100,106,98,99,95,102,102,102,111,102,104,96,105,91,108,102,115,96,106,89,98,108,112,91,106,101,104,94,107,89,121,128,100,103,107,103,116,112,116,112,104,106,99,115,114,103,100,100,102,107,100,109,101,111,110,97,96,99,111,103,100,116,95,102,116,113,113,92,115,103,108,94,109,98,94,96,121,104,108,100,105,110,102,106,112,111,100,117,115,116,101,95,112,98,95,95,95,129,113,110,100,106,99,97,112,106,115,107,106,109,102,117,108,114,122,106,113,90,119,104,127,126,123,110,115,108,122,115,118,106,100,104,107,109,117,104,89,106,108,103,110,106,105,125,119,99,106,98,117,101,106,114,99,102,108,109,88,116,106,110,102,103,112,93,112,100,102,119,99,101,95,106,115,112,101,110,104,106,96,105,111,106,103,107,94,120,96,114,113,110,110,101,102,94,106,100,106,109,100,85,98,113,94,114,114,116,103,100,110,115,101,108,112,110,98,105,109,98,100,98,96,97,96,106,106,95,93,105,101,107,105,105,100,100,120,104,99,108,107,92,118,113,102,97,87,103,106,94,95,99,101,103,103,112,116,111,106,102,106,101,105,110,106,117,110,101,112,94,101,114,109,104,111,91,98,109,91,107,121,117,116,103,100,108,104,102,96,112,102,74,103,112,102,105,103,99,104,111,109,106,96,116,103,96,102,104,107,98,89,92,109,108,100,112,125,99,106,100,113,112,101,104,105,98,103,97,108,108,100,108,111,97,88,90,109,109,106,102,95,108,102,129,98,96,98,103,120,106,109,102,120,105,104,84,123,101,90,97,106,101,106,97,104,102,105,102,95,107,102,114,101,116,81,101,101,110,102,104,101,110,107,106,97,106,104,97,106,107,98,109,93,116,108,98,106,104,103,99,106,103,117,108,93,120,99,103,93,90,103,103,108,99,108,116,95,103,103,83,87,88,99,104,106,104,98,101,99,106,114,100,99,102,119,117,110,109,105,105,114,115,76,98,104,102,105,107,108,110,100,93,112,103,99,96,96,100,111,105,105,103,101,83,98,98,101,92,87,98,99,105,101,69,106,100,100,112,113,98,106,83,106,115,113,97,115,116,103,115,97,114,96,89,87,105,112,107,99,107,100,87,115,92,116,108,97,112,110,114,102,99,109,104,102,105,101,99,95,106,104,106,118,102,112,103,100,114,100,105,96,104,113,71,102,98,103,107,106,113,102,106,114,99,101,91,102,102,99,99,109,104,109,99,101,100,96,116,100,101,116,108,103,107,102,103,133,103,83,117,103,97,100,103,94,101,105,116,116,99,95,116,110,108,98,101,112,100,99,101,99,97,108,95,104,96,101,108,108,113,100,96,94,99,99,104,111,106,100,108,94,107,90,87,62,98,106,102,116,99,101,99,108,98,115,110,103,92,113,97,100,105,97,112,112,110,103,101,98,102,112,123,106,97,109,98,113,95,109,115,89,116,98,99,94,89,100,98,104,102,103,110,90,107,94,100,100,115,111,102,106,112,106,108,111,109,108,100,107,96,109,104,102,102,90,101,93,117,100,102,116,103,112,100,91,103,105,101,109,119,109,98,113,103,95,113,101,111,96,105,104,111,104,102,90,107,134,114,101,83,107,95,99,110,117,107,108,89,108,111,98,93,95,99,101,98,94,103,111,103,105,113,103,101,110,111,104,117,104,92,110,111,105,93,85,107,109,111,101,112,98,109,100,95,106,104,109,91,102,99,95,103,111,105,98,108,104,108,102,96,99,98,99,118,111,100,107,105,118,98,108,102,100,105,106,106,92,91,104,97,101,108,106,108,105,94,107,99,104,106,105,106,95,98,104,98,108,105,104,101,105,81,114,102,112,98,107,78,98,107,110,102,102,97,113,121,120,87,110,103,110,103,104,106,105,108,102,101,106,111,110,104,115,99,101,100,98,114,114,111,101,96,95,112,102,100,101,111,104,100,115,110,101,92,103,95,120,105,98,114,99,94,119,111,116,108,110,96,102,110,93,95,113,99,103,89,119,97,109,113,94,102,108,118,75,97,107,109,103,104,107,98,97,103,71,100,105,90,96,107,111,92,100,104,92,105,125,98,113,107,98,91,110,104,98,108,105,107,100,113,98,102,103,111,114,101,98,113,93,94,75,94,108,75,99,109,109,117,105,96,96,107,91,100,102,109,100,99,112,100,108,95,102,93,105,113,109,95,102,94,114,120,104,105,140,132,108,85,112,102,103,98,108,98,98,115,99,105,98,105,96,101,100,118,104,113,96,104,121,101,109,100,90,100,105,97,90,103,78,94,99,102,100,94,95,95,101,98,102,115,103,110,104,104,99,100,90,106,112,102,104,97,124,98,102,94,100,111,84,107,96,100,99,103,105,92,87,91,103,106,113,105,107,96,113,94,97,105,107,90,103,109,99,103,107,98,106,102,102,96,104,97,109,99,105,107,89,105,99,106,99,117,97,111,100,105,118,100,101,100,108,97,96,102,98,105,107,104,108,98,100,109,103,111,111,109,105,116,95,104,116,106,101,101,95,123,109,105,101,98,94,104,114,113,98,100,103,102,103,105,103,95,126,105,112,110,109,113,99,113,113,105,97,100,80,108,103,107,95,96,96,100,106,109,113,108,108,102,101,111,88,110,101,99,102,88,115,101,110,99,106,106,105,91,99,107,117,110,94,120,106,104,104,99,107,118,102,98,99,117,105,104,120,102,118,104,103,106,89,105,107,102,102,105,108,98,111,104,110,101,97,106,97,98,94,96,87,119,116,94,102,105,124,107,112,105,118,107,104, +625.9848,102,102,110,95,107,116,100,103,109,108,130,108,95,95,96,103,104,111,99,107,110,98,103,116,133,108,104,96,91,107,117,109,105,100,110,110,109,85,87,95,113,104,90,97,100,102,114,104,117,109,103,105,104,94,120,99,72,122,108,101,109,100,101,99,104,113,101,106,110,106,110,108,100,99,142,112,112,101,110,107,102,117,109,103,99,92,114,112,92,121,105,105,93,97,104,99,96,97,104,103,103,100,117,97,99,110,111,116,98,100,107,99,106,109,99,115,101,103,102,108,103,96,117,105,117,91,103,102,107,117,86,111,102,112,93,105,85,97,97,98,105,104,108,99,102,108,110,102,97,104,118,84,107,106,105,107,102,90,97,105,102,103,100,102,109,99,101,102,110,103,107,116,88,129,104,109,99,110,103,106,96,94,115,109,112,105,85,101,117,105,86,109,103,96,95,98,116,95,112,105,106,93,110,110,111,104,98,108,108,110,95,112,94,94,99,112,104,109,109,98,106,109,104,100,100,109,90,101,115,94,100,104,104,105,107,116,115,103,101,114,99,105,113,101,101,117,99,102,103,104,108,105,110,104,94,99,95,116,100,96,103,120,109,97,107,100,104,102,101,75,108,105,106,95,109,125,108,102,94,103,103,107,108,100,112,108,110,87,125,92,105,99,111,93,104,94,102,99,105,120,101,113,115,97,103,106,102,127,106,104,100,112,104,103,99,100,102,90,100,94,111,94,103,98,106,96,99,100,109,107,119,95,111,109,104,110,107,97,111,113,110,110,101,93,126,108,112,107,113,111,111,102,105,105,102,108,124,106,101,104,107,97,113,111,100,94,107,104,117,97,114,103,110,110,108,110,112,111,98,109,99,110,109,113,109,107,98,116,113,107,116,98,99,112,98,95,94,106,96,112,105,99,97,87,95,109,105,101,84,98,91,95,107,99,91,93,106,110,113,73,120,110,100,106,102,82,91,107,93,102,110,102,105,125,112,94,104,111,96,110,100,113,102,114,106,96,104,120,95,121,114,102,111,104,106,100,103,117,104,107,105,96,99,108,101,98,111,108,102,111,99,109,107,103,112,101,98,102,103,112,100,108,117,106,111,98,95,109,95,114,103,111,107,106,92,99,100,115,92,125,103,110,105,102,107,101,98,104,108,102,122,118,96,109,100,105,112,121,105,96,94,102,103,104,95,110,102,105,103,108,99,105,106,108,106,103,107,100,103,105,105,112,91,101,101,100,111,104,105,109,97,98,99,113,110,79,109,104,94,102,102,104,92,134,95,88,105,100,105,100,94,95,114,120,108,99,105,87,108,99,112,102,78,106,75,101,120,104,106,103,100,102,117,100,109,108,97,108,99,94,104,108,105,104,110,108,114,113,95,105,108,104,99,113,109,91,114,101,103,107,82,109,108,105,101,99,111,91,106,107,109,122,97,103,96,102,117,111,106,107,106,106,99,105,109,107,96,97,109,107,106,106,105,98,103,104,112,115,114,106,110,108,114,105,100,108,101,99,125,108,110,106,120,107,101,99,106,102,97,97,106,108,112,108,85,96,97,103,108,104,97,108,106,114,96,117,112,100,109,95,94,101,103,109,105,106,110,101,101,104,104,101,91,103,104,92,107,106,114,108,104,100,95,104,104,119,105,109,113,106,99,106,94,108,96,100,117,104,106,103,109,94,99,99,102,90,109,104,101,100,114,105,96,101,102,109,110,98,101,109,103,97,101,95,102,76,88,104,114,106,102,129,113,118,104,98,97,97,113,121,105,99,104,106,103,107,93,103,102,102,104,98,103,99,104,107,99,102,82,131,81,106,96,109,101,97,107,117,115,105,107,98,101,110,103,109,101,98,102,107,102,119,122,107,78,118,113,99,107,106,105,109,124,107,104,101,109,107,104,85,91,102,106,113,104,97,107,93,106,105,108,97,103,108,104,105,103,120,105,103,92,95,104,108,106,111,104,107,106,105,110,94,114,109,103,104,105,94,70,101,107,97,115,101,121,102,114,98,97,105,101,103,100,103,88,107,108,107,102,95,98,110,109,95,108,101,113,106,97,95,102,100,111,115,104,100,95,109,96,109,109,110,110,109,102,104,91,106,104,105,72,110,95,103,95,95,97,98,97,101,112,102,106,110,105,109,103,112,117,105,116,100,97,96,117,101,99,98,101,103,111,106,129,107,99,111,114,89,108,99,93,96,98,110,103,105,121,96,103,100,108,97,102,95,91,109,95,106,113,102,99,101,104,93,99,100,101,115,111,101,94,107,102,107,109,113,103,106,103,98,102,95,108,111,105,98,121,97,100,106,108,87,104,105,109,93,101,97,102,112,95,111,110,96,112,105,116,116,102,120,108,113,102,108,106,110,106,108,118,129,102,107,95,115,97,113,110,103,97,100,82,110,113,120,95,105,96,113,95,101,106,107,99,106,110,111,99,97,105,100,110,110,91,111,109,101,109,99,105,105,101,113,110,98,92,101,108,99,96,95,107,96,100,92,101,104,94,99,110,95,88,102,103,100,103,101,96,98,101,94,91,103,97,98,113,90,114,107,115,105,98,102,111,97,101,112,105,98,115,104,93,87,109,101,90,102,109,106,110,97,93,110,87,99,99,98,102,113,103,113,101,101,102,107,98,98,94,108,108,109,98,105,106,108,107,91,67,97,95,112,88,111,102,104,106,106,106,98,108,116,102,108,96,91,99,110,102,83,103,99,99,96,107,105,110,106,91,99,104,99,103,103,112,98,99,89,118,95,105,104,91,106,102,101,103,101,102,104,104,107,92,107,105,109,93,94,98,103,100,106,108,103,102,91,93,103,97,115,98,110,106,111,116,109,112,105,94,103,95,119,110,106,111,116,103,100,101,97,97,105,105,103,100,98,80,109,98,106,101,93,106,108,120,95,106,114,105,104,117,102,101,105,106,112,99,108,116,104,103,108,95,104,108,103,101,101,100,114,104,89,113,92,105,94,116,102,99,107,103,97,113,98,102,108,110,112,104,109,107,102,94,111,100,86,101,109,103,110,108,103,99,124,116,94,113,101,101,100,95,99,116,91,88,111,106,100,95,105,101,98,116,112,106,107,112,103,93,104,116,95,104,119,91,109,94,98,105,93,108,97,100,101,110,100,112,98,104,91,99,91,98,102,94,95,112,102,101,101,105,97,104,94,91,103,91,101,110,109,107,109,107,95,106,90,100,99,118,101,107,119,116,105,92,95,100,98,109,96,106,85,112,131,117,106,109,115,104,91,113,96,94,101,78,114,112,113,106,107,108,107,106,100,105,100,97,107,103,103,108,123,98,92,94,108,113,111,96,95,81,111,98,99,101,98,99,100,105,103,102,113,109,116,97,102,104,103,105,107,92,96,105,91,104,102,99,100,93,104,109,96,111,107,93,91,89,95,99,101,105,98,94,114,110,106,102,96,95,95,109,105,112,103,102,108,105,98,103,101,100,101,103,104,109,101,95,103,108,98,106,111,90,106,111,100,112,104,100,103,106,103,98,103,116,97,105,104,112,102,92,112,97,97,141,100,107,113,96,98,103,112,108,96,105,103,107,114,101,103,102,105,101,108,98,108,114,112,106,116,98,105,103,103,108,111,104,94,107,110,104,115,105,102,104,111,106,97,91,110,109,106,106,105,112,108,111,96,107,106,117,101,108,115,120,75,106,103,106,107,102,90,102,103,121,102,104,100,105,96,91,104,108,111,104,114,97,105,104,108,108,100,104,89,110,110,111,102,99,115,116,100,105,108,101,96,98,105,112,106,102,109,98,110,92,108,124,112,110,105,102,103,113,114,103,104,103,111,105,113,105,117,106,117,117,103,89,100,114,114,107,92,104,107,99,103,113,106,103,106,94,88,99,121,91,120,111,108,113,95,116,95,112,104,103,106,99,97,116,88,109,99,107,75,114,115,106,108,114,104,99,96,118,95,105,107,98,100,100,112,94,101,98,113,95,108,110,102,101,97,113,100,118,86,97,109,97,117,119,113,100,108,116,111,94,91,111,114,113,108,112,116,99,106,107,119,116,110,109,99,103,99,108,110,83,102,108,113,107,100,87,94,104,111,105,103,104,103,104,115,105,104,102,83,103,112,109,111,98,105,108,114,99,100,106,93,105,116,98,83,118,105,97,100,92,96,105,109,105,109,108,102,116,109,105,107,105,107,114,117,121,97,106,112,106,115,89,99,106,104,108,109,107,111,111,120,106,83,122,98,100,77,98,102,112,111,114,103,101,98,108,98,102,105,120,114,102,96,112,102,95,119,101,111,107,116,97,110,100,104,105,98,101,110,116,109,119,107,94,102,87,104,125,105,106,94,116,105,104,107,105,110,95,122,106,105,96,101,96,113,113,101,99,102,104,116,104,108,99,95,105,104,83,98,109,101,112,114,105,108,104,103,121,109,103,109,105,109,98,94,125,112,100,106,104,104,105,95,107,96,109,99,99,91,102,111,111,104,106,117,108,103,96,109,71,113,112,108,96,110,109,99,95,100,102,109,99,109,115,111,90,120,106,112,115,101,115,98,119,121,93,107,106,120,104,104,104,108,106,97,108,106,96,102,107,119,120,102,116,101,100,110,101,117,122,103,108,120,103,107,98,94,112,108,106,99,98,93,116,103,113,97,122,97,104,99,103,102,101,100,107,109,89,94,113,111,98,94,106,98,112,92,104,119,115,116,107,105,104,101,105,98,91,101,109,116,112,95,82,95,99,103,108,92,104,99,111,104,100,125,98,106,111,100,109,100,112,107,109,103,103,110,103,84,103,93,103,106,87,104,97,96,117,102,102,101,104,107,120,109,80,101,114,112,113,100,106,107,95,91,112,95,99,108,121,112,105,106,99,114,92,103,123,110,106,92,108,103,109,113,96,95, +626.12592,103,105,67,106,76,93,91,87,99,106,100,98,83,89,115,97,100,116,107,98,98,101,105,98,90,113,109,108,88,90,106,88,102,102,103,106,86,109,100,92,95,100,95,104,98,114,112,105,95,98,101,128,102,96,101,103,94,83,102,108,111,113,98,106,101,108,105,113,104,104,106,103,109,102,110,114,102,90,109,102,105,104,104,93,103,99,94,87,96,99,98,105,110,108,100,99,101,100,74,95,103,94,99,105,101,92,95,104,115,101,107,85,110,102,96,100,104,102,99,102,105,110,101,93,71,94,96,102,100,100,106,103,90,98,88,91,101,102,102,89,100,112,101,100,101,97,115,114,105,97,99,97,109,107,111,102,96,96,95,117,96,91,100,102,100,97,110,86,95,106,94,89,94,110,105,104,111,96,99,97,98,105,103,141,103,100,104,88,96,94,96,105,103,105,95,96,111,96,111,94,93,96,99,121,87,102,104,99,106,109,99,95,110,90,109,106,71,100,107,105,102,115,99,108,98,108,108,95,111,105,103,91,107,108,98,95,116,105,97,100,117,118,112,109,82,103,92,97,101,111,102,103,104,116,110,103,95,99,93,109,89,113,113,108,97,101,100,101,95,92,106,106,90,85,97,101,99,88,94,99,97,101,96,114,98,116,91,89,108,92,99,109,90,96,126,102,103,104,121,103,105,97,90,99,86,102,107,102,95,104,108,95,107,90,104,97,108,107,103,98,104,99,95,92,96,96,93,88,112,96,111,110,103,101,105,109,95,99,96,109,116,95,96,97,98,80,107,114,108,104,113,99,99,100,102,107,99,107,110,100,103,102,123,99,101,98,103,89,103,107,104,87,102,106,98,91,108,101,103,105,98,103,116,105,96,83,106,96,109,90,103,93,90,95,101,103,101,87,114,99,113,103,104,93,109,104,98,109,101,89,93,91,112,99,99,97,107,108,108,81,103,96,102,113,94,95,97,92,91,103,129,105,110,103,101,102,96,110,107,84,125,100,104,94,95,109,100,90,101,100,113,100,109,109,94,94,97,113,114,97,89,104,103,108,112,109,95,100,117,101,101,106,103,103,108,91,96,105,111,91,100,102,110,102,99,97,111,104,101,94,109,116,107,92,96,99,96,99,102,103,110,112,101,101,104,105,104,110,107,108,94,98,114,104,106,98,113,98,100,101,102,120,90,116,106,95,110,93,99,90,95,97,101,100,105,118,110,109,100,108,100,100,105,108,102,97,113,98,105,100,124,106,108,106,92,92,105,109,105,115,108,104,101,100,100,106,106,106,109,109,95,99,108,91,90,104,108,110,106,110,107,69,104,99,96,97,107,109,102,104,111,103,106,100,98,101,105,110,101,103,108,101,101,91,93,114,101,104,101,113,120,99,90,106,104,98,99,100,110,105,101,103,97,107,104,111,103,91,101,102,96,110,90,107,95,99,98,110,108,113,109,90,89,102,109,85,109,103,103,101,102,109,99,109,107,113,100,97,107,121,99,103,103,104,104,103,85,109,98,104,115,100,98,119,108,112,112,99,109,93,93,106,109,108,106,94,86,103,89,105,111,101,105,113,88,101,96,104,100,99,108,103,99,111,94,109,94,97,95,98,99,107,103,106,106,100,111,101,102,99,102,100,100,103,98,95,101,107,112,105,95,110,100,112,89,92,101,93,106,107,109,97,106,92,108,105,109,97,99,98,110,108,98,107,103,99,113,107,120,102,110,97,104,102,92,109,95,94,101,88,109,100,102,107,110,97,108,106,99,104,94,106,106,97,107,93,94,99,96,106,111,105,98,104,93,104,103,108,92,99,95,114,98,98,114,108,115,105,102,93,112,93,95,95,99,104,113,94,109,108,105,102,103,95,123,107,100,85,120,104,109,110,104,102,104,117,102,107,107,118,83,95,103,114,96,104,94,101,95,99,97,96,98,118,99,108,101,117,92,111,100,98,108,105,99,96,102,95,99,112,94,109,106,105,101,103,118,101,102,101,92,97,96,116,102,99,90,108,114,95,102,98,96,105,103,87,108,91,106,109,92,111,111,98,110,102,112,104,109,103,111,100,110,102,138,103,105,101,106,90,93,100,102,106,101,102,100,112,98,115,95,100,103,102,90,100,100,97,95,104,107,98,105,102,103,98,104,110,104,94,105,101,108,104,98,107,100,95,88,109,114,110,90,95,105,108,101,99,104,113,101,109,104,103,101,103,89,98,97,105,97,109,96,91,102,100,103,107,105,105,110,101,104,105,107,108,99,101,102,101,95,106,109,91,103,113,99,95,93,85,104,117,102,103,101,99,102,96,103,123,100,107,103,94,113,95,112,98,98,92,101,97,103,90,112,98,98,115,98,123,113,113,90,117,105,115,103,135,103,99,115,125,114,114,102,120,108,104,107,97,98,109,117,110,87,104,93,109,113,107,90,108,96,118,102,101,103,98,117,77,95,110,106,102,107,107,91,98,102,106,71,97,97,103,99,109,103,103,98,106,107,98,92,108,96,105,96,105,100,98,106,112,99,107,107,109,105,107,121,105,96,106,94,106,105,112,91,108,99,109,113,110,124,112,103,100,91,102,105,100,109,101,105,109,104,109,105,95,108,95,115,103,116,108,105,105,117,110,102,100,115,104,109,100,112,102,111,95,112,96,102,100,111,97,105,103,107,99,101,94,102,95,104,116,102,110,116,111,103,111,106,103,108,113,103,109,104,98,128,108,111,105,97,100,113,106,110,103,106,106,106,105,111,108,110,107,108,103,104,109,106,108,98,110,107,113,105,99,105,104,90,94,113,109,87,95,103,117,99,103,109,101,103,100,102,97,101,112,104,96,106,110,103,115,111,110,102,85,109,98,103,103,106,106,103,106,102,106,105,95,109,101,71,127,113,107,109,101,103,117,115,102,115,95,111,106,105,99,113,106,112,105,110,105,99,107,107,69,107,95,106,120,107,93,105,100,111,106,104,114,105,101,101,95,107,103,105,95,99,101,112,107,108,101,107,123,105,107,107,103,121,100,104,118,116,107,107,111,97,100,99,119,112,92,99,102,103,113,112,108,106,107,103,107,102,106,94,102,104,111,105,108,97,112,107,103,91,112,101,109,109,95,104,114,104,89,106,94,91,116,101,105,127,101,110,106,105,99,121,98,95,97,111,108,113,119,109,94,103,105,99,102,98,118,98,98,99,106,107,120,94,111,95,98,115,92,93,107,115,97,101,106,99,67,112,96,117,107,115,99,103,109,103,100,110,109,92,119,104,119,107,113,110,99,98,91,105,102,102,110,107,101,107,109,106,113,114,108,98,98,106,103,94,99,112,120,100,106,105,100,115,101,111,113,108,105,106,98,135,102,100,111,94,112,108,78,100,107,112,99,97,109,108,103,107,102,104,100,92,103,99,104,76,102,117,87,111,106,103,101,103,109,104,100,106,98,102,107,118,95,105,110,102,104,103,112,102,116,99,102,121,106,120,105,110,121,83,98,102,98,134,104,96,106,102,104,113,101,97,113,99,107,115,108,110,107,102,108,111,102,99,103,94,106,108,120,102,112,107,120,113,107,107,94,108,104,103,95,117,98,102,96,99,129,100,110,105,90,120,101,97,110,111,99,114,93,98,100,101,108,101,92,125,115,108,85,107,112,112,113,99,104,112,104,106,99,104,97,109,117,93,109,109,115,104,104,109,107,100,98,101,122,96,126,102,102,104,100,103,101,99,96,104,97,110,105,113,94,99,111,109,103,111,107,115,104,103,102,128,100,107,104,109,105,112,95,105,101,108,98,101,110,104,104,99,111,105,113,112,93,102,94,108,97,108,113,103,101,104,117,89,100,101,108,116,105,88,117,122,118,105,92,106,104,100,109,90,100,101,99,106,102,94,110,112,102,109,112,87,117,116,111,95,110,98,101,98,115,93,106,94,111,111,108,107,103,105,115,109,113,100,113,99,111,117,104,110,101,100,103,97,76,91,106,111,110,109,96,104,110,104,111,105,107,107,97,95,97,108,106,102,100,107,105,103,104,95,101,114,111,102,103,98,112,112,102,107,126,105,102,97,79,102,100,102,101,116,103,104,105,91,92,109,102,117,107,99,107,106,98,113,99,100,108,111,108,110,105,91,105,109,102,102,106,77,109,104,97,119,119,117,94,105,111,105,97,110,108,97,105,101,104,106,110,110,108,101,116,114,100,104,117,95,103,113,101,107,111,105,106,106,95,105,112,104,99,111,114,109,103,98,94,110,102,98,92,104,107,79,115,106,83,107,104,98,111,116,105,103,104,95,103,107,99,100,100,100,109,100,110,97,102,119,103,103,116,105,103,96,106,107,100,102,99,106,111,105,108,116,114,116,113,107,106,96,106,102,108,109,113,100,113,109,116,98,108,111,117,100,100,90,95,90,117,105,103,97,105,95,95,98,104,99,67,98,103,91,124,113,103,106,125,108,108,109,99,102,95,113,112,109,105,109,107,112,100,105,106,104,93,102,97,101,101,102,97,110,97,108,109,92,101,98,116,108,88,98,109,113,103,105,111,111,97,99,109,105,103,104,97,113,111,117,101,96,102,101,99,110,100,105,107,108,121,99,110,104,108,117,100,99,87,109,101,113,102,104,100,100,89,113,92,110,100,107,110,113,112,101,99,95,110,109,100,112,125,98,101,101,96,100,101,104,96,101,103,91,117,108,92,105,101,96,99,102,93,96,92,98,95,102,102,107,106,101,108,107,103,105,105,90,96,84,95,96,90,101,117,104,102,105,106,99,100,110,100,108,105,109,98,97,99,103,98,108,98,95,98,98,107,102,89,105,96,102,104,98,96,110,102,103,94,109,102,119,106,91,102,115,100,97,96,104,107,102,102,94,118,101,99,106,91,97,93,109,103,112,107,109,98, +626.26703,105,110,98,102,85,103,99,111,106,104,90,105,103,98,92,102,113,100,107,100,112,105,100,117,95,114,102,91,105,113,107,97,111,96,92,84,85,91,98,94,99,107,101,104,97,104,104,110,94,106,99,93,101,101,99,108,108,90,92,96,110,94,107,96,115,106,105,110,97,104,106,120,117,101,101,114,105,94,102,107,91,100,114,101,117,100,91,91,100,96,102,119,104,109,105,98,109,98,101,98,99,90,102,105,99,109,88,115,101,96,102,110,100,101,109,96,101,99,116,99,109,101,108,103,114,113,98,99,74,98,103,107,98,103,108,96,104,104,97,100,116,109,96,93,85,95,113,104,109,96,104,93,107,90,104,94,100,104,109,113,95,101,99,113,114,113,110,98,99,109,118,99,90,102,98,105,106,103,94,95,108,102,103,104,105,101,107,90,100,99,98,107,104,97,82,97,100,92,85,108,80,97,96,102,103,106,85,106,115,108,107,108,90,105,100,104,99,113,102,104,116,110,113,94,101,107,101,113,100,99,100,106,113,113,96,93,98,117,106,92,107,114,117,97,104,113,104,101,102,106,83,99,83,104,100,122,103,102,95,96,93,99,109,99,105,105,100,99,101,101,99,90,111,98,108,91,99,100,106,83,96,104,109,96,93,102,111,103,109,96,100,119,114,98,110,107,109,104,104,103,104,101,100,117,105,107,117,110,113,112,94,127,97,101,103,101,104,103,97,94,98,92,94,99,116,91,107,103,96,103,74,96,101,108,108,104,99,113,97,123,95,96,95,100,103,106,103,124,111,97,98,104,100,77,117,105,98,105,116,100,104,75,121,104,103,99,95,99,105,100,98,94,109,93,107,94,101,99,116,114,102,116,116,97,102,100,109,103,101,96,120,97,101,105,94,103,109,92,103,107,100,94,106,101,100,99,106,103,102,96,94,103,99,99,109,94,116,113,113,112,103,95,92,107,108,95,112,108,99,106,92,107,118,93,86,113,104,117,108,85,106,99,99,118,108,100,102,92,105,112,100,102,103,113,113,95,114,106,103,106,112,108,100,97,124,108,95,105,99,102,104,115,104,105,101,105,106,110,108,110,104,104,111,95,109,109,113,99,113,84,108,108,95,95,106,87,88,121,95,110,107,118,104,104,112,106,101,90,121,114,110,99,105,121,108,118,106,105,108,100,89,111,107,100,113,98,117,100,104,94,102,98,98,106,102,105,107,99,98,98,105,120,102,99,106,102,97,99,108,106,111,101,110,98,107,82,100,100,109,105,113,96,107,101,95,102,107,111,109,98,105,104,109,65,122,103,104,104,106,95,100,111,94,93,113,104,113,99,113,106,104,117,92,103,105,108,101,111,107,90,97,112,111,105,105,76,86,109,109,94,111,105,96,103,120,96,98,101,79,116,99,99,106,82,113,96,91,106,95,98,115,106,100,113,100,110,108,95,102,110,107,100,104,106,99,99,95,104,104,131,97,116,111,104,101,95,105,107,105,103,77,105,114,104,98,100,108,105,106,92,122,85,100,116,109,100,111,108,113,97,94,109,109,96,95,95,107,104,105,98,100,108,102,106,114,99,112,110,108,106,103,105,99,104,98,104,108,104,108,77,99,123,112,103,92,98,95,97,95,102,100,99,85,108,109,98,104,98,103,114,113,97,116,105,107,108,98,118,102,104,110,95,104,111,109,121,106,108,112,117,113,102,114,94,97,105,110,104,109,88,101,112,106,100,97,108,115,102,106,110,118,103,113,101,99,106,108,108,74,104,110,114,102,112,105,104,101,109,101,99,106,107,97,103,97,109,99,86,94,110,105,100,93,98,108,103,108,112,100,94,123,107,97,107,108,95,109,105,113,101,108,102,108,102,108,95,112,113,104,114,103,97,103,94,104,119,108,110,94,107,110,114,94,96,104,111,103,99,95,106,79,102,99,97,92,103,97,107,110,100,89,107,101,107,111,97,95,107,104,99,105,109,112,118,103,102,109,102,109,115,89,112,105,112,95,109,104,109,88,102,98,108,99,106,121,103,105,109,106,100,95,116,112,109,97,105,109,101,88,106,106,75,112,121,94,98,94,114,105,102,103,108,113,111,98,97,96,99,107,117,91,103,112,100,107,94,129,107,121,103,95,105,104,108,111,113,102,104,99,120,102,98,113,109,106,97,100,104,108,106,103,112,107,105,108,101,105,101,118,106,98,103,99,117,102,111,103,94,98,101,107,108,108,102,108,103,106,110,103,76,118,104,112,91,108,104,94,101,109,116,119,93,95,105,109,101,108,102,95,107,86,102,95,112,94,109,103,106,107,104,101,111,105,109,108,98,111,108,103,107,116,106,106,110,94,91,107,129,121,124,110,101,106,111,114,127,115,111,110,118,114,105,114,104,115,104,106,108,103,110,113,101,112,99,102,98,108,117,103,101,105,106,116,104,102,102,81,108,95,90,102,90,110,114,107,104,97,120,122,107,99,87,97,90,103,115,107,103,105,106,95,105,107,111,118,96,115,103,135,117,109,109,110,108,110,108,111,111,110,110,108,103,111,107,109,106,97,97,110,117,114,108,96,100,106,99,98,104,93,93,117,102,105,107,115,96,113,99,105,79,106,111,112,105,102,112,98,119,105,105,102,93,92,105,107,104,107,121,106,91,116,109,106,113,105,118,111,105,103,108,112,114,111,91,109,94,109,98,100,103,100,121,98,109,99,110,109,95,108,108,105,114,110,104,102,111,120,109,105,106,111,100,106,102,108,120,105,102,106,90,120,106,109,101,100,109,106,106,109,103,112,113,107,114,96,113,103,104,105,104,99,98,113,123,100,105,102,112,105,113,106,105,105,114,114,101,95,90,113,111,98,112,113,110,101,94,90,110,104,101,115,128,111,101,108,116,104,103,101,107,108,105,103,112,113,85,109,99,100,93,102,110,113,110,106,109,106,110,108,103,98,118,116,116,94,99,118,119,102,105,120,88,110,99,111,106,104,114,99,67,104,104,98,120,106,98,100,98,111,86,107,107,105,107,103,97,107,104,107,102,96,105,112,97,115,118,119,102,102,112,107,103,113,91,87,102,108,107,118,101,99,112,103,108,105,96,109,102,110,112,89,96,106,113,116,98,120,97,102,103,108,101,100,112,128,108,95,107,111,109,108,90,95,106,102,112,106,104,85,99,104,104,97,107,100,102,78,110,105,98,112,109,112,112,103,108,109,95,102,109,103,104,93,100,101,105,111,109,112,111,115,108,117,106,94,110,106,102,105,113,93,106,107,106,102,103,104,107,106,106,108,95,109,96,91,109,118,102,98,94,115,107,102,118,106,118,105,104,110,104,105,109,103,102,105,112,108,105,113,98,101,106,109,103,108,102,101,106,107,113,117,124,98,85,100,79,95,101,100,104,104,98,108,103,104,100,114,103,105,103,95,102,91,106,89,101,105,120,103,102,101,100,114,111,118,109,120,109,105,96,105,108,112,103,108,112,93,108,113,104,95,94,106,104,117,102,108,104,101,96,108,112,108,97,104,107,111,109,107,99,102,100,109,101,112,105,103,105,106,112,111,96,96,108,91,107,103,90,97,96,104,93,106,112,103,114,111,107,114,106,103,106,96,124,106,105,114,106,107,110,100,111,104,101,99,101,98,75,100,111,106,107,93,113,78,104,107,110,94,109,117,102,106,97,105,109,101,107,108,98,110,115,105,101,99,100,120,105,107,105,119,107,121,104,100,101,98,105,102,118,96,100,97,96,91,100,104,102,92,111,111,117,101,106,115,95,110,106,122,106,105,104,106,115,109,92,112,121,100,105,101,107,117,93,109,102,115,105,101,104,108,111,103,96,108,104,113,100,100,104,105,108,111,113,111,106,99,101,103,99,107,101,103,108,100,109,103,97,101,110,102,110,97,105,96,100,105,103,98,112,97,102,99,84,120,95,113,110,99,109,97,109,99,105,111,108,107,108,111,97,115,115,116,94,96,105,112,105,98,95,100,104,103,101,117,105,107,100,104,136,98,100,102,100,98,117,108,102,100,111,99,116,111,89,105,103,113,108,121,125,111,108,116,92,104,110,107,100,94,111,103,104,111,107,107,121,82,108,104,106,120,102,106,113,91,115,105,109,114,102,102,100,104,103,116,105,120,95,104,109,106,106,102,94,103,118,100,100,92,99,111,109,106,109,107,107,106,83,105,113,119,114,117,108,112,103,109,123,108,112,103,95,110,104,104,108,117,109,110,110,95,98,103,102,113,116,94,112,109,102,94,102,100,115,101,102,102,98,118,111,106,112,103,111,107,105,112,106,95,105,115,106,113,103,106,109,124,112,106,102,104,96,105,109,98,109,104,106,105,100,106,105,112,103,98,99,111,115,105,103,103,103,99,105,95,101,106,120,108,113,103,89,101,103,104,119,106,100,101,109,108,117,111,100,112,101,103,113,103,113,103,118,106,116,110,100,99,83,105,99,98,95,102,99,99,105,100,101,107,94,112,106,109,117,120,109,117,114,96,84,92,108,102,105,109,111,106,109,76,104,111,101,114,107,107,120,107,99,108,119,120,114,109,98,100,110,108,103,103,110,112,109,101,104,100,112,105,107,98,115,93,99,102,100,98,104,109,100,102,89,116,111,103,109,87,101,96,113,102,113,83,99,110,83,109,100,104,104,106,93,112,73,107,101,99,98,113,99,104,96,87,97,116,122,102,90,114,96,110,105,87,110,109,106,118,95,107,92,97,98,112,96,90,103,106,102,115,104,113,97,121,105,86,121,106,125,105,102,92,107,113,106,99,99,109,98,106,97,109,95,102,104,112,96,117,106,110,94,104,108,117,100,92,97,99,109,101,104,101,96,113,102,108,93,108,105,97,105,113,106,94,98,117,109,106,114,99,91,107,100, +626.40814,112,105,104,91,106,87,97,103,100,87,96,89,102,109,106,109,98,101,101,111,106,106,103,102,99,119,107,111,100,102,105,109,96,116,110,101,97,96,96,107,117,98,110,108,96,104,94,103,103,99,100,103,116,109,95,100,96,102,107,98,108,113,104,98,84,113,79,101,103,103,103,109,103,111,95,106,117,102,104,111,102,101,105,111,108,101,105,122,111,93,91,104,109,101,110,92,98,101,96,117,100,118,101,98,101,90,110,98,95,100,99,102,133,113,105,89,110,118,111,105,98,102,95,101,102,99,110,120,108,116,100,112,94,97,102,107,112,122,105,103,117,102,106,107,125,94,104,107,100,104,116,110,110,102,102,104,110,99,99,98,100,115,113,114,100,103,102,92,102,97,116,118,97,118,95,107,109,98,90,115,101,121,97,94,107,104,115,97,99,107,98,105,106,102,108,100,102,98,106,107,87,98,99,109,121,102,109,108,114,111,121,108,83,102,107,105,92,104,114,113,107,99,103,110,102,105,106,103,104,103,104,108,106,76,105,102,103,116,112,114,97,102,99,105,108,98,104,91,98,99,110,102,102,111,99,100,111,105,96,107,105,93,101,95,101,100,113,109,100,96,100,106,99,105,116,109,106,116,99,100,97,91,110,105,113,93,97,104,106,101,97,103,104,110,97,112,97,96,108,110,97,100,108,98,107,101,109,100,86,111,99,118,106,104,99,95,100,105,102,115,116,111,120,113,105,100,111,103,109,119,96,107,88,109,95,94,101,115,100,102,108,108,110,101,103,106,98,103,107,110,102,103,100,100,106,105,105,114,108,104,113,102,126,97,123,111,104,107,100,106,123,98,108,103,105,103,100,107,95,108,102,97,104,95,92,102,104,103,109,101,117,99,94,110,102,101,98,112,97,116,100,92,95,101,112,106,99,104,107,115,110,110,98,103,99,102,105,95,106,74,97,106,93,109,103,102,103,93,101,116,112,122,101,100,109,106,98,109,99,93,113,99,108,103,109,116,112,93,106,101,98,108,117,108,102,105,91,119,106,97,112,100,105,108,101,106,109,96,109,103,107,100,97,103,108,101,99,121,109,109,108,107,99,103,104,98,108,114,111,100,101,114,89,101,97,99,111,102,98,107,106,110,98,95,109,94,103,104,102,108,101,107,107,111,107,102,108,111,104,104,110,101,114,100,108,99,104,105,88,122,89,101,108,109,110,98,105,100,89,108,98,109,97,103,95,77,109,95,99,109,122,106,92,105,99,103,102,96,90,99,112,109,105,114,102,99,109,103,94,100,92,106,80,109,120,93,101,109,108,117,107,112,104,113,101,102,97,108,90,108,108,98,96,99,108,103,81,107,106,106,96,90,118,101,107,106,105,102,99,97,99,111,105,113,105,105,105,109,100,99,101,101,109,92,104,128,108,104,103,113,104,101,116,98,109,114,102,103,114,98,105,102,97,106,98,97,97,87,109,115,98,99,97,98,104,99,106,107,105,111,108,110,116,116,95,106,109,100,109,104,114,112,103,95,104,99,110,109,111,100,111,99,112,101,107,109,85,111,102,98,107,101,92,115,110,107,109,101,87,102,110,95,100,102,104,115,100,109,107,100,115,99,104,78,102,102,107,94,120,82,110,107,100,115,97,103,100,112,94,110,112,104,104,92,101,109,107,99,108,103,109,97,112,101,112,103,102,99,104,128,105,105,100,95,111,102,109,112,100,97,117,103,97,106,95,108,101,99,113,108,108,104,90,92,101,109,109,101,117,102,103,108,120,109,100,113,103,114,97,111,113,104,102,101,111,103,105,103,105,108,102,95,95,102,106,107,108,109,116,105,97,109,108,112,101,110,119,123,94,94,91,105,99,109,109,99,111,95,114,107,109,110,107,88,102,103,109,101,101,105,100,104,129,110,110,115,94,106,101,109,109,105,102,123,99,113,107,113,98,122,100,96,117,109,105,117,104,106,104,106,110,110,92,117,85,110,112,105,106,92,102,94,102,109,116,108,83,107,106,99,99,86,107,108,103,103,120,93,94,105,115,105,117,103,113,111,101,94,102,96,106,117,127,115,125,97,97,88,91,110,112,107,104,107,120,103,102,106,100,109,112,110,102,84,99,102,102,100,96,94,111,109,107,101,104,103,94,105,105,101,101,102,107,106,111,102,104,110,111,98,107,94,111,102,101,107,83,100,108,97,108,94,107,97,92,98,99,101,103,96,106,104,100,102,99,95,102,105,100,91,133,107,92,109,91,94,108,90,119,101,109,101,100,108,107,94,111,113,112,101,106,110,96,109,110,93,90,108,107,102,108,116,84,99,102,104,110,89,122,101,108,112,120,115,113,96,115,138,137,98,98,128,104,110,92,126,103,83,102,124,100,111,106,116,99,104,100,109,109,106,110,102,103,108,105,108,106,101,101,97,105,120,97,101,106,113,97,104,102,99,103,100,100,105,114,105,99,101,103,110,103,113,91,92,103,111,103,100,112,113,102,103,103,103,104,112,104,105,113,106,105,100,108,102,111,109,95,113,109,112,110,102,117,117,113,102,110,109,110,109,112,126,106,109,96,105,108,108,102,87,106,94,99,115,103,103,111,125,115,98,113,104,100,110,102,104,108,106,112,106,102,107,104,103,109,105,114,99,103,100,100,112,103,100,112,96,99,102,111,120,110,117,102,110,110,125,110,108,105,108,110,107,103,107,98,119,95,100,101,91,100,110,103,113,114,126,108,109,115,102,90,105,108,99,121,102,120,106,120,111,107,125,107,101,139,105,96,103,99,105,106,102,97,127,112,107,105,110,96,109,105,100,104,95,102,99,106,94,105,102,108,106,114,103,96,100,107,107,94,111,121,105,110,107,94,106,106,109,108,104,106,97,108,105,106,103,101,113,104,102,113,95,109,107,117,97,96,113,116,103,97,108,129,110,111,103,109,110,107,107,106,107,92,102,111,103,109,107,117,98,98,105,103,113,105,102,106,105,104,102,112,101,107,103,104,99,106,108,106,109,113,105,94,91,104,112,108,108,96,109,95,101,102,101,107,112,113,105,108,110,107,110,109,105,106,98,97,115,88,102,111,116,109,99,108,101,107,93,110,114,106,103,95,106,111,103,106,110,91,99,107,108,109,107,106,93,109,98,109,115,109,92,103,103,105,104,105,94,112,103,107,96,99,111,100,103,99,98,102,105,97,110,99,108,113,107,111,113,99,106,105,95,93,107,110,113,106,90,92,100,99,111,99,112,101,96,104,106,104,101,106,109,114,97,114,96,90,92,107,102,115,99,100,98,113,95,113,112,108,104,95,106,103,107,107,105,98,101,105,95,108,106,105,102,98,102,104,101,117,100,108,119,112,108,105,107,111,103,113,102,111,116,105,102,119,106,113,110,116,103,101,104,105,121,96,99,108,102,98,104,115,98,121,112,95,97,97,116,105,96,117,108,108,104,104,99,113,113,101,103,95,113,94,120,107,104,106,97,98,112,113,108,100,106,127,88,102,99,114,101,115,102,100,120,105,86,113,115,103,94,99,113,104,110,110,105,104,116,104,114,115,91,108,106,115,105,105,99,105,108,94,113,98,112,98,110,101,99,100,117,105,109,106,106,105,104,109,116,103,113,111,112,110,112,102,102,96,107,113,115,110,98,98,109,102,101,113,105,110,108,110,111,118,75,96,113,102,109,115,103,117,97,104,105,113,104,87,115,107,106,113,121,106,115,109,110,118,115,103,121,110,103,112,96,119,110,106,114,112,108,96,100,112,107,103,113,97,111,117,105,99,109,109,112,100,96,98,122,102,98,110,113,107,109,113,121,103,105,98,107,98,105,98,85,105,98,107,107,106,116,95,112,107,104,110,107,92,109,109,94,107,97,105,100,107,105,111,100,104,109,102,104,107,97,116,101,107,106,108,102,106,104,113,102,97,104,109,104,114,112,99,106,109,107,108,103,110,82,96,114,112,107,104,98,109,108,112,107,87,88,102,121,96,104,114,107,105,113,110,98,110,92,106,113,111,99,107,101,104,106,109,100,105,112,109,110,113,101,102,104,117,103,110,102,110,117,93,98,98,104,113,113,104,123,106,102,103,103,99,107,111,122,113,107,101,114,100,101,106,94,94,104,103,108,100,106,114,126,112,100,102,99,108,104,107,101,100,109,106,111,118,113,102,94,117,107,105,106,103,126,113,111,109,109,103,102,112,111,106,109,102,109,109,110,104,97,108,111,109,108,110,90,107,98,111,105,99,110,112,104,112,108,115,99,114,103,96,110,99,114,99,98,101,118,105,106,92,106,108,108,105,98,111,104,121,104,105,115,101,108,108,99,104,101,127,109,97,113,103,115,111,117,108,117,94,104,113,99,108,98,103,96,111,110,103,103,111,109,99,104,110,105,103,107,99,111,97,92,98,117,120,110,102,96,106,85,103,101,104,115,113,120,113,118,111,103,111,101,101,113,105,98,104,99,106,121,98,111,110,104,95,106,108,100,102,106,98,105,105,111,116,97,100,97,90,102,111,106,103,107,100,108,94,103,109,99,113,111,91,99,110,96,108,101,101,89,118,109,108,98,112,92,108,112,118,107,102,115,100,111,110,104,96,99,101,103,110,113,101,108,106,99,113,100,101,99,104,106,106,107,100,100,109,132,95,93,116,101,108,106,90,107,97,93,113,93,111,105,99,95,110,116,121,104,96,101,108,118,106,104,102,107,87,112,116,111,105,112,113,99,115,116,98,107,102,106,101,107,113,104,104,106,91,112,108,111,117,82,103,100,100,107,95,98,121,116,103,119,102,113,121,95,97,100,109,115,107,109,106,112,98,95,98,95,94,106,94,108,112,92,111,105,111,98,103,95,107,108,106,99,111,113,111,113,102,114,126,97,124,95, +626.54926,107,93,106,103,101,113,105,109,103,102,90,101,95,95,113,101,89,106,108,98,95,113,102,104,109,95,109,105,96,105,113,115,104,109,101,109,91,107,114,113,97,107,103,95,120,111,99,94,110,113,115,99,92,108,117,99,99,103,106,91,110,121,104,91,112,115,91,111,102,82,105,110,88,131,99,107,100,118,98,97,103,102,110,107,108,94,103,108,110,113,113,104,106,123,96,94,108,99,119,101,100,90,105,88,104,112,97,93,100,97,115,94,98,95,103,98,100,107,117,113,96,104,110,104,102,113,98,104,102,98,107,116,98,104,111,115,102,111,92,94,106,107,95,100,95,108,100,102,101,103,95,97,103,90,99,106,101,98,107,84,96,99,105,104,106,104,98,106,99,96,102,107,105,98,97,112,87,100,106,97,117,103,101,115,93,108,107,99,106,99,98,96,101,104,94,103,101,109,103,94,90,112,113,109,88,98,89,98,101,98,97,101,107,101,110,90,103,101,106,110,99,101,99,110,101,113,108,96,85,101,103,95,116,104,106,97,107,115,110,111,109,102,72,111,117,108,99,99,102,89,103,112,103,106,106,94,97,101,103,98,96,111,111,108,99,125,98,101,107,104,92,86,96,111,103,113,103,111,105,100,109,118,116,102,99,99,92,93,101,106,103,81,111,106,89,105,113,95,113,99,106,104,105,117,101,105,101,102,113,110,95,109,108,81,101,116,117,108,121,95,106,99,115,113,110,100,92,84,102,107,102,106,88,103,102,101,97,104,104,93,96,105,92,103,109,110,107,106,96,97,118,102,106,108,101,105,107,120,102,105,106,108,100,94,96,104,105,120,92,99,79,86,113,100,108,97,101,119,102,107,110,102,98,112,106,103,85,100,108,94,106,115,105,113,86,100,96,95,109,107,97,94,82,104,110,96,127,99,99,102,91,104,95,108,120,90,95,105,117,85,101,108,102,97,99,88,64,106,96,107,109,107,97,109,105,113,105,97,102,107,99,96,100,113,94,105,105,90,104,114,101,107,104,105,97,120,107,99,115,101,111,110,99,107,110,117,101,96,109,121,106,103,98,88,100,111,99,106,102,105,103,106,117,113,101,101,107,111,104,101,102,99,96,109,101,119,106,100,107,101,103,106,103,106,98,102,111,106,108,110,99,97,115,115,86,94,94,104,107,101,107,112,108,99,101,103,120,106,110,98,97,103,110,113,110,113,105,104,103,114,108,118,99,109,103,105,103,105,98,97,112,109,102,97,97,103,105,91,104,92,96,98,104,116,95,107,96,100,104,94,92,99,107,112,102,105,106,102,109,112,102,100,99,92,95,105,104,104,105,106,103,104,102,101,101,114,107,109,111,102,101,111,111,99,104,95,103,100,107,103,109,103,109,105,111,106,99,91,108,94,107,100,103,102,100,135,100,99,112,109,93,101,105,116,106,117,109,101,110,114,113,111,98,94,107,116,101,110,98,105,108,82,105,111,104,102,104,105,103,113,99,104,103,103,109,109,98,100,102,101,102,125,98,98,112,106,104,123,120,104,99,111,109,90,103,97,100,109,100,122,102,105,94,99,98,109,125,109,86,110,101,79,103,103,105,98,114,110,86,99,99,104,101,104,97,114,109,116,112,87,117,105,104,103,100,105,105,110,112,102,96,105,107,108,100,102,102,103,110,102,111,89,101,104,108,103,110,106,103,79,99,99,102,103,103,112,97,111,103,102,100,90,101,103,108,119,93,103,111,106,98,95,104,93,105,99,110,94,95,109,103,102,114,122,113,106,100,96,107,111,105,112,105,104,108,100,101,115,95,106,104,102,104,114,109,112,107,106,113,101,80,101,105,92,117,107,100,108,100,100,111,105,114,111,102,131,126,96,99,95,112,84,105,106,85,113,98,99,101,101,114,114,101,101,103,96,103,111,96,99,111,99,99,103,86,112,103,105,105,103,108,99,107,104,92,91,96,108,121,108,105,111,102,103,104,98,104,105,105,96,112,121,105,102,108,104,106,103,114,95,97,101,115,85,113,72,100,116,102,102,108,111,107,109,100,104,76,100,91,102,102,111,117,104,107,103,105,102,92,102,95,99,113,85,110,100,101,96,107,113,103,104,97,111,104,102,108,117,105,101,105,108,113,109,107,109,86,106,109,110,105,114,108,127,117,108,103,114,106,103,108,105,112,108,110,91,96,97,110,107,94,104,108,108,99,104,105,103,107,92,95,103,98,98,110,101,102,97,95,102,109,110,114,101,126,101,98,105,104,106,99,104,104,92,103,101,94,113,100,109,98,98,99,117,101,96,101,118,112,99,101,113,109,88,101,102,104,114,124,97,111,106,102,113,99,108,100,105,111,117,114,124,106,108,102,104,112,112,106,115,111,124,111,119,111,99,110,98,109,106,89,105,106,111,105,102,101,84,107,100,95,106,83,94,98,126,100,99,104,103,95,97,100,111,94,114,107,115,107,109,108,110,124,102,81,102,105,97,116,113,95,104,116,108,108,109,105,101,118,101,108,120,113,110,115,103,110,108,84,106,111,108,101,104,103,102,100,108,110,109,110,115,106,110,98,107,91,107,103,107,98,102,94,105,105,102,94,112,120,94,99,109,115,113,106,111,98,105,115,123,98,94,101,100,100,113,78,117,117,108,100,93,111,98,108,108,109,100,105,94,107,111,101,107,97,114,107,94,106,113,98,109,102,113,108,111,108,96,106,118,104,107,114,118,113,117,104,111,101,106,101,106,110,114,110,100,104,107,98,109,103,106,113,103,109,109,110,83,89,103,104,115,108,103,109,101,115,106,105,106,122,102,114,98,102,104,113,99,101,100,110,100,112,102,112,108,103,98,94,128,113,98,110,105,120,106,109,99,102,116,101,108,109,108,99,102,98,104,107,112,110,90,116,114,124,94,112,103,113,102,95,107,109,105,106,108,111,95,94,101,102,108,110,104,102,107,120,106,95,108,134,120,102,103,109,119,99,99,103,94,105,103,109,103,113,106,109,99,109,109,97,101,101,117,108,104,90,67,105,101,108,112,107,111,108,110,106,106,91,96,120,105,102,103,84,91,102,101,103,100,109,110,112,106,111,102,120,91,117,103,107,106,106,101,106,105,100,119,106,112,91,111,103,107,108,107,96,108,96,121,95,105,108,103,120,107,103,91,117,100,91,99,108,108,99,109,109,108,107,109,110,105,99,103,111,87,117,97,110,109,101,95,96,83,104,105,108,119,114,109,108,110,113,113,120,98,106,122,96,105,87,92,105,101,114,115,102,111,78,98,99,107,112,109,114,123,111,76,103,98,108,104,114,108,113,100,93,118,115,118,116,104,115,98,96,103,109,93,106,87,99,117,112,101,109,105,99,100,108,98,116,112,94,118,99,107,104,107,105,107,98,98,99,111,110,113,107,104,111,112,104,102,119,87,99,99,113,88,96,109,116,105,106,104,91,94,106,105,103,106,107,99,115,112,114,102,102,84,90,111,111,95,111,105,113,125,100,98,112,112,102,119,106,100,106,108,108,132,100,104,101,79,97,99,102,108,119,85,106,99,112,112,105,106,111,104,105,105,100,90,101,103,106,107,101,110,117,112,108,96,101,95,116,115,105,103,102,106,111,103,110,96,113,111,115,120,117,102,98,92,103,108,106,109,107,94,127,104,106,115,106,102,107,111,107,113,103,101,103,98,103,108,103,97,105,103,111,117,108,99,97,104,105,99,106,105,114,109,102,107,72,106,104,112,104,98,126,98,106,101,112,110,103,99,98,107,100,101,103,94,105,95,99,109,117,101,99,113,99,105,116,101,109,107,129,107,102,109,104,106,102,109,108,94,113,113,109,98,109,105,85,100,120,104,108,109,100,99,105,104,104,95,101,103,98,109,105,89,112,111,103,98,107,104,86,94,116,113,106,104,103,102,103,120,104,111,94,99,119,115,100,110,77,108,109,114,96,106,93,103,98,101,96,113,106,116,119,112,95,107,117,106,113,105,101,101,100,94,106,108,90,107,117,117,114,105,110,113,110,109,111,100,108,99,109,116,93,113,125,114,104,99,99,97,94,114,96,105,110,96,108,103,101,105,109,95,104,106,110,119,110,105,103,109,95,113,115,108,106,117,102,109,107,105,137,111,99,100,117,113,96,113,102,98,109,101,109,99,105,104,113,94,103,111,116,116,103,102,127,117,95,103,113,106,98,96,94,102,110,84,105,95,96,102,105,80,105,117,100,98,112,106,108,114,98,104,90,111,101,102,91,106,95,109,112,83,105,110,101,105,105,111,96,105,112,107,102,102,80,119,98,101,132,109,99,96,112,102,107,110,109,109,108,105,99,90,94,105,105,103,133,105,100,115,102,115,86,117,100,105,103,104,116,100,100,108,109,103,99,108,96,106,104,105,90,91,103,102,108,101,111,106,94,99,111,96,108,101,104,98,108,111,111,123,103,106,108,105,105,96,103,142,110,108,100,109,99,130,100,121,96,110,104,112,123,112,116,118,102,112,105,103,98,112,94,123,107,105,101,98,106,103,107,107,112,104,100,112,102,97,108,95,111,106,98,110,110,92,104,102,95,101,73,111,121,114,107,109,113,105,95,108,95,117,107,107,108,102,114,104,100,93,104,105,83,107,102,120,102,105,98,112,115,102,94,98,95,106,94,99,96,93,105,102,100,103,105,96,95,110,111,104,107,93,109,97,93,106,114,111,99,107,96,103,103,107,104,101,114,102,107,113,98,108,103,103,109,110,106,105,108,104,120,86,95,109,109,91,101,94,98,109,104,108,98,79,103,123,105,119,122,94,103,86,120,98,99,102,113,96,97,98,108,112,101,112,88,91,107,106,101,95,102,95,110,96,99,104,93,102,120,93,102,100,98,95,97,84,105,95, +626.69037,106,100,98,107,109,112,112,95,110,104,108,106,107,125,120,118,92,102,103,109,100,98,93,92,130,109,108,100,78,106,119,102,94,111,118,116,110,93,106,101,100,109,100,94,112,113,102,108,95,112,113,103,92,101,113,107,82,105,105,90,100,107,100,104,106,121,96,109,112,95,108,97,109,103,109,116,103,98,109,105,102,102,98,108,90,112,93,118,101,103,79,91,99,88,91,102,101,117,105,99,100,108,120,104,103,106,89,111,100,100,104,103,100,112,96,110,107,111,111,108,99,108,104,103,105,104,108,103,112,101,99,103,100,77,99,85,96,105,97,104,103,111,106,81,95,98,111,110,95,71,102,103,106,105,106,99,92,99,109,116,109,102,106,91,98,99,107,97,87,111,101,99,109,102,101,108,99,90,107,98,98,104,101,105,122,98,101,103,99,101,98,101,96,106,105,102,112,103,108,106,115,108,94,110,106,101,102,97,100,115,102,106,112,105,101,107,105,101,106,95,110,104,103,118,105,112,107,90,101,99,104,97,94,110,109,100,99,106,93,104,95,118,119,95,72,111,94,101,101,104,103,113,101,106,104,112,105,98,99,97,94,102,96,108,107,98,112,99,103,103,106,101,118,103,103,106,109,111,108,95,106,105,107,109,108,106,108,110,111,86,94,107,106,114,112,110,111,103,110,105,102,107,112,116,102,116,95,114,113,97,97,109,99,97,121,96,104,105,96,111,107,104,109,101,109,104,99,105,112,117,107,105,104,93,101,95,104,105,90,116,109,91,108,102,99,113,111,107,107,109,104,116,108,103,114,110,104,101,110,103,106,110,111,100,102,93,96,101,120,132,98,110,105,107,101,97,117,94,105,105,93,104,105,107,104,99,114,110,110,96,105,94,103,125,91,94,93,98,102,109,109,111,101,116,103,101,113,116,103,105,98,95,104,104,110,99,98,99,105,109,96,116,93,103,122,93,94,104,110,107,93,77,97,92,113,116,109,87,95,102,106,100,103,102,105,112,110,100,123,100,106,98,94,108,111,105,106,107,100,97,99,108,102,122,101,102,116,103,91,91,122,98,96,93,114,92,106,107,102,104,115,104,116,104,107,100,106,109,103,108,108,109,108,105,99,102,109,106,98,105,105,112,95,113,95,103,87,110,105,117,107,113,109,97,103,101,105,95,96,99,101,108,110,101,111,96,108,113,96,118,112,108,116,96,102,112,111,108,105,117,106,113,102,97,125,92,114,103,94,94,100,124,95,94,97,101,117,108,104,106,110,101,98,97,124,106,117,112,104,117,106,81,103,101,114,108,112,97,90,113,103,109,110,110,114,112,108,132,111,99,120,104,106,106,115,108,105,115,98,101,109,107,105,96,109,96,90,113,101,112,89,105,110,99,142,109,104,104,102,110,115,108,110,100,106,89,101,106,102,110,106,99,106,115,106,98,110,112,133,110,117,113,113,98,99,104,101,105,111,99,102,108,100,117,91,99,106,106,101,99,104,108,109,103,100,105,115,103,104,94,103,109,107,110,104,111,121,102,129,90,102,103,107,108,105,102,94,107,90,106,100,106,111,110,107,101,106,107,108,97,106,93,100,102,110,104,96,113,92,110,113,101,113,96,94,105,97,106,93,90,104,104,106,113,98,109,113,103,94,103,104,110,94,100,100,102,108,95,114,98,109,105,122,106,106,122,98,104,100,117,108,94,108,95,107,112,108,115,113,101,101,104,100,103,95,104,98,103,103,108,115,99,84,107,113,112,98,109,100,104,105,111,103,110,104,107,101,106,113,109,108,100,95,97,107,116,108,100,103,105,102,114,107,108,113,111,110,111,110,99,82,97,96,116,102,105,103,104,114,100,109,104,107,117,110,112,116,104,100,97,113,109,102,112,108,100,103,102,101,121,94,107,94,102,104,94,98,91,100,98,102,106,107,104,91,103,92,106,102,111,91,81,111,104,108,100,98,77,114,108,104,102,92,96,104,105,100,107,100,111,99,101,107,97,106,114,98,138,112,101,108,105,107,123,102,105,92,113,97,116,106,107,105,107,104,99,95,95,98,111,108,118,95,112,99,114,117,106,112,104,104,103,95,121,112,99,109,105,113,104,107,99,106,116,107,110,116,103,104,106,106,96,103,110,101,104,112,104,87,101,103,105,102,102,108,106,110,102,93,98,108,109,95,108,107,100,90,105,106,103,101,102,101,106,111,95,111,89,102,100,105,107,104,111,104,96,121,105,103,96,110,100,120,99,101,103,104,106,96,97,93,103,100,99,111,103,97,92,100,108,102,114,95,100,106,107,86,100,108,98,110,110,100,111,113,104,118,113,95,103,109,97,108,101,103,110,103,116,106,108,105,119,110,115,95,118,105,113,99,120,103,110,114,99,111,118,118,98,103,110,108,117,101,112,108,106,109,112,102,115,122,112,105,109,87,103,107,95,101,108,88,104,91,111,101,100,104,102,114,109,104,98,106,95,101,101,105,103,96,109,116,90,96,104,113,111,98,103,113,113,108,123,125,108,104,102,109,108,97,105,104,112,99,106,103,102,102,96,109,82,110,115,106,93,98,102,97,108,91,104,101,105,100,119,104,102,102,99,115,104,112,96,111,110,115,123,99,107,103,106,104,93,99,97,97,102,102,101,115,87,98,93,106,95,99,119,114,107,104,95,93,88,96,109,101,92,104,101,108,123,101,98,106,114,114,109,113,106,100,106,107,103,82,109,111,108,100,105,91,107,98,112,95,113,105,114,121,107,101,89,99,101,112,103,105,91,117,83,110,106,105,110,96,101,117,106,108,96,91,143,97,101,112,90,100,100,96,117,102,107,108,109,103,114,84,99,102,102,96,101,114,115,114,106,118,101,102,111,95,112,106,113,104,109,107,86,103,110,99,106,112,99,112,120,104,107,91,109,106,117,128,121,100,80,112,108,106,103,110,105,96,111,100,116,105,85,114,112,96,106,110,110,96,108,106,113,111,109,99,106,107,98,111,96,101,95,124,101,91,93,101,95,112,101,109,104,99,67,105,106,113,104,121,97,99,124,106,100,107,111,110,111,108,118,91,87,91,99,107,100,110,110,111,104,121,96,102,83,101,91,109,107,109,112,112,108,98,109,97,102,100,97,112,109,99,103,100,102,104,114,117,87,84,101,96,112,109,103,109,106,116,90,102,110,100,115,106,118,99,108,103,102,96,113,96,102,92,100,100,109,107,106,108,113,102,98,104,99,106,99,102,111,108,111,101,97,120,114,109,95,106,109,103,113,109,107,83,100,110,92,117,91,112,106,95,94,110,102,109,116,135,97,103,103,109,108,94,90,97,104,92,106,110,102,104,109,96,116,109,105,96,108,105,94,104,106,111,99,99,102,100,116,104,125,102,105,98,103,99,121,96,110,100,94,109,115,110,103,114,109,105,108,113,98,108,101,103,102,94,98,110,103,100,106,105,101,109,103,94,101,109,121,103,102,104,102,102,104,122,99,85,109,95,94,124,107,102,119,102,100,112,112,106,93,97,110,117,106,95,109,103,73,109,71,110,120,96,103,102,126,109,97,111,104,99,109,120,107,100,106,125,112,103,100,116,113,108,110,103,99,104,116,107,107,107,98,102,101,111,100,103,108,110,98,87,108,111,102,101,102,105,107,96,130,109,104,100,117,74,100,98,106,98,106,115,110,102,98,99,104,109,120,99,109,113,109,109,108,80,101,110,100,104,119,111,109,91,115,99,104,103,109,115,90,106,127,101,109,116,105,111,104,93,113,97,95,104,97,101,109,97,108,75,107,106,109,101,102,104,109,105,107,118,111,104,107,102,104,112,95,106,101,106,99,93,113,101,110,114,110,109,118,96,104,104,102,108,91,103,92,91,105,92,105,103,104,109,110,99,110,103,108,103,106,86,108,108,97,104,105,101,101,106,117,113,96,118,115,107,108,97,104,107,105,89,117,109,112,110,108,96,106,106,111,100,90,112,103,99,112,116,108,108,93,107,102,93,98,105,95,111,102,109,100,94,100,112,96,106,130,106,109,95,102,95,97,115,92,110,100,110,98,110,104,98,110,104,96,108,92,105,105,100,121,94,117,102,101,95,103,106,108,98,113,87,110,113,101,108,114,113,109,113,110,101,106,107,106,93,113,109,101,100,89,105,104,114,106,104,101,105,119,104,107,110,115,114,109,94,107,120,109,104,111,109,97,126,106,102,85,100,106,104,95,106,110,98,116,104,109,106,103,111,119,110,108,104,106,92,109,112,104,96,123,96,76,107,107,91,106,106,110,110,97,104,107,99,97,108,113,109,110,109,97,101,105,116,103,95,105,110,97,102,110,112,113,92,106,120,104,89,98,108,102,95,108,109,102,96,98,111,103,112,107,95,104,107,104,104,99,112,104,97,96,110,94,105,99,95,91,109,107,109,104,94,61,99,106,104,110,99,117,106,117,99,101,108,98,101,106,110,98,106,93,102,99,99,104,124,106,90,101,111,106,97,102,101,114,94,86,95,95,107,102,97,112,120,120,100,91,104,126,120,92,103,109,106,88,106,98,98,90,105,94,98,106,94,95,94,92,99,109,102,111,105,100,113,121,105,108,108,116,98,108,101,96,102,101,94,93,106,102,94,102,110,112,100,105,100,111,100,113,95,108,101,94,114,86,103,95,103,110,95,108,102,110,109,104,116,103,92,102,97,95,111,95,93,95,100,101,86,100,92,112,102,99,102,110,117,114,103,93,99,117,112,110,96,110,109,108,111,113,112,98,101,119,117,91,116,96,94,103,104,103,110,91,109,92,102,95,104,99,101,97,104,111,75,110,98,105,110,113,120,94,100,89,102,90,104,102,116,114,110,117,107,107,97,95,103,95,100,98,121,104,101,103,102,112,115,104, +626.83148,91,129,101,106,110,94,100,109,94,83,110,105,97,98,109,92,91,121,110,102,91,93,106,104,90,105,97,115,109,106,110,106,103,93,103,99,98,107,91,102,95,97,109,116,112,110,109,75,94,101,111,99,99,92,109,98,108,90,104,105,106,123,106,98,98,113,101,103,97,90,105,99,101,97,107,108,110,105,106,98,98,103,105,117,91,101,98,95,106,118,106,95,100,117,98,95,101,111,108,103,102,109,97,95,102,96,109,121,112,105,111,93,112,101,100,91,101,112,110,103,104,103,110,103,124,113,108,101,121,101,123,102,90,113,103,98,102,104,97,101,101,109,88,97,105,91,123,99,100,101,93,108,116,100,101,117,97,103,94,91,96,97,110,96,103,105,100,95,100,98,102,104,107,90,104,105,93,96,107,105,97,99,102,97,96,104,99,87,65,96,94,101,100,98,100,104,106,101,99,112,101,112,106,92,96,89,107,94,105,107,86,100,95,94,102,109,90,99,109,87,107,110,98,88,94,106,92,111,97,110,66,102,108,109,96,111,109,97,109,103,104,117,119,89,102,99,104,106,99,105,107,91,105,111,86,106,94,100,94,112,90,105,98,91,91,106,113,104,96,106,99,102,112,103,104,101,101,99,97,103,97,107,110,106,105,104,90,107,105,105,99,99,114,115,113,95,110,114,100,108,91,97,106,115,98,111,101,110,88,102,94,98,102,101,105,116,113,111,114,109,113,99,106,94,94,100,80,112,103,108,113,107,123,95,105,110,119,82,89,94,103,97,104,102,115,98,106,98,103,99,108,109,134,103,114,98,111,100,112,104,115,99,104,95,94,108,110,112,107,111,101,98,94,104,110,99,104,97,108,94,108,96,102,96,109,88,101,101,99,101,113,103,95,117,104,96,100,112,97,109,95,107,110,102,105,109,105,109,88,97,100,109,97,107,111,96,103,103,92,97,95,104,98,106,114,116,98,87,102,111,99,76,103,99,105,111,109,90,92,104,108,106,102,104,103,109,99,98,113,131,99,111,104,120,102,102,102,104,113,99,94,98,107,114,116,107,99,116,99,89,106,110,103,91,109,100,96,108,98,113,98,94,107,104,109,102,112,103,102,97,115,124,108,95,97,96,112,102,104,99,99,99,94,109,91,121,100,103,121,104,114,98,104,107,114,101,106,97,96,108,112,108,99,97,120,104,102,100,118,100,101,99,108,103,98,103,110,93,97,105,93,102,105,98,116,97,107,91,105,115,109,111,104,103,104,105,106,103,104,106,101,112,82,92,104,102,109,99,103,112,92,91,105,100,117,99,105,105,104,95,106,99,98,91,100,106,100,105,105,92,119,108,112,109,117,105,94,95,102,92,110,113,94,86,100,96,108,109,103,103,94,93,118,120,102,100,91,113,99,101,101,99,94,100,108,103,93,110,96,120,107,117,99,95,103,97,103,103,102,106,116,109,97,96,98,107,99,94,103,104,105,99,99,104,97,99,101,110,105,111,118,116,99,112,93,108,107,97,107,103,103,98,100,112,108,108,123,102,108,89,108,104,107,105,98,104,109,114,114,99,115,81,107,101,105,100,108,110,100,93,103,104,108,110,109,109,102,99,106,106,103,100,95,96,104,103,96,101,104,102,80,103,109,107,90,105,108,91,104,104,102,102,100,111,99,106,102,98,106,98,110,90,100,106,112,100,107,104,110,102,96,96,96,94,116,99,102,105,106,100,107,97,94,109,106,112,101,110,108,96,100,108,99,111,105,94,102,109,103,101,104,101,111,106,99,96,91,69,107,115,100,102,101,106,122,105,102,106,100,112,93,105,100,105,114,103,106,106,119,109,120,67,100,97,101,108,113,117,117,99,106,113,107,104,110,96,91,108,111,102,104,104,110,109,105,107,100,132,110,100,112,99,95,99,107,95,90,99,99,106,101,105,100,118,98,105,118,113,93,106,89,99,99,87,99,106,95,102,115,104,104,112,103,91,95,100,106,111,107,100,97,97,109,98,110,113,103,106,111,100,112,104,99,102,95,95,99,100,102,108,94,107,107,100,94,87,97,102,104,109,100,96,122,116,97,105,86,113,110,101,105,87,91,109,109,113,105,107,101,108,110,106,104,103,105,99,98,107,107,110,111,112,100,96,96,104,104,109,103,102,102,91,119,89,106,96,104,93,105,110,103,107,99,99,106,105,99,105,109,110,105,96,101,123,101,106,101,93,109,102,103,99,90,95,112,103,94,100,106,107,102,100,102,114,102,106,106,97,109,106,94,94,101,100,96,103,110,105,98,103,104,118,114,95,104,95,98,110,114,98,117,106,107,112,117,74,111,94,94,101,113,112,112,110,117,104,107,112,99,94,91,107,109,107,124,96,121,100,110,107,112,111,116,119,105,106,108,122,96,101,91,105,114,117,100,98,100,100,105,102,104,107,99,101,107,104,101,97,113,98,111,104,103,107,106,111,97,95,120,118,103,117,112,104,91,108,109,105,96,101,107,100,94,96,106,116,122,105,112,109,101,125,105,107,107,90,101,111,93,115,113,104,97,113,100,103,103,105,105,100,105,102,81,82,112,103,100,90,101,103,93,114,109,118,96,104,91,107,98,100,117,100,115,98,104,106,106,109,104,107,101,108,103,103,98,102,107,115,111,114,117,112,101,114,113,105,109,116,102,111,117,104,104,108,110,127,125,108,99,101,103,103,109,105,103,121,111,100,92,102,111,105,121,101,109,107,112,129,99,112,105,105,101,101,101,121,103,105,100,103,98,92,104,105,104,116,109,110,108,100,104,106,102,108,91,92,110,103,100,111,98,104,101,94,98,104,97,109,108,103,105,105,103,117,101,113,108,113,104,102,113,108,105,105,110,103,94,107,109,99,98,102,102,122,117,104,109,106,100,106,101,111,99,108,105,112,103,103,99,100,117,109,89,111,114,117,92,103,95,105,97,105,90,111,77,100,116,97,109,100,112,94,94,105,109,112,92,95,103,109,103,99,92,99,108,110,118,119,101,87,100,86,96,108,103,112,107,103,103,104,104,108,111,99,103,112,114,106,113,106,94,113,106,108,95,122,87,92,104,102,102,104,104,101,98,105,103,109,116,96,118,117,92,106,104,105,112,99,107,112,98,87,107,98,115,109,107,99,120,97,87,103,96,66,101,99,114,111,108,106,104,101,98,111,102,113,103,130,107,106,104,105,101,110,107,106,109,103,98,102,102,98,99,99,98,109,106,100,108,107,117,102,109,112,106,99,113,107,96,99,109,110,105,103,103,105,100,104,102,93,109,97,114,102,103,104,108,105,105,108,106,102,87,109,106,110,96,83,92,102,92,104,104,112,99,91,110,102,105,99,113,95,93,94,103,93,106,98,102,100,105,109,109,107,89,114,78,107,107,99,99,103,105,95,105,98,106,106,100,100,98,98,100,102,93,107,103,119,103,105,103,107,102,115,93,106,99,96,122,99,98,104,101,109,105,105,112,105,102,103,111,104,103,95,99,111,108,103,75,102,113,107,104,107,104,110,111,120,99,98,105,104,105,104,112,116,105,105,86,113,112,100,120,103,107,112,106,97,109,98,92,114,101,106,113,112,108,110,102,96,103,108,100,112,111,95,108,101,106,107,107,74,101,98,102,100,96,102,97,110,97,90,101,103,92,107,97,113,104,102,104,110,101,108,99,111,107,109,112,83,103,103,104,108,116,112,114,105,96,101,102,112,103,96,105,113,109,105,105,101,107,97,116,90,98,88,89,115,107,95,119,90,90,112,105,98,95,95,111,99,100,99,100,109,100,100,100,108,99,105,112,87,108,106,103,109,103,105,91,106,108,108,113,113,95,95,103,117,108,100,99,109,114,97,98,103,106,103,107,97,94,108,92,108,101,101,100,105,111,105,91,103,106,91,106,98,101,101,105,101,76,88,119,103,117,101,109,95,106,102,97,109,101,117,101,87,92,102,106,105,99,106,97,98,105,101,98,88,102,105,91,99,101,96,98,106,95,99,105,125,97,113,101,112,108,97,111,101,113,107,122,115,95,98,107,109,109,99,112,118,104,102,123,101,96,106,99,104,105,105,98,124,93,107,103,104,100,98,109,98,106,101,107,99,102,109,86,116,103,90,110,102,112,104,104,110,113,109,99,108,107,91,100,97,114,96,108,110,98,103,111,98,111,98,129,108,100,127,103,119,102,98,100,111,107,105,100,106,97,114,101,99,106,102,97,106,113,101,99,93,100,96,98,109,101,113,101,100,107,106,109,107,111,95,104,94,105,96,101,112,91,100,117,110,88,108,106,97,107,116,108,104,108,96,100,100,93,109,112,104,109,106,102,103,99,98,99,97,100,111,97,102,99,102,96,113,107,104,108,106,103,106,104,116,96,105,115,114,93,122,97,105,109,110,100,103,102,100,100,98,111,98,94,99,121,69,99,88,113,111,99,113,92,100,94,100,112,103,108,104,102,111,100,109,94,101,117,108,96,111,101,102,98,110,106,106,120,109,79,90,82,99,94,108,112,102,109,110,106,111,90,122,102,111,106,79,100,109,104,98,113,99,109,89,102,89,110,98,111,94,107,106,104,108,100,106,106,109,102,95,116,104,106,103,112,101,110,113,93,105,106,86,98,97,109,112,114,99,109,101,104,96,92,99,104,98,110,92,113,107,105,86,101,72,98,94,94,103,106,101,105,92,102,95,106,106,106,100,97,100,99,103,102,106,105,100,100,100,108,108,102,106,103,105,102,132,108,110,89,102,114,121,94,104,98,107,104,116,106,109,100,103,106,98,100,119,105,136,86,100,101,98,81,102,99,100,103,95,110,100,94,109,95,106,106,104,93,108,111,95,101,105,102,105,116,108,96,96,102,101,116,106,113,91,106,119,101,93,116,90, +626.9726,101,106,114,107,88,105,91,112,106,114,111,99,105,117,110,113,98,113,103,104,118,97,113,79,102,96,106,94,97,106,101,106,91,105,113,98,110,100,107,85,106,111,99,130,107,111,119,109,104,113,101,104,94,104,104,97,95,104,80,110,101,97,111,97,102,104,102,95,98,116,98,108,91,109,100,101,96,97,108,104,86,95,115,118,111,101,105,113,91,96,100,104,111,106,99,97,92,95,108,104,111,102,98,91,99,98,99,108,105,95,122,92,109,106,101,117,104,89,99,106,116,106,110,109,104,122,105,108,98,99,111,108,94,116,105,92,105,105,112,102,97,120,94,103,97,103,104,97,96,104,95,116,110,100,105,101,94,88,101,98,104,95,106,104,101,113,100,92,107,92,109,111,96,106,108,103,112,94,107,107,103,110,108,112,103,94,104,101,100,100,94,100,109,98,105,106,111,108,94,106,105,103,86,102,98,112,102,117,106,108,105,110,114,104,97,101,109,95,105,97,122,128,104,109,103,105,104,115,107,111,97,116,103,99,104,110,100,113,112,94,96,95,112,97,103,137,98,97,105,94,105,109,91,99,101,103,100,114,96,108,86,103,110,103,104,110,102,108,104,91,99,92,102,117,108,97,91,109,106,100,99,107,111,93,106,102,93,93,96,105,107,105,102,107,110,115,84,111,99,92,98,104,107,110,94,118,109,106,109,97,96,97,103,96,108,122,123,84,125,112,116,94,116,104,108,97,124,97,106,108,104,100,103,95,96,112,90,113,95,99,96,120,93,102,105,96,104,123,105,95,110,95,101,113,110,98,118,100,106,99,107,103,100,109,102,105,107,125,102,99,103,106,100,115,104,92,105,103,92,104,111,99,99,109,130,96,89,95,113,106,104,103,104,108,96,94,104,90,121,111,104,108,105,83,96,103,100,114,101,99,98,93,107,106,113,92,105,100,101,103,94,110,112,107,94,96,98,106,106,111,100,104,104,106,87,94,115,103,100,108,98,97,100,106,104,102,105,103,100,110,105,107,98,114,105,96,102,120,106,88,99,97,119,111,104,101,106,112,113,109,117,107,122,108,99,109,90,105,102,106,99,105,102,103,100,113,115,108,100,99,91,101,107,111,97,110,84,110,106,81,113,83,103,108,103,109,123,105,116,112,103,100,107,96,108,104,96,97,111,103,109,103,97,104,100,87,113,108,107,106,98,106,110,97,94,114,101,101,108,103,99,113,103,112,108,106,101,117,95,101,91,115,112,107,109,104,101,118,99,115,107,109,102,101,97,101,108,118,97,89,98,99,96,116,109,110,98,96,94,99,103,112,102,97,74,107,105,102,108,100,106,103,98,97,116,98,109,109,110,116,80,108,116,99,96,111,103,96,104,107,96,107,106,108,114,101,106,102,104,107,108,109,102,107,123,107,95,122,94,114,110,104,99,98,102,102,99,94,108,90,101,100,100,98,104,102,103,88,104,100,101,106,98,120,107,105,101,106,107,105,97,103,119,128,86,104,120,116,106,95,116,100,104,110,113,112,112,98,115,102,94,99,117,109,105,102,105,103,98,113,95,102,96,109,92,100,119,104,113,104,103,108,109,105,105,118,105,107,102,105,108,113,96,109,98,115,109,113,104,102,109,90,105,115,94,95,116,100,106,103,105,102,110,98,94,111,101,95,106,90,104,100,110,114,114,114,105,107,90,116,113,98,103,99,107,106,99,95,109,101,104,98,98,104,92,115,101,109,104,107,117,103,102,101,96,109,118,96,114,106,109,96,109,106,106,112,104,107,104,116,105,103,108,112,100,102,101,106,104,91,106,101,101,106,113,97,94,105,105,88,106,91,95,94,99,100,104,110,103,106,104,103,93,93,102,107,98,117,107,101,105,101,98,106,106,102,107,87,117,109,115,97,111,95,102,98,94,96,90,106,101,109,99,103,108,112,107,98,99,95,108,96,100,110,114,99,99,89,110,105,103,103,102,105,121,104,101,96,110,107,92,103,99,100,122,93,93,101,106,105,114,100,101,107,103,103,106,108,113,107,110,108,111,91,103,103,93,99,102,109,103,94,99,109,108,105,101,110,95,122,98,100,100,96,94,89,107,104,87,93,104,104,106,110,100,115,97,104,106,102,94,106,96,94,100,105,113,103,108,104,104,108,110,107,107,86,102,115,104,99,110,100,97,98,108,106,99,112,105,99,87,110,109,105,105,108,100,108,109,105,100,109,101,108,103,98,92,88,88,102,97,105,105,95,92,104,103,102,98,113,105,116,102,100,101,109,97,114,91,99,103,106,104,110,90,108,98,91,113,102,105,102,106,127,135,103,106,119,115,100,108,120,97,105,115,94,96,117,117,107,123,108,105,111,119,98,113,113,115,102,107,105,122,109,116,110,86,114,100,103,102,116,109,106,105,113,104,93,95,93,102,106,108,112,96,116,105,80,95,105,93,105,96,119,127,106,117,99,129,112,87,83,106,100,95,104,105,109,117,109,117,102,101,103,101,112,105,92,100,101,114,120,117,94,114,102,104,102,99,100,102,107,100,104,104,117,109,102,105,104,106,108,94,89,87,94,103,102,115,98,112,89,98,113,95,103,105,104,108,105,106,109,112,113,113,105,112,100,105,103,102,103,107,108,111,114,105,109,112,103,105,100,106,95,97,94,102,101,121,111,107,117,105,105,108,117,105,104,106,91,95,109,99,92,96,113,109,105,87,91,104,86,102,105,132,91,105,100,107,101,110,102,108,139,107,107,91,108,111,114,112,116,104,108,108,91,104,115,102,117,97,103,105,107,100,102,107,105,99,98,116,92,99,113,113,86,110,109,99,108,106,104,116,107,105,108,111,111,93,108,115,98,95,107,114,104,110,116,111,113,106,102,99,108,100,102,97,113,104,122,106,96,98,100,98,101,122,105,106,105,100,97,110,109,99,110,102,115,102,94,98,104,90,110,104,99,102,104,98,106,95,106,109,94,103,108,104,104,108,107,116,107,100,102,96,107,108,112,107,111,97,88,106,96,104,106,119,117,113,98,97,90,117,104,105,100,110,90,112,113,106,105,103,91,107,111,95,74,112,94,113,107,108,117,117,94,115,95,111,103,104,104,105,88,87,102,102,96,103,95,97,97,95,108,100,108,102,94,83,76,108,115,104,108,113,99,100,97,112,110,104,91,102,107,105,106,99,104,100,106,101,109,74,112,95,103,102,110,93,104,116,98,98,97,110,94,110,100,110,91,103,109,106,109,116,108,103,126,97,111,99,120,111,101,104,104,99,110,115,101,105,103,99,102,99,94,109,102,101,103,103,112,105,93,100,107,118,101,99,95,108,107,107,99,99,119,102,96,116,92,98,106,101,98,107,83,104,103,97,95,113,103,103,90,98,104,91,108,119,95,98,104,102,110,108,109,103,96,116,111,105,100,98,79,98,108,96,101,95,102,103,101,109,110,100,105,116,96,105,109,112,94,115,98,102,79,118,102,104,111,106,100,107,97,115,112,114,113,111,97,98,107,102,106,116,94,105,102,92,116,105,109,113,102,98,111,102,92,113,112,107,95,101,118,101,124,84,78,91,110,109,110,93,117,114,112,121,114,100,108,99,99,113,109,104,98,106,103,105,125,101,115,99,106,103,91,112,103,103,110,93,116,98,103,101,106,105,97,100,101,110,98,113,91,106,100,113,113,104,105,101,103,100,104,85,104,112,106,100,99,102,113,110,91,113,70,107,105,126,98,108,100,105,106,102,98,111,109,103,109,101,102,110,106,95,104,105,92,93,100,100,87,99,107,110,119,116,107,110,109,115,109,103,120,98,104,110,102,115,108,91,112,98,99,103,97,118,132,112,110,104,106,120,102,98,106,103,92,108,117,131,107,97,108,109,102,93,92,114,102,107,106,108,106,110,99,107,99,103,104,85,97,115,101,109,143,107,94,113,109,85,106,101,101,95,102,100,107,95,107,113,103,117,100,103,82,111,107,92,98,112,94,94,102,109,98,103,103,131,107,121,105,104,109,99,117,110,98,107,114,83,101,99,90,100,104,101,97,110,98,117,98,117,102,98,110,102,90,107,116,105,104,102,105,109,105,110,105,108,108,98,106,97,104,99,115,117,96,106,92,108,93,101,84,112,110,108,103,96,83,109,96,109,99,100,87,102,99,99,93,111,106,98,89,102,117,108,108,109,100,112,101,117,109,105,103,103,106,106,100,98,102,109,95,94,107,102,96,115,100,109,99,108,91,96,83,111,106,97,97,107,110,110,101,113,112,109,101,106,103,105,98,107,99,102,104,100,104,102,123,116,106,108,111,115,97,111,107,107,96,104,95,121,96,95,101,116,102,104,98,92,110,114,103,111,110,108,110,109,113,108,104,122,109,103,106,116,102,109,97,98,91,95,97,99,102,108,108,100,94,113,104,105,98,112,91,93,106,106,94,104,105,107,105,118,100,107,109,107,113,109,110,103,96,108,101,99,102,107,103,108,99,97,102,92,99,104,115,106,94,97,99,100,114,95,99,107,111,109,99,101,112,123,106,112,105,99,104,95,105,113,113,100,102,110,99,102,96,109,98,107,98,110,117,108,105,104,113,100,102,107,111,94,110,112,110,110,93,87,85,99,109,93,99,103,110,110,108,98,109,101,98,108,94,92,113,99,105,108,96,96,109,114,99,110,98,108,103,102,111,117,117,104,92,104,103,107,99,102,116,96,117,113,103,113,103,94,94,101,106,105,103,100,123,95,106,106,110,109,113,105,100,102,97,97,99,108,111,100,105,94,101,99,104,103,108,113,112,109,103,107,99,111,95,110,93,117,99,109,96,83,101,104,109,101,106,91,110,99,94,95,99,95,129,100,113,87,104,109,104,98,103,113,95,120,115,99,104,82,99, +627.11371,108,93,100,87,89,107,96,111,89,109,102,90,113,94,119,111,102,114,107,101,92,98,108,104,125,119,103,113,106,106,102,104,99,110,107,109,122,98,111,113,110,105,105,103,95,117,105,108,114,114,103,104,121,96,102,118,101,89,109,102,92,100,104,108,100,90,104,108,103,94,96,113,111,99,109,101,92,95,99,98,110,111,111,98,106,100,92,98,98,93,104,117,104,96,97,101,100,114,94,83,114,110,93,98,92,101,108,114,114,106,121,131,108,109,106,95,104,104,93,102,105,103,108,112,98,117,110,99,104,112,105,111,112,101,97,102,111,95,106,113,99,102,97,108,99,100,111,98,103,91,98,110,97,86,107,105,105,98,109,97,108,103,104,104,110,108,108,104,102,103,104,102,101,95,97,101,100,80,98,95,110,99,106,114,115,102,99,88,103,90,109,110,106,102,100,105,107,90,97,116,120,97,113,118,92,105,96,113,106,86,103,102,102,98,107,100,96,99,104,118,105,122,106,91,98,103,105,109,103,105,96,94,117,114,94,100,103,113,103,96,104,101,108,110,105,103,112,110,102,106,95,98,99,94,109,116,95,101,95,99,99,107,103,106,107,91,115,92,109,98,98,103,102,121,105,106,98,95,102,101,111,104,100,98,94,103,104,110,101,109,108,98,112,91,116,120,107,116,111,96,98,101,99,114,94,108,100,114,108,128,106,103,102,91,99,99,98,105,101,95,104,98,108,100,100,99,100,107,108,108,93,95,108,93,102,96,112,103,99,83,101,100,102,95,106,110,109,113,93,101,88,102,104,108,101,109,101,114,105,95,99,99,103,106,109,104,99,118,99,113,101,105,108,108,96,94,101,108,109,111,109,101,109,111,104,88,94,100,113,86,117,92,98,108,100,100,94,100,93,118,101,109,109,108,108,100,109,124,111,97,104,104,102,105,94,103,102,101,89,90,117,100,103,92,105,100,99,104,105,102,102,94,105,98,117,109,89,113,98,101,111,104,97,102,96,105,107,96,100,99,106,107,98,103,110,98,105,104,99,105,102,119,109,120,110,105,113,116,100,108,70,104,117,98,83,104,103,110,112,97,109,111,107,106,95,100,121,115,107,94,120,95,95,113,98,83,101,111,103,116,106,85,100,103,94,90,97,100,116,104,103,109,109,117,95,101,115,100,105,100,104,95,128,100,100,92,110,103,107,104,98,92,102,110,105,99,103,102,117,106,98,102,91,105,106,99,107,108,101,97,92,113,109,93,97,95,120,114,108,101,107,87,102,96,106,106,83,103,98,106,97,88,95,125,99,99,115,104,117,100,100,99,96,96,107,96,104,100,104,94,119,106,102,93,106,103,104,107,104,100,99,99,106,104,95,101,101,99,103,127,100,105,100,94,101,85,107,107,98,100,109,110,113,99,106,108,97,119,94,104,107,91,92,94,98,104,110,105,100,101,101,106,91,105,94,101,105,100,103,103,110,115,99,118,106,108,102,102,106,99,99,104,101,109,99,115,112,105,99,93,125,104,109,104,104,100,92,92,104,94,117,99,106,102,100,80,97,95,104,113,116,106,108,108,102,86,100,102,110,77,100,103,100,106,105,111,98,109,98,110,108,97,95,109,98,103,95,109,105,103,109,108,100,117,105,103,111,104,95,110,121,109,86,93,103,101,105,90,109,110,104,108,105,107,109,108,94,108,100,99,109,99,111,104,107,97,102,89,102,109,106,118,116,110,96,113,96,98,70,92,110,113,104,100,96,98,108,110,103,106,108,110,105,93,96,100,108,99,107,120,85,121,92,101,101,100,116,107,113,105,110,101,98,101,112,112,109,94,90,107,115,116,114,111,102,101,106,109,90,90,102,108,103,111,117,105,107,95,113,103,93,100,102,111,101,112,108,95,102,105,96,113,109,99,100,108,102,105,100,109,113,97,103,102,98,94,99,104,100,78,104,107,93,105,108,104,106,125,123,105,133,117,115,94,91,110,100,103,96,98,121,100,109,102,108,112,113,109,106,99,111,107,111,102,110,99,116,110,110,108,89,106,115,104,94,109,106,113,93,101,113,102,119,104,110,93,100,95,106,109,128,92,106,112,96,99,102,109,99,104,104,116,98,118,103,110,101,99,105,118,101,108,92,100,109,104,102,106,110,110,105,70,107,99,107,99,108,106,95,112,120,104,116,98,109,105,104,110,128,111,108,108,106,93,100,96,118,87,104,110,88,112,103,111,114,99,96,112,102,100,84,117,109,110,93,113,105,98,106,102,93,107,104,98,115,103,91,105,105,117,105,104,92,108,98,104,114,110,96,125,109,109,105,96,111,117,115,98,104,100,107,107,106,108,114,104,95,103,103,112,92,111,108,114,112,114,106,116,99,78,120,104,107,100,107,96,106,111,107,105,99,104,96,110,98,94,116,104,104,94,98,114,100,96,102,103,92,106,100,100,105,102,102,103,111,113,111,111,107,103,105,109,98,86,93,108,99,98,96,96,107,101,105,119,99,96,103,102,84,100,103,108,113,115,102,101,99,100,98,99,98,107,96,88,102,94,99,93,106,112,104,116,110,99,101,101,102,109,105,83,114,102,98,112,104,101,97,93,110,102,100,100,103,97,103,113,109,113,107,105,96,87,109,86,110,103,105,106,104,107,111,108,114,98,98,104,106,100,102,94,100,100,109,108,97,107,98,91,107,99,100,100,109,104,100,96,89,99,116,97,102,116,110,97,94,93,106,103,106,116,108,121,99,103,109,104,102,95,111,104,104,97,101,114,97,101,97,95,104,107,101,89,109,108,93,111,96,106,106,108,99,95,103,95,101,107,108,103,95,109,108,112,109,103,104,113,94,102,107,119,99,109,92,103,98,106,123,111,95,102,102,103,114,104,89,108,107,110,95,101,105,113,104,100,100,108,89,103,110,107,98,108,91,86,105,102,103,108,119,104,96,111,98,104,103,102,109,102,101,103,101,96,98,91,105,109,107,106,105,112,112,105,105,93,106,103,102,101,110,100,99,98,99,113,93,117,103,109,98,96,102,99,98,96,92,92,113,105,101,108,112,109,98,109,96,109,96,126,113,102,101,107,99,106,103,97,116,108,108,109,109,103,102,94,102,101,99,111,92,104,100,99,99,100,101,97,115,100,113,92,92,109,109,98,99,110,106,96,107,98,108,94,93,104,105,110,106,97,118,100,100,103,113,113,105,101,105,113,99,102,114,108,101,96,92,102,105,94,112,95,104,100,110,108,108,104,103,113,112,102,96,90,109,101,97,100,104,106,100,111,91,102,116,109,99,90,108,96,109,105,102,107,101,100,111,105,98,87,108,95,95,102,93,95,104,98,102,100,102,91,98,97,95,105,99,105,109,97,105,101,100,109,104,103,100,109,105,106,107,99,100,99,112,106,94,90,98,92,104,94,98,95,109,100,100,104,101,103,99,92,98,114,102,104,93,103,96,90,100,91,109,96,96,92,96,91,102,87,111,104,105,104,109,101,99,90,100,99,102,100,114,108,121,110,103,102,112,106,103,105,96,117,111,94,122,93,86,108,109,112,95,101,113,102,109,95,110,121,101,103,100,102,89,106,96,102,106,101,104,104,97,113,112,109,96,98,96,115,104,108,88,108,117,108,104,98,108,98,93,84,117,93,96,121,107,121,107,91,100,93,112,97,115,103,86,83,103,99,108,102,106,91,101,109,101,103,107,112,96,106,96,111,109,91,117,103,106,110,105,117,103,104,94,111,95,107,100,99,100,92,105,104,102,92,104,93,118,92,106,104,106,109,93,103,101,109,98,107,93,104,118,90,101,102,105,105,100,97,104,108,84,107,109,99,104,100,95,113,105,108,99,95,101,87,93,98,92,99,106,95,98,100,92,92,105,100,102,98,95,95,107,89,104,100,94,105,100,100,119,105,103,109,124,103,101,103,101,102,110,98,102,105,87,112,99,113,103,95,96,97,101,106,97,112,98,110,97,102,100,110,108,113,91,98,103,93,110,101,102,99,106,99,88,102,88,106,108,107,109,107,111,93,104,91,101,102,103,106,108,75,105,96,121,102,111,94,100,103,101,92,112,112,69,106,110,113,109,101,100,109,108,118,106,108,90,108,119,101,105,103,99,105,101,99,108,94,102,104,103,108,113,108,104,104,102,102,113,99,109,108,98,105,121,103,97,96,115,113,104,99,88,113,105,102,98,95,109,94,95,97,103,98,96,98,97,102,106,102,96,100,92,98,106,104,100,99,100,95,97,103,92,108,99,110,111,102,102,106,92,109,113,111,103,104,113,108,109,117,100,90,115,97,101,106,114,102,124,115,100,105,96,112,90,110,116,99,107,104,97,109,110,104,99,104,100,108,104,104,100,99,106,109,105,96,105,108,107,106,100,95,102,102,100,100,98,99,93,101,105,108,108,99,100,102,114,105,105,97,112,111,105,107,106,104,107,90,100,100,102,92,100,87,113,96,92,96,78,95,96,109,94,94,88,77,112,101,98,98,116,106,91,92,99,100,96,108,96,107,107,98,97,112,107,94,105,104,102,94,110,100,105,105,120,109,89,95,108,101,101,105,105,103,94,109,112,103,102,103,101,107,105,99,107,116,103,92,106,101,103,99,107,112,111,103,91,102,117,92,132,108,94,102,95,99,97,92,108,96,104,92,91,100,92,111,105,110,100,99,113,102,101,106,101,99,95,111,102,117,100,112,95,105,98,109,104,99,98,104,90,104,100,100,112,102,72,96,99,101,105,95,99,117,98,105,103,108,88,98,105,110,95,97,116,93,97,95,102,94,97,111,103,109,101,93,125,108,121,103,105,95,107,109,91,94,101,111,93,105,91,115,120,90,116,107,96,83,94,101,65,92,102,96,91,95,94,106,105,107,99,96, +627.25482,101,123,114,114,96,107,99,89,104,89,97,93,94,101,107,102,114,103,102,100,103,107,115,108,100,95,116,79,99,110,95,106,111,97,105,95,92,112,97,118,121,104,99,89,116,98,111,140,91,110,106,107,112,104,92,98,100,113,107,100,129,103,90,109,105,108,101,109,90,106,117,109,113,107,94,109,100,93,107,101,99,115,104,110,109,100,103,94,108,96,101,101,106,99,96,115,94,103,103,109,102,112,97,118,108,112,101,99,104,91,100,103,104,103,99,110,87,96,96,87,89,100,94,107,101,100,107,106,85,105,95,98,93,101,109,109,103,102,88,104,94,93,96,109,99,102,109,104,107,96,102,96,110,92,103,100,106,98,106,102,116,96,103,106,103,99,117,93,104,98,108,104,99,128,99,79,104,95,107,103,113,117,90,103,113,99,93,90,124,96,94,108,106,100,107,102,115,94,94,99,107,101,85,118,88,117,95,104,109,99,84,106,114,110,99,114,96,101,98,100,112,121,102,93,108,111,111,105,108,95,116,110,87,125,105,109,105,99,99,113,101,105,106,108,105,100,109,109,98,110,102,107,94,108,94,115,101,112,103,100,98,104,108,108,93,106,99,116,98,94,114,98,111,98,106,108,107,107,100,96,95,109,100,124,105,103,101,103,103,103,107,100,117,100,104,99,105,89,119,107,109,105,99,108,88,104,91,92,103,110,105,111,108,102,100,104,99,108,105,99,103,103,104,103,95,99,104,97,101,108,118,94,108,98,91,109,97,108,101,104,121,98,96,95,105,113,96,113,99,101,99,115,106,99,106,103,109,106,98,100,99,96,93,97,91,99,121,113,104,96,111,101,106,108,107,99,109,96,112,114,103,99,102,107,107,96,108,107,102,98,123,92,100,101,109,117,105,98,98,127,96,98,99,100,124,102,104,113,100,109,95,95,70,96,103,103,104,111,99,112,103,114,107,104,104,102,102,92,107,112,91,113,104,105,104,104,92,123,99,105,110,93,103,85,82,98,104,99,104,102,95,106,102,104,92,98,108,102,103,97,100,104,108,117,104,109,111,93,83,112,108,107,108,94,105,101,103,108,97,105,106,104,103,101,101,100,92,113,100,102,112,108,105,102,102,96,105,94,97,106,114,103,105,110,113,108,93,108,117,94,109,112,99,112,96,94,100,98,117,109,107,109,113,109,109,102,108,98,97,98,90,98,85,97,106,95,110,104,99,116,96,125,105,105,118,108,126,107,97,98,103,106,109,97,94,112,98,101,107,102,108,105,105,87,118,104,99,116,116,106,94,105,110,108,107,103,115,97,98,101,100,102,93,109,107,95,105,117,108,91,116,97,108,110,112,122,103,106,93,74,106,110,104,96,105,99,98,109,104,105,103,103,99,100,108,98,104,103,77,101,100,106,99,102,96,97,111,98,102,120,106,97,102,105,93,106,113,97,92,108,111,88,104,94,96,102,100,95,114,106,96,99,103,110,101,111,108,106,107,103,113,106,102,100,100,113,99,116,110,108,117,95,104,129,109,100,89,105,106,100,113,115,104,109,91,104,102,126,103,112,107,104,98,104,104,100,104,112,92,99,112,98,106,96,96,103,111,104,96,109,109,101,100,101,100,114,107,105,99,110,102,102,105,119,111,96,110,107,110,107,99,131,110,67,97,102,106,83,96,102,110,107,100,103,111,100,110,91,106,98,113,95,120,101,103,100,105,102,116,113,100,109,114,94,97,109,97,119,107,106,120,96,99,99,97,94,114,115,108,104,111,100,107,106,108,89,93,109,105,109,93,112,92,104,100,109,105,109,99,97,100,90,99,99,107,102,94,91,107,99,100,101,104,109,105,101,119,105,133,106,98,104,104,105,98,97,105,100,100,116,97,110,105,104,113,102,113,99,117,105,108,114,116,96,100,102,102,97,95,106,100,96,90,94,98,105,115,110,107,108,107,102,98,116,102,103,101,102,108,116,96,106,109,108,102,114,106,103,103,115,96,102,91,104,85,109,100,104,137,74,108,99,95,110,110,100,95,98,110,108,104,108,107,112,106,106,104,117,100,130,101,108,108,80,110,95,111,104,106,101,102,104,112,97,105,108,102,112,121,118,100,105,97,114,91,102,94,99,96,83,109,110,104,105,97,98,107,95,107,101,104,106,108,94,108,105,109,117,105,100,100,100,90,101,99,106,95,104,97,102,94,99,95,108,99,101,105,114,109,95,116,102,109,99,110,113,100,95,107,109,105,100,107,103,96,92,97,101,98,101,109,100,97,98,109,110,85,90,106,102,110,112,94,93,103,110,103,97,105,103,104,115,109,97,111,103,102,100,121,103,106,104,106,91,104,99,99,117,110,107,113,110,116,116,126,122,107,103,109,95,108,116,103,111,104,119,106,96,114,97,93,104,94,117,111,104,99,94,103,96,97,122,96,97,101,106,104,113,110,101,110,112,121,110,101,106,98,102,92,109,90,100,110,103,86,95,103,92,101,101,112,89,93,95,100,110,113,84,113,101,104,109,103,100,105,105,99,101,94,109,99,101,99,95,99,100,111,106,111,110,110,109,119,113,106,98,112,99,75,99,104,115,101,110,83,98,118,114,97,88,113,109,113,102,99,103,99,105,89,92,130,95,114,99,101,112,106,103,99,96,108,95,112,105,89,116,101,108,119,107,103,95,107,103,98,106,103,94,108,101,105,129,103,99,102,108,108,107,102,90,116,96,108,100,92,104,108,92,106,95,99,98,100,109,115,126,106,116,111,110,120,123,114,125,111,91,100,113,99,111,104,108,98,108,100,97,105,132,102,115,111,105,112,105,102,105,106,106,102,100,103,99,120,108,106,113,106,108,104,99,111,96,99,95,102,100,105,113,107,110,92,109,106,112,106,95,106,92,105,112,104,102,107,104,109,105,108,100,117,105,100,117,101,112,108,116,106,95,115,120,108,100,100,103,100,104,107,102,101,103,94,108,102,92,102,112,103,120,95,98,118,112,104,108,91,94,96,105,81,98,122,108,91,110,123,105,116,123,103,100,101,81,112,102,102,112,94,114,95,98,99,112,114,107,98,104,107,105,106,105,99,106,117,100,121,111,104,113,101,118,99,103,105,115,104,105,105,101,109,95,101,102,105,119,104,107,105,97,98,91,101,107,104,95,103,110,114,98,108,109,99,100,108,101,103,118,105,116,110,87,105,105,96,98,106,98,101,101,110,113,95,106,93,105,96,102,101,102,113,107,102,108,99,109,122,90,98,126,107,101,106,93,104,95,102,106,112,105,108,108,117,108,109,103,100,110,96,99,100,88,117,99,112,103,108,118,99,101,115,97,100,114,79,96,105,103,117,89,90,111,106,112,110,102,111,96,103,101,107,112,115,97,104,115,111,108,99,108,100,111,107,103,120,109,115,110,111,113,105,109,110,116,99,107,108,109,102,108,102,100,105,104,105,103,113,106,113,96,100,99,108,116,86,68,108,112,109,105,104,101,104,103,102,111,109,109,117,109,91,108,122,102,100,111,104,97,108,109,106,114,106,108,109,106,116,98,107,103,102,105,103,99,105,106,106,97,111,98,101,101,105,113,103,108,103,93,109,116,110,120,93,95,109,111,108,100,116,101,105,103,96,108,104,96,111,97,104,102,102,101,111,116,105,94,104,98,110,94,99,102,105,109,105,102,104,113,108,88,98,120,95,98,108,117,100,92,94,111,100,99,110,103,104,89,112,101,96,98,93,99,107,108,109,84,101,108,103,107,99,105,112,109,111,113,101,119,106,81,110,106,105,80,106,106,100,116,113,113,116,101,96,102,96,108,102,110,106,104,105,100,87,113,101,102,102,109,98,96,106,101,109,101,106,108,113,105,112,98,104,108,106,106,107,101,101,101,94,89,83,107,87,100,97,106,102,101,108,92,103,97,107,106,103,100,104,110,104,110,104,108,106,120,98,115,97,89,106,109,97,94,108,99,103,94,94,107,99,106,106,87,108,102,91,104,103,102,103,95,111,109,105,98,92,98,110,116,106,94,110,115,99,102,96,102,101,113,96,101,97,98,112,96,98,102,105,105,100,106,96,104,111,97,101,107,95,108,90,104,102,105,88,89,92,102,92,91,107,99,95,101,109,97,93,101,118,106,112,108,105,124,117,94,109,103,102,100,116,110,105,101,111,92,100,111,118,111,108,113,102,103,108,105,104,103,119,98,103,107,100,104,113,93,100,95,115,109,113,103,116,103,91,114,108,101,100,103,82,102,106,109,105,110,109,96,79,94,106,95,95,124,102,100,100,106,100,101,110,102,109,106,102,98,101,102,106,106,106,99,102,112,95,98,104,104,108,100,110,105,105,111,90,104,100,114,109,96,109,97,101,99,109,98,109,114,112,95,93,115,98,106,92,96,97,102,95,103,93,112,106,109,105,103,96,97,106,95,90,114,111,106,102,100,92,126,94,89,93,106,93,109,104,90,99,103,103,98,104,102,107,103,99,115,95,106,95,95,104,101,97,102,101,98,101,98,101,107,104,108,119,107,106,103,104,98,91,100,96,116,107,111,104,100,102,98,120,111,104,105,110,103,114,98,102,100,107,104,102,104,99,99,104,102,94,105,107,104,108,98,105,105,101,107,106,116,96,91,101,89,132,99,88,96,99,115,88,102,111,112,91,108,100,99,88,109,92,102,106,97,100,106,98,88,105,102,98,98,120,98,99,99,100,109,100,104,109,121,103,104,112,96,112,99,115,99,86,102,109,106,91,111,90,102,108,109,98,111,100,105,108,87,108,98,112,100,97,102,96,99,83,102,107,83,100,114,92,109,107,109,95,112,106,108,103,128,104,99,95,108,88,97,99,102,96,103,97,98,92,123,101,92,113,103,101,109,124,108,105,101,100,94, +627.39594,101,104,101,112,93,112,106,96,104,111,99,107,104,107,101,104,113,105,108,125,114,97,106,99,100,80,104,111,109,114,103,95,100,103,113,112,98,98,112,112,101,112,103,101,108,116,123,114,103,107,112,99,108,107,104,106,117,108,108,110,98,110,101,106,111,102,114,102,116,90,115,103,105,109,105,111,113,101,116,95,101,124,108,78,111,107,94,106,102,96,118,105,114,87,92,136,95,102,111,95,98,110,109,99,101,108,98,114,114,118,97,113,125,103,101,116,103,109,100,99,111,103,113,106,109,113,109,99,106,114,96,120,102,119,108,117,104,103,106,105,103,109,96,98,97,105,113,98,104,108,110,106,96,98,112,117,120,110,111,105,103,105,114,99,106,106,117,98,98,108,103,106,109,108,107,99,106,98,113,109,105,96,98,119,108,103,113,101,112,102,97,106,110,94,98,113,104,106,96,107,106,100,104,98,105,112,118,120,105,98,101,101,110,114,109,117,95,113,99,97,104,111,126,108,98,108,120,100,115,108,125,114,107,113,119,113,108,116,104,118,107,100,113,102,104,100,114,95,106,106,100,103,92,98,109,118,100,108,100,108,100,100,104,106,108,107,101,117,101,102,102,117,109,107,117,118,113,109,103,99,109,106,117,102,113,95,102,117,103,124,102,107,114,112,111,102,105,111,104,106,118,104,93,114,110,111,114,107,106,101,107,73,114,112,103,96,99,112,95,93,102,99,111,102,102,92,101,96,118,115,108,120,95,112,103,94,102,116,116,100,103,89,106,88,115,125,104,111,111,119,110,95,103,106,108,108,107,118,101,111,105,104,97,103,91,98,128,113,96,104,111,103,105,109,106,99,104,107,112,107,112,111,109,116,111,101,105,110,128,102,104,95,99,118,106,114,106,97,105,117,103,108,111,87,95,99,104,102,112,107,110,101,118,101,105,104,102,95,111,106,97,113,109,113,112,97,96,87,91,115,97,99,100,101,112,109,104,116,101,109,104,122,104,107,99,93,111,98,118,119,93,107,114,104,107,109,105,107,111,107,98,105,121,102,106,107,100,103,107,114,99,110,103,110,116,110,96,118,102,91,113,125,108,115,100,113,109,109,99,110,93,77,108,100,98,107,100,104,116,95,118,96,122,104,107,114,99,105,103,117,109,113,108,96,99,117,99,105,100,106,111,104,110,103,94,105,111,119,88,113,98,107,103,101,100,97,104,94,104,102,102,103,92,124,107,108,116,110,108,105,106,116,107,108,104,123,117,105,114,100,96,91,117,102,106,110,108,112,110,95,112,114,107,104,112,112,112,107,105,94,129,112,126,110,120,102,114,107,99,105,103,111,102,105,102,115,98,97,106,101,135,107,106,107,100,107,92,109,103,108,102,88,114,102,116,104,96,112,103,94,101,107,103,99,106,98,96,104,102,99,107,109,93,115,103,107,105,95,103,105,110,115,107,101,126,111,80,106,95,116,106,113,100,110,119,103,118,106,113,113,113,106,109,112,95,100,102,93,115,113,120,118,108,102,102,117,110,106,105,98,111,119,110,103,106,110,109,104,110,104,106,110,109,101,114,102,99,114,114,96,107,97,95,106,108,109,109,100,106,101,102,96,107,99,94,117,113,107,99,104,109,103,106,113,89,99,107,106,107,117,100,115,102,108,105,100,113,103,108,118,113,98,101,117,104,91,115,102,105,91,103,105,108,106,108,112,106,105,110,116,103,109,103,118,118,116,106,103,112,117,123,108,106,106,114,110,111,106,100,110,106,107,107,119,109,103,114,112,105,106,107,105,115,105,100,94,118,108,112,103,102,116,107,103,106,109,100,107,105,96,115,106,102,109,107,104,99,126,103,102,102,107,104,104,96,113,113,111,93,100,100,133,121,109,100,106,110,109,103,120,107,120,124,120,107,103,98,100,98,107,108,119,108,113,102,101,105,125,102,111,102,116,101,100,117,105,103,104,120,108,101,116,116,115,108,109,79,109,110,107,109,115,104,98,114,114,104,141,93,91,112,101,117,110,110,99,114,110,106,111,108,111,104,105,109,105,102,107,92,100,104,114,115,105,101,92,102,116,83,104,99,111,110,110,110,104,110,104,101,103,101,122,99,110,113,110,109,109,116,110,103,117,105,110,108,115,109,111,111,103,100,113,108,103,108,105,107,105,105,115,111,109,97,115,108,100,106,106,91,116,111,106,107,112,102,106,125,108,99,106,101,105,109,105,106,97,111,106,99,110,102,108,117,118,109,104,108,107,110,113,100,115,102,94,109,127,112,113,92,108,112,103,107,110,110,109,99,121,110,103,108,104,103,106,104,91,113,98,93,98,80,103,94,102,102,106,108,124,116,114,106,111,89,98,103,111,131,98,129,115,118,117,117,113,100,98,118,109,105,100,104,113,117,105,113,98,99,99,118,110,99,118,117,106,95,92,103,109,99,103,100,102,98,93,113,101,105,109,104,101,105,109,102,94,99,102,96,105,102,106,124,100,115,98,108,113,93,97,100,95,105,117,105,113,106,100,96,106,101,96,101,100,106,106,105,98,108,115,96,99,117,110,103,100,109,112,79,101,93,110,104,110,113,99,102,81,108,99,102,106,103,79,96,104,74,105,102,97,105,126,102,99,108,105,114,105,104,95,98,93,97,103,106,71,114,90,110,102,105,99,109,113,98,98,100,109,109,103,98,112,98,83,113,102,94,101,104,93,112,103,103,99,107,77,101,112,95,108,95,92,106,102,104,112,93,118,106,99,112,103,115,103,96,95,107,104,103,93,102,105,101,99,101,103,92,110,106,106,95,115,104,99,109,104,105,108,103,97,108,124,102,111,112,100,107,105,121,107,105,98,111,105,110,105,106,113,113,112,112,114,109,104,95,118,103,106,102,107,104,112,103,101,106,116,102,110,100,97,99,100,91,95,103,101,99,102,109,96,105,117,101,104,110,110,100,113,105,102,112,107,105,106,99,115,105,101,116,100,100,110,111,123,104,96,114,104,114,100,95,99,108,99,105,108,111,116,113,101,72,113,106,120,117,106,109,121,116,112,108,111,103,112,106,101,105,104,105,124,101,95,103,108,104,99,104,103,115,99,110,104,101,111,110,110,106,105,93,89,104,103,98,80,97,98,104,87,98,95,106,105,105,113,101,109,115,110,102,98,101,109,107,98,103,106,104,119,103,108,116,125,106,108,93,112,105,96,111,100,112,105,92,103,103,95,109,106,101,95,106,96,107,113,115,114,106,114,112,116,91,95,102,98,113,100,99,70,111,94,117,113,112,94,106,105,100,110,107,105,100,109,103,105,103,102,108,108,109,91,102,99,108,106,95,97,98,102,97,101,98,88,108,104,126,100,103,113,105,103,97,103,75,120,105,111,109,104,104,110,100,105,99,109,104,106,106,106,112,97,94,105,106,110,109,99,97,103,88,101,107,97,94,105,107,95,99,105,110,102,98,95,112,109,101,98,97,106,105,103,109,99,107,95,108,105,116,105,94,104,103,105,111,104,110,119,100,109,107,96,93,107,116,102,100,98,109,102,101,114,96,106,100,99,105,98,98,100,94,113,112,109,110,105,98,110,106,101,107,100,102,121,95,104,95,105,113,98,101,106,99,132,100,103,106,99,98,105,111,110,110,112,109,112,106,109,101,105,96,112,103,110,106,107,102,108,96,107,117,104,99,91,117,104,107,113,96,99,120,103,102,111,106,93,101,95,109,101,110,103,100,106,112,113,106,100,100,105,103,100,110,90,100,95,102,101,98,102,107,109,90,107,102,113,100,113,104,108,106,101,103,98,104,90,101,94,107,104,105,95,106,104,74,108,93,100,95,107,100,101,104,99,108,96,100,103,106,99,102,115,98,91,106,95,108,102,100,102,113,99,96,93,93,112,115,113,98,109,106,109,111,99,111,106,116,109,93,113,99,102,107,102,106,105,107,83,109,114,101,111,105,99,97,99,100,114,106,96,103,103,99,106,103,101,100,102,107,95,103,99,98,112,103,89,104,106,98,107,114,89,101,107,100,96,99,98,104,106,104,103,106,90,108,113,102,79,101,113,106,108,101,100,95,121,102,111,106,99,90,108,86,109,102,109,107,111,106,110,102,80,119,103,108,104,100,97,111,101,99,88,96,109,78,114,95,95,103,98,77,103,105,96,102,100,106,96,99,116,105,101,102,100,113,104,107,97,83,97,100,87,92,104,112,106,99,106,107,128,107,105,109,94,117,101,110,106,95,97,98,100,80,107,112,118,116,99,112,121,88,98,106,109,105,105,119,103,106,99,97,101,102,102,101,112,116,103,114,94,104,110,94,104,118,110,101,95,104,96,90,94,108,105,102,114,111,107,94,100,118,125,94,119,95,139,100,97,108,102,113,99,105,99,99,102,110,110,99,93,89,100,105,87,110,100,107,97,95,89,101,96,94,109,111,120,94,99,105,112,105,106,129,104,95,106,101,114,105,109,103,99,105,115,97,102,92,111,115,107,102,106,108,102,99,101,105,101,106,103,109,113,104,99,112,110,102,97,100,126,113,97,100,101,107,103,103,101,99,88,103,100,92,108,109,92,98,88,118,104,103,93,99,102,111,99,100,103,104,125,110,100,103,109,108,98,105,103,99,91,108,109,113,99,95,91,96,111,103,98,102,102,109,109,112,114,106,94,120,106,106,108,94,106,100,103,100,80,104,98,121,89,98,106,103,109,72,104,91,104,106,103,97,110,113,106,99,105,92,109,72,108,96,112,120,102,106,121,105,103,100,103,93,110,118,100,103,111,107,92,94,106,84,100,104,104,109,96,106,84,94,88,100,106,121,100,107,93,92,102,88,103,108,90,108,97,92,104,101,94,109,103,105,112,111,109,111,99,105,95,97,105,89,106, +627.53705,96,105,101,113,88,106,96,103,102,84,94,110,113,105,105,101,90,101,95,96,99,94,106,104,102,106,103,97,104,107,108,114,106,109,109,101,111,103,105,93,108,109,111,106,104,103,115,112,120,104,98,90,100,93,100,103,109,99,99,96,103,108,95,95,89,116,106,113,119,95,108,108,91,111,107,111,100,103,126,115,93,99,101,116,103,103,95,114,106,117,97,111,103,106,104,109,112,108,94,99,96,102,108,124,101,99,106,94,99,95,101,89,103,110,100,119,106,123,107,102,102,121,105,99,100,92,109,130,98,93,101,115,108,108,113,125,110,112,100,109,95,109,105,110,115,111,96,114,113,107,109,110,110,98,100,93,105,101,94,111,104,111,105,96,111,114,102,105,98,95,101,109,86,99,112,109,114,95,108,100,102,102,92,104,106,119,111,90,117,104,98,83,92,114,103,103,114,104,104,101,100,123,103,106,106,101,119,95,105,118,102,106,106,114,105,95,92,114,97,98,103,109,109,98,103,112,106,108,103,102,105,110,118,100,100,119,102,103,113,92,94,101,118,104,99,104,95,102,101,119,104,108,107,111,106,82,91,110,102,99,97,112,97,109,101,103,105,103,96,108,111,98,94,102,107,103,90,104,110,106,94,99,104,91,105,102,96,99,107,98,105,97,102,94,104,111,100,98,100,100,88,111,109,105,107,104,107,113,99,99,105,109,105,103,97,95,101,100,104,99,98,105,106,103,95,95,101,90,107,113,106,99,109,103,103,97,98,98,95,110,97,96,97,117,107,105,101,104,104,109,105,97,110,94,112,106,91,99,113,106,114,101,104,108,88,104,99,105,108,106,124,109,108,107,113,105,110,99,102,99,99,99,95,101,103,95,94,97,115,99,111,92,101,79,108,118,102,98,109,118,90,99,105,106,98,86,107,105,100,96,109,90,104,85,105,97,110,99,109,109,106,105,108,103,95,104,101,97,97,98,101,91,109,115,101,114,101,101,98,102,108,105,121,107,95,106,106,101,98,112,93,106,101,115,114,99,104,95,101,103,100,105,96,100,107,100,93,107,100,98,97,102,113,111,97,106,94,111,101,100,106,109,133,115,96,96,104,109,109,98,109,95,103,102,95,103,110,100,113,107,103,110,109,104,104,113,104,100,105,116,104,96,87,98,109,101,102,97,108,103,102,99,118,105,86,116,118,100,108,108,104,99,106,117,101,102,105,91,107,111,104,106,96,107,120,96,113,109,104,124,93,116,101,93,113,96,113,105,103,106,109,113,101,107,108,102,96,95,112,91,102,97,109,106,94,118,99,91,94,109,104,108,109,101,111,103,115,113,113,84,122,111,96,101,116,95,98,103,99,100,102,99,101,115,111,69,104,114,97,106,92,94,110,116,93,103,101,103,111,114,106,95,104,104,120,105,109,95,95,98,108,104,102,109,106,111,99,106,101,103,107,110,108,101,95,106,104,106,116,113,102,96,111,102,103,100,105,111,113,112,112,101,95,102,97,97,110,103,111,110,111,103,106,102,117,118,105,109,106,92,112,101,110,90,98,100,88,79,96,104,110,101,105,103,107,105,111,101,99,108,100,103,108,99,97,115,114,110,103,101,108,104,103,95,99,102,111,112,104,109,104,104,102,99,98,98,100,82,96,105,100,111,93,99,100,99,99,99,108,99,117,99,99,97,108,100,69,105,115,106,108,100,91,90,98,100,114,98,112,111,99,100,99,79,89,105,104,106,110,101,102,104,106,99,104,103,110,104,111,108,94,101,116,108,99,106,113,110,109,116,104,102,99,103,109,110,106,110,105,103,95,98,99,115,95,103,122,101,100,108,112,105,103,101,107,107,100,101,94,117,98,114,105,95,106,110,113,113,105,92,108,102,102,118,97,107,101,107,113,91,95,77,106,92,108,94,111,102,100,105,108,103,102,106,105,108,109,111,107,108,100,101,95,76,104,74,101,101,117,110,94,101,107,113,98,94,99,95,102,105,121,107,105,104,95,113,103,114,113,103,102,112,108,108,111,95,100,113,106,114,118,113,104,113,94,104,108,92,99,95,102,113,110,109,90,95,102,101,110,103,135,105,126,99,101,112,104,108,99,97,104,105,108,112,105,105,108,100,98,96,103,104,103,116,105,91,103,95,99,104,100,118,114,106,110,108,98,99,109,101,106,119,106,93,112,86,88,101,91,94,109,113,121,111,105,98,99,108,98,90,105,113,108,95,121,97,97,95,97,113,102,107,107,111,101,109,101,104,97,100,99,119,113,103,102,101,108,94,102,104,88,102,95,106,104,105,113,108,100,88,120,105,103,97,126,111,103,113,112,100,93,112,86,112,113,105,103,102,112,104,128,105,124,103,111,109,126,108,112,104,108,114,103,106,121,111,109,98,115,101,114,100,110,114,117,92,96,106,121,109,107,108,98,96,102,110,113,104,111,73,101,110,100,119,109,115,101,90,105,116,100,103,100,103,95,109,87,97,111,109,119,101,108,113,105,96,127,107,110,98,93,108,95,103,100,107,102,115,100,94,105,108,91,104,98,101,92,96,109,95,123,107,116,91,108,97,104,132,105,95,99,90,103,105,104,102,96,111,113,100,112,102,109,105,110,102,112,94,102,107,121,93,98,87,102,107,101,99,93,101,103,121,109,113,116,98,106,103,118,102,100,106,117,109,100,111,109,98,99,102,109,113,110,121,98,111,95,118,88,110,108,95,128,101,110,106,103,102,109,107,113,104,133,112,115,113,105,112,110,97,109,116,100,108,109,99,112,108,112,113,106,103,99,98,114,117,112,115,109,100,110,94,107,111,100,91,109,105,111,100,104,98,104,89,104,108,109,95,97,112,108,102,102,110,100,102,110,106,107,101,103,97,103,120,95,107,100,102,102,124,106,109,101,106,104,112,107,104,109,100,97,110,97,101,101,114,92,105,102,106,109,100,105,102,90,97,102,103,98,94,96,99,109,90,108,109,105,103,109,110,107,110,106,108,107,98,114,111,104,107,114,105,101,103,114,103,98,106,110,109,92,102,116,99,96,98,108,112,108,91,109,111,90,100,108,95,97,89,100,95,115,108,100,108,110,105,116,108,109,104,106,113,99,124,112,101,95,110,107,102,96,105,108,100,97,101,99,106,103,99,104,106,109,105,107,113,111,101,106,99,98,101,104,109,120,108,119,99,112,102,110,102,100,115,109,98,93,101,93,87,102,109,96,117,104,99,104,101,120,109,109,96,106,109,102,99,99,106,103,100,114,96,112,108,100,111,105,92,107,109,100,103,84,102,103,104,86,83,105,99,109,108,97,90,116,108,102,99,133,93,98,96,105,88,102,98,84,113,107,97,108,104,76,109,94,103,95,99,130,103,105,95,99,117,105,101,106,98,99,97,100,106,105,110,100,100,108,97,101,114,94,104,86,96,106,79,114,103,101,105,106,116,102,115,102,112,103,104,105,111,112,92,106,107,118,100,109,110,103,91,106,108,106,106,119,106,107,97,98,98,106,100,117,103,113,113,101,116,100,97,103,101,106,94,110,104,95,100,98,119,110,108,97,109,99,94,104,103,110,101,105,121,92,120,110,105,113,107,114,105,98,105,97,106,97,94,112,108,108,112,116,112,99,107,96,104,121,99,105,125,98,112,108,109,97,113,93,96,106,102,109,111,105,103,95,104,100,106,100,106,106,103,118,103,108,105,105,108,110,99,104,108,106,100,113,109,102,106,109,98,103,94,103,105,105,100,113,106,101,103,107,112,103,107,104,113,104,111,99,109,95,105,90,99,117,105,113,113,91,106,116,110,101,94,102,95,108,108,105,111,104,104,107,108,105,116,106,108,106,107,95,102,109,112,99,102,110,117,108,102,89,99,95,114,116,115,99,108,111,98,96,102,96,108,108,108,103,98,94,101,101,110,88,105,96,102,112,98,100,94,108,100,99,99,106,121,108,102,103,101,109,108,72,104,107,97,95,111,115,110,102,122,98,110,121,125,101,110,109,107,108,113,109,102,108,92,115,99,112,101,110,117,102,113,102,105,104,114,102,103,98,106,107,98,106,103,106,97,100,104,107,107,105,101,107,109,89,111,98,105,107,102,101,102,102,94,103,98,113,110,129,90,106,109,94,95,99,127,98,97,112,96,100,102,96,105,111,99,101,94,104,110,77,90,95,109,99,99,107,115,112,109,102,107,107,109,98,99,96,104,112,80,99,97,103,114,98,113,105,112,80,75,103,106,112,109,106,103,107,102,108,91,106,112,99,106,103,97,87,98,104,112,108,98,103,115,98,116,109,110,105,110,115,103,95,112,112,95,107,99,107,106,94,105,113,110,111,107,112,108,96,117,107,99,107,110,115,105,85,117,103,110,108,117,98,105,103,109,113,102,91,106,109,113,98,110,108,108,121,90,109,117,129,100,103,83,87,101,103,103,109,103,107,100,98,96,102,104,108,109,109,124,109,98,112,103,116,109,97,107,110,99,101,106,109,101,109,99,97,99,99,107,104,98,107,111,115,94,125,115,106,101,100,103,99,100,97,101,102,105,111,106,108,113,76,106,135,101,95,108,109,106,104,101,94,108,98,98,101,108,117,97,105,106,98,106,104,101,110,93,106,104,103,92,114,99,106,102,111,94,93,100,104,104,106,100,99,96,101,91,96,91,99,107,113,98,92,100,99,104,100,99,113,111,105,98,109,100,101,92,108,111,105,109,112,113,103,94,103,103,107,108,100,115,108,107,95,105,104,86,98,98,101,105,98,104,108,105,106,106,99,123,105,99,115,106,91,99,122,109,102,86,105,98,109,111,92,113,109,105,129,129,100,109,109,105,102,105,98,110,108,67,106,98,116,106,112,102,111,103,106,76,103,110,101,80,109,97,108,90, +627.67822,104,114,101,115,87,100,103,99,104,112,104,109,116,107,90,106,101,112,83,100,104,75,117,99,102,97,102,93,109,103,95,101,110,97,102,94,100,103,87,92,106,108,104,82,105,101,89,99,99,93,111,102,99,91,96,98,90,96,116,101,105,106,92,95,98,114,94,87,92,96,125,105,103,93,97,105,94,101,107,107,94,99,98,101,96,96,105,108,102,93,108,98,102,104,107,92,100,86,114,92,108,102,94,100,102,95,103,101,101,90,98,97,101,91,102,111,94,99,103,104,96,99,99,95,101,91,109,103,103,109,95,96,93,101,108,89,96,94,91,112,89,95,91,99,100,101,95,89,83,98,102,102,116,95,106,91,98,104,103,99,100,104,95,102,94,106,104,111,100,107,97,112,95,76,97,99,100,113,113,107,100,100,115,107,100,94,93,104,91,105,113,108,100,98,101,102,100,93,90,107,91,100,100,113,87,103,96,122,121,106,91,104,106,106,96,93,99,105,117,97,104,109,99,93,108,110,95,109,101,92,93,108,95,121,99,109,90,102,106,95,99,84,114,110,101,101,103,105,105,105,106,98,109,108,105,109,87,104,93,98,98,101,110,90,99,103,95,97,103,108,105,95,103,108,95,108,103,111,94,94,101,116,101,99,98,112,95,86,117,107,102,110,114,86,86,106,103,102,99,99,106,101,105,110,99,103,117,98,117,102,84,106,98,91,97,98,101,98,120,95,97,96,101,113,74,90,103,102,118,112,98,108,101,108,113,101,100,106,104,99,101,102,111,103,95,106,99,100,112,103,100,112,117,100,100,107,101,114,102,96,104,102,100,90,105,95,99,99,102,121,104,99,94,101,95,100,124,101,102,109,110,105,95,111,103,103,104,103,112,100,99,96,94,101,102,100,97,89,109,102,104,106,115,92,113,105,105,104,100,109,92,108,114,98,112,103,110,98,107,100,99,92,99,97,107,86,91,101,94,103,106,109,97,103,111,102,86,96,98,103,106,98,95,93,88,105,100,100,97,93,91,99,100,105,90,102,107,101,106,107,83,100,103,112,117,105,100,97,111,97,106,106,110,94,105,114,98,110,103,113,110,120,102,103,94,104,111,116,97,103,98,106,124,104,102,102,95,101,105,103,117,108,109,116,114,105,105,114,100,93,111,100,108,101,114,107,100,111,104,112,103,94,99,98,104,117,107,94,99,104,103,106,93,94,111,102,106,100,97,108,100,109,94,110,116,101,114,90,108,94,122,104,102,96,98,88,99,107,103,122,96,102,90,103,98,94,102,114,113,84,92,94,102,100,93,112,92,95,102,82,97,100,94,126,98,92,113,102,106,105,107,103,92,100,108,104,99,100,111,93,103,111,108,112,105,110,95,98,113,96,105,102,105,110,113,110,96,92,103,98,101,109,102,100,115,99,93,108,96,109,97,91,112,108,101,100,104,95,111,96,108,107,110,119,108,100,99,111,101,107,105,87,108,103,100,113,100,119,104,91,104,126,102,105,99,92,99,100,105,120,108,100,110,95,105,119,111,119,103,98,105,111,111,105,102,110,107,112,105,127,103,109,96,109,99,93,111,101,107,86,111,96,95,109,105,107,92,104,110,94,116,105,109,99,114,96,109,109,100,104,96,100,108,108,103,95,102,107,93,91,106,117,100,103,94,92,95,89,102,106,82,115,100,101,121,96,98,120,107,103,106,103,110,105,106,99,100,101,101,93,105,104,102,105,100,106,101,113,104,109,103,107,107,101,102,111,113,102,107,97,94,102,81,99,119,111,96,102,91,105,101,106,101,100,90,99,108,94,106,105,102,117,97,88,110,104,102,103,81,111,98,96,113,102,94,101,104,104,105,101,106,109,105,104,100,102,108,109,99,97,113,102,111,103,131,93,97,106,101,113,105,96,99,101,90,116,101,96,101,98,103,98,95,113,107,113,112,89,95,97,107,102,108,107,102,108,116,109,100,109,102,118,110,100,100,101,110,116,116,98,110,109,117,113,105,107,107,110,116,106,99,108,80,117,113,102,95,102,106,110,90,102,110,111,108,107,93,101,106,102,99,89,99,107,96,91,101,110,90,98,109,106,112,109,103,92,101,90,107,109,93,107,103,104,92,102,99,110,93,87,106,102,90,118,101,109,100,106,100,97,107,114,112,90,107,104,86,87,112,113,105,112,107,108,105,101,99,118,102,91,97,116,108,118,96,112,110,90,114,100,98,107,91,113,102,104,105,101,98,101,100,81,115,98,102,74,96,111,116,113,103,97,92,109,113,101,107,108,93,107,83,116,101,104,106,100,96,105,104,105,103,112,109,100,110,103,99,102,105,107,111,113,103,93,105,107,97,116,101,101,114,108,100,124,112,106,118,116,91,110,112,111,117,113,103,116,109,123,114,98,105,112,111,103,96,104,93,104,97,87,110,104,99,106,93,100,105,109,97,94,108,109,92,106,117,107,112,96,122,107,100,104,108,98,94,99,101,114,104,111,101,99,90,104,106,109,111,113,99,98,106,105,103,104,99,82,105,99,99,96,107,110,99,102,111,99,95,108,107,99,72,95,106,104,96,108,93,106,100,105,105,98,104,111,99,98,107,105,96,96,107,104,98,108,98,104,102,94,110,99,103,91,104,117,109,105,99,101,100,99,105,95,111,102,107,95,97,90,98,109,111,100,107,103,100,102,103,115,109,102,106,112,108,102,104,106,122,91,108,112,106,104,114,104,125,104,101,104,106,94,109,129,98,103,109,106,113,107,104,105,107,107,96,106,101,96,88,104,113,101,105,101,88,116,106,127,110,79,95,106,102,101,104,108,115,100,106,104,101,103,112,98,117,105,109,94,101,102,114,102,116,105,113,105,106,102,110,106,97,116,105,110,111,113,109,98,114,95,104,98,96,117,114,115,91,110,94,117,104,99,108,107,102,110,103,105,105,100,102,97,99,108,102,113,106,94,110,115,107,113,97,113,106,89,106,104,85,100,93,93,108,103,84,94,109,112,104,101,92,104,104,97,64,105,105,103,103,112,106,106,110,92,116,103,116,108,103,100,105,97,106,103,95,97,96,113,101,96,108,101,105,104,101,112,104,101,104,95,106,93,102,99,115,104,128,110,109,109,97,98,103,108,103,105,103,87,109,103,98,111,103,116,97,101,103,109,112,95,112,106,107,103,97,99,101,102,103,112,98,103,107,113,104,98,108,101,106,108,94,112,108,102,97,107,94,103,97,95,116,91,98,105,121,85,100,117,107,95,121,114,108,101,103,94,131,120,100,118,107,107,112,100,96,96,96,82,105,105,105,99,115,99,108,111,105,109,102,98,108,102,104,105,101,100,111,89,101,114,103,101,110,109,101,96,88,104,99,98,99,98,103,103,92,109,102,95,103,116,107,107,95,97,105,108,92,100,106,97,94,102,113,103,102,92,104,91,109,95,100,99,96,69,97,105,96,104,107,94,108,99,106,108,80,118,96,110,102,108,100,99,109,106,102,94,110,93,108,100,98,98,125,102,108,103,102,92,99,102,104,100,92,99,107,93,114,102,100,88,94,115,102,97,98,110,113,116,103,107,107,105,90,93,108,112,102,99,104,106,105,105,99,92,111,123,92,93,97,98,98,104,87,112,102,100,97,98,99,105,101,102,112,102,116,109,101,108,109,124,102,115,91,119,96,104,100,99,100,105,110,112,102,111,107,107,99,114,110,99,101,97,95,103,97,96,98,108,85,104,115,123,109,85,99,101,104,100,104,109,108,105,105,99,102,99,105,96,101,89,107,98,97,102,93,99,98,104,109,96,92,118,111,102,110,97,116,103,97,93,100,99,94,96,109,106,112,102,106,96,100,105,103,97,108,95,100,112,102,98,96,94,108,94,104,112,106,97,115,103,91,104,105,105,100,105,94,97,115,107,110,107,91,95,108,96,96,118,89,112,131,110,84,106,86,115,105,104,109,99,92,108,109,108,96,107,90,93,103,108,80,101,108,96,89,98,103,105,98,92,104,102,112,99,105,95,100,95,99,88,104,71,97,105,89,96,103,90,106,115,102,113,107,94,99,94,112,116,98,101,96,113,106,101,108,96,107,114,97,103,95,103,112,100,108,102,94,94,111,110,95,117,95,102,92,101,98,99,105,97,95,106,76,96,81,89,97,104,101,113,87,99,110,97,114,103,111,117,101,117,107,95,111,110,107,111,108,96,79,94,116,105,105,91,107,95,117,95,100,99,96,102,91,99,108,94,86,97,101,85,103,102,95,94,105,104,94,93,98,110,94,91,107,97,96,102,116,98,109,101,101,107,98,94,116,113,99,88,102,113,87,106,101,89,109,102,105,91,109,99,108,82,100,101,116,111,90,101,100,100,106,94,107,101,109,102,98,99,96,104,99,99,92,94,106,104,97,97,105,106,106,106,109,113,102,101,105,100,102,99,98,100,104,80,96,98,94,92,98,91,102,111,101,120,96,105,111,101,104,99,99,108,106,107,95,92,99,105,112,125,101,98,100,93,96,100,103,93,99,115,94,107,115,98,110,102,88,104,81,96,104,106,115,106,103,78,101,99,97,100,88,101,105,100,107,99,95,105,106,115,109,99,102,95,95,98,103,101,118,101,98,99,109,97,91,103,110,99,104,102,102,92,124,104,94,113,86,106,103,98,110,104,112,107,113,105,109,97,107,103,92,105,98,109,122,105,99,107,107,103,102,105,105,100,87,105,99,98,110,93,108,97,102,102,102,113,103,112,110,104,103,104,102,101,95,94,103,103,108,101,81,109,102,84,99,102,108,106,105,106,92,104,105,95,93,96,96,102,103,107,104,99,90,113,84,103,96,104,98,102,99,96,112,93,108,114,104,100,87,77,111,109,110,86,95,103,118,105,92,101,101,88, +627.81934,99,93,95,96,107,119,102,93,97,113,82,105,104,111,100,101,107,108,131,91,92,110,102,106,86,99,97,111,111,117,90,101,94,100,116,97,80,93,103,101,107,123,93,98,94,108,105,106,97,102,105,98,106,107,106,92,96,99,99,90,100,95,91,108,96,113,106,103,93,95,99,102,88,96,96,105,95,103,105,97,93,100,97,98,92,100,93,98,114,100,101,96,111,106,95,100,99,97,103,104,103,106,95,103,109,97,97,114,92,95,88,96,101,107,111,88,98,100,108,98,99,116,104,116,114,110,111,101,107,100,104,111,90,106,108,95,94,99,102,85,97,96,107,101,96,97,138,99,107,100,100,106,110,97,89,111,96,101,105,101,103,103,111,118,97,98,106,95,98,96,100,116,99,96,107,100,106,101,102,90,102,98,86,114,107,113,99,102,100,94,114,116,105,110,108,99,107,102,113,108,94,113,111,105,99,97,100,107,99,102,107,102,106,98,97,109,102,97,88,105,107,103,96,103,111,105,105,118,109,105,91,94,97,99,94,100,102,64,115,98,119,100,102,111,101,102,99,119,95,80,95,109,105,99,107,105,97,118,99,108,109,122,101,100,99,100,107,101,94,90,116,103,109,94,113,96,99,114,102,106,101,99,98,96,93,94,86,112,104,103,106,107,118,102,101,105,70,90,114,90,99,101,116,104,101,110,109,104,111,108,97,108,100,92,99,92,100,89,101,101,103,101,101,101,120,112,104,82,111,108,94,99,104,88,96,103,106,98,104,113,95,111,95,99,105,105,87,97,97,104,105,109,89,102,99,91,104,112,108,114,106,112,107,101,98,102,97,100,103,117,105,108,103,96,103,101,78,104,94,105,108,109,97,96,116,112,94,88,100,100,112,103,100,100,111,94,103,111,92,102,94,103,104,94,95,99,92,100,101,95,109,90,103,100,103,87,99,104,104,97,99,96,87,109,93,71,76,108,93,97,89,103,100,104,99,102,104,108,94,67,103,100,96,108,104,105,102,96,102,114,96,105,96,105,98,103,109,108,112,100,98,92,110,114,97,102,108,105,111,111,96,110,105,104,96,103,102,103,124,106,101,107,114,109,97,109,94,92,111,99,109,107,80,110,100,100,101,106,113,105,109,102,105,105,109,99,98,103,105,106,102,95,103,103,108,103,106,96,105,104,95,99,91,108,102,122,114,99,98,101,95,103,99,97,99,98,101,84,100,100,97,97,101,104,107,101,101,100,109,94,101,103,104,80,96,101,96,109,101,86,100,108,97,97,95,98,109,96,86,95,98,101,109,110,99,98,112,92,109,97,110,93,104,107,95,95,105,104,104,94,97,109,103,101,114,87,91,99,104,102,87,120,104,108,104,107,122,102,99,110,114,98,109,95,100,95,96,100,89,94,97,109,95,101,106,108,103,107,107,97,102,67,90,101,93,108,111,101,103,116,100,107,99,95,108,94,94,101,98,105,111,109,96,99,100,110,109,93,104,102,91,108,103,99,92,109,111,88,101,98,99,116,110,105,100,105,107,95,109,99,98,104,99,109,98,121,106,99,102,103,93,104,104,116,100,103,100,96,105,91,103,107,102,105,100,101,110,102,97,93,101,95,109,100,92,110,100,103,113,92,107,91,110,88,91,93,95,91,110,100,107,101,101,96,105,92,105,100,105,108,105,100,100,96,94,107,116,115,107,111,103,90,104,107,110,106,102,107,106,97,101,117,99,109,103,84,106,115,98,99,102,98,101,105,97,100,101,109,96,94,106,100,114,98,96,111,101,102,103,98,98,101,96,108,92,101,110,110,117,109,100,111,92,99,100,103,102,99,90,107,110,100,113,104,101,89,107,88,67,95,98,105,95,108,90,98,105,92,107,98,106,90,101,87,108,88,108,91,104,105,92,107,95,102,105,103,93,102,98,105,102,95,99,103,92,98,113,109,112,86,90,96,108,94,114,94,97,112,96,105,98,108,99,108,106,99,103,100,107,96,100,100,95,74,104,103,109,114,107,112,101,119,103,106,100,100,102,95,106,103,71,105,93,100,98,98,101,94,91,99,91,105,109,96,102,96,97,104,102,96,116,110,102,92,95,113,110,105,105,96,110,111,106,111,93,96,94,101,101,102,104,95,104,111,99,112,103,107,112,109,91,102,76,106,109,107,102,100,101,108,107,99,73,101,113,99,102,107,100,103,100,104,109,105,97,106,108,95,110,110,113,113,102,115,100,101,100,105,92,99,102,92,104,103,92,100,96,99,107,106,108,104,100,105,115,115,106,110,95,110,90,98,103,98,109,104,101,102,105,102,94,76,109,101,110,120,108,91,114,91,104,103,106,99,129,108,112,142,118,114,105,116,105,108,116,125,122,115,106,101,119,113,107,103,108,119,104,126,103,100,115,113,101,97,115,105,98,102,100,99,87,103,103,107,99,102,116,90,107,96,103,111,103,106,96,94,103,94,108,103,102,96,105,100,108,101,115,119,113,94,98,96,100,101,96,112,98,105,104,106,95,110,96,123,110,97,95,106,102,110,100,103,83,101,105,108,102,105,101,88,94,117,104,110,102,100,98,97,116,103,105,106,105,109,94,106,101,112,101,87,117,106,101,105,102,106,103,94,106,97,101,92,113,114,115,113,123,100,110,100,108,95,113,97,106,87,106,104,116,103,99,102,86,119,95,113,109,93,107,107,104,97,111,94,106,104,78,93,94,95,103,104,108,108,117,111,97,98,95,116,97,106,112,107,113,108,93,102,106,107,112,99,106,99,101,96,103,103,98,101,100,104,97,99,107,100,99,143,112,113,107,108,102,117,103,122,102,84,102,99,109,98,114,110,95,99,106,119,108,103,106,115,102,104,103,102,110,91,113,100,119,115,100,130,99,89,109,95,102,108,90,117,97,69,99,114,107,99,107,98,115,112,93,100,112,112,98,107,117,95,109,101,111,94,96,107,106,109,109,99,105,115,96,111,103,104,104,104,101,106,105,103,107,104,116,106,107,93,99,85,104,93,96,100,103,96,102,94,95,104,106,102,121,108,106,106,98,104,106,99,104,120,101,102,77,96,100,102,99,103,102,103,102,95,98,93,110,111,111,99,113,109,105,107,107,103,96,84,92,110,106,96,107,102,87,96,105,102,101,93,106,103,85,99,107,104,104,104,102,108,101,101,102,86,95,103,105,108,114,106,96,98,107,101,115,99,96,96,98,110,79,98,98,93,106,100,106,104,103,101,109,106,98,104,106,116,100,112,82,107,108,93,110,95,95,87,100,94,89,101,105,99,100,103,96,102,101,105,101,100,113,99,69,97,111,102,102,95,112,108,117,106,101,104,103,102,102,95,111,100,103,94,97,110,133,101,97,108,104,112,74,108,100,113,112,104,94,112,107,103,97,105,105,98,99,97,96,100,104,108,102,114,108,98,107,76,103,92,107,101,102,102,105,87,94,110,104,101,96,98,104,93,90,92,111,102,97,117,109,95,103,103,98,98,106,103,105,103,106,108,113,90,104,100,101,113,103,100,101,107,104,107,111,114,95,110,103,79,102,114,106,91,91,112,107,106,94,105,100,100,96,95,109,100,121,105,102,100,92,104,103,100,99,115,96,102,104,110,111,112,104,99,104,100,112,98,97,92,109,118,102,91,102,109,99,94,106,110,110,94,107,117,93,101,104,94,105,107,109,99,112,115,85,100,107,108,100,110,99,100,98,102,96,110,108,109,107,115,105,106,112,99,96,85,112,109,105,100,96,107,108,92,117,94,102,106,67,105,108,105,95,112,102,107,102,111,109,101,100,121,103,91,111,90,106,107,99,100,105,105,103,118,105,99,112,108,114,110,107,100,101,101,108,111,100,107,94,97,111,105,106,138,104,99,100,98,103,106,109,106,101,105,90,107,103,110,97,117,114,100,100,114,113,100,98,114,107,117,106,99,107,106,101,116,105,95,102,106,109,101,105,95,121,106,120,97,115,105,112,99,99,100,102,107,109,102,105,107,101,109,111,101,120,103,107,97,108,93,99,119,102,113,98,102,98,97,99,119,118,108,105,106,96,94,95,112,111,107,103,98,105,101,104,119,89,111,111,110,110,105,117,103,100,121,124,102,107,105,96,99,70,93,99,100,110,101,134,94,99,96,98,95,94,94,98,115,104,97,89,82,110,106,109,90,130,105,109,104,97,112,106,108,86,107,109,109,109,100,101,102,94,94,112,115,101,88,113,100,96,103,109,94,109,102,107,105,95,105,104,103,107,106,94,103,115,110,104,100,98,113,106,107,111,109,109,102,113,100,113,103,116,92,113,104,115,106,111,108,109,103,105,95,105,120,100,91,101,100,95,103,109,113,102,108,85,104,101,105,111,110,105,110,98,98,94,101,103,104,108,91,111,92,113,112,118,103,94,100,102,105,108,110,106,98,100,110,110,99,104,111,107,104,104,91,117,99,95,103,114,102,108,96,96,109,91,101,88,104,92,113,94,101,96,107,108,100,101,99,112,100,81,105,106,113,92,109,106,98,117,105,110,112,97,97,108,95,92,97,99,96,108,99,103,94,101,99,111,100,111,114,93,94,106,111,101,103,107,90,103,106,102,108,101,94,72,95,109,100,99,95,100,98,101,105,76,108,98,98,112,97,91,94,109,103,94,101,103,109,103,102,105,99,89,97,113,98,116,110,92,95,105,103,109,97,97,102,97,102,97,105,102,113,93,96,99,110,105,101,100,92,113,103,105,94,103,97,103,105,91,96,97,110,100,101,91,106,99,89,99,132,104,90,123,106,109,106,99,84,99,104,90,105,89,98,109,100,98,117,112,119,107,98,102,101,102,120,98,104,129,103,107,104,106,103,103,95,92,113,97,103,94,95,108,96,108,104,109,108,94,107, +627.96045,103,103,95,97,100,97,98,81,103,110,107,93,99,82,80,103,91,113,104,110,113,82,99,107,120,115,134,98,105,107,99,104,105,102,121,64,103,96,109,99,103,120,103,98,87,118,105,93,102,103,95,108,112,109,94,93,91,84,93,100,110,108,97,101,84,119,101,94,107,97,107,105,103,95,108,97,97,109,89,110,103,101,101,113,106,97,96,107,100,118,104,88,105,100,88,108,101,107,94,102,104,105,111,93,107,116,98,103,100,103,97,110,97,104,102,100,102,109,102,104,95,122,96,101,117,97,113,103,119,98,115,106,105,97,95,108,111,99,106,103,113,117,95,100,103,112,108,101,92,89,103,97,109,97,97,97,112,99,97,104,108,108,99,92,91,108,97,116,110,100,118,99,104,101,95,109,104,93,96,85,113,88,102,91,105,108,109,92,108,109,102,106,103,91,101,111,99,105,104,100,102,99,109,108,96,102,103,90,108,112,104,102,100,106,104,105,113,110,111,101,99,103,113,95,99,113,106,109,107,95,95,95,97,104,106,95,96,104,103,107,105,100,115,102,103,96,101,91,96,108,95,112,104,109,99,113,109,112,102,114,100,110,104,102,93,95,99,106,108,96,110,106,116,96,109,101,101,100,100,111,101,99,113,108,93,100,90,105,108,100,113,102,106,106,125,99,103,106,109,95,90,91,105,97,106,107,106,99,119,110,88,121,108,103,103,98,101,102,95,99,105,90,89,101,99,94,103,107,103,102,117,96,118,100,103,100,92,100,103,114,99,113,100,101,114,99,99,107,106,101,113,92,101,110,104,100,94,104,87,113,103,98,104,91,103,113,104,112,100,104,90,105,112,110,102,99,102,101,97,102,104,95,103,94,111,105,94,111,103,97,107,102,88,95,91,96,107,110,111,109,102,103,87,96,110,114,100,106,94,98,98,105,103,111,109,84,96,98,109,85,112,112,102,105,103,100,101,108,96,106,105,118,83,102,107,97,109,108,91,99,102,99,102,113,89,98,106,86,102,107,93,114,98,107,106,92,95,103,106,97,100,98,106,96,107,116,111,103,110,96,97,122,105,99,105,95,104,107,115,118,114,134,112,97,107,103,113,106,102,106,105,110,110,80,78,118,99,97,95,93,104,102,110,106,102,101,106,101,114,104,106,102,104,99,95,107,97,96,101,92,105,108,110,107,105,109,98,106,97,87,98,104,106,94,123,109,108,106,74,104,103,103,106,109,97,94,100,94,107,98,99,104,98,98,90,99,113,98,96,105,105,105,108,100,96,107,109,101,108,101,102,94,97,112,110,89,122,103,111,96,105,100,95,73,100,103,110,99,96,103,99,108,100,115,99,105,112,104,118,97,102,105,100,98,103,103,90,105,110,99,94,111,108,99,109,103,105,98,96,112,92,113,113,104,112,102,95,97,108,100,91,98,105,101,105,100,94,100,103,125,105,97,110,100,101,100,82,104,118,103,107,103,101,109,107,107,122,109,90,105,104,100,104,94,103,105,112,95,104,107,107,99,105,113,100,105,103,109,112,104,102,105,107,96,105,101,99,100,101,101,108,96,97,102,114,79,98,100,101,96,97,96,100,100,109,101,109,108,94,112,105,102,95,106,99,118,101,104,96,107,109,102,105,102,87,104,104,94,108,101,100,103,101,98,101,113,116,103,112,101,108,103,91,108,71,101,100,105,109,111,106,114,116,88,116,99,104,98,99,90,103,110,97,105,109,102,102,100,108,95,102,100,114,84,106,111,104,102,123,101,91,104,99,106,91,103,113,102,110,119,93,74,98,106,98,104,111,100,97,108,92,100,100,103,99,112,99,118,92,111,102,111,103,107,115,96,85,113,98,108,111,104,110,102,104,97,113,106,104,131,109,107,108,107,106,105,107,103,103,109,94,107,117,93,104,109,101,102,102,92,93,104,118,103,91,106,112,97,98,108,104,98,99,95,94,95,102,107,97,99,98,105,88,101,104,107,99,94,98,100,104,99,96,105,98,96,110,109,98,94,95,100,118,99,108,110,96,101,105,83,109,109,113,104,104,111,98,116,101,99,78,112,105,96,108,96,100,91,96,99,122,109,101,109,104,95,100,88,112,108,116,104,92,108,99,109,104,91,102,111,105,97,90,109,96,108,103,100,106,106,103,97,103,110,116,100,102,105,93,115,112,111,108,109,113,100,95,101,101,108,106,91,100,94,95,105,86,109,103,106,106,102,113,99,105,103,99,101,103,97,108,109,112,104,90,104,108,101,125,105,118,94,99,95,108,100,97,96,89,86,79,110,89,96,101,106,102,79,110,101,100,112,95,96,102,94,109,90,97,98,114,99,106,103,109,103,97,113,119,100,112,122,108,114,103,103,111,99,119,107,116,96,102,122,123,106,105,100,108,98,99,108,107,110,102,92,100,83,107,102,88,107,113,106,90,96,104,112,109,113,105,108,96,102,107,111,82,107,107,104,95,112,107,98,102,96,100,85,115,110,116,104,102,107,99,107,108,98,121,98,102,112,124,100,105,96,96,106,95,105,104,103,97,97,94,100,95,113,114,104,104,106,106,111,114,102,111,116,85,102,89,99,105,110,90,108,101,96,107,96,111,109,113,109,109,102,104,107,103,110,106,94,105,100,115,103,105,105,103,102,119,100,104,105,109,106,95,100,121,97,103,98,101,112,108,107,113,98,102,99,105,111,107,110,101,113,99,104,95,127,115,112,105,110,125,114,90,114,108,111,103,95,99,101,102,117,112,104,105,118,108,115,86,101,124,93,107,117,109,103,98,115,106,113,102,83,122,104,107,108,117,125,123,98,94,108,98,84,109,113,80,111,104,113,119,104,96,97,109,112,116,86,116,89,102,105,106,107,106,93,121,108,95,90,105,98,102,98,94,110,111,84,96,87,99,98,108,103,99,117,106,79,103,115,110,110,105,107,96,112,117,105,111,109,103,91,112,109,113,102,77,109,98,95,117,110,106,104,103,105,107,107,108,111,113,88,102,106,93,105,105,100,109,114,110,111,103,98,110,109,113,108,124,114,102,111,102,110,111,102,103,119,110,102,92,101,107,110,91,95,110,137,101,110,99,103,114,86,108,97,103,127,96,105,107,110,99,98,107,109,104,102,103,103,112,101,113,95,105,100,95,93,114,110,104,121,96,99,104,109,111,110,94,106,99,118,102,108,104,103,112,98,109,87,119,104,111,91,113,98,97,108,88,88,101,108,96,105,115,109,111,115,107,104,104,104,100,105,111,114,101,104,105,95,89,115,103,105,104,113,101,97,99,102,113,112,103,112,105,106,111,111,109,107,72,98,95,92,98,109,101,105,106,100,106,111,114,96,113,117,98,111,99,102,104,116,103,97,98,99,115,103,101,108,103,104,103,113,110,102,102,105,116,105,107,99,99,98,97,89,114,103,111,105,84,99,100,100,107,103,95,82,112,100,107,98,104,97,109,109,102,109,121,101,123,109,110,92,111,96,111,116,109,110,108,101,104,109,105,100,99,99,95,106,116,99,107,110,108,107,100,91,118,103,113,105,98,93,102,109,113,99,104,89,116,101,102,109,107,109,105,98,100,109,105,101,107,106,94,99,89,100,104,100,108,91,97,97,106,106,99,103,118,100,100,92,91,91,95,97,95,111,105,114,109,95,103,120,107,102,100,108,108,102,100,99,99,97,96,105,102,101,107,111,99,91,100,109,101,88,95,107,145,103,103,116,111,104,104,97,81,100,103,100,77,110,92,98,124,111,102,100,95,102,114,107,113,106,125,107,104,102,96,104,87,108,107,107,111,121,108,105,107,104,101,117,114,99,102,109,103,102,105,101,97,105,94,101,96,98,103,113,108,110,105,109,116,112,98,95,99,96,86,97,96,109,105,85,99,112,116,98,102,105,112,97,106,121,106,83,100,103,116,119,86,109,100,122,102,106,109,103,73,110,106,99,119,104,113,100,97,99,116,104,117,105,110,113,95,116,106,101,110,99,105,103,104,89,105,99,113,99,98,104,98,109,108,105,107,93,105,94,109,100,99,98,95,102,105,95,95,92,105,106,103,109,112,97,97,88,104,115,101,120,111,113,101,101,104,96,105,116,112,100,106,104,102,101,108,98,105,101,106,117,101,87,103,102,117,100,111,98,111,110,106,95,103,110,101,110,102,108,106,102,101,106,113,108,99,104,110,102,99,108,97,98,105,97,108,105,100,100,113,101,95,111,114,107,102,101,96,82,105,99,104,116,104,100,96,98,100,102,114,106,114,111,98,101,95,113,109,112,110,111,101,100,107,99,101,110,112,106,98,103,113,113,101,105,102,110,110,104,101,112,100,112,102,98,99,115,112,111,95,106,115,105,103,100,106,98,101,109,102,111,107,109,109,104,112,91,113,89,96,111,100,109,103,92,109,108,104,94,106,103,113,91,77,99,93,101,104,100,109,109,103,99,79,99,106,107,104,106,124,115,103,113,103,101,99,100,110,98,104,103,106,104,101,103,107,108,104,98,93,93,108,100,112,98,99,97,105,101,97,101,117,102,98,111,108,105,104,98,120,112,105,107,110,95,82,105,104,94,109,101,104,114,103,123,111,109,112,103,102,100,99,111,107,107,103,97,106,106,96,104,99,110,109,100,99,107,100,96,117,100,107,110,95,93,101,109,111,101,90,95,118,132,113,106,104,95,112,106,105,81,96,99,91,98,102,92,89,94,105,102,117,109,101,101,112,103,103,97,108,99,104,103,104,116,108,104,121,99,107,101,106,108,105,105,112,86,100,108,111,98,96,96,95,102,91,115,103,105,108,98,113,100,105,109,90,106,106,96,84,96,95,109,113,106,107,100,103,112,100,98,102,96,92,105,111,95,112,104,108,107,106,106,111,93,95,95, +628.10156,114,112,89,104,108,90,110,105,105,98,95,102,91,92,107,95,97,101,99,106,105,112,95,99,106,92,96,102,111,108,100,117,107,104,94,107,108,96,97,80,97,101,84,96,103,94,95,98,96,99,108,108,117,110,112,101,100,112,109,91,118,72,87,104,103,103,99,99,99,100,95,104,98,92,99,95,105,94,95,96,97,98,102,98,114,94,104,104,112,88,102,93,113,103,95,104,90,108,107,124,94,101,102,94,96,106,104,102,102,95,104,103,93,86,125,108,91,101,104,93,92,99,117,98,108,105,116,107,106,100,84,108,112,109,91,100,106,108,92,96,113,98,97,82,95,100,113,110,89,100,107,85,107,94,100,96,99,115,109,95,106,113,107,111,98,103,102,101,91,98,99,108,123,104,91,104,97,102,105,101,95,96,102,105,98,116,112,96,106,102,97,104,113,103,113,95,115,104,117,92,105,82,104,108,92,116,100,98,94,95,115,98,104,110,95,97,98,107,75,105,117,107,100,89,112,115,107,107,108,101,102,106,98,99,104,101,99,106,100,130,94,94,129,101,92,113,94,103,105,95,107,105,91,104,103,110,92,109,105,104,96,105,107,100,103,106,103,102,93,98,102,106,101,100,110,102,97,104,110,105,108,110,124,107,102,112,102,97,89,90,98,116,111,114,110,102,103,100,113,109,109,96,98,106,110,108,101,108,106,111,96,110,107,106,103,87,102,94,106,118,101,108,113,112,117,97,110,96,102,104,118,109,99,109,107,102,99,108,98,108,113,99,112,95,114,97,121,103,103,107,105,106,109,110,103,102,105,113,108,104,100,101,100,104,107,105,107,112,112,108,95,111,100,102,102,103,113,95,104,109,105,109,113,105,90,88,103,97,108,90,108,102,92,106,107,94,98,101,101,102,106,108,98,105,101,101,94,104,102,103,94,94,96,97,107,100,100,111,98,97,104,102,95,105,113,98,81,93,98,118,100,100,118,97,103,96,103,107,106,100,109,101,103,98,99,96,98,92,104,113,111,102,96,99,104,93,101,103,100,110,103,94,95,106,102,109,109,103,102,99,101,107,106,100,102,105,107,110,94,101,104,111,103,108,105,106,121,98,112,104,106,104,99,101,100,98,113,95,100,100,100,89,99,111,107,108,95,98,117,101,100,101,113,111,105,109,100,110,109,100,85,97,108,79,108,95,101,97,105,106,95,104,106,105,109,100,103,104,100,109,101,102,99,95,105,101,104,104,115,99,102,116,102,109,102,103,103,106,99,110,110,100,106,111,102,101,106,95,93,102,87,105,117,105,94,101,107,96,102,107,98,105,107,111,100,92,104,104,111,78,100,95,102,112,104,105,107,109,104,108,109,101,107,91,108,95,96,105,107,105,110,101,101,110,97,105,92,103,108,117,101,108,105,105,98,106,109,107,102,96,103,111,88,116,109,109,86,108,110,108,98,101,101,112,88,105,106,105,113,102,109,109,107,101,105,96,97,112,105,100,103,100,104,102,105,105,116,101,112,108,100,114,110,77,102,105,102,99,113,103,96,101,101,101,99,98,95,101,108,86,125,98,102,102,125,91,99,97,101,102,95,105,95,95,106,101,106,104,108,96,112,95,107,113,110,109,87,94,113,95,107,101,93,115,99,101,92,104,104,102,92,108,104,96,99,107,100,104,108,95,104,106,110,101,104,100,100,99,99,111,101,100,105,90,112,99,121,105,109,106,113,100,96,95,104,106,97,95,108,102,104,100,95,107,104,115,96,95,99,100,113,102,110,108,101,107,94,113,99,105,109,100,104,119,105,118,83,108,102,114,101,90,98,95,121,109,106,103,99,99,104,97,115,92,107,103,116,106,112,105,109,109,103,99,93,105,102,108,108,102,113,123,109,125,116,102,106,97,106,109,101,95,91,112,109,104,94,85,102,103,94,93,106,108,101,109,107,100,113,95,102,102,96,104,109,105,109,100,106,87,110,106,108,104,99,114,108,107,106,103,99,110,102,92,114,102,94,110,107,103,101,103,104,113,88,99,105,102,112,106,104,102,132,100,113,101,104,114,102,99,114,120,112,113,97,94,104,107,101,105,105,104,116,111,94,103,106,109,99,104,109,109,103,107,100,102,95,102,92,99,111,97,98,109,116,99,103,110,107,101,111,116,106,95,109,103,116,109,91,112,104,116,104,100,93,102,105,108,100,110,92,104,102,114,102,94,100,101,105,98,105,106,99,97,112,99,104,105,104,91,99,103,95,102,100,103,103,106,98,100,114,96,96,87,102,97,104,102,93,102,97,100,113,108,92,106,118,124,103,111,106,111,99,96,93,116,88,118,105,103,119,101,116,88,108,103,106,112,121,122,117,101,114,117,114,105,108,106,113,96,95,125,111,106,105,107,111,100,97,100,109,109,94,111,96,106,101,105,117,100,92,111,102,93,105,116,106,105,90,108,114,107,95,104,89,106,106,98,113,107,104,104,104,109,103,121,99,94,103,108,110,93,116,114,111,94,120,109,113,99,101,110,98,103,108,107,110,106,113,112,110,101,99,98,114,99,104,120,85,122,99,104,109,112,107,106,96,99,104,104,106,108,98,121,98,91,112,96,120,111,113,120,112,97,82,87,95,101,106,108,119,96,112,104,109,117,106,91,111,95,98,98,101,115,102,103,111,114,118,105,99,100,98,102,107,106,107,103,103,111,104,107,105,106,91,107,105,100,108,99,105,108,109,102,113,106,108,100,105,98,109,106,96,104,93,106,105,109,105,106,106,86,96,106,113,105,113,106,107,100,92,99,99,112,100,96,131,116,104,112,104,108,100,91,100,104,106,102,108,108,121,99,105,107,105,103,114,98,102,115,112,100,115,102,110,111,102,106,105,106,109,106,101,98,113,92,84,92,110,112,107,99,118,107,103,104,107,107,101,116,110,102,101,105,102,111,94,103,110,95,106,108,107,108,99,108,110,110,93,125,101,100,104,106,100,114,107,120,105,83,121,118,109,103,77,98,104,100,105,89,106,109,110,113,109,106,103,102,96,108,120,102,102,117,111,94,102,117,120,105,101,110,109,101,99,126,98,128,97,112,106,105,108,91,117,113,128,98,118,83,105,105,106,104,85,105,102,103,99,108,103,102,100,98,110,98,109,104,85,99,100,94,101,100,99,107,116,105,112,100,124,95,103,107,98,117,106,100,109,98,95,99,109,108,111,103,101,108,111,105,93,115,107,94,106,111,103,102,117,102,115,112,106,106,122,110,120,117,98,110,100,92,108,101,98,101,101,97,103,108,104,100,105,94,108,112,119,112,100,108,108,117,103,92,106,104,111,109,92,97,104,114,107,98,94,103,109,99,108,95,100,125,96,111,100,96,109,98,101,117,105,96,87,94,107,94,103,108,85,106,92,115,108,103,103,111,103,95,102,97,101,104,100,98,112,107,101,99,95,103,96,106,105,108,113,110,111,110,98,93,102,96,111,99,106,107,113,101,112,106,109,121,88,98,111,104,108,96,101,102,107,103,94,120,106,96,113,103,108,99,99,99,113,95,101,97,98,100,84,113,115,103,107,112,94,104,94,109,100,99,98,95,109,103,101,108,108,92,105,102,100,98,118,112,114,102,105,102,97,114,111,101,118,108,96,105,107,122,105,118,107,96,104,113,96,98,103,104,111,110,108,99,99,106,100,96,111,111,116,100,104,110,121,107,107,99,117,101,89,94,106,124,109,110,104,105,116,117,99,106,98,106,102,107,117,98,111,100,116,106,82,117,115,111,103,102,106,103,102,100,99,112,108,110,98,110,99,106,105,103,103,113,102,113,107,117,100,109,94,108,102,107,113,97,108,102,103,101,97,104,101,111,99,111,100,101,97,113,104,110,109,112,96,93,113,90,104,96,100,106,98,101,103,92,98,108,113,100,109,100,105,101,100,103,103,103,98,102,106,116,105,106,107,101,111,109,99,102,91,107,104,117,112,103,116,98,105,110,90,108,119,108,102,107,106,107,102,102,114,115,97,107,99,107,113,90,111,95,98,104,92,106,103,103,107,110,106,114,112,116,108,104,101,99,111,102,104,113,99,90,105,96,102,110,92,109,102,104,110,112,112,112,110,102,102,110,108,118,109,103,103,100,92,111,106,89,104,110,101,102,94,101,87,91,106,109,95,113,114,106,121,106,101,103,118,110,97,101,98,85,115,102,111,102,110,108,108,106,102,106,121,101,99,105,99,107,102,101,108,95,101,92,112,99,98,94,96,104,92,110,102,107,101,99,103,98,96,106,92,100,102,93,102,99,108,109,98,122,93,115,95,100,107,103,105,116,98,93,111,107,102,87,106,95,112,103,100,112,103,112,98,105,84,106,102,105,96,107,100,119,116,108,106,101,105,108,115,99,97,105,105,98,96,118,96,120,90,99,108,110,116,105,98,104,94,96,93,103,104,109,107,95,100,108,113,98,104,100,108,102,106,107,98,102,100,117,92,97,117,114,95,105,105,117,103,105,101,97,98,113,108,101,113,105,102,111,95,95,95,93,106,108,97,110,101,106,91,113,104,120,98,106,105,94,108,110,111,98,68,96,109,71,95,91,102,109,105,101,113,112,102,95,102,112,115,107,112,108,105,109,109,87,101,95,108,116,106,112,109,113,107,109,96,110,95,102,118,102,96,95,112,89,108,113,101,100,104,104,127,107,106,99,99,107,113,88,79,105,113,95,91,103,99,105,103,103,106,99,98,107,81,104,91,95,120,115,110,106,108,107,106,101,120,101,101,111,100,93,111,95,109,129,100,103,123,95,104,111,96,103,91,112,90,105,119,113,110,103,73,108,109,99,97,117,92,104,90,107,113,90,103,115,96,105,113,116,99,104,106,96,108,113,99,108,103,107,78,105,111,94, +628.24268,95,100,101,100,87,96,102,105,100,98,100,97,112,98,94,109,92,104,90,102,111,110,125,101,99,116,106,106,103,88,103,106,100,94,108,109,103,79,95,105,104,110,100,118,105,114,127,100,102,108,95,105,91,97,94,103,100,97,103,90,94,101,109,113,102,100,95,105,108,96,108,105,107,108,94,111,104,93,108,93,104,96,87,105,98,117,115,111,105,109,117,106,99,94,106,107,103,103,115,105,113,112,103,96,96,89,106,116,109,100,105,103,117,109,113,107,111,100,110,98,111,93,106,100,104,100,124,100,103,118,95,110,87,108,101,133,104,100,98,104,88,101,93,107,104,111,94,104,94,107,112,113,108,85,112,112,94,105,103,98,101,101,96,106,108,99,100,90,105,97,109,107,115,132,103,88,110,88,102,88,95,101,110,97,108,90,101,103,99,93,87,110,101,108,80,92,104,108,101,93,97,96,108,101,102,118,103,94,103,106,106,94,103,114,106,92,100,93,96,99,88,108,104,100,87,112,113,100,104,97,100,104,105,106,94,96,106,102,104,109,100,105,96,97,96,94,97,105,106,106,101,102,98,111,109,113,97,102,105,106,87,105,102,111,100,91,72,114,106,97,118,114,94,97,108,109,100,103,99,96,84,108,96,71,95,114,94,111,106,117,104,95,101,114,105,100,108,106,103,89,122,88,108,104,98,107,109,92,95,109,103,116,122,91,92,103,97,98,100,107,104,95,91,108,108,101,104,100,100,102,105,94,117,94,108,99,106,93,109,102,96,99,114,108,94,92,113,112,101,104,108,93,111,106,98,88,103,106,96,109,101,99,107,111,108,100,102,126,107,111,99,100,111,94,102,101,82,103,104,102,114,104,100,101,103,97,103,92,87,93,100,94,103,99,105,109,99,109,109,109,90,111,104,102,89,105,101,102,98,99,90,101,112,112,100,93,101,109,101,100,111,89,105,105,96,97,103,110,101,102,101,106,80,95,96,97,96,106,102,92,117,100,95,119,93,106,98,98,102,104,100,94,102,117,103,94,95,101,102,100,98,106,105,109,107,110,104,97,110,107,112,113,96,95,97,93,94,112,104,109,102,105,110,105,97,108,107,118,106,102,96,110,101,94,106,105,105,104,95,93,103,103,103,107,105,124,105,107,101,106,101,107,114,112,105,105,105,103,99,101,100,110,98,113,101,104,103,105,104,88,95,109,101,103,109,117,130,98,106,118,109,108,87,100,108,97,99,91,108,105,99,107,106,103,95,104,104,110,102,96,99,112,105,113,101,109,89,104,102,105,91,111,108,98,113,107,98,112,107,106,112,94,109,100,101,100,106,117,94,100,103,106,109,92,104,108,110,102,97,104,99,108,114,103,112,101,102,100,113,108,106,93,106,87,91,105,101,99,103,94,114,101,112,106,107,86,93,92,95,121,105,103,113,109,91,99,102,101,100,104,97,108,85,110,104,102,102,86,106,100,115,104,104,104,105,103,109,104,105,109,118,107,105,101,97,104,99,110,107,103,99,108,104,100,103,111,112,108,107,102,114,91,96,86,100,105,104,98,104,96,105,115,96,103,109,95,91,98,112,101,80,122,82,98,101,112,100,109,101,107,111,91,116,101,104,95,103,102,119,97,107,95,112,109,97,102,94,111,99,116,111,100,107,99,104,104,99,96,85,104,111,100,108,102,116,105,103,136,108,117,118,114,111,101,111,101,99,101,100,103,108,110,103,99,92,102,105,106,99,92,106,103,113,106,110,109,101,107,105,100,121,113,104,102,104,97,96,109,101,108,96,106,94,113,101,115,89,113,108,117,113,100,101,96,96,103,103,113,106,111,106,100,105,100,108,114,100,105,102,118,108,102,93,99,110,115,108,106,113,92,108,100,126,99,102,96,100,97,108,108,113,101,104,99,106,113,104,95,110,94,93,102,98,100,109,101,110,100,97,114,103,94,103,111,107,101,103,111,112,112,110,105,97,117,106,107,107,105,102,110,110,99,79,117,94,115,106,100,121,103,112,106,103,105,99,105,102,105,93,108,104,104,103,97,74,112,102,107,97,96,102,106,104,103,118,105,97,120,110,105,113,113,109,103,102,104,99,98,106,114,110,98,98,105,96,88,122,96,105,101,112,104,106,121,110,110,108,99,93,111,107,109,100,111,106,106,110,104,107,95,95,107,105,101,100,105,100,104,100,101,126,107,97,98,103,96,106,104,105,94,95,94,108,88,97,113,99,100,116,100,110,103,98,111,97,94,90,107,101,101,114,98,100,93,105,94,109,107,93,94,101,106,105,107,108,110,114,92,105,99,106,111,121,107,101,102,101,94,84,103,99,113,106,107,112,91,104,116,120,107,115,122,103,114,116,116,116,119,105,87,106,122,109,110,113,102,105,111,98,114,96,118,96,107,98,99,91,117,105,110,105,101,104,113,103,95,119,102,101,97,104,87,109,114,104,116,97,92,116,103,99,91,116,98,105,108,99,99,109,102,108,99,118,109,118,105,106,105,97,103,101,115,101,94,104,102,109,94,101,112,106,104,103,89,105,102,107,126,106,103,110,98,110,113,100,125,112,94,104,106,99,107,105,100,105,99,101,102,109,102,109,97,105,108,101,106,110,101,104,110,113,94,85,97,110,103,89,107,109,98,101,101,117,97,101,109,112,113,90,111,105,106,105,95,99,109,124,102,105,104,101,97,101,103,96,113,108,106,91,102,94,111,113,118,109,104,113,111,107,104,104,107,108,116,97,108,110,125,108,100,103,112,98,104,103,103,105,116,109,103,90,105,109,108,99,106,111,98,101,103,97,98,108,101,105,109,103,105,93,108,101,111,99,106,106,99,113,106,105,107,100,96,110,114,98,108,113,104,99,115,102,91,88,117,108,105,113,101,91,145,108,112,113,110,96,102,106,105,103,104,87,110,77,102,102,104,92,113,109,114,93,92,112,108,103,87,107,89,106,99,109,111,109,91,109,110,91,106,142,89,104,98,102,98,104,113,103,113,92,96,101,94,100,126,125,113,97,102,103,117,94,96,115,98,107,104,106,98,94,91,101,109,107,113,86,108,100,100,103,111,118,115,104,106,104,112,104,104,102,96,104,106,106,111,109,92,107,109,94,92,99,90,97,104,96,104,94,106,88,98,92,104,91,106,91,78,110,100,121,109,108,118,97,103,112,99,106,95,102,113,99,107,101,103,113,95,101,99,105,106,111,114,86,93,104,114,98,104,116,105,108,109,98,99,109,98,109,104,101,98,104,103,104,99,96,93,92,120,106,117,111,96,100,94,97,111,99,119,107,98,105,108,100,104,100,97,92,95,109,90,108,92,96,91,94,104,111,102,100,97,98,100,108,126,110,100,103,97,109,96,101,92,101,103,100,102,104,101,106,106,103,109,103,112,104,107,108,103,96,96,83,109,104,112,102,101,98,102,82,96,93,108,106,97,101,102,103,115,113,97,98,107,106,115,102,118,103,90,113,102,106,99,105,117,99,112,79,93,92,94,100,78,103,103,99,100,97,103,91,104,98,103,103,101,113,113,101,88,106,113,106,107,91,99,80,107,102,101,119,98,119,101,94,112,116,100,90,105,116,104,91,105,99,113,102,104,120,96,107,103,99,104,106,102,107,110,107,108,100,104,96,97,104,108,101,104,96,93,103,90,104,113,94,114,105,111,92,96,101,101,107,96,108,104,107,99,110,105,93,97,118,101,100,97,116,108,97,114,103,108,103,101,101,101,105,102,98,103,101,112,98,106,104,102,100,94,106,101,109,105,98,103,102,101,84,103,96,117,106,113,106,104,113,95,104,112,95,103,117,108,97,106,97,100,92,115,97,105,105,94,96,109,94,117,96,108,96,103,91,104,104,102,105,85,97,101,111,103,103,114,103,106,91,101,104,115,95,117,107,98,94,96,106,101,113,94,94,104,106,106,105,116,98,111,109,115,110,109,97,106,111,103,96,102,105,105,102,108,103,104,107,101,99,99,108,101,105,104,107,96,111,100,91,98,97,120,102,93,113,91,105,105,96,95,109,95,107,106,116,95,91,109,93,99,100,108,96,114,114,101,91,98,108,96,97,105,100,109,95,102,96,103,106,113,99,103,102,99,102,98,96,101,94,97,105,106,104,107,99,105,108,106,105,84,110,100,109,111,93,106,90,102,100,109,111,115,104,117,100,99,111,113,104,103,100,106,101,100,99,100,106,98,104,105,103,104,114,108,103,103,94,109,100,123,113,99,95,109,105,102,99,105,107,105,110,101,117,101,100,115,98,111,111,94,108,98,101,96,103,98,103,103,106,92,94,107,97,103,106,99,103,98,104,94,106,110,103,101,96,109,107,104,116,94,100,109,109,91,110,101,105,119,106,112,85,112,105,106,92,92,104,91,106,113,106,113,96,124,108,94,102,109,98,93,117,103,91,92,100,84,102,106,101,108,109,88,102,99,113,113,103,99,107,98,109,97,104,108,105,113,92,95,103,111,105,102,100,97,123,94,102,76,95,104,99,117,103,105,116,104,108,101,99,100,109,91,98,98,91,105,103,91,107,107,89,105,111,103,100,111,95,97,100,109,110,115,104,110,96,108,107,103,94,98,108,112,111,78,97,103,99,95,110,114,108,87,115,105,104,104,102,98,101,98,116,99,108,100,100,97,110,107,110,104,120,100,113,107,102,100,118,106,104,117,97,93,95,98,99,109,96,101,100,110,106,105,101,97,122,100,101,104,110,104,90,108,102,100,98,103,98,115,93,116,107,106,92,115,110,101,103,96,135,101,105,117,97,99,108,117,107,104,95,113,112,98,92,117,97,106,103,98,93,98,104,104,90,107,111,94,96,111,95,109,105,109,98,127,105,100,108,106,107,97,124,99,127,107,80,110, +628.38379,91,110,112,99,117,116,102,108,98,113,93,113,101,99,101,94,99,103,96,113,113,100,96,84,84,106,109,96,107,101,106,109,101,103,114,98,94,110,105,95,87,99,98,91,105,109,102,112,113,104,104,101,110,98,104,108,98,99,105,102,93,101,99,105,103,115,99,104,97,108,96,97,99,106,98,101,94,112,108,81,102,109,105,95,96,93,92,105,96,94,97,95,76,90,95,102,97,92,103,112,97,100,103,97,101,95,97,98,96,107,109,72,98,102,98,99,97,110,109,102,105,88,101,99,104,105,89,100,124,108,122,107,102,81,101,111,112,84,97,99,108,104,104,105,112,90,103,95,95,111,110,87,99,93,106,95,106,113,89,98,95,94,98,80,85,98,106,105,103,113,102,105,94,90,98,104,105,99,95,89,94,103,107,102,103,127,108,91,95,98,111,100,96,102,118,102,97,80,110,104,79,96,91,104,104,101,110,110,110,125,107,110,113,109,107,112,81,104,101,103,106,106,96,112,95,110,114,100,118,108,112,104,112,105,105,105,110,102,106,97,95,115,113,119,104,107,102,103,99,86,105,99,94,101,103,99,97,108,95,110,104,104,100,109,99,114,96,99,88,92,101,102,111,110,95,107,96,107,91,92,105,102,103,77,105,104,87,103,117,102,102,81,101,112,97,111,106,99,99,111,100,104,111,110,89,107,100,112,90,113,92,104,83,108,96,91,97,100,91,104,91,100,116,98,106,101,104,96,105,99,102,109,103,101,118,100,101,107,95,106,111,98,108,85,99,110,85,106,107,93,104,98,113,104,100,100,101,95,115,95,102,108,99,88,101,110,104,108,93,100,107,98,108,106,98,106,94,105,104,106,99,102,104,89,99,98,112,98,105,89,107,101,101,104,104,99,102,117,105,104,100,96,107,97,103,101,98,104,109,83,95,108,99,111,103,97,102,87,113,88,95,99,110,98,90,96,101,90,100,96,109,113,99,92,96,105,114,99,97,112,106,98,98,103,104,91,111,101,109,104,95,100,106,93,106,113,113,117,116,121,107,105,101,105,102,110,104,106,112,91,102,108,106,104,112,100,108,89,92,99,113,105,114,114,101,112,105,107,91,88,109,125,82,97,100,101,107,105,106,97,99,105,102,103,104,114,103,102,100,107,98,79,103,95,96,99,96,99,92,100,101,104,100,106,107,103,95,97,99,108,96,97,110,108,105,100,111,97,103,115,99,108,108,114,112,98,111,93,100,107,109,95,94,99,95,104,114,108,89,118,101,108,108,107,95,104,104,96,94,105,99,103,95,107,111,106,104,99,102,95,106,101,103,112,100,98,102,118,99,108,105,108,107,105,97,105,107,91,106,113,110,91,115,97,95,89,97,112,105,99,91,114,97,97,104,99,96,108,110,95,101,108,114,108,113,111,106,101,108,104,91,85,97,100,102,105,107,101,104,99,110,112,109,107,103,98,95,97,104,100,93,108,107,104,101,85,104,103,93,104,103,124,99,114,105,105,111,114,121,104,120,91,103,104,105,108,102,109,104,98,105,115,112,106,105,97,89,100,99,106,111,101,99,101,92,98,107,104,97,82,94,100,96,103,95,112,113,107,102,104,113,110,106,98,104,107,104,102,113,103,101,108,99,96,96,102,108,109,103,114,100,109,92,89,99,116,96,89,111,101,104,108,109,93,104,108,103,90,92,115,110,98,103,100,108,102,103,79,106,111,108,104,94,108,90,117,96,111,84,113,114,99,100,106,105,120,99,116,94,113,115,106,69,98,101,109,113,108,97,103,113,113,113,113,102,107,95,119,99,91,110,94,95,99,91,110,117,101,106,121,114,92,89,105,115,97,110,112,112,106,90,113,107,103,105,116,103,101,101,100,109,114,112,101,112,106,105,99,104,113,105,113,106,105,101,101,109,109,108,100,87,102,94,104,96,107,108,94,105,112,106,95,96,104,103,93,91,110,104,106,99,110,103,100,107,102,107,112,112,100,99,96,119,126,106,103,100,117,88,99,106,104,109,105,105,92,113,105,97,100,103,114,117,100,108,98,105,107,90,89,107,103,111,109,105,110,95,102,104,91,107,96,100,126,98,100,114,102,102,108,112,109,109,102,105,98,100,113,103,104,84,104,109,110,103,100,99,98,103,103,106,105,108,104,104,108,101,92,98,104,114,100,93,100,95,90,107,117,95,108,105,106,101,112,100,98,91,108,113,122,91,109,106,101,102,117,98,110,100,92,109,109,100,100,122,92,107,97,103,101,106,109,118,104,96,103,114,111,95,105,94,98,102,95,100,104,110,100,122,91,114,113,106,84,120,105,98,102,103,104,95,118,103,99,96,113,96,116,100,115,106,127,91,119,104,121,106,106,108,128,108,111,95,115,105,106,98,112,123,91,104,102,112,112,106,91,101,103,115,98,101,115,102,96,120,91,114,105,96,121,91,117,105,109,103,117,100,95,107,93,97,112,103,102,101,100,110,90,93,112,103,106,98,97,106,86,107,99,109,108,134,89,103,109,110,104,106,116,98,97,107,107,98,107,98,98,98,101,116,93,103,109,106,95,115,100,118,102,94,100,100,107,100,110,95,102,107,103,109,100,117,105,107,99,112,102,111,98,111,97,100,103,98,87,127,90,107,106,102,100,90,99,102,108,100,107,110,111,103,84,99,105,105,100,116,91,109,99,107,108,97,105,100,112,107,99,112,107,109,106,130,107,99,104,104,112,102,110,107,95,114,112,102,104,108,100,109,109,109,89,103,111,95,95,108,105,100,106,113,94,117,110,106,108,103,94,96,87,100,106,121,117,95,94,98,107,100,113,103,119,94,95,103,111,106,98,103,111,106,104,94,105,105,91,103,112,105,104,108,99,110,103,101,112,119,113,99,120,105,95,117,108,102,93,108,106,111,121,103,106,113,100,101,102,84,105,115,90,83,103,114,106,96,106,118,92,108,96,96,102,106,115,102,93,95,118,104,120,104,102,101,102,99,105,106,93,113,94,107,113,106,109,99,107,112,102,100,92,93,102,101,98,102,104,139,98,106,106,104,104,112,110,88,93,113,100,106,102,117,100,109,97,125,112,118,114,106,102,105,102,102,101,101,112,108,108,99,106,98,106,70,97,106,107,107,88,99,92,109,102,100,100,89,93,105,112,105,100,83,117,96,100,94,113,99,100,119,118,92,123,101,112,96,103,117,101,98,103,94,110,108,108,117,97,109,93,99,98,119,95,112,99,86,112,108,106,106,104,103,97,103,101,98,108,113,102,98,110,77,113,121,95,102,95,105,97,109,100,106,103,100,100,98,108,114,104,102,93,99,94,100,102,106,113,103,106,118,102,115,93,103,106,104,110,102,112,101,94,94,97,122,109,101,106,110,105,102,99,104,104,99,111,113,112,110,106,109,105,103,89,102,104,107,107,102,95,99,109,94,96,98,104,94,85,95,91,113,114,107,107,109,85,96,99,102,83,88,103,101,101,104,101,110,115,109,107,103,100,99,103,101,112,98,106,104,101,98,100,102,111,102,103,112,97,98,108,100,118,100,106,117,105,103,117,106,96,99,104,104,98,110,93,94,116,102,97,108,87,95,97,93,102,112,108,104,93,109,117,99,125,104,98,103,104,109,96,109,109,98,105,79,109,108,108,95,107,88,108,102,110,109,114,110,102,94,93,100,108,116,108,104,112,109,104,99,99,112,110,108,67,101,102,94,105,113,100,105,109,107,106,91,107,111,102,105,100,81,116,106,109,106,110,93,102,92,109,101,97,103,98,93,105,95,106,102,108,106,111,110,111,109,100,99,96,108,102,91,93,96,103,102,104,98,106,98,106,108,106,118,99,92,108,106,105,106,93,94,99,104,103,96,99,95,100,109,111,100,110,101,106,106,116,109,109,82,114,103,108,105,96,97,108,99,106,110,103,97,90,106,103,109,102,103,103,108,106,104,100,99,117,109,109,99,96,112,96,106,99,106,103,103,97,112,92,98,111,102,102,105,101,113,108,111,101,104,101,106,88,112,108,112,113,115,100,105,101,104,105,113,89,113,88,109,100,103,105,105,108,108,109,104,109,107,110,106,110,99,117,106,101,96,102,109,98,101,110,109,104,103,100,108,97,94,95,101,114,102,105,106,111,113,84,115,95,121,109,101,91,102,104,107,95,119,120,99,104,106,111,102,96,100,102,99,108,102,108,110,105,97,108,106,102,85,102,98,98,105,102,111,104,91,99,102,96,112,111,98,100,106,80,105,91,104,101,114,109,101,97,95,117,104,116,101,99,95,104,93,103,106,107,108,105,102,103,102,104,113,98,100,114,108,95,91,102,106,101,101,109,106,120,101,98,110,105,108,115,106,112,105,105,96,102,105,106,113,105,110,106,106,100,99,99,102,107,96,100,102,101,103,99,107,106,102,98,99,108,91,113,96,107,101,114,114,109,100,98,100,102,98,108,96,105,100,104,103,99,100,98,88,101,99,80,100,117,120,101,108,101,100,100,101,100,95,112,117,91,105,108,108,99,101,119,110,101,98,109,101,109,104,94,117,89,113,109,105,102,98,93,91,95,107,114,103,97,100,91,104,101,100,108,106,95,95,109,100,109,107,100,99,97,109,110,101,75,108,104,90,110,99,99,100,73,106,98,91,101,98,104,98,95,90,107,103,104,97,103,102,103,108,110,113,91,110,101,108,106,120,106,99,104,94,100,100,105,107,95,109,98,104,102,99,92,94,103,115,117,100,110,115,97,113,113,97,105,106,103,119,102,112,107,104,87,99,90,109,93,78,110,101,92,99,111,112,99,115,111,107,108,90,113,113,106,87,97,91,99,85,98,109,91,100,104,108,104,97,99,85,102,107,97,109,98,104,93,102,113,109,105,98,73, +628.5249,103,107,100,104,91,96,91,101,100,92,93,99,98,98,99,113,108,110,105,93,95,95,99,108,110,102,98,92,104,96,98,96,117,107,108,114,106,98,94,95,112,110,102,103,106,110,91,115,91,102,110,107,103,110,108,109,109,133,104,100,109,100,101,109,100,103,95,106,111,95,103,95,97,95,101,108,95,98,105,117,109,104,99,111,101,94,104,94,113,100,116,115,105,95,105,101,98,104,107,109,96,96,93,112,104,101,103,103,100,99,99,100,104,110,115,98,98,100,110,106,110,104,111,109,115,100,102,87,102,115,95,110,100,104,101,105,104,109,102,103,101,102,75,109,92,90,117,105,102,93,103,97,104,97,101,110,103,105,105,112,114,112,110,115,95,102,103,102,84,100,115,99,102,110,89,99,96,99,114,101,92,99,107,105,108,115,115,97,97,97,109,108,107,105,99,113,100,99,103,105,105,102,95,118,101,101,111,103,117,116,95,92,113,101,99,104,106,110,95,111,119,137,111,107,115,119,98,118,107,116,97,101,104,102,97,91,103,109,114,106,96,99,111,105,110,100,105,102,104,96,101,108,96,118,99,109,105,105,104,106,103,101,108,102,109,104,111,102,100,109,115,98,115,99,119,95,97,105,109,100,108,95,100,95,102,107,95,112,100,99,110,110,98,104,110,112,117,110,98,115,90,104,109,117,108,110,108,106,110,107,95,104,106,97,115,103,98,101,105,109,109,104,93,105,120,83,106,101,110,116,117,110,104,103,110,110,109,98,98,105,99,106,107,87,92,116,103,105,108,106,113,110,108,99,100,100,118,97,108,105,86,107,96,97,100,99,105,98,120,105,107,96,96,104,98,101,108,99,111,108,121,106,99,99,102,100,104,97,97,99,112,86,102,120,103,97,119,71,108,100,100,105,105,94,114,100,99,98,97,100,97,95,112,108,102,109,107,94,100,93,113,100,103,103,100,92,104,91,101,117,86,97,111,98,98,107,104,94,105,105,100,96,98,94,94,103,127,103,101,110,114,109,102,114,98,88,98,119,109,113,110,101,112,100,115,115,108,106,105,100,99,109,108,100,103,98,97,121,105,101,103,102,102,94,97,101,113,93,101,100,109,108,115,115,94,100,90,114,112,95,122,98,109,104,113,108,103,100,94,103,100,98,125,102,112,97,96,113,105,98,95,101,110,91,114,88,105,106,103,105,114,94,100,103,106,104,108,99,92,129,106,93,94,116,109,104,102,102,98,92,111,103,96,108,104,71,103,93,96,110,107,107,106,97,98,115,100,109,110,105,85,116,105,108,102,111,103,107,90,110,102,102,100,109,109,98,111,100,107,109,105,103,98,91,110,97,99,92,105,114,104,117,116,112,125,116,98,98,101,115,108,69,114,112,113,103,96,116,113,109,105,95,112,101,102,89,101,106,104,97,101,105,102,78,104,103,101,90,96,96,90,101,105,111,107,91,105,97,94,118,105,111,102,109,101,112,112,103,113,103,104,99,100,112,100,106,121,117,113,109,106,113,112,107,119,108,107,94,96,104,97,110,111,102,99,101,110,95,99,94,110,102,109,99,109,108,107,100,110,106,106,107,94,97,100,113,98,119,92,103,110,96,124,104,98,102,109,112,102,104,85,111,109,113,115,109,102,98,100,98,108,100,90,102,105,97,107,100,109,103,96,108,112,102,104,101,125,106,105,102,112,114,106,102,103,113,102,112,112,103,103,111,92,104,95,102,93,107,107,101,111,104,109,109,91,99,113,99,116,101,107,112,107,97,103,118,105,114,100,111,102,122,105,110,107,110,96,105,103,111,116,99,102,111,110,102,115,111,110,100,106,98,83,106,104,92,102,106,105,114,106,98,114,102,117,101,110,104,124,96,102,105,103,100,107,100,100,101,117,122,105,116,77,99,71,93,102,95,96,112,104,97,108,102,88,117,108,114,105,104,101,117,109,105,99,106,110,96,111,110,102,99,99,99,100,115,103,100,108,96,99,101,103,109,105,106,94,115,102,101,113,113,102,102,109,97,115,101,89,97,100,98,107,106,107,98,96,100,97,98,106,103,115,115,101,99,98,106,99,106,109,111,106,104,100,104,94,100,111,98,91,111,103,116,91,101,103,99,109,95,109,90,98,96,112,110,105,106,104,106,105,90,105,102,112,106,97,110,96,104,114,116,95,111,96,102,99,104,110,102,103,103,91,106,101,108,112,98,93,116,112,117,104,94,108,101,106,99,113,101,113,100,111,103,97,105,85,98,103,101,101,114,104,115,101,103,101,105,100,111,105,113,99,110,100,107,114,106,103,102,116,102,113,94,105,103,109,93,107,108,108,109,108,104,87,99,107,123,107,127,112,106,94,110,114,121,99,110,95,109,115,115,96,115,112,89,103,99,109,109,118,118,104,114,102,100,98,96,89,105,96,106,105,106,103,112,101,101,99,108,92,106,94,112,106,99,115,115,109,108,94,94,88,97,97,95,106,92,108,121,117,98,104,102,94,99,107,100,112,107,112,110,103,109,110,105,103,102,97,102,113,107,95,99,106,109,108,112,112,82,105,111,111,98,100,105,98,107,98,92,105,96,110,108,105,107,103,97,113,105,94,106,98,100,116,102,108,98,97,112,88,104,101,91,102,110,113,97,101,97,87,105,108,107,102,107,107,101,103,109,107,106,108,100,110,119,115,105,108,103,99,108,108,104,105,103,103,99,91,101,110,105,110,99,112,109,92,111,103,103,101,108,95,112,105,110,83,101,102,113,126,103,111,105,100,94,109,109,118,111,103,105,103,102,113,95,106,106,101,103,105,113,115,85,112,92,114,114,113,95,110,103,111,91,98,91,99,99,97,104,110,102,111,105,112,94,94,113,105,105,101,104,110,111,110,83,92,104,110,111,111,100,119,95,99,110,100,105,104,112,101,103,74,102,101,97,99,94,97,91,107,108,95,109,101,91,109,96,112,107,102,114,106,85,109,109,105,112,103,104,118,117,111,101,102,94,99,114,109,96,102,105,103,93,107,110,107,101,113,95,109,99,99,108,105,104,107,117,119,102,102,115,103,99,108,101,103,90,106,114,98,120,116,104,97,94,93,96,102,98,103,109,106,119,113,104,95,102,104,113,102,93,106,108,111,91,104,107,97,99,97,91,118,107,102,109,95,103,110,112,110,95,104,103,102,105,111,113,128,94,96,106,104,136,99,85,116,106,98,113,105,107,90,102,98,107,113,113,106,97,106,105,118,108,107,100,104,106,96,105,106,102,102,100,108,102,105,100,93,105,104,102,106,104,102,110,102,107,109,106,101,96,106,98,94,73,104,100,92,106,110,107,104,98,101,105,107,106,112,112,92,111,101,106,106,104,110,108,102,117,101,105,102,93,98,100,102,113,104,96,102,104,108,100,111,106,108,108,102,103,108,104,96,109,101,110,96,97,100,107,104,108,83,105,105,96,101,102,100,87,105,106,99,102,115,100,101,113,103,106,111,102,100,104,105,108,96,95,108,69,106,100,102,109,105,112,98,102,100,103,107,105,102,95,104,108,95,101,95,106,121,99,103,103,105,118,94,108,109,103,104,98,109,102,106,84,106,96,95,113,82,104,104,114,122,99,110,96,113,109,113,119,106,111,112,93,102,108,112,91,103,94,105,109,101,96,116,101,109,110,103,96,103,104,113,96,105,99,113,99,92,104,100,112,111,95,97,103,114,98,96,101,101,114,106,93,105,104,101,134,104,99,102,107,89,102,105,106,104,108,85,121,104,102,94,95,99,104,114,95,94,102,101,107,110,106,113,107,107,94,110,107,115,103,104,94,121,106,99,84,106,110,99,96,100,102,117,103,99,99,94,99,110,102,100,108,107,79,110,95,109,117,106,102,101,113,99,106,114,109,97,95,97,102,87,110,109,107,103,111,106,84,111,105,115,115,119,95,111,100,98,99,84,121,99,99,105,102,109,137,94,103,102,112,98,91,112,113,107,98,109,106,111,97,99,110,104,109,114,115,113,95,107,97,113,105,113,107,104,103,101,100,113,103,109,108,109,96,101,100,109,101,106,100,101,94,114,99,101,105,109,100,96,104,109,111,99,108,93,108,95,98,108,112,104,123,99,117,109,102,106,93,109,118,119,101,104,109,108,104,114,94,93,103,106,112,102,107,104,93,94,109,100,95,105,119,92,115,113,107,104,106,98,116,107,101,97,98,114,107,115,111,120,114,104,100,101,97,98,112,101,100,108,95,110,91,92,102,103,111,101,104,106,114,102,106,107,93,108,113,106,99,114,102,109,101,117,115,99,102,101,100,102,113,100,95,94,108,110,109,101,90,113,109,103,102,114,98,112,103,92,94,105,106,102,105,106,113,108,104,68,107,94,112,101,96,91,117,106,99,102,94,107,106,114,109,100,103,113,104,103,104,94,87,88,101,95,103,99,104,104,115,104,110,98,106,103,103,103,97,87,106,114,102,109,106,98,113,111,106,103,99,90,106,114,103,109,105,104,98,101,95,100,108,100,98,113,102,99,101,106,95,100,96,94,94,102,106,103,101,100,109,109,87,97,110,103,98,94,105,104,84,103,112,104,102,101,94,100,84,104,109,103,113,93,106,103,100,105,97,102,113,97,103,120,90,109,103,113,112,116,117,96,109,98,100,97,101,108,91,98,103,106,102,99,119,98,109,111,94,98,108,96,79,95,120,97,105,94,104,90,110,101,110,98,102,108,91,103,106,109,103,108,99,91,106,92,110,95,97,97,112,99,102,109,110,104,102,106,115,107,120,99,108,104,103,106,102,108,103,103,102,99,85,103,66,98,109,115,109,107,107,122,106,103,105,105,96,104,95,126,114,99,109,108,88,102,113,104,87,120,99,120,96,111,99,115,101,94,97, +628.66608,116,97,99,100,103,102,105,106,90,112,96,107,88,111,116,101,72,104,114,96,109,106,109,91,97,102,128,105,103,108,122,108,95,116,106,102,102,106,93,117,108,99,94,115,100,120,109,90,109,113,103,92,103,102,98,106,103,112,97,110,108,77,96,92,100,102,96,107,91,94,86,103,105,93,95,112,95,113,110,116,99,101,116,101,106,104,91,92,94,82,88,108,106,105,101,107,105,109,101,94,96,97,93,97,108,113,95,97,101,105,103,95,102,106,105,103,92,102,105,98,97,97,108,108,98,108,112,106,103,98,105,107,90,92,100,97,93,94,100,92,102,109,101,108,107,106,109,108,89,108,99,104,107,100,91,107,109,113,131,93,96,118,102,110,96,110,91,81,88,96,101,113,74,94,107,102,105,93,104,103,94,104,100,104,100,102,102,92,111,97,107,70,98,101,105,99,101,98,113,94,76,103,96,123,103,108,105,107,121,108,100,110,113,112,93,109,100,99,107,96,111,89,110,98,96,113,110,107,95,99,106,98,71,105,96,111,103,122,102,105,108,100,108,105,95,99,113,105,103,102,101,115,109,105,97,100,108,110,95,110,102,82,93,108,109,105,98,99,109,98,107,106,128,109,113,109,98,112,115,103,109,103,104,103,105,102,108,103,105,101,110,103,109,113,116,99,105,95,96,109,101,106,108,111,97,88,117,111,98,100,106,99,112,102,98,109,108,102,105,107,96,99,102,114,79,104,111,90,113,99,111,109,103,104,106,113,112,96,99,91,88,102,106,104,104,106,103,105,101,95,114,106,104,110,109,103,87,105,125,96,98,94,96,105,89,113,110,109,120,118,120,102,91,106,102,107,102,109,94,111,112,110,98,108,108,98,99,103,107,103,111,92,103,117,87,101,103,112,105,99,110,102,108,92,104,104,99,111,115,100,100,110,95,100,112,103,117,104,109,94,108,99,97,138,102,97,108,101,102,111,104,109,95,97,97,103,98,124,103,102,105,90,90,97,99,117,97,100,95,109,104,102,94,108,106,108,113,103,94,96,100,104,96,68,99,107,115,99,102,119,103,103,102,101,103,97,102,115,106,120,104,113,110,99,96,110,108,117,100,101,108,105,107,128,101,101,109,128,106,99,104,96,109,116,102,110,104,98,118,89,102,99,104,103,95,88,103,104,98,99,100,106,105,107,111,111,116,100,96,106,101,105,106,94,112,94,96,103,97,100,95,106,101,102,102,99,95,108,113,105,101,109,110,96,99,102,89,110,99,98,108,122,87,92,100,106,99,110,93,93,92,92,101,108,108,101,114,108,102,103,91,112,96,110,91,94,103,110,111,99,115,106,108,92,113,105,113,111,105,92,98,113,80,97,105,91,88,102,99,104,103,107,108,108,107,97,107,99,109,105,108,106,99,102,108,97,107,97,103,82,107,100,88,105,99,111,93,97,105,100,106,110,103,97,113,101,89,95,109,111,91,114,104,98,104,103,109,120,107,106,100,102,99,102,97,105,96,109,88,98,95,92,96,102,95,130,95,109,107,98,104,92,106,103,104,100,84,98,113,107,96,108,100,111,114,82,105,91,108,94,106,102,95,109,92,114,92,108,106,98,109,94,95,98,103,101,94,106,104,96,115,103,113,99,110,107,99,92,92,118,95,99,89,116,109,106,95,95,101,104,95,95,100,104,109,100,104,102,90,105,122,106,104,107,101,105,101,115,102,104,102,102,95,105,95,109,102,101,106,119,103,104,106,98,99,110,105,114,99,101,109,106,100,99,99,99,105,103,96,108,101,109,99,105,107,103,104,93,101,92,94,101,100,101,112,106,96,96,98,93,102,97,99,101,92,96,102,109,114,90,114,100,104,103,111,106,103,100,119,85,105,95,102,104,86,95,100,80,113,105,107,113,109,96,105,97,108,99,102,89,92,97,90,99,111,113,109,98,99,105,99,97,98,107,105,112,97,103,102,107,107,105,108,102,88,115,108,93,105,103,108,114,105,101,97,103,105,107,103,95,103,102,100,96,108,94,108,109,104,110,100,107,100,95,95,94,96,104,101,104,107,101,105,99,92,97,112,105,94,111,117,114,109,114,94,103,102,114,118,109,99,107,107,98,100,77,102,100,113,110,109,102,105,102,104,95,116,98,103,99,105,100,74,101,115,103,104,99,94,93,109,110,104,94,107,102,104,97,95,99,107,105,104,95,94,106,100,107,96,107,112,115,102,100,102,112,98,89,110,118,105,100,106,86,105,102,105,101,113,96,101,100,98,103,109,108,101,108,103,121,103,103,99,95,103,102,102,103,90,108,106,100,101,113,110,104,103,109,115,103,104,119,107,111,102,108,106,102,106,117,98,70,87,117,115,113,117,122,111,111,94,112,99,117,105,99,99,102,113,101,117,103,101,117,98,112,96,104,104,111,108,127,101,99,102,100,99,104,102,68,99,101,112,115,105,79,110,107,119,104,111,117,104,99,96,102,106,94,108,106,120,104,106,96,102,112,104,111,107,117,109,111,101,98,111,90,115,110,102,104,115,104,106,108,106,105,116,99,99,102,85,102,107,92,109,110,104,103,102,95,102,101,103,118,91,124,105,103,105,98,116,97,105,99,103,106,97,105,105,116,99,105,91,91,103,109,100,95,109,102,101,92,98,106,101,112,100,108,113,96,85,108,101,99,104,103,109,111,105,107,99,100,106,107,100,104,107,97,104,107,104,100,107,95,98,91,111,111,100,116,111,103,101,117,107,106,112,108,104,102,104,101,111,99,91,104,110,107,114,97,99,100,109,99,108,102,109,107,98,118,102,105,107,105,101,96,117,93,103,109,117,104,115,102,117,106,100,117,94,110,107,111,105,106,112,111,116,133,76,112,115,104,112,98,105,114,104,124,105,108,117,103,122,107,99,103,116,109,77,102,105,106,100,99,112,108,102,113,106,88,108,114,93,103,91,93,83,116,105,96,107,101,109,102,107,107,102,107,103,114,108,99,104,100,106,102,106,118,116,94,102,98,105,105,98,106,98,98,110,106,112,109,99,106,110,87,107,98,107,102,108,109,105,104,101,102,107,124,106,101,106,100,91,99,112,111,105,83,101,98,92,100,92,104,110,100,104,103,102,121,99,100,99,101,112,108,112,106,104,97,113,102,107,95,104,110,108,110,99,106,128,94,102,67,104,110,121,107,105,114,103,99,117,100,97,97,113,124,101,111,102,118,101,105,101,103,105,87,105,103,91,104,116,115,102,110,102,109,105,106,94,107,106,107,96,64,98,95,105,85,95,114,91,88,111,100,100,113,103,116,102,117,101,103,112,107,103,100,99,103,109,111,105,125,112,95,93,91,124,91,101,103,109,102,105,122,104,87,94,99,107,109,96,106,103,104,83,123,114,99,93,105,90,100,99,94,102,96,105,90,98,105,101,96,109,103,103,108,102,101,98,109,108,102,96,99,120,102,104,102,105,103,109,100,106,109,113,84,122,107,103,100,99,117,120,104,97,102,99,104,108,103,98,113,110,115,105,105,99,116,107,96,91,99,106,103,106,107,82,122,113,113,96,89,99,109,96,106,114,98,94,102,106,104,125,111,95,102,125,103,108,99,104,106,107,104,97,113,111,102,106,125,105,99,101,105,105,108,102,123,96,89,106,98,112,100,117,109,91,95,109,104,100,105,105,103,99,106,99,98,99,100,108,113,112,101,107,96,106,87,108,103,121,103,108,102,112,111,105,101,106,100,104,113,96,84,103,111,103,100,110,107,91,103,105,93,103,100,108,95,87,107,100,113,114,114,107,102,107,117,108,103,115,109,103,102,115,99,106,103,102,114,99,111,113,96,118,110,97,103,98,110,117,111,98,100,102,103,99,112,91,107,104,95,93,82,103,107,104,105,115,95,101,100,107,99,112,94,109,106,92,99,112,113,94,108,96,112,103,96,93,102,107,104,98,107,91,105,111,100,105,112,104,98,94,102,103,101,105,119,104,95,99,110,112,105,107,117,104,100,109,98,112,107,95,103,103,104,107,106,98,101,91,103,105,104,110,103,109,95,101,94,112,95,116,109,119,99,109,105,110,113,105,110,102,106,107,104,92,115,112,99,123,95,108,107,109,95,104,117,95,112,97,110,105,96,113,112,104,117,108,109,109,104,103,104,115,112,102,105,100,111,129,100,104,109,94,112,98,105,109,103,93,95,102,102,106,96,123,95,106,102,95,98,98,91,85,126,101,90,100,111,106,98,100,98,102,109,113,85,93,95,110,111,99,123,95,108,99,109,90,103,100,92,92,105,106,108,103,112,110,105,111,105,109,103,102,103,102,99,90,99,99,101,103,145,104,116,106,108,120,106,123,100,102,101,106,110,104,101,109,99,108,118,113,105,100,117,125,98,97,100,98,113,105,117,83,99,115,97,107,84,105,106,96,102,100,108,106,113,105,100,119,108,106,106,87,116,106,109,98,104,113,109,123,96,99,105,108,104,109,101,106,108,89,116,103,96,90,98,85,105,104,107,117,89,112,103,106,111,100,109,106,119,102,117,115,86,102,101,106,110,109,100,101,102,102,103,100,83,101,108,96,108,106,95,94,100,97,103,102,103,99,101,113,112,119,113,99,119,108,109,107,113,107,110,100,111,103,111,90,108,92,105,108,124,99,102,83,96,98,101,108,105,96,104,106,105,87,98,106,103,117,105,94,107,112,88,108,90,101,110,118,101,97,95,101,110,110,114,104,104,116,101,102,102,94,121,102,97,104,98,103,93,95,109,103,103,103,85,103,107,115,109,104,107,96,106,112,102,101,105,107,126,106,101,89,95,101,105,105,102,107,91,104,111,92,102,104,91,103,109,118,87,103,101,103,122,108,89,112,117,98,77,113,97,94,100,87,94, +628.80719,98,96,92,85,101,106,96,106,87,101,97,102,108,96,95,90,100,109,117,97,101,122,106,112,106,100,107,111,113,96,95,124,100,110,108,100,93,99,104,96,109,102,92,104,100,108,112,101,104,105,104,101,127,107,99,100,98,95,100,102,108,100,94,99,100,124,95,74,96,96,79,105,98,103,95,101,102,85,103,97,92,94,99,104,98,111,98,108,88,99,97,108,100,103,96,100,98,105,95,98,107,100,63,100,97,111,98,97,105,95,97,98,109,100,100,114,105,105,125,96,109,93,113,101,118,112,111,87,118,114,108,113,109,113,101,101,90,112,99,106,92,102,95,96,107,101,105,106,94,93,106,109,99,94,99,95,101,102,102,90,108,103,100,100,98,100,95,113,102,104,99,98,103,93,107,95,95,89,137,86,100,109,109,99,102,102,87,99,106,105,82,95,104,118,101,99,98,99,98,101,94,105,90,100,97,101,101,99,104,107,90,106,110,107,113,91,111,94,108,95,103,112,95,99,99,127,104,126,101,86,100,101,99,107,100,106,105,107,105,105,95,99,118,112,85,89,96,102,98,99,94,95,110,89,104,107,99,107,97,103,84,99,108,99,102,110,110,102,104,100,96,101,117,102,120,104,107,112,98,107,95,104,103,104,107,106,103,88,113,101,103,106,103,113,75,107,100,91,106,103,95,104,101,114,106,92,98,86,99,102,97,106,97,101,105,112,114,116,99,98,110,97,119,108,100,64,96,101,92,110,99,94,86,70,108,117,104,100,105,98,104,101,112,92,103,100,100,104,126,113,102,99,96,101,111,97,97,107,100,102,109,96,101,90,92,113,110,98,107,111,99,97,92,113,107,95,100,102,101,114,104,112,91,115,107,103,91,105,116,84,112,100,100,107,90,90,88,106,109,107,104,108,106,107,117,95,98,94,96,110,111,95,98,103,109,94,75,99,104,96,104,99,104,103,98,92,91,95,113,101,103,100,94,101,115,113,93,99,86,105,110,100,93,102,96,99,92,100,107,104,105,105,107,119,106,96,102,103,103,100,108,105,93,111,110,103,102,113,99,97,107,107,95,112,94,99,111,108,93,111,97,101,95,99,103,107,97,105,110,100,113,116,96,106,105,103,94,103,99,103,119,113,96,104,102,95,92,110,107,107,100,99,108,103,111,119,103,99,99,101,105,102,102,82,96,99,109,110,121,105,104,103,100,102,124,94,109,109,91,94,99,111,94,101,121,100,105,105,103,103,111,96,109,95,94,92,110,110,105,105,103,97,106,106,96,100,98,103,98,98,102,110,108,96,113,95,110,91,106,92,99,106,99,102,90,104,104,99,98,99,100,94,97,98,101,106,105,102,108,97,106,113,100,91,93,101,96,94,96,96,92,99,117,104,101,103,92,102,96,105,121,116,108,108,103,118,100,110,100,88,105,99,109,91,101,99,106,100,89,116,93,103,112,87,92,114,88,94,104,92,92,109,105,108,93,106,112,122,103,101,109,118,98,94,98,104,105,97,111,103,97,94,88,127,93,100,96,101,116,113,100,104,100,108,95,100,101,99,109,102,102,87,102,100,108,107,109,107,98,100,99,107,112,111,88,107,99,110,90,106,99,100,98,92,100,92,95,99,105,93,105,108,102,98,101,105,107,103,101,104,106,109,96,114,106,104,113,97,111,109,104,110,88,82,103,114,108,109,120,104,113,104,104,69,109,98,102,106,98,108,112,107,106,104,100,101,110,107,102,93,93,95,115,100,102,120,108,109,109,105,109,105,104,99,100,105,100,99,107,96,105,113,107,106,103,100,78,100,115,111,102,109,99,91,109,95,114,112,107,107,113,109,109,103,95,114,103,101,102,99,106,96,97,112,92,117,129,110,109,100,92,99,110,100,102,102,101,84,107,104,80,102,101,99,86,94,101,89,122,103,104,110,113,107,101,106,114,103,103,109,104,97,104,105,103,98,99,102,104,94,103,113,101,101,97,109,109,101,101,109,118,100,107,106,101,95,100,101,106,113,98,94,103,100,98,104,100,102,91,104,90,110,103,108,104,86,117,102,98,93,107,97,108,105,106,108,91,102,104,104,104,105,91,128,104,91,101,86,103,105,89,105,101,110,99,90,107,107,104,113,102,100,113,91,99,100,116,112,107,117,89,109,111,120,108,94,105,99,100,113,114,111,105,109,108,102,90,103,111,99,108,104,100,72,110,87,110,96,97,103,95,108,108,98,66,95,97,92,109,109,95,100,109,98,90,99,102,108,107,108,105,103,107,104,122,90,111,94,99,86,95,106,114,108,107,96,97,99,100,103,107,109,120,90,111,109,99,93,102,102,109,101,107,116,100,103,110,111,111,110,77,109,122,116,112,99,109,128,115,109,106,115,100,110,91,80,114,109,102,99,98,102,96,106,108,115,90,113,95,102,93,113,109,115,94,105,97,111,104,102,99,100,98,99,106,109,89,96,113,103,93,103,111,97,101,97,104,102,88,114,103,95,110,113,117,106,101,104,108,109,107,102,102,102,99,102,97,98,91,106,105,102,100,91,92,103,92,102,107,109,90,110,98,104,96,104,103,101,94,113,96,92,94,104,103,105,104,95,113,96,110,96,131,79,99,96,102,107,115,124,103,91,100,93,102,109,106,104,85,100,109,91,106,102,102,109,99,102,111,103,87,86,99,110,96,100,107,105,99,98,109,98,103,113,106,111,108,106,86,110,111,109,100,101,111,101,101,104,94,94,138,100,103,94,110,109,114,104,110,105,102,100,102,99,99,97,99,109,97,115,102,109,105,100,103,100,97,101,78,106,103,105,110,91,101,96,117,106,94,115,100,98,99,96,101,96,97,104,105,110,98,107,108,99,109,95,120,106,92,102,102,102,103,117,100,104,87,106,100,110,116,112,116,119,101,101,92,109,93,119,105,96,94,89,91,101,107,97,108,103,99,105,97,107,106,120,102,95,98,93,100,89,97,106,99,103,106,103,101,106,105,107,100,106,101,95,106,80,98,110,96,106,98,103,116,112,89,99,109,106,93,106,95,96,100,107,110,94,109,103,102,105,104,108,101,95,116,107,106,95,104,91,109,91,113,102,105,105,102,111,108,100,105,104,89,99,108,104,105,100,102,102,108,109,100,100,101,99,90,97,90,112,105,94,102,117,93,104,104,101,114,91,104,103,103,102,102,104,93,96,91,92,111,92,101,101,101,102,106,98,98,104,89,104,97,93,98,99,101,105,99,99,99,98,109,104,101,100,102,98,112,101,102,101,91,98,89,105,114,97,94,103,109,104,104,96,106,102,102,98,101,102,104,98,109,105,93,97,120,107,104,106,99,107,105,107,102,94,96,98,99,107,100,99,103,102,98,100,100,105,112,113,82,112,95,98,91,97,103,102,93,106,99,105,109,91,102,72,102,95,109,91,106,98,93,107,118,98,113,101,111,95,108,105,113,110,104,109,107,98,102,90,100,101,106,97,98,105,78,97,95,104,92,117,95,100,101,106,96,107,96,97,102,99,92,103,106,112,98,106,87,109,107,104,109,90,90,101,84,101,91,105,108,105,113,98,101,101,101,103,100,103,96,107,104,125,106,99,105,75,105,107,100,101,105,94,97,114,113,104,111,111,108,108,95,102,96,97,109,87,102,108,106,85,107,109,104,112,108,117,106,95,95,102,105,106,104,120,100,98,102,98,112,105,107,97,112,97,112,116,105,104,109,98,107,106,109,106,107,95,113,103,99,95,102,85,96,95,97,103,102,121,103,101,97,103,99,96,107,113,102,101,95,105,114,102,109,110,95,120,103,108,114,104,78,114,103,105,106,83,98,99,97,89,99,113,111,110,106,103,90,103,97,102,109,101,104,109,104,95,92,90,94,113,89,109,98,104,95,107,106,108,100,116,104,108,102,104,112,101,94,104,109,106,94,100,106,105,106,103,99,103,116,105,95,114,103,108,98,98,105,92,103,105,108,105,107,89,110,114,107,98,98,103,106,82,120,104,110,114,99,100,102,97,105,110,113,101,108,71,103,109,92,97,104,137,108,126,115,92,104,103,105,104,109,99,103,99,100,102,107,107,95,113,108,117,85,109,106,99,101,98,98,105,91,119,111,101,106,106,104,104,104,100,97,110,96,104,108,118,82,101,102,91,105,106,106,105,92,99,102,110,115,102,99,102,80,125,109,109,114,107,98,102,102,100,104,97,102,109,106,108,111,95,94,97,95,108,96,95,94,108,106,102,98,94,97,105,109,104,107,103,107,106,106,110,103,103,103,104,107,101,98,102,110,106,93,114,111,107,104,105,111,108,95,107,105,100,118,102,102,105,99,117,114,96,108,92,100,107,97,109,105,105,106,99,100,106,108,107,103,94,104,103,101,96,95,110,94,103,100,98,104,105,87,103,92,89,106,98,99,93,99,104,101,109,100,105,105,103,85,118,95,105,90,95,104,89,99,93,97,91,106,102,105,100,97,99,105,106,106,108,91,104,100,100,99,101,95,96,104,91,101,120,100,110,104,108,97,88,101,110,101,98,103,99,103,101,113,109,106,96,129,101,112,109,84,117,90,104,107,106,105,106,76,106,100,103,99,109,101,113,113,101,93,100,110,99,101,107,107,91,98,96,107,102,101,68,96,100,98,122,101,106,96,116,112,91,96,92,99,94,109,98,93,105,101,109,100,93,110,108,112,91,84,95,103,95,102,98,102,91,97,102,93,109,105,109,104,102,106,99,107,116,102,97,107,97,107,99,99,105,104,122,106,109,115,107,116,112,103,95,104,102,94,100,98,104,97,100,94,102,109,103,92,102,94,103,98,101,112,99,108,102,98,91,93,95,87,108,98,100,93,95,103,92,97,96,94,111,83,93,106,92,111,106,88,115,94,95, +628.9483,107,109,87,104,97,96,101,101,95,109,92,116,107,100,98,94,110,102,94,79,97,98,104,115,104,110,106,99,108,107,114,94,108,95,113,100,99,109,119,95,106,102,91,107,102,107,98,83,73,88,103,101,101,93,107,90,101,93,100,101,102,102,120,98,94,103,104,94,116,107,103,118,86,93,110,97,108,106,103,101,136,100,96,110,101,103,100,80,110,99,109,115,107,110,95,83,97,101,117,101,103,98,97,104,94,111,98,106,100,114,89,108,109,108,101,111,104,100,92,105,114,89,123,102,106,116,102,90,89,100,109,115,104,117,112,105,100,103,115,102,111,111,98,100,117,109,100,109,91,113,94,101,111,95,96,116,107,107,107,114,109,107,100,100,110,105,96,94,92,99,103,95,91,107,104,105,102,105,110,114,103,107,100,99,100,109,91,93,98,114,100,99,90,115,100,102,97,112,103,103,94,117,110,90,114,116,101,98,113,103,101,122,95,103,109,109,103,116,101,118,103,105,107,111,109,104,104,109,110,122,106,114,104,92,97,111,103,116,101,90,100,108,115,98,121,86,104,115,99,106,99,102,106,100,102,104,102,120,104,105,100,101,105,103,118,124,110,103,100,106,109,108,124,112,99,96,100,108,106,112,108,108,109,117,103,109,95,106,111,105,99,111,107,105,111,93,116,113,99,101,89,107,102,106,81,113,111,104,93,112,106,113,97,110,103,99,117,106,106,94,111,105,89,106,99,117,108,100,103,100,99,117,108,107,97,134,100,105,125,110,98,103,96,108,100,109,105,105,118,104,96,97,102,104,102,104,86,98,104,98,96,100,106,89,99,104,118,103,109,92,110,98,103,108,104,104,103,99,103,108,78,107,103,104,108,96,100,102,105,116,112,99,100,98,103,106,94,96,93,117,98,106,82,112,100,96,112,109,108,99,92,106,99,90,90,106,95,99,112,104,100,111,108,106,98,93,108,103,103,110,101,114,116,99,102,104,100,115,98,96,108,100,108,106,95,104,104,97,105,98,103,102,107,110,107,86,98,109,118,105,97,94,106,110,96,112,113,98,102,106,107,120,106,105,103,103,91,101,108,110,102,109,88,90,102,104,103,93,109,108,107,106,96,112,101,98,106,110,100,106,98,104,102,105,85,111,102,103,104,108,109,103,107,103,107,113,111,109,118,96,109,105,111,108,101,107,72,108,94,112,113,109,89,110,112,108,117,101,95,98,95,94,103,111,99,105,95,116,103,110,113,115,98,95,94,103,107,106,108,113,103,114,105,102,105,101,101,93,117,98,108,99,108,108,90,105,98,115,107,101,107,100,100,105,91,103,99,101,103,95,100,111,117,98,109,106,112,114,104,107,107,102,108,113,93,101,104,100,105,115,94,103,113,99,99,100,106,105,109,104,98,109,109,99,135,110,110,101,104,113,102,102,110,103,95,102,110,112,112,88,110,112,132,107,108,80,103,106,102,107,105,108,107,101,117,115,106,121,107,104,107,117,115,103,97,110,110,103,99,96,108,98,113,108,106,111,107,98,100,112,118,109,113,97,106,105,110,98,97,114,99,92,98,122,95,95,102,94,94,109,109,99,103,100,103,108,97,98,115,106,104,105,105,96,107,113,107,93,109,100,101,104,113,98,80,92,96,97,104,113,109,98,110,94,102,109,98,98,107,106,104,108,108,102,95,102,99,104,105,109,107,107,102,101,97,107,115,111,103,106,107,111,112,113,103,102,97,94,109,112,103,86,112,90,111,103,99,102,100,98,104,110,102,113,109,107,110,125,117,91,106,97,117,114,113,105,103,92,105,104,103,98,104,117,102,100,108,113,103,111,126,102,104,111,100,109,114,98,108,99,94,102,108,105,98,100,100,96,114,106,115,93,98,108,99,108,105,107,102,83,109,106,120,111,98,95,103,106,104,88,100,108,99,108,98,101,108,103,104,114,107,114,105,98,108,117,107,103,107,106,107,107,91,108,105,101,113,99,99,108,113,95,102,112,100,109,104,112,100,110,114,102,93,79,99,93,105,98,107,105,110,102,110,116,108,100,91,103,104,103,100,103,104,109,99,105,99,109,104,101,103,106,110,107,108,104,109,102,107,104,104,99,91,99,101,102,103,100,130,98,116,110,105,108,107,66,104,103,110,106,111,115,110,105,103,97,109,101,98,108,108,103,111,106,113,111,97,109,109,119,109,94,101,96,100,105,112,98,97,113,106,101,91,104,99,101,86,113,111,105,102,111,104,108,91,91,98,104,94,113,105,99,116,103,97,105,108,116,99,107,93,117,105,105,103,106,99,102,106,115,108,117,110,103,103,109,109,102,100,105,116,109,100,106,106,116,113,119,121,113,114,116,111,120,123,108,116,124,96,115,123,117,126,104,97,104,125,105,101,109,112,107,100,99,106,105,105,116,104,90,101,114,103,110,96,109,117,101,89,110,98,99,98,88,102,103,103,100,104,117,75,113,104,101,108,112,102,110,109,94,100,105,111,108,95,107,106,113,99,95,98,99,102,100,105,94,100,109,104,105,114,122,105,101,105,63,110,104,108,103,110,109,107,90,100,102,107,104,107,94,93,105,95,108,115,106,107,111,110,96,107,103,112,110,96,106,106,117,107,110,113,92,114,93,109,105,104,98,115,100,105,104,104,94,100,106,115,97,116,111,105,105,111,105,104,112,108,99,102,99,118,99,101,98,107,101,112,105,97,108,118,100,99,104,102,104,94,113,104,108,104,110,103,106,99,112,106,109,96,83,67,115,87,107,100,104,98,106,112,109,105,97,102,111,104,98,102,104,112,112,116,100,100,113,97,105,124,117,115,100,82,93,115,103,102,107,104,95,95,98,107,94,106,113,106,100,98,105,97,118,117,107,117,102,102,98,74,109,102,96,98,107,106,109,107,107,94,100,102,101,98,108,102,123,100,98,107,102,95,102,117,101,102,127,109,106,100,100,108,100,105,99,102,94,109,103,110,101,103,88,113,108,106,107,121,98,112,111,112,101,118,104,127,105,109,75,112,113,96,97,91,102,109,108,106,97,104,99,109,102,129,89,95,108,97,100,100,104,132,102,103,103,106,107,105,109,99,103,105,108,105,103,87,118,95,101,99,98,104,103,99,110,111,110,104,92,98,96,110,93,102,95,108,108,106,90,93,100,100,104,105,109,95,103,99,113,103,109,106,105,113,108,114,97,94,101,112,118,98,108,99,116,98,95,104,96,113,96,102,92,112,107,105,112,93,106,105,115,99,96,93,96,99,97,102,105,108,99,109,103,90,100,102,97,107,114,95,109,110,99,94,107,103,108,100,101,91,108,110,107,104,110,102,95,104,106,104,94,104,103,111,111,114,95,105,102,102,101,105,97,112,110,103,107,96,88,113,97,107,101,105,100,103,112,99,111,98,117,106,107,111,109,84,109,110,98,99,107,98,102,97,109,99,95,87,88,100,107,117,105,107,99,91,99,100,115,110,104,102,95,90,103,108,110,109,102,94,103,109,105,120,103,112,113,104,109,94,108,99,112,106,108,99,97,112,104,108,100,97,108,120,108,103,111,111,99,109,110,104,106,93,111,91,107,97,107,104,109,101,109,101,113,106,104,100,68,89,100,111,95,112,121,108,103,104,108,100,97,102,101,108,99,97,102,103,90,99,99,99,93,101,111,100,113,77,104,106,104,87,96,116,102,106,105,104,96,100,114,107,106,113,96,98,99,68,97,102,92,104,106,97,94,94,113,100,95,97,109,99,109,101,95,103,102,106,100,101,107,107,105,105,105,106,103,94,105,106,99,105,103,104,103,109,99,112,109,109,101,100,109,103,115,110,116,98,99,107,104,93,107,106,103,101,99,99,101,106,107,102,111,103,102,95,101,93,101,102,104,105,84,104,110,101,114,95,99,104,109,113,103,98,92,105,108,109,99,113,112,103,98,101,116,97,104,95,94,108,97,103,100,108,101,96,106,117,113,103,106,104,99,113,110,111,97,111,100,100,108,99,101,107,104,101,101,103,113,106,99,93,96,99,121,97,102,117,107,105,113,118,91,66,107,103,84,105,105,115,101,103,100,112,94,107,105,115,110,91,99,112,121,89,106,92,114,105,112,104,99,114,104,95,93,109,99,110,97,99,94,113,97,106,109,100,98,105,96,107,112,97,105,110,114,99,98,100,104,95,130,110,108,97,110,112,95,104,96,83,105,106,98,111,100,98,113,110,93,117,115,112,103,94,109,103,110,98,105,102,96,103,99,112,102,99,103,100,104,101,96,93,104,103,100,87,104,99,106,94,103,100,125,113,101,93,95,108,106,92,103,113,114,106,113,99,118,96,103,111,111,101,105,112,114,105,89,100,107,95,86,93,102,102,110,114,105,106,107,104,117,121,112,101,90,111,104,96,111,101,94,105,114,111,113,94,103,100,108,103,99,97,113,92,97,113,98,93,112,101,90,101,100,102,90,105,104,91,97,109,119,104,101,98,104,108,101,105,109,86,92,100,102,97,103,103,109,114,111,104,115,127,99,104,106,98,96,102,98,118,97,109,118,105,103,100,107,106,95,103,101,91,98,108,102,100,95,101,119,100,107,100,89,108,103,109,125,104,115,105,117,112,90,106,96,111,103,102,130,124,109,102,95,87,96,97,109,106,115,96,105,99,91,102,100,98,100,96,96,98,104,90,105,113,103,100,110,108,101,98,97,107,96,92,90,110,128,101,104,113,98,105,100,113,93,109,116,108,109,100,112,95,90,92,102,121,107,97,91,98,108,121,104,94,101,103,99,101,112,99,93,102,108,105,108,104,108,103,116,117,107,109,97,108,102,105,98,106,111,102,113,101,104,103,102,97,86,101,99,112,100,111,105,94,108,102,87,125,91,108,113,110,108, +629.08942,120,94,98,95,103,98,94,102,103,104,104,130,106,117,108,94,75,109,104,96,95,98,94,110,99,123,113,100,108,106,89,101,109,107,102,103,100,96,102,97,97,94,82,94,117,102,102,96,118,100,110,107,100,100,101,107,106,95,115,101,95,105,91,100,110,107,96,114,102,110,108,105,110,97,103,108,98,120,112,95,107,99,91,101,95,109,110,103,102,104,104,98,90,96,110,101,99,95,111,91,101,103,99,95,88,101,102,99,100,95,107,102,80,117,98,117,101,101,105,102,116,111,116,104,111,107,95,104,115,110,90,121,115,116,120,108,94,95,101,107,98,113,100,94,96,108,105,97,101,97,90,100,107,85,91,107,92,99,97,102,106,99,95,97,106,106,96,120,90,114,100,115,101,96,108,108,115,108,113,102,110,91,117,109,114,99,100,104,114,97,98,89,97,113,100,111,99,93,109,112,102,104,98,105,92,103,95,103,113,116,99,99,103,108,104,97,101,98,106,103,109,109,97,104,108,105,109,109,113,102,105,99,101,100,114,106,103,100,99,104,95,84,109,97,104,97,105,103,91,103,87,116,115,105,105,112,96,104,96,107,85,105,114,113,114,103,114,103,105,103,114,101,101,118,110,95,95,103,94,104,116,99,105,115,101,109,105,115,103,91,113,110,101,103,109,109,94,104,97,104,89,99,111,106,103,94,102,101,101,102,101,110,111,112,95,94,97,106,111,106,95,104,113,105,102,105,67,108,98,114,109,111,118,93,114,93,117,102,95,118,101,95,103,109,115,98,119,115,99,101,98,97,101,101,104,109,97,115,109,117,92,99,96,99,94,107,98,105,103,85,91,104,98,112,105,104,111,111,96,90,117,106,89,101,95,103,96,92,94,105,97,106,81,107,95,102,97,110,104,120,113,123,114,96,108,96,90,105,106,99,92,103,95,108,105,101,116,104,107,106,103,106,105,131,110,90,105,100,92,108,96,110,102,96,108,92,101,100,98,105,114,121,95,119,102,108,111,106,89,123,88,112,104,113,109,109,106,105,104,107,106,109,100,95,106,104,97,105,108,113,117,111,100,102,115,104,108,114,101,99,104,104,108,100,100,104,100,96,105,109,104,113,99,98,111,103,94,107,108,104,111,104,103,103,110,120,97,91,96,104,106,111,106,104,100,104,105,116,99,108,103,97,109,109,98,104,113,106,100,108,102,95,106,114,111,79,107,99,100,106,100,103,97,95,112,106,116,93,103,104,104,122,104,96,102,102,113,106,101,100,104,93,99,98,114,98,106,105,113,90,94,97,118,94,97,109,105,101,99,98,108,94,91,103,107,110,102,108,109,100,105,117,91,101,116,94,109,98,105,91,93,103,106,104,100,104,63,110,110,106,99,105,104,102,107,96,105,91,98,105,113,110,98,98,117,118,101,99,99,113,97,104,112,100,99,100,118,107,115,105,104,105,106,101,99,94,110,130,103,110,101,109,116,102,99,102,111,106,72,97,108,107,119,110,115,101,112,112,104,100,108,110,106,103,113,102,113,104,103,108,107,110,123,90,100,90,108,100,105,110,105,120,99,107,106,104,108,101,106,102,124,109,110,100,102,111,108,91,99,102,116,114,117,103,106,102,108,108,92,112,95,97,101,102,105,101,104,104,104,98,93,105,107,106,110,102,100,101,113,89,95,99,115,99,104,118,102,100,99,98,107,105,107,104,124,105,107,99,110,105,106,108,102,114,98,104,97,111,115,112,108,96,107,105,109,86,106,104,101,101,117,108,107,100,102,112,95,115,108,110,64,96,109,106,112,102,109,107,96,108,103,109,104,104,116,107,106,98,104,102,113,101,100,101,103,113,108,101,114,104,102,109,104,99,99,109,104,110,96,102,106,100,98,143,101,106,112,98,99,106,109,102,107,108,102,99,103,104,106,103,101,94,108,108,104,105,110,112,107,119,114,107,102,96,108,105,88,107,102,115,112,104,111,104,111,104,112,104,97,101,100,98,95,106,92,96,101,108,98,113,110,94,120,98,107,106,111,102,88,106,102,98,104,91,110,105,92,103,110,107,105,107,106,99,107,103,100,103,105,110,111,100,108,107,105,108,108,102,121,100,80,124,104,113,109,106,101,109,97,96,114,103,105,116,84,105,99,102,104,99,108,99,104,106,94,115,103,100,109,100,102,109,116,101,130,99,95,104,101,101,102,103,107,107,114,109,106,109,95,97,100,87,110,98,105,113,105,102,96,104,100,79,105,110,113,97,107,99,101,113,103,100,108,98,117,105,101,110,84,113,96,101,97,110,101,101,103,107,113,108,123,104,111,110,104,99,104,97,102,110,99,100,99,107,110,89,109,115,112,113,108,104,102,101,126,107,104,117,107,112,109,120,107,102,100,91,105,107,101,107,114,99,93,109,111,73,101,108,112,102,96,124,104,95,106,115,108,113,102,98,93,111,106,100,102,97,106,106,124,96,111,104,100,100,104,101,95,106,120,108,104,96,95,97,105,105,107,102,94,109,101,99,109,106,104,99,108,117,103,87,104,105,106,99,98,104,94,121,94,101,106,106,113,103,97,99,104,95,75,82,116,94,91,113,104,97,114,108,100,105,99,98,107,95,96,102,99,104,108,96,104,103,106,99,101,109,107,105,106,97,105,99,107,98,99,100,104,94,112,108,100,121,93,107,106,109,117,97,99,111,100,106,108,112,102,106,91,106,109,111,121,104,105,92,109,112,112,103,109,98,100,106,107,113,103,97,111,121,99,105,98,111,98,93,100,110,93,120,103,98,103,115,104,102,108,90,108,101,99,110,127,111,98,107,108,102,106,111,106,90,107,102,112,106,99,102,108,106,103,111,94,94,106,107,104,97,95,92,94,106,105,117,115,128,105,110,91,107,105,103,96,106,107,90,108,107,101,121,87,106,105,113,98,103,99,104,104,102,90,105,112,108,96,112,98,92,111,112,107,104,107,103,104,95,104,115,102,104,111,117,100,117,98,109,93,99,107,108,99,99,105,104,97,120,103,100,115,101,109,102,96,106,111,99,99,108,95,99,109,105,98,105,117,109,100,92,104,113,109,91,99,115,97,104,98,105,116,104,106,105,102,106,96,102,103,100,113,118,107,103,90,99,99,74,101,87,108,111,98,103,94,99,100,83,106,109,103,95,102,119,107,108,95,109,107,106,105,106,84,106,115,101,106,93,116,96,107,79,95,102,99,113,91,102,93,99,101,103,116,109,112,112,116,113,101,95,99,107,91,101,98,92,101,101,102,105,115,100,111,108,101,92,117,98,102,106,103,101,95,113,100,97,102,95,104,100,100,96,96,101,103,95,103,101,101,101,102,98,82,103,101,108,106,80,115,99,125,106,88,97,110,88,97,107,99,112,116,108,120,110,107,106,108,100,96,106,94,104,90,104,105,100,101,102,108,100,104,105,101,96,110,107,90,101,82,96,101,100,108,95,105,116,98,92,99,107,110,100,114,104,103,102,109,104,108,103,105,119,98,100,110,107,102,108,97,100,106,115,102,102,98,108,101,136,116,106,93,97,103,100,111,100,111,105,105,102,99,103,105,105,105,96,101,107,106,107,113,97,101,117,96,101,110,104,108,87,104,116,105,106,120,104,71,98,100,112,110,96,105,99,94,118,109,110,92,101,94,107,109,109,100,104,104,103,104,83,103,112,113,86,99,106,107,97,105,103,99,104,102,106,96,95,112,101,101,109,100,103,108,107,104,109,112,104,102,107,109,103,103,101,97,105,105,108,101,109,97,94,112,104,105,107,99,104,111,101,112,106,85,100,97,103,100,75,104,112,104,85,98,104,91,99,72,108,107,101,101,95,99,100,112,104,112,105,97,104,105,98,99,100,102,104,101,89,96,100,98,105,100,93,94,106,99,95,98,103,106,94,110,100,110,80,113,110,106,102,109,104,106,100,96,107,108,108,107,104,102,98,102,102,77,121,103,100,102,108,93,99,99,131,104,98,94,116,95,96,105,102,100,106,100,113,113,103,101,84,112,109,118,105,111,97,113,104,117,107,106,108,105,98,94,104,96,99,113,109,108,93,106,106,117,113,84,100,106,113,107,117,106,104,97,106,106,104,87,109,105,112,102,113,110,95,107,110,104,107,94,110,102,114,100,107,98,91,112,94,98,107,91,88,102,100,116,106,103,105,104,98,103,112,103,113,103,94,102,106,90,104,106,105,109,106,100,112,102,99,108,114,106,100,106,103,99,102,102,97,96,100,101,107,128,100,108,103,113,98,109,70,105,113,116,92,99,98,100,103,95,112,104,108,94,101,105,103,107,108,101,110,103,103,99,105,111,112,110,105,90,109,109,108,112,101,100,97,98,100,105,100,111,101,102,114,115,107,100,114,107,99,109,116,99,90,102,92,98,123,108,91,126,105,112,106,76,102,96,96,95,94,105,112,137,106,93,105,106,99,95,98,92,103,99,88,98,117,108,91,97,111,101,109,90,102,99,95,114,102,97,107,96,106,95,89,93,99,94,100,110,99,96,101,97,102,108,95,100,111,92,104,109,113,105,98,88,111,106,108,112,101,141,109,121,105,108,113,100,102,114,97,103,89,100,109,109,111,111,106,103,93,107,104,105,112,113,94,120,101,107,102,114,90,107,89,103,111,103,95,102,103,113,97,88,100,105,102,100,100,115,116,91,104,102,102,99,110,109,96,93,95,94,102,102,99,96,105,99,109,84,85,84,109,95,104,104,96,99,100,97,100,97,103,95,112,102,116,103,104,105,101,103,107,105,88,102,95,100,109,106,117,100,98,120,99,100,94,91,91,109,105,105,99,107,111,106,113,98,104,99,104,103,102,105,101,100,92,108,101,95,105,116,106,110,107,102,97,109,110,105,116,120,87, +629.23053,106,113,90,101,87,103,98,104,98,94,109,108,97,103,96,99,98,114,106,94,91,108,97,111,103,118,88,131,112,105,101,114,99,112,109,109,102,97,99,95,115,96,97,91,99,95,94,109,109,103,109,105,108,96,105,115,86,106,107,96,111,104,101,98,116,117,101,105,107,105,87,109,111,97,117,103,101,106,117,91,121,105,127,97,118,97,112,111,104,103,118,92,103,105,97,107,101,112,113,122,105,108,105,107,104,90,92,110,103,113,96,99,111,98,109,103,109,95,120,95,103,105,101,106,109,110,92,98,104,112,117,107,86,121,109,97,102,111,90,94,98,116,95,114,102,99,112,93,101,98,110,115,98,108,104,104,86,107,108,107,112,101,90,111,119,100,100,98,133,106,112,119,98,108,107,91,99,91,108,96,100,97,103,117,109,103,96,97,104,112,112,113,104,94,106,105,106,114,90,108,108,106,97,89,102,105,108,109,99,98,91,99,102,105,110,105,103,104,91,105,101,98,99,103,101,104,98,103,108,99,94,109,99,104,95,96,103,105,101,99,104,107,110,105,100,100,109,104,99,96,106,99,100,98,106,105,97,92,102,105,104,107,104,111,121,108,100,100,117,113,105,100,111,106,122,108,108,106,105,108,101,116,102,94,107,102,101,100,116,109,111,86,116,105,115,103,110,108,111,113,101,94,101,109,108,98,112,113,109,106,97,103,104,103,109,95,104,107,107,117,95,114,105,110,111,110,89,94,108,125,104,105,120,98,98,100,101,100,104,100,102,101,106,91,105,101,106,89,98,109,110,104,122,103,108,125,119,94,108,98,101,109,102,103,106,89,112,121,90,106,90,101,87,106,102,92,124,109,102,99,101,95,106,99,109,96,87,102,107,116,114,105,95,101,102,103,94,85,104,106,100,100,119,107,98,94,88,109,103,96,107,98,106,103,92,96,105,105,106,112,101,107,113,93,105,96,103,95,110,98,107,107,91,107,95,95,98,98,98,105,109,112,105,105,104,105,100,116,111,89,97,106,103,109,101,101,101,101,124,98,102,93,106,108,105,102,114,100,99,109,107,110,99,101,96,97,97,104,100,103,114,104,96,109,104,96,112,100,101,102,109,109,108,101,103,93,109,116,98,121,109,98,107,109,94,96,101,109,107,105,115,105,92,103,102,79,93,103,91,106,106,103,93,105,104,104,101,105,109,96,114,109,107,103,98,110,112,96,104,111,98,112,101,99,110,118,105,105,98,107,108,101,106,115,103,109,112,99,104,111,102,97,95,109,104,108,106,97,107,109,102,105,104,104,108,96,102,109,105,105,100,98,103,107,106,108,119,103,109,109,113,99,107,98,108,117,105,105,109,114,104,98,88,86,99,99,75,110,99,104,98,99,112,108,117,117,103,101,102,110,107,114,113,100,118,117,94,105,107,110,108,103,99,111,103,97,98,99,101,92,103,99,109,107,87,97,98,104,106,109,74,108,107,105,108,112,120,112,106,109,103,107,126,107,99,112,118,110,105,107,103,97,108,93,101,118,94,98,114,94,107,110,110,105,100,108,103,105,115,105,100,103,106,103,109,119,104,115,104,88,114,101,98,117,94,109,101,99,114,110,123,114,111,99,95,103,109,106,101,105,112,104,102,105,105,100,100,99,113,110,91,104,104,100,102,112,115,112,108,95,112,93,103,104,88,99,103,102,95,106,104,106,96,93,107,101,107,111,115,121,107,103,115,102,97,110,100,107,98,109,125,99,105,101,101,114,103,109,116,112,105,117,102,116,102,109,104,109,112,110,105,106,93,106,102,98,99,112,111,114,109,117,101,89,118,102,99,109,114,106,115,97,98,99,106,108,100,117,112,96,106,113,106,104,104,118,109,103,117,94,106,95,113,118,104,111,112,100,104,106,102,98,106,96,98,99,102,102,96,103,113,102,108,83,106,112,122,109,108,114,93,106,115,103,97,98,94,111,93,97,113,110,107,104,100,101,99,99,106,93,106,86,80,84,106,106,94,103,99,90,95,101,113,94,105,104,102,103,105,104,99,106,95,97,104,100,98,88,103,123,107,110,106,109,106,107,116,112,100,100,106,104,113,102,115,104,104,114,109,106,99,117,104,110,104,94,114,107,106,102,86,107,99,112,95,101,108,99,109,101,105,103,109,92,105,105,104,112,103,110,99,105,108,101,110,92,103,104,97,111,127,105,105,73,109,104,107,109,101,95,112,114,122,104,105,104,88,102,113,96,99,102,111,105,101,116,106,119,103,102,106,100,103,99,116,125,106,107,104,104,92,101,113,104,95,91,109,104,104,111,96,114,107,103,117,99,108,94,100,100,106,113,99,110,110,91,95,118,110,111,108,100,94,121,97,110,108,108,109,110,110,111,116,103,92,115,104,114,115,94,104,111,113,111,104,119,95,100,98,93,95,111,108,98,104,103,89,101,109,107,95,83,105,101,102,92,116,103,119,108,103,112,108,92,106,115,118,103,110,106,113,99,103,105,101,111,113,98,101,102,105,109,110,102,103,104,117,111,104,98,105,112,109,102,106,100,99,112,112,107,100,114,94,100,127,105,94,120,110,100,98,96,102,113,110,99,117,109,112,104,112,119,108,109,109,119,113,119,107,104,109,106,112,97,126,116,110,109,127,102,99,103,116,106,108,109,110,100,108,98,109,97,105,103,111,110,98,114,105,117,110,99,101,113,103,108,114,92,101,99,110,99,103,110,123,118,115,104,105,109,98,111,112,106,108,120,111,102,113,108,111,109,94,94,105,107,101,104,106,109,116,111,99,113,101,107,106,120,106,102,111,105,84,103,106,100,102,106,112,101,94,106,106,118,105,110,98,104,100,117,108,105,108,117,105,97,103,124,110,107,115,112,112,106,116,108,98,103,103,106,107,103,108,107,108,103,117,98,100,94,105,108,103,117,101,102,110,101,107,102,101,113,97,109,101,74,111,107,78,97,101,104,100,103,115,111,99,109,108,109,119,102,104,102,102,107,113,117,116,117,97,98,110,101,116,99,101,99,102,102,109,117,112,103,110,106,116,111,107,121,116,111,115,94,97,100,105,96,102,104,106,99,101,106,117,105,107,100,110,91,108,113,107,117,109,91,106,98,99,101,92,106,109,111,101,90,107,98,106,102,111,102,93,107,104,120,115,100,107,103,119,102,94,102,107,106,108,102,110,95,112,103,108,103,111,85,109,106,104,108,99,104,101,101,107,95,104,99,108,101,100,105,116,114,94,103,111,104,112,112,100,84,95,117,101,100,104,120,101,99,101,75,110,96,113,106,112,115,115,100,106,100,97,105,97,116,97,106,102,100,103,105,96,101,99,102,104,111,105,108,91,105,103,103,101,110,101,100,114,110,110,98,98,111,111,104,104,94,113,105,104,88,104,105,99,103,98,98,110,94,95,104,105,103,103,106,102,111,105,102,107,104,95,99,101,93,109,97,100,92,113,114,106,107,113,102,105,93,108,112,110,103,107,101,99,109,109,110,112,100,116,109,112,112,96,102,108,102,98,121,112,108,116,102,104,105,94,111,114,90,106,101,103,97,111,114,102,95,103,94,107,104,107,99,108,101,106,112,141,116,105,115,116,114,116,110,110,93,98,97,106,103,112,86,89,77,103,98,100,103,116,107,108,114,110,113,107,109,104,102,113,88,107,113,106,108,104,106,111,101,110,112,107,103,98,98,113,124,105,106,99,79,114,102,107,94,110,106,99,90,122,94,116,103,110,96,88,105,97,83,107,97,119,94,96,135,110,112,117,104,100,106,91,114,98,109,111,110,109,114,100,98,103,98,108,91,99,105,101,104,110,112,99,110,118,105,100,105,102,113,104,97,94,108,106,97,110,106,104,108,96,102,106,100,98,93,105,105,96,108,108,99,101,111,99,109,112,91,113,108,108,102,123,106,107,115,98,104,111,99,105,104,92,107,104,101,109,105,94,106,103,108,105,100,106,104,105,97,101,111,101,105,102,97,101,108,106,103,84,111,123,113,95,105,114,108,107,106,107,109,95,103,99,96,92,112,108,106,102,103,115,88,111,93,119,98,105,102,109,108,104,117,92,106,110,120,105,100,95,106,109,94,102,114,99,109,102,90,104,103,109,101,92,109,104,101,102,98,109,98,103,103,103,91,107,113,107,110,102,97,112,114,110,104,93,106,104,110,114,115,108,118,101,112,121,103,107,73,100,105,99,104,105,100,99,110,103,109,103,102,95,110,109,91,94,100,113,96,95,95,95,103,113,103,95,107,97,91,104,110,114,113,106,118,112,104,92,110,105,109,100,103,109,102,108,106,108,104,95,102,111,112,105,109,108,99,110,105,95,106,101,107,112,111,113,98,107,98,105,112,100,99,110,102,106,105,113,106,104,98,98,68,100,116,103,107,90,108,117,105,107,107,97,102,90,93,105,108,106,104,112,105,98,103,113,109,108,102,113,99,94,96,109,112,80,117,105,111,112,120,102,110,100,110,102,106,103,99,95,73,92,91,100,111,109,119,110,95,106,117,95,125,97,105,98,113,96,113,123,101,107,100,104,103,106,104,118,106,105,117,102,91,104,108,112,100,108,109,103,101,102,108,92,104,97,109,115,106,107,106,109,97,106,106,93,107,103,113,111,105,97,92,112,101,92,105,102,107,102,95,106,102,107,99,102,99,99,111,96,81,105,107,102,116,94,106,102,100,109,96,103,129,105,96,121,106,116,76,111,104,106,92,104,103,99,102,94,97,109,110,110,104,109,111,95,97,99,102,105,83,100,99,102,105,102,94,123,108,92,115,99,100,97,93,104,113,93,120,117,105,106,113,106,119,97,103,96,117,119,103,104,133,109,98,117,116,108,97,95,90,106,107,100,105,106,97,117,103,112,94, +629.3717,104,121,96,110,88,98,98,86,105,107,94,87,79,104,104,104,89,109,104,103,97,91,99,101,103,106,121,103,107,112,95,103,102,83,93,86,106,98,137,114,102,113,105,105,104,103,97,101,102,113,104,104,119,99,103,102,97,109,88,105,105,117,100,112,97,106,108,98,95,103,95,127,96,104,93,113,114,97,106,99,107,98,96,95,104,94,97,100,106,91,99,97,109,109,94,110,112,109,99,110,98,102,95,103,100,110,105,101,101,95,110,105,97,86,119,98,104,102,114,100,107,111,104,105,91,101,93,95,110,84,99,104,108,100,110,104,105,118,90,102,99,126,87,100,102,102,102,97,104,99,106,95,97,88,95,100,92,93,109,107,108,98,110,108,95,104,104,109,96,106,103,103,97,117,92,104,99,106,102,113,116,112,79,105,110,94,98,100,127,99,105,94,117,107,96,107,102,104,96,106,109,112,110,106,102,111,100,99,110,102,103,104,102,117,115,101,97,101,93,112,99,105,110,100,92,100,111,114,103,104,103,100,99,101,112,106,106,100,101,113,104,102,96,108,100,102,113,99,108,109,109,101,101,100,110,99,110,117,94,99,96,102,105,104,102,111,96,87,106,108,105,107,102,117,114,95,93,106,93,106,102,106,105,102,103,100,104,114,89,107,95,108,123,117,95,105,99,104,109,99,103,110,111,104,91,94,102,100,93,109,96,101,125,94,107,106,109,107,103,100,107,108,105,96,103,101,116,90,101,109,115,117,116,106,106,99,108,102,85,103,91,112,97,96,104,96,116,102,108,94,101,95,96,109,117,103,94,104,100,108,103,111,98,105,98,110,115,104,95,103,98,92,106,110,90,92,102,98,88,104,112,111,109,117,100,98,98,101,110,109,111,91,110,108,106,97,99,103,78,113,112,103,101,90,101,95,93,102,91,103,93,94,110,97,104,100,113,92,110,98,104,101,99,100,100,116,102,92,67,101,106,107,97,105,104,108,102,121,99,106,98,105,100,106,100,90,106,110,114,85,81,97,106,107,99,104,95,116,97,106,99,117,101,100,104,103,80,119,112,100,102,110,110,94,91,93,104,115,95,93,108,93,105,102,109,105,105,113,105,99,95,109,103,93,102,99,104,117,103,98,105,104,105,102,97,110,103,112,105,114,108,98,103,107,100,96,99,104,103,92,104,123,100,112,101,112,102,98,101,107,103,106,102,95,101,108,101,100,103,114,100,114,107,102,103,97,107,121,113,110,105,102,102,106,99,97,105,103,103,104,101,107,109,109,112,94,101,106,109,91,98,94,103,106,107,102,117,96,73,101,111,95,112,95,109,96,99,109,99,99,103,106,94,106,109,106,110,102,102,99,94,112,91,106,106,96,97,100,97,106,113,100,124,105,102,104,101,104,98,97,106,105,99,110,109,106,95,104,104,85,88,96,100,106,103,104,101,102,110,106,95,95,115,106,106,101,102,94,89,101,92,95,96,106,101,95,103,102,96,127,104,117,109,116,112,97,102,95,106,110,101,102,100,96,107,109,96,110,96,102,93,108,107,85,96,117,101,104,101,91,97,103,98,107,109,87,107,103,102,103,106,91,101,103,129,108,104,103,118,114,117,97,102,98,93,97,100,96,90,94,128,106,108,99,98,86,105,107,96,99,111,99,100,98,102,100,105,95,102,109,100,102,112,101,99,106,95,110,108,123,105,110,102,85,100,105,98,104,112,102,99,109,102,102,91,106,98,94,98,101,112,111,101,99,87,106,103,104,91,102,97,98,112,108,102,93,104,94,99,111,102,99,97,101,116,95,92,107,109,95,105,106,102,104,100,108,109,103,106,109,106,113,101,99,106,104,110,96,96,98,107,106,114,100,99,105,114,94,109,104,104,101,108,105,109,111,86,107,113,103,105,109,99,99,91,96,100,75,97,92,103,116,122,100,97,110,106,99,98,105,97,102,106,82,100,92,84,91,125,102,101,95,93,103,108,80,100,104,94,108,109,103,109,103,104,96,96,107,106,93,104,111,113,99,114,104,102,102,105,99,103,102,113,109,102,91,108,99,85,98,95,103,108,94,112,108,99,107,109,99,111,103,108,98,107,116,113,101,100,117,94,92,109,98,107,96,101,85,99,98,99,108,104,90,103,91,99,105,105,101,97,97,120,101,105,100,125,99,104,102,94,66,97,89,109,91,104,86,103,97,93,92,98,94,108,99,109,96,108,91,101,98,108,94,98,103,108,105,99,97,109,102,111,102,106,99,94,103,104,104,99,87,94,92,125,100,95,99,82,108,91,99,104,112,88,105,96,92,112,107,110,91,101,105,109,115,107,100,101,104,99,120,97,110,104,96,98,100,104,105,107,107,92,106,103,107,103,114,100,103,102,107,119,105,102,107,113,99,107,104,103,110,110,106,111,108,97,103,107,94,99,108,109,100,95,110,100,109,98,91,101,87,92,116,106,101,95,94,103,113,103,100,105,112,100,98,97,89,97,105,115,92,107,92,113,107,100,112,89,115,104,123,97,98,111,93,112,102,107,113,112,102,99,109,102,107,117,106,96,105,100,111,95,107,101,104,106,89,93,101,108,116,105,95,79,113,113,102,109,93,119,111,96,96,101,95,104,94,98,112,98,95,96,104,99,100,113,95,99,123,94,113,109,118,105,107,100,98,110,105,104,102,96,100,95,88,111,67,115,117,115,101,105,104,109,92,118,103,100,109,117,98,96,113,114,101,95,104,109,106,103,106,96,110,103,110,120,99,90,87,104,101,100,109,95,94,108,103,97,104,104,117,103,102,136,97,113,105,100,108,95,104,98,104,112,124,109,100,96,100,100,104,88,105,113,98,102,105,101,111,95,96,118,98,108,100,102,106,102,106,120,112,107,104,120,118,108,102,112,122,106,113,103,102,101,124,98,108,95,104,109,108,118,94,106,112,108,97,102,107,83,102,94,108,110,91,108,113,101,97,114,108,99,112,95,102,99,101,102,81,79,110,107,95,103,98,121,112,101,97,106,97,98,108,104,90,99,107,93,113,101,103,94,99,105,104,112,111,108,103,99,99,104,108,114,101,124,90,108,91,107,102,95,100,92,115,99,105,98,97,110,105,108,114,102,94,99,105,105,95,93,101,93,115,101,92,100,115,99,100,110,99,107,117,112,98,128,95,110,103,122,103,94,94,104,91,116,102,99,106,100,104,107,106,99,101,92,104,97,88,106,107,112,108,96,109,101,101,103,101,101,102,103,111,101,97,112,99,94,98,104,101,87,99,91,105,103,116,94,106,112,85,105,100,105,107,94,120,107,100,112,106,103,83,116,104,106,91,96,94,95,102,121,103,101,102,103,93,106,103,104,98,107,109,104,103,115,103,91,103,109,106,98,121,108,95,97,102,105,116,101,99,99,111,107,105,114,78,115,97,94,95,99,115,95,96,109,108,89,101,94,101,110,107,108,102,110,95,94,95,114,114,113,96,92,105,97,106,99,104,107,113,106,91,115,97,101,100,111,96,110,108,108,110,116,105,114,111,123,102,109,110,104,104,99,98,101,95,104,93,93,93,100,105,99,109,107,102,103,98,106,96,113,122,103,108,114,106,97,100,92,95,102,113,95,97,107,113,103,114,111,109,102,106,102,105,105,106,106,106,104,98,105,113,106,100,104,94,107,99,81,99,113,98,92,104,105,103,103,95,106,105,102,103,99,88,102,93,102,97,109,104,96,102,95,88,111,104,94,106,109,102,110,109,104,125,111,85,109,94,105,108,95,101,99,101,105,101,125,104,93,108,107,106,100,99,110,101,105,90,108,108,97,95,104,102,101,95,90,102,94,105,107,114,109,110,95,108,117,88,101,79,111,120,91,109,107,104,107,112,95,113,114,109,107,104,114,90,104,109,105,96,106,101,109,102,114,102,100,101,105,90,97,98,107,111,107,103,95,114,109,95,106,102,92,97,96,111,90,106,101,112,98,114,104,108,112,97,103,106,104,104,102,94,104,107,113,97,97,99,110,122,105,103,103,103,106,98,106,109,104,100,99,103,106,115,107,75,113,99,101,103,97,96,101,108,97,119,91,102,97,99,95,107,109,105,99,109,101,96,98,106,114,105,93,98,92,91,101,94,102,108,93,99,103,99,98,116,115,74,97,94,102,96,106,98,103,104,103,115,111,108,100,105,98,105,95,110,112,99,96,93,97,112,94,111,102,97,100,94,104,107,97,105,76,104,111,104,110,94,91,104,100,98,102,105,99,84,95,102,103,112,113,107,105,89,90,97,96,111,113,105,100,105,95,110,107,98,106,102,94,103,100,98,110,92,92,116,94,109,92,106,106,99,105,98,99,90,108,102,102,98,105,106,98,107,105,103,99,105,98,100,107,98,73,93,108,92,103,106,107,103,104,111,113,106,104,105,110,95,115,113,106,103,102,90,102,94,99,109,101,106,104,113,103,101,105,92,98,107,91,89,99,99,105,109,91,120,103,101,78,110,97,103,103,115,107,111,99,94,95,95,97,105,100,111,109,93,106,97,105,105,106,107,92,109,91,95,105,104,99,97,108,99,112,108,103,104,110,102,108,100,99,104,118,115,107,113,100,110,115,105,95,106,106,92,97,108,104,95,104,107,103,94,99,105,102,108,119,97,108,90,82,99,107,102,97,112,98,98,95,92,102,100,104,102,109,111,97,63,113,96,105,102,91,113,103,98,102,91,104,92,69,94,115,105,87,99,93,99,90,110,106,117,109,99,110,99,105,102,103,107,110,96,73,112,103,92,104,93,113,103,117,104,100,87,91,111,107,110,113,103,97,106,113,107,103,112,100,115,109,106,95,106,106,109,102,102,102,111,113,95,98,102,105,122,104,125,109,105,99,90,95,89,112,97,91,105,100,108, +629.51282,97,103,102,113,105,100,118,101,106,89,103,114,116,119,117,95,101,70,107,115,97,110,100,116,99,114,122,97,102,109,96,106,112,98,115,111,71,100,95,96,99,110,107,97,91,92,95,103,101,104,85,104,94,98,80,101,95,82,108,98,76,102,101,106,94,104,103,88,101,95,113,99,108,85,99,116,109,95,108,96,99,96,91,96,109,92,74,96,113,105,113,118,97,115,108,104,101,86,96,114,100,109,84,97,99,110,86,105,96,96,103,112,109,102,103,104,101,113,113,92,89,92,72,107,99,117,106,85,105,107,108,107,98,100,127,108,93,100,110,86,91,110,96,94,94,100,105,99,108,102,98,115,111,105,94,102,97,96,102,89,97,97,98,107,120,103,97,97,105,114,101,113,107,90,103,96,104,92,121,90,107,104,97,96,92,107,97,93,102,110,98,108,113,109,98,108,125,114,90,91,102,90,113,89,102,100,89,112,99,102,97,115,110,108,97,100,96,102,96,108,107,107,107,88,101,105,81,108,102,96,83,112,97,98,103,105,100,108,95,111,109,112,114,107,105,113,111,98,108,98,98,101,99,102,98,108,101,94,109,104,101,127,102,104,92,94,99,106,105,97,112,106,97,101,98,94,94,101,92,111,97,105,113,106,101,102,97,101,97,92,109,98,102,99,101,105,101,101,109,103,103,106,104,113,94,98,117,112,100,119,97,100,106,107,108,96,98,105,99,100,96,102,96,98,104,97,96,94,102,104,110,100,95,95,114,86,111,107,86,98,107,101,101,103,100,111,94,107,95,104,113,118,102,103,110,91,97,118,109,102,99,91,102,100,94,105,122,100,117,101,106,105,104,98,102,93,97,108,102,88,92,104,101,109,108,99,92,89,96,90,109,107,108,104,102,96,99,99,82,103,105,98,105,101,101,87,98,117,93,117,93,98,113,109,95,106,112,93,106,97,105,100,104,96,108,91,87,96,94,103,95,97,101,116,99,104,106,103,103,108,101,114,117,106,102,104,109,97,95,100,83,95,103,100,105,92,103,101,102,102,89,109,99,97,112,106,94,102,111,107,101,102,104,100,98,100,93,110,106,89,106,98,102,101,102,102,102,106,99,114,104,111,118,108,96,100,100,98,101,109,103,102,104,100,103,105,88,97,113,97,103,101,87,117,94,109,99,112,96,90,98,96,100,105,90,95,111,109,104,94,105,101,95,88,121,106,98,105,98,111,102,99,92,104,103,97,96,96,103,100,90,96,102,99,91,115,102,101,93,115,99,107,104,107,99,83,110,108,101,104,94,97,102,109,104,101,95,105,100,91,103,99,99,100,105,99,104,72,104,95,104,120,104,98,110,113,96,101,113,103,99,102,110,90,108,91,104,106,100,107,99,96,106,98,93,104,109,97,102,101,113,97,99,106,97,100,99,109,100,109,95,103,104,99,104,96,110,115,109,103,105,104,99,103,85,92,94,99,113,100,114,106,99,113,102,98,106,117,94,99,111,100,105,108,96,94,113,99,108,100,100,104,103,96,87,105,98,102,114,94,100,118,102,100,109,110,108,100,101,108,106,104,98,108,104,97,113,116,103,99,102,92,99,108,107,100,105,104,102,94,105,107,108,107,109,93,103,106,101,104,97,91,102,88,96,109,74,104,93,113,107,98,103,117,102,117,96,121,109,108,111,112,88,102,102,103,109,110,101,105,110,109,109,99,95,95,107,104,104,93,100,108,99,102,95,102,95,104,106,108,108,91,99,104,101,98,80,103,109,109,108,100,98,95,103,95,99,105,106,99,105,99,108,103,102,99,123,94,92,121,104,96,112,93,86,102,116,124,94,99,115,96,103,101,102,93,107,99,98,105,91,93,114,113,111,101,116,104,100,90,94,96,108,105,98,109,119,110,110,103,105,107,105,106,91,108,103,95,102,83,96,86,107,95,117,95,106,95,103,106,104,114,100,108,116,110,94,109,103,96,104,89,117,98,101,108,107,103,98,93,111,103,106,102,102,63,94,113,112,107,104,104,100,103,108,86,107,100,100,114,100,106,105,96,105,102,98,115,100,96,88,103,106,93,98,107,98,97,94,103,91,90,100,98,104,105,106,97,105,113,107,96,102,102,110,91,99,105,93,102,105,104,103,99,100,108,98,101,99,104,103,109,100,106,104,105,98,114,101,93,116,104,102,100,97,110,88,113,95,100,99,116,96,112,96,110,107,92,104,113,98,122,113,99,113,102,99,113,96,102,94,106,101,89,101,98,102,101,107,102,103,106,92,99,94,112,94,96,105,101,91,100,96,97,124,113,92,97,109,101,91,109,96,99,100,100,102,98,90,99,109,96,105,106,130,99,104,110,102,97,103,130,118,121,111,107,106,111,111,125,110,103,117,109,105,97,102,101,108,98,102,115,100,112,122,100,105,95,87,104,92,107,110,102,102,104,104,112,104,100,102,94,97,120,106,106,108,105,102,94,104,104,106,94,95,103,111,108,106,109,101,100,104,101,115,112,102,94,112,109,100,101,100,106,107,107,109,102,90,117,112,110,100,102,98,110,99,99,104,100,101,112,97,110,90,101,98,91,102,102,97,106,91,108,111,104,121,100,106,95,103,95,104,106,100,98,116,97,100,102,103,100,94,92,119,100,96,112,110,103,104,104,103,99,114,109,105,91,111,101,105,116,97,100,97,103,105,69,105,121,98,108,104,98,107,106,95,98,100,100,95,95,104,117,95,103,128,114,90,112,121,105,99,118,110,111,93,99,120,107,109,105,98,91,89,105,99,107,103,104,96,96,103,105,103,81,107,104,98,102,105,104,112,95,102,105,91,103,95,123,105,110,102,99,105,112,106,106,102,101,98,100,98,97,105,92,117,108,103,98,101,107,114,114,107,106,110,97,105,106,102,116,99,93,103,97,105,114,94,106,113,96,100,113,104,95,95,103,100,115,93,109,103,104,100,92,101,100,108,96,99,117,94,78,117,105,101,104,118,109,87,110,103,94,99,96,105,110,100,97,104,105,98,112,112,103,119,97,110,95,96,105,106,93,103,100,99,105,109,106,115,98,97,110,100,91,97,110,110,90,95,95,95,99,105,96,92,102,104,104,87,100,113,108,101,103,107,110,96,99,94,99,109,108,107,62,89,117,102,103,102,98,106,112,103,123,97,87,105,101,90,101,87,105,104,107,110,105,99,112,122,109,95,108,102,94,102,98,94,102,103,118,93,92,109,100,102,89,103,100,106,89,114,111,95,107,117,107,88,96,98,100,73,91,108,110,95,115,107,116,100,102,92,113,116,96,119,98,106,94,98,95,100,92,112,107,88,84,111,101,109,100,98,99,103,102,91,113,108,106,91,97,103,100,100,103,107,91,95,100,95,98,106,100,98,111,98,97,108,112,94,102,95,113,99,92,91,91,103,100,114,92,104,97,84,123,101,97,97,110,97,110,91,96,108,108,88,96,97,105,104,114,102,101,90,109,104,92,103,103,98,103,89,104,96,104,113,102,102,97,103,85,112,96,101,94,94,113,102,114,107,100,112,103,102,112,102,109,91,102,99,112,101,99,93,91,88,103,120,106,108,101,104,108,102,119,106,92,101,107,93,97,96,95,104,98,102,102,125,120,96,103,96,107,108,110,92,98,113,111,95,96,107,84,98,102,105,105,102,105,98,102,93,110,110,99,94,99,112,99,103,103,117,105,106,93,105,103,105,110,107,110,104,98,106,71,104,121,100,102,100,106,93,100,103,87,106,92,106,109,97,96,98,113,93,103,107,94,117,83,103,106,92,100,121,96,106,104,100,96,110,90,111,95,107,107,108,97,109,103,102,106,96,95,101,108,106,112,105,102,110,100,101,115,110,84,104,105,91,102,98,118,91,99,102,115,116,101,113,106,98,88,104,109,112,116,111,91,102,99,98,105,110,94,93,105,117,95,106,103,101,109,100,105,114,119,101,105,99,94,97,106,105,113,98,111,100,96,103,105,101,96,98,84,107,106,106,107,92,116,113,96,100,109,92,107,100,98,108,102,114,101,89,101,104,103,110,98,91,100,97,108,109,107,98,101,105,106,100,99,114,109,89,105,107,104,105,103,99,106,105,105,102,83,111,108,117,93,94,100,102,77,113,97,110,96,95,95,113,106,105,89,96,103,100,101,116,106,109,106,94,102,106,106,106,92,99,111,106,101,110,96,100,107,102,108,105,97,103,81,100,102,96,113,95,92,104,96,116,110,100,107,102,106,110,102,93,106,107,85,104,101,121,109,100,97,107,100,103,102,106,105,106,92,115,95,97,72,108,109,114,107,120,95,115,106,87,113,108,117,96,100,104,101,100,92,100,101,99,91,104,109,117,94,89,78,116,117,105,99,103,96,99,103,110,109,93,107,91,83,102,88,105,103,104,105,98,86,105,100,104,94,104,95,90,104,88,114,91,107,98,103,94,93,108,109,106,90,101,116,101,105,100,93,97,93,100,105,95,107,117,99,113,104,117,102,104,100,103,98,109,110,109,116,93,101,102,110,110,97,100,101,111,97,98,113,102,101,91,96,97,97,94,104,106,111,103,105,89,109,98,102,102,107,95,102,98,101,104,107,99,88,104,107,100,86,106,102,104,91,121,93,98,102,96,101,108,102,104,119,97,97,111,100,108,96,106,100,95,104,95,83,113,104,114,91,118,101,105,99,109,116,95,107,112,105,113,113,108,104,97,95,97,106,97,94,100,82,124,113,103,97,101,104,97,101,102,112,100,102,111,87,101,92,100,104,92,110,104,84,103,101,122,97,102,98,98,83,93,105,100,87,96,101,99,98,106,108,94,101,107,104,95,86,108,101,101,71,101,85,106,114,90,99,86,99,88,110,100,102,115,101,86,101,91,78,97,96,99,99, +629.65393,108,107,104,97,89,96,103,113,96,105,122,100,106,94,97,97,104,109,96,122,98,117,107,105,102,95,100,103,110,103,87,95,99,109,121,99,98,92,120,113,109,95,63,115,109,109,111,128,102,85,97,101,94,112,85,95,105,93,104,103,97,110,114,98,113,99,105,99,102,109,98,101,105,99,110,110,100,95,117,99,95,80,100,118,101,109,95,82,99,100,106,102,99,90,99,89,104,92,97,95,97,115,91,100,124,105,103,107,94,95,100,98,111,95,103,109,108,94,107,93,104,92,122,106,100,100,111,87,113,104,67,122,90,93,103,100,99,104,94,85,103,93,100,99,107,100,118,93,91,90,83,98,87,92,85,100,95,100,103,90,111,104,111,103,113,102,103,99,108,110,97,100,93,119,113,95,99,107,106,94,105,104,99,108,101,92,92,91,104,100,106,95,106,103,100,103,107,94,107,112,109,94,101,109,99,103,112,109,110,116,113,98,99,99,85,100,102,103,93,81,107,104,107,102,103,98,103,107,105,109,101,104,107,111,109,133,109,103,112,113,112,92,126,94,104,93,101,109,113,103,80,97,90,111,100,106,101,110,99,91,108,109,106,102,98,107,94,107,99,97,99,108,111,110,114,103,98,90,107,107,106,101,106,117,102,101,105,102,102,105,108,101,110,113,99,108,103,113,103,114,101,114,118,105,96,106,105,107,107,104,98,106,98,101,111,111,104,99,105,107,106,113,104,102,109,104,99,105,132,117,103,96,127,101,103,96,113,109,101,101,109,97,101,103,104,102,108,98,109,101,100,107,105,98,98,105,103,97,105,107,104,105,105,105,93,77,122,114,111,106,96,97,104,103,110,114,92,98,93,107,110,104,96,101,103,97,102,95,104,104,111,99,97,99,108,102,102,103,102,102,100,100,112,103,103,108,97,114,103,106,104,115,99,109,101,103,97,104,110,115,103,98,95,94,103,97,108,102,102,99,74,105,116,99,101,111,97,116,106,87,119,98,104,125,90,106,101,107,94,111,106,110,107,107,102,102,96,107,103,99,100,98,108,112,111,108,103,94,106,106,111,112,107,99,100,100,100,104,107,94,99,106,114,113,98,113,109,112,88,102,114,103,93,107,100,109,98,98,91,97,103,103,96,97,109,100,104,93,121,100,106,109,101,114,112,110,109,101,107,98,100,109,92,114,103,105,89,103,100,108,100,101,114,96,92,106,105,104,108,96,105,107,93,99,112,112,107,100,108,86,105,107,117,103,106,95,98,91,102,102,111,100,115,104,105,98,106,97,110,93,96,89,105,103,107,99,101,98,107,98,109,101,88,106,106,99,99,109,107,99,130,107,108,106,100,102,102,107,109,103,82,107,103,97,104,101,105,108,117,104,98,102,102,105,100,102,95,108,101,100,98,118,101,110,110,97,117,117,96,102,103,104,99,102,64,104,94,71,98,104,99,103,95,108,104,100,94,103,107,107,109,98,100,104,122,101,99,115,92,116,112,113,105,104,97,98,110,100,112,109,122,102,116,108,111,116,105,96,105,101,109,104,103,92,90,100,108,105,91,109,113,106,106,106,104,109,90,107,102,97,105,110,101,95,107,109,110,98,95,105,114,104,110,97,105,103,101,106,110,91,115,97,99,111,98,99,119,102,111,109,110,104,96,99,107,130,110,89,123,111,91,108,109,106,101,94,116,121,94,79,110,106,102,97,109,95,97,106,117,111,109,105,111,96,118,105,103,98,98,99,117,117,107,93,110,115,98,118,110,103,104,117,114,103,97,115,93,99,94,105,105,119,94,112,101,102,104,121,111,109,100,101,120,99,113,108,98,107,108,91,106,107,108,109,108,97,125,109,100,110,105,113,99,102,90,100,113,97,113,109,108,105,117,107,100,107,112,97,101,104,100,100,105,117,133,103,102,68,100,89,114,100,91,105,108,103,112,106,98,108,103,102,104,102,105,100,92,89,109,103,110,109,104,100,111,99,105,104,114,105,96,106,108,116,110,109,99,112,97,104,106,104,116,120,119,106,105,99,101,104,103,106,98,109,98,95,105,115,99,98,109,111,118,94,104,115,113,113,98,98,104,105,85,107,105,117,117,95,96,101,111,105,106,111,100,102,87,101,103,119,105,83,102,102,98,108,102,104,94,105,110,107,99,102,109,108,116,110,107,74,120,115,112,101,105,123,113,103,101,91,110,102,113,96,106,103,105,89,103,107,110,95,93,107,102,110,108,100,95,105,102,91,114,103,101,90,100,102,90,102,102,93,97,117,105,99,106,105,101,103,102,118,102,104,112,109,95,108,121,103,104,111,105,106,91,110,113,102,103,105,104,102,103,102,114,130,99,107,113,121,106,103,98,98,119,124,112,132,83,111,120,107,110,96,114,112,107,111,105,98,94,116,106,102,92,109,100,110,105,100,111,104,105,108,109,129,107,105,109,103,96,97,119,104,108,108,113,104,114,95,94,105,113,101,97,109,115,108,115,105,108,114,107,100,99,111,100,104,107,108,106,110,106,92,98,99,106,107,95,100,110,91,97,79,108,105,104,104,104,98,106,123,114,105,96,105,94,106,107,95,112,96,102,110,106,111,128,103,113,91,114,94,97,126,107,119,111,109,109,99,96,110,101,104,108,119,95,101,101,87,95,104,105,98,104,118,109,105,103,116,100,99,105,100,120,118,104,107,111,103,106,97,115,109,96,103,97,100,94,87,101,103,102,93,76,109,100,119,100,100,115,109,96,115,114,108,102,100,97,99,112,115,106,118,98,116,116,112,120,106,105,102,77,101,107,103,112,107,125,111,100,103,108,101,94,91,107,110,112,104,106,112,104,117,104,99,106,100,108,114,105,112,113,114,116,89,112,106,102,106,94,99,107,117,123,109,105,115,103,111,104,90,105,105,102,103,91,65,114,124,106,117,104,96,116,97,87,99,105,104,102,113,106,108,91,105,111,111,97,110,125,115,104,83,120,106,112,104,99,109,118,88,99,89,103,96,114,106,100,104,104,85,113,103,110,98,95,115,101,114,91,108,117,107,105,106,104,111,106,104,102,115,82,116,103,109,87,99,96,106,104,104,104,104,83,102,108,97,116,107,103,112,113,119,113,102,94,118,84,108,122,105,105,89,104,106,100,105,95,100,104,109,101,104,110,102,102,87,122,108,106,108,100,107,104,113,108,106,108,107,101,102,102,81,104,99,104,111,102,98,104,103,107,102,106,113,122,102,98,102,104,109,104,81,107,92,106,110,112,96,104,102,108,103,102,105,106,96,106,109,101,90,98,119,120,114,111,100,100,88,106,115,120,102,102,116,95,120,104,109,99,109,99,108,114,100,103,110,108,109,109,114,106,113,98,106,96,108,93,105,104,116,94,99,109,98,115,105,119,95,104,105,124,112,105,101,109,103,133,98,107,100,106,96,76,104,107,102,108,104,117,105,105,99,112,101,102,108,101,95,110,95,107,98,98,92,99,94,101,105,108,106,94,101,117,105,97,113,109,95,103,107,106,102,103,98,100,104,84,104,106,110,102,100,102,95,110,96,109,116,109,91,106,105,103,98,99,100,116,108,95,102,99,103,106,108,114,103,110,95,99,88,121,100,117,117,120,97,111,112,113,108,98,105,102,94,110,101,124,80,92,97,109,117,108,99,113,108,105,98,107,111,101,107,98,95,119,98,99,104,107,97,97,112,100,105,103,114,102,99,107,101,102,100,100,101,108,102,99,106,107,91,106,108,103,109,109,102,105,103,113,99,109,90,98,105,105,102,91,99,110,107,104,107,114,119,113,103,118,104,102,113,102,106,86,109,93,94,98,98,117,111,104,111,106,109,109,103,97,102,90,99,104,99,113,106,110,106,101,94,103,100,101,102,88,110,106,97,93,104,104,98,102,100,100,89,111,90,103,99,101,114,119,104,90,96,106,103,112,103,100,138,105,133,119,94,92,101,99,104,102,109,104,94,104,116,97,110,96,107,102,105,95,107,109,105,101,121,108,112,126,100,110,115,104,107,109,95,107,110,104,108,83,100,78,109,103,97,99,100,102,100,94,101,96,121,116,105,101,102,109,111,96,110,104,111,104,100,109,104,109,101,104,111,96,121,109,112,105,98,104,101,100,103,108,86,105,115,96,95,105,99,108,100,111,111,105,100,113,100,103,106,104,102,106,113,104,119,109,105,127,103,110,106,111,103,111,107,109,108,101,106,98,98,101,104,102,112,102,104,85,104,106,97,102,97,95,93,95,99,94,101,111,98,95,92,107,99,107,101,105,109,105,100,100,106,95,108,105,101,113,101,112,109,118,98,104,96,117,108,112,102,108,104,102,98,104,100,104,102,98,89,111,96,99,91,115,88,110,123,112,106,102,108,97,101,115,111,97,108,103,101,109,117,116,106,97,102,98,108,105,97,95,103,98,100,97,99,102,113,114,111,109,96,97,87,104,91,94,107,107,101,101,100,103,96,91,104,98,101,96,115,95,117,107,95,118,117,105,105,98,104,104,99,108,109,97,112,101,106,110,97,98,108,107,141,92,102,95,106,107,111,116,102,91,104,109,87,104,101,96,123,107,101,100,103,95,104,104,108,103,111,115,104,98,106,125,103,109,82,99,108,103,95,103,100,100,103,102,100,100,109,110,116,100,113,105,111,107,102,104,98,96,117,104,99,103,112,91,110,110,106,96,97,96,95,109,105,110,115,107,109,97,103,91,99,97,94,104,101,87,107,106,109,110,107,127,109,100,105,101,103,122,95,121,103,106,91,106,110,103,91,102,98,109,96,108,107,102,110,97,85,102,95,101,92,100,99,102,110,105,99,103,101,92,92,106,100,105,105,103,106,99,92,96,109,97,93,110,91,106,97,99,106,93,106,107,117,95,113, +629.79504,104,98,83,96,93,108,100,94,110,98,88,99,100,104,107,100,104,100,119,109,101,98,92,102,106,97,96,107,101,102,104,96,91,90,108,94,99,98,89,103,101,94,107,92,109,108,103,101,98,102,108,90,91,94,81,87,100,90,98,92,98,99,97,101,99,105,99,106,106,112,106,108,88,101,100,95,104,101,89,86,95,107,100,68,105,98,110,98,117,99,96,110,94,102,86,96,103,85,101,92,75,95,90,114,91,97,88,104,112,102,104,82,109,104,100,96,100,94,102,123,100,112,117,96,109,113,95,94,112,99,98,92,99,101,102,95,103,106,89,99,104,97,92,102,111,102,103,100,102,100,101,92,111,93,110,90,94,91,122,90,101,115,108,106,104,106,112,106,91,101,100,100,100,117,100,102,116,94,104,96,108,108,91,101,94,108,100,102,101,102,96,95,110,109,100,101,100,110,99,119,93,104,104,109,104,99,113,103,104,115,104,102,98,95,105,94,101,111,88,104,104,95,112,91,101,79,106,103,110,99,89,94,103,108,94,99,99,96,88,91,104,100,105,88,106,111,92,112,91,104,98,108,102,110,113,104,105,101,98,103,93,108,95,90,93,110,89,93,100,97,104,109,92,95,106,99,96,100,95,105,113,89,115,91,93,102,81,102,116,87,102,98,110,96,107,104,93,104,109,106,103,95,96,101,97,100,94,110,100,116,89,93,95,106,106,112,105,100,101,98,103,98,122,121,95,96,99,86,112,107,107,112,109,98,105,100,122,99,85,107,116,86,112,98,111,106,103,100,115,97,106,103,107,111,111,110,100,103,100,107,97,103,99,97,116,94,105,102,107,103,100,90,105,100,102,98,109,89,112,91,109,91,92,104,104,95,98,90,118,97,100,98,100,96,107,92,106,108,104,125,117,115,99,101,101,95,100,117,106,105,91,100,101,104,101,98,118,90,97,95,106,105,106,109,102,87,104,95,96,90,88,115,100,97,101,102,102,111,93,103,107,97,95,110,96,98,101,106,103,102,100,100,92,102,102,100,108,95,100,83,93,91,99,77,107,95,107,94,99,98,100,106,105,96,107,104,94,101,101,101,96,102,100,97,81,87,95,114,97,80,100,109,100,120,94,90,101,87,100,104,109,114,94,112,99,108,96,105,101,100,108,99,94,117,97,92,105,100,96,99,100,91,79,114,104,100,106,115,93,105,93,112,92,95,93,102,99,101,109,113,112,111,105,87,98,97,111,105,103,104,106,95,76,114,98,100,115,100,101,115,107,109,98,98,103,113,101,81,102,86,105,94,106,108,107,108,92,93,100,104,91,98,101,84,100,102,105,92,102,101,107,108,109,89,104,105,101,103,97,101,109,101,109,99,106,105,96,103,102,107,97,100,109,103,107,97,95,104,98,97,111,99,99,104,104,91,95,98,105,96,102,105,98,90,95,107,88,96,104,112,100,112,103,104,92,104,101,98,120,99,98,102,109,107,109,107,103,96,110,101,104,104,107,86,98,97,100,103,98,100,105,96,104,104,92,106,115,100,99,105,113,67,99,110,90,102,100,108,139,98,101,98,91,101,93,109,97,107,106,98,101,95,95,113,109,101,102,101,94,99,109,98,92,89,95,125,113,100,113,101,95,104,105,97,109,95,103,114,105,105,99,103,94,100,99,91,102,91,113,95,111,108,108,109,107,95,91,106,103,98,110,100,99,100,95,103,103,107,102,97,110,100,95,111,91,108,98,94,109,99,110,99,72,92,102,99,112,94,105,97,116,110,95,100,110,120,91,120,105,108,98,97,116,127,108,85,93,112,105,107,106,90,99,99,106,112,99,98,101,100,96,98,104,102,109,106,108,106,114,91,100,110,104,99,107,94,99,92,94,90,100,94,104,95,100,112,102,97,103,107,101,103,114,91,98,105,98,99,104,116,111,97,88,106,104,106,102,103,96,98,91,101,110,93,116,95,93,94,120,109,91,109,99,105,88,99,107,106,103,90,104,101,104,102,100,97,113,91,110,118,100,101,109,111,90,96,102,105,114,97,113,103,109,102,98,95,101,110,102,115,93,103,110,101,101,108,96,113,109,99,111,105,100,98,101,91,95,110,95,109,98,100,111,121,96,99,111,106,105,115,116,95,98,110,94,97,101,103,102,100,92,99,100,103,105,94,97,96,96,112,106,111,99,103,109,107,91,97,112,94,114,85,102,103,102,100,100,105,102,91,97,87,102,105,101,101,106,105,99,102,108,109,101,97,93,101,98,105,86,99,101,109,97,105,104,117,108,97,91,106,95,107,101,110,96,96,104,102,103,102,94,108,107,114,89,113,104,115,129,84,93,108,103,93,118,99,106,108,117,110,114,110,88,93,101,111,112,102,105,103,136,100,118,100,104,95,100,100,115,103,118,113,100,108,101,101,108,110,107,94,94,110,92,106,111,93,100,104,94,98,103,108,101,109,100,100,99,97,107,105,94,109,112,99,100,99,99,106,110,106,104,95,104,112,98,99,116,97,113,109,108,98,108,107,112,91,90,100,91,101,115,105,108,97,124,117,108,121,99,106,107,115,113,71,105,101,106,103,113,105,99,108,93,120,108,99,106,103,121,99,109,88,100,106,98,108,100,116,109,113,111,94,108,100,122,102,99,106,97,106,102,101,105,120,105,115,115,104,113,98,103,107,105,97,103,114,96,111,105,115,82,102,110,110,114,107,106,92,94,110,89,103,111,98,106,98,112,99,113,99,100,104,106,116,91,142,117,106,102,120,110,106,102,102,93,101,100,107,106,112,125,106,101,126,101,99,112,105,98,108,101,98,116,116,107,94,106,107,100,107,110,108,111,111,111,108,100,80,114,115,122,107,104,110,108,102,106,117,111,98,108,114,104,107,105,100,100,108,109,99,107,125,105,101,114,103,108,99,102,105,95,107,103,100,99,106,104,96,110,109,118,109,93,99,113,99,103,104,114,100,107,107,106,96,114,120,99,97,86,105,105,116,111,102,113,105,112,113,110,93,103,98,90,114,104,108,109,106,107,104,106,105,110,100,120,100,105,115,116,91,107,110,95,113,105,110,96,117,109,94,112,109,105,108,102,112,107,104,103,99,107,108,110,99,112,104,94,100,106,106,101,98,107,102,116,113,101,102,106,93,99,103,91,101,110,102,113,106,111,103,112,105,112,105,109,105,108,104,111,105,66,96,114,108,101,120,98,108,98,115,124,103,100,104,94,109,106,106,102,103,120,117,112,104,107,95,98,110,96,103,99,106,99,91,88,105,99,99,113,120,110,101,80,104,110,124,103,102,106,102,84,111,105,101,106,102,106,103,97,99,94,109,102,105,102,81,103,107,111,105,93,108,107,142,108,97,95,102,98,101,106,104,106,109,96,118,98,109,109,96,101,101,100,105,92,104,108,96,107,103,101,102,107,94,85,117,104,91,103,85,92,105,102,97,97,98,95,105,101,105,102,124,101,103,96,114,99,100,99,107,126,107,95,106,115,99,105,102,106,100,115,107,111,111,107,108,97,109,108,108,111,125,99,104,102,115,97,120,100,104,109,89,102,104,100,118,111,109,99,105,101,96,113,105,108,107,108,114,109,115,99,95,105,104,100,103,119,102,110,106,107,109,104,106,107,105,102,108,94,103,103,74,97,110,100,113,100,99,105,103,112,105,91,115,94,104,116,105,124,97,93,105,98,107,109,102,102,112,106,90,87,116,103,105,103,102,106,90,95,96,109,103,107,102,99,111,116,98,102,102,104,119,108,107,112,104,107,103,107,103,95,98,102,106,101,113,117,103,113,98,113,106,108,113,116,106,104,112,102,69,104,100,111,107,104,98,113,93,105,102,106,99,113,105,104,116,106,88,84,93,93,108,100,101,94,100,94,97,104,107,98,110,109,102,108,103,113,99,113,98,104,106,115,106,104,108,104,109,110,103,104,103,80,107,99,102,106,101,98,97,124,91,107,105,117,109,112,103,92,115,98,106,106,106,110,96,110,112,103,95,105,112,100,113,99,111,104,111,101,108,103,123,102,111,102,112,105,105,121,106,116,101,108,112,109,109,112,110,105,100,112,110,110,100,110,125,105,103,98,103,112,112,124,100,102,108,104,113,109,125,107,106,110,113,111,91,107,100,111,102,98,105,108,97,82,128,108,113,110,95,113,103,101,98,111,102,121,93,111,102,114,113,89,107,105,109,117,98,92,104,112,96,102,100,104,102,104,101,106,99,103,105,114,101,94,100,94,107,113,117,90,99,113,108,100,108,99,94,95,112,99,107,103,106,110,112,104,101,102,89,110,110,118,102,111,104,103,114,113,95,106,109,99,106,98,106,102,100,103,115,96,112,103,105,117,73,110,105,118,111,125,102,113,106,104,102,103,109,112,106,108,97,99,112,101,111,105,102,101,124,106,110,98,109,106,98,95,109,101,124,108,109,116,125,106,106,108,103,108,106,101,101,107,113,98,105,103,106,122,95,99,117,98,125,115,96,107,110,105,91,104,103,115,110,100,108,106,111,100,107,105,106,99,102,103,99,107,103,117,105,114,109,106,110,102,101,114,98,94,93,104,97,94,108,112,102,82,105,109,93,108,96,107,105,103,113,113,103,107,109,97,109,111,103,111,106,104,111,104,105,90,101,102,104,94,97,83,110,99,99,98,102,112,106,105,107,111,103,101,114,111,110,110,108,92,100,104,100,102,98,93,104,95,90,104,115,103,110,115,102,114,108,100,110,120,113,100,100,109,106,109,99,111,96,98,97,112,106,112,89,99,104,110,89,89,116,96,106,128,116,106,105,94,105,114,91,103,104,93,99,107,102,109,110,112,117,88,102,117,114,96,108,109,103,112,103,110,103,125,93,100,110,100,94,100,93,102,107,115,105, +629.93616,101,105,106,93,95,77,119,105,123,109,102,114,105,105,88,92,97,100,98,93,107,104,97,96,98,103,97,108,103,103,115,100,96,92,112,107,109,109,97,93,95,111,107,104,108,101,109,98,90,96,94,88,113,101,92,108,93,93,111,103,105,99,97,105,132,116,88,99,102,91,106,95,92,100,94,118,107,104,104,99,96,106,89,105,100,104,108,98,104,110,106,106,103,110,95,100,99,102,87,100,107,111,103,93,109,100,97,95,102,108,111,98,92,95,103,108,115,71,104,108,107,106,111,106,94,99,105,104,92,106,102,102,103,108,111,118,104,99,103,100,100,111,103,107,97,95,106,107,99,94,112,106,113,102,95,93,104,103,79,99,113,102,112,104,113,114,111,104,106,89,105,107,104,115,100,100,120,92,102,90,124,123,101,102,112,105,94,103,105,93,102,109,106,97,101,105,88,82,105,90,104,87,97,116,100,88,91,108,113,114,109,118,99,108,103,103,99,91,103,109,85,107,115,105,104,90,104,96,108,108,112,117,109,119,101,112,124,112,101,104,89,105,103,102,99,113,103,105,112,96,105,89,106,104,103,102,104,113,96,104,106,123,99,106,97,104,115,105,100,124,103,110,103,113,98,113,98,90,104,92,109,103,105,108,91,104,93,101,106,96,117,104,102,100,113,107,97,100,87,102,100,101,90,116,106,105,97,107,107,107,95,103,107,113,100,99,102,100,100,105,95,96,99,105,103,105,92,101,107,112,96,105,104,112,112,105,105,103,104,99,97,92,103,96,110,87,117,98,103,96,107,101,103,113,91,100,107,111,108,108,94,100,89,104,100,100,105,114,100,111,105,104,94,107,110,97,109,98,101,107,101,106,97,89,100,95,102,120,99,98,99,96,100,100,109,102,102,103,102,103,90,103,110,104,101,106,99,105,101,99,86,99,131,93,96,85,104,101,105,99,95,95,104,115,103,103,110,93,110,107,95,99,91,104,107,104,96,98,97,101,113,109,94,100,102,70,107,92,107,96,102,94,103,92,98,102,121,105,108,92,86,103,94,110,105,106,101,102,91,102,111,103,105,96,94,109,101,109,89,109,111,106,113,109,113,95,107,106,98,94,114,105,93,109,90,101,103,101,107,105,113,80,105,105,107,98,97,104,108,114,106,111,105,105,86,106,103,111,100,99,99,99,106,90,116,105,113,117,94,98,102,101,102,110,105,106,96,98,107,118,100,96,119,103,113,101,108,106,95,106,107,117,112,100,105,103,113,100,103,103,108,102,99,95,95,103,107,100,94,109,94,108,101,99,92,107,113,103,115,106,107,100,98,90,98,95,100,100,104,105,111,107,102,99,109,109,99,109,104,104,105,109,96,107,95,95,89,90,111,109,95,110,103,115,114,91,117,107,101,114,119,101,105,98,103,103,99,100,102,110,103,110,104,114,106,98,83,91,98,103,100,104,96,105,105,101,105,103,103,104,97,98,102,111,93,111,96,111,107,87,105,113,112,87,97,107,106,98,105,84,113,94,99,106,105,99,112,103,108,99,100,102,109,91,94,99,107,101,109,105,105,118,107,95,106,104,103,109,114,84,112,101,95,97,112,104,106,107,107,104,103,105,102,79,95,107,108,110,103,99,96,109,105,108,87,96,116,98,104,103,93,98,98,99,103,99,110,103,113,97,97,99,96,95,111,123,107,120,95,100,102,94,103,108,108,92,120,105,109,112,108,105,92,102,109,97,103,106,91,100,100,96,116,100,94,97,94,106,101,109,105,92,101,104,108,99,107,112,101,101,84,96,106,115,91,105,102,100,92,96,99,96,94,97,97,95,113,96,114,92,103,100,107,104,94,93,105,112,101,113,101,112,104,103,99,107,103,104,97,101,115,103,101,104,117,104,105,108,99,94,94,106,105,104,96,105,102,105,103,108,101,106,100,105,85,103,113,109,102,109,100,105,95,113,105,106,101,108,107,103,87,107,102,110,99,116,112,107,110,112,110,113,99,126,106,109,103,102,105,77,114,102,102,95,109,98,108,97,113,114,80,103,91,105,70,104,96,104,95,89,101,105,110,107,125,103,100,105,103,111,95,87,103,104,100,96,107,116,114,107,104,109,113,97,99,95,105,104,97,112,100,104,90,110,106,114,105,110,102,104,110,101,104,113,99,113,109,117,107,98,95,108,113,116,103,89,100,109,92,103,114,115,108,106,95,108,101,96,111,97,103,112,100,92,113,109,102,98,104,101,102,89,107,115,100,97,95,95,106,103,113,103,99,91,104,100,102,96,96,108,95,99,91,103,109,99,108,91,101,107,101,107,103,102,117,103,104,86,112,108,98,98,93,91,114,89,112,115,107,104,98,116,102,122,109,107,118,122,108,119,121,115,114,107,102,94,95,119,111,99,94,110,106,111,102,111,95,102,111,109,91,103,100,113,100,95,96,104,92,107,116,103,110,103,103,110,108,91,96,89,110,97,97,96,104,97,108,99,113,108,96,92,104,97,108,97,90,107,101,91,106,109,95,98,102,100,94,96,100,98,107,73,95,115,103,101,102,103,110,95,105,117,108,104,101,97,116,96,100,96,98,102,103,107,102,90,104,96,113,106,95,101,106,100,93,98,89,108,109,107,105,99,104,87,106,98,110,101,105,91,116,90,97,103,103,107,101,103,108,114,98,99,97,102,103,106,105,100,81,104,110,96,108,97,101,85,112,99,109,99,99,100,113,103,107,104,98,102,90,94,81,108,98,101,114,99,117,109,108,101,94,112,105,103,107,95,100,95,92,95,84,87,107,107,109,93,103,96,109,97,102,103,98,88,102,92,109,103,104,107,106,99,118,101,95,95,99,107,99,111,108,106,101,99,89,96,95,107,106,134,110,112,109,113,106,97,85,109,104,109,114,100,96,92,94,104,91,106,102,104,95,113,98,97,99,111,99,96,102,95,101,116,103,102,95,112,104,113,101,107,109,94,91,92,103,110,98,98,111,109,103,105,103,99,115,112,95,106,102,103,95,95,98,100,107,106,97,109,108,99,92,95,104,100,100,106,114,108,133,90,99,106,100,98,97,97,111,99,108,102,109,118,95,128,96,95,106,104,91,109,93,95,98,118,108,98,86,96,105,106,100,97,108,103,107,98,98,111,111,94,98,97,116,111,94,84,94,102,104,110,103,102,97,104,106,108,99,102,109,105,104,99,99,115,98,97,109,105,113,98,98,104,93,103,87,98,103,94,102,102,102,109,102,113,104,86,103,107,94,102,94,102,109,112,102,113,95,98,107,111,93,105,101,98,104,99,109,98,106,94,107,108,107,95,103,96,99,115,90,85,96,102,100,102,111,96,107,92,106,101,101,99,94,101,98,110,102,95,96,100,99,103,87,108,140,106,104,113,106,103,106,100,96,99,97,109,107,100,107,97,112,107,102,98,100,106,113,110,94,91,110,116,100,101,102,107,107,106,68,92,103,107,104,91,102,108,103,105,116,100,102,109,97,109,117,113,103,106,100,99,100,112,99,102,100,102,101,94,121,107,103,107,95,99,102,89,105,109,101,103,113,95,98,85,108,98,92,103,107,94,97,105,99,96,99,95,125,117,94,104,103,90,105,105,108,101,106,108,113,110,102,91,120,112,91,105,110,100,105,97,101,99,93,108,103,104,73,102,105,105,101,100,85,96,90,100,105,106,108,87,101,103,110,98,98,111,105,107,86,96,116,104,109,95,99,88,107,103,100,84,108,115,105,88,103,92,116,98,111,113,101,104,112,101,105,99,89,102,103,112,95,108,105,123,99,106,109,109,97,91,110,117,110,102,101,104,100,102,102,124,105,109,95,105,103,112,105,109,103,102,102,112,91,104,102,109,102,113,108,87,93,102,96,90,105,102,106,96,107,99,106,102,101,106,109,99,120,113,108,108,105,96,109,121,93,102,110,104,94,97,105,108,104,98,98,98,101,103,92,88,99,96,98,86,95,95,96,106,98,96,95,111,104,109,92,97,80,95,98,103,105,101,103,97,107,111,96,103,89,103,102,109,92,103,104,108,105,104,108,102,94,105,99,97,105,116,96,96,112,98,100,108,102,94,99,100,99,106,93,91,108,100,94,112,97,101,97,110,101,110,98,96,106,100,110,101,109,88,114,91,96,96,109,87,104,112,101,102,97,98,105,105,99,90,117,97,99,109,104,103,105,96,102,102,89,108,108,93,97,106,80,96,105,101,84,95,102,105,94,95,94,67,114,103,75,110,104,100,88,101,90,100,115,109,104,105,116,91,108,104,109,104,108,101,95,87,97,106,115,104,101,108,103,101,103,108,106,101,113,102,95,93,102,95,102,94,105,90,87,107,94,95,100,110,107,104,102,101,103,106,100,133,106,110,100,103,102,93,100,96,104,100,108,109,107,106,110,94,144,102,107,100,96,96,91,101,96,100,106,113,110,100,108,98,108,87,98,96,120,105,100,95,112,95,105,105,104,98,102,112,90,112,103,106,105,97,96,112,104,89,102,98,95,88,95,92,104,98,96,94,95,96,93,110,101,91,120,105,96,99,116,97,99,106,106,94,112,96,95,100,113,103,104,108,101,96,104,106,107,99,109,96,97,103,106,102,113,100,98,108,96,102,100,105,103,121,113,103,105,98,98,96,95,111,109,105,96,101,100,105,97,94,94,104,106,96,104,84,99,103,104,103,117,112,105,100,104,111,107,94,105,107,99,115,95,104,107,102,110,107,106,105,90,100,107,101,98,113,110,112,96,96,100,103,97,115,76,107,106,103,109,97,110,94,94,101,91,103,90,106,104,91,114,108,104,109,90,93,109,99,116,100,96,97,101,117,71,103,89,85,103,106,111,98,106,105,96,103,102,91,102,92,106,99,99,103,101,86,101,110, +630.07733,115,114,121,87,102,104,101,101,100,110,96,111,103,98,108,94,104,103,106,96,100,77,91,91,105,114,112,108,101,103,87,107,95,80,96,105,109,101,107,111,99,105,105,106,120,122,105,110,100,113,102,101,100,105,114,112,101,92,96,97,97,103,104,105,99,101,119,114,100,102,100,110,99,108,100,111,114,111,95,107,116,101,107,99,96,97,105,103,90,104,109,111,107,97,88,93,101,107,94,110,93,91,104,116,99,108,98,109,98,98,113,98,109,87,100,96,97,122,107,105,104,104,108,113,94,113,103,101,107,101,100,107,99,106,111,94,103,110,106,91,107,113,109,108,116,104,108,94,97,113,100,117,101,87,101,108,85,110,108,99,109,108,109,105,96,102,111,99,109,102,92,95,102,94,109,106,104,93,102,100,98,103,94,106,119,91,94,101,99,102,112,101,97,101,114,107,100,101,105,78,102,109,102,111,116,103,75,109,107,101,95,105,108,112,107,101,102,106,102,95,102,106,92,104,105,109,111,94,120,102,88,98,100,106,108,104,108,111,107,109,105,106,108,105,103,102,110,102,91,114,113,95,97,111,102,104,96,109,92,106,103,111,106,98,92,108,104,97,104,96,99,104,105,108,103,97,96,113,104,113,109,113,111,112,95,101,103,105,102,103,104,98,109,113,107,104,102,111,113,105,106,106,123,116,103,102,117,110,111,130,101,118,106,93,122,109,105,106,100,102,105,84,94,111,114,95,98,113,104,106,99,103,114,101,99,112,108,111,98,106,103,105,117,86,113,106,107,100,120,110,107,103,101,104,103,104,92,103,108,100,105,109,110,104,97,107,108,110,94,107,101,103,103,109,98,105,102,91,100,94,96,100,107,104,108,101,113,98,109,98,105,115,99,110,78,108,100,103,106,118,115,94,103,99,101,96,105,95,106,105,106,104,117,102,95,102,104,100,102,116,112,114,114,120,103,100,108,103,111,94,99,107,94,111,108,102,99,103,100,118,104,114,88,100,110,93,103,94,108,111,94,100,99,99,107,90,104,99,109,87,100,112,105,108,106,111,112,89,108,95,99,114,95,108,98,103,110,102,103,106,111,102,99,102,101,137,109,102,97,111,100,104,108,106,112,102,95,121,101,101,105,96,114,107,94,104,106,105,103,91,117,111,99,110,100,100,99,103,106,101,114,101,100,93,84,111,88,108,103,101,100,105,102,110,103,98,95,97,113,101,95,102,109,117,105,122,114,93,113,101,102,102,91,96,86,87,112,99,105,102,98,115,101,107,104,100,129,107,114,112,102,91,103,114,101,96,109,112,99,99,95,108,95,103,96,102,120,114,116,107,96,108,104,108,108,107,108,109,112,98,109,117,102,96,110,104,90,112,106,110,105,96,107,116,107,93,101,96,83,94,112,92,110,116,123,111,97,92,107,76,106,87,100,111,100,106,100,99,110,107,129,101,87,105,101,98,103,91,111,97,93,112,96,102,100,102,99,108,94,110,108,96,107,100,98,95,105,94,119,102,99,101,99,98,103,109,73,100,94,99,105,108,106,100,99,102,97,95,105,115,98,110,100,119,103,97,100,101,97,93,114,93,107,102,117,103,118,104,99,111,95,108,108,99,108,95,95,106,110,102,95,105,93,107,100,104,93,94,117,100,99,97,108,102,95,97,99,98,102,111,100,111,104,90,92,101,99,100,97,107,94,101,101,92,105,85,114,106,97,105,105,111,98,101,104,101,103,105,107,96,120,114,105,104,103,102,96,100,85,89,106,107,100,107,106,103,95,109,102,104,97,99,108,112,105,107,96,99,108,111,100,103,95,126,103,108,100,95,109,104,106,103,105,88,99,102,105,97,107,114,97,65,97,109,103,102,112,116,114,105,100,105,107,98,113,108,95,108,114,96,94,108,95,96,110,98,99,94,96,96,103,102,88,95,93,105,100,102,100,104,107,96,103,107,96,95,91,87,105,101,110,111,113,103,109,98,120,88,87,108,110,92,111,107,104,102,102,110,103,97,109,110,104,101,103,108,121,106,100,129,94,106,103,86,100,101,106,108,101,97,106,105,112,107,103,97,96,107,100,122,110,105,77,109,101,99,95,101,113,105,110,108,105,104,93,105,102,86,94,99,102,104,98,87,113,100,107,116,114,108,112,100,125,114,111,96,114,102,98,101,115,110,102,96,75,107,100,104,95,97,104,100,97,107,113,111,87,91,103,89,97,108,108,82,105,113,99,103,100,105,99,104,92,112,99,100,91,102,85,111,104,106,108,104,115,100,89,107,99,103,112,107,103,107,100,121,109,96,99,102,100,106,91,97,97,100,109,112,97,114,112,91,97,105,104,93,103,101,103,91,102,99,102,103,105,102,102,108,107,120,117,101,103,119,101,85,96,96,107,105,102,100,99,103,97,136,116,102,103,95,94,119,103,112,92,131,106,110,79,100,108,104,101,117,97,106,98,103,112,110,99,108,104,94,100,109,107,112,110,106,102,100,103,103,111,103,99,96,92,98,107,131,104,98,121,103,102,104,99,97,100,97,100,108,96,95,103,113,102,105,114,116,102,106,107,103,108,98,99,109,98,100,100,106,104,90,111,105,103,104,108,93,112,116,107,97,122,108,104,110,100,98,109,101,88,115,101,105,102,104,119,112,97,123,73,117,103,106,104,107,105,102,105,111,105,106,113,113,102,95,105,102,108,104,105,104,98,102,105,112,95,104,100,109,103,98,112,112,99,101,105,109,113,102,119,113,105,102,106,98,112,116,102,107,109,104,103,103,123,116,93,105,106,119,109,99,108,94,103,102,108,101,102,96,121,97,110,98,100,101,105,106,95,108,95,104,97,102,91,105,105,104,99,107,99,108,110,117,100,105,108,93,103,99,105,98,100,99,96,120,104,87,112,98,103,121,82,98,113,106,100,100,101,99,102,97,103,101,103,102,103,108,104,102,107,91,101,101,108,110,118,86,104,109,110,105,98,111,113,101,106,108,112,102,105,97,96,112,114,92,115,102,103,106,104,95,110,98,107,88,95,94,120,103,100,109,118,88,101,87,110,100,107,101,103,104,113,97,108,106,108,113,105,111,105,97,102,104,105,100,112,101,99,108,102,113,103,97,103,104,98,89,104,116,92,104,100,99,111,98,90,100,93,99,114,96,112,101,109,105,111,109,104,98,99,108,107,94,98,102,105,122,103,107,109,99,102,126,103,99,113,114,101,90,102,103,111,106,113,99,108,99,106,115,106,103,102,121,105,103,104,97,103,104,124,75,116,101,123,105,106,102,112,105,116,103,103,121,104,89,115,103,112,87,113,115,100,100,84,100,99,106,100,101,101,98,109,105,97,104,104,108,96,109,109,109,99,93,104,114,103,91,103,91,102,99,92,111,104,105,100,113,105,108,99,109,116,91,98,104,104,109,106,105,101,103,96,104,104,98,97,112,105,79,109,103,97,108,108,98,101,92,111,113,106,101,114,106,85,96,117,105,94,109,114,106,88,96,95,106,98,112,98,110,101,106,111,112,100,106,109,104,113,105,98,103,95,110,96,110,99,104,93,101,104,108,97,102,104,84,103,110,102,96,99,102,113,100,123,116,95,100,105,102,96,101,96,98,116,108,100,104,105,95,103,104,106,97,98,100,112,101,108,107,95,96,109,124,104,108,112,117,111,98,94,107,108,100,120,91,119,113,105,113,99,107,103,101,119,102,103,94,96,101,97,109,109,104,96,104,110,97,106,94,102,104,82,113,109,107,99,92,110,104,121,102,101,99,115,106,105,99,102,101,111,103,102,109,101,96,111,103,104,104,105,93,102,105,104,111,101,106,94,105,113,106,102,102,121,100,110,109,107,106,114,105,109,99,100,110,101,105,99,99,106,116,104,95,113,111,113,92,112,111,111,98,102,111,104,109,97,108,109,105,91,110,105,103,105,115,103,99,100,118,117,108,94,101,105,100,102,97,92,96,106,106,99,108,97,106,108,94,101,109,103,105,113,101,110,124,110,110,101,94,110,106,111,109,94,111,94,104,70,99,99,96,105,105,100,105,96,95,111,95,93,107,113,105,100,113,115,108,101,105,111,108,114,105,107,113,103,102,91,107,107,106,100,99,102,113,100,109,98,106,112,103,110,107,100,111,117,80,95,98,94,122,104,96,105,101,117,106,115,91,107,101,93,123,111,95,80,95,116,97,114,95,91,107,100,103,116,101,101,93,101,108,99,107,114,110,99,103,110,99,103,105,93,67,108,98,107,111,106,104,96,103,95,94,97,111,116,100,112,97,115,107,109,106,110,110,111,101,107,103,113,101,104,79,104,100,102,87,111,102,100,110,115,95,112,108,102,104,96,97,105,98,106,115,107,108,108,102,106,113,103,106,102,108,122,114,86,96,102,101,98,112,100,111,108,100,126,95,98,100,105,113,104,114,138,109,102,93,110,99,99,96,105,105,97,102,103,93,116,105,112,100,90,112,100,109,98,93,108,100,110,110,95,124,96,103,100,91,100,92,103,106,101,103,101,96,99,99,94,104,107,116,98,94,110,101,123,116,102,98,96,105,101,132,111,104,103,98,100,121,100,119,107,100,105,96,97,106,94,108,98,114,103,102,110,100,102,96,94,100,99,109,94,97,95,98,83,100,109,107,108,98,109,103,115,103,93,108,108,109,101,94,98,95,104,109,116,103,112,100,97,105,117,102,109,92,108,103,126,102,106,90,104,101,102,104,105,101,99,118,108,112,113,98,116,105,100,102,98,98,112,101,110,102,95,106,97,105,100,110,101,110,94,111,106,100,126,101,99,101,113,106,99,108,98,108,130,110,113,106,93,113,97,100,94,100,106,111,100,98,107,92,116,107,109,84,101,107,100,79,103,93,107,100,96,94, +630.21844,109,86,86,98,92,106,88,67,116,105,93,113,98,92,90,105,98,107,91,89,91,112,103,95,100,100,100,100,101,104,111,117,100,103,91,95,107,100,102,110,106,99,102,109,101,117,112,108,106,103,95,97,114,112,109,103,95,98,104,98,95,109,109,88,99,98,106,100,99,99,111,103,98,91,95,118,109,101,102,109,95,112,96,102,113,94,96,112,125,101,105,99,106,108,69,92,111,94,91,99,97,113,98,104,106,92,102,104,103,96,109,108,113,123,106,99,103,96,121,94,112,110,107,113,114,106,108,98,104,108,114,113,94,96,109,103,101,114,105,105,100,93,107,101,103,106,114,100,99,108,94,100,110,85,96,89,91,90,104,92,95,105,113,102,112,105,106,114,102,99,95,105,83,109,112,107,109,90,101,96,101,109,97,97,87,107,95,92,102,91,94,94,110,104,96,98,97,126,104,108,98,114,93,108,101,111,103,112,104,107,108,106,108,111,95,99,93,121,89,80,110,107,92,100,99,96,113,105,103,107,97,86,127,98,79,113,109,107,117,91,93,107,115,109,104,104,108,110,120,120,95,106,90,105,94,99,102,101,102,105,91,106,100,110,85,106,102,98,104,97,90,103,104,100,99,100,97,117,90,108,110,103,99,102,109,105,91,102,114,101,101,106,112,111,103,102,113,108,99,100,100,118,99,118,96,124,108,104,119,106,98,105,93,110,92,101,92,106,97,94,100,94,89,104,103,91,90,87,104,98,104,101,94,116,102,104,119,101,95,96,91,106,111,91,102,99,94,102,109,95,109,100,121,110,101,94,108,99,99,107,92,93,94,98,98,98,102,101,92,103,98,103,114,94,99,102,106,107,83,89,108,112,96,115,105,101,99,101,101,88,102,102,108,99,101,110,112,106,107,101,97,103,102,105,111,113,90,107,111,100,94,101,104,104,96,102,76,105,99,107,101,101,100,90,84,98,103,98,95,99,99,111,104,113,98,103,104,100,97,103,115,104,116,96,99,105,112,91,94,109,101,108,100,110,104,110,105,90,79,100,99,91,105,118,110,101,99,102,115,101,106,106,100,101,89,94,103,108,114,105,106,75,105,111,108,91,99,96,105,99,100,114,104,94,102,97,105,102,87,101,108,97,100,94,100,107,87,115,112,109,101,102,103,114,64,94,106,94,107,107,105,102,103,107,106,109,122,110,100,89,102,109,97,105,106,104,99,98,94,120,87,138,109,103,107,100,110,92,106,109,120,102,105,109,97,102,84,99,109,97,101,100,98,99,97,103,113,105,109,103,89,95,103,100,108,102,103,104,104,102,110,111,98,109,104,103,107,108,101,101,122,93,107,99,97,98,91,110,108,97,103,104,109,98,100,97,90,116,94,106,105,104,98,105,117,90,98,102,100,97,95,89,103,104,112,99,99,107,106,102,99,98,96,104,100,96,114,96,95,92,109,106,100,103,95,107,125,106,107,100,99,112,92,102,102,91,110,102,101,128,97,99,104,104,101,101,117,102,92,98,99,99,108,113,100,104,97,107,98,97,104,121,125,98,93,90,94,116,93,102,102,106,95,120,105,107,100,102,122,95,103,93,102,114,89,110,90,103,112,102,109,109,95,98,108,102,94,97,110,105,98,91,97,109,87,126,108,114,113,102,111,107,102,87,103,95,97,63,121,105,112,106,120,88,109,91,112,103,90,109,109,107,109,94,100,110,91,106,104,82,108,127,97,96,97,88,93,112,104,102,118,103,94,102,98,101,105,100,108,104,100,95,106,99,101,96,111,96,104,99,91,102,103,103,102,102,92,113,99,110,100,97,102,109,109,104,89,99,98,112,102,102,97,112,102,97,105,102,107,83,108,102,108,105,100,117,113,115,110,97,108,106,107,113,110,104,105,100,96,99,100,110,107,117,101,102,96,101,86,100,95,94,104,93,105,108,108,96,92,105,103,96,82,100,107,100,90,99,103,99,86,120,104,115,98,100,101,88,97,102,108,113,105,93,98,115,96,114,106,93,95,110,106,98,116,106,97,118,104,101,106,98,100,101,113,101,103,101,101,95,111,104,105,96,97,84,103,103,95,109,104,107,95,97,102,100,101,104,106,112,103,92,97,107,97,102,97,97,102,101,89,107,102,117,107,104,106,104,108,106,91,91,102,108,114,102,96,112,83,107,104,110,105,116,94,103,105,94,100,99,115,103,104,106,114,109,97,100,101,91,105,110,95,106,115,108,87,103,100,95,100,99,102,102,106,73,90,89,93,115,113,107,116,92,126,91,112,101,96,112,82,132,96,96,105,108,89,102,96,95,108,107,99,96,112,106,105,91,103,108,105,113,130,112,100,116,111,109,91,126,111,125,109,114,102,98,116,102,107,95,107,112,90,98,101,99,101,106,103,99,106,104,103,100,92,97,103,104,116,99,95,107,97,94,108,117,107,109,90,100,95,101,108,93,98,101,110,90,126,108,108,112,103,96,95,97,94,89,103,109,108,99,113,101,96,105,104,105,107,110,98,103,111,102,115,98,102,113,111,104,100,104,98,99,106,103,107,120,104,114,105,108,90,100,95,93,91,100,94,98,106,87,91,116,115,110,104,98,104,96,109,91,134,97,101,91,104,97,105,94,118,94,92,95,109,102,89,87,94,92,101,94,99,103,101,107,100,92,111,107,101,110,96,105,102,111,102,102,100,97,102,95,108,107,97,115,116,100,85,103,100,111,108,108,104,104,108,106,80,124,110,105,104,100,99,97,93,106,86,98,102,114,109,94,105,113,101,108,96,106,101,110,100,108,109,109,101,103,101,103,103,100,114,108,135,101,110,110,107,106,104,98,105,105,101,104,102,109,101,106,107,111,115,109,105,102,104,102,107,111,112,110,109,102,91,94,98,92,104,102,122,110,105,107,109,116,105,94,107,103,107,78,95,103,114,99,96,112,111,107,99,117,115,98,101,113,98,110,103,100,102,102,99,114,111,119,90,102,106,106,115,99,123,113,106,95,125,104,102,93,92,100,102,104,106,107,104,103,100,105,94,98,108,103,109,105,106,96,104,101,106,103,104,98,103,111,100,98,107,111,104,108,87,94,108,100,102,100,106,95,103,112,113,108,102,105,107,113,105,110,102,96,101,103,104,103,104,101,104,87,111,105,101,120,102,109,103,87,116,104,108,108,97,101,91,108,105,100,106,98,87,109,103,102,95,96,107,98,107,94,109,125,110,94,103,101,107,98,113,100,104,106,105,98,109,101,106,102,104,117,102,99,111,108,102,99,107,108,120,108,90,94,108,108,114,128,109,112,103,105,99,94,97,108,116,98,104,94,117,105,103,109,113,94,100,108,99,104,104,105,137,111,100,97,98,109,101,116,95,102,105,105,102,101,105,106,101,105,96,90,118,110,110,110,100,108,114,102,98,108,103,101,108,102,99,90,109,107,104,101,112,106,98,106,87,111,95,93,97,99,105,99,106,109,94,94,104,102,106,98,105,99,95,111,104,110,113,103,103,100,108,104,102,117,106,102,108,117,105,107,91,98,117,97,123,105,107,113,103,104,103,84,100,106,101,105,106,106,101,98,100,108,95,110,88,109,108,112,99,106,96,103,122,110,99,104,103,98,97,103,121,107,109,96,94,97,102,87,121,102,111,93,108,98,101,103,100,95,105,108,123,109,110,100,95,98,104,110,98,114,113,104,106,100,105,109,103,108,100,96,104,102,102,106,102,95,114,100,118,94,112,105,102,77,102,99,108,109,107,103,102,97,109,105,100,96,92,94,109,89,116,113,107,107,102,96,100,104,106,105,113,98,107,104,100,103,102,98,109,112,100,110,104,101,93,89,102,99,110,91,98,112,102,118,115,98,110,109,102,101,106,102,92,99,106,98,96,95,104,104,96,105,101,107,109,100,93,93,103,95,96,101,100,115,113,109,101,99,98,103,109,117,101,96,106,102,110,104,95,109,108,127,102,105,117,104,105,95,97,113,113,108,96,103,108,101,96,92,113,97,105,108,93,89,114,106,95,110,112,87,98,106,93,103,111,113,97,106,97,106,106,94,99,116,104,109,103,104,86,94,105,105,98,106,110,112,98,111,100,110,111,104,107,108,113,113,95,105,92,109,104,102,96,98,117,107,106,119,102,93,92,102,102,99,103,109,107,104,109,107,105,101,113,102,109,116,92,120,103,113,107,99,112,88,103,98,97,97,123,105,111,102,91,93,102,110,105,105,107,107,102,109,105,107,102,109,104,125,102,103,86,96,115,100,109,101,113,95,95,108,93,109,98,105,107,109,107,111,109,103,102,97,132,99,107,103,101,107,106,100,105,108,104,105,98,98,107,98,98,109,95,117,103,108,98,107,112,107,117,112,100,115,102,113,101,98,113,99,104,98,100,86,107,127,104,103,103,105,108,100,113,110,111,99,100,102,104,107,90,102,109,106,104,104,102,101,98,96,99,121,103,102,93,102,101,107,101,99,102,100,97,95,93,111,106,98,92,102,97,106,93,105,103,93,107,114,98,106,114,103,94,124,94,107,104,97,108,92,103,101,110,111,91,100,107,104,109,103,88,108,100,91,92,108,117,104,113,78,110,108,98,101,100,124,108,110,105,104,102,98,105,103,106,107,108,106,100,104,109,113,95,96,106,106,90,99,111,76,107,112,96,102,111,106,110,102,104,107,106,94,104,103,107,104,101,102,109,121,99,100,107,100,100,113,107,108,135,100,94,88,102,102,99,105,110,106,96,108,95,101,109,105,108,102,99,114,83,101,96,101,106,102,101,91,98,103,96,106,103,95,105,98,109,120,104,99,111,93,100,99,112,111,94,100,89,99,99,103,97,101,92,99,91,91,102,98,113,113,103,100,120,128,108,103,99,102,108,95,99,101, +630.35956,123,105,88,99,94,119,92,103,107,105,98,104,108,102,99,91,91,109,109,98,102,112,111,104,101,98,105,101,96,99,108,104,108,125,114,104,112,92,108,104,112,104,98,91,99,102,104,111,113,99,113,116,87,88,118,106,103,105,107,136,103,104,98,88,104,112,112,109,98,121,94,121,99,102,106,119,105,116,100,105,106,112,103,96,107,100,108,115,114,98,128,97,116,104,102,105,103,101,103,87,91,119,87,89,100,101,110,116,102,109,88,98,116,123,107,110,87,110,113,109,95,109,86,123,102,112,112,97,88,105,91,104,99,98,101,111,92,106,87,101,95,107,95,98,107,101,113,106,96,96,105,92,96,99,101,114,100,106,105,100,99,98,111,101,115,106,104,108,96,109,90,104,98,107,108,99,102,97,111,101,107,108,117,91,97,104,101,92,107,105,83,104,100,105,106,103,98,100,105,111,98,97,99,103,102,104,104,108,112,116,84,105,106,110,104,111,99,113,97,96,110,106,109,97,99,108,105,113,110,103,106,106,106,98,107,102,114,107,109,116,103,97,110,115,108,99,106,110,99,113,108,87,96,109,106,110,99,103,95,117,103,107,118,98,102,99,109,104,110,110,101,94,88,101,116,113,114,107,109,101,112,105,104,111,108,104,105,109,98,101,99,118,109,99,113,109,101,108,112,115,106,90,104,111,100,98,101,106,96,98,112,117,101,108,111,99,115,114,110,98,117,109,110,99,109,100,110,87,102,114,95,116,109,105,95,105,114,97,115,117,97,104,112,99,88,115,107,103,106,99,112,108,111,103,103,109,93,100,110,90,100,99,94,99,124,99,95,110,102,109,109,109,112,105,111,104,102,97,105,107,113,109,99,98,90,107,93,103,104,102,113,92,104,119,103,95,103,108,99,101,103,127,116,100,103,90,101,108,103,97,98,102,109,94,107,110,109,99,105,94,102,106,90,97,99,103,114,100,93,98,104,104,98,100,95,103,100,100,98,99,114,106,113,87,113,103,107,87,117,93,104,101,107,112,103,102,110,102,109,108,94,106,91,105,107,115,94,104,102,104,96,94,96,102,103,104,101,110,103,113,92,119,112,111,108,105,112,98,116,96,119,106,99,102,67,101,96,109,101,103,104,113,98,99,98,106,105,100,99,96,88,104,117,102,101,101,108,107,107,96,117,93,102,103,130,96,113,113,103,100,95,101,105,114,104,122,124,101,96,108,105,103,107,104,108,94,102,104,104,120,87,118,103,86,102,116,113,96,100,85,95,91,101,109,106,95,101,109,97,102,94,97,105,98,101,99,99,99,99,91,104,94,100,97,95,121,110,110,118,108,105,106,87,102,117,108,106,116,118,107,104,113,113,103,98,98,105,114,105,114,104,99,99,126,120,104,112,105,104,110,110,101,99,113,107,124,104,98,104,110,113,111,93,95,95,102,95,91,107,108,103,105,96,96,85,97,104,116,116,101,99,106,111,103,99,129,111,103,114,98,110,110,99,111,93,92,111,98,99,114,107,104,112,103,95,109,96,103,106,132,104,110,109,93,101,89,104,104,108,96,102,114,102,108,108,108,99,108,112,79,111,99,100,89,109,96,121,98,111,104,108,117,99,96,105,103,104,113,103,101,101,103,100,100,93,93,112,107,104,111,104,108,105,95,100,95,96,93,110,103,111,101,107,102,98,111,115,98,92,109,95,96,101,105,104,100,105,102,97,96,101,93,91,72,110,93,93,108,104,97,106,99,112,110,100,111,102,107,100,97,110,105,103,116,93,105,100,108,106,102,104,111,106,110,105,104,105,100,106,112,107,107,96,109,103,103,102,128,100,109,114,108,100,99,132,109,124,96,108,101,101,108,104,112,108,113,94,102,114,96,95,105,113,103,96,101,117,105,105,110,94,99,108,98,105,106,103,103,97,95,108,113,109,100,107,100,109,101,97,114,101,109,95,115,98,92,96,93,112,108,106,107,101,108,97,101,102,95,107,117,102,106,99,103,113,103,102,103,99,95,115,102,111,108,107,79,100,110,99,105,110,110,100,99,114,104,109,106,99,112,110,105,102,112,108,100,102,104,101,101,99,108,107,103,113,103,97,111,100,100,99,123,107,110,96,108,91,105,118,100,101,98,91,108,92,111,96,105,106,113,106,109,105,106,100,103,102,102,105,107,96,98,107,85,105,101,90,117,108,92,94,106,104,108,112,101,108,91,97,115,104,113,98,111,108,96,105,96,115,95,88,109,113,109,84,95,103,95,103,108,105,125,109,101,119,94,100,101,107,99,105,108,104,112,98,97,115,105,83,101,113,103,100,85,105,105,120,106,111,98,121,113,112,112,95,100,104,107,100,99,105,105,99,111,108,106,106,117,105,102,108,108,103,111,104,112,118,95,112,103,106,103,96,103,104,110,103,102,107,92,103,117,104,119,97,109,107,97,99,97,122,107,101,109,108,99,102,101,102,98,107,109,109,106,106,111,105,107,123,115,103,90,108,104,101,104,103,98,104,114,104,110,106,87,102,109,107,106,104,123,110,108,102,102,106,104,112,112,113,100,107,104,109,102,97,116,121,106,96,101,106,101,109,105,110,106,101,107,109,98,102,96,110,99,111,108,101,109,114,104,107,102,108,99,109,105,108,104,114,112,98,92,108,106,98,112,109,102,98,105,104,106,101,102,107,106,124,109,106,96,100,113,111,114,103,106,101,102,104,102,107,98,109,106,101,102,107,126,96,100,112,105,105,110,113,113,108,106,109,106,115,127,99,120,105,102,99,105,114,103,96,99,107,105,101,103,122,110,116,103,103,107,102,106,98,100,103,110,106,111,104,115,107,110,100,94,103,121,95,104,120,87,100,108,89,103,126,116,102,109,107,96,109,104,108,109,109,108,109,107,102,113,121,106,115,106,108,102,105,106,114,132,97,103,110,120,97,97,105,103,107,107,99,106,102,115,122,104,102,106,99,102,106,104,84,109,106,105,117,112,110,111,111,106,101,107,120,99,99,102,101,110,105,102,95,101,102,105,101,104,108,113,107,111,90,109,104,108,112,96,95,110,101,101,100,95,117,114,107,111,99,108,119,106,103,111,110,95,103,109,98,103,104,107,94,97,116,110,104,110,106,107,106,103,102,98,105,111,113,106,98,91,110,97,116,94,110,96,108,107,113,96,118,109,105,111,100,117,106,109,105,105,101,109,101,100,110,112,108,108,113,107,100,98,95,111,90,91,113,96,103,100,103,109,110,108,91,109,92,116,101,103,105,106,107,106,94,111,117,97,113,98,119,107,104,119,107,114,98,102,104,116,111,102,109,105,109,95,100,103,99,106,106,103,100,116,96,112,104,95,94,103,102,112,120,93,96,111,110,99,108,104,100,103,103,103,108,104,105,97,98,111,115,107,99,97,108,110,110,101,106,104,95,101,112,109,106,110,115,99,116,99,100,106,104,112,115,115,110,130,107,117,109,113,91,96,112,103,114,91,120,101,102,120,96,107,96,106,104,113,110,106,110,103,99,110,113,95,98,102,100,106,109,109,117,108,104,107,102,106,111,94,99,100,106,102,104,121,98,100,108,107,98,102,100,121,110,106,99,114,92,102,97,106,98,103,106,110,107,113,101,102,113,99,96,105,101,96,117,106,87,96,92,117,103,114,108,105,110,103,107,106,104,105,102,108,99,113,111,114,111,113,111,106,108,100,107,116,102,95,124,105,102,93,103,101,104,113,106,83,98,118,92,102,99,105,104,109,105,115,107,94,107,107,101,102,107,104,98,102,104,112,113,108,97,112,114,105,112,125,112,88,102,110,107,103,106,101,103,113,89,98,108,124,96,110,125,99,102,106,102,89,120,98,107,116,108,100,106,100,108,84,120,96,106,114,99,107,109,117,110,109,98,104,81,108,101,101,107,109,99,106,98,97,99,111,119,115,107,102,109,99,98,127,106,106,101,115,100,103,102,119,96,102,107,86,104,109,108,102,114,109,96,117,101,116,94,109,100,96,109,102,100,98,102,107,117,104,106,105,98,105,108,89,93,106,96,101,110,107,95,100,113,103,112,105,101,111,95,93,97,110,100,111,108,115,102,113,100,120,100,103,119,109,108,95,113,103,99,102,97,101,113,102,102,115,98,100,101,105,108,111,99,95,106,104,106,113,109,112,101,106,119,108,104,100,102,102,101,107,104,97,104,99,103,96,119,102,103,100,110,92,103,108,104,111,93,119,96,107,100,108,95,99,112,105,96,109,107,94,105,92,111,107,98,116,95,106,80,106,107,137,98,103,110,120,105,115,108,103,113,119,109,112,102,102,98,99,103,105,106,95,98,106,97,109,109,108,114,113,114,110,102,84,116,105,99,102,109,111,107,117,94,101,103,106,105,91,104,111,100,98,88,108,94,102,98,97,106,101,115,118,102,113,100,97,101,96,101,97,105,115,98,108,107,105,101,96,103,98,93,87,96,105,110,102,109,119,106,109,93,96,95,106,110,103,108,115,98,97,101,104,105,101,101,118,100,108,105,102,95,105,102,106,85,119,106,102,104,99,99,99,106,101,98,111,118,102,108,103,104,95,102,108,95,105,112,106,111,129,107,106,106,107,117,110,96,110,95,102,102,101,110,107,112,100,114,100,119,117,94,101,105,117,99,105,97,119,104,97,100,99,95,108,105,120,101,103,114,101,115,101,110,89,104,108,93,107,104,90,98,104,97,107,100,110,111,112,111,99,99,108,108,100,107,99,106,106,96,109,83,106,102,106,107,100,110,105,100,101,115,101,98,98,97,99,109,105,94,118,112,108,101,85,105,107,100,103,98,94,109,108,105,106,103,105,103,67,97,110,117,105,109,99,109,100,84,116,97,108,99,101,110,95,112,111,98,91,109,103, +630.50067,119,112,98,104,100,92,83,96,102,108,95,110,114,103,99,102,95,95,98,105,106,102,106,102,107,97,100,106,109,87,105,87,108,98,103,102,100,98,110,112,96,117,87,100,100,96,87,111,105,113,108,104,103,103,116,100,105,99,112,87,107,103,99,107,108,108,97,106,105,92,102,114,101,90,111,104,97,98,118,103,109,98,117,99,89,95,108,105,95,106,108,117,105,107,102,94,102,103,97,91,99,105,95,100,108,114,95,112,94,95,104,106,100,98,106,109,109,113,104,100,112,99,106,109,107,100,97,115,110,99,111,104,115,112,116,107,85,108,100,101,109,103,100,108,98,95,123,108,99,102,96,102,103,89,94,108,104,68,101,98,107,107,96,106,100,104,100,100,103,100,102,95,101,99,110,96,112,76,75,108,108,107,97,112,97,107,100,98,117,105,88,95,120,99,114,94,103,127,123,103,102,109,115,103,105,98,99,100,98,108,91,99,113,121,92,91,112,93,89,100,108,95,109,117,106,112,111,99,103,105,117,103,109,114,119,103,118,105,98,101,99,111,110,113,94,90,106,100,103,123,100,106,102,104,99,104,104,100,93,107,98,108,105,101,96,125,104,110,104,93,95,100,112,108,91,107,100,100,116,99,99,102,112,106,116,111,105,103,100,98,106,108,108,110,110,111,113,104,104,110,96,107,102,100,101,88,110,102,105,103,113,104,97,109,100,103,107,95,112,103,109,106,100,103,100,100,99,110,110,114,112,102,114,104,103,120,100,109,96,99,112,102,94,91,104,101,92,103,102,94,101,106,101,101,113,108,107,110,101,95,108,103,107,106,99,112,99,100,101,113,91,108,105,112,107,104,110,106,94,117,112,109,105,105,107,104,99,110,115,102,105,87,108,113,103,107,105,105,112,104,98,110,107,114,104,103,114,105,103,101,97,104,112,105,107,94,105,126,115,101,87,100,98,101,98,106,101,105,111,110,101,105,106,96,99,102,103,109,96,79,105,101,105,117,100,95,105,95,101,108,104,108,101,99,104,94,100,113,110,95,99,100,113,108,102,102,94,116,95,107,110,102,108,102,100,106,103,124,99,112,92,112,109,110,100,99,100,100,107,106,114,103,88,94,94,99,90,90,106,103,102,107,102,103,108,114,86,104,118,117,99,104,99,100,113,101,117,109,106,98,116,116,98,109,98,116,104,99,94,114,111,106,93,106,104,107,108,117,102,102,97,109,110,105,104,96,116,109,103,106,109,96,106,98,106,102,102,114,114,105,116,107,113,107,114,86,104,109,107,103,98,97,96,117,113,107,104,98,100,96,106,92,140,111,113,92,102,104,98,112,100,103,102,115,98,108,88,108,104,92,107,97,113,91,95,99,102,107,100,111,131,107,112,94,90,95,104,95,97,106,119,94,104,105,101,121,102,109,97,106,101,113,104,105,102,94,103,97,107,99,112,102,87,96,94,98,107,104,102,97,106,104,101,109,94,115,113,91,124,106,101,106,104,98,96,102,104,103,104,95,98,98,95,97,99,108,98,97,98,110,103,113,111,90,100,111,93,101,108,106,105,79,108,112,99,107,89,100,96,109,97,103,98,102,109,104,103,96,100,107,102,103,94,105,102,65,98,103,83,105,98,81,102,106,100,95,91,96,114,119,100,102,93,105,105,95,99,101,99,106,115,95,108,98,106,96,108,97,101,102,100,103,82,94,106,99,100,100,113,97,103,113,97,109,118,113,105,95,102,99,102,97,107,100,113,116,102,113,100,90,122,108,111,100,96,102,98,68,104,98,106,115,106,107,99,85,101,110,106,104,113,95,98,99,102,107,103,112,100,99,103,95,109,99,97,103,103,101,99,84,105,105,100,105,92,118,107,100,105,111,99,115,104,105,99,116,107,102,102,106,116,111,114,91,110,112,103,103,104,108,99,91,98,106,100,99,112,103,97,101,83,84,113,95,96,101,101,103,108,108,95,111,104,106,89,112,111,97,121,100,108,94,101,102,100,109,106,107,99,108,116,105,103,107,108,98,101,113,103,104,106,98,108,105,91,105,101,105,96,117,110,129,108,102,107,101,105,95,101,100,95,114,103,109,98,98,106,103,99,108,98,110,109,121,96,105,101,101,94,102,105,88,101,101,79,128,109,110,102,109,106,86,115,107,99,105,103,108,105,99,103,120,99,112,115,111,95,106,105,100,101,103,98,96,111,94,98,111,98,106,102,110,106,95,95,102,103,83,94,105,109,102,111,95,101,94,101,98,104,106,110,83,105,102,117,106,113,75,101,112,101,109,109,109,95,125,114,100,94,104,105,108,101,89,112,114,108,99,109,102,115,91,119,98,99,100,100,123,104,108,97,104,107,95,105,110,110,108,112,102,100,94,129,99,107,115,98,109,100,99,106,98,87,108,108,97,90,101,110,105,119,94,95,99,104,107,107,112,111,96,95,101,98,103,105,97,97,106,104,102,106,100,101,97,105,100,100,97,112,120,106,106,104,87,102,113,91,119,106,112,115,116,103,106,95,97,102,99,98,98,108,95,99,102,106,104,110,107,109,98,122,109,104,101,92,100,108,105,95,99,104,90,102,109,99,109,106,111,99,93,119,104,113,109,100,105,95,116,91,106,98,98,105,102,102,106,95,101,129,97,117,95,95,104,103,104,104,110,106,98,96,104,92,109,88,105,101,103,97,103,101,100,102,104,101,105,112,120,107,108,119,108,114,103,96,95,104,107,106,109,95,98,104,101,114,98,107,104,114,102,105,106,103,106,102,103,109,100,116,109,91,109,96,113,106,98,116,75,102,107,95,100,98,89,114,103,107,102,96,109,94,103,109,106,106,121,109,107,108,106,98,104,101,120,111,99,98,121,109,108,125,110,113,104,101,110,106,94,99,111,100,104,97,103,95,92,111,98,110,115,100,100,97,121,107,113,108,108,105,98,105,94,97,106,100,103,115,79,113,109,86,104,99,102,120,107,107,101,93,83,111,108,93,100,111,92,107,119,96,99,102,99,88,108,99,111,105,107,93,106,88,106,104,101,104,103,112,110,115,121,94,105,110,116,91,103,93,108,111,100,106,99,120,99,114,95,107,98,101,99,107,105,102,113,103,100,113,107,103,101,93,102,107,101,100,101,107,106,96,108,99,109,112,118,107,112,106,87,108,101,113,107,106,96,86,108,116,108,119,108,88,107,87,103,102,91,101,106,105,109,112,118,106,88,103,97,106,106,110,111,107,108,108,103,114,108,107,110,98,99,121,108,110,114,100,105,120,121,113,104,101,97,96,91,105,108,119,101,114,99,103,109,98,111,109,98,111,101,101,98,105,103,99,106,92,110,102,109,109,109,113,107,110,107,107,94,102,101,98,97,105,107,94,115,98,91,108,91,106,100,101,106,114,101,103,112,109,120,87,105,89,103,104,118,108,108,103,109,105,94,107,99,103,97,89,106,112,101,101,104,110,113,106,108,103,107,105,106,99,113,106,109,106,101,85,94,103,112,99,79,96,99,113,112,97,112,108,109,98,121,102,108,103,105,106,104,104,90,106,117,112,97,109,106,99,106,101,105,107,100,115,105,101,109,99,102,110,114,95,102,90,99,112,99,104,101,105,102,110,105,95,107,116,91,105,102,102,102,105,95,111,109,106,104,101,102,103,97,109,110,106,107,93,114,95,102,97,99,109,105,105,109,105,109,119,102,100,89,103,94,100,106,115,103,98,92,104,104,104,107,107,85,109,105,99,99,113,106,105,104,108,110,97,112,113,105,106,96,106,99,95,105,106,104,97,109,102,112,103,105,99,102,91,94,108,111,97,109,96,109,104,105,108,105,95,104,108,88,103,112,104,108,94,104,108,108,104,97,103,123,109,108,106,99,111,98,105,99,87,105,103,101,105,106,97,97,101,105,98,97,108,103,92,102,136,100,107,106,111,92,90,97,95,92,108,99,98,98,101,108,107,107,115,112,98,112,104,106,117,107,110,109,109,100,116,101,109,110,108,121,104,98,94,111,104,119,99,92,115,77,108,109,94,130,101,110,108,111,109,103,98,104,110,109,96,113,96,113,106,94,103,111,103,101,112,107,118,111,103,114,125,106,107,111,83,108,103,118,114,102,114,100,92,104,112,102,119,97,86,90,104,99,91,106,111,113,123,111,99,108,114,92,113,100,105,106,110,111,103,113,111,94,102,105,106,90,100,95,97,91,99,75,92,110,105,105,98,94,88,89,95,99,100,102,103,107,102,106,95,108,96,98,77,106,115,95,97,109,118,108,98,108,106,88,94,100,114,79,94,129,105,96,113,87,112,103,92,105,91,103,104,91,109,111,115,97,101,105,109,105,108,97,98,104,98,106,110,94,102,109,97,104,107,96,102,96,97,119,104,106,101,98,112,109,105,102,99,105,120,98,94,110,99,110,110,114,101,101,101,99,126,102,105,106,98,102,112,102,88,102,106,96,99,102,109,102,104,110,97,103,87,95,107,102,97,100,117,112,107,96,98,106,102,102,99,100,96,113,108,102,106,108,95,116,101,96,104,100,97,99,96,90,98,112,108,98,84,115,100,104,91,101,112,95,95,100,106,95,114,100,113,84,105,123,103,104,101,101,110,99,106,93,100,98,116,104,96,101,109,100,97,93,104,105,88,99,106,112,98,107,103,108,97,102,97,97,116,110,99,100,99,109,107,106,97,103,102,95,107,97,108,104,103,112,104,106,104,106,99,122,113,111,109,98,111,97,94,84,103,83,115,110,101,104,99,104,109,93,108,110,104,96,113,103,127,107,105,98,102,109,105,89,69,113,111,114,109,106,104,97,100,117,100,101,119,114,111,91,112,96,111,96,99,101,113,89,101,107,92,91,104,111,97,109,110,109,100,87,104,97, +630.64185,128,90,89,104,112,107,109,97,96,113,95,102,107,88,100,105,104,112,100,107,111,106,125,100,105,86,93,96,99,121,104,106,100,105,123,102,109,97,99,109,89,94,100,99,113,107,95,105,99,116,106,109,93,93,99,96,94,99,103,92,113,110,106,91,111,94,100,109,99,101,117,91,91,119,97,109,99,96,95,97,102,98,111,90,101,109,127,99,99,98,109,113,102,96,99,101,108,95,96,100,112,107,107,101,100,104,107,106,96,97,122,105,114,105,110,97,112,104,103,108,108,112,108,100,110,110,100,101,104,105,97,116,111,91,110,98,101,99,95,102,93,115,96,103,99,99,102,78,97,105,138,101,74,87,97,109,105,97,102,106,107,102,105,102,104,109,109,113,96,102,94,111,116,119,105,104,112,87,105,109,99,110,95,79,82,96,100,112,111,79,103,113,107,95,97,95,117,103,107,109,95,102,97,104,96,122,116,107,99,101,104,105,122,101,87,119,107,114,104,98,101,100,94,99,127,115,107,121,111,116,105,93,117,108,120,98,100,110,96,67,109,103,117,104,95,98,103,92,102,122,106,87,96,114,100,92,107,97,91,108,96,114,100,101,96,100,117,113,99,95,106,117,100,103,94,113,105,101,102,114,112,94,107,114,108,106,101,93,97,117,98,107,107,108,110,97,111,110,97,101,111,104,105,102,107,101,97,109,103,118,91,110,104,107,112,103,110,110,92,99,106,90,102,100,112,99,98,107,116,104,109,100,105,103,97,120,110,101,98,93,99,109,103,101,102,67,105,107,96,101,105,103,109,99,110,104,114,110,104,105,100,100,102,109,101,96,99,94,103,110,105,98,110,108,101,102,103,105,105,112,117,108,108,80,105,109,103,114,105,113,108,92,105,105,112,92,98,105,106,105,92,94,109,105,114,105,101,102,119,106,82,92,115,82,100,63,98,95,111,95,93,90,98,116,111,94,105,87,97,104,103,100,103,102,99,109,101,102,97,105,101,101,96,108,105,101,91,95,110,99,94,97,116,109,109,111,100,96,108,80,100,98,116,110,107,110,106,104,102,97,91,113,102,101,107,96,97,100,108,115,101,98,97,106,122,99,106,101,113,105,114,102,99,112,109,104,104,120,102,102,99,112,112,99,107,102,99,106,95,88,114,105,109,109,102,111,119,105,106,100,105,103,109,104,100,108,88,114,103,103,101,108,92,109,98,103,66,107,113,115,101,101,96,92,117,101,108,102,98,103,114,96,104,99,109,96,120,98,95,89,103,100,95,102,89,99,114,116,113,107,91,108,104,110,104,109,101,112,121,102,107,101,109,109,113,97,94,106,98,104,96,108,100,98,88,96,101,100,102,115,101,93,109,94,93,105,100,99,111,96,107,101,113,103,114,96,103,99,99,88,107,104,103,98,100,92,115,110,109,104,103,107,92,108,106,92,104,94,107,105,105,94,96,105,106,95,99,105,94,103,104,107,104,94,105,112,107,99,102,118,103,108,105,106,101,108,110,109,101,110,112,111,100,97,92,91,104,103,104,89,108,88,118,71,107,101,107,100,109,109,108,113,100,113,104,102,104,100,95,91,103,92,107,113,100,102,109,92,97,102,89,102,103,100,96,100,107,101,110,95,111,96,111,105,96,106,110,100,108,109,96,107,109,108,105,99,106,103,103,112,103,100,103,108,94,101,104,116,106,102,106,105,106,103,102,98,102,104,102,114,99,109,101,105,99,73,97,100,99,101,108,100,98,115,103,106,106,98,104,106,113,103,114,116,100,111,110,107,99,102,106,100,87,117,108,106,99,106,99,97,89,97,95,105,108,103,105,112,99,103,107,105,106,113,105,113,111,102,102,104,104,102,99,108,109,100,111,106,113,107,109,96,110,97,113,105,102,104,128,106,110,100,94,92,97,108,98,99,105,103,97,90,99,98,102,109,102,97,108,103,86,93,100,95,107,103,98,101,109,97,100,110,91,97,91,108,113,112,94,73,114,114,106,106,112,96,98,100,115,118,88,100,106,97,96,110,105,117,98,105,82,102,110,93,101,91,97,107,97,104,109,94,97,102,111,108,96,99,100,109,105,108,113,107,74,104,100,108,102,111,112,109,106,112,100,94,107,94,110,100,103,104,94,105,110,100,100,116,112,108,100,100,106,112,103,109,109,105,98,118,109,105,95,113,102,105,97,107,91,109,94,121,90,105,91,106,109,99,104,94,99,102,108,75,98,101,95,108,102,106,104,97,110,110,103,94,103,106,89,107,97,98,96,95,116,107,116,99,105,73,103,111,102,102,96,109,104,113,107,100,108,115,101,115,110,106,108,100,116,107,101,102,100,99,125,92,107,111,99,110,103,95,102,84,104,99,114,109,107,116,104,97,107,107,98,100,101,108,108,115,103,113,101,106,103,96,99,96,103,100,99,105,100,103,81,113,98,113,98,92,106,99,90,114,106,99,104,101,116,96,111,111,110,106,87,107,102,89,115,110,98,94,112,113,115,128,95,103,113,101,97,108,109,96,101,108,95,98,102,94,102,104,120,108,101,96,85,105,109,96,94,104,107,102,86,96,102,91,107,98,99,106,104,107,102,97,102,103,95,102,109,89,121,106,107,108,115,103,102,114,94,103,102,111,102,112,109,98,107,112,117,112,99,88,101,112,116,96,113,109,108,103,104,102,111,97,104,104,103,87,100,110,104,103,98,107,109,99,105,101,116,108,107,107,101,99,105,108,117,99,103,102,91,102,101,103,107,111,74,98,102,102,82,111,109,93,94,112,105,106,103,104,92,91,108,97,106,112,112,98,107,103,108,100,107,109,117,102,100,97,87,98,90,98,106,96,104,94,95,104,114,99,100,115,116,111,95,105,106,97,104,106,102,108,98,94,103,103,105,103,91,109,109,94,99,83,101,110,109,103,103,114,91,103,107,104,124,84,108,106,104,110,98,104,96,104,103,103,106,120,107,107,84,90,95,104,96,102,103,103,108,101,99,111,102,101,103,103,112,105,107,111,105,113,108,104,118,76,100,121,97,100,102,106,103,113,113,98,105,101,113,104,103,103,111,113,101,99,104,104,102,111,106,106,98,90,94,101,102,103,111,94,103,98,105,101,100,94,111,110,98,101,97,106,102,110,106,106,104,103,101,106,102,100,108,109,103,102,113,102,108,95,95,106,100,93,103,103,112,124,91,95,116,101,99,95,102,111,108,104,95,94,96,105,107,104,114,111,106,113,106,101,116,115,103,103,102,109,114,99,115,100,98,100,92,106,108,90,116,92,116,91,98,98,108,114,106,104,105,111,107,95,94,113,108,103,109,108,98,102,99,119,104,101,103,106,112,108,98,104,101,102,104,115,106,106,104,108,107,102,104,102,91,110,93,96,103,105,107,107,94,94,108,103,108,95,106,110,102,98,103,93,96,100,105,105,103,101,104,100,112,90,109,108,99,102,120,110,104,102,100,108,108,95,106,106,112,98,99,111,107,108,98,98,105,97,101,102,111,71,104,111,107,117,105,103,100,104,100,109,100,103,110,104,125,91,104,102,106,112,110,112,106,102,94,103,97,105,99,100,97,116,106,102,118,106,106,102,99,108,106,103,109,113,101,98,111,103,96,104,102,96,121,105,108,98,112,103,96,102,91,102,117,90,100,102,104,116,91,94,113,103,102,101,106,101,97,92,117,111,105,101,106,108,106,109,87,102,109,84,93,96,103,108,101,87,93,101,103,106,101,98,114,100,111,102,109,99,104,103,102,122,107,113,105,105,100,88,102,113,94,116,93,110,105,103,106,141,98,95,103,109,95,112,104,100,103,102,101,112,107,102,94,116,92,104,104,115,107,81,99,102,102,102,113,95,101,102,103,111,112,99,106,111,103,93,110,105,106,104,92,98,102,110,102,100,124,96,110,106,99,113,110,106,111,111,102,101,99,102,109,89,102,89,106,121,101,97,112,92,113,105,113,113,106,92,110,113,75,91,110,101,98,114,112,114,105,102,103,108,102,102,96,106,101,105,109,97,93,108,102,106,94,99,91,103,97,102,98,94,93,100,106,97,105,105,113,100,80,105,94,120,101,99,96,96,117,105,103,94,100,106,109,132,94,105,116,99,103,109,110,99,108,109,105,94,105,116,114,100,99,105,99,75,111,104,88,102,98,103,102,103,108,105,101,112,109,113,115,122,107,100,109,95,113,100,87,102,97,109,103,106,101,106,102,95,102,101,91,117,101,101,102,104,106,124,99,98,101,106,106,109,106,109,109,111,104,93,107,110,102,110,100,105,112,95,123,99,96,110,110,108,105,101,114,102,106,112,99,103,114,107,106,103,101,91,104,98,105,89,79,101,107,103,110,91,102,106,100,100,87,113,108,97,96,99,116,104,101,94,100,93,104,99,86,106,91,105,106,99,113,106,112,98,98,121,104,100,99,94,111,95,103,103,110,102,103,108,100,99,90,83,105,90,106,96,97,99,104,117,87,99,101,96,117,101,99,74,98,98,100,106,106,89,102,105,94,123,107,105,99,110,96,93,109,101,111,111,95,107,92,112,104,102,108,94,104,95,83,108,95,89,81,103,116,117,105,99,101,103,104,83,102,101,105,101,105,96,107,103,97,98,94,105,116,108,101,108,99,107,100,108,103,89,87,96,106,107,96,109,96,99,102,110,101,127,104,108,88,106,95,109,106,100,91,94,95,98,105,109,117,105,109,108,107,106,140,105,120,107,106,88,102,108,100,99,115,96,86,102,100,112,85,116,107,111,100,100,105,107,111,122,102,101,106,113,83,102,92,95,105,111,98,110,94,116,85,114,91,102,98,109,93,87,105,103,98,109,105,100,98,95,105,115,110,99,120,100,105,84,101,80,98,104,108,109,99,99,103,96, +630.78296,102,93,99,101,94,102,104,105,78,114,105,98,105,99,96,115,104,108,90,92,121,102,91,102,104,100,102,113,96,97,93,108,106,83,112,102,102,99,75,118,106,109,104,94,102,114,104,108,108,112,115,103,108,96,102,109,93,100,106,104,89,104,95,93,106,98,104,91,108,98,106,117,109,114,101,102,92,110,109,100,104,98,108,108,96,96,110,100,105,102,103,108,105,112,105,101,106,112,113,104,115,116,101,102,113,109,100,105,102,104,111,97,126,99,102,108,84,101,106,103,102,99,102,100,104,101,128,104,107,104,96,118,100,90,98,93,112,82,106,104,99,104,89,102,99,100,92,95,101,103,99,94,103,103,95,106,103,114,117,94,100,84,106,110,111,98,99,106,108,111,114,93,108,108,95,111,111,98,108,113,110,105,112,102,108,104,101,102,108,100,106,116,102,101,101,109,99,117,97,109,111,104,112,103,104,94,100,102,99,114,99,116,116,112,101,123,91,101,116,111,91,108,105,103,107,90,109,117,117,101,95,105,99,98,111,108,106,97,102,113,105,108,126,88,90,110,99,103,100,95,99,106,98,101,103,103,94,101,95,75,106,103,104,119,99,101,106,98,98,95,103,94,103,106,107,100,114,110,107,95,95,110,103,114,107,100,108,96,106,95,94,118,109,106,110,117,109,107,102,103,110,109,107,109,110,102,111,101,99,111,99,110,100,103,105,108,111,104,103,100,104,106,107,103,101,95,115,86,110,114,106,94,95,102,113,101,111,105,105,108,106,105,95,108,101,111,94,93,114,99,108,105,103,99,89,117,108,102,112,81,91,101,96,105,103,109,101,105,100,104,115,101,113,99,104,105,105,114,99,113,113,97,100,104,105,114,100,95,109,89,105,87,102,96,92,100,108,95,109,117,102,114,101,113,107,104,105,104,109,104,101,99,102,105,103,87,109,95,124,89,101,94,102,108,110,110,116,100,104,114,99,109,103,97,113,107,101,101,98,111,103,116,104,101,98,100,96,101,109,110,109,97,112,112,103,91,103,104,110,103,95,101,100,107,99,98,106,91,96,84,89,103,99,103,102,98,97,101,103,107,118,109,108,110,105,92,107,110,97,91,114,125,113,110,105,103,114,102,102,116,111,116,94,117,110,118,101,95,94,109,100,94,104,102,117,97,104,99,102,98,99,98,101,104,82,99,101,108,126,121,96,103,100,106,103,99,97,91,111,103,93,104,103,104,130,98,103,115,99,115,105,99,106,95,95,106,106,106,89,103,114,111,99,117,91,95,111,117,93,93,98,97,119,108,101,104,94,90,110,111,93,102,107,112,104,106,110,103,110,123,101,108,102,101,110,113,106,99,110,105,105,100,103,103,101,108,94,101,106,100,100,96,102,91,106,108,102,100,108,102,109,102,110,109,104,97,105,117,83,102,105,97,101,100,110,114,92,93,105,105,111,106,107,98,102,95,96,110,101,107,98,106,97,104,97,99,105,121,109,110,116,98,106,109,102,98,111,104,102,99,102,97,111,104,95,111,102,111,110,103,100,101,112,103,94,105,103,96,110,103,108,128,105,111,96,100,107,107,102,96,107,91,103,107,116,107,105,117,102,96,113,119,107,100,106,100,101,105,100,100,107,96,106,107,101,104,99,99,114,124,103,109,99,101,88,107,111,108,81,98,101,107,102,94,98,102,105,104,101,102,101,101,102,99,110,99,103,105,120,96,105,112,92,116,105,105,96,96,99,97,98,97,109,113,104,109,106,96,99,98,105,106,105,107,101,118,106,110,101,122,102,101,107,116,104,100,112,98,103,119,108,96,105,105,106,105,101,111,86,112,120,96,101,100,111,113,104,120,103,77,101,116,110,104,106,98,101,103,100,100,108,100,101,104,101,103,64,86,102,126,107,104,110,95,87,110,104,109,117,102,112,103,107,106,99,107,91,104,108,107,99,97,104,120,71,104,109,116,113,142,100,108,107,115,103,114,112,100,104,102,107,102,105,117,110,101,102,111,120,99,105,113,107,112,113,101,111,101,99,118,106,102,99,108,108,100,103,108,114,104,96,96,114,98,68,93,101,101,108,102,80,105,105,112,117,86,102,96,111,106,98,109,105,105,105,100,99,101,94,110,112,97,96,112,96,103,115,110,98,108,106,90,115,112,108,112,93,103,117,107,105,118,112,106,107,104,107,113,100,102,105,101,110,102,100,102,109,100,114,106,95,94,98,111,108,99,101,108,102,101,91,99,108,112,108,102,100,94,94,99,111,104,104,113,111,103,103,121,87,103,96,108,113,81,95,101,114,119,99,133,104,110,100,103,109,102,105,88,104,101,120,115,108,99,108,107,102,120,102,83,100,98,109,131,121,97,102,114,122,71,109,103,124,88,108,95,101,121,99,104,113,105,95,115,114,121,99,105,109,97,105,111,108,109,98,107,117,114,96,98,122,116,109,109,112,103,99,99,109,109,103,114,103,96,104,103,141,100,106,106,83,102,99,123,109,121,100,98,115,98,97,104,105,105,100,96,95,89,106,97,107,112,115,113,110,114,98,107,121,102,107,120,124,93,106,125,100,99,115,97,91,97,102,109,99,96,103,116,115,107,120,103,124,109,114,97,92,115,95,99,109,97,107,102,113,117,99,96,105,95,105,116,107,114,105,84,107,115,113,105,105,110,117,113,109,101,112,100,96,105,104,99,110,115,108,124,106,96,116,113,109,115,111,108,109,104,106,105,99,120,107,94,83,108,100,109,104,114,92,113,111,103,104,106,102,109,97,109,84,101,91,102,98,108,110,114,106,98,107,94,107,110,106,99,107,108,108,105,102,111,106,104,117,98,102,121,116,109,102,99,94,114,92,80,102,104,98,99,101,118,98,99,98,121,101,102,99,108,108,104,113,103,103,105,111,105,101,97,107,109,102,109,104,102,97,117,115,87,108,75,109,110,100,83,103,97,127,99,116,108,94,98,105,95,100,109,113,101,107,103,83,98,108,110,109,105,108,109,113,80,117,96,113,110,119,100,111,101,104,115,105,103,109,108,114,89,99,88,105,114,109,115,92,106,103,105,108,98,94,105,117,112,111,108,104,103,108,117,78,96,104,89,118,121,108,102,108,109,104,108,95,101,112,107,113,95,108,117,105,109,100,89,107,112,105,98,128,102,110,115,112,101,98,117,104,99,95,91,105,106,109,105,111,105,113,108,115,111,113,105,102,116,106,121,119,112,99,98,110,97,105,99,107,113,106,99,109,107,94,97,110,107,94,99,103,103,96,105,109,102,97,108,101,111,104,111,102,111,111,107,108,104,87,108,108,114,104,108,106,109,81,108,116,111,102,110,111,97,104,97,104,105,80,100,105,117,98,97,101,88,115,98,98,113,94,111,99,107,117,110,93,98,110,112,97,99,107,103,98,101,111,105,91,95,102,103,96,104,119,102,105,108,107,100,96,87,96,116,120,109,111,112,95,103,108,105,111,110,104,98,107,104,99,115,102,104,101,107,105,99,128,104,102,83,103,103,110,101,110,114,106,114,101,96,113,109,109,94,106,108,103,88,101,96,104,113,111,120,109,105,102,100,78,102,89,103,109,102,106,106,94,111,114,103,107,109,109,113,84,108,100,115,106,104,105,118,110,113,109,118,98,101,107,103,109,114,112,119,104,96,107,109,103,102,95,99,108,107,109,101,93,113,100,101,105,101,113,107,103,102,113,94,105,101,99,93,102,111,111,98,108,110,108,96,103,122,128,103,107,103,106,99,99,110,102,105,98,98,118,116,116,100,91,110,99,116,106,95,101,97,81,101,110,102,102,101,110,96,97,112,106,104,107,107,100,103,84,96,108,118,88,117,106,110,117,111,106,115,101,102,101,110,102,96,105,109,108,111,114,96,107,96,96,107,100,95,111,97,110,95,98,89,109,110,105,113,108,114,102,100,105,119,96,109,100,99,113,95,104,103,109,108,110,91,93,106,99,95,106,113,103,105,111,94,108,100,109,103,88,112,117,106,106,100,103,102,103,105,102,98,95,105,113,120,101,96,103,105,108,104,95,114,103,108,105,100,105,102,113,113,97,102,107,108,115,108,104,109,115,104,107,106,108,116,107,107,120,101,103,99,103,95,106,107,99,94,94,104,115,91,102,109,100,94,108,108,116,105,100,98,114,106,106,106,97,117,107,112,93,110,106,98,105,107,107,89,98,107,104,103,97,91,108,95,104,92,102,109,86,99,92,104,113,111,100,104,105,102,95,102,106,105,102,106,120,96,107,107,96,102,110,99,102,106,101,94,95,101,108,121,101,117,104,115,100,100,102,104,107,111,121,91,100,94,101,95,104,105,89,96,105,99,113,103,98,98,88,117,118,100,111,102,116,109,106,102,96,101,118,98,101,101,104,105,101,98,103,117,107,101,113,106,103,106,102,98,96,111,112,122,104,109,120,105,98,107,113,110,113,113,99,101,96,109,97,105,102,100,107,109,103,107,100,113,84,106,105,122,96,79,94,94,95,106,111,102,109,100,103,105,103,107,103,111,107,102,95,99,119,100,105,125,109,103,98,93,117,98,121,107,114,104,99,108,107,71,94,101,108,102,101,105,108,110,115,95,120,115,99,104,110,123,106,105,103,102,102,108,100,91,96,77,102,115,102,95,64,95,118,101,104,115,107,106,108,96,115,107,92,122,138,108,105,103,108,121,98,135,100,103,95,115,97,92,94,110,102,106,124,104,112,104,115,121,104,108,105,124,112,102,105,99,103,111,103,110,97,111,103,106,103,105,101,105,104,107,104,110,97,108,113,99,105,108,124,103,112,123,102,93,94,113,109,93,102,107,92,104,75,105,105,105,108,105,108,100,96,100,101,96,94,97,100,81,102,94,105,99,121,109, +630.92407,117,107,93,108,96,111,103,79,107,86,99,101,101,98,123,101,102,101,105,100,95,92,107,105,96,102,90,107,92,96,104,108,93,104,100,98,108,98,106,108,117,108,103,83,103,109,119,110,101,110,109,105,136,96,102,95,92,125,100,93,100,109,111,104,103,120,106,110,103,97,96,105,98,103,94,109,97,92,105,105,113,113,95,103,101,102,106,106,100,100,99,113,108,99,110,90,110,97,65,108,94,98,96,94,104,102,101,105,104,100,111,99,111,94,100,107,105,110,107,104,106,112,114,113,106,122,110,100,115,105,108,107,107,113,104,103,108,96,107,104,105,96,101,109,105,101,119,105,103,104,99,112,103,96,97,107,106,101,108,95,90,99,109,102,110,95,101,105,95,100,104,109,102,102,109,107,102,103,83,95,101,91,104,109,116,101,99,91,103,112,101,107,106,102,90,89,114,105,100,100,84,100,90,107,96,115,91,94,109,96,93,117,98,120,117,99,99,111,98,105,106,102,115,70,107,101,102,112,115,111,110,103,110,100,106,103,98,109,96,102,116,86,111,93,98,102,115,102,97,101,95,104,104,96,102,106,108,110,102,100,102,91,103,96,108,115,104,108,103,97,108,106,117,94,101,108,99,125,93,93,103,106,111,105,107,101,97,106,103,104,105,104,98,101,99,108,103,108,85,128,99,103,104,104,100,109,102,85,94,92,100,118,99,108,107,118,100,98,109,99,108,110,101,109,109,94,104,101,112,108,121,103,106,103,108,110,125,95,98,95,102,94,108,105,96,121,111,103,101,111,107,109,99,96,103,105,108,106,125,103,105,103,108,99,94,108,107,107,100,106,107,112,111,96,95,120,110,95,110,94,95,115,106,111,107,105,102,104,105,99,120,103,104,101,100,105,109,101,104,114,103,80,97,107,115,98,115,113,110,102,87,96,88,103,106,95,101,107,113,102,96,114,109,101,98,83,103,99,109,112,83,111,108,109,108,97,93,104,101,102,108,105,97,98,108,102,105,92,107,109,107,102,107,106,102,110,102,128,95,91,100,105,106,93,102,111,109,98,97,102,113,111,111,98,99,101,104,106,105,107,104,106,108,98,118,103,118,101,95,104,120,114,98,109,98,99,102,97,105,99,104,107,112,121,101,105,89,120,100,101,112,108,96,94,110,106,104,107,104,118,95,93,114,97,103,107,103,104,100,92,97,115,104,96,103,97,97,97,109,106,110,87,99,108,98,109,109,93,104,114,105,112,114,106,107,100,99,95,105,107,110,104,103,103,109,106,114,94,113,107,94,105,107,120,99,106,102,107,103,89,95,109,100,104,99,104,108,79,107,102,114,102,110,113,120,112,92,105,96,106,100,105,106,105,113,102,93,105,95,101,99,113,103,108,98,111,95,95,98,119,96,96,123,99,110,110,93,113,111,104,102,102,109,107,100,110,87,103,104,92,110,104,103,92,119,95,93,108,95,114,101,106,103,109,108,99,96,108,123,104,103,107,114,98,108,103,111,106,112,97,121,113,121,105,107,103,105,103,105,79,114,119,108,92,105,117,94,116,101,108,113,116,100,114,110,105,101,114,99,90,107,100,103,119,105,105,103,102,101,115,107,95,102,111,84,102,103,100,96,109,95,104,106,95,108,96,92,111,117,93,119,108,103,117,107,94,100,95,108,100,117,98,120,97,104,92,110,103,114,107,110,96,103,111,99,103,115,104,107,104,106,100,103,107,93,94,99,116,113,134,103,106,118,102,108,96,104,104,90,101,105,99,107,104,99,104,99,103,90,109,110,102,108,106,100,70,98,107,104,111,105,110,93,100,106,85,100,109,107,103,125,94,100,105,108,103,122,100,116,104,100,113,115,112,106,112,108,112,109,114,101,102,115,100,97,94,101,96,107,112,107,106,100,96,107,95,101,103,94,113,103,99,102,111,103,101,103,110,91,100,112,105,103,112,105,98,101,101,111,108,102,101,102,105,104,104,114,110,89,108,105,119,113,107,95,100,109,96,114,118,108,112,99,88,104,94,106,103,103,110,100,118,99,97,106,99,95,109,106,99,96,109,96,119,99,107,116,117,94,118,102,103,104,105,103,110,103,94,106,106,106,113,108,101,94,119,97,99,111,117,99,97,111,102,88,105,121,112,96,109,107,113,103,102,91,110,113,106,90,110,101,108,102,114,109,100,110,101,92,110,104,100,99,109,94,101,109,78,98,105,91,102,106,102,103,100,97,97,105,96,110,94,106,108,101,108,94,103,111,106,111,110,103,103,106,102,106,102,109,97,117,116,101,133,102,112,98,120,106,105,99,109,104,98,99,97,117,92,94,95,116,95,106,109,117,91,123,107,109,114,109,106,107,110,117,109,116,112,92,97,108,108,115,105,103,144,108,104,99,103,100,106,102,99,101,127,92,105,101,105,101,105,102,100,107,97,100,94,96,98,96,90,99,98,109,86,101,90,117,119,94,112,113,101,94,112,102,103,109,94,69,101,110,112,108,107,106,109,111,102,99,113,109,98,120,109,110,102,112,108,121,112,111,100,95,107,121,104,124,113,103,113,99,77,117,112,116,97,99,110,108,91,96,117,101,114,108,102,99,109,114,98,109,105,117,99,106,114,97,84,114,96,106,86,99,110,109,109,112,111,95,108,128,105,98,106,111,100,118,92,107,105,107,106,101,106,103,104,104,100,91,118,115,127,111,113,109,104,100,105,105,111,113,98,112,110,109,104,105,105,121,117,104,106,112,109,101,102,110,100,102,112,112,106,110,111,108,101,105,105,106,99,101,109,108,108,111,126,102,96,117,101,98,103,95,87,110,106,87,112,98,110,106,113,106,91,97,102,91,112,112,108,98,112,115,88,117,110,98,97,107,106,108,103,111,104,99,113,111,106,110,111,123,116,99,101,100,108,112,108,102,99,104,130,104,105,88,102,106,101,101,121,101,109,104,102,111,113,101,116,101,113,101,98,105,110,113,100,99,103,104,108,112,109,106,92,105,115,110,97,105,104,104,101,106,113,101,106,106,105,103,116,116,107,113,104,97,119,102,107,108,105,97,105,108,97,100,100,107,109,106,112,121,89,109,95,113,107,100,105,94,116,99,102,111,105,96,94,120,109,117,110,101,103,114,101,116,110,102,116,99,103,102,105,102,112,100,100,108,99,103,105,102,112,103,98,98,99,106,112,101,103,111,101,99,108,119,110,103,100,119,108,87,110,107,100,108,106,111,102,110,105,104,112,108,99,111,92,109,112,101,91,104,103,94,101,93,94,116,104,100,99,85,102,113,110,108,98,104,81,99,91,107,107,104,103,103,97,101,106,102,104,113,103,102,105,103,109,120,104,104,107,109,102,107,116,98,106,108,102,110,99,106,105,105,107,103,102,108,93,95,115,109,103,104,98,108,105,109,101,107,99,101,105,106,104,100,102,101,103,105,105,104,90,110,105,98,105,109,107,98,101,109,92,94,108,106,91,102,101,117,65,101,113,107,100,67,103,98,102,111,100,105,109,112,92,106,99,102,106,93,104,102,98,111,99,102,99,107,117,109,119,121,110,98,98,103,99,117,80,100,113,107,107,124,102,116,102,111,102,97,123,93,105,108,106,94,107,102,101,108,113,112,98,104,96,101,105,121,81,104,87,106,103,94,101,107,93,120,108,103,110,100,133,99,102,96,107,103,93,114,105,101,107,107,94,107,113,106,100,102,103,101,107,108,109,95,111,115,100,100,85,108,106,105,104,100,102,107,103,109,98,90,114,107,116,105,98,97,114,99,105,97,111,104,97,96,114,114,114,102,106,119,107,99,102,102,85,98,104,104,107,106,124,104,106,117,106,105,107,109,108,108,121,106,115,111,107,121,103,103,100,101,96,112,117,104,106,91,109,108,96,108,103,102,100,109,79,117,105,106,101,113,101,104,98,101,103,103,128,107,117,105,103,95,107,109,108,105,105,109,99,108,102,101,82,117,111,89,115,106,117,101,100,125,105,102,100,106,119,107,108,109,106,102,117,109,100,104,105,109,94,99,97,103,106,99,104,103,105,105,103,96,98,97,101,113,99,109,94,102,111,108,99,106,114,86,97,106,105,103,102,111,107,101,108,97,106,103,97,110,112,115,114,88,91,124,104,103,100,102,102,94,87,112,104,109,115,97,105,112,104,113,106,99,113,100,108,100,108,112,100,109,105,103,90,99,79,110,98,108,92,94,103,103,110,99,105,103,100,110,86,122,106,99,107,103,103,92,103,101,90,114,96,109,100,104,91,93,104,105,106,113,106,104,92,101,101,98,113,111,108,105,98,95,105,108,106,108,101,104,110,117,109,106,102,99,96,104,95,107,101,104,96,109,109,100,89,108,100,107,111,108,108,91,102,108,104,106,99,97,92,97,95,98,109,98,100,100,100,103,110,98,104,113,110,102,103,101,106,117,106,98,103,84,104,106,101,115,114,103,119,99,108,100,107,105,97,102,110,105,105,106,103,106,103,95,103,91,112,92,127,95,112,103,114,96,113,108,96,108,106,107,99,103,98,105,98,109,103,93,103,108,94,100,108,108,108,87,105,102,98,102,106,111,102,107,96,97,106,102,110,107,109,98,102,101,116,105,106,120,105,107,106,121,109,105,109,106,109,116,114,102,113,98,114,95,99,136,101,99,101,104,109,106,99,95,100,111,110,93,94,87,106,102,104,108,103,104,102,93,96,99,103,105,90,112,96,90,106,107,96,102,102,102,96,97,106,95,110,109,111,108,96,93,112,107,105,93,103,115,102,99,92,99,110,101,121,104,112,106,99,91,99,104,113,106,102,100,103,120,116,106,97,98,112,92,108,104,100,109,106,100,104,107,108,77,108,104,105,99,92,102,100,95,109,99,109,108,81, +631.06525,101,111,88,117,114,105,118,100,91,130,116,107,92,87,110,113,112,102,98,106,107,100,108,113,90,100,109,110,122,106,96,97,110,99,122,127,101,97,105,112,106,91,104,108,105,117,99,116,98,105,111,102,116,110,106,102,99,114,107,87,115,104,87,83,108,98,102,100,105,78,110,113,103,110,113,106,103,89,110,99,108,100,95,104,102,101,103,110,94,97,100,104,106,96,104,103,102,99,95,93,110,91,98,112,101,100,79,111,122,110,99,96,106,101,108,99,102,106,104,91,97,113,111,93,95,104,106,91,107,100,103,99,105,104,98,110,96,93,101,92,99,91,99,111,96,97,110,109,108,90,96,98,102,94,123,97,99,80,99,84,112,106,94,100,102,101,122,97,96,110,98,100,109,99,97,100,125,101,105,106,99,110,104,110,104,88,93,87,109,109,98,109,99,89,100,104,95,99,108,88,102,102,102,75,107,110,105,97,104,104,88,104,76,105,97,96,95,95,109,107,88,106,109,90,102,129,113,112,105,105,108,103,102,99,103,110,105,112,109,109,90,129,110,91,84,102,100,105,105,105,99,110,100,93,95,110,102,100,111,100,99,108,105,104,91,108,109,102,115,96,104,103,106,105,106,99,102,95,104,98,115,107,104,104,106,97,90,101,102,107,101,111,112,107,103,108,113,95,96,83,105,114,87,109,98,121,113,94,103,108,98,108,105,96,103,86,110,115,109,93,99,95,101,98,95,99,96,95,100,112,106,105,105,101,107,100,112,96,107,99,106,107,107,100,108,100,102,120,111,90,101,109,110,100,95,101,100,105,103,99,97,100,104,101,96,104,102,101,104,93,106,100,102,104,97,108,104,133,101,105,116,106,100,106,103,102,106,102,103,101,111,93,87,107,109,106,101,119,106,100,103,100,100,89,110,94,101,107,102,113,87,88,97,116,96,103,75,101,113,95,110,96,95,91,124,97,99,88,98,103,106,99,104,106,95,97,102,104,98,101,125,100,94,106,93,110,102,102,105,106,108,100,95,111,106,100,69,92,90,108,106,99,110,99,104,101,115,101,101,109,99,102,104,93,101,99,91,112,116,107,99,103,112,93,79,95,106,117,110,98,104,119,104,99,87,110,115,97,93,109,106,101,118,102,95,101,104,99,114,100,101,109,96,106,97,110,114,109,107,106,106,100,99,107,98,124,104,100,106,101,99,107,91,91,114,94,103,104,87,101,100,104,97,91,111,113,72,102,100,98,98,100,100,97,84,108,99,99,96,113,107,105,95,111,100,97,117,109,105,97,112,88,101,112,107,85,106,87,109,104,100,103,105,103,106,109,90,106,105,105,108,106,102,88,110,105,118,98,106,93,103,102,104,111,99,89,100,106,112,121,104,100,110,107,122,90,111,105,99,116,107,85,93,94,121,106,105,104,105,111,103,103,100,123,107,98,111,101,102,100,102,111,102,107,99,96,97,103,114,99,100,122,106,98,102,106,116,119,117,99,103,104,114,104,96,113,92,94,113,94,108,110,99,103,101,103,104,106,92,122,108,105,109,86,109,105,90,103,104,111,101,99,96,103,111,98,109,109,101,78,117,96,108,96,105,103,100,112,107,96,105,98,110,106,87,93,91,99,101,98,113,102,85,108,109,92,105,91,97,103,107,105,101,118,100,105,114,106,134,97,98,98,107,102,116,127,99,99,94,100,107,99,104,96,101,114,99,97,103,99,110,105,96,112,89,107,83,109,101,101,100,105,102,108,96,101,106,114,92,109,104,103,114,107,108,95,105,111,108,95,102,99,103,105,113,105,103,100,99,100,104,101,99,87,80,102,104,104,114,91,112,96,116,106,118,95,93,107,117,100,115,110,106,104,115,110,99,94,109,101,104,107,101,96,113,98,99,111,96,100,94,94,105,97,107,100,101,97,105,79,99,103,106,121,94,98,95,106,100,100,104,107,104,115,108,94,101,114,106,110,98,114,102,99,101,111,122,96,102,103,97,105,98,100,99,99,90,121,96,110,97,95,113,115,104,96,99,103,106,99,98,114,126,105,97,90,93,104,93,95,111,108,115,107,101,113,98,109,109,103,102,103,99,98,80,106,100,100,90,99,104,106,99,105,86,99,99,91,100,99,101,109,99,95,97,93,98,95,104,97,102,105,104,103,100,95,121,102,106,100,107,105,106,105,104,111,102,98,110,105,99,94,112,121,102,110,96,100,99,93,100,102,94,105,93,94,111,98,98,107,101,104,104,81,98,97,96,96,96,105,96,92,100,115,104,100,105,101,101,103,97,105,101,105,96,96,102,103,92,90,111,96,104,96,103,102,94,96,101,91,107,119,103,105,101,91,121,113,112,121,97,117,106,115,114,112,108,104,106,110,112,123,101,106,110,105,112,103,109,105,100,103,100,107,105,94,112,106,101,92,105,109,100,115,96,106,76,88,92,64,87,111,84,95,113,106,114,104,83,113,103,104,98,114,99,104,108,136,118,105,102,99,103,103,99,111,104,104,101,91,104,110,112,104,106,100,96,108,89,120,103,104,111,84,110,96,111,106,102,99,103,119,108,93,98,102,100,99,105,97,113,103,101,102,103,98,107,100,104,102,112,102,109,104,94,111,116,107,103,104,118,101,104,97,122,117,111,112,110,98,107,90,105,109,97,106,119,123,102,108,107,97,98,104,100,109,114,105,105,105,102,97,112,120,99,110,99,109,102,91,110,122,110,115,107,98,100,109,108,95,103,110,111,121,106,110,103,102,109,103,107,99,101,99,113,112,99,104,96,109,94,105,128,99,116,97,107,109,109,104,114,131,100,100,97,108,120,108,102,115,108,112,101,99,106,105,93,102,111,94,112,105,106,110,110,120,111,117,97,114,90,119,103,111,111,108,107,104,94,120,108,110,112,75,111,106,103,104,98,106,104,104,104,100,102,114,110,99,87,106,106,116,95,108,114,104,104,128,98,113,113,107,101,94,100,107,103,115,93,86,107,86,109,109,120,95,109,111,85,102,99,91,95,96,102,102,105,110,105,102,98,104,103,100,98,97,97,96,98,103,111,111,107,112,82,103,119,105,113,115,100,106,105,96,105,87,96,101,106,102,96,99,93,110,109,110,91,102,114,101,108,100,108,104,107,100,104,97,103,99,99,98,97,97,108,106,83,97,109,105,103,97,89,108,113,100,123,109,92,103,102,102,107,99,109,99,106,106,116,99,108,105,100,101,104,101,103,90,104,101,111,100,92,109,107,111,99,115,106,103,102,131,114,113,102,102,103,113,101,108,98,92,116,107,112,113,106,109,111,102,102,105,105,113,100,109,101,96,102,90,100,98,98,115,103,112,110,111,102,102,98,107,97,104,109,109,98,105,112,108,103,92,107,96,107,102,103,113,118,99,96,120,103,109,101,107,96,102,115,106,113,88,108,110,98,105,115,107,110,113,94,90,102,104,108,119,111,108,109,104,106,110,98,94,107,97,102,102,108,98,115,87,102,108,113,101,109,96,94,98,108,104,98,106,98,116,100,111,101,106,92,122,100,94,99,99,97,99,111,100,115,103,102,100,99,116,98,107,108,105,106,91,98,104,116,102,107,98,107,95,97,101,108,98,98,129,102,107,103,99,101,109,112,90,100,109,104,117,108,112,100,110,104,103,101,118,120,112,96,106,103,125,103,116,111,106,97,105,105,97,107,96,91,99,107,95,99,108,102,99,102,107,98,101,103,98,111,101,104,91,107,105,101,109,103,102,115,105,95,124,104,97,78,116,102,100,103,98,106,101,105,98,107,104,104,104,112,107,103,109,111,111,107,104,100,104,91,107,102,104,100,115,104,103,107,117,110,110,94,98,95,110,109,105,104,116,109,94,102,98,100,105,112,98,92,100,99,106,103,115,99,102,99,112,104,96,102,94,98,109,138,105,104,116,104,113,106,106,105,99,101,103,103,127,99,104,106,107,85,91,109,109,101,107,109,114,90,104,99,107,99,103,107,110,121,104,98,92,100,103,107,103,106,103,91,115,106,96,114,106,85,90,104,100,109,104,107,109,101,106,108,100,112,104,89,91,97,104,102,72,114,96,96,113,112,110,94,94,110,100,107,103,105,105,97,117,94,101,104,106,98,93,102,106,115,105,112,116,119,112,94,94,113,106,113,97,105,117,99,110,113,101,112,106,110,103,106,118,104,105,115,121,98,103,90,100,104,95,96,112,106,101,101,95,106,102,104,112,103,95,95,109,112,107,106,105,101,96,103,119,89,111,94,106,123,112,97,109,106,99,108,96,104,113,91,116,94,98,104,113,106,104,103,105,104,97,102,106,103,104,107,99,107,97,104,106,103,110,109,100,104,116,103,111,112,114,113,104,97,99,104,98,109,107,103,90,100,110,87,106,90,98,118,115,99,117,108,116,103,102,118,110,100,76,106,102,99,113,104,111,95,103,114,111,100,105,99,98,101,106,94,85,103,111,102,96,110,100,102,104,96,101,100,113,104,102,96,106,110,113,97,92,110,92,77,103,109,113,102,109,103,108,100,96,100,112,123,93,95,105,103,107,107,112,106,103,112,107,100,104,100,115,103,114,111,106,98,95,112,117,110,102,96,106,114,114,108,106,95,92,108,93,94,92,107,96,106,106,107,90,100,110,107,106,104,102,96,88,99,106,105,97,99,111,100,92,104,107,122,117,96,119,106,114,111,116,109,98,116,79,103,101,99,111,108,104,97,79,108,113,117,102,101,103,111,101,93,106,106,111,98,114,116,119,103,100,96,91,99,102,113,98,93,102,104,121,100,115,85,109,98,98,115,121,105,100,93,108,91,100,101,110,110,95,75,115,94,105,117,97,107,104,99,115,118,93,98,105,115,90,111,99,105,103,98,90,107,97,112,115, +631.20636,100,115,101,110,91,101,104,89,104,102,104,96,112,105,104,120,102,117,96,106,104,97,104,111,97,106,101,96,107,109,111,122,100,90,101,103,99,82,101,103,84,114,91,111,100,124,117,130,93,103,99,112,102,106,95,100,98,100,102,88,95,95,96,95,115,113,90,94,97,105,113,100,99,107,99,100,112,106,105,95,101,101,104,107,117,95,107,94,97,106,99,108,101,103,106,107,106,107,103,98,90,97,121,103,102,90,111,108,99,97,97,99,115,107,114,96,100,106,112,90,107,106,111,112,91,81,114,98,123,117,106,97,108,100,117,92,105,110,85,107,92,98,96,119,101,100,120,128,100,105,100,81,104,95,103,108,99,109,106,108,102,108,108,106,107,105,108,100,109,105,93,97,101,95,104,108,99,105,112,99,99,104,101,105,107,108,85,100,93,102,113,104,107,109,110,100,105,107,106,110,109,113,107,84,110,108,109,107,113,111,100,101,102,102,108,104,88,109,103,111,110,106,104,102,87,107,105,107,112,104,110,97,102,110,101,112,107,112,102,103,105,101,103,107,102,102,100,105,99,103,97,97,101,102,91,110,89,106,103,109,95,108,108,117,95,104,102,105,105,104,101,107,80,111,109,106,111,103,85,109,96,99,111,97,95,99,101,99,111,106,87,111,102,103,117,109,101,82,112,114,112,112,114,105,103,99,102,109,113,105,91,102,116,109,100,98,115,109,100,104,113,101,97,101,108,103,105,104,109,115,108,117,109,103,98,102,125,107,99,116,115,89,102,108,105,100,104,104,112,111,101,103,100,109,97,103,97,99,111,105,96,83,109,93,106,105,107,109,93,107,103,109,107,103,112,109,109,107,105,123,108,100,94,99,89,108,98,103,111,113,118,101,82,104,106,105,101,108,111,106,108,87,105,93,107,98,101,99,114,109,97,103,109,100,102,89,104,100,104,105,113,106,91,99,98,104,104,115,100,94,108,121,95,101,102,112,104,106,113,103,102,100,108,90,98,98,105,97,104,108,103,106,109,103,114,106,101,99,108,99,95,108,110,116,103,96,100,113,95,129,100,115,108,99,100,111,98,114,95,96,122,109,109,109,95,93,114,104,115,101,99,99,110,111,99,104,87,103,111,93,105,105,106,109,104,120,100,98,113,105,114,98,107,99,113,106,111,105,114,102,112,97,109,91,112,108,115,105,117,110,103,108,98,101,99,96,104,104,107,113,114,103,89,114,109,100,109,105,109,117,96,95,110,121,104,107,113,105,108,92,101,110,96,100,101,121,109,113,108,108,106,101,116,115,101,115,99,104,108,100,103,104,98,98,108,114,121,99,105,101,103,102,103,112,103,114,99,104,121,106,110,97,114,104,99,109,100,111,115,99,92,109,111,98,98,101,103,104,105,100,106,74,116,107,111,102,103,105,105,110,99,103,112,113,102,98,103,108,117,107,106,98,116,98,100,104,84,98,104,105,113,114,107,132,106,108,109,106,109,123,116,100,106,110,105,108,108,98,102,101,108,97,109,109,109,108,97,100,117,107,102,108,106,101,99,101,90,114,97,102,100,106,113,111,91,85,104,103,97,110,101,105,112,120,120,107,120,110,103,105,109,100,98,109,109,134,116,106,105,89,104,129,102,108,102,97,99,101,100,103,109,98,112,117,99,99,103,100,117,106,112,114,94,107,113,99,121,105,110,108,103,98,99,104,104,96,105,110,105,106,106,106,115,119,103,99,108,94,100,103,107,110,98,90,101,107,99,97,106,112,104,113,112,106,111,106,108,101,102,107,98,107,110,107,114,101,103,112,110,99,100,99,124,94,107,128,102,96,101,105,105,98,95,108,103,85,113,102,105,105,94,104,104,115,101,105,109,121,115,106,109,113,105,101,100,106,116,102,97,95,103,94,106,111,105,104,103,108,111,111,109,96,102,108,95,104,109,106,100,105,105,95,116,94,108,102,100,100,111,103,102,105,94,87,102,102,106,94,88,98,117,105,100,100,101,94,101,114,97,106,102,114,109,137,109,122,94,104,116,99,101,122,107,107,99,121,105,100,113,109,98,101,106,112,100,104,97,108,105,117,98,105,114,113,120,102,101,98,106,107,106,109,110,112,94,105,108,97,104,96,113,103,97,103,102,104,117,102,109,108,92,119,115,105,104,109,92,118,110,118,111,110,110,99,108,102,110,97,99,105,98,109,99,119,102,92,116,98,111,111,108,102,110,109,101,93,100,93,104,110,103,102,114,110,97,94,110,108,109,103,100,94,84,96,102,98,105,105,91,111,99,106,112,120,106,85,97,106,107,105,109,77,109,86,100,103,113,109,97,107,123,108,117,92,92,97,97,108,116,107,107,117,108,115,115,116,117,115,106,115,130,154,129,100,104,107,117,106,100,108,113,103,118,121,88,115,103,96,103,101,108,120,102,123,119,113,89,98,81,105,117,102,108,91,94,104,96,98,110,109,101,92,105,93,102,106,95,103,113,110,97,96,107,102,106,105,121,108,102,99,104,108,104,103,99,116,98,107,102,94,97,107,96,90,107,100,109,105,112,108,99,106,108,101,97,106,95,100,103,106,102,100,94,101,97,112,103,103,104,75,108,110,109,108,112,104,103,119,99,108,110,113,102,104,101,117,105,124,110,108,96,91,112,101,117,106,98,94,103,102,97,85,101,113,101,107,116,102,110,99,107,115,101,102,108,91,112,114,105,96,111,109,100,109,102,98,100,102,107,100,101,118,103,111,108,104,99,117,100,82,90,111,104,98,103,109,98,115,109,113,107,107,92,108,117,114,108,97,113,113,103,100,106,85,107,110,115,114,103,106,114,99,87,119,94,104,104,106,111,96,107,95,105,111,109,113,121,111,118,104,105,115,114,124,98,106,104,102,109,115,107,102,113,103,112,104,110,102,104,122,99,107,105,115,102,100,97,97,102,97,103,109,103,105,110,103,113,100,100,106,103,104,101,75,112,111,120,102,128,107,117,95,115,109,110,98,113,98,98,107,116,103,98,127,102,108,109,121,109,112,107,108,108,86,101,103,108,106,107,102,99,105,100,111,98,108,109,102,105,98,110,106,97,104,109,96,105,108,106,100,101,111,96,102,116,100,98,102,108,97,98,95,101,108,111,96,100,95,91,99,101,100,110,115,106,106,94,97,107,92,105,108,98,100,88,109,112,105,118,103,99,104,93,99,120,103,106,95,109,102,101,103,92,100,101,102,103,107,113,103,94,100,109,122,117,99,96,112,104,110,89,83,102,104,113,105,85,105,108,94,102,104,99,102,112,95,105,125,98,98,104,119,105,108,110,103,105,99,108,83,105,109,123,96,99,127,112,109,103,110,99,112,101,113,101,103,102,110,95,110,118,104,101,111,93,108,100,107,109,104,108,109,104,97,107,102,114,111,105,111,101,100,105,104,102,98,106,105,107,100,100,113,109,91,79,105,109,96,100,100,99,107,108,95,99,103,113,108,91,96,116,113,77,101,119,103,108,112,121,106,109,105,103,119,107,94,102,97,101,103,102,110,111,102,113,97,98,92,93,102,113,98,110,106,109,99,100,100,112,105,91,100,98,108,112,98,98,102,110,95,95,106,111,101,103,102,105,101,109,111,102,112,107,110,103,112,100,74,101,102,106,99,106,116,113,116,108,107,115,107,100,118,113,107,107,109,97,104,111,100,110,111,95,116,108,113,112,107,99,113,110,100,111,109,117,108,114,98,105,106,98,98,92,106,100,110,98,106,113,74,83,103,101,103,105,96,100,110,104,91,96,108,87,100,102,107,110,99,104,103,99,105,106,96,89,107,99,102,140,114,94,112,107,96,83,106,124,99,101,101,116,106,121,93,102,98,127,100,98,101,104,105,104,95,99,106,111,99,115,105,106,98,102,109,110,95,104,102,116,90,117,101,102,86,105,109,108,101,103,92,101,105,100,105,101,113,100,98,100,99,105,111,125,113,109,112,97,90,110,109,106,100,107,117,106,96,102,110,111,89,108,107,104,102,102,120,109,101,107,99,108,101,108,97,100,109,104,107,73,92,107,104,113,98,104,104,104,99,116,106,102,104,99,112,118,76,101,122,98,105,111,95,104,104,103,95,114,96,104,106,102,103,90,99,101,108,107,99,103,113,106,105,94,95,102,110,100,105,112,100,99,111,104,102,112,112,105,115,102,106,114,110,109,101,107,94,104,110,102,110,107,102,110,109,105,107,112,104,112,102,94,101,109,105,96,100,105,112,98,96,96,97,111,120,101,105,95,103,93,102,101,111,108,106,91,117,103,104,105,101,105,99,123,102,112,100,100,110,106,108,98,103,105,101,110,107,108,109,109,103,104,108,121,98,81,89,95,107,98,102,101,108,98,103,111,94,103,102,106,112,100,109,111,111,95,113,102,101,107,99,108,106,110,106,102,98,105,103,96,113,109,113,99,101,117,98,99,100,102,115,99,109,97,121,102,100,115,99,110,91,97,96,83,112,106,108,111,93,103,102,104,99,108,107,99,99,114,117,99,102,98,95,105,100,113,112,105,103,108,103,108,104,114,95,124,102,103,76,98,92,94,109,105,99,104,141,109,106,96,99,103,98,124,116,102,102,111,103,100,98,104,104,112,111,120,109,92,100,115,97,87,99,105,101,105,95,97,103,105,96,107,92,87,105,117,107,107,110,113,90,118,113,102,110,105,103,99,104,117,71,103,109,108,81,104,101,99,113,104,96,111,109,117,101,117,102,97,106,115,95,101,110,98,71,100,103,96,111,92,86,108,94,103,101,100,103,135,109,106,106,98,115,95,88,99,105,110,103,94,109,99,107,99,97,112,103,85,102,102,106,113,91,113,102,101,90,106,83,103,101,111,97,94,98,108,108,120,116,106,95, +631.34747,109,110,113,107,105,99,106,108,86,122,87,94,104,127,107,117,98,109,106,98,98,95,96,93,104,124,109,100,109,100,116,107,95,96,99,105,103,106,109,134,89,107,116,92,98,109,97,120,102,111,100,100,114,104,102,86,108,110,127,106,104,113,96,107,108,113,101,109,101,100,97,106,114,108,102,113,106,98,116,103,107,88,98,112,101,103,110,94,101,103,105,96,108,94,103,99,99,98,97,111,99,92,97,98,97,115,104,98,108,88,96,102,108,102,103,99,104,101,104,102,97,107,96,118,100,111,119,96,103,112,107,116,115,105,100,97,106,105,103,109,102,109,98,103,95,95,112,125,92,99,109,107,113,105,104,103,118,97,108,108,88,118,115,102,99,97,107,102,94,106,107,107,101,108,118,116,93,109,113,99,100,97,106,108,96,108,96,98,98,92,105,109,106,96,110,106,95,99,102,102,95,95,98,116,92,93,107,108,110,111,108,98,89,98,101,96,107,102,101,108,109,96,93,109,104,108,99,99,107,100,104,112,100,96,110,115,100,114,107,96,96,106,99,104,114,108,111,110,105,104,103,99,111,112,112,111,106,116,94,101,92,103,99,100,94,101,102,94,104,102,100,96,104,101,106,106,94,104,103,104,105,107,104,85,115,108,110,103,99,103,105,101,110,116,114,119,109,112,102,107,103,105,105,110,97,100,102,110,98,125,101,111,112,100,110,111,107,99,104,106,103,102,102,88,100,111,101,105,113,101,110,108,107,106,106,109,117,95,99,106,106,101,97,90,102,111,110,108,94,111,104,90,106,102,99,105,108,108,100,114,104,103,93,103,106,104,97,105,106,112,102,104,113,103,107,108,111,102,113,104,110,109,123,95,109,102,105,103,108,98,105,88,100,98,89,101,98,103,112,115,116,110,107,101,113,105,94,110,97,109,101,100,106,116,109,108,106,95,111,93,101,101,111,105,113,104,104,108,104,111,93,111,104,103,105,90,105,110,107,103,114,99,102,117,95,101,113,109,103,102,106,106,113,109,106,98,102,103,105,93,110,109,123,114,117,104,99,94,106,103,95,106,109,105,107,100,88,113,110,120,96,110,105,107,100,86,109,115,99,92,112,117,102,104,109,96,100,102,104,75,114,96,100,102,104,112,97,109,111,91,124,106,109,121,100,113,117,95,105,101,116,112,117,99,121,96,118,105,109,106,106,111,108,94,102,110,100,114,111,96,102,106,102,109,110,88,104,111,89,110,120,110,117,98,116,123,122,120,102,110,107,110,122,109,101,108,113,109,111,94,100,109,98,91,102,93,115,100,109,102,107,106,105,100,101,101,102,102,101,99,115,111,111,105,113,113,97,91,119,108,118,107,111,96,99,96,97,103,104,115,98,99,107,103,116,86,109,97,105,95,114,103,112,99,118,100,110,98,97,109,109,99,100,111,94,97,102,97,103,104,102,104,109,104,99,99,92,84,104,103,105,106,107,105,118,90,114,97,108,90,115,107,109,117,100,107,112,96,109,102,106,102,114,114,84,86,101,112,128,103,104,101,94,100,93,103,97,93,95,99,111,120,107,140,103,105,108,108,97,95,114,106,107,97,116,106,117,97,99,99,99,104,102,98,94,96,104,108,90,100,101,96,108,114,102,106,106,103,96,110,118,111,126,98,99,104,115,98,106,107,91,94,109,101,107,97,100,112,89,100,117,113,100,99,91,102,107,103,107,106,105,99,93,108,109,110,97,109,101,108,118,103,97,102,108,102,101,100,108,71,101,107,109,101,106,120,107,97,104,112,105,108,100,117,107,107,96,95,111,112,96,98,99,109,114,76,114,106,110,116,115,105,111,88,110,103,118,103,111,98,104,104,113,105,108,101,110,91,109,114,102,105,116,107,105,117,114,109,107,117,108,97,112,106,99,109,97,96,102,92,110,87,110,106,107,98,100,104,99,103,109,94,105,95,108,107,110,105,104,103,111,105,100,103,103,105,113,109,101,100,106,105,119,117,116,103,119,125,117,114,111,118,121,117,103,95,97,120,103,116,113,112,103,104,114,98,103,103,115,97,111,107,103,95,94,110,103,88,96,109,104,114,109,107,91,105,106,106,96,107,107,97,110,116,101,106,108,104,113,104,100,98,107,105,97,97,120,98,107,97,108,98,109,100,103,118,104,94,111,118,111,111,99,111,113,101,93,112,80,107,96,115,110,91,95,112,120,103,106,110,110,112,102,100,81,102,110,103,102,100,85,105,112,118,84,106,98,99,95,100,114,101,103,103,110,104,105,113,106,108,101,114,93,103,98,117,90,100,109,98,100,111,102,110,117,106,106,101,103,94,95,95,115,104,107,93,112,114,109,110,100,111,104,100,106,117,112,105,106,103,116,137,112,99,97,106,100,108,115,108,104,108,102,109,104,107,111,104,109,102,103,95,110,104,100,97,101,99,104,102,102,89,91,105,103,107,104,85,85,105,105,125,106,92,99,106,105,92,116,106,107,96,106,112,99,102,108,136,109,100,103,111,104,100,112,92,101,117,98,105,95,102,98,106,108,113,105,101,103,104,132,110,109,92,99,114,112,110,106,108,106,109,95,108,94,99,113,116,102,105,112,112,110,99,103,114,113,107,99,105,104,104,99,94,101,116,105,109,103,106,102,117,108,108,101,105,113,104,112,96,102,103,79,97,94,114,115,107,109,118,105,100,104,112,91,119,109,95,100,106,105,113,100,109,107,105,101,109,99,101,106,99,117,107,109,106,115,105,106,76,96,110,106,107,88,102,108,101,113,124,132,100,97,105,82,102,118,116,103,111,104,100,126,95,95,97,107,109,102,111,110,113,109,99,108,105,87,97,97,107,109,100,98,111,95,110,117,106,109,110,100,116,108,113,110,104,100,105,93,107,109,103,114,101,107,107,105,102,127,109,100,108,97,104,106,102,105,107,100,105,110,104,94,99,96,96,97,86,101,99,100,97,106,109,108,106,103,101,113,105,110,106,111,99,109,102,108,107,98,97,97,84,107,111,97,89,106,106,93,103,98,113,97,108,112,107,105,110,119,110,96,115,100,106,109,105,93,104,109,82,111,111,110,101,114,83,115,104,109,113,107,94,110,105,102,95,111,117,113,102,101,110,108,115,110,111,95,94,98,106,86,121,107,109,102,95,108,99,118,104,108,115,109,110,109,119,102,108,105,99,97,120,95,112,102,106,96,102,92,104,102,98,113,109,111,112,97,91,107,96,104,98,112,117,105,98,94,106,104,98,113,102,107,86,94,107,100,99,103,103,116,85,99,102,97,107,114,101,111,92,109,101,99,110,101,106,97,105,99,96,99,105,99,106,67,102,119,99,94,83,105,98,91,102,107,113,107,91,108,103,105,88,109,121,110,111,117,108,68,94,99,102,107,120,94,98,112,102,90,106,133,102,97,101,98,100,100,96,94,105,107,108,118,104,89,105,101,110,112,100,101,114,95,105,98,110,115,112,107,97,100,113,100,101,112,102,101,93,105,101,100,109,96,102,106,100,107,102,98,95,103,103,108,114,99,92,111,100,99,109,92,86,101,98,106,114,109,101,116,105,91,114,97,101,107,97,104,105,96,106,103,113,107,113,112,100,97,98,110,99,91,102,116,107,94,117,122,106,105,118,95,100,108,100,98,100,100,110,99,102,106,104,95,105,102,95,105,114,97,105,102,73,107,109,98,102,108,98,109,102,109,102,107,94,109,121,96,131,113,97,110,95,107,83,115,100,94,106,103,103,114,90,105,96,92,98,109,100,107,108,103,106,89,108,117,92,113,116,98,104,114,102,105,101,109,113,111,104,97,99,88,107,109,96,113,113,115,95,86,108,99,109,96,106,106,110,107,109,96,98,105,94,93,107,109,109,107,85,96,112,100,96,106,106,103,88,99,99,100,98,113,106,106,94,111,102,103,108,103,92,107,103,100,108,91,111,105,86,98,102,108,106,102,100,110,104,128,112,112,98,109,117,107,104,108,101,95,100,104,109,113,97,91,103,100,108,113,112,102,109,103,120,112,95,106,100,101,121,109,113,104,106,106,95,88,107,115,99,108,110,95,116,106,101,103,109,101,91,101,115,83,103,95,105,96,112,82,101,94,107,100,117,116,98,97,111,102,107,97,96,91,96,97,103,111,109,109,101,109,91,102,107,101,113,93,101,85,124,96,108,124,102,94,79,102,108,121,101,102,98,112,99,95,107,103,101,111,102,107,98,104,104,106,104,103,94,108,103,95,108,104,97,113,100,102,107,102,101,91,109,103,96,100,113,107,88,107,107,116,105,99,116,105,114,110,101,122,101,103,107,88,109,96,94,105,105,106,96,110,105,95,102,109,110,98,102,117,103,98,97,103,100,100,104,95,114,109,110,110,99,103,103,117,110,99,110,93,108,102,98,107,109,101,98,105,98,97,105,121,107,95,118,102,106,99,112,110,92,115,100,97,99,102,110,103,105,100,104,86,107,108,91,98,108,106,113,112,107,107,81,95,97,78,91,113,103,105,103,102,99,102,104,109,113,101,96,111,104,110,113,99,105,102,113,99,103,121,111,94,113,99,89,92,114,115,113,113,103,102,114,99,105,101,100,104,117,107,114,98,100,111,99,116,101,103,109,106,106,113,108,93,96,105,98,116,108,102,98,104,98,106,100,94,100,88,98,104,106,87,108,95,112,115,115,115,91,108,111,109,99,106,100,95,97,103,100,110,112,102,106,111,77,102,97,96,106,105,105,104,99,89,105,103,100,105,87,75,102,105,99,117,110,106,100,101,106,109,108,110,94,99,92,103,116,104,106,108,117,113,106,98,107,112,117,105,112,97,108,108,98,99,111,106,98,79,103,106,109,105,96,90,106,98,96,108,108,103,95,103,108, +631.48865,99,98,98,96,100,116,129,100,98,111,97,97,95,83,95,102,101,96,109,112,90,101,112,101,98,113,102,98,109,109,107,109,105,99,114,108,104,92,102,102,90,102,105,102,100,102,101,105,101,81,101,103,88,102,95,103,109,115,118,110,96,94,99,107,100,107,103,86,110,92,109,102,100,105,114,105,111,97,115,97,95,98,117,82,99,97,85,134,94,103,102,107,110,99,98,110,113,103,119,106,101,109,104,103,96,97,105,103,108,105,99,94,106,109,104,101,111,100,102,109,92,105,103,100,112,93,111,112,121,91,96,103,112,100,106,119,100,99,114,105,90,102,94,113,103,100,113,98,101,89,99,93,119,105,105,94,106,110,105,113,89,80,92,95,115,107,104,83,106,95,110,98,101,91,112,101,97,98,109,95,94,92,96,95,108,96,99,109,112,105,101,98,118,109,98,104,103,102,104,93,112,114,95,111,95,99,113,102,113,121,104,110,106,62,105,109,119,140,105,113,108,100,101,112,109,101,103,98,113,91,107,95,85,120,95,111,102,101,108,91,109,103,98,102,103,101,101,96,115,100,103,101,102,111,103,109,95,110,109,106,107,105,100,100,95,104,117,111,99,101,102,107,102,107,112,109,103,118,111,86,102,111,97,103,101,114,110,109,92,98,104,99,120,93,113,109,105,101,98,104,95,103,98,104,100,113,108,105,102,108,100,113,94,108,94,110,106,104,106,109,106,103,107,99,101,105,86,99,121,108,130,110,109,112,95,109,112,97,99,101,94,91,95,98,98,99,103,101,121,100,115,114,111,108,106,101,106,103,105,110,112,109,95,114,108,105,100,95,96,103,104,100,100,103,81,128,98,107,115,99,112,110,109,120,95,93,88,98,101,94,106,99,101,94,106,101,98,99,104,121,114,110,108,105,97,108,117,102,104,100,96,98,105,105,98,99,101,102,110,113,104,103,90,87,91,82,99,110,107,110,101,105,98,104,98,98,106,116,100,105,102,105,106,104,107,107,86,105,83,104,104,107,106,113,98,106,102,102,109,109,105,97,104,107,107,98,106,94,99,103,111,104,107,113,98,110,107,99,124,99,99,107,104,106,111,100,106,99,97,100,103,102,98,105,95,101,98,112,92,107,92,107,117,101,113,105,94,99,96,110,85,108,94,110,108,107,101,104,102,103,110,100,116,121,116,117,106,99,107,104,115,102,111,108,111,108,113,113,108,110,109,107,108,102,115,106,98,94,109,100,103,112,109,115,102,102,109,84,97,107,109,110,102,96,99,105,112,100,115,105,91,112,101,79,101,109,104,99,104,112,93,99,113,102,93,98,107,111,103,101,102,110,98,112,99,113,100,105,111,110,94,120,104,98,109,102,107,110,92,107,107,101,109,98,126,105,109,104,103,103,105,119,96,107,110,108,95,106,105,110,104,104,114,99,97,115,92,112,104,111,108,104,111,105,101,78,101,109,105,117,112,121,110,112,104,106,108,107,99,110,114,102,90,107,97,106,101,101,105,105,103,110,102,111,103,105,95,101,112,97,119,114,83,101,100,103,107,105,120,104,104,121,104,103,112,102,109,100,102,96,101,108,110,114,109,108,112,106,106,91,114,97,105,95,92,94,110,111,108,111,98,104,114,95,101,107,107,123,109,116,110,116,98,109,110,99,108,94,112,99,109,115,105,114,95,104,109,107,98,110,109,97,113,110,108,99,101,120,108,96,105,107,100,106,95,128,101,116,93,108,108,107,105,102,117,107,107,97,105,93,110,107,106,94,119,119,111,99,105,105,124,111,112,108,121,106,103,109,108,101,95,100,105,105,107,107,117,102,106,111,129,98,100,108,116,104,100,111,106,99,94,103,108,117,121,84,112,102,92,104,105,93,119,96,111,98,108,102,100,116,97,112,113,115,112,94,109,99,122,109,106,88,110,112,103,104,98,117,105,105,107,103,96,71,96,106,112,106,116,99,105,106,101,104,110,105,111,103,109,106,98,109,100,96,112,112,108,118,109,109,116,104,101,106,106,91,102,119,106,102,98,107,114,118,112,108,93,112,99,100,96,100,112,91,104,105,100,108,97,100,104,113,94,114,96,90,99,104,104,108,105,116,113,104,102,105,109,106,102,113,94,98,107,109,105,101,110,97,94,115,97,102,99,100,103,100,102,114,109,118,98,114,97,104,109,108,87,95,104,96,96,116,99,103,98,98,107,110,101,104,103,113,98,105,104,100,102,99,109,103,125,101,100,98,103,97,108,115,109,107,100,98,91,84,107,117,102,108,95,96,95,103,105,104,101,92,112,108,106,92,98,93,98,96,107,102,113,97,117,100,111,114,112,110,107,101,108,109,96,96,113,107,94,110,108,107,118,104,101,93,115,99,111,124,108,106,106,111,103,99,92,111,98,98,109,105,103,108,95,106,100,108,97,107,113,95,105,111,109,104,110,106,107,108,93,103,105,105,124,98,107,116,110,113,101,109,106,98,99,105,112,104,103,112,105,113,105,97,112,102,105,121,109,103,117,95,95,113,106,109,110,112,95,107,78,99,110,108,112,117,96,87,107,105,105,113,102,98,104,115,94,102,105,99,94,103,101,118,111,102,113,94,109,111,110,100,101,106,99,104,101,88,103,101,101,110,96,104,113,98,98,98,108,105,108,107,106,105,121,111,102,112,102,102,101,101,120,96,101,95,103,110,106,97,96,101,115,101,94,105,110,109,112,101,104,116,95,111,101,100,98,106,109,108,104,99,98,108,108,99,109,121,91,101,101,109,75,102,109,108,92,106,108,100,97,99,107,103,109,99,114,98,114,99,104,108,106,129,100,103,96,105,117,117,97,109,104,114,116,110,114,115,98,105,126,109,112,107,109,112,102,112,100,105,115,106,108,113,104,95,102,101,120,97,100,108,98,105,104,110,108,98,99,100,109,121,96,94,89,110,101,114,103,115,101,97,99,110,102,109,101,108,98,99,110,116,108,106,90,104,103,97,105,107,107,102,121,96,92,113,100,109,109,100,102,102,94,109,116,107,104,108,112,101,99,109,104,97,112,109,103,109,98,105,104,95,93,103,99,107,112,103,111,103,115,96,116,103,106,102,95,104,109,116,101,104,109,107,96,94,103,96,99,101,96,103,86,100,109,100,109,106,94,116,112,108,120,105,110,115,118,97,90,120,99,107,110,107,116,95,87,104,121,116,109,105,110,95,96,99,112,99,95,96,120,95,104,97,120,106,107,108,113,120,104,106,108,104,101,98,94,103,113,114,120,91,113,103,99,119,109,100,103,104,98,93,98,103,104,94,110,109,98,98,101,105,103,112,96,101,101,108,113,107,97,108,109,109,108,97,117,106,105,109,95,93,109,92,101,105,98,109,100,96,115,96,97,102,99,102,92,112,104,107,102,112,108,94,98,108,117,105,91,106,103,103,94,97,100,97,103,106,99,113,100,100,108,96,108,97,105,104,103,95,105,123,106,106,94,104,106,113,104,112,109,98,85,109,110,95,71,107,103,79,105,110,95,107,96,105,99,97,112,105,99,103,101,98,110,98,103,99,116,102,102,102,100,97,102,93,94,95,109,99,101,102,124,109,112,103,100,107,101,102,123,94,114,105,100,121,113,104,107,102,101,109,113,109,108,105,101,97,103,106,96,95,98,106,94,109,113,102,101,108,92,106,100,101,112,93,104,95,108,102,94,100,103,105,79,95,101,93,99,125,114,98,115,99,103,107,107,94,101,104,101,107,108,115,113,106,92,113,106,103,97,113,112,101,110,110,106,112,100,112,112,103,100,116,112,102,111,129,95,112,110,98,96,101,105,110,87,104,105,101,98,112,106,105,95,89,102,101,102,104,98,106,93,101,99,106,99,113,99,105,98,112,110,108,87,95,104,110,107,100,99,104,107,100,99,91,98,106,113,108,104,108,95,97,95,98,90,109,98,101,109,109,110,102,98,100,113,108,103,86,99,110,112,108,113,101,116,104,101,122,137,99,102,112,112,92,106,105,107,104,108,93,96,108,99,95,103,112,102,97,97,107,102,102,106,104,99,87,105,103,117,107,105,105,99,97,96,108,106,97,117,109,98,101,104,122,101,110,105,109,110,95,102,94,103,106,106,99,109,104,98,96,102,104,99,111,99,105,108,105,99,112,106,101,71,97,108,105,116,97,110,102,109,104,107,102,113,112,101,94,115,104,96,109,94,98,105,121,97,112,113,104,116,113,91,93,102,109,110,99,101,105,95,109,102,97,97,97,107,96,105,100,114,103,98,110,96,117,99,101,108,98,114,103,97,108,99,104,116,109,112,106,106,108,108,107,112,98,101,106,114,105,112,101,96,106,113,109,104,99,94,107,106,105,107,93,98,112,109,112,109,99,101,108,105,109,88,99,106,106,99,105,91,112,106,104,108,106,106,94,101,98,104,95,104,106,95,103,79,112,101,94,116,106,106,93,85,102,106,96,94,102,105,92,104,106,68,66,94,98,108,96,105,102,106,101,111,101,101,100,103,111,105,98,107,102,96,93,106,98,106,107,98,107,93,104,94,98,110,100,101,114,110,100,96,105,102,88,111,117,101,101,110,99,90,117,111,108,94,115,104,110,113,109,91,101,98,111,113,101,104,88,104,99,104,99,115,97,103,85,108,100,100,87,77,96,82,102,107,101,111,99,105,105,92,106,102,112,112,103,85,117,91,111,102,95,111,110,102,91,109,79,107,105,109,101,87,112,111,116,92,117,110,106,113,103,103,105,103,109,99,105,103,101,95,103,103,70,116,120,103,98,100,108,105,112,105,113,92,98,113,105,100,105,94,123,91,100,84,104,105,104,104,102,125,96,103,104,106,85,92,99,96,96,102,66,100,100,100,96,105,123,114,109,97,101, +631.62976,108,106,104,89,113,104,105,105,98,95,101,97,86,100,92,105,113,105,111,98,94,105,97,99,119,119,101,99,112,102,98,105,96,102,108,101,107,94,108,103,104,100,102,107,102,101,96,86,122,112,102,86,106,117,99,85,94,99,108,94,103,97,102,108,105,108,111,112,111,99,107,106,86,98,90,104,107,109,86,97,97,109,95,103,95,108,97,98,109,112,97,110,91,106,95,103,104,105,100,108,109,98,96,95,104,105,94,107,111,110,98,78,107,86,100,112,109,109,107,99,112,104,102,118,103,116,109,93,108,99,100,90,84,89,107,100,98,95,103,100,98,101,90,84,105,99,110,101,98,97,104,109,108,100,94,99,110,108,106,95,95,98,104,121,95,99,100,95,98,97,104,99,107,102,102,98,104,104,125,96,103,108,114,98,107,102,109,89,110,106,105,104,110,114,113,98,104,108,102,99,91,108,99,98,102,128,112,105,103,112,107,110,109,102,91,98,116,106,100,102,101,113,96,108,90,103,100,103,108,110,106,114,114,103,113,104,105,99,112,98,101,101,112,99,109,95,105,102,93,113,97,97,96,107,106,116,103,111,121,105,90,105,92,109,115,116,99,121,106,113,103,106,113,103,107,101,103,99,109,101,92,121,102,87,113,103,102,103,87,99,100,103,106,110,106,103,96,106,110,96,113,133,107,102,97,106,106,103,90,104,89,93,86,101,101,107,91,103,83,99,103,113,103,106,106,104,108,100,95,109,106,105,93,102,115,100,101,97,97,91,90,108,108,94,106,105,87,98,105,97,103,106,115,106,107,103,107,106,98,90,102,105,85,91,103,114,108,95,102,102,103,101,104,113,100,101,104,113,104,118,102,101,111,99,111,105,97,95,106,113,112,98,90,102,105,109,98,100,95,101,101,110,104,112,103,108,71,118,101,104,93,105,109,106,108,102,97,95,108,95,96,91,104,108,89,101,114,99,106,112,95,104,105,108,105,106,104,90,112,100,118,104,111,100,105,120,96,107,101,114,98,95,108,128,102,102,113,103,111,107,102,107,104,105,107,109,108,82,97,108,84,106,101,100,97,99,110,107,106,98,94,105,107,112,118,115,116,92,104,109,106,100,102,90,103,101,101,131,97,105,98,102,98,101,98,74,104,109,103,103,102,101,111,100,106,100,105,69,96,107,106,107,111,100,116,102,98,104,97,94,95,107,94,87,79,98,110,99,105,111,110,101,98,108,101,111,109,97,111,94,103,102,108,103,107,109,105,110,109,107,97,113,110,101,95,99,112,108,112,103,110,109,95,109,101,96,111,114,85,98,109,97,101,107,95,100,105,114,107,101,100,107,100,97,103,104,103,104,104,103,110,100,104,103,97,95,95,99,117,104,107,116,113,99,115,102,99,105,96,100,111,104,91,124,106,99,97,98,132,108,97,100,93,85,119,115,98,101,105,106,102,103,116,110,100,100,102,110,95,105,109,117,104,97,118,106,122,107,98,102,95,104,119,104,122,107,102,102,107,101,99,102,102,99,118,109,107,114,103,101,98,87,115,98,100,100,92,99,88,108,113,106,95,110,104,92,102,99,112,99,107,102,95,108,110,98,100,104,96,112,111,110,119,123,90,107,97,94,110,106,108,105,99,106,95,109,95,105,113,109,110,115,94,107,100,101,104,106,102,92,100,101,91,101,104,109,110,118,100,91,104,107,114,108,100,105,124,103,120,99,116,113,100,103,76,98,88,96,91,111,107,96,107,106,102,115,99,102,107,109,112,125,109,104,103,106,105,103,106,102,89,94,95,105,104,120,94,105,87,102,110,106,113,105,115,114,102,106,102,98,108,104,100,103,95,100,98,117,100,97,103,95,108,104,106,112,110,104,120,102,107,107,118,102,104,109,117,105,99,105,110,112,119,98,96,105,115,102,90,94,106,88,107,110,104,110,109,98,105,101,101,110,116,103,99,100,105,104,109,108,105,105,102,99,104,104,107,96,104,106,95,108,108,112,99,105,104,109,109,117,105,101,93,108,104,92,101,103,100,97,105,103,116,103,118,106,100,100,100,89,103,120,116,109,98,97,101,101,99,100,113,115,108,103,103,92,95,114,101,108,104,112,101,109,105,107,106,105,105,98,97,110,97,100,91,111,105,97,116,96,106,110,97,109,112,117,107,117,96,110,92,92,97,100,112,97,103,114,95,95,117,103,115,100,112,113,102,76,97,99,99,110,98,102,105,94,106,109,103,98,129,111,107,114,102,113,106,112,104,118,106,107,88,100,123,107,109,104,109,113,96,105,91,103,105,104,110,105,116,107,105,100,106,98,115,118,117,103,108,110,128,107,117,103,103,104,103,117,120,110,102,104,119,113,107,128,111,105,107,104,102,107,118,96,108,110,103,111,117,113,101,126,126,112,98,108,105,111,104,74,99,107,101,110,102,99,103,100,106,90,113,111,103,108,111,104,110,106,110,109,105,106,109,98,104,101,108,105,112,107,124,109,117,96,101,97,98,108,120,109,112,108,102,110,98,112,101,97,98,116,104,102,110,73,109,101,100,111,101,106,102,110,105,112,112,99,100,102,98,100,98,98,106,94,102,100,108,96,110,92,114,98,107,107,98,107,108,101,115,100,110,87,107,87,115,115,119,101,103,95,109,106,92,92,111,100,108,110,111,91,99,107,117,114,106,103,105,92,108,114,100,110,103,110,100,106,106,108,103,113,112,105,105,93,94,108,115,105,119,115,94,88,101,105,105,110,101,116,106,95,106,104,95,109,113,115,114,116,109,92,106,121,101,111,116,91,102,95,112,123,113,109,117,100,104,104,113,109,107,78,109,97,101,105,106,89,106,108,108,102,104,97,101,105,100,112,106,101,98,95,113,103,103,116,111,98,113,103,123,108,109,103,110,104,108,113,108,99,106,100,109,107,97,117,103,102,107,108,105,107,99,102,105,116,109,110,108,104,111,112,113,100,102,100,111,114,101,100,124,99,79,102,113,100,123,87,95,113,105,100,115,116,112,104,112,100,106,125,96,119,113,101,100,99,102,74,100,96,109,103,102,106,110,95,112,104,107,111,117,116,117,100,107,107,96,110,117,109,104,102,101,98,103,111,102,112,93,98,113,102,104,96,107,114,96,113,110,106,109,99,105,97,105,104,106,112,102,104,99,102,111,98,97,110,112,106,110,106,107,107,108,111,104,130,106,102,109,111,105,99,110,110,112,109,105,95,104,100,105,109,114,102,110,109,111,106,108,102,105,120,106,109,111,96,110,98,106,100,100,104,103,99,103,110,100,112,99,107,105,101,112,93,107,103,104,103,99,104,112,109,100,104,107,95,104,98,106,112,106,91,100,102,111,109,102,123,108,104,117,108,86,109,109,114,96,111,101,102,106,94,88,110,97,110,110,102,92,117,94,102,98,94,103,85,105,103,106,98,106,111,104,99,101,110,99,93,115,102,108,110,108,111,112,101,76,111,102,110,86,104,106,105,109,108,106,110,92,106,100,96,105,101,97,103,91,102,111,109,102,96,108,105,94,99,101,98,102,109,100,103,109,104,108,98,95,99,98,105,107,96,102,99,103,104,100,108,107,100,109,121,96,101,104,102,102,113,104,106,102,104,100,84,103,108,105,117,108,113,108,115,118,98,98,106,109,106,101,98,99,95,111,114,107,100,103,111,112,92,111,105,106,113,113,105,97,105,110,105,104,99,100,95,83,98,100,106,113,102,109,103,103,100,106,102,109,103,121,113,111,112,104,101,120,102,113,90,92,102,105,107,109,117,95,122,102,112,101,100,112,95,111,103,127,99,109,106,112,92,100,114,105,105,100,108,112,96,102,103,111,81,103,101,102,107,102,94,105,86,106,87,104,95,119,108,104,104,108,101,121,107,98,101,100,99,100,100,112,104,105,102,102,87,105,101,112,106,115,103,101,112,113,105,106,107,103,116,104,112,94,105,106,94,118,109,95,109,100,99,99,109,96,106,101,98,107,92,93,111,117,102,104,107,95,108,105,102,85,107,102,104,97,80,99,107,110,102,99,106,108,97,106,95,102,100,112,101,110,120,99,119,104,104,125,99,120,109,104,103,101,109,103,97,99,105,102,111,107,108,113,109,109,90,95,101,108,105,98,109,112,106,107,102,103,104,101,93,112,100,93,110,110,117,103,97,91,101,103,96,113,95,119,106,109,98,105,100,109,127,106,97,110,104,102,128,100,105,105,109,112,107,95,102,114,106,101,109,99,103,103,99,98,87,93,113,103,104,103,93,96,108,104,108,114,128,116,94,105,112,104,111,112,108,115,107,107,104,103,104,97,108,109,107,117,103,100,89,114,112,111,108,104,101,116,115,106,115,116,100,101,112,96,105,98,109,95,95,113,103,107,93,112,88,105,95,103,111,104,106,110,94,108,104,92,106,108,98,107,90,101,102,107,97,95,103,112,99,95,105,101,109,107,76,103,103,105,108,102,107,92,108,110,107,105,103,107,105,103,108,101,111,119,100,103,108,108,108,95,113,105,104,102,98,97,113,108,98,101,103,107,109,104,84,94,106,104,111,116,105,101,108,112,91,101,95,101,100,104,96,110,104,104,107,101,110,125,102,90,107,95,109,104,99,102,122,109,108,125,102,109,99,99,106,119,105,108,106,107,118,109,98,95,110,97,106,93,101,95,98,111,103,111,102,101,96,113,96,107,89,108,107,103,106,107,112,96,109,98,95,99,103,113,109,116,100,93,102,96,109,102,119,91,101,115,98,100,99,107,101,96,104,112,102,79,94,108,106,90,111,98,101,116,114,81,103,103,83,95,105,106,107,87,101,107,106,96,91,111,111,106,102,115,105,94,95,107,104,102,105,111,87,94,102,102,113,91,118,111,107,96,102, +631.77087,101,101,97,93,95,112,114,90,98,100,102,103,100,103,105,97,94,116,112,97,105,118,82,98,108,105,94,84,101,116,109,104,114,83,117,88,92,106,98,110,102,110,105,93,88,106,100,108,98,104,106,106,106,96,90,108,105,89,77,87,102,83,93,99,105,113,95,98,106,98,113,104,97,86,104,123,97,120,96,118,111,99,97,95,108,99,109,97,97,113,113,102,92,102,100,99,104,101,100,103,99,97,92,106,104,84,84,102,106,95,78,102,101,103,100,99,95,103,103,102,98,94,107,109,100,107,113,92,102,100,93,107,97,99,99,97,103,103,96,99,101,109,96,110,95,106,105,117,89,91,113,76,105,72,95,101,92,97,80,102,102,84,103,102,101,95,101,101,106,104,103,105,112,114,101,89,97,97,108,98,98,99,104,97,114,90,106,102,105,90,99,101,117,103,118,109,92,99,103,98,103,91,96,116,111,114,93,107,97,119,91,105,92,108,91,106,90,100,95,96,114,106,97,117,94,129,96,108,92,99,119,104,111,97,100,105,101,113,118,114,90,91,107,105,95,95,111,102,86,109,103,92,104,102,100,103,86,110,91,96,98,104,100,107,112,104,98,105,81,96,99,97,99,101,109,101,96,106,95,131,114,102,103,104,98,93,92,102,91,108,94,100,97,113,120,122,95,96,91,99,96,110,98,106,90,107,119,106,109,92,86,97,110,111,102,87,99,119,98,106,110,105,99,88,119,108,106,104,91,114,101,93,104,103,102,106,108,97,107,101,101,102,108,100,102,102,93,108,95,94,102,102,91,111,102,96,105,113,103,104,103,99,97,94,107,108,95,108,97,118,118,105,107,103,107,104,104,103,96,114,109,109,98,108,95,92,112,107,91,98,105,91,95,95,93,102,101,105,110,106,102,105,104,104,94,103,98,101,105,97,94,102,110,91,99,92,102,95,110,90,99,96,97,97,98,97,90,100,97,121,98,100,104,105,95,92,100,114,110,111,109,97,135,110,97,111,108,93,95,96,100,103,96,118,105,122,97,102,100,100,104,110,110,102,95,111,113,103,96,113,109,110,98,104,90,100,97,117,106,106,87,104,114,111,100,121,113,103,90,94,109,110,106,113,108,98,106,114,113,103,105,97,95,103,108,106,103,108,102,96,111,98,102,104,112,101,102,96,90,93,94,93,105,94,99,101,99,106,106,112,98,104,94,106,101,110,90,102,100,89,92,105,104,93,108,96,108,107,101,95,96,110,103,108,106,92,106,103,108,120,106,95,106,108,98,113,109,99,96,96,98,95,96,97,98,107,99,96,99,105,105,107,98,107,100,107,108,87,110,102,116,108,102,104,110,98,100,102,92,94,119,111,105,108,95,105,100,100,96,102,99,105,105,101,99,90,100,94,107,93,103,100,106,99,122,102,104,111,103,101,80,100,107,108,109,108,102,102,94,101,113,96,102,86,96,70,101,109,90,115,96,101,104,96,97,112,107,103,99,102,100,82,99,110,98,97,115,96,104,103,116,104,125,103,96,90,98,107,105,110,104,101,108,81,107,96,102,107,102,105,99,97,101,120,101,109,111,97,104,96,103,96,94,98,114,98,114,102,93,102,96,99,112,90,98,91,96,107,110,102,100,103,97,112,99,105,79,98,114,102,111,107,98,99,106,103,101,96,103,105,109,105,111,110,97,109,92,109,90,102,113,102,101,107,108,98,105,83,107,90,94,93,110,136,84,94,103,97,91,97,104,102,101,107,96,108,95,103,121,91,107,110,107,98,93,97,102,105,95,98,98,108,98,103,102,110,104,106,109,112,101,104,101,95,100,100,112,105,94,112,103,102,95,104,110,94,109,104,113,95,108,93,104,113,112,91,99,106,95,79,98,104,101,109,104,97,99,97,114,105,103,111,96,100,99,95,111,98,105,112,100,100,94,101,100,86,100,107,99,95,91,91,100,113,94,105,98,110,103,115,104,107,112,101,91,101,110,98,100,87,98,111,108,102,113,100,91,99,98,105,114,110,102,101,113,94,109,107,105,110,103,95,73,101,99,108,101,98,99,109,95,99,105,96,100,105,86,106,98,111,100,100,93,92,95,104,101,98,100,108,99,114,93,106,96,91,103,114,99,102,102,112,106,108,114,104,92,106,96,113,101,119,110,108,110,95,104,102,105,100,108,112,99,104,108,112,106,104,104,104,97,105,99,105,91,98,95,105,91,103,107,97,99,100,104,102,99,93,93,115,91,106,105,97,96,92,93,88,94,113,97,102,107,103,105,95,107,114,91,113,101,94,83,113,116,113,95,108,107,105,96,99,85,86,100,97,109,94,98,83,96,100,112,101,109,101,107,76,116,121,102,108,106,108,98,114,92,106,96,100,114,121,99,125,86,107,113,100,106,98,107,116,108,92,100,102,99,96,118,95,79,104,100,104,84,114,105,100,88,95,100,109,87,113,102,111,97,109,106,113,110,100,108,102,100,101,101,110,104,109,106,94,114,94,96,107,107,100,92,107,104,98,102,101,103,107,110,98,101,113,93,99,105,100,112,107,98,104,93,108,96,106,110,92,100,100,101,98,95,98,95,71,103,106,117,109,90,105,105,98,114,106,100,104,124,106,117,102,107,100,113,97,103,96,111,109,104,98,114,109,111,110,109,111,95,97,101,108,107,102,100,100,101,102,94,94,111,113,113,100,117,101,101,111,86,102,104,88,109,92,103,107,115,101,107,101,109,104,108,97,99,108,97,107,112,96,91,93,109,98,105,110,88,100,105,109,95,109,111,98,103,111,102,105,103,92,103,106,106,99,87,103,110,96,99,98,108,104,103,98,109,102,101,109,109,101,109,91,108,103,104,97,98,105,102,99,103,113,107,104,108,105,106,110,118,109,107,103,104,111,101,106,105,102,104,98,119,99,99,106,93,113,108,116,108,104,97,107,102,115,97,103,99,111,98,108,109,96,98,109,108,84,107,117,102,127,96,113,110,98,106,107,118,110,117,108,112,116,98,93,101,111,104,111,114,98,98,99,116,100,106,97,116,107,102,101,115,100,106,101,110,118,105,102,98,114,103,107,100,91,101,107,110,91,99,87,108,108,106,101,113,101,125,113,102,110,113,110,115,111,102,98,76,103,90,106,110,105,101,99,95,92,108,100,105,106,103,94,107,101,109,100,91,101,99,105,116,100,93,100,98,94,104,100,96,101,93,94,109,98,105,105,102,105,94,91,107,110,111,97,107,110,103,106,99,108,101,101,99,99,106,97,108,107,99,103,103,94,95,103,104,101,110,106,101,106,101,93,107,102,111,98,99,107,107,83,99,91,108,129,109,105,105,110,113,98,105,99,106,123,105,102,101,101,95,100,109,100,118,94,103,98,106,107,100,94,107,106,98,102,96,107,104,101,106,94,104,95,102,102,100,109,121,92,96,108,106,98,99,101,98,104,111,103,89,88,102,103,105,106,112,103,106,95,99,102,112,104,104,107,107,103,91,105,111,103,100,106,99,91,113,102,112,109,111,103,99,99,88,106,95,112,109,109,116,99,99,104,105,122,106,96,100,105,104,112,108,102,98,94,101,103,102,93,105,114,103,101,102,102,102,107,100,96,102,95,88,87,116,103,100,116,103,109,95,93,104,89,99,106,106,114,96,111,108,98,91,104,100,103,118,99,105,114,88,104,106,98,108,102,113,115,114,98,107,103,98,109,91,99,90,101,103,116,101,97,110,104,120,107,106,98,113,91,105,97,116,103,112,105,98,92,108,78,100,106,112,74,109,108,99,112,95,97,98,105,95,116,117,110,96,96,107,92,113,111,106,112,101,115,115,111,86,90,108,96,107,107,121,97,101,113,99,110,102,106,122,99,111,109,106,87,92,105,105,114,100,102,128,101,108,102,92,104,105,84,117,98,106,100,91,100,106,92,100,100,103,110,111,97,106,108,97,96,105,108,120,97,107,99,100,111,102,105,117,100,100,113,112,102,99,102,100,112,112,97,97,94,101,83,106,107,106,99,99,108,104,98,106,106,107,116,89,93,106,102,109,113,115,101,73,116,95,107,94,106,107,103,102,99,102,112,105,109,120,102,104,112,102,103,97,105,101,117,83,115,123,99,110,105,64,102,108,98,103,112,99,113,70,113,95,92,111,91,103,100,102,100,96,103,104,103,88,103,106,121,99,95,101,92,126,116,90,101,111,94,115,100,94,104,96,83,100,95,103,97,120,103,113,93,95,105,100,93,100,111,113,95,99,91,101,98,118,109,105,105,101,94,106,112,102,100,106,104,106,105,96,104,108,106,99,109,99,119,106,109,92,98,110,107,102,96,92,107,110,106,96,97,105,108,102,107,104,79,91,104,108,93,97,100,108,102,97,105,105,102,107,104,121,105,100,111,99,122,93,95,99,105,96,110,117,101,95,88,94,105,116,103,105,103,109,98,110,125,116,109,98,100,102,99,114,105,103,103,105,100,98,101,110,108,98,119,104,98,107,99,95,98,110,101,94,100,102,87,108,107,105,104,94,99,91,98,105,91,103,98,99,96,113,104,110,111,103,106,97,115,108,108,95,93,89,97,105,117,120,124,96,105,98,114,94,104,113,101,107,99,105,102,109,108,106,108,97,108,85,100,102,99,110,107,113,100,109,109,95,99,105,97,101,103,102,99,106,124,103,113,108,107,119,103,107,91,104,103,110,96,90,93,98,102,89,93,95,98,124,100,100,104,105,110,91,99,99,98,92,86,95,105,101,104,103,104,106,101,104,99,106,115,99,101,109,103,97,104,101,115,94,119,108,100,113,100,104,94,116,107,91,100,105,100,99,105,98,94,100,107,97,91,106,96,98,101,99,99,106,121,110,92,87,107,111,104,108,109,79,124,95,95,104,90, +631.91205,127,104,91,108,77,101,76,95,92,99,96,102,108,101,108,95,102,111,100,100,105,113,100,103,107,106,93,96,97,101,105,107,125,78,107,100,97,83,105,108,96,112,90,108,121,113,97,97,109,106,99,116,100,101,88,101,111,94,109,76,97,104,90,105,95,103,97,91,109,96,98,99,99,98,90,95,104,108,96,113,109,105,112,120,101,98,103,103,106,94,87,113,99,105,101,95,95,95,106,103,113,106,107,100,102,103,105,109,109,101,111,100,109,98,102,103,106,102,105,121,105,113,98,103,103,121,99,101,110,106,116,107,101,105,93,101,100,110,96,110,90,106,85,97,109,98,124,113,94,92,110,102,123,97,103,100,107,99,99,91,112,94,115,104,99,99,104,105,94,97,103,97,98,107,105,99,101,94,106,100,106,105,91,99,109,101,109,104,95,98,96,99,104,103,112,103,98,94,112,113,96,98,94,96,103,102,110,100,112,98,83,105,103,105,104,119,106,105,105,101,89,102,99,98,99,110,108,102,99,106,95,98,103,102,97,111,111,104,104,101,104,106,107,101,92,98,103,93,107,96,94,92,100,94,99,119,98,101,108,103,109,107,104,97,107,107,104,94,99,125,90,101,102,108,111,102,95,97,92,109,106,106,100,89,98,101,98,96,107,110,104,108,104,103,114,120,102,93,93,105,108,100,96,111,105,100,103,82,97,106,102,101,108,104,96,102,95,87,94,89,92,99,98,120,91,112,92,105,101,106,90,114,99,96,109,104,106,93,101,97,93,112,97,105,102,105,101,100,122,99,95,111,104,105,91,106,99,121,103,86,115,106,98,104,83,75,107,104,100,102,110,103,95,107,112,100,104,101,106,102,105,100,104,106,71,94,95,109,106,100,107,98,93,105,102,102,95,101,106,109,104,91,106,97,100,102,100,101,106,110,98,106,99,107,103,107,107,118,107,102,106,104,92,98,94,108,100,99,101,107,102,115,100,115,101,105,102,99,104,100,112,109,103,104,101,108,103,91,107,113,100,98,94,103,110,94,98,100,121,96,103,103,103,108,106,115,103,111,109,103,100,102,95,94,86,100,109,100,115,98,113,97,112,95,101,82,109,98,108,100,95,110,107,101,105,102,112,95,103,106,110,86,109,104,108,92,93,122,103,106,97,96,112,107,99,103,110,106,105,99,88,94,110,95,100,92,115,104,98,104,105,93,99,104,109,102,102,113,101,96,103,104,108,105,118,119,105,101,104,113,109,107,101,112,109,89,107,94,113,91,97,89,110,107,100,111,110,118,111,103,90,92,108,106,108,103,105,95,102,114,110,105,103,102,109,106,110,113,104,102,128,125,103,88,120,107,94,113,107,106,105,101,118,94,104,105,105,100,112,110,95,105,95,109,107,101,109,110,108,106,91,94,102,101,106,102,105,107,103,102,95,109,101,103,96,105,99,105,106,115,118,99,102,106,96,103,102,91,99,115,104,100,122,104,90,101,105,102,110,104,109,107,104,95,109,104,102,106,105,99,115,104,90,100,88,99,107,106,98,97,117,94,115,112,85,107,115,105,107,98,109,105,100,103,107,97,98,110,100,96,103,104,103,104,117,100,104,118,108,89,110,97,102,101,102,112,101,103,112,94,108,99,108,98,102,98,106,125,121,100,111,94,99,100,104,97,106,89,122,95,100,87,106,110,102,106,112,121,98,96,105,88,112,100,113,108,115,107,110,82,99,101,101,110,96,111,101,106,96,115,101,104,113,117,100,87,112,110,106,104,108,110,109,101,99,112,97,112,102,96,113,109,105,112,81,111,105,105,104,103,91,106,90,99,111,108,114,101,106,105,117,100,108,98,105,100,106,99,110,97,99,90,100,100,97,102,102,92,96,102,101,89,104,91,98,109,104,100,100,103,92,111,108,107,103,93,105,87,101,96,110,94,102,112,102,107,93,120,100,113,105,98,98,111,106,105,105,100,103,114,112,100,107,100,97,110,100,99,101,111,99,94,113,117,126,101,102,105,98,100,99,92,99,103,100,97,91,105,100,104,109,113,100,93,101,88,99,91,100,91,101,106,110,96,101,94,99,103,83,110,102,111,101,100,99,99,95,98,97,104,100,104,93,115,107,109,101,103,98,105,103,98,97,109,108,96,106,103,102,110,94,101,96,101,102,110,103,117,94,99,110,101,118,101,105,98,96,107,83,125,99,96,103,85,110,104,99,105,105,102,103,113,93,96,99,105,103,100,101,113,98,100,111,101,88,89,91,102,100,98,99,100,102,130,113,108,102,113,91,104,95,98,98,103,100,99,74,101,103,103,101,99,104,82,117,96,100,99,95,96,94,102,104,112,110,99,93,121,103,94,102,116,110,97,107,115,111,117,104,98,102,112,105,113,105,114,85,117,102,109,102,111,118,114,103,110,117,110,106,96,102,114,100,112,102,95,107,99,95,99,96,103,94,110,105,114,104,109,99,106,102,96,92,104,103,110,111,95,104,107,105,103,100,108,95,109,112,105,102,104,99,120,106,106,117,88,109,110,87,107,101,103,104,109,95,102,108,103,110,105,106,118,101,118,89,109,123,95,136,104,106,94,100,114,100,105,99,102,108,93,106,104,103,102,99,95,107,102,96,106,110,102,109,107,101,98,99,98,120,104,109,117,114,104,102,100,101,108,109,97,101,114,112,128,104,101,108,106,114,100,104,105,104,102,90,96,94,102,104,98,103,107,103,99,107,106,107,117,103,100,113,113,107,99,99,104,108,119,98,101,108,121,98,104,102,100,99,97,111,111,102,101,102,95,111,103,100,101,93,113,105,98,111,99,106,105,110,107,110,108,91,102,115,112,94,110,98,109,109,100,124,101,104,123,101,114,92,110,103,107,100,104,117,103,102,95,98,107,95,107,102,96,104,101,109,112,99,105,115,106,120,100,104,116,99,100,110,99,115,111,103,119,100,99,104,110,118,105,109,104,102,111,98,65,105,106,112,103,102,99,96,108,113,106,107,112,112,97,96,106,110,107,108,112,105,97,111,97,99,103,94,108,106,104,88,101,112,122,113,104,105,114,102,108,97,100,94,108,98,99,104,100,113,138,125,95,97,103,113,100,112,94,103,108,104,104,98,112,95,100,100,96,111,117,94,105,99,104,98,94,102,95,104,81,106,111,111,102,110,101,102,107,94,95,109,102,98,115,104,92,95,109,76,110,107,95,84,100,106,114,103,105,88,93,102,91,103,101,100,103,102,104,107,93,100,104,102,102,94,106,105,108,110,106,98,109,111,109,111,109,102,95,101,106,108,106,104,86,107,107,100,106,98,111,121,112,106,95,105,101,106,116,114,103,107,101,114,111,104,101,97,99,101,102,103,100,101,104,84,98,109,104,106,120,87,108,108,113,112,106,101,99,104,108,111,94,109,109,113,102,107,104,103,88,106,99,100,104,109,97,114,98,107,91,114,104,104,105,105,107,105,105,119,101,97,111,103,95,109,112,109,110,99,99,109,117,110,95,113,99,105,98,80,104,104,105,111,90,103,103,105,104,110,108,118,100,105,109,107,111,109,112,105,101,103,109,95,95,103,99,82,100,107,104,94,104,109,108,106,92,95,100,107,92,113,104,108,98,104,107,101,116,115,96,101,100,109,106,103,112,110,101,106,110,110,94,98,106,97,99,115,107,95,92,93,102,92,105,106,101,110,101,102,123,95,92,102,103,115,98,104,98,101,75,102,104,106,106,105,113,105,96,106,103,102,97,101,99,99,111,97,104,106,87,98,100,99,96,103,108,99,102,88,98,104,95,109,125,102,109,104,94,105,105,117,104,101,105,104,113,96,125,114,97,92,101,103,103,112,99,99,103,118,99,113,102,99,102,100,102,100,105,97,94,100,102,98,107,103,100,110,95,107,109,120,110,98,90,105,113,90,99,109,95,97,132,91,103,107,110,96,107,97,104,103,87,106,105,112,109,91,113,109,110,112,104,104,103,87,108,92,94,118,98,108,107,92,102,104,103,109,116,112,105,105,103,107,88,100,107,110,97,91,96,110,110,113,123,102,116,108,102,100,98,100,108,107,107,110,102,107,109,101,111,113,107,110,99,101,100,104,114,104,91,102,120,115,95,91,108,90,96,103,105,102,108,99,106,99,98,113,99,91,102,113,120,107,94,94,101,112,105,103,111,117,97,103,117,120,106,109,114,98,99,105,108,110,113,87,109,104,94,109,105,100,96,108,120,89,101,108,108,110,104,103,101,96,86,91,99,112,102,99,100,120,111,101,92,96,96,108,111,110,106,107,103,95,92,108,100,105,105,110,107,106,108,104,100,95,104,105,99,106,95,104,98,103,98,105,106,96,101,103,112,106,90,107,98,102,121,117,107,98,124,112,98,123,103,105,98,112,100,109,110,91,96,86,101,99,98,104,101,102,105,92,109,83,95,96,100,104,108,110,102,98,104,112,108,100,98,126,91,92,115,107,108,101,108,110,104,87,96,114,108,100,98,106,106,104,108,110,105,96,95,116,98,104,102,107,111,101,113,95,96,118,102,107,95,102,104,95,115,100,106,99,106,103,101,98,79,105,97,90,102,103,110,83,102,99,86,120,110,106,114,102,99,106,103,117,108,106,105,112,112,109,107,109,117,105,98,108,102,106,101,100,98,98,120,87,84,107,99,92,103,103,88,103,102,106,103,112,103,105,108,101,100,109,104,105,102,109,103,102,96,106,100,99,95,121,105,105,113,106,104,103,72,107,112,98,107,99,109,100,85,109,97,105,101,96,90,111,97,101,97,95,116,110,105,95,106,108,128,100,102,98,94,98,109,91,113,107,91,118,100,106,105,87,128,108,102,103,84,95,111,115,108,87,111,104,98,101,97,103,97,114,99,119,84,99,98, +632.05316,82,105,108,60,84,114,110,95,114,98,107,97,101,92,116,111,110,106,107,107,111,99,98,83,103,88,134,118,119,102,88,102,105,111,100,99,101,95,91,126,114,103,108,109,113,107,102,94,103,105,111,106,98,110,109,102,108,92,87,103,105,108,101,112,108,116,93,111,95,102,97,114,100,110,93,112,111,110,101,101,111,105,113,100,106,99,88,100,84,104,107,105,102,103,98,100,102,104,111,103,120,100,121,102,101,113,106,87,113,121,109,114,109,113,111,100,107,103,120,75,99,99,99,111,98,108,119,117,113,95,100,107,91,84,108,119,100,92,93,100,105,100,106,107,108,102,104,109,109,116,101,105,117,98,104,116,94,95,106,103,89,113,104,106,97,96,116,100,98,106,100,103,111,105,100,100,95,100,99,114,118,107,114,100,107,95,89,90,96,98,107,99,113,101,98,100,97,112,99,77,103,112,101,103,92,106,100,113,113,85,109,108,110,101,109,121,106,102,93,98,101,102,104,96,109,107,102,103,102,107,92,105,108,112,114,107,108,97,110,103,98,100,108,108,95,100,112,95,71,96,99,103,106,110,106,101,110,101,103,106,97,114,102,93,86,101,110,121,124,90,107,92,104,92,103,101,102,113,92,109,118,98,103,114,105,108,109,102,112,91,97,105,113,116,105,106,104,90,101,101,103,114,106,109,83,100,96,109,99,117,102,108,106,104,98,100,108,88,102,99,107,104,119,83,112,95,102,90,105,106,117,105,118,99,101,106,101,104,107,100,95,110,98,106,98,103,104,103,104,103,107,105,108,72,113,111,99,88,96,101,97,95,108,110,108,90,109,117,93,98,111,104,105,105,104,109,101,105,103,113,100,113,106,91,108,115,98,109,99,102,107,100,105,113,116,114,96,104,110,109,106,87,99,110,105,128,102,87,104,96,114,106,93,109,101,102,105,108,113,106,103,101,100,113,110,108,102,98,80,104,98,102,105,108,96,94,101,109,110,100,108,112,108,98,96,104,102,104,97,98,91,111,117,103,101,102,100,106,103,101,98,113,119,110,96,112,108,99,110,103,109,111,91,107,94,106,116,112,113,102,105,106,106,107,98,104,108,107,114,110,95,114,85,111,98,113,90,103,112,107,116,100,101,123,109,109,100,99,105,103,91,94,98,98,102,112,98,99,101,96,110,96,101,99,104,97,107,98,106,109,105,114,91,90,105,106,102,99,78,113,109,112,109,100,111,106,102,104,88,116,102,105,89,115,109,102,101,103,102,106,103,99,110,110,106,104,111,99,98,109,98,104,115,108,98,100,88,90,103,85,104,101,107,103,113,99,103,107,95,90,106,99,97,99,110,111,97,103,106,106,101,108,93,113,96,112,102,105,101,117,97,104,116,111,109,103,106,106,107,104,105,101,90,96,95,91,94,101,104,100,121,110,101,106,100,114,129,103,98,107,107,94,107,109,95,101,103,107,115,112,95,119,107,107,109,115,104,116,108,102,106,105,116,103,97,104,99,107,94,116,106,103,96,104,99,109,113,92,112,101,106,97,102,103,108,102,97,109,103,101,109,111,116,110,140,77,100,100,106,97,97,103,101,98,101,102,98,107,96,109,103,103,106,105,102,96,94,104,113,102,99,104,105,109,107,100,107,115,83,102,109,100,99,96,98,100,112,102,112,95,105,96,104,86,104,91,122,108,106,98,123,102,105,97,114,98,99,80,116,86,109,112,125,112,106,95,113,104,109,103,102,118,107,108,107,118,107,108,104,108,112,98,107,103,103,103,97,119,96,106,113,114,91,104,107,113,98,113,115,106,99,99,92,97,102,118,95,99,110,95,100,98,111,105,129,98,111,98,113,109,90,100,103,112,114,104,100,109,92,104,109,102,109,115,94,96,104,109,98,107,84,105,105,102,100,96,101,101,96,97,105,99,118,104,105,99,106,104,96,104,101,95,97,104,98,103,102,102,104,95,99,112,102,108,108,109,110,99,106,100,107,112,98,101,103,106,100,100,94,100,95,114,95,107,116,97,107,105,108,106,95,117,104,92,117,103,103,105,104,99,117,104,109,99,90,105,91,109,95,95,87,126,92,101,100,98,95,98,102,101,108,110,103,106,106,108,104,97,95,109,109,111,95,114,101,113,107,105,111,113,117,97,102,99,114,103,98,109,76,110,111,110,96,110,102,117,94,106,105,117,100,88,109,112,96,122,100,111,105,96,97,111,101,99,102,101,105,101,112,104,103,114,103,104,89,94,92,97,106,100,95,106,103,104,76,95,110,115,108,112,85,114,104,104,109,111,104,118,105,107,106,89,112,90,106,121,92,105,122,107,121,103,101,101,109,69,120,110,98,105,114,111,98,102,107,113,119,113,114,145,111,104,108,107,89,96,105,110,110,107,96,99,106,101,113,107,108,105,98,100,96,111,101,113,97,111,108,90,90,100,91,101,103,105,99,124,111,93,103,121,106,113,99,97,91,104,103,103,94,109,111,94,121,102,97,108,113,103,101,104,98,105,114,107,97,104,107,98,85,113,106,107,117,91,114,104,94,113,106,114,105,111,88,94,113,107,101,113,96,106,93,87,108,106,105,104,109,107,104,106,98,125,110,98,104,95,105,87,101,90,109,103,100,101,116,115,102,106,110,111,106,109,117,98,107,96,112,102,103,102,109,113,104,113,87,113,109,113,98,103,102,112,107,112,102,103,105,105,116,116,100,104,116,119,104,104,94,103,103,108,108,87,97,108,90,95,99,95,108,78,111,113,109,99,96,111,101,105,116,121,104,119,95,104,103,110,89,124,101,100,103,116,133,101,108,112,102,114,108,113,100,99,111,101,104,100,93,106,109,104,105,91,102,101,105,116,107,97,108,98,113,130,103,107,123,104,111,116,102,116,108,95,104,95,109,110,113,111,116,94,103,112,118,114,121,122,107,109,106,112,107,104,114,109,107,95,108,117,99,88,103,109,108,98,99,107,125,100,102,105,98,104,92,106,117,94,114,110,102,106,84,97,109,125,108,118,109,123,99,102,103,104,104,113,113,101,108,102,107,111,96,107,100,99,99,107,112,98,103,102,103,121,87,111,107,110,121,88,110,105,97,107,90,108,95,113,101,102,101,97,105,90,100,112,87,91,95,100,109,104,107,109,92,78,101,121,96,106,120,96,116,102,100,93,93,89,107,102,104,106,97,95,109,102,106,104,99,108,101,106,105,109,106,77,102,83,97,103,113,122,106,109,119,113,111,99,111,112,107,112,105,111,95,112,108,107,104,102,104,104,109,108,115,103,97,110,111,103,104,101,113,113,104,119,104,95,102,114,98,91,102,116,108,100,105,109,112,108,107,107,100,105,104,108,101,109,112,98,107,117,112,97,99,113,101,112,105,99,103,98,83,108,117,105,94,113,106,108,90,106,99,96,78,106,110,102,106,106,105,100,118,101,104,101,104,108,98,104,104,94,95,101,94,100,96,110,95,109,87,97,104,105,103,116,121,104,113,109,107,99,108,102,109,112,100,107,120,110,97,115,104,99,111,115,107,103,112,102,89,108,117,109,110,109,98,98,102,103,101,102,101,108,107,111,100,114,108,119,110,102,98,113,122,98,99,103,105,108,95,103,106,110,111,107,101,96,114,100,111,110,102,92,118,97,103,102,100,106,102,111,115,123,97,98,105,95,102,99,95,109,116,98,123,113,98,97,106,105,104,81,102,105,119,115,103,108,103,107,102,92,118,102,104,88,96,104,108,101,103,113,112,101,113,108,105,98,103,93,105,103,104,99,108,116,113,107,100,104,102,107,102,72,111,104,117,109,118,80,100,101,109,108,104,104,106,102,100,105,116,89,112,100,105,106,111,109,103,104,98,92,98,100,101,96,108,80,102,109,107,100,102,105,105,102,108,96,85,97,106,110,115,106,100,113,110,95,109,103,112,108,90,106,100,105,89,107,104,104,117,77,94,101,120,105,105,99,101,98,99,107,104,101,105,108,104,104,103,94,105,100,106,101,110,89,101,110,109,106,102,106,109,111,95,110,106,98,105,101,109,96,121,100,93,101,98,102,100,119,91,103,101,94,109,105,114,105,103,96,118,100,104,100,92,108,103,102,102,105,106,96,104,105,102,116,109,107,92,101,96,108,111,90,109,99,119,105,103,102,109,107,103,104,112,100,103,94,97,107,104,98,119,111,101,104,102,102,105,95,105,110,113,98,105,107,105,99,123,112,112,100,104,108,113,106,94,105,105,115,115,100,105,103,108,96,103,101,93,106,103,99,99,99,91,99,91,124,95,99,117,101,112,105,107,113,109,104,116,106,106,117,110,105,98,101,101,102,110,104,113,99,103,112,109,107,99,117,103,115,92,106,106,140,103,104,96,109,113,106,105,100,117,108,103,100,99,104,100,97,98,106,117,105,99,109,105,116,99,115,101,119,101,103,110,117,100,112,103,94,98,104,91,104,104,104,112,109,86,108,106,121,91,94,103,114,101,107,104,103,113,84,106,98,105,106,102,105,107,110,86,92,102,102,112,104,107,97,99,98,100,110,96,108,116,113,115,121,103,107,92,110,110,93,105,102,103,104,105,108,110,91,105,105,98,105,113,96,105,106,105,95,122,115,107,106,114,98,116,92,107,97,98,97,104,93,99,100,96,103,105,115,103,100,99,100,104,94,98,105,119,96,109,106,106,101,103,94,90,73,105,99,87,110,103,117,100,101,110,94,104,102,107,89,104,110,108,111,92,100,112,95,111,99,106,96,95,123,98,98,100,111,97,107,80,94,74,106,110,102,110,101,115,91,103,102,111,101,122,109,108,106,93,120,95,101,95,111,100,92,102,109,98,112,100,100,91,112,99,105,94,74,104,99,106,130,118,107,69,108,105,95, +632.19427,113,118,102,120,92,98,128,107,94,102,93,93,106,102,102,118,97,96,108,97,108,86,100,107,95,96,88,103,105,97,105,112,100,91,123,104,98,96,91,96,88,106,104,91,105,100,102,121,96,108,109,75,83,106,100,103,101,98,105,121,100,85,103,93,103,112,92,104,111,89,90,106,107,104,105,103,98,107,106,103,110,89,108,108,94,97,99,108,94,108,109,104,99,101,90,108,108,96,100,105,97,101,98,76,100,104,91,94,101,101,98,76,98,106,96,106,98,107,100,106,110,98,99,96,103,103,104,90,110,99,95,93,99,120,100,100,122,121,66,96,108,110,100,108,104,105,108,99,112,99,111,101,75,109,94,102,94,101,112,101,108,105,103,106,114,93,100,101,117,112,118,99,112,111,112,95,103,99,98,111,92,102,130,96,107,102,101,82,100,104,76,99,103,105,96,111,108,97,116,104,103,107,90,120,103,130,96,95,108,102,104,104,107,98,121,104,92,112,99,101,111,109,114,90,108,102,106,98,101,118,106,109,111,92,95,108,114,85,110,111,101,98,113,114,99,107,95,85,102,103,113,115,108,107,124,104,97,101,95,96,106,112,108,102,93,103,100,110,92,113,97,99,104,99,84,99,101,96,100,104,110,114,99,104,102,103,94,104,92,94,106,110,112,99,112,104,106,105,103,111,93,113,107,117,95,98,99,119,98,108,105,107,98,107,95,122,93,101,95,96,103,102,106,99,107,106,110,82,107,102,108,101,109,116,108,98,101,100,102,107,102,104,101,101,111,107,91,91,109,104,107,104,115,107,105,104,100,102,90,105,104,102,102,103,97,97,106,107,104,106,104,98,100,88,105,99,110,99,113,113,104,100,94,112,96,98,101,88,109,93,120,101,107,95,103,98,110,100,102,113,102,103,110,93,98,98,121,108,95,100,101,97,120,112,108,94,106,99,111,104,104,96,99,134,100,100,107,95,100,111,112,109,99,113,101,107,86,113,80,107,114,97,110,110,103,112,102,100,96,106,93,104,112,113,113,108,100,109,100,104,112,102,99,107,111,106,106,106,104,90,103,103,118,110,111,93,104,109,103,100,106,100,111,106,105,99,106,99,89,100,107,109,109,87,101,102,98,107,110,110,101,106,100,113,101,110,113,111,95,100,113,109,105,102,116,112,100,126,103,103,104,105,107,103,107,91,98,110,92,105,103,96,102,95,106,93,98,95,111,108,106,102,104,97,99,98,111,94,111,110,100,95,116,109,104,100,111,110,94,110,105,102,104,99,109,108,106,107,98,102,96,95,104,100,93,101,102,88,88,90,106,106,100,96,91,109,99,105,95,95,123,98,103,92,105,103,89,113,103,101,97,103,112,101,113,108,99,102,94,102,89,96,98,97,99,77,110,96,103,104,106,111,97,98,107,99,102,107,111,96,102,107,103,120,94,116,99,91,113,95,109,107,102,109,92,100,102,93,101,110,84,105,101,105,95,107,108,114,100,98,97,107,95,109,100,104,109,99,93,106,113,106,102,99,104,108,98,99,103,104,107,106,99,93,96,102,96,92,107,97,96,94,100,110,106,110,100,115,106,103,107,96,96,104,105,101,97,103,101,111,95,101,103,106,93,107,99,100,95,100,113,99,109,106,94,114,126,110,102,105,113,109,119,103,105,105,114,89,100,112,99,102,95,98,101,105,124,109,109,105,104,104,105,90,97,106,99,95,111,95,104,104,105,106,86,105,94,103,95,98,108,99,112,98,101,111,94,95,103,109,105,101,98,114,108,117,95,94,98,110,102,111,96,102,109,93,129,95,114,105,93,110,99,118,104,106,106,108,103,95,100,101,114,73,101,96,98,104,99,104,104,104,106,100,101,118,106,98,95,97,103,100,106,106,94,109,112,107,102,115,102,100,107,104,96,113,101,99,92,102,102,96,95,112,104,101,108,102,103,107,109,109,104,104,115,94,86,105,104,108,107,113,106,118,94,96,99,91,105,94,109,103,104,103,110,96,96,102,109,116,114,106,109,71,108,91,117,98,107,100,102,109,95,101,105,105,113,100,95,101,106,116,96,104,111,106,139,104,99,104,99,117,111,102,126,104,101,105,100,102,100,104,104,98,101,107,96,97,98,101,113,108,106,111,98,97,113,114,104,94,105,107,114,103,108,107,94,100,97,107,90,109,106,118,120,102,105,90,98,98,117,110,107,96,100,94,117,111,99,112,99,109,103,101,103,100,98,91,103,90,103,120,107,90,98,100,101,105,100,105,101,109,103,98,109,99,95,120,92,64,101,112,103,109,101,94,113,97,105,101,100,99,94,95,104,102,73,107,99,92,97,108,120,104,108,98,109,110,117,103,120,125,117,103,106,104,112,128,103,110,110,122,110,106,107,97,103,99,102,100,102,106,110,107,94,98,100,104,96,107,101,105,100,114,101,97,98,109,91,91,117,100,117,101,110,99,98,97,100,99,97,109,105,95,101,114,107,110,101,110,106,90,115,104,93,108,125,102,104,109,91,115,108,92,110,100,107,109,98,99,101,120,96,107,113,116,95,106,106,105,100,102,104,102,106,91,102,112,93,116,109,95,95,119,107,108,108,117,99,113,116,108,108,111,96,99,115,96,102,102,117,110,110,101,112,107,95,97,112,105,113,102,109,105,78,101,101,95,114,124,110,120,102,95,100,109,119,117,109,100,101,102,104,114,99,112,109,94,107,90,103,111,112,100,99,108,103,108,100,76,112,104,101,96,99,98,93,99,107,98,113,110,101,108,109,104,107,106,108,102,107,109,106,109,121,97,108,106,116,94,117,117,106,112,113,95,106,115,112,106,109,105,107,94,112,87,101,114,102,106,111,98,103,106,108,100,112,108,107,114,107,107,113,127,107,109,110,103,106,117,109,106,124,102,106,102,110,107,106,108,110,109,113,69,101,104,109,106,112,108,112,112,121,119,113,104,110,105,91,116,102,113,101,94,106,112,108,97,108,96,107,113,95,104,116,110,106,109,115,91,95,102,102,97,117,110,82,108,104,99,104,102,101,99,99,106,100,110,111,101,105,119,96,108,102,118,98,98,105,114,103,89,107,97,105,98,119,106,117,115,96,101,112,113,101,100,94,114,93,103,102,92,93,107,102,103,109,107,102,83,97,99,109,104,100,111,106,102,113,108,113,105,93,105,111,104,114,98,104,113,100,114,114,110,97,107,97,103,107,107,92,102,90,108,101,99,106,131,107,91,111,101,114,106,111,102,104,107,90,105,102,112,119,105,105,107,100,106,111,113,109,106,99,121,113,98,102,108,108,111,116,114,95,125,107,104,107,98,104,94,96,108,99,105,103,114,107,102,117,103,105,104,120,110,104,115,117,91,105,102,94,112,120,96,98,95,94,105,106,112,104,118,102,111,98,107,116,94,114,94,105,100,80,101,94,117,108,104,104,97,108,120,120,119,102,101,116,103,128,108,103,99,102,104,123,110,109,96,103,104,121,107,86,121,109,110,109,109,104,106,117,117,116,107,108,111,108,94,101,103,105,111,104,115,115,107,98,104,120,118,120,99,108,99,100,99,109,108,92,95,109,102,98,107,141,106,101,99,103,102,101,89,102,111,111,111,97,129,111,107,104,133,108,100,103,95,108,106,106,103,108,98,107,112,112,105,97,97,110,104,109,107,107,111,97,97,107,102,107,107,111,109,107,106,107,101,97,105,97,94,96,109,105,108,90,111,112,105,125,114,104,101,109,102,115,110,114,101,89,97,125,106,120,106,101,104,104,99,116,106,100,98,94,91,104,113,102,113,109,110,111,106,102,91,114,103,96,96,99,111,106,104,101,112,130,108,106,100,107,102,93,100,100,113,115,104,108,103,110,88,109,97,105,107,107,108,97,100,95,85,101,106,108,103,106,115,123,105,114,103,104,102,107,99,99,109,104,99,118,99,107,109,98,118,101,99,107,92,99,90,118,109,107,100,101,103,106,90,99,104,109,107,92,110,104,101,102,95,105,102,107,112,102,112,103,110,103,97,103,93,109,112,88,102,113,109,116,109,99,100,114,103,112,107,93,104,108,99,100,112,105,98,114,109,112,102,107,113,97,106,107,101,110,107,102,103,96,113,100,115,98,95,101,108,98,109,100,101,104,105,116,98,94,101,109,106,116,101,112,99,112,104,116,103,108,109,101,105,98,103,123,108,107,108,109,83,103,88,102,105,113,91,98,111,103,117,106,101,100,91,100,104,103,92,99,121,99,102,100,109,101,93,112,104,99,103,100,113,105,102,108,102,114,101,106,107,97,114,103,117,104,102,122,110,105,114,98,111,112,113,119,105,102,102,108,100,104,97,100,113,100,132,112,101,98,105,108,108,110,112,114,115,112,116,93,119,103,108,100,97,96,107,106,109,102,112,105,107,103,100,107,98,108,100,102,95,102,95,112,112,103,97,105,99,97,91,112,103,103,125,103,110,101,105,109,108,103,96,124,112,99,101,98,101,107,78,109,107,103,110,98,108,102,102,112,102,108,104,106,108,103,116,103,110,111,104,94,100,106,98,103,107,111,106,105,111,109,101,94,101,110,108,93,109,110,92,116,106,108,111,109,107,101,115,108,107,112,110,107,99,107,108,122,109,113,110,108,110,111,109,99,100,111,108,103,105,113,105,94,112,104,106,106,105,95,109,93,107,109,105,113,104,104,100,100,104,107,104,110,95,99,110,108,67,109,99,102,91,95,103,102,105,100,103,101,117,102,117,111,108,106,106,96,101,100,108,109,103,110,96,97,104,115,98,97,109,106,116,113,98,115,92,105,116,112,107,102,106,101,105,107,103,106,112,91,104,98,125,108,104,87,104,97,103,102,97,99,116,108,102,118,106,97,108,102,91,107,102,106,98, +632.33545,76,102,96,99,103,99,102,102,94,110,106,106,100,113,104,112,91,108,99,106,112,124,96,110,96,95,110,101,98,100,95,101,101,97,121,104,113,114,112,108,116,104,103,95,109,110,118,113,99,101,104,113,107,114,111,92,107,97,115,95,92,98,101,102,102,113,98,87,108,116,97,105,96,105,98,107,94,94,87,98,104,95,104,105,109,92,102,105,101,111,102,102,107,96,94,88,111,108,100,90,104,104,106,109,93,103,96,105,102,100,105,95,103,99,99,106,78,95,111,102,101,113,88,106,105,137,102,105,93,106,105,103,107,119,106,102,103,114,108,116,104,104,91,107,106,104,110,111,99,112,105,97,98,106,102,113,115,98,107,104,101,104,103,94,107,91,107,112,102,92,114,107,79,96,114,103,105,110,120,105,108,112,102,96,117,101,86,98,110,101,98,95,103,105,101,97,109,107,105,112,94,106,92,107,97,107,98,103,87,118,95,97,100,108,108,100,108,101,92,106,110,111,100,117,102,108,96,105,105,99,107,107,107,95,110,113,107,109,105,102,97,103,97,99,105,110,90,109,97,126,103,99,94,115,96,99,98,108,90,99,95,100,94,106,94,102,98,97,109,98,122,94,101,92,96,99,102,105,101,100,104,110,114,103,108,107,94,94,94,102,101,98,99,100,101,109,100,106,106,113,105,105,108,98,106,112,103,100,99,102,99,119,97,95,104,104,101,120,106,99,112,115,104,103,105,102,100,94,92,105,103,101,102,105,100,110,96,104,97,90,108,79,95,109,103,116,105,109,109,102,96,105,107,108,99,107,104,111,105,91,115,110,100,108,87,116,105,109,103,105,107,96,102,104,110,97,99,109,97,113,101,110,93,103,108,106,117,83,100,104,105,96,93,97,96,103,108,101,101,112,106,98,92,101,100,107,100,109,101,91,92,107,105,111,100,97,107,111,109,104,101,100,99,106,101,110,102,98,92,104,101,109,96,95,94,106,99,107,91,107,113,100,109,99,101,97,97,104,118,100,90,101,100,104,98,105,110,112,99,105,95,103,98,113,91,113,91,107,91,95,95,113,117,113,109,100,104,106,111,108,101,117,109,105,97,105,111,113,104,100,134,96,96,102,100,96,94,102,108,108,104,107,98,121,95,108,95,103,108,99,98,112,113,102,94,120,113,97,100,95,121,113,103,101,105,101,101,106,108,98,102,104,109,101,111,107,106,112,117,99,98,118,98,95,105,104,117,102,84,107,93,103,114,101,101,100,104,101,103,92,106,109,104,107,103,106,103,99,103,101,97,97,102,92,112,95,112,105,105,100,121,114,90,97,98,104,111,110,111,106,111,95,99,95,104,98,110,112,117,107,108,109,100,100,107,105,92,99,99,112,120,108,104,103,111,101,106,98,110,103,122,109,111,84,95,103,103,104,112,107,102,100,100,105,106,117,104,106,105,100,115,106,108,94,100,105,108,87,111,108,98,110,111,114,100,109,99,103,93,101,111,107,111,105,105,91,119,99,109,102,108,101,110,104,110,109,99,107,112,86,104,105,101,95,91,111,97,107,102,98,110,106,103,99,90,106,102,96,93,100,86,98,105,92,114,95,113,107,104,107,102,98,102,111,95,97,92,100,106,104,101,117,107,102,103,100,108,106,109,109,102,98,114,97,102,118,104,110,115,114,107,100,108,101,103,110,95,103,97,87,109,103,92,98,103,104,118,90,110,100,97,121,113,107,92,114,81,116,99,107,95,99,109,99,97,102,103,110,104,104,122,102,104,106,109,115,107,111,99,93,115,107,103,100,113,94,99,100,99,103,98,104,101,106,97,77,101,105,106,104,111,104,107,99,95,99,108,99,98,102,113,92,89,104,100,110,87,113,107,110,113,96,105,96,116,101,109,109,113,90,96,115,105,103,95,108,95,93,110,94,111,107,93,94,98,108,112,106,102,104,87,101,100,104,108,103,116,97,102,106,111,109,101,102,114,104,88,102,109,98,101,113,101,116,103,91,100,105,112,102,100,102,101,108,107,95,119,113,100,103,95,103,108,108,97,112,102,106,91,109,102,101,104,104,109,109,101,105,106,109,111,113,104,82,106,99,96,99,107,103,104,105,109,104,113,97,103,103,111,99,96,99,108,113,85,92,96,100,87,109,116,98,97,122,111,94,87,101,99,102,105,89,102,98,75,91,107,94,112,100,107,109,103,89,93,105,99,111,87,81,101,105,99,101,101,97,112,101,100,93,95,103,102,103,106,102,117,109,86,113,95,99,100,99,94,105,110,103,102,107,116,109,113,110,105,103,96,98,114,101,99,122,109,110,113,109,110,99,110,101,87,107,113,95,110,106,115,126,109,126,113,105,101,108,101,105,107,113,109,96,127,104,99,90,123,102,125,103,100,107,108,98,124,105,100,118,91,100,102,125,90,109,109,87,99,108,104,106,93,93,121,93,84,103,102,101,102,96,119,105,110,106,100,104,92,91,98,98,99,100,103,91,112,108,102,104,96,95,117,107,103,98,119,95,109,97,96,104,103,115,99,98,104,100,88,112,100,110,97,105,116,107,103,102,100,106,109,112,110,93,100,92,101,109,117,94,109,108,111,106,101,119,103,110,93,98,105,104,105,101,107,92,109,103,108,92,106,97,103,89,96,104,100,108,108,115,112,109,101,104,101,103,106,103,107,102,103,104,108,111,100,110,107,110,96,121,95,92,108,102,107,106,107,116,111,105,103,107,112,103,117,109,105,106,104,112,95,100,107,114,107,102,110,99,110,103,111,104,98,100,99,101,103,104,114,93,109,111,108,108,98,104,107,87,102,105,105,101,104,96,112,102,110,102,98,99,97,101,98,83,109,99,106,105,101,98,109,95,94,100,94,99,106,103,109,98,100,105,104,105,105,99,93,89,110,116,110,98,99,94,107,113,100,100,100,110,95,105,102,102,101,112,94,115,108,109,107,98,97,101,106,106,102,97,102,109,103,114,105,97,111,100,103,99,108,109,102,107,105,111,82,102,104,99,125,110,94,126,106,105,105,112,106,99,102,103,113,100,105,104,87,103,95,106,105,92,100,96,108,104,110,113,111,105,106,105,111,110,108,95,98,110,106,104,114,80,100,113,102,101,96,99,102,91,96,111,101,98,98,108,93,105,104,109,107,100,95,114,106,108,90,105,102,113,102,100,120,100,104,99,82,98,109,108,112,93,96,100,106,109,97,103,102,102,106,100,108,105,97,99,87,106,111,100,117,86,115,99,110,103,116,99,96,104,120,106,95,95,113,94,111,98,113,109,96,74,114,107,100,97,100,103,94,98,110,102,96,78,105,101,96,106,96,98,96,103,57,100,106,99,100,112,109,111,102,116,106,100,100,103,112,96,108,100,103,71,102,123,105,93,93,107,105,99,97,96,105,98,96,102,101,100,95,95,93,100,102,100,95,91,103,102,95,94,113,100,113,107,106,101,117,115,100,106,102,107,96,98,103,101,86,108,100,119,109,102,100,99,107,83,111,102,96,104,109,103,106,94,99,100,100,107,111,95,112,100,100,112,112,96,98,99,94,107,100,101,111,98,104,90,102,108,106,91,98,88,102,96,102,106,98,104,95,106,97,103,106,113,91,109,95,106,107,106,111,104,114,105,106,99,104,108,111,105,108,100,102,105,96,119,96,98,101,105,98,104,93,105,108,106,114,109,108,103,105,106,121,112,103,100,99,89,102,94,110,115,96,105,100,98,105,104,101,102,99,106,115,105,108,102,114,91,95,98,127,94,97,99,112,96,103,102,102,105,112,105,94,108,93,104,114,104,102,109,97,95,118,101,105,103,92,104,94,101,113,101,106,115,101,96,101,101,79,93,105,103,99,109,100,99,112,129,91,104,103,92,104,98,98,115,100,103,83,110,93,109,96,100,109,111,100,106,109,121,99,104,97,118,108,97,104,110,90,104,103,109,92,97,107,106,99,82,101,95,108,109,107,108,86,73,108,100,88,106,107,100,109,106,94,97,107,110,100,109,105,102,106,112,104,103,108,108,93,96,97,102,98,97,100,93,103,95,116,105,109,122,95,106,109,109,107,109,102,115,99,104,98,99,103,108,105,98,102,106,100,102,106,90,90,102,110,94,103,105,91,108,84,95,116,105,110,106,113,101,104,113,112,104,90,95,102,107,102,104,113,107,100,104,96,115,114,106,107,97,105,111,113,103,97,97,111,103,98,99,100,104,110,101,104,108,105,101,115,102,101,109,113,107,99,108,102,104,97,133,109,114,109,101,99,109,104,105,108,109,112,105,107,105,102,112,91,88,105,95,97,111,113,103,101,94,103,98,97,100,99,104,101,96,98,126,104,116,110,112,93,93,105,96,95,104,88,110,103,116,91,106,111,106,105,103,102,70,94,99,79,100,98,105,107,133,94,106,103,108,104,103,84,117,103,113,121,108,93,109,106,99,100,109,99,127,113,100,94,100,107,109,105,95,98,97,105,94,103,103,108,92,99,90,105,89,104,100,93,98,96,95,104,103,104,103,115,100,91,104,107,95,100,115,114,104,93,117,113,97,95,99,108,103,91,74,108,93,101,107,111,99,104,102,99,115,102,107,99,95,101,103,95,113,101,102,108,105,109,93,104,92,105,105,99,99,96,101,112,117,97,104,100,99,105,91,94,89,102,111,103,90,106,107,106,101,102,103,112,105,95,100,111,102,103,106,107,100,94,106,78,99,114,106,107,100,120,114,105,107,102,105,102,103,106,119,101,109,90,108,100,107,114,103,102,95,98,99,102,89,95,113,95,116,97,108,104,93,98,101,95,99,106,91,105,114,100,97,105,102,113,107,104,96,105,101,103,98,110,106,98,106,97,106,109,100,105,105,99,92,116,111,115,96,108,99, +632.47656,110,102,102,102,98,95,101,95,102,98,76,112,106,102,94,118,109,103,102,112,105,90,99,107,103,98,91,103,116,109,104,94,90,92,100,103,101,101,100,91,117,103,102,101,108,109,94,92,98,117,101,111,97,102,106,96,100,103,104,92,97,111,116,72,101,114,109,101,120,99,95,94,89,110,101,113,110,89,113,96,106,115,90,110,103,92,104,102,99,110,120,111,121,109,94,91,102,101,115,113,101,109,106,98,102,106,99,107,105,109,91,113,99,111,106,90,97,112,106,114,109,97,107,119,104,108,95,106,115,106,108,112,104,110,114,103,103,121,106,105,111,95,122,101,101,116,101,104,94,107,104,103,99,116,94,113,93,97,106,117,106,108,113,103,103,111,106,112,101,103,106,103,95,103,111,103,112,83,98,109,111,98,115,97,100,105,109,94,107,102,98,100,116,100,106,109,107,100,99,101,100,100,98,106,104,103,93,104,110,110,98,106,104,130,96,105,97,107,104,104,112,112,106,95,99,102,90,103,104,107,98,112,113,129,112,110,107,108,117,103,115,102,105,101,101,104,96,100,109,113,108,117,101,108,111,102,104,104,104,110,101,109,105,99,108,96,111,91,98,105,105,104,106,116,101,109,113,98,87,99,103,114,104,102,111,104,94,107,105,114,101,102,102,103,111,99,98,100,95,124,96,112,105,113,95,102,108,109,105,103,95,112,121,100,103,98,113,105,99,110,99,97,110,128,108,98,114,90,108,115,110,108,125,110,109,114,104,101,107,108,106,102,104,100,103,104,93,96,111,93,108,117,96,96,104,102,106,103,107,96,106,106,110,100,107,88,117,105,82,101,106,114,97,83,109,101,109,107,100,105,102,105,97,110,107,98,104,102,115,112,106,111,96,104,100,93,102,110,117,116,102,88,94,100,98,101,100,98,99,106,101,100,102,98,87,111,105,104,104,89,102,105,85,114,106,109,100,100,101,99,106,95,103,112,100,115,93,113,105,100,101,100,99,123,97,102,107,109,109,119,92,110,109,101,120,102,113,105,98,114,107,117,103,100,116,113,105,98,90,99,97,101,98,105,101,95,109,112,115,113,99,98,113,97,103,108,107,108,104,103,100,125,104,112,105,98,110,99,98,102,97,107,101,95,104,110,115,113,103,110,105,100,95,94,105,101,114,85,107,92,102,100,97,104,105,108,99,103,109,105,96,105,99,108,111,128,106,112,112,102,102,113,111,96,112,114,109,106,100,99,102,111,102,108,102,117,95,93,99,102,100,105,99,105,95,103,110,108,99,101,90,105,105,107,93,106,102,98,106,110,95,98,97,106,75,108,113,113,100,111,113,95,108,94,104,111,109,89,96,115,97,107,103,95,92,98,100,122,113,98,105,130,125,92,109,108,114,97,104,94,102,113,111,102,108,104,99,100,96,109,106,95,96,106,106,106,99,91,99,107,121,116,105,96,102,98,94,108,95,99,85,105,103,100,104,109,106,105,106,95,104,107,108,116,98,83,108,101,116,114,100,106,90,99,101,98,95,100,120,107,105,109,105,96,110,103,102,114,105,100,93,106,106,109,106,94,119,100,98,103,107,93,94,105,109,112,107,95,109,104,103,104,111,101,96,105,79,99,107,89,113,104,107,94,71,94,110,102,109,95,96,113,105,101,104,119,98,101,95,103,105,95,111,103,107,92,86,116,117,104,98,106,105,110,103,102,108,111,100,103,106,111,99,117,103,96,91,108,116,99,110,108,110,103,93,105,115,128,100,88,97,111,102,102,102,104,96,117,91,103,111,104,102,114,104,109,96,103,97,101,105,86,104,102,110,107,99,106,104,99,114,96,111,100,103,113,98,106,107,97,110,99,106,107,101,122,117,122,108,101,109,109,113,98,98,107,98,104,113,104,96,95,113,95,109,93,92,97,111,102,97,106,101,101,95,105,119,90,96,96,115,99,105,97,100,109,102,111,93,95,113,111,114,118,95,99,108,99,63,102,104,101,98,115,101,106,97,105,96,101,94,106,101,99,102,84,113,102,116,106,109,91,104,100,112,112,109,99,100,99,110,126,103,103,105,109,107,109,103,106,105,92,109,98,106,102,112,109,95,101,121,102,118,98,103,100,110,104,109,100,104,102,99,112,98,112,101,103,94,117,96,117,115,120,122,108,103,102,107,104,119,104,110,95,103,101,111,102,106,90,100,103,109,102,110,91,103,80,100,102,100,99,101,100,109,114,105,104,103,95,96,98,104,111,102,95,99,103,107,116,96,97,103,101,105,97,95,98,121,114,104,102,89,97,111,102,104,100,107,111,114,103,109,104,123,81,96,100,119,110,124,98,110,107,105,98,99,119,112,115,130,89,116,105,111,114,110,122,111,111,123,97,99,94,108,99,113,105,102,106,94,114,106,110,98,103,98,109,95,93,101,108,94,117,109,113,98,97,105,100,94,110,97,96,103,104,106,81,103,96,92,101,116,84,101,114,108,107,104,98,109,104,97,103,115,95,106,118,99,108,96,106,102,105,117,113,96,104,94,104,104,105,113,101,109,107,104,106,106,104,102,118,109,107,110,110,98,96,107,104,98,99,112,102,119,106,88,94,112,108,107,103,117,101,105,104,105,101,106,103,101,94,111,96,95,127,124,104,98,108,101,110,107,107,103,97,111,107,111,108,111,107,102,88,106,101,108,87,108,102,111,99,114,106,103,102,104,94,109,106,97,108,107,98,107,113,104,113,113,97,98,110,88,101,107,102,100,116,93,83,101,100,131,102,104,110,101,102,110,109,92,109,100,108,107,104,107,109,111,98,98,121,107,107,104,108,122,98,92,92,112,103,120,102,108,84,97,100,102,109,112,95,104,110,118,103,111,118,113,107,109,78,112,125,108,97,92,104,103,113,105,94,116,91,106,95,110,111,113,102,107,113,106,109,105,102,101,94,104,106,111,103,109,102,104,106,106,105,95,92,99,106,89,99,107,121,94,96,106,109,105,117,104,106,115,109,103,86,120,93,96,98,95,99,117,102,112,103,102,104,102,94,111,103,104,103,111,92,102,93,104,114,90,99,109,103,113,106,101,106,101,114,107,104,99,105,106,87,97,117,90,111,91,109,101,106,93,107,100,101,87,97,80,112,107,108,117,101,113,99,99,88,108,106,106,100,101,87,105,100,102,101,96,112,101,95,107,98,99,101,125,107,110,110,108,101,114,97,105,107,90,106,86,99,101,104,103,93,109,106,106,103,115,105,108,105,102,120,104,109,106,111,109,107,105,94,98,103,101,74,109,90,114,98,102,105,113,103,91,113,115,111,93,109,108,113,116,103,103,99,95,98,103,100,109,103,77,107,102,92,100,122,80,99,98,108,97,85,85,99,91,102,102,106,109,103,98,103,106,107,107,100,95,98,97,116,114,94,95,102,97,102,111,93,95,98,115,110,83,101,99,97,112,101,98,107,103,100,101,103,115,112,91,121,105,100,92,101,103,95,102,101,101,102,109,99,109,105,103,87,94,101,95,101,94,111,103,110,95,112,101,120,106,102,105,98,83,106,111,119,104,90,95,99,109,97,102,107,113,119,96,103,102,90,99,105,111,93,104,102,97,111,106,104,106,104,108,98,109,107,98,64,102,109,105,112,111,100,99,97,99,121,105,94,92,109,99,112,102,122,85,72,115,94,111,100,105,113,119,105,98,94,105,122,96,108,100,100,84,104,102,101,96,102,120,108,110,101,102,106,103,100,100,99,109,103,107,108,99,106,102,102,103,107,111,114,106,97,103,106,79,106,95,115,109,100,99,100,97,98,112,103,98,100,95,108,102,90,96,109,98,101,112,106,100,112,94,103,103,99,98,106,94,108,106,106,110,97,102,105,104,99,92,112,101,106,99,101,93,102,85,97,94,109,120,87,99,96,88,93,106,107,77,99,100,105,91,93,117,107,135,104,94,104,96,116,104,106,96,106,99,109,109,109,73,103,72,102,89,109,105,101,104,106,110,96,95,97,107,99,112,115,99,96,100,110,108,104,116,103,104,103,94,106,112,108,103,108,104,101,104,105,96,101,122,110,107,104,98,98,100,113,104,103,102,107,104,112,95,106,134,108,99,98,102,103,103,116,91,101,103,93,100,98,110,115,91,99,102,100,111,95,101,112,96,99,108,107,98,101,99,98,111,104,106,100,101,99,98,97,112,99,112,94,109,96,108,102,109,101,105,81,105,105,116,101,110,100,102,95,106,106,100,101,108,99,97,113,106,112,99,99,104,105,95,104,114,101,101,121,102,101,98,109,103,109,97,106,101,94,102,102,108,91,100,80,98,104,95,101,117,100,106,79,111,101,103,99,106,109,105,113,104,112,97,99,117,94,95,95,94,101,102,103,103,106,108,95,106,99,90,97,98,105,102,96,105,112,101,95,100,99,102,95,98,103,101,115,103,106,100,110,111,111,92,114,107,100,107,113,94,106,100,116,121,107,104,109,101,91,97,108,99,103,102,96,105,94,123,95,83,91,102,103,103,113,103,115,95,103,101,103,103,115,104,107,110,95,113,106,100,100,108,101,98,106,108,77,95,104,113,111,99,108,99,100,95,106,107,104,101,116,103,113,107,101,111,115,104,114,102,110,107,116,108,106,102,108,83,105,107,109,113,98,101,101,112,108,102,96,106,129,91,94,80,92,104,115,108,113,112,94,96,98,94,101,89,90,100,96,101,106,103,110,93,100,99,96,100,85,110,98,110,111,96,82,103,105,105,87,103,117,101,104,86,98,81,81,102,102,99,99,102,90,104,101,103,88,112,98,117,102,103,112,111,96,110,114,103,86,108,103,77,111,96,133,110,106,103,94,101,106,107,104,98,91,93,87,98,102,111,87,114,102,87,107,94,87,84,82, +632.61768,114,105,106,105,95,113,105,98,105,106,96,104,97,91,105,96,98,108,111,114,77,95,95,104,99,101,98,105,94,125,95,106,92,106,112,93,104,90,101,104,102,97,92,104,100,106,104,102,79,110,124,94,97,93,96,92,104,91,123,104,101,101,88,113,101,92,104,99,101,97,106,101,106,104,96,100,101,98,102,95,107,96,106,99,82,93,90,112,102,98,94,104,107,95,121,105,111,103,101,107,101,103,86,107,113,100,100,87,102,109,108,93,101,103,104,100,98,97,96,105,109,97,103,110,102,118,103,96,112,103,108,115,101,105,104,108,106,101,91,97,97,109,95,102,95,98,96,95,116,102,125,112,97,98,104,100,109,101,94,87,95,95,95,98,122,114,104,106,98,100,97,90,103,76,110,113,102,97,113,109,109,118,103,100,94,105,108,107,87,105,108,96,106,104,96,95,106,101,99,84,116,96,102,94,91,102,105,99,125,114,97,112,108,116,77,100,106,106,82,102,105,93,103,91,107,107,100,110,91,108,100,96,104,94,97,113,104,106,105,99,100,109,102,109,100,100,114,99,96,106,108,96,95,111,98,115,100,88,94,108,100,89,105,118,101,105,109,102,98,106,104,99,108,98,107,99,95,109,101,97,97,112,92,96,102,104,86,114,92,113,97,101,101,112,111,108,100,102,111,104,91,99,102,112,98,112,111,103,91,112,88,99,104,110,100,103,98,96,99,110,92,100,111,127,107,108,106,100,103,117,95,108,108,114,110,98,113,120,104,98,102,98,108,112,98,111,112,114,112,100,105,102,110,103,104,101,108,100,103,103,109,106,94,94,93,92,91,109,96,112,112,105,109,112,111,112,103,106,103,108,104,112,97,104,102,117,111,96,101,107,110,99,96,108,114,102,111,105,95,116,96,96,95,103,97,97,90,106,105,102,103,103,102,93,100,97,97,97,94,78,96,96,95,109,103,98,101,105,107,109,96,102,97,86,86,92,101,110,96,107,108,97,106,102,102,108,102,108,106,114,96,104,110,104,105,104,102,95,92,103,104,104,109,104,104,104,93,107,101,113,98,112,106,97,97,113,95,99,90,105,104,118,103,95,102,104,110,98,103,97,97,112,101,102,92,97,96,95,116,103,89,108,105,109,113,104,100,102,94,109,111,90,116,115,93,99,96,103,107,113,100,105,101,95,105,118,106,106,108,100,91,102,96,100,102,102,104,103,103,110,102,107,87,89,105,108,100,102,99,101,101,101,108,103,92,104,113,100,103,99,102,108,87,110,97,102,100,97,99,108,92,95,106,100,111,102,121,106,93,95,102,104,110,95,97,105,107,115,105,104,109,105,101,113,110,107,94,89,102,92,99,107,88,105,105,106,103,110,98,100,94,103,102,100,112,104,109,101,101,105,117,93,102,110,104,97,91,111,121,106,97,103,95,111,119,104,109,100,100,105,113,111,106,98,106,99,103,111,103,112,108,99,95,108,109,112,96,100,110,96,107,110,125,98,99,98,106,96,112,106,105,90,101,96,109,111,98,97,111,104,96,115,105,105,101,85,89,97,111,118,91,104,105,104,96,94,102,110,112,95,104,104,103,96,104,112,99,105,109,98,112,98,102,97,100,96,97,106,108,88,115,98,100,106,99,98,104,103,101,110,95,107,105,104,107,109,98,98,116,106,127,118,96,99,100,94,106,104,98,107,85,105,95,101,107,102,102,101,98,109,108,109,92,95,104,101,105,98,99,95,108,91,93,90,106,94,113,95,104,113,114,106,106,100,108,104,97,119,91,115,106,106,98,113,104,108,116,98,100,106,113,96,104,104,96,110,114,99,100,100,117,104,101,101,99,94,112,67,94,100,91,113,106,107,103,118,113,131,96,97,108,98,111,106,103,100,102,108,105,112,71,109,106,94,90,99,110,110,97,84,92,102,96,102,104,114,103,105,112,108,104,97,104,105,104,86,100,112,92,120,103,117,114,124,96,110,105,102,100,103,114,93,108,105,96,98,95,91,97,104,108,97,104,103,113,95,112,99,100,98,114,103,101,113,93,107,92,100,92,95,116,115,121,106,106,99,94,110,117,102,107,104,90,99,103,108,96,99,100,104,109,108,114,99,112,108,99,96,106,112,106,106,109,96,105,125,110,104,113,92,95,98,113,106,109,97,104,101,104,109,104,99,105,104,104,108,95,105,97,81,99,95,101,98,96,102,104,95,106,110,102,112,111,96,109,104,94,94,107,103,104,101,109,104,90,106,88,88,97,109,99,90,102,104,101,103,117,102,91,102,94,113,91,112,115,110,100,107,88,104,105,106,101,88,98,95,105,79,100,114,109,102,95,98,103,116,99,117,98,99,107,99,111,102,100,103,96,119,109,111,99,97,100,106,97,106,103,99,112,110,97,84,98,110,99,106,103,95,129,83,92,108,96,95,90,105,102,93,119,106,115,96,91,108,106,96,111,112,112,106,103,109,116,96,116,109,94,93,111,111,109,89,101,94,118,106,113,95,106,101,102,97,98,103,97,96,100,109,88,110,100,105,108,109,106,88,105,102,111,109,107,110,104,98,105,105,110,117,107,108,100,106,98,104,104,99,104,107,120,103,103,108,111,99,115,106,99,90,96,106,124,104,99,112,102,101,113,113,111,98,100,117,105,99,75,113,109,100,111,117,81,93,101,106,101,114,107,123,105,71,98,104,110,112,96,112,108,96,108,107,94,117,105,103,97,108,111,99,100,102,106,109,96,108,94,103,105,108,71,116,119,114,97,109,102,105,105,112,112,100,104,107,106,101,115,105,111,111,98,103,104,102,98,92,103,111,116,110,103,109,113,102,110,112,101,105,98,110,101,110,110,100,84,111,108,101,108,111,110,91,109,85,107,117,105,108,102,98,103,100,101,82,100,105,108,99,116,109,113,117,113,103,106,105,104,114,110,84,105,108,105,103,99,108,103,96,102,105,99,111,88,96,107,99,118,118,109,107,94,112,105,106,103,114,108,92,115,108,85,104,114,104,108,108,117,75,104,103,94,102,97,103,109,118,107,107,98,105,120,108,95,102,94,105,100,107,95,97,105,104,107,96,89,102,95,96,106,109,101,111,103,106,117,109,100,104,80,118,105,102,79,105,101,120,93,95,102,91,97,103,91,94,113,105,113,93,106,99,109,110,92,105,91,105,101,100,97,108,110,108,90,101,112,114,107,98,105,105,107,103,106,107,99,110,90,99,113,111,103,107,96,105,114,110,107,102,106,117,105,100,103,100,99,107,106,103,94,101,102,96,84,96,107,96,106,114,97,110,106,91,95,112,102,92,97,113,101,105,112,98,92,103,106,96,103,104,109,108,106,101,96,100,104,101,97,112,105,99,102,94,92,103,95,107,107,117,105,103,100,102,96,95,101,110,100,106,102,103,119,98,104,95,99,106,95,104,94,98,100,99,104,88,112,100,102,97,106,95,108,103,98,95,98,101,114,99,111,104,107,112,96,106,100,102,114,80,93,106,99,105,106,109,96,106,104,98,101,102,110,101,110,109,96,111,106,113,99,102,108,105,104,117,100,101,105,114,102,94,104,97,105,103,94,104,102,101,90,112,101,103,105,95,106,99,101,102,105,103,97,99,95,101,112,96,104,97,104,103,103,101,76,94,116,99,103,106,106,108,117,108,107,120,111,95,103,102,113,107,108,107,110,102,98,105,113,103,95,104,107,103,96,103,109,110,101,107,92,112,102,96,114,102,101,103,106,109,96,102,106,112,106,103,106,115,104,89,106,103,105,118,125,120,101,116,110,105,107,94,119,109,89,109,108,105,102,97,106,95,105,112,97,105,100,105,108,108,102,109,103,107,97,102,100,111,112,106,111,98,110,111,95,106,109,97,104,100,82,100,109,85,107,108,110,107,109,107,101,106,106,98,107,105,113,106,104,102,113,99,104,100,109,104,100,107,104,104,99,102,98,108,100,111,105,101,111,95,103,94,102,110,104,118,99,112,107,97,98,113,104,104,101,105,92,100,99,104,103,90,110,113,104,99,104,99,99,106,125,102,104,107,100,108,121,99,97,105,113,101,112,102,112,111,100,111,106,119,107,98,107,105,108,113,101,101,101,109,103,102,96,96,101,95,90,113,110,100,106,109,103,108,112,105,92,99,99,103,117,99,102,114,111,113,121,120,100,105,93,98,103,113,112,107,115,95,102,94,101,106,98,120,112,108,112,107,103,96,101,110,107,100,97,101,96,110,77,88,98,103,102,102,106,98,114,99,83,100,94,106,101,115,107,102,90,91,100,99,97,110,104,112,83,112,110,111,110,114,102,120,103,117,113,98,105,112,104,99,102,104,98,106,97,106,105,119,105,98,113,104,97,90,105,78,107,117,95,100,108,107,110,92,108,99,99,107,107,107,106,96,107,111,108,110,112,98,98,101,108,105,100,110,120,103,105,112,100,93,105,99,111,95,101,93,94,96,97,107,102,105,102,80,95,93,107,110,100,96,87,101,107,105,104,99,94,103,107,119,110,111,115,103,98,103,110,100,103,104,98,112,109,101,104,109,140,116,112,106,110,109,103,110,105,99,100,108,117,87,101,100,102,97,103,115,120,104,97,111,105,103,104,95,99,109,105,94,100,86,93,98,116,105,105,100,109,100,110,100,103,102,95,97,110,96,89,104,98,96,106,102,101,98,107,109,116,98,113,87,102,101,115,111,91,97,106,102,117,94,103,99,115,78,119,121,110,109,115,104,107,109,108,111,106,96,82,105,102,97,125,100,116,103,104,96,102,98,91,109,110,99,82,105,104,93,103,102,109,95,99,95,95,102,99,103,100,101,102,99,106,112,91,109,103,108,106,101,110,87,98,98,99,96,93,97,99,86,117,106,97,99,113,102, +632.75885,108,103,106,95,89,110,114,95,84,106,98,107,100,99,115,100,110,111,102,98,117,107,88,101,95,100,121,102,104,101,104,105,94,74,109,93,109,107,99,98,108,96,103,99,104,106,98,119,111,96,111,104,95,102,112,97,97,101,109,93,97,100,100,92,108,109,101,122,95,77,124,98,107,103,91,110,94,102,107,115,104,114,120,85,101,101,103,97,109,98,102,104,108,97,106,101,101,96,88,104,109,118,73,96,101,110,109,108,105,97,100,98,97,92,96,106,98,101,87,103,104,96,114,126,118,105,99,102,103,116,103,122,98,108,106,103,101,102,92,100,96,78,105,108,102,102,114,111,95,102,100,106,99,108,101,121,100,92,101,122,100,107,91,98,106,104,107,106,94,108,92,116,107,92,114,90,108,93,104,86,97,92,91,100,102,91,115,104,114,105,122,108,112,105,97,96,102,96,97,125,108,105,109,106,99,102,90,99,100,100,101,94,112,101,113,110,107,115,111,101,112,106,100,110,96,129,105,109,109,108,100,100,106,129,127,114,107,112,113,102,106,103,111,88,95,101,117,118,109,95,108,106,101,107,102,101,116,103,102,93,105,92,91,107,96,104,101,105,110,105,109,100,101,102,109,118,105,106,98,110,90,112,110,101,95,98,107,97,105,103,96,107,125,101,95,107,106,100,100,103,118,108,94,107,104,119,103,109,102,115,100,110,108,108,110,74,99,107,105,99,113,100,115,91,96,115,98,92,105,109,89,96,98,89,83,96,103,102,99,100,105,102,92,105,109,94,104,97,122,109,99,101,106,98,101,102,98,103,108,121,98,108,98,100,93,91,111,92,97,101,100,105,112,103,100,98,109,108,102,101,100,117,95,108,101,97,107,101,114,110,103,97,99,106,99,92,83,99,104,91,95,102,108,101,98,94,108,107,106,107,92,100,101,106,106,102,110,95,108,104,110,105,101,98,107,103,103,105,96,116,95,90,107,95,109,112,111,107,111,116,116,111,100,105,101,113,105,97,103,103,99,95,99,95,86,110,91,110,105,105,97,102,106,103,103,112,108,99,103,102,112,112,100,96,100,101,92,95,106,103,87,110,108,109,91,107,102,97,96,99,109,104,106,103,104,102,108,98,103,95,100,100,102,100,96,97,94,105,110,108,108,105,92,114,98,102,107,102,98,92,87,99,101,80,111,101,126,112,104,108,92,88,103,118,106,104,109,105,100,103,96,105,106,93,94,103,107,96,109,97,113,102,103,108,101,109,112,96,106,105,100,102,101,105,105,112,98,99,95,113,92,88,100,87,100,120,99,102,109,107,101,84,102,99,94,96,115,113,118,106,115,101,109,92,98,109,112,105,101,98,111,113,107,114,92,93,100,108,95,112,113,104,108,110,114,89,102,98,103,106,107,104,90,91,102,108,99,101,94,105,115,90,106,108,109,108,108,97,117,107,103,100,109,92,108,93,101,101,101,99,97,114,109,107,108,104,105,113,109,99,109,100,104,103,100,103,107,106,109,114,111,100,105,105,103,95,102,93,106,106,113,118,112,90,102,98,101,101,94,106,111,114,101,113,100,110,105,102,101,84,94,92,107,105,95,113,109,103,91,113,102,104,96,99,130,94,109,110,105,96,114,104,106,103,100,90,104,103,104,119,106,111,93,103,100,91,99,101,108,100,100,90,110,111,105,107,97,104,98,99,106,101,114,94,96,107,108,113,99,97,99,112,105,92,96,105,83,104,104,95,100,107,104,89,92,106,88,113,97,97,106,117,103,100,100,105,98,100,122,100,105,117,109,75,110,94,97,107,112,107,96,105,90,111,96,109,101,101,104,108,108,104,95,103,113,98,117,113,103,104,103,106,108,119,112,121,104,110,118,103,102,100,102,106,104,101,99,96,102,102,96,99,113,94,106,101,104,98,97,89,97,106,131,92,91,101,109,97,106,117,93,107,110,111,108,100,100,105,106,91,104,109,100,104,103,109,112,94,102,98,88,109,105,106,92,98,98,114,107,110,114,109,105,110,104,105,80,119,90,97,103,102,104,101,88,108,90,92,100,95,107,99,112,109,101,117,92,118,96,103,112,97,102,103,105,88,127,103,99,98,68,110,96,105,97,95,94,100,98,102,101,95,114,98,108,105,114,97,96,109,111,102,100,104,110,91,90,97,117,108,118,97,101,110,102,97,106,104,111,113,97,109,106,104,90,117,105,101,100,105,98,102,107,109,101,109,101,117,103,103,114,109,113,110,91,105,108,116,103,101,107,98,103,104,100,106,89,87,108,112,98,112,110,108,105,100,106,94,100,94,104,111,111,98,114,103,103,110,118,107,97,109,107,92,112,106,100,119,108,105,122,114,103,94,95,109,122,138,114,115,103,126,116,114,105,98,108,113,101,102,101,112,98,102,101,109,96,110,120,92,104,105,97,112,107,100,105,104,102,109,122,89,100,113,111,110,103,102,95,105,106,120,101,90,103,102,105,108,109,112,103,105,101,99,105,97,93,98,105,112,123,115,100,96,95,103,108,101,102,107,93,105,101,111,112,121,103,107,111,101,106,105,88,106,100,117,97,88,96,103,102,110,112,97,107,107,112,98,98,97,112,103,117,104,106,109,121,95,118,109,98,104,88,113,116,112,98,106,101,106,106,91,97,113,106,98,98,95,106,100,107,98,100,104,104,107,110,97,101,103,98,115,108,99,105,96,105,97,101,99,120,106,105,110,108,103,120,111,98,98,107,104,86,102,91,115,104,116,106,105,105,111,96,97,98,110,101,91,107,110,102,112,108,110,109,104,112,99,116,113,92,102,107,84,107,110,112,109,103,83,103,103,107,106,106,106,100,116,97,98,105,98,93,106,128,107,116,115,92,110,106,115,112,128,114,103,111,108,84,112,115,104,102,98,112,103,116,97,118,103,113,109,117,104,103,115,117,100,103,106,100,105,102,97,126,101,108,102,97,105,101,96,102,97,88,106,105,104,113,87,99,108,110,84,107,102,107,104,118,108,107,95,103,109,104,110,114,97,100,95,90,107,93,114,125,98,113,102,103,122,100,105,108,120,98,109,103,100,104,104,104,110,104,95,109,102,98,114,110,104,113,102,96,116,106,104,100,116,97,110,115,94,108,104,89,102,103,107,103,102,96,87,108,110,115,116,107,113,121,101,110,112,99,105,104,114,114,93,100,105,107,94,100,107,109,102,100,112,101,107,121,103,105,90,105,88,109,113,104,110,107,108,105,109,107,101,102,101,86,102,113,101,111,103,103,96,85,104,93,104,100,95,106,119,106,76,100,113,108,107,115,103,108,97,98,103,91,124,139,89,100,106,95,103,95,107,104,90,107,97,99,104,95,98,95,99,114,103,105,100,115,88,70,98,106,99,108,110,95,103,100,110,120,110,90,103,110,117,113,95,108,113,97,107,105,104,108,104,95,94,104,104,113,103,101,110,106,109,95,94,110,101,114,91,112,110,125,98,103,100,106,110,92,113,110,109,96,106,106,92,106,85,108,100,94,106,116,99,96,111,105,120,110,105,111,111,99,106,97,106,107,113,98,106,110,109,105,108,103,97,96,104,103,100,99,91,96,112,98,100,102,104,123,116,98,98,114,92,97,111,114,98,108,94,111,106,112,98,111,99,102,107,106,111,105,106,101,97,117,103,104,98,113,117,99,118,109,101,113,109,115,91,110,100,108,102,112,111,96,103,97,100,110,93,112,94,98,128,105,93,111,102,100,94,113,104,105,92,100,107,89,88,119,96,102,91,104,96,101,105,102,105,110,116,98,110,113,100,106,98,102,108,104,105,113,102,97,95,98,107,102,112,103,110,107,114,108,98,109,103,96,100,101,100,105,100,105,98,104,99,109,108,95,100,103,102,102,109,99,101,103,112,102,106,103,92,110,94,97,87,106,106,112,103,106,102,103,103,112,110,99,109,105,79,108,106,93,115,94,98,80,112,104,106,112,97,103,122,107,103,111,106,94,110,85,92,104,100,107,103,114,117,96,99,117,89,109,110,117,92,104,98,106,99,105,104,101,110,121,101,100,92,105,103,104,98,102,104,109,103,109,111,98,122,111,109,98,110,101,115,95,96,87,98,99,103,107,100,96,101,104,93,102,121,105,106,91,102,102,112,106,102,104,103,115,109,100,113,107,96,95,107,106,92,94,108,82,100,109,107,119,106,104,115,107,100,104,110,103,112,96,103,110,94,97,96,102,119,101,101,104,101,108,112,103,113,100,90,94,98,107,96,106,92,99,110,109,104,100,103,103,100,117,110,103,90,110,105,101,109,105,110,107,90,115,101,87,116,114,102,109,75,106,108,105,92,95,87,108,119,100,103,116,107,104,99,112,117,114,109,97,120,84,90,105,103,103,106,100,97,106,94,107,105,104,102,109,98,101,106,104,106,108,97,104,117,97,99,102,109,103,118,106,103,110,107,101,105,110,106,97,103,112,103,108,105,99,106,98,93,107,104,101,107,103,107,103,104,103,104,101,107,100,103,99,113,108,93,96,99,113,98,116,117,105,105,116,110,104,110,106,111,113,106,104,109,133,127,101,104,101,110,108,100,103,96,105,99,114,104,90,72,104,110,112,99,104,102,122,95,106,108,106,100,106,97,99,102,102,107,107,92,99,109,103,104,102,96,111,106,104,105,97,105,99,99,106,104,107,102,103,105,108,92,113,96,102,102,103,113,90,110,100,103,103,109,107,97,101,98,124,102,102,116,99,106,105,103,104,99,105,107,97,110,110,102,110,98,98,114,95,93,115,97,112,94,92,107,100,106,105,106,107,87,104,117,95,107,100,106,115,111,102,108,98,99,111,111,100,77,102,107,97,104,77,96,102,102,113,102,106,108,103,108,100,88,110,73,105,101, +632.89996,105,107,102,100,105,100,101,107,96,110,93,94,109,121,116,111,107,106,97,95,107,120,100,106,104,100,107,116,122,104,107,109,111,98,98,104,86,106,97,109,103,76,98,94,110,94,103,102,112,106,122,95,103,100,97,95,98,96,113,102,111,109,99,89,108,94,98,112,104,103,106,97,115,95,94,109,100,79,105,92,99,110,102,113,87,108,87,98,103,98,70,99,84,124,100,97,105,103,117,96,92,105,101,113,100,103,98,113,99,100,91,100,108,108,87,95,98,108,94,107,100,112,100,110,118,97,113,89,94,107,106,92,100,116,101,113,103,84,80,104,101,108,96,114,96,94,102,97,98,95,101,103,92,98,106,106,96,97,93,95,100,109,97,102,106,99,110,102,94,95,92,94,100,109,98,109,98,107,112,104,92,106,95,113,113,96,94,96,99,108,103,111,106,98,106,112,102,92,113,103,109,94,111,110,125,106,101,109,104,98,87,109,109,98,104,95,93,122,83,109,127,93,100,95,100,105,103,121,125,107,99,113,109,95,104,100,106,94,103,108,95,114,103,104,106,109,101,96,107,107,97,113,105,105,106,105,95,94,87,94,102,88,105,118,85,104,112,103,110,105,100,99,122,90,101,107,104,116,96,96,108,91,99,94,106,101,103,97,106,91,96,88,111,98,100,103,105,98,109,98,84,87,114,110,94,110,100,93,108,94,94,111,101,110,103,115,95,106,101,103,90,94,101,102,112,98,114,97,89,104,96,109,101,113,113,98,95,91,114,98,103,102,97,106,110,108,95,105,107,111,112,95,102,104,102,93,113,105,96,101,109,106,98,106,99,106,88,93,110,98,101,92,108,102,104,101,105,101,112,103,93,94,101,109,99,108,107,98,105,103,101,96,102,110,101,94,113,100,115,91,106,95,99,100,89,85,98,109,101,99,100,107,113,91,98,92,116,91,98,98,91,87,103,104,97,101,104,97,101,116,90,99,100,101,95,93,96,99,102,88,101,107,94,101,103,94,91,90,117,106,102,101,97,102,116,106,97,95,102,109,98,103,105,118,105,109,92,101,100,108,99,99,95,112,93,108,103,108,103,104,110,110,124,97,101,102,114,105,112,104,107,107,112,95,103,113,103,96,102,109,109,91,101,100,115,102,98,106,106,108,108,103,85,100,113,108,99,96,108,109,94,92,104,104,107,105,102,107,97,94,107,98,94,97,98,102,102,93,100,111,110,96,87,87,104,102,110,107,105,92,107,97,115,101,110,102,108,97,95,112,94,99,95,105,103,98,105,99,109,94,109,120,102,102,96,90,105,98,108,103,105,95,111,104,109,105,105,104,92,106,99,104,92,104,122,104,102,100,111,99,105,103,105,103,100,89,97,101,103,109,103,100,106,91,109,98,93,93,92,96,103,113,122,97,105,101,97,109,97,110,107,100,100,99,108,111,108,103,119,104,97,95,107,106,98,97,97,101,97,107,102,107,109,94,96,99,106,94,98,102,113,106,109,97,100,103,95,97,101,105,99,98,91,98,100,108,99,112,104,101,114,108,101,93,101,100,99,108,108,113,96,115,103,110,117,86,105,122,94,95,111,109,104,102,118,94,101,100,103,103,103,102,118,96,95,117,95,110,110,97,104,102,107,121,108,98,103,97,100,109,107,105,111,71,108,104,105,95,111,107,116,98,107,105,130,91,113,105,94,100,93,104,103,97,92,105,102,111,113,99,102,113,106,112,89,116,84,98,104,105,99,113,104,106,114,106,109,101,106,105,110,103,109,91,89,107,100,109,95,100,113,111,95,99,99,105,106,102,109,99,101,110,109,98,101,99,101,111,113,111,111,99,108,101,113,105,98,96,111,101,96,112,106,108,108,109,104,99,105,95,121,102,100,113,97,94,113,107,108,99,96,103,101,102,102,115,106,98,112,101,94,125,102,102,98,93,111,108,107,110,115,104,99,105,101,113,97,114,103,110,108,95,110,99,90,105,111,98,95,108,102,104,106,101,105,106,96,120,99,91,111,103,98,104,112,92,93,105,111,103,101,108,104,97,108,79,97,99,103,100,90,109,108,103,93,109,98,79,96,118,100,93,106,96,108,97,107,108,106,98,100,95,110,109,102,63,91,105,106,107,103,105,96,93,116,96,102,105,88,102,100,90,113,114,103,92,105,111,94,104,105,113,105,104,103,99,108,97,92,103,105,112,108,107,103,91,106,99,90,95,106,95,105,102,108,102,105,103,92,100,97,124,95,105,102,97,102,101,95,111,111,114,129,101,101,105,99,90,103,102,106,101,95,103,109,106,105,103,125,95,113,103,108,99,106,100,103,95,103,118,103,113,103,98,95,83,111,111,114,113,99,112,96,106,114,108,111,113,105,116,108,112,110,102,93,98,92,100,90,106,100,109,106,98,97,105,91,112,105,108,95,106,118,99,99,105,101,101,101,90,91,101,99,103,109,121,106,103,107,115,108,93,104,112,95,108,99,103,108,113,97,91,92,99,103,106,96,115,113,107,102,103,117,101,99,74,109,93,109,107,113,104,99,105,114,112,112,106,134,104,112,110,110,99,100,101,92,98,109,94,109,98,94,106,99,101,105,96,103,100,108,99,101,103,112,102,111,101,113,98,108,101,107,99,113,99,101,101,98,94,113,101,112,103,103,102,107,94,117,112,94,91,101,95,111,104,109,94,104,113,98,91,88,111,113,100,103,102,109,104,106,104,108,112,100,102,101,107,98,107,118,102,110,103,110,108,89,111,109,83,102,104,84,105,103,100,109,107,110,109,118,116,102,107,116,93,105,117,110,112,103,114,105,83,97,109,99,115,108,108,101,109,107,103,103,111,94,106,104,110,91,109,116,105,106,95,102,94,100,110,85,95,105,120,115,91,106,116,107,105,104,92,103,101,95,100,107,112,111,85,105,111,98,115,110,104,95,108,107,109,96,111,97,107,108,105,103,108,103,97,116,98,94,84,99,126,104,109,105,96,105,94,88,103,110,117,113,90,106,101,96,98,98,110,116,110,98,108,98,102,100,96,100,103,104,101,124,108,114,106,92,97,98,100,87,108,103,99,112,87,109,94,103,105,111,94,103,104,88,112,104,106,102,101,101,99,85,114,108,106,99,96,103,111,107,108,109,102,103,97,104,112,101,111,102,99,109,96,100,106,109,89,100,97,103,106,100,122,108,113,96,105,100,108,108,98,112,111,127,108,103,109,96,95,86,107,93,105,112,94,99,104,107,111,104,102,103,109,109,122,99,94,104,112,103,112,98,104,95,91,100,108,112,106,106,103,103,100,109,103,112,98,98,105,110,113,100,100,98,102,100,101,110,125,96,106,123,110,99,93,105,97,95,97,104,102,104,103,109,95,100,97,99,101,108,113,103,105,113,105,97,103,100,83,95,102,102,104,98,102,106,103,107,98,104,110,121,87,109,99,99,97,90,105,99,107,95,114,95,101,122,108,106,112,94,112,109,99,116,108,117,110,102,113,106,108,110,114,104,97,106,101,121,115,103,106,103,116,107,104,104,73,97,101,111,109,104,102,106,100,117,106,105,112,116,92,103,95,124,108,97,97,99,114,106,100,98,105,105,107,96,99,106,101,107,102,105,108,120,112,99,104,115,116,102,108,99,115,115,107,105,106,107,111,104,102,115,103,109,102,108,112,90,107,93,99,104,105,106,104,94,98,102,92,97,108,110,106,105,108,109,92,100,95,107,101,112,94,113,97,107,107,100,112,107,97,72,112,109,88,91,100,103,105,99,107,106,104,103,111,102,108,100,112,111,112,108,113,109,108,107,96,111,112,113,115,103,104,101,99,107,107,91,101,95,103,99,101,111,96,88,109,104,101,109,109,85,71,106,109,107,102,112,111,106,101,101,99,100,110,96,107,121,93,109,105,96,98,110,101,113,96,115,103,117,103,104,104,129,105,121,106,113,116,102,103,107,95,98,103,102,117,97,96,116,110,100,99,105,109,98,114,103,96,105,95,95,106,115,107,104,101,120,117,111,111,116,105,94,105,102,103,99,119,108,107,72,84,113,101,105,103,105,101,112,107,105,100,102,105,103,108,110,111,109,105,100,112,108,116,111,101,107,112,99,101,112,110,113,98,101,110,101,101,106,109,113,105,104,103,100,99,109,96,99,104,108,99,94,96,101,113,105,100,113,115,100,113,123,71,106,113,108,99,111,102,108,103,113,107,103,103,103,101,108,102,116,105,104,94,100,108,113,110,106,109,108,109,105,111,117,102,106,100,99,106,106,103,100,112,108,102,106,106,102,100,100,107,113,107,96,103,103,117,113,95,99,112,100,98,105,94,103,96,102,131,102,110,91,103,115,92,104,105,119,109,86,102,107,109,96,111,123,108,99,105,106,116,102,98,106,104,96,109,109,113,113,97,103,101,106,94,99,95,102,93,105,113,103,100,107,105,108,114,99,115,105,103,109,103,88,95,102,97,111,108,106,107,103,97,93,99,96,111,98,108,122,119,89,96,99,104,106,99,93,94,102,97,101,108,102,109,103,91,108,107,109,96,93,100,109,117,109,96,103,109,106,100,100,98,97,93,94,103,113,106,103,113,117,107,107,101,103,110,96,89,115,103,98,96,115,104,101,94,109,98,112,110,111,101,97,106,105,106,92,122,105,95,104,111,98,93,95,110,94,106,107,113,112,106,115,109,96,113,104,91,109,93,112,100,111,108,118,121,105,102,124,108,121,97,102,86,128,100,121,110,100,97,100,102,107,106,101,105,102,80,102,105,108,105,102,98,110,105,103,98,102,100,104,105,113,118,105,110,113,115,108,93,99,79,103,108,90,104,95,108,98,87,102,97,115,117,103,81,115,95,98,98,108,98,118,92,103,109,109,96,104,104,90,89, +633.04114,105,87,105,83,104,103,123,115,104,111,81,99,91,93,108,100,105,109,103,106,116,112,107,98,106,119,106,102,108,95,103,96,87,111,108,105,92,102,114,101,102,104,110,101,108,119,106,107,91,100,102,97,108,112,99,94,105,114,113,112,100,106,103,95,101,118,102,114,89,103,103,78,103,91,103,111,106,113,108,100,128,105,103,105,116,103,104,97,102,97,94,106,109,107,94,114,105,97,105,120,92,110,94,94,113,99,97,95,105,111,95,104,90,104,115,102,107,118,100,109,108,103,110,106,101,108,109,99,107,120,104,105,127,104,104,106,101,113,117,73,114,105,95,113,126,110,103,99,110,97,93,111,121,108,107,109,115,106,101,99,110,108,104,116,107,103,108,97,118,103,90,109,96,105,106,108,104,100,99,99,98,114,110,105,74,99,114,101,102,119,103,113,110,107,93,100,104,104,107,89,100,105,100,92,109,93,92,100,114,120,99,108,111,108,101,91,95,103,107,108,117,102,95,102,102,108,106,95,105,101,94,103,110,101,71,102,96,109,111,98,109,113,97,92,77,102,103,100,94,106,109,117,100,99,101,105,105,99,105,105,106,103,83,107,101,117,101,108,101,96,99,99,101,107,118,97,80,102,102,116,100,102,103,98,104,113,101,100,96,92,100,109,107,105,110,111,95,112,112,104,113,109,106,97,89,125,107,110,104,100,104,105,108,91,79,101,106,116,112,96,120,106,103,102,97,99,101,90,111,113,98,100,118,109,109,116,100,94,101,125,107,116,115,96,98,114,117,100,107,113,105,99,116,92,113,100,113,94,109,104,120,119,100,107,87,106,103,113,116,122,100,109,109,101,105,99,104,95,103,110,105,104,99,105,100,99,98,104,104,94,113,113,106,104,110,99,100,100,94,95,100,112,101,98,104,97,108,109,109,103,95,90,104,114,104,106,99,99,118,108,100,106,97,93,106,106,108,90,98,103,82,101,106,102,123,112,105,111,96,105,91,102,106,105,112,98,94,99,103,99,108,106,102,97,100,96,106,114,99,103,97,105,87,110,106,107,107,71,104,94,97,115,109,113,102,99,107,106,110,103,102,124,115,104,103,101,113,112,102,105,101,109,108,109,98,91,96,121,104,102,111,91,99,74,107,97,92,104,109,104,110,105,116,104,112,107,114,117,100,104,108,106,100,116,101,100,114,95,93,100,100,95,94,103,96,110,102,99,120,109,123,109,99,100,99,103,112,90,102,97,102,106,113,119,108,108,115,112,105,108,125,87,101,113,110,99,100,113,110,110,94,104,109,110,109,105,102,92,114,106,104,95,117,109,101,109,105,111,117,106,112,106,99,101,103,110,103,103,120,99,115,109,113,103,90,103,106,102,115,101,108,90,104,119,108,98,92,117,120,94,97,107,97,92,105,107,101,96,104,95,104,105,100,125,102,109,104,109,109,93,102,106,99,105,105,93,95,111,107,118,96,113,105,108,108,105,99,102,92,99,108,110,105,105,91,101,107,101,98,103,98,101,96,98,105,101,111,119,104,106,115,98,104,84,81,98,97,113,100,102,94,102,100,114,128,87,112,97,109,113,106,100,102,93,98,103,107,117,99,109,115,95,108,96,104,104,105,108,103,106,108,99,103,103,99,96,110,110,110,119,102,97,101,106,89,100,102,107,111,101,94,100,106,99,103,106,88,102,107,97,121,96,103,118,106,116,99,111,111,103,102,115,99,114,97,109,94,97,111,108,107,114,118,98,92,120,109,105,109,119,102,96,105,112,91,110,99,111,105,109,102,104,102,112,106,96,103,92,109,92,97,103,94,99,111,116,109,102,104,102,119,97,86,110,112,102,108,96,110,101,98,108,109,107,97,114,109,109,120,113,103,97,103,102,94,104,103,116,106,104,98,109,96,93,99,98,100,111,95,97,113,102,111,113,98,106,114,79,103,105,118,101,100,103,109,102,97,112,117,101,113,108,95,103,111,108,122,95,110,90,106,100,108,121,97,102,108,120,98,94,113,112,105,112,95,100,104,103,96,106,113,99,91,107,105,105,101,100,110,99,100,124,115,116,93,101,103,107,93,102,111,102,103,101,101,115,97,107,101,107,99,113,100,112,100,106,108,108,107,106,106,109,90,107,102,105,106,97,95,106,100,110,105,114,98,106,105,105,105,107,112,100,120,104,109,113,114,108,99,107,99,102,105,101,91,98,94,97,101,102,100,103,99,106,105,112,111,96,100,102,107,106,108,100,88,104,87,110,98,109,137,114,108,105,104,110,101,102,100,94,108,112,103,119,98,103,116,102,116,109,98,116,118,104,115,109,107,96,103,98,106,99,102,99,118,102,109,103,125,104,129,102,113,118,104,99,99,99,104,105,102,114,114,110,118,121,104,103,106,107,98,134,115,102,106,123,99,109,76,96,112,99,105,93,99,101,105,104,90,110,96,99,101,102,107,106,110,109,113,95,109,105,103,94,98,115,106,100,114,116,112,112,115,110,104,108,103,107,109,101,96,98,111,98,95,106,96,103,99,118,96,113,106,103,104,113,101,110,96,108,116,92,103,101,103,103,125,101,105,100,111,109,92,102,101,109,106,103,111,99,104,102,106,105,103,102,103,113,113,109,104,101,101,106,107,108,110,109,102,106,101,99,115,107,72,104,105,103,92,102,115,94,117,109,105,110,111,103,101,101,100,98,104,118,103,103,107,109,105,110,99,98,108,117,109,109,103,128,105,94,99,122,102,109,110,110,100,105,94,113,101,106,121,96,99,106,98,104,103,106,105,107,95,112,106,100,94,112,104,121,105,105,116,113,112,111,116,82,97,107,106,107,120,114,105,105,113,114,97,111,107,111,119,113,107,96,96,106,98,99,94,105,107,118,111,100,105,105,98,105,107,102,101,105,96,106,104,108,106,119,101,98,108,104,105,108,113,102,104,111,113,101,90,109,106,102,107,113,102,101,103,108,96,107,99,115,106,94,103,102,112,103,100,96,109,111,95,107,78,117,111,106,111,111,94,109,103,92,106,101,103,106,106,92,121,90,117,104,101,99,108,119,109,113,101,106,100,102,107,91,111,105,92,104,104,92,98,109,119,97,113,106,109,109,110,115,112,116,98,102,95,111,113,106,111,91,106,102,99,101,94,121,101,110,113,107,108,109,109,116,106,106,108,109,117,117,113,105,94,102,104,105,102,110,104,95,101,102,103,110,106,91,99,106,105,103,105,105,119,79,100,100,109,118,119,115,106,105,101,103,105,98,120,102,107,106,108,102,112,107,112,85,117,108,105,104,103,98,99,99,110,102,109,108,109,100,104,85,104,111,113,115,105,104,96,104,96,110,110,110,95,95,110,103,104,101,107,83,96,105,109,101,101,107,97,103,102,104,113,102,105,100,106,109,101,98,107,111,100,98,93,109,108,116,93,103,102,101,100,117,103,104,106,96,105,112,123,111,100,113,111,97,108,98,108,116,98,104,111,102,93,105,101,112,108,107,119,108,103,100,105,123,103,104,94,107,114,99,117,108,96,99,106,108,105,111,89,110,97,101,113,112,106,99,112,117,94,108,110,106,121,94,100,106,101,106,100,116,113,103,96,104,93,101,95,113,101,107,99,104,93,100,116,104,103,103,115,113,131,99,99,116,106,111,113,108,98,96,95,104,112,107,108,106,104,113,106,90,101,99,106,101,114,100,98,100,107,117,102,110,95,96,102,94,108,108,99,107,100,91,109,104,101,96,116,90,100,106,92,103,112,114,98,105,113,96,105,95,93,98,110,109,91,104,72,111,100,106,115,91,102,106,98,112,98,108,101,107,101,96,96,119,98,111,96,105,103,92,106,104,100,104,105,112,104,114,104,103,112,103,111,104,112,98,97,99,110,104,93,101,106,97,108,104,107,112,111,113,111,101,105,106,106,110,100,110,95,99,106,119,109,109,97,99,105,113,88,110,98,107,107,111,96,120,114,100,100,107,103,107,105,117,104,117,106,105,94,108,99,93,104,96,87,101,110,109,99,93,108,116,107,96,84,100,98,101,103,102,116,129,102,94,100,101,100,116,96,106,113,100,99,102,104,106,110,94,107,104,103,108,110,96,113,92,103,104,123,102,105,104,94,93,106,109,95,96,105,105,106,109,91,109,96,98,104,113,96,103,94,64,111,97,105,110,100,120,101,109,103,95,100,110,109,110,100,106,106,99,101,94,114,100,109,114,100,81,107,111,104,99,96,89,94,111,90,102,108,101,106,95,115,111,116,103,109,108,105,107,96,107,104,108,100,108,105,110,111,101,99,109,104,104,110,113,101,95,102,106,98,102,101,98,113,105,101,93,107,110,112,110,104,104,94,112,108,95,105,106,99,93,103,101,108,128,106,106,110,99,104,98,97,101,90,92,105,101,101,98,115,107,108,105,94,113,108,102,107,99,104,110,109,102,99,97,106,104,100,110,102,106,113,111,102,101,93,94,100,111,107,97,95,100,99,99,100,108,107,104,99,106,107,102,101,105,106,95,103,104,109,113,99,95,99,92,106,102,98,99,108,110,108,109,98,99,106,107,102,108,108,112,98,97,94,103,96,100,104,105,109,102,108,103,93,101,117,111,97,105,103,96,112,102,103,92,104,98,103,100,104,96,102,109,104,104,102,107,99,87,95,97,98,105,94,105,103,98,106,110,91,107,94,107,104,95,104,75,108,91,103,101,109,117,102,101,103,102,101,112,101,104,94,113,103,116,113,100,106,113,98,97,92,137,107,107,107,109,96,101,117,98,106,106,114,98,114,106,90,107,107,117,121,95,109,97,95,102,97,97,94,102,99,99,102,114,99,100,101,100,106,102,104,108,106,113,109,108,91,109,107,90,112,112,97,102,108,109,105,105,88,92, +633.18225,106,97,104,99,90,104,103,101,114,106,102,119,112,109,112,92,90,121,96,87,94,111,102,109,114,99,104,109,101,106,101,100,110,109,108,106,105,113,96,101,95,103,95,93,102,103,90,118,115,113,90,106,101,95,111,99,92,114,103,101,89,106,113,88,102,99,96,106,126,89,106,105,93,96,98,104,106,111,97,115,102,92,113,98,90,81,104,100,101,105,110,101,105,100,100,106,108,97,91,97,89,98,99,111,95,97,85,122,69,93,109,100,118,97,94,93,121,104,101,86,99,102,107,105,107,113,108,105,111,117,111,106,96,107,114,116,100,113,84,105,106,106,98,96,108,97,106,116,100,106,95,110,101,89,93,107,103,106,113,98,111,112,100,97,105,102,103,99,118,118,98,102,102,95,92,99,109,101,105,98,119,101,107,111,108,103,105,107,106,102,113,110,108,105,103,100,101,98,107,117,109,99,103,104,92,102,103,98,105,107,110,98,109,106,105,105,104,102,108,93,111,110,112,98,80,108,106,120,112,97,101,96,103,112,97,109,103,103,114,99,97,105,112,102,108,100,114,98,110,104,106,107,87,101,106,112,97,109,102,72,96,113,95,90,94,106,100,104,124,97,103,93,108,101,101,97,91,108,105,107,103,116,105,100,98,96,92,109,112,101,103,104,105,92,110,99,107,102,105,107,107,113,99,117,89,107,109,92,113,105,102,112,104,103,116,102,102,120,115,106,108,107,114,105,91,84,101,99,114,115,105,96,91,75,104,104,101,104,101,107,106,112,82,98,109,92,105,113,106,102,105,105,104,106,90,107,113,112,115,112,100,104,108,97,106,111,105,107,101,116,109,115,102,96,111,105,95,89,111,90,110,122,108,124,99,117,105,95,111,84,95,95,114,102,87,99,103,93,92,103,103,99,106,96,96,112,97,110,104,101,93,98,104,111,111,98,111,101,103,100,99,100,110,100,102,112,82,94,99,99,111,98,104,106,102,97,107,109,100,102,121,127,95,114,95,106,109,121,98,106,108,104,103,95,100,107,103,111,110,110,106,104,108,114,104,94,95,107,117,109,99,112,86,108,102,92,105,112,110,106,114,102,105,100,97,99,121,99,72,97,107,103,104,99,101,104,104,104,101,109,105,105,108,105,122,104,98,118,95,98,111,97,105,112,112,104,106,104,113,112,104,126,105,105,105,114,98,94,103,114,109,106,98,106,79,98,94,106,93,117,101,91,99,106,106,110,118,95,104,102,108,118,106,108,107,118,101,110,96,99,108,104,94,107,99,106,109,108,110,105,87,96,98,118,99,106,114,108,96,109,104,118,106,109,103,113,105,104,104,100,117,95,100,106,126,121,116,93,116,96,108,113,98,93,109,103,107,100,122,102,103,92,93,108,121,104,103,117,109,105,99,99,111,105,108,117,105,104,112,101,105,92,109,109,96,85,112,99,98,101,102,111,95,101,105,98,113,113,101,98,99,112,107,101,103,107,113,112,106,111,99,109,104,113,91,109,116,98,120,110,115,99,105,111,105,98,115,113,113,104,99,118,120,90,101,105,103,108,101,65,112,106,105,107,105,95,109,115,113,94,118,105,106,108,119,121,112,114,109,99,112,113,100,106,87,101,96,111,107,95,108,100,100,112,103,97,109,117,105,111,99,95,113,103,101,105,98,110,100,102,112,93,97,108,108,97,97,103,99,113,115,89,105,96,100,108,115,106,103,106,99,107,96,110,99,103,112,100,91,108,94,105,101,100,96,100,106,105,86,102,98,103,114,103,92,115,122,103,96,107,108,107,105,109,112,105,99,94,93,103,90,100,91,99,96,99,107,112,104,99,110,103,102,90,99,113,116,104,118,102,114,111,113,107,102,100,99,99,108,108,107,99,115,113,127,110,100,95,86,100,102,105,114,107,105,100,87,103,91,109,90,92,96,89,102,107,100,98,105,105,111,104,96,108,100,88,92,110,102,117,111,101,102,100,97,105,95,94,109,114,97,114,101,105,101,112,98,97,110,92,118,101,104,112,100,107,108,106,110,97,110,103,96,103,99,99,99,99,93,101,111,95,105,108,90,96,112,108,88,112,93,101,107,105,116,104,100,97,96,117,109,111,98,111,113,104,113,104,108,97,105,98,100,107,98,84,101,100,100,111,104,122,110,117,112,103,109,104,104,107,114,111,101,98,105,106,94,104,112,105,95,101,104,107,108,97,118,98,100,109,104,114,108,109,107,105,104,95,114,104,105,106,96,94,101,93,95,99,107,103,107,103,101,96,99,106,104,100,113,103,96,95,109,111,105,100,101,107,104,108,105,108,96,88,109,113,107,104,99,117,104,107,112,94,115,114,98,119,104,119,125,119,113,122,131,115,111,108,120,110,100,113,112,88,111,113,114,104,115,101,80,110,115,98,121,93,98,105,112,97,110,101,109,96,107,110,109,103,98,99,108,84,92,109,106,132,107,98,103,113,103,114,92,85,102,103,97,97,95,109,95,115,104,100,97,92,117,98,110,115,111,116,91,91,103,98,120,102,80,72,103,99,100,103,100,111,94,97,101,101,101,113,104,98,106,88,100,103,115,94,98,99,104,110,110,94,104,104,107,102,99,98,113,104,98,120,87,103,105,95,99,97,108,98,101,105,117,97,105,103,94,105,105,113,96,115,106,98,98,109,97,105,105,98,105,114,109,111,97,109,85,75,120,122,98,109,116,104,106,109,107,112,90,98,102,95,103,112,99,99,107,109,121,108,108,97,112,94,125,91,105,110,102,109,109,112,98,95,102,111,96,111,96,98,109,104,98,95,90,107,105,112,108,98,103,105,111,110,103,104,67,119,95,119,103,99,104,106,105,110,73,120,99,108,107,97,99,107,109,107,104,106,94,117,107,107,108,112,97,106,107,113,99,90,109,110,105,104,100,117,105,108,95,118,95,112,98,142,105,99,113,102,91,117,99,108,91,108,110,95,109,93,83,99,107,122,111,87,98,103,117,104,106,102,101,91,114,125,102,104,100,107,109,113,120,105,103,103,92,105,94,98,107,101,115,69,103,107,110,101,105,119,95,120,95,102,106,120,104,82,106,95,102,93,99,112,106,96,111,108,102,120,99,113,107,95,101,101,101,116,110,95,102,102,81,106,101,106,96,96,97,111,97,100,96,125,130,99,112,110,97,106,103,107,100,108,106,102,103,115,139,105,93,95,111,96,86,111,103,105,110,113,99,111,64,102,107,101,108,97,137,111,99,107,110,87,92,110,100,98,98,80,107,116,100,108,105,112,92,104,101,100,102,109,112,107,110,102,107,107,96,111,107,83,104,102,98,86,116,101,107,120,100,92,80,107,89,94,105,104,103,109,106,96,113,94,107,111,104,99,111,110,101,108,122,105,100,110,100,99,108,99,107,110,105,112,115,105,105,105,111,97,99,106,103,84,100,101,109,103,107,104,84,90,100,124,112,103,98,101,110,104,96,123,109,110,108,95,107,109,121,112,104,109,115,105,98,94,109,107,109,110,97,101,117,109,96,111,103,103,91,106,98,99,112,108,110,106,104,110,117,87,110,109,112,111,109,101,105,109,106,91,110,113,98,108,101,116,94,111,103,99,120,94,100,100,123,111,101,116,66,102,114,113,99,100,101,91,107,103,92,91,100,112,104,103,100,102,99,104,116,113,116,110,87,116,100,101,112,104,107,106,102,95,117,113,117,98,96,121,93,104,109,88,113,109,109,103,109,102,108,105,96,91,112,100,101,96,107,113,103,107,106,103,100,101,104,103,112,114,104,111,107,113,109,98,113,107,105,102,108,99,115,104,105,118,95,102,99,116,107,126,111,92,111,106,123,100,112,99,106,102,99,109,110,104,99,105,119,101,107,103,102,93,95,111,106,100,97,106,98,116,103,102,109,104,103,95,103,68,96,117,121,97,87,102,117,104,107,98,99,105,106,110,106,115,111,103,99,94,98,110,99,76,103,95,95,118,97,107,102,107,97,108,103,100,100,107,95,109,111,106,103,122,99,92,103,107,108,98,113,97,103,104,97,116,115,105,112,96,100,85,113,104,81,102,107,108,111,106,121,99,94,95,103,117,100,103,102,100,108,115,111,111,109,121,107,102,99,94,101,88,97,105,90,97,92,93,104,102,113,99,107,90,106,104,107,101,106,103,101,103,104,101,110,116,92,105,103,105,114,111,106,110,106,91,93,109,103,108,110,104,103,111,103,113,119,107,87,110,91,104,106,110,95,109,100,120,93,102,107,97,112,105,108,108,102,113,95,99,96,113,96,103,104,101,109,90,110,104,100,102,109,118,103,98,74,92,97,110,104,98,103,99,103,100,103,100,95,100,99,107,103,105,101,107,104,101,101,113,111,113,103,95,108,109,103,104,107,98,99,99,109,103,111,115,110,95,103,93,114,108,72,96,96,99,96,106,96,114,108,105,105,98,105,108,105,89,98,103,100,96,96,106,101,103,102,106,112,110,109,102,93,91,99,111,111,106,111,101,89,107,110,107,100,104,113,97,96,105,98,99,99,103,106,109,94,112,105,103,105,115,107,103,97,103,113,99,103,99,102,98,103,95,103,100,105,104,111,100,95,108,100,112,98,118,101,103,113,99,94,104,98,104,85,103,122,97,94,106,95,110,109,107,98,87,104,106,113,93,103,102,106,100,98,94,119,97,118,100,108,104,103,88,106,110,115,103,106,98,94,96,103,98,107,102,121,115,110,95,114,94,108,122,104,106,110,117,105,112,115,99,100,98,108,105,109,102,105,102,104,116,99,98,113,103,110,83,129,102,105,99,106,104,101,111,95,113,90,98,106,109,101,94,90,95,79,103,111,97,116,98,78,104,95,98,113,103,113,103,104,99,106,95,100,99,111,110,116,100, +633.32336,99,101,93,104,101,100,117,79,97,104,97,100,92,112,110,99,96,103,111,118,103,95,100,107,94,98,102,95,106,108,101,101,103,93,99,92,106,91,102,103,95,106,113,109,109,104,101,113,96,94,102,76,126,110,92,114,97,90,111,94,98,113,100,93,96,109,102,106,101,73,108,115,92,111,96,107,98,103,110,111,106,88,105,100,113,93,107,95,95,107,106,109,103,112,102,102,117,103,95,106,106,94,97,99,92,88,112,99,100,93,108,111,115,106,113,107,101,98,102,113,106,119,123,115,92,114,93,93,104,102,106,108,104,94,99,110,105,88,104,93,114,108,99,96,94,103,95,108,103,76,100,111,131,98,96,107,105,102,95,108,101,111,102,94,104,96,110,87,106,99,86,109,97,96,110,109,101,110,107,107,95,105,109,96,94,104,93,88,98,96,100,108,86,104,107,105,106,89,97,100,90,107,98,103,97,120,98,97,105,102,104,103,104,103,115,96,95,99,104,102,119,106,103,118,97,107,102,116,109,104,103,103,113,101,101,107,106,95,108,107,96,100,117,113,101,94,108,107,106,118,109,113,102,92,108,113,96,105,96,107,106,108,116,95,100,112,92,95,95,102,100,104,115,113,107,99,102,98,111,90,114,106,107,94,117,100,101,94,97,106,98,112,101,109,106,103,88,99,118,107,96,79,87,111,92,100,100,94,98,102,101,104,109,100,100,93,106,91,102,97,95,101,103,115,104,99,104,91,103,93,111,117,109,117,104,97,98,90,108,91,107,99,111,99,106,106,96,102,111,96,111,104,107,95,96,102,107,106,104,115,99,104,97,104,96,101,112,107,106,105,94,116,107,105,96,97,114,109,92,98,111,115,103,104,122,85,107,106,98,98,100,103,95,97,101,101,109,98,90,108,106,105,105,114,91,96,102,109,109,108,77,94,97,109,102,102,105,105,105,103,106,110,101,101,94,98,107,102,107,109,90,100,106,94,103,106,112,104,95,92,116,107,105,113,118,98,99,96,112,115,95,98,101,108,103,102,113,121,107,107,104,109,107,106,102,93,105,101,102,95,119,100,96,100,102,103,116,106,118,116,93,99,109,103,117,104,120,102,110,99,108,107,103,107,101,100,75,103,102,89,107,108,93,103,87,104,106,93,100,113,103,100,102,105,103,99,106,96,102,99,98,118,98,95,111,111,98,112,96,99,106,103,102,96,111,114,110,103,113,108,104,95,100,115,107,104,105,103,98,97,94,110,117,107,87,102,104,103,104,94,104,104,109,100,109,108,102,108,102,99,97,113,96,106,108,96,87,105,117,95,113,91,120,100,103,100,104,104,109,98,102,111,95,108,108,122,111,97,99,116,104,96,108,92,91,96,103,90,99,104,106,106,102,96,98,102,94,88,110,99,104,105,105,98,108,103,92,103,99,96,94,104,98,107,90,104,103,99,108,99,98,101,105,107,91,111,104,100,104,110,102,116,99,110,99,107,117,106,97,97,110,103,97,107,92,93,112,97,102,96,97,101,110,101,99,100,101,105,106,110,100,82,107,97,96,99,100,100,114,95,106,110,114,113,98,96,102,128,99,113,98,98,106,96,98,101,108,105,101,99,104,101,99,99,99,94,96,114,101,105,101,103,112,107,108,98,117,105,101,103,101,95,99,101,99,106,114,107,120,96,98,102,89,96,107,95,114,107,104,120,103,110,101,94,102,89,113,96,96,100,105,108,88,102,96,104,98,113,103,87,101,113,113,106,91,105,104,108,96,100,106,94,97,102,99,107,103,108,96,101,90,98,101,78,90,110,100,105,96,130,88,104,89,104,103,102,105,106,105,111,99,103,102,102,102,95,109,99,102,109,102,117,116,108,101,110,103,100,105,100,108,99,116,99,115,127,107,102,102,107,95,107,99,104,108,110,102,109,116,96,104,98,105,104,98,105,98,116,100,96,103,100,95,87,84,86,108,107,108,104,100,79,112,116,105,102,105,112,101,94,99,99,110,113,103,98,95,110,106,106,96,114,109,97,96,102,101,111,97,103,109,108,108,100,103,100,104,74,79,104,102,106,100,114,101,109,103,107,101,102,101,99,112,108,105,93,101,96,104,97,100,111,105,113,94,102,98,109,96,101,107,97,98,100,90,100,113,109,96,109,103,107,112,105,90,119,103,96,101,121,107,118,101,103,108,80,94,103,111,108,101,105,113,96,100,99,106,101,96,97,99,107,108,103,100,90,95,94,113,98,113,98,97,107,99,110,101,113,107,89,116,103,102,100,98,114,100,106,94,103,99,118,101,112,105,119,102,99,101,101,117,91,110,95,113,100,100,97,108,99,71,112,110,103,101,106,105,116,105,114,111,113,101,99,103,105,105,104,79,104,106,117,110,106,110,101,95,96,107,101,98,114,104,102,91,105,95,95,95,98,89,105,112,100,101,96,95,122,98,93,109,88,100,109,109,98,107,105,100,103,105,105,107,93,110,103,96,106,114,111,110,95,113,110,90,103,112,108,112,105,102,110,109,109,111,71,93,104,85,105,110,104,94,119,105,103,82,108,109,117,102,109,104,77,105,96,102,96,96,91,109,90,101,113,96,97,95,94,112,99,115,98,113,107,104,106,108,97,105,101,113,92,107,90,78,106,106,89,117,111,97,99,110,104,100,102,103,116,101,111,105,110,94,105,108,99,101,100,99,107,109,105,109,88,81,112,109,101,96,106,101,103,98,110,86,97,99,107,97,126,100,107,102,105,110,107,86,103,106,105,104,102,117,106,104,110,95,111,108,95,100,115,104,98,121,99,106,99,102,121,116,96,107,102,106,97,96,109,122,102,83,101,88,111,108,100,101,111,104,104,104,98,94,117,115,102,109,109,105,116,110,97,97,112,111,103,104,116,126,108,101,99,99,101,105,99,99,92,99,102,104,98,114,115,101,103,94,101,103,106,94,104,93,106,91,110,105,100,103,115,96,106,105,97,103,112,113,83,108,105,103,132,101,106,109,109,107,109,103,95,94,88,100,120,105,101,101,110,99,103,82,88,121,101,94,109,105,106,108,97,106,105,104,108,99,91,105,113,100,92,109,107,109,102,115,101,110,97,94,100,101,110,96,101,102,117,107,112,95,86,93,106,112,99,109,110,99,107,99,115,113,94,112,110,101,104,110,101,101,99,107,102,94,109,113,109,110,96,122,88,99,112,110,95,91,103,107,106,93,111,98,92,101,100,97,100,117,96,109,106,109,95,123,107,106,101,107,119,107,92,108,72,99,102,112,110,106,95,110,96,107,106,108,91,96,98,116,99,107,95,102,114,98,80,89,101,91,102,106,97,117,101,101,80,105,102,97,108,91,106,104,104,114,112,87,97,104,109,109,100,113,109,108,94,108,116,94,106,98,101,107,110,106,109,99,102,104,101,98,102,106,96,102,104,95,101,106,118,110,95,116,103,99,106,86,106,97,108,99,98,105,108,104,94,98,96,99,109,89,105,114,109,92,110,106,105,94,107,101,95,109,105,100,109,101,101,103,100,109,110,87,96,106,106,96,124,91,84,95,104,105,103,110,111,106,105,106,103,100,106,106,102,109,98,100,106,110,89,113,110,113,103,111,103,100,108,111,104,108,106,81,70,116,106,104,104,97,97,106,111,96,99,91,105,108,98,98,110,111,105,107,104,111,125,99,96,94,93,104,96,107,112,103,117,98,110,109,98,115,103,88,97,101,109,110,103,104,96,98,133,111,87,101,108,107,98,105,115,100,108,107,98,106,100,101,105,105,103,107,102,95,113,96,110,97,104,98,114,106,103,110,110,102,103,101,107,96,82,103,101,102,110,101,111,95,112,97,109,110,98,109,109,112,111,111,98,98,105,98,103,108,94,102,95,118,99,95,95,99,105,98,91,102,103,104,111,120,90,115,104,107,109,95,102,117,95,108,103,103,98,93,136,115,111,108,94,108,103,91,105,120,101,106,100,100,98,93,93,96,101,100,105,91,109,96,101,102,114,107,103,95,106,99,95,99,109,93,95,98,100,100,102,101,99,137,111,101,105,99,85,110,101,94,112,98,115,101,91,98,98,108,95,101,121,109,109,116,103,93,103,98,108,110,105,105,114,109,91,77,80,113,95,99,100,103,102,109,105,107,117,107,92,102,98,102,102,106,101,100,96,104,111,101,103,110,103,96,97,107,106,98,99,104,102,99,106,102,108,100,98,103,105,100,107,98,98,104,104,103,95,109,100,106,106,94,113,95,104,114,100,87,93,114,104,100,95,107,108,94,116,106,117,110,106,99,107,104,100,99,112,104,106,115,92,99,103,101,106,99,99,111,102,101,112,109,103,109,95,111,111,102,110,109,93,88,111,93,96,96,110,96,69,94,84,102,107,115,107,103,102,99,96,97,102,101,105,99,95,108,103,94,100,101,94,95,103,101,108,102,110,104,105,107,120,91,98,95,106,99,99,93,97,97,111,88,99,98,105,90,95,92,101,103,96,102,94,108,117,112,98,78,103,88,105,87,107,112,117,113,98,99,111,101,89,106,106,105,95,102,103,95,109,102,96,110,105,106,96,94,94,87,99,113,116,90,97,106,109,97,102,98,101,111,105,94,105,99,108,103,108,106,106,105,94,106,105,107,106,109,106,102,89,106,95,75,98,118,76,108,110,109,103,98,101,100,71,108,77,87,101,100,106,103,100,114,105,106,96,109,104,97,105,105,97,101,99,115,106,107,94,93,93,100,107,104,105,98,105,99,101,105,99,104,97,109,105,97,116,98,106,103,98,100,93,108,72,106,105,117,106,117,103,102,96,107,105,103,104,94,107,112,100,103,99,105,122,104,98,113,87,98,95,96,97,100,91,107,115,112,105,96,102,104,106,103,120,120,100,113,87, +633.46454,109,107,104,94,105,113,96,95,100,109,116,101,103,104,107,93,96,109,105,99,106,118,112,108,112,99,104,98,95,103,103,102,105,97,113,102,117,100,124,99,102,104,102,92,102,99,104,98,103,101,99,108,103,106,95,95,105,102,106,99,105,98,102,106,90,104,115,104,105,107,92,104,107,107,103,93,103,102,100,98,102,103,95,107,111,96,97,97,94,96,107,104,102,102,104,93,101,106,104,91,105,103,104,103,110,93,103,106,95,113,94,99,101,105,104,106,97,102,110,108,101,104,110,103,103,121,112,101,110,104,108,110,115,99,114,95,86,114,93,99,98,85,96,117,96,106,95,98,102,100,84,99,100,94,106,96,98,97,110,110,87,116,98,95,112,106,112,97,105,99,105,101,97,92,108,111,102,100,97,99,110,116,121,104,96,108,92,67,92,99,102,109,105,109,92,95,104,112,108,112,104,104,112,108,103,109,104,103,98,99,105,109,106,109,100,104,103,104,102,110,95,113,103,102,96,100,110,109,97,95,97,103,96,109,117,115,115,121,101,96,98,99,100,102,99,109,110,101,99,110,106,98,101,103,109,127,99,93,91,97,104,113,104,116,101,100,108,109,101,97,106,98,99,99,96,104,113,104,125,98,95,118,109,104,97,102,90,103,106,105,100,112,83,104,102,94,109,102,101,102,102,99,98,107,101,111,109,109,95,108,108,118,120,102,99,99,107,110,103,119,104,96,105,106,103,98,109,104,116,106,95,104,111,94,102,112,112,103,103,102,104,104,97,94,102,96,108,100,109,105,105,108,107,106,107,99,109,103,107,112,98,113,91,90,114,95,104,116,104,106,113,89,114,99,99,100,108,113,110,110,106,97,109,104,113,104,96,102,107,101,108,103,100,97,101,100,102,106,98,109,76,106,95,84,91,110,111,104,101,102,97,95,109,103,114,105,105,96,99,92,107,93,97,105,110,102,100,99,103,94,98,98,105,104,76,99,101,101,99,94,115,108,108,117,105,110,95,100,90,105,107,94,113,100,112,111,106,106,78,107,97,103,103,103,101,114,95,108,94,108,108,101,102,98,110,95,106,99,105,99,103,103,99,93,94,97,96,104,93,103,101,119,78,105,100,112,104,97,109,103,106,104,106,101,95,98,103,100,115,100,101,114,83,106,97,108,86,112,105,101,100,107,108,114,104,100,111,108,105,100,101,113,108,100,110,85,106,83,99,101,106,104,95,114,109,117,102,117,94,102,99,115,104,106,95,106,108,103,103,93,106,98,99,96,110,95,109,107,108,112,101,97,103,89,107,98,97,113,98,99,112,101,105,94,94,118,103,108,107,101,107,108,100,108,101,104,99,114,117,97,109,120,101,103,110,100,95,106,95,98,102,105,117,102,103,103,102,102,104,90,99,104,102,110,91,97,103,111,110,111,106,107,105,110,91,95,95,97,104,105,111,108,104,101,108,91,95,96,116,121,88,106,107,107,101,101,114,106,113,100,103,105,98,110,96,114,112,99,108,86,111,102,109,83,67,107,102,112,124,100,109,106,118,91,100,108,95,98,110,102,101,96,92,107,101,108,108,117,103,98,111,92,100,105,108,100,100,115,100,94,97,92,113,90,93,95,95,109,104,114,101,97,95,102,117,97,79,97,101,110,104,107,97,95,111,109,87,80,109,109,86,109,95,112,102,99,103,116,101,106,106,99,95,99,93,101,99,81,113,111,99,103,93,109,95,96,111,105,118,90,115,106,101,101,95,99,91,98,105,93,98,88,107,101,100,103,96,100,120,107,111,101,108,96,67,98,104,109,98,117,102,93,98,101,108,104,103,104,96,100,100,100,109,102,104,101,116,105,109,100,115,107,114,86,97,119,103,106,105,91,100,107,99,95,106,102,101,93,106,109,102,111,120,125,105,109,90,94,103,94,105,110,104,93,98,101,108,110,94,115,104,100,89,100,100,103,97,85,111,102,103,111,98,100,104,112,111,95,99,109,111,107,105,99,98,103,83,109,107,102,101,100,100,106,104,99,95,109,88,105,98,109,99,99,103,94,112,102,93,88,106,107,107,84,99,101,103,116,105,109,117,108,100,102,108,102,100,94,101,111,110,100,103,94,99,92,94,98,102,103,104,106,108,96,99,105,103,108,108,102,104,105,104,108,109,101,107,99,102,101,111,102,101,89,101,101,106,109,100,98,99,106,100,102,101,109,109,105,106,103,103,104,110,101,107,102,105,105,103,124,113,106,110,97,93,77,91,110,103,114,104,103,100,111,102,90,108,107,94,110,110,107,96,103,110,107,104,92,97,96,116,115,93,92,106,89,110,97,103,101,114,105,110,99,109,107,96,117,105,115,113,107,106,112,110,117,104,105,108,124,118,125,109,132,103,94,111,82,105,98,102,88,113,98,91,101,81,112,109,107,108,108,109,89,99,102,113,90,104,104,120,108,119,96,95,112,98,112,104,98,93,109,110,109,98,114,107,110,83,111,107,102,111,99,109,110,111,114,105,102,113,100,114,94,101,83,101,111,103,108,99,106,103,112,116,106,113,116,105,109,100,100,109,109,99,99,102,111,98,97,111,105,112,95,119,100,104,92,111,94,112,98,110,113,106,107,113,105,111,124,106,101,114,96,105,108,107,110,101,102,101,129,98,111,102,109,109,105,113,106,106,104,94,119,112,112,106,106,106,115,100,107,122,98,111,105,115,100,121,94,121,101,117,107,107,112,109,111,105,110,109,108,85,111,108,109,103,118,105,96,112,105,102,111,98,91,93,103,105,104,104,108,113,128,100,102,106,103,98,103,96,103,105,104,107,98,103,116,111,104,122,95,97,99,106,104,97,96,95,100,104,94,104,105,101,112,116,109,111,113,105,109,105,105,98,113,106,111,100,99,96,106,100,104,105,100,95,95,109,108,112,117,97,105,93,130,99,111,99,105,112,95,90,111,103,103,106,115,99,100,95,102,100,100,99,98,105,100,107,107,104,96,105,104,103,102,103,101,105,86,112,101,90,110,99,105,109,106,96,99,104,98,109,100,107,111,98,106,102,92,97,105,101,96,94,94,94,105,104,107,115,101,111,99,111,91,104,109,108,104,110,95,107,113,103,96,105,112,116,105,97,101,107,109,111,111,95,110,99,100,91,101,85,113,94,104,105,102,105,121,103,108,96,108,115,101,109,110,91,100,103,89,81,109,105,104,100,97,96,76,109,108,104,91,106,110,111,97,111,111,99,104,94,105,108,104,94,105,94,90,98,114,109,83,106,100,110,98,103,120,112,104,76,97,104,100,106,98,108,108,106,102,110,106,106,98,112,102,113,114,110,104,100,91,102,110,110,109,83,104,106,101,103,102,102,109,99,93,109,105,107,105,100,103,105,100,102,103,103,94,102,97,105,113,108,102,106,112,104,106,99,93,113,103,99,98,101,95,105,100,102,112,105,105,113,111,108,106,94,84,110,111,116,111,102,107,101,106,101,102,95,98,87,105,106,113,104,84,106,97,92,115,111,110,106,109,105,105,103,109,95,104,106,108,98,112,102,108,98,94,110,105,104,111,102,111,115,113,108,100,87,101,104,102,104,105,114,105,109,114,102,105,113,103,113,99,109,108,109,106,104,106,107,112,96,103,112,113,113,99,105,99,109,115,108,104,121,115,100,105,87,100,108,110,95,106,98,100,95,116,98,104,106,107,93,103,115,112,104,81,106,73,103,93,97,105,102,109,113,109,96,97,109,105,108,114,107,89,113,101,98,98,92,102,101,99,96,98,114,113,100,103,109,105,91,96,106,94,96,112,102,98,99,98,103,117,101,103,112,110,96,107,108,107,104,99,108,105,107,103,98,98,119,117,111,102,91,85,104,110,101,106,106,95,104,92,108,99,86,109,96,95,109,104,99,95,96,106,91,103,106,107,104,99,98,108,103,108,104,97,103,119,90,88,105,108,100,107,99,101,109,98,110,97,110,108,91,100,91,97,108,95,101,98,114,93,109,108,103,103,94,106,91,102,101,101,116,92,103,96,102,102,106,119,94,81,107,113,98,102,101,105,104,102,99,99,110,97,82,109,97,100,94,97,107,107,102,105,106,104,109,100,105,100,100,105,105,100,106,108,99,99,97,107,110,106,92,109,111,98,112,99,102,105,118,115,103,113,109,97,102,102,103,97,99,118,99,99,102,107,110,104,98,104,105,106,103,109,105,108,103,96,101,97,112,115,79,109,112,100,100,102,99,108,96,88,91,102,93,106,112,103,110,107,101,107,117,93,97,100,96,122,97,96,105,104,109,103,100,100,107,98,120,103,107,92,120,121,106,114,117,92,116,100,102,100,105,106,107,100,104,114,96,112,109,104,105,95,100,99,104,104,99,101,94,113,112,100,114,90,102,75,102,100,108,106,103,112,106,107,97,100,116,100,103,89,87,109,104,110,110,104,110,94,103,95,97,111,87,106,93,94,99,102,105,94,93,107,103,110,99,92,103,119,116,99,108,110,108,98,94,96,107,116,103,110,87,116,115,95,103,106,98,108,108,94,103,103,108,94,110,107,106,105,111,103,112,90,91,95,109,98,115,100,106,95,104,98,93,107,117,99,80,110,106,98,112,101,94,108,103,103,100,98,108,107,104,96,109,96,98,106,101,110,106,101,106,107,119,98,91,102,98,108,100,87,107,102,106,97,109,110,110,102,117,117,108,118,109,95,102,96,105,109,100,94,101,94,104,130,107,83,112,112,103,107,97,97,99,87,105,105,99,103,102,122,94,104,91,110,108,116,111,97,102,92,94,98,102,104,116,100,99,110,121,109,103,107,100,100,117,123,92,106,93,91,93,103,113,106,102,106,93,98,95,112,105,107,96,83,98,106,98,103,121,116,113,75,107,99, +633.60565,121,100,104,105,111,99,108,88,104,123,92,114,106,93,104,100,100,99,99,91,105,96,97,94,108,99,98,109,101,102,81,104,112,99,104,106,101,103,104,106,108,108,95,111,108,123,104,115,111,116,93,98,94,100,109,99,102,105,115,113,101,108,108,95,101,122,91,104,106,98,116,98,87,107,122,113,98,107,99,99,104,93,91,112,111,99,93,102,100,113,113,101,104,111,105,105,102,104,96,102,101,103,97,106,100,106,102,118,118,93,105,95,98,97,105,112,106,104,118,107,90,101,118,104,101,105,76,108,101,111,102,102,92,112,109,101,105,112,97,91,94,103,96,108,91,106,104,111,106,107,99,106,106,96,102,102,113,102,107,103,93,99,100,97,96,103,105,106,96,106,108,90,89,96,109,101,104,106,98,91,98,112,108,102,99,86,108,99,97,125,125,104,116,107,98,107,110,113,99,112,97,117,95,111,100,110,91,102,107,99,99,109,90,105,101,107,95,106,95,113,111,116,102,87,105,91,100,113,107,104,100,104,104,112,101,110,105,112,96,98,100,108,110,106,102,98,112,97,113,106,101,98,95,105,100,107,108,109,96,103,91,107,94,106,96,95,107,103,94,104,98,108,104,107,98,101,104,118,101,106,117,88,105,84,112,105,102,116,115,99,110,107,103,96,109,112,124,110,101,111,103,117,100,112,100,103,98,108,105,114,93,101,106,105,114,105,100,118,105,107,95,97,107,106,105,96,111,92,105,100,113,105,106,95,112,106,105,109,93,104,112,103,102,97,101,92,102,105,94,96,103,103,103,103,97,106,98,106,117,100,108,132,101,102,99,105,99,118,103,104,119,113,117,115,100,94,117,109,93,107,101,90,98,107,96,91,98,90,109,97,66,101,111,106,99,99,101,104,104,111,107,81,102,97,115,98,108,103,116,112,91,104,110,102,114,99,96,96,109,92,113,101,100,109,97,102,95,109,100,105,88,96,120,104,94,93,91,98,103,102,114,102,105,100,86,96,104,110,99,113,99,96,106,110,103,86,95,99,95,107,96,95,109,94,107,108,97,100,104,103,105,108,109,106,101,102,96,104,97,101,97,94,104,101,105,94,101,101,105,98,108,117,116,98,94,101,90,106,99,104,104,95,99,97,100,104,105,101,108,109,108,108,104,103,104,97,103,94,108,100,106,103,109,108,101,111,94,106,86,96,100,104,107,94,102,112,122,106,102,99,105,74,109,106,102,95,108,120,94,101,100,111,111,108,91,108,112,103,109,89,102,95,105,113,110,107,106,99,95,103,106,104,95,116,107,109,111,94,112,122,105,108,112,79,96,95,108,113,113,110,97,103,109,99,108,106,112,96,77,109,90,109,106,110,110,98,75,94,112,112,101,99,111,82,100,109,114,102,105,93,101,102,97,93,107,106,106,93,109,121,99,105,104,99,102,94,101,106,107,99,90,101,107,101,116,94,102,103,115,116,107,106,104,114,102,106,106,109,92,107,108,106,112,96,99,107,97,105,109,96,109,103,107,104,114,102,106,108,109,102,111,107,109,104,108,104,105,105,99,121,105,104,95,106,99,96,103,106,101,94,96,92,102,91,106,107,105,105,98,91,104,104,108,97,94,97,97,100,91,96,100,96,102,110,100,104,103,108,100,96,96,114,95,99,98,104,87,109,107,113,116,103,92,102,98,99,105,99,97,99,111,110,112,96,123,88,110,102,101,102,109,103,98,110,111,105,100,100,105,98,116,99,104,99,100,116,111,103,102,100,89,100,104,98,101,99,101,99,95,107,111,99,117,116,113,118,96,106,114,108,106,112,104,99,106,107,118,109,113,99,105,85,103,94,108,108,101,124,117,91,100,107,106,105,99,104,102,111,97,103,103,111,90,103,97,117,98,96,115,109,100,100,91,105,90,104,98,101,96,91,106,107,113,99,97,108,84,104,97,110,92,102,103,104,99,102,101,103,105,107,108,113,95,101,108,105,111,107,97,103,116,100,109,102,95,102,112,101,107,94,105,103,103,98,96,108,100,108,116,100,101,106,106,104,95,103,105,93,100,98,107,109,101,79,100,109,109,121,95,106,114,106,102,107,118,104,95,100,116,103,101,118,107,120,87,94,110,107,98,112,92,112,109,102,98,75,111,107,109,103,111,94,98,102,99,93,112,102,114,112,102,104,125,97,97,98,99,101,101,88,105,100,99,104,100,105,109,98,93,107,110,109,111,105,105,105,104,100,100,102,106,101,103,92,90,112,98,100,106,112,89,102,100,115,103,100,98,141,94,97,117,102,103,85,104,109,107,102,94,103,104,117,113,99,97,94,105,83,98,101,112,108,111,96,107,91,115,118,103,104,124,107,107,103,105,129,104,86,106,80,99,106,99,135,95,95,102,114,117,113,97,100,85,111,115,114,108,106,103,109,105,87,94,98,95,125,103,100,102,97,92,96,103,102,102,99,96,110,109,96,114,104,100,107,87,105,100,106,116,110,113,105,110,107,102,113,118,93,106,106,106,110,113,95,103,106,112,97,109,108,96,102,96,99,106,104,100,102,99,106,113,109,103,105,99,99,106,109,101,95,109,99,100,103,94,113,99,97,108,90,106,115,109,99,103,121,96,102,103,104,94,100,117,103,108,101,98,91,112,108,95,104,110,96,93,108,94,104,103,95,78,83,98,95,101,100,112,109,99,96,109,98,111,109,106,105,112,103,100,108,93,112,114,101,105,120,107,114,104,117,101,101,88,95,106,109,101,122,104,99,113,105,98,108,106,84,105,111,100,109,95,111,93,108,91,90,104,92,119,122,109,88,94,99,123,109,111,146,109,106,99,112,108,105,99,105,101,101,105,105,109,105,110,101,118,107,106,111,103,116,98,96,101,110,109,106,98,98,100,116,114,102,109,109,104,102,111,98,114,108,109,109,102,98,86,105,105,97,113,100,91,114,90,89,103,104,101,108,94,105,98,99,109,107,123,127,106,112,105,101,107,105,103,103,118,102,103,106,112,103,101,100,112,113,120,104,104,100,105,107,113,103,99,99,113,115,106,82,110,98,95,95,99,101,103,103,102,107,102,103,112,108,114,111,108,96,95,114,101,111,98,109,109,101,113,92,100,108,103,98,105,94,104,100,96,110,108,107,103,103,103,100,102,109,104,101,102,103,127,104,117,95,100,101,99,100,113,99,117,105,111,85,111,120,101,104,104,112,72,104,112,117,103,111,111,88,109,94,115,102,105,110,106,110,111,99,102,103,101,110,96,112,105,108,100,82,102,93,111,108,116,103,104,106,132,112,100,112,105,101,126,111,102,108,106,109,110,115,93,98,101,103,104,97,97,111,111,102,102,92,95,94,114,108,111,105,100,106,93,103,107,100,109,103,118,94,100,111,112,98,96,104,95,115,109,112,92,100,109,82,100,107,108,104,98,105,91,106,104,106,108,112,103,104,101,104,105,101,98,98,114,115,110,102,102,118,106,113,110,107,105,116,96,111,103,117,97,101,113,112,117,99,95,109,108,100,112,112,96,105,107,112,103,97,98,133,110,95,105,102,121,107,111,109,107,106,99,99,115,99,106,95,107,107,126,104,106,118,113,110,104,96,114,102,108,90,102,99,108,99,105,117,104,119,104,110,107,106,101,103,100,99,103,105,103,104,115,103,119,110,99,103,102,104,100,99,109,102,103,101,98,103,111,100,95,108,109,113,98,109,109,108,102,104,95,102,110,101,95,104,114,95,113,104,108,109,109,112,104,106,94,108,96,111,105,96,99,85,107,104,105,109,95,108,100,89,107,118,111,108,105,105,120,100,103,92,99,107,103,94,93,101,136,103,94,115,101,99,111,109,116,85,100,110,105,99,101,103,97,109,110,111,105,97,93,100,109,99,102,102,97,96,108,99,104,104,107,96,95,101,105,95,111,108,95,106,94,85,102,112,100,107,99,100,100,102,103,84,91,91,87,107,130,111,98,107,110,99,104,103,101,103,99,117,108,103,101,103,113,114,99,97,100,100,99,106,116,98,102,84,98,113,98,106,100,105,103,96,111,114,102,108,104,109,104,103,109,112,102,112,99,106,110,109,109,99,106,115,108,99,108,110,95,110,104,104,104,98,103,107,115,102,95,105,116,106,106,92,105,99,82,105,101,95,106,116,100,113,114,98,112,98,99,104,119,109,113,99,104,103,118,112,96,109,105,108,96,114,87,101,100,100,103,98,100,113,102,113,112,104,95,109,117,100,106,105,113,106,100,104,101,100,106,107,125,101,102,100,114,107,98,113,102,109,110,103,103,88,112,100,109,120,110,117,113,104,106,113,113,84,104,110,108,117,94,96,117,102,99,104,111,84,113,109,103,111,114,108,106,103,92,102,106,102,92,103,111,106,107,108,103,99,106,104,124,95,113,106,97,109,99,104,105,100,100,102,104,98,113,76,92,112,100,97,101,116,97,101,100,102,102,94,98,92,91,96,98,109,109,99,117,97,99,102,112,94,108,116,103,96,99,99,98,102,116,96,100,91,113,99,109,117,85,104,117,102,98,94,108,102,107,119,102,120,91,90,110,103,90,98,98,113,118,102,108,113,117,97,108,100,106,107,103,109,86,112,104,123,107,99,98,97,112,112,103,98,106,103,107,99,112,104,98,111,122,102,103,106,113,98,103,111,99,98,109,82,95,101,109,91,107,110,107,113,106,101,104,109,76,113,87,99,108,108,102,91,104,93,104,106,107,95,98,101,95,100,102,98,101,105,101,104,109,98,112,102,100,108,100,109,99,120,94,87,104,102,95,83,89,91,100,107,105,95,108,106,109,119,104,113,107,128,106,107,99,121,92,110,97,102,102,111,92,116,123,96,95,113,117,97,100,122,102,105,112,93,99,111,107,108, +633.74683,103,104,102,95,100,104,103,96,97,96,95,108,104,114,124,105,106,108,108,109,109,82,107,101,111,105,95,101,111,103,100,86,95,103,104,78,125,98,95,104,90,103,93,122,110,93,105,138,105,108,97,97,112,109,112,97,92,89,101,100,112,110,98,94,97,115,125,113,100,97,101,109,105,112,112,91,95,97,106,103,102,96,97,116,96,102,104,105,90,98,80,102,109,103,98,99,100,106,101,112,108,100,106,91,94,100,96,101,104,104,109,105,112,103,106,105,100,111,114,90,97,78,110,116,97,113,114,100,125,110,107,94,95,103,107,109,115,100,100,112,106,115,101,105,106,107,119,105,90,102,90,103,99,101,106,111,106,96,113,91,108,102,111,113,99,105,102,105,105,104,108,104,99,93,110,96,102,87,125,116,110,106,104,95,106,97,109,92,110,97,97,93,97,80,103,104,103,110,110,110,106,106,102,121,72,104,106,108,109,105,104,112,114,104,94,98,108,123,97,95,107,109,96,91,98,110,114,108,115,119,103,107,105,113,104,113,108,108,116,97,106,103,113,122,99,105,110,100,105,110,103,102,112,108,100,109,107,100,96,96,102,107,98,107,101,102,118,99,101,105,98,98,108,109,121,110,109,107,125,78,105,94,101,99,100,114,90,104,101,103,103,99,113,107,97,102,105,110,108,107,107,105,106,99,100,107,100,108,104,111,83,106,99,102,104,92,108,119,117,99,110,90,109,110,97,98,104,103,110,106,108,110,108,107,106,79,99,97,105,113,101,97,100,101,95,115,118,102,125,105,104,102,101,107,96,104,113,104,113,99,111,99,121,94,101,109,99,102,106,110,112,103,102,105,103,101,106,101,109,119,113,100,101,114,101,102,101,94,108,88,107,109,103,101,105,98,107,106,98,107,102,98,103,113,104,106,92,102,104,111,103,95,117,104,109,111,105,83,113,98,105,104,101,108,105,98,94,101,104,107,98,94,101,93,102,103,104,100,109,102,109,105,98,81,97,98,100,97,117,111,101,106,101,107,107,101,105,99,105,104,105,105,105,103,104,110,108,87,99,98,114,96,105,95,97,104,102,107,107,97,105,103,112,104,117,117,115,114,108,100,100,109,102,101,99,95,109,105,101,99,106,106,101,96,99,102,104,114,109,111,113,106,108,105,93,106,99,93,97,85,105,100,111,114,110,111,109,87,117,115,104,104,102,95,98,105,110,100,99,96,107,87,95,102,113,109,94,105,106,103,104,121,110,106,100,78,103,105,92,108,102,99,112,98,98,96,100,105,114,98,97,100,85,101,100,95,115,97,106,99,113,96,105,95,98,103,107,130,112,109,84,98,102,106,120,105,103,106,100,107,89,98,108,103,106,97,101,106,107,118,97,99,108,114,103,100,106,98,110,91,89,109,100,105,109,108,84,104,103,100,99,112,97,107,92,109,108,105,110,112,104,102,110,99,105,63,95,110,106,104,103,114,97,104,100,109,106,111,96,106,123,112,95,106,94,97,94,100,106,121,105,87,100,84,88,123,106,103,110,101,95,67,109,95,97,95,121,99,109,103,107,115,97,108,112,95,106,104,109,102,104,93,109,115,86,110,105,112,93,110,100,111,112,107,96,97,116,105,106,94,104,111,100,98,109,88,103,132,108,110,113,104,96,100,96,93,108,98,113,101,105,96,107,111,102,112,100,106,100,109,110,104,92,99,103,100,91,97,109,100,120,96,93,119,96,90,92,105,99,94,95,117,108,120,80,111,104,99,100,108,106,109,100,93,106,116,98,122,114,108,97,112,110,97,97,98,99,108,110,117,102,76,110,107,99,102,91,106,102,98,110,107,85,98,111,105,106,125,108,102,104,105,107,103,103,104,104,99,107,105,114,108,107,93,105,101,101,96,106,101,110,108,99,103,96,104,110,85,108,93,96,113,114,116,113,108,93,101,101,104,103,109,95,98,86,96,92,112,124,99,107,108,95,106,111,110,111,112,104,108,100,108,96,108,105,96,100,100,100,110,108,118,106,102,117,91,111,108,105,109,115,116,112,112,108,127,94,109,109,109,99,101,104,109,92,100,101,107,95,109,108,109,109,113,101,102,106,95,116,101,97,111,116,94,92,101,110,105,122,101,102,99,106,105,95,99,104,110,98,114,106,104,101,107,112,97,119,107,102,116,117,106,105,108,124,100,105,105,102,110,112,118,94,110,115,112,115,96,119,100,103,110,109,100,105,101,104,100,107,95,108,115,95,109,96,100,91,102,107,110,110,108,103,93,109,98,101,104,106,107,101,97,94,104,114,112,106,94,97,106,103,111,116,110,117,105,103,108,99,96,95,109,103,87,108,93,117,112,95,104,104,108,99,86,113,105,115,117,113,127,101,113,112,95,109,103,95,114,120,99,99,105,108,107,96,108,107,99,99,105,102,98,57,104,109,118,112,109,95,106,111,107,94,117,110,114,118,88,67,113,112,105,113,101,97,110,97,114,110,101,104,106,109,92,117,108,93,96,108,106,109,106,104,109,103,103,89,105,119,114,126,98,77,99,96,94,104,104,115,104,91,110,96,105,96,89,91,101,106,99,94,116,103,104,113,99,106,113,113,113,118,93,111,113,102,113,117,89,96,92,106,100,111,105,93,118,105,92,103,94,103,98,102,100,113,88,105,103,109,114,107,109,101,117,109,107,110,105,96,98,99,108,101,109,100,124,105,94,121,108,108,112,106,97,115,115,105,106,100,100,104,110,106,109,110,94,96,112,108,105,94,116,102,109,106,103,95,111,111,107,106,110,104,104,109,118,109,107,113,117,114,107,107,94,113,101,108,108,108,109,103,103,114,99,113,98,100,105,104,98,102,87,110,100,111,102,107,113,101,112,123,97,107,116,97,98,106,101,103,112,105,75,103,95,112,113,103,103,119,103,107,124,100,105,99,127,100,102,112,101,103,100,94,113,96,100,100,109,93,114,96,95,102,95,100,106,108,105,104,101,121,110,109,110,97,103,104,108,103,105,98,103,90,100,112,107,101,122,106,100,103,99,104,94,116,108,103,113,107,82,104,113,100,98,98,97,120,97,103,104,109,100,106,104,109,96,113,92,132,99,110,92,101,104,103,95,96,103,110,108,103,96,90,105,101,109,97,114,96,113,92,96,95,105,108,94,103,101,105,110,96,94,97,121,108,97,105,103,108,106,96,104,103,101,109,105,110,101,102,100,108,110,99,108,105,111,104,107,100,105,119,109,106,100,113,102,106,105,102,96,106,96,105,106,121,114,83,99,112,103,107,107,112,101,95,102,111,108,98,91,102,103,107,95,114,94,109,79,108,111,99,113,99,103,105,103,99,109,110,99,100,112,97,110,99,117,91,88,111,104,96,108,94,108,96,113,91,100,105,101,106,101,99,112,105,98,98,110,117,99,97,114,101,97,89,105,96,100,105,109,110,103,120,103,97,98,110,109,102,105,110,105,103,98,109,112,111,107,96,102,111,105,106,105,109,116,102,96,102,100,102,108,112,95,98,101,111,109,93,113,100,111,105,99,112,110,95,103,105,106,106,101,111,102,102,105,108,94,110,91,110,108,106,113,88,108,102,100,116,102,110,96,120,103,100,96,108,125,104,103,110,110,109,99,106,112,95,104,97,116,97,100,113,110,94,106,105,112,99,104,99,79,110,113,103,102,101,91,99,114,113,99,102,98,122,105,106,103,102,95,109,109,96,103,116,107,91,109,100,97,109,99,113,96,103,100,100,96,117,101,106,97,109,109,104,108,98,95,107,98,94,103,94,103,108,102,101,110,87,107,121,90,107,106,115,109,108,92,100,102,94,116,87,111,105,104,118,109,100,100,95,91,97,105,117,101,111,106,106,104,95,99,106,103,106,101,99,101,101,102,105,99,101,102,104,112,105,102,115,100,107,98,110,96,102,100,101,103,106,103,107,97,98,105,101,110,110,108,93,112,104,102,107,111,99,98,85,94,100,99,98,119,96,105,99,107,117,98,103,104,109,106,99,95,103,100,104,101,101,116,103,95,103,109,109,102,104,102,120,95,107,104,105,105,104,105,106,96,112,88,100,101,108,103,104,116,95,82,111,106,96,102,111,106,87,108,104,106,67,95,107,103,100,105,110,103,104,112,131,95,106,85,97,107,107,97,104,101,97,92,95,79,112,95,96,111,95,103,106,101,106,109,93,98,128,118,108,115,101,106,107,113,104,100,107,104,106,97,111,105,99,101,100,106,91,113,84,91,95,98,110,103,110,104,120,104,81,88,103,98,113,116,107,101,105,102,101,104,105,102,104,76,123,92,108,101,100,105,91,99,112,102,115,110,102,102,74,106,96,105,106,111,98,99,98,98,107,114,102,105,103,113,100,105,108,109,110,103,111,120,97,95,90,109,87,110,104,103,103,112,107,97,103,97,108,119,91,101,106,113,94,114,90,106,123,96,116,112,103,105,108,91,108,102,100,98,97,108,93,99,107,97,97,109,108,97,99,99,98,110,99,98,101,110,97,103,110,111,100,101,104,98,103,102,106,110,96,108,100,93,96,108,99,112,101,107,119,117,89,81,100,117,105,113,110,97,107,101,104,113,106,103,100,102,105,112,88,123,98,95,105,108,102,90,107,97,107,102,113,102,99,121,124,117,98,109,99,101,101,121,96,90,109,115,102,106,98,103,102,93,112,110,102,99,109,109,91,100,100,111,98,102,107,109,109,114,112,95,106,93,104,106,99,114,101,112,118,107,107,91,93,115,105,104,98,97,108,99,97,102,91,106,101,99,95,109,102,112,94,99,115,91,111,100,106,112,100,104,117,110,105,117,105,103,99,106,94,78,100,111,106,109,99,102,91,95,101,89,98,99,98,101,102,92,109,91,99,94,104,113, +633.88794,118,121,84,105,103,104,88,97,95,117,92,72,93,121,104,111,103,102,108,108,114,102,91,104,108,110,103,95,98,99,100,120,90,96,98,113,120,107,100,105,99,99,116,102,105,100,115,100,87,114,83,114,93,86,105,105,102,116,105,107,105,93,89,101,94,111,91,75,95,107,106,102,107,107,99,106,97,105,110,97,98,104,105,97,103,105,110,104,108,98,102,93,95,103,97,100,103,97,105,96,121,98,100,105,104,126,105,99,116,105,93,93,114,105,109,101,97,97,96,100,107,106,94,96,116,95,115,110,108,104,102,103,100,100,103,113,100,106,108,122,99,106,107,112,95,110,99,116,92,100,95,108,103,110,66,103,92,105,104,103,102,100,101,105,109,100,109,105,109,104,91,95,109,96,105,98,101,99,105,101,99,111,79,101,97,102,91,102,104,99,111,100,100,106,106,100,94,110,74,119,101,97,81,102,109,98,104,101,79,112,88,100,101,110,107,100,99,98,99,111,102,101,92,116,96,104,89,104,102,100,102,104,101,100,107,106,95,105,110,100,105,121,113,96,104,98,99,100,109,99,95,109,98,101,102,113,98,102,92,100,98,109,100,96,98,112,107,105,99,109,106,101,118,104,103,107,98,95,107,109,63,98,102,103,100,116,98,104,106,99,98,105,106,107,92,113,102,98,99,108,91,98,99,95,104,105,104,104,92,99,98,104,106,104,100,117,82,102,109,97,100,95,103,99,97,110,119,100,95,111,96,95,104,88,94,91,105,91,95,86,101,99,114,96,96,111,106,89,104,113,103,105,94,105,100,102,100,103,107,113,89,108,99,98,101,104,98,110,97,104,103,99,98,93,90,93,103,95,93,96,104,100,103,102,91,108,99,104,98,97,107,91,90,103,98,94,97,105,89,104,99,102,99,103,96,104,103,103,106,96,100,92,100,95,98,94,99,99,94,96,98,97,92,91,109,102,80,98,96,97,96,116,110,94,108,109,99,106,106,104,125,99,110,96,84,111,99,103,106,103,99,101,97,104,137,103,102,103,104,104,97,105,112,109,103,99,102,96,105,99,95,111,95,112,96,92,99,99,103,115,103,105,94,88,100,92,109,105,101,96,103,107,106,106,96,113,104,107,82,102,94,99,110,96,91,94,100,110,112,102,110,110,95,90,97,107,104,101,91,92,110,95,99,100,98,102,103,104,106,80,86,101,98,98,91,97,122,96,105,103,95,119,109,76,108,94,111,101,113,111,102,108,102,97,105,102,123,106,99,94,106,108,97,106,87,101,108,102,98,95,103,98,87,99,102,95,92,91,108,107,110,95,102,100,103,95,112,109,104,90,105,111,103,109,110,92,98,110,107,98,90,114,103,92,100,94,84,92,96,110,113,94,106,112,112,102,95,102,116,96,97,106,103,97,105,116,99,102,102,100,102,85,110,104,95,107,110,98,117,98,123,97,105,97,88,89,103,107,106,110,101,109,98,108,107,107,103,112,117,98,112,96,97,116,97,80,101,92,95,110,104,100,102,110,95,109,104,95,111,76,97,105,116,99,105,98,102,103,101,99,104,117,98,101,109,96,123,98,104,98,100,115,110,97,104,98,102,118,92,93,100,101,110,100,97,102,102,94,108,101,90,99,98,103,97,93,101,104,102,107,104,100,101,113,95,124,94,93,115,106,100,114,94,114,99,106,107,102,108,107,107,99,104,98,110,92,109,94,102,104,111,98,93,98,91,89,94,91,112,88,99,100,106,113,107,106,110,101,91,108,106,108,96,111,82,103,110,113,102,95,102,104,109,104,111,99,98,106,91,104,106,97,112,95,98,98,104,99,105,97,111,105,107,104,110,103,91,108,107,95,101,108,94,102,108,105,109,108,103,99,102,99,108,116,110,121,108,90,108,106,102,106,103,105,103,100,107,104,112,98,94,116,94,93,94,113,100,106,102,112,125,95,101,108,97,101,105,98,95,110,96,106,108,112,97,119,105,105,106,109,107,101,104,104,111,119,104,116,98,106,98,99,103,110,105,93,104,100,96,96,100,97,113,92,111,95,93,99,96,102,97,118,114,101,113,100,101,101,104,107,102,111,111,113,113,100,97,105,106,101,106,103,112,106,104,101,101,101,106,106,108,113,99,98,102,100,115,116,87,112,93,108,91,100,101,94,107,96,100,107,122,97,98,91,98,95,96,98,95,103,100,108,110,105,94,105,86,111,97,108,108,103,99,96,89,111,97,115,69,102,95,105,110,105,109,98,91,112,102,108,105,100,111,94,110,87,93,105,75,103,101,98,95,107,104,103,92,96,95,105,109,105,115,92,104,100,103,103,102,95,103,116,116,104,117,112,91,114,113,109,121,108,103,113,96,101,103,95,109,104,112,101,104,108,102,125,116,97,106,104,114,104,101,100,107,102,97,105,124,126,104,102,91,94,98,102,103,109,95,101,107,118,97,110,97,91,98,81,111,100,89,101,94,91,86,110,98,101,107,77,101,100,100,103,98,113,108,103,94,107,95,99,100,105,107,96,110,95,102,107,111,106,99,104,98,104,102,105,105,77,94,113,97,94,117,94,105,114,103,89,95,91,86,115,97,100,106,100,113,107,121,99,108,101,99,105,101,101,95,109,115,85,101,99,110,100,100,111,99,99,104,117,106,99,109,104,106,106,100,99,104,68,95,109,103,105,105,105,102,105,98,102,107,105,104,107,102,97,97,97,100,99,109,83,105,109,99,121,110,89,103,103,102,115,107,115,102,108,103,88,95,102,117,91,99,104,103,97,112,119,113,99,107,101,100,106,108,102,94,100,104,101,104,96,111,111,112,121,107,124,99,96,104,101,101,101,108,94,88,104,117,100,99,116,110,99,109,97,104,99,112,107,106,108,113,106,105,105,100,109,106,104,102,101,113,98,94,97,107,106,88,103,99,93,100,98,96,97,103,97,106,91,91,101,96,98,114,111,102,105,86,117,97,102,97,112,113,95,95,99,108,107,87,98,103,94,98,111,121,95,113,88,103,104,108,99,102,107,104,117,102,102,113,98,108,95,109,106,107,104,102,104,93,105,111,95,113,94,100,94,99,115,105,107,119,98,96,102,92,97,105,94,97,113,110,96,96,99,101,119,89,99,110,98,109,85,97,117,98,112,103,84,93,95,104,88,107,93,113,113,121,98,106,112,99,103,104,110,105,98,97,96,104,96,85,95,101,99,95,109,109,106,96,70,106,101,102,113,114,98,107,110,100,111,92,107,106,108,95,103,108,111,128,98,99,93,92,103,102,89,103,104,105,103,96,109,101,93,96,101,114,85,89,105,113,102,108,82,96,103,94,114,100,107,101,107,104,103,110,95,95,101,93,105,102,100,95,108,108,101,110,103,104,102,104,112,98,95,97,100,100,95,113,111,101,114,135,100,111,102,110,103,111,110,99,102,97,101,104,99,97,92,116,98,114,103,100,104,71,98,105,97,111,104,104,90,105,106,111,103,113,101,79,106,99,95,100,119,112,106,111,99,93,102,109,94,113,113,106,102,87,103,105,110,109,112,98,99,100,105,102,104,103,91,102,109,81,110,109,96,105,99,108,115,95,103,106,95,102,98,98,105,105,113,101,92,109,95,103,104,91,91,121,101,102,93,105,99,98,113,91,95,100,109,93,107,98,103,104,94,107,97,98,111,91,103,100,103,101,101,99,95,109,101,98,83,104,108,117,93,107,103,103,99,101,106,109,96,103,109,98,97,104,95,102,98,94,113,103,102,104,70,94,98,108,93,95,97,103,98,98,105,93,98,98,102,94,99,108,108,111,136,113,97,92,96,97,101,100,108,96,103,104,104,74,113,101,103,112,101,86,104,104,108,105,107,108,110,103,89,96,96,103,102,110,89,101,99,103,95,96,93,103,99,97,124,108,97,101,105,106,95,95,97,112,103,106,102,104,99,93,98,90,93,104,91,120,105,100,95,92,114,97,102,104,106,93,108,93,104,104,103,92,110,100,100,97,107,110,100,100,103,94,95,103,104,114,102,118,96,106,107,95,92,104,105,107,113,91,102,103,103,107,107,97,108,97,103,100,102,101,120,103,108,89,112,105,105,99,92,100,103,102,115,107,104,110,80,107,104,100,100,98,102,115,106,117,97,101,103,105,102,99,82,107,104,104,98,119,91,113,108,113,115,97,103,95,104,102,109,108,112,99,90,107,104,98,109,92,109,109,82,113,94,104,103,95,124,103,100,98,108,100,70,102,101,101,105,105,109,101,113,119,102,103,105,94,95,99,99,110,104,95,110,112,105,96,103,103,107,107,102,102,102,99,94,101,99,107,107,112,103,102,124,111,100,104,101,97,105,100,91,112,120,100,109,101,104,99,92,100,100,97,104,97,101,113,96,104,112,97,91,98,101,97,102,99,98,101,101,94,107,94,100,111,105,108,102,94,115,99,99,95,100,103,96,110,109,101,106,101,105,103,102,115,111,129,106,104,115,96,103,91,106,98,99,94,102,90,101,106,93,107,111,104,101,102,97,107,114,97,98,100,99,109,111,94,90,95,102,105,113,108,99,94,95,116,104,95,87,92,108,110,106,109,106,101,99,102,112,103,96,98,109,105,108,110,99,100,103,114,104,86,91,112,105,106,72,115,98,113,108,120,95,96,109,106,95,93,95,105,83,113,94,95,121,103,117,108,96,104,92,114,100,115,101,95,87,99,109,101,104,101,102,110,100,101,97,111,112,100,100,102,104,107,117,92,103,95,102,99,95,105,114,95,106,108,95,104,101,118,113,108,105,92,105,74,97,96,108,112,105,95,107,107,107,106,99,102,104,99,109,98,102,99,105,108,116,94,84,93,103,119,106,95,102,99,102,94,101,101,105,107,116,101,103,95,102,104,90, +634.02911,100,96,82,86,101,101,100,92,97,95,100,116,104,98,124,98,101,118,105,102,108,90,114,106,95,105,110,104,88,115,115,99,120,104,107,102,105,103,103,109,100,108,105,86,107,103,93,99,113,113,107,116,103,77,99,75,109,114,112,91,106,110,101,102,107,102,116,109,103,99,100,115,82,99,106,114,99,91,114,96,114,98,103,106,100,104,98,102,105,106,102,94,118,98,109,101,106,96,104,92,106,101,103,100,99,100,100,105,89,90,113,108,109,111,103,109,98,111,100,96,108,97,124,122,107,105,108,94,101,104,109,113,105,97,103,94,94,88,99,106,102,103,119,95,104,95,99,108,92,104,91,97,95,101,93,110,98,99,98,101,117,109,106,86,101,101,111,113,109,97,103,106,103,106,107,110,112,103,101,106,114,91,111,103,97,107,106,102,103,98,81,111,98,100,96,96,102,100,92,102,103,95,78,108,103,113,83,91,105,111,97,105,94,96,96,114,101,82,100,98,117,102,93,98,108,110,109,114,104,100,102,97,103,127,96,66,107,108,86,114,95,99,111,106,125,108,100,98,109,128,104,121,100,102,100,101,102,107,101,105,109,104,95,99,93,113,101,102,95,109,117,99,100,100,105,87,97,101,100,107,105,101,99,110,104,91,102,110,100,106,104,90,109,102,113,119,109,105,87,96,108,97,96,100,99,111,95,99,107,107,100,102,106,94,114,97,103,94,99,101,91,111,104,99,104,101,99,95,109,109,106,90,96,98,106,104,98,96,105,113,96,114,105,102,91,104,113,121,115,112,104,102,101,117,98,103,108,100,97,105,106,105,111,101,100,123,90,104,109,110,93,97,112,98,110,103,103,96,100,107,112,103,99,113,102,101,104,114,105,102,89,88,102,95,98,106,100,93,101,97,101,104,96,94,104,105,101,104,101,100,97,116,99,108,105,99,103,109,109,105,97,98,90,99,97,110,100,101,97,105,104,104,109,102,102,94,98,101,110,101,106,106,104,91,86,112,95,101,103,102,99,90,100,112,102,108,103,121,113,99,106,113,108,96,98,108,99,111,90,101,103,105,95,99,100,102,92,104,99,99,89,105,103,97,109,103,98,109,103,105,100,111,104,109,96,102,105,109,98,111,115,109,107,106,97,107,98,99,109,103,98,105,111,108,100,112,99,94,94,94,106,111,103,107,98,103,112,91,105,96,90,98,95,137,101,110,105,94,101,106,105,100,102,111,99,94,107,100,98,108,104,112,112,95,86,119,104,106,108,108,109,99,109,107,121,101,83,106,97,91,100,105,99,101,105,107,101,95,101,108,110,103,106,104,113,102,105,120,108,92,98,98,99,97,110,126,99,95,109,104,94,93,103,116,111,99,91,105,105,107,110,99,99,113,113,104,104,102,100,95,98,108,103,95,104,109,112,101,122,102,110,93,92,96,97,94,117,104,98,98,108,102,103,108,102,80,83,102,104,102,107,105,107,108,100,107,100,123,108,99,109,107,91,100,91,117,103,104,102,104,111,98,104,104,106,113,99,110,97,97,112,111,109,90,99,96,109,98,98,102,125,99,113,98,90,108,117,106,106,113,106,109,111,104,107,125,108,110,100,110,106,111,102,92,104,102,109,88,128,101,108,94,103,108,102,102,95,103,102,110,105,100,110,94,82,100,104,100,104,111,99,84,104,106,109,97,108,102,116,93,111,91,93,94,106,103,75,100,90,118,109,101,103,105,106,108,98,105,88,112,106,96,100,100,100,102,108,109,104,107,104,109,104,101,101,114,104,109,100,103,104,93,90,101,110,104,113,106,96,111,97,103,103,94,104,108,101,110,99,91,115,102,96,100,109,100,108,103,104,104,91,112,102,102,113,108,106,98,112,111,96,105,114,103,108,104,99,85,99,107,114,119,107,95,109,127,106,105,94,91,104,94,90,95,102,115,106,104,95,106,105,100,104,102,95,91,86,104,122,122,101,96,98,108,104,97,102,92,104,102,112,102,109,105,101,84,97,113,105,127,104,108,103,104,102,100,94,107,106,123,108,96,92,101,108,111,97,104,95,98,108,109,113,95,102,105,117,113,97,107,101,103,98,99,112,113,105,102,112,97,108,118,100,103,98,103,107,104,99,107,94,90,93,107,91,106,105,103,103,106,99,100,111,111,109,86,110,114,95,107,110,111,111,107,104,98,122,99,103,107,98,91,102,122,96,104,96,102,107,106,106,101,110,102,101,105,111,110,115,110,109,91,117,102,98,115,101,115,95,111,103,92,107,101,108,103,104,111,100,108,98,103,99,109,103,99,97,102,110,106,98,107,102,97,97,99,93,93,96,98,101,103,104,101,107,98,101,126,107,100,113,91,95,109,93,116,117,108,117,107,109,104,97,91,109,109,105,116,116,108,109,105,103,108,109,97,103,115,101,98,93,108,91,113,114,100,111,105,105,105,103,106,89,100,112,100,103,97,113,110,106,105,101,110,92,113,115,101,104,101,103,102,112,111,99,127,102,104,116,105,105,117,104,95,105,100,92,104,94,107,116,99,124,97,110,105,116,98,91,111,104,104,109,98,96,104,108,93,114,101,101,103,92,107,106,110,104,94,126,99,120,115,106,99,113,121,84,116,100,113,114,91,102,98,106,93,101,103,103,113,86,93,98,109,142,91,102,112,114,106,93,98,90,113,95,113,114,94,115,95,100,106,121,106,106,98,83,102,105,112,102,111,106,101,109,100,107,90,102,111,98,105,104,106,106,109,123,91,105,115,103,111,113,87,103,105,96,107,107,112,116,111,104,98,110,107,92,95,99,109,99,102,95,95,106,117,113,109,95,98,99,107,113,99,99,107,97,105,108,121,109,110,104,108,115,113,117,121,95,113,106,111,104,104,106,102,99,102,91,120,92,105,113,91,105,110,80,109,101,105,100,115,115,101,108,110,101,94,104,100,104,105,106,102,96,113,111,104,98,108,98,109,116,103,120,113,105,107,117,105,113,120,103,102,110,100,104,112,101,95,106,84,94,102,122,111,106,109,111,110,98,104,111,90,95,109,105,113,106,92,102,117,94,113,102,95,119,110,103,98,117,111,108,111,103,94,107,117,106,100,104,116,95,110,101,99,100,110,103,115,104,97,103,104,112,103,102,102,100,111,88,99,114,111,110,108,101,109,108,113,103,95,107,117,100,101,105,100,116,118,100,102,114,109,96,103,91,106,119,106,113,107,105,104,107,99,104,104,102,109,103,109,109,102,109,109,103,101,102,105,101,102,110,98,107,95,86,103,104,109,100,89,96,113,101,104,104,122,108,102,104,105,120,112,120,98,96,95,110,109,109,113,99,113,114,117,109,101,109,113,101,103,104,108,100,104,117,118,118,104,96,109,105,106,109,116,99,105,107,134,104,85,131,103,101,100,119,118,109,108,111,106,96,114,98,101,99,104,103,104,104,113,93,101,103,96,106,102,106,102,123,102,107,102,102,104,104,102,102,107,103,110,105,106,107,106,100,119,103,84,97,100,115,106,96,105,96,113,106,96,104,103,110,99,113,100,120,111,98,103,110,108,98,113,89,87,107,104,107,105,105,99,107,101,128,99,116,107,110,102,98,102,108,111,112,95,123,121,107,100,108,117,106,108,112,101,101,104,114,111,97,93,104,102,102,90,100,99,94,102,105,97,112,105,111,99,120,109,98,100,101,96,112,100,118,111,109,110,92,90,102,99,108,96,108,120,103,109,111,82,106,104,90,107,100,110,98,104,102,105,105,106,106,108,102,101,115,106,110,95,98,106,95,104,114,120,108,110,108,107,102,100,104,104,98,93,83,117,99,118,108,107,109,100,99,107,101,95,106,104,116,109,97,99,97,110,106,106,105,96,98,100,103,105,102,101,108,115,120,104,103,116,99,115,95,102,111,98,99,100,113,105,103,105,109,110,94,102,103,101,99,98,85,112,103,113,108,102,103,109,105,107,99,98,104,110,105,109,97,112,103,97,101,102,119,101,101,104,120,106,104,98,105,123,103,103,102,106,121,111,110,103,111,96,118,102,111,102,106,102,102,103,100,98,113,122,79,95,106,101,108,109,105,123,111,102,108,110,109,119,104,100,102,110,114,110,88,109,106,99,108,105,100,110,91,104,99,111,104,91,108,94,109,96,104,106,108,103,107,81,103,105,120,98,104,103,95,107,110,102,105,107,98,113,110,96,104,109,99,113,100,103,110,101,122,95,111,102,105,98,95,102,105,101,101,101,96,93,113,101,102,98,72,116,105,98,120,93,94,106,111,103,108,106,108,106,109,111,109,107,106,106,108,119,113,107,114,138,102,115,95,100,102,110,109,105,109,95,109,110,105,90,112,110,106,106,98,107,120,76,95,110,99,107,104,108,117,102,107,83,101,102,106,98,113,105,97,98,110,87,114,103,99,98,108,117,102,101,98,106,103,102,109,105,110,102,116,104,89,109,110,103,120,107,105,112,101,88,97,98,101,104,113,120,106,118,91,108,106,101,98,96,117,91,113,116,110,108,104,117,106,105,80,123,101,117,93,122,92,98,110,119,87,117,101,96,98,82,92,98,88,94,91,115,104,104,105,96,111,113,84,101,112,114,89,110,107,109,103,94,99,103,110,99,109,108,102,102,98,109,100,108,104,96,99,97,113,101,100,100,105,122,98,104,113,101,109,97,92,95,113,120,103,109,103,108,90,109,109,111,96,115,97,98,106,102,90,102,107,97,112,105,113,101,99,102,94,105,106,109,101,107,105,105,100,104,119,101,112,114,89,102,98,104,112,91,105,121,103,105,122,114,94,103,107,113,104,109,105,98,107,106,99,114,96,103,101,105,102,105,108,98,103,104,103,102,100,100,96,112,108,102,89,93,99,100,112,98,102,75, +634.17023,108,99,105,96,109,106,95,116,101,129,95,119,96,96,113,112,104,98,106,109,90,106,112,83,106,113,105,107,102,112,90,110,118,105,111,101,114,101,110,107,91,104,106,106,107,118,101,110,103,97,89,110,108,99,99,103,105,95,112,84,101,97,99,89,107,91,81,109,105,104,98,113,96,101,92,118,104,112,110,105,110,101,107,117,112,108,98,109,98,102,94,124,100,107,111,106,95,105,108,125,109,99,94,104,94,98,104,92,110,109,107,105,97,124,97,105,112,107,106,105,116,101,90,99,99,109,105,102,99,101,99,109,102,111,113,108,113,95,118,83,91,105,84,90,104,99,104,101,93,95,96,94,124,93,101,103,101,99,102,103,107,102,104,104,104,98,108,105,96,98,101,103,92,103,111,114,120,84,100,100,111,85,109,111,96,109,100,94,94,99,113,106,109,118,98,95,110,110,102,105,115,107,107,90,100,101,114,108,105,118,98,106,101,110,100,99,100,102,91,135,101,100,94,105,104,91,104,103,114,121,105,100,104,98,95,106,109,113,95,95,107,101,88,111,98,94,108,99,120,99,100,103,98,103,131,104,98,109,98,106,109,96,114,81,93,90,105,105,105,100,101,100,98,95,113,116,93,107,91,108,103,95,107,107,95,118,102,107,102,88,126,112,105,101,94,100,99,109,100,95,92,87,99,115,74,104,98,90,98,113,106,105,119,109,115,97,101,122,111,111,98,104,107,113,105,91,99,114,113,121,117,103,109,109,86,108,112,116,104,99,104,99,113,87,90,104,107,108,110,108,127,109,97,104,101,113,107,115,112,108,100,102,109,91,104,98,102,110,100,107,109,93,102,104,114,96,108,91,100,110,102,115,105,109,103,110,91,103,107,97,112,112,106,97,102,98,101,108,107,110,104,109,103,103,109,102,105,99,98,99,134,105,99,103,119,93,101,72,101,98,109,105,109,115,87,118,101,97,106,104,95,109,99,102,99,109,92,103,110,98,105,108,86,106,97,113,108,96,109,120,105,100,97,115,108,103,93,95,110,111,95,104,115,103,108,100,111,101,104,92,104,108,112,94,110,95,95,127,100,112,92,99,113,110,115,106,117,104,104,98,108,105,111,91,99,104,98,87,98,109,103,100,101,99,113,99,77,103,102,99,102,97,112,110,113,112,106,93,95,105,94,105,104,90,106,115,100,114,105,103,86,108,109,99,97,80,113,103,87,108,104,121,113,106,110,98,117,101,101,108,122,107,103,95,83,91,92,105,112,94,109,102,108,103,108,100,106,102,99,96,100,122,97,100,99,105,102,109,106,111,103,101,106,107,100,103,106,116,99,102,112,103,96,108,118,111,99,107,104,102,110,105,109,101,110,83,110,102,102,110,97,97,103,110,98,94,91,106,107,98,108,102,117,100,101,114,115,113,122,101,110,108,94,103,109,112,101,94,101,98,115,100,120,104,87,100,104,103,102,98,91,112,99,101,104,109,100,110,100,101,106,106,79,107,100,102,96,91,111,102,110,109,110,114,112,111,98,91,105,106,104,115,114,92,96,105,101,101,105,95,110,103,93,105,97,107,101,94,109,103,99,89,109,100,114,110,102,126,105,99,105,103,94,95,104,106,105,106,98,100,94,107,95,103,100,104,96,106,99,112,98,97,101,96,112,99,99,100,111,107,110,99,102,126,109,111,113,107,97,107,101,92,114,110,110,103,120,98,106,111,96,117,103,99,99,112,90,100,115,99,112,113,94,80,103,98,106,104,109,102,107,109,109,104,113,107,99,100,106,101,106,114,105,110,103,107,93,102,104,113,105,91,98,96,106,122,106,103,111,103,111,100,83,109,109,100,112,102,103,96,104,99,90,106,90,112,97,105,107,104,107,108,103,115,114,108,110,95,102,107,98,105,100,104,91,102,104,110,95,106,106,111,98,112,102,130,103,106,99,107,96,111,112,114,83,100,97,98,95,102,98,114,101,103,121,105,109,101,110,93,92,109,110,118,101,108,102,106,107,103,106,116,108,98,105,108,99,118,107,102,95,112,108,110,96,113,95,103,102,90,117,99,105,99,105,90,100,112,118,97,99,104,116,109,111,103,87,100,103,96,106,115,95,107,93,96,103,100,65,83,103,100,104,105,107,99,103,114,112,105,108,107,104,106,111,82,116,103,106,108,98,111,111,104,110,107,71,99,101,104,109,98,102,120,107,100,102,99,87,105,95,111,96,107,88,101,103,87,108,110,108,103,113,104,100,103,97,106,113,102,100,107,101,97,102,113,100,120,80,92,109,91,96,108,106,104,102,105,111,97,109,112,100,94,118,114,112,105,106,104,101,107,107,122,113,93,99,106,96,108,101,110,105,95,94,104,116,108,103,102,106,113,110,99,105,96,106,104,114,103,93,102,108,99,97,109,88,103,110,106,98,118,96,99,106,106,108,96,92,104,97,99,104,95,101,107,105,102,119,105,99,108,109,95,105,107,98,108,116,105,112,101,105,97,107,120,107,100,110,105,104,111,91,100,96,101,110,104,102,105,113,99,108,103,99,106,110,92,104,106,106,106,103,106,106,106,108,84,105,90,104,107,94,102,104,110,98,113,105,100,109,99,99,96,111,120,99,97,95,105,105,88,100,73,103,117,114,104,103,108,87,97,111,101,98,111,113,103,102,91,98,88,114,101,111,107,96,112,98,92,105,102,112,111,110,104,118,95,104,105,116,103,97,114,117,101,107,105,106,110,108,104,102,113,109,110,94,115,111,100,111,99,105,99,108,106,104,116,102,109,108,103,104,111,102,106,98,105,102,109,106,104,106,94,100,116,111,109,101,96,93,101,113,104,108,112,103,93,102,102,108,113,104,103,109,116,108,99,110,111,100,109,86,119,102,102,100,109,113,105,106,110,109,104,109,110,118,95,111,110,105,115,104,97,95,102,113,107,116,107,113,96,103,112,105,108,108,109,103,108,85,105,107,106,111,110,96,123,107,107,109,112,96,105,108,112,106,94,118,111,82,109,100,121,122,104,113,105,91,106,102,114,113,86,98,103,100,100,116,113,109,110,95,112,105,99,112,110,94,110,108,116,101,105,98,98,102,110,113,104,108,98,103,124,110,101,103,107,103,104,99,103,84,102,104,99,112,98,105,114,93,102,95,111,121,136,123,110,101,109,113,110,99,95,104,111,119,106,104,110,99,106,103,110,103,108,118,99,100,112,113,105,133,104,94,105,110,100,114,106,105,111,80,74,108,104,113,110,111,101,106,105,96,117,104,112,105,100,110,95,105,86,100,107,89,124,108,111,113,88,107,98,99,103,113,94,103,111,110,105,113,107,86,134,116,115,99,96,109,99,104,99,107,105,103,101,104,113,98,115,107,115,86,106,102,91,91,104,99,106,106,106,106,131,112,115,103,98,105,99,102,113,108,98,115,95,92,111,106,104,97,106,103,95,104,108,103,113,102,99,97,105,112,105,103,82,103,115,108,112,98,116,98,99,97,95,109,107,110,96,113,104,110,114,84,102,106,117,110,102,106,104,100,111,105,99,103,99,99,120,110,98,96,112,103,89,102,102,104,108,97,96,103,114,111,104,113,103,106,109,98,107,108,102,112,102,101,100,100,99,103,116,112,109,99,99,108,104,98,101,103,87,120,105,91,101,106,123,98,110,100,95,106,116,95,97,102,103,104,103,105,99,97,100,110,92,107,107,102,103,105,108,109,108,115,99,120,110,96,108,102,107,103,100,109,102,117,108,104,99,113,96,102,106,106,102,99,104,116,103,106,93,108,98,111,110,102,103,103,103,90,104,98,96,113,97,103,107,98,109,105,119,90,114,100,108,107,111,111,108,123,103,110,98,105,96,103,91,108,99,95,105,101,117,98,110,109,96,107,104,116,92,95,108,108,120,114,104,107,101,106,103,104,95,98,113,106,91,95,103,104,110,102,103,87,103,108,108,80,111,102,108,107,101,109,106,118,106,99,107,98,113,98,110,102,98,103,121,104,98,101,111,105,99,104,114,103,94,104,106,106,108,100,105,99,112,123,100,110,107,120,89,93,108,76,99,104,107,113,110,104,107,103,114,114,103,104,115,109,87,105,81,109,109,109,102,115,100,113,102,106,103,97,106,101,107,101,106,104,101,107,125,97,109,113,99,117,98,102,110,94,107,114,105,115,104,92,109,99,115,106,110,100,109,116,98,109,101,97,113,115,100,116,106,102,105,111,100,109,107,87,107,80,104,106,112,92,103,101,115,115,109,124,91,92,115,98,107,118,104,103,102,108,102,95,116,110,100,120,104,113,121,106,95,100,109,100,108,108,104,118,116,110,96,101,91,110,108,104,100,106,107,96,123,120,104,105,103,103,90,109,101,108,103,88,115,106,102,114,107,99,103,98,108,99,99,101,102,103,104,110,108,95,91,105,101,84,95,101,101,105,100,112,103,105,94,106,115,99,107,111,105,108,107,97,102,91,107,94,98,113,101,111,114,106,109,106,94,91,97,84,106,104,106,102,107,106,108,111,107,112,102,110,104,108,108,100,101,108,117,77,112,106,100,108,112,122,95,107,96,97,99,102,98,101,102,100,107,109,103,100,114,113,108,96,102,106,111,109,93,104,102,96,111,102,107,98,104,98,102,105,103,93,104,112,116,100,95,102,95,104,99,93,118,89,99,92,108,99,109,102,113,108,106,106,108,107,107,97,113,100,103,107,113,110,103,111,101,92,99,113,106,105,109,97,101,109,123,111,109,109,107,112,100,103,113,95,100,107,103,105,108,110,88,101,108,106,100,94,106,106,101,100,90,105,108,99,73,122,106,103,102,121,110,100,105,95,103,112,108,92,88,94,106,115,105,96,111,102,101,111,74,113,100,112,109,103,106,105,64, +634.3114,106,101,88,102,106,92,101,109,99,113,92,102,100,99,107,106,104,113,109,104,97,91,100,105,105,110,94,98,106,116,84,103,102,92,108,101,102,103,90,105,109,95,83,96,118,124,96,109,101,101,105,105,96,111,104,105,100,95,111,100,105,117,111,94,111,112,98,84,99,103,106,105,99,119,97,119,90,116,107,100,109,101,101,123,94,106,115,105,106,103,110,116,101,97,96,110,97,106,97,108,96,103,94,104,66,106,105,96,103,100,99,118,101,87,106,98,104,113,106,99,104,118,109,91,105,106,110,103,95,112,100,105,96,85,91,110,103,94,104,106,103,113,93,105,101,105,97,117,105,113,99,100,122,106,89,115,104,105,114,109,102,90,103,120,102,108,104,106,103,108,106,86,99,108,96,113,97,98,106,105,108,116,96,105,106,97,103,90,115,100,112,97,107,112,96,99,105,94,91,121,105,109,105,101,107,98,103,100,100,109,90,104,110,103,103,100,108,112,95,112,89,105,99,104,108,110,101,107,116,97,90,99,101,105,104,102,110,123,103,87,112,104,108,92,98,99,106,112,105,119,115,97,116,102,102,103,105,108,101,109,99,104,105,102,102,107,102,104,92,92,104,119,107,108,118,106,107,106,111,114,107,110,106,96,103,96,97,107,96,111,107,105,104,106,111,112,107,101,102,106,125,109,99,108,108,111,98,107,103,90,109,113,98,112,100,102,105,120,111,101,113,107,100,106,115,108,106,101,113,107,106,110,100,113,108,103,109,101,107,106,105,109,105,103,106,105,101,103,108,98,99,108,98,99,94,106,112,108,105,103,113,95,103,113,105,93,116,106,95,107,107,95,103,109,106,94,109,104,88,110,112,91,110,106,103,107,105,98,98,106,129,98,104,102,92,107,100,102,104,106,102,102,110,108,104,104,99,101,106,106,99,100,98,104,99,85,100,107,117,104,95,112,105,106,99,100,98,103,95,109,103,87,100,105,110,102,99,104,108,107,114,110,111,102,107,109,99,98,99,119,115,114,99,111,108,96,112,113,103,106,101,98,107,101,102,108,112,94,110,99,92,109,112,97,108,105,105,112,105,94,91,104,103,110,94,110,107,100,103,105,94,96,94,95,107,104,111,109,105,92,103,97,105,108,107,108,105,113,105,102,99,85,98,107,97,96,102,103,110,96,108,102,95,104,109,112,113,116,106,91,106,108,100,107,101,99,108,99,108,94,117,102,115,113,112,104,102,103,104,106,101,104,109,104,101,109,103,98,104,112,113,100,98,108,110,109,107,101,96,100,95,93,113,103,102,109,111,107,94,101,108,101,97,95,107,107,114,95,109,102,109,104,96,106,106,107,114,111,94,98,99,113,105,87,81,97,105,91,98,102,97,110,111,96,100,103,107,94,110,96,106,109,112,128,113,99,109,96,118,106,109,79,97,99,94,114,109,105,98,100,100,96,113,104,93,99,112,104,105,112,102,102,104,93,108,104,113,103,114,108,102,113,105,98,98,101,109,96,100,109,115,99,112,96,99,98,110,92,112,100,107,112,112,108,109,93,99,98,127,98,102,108,104,96,97,81,114,103,105,97,91,103,91,102,93,108,113,108,102,105,92,113,110,105,86,130,101,109,107,93,78,115,106,96,96,104,106,117,102,109,113,114,104,106,105,97,101,93,105,107,100,110,99,95,113,103,114,130,108,114,107,99,88,95,99,90,110,112,104,109,104,101,101,113,91,121,99,105,99,98,109,110,103,117,97,94,98,107,98,107,110,99,114,106,105,107,103,106,109,109,108,111,116,113,117,99,100,109,107,98,106,114,92,93,99,112,102,97,104,89,118,104,96,97,111,108,121,111,100,111,100,84,114,115,108,111,110,113,106,98,102,105,111,104,105,114,109,101,115,105,99,97,113,98,98,102,97,101,105,103,100,115,92,99,100,99,94,87,109,106,97,107,96,105,101,110,97,99,114,120,107,99,100,104,103,73,92,109,89,102,102,109,106,116,83,118,100,109,104,114,107,103,95,115,105,86,93,121,96,102,106,98,97,93,100,96,101,101,100,104,101,100,105,101,103,74,101,103,99,110,101,108,99,103,102,105,108,87,125,99,106,106,103,97,109,92,95,104,99,109,94,103,106,105,111,98,109,102,111,113,112,112,99,112,101,115,99,101,106,99,98,99,113,97,115,114,95,102,98,91,97,107,97,106,101,101,120,106,92,107,100,101,105,101,97,101,94,116,107,107,106,92,96,116,96,97,110,112,108,101,98,112,98,106,110,108,138,101,94,103,99,107,93,105,106,111,109,88,94,98,105,104,99,101,104,109,107,101,94,87,103,110,94,99,99,109,109,124,103,106,103,112,102,105,97,103,109,113,104,98,107,114,116,113,96,107,100,103,112,112,116,107,93,108,110,99,111,103,96,94,116,104,111,113,112,98,77,102,98,91,105,98,109,113,106,99,107,101,102,109,115,101,101,96,97,102,96,108,104,106,97,101,98,95,113,106,94,97,108,103,94,114,103,94,99,106,103,113,93,109,102,100,87,98,106,100,111,116,102,101,102,108,111,99,106,101,103,108,123,107,106,93,102,113,98,102,105,86,105,108,103,91,107,91,109,94,107,99,103,107,103,101,102,106,114,95,104,91,111,103,115,102,107,108,102,103,101,108,103,102,110,109,99,101,98,104,108,103,104,95,97,98,113,105,91,107,111,102,112,100,102,98,108,106,109,104,110,110,87,103,89,105,100,105,106,107,95,112,95,109,99,100,106,111,105,105,97,98,101,111,100,106,107,109,110,91,112,100,110,108,105,99,109,106,109,108,109,102,121,102,121,100,87,101,85,100,111,112,95,108,97,103,109,97,108,110,93,108,109,111,97,110,112,114,99,99,103,101,102,117,102,115,102,104,89,105,99,106,91,100,138,106,109,109,95,106,97,99,114,125,101,113,87,86,97,100,99,99,101,118,111,99,86,100,107,109,101,102,104,104,110,107,101,102,108,127,108,99,104,100,102,97,94,109,116,112,105,105,108,120,110,108,104,106,92,72,111,87,113,98,102,106,89,109,105,98,101,94,97,102,106,107,103,101,103,105,107,116,92,91,106,109,100,118,106,105,100,100,108,108,100,103,115,114,109,103,102,115,97,111,105,102,105,92,108,114,117,92,109,105,108,103,100,102,110,103,104,103,106,96,98,107,109,99,103,115,101,100,109,108,102,101,94,99,111,98,96,111,105,99,109,117,111,108,109,99,98,109,93,97,109,109,96,99,113,92,88,104,101,111,104,105,103,112,101,127,109,96,100,103,104,106,109,95,99,113,124,98,94,95,102,98,110,111,95,102,113,105,108,107,100,108,113,106,103,117,100,105,103,108,105,109,110,103,104,110,98,111,105,98,103,107,100,100,81,99,106,104,102,107,97,112,94,93,112,110,104,108,93,108,103,111,110,110,100,94,100,100,89,96,112,100,92,98,101,92,125,105,109,111,109,104,99,112,106,105,109,109,69,103,100,111,104,129,96,98,108,103,70,90,108,92,98,93,106,106,97,106,102,97,104,89,103,100,107,102,97,109,112,107,105,106,106,99,106,118,106,98,106,95,83,125,119,104,105,92,95,115,108,96,104,107,100,101,93,96,101,104,96,101,87,110,100,113,95,108,97,107,105,108,113,73,94,109,105,106,106,112,106,98,103,112,85,101,106,101,106,99,105,102,114,100,103,92,94,98,109,102,87,105,105,103,108,104,102,99,111,104,100,100,99,92,113,94,118,91,105,101,80,113,102,108,104,108,105,107,104,99,100,101,107,106,103,101,104,107,101,95,107,117,92,104,103,97,94,104,111,96,114,99,97,103,101,100,108,104,113,93,98,101,98,96,95,106,94,101,94,104,107,102,123,98,100,108,92,113,100,100,101,96,102,87,104,99,102,104,97,101,110,110,99,100,104,94,94,107,107,99,97,91,95,102,93,90,107,104,102,102,104,111,98,126,104,106,120,99,82,104,110,110,99,108,105,99,109,105,105,94,103,88,102,101,98,97,91,106,95,83,116,100,103,104,101,101,109,112,116,95,93,101,81,111,109,118,114,105,102,112,102,104,106,115,112,107,121,108,116,94,96,99,107,101,86,105,98,102,104,104,106,98,105,107,98,103,101,83,104,106,102,109,97,107,106,100,105,117,95,108,117,100,107,105,108,102,104,96,105,106,109,102,93,109,104,80,94,105,98,104,113,101,91,109,105,120,100,103,116,95,95,95,99,109,96,97,111,109,102,101,95,105,104,101,104,93,95,103,97,116,106,106,105,104,106,102,109,104,96,99,101,105,110,101,105,109,98,102,113,101,108,99,97,104,109,110,99,88,116,96,99,98,95,95,107,104,98,102,104,103,111,101,93,105,108,101,108,106,105,99,106,104,105,86,92,98,104,110,102,101,87,108,96,105,108,102,97,106,100,99,109,101,100,100,92,104,106,97,100,110,89,109,88,89,105,102,100,101,104,98,101,106,107,103,104,120,126,99,94,102,93,112,106,99,98,108,104,106,105,101,107,97,108,119,114,87,113,96,115,105,104,97,113,103,114,106,95,117,96,76,111,112,89,100,84,105,100,109,101,102,99,78,109,93,108,102,109,95,95,119,92,96,111,103,99,104,100,99,110,106,107,92,113,112,105,100,106,111,92,94,106,96,91,105,96,95,106,112,105,61,94,106,94,124,104,115,105,105,99,99,110,108,109,96,99,111,99,95,108,103,107,100,97,116,109,87,95,87,119,95,108,106,91,112,100,95,93,109,116,110,92,116,106,112,81,95,104,100,89,105,94,99,109,114,93,103,105,103,95,107,113,80,103,111,110,94,109,95,100,106,91,105,106,87,108,97,83,93,104,93,129,67, +634.45251,106,102,110,101,98,105,90,114,111,110,100,108,96,106,103,106,99,96,133,97,99,99,110,97,97,107,95,103,75,110,87,99,108,113,95,106,93,78,109,104,99,94,108,98,95,119,99,110,104,114,120,94,98,125,105,99,102,98,113,103,106,101,121,110,113,117,111,104,101,88,103,106,99,117,91,128,92,109,84,99,102,114,108,111,108,113,102,106,104,95,106,98,120,113,113,104,112,100,90,102,91,105,102,104,95,100,101,111,102,87,109,98,101,107,118,99,103,103,96,104,104,104,119,116,94,113,100,91,104,110,103,106,109,106,112,113,111,107,103,107,95,115,99,96,109,97,97,99,95,104,105,99,98,104,104,94,100,104,100,94,102,106,101,107,102,109,109,90,107,101,98,94,106,116,89,100,107,95,104,111,100,103,116,97,99,113,99,113,104,105,99,98,122,91,100,104,101,90,107,104,104,103,99,103,101,98,103,112,110,118,92,102,101,116,99,106,92,87,106,94,107,111,102,109,99,101,101,113,98,96,104,103,107,110,109,107,101,117,129,99,101,102,109,84,88,109,108,98,109,105,106,109,83,108,103,113,94,93,115,105,102,99,100,84,107,111,118,104,106,101,105,83,108,107,101,105,112,100,111,99,101,113,109,109,99,102,87,110,110,99,80,105,94,119,95,117,113,106,100,114,101,109,104,110,99,92,105,115,97,113,94,116,95,100,107,92,100,92,104,103,103,101,106,112,105,116,121,105,97,101,108,95,100,108,125,97,113,100,104,102,101,107,99,109,112,109,113,113,121,94,101,95,90,111,118,107,127,108,112,86,102,102,92,113,109,100,102,102,101,105,100,101,104,101,99,104,114,104,103,103,106,115,102,112,102,94,100,102,105,109,102,83,105,113,97,97,99,116,112,103,98,105,103,98,100,106,96,105,103,82,109,97,123,104,95,106,103,100,103,104,100,95,101,83,99,91,99,110,95,111,93,112,111,109,101,109,104,110,88,104,109,104,108,98,92,103,108,112,109,103,105,105,107,109,115,96,92,103,102,127,99,91,109,106,111,109,97,105,105,98,103,104,91,100,106,100,102,114,100,92,104,114,107,94,107,92,118,101,96,94,102,104,94,103,104,108,106,98,104,101,110,89,107,95,108,102,98,108,109,105,105,88,100,110,100,101,113,102,100,104,102,113,104,103,102,95,108,119,107,118,100,90,118,105,94,100,110,101,105,107,101,95,85,106,102,118,113,93,94,120,106,103,102,105,103,95,105,92,118,105,118,108,106,116,108,98,112,118,99,94,94,97,102,104,106,106,100,104,101,108,102,103,106,106,117,103,103,113,107,92,109,104,99,95,117,110,109,104,97,105,107,112,116,105,110,94,105,105,108,97,102,106,110,112,102,101,104,99,113,90,106,104,115,101,137,104,128,108,102,110,99,107,90,104,105,97,103,99,113,105,121,115,111,99,91,109,99,102,100,104,95,103,112,102,96,104,110,115,110,101,106,99,116,112,102,102,109,104,97,104,105,102,111,107,95,106,95,113,95,105,109,100,103,100,102,93,101,103,110,96,119,109,98,103,85,116,109,104,94,96,96,96,105,120,100,110,109,111,102,100,117,108,111,97,106,101,108,99,117,104,114,92,110,105,95,111,99,109,106,119,106,111,107,100,92,113,98,108,99,99,100,99,106,107,108,90,104,110,104,99,107,116,95,107,105,98,75,105,101,105,116,102,103,107,104,108,94,97,115,101,93,107,111,97,91,103,94,105,86,99,100,109,103,106,107,106,111,107,106,106,105,113,99,106,98,103,112,119,101,109,83,76,107,103,112,104,106,104,106,107,102,103,104,107,114,110,98,108,101,90,113,104,112,117,104,105,106,113,99,112,114,108,99,97,96,100,104,100,109,100,97,104,107,111,112,95,93,106,92,102,104,108,94,107,97,108,116,85,137,109,105,117,114,108,100,103,132,100,115,99,96,101,101,103,104,113,104,104,98,105,108,107,113,110,107,105,95,115,111,105,105,119,100,110,120,105,103,109,107,108,113,98,94,108,108,100,108,103,99,114,102,88,111,103,111,105,99,108,104,106,125,114,110,109,104,91,108,106,111,117,113,111,103,106,102,96,105,103,103,109,93,101,94,107,102,105,83,111,86,115,104,104,105,107,112,93,101,121,100,101,103,112,103,89,106,107,95,101,97,104,107,99,105,95,91,97,103,79,98,87,107,106,107,109,109,105,102,100,110,104,100,106,109,91,87,102,81,113,89,103,90,96,97,100,113,107,113,108,96,94,105,113,101,112,99,109,112,117,103,108,105,117,100,98,94,109,107,103,97,103,101,98,108,101,100,104,96,104,111,113,99,124,121,101,119,105,99,111,113,112,111,109,97,98,97,107,105,109,99,99,101,115,99,108,105,89,99,109,107,100,116,110,83,101,108,118,103,99,97,98,112,106,104,83,105,120,96,99,94,96,110,124,112,95,98,101,103,110,113,86,103,109,104,106,116,115,107,112,101,105,102,103,111,98,111,107,107,111,106,96,108,102,112,110,108,85,99,97,99,98,103,103,110,98,110,105,105,103,108,99,110,101,91,90,102,125,106,108,115,114,104,113,96,126,100,112,113,103,101,115,107,97,99,80,111,106,113,100,107,106,101,113,124,87,108,98,112,99,109,103,110,110,99,110,108,122,99,111,101,113,112,102,105,104,104,108,102,97,112,106,106,99,114,105,110,107,89,106,109,104,105,117,111,116,112,91,124,117,101,95,107,109,105,87,112,100,100,84,105,110,96,112,106,109,108,112,116,113,113,111,91,94,105,81,103,89,101,104,111,105,91,111,119,116,94,109,109,104,103,113,112,115,106,97,118,103,107,108,100,111,112,94,114,108,106,109,98,109,105,107,90,107,104,91,106,114,115,109,102,110,97,125,100,111,101,100,111,103,107,104,93,99,105,98,108,107,111,101,104,109,110,104,91,95,121,107,105,97,102,107,106,107,104,105,109,100,108,117,114,91,117,108,98,103,104,108,98,93,109,101,110,99,108,99,100,109,106,108,107,96,112,106,98,105,104,104,102,102,109,96,120,113,109,101,108,105,108,116,107,105,104,110,105,107,105,102,102,112,105,104,106,105,110,110,101,100,91,116,98,108,109,112,108,100,92,112,98,91,109,112,104,113,101,94,102,107,140,113,105,115,97,98,104,102,105,103,101,112,119,105,102,108,94,99,99,106,115,105,106,103,102,106,115,113,110,97,108,113,93,103,98,103,115,103,108,101,90,104,94,106,102,96,111,103,95,111,117,104,114,99,102,110,106,109,95,114,105,94,89,88,104,116,109,99,102,100,105,102,107,110,114,113,103,82,105,99,100,110,103,111,95,108,110,99,92,101,104,105,108,112,95,102,111,95,116,101,113,93,113,98,96,116,106,101,101,101,101,92,99,112,94,108,109,97,114,97,102,105,103,103,110,98,102,101,100,107,92,114,111,109,107,117,92,99,100,108,102,108,105,101,114,108,110,104,98,89,104,99,95,98,89,106,111,110,110,117,106,123,109,104,112,92,96,105,102,104,98,93,102,94,91,93,117,113,110,117,100,100,118,98,106,107,111,110,104,112,123,113,109,98,101,109,111,104,100,101,123,105,109,106,104,109,108,96,87,97,109,106,99,121,116,110,100,91,104,112,105,112,108,105,122,112,107,110,100,97,102,116,108,104,99,103,99,92,113,112,110,102,110,118,106,90,99,100,98,102,105,106,109,106,113,103,111,94,104,111,106,91,107,104,106,106,105,105,105,96,112,100,109,110,117,98,125,112,102,113,96,97,99,104,94,112,100,94,102,101,109,107,99,96,102,108,96,106,98,105,125,99,112,108,101,93,113,96,103,101,113,97,107,103,107,101,93,108,109,105,119,88,99,84,105,104,110,103,103,94,103,91,115,102,106,97,107,116,111,109,102,92,96,101,103,106,105,104,107,106,96,111,113,100,112,110,95,107,112,97,110,109,121,106,113,106,126,102,96,96,110,102,117,105,100,101,100,99,107,107,107,105,95,97,108,107,75,98,93,102,100,113,103,100,105,116,103,115,93,106,114,98,110,105,119,100,90,88,104,106,105,96,108,107,94,97,105,101,102,99,111,99,106,113,112,105,93,93,104,95,106,93,102,112,114,109,131,89,108,99,100,111,100,102,110,106,104,93,102,105,101,99,104,108,103,108,105,105,95,90,102,110,113,101,104,97,114,101,96,97,102,106,103,107,111,116,114,104,110,100,114,101,100,107,112,104,101,91,102,107,98,107,96,109,102,107,103,107,112,107,106,103,98,109,103,108,98,99,113,91,99,105,109,103,107,96,104,113,103,108,97,97,102,103,111,109,112,103,114,103,99,95,99,95,95,99,104,102,104,112,106,96,107,103,103,105,107,101,101,101,92,107,108,105,107,106,97,102,106,103,113,113,107,107,98,105,103,108,104,95,91,115,103,103,99,109,96,102,96,104,101,114,97,103,113,99,81,98,103,109,108,115,110,111,97,105,98,78,107,97,114,113,107,98,106,103,105,102,106,105,106,106,104,104,103,98,97,117,109,112,117,105,96,99,92,108,101,105,103,104,99,107,109,110,105,100,96,102,116,94,110,101,98,102,99,101,107,93,92,94,108,102,111,85,99,103,98,112,100,90,110,100,105,102,95,112,100,111,107,100,87,103,99,109,100,99,108,110,103,94,113,107,111,89,112,106,92,92,102,97,97,95,103,103,100,104,92,113,99,94,103,105,110,101,107,103,104,109,102,103,107,109,95,110,103,109,103,117,107,96,97,112,83,100,106,109,104,98,112,112,102,96,109,94,119,103,99,86,99,94,102,106,102,104,100,113,112,103,103,101,99,108,102,114, +634.59363,118,89,127,106,110,102,88,101,141,108,91,99,99,103,92,98,106,120,115,114,103,101,111,108,96,105,122,103,114,101,98,104,113,114,110,108,97,103,119,108,108,84,107,93,109,114,102,104,97,105,109,116,95,96,90,112,95,111,116,82,99,108,121,94,96,98,85,111,107,108,95,113,104,104,100,105,114,94,108,121,109,109,104,105,75,93,100,113,94,108,102,101,96,91,95,105,112,118,104,106,98,100,94,99,101,106,108,94,99,94,109,102,103,76,98,91,99,104,106,95,97,109,96,112,108,113,114,104,107,111,106,88,106,104,108,105,103,99,110,99,92,89,99,88,111,92,100,108,93,97,88,118,99,106,103,104,117,96,118,101,102,110,104,106,107,102,115,98,100,98,98,98,104,99,110,109,103,87,102,103,101,107,111,103,110,111,84,91,113,98,103,104,116,107,101,104,100,98,97,96,96,104,108,109,97,90,112,105,105,100,110,103,109,108,108,101,111,106,104,115,112,99,100,90,98,123,103,116,105,112,114,105,104,109,106,107,107,112,101,113,106,95,111,111,102,105,113,105,119,105,100,123,94,118,93,109,97,110,100,100,100,103,101,100,113,101,99,103,113,109,91,132,100,86,113,101,101,98,72,121,92,113,105,102,101,105,87,115,105,100,107,88,114,114,112,103,100,104,94,106,103,104,107,103,98,101,105,107,100,113,100,112,99,117,98,111,108,105,99,132,105,104,107,106,92,95,109,95,109,103,98,103,113,97,119,101,81,104,112,114,104,96,92,99,102,111,100,105,118,102,101,107,102,108,114,113,110,110,113,108,84,104,112,104,96,109,107,90,97,112,116,96,103,100,113,114,100,110,102,109,105,111,94,106,104,103,108,106,99,99,104,105,98,110,98,104,90,110,101,109,98,95,97,99,105,107,100,95,102,105,93,94,103,109,112,105,94,96,76,113,75,106,99,106,100,106,91,96,101,112,104,99,110,99,117,97,99,105,111,105,105,87,99,94,87,108,116,90,109,116,104,109,109,108,107,109,97,105,111,115,96,103,116,112,111,110,99,102,101,115,106,112,106,112,105,101,105,119,113,106,104,107,112,121,99,101,95,98,107,97,102,107,98,109,96,111,108,101,100,98,115,112,108,102,104,113,97,101,115,114,108,92,110,111,112,106,99,91,114,109,99,118,100,106,95,98,104,110,109,103,106,101,122,115,104,112,107,111,98,119,97,113,108,112,113,107,103,104,105,111,108,106,108,110,104,99,109,105,99,102,117,97,102,99,107,108,108,105,98,105,92,100,104,100,114,108,111,96,107,108,107,99,104,99,104,104,111,104,111,114,108,113,114,94,121,107,91,120,107,111,101,100,105,101,103,104,91,93,98,106,112,102,107,107,95,101,111,107,117,113,94,109,98,121,108,96,100,97,101,111,111,104,121,96,105,121,100,100,99,106,106,106,108,102,99,92,102,107,100,107,105,107,107,105,101,111,101,103,110,111,118,103,104,102,90,105,103,95,106,108,112,108,111,109,112,106,105,98,111,102,116,113,86,105,109,88,99,106,111,102,107,106,99,110,104,99,109,107,105,113,108,100,97,106,109,107,107,99,103,109,98,100,105,105,110,101,100,81,100,112,109,91,98,110,98,106,99,109,103,117,87,97,94,95,108,112,112,88,104,109,99,99,103,105,105,89,98,118,105,99,101,96,86,96,104,99,98,114,95,105,99,88,101,99,87,93,104,88,109,99,103,106,112,100,108,83,110,101,90,104,106,112,101,122,116,100,108,93,101,111,98,108,106,105,105,108,133,104,109,95,97,97,106,104,103,111,118,104,103,116,111,106,105,112,112,111,105,99,114,100,94,87,109,104,101,108,107,91,107,106,106,101,105,94,105,102,97,105,115,112,103,104,119,109,94,103,99,100,97,105,101,88,105,96,100,103,98,101,101,101,107,105,102,101,108,99,100,120,105,102,117,105,110,102,108,100,99,108,105,87,106,99,97,107,104,113,94,119,90,109,100,112,96,119,108,95,91,104,114,102,103,110,108,116,105,103,103,85,98,103,104,102,116,109,97,101,88,99,104,95,96,105,104,101,94,111,94,99,87,101,105,105,105,104,109,105,97,74,101,120,109,92,91,112,95,109,105,107,104,112,101,91,100,74,108,84,116,112,94,116,99,99,95,120,111,113,113,111,99,100,96,104,104,105,101,104,110,89,99,108,106,112,97,104,103,100,94,101,100,112,106,103,99,107,94,107,103,106,102,100,110,91,105,98,114,106,97,92,102,100,96,96,116,101,99,96,96,91,114,74,104,90,111,96,102,100,101,99,103,100,96,106,110,97,107,104,109,95,108,103,116,109,97,123,101,104,112,113,99,109,96,133,106,116,94,112,102,104,102,118,90,109,120,103,97,97,92,96,110,86,93,109,96,93,103,122,88,81,111,100,93,83,90,108,106,105,113,89,106,90,113,99,107,98,107,107,90,106,125,102,100,103,102,91,104,113,94,96,87,111,109,103,104,106,107,94,107,94,107,101,103,102,91,94,113,95,109,108,125,101,113,99,112,96,94,103,93,95,125,96,106,99,95,102,98,94,107,96,116,107,105,116,104,95,90,103,101,112,97,105,120,96,91,109,96,107,122,96,104,97,106,109,112,99,99,100,108,91,111,111,102,112,96,108,106,102,110,109,105,93,116,93,96,112,95,108,105,121,107,109,102,110,107,111,112,110,107,110,109,113,103,101,109,104,83,96,116,117,107,105,104,110,99,94,104,96,91,109,105,108,94,114,100,109,110,99,99,102,96,114,111,103,113,87,108,102,112,103,105,117,102,106,111,99,91,102,104,107,115,114,107,104,127,99,86,103,107,118,100,105,108,102,107,98,85,100,65,100,105,94,113,102,107,99,106,100,96,105,91,113,125,98,108,97,100,125,99,97,80,105,100,101,105,104,107,114,111,120,115,96,101,112,105,98,104,101,103,114,103,102,103,138,99,103,110,99,102,103,117,113,95,100,97,105,115,103,111,104,98,104,110,98,118,114,113,100,104,103,105,105,98,99,96,94,103,101,104,104,111,113,95,107,100,108,99,97,112,116,120,91,130,108,98,116,115,111,101,113,99,103,105,92,102,103,97,109,103,109,92,102,105,118,104,113,102,102,102,105,109,103,107,88,98,106,98,100,106,104,99,106,97,97,108,111,100,105,92,101,105,110,102,111,98,105,104,110,101,101,120,108,92,106,104,129,104,69,95,121,104,103,111,101,113,92,97,105,125,94,100,100,87,109,120,113,103,114,96,101,113,93,111,110,104,107,100,100,89,93,106,100,99,106,103,105,108,107,104,97,106,104,98,103,77,113,109,100,109,107,107,103,104,93,99,104,95,103,102,109,108,103,97,109,114,106,109,108,113,109,101,105,99,104,104,102,114,102,91,102,107,107,107,98,119,91,101,106,94,98,103,106,100,101,97,103,107,108,106,89,109,102,109,103,96,113,95,112,97,97,105,96,106,105,101,102,109,98,102,105,108,106,91,101,94,103,115,107,96,103,124,107,98,99,124,113,109,110,108,104,83,97,112,102,94,112,106,104,106,110,110,104,109,101,102,109,123,102,123,109,114,105,101,96,114,100,106,83,111,106,98,107,99,109,102,102,95,98,107,105,104,106,108,99,98,96,96,98,103,104,102,99,97,103,95,107,98,96,117,111,104,98,107,98,120,86,113,83,112,102,98,109,97,97,115,102,103,95,105,106,98,97,103,105,113,102,92,110,105,86,100,97,102,107,98,113,97,93,103,107,107,95,105,102,96,97,106,108,105,96,109,110,104,109,107,100,106,110,104,94,107,108,104,109,112,114,102,114,98,103,91,89,99,109,92,98,108,111,101,91,96,117,91,101,101,111,102,100,106,110,100,101,121,106,113,103,105,110,103,100,122,95,97,113,99,114,101,96,108,107,99,100,99,98,95,97,109,98,91,97,98,101,101,119,107,115,103,93,100,106,113,107,93,103,104,112,112,104,107,95,112,94,102,104,104,92,106,95,103,109,115,102,109,102,85,89,108,104,83,99,116,106,104,120,97,104,103,120,95,96,110,98,92,101,96,116,102,106,98,105,113,108,113,120,97,105,110,106,105,106,95,109,107,92,99,105,107,102,102,110,102,108,112,108,102,109,107,114,92,106,116,109,108,111,103,99,106,110,81,106,105,106,114,104,102,96,98,94,102,102,113,104,103,98,111,99,107,109,107,103,104,100,99,89,109,104,120,108,97,101,99,113,95,111,95,103,99,100,93,103,110,109,115,115,106,107,120,94,106,99,116,105,100,88,103,136,105,95,105,107,110,107,103,99,104,95,119,98,100,101,103,99,99,115,113,110,95,113,106,108,113,104,93,89,107,103,102,107,96,95,99,95,113,108,97,101,102,96,113,99,103,84,114,108,106,102,103,91,106,101,109,104,103,103,110,107,98,108,102,111,102,105,92,102,92,109,99,97,114,91,103,113,97,97,103,100,96,115,102,117,103,106,98,107,91,111,103,100,104,95,107,107,96,101,111,98,109,91,94,96,91,101,94,98,99,106,118,101,106,104,109,106,99,104,104,104,79,101,111,86,107,108,97,96,106,92,100,104,100,101,91,105,101,103,112,117,83,92,95,98,100,102,109,91,96,102,105,101,109,98,96,113,104,104,109,107,98,103,100,102,98,99,64,111,99,106,96,101,92,101,107,107,109,99,92,97,103,92,103,89,111,106,93,111,113,110,104,111,106,96,110,92,104,106,99,100,106,108,91,111,105,103,90,114,99,103,110,99,107,112,113,89,70,111,92,122,108,109,100,105,101,116,104,106,106,116,101,99,110,106,107,104,113,117,96,100,115,110,106,122,101,95, +634.7348,99,100,96,104,110,108,111,111,96,107,104,109,99,104,104,99,103,106,100,106,128,106,111,93,83,104,114,107,95,97,103,111,103,114,117,94,108,83,110,101,93,103,109,109,113,118,103,93,87,111,101,101,110,96,94,112,108,101,104,90,121,98,109,98,98,103,103,116,107,118,101,117,109,101,98,118,95,97,98,106,103,97,102,91,102,88,100,113,92,108,98,109,114,103,104,106,101,95,113,90,110,99,113,102,100,103,104,120,112,102,98,98,106,112,94,95,123,110,112,95,109,94,116,107,106,100,110,101,116,94,117,102,99,119,109,106,94,107,109,113,109,114,95,108,111,93,107,107,98,97,102,94,100,108,94,98,98,103,111,98,111,89,89,110,105,100,102,99,105,92,111,94,107,109,104,116,98,97,103,99,107,98,102,109,98,83,116,91,104,104,106,104,101,102,91,96,100,102,117,110,87,101,100,94,104,95,78,107,106,102,106,103,114,105,103,101,92,111,120,97,113,95,97,104,105,109,100,100,108,106,95,101,108,105,106,88,107,104,109,103,98,101,101,113,93,108,102,105,101,99,104,98,97,108,109,104,108,118,105,104,88,102,99,101,97,104,98,95,99,106,94,96,99,107,112,105,110,99,104,91,104,113,109,100,111,71,109,104,108,99,100,98,103,102,113,115,104,98,112,104,98,101,99,106,106,111,107,106,102,107,104,108,110,113,101,106,100,104,105,114,102,97,119,103,100,91,104,90,95,110,100,106,109,99,104,107,103,97,106,109,91,107,116,106,112,111,109,113,105,107,102,98,98,109,106,96,105,100,104,112,111,105,104,100,103,108,107,87,102,118,110,103,107,106,101,103,118,106,105,102,105,117,79,118,103,101,118,104,104,102,109,104,101,78,114,98,83,105,113,115,108,111,105,108,108,97,94,109,110,92,105,120,98,93,103,95,102,105,104,96,105,100,77,98,97,108,109,95,99,100,109,99,88,105,95,101,103,113,104,114,111,107,100,98,108,113,115,104,93,102,109,109,89,95,95,99,106,99,110,106,106,95,113,106,83,116,90,92,109,115,119,107,103,102,96,107,108,108,118,113,106,104,96,111,100,105,103,102,101,101,108,109,94,98,97,108,97,100,106,113,105,111,107,109,105,103,95,101,110,94,112,105,87,107,110,104,106,110,104,93,101,98,114,95,109,103,98,96,100,113,108,101,108,117,101,105,112,109,107,108,96,101,101,122,117,116,110,116,112,102,112,107,104,103,100,103,118,110,92,102,106,109,91,90,97,106,95,109,99,103,97,101,109,117,113,117,112,99,101,105,101,104,100,100,108,108,99,109,104,101,104,110,97,102,94,103,122,102,113,106,109,86,106,109,109,119,105,99,110,95,101,102,104,103,110,103,117,107,112,106,113,104,99,102,89,112,106,116,118,100,107,103,101,103,102,105,99,108,115,115,100,105,107,109,101,103,98,106,119,105,100,111,102,99,105,109,103,106,98,95,104,114,108,107,92,109,103,100,104,103,104,110,110,110,95,102,100,118,98,103,108,100,108,103,100,104,118,106,112,100,99,92,113,125,100,99,112,103,112,93,112,101,104,111,102,83,100,100,113,105,76,99,99,98,105,104,113,101,105,87,93,110,107,112,97,115,101,104,104,112,98,92,109,97,85,109,113,90,111,112,112,105,100,101,111,106,109,108,101,104,106,101,115,111,129,111,109,112,98,111,103,110,110,111,96,116,100,109,105,105,100,100,113,106,107,107,98,106,107,93,107,105,117,111,103,114,106,108,97,106,103,112,98,99,97,113,109,101,96,108,101,94,102,115,121,110,109,109,113,105,114,103,107,109,107,117,106,106,116,119,109,117,105,125,107,114,104,114,110,102,117,101,105,98,92,121,98,100,102,102,94,125,100,112,103,94,103,95,103,94,107,104,95,103,84,105,106,113,95,101,125,83,109,103,97,98,106,108,102,101,87,95,105,109,109,108,99,98,92,107,104,107,104,111,106,106,104,113,100,102,98,112,99,110,102,108,100,102,103,105,107,117,116,103,102,105,97,117,105,106,111,134,87,122,116,98,111,102,111,110,127,98,77,99,95,104,108,109,112,110,99,93,104,118,95,101,119,108,114,104,105,110,103,91,110,117,96,107,93,107,105,113,119,114,84,102,111,105,78,97,110,96,103,98,119,97,96,105,110,102,108,97,102,97,98,89,103,102,88,81,104,115,106,96,106,109,97,113,104,108,108,107,121,92,95,105,113,102,102,97,100,110,104,106,103,111,98,101,96,99,102,108,119,108,112,113,109,102,102,94,107,104,97,96,106,117,105,113,105,92,109,105,82,105,113,108,118,115,107,107,92,113,103,106,115,105,103,98,111,114,106,104,115,111,107,116,100,102,111,111,111,111,108,108,104,110,110,110,113,96,96,106,103,110,103,101,118,92,95,114,113,98,90,98,110,101,113,105,112,110,121,101,103,90,97,108,91,106,110,102,99,99,99,106,103,109,96,94,106,100,104,117,102,88,100,99,104,95,102,99,100,110,105,93,102,107,103,103,108,97,99,104,89,104,102,102,115,113,96,94,114,99,90,94,98,104,98,96,103,95,107,100,113,96,95,103,108,103,115,110,95,109,110,99,108,100,118,102,113,101,108,95,128,94,101,94,104,104,110,98,95,105,105,109,100,87,95,121,106,118,101,107,112,107,101,110,99,102,140,104,112,107,110,95,98,113,117,102,115,102,79,114,107,100,103,96,106,115,101,113,107,107,97,114,98,108,97,112,110,108,100,112,94,95,117,109,104,117,113,107,113,96,113,101,96,105,105,107,104,112,113,95,107,99,102,113,111,111,110,115,107,94,92,111,101,107,106,110,79,113,110,102,101,109,98,105,77,106,108,97,95,103,96,95,94,108,106,109,105,101,106,106,100,93,101,115,108,98,99,105,106,112,103,108,109,113,89,106,103,106,106,113,98,106,93,115,103,106,114,93,113,88,104,109,99,97,98,106,106,111,110,109,96,111,102,87,99,88,100,93,109,107,114,112,117,98,98,92,105,103,92,95,101,100,98,109,105,103,99,92,114,111,119,95,115,102,102,113,109,87,84,116,101,126,107,86,103,110,101,114,108,99,114,105,117,94,103,100,99,107,107,104,109,100,104,106,112,105,121,101,106,105,106,84,90,103,104,102,115,95,100,110,106,102,98,101,105,104,107,117,103,107,104,105,95,109,105,99,108,106,98,102,118,106,112,108,102,112,104,115,89,96,105,100,114,99,109,117,96,97,97,99,96,99,109,106,104,103,101,96,97,105,107,106,100,113,98,92,104,98,93,108,99,101,101,97,105,107,105,101,101,104,101,103,101,90,93,95,95,106,102,105,99,119,114,109,106,97,105,131,108,102,104,88,102,95,95,117,99,106,100,104,105,109,113,104,100,106,98,101,93,106,117,109,100,104,111,114,96,99,116,87,111,105,109,88,109,100,106,98,102,111,102,87,105,96,96,109,105,102,110,95,98,101,97,104,107,113,85,104,102,108,94,102,115,107,109,107,102,117,101,90,99,104,98,105,95,104,122,104,106,99,108,109,106,109,107,103,113,109,115,78,109,103,99,95,107,106,117,106,87,100,101,118,118,99,107,102,98,103,101,96,99,118,106,94,97,100,103,93,105,103,103,105,113,95,117,105,103,102,101,101,96,108,102,92,105,102,98,101,92,109,109,106,118,94,102,99,113,105,90,97,101,106,111,118,125,116,118,100,107,101,106,107,88,108,101,86,103,108,94,115,88,109,84,100,108,101,102,104,103,104,115,105,95,79,97,102,95,112,106,125,97,104,102,112,95,108,99,98,113,99,115,103,106,105,92,91,104,92,98,98,101,100,104,107,103,111,106,102,92,112,110,107,109,101,99,102,106,104,110,113,99,92,100,86,104,75,106,108,109,101,97,114,101,104,105,120,106,110,113,110,91,106,105,102,95,115,98,105,104,111,102,102,99,99,115,107,96,103,102,99,109,95,93,97,102,106,83,108,103,116,96,102,99,99,100,96,109,107,104,93,103,97,92,105,106,100,103,109,102,106,105,104,116,106,107,107,105,111,105,113,103,110,108,99,110,98,91,113,101,114,104,112,100,107,97,112,110,110,92,95,107,105,107,113,108,108,93,100,107,106,102,99,103,102,92,106,103,98,120,91,105,102,103,94,101,112,108,113,114,115,90,108,101,100,97,104,108,103,108,101,120,97,101,79,103,107,111,97,116,98,117,100,98,102,104,87,103,111,111,95,96,110,100,109,122,116,121,101,107,118,111,100,108,107,98,97,108,106,98,92,102,93,99,101,104,111,109,105,109,102,99,103,104,105,101,109,108,110,96,107,109,105,98,110,106,119,110,102,92,96,83,106,87,101,93,103,104,97,108,97,101,94,111,102,95,99,104,104,104,107,113,91,98,103,99,103,106,93,93,93,112,105,99,105,96,98,109,96,108,101,99,111,99,80,88,103,103,104,107,95,101,106,110,101,101,104,106,99,106,100,97,80,101,103,110,96,100,107,101,106,103,101,105,105,85,102,94,103,101,97,105,97,103,113,106,95,102,100,98,100,111,94,100,99,110,100,102,95,98,112,105,96,98,115,132,95,100,112,106,107,102,103,108,99,106,108,93,118,88,96,96,96,102,109,95,104,100,100,103,113,102,108,102,115,98,98,102,103,85,108,94,103,103,106,109,89,110,103,106,99,70,113,102,88,116,99,88,105,76,113,103,106,107,108,114,99,107,109,104,97,102,99,96,112,108,103,99,92,92,90,92,96,95,98,105,106,98,93,99,102,98,97,107,98,107,106,113,91,113,110,116,75,112,109,84,103,96,98,102,88,113,93,87,95,117,112,106,92, +634.87592,95,91,88,98,94,96,101,91,98,85,100,98,116,105,99,98,99,118,108,99,109,106,102,97,100,101,102,116,112,110,103,93,114,102,95,106,114,94,106,105,88,103,109,103,99,117,107,104,119,94,124,90,112,112,95,101,92,86,107,99,126,103,129,101,112,95,96,95,113,99,93,94,106,108,92,116,98,99,94,97,106,101,101,107,90,104,94,115,112,106,111,106,110,96,91,101,98,102,89,120,104,97,96,101,97,107,86,105,105,119,97,101,103,107,99,104,119,103,125,96,95,116,106,100,97,110,109,99,106,106,101,106,102,97,104,104,104,107,101,102,104,103,89,91,96,112,92,104,102,104,89,103,113,99,96,103,92,87,106,101,108,103,97,95,94,96,106,94,109,95,99,94,109,97,98,107,104,99,105,98,99,103,100,105,96,96,99,87,116,99,79,107,100,102,95,100,117,94,100,101,102,96,113,110,91,104,101,105,120,106,95,108,100,118,100,103,103,105,105,117,101,113,104,105,101,120,105,103,96,106,110,86,101,97,117,99,108,106,103,97,97,96,102,94,93,103,97,100,104,103,93,102,100,106,114,99,92,93,99,101,109,74,87,102,106,123,106,103,108,104,83,99,114,108,93,104,95,103,94,92,103,103,100,69,100,101,104,104,96,95,98,111,121,105,97,107,95,104,101,72,99,92,100,102,100,108,106,112,100,105,91,115,108,98,99,107,103,130,108,103,102,99,99,97,106,103,97,99,99,100,111,106,119,102,111,108,101,95,87,106,95,108,69,92,115,106,104,105,114,95,117,110,103,97,103,97,107,110,95,105,96,104,101,93,104,94,99,97,101,105,103,120,111,111,97,99,97,96,93,107,104,96,97,106,103,113,96,95,115,93,105,90,91,101,98,100,98,103,112,102,112,112,110,87,117,96,114,113,96,101,100,101,113,106,86,109,105,91,101,117,100,99,88,100,97,95,100,89,105,105,98,99,95,112,99,96,102,103,111,96,106,102,110,103,97,107,104,97,94,101,92,110,108,96,87,104,107,110,111,110,104,101,117,104,132,112,102,91,108,102,106,102,96,106,110,98,90,112,101,86,104,102,108,110,91,98,101,111,102,99,101,101,104,101,106,98,101,100,108,108,100,109,112,102,101,89,106,101,100,104,106,112,114,100,108,105,109,104,95,100,108,85,88,100,102,94,114,97,101,99,91,104,103,98,100,112,106,98,86,115,109,108,95,96,105,91,101,102,104,95,103,94,96,106,101,101,102,85,95,104,109,93,103,113,94,108,100,101,110,100,87,86,102,100,98,106,100,114,105,105,95,101,103,96,107,107,111,109,110,96,106,102,99,103,99,110,110,112,101,109,102,105,102,97,97,97,103,103,116,110,97,103,109,115,109,100,105,99,109,103,91,99,104,104,91,105,97,106,100,111,108,106,91,104,100,112,103,109,105,105,122,105,112,98,102,94,99,101,105,107,93,94,101,80,105,104,108,116,115,104,103,95,115,114,93,98,97,95,110,115,111,107,98,110,108,107,97,113,106,102,100,108,99,86,92,113,115,100,113,92,102,92,100,101,104,101,93,113,99,97,105,94,100,100,109,109,105,131,106,98,104,101,75,99,107,81,99,92,102,102,105,104,106,104,105,95,118,101,96,100,96,114,99,86,97,100,114,99,104,98,106,94,93,119,105,102,95,104,118,95,112,98,100,109,96,119,108,107,102,95,98,130,98,114,76,111,105,98,93,97,109,87,103,103,96,109,94,109,120,105,94,99,106,107,91,96,97,112,112,109,94,104,110,104,113,106,118,115,94,95,106,111,90,100,108,102,109,99,103,124,116,106,114,91,104,101,97,116,107,108,118,92,109,95,116,94,99,103,112,102,109,110,116,109,95,98,109,106,109,100,105,100,92,106,103,110,100,94,103,94,114,96,101,99,99,104,107,114,97,100,103,107,94,98,94,100,100,113,96,107,116,113,94,95,106,105,105,110,94,93,96,102,114,109,98,100,96,98,107,99,104,99,114,94,100,104,117,99,100,103,114,109,90,107,114,100,98,100,90,93,109,96,108,90,108,100,107,96,109,98,102,102,99,105,104,109,91,85,98,109,109,112,99,93,103,101,109,97,101,112,105,96,103,110,104,99,99,109,101,102,97,104,109,107,104,106,113,98,101,106,102,109,107,87,113,107,95,121,109,100,109,102,99,109,95,102,92,91,99,108,99,106,102,98,119,108,98,98,112,101,117,96,94,89,102,82,95,86,108,113,97,97,109,98,103,99,99,103,99,99,89,107,102,94,108,100,108,87,97,106,121,109,98,91,112,105,89,105,103,98,100,116,114,98,105,111,106,117,105,115,102,107,106,95,135,103,126,98,114,98,113,96,99,103,78,104,103,110,122,107,109,104,105,100,117,96,109,92,98,102,109,111,103,103,105,109,107,113,101,92,110,106,102,112,105,121,85,84,120,105,102,104,115,99,96,102,125,112,119,97,105,101,109,100,109,105,103,104,118,88,103,131,104,93,105,98,99,109,104,110,96,113,119,108,110,107,106,108,100,106,100,118,97,101,103,104,103,104,94,102,87,88,96,117,98,108,103,99,114,106,103,104,109,99,105,100,98,101,104,100,102,93,108,90,110,102,115,102,106,98,105,105,104,102,99,104,107,108,109,98,115,117,106,111,109,105,114,101,108,121,95,106,116,110,106,107,113,103,103,109,109,103,107,121,104,101,108,111,99,76,95,103,100,123,125,102,100,105,102,88,107,109,110,103,102,106,110,113,103,102,105,98,108,113,95,109,116,106,110,103,95,115,114,103,105,105,106,90,99,116,109,113,108,103,103,92,103,111,99,106,112,99,108,113,115,103,113,93,110,116,116,109,99,115,115,101,102,99,97,119,111,108,112,111,104,97,111,115,103,98,119,108,102,97,103,107,103,116,108,79,107,112,99,106,91,103,116,115,104,102,107,111,92,105,91,105,117,100,108,120,100,97,108,103,114,91,108,82,109,102,106,104,110,111,108,102,109,111,116,105,101,96,108,102,102,105,95,102,91,111,104,122,100,110,103,105,110,103,90,95,98,102,106,106,109,111,102,103,86,102,99,103,106,100,107,112,111,115,104,109,90,96,113,100,104,94,95,119,107,102,106,99,108,98,105,100,103,104,111,103,90,106,95,121,99,101,102,110,102,111,109,114,105,118,117,95,101,94,105,106,95,98,102,104,112,116,106,102,100,92,109,107,105,119,108,102,110,100,91,104,99,102,123,96,105,104,103,100,103,104,93,111,103,111,102,108,104,107,103,111,97,107,94,109,103,107,98,99,97,107,105,101,111,99,98,109,111,113,117,120,98,106,108,115,104,106,93,99,106,113,94,108,113,114,94,106,102,102,114,119,104,108,103,102,108,106,101,100,101,99,99,104,112,110,100,106,97,100,106,91,111,106,94,93,97,113,101,99,101,102,107,118,98,104,101,99,106,102,94,98,96,103,98,100,102,105,106,112,108,94,106,107,115,91,104,102,107,97,89,105,107,117,126,112,97,107,96,108,98,99,104,96,115,103,118,115,101,109,105,109,98,105,96,108,92,105,114,104,109,104,107,104,103,110,106,92,104,107,82,99,104,100,108,98,109,105,101,111,100,105,110,104,99,107,111,103,106,116,104,111,97,113,116,112,102,105,101,104,121,94,91,101,100,96,103,101,113,100,108,114,87,108,113,108,98,114,112,104,109,100,108,112,96,96,120,77,106,106,99,109,111,103,111,108,117,102,108,101,107,110,110,94,117,101,102,102,124,103,109,104,92,99,106,94,109,110,111,108,98,106,100,107,100,106,99,97,111,105,117,104,101,107,103,101,100,102,101,107,95,94,103,98,98,84,98,105,99,92,106,111,103,109,114,111,100,80,116,101,106,102,100,91,101,111,104,95,112,95,96,105,103,106,104,111,98,99,103,105,105,105,106,94,107,102,108,93,103,104,105,99,103,97,110,109,99,103,100,102,98,106,107,103,108,103,100,98,102,95,109,105,106,87,94,115,113,104,105,96,107,86,94,90,103,101,97,125,100,101,102,112,92,117,99,113,108,112,101,106,108,100,94,80,107,102,101,103,107,101,102,109,102,102,120,112,114,100,87,113,100,91,90,91,110,114,107,116,119,110,107,99,79,100,111,109,103,100,97,115,107,118,110,107,95,108,104,111,109,119,79,105,106,99,103,92,108,108,99,111,106,99,100,102,107,114,99,109,100,104,103,100,102,99,113,104,94,109,101,103,94,100,105,109,108,102,100,111,101,96,104,113,111,117,102,89,106,104,112,106,107,102,104,99,113,98,126,95,105,102,107,102,102,89,119,124,106,102,126,109,104,109,101,113,103,119,104,109,121,111,100,90,86,101,112,113,108,121,112,100,113,93,117,105,89,96,119,106,101,109,99,113,99,103,112,114,128,97,115,100,101,106,88,87,97,104,102,101,106,99,108,117,110,97,113,110,98,100,101,113,103,91,106,116,105,109,102,104,108,111,100,109,96,102,97,103,95,120,108,97,73,95,95,102,111,85,114,106,105,101,100,92,112,100,112,101,103,95,98,108,88,102,105,107,99,114,109,103,111,102,99,113,98,87,102,101,108,107,107,94,90,113,108,95,126,100,106,109,106,88,83,93,113,80,104,106,100,104,117,105,98,104,96,118,87,92,102,107,106,98,95,102,97,117,100,102,100,110,112,114,98,107,102,105,106,112,102,95,113,115,100,112,96,111,99,113,106,98,99,105,95,106,99,100,108,109,103,101,92,109,102,103,114,102,109,104,106,108,102,98,101,117,94,107,104,110,109,102,89,119,108,103,114,92,94,104,97,92,99,101,113,104,112,107,95,115,107,114,100,104,105,117, +635.01709,113,98,95,105,94,101,120,101,89,64,91,92,104,98,106,107,101,94,97,105,106,101,101,107,103,99,107,104,116,101,104,104,99,106,92,102,91,116,106,112,100,123,99,104,105,102,100,103,101,93,104,92,102,95,107,91,99,105,106,91,113,107,104,99,106,107,95,106,108,113,104,124,100,109,98,118,103,100,102,107,91,108,95,101,94,101,103,95,102,105,99,93,102,105,99,109,112,100,108,90,110,104,100,93,102,120,103,106,94,107,101,103,109,102,103,100,95,107,126,107,93,94,123,95,117,95,118,95,106,102,120,102,108,104,92,106,102,105,103,104,104,117,101,102,101,88,115,99,102,101,95,99,106,102,98,103,90,105,104,103,89,96,92,111,104,83,115,100,104,90,100,102,108,100,105,82,106,99,108,112,104,111,98,112,122,103,98,101,94,95,99,106,104,102,112,101,110,117,113,93,103,108,98,102,106,95,99,101,101,106,101,104,111,95,104,100,102,109,103,100,103,101,104,91,92,93,90,98,105,105,108,119,102,100,109,114,96,105,107,104,103,97,104,112,104,102,95,112,104,101,109,106,101,99,93,102,103,109,100,102,98,94,105,113,105,118,110,116,99,102,91,94,100,107,102,104,118,100,105,101,87,112,96,101,108,93,100,101,109,112,95,101,112,103,108,104,106,94,106,95,101,100,93,110,90,103,104,110,94,65,95,106,102,104,103,111,94,103,108,93,98,111,101,105,109,101,106,97,108,110,102,103,108,112,102,116,105,103,67,108,111,115,102,106,106,104,104,100,108,112,103,102,105,100,103,110,104,105,98,106,92,100,106,110,99,93,104,101,99,97,105,104,108,101,107,101,106,98,88,93,103,109,100,110,92,107,97,110,106,113,100,91,100,99,102,63,95,107,104,108,101,104,105,106,102,101,106,107,102,98,109,98,107,101,107,108,105,96,106,99,96,102,108,110,96,110,101,117,112,110,96,108,106,108,100,104,92,100,114,99,108,120,111,106,106,102,95,94,96,109,101,100,113,96,101,103,101,108,105,110,106,104,116,102,104,111,111,118,104,100,95,87,100,102,114,83,113,115,105,121,106,113,107,103,98,92,109,99,101,91,114,113,90,106,101,121,83,99,99,104,104,100,111,105,103,101,103,100,102,102,101,105,104,107,102,122,95,95,94,96,113,103,110,107,105,92,106,102,98,105,98,108,110,109,105,108,113,97,107,109,105,100,95,106,115,106,99,105,109,95,106,116,111,104,95,113,102,99,106,98,109,103,96,105,104,107,99,115,104,95,100,105,100,112,102,111,97,96,92,104,112,114,94,105,110,101,105,100,103,105,99,102,99,89,103,104,94,102,84,105,104,109,86,104,112,108,96,117,107,111,108,93,106,113,99,108,107,105,102,103,95,98,104,102,108,102,101,114,118,102,103,107,99,99,109,100,100,94,104,112,107,108,109,89,97,96,91,103,108,111,102,95,109,132,103,81,104,82,119,103,106,105,98,116,103,104,105,111,109,109,106,113,110,98,104,99,94,101,111,100,111,105,107,112,98,94,106,102,90,102,99,111,105,92,101,96,90,104,95,96,106,93,95,103,99,104,113,103,116,112,110,96,112,99,96,98,111,102,104,96,96,102,95,113,112,100,104,110,110,110,98,107,100,111,104,100,108,107,111,117,113,104,110,91,107,114,99,101,109,102,111,93,99,96,97,111,108,95,103,108,91,110,94,100,94,119,102,113,112,92,94,114,99,105,107,108,106,99,111,96,103,99,104,105,96,111,97,105,109,107,120,99,107,120,112,104,108,96,113,105,105,83,102,85,105,114,108,103,107,95,118,103,104,105,111,104,121,110,106,101,104,101,112,111,121,98,110,109,94,106,95,112,108,99,94,81,99,105,99,98,99,101,117,115,101,99,99,99,105,106,104,105,101,101,102,116,106,96,101,104,109,105,104,99,100,102,102,102,110,108,111,107,104,111,108,110,108,98,109,108,107,100,115,107,106,106,97,109,98,105,102,106,120,98,114,99,110,99,104,95,99,107,101,109,106,101,101,115,109,107,100,94,104,126,102,110,100,106,100,90,104,110,104,96,103,90,106,104,103,110,85,112,102,101,105,95,95,98,101,114,99,98,108,124,102,108,102,116,112,84,107,97,115,115,107,115,104,112,113,111,98,110,100,103,105,104,98,100,105,106,94,104,93,107,102,103,104,90,110,91,94,107,90,103,102,104,85,105,109,106,110,116,100,106,104,101,83,102,102,107,102,97,110,110,105,109,117,103,98,112,97,106,112,105,95,96,105,105,107,102,97,114,97,98,106,107,108,107,103,93,108,104,98,120,107,110,106,107,104,105,101,100,88,125,116,83,116,106,116,114,115,101,116,109,120,119,98,110,91,108,108,108,106,103,110,109,113,114,100,99,106,105,113,93,96,112,85,103,103,110,97,105,91,106,107,115,98,108,94,112,102,108,120,93,95,115,102,99,94,99,85,101,115,103,108,109,93,91,101,95,110,102,98,102,114,103,103,103,83,97,103,107,93,88,102,92,109,93,76,107,112,102,107,98,96,103,116,116,97,90,95,88,98,106,86,90,109,91,96,89,92,109,90,105,100,101,65,103,106,102,107,94,106,100,95,110,104,87,105,143,98,96,108,106,99,90,110,94,112,113,96,100,96,109,106,104,115,93,110,95,104,105,106,105,112,113,93,113,109,106,107,115,107,99,95,109,112,111,106,114,91,100,101,103,104,109,106,94,105,104,119,101,101,106,98,104,107,110,106,122,91,96,98,116,104,116,87,105,93,97,120,113,104,116,101,101,100,105,95,88,102,95,105,108,121,105,111,119,107,98,105,106,94,104,112,112,110,99,102,100,111,109,92,117,105,97,109,113,107,107,101,101,121,108,102,115,96,113,108,116,98,98,102,111,95,110,98,101,96,111,103,114,104,103,92,109,110,98,97,87,94,104,105,90,100,108,93,98,100,96,101,97,99,100,105,104,95,111,107,108,99,98,105,81,106,84,118,108,102,99,105,105,110,96,108,117,105,109,112,105,109,111,97,106,97,105,104,86,93,102,84,105,121,89,104,101,106,104,100,91,100,99,105,112,97,116,100,117,101,84,103,89,110,108,110,102,106,106,101,109,104,114,96,99,103,102,99,101,113,113,103,104,102,105,104,112,105,110,109,89,102,110,90,103,101,92,107,103,108,109,107,109,101,108,99,101,108,111,110,99,97,109,121,103,95,96,98,99,96,97,102,91,103,101,108,104,101,98,101,104,108,91,98,111,97,102,110,107,99,102,107,105,109,103,117,109,91,121,98,94,96,80,103,95,101,107,105,117,104,99,111,102,107,81,108,101,103,105,76,106,106,104,101,113,109,96,95,100,81,118,113,90,105,109,91,95,107,101,112,95,109,103,107,101,113,109,101,90,93,108,110,107,109,88,106,110,110,111,90,96,99,111,100,93,92,101,111,102,110,121,102,106,102,103,104,109,109,108,108,105,99,107,94,107,107,103,112,113,102,109,107,99,101,117,117,123,93,112,107,113,105,105,99,107,90,116,99,102,96,110,96,96,110,108,99,100,94,82,97,100,98,107,104,105,103,104,105,103,112,109,102,105,112,110,100,109,100,105,105,88,103,99,97,103,76,95,104,102,97,99,103,115,108,112,100,100,109,100,100,105,104,99,117,117,97,97,109,102,87,104,113,96,105,106,108,108,110,112,110,100,112,92,107,98,105,115,103,111,103,98,101,92,110,109,112,111,104,105,101,111,97,109,100,100,112,95,103,120,109,98,111,99,133,101,96,110,114,87,118,110,90,102,103,106,105,103,96,102,104,106,101,107,106,111,125,107,101,115,103,101,99,122,101,102,95,101,108,98,90,105,102,98,102,104,104,96,100,103,110,101,98,104,119,97,101,108,106,99,117,103,97,107,104,113,101,103,109,103,106,107,106,95,95,117,115,103,103,113,98,105,102,98,87,99,111,104,97,108,82,108,109,108,123,111,114,96,126,101,91,86,113,106,94,99,96,112,98,113,109,108,110,91,108,93,91,92,102,113,100,108,84,98,97,105,108,110,107,109,108,97,101,89,101,102,94,100,102,105,95,117,100,111,107,100,106,108,112,105,109,102,109,103,90,104,100,91,99,110,106,117,109,111,111,96,108,110,101,111,96,98,116,96,104,102,104,98,115,110,107,105,96,94,105,91,104,110,112,99,96,96,91,104,130,100,88,109,93,101,98,104,106,101,106,90,125,76,103,99,96,94,104,99,105,99,97,105,107,118,98,109,111,104,108,106,111,113,110,108,99,95,102,102,111,106,101,104,110,104,109,112,121,99,108,112,102,85,100,108,107,106,102,111,109,105,106,100,113,106,110,91,87,98,102,103,91,104,104,112,110,96,106,103,104,106,97,90,85,112,107,102,101,111,101,103,117,97,93,89,91,91,99,107,104,108,100,100,98,107,96,95,99,107,92,121,107,104,109,101,88,109,98,88,84,115,95,97,88,110,95,93,94,94,100,115,103,107,106,132,102,106,104,125,108,92,96,108,110,98,98,104,103,96,112,99,115,108,107,100,106,91,99,99,101,89,113,104,102,103,97,112,110,103,103,102,112,98,97,111,113,102,102,89,101,99,104,96,102,106,137,99,89,106,95,102,102,96,104,106,101,105,97,113,102,111,115,110,102,94,109,119,103,102,98,101,113,106,106,99,121,104,102,103,93,102,102,98,91,108,97,104,100,102,107,111,94,103,99,100,105,116,87,88,106,100,97,99,103,111,99,102,105,100,106,105,114,110,108,102,101,91,100,90,105,92,104,110,98,109,106,84,104,99,100,102,91,105,105,85,83,98,101,109,98,100,113,100,93,100,98,111, +635.1582,119,124,96,99,97,119,106,101,91,123,116,104,93,98,109,102,101,117,94,103,106,118,95,101,117,99,113,105,97,115,105,113,99,112,122,109,79,106,94,103,101,105,95,93,106,107,106,106,106,111,108,97,106,103,93,103,104,91,114,105,113,107,90,96,105,86,100,109,111,85,104,113,96,103,93,104,106,95,100,107,99,99,108,109,100,85,105,97,111,102,105,101,95,98,102,105,102,101,109,101,104,81,101,95,96,99,100,105,113,108,100,104,109,101,93,111,90,111,120,97,102,108,115,101,100,115,92,106,98,104,111,109,108,106,97,100,111,105,101,103,90,112,88,96,103,103,109,116,102,109,100,106,104,120,98,118,103,96,105,104,102,96,112,100,111,94,73,107,113,104,99,98,102,101,106,95,109,107,115,106,109,111,102,94,116,103,101,98,102,94,105,101,108,111,101,117,101,103,108,101,115,105,114,111,116,114,95,105,99,103,101,99,106,114,98,104,106,112,98,93,102,107,91,110,105,119,104,110,107,110,92,107,100,105,109,99,117,107,97,95,106,102,105,104,102,103,93,121,103,107,106,107,93,99,106,114,108,108,107,101,106,99,110,107,101,114,96,102,98,94,102,105,101,113,109,99,98,105,113,95,98,98,102,124,96,104,107,120,90,107,96,102,116,98,107,110,113,106,99,101,96,98,103,102,98,117,95,107,93,113,106,103,106,94,103,108,96,100,107,103,104,107,102,68,78,104,91,79,109,98,90,116,106,95,104,109,96,102,104,96,82,100,105,84,121,112,99,109,113,99,103,101,108,108,104,88,105,108,103,103,98,102,109,117,105,101,107,121,104,97,113,103,107,104,103,139,96,109,107,105,98,118,110,108,102,103,110,95,103,100,119,95,105,103,101,106,92,100,108,102,106,100,99,105,111,98,113,103,99,95,100,96,100,83,103,92,113,99,102,102,103,98,96,107,99,112,103,101,102,103,103,106,105,100,88,100,98,109,105,94,107,108,101,102,105,95,106,97,103,96,84,99,105,108,108,82,100,95,107,107,106,101,99,109,100,107,97,108,102,110,105,99,114,105,103,113,96,104,100,116,95,89,108,116,102,112,110,115,101,95,96,115,102,99,110,117,109,117,97,98,73,102,105,109,99,111,89,99,106,100,104,99,100,116,110,103,112,102,101,96,110,104,100,114,109,103,111,100,100,107,105,104,105,99,101,109,96,107,106,122,106,103,100,110,104,109,105,104,107,116,108,129,93,109,114,103,98,108,94,97,102,114,104,104,112,93,103,103,110,93,98,105,110,108,107,73,99,96,121,107,106,100,116,111,105,102,100,108,103,94,111,107,99,108,103,111,102,102,112,113,101,100,106,107,71,102,107,100,105,99,115,105,117,107,109,106,89,95,102,108,106,108,109,108,103,109,107,103,99,98,108,112,96,108,115,102,104,101,100,108,99,93,98,100,89,102,102,99,100,112,99,97,109,108,93,110,108,101,107,104,108,110,105,105,94,114,110,98,95,112,99,100,108,99,100,109,112,106,104,103,101,106,122,105,104,111,96,107,110,106,108,107,87,110,106,106,94,102,98,102,96,102,112,120,107,100,107,95,84,96,116,98,96,91,98,117,98,108,103,93,117,98,114,104,101,106,92,104,108,100,99,99,97,94,98,105,99,105,112,109,111,106,103,100,107,105,107,99,108,110,105,102,110,101,98,106,104,101,113,101,104,121,102,111,110,94,87,118,116,95,120,105,81,112,94,105,105,103,90,102,103,108,106,112,107,100,100,114,100,104,114,101,97,80,106,109,90,112,101,111,87,99,91,90,110,103,107,102,113,101,96,102,97,105,110,109,105,106,125,103,103,99,102,102,103,110,116,100,108,104,103,107,119,104,98,103,99,96,117,105,102,106,106,101,103,98,99,80,93,100,99,106,103,103,111,96,102,108,90,111,115,104,102,84,109,110,124,101,112,100,110,107,109,101,102,110,106,97,105,107,99,97,97,101,105,99,101,80,102,114,96,119,101,99,106,99,103,98,107,109,104,96,104,100,112,105,96,98,102,99,104,109,102,104,92,97,97,103,103,103,103,107,110,109,107,101,109,106,105,96,109,107,105,118,105,105,101,110,103,111,94,99,100,107,70,100,113,111,115,108,94,110,98,94,102,113,97,102,102,106,109,115,104,99,98,105,101,100,100,102,106,107,108,99,106,106,106,102,105,98,99,104,89,114,107,102,94,105,101,101,108,102,94,108,104,88,91,121,107,95,93,111,96,80,113,112,98,103,104,99,84,107,105,110,100,82,96,109,111,105,98,117,100,90,112,108,109,102,100,99,107,109,103,112,125,77,109,106,116,93,103,92,106,103,113,123,117,107,99,102,108,100,119,108,101,113,103,113,111,100,98,112,90,109,107,110,105,117,97,106,105,107,108,102,121,95,93,104,101,96,109,105,104,99,107,105,113,96,98,125,104,116,108,110,100,113,101,103,108,102,101,99,104,93,107,99,117,96,109,92,99,106,101,102,117,105,104,107,89,101,111,110,98,94,103,99,99,111,101,96,109,103,105,98,109,112,102,73,98,97,104,85,83,101,102,104,107,101,110,92,109,113,103,101,95,111,107,110,96,97,102,101,105,107,108,117,95,112,112,109,101,105,108,105,103,117,104,107,113,104,100,105,92,108,106,106,119,100,104,110,94,104,110,112,95,107,115,88,98,108,93,102,98,104,105,101,100,115,93,108,107,105,101,113,112,98,108,106,113,104,105,113,99,107,90,100,105,103,98,113,106,95,97,115,105,94,96,102,101,119,103,101,109,104,103,107,110,80,106,101,96,111,95,98,106,111,91,105,109,94,102,92,108,118,93,105,109,92,105,121,91,116,98,100,107,106,115,106,103,102,107,103,112,110,102,108,101,95,100,105,100,108,95,101,100,107,107,100,116,101,100,110,99,108,98,102,109,103,106,113,99,100,95,115,110,104,107,95,106,92,104,105,91,101,115,102,101,88,95,94,111,102,88,109,112,103,103,108,106,102,99,110,115,101,92,99,105,101,95,107,99,101,101,103,99,103,112,102,85,93,106,111,98,90,114,96,100,90,96,101,109,110,76,99,101,95,102,106,102,95,99,95,106,94,102,107,93,100,109,95,93,100,94,118,101,103,100,99,113,102,102,88,91,109,100,104,110,85,94,109,99,98,95,100,115,98,93,89,98,98,106,93,106,102,104,91,103,98,122,104,107,109,103,106,107,106,109,102,109,110,112,98,107,96,113,102,106,100,105,102,93,84,108,110,104,96,95,107,103,111,105,118,109,114,95,106,107,85,76,98,104,117,97,103,126,103,99,93,103,99,106,111,116,102,103,107,103,107,94,100,105,102,109,109,105,120,98,92,88,93,103,95,103,111,93,106,125,106,101,84,97,92,104,98,103,105,88,117,101,119,101,115,100,105,101,101,105,114,119,92,109,106,92,112,95,97,98,110,107,99,97,106,98,116,104,106,102,100,91,85,100,104,107,114,96,93,102,106,99,108,97,98,110,92,100,117,101,94,93,113,109,103,111,80,93,98,108,114,100,110,90,92,99,99,107,102,104,95,111,107,88,112,105,104,94,90,99,101,105,116,107,104,113,105,90,101,90,101,99,112,96,106,109,107,112,95,96,114,116,117,97,96,112,105,99,83,99,107,100,92,112,105,97,112,108,100,96,120,104,94,104,102,87,102,106,105,103,117,93,93,98,90,95,107,103,106,96,108,110,112,103,112,109,101,103,99,107,116,105,105,111,93,101,105,100,93,100,105,110,107,75,99,113,106,105,120,98,101,102,99,100,107,98,105,102,107,98,95,97,109,105,94,105,99,112,102,90,70,99,113,101,102,108,97,102,99,102,101,99,91,97,103,110,98,99,106,97,102,101,94,101,100,101,108,107,105,105,100,107,104,102,98,99,102,105,115,104,91,100,94,100,109,96,103,103,112,117,105,98,109,109,103,95,112,112,110,105,109,113,109,118,103,102,101,102,104,100,109,106,90,89,100,92,98,105,102,87,96,103,95,112,105,98,108,96,111,113,111,100,101,111,102,94,108,103,104,100,107,103,114,112,92,103,113,100,109,120,98,105,107,99,113,104,104,98,108,99,112,111,107,109,86,101,98,93,100,103,106,97,103,103,102,104,113,120,104,109,101,122,100,110,99,96,104,109,108,107,104,93,104,112,112,104,100,93,105,116,93,105,99,110,95,103,98,103,104,100,99,100,110,99,95,100,98,95,108,104,102,107,109,111,100,107,108,107,103,112,96,105,117,101,98,92,105,98,108,100,114,92,98,106,87,102,95,103,100,102,100,99,109,99,96,113,116,101,107,112,104,113,104,115,94,106,101,102,93,100,103,108,87,106,102,110,95,105,94,98,98,101,106,102,101,97,94,97,95,102,108,86,99,103,107,109,98,100,90,100,105,97,103,105,104,118,105,106,105,110,78,119,113,100,89,92,110,102,105,129,107,108,85,106,99,108,105,76,113,101,112,102,98,98,97,117,105,103,95,105,97,108,111,103,107,108,105,106,103,109,100,105,98,108,110,98,106,106,103,113,109,112,108,102,95,102,110,102,119,108,100,95,91,114,99,117,115,100,107,119,101,106,106,99,101,106,113,92,95,123,106,114,95,98,119,106,100,100,113,91,97,112,99,114,106,107,100,101,98,102,100,101,102,97,102,111,108,95,103,102,96,109,101,110,98,102,104,108,104,108,103,113,105,102,116,108,96,107,100,102,93,120,106,102,110,117,100,105,105,120,103,99,99,107,96,102,113,77,92,106,103,93,110,96,108,97,106,99,106,94,102,111,98,106,106,100,105,107,103,108,89,92,107,101,90,106,98,100,104,116,105,88,99, +635.29938,99,112,102,108,91,91,110,91,117,107,103,104,112,105,107,103,99,118,99,118,106,96,103,104,99,91,103,91,102,109,94,112,123,107,107,92,106,102,105,107,110,95,99,92,86,119,104,122,105,109,100,106,95,111,110,96,103,100,101,112,94,101,96,96,104,125,101,108,97,107,117,110,115,107,98,116,95,110,109,112,104,110,100,106,109,102,108,106,106,107,108,106,104,107,95,98,119,108,106,98,100,91,100,95,112,92,98,105,111,111,105,103,106,95,102,113,94,119,88,96,107,109,108,110,100,121,110,99,108,110,103,97,110,97,112,103,100,106,97,94,99,113,111,93,107,107,99,113,99,102,104,105,104,94,100,105,93,99,91,102,96,109,109,100,98,100,106,121,98,93,62,111,97,94,82,99,93,102,110,99,117,107,102,101,113,104,100,97,105,103,99,101,104,110,117,103,99,102,103,101,106,108,103,101,104,99,83,106,109,107,96,107,94,130,110,109,97,103,94,104,103,107,112,95,97,110,105,100,108,116,106,107,99,95,113,111,87,109,104,94,110,105,114,107,99,96,112,109,78,99,101,111,106,97,105,117,103,101,99,98,104,93,109,101,101,109,122,105,110,95,101,101,105,105,104,113,112,97,99,110,107,99,105,106,100,100,108,98,99,109,94,100,95,110,113,101,108,108,105,112,105,100,115,97,106,103,114,116,105,110,106,114,104,109,105,118,108,99,109,111,124,92,114,104,112,107,108,100,107,102,102,109,104,104,113,101,108,106,115,94,98,98,108,102,107,105,100,96,106,98,107,101,89,121,100,104,110,101,111,105,98,109,104,107,104,95,99,99,98,102,108,107,115,96,98,91,101,97,101,101,112,106,101,99,104,95,110,100,99,105,107,93,109,109,105,105,101,102,107,114,104,104,109,94,101,93,94,96,90,109,99,89,105,121,108,103,103,111,113,107,102,115,104,110,101,93,104,85,105,114,91,110,104,96,99,102,99,102,105,103,90,93,105,93,101,96,91,120,109,102,75,100,117,105,107,94,104,92,105,99,98,107,110,102,110,111,102,108,102,107,105,104,111,98,102,98,104,111,105,107,96,112,119,117,115,108,106,106,98,97,111,106,102,110,101,113,100,103,98,104,106,99,117,99,101,111,104,105,105,104,117,98,105,109,95,113,107,108,108,100,102,104,112,103,103,96,100,92,122,107,103,100,108,102,101,102,126,98,100,121,112,103,104,99,105,92,104,108,114,103,108,99,109,116,110,111,101,99,102,109,103,92,95,104,103,99,104,99,111,93,123,89,101,107,102,115,103,104,94,100,100,95,114,103,103,108,115,97,105,101,101,97,108,110,109,105,97,106,106,113,95,106,98,99,104,109,102,102,105,112,114,105,87,100,105,104,101,99,105,95,108,103,99,113,97,102,100,114,101,98,109,102,109,112,98,108,103,108,107,102,99,105,106,103,100,116,102,96,110,110,98,102,99,110,101,113,101,102,110,105,107,107,99,105,98,114,98,98,103,103,104,101,108,105,102,101,108,100,107,93,125,108,111,112,93,97,106,116,98,104,117,107,104,104,110,114,103,102,94,107,105,97,88,105,103,106,110,119,103,111,102,106,114,107,100,97,114,103,130,100,102,97,107,108,107,101,103,99,106,102,99,104,97,109,99,102,94,115,101,107,102,102,98,113,118,100,103,99,107,109,100,101,104,100,108,105,111,103,106,104,110,116,106,97,104,95,98,113,101,103,109,105,104,105,111,100,108,115,108,123,93,110,119,106,116,114,108,115,111,104,100,105,102,117,109,98,110,105,109,110,106,101,101,95,104,107,79,100,103,107,107,103,103,102,104,107,105,106,103,104,103,95,100,88,111,100,108,101,104,109,111,106,99,104,106,104,101,105,104,105,105,97,110,100,96,106,103,98,103,113,109,100,105,109,100,100,116,114,110,100,99,119,101,116,100,91,100,106,106,110,103,106,108,111,107,105,110,88,94,95,103,109,109,118,96,101,104,111,113,111,108,89,103,100,102,84,101,101,117,109,100,110,105,87,97,94,110,117,98,109,102,108,108,109,107,102,99,106,99,108,101,108,104,94,111,108,105,102,103,106,116,108,104,99,112,120,103,99,108,99,119,90,98,102,97,106,109,103,106,129,110,94,101,94,105,102,101,104,102,103,88,116,100,91,97,122,117,108,113,106,130,107,98,101,104,93,102,108,95,93,105,101,100,89,106,85,106,105,112,115,102,114,113,99,104,116,93,111,109,106,100,106,104,114,104,96,96,102,119,99,92,107,107,107,107,102,98,109,113,109,117,98,107,105,106,105,96,107,108,99,114,102,110,94,114,100,103,100,103,107,109,96,104,109,107,115,104,108,117,129,107,116,110,104,102,121,97,113,94,67,100,105,113,108,105,101,108,103,101,100,105,110,95,104,111,106,97,111,98,99,104,108,112,111,98,112,104,86,109,106,99,106,110,98,88,106,95,115,96,98,98,97,112,101,109,109,104,105,102,99,109,107,105,98,104,102,102,112,108,102,106,101,104,111,109,109,105,117,104,104,104,111,113,93,104,105,96,116,98,114,99,105,99,132,98,100,106,114,105,106,113,106,102,119,104,112,103,94,103,128,99,95,91,102,94,104,108,93,102,93,94,94,114,94,96,108,114,94,109,107,106,74,103,106,105,113,95,108,111,100,115,93,119,105,105,96,118,93,103,107,102,98,102,102,93,87,107,109,100,114,100,104,99,100,120,107,105,110,121,93,90,110,98,105,98,94,102,109,105,101,104,117,100,87,106,102,100,100,100,106,105,105,107,101,110,109,103,98,106,103,110,106,109,102,100,99,103,106,89,94,104,95,96,110,115,93,121,99,108,107,109,106,103,113,88,95,107,114,102,109,99,97,114,106,102,113,99,105,102,101,108,108,97,100,100,109,113,105,63,97,100,111,99,108,95,94,71,103,96,101,101,106,100,107,95,102,97,103,104,109,94,97,106,108,114,93,114,94,103,96,102,98,89,103,105,103,123,103,104,110,88,110,99,108,118,92,104,100,94,98,105,108,87,105,104,103,106,106,96,106,102,100,88,106,97,109,104,96,120,106,101,72,103,111,106,116,105,110,132,116,99,104,102,100,109,100,100,106,105,112,106,109,114,98,98,98,114,96,105,106,111,102,94,106,81,110,104,113,117,114,96,101,97,99,120,103,99,103,87,97,112,99,96,102,108,97,102,104,103,101,104,108,113,107,107,106,104,106,114,122,102,101,97,102,109,103,111,100,94,101,108,90,96,102,103,93,100,78,111,98,106,115,100,107,106,114,112,96,104,104,117,96,107,99,107,105,111,115,113,97,102,114,104,99,121,102,124,103,102,103,99,111,105,118,99,114,95,106,114,111,68,118,94,98,106,115,113,97,112,102,107,95,92,94,104,93,109,100,116,97,106,109,103,102,100,93,112,98,103,100,112,120,102,103,108,105,101,112,101,90,95,98,100,113,130,98,92,69,111,85,115,105,112,102,107,102,98,96,99,106,108,109,81,92,112,98,110,102,108,103,100,98,101,111,106,112,104,95,104,99,106,103,99,104,113,111,116,107,128,96,93,111,112,101,103,99,101,104,107,82,100,105,91,98,120,99,101,102,103,99,94,108,109,104,117,107,102,102,101,108,106,103,102,114,103,107,117,99,98,113,110,91,105,101,101,95,97,110,89,97,116,102,103,106,111,86,117,104,98,95,102,96,113,102,105,90,106,101,101,89,96,101,100,104,109,104,103,105,100,112,115,108,103,106,105,105,108,81,100,115,106,91,108,109,98,104,105,114,104,103,95,107,104,100,95,102,106,107,104,104,106,104,104,109,103,96,106,112,119,106,104,88,106,106,101,96,109,114,103,105,103,94,97,105,89,115,90,98,101,98,103,106,102,95,109,95,117,99,113,103,108,108,99,105,93,109,106,113,99,108,107,99,113,109,111,111,116,106,112,112,84,117,113,105,114,100,98,113,96,99,113,115,94,91,109,104,104,87,105,110,109,103,113,107,108,99,107,101,117,99,98,121,110,116,78,105,107,109,100,113,113,99,104,112,104,107,94,104,102,98,99,97,94,106,108,113,98,114,107,105,103,88,102,101,111,109,97,92,110,100,94,100,110,94,104,113,107,101,98,106,102,106,79,104,102,109,87,112,117,105,107,100,101,105,111,98,106,103,92,121,105,101,97,107,100,112,99,100,114,121,113,100,113,91,105,106,101,105,106,102,109,104,115,102,107,117,117,104,97,104,100,97,104,104,104,102,103,118,108,112,98,108,105,106,87,103,91,101,101,96,98,98,110,103,100,101,109,104,109,112,108,114,108,107,95,100,105,113,88,111,70,94,105,104,116,106,107,104,102,92,107,96,109,104,96,109,99,90,108,101,118,110,108,109,100,107,97,101,110,106,104,99,100,108,100,96,108,102,105,115,110,92,106,140,99,113,107,104,98,111,97,92,95,113,110,107,109,113,101,99,104,91,94,107,103,115,98,133,100,103,97,100,109,102,88,102,108,91,109,110,97,111,102,90,117,118,110,98,99,100,101,94,106,104,99,101,100,107,94,107,97,96,93,101,120,108,102,111,92,111,106,104,95,95,99,97,113,114,99,96,101,102,96,88,107,94,103,110,101,108,104,105,109,98,106,97,95,112,124,113,106,104,100,98,99,99,88,105,96,130,74,99,101,108,105,96,98,86,111,109,110,108,89,101,105,103,102,119,118,109,106,75,95,110,104,106,112,104,99,120,101,94,100,110,83,108,122,109,95,106,106,100,98,103,103,104,101,123,104,105,88,107,104,108,100,111,98,104,100,94,119,103,111,97,117,88,95,92,117,101,98,100,104,104,114,95,106,106,99,132, +635.44055,110,78,98,111,99,107,102,95,93,101,105,91,108,106,131,87,91,116,107,112,114,98,95,96,92,104,104,97,93,108,116,101,100,94,97,101,103,94,103,80,96,104,104,100,94,120,98,90,105,101,93,108,62,88,104,95,103,96,105,105,100,115,102,87,107,109,98,112,104,112,115,100,90,109,97,139,101,96,110,96,107,112,103,100,90,113,117,104,101,101,109,96,104,91,99,111,99,104,97,73,91,95,109,100,101,116,121,96,99,82,90,86,102,108,108,109,94,105,111,100,109,98,108,109,117,111,105,89,110,113,108,93,95,101,101,106,93,112,103,87,111,107,114,94,95,89,116,99,91,96,99,105,95,95,106,101,96,98,105,93,94,122,94,99,105,114,108,101,101,94,104,99,103,112,106,100,104,100,111,105,101,101,94,95,102,91,100,101,103,91,95,123,111,108,100,100,135,116,102,107,100,97,117,117,115,107,101,100,105,109,100,96,102,94,98,82,97,102,102,100,106,105,104,101,115,101,109,110,103,110,91,108,106,112,115,105,96,109,104,103,106,103,96,102,103,92,105,96,95,109,103,96,116,108,93,105,110,94,104,105,106,101,107,96,96,97,103,103,94,111,101,95,107,103,100,112,86,100,104,96,99,114,103,107,109,103,104,103,93,107,109,99,103,110,113,103,104,110,100,104,102,106,129,99,102,109,100,103,103,112,98,104,113,99,85,95,99,114,75,92,93,99,117,95,114,110,99,103,103,103,106,102,110,99,102,111,111,106,95,101,103,99,100,101,100,103,100,108,88,107,97,103,102,103,99,107,120,103,100,117,90,97,105,107,96,100,103,99,89,109,112,92,108,105,108,109,102,119,105,107,90,110,103,94,98,104,102,100,104,102,116,104,107,96,95,101,94,99,110,103,90,99,104,108,109,97,101,67,96,104,102,98,107,103,102,98,92,100,121,103,107,101,91,112,101,98,88,108,101,95,93,103,100,107,94,114,107,85,101,91,120,114,104,99,95,103,93,100,96,114,106,103,96,102,107,98,101,100,100,101,102,99,100,113,109,105,104,102,106,107,111,100,85,96,107,100,109,118,82,102,92,112,110,101,95,103,102,97,100,105,106,96,102,107,99,107,107,95,108,99,116,99,91,99,113,109,103,108,109,109,106,123,110,99,99,108,106,99,104,95,102,103,99,97,99,99,119,95,83,95,100,87,117,107,108,112,102,103,114,123,118,113,101,113,98,121,105,94,104,98,79,100,100,99,102,97,103,106,102,104,107,117,98,105,99,103,108,104,103,95,93,92,107,102,111,112,116,101,89,95,98,98,103,99,103,94,106,102,96,97,115,109,99,111,99,113,99,90,95,95,87,99,122,100,95,95,104,109,92,107,132,99,116,108,128,102,107,113,103,110,107,114,100,102,105,109,99,99,105,102,102,99,99,117,99,102,106,92,107,106,105,103,94,110,92,90,106,116,101,107,100,101,116,95,99,102,106,108,87,102,106,101,108,107,70,107,102,90,104,94,103,106,113,96,95,112,99,106,102,101,112,107,111,100,94,105,101,101,94,94,102,116,104,115,114,109,103,106,102,107,102,105,95,98,97,109,103,107,98,102,110,98,110,109,106,97,115,90,107,96,101,117,97,109,96,95,102,109,115,109,104,100,99,99,99,96,107,99,106,104,108,114,104,82,107,104,103,104,94,113,105,99,114,109,102,103,102,99,104,108,95,104,106,101,94,106,96,93,106,87,114,104,120,95,105,109,108,104,107,105,89,107,103,109,96,107,109,115,106,95,106,100,116,109,110,112,103,142,111,100,99,96,100,103,106,105,104,129,116,96,102,105,105,105,102,101,103,110,100,103,112,109,111,94,96,106,109,106,101,103,111,103,107,83,98,104,108,113,105,91,101,103,106,117,100,106,112,115,103,106,105,105,72,100,87,95,110,93,98,116,100,110,113,109,109,93,107,104,105,119,98,103,105,100,99,101,130,104,117,105,101,103,104,113,100,96,104,102,105,117,109,116,96,107,102,96,109,103,97,111,101,107,107,94,102,112,101,103,106,104,105,108,118,114,107,99,91,91,108,111,104,103,106,107,115,100,100,114,107,105,108,112,105,117,101,99,100,115,119,104,107,120,105,100,103,107,109,105,108,114,98,102,95,98,109,108,104,102,98,101,105,109,103,105,99,77,105,101,103,110,98,105,111,116,98,101,106,106,96,107,97,98,92,101,89,110,122,96,95,91,103,98,109,102,105,107,93,113,105,96,109,92,109,105,109,103,102,100,94,105,93,113,104,110,98,106,113,111,103,103,110,100,94,105,107,71,96,102,109,100,95,108,84,105,120,105,107,106,102,111,113,113,115,105,103,112,104,95,97,111,106,114,107,99,105,92,85,104,120,114,98,98,99,97,101,109,103,100,104,90,104,124,102,98,107,108,99,106,109,94,97,96,105,108,97,116,105,106,113,114,110,122,114,88,98,97,105,96,106,118,100,100,113,91,100,104,108,110,109,110,112,117,103,106,105,101,114,94,107,96,102,100,102,94,104,108,120,104,105,106,111,99,105,93,92,107,98,94,102,111,98,102,106,103,118,107,112,100,104,104,113,108,104,101,100,101,112,72,116,108,113,96,116,109,103,102,108,87,115,100,105,112,103,97,111,97,110,109,117,98,102,105,106,106,109,102,109,97,102,107,94,99,107,87,99,100,98,93,103,103,96,95,102,107,103,113,94,116,107,96,108,104,104,101,80,113,106,98,105,98,96,100,103,100,110,117,112,108,110,105,98,100,100,109,93,98,101,115,116,112,104,122,93,133,105,105,100,105,106,108,110,104,107,113,101,104,107,105,108,97,106,102,110,107,122,100,100,106,107,109,110,116,109,118,108,95,112,105,104,107,105,89,118,121,83,102,93,103,99,120,102,103,107,100,113,112,104,94,99,107,113,108,104,103,95,106,117,122,109,100,115,114,88,108,103,105,113,99,117,102,94,108,98,96,101,101,107,105,104,105,97,106,106,108,98,107,108,99,114,103,96,75,106,100,124,104,108,107,107,105,93,107,103,96,111,100,103,106,106,104,110,113,98,104,107,108,98,101,98,89,104,77,100,111,105,107,107,99,99,99,101,97,102,102,105,97,110,106,121,106,96,114,98,111,104,113,98,100,109,95,109,104,96,116,105,109,102,103,112,108,99,106,96,102,109,97,100,103,102,95,114,104,94,103,103,87,93,110,108,109,105,111,115,91,108,107,112,111,116,100,103,110,104,102,102,105,94,121,100,105,115,105,87,110,103,106,112,107,104,112,97,104,104,102,103,109,101,99,102,94,99,113,104,96,108,97,108,115,103,128,115,113,108,99,92,109,93,101,102,106,112,109,74,104,92,99,97,109,109,106,101,103,108,100,95,107,98,110,81,109,106,102,110,106,112,104,104,98,108,98,101,102,106,99,108,101,112,106,106,113,100,107,108,102,99,108,105,106,101,104,112,110,117,102,102,106,110,109,107,103,110,106,105,104,98,126,106,90,105,99,100,121,111,101,102,109,103,110,115,116,105,113,128,115,107,105,102,110,110,103,101,110,97,112,105,97,113,99,104,104,106,99,104,111,102,105,108,103,113,88,105,94,108,101,92,96,97,112,108,107,99,102,105,116,110,89,97,100,102,105,112,114,99,97,111,103,104,100,102,104,91,111,103,103,102,117,105,127,99,106,99,109,111,98,96,101,115,106,103,107,113,106,115,104,96,109,99,106,99,108,104,115,109,107,107,100,105,95,112,99,101,111,100,109,98,100,117,103,92,108,106,107,94,117,104,104,109,104,103,116,97,97,110,97,90,104,110,99,110,100,101,98,111,111,102,106,90,103,96,109,96,98,100,108,102,112,109,104,111,112,108,112,95,110,104,99,111,113,99,109,91,102,115,103,97,112,97,109,107,106,107,98,97,113,101,109,114,123,98,110,98,119,98,111,107,103,105,108,94,100,104,108,97,98,106,91,108,66,113,100,112,111,105,92,102,95,113,97,103,98,102,102,94,110,97,97,107,102,112,108,98,96,102,106,113,100,105,100,105,105,108,106,102,91,117,107,101,101,99,102,110,102,113,111,101,113,107,99,104,92,104,100,95,107,105,95,104,106,109,105,105,105,105,105,111,102,100,103,104,93,135,106,118,105,115,113,103,130,104,114,98,111,117,102,113,127,108,103,95,110,114,91,102,102,102,97,96,99,104,103,117,93,105,95,101,103,95,89,118,111,115,88,105,89,107,106,107,102,101,109,94,118,105,119,94,100,111,97,104,116,119,98,117,103,106,113,94,107,105,109,110,100,110,104,104,109,105,113,108,109,112,98,110,106,104,105,110,95,106,110,101,110,110,116,109,111,98,113,104,95,99,98,99,107,111,108,106,106,109,100,132,96,107,120,115,104,99,71,114,112,107,108,102,102,109,108,98,108,104,112,96,91,103,104,106,109,108,112,97,74,102,94,106,111,103,109,106,118,107,110,122,108,110,116,111,102,88,88,113,113,95,115,106,119,104,115,104,100,102,105,105,108,91,105,111,120,104,105,100,109,103,111,106,110,106,107,125,101,103,121,107,100,105,103,105,113,107,106,91,119,118,88,108,106,94,106,121,103,110,98,108,138,110,97,98,99,102,107,99,99,117,95,114,120,103,116,110,112,102,115,103,117,101,101,112,91,109,106,92,117,110,97,105,110,108,111,110,110,105,116,103,102,106,109,99,106,113,108,120,97,122,111,103,102,113,94,105,116,77,100,101,106,114,90,99,115,95,111,123,103,108,113,117,113,121,123,107,112,100,96,118,102,104,107,107,103,109,94,105,105,106,105,106,104,112,92,121,99,87,102,108,105,113,98,113,107,103,104,102,99, +635.58167,103,85,116,98,103,105,115,102,98,111,96,116,96,102,112,116,99,96,105,115,102,117,101,123,105,105,117,98,117,109,109,115,118,101,104,81,97,101,95,111,100,91,105,92,99,94,104,100,109,109,106,87,92,119,94,84,99,97,114,92,89,107,104,100,109,107,108,107,104,107,121,99,111,86,95,112,96,103,109,116,122,103,101,104,111,106,105,97,95,106,105,109,93,105,99,102,104,100,90,117,92,93,107,102,105,96,99,100,110,92,106,104,103,108,98,122,95,102,100,104,99,102,100,107,109,109,108,113,108,104,95,92,87,95,104,91,107,107,105,81,102,107,105,99,101,98,100,100,90,96,110,104,95,87,100,102,114,103,99,105,113,114,116,125,111,92,109,90,112,106,98,98,103,102,104,109,114,104,113,97,98,109,100,111,95,109,104,91,100,102,107,101,105,97,101,91,103,101,113,101,106,92,97,104,101,109,94,102,110,107,78,104,98,107,101,100,99,116,98,96,96,100,105,106,103,112,110,98,106,110,95,114,94,124,111,103,100,104,75,97,108,108,101,95,101,119,107,106,105,95,109,115,100,106,105,121,99,115,97,97,99,96,111,100,99,108,103,118,109,99,102,109,108,96,107,104,89,115,111,99,104,115,107,115,100,117,101,104,99,102,100,114,103,101,105,96,101,100,113,98,96,119,101,117,96,105,107,108,99,111,98,99,106,95,97,110,118,104,115,108,113,97,107,106,105,105,100,100,103,101,106,104,99,95,121,108,96,102,103,95,114,95,103,96,104,99,142,118,111,108,100,105,94,77,97,82,126,115,104,98,107,104,88,102,104,109,108,117,91,103,94,108,103,91,116,115,103,108,107,102,111,100,120,110,94,100,102,104,95,105,116,101,112,112,92,99,95,97,114,101,87,97,98,110,104,87,128,102,103,102,98,92,104,106,108,102,103,101,115,108,96,93,92,113,103,101,104,100,97,99,100,102,105,101,124,104,105,101,94,100,119,105,89,104,104,113,100,106,104,103,97,106,98,112,101,98,113,106,114,95,105,118,105,108,97,100,102,102,109,104,91,112,115,106,120,106,101,125,107,109,105,101,125,122,112,102,109,114,106,110,109,105,94,103,98,100,123,100,108,105,113,101,99,100,102,107,97,106,103,102,105,97,94,104,94,105,95,98,108,97,105,115,98,128,99,100,116,110,102,109,94,108,107,107,95,101,102,105,84,78,109,121,107,103,97,101,107,103,96,113,100,102,124,110,103,98,117,90,102,102,96,120,101,107,102,109,84,109,92,103,95,100,108,106,84,111,101,101,84,94,91,98,112,101,99,86,102,104,98,109,102,109,113,106,125,109,106,116,107,116,96,102,100,106,96,103,102,106,108,115,107,106,97,99,96,98,103,103,105,91,106,116,112,105,95,100,106,104,101,103,96,101,101,108,109,97,102,104,105,112,100,109,87,100,106,90,99,112,103,104,98,100,116,100,100,124,111,103,104,94,114,104,112,99,103,104,112,101,109,105,104,105,116,118,107,105,103,90,102,114,105,103,107,92,102,103,90,103,107,99,110,115,113,102,94,103,112,102,94,91,108,99,103,96,99,115,98,102,97,95,108,101,103,104,93,102,104,105,104,97,110,94,109,109,113,107,95,106,108,116,95,107,73,102,98,112,100,100,107,104,103,102,100,97,113,101,113,106,101,108,108,108,96,93,109,98,99,113,128,102,99,103,99,98,102,99,91,103,119,101,92,101,113,101,103,109,105,126,90,100,112,101,118,117,109,108,108,108,105,98,97,108,105,106,109,95,101,97,112,106,101,104,112,90,106,105,99,102,100,104,89,110,98,105,103,91,107,108,119,102,114,96,102,103,109,102,100,96,112,118,105,112,106,118,102,87,107,106,104,102,107,112,113,109,96,92,105,110,100,95,103,102,102,92,95,102,118,100,100,92,103,104,106,102,96,109,100,106,101,112,116,96,102,103,103,112,110,109,110,119,96,117,105,112,90,100,97,110,96,105,89,98,99,86,106,103,108,104,101,90,104,109,113,98,99,99,103,101,112,94,100,110,104,125,105,97,85,112,104,112,106,109,107,98,107,104,105,109,110,111,99,104,103,97,105,106,101,103,96,102,109,106,98,113,92,91,118,109,117,96,95,103,100,108,117,105,94,89,97,100,105,94,113,110,117,98,94,106,106,100,106,109,107,98,99,105,113,95,112,99,89,73,111,95,98,108,100,95,102,104,90,103,116,95,103,97,110,99,100,106,108,108,106,113,107,83,113,103,97,112,99,103,108,107,106,116,105,93,101,104,114,121,111,108,99,106,107,108,105,106,112,93,117,138,112,97,102,101,99,121,82,122,109,98,90,119,100,113,122,96,114,108,105,111,95,100,105,109,96,113,104,107,96,94,105,91,106,109,104,109,111,120,97,121,115,105,94,98,95,97,99,102,91,103,107,106,96,122,106,117,76,101,117,98,104,107,102,107,107,96,105,110,114,98,106,103,100,104,98,101,109,102,115,103,99,105,100,108,92,110,107,95,89,104,103,103,110,127,104,103,108,105,112,101,112,104,99,95,107,110,95,103,91,102,103,109,108,109,112,94,115,107,79,104,104,84,102,110,101,104,100,97,104,101,111,103,109,103,103,106,111,105,111,95,106,97,108,114,104,103,102,99,100,110,103,117,111,107,100,104,110,112,112,105,113,109,110,96,103,105,108,98,110,105,106,113,105,104,103,106,97,104,99,101,106,104,112,103,115,104,103,114,117,100,109,109,111,110,107,109,106,108,91,95,114,104,109,112,112,102,95,104,109,105,104,100,102,105,100,110,101,109,120,100,106,110,99,112,92,111,123,91,104,104,107,102,105,111,117,104,102,115,106,119,107,113,95,106,107,108,101,112,106,98,108,108,101,102,107,101,103,110,96,101,104,96,118,108,105,100,108,102,98,104,102,98,114,106,99,100,106,115,106,100,111,109,110,109,99,106,109,104,101,100,116,109,109,111,107,96,101,89,112,105,105,101,98,99,104,117,105,107,100,122,105,113,113,99,120,103,120,103,100,79,103,90,104,101,99,112,108,101,99,103,112,101,110,106,97,101,119,102,110,106,116,109,110,109,107,109,97,105,104,102,101,94,109,100,109,104,103,101,103,105,109,95,107,104,106,108,123,103,105,102,97,105,104,100,117,100,106,103,111,102,119,103,100,107,98,118,116,107,96,103,99,105,111,104,100,95,128,107,109,114,101,116,94,99,102,105,106,95,103,103,111,101,99,101,115,116,112,99,100,101,110,111,107,118,111,95,97,89,108,102,109,113,97,109,67,104,118,100,100,101,102,112,109,104,113,97,97,95,110,110,105,100,92,118,85,104,102,107,108,93,101,113,104,101,108,100,102,107,109,102,101,101,110,111,107,98,104,107,81,105,119,102,118,106,94,107,102,98,96,98,115,103,91,98,107,103,101,94,98,90,104,102,104,101,124,94,99,112,114,113,105,97,125,105,105,95,125,103,119,119,96,109,101,95,100,104,96,100,103,105,97,114,109,105,100,105,105,110,112,109,98,105,99,98,105,97,89,109,100,101,108,96,106,101,107,102,100,117,77,107,106,104,108,111,118,103,100,104,116,105,100,94,108,99,104,112,94,107,101,97,111,103,92,94,108,113,92,86,109,111,102,112,98,102,109,99,117,94,100,116,98,97,108,109,107,98,115,100,90,99,102,97,105,104,106,116,105,106,109,105,101,100,102,109,105,113,102,97,106,101,93,101,93,104,109,102,99,108,108,93,117,101,95,96,95,104,105,98,110,94,108,100,95,108,92,94,103,112,112,106,108,99,96,96,113,104,98,92,113,92,106,125,97,105,104,99,99,109,94,99,103,98,110,107,101,120,91,104,96,106,103,103,100,97,109,109,107,98,103,124,79,113,117,103,115,106,92,95,89,110,92,109,109,98,89,116,98,102,101,121,115,113,108,96,115,105,109,100,103,92,101,127,102,105,103,108,103,106,80,107,107,99,110,109,109,108,135,97,106,110,112,120,105,101,102,109,112,95,102,120,104,110,97,93,103,115,111,123,103,103,108,117,102,103,101,105,108,107,104,98,95,114,92,108,110,101,96,110,100,101,120,114,112,103,95,111,104,93,100,111,108,109,125,109,101,99,109,111,109,105,106,103,103,113,102,119,100,109,100,108,110,106,101,106,98,114,101,110,113,110,104,99,99,104,111,110,112,108,116,100,102,105,101,111,98,111,104,99,105,104,101,105,108,92,116,106,105,106,116,99,108,115,106,113,100,111,109,105,114,107,108,104,98,113,109,105,111,113,110,106,105,106,115,118,102,108,104,99,97,108,104,110,100,106,100,113,99,114,111,98,78,102,99,110,103,100,99,95,102,102,107,105,108,94,120,102,105,106,101,91,85,108,88,110,110,107,100,109,106,107,100,100,103,104,104,108,113,94,105,92,81,101,99,95,98,98,109,74,99,108,98,119,102,106,108,113,117,97,100,101,116,98,116,105,86,103,99,113,108,99,112,108,98,110,107,116,110,104,107,99,103,100,103,101,92,103,99,97,104,98,99,109,108,106,106,107,108,106,117,106,105,98,84,114,104,105,116,127,105,113,106,104,108,108,104,114,111,88,97,114,98,121,106,100,102,102,96,93,114,107,88,101,120,113,104,102,108,116,101,102,111,99,103,98,99,103,92,106,100,86,100,105,110,104,106,112,103,112,93,107,102,97,107,109,99,87,89,111,105,114,108,101,113,96,102,95,109,94,101,119,112,109,96,110,100,104,105,106,111,105,98,93,109,87,109,90,103,103,95,99,97,97,104,115,111,91,102,107,98,95,88,113,100,107,99,99,104,105,117,115,95,105,101,100,100,94, +635.72284,113,87,110,99,107,95,101,111,86,97,108,86,96,100,101,99,96,91,91,101,109,107,105,94,104,106,103,110,108,102,92,95,101,88,109,104,97,96,100,98,95,110,106,103,106,109,105,111,108,112,108,107,122,99,97,65,99,120,127,107,94,118,99,115,90,107,92,109,99,94,108,109,106,101,117,108,97,103,106,112,106,110,105,92,90,97,109,110,99,95,104,70,96,65,96,105,109,84,106,101,96,110,63,89,99,100,97,100,108,111,112,102,115,93,105,118,96,101,106,112,99,98,116,109,117,104,108,95,104,109,105,112,102,104,111,104,94,83,95,91,90,104,96,95,102,104,105,104,85,94,93,105,110,93,106,95,104,94,102,109,95,110,98,114,100,122,109,102,96,105,106,82,96,101,109,105,99,101,97,103,107,116,109,100,109,92,91,91,103,105,100,99,99,97,110,108,113,100,106,104,103,104,100,107,101,94,97,121,102,97,85,99,99,101,99,100,98,96,104,102,99,91,75,100,106,114,92,104,91,99,100,98,109,112,105,99,101,106,108,95,103,91,100,114,94,105,105,104,97,91,101,98,103,98,95,112,115,83,88,107,100,103,102,98,86,121,90,97,105,104,93,107,112,120,122,103,104,105,96,100,98,92,108,104,97,124,113,98,104,95,104,107,107,100,108,102,136,110,99,92,97,101,102,117,104,112,107,113,103,78,103,105,97,94,102,90,108,114,99,103,111,104,90,110,93,103,97,106,103,111,106,112,111,104,108,101,95,112,104,99,111,103,109,102,92,109,103,105,110,108,103,101,112,104,114,104,91,105,103,104,112,93,103,108,99,104,106,113,91,114,105,87,106,105,112,93,100,117,107,106,110,116,107,102,100,102,106,106,100,108,115,80,106,103,110,99,95,100,88,110,105,104,102,96,98,101,107,112,110,101,91,98,115,97,96,106,100,98,100,95,101,103,99,104,105,94,92,93,109,110,103,86,104,103,101,110,112,102,94,103,105,94,99,96,109,99,100,100,107,111,109,99,107,109,102,112,102,98,100,89,98,107,100,96,89,107,97,104,101,99,108,107,112,100,108,96,105,103,103,101,107,109,100,104,95,97,105,103,114,98,98,119,113,114,118,109,106,108,103,107,108,103,112,108,78,109,109,102,101,103,115,100,95,109,104,101,110,103,99,103,105,106,109,97,109,100,121,113,101,102,87,100,104,93,110,94,100,106,115,99,112,94,101,102,99,105,114,108,104,102,95,98,105,100,118,89,109,106,104,92,104,104,111,108,103,99,100,104,99,100,95,106,87,114,105,94,106,99,103,100,106,102,107,98,103,95,94,102,102,99,100,99,120,110,102,107,106,104,106,105,105,104,106,108,114,103,92,108,108,105,110,94,104,104,97,113,110,99,101,101,99,95,100,110,96,96,100,106,99,108,104,96,94,105,76,112,114,92,99,102,107,116,106,113,102,93,87,122,109,119,98,116,117,100,92,91,100,109,104,99,100,105,114,105,94,109,115,99,117,100,105,108,105,105,87,97,105,100,102,85,98,109,107,86,95,115,100,98,99,101,106,102,102,106,99,101,107,102,94,96,96,114,102,110,102,101,103,102,105,89,98,91,111,103,110,87,95,100,101,104,114,102,100,108,99,109,97,116,91,105,103,106,97,92,109,118,112,94,110,105,108,101,110,98,100,96,118,108,104,105,107,88,100,96,102,101,97,120,107,95,100,93,102,101,101,114,93,105,108,98,115,99,126,103,104,112,102,99,98,104,103,93,109,102,91,106,117,107,105,125,109,106,90,98,118,103,99,101,117,111,97,95,103,98,94,98,92,114,106,101,125,99,99,96,104,99,106,115,99,108,100,100,106,114,111,99,109,106,101,87,111,106,105,130,108,113,108,110,103,116,99,103,112,98,101,97,93,106,109,90,100,101,79,107,103,102,96,113,87,102,111,103,103,95,99,104,111,102,105,107,106,99,109,108,101,105,106,87,110,98,100,112,124,98,117,103,96,103,117,104,92,109,98,96,111,101,92,106,94,110,98,108,102,108,109,97,99,108,100,100,104,117,99,103,106,98,91,100,95,126,104,105,113,108,102,99,97,117,107,99,122,113,113,109,92,100,100,101,109,104,97,105,108,91,110,112,104,104,102,97,101,101,103,108,96,103,111,99,105,117,96,102,100,93,99,101,102,103,107,103,106,104,106,102,100,114,99,101,94,100,98,102,107,107,107,110,100,99,104,96,96,105,97,107,122,92,97,65,99,103,104,105,103,107,122,101,101,103,90,103,101,106,93,108,94,102,98,96,87,106,100,117,106,101,98,96,105,95,104,106,106,108,100,100,116,97,100,103,97,108,109,120,104,96,90,110,107,103,100,114,98,114,120,119,104,117,105,98,113,98,94,105,111,109,101,109,103,104,69,94,113,105,98,111,122,108,94,95,92,94,107,92,107,108,109,105,106,90,111,109,104,90,108,79,105,107,110,99,98,104,108,94,113,91,95,117,96,104,109,98,94,108,110,105,113,100,96,97,111,102,110,115,100,100,95,101,124,93,103,101,96,104,95,101,110,106,94,105,107,96,102,105,97,104,102,98,112,102,102,111,117,103,96,100,105,105,102,106,87,97,116,98,109,97,107,109,111,100,109,103,106,93,101,103,104,99,97,96,80,93,108,100,100,97,110,109,103,106,109,109,103,117,84,96,102,95,112,61,96,112,103,103,114,98,93,109,105,107,96,102,100,101,103,108,111,103,99,109,108,108,101,103,92,91,100,102,112,119,98,98,105,106,116,111,98,108,94,104,95,110,107,94,108,79,101,115,105,91,113,111,105,106,112,107,95,109,100,106,101,110,120,101,103,101,107,110,102,102,94,118,113,113,98,99,96,104,101,108,99,105,99,111,106,111,111,116,101,111,95,108,107,118,103,81,117,85,98,105,106,101,109,101,108,108,92,102,109,112,102,102,105,99,98,96,102,91,100,116,102,110,95,104,102,106,140,99,111,99,107,104,112,109,100,99,106,110,96,103,107,124,93,111,100,93,108,102,105,102,103,100,92,100,85,102,87,104,108,89,110,96,110,106,107,113,114,95,100,73,106,97,113,105,116,106,110,98,79,113,104,93,102,98,90,106,106,99,96,98,103,107,113,90,97,101,112,111,107,93,103,115,120,92,109,112,97,99,103,99,105,109,96,111,106,106,90,113,102,101,92,111,101,128,105,111,107,102,93,76,95,89,103,122,125,103,100,98,104,105,108,102,98,101,98,95,95,93,92,112,95,106,107,103,113,102,104,103,108,96,99,113,111,98,99,108,132,103,100,108,115,116,96,102,113,91,93,100,113,99,99,95,104,105,110,104,108,104,88,97,101,109,94,100,113,98,106,87,105,106,103,106,100,84,104,103,109,110,98,107,113,113,91,110,102,116,106,105,106,111,101,97,109,101,110,110,99,95,100,109,108,96,103,97,103,97,104,107,105,95,90,105,94,120,94,103,105,110,117,104,104,107,107,113,124,104,101,98,111,97,103,101,88,87,117,83,103,100,103,99,113,93,112,83,115,101,102,113,113,111,101,110,94,109,103,102,92,101,109,100,105,109,99,89,108,108,108,105,99,111,107,133,86,91,99,93,101,103,109,115,110,101,89,93,98,102,91,96,105,106,105,113,106,106,98,115,100,102,96,105,93,96,102,107,100,98,96,90,99,110,105,92,101,114,112,98,112,95,98,95,112,99,104,94,91,92,101,103,121,91,102,108,83,108,102,91,106,103,96,97,105,100,95,112,100,109,106,97,96,91,95,100,102,100,95,98,130,95,103,103,93,104,109,96,105,105,97,107,106,93,113,96,98,101,101,95,125,104,115,111,107,98,99,117,73,99,105,96,103,99,94,104,106,106,106,105,106,99,106,104,99,102,105,96,105,95,109,94,98,107,111,95,105,99,98,104,103,116,108,110,98,94,98,106,98,113,87,94,101,99,112,101,108,98,97,105,105,102,101,101,104,102,102,105,112,107,92,109,111,95,103,92,82,105,88,101,79,108,92,104,102,105,93,109,99,88,95,98,95,137,104,103,87,102,97,106,98,108,104,94,108,100,101,101,124,94,115,107,98,106,115,106,91,98,91,79,99,102,96,115,104,109,96,116,102,104,110,107,98,112,97,103,103,102,97,109,104,102,101,99,99,101,117,107,95,114,100,108,104,98,88,104,110,100,100,119,105,100,107,104,112,107,92,98,100,95,97,101,98,104,102,123,99,91,103,99,102,100,106,101,94,101,104,107,113,103,102,100,106,106,104,117,114,92,109,99,106,108,104,104,83,105,104,112,106,107,102,105,110,95,106,104,94,100,112,99,96,107,109,88,106,102,110,96,100,97,105,99,105,111,111,85,103,97,102,107,95,116,100,102,98,101,103,96,99,84,91,103,88,101,99,94,105,112,98,119,101,92,108,84,105,97,105,93,95,94,102,102,111,109,102,103,102,102,101,97,109,116,94,100,106,96,96,94,102,93,98,99,109,95,89,103,113,93,114,103,106,110,119,98,102,101,101,108,113,111,94,106,109,101,104,96,106,91,107,121,110,97,99,99,96,113,114,100,88,92,91,99,99,106,105,104,102,117,103,113,107,98,106,105,99,105,91,100,104,102,106,95,110,93,94,116,81,102,97,97,103,116,111,100,104,94,101,107,104,107,104,109,116,113,99,95,107,92,106,91,81,109,99,105,103,106,121,108,116,109,99,103,91,102,94,98,96,102,95,100,105,107,112,97,103,113,95,113,75,113,100,106,96,117,95,94,96,88,98,112,94,95,109,111,105,99,95,120,111,101,109,125,91,108,116,90,109,111,90,106,116,109,103,106,93,73,107,97,97,96,98,108,114,107,102,111, +635.86395,91,100,97,99,100,107,104,101,122,87,103,97,95,98,106,83,103,102,103,105,95,104,109,101,100,92,101,106,113,96,113,121,99,108,87,117,101,104,100,109,101,115,100,122,100,99,94,99,104,117,110,93,103,108,97,109,100,100,106,102,104,107,98,86,109,96,89,104,90,108,87,100,96,113,119,107,102,104,100,93,98,104,100,115,104,97,112,104,80,85,105,112,108,100,92,101,94,98,122,92,103,113,101,95,104,101,101,101,109,114,90,99,92,94,103,106,99,95,117,107,100,98,101,100,111,104,105,93,101,114,113,101,99,107,106,100,104,105,92,104,106,107,97,100,85,86,106,103,99,61,82,102,107,99,101,95,102,103,95,91,95,98,79,100,119,99,100,102,99,105,94,102,108,91,118,108,109,78,103,112,99,113,102,104,96,100,98,88,102,93,107,104,111,103,101,103,105,100,108,96,107,103,103,110,96,104,107,101,102,84,109,98,91,104,96,127,108,101,106,101,114,97,105,90,112,99,110,98,105,103,100,98,103,97,101,109,94,105,92,96,106,98,116,92,108,105,92,107,92,91,96,101,101,91,96,104,101,108,99,107,104,102,101,97,96,111,107,87,79,92,105,101,101,97,107,98,108,109,91,111,105,108,100,108,106,101,95,125,99,109,97,99,104,113,113,113,108,94,103,106,98,105,116,104,99,96,108,111,108,119,105,113,107,103,104,94,94,93,93,98,108,104,79,95,104,88,106,91,100,111,106,79,112,99,100,102,107,98,95,104,107,109,104,95,93,93,103,101,99,109,95,99,97,105,108,99,106,101,90,102,99,106,94,102,90,96,109,115,96,127,95,110,112,113,110,100,103,106,97,98,104,103,106,107,98,105,95,119,96,104,107,101,103,95,103,96,97,101,130,112,104,108,114,90,105,93,118,98,100,101,103,97,110,105,107,114,97,100,109,98,102,104,94,107,104,96,109,98,87,104,95,98,105,111,97,114,101,104,90,114,109,104,100,111,94,112,109,106,106,109,116,103,109,102,104,98,101,102,98,100,104,117,100,95,99,107,101,94,104,102,107,98,109,90,101,98,103,107,100,104,88,101,113,102,110,101,92,99,98,122,100,100,95,100,89,114,103,97,106,95,100,111,115,101,101,95,95,99,109,99,91,100,114,102,106,116,99,91,102,115,108,95,111,106,108,97,115,110,91,97,89,99,108,105,104,124,102,97,90,97,107,96,105,104,92,97,113,96,113,96,102,102,94,106,104,105,112,90,106,98,103,110,104,99,103,100,105,113,113,99,92,91,99,102,114,88,96,104,102,114,103,102,110,92,88,101,98,101,102,100,90,99,115,118,113,111,109,99,95,102,101,102,105,90,107,89,110,114,105,105,112,110,108,99,114,105,100,105,108,96,99,106,105,113,108,103,90,107,99,107,99,105,96,98,92,104,102,99,111,105,98,111,108,95,98,89,101,111,109,114,98,107,106,91,110,106,109,96,105,103,94,110,103,101,100,102,107,96,104,100,118,104,106,90,109,103,108,102,98,101,117,109,93,109,109,96,86,92,96,88,110,95,93,106,107,100,102,98,106,96,99,100,99,93,103,97,111,102,95,105,109,99,109,106,80,115,106,95,102,101,98,106,100,100,100,96,96,98,113,94,113,104,103,90,101,97,101,83,108,95,103,95,95,104,104,97,108,113,104,102,106,87,99,113,113,101,100,100,94,103,96,112,100,99,87,107,93,113,93,105,110,108,104,95,99,109,104,115,102,97,106,108,103,85,112,93,114,114,111,103,112,99,108,110,100,105,107,91,102,91,99,110,101,102,118,100,108,95,107,98,105,117,111,105,112,111,80,94,116,98,82,107,98,99,103,111,104,83,107,95,100,103,106,105,94,101,108,99,106,98,96,118,111,116,98,98,80,94,98,84,108,95,113,102,92,121,102,102,79,107,100,98,81,95,98,99,94,102,111,114,101,122,93,107,100,106,113,99,110,117,103,103,92,101,107,86,113,113,102,100,100,114,100,98,87,101,103,105,104,98,99,101,108,110,105,112,100,105,95,74,109,105,90,100,104,105,96,93,106,103,102,103,99,102,103,110,92,101,93,112,103,114,100,107,97,114,88,116,102,90,120,93,94,88,105,112,103,109,101,102,97,100,102,99,100,99,107,85,107,94,105,106,113,89,100,87,94,87,103,110,106,101,113,102,99,97,96,96,107,104,96,108,105,139,107,115,115,104,118,105,102,97,102,101,104,105,101,109,91,101,103,90,102,93,91,100,100,108,100,102,113,103,94,96,106,95,93,108,96,107,134,96,96,98,107,102,112,102,108,118,95,105,92,98,101,92,114,109,112,104,114,102,116,90,106,91,102,100,102,101,114,117,96,117,100,94,108,101,98,84,99,92,125,103,100,105,93,108,106,105,101,98,92,111,104,108,106,101,104,101,104,118,104,90,112,115,109,107,111,105,101,105,121,106,102,111,94,115,107,109,108,103,103,118,106,104,103,105,97,101,109,114,100,108,88,100,106,106,101,103,100,104,104,99,107,96,100,113,99,111,106,100,111,96,108,96,112,111,96,80,108,112,102,115,100,109,103,101,103,94,105,123,99,111,106,101,103,118,107,109,103,99,98,103,102,105,113,96,108,103,101,100,112,81,113,99,106,99,115,109,106,107,113,99,113,109,112,108,114,106,106,102,110,100,105,97,95,98,101,88,106,109,114,103,103,106,98,75,104,111,104,113,88,93,102,113,110,101,106,125,108,114,98,114,96,101,109,103,113,112,102,107,102,104,103,109,97,126,99,118,108,106,96,97,95,98,97,100,103,106,101,112,111,114,95,92,100,103,98,105,113,115,98,105,108,110,92,100,128,98,99,105,110,110,96,104,91,109,100,107,103,102,98,105,94,107,99,102,108,107,115,103,98,104,99,105,92,102,103,106,99,113,110,99,98,121,100,91,107,103,95,120,110,99,104,108,106,104,115,106,113,117,105,105,110,70,109,104,108,105,107,99,107,119,109,101,112,107,99,113,104,105,91,101,116,112,109,107,93,105,102,108,109,107,100,110,95,105,95,91,115,116,104,108,103,107,113,106,96,101,113,99,106,129,114,100,113,105,123,136,115,105,102,102,105,106,101,109,105,110,105,105,97,108,97,119,100,107,113,102,109,108,109,106,99,109,103,102,113,102,102,93,105,107,101,97,107,101,101,108,107,93,110,103,104,100,102,95,109,91,101,112,100,108,93,106,94,105,102,96,102,99,109,97,97,88,89,100,104,68,115,101,106,100,103,98,97,108,90,100,87,107,117,110,102,108,103,105,113,91,96,109,103,119,98,114,120,105,108,99,99,103,98,106,104,109,102,96,102,95,106,104,110,111,115,65,107,107,110,109,103,97,108,105,96,112,122,106,116,98,117,97,109,100,102,101,99,115,114,109,101,117,102,105,97,82,111,105,97,111,100,106,109,96,102,97,99,93,107,121,104,125,111,108,112,107,113,100,100,107,105,112,106,113,110,97,70,123,132,95,110,98,108,108,115,98,101,97,109,96,116,102,118,117,106,113,107,109,101,88,92,101,98,112,95,102,90,100,104,105,90,124,110,116,106,105,113,116,103,108,99,107,92,100,102,102,118,96,132,103,106,105,108,114,105,100,97,100,110,109,109,104,101,120,113,106,106,98,115,104,110,102,103,107,102,96,102,104,105,109,102,98,98,95,106,107,100,110,98,116,112,102,101,93,97,102,95,119,105,93,103,99,113,100,115,113,110,92,106,106,101,107,111,104,112,115,112,105,103,103,107,95,110,101,103,102,107,95,113,110,101,102,102,102,107,92,105,98,98,95,110,98,116,110,110,102,103,94,98,107,88,101,102,108,107,109,106,111,96,101,112,105,109,113,113,103,109,104,113,113,105,102,104,108,102,105,94,116,97,110,106,103,92,129,98,108,92,98,92,118,110,102,105,116,110,102,106,110,101,108,104,105,104,106,108,99,102,112,104,106,124,105,109,104,100,107,111,108,113,100,103,100,100,103,100,115,101,111,110,109,100,104,101,91,115,102,108,99,105,98,128,97,100,108,107,104,103,112,115,103,107,116,106,106,115,108,105,107,113,115,94,95,110,93,96,115,98,109,95,112,106,104,105,104,95,105,106,112,108,96,97,101,113,124,94,104,96,108,102,106,113,113,102,107,102,110,100,106,79,110,108,113,109,109,106,100,107,111,96,113,95,106,103,120,107,96,104,104,106,105,106,107,104,98,96,100,103,112,88,95,100,95,99,101,106,97,102,98,102,109,119,113,127,105,107,102,95,101,111,109,117,104,117,110,97,118,104,95,103,103,106,111,108,106,102,103,111,102,74,106,100,108,104,110,103,86,104,99,108,97,104,100,115,103,79,108,99,91,100,95,100,98,104,104,91,98,112,103,107,104,111,105,99,102,90,83,100,102,106,102,97,98,104,109,92,66,103,100,102,90,102,83,97,102,101,113,107,111,95,113,98,96,117,107,88,99,108,115,113,112,141,108,109,115,115,99,93,95,108,102,100,101,109,99,108,103,107,103,105,100,108,97,95,117,115,104,106,106,98,97,115,102,106,114,104,114,93,112,113,97,106,103,74,116,103,98,114,94,107,100,105,108,104,118,98,103,114,102,109,120,99,100,102,113,106,99,114,117,102,102,103,95,111,90,113,115,104,113,101,100,102,103,94,88,117,101,99,118,99,118,116,100,99,104,95,103,113,112,111,106,106,113,96,113,90,115,116,105,105,92,108,98,104,106,100,100,113,111,105,106,120,94,108,111,117,104,108,106,97,96,105,124,108,108,99,107,107,98,113,104,113,109,102,103,98,97,75,125,105,96,106,112,105,97,96,111,100,106,102,90, +636.00513,87,98,105,101,101,107,107,97,115,106,107,82,92,106,102,112,108,121,109,98,104,99,102,102,102,103,96,112,113,105,103,101,109,101,110,98,105,95,94,95,98,97,96,108,97,115,110,97,100,98,110,92,96,104,91,106,98,92,100,102,102,103,94,91,103,113,97,110,98,104,113,115,98,107,94,99,107,100,92,103,107,111,125,115,93,91,103,109,71,100,89,109,96,105,92,98,107,92,101,83,103,99,107,113,107,109,103,106,98,102,96,95,102,99,106,92,103,103,120,76,107,107,106,114,112,103,104,107,113,113,114,99,109,103,100,117,101,111,88,104,99,107,104,98,120,112,99,97,105,108,104,126,101,102,88,101,110,111,115,96,96,109,99,103,100,102,109,106,87,92,102,122,104,105,95,101,105,89,108,93,99,117,112,94,127,105,109,95,105,108,83,98,111,101,102,102,94,95,102,100,102,110,97,105,111,109,109,109,110,110,101,108,105,109,111,100,97,106,94,97,106,78,103,99,107,109,111,100,101,95,111,96,103,100,107,99,95,110,117,100,101,107,102,100,99,110,102,99,102,102,110,106,106,118,107,94,103,99,102,109,101,98,99,95,105,98,105,102,108,94,106,99,113,106,109,94,116,96,101,96,101,113,109,105,111,98,86,104,98,108,101,100,105,93,115,106,108,99,109,94,99,115,103,94,83,96,116,123,108,100,105,96,92,91,113,110,102,104,108,98,115,94,105,95,99,99,90,101,108,111,114,106,95,100,104,101,102,101,102,105,99,90,107,107,96,103,108,100,99,116,110,113,98,107,121,105,97,102,100,106,107,92,93,89,89,100,100,109,104,104,102,106,113,115,110,114,103,112,95,100,111,109,83,102,91,97,78,95,110,94,105,95,99,114,102,104,106,103,114,106,99,101,104,97,92,100,105,105,91,131,88,97,114,126,95,109,118,111,115,100,87,100,97,109,96,105,107,105,102,94,94,110,113,102,98,94,91,97,94,105,106,103,98,104,87,97,105,115,94,117,84,96,108,94,107,109,109,119,113,108,105,104,106,101,105,109,100,105,103,104,108,109,107,103,92,91,96,100,95,102,107,106,112,93,91,102,103,104,115,102,109,106,103,106,94,80,93,76,108,105,118,98,104,101,106,114,92,98,102,108,99,112,102,96,99,103,103,110,104,105,110,103,86,86,102,106,93,103,100,110,94,92,103,108,100,95,138,102,101,84,94,110,102,108,102,94,98,105,103,99,104,108,101,92,95,108,103,101,119,95,112,107,105,90,107,98,109,108,109,90,101,106,113,106,96,123,99,98,109,105,106,96,103,95,105,108,104,101,97,99,108,104,105,104,100,95,119,108,100,103,106,99,108,100,95,111,101,107,133,103,108,99,100,97,96,99,104,107,96,106,110,113,107,104,115,96,97,120,104,100,106,95,97,103,99,103,95,98,97,103,107,97,106,102,103,104,105,112,107,101,92,98,107,93,108,109,99,114,100,100,115,105,117,103,92,96,110,86,108,101,101,107,110,104,89,121,100,96,100,104,112,115,103,99,98,107,113,99,114,70,108,115,106,108,99,97,102,110,98,99,100,117,105,104,98,121,112,107,106,107,98,101,106,114,100,93,101,105,101,100,114,101,100,102,93,93,96,105,103,107,99,121,98,99,101,90,103,97,102,114,105,107,99,103,108,98,103,97,133,114,109,104,98,91,84,94,98,105,78,113,97,120,94,108,94,91,105,103,122,100,109,102,98,109,96,108,101,101,94,97,129,96,104,106,96,105,91,105,113,98,103,107,95,109,105,110,101,93,109,112,94,105,90,97,89,108,113,94,107,90,103,101,107,109,116,105,107,97,103,107,112,91,106,112,100,105,116,101,102,98,114,104,104,113,106,100,108,106,94,101,105,97,109,95,103,94,105,98,103,92,104,101,97,110,95,95,102,114,106,90,94,95,108,103,101,97,109,114,99,101,83,107,100,111,77,100,98,98,109,98,96,109,99,116,97,86,83,101,105,103,107,100,96,98,103,94,97,99,98,102,98,114,113,101,108,106,112,113,99,102,112,110,99,104,110,95,104,105,112,100,107,104,113,105,95,99,106,103,105,101,100,106,93,112,106,106,98,112,98,103,99,109,110,96,109,101,94,105,96,96,83,110,114,94,108,107,100,101,107,97,92,105,105,109,99,96,97,95,115,100,101,104,98,112,112,89,96,97,95,108,97,104,106,91,103,106,113,99,107,93,107,117,97,91,101,92,105,101,90,108,108,99,96,90,110,108,99,102,92,111,98,101,103,100,97,91,94,102,105,112,111,99,100,92,89,120,101,103,110,100,106,110,101,96,97,101,105,114,109,101,108,98,106,111,108,124,111,104,112,96,104,101,106,112,93,103,105,100,101,103,126,120,99,105,99,109,87,102,90,101,108,124,123,105,101,99,99,108,103,83,102,125,99,115,106,108,96,95,103,106,87,104,100,89,101,114,104,113,116,98,100,88,107,117,76,105,130,103,114,92,98,104,106,100,109,94,107,103,99,98,104,98,106,105,107,105,100,110,109,95,99,98,107,91,101,109,102,102,111,93,95,103,103,106,99,95,105,102,98,85,115,98,108,106,99,103,93,97,80,100,98,85,106,92,105,116,106,117,101,98,109,107,105,103,105,99,100,101,103,99,100,110,82,104,104,112,117,97,101,97,92,105,106,104,98,102,99,94,110,105,97,123,103,92,106,112,105,107,85,98,101,101,101,98,94,110,103,94,105,109,117,102,99,102,110,106,108,89,105,103,99,109,98,102,102,106,104,102,107,113,106,103,103,106,101,98,108,114,104,107,106,118,103,109,93,92,113,97,99,104,98,106,102,102,102,96,100,113,100,109,98,97,95,104,104,100,100,108,108,95,100,90,102,105,104,101,103,100,100,104,102,105,105,122,114,100,106,95,95,104,105,107,74,104,87,100,105,109,106,107,106,113,112,102,116,100,104,105,112,110,112,108,100,108,92,102,110,93,102,103,111,93,112,102,113,101,93,91,91,100,95,109,100,99,117,104,102,99,95,104,97,93,95,97,108,95,104,94,92,76,97,99,128,106,107,105,105,111,99,87,103,98,104,81,103,96,105,105,100,106,101,92,109,103,97,95,101,94,102,101,105,81,96,113,111,110,97,95,108,97,111,110,76,105,108,99,103,84,108,92,100,88,103,101,105,101,101,103,99,107,97,107,109,93,129,82,111,102,115,97,105,112,104,108,105,103,107,108,110,120,105,108,100,104,99,102,111,98,103,107,111,102,99,103,96,108,107,107,94,105,101,108,108,96,86,116,94,102,105,95,98,122,119,95,102,103,100,95,107,103,109,97,108,101,95,98,104,99,98,96,107,103,111,107,102,104,108,103,104,99,95,98,80,97,100,103,110,102,109,99,104,103,102,100,91,91,104,100,99,99,103,93,103,102,103,99,102,100,106,105,105,103,102,96,107,95,115,97,117,120,104,116,94,103,92,102,101,108,99,100,103,100,104,104,97,98,94,120,87,97,98,96,109,98,119,98,101,98,97,121,105,105,108,100,106,97,102,119,95,101,96,100,107,99,124,102,106,104,102,95,88,103,99,102,110,87,101,105,103,103,97,100,106,100,108,107,92,96,109,105,99,101,100,116,92,105,100,97,105,106,121,106,97,103,97,104,103,98,101,98,104,80,106,108,105,112,104,111,103,99,98,105,92,91,101,93,116,103,109,99,93,105,93,106,87,119,104,90,107,105,108,95,119,109,118,90,100,94,96,106,115,112,106,97,115,92,102,108,113,109,100,98,101,105,99,95,87,103,95,95,97,96,103,95,100,96,109,95,100,106,82,103,124,100,109,106,100,108,101,100,104,100,105,101,103,96,111,89,115,88,108,94,91,102,94,107,96,79,97,95,113,95,111,99,99,104,104,102,104,101,100,92,103,101,113,107,91,105,100,94,99,98,105,109,106,108,100,82,98,113,105,100,99,106,104,87,102,96,92,96,115,102,87,117,103,83,115,109,114,106,100,116,102,103,109,105,107,102,99,92,108,104,101,100,97,98,99,107,95,104,91,107,99,109,97,113,99,95,111,114,111,95,108,103,94,109,97,105,113,90,104,95,102,99,108,106,96,109,91,95,116,90,94,101,97,108,103,109,99,91,113,101,109,112,110,106,102,115,114,101,104,109,105,105,105,85,100,91,102,105,105,101,99,96,99,90,90,98,101,89,85,91,97,106,105,103,109,109,104,101,97,99,106,109,108,100,106,102,99,108,86,94,117,103,96,104,91,95,99,109,109,93,97,93,105,102,98,106,109,114,106,101,98,96,106,91,113,111,96,84,103,109,109,92,106,110,110,100,109,101,96,90,91,105,92,103,114,104,102,99,99,92,107,95,85,106,97,110,119,104,111,104,103,105,106,99,98,99,104,102,102,106,103,100,108,85,108,72,95,102,87,93,105,95,101,108,107,101,105,108,107,95,103,105,98,96,109,91,94,102,99,90,103,101,114,101,94,106,113,101,106,107,91,103,96,106,106,122,113,100,102,106,109,91,103,98,102,116,93,115,101,98,109,101,99,95,108,97,102,106,99,105,103,96,95,103,95,109,89,119,103,97,102,102,94,97,108,105,79,110,91,117,118,100,91,104,111,96,106,101,91,102,91,99,97,120,108,109,102,91,102,105,108,103,105,98,100,88,109,99,97,108,92,110,103,111,112,91,105,106,103,107,100,104,94,99,87,107,108,109,97,87,100,112,110,108,99,105,91,106,99,103,107,94,96,93,89,101,103,104,95,99,103,103,96,95,100,117,91,99,88,112,104,93,97,101,96,96,101,92,114,111,101,95,98,91,96,107,112,96,96,98,89,106,94,94,101,109,111,101, +636.14624,113,95,97,104,105,107,106,99,87,104,99,84,111,108,98,97,104,108,102,98,90,109,102,99,98,98,118,96,102,106,79,121,101,101,123,113,97,108,103,101,92,100,118,118,99,98,106,106,116,106,97,106,102,100,100,95,102,99,114,106,98,100,103,101,104,106,99,98,95,113,93,97,95,89,104,123,93,104,102,99,95,97,98,113,97,100,107,94,110,100,104,110,103,108,109,107,111,106,101,91,101,96,98,97,105,113,117,96,112,106,90,107,98,112,93,108,102,103,113,99,101,106,99,114,98,114,102,98,100,107,110,129,108,103,95,99,98,113,97,109,100,102,99,104,95,101,117,92,94,108,106,102,98,102,97,96,110,112,99,102,92,100,106,101,108,94,112,77,102,113,101,110,106,93,109,103,100,103,109,104,105,102,101,94,100,108,100,83,100,113,101,103,97,99,98,92,96,112,114,103,104,101,114,96,108,118,91,94,117,104,107,116,98,93,106,100,104,107,100,108,108,108,106,92,103,101,105,105,90,110,97,109,119,101,98,89,89,99,115,113,106,105,114,105,100,114,101,111,116,102,103,94,104,103,98,113,103,112,94,106,100,109,106,98,87,101,111,114,105,99,129,106,96,103,108,107,100,103,101,110,99,95,102,102,88,105,108,94,95,112,96,103,101,99,106,102,104,108,104,103,101,110,112,115,109,108,103,107,111,106,107,107,102,108,112,111,110,101,107,97,96,101,103,123,106,112,93,100,112,99,103,105,105,106,115,100,103,104,111,108,103,105,104,103,105,101,106,109,114,100,95,103,106,98,98,95,101,109,109,100,107,99,99,110,91,92,94,112,91,118,113,94,113,101,100,94,119,107,106,113,113,113,109,108,101,116,91,95,91,93,118,96,113,72,105,104,104,109,97,96,114,104,118,99,93,88,98,99,103,101,95,106,92,103,102,105,99,103,103,98,105,93,110,98,107,96,107,99,103,111,98,103,90,96,109,100,102,102,103,93,125,100,103,112,101,109,101,99,102,109,109,96,96,114,103,96,104,104,115,102,100,94,104,91,106,111,97,95,113,105,93,112,104,87,97,95,109,112,113,111,112,106,115,106,109,95,99,100,101,102,106,111,113,100,101,108,94,96,102,102,111,100,88,107,108,108,94,100,117,102,108,95,96,108,107,109,93,101,100,88,103,105,114,98,110,96,108,106,103,100,98,115,96,104,116,108,103,93,98,93,100,114,102,101,114,102,103,107,101,103,95,110,105,94,95,98,101,98,105,99,107,94,91,104,103,100,105,99,104,110,96,102,102,112,119,104,100,103,106,101,99,99,107,114,102,104,104,106,99,107,101,101,103,95,103,109,107,111,109,102,107,99,93,94,111,108,106,95,93,109,109,96,102,91,107,94,114,69,105,105,110,101,107,95,112,98,125,103,108,108,102,108,94,94,105,138,102,105,114,99,103,98,95,98,110,93,100,102,104,102,90,93,101,98,106,126,118,110,108,99,105,107,102,104,93,105,111,90,117,106,116,107,99,110,100,109,99,99,116,113,107,98,101,105,103,107,90,91,105,92,107,110,96,109,100,105,99,100,106,109,98,97,121,108,107,115,106,109,107,107,104,96,94,108,92,99,97,98,104,103,113,107,98,110,104,90,99,104,101,111,108,102,98,110,98,103,114,104,98,102,103,83,108,109,99,122,112,117,94,107,101,99,97,116,102,87,96,108,99,102,105,95,95,86,93,84,95,113,92,99,102,102,109,107,96,99,98,99,102,102,103,100,100,112,93,117,103,109,108,112,97,109,101,112,99,106,108,95,104,103,92,104,92,91,99,98,124,102,99,76,108,108,110,102,97,109,109,106,103,110,104,108,96,109,105,107,104,92,104,113,100,107,110,105,94,103,105,98,107,105,103,100,102,106,102,96,105,105,107,100,97,101,98,118,103,102,106,102,95,104,106,108,89,86,109,94,103,111,108,104,106,111,113,101,96,106,104,95,112,91,95,110,86,118,112,90,100,117,103,109,106,103,90,109,110,105,97,112,98,107,93,109,102,108,103,101,95,95,97,100,101,116,111,104,97,99,101,85,99,99,101,89,111,108,107,102,90,103,96,107,102,99,104,110,101,85,96,107,99,101,113,101,105,106,101,103,98,119,94,95,100,113,111,105,112,100,107,106,101,108,79,110,98,105,107,100,104,100,104,104,99,103,102,102,109,119,101,102,95,108,92,103,114,96,101,97,94,101,118,100,111,98,102,102,98,100,104,104,102,122,111,93,94,111,103,115,110,101,103,106,94,113,109,96,90,114,113,112,104,100,109,105,94,97,102,99,99,106,98,95,110,109,94,103,108,107,105,106,107,112,110,110,108,106,101,101,105,108,117,113,102,98,98,115,98,108,101,122,102,105,80,116,110,92,105,113,101,100,115,109,106,105,109,103,100,111,106,101,99,97,107,90,106,120,105,97,104,107,111,106,99,115,112,89,101,102,105,116,99,108,88,101,103,109,104,101,111,95,113,103,118,115,108,101,94,108,120,109,107,98,99,104,109,106,82,104,102,106,100,109,111,106,101,103,98,91,109,97,106,98,101,105,110,100,106,98,103,109,108,106,111,101,102,98,101,111,89,104,103,95,95,87,96,97,108,101,104,107,119,98,106,96,105,113,106,90,118,93,107,99,110,104,99,103,74,106,96,102,90,101,99,112,115,107,114,121,106,95,104,92,99,109,104,97,104,114,100,100,101,106,108,100,96,103,97,129,107,105,106,99,109,102,105,94,106,94,101,104,103,102,104,103,99,111,94,106,103,100,112,107,112,98,105,98,114,107,97,99,100,102,106,103,94,99,87,105,92,124,105,113,112,98,106,100,98,97,106,97,103,113,106,103,104,108,112,97,96,104,95,111,112,108,96,98,108,110,108,84,118,104,91,101,108,111,101,105,105,102,105,118,100,106,95,101,98,97,97,112,100,103,93,91,113,105,112,109,101,97,110,103,112,116,99,108,110,107,95,99,89,101,107,110,106,102,109,112,108,108,114,106,95,101,110,92,87,98,87,102,102,108,105,105,105,104,95,102,101,101,113,103,110,103,98,108,107,99,108,96,109,106,108,116,116,109,103,92,93,108,102,103,91,103,106,105,110,101,95,91,96,88,113,100,98,98,106,112,97,103,91,102,98,102,93,106,113,103,106,109,98,93,106,95,105,108,110,87,97,108,105,99,105,95,98,119,96,97,99,99,110,97,102,99,104,110,99,117,101,106,107,108,100,99,104,96,94,98,91,86,114,87,112,105,108,124,97,103,102,81,101,95,105,119,102,102,98,105,101,98,97,114,106,101,118,116,107,107,105,103,103,113,106,103,103,106,97,98,102,109,114,93,102,105,94,113,99,105,100,109,107,88,99,89,105,112,90,98,100,95,101,112,88,94,112,112,117,96,111,113,103,105,102,115,98,101,102,105,103,96,99,104,111,113,98,98,107,83,105,108,112,98,101,102,102,90,101,103,89,110,94,91,97,106,105,109,101,109,106,99,87,112,107,98,102,98,101,84,106,107,104,105,112,98,109,98,109,100,116,114,102,99,103,106,108,107,92,113,112,110,106,98,74,103,109,104,107,105,99,110,96,102,97,104,110,105,97,94,98,92,110,100,98,94,100,100,105,110,111,91,94,103,106,102,108,106,106,111,90,98,118,102,101,100,109,100,108,110,101,107,87,100,98,112,118,100,108,105,126,94,107,97,101,93,93,103,106,100,105,104,91,97,108,96,106,99,99,90,96,117,103,113,95,93,98,100,75,97,103,111,100,109,104,92,105,98,93,117,109,95,99,111,90,121,113,112,101,111,110,99,90,106,105,107,106,112,102,101,95,93,103,113,87,123,91,121,107,111,115,99,91,103,93,100,109,111,99,111,111,98,112,99,97,104,109,106,107,106,97,101,104,100,92,106,106,112,106,93,96,98,87,93,112,102,98,97,97,106,108,105,104,106,102,106,92,102,109,109,128,93,101,98,101,99,122,102,110,102,115,107,107,108,100,100,85,95,97,118,99,100,106,101,95,107,99,103,83,104,95,109,103,109,103,90,107,103,101,109,97,109,107,102,93,107,101,98,108,112,95,104,96,104,99,99,103,100,105,107,101,101,102,121,105,94,90,80,105,109,108,103,115,105,114,109,103,100,105,114,90,110,101,108,101,115,95,117,115,97,101,106,110,101,104,104,111,95,94,100,110,102,108,91,99,101,91,111,100,101,90,96,132,98,110,115,110,121,103,111,117,106,96,106,104,93,101,108,106,97,99,105,99,107,113,102,95,110,116,96,96,101,102,113,100,99,97,88,108,105,100,102,97,96,86,98,111,101,105,109,102,102,112,99,109,105,117,108,105,103,99,101,93,105,105,88,99,107,107,113,102,96,98,76,109,101,86,102,103,106,94,112,95,104,91,117,82,115,103,110,97,103,101,103,103,103,101,115,112,95,97,112,96,105,107,109,111,98,108,99,104,107,125,92,96,100,99,96,113,104,104,100,105,101,102,109,103,111,95,116,112,97,103,117,94,100,99,107,86,94,113,67,98,89,109,98,94,74,113,98,82,98,102,107,107,112,118,116,105,128,101,114,91,88,105,91,88,87,100,110,110,108,95,102,106,95,105,107,113,72,107,96,104,97,102,91,101,101,110,104,114,108,98,103,100,115,103,107,100,109,79,88,100,92,108,109,92,102,99,106,103,104,99,109,104,96,100,111,102,104,96,104,94,104,101,111,112,97,98,112,96,93,108,103,90,84,91,90,111,100,101,116,105,95,115,111,103,100,102,103,78,109,91,111,106,100,100,115,93,102,108,99,99,100,101,108,91,106,114,104,85,106,99,104,113,102,97,95,106,104,104,94,110,88, +636.28741,94,93,103,105,88,112,123,100,101,98,93,99,98,94,98,106,101,108,113,102,109,117,102,111,98,99,95,109,100,108,93,112,104,96,105,109,104,104,107,97,86,109,97,101,116,93,114,100,102,126,89,102,121,107,109,111,110,102,109,110,102,113,107,105,100,100,92,98,111,99,104,108,101,105,98,89,101,103,98,100,112,109,109,104,99,109,104,104,111,97,105,88,94,100,98,102,105,99,108,88,108,104,89,116,105,91,91,98,102,114,103,92,106,103,99,111,104,113,110,102,76,107,103,98,110,115,111,108,108,103,111,93,100,96,102,108,109,104,106,110,92,116,103,103,107,90,100,97,100,98,103,98,109,86,106,113,119,111,88,131,93,109,119,92,109,114,103,105,99,102,110,98,95,104,104,108,87,104,106,108,116,112,102,106,100,113,93,105,100,106,104,105,93,85,110,106,106,100,103,102,102,97,105,93,97,140,103,124,106,110,104,105,104,108,104,95,111,98,106,112,94,102,111,104,120,108,105,115,109,103,101,102,100,109,119,108,111,105,112,106,105,101,98,102,112,98,97,91,98,106,111,102,98,111,100,103,105,96,94,97,100,110,100,104,92,98,108,106,102,104,107,108,108,105,95,99,99,97,99,99,104,116,105,101,99,105,110,103,102,109,108,110,104,95,113,106,93,96,100,121,88,95,96,99,96,107,102,112,106,95,104,118,85,107,109,101,102,102,106,103,113,111,112,104,108,87,93,97,99,104,105,97,111,103,110,116,111,113,93,105,97,103,108,105,106,103,97,101,107,101,95,100,94,97,100,111,103,106,106,102,103,90,107,103,96,99,122,108,119,107,106,102,103,116,110,106,96,102,99,106,117,112,97,106,100,100,99,97,94,117,103,96,88,102,107,99,94,104,109,106,103,100,98,96,114,106,104,103,96,104,126,101,98,97,99,104,115,101,108,103,113,103,113,109,98,109,96,95,95,111,98,97,96,106,102,102,111,104,117,95,117,100,119,99,97,103,99,92,114,117,110,99,106,113,109,113,97,112,104,109,108,103,114,107,109,105,94,100,77,94,110,116,107,108,110,108,102,117,103,109,115,122,110,112,104,101,108,103,100,110,95,115,112,118,91,105,105,105,107,113,107,102,101,108,110,106,103,94,83,113,123,106,95,99,108,108,109,109,83,96,110,101,106,110,86,98,117,109,98,103,90,114,95,107,102,92,109,119,92,102,98,103,106,106,113,102,95,100,105,113,106,99,107,105,112,97,61,97,112,105,110,105,92,110,113,114,107,110,104,102,105,106,108,114,107,101,104,103,109,96,105,102,105,91,100,101,109,121,111,108,114,102,112,106,109,113,96,106,101,103,113,100,110,79,104,104,96,101,104,111,109,95,113,100,102,100,91,96,102,103,106,87,99,98,67,105,104,98,122,105,105,116,112,104,96,107,104,97,113,116,108,117,79,98,100,106,97,101,116,108,99,101,105,100,113,119,108,113,109,94,108,116,124,108,98,102,110,94,98,100,113,105,110,117,105,111,94,102,89,118,110,105,112,101,113,88,100,100,93,101,110,108,94,86,104,100,107,102,106,101,101,95,103,97,91,91,85,104,105,109,106,107,102,95,95,95,111,113,97,114,101,96,109,99,92,96,94,104,112,106,100,120,98,104,105,103,112,97,118,114,116,109,100,108,98,106,111,108,124,109,108,102,107,116,109,102,98,105,121,103,108,106,109,113,93,99,99,108,98,102,129,110,95,108,101,103,108,103,111,109,103,113,103,99,110,103,104,104,108,98,101,108,104,104,103,114,99,104,105,118,95,101,90,111,112,105,108,102,112,102,99,92,103,96,110,100,117,100,105,107,105,112,78,102,111,111,114,93,102,99,114,99,109,100,102,106,113,94,107,104,95,104,105,99,116,98,115,101,109,74,102,120,105,114,105,103,106,122,91,98,94,99,110,103,95,113,101,106,103,113,100,108,98,120,105,115,114,101,118,99,118,117,107,107,117,106,100,103,120,104,95,126,99,119,91,75,104,91,110,105,107,113,112,89,102,97,82,115,92,118,126,110,101,109,107,105,98,115,111,106,101,98,96,108,111,95,114,100,108,95,110,106,111,111,102,101,94,90,111,113,101,88,99,111,103,92,102,99,109,97,104,113,103,111,111,101,99,108,93,113,102,105,120,91,108,103,103,100,104,115,103,102,98,103,98,103,98,111,93,107,97,94,102,108,109,101,100,104,99,100,104,96,104,103,100,103,111,101,94,99,102,97,101,103,101,110,104,107,110,100,101,103,107,105,96,103,93,107,104,119,113,113,94,98,125,106,119,103,98,114,99,117,100,98,100,96,93,103,111,109,126,118,110,104,107,94,107,105,102,114,107,105,106,101,105,108,111,101,109,112,98,118,111,108,105,100,101,94,113,105,97,94,100,92,96,104,116,110,100,100,91,90,104,85,119,122,105,103,107,103,107,102,113,99,72,106,98,108,108,102,102,105,108,109,104,96,120,116,93,113,110,117,109,110,101,110,100,108,108,102,106,98,105,96,92,104,113,99,108,111,105,106,108,95,115,108,117,105,109,99,104,96,116,103,104,112,105,106,110,95,113,109,121,102,93,96,111,103,103,102,118,95,109,110,104,106,118,109,131,94,105,101,100,107,119,143,106,100,107,104,102,91,108,110,98,111,104,116,112,108,98,107,113,103,106,110,92,114,103,107,103,110,117,102,98,117,104,117,99,98,108,112,104,105,109,110,96,105,104,105,98,117,100,102,117,102,111,100,97,103,97,128,105,109,102,99,102,110,116,113,106,101,107,102,105,105,98,107,107,101,91,108,108,101,103,98,113,103,100,106,94,109,107,102,107,98,121,100,110,101,106,103,107,122,103,98,107,106,99,107,113,90,102,92,94,112,105,98,120,103,102,104,130,100,96,94,113,91,115,109,112,93,104,102,115,99,112,104,99,97,103,96,90,97,103,140,106,100,104,91,96,111,91,107,102,95,106,111,114,112,104,99,96,114,104,108,96,103,111,87,107,104,109,103,104,97,114,112,104,103,103,111,101,103,110,103,102,102,97,108,104,108,115,91,123,108,103,105,108,102,113,99,99,111,111,98,101,115,99,102,111,101,108,112,107,115,107,102,105,100,101,91,109,104,101,99,101,107,102,100,113,110,109,112,106,104,112,108,106,105,98,90,105,112,101,108,104,104,112,108,103,101,100,96,94,86,102,107,109,116,105,98,109,115,99,100,108,107,92,108,81,98,106,102,93,136,97,101,105,101,98,109,107,100,113,94,104,109,91,104,104,99,98,99,94,103,114,98,124,89,87,101,102,88,101,100,106,108,101,97,100,115,102,104,101,98,106,107,99,102,81,108,109,103,80,106,103,103,117,103,99,90,107,111,99,97,102,106,113,103,103,100,102,109,96,95,114,110,93,103,104,103,99,105,101,105,118,94,103,107,101,123,100,87,108,108,96,103,99,106,103,96,106,104,110,109,112,103,95,98,101,113,106,106,107,109,114,111,103,96,109,121,112,78,101,113,97,95,104,113,111,105,107,110,94,104,106,94,118,95,94,110,97,108,99,101,95,107,114,74,94,100,123,103,108,96,103,104,100,100,112,113,103,98,113,105,110,91,96,100,112,80,95,95,90,104,114,108,101,103,95,99,96,105,100,102,93,132,107,110,110,104,105,114,135,106,110,108,109,99,90,104,91,84,92,95,102,104,109,97,108,105,100,102,91,113,102,116,112,104,106,95,129,115,110,106,106,101,102,98,109,111,103,100,105,101,99,107,100,97,106,109,101,100,93,104,92,115,104,115,104,106,97,99,102,102,92,92,105,95,104,105,104,106,84,88,102,91,100,102,102,97,100,119,81,106,109,115,98,112,98,106,100,109,106,108,106,99,103,120,101,103,109,116,89,109,105,110,106,111,95,90,105,120,102,120,99,112,105,98,112,110,96,104,94,96,101,100,110,112,96,110,101,91,103,92,99,105,110,105,106,101,99,102,108,102,111,97,112,98,101,104,99,105,108,116,104,102,104,109,111,102,96,91,85,93,96,100,104,91,111,108,104,109,104,117,105,100,96,99,101,120,106,128,102,120,108,100,120,106,113,99,87,100,98,103,102,101,106,104,106,102,94,104,107,95,105,105,107,91,98,103,109,107,113,103,105,112,108,95,106,101,104,112,101,99,100,89,102,101,112,97,101,108,110,106,102,102,99,96,96,99,115,99,101,101,107,104,118,105,103,101,101,89,107,110,99,125,100,111,100,95,101,100,109,98,111,100,93,101,117,99,99,92,103,110,98,102,100,106,121,104,105,106,110,100,90,98,106,104,97,120,109,121,103,100,109,97,104,103,102,109,116,100,106,115,108,88,110,97,95,108,100,111,87,121,99,110,117,99,120,110,108,96,103,112,93,108,109,102,102,98,108,109,99,91,88,103,100,121,99,100,104,111,119,98,97,101,92,102,104,107,108,104,114,109,96,96,90,91,78,98,96,100,99,99,110,107,120,96,106,108,100,101,107,114,90,97,101,114,106,105,113,122,104,94,99,102,99,113,108,105,108,100,116,93,106,100,102,105,119,101,101,101,112,104,95,108,103,102,123,96,103,99,106,108,91,104,103,99,95,100,108,99,119,90,108,95,98,115,88,95,104,100,115,107,95,112,102,88,103,101,99,107,104,106,102,102,97,96,111,98,94,102,103,112,106,107,104,102,104,100,109,102,113,103,104,94,100,96,99,92,101,98,102,109,101,93,110,101,92,100,103,101,82,92,92,103,99,109,107,104,96,111,98,115,106,101,95,107,113,106,105,99,96,115,90,117,103,101,118,116,92,93,114,95,94,121,90,90,132,114,99,102,63,78,108,109,125,113, +636.42853,86,108,99,102,111,90,120,99,104,108,109,98,96,89,100,88,106,107,102,109,98,104,91,95,103,103,103,96,107,112,110,92,111,99,112,82,99,108,93,98,99,94,98,98,96,100,96,108,86,117,105,99,99,100,106,84,103,107,102,93,106,106,104,94,100,114,83,99,100,91,97,106,109,100,95,105,84,101,96,100,93,102,92,73,88,103,102,108,96,100,100,125,123,104,102,96,108,96,97,106,109,114,103,108,101,94,113,108,100,108,103,94,100,136,99,91,105,99,110,121,103,99,118,107,95,97,111,102,135,108,124,109,95,92,97,106,101,101,95,104,98,101,102,93,104,104,118,98,113,96,125,103,109,95,103,104,105,92,109,106,108,112,116,108,112,98,102,95,95,94,104,114,111,101,102,115,103,85,113,107,88,113,100,95,115,103,108,101,102,98,94,95,104,109,99,90,96,106,106,106,106,109,96,101,94,103,97,99,103,101,103,100,95,98,100,109,101,112,104,101,103,104,107,118,99,114,101,102,114,106,105,108,110,94,101,104,110,113,108,98,108,96,103,109,90,101,93,114,102,105,119,94,102,94,103,100,105,105,101,120,106,102,90,104,109,100,98,119,100,98,95,102,103,99,110,106,98,110,89,109,105,120,101,109,106,112,98,100,106,105,91,109,108,106,95,100,101,108,106,87,105,103,94,101,89,99,95,95,105,110,101,102,103,94,105,101,112,108,100,97,100,104,99,105,99,97,80,96,103,107,100,102,106,103,117,119,104,105,101,105,93,105,102,100,99,97,100,118,112,98,100,106,103,98,106,109,97,122,106,116,110,101,105,105,86,108,106,99,102,122,108,109,99,112,104,104,102,109,104,94,103,89,97,110,109,113,98,106,104,96,106,93,95,96,99,99,94,96,97,113,95,98,111,100,106,108,96,97,99,98,100,95,112,109,105,111,108,94,103,102,107,106,102,113,105,99,98,107,101,107,102,100,98,109,107,98,102,105,104,99,119,108,105,94,118,94,112,116,102,112,103,89,100,102,105,99,120,108,104,104,99,103,107,104,95,106,97,109,111,93,105,119,113,101,96,122,85,116,113,105,109,106,112,95,101,97,108,102,111,112,130,77,105,100,95,104,96,109,109,98,95,107,97,105,100,97,99,103,106,100,94,109,98,107,99,106,119,102,95,96,114,102,110,93,106,99,109,106,107,101,113,101,109,101,119,100,102,103,98,113,99,99,96,95,96,104,111,98,96,119,102,112,108,108,83,117,100,88,101,101,99,91,104,107,96,89,107,106,114,97,105,110,105,97,116,87,100,105,109,112,105,101,101,94,113,95,110,104,120,107,112,100,113,102,98,108,102,96,106,101,109,105,104,101,98,101,77,110,102,109,107,109,101,100,105,109,105,112,107,100,104,98,105,109,112,105,104,104,116,106,94,112,102,109,102,111,98,103,104,97,105,101,107,98,95,97,120,98,113,117,98,95,105,107,103,117,105,106,102,113,103,103,106,105,102,100,100,120,108,103,119,113,110,101,103,110,106,95,91,112,105,107,115,101,79,97,96,110,100,128,100,116,107,107,108,116,69,95,111,98,114,101,108,104,96,110,99,107,93,112,97,78,104,95,114,101,101,102,97,96,92,103,93,110,90,79,108,102,108,116,95,99,104,99,108,99,111,100,105,110,98,100,109,103,106,105,103,114,101,92,96,99,105,90,103,100,98,106,113,110,102,107,102,105,93,91,99,103,108,93,103,104,115,119,113,94,104,105,101,93,108,115,105,109,82,112,108,98,101,115,109,134,112,74,122,118,106,77,105,87,102,105,89,100,114,108,98,103,102,105,110,104,89,109,131,96,105,103,110,114,108,112,113,85,113,112,86,95,106,119,96,92,99,106,104,95,114,107,103,110,90,124,122,110,97,106,103,107,109,91,100,101,96,95,101,110,108,118,88,106,109,104,113,118,104,106,98,107,106,109,100,138,97,90,100,95,121,101,93,108,104,119,94,107,110,105,99,109,109,105,107,107,100,102,99,98,103,105,99,117,98,113,105,99,95,102,87,101,103,108,102,95,101,103,96,93,95,104,104,108,100,96,101,94,101,104,100,98,96,100,110,102,106,102,96,97,101,90,105,106,107,105,92,99,100,97,104,83,115,103,103,114,104,99,103,99,78,104,106,100,108,99,98,105,104,94,105,98,117,104,105,112,104,109,122,96,111,95,98,104,99,100,109,100,104,114,97,103,99,85,112,100,108,100,102,96,101,102,109,109,98,97,102,101,112,98,109,112,95,105,99,117,109,100,95,108,113,100,125,101,106,99,96,98,113,109,109,108,108,108,102,109,109,108,110,113,90,104,95,87,91,133,117,106,94,113,118,108,97,105,113,122,111,109,99,114,103,112,107,109,105,87,92,106,105,105,97,99,105,110,106,103,100,103,106,102,125,105,102,101,87,102,103,111,104,112,93,103,92,100,109,105,103,91,96,107,108,93,110,100,82,98,113,87,116,111,109,99,113,101,100,104,105,71,107,86,96,112,104,116,104,104,109,98,122,102,99,102,117,102,104,108,106,100,96,91,103,105,99,92,102,102,103,102,103,107,103,107,108,91,101,117,110,115,101,104,101,103,109,100,121,99,113,94,108,108,101,97,105,94,111,101,113,94,97,101,101,94,100,101,104,110,102,109,98,102,107,107,100,103,103,89,88,112,93,113,104,82,112,96,92,99,123,97,99,94,100,108,106,103,101,100,97,95,110,106,102,103,104,119,95,113,110,92,113,83,86,121,112,113,113,98,102,103,100,100,106,82,104,88,99,111,115,96,100,107,105,112,87,99,101,105,102,99,102,111,110,114,98,119,92,100,95,93,95,106,104,106,101,81,108,106,107,114,111,113,101,102,113,110,105,114,104,94,111,96,97,97,114,105,94,98,98,106,114,98,100,104,109,106,102,102,104,105,102,102,109,112,97,110,93,109,130,106,105,124,105,105,110,105,112,91,106,105,109,114,103,125,117,105,103,97,108,98,102,103,102,100,92,106,108,102,117,110,102,101,108,103,104,106,101,100,107,99,101,94,120,103,105,95,110,84,106,102,113,104,97,110,102,95,109,108,108,107,113,105,103,86,108,103,76,79,103,100,118,79,105,105,104,100,102,95,114,114,108,117,110,98,100,115,116,108,110,101,98,116,99,104,112,96,102,102,112,131,107,112,100,96,108,102,99,84,106,104,99,109,111,113,104,110,96,102,102,103,105,95,104,103,96,105,100,92,104,89,102,106,97,102,101,111,94,94,103,105,107,104,97,113,100,107,96,95,96,115,107,106,98,108,109,108,103,110,101,92,97,107,110,95,96,95,109,100,101,113,104,106,109,112,106,93,96,99,83,111,102,97,108,95,93,109,92,98,107,100,104,104,112,110,107,107,109,108,99,100,98,106,109,114,103,107,113,107,105,97,114,104,100,94,104,92,106,97,102,108,102,117,108,103,98,103,109,91,97,112,104,100,117,106,100,106,114,104,95,113,101,106,105,106,104,105,95,105,103,117,107,99,109,83,100,123,105,102,99,94,103,89,114,109,101,91,99,106,92,115,104,112,104,104,101,95,98,107,99,95,109,109,100,102,102,101,109,103,92,101,90,102,99,102,117,98,122,95,110,98,107,104,108,91,93,106,99,104,95,110,90,103,105,108,107,112,112,94,102,103,111,103,109,92,103,98,106,113,103,105,104,109,110,101,102,107,109,120,101,102,103,101,104,112,109,104,103,96,115,97,104,102,101,95,109,101,111,109,101,90,108,108,100,102,98,97,106,104,102,97,110,115,102,104,90,109,111,118,103,92,102,102,94,108,109,98,103,105,100,117,99,114,95,107,104,109,97,107,97,102,101,83,102,101,111,96,99,92,95,92,106,110,99,108,104,99,99,103,109,105,104,102,94,104,80,106,99,107,92,99,102,98,101,104,101,93,101,102,92,95,101,102,107,109,98,95,95,87,95,109,95,92,102,93,116,108,99,106,110,99,112,106,105,92,107,112,108,92,102,101,104,99,89,102,109,128,98,107,90,86,91,109,102,110,98,102,109,95,95,102,104,104,121,96,92,102,92,95,102,100,97,94,102,102,90,121,103,94,103,88,99,101,93,99,97,111,112,92,113,90,69,104,96,125,98,103,82,107,107,98,111,110,88,127,102,108,113,103,108,105,102,103,97,100,91,102,103,100,105,89,98,89,100,99,102,103,102,95,105,103,116,105,95,100,102,101,103,102,113,117,96,111,96,104,104,101,102,101,109,104,99,103,100,101,97,113,96,95,115,93,116,107,100,99,101,109,98,100,102,115,109,103,104,97,99,99,104,116,106,98,96,107,108,87,106,96,102,102,112,101,92,104,94,106,111,101,108,98,103,105,97,105,94,94,101,101,110,101,91,107,102,84,88,104,98,108,101,95,124,106,91,98,104,105,90,95,106,82,96,98,107,106,99,104,97,105,95,106,105,94,98,105,105,104,91,99,90,88,111,111,97,97,94,109,109,99,109,96,88,100,95,120,90,94,103,113,107,107,106,99,103,102,100,95,101,100,104,97,101,108,104,100,116,96,106,99,95,111,109,111,99,106,98,102,102,92,107,117,103,103,102,95,109,111,104,104,91,111,109,119,95,95,112,92,110,101,93,93,101,104,97,100,111,95,98,83,104,80,108,87,92,92,103,110,107,100,105,97,93,113,102,99,108,104,94,111,100,109,119,112,86,88,90,113,99,92,100,94,97,101,106,108,99,92,100,94,103,111,107,107,101,105,100,91,82,99,110,94,99,95,87,99,112,118,96,101,97,108,100,109,105,116,96,112,105,95,111,98,101,82,111,112,101,121,103,92,136,77,95,94,91,104,132,125,116,86, +636.5697,99,105,105,118,88,109,114,98,110,105,98,114,91,87,124,112,95,107,121,104,119,119,100,112,85,110,103,125,115,99,102,113,104,111,73,103,103,93,101,97,104,101,102,96,100,113,102,98,100,117,100,99,106,115,96,95,105,103,112,99,110,95,103,93,109,109,83,108,119,112,116,101,103,95,120,106,96,96,94,103,104,112,100,98,94,103,109,107,108,88,95,98,94,96,115,114,103,102,105,109,92,107,101,92,117,106,103,103,108,100,102,98,90,97,115,104,117,109,105,99,95,107,106,101,102,110,83,110,128,112,124,99,104,99,104,102,93,90,114,102,94,98,102,115,105,115,110,92,98,103,96,105,98,100,87,99,86,97,108,94,101,99,101,95,96,100,99,99,113,103,94,110,102,113,105,90,109,96,105,103,107,108,99,103,101,97,106,101,109,103,102,113,99,110,108,102,96,111,106,103,100,102,95,101,110,111,99,103,100,103,101,97,95,99,101,109,102,111,96,105,110,101,116,95,100,107,105,102,118,104,95,109,122,97,108,95,110,114,102,109,107,106,104,117,90,98,108,96,99,93,104,106,98,117,101,98,102,98,86,106,109,124,108,105,102,101,112,107,113,89,104,116,108,95,108,104,105,105,101,99,104,97,93,101,100,112,114,103,112,94,91,88,100,100,111,114,114,108,105,99,107,103,99,109,101,139,117,109,108,101,101,105,114,103,111,101,112,100,102,90,101,99,101,110,110,109,108,103,105,101,108,103,104,111,113,126,100,106,108,112,109,116,84,112,116,98,92,108,104,100,99,100,100,111,106,107,91,100,122,102,103,92,102,87,107,104,100,113,99,109,110,87,100,111,99,103,104,108,109,111,108,110,105,105,103,116,104,109,101,113,111,96,104,123,102,104,108,118,91,119,96,104,100,108,101,102,107,102,114,72,101,112,109,102,115,94,100,109,100,110,96,94,82,113,110,96,109,91,95,108,87,129,104,104,103,102,107,124,102,105,103,106,109,101,105,94,100,103,119,105,95,72,118,108,104,105,98,97,109,97,110,109,109,109,111,110,107,101,118,110,102,99,99,88,99,98,100,109,112,83,107,103,104,114,110,91,111,110,101,107,115,83,105,99,98,97,96,97,104,117,113,105,108,111,93,101,105,113,113,105,111,104,96,96,109,112,97,109,106,100,108,101,121,99,106,93,104,106,103,94,101,117,106,95,102,100,92,102,109,98,109,112,111,95,103,92,96,96,102,101,105,99,101,98,99,115,103,108,110,103,104,104,100,108,103,102,114,111,98,110,86,109,114,112,103,100,104,117,98,101,89,99,97,98,104,111,99,107,97,110,115,94,101,101,104,111,109,103,96,100,103,115,107,108,106,102,105,102,113,106,106,112,111,108,98,101,117,100,110,123,112,107,103,100,109,111,112,113,102,111,108,106,97,104,105,103,103,105,103,98,92,107,109,98,97,114,91,102,107,117,108,108,104,104,91,92,100,109,110,115,111,102,101,100,97,94,102,104,101,105,103,97,108,96,102,104,103,117,108,115,102,98,103,95,97,95,99,118,88,115,97,113,116,113,108,105,100,105,104,97,104,104,104,110,115,100,107,99,95,91,106,100,99,110,102,118,91,106,108,109,109,103,109,103,104,110,111,106,91,110,106,97,101,101,96,109,105,111,102,90,104,106,82,88,119,105,94,107,102,102,113,104,108,84,105,102,106,113,105,104,111,92,95,100,99,102,95,114,111,95,111,109,100,97,109,119,83,106,107,106,113,103,128,102,90,105,107,111,110,110,86,101,103,104,104,112,99,108,101,112,103,103,90,97,107,93,110,106,109,86,115,103,95,96,110,113,105,100,106,110,88,92,106,99,106,101,100,108,105,94,104,99,116,106,107,111,116,99,84,108,107,99,106,100,99,97,114,91,100,117,103,107,102,104,100,102,111,126,107,90,113,97,100,98,114,109,98,99,107,103,105,89,104,106,104,105,120,102,92,112,112,102,108,107,113,110,109,101,96,98,115,110,107,113,108,114,121,105,110,100,111,108,119,99,116,115,107,104,102,99,102,111,102,121,99,98,92,113,104,107,99,101,105,117,111,98,103,104,111,105,108,109,109,109,90,100,107,114,106,105,101,106,111,100,97,104,117,108,107,126,108,100,107,100,88,116,111,91,102,100,108,104,113,91,123,102,94,83,110,107,98,107,98,109,112,97,114,106,102,102,96,77,113,98,107,100,111,106,111,92,107,99,99,92,108,108,106,114,106,106,104,97,92,112,117,106,103,94,105,107,93,103,105,108,107,100,95,95,104,103,101,109,93,103,101,110,102,100,107,103,115,103,107,95,106,104,94,107,116,115,108,99,114,104,98,119,110,124,123,103,116,101,100,113,109,92,103,102,121,102,100,107,97,108,105,110,101,104,94,103,111,99,96,118,109,114,102,106,98,92,95,107,117,109,101,105,98,113,107,109,105,104,98,87,96,82,105,105,111,101,113,98,101,110,106,112,108,116,95,106,102,112,101,94,98,95,110,110,104,101,107,113,91,103,102,100,115,106,100,112,103,105,120,91,102,99,103,97,119,99,110,101,101,107,117,109,105,84,107,115,108,103,109,102,108,66,112,113,95,107,135,104,96,106,99,104,106,102,108,109,91,104,103,116,93,100,114,102,111,112,107,102,99,105,108,103,122,98,113,107,104,100,118,111,108,114,105,89,117,103,116,109,113,95,99,110,111,110,103,106,114,102,102,111,106,106,108,108,103,102,96,113,104,91,106,106,99,109,116,107,103,103,110,103,108,109,106,102,108,121,102,105,111,111,102,107,99,111,113,115,100,81,119,105,81,102,103,102,95,121,109,107,106,104,107,103,105,105,102,116,96,111,100,99,100,108,100,105,110,125,99,92,111,112,99,111,116,99,112,112,123,119,100,99,111,110,113,103,104,102,110,106,104,94,117,98,100,110,106,112,101,104,98,107,99,100,99,106,107,102,123,106,103,102,108,114,111,100,103,98,94,97,107,103,107,103,104,104,95,113,111,111,106,99,103,112,117,117,82,102,106,116,92,104,108,104,101,106,104,105,120,98,101,99,123,105,108,110,113,107,109,95,105,104,91,100,103,106,106,102,117,90,105,122,107,98,100,103,120,109,90,98,104,109,101,104,101,97,107,112,93,114,99,106,98,111,121,89,109,94,103,92,95,111,106,105,101,105,115,116,91,103,100,95,102,106,114,89,108,129,106,101,104,107,114,105,103,119,104,107,98,108,90,94,105,101,104,92,108,97,100,104,110,108,104,98,109,92,110,97,105,90,102,99,120,107,66,108,97,102,87,101,106,107,95,92,104,104,97,109,106,105,98,102,102,100,113,96,98,104,97,109,107,107,109,97,102,105,103,142,95,95,121,113,99,97,107,132,108,79,98,101,100,101,98,107,104,94,111,119,95,123,114,103,106,103,106,95,99,98,111,114,104,104,102,75,112,107,97,96,102,105,108,121,105,106,127,100,104,87,115,106,107,107,98,111,114,111,96,108,107,96,100,120,94,116,108,97,110,114,99,117,105,99,102,110,117,102,113,96,113,108,113,96,110,113,99,94,107,120,96,104,107,111,111,100,114,107,126,113,87,103,106,101,101,103,99,101,95,116,114,107,100,104,112,108,103,104,93,100,107,101,98,102,98,106,109,100,101,103,108,102,103,105,119,105,120,104,101,91,103,107,105,91,103,95,119,105,108,95,114,112,95,104,100,102,110,107,100,101,113,93,111,100,99,102,105,96,101,95,114,108,107,108,103,107,110,116,91,108,109,109,107,99,106,93,98,110,104,123,106,113,115,106,95,104,102,110,114,107,109,108,97,94,111,125,126,117,97,101,99,98,99,97,108,103,109,104,118,111,104,102,103,109,106,89,96,105,113,103,101,101,110,95,109,108,97,99,104,95,90,106,75,109,105,102,96,99,108,105,110,100,98,99,108,107,111,110,102,109,101,104,100,105,108,103,94,110,109,98,107,96,109,97,110,107,116,96,99,98,97,107,104,106,101,103,109,99,111,113,106,105,98,102,100,97,112,104,97,110,98,113,109,104,113,105,100,97,101,106,112,98,104,101,101,109,107,112,98,98,97,97,100,116,100,102,104,100,110,113,113,105,94,100,97,95,109,131,99,99,106,109,115,115,103,108,112,109,113,106,103,84,117,109,102,106,108,71,100,101,103,110,101,92,87,99,104,98,84,105,106,101,105,108,103,108,100,103,107,113,101,113,100,104,100,101,108,111,110,93,103,98,114,105,97,96,111,112,106,104,103,102,112,106,107,86,107,102,105,100,113,106,117,108,102,87,118,100,111,104,104,108,117,117,102,79,95,114,117,108,138,104,109,106,113,92,100,107,109,102,101,99,107,108,108,101,91,100,112,104,121,106,98,100,109,106,94,117,97,106,112,109,108,115,110,108,97,110,112,108,88,99,109,116,80,103,96,96,102,97,90,102,88,113,103,106,113,99,114,102,96,101,117,102,110,113,108,103,107,96,110,97,101,92,104,102,94,116,93,118,101,101,103,105,113,111,105,115,98,105,88,100,97,101,120,105,113,107,107,117,103,113,101,105,105,109,91,116,97,102,113,104,108,111,106,109,98,108,107,101,99,106,98,99,105,95,112,102,107,105,99,100,109,99,106,92,108,110,105,96,117,112,103,109,91,91,99,99,92,113,109,120,98,112,93,102,121,109,111,107,109,90,101,106,109,113,89,106,99,103,104,103,95,103,99,104,98,101,96,95,107,105,115,97,108,109,112,113,126,105,103,100,96,106,105,103,108,103,107,102,114,107,95,116,102,90,95,99,100,96,99,112,91,100,102,97,107,72,103,110,111,109,100,92,109,114,95,90,108,97, +636.71088,110,94,92,93,87,99,103,104,114,102,87,106,98,115,113,111,101,113,102,100,111,98,99,92,100,108,101,102,105,94,110,110,95,111,107,99,108,110,108,107,111,99,94,102,93,107,95,105,98,104,100,85,104,102,115,122,92,89,110,107,122,99,106,99,114,109,95,108,106,95,104,99,92,106,99,108,122,96,113,93,105,118,103,124,123,101,105,110,109,97,94,112,104,107,109,105,74,97,115,111,104,97,97,97,92,90,96,86,109,99,107,102,98,102,105,112,103,104,91,103,101,104,113,100,103,109,117,102,108,97,101,107,96,94,104,90,113,104,95,107,102,105,82,103,98,94,106,122,120,102,105,109,104,88,93,98,101,86,101,110,98,87,113,110,109,114,105,112,96,138,105,102,95,107,103,108,105,79,101,101,82,113,98,96,104,108,105,100,105,109,98,112,114,101,108,98,109,105,98,78,98,105,102,104,98,113,96,105,112,96,97,107,116,103,106,104,113,114,97,104,112,107,107,101,108,101,104,110,110,110,95,110,114,91,96,106,106,109,107,113,74,117,99,103,106,100,104,106,103,95,104,98,98,101,97,105,92,81,104,106,99,94,106,114,101,106,110,96,101,119,108,114,112,108,110,102,101,109,111,107,99,102,120,104,106,105,101,98,107,105,105,105,109,113,84,95,101,105,105,103,103,107,113,124,92,101,105,104,116,102,111,113,116,99,111,95,93,99,111,91,106,106,113,108,108,107,93,106,112,92,97,99,102,105,112,99,91,100,95,109,108,96,114,95,115,117,101,101,89,117,106,78,80,87,98,96,104,126,98,105,93,84,113,100,95,111,91,72,105,103,105,104,115,86,106,101,98,112,94,107,100,109,108,107,71,109,94,103,110,94,105,92,96,106,91,92,98,105,96,104,108,106,97,93,93,103,95,108,71,86,102,96,98,105,105,108,95,99,104,98,112,98,102,116,109,92,99,100,115,100,106,98,102,101,101,114,97,101,107,100,108,99,108,93,101,106,105,94,103,106,109,117,113,102,109,96,97,114,106,107,95,92,113,106,101,106,89,107,101,104,119,105,80,101,98,106,108,98,92,108,101,103,95,99,108,116,107,114,108,102,101,99,104,98,91,110,102,99,97,93,115,104,112,96,106,111,104,113,113,114,103,104,94,104,119,98,108,99,107,103,98,119,103,96,102,104,112,102,92,88,103,103,101,103,105,105,113,99,99,105,101,107,110,109,98,98,96,118,105,104,107,102,113,103,101,108,98,99,96,95,103,99,105,92,89,100,116,105,102,93,84,97,135,109,90,95,89,104,104,102,71,104,109,94,109,96,105,106,105,99,102,106,103,113,114,98,121,98,98,108,96,95,114,101,90,97,101,114,105,120,91,104,96,101,117,99,100,99,99,102,107,109,96,104,98,96,101,110,109,109,106,107,105,108,101,91,85,97,106,116,105,99,96,106,89,75,110,90,100,105,102,95,81,104,112,104,112,95,95,111,113,104,99,104,94,95,113,97,103,104,105,100,110,100,99,106,89,101,103,95,107,112,113,95,93,99,114,99,109,106,106,103,91,112,101,98,99,112,113,103,114,107,105,99,114,99,104,104,104,102,100,110,114,92,113,93,92,117,96,90,102,96,107,91,98,103,110,102,118,114,108,100,102,101,79,115,97,103,113,106,102,105,101,96,103,100,104,101,108,95,111,96,109,90,105,115,106,103,95,98,99,108,101,104,93,108,92,107,98,92,108,102,112,105,99,99,102,100,101,96,105,108,109,100,102,110,110,105,100,88,100,101,106,106,102,101,89,107,108,92,99,103,85,102,115,99,102,104,99,80,105,102,92,105,104,95,116,100,110,90,105,105,100,104,104,114,74,104,101,95,107,94,103,98,98,105,106,136,104,110,106,94,110,114,101,95,96,76,105,97,103,92,109,104,97,102,106,98,94,110,99,98,104,101,107,114,102,101,105,103,106,117,92,110,103,101,96,97,113,99,91,99,98,101,109,133,105,83,100,92,108,107,102,99,99,106,105,105,103,96,99,112,91,89,100,105,101,108,107,90,106,107,108,101,106,104,95,102,105,94,98,102,83,102,100,99,106,102,118,97,102,111,89,99,101,96,100,94,108,111,108,109,91,96,114,92,110,107,104,95,103,102,94,96,108,95,107,102,110,103,94,104,99,100,106,102,97,99,117,105,101,110,103,93,110,102,100,100,126,97,88,94,104,107,95,106,103,95,112,109,102,98,98,109,90,75,101,102,109,105,110,97,98,101,90,94,104,109,100,96,109,105,100,101,105,109,96,106,100,139,113,108,98,94,109,105,109,105,106,101,103,100,123,98,102,100,110,102,103,109,120,111,116,106,106,113,105,101,107,115,113,105,104,121,108,90,104,103,111,100,104,96,98,102,100,109,112,111,129,107,71,100,103,92,99,103,113,92,102,97,96,102,93,115,99,95,95,107,108,103,117,111,94,114,90,93,103,80,92,109,98,109,74,91,122,102,112,116,108,111,95,103,104,106,108,100,105,103,109,91,99,110,97,97,111,106,104,95,110,99,103,110,91,97,105,87,93,104,101,94,106,101,93,99,100,100,93,101,98,104,96,105,107,105,89,105,110,103,104,98,112,95,97,91,102,102,104,108,109,90,102,99,100,95,93,104,96,113,113,93,110,107,113,109,95,91,116,82,110,111,112,104,98,102,96,104,106,96,102,110,93,96,102,99,115,109,103,106,137,81,84,101,104,96,95,105,106,128,95,91,116,133,102,113,106,110,98,99,100,102,93,109,99,104,113,98,110,115,102,100,103,109,104,113,106,108,104,103,110,99,93,96,87,108,110,93,95,100,95,102,112,99,119,107,103,95,104,113,96,113,102,99,82,119,101,101,112,95,115,107,92,96,110,102,105,106,99,103,91,104,102,121,102,106,108,95,105,90,100,118,103,87,113,105,98,94,107,103,89,133,127,104,100,95,120,105,99,100,111,101,106,103,113,105,97,106,101,95,113,96,92,92,95,113,121,92,99,99,86,110,95,97,91,95,105,107,91,108,110,71,99,94,101,100,101,89,99,109,104,107,96,86,109,109,117,98,108,102,92,99,105,94,102,105,108,100,92,96,107,97,127,90,96,105,100,95,93,105,98,110,102,103,99,103,92,101,103,103,98,112,107,107,95,104,108,110,104,106,110,91,109,102,106,95,97,98,102,106,103,97,96,108,105,98,93,97,108,101,114,107,109,105,102,105,104,96,99,100,116,124,97,105,113,99,105,106,104,117,105,101,98,106,108,112,101,95,103,102,106,124,91,104,101,105,93,103,94,95,104,103,101,107,111,113,108,108,103,104,105,99,104,91,105,98,105,110,105,106,102,99,105,108,109,101,106,99,103,100,108,120,101,102,105,103,99,94,111,92,105,104,94,103,107,106,90,107,111,104,104,108,109,100,89,112,99,102,105,104,117,97,107,103,102,99,95,112,94,104,106,112,104,103,97,102,95,90,97,110,105,103,95,107,100,113,103,103,100,103,113,101,107,104,109,104,112,105,105,96,97,105,115,102,89,105,113,103,116,98,115,92,92,103,94,71,109,94,106,106,107,103,102,101,96,107,97,101,102,102,107,105,108,96,113,92,120,97,104,102,110,102,110,108,102,95,93,99,95,104,112,98,112,94,96,98,102,116,105,110,105,99,96,121,102,107,97,100,100,112,97,103,102,113,84,100,110,105,105,103,102,94,108,103,106,106,112,108,76,79,112,102,111,105,94,92,103,95,107,104,113,107,124,96,97,105,99,98,101,113,106,99,119,94,106,103,110,109,109,113,93,101,105,97,100,113,110,102,87,92,108,110,104,108,98,105,112,95,84,108,99,105,111,108,97,91,100,104,101,96,98,83,103,101,92,93,95,103,103,117,118,101,107,101,108,96,102,99,106,109,93,91,92,101,97,103,101,99,107,103,99,114,103,99,98,99,103,113,100,104,108,112,99,106,100,116,99,87,90,92,102,106,92,92,99,96,110,115,100,101,108,106,110,101,98,96,109,111,104,99,98,103,107,104,102,105,92,96,103,87,109,110,105,96,100,102,103,99,105,105,106,98,105,99,107,110,95,102,107,102,106,97,96,104,108,93,103,101,115,111,108,105,110,104,94,113,108,103,113,94,105,101,108,100,92,94,94,98,94,110,101,99,117,107,99,100,95,89,100,102,76,113,96,98,96,87,98,117,101,104,113,103,91,88,115,101,91,100,104,98,113,97,97,102,102,112,106,97,109,98,91,126,99,97,109,103,101,96,95,108,92,113,101,118,113,112,108,119,87,99,96,105,106,95,90,113,103,101,113,115,111,104,106,95,106,105,105,113,110,99,102,109,98,107,107,116,98,103,101,96,112,96,92,93,104,104,100,108,94,105,104,105,106,104,122,104,99,97,108,103,102,114,111,80,108,110,106,113,98,112,102,103,105,105,98,99,125,120,99,102,107,105,99,106,117,109,109,107,120,98,115,108,94,102,105,98,85,106,101,109,116,115,97,105,113,95,95,102,101,101,109,104,105,88,103,107,112,99,94,101,100,102,106,108,104,98,102,110,104,101,101,73,104,108,115,109,103,113,110,122,99,104,100,97,101,93,113,101,105,97,95,98,92,100,107,105,100,107,103,113,106,100,104,100,112,105,106,106,113,106,109,91,99,120,106,115,109,98,101,100,108,98,105,108,99,100,106,104,110,90,117,100,110,109,108,103,100,104,101,104,101,98,97,100,93,103,115,107,95,105,91,101,104,106,93,109,108,101,109,107,92,111,103,98,100,93,106,105,108,103,102,96,104,106,86,116,95,111,98,103,119,107,102,99,100,96,105,102,104,97,100,101,105,103,99,94,107,90,100,102,107,95, +636.85199,102,107,98,102,107,99,107,102,114,95,103,110,97,94,99,105,100,108,97,108,81,121,96,107,111,110,95,99,99,106,113,103,109,104,71,86,101,97,101,104,95,95,99,102,100,102,108,104,96,111,109,95,121,109,83,108,107,101,116,100,101,104,108,78,103,107,88,103,103,112,112,94,95,102,90,108,82,114,94,104,87,105,119,116,114,103,106,91,107,106,92,100,101,113,96,105,90,91,89,110,106,101,108,98,105,109,106,113,95,105,116,105,105,126,103,97,105,104,114,100,110,103,106,106,107,106,104,104,111,99,113,106,101,107,108,115,102,101,111,99,99,113,100,107,107,117,117,101,97,88,110,113,95,105,96,103,99,93,105,86,92,106,113,109,107,107,113,97,103,96,97,105,99,120,106,114,111,99,119,109,107,107,111,99,110,106,100,108,108,101,100,90,97,107,102,105,98,102,104,119,103,89,106,139,101,106,100,108,125,116,127,110,103,101,109,112,116,106,95,101,116,90,113,104,107,114,108,117,107,106,111,115,103,111,101,105,109,92,108,107,104,111,114,103,99,108,104,103,114,126,110,100,118,80,105,102,102,107,98,108,101,101,104,102,108,137,106,103,103,104,94,109,103,103,98,93,97,109,110,92,109,113,116,107,106,109,106,107,105,102,108,95,114,102,105,114,110,104,103,106,95,99,108,104,99,105,105,114,109,110,84,95,100,108,106,101,100,109,110,99,116,101,108,111,97,98,100,109,107,116,96,96,106,97,108,111,95,100,105,106,103,107,106,100,104,97,93,103,120,114,114,109,103,109,107,107,108,104,104,109,98,86,106,88,99,102,97,107,101,115,104,96,110,97,107,117,108,105,97,112,103,107,104,96,100,99,101,105,94,101,107,106,102,107,104,106,97,105,104,116,102,98,106,103,107,95,105,106,110,105,102,94,106,108,110,104,97,97,102,101,104,96,99,99,104,99,109,96,91,101,100,100,119,102,109,109,101,121,99,114,113,106,133,112,97,109,109,104,113,104,99,99,102,100,102,98,100,99,105,106,97,112,109,100,103,104,110,111,104,102,109,106,120,101,88,109,109,106,103,89,98,106,94,108,117,94,103,101,102,102,112,107,110,100,100,111,88,105,98,101,106,100,113,105,102,110,102,108,99,115,116,108,108,103,103,101,104,114,87,107,102,109,106,91,96,101,110,109,97,84,97,104,102,107,99,99,94,118,106,102,108,112,109,110,106,76,107,101,113,107,106,107,110,105,107,104,97,94,108,105,116,104,113,115,102,114,113,103,116,97,94,100,110,91,100,96,117,101,105,99,104,97,94,85,99,98,107,101,125,117,106,106,104,111,105,98,104,108,98,121,113,111,111,67,81,105,106,106,109,115,106,101,101,101,100,99,89,95,104,107,120,116,100,106,113,109,101,112,106,101,92,95,102,101,91,110,104,92,109,102,99,114,99,101,102,99,123,106,110,102,101,107,116,108,99,104,110,106,106,114,114,101,120,109,106,99,104,95,110,100,121,100,114,98,97,108,98,96,105,95,117,97,111,97,110,102,108,102,100,104,106,114,109,109,100,108,101,107,100,92,112,94,100,109,117,138,109,114,84,106,110,114,99,97,102,96,100,103,107,99,112,104,103,102,97,72,123,117,100,124,113,105,103,106,105,103,117,97,111,108,99,93,103,99,109,114,108,119,110,106,101,98,99,110,116,97,111,107,112,103,110,111,121,106,99,111,98,108,106,106,103,98,100,100,106,102,101,98,118,98,114,106,109,109,110,100,100,104,102,93,99,92,115,104,100,101,105,98,117,100,101,99,111,97,118,102,104,108,120,101,100,94,96,101,112,102,109,116,101,109,101,105,119,91,114,116,107,102,106,83,107,107,104,103,107,112,120,108,99,113,96,101,113,102,114,99,98,98,101,109,110,98,105,109,111,97,112,117,96,106,103,106,107,106,104,96,109,98,102,107,103,111,112,111,106,110,103,94,113,91,106,108,108,108,86,120,88,106,99,99,110,112,115,117,110,91,105,87,109,105,110,104,107,114,105,106,100,102,113,106,101,90,108,106,113,98,80,120,110,73,115,103,104,94,99,112,110,102,111,91,111,106,109,108,96,106,109,96,104,109,111,90,112,101,118,99,113,113,109,72,107,114,89,116,113,94,107,109,109,99,104,112,105,115,101,105,116,99,113,105,107,106,108,114,102,102,92,110,92,102,101,110,101,95,105,109,103,100,96,105,124,104,130,115,107,103,107,71,116,114,110,102,106,109,107,94,99,81,95,115,108,99,96,105,99,103,117,105,102,110,120,110,102,92,114,100,101,109,104,109,97,122,115,104,105,113,103,116,92,118,133,105,98,111,119,108,109,105,102,97,107,124,92,95,98,112,101,110,101,105,96,94,110,95,99,100,100,111,108,67,99,101,102,97,112,106,93,98,93,96,95,103,83,102,93,108,101,117,113,96,115,109,112,101,101,107,129,107,105,112,103,108,105,99,95,105,109,105,101,98,110,115,109,113,100,98,120,120,92,123,112,106,117,98,102,116,110,120,98,105,108,110,110,107,107,94,103,109,107,106,104,111,98,111,107,109,89,106,114,116,112,104,113,96,106,107,110,105,107,105,111,96,104,94,100,107,99,99,109,105,103,97,105,107,91,93,106,113,107,99,111,105,115,121,105,105,106,115,95,113,99,113,105,95,106,106,101,103,140,109,103,115,96,104,99,98,102,125,102,107,107,106,94,99,103,114,116,108,102,106,95,109,120,102,105,102,109,109,113,104,95,111,102,114,107,108,106,107,107,103,104,95,114,102,100,90,111,116,105,103,108,106,113,108,110,94,104,103,100,112,126,109,101,95,105,99,108,107,117,107,102,112,105,109,101,100,107,100,94,110,91,105,117,113,107,118,105,96,105,109,111,108,103,95,103,109,105,91,106,107,107,105,101,116,96,98,107,114,106,115,99,102,96,108,111,117,102,106,106,104,104,104,105,105,105,100,114,117,100,110,91,96,94,104,107,117,100,106,102,104,95,96,123,99,104,99,112,107,105,110,114,77,71,113,84,107,106,97,99,110,107,107,105,101,111,94,112,105,108,107,101,109,103,112,101,91,95,109,105,107,101,94,102,107,101,90,102,104,110,109,96,104,95,97,108,98,77,94,106,114,98,104,104,102,105,112,108,97,96,94,122,100,98,102,114,84,113,102,101,112,102,102,90,100,93,97,115,106,114,104,104,121,109,105,115,102,93,116,84,114,108,83,106,112,99,104,141,109,109,101,110,101,106,104,110,98,119,100,102,104,112,100,107,98,112,105,91,107,100,108,88,124,105,102,100,105,108,103,116,89,90,86,101,111,101,98,100,106,97,79,106,106,104,104,109,109,99,106,107,98,100,104,109,100,104,111,96,107,102,100,91,90,101,89,102,106,81,107,104,90,109,111,100,108,91,104,114,110,106,99,103,99,105,103,110,112,105,107,108,110,94,106,90,107,113,108,118,109,109,104,112,107,102,95,98,103,113,106,101,112,102,104,100,113,98,104,104,102,103,110,109,105,101,107,108,108,97,106,104,107,91,104,83,108,90,111,94,96,100,108,92,109,103,99,105,111,99,98,100,108,109,106,94,105,82,101,104,99,101,107,109,88,104,125,105,102,97,105,104,105,104,102,106,99,95,108,111,106,102,98,109,99,83,106,109,103,115,94,102,103,91,99,112,110,102,113,111,95,110,95,110,103,127,98,117,99,99,115,102,103,117,102,85,108,96,113,95,98,102,101,109,121,109,116,103,110,106,121,97,99,101,102,102,114,105,99,92,103,106,115,103,113,104,115,93,103,111,100,95,103,96,103,103,99,113,106,94,106,87,103,98,101,101,91,113,101,100,109,105,99,108,105,73,98,104,106,87,96,97,107,118,101,113,96,105,107,104,107,113,104,93,119,113,112,105,104,100,69,105,93,106,92,113,105,99,103,101,117,105,103,107,112,107,108,107,101,94,97,111,102,112,108,104,100,115,105,109,98,117,109,109,99,104,105,107,113,108,108,103,98,101,111,99,105,102,119,97,101,113,113,96,102,105,100,108,104,102,95,104,118,113,116,103,109,108,95,110,99,100,115,101,106,85,108,108,108,114,116,109,100,108,72,99,95,104,98,107,107,94,108,106,106,117,102,107,108,100,109,102,106,117,94,113,97,121,96,103,106,101,100,110,101,100,111,109,104,99,117,101,98,102,105,99,110,114,102,96,99,104,102,105,98,102,94,110,106,101,96,98,119,98,109,103,96,99,98,94,95,102,113,96,94,114,101,108,103,105,96,95,107,102,106,96,94,103,91,95,89,112,115,103,91,110,107,107,103,103,108,95,95,95,106,102,94,105,113,92,102,107,95,109,95,99,87,105,101,97,109,97,95,100,105,100,94,106,102,91,93,102,103,96,100,87,113,102,102,99,116,111,98,105,106,113,98,103,94,86,97,93,99,99,105,92,110,112,98,96,107,100,94,91,102,112,102,103,112,94,97,110,98,97,103,105,113,113,99,102,93,113,113,96,86,114,92,116,101,112,107,94,103,102,98,103,104,102,109,111,121,117,77,104,105,103,109,97,97,98,108,102,90,113,102,106,91,115,106,107,102,113,92,108,107,103,106,95,110,114,108,104,96,95,98,109,87,107,94,110,111,96,97,111,112,104,87,91,94,104,95,118,91,99,100,103,108,105,113,104,109,99,99,104,102,111,93,97,108,104,102,104,99,102,105,112,88,72,113,115,99,101,111,89,108,107,111,89,93,102,120,114,117,102,102,109,94,107,112,113,101,93,98,106,102,103,99,101,107,100,109,104,104,100,97,93,104,77,95,97,110,112,101,105,119,109,102,100,99,98,109,117,97, +636.99316,102,100,86,109,98,99,96,94,104,95,101,103,105,114,99,112,105,107,110,106,113,105,97,98,76,103,101,100,112,120,111,107,96,98,107,96,101,120,101,100,96,99,97,102,109,107,99,97,106,117,102,103,102,118,67,107,95,91,109,93,92,119,96,112,141,106,107,109,96,93,95,100,101,109,95,95,93,106,106,103,105,94,115,96,92,92,116,103,102,107,106,103,92,113,97,104,96,106,96,88,89,93,111,116,87,106,100,106,100,100,93,88,105,100,100,90,97,103,102,97,105,108,106,107,107,108,110,101,113,109,95,103,92,92,100,98,104,106,100,103,117,98,93,108,110,101,103,99,101,107,94,105,104,92,96,112,104,106,101,93,88,100,101,102,110,99,102,107,106,66,86,107,98,102,108,104,113,100,103,96,100,108,96,115,96,105,104,100,105,96,108,109,98,114,100,110,103,96,100,88,93,108,109,108,94,105,105,98,94,109,114,110,91,105,105,109,102,93,110,103,109,106,107,96,95,100,102,86,101,110,98,102,93,112,101,92,103,103,100,112,104,96,103,95,110,98,103,102,101,100,99,105,98,97,108,112,94,99,93,99,108,97,92,98,103,113,104,95,100,99,108,98,79,96,95,97,106,104,103,92,103,99,105,115,97,92,104,108,102,116,98,97,102,108,107,110,101,93,114,92,99,106,92,106,107,89,108,113,100,108,85,111,106,94,108,99,102,124,101,101,107,87,99,112,100,102,110,95,119,103,100,95,103,106,105,101,115,104,103,102,112,100,93,91,108,111,93,111,101,104,102,99,111,105,109,107,101,89,93,102,103,100,102,109,113,97,118,102,111,106,101,104,104,104,113,105,101,93,88,103,109,101,105,104,109,95,102,97,98,93,114,108,95,108,101,99,94,96,100,117,96,99,108,97,110,110,106,86,119,100,98,106,105,91,110,107,97,106,100,90,98,109,101,103,102,108,109,94,103,104,117,111,103,101,101,90,104,108,101,103,97,90,97,105,104,95,94,106,106,108,102,109,98,110,97,93,100,95,109,91,91,91,103,105,96,105,96,85,110,98,95,106,101,105,101,93,99,99,89,96,90,110,109,97,100,83,109,108,116,95,109,110,111,97,101,106,98,106,106,108,120,107,96,104,105,99,95,92,101,91,107,102,110,111,112,116,90,106,104,91,96,101,113,101,109,113,116,98,105,107,95,112,102,101,111,118,104,95,118,112,90,117,104,93,92,94,100,90,108,99,98,105,92,112,96,105,106,101,104,95,92,113,103,96,101,110,100,109,112,102,101,102,95,99,105,93,91,103,98,98,105,96,98,95,110,105,108,95,101,97,103,97,101,96,111,106,105,108,108,93,104,109,94,96,106,98,102,106,108,115,100,104,104,109,79,109,104,105,101,118,107,105,105,109,112,91,93,103,99,99,100,100,96,103,107,116,100,115,106,106,111,104,94,112,105,96,102,96,107,86,95,100,103,113,100,103,114,100,101,100,106,106,98,109,96,100,101,98,99,111,95,105,101,124,91,99,95,95,113,99,103,104,101,85,105,106,99,99,112,99,96,95,103,96,104,95,100,105,100,115,100,100,106,68,89,91,108,104,101,98,110,95,89,103,105,103,141,103,95,92,110,107,107,96,106,113,86,95,108,102,99,101,106,102,109,109,95,77,124,105,105,104,110,100,117,92,106,97,112,120,98,110,97,105,103,97,109,112,105,105,105,101,88,104,99,99,105,102,103,94,116,105,100,112,102,108,116,102,98,104,94,97,99,106,79,112,106,97,100,104,100,106,103,102,103,85,117,96,100,97,97,96,99,67,97,100,103,110,90,101,106,97,100,97,113,102,104,73,78,75,114,103,115,99,113,103,103,100,116,110,111,105,105,110,99,107,97,102,106,102,99,103,105,106,87,102,100,97,95,101,110,99,97,103,105,110,93,97,100,96,96,99,97,114,92,106,103,109,108,102,106,100,111,102,105,105,104,98,97,93,105,97,111,102,112,107,98,118,98,102,106,118,109,104,100,106,108,101,89,112,108,102,112,90,102,104,95,117,103,99,109,128,119,78,102,102,92,111,107,107,99,86,97,96,104,100,104,100,101,110,99,117,98,107,97,98,100,105,78,103,102,100,108,124,101,99,104,100,108,106,107,98,111,105,110,90,95,97,97,70,102,100,101,101,106,81,87,93,98,93,102,117,95,116,106,94,112,97,87,91,87,101,107,109,102,120,106,96,103,95,108,102,103,112,87,88,108,104,103,98,110,103,98,96,108,116,115,93,111,102,90,101,102,105,105,109,107,94,102,92,109,100,103,98,103,87,97,109,102,93,105,100,101,99,107,99,106,101,101,104,106,109,103,116,104,105,108,105,103,111,103,113,109,97,113,111,106,102,106,104,115,106,113,115,93,90,93,105,95,97,104,125,102,117,94,109,102,101,100,99,104,114,108,105,106,99,95,98,118,106,98,107,109,96,98,112,94,104,99,107,111,105,108,102,96,100,106,116,102,101,112,108,100,101,110,102,112,108,95,109,102,108,109,106,99,104,100,101,98,109,101,109,105,101,109,115,97,109,91,97,98,105,103,91,97,109,91,97,107,105,124,101,99,108,102,88,102,95,102,106,103,97,72,94,100,103,110,107,108,101,103,108,123,98,93,106,110,100,108,100,120,94,108,103,103,113,97,109,92,110,109,105,108,99,94,111,113,105,103,105,113,104,109,105,113,110,101,108,93,105,88,114,94,106,107,105,110,97,103,96,107,118,106,94,93,94,96,99,96,118,95,111,94,116,105,102,89,102,95,100,105,105,117,100,106,106,112,107,104,90,91,104,94,98,104,104,105,121,98,108,107,104,93,111,102,107,89,102,110,117,77,109,110,109,110,103,110,100,93,115,105,110,110,119,109,99,106,104,103,116,106,115,95,106,105,101,102,99,87,109,103,96,98,118,104,106,113,113,103,97,98,107,101,101,104,108,100,118,107,103,115,104,91,100,101,104,108,110,108,100,113,113,99,105,99,103,105,90,108,91,113,105,100,100,112,94,103,96,114,111,107,103,113,98,97,98,96,109,105,101,114,100,111,104,103,94,106,90,94,115,99,101,107,101,99,105,106,120,102,107,103,109,112,123,103,102,96,108,98,100,109,121,99,98,109,109,100,105,106,100,103,104,99,100,109,100,100,106,109,96,92,104,102,93,96,96,104,100,94,105,93,112,96,104,89,88,98,97,109,93,96,99,99,110,101,100,98,108,101,102,100,112,103,99,65,99,104,105,104,93,100,101,103,77,110,104,112,106,106,91,97,100,100,108,107,112,99,100,107,106,101,108,93,113,108,113,117,117,107,100,100,106,101,97,87,91,104,113,108,98,88,102,107,91,110,99,98,98,98,102,99,97,106,110,104,113,105,104,102,89,105,91,114,92,100,104,103,114,104,94,103,95,108,101,90,97,100,109,105,110,88,103,111,103,96,94,101,100,90,88,94,110,93,112,115,101,105,116,97,99,93,99,117,106,100,108,103,111,107,107,104,106,102,103,110,111,96,100,104,108,100,100,108,109,108,93,108,103,98,100,117,102,114,105,103,107,115,97,97,99,104,108,104,107,91,98,109,108,105,95,108,108,116,112,100,101,95,111,108,103,105,109,90,105,98,94,99,116,109,94,110,107,94,104,109,102,98,113,101,110,107,117,113,103,95,103,106,102,102,106,96,97,103,104,109,91,103,109,104,116,106,101,104,96,111,117,112,94,94,100,106,106,90,100,116,99,100,99,111,92,102,109,112,105,94,100,103,96,118,107,95,91,101,100,96,99,94,99,106,91,104,99,101,98,98,109,108,94,102,101,112,106,96,102,77,102,105,101,102,111,96,96,110,97,97,99,96,92,96,92,116,99,99,97,101,94,96,103,112,108,111,99,91,105,117,99,108,120,106,109,109,104,108,109,95,103,83,100,91,99,109,100,84,100,100,99,106,118,101,75,106,112,88,112,113,112,127,99,98,103,107,106,101,99,107,91,111,102,113,108,112,102,109,109,110,97,106,99,97,97,95,94,119,102,107,108,107,89,98,102,102,100,105,103,103,116,105,112,95,103,98,104,99,100,114,104,100,99,96,114,102,89,105,103,97,107,108,106,107,106,109,92,111,90,106,118,106,109,102,114,101,77,101,106,101,106,97,111,111,106,108,103,102,116,114,101,96,107,98,126,113,99,108,105,115,112,92,102,114,95,102,104,110,98,103,107,105,103,113,103,92,104,109,100,109,101,71,102,101,101,108,98,116,96,111,101,106,104,111,112,102,102,102,118,101,115,105,104,99,98,90,98,93,110,107,91,99,115,95,102,106,104,100,109,99,109,111,110,105,106,107,107,106,101,82,104,104,97,102,111,102,107,115,105,95,100,120,96,98,98,118,106,104,107,102,96,94,97,112,111,108,103,100,109,117,98,94,110,105,98,102,130,99,101,109,103,111,100,103,103,105,92,112,106,112,104,102,100,105,103,100,102,109,108,116,119,101,101,110,111,103,110,87,104,102,92,128,97,104,114,98,109,110,90,118,104,115,107,105,110,103,90,103,120,96,101,99,106,108,114,99,108,113,105,93,126,121,103,105,104,94,112,106,113,109,105,105,103,108,105,96,102,119,83,100,90,96,98,103,102,100,108,85,115,110,96,115,103,81,110,65,113,94,109,102,93,95,104,109,104,104,103,105,105,98,115,109,101,117,111,98,105,98,112,104,98,103,111,98,104,100,99,97,105,102,109,108,102,112,100,91,99,112,109,103,100,99,96,121,88,105,87,104,75,106,106,117,118,115,110,92,113,98,102,106,83,91,93,114,88,95,100,108,95,98,107,82,98,106,95,111,103,102,87,102,113,102,93,99,95, +637.13428,102,95,102,111,96,101,100,94,106,92,96,109,103,105,92,109,98,102,104,95,100,111,106,104,96,113,104,111,96,111,116,109,104,99,108,94,96,108,87,107,95,97,99,98,110,115,95,94,99,105,92,85,108,92,95,94,105,103,98,110,97,98,99,101,96,112,106,109,107,98,102,94,113,105,99,102,106,102,110,90,112,108,132,107,102,96,98,97,100,113,103,99,104,100,102,104,102,104,107,98,95,103,94,94,100,109,106,93,96,89,98,100,95,102,104,97,87,102,110,98,114,100,99,110,116,106,101,102,113,120,101,95,88,111,87,104,102,100,89,101,101,104,114,99,100,88,103,84,100,114,103,104,100,96,95,103,112,101,109,105,97,101,89,100,108,92,105,95,96,105,85,115,108,95,94,106,108,93,108,140,103,96,96,109,90,101,89,93,95,104,89,91,96,83,99,108,95,106,101,104,111,108,97,113,97,91,121,89,105,122,89,98,101,104,103,99,105,113,112,104,98,110,104,97,104,106,111,97,100,102,100,104,89,100,112,97,99,106,95,103,101,111,123,108,108,93,98,96,105,103,83,94,110,114,101,114,98,97,87,102,97,99,95,106,94,97,122,96,105,98,94,115,104,112,111,87,89,111,101,97,108,113,103,95,109,108,90,101,104,95,113,104,114,98,111,106,101,103,108,98,88,103,105,111,95,108,103,125,117,102,98,116,99,113,103,108,99,117,99,100,110,95,90,108,96,102,103,103,113,105,101,98,94,96,106,101,109,103,100,102,103,111,105,102,94,119,115,104,98,102,114,103,96,80,100,96,106,110,95,101,101,82,110,102,96,101,104,105,104,103,106,113,101,91,113,105,102,100,113,110,101,96,94,107,106,109,105,93,102,96,104,94,107,111,106,105,96,104,101,110,98,99,90,105,100,91,100,110,98,96,102,98,99,114,98,104,96,80,118,95,110,94,104,104,97,95,100,97,100,104,102,107,84,103,100,100,92,105,96,102,105,102,119,107,104,104,93,95,111,94,99,100,94,107,102,99,105,112,100,99,96,98,103,106,100,102,114,109,99,102,100,114,102,104,106,100,107,109,100,112,102,107,101,117,101,107,109,105,106,99,106,104,103,102,102,107,83,117,114,111,106,102,101,104,117,111,95,91,109,105,102,113,109,108,104,108,109,110,111,104,106,97,117,109,98,96,102,108,100,98,100,101,105,97,112,100,98,97,94,99,101,107,100,101,115,117,97,100,120,105,106,100,102,101,100,105,113,99,99,96,101,119,92,113,91,114,108,109,109,100,95,95,101,107,106,106,96,84,111,108,102,96,102,104,108,107,109,112,97,91,102,95,98,88,100,98,106,97,101,108,108,97,104,108,105,96,110,94,92,100,102,105,108,127,102,101,96,116,118,103,114,102,99,95,108,112,103,95,105,109,97,104,103,95,92,110,109,98,104,106,113,94,103,108,99,92,85,102,118,86,104,103,95,82,104,102,111,102,113,91,98,105,93,108,94,93,106,96,95,106,103,110,105,94,100,106,103,110,91,100,104,108,108,95,98,90,98,103,105,99,94,103,104,89,109,99,117,107,101,94,111,102,87,105,104,111,97,110,102,77,106,105,100,104,110,98,106,108,104,104,111,95,100,118,100,101,103,63,101,101,112,101,119,91,96,88,119,100,112,98,112,96,99,111,108,106,106,108,102,106,112,98,100,97,90,96,105,104,114,96,101,105,105,102,104,108,89,103,103,102,119,111,101,103,98,94,103,98,102,98,106,109,99,104,121,95,103,106,102,104,112,99,117,107,107,116,99,106,105,114,104,111,105,97,107,111,110,107,109,96,103,106,105,104,106,102,108,110,104,96,117,109,97,99,110,118,96,110,110,100,109,105,126,91,105,106,94,105,104,104,105,104,120,74,95,95,98,105,99,100,79,98,95,104,100,105,87,128,97,101,119,97,100,110,122,97,108,99,98,100,100,111,99,104,93,101,96,118,104,103,95,98,102,110,102,102,101,102,107,99,95,95,103,108,107,103,108,107,103,97,106,113,93,101,113,86,98,97,96,95,108,106,106,98,100,110,105,98,101,103,96,97,106,130,111,99,102,106,108,104,120,105,105,118,94,106,96,106,101,107,97,94,107,111,90,97,109,104,101,103,100,99,108,111,105,98,112,111,104,111,109,109,116,109,97,100,102,100,100,91,107,121,114,103,102,106,97,105,90,99,96,99,100,108,96,108,108,105,90,91,106,117,112,103,100,92,104,108,102,98,106,95,106,93,104,106,112,103,89,112,101,109,103,99,103,105,108,85,94,98,95,102,103,97,103,102,120,107,95,101,108,98,101,106,99,95,112,107,106,98,116,103,102,112,125,106,109,103,110,96,113,115,103,100,95,110,103,114,105,97,90,99,87,92,112,81,102,97,107,107,104,120,70,99,97,93,100,103,101,106,99,109,103,113,110,95,104,104,116,97,105,98,99,93,93,105,102,98,108,98,96,102,115,96,97,96,96,96,101,102,110,113,100,113,102,112,103,92,102,110,100,91,101,91,101,96,102,100,98,105,121,96,103,102,115,93,93,101,97,99,110,94,95,98,89,109,99,107,111,99,106,95,105,109,76,108,103,97,100,112,89,93,103,94,105,113,89,105,100,99,104,88,100,107,111,92,114,112,116,92,105,107,106,118,108,105,103,109,104,97,92,93,105,103,102,107,93,96,109,104,96,113,102,98,96,103,101,106,95,105,93,103,113,95,93,103,96,110,99,98,108,108,85,98,104,106,104,82,105,102,95,93,103,99,112,103,106,101,109,101,99,107,118,103,109,119,98,95,96,100,103,111,97,100,103,102,99,108,105,111,104,96,88,115,104,105,107,105,101,105,102,106,104,128,108,95,101,95,99,117,100,100,106,102,127,96,93,109,101,108,96,110,93,110,105,104,105,88,98,116,92,96,97,98,102,106,113,95,91,109,101,99,98,99,105,120,94,102,82,103,110,106,108,97,104,83,103,91,113,90,95,91,109,95,89,109,95,102,107,118,95,110,101,96,109,100,111,108,108,103,99,113,95,93,96,97,109,106,99,95,113,105,113,92,101,113,104,82,95,92,103,97,103,102,104,122,99,94,104,104,108,95,91,105,97,91,106,95,106,93,105,98,115,95,114,86,106,101,102,107,110,113,95,110,96,102,107,103,95,82,96,101,98,91,107,100,105,105,100,98,110,94,87,109,91,68,117,107,100,98,109,101,100,119,98,101,103,103,108,104,96,94,105,106,99,102,95,98,112,104,103,103,121,114,102,108,124,98,113,94,94,99,105,110,98,92,102,112,106,99,102,109,100,106,109,107,102,100,103,80,98,97,97,67,105,106,109,88,108,99,111,109,98,102,108,101,103,84,112,98,102,94,109,110,98,112,110,86,103,105,80,105,104,91,102,106,94,112,102,105,105,92,109,94,107,95,107,76,101,100,101,100,105,104,98,115,101,97,114,102,113,107,91,100,98,106,99,105,119,102,110,96,107,114,98,105,105,102,116,95,95,94,91,104,106,114,102,110,101,102,108,101,105,97,100,103,103,92,101,90,96,113,98,110,97,96,105,101,106,103,99,100,105,104,103,101,115,91,106,65,104,103,110,92,103,91,88,101,115,119,109,89,102,101,96,87,103,106,113,93,98,99,90,95,96,99,108,99,105,102,104,88,104,109,97,100,104,102,103,109,93,111,103,98,105,101,112,93,106,96,99,105,98,105,98,96,97,100,121,100,98,103,102,103,109,109,103,106,109,101,105,113,100,93,103,98,92,101,96,99,112,106,99,95,101,116,108,93,118,113,108,100,110,104,99,96,124,105,95,104,101,105,104,108,112,106,98,103,106,96,97,103,109,111,104,100,97,101,109,96,113,100,89,102,107,90,99,87,97,104,100,95,89,98,109,109,103,92,96,98,104,101,100,103,100,91,101,101,100,103,100,97,104,105,115,104,91,101,108,97,97,103,109,102,116,100,97,103,100,102,103,99,107,110,97,112,105,94,98,92,97,95,79,96,113,115,106,99,115,91,107,112,107,107,95,94,99,99,113,109,102,91,63,94,106,109,105,104,115,107,105,119,104,115,100,126,99,108,103,109,96,91,87,110,103,103,122,108,105,113,94,108,107,88,105,98,108,101,97,102,111,99,101,83,96,102,90,101,107,103,114,105,109,107,116,116,100,98,105,106,109,92,113,100,102,111,88,102,96,101,90,96,108,106,99,110,106,99,98,102,101,95,117,105,92,101,115,106,91,105,98,73,104,91,96,101,113,96,102,105,109,91,99,100,106,142,100,105,96,94,98,95,116,105,97,100,100,103,94,104,94,103,106,111,108,104,104,104,96,95,111,103,102,105,94,105,108,99,93,100,104,88,100,108,104,100,99,116,111,95,102,103,109,90,106,101,96,108,99,108,98,110,102,101,111,106,96,100,98,105,97,95,104,91,88,105,105,92,91,101,93,100,106,99,107,106,110,105,110,116,92,94,91,98,105,95,109,103,110,97,103,117,92,97,115,112,101,108,100,101,117,105,102,98,107,84,103,100,86,96,105,75,115,102,109,96,93,98,106,111,102,101,100,123,99,120,109,106,105,98,101,98,106,84,94,95,105,99,105,78,91,104,108,94,74,94,111,103,99,79,103,95,104,100,105,102,119,90,109,89,92,106,103,119,88,98,94,104,93,92,88,98,103,99,105,94,95,96,116,104,105,109,97,104,96,75,95,103,94,107,95,104,91,124,111,102,98,103,97,93,108,94,89,101,94,99,99,111,104,109,94,102,117,109,113,108,101,96,107,75,103,101,112,111,104,97,105,108,72,94,102,85,104,98,99,88,99,102,91,100,89,91,93,99,105,114,125,97,82,100, +637.27545,99,119,98,83,110,107,105,92,119,101,113,89,103,114,109,105,92,105,130,98,108,110,101,103,100,102,89,95,103,82,110,97,106,97,92,102,111,109,104,104,96,86,105,115,100,104,95,107,109,107,123,110,103,106,117,113,98,109,111,110,105,100,94,95,106,110,96,109,109,88,105,112,113,99,116,120,100,105,106,112,95,102,103,100,110,98,101,116,101,95,112,101,116,101,104,107,103,98,91,103,90,108,109,117,92,117,107,101,102,105,107,103,123,96,103,99,103,102,93,107,104,108,98,101,107,98,108,103,123,107,103,95,100,109,118,113,102,102,87,107,104,111,104,109,99,129,106,98,116,107,90,99,104,102,117,104,107,79,94,109,110,114,102,105,109,102,93,96,105,110,115,99,101,113,115,96,93,102,107,105,111,111,105,104,100,105,106,98,106,99,104,100,105,96,119,104,113,102,96,112,103,94,109,94,84,103,103,106,111,114,110,120,74,104,110,104,120,117,96,101,101,95,110,109,106,107,104,102,113,104,108,104,99,92,108,104,110,104,104,104,105,89,111,101,115,74,103,116,115,119,99,109,107,108,104,114,103,105,113,103,99,102,102,97,92,120,113,100,102,97,105,118,126,111,109,103,118,114,99,93,97,110,103,113,124,97,107,104,107,85,100,111,109,106,108,82,101,94,102,107,116,100,104,113,117,105,103,108,104,113,106,116,114,104,90,106,120,114,112,100,102,101,99,108,109,103,98,92,98,106,111,105,92,116,104,95,107,96,90,107,107,112,96,96,88,102,125,104,104,111,85,110,123,122,102,100,109,105,110,106,102,104,112,104,100,101,109,111,112,110,111,94,98,110,107,87,112,108,108,103,104,109,106,97,107,115,107,98,105,118,108,95,110,120,104,103,98,100,104,100,96,110,91,100,100,112,121,102,107,102,103,102,99,102,106,101,94,101,89,90,110,106,104,112,109,102,106,94,91,112,114,81,103,103,107,101,112,118,110,105,108,106,106,115,95,97,105,112,107,110,96,104,109,102,106,106,108,102,114,100,90,109,101,103,90,107,112,84,113,96,107,103,107,101,111,93,114,116,105,109,95,112,105,115,96,100,91,116,109,105,101,106,100,100,105,109,103,114,111,110,99,103,106,109,107,108,99,106,110,103,98,107,98,99,103,102,104,120,107,98,97,118,109,109,113,109,97,106,104,119,103,108,110,109,98,103,103,97,111,112,112,101,87,107,107,105,103,103,104,111,113,98,97,114,104,110,112,91,99,102,120,109,97,101,108,120,105,111,110,95,97,95,99,132,118,112,109,96,110,97,113,99,103,106,106,116,108,105,106,109,106,103,115,102,114,104,93,100,102,100,101,115,120,100,99,102,106,115,112,100,103,93,121,115,109,105,95,96,99,97,87,107,97,106,106,142,103,100,100,102,101,108,102,119,99,90,116,104,106,105,125,109,90,113,98,90,105,102,107,104,102,102,107,111,94,106,110,97,113,119,110,100,85,108,105,126,91,110,104,109,117,96,111,105,99,101,105,76,109,104,110,90,104,108,104,109,100,105,113,106,113,113,114,105,98,102,111,106,104,108,116,102,107,106,75,108,117,105,99,111,106,93,105,103,107,95,115,90,107,103,104,105,103,106,101,118,101,116,107,113,100,102,115,111,99,110,100,94,96,94,110,105,105,87,106,101,109,111,110,109,105,114,109,109,103,88,117,104,107,110,103,117,102,108,112,117,88,107,102,94,108,111,112,101,98,102,104,99,106,98,104,113,106,104,108,96,102,114,99,117,102,100,107,115,109,107,106,115,105,109,101,107,102,103,107,110,116,100,104,88,115,100,102,101,112,103,108,110,111,102,93,106,100,109,103,107,99,87,111,103,99,100,101,113,97,99,107,96,109,107,110,104,108,102,100,100,108,102,98,102,109,95,99,105,85,106,111,105,102,114,98,112,97,108,103,122,104,103,104,103,92,108,107,113,115,120,96,101,107,102,102,99,116,108,109,114,99,116,116,103,107,115,109,114,111,104,98,110,104,122,105,108,111,94,120,103,102,110,99,91,110,113,103,101,109,105,110,104,108,111,103,110,121,99,105,105,101,99,109,94,105,100,104,113,100,106,113,109,102,105,103,108,119,109,90,109,99,105,102,115,100,104,111,99,110,100,98,105,109,111,112,87,113,105,116,104,95,99,121,113,105,105,91,102,114,106,102,111,104,101,106,99,111,109,105,106,104,110,112,113,108,102,103,108,105,103,109,113,110,100,95,108,107,92,112,112,124,99,76,105,102,112,105,108,105,101,105,105,100,99,116,115,109,93,97,104,92,98,105,107,119,106,104,85,121,105,105,118,109,95,130,115,102,103,111,116,120,122,102,114,112,113,116,100,102,98,113,113,108,109,108,113,87,107,114,102,87,99,98,107,106,100,98,102,104,113,105,117,94,107,105,105,109,105,80,107,115,99,106,116,99,98,104,94,100,101,103,98,113,90,114,119,111,91,114,100,110,96,96,107,101,122,103,99,95,90,103,102,86,115,95,97,101,109,108,109,111,108,90,108,104,106,100,107,100,112,86,107,109,101,130,97,100,104,100,111,105,103,114,103,109,95,110,105,124,105,93,113,103,116,118,97,113,104,91,121,100,100,108,90,99,109,106,92,106,109,96,98,94,96,98,96,96,96,110,102,100,112,109,112,102,103,115,106,102,115,108,101,101,100,93,106,119,101,109,113,100,100,98,109,104,103,110,107,108,99,99,117,96,106,109,101,114,85,90,121,101,95,101,107,105,110,102,109,109,105,95,115,121,92,110,113,130,95,97,103,90,105,113,104,102,111,78,110,103,99,92,102,98,116,110,100,102,110,107,111,108,112,105,122,102,102,97,99,103,98,103,104,97,116,114,111,121,110,108,96,116,108,103,112,100,109,94,102,112,101,100,90,110,114,94,107,102,109,100,103,105,102,117,104,99,104,105,100,108,112,117,99,110,111,117,103,105,97,106,103,120,135,109,95,102,92,99,117,107,110,115,111,107,91,111,102,96,84,114,96,102,89,102,106,100,104,106,106,93,115,116,100,97,94,110,103,95,94,115,97,106,113,98,104,99,123,98,116,108,110,106,104,107,108,109,107,108,100,109,115,98,96,100,107,105,96,108,110,109,103,106,112,113,116,115,101,98,121,96,107,105,118,113,100,106,109,95,103,87,90,99,103,98,107,95,97,97,101,98,108,91,99,115,102,113,111,108,106,107,94,96,99,92,107,111,107,105,106,98,116,101,101,104,121,107,95,104,100,102,105,99,104,116,100,111,112,110,114,98,109,102,92,111,101,99,98,99,98,103,107,106,94,86,113,80,102,106,111,104,99,128,101,95,95,107,102,96,107,102,100,78,126,113,87,108,99,102,109,102,119,116,109,101,84,100,101,104,98,106,108,103,119,106,115,103,108,108,108,120,127,109,108,105,104,107,118,115,114,108,114,112,83,104,103,102,107,101,103,104,90,105,113,104,105,103,104,104,103,108,108,107,99,104,101,105,106,107,108,115,104,98,109,107,107,109,102,103,101,103,102,106,109,105,99,92,117,108,97,106,101,95,115,97,106,106,100,104,115,104,110,99,113,102,104,98,107,111,109,110,103,115,102,108,114,121,109,104,102,97,102,99,101,105,99,88,91,102,108,101,99,103,93,105,109,106,114,109,105,102,103,109,103,89,96,113,107,119,98,113,108,111,101,106,107,99,101,117,103,103,108,104,104,91,95,105,107,103,112,95,103,109,111,110,114,103,105,101,108,98,108,105,88,108,106,105,95,99,102,101,112,109,107,98,107,101,100,90,91,86,108,107,109,101,101,105,112,102,94,93,113,103,96,112,101,103,102,102,101,114,95,120,107,109,102,108,109,88,115,104,89,95,105,110,123,105,112,103,105,95,99,109,100,107,109,104,110,105,111,101,101,106,103,101,103,102,111,101,105,111,113,99,108,93,98,107,108,111,109,87,107,101,109,93,102,108,102,93,97,96,106,110,107,95,97,112,95,98,112,103,106,109,109,99,101,100,106,108,108,103,104,101,101,98,103,115,102,100,107,103,111,98,100,104,106,112,79,111,100,106,101,99,90,100,107,117,102,106,108,109,103,100,103,98,139,107,98,98,101,110,97,111,99,100,102,107,103,107,104,101,107,109,108,111,85,114,96,103,106,71,92,100,113,101,101,109,99,97,98,100,91,105,103,95,94,95,107,108,110,91,95,101,94,108,117,112,108,100,104,106,101,108,106,98,103,95,101,110,103,101,102,94,100,101,116,99,123,104,111,109,109,98,107,107,109,113,95,108,104,96,92,101,106,107,77,113,105,112,108,101,101,105,115,99,106,97,100,103,97,105,115,100,101,113,123,100,101,117,101,101,123,103,102,112,107,95,105,110,91,104,100,108,103,108,106,98,97,102,117,107,97,97,92,121,103,100,103,106,91,115,116,106,102,112,129,96,95,105,84,100,95,95,100,104,103,102,94,101,99,92,101,100,105,110,92,99,107,109,111,101,109,117,99,95,88,97,98,106,100,104,128,91,95,117,104,94,96,116,100,106,108,113,97,110,99,104,95,92,105,106,105,95,115,92,106,110,117,104,112,110,110,101,96,101,89,101,112,100,108,96,108,111,106,111,113,105,99,109,98,106,93,113,100,106,101,99,99,112,108,114,97,98,104,94,101,97,104,103,93,106,107,105,97,112,98,109,101,114,100,121,98,101,88,105,98,100,113,109,103,101,123,107,105,125,115,98,99,99,102,104,101,98,111,95,94,111,124,95,113,108,106,89,103,98,95,112,115,123,104,94,116,102,110,109,65,103,103,99,92,114,97,91,103,99,102,113,94,103,106,101,106,112,96,112,105, +637.41663,95,102,107,108,92,101,82,101,97,107,104,95,90,102,110,107,108,121,98,120,105,92,104,108,97,108,99,95,98,110,127,105,101,99,108,91,101,86,100,99,97,100,113,102,100,114,96,102,90,84,96,118,105,105,91,101,117,81,106,96,93,105,109,80,113,103,97,113,97,119,99,106,98,109,99,96,106,113,110,97,101,104,100,102,104,108,98,103,102,109,103,94,104,96,109,101,122,108,104,102,105,109,100,99,102,105,92,112,112,91,92,111,93,99,119,101,105,107,105,96,94,98,98,108,102,111,105,95,104,117,105,86,106,99,110,105,105,96,99,102,96,96,95,100,106,110,108,95,105,100,107,106,121,113,91,89,106,113,98,104,87,108,103,103,88,113,95,97,112,108,102,105,96,105,121,96,95,91,107,99,113,90,106,116,117,94,95,111,99,106,106,95,97,96,96,115,115,106,101,108,92,108,93,79,111,101,109,99,94,113,99,106,117,93,96,104,106,99,102,86,102,105,96,97,138,98,87,117,98,119,98,117,105,109,109,102,100,107,95,113,99,112,103,105,102,96,91,93,109,106,115,109,101,104,111,105,87,100,85,105,90,108,103,105,96,109,99,106,100,102,99,100,98,98,101,112,102,105,103,104,107,106,102,79,96,95,102,105,99,103,101,107,96,102,109,108,96,107,91,112,94,106,100,120,98,103,105,97,115,102,106,108,110,105,103,115,92,113,104,98,102,120,102,109,105,114,109,97,110,109,122,103,110,110,99,106,101,102,106,108,102,102,100,100,110,103,107,107,111,103,104,107,106,99,105,95,104,101,99,122,86,100,92,92,108,87,107,91,104,100,109,99,104,96,95,113,104,109,102,112,107,105,103,98,109,112,107,98,99,100,109,100,101,109,95,98,92,103,102,90,98,110,105,99,109,101,100,99,113,100,114,94,104,106,96,89,107,102,100,96,116,96,92,103,103,91,111,94,107,107,95,101,101,107,101,94,95,114,105,104,113,110,103,116,106,96,101,96,109,100,109,95,100,113,89,97,89,94,99,100,101,117,108,110,110,112,102,111,101,106,99,108,107,107,104,91,108,110,99,100,106,105,115,115,103,100,92,104,90,105,105,114,98,92,95,108,107,105,116,99,118,97,106,106,103,99,112,105,113,109,97,110,104,99,106,93,98,107,106,100,110,110,104,100,90,99,102,109,93,103,112,97,108,100,109,110,108,90,115,107,96,96,98,91,118,95,110,103,107,107,102,104,104,109,89,97,95,117,108,114,97,96,109,109,95,104,118,103,116,99,91,104,92,103,109,99,99,117,117,100,110,103,94,96,97,107,108,107,94,91,104,104,105,110,107,101,105,101,108,114,94,99,109,109,98,105,99,109,91,99,102,108,98,104,107,101,100,107,106,108,102,103,110,97,121,100,105,140,114,111,112,116,106,107,102,111,97,106,118,116,108,102,95,108,108,100,110,105,107,100,96,112,111,102,114,109,111,112,102,114,106,103,109,96,102,111,92,102,110,109,106,103,122,99,97,106,102,108,112,99,115,101,119,78,87,95,100,96,98,111,111,109,104,109,106,107,107,101,104,99,99,96,96,121,108,112,98,106,97,98,106,108,95,106,101,117,83,102,104,106,90,95,109,103,77,106,105,106,91,103,100,106,94,99,106,101,102,103,101,117,118,104,107,99,107,105,103,112,104,105,113,103,121,99,115,104,113,97,112,102,113,108,93,100,90,100,92,114,105,98,113,111,93,108,104,110,121,109,102,98,96,104,111,103,106,99,100,108,113,109,119,102,112,118,102,96,108,106,105,103,109,101,108,101,101,112,95,110,105,108,113,110,95,95,117,98,106,95,109,103,125,118,107,105,108,109,99,126,111,99,109,104,94,124,103,108,101,117,95,100,110,105,109,105,103,101,107,99,111,99,114,104,104,100,98,112,97,96,106,108,103,92,99,99,106,108,100,105,104,131,101,105,99,108,109,108,114,98,103,105,122,109,98,102,103,82,102,110,105,95,91,103,98,112,105,102,108,113,94,117,90,105,121,100,115,100,106,115,99,105,92,102,101,103,79,100,107,110,101,109,106,112,106,95,102,101,109,95,91,99,105,116,99,102,106,100,87,104,99,112,99,110,103,114,108,102,109,94,118,109,100,94,113,117,106,105,101,101,112,105,112,102,99,109,112,109,103,107,104,95,103,107,111,107,106,122,103,98,92,110,100,93,101,110,112,99,109,115,103,100,115,99,119,102,100,106,106,94,89,106,117,95,105,103,113,101,106,103,95,102,100,99,97,105,99,104,98,101,109,81,111,93,109,90,104,112,100,108,103,100,103,113,99,102,92,91,96,118,104,103,113,117,100,97,105,115,111,100,112,104,106,97,99,120,94,106,106,100,111,105,93,110,92,98,97,108,111,104,94,102,95,109,101,95,102,79,111,91,101,108,97,94,104,87,102,108,99,92,106,92,109,103,107,105,106,108,111,113,103,94,97,107,104,95,117,105,96,94,106,97,97,117,114,103,98,116,112,102,112,106,97,99,79,103,101,108,114,106,102,105,104,113,106,97,112,111,93,113,104,116,96,97,95,104,95,105,111,109,107,96,104,87,111,96,108,115,112,104,103,104,92,100,75,100,95,103,95,104,104,103,103,93,106,99,110,93,108,100,118,108,101,103,118,95,100,94,107,148,113,95,100,109,106,116,103,105,99,106,91,117,113,92,113,97,112,109,101,111,113,106,101,100,98,113,118,111,124,105,118,106,100,105,102,101,115,94,91,103,115,108,97,108,91,109,98,108,108,108,119,117,110,103,107,96,95,108,101,89,98,98,94,115,118,85,116,117,102,106,111,108,114,101,111,107,101,94,108,102,107,99,112,117,102,100,95,117,111,106,98,115,107,104,97,102,114,102,99,108,105,117,116,97,97,94,103,117,98,114,99,108,97,114,106,110,91,99,106,107,90,100,98,105,108,93,98,92,97,102,109,106,104,106,95,101,108,98,98,101,94,103,103,96,104,99,107,100,107,106,109,99,115,91,117,96,108,112,98,81,109,113,98,126,102,108,98,108,91,103,95,102,101,106,113,112,103,102,111,105,106,107,88,106,115,100,116,109,105,108,103,94,95,101,97,105,106,116,117,101,80,106,112,94,96,94,102,117,87,93,99,97,99,91,95,108,110,109,95,98,112,98,103,95,99,96,115,112,102,95,97,102,98,101,100,93,103,95,107,99,110,113,137,105,105,101,91,100,99,116,110,70,111,98,102,117,102,115,98,102,95,100,113,99,114,99,108,102,108,99,106,100,98,113,104,99,106,109,108,105,106,95,90,105,108,105,103,107,108,106,101,102,98,101,102,107,99,94,98,104,109,109,96,94,108,102,109,113,107,103,107,115,100,99,109,113,104,100,106,107,115,96,103,98,109,98,92,101,105,95,100,99,104,95,99,98,69,110,110,98,99,124,109,104,108,96,106,116,106,99,109,98,102,102,96,110,107,102,91,95,99,89,99,107,102,92,100,101,113,111,106,98,102,97,99,104,101,123,93,102,101,107,105,98,102,116,100,102,109,103,99,109,108,100,109,112,100,106,125,95,98,102,100,88,113,112,101,95,115,102,98,97,99,101,103,89,117,112,104,105,101,103,100,93,101,107,95,103,118,106,96,102,111,110,103,109,104,107,104,108,110,91,96,111,113,102,107,92,98,103,113,96,99,107,109,103,110,100,106,102,103,113,107,95,123,94,107,99,102,108,103,105,98,102,99,102,111,94,99,111,116,106,103,104,103,97,112,107,103,112,90,96,111,97,104,100,95,112,94,101,106,123,103,109,117,94,108,115,100,99,119,101,106,107,100,98,103,110,113,110,116,131,100,96,113,106,110,107,85,105,96,97,99,110,106,113,97,110,102,100,100,105,91,120,96,118,92,103,97,107,110,102,97,110,95,113,104,106,96,106,106,105,109,112,103,101,105,108,99,98,101,106,106,100,91,113,106,104,97,103,104,93,107,97,106,93,107,101,110,85,109,106,100,105,103,105,115,113,89,108,109,97,117,90,112,103,108,107,112,94,98,100,114,95,104,104,105,98,97,113,109,117,91,93,99,99,98,118,111,108,95,102,106,99,94,106,98,96,106,101,87,108,95,94,90,100,94,102,109,101,92,94,99,107,112,103,97,111,101,103,97,102,107,104,96,107,117,102,112,107,100,106,112,99,97,102,103,102,95,105,110,102,103,103,117,107,96,88,101,102,104,109,98,107,104,114,101,118,99,85,89,109,95,86,99,109,112,111,109,121,113,112,108,106,113,105,110,94,103,111,100,107,95,105,118,108,106,100,108,102,105,112,88,96,100,102,106,91,78,110,109,98,101,106,101,108,108,114,101,105,96,93,105,90,100,123,104,107,116,102,98,93,109,100,92,102,96,101,99,102,100,108,112,106,107,94,98,108,105,98,113,113,106,82,115,113,106,110,99,104,103,97,100,104,108,118,110,113,103,101,95,113,99,99,97,101,112,108,109,107,135,108,105,103,94,107,106,100,103,115,115,117,104,107,102,104,112,114,94,83,100,90,109,108,121,111,112,106,105,106,109,98,95,102,101,98,119,115,96,81,105,101,99,107,109,101,99,105,133,106,106,108,104,104,108,98,106,98,110,113,108,104,98,95,104,102,112,91,103,107,97,106,107,92,98,96,103,96,98,109,98,93,98,107,103,102,101,96,91,109,101,117,121,99,95,96,100,95,94,112,103,103,109,103,110,111,101,92,95,104,89,93,113,110,107,106,101,94,108,117,99,101,107,95,97,108,112,102,98,107,131,87,117,81,109,109,104,89,112,109,103,94,94,96,100,105,116,104,88,102,103,99,113,110,103,112,106,107,115,99,108,106, +637.55774,105,100,83,108,102,108,104,114,104,103,109,96,104,102,104,99,86,116,94,102,119,90,101,101,110,98,95,115,112,114,101,107,113,111,99,95,112,104,109,91,98,106,107,100,95,98,99,104,120,104,96,122,96,107,103,88,105,91,96,94,97,106,103,97,107,117,102,109,103,102,99,106,100,105,110,99,95,95,106,99,104,94,91,109,90,102,107,110,109,109,98,96,102,104,102,112,108,98,112,104,101,98,101,107,106,92,100,109,106,91,96,97,105,102,96,100,97,109,112,89,109,103,86,112,109,99,106,92,108,104,109,99,97,104,98,91,102,106,115,103,103,108,102,116,96,97,78,95,86,88,103,112,86,89,99,102,100,100,102,92,95,102,107,103,88,97,99,97,100,98,111,109,100,100,113,95,99,93,104,99,97,108,101,111,106,101,107,93,111,119,114,98,108,109,108,114,99,110,114,105,96,106,107,95,114,112,100,101,99,117,113,103,95,102,109,109,111,113,119,97,121,105,106,99,94,107,102,105,96,110,99,106,100,102,110,109,102,110,105,105,108,84,117,124,104,98,112,111,105,96,101,103,93,115,98,113,93,121,96,100,103,114,99,96,105,94,100,101,98,104,95,98,103,104,104,99,98,111,104,92,120,106,96,116,109,111,104,98,101,107,98,108,116,110,102,101,104,105,107,107,85,103,97,105,85,105,100,106,102,109,94,99,102,106,106,105,115,97,99,89,99,112,112,87,113,92,109,102,109,103,109,99,94,97,105,103,96,105,106,105,96,107,105,101,109,95,92,102,102,100,103,105,99,113,103,110,116,104,107,106,102,90,107,97,95,96,111,104,105,101,95,109,114,102,101,97,105,95,97,96,114,113,107,96,101,108,112,106,104,94,94,95,89,98,102,96,94,118,106,99,97,95,108,106,98,99,97,93,96,98,100,102,96,94,110,80,77,107,105,90,106,98,111,98,100,95,101,98,93,114,94,111,108,113,85,108,94,114,99,100,106,117,101,105,99,100,104,87,104,106,106,98,100,109,99,97,102,113,97,95,102,97,100,116,98,95,93,109,104,101,76,112,101,112,104,108,102,115,95,105,100,94,112,128,102,91,119,99,101,101,111,94,101,91,103,104,105,101,116,101,104,108,115,108,104,74,104,109,105,103,111,100,118,109,104,105,103,99,92,94,104,99,104,117,112,100,105,103,110,112,101,111,98,101,105,108,107,105,101,110,102,100,99,100,96,108,108,105,106,105,96,138,108,102,102,103,90,100,108,94,99,109,99,99,110,103,95,97,94,97,103,96,111,110,95,107,96,102,91,92,108,97,96,109,99,103,110,108,102,105,98,100,92,114,97,102,107,102,102,95,108,105,109,94,100,99,97,104,111,98,87,108,104,105,109,101,100,86,99,104,95,108,112,107,99,95,108,94,99,110,108,97,110,112,95,103,106,95,106,105,97,108,101,113,90,102,101,91,105,117,89,106,96,104,102,103,103,92,97,104,95,102,107,113,97,102,107,90,117,99,105,98,112,108,101,93,100,107,108,94,121,111,102,99,106,92,99,109,105,103,117,105,106,112,87,103,101,103,105,91,110,102,112,98,99,103,108,97,104,96,105,100,99,108,100,104,104,98,104,104,101,104,104,99,93,114,96,103,96,105,109,114,104,101,96,107,106,103,102,102,106,105,96,100,117,109,96,108,103,103,108,105,104,104,109,89,108,98,99,106,109,101,91,109,101,105,105,115,95,110,110,85,113,109,102,98,98,112,90,102,103,108,105,98,95,114,115,98,89,116,103,97,100,109,104,104,114,104,96,113,123,109,94,96,112,119,90,106,98,93,116,101,79,112,114,97,97,109,104,99,104,106,102,100,100,108,109,103,101,100,108,103,76,84,107,99,109,102,104,104,110,94,82,101,94,102,102,99,97,87,109,100,107,100,96,98,105,100,102,102,109,105,107,106,111,111,109,96,111,92,102,107,112,96,109,100,75,104,92,111,90,88,107,105,95,102,104,103,106,104,104,100,97,90,109,103,94,107,87,98,109,110,104,102,98,96,98,105,92,112,98,101,112,95,107,101,87,87,102,100,107,110,108,108,108,84,104,101,103,109,109,109,98,117,113,94,99,105,105,92,108,99,104,101,94,96,104,112,110,103,107,95,116,109,105,98,91,115,108,97,105,100,96,112,114,94,92,97,93,88,100,104,109,99,95,102,127,100,86,92,98,112,93,100,101,99,106,86,99,112,98,97,113,91,105,108,109,109,95,95,112,94,100,102,94,102,105,104,85,101,102,94,88,102,108,107,105,92,114,96,106,105,117,101,101,95,109,98,107,107,112,85,102,108,104,96,103,110,109,107,99,109,90,121,97,107,94,110,106,114,101,103,115,110,110,98,97,101,122,104,94,96,104,97,110,102,92,108,102,87,101,110,89,105,95,109,107,103,99,104,104,96,108,108,111,113,98,101,121,119,112,94,118,94,116,119,119,93,108,101,104,90,109,110,96,105,103,110,97,100,103,111,105,103,103,109,116,103,100,105,100,107,93,104,106,110,113,126,101,98,113,102,105,107,109,103,92,108,97,115,100,96,94,106,117,109,117,103,107,104,101,110,108,96,96,97,112,106,107,103,103,95,110,91,118,109,95,110,117,101,116,101,111,98,109,108,116,102,106,105,95,124,117,113,90,102,110,107,113,84,103,108,106,122,114,102,107,107,96,99,118,109,110,96,104,113,109,114,105,104,117,116,107,100,99,116,104,109,105,98,102,105,106,109,109,101,92,107,112,96,97,110,83,113,107,96,110,105,102,120,110,108,108,108,108,90,94,93,79,98,106,105,103,103,90,107,104,110,105,111,107,102,109,110,106,105,107,106,109,100,114,98,100,100,107,105,96,109,115,102,100,108,97,102,111,117,115,107,108,110,106,108,113,102,88,101,101,104,103,102,109,109,110,105,109,111,105,106,102,114,103,103,111,94,95,98,109,107,107,116,110,101,112,100,111,96,96,99,105,107,99,100,95,104,115,109,102,105,100,104,105,99,102,101,106,97,110,107,101,111,106,106,109,110,96,113,99,113,104,117,103,112,108,110,109,100,92,100,97,99,103,103,98,111,103,104,105,102,119,104,101,115,111,121,104,102,110,102,102,113,108,94,99,125,100,105,99,106,116,121,112,101,106,116,106,115,108,103,95,105,101,108,104,108,103,112,92,112,114,116,104,103,99,104,95,99,107,108,117,114,105,104,87,102,105,110,98,103,101,117,108,93,105,98,106,96,111,105,106,95,108,104,109,113,110,111,112,99,103,97,108,103,111,96,102,116,94,101,101,89,73,105,103,101,109,108,98,121,112,108,100,103,114,116,98,103,108,103,108,101,96,111,105,101,113,110,105,92,109,99,103,100,105,109,98,97,111,109,107,109,113,101,114,109,102,114,106,110,107,110,112,84,113,110,103,91,116,110,108,99,119,108,116,108,107,95,102,87,118,101,87,100,119,109,125,108,89,108,111,104,100,102,106,69,100,110,96,101,114,101,107,115,113,115,117,118,102,108,106,100,100,110,113,104,106,95,103,112,108,104,101,109,106,103,111,111,103,113,108,103,98,110,91,113,103,100,116,106,98,121,95,101,112,93,118,105,121,98,99,102,105,116,102,111,103,105,103,100,112,100,85,114,106,94,105,112,108,95,100,104,121,111,97,104,106,104,105,107,98,97,104,96,99,109,105,111,110,104,99,109,111,99,106,108,104,99,99,109,115,100,103,108,112,100,107,100,105,108,107,103,97,108,103,92,102,106,82,120,99,117,120,111,100,95,115,112,105,104,102,98,100,113,113,118,112,126,109,101,101,104,103,102,99,105,95,97,104,117,115,108,105,106,79,119,112,99,91,89,85,99,94,115,101,90,110,117,108,103,100,94,109,103,108,104,96,93,92,106,96,101,99,106,97,101,100,112,103,108,108,101,99,97,104,108,109,101,100,107,106,106,116,115,64,110,91,104,100,109,138,106,102,95,104,104,91,107,106,98,104,99,115,108,99,99,108,109,108,107,103,104,102,102,107,110,109,110,104,120,105,104,105,110,113,101,108,117,94,118,92,107,111,106,106,117,99,115,107,102,113,109,98,105,91,107,108,109,107,109,94,100,119,87,102,101,115,106,124,108,95,109,109,96,105,110,108,116,104,102,112,110,111,105,104,113,113,112,101,105,101,105,116,107,95,106,94,116,70,115,111,113,97,127,95,103,100,112,107,109,92,95,104,102,102,106,103,100,99,91,114,100,96,104,110,96,107,109,106,99,115,112,104,99,98,100,108,109,93,111,109,101,105,96,110,102,113,97,108,102,105,95,102,112,110,107,96,105,116,109,103,109,104,102,107,100,92,106,98,108,102,106,94,92,97,105,116,91,109,109,104,82,115,119,92,108,101,109,99,104,103,113,102,102,102,132,108,92,108,100,101,96,98,92,113,104,105,112,99,106,107,113,106,93,97,98,109,104,108,98,103,97,101,99,91,116,106,105,102,101,94,117,112,108,124,101,112,115,117,96,84,101,96,116,109,101,113,100,96,95,102,99,102,97,106,106,95,99,108,96,94,100,98,115,98,109,102,103,96,105,98,102,99,108,114,110,106,110,104,113,96,108,112,96,110,107,106,88,108,94,98,102,101,104,108,110,106,99,120,106,98,100,103,103,115,99,103,107,125,114,105,95,95,114,89,91,105,96,104,115,114,97,100,101,95,109,98,97,107,106,116,103,91,97,109,119,115,102,97,92,102,102,109,104,95,99,87,97,114,113,95,102,108,96,92,100,103,98,101,104,95,112,110,101,114,103,102,119,91,90,109,97,108,100,114,113,95,76,100,108,95,95,102,93,104,92,97,76,102,113,99,78, +637.69891,96,117,100,107,93,105,106,97,96,108,87,103,103,94,97,109,84,109,117,105,104,92,97,106,105,110,99,107,99,99,100,96,109,109,94,101,98,95,91,97,92,95,104,86,109,87,98,107,103,109,93,101,106,102,92,105,115,98,110,86,102,95,104,98,117,113,113,111,114,105,93,102,111,102,108,102,98,100,107,87,108,113,79,121,101,84,110,96,90,112,120,116,98,100,97,94,110,94,107,97,111,104,98,94,90,109,104,95,110,107,105,96,103,104,96,93,97,107,112,102,98,100,111,100,104,113,108,106,111,99,113,109,100,104,111,114,110,77,100,92,107,109,98,94,86,104,115,99,101,98,105,103,96,107,106,120,96,102,113,116,114,90,106,107,112,103,118,98,103,100,106,101,95,93,113,109,105,80,99,105,114,108,108,88,99,98,95,112,123,116,111,101,111,94,122,108,113,98,104,118,76,104,112,98,105,95,100,105,114,113,89,104,98,111,118,101,97,107,100,114,109,107,110,119,100,103,110,108,97,107,102,121,106,103,105,106,109,114,102,102,97,98,99,112,100,102,105,107,103,96,99,109,103,121,99,116,97,103,99,110,91,108,104,102,94,100,128,109,112,109,101,98,107,82,113,99,103,116,104,112,101,100,103,113,108,110,101,109,99,105,92,102,106,119,113,105,109,103,111,104,97,88,104,96,80,114,117,98,109,103,96,102,105,96,98,108,112,112,103,99,110,105,98,118,103,108,99,99,106,108,106,106,102,88,98,98,104,104,112,107,101,105,108,98,110,105,106,105,123,99,98,84,118,109,119,127,114,97,104,107,97,117,109,103,101,90,99,87,97,106,102,113,104,104,101,96,106,90,116,113,107,112,104,104,106,104,103,109,98,99,113,109,104,104,98,105,99,110,102,117,72,106,84,94,102,90,102,109,105,105,106,107,99,112,95,88,101,94,107,105,105,112,100,88,96,83,104,84,82,102,106,106,106,109,100,107,107,105,100,101,117,102,101,101,101,109,101,107,95,105,99,93,98,107,108,93,103,102,101,108,101,98,101,94,107,100,101,110,96,94,107,107,108,100,99,116,99,112,108,95,104,100,109,100,99,94,105,115,99,98,102,115,113,100,97,108,103,110,104,90,99,106,95,113,103,105,97,110,117,106,118,98,107,105,97,111,107,104,93,67,105,89,120,102,105,98,105,103,106,94,103,110,111,126,113,104,89,105,104,91,100,107,101,100,99,109,111,95,99,106,94,118,105,102,90,106,94,111,102,92,99,110,106,108,101,96,105,110,105,112,101,101,98,108,101,100,98,113,102,101,115,102,97,98,118,100,112,113,116,96,108,106,107,88,113,122,98,106,111,107,107,94,102,101,106,106,97,109,120,99,108,102,109,103,111,102,100,99,108,105,101,76,108,109,110,111,106,110,114,102,96,100,95,117,88,102,100,94,97,104,100,113,104,105,93,100,109,79,109,107,106,103,101,99,99,95,106,103,110,111,97,91,97,100,108,103,106,114,117,97,102,102,109,97,96,96,83,94,116,102,108,111,98,94,101,100,120,103,92,107,112,102,94,108,101,103,90,113,96,90,96,93,107,114,103,110,108,115,97,106,106,101,96,105,98,96,92,98,91,113,106,122,110,110,98,105,114,105,112,115,105,103,87,117,107,116,111,94,109,98,108,108,106,105,112,98,103,119,94,75,109,105,96,107,104,111,109,107,113,110,102,96,92,100,98,107,106,109,94,97,101,103,98,100,102,103,108,110,99,102,110,100,103,101,102,94,109,104,100,109,100,129,113,107,106,93,105,95,89,105,99,99,106,104,108,107,125,108,95,108,114,100,105,114,81,99,118,118,116,106,94,113,100,115,108,111,109,114,104,99,105,91,108,104,100,96,102,100,101,119,121,115,100,95,112,115,102,97,104,107,93,87,94,112,87,106,121,111,99,98,109,105,106,103,112,91,113,102,107,107,108,130,100,112,103,111,109,103,107,99,116,98,99,100,117,105,96,113,98,100,109,122,99,104,97,93,99,122,107,100,92,118,100,107,95,101,97,101,97,105,116,97,109,104,105,91,104,114,106,98,104,109,109,103,104,102,87,113,97,108,106,94,109,107,77,120,100,107,101,106,124,86,114,99,108,97,106,117,109,98,103,102,114,95,106,103,100,96,103,99,106,104,105,112,111,103,86,116,103,107,92,100,100,93,128,108,108,92,102,107,93,113,101,91,91,100,93,100,99,100,105,114,96,112,102,104,100,113,107,107,96,102,99,87,99,106,96,123,94,131,103,101,98,95,105,95,102,104,99,98,106,106,111,92,117,107,95,110,99,100,89,100,115,98,108,109,94,95,109,114,107,113,99,109,107,106,135,121,115,116,117,97,100,98,101,109,109,105,107,100,111,103,93,123,100,116,101,103,120,92,93,114,91,113,104,107,107,97,97,106,106,109,106,119,106,106,108,109,108,111,106,115,117,100,110,93,104,97,108,109,105,91,102,105,109,106,112,124,116,107,100,112,97,111,112,101,98,93,110,103,115,112,107,108,105,103,95,100,106,113,94,110,105,99,103,105,94,101,123,99,100,100,88,104,103,102,107,102,111,105,101,104,116,108,99,103,116,98,105,102,104,106,117,109,110,104,101,98,103,121,100,117,95,110,97,103,94,107,120,98,104,93,102,94,101,96,120,97,100,113,111,102,116,136,102,108,100,96,98,100,121,111,108,108,105,111,115,104,100,112,96,103,94,102,102,109,101,103,107,93,110,110,93,96,106,114,102,103,104,115,103,108,97,91,123,102,112,110,99,106,107,136,101,109,98,93,91,108,105,104,99,101,110,104,107,101,129,107,99,106,110,100,106,106,100,109,108,104,91,108,115,108,106,114,103,108,117,100,87,113,107,103,107,106,105,119,116,109,106,113,106,104,120,105,99,111,124,102,108,107,109,103,104,100,112,107,105,99,103,83,111,104,110,101,105,125,100,107,115,109,103,107,104,108,103,98,101,97,106,109,93,94,98,113,114,116,97,95,105,109,101,111,108,93,108,100,103,104,95,107,107,110,108,98,86,118,102,110,95,107,110,113,104,99,112,105,106,117,96,97,103,117,99,113,100,96,97,111,106,104,89,104,108,109,109,109,103,101,101,98,111,135,112,116,108,103,102,87,112,109,114,87,83,116,103,104,94,102,116,108,102,108,112,107,102,101,99,108,108,106,103,71,93,89,102,102,104,90,106,102,109,110,101,102,107,96,106,107,108,102,100,98,112,107,104,96,91,99,113,102,102,106,104,106,117,110,105,93,109,103,114,107,96,105,106,109,107,105,102,106,99,99,103,107,117,104,100,116,102,107,102,100,108,102,102,95,110,114,102,107,109,85,115,113,101,91,106,101,100,117,98,99,111,93,101,108,103,100,106,108,93,91,96,105,91,91,116,114,86,106,104,104,115,102,109,102,108,100,105,108,108,98,111,109,115,121,99,110,102,104,124,99,107,104,114,102,124,115,111,99,98,109,95,104,115,97,107,110,103,109,102,114,99,105,117,102,90,109,107,113,113,98,91,107,104,117,107,99,100,106,98,90,104,104,113,107,115,95,106,101,110,99,110,123,94,104,117,109,113,77,92,98,110,84,88,104,109,106,106,110,99,105,107,109,99,93,98,117,97,112,107,109,107,97,98,101,113,108,97,112,87,106,104,107,107,116,105,106,74,115,101,103,111,118,117,91,97,91,94,109,95,99,109,106,99,97,113,104,109,90,95,101,107,113,119,107,111,115,111,102,95,106,107,115,110,106,116,101,124,115,114,104,113,106,114,98,108,93,101,109,93,117,103,111,107,80,114,103,105,106,140,113,107,108,104,99,109,110,105,101,90,114,104,112,97,101,107,106,100,104,91,106,104,103,106,101,109,99,98,95,113,92,107,83,102,121,102,94,101,100,107,103,113,111,103,102,110,107,101,96,116,103,113,96,97,104,102,110,105,111,107,95,105,93,107,71,94,104,106,102,102,109,116,114,84,99,105,109,117,104,104,103,103,99,94,109,96,105,109,103,98,111,109,101,88,100,99,111,91,104,120,113,98,117,99,125,104,95,115,109,100,101,94,100,91,108,115,106,100,107,104,105,100,104,99,116,102,113,99,104,100,95,106,97,111,107,115,113,99,96,109,107,113,106,102,101,108,108,121,101,116,116,106,98,99,106,106,114,94,103,112,102,114,104,88,108,109,113,100,110,94,103,101,113,103,98,101,110,98,79,105,98,106,111,105,96,111,102,90,96,88,109,100,105,104,100,96,102,103,103,104,100,110,110,100,116,110,114,103,106,106,103,113,90,102,113,126,106,105,98,104,109,106,113,109,115,102,99,110,96,99,110,116,113,106,113,103,104,109,106,105,84,111,100,96,104,87,102,104,110,109,105,96,99,98,97,102,112,120,101,104,99,92,94,106,107,109,100,111,104,109,111,96,131,115,115,95,98,112,93,87,101,95,107,103,105,104,99,108,112,107,106,91,107,105,119,100,121,104,99,107,102,99,105,94,92,115,112,119,97,120,107,115,106,104,101,106,106,99,108,102,96,108,106,106,114,108,101,105,108,116,102,114,105,118,106,87,107,81,115,112,102,111,102,94,99,113,95,90,106,91,98,98,107,98,91,109,102,122,118,98,92,104,112,107,92,100,105,109,95,109,112,108,117,107,104,111,102,102,96,93,133,105,96,103,100,104,111,98,103,95,109,102,117,102,106,90,107,105,99,98,102,98,95,112,105,109,113,107,102,110,108,108,104,75,102,104,108,94,103,117,100,89,110,110,96,102,104,103,106,123,112,98,104,99,100,111,104,105,96,103,108,102,112,108,92,114,92,108,119,113,94,103,99,94,99,108,111,109,84, +637.84009,112,110,106,101,98,119,100,90,100,102,99,120,108,109,95,115,95,103,121,107,89,99,108,106,99,96,110,114,98,123,101,118,113,103,100,94,129,108,111,103,79,95,93,115,113,102,103,114,104,92,90,98,104,106,101,107,95,95,107,97,99,107,123,96,113,106,99,108,99,103,102,108,105,110,85,97,105,109,110,112,111,104,112,91,99,103,104,103,106,94,97,104,104,108,104,110,99,109,119,90,77,100,101,88,104,105,109,117,105,102,108,84,69,95,111,108,111,109,106,106,115,103,109,106,126,104,108,106,122,116,99,93,92,116,108,111,112,105,94,106,107,137,97,106,103,96,112,118,105,102,101,101,109,103,95,103,104,97,80,94,73,98,109,112,107,103,103,102,100,99,99,95,88,112,105,101,86,98,107,113,110,105,96,104,101,105,109,89,98,101,95,117,116,102,110,103,96,111,92,107,100,110,97,116,105,113,107,107,123,111,96,107,104,109,100,100,96,80,103,113,105,102,113,110,111,126,99,97,103,110,105,105,118,114,103,103,99,110,108,117,99,113,103,109,126,109,107,95,99,109,97,109,119,121,109,101,88,101,96,109,99,107,106,99,110,114,101,89,113,105,103,95,100,99,110,105,114,103,98,87,104,105,114,102,113,99,96,110,98,105,111,110,109,114,113,109,102,99,98,101,99,99,109,119,102,102,103,103,97,106,97,113,109,112,105,106,103,113,117,104,91,100,107,106,99,110,105,99,113,106,104,106,104,117,100,111,107,108,106,93,94,97,85,111,107,112,108,102,113,113,118,97,111,103,114,101,106,100,96,109,99,98,96,92,108,102,105,114,99,100,103,115,104,113,94,92,104,111,102,115,100,121,119,102,106,113,96,100,103,96,107,94,108,104,104,101,103,98,101,106,113,99,107,94,96,87,106,93,91,96,104,104,113,109,97,106,105,96,103,102,101,112,95,98,112,89,105,112,101,109,111,124,102,99,108,100,90,109,99,105,120,104,96,108,104,112,104,109,109,112,105,99,110,95,107,102,111,100,116,103,117,99,107,123,104,105,111,100,112,98,107,114,104,109,108,105,104,119,100,107,105,109,117,102,96,105,102,108,92,98,107,114,106,95,94,107,99,108,106,100,107,105,103,96,102,92,93,104,88,100,114,68,104,94,86,105,102,85,96,108,101,103,82,98,98,107,103,93,98,98,101,107,114,105,109,106,93,103,106,96,90,107,91,99,114,106,104,125,84,109,109,99,97,96,86,89,110,109,103,97,104,106,116,108,100,99,98,110,106,107,109,104,110,111,80,113,107,98,101,101,106,102,106,105,106,121,115,99,105,97,104,100,116,119,104,106,99,107,109,124,105,98,101,95,110,102,110,99,110,117,105,96,102,123,106,91,114,100,105,88,103,99,99,103,105,104,100,104,104,113,102,98,103,113,110,110,92,90,112,99,106,98,110,108,102,96,96,105,122,105,116,111,103,106,104,104,109,90,98,104,105,106,92,113,111,96,99,99,102,104,109,109,91,98,114,108,100,104,104,103,109,113,106,101,105,108,96,108,102,113,105,91,82,118,102,96,101,105,109,95,107,103,103,100,114,110,96,103,78,107,105,115,104,108,105,107,103,111,113,102,100,94,110,106,96,109,103,103,120,116,112,103,109,97,94,102,116,101,113,109,104,103,108,106,108,103,111,96,106,95,112,93,106,116,110,97,99,100,116,115,97,104,100,105,107,102,94,104,102,105,121,100,113,95,101,108,105,102,100,86,105,108,111,115,109,120,98,116,102,102,88,106,111,93,106,96,110,103,106,101,114,115,104,106,107,99,112,114,91,101,110,100,104,108,113,106,108,99,131,90,116,114,104,112,105,106,103,98,103,96,108,99,108,111,100,116,108,97,89,112,98,111,102,111,100,90,108,106,97,110,90,100,114,107,102,99,102,108,106,102,102,100,103,98,109,95,91,114,103,93,103,99,103,103,99,104,107,105,106,111,112,100,103,105,100,108,106,117,96,108,120,108,101,97,114,105,93,105,108,106,67,109,112,100,105,99,106,108,99,96,107,112,98,110,95,95,104,109,100,110,105,108,117,82,91,103,104,113,93,114,103,107,111,110,101,98,113,103,109,120,103,110,106,117,101,97,118,100,108,108,115,101,110,113,97,95,103,117,106,107,104,112,94,97,109,101,102,104,81,104,113,105,86,101,101,103,99,93,96,103,104,103,103,108,103,104,77,94,102,99,96,103,115,110,105,109,104,105,109,104,112,107,97,102,111,104,105,115,108,97,104,99,90,100,99,101,107,105,100,102,107,109,97,111,109,101,96,100,94,100,120,104,112,118,119,116,101,102,98,112,111,110,100,98,105,102,114,105,116,108,121,112,96,104,113,107,98,105,104,96,88,115,96,134,90,91,94,106,97,93,111,94,102,108,107,116,94,99,83,104,113,91,87,98,115,109,98,101,113,110,110,113,106,101,107,104,103,99,113,109,110,99,101,112,101,117,104,104,101,107,109,111,102,111,102,95,100,116,104,111,110,98,103,109,109,103,105,99,101,97,107,103,94,99,104,112,106,112,108,104,109,93,115,102,112,105,113,92,110,93,110,92,116,106,109,95,109,101,107,113,112,94,104,109,116,104,114,93,102,93,103,96,109,106,105,99,94,99,108,98,103,125,97,108,91,100,116,107,102,103,100,108,117,108,105,120,112,107,102,104,88,106,99,104,71,106,103,106,105,99,129,112,106,107,87,96,114,109,111,106,109,103,103,111,85,95,92,128,99,94,101,104,97,105,103,106,107,105,111,107,113,100,106,96,88,101,105,122,87,105,105,113,107,91,108,100,99,102,97,119,104,88,100,83,107,107,108,110,111,110,107,111,107,115,100,106,108,99,106,123,109,109,117,105,107,114,108,126,99,101,77,109,105,107,96,122,104,105,102,115,98,95,99,102,116,107,95,120,86,106,101,117,101,97,108,96,105,109,99,110,111,108,96,101,98,100,93,110,117,121,106,104,98,103,115,106,106,96,95,94,102,99,112,109,103,104,111,102,114,106,103,115,102,110,105,99,106,106,107,104,108,95,135,96,102,94,113,107,102,107,86,90,97,108,112,99,106,111,106,110,109,91,102,100,99,101,103,108,105,108,97,105,98,81,106,115,118,110,105,106,119,105,101,102,97,108,108,111,111,101,99,102,98,110,117,103,105,110,109,115,120,106,91,100,112,104,111,85,108,103,110,103,112,104,124,102,102,94,103,108,108,102,126,96,91,102,98,103,101,106,104,101,107,95,105,100,112,109,103,107,102,104,85,108,106,98,93,90,100,102,92,109,105,100,96,108,97,112,111,94,104,98,108,105,88,101,104,112,114,105,112,117,104,107,111,102,107,103,100,111,98,97,112,104,103,128,103,106,100,102,107,90,100,113,100,113,96,110,102,106,97,105,98,105,87,108,112,96,100,100,111,103,101,113,83,110,96,108,109,97,96,105,88,109,118,109,108,101,105,92,89,98,89,111,95,112,108,121,95,105,97,98,98,100,100,102,108,101,110,109,103,82,118,104,109,106,103,98,105,103,107,115,95,104,99,107,108,105,113,110,87,103,101,97,95,103,116,98,110,103,99,85,116,97,105,96,107,96,107,115,90,104,120,117,115,106,99,103,105,105,109,108,96,104,90,93,106,109,96,94,96,95,108,115,120,93,110,108,104,109,99,111,121,81,111,101,108,113,111,107,99,99,92,95,105,112,107,103,104,112,107,97,105,90,112,98,105,95,104,98,97,109,96,122,104,91,101,104,100,102,102,118,115,90,96,106,106,87,104,98,103,97,98,102,105,109,107,102,100,111,107,119,97,110,100,108,95,110,98,96,102,103,104,102,116,101,107,103,107,111,95,109,101,119,115,112,99,115,103,111,109,101,96,109,96,100,105,103,105,100,101,105,92,113,96,106,100,102,98,102,135,108,110,105,112,108,104,98,110,101,113,107,108,106,106,96,113,99,108,108,98,98,104,102,108,121,106,98,79,106,103,88,98,107,95,109,102,95,110,104,95,110,107,96,110,113,88,102,107,106,115,112,106,115,113,107,102,100,101,99,109,103,102,109,106,109,96,110,105,113,99,108,104,109,95,97,107,106,123,110,99,95,94,106,105,115,104,101,99,113,104,108,95,105,110,101,104,112,128,112,100,110,109,100,103,99,108,100,97,98,120,105,103,110,108,101,106,103,103,106,101,111,97,91,105,98,93,102,108,104,108,100,124,102,104,105,98,96,109,98,102,103,96,104,117,107,110,103,105,114,93,113,104,110,96,108,75,115,101,112,106,99,106,104,111,114,101,109,100,102,103,100,93,102,110,103,110,107,106,111,103,113,102,100,110,97,95,112,101,94,110,107,91,114,98,116,100,104,122,103,104,104,107,106,103,107,95,108,120,108,110,96,106,100,104,96,93,101,101,105,102,92,111,106,116,96,86,110,105,105,98,105,94,119,109,103,105,96,101,104,90,117,100,99,106,107,112,107,104,113,97,98,106,120,105,107,102,99,98,99,92,111,119,99,106,110,111,105,101,99,93,101,113,103,100,111,116,98,104,106,90,102,103,117,111,100,95,75,117,113,72,108,105,99,116,104,108,99,109,106,103,115,111,107,104,97,100,112,114,126,101,95,112,92,100,109,105,110,104,94,104,109,95,97,86,99,102,96,86,90,95,100,105,117,102,106,109,113,76,103,111,87,102,98,104,99,100,110,102,109,113,89,104,104,67,111,109,105,102,110,100,109,112,102,95,90,89,112,96,96,117,101,79,96,115,107,109,108,99,107,113,105,127,116,94,105,94,119,100,99,124,108,106,88,118,100,90,106,116,103,102,100,103,88,104,109,105,113,97,107, +637.9812,91,105,97,113,92,99,107,89,83,111,105,123,99,99,103,120,102,116,117,96,94,90,101,98,72,106,100,111,112,99,106,99,91,125,114,108,103,96,108,103,94,100,102,114,116,117,99,112,92,116,113,112,94,102,98,104,100,97,106,91,103,97,93,102,104,121,100,95,97,109,109,98,96,90,98,106,91,98,104,119,110,108,103,116,103,97,90,102,99,109,106,115,98,95,103,98,101,107,104,105,97,101,109,106,98,115,90,104,109,108,112,115,101,103,117,105,107,109,95,106,105,102,93,97,115,121,103,106,96,116,99,91,89,109,108,101,98,107,101,95,101,95,82,114,91,91,104,103,91,114,96,101,98,95,109,102,105,109,112,97,102,82,117,91,98,104,113,106,96,109,105,103,100,112,96,96,105,95,112,103,102,121,99,114,113,105,115,102,87,82,97,96,117,118,106,98,96,97,99,113,97,98,114,106,107,100,110,100,105,112,111,98,107,100,114,100,97,71,102,101,104,117,99,88,98,112,103,118,103,112,103,120,118,99,107,101,99,122,102,86,100,107,109,109,98,99,103,115,104,121,108,103,97,100,121,98,97,108,64,111,100,102,96,107,98,103,103,95,107,100,112,97,99,105,109,101,99,102,117,98,100,106,109,113,107,111,104,108,99,111,110,95,101,108,107,113,100,96,95,94,96,102,106,106,77,106,107,99,100,111,98,121,104,105,107,106,106,110,107,99,95,101,103,114,124,91,105,97,102,110,102,98,102,110,106,103,106,105,91,113,97,116,102,101,113,121,114,121,105,112,106,94,113,100,111,108,114,108,103,123,104,109,105,103,101,94,97,99,100,106,105,108,101,111,107,102,106,103,119,100,99,110,110,105,102,118,92,100,98,100,112,89,101,101,101,99,91,98,103,104,94,106,106,95,102,95,102,103,107,104,102,91,89,106,112,103,99,106,105,113,103,87,94,97,93,92,106,97,99,111,97,82,107,87,102,96,92,92,102,108,101,94,104,100,116,109,92,100,112,100,96,103,98,103,114,113,101,110,108,94,100,103,103,119,99,118,104,107,109,110,93,116,103,102,95,110,100,114,98,121,98,107,103,101,103,103,100,112,112,90,101,108,113,102,97,90,97,110,103,98,112,97,111,105,95,104,99,98,103,118,110,98,95,116,105,105,119,98,100,112,93,99,89,106,124,103,104,107,98,98,96,99,104,103,95,103,99,103,105,103,109,105,92,102,108,105,107,104,107,101,113,101,108,98,98,99,94,96,105,102,107,106,106,109,101,110,97,114,108,98,83,76,102,102,105,98,103,105,110,100,95,102,85,103,103,110,118,104,98,94,125,101,92,90,112,110,95,113,109,104,100,110,107,103,102,102,97,95,102,96,102,102,104,100,104,99,99,95,94,105,116,126,109,107,97,87,98,110,121,103,97,95,104,97,99,110,103,111,105,102,105,104,106,105,97,91,93,108,104,101,98,109,95,96,107,112,113,109,106,99,95,115,104,103,94,104,101,99,113,100,90,117,124,113,113,107,91,102,107,97,110,99,106,107,100,105,95,104,113,108,94,107,98,119,101,104,103,100,114,95,114,87,104,98,108,113,107,101,104,113,102,111,101,100,97,98,90,103,97,109,110,98,103,114,114,109,109,107,102,113,112,108,100,105,104,109,112,91,95,99,99,86,103,116,105,103,104,99,98,100,108,95,99,95,101,109,108,112,108,103,107,103,107,94,101,95,94,104,114,99,115,104,99,94,113,101,99,98,75,74,101,103,108,108,99,106,84,102,114,97,103,109,104,109,106,104,104,100,109,111,92,105,103,105,113,119,100,109,108,102,110,101,109,106,105,107,110,93,115,114,106,105,107,109,94,108,107,98,111,108,112,85,115,94,97,117,102,106,115,115,96,97,107,111,105,113,98,104,121,91,100,115,106,106,95,101,107,108,96,86,101,132,106,108,106,104,108,98,97,104,94,103,94,106,101,96,107,100,103,101,103,91,105,102,92,101,107,104,102,103,109,102,100,114,100,104,105,105,108,101,101,105,93,99,100,112,100,112,99,113,110,117,112,102,108,121,111,105,106,98,103,96,104,95,102,99,115,96,103,95,95,103,111,111,103,103,95,101,107,106,98,110,110,116,106,104,115,100,113,102,109,95,98,116,111,93,110,114,88,117,122,101,101,83,108,105,94,95,92,111,102,110,109,92,94,102,102,105,105,93,97,95,99,100,101,99,111,97,112,86,109,101,106,97,97,98,111,100,103,100,111,103,96,115,104,102,114,112,98,115,112,108,102,112,108,89,101,98,96,98,111,97,109,90,96,100,107,110,100,105,109,105,73,106,114,100,106,128,119,95,97,116,111,112,80,102,112,108,113,103,100,107,105,118,104,96,104,104,112,99,96,101,92,105,95,107,103,92,94,94,84,110,100,92,98,123,100,108,95,106,107,88,106,94,102,99,87,97,106,109,99,112,104,98,99,96,102,103,102,108,111,91,109,100,100,114,100,111,114,108,118,106,111,93,106,104,112,111,102,97,97,103,97,87,101,107,96,102,105,113,101,107,105,101,116,93,91,104,99,95,133,106,112,102,120,109,112,101,129,108,107,99,104,105,99,111,107,101,113,102,102,90,87,109,106,105,104,108,117,106,94,75,96,103,100,100,98,108,103,105,94,108,110,102,99,113,114,91,110,90,97,98,104,120,97,103,113,102,99,103,106,101,106,103,115,106,112,102,98,95,106,105,94,105,106,115,105,108,101,103,115,103,105,110,106,107,97,99,95,106,119,106,107,85,99,106,110,115,100,94,109,106,111,112,101,111,104,106,112,103,104,112,106,84,106,96,90,94,100,106,98,106,102,103,106,101,103,103,103,99,128,87,111,103,100,95,102,98,106,114,111,108,104,105,101,113,100,108,106,108,114,84,95,108,111,120,111,106,96,104,104,97,107,113,107,104,107,100,96,103,109,114,103,97,97,110,106,112,110,101,111,109,105,106,101,105,101,100,113,104,102,102,102,109,103,107,100,107,97,112,96,102,99,91,117,98,111,117,138,100,108,113,103,102,97,107,110,104,116,108,106,113,106,115,107,105,103,113,94,91,111,113,105,97,113,118,104,101,106,102,99,95,95,101,119,109,96,107,104,102,94,102,96,104,99,107,102,102,114,101,112,100,96,108,115,102,110,106,103,121,105,99,103,97,102,87,97,111,106,98,96,110,99,102,102,95,117,113,107,103,123,111,108,114,111,99,102,100,95,99,124,105,95,104,102,101,84,108,113,110,109,109,106,103,108,106,115,107,108,96,103,108,113,116,106,100,102,103,113,111,91,104,112,105,101,106,110,111,109,101,103,105,92,95,103,104,110,111,126,111,101,102,124,97,126,103,114,103,101,101,98,103,105,115,115,106,116,99,94,95,103,99,106,105,96,104,98,103,107,98,107,103,100,114,100,106,107,114,111,95,114,97,112,113,109,121,112,103,109,94,105,109,112,103,110,121,100,110,112,104,106,94,99,114,98,101,105,104,113,113,95,107,114,100,105,106,94,104,102,121,101,93,103,109,98,110,100,108,98,96,102,98,106,117,100,123,113,88,106,99,102,104,99,98,102,110,102,115,100,114,109,107,111,105,104,90,109,90,105,106,111,97,121,116,88,99,109,105,112,121,92,115,104,111,101,108,108,84,100,98,100,105,94,108,108,108,119,117,111,102,97,99,109,110,82,103,116,111,113,96,105,88,131,103,104,111,104,102,119,106,116,100,111,113,124,104,93,102,108,106,106,101,89,106,129,102,98,111,105,105,103,103,109,106,111,122,121,100,104,105,100,97,116,112,108,111,99,100,101,103,109,106,82,107,95,96,112,99,93,103,87,115,103,103,100,92,96,95,107,102,118,94,118,107,102,104,104,108,107,107,109,101,108,119,98,102,105,105,103,103,112,104,94,98,93,113,102,104,105,94,111,105,104,110,104,129,107,113,104,112,104,112,104,119,112,101,101,98,106,106,110,115,108,99,109,108,108,101,113,99,102,93,97,95,102,115,102,96,104,97,113,113,113,105,108,110,104,101,104,102,110,104,104,109,107,109,114,104,102,100,106,115,106,113,107,114,105,99,102,93,103,100,105,105,112,99,102,105,107,109,106,107,102,96,105,108,108,125,112,98,109,104,112,103,106,104,102,98,113,123,106,112,103,113,112,99,102,98,97,101,106,91,104,98,109,107,101,125,98,103,99,104,108,109,100,109,103,121,99,98,93,98,110,101,104,112,108,90,105,101,109,98,114,127,95,106,101,110,100,112,106,113,117,106,99,108,98,100,100,102,107,107,102,94,103,93,104,109,101,95,98,97,134,108,104,112,102,101,103,114,103,115,100,120,91,112,122,99,93,102,96,97,108,101,101,98,99,102,107,100,88,109,94,93,98,95,80,92,97,108,107,112,101,97,91,100,96,98,101,99,92,105,94,111,113,105,104,102,94,141,99,107,111,120,104,104,117,107,90,84,97,95,107,73,104,98,109,107,101,123,113,105,99,108,97,102,121,106,118,116,111,111,112,118,95,104,98,102,96,102,95,98,107,102,113,100,111,88,104,102,100,99,99,124,96,94,103,101,91,105,102,86,116,101,110,116,73,96,98,103,95,94,116,109,106,107,115,99,108,92,102,105,113,107,112,102,103,108,109,105,105,106,113,98,107,105,108,99,109,101,107,106,101,116,105,87,113,104,101,111,96,90,99,108,102,84,102,98,100,96,101,111,105,111,88,93,101,105,85,106,92,107,95,103,95,113,109,121,108,100,111,98,96,110,106,106,103,110,93,117,98,114,105,117,108,125,119,103,107,98,100,98,87,95,102,112,107,77,107,85,91,105,96,96,102,100,95,94,108,99, +638.12238,94,103,109,100,95,109,94,94,96,102,107,118,136,95,108,94,114,103,94,91,93,109,87,109,103,113,102,97,105,105,96,97,116,91,112,101,105,98,107,131,108,103,129,98,110,122,105,107,108,102,98,98,110,92,107,93,101,96,115,91,98,106,98,93,108,108,100,106,96,98,90,100,104,104,104,102,82,103,88,112,109,96,109,98,103,106,108,107,94,96,103,109,110,99,99,110,97,111,96,101,103,98,95,106,84,100,106,112,113,108,99,101,98,106,98,103,110,122,105,115,96,102,100,110,104,117,107,97,112,104,93,109,108,98,108,126,100,104,96,92,99,101,98,112,100,98,101,110,89,100,106,97,108,97,100,94,75,95,104,100,112,113,104,103,113,103,100,103,96,102,110,107,97,102,101,107,115,96,104,111,116,99,101,102,106,103,94,107,101,90,103,96,102,107,107,104,104,99,104,100,101,88,102,99,112,100,91,100,122,112,102,110,105,112,117,97,110,111,105,96,115,106,101,102,97,101,116,89,104,97,104,95,110,99,100,108,87,77,97,109,107,119,109,114,108,98,104,111,102,102,90,104,107,100,105,100,94,98,103,95,92,105,109,96,98,122,96,100,100,97,107,102,106,107,113,100,97,106,107,90,90,113,95,104,99,90,128,91,104,100,101,67,105,108,106,115,97,95,100,106,112,106,107,110,103,97,99,105,106,95,95,107,115,114,100,111,108,111,105,103,95,105,104,102,105,98,103,107,108,98,101,96,94,110,87,102,104,95,101,107,104,100,100,83,118,97,114,113,100,126,96,107,107,96,118,104,100,109,113,111,95,97,105,99,109,117,98,121,95,112,121,108,109,106,115,94,101,103,110,117,106,109,102,115,97,92,100,98,116,107,108,109,97,102,102,99,113,102,103,121,103,102,104,94,117,98,91,110,84,96,92,90,110,100,128,103,104,91,105,99,103,100,103,99,95,102,103,106,104,110,105,112,99,112,118,105,101,105,96,102,108,101,113,103,103,102,97,92,100,105,104,104,109,110,109,103,100,108,113,110,110,100,107,105,108,105,105,112,104,99,106,105,109,88,109,64,96,127,112,106,95,106,120,84,106,107,97,97,94,108,108,111,108,106,95,101,106,105,124,104,113,100,102,105,103,101,96,108,102,99,104,106,106,92,99,100,109,107,91,109,101,110,103,104,97,113,102,98,109,94,106,108,103,108,92,101,104,100,107,106,113,104,96,109,101,108,102,101,99,108,101,97,100,97,132,103,105,97,109,105,109,95,106,109,68,99,110,107,97,100,93,95,107,104,95,100,94,97,103,91,107,96,92,103,111,130,117,108,110,73,125,102,71,99,109,104,104,108,116,108,95,104,100,100,113,110,100,95,98,110,97,91,109,106,107,104,110,105,96,100,107,114,94,121,96,111,98,104,105,104,112,112,96,106,103,108,83,113,97,103,107,106,98,98,132,96,107,94,101,114,99,113,109,117,116,99,106,110,113,111,107,101,105,101,110,109,110,119,113,98,80,105,107,113,101,108,93,113,95,116,101,113,93,103,87,98,105,97,91,111,102,108,95,103,102,103,97,103,115,104,104,97,103,103,95,118,95,121,98,104,83,112,99,99,91,91,102,105,106,92,119,95,91,100,102,98,93,107,114,122,95,100,106,99,100,106,109,101,104,114,111,96,94,100,95,108,117,100,82,109,108,115,108,121,113,92,101,99,106,106,115,103,94,104,87,102,101,104,108,98,100,94,101,106,92,102,90,99,108,114,104,103,115,102,107,112,114,102,96,102,112,111,100,112,114,101,110,102,97,103,110,119,106,73,98,103,104,112,91,109,116,102,100,98,122,95,116,102,103,109,106,109,100,91,108,98,101,102,107,105,103,113,100,103,111,106,103,106,116,109,104,114,107,101,109,99,102,94,120,101,105,103,98,100,86,101,114,101,86,107,101,105,102,107,101,106,94,111,109,103,118,101,117,108,96,109,85,107,99,101,104,114,101,95,103,98,75,112,98,112,99,117,104,83,99,98,113,107,96,95,98,113,106,117,101,87,82,104,92,103,104,99,101,98,101,104,88,108,102,100,103,107,101,107,114,105,104,105,114,101,94,107,110,96,89,101,114,119,105,95,102,101,117,105,95,117,111,114,108,93,113,97,116,109,110,105,126,103,101,129,117,89,108,101,100,101,95,110,111,95,97,98,108,92,100,110,103,106,90,96,103,102,109,132,112,96,117,116,105,100,111,105,110,95,102,96,101,102,98,110,96,105,105,103,120,94,105,107,88,116,110,103,96,123,104,96,99,110,106,109,108,112,105,97,100,106,99,86,118,106,100,102,103,109,111,108,94,110,107,117,101,94,103,108,102,113,107,125,118,93,120,99,108,103,111,103,114,102,108,99,92,108,110,107,93,101,93,109,104,110,97,115,100,111,114,88,119,109,87,66,86,109,105,105,97,117,99,102,111,73,101,110,113,98,98,96,109,105,111,100,101,93,96,114,87,103,105,95,98,103,103,121,113,105,107,97,97,110,103,113,112,96,92,99,106,110,101,110,105,101,116,108,108,103,107,112,109,102,110,96,97,105,96,98,100,99,109,103,106,91,113,106,113,107,98,104,110,102,108,96,115,98,113,87,100,103,97,107,127,89,110,108,114,107,110,94,102,97,99,113,102,106,105,101,93,103,106,97,98,110,108,99,74,111,104,109,94,96,112,105,112,116,103,101,106,119,111,96,98,96,108,107,95,100,111,107,106,103,99,92,104,113,105,94,87,117,92,105,104,99,104,99,117,108,96,124,102,99,111,102,101,101,110,103,97,103,102,112,110,99,111,104,103,106,92,99,103,101,107,105,116,110,106,106,103,108,102,119,96,107,102,103,99,112,103,104,109,109,101,109,100,102,78,97,108,117,110,97,103,121,105,107,96,112,90,102,93,104,106,108,88,80,104,104,93,107,104,103,115,99,91,116,113,64,103,109,101,102,70,109,101,104,105,123,103,108,103,99,84,101,102,96,100,106,113,108,102,98,98,102,103,102,105,86,97,113,87,101,103,107,107,105,98,109,98,102,111,99,100,105,108,113,117,105,108,97,103,105,101,100,110,100,97,109,94,104,106,100,109,103,104,84,102,105,76,102,109,110,101,98,100,89,96,68,117,106,107,95,106,109,114,103,92,113,102,107,110,100,102,97,103,104,99,109,114,83,98,113,111,111,112,105,106,98,98,91,124,95,105,109,110,101,105,85,103,118,111,109,100,101,104,100,96,108,99,99,102,104,102,112,106,109,119,114,117,109,109,111,97,93,100,105,103,104,100,100,100,107,101,98,103,102,107,106,108,103,103,108,111,109,94,109,97,109,114,101,97,105,102,101,120,110,100,108,99,100,107,103,114,107,103,109,111,107,105,102,91,107,92,111,104,107,118,88,104,98,100,97,103,90,110,107,114,77,101,105,104,104,113,108,102,104,88,91,111,106,107,97,120,100,105,105,104,96,112,110,110,104,103,95,116,100,108,103,103,99,106,102,111,98,108,106,107,105,117,104,102,99,103,124,116,98,116,105,104,99,113,95,112,90,95,96,102,111,109,89,113,112,104,105,109,111,101,110,102,101,102,105,95,104,111,105,107,106,114,109,103,107,101,119,115,90,103,127,97,102,106,106,120,96,100,111,104,112,95,99,104,107,129,105,98,102,108,113,105,99,102,109,94,109,101,106,101,94,116,108,102,96,112,108,111,107,104,110,113,116,105,117,106,114,109,94,104,101,102,111,103,101,112,108,115,117,94,124,106,101,97,114,109,98,105,102,97,103,93,119,105,98,104,110,85,102,112,100,96,109,95,99,108,92,106,100,99,110,98,120,98,93,112,118,111,93,106,97,108,100,108,96,117,98,109,94,106,104,102,108,106,95,109,104,103,101,103,103,92,107,121,97,91,104,113,107,98,109,109,93,98,99,104,112,108,104,113,98,108,107,97,100,108,117,110,107,95,98,120,92,98,92,108,116,89,100,98,116,100,106,105,106,107,110,102,105,107,95,103,103,104,110,98,90,101,86,117,98,96,105,117,103,105,100,101,113,104,102,113,108,108,102,106,113,104,92,105,109,94,109,104,102,112,107,90,96,108,113,104,101,110,107,107,113,107,105,91,103,110,110,101,106,113,106,98,112,108,112,99,109,103,112,107,110,99,110,113,108,96,97,110,104,102,94,110,98,100,108,103,91,106,111,117,98,72,102,113,102,99,100,96,96,96,101,107,98,105,107,99,101,91,92,91,110,102,102,100,94,111,109,104,91,81,105,110,100,112,100,125,106,105,120,102,106,105,105,110,83,102,109,108,105,104,105,97,99,106,117,100,103,100,106,105,89,95,105,102,105,88,106,110,103,107,102,113,102,96,99,95,94,109,114,108,95,111,113,104,100,106,107,104,123,93,99,95,102,99,103,96,91,105,98,107,113,106,113,72,98,103,94,94,105,104,112,101,104,93,113,105,113,109,105,104,107,96,101,107,106,98,103,100,132,105,102,107,103,84,98,105,96,96,105,106,93,106,119,98,105,102,94,111,107,94,106,112,99,101,100,126,99,97,103,96,95,106,97,95,107,100,112,113,98,105,77,110,116,115,107,118,102,104,114,99,100,104,103,109,109,81,103,113,98,97,107,99,100,94,105,108,95,97,101,91,107,102,96,105,142,111,91,101,116,114,105,102,101,91,95,111,92,109,110,118,109,109,106,104,106,100,94,102,87,107,112,105,80,93,111,107,88,98,109,100,103,104,102,100,104,106,111,92,120,96,92,109,107,99,106,89,90,98,99,113,97,101,90,113,107,96,112,90,105,119,86,107,87,129,97,107,93,91,98,110,92,100,95,102,99,112,77,120,116,106,70, +638.26355,110,99,89,99,104,123,105,113,112,117,100,90,98,107,97,99,93,112,110,103,106,101,106,110,100,115,104,105,107,97,103,88,105,99,108,101,99,104,104,95,104,99,100,101,100,98,108,105,109,105,98,101,111,115,96,65,98,85,118,108,97,120,113,95,114,98,105,95,108,87,100,101,110,115,108,109,105,113,100,113,108,100,102,99,105,98,121,101,95,96,107,102,100,108,96,105,108,98,98,138,94,112,110,98,100,101,99,108,99,89,112,107,93,98,114,105,96,110,105,101,105,102,107,92,91,101,105,101,102,109,89,107,102,87,96,100,104,101,101,103,112,113,104,108,99,105,109,98,102,98,104,97,109,102,80,102,98,106,103,118,105,97,101,94,96,105,116,92,102,93,123,102,104,97,104,96,110,88,96,119,103,95,100,109,109,113,104,98,104,79,104,105,106,87,97,108,100,99,107,117,104,109,100,105,117,111,118,108,102,98,101,103,98,102,96,109,106,117,100,97,103,94,104,96,98,103,102,113,105,96,102,105,105,110,114,121,101,100,107,105,93,105,98,120,81,101,105,101,128,109,106,102,103,101,97,113,105,125,99,107,106,96,97,98,94,113,105,100,111,105,104,106,111,104,112,90,97,99,100,100,106,100,102,112,105,96,106,90,100,106,88,99,95,114,118,95,107,106,94,107,101,113,103,104,104,110,112,107,100,101,94,94,103,110,103,105,106,117,106,111,99,98,100,106,105,102,104,105,97,102,101,104,105,106,109,97,112,106,96,100,104,105,105,100,107,104,101,108,98,101,99,108,108,106,96,99,107,111,106,121,98,109,109,89,99,90,101,121,106,117,102,106,101,95,114,108,109,110,93,117,104,108,100,112,103,99,104,105,91,95,105,73,101,111,104,94,107,79,112,109,98,97,92,91,100,101,109,91,104,99,86,91,92,113,92,99,89,98,94,105,101,91,93,108,114,94,106,95,99,101,90,108,100,98,92,101,94,118,97,106,98,118,93,114,102,106,106,91,110,100,99,102,104,104,108,104,98,109,109,103,102,100,112,99,105,112,97,97,109,111,109,103,117,94,108,99,100,104,98,102,96,104,105,102,103,91,109,104,98,109,109,92,96,97,98,98,109,106,115,90,111,104,104,103,113,104,96,103,116,102,108,110,99,95,103,102,109,106,99,95,103,96,111,99,107,103,108,113,100,106,113,98,117,102,101,111,97,100,111,99,99,103,104,106,107,108,112,100,103,120,104,100,110,98,97,100,97,97,91,103,118,122,102,104,119,104,106,108,99,99,104,98,114,97,108,105,113,106,117,113,93,99,106,97,92,111,101,128,105,107,107,112,107,104,120,106,87,93,107,97,100,103,103,97,104,98,83,113,108,106,90,103,105,94,106,106,117,82,103,103,120,101,100,100,114,101,103,104,100,96,100,99,92,107,101,94,102,94,110,100,106,110,96,105,86,100,96,105,112,106,88,98,93,88,97,98,104,95,99,90,95,91,88,107,92,109,103,106,94,105,115,100,103,97,97,103,107,109,108,109,107,106,116,88,97,90,80,109,109,111,98,107,93,114,109,100,105,109,100,95,92,92,98,102,99,101,102,101,105,94,113,101,95,107,95,103,100,104,73,100,100,99,102,107,86,99,96,98,104,112,103,107,100,97,86,100,91,101,109,104,104,94,99,123,115,111,101,126,103,109,115,100,107,126,107,99,102,100,101,100,104,100,105,87,98,115,103,102,103,107,104,87,101,98,109,107,99,106,101,107,109,102,101,111,105,108,104,112,106,110,104,92,109,114,105,99,106,106,99,105,107,101,102,103,132,103,103,110,107,104,110,95,102,113,90,106,99,102,98,104,110,104,104,104,98,102,117,95,108,92,109,105,98,97,96,107,115,98,109,103,91,98,98,83,103,110,113,96,99,108,108,108,107,108,114,87,92,112,98,104,98,101,100,105,98,102,103,107,104,108,99,98,89,106,91,82,105,98,103,103,106,104,78,120,97,96,105,109,101,99,104,102,90,106,91,95,97,101,98,101,104,103,107,120,104,98,105,107,96,104,109,112,106,104,101,98,106,101,98,112,108,102,112,97,102,108,101,91,107,103,101,100,100,112,98,99,108,92,101,98,98,93,103,109,114,95,101,100,102,102,98,109,109,105,94,98,97,75,94,95,102,112,95,102,92,87,96,105,97,87,112,111,117,96,105,96,97,101,112,95,97,104,111,100,83,102,98,102,103,101,107,97,98,98,107,92,110,90,97,107,102,102,97,95,107,102,103,100,105,114,99,97,101,101,101,94,101,108,104,94,99,109,96,94,96,109,111,107,108,100,119,102,110,106,112,96,96,108,96,103,110,97,96,99,86,100,117,98,102,100,108,102,106,111,97,88,97,99,105,105,76,100,105,123,105,90,98,92,97,95,113,108,106,100,111,101,110,98,101,104,95,108,99,114,110,107,111,92,115,109,100,112,106,106,93,98,95,102,105,108,94,110,104,103,100,113,92,106,103,107,102,115,102,112,102,108,105,104,102,107,100,106,100,100,115,96,108,121,110,108,104,87,110,95,105,107,98,111,105,108,108,101,108,116,99,109,103,86,113,94,107,108,133,100,102,95,106,100,115,103,99,100,106,87,103,113,103,109,105,113,113,99,133,94,107,109,110,112,103,102,116,102,110,108,101,107,103,99,108,119,112,99,105,95,108,111,108,102,102,113,101,112,103,98,102,103,107,94,100,116,99,106,99,101,115,102,90,98,105,102,104,106,108,112,104,101,108,99,102,109,115,103,98,99,110,95,97,105,106,113,104,99,112,103,112,105,103,113,110,113,103,100,113,104,99,110,103,100,103,112,101,103,107,111,111,101,108,116,104,142,113,117,112,121,109,93,104,83,89,106,83,95,113,106,96,109,98,100,109,111,109,113,96,112,107,104,104,95,107,112,97,110,112,99,104,99,108,105,99,107,98,100,98,96,110,101,99,102,90,92,99,95,99,105,111,100,98,107,111,95,100,101,108,108,103,107,102,104,111,106,111,117,108,99,105,100,106,110,111,106,101,106,100,103,96,105,103,101,120,91,105,113,102,93,106,106,105,99,115,95,120,99,100,114,113,109,94,109,106,103,106,97,112,105,104,98,108,99,100,98,93,106,99,106,92,109,107,111,107,109,108,107,114,104,106,99,104,107,108,97,102,107,105,104,92,104,94,94,75,117,114,112,107,92,111,100,110,92,109,101,130,110,111,103,110,88,101,105,102,106,112,103,96,112,107,107,103,103,115,99,110,87,108,105,103,106,101,96,108,106,106,107,101,96,108,91,95,111,108,107,103,108,116,96,99,124,101,105,110,112,103,106,108,108,111,115,112,105,109,108,118,98,101,113,105,100,92,115,99,102,96,104,104,107,93,109,113,102,101,96,101,115,107,105,94,94,109,106,94,103,115,109,114,102,108,95,113,107,110,107,108,105,110,93,99,103,99,85,98,108,109,108,89,109,100,125,107,101,96,93,120,111,95,111,95,109,102,113,100,107,99,100,103,96,106,100,98,117,107,114,108,103,107,102,98,101,108,102,105,106,86,77,102,98,110,113,99,108,95,122,107,109,101,114,105,116,100,105,106,77,106,104,94,109,98,104,94,104,98,104,102,93,111,111,106,109,108,103,105,105,100,125,101,101,99,96,106,105,109,99,102,100,108,102,100,106,111,96,96,95,82,88,99,99,103,104,116,109,107,125,106,85,110,101,120,71,104,109,102,110,107,105,111,102,103,111,113,95,102,102,99,110,95,106,100,116,112,101,106,106,73,108,109,104,108,103,110,90,99,102,97,94,113,101,101,101,99,106,111,105,117,104,90,103,104,97,94,95,91,112,98,101,106,98,92,112,107,111,93,112,96,102,111,84,113,113,100,100,108,105,93,104,105,107,99,108,98,89,109,99,101,108,108,100,106,94,98,103,104,93,112,102,110,110,112,105,102,108,99,106,109,105,113,100,112,97,99,92,109,109,105,98,102,104,119,110,108,106,108,109,111,109,105,106,111,110,121,113,114,109,104,100,103,108,109,116,102,105,103,102,83,106,106,106,99,107,105,102,112,106,103,100,103,75,112,120,97,103,96,104,98,107,113,92,103,100,96,109,110,106,99,106,91,102,109,109,98,88,104,111,105,116,101,111,105,111,88,99,102,99,109,98,107,92,102,116,102,108,101,110,103,105,106,107,113,103,102,108,106,104,100,88,120,121,96,111,101,103,99,93,109,98,105,101,113,108,93,109,95,99,108,122,92,110,109,112,107,106,100,106,104,98,114,100,109,114,102,112,104,111,94,108,106,102,111,99,102,110,95,95,96,113,124,104,97,98,101,109,108,108,101,100,116,101,109,108,112,110,107,113,103,102,100,105,98,112,97,103,98,109,106,98,101,120,109,106,91,102,97,99,109,122,101,113,101,90,109,103,100,97,109,110,108,109,118,107,86,108,101,98,98,98,107,103,110,102,109,112,115,95,91,97,99,100,101,102,102,112,103,109,108,109,98,108,101,112,102,97,100,108,116,95,108,108,96,110,107,103,100,99,109,105,100,102,107,99,108,102,103,116,109,99,100,108,98,117,101,123,89,101,115,108,102,116,102,96,112,105,102,107,94,98,116,104,101,91,100,104,122,88,111,116,92,108,101,103,106,112,103,99,101,103,108,106,102,98,103,105,113,97,102,108,102,99,71,106,104,90,97,92,104,114,117,112,101,105,110,124,112,106,106,105,103,67,103,103,99,108,109,103,105,98,85,91,108,112,96,129,95,101,117,118,103,88,100,98,106,99,109,140,106,96,105,85,116,109,98,105,108,112,95,102,103,112,114,110,111,107,91,88,109,101,91,94,101,110,106,101,109,105, +638.40466,99,105,99,98,100,108,97,103,107,95,96,98,103,113,94,91,93,109,102,131,109,96,99,104,96,117,102,99,113,91,106,89,106,92,109,104,107,106,96,109,83,101,108,95,102,102,89,109,94,105,106,111,101,95,69,99,92,109,115,89,97,103,107,95,99,97,90,114,117,107,109,102,97,102,137,107,109,96,101,95,92,115,116,101,97,110,90,96,91,97,96,108,106,100,92,105,112,79,113,99,101,102,84,102,101,94,97,91,96,103,96,87,105,102,102,115,118,98,80,105,118,109,114,106,106,105,103,112,107,122,107,108,95,77,105,110,97,106,115,110,112,99,74,103,102,97,91,82,91,100,102,104,106,101,109,98,96,100,95,90,115,79,118,108,100,68,93,97,91,122,105,100,108,101,108,115,105,75,110,92,110,105,97,103,109,101,102,79,104,102,104,93,98,116,108,101,95,108,106,106,92,87,106,120,86,94,99,97,102,95,91,109,100,101,100,108,94,105,100,86,104,98,117,114,88,104,105,99,114,104,89,109,101,108,115,115,104,101,135,99,109,80,112,107,83,91,102,99,106,103,106,106,69,102,88,102,101,99,96,104,109,100,103,97,94,109,114,109,103,111,95,102,105,97,101,85,107,95,99,98,110,97,111,107,109,98,101,95,105,91,97,95,104,99,102,104,111,111,107,107,99,105,103,110,99,103,111,115,106,113,91,128,100,102,102,100,118,101,97,100,100,92,103,106,100,98,104,96,94,106,108,101,118,114,109,101,107,92,101,104,126,102,102,103,107,105,105,109,93,93,98,117,99,111,98,110,106,103,95,108,96,112,88,109,107,101,103,107,92,102,97,103,103,102,99,86,100,99,93,99,102,108,106,107,99,101,97,109,106,96,106,100,99,109,106,96,96,91,100,108,96,99,103,99,88,113,95,105,97,94,94,97,106,90,103,101,98,88,104,92,109,95,101,99,108,98,99,101,106,109,101,105,111,87,98,99,105,105,98,102,109,69,96,99,99,102,104,106,102,108,102,91,101,94,96,100,113,102,100,109,82,103,111,107,110,104,107,102,110,104,103,93,112,101,96,94,109,107,101,99,99,109,114,99,99,101,96,96,101,86,98,96,99,109,83,97,101,100,102,101,99,105,98,115,109,101,105,102,98,100,99,106,109,118,101,89,107,99,101,80,105,98,112,99,95,107,102,91,104,106,91,105,97,97,94,103,106,113,104,99,104,102,98,93,100,95,102,105,100,117,112,104,111,109,107,92,107,116,108,96,97,111,102,104,94,108,91,85,95,98,88,95,100,95,96,106,91,104,104,97,117,102,102,92,95,107,96,101,101,95,97,106,108,95,131,110,90,106,118,110,84,66,98,98,105,102,102,97,118,122,100,112,100,107,112,93,105,93,102,82,111,101,102,100,91,96,87,103,109,111,94,98,87,117,108,101,103,100,100,112,108,98,98,97,101,91,100,95,101,102,99,100,99,108,103,112,102,103,103,104,100,104,89,92,94,103,106,99,104,99,114,80,116,92,92,106,100,107,104,98,96,105,107,100,101,102,101,103,105,101,91,110,96,95,97,103,100,97,92,98,99,92,99,115,92,107,99,105,109,91,88,98,80,97,96,100,106,73,103,95,104,113,96,98,90,87,96,112,98,103,92,106,94,113,87,110,100,88,102,102,104,109,95,94,104,106,108,99,107,108,94,85,99,81,100,110,97,95,105,102,108,104,107,105,96,113,88,97,98,105,105,103,108,106,98,102,99,88,90,103,102,99,100,109,100,99,98,98,97,91,107,112,98,97,99,103,95,107,107,101,95,88,94,100,94,105,98,115,109,92,109,103,94,109,107,92,106,103,108,101,102,117,103,119,91,94,107,97,107,108,112,104,101,105,103,101,108,106,102,100,102,106,97,89,96,103,115,98,98,100,105,105,91,95,95,100,106,104,101,103,96,99,94,113,100,94,101,112,112,108,99,100,99,105,106,93,107,91,112,91,73,114,100,91,88,110,88,107,101,102,112,113,101,99,105,99,96,105,91,113,110,105,107,104,101,96,91,102,93,97,110,104,96,102,91,97,101,98,110,97,99,95,108,109,91,85,102,97,106,103,107,104,91,105,99,103,106,92,95,104,98,108,104,104,91,92,101,70,105,93,92,96,99,100,94,92,95,112,97,115,112,108,98,105,95,103,91,101,107,104,100,106,102,105,102,113,97,97,91,102,96,94,92,100,95,109,109,103,104,98,96,95,102,96,97,113,116,98,99,97,101,100,96,96,106,95,104,108,90,105,85,110,110,97,102,101,108,91,98,112,102,86,101,108,101,99,100,99,110,98,98,102,111,96,101,95,90,114,112,95,108,101,109,106,107,112,109,105,106,109,103,107,79,96,100,95,103,107,86,101,101,103,93,81,96,96,93,108,98,102,99,108,103,100,113,94,96,97,105,97,107,104,138,108,95,116,112,107,117,102,97,110,112,97,91,97,121,97,96,99,84,88,106,112,99,127,105,107,113,112,113,113,97,107,101,107,108,106,92,102,118,105,97,91,99,109,101,99,105,127,103,111,92,101,108,98,104,109,104,79,84,97,97,99,87,109,97,112,109,103,98,106,106,96,99,98,102,95,107,101,116,91,79,87,94,107,104,88,102,103,88,111,103,105,98,99,95,116,92,94,109,114,119,107,106,107,99,111,95,107,88,107,100,120,107,116,105,95,100,109,96,104,100,89,99,121,110,113,110,94,106,108,115,106,109,109,110,105,103,105,106,106,99,110,113,113,117,93,91,104,95,109,97,114,114,103,101,118,105,99,104,95,110,105,92,119,110,96,95,109,101,99,103,88,102,108,111,142,97,100,88,108,102,103,100,102,98,105,105,108,109,116,84,95,96,103,101,108,102,111,109,109,113,104,107,106,98,104,107,106,105,96,105,96,117,117,103,102,105,100,111,105,99,102,100,85,107,80,102,115,84,108,89,94,105,105,104,98,111,113,105,95,97,95,108,99,105,99,102,95,106,101,99,106,113,106,95,109,113,102,92,93,111,105,112,106,113,92,101,104,111,104,106,105,102,95,116,108,117,97,114,109,117,100,98,99,100,116,100,102,96,110,104,116,91,91,102,101,100,93,94,90,98,105,103,98,102,104,107,89,106,103,105,103,109,107,124,100,95,109,103,100,102,104,107,109,106,103,95,97,93,110,100,108,107,107,113,98,104,109,103,104,92,117,109,103,104,100,101,113,114,107,105,106,120,105,82,112,95,107,109,94,129,107,103,111,110,107,117,98,106,107,117,104,105,109,96,101,100,96,106,101,108,102,106,113,109,101,108,93,115,94,102,94,98,88,105,98,110,111,95,104,107,98,103,105,88,113,109,108,112,107,106,104,104,109,96,111,108,96,97,71,109,101,96,105,88,120,97,104,94,98,97,98,110,101,91,103,101,109,107,109,95,113,104,96,91,95,104,99,103,98,106,91,101,105,107,108,105,94,105,108,102,113,103,99,98,110,104,88,104,136,98,108,101,107,102,117,105,97,95,111,100,105,106,110,91,101,112,103,111,102,102,116,110,112,97,108,102,105,103,90,94,109,108,96,108,103,98,97,101,105,108,105,99,95,90,112,107,103,105,112,109,99,118,113,108,98,105,101,90,94,100,94,77,113,84,110,110,102,118,116,87,103,104,104,101,112,103,101,94,86,100,106,108,100,109,109,102,98,103,106,85,102,107,102,103,105,114,110,117,127,96,95,108,102,107,94,102,100,105,93,94,92,95,98,92,115,104,111,90,97,102,103,109,95,92,104,98,95,105,99,103,97,89,97,101,102,87,113,102,106,99,106,98,101,122,108,84,112,92,105,100,99,106,95,109,69,100,118,100,100,90,105,118,113,114,101,98,95,106,102,103,102,111,118,123,107,104,106,105,124,107,108,106,113,97,107,108,99,101,102,91,100,108,115,106,96,103,92,103,103,104,101,95,107,92,102,115,98,107,105,108,113,111,78,99,104,114,99,115,101,91,99,102,110,108,98,96,111,106,105,89,99,104,105,101,102,106,108,103,100,97,101,110,108,98,104,97,101,104,102,94,94,113,118,94,102,102,104,114,109,117,112,109,120,102,113,99,101,94,91,102,101,95,99,98,107,112,104,104,107,106,94,109,107,116,105,93,103,120,91,106,103,109,113,100,95,112,96,104,98,117,110,98,81,102,95,91,110,104,95,101,98,104,103,105,112,102,85,96,102,109,117,107,107,109,106,98,103,108,101,120,106,111,108,80,101,95,99,83,101,98,98,100,96,98,98,102,111,111,98,111,101,105,114,89,96,98,91,109,100,106,102,92,101,107,108,75,112,95,99,95,106,94,101,102,106,104,103,119,104,114,100,101,98,95,92,100,102,101,94,99,101,93,102,111,106,106,103,113,106,98,95,87,100,99,97,92,96,108,105,105,103,101,112,101,109,108,112,103,98,103,97,96,113,98,111,99,111,101,87,106,101,109,109,109,123,87,112,97,95,107,106,98,96,98,119,100,94,97,104,96,102,95,113,109,96,98,95,95,125,98,104,103,118,100,101,98,103,104,96,120,109,105,96,111,103,86,92,96,107,100,105,91,98,105,95,85,110,104,93,109,93,99,102,102,106,103,106,94,61,97,100,98,109,97,98,100,93,89,109,98,93,99,103,107,126,112,102,103,98,104,95,109,95,96,103,99,100,98,97,103,99,115,106,100,99,105,109,112,87,98,87,102,101,106,108,113,84,104,100,118,109,104,104,122,107,103,88,114,102,109,95,91,105,97,107,98,94,113,102,120,109,110,102,103,93,109,100,112,98,105,104,101,98,87,116,118,108,97,110,100,88,105,96,100,124,110,108,106,111,98,62,98,101,103,99,106,101, +638.54584,119,101,93,73,105,96,110,95,99,101,102,92,106,103,90,102,108,98,99,77,109,96,103,118,106,104,83,103,103,91,102,95,99,98,113,121,98,101,111,104,96,94,102,94,104,120,97,97,105,115,110,96,97,112,107,94,95,95,109,106,106,116,106,92,106,104,103,116,93,104,101,103,106,87,95,108,97,106,104,115,95,101,110,94,108,90,104,96,102,97,106,96,105,107,85,110,97,97,104,101,91,101,99,102,79,112,87,104,94,100,106,101,96,105,103,90,104,111,95,109,101,98,108,105,90,106,102,99,107,105,102,105,68,111,97,110,109,108,109,93,101,105,103,99,95,104,109,95,93,94,102,108,112,102,97,98,100,100,102,98,105,100,105,100,111,92,96,103,88,94,113,103,95,99,117,113,101,96,106,103,100,104,99,100,113,109,103,95,109,106,99,98,115,109,105,96,105,87,101,107,99,105,107,104,96,110,100,96,119,122,98,101,98,95,98,105,98,105,103,102,100,98,109,94,102,102,96,117,101,80,100,108,103,92,97,113,90,104,111,99,103,98,105,101,107,102,94,93,101,102,100,107,103,98,101,112,99,108,104,98,87,102,103,104,104,108,91,94,98,105,125,98,124,97,104,98,97,94,100,102,96,96,103,91,102,99,96,115,100,113,134,96,106,96,99,117,95,104,107,98,99,95,102,99,94,106,105,99,105,112,108,118,97,106,109,107,99,95,104,97,106,110,90,102,106,109,96,91,106,91,106,98,99,98,110,103,99,109,104,96,100,99,105,101,107,101,105,104,94,110,104,91,101,106,104,102,107,105,117,103,106,93,107,105,102,99,115,104,98,117,104,100,100,102,116,101,107,99,101,101,104,110,100,114,95,110,112,99,99,95,116,93,106,99,108,106,97,99,95,96,100,100,95,97,107,107,98,117,101,104,108,94,108,94,101,106,98,104,71,106,101,90,102,109,91,122,99,109,94,90,100,93,105,102,123,96,94,113,98,115,101,107,100,103,123,100,105,99,96,110,100,98,102,105,97,106,107,107,109,109,92,106,104,99,95,99,96,101,97,98,91,102,112,102,94,102,75,101,77,98,99,99,98,109,90,86,104,97,110,101,105,98,102,100,99,98,94,113,99,103,113,99,99,108,110,104,110,109,112,114,109,97,105,106,100,99,117,85,97,108,98,103,101,107,113,101,101,62,97,99,95,108,96,110,99,108,92,114,114,115,110,97,100,103,103,104,97,97,98,97,99,107,101,106,95,102,113,101,111,104,105,102,92,109,98,101,114,114,101,108,94,105,101,102,98,98,88,101,95,101,103,108,104,107,99,99,110,102,87,110,96,100,100,107,106,92,111,104,113,90,100,95,111,95,98,110,95,100,95,101,100,123,114,95,102,106,98,100,105,107,88,104,97,101,109,86,104,102,107,95,108,97,108,100,117,108,94,101,104,109,101,94,109,105,98,84,105,105,94,114,103,92,105,103,112,94,90,103,103,101,106,122,109,110,93,103,104,110,105,109,115,114,108,98,102,109,102,97,90,103,105,101,94,107,128,99,89,114,91,99,98,87,103,111,97,95,102,93,104,86,104,116,89,95,92,95,102,101,97,115,101,102,96,106,99,94,96,102,100,95,105,96,113,92,105,92,96,94,107,107,106,99,98,109,105,103,92,88,100,111,110,103,101,108,108,100,104,99,98,98,111,115,98,103,76,97,95,94,112,101,110,118,101,120,97,103,90,112,106,90,101,88,98,101,97,102,95,79,104,98,104,109,104,105,97,115,98,108,84,94,99,101,103,100,97,92,96,103,104,102,95,105,97,110,112,105,94,96,115,94,108,97,101,104,108,99,116,101,107,68,106,100,99,104,94,112,99,87,106,104,108,95,90,104,97,100,112,98,104,105,97,101,82,107,104,106,114,97,91,102,102,98,92,98,109,94,104,105,102,118,96,109,109,109,111,113,113,103,119,100,105,108,101,104,91,107,107,117,104,99,103,113,106,96,105,112,86,116,103,140,109,103,105,94,113,105,126,97,93,119,103,109,99,115,102,104,108,98,103,95,94,104,109,90,108,104,107,103,92,102,105,108,105,103,109,102,108,91,91,95,109,98,106,101,105,100,105,87,72,110,91,94,99,96,91,95,104,106,100,107,107,94,106,97,106,109,105,100,101,116,104,96,118,103,100,93,96,100,106,104,108,116,97,108,101,106,104,107,92,103,103,100,108,94,113,111,91,104,105,101,102,101,104,104,107,93,107,98,111,121,97,106,106,102,96,98,107,103,103,104,94,110,97,103,93,106,99,91,118,100,103,100,104,85,95,116,96,91,111,91,109,102,104,113,119,97,114,104,103,140,104,112,110,105,102,101,99,116,100,109,103,116,115,112,102,121,95,110,125,103,90,109,112,97,104,109,103,98,106,88,91,110,96,106,110,98,100,120,100,104,102,99,106,122,92,112,112,79,113,116,105,104,110,86,87,104,98,94,102,109,95,101,138,102,104,102,100,103,113,91,95,112,101,106,116,101,105,113,99,98,127,106,101,94,104,102,98,99,109,98,110,103,109,103,104,119,99,99,108,99,103,109,102,111,98,105,104,120,106,99,115,100,104,99,113,104,101,99,100,103,108,100,108,85,105,103,107,97,114,109,100,116,106,116,101,87,113,110,118,102,109,106,102,109,101,93,111,99,123,110,100,104,117,109,97,107,98,106,103,119,114,93,104,108,113,106,107,102,97,102,105,97,113,108,125,113,108,121,99,96,85,105,102,106,104,95,107,107,112,117,109,113,106,117,102,119,100,94,106,102,121,100,102,112,105,106,88,107,92,108,99,103,110,110,100,108,111,104,99,117,96,106,109,113,106,72,99,108,109,98,102,106,111,115,98,98,98,102,100,114,112,105,94,91,102,104,110,131,100,104,102,112,102,107,107,111,104,105,106,106,96,107,105,109,106,103,104,116,114,103,93,98,96,104,111,105,99,100,111,100,114,90,100,104,64,92,110,102,99,108,105,97,102,75,111,125,117,91,102,100,101,115,116,106,104,86,97,99,111,109,121,105,102,105,99,99,112,100,105,112,101,113,95,112,109,96,106,113,102,124,115,98,107,103,100,105,111,109,106,106,102,94,99,109,95,95,110,100,96,113,129,102,106,109,106,106,108,94,113,102,111,99,95,106,96,85,116,108,106,102,100,104,95,101,105,108,99,120,107,113,112,119,105,79,100,113,113,105,122,105,110,106,108,100,99,93,104,109,76,107,108,100,91,109,90,108,107,110,90,112,109,105,112,94,101,101,104,102,99,102,102,102,100,100,94,91,102,96,95,101,116,106,95,94,101,87,124,93,108,106,94,102,110,103,106,101,101,72,120,83,102,113,106,106,100,125,106,105,101,103,95,104,100,106,121,99,114,100,100,111,102,98,99,110,101,98,105,110,103,109,94,90,115,97,88,102,114,100,107,99,120,106,116,101,105,110,97,113,111,108,107,99,103,102,111,128,103,102,103,99,103,103,96,104,107,83,120,95,91,103,97,108,105,105,117,99,90,106,96,116,92,102,101,114,108,92,116,112,112,98,114,103,99,94,103,98,125,106,109,115,102,108,105,109,95,108,108,104,112,105,91,99,110,106,91,100,99,106,108,131,109,104,98,110,100,97,118,99,90,105,105,124,119,108,100,105,105,108,108,117,107,107,102,96,107,104,102,113,101,98,110,100,104,110,106,90,105,105,112,98,104,113,108,104,110,107,95,99,102,104,102,106,115,106,99,101,109,101,91,106,99,103,95,136,100,103,111,96,104,105,116,99,109,100,101,117,103,99,96,101,107,103,102,97,101,95,106,99,101,129,112,100,106,113,106,93,95,102,104,105,98,109,121,100,113,103,108,105,86,112,108,88,100,97,104,103,101,104,105,100,92,112,110,94,95,99,108,110,122,102,100,99,92,109,112,91,109,98,98,113,91,101,108,113,103,100,113,102,113,105,102,106,121,100,114,99,96,98,107,107,111,97,94,117,106,113,111,106,108,106,108,98,105,100,98,111,98,97,104,113,121,99,95,109,96,112,109,102,97,101,98,109,109,97,100,113,107,113,95,107,93,115,91,109,105,82,123,109,100,114,95,120,83,99,109,113,103,104,107,113,97,107,106,105,97,110,94,107,113,103,104,92,113,101,102,98,99,101,108,105,109,97,107,101,100,103,105,103,102,97,120,99,119,107,89,107,106,112,108,111,88,112,95,98,91,106,117,109,114,105,95,100,98,99,101,107,110,97,103,95,102,109,86,75,113,107,119,102,97,105,123,108,104,107,99,90,108,108,101,106,111,107,97,110,108,92,106,98,105,99,93,96,109,105,98,108,91,102,107,106,108,102,105,92,105,102,109,111,109,91,116,88,99,109,96,110,117,102,104,105,114,108,99,95,94,102,98,103,106,113,106,111,111,105,97,104,92,93,103,88,91,92,111,104,109,107,95,120,111,114,115,112,114,108,113,109,110,101,117,90,85,97,96,106,109,112,106,113,93,91,102,88,104,91,96,104,102,94,95,96,98,133,102,99,111,95,115,108,100,67,115,99,98,102,112,107,95,109,108,95,96,100,101,102,113,106,87,100,103,92,108,109,99,104,105,96,106,104,99,91,76,113,79,102,111,100,106,105,90,97,104,95,91,102,106,101,88,105,94,98,113,94,90,107,108,102,107,99,105,102,97,105,104,88,119,116,111,95,100,107,105,112,112,99,99,103,109,109,103,99,91,106,98,94,102,94,115,100,104,101,105,100,103,91,101,76,91,112,99,103,106,99,108,113,104,105,111,102,113,101,110,107,98,81,107,108,103,102,118,92,120,94,92,103,116,96,102,113,104,106,129,104,97,91,108,131,100,105,107,98, +638.68701,104,103,92,91,93,77,74,114,96,90,100,97,105,92,108,77,97,95,103,101,123,113,113,100,96,112,95,98,111,102,95,112,96,94,103,99,104,96,103,100,102,101,121,92,92,116,82,108,114,98,98,91,106,95,88,103,102,95,104,95,112,99,105,101,104,113,103,114,96,107,98,100,103,99,88,103,98,96,92,95,106,119,98,94,99,117,112,96,118,98,110,118,100,99,90,96,99,95,104,108,103,95,87,89,91,102,100,95,94,100,98,109,110,99,109,100,99,107,103,97,94,100,93,121,110,111,112,90,105,65,99,100,92,108,96,112,92,102,106,101,119,105,98,108,109,97,103,110,93,94,97,106,97,97,97,104,102,89,98,96,98,101,96,92,96,103,100,106,106,105,114,95,108,99,79,107,107,91,93,109,99,107,109,104,102,104,100,100,92,92,109,109,107,109,100,104,108,105,104,109,97,107,98,99,105,100,97,116,112,101,105,98,100,107,98,112,97,116,96,103,111,107,106,105,104,107,97,100,116,103,90,103,105,106,97,98,94,102,100,105,111,97,104,107,100,101,106,102,100,101,96,98,108,101,91,109,104,99,94,113,105,110,104,106,70,105,107,95,119,123,103,107,101,100,103,90,112,112,105,111,112,90,97,103,97,108,101,107,104,108,97,100,96,108,109,117,103,100,99,93,108,95,100,102,95,98,102,103,92,103,93,103,89,103,112,107,99,132,92,98,100,97,96,100,124,109,98,100,103,101,100,102,103,102,97,101,114,97,104,101,98,121,105,96,95,102,113,115,98,95,96,100,112,110,98,102,83,82,87,106,99,94,104,93,94,99,101,105,107,114,107,100,100,100,109,112,105,101,95,103,111,104,91,111,115,98,81,98,107,99,107,94,96,107,104,96,114,101,99,101,105,106,108,90,106,103,100,103,100,98,98,99,108,90,98,101,105,104,112,118,103,106,98,105,110,113,106,103,102,111,103,109,100,110,113,90,97,113,109,99,102,113,97,105,103,111,102,102,98,114,97,93,101,90,109,99,97,103,109,73,108,97,109,99,110,113,108,100,111,94,107,105,101,106,98,99,96,116,103,103,91,102,122,92,113,89,105,106,102,94,105,110,110,97,101,96,98,95,106,108,104,99,95,97,101,104,90,103,114,104,101,89,108,114,103,109,112,99,95,108,86,99,115,99,99,99,104,110,97,114,96,101,116,96,99,117,99,91,102,115,112,114,110,106,99,108,104,108,109,103,103,110,99,89,97,107,109,104,104,89,93,108,95,91,103,105,98,111,97,95,102,107,107,114,115,101,103,101,102,91,93,101,70,99,95,87,96,98,110,99,113,100,102,98,113,102,95,102,107,108,104,92,105,105,70,125,91,95,100,109,98,98,103,101,99,100,107,99,94,113,109,112,95,93,99,102,106,113,108,93,102,99,103,105,99,100,99,116,107,100,86,109,115,110,99,99,105,101,101,113,106,123,91,106,104,103,105,114,80,108,109,95,105,100,100,106,107,95,92,103,105,86,103,103,96,104,106,111,107,100,105,109,97,95,84,96,98,104,99,105,102,106,87,107,103,106,107,109,113,105,99,104,106,99,99,115,100,103,100,106,102,107,92,96,88,96,101,105,96,92,109,107,98,101,93,95,94,95,108,108,104,108,84,102,101,94,102,93,101,109,120,93,108,100,95,111,100,101,93,100,115,106,99,103,113,94,108,108,108,115,100,98,93,97,95,109,100,102,136,91,104,103,96,94,97,109,104,129,101,113,104,92,103,99,103,103,92,113,113,103,103,117,108,109,104,97,100,115,102,113,106,105,100,100,113,98,113,99,104,97,106,108,97,97,103,105,113,98,105,100,113,111,97,97,110,101,100,107,103,99,111,102,98,103,100,112,127,107,112,106,105,91,103,98,113,100,98,105,105,102,106,102,99,97,106,100,101,109,102,104,119,99,108,110,92,96,100,99,113,113,101,102,99,102,107,112,109,99,99,107,111,99,100,104,92,99,96,114,107,100,109,105,105,95,107,109,96,101,101,112,96,106,106,110,110,101,110,102,84,102,101,96,109,103,113,106,109,103,102,107,104,109,108,103,101,108,101,104,91,102,107,116,90,99,136,105,112,115,101,107,108,116,111,97,93,98,90,96,101,110,105,99,104,100,113,106,103,102,99,109,103,103,103,100,112,98,96,108,100,95,95,99,111,101,103,104,107,97,95,109,107,103,114,105,103,104,106,88,93,102,98,97,127,102,101,96,99,95,96,110,100,110,103,109,111,107,114,96,100,97,99,118,99,94,98,99,91,99,115,110,114,102,107,86,91,111,87,99,109,111,111,92,105,108,119,88,96,115,107,105,103,110,99,95,107,112,107,100,93,114,109,101,115,100,92,97,99,113,109,96,100,104,105,104,93,86,91,101,103,102,102,111,102,94,104,105,116,96,90,100,88,107,96,115,116,113,107,102,103,102,113,108,108,97,101,108,99,100,108,117,109,95,114,109,113,112,104,101,106,111,109,110,123,101,117,100,134,109,95,97,107,108,95,94,109,107,93,120,106,100,102,120,99,99,84,97,107,88,80,117,107,112,114,114,102,101,108,108,104,113,103,100,108,101,101,100,102,106,110,95,107,93,119,95,104,105,102,106,121,89,104,106,109,103,72,98,97,100,101,110,108,109,107,103,99,111,114,100,103,96,106,103,107,105,108,107,96,93,101,113,103,106,103,102,111,113,103,107,110,94,102,106,109,99,103,115,118,99,103,104,103,108,95,108,111,87,99,109,99,110,105,105,109,106,105,97,102,108,113,110,104,115,96,109,97,110,90,118,112,95,105,106,105,114,96,111,96,118,103,124,89,106,102,114,89,107,113,116,141,109,106,114,99,103,114,98,98,108,105,111,101,103,103,115,105,118,98,99,99,95,106,109,92,103,99,100,101,104,103,112,103,104,100,115,117,99,97,110,113,95,102,104,98,104,101,103,107,109,106,102,103,103,109,103,98,102,104,103,109,101,99,98,102,100,109,105,104,97,106,108,101,108,110,107,106,102,119,115,106,110,105,104,95,106,103,102,102,104,118,103,95,105,100,110,104,102,110,102,105,89,95,106,100,110,97,101,97,106,98,90,104,100,91,102,109,91,113,98,76,106,101,91,109,108,109,111,99,94,90,106,117,109,97,106,113,95,110,107,108,116,93,113,109,112,106,102,90,103,105,107,96,107,102,103,104,95,99,106,104,100,113,116,106,99,111,99,96,117,105,108,106,98,105,95,95,102,96,96,96,110,103,71,112,102,102,108,105,98,99,109,100,92,99,113,105,111,92,103,97,93,103,87,98,100,106,105,110,114,110,83,100,108,109,98,96,95,98,107,108,107,100,100,110,113,105,115,109,100,104,106,101,97,116,105,97,107,117,96,99,97,108,99,105,92,90,105,106,113,103,122,107,107,103,106,104,92,117,101,118,101,103,87,112,104,110,104,107,107,102,101,105,96,107,107,99,125,105,90,112,100,117,101,93,112,101,99,104,97,103,109,106,105,100,95,113,110,107,97,108,108,103,104,108,100,100,92,98,113,94,105,89,112,107,110,104,105,106,105,107,109,95,103,102,98,111,117,103,106,103,101,104,106,118,103,96,99,84,111,103,112,99,98,115,119,107,116,113,111,101,97,104,104,90,116,92,108,102,107,93,95,104,105,104,110,106,105,101,116,94,102,105,137,106,109,104,111,117,110,109,105,93,95,105,103,112,105,113,95,109,102,105,106,100,94,109,83,102,96,102,105,102,81,105,112,102,106,115,119,92,106,102,113,117,97,95,105,116,96,100,108,108,109,101,112,99,117,112,98,120,120,108,100,117,110,102,105,96,92,99,83,102,106,94,99,102,96,106,94,108,99,104,97,98,92,108,103,102,109,103,109,105,92,108,103,103,100,99,100,99,113,98,107,99,89,108,101,112,100,106,102,105,99,108,120,113,96,112,96,110,108,100,106,109,99,93,99,91,97,102,108,104,113,108,117,101,108,106,105,106,98,99,99,96,102,104,101,89,106,103,100,92,121,103,104,101,105,98,101,110,109,102,107,98,121,105,110,101,111,100,105,103,102,106,112,89,120,104,105,106,111,95,101,112,111,103,106,102,106,111,102,98,106,95,94,95,108,104,107,93,97,115,96,112,93,113,101,99,105,89,113,104,115,101,91,106,108,106,96,108,112,105,99,101,99,108,94,97,98,102,99,93,98,102,90,102,105,101,102,111,94,99,107,117,107,108,109,112,95,98,107,102,102,107,107,105,110,105,111,115,112,93,93,112,107,106,103,110,120,102,100,108,99,107,110,105,115,108,106,117,110,92,97,102,104,83,101,111,105,109,100,103,104,95,109,112,108,98,106,108,106,89,99,106,116,112,107,105,104,108,94,105,99,103,102,111,104,91,96,102,102,112,93,99,112,99,97,105,89,103,105,112,114,102,99,98,104,103,110,104,98,107,111,108,105,108,104,94,103,118,97,96,104,103,106,98,113,107,136,115,96,106,85,93,107,113,105,99,100,106,98,104,106,100,94,101,103,105,111,117,105,94,98,100,106,96,96,115,99,99,100,106,113,93,128,108,107,119,99,109,101,103,99,100,111,112,103,106,110,100,103,105,94,100,107,105,94,101,110,113,96,92,104,95,101,92,107,84,114,103,105,108,87,90,98,120,91,113,101,99,81,98,110,89,108,113,102,108,101,110,109,108,119,108,101,105,102,106,112,112,103,99,111,106,94,120,112,111,106,99,106,85,98,103,102,87,90,106,105,90,109,115,92,107,104,111,89,107,100,104,99,102,88,106,102,86,94,101,111,106,107,101,94,114,99,113,96,88,104,104,85,111,96,99,99,98,94,107,110,110,94, +638.82813,114,115,87,101,83,114,110,71,89,104,114,118,97,100,103,91,90,118,104,85,99,98,101,114,110,113,109,104,104,96,109,108,92,98,104,104,106,105,104,103,101,113,97,94,95,97,104,84,108,104,102,98,113,98,115,111,111,112,100,113,102,90,105,94,90,102,88,93,116,122,108,112,109,64,119,106,76,102,117,107,99,107,102,106,102,99,121,99,102,105,110,98,105,111,109,94,99,116,93,92,100,99,100,91,95,111,103,110,91,99,98,95,99,96,88,106,86,85,104,124,112,98,109,108,106,101,114,100,100,104,103,96,107,95,116,98,100,111,108,104,100,103,100,100,105,94,105,108,101,90,95,115,102,97,99,98,123,106,102,86,100,102,113,97,100,90,97,91,109,107,109,112,96,104,99,100,100,102,111,104,90,106,104,95,101,105,95,95,105,122,121,103,104,104,105,121,105,104,104,97,96,103,105,101,102,106,110,105,108,105,95,108,102,104,106,92,97,109,100,113,103,123,95,105,122,99,95,107,117,113,99,98,97,107,104,88,98,103,115,117,101,97,101,99,96,103,90,101,100,101,99,75,100,91,92,98,115,98,93,106,101,98,109,115,91,110,93,101,99,92,112,91,106,96,114,102,104,106,98,99,107,110,105,93,97,107,98,95,113,117,101,91,118,107,101,84,96,93,116,111,107,112,102,111,97,110,113,104,141,114,103,113,93,91,111,105,105,104,119,96,98,101,106,74,114,105,95,100,95,108,106,90,104,94,111,93,95,91,103,102,105,101,100,100,97,96,103,106,98,105,97,91,100,102,93,98,103,121,108,107,101,101,99,100,98,97,96,94,95,108,102,91,126,82,110,88,105,93,104,105,98,98,102,109,112,102,89,124,105,109,102,100,86,100,90,101,101,100,97,106,98,105,100,100,97,112,86,96,100,95,97,121,109,102,100,97,103,97,100,103,107,98,94,95,112,99,92,96,106,101,98,99,96,102,93,106,106,112,105,100,109,99,110,105,100,102,103,96,97,83,102,95,105,105,96,103,108,100,99,99,105,101,90,92,92,108,105,113,103,102,97,99,106,102,106,97,99,104,116,107,100,111,114,101,107,95,102,112,110,113,100,130,106,98,88,102,106,103,100,99,100,100,92,90,118,103,98,103,107,106,100,108,104,86,114,109,104,92,103,106,102,93,103,111,112,112,113,107,100,96,100,97,94,102,104,102,114,93,106,105,102,105,101,104,108,95,112,101,99,96,101,115,107,97,101,118,107,96,103,94,76,106,106,99,101,103,90,109,107,106,98,88,105,114,111,95,106,96,127,99,100,102,101,105,104,100,106,114,92,113,103,121,101,103,114,109,104,109,123,102,105,107,109,93,93,97,101,94,103,111,93,99,109,101,93,110,93,114,109,93,118,101,108,104,107,106,97,121,100,96,101,103,110,102,95,113,99,105,110,104,97,107,68,109,103,102,87,108,103,109,96,106,96,103,89,103,103,107,103,100,105,101,104,106,101,108,98,93,109,103,104,98,114,101,106,97,98,108,107,103,103,116,111,95,103,99,92,106,105,112,94,107,97,108,108,104,109,104,102,95,106,103,104,104,98,97,103,112,107,99,93,103,103,98,92,106,98,103,103,96,107,107,105,98,100,102,105,99,99,99,98,91,98,96,108,113,111,98,110,120,118,93,97,103,113,102,113,96,99,114,112,100,103,101,102,101,92,110,101,104,94,101,92,94,100,125,98,114,98,105,107,110,103,97,103,107,116,109,106,99,103,84,114,120,99,109,106,103,118,95,97,107,103,106,93,102,105,92,99,106,109,104,100,98,90,96,99,110,104,105,107,101,99,98,94,109,90,112,101,103,101,110,104,106,109,105,107,100,109,106,114,88,102,98,107,105,119,99,103,108,93,111,99,99,110,102,110,99,100,106,110,98,114,117,72,110,102,100,106,94,98,91,99,116,112,97,96,96,116,106,104,117,88,95,124,112,101,104,94,104,100,103,110,109,105,86,111,99,112,101,115,104,99,99,111,84,106,100,96,108,95,101,107,113,94,82,97,102,107,107,99,93,93,105,114,91,100,100,101,107,104,95,93,85,103,90,100,99,104,104,107,94,94,100,101,106,105,104,115,107,83,102,119,106,109,92,109,107,106,111,91,99,106,103,105,103,99,117,99,85,98,110,97,88,83,77,93,97,102,110,105,101,108,86,95,106,102,105,90,120,101,106,95,95,99,99,87,99,95,89,110,103,106,107,97,100,109,113,96,105,103,98,99,99,105,95,88,103,107,86,109,110,99,99,100,113,85,100,99,105,108,113,98,100,107,106,97,105,100,105,100,102,98,113,88,93,106,99,96,119,102,91,110,123,111,113,105,111,102,100,124,117,109,111,94,95,101,101,99,108,102,117,118,109,106,108,97,95,93,101,84,111,125,98,117,110,89,103,105,99,98,105,102,112,97,99,110,98,108,99,101,102,87,93,92,94,97,105,95,98,111,104,110,109,99,102,102,109,116,104,104,107,104,106,114,96,96,101,88,106,125,103,108,106,111,110,95,108,97,91,99,105,100,96,102,91,111,112,95,95,101,85,98,102,102,97,99,96,91,100,102,113,107,104,108,95,103,100,90,93,103,106,99,98,99,107,93,96,103,112,99,83,115,108,92,111,117,102,102,95,111,113,82,112,109,110,112,91,107,107,106,102,101,104,96,107,93,96,92,106,100,104,94,96,106,96,115,99,103,106,99,108,105,110,101,105,111,99,108,113,109,108,113,110,99,95,104,100,106,106,104,109,103,127,95,105,107,87,91,99,97,97,132,111,115,110,101,105,113,87,96,105,107,100,98,98,97,105,105,109,109,103,104,109,98,95,120,94,109,98,76,99,89,105,102,90,90,95,91,88,95,105,110,104,106,102,102,96,102,110,103,99,113,89,105,101,102,97,101,110,102,93,104,105,67,93,111,116,103,101,103,94,97,101,98,105,100,113,101,103,102,104,106,102,98,98,103,99,115,91,97,103,98,112,108,113,101,100,95,101,73,105,107,100,110,112,95,100,113,93,101,105,105,97,97,99,100,95,92,90,104,109,116,95,104,102,102,93,102,89,97,99,104,109,105,116,105,112,109,91,87,83,100,105,104,91,94,113,101,86,105,99,82,100,107,105,107,108,98,111,93,115,106,99,97,103,100,98,106,110,106,98,100,100,92,91,99,112,105,105,96,87,115,91,91,101,105,107,109,103,113,106,95,114,103,102,106,108,96,105,102,87,114,104,108,103,101,95,109,104,102,88,111,102,100,112,102,102,97,91,102,107,106,113,102,103,106,98,103,95,107,103,92,87,100,108,92,88,111,110,87,102,114,97,88,99,92,88,92,107,95,113,83,102,98,105,102,112,105,93,100,90,106,96,94,103,112,101,98,106,99,117,96,84,100,101,101,104,92,105,101,108,110,112,97,105,100,106,108,108,103,102,112,97,100,106,99,101,101,111,96,100,89,105,94,108,111,102,97,92,85,100,101,110,97,110,115,96,88,108,93,102,101,81,116,114,102,114,109,107,98,98,99,100,114,112,112,106,114,97,94,101,104,97,90,106,99,102,113,98,99,75,104,101,100,94,110,99,103,105,80,92,95,106,104,102,100,105,110,92,97,87,102,103,99,101,100,101,117,96,89,96,98,106,91,97,92,98,119,93,97,100,106,109,105,98,110,104,101,97,108,110,99,100,107,94,107,100,98,99,94,112,95,103,110,107,88,104,105,102,102,95,105,94,100,100,102,101,95,106,104,116,100,117,97,104,105,98,98,100,115,97,105,87,96,100,107,116,101,100,93,108,97,112,92,108,98,97,100,97,96,113,98,98,110,129,100,94,102,99,102,112,105,94,93,99,95,105,94,102,99,97,98,115,113,108,104,87,105,94,91,95,103,101,92,95,83,103,87,109,99,108,105,104,96,102,108,98,98,105,111,99,92,116,101,110,101,95,97,105,87,95,102,98,95,105,90,91,109,105,105,107,93,90,110,100,105,113,110,98,98,107,97,109,72,101,102,95,117,106,86,103,115,101,102,95,101,91,81,92,98,94,89,95,109,100,112,109,96,105,103,128,100,105,108,115,105,100,94,107,104,103,99,99,104,105,100,101,90,105,107,106,94,97,107,102,114,108,97,101,113,113,104,97,98,106,92,103,107,93,101,104,107,100,90,97,101,96,106,99,93,105,98,100,103,97,111,118,96,106,94,111,95,98,104,94,109,100,107,105,108,102,110,108,100,96,95,102,97,104,98,109,108,102,108,100,102,101,114,119,97,107,110,104,96,93,107,106,105,107,101,108,95,110,110,101,110,95,105,99,95,102,121,119,94,106,100,99,112,102,87,98,112,112,100,99,97,105,104,115,100,93,95,90,102,103,100,102,88,97,96,99,101,103,98,106,106,92,102,85,110,101,117,119,99,98,97,100,104,102,95,102,108,110,107,93,89,95,105,107,101,87,110,102,101,96,102,99,120,109,95,84,95,103,97,103,109,98,104,112,88,98,106,96,98,106,101,102,100,106,110,106,102,97,116,112,101,91,98,97,101,99,98,110,94,104,111,112,99,112,113,106,92,87,112,94,111,106,97,109,107,109,92,98,115,106,113,109,95,95,104,105,91,103,102,98,103,104,104,100,95,99,107,99,109,96,102,108,95,102,108,87,109,104,94,106,115,97,97,106,123,100,95,108,116,103,90,85,114,101,127,109,96,102,92,89,100,104,101,85,95,95,98,117,105,101,116,105,95,101,96,86,112,91,99,103,99,107,119,104,111,108,110,110,102,104,94,99,98,95,103,100,95,95,101,95,101,102,104,108,96,106,102,96,103,94,103,98,101,110,122,95,96,100,98,95,102,119,97,82, +638.9693,104,103,101,95,91,105,87,100,106,125,105,109,95,112,98,99,107,108,105,98,102,103,107,104,85,101,99,105,113,107,103,91,109,101,107,100,107,89,102,106,95,114,109,109,107,114,107,110,113,105,98,76,99,105,104,95,112,100,104,99,99,105,120,108,95,106,112,105,102,97,106,105,106,108,92,104,95,100,120,100,116,108,98,102,88,117,112,109,101,108,99,99,106,102,109,103,131,94,101,107,100,115,91,131,114,110,97,113,102,94,102,99,117,89,129,105,98,98,111,106,97,102,100,93,113,109,111,110,101,111,100,96,101,104,104,107,105,113,104,78,103,107,106,104,100,104,107,111,99,105,99,99,105,91,106,103,99,101,107,94,97,112,100,102,108,115,107,97,100,105,102,109,103,107,99,106,100,110,101,100,98,107,99,103,99,109,99,69,101,93,109,100,104,106,100,106,100,98,85,107,102,100,99,114,99,100,102,106,114,107,108,102,100,108,99,105,111,108,108,98,108,105,95,108,97,105,110,107,102,109,103,110,98,97,93,93,110,110,104,102,91,102,112,118,113,101,105,101,94,99,126,108,106,105,111,114,93,105,99,97,97,94,94,113,101,109,103,94,99,98,92,95,92,95,102,98,100,99,98,94,94,107,108,111,78,83,92,108,105,100,113,91,117,96,98,109,106,101,99,113,99,105,102,99,89,111,100,109,101,111,97,119,102,92,102,106,108,109,116,104,110,101,101,96,99,110,91,106,89,106,106,92,105,102,107,113,109,92,105,96,108,108,105,105,103,102,101,101,96,96,101,105,100,100,102,112,102,105,108,102,97,97,102,109,105,94,115,106,94,96,115,98,108,107,102,87,103,99,109,110,110,108,115,106,105,99,97,76,95,104,95,94,107,120,105,106,101,89,101,117,108,112,121,121,95,95,98,103,102,97,96,94,97,103,100,104,100,96,111,102,104,94,99,106,106,96,94,97,95,93,110,109,111,100,113,92,96,115,101,106,101,94,94,99,98,109,97,109,106,98,107,100,97,100,112,100,106,102,103,100,109,91,103,94,103,109,100,100,110,97,105,105,118,83,95,89,102,104,121,111,101,88,104,100,104,118,103,103,93,104,112,105,106,108,98,107,93,111,105,112,104,108,109,113,100,99,114,91,102,104,104,107,109,108,104,113,95,101,119,104,95,98,97,103,98,112,121,99,111,108,96,106,96,101,105,104,109,114,111,105,101,109,105,109,113,102,103,100,108,99,104,94,97,112,109,100,114,103,89,101,101,117,109,109,104,95,107,123,111,109,113,103,98,108,99,99,99,115,103,100,103,102,104,104,107,102,117,116,103,107,88,92,106,96,111,102,107,117,109,106,100,101,102,107,92,101,97,95,104,99,104,94,101,112,99,103,98,102,110,100,101,86,101,104,110,101,105,113,96,111,100,109,76,103,100,103,112,89,108,104,110,103,99,101,87,96,97,109,108,105,93,117,96,102,84,101,107,99,107,120,111,97,104,117,101,108,101,118,86,102,99,108,104,100,107,105,106,103,103,88,111,109,69,98,102,96,104,117,104,103,69,112,109,111,110,99,95,100,107,96,99,88,98,97,104,108,98,106,82,101,94,99,106,106,102,80,94,98,103,101,77,116,107,97,101,100,103,105,108,100,102,103,107,74,102,106,104,102,101,99,102,108,100,99,102,119,99,106,102,100,107,101,108,102,106,114,114,97,109,105,103,117,104,107,113,107,99,107,107,101,106,117,101,105,103,106,106,100,112,94,99,108,109,111,99,114,117,107,101,108,87,93,109,113,102,116,108,106,98,92,118,100,77,80,122,107,89,99,113,94,115,102,106,109,106,101,104,105,110,109,120,119,111,110,102,109,105,109,103,114,107,116,107,97,101,96,102,101,86,90,86,110,109,112,98,100,107,98,104,96,110,109,100,106,93,101,122,109,101,114,98,97,105,107,105,103,93,100,105,98,101,110,108,116,104,107,104,109,110,92,105,95,102,112,104,108,102,107,104,97,82,104,116,98,103,106,94,100,99,108,102,89,102,108,108,100,92,112,104,96,90,100,115,113,101,109,114,106,109,105,115,101,102,93,101,87,103,105,106,101,94,117,100,110,101,107,104,102,75,110,108,87,106,109,99,108,122,106,104,109,110,114,118,94,99,102,105,99,105,106,104,103,104,103,104,103,89,102,95,107,102,98,104,101,112,105,111,104,88,119,97,95,98,94,108,96,100,91,101,98,96,99,109,100,91,91,107,114,91,111,91,116,96,99,106,117,115,104,108,105,99,103,114,108,105,100,100,103,107,113,105,98,95,84,118,112,111,100,107,101,144,107,109,101,110,93,98,96,107,115,98,110,98,111,104,109,129,103,92,103,110,103,99,120,102,108,107,122,109,102,105,109,100,102,99,111,94,113,97,109,109,108,101,96,99,115,98,105,103,108,101,100,97,96,120,116,97,100,106,100,106,91,97,99,98,106,107,101,107,121,115,103,117,105,102,103,107,94,113,105,102,106,95,108,99,103,110,106,110,103,90,88,105,104,113,98,99,101,109,108,102,104,113,108,97,107,109,94,104,96,112,90,103,112,104,104,102,94,108,98,119,103,110,103,109,103,101,105,105,96,111,103,105,96,113,112,113,99,100,109,103,102,101,99,103,119,105,106,114,99,113,107,116,108,106,112,98,98,99,104,108,103,112,112,98,104,112,106,100,103,112,104,122,113,105,132,100,108,99,105,75,106,87,103,115,106,107,104,102,99,112,107,104,115,103,105,98,113,100,110,113,104,113,106,114,103,109,107,106,109,112,98,118,86,109,110,117,103,99,98,106,122,115,107,112,103,97,98,88,106,98,96,111,108,111,83,98,109,95,103,101,98,98,116,108,102,103,107,93,105,107,107,106,105,103,103,101,132,114,95,105,105,100,100,91,111,116,98,108,107,94,99,107,98,105,105,112,101,98,104,96,96,100,86,108,118,100,104,105,100,117,106,105,110,109,98,106,111,107,94,103,102,102,124,112,102,100,83,109,117,105,106,94,99,106,98,96,99,113,114,102,108,108,105,100,98,113,110,74,96,114,98,104,108,99,107,100,112,99,98,109,97,111,107,106,99,109,116,107,98,112,108,115,101,99,96,106,98,87,93,105,112,103,103,98,101,111,114,100,104,109,104,111,102,108,102,104,107,101,99,102,110,104,113,99,85,101,107,107,87,94,109,102,99,102,108,102,109,107,99,111,93,99,106,108,108,94,115,128,106,108,104,87,95,100,104,107,102,104,102,95,106,109,100,91,109,115,99,102,110,116,99,108,99,98,102,91,102,114,112,107,104,105,97,95,116,96,108,116,98,101,104,102,87,101,103,104,99,100,100,112,110,95,106,97,106,103,96,107,96,86,95,113,101,97,98,118,79,100,96,107,117,109,95,100,100,104,105,107,107,98,112,102,99,97,102,87,109,114,112,102,102,94,100,101,113,103,112,105,108,75,102,107,117,117,106,106,108,95,100,101,94,102,106,103,107,100,112,106,107,90,105,92,102,104,103,104,106,103,110,109,102,108,102,107,101,99,109,109,103,102,112,98,97,105,111,113,115,97,113,71,100,99,124,95,95,105,119,101,104,99,120,108,99,109,105,103,91,113,109,103,100,100,102,106,95,96,99,113,107,111,117,113,97,100,99,99,101,101,97,104,110,105,107,121,110,110,91,111,97,99,108,115,112,114,91,116,96,99,98,110,112,92,100,104,103,115,92,106,95,102,109,101,103,109,98,103,100,100,88,98,111,99,101,91,109,102,108,103,94,113,98,95,100,104,104,106,102,130,105,106,106,96,103,113,116,106,102,98,120,105,116,98,113,109,116,97,100,101,105,98,105,98,99,110,113,94,99,106,101,102,99,108,118,101,106,110,100,106,102,104,102,93,109,94,100,101,105,105,98,109,103,98,107,108,102,110,113,104,92,102,108,93,105,101,96,114,109,102,109,97,114,104,100,102,93,92,105,100,113,113,105,117,116,104,107,103,106,106,99,104,101,105,102,98,112,91,104,103,101,99,94,100,97,99,110,106,72,102,96,100,105,113,120,105,105,107,102,95,100,120,102,105,112,102,106,97,101,72,106,117,110,102,102,94,113,106,98,113,109,106,96,98,120,107,113,108,113,110,101,110,121,116,103,112,112,103,106,110,99,115,116,104,99,104,91,104,94,102,100,93,101,98,98,103,108,107,96,103,96,99,107,104,95,100,106,97,108,106,97,100,107,110,102,102,102,111,104,103,105,100,101,112,107,119,104,108,98,104,116,104,107,117,113,107,105,110,126,109,102,105,106,94,98,112,100,103,98,104,107,95,111,106,117,111,104,112,115,101,106,116,113,102,103,105,103,107,106,110,107,101,88,102,113,99,112,109,101,104,106,114,104,102,93,106,85,107,101,106,87,100,97,112,105,107,96,99,92,112,100,115,117,104,98,104,91,110,104,103,101,101,100,90,113,109,110,109,106,100,98,91,105,101,101,109,104,100,103,101,110,97,113,120,109,101,116,102,107,108,104,99,97,114,100,99,106,116,105,111,95,106,91,101,93,112,104,95,102,115,105,106,100,118,106,98,125,113,105,79,105,109,108,91,91,113,128,101,99,83,99,114,100,100,122,100,104,98,102,104,93,105,105,103,99,97,104,109,115,110,103,106,105,102,90,91,98,96,99,113,104,98,98,87,112,104,103,103,102,83,106,108,99,109,107,94,105,94,108,83,95,109,92,83,99,101,96,97,111,124,111,114,108,112,101,102,106,80,104,106,103,93,106,102,105,113,106,111,97,104,111,116,126,104,113,99,101,84,95,104,98,89,105,93,92,106,104,93,106,105,104,110,109,102,93,97,98,135,106,107,101, +639.11047,118,98,99,91,70,104,91,93,107,117,104,95,104,106,98,103,105,107,101,115,104,106,104,108,100,108,105,110,105,110,97,95,110,94,99,109,108,100,105,118,112,111,108,75,104,116,107,115,98,108,109,108,100,94,121,103,101,115,103,103,99,103,105,100,109,70,96,99,90,100,114,96,96,103,110,103,98,101,109,107,125,101,103,114,100,88,105,112,93,95,100,107,110,85,87,112,118,99,77,103,107,99,102,99,97,105,94,108,107,113,116,96,119,97,106,100,98,105,104,111,82,99,105,99,105,96,104,100,101,106,108,102,87,101,111,110,105,111,101,103,108,93,99,109,128,97,111,99,93,103,92,108,93,106,99,90,96,93,95,90,101,107,103,102,100,92,96,92,96,116,105,86,110,108,99,99,130,93,104,98,103,109,97,103,100,105,101,98,99,98,94,78,102,111,94,82,95,100,104,103,93,110,87,104,103,110,102,83,102,104,91,100,109,106,98,107,103,103,109,100,87,102,110,106,107,105,100,98,122,113,94,96,101,113,105,102,103,105,101,108,97,108,127,108,100,109,117,106,105,95,106,101,95,105,73,109,92,112,88,106,102,101,103,112,98,108,118,108,106,104,105,105,108,107,103,108,102,98,106,113,101,98,103,97,104,106,107,118,98,107,104,110,105,103,109,102,105,103,106,105,92,108,107,108,87,111,107,110,106,96,100,111,123,99,113,113,108,106,102,96,95,102,115,108,107,107,90,114,113,93,105,112,113,103,116,102,97,106,103,113,105,103,94,106,99,105,91,96,106,93,92,104,95,91,103,99,104,107,109,96,95,108,104,91,102,93,112,114,93,106,110,101,102,103,74,105,107,93,94,106,94,114,105,107,103,106,104,116,109,96,108,94,108,107,107,100,100,102,99,106,110,105,91,117,103,111,111,113,105,95,85,103,96,103,98,106,99,100,100,90,110,119,105,107,95,102,92,86,104,104,105,104,102,107,96,101,98,107,105,92,111,100,119,104,105,100,102,100,112,95,106,103,102,103,97,96,108,101,95,92,106,106,103,106,114,121,104,107,100,100,112,105,102,85,109,92,103,143,100,105,101,102,111,99,96,97,105,107,96,115,113,125,106,100,98,96,89,104,100,113,103,111,92,92,94,94,104,108,120,94,102,111,94,103,112,105,96,100,109,95,107,101,97,98,111,101,105,97,94,101,101,113,110,97,95,103,106,91,95,112,94,104,93,107,85,110,106,94,108,101,106,110,65,113,112,98,104,102,95,88,113,109,95,102,106,105,110,97,114,92,99,95,94,104,108,104,97,112,109,114,109,83,101,99,96,100,114,108,89,113,95,109,99,99,107,107,99,126,100,111,101,96,112,101,93,100,72,96,109,99,106,95,99,103,105,103,107,118,106,102,106,99,111,105,67,99,110,107,110,108,104,100,99,99,109,99,99,91,101,100,118,105,113,113,105,92,96,116,107,114,98,94,104,104,100,103,116,104,135,95,87,104,109,105,100,89,102,99,100,100,98,99,104,94,99,100,105,103,89,101,99,108,104,93,101,105,103,116,111,84,100,101,95,116,95,107,97,106,103,91,101,103,98,98,103,95,106,103,105,99,112,109,105,100,96,105,98,101,104,101,105,95,100,90,101,105,100,108,109,98,115,108,86,104,111,114,103,100,105,98,109,95,100,97,109,104,100,102,106,108,115,90,90,93,100,105,104,82,104,103,96,100,97,87,95,98,96,88,109,102,104,112,95,108,117,108,96,104,97,105,96,100,112,104,101,106,106,102,112,99,113,113,107,120,105,105,97,109,106,110,87,108,98,99,110,107,119,109,99,112,110,109,92,111,108,109,109,105,106,97,105,103,103,98,108,96,101,136,104,106,103,89,104,109,102,110,103,95,105,102,98,99,99,101,107,110,107,115,91,103,114,103,112,103,103,116,126,106,93,98,98,100,103,106,100,97,98,103,116,107,97,106,100,92,92,114,100,106,109,103,100,95,103,113,107,112,100,104,96,106,107,115,106,100,92,95,97,110,100,117,106,103,104,104,103,92,105,109,109,97,113,109,102,104,111,102,102,97,91,100,102,91,97,105,109,102,94,108,108,106,90,112,104,104,97,108,95,105,103,100,105,86,119,108,103,109,108,99,107,108,102,97,113,104,111,103,87,99,104,102,109,117,105,95,98,100,93,99,111,105,96,104,112,98,73,119,101,99,105,101,107,104,97,109,109,104,98,99,106,106,105,104,96,107,100,104,115,116,95,113,101,99,95,104,110,102,117,104,106,84,104,87,99,108,100,102,119,104,87,102,103,104,101,112,106,103,114,95,96,115,116,108,115,93,105,95,105,107,117,115,119,113,121,104,107,114,105,114,102,107,102,98,110,110,116,109,95,96,99,103,98,108,117,101,92,99,110,108,110,96,103,106,102,118,105,91,95,104,104,87,93,102,106,91,111,112,112,110,92,111,112,106,110,105,108,102,106,104,113,114,105,86,117,125,106,109,100,113,121,106,108,102,99,107,104,105,117,107,100,107,106,101,107,105,105,101,115,102,118,101,103,119,110,110,112,105,102,110,113,108,99,113,110,103,114,101,109,98,100,104,117,100,110,99,106,109,95,96,94,99,110,105,110,97,106,103,99,96,116,115,109,101,114,105,105,119,110,113,106,112,108,102,104,109,102,107,105,94,111,119,107,99,105,113,107,88,110,108,106,95,104,110,102,98,108,118,107,113,92,104,95,118,106,104,109,103,86,122,104,105,110,112,85,96,107,95,101,102,101,107,100,109,108,97,116,116,104,120,107,106,106,98,109,93,114,104,98,113,117,95,94,116,103,95,100,97,108,120,99,104,111,99,118,117,104,100,108,106,106,99,129,106,101,104,109,98,105,102,104,114,103,107,106,101,99,113,110,111,105,101,102,109,98,106,112,106,98,97,116,100,110,111,107,94,105,112,112,108,100,111,102,105,108,100,106,121,106,95,141,111,104,104,114,111,100,94,110,107,109,106,119,104,103,102,120,105,103,108,98,110,103,102,114,106,102,102,100,97,99,105,98,106,93,100,102,106,104,104,100,94,96,110,98,116,111,100,98,106,101,108,116,104,93,109,115,102,104,108,108,102,103,104,106,110,100,98,102,94,96,99,96,99,109,111,105,118,105,99,108,109,107,97,102,115,114,110,107,98,101,106,102,104,103,89,92,100,102,109,86,108,112,114,86,86,105,101,95,115,111,99,114,118,111,107,128,100,89,104,102,114,106,102,93,108,90,103,119,95,103,100,104,93,103,122,99,105,112,101,97,95,108,119,111,103,109,100,91,94,90,94,104,103,104,104,109,106,106,107,106,112,102,103,106,104,105,103,96,106,110,84,117,98,109,106,104,112,107,106,106,97,97,99,116,112,103,104,106,100,105,98,102,95,111,103,107,110,95,98,102,116,99,113,109,113,97,104,103,102,102,100,110,103,111,106,95,108,110,94,116,104,95,101,114,104,98,106,113,95,95,108,98,109,99,98,107,106,106,103,106,101,117,105,107,100,105,117,111,106,105,103,119,100,101,103,98,120,117,106,107,107,121,104,105,106,97,99,109,104,102,91,105,108,106,101,104,107,112,99,102,97,101,105,100,96,97,100,113,102,114,98,99,119,98,111,98,96,113,101,100,103,110,104,99,109,106,115,104,102,110,104,101,105,100,105,112,99,116,112,102,105,123,106,91,104,103,99,105,103,113,120,114,109,101,104,103,102,87,110,113,106,112,101,106,111,105,104,108,99,104,119,100,109,103,99,103,95,103,109,109,94,109,106,112,104,97,113,97,103,101,105,94,132,124,107,104,104,84,107,102,101,99,105,116,98,106,109,96,108,99,102,104,100,98,111,102,92,105,100,113,118,99,92,109,113,100,106,124,96,108,102,106,100,83,102,95,117,104,102,105,87,94,96,101,112,102,108,116,102,107,106,119,105,118,108,116,105,88,102,97,104,94,96,96,89,100,106,113,92,112,100,114,108,101,112,103,113,104,103,102,109,112,102,106,106,119,102,111,105,117,105,103,95,118,95,104,110,129,105,112,113,106,112,96,100,100,110,102,108,107,107,108,108,95,107,108,104,102,110,96,118,81,99,108,111,115,101,100,119,84,108,104,91,99,104,93,119,105,115,97,101,104,107,99,106,104,107,98,103,109,126,110,102,111,106,124,105,84,108,103,94,100,97,97,102,103,109,103,111,97,114,80,105,110,105,102,116,100,110,113,106,106,110,100,101,101,99,102,109,103,107,101,102,109,107,106,109,98,104,107,111,114,99,97,113,83,102,93,110,82,100,99,113,102,104,109,109,103,113,101,113,96,106,108,114,105,105,111,99,114,108,110,111,78,79,95,105,112,91,109,109,81,103,102,102,99,108,107,102,105,105,115,105,98,104,110,104,104,112,114,107,108,113,106,108,100,103,109,96,88,99,106,114,105,102,107,103,113,101,99,100,110,102,93,106,109,108,98,100,102,99,102,98,95,113,106,119,98,111,114,133,101,117,111,108,139,106,100,107,121,105,113,105,124,99,101,113,123,116,105,107,87,91,92,105,113,93,103,80,105,100,101,103,97,116,108,101,122,100,113,79,100,113,119,96,106,99,105,119,110,96,101,115,112,107,99,113,110,104,105,102,106,94,94,111,107,98,105,108,113,107,101,98,114,101,114,116,101,121,95,97,105,97,104,108,96,112,103,121,95,106,108,109,102,99,109,99,102,109,91,106,105,105,107,105,119,91,104,105,111,103,120,106,99,81,104,98,107,109,110,113,105,96,115,93,114,98,116,110,92,106,103,94,101,105,108,116,100,112,99,95,116,121,111,103,117,97,92,109,97,95,115,113,110,94,100,100,105,98,103,96, +639.25159,110,96,92,88,92,101,91,114,109,101,109,92,103,87,114,105,112,102,104,105,98,100,96,91,99,88,99,97,101,108,101,108,125,100,112,110,96,105,99,106,99,105,80,104,99,99,108,103,92,104,99,89,100,109,90,101,98,86,101,88,97,80,90,101,109,106,91,104,114,113,118,108,102,99,90,98,95,114,102,118,110,99,117,98,107,105,118,109,120,110,100,101,127,103,107,96,108,111,107,105,90,112,99,113,94,93,105,104,102,97,114,107,99,91,104,108,102,97,108,81,103,105,102,108,109,108,117,94,113,104,103,101,103,106,102,108,108,107,107,99,103,104,91,118,95,102,103,108,105,96,104,100,108,92,93,100,108,100,98,106,112,118,114,106,101,115,95,96,89,109,99,112,96,116,108,99,94,113,117,113,103,128,100,101,100,92,93,91,95,109,96,105,101,101,105,102,106,103,113,113,117,101,96,110,104,113,106,117,118,101,98,103,110,105,107,103,100,102,106,114,90,100,117,91,104,101,107,111,110,100,101,106,97,108,111,112,101,101,106,102,108,98,102,114,104,104,107,116,87,108,99,102,117,104,101,105,100,104,103,95,100,111,103,109,96,100,107,90,107,102,90,100,95,101,105,102,93,100,106,95,97,109,94,104,110,104,106,102,109,106,99,95,92,98,121,105,103,108,103,116,107,113,95,111,92,105,93,100,103,100,92,112,119,94,105,109,119,105,105,107,89,93,100,103,113,115,103,86,112,111,107,101,112,107,96,92,115,103,99,109,110,94,97,96,97,101,104,117,107,106,108,96,98,101,115,107,115,95,98,102,104,117,98,101,93,99,104,87,103,109,104,91,129,96,98,108,101,100,100,94,106,107,108,105,107,107,108,102,128,103,107,94,100,99,104,94,93,108,103,100,102,107,116,121,127,97,99,96,103,91,90,109,108,96,109,107,110,94,85,102,99,101,108,105,99,97,106,117,108,108,110,100,99,106,105,98,105,115,95,110,119,106,99,100,98,104,93,91,118,103,95,98,109,98,106,103,103,101,103,109,107,108,113,118,100,121,105,94,118,101,117,104,94,97,108,112,105,126,104,88,104,103,102,106,95,101,103,113,97,98,110,105,106,89,102,99,103,99,120,103,122,110,101,104,105,115,98,111,102,113,111,95,104,110,97,113,104,100,105,102,108,107,103,99,113,113,100,93,104,98,110,107,115,108,96,102,103,85,105,105,100,89,103,112,105,102,110,97,103,113,105,110,103,95,89,89,99,95,104,120,107,109,100,97,107,96,68,106,76,97,103,96,102,93,92,104,112,121,101,95,103,103,90,94,108,94,104,113,97,105,110,98,113,114,109,119,105,116,100,109,102,104,102,108,105,116,85,91,110,104,75,114,104,94,89,64,95,102,107,105,104,97,112,114,98,101,93,101,103,112,97,108,102,96,94,104,98,96,110,107,102,111,93,116,96,107,100,100,111,109,99,112,113,105,101,110,112,111,112,106,112,104,111,101,105,90,108,109,109,110,103,106,121,110,101,105,117,107,112,102,112,100,107,109,113,106,102,93,110,92,100,102,99,112,109,103,97,115,100,110,96,109,98,104,106,110,119,121,103,108,118,108,109,110,110,102,106,103,108,99,75,103,108,101,99,98,107,93,98,111,110,103,103,102,99,98,106,106,104,107,115,102,103,84,129,99,107,98,102,95,108,97,97,83,99,105,107,96,100,100,104,117,70,96,112,109,103,108,97,97,110,109,99,101,101,102,102,107,98,106,100,99,109,101,109,106,108,100,85,110,107,111,116,107,113,98,106,106,98,109,83,89,100,106,106,97,91,108,100,114,107,93,90,89,114,109,106,104,122,104,98,101,113,99,98,108,124,105,109,105,108,95,95,103,85,107,107,107,117,102,106,105,107,90,103,121,101,93,106,106,106,108,87,101,103,113,98,116,97,102,110,112,100,119,104,80,108,102,109,107,91,102,102,103,83,120,115,113,97,89,105,103,105,106,114,110,101,116,99,104,107,106,95,98,103,95,97,103,99,98,102,119,110,105,111,113,106,103,98,111,106,110,112,108,112,104,90,101,120,113,105,103,117,108,99,120,108,108,110,109,102,117,101,105,108,116,94,103,116,106,102,107,101,100,100,110,121,111,74,92,78,101,111,78,108,101,104,112,104,122,90,109,114,112,105,100,99,105,108,108,106,106,113,105,102,97,104,102,94,116,103,103,103,99,98,97,99,101,101,106,106,91,109,106,96,92,105,110,104,108,115,106,98,108,114,100,109,91,83,84,99,124,97,113,109,95,110,108,97,121,92,106,108,103,91,94,120,94,120,99,106,104,112,117,107,107,109,122,108,116,109,103,107,99,103,108,116,113,101,101,99,103,99,117,106,98,93,110,105,99,96,121,102,101,116,101,106,92,101,88,96,73,105,91,104,109,103,113,107,102,96,117,96,121,87,100,96,110,106,110,115,99,108,101,106,103,112,97,101,110,91,100,109,107,111,116,89,94,105,84,110,110,135,103,104,96,118,100,110,108,106,106,101,117,105,106,93,112,108,98,103,94,108,88,96,116,87,120,95,113,107,90,104,107,99,94,103,102,107,94,110,118,106,108,101,108,112,96,96,102,105,101,100,89,101,95,101,104,101,102,100,95,104,104,93,113,104,105,111,103,101,105,100,107,106,114,108,106,100,109,110,107,91,99,102,110,96,95,105,97,106,113,108,82,109,101,106,114,111,101,101,114,102,105,121,106,104,107,99,97,99,105,95,109,96,88,91,104,106,86,102,118,102,114,111,104,104,120,111,105,107,102,77,98,96,105,104,100,108,102,103,101,108,109,104,97,95,102,98,117,102,102,109,103,105,92,106,81,97,108,100,98,118,106,83,102,107,108,103,97,92,104,115,112,97,111,95,109,115,104,100,105,105,109,103,104,103,105,96,109,106,107,104,106,109,108,111,111,102,111,101,105,102,106,99,108,114,94,105,106,107,106,109,113,109,97,95,116,108,102,108,102,94,107,113,95,94,99,102,108,108,71,114,92,109,109,99,100,108,99,102,109,103,109,105,102,101,91,106,104,104,106,99,107,116,104,110,111,96,110,96,112,101,123,106,108,97,114,96,94,87,107,109,103,103,94,98,101,90,95,100,98,100,104,102,108,108,101,121,102,109,110,101,107,95,102,110,123,104,103,110,105,95,102,103,99,112,104,113,99,87,105,98,96,109,102,110,94,111,100,102,100,112,110,98,92,106,112,111,88,95,102,118,99,102,95,97,98,91,118,96,98,108,106,100,97,78,101,103,98,96,103,102,107,110,126,95,90,104,110,97,103,108,111,101,107,95,106,104,101,112,99,99,109,103,107,102,119,113,87,106,103,99,110,110,106,116,102,109,90,97,106,100,104,100,106,108,102,103,97,101,104,93,104,106,99,79,111,98,105,95,107,101,99,103,102,103,100,103,110,98,113,113,109,104,105,108,103,107,96,102,109,112,113,102,110,111,106,103,105,112,117,115,95,104,101,105,98,117,105,108,112,98,102,99,112,98,103,107,99,117,105,95,114,117,107,104,112,94,99,105,108,113,119,99,106,117,96,108,104,95,102,111,108,118,95,104,102,115,98,111,99,103,96,108,92,104,107,112,97,85,95,113,109,98,104,94,107,106,96,105,106,109,112,114,104,111,105,89,107,103,106,111,115,98,100,110,110,90,100,76,111,98,103,126,102,112,106,100,114,102,99,101,105,99,109,105,109,114,95,110,101,101,100,120,102,104,98,122,108,98,106,112,108,99,116,113,103,104,90,110,98,106,101,103,106,110,109,101,104,102,107,101,104,98,96,107,113,97,111,101,99,106,113,104,99,103,101,108,82,101,97,95,101,95,94,109,95,94,97,91,91,95,107,116,103,96,102,107,98,102,106,111,101,109,99,111,107,97,102,86,104,91,109,100,83,99,108,103,109,109,114,112,100,108,102,111,104,110,108,108,96,102,101,109,119,109,116,105,110,113,97,101,96,102,109,93,105,111,101,122,107,100,98,109,107,95,98,108,100,109,105,102,107,120,110,94,107,114,105,129,100,101,102,108,115,101,107,96,110,100,103,104,103,99,117,99,108,108,103,105,92,94,95,109,108,99,117,105,109,103,98,98,101,97,105,99,106,104,100,102,101,108,101,99,106,97,103,118,100,113,111,110,100,103,96,98,106,99,106,111,104,107,117,100,99,112,112,115,102,111,111,111,103,103,102,92,92,107,99,124,101,106,95,105,99,113,102,100,108,98,96,113,108,106,95,115,102,110,102,95,116,120,102,108,112,110,104,117,110,108,98,98,102,88,102,115,101,117,112,108,105,106,113,96,107,118,109,108,72,69,102,99,116,104,105,121,106,95,105,97,93,98,108,97,104,105,109,118,102,113,106,102,89,102,107,97,108,111,107,109,107,96,96,94,98,107,108,117,106,113,94,114,102,102,111,107,103,96,107,95,90,104,115,105,91,97,99,72,99,107,104,97,103,119,114,105,108,92,99,104,101,99,104,92,115,91,108,110,106,127,111,111,98,103,107,114,100,101,111,106,68,107,103,114,103,115,98,108,107,102,98,103,98,107,105,117,107,63,100,93,98,115,103,105,97,108,93,103,101,99,114,102,99,95,106,105,94,109,92,107,107,97,97,103,102,105,105,96,97,107,112,117,104,87,106,97,104,85,98,99,107,94,88,95,104,111,92,98,117,102,107,104,108,117,113,112,102,83,107,96,110,110,107,115,102,104,105,100,112,110,91,91,100,99,114,104,95,95,92,103,106,126,100,116,94,106,100,114,108,107,105,97,97,105,100,104,95,111,101,106,108,114,97,110,106,100,111,104,110,107,113,133,96,104,109,119,102,103,97, +639.39276,103,104,89,109,119,108,102,97,111,114,88,106,98,110,107,94,119,106,104,108,111,95,120,102,98,96,93,98,98,104,103,118,105,114,99,105,106,111,104,92,107,104,98,93,99,102,98,113,106,116,114,108,104,99,106,110,87,105,114,91,102,112,97,104,103,99,106,102,115,92,110,101,84,99,102,110,88,99,101,109,95,113,111,92,106,91,99,96,111,87,105,96,98,98,96,97,113,104,99,99,102,103,108,101,106,101,104,106,108,87,94,110,83,105,95,104,103,80,113,106,98,96,110,117,110,132,104,94,118,100,101,99,105,100,101,117,97,110,99,90,120,110,112,112,101,111,113,93,98,93,99,101,112,92,103,107,104,100,94,102,106,103,111,106,113,109,108,96,96,120,108,105,113,124,103,103,105,99,104,98,97,98,118,121,97,96,105,109,108,107,106,103,107,102,109,120,105,89,102,117,110,95,100,90,100,109,116,109,119,102,108,97,95,106,106,100,99,104,107,104,125,104,95,112,97,106,111,104,108,99,106,109,94,103,110,103,112,114,107,103,100,108,110,109,90,101,94,103,97,107,108,111,103,108,105,119,108,95,97,114,103,101,113,105,109,106,99,100,106,104,105,96,103,94,94,95,97,105,111,103,101,94,103,111,116,111,92,100,114,113,109,97,87,116,100,100,107,95,102,111,103,104,100,104,105,104,118,118,101,117,98,100,107,101,104,85,99,99,101,100,96,113,112,116,106,97,108,97,110,116,110,104,113,100,111,106,105,105,104,98,100,110,103,91,102,106,91,109,139,97,99,106,101,106,113,103,98,100,99,108,108,105,106,106,113,103,118,105,107,100,93,108,108,91,106,101,113,103,102,100,103,95,92,101,111,96,106,103,98,115,104,106,103,113,102,104,102,113,113,116,98,110,105,102,98,102,109,102,108,112,99,111,102,100,101,108,118,104,110,107,102,91,124,105,111,101,93,101,103,106,104,109,105,83,103,104,104,107,91,99,100,109,99,99,102,105,122,94,104,106,96,107,103,122,91,105,101,97,110,109,101,102,103,113,112,111,94,96,105,97,100,102,105,110,106,105,95,106,114,104,91,103,106,108,108,92,102,109,87,99,103,107,114,94,107,108,95,109,92,104,105,103,95,105,108,106,104,102,98,100,108,101,112,108,107,99,116,109,107,93,99,103,108,113,113,107,113,105,96,80,105,108,99,105,102,111,105,116,116,111,109,104,106,109,102,106,117,109,124,114,110,96,106,105,110,106,102,104,103,106,104,111,111,117,100,102,68,109,107,100,106,111,110,105,96,117,99,100,99,109,101,106,105,106,109,108,105,111,115,91,116,111,95,110,95,101,130,128,110,107,118,111,107,104,113,99,102,95,100,102,106,82,114,101,112,103,101,103,79,104,106,104,124,109,108,102,109,102,100,98,99,107,105,107,112,110,96,98,112,97,105,102,109,101,131,103,96,95,109,111,100,107,91,110,101,113,105,102,109,100,115,104,105,99,100,104,115,100,101,106,114,106,111,100,103,107,101,102,121,106,112,108,116,100,97,111,105,107,103,105,105,106,100,117,110,98,106,97,126,102,111,103,96,108,103,103,110,96,95,107,100,108,105,106,95,109,111,115,110,101,112,108,109,99,107,101,117,109,112,125,114,96,104,109,98,78,112,101,108,103,114,99,108,119,109,115,112,115,102,106,111,109,109,94,107,92,107,104,108,125,95,115,100,66,104,104,94,107,92,100,104,102,106,103,109,119,112,80,103,106,98,104,103,102,103,110,101,109,104,111,105,108,105,102,103,107,104,108,106,94,97,105,99,88,105,109,109,103,119,107,122,113,106,102,107,94,112,100,104,91,112,83,104,106,121,138,114,110,110,114,102,95,97,95,110,88,103,99,105,105,106,112,107,123,102,101,88,110,93,99,109,91,93,104,103,99,110,87,94,110,82,109,109,102,86,108,109,103,103,108,111,111,97,105,106,113,105,103,114,109,107,110,112,110,85,100,130,119,108,126,119,117,118,111,103,99,100,111,105,97,103,115,101,113,106,103,100,105,110,109,119,95,104,99,101,118,98,100,91,109,98,101,112,95,106,98,102,85,101,94,112,109,110,110,104,92,87,101,107,98,118,105,125,94,94,106,114,107,105,104,108,101,110,101,112,115,117,113,100,100,107,107,96,124,105,109,85,91,108,97,93,113,108,116,98,103,104,94,91,104,108,108,95,102,110,100,105,91,99,99,115,105,93,95,109,82,96,105,105,105,106,107,107,97,120,100,118,110,101,107,93,98,114,117,108,107,105,101,104,107,100,107,105,126,100,94,93,112,93,101,120,104,96,106,112,92,112,131,111,116,112,119,110,110,95,96,94,106,103,100,102,115,127,112,96,105,95,101,98,101,104,107,99,107,112,100,105,111,116,94,97,125,99,112,108,117,117,109,111,100,111,107,102,92,100,94,83,103,115,119,104,112,109,102,103,102,105,104,97,100,101,90,115,98,100,100,111,106,104,91,125,104,110,96,108,99,91,108,95,124,108,100,107,98,88,108,106,124,96,109,112,101,101,79,108,103,99,105,107,100,98,108,108,116,95,101,109,105,109,101,101,101,99,110,107,93,98,102,106,103,102,104,95,113,96,105,116,91,114,91,104,79,102,95,118,102,101,103,99,107,108,91,109,105,107,108,116,113,105,109,112,95,116,108,103,109,101,101,106,104,107,103,97,100,124,116,102,92,104,108,93,106,114,105,104,94,92,102,104,97,98,103,98,104,103,98,116,106,101,107,92,115,107,104,103,111,102,105,105,114,112,105,126,99,99,119,102,106,108,111,108,107,102,102,106,103,102,98,98,105,99,112,107,115,115,124,102,116,109,107,105,118,104,107,107,103,101,102,110,106,105,113,100,99,105,103,73,97,103,99,103,108,94,83,101,102,82,99,102,100,103,108,98,112,66,100,110,95,96,95,107,108,93,106,115,108,102,88,96,87,117,96,120,107,107,101,110,98,108,99,101,98,105,110,107,106,103,105,93,96,96,100,111,100,108,101,106,95,95,102,93,108,101,90,98,104,108,109,95,97,108,77,94,100,111,90,100,107,110,106,111,95,136,114,95,117,97,110,112,112,103,98,104,105,103,97,108,120,104,104,96,105,103,115,96,118,106,103,110,100,87,106,98,94,99,90,104,112,101,107,101,95,100,106,106,98,107,110,86,94,108,109,100,94,86,103,98,91,111,79,102,100,106,105,110,96,98,98,101,92,112,92,105,128,102,101,135,96,122,119,99,96,99,105,92,102,103,95,103,93,115,109,108,103,103,102,95,110,105,103,96,117,110,105,103,99,98,98,121,101,95,120,81,100,107,100,109,100,103,95,129,94,95,112,105,110,85,110,111,91,103,100,94,112,93,100,113,94,96,100,106,102,91,97,100,107,105,110,96,107,104,113,106,103,97,91,100,104,103,99,98,100,111,97,98,107,112,109,106,95,98,104,104,106,96,102,107,117,105,109,116,106,98,94,106,111,107,107,97,101,96,102,107,113,112,106,104,127,96,117,107,99,113,98,105,112,108,106,99,86,110,104,104,98,105,101,113,93,91,104,91,80,104,107,95,108,109,103,106,103,94,78,99,98,65,93,100,103,107,97,109,101,114,109,99,112,103,112,104,108,101,112,98,97,103,106,94,108,120,106,107,96,93,104,97,107,103,106,96,107,111,104,96,104,103,99,110,123,112,96,108,106,95,98,98,107,106,113,102,103,109,94,100,93,113,109,106,94,92,101,101,102,100,96,107,113,103,100,91,99,99,100,115,96,102,105,94,97,104,82,108,96,104,109,95,106,109,95,109,96,122,108,96,104,106,99,104,106,97,109,101,100,105,98,110,112,103,115,95,76,91,110,102,100,94,96,96,96,100,87,106,92,102,103,94,104,110,102,104,93,96,104,105,107,119,102,98,95,100,88,89,115,112,102,109,92,102,122,103,99,107,98,93,114,102,94,98,112,99,114,101,98,101,102,101,109,115,98,113,101,110,99,100,102,112,105,115,101,113,109,97,102,102,105,97,109,99,75,113,105,101,114,113,99,110,95,101,98,107,113,102,92,109,100,100,99,104,101,106,113,105,98,98,91,92,100,111,99,98,101,96,102,117,98,109,115,99,108,112,114,109,110,104,101,105,109,99,99,89,108,123,106,111,104,102,121,96,105,99,104,110,101,112,93,102,98,107,100,103,106,92,97,96,106,99,110,101,100,88,100,99,91,97,106,101,112,105,95,93,117,109,103,114,102,100,98,99,125,106,117,98,107,114,94,100,93,95,110,103,106,101,91,102,106,103,102,104,100,95,88,91,107,120,98,99,94,101,109,63,97,107,103,110,104,99,100,106,108,104,108,96,86,112,110,104,109,103,98,113,96,102,104,111,99,101,101,79,105,111,100,115,115,104,77,119,104,102,105,103,107,96,93,91,95,100,110,116,97,96,100,96,103,96,95,104,107,112,117,117,102,108,102,106,87,100,98,99,104,93,108,94,96,88,112,114,91,107,102,138,113,107,102,104,95,99,111,88,102,90,97,95,99,103,107,111,104,106,109,104,107,106,107,92,109,94,98,131,110,103,101,107,111,93,100,108,110,104,109,109,106,105,118,107,105,89,102,117,81,121,95,93,96,103,112,107,87,87,106,94,90,109,106,108,113,108,99,112,98,94,102,100,94,108,100,108,97,84,104,116,103,99,87,87,115,102,97,98,98,99,104,95,104,98,105,94,98,92,78,88,111,78,99,79,98,95,104,104,106,98,101,96,99,106,105,133,100,100,107,125,112,106,106,82,101,100,115,92,101,104,89,106,104,81,98,105,80,107,109,101,105,110,91,97,107,104,111,112,94,90,105, +639.53394,105,100,82,94,104,92,85,104,104,91,87,92,104,114,93,93,96,90,96,113,99,83,101,94,102,108,99,92,98,117,109,109,95,97,98,104,110,94,108,100,102,112,96,112,92,94,100,109,106,103,120,109,104,109,105,102,92,117,108,107,97,101,102,105,109,108,97,102,100,103,105,95,95,110,84,104,93,86,99,103,99,90,108,100,105,108,104,107,104,104,87,104,90,98,113,96,98,94,112,115,104,101,102,99,104,100,95,101,110,103,98,103,99,99,90,111,94,101,106,103,100,118,121,103,94,107,102,92,103,102,101,100,100,103,95,83,86,104,98,94,97,100,98,108,96,93,110,96,96,94,96,90,113,94,105,99,109,105,97,95,92,112,115,104,94,96,109,83,94,111,100,108,92,93,104,103,105,88,91,110,96,101,105,99,106,113,101,97,108,103,109,99,102,103,104,106,109,94,101,105,92,102,100,95,82,103,95,104,107,95,106,122,109,115,95,106,113,111,99,102,103,100,107,99,109,98,106,98,107,99,94,103,91,95,108,98,102,99,115,95,98,95,114,99,104,96,100,113,103,102,98,109,106,98,97,97,95,99,95,113,97,103,109,106,102,99,109,111,99,87,106,108,111,105,96,115,100,95,112,104,90,103,99,101,107,91,90,90,102,98,98,103,106,113,109,103,97,109,104,113,97,107,116,105,111,102,113,106,95,112,97,107,107,109,97,92,105,100,105,107,105,104,109,115,105,109,105,100,116,104,101,105,107,115,109,117,106,83,105,106,109,103,107,109,102,112,95,101,121,93,107,102,92,108,108,96,119,101,105,94,94,105,101,95,100,97,96,97,100,101,107,94,97,99,91,97,99,108,96,105,105,106,92,106,94,100,108,108,106,95,109,95,104,121,99,97,97,102,99,99,100,108,97,99,100,96,104,113,102,97,94,100,100,91,102,95,104,90,103,107,97,112,103,99,106,86,111,96,100,113,103,114,110,110,102,93,98,107,103,98,101,96,102,113,92,111,90,105,99,98,73,101,110,121,103,102,98,90,100,107,92,102,97,98,102,105,103,94,97,96,102,108,98,101,105,108,111,98,106,99,110,101,104,102,95,101,113,103,97,92,107,96,106,102,99,113,95,103,99,97,100,91,100,98,102,95,103,99,95,85,103,98,123,103,106,102,113,97,107,94,99,95,105,103,111,91,109,101,105,113,101,99,92,101,107,109,106,102,111,117,98,95,104,100,98,106,95,106,91,109,112,106,105,102,101,106,95,106,110,105,108,96,103,97,106,98,121,98,104,92,104,106,95,102,96,106,119,100,66,97,98,102,105,100,113,101,93,115,102,109,109,109,108,106,110,92,105,105,113,99,114,103,102,98,99,108,102,93,103,106,110,108,100,105,111,105,109,113,102,104,103,106,105,106,110,103,104,102,95,110,97,103,89,103,103,98,95,102,91,104,108,100,107,106,109,95,116,102,99,108,88,101,103,124,116,107,95,118,104,103,103,99,111,116,95,105,101,86,104,101,107,111,104,106,115,73,109,104,100,99,100,99,95,101,108,103,99,102,104,107,105,115,97,88,108,99,96,109,102,105,103,110,102,86,106,105,112,97,106,117,109,98,99,106,103,111,105,123,108,105,104,105,104,109,69,108,104,91,97,102,104,105,101,100,105,90,100,102,110,113,98,93,111,109,99,106,117,101,114,94,101,99,69,104,119,108,110,91,95,104,96,109,93,90,93,113,99,106,108,96,124,81,104,99,101,100,108,103,109,109,108,102,100,106,106,89,95,108,104,108,104,101,100,109,107,95,98,98,102,101,96,98,99,99,99,96,105,109,102,100,107,95,114,103,115,115,108,100,103,107,101,100,92,83,100,101,96,106,102,96,108,107,79,95,106,100,104,108,122,107,98,101,107,106,109,106,107,96,107,101,105,103,108,117,105,107,97,103,94,121,118,95,104,100,120,99,104,110,104,120,108,102,102,100,97,105,105,100,87,104,121,105,96,102,110,106,97,111,102,110,105,101,93,105,108,91,101,94,102,104,117,108,92,112,111,99,110,114,112,106,98,107,100,100,96,65,99,93,103,93,102,104,109,91,112,107,97,96,98,109,105,90,106,92,106,105,103,94,94,115,86,94,107,108,95,97,100,102,101,111,99,96,104,100,110,100,106,102,103,110,104,100,77,96,99,95,101,111,103,96,80,105,105,95,113,118,103,103,97,100,106,100,96,105,110,101,96,104,109,108,99,100,99,100,107,106,100,102,95,104,110,105,103,93,109,110,94,106,95,125,103,104,96,112,111,113,113,103,100,97,105,115,115,98,101,99,109,97,101,105,103,100,97,98,107,93,137,104,129,111,112,109,93,104,103,111,95,106,106,111,94,103,107,96,99,114,112,102,107,102,98,91,108,98,98,92,94,115,98,97,100,113,113,100,100,110,97,98,105,103,112,96,106,99,87,114,107,98,118,111,97,102,100,102,83,100,99,107,104,106,124,98,101,92,96,99,108,103,110,112,107,109,108,98,101,96,99,103,99,106,113,96,102,94,114,107,115,97,111,109,104,95,103,102,107,99,107,102,101,94,110,106,101,109,101,105,104,100,101,93,106,102,130,108,124,102,120,101,113,106,103,115,108,102,100,102,113,103,101,96,102,98,101,96,98,107,107,103,106,118,106,96,102,106,105,128,105,103,109,99,98,109,104,106,94,99,98,103,97,99,91,98,106,103,97,108,121,99,104,99,108,109,106,110,109,97,101,110,110,110,114,103,122,94,108,98,99,101,114,102,99,102,105,101,91,91,104,112,104,105,106,103,117,100,101,97,108,111,86,102,105,100,105,116,113,92,102,104,110,105,113,100,102,99,113,115,114,101,104,109,102,101,107,111,97,94,97,103,100,109,102,93,113,98,108,111,102,101,111,109,100,109,107,104,104,92,112,111,115,98,103,98,104,106,93,99,107,109,103,117,96,115,102,95,101,116,87,102,101,105,104,104,104,108,111,104,109,101,108,104,105,110,94,104,106,97,97,104,92,118,105,105,107,113,111,104,113,109,109,100,85,88,100,113,102,106,102,106,96,104,112,117,113,93,107,106,102,113,121,106,101,104,112,105,104,92,92,109,105,110,81,106,113,115,112,110,102,102,97,98,107,103,105,95,103,105,115,105,112,109,111,106,91,107,107,107,116,109,110,113,104,101,99,108,103,102,104,96,100,93,104,94,104,97,99,108,105,102,106,108,108,116,100,109,102,99,97,108,109,112,94,103,116,101,110,109,101,105,100,100,109,94,113,101,114,111,96,106,106,101,106,99,112,113,103,107,103,87,109,99,101,103,103,110,111,107,100,115,113,101,115,107,100,103,113,68,104,109,102,99,97,87,107,100,124,104,90,108,106,96,96,107,100,102,89,116,100,105,103,101,96,98,95,99,107,99,101,94,114,109,87,105,100,94,102,125,106,110,104,103,104,109,96,97,105,118,105,101,97,106,104,105,94,116,103,106,113,99,94,106,115,102,107,107,116,101,113,107,101,108,96,102,108,97,107,114,101,124,103,106,104,96,102,109,95,115,92,104,111,103,102,91,106,103,114,104,107,105,109,109,105,115,97,109,113,113,107,100,125,94,98,109,109,99,101,98,103,88,113,112,106,104,100,103,107,102,103,104,95,110,110,107,95,106,105,110,98,106,101,101,112,103,102,107,108,90,99,97,101,96,109,103,110,106,97,84,100,101,120,102,101,103,103,96,95,111,119,108,103,99,109,102,99,106,107,110,88,101,110,112,106,106,100,101,109,104,103,91,100,115,104,100,103,97,107,103,101,106,107,102,101,101,95,97,98,104,118,98,104,113,99,99,109,107,111,117,95,85,91,112,104,91,102,101,102,96,111,109,117,80,105,104,102,108,104,97,99,99,108,102,102,98,93,107,98,111,101,90,117,95,97,105,97,101,111,99,113,104,108,102,106,103,116,109,108,116,90,120,93,101,98,100,104,100,108,104,98,108,104,99,113,104,101,103,103,105,93,107,95,87,110,102,99,99,110,102,104,89,106,102,109,111,109,104,100,109,105,97,110,110,94,94,106,105,106,96,116,108,110,117,98,98,107,96,97,105,99,104,100,112,94,101,99,104,100,102,121,90,99,119,100,101,103,100,112,101,102,99,106,90,109,102,98,105,112,107,100,107,94,103,133,94,114,108,114,110,109,105,98,101,109,93,103,100,104,106,100,107,104,102,103,100,98,98,103,97,97,96,100,102,111,86,103,102,102,95,91,103,92,107,106,117,105,90,94,92,113,103,83,101,105,111,116,101,110,111,105,111,113,90,106,96,113,106,113,111,92,108,99,112,105,105,109,102,107,94,95,109,109,106,105,100,109,105,109,95,104,99,101,95,96,89,113,107,106,109,99,111,114,102,121,103,102,99,94,105,96,95,97,87,99,103,103,111,98,103,102,107,100,109,110,109,103,113,97,97,110,105,111,110,104,107,108,107,102,109,103,108,102,101,93,93,114,96,107,97,104,107,112,95,88,110,105,111,98,94,112,100,102,92,100,102,107,106,99,102,99,110,97,93,95,65,98,112,104,104,99,96,107,96,100,93,103,100,105,110,115,100,95,103,111,104,103,110,91,91,109,105,104,108,97,108,98,100,85,105,109,97,98,105,91,118,103,103,98,112,111,114,106,65,97,97,101,103,100,104,102,113,100,93,83,112,93,113,103,104,111,94,100,98,102,109,108,110,115,92,100,94,97,105,105,101,101,105,93,96,108,116,104,95,93,104,104,110,105,90,95,106,101,101,110,113,100,107,103,105,107,99,81,116,87,90,79,90,98,105,101,89,109,98,113,103,96,101,113,73,98,106,100,89,99,102,106,98,95,102,109,101,100,99, +639.67511,111,105,89,92,112,103,95,96,119,91,94,107,109,110,101,107,97,107,109,95,105,103,110,110,98,107,96,106,114,95,104,97,99,119,103,108,122,96,111,95,100,113,90,116,107,106,98,108,97,106,95,110,109,96,117,99,103,96,110,97,94,110,97,106,99,107,109,106,80,113,109,107,114,104,98,106,98,99,99,107,104,104,103,93,109,104,100,110,103,108,88,99,102,106,102,84,105,105,95,104,99,108,107,95,98,92,102,103,134,91,98,109,108,108,107,94,108,102,99,102,94,99,98,108,106,95,106,98,107,99,108,91,116,138,111,92,101,102,103,98,102,98,93,103,109,101,101,101,98,112,107,93,106,98,101,104,110,102,111,107,98,108,116,109,97,111,103,106,103,95,103,120,96,98,104,97,91,91,114,86,109,103,113,103,101,106,96,104,110,105,111,100,100,101,92,99,91,96,95,96,94,107,103,99,86,100,99,104,117,107,95,100,119,117,99,103,107,110,100,105,100,107,104,102,99,106,112,95,110,108,98,107,111,108,94,99,103,106,116,96,109,102,114,111,94,96,110,91,99,93,103,84,116,107,96,109,107,99,96,106,92,111,105,108,116,103,104,98,105,94,96,99,105,94,106,113,120,116,99,104,101,119,100,100,102,112,110,101,99,104,105,108,92,110,110,98,104,101,109,108,101,99,110,102,97,113,99,114,96,103,93,106,109,111,102,104,95,89,111,98,98,105,102,99,97,96,94,104,98,107,101,110,112,103,117,105,112,107,90,109,102,106,104,99,102,102,120,100,100,104,105,91,104,98,101,119,113,98,108,105,115,108,113,99,105,92,98,100,96,113,108,101,101,105,95,104,99,104,110,106,112,95,103,100,92,109,98,89,106,97,122,87,97,111,79,110,95,104,104,90,98,106,99,94,94,98,108,107,113,94,108,99,118,94,104,102,106,74,109,100,109,103,95,104,103,104,103,93,68,109,90,103,96,115,95,98,106,113,96,100,102,105,99,121,94,107,90,95,106,111,102,107,99,113,88,92,112,105,102,96,101,102,104,108,114,105,99,103,100,101,105,107,105,99,101,101,92,110,106,114,108,108,118,101,101,94,102,99,104,100,108,103,121,91,88,102,96,100,114,97,113,104,108,104,106,91,98,113,107,102,106,109,102,105,92,100,71,113,97,88,105,105,102,96,96,104,123,108,102,102,96,114,104,99,102,104,105,91,109,119,108,105,102,100,98,98,96,105,94,105,110,99,117,116,89,94,107,103,104,107,105,96,92,100,97,126,102,104,101,103,106,103,111,101,97,113,84,109,103,108,93,98,107,118,95,98,104,100,111,108,106,105,103,106,116,113,95,109,107,100,90,105,112,101,107,112,106,105,110,106,102,103,114,101,106,92,112,96,116,98,110,95,107,105,93,103,113,114,102,110,109,105,97,101,90,114,102,94,118,97,112,114,99,105,99,93,99,111,99,112,103,104,96,94,108,103,100,110,105,114,117,117,108,103,102,105,104,103,109,125,109,103,103,123,96,116,107,90,105,99,99,94,111,98,104,93,107,95,108,104,101,129,106,108,110,101,94,96,94,107,97,107,107,101,100,105,98,106,107,121,106,97,112,118,101,108,101,116,106,99,105,89,108,100,97,109,104,103,110,104,95,106,103,92,105,98,99,91,103,121,106,124,106,100,116,112,119,99,90,103,100,103,99,105,103,97,108,94,102,104,103,104,94,102,102,99,90,100,103,110,102,99,110,97,100,103,111,106,97,107,106,109,112,106,95,115,107,108,111,108,113,114,104,110,116,100,99,109,110,99,101,97,97,98,107,109,92,103,104,108,117,96,114,99,108,95,105,103,118,100,98,108,115,102,100,114,114,106,90,102,110,96,104,92,98,91,111,103,107,108,106,106,108,92,95,97,98,94,96,105,104,104,103,106,100,105,94,103,94,106,106,99,88,102,101,106,109,104,108,111,103,104,109,109,91,99,100,108,102,97,104,95,97,101,103,109,98,104,113,102,108,103,114,105,95,97,117,107,100,100,105,99,113,100,102,72,103,108,94,96,93,89,113,104,100,83,105,106,100,93,102,108,99,100,106,99,101,101,100,91,102,112,106,110,95,102,91,104,125,95,94,99,108,90,95,103,94,107,103,75,106,104,82,100,97,105,103,108,102,109,105,104,98,91,104,92,119,108,99,93,112,103,110,98,85,96,111,95,93,95,99,93,101,101,106,98,125,100,92,88,109,92,99,96,100,105,103,112,95,105,106,96,108,99,98,97,114,106,95,104,100,106,110,112,98,115,100,104,91,104,110,104,111,118,106,99,103,106,103,99,114,109,86,94,86,94,103,117,116,106,109,107,93,99,96,110,115,98,112,114,95,108,116,109,111,96,120,120,107,107,101,89,96,116,103,91,96,108,113,95,100,115,103,107,99,95,108,100,93,106,101,104,98,136,101,110,107,108,105,106,113,95,105,87,105,95,90,106,100,109,96,94,104,105,105,103,98,109,110,91,94,111,106,105,103,96,107,109,99,96,106,110,112,98,115,117,106,113,101,109,111,104,104,110,106,105,107,96,105,114,118,99,84,100,103,112,115,103,105,108,104,109,112,107,111,104,106,80,99,112,111,91,108,94,95,101,102,96,108,100,117,94,106,99,92,102,93,108,104,104,114,97,102,107,108,103,102,96,116,108,91,100,115,100,97,96,109,99,96,94,109,109,108,95,100,107,106,102,106,107,99,99,91,101,106,110,112,102,103,100,102,92,102,107,109,109,92,91,104,101,112,100,96,99,109,109,102,115,92,103,111,105,93,92,108,83,87,103,106,105,106,113,107,114,106,97,102,109,102,108,99,114,100,110,98,119,110,112,96,104,112,99,109,108,93,104,108,101,108,94,108,104,114,100,104,104,95,103,107,104,100,99,106,109,108,102,104,130,101,91,107,95,91,104,85,102,98,111,102,108,123,91,111,107,98,111,94,119,94,113,108,106,101,108,101,101,103,130,99,103,100,95,105,102,112,103,115,120,102,106,83,102,93,98,110,104,111,104,100,102,103,103,134,109,106,91,100,101,100,95,110,106,112,106,104,101,105,96,107,90,105,103,104,107,111,102,99,103,107,103,109,93,106,107,124,100,87,100,117,102,98,97,100,113,108,89,99,88,107,102,115,94,82,106,88,105,95,99,105,124,119,111,98,106,107,121,96,91,105,105,99,97,90,104,104,105,106,102,113,91,103,105,96,107,113,101,110,109,105,93,110,102,101,101,102,111,99,106,99,113,100,91,97,109,112,113,96,107,97,103,109,100,103,92,93,95,93,94,104,105,98,102,99,107,109,112,98,113,91,100,99,95,117,98,104,110,96,110,103,88,103,104,100,119,116,110,88,106,108,108,92,114,109,126,104,102,109,102,110,91,98,91,121,104,102,94,89,106,106,112,102,105,99,96,95,100,109,105,97,81,109,94,104,96,102,105,109,116,122,111,98,117,95,102,105,102,81,129,104,101,114,98,113,101,102,108,104,100,116,97,95,98,105,85,98,95,102,110,94,117,113,89,96,129,104,103,106,98,116,90,107,88,98,121,100,109,97,126,104,110,100,100,102,108,104,103,105,112,113,108,98,93,96,103,106,107,110,111,108,104,115,104,107,124,93,103,122,107,98,103,115,114,95,99,100,106,98,95,100,91,105,102,99,94,100,116,74,105,105,98,116,94,113,98,103,105,109,102,99,101,103,92,108,106,99,100,98,98,114,100,105,101,106,108,97,101,109,102,105,99,88,106,101,98,104,121,92,109,112,118,115,87,125,102,95,105,99,101,98,108,102,98,103,105,95,91,100,99,97,105,104,102,101,103,88,89,99,95,100,93,96,97,101,99,94,106,128,100,95,96,92,103,94,99,98,97,117,93,117,107,103,113,94,101,98,95,111,114,103,104,94,95,112,105,85,105,97,103,99,78,99,98,99,102,115,106,98,100,104,108,98,102,107,84,98,98,90,99,93,100,109,105,84,93,97,116,113,105,105,99,83,103,90,94,100,111,93,100,102,105,96,94,105,104,92,96,103,87,113,111,104,98,106,115,106,107,99,105,101,113,95,108,97,103,113,99,106,119,107,97,108,103,87,103,94,95,112,107,110,105,102,100,94,89,100,112,104,109,96,89,101,110,118,99,92,109,96,112,102,106,94,98,93,99,98,102,94,97,111,111,107,96,99,87,95,106,100,64,96,99,101,104,99,99,101,103,96,105,105,76,88,104,114,103,93,95,104,107,99,109,101,100,97,113,101,106,96,105,79,106,91,104,107,109,99,106,103,109,97,105,106,100,106,106,104,97,91,105,101,109,104,97,84,97,104,94,111,78,105,88,109,104,99,105,107,101,106,117,94,103,102,92,87,98,98,105,100,97,108,109,106,98,105,100,112,109,103,97,97,106,98,105,102,102,99,99,110,109,103,100,109,99,96,108,99,115,102,103,102,117,105,100,98,107,106,96,107,106,98,95,98,94,98,106,106,106,91,114,88,92,106,109,97,94,92,103,105,106,109,117,100,100,98,95,93,113,101,98,97,92,105,100,113,101,113,113,99,98,98,97,91,107,93,115,90,116,92,91,115,107,109,98,95,102,111,102,111,93,96,99,85,89,97,92,100,110,101,98,106,104,108,106,107,98,101,87,107,99,105,109,100,95,113,109,64,100,96,101,87,94,102,101,99,110,88,76,115,106,122,100,107,100,98,105,102,100,132,101,105,102,85,102,103,112,101,104,105,97,100,105,96,112,98,87,116,99,106,109,99,112,118,96,95,90,107,113,103,97,106,92,87,102,105,103,99,106,91,112,102,103,113,91,106,109,104,105,112,100,105,97,95,80,104,94,102,90,103,93,102,91, +639.81622,101,89,100,106,93,125,93,97,93,83,96,110,87,95,121,96,106,98,108,106,123,111,92,111,99,95,90,88,108,117,100,109,98,101,103,101,107,113,95,98,101,106,103,109,101,102,102,115,106,111,110,107,110,94,121,99,99,106,113,113,92,107,104,97,105,107,112,121,103,98,102,114,100,109,103,100,102,97,112,113,95,120,115,97,99,112,109,103,112,107,100,104,106,111,104,103,102,105,94,94,98,105,99,104,81,106,117,97,99,97,99,93,116,98,114,98,108,105,105,100,111,91,104,91,104,103,98,95,109,106,113,99,96,105,101,102,101,111,106,92,108,103,104,88,103,101,120,125,105,106,102,101,121,88,99,118,100,105,104,114,91,107,107,99,109,102,117,117,108,106,118,102,125,109,107,92,105,97,132,92,105,112,101,106,99,106,97,99,99,118,105,96,103,103,94,105,100,103,101,103,109,101,107,109,105,108,87,108,119,117,106,107,114,105,99,102,105,98,111,117,104,116,95,104,105,111,95,105,106,91,98,103,101,97,95,98,95,114,106,91,101,99,105,106,114,101,100,106,104,103,104,113,101,105,105,121,102,108,99,103,102,96,108,109,96,105,98,112,108,89,118,108,102,98,106,108,90,113,98,99,99,111,93,105,94,87,97,108,98,98,113,96,99,101,96,109,99,101,98,103,91,106,110,107,95,109,101,116,107,110,99,112,98,105,113,103,105,109,97,94,111,109,128,101,104,115,112,95,119,104,88,103,113,96,110,103,123,99,100,82,104,104,99,81,108,110,113,110,102,99,97,118,94,101,98,107,112,105,114,114,108,105,105,104,101,102,100,100,116,110,113,97,102,99,105,102,110,113,104,119,106,99,103,102,103,114,111,106,105,121,98,100,94,106,90,104,100,105,98,105,114,104,99,91,102,97,95,117,100,95,98,101,98,106,106,90,117,97,118,112,100,95,111,98,106,98,95,75,99,124,99,105,110,114,103,103,100,103,103,87,112,102,111,109,102,95,82,108,99,106,106,117,95,109,98,104,108,99,104,103,109,101,109,113,106,99,115,110,101,108,114,102,93,91,105,104,122,103,122,104,100,102,116,105,98,103,103,96,111,106,119,112,119,108,85,113,96,133,109,111,108,98,99,106,110,102,105,108,99,104,109,103,90,106,97,112,129,103,101,102,106,100,107,108,100,100,103,101,103,100,113,99,113,109,96,103,112,108,109,111,117,106,101,98,111,111,111,93,118,102,118,104,99,120,104,105,99,90,102,100,104,106,113,90,103,94,116,107,115,101,113,94,118,109,109,112,103,99,105,103,84,107,102,112,99,117,101,94,104,104,110,103,117,99,104,108,108,99,116,76,110,109,109,106,97,113,109,109,100,101,94,112,100,110,92,95,103,106,118,110,106,107,125,106,103,109,109,109,97,110,102,119,91,101,103,113,107,97,115,110,107,90,104,103,111,101,100,96,100,101,100,103,88,114,109,103,98,108,105,104,117,110,105,104,104,106,94,102,110,109,113,111,112,110,94,103,104,95,106,108,113,100,113,99,107,111,101,100,102,116,102,105,110,99,108,98,104,99,113,107,101,106,107,104,105,111,106,114,101,113,105,110,108,107,109,92,104,124,113,95,108,98,99,108,97,104,97,108,112,107,109,126,105,103,103,109,105,101,102,95,102,110,87,107,103,103,97,109,100,111,104,116,113,118,111,113,100,101,111,89,105,105,99,99,97,94,94,111,113,114,108,116,104,100,80,107,114,103,109,96,104,105,105,108,104,122,104,112,97,105,103,104,111,106,112,110,104,112,117,108,113,112,96,102,101,91,98,109,109,96,114,100,99,104,126,105,121,105,111,99,104,100,104,106,96,106,104,99,113,102,112,116,110,109,95,79,109,107,114,109,96,104,100,120,108,102,101,101,100,100,97,94,98,115,98,111,110,114,106,99,118,114,100,100,101,112,103,108,104,104,92,99,108,109,108,100,105,100,108,121,98,114,108,98,99,104,100,104,105,100,117,96,106,113,113,90,98,109,106,110,111,105,101,105,94,105,102,91,101,118,95,92,103,104,102,98,101,98,102,98,101,100,121,108,106,107,88,100,100,88,99,95,98,106,95,94,109,96,111,101,102,105,96,108,102,95,97,111,112,117,100,106,107,113,100,107,113,103,84,98,111,104,99,113,106,104,91,96,103,99,105,104,104,100,96,112,98,101,98,101,106,112,103,110,109,117,102,112,111,110,108,90,88,109,112,113,100,104,85,91,102,102,108,103,106,108,112,109,103,111,99,96,100,98,110,107,107,103,116,103,106,106,105,101,111,108,102,110,116,100,97,123,120,107,105,95,109,120,106,110,111,113,109,111,109,105,113,114,111,96,114,117,117,113,110,98,103,114,105,104,108,112,109,113,113,105,100,107,101,93,105,104,97,99,102,109,102,101,98,100,99,100,97,107,98,96,93,109,103,111,100,105,94,90,98,91,111,100,110,106,124,99,110,103,108,102,96,106,83,121,98,103,98,104,112,106,107,108,101,100,80,105,101,98,100,100,109,102,105,110,112,101,100,95,98,109,98,96,106,101,98,98,116,101,97,103,105,99,114,87,106,105,107,109,96,105,106,98,106,113,93,105,101,105,102,115,97,116,102,106,120,93,115,102,120,100,108,103,101,113,106,81,101,109,109,98,121,112,96,95,100,96,113,110,99,107,113,103,114,106,99,103,111,108,106,102,108,115,104,109,101,105,105,86,104,114,112,102,110,115,113,120,115,98,104,107,105,108,102,104,96,105,111,106,104,94,96,107,94,105,112,112,100,104,98,105,88,106,96,117,107,108,105,110,108,117,100,87,101,113,107,95,101,105,106,91,102,94,101,104,118,107,110,108,108,99,105,97,99,105,101,107,114,106,101,112,100,89,100,97,98,104,102,102,102,121,116,107,111,108,89,109,96,105,96,101,108,102,103,97,98,105,104,91,109,107,95,107,85,100,123,99,103,108,108,99,102,102,103,111,113,100,93,96,117,111,100,102,99,103,110,101,115,106,106,100,109,92,102,98,106,93,104,104,105,98,99,103,99,104,109,116,110,107,102,95,112,95,99,96,109,105,113,114,107,106,100,99,93,106,103,104,104,103,112,97,100,103,104,104,106,104,101,110,115,93,104,98,106,115,101,99,109,91,105,107,114,115,113,88,107,112,110,97,105,87,100,102,95,105,106,113,70,101,114,112,111,108,109,100,113,104,112,100,101,113,116,108,106,94,109,93,99,108,120,100,128,117,117,101,103,96,111,111,105,114,107,102,104,101,108,100,98,100,112,106,98,104,106,105,91,102,103,107,106,109,104,108,107,106,99,109,115,104,112,100,93,97,97,108,111,102,113,96,99,98,94,116,94,101,96,89,93,98,104,101,106,110,106,99,122,91,105,103,99,104,103,94,111,109,101,113,111,95,101,110,121,98,95,91,112,110,99,106,104,97,118,104,102,91,101,110,101,106,97,108,104,119,100,107,109,106,104,110,99,109,111,105,105,107,84,106,109,109,104,98,101,101,108,108,122,95,107,107,98,102,113,102,106,113,94,93,96,102,104,86,108,100,108,102,104,102,106,107,110,105,106,103,109,104,103,113,94,106,96,96,99,99,103,121,78,92,109,103,96,100,97,106,107,101,91,103,100,109,104,97,102,106,106,97,108,104,108,118,100,104,96,102,96,98,103,105,110,102,103,97,124,102,114,100,108,97,94,93,114,116,98,104,109,97,102,107,79,98,108,101,88,91,95,116,103,101,87,104,114,100,110,106,101,98,115,111,103,111,104,107,99,98,98,118,86,120,92,97,103,108,80,106,98,109,105,116,105,99,99,94,102,96,109,112,110,98,87,99,101,101,105,105,101,100,109,106,102,110,106,105,112,108,98,97,84,100,116,112,92,101,99,103,99,104,105,105,108,126,91,106,102,77,103,110,105,114,98,117,109,113,114,101,104,108,94,101,91,105,118,89,100,99,104,107,112,101,98,118,114,106,111,110,91,118,102,108,94,108,87,104,106,92,103,101,104,98,111,105,99,97,102,97,112,97,100,109,113,110,97,108,107,106,94,112,101,110,122,108,100,113,110,109,105,109,108,101,102,104,93,94,95,116,110,97,95,91,101,94,106,113,100,101,109,101,107,96,109,111,102,110,105,129,103,105,114,101,100,113,122,103,112,97,99,112,96,101,105,106,106,100,104,100,108,94,97,99,99,101,104,101,96,98,113,101,108,103,102,96,94,109,99,97,83,127,105,101,109,103,117,108,108,101,100,107,113,106,111,116,103,105,107,112,119,95,110,94,93,114,108,103,108,110,102,103,109,112,113,106,101,91,87,112,116,105,106,111,106,95,105,107,81,106,99,112,98,114,96,111,120,105,87,101,96,101,112,123,106,103,105,102,99,113,100,105,103,113,110,107,91,104,104,104,109,102,106,96,113,111,102,104,103,105,110,92,111,98,97,120,106,95,102,101,111,115,101,107,100,106,117,102,103,101,113,104,109,101,93,112,100,103,104,103,104,108,106,108,82,100,97,98,100,100,106,106,118,94,107,107,102,113,108,95,110,128,85,115,108,75,122,96,87,107,107,122,102,102,101,87,119,94,109,97,110,93,88,100,95,102,102,87,97,99,106,105,103,105,107,105,99,105,106,99,95,105,108,116,114,98,104,101,113,100,105,109,99,106,98,90,108,90,106,96,118,112,110,92,101,104,104,91,110,115,96,108,94,120,107,103,96,103,90,105,112,120,100,119,101,84,106,93,105,108,104,96,87,98,97,96,113,112,117,94,108,108,99,99,96,119,100,113,104,101,108,93,107,100,98,96,101,91,109,99,105,100,108,108,103,97,95,96,119,99,62,100, +639.9574,111,87,95,117,96,113,102,101,99,99,100,102,90,107,100,102,92,118,104,107,115,104,95,99,101,106,98,101,105,117,112,99,107,103,104,104,106,93,91,97,93,104,115,97,99,91,86,105,107,95,108,105,107,106,115,94,107,91,106,98,93,101,107,86,94,91,92,103,109,105,115,99,99,99,100,104,102,100,102,107,98,95,80,111,98,98,106,92,109,94,121,108,100,105,96,93,98,101,115,116,94,96,103,105,116,108,108,108,97,112,105,108,111,107,104,103,89,110,100,94,100,100,106,103,113,100,108,109,97,101,101,109,107,112,108,107,105,116,87,107,96,109,97,103,108,101,100,92,98,97,100,99,97,102,96,101,103,95,71,113,101,111,104,102,104,101,103,80,95,100,113,86,90,104,112,108,104,99,107,114,98,96,98,107,107,109,99,96,112,114,105,98,106,101,124,103,105,102,107,89,90,107,87,107,102,104,93,103,115,101,97,97,106,95,102,93,102,111,101,107,100,92,101,107,108,102,109,109,96,97,99,108,99,109,114,91,103,105,101,92,103,103,101,95,111,101,67,107,98,103,103,114,111,105,97,105,94,100,102,108,96,98,130,99,95,95,113,97,101,99,102,120,101,100,110,99,101,108,111,98,110,109,101,104,95,97,100,101,95,104,105,89,111,110,106,113,99,95,97,111,101,110,100,113,88,104,112,120,95,113,107,96,105,101,103,101,103,111,104,108,95,101,101,94,97,95,101,97,115,99,97,87,107,104,109,93,103,113,91,108,100,98,103,97,108,98,103,103,97,110,109,98,102,98,101,101,100,103,114,119,95,101,101,95,94,97,79,110,109,109,107,89,116,114,105,104,111,96,101,113,114,103,91,106,100,96,103,100,110,100,117,103,109,106,108,96,99,97,99,102,108,96,102,94,110,93,97,100,108,99,94,105,107,118,98,101,83,96,107,107,100,110,103,111,104,100,97,99,113,112,111,100,103,96,101,106,98,100,104,106,109,97,101,107,101,102,96,103,101,115,95,98,99,103,100,111,99,95,125,109,101,94,105,104,100,92,110,125,101,98,86,91,119,101,106,107,105,110,102,108,101,109,95,100,100,99,89,105,98,83,112,110,109,99,109,92,96,99,101,110,107,104,106,105,112,109,105,109,97,104,106,118,97,104,103,101,109,104,100,101,102,100,104,105,101,105,109,108,96,114,105,108,107,101,95,103,108,88,96,107,100,106,102,92,110,101,107,105,109,103,102,103,124,103,106,91,104,97,98,102,128,90,92,95,101,100,100,103,95,96,101,107,114,94,108,103,100,113,92,110,74,100,103,95,106,99,109,109,106,91,111,108,101,102,106,107,100,109,95,98,90,108,106,104,104,96,90,104,101,109,106,103,112,106,100,109,98,105,95,104,104,102,110,97,109,104,86,102,101,100,97,73,105,109,84,113,92,105,111,126,100,106,101,95,109,94,102,109,106,104,98,117,99,107,105,108,111,105,90,113,118,108,96,100,91,100,106,95,93,109,100,102,105,113,110,112,98,105,117,100,101,110,112,98,97,99,109,104,139,109,98,112,98,107,111,114,100,101,98,96,98,102,99,105,111,109,97,110,104,103,98,103,104,100,92,105,102,106,94,102,102,95,111,107,99,104,102,108,99,95,91,98,106,97,95,99,105,106,112,96,93,104,102,103,102,100,93,106,103,106,111,94,95,98,93,91,100,102,103,100,99,116,98,111,72,103,92,93,109,97,110,107,112,99,109,109,102,101,109,106,92,104,103,101,101,86,97,107,99,105,105,101,105,104,98,104,90,101,115,99,94,90,94,101,96,103,100,103,103,97,104,90,96,95,112,93,94,116,109,105,107,108,102,128,98,100,84,91,99,98,101,94,95,106,86,114,110,96,102,105,97,92,96,101,106,101,102,105,106,94,94,105,106,105,98,109,116,96,107,101,82,111,103,103,104,93,96,97,101,102,93,106,100,93,96,105,112,101,101,102,93,118,105,104,114,109,98,106,95,98,105,106,92,102,97,96,101,92,92,97,99,105,111,110,112,93,110,109,100,100,115,107,105,96,101,96,94,86,110,99,106,94,127,100,114,110,101,107,105,98,101,99,99,98,104,100,98,95,95,104,102,98,105,101,98,100,101,104,98,103,102,102,106,105,114,106,108,65,99,108,106,108,108,110,98,101,101,91,103,103,106,104,100,110,109,106,106,123,93,117,101,109,86,100,99,89,113,105,96,95,96,105,100,112,105,101,92,108,106,103,89,108,99,103,103,109,95,95,92,106,106,117,88,100,103,101,114,92,108,105,123,106,117,100,95,123,96,103,105,104,116,114,99,103,109,105,98,129,105,106,118,108,99,121,96,104,106,106,109,109,108,113,113,103,107,99,100,93,99,101,104,111,102,102,101,102,92,98,99,108,101,108,103,103,109,106,99,102,102,101,111,100,106,99,97,110,105,100,100,107,106,120,97,93,99,114,104,107,114,98,104,98,101,105,104,107,99,104,117,93,106,113,115,105,108,95,111,95,100,121,106,110,108,105,125,124,101,110,108,115,107,112,113,105,102,90,98,105,102,104,108,97,106,104,92,113,98,102,103,118,84,116,106,93,87,104,99,105,104,115,109,93,108,106,110,123,98,111,119,93,102,114,130,108,104,103,110,103,106,109,111,96,106,103,109,110,96,109,101,111,104,104,104,114,103,115,105,101,117,133,96,105,115,111,102,107,103,99,102,106,130,107,100,91,92,100,98,127,107,99,103,109,111,109,97,113,103,111,116,101,107,106,105,102,106,104,106,109,96,99,117,113,110,108,112,118,95,96,103,103,107,121,100,117,100,96,97,106,105,115,121,84,101,106,115,98,116,115,117,130,100,97,106,112,92,101,102,97,111,79,99,103,105,98,94,97,106,102,111,104,103,94,93,106,109,105,110,90,112,107,104,100,105,105,111,97,110,107,105,99,105,108,123,117,108,109,106,109,98,94,106,109,96,101,103,101,108,102,102,101,99,103,98,101,107,79,98,100,97,106,103,105,100,100,104,107,102,103,114,112,97,110,108,91,106,97,109,68,115,101,100,106,111,96,90,105,112,107,99,103,104,104,111,112,99,106,95,101,113,94,99,96,92,109,113,80,111,97,106,102,96,105,107,113,111,104,100,112,113,108,98,117,112,105,127,127,117,108,121,98,104,107,99,85,76,109,109,102,90,97,96,105,101,106,92,89,110,116,106,98,105,120,108,114,104,116,97,123,102,106,112,104,106,101,99,117,83,99,98,107,108,98,107,105,104,92,99,106,104,100,102,116,93,107,102,102,104,109,107,97,104,105,100,87,79,98,105,107,100,96,101,109,102,98,105,117,100,104,96,99,91,74,95,118,107,106,100,76,111,101,102,100,105,108,91,108,115,106,110,109,101,111,89,107,67,102,104,117,107,106,106,107,109,113,93,91,107,104,110,117,106,102,117,97,99,116,100,101,105,103,112,109,108,108,98,98,90,94,98,87,106,111,97,103,109,98,116,105,107,106,109,107,106,103,105,107,97,101,106,110,107,106,105,113,105,89,114,119,107,92,99,105,107,118,113,97,104,107,100,102,96,107,105,116,113,124,84,111,98,113,88,104,109,106,111,115,106,124,110,106,106,115,110,108,95,110,106,79,113,79,107,101,99,109,92,104,98,107,110,100,108,87,108,113,107,75,107,108,95,99,109,106,108,104,110,102,102,102,106,106,112,99,116,102,102,108,102,109,113,97,94,106,97,102,117,100,108,113,101,112,109,104,83,107,113,84,107,104,101,98,106,94,109,117,99,112,102,97,101,113,101,106,105,102,101,116,101,100,100,105,105,108,101,101,93,93,102,104,99,101,111,94,109,97,120,97,105,91,93,107,97,91,109,102,108,83,106,103,108,97,119,69,113,102,105,120,105,99,99,104,101,108,97,100,98,104,114,99,92,100,112,98,102,104,105,116,103,109,99,99,100,103,96,106,107,85,96,94,105,92,102,108,111,84,83,95,99,120,103,113,111,105,99,101,100,107,107,107,117,90,117,109,99,99,102,100,116,112,103,91,95,108,90,100,108,113,103,113,102,110,102,101,101,115,121,108,114,106,115,99,102,87,117,109,103,104,100,108,109,106,101,82,91,108,111,101,97,98,104,100,105,99,101,108,90,99,111,108,95,101,111,101,106,106,113,96,112,101,101,105,99,100,110,127,104,88,129,117,112,94,103,120,109,95,99,108,109,98,103,108,104,102,117,96,104,95,111,98,94,113,116,102,99,111,106,103,102,99,100,111,101,111,119,95,113,106,113,103,102,97,110,95,110,106,102,109,96,88,109,97,102,118,116,124,110,101,104,109,104,80,105,116,98,94,108,127,91,117,115,101,96,95,105,113,104,111,104,95,114,97,107,93,73,103,103,102,94,103,87,101,107,113,112,109,97,108,110,104,103,92,100,95,106,105,98,119,118,102,104,98,98,105,95,116,122,113,98,92,103,91,102,105,105,106,106,107,115,112,98,100,104,108,103,97,109,103,100,99,112,99,107,105,97,93,99,101,103,101,115,92,103,98,113,109,119,103,95,97,90,99,109,114,102,105,103,110,112,102,102,95,106,93,93,97,93,92,90,108,96,104,97,109,105,109,94,100,102,92,114,109,98,102,101,108,96,96,92,115,105,120,109,107,97,116,99,116,105,110,107,106,99,107,84,103,105,106,114,117,101,103,99,91,100,109,118,97,109,106,91,120,102,117,106,112,106,98,102,80,109,100,104,94,110,108,105,101,93,99,103,90,105,95,67,104,84,103,108,97,113,105,94,98,106,101,95,104,98,93,101,106,106,100,112,113,95,103,102,117,97,106,107,93,101,105,84,94,114,96,87,97, +640.09857,113,105,94,95,96,96,104,100,96,113,103,103,87,101,109,93,102,106,122,99,112,92,102,88,120,91,94,118,103,109,105,80,105,95,99,105,72,112,101,103,95,106,92,89,100,110,98,112,106,108,106,108,97,102,96,100,92,93,89,92,98,108,114,101,101,116,105,108,105,99,109,121,94,96,107,111,94,96,87,108,111,118,97,100,116,99,89,91,106,116,82,107,106,96,97,104,106,99,114,102,98,101,101,102,101,102,108,101,107,105,115,100,107,105,110,107,111,100,97,81,93,112,101,104,118,115,102,101,109,101,119,109,102,112,108,106,96,112,109,94,97,112,110,114,100,104,107,108,113,115,110,95,105,99,104,117,98,107,106,105,107,112,120,115,120,107,111,116,106,118,111,94,96,109,101,99,111,100,106,106,100,99,117,105,113,89,104,95,108,95,128,113,92,105,110,103,118,107,95,105,97,93,109,108,97,113,101,106,109,104,97,100,99,108,99,105,109,111,108,92,113,103,104,110,108,104,109,100,90,100,87,95,107,96,83,109,113,103,119,108,100,104,108,105,109,104,114,101,99,120,118,97,101,96,111,104,94,93,92,96,90,99,99,95,90,91,115,142,98,112,98,103,101,114,110,106,105,116,114,104,92,108,108,113,95,108,108,102,107,94,104,102,107,100,111,104,117,95,103,108,84,102,86,89,95,108,109,107,112,95,88,105,105,119,105,104,112,101,99,109,100,101,114,112,106,100,94,96,109,110,102,97,100,115,109,97,112,105,102,98,113,109,104,104,111,114,107,113,106,104,104,102,98,109,103,105,105,112,98,113,102,111,99,90,64,107,102,95,94,107,104,99,98,111,104,114,118,111,98,108,110,107,104,114,111,110,96,110,107,105,123,94,107,106,98,103,106,104,103,101,106,103,112,96,102,95,109,111,110,104,98,91,99,94,102,97,95,104,101,99,105,108,88,103,98,98,105,109,105,121,113,104,106,89,104,95,103,112,96,108,102,105,105,115,95,100,101,102,104,91,99,113,108,96,110,102,90,93,106,105,96,101,112,105,114,104,105,86,95,117,114,103,95,108,113,94,99,115,110,97,91,109,106,104,94,104,96,90,103,105,104,115,107,94,108,112,99,121,109,116,106,107,113,109,102,119,95,102,107,115,103,103,105,98,100,102,108,99,101,101,102,107,119,87,94,106,105,104,96,95,95,108,120,91,106,92,103,99,104,113,105,98,104,106,72,108,108,96,97,101,106,106,95,111,102,96,96,98,90,101,105,109,109,117,104,98,99,113,96,109,112,101,102,108,107,98,103,104,96,100,137,112,105,110,104,97,103,102,107,110,103,108,103,95,79,115,99,104,114,105,99,116,105,110,107,107,100,97,106,112,106,106,110,107,113,104,104,103,113,98,122,115,100,105,115,105,100,105,119,114,95,112,88,100,103,104,97,100,107,107,107,117,110,112,100,92,101,97,99,108,105,96,102,103,96,109,99,118,108,118,117,111,108,117,106,94,106,101,105,99,115,103,102,121,90,112,107,112,111,95,113,105,100,104,108,105,91,105,105,106,110,124,82,105,109,103,101,101,117,108,104,102,120,98,100,108,99,98,112,103,108,101,101,92,93,106,105,117,92,112,107,113,113,106,127,95,100,105,106,133,107,102,100,100,104,100,105,105,106,116,103,102,95,105,116,91,112,109,98,108,106,99,120,106,109,88,101,112,111,103,100,113,95,104,103,111,98,117,104,99,93,106,103,102,90,109,106,113,109,105,99,100,100,98,118,118,98,115,127,107,108,109,104,106,129,98,93,94,103,110,101,105,109,103,112,105,110,104,105,110,105,99,104,66,119,116,117,117,113,96,94,113,113,102,109,110,103,109,100,106,111,101,109,100,99,79,104,91,109,111,94,103,113,126,109,99,101,108,95,101,101,91,110,105,90,112,118,94,107,104,102,93,98,114,109,125,104,94,102,101,113,112,107,100,95,118,104,106,106,115,99,114,98,118,87,98,107,105,101,99,100,103,94,100,103,106,119,96,94,99,113,107,91,108,102,96,114,96,97,106,104,94,117,105,97,102,101,114,90,97,109,105,107,95,111,95,113,98,102,97,92,101,101,102,104,102,93,106,108,105,90,108,118,122,113,100,111,111,95,91,89,98,112,112,110,108,109,88,86,114,104,117,95,96,119,102,101,102,104,108,92,105,97,99,118,107,86,103,107,108,119,102,95,102,104,99,105,122,108,97,103,109,109,104,110,92,99,107,116,109,109,106,109,100,121,110,111,112,111,107,108,106,99,110,117,100,116,107,107,96,83,114,87,97,105,121,99,105,90,105,117,108,111,116,107,97,100,110,98,99,100,104,96,104,97,100,115,102,116,118,114,108,109,120,95,107,95,105,107,102,101,102,105,133,100,120,106,83,120,89,104,109,84,121,111,112,103,112,106,94,99,101,105,120,94,106,95,89,116,104,105,112,105,94,87,99,98,87,102,113,100,104,99,101,65,114,94,87,113,101,108,111,102,113,88,79,100,98,104,89,112,107,115,95,110,98,108,114,112,98,88,111,106,111,87,117,114,109,117,92,110,105,104,122,106,105,111,95,104,104,99,100,113,108,113,101,105,116,115,116,111,92,95,88,103,108,108,99,110,109,108,107,98,99,112,110,106,96,112,113,107,111,100,105,117,102,113,107,110,92,102,99,108,103,100,117,112,97,103,99,107,96,109,110,98,109,113,101,102,101,116,112,122,107,99,106,100,118,99,95,78,100,112,109,102,104,117,99,110,122,102,104,106,98,103,94,83,120,109,112,103,114,117,103,102,96,106,99,95,121,92,117,107,117,110,108,94,102,103,121,104,97,103,103,107,92,91,113,123,102,98,119,110,107,91,96,104,99,104,107,96,101,111,106,105,106,105,112,110,101,113,105,99,102,99,105,99,112,94,110,118,100,97,108,106,101,99,105,88,96,101,107,99,99,104,100,100,112,106,113,117,111,104,102,110,96,103,102,104,90,113,118,107,102,105,98,101,102,100,105,104,97,109,99,113,95,111,98,105,99,114,111,106,106,104,97,100,97,111,95,105,106,111,104,110,107,95,112,111,95,101,103,109,106,105,95,102,107,95,84,111,98,106,103,102,108,110,119,94,91,109,106,107,111,90,91,107,93,106,100,116,107,104,99,104,113,104,105,109,104,100,102,99,108,105,92,110,110,99,108,106,113,99,104,107,107,87,103,101,106,101,113,107,102,104,116,94,95,114,102,108,115,99,103,127,113,100,93,101,104,105,98,112,128,108,113,104,106,105,100,103,113,110,106,115,118,98,113,102,108,103,106,108,105,106,108,110,103,105,105,101,117,109,103,107,98,91,104,115,102,112,103,100,109,107,105,106,103,102,97,95,103,112,110,106,104,106,103,98,104,112,88,96,99,96,94,109,101,109,104,103,105,92,100,85,83,102,102,100,103,104,102,103,113,98,104,111,111,102,103,107,111,74,126,104,100,106,109,101,116,104,109,102,114,115,100,117,97,113,105,100,106,93,104,110,101,97,81,107,92,109,84,102,104,99,95,86,132,125,109,101,99,106,105,110,108,107,91,91,110,99,116,114,101,104,89,114,96,104,102,103,102,106,102,106,97,108,100,112,105,96,106,108,101,109,105,97,113,108,105,110,108,95,105,102,88,98,99,99,95,106,103,111,104,95,102,98,110,108,101,99,111,106,95,101,88,104,98,99,114,115,100,114,100,95,115,95,114,109,104,115,98,105,102,99,109,112,99,104,104,107,104,110,111,106,94,107,107,107,98,104,109,108,86,98,117,111,95,109,111,105,110,113,110,108,107,108,113,102,115,97,107,116,108,103,110,106,98,105,95,103,90,99,100,118,103,105,112,103,110,101,111,103,99,109,96,111,94,107,100,104,94,99,111,102,118,84,92,104,99,105,89,96,111,95,102,102,98,100,107,104,111,101,110,96,101,96,100,102,103,106,99,106,104,110,95,95,99,103,112,107,100,102,96,99,102,93,110,95,100,109,98,91,102,87,117,111,112,104,103,106,105,109,95,107,100,95,100,107,96,94,108,94,114,115,110,100,109,98,107,108,106,105,102,101,111,102,112,93,101,100,99,101,98,100,97,108,107,109,104,100,100,92,101,111,120,113,107,119,96,116,110,105,109,107,111,97,102,109,104,96,97,102,110,100,100,103,92,108,110,118,93,103,87,94,95,106,109,92,98,107,103,104,104,99,112,101,94,105,116,99,104,117,98,98,101,108,104,106,94,101,111,101,107,105,99,107,108,101,104,105,117,112,108,111,115,100,106,109,103,114,98,104,94,114,108,90,107,107,105,105,103,115,113,96,107,114,99,96,97,102,94,98,107,108,105,110,102,126,102,113,98,102,113,111,105,94,107,109,88,111,97,95,81,103,95,100,117,101,108,96,113,103,97,99,98,118,98,101,98,98,98,101,96,106,94,124,111,110,101,100,113,85,111,106,108,102,105,100,102,106,123,99,106,102,109,99,123,120,97,108,109,122,102,110,96,113,96,106,107,100,110,107,94,107,95,106,75,94,102,97,93,101,108,116,101,102,111,106,100,105,97,122,101,100,102,114,100,113,100,105,110,97,103,94,109,109,99,99,107,105,102,112,102,95,91,99,112,104,127,104,101,96,100,115,101,107,108,119,88,107,110,115,91,98,99,101,102,93,97,104,109,93,109,110,123,102,101,100,98,107,102,112,106,105,102,102,116,105,98,87,107,109,105,117,101,102,100,102,103,106,87,107,101,106,104,100,107,106,105,111,106,111,101,109,106,120,109,94,98,108,119,86,105,103,92,83,95,94,100,97,116,106,109,99,96,105,96,100,109,106,102,100,107,111,101,98,103,97,103, +640.23975,89,96,109,105,97,101,89,98,83,100,100,93,96,89,95,90,104,92,97,88,94,109,107,111,97,111,113,108,102,103,99,122,90,103,100,100,96,94,97,105,112,112,105,114,107,107,102,98,99,105,99,113,105,91,103,91,98,103,97,106,111,100,98,99,109,121,109,85,103,107,105,98,102,107,98,110,97,109,113,117,110,103,111,97,103,93,121,86,96,100,109,97,109,101,96,102,116,98,90,102,105,101,85,98,104,105,90,108,102,98,102,97,119,85,103,99,107,111,99,98,95,108,107,111,96,105,110,97,115,109,114,88,101,110,101,98,106,104,106,97,103,99,109,101,101,96,99,106,96,103,104,107,100,87,82,98,100,97,108,102,102,108,91,102,102,104,112,90,99,93,103,109,111,91,102,101,105,97,105,102,95,98,103,102,96,114,99,106,99,94,111,90,105,115,106,88,120,101,104,102,103,89,108,102,92,105,103,96,106,108,97,102,103,87,102,117,100,103,101,99,104,113,99,106,96,118,111,93,117,109,98,112,107,82,115,105,92,101,114,98,112,93,102,105,90,96,95,102,84,108,108,99,90,88,106,113,97,101,96,100,100,95,117,100,99,109,101,94,102,89,116,110,104,94,91,107,98,73,108,99,94,96,95,100,100,109,97,114,106,98,87,104,113,104,106,101,101,109,105,100,93,117,114,113,101,116,114,95,103,115,104,129,99,109,83,101,107,102,99,110,98,100,119,111,95,92,96,110,103,95,95,107,116,108,100,105,114,98,113,108,112,102,99,102,103,117,102,100,103,98,109,109,102,102,103,101,114,101,92,107,102,105,100,102,124,101,94,102,110,114,103,95,103,103,95,94,115,90,102,108,104,102,102,108,100,95,105,103,106,103,124,99,97,105,98,99,100,96,96,109,115,112,97,108,91,99,95,101,107,98,118,103,106,114,106,104,113,108,99,99,79,96,106,111,95,88,117,103,108,110,99,98,106,95,105,104,103,110,101,105,112,91,109,106,101,114,96,96,111,106,91,109,113,122,104,107,99,86,102,106,101,100,100,100,105,102,103,94,109,104,108,95,99,95,94,106,109,103,104,102,98,107,112,96,123,104,110,96,109,101,111,100,93,98,94,125,105,84,106,104,104,105,110,103,105,109,108,102,97,103,105,108,109,97,99,117,101,103,112,101,106,99,108,99,102,121,103,91,106,100,100,106,100,107,101,107,110,110,114,113,95,106,97,106,110,109,96,106,105,113,95,107,108,107,102,120,103,114,93,105,106,94,116,113,109,116,100,102,107,97,95,101,107,105,109,101,80,102,103,110,98,93,110,110,117,99,107,98,115,101,97,95,85,105,107,97,102,95,102,99,106,106,100,95,98,95,102,99,112,89,105,115,106,101,101,94,98,100,117,95,100,103,101,96,90,102,105,103,111,108,99,116,120,115,115,113,106,97,101,106,115,116,105,95,107,97,103,102,113,103,108,107,99,113,110,118,100,100,111,104,99,108,113,104,92,102,96,101,110,101,99,101,86,92,105,95,104,98,108,111,112,98,106,98,94,113,101,104,95,102,87,108,100,121,102,105,101,107,108,79,102,106,102,99,109,105,98,108,101,103,96,100,89,104,91,107,86,106,88,109,97,95,112,110,90,106,104,99,108,104,109,102,108,102,84,118,94,100,100,106,109,105,95,112,105,109,102,104,97,105,97,92,113,103,109,109,105,119,114,102,102,85,92,104,98,109,66,109,113,100,100,98,120,111,74,102,87,113,115,94,92,100,125,113,106,100,96,106,101,97,104,99,94,105,106,92,112,99,108,111,96,99,103,105,117,107,101,100,90,102,98,100,98,83,97,99,100,101,109,86,102,103,106,105,105,100,107,114,112,104,103,100,94,102,115,99,109,100,107,110,97,105,110,108,97,101,94,92,103,80,107,111,104,113,103,105,100,96,98,105,100,105,109,100,102,95,96,95,109,102,106,115,101,102,103,103,107,106,94,107,101,104,103,99,95,110,93,104,104,100,101,111,103,105,97,119,102,105,95,94,105,105,104,108,106,107,106,94,110,101,100,105,102,106,91,101,94,111,110,117,105,113,97,110,104,103,107,113,99,88,99,109,110,100,103,105,97,110,103,113,117,104,115,105,95,96,112,97,110,108,103,104,76,109,111,98,104,90,91,104,102,129,101,104,102,116,107,104,111,106,106,103,104,99,134,85,96,87,105,99,100,106,105,128,108,103,87,100,102,102,112,100,102,107,109,85,103,110,114,104,114,105,87,99,115,101,108,102,94,104,105,121,101,106,105,81,102,105,106,99,122,94,99,110,117,114,102,112,82,130,96,104,114,103,107,91,99,111,104,99,94,103,89,107,104,117,111,106,106,108,108,104,112,110,107,103,104,96,86,107,76,132,103,109,104,105,98,96,99,93,79,98,125,96,97,114,95,96,121,111,98,101,95,121,108,111,106,94,106,109,101,114,112,116,89,99,109,100,117,94,100,91,111,97,95,110,108,104,104,111,103,110,118,122,99,98,103,99,103,106,105,99,93,94,111,106,112,100,116,102,99,100,113,104,109,100,105,93,101,95,120,101,97,101,93,105,95,115,104,120,108,98,98,134,102,106,108,91,111,104,103,103,103,87,107,117,99,108,114,109,99,103,115,96,97,108,102,101,108,98,110,100,95,112,115,105,108,107,103,101,106,102,103,115,115,132,120,82,108,102,100,111,117,98,87,114,114,116,110,106,100,85,94,114,94,109,109,119,93,101,108,108,113,110,84,94,103,107,112,112,113,107,98,110,113,115,95,111,110,104,104,89,113,106,107,109,100,110,105,100,112,97,110,107,114,111,100,115,91,111,107,103,97,106,106,109,109,108,91,107,102,103,109,122,112,103,98,96,115,108,113,94,111,105,112,109,116,98,102,111,97,97,105,97,91,109,99,92,110,104,98,100,80,101,104,110,106,104,105,103,94,112,108,104,94,108,102,110,112,100,106,115,113,99,112,106,106,100,104,98,111,92,104,111,90,113,111,120,111,107,84,117,98,116,103,111,114,105,121,106,97,104,110,103,84,90,106,101,106,99,106,118,101,98,102,100,108,107,114,109,95,113,118,122,103,93,102,107,96,105,111,97,110,114,111,112,108,99,102,104,100,101,104,104,91,102,105,110,94,104,114,90,109,113,99,109,107,102,98,106,97,110,105,110,104,105,99,111,96,106,102,118,102,112,106,99,128,109,106,119,106,111,99,105,106,103,104,89,101,111,109,95,103,100,105,112,100,94,113,85,104,100,98,104,100,105,124,106,101,103,112,104,100,106,113,105,106,71,103,104,92,99,106,107,120,104,113,105,106,102,92,106,110,108,104,102,108,99,109,105,119,109,105,104,103,102,101,96,105,95,99,107,112,94,94,99,113,103,116,102,110,116,88,116,91,102,91,99,101,104,98,100,99,100,101,105,95,115,98,104,109,109,95,97,107,114,107,99,113,107,107,108,98,100,105,108,98,100,99,96,103,107,102,104,108,113,107,111,97,101,103,96,105,104,102,94,92,105,98,113,113,91,102,102,98,117,98,99,92,107,102,100,105,109,85,101,102,105,102,97,102,100,106,96,106,103,95,117,104,98,113,99,110,108,99,98,101,109,98,119,110,99,90,108,104,72,95,95,105,108,110,110,106,100,95,93,103,108,103,102,111,118,96,110,109,102,113,113,104,102,94,109,102,101,101,93,100,109,108,109,114,97,111,97,100,103,104,99,110,110,107,83,132,98,99,102,96,90,89,105,105,110,104,110,98,96,99,74,103,95,103,102,104,110,106,102,97,109,82,99,94,118,105,94,98,107,99,98,119,107,100,104,99,114,98,116,104,117,107,101,105,94,104,108,93,92,102,92,119,98,106,95,104,99,100,94,104,104,105,93,112,101,109,99,107,104,100,104,110,97,107,100,98,110,86,92,99,101,104,102,119,102,116,100,88,100,106,98,114,105,117,103,94,115,107,99,101,111,104,102,116,98,109,101,96,107,106,104,117,88,92,109,110,89,95,110,114,94,109,107,99,99,113,105,92,109,106,101,97,109,107,114,102,109,109,109,108,102,82,103,106,107,109,104,106,106,106,104,100,114,102,101,97,111,104,117,108,104,92,104,110,96,107,101,99,117,114,95,108,99,99,116,108,111,116,100,107,107,104,104,110,106,107,99,103,111,103,103,99,101,121,103,106,108,100,104,98,108,93,95,91,102,100,106,99,106,105,95,77,98,99,104,110,98,103,114,118,98,94,115,94,105,116,105,108,99,101,98,97,111,98,121,99,111,98,90,99,102,104,117,99,93,103,101,102,99,100,104,108,108,102,109,117,101,108,105,104,110,114,106,95,99,103,116,101,112,106,109,98,96,91,97,100,121,117,91,96,108,107,105,123,99,97,98,97,102,111,111,105,106,118,96,115,106,107,110,114,104,107,115,104,87,102,102,95,93,113,98,86,82,105,102,87,102,110,110,106,109,89,106,109,98,102,118,98,107,102,81,110,108,108,112,105,107,105,114,101,102,96,110,102,105,104,94,102,104,102,103,96,99,127,87,92,111,103,98,102,103,104,106,109,108,108,108,110,104,121,114,109,103,110,108,110,108,99,84,95,113,97,106,109,104,95,106,99,101,91,100,122,106,96,100,132,101,101,85,99,94,107,97,116,101,87,105,110,98,103,114,112,97,96,102,103,87,102,86,99,74,99,95,107,108,98,97,98,113,104,95,103,95,115,92,96,108,110,95,112,110,98,101,100,143,122,83,108,103,121,109,103,109,109,89,99,93,114,113,103,97,103,94,110,109,91,104,102,102,91,115,86,96,103,122,96,102,104,103,99,96,101,94,108,88,113,117,123,101,113,102,113,106, +640.38086,113,118,99,106,85,100,102,86,112,94,94,102,105,103,109,110,91,104,106,111,97,114,108,105,100,107,116,100,106,107,106,106,106,110,108,107,117,110,113,121,81,103,95,87,100,105,106,109,104,117,118,103,103,95,107,104,97,100,104,97,110,120,115,100,105,98,95,115,102,106,98,91,90,120,104,110,105,91,103,125,100,98,98,99,104,97,109,104,115,104,106,104,97,103,100,102,99,99,132,114,109,94,105,109,103,102,105,98,105,117,101,100,108,110,103,98,92,102,99,98,106,92,101,112,103,112,99,94,101,100,111,95,98,102,98,116,96,113,100,111,96,110,114,99,107,101,121,98,98,105,96,94,110,101,70,104,124,102,107,99,108,91,102,106,96,100,93,83,96,111,106,101,106,95,106,104,110,96,98,101,97,108,96,102,103,104,99,92,118,102,106,110,99,101,92,109,107,104,98,109,109,100,107,105,103,105,98,109,113,101,101,104,111,110,108,131,103,101,101,110,101,100,105,99,100,107,113,98,117,107,98,105,95,99,105,99,103,101,113,108,121,118,115,109,103,114,112,103,95,100,111,102,102,110,108,104,94,102,108,109,101,112,98,105,102,102,123,102,96,129,105,125,121,101,111,95,119,95,103,99,109,99,106,98,108,108,96,103,109,114,102,105,106,111,92,105,97,97,111,98,108,108,102,110,97,115,102,113,101,107,98,103,102,107,103,107,102,98,110,102,117,104,95,103,102,104,99,114,110,103,109,104,105,108,105,104,101,112,98,106,109,95,123,103,121,109,95,114,106,100,94,110,102,113,101,106,112,95,117,109,110,112,112,91,96,99,106,105,100,105,113,93,98,112,106,109,111,104,95,104,99,108,96,109,97,97,95,102,112,103,104,97,104,109,106,112,86,100,104,110,104,95,96,117,100,96,103,105,94,102,95,100,108,110,110,109,91,95,111,102,99,104,114,111,85,112,102,105,108,108,110,85,104,97,99,114,103,102,98,102,117,91,104,98,99,96,108,112,93,118,100,90,98,107,105,105,103,97,109,106,94,102,109,106,114,112,105,99,111,106,110,103,100,110,112,109,92,108,111,103,103,112,112,100,102,94,113,105,114,99,107,110,106,107,98,106,99,97,103,102,105,98,108,113,99,113,109,111,90,111,106,92,99,115,109,101,95,109,99,112,109,102,109,103,91,108,104,108,107,98,84,103,113,109,96,95,114,89,110,109,101,97,87,87,100,109,111,99,101,108,107,108,105,103,96,109,100,104,123,110,96,112,107,105,103,115,107,93,112,95,96,93,115,99,95,107,65,96,104,107,108,103,104,85,111,97,118,116,104,105,128,109,101,107,111,102,109,101,114,106,99,112,106,104,104,102,98,103,109,93,105,108,101,114,106,110,115,94,98,107,100,88,104,94,119,106,90,111,113,107,98,106,111,114,101,99,110,99,97,102,99,107,102,100,100,100,95,112,108,113,110,91,106,104,108,118,103,108,111,107,110,103,109,114,93,95,108,88,108,95,106,107,83,98,103,109,106,98,110,104,93,103,114,91,101,103,92,106,106,114,111,94,95,108,93,100,110,126,108,100,105,99,101,104,109,102,110,100,83,104,111,102,104,104,110,96,103,108,111,104,113,104,107,104,98,112,96,95,99,107,92,107,94,110,95,107,98,103,113,100,101,113,96,91,106,77,103,114,102,105,122,107,97,104,108,106,97,103,98,114,94,101,101,103,98,98,94,102,106,104,116,104,119,98,96,102,109,104,93,111,95,104,100,106,91,106,109,96,98,107,107,102,90,104,109,106,93,99,117,114,96,95,94,100,117,111,82,90,102,106,108,95,102,108,102,113,114,89,113,113,99,96,99,107,108,110,100,121,105,109,108,106,111,108,116,112,104,100,114,99,92,108,100,108,115,112,109,97,97,105,101,93,112,108,104,109,103,104,113,93,103,96,107,98,102,92,104,104,113,95,112,104,105,102,101,101,113,103,100,105,95,104,111,99,96,91,102,97,96,96,108,109,117,109,107,98,97,117,110,97,106,113,112,123,103,105,105,96,100,106,118,104,109,100,98,103,105,108,110,120,112,109,100,100,101,108,110,107,111,109,103,107,104,108,101,98,100,105,99,99,118,102,106,109,98,94,117,103,106,101,99,95,102,102,109,98,104,96,102,110,115,96,104,99,107,105,116,101,101,108,105,115,103,109,108,114,97,96,95,109,104,94,98,95,94,93,111,120,102,96,111,109,87,107,105,99,101,105,90,102,112,95,105,99,112,99,101,107,104,110,99,106,104,116,102,103,107,105,142,109,102,98,120,94,101,105,103,100,110,103,99,105,114,110,107,103,100,118,90,110,115,112,93,104,108,106,118,115,105,109,119,106,102,112,109,104,105,96,95,106,105,106,96,105,101,74,96,101,106,101,96,102,99,90,105,97,105,114,100,108,94,107,107,113,105,107,107,105,106,109,110,109,112,100,111,108,95,94,96,98,102,95,86,95,92,127,96,110,103,106,102,104,100,101,95,89,101,107,107,106,99,96,99,104,111,107,105,111,110,105,87,103,107,100,100,101,103,96,102,107,100,94,103,106,91,101,119,104,114,93,117,96,106,112,102,106,112,99,113,112,102,102,100,90,100,99,105,88,96,94,95,101,102,101,103,101,112,102,99,94,92,118,94,106,119,106,105,98,99,106,117,104,108,105,95,99,118,101,104,102,97,105,77,96,112,113,79,107,104,113,105,101,97,113,104,102,104,108,113,108,113,101,101,112,119,102,117,90,99,124,111,100,101,103,117,109,103,107,104,109,107,106,97,100,109,108,106,106,115,101,107,112,109,103,106,100,101,109,104,107,114,101,108,105,113,120,100,103,97,117,96,117,108,100,107,113,104,105,92,102,95,113,100,100,102,94,97,105,104,100,97,100,112,112,80,102,94,92,111,102,109,104,99,106,109,115,111,105,99,102,87,103,99,104,100,107,95,109,89,105,104,103,107,103,106,97,113,100,113,109,110,99,104,102,112,97,109,106,71,112,88,95,102,112,98,103,98,109,99,90,97,105,112,106,97,113,104,110,98,103,109,109,114,104,110,95,106,107,104,104,96,111,107,109,106,98,107,105,99,98,95,97,101,109,103,97,103,105,98,91,102,99,112,96,103,109,95,105,116,106,97,104,96,110,105,98,112,111,104,106,91,107,106,100,97,111,103,101,101,112,109,99,95,112,100,92,115,96,117,104,108,115,99,116,98,102,108,110,102,100,98,111,113,90,96,97,104,106,108,105,112,105,91,123,104,101,91,102,109,99,99,105,107,114,94,103,106,109,102,98,101,103,104,113,99,91,95,102,100,104,102,108,118,107,93,96,106,108,102,108,99,116,123,95,95,94,99,101,104,102,106,86,93,94,106,104,95,107,104,112,93,93,99,106,105,96,105,94,112,101,97,121,95,89,98,102,97,100,107,105,104,104,94,95,92,102,97,99,108,110,110,107,93,100,93,118,93,101,90,107,109,111,109,99,105,104,102,117,96,104,92,107,104,109,105,108,106,100,115,103,102,91,109,98,106,105,94,99,88,87,103,103,120,107,107,108,111,99,97,98,109,97,101,101,105,114,94,112,102,100,102,98,117,108,98,101,114,101,118,84,97,110,94,105,103,113,102,92,104,100,113,105,98,98,105,100,94,101,107,97,102,91,115,106,105,112,127,101,106,108,99,108,103,97,102,97,107,104,99,101,109,100,105,97,93,101,100,111,107,107,105,94,107,86,110,97,120,94,114,100,102,104,108,104,104,62,109,117,107,102,109,100,99,108,85,89,100,109,114,113,99,102,97,89,102,104,99,101,97,105,108,103,103,99,105,108,97,110,117,103,102,110,109,110,106,100,107,106,105,96,106,93,98,99,96,104,110,98,102,101,103,106,112,121,98,108,115,102,100,104,103,103,104,103,102,103,113,101,101,98,107,114,100,104,109,102,108,107,96,104,108,102,103,117,105,100,106,101,105,107,105,95,101,102,84,111,105,105,97,90,105,103,101,93,109,121,105,97,110,100,106,96,100,101,104,92,112,108,95,94,105,100,101,99,112,107,96,110,106,96,114,105,102,105,103,117,112,102,101,98,100,103,98,108,101,105,101,116,103,95,110,99,109,105,105,99,103,107,99,110,111,116,97,103,108,110,108,96,101,96,101,103,97,113,121,108,105,104,99,112,104,96,115,99,115,107,97,109,100,94,96,94,106,104,105,110,93,81,97,108,97,101,103,102,92,105,108,105,96,93,109,114,102,99,118,105,103,103,101,120,107,109,114,105,96,96,106,76,94,108,119,112,102,93,106,73,105,112,113,110,89,122,99,93,107,99,93,117,109,99,99,95,99,109,100,98,95,100,100,99,103,93,100,103,105,99,92,109,111,104,104,99,100,96,105,111,105,113,112,102,98,112,109,116,102,93,103,95,102,96,103,98,117,107,115,89,105,109,104,96,107,101,87,101,104,105,119,98,112,104,104,101,95,106,106,113,107,103,110,104,99,110,107,101,105,98,110,113,111,99,106,108,109,100,118,114,114,105,102,99,106,101,102,101,117,99,102,95,99,103,106,97,104,102,108,95,96,112,111,95,117,107,104,100,101,106,106,111,84,113,90,93,96,120,110,104,97,95,96,99,101,96,102,112,99,114,120,104,96,70,110,102,109,108,98,94,107,102,101,105,94,96,91,103,94,102,109,102,99,103,94,95,102,112,110,103,111,99,109,103,101,106,91,99,100,109,98,76,98,110,94,109,105,87,114,101,92,96,117,117,113,104,100,102,105,103,100,105,96,96,94,109,98,118,94,107,105,108,100,103,107,109,122,95,109,105,98,110,98,106,106,109,94,109,96,95,100,106,88,111, +640.52203,107,103,84,91,92,92,104,103,103,77,97,99,94,99,112,94,99,109,89,106,123,105,99,120,93,115,100,103,115,100,115,98,102,108,101,111,98,97,116,92,110,102,95,105,95,112,106,107,99,104,107,107,108,105,112,91,97,109,117,99,96,99,99,96,100,112,100,112,105,105,109,95,106,101,101,98,100,99,107,103,114,91,100,104,112,84,109,106,94,101,104,101,108,67,121,105,90,97,98,90,107,112,92,95,106,101,99,109,107,94,99,105,93,111,105,99,111,99,100,98,96,121,109,109,106,112,103,104,105,92,109,105,104,115,100,98,106,106,106,108,79,103,104,103,96,98,108,86,101,112,123,128,107,91,102,86,97,105,114,101,94,98,112,114,102,99,102,99,112,99,99,111,101,105,106,113,97,104,113,95,104,106,104,102,102,98,104,106,104,102,96,98,104,120,79,94,102,108,111,110,101,100,98,97,105,99,99,102,89,106,139,98,96,104,117,100,98,100,84,92,103,93,92,95,107,103,104,105,101,103,114,74,104,103,109,104,106,108,105,110,102,96,105,99,86,95,100,109,98,99,106,95,94,107,106,103,101,109,105,106,94,112,104,102,96,105,111,110,106,103,110,113,106,102,113,101,105,99,98,96,97,110,88,117,99,104,101,105,115,102,97,106,109,126,106,99,92,88,95,105,108,100,90,108,95,102,114,103,100,113,89,92,108,121,100,99,100,90,104,102,103,101,117,105,108,103,82,98,111,104,112,84,106,99,106,113,101,98,108,114,102,113,93,97,92,96,101,107,107,102,93,101,102,99,112,100,98,104,98,112,102,96,77,109,99,99,98,111,110,114,109,101,96,99,104,109,93,94,97,91,106,90,98,106,86,103,95,103,106,89,111,104,100,103,102,108,105,117,83,112,96,98,95,106,103,107,105,100,109,110,87,95,94,106,98,106,97,106,96,100,96,121,93,85,100,97,92,108,111,102,87,105,82,96,103,95,101,106,97,101,110,91,101,106,107,110,99,102,100,114,104,108,112,97,106,104,104,101,103,99,96,93,94,113,97,106,109,105,93,99,95,120,95,87,110,93,97,115,94,111,103,112,109,99,104,97,102,98,89,108,100,101,93,99,102,104,99,102,99,99,103,104,102,97,84,93,102,101,101,105,93,113,104,104,97,85,96,101,91,91,110,95,110,104,117,110,120,116,95,97,113,99,110,105,101,101,110,99,90,112,96,101,91,105,102,105,102,109,91,108,105,105,114,100,106,103,111,102,96,105,102,106,106,103,91,102,106,97,100,95,83,99,101,99,100,105,94,102,108,111,106,100,106,102,116,97,108,110,100,88,101,101,71,96,93,116,95,100,91,96,99,98,93,96,102,91,87,97,106,111,105,117,107,96,105,110,105,105,113,101,101,111,105,99,105,94,92,105,109,102,99,97,94,92,97,93,98,89,96,98,108,103,109,100,96,97,84,98,89,108,111,93,99,109,98,114,110,95,97,109,108,98,108,111,95,98,99,101,106,101,107,96,95,93,92,97,98,94,93,104,98,87,114,87,105,99,91,99,112,114,100,105,98,101,115,105,105,111,111,95,101,109,103,99,115,115,118,103,99,105,106,99,112,109,108,96,101,86,105,108,108,95,106,103,97,102,103,88,103,102,103,109,105,95,102,109,110,102,105,101,116,92,95,103,109,107,109,93,121,95,104,114,95,92,105,113,99,93,107,110,98,117,105,102,106,84,91,100,113,95,106,98,102,105,98,107,103,101,105,99,114,99,100,117,102,109,117,106,121,136,106,95,114,104,106,107,98,112,102,104,107,79,100,77,104,109,116,110,86,106,98,106,98,99,112,117,97,104,108,109,79,111,129,95,100,99,108,97,106,102,99,103,109,102,97,100,93,105,107,101,105,125,115,111,105,97,95,98,92,106,103,92,103,101,87,108,106,105,105,104,106,104,100,89,91,108,101,95,100,105,102,113,96,118,92,105,104,97,106,88,107,110,105,88,95,91,92,102,109,103,99,104,105,108,92,100,101,100,100,105,104,131,93,110,93,101,85,114,110,97,97,108,113,118,100,96,99,100,98,96,113,99,104,102,90,100,103,91,92,114,113,99,106,105,85,100,93,89,105,99,97,101,100,104,112,107,95,116,98,110,120,87,118,109,116,102,103,103,95,91,102,102,112,106,109,99,96,98,108,110,105,104,106,96,122,92,109,91,107,109,103,110,101,90,95,97,100,97,90,110,94,102,99,101,93,100,116,99,94,73,102,112,84,105,113,96,102,91,106,107,105,100,97,102,105,99,105,107,98,108,114,106,103,102,100,99,103,101,110,101,90,106,102,103,108,104,100,112,105,100,121,96,108,107,103,112,103,105,110,118,109,107,105,103,108,108,110,121,97,100,102,111,100,128,94,104,98,94,100,108,91,106,100,97,100,115,96,97,109,101,127,112,97,102,110,104,129,105,110,109,112,111,107,103,106,100,93,95,94,106,101,103,109,104,104,102,99,102,107,94,93,107,99,119,105,98,93,107,108,113,108,96,112,98,100,129,107,107,100,101,112,113,121,99,111,106,100,87,103,96,99,101,91,115,99,97,104,97,109,97,106,105,106,98,102,95,103,102,100,101,123,92,94,96,113,113,104,103,106,105,100,100,108,106,99,102,118,101,103,102,109,105,107,103,112,112,121,96,105,109,98,95,97,89,113,108,85,89,107,109,118,108,102,109,110,100,109,106,91,95,94,98,110,99,110,115,104,105,99,107,102,103,96,102,105,90,104,100,103,87,124,119,94,96,109,105,100,108,95,99,107,104,108,88,104,81,105,103,107,106,99,96,104,105,111,97,105,101,103,109,101,111,107,99,110,100,92,99,114,104,113,97,108,114,111,103,94,97,102,117,96,105,116,108,100,104,95,106,110,112,99,115,109,103,100,112,92,108,102,106,102,99,105,108,98,112,113,114,101,89,102,95,103,94,105,110,101,104,106,102,90,97,105,107,107,107,113,118,102,110,112,106,102,106,106,92,100,99,109,105,101,109,106,107,103,98,114,101,117,107,95,98,102,109,109,106,113,111,102,104,102,115,97,106,121,106,103,120,97,96,104,113,104,103,101,91,99,100,105,97,106,100,102,107,93,103,110,100,107,109,97,85,67,98,95,99,97,105,101,102,96,106,97,112,108,94,121,109,90,107,100,96,100,114,114,90,112,112,102,87,113,101,117,100,109,92,109,100,99,99,111,100,112,123,76,120,101,103,111,104,96,99,93,107,115,99,97,71,101,102,99,91,106,107,106,117,99,99,93,93,115,110,102,110,97,97,87,94,101,110,89,101,98,112,91,106,108,100,111,106,98,114,107,94,109,105,103,104,108,104,98,104,100,117,97,99,108,87,109,107,95,92,96,109,106,100,104,107,96,106,76,111,110,102,96,117,104,104,108,90,103,103,102,106,105,101,96,105,101,103,112,105,100,100,101,95,105,104,106,105,101,106,106,125,104,106,106,102,108,106,107,112,102,109,98,109,109,108,103,107,93,106,108,110,109,102,104,107,109,104,109,91,115,117,98,105,101,112,109,109,107,98,112,105,106,115,109,93,110,104,101,98,99,121,101,96,104,116,109,114,104,103,111,110,84,113,101,109,109,118,99,104,106,99,91,100,111,104,108,102,107,103,102,99,92,95,104,102,104,117,97,91,110,99,100,106,109,108,102,102,113,105,109,99,100,96,106,101,106,101,111,111,113,104,105,108,91,103,92,108,120,103,94,106,103,105,87,106,113,101,100,102,95,103,108,90,104,95,96,115,112,105,106,94,94,102,92,109,97,108,97,99,100,77,98,108,112,95,97,108,122,107,103,100,99,100,103,109,100,100,105,106,94,102,91,97,108,106,93,97,114,99,99,100,94,87,106,100,103,104,102,104,112,100,100,106,117,86,106,107,100,101,106,99,79,102,115,107,126,102,117,95,107,102,101,105,103,105,96,108,97,108,105,105,116,103,95,102,103,122,111,95,109,99,120,112,110,98,101,105,97,104,99,115,112,98,104,106,104,104,104,95,105,103,109,97,106,112,99,93,100,108,101,112,104,105,99,122,96,99,110,96,104,102,111,113,95,104,90,83,102,93,99,90,107,100,90,115,106,115,103,109,104,100,101,105,100,112,94,103,108,106,106,124,104,98,120,105,113,117,110,105,104,108,93,109,91,86,104,104,106,92,98,103,106,94,76,110,100,92,99,107,102,110,105,99,120,95,98,101,103,95,107,101,111,118,103,97,85,124,93,107,102,116,91,97,97,110,103,101,101,125,107,113,105,97,91,103,113,104,95,111,97,97,99,100,106,113,114,107,110,98,95,91,103,68,106,109,111,100,116,101,96,110,105,110,106,105,83,125,96,91,114,105,106,107,101,98,104,111,117,96,107,106,95,97,85,112,107,102,107,109,112,98,113,107,107,109,116,94,95,75,103,114,107,99,101,101,105,85,104,99,107,103,118,99,107,107,92,95,109,106,106,104,102,111,113,110,106,99,95,104,94,105,116,110,116,98,102,107,111,104,113,105,91,114,102,101,101,105,105,92,105,109,112,106,105,120,106,96,93,102,115,91,98,106,97,106,109,89,103,94,95,99,115,100,102,97,104,105,105,98,96,99,112,107,91,90,112,113,102,99,92,112,104,92,109,94,100,101,107,100,88,100,114,97,100,92,103,108,93,106,91,110,94,92,100,100,105,103,108,94,102,105,114,97,95,103,81,88,97,113,117,87,98,100,110,98,89,103,113,106,107,92,109,78,92,98,100,109,109,100,103,91,108,108,100,99,105,109,98,105,95,98,98,106,100,98,105,86,100,108,113,94,98,111,95,114,97,90,98,101,98,102,106,108,110,91,109,88, +640.66321,112,103,109,90,86,117,110,93,100,109,99,98,99,100,107,89,91,103,104,102,121,106,110,105,106,106,116,101,101,105,96,105,70,103,102,90,107,94,108,118,96,105,101,108,78,98,89,99,99,114,103,100,98,96,95,96,100,106,112,108,102,97,101,107,92,101,98,104,112,99,107,95,95,98,98,107,87,94,97,117,104,102,101,101,118,109,93,102,101,103,111,95,111,94,95,86,108,92,108,80,99,87,98,112,102,115,79,100,105,105,105,98,102,105,99,102,79,92,97,116,115,102,103,103,99,96,106,100,114,95,103,108,110,115,109,114,88,109,108,100,106,108,105,113,98,98,110,105,101,103,95,101,101,101,105,103,101,92,102,98,84,99,105,107,118,103,111,98,99,96,100,108,96,112,92,105,100,106,122,95,112,113,106,108,108,97,101,91,107,107,111,99,106,97,99,109,105,102,105,100,93,99,101,118,97,101,105,102,111,107,102,103,96,103,98,96,105,95,103,108,90,110,102,110,114,105,97,98,106,122,113,119,108,103,122,101,109,103,100,94,102,99,108,103,94,98,106,106,101,114,99,96,101,109,87,106,106,117,97,93,104,122,114,100,104,100,107,106,99,99,109,95,104,100,104,92,110,103,100,95,108,103,101,106,100,98,100,109,99,101,90,113,92,106,112,108,101,102,108,103,103,77,107,124,97,117,113,102,108,117,95,104,95,103,104,99,105,107,99,110,92,104,107,108,105,105,103,109,107,120,98,92,106,105,103,106,109,97,101,102,109,99,104,106,105,111,85,108,129,112,85,113,100,95,100,101,105,104,102,102,104,105,104,91,96,101,105,95,108,107,105,103,104,113,107,99,105,92,109,104,111,118,101,106,94,97,104,96,113,101,111,87,98,106,95,87,103,103,113,108,93,103,113,101,117,96,98,104,98,109,120,104,102,105,110,108,91,105,103,107,98,105,103,109,107,92,83,99,111,113,98,113,105,104,108,102,95,112,109,97,117,109,113,93,99,101,108,96,102,112,108,121,108,108,102,102,80,104,116,103,98,89,103,116,111,111,108,99,102,104,101,94,94,108,105,101,104,115,109,105,103,97,113,101,109,114,112,90,110,104,105,101,115,107,90,100,109,83,114,114,110,107,113,100,97,106,100,107,85,88,95,105,101,92,96,107,103,112,98,101,112,103,103,110,96,111,107,105,101,97,102,104,104,103,100,105,109,92,105,110,98,109,101,96,95,106,99,106,95,111,99,103,104,102,106,100,113,95,104,109,104,104,95,113,104,99,103,96,108,113,100,95,79,101,103,102,118,103,98,113,103,96,111,95,91,96,104,103,102,100,104,101,98,93,136,102,93,96,111,110,100,102,100,97,108,103,107,101,94,102,95,106,100,113,111,115,97,93,91,107,107,109,109,95,103,119,105,118,88,97,106,96,94,105,99,103,100,102,108,113,105,95,111,99,105,99,106,94,98,110,95,103,102,106,114,107,108,88,110,106,113,104,90,103,109,103,100,91,106,102,114,115,123,101,108,100,118,108,97,105,103,98,103,92,100,109,109,101,98,86,98,109,98,110,112,114,104,126,111,84,104,97,103,103,103,103,105,103,109,99,120,106,119,112,110,110,94,100,117,106,101,95,100,102,97,100,99,107,111,99,109,99,129,102,110,110,96,92,106,86,92,102,121,103,135,111,103,113,103,119,111,88,97,82,103,108,111,107,106,128,105,106,101,105,105,113,110,104,107,108,100,99,107,95,100,107,102,94,101,107,108,108,112,114,107,101,103,106,101,112,98,100,112,120,101,113,105,114,112,112,101,107,111,108,103,113,110,94,107,95,113,94,102,88,112,106,110,88,107,113,116,112,116,107,104,105,106,114,107,109,101,98,103,112,112,106,117,110,105,101,101,112,107,115,104,101,96,106,96,102,97,96,95,111,75,121,92,107,99,103,96,96,109,109,94,110,103,105,118,108,108,92,113,109,101,109,106,105,95,105,108,98,114,115,112,107,84,115,112,105,101,108,105,109,111,107,103,99,92,107,112,105,92,104,108,108,99,109,109,94,109,102,103,106,107,97,91,98,101,109,102,110,99,103,107,102,96,116,103,101,107,113,121,121,83,107,103,101,105,113,99,105,66,101,100,105,108,101,87,103,106,99,98,106,101,101,98,93,99,115,112,99,98,105,110,99,106,111,108,113,105,110,117,99,112,102,102,101,103,98,129,114,101,101,98,99,114,105,99,103,109,64,110,94,87,99,109,118,97,105,97,108,97,101,107,109,98,112,99,104,87,106,107,98,109,91,100,103,112,106,108,113,104,103,103,97,118,101,70,105,121,111,99,96,96,98,101,117,118,109,107,115,98,109,102,100,100,121,103,130,104,112,104,106,105,98,91,100,107,103,96,105,98,120,96,91,98,95,96,97,99,106,106,97,104,96,92,100,111,102,104,104,107,112,96,98,108,91,113,107,95,109,104,106,106,101,103,100,100,119,109,101,101,98,109,100,88,106,109,100,99,106,108,98,108,92,101,116,99,115,117,106,108,100,98,108,107,112,100,100,108,112,115,96,108,113,112,112,97,103,94,99,111,117,88,93,104,88,104,99,114,102,111,113,118,100,104,86,99,98,111,97,92,86,103,103,104,103,113,105,97,102,104,112,98,104,108,95,111,102,106,110,98,107,99,111,117,92,107,105,99,92,113,97,105,134,104,108,83,104,100,106,110,101,102,105,108,119,101,102,106,113,106,99,108,101,106,106,105,103,106,101,108,94,112,114,102,96,90,99,103,110,106,106,96,98,104,98,105,99,109,104,106,108,87,98,99,113,88,106,108,104,123,106,87,98,98,110,112,100,102,103,104,90,110,102,112,112,94,113,102,116,144,124,107,102,116,112,119,107,111,99,112,109,106,107,105,111,105,109,108,106,106,110,110,103,102,113,105,119,106,114,106,103,106,107,112,100,110,95,114,118,90,104,115,111,127,108,110,106,103,93,106,117,111,114,108,102,98,95,106,104,102,107,112,105,98,113,96,95,114,98,107,107,101,106,109,92,116,109,104,117,99,104,107,95,113,108,113,93,110,106,117,96,108,104,111,80,101,98,98,109,101,104,119,104,98,109,112,103,113,90,110,103,112,112,101,103,91,110,95,100,113,105,92,99,98,107,112,106,108,100,105,110,102,110,101,102,103,98,110,110,108,108,99,99,107,100,104,115,105,113,98,94,92,112,101,101,81,95,104,106,100,110,107,100,102,107,108,97,105,103,102,105,99,100,89,99,101,96,111,112,103,109,98,115,105,104,101,115,105,107,113,100,63,98,103,98,113,104,107,95,112,111,98,108,106,102,103,94,76,109,109,108,106,118,110,105,102,99,104,94,76,107,108,98,103,101,117,100,96,112,105,110,100,103,107,102,108,113,103,100,94,100,102,98,107,111,100,95,104,103,97,104,96,113,101,107,94,92,106,96,100,109,103,98,112,113,98,107,114,106,106,107,106,111,102,102,106,96,103,106,105,99,99,113,95,101,103,95,99,102,107,104,99,113,117,114,104,112,118,108,104,108,110,112,108,111,108,93,101,101,106,104,109,109,100,106,99,112,104,103,101,106,106,89,106,108,107,97,110,110,103,103,88,105,115,98,116,104,97,98,106,102,107,101,93,109,107,106,103,106,101,121,101,111,97,108,110,109,113,101,112,124,117,116,108,119,107,116,98,105,116,95,106,109,105,118,107,96,110,113,101,90,102,104,94,107,98,109,106,101,105,92,107,105,92,99,112,114,99,100,114,111,97,98,113,103,104,107,114,102,109,105,115,104,113,107,92,102,98,98,99,100,97,99,100,93,104,91,87,107,95,117,107,124,107,102,95,109,101,87,97,97,111,100,106,104,96,100,99,102,107,99,82,121,110,104,103,95,104,94,105,95,102,105,112,107,104,100,89,96,104,106,83,85,108,100,92,103,112,105,90,80,106,106,101,101,103,105,110,96,103,100,106,99,91,100,109,102,106,94,107,105,102,105,101,98,106,109,110,109,99,111,99,118,101,105,106,102,109,97,108,110,97,102,109,111,106,103,110,104,98,110,108,101,100,104,103,109,103,97,109,103,105,110,93,90,103,107,94,88,108,108,106,112,100,108,105,105,103,95,105,101,97,103,107,116,99,92,116,102,106,107,106,109,107,102,108,102,111,105,104,105,99,116,98,100,126,88,109,99,109,103,98,107,101,102,103,98,104,112,103,104,101,107,113,103,108,100,98,108,113,101,97,111,110,111,85,106,91,97,106,99,114,98,113,107,106,116,106,107,114,104,136,105,103,117,113,114,99,88,100,87,111,105,103,109,105,108,112,105,103,91,96,109,118,65,79,104,106,108,99,105,109,122,114,101,101,110,107,91,112,115,115,98,97,112,97,104,108,94,96,115,100,99,88,103,107,107,92,107,107,103,100,99,110,104,105,117,105,116,115,110,116,110,99,93,100,105,93,99,107,99,105,94,102,104,106,99,106,99,97,99,114,101,105,113,101,113,101,119,123,112,105,105,106,84,111,105,96,124,109,115,116,99,105,106,113,104,102,99,119,102,106,96,103,109,99,99,101,90,103,104,103,106,114,106,107,100,110,94,101,103,106,105,107,111,100,99,109,92,121,105,90,103,87,96,105,98,101,105,93,107,102,84,106,110,98,110,110,108,95,117,114,101,101,96,104,97,98,104,95,99,114,114,108,87,92,90,113,102,97,111,108,107,104,112,111,105,106,102,113,110,97,106,113,96,109,95,99,108,97,119,108,112,78,103,95,95,112,97,97,106,106,98,87,89,112,102,103,115,99,102,109,103,124,102,108,105,95,115,108,108,100,109,118,111,113,111,108,77,106,90,101,106,104,94,111,101, +640.80438,117,104,97,105,107,94,110,99,101,95,98,82,98,105,98,112,92,107,103,105,108,97,104,100,96,109,99,95,98,120,110,96,98,105,104,91,114,105,105,108,113,105,104,113,103,100,100,96,92,111,113,90,107,94,108,98,100,103,115,88,88,105,90,105,101,110,95,105,105,117,106,97,97,91,104,99,99,100,103,103,99,103,111,98,104,95,93,110,99,104,103,95,96,100,95,92,96,101,96,113,100,114,95,92,102,112,93,101,100,101,93,105,106,104,104,106,91,102,99,101,93,108,106,89,108,116,104,94,110,108,103,95,101,108,112,83,96,87,106,98,95,106,100,107,107,97,106,88,118,83,111,109,109,98,104,85,100,91,97,99,100,110,107,92,106,100,101,97,93,93,100,102,94,103,81,98,98,105,110,101,98,112,96,105,100,99,99,102,111,131,101,92,104,86,99,112,109,102,107,102,100,104,96,91,88,97,103,103,104,116,95,102,102,114,97,114,101,99,98,101,102,110,97,90,105,114,101,112,94,95,108,100,108,111,105,98,105,108,105,94,94,99,110,101,100,105,94,104,115,109,101,101,100,101,98,124,106,105,101,99,106,102,105,107,100,108,109,103,105,102,104,106,108,106,108,108,92,102,91,115,100,99,103,92,103,107,90,105,102,129,101,102,107,109,106,105,112,104,96,116,106,106,102,94,87,112,99,100,95,103,93,112,100,105,71,91,100,96,109,105,107,80,98,68,106,97,105,101,114,107,96,105,105,100,101,117,89,103,101,100,89,114,99,96,95,102,97,79,106,95,92,72,97,108,107,104,100,98,81,94,103,94,94,105,132,98,103,116,100,102,102,101,97,93,98,101,100,105,102,95,97,104,97,102,100,98,94,96,100,102,102,93,100,112,73,105,97,110,100,96,104,112,114,104,108,102,116,101,98,95,107,89,103,101,110,104,94,99,117,138,113,99,98,96,108,104,107,98,103,97,103,99,115,98,102,92,84,113,90,97,110,106,107,110,100,84,103,98,110,99,102,109,103,106,141,106,107,104,108,104,104,97,99,101,101,116,107,105,99,95,102,86,98,110,92,110,95,101,96,106,100,105,99,96,101,100,106,98,89,105,102,95,102,109,90,98,95,94,101,101,120,105,108,103,106,98,100,100,108,102,109,101,103,105,98,109,112,94,102,91,91,98,102,94,100,103,99,90,101,114,112,103,112,102,100,100,94,79,109,112,101,99,99,98,107,99,103,99,106,114,103,117,103,106,103,101,99,110,94,93,101,81,97,112,96,98,105,101,101,105,96,99,72,101,107,106,106,115,108,101,105,106,107,87,103,106,105,104,116,105,110,97,94,100,102,101,103,114,115,115,94,106,105,107,101,87,99,107,113,103,103,99,95,105,107,96,100,96,110,98,101,108,99,105,108,119,99,102,108,98,99,100,116,111,101,89,116,92,109,94,109,99,107,112,94,93,101,99,89,109,95,112,106,100,97,108,104,110,105,97,107,97,102,101,98,94,111,96,109,111,107,102,86,102,104,110,112,106,106,99,88,105,97,87,89,92,103,95,98,97,108,107,108,114,108,104,86,88,99,101,100,104,106,92,95,110,104,102,102,111,102,93,93,102,105,107,104,112,106,101,100,101,116,110,91,97,104,105,99,114,98,91,96,95,94,95,108,92,96,88,110,100,103,103,95,117,103,104,113,101,110,87,104,99,101,98,101,111,102,99,115,104,105,98,115,95,71,106,99,96,102,107,101,102,118,104,98,88,113,102,108,111,116,82,100,112,105,108,108,113,106,109,103,107,100,112,84,106,95,112,105,109,102,100,100,105,113,92,109,89,103,86,96,101,99,106,112,128,104,101,95,113,104,106,99,100,110,112,103,115,104,102,104,92,105,102,107,98,104,107,112,102,105,95,102,100,120,90,104,102,106,91,95,120,93,111,106,104,110,103,105,108,100,105,111,103,109,96,95,97,112,117,99,102,97,99,97,99,99,95,102,112,105,104,110,99,126,102,105,116,102,99,111,106,104,96,109,99,109,105,103,111,106,109,97,95,97,103,109,97,105,106,99,110,111,118,97,108,102,99,106,96,85,102,109,106,110,109,106,104,119,97,100,100,106,112,115,109,96,93,103,109,103,106,109,97,101,108,104,99,102,103,104,109,106,104,101,94,108,103,94,103,100,92,95,114,103,96,112,104,98,104,96,109,103,100,102,109,87,102,97,100,106,78,109,112,97,99,111,113,103,105,93,101,101,100,98,102,89,102,99,114,102,103,101,107,93,111,93,103,96,116,103,101,104,109,110,118,107,100,95,103,97,101,99,96,97,102,112,116,107,105,109,101,91,105,98,102,88,99,101,103,105,115,114,108,108,103,110,102,101,99,105,95,92,95,100,105,109,95,93,106,98,101,81,89,95,117,100,102,93,103,100,105,104,104,94,100,106,94,99,128,94,102,112,106,109,91,114,97,103,100,113,90,107,105,98,107,114,104,90,88,114,109,104,109,107,97,106,110,109,106,106,100,106,101,94,89,94,105,103,88,105,101,96,102,83,99,111,106,105,113,109,103,100,100,99,103,95,102,109,89,105,103,101,94,109,101,106,106,116,104,104,102,111,105,117,108,101,119,93,97,108,104,116,113,95,92,116,112,106,93,104,102,99,106,102,104,109,96,94,105,114,122,104,104,101,100,113,104,108,114,111,103,98,100,109,105,92,95,104,98,105,104,103,110,103,104,90,104,95,107,93,107,108,120,102,98,92,113,91,102,97,94,108,103,105,97,113,109,96,123,100,100,104,104,101,106,105,96,98,100,106,102,102,94,100,89,98,99,109,103,103,113,103,92,89,102,97,103,100,91,113,110,95,100,106,99,104,100,105,112,102,87,88,94,112,106,105,98,116,103,102,98,113,107,102,91,106,103,90,117,98,108,99,113,107,80,102,111,104,92,93,116,105,100,110,115,96,103,88,100,114,99,99,112,94,99,106,104,113,106,104,103,99,98,99,113,101,108,104,101,97,114,109,97,106,108,101,105,94,111,96,106,110,107,103,106,104,107,102,111,105,101,109,103,121,105,92,97,98,112,97,105,108,103,106,111,110,105,99,94,99,113,112,99,93,104,110,113,105,98,116,98,110,97,95,97,99,106,98,89,109,84,99,111,104,92,97,109,96,99,112,96,100,107,117,112,89,109,96,111,110,108,113,103,95,115,109,101,90,112,104,96,99,95,106,102,91,109,108,104,115,113,109,112,96,111,107,93,109,93,111,101,97,108,105,107,102,108,105,87,109,113,101,97,103,107,106,98,108,105,101,94,98,102,96,102,98,87,92,109,102,106,106,103,106,108,97,103,101,108,97,100,112,102,96,108,101,103,101,98,111,100,111,110,105,106,109,96,90,95,104,98,104,109,98,92,95,108,102,106,112,100,103,105,110,105,100,96,110,100,100,99,103,100,98,100,104,98,117,110,97,102,94,95,103,113,95,101,96,111,100,100,114,85,100,102,106,94,113,99,106,103,103,101,111,110,96,106,103,104,107,104,103,103,100,123,95,106,115,99,109,103,102,96,107,106,92,111,93,93,102,105,95,114,99,99,98,101,94,100,106,98,89,113,120,107,104,113,109,108,111,99,108,110,107,91,104,107,102,107,96,100,111,104,105,111,105,109,105,109,101,105,110,103,104,90,100,104,95,96,93,102,104,107,96,113,96,99,79,111,101,94,113,103,99,103,101,105,96,97,104,99,94,96,97,93,108,100,112,101,103,92,98,95,104,98,92,102,108,116,107,108,99,102,117,107,115,106,98,97,103,101,108,89,109,95,91,73,87,80,105,117,95,101,103,112,101,113,106,92,109,100,99,101,89,113,96,106,105,86,97,93,99,89,113,88,99,96,94,102,104,107,100,115,102,105,103,87,108,102,112,104,103,102,106,102,98,109,99,111,91,94,95,101,109,113,93,125,104,100,97,102,113,100,108,102,115,109,106,109,105,106,124,99,107,91,97,101,100,100,105,107,102,106,124,94,104,119,105,102,101,113,99,104,101,93,97,88,102,93,99,85,98,92,106,105,103,88,92,89,103,99,109,112,107,93,105,96,95,101,104,94,98,109,106,97,113,94,90,90,92,109,103,104,97,105,108,100,112,109,87,102,97,105,107,104,108,101,99,100,92,111,93,96,102,96,99,107,103,102,99,102,97,94,110,102,98,89,117,99,102,109,96,97,117,98,94,103,108,102,105,109,98,98,100,132,103,103,100,102,107,95,94,107,96,96,95,98,106,103,93,96,106,105,98,109,107,102,108,91,100,95,104,104,105,94,87,102,105,103,109,94,93,96,103,105,96,116,106,98,117,107,108,110,102,106,100,99,89,100,96,108,107,97,105,95,98,94,101,88,95,105,96,104,99,109,100,95,106,109,102,98,78,103,95,101,107,110,102,100,108,107,105,111,102,100,106,92,96,116,110,99,113,99,103,112,95,110,108,94,98,87,93,109,100,103,95,101,98,102,112,94,103,105,102,121,99,99,95,103,98,95,102,105,95,115,93,106,97,100,96,103,100,104,107,101,96,95,89,103,97,123,110,87,116,112,111,98,106,106,94,99,101,94,107,105,95,99,102,103,98,92,112,103,106,108,102,103,108,93,90,97,96,96,108,97,99,103,91,102,96,92,107,109,98,112,107,97,107,111,113,97,106,102,75,109,98,89,91,110,106,100,101,103,98,108,110,97,104,95,116,72,100,97,103,110,90,101,104,100,106,88,105,103,105,102,97,93,103,99,100,91,95,92,93,109,95,113,112,103,95,98,98,98,100,101,113,108,74,105,94,87,107,96,97,113,99,100,104,90,110,94,96,112,114,92,101,93,100,99,92,98,105,102,120,75,124,100, +640.94556,113,104,99,99,95,100,91,99,106,104,88,98,100,94,103,108,99,108,102,105,105,103,90,113,110,99,102,107,104,96,95,100,102,108,94,106,112,97,94,107,90,96,72,99,89,109,112,104,91,101,117,99,110,97,104,83,113,99,102,95,94,108,76,97,106,104,91,90,95,100,115,100,96,107,90,105,108,102,92,100,106,121,97,101,110,97,99,114,100,103,113,101,87,113,104,90,97,98,117,87,103,103,103,79,91,108,96,98,101,95,105,99,102,93,100,98,100,99,99,110,93,125,115,104,103,107,98,105,106,112,108,106,109,101,109,105,95,104,117,99,102,103,113,96,103,109,98,96,89,101,105,119,120,93,104,96,84,114,105,97,101,100,108,103,106,108,109,99,101,95,101,95,99,98,94,92,101,87,106,103,105,108,98,94,111,99,99,95,108,99,124,103,106,115,108,104,116,94,107,97,101,96,109,105,97,111,108,107,103,96,107,112,101,104,111,122,105,109,96,98,94,113,95,94,105,116,112,126,114,117,97,101,103,105,99,109,109,105,103,98,114,105,103,104,102,93,94,70,92,103,105,102,104,109,109,110,98,108,95,95,95,90,101,102,101,99,113,105,100,100,113,104,117,101,101,83,98,112,106,109,97,109,92,102,106,102,94,107,99,103,99,112,98,101,99,95,96,102,105,108,91,96,108,101,104,105,99,106,102,103,97,105,103,108,107,96,112,91,104,107,97,98,103,107,109,96,101,104,104,106,98,102,99,97,97,101,107,92,100,98,100,104,106,106,103,100,99,102,101,102,113,96,102,104,105,105,101,95,105,114,102,103,106,108,98,101,109,108,95,99,108,96,109,103,100,97,105,102,93,91,97,113,103,106,109,93,95,109,108,104,105,92,102,110,112,109,105,96,89,91,100,99,109,105,108,99,98,102,98,99,114,70,114,107,98,91,100,112,104,104,105,108,96,101,100,101,101,95,101,100,93,104,96,109,103,98,89,118,104,104,113,101,99,97,99,101,106,101,106,102,95,101,94,103,102,110,102,105,102,91,106,99,112,102,107,104,94,93,95,98,100,106,94,107,96,89,98,105,108,111,104,108,100,117,103,102,107,102,105,98,111,116,107,104,90,97,96,96,107,101,134,104,108,102,108,67,97,103,109,113,108,95,104,114,97,109,96,97,102,100,114,92,83,102,105,105,100,121,96,89,94,102,111,107,91,108,116,98,95,110,99,112,93,95,112,99,108,105,104,111,117,105,111,106,95,110,116,111,103,100,102,91,104,112,105,104,120,110,111,107,101,108,93,115,95,106,102,115,106,104,111,95,104,101,104,93,109,107,98,102,105,108,94,96,109,105,92,117,111,109,101,94,94,96,99,103,100,95,107,99,108,103,98,96,113,100,104,88,95,101,137,111,99,96,91,128,95,102,134,116,95,117,94,108,100,105,121,101,94,97,116,107,100,111,109,100,107,83,103,99,109,108,106,98,101,109,95,134,109,103,112,102,98,100,104,105,106,96,105,103,121,112,104,104,109,105,110,95,109,96,111,110,100,94,110,105,104,107,102,83,98,100,90,111,103,103,117,102,105,94,90,100,95,91,96,103,104,103,100,96,91,102,108,111,106,105,106,101,104,101,96,103,102,103,87,102,104,92,92,108,97,108,88,95,99,93,121,99,102,98,106,98,108,108,120,113,104,108,111,93,103,98,104,95,108,105,105,97,102,98,104,110,92,92,103,111,101,101,109,99,101,96,108,104,107,99,98,103,104,117,107,113,95,102,108,104,80,106,97,102,101,110,86,107,105,129,112,118,98,105,100,107,108,91,103,108,121,106,105,104,104,94,113,102,106,86,114,105,119,103,110,94,113,104,94,99,79,98,101,95,108,106,99,109,114,98,123,118,112,104,117,105,105,104,103,97,95,79,75,99,109,110,101,108,105,105,90,115,112,100,98,99,100,103,102,113,101,108,105,107,117,106,96,81,108,99,105,100,101,107,106,102,101,96,106,93,101,108,110,113,117,110,108,101,107,103,112,96,114,93,130,100,107,103,106,106,101,104,103,102,103,98,115,110,96,97,104,110,111,111,106,110,111,112,120,106,107,99,111,80,104,99,101,104,103,100,93,95,117,107,101,107,104,105,98,92,110,139,100,105,106,100,102,109,104,96,109,104,103,96,105,97,96,101,105,92,103,99,103,104,105,102,88,120,110,98,106,103,104,106,108,126,100,112,103,96,98,104,104,108,100,109,111,99,100,107,108,118,99,105,95,99,96,95,101,104,97,98,96,98,99,114,97,109,109,101,103,104,102,110,102,104,98,95,108,95,97,101,106,100,100,105,97,102,102,90,89,97,102,96,93,112,105,104,110,107,93,112,107,114,122,102,78,87,117,97,87,94,112,112,98,111,102,102,110,108,81,108,109,109,101,111,110,91,101,95,105,109,103,98,64,106,105,115,113,106,104,68,108,104,107,94,106,103,101,114,104,91,105,90,112,101,108,98,115,102,104,103,100,109,116,106,110,101,119,102,92,115,104,101,117,103,117,98,113,115,108,99,99,99,107,110,98,95,110,104,104,91,104,96,106,104,101,118,108,95,99,101,103,84,92,99,105,112,104,110,103,102,105,105,101,88,105,103,94,112,114,105,104,108,108,106,113,130,99,109,105,91,112,101,90,104,99,104,108,102,120,105,101,108,100,98,113,114,107,109,110,106,106,106,93,102,91,97,101,103,87,109,100,107,102,105,95,99,111,104,99,102,105,103,101,107,99,105,96,107,102,102,79,100,95,100,94,133,139,112,98,105,112,104,108,110,103,100,106,101,96,108,109,109,110,110,102,115,95,105,95,99,107,79,95,101,103,93,104,94,96,92,102,102,99,104,113,119,111,99,96,103,113,136,101,96,103,109,103,105,93,97,104,79,99,103,83,110,95,100,132,113,111,106,107,97,109,96,94,105,100,98,84,108,126,107,93,102,102,106,94,99,103,94,105,103,110,109,113,91,90,107,118,87,106,102,99,113,103,104,107,104,102,112,103,109,101,101,100,114,98,117,107,93,95,97,101,106,104,100,102,91,109,104,114,106,106,105,114,91,102,108,116,101,110,100,99,106,105,106,91,92,99,103,109,102,95,101,107,111,88,103,100,107,100,90,109,109,113,104,114,104,119,103,110,83,112,99,99,92,109,79,113,97,110,109,114,97,96,100,109,103,90,97,108,101,90,102,102,99,96,100,106,118,105,98,106,115,93,109,94,109,117,88,109,97,90,96,103,101,103,104,104,98,117,87,116,101,95,90,97,118,107,101,107,108,108,95,100,91,105,98,101,102,123,103,100,102,102,102,99,95,105,110,115,97,105,106,91,108,106,111,124,101,102,136,103,92,113,106,108,116,74,95,98,102,93,106,90,101,115,94,106,110,101,91,112,116,99,99,100,106,110,100,113,103,106,90,106,108,92,97,98,93,105,109,102,109,97,98,103,97,110,98,117,111,105,116,114,106,105,98,102,98,107,101,103,109,96,113,104,108,100,99,108,118,100,105,114,108,98,100,102,118,111,108,110,110,110,104,110,101,103,95,100,103,102,103,119,105,106,106,111,104,99,86,101,111,94,99,107,102,112,103,122,106,96,100,94,100,106,91,100,106,96,98,69,107,113,107,103,101,111,111,100,106,107,101,101,105,96,106,108,113,110,105,107,107,106,95,99,102,104,107,106,116,107,100,99,104,101,104,102,106,98,104,105,92,98,109,104,102,112,101,102,103,97,101,100,100,105,97,76,107,99,102,100,113,91,95,102,93,106,104,108,91,77,77,116,91,104,105,101,103,112,94,108,101,108,108,107,108,102,107,98,101,99,108,112,108,93,105,99,97,96,100,99,108,98,90,98,91,87,99,112,102,108,99,107,106,94,103,104,99,106,79,112,95,109,96,102,109,118,110,98,102,103,103,106,103,102,106,97,104,95,128,105,90,87,102,101,101,100,109,110,110,101,98,105,88,108,109,101,99,118,109,105,113,109,105,112,98,103,107,100,100,96,98,97,107,97,115,110,84,85,88,103,102,110,98,108,101,105,97,114,106,105,115,108,103,95,102,100,102,101,108,116,104,105,96,104,85,104,124,98,101,91,113,110,107,106,109,101,100,113,103,100,97,108,109,115,91,103,98,110,99,109,104,98,108,93,113,103,82,102,101,107,99,65,115,99,95,115,113,109,96,104,96,94,109,100,106,100,103,95,99,103,103,107,101,106,101,110,102,114,99,112,99,96,101,95,109,94,98,108,95,102,111,104,102,105,104,95,80,117,93,106,94,98,97,101,102,82,107,93,90,103,111,108,109,107,102,97,121,95,101,115,111,109,97,100,101,102,86,110,102,104,108,97,111,107,115,108,102,96,100,99,98,101,98,89,95,107,102,133,98,109,97,87,104,102,96,112,117,97,105,101,111,98,97,98,87,112,113,105,96,112,108,107,92,100,96,109,104,88,104,101,108,92,109,103,121,95,97,88,95,107,97,103,97,104,121,107,109,112,110,102,102,101,109,103,108,101,107,90,97,112,94,102,99,105,114,106,72,95,101,94,102,95,97,96,97,99,108,103,93,96,99,101,90,96,101,101,105,106,91,100,93,100,109,113,105,99,108,104,78,98,77,98,108,98,102,104,94,104,115,110,101,103,104,102,95,117,100,98,106,84,97,96,107,100,102,91,80,90,91,92,112,84,100,115,118,120,93,92,95,97,105,103,98,94,100,101,97,95,102,118,115,97,103,104,82,104,103,100,94,87,106,102,102,103,99,111,100,100,107,96,109,91,97,103,103,103,102,105,102,115,103,102,112,89,107,98,104,115,104,88,106,103,111,107,104,105,94,107,102,76,86,103,98,113,86,109,97, +641.08667,117,107,100,98,98,112,100,104,99,105,91,94,104,101,117,117,93,109,97,96,96,100,88,109,105,105,95,105,108,102,95,99,95,94,98,111,107,107,104,109,112,109,97,85,99,117,97,98,98,92,96,93,114,97,101,100,96,96,105,90,101,100,101,98,109,135,101,101,104,102,112,112,100,106,106,101,103,102,112,108,113,98,102,101,83,94,95,88,103,102,102,112,106,95,97,102,112,96,100,114,109,96,98,114,110,99,115,103,104,110,107,100,121,101,92,100,93,98,108,103,103,110,102,116,115,106,106,100,104,112,87,120,102,110,112,105,96,110,97,112,104,104,114,99,95,108,114,101,94,96,96,113,117,108,98,96,97,102,100,105,89,98,103,106,102,95,104,96,101,94,100,109,85,110,103,99,95,105,108,102,96,114,92,113,113,101,101,100,100,100,94,101,107,90,95,108,97,106,106,99,107,112,103,113,109,114,97,91,108,114,105,107,94,101,108,115,95,97,97,96,103,115,96,92,113,109,98,105,112,108,97,94,105,98,105,102,86,94,102,96,102,101,96,106,95,101,101,99,92,83,101,101,99,99,94,104,100,107,102,104,94,103,104,91,95,109,102,95,93,102,100,108,106,109,99,103,105,87,105,92,103,111,92,99,102,96,105,101,93,104,98,97,103,100,99,118,99,96,109,106,96,101,109,114,96,97,106,98,111,105,106,110,105,102,106,107,100,97,102,92,90,96,105,111,103,100,105,97,108,105,92,91,104,102,117,99,90,89,100,97,107,108,89,97,99,113,102,106,103,105,103,126,107,104,95,99,92,107,103,106,111,109,94,98,96,103,102,99,88,92,109,103,103,114,98,107,104,116,110,109,98,98,107,99,115,97,100,100,103,106,107,95,89,104,107,107,103,100,96,107,84,93,105,105,101,97,107,107,107,95,99,103,122,99,107,102,105,105,105,102,107,99,95,120,104,91,103,110,108,120,97,104,104,97,96,103,98,103,99,102,104,101,103,103,98,93,100,99,97,111,94,91,104,118,96,94,103,103,92,100,94,104,96,117,117,109,106,100,104,109,104,114,102,106,99,106,98,112,107,99,97,108,103,105,102,100,96,107,104,112,103,106,118,112,105,109,92,111,100,101,102,97,102,107,95,112,109,97,101,94,95,100,113,110,92,112,106,93,104,98,109,105,113,108,102,99,99,124,100,96,100,103,92,100,103,106,113,107,101,108,106,107,106,96,103,101,98,110,107,113,109,100,106,105,104,109,105,98,103,97,107,98,100,97,104,96,103,96,101,100,100,94,98,97,102,106,99,102,111,108,106,88,70,96,99,101,106,109,99,102,102,104,101,96,112,110,110,95,99,92,93,96,104,97,101,101,97,95,105,106,105,99,100,96,105,97,105,99,105,116,104,111,111,99,91,98,101,113,95,104,101,105,103,131,93,97,102,90,97,122,104,94,102,94,97,97,106,110,91,110,97,113,112,102,101,102,105,111,106,104,99,101,107,109,93,103,95,89,98,104,100,111,118,102,101,110,101,84,106,100,102,103,104,94,108,103,108,99,106,101,101,95,84,118,127,105,104,108,132,86,94,107,105,115,101,100,98,95,106,121,114,98,112,103,104,105,99,113,103,100,109,107,96,101,95,112,116,103,96,115,104,101,84,98,96,105,105,101,102,113,111,100,108,101,110,96,106,108,85,136,113,119,102,86,97,107,100,95,112,105,106,99,96,105,77,105,88,97,104,92,102,95,109,102,101,105,111,112,99,110,108,108,108,101,104,113,114,107,102,112,106,110,108,117,107,96,102,98,116,107,109,106,110,105,104,98,109,85,105,94,123,100,99,105,105,109,106,81,109,107,106,123,104,108,112,109,101,91,96,105,80,92,99,109,109,98,86,109,108,117,109,94,100,106,102,98,107,90,105,105,109,102,96,105,112,99,106,109,95,102,108,105,104,104,94,112,108,107,107,103,104,105,101,117,100,98,108,103,119,113,102,107,113,96,100,95,99,113,108,90,103,109,93,107,114,104,90,106,113,103,110,106,104,105,102,101,96,113,107,98,96,100,98,107,114,93,97,92,106,109,97,106,102,109,109,104,91,113,113,97,98,101,114,109,101,113,108,77,102,106,103,105,105,93,113,73,107,107,98,108,97,98,98,137,124,96,99,113,104,102,107,100,72,102,105,99,96,108,106,100,102,108,105,104,94,90,100,98,100,95,103,102,106,107,103,94,122,111,105,97,103,104,111,106,96,91,100,97,114,110,103,90,95,89,114,97,102,107,95,102,88,110,101,114,120,109,113,110,113,92,106,110,105,78,92,106,100,100,124,105,101,107,119,112,109,92,94,97,107,96,100,118,103,111,103,110,95,121,98,101,105,109,115,118,113,105,98,105,106,106,101,99,98,104,101,98,105,105,115,104,87,96,103,103,104,105,110,99,109,97,101,103,96,106,106,107,88,93,113,112,100,106,108,105,90,99,108,99,121,114,89,105,111,99,101,105,106,113,105,103,109,111,94,117,98,111,95,86,94,100,92,109,100,97,98,106,109,110,102,114,105,110,98,86,102,92,106,100,99,121,96,104,93,107,72,101,101,95,113,96,112,114,120,108,101,112,108,99,93,102,109,102,100,95,108,107,110,109,104,107,101,102,99,92,108,93,106,105,109,111,104,93,110,102,105,102,107,98,99,104,100,95,105,104,119,99,100,98,100,102,99,107,103,110,101,117,103,110,115,107,103,103,99,110,111,101,119,102,93,98,105,98,136,95,112,108,92,110,107,107,97,109,99,103,96,92,111,104,108,108,105,110,109,84,104,108,106,103,87,109,110,108,107,100,106,107,99,99,108,117,109,108,107,120,108,95,105,105,105,103,106,105,100,122,109,100,105,95,99,108,114,88,104,91,107,108,103,97,103,107,107,109,115,106,102,124,112,102,110,103,108,98,102,106,105,106,107,107,104,104,108,97,102,98,95,107,108,111,108,91,115,103,113,118,117,95,106,100,102,98,96,93,102,119,123,112,112,106,96,75,93,116,105,109,107,107,103,117,119,99,104,102,115,116,96,102,110,112,110,97,103,112,104,103,98,93,103,109,107,94,104,111,97,102,92,108,113,107,106,110,105,106,97,108,105,97,88,106,107,100,109,94,107,85,117,109,105,113,105,109,96,92,103,103,93,104,116,111,131,114,98,99,110,99,100,98,104,104,103,103,100,101,102,107,107,109,109,96,111,106,102,91,99,84,112,106,118,105,102,100,110,102,95,95,91,100,109,100,96,111,104,83,109,122,108,102,110,103,100,103,112,106,101,107,118,90,101,103,101,98,105,99,97,96,100,112,102,109,119,108,101,94,97,103,110,109,103,109,103,105,102,95,104,91,106,98,107,97,98,99,99,101,110,109,103,91,113,104,102,104,104,100,98,102,97,111,103,108,120,112,106,105,80,107,103,102,93,87,107,102,110,83,118,102,101,108,114,100,100,104,103,107,122,110,123,108,98,103,90,104,100,97,98,106,103,107,108,119,99,106,116,110,103,95,105,113,99,118,98,107,106,108,94,109,117,116,101,99,104,91,110,102,99,110,105,105,109,105,104,99,111,111,104,110,108,99,104,99,101,107,98,100,112,98,106,105,101,96,107,121,104,109,102,108,97,99,96,99,116,96,104,112,113,95,104,100,108,117,106,101,114,105,106,103,105,108,118,102,98,108,101,109,113,98,112,99,98,99,102,96,103,102,100,106,100,101,105,107,96,103,105,81,105,100,105,98,104,99,109,104,103,100,107,106,102,113,95,113,96,108,105,102,111,108,102,114,112,95,98,102,101,115,103,102,99,103,109,110,107,105,86,101,101,110,113,119,102,109,103,108,96,110,108,108,107,110,100,107,107,106,113,98,85,103,104,96,88,102,98,105,96,106,98,93,105,90,106,123,104,98,94,107,105,115,101,106,98,105,96,96,109,95,112,110,114,104,97,100,113,103,110,100,80,105,117,94,120,108,106,104,110,102,95,103,84,104,100,94,112,104,110,98,89,106,103,91,102,105,106,102,112,103,111,105,119,106,91,88,98,111,98,93,102,120,105,104,113,107,103,110,123,104,77,96,112,114,103,104,96,110,110,91,93,111,98,103,113,101,100,106,100,108,99,101,108,124,109,94,111,96,118,104,110,103,102,115,115,99,111,108,106,95,111,105,106,105,112,98,101,95,99,94,100,116,99,97,111,98,97,83,91,101,94,103,95,107,112,92,112,103,105,95,116,99,100,110,98,86,85,119,103,102,105,103,107,95,100,101,103,117,103,101,123,106,117,98,109,110,100,106,108,97,96,97,104,99,105,98,104,103,102,107,106,110,97,117,114,98,108,107,108,114,101,121,91,94,110,105,107,96,97,100,91,110,107,100,103,116,101,103,107,96,92,101,104,104,96,96,113,102,101,106,117,108,108,95,97,99,98,107,101,99,96,109,113,96,105,92,105,102,104,100,115,112,105,103,103,112,105,102,89,99,104,103,108,121,95,114,106,97,102,108,102,70,99,106,94,103,103,126,99,128,103,104,94,131,104,95,89,93,105,93,111,103,106,104,99,106,84,101,100,99,101,100,106,106,103,102,101,91,104,99,107,105,118,113,101,106,121,110,94,123,99,98,98,91,119,110,97,103,112,94,102,102,110,98,102,107,99,108,104,101,100,98,104,99,115,102,101,91,103,102,104,90,91,100,111,106,119,100,106,93,106,95,96,100,97,112,106,99,101,120,100,107,94,106,98,98,114,100,100,104,100,103,106,92,105,113,108,94,103,96,102,95,105,105,106,99,93,107,96,104,123,111,107,103,88,118,95,87,101,109,99,90,112,100,108,94,90,92,105,107,104,98,118,107,108,99,92,87, +641.22784,108,106,93,108,93,143,112,94,89,101,83,97,90,110,108,104,99,112,108,97,107,96,92,108,94,93,105,128,103,102,105,105,110,105,125,110,105,97,104,98,91,95,106,95,104,112,90,119,106,120,111,105,89,114,99,94,109,103,109,93,97,114,118,98,110,107,103,108,89,91,109,99,99,110,90,102,96,102,114,109,109,103,111,116,112,95,102,103,103,100,104,104,111,106,91,94,105,106,101,111,107,98,101,105,96,105,108,118,111,104,95,99,97,106,113,93,109,102,105,114,96,105,91,103,99,114,108,105,99,102,100,95,107,95,107,105,103,98,113,95,98,103,97,100,93,101,110,99,106,98,100,100,116,98,101,95,112,103,109,104,104,98,110,100,99,109,104,90,102,94,110,96,102,124,93,113,91,92,112,112,92,106,99,111,102,98,95,96,103,114,104,105,102,104,106,95,102,101,99,107,106,93,113,97,104,120,100,93,109,100,89,101,100,95,106,100,100,100,106,105,105,101,123,112,100,99,103,90,101,109,104,98,100,97,93,101,98,99,103,111,118,104,114,106,100,106,103,109,106,93,102,110,107,103,99,106,100,99,88,92,100,105,105,99,90,108,113,121,91,115,112,109,116,107,114,121,97,99,102,95,101,110,113,100,98,98,102,100,103,110,104,109,106,118,105,104,109,103,109,110,110,104,100,100,104,121,108,103,101,100,110,112,100,104,106,122,103,95,104,98,94,90,125,111,120,109,97,98,117,106,106,105,107,113,113,97,91,104,105,98,105,105,110,95,98,100,98,108,108,106,100,96,68,96,109,98,98,105,104,106,120,114,88,102,105,111,102,103,94,113,104,106,106,115,99,125,100,100,101,106,97,105,102,110,105,100,128,105,103,106,107,103,100,108,99,97,101,101,100,97,100,78,107,105,98,99,85,105,107,112,106,97,101,100,102,93,117,98,106,103,113,99,104,108,101,101,114,106,99,105,97,102,93,101,95,97,100,108,89,103,98,109,101,103,96,95,97,100,91,116,101,100,112,105,90,102,103,86,110,101,107,101,103,104,110,107,105,107,98,105,96,115,98,97,105,94,101,107,108,102,108,105,112,101,96,103,99,121,113,100,101,115,108,107,117,102,96,100,98,98,98,95,100,104,110,117,98,76,107,106,107,102,92,102,117,107,113,111,106,100,101,111,101,107,107,98,108,95,113,102,109,113,99,93,80,86,98,102,102,103,102,117,94,79,112,93,121,92,107,101,107,112,94,108,95,100,109,112,107,101,116,95,99,104,110,96,109,109,106,92,94,101,96,113,108,106,97,100,106,110,101,99,106,100,108,115,108,116,86,110,111,104,98,102,114,91,107,103,103,109,100,118,112,107,102,102,104,103,103,109,109,111,100,108,109,94,109,102,103,100,103,104,108,106,123,116,101,112,110,116,102,102,95,109,94,111,92,92,103,97,105,109,104,98,103,94,110,101,96,109,94,78,101,102,98,103,96,106,111,99,117,110,109,105,96,103,107,97,103,107,117,103,109,96,105,99,107,95,105,101,107,107,94,107,94,106,110,113,103,104,113,105,101,104,95,98,116,103,115,97,99,87,115,103,96,106,96,101,96,98,102,121,106,91,106,100,103,100,103,102,99,99,113,106,100,111,117,104,99,110,108,110,107,100,97,83,104,100,108,101,91,90,110,106,104,116,97,103,107,107,113,97,94,92,101,96,108,101,105,101,98,100,106,90,99,107,102,116,103,102,88,107,109,103,89,110,114,103,101,102,83,110,111,101,110,113,99,104,97,113,93,117,114,106,91,114,100,109,104,108,99,105,95,109,113,103,93,99,102,97,106,85,105,95,137,99,102,108,96,103,103,97,85,104,101,110,99,101,79,101,111,103,106,115,107,112,111,95,122,108,105,102,99,105,102,101,97,108,101,90,114,101,95,102,108,85,90,104,98,101,95,92,96,100,112,101,99,112,119,122,106,115,106,113,97,104,109,99,102,105,104,97,98,110,102,100,97,111,117,121,102,102,114,107,116,102,76,97,100,108,110,107,100,102,104,109,99,102,101,104,113,95,108,102,96,99,94,107,104,103,112,110,107,87,101,99,90,106,102,116,111,109,114,110,106,103,108,105,122,108,103,93,108,105,90,105,107,103,99,112,90,124,99,110,107,103,107,107,84,100,97,103,101,105,105,95,94,101,101,104,114,109,101,107,102,100,75,115,115,102,95,97,116,111,89,100,100,107,90,104,110,106,111,101,98,91,111,100,99,94,101,92,97,95,106,102,82,95,99,99,85,103,98,104,111,105,97,102,106,98,106,106,94,98,103,94,101,95,113,105,108,106,113,113,105,114,97,105,116,104,110,106,104,108,104,114,112,103,108,112,105,97,107,101,94,101,107,108,106,97,100,109,103,112,90,98,99,91,108,99,82,107,113,102,106,104,104,106,108,108,93,128,101,109,107,107,106,118,115,110,106,102,103,87,91,113,103,91,107,94,96,108,102,92,103,107,106,101,101,84,95,98,101,109,104,102,98,103,95,113,98,118,95,91,119,112,104,94,119,101,110,115,103,100,89,127,100,100,104,100,107,117,100,114,97,108,110,88,106,104,118,103,103,111,94,108,117,117,102,108,104,99,109,84,113,112,98,102,101,113,98,99,113,91,114,96,104,100,106,113,100,105,94,104,114,97,102,106,102,107,113,103,112,111,100,99,109,100,106,110,102,103,107,101,108,115,102,103,111,97,103,90,98,100,103,108,107,118,90,101,110,108,95,92,99,103,103,113,126,105,101,100,106,112,105,92,100,99,105,121,105,112,114,106,102,106,104,113,91,99,109,106,105,112,86,62,105,107,98,103,111,106,94,116,102,102,97,106,96,111,106,105,95,114,94,102,100,106,102,113,105,115,102,104,109,106,105,105,104,100,98,106,88,106,87,101,111,87,112,117,106,111,103,112,91,95,107,102,97,104,102,98,95,101,107,102,90,101,110,105,114,104,97,106,98,106,118,101,98,105,96,87,97,108,114,108,100,96,113,113,101,115,100,95,115,98,101,102,111,107,103,100,103,98,108,109,99,109,103,98,105,104,109,90,118,107,106,99,109,98,107,98,95,100,109,99,97,105,104,113,106,90,106,105,104,107,104,102,91,94,107,107,98,108,109,106,74,96,109,102,111,105,96,105,102,101,99,104,108,113,98,107,98,110,109,105,107,91,109,96,111,100,109,104,101,97,87,119,106,106,109,103,100,109,99,100,103,110,96,100,103,99,96,101,105,108,96,96,114,102,95,95,113,113,99,106,111,94,111,107,92,110,113,105,113,103,102,95,106,97,99,119,104,106,106,100,125,109,112,99,89,100,108,105,100,100,103,116,103,104,101,87,98,101,115,96,121,100,102,98,93,116,102,113,95,125,101,95,98,106,109,103,105,117,104,111,102,107,104,104,101,95,110,86,105,98,113,103,103,107,109,106,103,98,101,109,103,98,99,100,103,98,87,107,101,118,104,108,90,97,126,106,116,110,104,104,102,112,103,109,110,106,129,108,100,99,103,95,105,118,106,112,86,115,113,83,104,94,103,112,106,104,102,84,108,89,113,104,113,101,109,109,92,104,104,96,111,111,97,94,97,104,110,108,108,99,109,102,110,103,107,103,99,109,103,103,104,107,99,95,110,99,99,68,87,110,93,107,110,102,121,102,100,94,116,99,104,105,98,105,87,98,104,95,108,102,106,107,105,102,97,108,129,104,93,102,107,119,103,114,106,97,100,94,102,90,109,94,112,97,84,111,100,105,114,111,117,123,98,89,113,102,105,105,125,99,115,100,104,122,95,100,107,100,102,110,108,106,115,116,104,102,96,77,101,112,98,104,94,106,113,97,98,108,100,95,102,97,105,131,109,104,90,102,100,95,98,103,107,97,108,99,107,123,110,119,104,105,99,108,100,105,98,108,100,100,100,100,105,104,108,108,101,103,107,99,108,102,102,112,105,100,96,106,107,112,100,111,106,104,115,114,90,110,115,103,113,91,105,99,135,97,91,99,104,110,99,110,104,100,99,90,108,92,103,88,96,106,97,99,106,103,100,106,100,105,84,102,108,105,102,112,98,105,111,96,105,113,113,86,104,101,105,97,108,118,120,102,107,114,110,100,109,85,97,105,105,113,97,88,102,96,109,107,107,107,105,90,94,117,109,106,120,103,101,100,106,109,98,102,113,100,103,108,107,102,111,111,93,106,108,95,98,99,101,107,103,91,105,98,106,104,104,109,96,102,106,91,95,117,105,102,115,111,109,101,99,106,107,113,113,106,113,87,111,116,105,104,103,104,99,79,114,102,103,101,103,115,106,107,99,111,107,111,91,95,105,107,98,105,90,107,116,101,107,108,102,112,99,116,97,87,118,102,112,113,109,103,110,102,99,98,103,99,105,77,92,92,107,97,106,103,95,100,80,98,106,106,102,104,116,96,101,113,110,100,108,110,100,94,91,95,108,88,93,84,110,103,108,104,97,92,102,84,108,115,107,115,111,113,107,107,112,101,110,106,104,98,117,111,98,109,106,104,105,112,119,102,92,76,98,94,105,115,104,104,96,128,97,104,98,111,121,110,101,104,109,107,108,112,110,100,102,107,100,103,108,92,93,91,94,98,95,100,105,114,105,105,91,96,106,101,112,109,98,85,101,106,102,103,99,118,101,96,105,103,76,104,98,101,98,111,119,115,100,106,102,95,109,112,96,96,104,107,99,102,110,111,110,105,99,103,100,102,91,120,103,87,102,115,91,95,99,95,95,105,106,103,103,108,100,108,99,84,95,94,104,99,99,109,108,95,104,94,109,91,97,98,99,63,91,90,100,108,98,111,103,108,104,107,116,116,93,91,96,113,107,98,103,99, +641.36902,105,96,95,98,101,109,125,99,100,103,107,103,71,104,104,101,92,77,104,75,102,111,83,93,109,109,119,100,110,95,96,104,112,115,111,103,97,108,93,101,90,112,111,99,95,109,100,103,110,105,106,112,115,65,96,93,90,94,107,95,96,106,108,102,88,105,99,115,102,103,95,110,109,114,94,104,92,99,103,102,105,93,91,101,88,103,104,106,104,98,114,107,98,107,91,99,106,102,110,106,108,99,98,109,102,105,100,103,90,102,100,98,84,108,110,98,108,110,110,104,96,95,101,114,92,130,118,94,107,102,100,118,101,103,94,107,98,106,95,94,105,106,97,111,108,102,105,103,102,113,103,107,111,101,107,102,109,117,106,116,108,102,104,106,103,105,99,93,116,94,123,105,96,98,101,96,108,113,111,91,117,109,102,104,107,101,96,101,106,103,102,103,95,114,103,106,100,101,86,104,95,110,100,99,105,114,96,104,102,94,104,113,102,112,97,100,99,113,97,91,93,108,98,99,104,127,107,129,91,110,105,110,109,101,104,115,102,107,107,102,106,101,117,106,115,93,100,100,99,108,96,104,89,100,111,107,91,100,109,101,98,105,102,101,92,101,101,113,107,113,99,98,102,109,123,96,96,111,104,98,105,107,94,104,98,110,97,103,104,107,94,92,88,110,107,114,100,98,116,110,103,109,116,110,105,96,110,109,92,124,98,98,88,94,118,103,86,100,94,101,114,101,108,101,96,114,100,97,102,100,102,104,110,103,88,101,121,96,98,97,93,98,100,103,100,96,110,109,116,97,112,103,104,109,89,99,109,104,115,102,109,101,82,94,94,104,102,104,105,105,101,99,119,111,99,104,103,106,101,113,113,95,104,88,108,97,95,106,109,99,104,85,100,99,96,104,88,102,107,96,95,104,107,96,112,95,105,108,100,103,92,101,103,103,104,101,80,93,107,97,101,108,103,107,102,93,107,94,91,110,87,103,102,103,106,109,114,131,100,103,101,96,105,109,82,115,90,99,103,109,95,99,109,114,109,110,109,92,111,102,99,102,102,96,97,105,114,106,101,99,99,105,102,105,111,98,125,106,116,99,116,94,119,108,110,110,98,93,110,93,96,103,102,106,100,97,101,91,105,101,106,107,110,100,111,105,101,96,119,114,108,115,108,109,106,102,101,108,87,102,109,104,87,102,95,95,104,103,106,101,101,104,106,117,105,98,108,108,109,118,119,101,102,106,96,100,111,110,108,111,103,114,102,105,98,111,99,102,97,91,112,111,98,113,114,105,104,102,104,114,99,98,102,99,90,118,96,114,99,99,103,105,102,99,108,96,106,108,111,102,113,101,113,105,99,109,101,76,104,121,119,103,115,116,109,113,105,108,103,105,104,109,118,109,108,109,121,99,108,109,110,112,101,99,108,98,99,105,95,111,91,105,108,100,96,107,106,94,108,93,102,83,102,106,95,100,94,97,112,109,112,117,94,94,109,95,105,109,105,110,109,93,101,112,93,107,104,95,106,94,106,104,105,102,107,109,111,94,109,102,114,109,113,111,97,104,103,117,113,96,103,117,106,99,108,108,110,103,114,103,113,113,108,108,109,107,98,109,98,100,110,107,113,105,101,100,97,100,101,103,103,93,102,112,91,117,97,100,110,116,107,112,102,98,94,108,103,105,110,107,96,105,87,104,98,111,105,110,108,103,115,99,102,98,104,105,102,100,102,107,102,120,95,104,108,108,99,108,115,113,107,108,109,113,84,109,107,106,105,106,102,97,109,100,110,105,119,115,107,106,109,109,103,117,109,117,103,121,97,95,100,103,113,112,102,105,103,100,119,101,100,94,100,104,84,103,114,104,120,100,93,113,106,97,90,109,109,100,106,95,106,110,104,96,107,94,113,105,101,104,104,98,86,109,90,93,111,118,101,104,96,97,102,113,101,105,94,116,104,101,102,105,99,109,98,106,106,108,112,104,95,107,116,88,90,106,111,112,86,99,98,97,109,99,113,104,109,112,110,97,109,101,97,105,102,95,110,105,100,112,78,114,111,100,94,96,110,101,109,110,102,106,110,99,106,87,96,106,98,112,105,106,105,105,101,106,111,92,109,105,107,119,118,108,88,105,103,115,114,110,105,107,96,100,93,103,96,109,99,107,96,102,115,101,103,106,96,100,109,98,109,102,98,103,99,108,97,90,102,106,110,110,104,98,107,106,99,101,94,103,84,101,122,97,100,106,110,112,96,109,104,94,105,94,97,100,102,101,97,106,109,94,104,100,110,105,106,108,105,103,97,87,96,102,94,108,104,102,104,99,102,102,109,109,114,98,98,106,109,100,116,113,72,110,104,79,95,108,112,95,97,109,109,104,116,111,107,104,110,108,119,108,104,110,100,103,101,119,106,105,108,108,93,103,91,114,112,99,117,94,101,105,104,104,111,109,99,100,92,88,99,120,94,94,100,115,109,107,106,103,106,99,102,101,108,100,102,105,84,96,94,100,101,112,115,94,94,97,112,88,97,109,101,98,114,100,92,108,83,102,105,98,106,99,106,110,100,102,106,114,100,110,105,90,99,100,91,99,96,106,102,106,95,93,87,104,100,96,110,98,113,100,104,110,111,92,96,90,96,95,104,106,99,93,91,113,83,109,102,98,104,97,96,89,92,114,98,85,96,105,98,112,94,103,108,106,93,99,103,106,94,115,116,110,106,96,107,90,101,109,100,108,112,91,99,105,104,107,108,105,108,111,95,107,109,104,114,98,96,103,116,106,104,88,103,98,105,107,115,104,107,97,111,105,106,83,108,106,102,102,105,98,104,105,99,107,99,96,94,132,98,110,120,102,101,90,103,103,91,109,102,92,97,103,96,95,97,135,97,109,107,89,98,107,107,99,97,99,100,110,81,105,101,103,108,103,100,107,101,112,112,100,91,102,99,104,110,95,94,104,107,102,94,94,92,95,108,97,98,105,95,122,101,105,80,101,114,102,111,92,102,100,112,107,102,95,102,106,113,105,102,77,102,113,121,107,103,110,102,110,95,98,104,97,101,92,111,102,112,96,95,103,98,88,105,105,99,103,95,91,139,100,99,115,103,107,97,104,100,98,110,93,96,106,98,99,104,105,105,92,112,105,115,110,100,108,109,92,63,99,116,98,100,100,106,112,104,98,109,127,101,89,100,105,107,107,107,102,106,93,109,101,113,95,98,101,94,106,116,104,103,100,90,109,108,100,104,91,125,110,103,104,104,115,103,106,92,107,103,103,111,99,115,100,114,90,105,99,98,101,107,87,113,97,98,95,115,96,114,96,100,106,97,100,96,117,93,100,104,109,92,104,108,105,106,107,118,110,94,102,100,95,118,107,102,106,96,100,107,82,99,115,91,104,103,105,105,84,98,99,97,104,111,109,116,103,113,91,102,95,102,94,113,95,107,116,101,102,108,115,106,104,105,105,101,90,96,111,104,102,106,103,115,101,92,107,111,111,110,106,100,109,95,107,79,106,102,101,110,103,110,104,118,106,96,117,103,102,99,110,103,102,108,99,100,105,112,115,114,109,110,64,85,102,116,102,97,89,117,103,110,113,96,99,107,104,101,112,106,108,92,106,114,106,103,92,103,105,103,105,99,106,103,110,111,104,105,99,101,94,91,108,101,103,77,97,97,108,107,98,101,106,101,104,102,101,115,97,110,104,99,100,117,96,104,106,107,107,102,103,91,107,102,106,95,108,106,92,99,99,104,103,105,103,102,93,96,112,98,93,104,114,100,101,101,101,95,99,104,102,96,98,105,106,99,105,108,100,97,92,109,102,105,94,121,99,92,100,83,107,107,93,92,105,107,93,104,95,108,92,92,105,96,113,104,94,98,98,100,95,102,118,106,100,88,84,101,105,97,91,101,95,95,101,110,109,90,103,103,85,114,96,102,99,93,106,98,98,117,106,90,101,109,113,100,99,97,116,98,105,104,100,99,114,95,102,101,109,108,109,109,97,108,104,109,94,104,102,99,91,99,110,115,100,104,102,106,97,95,72,103,91,88,103,100,106,109,84,110,95,99,86,109,116,91,110,104,105,95,105,79,118,102,107,119,106,113,109,101,95,105,109,105,106,99,90,88,102,98,100,88,91,100,112,110,78,104,115,106,107,114,103,104,97,106,104,113,106,98,102,95,101,103,107,98,98,98,108,104,107,102,103,97,120,96,73,111,97,108,103,100,94,102,96,96,96,96,101,112,106,95,103,108,97,88,61,95,98,102,104,107,104,103,104,102,110,118,97,99,99,104,67,97,103,96,110,98,112,96,98,101,115,94,106,105,91,96,103,109,110,91,104,106,104,107,101,101,101,78,116,107,101,102,108,97,104,96,105,91,107,99,96,103,101,119,102,109,104,97,98,104,94,103,96,104,114,97,95,104,93,98,93,97,104,91,103,71,105,98,106,104,102,101,96,102,95,96,103,106,100,101,115,98,105,102,114,97,109,104,125,98,94,89,94,92,96,108,102,89,103,111,100,99,101,76,109,103,108,101,110,99,122,107,116,111,94,109,108,101,104,104,113,105,98,103,102,109,107,87,96,111,104,105,96,99,117,116,94,97,97,91,101,92,106,109,99,104,86,105,99,110,108,109,100,115,100,103,90,93,91,90,99,108,109,97,96,114,100,104,100,110,99,102,94,102,94,99,112,95,107,106,100,106,102,90,108,110,95,100,88,97,99,78,86,92,113,98,109,90,94,103,95,94,100,102,97,91,95,98,97,100,95,101,117,113,99,98,102,91,110,101,90,109,97,92,120,93,104,94,106,116,105,99,104,100,100,106,104,95,105,102,103,97,86,96,104,94,104,106,98,94,93,104,98,108,114,102,102,102,97,112,97,98,106,88,96,95,93,101,94, +641.51019,117,109,98,111,97,98,91,77,94,94,101,115,95,103,92,106,103,109,97,110,101,104,98,115,104,90,98,103,98,101,89,100,94,100,102,99,101,95,102,108,105,110,98,101,112,112,97,105,98,89,93,92,108,94,96,112,103,89,109,98,103,99,99,93,117,106,105,105,113,100,102,113,98,113,97,96,101,102,103,102,95,97,103,101,104,109,95,113,99,95,100,83,110,108,96,85,96,93,102,110,94,108,92,93,98,108,100,78,102,105,109,109,101,95,95,98,104,102,111,104,84,109,109,106,95,99,110,98,98,98,106,118,104,99,101,113,101,98,99,97,99,103,104,107,101,99,102,114,97,98,96,109,99,100,101,102,95,101,105,107,99,92,96,110,107,102,97,95,106,102,101,110,101,101,112,110,100,89,107,102,100,102,95,104,110,107,104,89,109,92,91,100,113,101,103,95,114,95,105,105,112,98,100,108,102,110,98,96,98,115,111,97,102,144,101,101,94,97,104,109,103,102,98,114,96,100,100,105,111,97,96,101,97,101,103,100,113,107,127,104,105,92,94,93,104,101,92,109,111,112,121,92,106,111,111,102,109,95,95,105,91,93,117,123,133,100,97,101,94,100,108,107,96,106,98,108,103,110,104,99,109,105,135,104,101,103,94,86,109,104,112,87,112,108,98,104,125,95,110,108,111,98,113,112,101,101,98,102,105,101,96,94,94,111,104,108,95,104,80,104,100,98,98,111,101,107,108,100,101,103,98,96,103,101,103,105,119,108,110,101,96,108,95,97,109,107,95,112,99,99,110,110,83,91,103,101,104,103,99,99,98,96,92,97,101,110,108,93,105,102,100,99,103,110,83,101,115,108,99,100,110,100,106,100,110,102,99,95,99,94,104,90,102,105,95,105,100,99,97,111,103,102,103,98,93,105,98,105,108,108,95,107,104,111,107,103,98,106,86,92,96,102,108,106,111,95,101,93,91,112,98,101,102,112,81,104,94,114,105,106,101,100,113,111,77,107,100,101,111,119,104,102,105,108,104,112,113,101,109,113,92,105,110,112,110,110,99,98,115,97,97,112,100,100,106,100,101,104,100,106,97,101,101,98,98,106,107,114,105,94,110,106,107,102,106,106,101,101,101,99,103,110,105,102,102,99,104,106,108,98,98,108,95,106,101,110,108,107,104,100,98,103,95,86,97,96,117,105,115,104,98,102,103,98,103,96,112,121,96,102,98,116,91,108,109,120,93,100,128,115,100,114,98,93,96,86,84,96,100,105,102,101,93,99,91,108,106,102,115,104,89,108,121,104,103,112,97,109,103,107,111,105,104,117,117,108,108,109,97,100,105,97,100,97,112,99,94,101,94,107,111,97,113,102,113,101,101,94,99,89,79,101,100,99,109,100,98,95,107,100,116,124,119,101,104,94,96,114,111,103,101,107,93,106,95,109,109,100,111,90,108,106,77,97,111,84,109,105,88,106,97,95,93,103,97,99,105,98,98,97,117,100,104,117,96,106,105,99,100,109,104,114,131,101,96,83,111,87,96,104,104,108,103,93,105,97,97,103,103,95,93,95,105,105,114,110,96,118,100,93,105,116,100,89,93,111,107,105,91,113,125,100,92,100,103,106,99,106,107,96,119,110,106,107,108,96,107,108,110,109,113,120,104,81,102,101,106,102,110,99,106,103,100,99,102,111,108,107,96,103,109,113,92,97,103,98,104,103,103,100,107,103,96,131,111,116,92,103,106,103,106,106,95,93,92,108,98,94,121,91,104,99,106,88,111,103,116,112,111,103,99,97,99,110,107,119,90,112,90,105,102,103,101,104,107,119,95,101,110,96,108,109,110,75,100,106,109,101,107,104,96,100,104,96,92,109,106,108,103,109,114,100,105,94,103,109,113,106,101,102,105,114,109,96,102,105,98,112,102,97,100,108,112,95,96,102,102,97,102,99,100,95,111,107,119,99,105,97,99,99,113,100,98,100,108,116,120,116,101,109,95,113,104,112,104,101,84,113,113,103,118,99,81,115,109,76,107,122,105,106,112,99,102,108,101,104,100,95,104,103,118,97,108,103,101,112,116,99,106,111,97,102,113,94,98,104,108,101,107,101,104,111,84,109,110,98,104,97,108,106,96,109,107,105,100,91,102,104,109,106,104,102,129,109,103,103,95,99,99,115,109,104,99,110,108,100,105,91,104,106,97,107,105,104,117,99,116,96,101,108,96,104,101,101,103,96,99,89,96,111,104,98,83,114,102,111,96,107,93,103,101,107,92,91,103,96,84,106,100,105,92,104,104,109,90,107,111,109,104,98,119,106,89,101,110,109,108,121,106,97,117,120,99,106,101,95,110,119,96,108,108,121,78,102,103,118,115,94,83,102,112,109,90,107,113,101,107,110,107,124,89,120,109,116,101,97,95,119,95,112,79,103,107,126,105,106,107,99,107,99,96,115,92,92,106,94,97,101,101,106,100,114,106,103,92,103,112,102,110,99,100,110,117,124,104,104,96,98,99,110,90,116,102,120,102,99,98,103,95,104,108,94,105,101,113,74,97,99,106,109,101,109,92,96,106,98,110,98,105,108,90,102,101,95,117,99,105,105,104,105,97,99,106,98,108,104,106,106,95,104,105,110,113,103,107,100,103,110,99,106,113,108,104,89,108,94,121,98,116,117,106,116,98,119,98,103,121,111,111,111,96,109,105,115,91,99,102,103,105,93,100,102,88,109,100,106,95,108,106,107,102,107,106,99,108,106,120,117,100,104,111,100,103,105,91,95,94,99,107,102,94,102,96,104,112,112,101,106,99,117,99,101,113,106,101,108,103,109,105,104,126,110,103,105,114,99,97,95,94,99,99,94,106,105,110,93,113,106,97,116,98,99,99,103,107,98,109,96,102,104,98,121,105,110,95,87,114,93,100,103,105,105,109,97,95,103,104,101,94,109,91,98,96,103,99,107,110,109,108,100,106,97,87,91,98,101,96,101,102,99,114,109,99,100,114,92,99,104,113,109,95,102,107,106,112,101,104,97,117,110,106,109,104,103,101,102,104,108,113,103,109,96,104,110,114,95,108,114,97,106,103,99,96,100,113,106,99,107,97,105,108,110,100,108,109,96,95,97,91,102,95,107,95,113,111,105,101,105,91,104,95,103,95,103,115,103,104,102,102,114,88,97,88,116,105,105,107,96,112,96,125,113,97,99,121,102,104,96,96,96,111,110,104,110,121,109,105,117,109,113,100,111,99,103,100,101,105,104,96,113,95,99,109,106,100,104,108,95,96,94,97,104,106,109,108,94,116,107,96,103,100,106,105,108,104,105,98,101,104,97,91,95,91,103,115,97,112,103,103,112,96,117,104,101,93,99,102,98,87,108,100,103,105,98,101,87,96,105,106,96,97,109,99,105,105,102,113,107,97,95,93,105,109,105,100,92,96,103,95,106,98,118,104,96,106,106,96,114,97,91,106,106,109,100,102,101,101,106,117,98,91,101,87,104,113,97,106,96,103,99,108,102,111,93,100,92,117,109,97,106,95,94,103,107,109,110,103,103,96,103,100,100,104,99,108,102,92,92,108,86,93,103,103,97,111,105,97,85,104,106,105,102,106,105,102,83,107,106,105,108,101,99,113,101,90,103,102,110,92,105,115,92,101,108,97,100,99,98,103,100,98,99,100,108,96,103,93,106,96,104,100,113,109,105,102,107,108,90,101,102,107,100,109,102,91,95,110,109,96,107,107,111,100,102,100,104,96,106,110,76,91,97,99,100,95,97,103,105,103,103,102,97,76,104,94,104,104,98,98,101,114,109,101,100,103,95,80,106,92,109,95,108,99,87,106,96,100,98,96,109,102,102,72,103,99,99,99,83,102,83,95,102,88,95,110,95,101,99,87,96,105,85,107,100,108,103,111,112,99,102,99,103,110,100,99,104,74,94,78,101,96,104,104,104,103,105,112,96,104,100,105,100,101,106,103,101,107,98,106,106,98,114,100,102,93,107,95,104,108,99,115,103,116,105,107,106,110,109,105,108,100,108,97,105,111,96,96,102,94,99,114,102,110,108,104,109,99,103,109,103,108,108,109,108,100,117,95,112,107,100,95,102,117,99,101,116,95,108,102,85,99,88,99,101,96,111,99,106,99,100,106,103,98,94,96,97,112,106,84,112,101,101,120,92,106,90,106,104,105,97,107,103,100,105,109,87,102,112,111,102,117,110,107,106,78,104,105,110,108,98,114,107,99,103,92,100,99,104,99,91,95,105,124,111,85,101,109,94,92,106,99,87,108,102,99,107,106,83,102,110,105,99,103,103,99,95,96,104,106,104,107,112,100,102,103,102,103,95,108,116,105,110,109,112,105,96,106,106,108,104,103,98,116,110,106,98,104,95,109,102,101,91,103,111,100,106,92,109,100,103,83,99,108,100,101,101,96,109,98,95,99,107,102,102,94,100,113,88,101,103,99,96,89,103,106,87,92,88,110,109,92,76,102,112,101,119,107,100,99,100,108,96,98,107,101,99,94,99,109,96,91,93,93,99,92,101,90,98,95,118,90,107,95,79,111,99,98,97,99,91,95,96,110,102,104,93,118,85,105,112,103,103,98,94,100,115,98,102,105,104,103,106,99,98,110,100,102,103,95,109,111,80,100,91,98,98,105,97,91,99,96,100,101,98,113,83,113,117,97,108,103,109,98,87,98,94,110,98,105,106,102,93,90,103,84,98,102,102,106,117,112,106,109,99,91,107,96,120,105,113,97,104,99,98,105,106,97,107,100,115,102,95,111,107,99,83,97,111,98,116,109,80,77,92,108,98,109,105,106,113,105,106,99,102,118,107,92,106,96,91,101,86,110,89,105,98,103,117,112,107,91,97,97,107,96,99,101,105,95,94, +641.65137,117,106,82,102,90,95,98,112,118,98,103,119,100,105,103,106,100,105,86,99,97,95,105,92,91,114,108,100,87,102,101,115,103,86,109,108,99,105,100,107,103,94,117,91,108,107,90,95,102,94,103,100,104,108,97,85,99,101,116,100,105,117,109,100,103,106,97,95,104,95,116,108,96,95,106,94,100,102,107,108,107,100,105,90,105,93,105,102,103,106,88,100,92,113,110,91,64,104,100,97,108,104,98,96,106,103,105,90,111,101,103,112,98,102,110,100,113,97,111,124,93,105,94,98,107,114,114,94,103,104,102,108,107,105,93,94,95,108,88,92,94,91,105,109,100,98,100,95,100,106,91,91,106,94,96,94,104,101,99,105,98,95,114,105,98,109,105,104,102,115,109,105,98,92,99,105,99,99,109,104,97,100,107,108,101,107,93,109,111,95,101,105,95,100,100,94,110,107,100,95,94,91,96,110,105,105,100,99,110,97,109,93,116,106,101,107,94,99,94,102,108,101,99,97,96,96,115,114,109,88,95,98,94,97,95,108,97,104,96,108,87,110,98,110,101,91,109,82,99,108,108,107,98,104,95,101,102,97,90,104,99,102,106,102,98,111,108,104,86,122,95,101,110,103,111,103,98,109,99,90,109,105,98,112,110,110,105,112,104,104,101,113,101,105,102,115,114,102,98,75,102,105,106,107,96,99,109,99,103,100,91,110,100,94,113,105,105,112,124,105,98,102,86,107,86,100,97,94,114,105,96,104,130,104,105,97,101,112,107,109,94,97,117,95,88,103,98,113,107,101,108,110,110,109,106,101,104,95,99,90,111,91,100,105,101,98,101,105,110,112,99,105,84,102,120,129,111,106,106,107,102,103,100,93,105,112,105,101,88,98,95,93,97,99,89,104,91,102,104,105,111,90,101,103,90,87,102,117,99,114,82,90,94,88,110,105,103,102,97,102,95,97,94,105,105,104,109,108,111,115,111,107,116,81,100,87,108,99,92,114,102,112,109,113,94,110,99,97,103,99,111,96,107,115,113,111,112,98,109,121,99,97,96,115,106,110,110,98,100,108,99,81,92,117,96,91,88,108,113,106,100,104,104,103,105,106,99,81,94,87,109,106,101,118,102,106,108,112,107,102,92,99,83,104,98,106,111,104,120,99,109,102,93,110,102,104,101,127,96,90,103,99,97,107,90,93,99,101,106,105,84,110,106,96,98,85,102,108,100,101,91,103,96,105,113,109,111,88,99,103,96,108,104,106,97,86,116,87,107,109,99,105,113,103,101,109,113,106,97,99,100,110,103,101,101,113,113,124,104,103,105,98,109,101,105,101,105,109,99,95,116,96,107,108,107,120,99,111,100,105,92,87,94,114,105,101,97,89,107,94,80,121,90,92,83,102,94,102,113,101,109,109,101,100,103,99,93,98,105,103,95,107,90,104,96,107,112,96,105,110,100,101,113,109,100,99,100,100,98,115,103,119,114,105,118,105,122,102,103,107,101,112,102,98,90,105,84,107,107,103,75,102,104,99,97,111,106,114,101,100,98,103,93,108,90,107,101,112,109,99,97,95,102,120,104,89,111,110,103,96,102,79,97,98,106,109,109,106,104,109,112,119,104,111,113,102,95,93,103,106,108,102,104,109,92,115,106,112,101,107,109,112,106,94,98,113,105,102,109,114,111,101,95,97,111,104,105,111,104,101,103,115,95,91,97,90,106,101,103,109,102,93,98,101,99,109,95,105,99,104,115,108,101,109,105,94,100,99,105,104,100,90,104,108,101,112,99,105,107,109,98,104,109,105,110,101,99,108,107,100,103,101,94,106,111,102,98,96,109,106,101,90,98,102,105,119,100,103,122,111,96,111,113,105,101,101,98,99,106,112,99,102,95,98,109,107,86,111,112,110,92,90,101,121,82,100,96,99,95,83,107,110,104,92,112,105,116,107,99,113,104,100,101,120,107,93,91,110,108,106,101,109,107,113,89,102,99,104,110,100,98,94,100,100,109,107,104,114,98,100,103,106,125,102,110,95,93,94,107,106,109,103,105,104,92,98,97,112,94,96,98,109,106,115,84,101,87,114,96,109,109,101,104,91,111,100,105,96,111,105,92,116,111,103,114,94,111,94,103,106,103,109,105,120,98,93,103,92,140,93,104,111,101,98,113,110,113,83,99,99,102,105,93,89,89,83,95,107,94,98,93,103,99,109,98,93,99,105,99,105,111,89,87,106,112,103,99,103,106,99,101,103,113,115,108,111,95,110,105,87,100,96,94,118,104,99,109,101,100,112,108,102,94,100,98,96,112,98,102,96,113,94,102,97,105,103,120,101,100,115,102,106,123,107,105,93,97,113,109,118,85,111,103,110,78,114,127,115,112,100,120,104,97,115,101,91,107,104,102,89,107,103,99,103,74,112,103,113,107,102,92,110,103,91,97,97,113,94,108,82,100,107,109,98,112,100,102,96,120,108,110,99,122,85,109,103,113,101,118,109,113,94,106,99,109,105,108,111,103,105,95,109,111,92,109,103,117,117,101,97,109,99,114,102,95,105,112,98,110,98,104,131,103,107,102,111,114,109,108,98,125,109,102,111,104,109,110,96,113,102,114,115,122,106,103,99,106,121,108,106,104,100,105,96,110,109,107,109,114,114,98,110,106,102,93,108,108,101,91,106,108,95,86,107,104,105,104,117,101,107,101,90,111,109,105,113,102,110,100,103,98,117,94,105,101,99,99,101,108,105,102,115,99,111,115,117,110,111,106,110,101,112,105,113,118,102,98,108,106,116,102,105,93,108,103,83,109,111,105,115,107,114,105,103,112,99,100,123,104,105,103,102,111,106,108,103,108,107,102,108,115,104,103,108,109,99,104,115,105,128,117,105,104,114,102,108,109,105,111,113,94,100,107,99,109,121,113,113,101,100,129,102,106,116,106,94,120,102,133,111,111,104,103,104,109,117,105,106,102,99,109,106,104,95,96,110,103,97,95,109,106,103,105,96,94,107,100,100,104,104,109,110,105,113,110,108,103,104,98,118,104,103,111,114,100,98,106,99,108,104,100,112,103,121,107,98,111,100,110,136,100,111,104,115,106,104,107,104,102,104,109,115,100,105,98,97,115,120,101,87,117,92,95,98,99,108,101,135,105,106,111,99,107,123,102,103,120,105,118,103,113,100,104,111,108,102,112,91,106,104,101,116,102,102,103,107,112,94,111,104,102,102,97,103,113,100,112,102,117,97,113,122,106,119,113,104,95,102,100,117,74,91,93,116,98,108,96,105,98,97,108,107,105,108,101,103,105,109,105,101,110,104,110,110,106,99,100,102,101,102,103,104,109,96,99,140,106,105,103,99,104,106,94,110,103,95,107,76,109,95,104,98,104,110,108,109,99,108,108,113,99,87,113,99,108,98,110,108,112,102,112,110,107,95,102,99,105,111,104,119,104,124,108,99,105,115,102,98,104,98,109,90,101,104,99,95,106,105,104,109,109,99,107,106,112,102,100,105,107,96,106,114,101,100,102,105,104,104,108,106,107,72,113,102,108,114,99,115,115,116,113,126,99,108,109,96,111,105,106,100,101,67,99,101,99,93,116,126,104,102,101,106,104,101,100,99,102,109,104,102,100,100,102,107,97,105,110,113,93,103,107,96,97,99,104,98,113,94,122,95,104,107,113,103,99,98,119,130,108,98,112,96,108,111,107,93,98,97,104,111,104,103,108,110,107,103,111,101,111,104,115,91,101,80,99,107,94,111,100,100,109,98,113,109,109,108,109,99,105,115,102,104,103,107,101,104,118,108,106,100,115,106,108,109,109,107,102,102,101,109,96,111,100,106,99,104,108,102,117,98,102,109,112,102,105,100,107,98,111,90,106,112,81,101,99,100,99,109,132,110,106,103,108,101,103,106,117,108,96,100,117,101,117,95,100,97,97,98,105,99,95,114,100,112,107,106,99,98,101,105,103,101,105,112,100,112,100,110,117,99,112,102,104,105,117,100,112,108,105,111,112,115,108,103,113,116,99,109,102,109,106,101,97,99,109,105,112,100,91,100,103,102,96,102,89,112,107,101,100,105,113,105,96,113,107,108,87,100,113,95,112,100,110,103,106,108,103,109,103,107,95,92,105,105,117,104,105,104,105,111,112,105,91,90,109,108,97,113,114,109,114,102,115,107,109,109,99,104,108,105,106,104,106,110,103,112,100,102,95,104,92,96,90,98,102,107,100,100,90,101,102,96,88,114,111,102,91,110,107,100,96,97,97,107,97,120,99,96,101,104,80,107,108,96,113,102,97,106,102,125,100,100,106,105,98,113,93,96,101,110,113,103,95,98,116,105,101,103,100,110,109,112,106,91,103,101,111,102,103,100,99,110,128,103,100,103,104,102,108,97,106,96,91,102,105,115,96,112,111,99,108,98,96,100,98,106,101,90,104,102,105,107,99,112,99,97,108,93,100,101,101,97,112,100,113,106,88,96,106,109,104,121,107,94,106,107,110,105,103,115,101,107,106,104,101,103,103,105,100,103,89,108,102,105,109,96,94,104,113,105,95,113,95,96,103,86,110,108,84,98,105,103,102,113,136,110,105,105,94,92,105,100,71,104,106,109,111,105,104,108,100,98,109,105,102,85,105,113,105,102,101,105,104,102,99,115,89,103,94,115,90,108,97,94,103,98,105,108,109,102,101,102,117,103,102,98,96,100,101,98,91,93,107,105,92,112,97,91,94,114,108,105,108,99,101,110,103,98,108,100,79,96,104,103,107,109,102,104,117,111,96,99,102,106,103,108,107,113,113,102,122,101,95,93,108,101,104,106,95,109,102,99,103,115,95,99,84,94,102,91,101,105,96,98,97,100,105,100,96,102,109,93,102,95,112,105,112,104,105,96, +641.79254,96,101,82,100,85,103,104,101,94,110,108,113,100,108,102,94,107,96,100,97,96,94,107,100,97,94,110,104,101,103,104,98,101,105,109,91,111,92,86,98,105,98,103,112,93,107,96,99,94,85,103,85,95,95,98,95,96,96,104,98,101,104,116,100,103,106,95,100,97,102,123,117,90,107,108,109,100,86,129,114,87,100,95,116,90,108,105,100,105,99,93,96,98,102,75,83,102,105,114,107,114,99,101,92,106,110,105,106,104,108,103,112,105,87,92,113,111,97,109,105,106,100,109,93,101,103,102,94,95,106,74,115,106,103,91,109,101,118,99,117,104,108,102,108,93,99,106,113,97,103,90,101,111,87,89,106,100,107,121,100,107,98,91,107,103,99,96,103,122,109,113,113,100,101,106,93,110,91,104,102,106,98,89,113,99,85,102,107,95,102,97,94,92,107,99,103,98,91,104,111,95,75,95,79,98,93,86,98,99,116,101,100,115,107,111,100,90,111,105,113,100,121,83,95,119,101,107,100,101,109,106,105,111,91,116,103,115,100,100,103,107,106,102,91,94,99,98,104,89,111,109,106,106,100,96,101,100,100,91,104,108,92,100,99,104,87,107,109,102,99,102,105,113,99,101,90,108,111,98,96,93,115,103,97,92,103,97,107,100,103,105,113,118,111,105,102,111,91,110,114,107,97,100,110,104,104,113,83,103,113,113,118,94,104,107,98,103,97,98,98,99,101,106,109,97,103,95,97,105,108,106,111,107,104,105,100,109,98,101,105,105,114,96,96,92,104,92,118,112,112,107,98,112,101,99,103,105,93,108,103,111,98,98,103,95,102,102,108,112,98,110,117,112,118,108,92,105,141,96,110,102,98,102,90,97,102,96,113,108,102,114,94,109,111,92,105,86,91,100,115,133,114,99,71,104,104,102,105,106,107,92,104,105,103,92,93,101,106,99,115,110,109,91,102,101,100,87,88,103,106,99,103,110,98,105,82,107,101,101,102,101,101,100,112,64,84,98,100,104,100,98,95,108,106,97,103,105,105,104,100,102,91,102,107,110,102,107,75,103,84,103,106,101,110,102,110,104,113,91,106,97,105,120,97,105,106,100,105,104,101,98,94,84,98,110,114,99,108,104,92,96,105,81,94,70,87,94,99,97,101,103,109,104,110,116,102,118,112,95,109,99,108,100,109,112,94,105,95,96,110,98,98,115,102,103,98,125,92,131,97,103,115,95,91,95,94,107,103,107,108,105,102,110,100,114,97,105,102,105,99,103,97,92,108,100,98,110,99,92,109,97,93,84,98,100,111,112,96,103,104,103,104,98,101,107,102,110,112,108,98,104,100,102,107,106,115,107,103,102,113,97,103,104,106,104,96,92,99,112,103,100,100,105,107,96,101,110,108,104,91,107,107,105,100,106,107,98,98,109,109,105,97,104,110,116,108,101,93,116,98,93,107,111,99,99,86,105,96,103,106,99,109,108,101,96,92,108,106,101,108,89,118,109,105,97,91,113,100,110,104,113,110,97,100,111,104,104,104,110,105,105,98,113,101,109,108,108,100,97,100,115,117,104,112,102,93,106,111,106,105,89,106,98,96,107,119,101,104,91,96,109,98,110,90,101,106,109,97,105,109,105,113,95,108,101,94,104,105,99,112,100,107,114,99,106,99,102,94,117,104,103,113,102,92,93,112,102,97,105,105,108,100,90,108,109,102,115,112,91,102,104,101,89,104,103,106,99,104,105,108,118,102,100,87,107,97,106,103,113,99,95,108,98,109,88,103,106,106,117,104,108,120,115,108,105,105,107,105,103,116,105,116,97,115,108,108,120,80,118,103,111,100,102,104,102,110,101,115,111,98,105,102,106,94,91,101,102,107,95,92,105,105,104,101,101,109,101,91,120,110,96,109,107,98,106,104,102,106,99,103,94,87,101,116,99,109,103,111,103,97,97,104,100,87,100,92,95,100,108,96,96,110,107,114,114,114,102,95,96,100,104,100,87,99,90,88,103,105,117,96,123,107,104,105,104,94,101,105,99,111,110,104,109,99,97,95,98,100,105,99,102,76,103,115,104,94,90,104,110,113,116,109,104,99,95,105,102,113,113,96,91,99,110,95,99,98,90,101,106,110,106,111,107,96,93,93,103,103,108,113,91,101,105,104,113,108,104,112,96,112,112,98,105,111,106,94,104,104,109,99,100,101,124,102,99,92,94,86,88,106,94,113,96,100,92,98,105,99,94,93,98,114,100,109,95,109,104,103,95,101,97,95,101,104,112,102,97,95,115,116,107,102,105,109,98,101,99,105,93,102,109,94,112,112,105,99,105,88,102,112,107,95,101,106,87,96,95,97,102,117,110,105,91,106,96,106,120,97,116,98,117,100,110,109,96,92,108,114,112,118,103,102,112,110,105,93,104,100,100,99,83,108,89,105,100,105,101,104,100,99,101,104,94,117,105,108,96,96,109,95,82,103,106,108,94,107,106,93,114,100,102,94,94,100,107,106,113,101,99,99,86,107,105,100,106,96,101,108,104,99,110,109,89,105,109,114,85,112,110,109,112,105,110,108,107,102,113,109,107,103,108,99,96,99,101,93,103,111,118,101,107,93,105,93,106,117,95,98,116,111,115,95,117,112,101,106,100,104,105,105,113,95,103,107,92,98,102,102,108,110,113,119,105,94,107,107,106,113,102,101,105,105,109,102,106,100,113,101,104,91,102,109,108,104,110,96,112,99,91,112,126,108,103,104,106,110,103,117,105,103,105,110,104,103,96,92,105,116,113,106,102,105,109,101,99,87,111,92,100,105,115,100,96,100,115,106,97,101,88,110,108,114,104,100,87,105,104,104,94,103,112,98,100,119,111,103,109,107,108,96,106,100,100,105,98,94,113,109,120,102,87,113,109,110,115,94,114,99,103,109,97,120,105,108,96,108,102,123,106,109,112,108,101,109,108,108,122,104,96,98,107,108,95,106,106,104,102,104,99,103,107,100,108,106,126,106,100,103,98,100,92,102,96,107,111,104,99,108,110,107,95,97,106,100,107,109,117,90,108,104,100,102,94,102,103,104,98,111,104,105,104,100,120,94,106,99,104,105,111,96,111,107,105,125,106,98,93,112,106,98,112,127,96,101,109,104,95,100,96,109,103,100,111,104,109,100,106,116,103,104,105,106,102,103,96,111,109,117,99,109,91,108,123,108,114,103,101,101,102,113,117,75,87,118,105,101,119,109,109,101,98,113,108,108,118,109,99,106,109,94,80,109,108,106,109,105,110,111,109,98,108,99,107,116,94,102,95,100,102,96,105,110,108,111,109,108,89,100,98,103,104,99,104,112,109,111,104,111,101,99,113,105,102,108,87,105,105,101,87,99,99,105,96,110,95,102,109,100,102,102,88,112,109,116,101,87,116,98,97,99,100,96,97,104,109,108,101,100,100,98,110,97,95,102,111,99,74,95,104,99,118,109,100,97,105,95,101,98,94,102,96,100,99,102,104,103,110,110,123,111,91,110,110,114,95,104,112,85,96,106,84,97,97,98,104,111,100,108,101,123,99,99,102,108,122,102,82,98,107,85,99,104,100,103,102,108,88,110,113,113,94,103,102,112,95,87,105,117,107,106,97,96,104,101,105,116,98,99,98,101,95,119,92,95,88,109,101,98,100,109,87,100,102,95,106,96,96,111,101,90,105,105,101,128,106,102,111,94,111,99,94,63,104,95,103,106,103,116,101,100,112,105,105,95,102,106,98,111,107,103,115,100,96,102,99,108,116,104,104,108,106,108,99,106,105,94,103,102,98,77,107,94,106,110,97,108,105,103,102,90,99,100,100,107,117,117,105,135,108,105,99,102,133,108,97,112,103,106,105,110,96,99,100,111,114,96,104,100,103,101,93,98,89,102,102,105,116,92,116,102,100,104,107,106,104,86,111,98,112,99,97,121,99,107,93,100,107,101,98,102,104,114,119,117,116,126,89,102,105,115,98,107,90,93,118,97,95,102,94,112,109,108,100,101,119,99,104,117,112,117,103,80,89,103,89,87,110,98,113,103,115,105,106,95,109,104,96,112,112,103,99,107,109,106,106,97,93,103,108,102,107,91,109,100,96,100,103,98,128,99,92,97,97,93,101,105,103,109,108,103,110,100,95,97,94,118,88,117,101,103,103,108,88,90,103,106,92,108,105,97,113,104,95,104,102,98,117,106,98,110,97,96,69,98,100,98,112,106,103,93,104,96,104,97,93,98,96,98,100,108,97,96,107,101,102,104,104,102,105,98,112,110,102,101,100,101,115,106,107,103,97,100,112,104,115,103,112,122,92,111,108,110,117,99,112,98,109,103,100,100,112,99,111,99,101,102,90,107,117,91,97,106,103,104,94,99,103,96,97,95,100,104,101,116,117,103,119,119,95,100,102,112,102,109,112,111,109,113,102,107,108,108,103,98,105,102,112,116,107,108,108,120,115,115,105,111,104,93,114,113,97,97,103,103,105,102,108,98,92,103,98,98,90,100,103,107,105,131,117,118,103,92,96,109,101,103,102,98,104,104,97,108,95,98,63,115,117,107,101,102,102,98,117,105,114,112,127,98,107,102,103,104,105,98,105,104,94,95,104,106,104,106,101,105,103,109,110,116,95,101,102,88,99,95,95,102,88,79,96,95,98,95,107,101,108,106,101,102,114,106,108,102,113,96,102,98,99,105,104,91,109,95,97,100,96,95,102,101,113,105,84,102,108,123,114,100,102,96,96,97,104,114,115,105,93,96,108,101,117,105,99,100,101,97,108,98,105,106,116,102,102,112,94,108,106,99,108,107,92,98,100,87,92,93,108,109,90,111,109,106,103,101,95,95,93,95,128,109,95,98,107,112,96,102,102,108,119,99,96,99, +641.93365,112,87,104,99,96,99,87,113,113,94,102,100,93,99,110,113,99,110,93,96,100,111,101,106,99,104,106,94,113,118,90,95,114,101,105,111,103,99,112,105,107,108,123,103,108,94,84,113,98,113,92,111,105,105,94,100,112,102,109,95,105,106,108,102,106,109,102,101,101,103,102,97,93,104,94,101,114,103,106,121,110,92,109,101,111,100,105,99,110,98,96,116,105,101,113,96,106,99,106,107,84,96,111,98,104,107,110,115,107,94,98,112,110,98,110,98,111,103,101,95,100,105,112,99,109,102,120,102,116,94,112,96,105,101,108,98,86,103,110,101,120,121,101,106,104,99,105,109,97,92,96,95,102,99,106,97,103,97,105,101,95,103,108,98,114,102,99,99,111,109,118,113,93,111,115,114,99,93,99,104,110,107,125,103,112,109,103,96,112,108,92,120,97,98,97,100,92,106,108,108,94,98,98,86,100,105,105,102,101,90,99,109,92,91,104,109,92,103,103,107,102,114,92,103,111,99,106,96,94,108,96,103,106,93,100,110,105,98,113,112,101,96,112,98,110,100,95,107,110,75,107,108,101,112,100,122,97,111,107,113,96,108,104,92,110,104,105,90,113,101,114,94,110,97,100,106,93,116,103,105,111,106,105,100,103,104,97,100,105,101,110,103,108,98,105,105,105,104,108,95,107,113,109,116,102,105,110,116,95,103,103,109,101,106,94,98,97,100,100,97,109,114,111,105,87,102,107,96,111,105,113,115,108,94,105,105,109,107,97,94,106,107,96,103,98,102,109,97,110,101,99,102,115,95,120,108,116,95,119,88,118,105,104,98,100,103,93,109,107,96,102,102,110,103,100,116,101,99,97,101,124,105,97,110,103,97,96,121,116,100,108,112,105,105,103,114,103,94,98,102,93,100,106,104,112,98,95,101,99,104,98,98,108,110,103,99,101,103,100,103,101,102,103,108,101,104,109,103,97,104,97,114,101,118,96,96,97,117,97,106,116,93,101,110,97,105,117,106,104,109,104,106,102,101,94,94,107,108,112,91,99,101,96,108,109,113,104,117,100,84,116,103,112,101,95,106,112,116,90,107,97,84,109,95,98,102,106,104,89,104,107,102,94,100,106,90,106,91,109,106,114,114,118,99,96,100,94,109,112,99,115,108,107,124,108,111,101,92,106,95,105,101,110,99,106,107,103,123,70,100,99,85,107,105,79,86,108,114,76,100,96,95,96,87,108,105,101,102,121,103,105,103,97,102,116,92,117,101,102,97,106,106,106,98,95,102,100,104,109,99,99,98,100,97,94,110,97,117,113,94,97,117,103,107,106,105,113,105,99,105,104,99,114,113,97,118,107,102,110,97,95,85,124,113,114,115,99,85,108,114,100,106,98,114,106,109,100,99,92,122,85,108,107,99,105,101,109,112,117,103,99,104,110,118,102,104,105,102,99,95,101,100,108,96,97,93,123,97,105,119,95,98,95,108,103,110,101,110,92,112,110,95,103,103,93,105,102,95,100,100,112,101,102,113,113,112,107,112,124,96,110,102,112,100,107,108,112,108,104,98,95,99,102,100,91,109,103,105,100,103,83,110,102,99,113,103,101,99,96,117,96,100,96,112,106,90,105,102,109,95,94,94,111,117,112,112,105,94,112,115,108,95,92,104,95,99,102,96,113,108,124,102,121,99,97,99,107,107,103,111,101,108,105,106,104,99,106,100,102,100,100,103,106,115,110,101,101,107,109,109,107,106,104,92,105,104,109,107,104,99,110,105,107,112,102,111,109,103,99,115,114,103,109,97,110,96,104,105,116,96,99,101,102,92,102,105,100,107,90,99,109,83,113,100,104,104,113,102,111,106,99,112,95,102,109,106,101,103,108,105,99,105,104,113,87,103,97,103,96,96,117,106,95,102,96,105,107,98,101,95,103,106,108,92,104,112,96,104,105,82,110,96,107,107,97,109,104,94,111,97,97,107,112,101,101,102,103,98,98,102,90,111,98,110,95,105,96,103,85,94,103,104,115,94,122,103,106,112,99,96,105,118,110,111,107,103,97,107,99,106,102,106,115,133,104,110,110,113,106,116,113,113,109,94,99,101,105,100,85,108,143,108,108,121,101,102,112,99,86,105,103,101,93,101,108,100,100,106,82,112,99,108,118,104,106,112,114,108,97,109,92,99,95,100,110,102,102,101,105,98,103,113,100,98,95,103,102,107,93,106,105,87,105,106,113,106,110,113,112,96,87,100,95,115,103,102,95,108,96,99,107,103,105,105,96,98,106,100,99,114,95,116,95,99,114,90,105,116,117,104,105,111,108,98,105,98,95,105,109,79,110,98,111,105,107,104,106,113,120,96,107,115,115,103,100,131,109,120,115,108,108,99,106,113,112,95,97,94,102,101,90,107,106,93,99,97,102,94,114,110,101,103,107,106,96,93,98,100,104,106,107,95,91,100,100,106,102,91,98,101,103,113,111,96,95,113,93,106,113,103,108,91,88,71,99,116,104,90,121,95,105,99,111,94,96,94,84,116,90,112,105,99,97,116,106,119,105,108,106,115,107,115,105,104,98,104,100,107,113,106,98,110,105,119,104,105,99,88,117,113,126,98,125,105,104,92,100,112,123,108,102,109,105,100,88,103,100,109,93,102,103,106,107,105,113,95,108,99,113,105,114,104,90,107,105,103,115,113,107,103,108,96,114,109,108,103,108,98,106,107,102,106,100,105,115,108,90,103,103,112,101,86,91,121,101,97,109,113,93,101,102,101,99,99,106,72,107,104,106,104,108,114,90,106,98,98,96,105,102,98,113,109,119,91,108,98,103,108,97,113,102,110,102,101,106,97,105,96,114,119,106,96,107,104,113,96,105,113,113,114,101,107,100,85,98,93,101,98,107,105,99,118,106,95,95,95,104,107,109,92,100,105,105,108,123,104,116,115,106,103,103,91,113,107,95,106,114,102,98,99,122,113,103,103,106,107,98,107,108,100,103,107,97,96,110,91,93,115,121,105,70,89,97,108,108,96,107,98,98,98,104,103,116,110,111,96,96,99,103,108,105,113,108,109,98,99,108,92,98,107,104,98,99,104,105,88,105,97,103,96,92,101,93,108,114,93,106,96,104,97,91,100,84,96,101,113,100,95,97,99,98,98,107,103,95,107,105,99,104,101,116,104,103,94,98,101,104,93,109,99,108,103,109,93,103,96,97,102,99,100,109,100,91,90,95,104,105,102,105,99,104,97,109,104,104,110,106,108,103,98,98,93,84,101,96,110,81,103,107,104,101,100,114,110,100,96,109,94,104,97,110,96,109,108,92,107,90,97,84,88,108,112,105,103,102,113,100,87,104,108,107,96,97,120,105,105,102,83,95,104,83,114,102,99,79,120,99,107,121,105,119,107,88,113,113,101,110,108,117,99,99,102,108,104,101,100,108,105,99,97,100,105,110,113,99,103,105,102,102,99,110,86,107,102,119,99,103,95,110,91,96,111,103,108,102,102,105,117,102,104,99,102,100,113,98,99,104,99,93,110,104,107,104,94,92,114,108,103,104,107,107,97,103,108,103,107,92,99,99,92,114,108,115,110,94,106,96,105,117,99,96,96,103,116,101,105,101,113,117,104,109,123,122,110,106,101,102,104,106,103,101,97,108,86,101,100,85,102,98,112,108,100,101,104,95,104,118,108,105,78,111,100,103,105,107,107,96,108,94,117,101,100,103,99,91,92,100,105,117,105,101,107,102,96,108,99,99,117,108,104,104,98,105,115,97,107,113,101,99,123,101,101,109,100,79,107,114,102,97,103,104,106,115,96,107,107,111,101,108,118,111,112,95,98,97,97,113,116,103,119,95,120,108,118,107,96,91,95,99,107,103,104,102,114,106,115,116,106,97,100,118,109,112,75,117,99,113,111,107,97,93,85,114,98,97,110,95,142,90,102,117,106,142,109,92,104,99,103,102,112,116,113,96,103,110,93,118,96,114,98,125,113,94,91,114,100,115,106,101,99,110,110,92,112,101,110,100,107,116,113,106,105,89,102,110,104,109,110,125,109,105,102,121,113,104,109,114,94,108,102,103,115,115,113,121,122,96,99,122,113,111,116,109,116,96,102,102,116,111,96,103,102,112,109,98,90,97,96,99,93,106,104,110,109,113,98,100,100,109,96,114,115,98,109,102,108,98,103,106,109,106,109,102,103,111,100,104,112,101,97,91,105,109,100,107,102,114,100,96,99,104,102,106,96,97,102,96,108,103,103,78,101,107,103,110,101,99,99,96,99,102,102,108,103,114,98,107,112,99,99,98,104,113,107,106,95,112,105,99,108,112,96,107,102,124,110,109,100,107,120,96,97,105,97,104,97,104,102,106,87,98,115,87,108,102,121,109,99,109,100,103,99,97,105,109,89,95,100,99,103,102,113,108,103,112,102,102,115,113,106,108,96,101,102,105,106,108,102,103,103,106,105,122,109,95,91,98,117,106,93,94,102,105,110,106,97,101,116,106,96,92,106,97,100,108,100,111,95,106,105,97,108,106,106,110,103,107,111,108,108,87,103,115,87,107,115,117,106,103,100,118,98,105,93,106,101,110,106,103,117,110,102,98,113,108,105,122,98,110,110,112,104,102,102,104,88,115,114,100,91,102,105,99,100,102,91,105,112,101,108,97,113,104,102,112,115,108,109,99,89,110,118,112,90,98,98,96,95,112,88,97,99,101,99,102,99,108,101,107,101,102,88,95,98,72,98,97,110,98,111,100,112,100,100,91,113,94,104,104,99,110,101,109,97,103,108,103,99,95,103,107,96,109,108,101,100,91,114,110,106,101,116,105,88,92,95,87,104,104,100,122,99,91,89,112,125,105,118,96,100,95,107,93,92,107,110,105,102,120,86, +642.07483,106,97,101,130,100,130,101,100,106,94,84,106,94,108,119,105,106,115,102,106,106,100,100,112,101,106,114,105,109,108,99,100,111,104,111,118,136,106,107,103,96,113,96,109,97,111,99,111,108,98,117,99,108,98,103,101,103,111,94,102,90,113,99,84,120,100,119,104,105,96,103,79,90,105,107,105,102,110,101,98,107,95,103,100,102,113,97,112,102,98,112,80,106,99,94,84,108,100,105,102,108,107,116,106,91,95,113,95,108,92,100,91,106,124,103,105,102,99,112,101,95,115,98,108,104,102,111,98,95,102,109,105,96,102,106,105,102,99,107,103,109,101,104,98,108,97,104,106,100,108,104,118,108,107,101,94,93,101,108,114,99,110,119,97,108,110,105,109,110,96,107,100,99,99,108,107,99,84,93,99,98,87,110,109,103,106,104,101,104,103,107,109,97,105,111,110,107,104,103,96,104,109,105,109,98,116,107,102,102,112,101,110,104,112,101,92,101,112,119,110,96,108,91,96,96,116,107,95,110,96,96,96,105,91,95,118,98,111,90,106,90,115,122,101,108,113,102,97,102,94,128,113,105,110,95,132,95,94,99,112,103,95,95,100,108,92,106,110,90,105,100,105,100,112,120,110,107,114,113,111,109,103,107,108,107,108,107,99,112,103,105,93,97,115,105,114,94,100,116,107,107,99,91,103,106,104,102,99,116,103,108,107,103,100,106,103,106,92,99,104,104,93,100,104,113,100,99,114,114,106,100,71,97,104,105,102,105,116,102,99,103,127,116,102,109,103,98,102,118,104,103,103,109,125,105,106,114,106,108,110,109,97,106,99,112,110,97,113,108,105,110,105,109,94,106,97,101,93,99,106,102,105,117,102,114,103,90,107,113,97,112,90,94,99,110,100,104,99,112,109,79,109,109,102,110,91,92,100,99,107,102,97,100,87,106,105,101,103,107,108,101,95,106,106,104,93,101,98,103,99,104,100,116,114,95,100,106,110,100,101,99,105,99,113,68,112,102,102,107,104,99,99,103,137,108,107,107,110,117,103,108,104,103,99,113,107,97,100,109,103,103,110,114,103,103,106,100,106,107,118,98,114,102,99,99,98,108,116,107,94,103,102,108,107,110,102,95,106,112,104,119,96,115,99,100,101,95,98,105,118,110,105,108,107,94,108,110,92,102,92,96,109,96,101,112,106,100,118,91,109,101,96,114,100,92,99,101,109,99,109,83,116,88,103,108,104,104,105,90,106,95,119,104,108,103,103,108,99,108,120,96,108,96,103,116,91,102,111,113,98,90,106,92,106,90,106,116,106,103,96,109,97,98,112,95,100,107,119,104,98,107,114,103,94,104,103,99,108,103,102,117,101,111,107,100,104,104,100,110,114,112,99,74,75,107,105,113,109,109,110,95,105,95,104,112,108,109,98,100,101,101,102,101,99,108,129,101,106,114,88,106,95,105,80,127,96,96,90,103,110,114,102,89,110,104,106,125,131,121,98,106,122,108,106,93,96,101,101,103,104,101,103,103,107,102,104,110,101,109,101,103,104,115,100,102,105,101,97,103,101,91,99,105,111,102,98,95,93,112,98,110,101,96,103,79,110,95,108,104,103,102,109,98,106,109,109,96,108,116,105,100,104,110,108,104,106,105,96,119,105,109,105,98,99,101,100,108,100,100,122,106,101,102,103,111,111,108,92,117,98,102,81,102,102,102,108,101,96,106,100,108,109,100,103,106,97,102,109,107,99,103,110,98,102,99,105,103,110,101,102,110,101,108,101,70,99,116,109,96,120,115,111,103,91,95,103,110,94,107,98,103,95,100,100,98,94,101,104,104,64,102,105,100,106,101,94,125,100,116,103,104,111,111,100,106,108,103,124,100,104,115,112,96,97,90,105,108,109,102,123,111,102,121,99,106,95,102,78,102,100,106,109,105,104,102,101,103,93,99,97,96,104,100,103,108,104,78,99,108,98,106,108,103,125,105,115,99,101,102,105,99,108,104,109,113,105,87,100,124,88,99,109,105,106,94,110,109,96,97,111,97,106,104,106,104,101,101,96,105,103,111,108,109,106,111,107,119,105,105,107,74,109,115,112,108,106,99,95,109,105,113,121,108,104,111,90,113,92,97,103,111,108,95,92,106,103,110,105,110,125,113,113,99,107,106,105,109,95,92,100,103,98,104,94,115,100,102,106,95,115,102,101,105,93,95,118,111,109,103,97,99,106,95,101,116,100,117,101,99,103,112,110,99,109,114,101,100,101,106,103,101,105,107,99,101,101,96,95,108,98,97,110,102,110,101,95,116,99,105,102,98,104,102,99,109,91,115,91,74,105,109,108,104,105,112,91,90,102,105,97,107,112,98,109,110,111,113,104,95,117,109,103,104,106,108,96,98,111,108,90,99,114,94,98,116,105,93,116,97,110,82,118,101,116,106,109,100,97,97,98,108,109,100,103,105,105,108,101,121,106,109,108,115,101,115,110,104,103,95,113,101,71,94,92,101,114,109,104,111,99,98,105,92,112,106,100,85,98,90,113,92,96,98,101,102,102,100,105,100,112,96,98,108,88,106,92,100,98,103,98,99,101,89,96,114,101,108,99,99,101,113,106,115,104,104,97,112,134,102,101,103,102,106,98,90,107,107,104,99,111,99,98,108,103,103,121,100,102,105,100,106,106,106,112,106,106,114,100,99,107,104,104,106,109,102,102,107,95,106,89,100,100,102,94,112,100,108,107,102,94,101,103,88,97,108,112,107,108,104,96,113,102,106,111,106,110,109,121,109,113,109,94,112,100,110,100,112,103,92,101,107,99,109,97,87,99,115,111,102,104,106,102,99,105,95,106,97,99,106,113,104,109,113,103,110,105,104,95,103,107,98,117,105,103,120,106,102,108,109,129,101,113,103,98,93,100,105,103,122,109,99,100,101,94,109,109,98,103,107,113,99,105,101,113,109,105,110,104,105,98,101,108,108,111,79,98,109,108,107,101,103,94,94,88,109,103,105,106,106,105,91,85,105,102,113,115,100,95,105,112,110,100,99,94,106,110,87,103,107,101,101,104,106,101,100,117,109,116,99,103,102,106,101,103,105,102,108,95,111,103,97,99,99,110,107,104,106,108,100,110,92,101,100,108,100,93,108,109,91,98,95,96,100,106,93,99,108,100,107,100,102,91,98,112,91,98,99,102,96,103,91,97,95,108,114,93,107,111,95,113,103,117,100,96,101,95,102,106,112,86,101,101,106,116,98,101,96,107,109,108,100,91,97,94,93,104,110,109,100,102,120,93,106,104,112,94,102,106,105,103,102,113,101,111,91,93,97,102,102,91,107,106,100,103,86,110,99,113,110,97,95,99,98,116,114,113,96,111,113,105,85,104,102,98,103,95,98,104,105,129,97,99,102,106,93,91,100,101,99,94,109,103,98,105,97,103,100,109,106,98,104,102,106,103,97,99,107,87,92,97,107,103,95,90,67,113,103,96,117,102,102,113,101,131,113,102,100,113,83,110,99,96,88,112,101,108,84,88,98,96,109,100,99,104,108,101,112,113,100,111,107,98,105,120,102,95,102,107,124,87,96,107,110,107,104,87,112,104,116,99,89,96,97,109,98,97,110,107,111,107,97,97,109,98,99,104,104,117,126,96,106,89,97,107,94,98,103,104,93,103,106,102,104,105,94,105,107,114,106,95,102,107,106,101,104,98,95,98,107,99,84,102,103,113,103,92,117,107,101,102,83,74,92,91,101,109,105,98,98,113,101,100,102,95,98,102,93,98,107,97,117,106,110,95,95,115,102,103,105,98,95,106,118,93,100,104,101,92,104,107,90,106,114,102,95,96,95,103,106,105,109,99,95,100,109,105,103,72,90,100,109,98,100,100,109,101,105,73,101,85,105,98,105,96,109,106,99,115,95,95,102,114,103,95,101,101,99,109,111,103,94,112,91,114,100,97,98,103,108,113,109,98,112,83,111,97,103,105,105,85,99,109,94,105,105,105,99,97,106,106,101,110,97,116,114,106,106,97,99,109,106,99,112,103,105,116,89,107,98,107,108,106,106,110,94,99,105,93,96,112,103,89,99,114,103,107,113,107,103,102,92,112,106,76,102,99,109,93,94,107,105,97,104,110,98,100,104,103,99,105,111,106,106,102,94,102,104,103,93,94,101,107,112,100,91,111,96,117,105,99,121,107,98,111,100,93,107,103,104,91,87,96,108,107,103,101,117,106,99,100,98,101,112,105,91,124,91,99,103,82,102,109,85,103,115,108,103,100,91,100,111,98,107,102,103,77,92,99,106,111,104,105,98,101,105,99,114,101,109,106,108,105,102,95,68,101,120,98,98,116,113,96,108,106,102,110,98,103,103,82,82,109,123,122,87,109,105,117,99,107,120,103,92,106,98,100,117,105,109,105,110,111,109,106,88,77,98,97,82,88,107,104,105,102,98,105,103,91,103,95,105,95,111,95,109,94,103,98,98,91,95,106,101,109,97,98,97,97,98,94,101,100,124,106,97,99,108,107,116,103,106,105,105,98,105,107,90,109,106,106,93,110,98,106,109,91,103,108,99,93,107,98,93,112,102,101,107,103,113,104,97,126,115,110,105,110,103,105,101,105,108,101,101,112,118,96,114,108,113,97,97,116,107,101,98,94,97,99,101,105,103,100,90,94,93,105,105,106,102,99,106,126,105,96,95,117,109,105,98,86,95,109,92,103,117,99,120,91,88,120,104,106,99,108,95,96,98,109,91,86,98,96,108,104,99,119,112,93,109,100,98,88,95,95,97,101,103,101,100,109,98,102,110,111,110,95,112,108,102,110,95,99,101,100,110,93,88,108,92,98,100,88,102,100,112,83,102,104,103,95,110,113,94,95,107,102,106,107,72,86, +642.216,114,96,102,89,83,101,101,99,113,94,102,89,97,116,115,81,88,105,80,95,103,112,109,118,97,95,114,107,95,110,95,100,101,76,121,104,92,99,98,120,104,109,96,117,111,106,90,108,117,107,113,100,97,116,98,110,98,101,103,96,96,109,110,86,106,125,101,107,104,96,115,99,97,114,95,103,98,124,95,100,101,94,112,121,102,107,108,116,106,98,101,105,104,96,96,94,94,112,110,87,103,90,99,74,98,101,98,100,128,106,102,98,114,98,101,91,97,104,113,109,111,108,101,108,117,102,102,106,114,102,99,106,96,105,103,106,110,112,113,99,102,109,96,102,95,105,123,97,93,99,95,99,110,101,105,97,105,95,100,96,111,99,102,99,95,106,113,101,103,96,103,100,103,113,104,117,105,100,111,114,102,95,112,109,102,112,115,106,113,94,110,110,119,103,104,115,102,110,114,105,94,99,89,99,97,104,112,102,100,99,100,89,107,108,102,112,106,95,100,111,103,110,102,104,104,107,107,110,106,107,106,112,99,112,102,98,101,111,109,101,101,98,87,101,106,98,104,108,106,113,108,109,96,91,95,114,103,103,108,105,98,114,102,97,102,107,124,106,105,77,110,105,106,117,110,106,92,89,108,112,101,93,96,105,109,109,88,102,100,91,113,95,110,110,101,105,113,109,106,105,107,92,115,106,86,112,102,110,103,104,81,115,100,114,94,113,121,105,99,111,109,85,104,105,104,118,96,91,115,112,112,100,113,94,108,105,104,107,97,103,103,104,111,100,107,107,109,104,110,97,100,95,116,104,99,107,107,119,108,107,114,103,101,107,97,104,99,115,91,94,102,105,105,103,111,102,100,121,96,127,95,103,100,106,104,104,101,91,110,98,103,95,113,109,107,90,96,107,106,103,99,90,107,121,117,99,96,104,105,121,106,109,105,103,104,96,105,105,118,112,100,113,91,105,101,86,103,107,116,102,105,111,105,86,106,110,96,109,97,113,110,99,100,111,93,108,100,106,98,113,102,103,101,105,98,107,108,105,102,107,104,108,118,90,104,108,102,108,114,98,101,108,106,75,108,114,95,103,119,112,100,113,104,96,95,106,106,113,111,123,97,106,102,122,110,114,109,99,104,102,105,118,99,105,105,94,107,116,126,88,103,117,105,98,94,104,112,95,110,99,101,96,102,109,102,108,111,96,107,106,97,107,108,104,95,103,98,94,99,114,87,103,101,96,97,97,113,103,105,99,104,120,107,118,102,86,99,107,98,108,102,98,110,91,104,103,105,98,96,103,111,102,117,125,86,106,104,80,104,106,104,104,88,103,93,105,96,108,111,101,91,99,117,113,105,107,105,99,105,103,80,111,114,105,110,103,103,107,101,110,95,105,110,107,109,103,115,97,110,110,107,110,101,104,105,117,103,101,124,111,96,93,113,101,94,110,85,102,103,95,121,102,94,105,108,100,104,108,111,105,108,98,100,93,96,103,96,109,106,103,118,99,115,123,83,101,99,99,106,101,99,107,99,100,105,99,100,106,102,91,105,110,98,95,93,98,102,106,103,109,100,108,101,94,108,105,101,101,87,103,101,93,102,109,108,115,119,108,97,97,109,86,121,107,117,99,104,94,113,97,102,106,96,105,101,95,103,110,98,121,114,112,105,109,105,99,98,99,104,107,105,95,100,97,108,100,91,88,101,107,117,98,85,102,105,99,109,103,114,103,97,104,94,109,98,103,104,108,108,101,99,66,101,119,107,110,107,99,106,112,110,99,107,110,94,100,100,109,108,100,101,104,112,108,110,106,105,105,102,101,84,107,102,99,110,109,110,112,106,104,104,100,109,95,110,105,112,126,101,99,107,99,107,106,103,115,112,92,97,117,104,68,101,108,105,109,97,100,105,98,103,98,109,105,105,107,89,102,104,99,100,99,98,97,97,94,98,90,99,103,106,101,104,104,117,105,107,99,103,109,97,104,113,111,100,89,104,103,106,99,95,104,118,95,101,103,87,104,108,102,109,110,108,102,106,108,105,103,109,107,99,102,114,91,89,104,104,93,108,119,99,110,100,100,102,105,114,111,103,106,105,111,103,110,112,113,103,102,108,110,100,114,110,112,103,102,95,100,105,95,121,92,100,105,95,95,117,101,118,103,95,102,115,107,110,106,105,110,97,93,114,104,108,101,98,94,98,96,104,95,104,100,94,93,97,95,99,97,111,105,91,112,96,103,100,107,97,103,114,98,111,117,104,97,103,103,103,98,99,101,108,101,88,100,114,111,102,106,100,98,112,97,108,119,101,103,76,107,103,99,135,99,109,115,115,105,100,100,101,113,99,90,112,92,103,94,110,108,114,98,112,107,91,112,99,111,100,109,104,98,114,120,102,96,106,99,112,111,102,104,111,104,102,101,104,104,91,114,105,106,97,108,112,122,107,95,101,106,94,102,98,107,103,106,122,110,107,95,109,112,107,104,112,105,107,97,100,111,112,97,102,101,113,102,124,103,98,98,101,97,97,115,111,94,109,94,90,106,102,106,93,92,87,108,106,96,77,106,103,68,104,98,104,95,125,98,113,104,105,115,107,104,108,101,122,115,104,102,109,90,127,105,79,105,118,109,106,112,106,99,121,97,93,118,116,96,107,101,107,106,108,103,109,104,108,104,114,103,108,89,90,106,98,109,111,109,117,107,104,104,87,110,106,109,94,97,94,80,96,93,98,99,107,105,106,99,101,100,93,103,103,109,108,93,119,89,105,105,104,100,102,115,99,104,114,108,112,106,110,102,99,111,104,110,99,106,94,100,102,72,105,112,102,114,94,101,92,98,100,112,95,98,94,109,105,103,105,98,99,112,106,106,101,98,104,87,97,105,105,103,101,108,117,118,99,102,112,105,105,112,124,100,107,99,116,80,95,85,100,106,95,100,96,94,118,110,111,112,105,104,104,100,93,112,110,105,102,103,91,100,111,93,101,97,106,116,105,93,103,98,96,100,100,90,107,95,103,97,109,93,104,88,97,109,110,95,109,106,113,95,110,105,102,111,121,105,105,100,127,109,93,108,99,100,98,104,98,125,93,96,106,97,112,95,100,100,116,104,97,94,101,97,108,111,103,95,107,102,99,104,111,109,104,109,101,117,101,107,104,96,91,102,100,108,114,97,96,96,102,92,100,110,109,112,87,126,109,99,107,92,98,99,108,107,109,102,108,105,92,109,98,106,107,106,92,98,92,102,99,99,109,112,100,110,124,101,113,132,97,106,95,99,102,112,94,98,99,100,109,103,100,101,107,98,102,109,89,91,102,103,107,114,100,98,109,128,104,100,106,101,91,95,93,101,91,113,106,107,115,111,107,95,116,111,105,105,94,102,103,102,106,91,113,100,103,93,99,113,109,92,98,101,105,104,104,97,105,99,108,101,108,98,103,100,95,87,95,113,104,103,105,103,110,101,96,92,112,95,94,109,92,100,100,106,100,96,97,112,102,118,105,100,88,99,98,111,93,110,106,95,81,94,99,97,95,104,99,111,92,106,98,101,106,102,90,106,97,108,95,104,108,104,105,114,74,113,101,107,100,82,98,102,90,96,112,117,109,116,91,92,125,102,100,99,105,93,108,101,105,103,97,102,96,102,99,74,99,98,95,111,100,95,122,93,93,99,98,103,110,109,91,113,111,110,104,107,96,94,100,105,104,102,101,103,101,100,105,99,109,96,104,91,96,120,100,100,106,93,104,97,105,105,94,102,96,97,104,112,103,106,99,110,111,109,104,92,108,108,107,106,88,107,96,98,113,105,80,105,111,109,98,103,105,101,100,105,97,101,103,111,104,102,99,98,104,107,105,102,109,97,104,98,102,106,107,98,100,95,100,120,89,121,98,100,94,109,102,92,95,113,107,112,99,99,97,104,100,104,112,100,103,106,104,99,99,102,87,123,113,102,105,99,113,104,81,102,104,88,94,91,103,97,98,96,98,99,106,102,92,98,95,101,101,108,99,106,109,107,115,92,107,103,98,103,103,106,116,97,90,101,99,104,88,94,109,98,100,103,105,105,109,99,106,104,98,104,106,106,106,107,112,109,86,104,98,100,90,100,80,96,93,92,116,99,106,99,99,104,109,102,96,91,99,97,87,94,111,102,107,97,106,105,98,92,94,103,109,98,97,101,96,112,107,93,91,106,98,104,99,112,106,104,106,120,100,101,103,110,104,107,106,101,93,98,115,101,106,109,94,92,91,105,106,101,93,87,93,102,97,104,97,105,113,93,103,99,111,89,94,107,98,113,117,96,107,113,101,102,100,111,98,94,89,107,101,126,107,108,111,106,107,102,101,107,88,110,97,101,124,104,106,95,104,104,103,104,105,105,102,99,105,102,111,91,91,101,94,107,109,99,97,103,91,93,103,100,89,102,108,96,95,105,106,90,98,87,102,97,109,101,103,94,104,102,108,109,102,98,97,105,105,107,104,100,107,93,98,101,98,112,87,115,99,113,98,101,99,102,98,117,89,102,100,95,99,110,116,73,102,96,115,94,99,109,107,97,97,119,107,109,91,105,120,94,88,97,104,94,97,90,96,91,100,111,103,107,106,95,88,87,100,86,105,108,94,108,111,109,99,104,107,91,106,99,98,114,113,106,109,110,101,100,120,102,98,91,108,96,92,103,100,101,114,83,106,94,121,113,100,107,102,99,109,90,103,98,94,111,103,89,112,108,100,99,97,93,103,86,112,111,110,98,100,91,86,117,92,102,106,109,105,110,109,98,103,120,102,95,95,104,102,97,108,100,104,109,96,101,95,103,128,101,100,102,104,102,95,109,96,95,111,96,92,109,94,99,92,102,94,99,96,100,104,100,99,82,88,99,90,109,105,104,100,86,88,98,108,113,98,104, +642.35718,101,114,107,107,93,91,105,97,111,104,87,113,99,91,117,98,108,107,98,98,109,102,95,94,104,105,107,103,104,107,125,99,102,98,119,111,106,88,94,102,91,102,104,96,106,102,101,130,82,94,110,106,113,105,90,100,100,112,102,97,103,108,107,84,100,101,109,98,97,104,105,111,67,101,106,99,104,100,108,101,116,98,100,109,108,98,97,100,97,109,97,110,91,106,102,112,67,106,102,99,107,103,112,107,99,96,104,112,99,109,99,113,105,110,102,99,98,114,125,113,102,90,97,105,95,117,101,105,107,138,135,98,107,106,104,108,109,102,102,99,115,99,92,95,110,102,99,106,97,107,94,108,124,92,94,104,108,86,103,107,86,88,95,109,115,107,105,83,97,101,102,100,112,106,113,110,108,86,109,98,105,94,96,98,105,98,104,96,94,97,107,111,116,98,99,96,106,102,107,107,99,102,105,100,100,106,101,96,100,89,96,98,108,97,102,103,97,105,94,100,103,99,101,105,105,102,111,109,101,99,104,104,93,111,101,101,108,103,109,101,91,110,112,94,98,102,100,98,112,102,105,102,97,91,101,105,95,92,100,97,96,104,95,99,103,111,103,99,96,102,106,94,102,101,107,90,103,109,99,95,100,111,104,105,99,107,113,109,106,106,100,98,98,92,102,108,105,97,104,102,101,114,107,132,89,113,111,105,108,102,105,121,102,103,108,104,117,101,98,105,99,113,104,107,106,104,97,110,101,81,100,98,106,111,91,96,104,99,96,99,99,97,86,101,104,102,109,98,105,104,102,95,102,102,104,105,109,109,97,96,100,106,108,97,105,120,94,116,109,112,111,104,105,99,103,113,121,97,101,98,106,108,101,102,96,117,101,105,100,112,121,86,106,110,106,105,110,109,110,114,92,115,98,100,111,101,103,102,95,90,96,92,90,96,115,102,109,99,115,105,92,96,106,100,91,95,98,97,91,101,115,99,108,106,95,100,95,103,93,105,111,117,101,103,107,105,99,105,104,135,108,113,100,106,109,114,106,103,103,105,107,102,109,95,106,103,93,107,110,101,99,112,112,96,91,98,106,98,107,95,99,99,102,95,95,111,93,100,106,98,95,113,113,110,101,114,109,102,101,104,98,99,90,94,107,113,102,92,104,116,121,103,107,103,108,101,96,92,105,99,109,99,109,113,107,110,109,103,108,109,99,117,97,103,109,103,109,75,106,111,114,104,81,102,101,96,100,96,98,110,107,105,94,102,99,99,109,108,102,101,95,104,108,107,95,109,109,111,106,103,107,101,121,116,104,90,92,103,106,100,99,99,104,109,96,93,102,102,98,97,104,100,97,105,113,100,90,110,100,110,103,96,106,104,111,94,100,102,111,113,107,104,108,95,108,107,92,99,109,99,115,104,99,97,107,116,105,92,107,102,100,92,102,109,91,102,97,105,104,107,109,110,111,108,97,94,98,114,109,107,105,102,94,104,105,98,110,113,110,101,107,108,95,108,108,90,104,102,94,107,118,100,108,106,97,96,105,109,100,110,103,108,106,90,103,107,106,118,105,112,94,106,114,100,105,116,108,99,99,92,104,102,105,113,96,106,104,113,95,107,109,94,102,100,90,104,94,110,117,105,111,113,98,88,98,93,108,104,106,104,108,100,104,94,92,101,106,103,116,105,108,101,97,110,108,109,103,123,96,113,102,93,105,112,109,98,100,111,109,107,115,90,104,100,97,110,111,110,103,94,104,112,105,84,104,103,116,108,103,96,94,102,101,96,102,102,104,99,104,105,114,95,100,112,99,113,95,103,106,107,99,107,90,103,98,93,106,104,108,98,109,99,98,103,106,100,111,106,121,112,104,111,103,103,70,116,98,102,113,84,110,100,104,105,110,112,108,102,104,98,101,105,117,103,101,97,105,95,104,100,99,92,98,100,106,111,114,119,100,109,96,93,100,115,105,112,87,98,104,117,113,111,106,109,109,113,113,95,101,107,102,108,100,94,101,94,105,113,92,106,96,115,110,107,107,96,95,99,106,106,105,99,107,114,113,103,95,90,111,96,87,115,97,106,114,102,103,99,94,111,103,99,108,98,106,95,111,99,94,99,110,103,112,112,100,110,107,102,106,105,98,110,93,101,95,110,99,114,101,119,105,98,110,99,109,103,103,99,99,104,103,97,96,107,100,99,104,112,102,95,99,113,95,103,113,98,114,114,98,87,110,93,101,103,97,105,100,118,97,103,96,97,111,102,93,106,99,108,93,103,99,109,101,92,102,112,109,103,93,96,105,103,97,101,113,104,96,112,113,117,99,104,113,97,107,107,97,106,109,96,104,117,114,96,115,101,117,109,107,102,116,120,104,96,91,101,110,114,106,109,109,107,104,109,112,101,104,109,107,106,105,103,87,105,99,96,96,97,105,94,104,110,106,96,112,112,106,103,101,99,101,116,103,112,105,110,106,103,108,104,105,98,92,104,101,116,114,101,109,96,108,103,110,118,111,106,103,103,109,104,107,106,102,110,103,100,89,101,99,102,110,94,98,108,101,103,107,86,109,104,106,124,96,99,117,101,99,113,105,101,110,101,111,94,110,102,112,106,108,87,98,106,117,101,106,117,120,108,110,104,117,97,113,100,103,113,117,91,110,98,115,98,110,105,77,87,97,100,122,92,102,110,92,109,103,103,103,104,100,107,107,110,121,103,99,95,99,105,106,95,87,99,102,98,102,109,107,91,95,118,97,103,103,107,89,112,101,101,101,110,92,108,107,105,102,121,103,101,98,91,100,100,83,109,106,94,95,109,111,102,101,106,109,94,95,109,98,105,116,103,103,105,100,95,116,79,104,107,104,102,99,106,100,83,103,93,109,108,106,98,104,100,93,101,101,107,98,116,105,113,92,106,113,104,97,108,97,99,113,107,106,106,91,100,109,105,119,113,110,108,108,94,95,105,101,128,106,96,109,102,94,117,110,102,115,110,103,98,113,103,100,99,107,113,111,98,106,104,97,104,99,98,105,103,104,98,99,104,88,117,95,100,108,111,99,106,104,103,103,99,99,115,76,108,94,102,96,109,103,103,123,106,103,105,108,108,104,99,96,106,102,101,100,122,99,102,100,114,109,103,109,112,96,103,100,101,94,109,99,106,102,98,103,105,100,101,113,97,101,106,102,109,99,95,116,104,92,116,108,104,104,109,105,108,104,103,104,94,101,101,94,112,90,114,92,106,102,117,105,109,95,116,110,113,98,105,90,117,105,106,112,104,111,112,105,99,103,112,107,101,108,90,112,112,107,98,62,108,100,97,111,99,101,100,104,103,97,97,96,98,73,118,94,105,76,100,107,104,100,97,92,116,111,103,102,83,113,102,108,102,92,102,102,100,104,102,90,111,107,114,98,99,107,76,104,88,95,107,97,103,104,87,115,101,85,102,106,100,108,103,103,95,102,115,100,104,102,91,98,97,117,109,105,102,95,104,103,109,108,111,104,105,113,103,109,80,98,109,106,83,108,88,100,103,112,102,111,111,100,109,98,108,108,104,105,100,98,127,101,101,119,90,102,102,112,95,94,98,101,93,93,109,96,107,108,102,98,100,120,96,104,112,107,99,106,90,100,98,79,95,108,107,97,105,95,93,111,120,106,111,98,96,111,99,109,100,98,108,105,94,106,115,109,105,100,113,114,106,106,98,126,123,103,97,100,102,62,107,102,97,112,100,106,104,113,94,91,99,108,100,109,103,95,103,105,95,95,116,100,120,108,92,109,110,99,99,105,111,113,119,107,113,98,105,96,104,113,123,99,97,110,92,99,102,107,102,99,100,102,109,91,112,113,98,98,102,106,109,106,100,104,104,107,101,101,106,69,86,105,92,99,98,108,103,108,101,93,101,107,116,101,90,107,109,105,104,94,103,93,102,105,104,103,111,91,98,102,99,106,115,107,108,107,114,107,102,102,113,91,107,111,113,102,107,102,103,102,101,97,108,105,111,96,118,120,102,82,107,108,107,102,99,95,102,104,101,98,91,100,105,104,106,94,96,111,111,108,110,101,106,101,92,112,95,108,107,91,101,99,101,109,98,93,111,103,114,99,106,109,111,113,94,106,99,100,113,107,97,96,103,107,82,95,107,100,98,117,109,110,132,98,101,104,101,112,96,117,104,99,87,103,112,101,106,100,112,106,102,103,111,111,102,111,106,101,103,113,96,102,102,101,104,105,119,103,115,102,99,110,92,90,99,109,108,113,91,97,87,109,101,116,117,117,102,98,103,109,107,98,102,110,88,112,108,113,110,104,102,112,105,106,106,125,105,113,106,95,110,98,99,103,102,108,101,99,112,106,114,103,106,106,108,98,95,104,93,108,105,99,107,105,100,105,105,105,104,109,117,112,104,105,97,102,114,91,108,87,109,102,100,110,103,109,93,99,89,104,97,87,105,114,100,101,101,108,91,107,102,106,100,117,107,105,100,113,101,99,98,100,106,87,100,85,104,109,96,99,90,111,101,100,106,100,99,84,109,106,106,111,96,98,103,101,108,98,94,113,90,108,100,104,104,95,104,97,108,104,104,93,99,102,96,106,101,109,104,104,102,105,116,107,105,107,116,113,109,106,88,92,96,100,98,106,94,102,110,115,104,105,94,105,89,69,110,94,109,106,98,82,104,109,109,108,104,96,101,105,102,100,94,109,104,100,68,109,91,101,105,103,88,105,110,88,120,92,105,105,102,100,94,107,95,107,107,89,112,102,139,96,101,110,104,107,113,104,92,100,104,108,114,100,97,99,116,116,98,98,97,97,108,115,87,90,95,112,100,105,93,102,110,100,120,91,102,108,101,96,104,105,109,113,113,99,103,92,102,95,112,110,110,108,94,107,81,107,102,105,92,101,86, +642.49835,86,105,105,94,109,109,103,104,104,113,109,104,86,108,109,112,101,113,104,116,94,94,113,97,91,105,101,127,109,113,97,101,100,100,111,103,97,102,103,102,72,109,80,108,94,104,97,90,102,108,110,109,95,122,107,96,102,85,88,104,107,86,99,102,111,92,93,100,92,93,97,108,95,98,85,92,95,110,98,97,102,113,92,117,97,98,104,101,102,114,110,99,107,95,101,103,95,104,96,122,103,117,105,100,99,99,97,102,98,94,95,103,109,106,115,102,108,145,107,116,114,115,105,103,105,102,93,101,104,112,107,99,113,110,116,98,102,109,100,98,102,108,95,102,109,101,108,106,105,93,97,105,111,91,96,99,114,110,110,106,110,126,98,108,108,98,108,93,97,100,108,94,108,114,106,108,107,105,83,103,93,104,103,98,90,102,77,99,103,95,107,105,85,100,101,92,96,88,121,110,87,105,74,99,112,98,84,101,102,99,102,104,104,104,105,87,104,100,100,94,95,98,107,109,90,102,103,89,109,94,82,112,105,97,110,113,107,113,106,105,102,101,114,100,102,102,96,97,95,99,99,113,127,89,98,109,118,100,99,95,93,102,91,92,95,108,104,100,103,90,102,95,106,100,112,104,103,97,103,102,110,101,74,101,98,97,95,98,102,116,90,92,111,98,107,103,101,93,105,97,101,104,101,103,103,106,102,97,93,108,90,109,99,100,104,93,108,109,107,87,99,101,106,93,105,99,102,110,102,104,115,102,113,91,109,106,109,105,119,105,100,109,106,117,90,101,94,105,108,119,97,103,101,101,98,91,102,90,99,102,102,95,102,100,98,100,102,104,111,103,99,85,104,98,111,81,99,89,94,105,108,105,92,97,98,86,125,92,99,102,102,97,97,102,91,100,92,97,114,117,101,105,101,105,110,96,101,101,103,97,94,97,95,95,101,93,103,101,112,101,105,137,95,108,90,104,99,87,98,98,100,93,99,101,104,106,95,95,101,97,107,93,96,93,113,102,102,104,100,111,105,90,97,103,103,97,97,85,99,102,106,101,108,95,102,96,90,101,103,105,102,104,109,105,98,99,93,105,105,117,100,107,106,106,99,105,95,97,111,96,104,106,103,106,101,98,100,103,116,91,111,107,102,105,103,102,85,110,103,96,101,102,110,108,86,103,105,100,112,86,111,100,102,94,104,104,105,98,106,105,104,117,85,88,99,99,109,98,91,110,108,105,95,98,103,99,98,100,120,108,106,102,102,104,97,103,102,100,103,101,106,96,91,98,105,101,110,99,110,105,92,104,114,107,124,102,98,102,111,109,105,96,105,109,104,100,112,111,96,111,112,100,103,100,105,100,112,114,92,92,106,110,111,97,103,107,98,105,104,95,106,109,112,100,128,106,103,100,102,103,100,103,110,94,113,102,112,98,109,97,107,96,95,100,99,106,107,94,101,103,107,105,95,101,99,97,115,105,114,107,99,121,108,104,95,102,96,105,109,92,105,105,103,102,94,117,108,93,94,96,107,104,103,104,93,100,93,90,110,100,108,104,114,101,96,103,96,100,86,109,104,112,104,108,101,104,94,105,101,101,104,99,99,90,105,104,98,108,89,117,108,120,99,119,104,91,93,105,96,105,104,105,104,107,102,104,108,103,118,103,109,92,100,108,103,93,103,104,108,106,105,92,105,110,101,94,114,101,100,112,100,98,109,97,106,95,112,106,81,106,116,102,91,106,106,103,98,102,102,98,115,113,106,131,109,102,101,104,114,104,117,107,99,111,100,108,99,95,105,106,108,107,109,121,109,113,96,114,101,102,91,115,103,108,104,98,113,108,101,100,113,102,96,97,100,105,113,105,132,107,97,107,102,98,112,104,99,108,107,87,104,95,86,111,98,111,100,108,104,104,104,96,116,101,100,100,108,100,86,77,82,98,94,109,103,115,108,125,105,103,116,104,108,100,103,106,97,109,105,103,104,112,101,108,100,113,95,91,120,96,109,93,113,105,98,94,99,113,109,105,111,104,106,108,101,98,97,102,109,94,111,98,101,111,103,100,90,102,90,98,108,101,107,100,109,95,95,114,92,121,106,105,116,99,107,105,121,110,102,104,94,102,106,115,100,99,100,107,104,103,109,101,104,101,93,100,96,103,103,104,99,95,109,96,104,99,106,99,98,94,100,103,105,97,114,125,112,98,95,121,105,118,112,98,108,94,114,89,102,99,99,108,102,105,101,99,96,95,108,103,109,91,111,104,101,86,92,111,100,92,116,95,98,97,101,106,93,109,103,105,105,104,103,101,107,95,102,108,99,95,105,100,95,100,88,111,99,107,109,102,98,97,100,93,101,96,101,91,110,100,104,118,110,115,107,98,111,102,110,100,125,106,117,101,103,100,95,95,101,104,91,97,104,106,100,97,80,100,106,102,95,108,93,95,99,100,106,104,87,99,110,100,99,100,98,104,92,88,100,102,98,96,124,100,120,103,101,103,107,90,113,100,111,98,95,106,109,103,98,87,105,108,109,102,117,94,109,100,100,106,104,111,105,101,102,113,100,99,110,99,117,102,100,113,111,89,103,94,102,99,98,104,114,106,95,103,103,107,109,91,104,104,117,104,97,93,110,98,120,74,108,102,112,100,119,109,106,123,104,112,114,95,117,95,101,96,105,104,105,94,97,98,93,98,103,103,103,104,88,110,102,108,115,105,107,102,103,94,113,95,96,100,106,101,97,112,108,101,109,100,102,107,103,105,110,112,105,104,114,106,103,99,100,99,102,107,97,105,108,81,97,103,104,105,110,98,105,103,109,113,110,107,110,116,124,99,103,96,100,107,93,108,101,106,111,108,106,104,105,96,142,94,98,112,104,96,97,104,99,115,99,110,110,100,106,104,105,108,93,106,106,109,106,101,114,104,100,100,113,102,103,98,107,105,115,124,103,106,104,114,99,123,121,93,104,107,98,107,101,112,117,104,102,94,109,112,101,107,104,113,130,102,84,102,96,113,112,98,99,94,103,97,104,103,95,100,107,118,97,99,103,97,105,101,106,112,118,104,109,100,73,103,105,116,98,100,101,78,106,96,106,105,102,108,116,101,111,111,98,111,107,110,105,105,98,106,108,102,100,92,98,92,112,98,99,100,99,92,98,103,94,94,107,110,94,110,94,91,104,94,111,101,102,105,98,94,106,104,107,115,99,108,104,95,117,103,112,98,103,102,107,111,102,107,106,109,113,93,103,103,105,99,96,117,103,99,98,87,102,111,105,101,91,107,97,99,96,100,104,108,101,98,115,96,121,99,104,101,101,94,101,111,89,109,113,94,99,106,102,108,114,124,105,104,105,111,104,112,98,99,107,112,111,117,98,114,102,110,101,76,117,100,106,98,105,95,96,115,105,99,74,98,120,117,101,110,108,109,96,110,104,93,107,117,93,115,105,112,106,122,91,84,111,101,99,102,99,94,98,106,117,111,106,110,117,108,109,110,102,106,104,91,97,111,116,110,111,97,117,102,100,96,107,108,111,104,110,106,99,111,102,105,95,110,100,99,108,113,101,112,119,97,106,98,125,109,85,106,104,95,91,106,94,80,106,86,99,107,98,106,107,117,101,103,101,75,110,102,103,109,102,104,103,108,103,106,94,108,93,105,115,105,108,99,81,104,104,98,104,106,105,120,105,116,100,106,103,96,102,90,107,94,107,119,105,98,95,98,100,102,94,92,106,107,120,104,104,104,106,98,104,98,100,101,120,111,105,100,108,110,102,109,108,110,86,108,102,90,123,103,76,99,99,109,117,95,108,101,113,90,107,105,106,116,112,109,110,100,108,111,98,117,116,98,115,116,111,106,107,103,112,101,101,112,102,106,97,93,101,112,105,100,107,95,98,96,102,100,95,109,96,96,105,106,99,101,110,115,96,94,99,87,103,95,104,112,101,109,108,103,118,118,97,94,91,97,102,109,102,107,112,105,97,104,112,106,100,105,107,100,105,97,87,107,101,107,109,103,109,112,102,108,117,103,96,108,102,109,95,95,103,104,109,99,91,104,108,109,99,106,104,93,111,107,132,108,105,105,84,106,114,101,110,100,96,107,104,102,93,106,106,101,110,117,99,93,111,97,98,92,94,104,111,107,104,98,97,103,113,107,105,108,95,99,102,84,118,95,113,102,115,102,89,104,115,108,103,107,110,109,105,111,105,97,106,97,104,105,102,104,95,101,96,101,98,96,79,103,114,93,102,100,114,98,94,109,91,104,105,114,96,121,107,82,110,103,106,90,101,106,113,104,105,105,101,94,106,111,97,117,122,113,117,106,110,96,99,95,105,95,109,91,109,85,112,91,108,102,78,121,118,102,110,123,100,108,93,88,113,100,87,104,94,116,91,101,112,116,103,99,97,97,113,100,101,103,95,113,121,102,113,116,110,109,99,90,92,96,108,104,109,107,106,129,98,92,108,96,109,107,104,95,115,105,104,99,117,112,89,100,94,113,98,103,100,103,101,103,109,98,95,112,113,109,101,107,107,121,103,120,93,94,106,107,104,111,98,105,121,114,106,120,102,106,105,87,108,105,99,104,106,105,100,106,106,105,99,109,116,112,106,99,107,102,74,102,103,100,107,87,106,111,105,97,106,109,102,102,104,112,98,95,115,104,93,103,103,126,118,100,108,105,93,94,100,93,106,112,110,75,99,109,111,103,105,110,89,94,115,92,102,103,100,103,115,85,108,98,94,105,121,113,107,118,95,106,116,100,99,102,102,106,95,99,95,101,104,98,95,83,105,90,115,94,102,106,98,119,104,102,112,104,94,106,92,99,116,108,91,84,94,99,118,98,87,116,98,80,103,116,98,96,109,107,100,102,120,106,110,107,103,95,100,95,114,87,102,104,91,110, +642.63953,114,105,103,107,96,108,111,96,92,90,104,108,107,99,92,106,102,113,102,98,112,90,100,113,114,100,113,92,110,116,105,125,109,114,120,108,105,119,99,98,107,107,105,111,106,82,123,102,106,102,102,97,112,112,105,99,99,98,106,100,100,123,97,107,99,113,111,106,104,106,108,99,104,101,103,107,106,99,81,116,111,118,117,96,102,106,104,98,100,88,105,109,105,107,99,98,96,106,90,92,101,105,102,80,97,102,98,105,92,84,101,96,100,118,107,99,118,101,103,96,110,99,111,104,108,109,103,112,125,89,111,105,104,106,103,97,96,95,94,100,100,115,95,96,101,109,112,102,96,100,103,102,106,94,98,106,105,106,95,107,95,91,107,109,99,99,112,72,115,97,104,105,97,90,101,106,118,101,104,91,108,98,98,114,104,110,97,98,113,99,108,100,94,94,105,119,90,98,108,104,112,93,101,110,102,113,112,106,97,103,105,106,99,95,107,109,109,140,89,67,116,99,96,107,93,94,97,103,112,111,101,109,100,101,105,108,110,104,100,91,99,105,110,103,106,114,93,109,114,101,113,103,104,104,104,112,108,113,102,83,106,101,116,99,92,104,104,120,98,94,110,99,114,105,112,106,100,111,101,104,97,109,103,99,99,105,96,97,98,114,103,98,103,101,115,110,108,99,107,105,112,106,97,118,91,111,108,107,110,94,101,111,99,112,105,114,105,107,99,100,97,99,103,112,111,102,107,102,109,105,110,99,103,112,109,117,106,113,103,112,108,104,110,99,97,113,116,103,113,102,99,105,107,105,119,107,100,121,101,109,89,105,103,105,101,101,94,109,96,98,100,102,112,100,117,104,112,100,101,103,106,106,92,97,103,109,107,96,106,99,96,103,105,106,101,96,98,104,102,109,90,112,99,98,100,93,113,109,109,99,75,94,119,102,105,101,103,119,103,99,98,107,101,101,95,96,91,93,92,121,92,93,107,105,117,101,113,109,104,95,101,104,100,100,95,108,99,85,97,104,94,108,106,99,104,97,123,97,104,121,100,101,109,112,106,111,113,104,101,92,96,113,102,106,99,99,105,99,95,129,116,104,106,99,97,100,108,98,99,106,112,104,104,94,109,102,100,97,113,106,111,105,83,99,105,95,95,97,105,101,111,95,107,115,93,100,106,95,116,92,111,103,97,100,103,102,111,104,101,91,96,116,95,100,104,117,103,101,105,100,98,110,100,102,116,118,101,95,95,106,108,104,114,98,96,92,101,97,105,96,104,103,105,95,97,96,113,100,90,101,88,100,97,102,102,102,89,95,107,106,105,107,102,91,109,97,106,95,98,107,103,102,104,109,104,111,95,102,97,102,99,107,101,102,105,105,87,126,99,103,115,94,117,104,117,104,103,100,108,104,103,114,111,100,96,117,98,91,99,95,106,109,105,104,113,102,108,101,110,92,103,101,100,110,104,95,99,105,100,96,77,99,102,101,100,102,90,111,102,109,113,102,104,119,91,102,99,101,102,107,99,109,127,94,104,95,95,104,111,126,103,105,98,103,91,88,94,102,96,110,110,90,102,101,95,103,113,112,88,90,97,93,100,103,94,109,95,108,97,96,104,102,113,102,91,82,107,93,105,112,103,91,110,103,90,109,110,110,102,102,118,103,113,98,94,95,107,96,103,103,114,101,112,98,106,96,107,104,103,107,106,97,65,114,113,107,101,103,104,103,91,98,94,94,104,102,103,111,100,90,110,86,97,102,126,104,110,121,99,109,107,101,124,98,95,106,102,105,102,109,102,96,118,106,100,107,107,91,109,100,109,127,93,100,106,108,109,117,102,98,117,91,98,92,94,94,99,101,108,106,102,100,99,103,102,113,93,94,112,98,99,106,103,104,130,102,99,107,109,118,108,113,105,113,96,92,96,95,101,93,96,105,102,102,97,116,98,105,90,103,91,104,101,96,111,97,96,103,106,107,108,95,99,104,107,99,91,113,91,108,109,117,110,101,104,98,95,95,110,93,106,103,78,83,100,95,97,103,93,74,104,104,100,97,105,104,88,98,95,105,108,104,103,106,97,101,109,104,90,100,119,105,113,121,114,92,97,92,110,100,94,91,111,103,105,109,103,103,98,101,118,113,104,96,88,110,111,113,104,103,104,107,111,107,113,97,104,105,99,105,116,108,110,101,103,105,101,101,99,104,101,101,92,100,109,90,118,107,94,104,101,108,105,96,104,92,109,109,97,96,110,100,101,98,107,90,107,98,105,112,104,91,105,94,109,98,95,104,96,94,108,105,96,91,104,90,105,117,88,99,96,109,92,93,99,96,95,109,108,109,99,91,110,94,120,104,100,111,100,94,103,107,95,114,97,105,89,98,118,100,108,103,98,96,94,108,94,107,96,94,103,97,115,80,103,122,99,91,89,102,90,107,93,86,118,114,110,104,95,96,93,111,88,111,111,103,99,104,106,109,92,98,98,103,99,107,103,108,113,113,106,88,122,96,109,106,100,104,97,106,111,114,113,91,119,99,94,97,95,95,111,97,98,107,97,93,100,121,105,121,102,108,109,108,106,103,103,90,104,101,109,69,112,98,99,99,106,92,94,110,105,99,102,108,100,86,100,102,110,102,94,96,77,102,104,113,102,108,98,89,109,106,107,112,102,99,112,105,96,105,98,107,101,112,112,103,123,95,98,112,105,87,117,104,105,104,108,92,107,114,108,103,105,101,97,105,100,107,100,93,108,108,100,111,100,92,118,101,104,99,102,119,105,97,114,109,104,104,110,112,102,102,114,105,107,106,100,108,98,113,112,99,100,83,107,105,105,100,103,97,105,96,106,103,104,106,95,101,106,116,119,121,98,113,105,99,101,107,106,109,107,105,115,112,107,100,101,104,104,105,101,117,121,79,95,103,100,112,75,104,94,106,107,98,113,89,93,106,106,103,102,104,92,104,96,119,109,102,109,106,93,95,102,95,102,110,93,103,105,105,110,116,93,98,116,102,91,103,103,106,103,99,92,104,105,106,99,106,109,104,112,102,106,104,95,98,106,100,97,107,88,113,103,103,90,109,95,104,108,96,105,94,97,93,96,98,99,95,98,99,107,93,95,112,103,87,98,92,112,81,111,102,105,108,94,99,91,107,96,105,109,72,105,116,101,111,109,96,84,106,84,97,104,103,104,105,101,100,110,102,90,108,100,94,118,100,103,110,114,108,101,117,101,91,109,99,117,108,113,108,99,108,99,109,105,97,113,98,104,103,107,106,106,102,109,88,96,103,116,101,92,98,100,92,104,128,105,109,99,103,98,108,99,98,101,116,93,100,117,98,94,91,105,107,111,91,112,109,103,100,98,111,104,105,102,106,102,103,102,91,97,107,99,95,99,109,105,105,106,104,94,103,101,95,106,113,112,100,107,105,121,103,102,96,102,78,137,106,107,92,96,108,105,110,99,106,105,104,91,100,109,98,65,95,101,106,96,104,103,100,105,108,101,82,85,116,102,101,102,107,118,105,102,104,99,125,105,105,106,101,102,110,107,111,107,102,107,94,104,107,99,109,102,98,110,96,113,103,105,111,88,100,113,97,111,101,99,98,97,101,87,106,92,101,105,91,117,98,106,108,91,94,107,107,100,92,105,92,102,106,109,93,105,108,105,102,98,103,115,98,106,110,86,89,101,94,91,95,110,97,77,102,92,107,110,98,115,113,103,84,98,99,121,103,117,102,99,99,103,105,92,97,103,96,104,108,100,99,99,104,104,101,97,117,111,103,112,105,109,114,101,112,99,120,102,90,104,105,81,110,107,106,103,110,109,103,95,106,106,89,112,107,101,95,102,110,104,100,99,98,109,110,112,89,107,107,105,120,92,97,92,106,92,103,104,93,104,111,100,91,92,102,109,100,93,91,97,88,99,86,96,106,108,101,103,106,101,109,114,101,89,106,111,107,101,99,103,94,95,108,98,113,90,105,106,100,110,115,106,111,105,94,102,103,107,95,97,109,103,113,86,95,95,95,105,108,110,100,107,101,110,102,99,94,105,109,99,106,95,98,105,105,110,100,88,105,104,103,100,100,107,103,95,109,100,100,92,125,100,97,106,101,106,105,106,101,100,108,102,92,111,111,104,112,102,102,108,113,107,101,101,104,99,96,110,83,108,91,103,102,108,111,111,99,99,99,106,109,105,112,109,109,117,110,108,93,120,101,102,113,107,102,97,102,108,97,109,105,100,94,98,107,97,107,101,96,100,84,105,101,103,102,122,99,102,104,100,104,102,122,99,101,111,91,101,95,94,103,95,113,103,106,101,115,142,98,96,99,99,112,107,98,98,109,99,107,110,102,100,121,97,103,106,88,103,103,111,113,103,104,93,109,105,107,111,109,103,106,115,114,109,92,106,104,114,106,99,88,106,105,113,103,100,91,104,96,106,105,95,115,100,102,89,105,111,89,105,94,110,106,102,97,96,113,109,101,93,108,94,105,115,79,106,102,108,106,105,109,112,116,91,103,99,104,98,101,103,109,105,97,95,100,105,102,91,98,109,97,106,117,99,102,112,103,100,103,102,94,96,99,98,98,90,103,100,103,110,95,112,108,101,108,112,106,97,108,105,98,106,101,106,86,95,109,110,87,109,96,107,105,89,88,109,95,91,100,109,98,104,113,88,108,90,109,97,116,107,91,102,87,109,114,106,88,113,91,111,93,105,100,97,88,108,108,101,97,96,102,109,101,112,96,93,74,92,96,98,112,91,104,104,98,109,98,106,94,109,113,107,102,106,100,103,98,92,110,102,126,92,110,113,90,98,116,99,94,104,72,101,104,91,100,91,102,111,93,90,106,117,97,108,101,104,100,101,101,106,118,110,107,117,97,96,94,112,99,100,100,104,117, +642.7807,122,102,83,91,115,102,124,110,96,102,102,117,105,119,98,105,97,107,99,109,109,114,109,109,107,104,97,96,115,118,111,93,94,96,112,97,107,99,102,106,100,95,96,113,110,102,96,111,78,110,116,97,98,104,116,104,106,98,95,89,94,120,119,108,105,99,94,103,97,98,116,123,98,103,103,107,92,120,128,104,95,104,102,103,92,107,104,102,103,90,109,94,100,113,95,95,99,90,103,95,95,96,101,97,97,103,99,104,109,99,114,100,104,114,104,108,100,98,110,102,105,111,102,93,101,98,91,105,106,106,102,112,117,96,115,99,92,95,116,99,96,100,99,113,99,97,104,113,103,98,98,107,108,108,101,106,115,100,96,95,95,87,117,94,111,92,98,86,96,118,101,108,115,98,100,99,110,102,95,99,106,117,99,109,97,101,110,96,96,99,103,98,101,103,113,89,101,119,105,114,97,103,100,105,92,110,101,105,114,101,103,108,103,121,110,105,111,109,126,99,100,108,99,107,102,108,110,105,113,99,104,103,97,113,100,104,115,103,109,97,109,93,75,102,95,98,86,107,92,101,98,99,103,93,105,106,108,102,101,117,92,122,103,104,101,95,105,113,106,100,99,116,111,104,112,104,104,103,95,101,114,92,97,96,117,105,97,101,88,99,104,99,114,109,109,116,103,126,124,95,95,114,100,109,97,109,113,106,105,103,106,111,94,91,103,97,104,106,106,114,108,109,105,108,106,98,109,97,104,113,96,101,111,100,106,106,103,103,98,103,98,100,98,110,96,102,105,101,110,83,101,101,113,101,103,96,104,111,110,109,99,110,96,98,92,93,111,101,113,105,99,88,107,90,115,104,103,92,104,99,109,95,91,99,103,102,99,79,113,100,99,97,101,105,112,106,100,112,121,100,96,102,112,95,100,92,113,99,105,109,95,105,108,108,112,103,102,99,103,111,101,90,99,101,101,102,113,106,107,108,95,89,106,113,102,106,112,96,88,102,95,102,103,100,106,105,107,94,110,116,98,107,108,100,102,102,100,105,110,101,99,103,100,108,110,108,97,101,113,100,116,118,108,113,113,102,104,112,102,85,112,111,106,115,100,111,103,106,100,102,106,101,98,100,94,105,113,95,113,99,101,102,94,118,105,93,102,112,90,99,106,105,107,111,101,120,98,97,102,104,102,92,97,86,116,103,123,98,106,101,106,108,106,102,92,108,109,104,126,107,94,106,101,91,103,105,99,92,121,104,107,103,105,110,93,108,101,93,103,96,108,89,110,118,101,109,112,109,98,102,98,96,110,109,104,107,109,106,106,100,99,105,93,96,104,104,102,95,107,107,110,96,101,77,95,103,113,101,109,103,99,95,102,113,103,106,104,96,103,99,120,98,128,112,98,100,94,105,102,111,104,112,86,102,113,100,100,108,109,118,99,103,107,86,91,101,95,93,97,96,119,113,102,93,97,91,98,108,103,109,90,107,101,100,109,108,94,108,104,92,97,96,72,118,105,96,110,92,105,108,99,101,98,101,104,103,105,103,114,100,106,105,115,91,99,117,95,95,98,95,99,93,100,121,98,108,103,111,92,99,110,103,96,90,96,102,100,104,91,96,95,103,93,122,102,105,101,109,108,86,111,95,100,108,98,105,91,101,101,103,99,101,95,99,98,97,110,99,100,101,103,94,99,110,99,99,98,110,93,93,111,110,106,99,104,111,113,109,111,91,91,107,116,96,106,100,98,91,106,99,100,95,98,106,98,112,113,102,117,96,108,113,116,117,106,128,99,108,90,104,103,105,96,108,100,100,117,108,109,96,111,95,96,107,105,102,108,110,96,96,106,99,97,88,108,97,113,113,117,105,103,100,100,99,101,116,111,99,104,110,109,99,88,109,108,116,98,109,100,111,109,110,108,101,103,103,103,89,93,103,104,110,112,109,111,112,111,100,105,102,114,100,116,100,108,95,95,110,110,120,94,103,99,93,95,104,112,102,109,98,110,101,96,107,101,106,103,105,109,119,95,111,106,108,109,103,99,109,101,129,106,107,106,101,106,99,101,99,108,96,105,107,100,102,105,109,100,101,119,88,107,109,106,99,103,113,109,108,107,103,93,115,107,113,95,103,109,95,103,107,107,113,97,97,102,104,114,100,96,106,114,99,103,102,101,125,109,99,106,88,109,96,106,103,109,84,92,102,105,117,97,92,114,97,104,105,95,104,101,101,75,114,110,97,111,103,108,103,101,86,96,105,108,88,112,92,103,93,119,112,118,101,99,105,95,111,113,104,87,117,109,94,89,107,109,66,87,75,113,95,111,96,105,105,103,121,103,105,108,94,95,109,112,106,111,103,109,114,113,94,108,106,93,105,100,99,114,116,111,101,113,115,102,109,103,98,109,113,103,93,108,118,93,108,100,104,101,93,102,103,95,70,96,100,107,112,98,108,105,99,112,102,100,100,110,116,102,106,107,107,83,113,102,101,94,103,108,99,102,131,114,98,117,101,95,104,107,103,123,102,107,118,100,108,105,107,105,108,103,104,110,104,103,94,113,111,104,113,105,109,105,99,101,117,100,103,101,110,107,102,107,103,104,99,103,95,104,98,101,94,116,96,104,96,87,101,101,94,102,118,103,105,98,103,112,113,117,104,97,86,88,112,108,103,105,105,113,99,107,113,109,114,97,116,100,95,105,106,107,104,102,117,112,101,112,86,90,104,99,117,109,112,103,105,93,100,108,101,106,100,100,116,98,101,121,104,107,113,105,107,110,116,95,99,104,115,93,103,89,110,106,96,67,109,107,105,105,91,90,103,115,103,117,99,103,101,87,102,104,106,108,103,117,115,119,114,92,89,93,114,102,110,112,111,111,105,100,105,110,107,114,103,117,118,97,105,106,99,99,123,101,102,117,100,81,105,99,102,106,97,91,115,108,115,106,127,101,105,98,99,115,110,96,109,109,116,103,103,100,106,102,101,101,108,102,102,128,103,109,112,109,108,104,97,104,97,103,109,100,110,105,115,101,110,106,101,109,112,98,109,99,99,112,108,95,112,102,112,101,97,104,108,103,108,102,91,109,101,104,121,112,101,113,104,109,86,112,100,100,110,116,98,105,110,108,100,99,109,86,101,98,91,110,95,100,101,102,100,102,91,99,97,76,109,101,102,100,95,102,80,100,100,108,104,106,108,110,110,105,99,99,111,106,104,106,96,103,99,102,110,102,109,95,95,117,106,100,100,108,100,110,107,102,119,97,94,111,106,95,106,110,105,109,103,96,100,103,104,102,100,102,99,111,102,111,109,112,101,102,91,108,106,101,105,105,105,113,98,111,108,110,101,117,113,97,111,99,89,105,116,94,108,98,104,98,105,103,107,106,94,98,108,104,95,104,99,107,105,111,105,96,103,108,82,94,108,105,98,87,81,113,104,110,97,104,107,114,102,112,102,103,98,113,102,98,107,106,97,94,100,112,101,98,104,102,105,102,102,102,93,110,116,102,101,96,104,95,113,109,92,103,110,108,108,107,109,109,98,101,128,96,112,96,101,108,109,101,110,108,106,108,85,102,101,109,106,102,102,97,75,93,106,104,100,112,97,112,120,99,104,103,91,100,108,106,101,100,96,107,99,105,131,109,104,98,90,113,99,109,106,99,111,110,106,101,99,101,102,101,99,107,106,111,107,98,95,107,100,98,94,101,116,105,104,101,96,109,99,106,102,110,86,102,105,100,117,106,104,102,104,100,102,110,109,101,103,99,103,98,100,100,110,113,113,106,95,108,116,112,105,124,104,95,109,117,90,115,99,88,101,100,100,112,108,96,123,87,99,90,108,91,103,99,90,103,99,103,98,98,101,100,100,103,113,109,96,92,101,95,94,97,100,111,103,96,99,109,112,96,102,95,99,97,97,98,105,101,102,109,108,95,105,100,93,94,98,109,113,115,109,108,114,95,103,104,117,110,97,104,103,94,110,89,98,108,98,99,108,101,104,106,114,93,106,103,102,90,97,111,100,110,103,108,102,120,104,112,96,106,107,101,93,99,103,115,111,98,102,111,105,97,105,108,107,107,97,102,96,102,107,108,112,108,107,104,107,100,102,98,113,104,97,117,109,105,91,104,108,103,116,109,109,95,113,98,107,98,104,101,97,102,101,88,94,106,106,99,111,107,101,102,108,106,108,103,101,100,115,116,108,116,102,98,107,98,103,104,112,95,106,103,92,112,88,109,111,94,105,88,115,106,99,109,94,92,109,109,111,104,112,112,98,111,111,109,105,106,99,104,113,96,103,102,100,110,103,110,95,99,110,108,98,108,112,102,84,107,103,118,105,107,109,109,109,115,103,116,108,84,94,112,106,98,104,106,109,111,110,117,105,95,108,104,95,95,92,99,107,118,105,108,105,100,104,109,106,97,100,97,107,120,110,95,105,97,108,98,103,124,105,118,112,107,101,106,97,103,106,106,115,97,102,98,113,87,106,104,120,95,110,116,102,93,101,102,113,100,99,100,116,101,101,95,100,114,103,105,110,97,96,96,102,108,109,94,101,101,98,102,93,100,101,100,101,101,113,116,104,103,115,102,97,96,125,102,100,109,95,107,105,116,103,100,103,102,91,88,120,112,91,111,99,83,94,105,114,107,112,116,114,100,96,98,112,97,99,118,92,96,104,92,97,114,98,99,113,110,109,95,96,104,113,109,103,103,90,106,102,107,97,110,110,110,100,89,104,110,115,102,105,100,102,97,100,105,108,103,110,104,107,102,97,103,117,106,106,105,109,104,105,93,95,115,97,103,97,98,94,120,97,104,118,97,108,120,103,91,103,100,104,87,105,95,75,99,88,102,99,104,113,103,97,100,108,95,87,108,119,98,100,105,80,95,114,115,89,103,109,92,97, +642.92188,87,94,94,95,114,117,106,91,101,113,110,96,107,91,107,109,99,100,108,93,105,103,105,99,107,108,109,97,104,106,117,108,101,116,110,112,100,118,101,114,109,107,117,104,100,102,113,113,102,114,67,100,95,119,106,107,96,100,105,109,99,106,104,90,106,96,92,110,105,103,101,117,104,113,101,112,87,111,129,104,105,106,103,99,113,105,102,99,117,103,97,94,87,121,104,97,107,94,103,99,114,104,106,96,99,96,105,109,103,100,110,92,117,93,111,113,87,107,107,95,98,119,108,104,94,124,93,100,118,104,107,92,115,99,106,92,92,109,108,107,117,105,111,108,101,92,110,98,91,101,102,113,114,114,111,106,114,106,97,103,111,115,94,116,105,110,112,101,106,109,74,73,98,92,111,104,102,95,107,101,108,102,101,87,103,120,95,110,101,113,102,96,98,107,110,105,105,103,107,111,105,100,103,110,114,105,111,116,103,104,95,102,100,102,104,106,101,98,114,101,112,118,110,101,118,101,113,101,108,97,96,106,95,109,92,101,104,99,109,95,99,103,111,107,98,106,99,110,100,106,104,109,101,102,104,111,101,107,95,100,115,103,103,110,100,86,94,98,105,98,101,103,105,103,109,105,102,119,107,102,92,91,99,109,107,107,106,117,109,97,99,113,117,102,108,116,116,108,107,112,103,113,95,110,96,99,116,102,96,103,101,117,108,93,101,87,87,104,120,116,118,105,103,104,114,102,82,112,111,116,109,90,100,106,112,108,95,108,106,102,99,105,97,99,102,107,107,99,113,92,104,98,93,94,114,113,104,119,110,104,110,99,95,121,94,113,99,106,111,102,105,99,107,86,101,109,96,113,110,117,97,101,103,115,110,105,109,98,104,95,121,99,98,103,113,100,95,102,98,117,108,94,94,89,100,96,88,109,106,109,96,101,95,104,103,93,99,102,107,107,108,103,99,108,108,95,93,104,96,100,108,112,122,106,115,91,103,96,105,100,103,105,106,111,106,101,84,100,94,96,101,103,99,103,104,106,67,102,105,95,88,105,107,109,111,105,99,94,95,102,101,104,110,85,108,106,108,95,109,98,101,100,106,102,91,104,98,113,99,94,104,109,99,105,104,113,99,103,116,92,120,93,106,106,114,97,93,105,84,114,99,103,115,99,99,116,105,88,102,105,102,104,99,97,108,114,110,103,104,108,99,113,100,99,97,110,101,98,107,95,101,102,106,104,107,94,104,95,86,108,87,100,104,90,107,99,87,108,110,102,101,101,101,98,103,90,94,110,103,97,101,103,110,98,98,87,102,103,114,84,90,109,100,101,114,99,109,118,109,106,112,94,95,89,112,109,102,92,110,107,100,107,108,95,100,108,99,94,114,99,112,119,89,112,125,100,106,104,133,106,98,111,102,112,114,108,111,107,110,98,109,106,98,100,99,98,107,105,102,100,107,110,100,104,101,89,97,101,112,110,99,121,89,101,95,105,98,109,103,111,105,101,111,110,90,98,114,97,103,109,103,102,103,100,106,114,94,110,112,110,99,95,115,100,108,112,98,115,108,114,110,97,119,116,103,95,112,83,115,102,103,110,106,109,99,108,111,117,111,101,119,102,98,110,99,112,94,110,95,104,113,103,103,103,96,102,108,99,103,112,105,106,96,95,94,94,96,101,114,102,110,109,96,105,111,95,96,106,97,98,106,109,106,91,91,117,106,104,114,105,95,106,96,90,98,130,99,103,99,107,100,91,105,93,96,100,106,99,96,96,99,98,106,94,92,113,105,111,104,115,92,99,99,102,103,102,103,114,95,106,93,112,92,107,102,100,114,103,102,94,95,102,104,70,95,82,102,111,111,108,103,108,122,103,112,105,110,95,110,102,98,93,95,101,105,109,101,106,109,95,105,110,102,97,108,106,94,103,99,102,104,96,110,117,104,91,114,115,98,95,100,104,98,112,101,91,99,114,106,109,111,109,99,101,122,92,104,102,121,107,100,100,109,95,103,99,104,103,100,106,107,99,111,109,116,107,108,105,107,107,104,100,109,103,119,107,98,92,105,100,107,104,102,103,106,100,91,98,108,94,99,95,96,110,103,103,86,97,108,105,98,114,95,94,96,110,107,95,105,99,107,96,107,116,93,107,107,104,106,96,103,101,96,96,99,97,98,105,114,104,91,104,113,106,97,100,108,103,96,105,103,108,108,94,100,102,117,91,97,101,108,124,110,106,106,108,89,110,100,109,107,103,78,109,101,91,98,124,100,101,110,105,99,94,100,111,121,103,98,106,117,98,99,109,104,106,100,110,103,105,110,112,79,105,109,116,103,102,109,94,98,88,107,98,110,92,96,111,96,101,107,100,98,112,103,113,98,100,117,103,104,113,95,109,92,102,108,72,113,108,113,114,109,103,104,95,96,102,102,100,95,107,92,104,97,102,108,118,97,94,95,104,95,106,117,95,100,96,125,102,98,103,98,98,98,112,95,93,108,89,107,102,102,100,98,106,101,121,100,94,103,114,104,107,100,99,97,95,90,105,103,92,107,111,98,102,104,100,100,94,97,107,101,98,107,106,103,98,95,110,88,103,98,92,107,92,97,106,96,93,106,100,111,114,101,103,107,96,97,97,103,105,118,101,89,111,109,98,106,100,111,109,98,117,90,87,107,103,108,107,99,98,99,111,98,107,112,121,105,97,100,115,115,99,91,98,90,91,98,102,101,113,98,103,96,91,109,97,100,105,105,102,100,116,104,103,104,125,106,100,98,81,107,102,100,105,95,106,100,104,116,98,100,106,117,115,124,91,98,102,110,101,105,97,106,95,95,111,114,97,111,111,112,99,102,106,103,101,103,113,107,107,112,113,108,96,109,107,104,108,105,107,98,115,106,93,96,92,96,113,112,99,102,104,97,95,98,99,107,105,101,100,90,103,104,110,101,102,110,106,99,102,97,102,107,108,107,104,94,109,110,99,109,94,99,105,98,102,102,93,93,104,101,98,94,91,110,102,112,108,102,88,108,95,108,103,107,88,104,95,107,107,90,104,99,92,87,108,110,97,102,103,95,109,105,111,87,101,97,105,114,107,99,108,96,80,102,108,95,95,106,99,110,103,97,107,103,100,100,105,117,90,103,106,93,102,112,110,102,97,103,91,109,100,120,117,98,103,109,102,101,93,105,101,100,120,119,109,107,105,105,100,111,112,112,104,99,98,103,103,106,110,100,101,98,99,107,99,116,109,115,102,107,96,100,87,103,98,99,107,95,88,101,107,105,104,98,102,104,96,88,98,106,102,99,106,104,110,99,102,99,109,89,100,103,107,90,105,103,106,94,112,94,99,110,99,100,99,104,120,106,100,102,104,89,95,97,98,99,89,108,120,105,99,101,99,92,97,100,101,93,113,106,101,87,101,107,102,103,106,116,95,102,92,99,102,117,110,83,87,103,112,107,98,99,103,95,99,89,75,113,100,108,87,120,98,113,93,105,104,96,114,102,111,120,109,96,94,98,110,111,104,98,105,94,101,100,96,103,103,96,108,112,95,99,96,93,98,105,107,114,94,74,99,109,94,104,98,106,88,103,110,93,99,104,90,99,116,96,104,95,97,108,99,96,95,107,110,100,105,101,109,112,104,102,109,102,108,100,98,100,91,104,98,95,101,101,112,91,99,84,106,106,102,91,107,96,101,99,102,101,116,94,107,99,106,99,103,91,102,100,121,100,101,97,103,92,102,98,105,104,87,114,100,100,111,104,95,101,111,99,102,110,109,108,107,103,107,107,106,94,101,98,91,106,97,100,119,120,108,111,95,100,104,97,110,100,99,108,110,107,111,107,98,94,98,91,99,96,108,87,113,103,91,103,77,100,99,107,106,111,95,113,106,95,107,98,103,88,102,101,98,94,110,102,99,132,89,125,93,103,105,111,108,98,106,87,96,94,98,92,108,101,107,96,104,100,99,95,113,108,97,93,107,106,104,96,105,99,100,99,99,99,91,96,85,104,97,98,101,104,113,113,105,94,99,100,86,121,102,110,101,94,93,111,120,99,108,101,99,110,93,113,109,107,79,98,94,107,124,111,91,97,107,100,107,102,103,119,102,103,119,102,96,91,113,97,97,105,92,108,100,95,102,101,114,100,124,95,102,107,103,93,91,127,108,107,105,104,89,105,112,99,107,100,106,103,111,116,107,110,100,106,102,93,102,92,116,100,109,117,95,107,100,109,112,100,108,100,91,100,87,111,93,91,98,100,100,85,99,100,88,103,97,112,105,95,100,67,105,105,104,110,108,92,102,105,99,99,99,115,106,108,103,102,105,94,103,96,102,88,91,99,105,109,103,91,104,90,120,100,108,103,105,105,106,115,107,103,95,97,112,119,108,102,114,107,106,117,90,105,92,110,98,93,110,94,91,100,103,103,100,98,94,100,87,108,104,111,100,102,125,116,89,116,100,101,112,113,104,104,106,100,112,104,79,103,96,100,104,99,99,113,104,106,100,118,105,91,96,75,94,100,107,102,106,111,102,100,96,114,100,103,94,92,106,127,102,113,97,102,116,108,105,97,103,103,99,111,89,103,101,94,104,106,104,97,99,117,94,79,115,98,95,92,84,92,108,102,100,87,104,109,98,99,100,104,100,103,106,94,101,113,108,101,94,111,107,94,101,99,97,111,99,109,95,111,103,92,93,105,99,84,128,93,95,111,109,98,91,105,92,102,105,105,99,104,110,95,96,109,86,110,100,109,95,92,113,82,92,104,106,98,92,109,96,133,102,101,92,101,120,104,100,101,95,106,113,106,99,105,96,104,102,93,91,109,93,97,95,125,78,101,91,100,88,110,96,101,96,94,101,97,97,109,96,95,94,96,132,104,96,107,101,103,93,91,135,82,81, +643.06299,101,98,100,108,100,111,95,103,102,107,110,113,92,92,109,101,100,116,95,95,116,101,108,112,109,101,96,102,111,122,120,101,91,105,113,105,113,103,111,102,106,101,105,101,98,106,98,112,94,110,103,100,105,98,107,102,95,94,101,100,107,113,100,133,104,112,74,104,100,109,111,109,102,112,104,111,102,110,102,109,100,105,99,112,102,97,113,117,106,99,112,114,94,100,88,96,89,91,109,112,108,111,104,88,103,103,109,98,104,116,102,98,106,117,126,94,110,95,109,106,101,112,99,108,108,106,113,100,102,102,97,109,103,110,107,103,101,112,99,92,106,115,104,104,101,104,107,107,96,99,106,103,107,85,103,102,116,87,98,104,104,112,117,118,97,103,102,107,99,110,105,110,96,106,113,100,114,109,112,104,110,101,108,103,111,109,107,99,94,104,91,98,112,104,119,104,100,97,103,105,101,101,110,109,105,118,99,105,101,96,116,107,112,109,114,100,108,112,90,103,95,99,104,105,113,118,107,103,104,117,97,124,96,108,91,102,112,73,97,104,104,104,105,103,91,102,111,104,105,108,98,116,101,96,89,107,94,118,103,108,94,85,117,99,97,100,109,109,107,95,116,98,131,110,98,94,113,108,100,101,106,102,96,110,112,99,105,112,106,116,114,117,113,109,101,103,113,94,103,103,104,93,110,120,112,112,116,98,109,107,95,121,110,105,105,95,82,114,102,110,117,103,103,99,106,82,93,101,98,104,106,108,112,113,94,98,112,100,94,123,97,98,101,105,95,97,99,103,107,108,113,112,104,121,107,102,102,113,102,108,100,101,110,101,109,115,104,113,92,97,104,94,101,107,108,102,103,98,108,120,83,104,89,116,95,97,93,103,113,106,100,91,105,100,86,94,110,103,113,118,105,98,109,92,97,83,104,109,101,108,100,96,114,103,94,109,105,107,108,92,109,95,100,108,108,101,100,102,99,95,99,107,102,103,99,109,102,106,102,114,109,101,99,106,106,104,101,90,106,109,103,109,102,109,106,102,102,108,121,103,95,108,98,99,103,98,99,104,72,107,106,106,107,116,112,106,102,106,105,104,104,120,107,104,91,96,112,105,106,106,110,105,115,110,109,105,95,104,113,108,113,95,102,110,104,108,95,110,110,100,107,100,112,108,104,101,101,101,102,94,94,97,95,111,105,103,108,111,110,92,99,122,93,106,98,97,103,119,101,100,111,102,108,104,111,101,103,102,96,102,112,96,105,126,95,94,103,95,84,107,102,104,97,106,99,121,105,104,83,115,93,114,106,113,101,108,101,110,110,103,103,95,115,106,103,102,101,103,112,100,94,109,100,104,99,120,104,115,101,112,111,97,99,116,104,106,110,101,108,104,109,107,106,101,107,97,118,100,105,103,138,110,99,110,108,113,91,74,101,106,107,93,104,102,97,116,100,96,113,107,104,103,106,108,99,100,101,114,96,100,93,104,95,100,104,114,102,102,102,117,116,118,95,102,112,105,107,102,116,102,101,117,87,85,119,108,120,87,114,97,113,96,112,100,87,117,107,97,106,96,109,111,107,116,107,87,103,108,102,99,109,96,107,99,86,94,106,104,97,117,96,104,105,106,103,100,115,101,102,99,97,96,114,98,106,100,96,99,107,105,108,100,99,100,102,117,106,105,106,101,104,97,83,109,109,113,102,118,100,105,112,103,102,105,118,96,81,112,100,89,96,111,89,97,98,95,101,104,117,103,111,104,109,105,106,109,108,105,107,97,110,97,107,105,102,103,96,114,111,98,100,99,106,107,103,107,108,107,112,99,108,100,105,100,108,102,99,103,103,109,115,104,108,93,110,104,97,92,107,109,100,95,103,104,100,114,120,109,87,97,92,96,102,95,102,103,110,96,114,100,92,102,117,108,100,95,107,96,112,100,105,98,99,103,111,99,111,110,100,115,102,107,102,93,107,108,97,110,106,102,91,101,101,112,99,105,109,109,103,95,113,113,98,83,91,105,99,112,101,100,105,119,111,106,121,97,100,111,100,112,102,119,109,104,111,96,101,111,94,93,108,100,114,89,101,135,122,101,111,105,100,107,106,108,89,99,99,110,119,97,112,112,121,108,91,104,93,97,104,99,101,104,103,120,95,126,121,101,95,106,97,96,108,123,103,108,105,92,102,101,112,98,105,95,112,91,101,89,113,100,103,99,103,109,103,109,108,94,99,112,105,110,114,116,108,111,99,88,101,103,106,100,93,94,114,98,100,104,96,98,109,107,105,105,99,100,92,94,112,101,107,110,104,113,104,109,99,104,92,93,103,113,100,104,105,97,108,103,99,98,108,104,118,106,91,96,112,106,115,99,110,115,112,116,94,116,110,113,92,107,120,129,115,131,88,106,113,104,99,92,102,106,111,114,113,90,109,97,114,88,101,103,101,105,108,121,86,95,99,99,103,106,90,121,111,111,95,106,109,93,106,109,102,100,97,109,118,101,102,104,111,102,98,112,88,110,89,96,106,105,97,134,101,94,108,109,104,91,112,84,104,113,101,105,109,105,98,113,97,101,112,122,111,109,106,108,104,103,115,94,101,92,102,107,108,108,88,109,107,102,112,110,110,106,99,104,99,114,107,104,104,85,107,100,107,102,109,110,107,97,96,91,95,112,105,112,97,112,113,101,109,108,95,129,97,97,112,102,97,107,109,132,110,96,99,104,109,102,107,98,96,114,111,111,103,110,106,70,117,98,106,115,101,101,97,102,112,113,77,109,103,104,104,112,124,121,95,104,99,109,114,95,98,105,108,107,97,108,109,108,109,111,113,100,105,104,102,110,115,109,106,108,108,121,97,97,100,113,103,104,109,102,103,108,109,112,114,105,114,109,85,104,94,112,108,104,98,96,99,109,115,109,109,116,106,112,103,107,113,103,114,101,102,98,102,110,108,96,106,100,64,95,94,109,105,107,104,105,98,106,87,85,92,95,102,114,100,105,92,111,100,103,110,115,110,103,100,117,113,102,108,112,96,110,110,99,109,102,91,108,107,103,100,95,107,100,98,103,97,107,95,95,109,106,102,89,100,103,102,78,100,105,99,94,109,97,111,102,108,106,99,70,105,112,107,98,113,111,98,102,105,93,92,95,106,105,102,97,103,99,97,96,108,97,99,102,106,108,118,100,106,90,103,103,106,103,106,110,113,108,101,85,99,106,103,106,100,92,111,102,98,112,112,107,104,106,102,113,103,110,109,108,109,120,100,99,97,121,103,102,111,120,96,103,110,106,108,90,130,98,106,96,117,107,113,96,107,107,110,107,113,118,103,109,109,104,101,106,109,87,115,108,97,97,108,101,107,107,112,99,97,99,103,107,91,100,111,104,80,99,107,103,95,81,105,112,100,108,117,109,97,108,110,99,95,106,96,101,92,114,94,102,106,99,94,112,99,114,104,114,100,102,121,121,99,113,109,103,96,101,103,100,110,111,95,104,98,98,114,92,106,108,102,105,105,98,103,116,105,104,108,107,103,122,97,104,100,98,99,101,101,95,106,104,106,74,101,106,110,106,111,90,113,116,101,102,95,101,100,106,98,107,95,114,111,110,106,103,96,88,104,95,106,99,113,100,106,99,108,112,108,94,89,114,103,101,98,108,94,114,107,106,110,90,92,92,96,102,100,100,112,110,113,109,106,115,108,94,110,106,69,92,113,113,99,105,101,104,99,113,110,96,102,101,98,108,103,87,102,113,105,102,114,89,101,105,108,103,107,95,110,106,116,105,87,107,99,99,111,104,90,121,104,96,112,93,105,112,101,100,122,90,107,107,110,106,99,104,104,114,103,112,109,108,107,115,124,98,113,103,94,114,96,101,113,124,94,100,96,106,100,106,104,103,117,112,111,98,94,98,107,104,100,108,110,97,120,102,109,102,96,78,117,95,102,102,97,116,116,131,99,111,88,107,94,97,99,116,106,116,106,94,100,95,94,106,99,106,111,110,107,104,111,110,108,102,106,108,105,106,102,100,103,94,105,114,99,93,106,99,104,108,95,96,98,116,103,106,102,105,107,104,98,100,96,110,109,99,102,101,106,107,86,108,109,104,103,110,102,94,95,111,109,101,96,118,94,98,92,99,101,97,106,101,102,107,109,107,103,108,106,95,113,97,102,94,108,109,113,100,118,99,99,107,104,104,110,108,108,106,104,95,94,105,107,105,106,104,99,104,100,98,98,100,98,93,98,101,108,98,98,97,117,102,93,119,97,109,105,109,103,110,104,102,100,93,97,92,98,109,98,117,106,67,108,93,99,107,100,104,110,106,109,95,107,109,101,112,108,115,116,104,116,120,112,100,103,111,104,110,108,98,109,98,109,108,105,108,116,101,100,122,110,118,72,102,105,108,112,105,95,109,98,110,108,98,104,109,116,101,103,106,97,93,103,102,94,100,99,119,87,96,97,104,103,100,105,98,95,104,96,110,94,104,98,99,106,99,96,110,99,103,111,112,106,112,114,105,90,99,104,103,100,110,103,112,97,103,112,106,113,106,103,116,109,105,105,95,103,96,94,93,113,108,96,98,114,103,105,101,114,107,105,94,107,103,108,95,104,96,95,113,105,109,95,104,104,108,99,111,106,84,103,85,93,100,117,107,110,102,109,105,105,108,92,105,104,109,99,99,101,96,100,109,100,97,109,101,100,101,102,104,109,104,101,100,119,125,105,128,100,102,104,109,91,91,113,106,103,109,103,113,103,102,97,102,101,99,117,100,95,100,96,113,102,98,105,99,102,70,111,96,93,107,104,107,110,124,97,107,102,115,99,106,112,116,107,96,117,103,102,103,104,98,99,108,102,104,63,93,113,108,98,106,108,102,106,117,109,95,107,85,95,99,106,96,78,108,106,104, +643.20416,110,99,91,97,87,96,75,98,101,94,104,104,103,101,116,98,99,95,98,103,97,105,113,99,96,99,97,103,85,98,98,96,108,100,102,99,98,105,110,101,117,95,102,92,110,100,100,110,87,106,114,96,107,121,110,106,89,104,100,117,104,101,101,99,98,101,85,107,93,109,107,95,102,104,108,95,105,96,99,108,106,100,97,106,101,99,102,114,97,98,130,101,108,92,96,103,101,74,105,91,101,91,104,92,104,108,106,92,105,91,101,104,100,95,96,103,98,105,104,111,97,103,94,112,107,106,101,95,111,106,113,117,106,95,88,103,101,106,103,103,108,119,96,112,91,103,109,103,95,107,104,115,107,112,97,105,96,101,102,92,89,102,107,96,101,93,99,102,103,79,104,102,100,99,95,101,113,101,105,105,92,89,105,96,101,111,104,94,106,110,105,89,109,99,104,98,111,101,97,96,98,98,105,107,109,104,92,95,113,98,104,102,94,123,108,105,99,97,101,86,99,90,110,91,94,99,104,104,99,95,82,108,97,112,91,99,106,109,103,119,120,108,112,101,100,108,116,111,94,111,97,101,101,95,107,104,101,96,95,108,101,110,96,108,106,88,92,105,99,99,100,98,99,103,107,106,92,115,114,99,87,109,118,103,105,99,99,88,103,110,98,106,108,112,105,111,103,98,95,100,93,104,95,114,96,109,106,87,101,98,95,101,95,113,107,94,99,113,96,100,109,97,108,106,101,105,105,105,103,100,91,91,113,115,108,129,101,95,88,96,105,102,99,93,96,107,111,109,97,106,99,97,102,100,98,95,100,114,100,96,102,115,89,96,98,109,116,117,100,113,105,98,102,101,105,91,105,101,96,107,100,112,89,123,100,69,97,81,106,91,107,100,95,100,93,91,91,100,106,90,98,103,105,111,112,93,106,97,104,99,92,92,103,108,87,90,95,78,100,113,117,96,97,96,94,111,108,110,98,106,96,106,110,105,98,104,101,106,96,106,108,114,103,98,97,107,106,107,97,106,108,101,98,110,93,100,97,100,116,110,96,98,101,105,106,105,104,100,102,100,106,112,96,97,101,96,87,104,100,105,100,100,98,106,94,97,106,107,103,100,95,102,100,96,94,103,106,95,97,104,107,96,101,111,101,86,113,99,95,102,92,90,101,105,106,101,107,116,97,105,99,101,98,105,96,113,114,100,103,102,82,112,110,99,100,98,109,109,103,113,124,96,103,103,107,97,106,100,102,102,107,107,107,106,102,104,109,109,102,97,118,116,105,109,91,107,105,102,101,91,93,91,109,100,97,95,109,95,115,94,104,104,99,109,109,98,100,107,104,102,95,108,104,108,111,101,109,101,102,101,116,102,118,98,103,105,105,107,113,101,105,100,112,104,96,100,111,100,99,95,99,102,93,98,105,107,102,103,111,103,94,106,96,107,101,65,86,110,100,100,99,102,107,109,104,92,105,107,110,120,88,109,100,113,101,109,103,112,107,98,96,116,109,105,93,99,106,106,101,101,103,103,95,113,103,100,86,102,105,100,114,112,105,83,106,105,107,100,116,110,99,94,101,100,98,99,116,94,94,98,105,95,113,102,107,116,102,95,81,102,108,93,104,115,104,87,103,95,98,74,102,126,108,111,85,102,109,105,97,103,95,107,100,101,90,101,100,101,106,95,95,107,103,108,105,108,104,109,102,100,102,96,101,102,103,95,114,98,102,95,102,100,100,102,97,95,99,101,115,102,114,91,100,101,101,104,103,104,90,100,109,107,112,106,95,95,96,110,109,106,101,109,111,94,109,87,105,104,101,104,100,94,99,102,104,98,107,98,106,112,105,107,103,104,107,106,101,104,95,95,106,102,94,108,108,105,107,99,104,102,98,107,107,105,110,106,98,109,116,98,110,105,106,104,88,106,103,91,96,95,110,62,96,100,101,99,100,107,94,97,78,99,110,108,94,96,98,105,113,100,112,114,111,96,99,108,110,102,110,94,99,97,92,97,103,108,102,109,101,96,95,109,107,113,102,97,101,109,109,108,111,106,108,99,107,93,121,110,85,108,101,111,96,107,101,106,101,103,110,105,103,91,109,107,111,105,101,92,121,106,91,101,111,114,107,111,95,100,115,126,106,94,96,108,90,110,96,101,101,103,107,105,98,102,115,94,112,102,101,101,117,109,119,103,87,95,99,91,105,91,102,102,100,105,96,99,101,102,101,113,106,91,96,105,101,97,91,98,105,108,106,98,96,115,102,97,105,111,114,103,110,99,99,95,106,106,102,102,101,96,95,107,98,104,103,94,110,103,105,104,117,104,113,92,97,108,110,110,97,104,111,99,113,113,98,94,105,104,102,106,110,121,97,106,100,111,105,93,106,112,96,115,119,107,106,105,100,109,101,105,134,100,106,105,99,96,111,100,111,96,121,105,105,101,99,98,96,99,100,105,97,108,98,103,102,104,100,102,104,111,112,105,107,111,88,105,102,109,102,107,112,102,102,105,107,115,99,106,111,108,98,95,78,97,106,94,107,111,102,113,93,105,106,102,99,110,90,110,105,111,100,94,110,96,103,100,105,98,104,102,98,103,101,98,103,105,108,98,98,98,120,94,110,103,97,92,103,94,105,107,115,94,108,101,104,104,103,102,103,99,92,96,113,90,100,105,106,103,103,90,106,110,102,102,95,97,103,102,109,106,96,117,110,105,109,95,79,103,98,115,95,137,109,101,91,113,103,101,105,106,128,103,96,111,96,104,106,106,89,99,97,113,104,103,117,108,91,109,113,112,106,107,96,117,102,111,105,104,103,104,97,96,96,112,103,119,114,102,100,108,91,104,103,99,99,109,104,106,108,112,96,102,106,103,86,100,104,99,96,99,100,102,76,113,98,100,100,101,108,113,112,107,103,102,97,112,113,117,103,100,106,65,93,106,106,84,101,105,101,96,105,98,87,109,95,106,102,111,81,107,115,102,99,98,94,115,101,99,109,106,87,98,101,103,110,114,124,102,115,103,106,69,88,108,99,104,104,101,110,99,94,100,108,106,95,100,111,110,106,99,62,98,98,107,96,108,108,107,102,103,103,102,99,109,106,114,98,104,109,103,98,102,105,114,112,94,98,113,88,106,133,104,108,100,121,102,107,104,86,99,109,104,105,98,106,108,99,97,99,98,108,96,109,104,103,100,103,119,109,100,95,96,102,85,92,103,99,103,104,103,106,106,99,107,113,103,104,103,101,93,107,110,110,109,111,94,91,109,94,79,101,100,108,106,109,107,106,98,98,97,117,103,109,87,91,98,110,80,112,100,99,98,100,106,105,108,105,106,103,111,97,106,107,94,108,107,110,103,107,113,86,96,116,102,101,103,101,94,96,107,102,92,101,84,110,109,94,106,96,99,102,107,102,97,106,101,104,101,129,111,92,95,100,109,92,113,104,108,103,94,96,104,108,111,96,108,105,95,96,93,111,99,111,92,101,97,105,109,105,97,104,93,100,132,99,104,105,112,107,108,99,94,98,104,97,100,78,107,85,74,97,91,109,109,113,110,111,101,99,115,114,95,104,106,106,105,96,107,97,109,105,105,102,102,105,101,110,105,106,108,104,96,114,101,117,100,100,114,110,104,101,119,113,103,97,96,106,93,108,104,104,100,101,111,102,106,99,101,107,102,104,111,94,90,100,105,111,106,102,110,106,105,113,109,97,107,98,108,96,91,102,110,101,106,104,100,106,98,100,111,104,103,103,101,96,109,109,100,97,107,103,105,92,106,101,92,103,116,96,102,94,111,102,113,103,115,106,96,103,101,99,103,112,129,101,108,114,106,111,95,105,88,97,106,116,106,103,109,103,90,112,111,98,118,107,112,98,109,79,98,96,102,104,101,103,92,102,99,111,105,98,113,99,96,100,102,94,94,107,103,93,100,107,102,106,103,105,109,98,102,94,111,101,108,97,100,99,90,113,105,100,105,97,114,93,104,109,105,96,129,99,113,108,112,101,98,108,112,109,99,103,102,105,107,119,109,106,102,102,102,105,96,92,96,106,121,111,94,102,95,110,98,111,82,104,98,88,102,98,107,100,101,95,112,109,103,96,98,114,103,102,104,111,104,109,127,102,94,94,99,111,103,112,108,110,107,95,99,100,114,99,102,91,97,104,104,110,104,106,103,102,100,113,117,108,103,102,100,98,102,104,113,112,99,109,100,108,106,107,105,121,108,80,97,105,110,110,118,104,87,98,90,103,110,107,105,111,98,105,93,88,101,106,102,99,109,93,105,93,109,96,96,111,82,106,103,93,90,93,101,109,90,108,102,116,108,109,96,101,113,120,111,96,90,117,109,103,101,88,80,105,99,109,113,103,111,104,109,100,110,101,119,94,97,110,99,89,82,107,96,101,91,90,123,104,113,100,95,102,109,131,109,102,104,100,92,104,102,104,94,100,107,133,97,112,101,96,102,102,102,96,108,102,98,105,109,104,115,89,108,100,101,96,106,121,111,107,105,112,88,99,106,112,107,111,98,103,102,106,110,95,108,108,103,111,105,112,101,108,103,103,103,109,113,117,112,102,105,106,96,104,91,100,108,117,75,114,100,107,111,102,100,113,99,94,113,107,109,112,86,104,106,100,102,100,99,95,92,113,124,95,89,106,99,109,99,115,93,100,111,99,102,110,106,114,105,118,95,103,97,112,101,87,108,100,109,106,95,110,99,86,111,80,105,98,82,109,106,98,100,104,99,90,94,108,111,108,103,99,103,102,100,112,99,137,116,124,108,97,107,103,100,115,80,104,104,105,108,108,107,107,97,98,91,104,75,106,104,106,111,120,105,115,93,96,117,89,101,82,90,98,88,100,94,102,99,90,107,91,101,133,98,98,95,98,98,98,98,97,104, +643.34534,113,103,105,110,82,102,100,93,113,105,108,106,100,90,104,91,103,100,102,103,112,117,82,100,86,101,107,104,112,95,97,108,100,112,103,110,102,104,102,101,97,104,105,111,97,100,121,94,104,102,101,112,99,107,113,108,90,88,90,98,100,98,95,97,94,104,98,83,98,105,102,115,104,98,91,95,96,102,99,105,89,120,104,100,109,102,104,103,95,90,100,94,92,96,101,119,99,98,95,104,108,95,112,103,104,104,100,101,93,92,110,95,110,124,112,117,108,102,101,98,102,92,98,115,102,103,98,104,102,98,98,100,99,102,105,95,99,114,91,105,107,110,91,106,99,92,107,105,94,95,108,96,95,93,100,80,106,101,112,100,100,100,105,97,114,105,101,101,100,90,107,117,84,104,113,107,98,104,115,104,111,96,98,86,99,103,96,85,104,102,109,116,97,110,95,99,100,97,93,102,95,107,107,94,93,98,101,111,101,112,95,114,102,97,105,97,98,104,116,112,107,113,102,105,105,99,99,109,106,107,112,112,108,113,101,105,94,120,105,112,109,101,106,97,97,107,111,109,112,115,96,103,95,104,111,100,97,98,110,103,100,103,103,95,101,93,96,100,105,112,108,102,109,110,119,92,105,103,92,101,104,111,90,104,103,93,88,109,103,106,103,97,109,99,113,129,108,104,102,96,100,124,95,126,99,104,105,114,78,101,115,106,104,106,105,98,110,97,92,100,96,96,112,100,93,111,94,93,100,104,100,99,100,105,108,103,99,102,101,89,91,102,114,96,103,108,102,103,107,120,105,94,115,102,100,110,102,97,117,106,99,101,95,93,115,100,91,111,97,101,106,94,109,101,97,98,104,96,105,103,110,103,99,100,94,103,88,101,128,104,115,78,95,105,101,95,101,107,101,93,99,111,98,91,96,100,106,97,120,88,89,97,108,95,97,101,101,95,115,100,107,100,80,103,102,99,102,97,91,102,97,102,100,101,101,89,111,105,102,100,99,100,98,111,97,111,114,87,97,98,103,107,97,104,119,104,105,100,110,107,116,104,106,96,117,105,121,107,114,108,100,98,91,96,94,94,107,130,105,107,91,96,94,99,94,96,90,113,103,90,101,107,99,96,100,103,87,106,99,105,109,100,72,93,103,87,92,97,99,100,106,100,94,116,103,105,102,99,110,101,105,102,107,99,92,112,115,90,105,68,92,104,100,102,108,99,108,107,100,111,95,96,99,100,104,91,112,103,98,108,105,110,118,101,99,99,108,99,95,101,112,113,113,103,104,99,101,106,118,112,86,99,99,111,109,103,103,101,101,106,101,110,113,92,96,104,105,106,91,91,104,101,112,93,121,100,112,103,106,94,106,100,94,103,112,110,95,112,107,105,103,99,97,89,99,97,95,102,111,106,103,112,102,106,121,95,111,106,100,108,116,95,113,108,106,101,106,87,98,96,101,106,125,97,104,99,111,99,98,103,98,111,106,104,103,109,103,109,109,104,100,93,98,97,87,107,95,91,101,90,104,101,105,102,97,108,108,116,120,97,95,102,102,110,90,123,89,107,97,103,105,98,107,104,96,96,100,100,101,91,79,91,101,97,113,118,98,109,95,101,116,90,96,96,103,94,98,119,97,103,100,97,103,107,105,108,104,97,95,103,106,108,100,96,91,110,101,98,100,98,108,109,102,100,100,100,109,97,112,94,100,90,109,113,96,101,108,109,111,97,97,86,92,103,103,106,96,107,84,103,106,101,92,100,99,101,107,106,100,106,103,102,108,101,100,98,111,99,98,106,105,113,109,89,94,97,117,96,108,100,104,95,101,102,95,103,108,101,113,97,112,101,96,106,103,94,101,101,105,103,109,114,101,104,118,100,100,121,102,105,105,98,98,96,100,99,112,101,99,98,111,89,115,108,105,98,99,102,97,108,100,108,95,105,91,111,108,98,106,103,98,100,109,105,103,95,104,110,107,96,95,117,89,101,101,92,103,96,111,100,101,100,93,102,107,102,99,111,93,117,101,109,100,101,93,109,102,113,100,113,103,99,72,95,109,101,95,104,100,101,99,112,98,96,104,101,92,102,108,99,103,111,116,107,101,105,83,91,100,104,96,108,97,97,100,106,101,87,100,122,105,73,112,103,100,86,77,104,104,110,110,99,91,110,103,103,102,98,100,94,91,109,98,102,110,105,92,98,104,68,96,100,89,99,96,104,98,107,70,108,110,107,100,99,96,97,99,107,96,112,106,98,113,103,100,101,107,108,95,96,105,93,107,101,108,96,125,99,97,107,93,102,96,102,104,110,100,98,86,94,109,104,99,105,101,104,97,106,110,105,101,96,104,83,110,91,97,95,104,100,102,94,105,118,97,93,100,98,98,98,107,99,110,104,107,94,95,98,95,96,95,102,107,112,114,114,95,98,96,98,100,108,98,107,113,104,102,103,101,95,113,99,102,94,110,102,112,103,124,109,106,116,100,102,99,116,84,94,88,102,107,95,98,94,113,103,107,97,107,105,108,119,99,98,102,112,108,112,105,108,96,102,105,96,118,95,108,108,108,114,120,120,103,103,116,97,98,115,95,102,109,108,93,110,105,102,97,113,127,89,108,116,105,106,97,101,113,103,105,106,91,103,119,77,113,99,107,102,116,111,97,106,111,98,92,112,102,99,109,104,103,115,106,111,104,103,113,109,96,94,99,104,117,129,110,111,98,103,103,103,122,113,91,108,106,108,95,105,113,102,91,99,95,106,91,116,107,112,114,103,108,100,95,110,115,107,95,111,101,93,106,104,68,108,104,104,116,120,105,102,110,88,114,95,96,100,101,102,105,109,98,82,117,108,125,118,101,107,108,112,101,109,104,99,114,99,108,96,116,117,100,101,113,104,113,95,95,99,110,91,108,99,107,104,107,110,103,90,113,114,100,112,94,103,100,111,108,102,89,106,106,102,103,121,104,112,99,105,86,102,80,96,101,96,109,115,104,107,113,102,107,111,108,103,93,120,104,105,103,95,109,98,104,111,100,101,105,110,111,101,107,109,95,100,101,103,106,111,106,101,103,108,105,106,87,102,105,105,99,107,122,110,106,95,112,103,104,95,102,105,101,100,115,111,105,115,121,101,110,94,92,94,109,98,107,101,108,101,92,108,106,116,102,112,100,103,110,81,103,111,105,101,108,108,121,105,101,100,108,103,112,101,83,96,102,100,90,71,108,103,106,100,100,104,100,116,112,83,116,99,110,107,116,104,107,108,101,110,108,90,76,100,117,93,104,109,103,115,111,96,105,107,104,111,99,110,112,112,103,97,105,110,121,109,116,121,112,105,109,99,104,104,102,98,106,113,95,111,111,107,98,119,121,109,106,101,98,95,98,104,101,113,103,115,120,106,112,105,106,105,91,101,94,103,116,105,116,86,112,98,101,117,106,105,98,99,109,108,98,103,109,109,115,95,103,111,111,105,99,102,110,109,106,105,95,89,112,114,113,116,99,98,109,106,115,98,102,111,104,102,109,114,113,116,102,100,106,113,98,105,116,122,104,99,110,96,106,95,115,107,113,117,98,99,110,103,109,104,118,100,99,83,100,107,94,99,100,110,114,109,92,99,107,83,108,98,107,97,110,104,91,116,105,97,91,108,82,102,105,101,94,95,99,103,91,109,90,117,101,104,85,113,102,104,102,105,110,107,101,95,100,113,110,105,104,103,96,99,95,113,94,104,100,102,115,108,107,98,110,108,98,84,104,98,106,104,98,96,116,104,105,105,95,106,110,91,103,87,100,103,102,99,98,104,107,101,98,108,101,99,113,101,126,86,100,106,99,100,104,101,114,105,107,105,98,95,115,99,107,104,98,99,98,117,119,112,99,107,107,84,94,103,97,89,105,107,97,87,113,108,108,107,103,111,81,96,102,98,91,97,96,100,127,97,104,107,95,108,98,106,96,108,104,102,106,130,90,96,102,97,98,97,105,100,104,87,115,96,97,108,109,108,105,106,108,114,92,129,106,107,109,96,105,102,110,102,105,109,112,109,101,113,97,91,99,105,106,118,113,104,104,95,116,103,99,106,106,109,101,112,104,102,105,88,99,119,94,93,112,100,100,103,83,106,98,112,95,93,98,111,96,98,100,98,113,95,110,113,100,99,105,96,96,99,120,100,107,107,100,103,104,105,96,128,104,109,101,103,97,99,107,111,115,115,112,81,95,106,101,112,111,90,115,105,110,102,107,97,101,88,92,92,113,109,98,117,95,102,96,95,91,97,107,111,109,97,101,99,99,107,108,105,103,102,105,98,97,102,101,112,119,100,107,106,114,100,111,107,102,109,112,101,86,110,96,113,111,95,107,106,112,102,106,111,102,114,108,117,104,106,103,113,103,106,100,94,99,102,105,104,98,92,102,118,85,102,117,103,113,89,104,118,100,103,108,106,110,100,102,110,111,106,99,103,96,108,95,107,115,103,105,103,94,105,106,94,108,110,108,97,101,103,102,102,109,102,112,117,102,110,100,93,104,79,101,107,109,107,104,109,100,91,115,104,107,97,101,68,97,98,96,104,110,114,107,103,98,96,113,101,110,84,106,113,117,101,106,100,113,100,104,113,111,102,99,104,102,109,102,106,111,102,106,100,109,103,105,107,103,109,110,122,100,99,111,107,108,103,94,104,107,93,106,115,99,113,115,99,103,92,110,106,107,102,100,95,103,113,106,113,95,111,95,110,95,111,101,106,96,97,102,100,103,100,103,115,105,109,109,112,106,107,97,109,103,99,102,107,112,87,121,99,112,111,99,102,99,109,95,97,109,96,98,101,124,102,107,103,91,105,104,111,99,96,105,108,112,109,120,101,114,81,101,97,110,84,83,98,107,110,101,126,117,80,125,121,117,98,104,91, +643.48651,104,100,92,101,96,93,100,91,103,115,99,106,99,96,97,111,84,99,98,100,104,95,99,95,97,97,104,120,104,99,103,103,99,110,117,107,114,100,106,95,87,116,99,102,109,109,111,106,95,86,101,107,88,113,107,102,103,99,114,105,115,105,88,105,114,100,88,92,109,83,104,97,91,89,97,104,104,97,100,106,102,101,117,118,97,87,102,121,107,106,110,109,107,109,102,92,107,98,95,100,97,101,95,98,101,105,106,102,95,120,100,105,107,111,97,109,110,100,98,99,116,91,98,110,107,114,104,112,120,102,105,104,86,104,110,108,108,114,97,104,90,111,98,114,97,92,111,104,95,93,111,98,117,130,108,105,83,108,106,95,101,102,104,110,96,92,97,105,108,109,101,97,109,91,112,100,100,100,103,121,110,105,100,91,96,97,87,97,94,86,95,87,96,99,106,99,95,108,103,91,95,107,103,107,95,111,103,109,107,110,102,102,74,108,106,117,99,113,97,106,113,99,94,100,103,121,98,102,111,117,110,105,113,107,108,121,98,103,83,91,102,111,113,100,94,102,94,105,102,125,101,99,103,108,105,99,83,101,100,106,117,105,106,97,93,114,103,108,104,100,103,103,108,103,112,98,110,101,98,112,112,100,102,96,104,105,97,90,104,102,103,109,121,102,112,108,103,102,104,101,109,93,105,98,106,104,107,108,108,115,97,108,99,108,108,94,100,100,101,91,108,88,121,114,96,96,96,104,128,117,100,93,100,101,99,103,108,96,106,102,96,106,100,100,98,111,108,116,107,102,96,96,103,109,102,103,107,113,98,101,107,93,104,106,119,88,111,111,94,100,96,103,101,96,104,99,100,92,98,109,111,110,99,96,107,104,105,116,110,88,97,95,105,106,105,87,96,110,130,101,109,104,109,97,105,89,90,109,99,103,98,98,100,110,85,93,101,105,118,105,108,115,104,98,95,100,107,97,105,102,102,97,122,109,99,102,100,111,101,90,102,106,116,107,96,104,90,88,107,101,110,96,99,114,107,97,95,99,103,105,101,102,92,105,113,99,114,98,99,95,102,101,106,95,104,98,101,123,98,103,102,109,110,89,114,100,117,109,109,87,100,119,98,103,94,103,109,99,99,98,112,107,103,108,103,107,111,112,88,106,109,114,103,109,113,107,96,106,105,99,109,101,103,107,102,96,113,105,108,102,106,103,102,99,91,93,112,99,103,95,113,95,100,107,100,99,106,107,110,98,116,96,108,93,117,102,108,100,95,104,106,99,99,92,99,96,107,110,95,104,101,101,99,106,107,109,99,96,104,107,102,95,99,108,97,110,110,100,114,109,111,98,105,106,113,101,113,108,126,100,111,86,110,97,91,100,104,107,96,101,120,106,99,111,106,97,100,105,84,108,113,110,108,106,109,108,87,100,104,100,106,85,102,99,84,109,100,109,101,103,108,106,101,104,109,90,92,97,98,114,87,103,99,93,104,113,104,107,96,94,101,110,92,120,91,92,103,99,107,101,96,108,96,96,96,95,102,102,107,110,109,91,100,96,102,103,97,99,98,110,104,110,91,118,94,103,105,102,67,107,109,112,92,99,112,107,98,112,103,95,101,105,95,108,82,97,95,89,105,95,94,101,98,112,104,102,104,99,108,108,115,96,101,101,103,104,106,104,102,95,103,100,108,121,97,111,98,103,98,105,111,109,99,99,95,96,102,103,107,108,105,99,97,113,99,99,95,103,101,93,110,100,101,96,96,106,113,111,106,99,99,107,111,113,104,104,106,99,100,106,95,111,112,103,108,115,95,91,108,103,99,101,89,102,106,109,96,103,89,90,113,101,92,107,96,90,116,98,105,101,99,106,103,111,102,105,113,108,105,97,103,95,107,104,109,103,106,112,102,106,93,113,95,109,110,106,104,108,102,95,110,102,102,106,104,112,105,107,110,108,94,108,95,110,103,98,102,104,108,91,102,99,104,102,97,66,105,102,105,102,88,121,130,109,112,91,73,113,108,110,108,100,92,99,109,92,97,95,96,106,100,113,105,108,112,88,95,114,111,94,116,95,117,87,101,99,96,99,106,108,105,112,105,116,96,91,100,114,92,90,104,104,112,109,97,116,101,114,116,114,111,101,105,98,66,110,110,100,109,113,95,95,117,90,120,111,101,108,112,109,108,109,100,92,100,108,99,112,101,91,110,94,114,107,103,104,96,95,97,87,70,108,107,107,104,99,104,95,103,99,98,102,111,84,94,100,92,112,99,91,69,109,109,104,114,102,101,113,103,103,105,104,94,105,100,98,98,92,101,105,99,105,96,82,96,95,95,98,108,109,97,100,101,103,108,97,113,118,90,82,86,108,104,103,102,116,100,101,106,95,102,105,109,95,87,108,102,120,112,105,101,109,109,93,92,111,104,113,100,99,87,112,101,105,132,114,107,120,102,108,103,107,91,109,114,99,101,95,102,104,103,100,97,98,112,99,106,98,107,113,98,95,102,92,89,104,85,105,97,98,97,104,96,114,102,100,121,113,113,104,95,100,103,113,101,103,98,118,104,101,106,99,96,113,109,95,89,109,102,95,102,104,100,109,100,105,95,113,114,110,104,102,103,113,97,97,97,90,105,113,109,90,80,100,122,110,89,107,104,105,106,113,113,102,107,96,106,108,108,110,103,96,98,94,95,104,115,101,108,102,106,101,103,100,104,108,121,101,95,98,100,111,93,101,103,112,100,99,105,102,107,101,105,101,109,109,118,98,111,103,104,101,118,112,105,95,110,104,93,100,107,108,97,85,103,100,100,110,85,99,96,101,110,107,101,94,115,95,110,103,99,107,111,100,100,85,110,99,90,103,101,111,111,104,104,98,106,99,101,108,117,121,103,108,117,102,102,103,106,108,107,104,116,87,111,115,102,98,119,106,95,113,99,106,109,92,99,107,97,95,103,103,102,117,104,83,95,97,99,101,94,106,101,109,106,112,123,107,98,106,103,109,101,101,102,100,108,106,105,92,91,109,101,110,116,106,99,100,98,120,98,106,113,106,107,109,100,103,105,109,99,110,105,113,109,95,98,85,101,99,115,106,111,100,114,95,106,102,104,111,101,107,93,103,99,101,97,82,96,98,99,103,95,103,99,113,102,102,93,100,96,94,96,102,106,117,95,91,113,109,114,98,105,109,100,102,104,107,115,110,92,102,98,125,106,100,100,104,103,108,114,113,99,92,102,96,111,97,108,107,109,104,99,108,112,102,110,88,87,103,103,97,110,99,100,105,105,98,106,92,97,88,109,99,95,125,99,86,99,102,99,110,103,94,107,99,104,103,104,94,95,102,86,106,107,97,102,96,108,106,113,129,107,105,92,97,111,101,109,104,94,118,99,108,103,109,102,101,110,104,106,105,98,97,102,99,103,100,107,105,105,111,106,93,105,77,99,96,97,98,93,94,95,112,106,114,113,100,102,95,106,100,108,106,103,96,124,100,109,100,102,106,98,107,112,106,109,111,112,103,100,94,102,113,99,109,115,112,83,114,103,95,112,104,116,115,113,104,99,113,104,108,101,111,98,112,114,101,107,101,100,111,92,109,97,111,113,112,99,114,98,101,108,104,116,102,114,103,114,110,97,98,101,107,88,102,98,91,102,106,106,106,103,116,105,99,108,116,97,99,94,110,109,117,99,100,104,115,99,106,105,107,117,113,111,107,101,118,116,100,106,95,97,95,109,107,106,102,116,117,98,100,96,123,113,104,101,106,105,108,108,97,102,98,112,101,107,104,97,103,94,101,102,116,109,98,102,128,93,100,100,101,91,99,112,115,99,94,109,126,93,100,103,100,104,103,113,109,103,98,106,121,98,104,116,112,109,93,98,110,109,90,103,99,99,94,113,100,101,108,102,109,104,120,109,113,98,98,120,101,103,101,121,103,113,116,100,119,106,105,110,98,101,102,104,106,112,97,109,109,109,103,104,98,99,107,97,96,102,106,100,110,103,111,100,110,99,102,94,96,112,105,96,101,98,104,118,75,95,109,115,106,93,106,103,94,105,98,102,95,102,107,109,107,106,109,105,103,103,105,105,101,100,99,131,109,105,103,92,105,107,110,113,101,100,101,103,100,121,105,116,109,87,111,103,120,88,100,117,103,104,95,108,97,110,76,115,99,117,89,106,102,110,101,111,104,105,98,113,101,99,101,95,105,108,102,117,98,97,108,94,96,100,95,96,99,111,91,102,88,102,94,108,103,92,105,101,98,113,103,109,124,100,111,96,104,107,93,108,97,109,106,113,101,117,96,114,106,108,93,96,102,99,107,99,68,105,91,116,109,96,106,106,117,116,97,107,100,116,113,96,112,105,104,94,101,111,86,105,95,99,95,101,100,103,95,102,101,111,110,104,99,105,113,92,105,86,100,99,92,111,105,102,99,102,113,87,94,78,106,122,101,103,116,103,96,105,99,99,109,102,95,98,102,108,113,106,102,103,102,102,99,105,99,120,113,105,105,111,94,93,99,96,105,105,120,108,97,117,104,80,111,110,100,112,101,104,108,98,100,104,105,102,93,102,94,117,100,90,105,98,95,103,122,105,105,110,99,97,100,94,94,101,73,95,109,104,109,92,101,95,114,99,98,98,99,106,120,105,108,114,94,107,111,98,97,102,99,116,101,108,86,95,113,104,109,108,103,100,99,100,104,112,103,105,100,117,115,103,76,69,106,92,107,99,90,100,94,105,102,102,115,113,98,86,113,102,103,100,101,90,117,96,108,101,112,109,79,96,93,116,102,97,108,117,95,113,110,106,101,112,99,110,99,122,102,102,106,91,102,108,94,106,100,95,102,83,135,96,101,118,98,94,108,103,103,102,108,103,112,100,103,98,112,114,98,110,105,97,105, +643.62769,104,96,94,79,104,118,97,109,112,102,83,91,94,92,123,108,89,108,102,109,108,96,100,97,105,92,101,111,94,102,111,107,106,88,111,86,109,108,108,106,96,98,109,114,104,110,98,95,116,98,100,107,95,106,99,96,94,94,112,94,100,111,96,100,94,117,87,119,109,112,86,115,90,105,102,103,100,100,95,109,104,90,108,106,90,111,100,98,91,105,98,101,80,111,109,102,117,74,111,89,87,113,116,111,99,98,95,102,116,101,108,118,108,101,105,99,98,102,104,85,109,95,102,113,102,105,98,93,118,103,101,102,90,87,105,106,94,111,105,103,86,109,85,92,95,101,105,103,99,93,104,94,101,95,95,94,99,109,113,96,99,109,112,119,95,110,117,111,88,99,114,102,102,101,93,99,98,96,132,103,100,107,105,102,97,128,104,92,110,107,99,99,113,115,99,97,100,110,102,97,98,95,102,92,96,97,102,87,105,111,98,101,109,113,95,105,91,102,100,101,101,101,97,89,102,105,106,107,117,113,97,105,108,109,104,105,119,110,95,95,117,102,104,100,100,110,99,106,90,96,95,106,93,97,100,100,93,96,101,96,95,109,114,91,106,100,105,110,102,98,100,97,121,103,104,94,101,103,124,104,102,104,104,95,100,116,103,106,98,93,112,92,113,125,115,106,107,118,110,94,104,90,103,109,100,113,110,102,99,109,101,118,100,104,70,81,103,109,110,97,96,103,104,75,111,99,98,90,104,107,104,96,110,95,121,101,105,101,112,102,93,103,92,99,102,108,79,113,103,105,101,113,105,109,117,102,124,114,108,96,109,106,101,105,98,116,110,101,95,108,113,113,112,99,111,111,105,95,102,107,104,106,101,113,88,101,93,114,111,94,104,91,95,106,91,98,101,107,102,105,101,133,93,100,103,92,101,110,99,104,105,105,108,102,92,95,93,107,102,115,98,98,94,95,98,100,114,91,93,99,91,90,110,114,108,99,105,107,104,108,91,103,107,108,102,98,106,101,111,102,110,102,85,93,104,103,98,113,106,107,101,91,109,87,113,106,93,104,105,98,101,113,95,101,98,96,108,104,102,108,104,91,111,100,100,92,106,104,103,104,116,114,109,102,90,105,100,110,100,99,96,115,105,100,104,105,94,99,104,106,105,113,106,115,105,111,102,109,99,91,75,108,103,99,104,111,103,109,95,105,89,103,106,99,91,96,98,100,108,99,98,100,99,104,111,116,89,101,105,109,100,90,118,113,129,78,94,101,91,114,105,99,108,117,98,98,113,104,102,85,99,108,97,112,97,107,97,95,96,99,99,97,109,118,108,106,117,118,113,106,109,108,110,96,103,108,108,103,103,109,110,99,117,112,98,116,94,98,97,106,107,110,105,98,113,98,110,97,107,107,99,101,114,90,114,98,103,99,120,105,104,101,102,105,108,100,99,89,113,96,99,100,109,109,114,92,110,128,109,107,100,104,102,106,111,102,102,91,101,105,112,104,103,110,106,103,99,91,102,106,118,119,108,109,91,103,106,112,102,109,103,104,99,93,103,99,106,102,99,104,97,109,91,102,110,99,97,99,114,98,114,85,106,112,92,115,111,109,108,105,92,104,92,97,91,103,98,101,98,100,106,97,92,107,110,101,85,107,105,109,100,118,103,104,104,104,104,99,109,98,99,94,104,114,104,107,107,104,100,101,98,109,101,106,99,97,103,110,114,117,109,95,96,95,111,100,91,107,87,95,111,102,104,91,93,106,103,92,103,95,108,100,115,100,96,121,116,101,108,102,103,104,106,104,113,109,96,109,109,108,98,104,100,98,107,106,111,97,105,104,106,121,112,100,92,106,110,104,103,103,109,108,100,71,108,106,94,102,100,110,100,115,103,101,114,100,94,107,87,101,105,98,108,97,88,107,101,91,104,109,99,100,102,128,93,101,105,105,100,98,125,91,109,94,106,97,102,89,106,108,100,113,71,111,103,122,99,108,101,96,104,90,95,108,105,102,95,102,100,104,96,83,96,105,107,99,108,99,99,110,98,106,109,114,109,91,110,105,110,106,120,106,117,98,97,108,98,115,100,108,100,99,109,102,97,112,105,110,102,95,110,101,108,105,114,96,83,101,105,97,108,93,102,104,98,116,117,107,106,106,105,103,112,100,113,103,105,94,108,106,104,118,108,100,100,106,91,103,104,111,111,100,107,102,114,105,102,109,97,91,99,105,106,121,104,91,100,87,114,102,106,106,99,120,107,104,107,99,109,108,96,109,87,103,108,95,109,105,103,92,106,104,106,109,97,101,100,95,109,101,109,96,117,105,105,107,113,100,105,126,103,104,95,102,121,91,90,111,108,101,105,100,110,100,116,94,97,102,107,110,126,106,103,106,111,112,104,114,98,97,101,105,93,105,104,89,94,99,101,104,97,110,112,98,106,96,96,106,106,105,104,100,105,113,132,90,100,100,112,100,110,100,93,63,100,108,110,114,103,105,103,93,114,100,110,99,101,106,109,110,98,108,104,116,103,102,91,112,88,91,99,98,102,104,100,105,106,97,94,98,95,87,92,88,99,95,98,107,94,98,99,106,98,98,99,100,111,123,104,97,92,117,113,104,106,109,106,99,106,102,110,90,104,106,87,101,100,94,104,105,99,104,97,119,102,94,101,105,110,95,94,113,102,110,102,98,105,105,119,97,120,95,110,110,104,104,108,87,105,89,114,105,94,97,107,106,110,129,95,113,105,102,89,99,107,94,116,117,104,87,107,110,100,89,106,103,100,107,105,106,115,105,103,103,99,91,102,113,99,101,106,117,102,113,103,113,110,101,108,112,121,89,112,102,98,105,121,112,96,96,107,104,99,98,113,99,104,105,105,113,115,103,111,102,104,103,104,105,94,104,102,108,102,109,99,102,99,96,106,102,112,110,109,100,96,110,93,102,99,83,110,112,111,111,108,108,98,102,116,93,99,109,104,99,95,106,108,98,106,112,108,110,101,93,116,107,109,106,97,99,130,104,98,113,124,106,116,112,107,80,98,92,101,104,119,114,101,101,102,105,102,105,106,106,91,100,101,102,92,117,109,106,104,102,111,102,102,103,111,112,109,107,104,103,103,110,98,105,108,103,115,98,107,100,102,100,103,97,96,92,105,104,111,125,108,106,102,107,94,101,113,106,101,107,107,115,102,101,108,109,99,106,95,104,103,97,99,94,98,107,108,103,102,103,96,96,108,116,98,96,111,99,107,116,103,92,94,113,102,99,108,99,105,106,105,103,102,111,110,100,97,91,99,95,103,98,107,100,110,99,109,98,102,100,106,104,97,102,100,106,88,110,100,104,102,100,112,113,102,116,111,99,104,104,104,110,99,112,108,101,106,96,100,105,113,96,112,101,87,98,96,105,114,117,104,93,111,105,103,105,93,109,99,87,102,88,111,103,93,109,104,100,105,117,91,91,108,103,100,102,105,103,109,104,100,87,104,106,106,107,99,107,97,103,109,115,102,99,116,88,100,105,95,103,101,96,103,97,104,108,99,98,101,109,109,102,103,106,106,108,109,104,106,103,98,102,98,108,106,95,79,98,103,115,101,103,101,94,106,95,102,109,125,103,116,99,101,101,108,82,103,117,111,102,109,111,114,106,102,131,105,110,94,102,98,101,105,108,100,108,112,119,124,100,95,116,104,104,115,124,95,90,117,116,108,112,100,91,94,95,92,116,102,104,101,110,100,103,106,103,108,104,107,94,106,104,115,104,98,104,108,105,103,104,102,93,103,102,101,115,98,98,112,108,102,79,103,105,106,101,101,101,132,92,98,110,108,83,111,110,98,102,101,103,105,95,101,107,108,88,103,97,100,113,102,105,95,97,84,102,105,105,91,107,97,91,116,100,107,105,105,113,99,100,98,106,100,91,109,96,101,99,109,131,108,103,94,106,109,107,101,103,92,103,92,109,101,99,94,117,94,97,97,109,99,109,112,98,109,99,100,105,96,104,98,104,98,98,103,117,110,95,116,98,102,95,110,120,103,111,105,90,103,105,113,108,106,108,114,96,79,105,108,105,100,116,121,102,106,99,102,104,106,93,106,116,105,98,100,107,105,101,107,102,102,106,111,94,109,105,105,99,100,116,106,103,98,102,98,96,113,110,101,102,109,90,99,102,101,100,100,94,95,105,113,104,97,119,119,112,93,115,104,105,103,107,120,108,102,104,123,94,95,110,99,104,93,99,102,105,103,96,111,101,98,104,90,100,104,95,104,107,106,112,105,113,100,95,93,102,109,108,117,99,107,104,102,108,103,111,101,96,115,105,106,83,100,113,103,94,116,94,100,99,108,105,98,98,111,103,104,100,104,100,101,121,101,104,102,104,106,87,91,98,107,100,98,103,105,99,91,94,103,88,93,117,97,103,112,95,109,103,99,100,98,99,100,100,97,104,105,95,103,109,108,102,105,91,108,100,98,101,102,111,98,117,99,115,101,94,109,92,107,101,104,95,98,99,104,96,93,109,97,104,98,115,111,99,104,104,91,107,107,93,105,99,99,96,109,121,100,111,110,94,107,110,97,112,111,97,93,91,102,109,110,85,117,101,102,104,96,94,103,110,107,116,100,111,102,99,101,108,98,96,113,109,96,101,110,120,97,93,101,92,91,96,102,105,99,98,102,98,104,95,120,97,106,105,97,113,100,114,110,93,99,101,134,94,90,84,98,99,91,107,112,111,116,94,104,99,123,77,107,96,106,96,100,101,123,103,91,104,106,103,118,96,109,101,106,96,88,92,106,91,106,94,102,106,105,100,119,113,97,100,108,95,103,100,101,93,104,105,97,112,136,99,83,97,101,95,105,98,101,109,88,103,98,98,108,86,105,106,117,91,108,110,106,95,96,105, +643.76886,95,111,104,105,106,120,99,97,101,112,104,98,107,115,99,87,97,110,107,105,95,108,99,98,91,87,94,115,93,108,96,104,101,98,110,87,96,102,103,115,100,91,105,102,105,103,99,70,101,103,117,102,113,99,101,92,104,100,106,114,108,112,109,102,85,118,110,106,99,97,107,101,90,99,100,111,95,106,107,104,90,107,99,109,114,106,95,102,98,100,110,104,108,104,114,90,105,99,108,112,93,101,90,97,100,79,99,94,105,95,67,110,82,102,99,98,101,108,99,96,100,124,107,108,102,95,104,100,98,112,106,108,76,113,106,118,103,100,96,100,99,98,116,98,103,66,105,102,99,95,106,96,102,100,97,106,105,109,101,95,92,102,102,118,103,103,113,97,110,105,108,99,103,104,100,114,101,99,116,95,93,108,98,104,101,94,95,105,90,96,104,106,108,109,90,112,101,95,104,95,101,100,92,100,106,103,108,108,109,102,114,113,143,113,118,107,101,120,102,98,90,101,112,93,98,110,97,107,98,107,102,108,103,102,100,94,104,113,101,103,96,96,113,100,97,100,97,105,105,99,85,92,103,96,96,94,91,110,99,117,103,105,109,102,107,104,98,90,105,103,110,98,93,87,103,98,99,104,97,94,95,101,97,109,101,94,101,92,102,102,99,116,104,98,108,109,103,103,104,104,99,94,102,110,96,104,96,104,108,83,106,109,96,107,102,92,101,98,102,104,116,82,110,95,109,108,128,95,109,101,104,104,121,103,113,82,98,108,105,100,97,92,106,100,99,109,110,102,117,96,87,112,107,110,103,107,103,112,100,101,120,105,98,110,109,90,103,118,98,101,102,106,97,91,116,89,108,106,103,112,106,112,94,112,98,97,101,92,114,104,96,67,80,112,112,96,100,102,103,104,100,87,99,98,97,95,102,112,109,109,104,104,104,101,95,81,100,101,102,94,108,108,94,96,103,95,102,96,96,103,103,104,102,103,103,93,99,117,97,114,93,103,103,102,112,101,115,93,111,110,105,106,103,105,109,107,111,99,97,108,100,95,109,111,109,99,100,102,102,105,89,112,103,94,98,99,99,114,108,105,99,106,99,105,112,102,98,102,101,94,96,110,101,101,100,113,97,115,113,101,92,95,86,99,106,91,97,101,103,102,120,103,96,115,97,117,107,94,106,101,107,112,109,108,107,107,99,100,95,108,93,104,88,96,107,105,112,100,120,107,110,102,105,110,117,101,100,99,105,83,106,99,109,95,100,118,106,100,97,100,105,114,108,100,100,116,105,103,103,100,109,106,109,99,96,111,105,98,107,99,90,88,98,104,102,117,110,102,98,103,107,91,103,106,115,92,94,100,108,111,96,93,128,105,99,107,103,116,107,98,115,90,108,99,109,108,110,107,111,106,109,106,108,87,103,97,87,105,109,106,97,102,106,108,99,94,106,95,108,103,113,115,100,102,98,94,102,102,94,107,103,113,76,105,104,90,112,99,100,110,105,95,99,107,104,102,103,88,104,114,96,96,107,93,106,107,100,104,108,88,106,91,109,92,104,88,102,110,98,106,91,104,104,108,92,100,103,111,101,93,100,102,119,104,102,103,105,81,94,79,105,99,96,104,92,100,99,103,100,99,106,98,100,105,103,94,105,104,104,114,106,127,101,115,92,102,114,99,104,99,119,108,109,100,99,93,101,117,91,104,99,99,84,116,68,100,108,109,109,101,95,94,101,101,102,100,99,99,115,106,107,92,104,99,96,105,122,74,97,92,105,104,92,97,94,102,109,110,94,111,104,104,99,102,112,103,109,107,102,103,93,105,91,108,107,99,99,105,90,96,109,120,124,110,104,99,104,117,108,85,105,100,99,112,118,110,110,90,100,107,111,108,103,100,98,108,102,105,112,103,112,95,103,94,98,89,109,110,101,90,109,92,102,110,95,98,106,116,91,111,107,117,105,98,109,105,84,105,103,100,106,109,94,110,110,112,110,96,106,108,110,96,100,107,102,98,100,99,118,109,116,110,98,101,95,99,98,105,106,107,98,108,120,105,100,102,108,92,100,99,101,108,107,107,103,108,108,129,99,106,122,100,95,108,108,102,96,101,98,102,104,105,103,95,91,108,97,98,114,110,107,102,103,100,84,117,109,105,110,94,100,100,106,104,105,99,114,110,107,94,117,102,106,97,97,101,95,98,96,113,86,112,97,99,100,105,101,103,94,97,90,121,106,102,107,100,95,91,89,105,100,98,104,111,102,106,96,92,101,101,104,100,93,112,107,124,106,104,106,103,101,121,105,112,99,94,118,103,100,108,112,105,99,106,101,97,90,104,99,102,109,105,113,112,104,97,87,115,114,105,105,98,103,104,104,106,104,102,104,110,92,105,113,99,99,106,103,94,99,109,89,108,107,100,109,105,106,101,95,98,87,110,90,110,99,107,87,94,105,95,92,104,103,114,104,101,113,103,111,100,113,96,110,103,95,74,108,93,71,95,95,102,98,98,117,105,106,96,100,100,105,109,116,103,113,100,103,102,90,92,90,98,96,92,106,108,106,112,97,98,99,116,106,91,98,91,98,115,109,115,104,100,90,121,108,104,109,106,95,104,94,110,117,104,105,101,109,112,114,107,108,99,107,91,101,108,103,98,103,102,104,109,114,108,101,110,102,109,73,96,105,97,99,94,100,103,113,106,107,98,107,106,108,104,101,102,97,97,93,104,124,108,89,97,105,112,112,99,111,106,103,121,100,109,105,100,100,110,98,113,103,121,104,101,120,113,106,102,97,100,98,99,101,86,113,106,105,103,73,101,109,98,100,98,88,103,102,96,109,94,98,102,103,107,98,117,94,104,95,88,99,101,99,112,113,106,102,108,103,109,100,98,121,108,105,77,98,120,108,112,112,103,97,97,115,103,104,99,120,106,98,117,96,106,111,95,93,98,99,101,97,95,100,104,102,94,97,108,105,105,111,101,102,109,121,111,116,97,109,88,105,109,104,108,109,102,104,116,98,115,103,101,104,116,116,103,106,101,92,103,112,107,93,106,110,106,99,105,121,97,94,96,106,99,98,106,108,106,93,99,100,110,98,104,105,101,102,105,108,102,114,117,107,105,115,96,106,100,113,100,105,109,104,107,93,105,111,103,99,109,98,106,99,95,107,98,87,103,105,106,102,115,113,104,108,94,106,101,104,104,91,106,99,85,106,102,88,103,106,130,93,101,107,109,101,87,109,101,109,96,99,111,103,101,111,101,109,85,107,115,94,111,96,101,93,114,101,99,102,110,116,93,106,109,96,102,111,101,103,113,98,102,101,94,103,107,97,101,110,106,95,104,105,105,101,93,105,105,100,95,103,98,104,113,95,94,100,113,104,91,103,112,108,100,109,112,99,102,105,110,102,110,99,100,105,124,104,100,105,95,95,109,107,111,103,115,98,109,102,103,95,105,94,136,104,97,105,103,94,109,112,111,111,105,97,91,98,100,94,92,100,102,104,111,104,98,109,113,89,98,115,100,101,103,100,105,107,108,105,102,97,108,114,112,105,104,109,98,104,107,99,101,103,111,118,92,98,109,107,92,107,93,104,119,104,97,96,108,105,100,103,97,94,109,108,109,98,102,104,113,111,101,110,100,108,102,116,110,92,101,107,96,106,102,92,107,99,92,98,101,107,113,117,101,107,93,113,105,111,101,105,104,108,112,114,107,112,109,109,115,107,114,97,88,106,122,99,103,114,102,102,96,106,101,99,108,98,84,102,117,123,91,111,102,107,105,99,99,113,110,102,93,118,102,97,104,101,98,136,118,110,83,101,104,96,100,110,118,125,90,104,108,93,105,85,106,99,109,110,105,103,108,106,93,111,101,103,98,107,106,95,107,109,104,103,103,94,105,109,98,106,102,92,115,100,104,104,98,104,97,96,100,118,95,100,115,98,95,114,101,95,109,99,111,108,94,101,101,104,98,99,108,104,106,103,98,105,104,97,95,102,108,97,104,110,104,82,97,101,101,116,105,117,94,108,109,113,91,121,104,103,103,100,98,100,112,118,106,106,109,95,105,96,97,94,102,95,103,106,120,99,99,100,109,106,101,95,100,106,104,108,100,94,108,113,103,103,115,97,104,94,101,110,115,102,108,99,96,107,99,104,107,104,103,101,112,97,102,89,110,101,94,105,106,115,99,102,108,105,104,107,105,126,105,105,108,99,106,97,108,89,93,117,95,98,106,108,107,102,90,105,91,126,108,108,98,104,101,97,98,114,108,97,67,85,108,104,99,94,110,104,109,109,110,111,113,98,99,103,86,118,95,107,102,108,100,93,103,100,95,114,96,106,113,94,97,100,95,87,105,100,105,100,109,105,85,100,111,102,107,96,112,108,104,93,98,99,92,110,95,92,100,113,111,104,98,97,111,109,101,80,99,107,91,104,108,103,106,104,113,113,104,115,88,92,114,101,94,102,104,105,100,108,100,101,98,106,102,100,118,100,113,103,108,104,103,108,113,106,99,95,97,89,106,100,110,114,113,108,102,99,111,86,101,94,105,108,102,102,102,105,121,99,69,80,106,99,106,95,100,110,102,106,106,108,96,103,117,117,97,101,94,100,99,98,110,101,105,92,115,110,114,101,101,98,102,103,114,108,105,92,100,102,117,106,114,101,104,100,96,102,96,103,113,106,102,96,97,104,94,108,106,92,112,103,95,103,103,86,101,100,113,94,103,102,112,113,90,110,96,102,105,123,100,102,101,101,106,99,100,99,107,114,111,97,108,108,94,102,105,105,101,100,94,100,109,100,94,114,107,116,112,97,107,109,100,104,100,93,108,103,112,99,115,107,105,87,101,102,68,118,87,95,102,101,88,110,112,105,107,98,98,106,108,112,110,117,98,110,92, +643.91003,109,94,94,105,103,110,96,120,102,102,112,101,99,102,112,106,96,114,91,104,102,109,91,105,96,102,117,99,101,101,104,112,111,109,100,117,103,93,105,101,97,99,100,110,110,103,107,104,106,134,106,99,112,97,108,91,110,94,109,103,79,96,106,105,107,107,107,107,99,89,107,96,98,100,94,109,102,91,105,124,109,103,102,109,95,104,102,111,112,97,110,117,95,107,95,106,103,101,95,100,108,100,101,93,103,93,100,102,106,96,102,106,113,105,100,103,99,102,98,100,105,101,107,115,95,96,114,96,101,107,100,111,110,113,84,114,97,96,109,104,99,104,91,105,98,97,95,99,116,87,97,102,115,83,96,106,92,103,113,94,108,113,97,111,105,111,108,97,115,109,102,117,107,92,105,120,114,98,109,97,105,108,104,102,103,101,97,106,106,93,103,103,92,105,99,100,106,105,102,115,103,112,95,129,99,103,102,104,107,104,90,120,112,112,103,116,112,94,109,93,96,104,103,92,94,120,111,108,105,99,104,112,102,105,107,95,103,109,96,80,104,106,106,81,90,98,117,105,95,102,100,110,100,100,95,113,85,103,104,110,104,95,102,112,93,97,104,98,111,105,101,104,96,92,102,95,100,108,114,113,105,106,102,101,102,113,96,103,102,100,98,94,101,116,101,103,100,103,114,102,106,98,115,108,97,111,118,102,104,103,88,109,105,118,99,92,113,97,102,109,114,99,107,104,104,107,91,103,114,112,105,107,109,113,96,108,97,108,110,106,99,104,91,100,94,102,112,105,109,109,107,105,103,101,107,93,105,111,109,94,101,103,104,101,103,105,117,109,108,99,96,99,106,112,103,104,93,99,113,120,105,106,93,104,97,95,100,118,108,94,107,93,96,111,115,102,93,99,101,111,108,99,107,105,105,86,97,106,104,106,92,112,105,107,94,93,93,97,117,95,118,114,98,108,103,94,110,95,104,113,85,102,94,103,98,107,104,108,102,103,104,99,96,113,98,103,75,96,104,113,101,98,111,107,110,100,99,95,67,91,96,96,104,97,103,97,113,79,108,117,104,112,116,109,95,98,94,105,106,94,98,104,108,102,105,101,106,101,104,109,103,102,103,102,98,93,110,97,107,120,99,97,93,110,107,95,97,92,98,95,108,111,114,113,103,104,103,104,111,97,105,103,100,107,110,101,104,104,93,108,95,108,102,107,116,98,102,117,109,108,98,101,92,115,108,95,105,104,104,108,105,113,93,104,76,98,110,108,100,106,113,112,105,112,106,98,103,114,105,100,96,105,99,114,112,109,95,95,114,116,107,108,121,102,113,105,116,102,104,101,105,106,105,103,104,103,117,107,96,103,90,101,103,102,97,98,91,110,101,106,100,101,108,113,108,106,98,112,105,100,108,104,87,101,110,103,93,109,110,109,110,105,110,104,114,107,100,104,108,110,104,110,124,97,90,95,102,101,104,113,106,113,102,105,115,110,102,108,92,105,118,99,93,103,102,96,109,96,103,98,107,104,110,105,103,105,110,111,102,97,100,134,104,100,95,95,98,102,104,105,99,108,99,114,122,96,116,104,109,97,110,103,113,91,121,109,109,108,99,91,106,94,99,103,103,99,95,99,118,98,110,97,113,100,109,109,104,105,108,107,102,113,101,94,95,89,109,97,109,113,116,94,114,98,98,104,109,90,102,104,110,112,100,90,115,121,112,105,105,108,104,96,106,112,100,97,96,120,92,96,105,102,129,108,96,117,103,101,105,80,106,105,101,110,103,105,110,108,97,129,107,101,95,101,92,107,102,107,113,99,95,106,106,87,105,105,84,100,101,113,109,100,117,105,107,99,102,114,108,88,112,103,106,96,105,115,110,102,113,101,102,103,112,141,106,87,106,104,100,103,108,102,110,97,99,125,112,96,94,109,107,89,110,117,108,100,112,111,106,121,113,109,104,102,110,99,102,96,119,99,101,108,117,99,103,110,120,93,101,105,105,98,104,110,88,102,95,107,111,102,99,104,102,115,84,95,97,105,99,105,106,110,111,102,101,104,109,109,102,97,95,106,108,111,91,87,87,101,98,102,101,100,107,95,101,103,104,105,102,100,110,105,98,92,103,89,104,100,92,128,98,109,103,99,106,107,123,104,90,102,101,111,99,101,104,113,116,106,106,114,94,102,95,110,106,109,107,116,99,113,95,109,100,99,98,103,113,107,100,99,100,124,102,97,102,105,102,109,101,107,98,94,99,94,99,111,95,103,112,102,101,105,104,100,98,105,105,100,84,99,85,106,95,88,116,104,102,111,95,111,108,115,88,97,115,108,108,103,103,98,96,121,104,102,103,93,119,109,107,111,103,109,83,91,106,110,117,110,108,111,118,97,101,95,108,109,101,106,107,120,119,100,113,125,98,88,86,112,96,101,104,114,109,74,109,106,98,95,103,100,103,106,113,97,86,113,94,106,126,109,102,95,110,78,95,99,98,100,100,108,104,107,102,105,90,100,123,98,97,95,97,106,109,107,105,98,77,88,97,115,108,102,113,106,102,77,106,110,106,102,108,99,105,102,100,99,105,104,106,131,108,98,101,98,103,95,101,94,106,107,104,108,109,98,107,96,100,109,103,110,90,71,110,95,108,100,94,95,106,107,111,98,72,97,105,121,93,96,102,107,109,108,114,110,111,109,107,108,106,101,91,84,103,102,90,101,94,106,108,126,92,100,95,108,124,102,95,107,108,105,109,121,114,143,108,106,92,110,102,103,113,109,109,99,110,108,99,101,104,96,100,105,105,95,108,104,101,101,100,112,107,102,103,93,104,113,105,108,99,119,108,99,110,116,97,109,116,96,102,105,116,103,104,106,105,104,98,123,97,105,113,89,108,106,107,113,113,111,98,73,99,102,114,112,99,110,108,112,102,107,107,115,104,105,89,103,107,119,112,103,107,95,116,109,103,95,101,106,100,91,104,116,102,97,95,98,106,106,87,106,98,103,89,112,102,109,97,110,88,85,108,102,98,112,107,107,109,115,119,113,87,94,96,106,101,76,112,88,107,97,98,93,103,102,104,102,96,103,105,97,105,110,98,102,98,113,106,108,105,107,108,108,103,109,108,100,118,96,103,105,110,121,102,111,99,105,97,103,113,114,101,113,112,101,103,102,103,97,113,107,104,109,105,108,101,110,110,108,106,112,101,99,100,95,109,104,85,101,91,104,110,96,105,108,98,94,103,95,113,97,104,93,105,104,112,106,116,108,105,96,118,96,97,87,104,108,95,105,111,109,104,99,99,103,104,94,100,105,99,100,112,105,105,109,101,99,99,95,102,91,105,113,98,95,113,106,103,108,91,92,105,103,110,110,88,113,108,95,103,108,105,97,106,92,93,102,100,105,99,102,101,97,104,132,106,114,105,96,104,116,98,97,93,95,106,113,104,107,95,93,106,98,92,101,103,106,90,104,102,102,143,112,101,95,110,95,109,107,102,104,100,109,119,105,100,105,113,101,92,109,110,111,104,109,104,98,104,104,91,96,88,102,111,91,104,103,120,107,128,106,111,106,105,108,114,109,109,102,114,101,95,106,105,113,108,101,78,97,111,103,78,101,112,115,89,103,104,123,111,105,100,101,96,98,108,113,110,107,102,110,105,102,101,105,102,101,63,87,105,119,106,102,105,106,89,103,102,72,112,88,104,106,93,100,99,106,97,100,105,104,98,100,91,99,101,102,102,109,103,104,103,99,100,101,103,94,109,99,95,94,99,104,100,110,106,103,112,101,111,110,102,102,100,106,119,107,104,108,103,112,92,103,108,105,106,102,99,95,96,109,91,99,100,103,89,103,100,100,90,94,104,100,106,93,101,109,96,99,112,103,112,109,104,105,104,106,110,99,92,89,93,89,96,107,95,106,109,96,100,112,116,107,109,106,99,103,105,95,101,92,116,111,113,112,101,105,113,101,93,110,99,104,100,105,96,97,110,106,108,100,117,92,91,109,110,103,109,106,105,108,102,99,99,102,98,114,104,108,100,98,105,113,92,108,104,109,99,99,114,98,102,105,110,93,97,92,99,102,109,96,105,106,107,100,110,103,101,101,93,101,107,107,90,110,106,107,106,102,101,101,97,101,102,103,99,93,103,101,109,102,96,77,101,94,109,101,103,113,104,105,110,110,112,108,101,102,92,105,118,100,102,98,106,109,103,100,122,106,95,99,111,102,99,100,103,103,96,97,98,97,99,97,105,103,109,118,93,102,110,108,106,101,110,95,93,101,105,96,76,98,104,110,100,99,104,103,102,102,96,105,104,106,102,104,118,106,90,96,100,87,114,104,99,108,123,103,102,109,101,101,109,102,122,98,92,98,108,106,103,106,87,102,111,110,105,103,102,104,108,105,93,109,96,97,104,113,88,105,91,131,109,100,89,102,106,103,98,109,92,106,93,111,97,98,106,91,112,106,107,109,101,97,106,112,110,110,92,97,108,105,98,106,100,109,113,112,94,112,114,117,108,104,104,83,102,104,94,105,109,117,92,108,100,95,93,92,103,98,139,102,109,112,104,109,104,102,111,115,102,93,100,99,105,104,107,100,70,105,113,103,102,102,99,104,105,92,113,116,105,107,108,84,97,105,106,97,116,115,110,99,99,103,103,105,91,86,95,81,107,83,99,106,87,96,95,103,111,104,89,106,106,110,95,88,100,116,108,101,113,98,105,100,119,105,99,94,95,97,98,116,106,90,109,101,106,114,95,97,110,105,92,107,113,105,103,109,100,104,94,102,110,91,107,99,107,106,91,98,111,94,109,108,104,106,94,92,96,95,112,114,106,107,108,95,97,108,83,95,100,100,108,112,95,108,97,88,102,106,76,113,111,94,98,110,102,106,106,92,109,92, +644.05121,102,103,102,89,105,104,92,96,108,87,102,95,93,104,95,108,100,99,98,106,99,99,106,99,124,105,75,106,100,101,102,105,97,104,93,91,110,96,98,117,97,108,86,117,116,110,99,95,100,130,96,109,116,97,97,80,106,113,112,94,91,85,115,104,89,116,88,107,88,90,100,105,101,110,104,121,98,120,107,106,104,114,101,96,96,107,104,101,95,84,106,88,99,92,102,95,99,95,110,116,116,91,94,96,105,112,104,102,104,97,98,101,98,95,108,94,106,101,99,98,94,94,104,110,97,106,108,101,106,82,104,97,101,121,115,97,105,91,99,92,105,92,97,100,99,115,111,93,116,119,99,92,106,104,97,92,94,100,111,96,96,103,101,102,97,109,110,97,101,107,106,118,99,92,118,96,104,98,103,99,98,112,106,94,88,96,75,87,100,90,101,96,109,103,105,90,104,103,103,115,100,106,94,101,113,100,133,67,84,110,91,110,91,100,91,107,92,134,104,99,102,98,102,97,98,105,109,108,101,99,96,96,114,107,100,101,100,104,110,100,104,96,117,100,89,98,100,95,112,111,107,100,100,98,113,115,111,100,97,110,86,101,84,96,107,113,103,110,107,93,97,102,114,98,108,106,95,123,107,96,94,102,113,103,109,110,111,107,98,108,95,96,108,97,111,92,108,107,123,95,93,110,100,93,99,109,106,112,99,117,96,100,94,113,102,101,99,108,96,109,91,88,107,104,106,109,91,94,101,103,114,97,104,109,108,109,116,94,110,112,95,94,96,98,98,102,104,112,112,100,114,95,98,95,99,100,112,110,109,108,114,96,106,101,91,120,114,109,91,106,110,101,104,102,100,82,100,103,97,115,103,105,109,106,100,101,97,102,103,86,108,103,85,110,104,98,98,115,93,106,95,120,101,95,108,88,99,107,101,103,119,105,106,96,102,94,96,105,94,95,100,96,105,103,97,92,97,91,104,107,84,60,104,88,109,99,99,109,83,109,136,120,103,101,101,91,102,98,98,95,105,106,114,97,101,108,103,102,112,103,100,92,102,105,105,107,109,103,79,104,107,113,92,97,106,103,103,111,101,102,101,105,106,96,77,106,105,110,91,96,112,121,106,106,96,94,103,103,108,86,117,110,99,105,102,104,104,98,110,90,93,103,102,113,105,110,100,100,104,100,91,108,107,79,112,100,99,108,107,106,79,106,109,106,98,111,139,104,102,106,99,106,99,107,98,98,86,107,116,107,105,102,86,107,98,100,102,101,104,100,106,104,118,95,104,100,104,105,106,102,104,96,101,105,110,115,97,105,103,103,104,94,100,112,108,98,99,104,100,116,102,105,104,108,102,108,99,102,107,105,106,97,90,105,107,102,105,107,94,92,101,100,109,115,109,105,100,99,108,109,114,105,102,93,99,99,97,104,105,112,105,101,107,113,102,104,98,93,90,93,107,114,107,108,112,74,111,101,118,94,102,114,107,105,103,98,106,112,108,106,114,102,110,109,99,110,109,101,102,99,119,107,106,99,95,108,105,108,106,98,104,96,107,97,89,96,103,101,111,110,109,108,97,106,100,110,109,113,100,97,102,94,88,116,99,108,104,97,99,120,104,104,110,89,105,108,99,106,117,93,98,101,109,90,97,94,104,106,115,106,118,99,100,88,94,102,94,100,107,109,105,90,111,90,101,103,105,105,113,98,102,102,102,99,111,108,113,103,117,99,115,114,98,106,104,126,106,109,109,99,99,100,100,103,94,95,103,104,128,108,106,102,99,103,105,106,109,111,107,94,105,101,108,109,104,106,99,112,99,115,88,130,109,109,109,122,109,110,108,93,99,111,99,94,112,105,91,106,107,103,99,103,107,104,106,106,117,115,106,91,105,104,105,113,102,103,102,106,104,112,104,106,101,99,120,107,93,104,108,98,94,104,99,101,100,102,106,98,94,104,106,104,121,97,99,100,96,108,117,110,99,103,98,98,91,112,103,106,104,105,98,108,106,111,96,105,99,115,98,113,97,105,100,96,96,101,93,112,93,105,96,107,106,108,104,88,122,101,97,101,99,108,96,107,103,102,105,105,104,110,108,113,105,109,102,99,75,107,102,96,102,110,108,110,99,105,98,97,98,98,95,111,115,106,100,107,112,112,100,105,105,103,110,104,109,101,103,99,116,105,100,111,98,101,101,103,94,103,105,102,89,100,106,102,110,100,87,94,92,97,94,110,105,104,117,103,92,102,106,96,104,87,108,113,72,103,101,100,118,100,112,96,102,98,107,95,72,106,90,102,100,119,96,109,105,110,101,102,102,101,103,117,97,97,99,100,122,110,101,118,122,99,110,104,94,99,96,110,108,100,104,104,114,110,98,101,108,110,100,102,112,102,97,95,98,83,98,113,92,90,102,111,115,105,96,97,101,102,109,105,98,106,89,108,120,101,103,118,99,107,77,111,92,105,116,108,103,105,104,95,107,77,94,106,101,101,118,107,106,109,108,119,117,98,93,106,94,103,82,103,100,100,101,121,117,110,103,97,112,98,98,97,99,109,107,88,113,99,86,112,117,115,100,95,104,103,103,112,101,104,112,101,102,106,99,109,109,109,106,101,107,104,113,103,105,95,106,101,100,99,98,113,120,102,109,99,100,117,100,108,100,109,108,103,99,109,101,108,109,103,107,103,93,114,100,111,110,106,117,102,104,96,94,105,98,100,114,94,96,121,104,117,113,115,105,102,102,111,113,102,112,107,110,109,100,114,105,110,116,105,103,101,99,102,110,102,110,91,94,105,106,111,108,108,104,111,111,101,103,111,98,100,107,97,109,107,107,116,107,106,99,112,110,127,90,112,102,101,102,113,100,101,93,98,105,112,109,113,105,111,106,107,100,110,108,112,105,109,80,112,110,106,117,115,107,126,103,97,108,121,103,114,98,102,96,111,110,109,89,111,96,108,108,106,105,113,114,108,107,104,104,109,99,104,108,93,98,104,106,91,103,113,102,99,119,96,110,113,94,101,100,110,91,110,113,116,104,117,102,118,101,110,106,114,104,106,107,103,113,102,94,108,100,103,96,108,103,111,108,111,117,112,108,92,103,103,105,101,92,103,98,114,106,117,102,101,76,119,104,101,105,96,103,98,104,103,106,120,91,103,91,99,112,113,96,117,100,106,110,89,114,99,106,120,80,116,115,109,107,107,116,67,100,107,123,88,99,106,111,117,110,108,101,87,108,108,115,105,111,110,109,94,104,108,113,106,125,111,101,109,106,96,112,108,96,113,97,101,110,104,109,113,102,103,102,104,115,95,119,115,100,107,105,102,109,107,105,110,95,102,102,108,106,109,102,115,105,101,101,105,106,106,107,102,100,105,100,96,103,105,107,97,104,107,112,118,98,109,114,105,98,106,112,114,106,96,116,103,103,113,98,100,113,102,103,97,103,101,88,99,117,110,99,108,99,103,106,104,120,102,99,109,106,101,90,100,117,121,110,101,103,102,103,120,109,100,86,105,107,104,96,112,96,112,103,131,111,106,117,91,106,105,78,115,105,107,121,108,96,105,110,113,114,123,120,110,117,105,94,98,102,111,96,113,96,101,104,92,91,95,100,91,115,109,107,98,109,112,101,103,97,110,104,106,121,95,120,103,104,117,99,99,101,103,106,110,94,100,95,105,98,94,102,103,96,100,94,85,103,116,100,97,98,101,96,103,102,107,102,100,103,98,95,92,111,106,100,100,109,99,109,97,112,99,102,101,124,100,94,112,109,107,110,107,100,95,99,106,99,120,81,111,97,115,115,103,106,108,102,98,106,93,114,103,118,104,111,109,94,104,101,110,102,118,94,107,99,103,97,99,94,115,107,112,116,106,106,113,106,106,94,98,103,118,105,107,97,101,100,106,101,101,112,106,101,101,108,90,106,101,104,96,107,102,108,110,100,115,116,105,99,108,91,108,111,100,94,113,108,109,95,111,95,113,102,107,112,111,114,110,105,98,102,115,104,98,96,108,109,125,105,86,99,96,102,102,92,106,99,106,107,91,107,109,111,103,104,109,111,104,110,92,95,99,94,105,97,115,103,106,116,105,108,113,113,106,95,117,98,103,111,118,104,112,116,106,100,97,102,104,100,107,97,108,107,96,104,107,103,110,100,98,104,105,106,100,106,104,103,99,118,103,106,100,94,117,106,124,116,118,106,99,109,108,106,113,108,98,106,111,109,95,106,100,93,108,106,101,115,109,106,93,106,101,106,95,94,96,109,96,101,95,104,107,106,100,102,113,87,107,104,112,97,111,109,96,107,104,103,113,106,100,99,108,96,91,87,108,95,100,106,103,106,95,107,113,99,105,116,104,110,100,112,103,96,114,116,109,113,108,98,118,99,94,88,105,102,107,113,110,105,97,105,104,90,104,98,111,73,102,121,108,94,102,105,110,96,76,106,120,106,111,110,98,104,98,102,109,113,115,102,104,102,106,113,101,108,96,109,103,107,106,98,108,111,110,111,110,113,111,92,112,103,103,103,117,101,108,94,105,103,109,122,113,102,109,110,105,103,100,104,110,71,102,103,101,109,105,96,99,101,112,99,116,115,104,116,98,93,99,104,111,112,109,101,102,103,111,107,104,114,91,96,98,102,105,115,109,109,123,97,90,99,99,102,106,101,102,111,121,102,104,101,107,112,120,103,94,110,105,95,101,115,107,100,109,95,113,92,92,105,92,86,114,105,100,113,99,99,109,107,97,109,117,103,108,101,102,102,122,106,102,112,101,107,102,117,96,104,97,101,104,105,100,91,103,102,99,102,99,115,109,91,100,111,106,100,100,99,106,99,105,101,100,93,81,87,99,106,95,105,101,96,95,111,71,103,99,108,99,113,109,97,107,106,111,110,97,126,100, +644.19238,109,108,104,90,101,94,114,97,101,105,96,89,104,96,103,103,96,105,97,88,104,106,87,80,97,98,115,88,100,119,100,90,109,85,107,101,108,102,112,91,108,99,116,106,113,105,104,101,105,109,104,112,103,111,95,95,104,85,101,95,95,93,107,93,100,101,100,99,102,105,106,117,96,115,93,110,109,99,104,97,102,108,120,121,99,113,101,118,97,100,105,106,117,97,94,113,108,103,91,95,91,98,94,95,100,84,91,107,119,99,101,91,114,102,97,115,102,101,105,98,102,70,103,101,106,104,105,77,110,96,91,111,97,102,100,120,96,99,97,97,97,98,99,106,107,100,109,107,91,99,103,99,104,108,96,99,104,102,95,112,77,101,105,99,99,101,92,93,105,96,100,110,94,90,98,105,102,102,100,106,105,104,97,99,101,101,98,103,90,115,100,102,100,103,97,100,97,116,99,110,87,112,106,95,104,113,96,115,97,103,100,96,107,109,113,98,90,112,93,98,101,107,104,108,109,107,91,106,103,113,115,103,119,92,112,98,108,104,108,107,95,103,103,105,95,100,99,121,119,105,99,135,94,97,103,112,98,100,93,98,98,117,103,98,89,108,103,119,104,87,96,98,99,101,107,110,102,108,104,101,107,117,99,106,106,107,87,95,103,102,106,94,91,106,91,103,91,99,105,107,99,128,105,112,111,112,108,116,99,125,95,110,111,99,95,96,99,84,104,98,97,93,103,96,88,93,99,101,125,107,104,116,109,108,117,102,107,109,99,98,102,99,110,102,92,106,96,104,106,104,108,95,104,95,109,98,107,102,99,106,97,104,108,113,101,105,103,116,72,110,114,111,95,106,110,92,100,105,107,103,113,99,96,105,90,104,100,101,123,97,111,92,95,106,98,115,89,101,103,108,98,104,115,107,99,105,92,100,103,106,99,104,110,111,90,97,100,104,101,97,95,96,97,105,101,100,107,102,91,99,100,113,96,103,104,101,102,122,102,108,108,98,106,103,95,98,117,100,101,102,96,110,111,95,115,100,99,92,99,100,99,95,103,109,105,103,108,105,97,102,107,98,103,114,88,102,99,108,103,102,87,110,117,103,99,107,99,99,111,96,107,97,99,108,104,99,103,106,111,110,101,113,93,70,109,109,117,104,78,103,108,104,103,94,105,103,106,95,100,95,105,98,97,99,95,99,104,107,107,97,96,107,98,99,92,108,93,117,99,106,106,103,99,107,102,102,106,112,105,111,117,99,79,103,101,103,102,91,91,99,91,110,100,103,103,100,97,92,111,96,107,92,104,108,106,95,89,95,106,99,102,104,106,101,89,96,107,97,94,114,91,111,89,103,114,102,100,91,102,109,99,98,110,96,94,106,100,101,99,108,101,104,103,95,94,90,104,83,98,110,93,100,107,98,99,106,110,96,106,107,90,93,100,91,104,75,102,98,105,100,107,99,92,94,93,70,97,98,106,106,97,116,103,98,94,115,106,106,99,110,105,114,90,105,93,103,119,106,98,102,106,102,97,106,105,111,107,99,104,105,113,105,109,100,114,94,94,111,141,104,100,103,99,107,104,103,107,98,96,88,98,104,94,111,108,107,104,102,85,101,115,98,105,110,91,98,103,100,92,95,100,118,105,98,83,100,66,98,111,94,100,108,99,93,117,108,104,95,101,101,107,115,101,100,107,97,104,98,103,106,100,100,93,90,108,99,94,115,108,99,104,104,99,106,105,100,98,92,112,98,101,109,109,106,93,95,98,104,99,108,97,103,106,112,98,97,98,105,87,95,99,107,107,95,96,100,113,105,127,105,99,90,109,104,94,100,99,111,98,105,122,111,104,95,99,110,101,106,104,96,94,105,97,113,109,103,112,101,107,110,103,109,120,95,105,110,100,97,105,109,99,104,109,96,108,108,102,109,97,105,108,104,96,102,100,105,91,101,111,113,67,103,102,110,123,105,91,102,100,113,100,102,94,99,107,107,99,84,103,100,111,102,100,100,96,108,98,111,93,93,104,97,105,105,103,104,91,111,100,95,108,101,100,103,103,101,97,108,102,98,114,107,110,97,104,100,98,106,69,97,117,103,101,91,105,101,97,107,106,110,97,107,100,98,97,98,94,116,103,109,102,96,101,105,94,121,108,99,103,95,102,105,90,105,99,105,105,104,104,109,84,113,101,105,106,126,100,98,109,109,109,100,106,94,106,90,99,103,99,99,96,102,89,115,98,100,106,97,96,99,128,104,97,96,105,103,94,106,95,105,105,95,89,83,107,108,103,112,87,94,98,107,107,109,108,97,108,100,110,98,102,107,101,93,105,91,108,68,91,100,104,114,102,99,112,107,94,109,110,109,112,106,96,109,105,97,99,89,114,102,107,102,120,102,97,101,96,99,100,100,84,98,99,96,89,109,106,101,90,105,98,115,98,106,105,103,105,100,104,105,111,106,106,104,120,101,112,109,110,107,92,101,101,104,99,83,102,106,111,94,102,95,111,106,99,108,104,104,104,105,108,108,97,108,116,101,99,97,104,105,100,104,117,103,98,81,83,103,111,120,112,111,112,107,108,106,116,106,102,83,109,102,91,102,110,105,105,114,111,83,103,100,102,96,108,105,108,95,94,111,106,94,99,88,93,117,89,115,103,100,100,100,101,96,117,107,98,109,110,115,108,111,80,94,101,100,119,114,101,121,108,100,105,104,94,101,99,101,93,107,99,112,102,105,93,96,105,117,112,102,97,107,98,93,104,103,108,96,108,94,102,99,115,114,104,107,94,103,98,110,104,101,99,116,103,101,94,108,107,105,105,95,113,106,106,104,96,99,108,113,103,104,108,94,108,108,106,103,84,101,104,112,103,102,109,109,103,105,112,100,118,89,81,111,113,94,95,113,102,113,108,106,107,124,113,99,97,115,109,105,106,109,93,110,111,111,107,106,118,108,99,102,104,89,97,100,111,111,97,97,107,84,107,107,104,103,102,102,100,106,121,121,104,107,101,105,98,104,109,100,100,100,91,108,104,99,111,102,99,101,97,102,102,98,109,114,102,86,106,96,91,117,108,88,93,90,108,101,103,105,115,100,104,113,105,110,106,101,112,107,110,111,98,106,97,93,99,98,102,110,92,102,95,110,95,90,110,101,105,105,88,107,107,96,103,112,91,97,96,107,118,92,95,94,117,90,101,107,109,104,105,102,110,99,98,104,115,100,108,108,104,111,91,99,105,98,99,106,102,106,102,108,111,100,105,108,107,111,108,95,105,96,102,100,105,101,104,102,102,104,98,100,111,107,107,109,124,105,110,93,100,100,97,110,115,102,95,108,105,103,102,110,102,96,104,108,94,108,102,101,117,94,99,108,89,100,102,102,101,104,111,100,95,92,108,113,95,109,111,108,102,102,110,106,94,110,101,99,103,102,94,90,100,98,107,110,102,112,111,96,106,103,90,106,101,99,102,107,116,101,86,105,111,87,105,99,95,110,106,101,106,105,100,105,109,113,95,108,108,109,114,105,115,99,109,97,107,109,111,109,102,104,101,108,107,109,104,97,95,95,110,98,135,110,101,109,100,71,109,97,106,92,108,103,111,108,108,106,101,95,85,118,103,102,94,105,97,111,102,99,109,80,109,100,97,115,109,103,111,125,102,107,93,115,98,99,99,111,100,108,111,101,104,107,108,82,103,105,111,97,115,104,101,102,100,105,103,81,89,106,96,106,98,100,96,101,100,103,97,101,105,106,108,97,112,110,99,103,92,105,94,111,107,106,106,113,99,111,109,112,110,100,93,114,104,113,104,100,108,93,93,95,107,104,107,96,106,107,105,107,95,111,96,105,93,101,105,107,106,103,102,105,98,108,85,110,104,113,94,106,108,95,115,100,107,105,112,97,96,116,97,104,110,110,102,97,109,117,108,105,100,105,85,102,106,109,112,99,125,106,94,98,99,101,97,99,98,108,100,98,103,103,109,113,104,105,115,105,105,105,103,105,91,109,110,90,113,115,106,106,102,113,111,101,106,104,110,104,100,104,105,95,96,105,99,107,99,101,113,97,112,112,121,108,102,96,103,88,105,100,103,107,109,103,102,107,99,119,108,106,103,113,98,105,115,104,95,99,99,95,106,102,102,102,97,112,103,101,103,106,100,93,110,108,99,107,101,111,99,104,103,113,108,104,91,103,91,101,102,97,111,101,111,101,96,91,109,100,101,88,83,94,92,99,106,109,103,105,113,98,100,103,97,97,98,97,105,112,108,116,102,98,103,111,109,102,106,109,106,109,94,106,89,101,111,106,97,126,95,106,98,102,118,119,108,99,102,109,103,113,103,103,105,104,107,99,109,102,104,103,100,98,98,101,112,102,112,112,100,81,87,107,104,110,105,100,104,124,98,106,98,83,107,103,105,79,103,115,102,95,109,106,100,100,106,96,65,113,102,95,108,125,108,104,95,92,88,114,121,105,96,91,109,107,116,89,86,93,94,103,96,106,102,110,131,102,116,103,90,99,108,94,111,98,93,100,110,103,92,103,99,112,98,94,106,102,111,106,113,97,92,106,97,114,111,98,107,114,91,106,106,83,105,122,104,95,104,94,104,111,98,101,98,112,87,102,110,111,97,99,113,116,94,89,100,106,94,105,104,99,102,106,105,107,95,106,104,101,113,103,107,99,91,101,106,95,100,103,103,94,117,106,101,99,115,107,119,100,107,104,109,109,94,117,97,110,97,115,92,110,106,97,103,105,95,93,106,97,105,106,106,110,104,100,108,109,106,94,104,120,105,94,106,98,92,99,96,117,103,125,102,102,96,108,109,102,109,102,115,101,97,90,92,119,124,107,108,100,113,102,103,109,105,95,94,97,107,100,97,84,108,89,102,100,91,98,98,112,110,105, +644.33356,94,103,102,108,108,117,115,106,102,105,102,117,93,107,97,102,101,108,95,106,96,112,99,101,110,113,96,90,113,104,98,101,92,110,108,101,118,106,94,113,96,102,102,117,95,123,112,101,98,99,99,100,110,104,111,93,98,115,90,111,104,99,103,110,109,110,97,104,95,110,109,108,92,98,90,96,83,117,108,101,99,109,107,98,102,117,94,104,97,99,117,122,100,110,82,117,95,88,97,106,98,96,86,98,99,125,103,103,103,104,117,107,99,95,90,110,98,91,108,130,86,106,94,109,104,114,110,92,106,102,106,103,99,96,104,105,108,120,96,106,112,97,100,111,96,96,109,96,102,100,108,103,110,105,105,94,102,103,104,109,103,100,111,95,95,120,98,96,104,96,111,101,103,97,102,102,101,94,95,111,95,117,109,105,118,103,100,96,105,95,108,95,97,113,91,106,106,95,105,108,95,94,94,112,105,106,73,112,103,102,91,110,99,102,97,96,113,107,94,103,107,99,94,100,97,99,99,105,99,109,106,106,105,104,99,109,113,105,102,109,86,97,116,98,103,98,106,97,114,104,101,110,79,106,103,107,95,103,103,105,90,123,98,107,101,96,101,109,104,97,111,110,103,95,106,99,112,103,99,98,101,102,103,115,104,101,93,100,103,105,100,105,98,96,108,102,133,97,100,105,108,98,102,93,88,101,106,103,96,119,94,83,95,91,103,113,113,99,102,108,108,94,109,111,98,103,97,105,111,112,118,89,102,105,106,96,105,103,121,93,100,95,109,94,102,106,109,103,105,95,114,101,114,105,109,99,86,94,108,111,89,103,107,92,108,125,109,101,95,102,99,108,118,90,115,70,115,101,108,120,100,115,101,103,95,108,100,97,100,103,114,95,104,106,103,90,107,101,108,110,99,101,100,96,98,98,96,104,103,95,97,92,98,110,98,97,103,104,111,100,78,93,103,97,100,107,99,112,106,117,95,94,99,86,87,104,104,112,99,97,107,110,107,108,99,99,113,102,99,111,120,102,101,108,105,95,113,103,99,91,102,102,105,108,103,108,101,104,92,95,112,112,98,95,106,99,96,99,99,110,107,116,109,98,109,101,99,103,93,101,94,108,101,110,99,103,97,112,102,107,113,82,100,105,103,102,103,106,103,103,109,105,109,96,103,103,101,105,101,91,104,89,104,108,90,114,108,90,117,94,93,103,96,109,98,135,100,94,97,106,95,103,101,105,102,90,110,115,98,103,99,105,111,92,103,94,106,103,90,122,87,95,102,93,106,97,106,109,105,94,94,89,100,101,106,109,91,104,103,117,103,106,101,109,102,109,104,102,105,99,99,112,102,86,110,101,99,87,112,79,105,103,102,113,100,114,101,108,103,93,104,109,107,104,95,113,103,104,97,97,125,101,101,93,109,103,104,102,104,110,109,113,96,103,85,113,90,101,110,109,113,95,96,101,101,105,109,109,114,110,95,102,104,113,104,123,94,105,105,94,113,99,109,104,100,109,99,97,99,87,96,100,103,95,101,103,108,110,98,103,98,102,104,97,112,95,95,100,105,109,112,102,104,107,91,101,105,111,113,88,106,98,103,115,111,110,103,109,104,102,106,91,110,97,96,107,101,91,101,108,98,100,95,106,100,93,74,114,105,107,98,103,98,106,103,99,102,98,87,99,99,107,104,94,108,112,107,108,103,110,102,102,103,96,87,103,72,100,96,108,103,110,95,106,102,98,90,105,109,96,100,94,114,107,113,103,92,97,98,106,99,105,103,107,104,97,125,100,92,117,109,100,110,105,113,93,100,106,113,113,103,102,93,97,96,98,99,117,109,95,96,100,100,109,106,112,92,98,117,108,88,112,101,99,105,107,92,92,103,100,108,78,101,99,101,95,102,103,98,119,98,79,111,104,103,108,97,98,98,105,110,121,136,97,101,95,107,106,97,102,95,106,93,105,116,98,110,107,123,113,123,103,102,107,112,114,104,113,86,99,113,111,94,111,95,105,92,113,93,104,101,107,94,98,94,85,108,102,103,96,101,100,110,98,109,98,95,101,97,109,104,114,123,104,79,98,100,100,86,107,106,104,99,103,95,96,108,92,106,87,99,103,85,110,104,93,106,105,95,107,100,100,116,109,109,104,101,102,102,104,104,105,110,102,104,100,111,88,93,104,105,113,97,100,103,104,110,108,104,109,107,105,105,110,102,106,100,101,90,107,98,105,101,110,101,111,95,97,110,102,114,117,102,112,106,85,113,103,97,106,110,106,111,105,103,107,94,107,79,106,91,105,106,116,108,94,101,86,114,105,99,103,107,92,113,110,85,98,105,97,98,103,106,118,111,105,97,103,101,105,105,107,105,101,107,112,110,105,99,98,118,127,113,105,91,109,110,83,102,118,106,107,96,101,102,107,101,99,109,87,98,105,97,95,114,96,97,118,100,97,87,109,120,112,108,111,113,104,105,91,92,111,114,91,100,97,104,101,113,105,92,106,98,109,95,102,91,100,124,108,105,117,104,97,105,106,104,103,100,97,101,96,107,100,105,93,105,99,90,95,104,105,102,104,103,105,96,95,88,98,98,100,91,102,96,109,105,104,111,89,108,106,91,112,108,105,106,107,105,100,102,78,112,94,96,99,98,105,103,104,109,88,110,100,104,93,107,83,109,99,98,100,99,114,94,113,125,107,101,99,99,106,105,107,90,94,107,95,78,105,79,98,101,116,97,103,109,105,97,107,100,105,111,101,98,115,100,95,92,93,107,122,97,103,94,94,94,108,109,112,87,101,102,99,103,106,116,100,96,102,95,106,100,88,104,109,104,64,105,92,112,106,113,98,112,112,102,114,97,116,79,96,91,103,108,95,109,113,104,108,103,117,98,107,102,103,97,98,108,106,110,91,102,105,104,101,97,91,106,113,109,84,98,98,110,108,88,116,91,127,90,99,100,110,93,110,115,95,109,106,107,109,100,110,99,98,106,98,107,114,104,112,106,111,121,117,96,100,108,111,114,95,96,110,109,104,87,112,87,95,104,98,102,108,102,91,104,74,104,98,101,100,95,100,97,107,105,93,103,93,112,106,96,93,96,100,100,93,105,93,99,92,110,125,105,101,109,117,96,105,103,97,101,103,99,96,103,95,92,97,103,100,94,106,110,108,75,84,99,103,106,96,103,107,112,95,101,113,92,93,100,102,109,111,111,105,96,113,94,106,114,99,108,100,98,91,102,100,101,103,113,102,99,124,116,91,92,111,99,97,102,80,103,99,109,100,104,100,102,109,109,87,111,96,97,110,108,130,75,101,99,96,112,114,94,108,93,87,104,107,103,99,90,101,99,101,107,103,97,100,98,98,101,107,105,97,99,94,100,108,96,104,95,109,104,100,114,100,75,100,93,107,108,99,90,114,102,104,101,98,93,95,101,102,104,93,84,95,93,111,109,103,100,95,89,104,106,107,111,95,101,108,94,93,93,105,101,102,87,108,104,99,97,108,105,99,105,93,96,99,98,114,98,111,111,105,85,105,90,100,99,104,97,105,109,74,102,103,98,112,114,108,91,94,96,111,100,97,102,95,94,93,109,109,98,100,99,109,114,104,94,106,109,96,93,99,112,102,92,104,95,113,106,103,95,97,106,111,106,106,100,97,97,100,86,106,102,98,92,100,105,118,95,112,101,99,101,102,104,99,98,107,102,104,101,104,103,113,103,80,107,106,88,100,100,92,118,102,115,101,100,107,99,105,106,100,105,110,98,103,103,112,95,109,97,104,101,102,100,93,102,112,104,102,105,105,98,99,94,87,107,104,99,100,88,95,100,105,112,102,96,103,105,95,102,105,108,103,111,96,110,109,100,111,92,114,102,106,95,110,94,98,108,113,104,92,92,84,95,95,93,104,119,110,96,99,102,94,102,100,95,113,105,98,102,111,109,94,96,107,97,111,95,99,101,102,91,105,95,101,115,101,95,102,103,115,106,105,91,110,100,105,67,98,110,98,102,98,107,105,101,97,89,97,102,99,110,91,103,102,100,95,85,97,105,106,113,101,109,99,102,98,99,89,91,100,107,112,84,87,100,135,98,109,112,111,108,109,106,104,89,103,103,110,99,110,102,107,99,102,109,93,100,102,101,94,106,109,116,106,93,99,92,99,106,90,114,90,92,100,107,100,103,91,102,100,98,111,91,96,94,93,102,91,94,101,95,106,87,100,108,100,107,98,99,103,106,100,94,107,98,99,95,111,102,107,97,98,104,109,107,97,117,104,105,90,102,109,94,112,105,103,126,112,105,101,97,99,101,104,109,98,96,114,105,106,98,87,99,102,99,108,103,97,104,104,100,116,80,114,90,99,100,105,106,100,104,104,101,87,87,102,95,110,94,93,99,97,105,98,97,100,101,99,101,109,98,93,109,83,110,95,98,87,104,103,98,108,102,115,130,108,94,106,98,94,102,105,101,98,98,98,105,100,104,115,98,105,105,111,97,94,94,107,120,103,102,109,102,102,101,102,88,104,105,102,107,94,98,66,93,120,93,98,105,96,96,100,103,98,91,111,105,111,92,104,120,89,94,107,100,99,115,111,116,90,96,102,100,93,106,104,87,112,100,109,100,108,101,98,104,103,102,97,99,104,93,105,101,91,88,97,115,96,102,99,97,99,128,91,95,87,108,111,87,112,105,97,99,101,103,92,102,107,83,105,96,105,101,109,86,102,93,107,100,90,101,107,100,93,117,96,109,97,104,103,92,120,109,100,90,102,89,105,89,103,112,90,113,91,93,87,105,114,96,108,111,111,101,104,105,104,92,94,108,98,106,101,73,92,108,101,92,110,94,113,99,99,95,99,101,100,105,99,98,101,112,81,98,88,109,97,89,135,106,108,109,93,84,93, +644.47473,98,103,99,106,94,110,108,102,101,91,98,104,112,107,110,110,107,90,106,108,103,101,108,90,91,117,99,105,93,101,103,113,96,103,109,100,110,91,103,101,90,97,97,105,111,98,98,92,96,98,103,92,125,96,99,106,81,95,101,100,86,113,101,97,113,116,100,94,110,103,102,104,85,104,102,111,93,95,109,102,115,94,106,97,102,94,104,107,102,97,104,103,95,111,94,101,109,85,96,98,95,105,99,101,113,100,94,105,102,106,102,110,105,104,82,104,99,102,96,104,86,105,108,110,105,113,110,97,117,114,102,101,77,107,101,103,93,100,93,98,112,110,100,92,96,95,104,105,113,91,93,95,106,100,112,104,106,95,100,93,98,100,104,110,87,102,102,92,111,88,98,93,94,100,112,108,112,108,104,112,110,108,115,113,105,89,90,98,97,101,119,97,106,101,101,103,99,89,94,105,110,109,103,110,89,99,100,94,103,106,100,99,98,109,103,100,110,98,104,109,110,118,95,94,99,122,105,103,125,110,92,95,120,99,120,111,105,105,99,95,94,102,111,93,100,102,103,100,112,115,101,99,94,94,92,112,116,107,97,102,100,99,109,92,83,99,91,98,91,99,110,108,100,103,90,101,103,112,104,97,103,107,110,104,101,100,88,99,99,105,109,98,95,112,106,92,103,100,75,105,96,103,97,109,118,113,98,108,107,99,98,106,110,103,101,117,121,95,104,99,102,110,91,100,106,104,95,106,113,94,109,121,104,106,107,95,98,97,97,109,109,108,89,100,103,111,106,109,99,104,117,92,105,108,96,101,109,112,98,96,99,111,93,96,86,111,107,89,95,98,92,107,102,109,111,99,103,98,109,109,122,106,105,104,99,103,103,111,102,99,102,108,105,104,98,110,103,105,105,104,103,100,109,93,113,95,86,101,125,100,93,106,99,108,108,104,107,110,104,98,116,99,98,99,97,87,105,113,109,112,104,95,101,95,93,104,98,95,100,106,107,98,105,111,75,96,97,94,103,107,89,104,93,112,110,100,94,94,103,104,104,111,104,100,110,116,113,106,104,99,104,104,107,101,97,102,100,104,99,109,102,102,110,96,100,98,111,104,98,99,100,115,106,100,91,101,94,93,120,110,106,101,98,106,95,103,105,103,99,106,109,118,99,106,97,98,105,103,99,86,103,92,99,100,97,95,104,98,96,98,94,96,104,92,104,103,106,109,103,107,103,106,122,104,104,110,95,99,105,109,107,99,95,101,99,87,105,106,107,107,105,102,100,112,102,103,112,113,121,96,86,95,95,106,106,105,97,97,102,124,100,103,96,90,89,103,97,100,102,100,110,98,101,106,110,97,94,103,103,94,95,102,102,105,92,94,108,102,98,109,101,102,98,103,102,106,100,103,105,87,102,112,109,97,100,90,109,98,104,95,99,98,104,112,99,95,100,89,95,114,109,109,88,103,106,91,105,100,95,122,88,105,104,105,107,108,106,101,110,109,105,104,99,99,106,97,103,99,108,92,98,104,104,95,112,98,116,103,105,99,102,110,100,102,99,112,93,95,123,114,90,106,94,111,114,100,102,86,95,111,108,101,103,98,104,109,102,103,105,99,105,108,94,95,100,104,103,98,93,99,95,106,105,104,107,109,96,107,82,102,109,99,104,91,106,95,94,102,99,96,104,104,93,101,115,97,100,112,101,101,109,112,103,102,101,103,100,106,96,108,108,103,103,90,116,114,103,104,107,96,117,86,93,89,109,102,107,106,108,100,104,109,101,99,100,112,108,113,100,100,98,93,106,91,101,90,107,97,99,108,103,106,102,100,109,105,95,108,105,97,102,106,107,102,90,102,103,104,102,112,93,101,105,102,99,108,104,92,114,92,101,109,112,102,108,99,100,91,103,95,102,102,103,94,116,97,99,97,98,83,106,105,106,105,101,104,98,99,113,97,94,92,103,101,103,107,105,116,81,104,103,100,132,99,101,89,103,106,97,109,103,104,100,98,106,83,104,99,102,99,100,110,109,101,116,111,102,109,93,105,89,102,105,103,106,99,102,106,119,117,87,101,104,108,103,94,105,112,99,98,106,104,91,108,104,104,96,88,118,75,94,106,109,99,113,98,91,84,100,111,106,116,111,97,98,101,110,112,103,106,102,102,106,108,124,88,102,98,95,89,122,110,103,111,106,77,91,94,101,101,105,100,94,114,113,109,88,100,97,97,101,105,94,123,106,102,102,87,106,97,102,122,96,91,109,99,103,124,95,106,100,106,109,97,101,108,101,105,106,98,85,99,102,96,109,106,114,101,92,100,110,96,105,99,101,100,83,97,110,101,109,103,108,92,106,109,103,101,112,114,102,117,98,97,100,107,99,102,103,84,97,117,117,82,105,97,111,100,127,107,103,114,96,105,99,102,102,111,91,99,92,105,113,108,105,113,96,98,103,104,105,99,113,97,102,106,116,97,99,118,113,106,98,106,102,97,102,98,117,105,98,100,98,101,96,109,108,102,111,113,106,105,101,107,112,93,100,110,87,114,104,112,77,95,85,103,96,102,106,104,105,117,98,102,103,108,92,96,91,92,106,110,101,110,104,106,109,93,102,93,119,111,110,94,106,102,100,96,103,109,96,105,116,103,96,100,105,98,119,123,108,99,109,106,91,98,106,103,78,98,105,110,110,106,101,100,107,102,108,115,111,103,106,106,103,112,97,96,101,79,101,117,106,88,113,103,104,95,91,111,109,107,102,105,96,97,117,113,85,98,102,104,106,113,110,112,88,101,99,95,108,108,93,78,103,92,71,107,92,100,108,102,108,106,104,99,110,101,103,109,108,111,120,105,109,102,101,99,100,102,102,101,101,108,112,100,96,115,97,107,113,90,104,101,112,116,102,99,100,96,119,108,99,104,110,99,100,105,107,106,91,106,105,116,112,104,91,106,107,105,117,107,103,98,98,102,113,112,113,97,101,104,95,99,105,109,82,103,98,107,114,96,115,103,104,104,117,106,100,105,101,108,96,107,100,108,109,107,99,103,104,97,102,109,95,102,99,107,109,100,95,98,94,101,89,103,107,106,106,110,104,87,113,103,109,102,109,100,87,99,105,104,98,99,101,108,112,103,97,107,102,104,100,97,106,110,91,104,102,99,89,113,114,109,120,113,100,97,100,107,108,96,105,106,103,97,107,106,108,109,112,101,104,111,102,100,101,103,105,108,99,110,98,101,93,86,105,98,95,101,106,124,95,119,105,99,100,105,95,114,99,102,101,102,94,105,103,113,102,113,94,105,99,105,100,105,111,80,106,92,74,101,109,106,111,110,101,92,111,106,104,108,109,92,103,109,111,101,109,96,109,105,110,105,103,115,106,96,95,101,98,98,100,117,98,96,93,102,109,110,98,106,101,103,112,87,106,95,100,95,93,117,105,90,106,87,94,104,103,102,106,106,94,99,110,103,100,105,100,110,101,100,105,96,100,95,99,114,118,110,104,123,111,105,104,91,99,109,104,96,105,100,99,113,103,102,103,113,101,97,87,105,101,104,103,96,102,66,102,98,108,96,109,103,84,102,94,96,99,98,89,102,106,103,101,98,107,118,113,111,102,108,112,98,105,92,110,111,106,105,117,100,104,109,99,98,100,109,105,116,93,103,107,104,105,92,92,101,112,104,87,102,102,110,96,98,84,109,114,108,98,108,110,97,91,104,100,101,111,107,109,102,105,102,109,103,96,103,106,109,103,101,97,103,110,107,98,109,101,103,103,101,94,97,110,109,107,105,95,97,95,117,96,107,99,106,110,103,113,107,109,111,107,103,103,106,97,115,93,104,106,94,107,110,108,105,96,97,108,95,102,112,94,116,103,94,90,89,101,102,106,112,109,106,100,105,116,103,94,113,92,118,105,120,112,101,98,106,105,95,103,102,117,102,111,107,88,97,120,100,109,103,104,102,103,104,117,108,103,103,106,103,91,116,103,113,111,106,103,106,103,111,101,82,109,102,96,113,97,103,113,91,104,97,102,104,92,108,102,99,99,104,101,119,109,113,102,102,105,102,98,99,101,94,104,96,107,116,99,101,103,115,98,103,105,102,109,105,105,111,99,102,92,109,105,113,106,113,101,112,95,103,109,115,98,106,97,110,106,86,106,104,100,101,114,108,101,102,95,84,107,110,111,95,94,106,111,106,108,112,113,104,98,101,103,105,103,118,94,114,103,102,108,123,100,86,121,110,103,91,113,88,108,101,104,102,105,107,105,94,107,97,97,105,94,106,112,107,102,117,110,101,105,115,103,108,112,113,109,134,103,99,111,113,110,108,114,106,97,97,113,106,103,102,109,100,106,104,106,113,94,100,110,117,97,107,109,100,100,99,109,99,115,99,112,108,104,112,92,102,107,102,104,103,97,111,98,92,107,104,103,104,105,110,108,92,97,104,106,102,111,103,99,104,112,101,96,109,113,104,99,99,102,110,106,90,94,108,113,98,98,101,117,105,101,102,106,119,103,100,95,97,113,113,97,110,110,111,105,91,104,106,104,99,95,124,110,106,109,114,101,108,113,99,100,111,100,104,98,98,109,101,95,112,118,116,106,91,100,103,107,95,100,102,91,91,97,104,100,108,92,102,107,86,122,108,114,86,100,96,104,111,109,106,96,88,98,97,112,103,96,97,102,105,99,116,101,103,98,96,103,109,111,127,66,100,109,106,107,103,95,96,114,107,97,98,106,99,106,115,112,103,104,110,93,106,87,96,108,112,87,113,99,100,100,98,103,100,83,110,109,99,102,100,73,102,98,97,97,103,113,88,94,108,106,99,104,113,90,99,112,116,91,112,103,116,98,104,112,99,109,100,101,96,109,109,94,113,79,97,106,102,99,102,96,94,110,113,111,95, +644.61591,112,96,102,104,99,98,111,116,109,114,97,99,80,113,109,96,104,125,102,100,91,98,102,101,97,89,104,110,108,99,120,108,113,103,111,90,120,100,109,94,100,92,114,120,97,104,100,92,97,89,96,92,100,100,105,86,98,94,104,95,113,124,95,100,105,113,98,97,86,94,103,100,94,99,98,103,99,101,103,104,102,97,92,107,111,101,89,109,110,97,105,103,107,114,108,96,101,104,88,102,99,113,100,101,94,98,99,87,101,98,90,103,115,105,103,90,107,95,99,91,118,103,96,99,107,116,114,95,105,114,98,104,103,98,100,113,102,83,100,91,105,102,104,104,100,102,108,106,101,103,89,99,91,97,106,104,96,108,104,94,99,115,102,104,104,99,105,110,88,101,102,103,108,116,103,100,105,98,105,105,109,109,118,96,107,110,90,109,99,96,94,103,109,116,101,114,113,96,96,114,114,96,108,100,117,100,95,104,107,100,97,105,103,112,100,89,96,103,107,108,109,101,101,92,103,91,103,103,104,94,85,109,109,111,102,108,89,95,103,105,108,108,108,102,105,95,113,99,101,113,95,100,93,101,105,108,110,111,94,110,97,104,104,107,100,100,115,100,107,105,97,99,123,100,110,102,105,121,102,104,108,99,103,104,96,106,91,100,107,98,95,119,103,72,110,111,114,99,104,99,101,104,103,89,109,111,101,103,105,95,99,113,109,112,103,86,97,98,95,99,102,110,114,98,96,105,99,112,107,107,110,100,105,101,100,103,98,108,98,104,99,102,106,102,109,103,95,108,104,103,89,107,106,107,112,112,97,114,116,80,100,126,98,105,105,106,106,104,97,107,105,105,82,107,94,105,100,109,114,106,112,110,99,104,96,97,102,111,92,95,102,101,99,117,105,101,104,102,98,105,112,104,99,98,96,105,90,110,101,104,115,89,114,104,102,101,114,94,112,96,101,100,107,95,102,117,94,108,102,99,94,105,102,97,90,99,99,104,108,104,109,97,102,106,105,124,107,110,110,100,104,91,112,106,98,99,121,98,107,104,91,99,109,86,103,107,99,97,99,99,100,102,102,126,88,103,103,106,103,96,99,115,110,104,109,91,102,107,108,97,99,100,109,104,100,98,97,106,105,100,104,101,108,96,109,101,96,117,104,102,102,102,106,104,103,108,110,110,106,87,98,104,107,95,108,105,113,101,107,120,99,99,86,106,96,112,108,98,110,107,94,114,108,104,101,106,105,114,100,98,103,99,102,101,99,117,71,95,109,105,106,105,94,122,109,102,102,101,105,96,82,96,103,98,101,96,97,100,88,115,98,97,113,100,95,106,107,99,111,111,97,104,94,92,104,110,91,87,117,102,91,108,111,102,97,105,110,105,110,98,103,98,103,114,118,93,112,101,99,114,106,99,105,108,114,102,102,100,96,98,116,106,118,109,87,120,106,98,109,101,101,105,101,113,96,98,100,104,108,114,103,108,90,110,104,102,102,106,108,95,100,103,109,95,105,87,102,107,109,105,95,109,102,96,103,106,103,114,109,110,102,92,104,100,120,108,98,110,102,93,100,119,98,105,109,101,111,108,103,99,103,99,84,96,93,104,101,108,98,106,99,91,93,97,105,107,104,98,95,108,104,112,103,95,91,93,121,105,144,122,112,115,95,103,101,96,111,106,113,110,96,107,105,108,109,94,106,119,91,96,110,100,106,112,113,103,103,90,99,99,114,105,106,102,88,92,95,95,106,113,109,106,109,104,87,104,94,104,110,94,107,134,95,95,119,110,115,98,106,100,107,117,97,110,101,100,107,102,102,96,98,99,100,98,106,108,106,106,100,104,107,117,102,100,113,102,106,91,99,112,98,117,103,102,107,98,95,111,110,105,110,105,99,104,94,105,107,102,113,110,107,112,109,115,94,101,105,94,99,104,110,100,106,111,97,115,117,84,106,103,113,100,114,105,92,112,97,103,106,121,117,94,120,100,93,100,113,114,111,102,115,107,106,103,102,108,105,121,96,107,82,112,103,105,106,96,96,114,118,108,101,110,116,101,104,107,101,109,90,109,100,102,95,100,99,91,97,99,114,101,114,105,105,116,99,106,91,115,102,114,97,105,110,115,105,96,104,95,100,84,96,113,96,103,107,107,104,110,105,106,109,106,101,104,113,105,105,107,105,91,98,98,105,99,104,92,96,96,98,105,107,102,104,98,103,101,100,96,95,94,104,112,98,111,114,104,102,96,110,99,105,108,106,109,116,94,105,100,96,102,94,103,94,98,111,102,100,110,93,110,97,104,113,112,98,96,105,106,80,94,96,98,95,88,93,109,111,118,117,101,110,100,107,100,96,94,113,104,97,116,111,108,97,101,103,85,112,107,125,113,101,122,114,94,96,98,112,113,105,101,91,107,91,103,104,107,102,97,105,97,103,104,92,96,104,95,102,113,95,104,81,100,84,96,96,119,94,91,103,106,104,95,108,100,111,93,100,111,107,115,93,95,99,112,105,107,97,107,105,105,104,111,91,98,108,99,102,103,113,95,110,95,99,106,112,109,99,108,99,105,108,109,108,109,95,109,99,99,101,103,99,109,103,116,98,97,112,99,117,99,102,110,107,105,105,102,102,97,99,114,109,87,113,103,109,101,114,104,103,100,117,107,112,102,113,98,105,109,109,100,99,109,106,108,101,105,115,94,97,98,99,98,100,95,109,108,103,95,106,101,102,104,109,95,95,109,104,106,102,109,96,92,118,99,99,112,99,110,105,113,115,94,121,101,113,111,93,112,110,95,86,106,94,104,104,99,113,107,111,107,99,102,101,98,99,103,109,105,115,111,122,102,124,102,113,96,106,103,86,107,102,98,107,102,98,108,118,122,114,110,108,102,118,112,104,106,111,103,102,105,101,112,113,106,105,97,119,108,101,92,99,110,108,105,105,109,107,107,94,115,112,95,101,100,108,105,103,112,105,106,96,105,107,107,106,95,101,99,106,115,101,104,112,107,111,117,106,96,101,114,106,98,114,111,100,106,113,96,98,104,97,133,94,105,99,97,105,101,102,101,105,105,112,108,103,112,107,106,98,106,111,105,110,99,113,111,106,97,106,106,97,101,107,105,100,91,97,109,104,99,108,106,111,104,100,102,99,98,99,101,93,116,104,116,102,102,101,117,96,110,110,109,101,109,108,116,108,89,103,103,109,102,96,99,106,101,104,113,104,99,111,102,98,102,100,107,105,106,114,96,105,91,107,106,110,109,105,116,114,107,99,102,98,108,97,121,100,106,99,110,112,87,119,104,100,114,111,87,109,111,100,108,78,104,105,107,75,113,110,90,90,109,85,99,101,103,103,103,125,113,97,121,105,101,109,99,109,97,103,116,99,109,100,113,109,111,100,126,109,100,106,104,104,108,99,110,88,103,107,109,93,106,101,110,109,109,96,102,96,102,102,120,100,91,91,109,105,117,100,104,95,102,94,106,98,100,113,101,104,96,109,102,104,110,109,105,100,112,109,106,116,106,120,113,102,106,116,104,104,103,103,108,100,117,98,99,115,101,103,106,124,112,103,136,104,116,97,110,128,109,97,97,105,113,103,106,105,107,100,98,95,103,111,113,93,94,101,105,79,102,98,98,88,106,92,107,94,95,104,109,102,109,109,116,102,95,92,97,112,110,99,109,115,92,97,95,96,106,106,108,111,107,108,108,103,62,108,99,95,100,106,107,105,103,117,88,99,109,98,97,114,94,99,103,100,101,106,113,110,94,113,108,91,95,109,106,97,102,107,100,90,98,105,103,109,102,115,111,104,104,94,113,98,93,119,98,101,101,102,105,98,123,96,105,105,98,104,120,103,109,95,92,94,106,69,104,102,111,106,106,106,89,97,102,113,102,106,98,104,115,101,96,94,108,102,95,85,96,103,101,109,113,111,108,107,111,108,102,107,111,108,103,99,123,92,112,96,102,97,108,115,117,99,103,102,92,107,117,102,105,113,100,97,103,112,99,115,96,119,103,120,106,109,107,104,105,115,98,104,106,99,106,104,108,108,110,112,103,104,94,108,105,120,96,113,98,112,96,103,93,105,101,109,102,96,108,104,102,94,113,98,98,107,98,106,107,102,94,107,108,71,98,94,102,112,99,103,89,106,125,106,95,93,110,100,100,104,98,101,117,107,108,102,96,107,111,97,92,99,108,106,107,97,99,97,102,105,105,98,119,101,108,112,103,110,110,104,115,101,105,104,117,106,104,95,112,103,95,110,94,103,104,106,110,100,110,113,98,109,108,100,108,103,111,101,104,99,97,97,104,92,103,107,94,100,84,98,107,118,108,98,108,107,111,98,105,96,104,108,103,105,103,105,102,98,100,102,102,87,113,91,92,105,103,104,111,104,106,113,109,91,101,110,105,102,99,95,95,101,113,107,109,103,103,103,93,89,101,105,103,89,105,96,107,106,101,107,108,110,104,105,98,110,108,110,107,107,101,100,108,100,102,106,95,104,87,110,94,100,92,83,102,102,96,95,104,70,110,85,99,99,93,116,100,109,87,102,103,111,105,108,104,99,109,118,110,102,101,101,95,96,95,105,98,99,106,102,98,106,99,98,81,101,105,100,107,90,116,96,106,103,117,115,113,101,99,111,99,99,108,103,84,104,103,126,105,112,119,106,75,101,116,98,98,115,104,101,98,119,112,105,108,110,104,104,105,107,109,95,109,102,119,111,109,81,96,117,116,108,112,108,100,116,110,103,99,86,90,100,105,101,106,111,87,105,121,125,108,96,110,108,105,105,100,127,104,75,113,99,111,115,96,96,111,110,100,88,107,91,111,145,108,100,121,101,108,99,94,117,73,110,105,99,94,106,95,108,110,107,84,102,112,104,107,109,112,104,123,101,100, +644.75708,99,99,99,86,95,82,94,86,96,83,91,98,111,108,97,103,95,113,110,106,108,105,97,103,95,89,111,120,96,96,108,97,102,108,108,101,111,96,109,105,102,101,99,116,97,106,106,83,98,99,108,107,101,105,97,106,108,104,101,110,111,95,92,84,109,102,98,98,114,101,107,105,104,94,106,105,95,96,108,102,107,97,66,97,106,105,90,104,98,100,102,113,89,107,101,101,107,93,105,101,119,103,91,91,101,99,95,103,101,98,106,97,99,110,103,105,105,101,102,102,110,96,103,105,115,109,114,104,101,122,102,108,88,115,108,96,96,118,112,107,111,102,113,103,103,108,111,113,97,101,105,96,113,122,102,106,105,100,99,100,107,98,103,106,103,103,101,99,99,98,94,95,98,93,99,113,106,91,106,91,106,110,88,104,104,104,98,85,104,109,97,111,101,108,103,92,104,100,110,105,98,105,109,109,116,100,102,107,104,94,106,99,105,103,100,98,114,103,98,104,102,109,108,110,108,105,108,104,116,98,106,109,98,96,97,108,99,101,100,96,90,106,113,105,98,113,96,94,106,112,103,99,107,103,98,93,91,105,113,113,102,111,97,106,84,116,101,118,96,96,95,98,94,108,102,96,101,107,95,100,111,89,105,93,101,103,110,108,109,101,104,102,100,127,115,98,116,94,108,107,102,92,100,113,99,107,113,90,96,104,101,103,107,107,99,96,92,113,109,101,111,103,103,105,102,106,109,110,109,95,108,97,110,97,88,105,106,96,97,112,104,105,101,95,100,105,107,109,103,118,100,106,108,102,107,96,108,111,106,107,107,91,96,117,99,111,100,113,101,111,102,100,101,107,107,101,104,105,109,112,102,110,81,107,112,100,91,96,106,93,114,82,101,94,69,103,96,104,109,102,111,121,104,108,108,105,98,101,111,97,99,97,108,103,99,106,103,94,95,106,98,103,115,97,97,104,108,100,92,110,113,97,108,109,105,94,105,100,105,110,100,103,101,104,109,109,92,94,99,103,97,106,100,107,102,98,109,102,108,109,98,104,98,111,122,106,103,111,113,109,95,102,100,113,97,89,102,115,120,109,109,111,102,101,114,102,116,91,99,109,103,101,107,105,92,100,91,112,102,102,106,107,102,102,116,104,104,113,103,102,100,94,104,110,104,98,108,112,116,91,111,113,97,106,100,105,111,99,94,106,103,110,97,95,93,111,98,108,104,121,96,106,103,115,102,94,104,89,116,117,112,104,119,100,105,96,107,105,100,101,108,109,105,105,99,104,107,109,79,105,94,99,104,102,121,93,107,96,106,111,113,109,98,118,95,108,95,98,105,110,111,90,97,114,117,109,110,97,109,102,72,110,105,92,98,106,106,119,106,109,104,94,111,107,106,101,111,104,104,107,102,102,103,97,105,110,105,98,103,96,104,98,103,95,97,112,103,108,111,107,96,108,105,97,94,100,101,107,108,102,110,107,105,95,103,109,102,113,94,83,108,106,100,96,103,112,112,105,102,102,113,106,117,99,99,106,94,116,108,111,118,102,103,94,91,107,105,104,105,99,98,101,106,116,97,106,115,94,100,97,106,108,104,106,114,108,107,104,116,95,99,114,103,99,94,99,112,110,115,99,96,90,104,114,108,92,94,109,111,114,108,103,94,104,103,91,103,106,116,91,97,111,104,108,109,108,110,102,108,109,104,87,99,122,115,96,86,91,98,106,107,107,107,102,95,98,101,109,113,102,105,99,104,100,108,102,108,94,107,117,105,105,113,100,94,95,98,104,102,97,91,103,97,99,95,94,104,104,103,95,102,109,86,97,104,101,100,75,104,104,110,109,96,105,114,98,107,122,103,97,97,101,103,102,105,117,117,110,126,109,113,101,106,110,95,112,110,99,112,111,97,102,102,95,113,115,116,96,114,103,109,96,102,103,99,102,105,112,97,108,95,99,107,120,107,107,112,102,120,102,104,103,100,112,100,108,104,107,100,113,108,102,109,113,78,100,98,104,106,100,109,110,105,112,119,108,107,101,101,100,103,70,104,104,102,104,95,95,109,100,91,104,114,103,96,99,104,102,100,99,118,103,109,117,103,97,103,106,103,99,95,109,109,104,112,102,93,110,87,96,122,106,104,100,95,104,106,127,101,106,95,106,107,105,99,102,106,109,105,100,106,107,117,104,114,104,99,102,101,103,109,99,110,106,96,107,111,101,88,109,101,109,102,101,91,102,126,95,110,108,107,95,103,128,100,95,96,99,107,117,103,102,92,105,109,107,111,100,77,106,101,108,99,101,92,98,115,97,99,110,106,99,96,103,112,106,108,108,91,112,101,99,106,105,125,107,113,105,114,110,109,105,93,103,94,105,104,109,111,113,111,107,116,110,105,92,111,98,108,100,101,105,102,107,104,106,102,104,95,97,114,116,113,99,104,92,97,123,112,119,96,107,93,103,102,105,91,96,104,103,108,111,106,107,101,93,107,98,101,109,110,109,105,109,97,109,107,106,104,89,98,105,100,101,103,110,112,115,95,107,113,108,98,89,103,81,102,102,102,91,100,112,110,113,107,107,89,105,100,105,104,96,103,107,95,106,100,99,91,107,105,120,117,110,105,106,101,106,115,108,106,96,102,100,95,102,103,102,110,95,99,104,120,98,97,97,95,104,109,98,104,109,113,106,95,95,111,104,98,108,104,97,110,98,92,95,106,101,112,130,100,98,102,101,104,97,113,110,99,93,105,97,106,100,112,104,109,101,91,109,110,110,106,100,102,99,101,104,88,104,94,103,96,111,109,109,107,104,106,106,106,110,114,90,114,107,103,103,96,107,103,109,100,104,109,99,89,111,91,121,115,104,101,115,111,91,113,97,107,107,108,112,99,107,100,84,99,112,103,98,120,99,119,94,111,104,102,108,101,103,102,99,107,104,107,107,100,101,112,111,110,109,107,91,107,101,109,103,93,92,97,98,96,99,101,97,96,105,87,112,114,110,109,103,106,102,101,98,106,100,96,100,105,97,99,102,101,105,108,108,99,97,102,100,106,99,97,92,100,98,91,110,94,103,95,108,100,99,110,98,110,107,116,101,105,105,112,98,110,95,104,98,106,111,111,102,100,101,100,108,99,91,106,92,107,126,104,110,106,100,103,102,99,100,89,98,102,100,114,108,95,101,100,109,100,116,89,107,107,105,94,108,106,93,106,98,100,80,104,102,122,125,98,100,100,113,100,106,107,105,111,92,108,105,104,101,107,93,92,104,104,110,104,106,105,97,99,111,109,109,98,89,99,101,109,100,112,86,88,106,100,111,101,98,121,119,97,98,113,102,87,95,109,109,105,97,101,112,105,94,97,100,95,100,84,110,96,98,101,85,110,109,109,101,101,91,104,102,97,102,98,102,93,105,91,95,109,108,103,100,112,124,120,89,102,100,106,110,104,110,118,102,104,101,102,104,94,105,106,83,104,101,101,99,98,96,99,100,100,106,117,101,101,112,107,107,107,105,94,105,112,105,101,109,107,95,105,98,92,111,100,108,108,102,108,109,95,106,97,98,113,90,97,100,113,95,98,101,107,90,96,110,107,93,97,102,77,114,97,109,108,106,110,102,92,94,110,124,98,100,94,113,106,104,112,98,97,97,107,108,110,96,104,102,77,94,100,99,113,109,96,103,95,90,97,99,100,98,107,99,93,91,102,108,92,98,107,93,106,100,108,83,100,105,105,96,93,112,102,100,93,100,92,108,114,104,106,109,103,116,107,100,102,104,127,100,104,100,103,99,103,102,106,104,108,95,95,108,108,105,101,89,108,101,108,106,99,89,95,106,98,94,98,115,107,92,113,103,102,111,103,103,106,95,94,102,98,99,104,98,98,111,108,95,110,96,99,88,91,113,97,107,96,105,107,115,116,106,104,93,108,98,114,106,89,93,105,110,106,94,104,104,111,107,97,110,98,100,96,81,103,97,102,106,104,101,101,109,109,101,101,108,92,112,112,105,90,105,106,97,93,98,99,99,95,121,110,110,103,107,104,101,96,97,112,143,110,109,109,91,90,103,92,101,102,109,101,107,104,96,101,118,109,104,105,102,86,96,97,108,100,98,104,104,107,117,98,108,107,95,100,100,98,102,106,105,99,114,103,100,107,106,102,85,94,95,108,98,100,97,100,106,97,100,98,109,102,111,95,99,108,102,99,112,104,112,100,85,105,106,104,103,95,98,109,104,118,102,102,104,108,104,107,100,102,102,100,112,112,106,108,85,100,100,98,99,95,104,102,112,102,103,100,101,93,100,102,108,101,121,100,112,112,90,122,94,102,92,108,103,109,98,100,90,101,110,103,107,95,113,93,102,107,109,100,101,101,105,93,92,96,108,102,116,103,102,99,107,109,105,90,95,99,115,103,85,109,106,105,87,123,106,97,96,98,101,103,99,95,109,113,96,103,95,108,100,97,93,98,105,108,96,101,98,105,113,101,102,125,102,98,100,102,109,107,106,99,105,97,103,96,91,105,97,119,83,114,100,108,95,113,107,98,115,111,107,118,67,102,111,100,102,97,111,106,109,99,99,101,95,97,88,103,99,115,111,98,104,105,74,94,97,94,105,95,112,95,106,99,100,93,94,108,98,101,102,111,113,121,113,95,116,98,102,89,90,106,110,107,90,98,100,110,96,93,111,111,108,105,109,108,105,104,103,104,102,105,92,102,93,108,105,103,96,105,101,91,97,102,105,99,90,103,125,103,107,92,99,100,91,99,106,103,98,98,110,89,103,98,95,103,104,101,110,110,102,106,103,104,119,105,109,105,98,111,95,114,97,96,112,92,102,110,111,109,93,87,88,118,92,116,99,93,101,112,105,97,97,107,99,99,91,107,103,102,106,110,105,108,101, +644.89825,112,100,108,97,98,106,104,105,100,87,82,99,96,107,109,119,96,114,70,83,107,101,113,117,103,119,119,96,92,105,99,107,116,102,104,100,98,99,108,104,108,74,122,111,101,79,104,108,99,106,98,104,91,74,111,95,89,105,112,91,105,100,101,78,111,111,92,100,102,102,109,97,103,104,97,117,93,91,115,91,110,105,98,98,103,102,92,108,100,91,104,103,104,82,97,106,110,110,98,94,110,95,105,99,102,100,98,106,112,105,102,104,99,107,106,101,108,110,101,79,113,127,116,104,111,115,110,95,110,106,106,109,105,102,105,100,105,107,123,88,99,95,97,89,103,105,113,95,94,113,99,87,112,98,112,108,102,79,104,102,87,101,110,111,99,99,108,95,105,97,107,107,101,101,110,111,104,93,102,105,115,99,104,107,109,98,98,88,103,97,98,117,100,103,114,102,102,101,107,110,112,101,106,110,112,104,103,105,107,122,94,109,117,102,106,98,110,110,101,112,104,105,102,109,104,119,96,105,108,124,100,107,104,112,109,117,109,107,108,101,105,105,108,104,114,95,93,98,91,100,96,104,107,94,102,104,97,99,99,107,99,105,112,103,105,113,116,105,109,113,110,123,99,97,108,104,106,110,97,99,109,98,110,109,108,95,97,109,108,103,108,95,101,106,100,106,105,96,105,101,120,115,104,118,96,104,116,96,99,104,100,107,106,115,103,104,98,98,99,104,98,99,103,104,108,105,111,101,114,103,104,99,111,111,108,92,113,111,104,102,109,109,103,112,108,117,101,109,119,104,107,95,106,112,100,110,103,115,96,108,96,88,98,114,103,102,110,104,101,103,101,90,107,122,100,104,120,98,104,102,102,109,98,104,105,91,111,100,106,97,116,96,95,114,103,100,94,101,119,110,97,97,125,90,104,111,102,109,103,104,106,100,108,97,102,101,105,97,109,85,105,105,95,102,107,109,94,86,95,115,99,92,115,106,96,105,104,95,99,99,104,118,106,99,79,106,113,103,99,111,104,111,94,113,107,108,100,101,97,101,96,111,105,105,103,109,113,105,91,96,96,108,101,100,93,97,106,116,100,125,105,115,106,105,92,106,107,102,97,113,94,111,106,100,100,114,101,106,105,104,103,103,115,105,84,104,94,105,113,103,113,106,91,111,111,100,106,103,108,104,108,112,107,94,106,103,118,106,110,105,103,104,103,104,96,81,110,105,109,115,109,98,112,115,99,99,101,98,107,114,93,101,108,111,113,95,108,104,95,103,107,108,106,114,105,110,109,107,106,92,99,96,98,117,97,112,118,107,104,107,111,100,109,95,96,105,106,103,112,94,105,96,105,107,115,105,99,110,100,115,97,106,105,94,107,106,111,105,108,92,112,124,107,104,100,101,107,83,99,74,101,108,105,114,98,92,101,109,79,113,108,104,98,96,107,105,104,107,115,106,95,107,101,107,91,90,92,103,105,97,79,121,112,105,108,109,112,117,112,104,96,102,99,104,99,103,110,99,118,120,114,102,118,114,95,106,113,109,105,95,105,103,108,106,107,110,111,99,106,105,73,105,96,105,101,88,110,114,100,102,98,96,107,113,110,107,106,118,101,111,108,104,109,98,86,105,109,116,95,116,99,104,103,106,99,114,107,110,104,109,108,105,101,107,91,106,107,102,109,119,100,90,118,97,115,115,114,102,98,113,103,100,104,108,107,108,105,104,115,107,98,109,103,105,105,98,85,106,95,103,107,104,110,105,113,104,126,102,108,104,98,95,102,112,88,96,101,110,92,99,100,106,103,111,108,99,108,108,120,107,106,96,103,97,106,92,104,109,103,103,110,104,116,102,107,114,115,78,105,89,108,110,98,106,94,95,119,95,109,121,100,98,108,113,92,98,108,108,116,106,100,103,113,102,109,89,108,98,103,118,103,101,88,110,105,97,94,104,95,96,99,107,104,99,91,104,105,87,66,107,106,109,99,102,96,101,124,115,103,101,105,109,99,114,107,100,95,108,100,109,109,101,102,100,103,86,106,117,97,83,96,100,93,92,109,115,99,106,100,100,95,116,96,104,107,103,94,108,120,108,117,99,111,106,102,119,94,98,107,99,110,93,100,113,102,113,110,94,100,113,113,106,100,102,103,106,111,112,103,119,103,112,104,100,102,102,82,105,96,101,108,108,97,98,107,106,105,107,97,115,107,96,115,108,115,115,104,103,89,101,101,100,105,98,98,112,107,99,107,107,107,106,98,108,94,99,96,103,112,111,103,96,114,107,114,112,123,95,96,97,100,120,97,108,107,98,113,106,116,131,113,108,105,94,109,112,102,95,95,87,116,106,117,108,86,94,118,108,107,111,109,105,89,106,98,109,108,122,105,129,102,107,104,102,97,117,104,121,106,105,97,106,102,105,117,105,107,110,114,97,109,82,98,115,102,107,101,113,100,102,98,92,105,108,88,102,96,105,103,113,112,87,102,99,92,97,107,102,98,98,116,95,113,101,109,107,88,104,112,107,121,114,112,124,97,105,114,115,104,115,104,102,103,100,113,102,104,109,106,108,110,105,120,89,94,117,103,96,99,106,107,97,108,99,107,91,105,100,107,93,110,99,116,102,94,112,101,99,108,128,101,95,95,98,107,94,99,106,110,98,106,95,106,98,108,85,106,110,107,98,108,99,106,106,95,102,112,107,95,100,130,99,108,109,91,110,101,105,109,108,96,99,99,92,103,107,98,111,100,101,96,105,104,109,103,109,106,105,101,107,98,115,111,110,109,117,102,101,111,119,96,111,112,108,108,104,106,105,110,103,104,85,95,110,100,103,96,124,104,108,103,99,107,99,106,103,85,106,109,98,100,90,102,102,108,102,102,108,101,78,114,107,103,100,95,95,100,117,126,121,99,102,104,106,111,115,99,98,113,101,92,103,92,111,96,111,102,106,108,103,98,99,107,105,102,113,97,106,95,101,113,101,88,108,104,102,104,105,116,102,101,103,103,101,112,110,109,123,98,103,101,92,103,108,107,110,102,102,102,109,109,102,104,106,96,107,105,102,94,98,104,106,105,104,104,105,95,104,105,95,114,110,102,103,102,97,124,132,99,104,87,100,91,109,105,105,96,101,107,92,105,99,106,110,95,100,100,102,98,97,100,107,114,113,95,108,112,103,106,112,94,109,97,108,104,119,108,101,111,100,121,96,93,105,105,96,103,116,86,117,102,102,93,100,96,100,104,121,102,108,106,111,103,115,107,100,116,105,102,90,102,94,106,92,109,108,102,96,112,105,111,99,113,101,106,109,99,103,111,114,94,109,95,101,114,102,93,109,109,97,103,112,105,107,115,105,111,96,103,96,106,107,114,96,98,110,91,98,103,107,104,111,98,79,101,100,97,111,110,101,104,106,101,102,97,108,100,95,96,103,107,92,110,104,95,100,108,92,111,96,104,108,87,86,112,101,106,102,99,94,113,107,94,102,98,117,98,111,129,97,105,104,102,109,96,86,103,101,108,96,123,103,77,108,106,114,104,90,94,107,99,107,116,103,111,105,95,105,99,111,112,101,109,101,100,100,101,100,99,93,98,87,106,110,105,108,101,103,108,102,100,98,100,93,105,100,109,99,106,107,105,95,103,99,80,132,116,95,106,112,99,100,100,106,80,103,100,120,101,112,103,104,114,106,101,100,120,114,115,112,95,104,113,103,118,109,106,105,82,101,107,99,106,104,109,110,112,139,102,106,100,95,106,100,98,109,99,107,102,97,97,105,103,102,103,90,101,101,114,94,95,97,108,103,105,97,107,103,111,102,118,101,113,101,100,112,102,103,90,101,83,80,109,101,85,91,111,98,105,91,102,105,101,110,85,95,104,105,94,96,102,106,93,92,103,103,98,105,78,104,100,112,104,115,90,110,113,105,103,104,113,105,109,92,101,100,107,117,101,107,112,102,108,107,102,106,96,106,99,102,113,102,107,101,104,100,101,110,102,102,105,100,86,112,104,104,101,102,108,102,104,105,98,105,111,105,106,102,109,104,112,97,96,98,112,119,95,105,109,109,67,104,86,95,90,96,110,99,110,90,99,104,106,104,100,121,97,113,111,96,106,101,102,106,108,105,111,112,111,98,112,100,102,134,104,98,111,113,91,109,97,112,95,93,96,103,88,97,93,98,108,108,104,86,105,96,98,109,95,110,113,105,105,96,104,89,110,104,95,113,105,95,95,98,96,102,112,104,98,113,102,92,102,106,99,81,95,96,100,104,106,106,110,95,103,102,102,100,104,138,117,94,101,96,104,91,106,102,101,122,115,112,108,109,107,115,112,108,109,102,98,104,106,113,98,105,105,102,101,101,120,100,91,108,105,106,96,112,95,95,101,101,99,103,100,107,98,96,113,98,92,109,103,68,101,99,98,106,108,113,121,95,95,98,92,95,76,88,113,109,101,96,100,94,102,100,94,110,109,101,103,102,112,107,105,103,110,109,76,104,101,105,105,103,102,92,95,109,87,109,101,120,102,101,117,108,101,110,101,108,108,99,98,105,105,93,103,90,92,102,98,103,124,125,101,98,104,97,91,89,105,110,94,99,112,103,98,89,106,104,96,105,99,99,103,107,100,105,105,112,102,105,104,117,98,97,103,92,106,106,101,98,109,113,100,102,107,91,100,106,103,95,92,92,106,105,111,102,99,101,103,104,108,113,100,98,114,102,91,100,108,102,93,95,112,100,80,104,106,103,106,100,98,98,95,106,73,107,106,101,110,112,110,120,95,107,103,106,95,102,96,108,105,106,95,110,97,117,101,116,110,97,102,105,100,103,102,104,97,99,97,87,97,96,102,113,89,98,101,93,105,108,97,102,114,106,120,107,106,106,116,107,106,97,112,91,106,99,108,85, +645.03943,105,101,101,100,93,82,100,110,114,105,106,105,91,109,103,98,90,98,94,86,121,99,93,92,100,116,98,95,111,92,96,105,113,110,105,109,99,102,104,112,89,89,116,91,101,100,96,91,81,109,116,86,112,91,106,97,99,100,84,88,104,101,100,97,99,107,106,98,102,75,92,110,103,95,91,112,101,98,114,100,111,107,90,106,111,99,95,96,111,95,97,104,108,98,104,101,104,94,98,96,104,99,123,107,102,100,89,96,110,75,102,93,106,106,93,110,111,96,107,101,101,115,108,121,94,111,109,115,98,102,98,95,80,107,100,119,96,102,104,120,92,106,98,120,93,101,105,100,118,104,105,105,112,102,98,102,104,107,114,102,77,121,105,101,108,95,81,98,114,108,93,104,108,92,103,95,106,98,104,98,94,99,108,92,104,93,99,97,103,113,98,100,102,87,92,95,109,104,110,101,97,102,94,104,106,93,96,86,102,103,102,106,99,108,95,101,96,114,101,104,102,108,112,96,94,108,82,102,119,107,100,96,101,92,102,103,105,95,103,108,96,97,113,107,97,94,99,103,101,92,110,112,95,101,102,101,100,108,93,64,91,112,99,92,91,90,108,98,114,104,86,109,103,113,113,102,94,106,95,97,107,104,108,108,103,113,93,99,92,101,97,107,119,110,105,111,113,97,105,105,103,96,101,110,99,105,106,108,101,115,100,74,105,104,103,99,103,118,114,103,110,87,103,116,103,103,100,90,110,102,102,99,104,106,114,103,98,99,110,113,112,101,106,96,104,114,97,102,97,99,100,103,110,115,95,114,104,105,98,103,100,106,96,114,110,104,91,116,93,102,101,102,105,115,104,115,101,111,107,97,99,113,97,102,101,96,103,95,103,98,129,103,90,114,110,103,100,101,107,113,104,107,95,105,103,107,116,98,117,102,99,98,114,101,101,101,100,100,97,93,95,98,103,109,113,94,104,97,94,102,100,103,96,102,96,90,101,103,97,103,98,98,101,108,105,96,95,96,102,111,103,96,102,91,113,97,105,99,109,111,114,101,104,102,98,103,98,111,113,99,102,102,99,100,89,109,110,107,116,95,97,106,102,98,102,101,101,98,99,94,98,107,99,106,96,101,103,97,98,102,99,102,110,113,102,103,100,109,97,117,99,99,97,108,85,101,125,100,109,90,109,72,102,105,106,107,102,104,110,101,98,92,106,107,105,108,95,101,100,109,94,109,103,124,121,105,109,103,107,98,98,100,110,113,105,104,106,98,103,97,104,106,79,100,108,104,121,116,95,102,91,93,100,106,108,107,100,110,99,102,111,99,106,91,105,104,102,118,97,101,96,108,104,104,107,100,113,105,108,108,89,99,118,104,110,109,97,81,100,102,93,97,104,105,107,100,114,85,110,104,100,104,100,98,110,102,98,102,104,109,101,98,113,109,95,102,102,113,114,110,105,100,101,97,92,92,104,109,113,98,96,102,102,108,92,103,106,106,104,105,111,107,117,91,95,101,116,101,101,114,107,102,95,107,107,103,101,105,106,113,104,101,107,92,100,106,108,108,104,108,97,98,108,128,111,104,105,142,94,104,113,108,96,98,110,107,108,116,109,100,106,99,120,113,90,94,104,105,107,104,114,105,105,105,103,95,107,110,110,117,110,95,96,105,91,100,99,98,109,95,105,87,111,102,111,104,96,120,94,105,104,108,100,92,102,95,116,97,94,107,101,94,103,108,97,96,106,105,118,95,96,107,108,122,104,105,88,105,95,101,96,106,110,119,91,102,109,110,107,118,107,113,108,122,106,109,102,110,97,103,100,97,103,96,109,95,97,105,109,106,104,101,110,117,95,110,106,115,106,98,91,110,107,115,105,109,102,115,109,92,116,98,100,101,99,98,113,105,99,106,109,107,83,105,106,104,103,112,100,107,110,95,95,107,91,100,83,94,117,105,113,96,109,102,105,86,95,107,98,110,110,109,93,111,113,94,115,71,102,113,94,120,107,107,111,90,84,112,103,102,99,119,99,114,113,94,106,91,105,101,108,99,103,103,108,102,99,113,101,100,105,99,103,103,93,95,100,109,97,106,109,96,115,104,103,95,92,100,99,92,106,102,115,94,99,98,119,101,107,105,102,106,108,101,105,92,119,103,96,116,92,88,103,108,111,107,125,94,103,114,105,101,99,101,114,88,91,106,100,105,76,91,97,96,103,109,107,104,103,117,97,102,102,101,106,107,103,102,106,103,93,92,106,92,96,97,99,111,101,98,98,94,100,95,102,103,117,102,82,103,97,110,101,101,95,103,109,112,92,110,99,115,96,105,112,109,106,101,97,101,110,108,108,107,112,89,126,124,108,87,106,104,112,119,95,117,113,100,111,99,106,110,83,91,98,106,92,104,94,106,93,104,98,108,92,105,93,104,114,102,94,114,110,93,94,108,113,104,110,106,98,113,103,100,104,71,99,97,111,101,102,104,106,115,100,90,101,106,114,112,104,109,103,100,112,105,105,106,106,110,101,110,106,109,115,107,103,103,106,104,103,110,117,93,98,103,109,101,106,108,109,108,103,104,100,102,100,100,104,106,99,97,98,101,103,97,116,89,100,94,99,109,114,102,106,107,102,122,96,115,87,90,109,90,110,85,105,111,102,97,101,108,105,113,106,92,101,96,113,98,110,100,98,102,102,115,111,100,96,112,109,101,105,117,95,90,106,101,105,106,113,107,117,97,113,95,100,126,116,110,104,93,105,100,113,109,84,96,98,110,109,107,91,107,102,90,100,72,105,103,103,111,99,111,113,91,91,115,111,90,102,94,111,106,108,105,106,101,111,110,104,103,104,107,98,113,91,111,98,112,124,100,106,108,99,97,104,103,100,103,100,102,105,111,110,106,100,104,106,100,107,102,99,106,95,95,103,106,97,97,107,96,91,100,100,104,99,107,111,111,97,109,95,97,90,98,100,104,111,103,99,115,104,98,110,98,106,101,101,101,112,104,98,104,112,105,109,104,106,101,99,103,99,96,106,101,107,95,106,107,105,108,108,107,107,108,118,101,108,102,79,105,104,109,87,101,100,102,96,86,94,120,104,102,100,100,104,98,113,105,98,112,105,93,104,96,104,101,100,99,93,96,104,106,98,113,111,102,97,82,98,74,111,96,88,101,103,103,112,105,102,102,98,109,102,97,109,109,113,105,98,103,100,101,91,100,105,106,104,112,110,102,91,102,107,87,98,128,108,99,101,102,107,113,119,102,104,120,104,104,96,95,104,101,113,103,104,111,106,96,104,105,107,103,114,118,103,113,99,95,94,104,99,103,113,125,80,97,103,103,66,106,101,92,95,102,106,97,111,100,111,92,101,97,97,106,117,95,96,101,100,120,91,119,97,116,107,95,102,114,96,110,100,102,94,97,103,103,98,105,102,102,98,103,93,98,76,103,92,97,98,112,97,105,82,101,95,111,90,104,105,99,102,102,96,90,102,99,99,106,106,97,104,110,105,99,65,95,97,94,104,100,88,108,100,107,108,104,93,97,109,103,110,117,109,102,102,92,115,96,115,91,95,106,96,110,112,112,103,95,99,104,105,104,98,97,97,111,95,98,108,94,102,108,99,98,104,101,103,98,100,95,111,107,98,106,112,98,105,104,97,107,99,102,109,94,105,116,100,99,111,106,92,95,98,102,112,98,110,104,95,103,115,97,112,106,103,104,101,102,97,105,100,109,116,104,104,100,104,100,102,104,91,94,102,104,100,105,107,104,105,96,106,88,88,98,106,108,106,98,101,108,92,112,90,105,99,113,97,98,102,100,116,99,119,98,99,101,97,104,91,105,108,93,98,94,87,91,112,95,98,101,108,106,116,103,101,109,98,97,110,100,92,101,115,97,97,98,89,100,95,104,118,103,96,103,97,94,105,98,112,102,113,112,102,100,94,100,106,94,73,106,101,108,96,100,110,108,102,91,98,112,102,108,97,103,104,108,84,107,96,108,105,89,113,101,108,96,99,94,108,102,101,98,101,108,103,97,102,102,103,91,108,106,107,110,109,106,100,94,98,86,89,91,103,109,113,107,91,98,91,97,96,94,100,97,104,111,99,102,105,93,101,101,111,116,108,94,101,100,108,97,105,99,113,98,86,115,100,96,110,100,103,97,101,103,92,98,93,84,105,101,101,91,98,107,94,100,99,100,114,105,104,109,102,100,96,101,105,102,110,95,99,99,94,98,102,111,102,102,96,116,110,60,123,109,105,94,112,101,108,90,106,99,104,102,109,92,103,102,109,112,108,98,100,115,95,94,108,95,120,100,107,102,117,103,102,109,111,109,106,101,100,92,112,109,104,105,102,102,94,101,109,99,99,103,96,100,90,103,108,104,103,96,98,109,97,111,90,104,91,120,119,106,101,108,80,109,103,108,114,104,115,115,99,90,99,104,96,102,112,104,105,113,106,113,101,105,106,110,102,101,99,100,106,107,68,95,113,101,78,93,96,108,96,109,100,117,102,92,93,101,97,101,100,103,101,103,98,96,92,107,79,102,96,102,108,99,99,99,100,100,95,96,102,100,110,95,96,99,125,84,92,115,127,103,123,113,103,107,97,106,107,107,94,113,106,104,116,108,117,106,102,111,104,98,107,97,109,96,100,93,98,106,103,112,105,96,104,99,96,109,106,98,98,101,108,103,101,100,116,103,109,93,104,118,103,103,102,99,104,100,100,102,107,102,105,91,111,98,103,102,99,108,100,102,90,99,93,91,97,92,108,99,107,101,105,110,98,86,133,103,110,102,105,92,101,101,101,75,68,97,104,103,101,99,113,105,105,107,108,96,95,101,105,102,100,109,102,92,99,103,104,106,109,83,108,87,104,94,98,96,96,94,100,124,111,109,99,83, +645.1806,90,114,131,100,105,114,99,99,91,101,98,87,114,112,96,100,87,95,102,99,104,107,99,101,123,97,100,98,114,116,123,96,98,114,126,99,106,92,99,99,106,107,118,101,108,99,103,86,101,107,94,105,100,102,103,103,99,104,95,92,109,94,96,102,108,116,87,109,114,103,101,105,109,106,95,129,99,107,112,100,94,116,102,103,101,102,93,115,94,96,102,100,107,111,112,95,98,98,118,94,86,108,108,104,98,95,63,107,111,96,106,98,108,96,103,69,83,106,108,109,96,100,87,98,104,97,109,88,102,113,118,107,100,102,101,106,109,104,108,107,95,76,97,109,99,103,112,104,94,101,115,111,101,113,91,105,98,100,105,90,100,91,122,105,87,97,102,99,97,103,105,95,101,100,106,108,107,76,102,103,105,105,117,112,116,99,101,98,104,96,106,104,99,104,106,107,93,101,100,99,106,88,90,102,91,98,111,100,97,115,102,105,108,102,99,103,98,103,99,103,114,92,102,108,105,101,91,100,110,117,113,104,110,111,100,132,95,124,99,105,100,99,114,106,105,92,103,103,109,99,110,105,105,113,90,114,97,96,96,104,101,96,103,92,108,105,103,100,103,101,102,123,108,107,110,101,106,102,107,104,100,106,106,100,106,104,88,104,91,104,110,100,95,122,110,103,99,94,103,107,102,105,98,110,102,102,103,109,100,110,97,111,101,107,132,102,95,98,104,102,98,100,120,86,107,112,108,92,95,107,105,89,108,100,95,107,88,104,101,111,108,103,92,111,83,103,96,112,113,106,105,88,114,106,101,98,107,104,101,98,102,95,109,110,105,131,105,115,104,105,107,98,101,97,105,91,106,117,98,99,129,103,114,97,95,104,100,110,103,96,102,107,92,113,104,134,86,113,97,101,100,100,92,95,98,109,99,108,113,107,83,91,103,104,107,100,108,96,89,100,96,101,101,103,104,100,98,99,103,112,99,98,108,98,111,101,94,115,116,108,109,106,71,111,104,102,72,96,112,128,99,96,106,111,93,103,102,116,112,96,111,104,104,100,101,100,97,91,108,94,113,109,100,115,100,99,102,122,107,107,103,99,114,101,99,110,109,126,107,92,106,108,95,107,85,97,95,95,101,121,109,92,77,107,105,105,102,108,111,99,115,101,109,111,97,98,107,99,106,105,102,93,107,111,106,117,102,102,118,104,95,99,112,130,102,92,102,96,96,100,112,99,98,116,105,101,124,105,104,66,108,109,103,104,104,96,103,111,100,100,100,103,106,102,97,102,104,119,105,91,100,90,102,108,108,126,110,96,102,96,100,102,108,92,98,96,114,108,106,106,97,110,105,120,105,109,92,107,99,95,97,103,105,90,100,103,92,96,107,94,102,98,104,102,91,104,99,100,108,106,107,107,104,102,98,103,103,109,100,111,98,86,101,106,109,102,101,112,99,106,105,103,96,100,99,106,99,104,103,104,97,109,95,100,113,104,99,111,102,102,102,113,100,110,93,101,91,96,99,95,107,110,101,95,92,109,103,87,113,113,104,100,106,98,111,98,92,107,106,97,111,105,105,104,100,101,91,106,101,94,83,105,95,100,110,93,90,110,97,97,111,94,101,101,90,104,91,102,103,109,100,98,101,105,101,90,108,103,117,103,97,116,111,104,97,99,97,90,112,97,106,103,103,104,101,100,102,102,102,104,103,91,102,106,92,106,108,102,107,100,103,108,88,108,85,102,96,103,104,104,103,94,118,88,108,106,106,103,94,102,110,103,106,103,98,130,108,114,102,108,106,105,111,100,95,100,109,117,101,89,102,94,108,108,106,101,110,108,88,91,102,98,95,99,97,102,112,111,104,105,106,106,109,109,107,105,100,112,108,105,99,102,105,108,98,98,94,94,110,98,94,101,108,107,112,108,110,95,112,109,103,91,110,109,104,117,105,99,112,110,108,92,106,112,112,91,109,100,110,120,110,116,104,103,102,108,90,100,120,100,108,108,111,105,101,103,99,107,94,107,104,99,95,107,124,94,106,111,112,115,97,110,99,102,96,105,101,109,98,93,109,110,113,118,104,105,102,118,107,101,111,103,97,102,107,92,94,94,107,108,98,113,118,108,105,97,102,103,110,99,119,110,109,106,124,94,108,94,77,91,104,107,94,98,99,105,110,105,94,105,110,94,107,105,95,98,96,103,89,101,104,110,109,103,104,97,123,99,104,100,104,109,112,99,86,106,113,104,115,92,100,99,110,107,98,105,106,101,94,103,115,105,94,101,106,106,104,103,99,104,102,103,92,102,97,109,101,95,107,101,115,102,107,106,108,106,98,96,112,101,101,102,92,127,98,86,106,107,104,119,113,117,91,105,101,97,102,117,105,107,110,115,106,129,103,123,97,100,102,109,104,102,117,72,96,100,104,86,102,100,96,98,94,100,94,95,103,105,97,102,102,101,101,103,109,99,102,96,107,97,100,99,103,99,109,99,101,99,103,109,110,107,105,112,92,97,108,109,107,81,117,106,114,95,103,101,134,104,103,102,98,106,104,103,102,121,102,108,80,118,107,100,103,95,114,109,100,106,97,110,93,101,99,107,108,95,100,105,113,122,107,112,99,107,116,110,108,100,107,105,112,96,112,90,121,113,111,101,94,106,99,108,111,117,102,103,100,106,108,98,102,115,110,106,104,109,122,105,89,109,96,101,111,109,92,110,84,105,101,96,109,100,107,98,103,116,109,106,106,107,99,108,83,109,113,105,103,105,104,97,109,98,109,84,112,90,103,97,101,109,110,109,94,106,91,95,110,97,103,108,101,99,111,104,103,96,102,99,102,102,97,119,98,118,98,100,114,117,109,114,90,98,94,98,94,91,95,102,73,88,106,105,101,117,80,111,109,110,113,121,104,106,98,107,101,113,105,102,119,96,101,108,97,109,109,101,106,102,121,104,117,123,108,101,105,101,107,102,100,95,101,105,103,99,137,106,110,104,96,99,89,100,105,119,111,110,105,94,102,111,112,106,107,106,105,107,99,91,113,101,104,110,124,105,99,100,123,101,110,121,102,109,103,98,95,99,108,95,107,104,107,111,98,116,98,100,97,93,108,114,112,113,99,100,112,97,97,112,93,108,100,100,113,102,108,103,109,98,103,112,106,100,123,109,107,109,107,105,102,111,106,105,105,103,103,121,98,108,102,99,98,94,95,94,100,90,96,100,101,108,110,99,100,98,110,102,103,105,95,118,110,108,80,112,105,79,112,109,95,112,106,106,98,113,105,102,106,106,106,101,109,93,113,103,114,112,107,116,101,99,98,98,100,108,108,102,92,109,109,107,97,111,97,100,87,101,113,94,104,109,92,100,104,108,95,95,96,91,100,96,110,98,91,106,96,113,80,109,122,108,83,110,97,117,110,110,102,103,105,107,93,101,106,98,103,105,98,102,104,106,98,103,99,100,98,104,103,95,95,109,104,112,106,99,102,98,90,106,117,107,112,114,94,93,105,100,107,107,90,110,105,108,109,106,98,115,109,102,102,101,99,99,100,100,108,111,99,104,103,109,110,96,100,103,109,86,111,121,108,93,97,121,101,106,105,106,108,111,111,98,98,109,105,108,107,102,120,115,104,105,104,99,108,104,105,108,107,99,99,111,107,106,109,99,92,104,95,114,93,107,112,106,104,102,92,109,108,107,104,95,104,91,113,116,110,96,114,107,109,96,107,104,98,95,116,103,103,99,107,105,101,110,107,109,106,110,99,108,109,115,103,109,96,105,119,97,92,104,114,113,96,112,95,109,101,103,119,104,102,98,112,97,105,107,102,130,113,101,100,115,111,108,100,107,103,99,94,111,105,106,105,101,100,99,98,107,99,105,118,102,110,103,104,97,104,100,102,108,103,103,105,103,106,116,110,110,93,116,116,101,117,92,121,101,96,102,97,108,108,105,99,106,95,109,94,107,109,98,107,98,113,94,109,99,103,95,104,110,99,109,109,125,97,100,98,91,107,98,106,105,106,108,105,111,94,111,121,95,104,110,113,96,101,87,110,109,100,108,101,97,117,109,101,100,104,95,112,101,95,120,116,121,99,107,99,109,112,94,97,109,117,100,106,105,87,120,101,88,105,113,95,90,91,105,99,112,112,109,103,112,99,102,111,88,98,112,97,104,104,101,114,106,106,108,103,101,109,119,107,87,106,109,112,108,101,110,99,102,93,113,107,100,81,101,97,117,107,106,102,106,98,98,106,99,99,99,112,98,109,106,106,101,99,107,115,99,105,99,90,98,113,114,104,97,91,104,98,87,95,105,101,103,114,115,108,106,99,91,120,99,113,102,105,113,101,97,100,98,92,108,95,113,108,113,103,100,106,96,89,108,101,104,107,115,109,105,106,95,113,110,109,101,104,94,97,85,98,105,98,100,106,107,99,97,91,96,104,105,94,97,111,105,103,106,102,98,108,107,108,112,103,98,115,97,108,105,103,104,97,99,103,97,85,123,102,108,108,112,104,105,103,108,82,115,117,103,111,106,105,110,102,101,103,89,101,106,113,100,93,113,106,108,116,103,111,118,98,92,111,106,104,103,105,108,121,96,108,99,102,106,101,127,122,107,96,112,117,108,112,91,102,107,106,94,105,111,128,101,104,110,97,101,111,102,102,118,112,112,110,107,108,96,104,117,102,103,113,103,104,111,113,103,113,104,102,109,84,113,107,106,98,105,100,104,87,112,108,95,103,108,107,88,95,106,103,99,103,116,107,99,95,106,110,96,96,112,104,94,104,94,97,94,111,107,114,102,95,109,111,111,92,108,102,96,90,111,105,98,99,92,99,98,119,117,90,101,99,113,81,106,101,91,103,94,107,102,105,100,113,113,107,104,118,103,100,95,111,99,113,93, +645.32178,105,86,105,91,87,101,114,101,94,87,102,98,114,103,99,107,97,109,100,95,100,96,109,98,123,121,96,109,95,108,113,109,106,103,108,98,110,72,101,94,108,112,116,104,108,107,118,95,117,111,96,93,93,96,104,110,104,104,109,101,87,120,107,90,107,110,92,104,101,96,113,92,104,98,105,99,94,101,109,116,106,104,95,112,98,109,105,109,109,103,100,116,100,98,120,94,124,95,105,102,97,104,102,93,99,111,105,70,102,101,108,100,103,96,104,110,101,101,96,108,113,102,110,99,102,111,118,114,118,107,110,110,100,92,117,104,95,96,108,96,112,111,104,97,100,99,93,92,96,105,98,106,116,106,83,112,121,100,109,100,101,96,114,105,105,86,98,97,106,110,107,101,109,105,102,121,106,111,97,90,95,120,107,96,106,110,113,102,106,106,109,104,89,104,87,95,100,108,104,112,103,95,118,98,107,94,105,104,103,121,94,97,116,108,98,91,124,91,104,105,107,110,103,93,88,111,89,91,112,98,103,108,99,105,98,100,99,112,103,95,93,96,113,96,100,100,98,101,102,101,102,100,95,98,65,97,102,104,99,98,88,102,100,97,68,105,104,116,97,99,110,106,108,95,102,100,109,97,99,107,103,88,100,110,102,107,95,99,108,99,114,110,80,98,99,112,111,94,108,108,101,99,100,107,97,111,105,105,98,99,95,117,109,103,113,121,101,102,103,96,110,117,105,105,110,102,91,102,109,108,92,96,97,109,109,109,108,103,109,121,105,103,101,103,106,113,114,105,106,112,103,100,105,111,102,116,104,125,92,99,108,105,114,114,98,74,100,108,90,102,73,107,94,99,125,102,108,90,106,101,109,103,102,112,109,94,103,92,93,103,115,85,97,110,96,100,109,90,105,114,101,109,96,107,106,106,90,88,110,101,90,98,117,97,112,107,113,107,115,95,99,93,103,105,100,105,106,97,99,102,105,109,105,113,91,99,97,104,102,102,109,109,108,107,101,104,108,103,101,113,99,101,105,98,110,94,94,101,108,91,104,104,97,111,99,100,109,119,99,98,103,107,104,100,98,106,104,115,104,97,101,109,109,101,96,102,105,103,99,96,114,97,107,102,100,107,113,109,98,97,108,105,92,106,104,102,100,99,102,101,112,96,96,109,66,101,92,86,92,94,111,108,117,106,112,101,116,94,96,98,99,95,93,113,99,111,106,102,101,108,94,107,104,97,112,107,105,101,115,105,97,95,103,106,97,100,100,105,100,105,110,112,102,106,106,106,120,107,100,104,92,105,95,93,112,101,136,106,103,105,109,101,112,99,93,107,111,99,108,100,96,115,95,104,124,103,87,98,99,92,122,92,109,100,98,112,100,106,103,88,91,113,119,95,106,100,109,104,94,94,118,109,108,100,109,105,103,103,110,105,101,96,111,115,99,107,101,103,107,108,105,97,106,102,87,91,96,103,100,115,99,112,96,103,104,109,124,103,116,104,110,96,112,99,100,108,101,97,114,99,101,103,101,99,101,107,91,96,110,107,103,104,114,105,102,95,96,110,99,105,122,98,101,113,99,101,104,105,109,100,106,92,101,102,121,101,112,96,102,110,101,105,99,112,109,104,101,86,105,117,100,120,107,103,93,110,87,110,104,117,112,100,94,104,101,98,98,100,118,113,91,102,87,96,118,101,104,100,107,102,107,102,115,100,109,108,104,101,97,104,99,102,81,96,103,94,94,97,110,98,84,105,93,94,108,113,102,110,106,95,99,99,109,107,91,104,100,106,91,105,105,106,111,91,101,106,114,110,99,91,101,106,87,137,116,105,103,109,106,103,129,103,105,94,73,97,112,104,100,91,101,98,124,106,99,117,100,114,106,96,99,106,101,105,92,106,97,101,113,101,107,102,104,103,114,106,94,110,98,106,114,88,88,102,88,113,89,104,108,98,112,98,90,104,99,101,103,91,109,108,103,98,110,110,100,87,107,99,87,113,113,104,101,108,96,111,109,114,119,97,94,99,112,106,108,121,98,107,102,104,96,97,97,91,92,100,100,110,99,102,99,109,98,94,95,105,101,114,142,108,101,101,90,109,95,97,94,93,110,97,99,88,114,106,96,101,99,95,107,105,99,101,110,112,94,96,111,107,93,86,95,104,99,112,96,100,127,98,102,99,106,96,112,108,103,101,99,110,98,61,102,105,102,105,103,106,114,92,106,108,91,114,95,99,101,109,93,101,108,100,93,111,99,106,94,89,97,108,98,105,95,96,96,101,108,101,99,103,99,97,90,113,101,107,102,106,106,104,107,102,113,103,105,102,93,113,99,105,96,109,102,105,102,105,114,93,96,99,93,87,93,101,110,91,94,102,103,126,110,107,98,108,90,112,102,112,103,95,95,101,96,106,103,105,103,105,94,101,112,101,104,105,106,114,101,104,103,106,102,89,105,94,107,111,80,105,106,109,116,113,112,101,113,115,105,101,99,93,125,101,110,72,109,105,87,105,119,109,105,97,105,112,98,100,106,103,102,113,103,82,103,97,112,102,95,114,101,104,72,97,108,105,89,98,109,100,112,84,104,98,116,103,110,105,97,105,107,102,98,101,104,99,110,100,87,113,118,109,98,100,105,97,105,83,113,123,97,97,100,91,106,106,110,101,106,101,103,100,111,102,102,106,105,106,104,103,104,91,95,96,94,116,101,102,101,102,102,100,93,105,105,111,102,95,93,100,108,117,103,104,102,90,96,107,116,128,110,104,100,93,108,115,95,99,119,117,99,102,107,113,103,109,91,115,110,96,108,107,98,113,113,104,113,103,110,103,107,112,110,88,103,106,90,108,91,103,102,120,99,104,113,103,112,106,102,102,106,109,109,111,109,93,104,115,115,107,104,110,96,100,95,108,108,111,104,121,104,100,106,113,103,113,103,91,105,94,115,110,117,105,115,107,101,109,103,111,110,103,84,103,98,102,105,102,107,105,117,108,106,66,107,108,95,94,114,102,113,99,106,109,95,105,99,112,106,113,102,111,99,109,100,123,114,102,104,116,94,104,105,113,99,106,117,105,100,97,117,104,95,108,110,92,105,108,104,98,125,96,107,108,113,112,108,107,104,103,98,109,143,112,96,89,108,111,106,97,105,105,96,107,103,94,97,103,98,89,113,113,112,104,110,122,96,111,100,101,123,101,111,101,103,100,102,119,116,114,106,107,101,107,112,104,103,123,103,100,104,87,113,100,108,106,104,98,102,117,100,112,96,110,113,104,106,114,104,109,78,110,104,117,95,99,110,99,121,109,113,106,95,109,113,110,101,105,108,108,102,108,97,107,87,99,89,100,110,99,108,117,111,99,108,101,101,97,111,109,97,102,99,99,99,107,104,98,101,116,98,111,94,117,100,101,100,97,113,97,112,99,90,107,102,109,108,100,96,103,95,95,100,106,113,106,106,103,104,112,97,100,108,104,100,105,104,100,108,111,94,112,105,98,110,109,103,111,104,109,93,103,100,108,112,103,106,106,109,105,105,114,104,111,101,104,104,101,107,111,93,107,101,120,113,113,102,95,106,112,101,101,99,100,102,100,113,106,113,105,101,110,106,109,105,107,119,111,98,90,113,110,111,116,99,108,105,88,95,109,104,113,106,109,112,96,119,101,101,109,94,88,102,113,106,107,100,103,88,103,100,107,102,109,96,105,116,119,107,96,114,107,106,95,108,107,96,99,109,107,106,102,96,102,97,98,98,105,116,98,99,105,105,94,107,98,100,98,98,108,95,99,99,112,98,113,101,99,112,96,104,107,105,99,99,108,128,109,100,103,97,100,88,106,94,109,98,99,104,86,103,105,90,96,110,105,126,99,95,112,95,107,101,100,114,108,96,103,99,99,116,91,98,97,111,109,105,123,108,102,102,96,111,106,105,107,103,106,111,102,102,108,105,98,109,105,106,120,107,95,97,104,106,101,111,106,119,101,103,104,102,102,102,107,98,99,95,97,109,108,99,111,94,100,107,104,106,116,104,111,107,106,114,100,101,100,97,95,112,103,95,106,101,107,107,94,103,91,90,105,109,110,105,111,117,102,94,121,97,108,104,102,100,107,105,101,117,117,103,99,102,95,102,110,96,98,107,105,111,102,99,99,105,101,113,110,95,99,98,103,105,103,100,104,109,100,117,109,98,121,93,116,119,102,116,104,100,105,94,96,107,108,106,133,109,95,97,100,108,97,105,98,101,106,97,98,84,103,103,96,95,125,106,108,104,97,99,98,115,144,109,103,99,111,98,109,109,108,104,120,94,115,106,103,103,117,102,108,112,112,106,109,76,106,112,88,102,107,105,101,120,104,112,107,89,93,110,110,105,99,101,120,102,99,95,101,93,99,103,115,96,114,113,96,86,99,100,104,110,108,112,103,107,94,128,119,104,92,105,89,103,99,99,102,95,108,105,96,120,112,97,98,106,116,102,105,99,101,116,107,93,110,103,102,100,85,100,120,111,113,104,114,106,97,110,101,93,91,109,99,113,104,101,112,106,102,97,105,101,99,100,97,103,117,96,106,111,102,96,102,99,94,84,109,108,96,99,96,107,99,97,99,115,105,105,101,102,108,103,111,121,119,104,95,135,108,102,111,101,105,102,103,106,109,94,104,93,113,111,104,102,111,119,95,105,101,105,98,97,105,108,115,102,103,119,105,107,120,110,108,94,100,98,106,107,106,102,106,109,102,100,98,107,98,121,90,95,113,110,116,80,95,103,104,89,99,125,111,116,98,95,95,111,103,98,107,109,113,87,108,95,99,105,103,100,98,95,88,109,106,102,103,89,105,91,103,105,99,96,92,93,100,112,91,100,104,105,103,108,101,101,83,101,96,112,97,113,113,99,98,95,97,114,105, +645.46295,125,102,90,101,119,103,85,106,92,92,105,104,102,111,110,108,101,94,111,106,95,102,107,102,105,115,108,122,95,100,110,104,102,119,96,102,100,101,117,85,98,103,84,102,109,109,106,109,97,106,108,112,95,105,105,98,109,103,122,101,109,117,117,96,98,100,90,113,99,111,102,98,100,105,92,99,88,99,107,97,112,114,107,107,104,101,106,100,133,121,99,108,102,92,90,100,108,111,95,102,97,114,95,98,98,110,102,96,106,101,101,104,104,105,114,97,94,113,102,102,102,105,110,113,102,129,104,112,87,105,110,111,107,102,104,97,127,105,109,94,93,106,100,100,96,89,100,105,109,98,93,122,105,100,90,109,105,94,111,90,101,98,100,102,97,116,97,100,112,101,107,97,107,102,104,117,118,105,108,100,107,107,109,100,97,104,106,98,106,103,82,106,103,116,110,106,109,107,109,106,117,91,111,106,92,104,114,111,119,100,98,66,101,109,98,100,93,119,94,107,98,114,114,105,110,105,96,117,91,96,114,108,100,114,106,105,105,99,107,91,91,108,104,126,101,105,94,111,101,105,97,105,113,108,103,105,109,109,100,99,104,117,100,100,89,101,92,120,95,99,101,108,107,103,107,93,95,114,111,114,90,109,108,104,99,101,106,100,112,105,107,110,109,100,103,107,96,80,113,104,96,102,91,111,105,109,102,121,101,110,106,112,99,106,104,100,98,90,109,109,103,105,96,95,103,107,96,93,106,105,104,116,106,106,117,82,112,102,99,100,105,112,103,95,105,98,95,102,110,109,107,116,102,99,100,106,113,108,112,111,98,100,101,101,91,99,92,116,102,106,96,102,105,97,112,95,103,100,110,116,98,113,92,105,100,95,100,87,112,102,106,106,104,121,106,101,109,95,112,104,99,96,101,105,106,105,98,99,102,105,105,97,98,104,100,101,102,102,111,103,108,101,106,109,106,96,103,113,92,99,97,96,101,98,106,104,114,96,108,121,103,95,95,100,100,99,98,103,94,101,115,96,105,111,126,114,91,93,101,72,92,96,116,106,111,100,121,105,106,114,100,106,100,92,102,104,95,103,103,98,107,107,104,106,108,97,98,116,92,99,99,117,107,101,101,113,107,103,112,101,107,98,97,102,106,104,98,97,104,95,102,101,99,109,112,94,106,100,107,95,107,97,104,113,112,112,113,94,97,103,101,99,116,98,103,93,104,92,106,115,96,101,107,109,108,105,110,109,99,94,110,95,109,110,86,97,110,102,100,104,103,102,97,102,109,105,114,109,112,107,96,92,105,101,119,100,95,95,106,107,113,92,107,102,104,97,106,94,105,106,103,113,104,113,119,113,117,118,108,105,107,100,102,105,100,130,106,108,105,98,115,105,104,104,112,108,102,119,107,105,104,99,96,102,107,109,101,99,112,113,112,114,107,115,90,105,121,95,107,103,100,113,115,101,99,94,99,109,110,113,91,99,104,103,110,107,108,117,107,110,115,109,103,114,99,100,108,96,106,92,106,102,112,106,97,112,86,116,110,98,108,103,95,101,87,90,106,110,102,112,104,110,97,103,100,109,103,105,74,106,105,101,96,99,93,108,109,111,106,107,100,101,110,93,99,102,111,99,114,111,104,86,107,117,92,96,99,106,108,116,98,104,97,103,106,118,96,101,96,103,100,97,104,102,110,106,121,103,96,96,105,102,98,82,101,109,108,108,112,99,99,105,110,99,91,106,92,83,108,109,110,108,113,100,115,92,112,114,98,97,109,112,112,111,98,98,108,117,99,107,94,99,110,113,109,102,108,108,106,98,102,106,102,109,118,120,96,105,109,95,108,109,88,113,98,102,110,106,98,99,91,111,97,103,106,94,104,113,107,110,113,100,106,111,93,112,113,109,103,118,103,106,105,105,101,101,115,104,107,96,99,110,103,115,106,101,109,95,104,103,108,103,109,108,101,89,104,103,118,110,111,108,101,118,104,99,110,109,110,94,98,111,99,96,111,102,94,114,113,98,107,105,111,113,108,112,78,108,103,120,108,107,100,121,108,102,99,96,99,111,106,110,112,92,95,103,98,102,99,110,108,99,96,83,118,97,91,105,109,101,90,99,113,114,106,92,96,110,113,104,102,108,107,99,102,99,107,116,105,118,118,94,109,102,107,101,98,105,101,94,81,114,113,98,105,100,101,116,104,89,97,104,101,105,101,104,98,92,107,109,95,106,110,93,117,101,137,94,105,107,113,99,118,110,108,114,102,91,104,108,95,100,110,114,101,109,101,107,91,109,101,116,113,115,102,108,115,99,100,108,104,109,98,100,101,104,107,109,107,103,116,111,96,91,111,101,100,114,113,104,111,112,104,107,107,99,103,124,95,102,103,113,107,117,104,115,103,119,110,102,109,113,107,103,98,96,105,100,107,115,95,104,106,96,96,101,106,98,98,99,102,105,97,99,98,104,103,86,107,92,106,114,101,97,103,100,96,101,105,94,101,109,99,100,104,112,97,94,108,108,105,115,105,108,117,95,107,108,87,108,114,101,102,98,113,104,101,109,101,106,111,116,110,101,96,107,106,102,112,102,107,97,105,118,107,104,105,102,107,100,108,98,114,112,104,98,96,106,106,113,108,91,99,103,94,110,99,102,104,104,105,104,107,114,125,98,101,107,106,108,110,106,94,113,98,105,103,108,109,116,98,95,112,101,118,106,115,101,112,103,117,97,106,109,116,100,99,106,107,116,104,106,105,110,93,103,108,114,102,104,103,112,100,96,95,94,102,115,102,125,107,109,108,121,112,108,130,112,111,100,119,115,110,109,102,103,103,102,111,106,109,106,99,100,99,94,102,96,95,107,102,101,105,102,106,100,111,116,114,108,112,112,123,120,109,77,96,103,97,106,107,105,116,105,103,112,87,113,107,107,99,110,113,109,111,107,107,101,113,99,105,102,102,113,103,114,104,110,90,95,109,108,108,101,116,115,97,112,103,104,109,109,105,102,121,104,102,95,103,108,94,94,101,120,107,104,108,107,105,77,105,111,101,93,114,108,109,94,107,90,99,111,107,95,101,99,99,102,109,103,107,106,104,112,106,96,113,106,98,101,106,102,114,113,113,106,106,99,105,96,104,98,110,108,105,105,97,99,99,124,105,106,93,104,96,103,120,97,128,97,117,109,95,105,106,101,117,105,101,98,98,108,97,97,107,99,106,106,112,110,96,105,101,101,95,64,114,100,99,109,72,116,105,108,108,99,100,108,107,116,106,113,102,109,99,105,102,90,110,97,112,102,105,110,99,107,107,108,116,112,94,105,103,99,86,111,103,109,108,94,103,103,106,113,103,104,112,115,97,117,108,108,108,91,94,109,93,102,109,104,103,106,102,102,97,98,104,122,108,104,92,108,106,98,74,112,110,113,99,107,103,107,105,111,103,112,103,109,101,92,111,113,108,105,101,108,111,109,98,96,117,112,101,97,99,116,102,119,115,85,95,106,101,113,106,98,110,111,110,113,105,100,100,105,101,87,102,103,93,120,96,109,99,127,117,107,99,94,118,103,108,102,111,112,137,95,100,77,110,93,90,88,102,102,108,105,110,93,103,80,98,105,111,104,123,96,105,131,95,110,98,106,120,106,109,94,111,110,109,97,115,103,95,104,104,95,98,100,102,100,117,106,104,107,64,99,88,109,107,105,111,108,101,106,114,109,101,114,107,92,102,106,91,98,102,109,102,93,97,98,104,108,113,83,113,102,107,104,106,112,108,105,105,109,99,111,101,107,128,115,104,112,102,96,111,101,99,110,102,91,105,100,104,99,122,111,102,95,97,131,105,104,92,94,87,118,117,96,102,92,105,97,111,113,122,100,111,99,95,100,115,105,95,122,109,96,104,128,103,91,98,104,89,95,87,106,108,94,110,100,103,92,107,95,103,108,113,96,98,110,101,106,115,102,103,100,106,109,100,106,112,94,105,104,100,103,102,86,106,108,108,104,98,91,107,101,105,75,102,109,107,99,106,99,102,99,106,106,116,100,108,108,85,99,112,111,103,104,108,94,105,106,102,108,111,102,79,98,85,104,108,92,94,102,102,117,114,90,106,97,103,107,100,126,108,103,106,111,98,100,101,104,95,98,102,93,104,113,99,107,108,100,93,99,100,100,113,109,109,101,105,94,101,114,120,109,94,110,99,102,112,97,110,101,104,107,101,103,102,112,107,105,104,100,112,99,99,108,97,98,110,94,105,103,101,102,100,100,104,103,114,98,105,117,109,114,107,86,93,106,91,111,101,110,99,104,103,100,107,107,116,108,104,104,108,109,112,108,115,94,115,99,112,91,100,89,107,114,106,99,100,104,110,99,94,105,104,102,107,105,101,114,110,105,101,96,102,108,108,107,98,90,97,101,103,109,83,99,104,102,106,105,101,108,91,97,101,101,99,101,112,110,110,99,106,97,109,105,104,105,96,91,92,112,111,98,104,100,110,102,100,96,83,95,98,107,101,109,100,92,96,104,109,107,105,106,110,114,97,100,97,109,101,102,89,105,105,99,106,104,100,100,105,103,110,91,101,102,93,100,96,81,94,114,106,89,106,97,102,122,109,91,92,113,121,97,111,108,110,93,105,106,104,106,97,102,117,97,108,99,105,89,118,100,100,101,108,108,110,101,89,100,99,76,114,84,109,99,116,115,113,100,109,97,109,105,115,119,103,99,102,104,97,95,101,104,103,94,100,100,98,120,93,102,111,102,111,100,100,121,91,104,107,97,106,96,101,96,125,113,106,107,102,100,98,92,110,111,92,105,85,112,98,121,109,98,121,89,94,106,92,98,103,110,94,110,104,113,110,100,86,88,98,113,98,100,71,110,107,99,114,104,87,98,97,112,108,106,101,103, +645.60413,95,110,84,96,100,100,101,109,98,108,87,82,107,101,104,103,85,128,102,108,110,111,120,103,113,108,97,111,107,123,100,97,103,100,111,87,110,113,96,111,109,105,107,121,90,112,117,105,105,105,110,104,100,102,98,114,94,102,103,95,112,102,100,94,113,114,105,98,103,110,100,93,93,119,96,109,102,104,121,102,109,107,112,106,87,88,112,117,105,96,106,97,105,102,105,90,107,93,104,94,107,101,105,84,111,107,108,103,105,103,98,103,101,106,105,115,116,100,110,109,109,106,106,105,102,104,114,106,99,104,98,105,102,114,108,102,100,114,106,93,90,108,99,104,118,98,100,94,114,104,107,106,110,98,111,106,107,101,96,103,77,103,106,92,107,102,99,100,90,103,109,95,95,96,98,92,98,92,108,94,112,110,113,98,97,98,93,106,114,109,105,89,103,102,91,111,114,114,106,109,104,97,94,102,112,106,105,110,104,93,91,104,110,106,97,112,99,107,87,103,109,106,104,108,103,100,105,100,113,98,108,117,107,108,114,98,101,98,88,100,100,109,117,103,102,99,102,115,115,108,103,106,103,110,88,99,101,122,112,105,99,101,101,111,110,112,103,106,100,101,101,87,110,100,105,98,103,104,103,111,100,110,95,102,113,100,104,107,87,104,103,98,95,109,109,105,111,117,114,97,101,96,115,111,91,120,111,106,113,99,89,111,116,100,113,92,107,106,112,90,106,104,128,104,103,103,99,101,84,102,117,98,101,101,116,104,75,111,112,101,108,89,100,93,103,116,107,112,106,106,103,105,108,93,106,111,106,101,117,112,105,108,117,105,107,91,101,102,106,110,108,104,99,113,115,99,114,94,102,112,109,108,90,86,108,106,108,106,101,105,108,100,99,102,99,91,104,99,101,106,95,104,98,100,106,93,98,106,106,108,91,109,112,111,103,89,96,123,116,116,83,104,93,108,101,97,93,105,103,105,79,107,119,100,99,96,105,111,102,105,120,99,94,111,101,86,99,111,93,113,100,108,103,121,98,106,105,91,110,115,87,106,109,83,108,113,112,105,111,103,107,100,82,95,98,106,110,109,109,105,104,116,107,100,114,99,104,107,95,106,105,108,109,113,98,108,109,99,103,99,106,109,110,102,103,114,103,109,105,88,103,103,90,103,102,108,106,99,98,109,96,91,104,114,99,117,106,102,99,106,101,109,107,100,135,100,102,110,111,106,95,100,98,111,103,107,108,107,112,115,99,101,100,118,93,118,109,96,110,105,81,105,111,106,99,105,95,101,105,114,95,96,109,104,114,108,103,101,103,108,97,96,111,107,108,116,100,116,106,101,113,111,104,122,115,100,103,114,100,110,97,111,96,110,101,109,101,94,100,113,96,104,109,99,110,115,104,110,90,103,106,99,118,118,84,97,100,105,99,107,109,103,95,112,91,100,99,101,104,91,116,111,109,99,96,103,106,108,107,103,104,106,106,104,99,108,95,108,109,111,110,98,103,107,106,102,107,101,102,100,120,99,100,99,104,117,100,98,121,132,108,122,119,97,105,95,95,94,107,100,98,110,95,108,107,107,110,95,101,99,109,78,100,94,101,116,98,99,87,103,105,108,107,95,100,93,104,109,113,100,105,98,108,113,97,106,104,70,97,119,107,105,107,98,95,94,106,98,102,104,103,103,108,109,98,101,98,99,93,105,113,102,105,111,107,102,111,101,96,126,101,79,100,110,112,98,102,99,114,105,103,107,124,106,102,105,90,107,102,105,108,107,108,95,112,101,105,113,109,96,112,109,104,100,104,87,98,98,112,103,100,102,95,109,114,108,99,103,110,104,104,96,100,91,92,120,99,105,109,101,101,106,98,107,95,120,102,105,101,113,104,102,109,104,106,109,99,92,99,107,97,103,106,104,115,99,97,98,94,94,97,95,86,117,103,108,96,110,91,107,111,105,99,101,100,120,103,88,68,87,95,109,99,102,95,105,100,104,116,105,100,110,100,101,98,109,108,109,105,101,99,108,103,101,99,92,106,91,103,95,102,103,112,96,95,110,102,102,101,101,123,112,110,98,101,95,96,106,107,111,107,112,102,108,107,112,99,103,109,112,107,109,105,110,103,109,96,91,116,104,107,97,107,99,106,102,104,103,103,106,104,105,121,109,109,109,107,99,97,107,109,110,118,107,104,104,105,106,110,112,113,96,73,104,96,106,98,109,101,118,95,102,115,96,103,91,109,109,99,110,112,108,99,103,106,115,100,106,91,100,108,94,95,100,110,103,108,92,104,99,101,97,96,112,103,106,99,102,88,103,108,112,105,94,112,101,115,100,117,99,98,103,106,100,103,91,115,111,103,112,103,92,114,112,99,103,104,78,107,104,109,110,95,94,94,134,104,100,100,108,90,101,101,107,91,104,102,100,119,99,98,121,114,94,104,118,108,110,102,79,112,102,86,110,109,115,114,93,104,86,107,92,109,98,93,109,123,103,98,111,107,104,92,112,118,104,109,111,100,88,112,110,109,98,99,92,97,94,78,123,103,116,99,90,100,104,99,103,101,99,118,85,103,95,98,103,106,109,99,98,99,107,96,97,80,111,112,102,109,93,114,100,113,109,110,101,108,89,102,106,105,104,109,103,82,103,96,89,109,89,109,106,115,108,88,104,107,102,109,99,99,87,96,110,114,101,106,99,95,97,105,96,119,105,107,103,99,87,103,97,102,117,98,95,119,105,91,106,103,102,102,106,113,117,104,109,98,103,97,111,103,105,99,104,111,102,100,105,113,108,107,116,91,105,106,94,99,106,105,102,90,102,104,77,106,79,101,111,110,101,100,98,130,107,91,97,94,101,105,106,98,104,107,102,106,98,92,96,101,101,112,92,102,106,102,88,98,100,106,110,100,98,115,106,114,110,102,102,105,105,105,89,93,108,120,82,106,100,106,108,106,105,103,109,96,102,107,116,94,107,98,106,97,103,117,101,101,107,99,104,105,102,93,105,103,75,108,89,115,100,100,89,100,100,99,101,103,93,100,100,95,110,103,91,98,103,93,91,96,93,105,105,90,71,83,93,106,101,107,102,119,90,111,98,103,110,117,116,105,98,106,96,106,105,113,105,98,104,106,102,98,98,81,105,99,96,104,111,98,101,92,91,80,105,105,102,97,101,106,106,104,100,109,97,107,104,110,103,106,96,101,97,99,102,107,100,109,108,104,105,103,98,104,91,104,101,101,91,104,98,114,102,107,102,109,93,117,103,102,106,108,103,90,100,110,101,99,109,102,98,108,88,107,104,105,105,113,94,104,85,95,100,99,109,96,106,105,103,126,96,115,108,91,80,107,100,99,106,101,97,100,97,120,103,97,109,104,94,108,96,105,117,94,110,104,106,101,93,104,102,99,96,98,97,105,96,106,104,100,108,105,102,99,103,101,109,108,112,103,99,113,107,98,97,106,95,103,117,110,98,102,123,106,102,95,109,90,95,105,91,99,108,97,108,105,112,103,92,83,99,102,101,96,110,104,107,108,96,103,102,96,103,98,111,107,97,95,101,104,100,109,105,102,114,107,103,100,112,103,94,94,105,108,105,97,105,112,106,115,97,105,81,101,109,105,94,105,99,94,96,99,106,111,104,101,102,113,108,124,100,102,109,105,108,104,101,106,120,98,98,109,105,103,105,101,111,109,116,105,93,110,96,97,105,105,108,96,97,96,96,104,106,98,96,117,93,102,87,113,99,100,109,101,101,99,87,80,105,104,113,101,109,106,95,105,107,103,93,105,106,98,104,96,103,106,97,98,104,111,96,104,91,107,105,102,108,99,106,90,111,102,120,108,95,103,97,107,93,108,83,100,111,111,100,99,107,96,111,104,87,115,102,106,105,107,100,104,95,107,114,105,104,105,106,96,95,113,98,109,94,101,107,104,107,104,106,94,102,100,102,104,92,95,103,96,95,93,91,100,93,117,117,117,103,105,107,91,109,95,86,105,96,104,107,105,110,95,100,106,114,112,94,98,103,109,101,113,110,114,99,104,101,99,100,122,99,108,110,96,93,117,97,103,95,98,82,91,92,100,102,105,91,101,113,107,102,106,90,105,93,116,99,117,110,90,116,117,97,106,107,98,101,105,108,94,109,95,104,101,107,102,136,111,92,108,107,105,111,109,107,106,106,116,111,95,106,100,103,113,106,95,117,106,93,110,113,101,106,107,107,109,96,93,105,107,103,113,129,115,102,104,110,104,104,101,98,77,102,98,99,98,101,111,102,93,106,104,84,89,90,105,104,93,99,106,103,106,98,103,112,124,112,106,102,111,106,102,102,99,103,99,97,102,105,108,99,114,102,103,105,99,100,110,106,105,99,81,101,110,100,84,115,104,108,108,102,101,104,93,102,100,103,98,102,90,102,103,105,116,110,105,106,95,101,104,99,100,105,96,95,111,99,99,113,100,95,111,110,110,89,102,93,104,107,114,109,104,106,109,91,98,100,97,104,108,113,110,100,91,103,106,100,99,104,109,108,112,117,104,91,95,101,92,100,104,100,110,97,101,102,105,109,117,113,106,105,108,106,116,100,99,116,92,94,97,100,107,96,97,100,109,116,98,106,100,113,101,109,109,107,100,115,102,113,104,96,102,105,102,100,95,107,103,101,101,98,110,98,105,84,81,112,101,102,107,101,95,106,91,100,99,97,97,103,100,110,109,94,116,102,94,91,91,95,131,103,110,98,101,105,113,101,103,94,84,91,101,100,108,95,95,104,117,89,103,98,111,95,108,101,91,107,106,102,102,95,104,119,109,99,105,120,104,104,105,106,99,97,92,112,104,100,108,100,86,113,95,87,107,102,106,102,97,100,91,88,92,110,84,93,107,100,94,109,103,102,107,107,84,103, +645.7453,105,102,96,99,88,94,114,104,112,110,101,93,99,105,113,93,94,115,117,105,93,92,93,87,93,105,105,107,99,98,114,113,103,96,122,101,110,109,103,84,116,102,96,92,94,103,106,105,99,102,108,104,113,105,118,112,100,94,105,93,92,103,82,97,100,104,96,103,124,103,132,119,99,97,101,107,97,108,118,102,94,100,110,111,105,95,100,101,97,102,90,83,106,97,109,108,91,102,108,88,107,100,105,90,108,103,90,96,91,106,105,93,114,105,106,105,102,108,107,92,99,103,100,105,107,101,120,100,90,105,104,109,89,100,103,107,104,134,105,102,102,108,105,118,99,111,103,106,78,107,105,104,92,91,95,94,97,104,104,116,89,107,111,101,105,111,110,97,103,102,101,101,104,96,110,99,102,102,110,101,104,109,125,110,95,93,98,87,110,113,113,105,109,102,96,103,95,101,95,100,99,101,106,96,107,93,105,110,88,105,93,104,115,109,99,100,101,101,106,100,91,109,108,101,103,90,104,98,103,108,114,102,93,88,110,105,103,116,107,98,98,95,116,103,94,113,111,107,101,103,104,102,101,96,92,95,107,100,90,102,104,100,98,111,89,121,107,102,102,100,86,109,103,99,92,65,96,110,98,120,82,105,97,110,113,97,94,105,102,107,106,90,91,106,105,86,98,104,106,106,108,112,102,103,95,99,95,95,108,99,86,119,109,95,85,109,103,106,102,88,108,96,116,103,103,87,88,96,106,119,100,96,99,105,108,109,94,96,91,97,99,106,97,100,117,102,107,100,93,96,101,93,111,98,108,123,70,113,102,122,105,91,109,105,96,95,109,124,102,94,116,114,112,97,103,106,104,100,92,108,100,106,95,111,95,98,115,91,111,94,113,95,113,98,99,102,105,100,97,102,95,88,94,96,93,104,101,96,101,95,108,89,109,109,93,102,103,112,92,101,100,102,102,120,98,99,97,106,99,104,119,111,96,107,111,102,119,108,102,97,111,95,103,108,112,104,98,105,109,102,102,100,99,116,107,97,104,87,109,97,106,98,107,107,100,109,113,109,97,106,104,111,102,97,102,91,102,108,94,102,111,136,98,103,102,105,109,100,100,105,100,104,105,110,100,110,83,95,105,104,98,103,110,103,110,103,95,103,102,100,116,113,105,109,99,105,100,102,97,96,101,105,111,100,99,103,104,103,107,112,92,95,109,99,110,97,105,104,98,111,102,108,109,111,112,87,110,107,100,104,117,114,115,113,101,89,108,118,102,91,109,101,109,97,103,97,111,103,110,100,98,104,103,105,100,95,98,100,102,107,102,97,113,104,109,104,106,103,108,100,102,99,98,99,109,107,102,96,100,98,103,96,112,104,98,113,95,104,84,123,107,114,98,137,103,120,98,94,98,107,101,112,94,96,104,94,94,109,106,107,110,107,105,98,94,104,100,95,99,93,99,110,107,99,112,96,90,91,99,101,104,105,102,99,111,105,100,103,103,116,111,109,116,116,102,106,101,98,118,84,95,98,105,105,103,110,104,102,106,102,105,103,105,106,105,102,91,99,108,98,86,103,102,101,102,87,109,101,114,92,107,103,95,101,103,104,124,101,109,99,101,111,111,104,77,101,104,106,101,104,93,104,102,108,116,106,120,102,97,103,105,104,84,94,101,113,110,98,104,108,107,99,122,99,108,112,113,105,95,102,100,106,98,104,124,105,101,111,121,97,100,93,105,108,95,99,101,96,105,106,107,107,97,101,94,107,105,99,101,98,99,97,104,105,83,110,115,107,97,100,106,100,103,100,105,97,103,100,110,109,90,105,103,89,111,99,103,103,98,96,131,96,114,96,97,96,102,100,111,112,99,107,106,112,104,105,92,95,101,97,107,108,105,100,98,74,99,109,110,113,90,106,106,106,102,102,101,115,99,111,118,100,97,110,104,85,106,110,114,109,98,108,107,104,106,103,107,86,108,106,101,103,99,104,99,102,105,101,102,92,98,99,114,108,101,107,103,115,101,104,107,106,66,100,114,92,95,116,103,122,100,110,104,98,109,94,98,113,92,114,94,113,106,109,101,85,96,93,100,106,111,117,100,109,103,111,100,107,99,91,107,103,106,114,99,106,108,90,92,105,105,98,100,103,109,107,95,92,107,119,95,106,112,106,114,106,105,102,97,103,101,99,105,125,106,107,111,102,96,99,104,97,99,111,106,105,101,105,103,109,113,98,100,92,108,104,111,108,95,97,91,106,100,103,100,90,104,99,97,105,96,101,109,115,111,104,100,96,98,101,99,116,94,106,110,100,119,105,109,94,112,98,104,92,87,96,90,98,99,105,109,115,102,99,95,95,93,108,104,90,120,114,118,101,107,95,106,108,109,99,111,113,102,105,107,106,107,98,109,111,107,103,97,109,96,101,90,117,97,101,99,111,98,105,113,110,104,99,113,95,94,99,105,100,99,98,94,109,119,98,109,93,97,100,97,97,100,93,96,104,99,92,107,101,103,109,99,111,100,95,103,112,96,95,101,100,92,100,100,92,94,102,95,107,95,111,85,100,92,105,90,107,110,112,93,96,102,104,116,91,114,102,96,102,92,91,101,106,107,90,103,97,106,105,107,106,99,113,101,107,105,109,104,105,116,107,97,91,108,107,113,98,103,104,109,98,102,102,123,109,99,112,100,97,95,103,108,111,103,104,110,102,106,104,81,104,104,98,87,95,92,111,103,104,113,70,91,101,102,108,95,108,116,105,113,110,104,108,107,108,115,118,108,90,101,98,111,99,105,98,91,88,99,98,103,99,98,104,99,96,97,102,114,91,95,104,109,105,105,105,105,102,110,121,102,102,102,97,89,102,102,91,98,95,98,107,109,100,110,101,104,112,102,111,116,121,97,106,108,102,83,101,100,101,102,93,110,107,92,99,104,103,107,100,88,98,90,96,96,103,105,104,105,116,98,88,101,83,102,103,110,104,95,104,103,107,118,98,101,98,109,104,99,87,118,112,106,111,103,106,104,100,101,120,101,93,96,102,95,105,112,112,122,116,110,101,99,91,97,97,111,113,106,106,106,97,103,101,103,102,107,100,113,101,102,102,104,102,111,99,107,100,92,104,94,95,104,109,109,93,107,66,103,103,104,99,95,106,114,105,109,101,103,104,95,105,95,104,107,102,102,102,91,96,102,106,110,104,117,103,110,99,108,133,92,103,99,104,109,106,111,118,90,94,104,90,90,110,113,94,104,113,103,114,112,110,112,102,94,108,91,107,111,113,95,119,113,124,103,109,97,98,102,98,111,103,111,96,100,99,98,113,100,74,90,99,104,93,106,95,105,98,65,101,97,111,104,99,104,102,99,94,103,102,110,105,103,105,109,104,97,103,98,108,117,107,109,114,99,106,100,117,99,95,98,110,99,100,99,104,98,111,108,105,98,99,109,110,133,101,106,101,112,108,120,98,104,96,105,110,118,104,104,102,109,110,95,105,92,100,102,101,100,110,102,103,98,91,88,111,106,100,101,88,107,102,102,105,99,101,96,108,113,104,108,125,101,84,100,108,97,100,106,107,119,107,100,110,107,95,95,109,96,107,85,89,110,106,111,100,94,102,99,111,98,103,105,108,106,107,102,92,94,104,114,98,100,98,99,110,92,98,111,99,99,116,100,109,110,106,73,106,108,105,92,99,109,106,88,100,103,89,101,114,107,100,102,115,84,109,100,100,95,108,106,101,98,100,95,101,105,102,93,111,100,92,100,105,106,104,108,117,111,98,105,95,104,109,104,108,98,98,110,103,105,102,96,108,99,87,94,90,105,107,113,100,100,97,98,97,95,95,115,103,100,103,110,117,93,98,110,109,66,94,103,102,106,101,113,100,103,109,109,104,111,98,101,102,98,96,110,113,94,96,108,111,104,101,103,100,106,108,103,97,79,96,94,103,108,105,114,120,100,109,108,108,113,100,101,101,97,110,104,96,119,98,102,104,84,106,108,104,105,106,108,113,101,94,106,101,107,114,113,106,111,104,98,106,117,107,106,94,98,93,95,109,98,104,107,106,102,100,102,102,109,109,111,117,99,95,112,99,97,99,108,99,101,105,103,104,107,115,117,117,101,107,104,94,101,103,105,102,99,113,103,113,107,106,107,99,98,107,92,107,108,106,112,109,102,100,100,99,101,103,95,104,97,105,114,101,102,117,105,107,102,75,106,108,104,102,109,101,106,117,76,100,112,107,111,105,99,111,94,100,100,94,109,101,115,115,111,106,99,110,105,99,98,98,97,114,98,104,89,99,97,105,104,101,116,90,112,96,119,92,108,90,98,100,113,100,99,86,96,101,106,102,103,108,105,110,103,102,94,111,105,102,86,98,103,97,96,101,87,102,103,108,103,105,96,104,104,91,95,102,96,101,107,110,107,107,116,105,101,100,105,111,108,97,102,115,117,103,114,112,103,92,107,129,108,99,94,100,108,99,109,106,100,109,105,112,113,103,89,110,101,102,98,94,106,102,101,98,100,100,103,112,98,109,118,95,93,105,99,105,98,94,103,101,120,85,74,106,117,94,109,117,108,104,98,99,101,87,109,106,99,107,104,103,96,104,90,100,103,96,106,120,91,109,98,103,103,109,129,104,91,112,86,98,99,111,91,96,103,111,106,89,103,103,106,103,110,96,101,103,118,108,108,112,90,117,96,113,109,91,100,118,114,89,91,106,101,108,101,113,102,107,128,102,105,112,86,109,96,116,85,110,95,105,113,96,96,100,89,92,92,102,104,99,102,103,107,101,98,99,99,87,101,105,111,105,103,96,88,103,99,109,103,100,107,96,101,111,105,104,113,102,92,115,119,102,102,90,95,95,89,99,91,98,106,90,124,119,107,103,102,109,106,109,86,105, +645.88647,109,103,94,114,91,87,94,103,93,108,97,101,100,103,110,89,99,102,87,101,118,115,101,104,88,90,101,119,98,122,98,101,81,99,102,98,110,106,102,104,84,104,95,98,100,106,105,112,97,95,107,112,104,106,104,110,96,88,118,99,99,110,110,116,97,118,101,91,93,106,104,87,114,96,105,107,102,90,99,106,112,91,102,100,94,105,106,105,113,101,123,108,79,99,108,98,100,97,112,113,100,110,103,104,92,103,100,96,102,91,108,76,108,95,103,92,93,101,105,113,94,105,108,100,100,97,91,100,98,105,99,108,99,94,102,104,116,100,129,95,92,125,109,94,97,109,109,99,112,105,103,92,115,95,108,107,106,113,104,100,100,105,105,113,99,102,109,109,110,97,90,97,108,103,107,97,89,100,88,90,98,112,109,100,102,103,105,100,110,108,88,101,104,100,101,107,106,99,107,105,83,95,100,100,97,94,92,101,103,115,118,90,102,109,106,98,93,111,113,105,95,103,98,102,97,102,120,108,98,98,108,104,112,99,95,101,92,113,109,96,117,107,103,121,96,94,106,104,95,117,108,94,98,107,74,101,107,92,98,104,99,105,95,103,100,107,109,101,102,106,108,91,109,111,92,111,109,103,100,106,103,106,92,100,98,103,103,109,109,89,110,110,96,102,125,113,99,100,114,111,99,109,102,106,99,127,100,110,90,110,95,104,108,112,108,102,110,99,105,113,102,98,110,116,109,108,101,88,103,114,114,97,103,97,109,102,100,101,106,97,112,106,103,90,113,109,97,98,112,102,114,95,107,118,109,103,112,105,114,106,99,106,105,96,103,108,102,110,95,118,106,111,94,94,112,96,92,110,104,107,102,100,104,113,99,108,89,96,100,87,95,112,103,104,92,96,105,103,94,101,102,99,99,96,108,113,111,108,99,103,92,98,99,103,111,101,84,88,107,113,106,95,102,116,98,102,105,95,98,100,102,118,104,110,100,99,105,104,96,110,95,109,106,105,91,105,93,98,107,98,108,95,106,98,99,95,105,106,123,98,98,105,92,109,91,111,115,97,101,86,93,98,100,96,100,97,74,103,108,114,105,105,109,114,100,102,109,104,98,92,105,94,93,112,100,94,97,110,103,105,115,108,101,119,109,101,104,108,113,106,103,82,105,100,98,105,95,99,100,109,91,92,101,107,110,104,109,93,104,107,95,97,109,102,106,104,112,96,100,110,100,98,113,100,111,109,104,109,103,107,107,110,108,104,114,102,85,105,100,100,101,100,104,128,108,98,125,104,104,110,93,104,111,102,117,108,96,106,99,106,114,91,111,101,104,107,99,117,113,105,108,111,99,92,110,93,98,104,118,101,114,91,104,99,100,104,98,110,82,100,99,95,110,96,106,99,106,97,99,102,109,101,96,102,104,114,96,107,106,107,126,105,102,104,94,115,102,95,104,96,92,112,103,106,98,94,107,101,107,102,103,121,113,97,107,113,104,105,114,123,114,111,105,100,115,109,102,106,101,98,113,108,108,103,117,110,116,112,108,107,104,108,122,104,101,91,107,93,105,112,97,107,103,108,104,103,104,116,110,92,104,99,103,108,106,98,101,98,94,104,98,104,93,110,100,101,104,98,104,121,109,106,94,104,88,105,103,99,94,103,107,105,99,98,102,103,102,94,102,106,105,103,100,113,103,95,130,110,104,92,115,97,103,111,105,92,102,100,102,104,107,100,97,99,103,114,99,109,112,75,102,109,112,106,78,96,98,108,104,97,105,105,107,107,106,108,106,122,104,109,105,106,107,105,94,98,113,96,104,113,104,100,98,103,107,118,117,103,92,98,107,103,96,108,104,87,108,109,113,87,109,108,114,95,121,108,103,94,112,112,115,95,104,101,113,96,102,108,104,115,106,110,110,98,106,101,94,111,95,99,111,99,108,99,95,109,100,107,109,98,97,101,109,101,102,102,109,112,111,104,106,110,106,100,102,105,102,101,103,101,116,106,102,113,99,106,106,112,100,96,109,109,106,106,101,104,106,101,103,117,94,103,107,106,101,113,108,105,103,96,95,96,103,101,102,101,111,108,87,105,101,116,105,105,96,94,84,96,99,99,101,114,103,109,114,97,97,106,95,113,95,100,108,100,108,108,97,106,99,114,109,104,107,92,116,92,104,110,94,114,111,98,105,104,122,104,107,109,108,97,113,95,99,107,97,116,97,94,102,103,98,99,93,95,106,100,108,67,85,96,102,105,110,103,115,100,95,106,98,105,103,131,108,101,102,109,111,110,96,101,107,95,104,111,90,107,102,101,103,102,115,115,104,100,121,98,101,103,92,104,112,102,115,93,118,104,103,101,102,103,101,115,105,103,91,108,105,101,117,109,109,99,109,105,125,102,101,104,94,100,102,112,112,109,108,104,107,125,111,102,106,112,93,103,101,103,104,106,111,104,91,98,102,105,119,117,93,91,113,117,112,99,117,100,101,101,101,105,107,99,110,99,102,105,105,103,103,107,107,98,107,105,90,99,97,99,104,108,93,104,93,107,97,116,128,116,112,104,103,104,104,115,115,88,104,107,108,105,100,102,100,102,99,100,113,95,97,104,93,111,97,112,88,94,118,97,107,109,123,116,82,106,102,88,95,105,99,99,101,104,103,109,107,112,92,104,106,95,110,116,81,104,102,104,106,96,101,109,105,103,104,107,95,101,114,106,105,105,109,87,96,103,114,105,104,106,99,112,96,95,111,101,92,99,113,107,108,128,99,104,73,88,108,104,105,96,109,109,92,86,94,104,109,104,91,105,114,107,109,108,107,98,113,96,92,105,124,109,96,100,110,112,114,105,100,89,100,94,104,96,123,97,106,105,117,98,103,110,94,112,107,106,99,109,112,102,106,105,107,110,113,120,89,115,99,95,102,98,110,111,83,109,91,93,109,106,113,99,91,111,98,101,104,105,93,99,112,96,92,95,98,110,104,92,101,98,106,107,99,102,116,116,103,104,106,119,112,110,111,107,109,107,91,104,106,107,105,92,100,108,95,87,108,104,98,90,111,98,116,112,102,104,91,103,86,99,105,98,103,118,117,99,113,100,110,99,103,99,102,96,98,106,102,107,100,113,102,115,98,110,102,109,105,114,91,97,92,96,109,109,97,112,107,98,105,95,103,97,96,107,106,98,110,107,98,106,109,105,92,103,99,109,106,106,109,86,106,102,94,110,103,109,102,102,96,95,108,95,115,110,112,108,110,117,119,107,104,103,96,102,89,97,109,97,102,105,103,104,99,107,105,102,117,108,113,107,106,104,90,102,98,101,98,109,100,102,109,99,97,103,98,104,110,110,91,105,101,113,135,113,104,98,94,100,92,96,99,101,100,142,96,101,100,106,96,117,105,102,98,109,99,106,81,94,106,99,98,104,106,98,96,95,111,94,109,131,106,108,91,107,109,99,100,87,102,99,95,113,98,100,109,105,101,88,100,103,107,105,97,93,109,102,106,109,104,102,105,113,103,110,107,109,104,107,105,96,95,113,107,96,99,102,100,103,107,118,97,92,104,105,109,106,105,100,102,103,103,94,102,98,103,98,99,100,103,120,107,101,102,112,100,108,101,97,112,93,98,111,101,104,107,107,106,109,90,89,108,90,96,99,105,98,101,109,104,105,96,110,100,109,114,99,103,101,101,73,87,109,101,109,101,115,108,115,102,84,101,104,99,100,95,110,95,109,101,104,101,107,97,104,108,113,89,103,111,101,101,103,104,112,108,111,100,101,95,83,91,102,100,105,103,109,108,100,108,101,101,105,122,106,104,97,94,95,102,107,94,112,104,116,99,97,102,113,102,103,107,100,95,108,105,74,99,100,110,109,97,104,99,100,101,100,105,91,100,107,113,96,97,93,88,106,102,108,111,96,103,100,105,91,106,107,117,97,101,105,102,90,111,104,103,94,96,90,111,106,99,92,102,103,93,92,100,95,102,114,111,97,94,98,103,101,117,98,109,109,96,95,119,105,115,111,100,107,106,107,100,110,117,88,110,79,118,92,99,99,108,105,113,90,85,103,104,82,91,100,104,74,106,104,95,101,114,108,114,113,101,99,103,99,105,102,115,97,101,100,105,105,95,110,89,90,108,102,111,99,94,104,113,106,100,104,102,99,106,94,103,95,95,105,103,117,120,107,98,100,87,118,98,98,108,108,91,104,98,68,116,98,97,109,98,88,100,95,99,93,109,108,105,98,115,93,105,101,103,104,103,94,104,105,103,98,111,108,104,100,100,88,99,104,95,109,105,97,108,100,91,108,96,104,100,111,96,96,100,99,105,111,103,105,107,90,101,87,105,107,96,87,93,102,102,98,105,107,98,96,108,106,101,101,91,104,110,115,78,113,103,107,97,101,100,98,114,104,91,91,97,102,116,99,109,110,90,97,107,109,111,99,120,95,97,100,112,115,108,105,96,96,93,109,90,113,106,91,103,111,100,109,108,113,98,92,102,105,108,93,102,117,103,106,97,108,100,104,97,109,106,105,110,101,98,87,80,94,99,116,99,109,101,99,85,108,110,108,102,107,91,92,99,96,87,88,100,117,109,103,102,101,93,100,98,106,104,107,98,98,100,97,99,103,121,103,103,97,105,106,108,104,108,98,101,109,112,99,102,91,92,105,99,92,104,95,104,95,102,106,92,100,100,100,94,105,127,102,103,102,96,108,105,106,87,94,97,97,96,101,92,92,102,99,113,100,92,93,109,98,100,98,106,102,89,104,106,87,115,107,102,95,104,105,95,112,99,98,99,121,101,120,112,103,108,88,86,105,93,75,91,100,115,95,110,102,94,101,92,108,99,101,105,103,117,104,119,100,105,109,87,107,111,113,97,118,110,109,104,100,103,106,125,93, +646.02765,104,109,73,95,94,109,110,102,106,101,104,99,99,107,112,75,93,105,101,103,115,114,95,112,109,117,103,112,115,114,98,112,97,98,114,104,98,104,105,99,102,106,90,101,98,107,107,112,105,99,94,99,100,101,117,86,89,98,101,104,102,107,98,100,106,107,110,112,102,100,91,84,88,113,96,109,92,107,66,98,98,98,110,103,96,101,97,96,100,101,99,91,101,115,112,103,96,109,98,106,91,103,97,94,101,96,97,105,87,105,89,113,115,99,109,97,99,98,112,94,99,104,99,105,83,96,106,93,117,108,118,96,100,109,107,116,101,99,100,105,98,105,96,94,100,101,84,105,98,100,99,95,97,92,95,103,88,102,101,95,95,92,105,104,104,100,121,96,108,101,96,107,89,126,117,109,85,94,122,112,93,108,97,110,100,104,115,89,102,108,109,115,108,86,98,100,95,107,100,122,105,99,106,113,109,100,97,101,105,103,101,101,100,104,100,99,99,96,106,106,108,99,106,117,96,110,99,115,103,91,118,102,100,106,109,103,104,102,112,102,97,96,106,88,106,96,93,95,107,113,99,126,97,98,103,85,100,105,102,113,90,102,107,101,97,92,100,115,90,101,114,108,96,105,101,108,98,99,106,107,65,111,105,102,97,99,105,107,110,103,102,110,103,113,112,99,103,117,125,105,102,98,98,103,88,104,100,112,117,112,109,108,120,111,107,88,111,97,95,98,113,103,121,111,104,104,102,101,97,104,106,91,120,104,90,108,98,98,108,124,99,110,100,97,100,87,92,113,105,113,81,100,105,106,94,108,102,105,126,98,92,99,103,92,94,100,93,107,106,90,113,99,113,116,108,106,107,95,103,110,113,131,91,116,89,102,117,99,100,94,112,96,100,102,100,94,103,99,100,109,92,102,101,107,112,102,108,107,111,100,91,101,103,100,103,105,92,105,102,101,107,97,98,105,98,91,103,99,88,105,104,99,105,91,105,93,100,99,106,101,100,97,96,106,91,102,95,97,111,106,102,102,111,103,97,104,110,100,109,105,102,83,108,109,86,100,100,100,99,98,98,108,98,97,110,108,118,102,103,111,102,114,99,71,98,96,96,69,99,111,106,111,104,110,101,94,97,96,99,86,109,104,98,107,101,105,100,96,111,99,111,100,96,100,116,108,114,95,92,106,107,108,104,106,87,100,109,112,91,102,93,104,95,95,99,108,100,91,102,104,85,93,116,91,99,124,98,105,110,106,108,110,124,108,104,105,98,102,126,97,103,115,97,99,92,101,95,100,94,103,95,95,109,101,70,100,94,107,113,100,106,99,103,110,109,102,109,104,98,106,122,105,101,99,119,72,110,110,103,95,92,98,114,110,102,108,92,103,97,101,105,98,106,108,103,94,102,105,101,88,111,98,110,93,105,102,106,95,102,104,106,103,100,106,94,102,103,105,104,108,108,114,100,107,97,107,103,80,113,117,90,108,95,72,97,127,111,96,103,98,117,100,102,109,95,95,109,106,105,99,108,114,93,104,100,98,101,106,86,99,104,107,104,110,119,101,109,105,94,94,101,97,109,96,102,96,109,92,102,103,107,104,105,97,95,113,105,116,104,104,104,91,104,99,96,107,105,98,97,90,107,99,94,99,99,85,103,111,113,105,107,102,118,106,97,113,106,94,109,99,117,101,106,109,103,102,105,103,95,102,121,99,91,110,101,101,103,100,104,105,98,96,108,113,89,111,104,98,101,87,99,100,120,101,102,108,97,99,96,95,104,107,102,104,112,113,100,100,105,114,107,103,116,118,105,104,96,105,109,75,93,101,96,104,105,103,109,104,106,97,113,110,102,118,100,102,102,98,92,102,108,112,86,110,98,101,106,100,108,100,117,102,109,106,113,98,124,100,114,100,66,114,95,118,102,105,97,105,101,97,99,104,104,89,94,99,102,109,91,112,97,90,107,113,101,92,93,113,110,110,116,99,103,103,111,86,101,101,89,107,103,112,82,95,103,96,72,104,105,106,96,95,102,99,99,95,96,102,105,109,105,107,98,103,116,115,102,108,106,102,101,105,113,95,108,99,102,97,90,105,107,96,106,124,113,96,107,107,92,88,128,107,105,102,95,105,98,94,114,105,96,106,107,99,105,97,96,99,108,96,101,102,106,114,102,98,100,98,93,96,100,99,108,117,106,104,105,91,97,97,111,95,96,104,99,92,95,109,96,108,113,106,102,118,95,105,96,102,97,101,107,103,103,108,102,130,98,96,100,120,94,96,93,100,96,106,106,110,98,103,92,126,106,110,98,102,75,99,111,102,106,107,103,94,97,113,91,113,96,92,97,100,105,101,100,99,111,98,103,95,103,106,105,91,109,88,111,106,105,109,101,100,110,103,105,106,132,90,108,112,112,95,89,111,97,105,98,112,95,109,104,116,109,92,108,105,103,99,92,103,99,115,96,102,99,105,106,96,117,102,102,104,99,97,107,93,98,115,110,103,111,105,112,108,105,116,92,116,98,80,105,113,98,104,104,90,105,105,98,109,95,105,104,97,104,109,99,109,89,108,98,112,106,99,106,98,80,113,103,88,92,99,105,102,89,103,104,107,98,101,100,99,115,112,123,102,103,97,89,105,97,107,102,105,103,113,112,122,103,97,113,113,115,102,105,109,107,103,101,104,99,104,105,112,95,93,109,106,99,92,95,101,99,111,99,92,94,105,103,100,104,116,100,106,97,99,110,112,110,102,103,103,114,109,105,100,109,102,100,96,94,111,100,109,103,113,101,104,100,106,99,101,96,90,109,107,114,82,100,101,84,102,118,91,103,114,101,101,105,104,108,95,96,91,87,110,103,104,100,99,102,106,94,96,110,104,101,98,106,111,98,104,97,104,100,110,108,94,102,107,99,115,110,112,107,107,98,108,105,120,102,96,97,98,101,106,105,109,94,107,101,83,115,99,98,106,93,117,98,101,88,102,110,95,96,108,99,97,104,94,101,102,104,99,116,96,125,101,97,109,106,87,100,120,104,111,101,102,104,116,92,107,100,115,94,120,92,99,103,104,97,113,102,122,109,104,104,100,101,107,85,109,106,105,103,109,99,103,100,92,104,94,109,110,113,92,95,106,109,111,101,95,104,107,109,116,103,105,96,101,105,104,111,111,108,112,108,77,101,105,110,113,99,110,98,91,100,125,105,105,103,108,110,110,83,96,95,102,120,102,106,105,106,102,95,104,106,110,113,105,94,108,112,116,114,95,92,114,109,111,87,120,108,100,106,98,109,112,112,117,95,98,117,98,116,112,112,101,105,97,105,108,99,95,98,104,98,95,107,91,105,110,94,100,101,115,99,108,102,99,112,102,109,106,104,105,100,101,105,105,107,109,106,106,109,96,109,106,103,101,102,106,104,103,102,96,88,106,108,98,98,108,102,100,105,112,105,95,106,100,103,92,104,103,100,118,103,113,115,90,102,103,110,101,113,107,100,93,98,97,120,96,105,115,109,107,103,118,94,94,106,102,103,101,85,98,110,104,92,112,101,99,102,87,102,97,103,96,120,102,108,109,111,97,105,96,95,106,112,92,107,101,87,85,102,96,92,104,90,101,93,99,115,105,102,97,105,106,96,105,98,101,117,114,92,99,94,98,104,119,102,109,74,111,99,99,105,108,102,109,112,114,98,101,105,104,115,99,82,106,100,95,104,112,104,102,109,97,116,112,94,101,103,88,83,108,99,94,88,100,116,94,99,106,107,105,104,102,99,98,110,94,113,106,104,108,110,100,125,94,98,95,94,105,103,97,106,99,96,103,106,116,105,100,98,106,105,96,106,96,108,110,101,101,107,97,106,102,96,98,111,108,90,106,94,113,100,100,117,103,92,96,112,94,104,101,113,106,101,106,99,94,110,117,99,101,118,92,104,103,122,84,104,127,103,106,120,103,99,116,96,107,74,105,102,95,105,99,93,86,99,119,107,97,118,102,101,98,96,92,98,106,101,106,107,94,100,93,111,107,112,103,102,103,98,102,114,84,98,127,106,110,95,102,103,104,106,98,101,87,90,90,98,98,105,93,102,108,100,85,101,112,103,100,111,96,93,97,101,102,105,96,97,106,92,109,98,99,107,104,96,101,93,106,100,113,96,106,105,108,108,101,109,98,99,91,114,104,106,109,106,99,103,103,111,103,96,104,112,100,103,97,107,109,105,102,98,102,106,109,112,116,91,94,85,105,99,97,108,101,92,109,103,94,91,110,104,88,109,98,98,99,111,99,104,91,105,105,99,113,101,114,98,100,108,111,110,96,103,98,99,106,99,104,99,109,68,95,101,99,97,109,113,100,100,106,109,113,108,106,101,98,101,98,104,102,105,110,111,89,94,116,114,107,85,98,107,112,113,109,95,103,91,98,109,104,100,106,101,92,96,104,84,106,108,101,98,99,94,105,121,104,91,99,109,97,105,102,95,101,105,99,92,111,105,115,94,109,104,83,105,108,110,106,111,106,129,94,100,94,108,98,105,110,116,103,101,109,99,100,115,112,92,100,103,102,103,103,95,103,104,91,121,106,109,101,88,106,95,101,107,103,104,96,108,104,95,107,97,101,102,90,112,106,87,107,91,100,109,82,100,79,101,106,103,100,116,104,103,93,100,90,105,104,98,111,100,108,105,105,106,97,115,97,127,103,98,104,108,94,97,105,100,98,98,103,115,104,108,99,100,87,99,86,102,108,111,102,105,102,101,92,102,96,79,109,85,108,97,105,113,111,96,98,104,67,90,107,94,107,109,104,110,107,116,103,84,90,93,101,109,98,110,92,97,109,108,90,97,120,119,116,120,106,79,102,113,105,125,94,94,98,100,99,106,96,99,109,99,105,77,95,100,100,94,115,88,94,93,82, +646.16882,115,115,109,98,87,106,100,112,98,114,96,102,101,99,111,103,107,129,103,119,103,92,101,110,95,108,107,99,98,116,109,110,101,97,101,101,102,104,115,108,92,107,103,107,116,103,110,102,105,108,112,100,100,110,103,97,99,102,113,84,105,108,104,101,101,117,101,102,104,112,101,107,107,104,95,113,106,98,111,107,101,106,90,104,108,98,106,72,103,105,108,104,123,111,112,113,94,94,99,97,113,114,99,108,112,106,109,98,105,117,97,112,107,119,104,110,100,106,100,98,101,108,107,127,127,117,112,103,111,107,100,92,89,121,102,106,103,117,97,101,112,96,105,105,117,97,106,109,95,101,104,102,102,91,96,99,100,103,108,97,105,100,105,105,111,107,103,107,104,95,104,97,100,104,108,100,111,93,89,94,109,118,107,110,107,97,115,102,101,101,106,106,111,107,95,110,104,108,103,97,107,101,113,117,99,95,95,113,101,81,95,109,113,101,96,117,108,113,107,99,110,103,98,102,113,133,110,113,107,103,104,95,106,105,110,95,118,111,112,109,109,90,109,107,100,94,102,93,111,102,117,110,97,97,102,95,106,101,99,103,85,123,98,106,91,107,89,106,117,105,97,92,109,85,107,109,113,116,95,100,95,98,115,98,105,111,96,99,112,106,112,101,112,103,79,112,106,109,110,113,101,99,99,108,96,106,105,105,106,101,91,119,117,129,102,108,100,109,107,102,108,88,104,106,97,106,103,104,103,111,116,105,102,108,104,103,110,99,119,101,99,98,106,105,104,104,104,116,103,118,96,100,104,121,112,98,105,110,133,95,111,102,104,91,102,109,95,100,96,100,105,109,125,110,109,100,107,94,105,108,99,90,100,114,109,100,109,105,111,108,126,103,112,108,106,97,95,112,100,108,96,96,100,104,108,113,101,100,113,95,106,99,107,110,127,96,104,95,120,99,107,107,112,113,103,96,108,98,99,106,96,100,96,105,100,103,97,123,97,105,105,94,112,113,94,96,104,94,103,110,90,95,118,103,95,96,113,100,103,105,95,100,114,108,97,108,116,84,90,104,104,106,110,97,98,97,88,96,109,99,110,102,106,103,105,77,106,102,101,103,106,109,97,102,109,95,106,104,114,115,103,107,110,102,84,113,100,77,109,103,105,104,98,101,98,113,111,101,103,110,96,92,100,103,102,106,106,107,101,100,98,111,96,109,95,98,105,97,110,110,118,101,106,105,107,103,93,85,100,112,108,107,108,86,87,99,113,108,105,98,105,103,106,114,98,95,122,109,105,96,94,111,106,119,106,84,105,104,103,95,111,107,101,96,104,104,100,109,98,114,111,101,110,105,108,99,96,103,122,102,102,104,114,100,100,109,106,101,96,103,103,74,108,104,121,94,106,108,113,98,100,106,111,96,115,95,101,108,114,85,106,94,114,100,96,104,68,95,97,93,114,101,101,88,111,104,102,113,109,115,118,102,98,104,101,109,105,107,107,95,103,100,114,106,112,103,110,99,105,107,108,104,105,99,119,115,97,94,111,110,110,106,108,97,99,95,100,108,108,115,109,109,98,114,112,101,113,109,108,99,116,98,104,111,103,100,98,115,100,105,106,96,110,113,107,104,112,107,101,108,96,100,96,114,110,96,106,109,109,115,105,111,117,108,105,94,100,102,113,120,103,99,101,112,110,96,103,106,100,102,107,105,110,108,98,91,102,97,106,99,92,102,99,107,104,102,107,105,109,116,104,112,105,102,96,119,99,102,100,106,100,116,113,120,107,110,95,116,117,107,100,107,112,112,104,113,105,100,102,107,102,111,92,97,104,102,104,90,110,104,110,95,118,103,110,100,102,106,102,108,103,98,109,88,102,114,103,101,111,99,107,110,119,116,99,101,110,107,100,96,83,113,108,108,106,113,100,104,104,96,109,97,102,109,81,109,108,114,107,109,108,108,105,105,106,104,95,104,99,108,106,106,95,107,108,109,108,98,105,104,97,106,107,107,96,85,93,106,107,99,99,114,101,118,113,99,93,120,99,114,102,113,109,113,102,96,100,108,91,105,98,109,109,95,95,101,101,75,116,108,98,117,105,101,122,100,105,100,109,102,98,105,113,123,103,109,100,95,104,103,110,108,107,100,104,94,106,103,116,103,111,102,113,117,96,100,101,104,100,118,117,110,107,104,117,103,112,101,104,95,102,104,99,109,107,113,103,114,99,97,101,111,85,121,88,97,94,100,104,108,99,106,99,104,93,110,98,93,111,102,108,102,105,102,106,109,116,104,88,112,96,103,101,103,90,116,100,117,108,103,112,117,102,95,83,106,101,105,107,98,70,108,99,92,102,99,103,108,113,110,110,94,100,117,118,109,117,94,107,113,111,121,91,128,107,119,101,97,110,95,101,108,117,90,100,96,93,99,114,119,95,96,102,142,100,97,92,100,91,106,99,105,101,103,109,99,90,101,111,95,102,84,104,104,75,113,88,112,109,116,103,99,105,105,109,99,103,104,95,119,104,99,110,95,109,109,99,121,101,106,77,97,104,101,95,89,95,104,99,104,113,114,109,88,110,107,112,110,91,91,104,104,99,112,112,103,98,95,88,104,110,108,109,101,105,103,99,88,88,114,111,85,102,99,99,137,101,95,106,104,106,99,102,108,110,101,107,109,109,99,103,84,112,99,96,105,126,101,105,108,112,101,106,102,119,105,95,107,98,108,98,93,99,116,94,110,110,120,105,114,95,107,108,108,107,102,101,112,112,96,112,113,104,103,100,99,104,95,95,104,99,100,88,114,104,99,106,108,101,106,94,93,119,83,97,103,103,109,100,101,89,95,84,92,93,109,114,104,102,103,91,110,108,103,118,121,117,106,97,109,105,104,100,115,97,109,99,103,103,109,104,117,113,96,104,106,98,98,110,104,102,111,103,106,106,107,110,101,106,72,108,105,107,104,103,102,107,106,107,100,94,102,97,99,103,109,104,96,100,114,105,96,121,93,117,83,106,107,97,90,93,105,93,96,110,95,109,91,98,99,102,112,99,105,103,109,105,100,93,101,110,112,102,99,103,99,97,102,100,101,113,110,97,88,96,92,116,105,107,102,106,102,98,110,105,91,94,100,109,114,110,96,104,92,108,100,97,99,107,111,101,104,117,110,87,105,99,104,116,110,115,96,99,95,121,107,113,99,104,101,91,103,101,104,108,105,107,103,98,111,93,120,99,110,93,98,100,102,104,98,109,112,96,108,113,101,100,140,107,110,70,93,104,101,93,112,99,113,105,121,92,99,95,110,111,107,96,111,102,109,96,108,99,101,84,98,100,106,103,110,115,109,104,90,107,99,106,102,105,105,113,105,98,120,101,88,104,103,104,99,101,109,102,107,96,108,105,105,100,93,92,121,107,94,93,97,97,103,97,98,112,115,102,100,96,105,98,105,101,106,102,108,108,106,100,97,106,75,84,78,106,96,109,87,99,113,90,100,104,92,107,104,95,107,108,109,98,95,91,100,108,105,103,103,116,114,99,107,118,97,101,116,113,112,96,104,111,100,101,108,116,106,122,113,111,99,109,105,90,101,100,101,105,101,102,97,100,105,100,95,100,115,101,93,95,92,104,101,103,107,106,100,100,104,104,102,92,99,95,111,96,111,109,101,95,95,100,108,108,100,109,113,104,109,101,95,104,106,108,109,96,111,112,102,105,100,96,106,106,103,103,98,103,103,86,114,104,98,99,113,110,102,82,101,111,110,105,100,104,108,112,103,96,108,114,99,102,112,102,88,96,106,93,101,99,107,100,96,110,106,109,95,72,101,99,100,106,104,105,117,88,113,104,104,105,107,109,100,97,109,107,106,100,113,108,102,98,110,108,93,114,97,89,100,116,90,102,97,94,107,100,99,102,103,105,99,104,97,106,102,97,102,105,105,100,110,105,110,99,99,95,104,103,102,99,102,102,100,107,90,84,108,90,117,107,91,107,106,96,104,102,107,102,88,94,100,101,99,113,95,106,106,91,102,96,114,93,98,110,112,100,98,95,97,103,121,104,102,118,110,98,102,117,103,92,109,95,109,85,88,114,105,102,93,97,120,70,108,92,102,109,100,107,95,104,108,100,87,101,101,107,91,93,108,94,103,99,102,112,92,101,98,113,94,105,117,108,100,70,100,97,110,108,105,101,103,82,94,99,107,123,124,98,107,111,102,101,103,101,98,100,98,104,112,102,99,105,100,114,99,90,104,108,106,105,105,104,98,95,100,101,98,107,99,106,111,95,107,95,105,98,108,90,100,122,93,105,94,99,99,111,114,114,116,73,104,103,103,100,92,99,102,115,103,95,104,128,104,106,100,102,112,108,107,104,109,101,109,102,103,99,106,100,96,109,98,98,105,109,77,113,96,113,95,101,100,97,112,113,113,111,103,87,103,85,111,104,105,104,101,110,120,105,99,106,102,98,111,119,126,96,99,103,102,88,98,113,103,100,105,113,100,107,111,97,102,100,98,118,95,95,94,88,112,110,101,109,102,99,104,105,107,113,108,97,99,113,110,107,104,104,103,112,105,112,97,99,103,97,98,105,107,88,105,101,87,107,101,107,113,99,108,101,99,94,111,109,120,103,111,113,125,110,102,101,94,107,100,107,102,98,106,100,118,100,103,99,117,93,100,104,96,105,111,101,113,110,110,100,121,116,102,114,105,93,97,108,104,95,97,102,112,108,107,106,111,99,111,101,113,108,89,113,124,109,104,97,103,97,105,94,103,99,111,105,102,101,92,98,100,103,100,116,101,93,102,104,103,94,99,109,100,95,100,78,98,100,106,103,96,102,120,104,113,103,96,103,104,109,88,107,103,103,98,109,77,95,101,98,99,94,98,116,109,97,94,105,99,84,87, +646.31,107,103,92,103,98,99,100,100,100,128,94,104,87,99,99,113,103,104,102,85,106,107,108,119,105,102,117,95,126,103,106,64,97,106,114,106,91,90,103,100,98,75,101,110,110,100,106,109,97,98,96,102,108,110,112,96,106,100,112,109,98,101,99,91,92,108,113,114,103,104,113,105,102,100,96,109,93,104,113,105,103,102,108,105,87,102,108,104,100,97,95,101,132,106,103,103,106,92,103,103,108,114,84,104,101,106,95,82,100,95,112,98,113,111,106,92,108,102,100,99,98,103,99,104,101,111,105,108,118,95,109,112,96,105,111,103,129,88,111,93,96,97,99,94,109,103,105,111,123,107,118,104,101,96,110,103,102,106,105,100,94,99,102,98,108,100,93,91,73,105,103,119,102,101,113,95,105,99,105,89,113,126,103,106,99,106,117,92,110,107,110,112,90,106,121,106,106,101,105,132,104,101,116,96,105,116,127,101,112,113,107,93,99,102,101,93,93,104,100,99,106,107,108,109,94,112,121,102,104,103,106,103,108,100,107,118,99,116,108,100,102,100,116,105,99,100,106,97,99,114,97,112,98,106,101,100,125,95,87,101,95,113,109,101,93,116,90,122,109,102,107,106,106,103,109,107,105,95,97,95,92,116,95,117,108,109,86,101,119,104,103,102,113,113,107,100,105,122,120,96,123,109,125,105,103,109,98,90,88,107,109,99,113,106,106,100,108,103,98,98,105,99,125,103,112,103,104,93,117,119,105,102,110,109,113,105,99,105,112,98,105,91,108,105,108,108,86,108,110,98,111,85,94,98,92,106,102,110,103,113,103,100,94,106,99,97,101,104,106,112,102,108,106,98,108,93,92,101,106,118,118,87,102,88,107,105,106,105,102,97,112,108,85,97,100,102,106,103,108,102,101,109,109,99,104,104,103,96,102,110,118,96,101,99,105,118,113,109,111,110,85,100,96,94,99,97,94,104,97,108,96,97,108,96,108,98,71,123,101,108,110,100,101,106,99,103,103,105,93,72,106,97,123,111,104,105,105,116,109,108,112,107,112,108,114,100,105,113,120,99,100,102,105,96,101,99,99,112,90,104,111,100,105,116,100,101,107,118,100,105,115,98,112,105,104,103,93,109,106,102,116,103,84,128,108,100,97,98,133,108,94,108,114,106,114,110,119,96,94,99,113,72,111,114,91,99,101,106,113,99,101,107,102,107,99,112,110,103,116,100,113,96,106,103,103,110,120,94,109,110,108,104,106,101,102,99,94,106,95,100,101,106,90,108,95,105,104,99,114,103,92,104,101,109,85,96,110,107,100,95,108,96,111,107,99,96,113,111,107,100,109,106,112,111,111,106,107,102,93,109,96,121,101,98,106,97,103,113,113,109,98,104,108,106,103,103,116,101,96,99,98,99,105,93,102,103,106,93,111,129,98,104,104,109,101,100,103,100,98,97,122,118,99,102,100,99,97,105,107,121,109,106,104,94,111,108,103,109,107,110,118,104,109,103,99,96,101,100,102,110,112,111,112,104,108,108,110,96,104,113,96,115,107,93,98,99,107,96,97,97,102,100,112,100,95,111,99,110,90,106,105,96,96,101,89,112,112,103,103,100,109,104,108,105,93,108,102,107,118,108,113,91,105,85,105,97,111,115,106,106,109,106,113,102,98,110,108,110,94,103,108,105,98,111,111,103,98,109,104,103,113,104,109,106,104,110,120,100,105,107,101,102,104,100,107,110,102,98,105,100,109,111,104,98,101,105,109,100,99,113,114,98,112,128,108,105,107,101,96,112,103,100,112,95,115,109,110,92,96,114,106,98,97,106,110,106,103,113,107,113,96,107,108,88,114,105,112,102,106,109,117,107,102,103,99,105,108,107,104,102,103,100,104,97,100,123,104,100,99,110,111,107,105,99,86,104,99,98,96,104,112,97,102,121,95,106,119,107,98,97,118,108,106,102,96,94,101,100,120,98,105,112,99,111,113,95,107,95,104,103,106,108,112,100,68,108,101,115,113,97,105,114,108,113,90,103,101,109,111,104,107,104,113,110,96,96,100,102,107,107,114,112,117,113,98,107,95,108,97,105,104,112,92,122,110,104,113,97,108,96,96,105,99,119,98,111,104,113,112,114,108,101,96,93,107,106,102,107,104,106,126,105,111,109,96,105,109,103,95,120,102,96,106,106,106,109,108,96,101,106,94,100,118,80,99,109,108,102,108,106,85,109,101,93,95,105,98,107,91,96,113,94,124,108,108,104,102,113,96,99,109,102,101,105,99,106,106,94,98,113,99,111,91,106,102,109,117,134,108,102,104,104,105,98,106,108,76,106,103,97,110,109,109,111,101,91,107,95,108,97,108,112,105,111,114,94,113,106,108,112,101,110,101,105,115,112,105,108,113,108,102,101,95,112,98,99,102,113,100,99,112,93,107,107,105,113,107,104,110,104,99,105,93,94,106,109,95,105,106,105,113,98,115,94,103,100,105,108,112,104,108,105,110,94,128,101,103,104,96,97,95,100,107,100,112,104,98,99,103,107,107,98,107,102,101,98,102,109,105,116,101,107,106,90,100,97,106,98,86,103,101,102,94,102,110,102,100,105,107,99,93,117,110,99,91,107,104,115,122,98,102,101,96,92,113,105,121,101,107,106,96,103,100,103,97,112,105,117,98,102,109,114,94,98,105,99,103,105,108,101,106,98,105,107,96,106,109,102,100,99,104,88,100,112,105,97,104,110,102,106,105,110,84,109,107,108,103,109,96,91,106,120,106,109,109,96,91,105,104,99,102,123,104,100,108,115,106,96,110,122,100,104,106,92,105,107,107,108,95,106,89,113,110,103,104,109,104,103,91,117,105,98,97,101,103,97,102,102,99,107,95,111,98,114,102,97,107,100,104,102,109,96,112,103,65,104,107,109,107,103,112,103,100,96,106,106,113,112,96,105,114,106,109,99,116,113,107,101,103,95,98,110,98,96,116,99,106,108,109,107,127,108,106,105,88,111,108,112,114,100,114,98,115,111,115,113,102,108,107,101,100,103,113,97,110,102,114,106,117,104,110,95,106,111,97,99,102,112,110,101,112,106,112,110,100,116,103,106,105,101,104,104,108,118,101,103,93,102,116,101,84,106,107,106,103,111,108,109,99,113,108,99,102,102,102,109,96,97,113,112,78,108,98,106,107,111,104,113,114,112,100,106,106,106,100,108,107,96,116,116,100,103,104,106,108,98,101,94,116,104,120,103,116,112,116,98,94,116,105,123,114,98,116,98,96,97,111,100,108,96,95,105,101,106,102,105,115,94,103,103,103,101,101,95,105,103,97,96,101,109,108,106,97,113,111,119,102,118,98,108,111,102,99,95,102,93,103,100,106,88,104,101,104,104,95,102,99,103,113,99,70,107,120,98,100,105,93,99,101,107,95,102,96,100,98,104,101,99,105,107,92,102,103,98,91,99,108,98,104,108,113,113,127,104,110,103,108,104,112,105,109,99,92,107,103,95,98,92,95,90,102,102,105,99,96,131,117,102,98,99,101,108,100,103,109,109,113,99,102,109,109,102,84,107,82,103,108,101,115,93,95,95,94,109,101,94,76,108,116,105,96,101,100,114,104,109,99,95,109,123,119,103,109,105,103,110,108,103,98,103,91,106,108,108,95,96,113,107,112,96,104,108,115,111,96,105,101,96,103,112,111,88,96,99,102,105,109,110,109,93,96,89,95,107,96,104,100,114,98,100,121,116,107,119,102,120,101,101,112,111,118,95,101,103,97,88,106,96,112,116,98,102,104,100,107,107,104,112,99,102,119,105,106,98,109,119,96,100,102,120,107,128,112,96,97,108,118,100,93,99,106,100,105,103,101,92,108,104,101,95,105,108,100,97,108,96,99,110,87,115,100,94,102,103,93,96,113,92,106,106,72,96,100,110,103,98,101,108,92,107,101,99,103,108,90,112,100,111,100,91,109,115,98,113,98,97,112,102,104,108,110,105,105,108,105,98,102,107,107,99,110,98,113,107,111,99,109,101,113,102,101,110,100,108,109,107,105,113,96,107,83,106,108,99,99,104,96,106,101,101,100,113,98,104,105,104,98,109,106,111,117,97,113,113,90,105,109,97,101,96,103,99,98,106,104,104,96,77,106,101,96,106,107,104,112,103,105,88,102,96,106,106,121,103,104,115,91,103,103,100,104,99,96,103,106,106,102,100,104,112,110,95,100,101,105,105,108,105,109,101,98,103,106,101,112,112,106,101,107,102,109,110,107,103,112,116,117,95,98,111,130,92,115,111,102,133,100,113,102,83,115,104,112,108,102,109,101,104,97,111,119,100,108,105,102,107,108,99,98,99,106,125,101,115,100,100,108,105,108,106,96,106,100,113,103,99,109,80,105,99,100,101,86,97,104,104,98,111,100,109,110,95,93,102,101,91,97,94,109,115,108,105,89,104,104,102,115,111,101,99,97,102,105,109,112,96,99,102,103,99,97,94,102,114,110,104,104,98,104,90,103,98,97,105,103,108,101,98,102,103,97,95,102,95,106,100,101,96,111,119,103,106,100,118,100,100,109,102,102,101,101,93,99,106,103,86,87,106,100,99,107,96,110,115,111,117,95,105,92,99,114,101,103,102,100,108,107,98,109,112,101,102,113,105,120,103,71,108,95,99,109,101,111,92,106,105,104,102,102,109,112,111,95,102,124,102,105,95,102,97,93,107,100,84,106,102,104,102,123,102,113,126,95,98,111,87,109,97,108,116,104,103,86,110,99,107,104,84,99,98,97,112,111,89,91,98,102,111,99,117,123,113,105,107,110,108,106,119,102,111,93,112,100,91,102,104,98,107,102,106,81,101,99,98,96,92,107,99,99,105,99,107,105,101,66,101,99,102,103,96, +646.45117,92,96,92,95,91,97,93,111,102,102,95,106,96,104,100,101,96,112,103,113,115,98,96,106,100,109,105,113,90,110,96,102,92,92,119,95,101,109,97,103,101,108,104,108,99,115,110,95,104,105,115,102,107,98,92,96,104,94,105,90,101,118,106,83,101,81,104,106,102,101,100,92,113,99,99,100,97,98,105,100,112,98,106,102,94,118,102,101,107,91,98,90,97,100,90,100,98,98,101,95,104,114,95,105,106,105,103,110,100,92,113,109,97,96,111,105,95,102,99,95,97,102,109,116,101,105,122,75,112,104,106,91,100,99,90,109,105,100,97,115,93,110,104,97,100,91,109,96,101,95,103,98,109,88,103,101,117,100,98,101,89,106,103,117,99,95,108,108,98,105,87,72,95,111,110,110,93,96,107,82,107,106,116,110,103,101,108,110,95,103,106,118,103,104,92,110,99,99,95,76,108,111,101,104,103,108,105,91,109,111,109,103,96,101,90,104,98,112,92,105,114,104,102,101,108,100,101,108,107,124,97,105,94,109,109,108,107,111,103,104,101,82,124,104,102,110,102,107,116,110,104,102,95,101,95,102,101,112,108,76,108,97,111,95,88,99,100,114,99,105,103,91,100,87,117,96,101,110,108,98,99,102,109,117,109,113,99,100,106,106,90,92,98,99,120,99,121,101,114,100,96,105,101,94,86,110,105,117,118,96,101,104,104,104,122,115,109,100,95,106,106,102,98,107,105,97,83,98,104,104,90,104,86,106,102,100,121,96,109,113,101,95,114,103,105,107,129,105,119,106,94,106,113,116,109,98,92,91,104,92,100,102,87,99,101,95,96,95,113,113,101,97,113,106,100,98,96,91,96,97,108,91,91,97,99,94,104,103,100,102,114,99,98,118,101,100,100,115,103,103,103,90,102,86,99,93,108,99,105,107,106,100,101,107,97,103,91,113,103,95,100,95,93,105,108,86,91,98,101,94,97,103,101,96,93,96,107,97,96,93,100,90,102,96,87,106,97,95,101,105,90,106,111,97,108,102,105,113,101,105,100,98,110,107,116,101,102,115,102,110,101,106,107,112,101,91,102,109,96,115,103,102,115,95,112,100,91,114,97,104,105,103,103,113,88,92,103,126,90,96,107,108,110,102,97,101,90,109,108,108,104,103,99,104,91,101,104,109,105,94,110,98,102,91,107,109,107,103,87,106,83,101,111,96,100,102,92,123,110,106,103,108,102,96,104,95,108,104,106,101,101,100,99,113,91,105,109,117,104,106,103,115,94,102,99,108,98,109,95,114,95,100,125,108,97,109,128,98,95,100,79,95,76,98,102,98,114,99,111,98,113,100,98,109,118,95,98,99,111,87,110,102,103,97,95,104,99,100,90,108,67,110,97,105,112,115,106,102,108,109,103,97,97,110,96,100,102,102,101,104,95,102,98,102,99,95,106,112,97,101,103,100,95,111,93,86,107,92,115,104,105,110,110,105,103,107,103,104,116,103,120,105,105,109,110,80,111,104,96,91,115,94,89,115,99,107,101,90,105,97,102,106,118,97,104,104,106,131,90,97,109,113,94,106,106,107,103,108,110,99,134,94,63,96,101,101,94,97,90,108,97,117,94,92,91,113,103,108,116,122,114,95,93,105,103,94,105,91,92,113,99,108,92,107,100,102,109,102,105,106,108,124,100,110,98,90,95,95,105,103,96,104,105,99,118,108,98,96,113,97,97,106,95,112,90,102,88,105,109,91,114,102,105,98,102,113,108,106,106,98,105,99,121,109,103,107,104,106,111,108,98,96,95,94,102,100,112,109,98,125,106,117,90,101,105,106,103,109,107,102,134,100,102,100,110,98,101,106,90,94,104,109,112,121,100,105,100,104,104,99,105,99,108,102,103,104,110,108,113,107,96,108,114,94,98,104,98,101,75,103,104,115,90,103,100,97,114,95,103,100,95,101,109,107,110,99,80,111,112,103,99,110,96,104,110,104,106,94,96,94,104,98,95,107,101,119,99,105,108,104,104,122,95,101,81,101,99,94,100,98,99,105,111,108,106,95,103,99,116,99,99,97,107,100,95,104,109,104,102,98,90,105,105,96,102,113,108,94,97,93,94,91,96,109,120,108,109,105,91,107,103,114,104,102,91,98,134,109,107,104,100,87,108,100,105,95,108,98,110,95,109,110,100,74,101,101,83,92,102,123,98,105,99,104,101,100,97,93,83,105,104,116,91,96,106,106,102,106,98,95,89,110,100,95,100,102,90,111,104,91,114,102,96,107,117,111,107,105,99,102,107,106,95,99,110,103,130,91,101,100,111,109,105,113,95,118,109,109,104,105,102,82,85,106,109,91,108,102,89,99,103,86,94,105,98,101,112,90,107,105,119,100,108,110,105,107,96,116,99,111,93,99,99,94,91,98,93,93,110,105,111,106,122,116,98,107,102,106,100,98,97,104,101,112,109,96,104,104,116,108,110,85,107,98,99,104,86,106,93,92,82,103,100,105,104,109,104,103,107,106,91,107,94,104,101,85,100,105,91,94,125,108,107,111,96,100,83,103,103,109,105,123,105,100,117,112,111,110,96,107,99,110,103,110,107,105,102,116,114,83,114,91,112,104,100,105,99,90,98,110,112,95,102,107,104,109,108,100,111,95,110,108,102,102,79,104,109,105,101,107,112,107,103,107,105,101,107,112,105,113,103,101,92,115,109,97,108,105,98,105,102,99,112,100,109,96,111,100,108,106,108,100,95,106,101,102,104,99,110,109,114,117,94,93,102,107,94,107,93,109,93,117,101,111,117,101,102,95,115,105,101,96,100,96,103,92,108,100,121,104,107,100,97,105,107,101,99,98,103,112,99,95,103,97,142,100,96,125,99,102,116,99,106,106,101,101,103,112,105,111,98,105,112,98,99,95,105,91,109,106,106,105,105,106,87,109,104,97,103,108,107,97,104,107,116,90,116,98,97,105,98,99,96,96,103,105,101,105,107,88,115,101,106,108,113,104,102,98,108,109,104,92,106,101,118,108,105,107,94,108,106,102,99,100,104,100,100,106,110,103,121,99,111,97,100,100,115,87,105,108,100,110,97,105,114,102,106,96,109,124,102,94,94,84,104,96,116,101,108,99,73,90,118,102,102,114,99,99,100,104,107,99,96,105,98,109,103,99,103,106,105,106,108,106,98,115,100,99,98,111,104,104,107,106,103,96,104,104,101,75,99,90,95,98,111,90,102,105,121,101,94,98,106,113,104,92,113,114,109,106,99,100,90,93,99,99,107,97,100,102,95,93,111,98,98,107,103,128,97,100,118,102,100,100,113,102,102,106,115,102,102,104,102,86,101,115,106,99,104,111,105,100,99,99,103,109,103,113,113,97,97,105,99,104,113,65,108,108,106,108,86,98,105,106,104,104,101,112,103,90,95,102,103,103,99,97,103,100,84,106,105,99,106,92,106,107,107,75,112,101,103,106,101,87,101,101,120,105,109,106,100,95,100,100,114,97,109,111,95,101,111,104,73,124,91,110,111,101,99,107,104,111,105,98,109,114,100,91,96,91,99,102,108,105,97,108,108,96,97,99,102,99,116,99,83,96,98,108,101,100,91,136,112,111,103,102,102,89,104,97,83,102,106,99,99,106,106,96,104,104,110,131,93,96,96,108,103,106,113,95,104,81,91,113,112,123,102,101,95,108,95,105,99,107,97,102,102,106,99,107,100,106,97,96,98,111,99,95,92,108,102,109,109,97,121,109,102,102,109,102,96,103,102,109,110,107,110,94,91,109,98,95,91,115,105,107,97,121,83,117,111,116,105,92,95,109,95,101,108,93,93,104,94,98,112,112,96,97,96,97,109,98,102,101,114,105,110,110,103,98,92,97,104,102,103,98,99,100,101,101,95,95,125,105,97,88,87,103,91,110,99,103,96,113,99,98,109,110,112,108,83,105,100,94,99,107,95,114,93,91,96,102,110,121,93,110,102,86,117,91,99,108,101,94,113,97,103,92,105,104,103,94,88,109,102,96,111,124,111,114,106,110,108,99,100,105,106,102,100,99,106,102,120,112,105,96,100,108,91,113,99,113,87,115,103,111,109,111,106,99,105,105,97,95,79,99,103,95,112,115,96,100,107,107,110,105,100,99,100,98,107,102,97,90,111,105,103,107,103,95,103,95,91,112,112,112,112,106,103,104,113,91,110,100,112,109,92,104,96,106,105,106,117,107,95,109,97,117,99,85,98,106,113,96,108,100,99,99,107,99,112,110,115,100,107,101,118,101,93,116,103,110,110,118,100,100,101,113,111,100,127,99,99,103,109,83,107,100,98,102,104,102,109,100,95,106,108,107,110,98,103,110,117,109,103,112,112,90,95,104,89,107,95,110,101,95,109,120,105,103,93,94,113,103,92,101,111,90,104,101,106,105,103,97,95,97,106,101,103,105,98,114,93,104,95,103,109,104,94,74,101,99,96,88,109,105,100,96,103,96,97,89,97,109,103,98,99,110,79,95,96,105,102,107,99,105,105,110,92,98,97,112,100,106,119,104,101,111,94,117,98,104,107,96,114,100,96,100,88,103,99,121,106,100,93,104,97,120,97,105,100,107,104,96,102,97,113,112,92,102,101,91,107,117,104,128,116,109,112,94,113,106,98,103,94,107,68,104,108,98,102,102,100,89,104,108,102,94,121,101,119,97,138,124,103,100,125,113,95,99,94,102,117,111,102,105,112,105,101,112,79,84,109,101,105,98,103,100,100,96,102,78,87,102,108,94,107,101,95,94,97,94,95,81,99,106,103,88,99,92,103,99,101,99,111,114,99,98,103,118,97,104,91,101,90,105,104,98,115,93,109,112,100,110,115,106,80,108,101,107,117,116,103,97,96,100,104,107,90,90, +646.59241,109,105,84,110,104,109,93,122,90,105,107,96,104,105,114,104,110,108,93,112,93,107,98,98,97,96,88,107,100,105,98,107,100,93,101,109,108,81,104,96,87,107,109,98,105,105,95,76,96,94,100,68,96,109,108,94,94,107,102,96,110,110,116,97,103,108,110,102,92,99,113,110,74,109,100,106,93,101,109,102,103,112,99,113,113,101,110,97,109,103,122,103,109,104,104,97,101,115,96,105,100,120,107,101,125,74,114,97,100,109,105,114,100,98,102,106,87,106,110,101,97,106,108,113,112,99,98,97,107,102,104,97,80,107,98,108,104,111,111,95,116,105,109,109,92,110,100,103,120,113,106,119,109,104,104,111,103,97,100,94,96,97,97,99,114,96,102,110,101,99,93,94,88,97,114,97,96,109,95,98,100,104,98,107,98,113,109,84,106,93,101,110,102,113,121,100,103,105,101,101,106,93,110,97,105,113,96,109,114,106,107,125,109,101,109,109,103,95,106,104,77,98,102,101,105,96,99,104,96,106,95,96,92,114,105,103,96,104,98,104,106,96,97,104,106,98,100,94,104,95,103,90,94,99,95,94,102,95,105,101,103,104,100,110,100,107,108,97,90,106,71,94,103,113,110,109,110,91,95,110,104,94,101,102,104,93,101,102,109,100,98,102,113,97,100,114,100,96,100,93,89,112,111,112,101,108,106,113,103,104,96,98,107,103,95,75,95,109,106,93,105,105,115,98,101,101,106,105,102,117,105,107,102,104,109,102,81,109,107,88,88,100,99,99,96,101,107,91,105,93,109,95,92,114,103,103,108,101,98,105,104,90,104,117,117,91,100,103,75,107,116,105,103,99,105,114,106,101,105,111,113,112,98,98,102,111,103,109,98,100,111,90,112,105,98,106,101,106,94,106,101,102,90,110,102,115,95,96,99,106,104,108,104,104,102,93,109,103,114,100,104,95,109,104,89,97,101,107,117,102,101,94,108,107,112,108,102,110,104,96,105,102,99,99,97,116,86,101,109,107,100,105,118,106,105,86,95,110,111,96,104,99,97,112,100,99,108,102,108,102,107,91,99,106,109,102,95,107,111,104,99,111,107,114,100,113,100,106,101,94,105,106,101,103,101,100,95,103,95,103,112,109,95,100,100,108,95,100,120,108,106,102,105,107,105,101,107,107,102,98,110,104,119,96,102,116,107,99,92,105,122,101,107,109,93,110,97,105,105,107,99,101,92,83,117,96,61,103,99,100,95,112,76,102,99,108,99,105,143,99,103,97,104,114,107,105,100,114,94,95,97,102,98,106,105,106,99,99,92,97,104,100,106,90,111,100,104,108,108,111,108,107,105,94,98,110,94,104,106,117,108,121,102,96,100,105,112,98,104,98,101,116,105,102,104,103,103,118,91,99,108,103,108,101,100,106,106,104,107,108,103,105,97,99,98,113,100,105,91,98,104,100,81,98,108,101,113,88,94,111,101,118,97,108,105,101,104,107,135,108,110,122,95,93,98,113,93,94,113,97,103,103,67,107,108,104,105,104,104,99,98,99,110,111,100,102,100,104,95,99,92,97,102,103,103,93,109,112,104,86,99,99,107,95,97,106,99,105,103,96,103,114,95,99,98,104,129,108,92,104,113,98,122,111,108,94,99,103,96,119,101,110,101,91,87,110,125,103,97,102,97,107,97,108,100,96,102,106,92,100,109,94,113,103,98,110,99,101,83,121,102,107,96,107,95,106,80,112,98,91,107,97,103,98,107,114,114,100,102,112,112,92,110,102,101,95,104,104,109,113,102,97,96,95,103,102,101,107,111,114,98,95,91,98,97,108,99,100,108,96,115,92,103,95,104,100,98,100,94,97,100,105,94,98,95,103,108,116,103,106,101,102,107,90,105,98,83,91,110,100,94,100,97,102,105,101,105,99,92,98,102,106,103,107,93,101,110,109,112,107,67,96,104,78,105,95,100,95,101,100,106,112,105,106,98,93,117,100,88,106,100,93,114,96,93,95,104,103,108,108,100,104,102,115,96,96,109,94,98,117,99,109,114,111,109,100,98,98,94,104,101,109,102,102,97,95,102,99,94,104,107,106,116,95,92,97,97,99,100,104,109,116,109,116,101,101,100,95,105,100,103,108,104,98,106,94,95,105,96,113,102,110,107,96,110,106,109,103,98,106,109,95,111,94,107,100,97,90,111,113,105,105,101,98,97,100,102,106,95,100,100,98,108,113,107,91,100,100,99,98,102,102,104,108,96,96,92,99,102,113,100,111,106,77,109,110,102,96,88,102,102,115,93,100,97,111,121,109,108,119,113,107,85,94,90,96,113,92,97,111,106,84,107,89,110,98,117,96,107,88,111,106,99,99,107,100,104,109,104,101,106,106,89,102,99,102,94,89,94,106,108,107,112,105,92,102,103,104,102,100,106,112,106,93,105,104,106,104,120,102,104,85,96,111,97,102,95,109,112,106,99,118,105,99,110,88,94,116,104,105,108,101,95,109,89,116,105,106,104,123,98,115,102,103,102,108,108,99,103,108,106,106,107,105,103,105,108,113,120,103,114,102,107,101,91,108,99,106,105,102,106,108,86,99,99,103,112,115,108,107,120,103,112,107,100,110,110,105,108,100,115,79,105,99,99,106,100,101,110,106,103,101,115,102,102,98,101,102,100,98,108,112,100,101,101,103,109,113,88,107,98,95,102,114,97,113,103,102,112,87,100,107,104,113,106,102,98,112,96,107,109,104,106,103,99,85,96,112,105,107,100,107,103,93,100,104,108,115,109,102,109,106,94,108,92,99,101,99,102,110,113,99,108,98,94,96,105,115,105,102,108,112,96,100,112,103,99,112,101,106,112,107,104,115,108,105,103,99,106,93,102,108,106,109,91,102,106,103,95,115,103,102,111,104,106,115,104,95,108,93,112,93,126,95,102,104,103,106,111,113,108,92,97,100,102,95,107,102,109,102,100,107,100,112,95,101,105,106,117,94,117,100,103,117,121,106,108,103,93,103,108,98,94,109,110,106,98,107,99,101,104,105,115,98,104,99,108,110,105,122,95,99,104,113,103,115,115,98,115,96,99,112,102,95,119,111,116,104,110,99,105,104,88,104,117,106,102,110,102,100,103,111,104,100,91,103,101,97,96,83,103,111,106,107,78,105,106,103,104,99,96,104,100,92,95,114,104,111,106,102,100,105,103,113,101,112,104,98,94,111,109,107,100,110,95,95,97,111,115,112,105,96,107,105,113,101,99,119,103,91,108,96,96,100,96,97,97,104,102,102,105,98,109,108,99,103,96,106,107,100,112,92,89,105,106,106,101,100,108,104,99,105,101,98,105,110,91,111,100,127,110,102,116,99,105,103,95,103,104,101,99,104,99,111,88,97,98,108,117,104,101,94,104,106,104,105,115,97,93,104,103,108,110,98,102,102,112,103,107,104,105,108,117,108,91,117,103,95,100,99,119,106,90,109,97,106,105,106,105,97,102,110,118,106,110,112,111,118,99,113,116,102,101,97,115,105,114,111,102,112,102,117,98,92,109,112,109,104,109,108,96,65,95,110,104,103,106,97,111,106,86,105,107,99,98,105,117,99,117,104,104,109,96,106,100,100,100,99,105,96,91,103,103,108,100,109,107,113,102,104,95,101,104,106,123,101,94,106,107,94,103,106,103,115,128,118,87,98,99,95,99,121,100,112,112,98,102,102,104,104,102,93,116,103,98,105,118,94,101,106,98,101,105,98,107,102,103,97,102,93,105,91,92,116,109,114,98,104,102,112,102,117,103,108,111,107,105,104,100,102,111,103,113,102,107,96,105,97,93,81,93,111,99,108,94,123,113,118,101,97,108,104,110,106,98,95,104,74,93,98,88,98,109,101,102,108,99,113,101,101,109,100,100,101,103,103,109,101,112,102,122,100,108,102,104,98,108,113,96,105,94,95,99,118,102,106,106,97,116,96,118,104,105,109,102,105,99,83,95,98,109,87,96,114,103,102,105,106,126,89,115,106,92,109,101,110,107,104,110,99,102,103,92,112,108,105,104,103,103,94,106,98,117,116,110,103,96,100,98,101,101,115,109,111,103,99,90,107,98,102,104,103,114,101,102,112,109,106,99,116,98,80,106,95,102,96,102,108,111,100,105,94,104,96,116,103,103,112,90,98,109,104,109,97,105,101,99,107,100,99,95,106,94,108,107,98,110,106,108,101,110,108,109,114,94,93,108,119,109,104,95,94,111,115,98,102,91,102,103,110,116,97,112,110,105,97,105,101,113,112,100,108,109,104,105,99,92,106,111,117,115,109,117,104,100,110,105,109,99,109,104,70,109,94,103,102,100,96,98,115,97,105,120,106,101,107,96,101,109,102,96,102,103,111,105,104,105,114,102,102,99,99,98,106,97,112,103,107,103,93,111,108,116,106,106,104,95,109,116,109,94,92,108,104,79,104,100,93,112,107,120,97,104,103,104,111,108,106,106,101,97,102,91,107,97,98,95,105,105,95,96,101,102,105,105,112,108,117,115,105,91,109,102,104,105,116,94,88,101,98,108,112,113,102,108,112,114,100,95,101,115,104,104,103,113,101,100,103,104,95,104,106,94,106,99,101,105,104,110,111,110,106,106,103,97,102,109,107,92,110,105,100,97,86,102,109,108,91,99,105,99,105,111,99,95,108,102,103,109,105,108,130,101,97,96,114,103,117,105,106,88,91,100,102,102,115,105,98,106,115,105,104,104,101,94,105,96,116,107,102,99,89,110,91,103,99,113,92,113,101,91,105,101,94,101,113,109,93,107,103,111,108,95,116,109,104,107,126,113,103,115,108,104,88,101,103,109,98,104,112,83,102,111,118,107,89,126,109,94,98,105,102,95,107,116,127,91,102,87,91, +646.73358,82,98,99,93,101,91,84,96,108,113,100,114,102,110,104,100,109,111,99,111,105,102,102,92,89,96,92,101,105,109,98,100,106,106,106,95,106,104,103,114,104,95,108,103,101,102,78,107,121,90,103,90,103,97,102,117,91,92,117,89,113,113,106,78,103,94,112,97,100,100,99,105,67,101,93,103,105,103,130,89,98,117,121,99,101,103,106,100,88,63,99,105,106,96,106,101,99,93,111,97,87,94,102,111,83,80,115,107,106,104,101,102,91,117,118,121,85,108,97,106,94,105,103,118,88,101,106,96,114,117,107,120,100,104,108,101,99,112,91,106,114,103,107,93,97,100,113,107,98,93,104,109,106,90,98,104,105,107,109,89,94,102,106,103,100,102,96,101,104,92,98,95,92,114,104,109,103,90,105,100,101,99,104,102,96,111,94,87,120,103,100,110,103,107,93,103,106,98,98,92,111,105,98,102,107,103,115,100,121,100,95,109,108,101,110,101,104,99,107,96,102,96,107,94,111,99,99,99,105,100,97,103,97,113,105,115,106,89,105,104,106,89,105,95,87,120,100,103,95,110,99,103,112,103,101,100,107,107,90,104,94,106,106,93,98,107,99,104,115,98,97,108,101,99,110,106,98,111,95,99,105,103,106,100,87,105,105,98,98,106,102,94,102,106,103,106,113,107,117,105,100,114,105,109,89,114,121,109,108,110,94,117,100,103,104,102,104,107,111,108,105,85,95,109,102,93,99,92,94,109,124,93,111,104,106,114,110,99,88,103,94,102,101,98,102,96,116,106,112,88,113,105,101,105,91,111,110,99,100,102,99,114,95,94,103,102,107,103,80,102,91,100,106,96,107,95,102,109,89,111,111,94,109,109,96,94,97,103,99,109,98,91,103,106,104,84,116,94,96,109,94,116,116,100,97,108,108,104,104,100,103,94,103,110,101,97,102,96,102,100,99,103,103,103,90,104,106,101,94,108,104,135,106,95,98,100,102,110,97,106,110,103,105,95,99,100,112,100,102,97,92,101,110,109,102,105,110,107,114,100,101,107,109,91,104,103,106,100,106,106,102,103,112,93,101,99,105,100,99,104,112,109,110,96,99,108,104,110,102,97,107,100,95,103,103,107,103,101,107,101,101,108,110,100,113,103,96,99,109,97,101,104,102,98,99,94,108,101,94,99,105,106,125,109,106,97,118,108,102,103,100,94,110,113,98,106,101,99,116,103,106,101,103,111,98,102,104,82,102,117,109,108,102,100,106,103,109,101,80,92,106,103,95,114,102,109,95,95,104,98,102,96,104,100,103,103,111,106,105,104,114,113,115,101,115,102,114,101,103,109,111,112,108,107,114,95,111,93,102,113,104,99,113,101,91,105,104,108,97,102,101,95,100,99,104,109,105,102,103,103,111,88,107,102,104,97,103,121,104,94,97,104,97,105,99,103,102,107,125,110,107,110,87,104,105,99,112,89,104,113,103,102,107,109,96,107,96,110,103,106,143,107,109,104,106,99,93,104,105,99,103,117,112,109,98,101,99,93,97,106,110,107,122,102,93,97,107,95,105,96,96,112,97,96,109,84,107,107,102,91,110,103,112,109,99,116,103,110,96,112,91,107,103,109,101,92,96,96,95,99,110,95,106,109,103,98,112,98,115,103,104,103,102,105,97,91,106,115,102,97,107,92,108,95,106,115,102,102,93,103,109,96,109,102,104,100,96,109,103,100,109,91,101,98,104,104,105,100,102,106,113,105,110,97,95,114,101,99,106,106,97,95,109,130,96,103,90,103,100,105,113,99,110,109,109,90,110,107,103,108,101,91,95,101,97,105,103,98,115,108,107,106,110,103,101,96,124,112,98,105,96,106,108,110,132,100,114,117,108,102,103,110,102,101,104,99,112,103,101,103,102,113,102,111,101,107,100,90,103,89,102,104,102,104,80,109,89,104,101,106,109,113,95,96,104,104,88,107,117,98,113,108,102,108,109,95,101,110,94,91,96,108,99,110,107,95,88,115,99,110,118,99,103,99,111,98,105,103,90,102,102,94,104,106,112,107,108,101,94,113,95,102,100,79,97,102,98,99,109,106,93,105,106,112,97,102,99,108,99,90,106,113,104,94,98,78,101,102,113,108,115,99,112,93,103,103,109,112,102,105,89,106,129,105,110,95,104,108,96,111,107,108,107,104,117,98,105,94,104,112,100,98,100,96,109,105,110,96,94,99,105,102,102,104,107,111,94,104,101,101,101,109,110,98,108,95,104,100,95,109,100,111,104,104,102,104,112,109,103,120,112,105,98,96,112,123,104,104,97,100,105,108,113,87,107,95,104,90,87,112,98,108,100,102,103,92,108,99,114,112,100,103,93,102,103,91,105,102,109,91,113,108,106,106,116,106,99,106,104,116,107,105,108,96,91,116,104,98,97,79,94,87,80,99,104,105,99,110,100,101,103,101,94,101,115,104,113,101,128,101,107,101,105,97,116,83,104,106,107,102,98,96,105,108,93,105,97,106,108,99,114,104,102,122,100,91,78,105,75,105,101,110,105,103,102,112,99,105,110,109,113,104,99,104,107,87,100,107,101,110,108,103,94,92,90,103,103,102,101,105,110,104,108,109,92,94,106,107,111,98,97,90,107,103,98,105,106,95,99,86,109,98,101,102,104,105,105,116,106,111,91,94,91,102,99,93,107,107,98,115,91,103,96,103,95,99,92,88,109,109,102,107,105,113,103,104,106,104,118,93,104,102,95,121,104,97,113,107,98,133,103,106,103,95,105,100,99,99,118,97,106,119,88,104,99,113,102,110,91,107,93,92,113,90,117,92,104,110,108,110,114,107,108,107,104,99,102,119,100,97,97,111,94,107,116,92,100,69,103,109,99,107,112,105,110,95,96,129,101,115,102,98,106,97,105,108,104,105,111,83,106,110,105,99,104,112,103,85,105,104,114,115,98,117,101,108,113,104,96,108,109,92,118,100,80,106,104,104,100,94,105,102,111,100,113,107,105,109,99,92,109,101,97,109,106,108,105,102,105,110,107,106,109,104,101,100,111,104,102,105,102,115,108,107,92,99,102,99,101,104,100,111,108,100,102,114,102,100,106,109,95,103,104,110,99,101,103,106,109,92,110,91,106,95,103,109,102,84,103,104,96,108,99,111,99,102,108,107,95,109,101,103,100,98,109,103,101,101,87,98,109,106,107,108,102,115,95,108,92,107,108,105,101,99,104,94,103,98,115,95,100,96,109,108,110,114,99,98,97,95,86,107,102,95,100,106,103,95,104,105,102,94,105,95,107,107,111,109,113,106,107,101,96,112,106,108,91,94,106,103,73,110,117,104,97,102,106,103,102,99,99,111,99,100,107,99,99,99,103,102,117,97,94,113,117,96,99,105,87,97,101,100,72,115,98,100,91,93,108,103,102,95,102,113,104,105,104,97,101,106,103,111,104,97,95,102,112,98,106,98,105,110,109,91,94,104,112,94,103,102,110,106,94,100,100,101,95,109,88,95,112,103,94,106,102,102,96,108,95,82,103,96,102,101,98,113,110,101,98,115,104,94,105,115,107,101,105,85,102,88,96,85,107,105,100,108,107,100,106,115,90,105,104,100,127,88,102,115,110,93,96,117,91,109,99,101,103,102,116,108,103,108,100,104,95,93,106,108,102,108,100,107,86,105,100,112,98,100,106,110,105,101,98,95,106,94,88,97,93,103,99,101,102,100,95,94,96,107,97,112,109,108,104,85,108,99,96,105,103,102,102,109,95,102,96,96,103,93,103,110,108,107,111,119,103,107,102,99,110,98,102,99,100,98,100,100,100,99,99,109,101,97,107,94,94,105,101,103,103,89,104,98,98,108,102,113,92,101,97,107,105,104,95,100,99,91,102,84,105,104,104,120,103,108,109,101,98,91,102,94,104,88,122,109,100,108,105,117,106,98,105,105,99,106,100,121,88,100,108,113,94,113,109,104,103,96,109,104,106,103,112,101,89,107,109,99,100,75,116,103,111,102,82,107,80,113,106,106,96,107,104,117,105,97,107,106,98,103,105,102,95,94,100,101,123,100,109,89,106,105,116,93,91,110,112,105,106,97,120,110,112,103,125,105,95,98,114,112,101,67,114,104,102,105,107,105,102,102,99,95,93,100,93,112,105,103,98,110,106,92,110,107,105,112,105,120,120,101,101,94,105,107,100,118,94,85,107,107,101,110,101,110,94,103,100,102,104,120,94,99,111,110,98,99,100,104,109,116,95,125,97,103,104,104,112,102,108,76,94,107,100,100,97,95,112,103,99,93,106,103,109,105,113,113,94,103,94,103,100,104,105,102,66,105,99,103,96,104,100,99,112,101,104,91,131,108,106,104,99,100,101,98,107,105,101,92,117,102,107,103,99,96,97,104,104,106,99,125,130,108,95,115,85,96,98,105,96,94,104,105,101,103,108,113,90,98,107,99,100,84,100,97,107,103,81,113,102,107,102,99,98,107,109,105,108,95,111,108,87,96,95,103,94,100,98,110,104,103,101,102,110,101,97,99,108,96,88,86,99,105,102,109,109,98,107,100,102,97,96,110,105,101,114,112,102,99,108,102,108,102,95,110,98,100,98,123,107,98,105,87,106,113,113,101,106,109,108,101,103,96,110,92,104,114,114,102,109,81,88,113,99,105,118,103,97,101,105,100,94,111,111,99,99,95,105,98,90,101,104,104,106,103,98,109,110,91,106,101,110,102,95,109,105,108,98,104,103,127,125,96,90,102,106,98,108,107,97,103,89,110,105,107,100,106,100,107,117,112,107,105,111,102,96,104,110,88,108,102,111,115,105,103,91,100,101,109,98,99,100,97,96,98,102,95,102,99,109,103,90,99,118,87,125,107,91,96,92,81,113,90, +646.87476,121,104,102,102,98,96,100,109,106,91,96,97,103,104,106,111,85,94,104,107,99,111,106,78,100,113,98,104,98,107,94,96,103,104,100,116,111,96,110,117,107,104,113,101,108,89,103,106,93,102,94,105,105,108,103,101,99,99,103,106,101,105,99,97,109,109,99,109,105,99,100,99,101,100,122,105,95,116,96,105,104,110,112,108,108,99,110,88,100,100,93,97,110,105,102,101,101,100,106,99,94,98,108,96,99,90,85,105,97,92,104,98,94,109,98,109,100,110,101,96,104,109,90,101,87,109,98,108,116,109,110,113,91,109,110,110,102,108,111,104,99,95,88,100,94,106,119,112,105,103,102,105,101,103,101,124,89,112,98,93,105,113,97,101,114,111,114,109,100,108,102,103,87,108,102,108,118,97,113,98,90,106,106,95,110,107,100,86,102,116,113,114,93,105,97,94,111,100,113,101,91,115,106,96,108,97,99,95,106,110,101,91,96,104,97,87,104,101,111,103,88,102,111,113,111,94,100,115,113,106,101,102,75,103,107,108,113,106,102,103,114,98,96,90,111,114,103,109,90,107,116,113,94,101,112,106,110,104,96,93,124,101,105,97,109,116,110,121,101,114,105,110,108,92,102,101,94,101,97,103,114,111,100,110,106,108,92,90,104,102,106,110,121,113,106,90,101,110,98,104,92,113,88,98,96,95,95,92,104,107,109,105,121,108,92,103,91,96,102,96,91,100,68,119,88,103,101,96,106,101,116,104,109,95,91,106,108,99,97,102,117,109,88,100,91,105,103,108,108,108,103,105,110,102,111,100,105,99,98,107,102,103,106,101,104,104,106,113,103,104,114,104,109,104,99,101,98,93,112,96,104,105,94,121,94,96,100,100,99,110,113,109,98,111,90,106,108,106,102,107,108,102,98,102,95,104,111,111,108,102,90,103,107,101,99,104,104,104,98,117,102,100,104,126,100,108,100,101,100,99,104,106,111,101,99,121,98,114,110,94,104,125,104,109,107,107,91,89,108,105,109,108,110,107,116,99,104,119,111,103,106,87,112,106,118,112,111,114,105,98,104,104,108,99,99,105,120,75,132,105,108,108,111,103,114,104,119,106,92,95,116,106,96,108,103,102,93,96,92,108,111,101,91,101,110,106,96,106,118,110,97,102,108,101,111,104,99,112,114,97,110,99,109,110,98,106,99,103,111,105,102,100,109,95,96,115,96,104,97,105,91,100,110,100,100,102,89,111,112,102,112,97,117,111,112,103,96,91,101,100,112,104,102,110,99,96,110,107,98,100,104,106,102,110,96,107,105,104,94,105,106,111,97,105,107,141,115,114,107,100,110,112,93,111,106,103,103,114,101,117,103,104,95,106,102,72,95,106,94,106,115,102,108,105,101,108,104,102,105,104,110,99,114,92,105,97,99,103,99,111,113,104,87,104,107,103,101,92,104,86,106,109,112,110,98,103,113,109,106,103,108,106,100,106,92,112,109,111,98,103,113,102,116,100,98,96,112,110,109,100,113,109,100,105,99,103,119,106,102,100,102,105,94,103,82,109,102,106,105,120,99,88,105,109,108,96,104,102,114,99,111,104,100,100,119,106,112,104,99,99,104,103,100,100,107,109,101,103,94,105,99,107,110,109,114,102,101,104,90,100,100,110,101,100,116,109,109,108,96,97,108,96,101,102,107,99,99,102,110,110,100,106,95,99,106,94,119,96,107,105,115,108,94,104,91,102,77,103,106,111,109,104,115,113,101,103,105,70,98,91,110,106,113,102,112,124,105,98,101,95,99,84,105,101,120,82,100,104,116,105,91,96,100,105,103,103,103,99,110,123,100,109,99,116,122,107,114,105,106,107,107,96,106,114,100,109,103,98,103,110,111,94,84,111,96,105,88,100,91,113,102,110,117,126,112,88,105,104,98,103,106,106,104,99,104,104,101,97,90,112,92,98,102,102,104,108,99,109,103,101,99,103,99,102,107,108,113,103,105,109,103,105,105,99,108,125,101,100,107,110,113,102,101,116,98,93,103,101,122,108,107,108,102,99,104,102,99,111,74,95,99,108,110,107,103,80,102,108,91,114,105,103,105,115,110,97,104,96,94,109,97,114,108,109,97,109,95,103,100,102,104,90,109,107,99,101,108,96,105,107,109,110,89,102,110,95,108,116,98,99,95,112,96,98,111,105,104,86,96,104,96,101,107,90,112,110,102,94,104,107,94,106,103,104,84,104,117,97,105,99,105,115,99,105,107,102,105,99,103,96,99,108,110,103,113,106,86,114,102,110,98,105,97,77,104,103,101,97,102,93,108,104,111,118,103,102,113,73,104,105,97,101,104,104,101,98,120,106,123,115,99,107,100,104,109,109,102,97,106,119,91,122,100,107,104,110,109,119,95,115,107,97,109,101,102,114,96,109,107,106,102,94,98,103,108,102,117,105,93,99,109,98,121,102,99,110,108,98,114,119,107,87,108,105,99,109,85,107,113,111,106,103,112,93,102,100,113,90,113,98,103,98,107,96,117,113,102,101,96,99,86,99,97,104,119,100,103,113,108,99,104,102,113,111,103,100,104,109,96,94,107,91,89,116,100,115,91,98,110,101,111,104,84,104,110,106,125,112,99,95,85,98,105,99,89,103,113,88,107,113,105,103,110,102,105,91,108,110,113,121,99,107,102,108,107,101,113,97,105,104,95,112,113,104,97,100,92,109,118,104,106,108,95,105,103,94,113,108,108,109,100,109,104,108,104,110,108,107,107,109,109,97,105,93,95,118,98,116,109,99,100,105,109,100,102,95,104,95,110,104,116,107,102,97,110,114,112,109,97,106,102,106,97,106,115,100,104,114,93,106,99,100,103,101,115,86,111,112,94,118,110,106,118,104,99,114,98,108,108,101,107,105,112,109,103,113,105,111,103,104,103,100,105,96,99,101,104,91,101,105,102,108,100,118,102,99,112,109,101,106,102,104,101,77,104,108,100,110,101,95,117,106,104,102,93,103,102,111,115,104,106,95,91,117,102,98,110,108,99,95,102,104,98,106,102,100,106,95,100,103,93,95,101,74,104,105,105,105,98,101,103,103,113,96,98,101,87,99,98,97,100,91,101,105,105,99,98,106,111,99,105,98,102,105,96,108,101,108,90,102,108,105,99,108,104,119,110,100,111,105,113,110,109,98,96,107,102,112,110,102,98,105,104,98,104,95,102,106,106,105,104,101,98,99,103,104,103,100,97,102,111,109,108,116,112,103,96,99,119,92,94,98,109,106,106,112,89,95,95,101,108,101,109,68,105,101,105,98,105,95,107,101,95,97,106,95,104,109,103,94,109,108,109,95,112,102,99,104,101,113,100,110,95,130,100,107,99,104,99,104,96,95,89,93,108,107,99,98,109,99,107,94,113,103,105,104,109,112,99,110,108,94,110,102,103,105,106,112,112,102,93,90,106,113,99,108,105,103,95,92,101,103,105,89,107,110,105,106,113,114,106,109,107,114,99,102,104,108,97,104,100,99,107,99,105,111,103,113,103,95,99,105,105,102,101,98,102,102,106,107,109,100,106,98,110,111,101,111,105,90,93,104,112,112,106,108,109,104,102,109,94,101,102,110,113,98,102,104,108,112,108,108,107,94,103,100,105,106,98,102,103,111,106,117,110,97,91,110,109,108,104,122,96,106,105,103,111,95,104,122,111,101,109,108,107,104,98,102,113,102,94,106,96,100,103,101,104,106,104,102,101,96,103,101,108,113,109,104,101,99,109,96,90,103,104,107,102,99,117,96,106,106,101,91,97,104,108,103,98,102,94,112,98,105,109,105,103,104,95,94,104,98,108,103,102,98,101,88,119,103,103,103,104,98,102,100,109,103,91,93,100,75,96,97,99,102,88,102,100,99,93,98,98,108,107,97,109,100,104,91,99,98,113,98,102,110,102,98,105,104,108,92,108,103,92,105,111,111,99,129,101,114,111,119,106,105,107,121,95,102,94,103,101,104,108,99,96,119,109,111,105,91,91,104,104,100,113,95,117,109,109,97,104,91,102,88,124,107,108,98,118,110,102,96,95,101,91,110,97,104,92,113,108,105,109,107,86,120,97,91,113,108,107,99,99,104,111,106,93,92,114,96,94,119,101,102,98,99,106,101,101,98,94,98,102,100,100,107,101,94,112,103,113,107,97,108,100,100,102,96,116,106,93,96,108,95,119,107,106,108,105,102,101,99,94,108,106,109,112,95,99,102,113,108,98,107,96,103,101,109,111,99,108,95,92,111,92,103,104,99,106,103,108,102,107,108,97,98,96,101,106,112,101,110,107,100,93,101,107,102,99,92,107,102,111,110,110,101,101,105,81,109,108,101,93,100,105,107,112,102,102,98,108,105,109,103,100,106,102,101,105,112,114,91,104,102,108,112,100,95,97,102,108,102,98,103,104,101,79,120,97,102,126,95,102,99,95,118,92,96,103,103,102,111,105,81,103,99,121,93,114,114,108,112,115,101,108,100,104,119,106,99,97,120,105,103,99,108,97,131,99,104,90,113,115,100,109,100,127,105,99,115,112,110,99,118,99,109,100,99,102,107,107,105,94,107,94,99,95,104,95,94,110,121,111,115,101,103,95,106,111,100,109,103,111,102,100,101,110,115,105,102,111,112,102,116,110,94,107,101,92,112,109,108,100,109,109,112,128,86,111,103,95,96,105,103,108,97,112,103,92,112,97,117,118,101,108,91,107,101,108,98,110,105,91,100,110,103,116,102,100,100,102,115,101,112,98,93,104,105,112,113,108,102,113,101,97,91,105,101,115,111,116,104,116,107,81,101,109,93,106,107,92,108,103,108,102,129,107,96,113,86,109,91,109,96,103,105,91,97,115,110,112,104,95,100,111,113,99,80, +647.01593,97,104,112,108,90,105,106,98,106,103,86,111,88,107,110,103,108,103,96,103,109,93,108,97,95,114,120,111,95,104,107,111,112,103,110,96,104,95,86,71,106,94,99,124,116,96,110,106,94,103,108,91,102,96,99,103,96,112,115,111,99,101,118,102,96,111,98,104,98,105,113,103,109,104,99,99,103,117,94,116,104,89,94,103,116,94,105,117,107,92,97,92,100,85,108,110,102,108,103,93,109,116,93,109,103,106,105,98,93,102,89,113,105,100,102,105,86,104,114,97,104,100,119,107,104,102,102,97,98,107,100,119,107,99,123,111,105,97,87,107,101,100,102,92,88,100,100,96,93,97,99,109,112,92,104,109,104,97,105,87,98,103,93,103,97,100,99,109,101,98,104,95,94,102,97,104,104,95,100,95,98,109,104,99,97,104,100,99,98,91,109,126,93,98,102,92,96,81,119,101,96,99,100,105,102,106,108,97,112,106,104,105,103,97,116,95,94,104,101,110,100,110,113,101,92,107,95,107,111,91,97,104,103,102,104,96,105,103,92,103,93,95,109,108,101,95,88,100,85,100,112,111,101,93,99,108,99,105,96,103,108,90,111,110,110,107,108,103,113,103,133,107,104,107,99,108,96,98,96,101,108,112,96,97,94,100,107,105,104,98,99,98,105,109,102,93,80,109,94,105,101,96,99,110,93,99,98,107,100,112,96,102,106,78,103,102,95,106,87,94,92,97,102,103,101,105,95,78,107,104,117,120,109,104,109,105,111,99,103,112,111,103,99,94,121,102,107,91,99,103,92,103,108,124,106,101,109,101,113,102,92,90,94,111,108,91,96,90,98,99,84,98,102,93,97,104,80,94,99,94,102,105,78,101,98,99,106,91,107,101,108,106,89,105,105,109,97,107,102,118,109,85,92,99,95,94,110,102,101,97,113,94,105,99,109,84,113,105,88,109,105,99,106,117,116,100,95,98,99,109,101,94,102,99,92,96,83,115,95,110,102,92,97,101,93,106,102,94,105,114,102,97,105,100,102,107,110,100,112,103,115,105,98,108,106,115,110,96,101,97,100,106,103,97,108,103,99,112,94,103,95,91,99,107,108,106,105,106,92,105,107,112,103,105,91,87,90,103,96,102,106,102,111,96,104,96,105,95,111,90,95,101,97,107,117,92,92,101,101,92,107,106,107,109,94,107,113,99,106,99,103,94,95,101,95,113,114,103,97,105,98,91,99,99,119,102,110,107,98,108,98,106,101,78,111,90,103,100,100,96,113,97,109,105,99,91,100,105,110,102,107,105,99,92,107,99,102,113,97,112,111,109,99,94,102,97,120,109,102,103,91,101,83,96,107,84,95,108,98,109,95,98,107,95,101,105,85,105,106,99,91,102,100,95,113,118,96,100,105,95,97,100,104,114,99,103,104,111,105,106,87,91,104,100,102,99,95,96,97,125,101,99,104,84,102,104,99,93,102,102,83,103,103,102,99,113,105,89,107,108,103,95,111,107,112,95,80,102,98,99,112,104,104,89,101,105,108,112,109,103,122,109,128,99,102,99,92,100,116,100,104,94,93,94,102,89,109,101,116,97,112,100,107,95,96,113,117,88,108,106,103,95,97,102,80,100,104,107,107,90,101,113,111,105,96,98,104,95,108,107,104,106,93,105,108,109,97,105,112,100,99,91,91,99,104,101,113,103,107,117,96,101,104,97,120,115,110,109,98,101,104,111,105,110,101,115,92,117,114,96,105,97,103,97,101,106,109,104,109,91,101,101,98,105,92,115,115,103,99,106,106,99,100,116,91,91,100,99,109,107,75,102,109,100,122,105,105,102,106,94,115,73,94,100,105,109,102,88,95,99,101,102,100,100,104,103,101,113,113,94,107,106,107,104,97,119,99,95,95,95,92,104,104,99,100,102,99,100,105,97,101,95,95,109,104,113,105,100,104,82,114,94,102,105,98,95,100,102,105,120,109,103,101,101,101,103,102,111,108,109,96,91,116,96,105,104,95,98,91,108,114,103,100,107,108,103,109,111,100,104,104,97,113,98,98,76,101,110,97,91,100,100,117,99,87,90,103,101,92,95,99,88,104,98,108,100,96,107,107,95,103,109,107,100,95,97,99,93,95,103,98,101,107,100,98,96,104,102,90,113,115,106,121,100,111,111,108,106,92,106,119,117,99,91,110,96,100,105,99,110,103,106,90,107,99,103,103,94,98,90,103,110,95,99,95,99,105,95,99,104,105,96,107,108,100,96,99,93,95,114,99,95,107,108,103,108,89,98,105,77,80,96,96,96,95,105,105,100,104,100,101,108,105,90,99,97,99,82,102,103,98,106,100,94,104,104,102,100,108,111,88,111,101,106,107,114,95,102,133,112,104,105,101,101,99,104,100,98,106,107,95,98,102,100,112,101,107,103,105,91,96,105,118,108,100,97,107,113,103,100,95,87,102,107,112,105,103,112,110,100,99,115,99,101,111,104,106,98,114,104,98,91,110,117,104,127,101,113,107,96,101,105,108,104,102,98,87,99,115,105,107,95,93,109,102,102,102,104,104,110,117,103,99,106,113,104,109,117,112,102,111,99,95,119,99,100,103,119,95,99,103,101,108,103,92,101,105,102,103,94,111,95,111,102,95,115,107,113,102,106,113,103,118,107,118,110,96,89,107,104,103,115,92,87,103,110,111,102,105,101,97,102,109,101,105,104,102,103,104,104,107,94,97,99,110,98,108,95,105,98,101,111,99,114,108,102,103,116,100,99,102,103,100,104,113,108,119,121,106,99,111,107,114,102,106,104,132,100,105,103,111,103,120,99,113,110,107,95,99,117,100,99,103,112,105,96,99,112,95,112,104,100,102,95,108,114,113,103,90,104,98,108,97,111,107,93,102,109,84,114,113,107,110,113,100,91,109,101,103,102,110,104,110,109,100,109,99,96,105,104,106,103,94,114,103,103,98,102,101,81,103,102,103,113,79,123,91,92,126,105,108,99,116,95,106,106,109,97,99,102,107,110,104,101,105,141,98,110,112,108,111,102,105,103,110,110,99,94,105,110,106,108,105,103,99,87,114,102,106,98,108,113,109,83,102,95,108,120,120,101,105,97,106,105,98,91,109,103,104,103,95,107,107,99,111,98,93,112,98,93,106,95,104,111,112,102,113,101,103,113,93,95,107,109,103,111,115,110,115,110,104,94,106,108,109,102,99,106,100,108,126,109,97,107,111,107,109,108,122,102,101,108,114,109,103,102,106,106,96,104,105,98,92,95,106,103,108,92,100,96,103,102,105,88,113,96,100,110,113,101,112,98,116,126,106,96,96,116,105,103,109,100,98,86,114,97,103,107,99,107,99,110,108,104,94,116,107,105,103,102,108,115,91,108,110,99,98,108,113,103,104,126,95,102,97,109,100,100,117,105,101,105,97,99,111,97,114,102,95,105,108,102,109,102,104,101,101,105,111,97,116,103,100,108,102,109,109,113,111,69,99,110,96,105,106,101,91,105,110,107,106,106,103,113,110,98,107,128,100,109,102,107,107,99,99,115,92,108,107,105,84,103,111,123,110,99,117,104,104,101,113,105,96,112,106,107,104,107,100,109,85,103,102,101,105,104,110,110,125,118,102,94,100,108,98,87,97,89,105,87,105,103,116,116,105,103,109,113,105,103,104,106,109,110,109,96,99,86,109,96,113,113,94,121,104,107,103,106,106,97,106,97,110,116,105,111,108,116,100,109,105,108,95,106,104,106,105,117,120,100,94,98,102,113,95,107,107,102,111,98,109,110,102,100,109,109,115,118,115,100,105,131,112,107,98,102,103,120,98,92,104,103,111,104,99,108,103,102,106,99,110,105,100,112,100,112,121,98,117,91,108,101,101,99,104,100,114,96,96,98,98,103,100,87,118,97,102,93,104,94,104,97,116,101,106,101,113,90,111,106,104,114,101,93,100,95,107,96,107,94,107,104,108,116,110,101,72,105,98,99,106,117,105,91,105,69,100,101,107,110,117,104,108,108,104,97,102,100,103,108,112,115,99,106,113,98,103,90,94,114,99,98,103,100,93,104,120,109,92,108,108,112,105,104,122,112,104,113,100,108,105,95,106,108,106,103,104,104,105,99,112,107,101,94,109,106,106,129,116,102,106,86,106,106,101,94,99,103,107,104,95,110,97,105,112,106,121,100,106,109,99,119,109,98,112,88,107,108,96,100,109,96,102,103,106,109,98,100,112,76,100,118,109,104,108,99,94,102,111,104,129,104,102,105,103,101,101,96,95,112,102,109,116,108,113,98,89,102,116,103,106,109,108,103,105,89,105,110,105,103,107,106,108,108,102,119,121,99,108,93,99,108,122,104,101,116,107,124,105,103,102,99,102,108,99,102,100,121,99,107,111,97,112,104,90,110,103,113,89,104,115,106,110,102,88,109,104,107,114,115,101,103,105,101,95,109,102,101,108,129,96,97,109,96,97,111,109,113,106,113,100,106,107,139,107,106,111,104,114,106,96,112,93,104,111,107,93,108,134,111,96,107,104,119,113,91,100,95,105,110,106,108,101,94,121,95,105,108,100,100,99,97,96,110,110,83,99,93,104,106,106,105,97,103,106,109,110,100,98,94,123,100,101,110,104,101,106,101,104,108,97,140,105,109,106,97,112,96,102,107,102,109,97,96,103,118,102,98,96,102,103,102,99,105,102,108,113,113,92,88,95,100,107,108,111,112,100,99,99,111,118,86,98,102,117,100,101,104,93,98,91,122,121,104,107,100,119,97,108,107,110,107,109,105,107,98,102,83,117,100,111,97,97,108,104,99,101,84,109,108,102,104,109,101,101,94,102,119,117,96,104,80,115,101,128,101,99,101,107,104,104,103,96,121,106,104,101,91,98,99, +647.1571,92,112,103,102,114,93,101,110,93,102,87,101,99,105,107,108,101,107,104,93,103,107,99,99,105,98,106,89,107,125,98,101,98,89,115,97,103,101,99,100,95,92,109,105,111,106,96,107,113,96,104,110,108,116,93,96,99,97,99,105,110,104,102,97,94,109,103,108,103,96,103,101,90,117,95,98,106,84,93,110,90,94,122,102,97,95,100,103,106,107,104,91,89,101,106,101,106,123,90,100,75,86,95,98,109,107,98,107,100,114,100,102,117,101,94,128,108,103,106,91,103,94,100,83,116,113,109,87,106,109,100,100,109,96,111,117,99,115,100,102,101,113,95,117,105,98,103,100,115,104,102,98,92,100,105,95,92,106,102,96,95,106,101,98,102,91,89,90,99,103,105,96,113,108,108,110,109,108,106,104,102,101,102,100,104,97,100,94,116,105,109,93,104,107,99,104,89,108,103,105,104,92,107,103,95,102,103,98,99,126,103,101,106,100,98,105,107,104,105,105,96,91,105,90,109,102,109,115,103,103,106,105,113,97,109,115,94,115,98,98,109,91,103,89,94,101,107,101,119,113,107,100,99,110,100,95,95,91,95,95,89,107,106,107,95,99,99,98,113,111,112,104,102,94,104,91,113,105,104,93,104,99,82,96,102,100,100,102,98,100,85,98,98,97,125,95,104,97,108,107,98,102,103,115,101,109,101,117,101,106,101,107,103,102,110,102,91,111,100,104,96,92,105,91,113,99,91,108,110,101,99,99,99,103,102,116,103,113,95,106,108,106,103,103,109,109,109,110,88,102,108,88,109,110,100,100,99,104,104,96,95,103,103,104,105,100,113,117,106,94,81,106,114,111,93,98,108,96,96,105,111,81,103,96,122,119,109,98,109,97,105,95,103,98,103,105,101,106,102,105,101,104,91,95,106,116,98,106,105,98,86,105,106,104,100,105,102,96,109,86,99,83,99,106,100,103,78,98,96,107,109,104,97,100,98,105,103,130,103,95,122,102,87,99,125,104,116,93,98,104,100,107,105,99,96,101,100,110,97,91,101,98,95,109,97,105,102,102,99,103,114,118,98,85,105,99,107,121,104,101,98,108,111,107,103,98,103,108,98,99,97,109,113,94,115,102,97,100,111,104,98,98,109,96,107,98,97,108,97,100,100,99,113,103,104,115,108,100,80,97,87,106,112,98,104,103,100,95,94,112,99,100,103,112,90,99,104,96,101,103,106,102,80,75,107,108,105,113,91,121,90,104,111,107,102,94,110,114,97,104,106,74,94,105,110,98,97,98,102,104,96,104,99,76,101,105,109,90,106,95,117,106,104,91,100,99,95,101,103,106,102,99,113,104,117,111,104,112,100,96,106,98,109,105,99,92,103,113,114,95,96,95,104,107,104,113,103,99,108,92,104,97,119,98,107,102,99,104,119,110,96,108,96,107,110,108,107,96,106,92,97,104,104,105,106,97,104,97,105,103,102,108,107,109,107,80,105,104,106,107,104,99,107,104,91,115,105,105,103,99,102,108,113,108,100,94,105,107,103,100,109,96,98,70,107,104,88,106,95,109,98,106,101,103,118,100,96,110,94,77,121,107,102,84,110,104,95,115,108,98,105,95,89,108,98,101,95,89,102,105,104,95,105,100,97,87,105,110,85,101,99,108,98,94,99,99,96,94,111,102,99,92,93,104,107,102,106,101,107,95,100,98,101,99,103,107,99,107,109,107,104,90,96,102,93,113,87,105,100,101,111,102,105,107,100,110,103,104,97,98,97,111,123,95,102,107,101,99,100,104,100,101,101,111,93,100,86,110,104,106,102,117,97,112,107,99,110,121,104,129,117,95,123,99,100,110,96,117,99,92,103,102,109,112,106,97,96,105,84,107,108,95,85,102,117,107,107,104,99,109,102,111,99,112,106,107,103,101,102,92,101,97,99,105,103,100,105,87,113,94,89,115,104,101,104,95,94,101,109,73,92,116,98,107,105,101,86,110,93,103,103,100,105,107,104,102,93,110,107,107,92,107,117,103,111,126,96,103,104,90,108,112,100,99,96,105,102,105,105,96,104,103,104,110,108,91,100,101,99,92,104,102,105,107,103,95,109,95,100,100,102,114,101,110,94,105,101,103,102,108,114,100,88,107,97,105,115,92,106,108,115,102,112,105,109,120,94,99,97,125,104,116,100,94,99,96,108,90,101,101,98,118,117,106,105,100,107,106,104,106,102,101,104,93,103,104,95,102,110,106,94,103,120,101,99,83,114,100,103,108,109,109,106,99,104,117,105,94,109,95,91,103,108,96,95,103,103,106,105,101,107,109,105,88,104,105,104,94,126,95,100,111,116,109,98,92,101,113,113,120,105,107,105,111,109,105,107,105,118,101,103,76,93,111,101,109,81,100,103,96,91,106,92,103,100,105,107,109,104,101,90,109,96,101,103,92,114,92,106,95,101,123,103,107,102,104,111,101,111,107,107,99,109,105,102,101,113,100,117,104,104,101,106,102,105,109,112,94,103,106,102,106,100,110,94,102,95,111,112,132,98,98,103,102,92,104,104,109,107,100,99,103,101,98,110,99,116,100,90,109,110,96,96,102,77,99,99,76,99,100,107,100,101,95,101,105,110,107,97,104,111,104,112,96,102,102,101,113,102,102,104,100,102,109,101,106,120,131,90,99,106,111,87,109,105,98,101,95,108,99,101,104,125,95,103,109,103,106,99,108,107,98,120,111,104,83,104,114,109,104,95,103,103,117,112,111,115,112,100,95,100,98,96,100,94,102,113,121,123,109,97,103,106,115,99,116,104,104,112,117,117,105,115,100,109,125,123,96,98,97,100,101,100,98,106,107,110,109,100,115,105,92,102,108,101,99,107,121,100,118,112,108,106,105,98,104,102,100,97,109,95,101,103,104,106,101,130,100,107,114,101,107,94,105,94,103,113,101,94,104,113,100,105,104,110,113,115,116,100,100,108,98,94,94,110,112,74,106,105,110,116,105,108,110,110,96,112,92,106,100,86,104,105,121,107,98,105,88,109,102,94,102,78,99,102,94,104,104,105,110,107,109,91,105,99,101,112,107,98,103,119,113,108,99,85,106,103,102,112,104,102,96,100,107,115,105,106,104,105,92,111,111,106,109,107,108,100,105,86,113,96,97,99,109,97,120,104,99,107,102,102,106,88,103,122,99,111,102,110,102,101,105,96,105,101,100,105,96,107,102,109,105,102,102,105,90,108,104,113,100,102,113,113,110,100,101,98,102,100,110,120,107,106,111,101,108,101,105,104,104,96,86,108,104,117,104,81,108,108,112,114,109,124,119,105,114,97,105,108,90,105,120,98,107,109,106,96,109,121,107,105,103,101,112,107,90,99,105,138,103,102,106,103,105,105,100,104,101,105,109,108,113,105,110,107,90,79,108,96,104,91,79,108,113,99,110,105,105,97,110,103,108,101,106,102,91,101,108,95,104,106,102,108,99,101,97,104,106,116,88,113,102,105,100,96,111,100,95,86,116,101,108,102,106,107,102,116,99,95,109,108,97,99,103,109,104,98,120,105,105,106,104,114,108,110,95,95,91,106,91,96,102,99,107,96,113,105,111,105,98,90,130,102,105,104,98,109,102,109,111,106,104,110,91,102,95,105,110,99,101,108,115,95,104,106,111,101,121,108,102,105,102,100,91,101,112,111,96,111,106,104,106,95,94,103,95,104,106,102,116,104,91,117,93,101,104,98,98,103,91,102,107,110,109,90,100,92,110,109,95,101,92,91,110,107,109,99,100,103,97,108,102,105,102,112,94,105,109,99,109,121,111,98,91,114,111,99,104,102,113,101,107,100,90,132,97,111,108,103,105,102,106,96,112,103,86,103,91,99,100,99,100,101,95,100,96,110,107,94,100,94,100,106,115,112,91,104,110,103,99,105,91,107,102,98,101,102,108,103,102,101,105,103,116,105,105,98,106,116,107,107,97,116,94,93,83,104,93,109,112,83,105,98,109,106,75,98,106,100,103,125,105,109,116,105,98,67,106,105,129,110,110,109,110,107,98,96,85,120,96,111,91,98,110,100,100,105,105,103,113,110,110,99,101,94,112,123,100,104,96,102,102,106,106,92,83,91,106,110,96,103,101,94,112,106,98,104,110,124,104,94,105,106,103,103,109,98,106,103,101,101,103,113,96,119,115,93,103,106,113,105,106,106,100,104,98,110,106,111,107,95,103,93,113,106,124,100,106,84,101,104,103,109,107,101,103,69,98,108,91,99,107,110,113,94,106,106,112,99,100,112,102,104,112,102,103,104,104,105,121,109,114,105,100,94,108,95,102,107,113,110,106,111,110,116,99,101,112,92,116,93,97,111,116,100,101,121,96,100,107,102,107,109,96,113,102,96,103,103,105,83,98,109,109,97,105,107,91,112,108,111,104,94,113,104,109,96,96,113,109,100,96,94,99,113,94,104,110,111,121,94,98,108,99,106,100,120,102,107,103,96,116,113,105,111,111,96,105,100,84,95,97,94,103,106,105,114,112,106,111,104,105,101,103,117,113,106,99,102,102,96,112,104,98,105,104,110,115,69,109,117,102,108,99,103,100,107,96,105,110,98,112,99,105,99,112,103,103,120,106,108,87,126,104,110,116,103,93,109,105,103,98,137,102,101,102,100,105,104,100,108,99,101,108,108,99,107,107,103,102,106,113,103,103,102,101,111,87,98,109,100,101,98,95,102,110,108,98,96,112,102,101,77,101,94,94,100,95,97,112,99,96,111,97,112,112,101,94,112,94,107,101,88,110,101,83,87,106,93,88,120,105,96,109,94,113,108,113,65,107,107,108,99,104,105,103,109,111,109,96,75,95,115,97,106,77,102,118,96,108,113,105,109,109,114,99,99,109,87,114, +647.29828,109,86,110,87,106,107,115,94,105,108,107,101,102,116,105,108,102,101,85,105,96,116,98,92,117,102,103,104,115,133,104,105,105,116,111,106,107,107,101,103,95,106,108,123,103,117,118,115,101,115,103,100,98,105,112,95,106,86,109,96,116,96,103,109,105,105,95,105,95,100,113,96,100,115,96,84,88,96,102,99,103,96,106,108,102,90,113,103,99,98,109,98,94,98,103,109,102,107,111,96,97,97,108,105,101,97,113,95,108,102,96,101,111,102,106,112,102,106,99,115,98,99,101,100,111,105,107,103,99,108,93,108,100,107,104,108,99,96,108,108,92,102,111,106,94,94,102,95,96,96,92,100,111,95,94,100,107,101,117,99,99,103,104,89,100,102,101,93,107,99,98,100,109,103,101,123,106,96,105,107,110,92,103,115,100,106,102,100,121,101,104,101,108,102,95,109,110,105,101,104,110,95,98,83,95,110,106,109,110,102,94,107,95,76,109,105,99,115,92,93,111,101,101,108,105,104,100,108,112,100,108,106,105,103,110,106,104,108,113,99,96,105,108,110,100,108,102,106,104,102,118,101,100,104,64,102,109,103,106,101,94,110,96,93,103,101,106,115,95,105,120,111,117,104,104,106,94,107,103,104,103,110,105,109,110,101,99,97,105,102,109,122,100,104,109,119,105,108,98,104,100,99,129,119,95,104,111,117,94,113,78,97,99,102,104,98,116,109,108,110,105,96,99,109,100,96,100,90,100,102,119,110,112,94,109,93,107,97,100,95,107,112,101,97,96,109,101,100,116,107,113,105,102,113,98,105,112,107,117,98,98,111,103,108,110,103,102,105,98,96,82,106,106,100,99,87,117,114,119,91,130,111,97,103,106,100,93,104,104,103,111,93,104,101,109,95,108,108,106,105,100,97,105,109,107,70,98,102,107,124,100,95,100,111,109,89,108,116,106,109,111,105,105,95,106,94,99,98,100,103,100,102,101,100,109,98,104,100,105,101,110,103,103,103,99,118,106,107,104,102,106,116,121,110,103,104,106,97,106,109,105,101,101,110,103,104,106,101,100,91,107,113,116,112,102,96,100,99,102,113,103,100,108,104,106,118,111,106,105,107,105,110,105,112,135,100,101,100,102,106,102,94,81,97,95,102,95,95,93,105,103,116,92,108,96,98,105,101,100,102,101,107,104,100,114,105,108,108,114,103,100,110,116,96,123,103,102,101,108,112,94,108,104,93,110,98,94,109,97,106,98,110,113,107,100,102,111,95,107,101,109,133,109,112,112,104,102,104,106,106,100,97,105,121,105,92,99,108,108,106,96,100,99,95,99,108,114,104,95,99,95,100,104,103,104,106,96,95,107,100,107,98,100,104,95,108,103,112,98,103,103,109,107,108,96,102,102,110,101,92,100,102,106,114,111,100,90,87,112,106,88,92,109,98,114,103,112,97,104,96,91,107,105,114,90,102,97,96,103,117,104,100,104,109,97,92,99,131,115,109,103,108,104,112,94,92,110,109,103,108,109,103,106,99,104,108,110,102,103,105,99,112,108,100,103,99,113,93,98,106,81,98,115,95,94,109,112,117,105,109,114,106,96,100,103,101,107,122,101,109,100,93,100,94,105,105,94,108,97,98,96,103,100,108,94,114,98,108,114,108,106,114,100,104,102,100,113,116,118,103,108,103,112,108,106,108,100,107,113,120,105,101,110,104,102,77,105,113,107,103,110,109,104,98,87,99,109,104,106,118,103,105,101,108,105,98,116,105,108,99,84,103,113,96,113,105,109,104,104,122,98,105,103,98,108,107,101,103,108,99,111,109,112,101,101,103,109,102,106,103,104,100,99,110,104,108,106,106,96,99,111,102,102,91,107,116,121,84,108,99,99,101,109,82,100,107,112,112,109,104,107,111,102,104,99,82,113,98,92,101,103,88,92,107,98,108,107,106,109,90,121,103,106,104,102,103,101,101,107,103,113,112,112,109,109,113,110,107,110,109,90,104,127,110,103,109,105,106,116,106,102,104,110,107,106,100,108,112,121,105,97,105,101,101,110,110,112,117,99,103,117,106,117,115,111,99,107,96,89,100,108,117,109,99,98,102,102,115,99,111,103,112,108,99,103,100,101,92,96,112,98,92,107,114,105,86,91,110,98,96,108,113,101,98,109,104,109,103,98,105,107,108,112,95,109,113,101,105,113,105,103,102,111,93,105,104,104,86,94,98,100,103,108,100,111,100,92,100,91,85,109,106,104,86,102,97,100,100,101,98,104,100,103,98,108,106,111,94,100,91,97,106,95,111,97,112,107,93,94,90,108,114,119,98,116,99,112,110,110,107,106,103,113,101,115,97,111,122,106,128,109,105,104,105,112,95,116,105,105,114,95,115,104,111,117,102,106,94,117,115,96,110,106,82,102,108,96,112,113,100,91,107,114,106,94,101,100,100,104,114,104,94,101,104,80,92,100,106,113,103,100,100,105,104,101,109,99,94,112,126,102,100,99,112,117,107,91,117,101,99,111,116,107,110,107,113,100,104,98,112,105,100,95,97,105,114,106,103,102,102,105,107,92,113,115,98,92,106,99,109,96,96,104,105,93,102,96,113,96,108,112,96,99,116,102,100,96,98,97,106,97,91,113,117,96,105,119,106,103,95,104,123,108,104,73,99,108,99,92,95,89,106,94,103,105,113,112,99,111,104,119,114,108,103,105,102,86,88,113,91,97,94,107,100,94,99,103,107,124,110,100,111,112,104,106,103,96,104,114,103,106,100,106,98,108,103,105,101,110,99,105,108,111,98,113,102,108,116,104,112,112,109,111,99,90,99,112,116,99,94,101,116,103,103,97,79,104,91,92,91,106,95,98,112,103,100,97,104,105,98,107,107,103,109,101,107,98,109,111,108,104,101,110,106,109,88,121,115,104,98,110,110,106,101,106,104,92,98,92,102,111,100,105,114,97,108,102,99,93,102,104,98,104,105,95,109,99,104,110,108,106,103,103,103,95,106,111,95,104,103,101,103,107,113,104,94,97,106,95,114,119,110,101,92,121,94,99,105,120,99,105,107,93,100,104,102,87,98,113,101,107,106,100,103,99,104,106,104,108,93,97,107,107,109,109,88,97,101,98,104,95,104,98,100,101,98,95,90,97,95,94,108,106,97,102,106,101,96,100,105,108,99,104,97,105,98,98,107,101,91,91,105,103,98,108,98,89,105,103,125,96,116,108,102,94,100,112,103,111,107,101,106,99,116,99,106,103,106,106,109,100,109,109,88,103,93,106,97,98,105,112,102,111,105,120,106,99,110,105,89,96,109,96,104,113,114,105,95,107,96,101,113,94,100,110,104,100,105,101,100,96,95,106,105,105,107,93,104,88,95,107,110,87,98,81,108,106,103,113,97,101,100,88,99,100,105,91,109,113,120,104,103,105,103,106,104,99,109,115,88,102,107,93,106,105,108,99,96,101,95,119,109,101,102,103,97,101,105,117,106,109,113,91,107,103,92,100,97,76,80,107,79,109,112,100,117,109,108,102,113,99,96,101,82,108,98,108,111,108,105,101,93,121,103,106,101,93,99,106,95,108,104,101,99,99,100,110,92,118,101,95,103,111,96,108,95,110,102,121,119,94,93,90,102,103,102,116,100,104,111,115,100,111,108,92,92,105,98,107,103,102,94,105,99,109,95,91,107,102,105,96,104,91,113,110,105,108,103,98,100,113,108,100,96,104,109,110,103,99,105,105,95,88,106,90,113,107,104,111,95,101,106,110,105,97,108,108,99,113,114,104,103,95,105,109,112,102,104,106,103,113,95,100,116,99,109,116,108,89,89,99,100,109,105,108,118,103,94,105,101,95,107,95,115,103,99,94,106,93,88,88,104,96,105,106,106,107,102,95,106,102,108,91,92,103,103,107,103,102,117,110,92,107,103,99,112,114,114,109,103,102,99,99,108,87,103,108,106,90,93,104,110,99,100,95,96,103,100,109,112,106,105,104,96,112,105,101,104,121,99,102,106,88,95,102,103,107,105,89,100,96,117,92,94,113,98,100,91,106,95,108,98,123,106,103,113,107,108,98,98,103,95,108,111,104,100,102,97,99,102,108,99,118,91,106,97,110,96,100,104,115,97,84,110,100,105,102,95,104,95,103,94,110,97,104,91,108,98,97,94,106,97,110,97,103,99,99,102,99,106,111,101,115,110,96,97,86,106,98,102,96,97,105,107,102,108,91,97,102,101,94,106,109,98,94,107,105,106,98,107,113,107,110,105,89,103,100,105,101,118,95,108,103,102,112,110,103,106,99,116,105,104,99,113,107,95,107,118,117,99,85,103,106,102,102,97,105,111,91,100,92,92,104,99,90,106,101,107,100,104,106,115,122,114,116,95,106,97,96,90,98,108,102,107,87,100,85,101,110,103,97,103,94,121,113,97,99,105,95,98,107,101,97,101,81,93,102,101,110,95,101,89,78,112,112,109,100,89,103,109,103,107,97,110,104,103,111,113,107,98,98,96,103,94,97,105,100,103,113,104,113,108,95,112,98,107,105,92,93,94,91,109,107,101,105,106,100,99,109,111,104,100,102,108,108,103,104,103,106,99,67,112,112,100,125,105,107,106,107,98,110,113,104,102,102,105,100,104,98,102,107,85,101,117,115,100,114,112,103,94,113,90,108,110,104,99,91,103,98,106,120,107,111,100,113,111,97,101,101,101,96,113,108,103,97,111,106,112,111,109,103,94,105,101,102,113,103,105,126,102,104,116,113,98,105,113,106,111,109,98,103,104,105,101,108,103,106,103,98,102,109,91,92,121,105,105,100,101,101,94,99,102,108,115,99,106,99,98,101,99,113,108,85,93,105,100,96,100,101,86,103,92,97,109,92,102,85,99,121,91, +647.43945,113,78,92,104,99,107,110,96,93,108,100,102,105,103,109,99,103,107,107,99,105,108,78,102,96,106,98,112,94,92,100,95,74,111,106,109,97,99,117,106,91,106,88,104,116,88,101,103,104,99,102,105,103,96,110,99,101,83,127,107,106,99,101,97,114,116,100,101,100,96,103,105,94,100,94,117,96,107,106,107,97,95,101,108,96,104,113,110,96,90,99,97,103,110,93,91,93,103,96,101,91,105,100,101,100,95,105,115,104,96,109,102,115,102,96,109,99,110,109,87,99,94,108,104,108,100,100,108,109,98,106,112,111,107,109,109,96,114,95,101,105,99,92,93,97,94,103,98,74,74,98,115,106,102,99,109,96,103,101,102,111,100,103,106,78,99,94,104,91,116,101,102,102,103,111,115,105,103,107,106,102,106,103,117,100,110,106,93,114,100,109,117,89,102,91,105,105,116,105,112,103,104,116,105,101,98,116,99,126,97,120,113,85,105,112,108,100,106,94,116,91,104,102,97,98,116,106,112,105,105,96,99,111,104,102,98,106,101,97,82,107,117,100,114,95,102,102,95,100,121,101,99,97,106,97,103,102,105,104,108,107,104,103,95,91,106,103,108,112,95,95,99,105,109,108,110,106,108,91,106,95,108,103,87,94,94,105,101,141,104,101,99,108,110,108,106,99,105,105,103,98,106,103,105,91,112,110,117,108,112,103,103,107,87,100,103,109,116,99,100,104,103,94,109,92,95,97,94,114,113,106,111,102,105,103,65,94,98,106,118,101,103,95,98,96,121,105,100,100,106,108,103,106,104,108,102,95,94,102,117,91,101,103,95,107,117,109,103,105,119,104,107,106,110,95,100,100,94,110,107,105,107,107,98,100,94,100,104,85,96,106,107,96,105,98,107,117,112,103,100,95,104,109,96,94,92,100,103,110,111,110,95,105,103,96,105,95,100,110,101,103,102,86,105,96,95,108,92,104,124,94,101,97,104,95,107,104,113,105,102,111,99,104,93,97,99,108,103,105,109,106,108,118,104,101,104,104,105,115,99,104,100,110,106,100,100,108,106,102,100,102,106,96,109,104,100,101,99,103,97,101,110,107,101,109,93,106,109,101,101,94,105,99,99,95,103,91,104,98,108,109,107,97,102,90,98,132,97,102,102,94,106,104,106,92,102,103,104,97,93,95,102,113,105,102,109,110,100,91,103,102,88,100,104,97,104,97,98,101,111,105,95,104,108,110,88,106,97,103,105,95,111,102,103,99,115,104,99,97,108,112,113,97,112,108,64,105,111,110,103,103,95,73,99,75,98,110,98,110,103,95,113,107,91,102,103,110,112,108,96,119,95,105,95,99,102,101,104,106,109,73,113,113,92,108,100,91,98,102,98,104,112,100,111,100,100,107,111,103,112,102,97,92,101,102,87,100,104,110,103,96,97,107,104,109,67,101,101,99,100,108,109,101,101,99,96,103,96,112,105,83,104,107,108,105,110,107,95,101,103,98,102,111,95,118,111,109,107,124,113,113,108,115,101,98,109,100,105,89,103,108,114,113,101,104,100,121,105,103,96,134,108,99,110,107,104,109,106,97,107,104,97,101,92,108,102,118,112,103,102,94,109,92,93,100,114,108,99,100,96,101,96,99,102,100,96,77,102,104,116,110,108,101,96,96,104,105,109,84,100,116,100,105,114,102,90,104,95,109,113,115,92,113,97,97,101,98,110,107,100,114,99,94,111,91,105,91,108,110,101,108,103,116,97,101,105,114,93,109,103,99,110,108,112,97,104,108,106,99,105,100,81,98,98,103,99,105,122,102,107,95,105,95,102,115,103,99,107,114,99,108,103,103,104,110,103,89,106,90,108,99,102,96,105,98,95,112,107,101,106,104,116,100,106,108,94,105,119,117,95,99,97,95,76,100,104,104,107,95,107,118,96,104,91,89,110,103,109,106,107,108,96,107,104,114,113,101,101,114,97,102,108,107,118,94,105,107,92,98,95,105,93,105,110,101,96,92,107,90,104,96,108,113,116,107,97,95,120,89,118,103,104,91,117,108,107,87,100,102,101,105,112,103,99,95,95,108,113,89,105,101,111,110,104,97,95,99,109,100,88,96,102,101,103,97,111,101,101,87,104,97,101,101,100,94,103,106,110,101,116,100,111,112,108,103,104,115,93,105,123,103,108,98,90,105,109,102,104,104,103,107,108,104,110,99,104,99,106,95,104,95,104,98,107,106,99,136,99,97,92,99,101,109,107,113,95,97,115,95,109,101,100,99,94,109,110,114,103,110,110,106,106,100,109,95,108,87,107,94,92,105,94,100,99,102,97,94,104,103,110,106,98,105,83,103,104,96,119,105,95,98,99,112,108,101,110,107,92,120,110,114,97,109,70,90,108,105,99,97,101,94,99,102,97,96,101,118,90,104,98,95,108,96,101,110,99,100,103,86,105,103,101,101,93,111,102,102,109,107,100,99,102,112,101,102,90,105,104,103,109,113,92,102,109,109,95,107,104,101,100,114,107,106,97,106,108,94,115,110,113,90,97,106,107,103,111,104,112,120,101,102,98,101,100,103,109,98,104,104,95,97,90,94,115,109,102,99,111,99,99,105,101,107,99,114,97,103,99,96,102,102,106,100,95,99,109,103,108,99,107,87,100,109,129,98,91,112,120,99,100,101,93,107,118,108,102,101,96,107,105,96,112,113,109,89,109,115,102,106,102,106,108,91,96,106,113,102,103,102,108,80,91,104,106,116,109,99,96,141,103,102,102,100,111,115,109,98,107,102,98,101,104,128,113,101,102,96,106,95,103,113,105,99,109,95,103,109,117,106,105,106,99,112,102,109,105,93,108,90,104,103,102,105,108,89,116,100,107,102,109,120,104,106,109,83,95,95,103,101,100,102,107,111,102,111,103,109,113,111,92,91,98,105,120,133,108,98,91,103,114,76,102,109,117,100,90,114,105,110,91,104,108,102,87,111,100,100,106,92,102,113,101,92,104,102,106,105,112,116,97,94,98,85,121,96,108,115,102,103,97,114,99,100,102,106,102,112,106,104,107,113,110,109,106,102,88,101,101,103,101,106,100,110,102,111,110,101,125,114,100,107,103,92,96,117,105,102,108,104,103,102,94,109,109,110,96,95,107,91,79,84,104,101,96,101,96,79,106,106,99,108,101,101,103,100,102,110,100,100,120,87,87,103,108,104,101,105,114,100,103,76,95,97,100,99,102,101,102,115,95,104,108,105,110,106,99,106,112,102,88,102,111,101,73,115,117,106,99,109,105,109,98,103,97,91,102,98,101,86,95,112,100,91,100,133,107,102,87,99,95,103,103,99,94,95,98,95,89,106,106,98,110,108,77,95,98,87,107,98,107,100,94,91,112,106,109,93,116,107,94,94,88,98,110,91,107,102,111,102,105,91,94,107,95,87,91,91,90,98,101,76,96,102,101,103,110,120,103,99,92,94,110,94,97,109,98,103,103,106,104,102,110,101,95,90,104,91,99,97,111,98,105,119,92,93,95,91,105,98,98,104,103,104,104,90,106,103,98,99,103,114,99,102,108,109,113,104,107,102,104,103,93,106,100,104,102,98,92,101,109,93,97,104,118,108,97,98,104,108,109,95,100,111,106,89,103,106,105,106,101,105,96,110,98,95,106,102,87,105,97,98,107,93,96,107,106,96,111,100,109,103,106,99,99,84,117,121,94,105,94,112,104,89,97,109,103,113,91,106,102,109,88,107,92,96,96,106,93,111,121,104,98,106,109,100,112,103,87,104,116,98,111,113,100,105,100,102,110,120,104,113,113,100,102,90,107,104,106,102,107,98,102,107,105,100,98,94,106,121,100,108,108,110,108,108,118,103,102,100,94,87,100,82,86,103,98,101,101,94,103,88,104,103,94,97,104,104,112,103,81,94,104,111,109,100,107,105,105,112,106,98,102,123,106,100,113,101,97,99,95,114,102,100,87,105,101,101,101,91,104,104,100,97,102,106,97,107,100,93,104,103,103,104,100,105,118,92,95,108,95,115,104,99,97,104,107,107,112,104,103,99,100,90,92,105,107,105,108,85,103,110,102,104,99,98,110,90,110,87,110,111,117,97,105,76,108,107,109,104,101,104,94,99,106,107,95,97,103,111,113,95,86,98,101,108,107,109,95,87,102,107,105,109,106,102,120,103,99,109,110,113,107,90,94,102,104,99,119,102,99,104,106,98,98,105,117,79,115,103,109,98,104,105,109,96,113,112,105,111,108,112,114,113,116,103,95,102,97,95,107,109,106,95,97,104,110,117,90,115,99,102,99,122,104,103,121,105,105,92,117,113,104,106,100,100,108,106,118,93,121,91,108,100,106,102,96,103,103,102,87,105,98,99,103,109,97,111,104,110,102,120,106,117,108,121,100,102,99,102,95,107,98,110,96,133,107,87,99,97,106,84,104,108,94,88,96,102,109,109,108,94,99,97,82,111,112,109,107,110,99,100,105,97,97,111,107,120,115,89,103,105,104,101,109,111,100,97,106,97,105,107,100,90,107,112,99,118,96,105,115,108,100,99,98,94,116,105,102,91,95,102,107,92,106,117,100,101,100,101,95,98,101,91,93,128,117,110,101,112,101,100,93,103,96,99,109,114,113,104,97,102,80,101,84,98,90,102,94,105,90,95,101,97,99,93,101,104,111,101,98,107,112,104,90,99,113,103,105,101,100,108,101,79,98,105,102,96,94,99,105,101,90,96,101,104,108,99,111,90,98,92,92,109,109,96,105,104,95,100,102,83,117,104,100,97,110,95,108,97,106,107,87,99,94,105,100,84,88,103,90,114,104,97,98,96,110,95,110,112,80,107,108,112,99,111,98,109,107,93,112,94,89,93,107,87,105,90,94,101,97, +647.58063,123,105,98,111,93,108,96,100,96,102,90,105,102,107,95,99,100,112,101,102,102,105,90,98,106,96,93,100,114,92,104,101,108,99,110,97,102,113,107,87,95,106,102,94,107,101,99,106,113,113,98,112,92,109,114,119,88,105,96,108,103,96,107,103,95,103,90,106,103,98,107,99,96,100,90,106,101,112,104,108,98,101,81,98,109,86,84,104,108,111,116,95,75,100,94,104,107,96,100,116,99,100,100,97,98,97,80,89,114,95,91,94,101,107,106,91,110,94,102,104,98,97,101,100,118,117,99,105,107,109,108,100,100,119,96,112,110,87,96,102,106,112,103,101,109,99,103,105,94,97,111,96,100,93,105,93,111,116,109,96,107,117,118,102,114,98,93,100,101,95,101,102,100,102,112,105,93,100,113,103,99,100,109,98,103,103,108,97,121,103,95,97,95,104,104,98,107,99,100,97,101,101,103,104,91,110,81,100,105,107,95,108,115,104,114,99,94,97,98,101,94,121,99,107,110,97,69,99,104,96,103,106,108,98,102,100,106,98,102,99,106,117,109,101,95,106,99,105,101,117,103,98,91,97,104,92,99,105,95,99,100,110,107,101,98,97,96,117,102,95,109,101,99,99,121,101,108,115,112,102,101,90,106,102,101,99,100,103,105,102,98,96,110,95,113,111,99,99,102,121,97,104,84,101,96,91,110,106,97,105,115,100,106,101,102,111,117,104,107,101,101,99,112,102,105,104,106,99,100,106,107,106,118,102,104,105,93,112,109,110,110,110,97,96,102,117,100,105,105,98,96,106,108,105,101,109,108,81,102,86,113,96,112,89,88,102,116,100,99,109,101,97,110,116,101,103,101,104,95,107,114,110,99,104,103,100,104,94,117,94,131,100,90,113,98,98,104,109,107,109,99,94,101,100,106,99,88,109,103,90,99,105,97,96,103,105,96,111,99,97,101,106,116,104,92,105,105,99,102,109,95,106,94,98,109,99,100,108,103,104,107,90,101,99,99,98,108,94,113,108,98,114,98,104,114,106,95,108,103,104,108,104,118,110,95,103,103,83,106,108,104,108,102,98,97,92,100,103,106,102,105,99,124,100,104,105,91,108,116,88,109,110,102,124,94,102,97,110,101,106,101,101,96,100,111,128,93,103,112,113,107,99,105,97,111,111,100,107,94,88,106,106,103,109,107,118,105,99,98,110,100,97,86,107,95,106,108,103,111,108,102,105,101,96,108,98,106,96,101,111,101,101,111,90,97,108,113,83,98,113,107,100,105,109,97,97,98,99,107,101,103,97,109,105,106,105,102,93,109,102,105,100,104,107,102,97,109,124,112,105,103,102,102,119,101,99,101,98,92,97,103,100,121,91,94,107,104,95,105,104,106,100,103,105,107,95,103,95,96,113,105,112,106,109,112,98,113,97,99,116,102,90,105,110,97,102,92,103,95,107,116,103,95,99,91,80,106,113,96,102,95,101,96,112,100,113,104,110,107,106,107,120,104,126,97,95,96,88,111,104,99,99,102,100,94,102,91,122,92,99,111,113,106,92,106,117,103,95,107,98,95,106,96,100,105,91,106,102,93,86,97,113,95,117,106,101,108,107,102,100,100,103,104,106,101,104,102,101,100,102,105,92,106,116,97,98,103,98,113,103,106,106,105,107,95,104,109,98,111,95,104,106,92,115,113,106,119,106,99,112,111,107,102,101,102,105,100,123,106,105,104,108,98,106,100,99,102,108,105,95,113,99,114,98,117,106,92,105,107,101,114,104,110,97,105,99,104,105,102,106,104,98,114,107,109,103,87,123,112,125,99,95,91,94,110,110,107,100,102,106,110,114,101,104,106,110,104,102,102,98,103,103,104,104,109,96,108,108,106,88,97,96,79,96,104,105,100,98,96,96,103,98,105,97,102,106,107,92,93,95,96,99,99,103,96,102,88,112,100,111,97,91,101,98,94,105,94,107,99,111,105,113,101,106,91,100,104,97,103,96,99,105,109,99,98,114,95,100,104,99,102,102,108,109,106,105,100,91,95,99,102,99,78,101,104,98,99,114,103,103,107,106,96,105,95,107,101,103,101,102,106,101,108,111,101,109,109,98,114,101,97,104,114,103,98,110,109,102,116,121,106,95,103,103,99,111,107,103,109,106,99,102,115,109,116,109,105,104,113,112,118,103,115,102,103,108,95,103,106,109,106,91,103,112,109,113,104,99,101,108,109,86,104,100,102,113,101,104,109,96,110,86,109,107,97,106,91,96,91,98,102,95,99,103,109,105,107,114,92,100,109,105,95,110,99,101,113,95,112,90,101,118,125,86,104,109,99,97,105,92,99,113,102,126,114,105,91,101,103,114,97,110,97,101,111,110,110,100,87,105,95,103,112,104,113,101,93,103,90,115,104,94,102,91,110,95,97,108,104,109,107,105,107,71,100,108,81,103,95,82,118,104,98,99,102,99,108,100,117,111,101,116,100,95,102,115,100,107,111,101,108,102,102,121,94,102,100,95,112,98,109,110,116,100,95,96,108,106,93,106,102,99,102,99,96,108,96,92,112,91,102,115,104,95,95,117,102,99,110,92,106,101,96,105,99,97,99,107,99,86,106,97,96,103,115,97,111,104,99,88,107,94,96,106,99,119,95,107,94,107,92,105,98,101,101,118,106,116,113,113,100,90,91,114,95,108,104,102,98,104,94,103,108,110,98,107,102,103,103,109,109,105,103,103,106,105,113,109,95,100,101,103,92,106,110,108,102,112,101,105,99,96,113,98,111,116,113,101,102,103,91,108,101,98,98,113,111,102,103,114,90,106,108,102,102,102,111,94,113,103,103,102,105,109,93,94,97,97,87,106,105,103,112,113,105,107,119,115,97,118,113,101,109,125,105,96,121,109,106,87,108,98,110,98,113,107,110,100,110,117,107,95,101,104,105,108,100,87,113,116,97,103,107,107,93,114,115,105,93,93,116,109,116,97,80,104,102,100,106,108,105,104,111,108,109,98,101,102,97,105,103,96,109,109,113,89,93,98,110,106,102,130,108,104,106,106,101,101,110,101,99,105,115,103,105,91,104,102,107,97,104,114,107,116,107,96,98,98,102,98,98,115,104,112,103,92,108,101,105,100,102,108,99,99,94,97,119,93,130,98,98,95,102,99,98,102,116,100,109,106,99,99,104,66,106,112,110,105,108,105,96,115,102,96,101,94,98,108,99,95,103,113,94,106,103,102,125,92,122,114,95,104,98,116,115,99,107,103,109,106,98,83,104,103,95,115,84,92,96,134,105,87,102,102,105,113,105,108,108,111,102,110,103,113,115,104,109,98,109,106,94,99,99,100,105,101,107,104,109,109,108,117,112,109,98,100,113,97,97,103,87,100,104,107,110,111,97,109,103,96,104,111,109,102,111,100,113,105,104,112,100,120,107,101,106,96,100,99,100,100,106,101,99,67,95,117,102,102,103,95,98,99,112,103,96,104,106,95,109,94,113,104,89,109,110,103,95,105,91,102,109,101,112,111,102,106,103,103,117,95,111,98,102,104,98,103,113,95,126,109,110,102,111,107,93,108,97,98,100,97,103,95,106,94,93,108,95,103,93,97,92,95,105,105,98,99,116,101,109,115,94,95,100,91,98,96,92,87,99,94,100,107,111,99,103,92,107,102,99,106,107,109,98,100,97,102,108,103,106,100,96,103,109,109,108,121,98,91,100,103,89,105,98,96,85,115,108,97,104,105,112,101,96,92,112,98,112,100,105,107,132,101,98,91,83,92,101,95,103,106,93,101,94,108,99,103,109,113,95,102,101,91,100,106,124,101,99,101,106,117,98,99,101,111,99,106,99,95,94,99,97,109,100,104,106,108,114,113,101,107,99,103,104,97,94,93,102,101,101,83,99,102,94,91,101,105,107,97,98,94,103,112,124,80,96,102,109,91,94,106,99,101,109,110,93,94,103,106,98,105,115,88,82,98,103,105,102,101,107,121,120,101,110,106,104,112,102,104,97,107,117,104,108,104,92,105,74,109,99,111,103,102,103,104,109,108,105,98,109,107,102,105,109,99,102,110,104,101,112,105,101,104,104,97,103,107,84,96,90,105,96,100,100,101,113,105,103,90,99,104,105,102,104,99,97,100,99,107,117,98,115,106,98,96,109,109,96,96,78,89,110,125,104,92,96,83,107,101,112,106,82,104,105,93,96,106,101,103,107,109,100,102,108,100,104,100,98,105,99,90,92,103,91,94,97,98,99,94,111,102,106,101,111,114,117,104,95,93,102,106,98,97,105,112,95,109,105,112,107,115,101,95,109,113,103,100,91,107,105,103,99,109,122,98,102,102,100,109,108,102,105,106,107,111,106,93,100,107,109,99,94,108,103,111,116,108,103,109,103,97,95,102,106,116,92,79,103,101,109,95,99,91,99,128,103,109,98,88,112,99,101,106,103,102,91,105,109,96,106,98,95,102,105,104,108,112,95,83,105,101,122,95,98,102,104,100,112,103,89,98,91,103,102,112,113,92,106,105,106,95,97,89,98,96,106,98,109,99,99,97,112,98,107,106,110,107,104,100,88,106,106,92,106,113,116,102,96,91,106,70,102,106,104,98,102,112,108,100,94,112,107,91,100,93,111,97,97,103,66,101,87,96,108,111,89,97,104,97,89,95,99,94,105,86,112,109,97,107,104,92,116,108,84,99,100,95,111,100,104,103,93,106,98,91,111,114,95,106,111,106,127,84,114,112,91,104,94,107,97,77,102,102,111,99,105,107,94,105,102,95,107,96,104,87,106,110,100,93,103,109,110,91,113,100,111,103,104,107,93,121,118,103,95,105,97,104,100,98,98,90,102,91,104,105,95,101,95,105,143,99,100,108,118,101,108,108,79,96,76,99, +647.72186,116,100,101,110,97,99,106,107,96,91,97,107,96,105,105,100,95,108,101,95,105,98,97,90,81,115,113,103,106,107,93,100,94,109,110,95,100,96,120,89,97,90,97,91,103,110,99,103,137,124,102,107,107,118,114,104,104,105,112,89,66,104,112,96,95,94,93,105,102,85,100,103,106,99,87,105,102,104,94,97,105,104,104,99,95,101,97,102,109,99,99,103,96,113,119,107,88,99,97,101,100,96,109,100,105,97,105,104,109,94,79,106,93,109,109,103,100,106,80,91,104,103,90,109,74,98,102,98,107,103,90,113,104,108,113,121,99,114,75,105,105,108,105,99,100,117,108,95,102,87,103,116,106,95,105,91,99,108,108,106,117,98,116,111,125,112,101,91,101,87,91,106,94,107,92,100,112,81,109,115,103,102,96,104,102,97,106,111,106,102,101,111,87,98,96,97,99,86,104,106,96,106,106,112,99,106,103,96,118,95,101,100,100,97,103,103,93,105,94,91,107,106,106,99,94,114,109,102,77,113,94,108,104,113,98,114,102,108,108,95,104,100,106,93,89,103,95,93,103,97,99,108,100,99,112,99,93,91,98,94,111,97,96,104,99,95,103,98,107,81,96,93,108,108,106,99,110,106,100,94,96,113,104,107,101,103,92,91,99,107,104,107,105,95,111,105,112,100,97,93,99,98,100,112,95,110,106,108,102,102,108,91,111,112,99,103,112,113,104,94,94,97,98,102,102,95,108,71,110,108,111,108,102,113,112,116,103,102,101,102,93,96,104,102,95,107,109,102,106,98,105,111,95,98,107,99,107,107,114,105,100,97,92,85,103,101,100,111,104,113,106,132,118,102,97,95,106,138,101,89,105,108,100,102,102,90,101,99,113,95,109,87,71,96,102,96,92,106,107,106,104,97,100,83,98,82,105,112,121,95,103,100,92,113,99,103,108,94,113,101,93,106,102,109,99,97,106,106,106,115,95,121,97,95,105,100,103,105,99,98,117,91,106,104,108,104,95,103,96,109,114,91,102,117,104,97,98,108,128,104,99,99,107,102,98,117,102,99,102,93,98,111,91,125,98,91,101,100,92,108,103,97,116,117,96,100,117,109,104,100,106,100,115,112,99,80,101,95,95,111,111,100,97,130,107,114,106,112,110,99,113,93,94,110,106,113,103,106,108,89,83,106,117,109,97,100,113,102,95,100,102,98,101,101,100,103,97,105,97,99,105,109,106,87,99,91,101,109,105,96,93,120,107,107,109,99,90,89,88,94,111,96,92,114,104,102,100,109,93,92,104,92,100,93,91,97,106,107,79,100,104,112,113,97,102,101,97,109,111,94,108,108,104,109,100,107,111,97,102,100,136,107,112,94,103,91,97,111,105,102,99,101,102,96,110,109,113,96,96,98,105,101,103,104,106,112,106,110,105,120,103,93,117,103,100,92,105,108,113,106,101,108,100,107,104,95,95,114,103,113,88,102,108,113,109,109,101,119,104,111,111,111,108,104,111,97,112,99,102,100,108,110,105,101,90,104,114,103,104,100,102,99,104,88,101,90,104,97,96,109,105,99,99,106,112,106,100,126,99,103,110,100,104,110,101,105,102,110,108,94,110,115,98,97,102,94,95,128,105,95,108,97,107,110,129,109,100,94,90,103,103,107,96,98,98,101,96,112,106,118,107,102,101,101,103,98,98,107,103,111,100,98,109,87,105,109,106,95,111,78,106,111,94,104,99,96,92,97,97,108,102,109,109,109,108,109,125,95,92,105,100,102,107,103,107,114,95,105,96,100,137,120,98,117,108,92,104,99,94,105,100,93,104,98,104,84,101,104,98,103,113,120,100,107,110,107,116,102,110,99,96,105,87,81,99,108,99,99,111,95,90,105,94,102,97,103,112,96,107,104,93,100,109,99,101,101,101,95,100,105,98,106,98,116,101,110,93,101,102,100,106,94,92,103,105,101,93,97,109,99,101,98,96,98,95,97,99,98,110,95,96,99,95,109,113,107,102,103,102,98,107,89,96,110,116,99,104,102,96,101,100,118,105,99,129,104,93,122,97,104,92,115,104,97,132,96,94,105,96,101,105,113,98,118,83,93,105,105,95,107,103,102,112,93,97,104,100,121,103,106,100,103,108,102,101,105,95,109,107,105,98,107,110,113,92,105,113,101,115,111,100,118,111,94,104,123,97,94,97,109,84,94,102,98,100,106,108,99,92,109,101,101,106,100,106,97,98,83,99,97,87,97,103,87,104,88,108,100,101,112,107,110,104,103,103,99,111,100,77,98,102,99,102,101,101,121,120,108,94,111,95,105,110,92,122,95,106,102,96,87,99,113,109,96,99,98,106,112,103,111,95,107,106,111,103,110,105,105,106,105,95,100,103,98,114,114,108,96,97,97,101,91,98,100,109,92,99,106,103,95,97,102,114,96,102,100,98,112,103,96,105,107,93,103,106,103,106,100,121,110,107,95,87,89,102,109,96,110,111,108,98,101,102,96,101,114,117,106,124,105,107,105,103,108,99,106,98,100,99,104,106,116,94,112,62,97,91,102,108,99,103,86,116,94,100,109,94,105,94,95,103,97,91,101,104,110,105,110,105,97,116,82,105,93,103,95,103,92,94,110,98,83,94,93,96,113,105,94,104,104,90,90,93,108,120,107,111,100,103,110,107,106,101,110,91,95,104,105,90,108,106,99,111,108,103,104,105,82,106,99,109,98,99,95,99,105,105,103,113,87,109,103,111,101,107,104,104,98,100,104,110,98,95,105,94,87,102,101,117,105,99,98,93,110,116,109,118,98,108,116,101,88,104,100,88,119,97,101,114,112,102,115,99,106,105,108,99,95,98,113,112,117,93,110,99,102,101,96,99,96,103,98,103,109,115,97,112,92,95,106,91,109,113,106,104,108,112,98,105,117,100,98,85,96,99,92,86,106,96,102,104,105,86,112,106,93,111,97,99,107,107,95,91,103,106,110,102,110,109,103,117,115,108,105,113,98,100,92,103,103,96,101,106,105,87,109,98,101,104,107,102,103,132,113,95,98,106,103,95,112,116,100,107,103,101,101,107,105,105,96,106,105,100,103,108,113,103,113,87,94,109,110,102,124,106,117,98,122,114,104,102,93,115,108,104,94,108,108,103,95,97,86,111,106,107,113,99,90,103,114,99,99,100,97,102,114,104,102,109,107,96,100,96,107,80,93,115,99,98,105,89,104,96,117,111,94,109,102,118,103,107,106,78,102,117,108,99,98,95,105,113,102,108,97,97,106,111,100,106,97,106,95,113,114,100,103,103,100,112,99,104,110,92,98,125,113,101,91,103,122,97,104,115,102,123,107,111,95,111,109,105,110,103,106,112,106,102,105,103,97,109,106,107,102,113,101,98,106,107,97,106,124,124,106,98,104,103,98,98,97,88,102,105,106,99,96,106,116,98,97,81,110,97,124,97,102,104,99,105,101,112,100,94,111,104,133,105,105,101,106,109,103,111,104,92,110,83,96,100,102,110,96,106,113,96,99,107,108,97,105,106,86,92,91,101,113,96,102,101,116,103,96,109,102,96,108,113,104,106,105,104,108,98,116,101,102,110,106,100,105,99,104,103,81,96,96,110,119,113,102,99,113,108,107,100,112,94,100,95,96,120,94,111,106,99,99,90,105,115,104,99,108,111,106,121,107,113,110,109,96,117,95,104,107,109,105,112,91,100,109,118,99,103,108,81,96,101,103,98,105,96,109,113,102,101,101,98,104,108,105,106,106,103,104,93,91,100,110,102,114,99,97,90,113,97,106,105,95,108,98,105,108,106,110,100,105,98,105,94,113,102,91,104,97,91,106,104,95,105,113,80,95,98,99,96,103,97,99,117,97,92,106,96,85,97,95,96,99,102,90,97,95,109,83,104,114,99,94,100,102,100,92,112,120,97,100,82,104,107,91,95,95,98,95,106,97,97,103,112,96,104,95,98,99,109,104,111,92,92,130,102,106,99,114,91,95,111,94,91,110,111,101,106,98,105,96,105,103,106,96,102,106,101,92,117,109,97,94,115,92,112,94,104,112,100,109,97,96,98,108,108,106,91,101,95,108,105,108,96,99,108,110,111,113,124,106,108,116,87,96,99,102,112,113,105,104,89,107,108,112,107,97,102,96,103,81,94,92,99,99,98,108,111,99,106,100,101,100,97,87,100,109,117,108,98,102,73,117,106,105,103,106,102,121,108,102,105,102,104,101,102,106,100,108,112,101,95,94,101,106,107,104,105,100,101,104,110,95,99,109,108,99,118,108,102,100,113,108,110,108,99,111,104,99,112,102,85,101,110,105,109,95,106,90,114,100,102,112,107,94,102,99,102,107,105,102,100,104,103,99,111,98,112,100,71,96,101,98,115,91,103,115,93,110,98,117,105,104,71,103,101,98,106,106,103,100,88,99,104,95,96,110,114,102,98,108,94,108,108,103,104,92,108,92,109,91,104,105,100,107,94,100,107,107,101,112,93,94,100,92,100,99,103,96,104,117,108,114,106,108,104,101,94,97,100,89,107,112,107,109,103,94,105,90,106,118,108,102,99,102,99,104,105,109,105,102,108,105,99,103,106,104,107,96,81,105,80,96,103,103,107,96,105,109,93,105,99,109,110,97,99,89,104,104,87,93,95,82,92,97,108,97,99,96,99,112,98,101,107,94,108,107,102,113,100,98,111,105,99,110,106,92,118,106,115,106,113,109,103,108,111,93,106,107,94,103,103,100,108,114,101,93,117,100,118,105,114,100,109,101,114,94,99,74,108,110,112,110,100,99,78,87,88,108,101,114,108,82,101,94,118,102,96,91,113,106,85,91,125,96,94,102,95,96,101,84,104,119,107,99,116,106,96,101,98,104,109,98,96,109, +647.86304,104,108,100,106,108,117,98,99,92,101,92,94,101,110,108,113,100,115,92,101,98,101,109,88,105,110,104,95,121,107,95,102,100,104,105,106,99,102,103,90,108,108,101,96,92,111,108,104,99,104,106,86,93,100,102,110,96,99,96,101,110,103,100,88,111,105,111,95,118,103,91,103,102,115,106,109,106,96,100,106,101,123,102,95,98,84,118,98,89,100,104,103,95,99,106,96,94,94,97,104,94,92,96,101,102,112,108,98,92,94,97,113,113,103,125,101,97,103,100,108,99,100,102,108,106,99,102,91,104,96,96,89,100,107,93,111,107,110,100,97,117,107,98,97,101,97,97,95,101,103,110,103,100,98,113,114,81,97,116,98,100,95,110,99,107,112,107,103,102,106,105,107,99,114,113,107,103,94,111,96,107,115,101,102,110,114,95,99,114,99,99,99,112,102,106,103,91,91,110,107,118,103,100,96,92,102,95,106,114,101,98,74,113,113,103,114,103,110,97,115,109,118,106,103,105,99,103,107,99,108,103,109,100,103,100,111,92,100,118,103,99,101,115,99,101,86,122,98,94,103,106,97,97,111,109,117,104,106,101,99,104,113,91,106,61,106,99,108,97,99,103,105,105,96,117,88,109,87,109,112,109,100,105,101,109,96,103,107,97,81,107,104,89,113,107,95,108,110,121,100,108,101,106,120,95,105,97,117,103,94,100,104,108,100,103,105,101,98,102,109,113,95,100,101,96,97,104,93,111,106,105,88,99,105,103,104,100,105,94,102,92,122,102,104,112,124,106,107,121,111,109,97,95,105,97,102,103,99,104,104,109,102,96,108,109,101,110,113,98,96,116,107,99,91,92,94,103,107,105,96,99,111,114,94,103,112,104,105,99,95,95,90,102,101,97,103,91,98,109,108,94,109,88,91,98,101,103,102,85,109,94,101,103,102,94,106,112,111,100,98,109,102,98,101,99,110,109,116,98,112,102,97,97,128,83,98,106,103,98,89,104,114,103,105,100,107,109,104,95,104,98,103,115,113,107,95,95,104,108,115,100,102,110,99,87,103,99,109,103,94,103,99,114,102,102,105,95,98,95,91,101,91,107,99,109,97,105,113,109,110,104,101,96,102,90,110,97,89,90,99,116,96,90,110,111,106,99,109,104,102,101,118,109,114,103,106,101,101,100,99,95,101,108,106,101,106,104,104,112,94,99,82,96,86,100,96,113,101,98,106,109,107,109,105,109,115,102,105,109,109,108,98,114,96,116,105,101,103,102,103,110,98,107,92,121,101,107,106,106,97,108,109,107,113,105,105,110,96,82,110,101,94,114,95,100,94,107,102,101,103,92,107,103,110,111,106,114,100,105,104,91,94,113,91,96,110,91,108,104,101,95,108,124,95,107,98,108,107,99,111,114,108,87,113,109,94,100,109,103,107,104,106,103,97,97,96,104,106,108,107,118,113,108,103,91,110,104,111,105,111,101,104,111,107,96,105,106,113,95,106,114,122,98,113,96,93,94,97,109,98,118,118,103,103,109,108,112,113,116,92,108,97,113,88,88,95,112,102,108,101,117,108,101,110,96,95,106,101,102,105,95,93,103,102,102,101,110,106,113,99,105,112,116,108,106,107,99,96,100,109,89,106,105,105,107,98,104,104,112,113,112,99,97,100,100,103,109,125,104,106,96,102,94,105,103,104,104,104,104,101,100,97,99,95,118,114,110,99,120,102,103,99,103,112,89,117,86,64,99,111,117,103,111,114,100,104,99,115,93,108,108,98,108,101,100,98,106,104,96,99,99,115,98,104,105,108,90,107,102,97,98,110,101,114,119,104,107,105,105,95,100,101,98,95,109,99,98,110,102,79,104,96,88,99,104,110,108,100,112,106,102,104,109,109,105,104,106,100,101,97,120,106,110,94,100,95,98,106,105,93,105,105,104,95,109,110,106,108,117,108,112,112,103,102,98,98,92,102,90,115,108,108,92,105,95,105,99,105,102,104,106,111,100,123,101,108,102,109,97,106,114,116,98,113,107,90,98,103,118,98,103,104,103,105,104,94,125,104,102,100,100,96,98,100,102,86,107,118,104,116,105,107,99,99,105,107,111,92,140,113,105,111,101,98,91,99,97,92,102,104,111,97,102,101,96,96,109,96,123,100,111,108,103,110,100,114,95,104,110,93,115,109,101,106,114,102,103,77,107,116,104,100,95,105,105,99,108,113,101,96,103,110,105,103,101,101,113,101,111,92,105,98,115,101,105,100,113,103,96,117,113,108,107,103,103,94,98,95,98,111,107,88,107,107,100,102,99,114,102,107,112,110,118,100,106,95,106,113,104,93,110,104,104,99,89,90,117,107,112,100,110,103,99,102,100,101,110,111,104,94,104,102,106,136,107,107,108,90,117,102,93,103,108,103,101,100,95,105,103,101,97,102,101,100,103,79,95,102,109,95,117,102,121,96,108,113,111,97,112,107,99,109,99,103,96,71,109,106,103,121,98,109,93,112,100,96,113,101,110,75,92,112,113,98,96,108,106,117,100,115,77,102,112,98,105,96,105,99,106,102,93,77,94,96,95,103,98,103,107,108,98,91,101,112,105,103,109,110,109,101,104,87,114,99,94,103,113,103,102,98,99,107,116,97,113,114,107,91,108,102,110,109,98,105,109,102,99,106,110,103,103,67,104,101,121,112,106,106,88,113,98,112,106,102,108,97,108,105,103,111,116,107,98,124,112,108,97,106,112,100,94,112,110,95,106,104,114,105,106,96,106,114,116,96,103,124,100,117,106,109,99,108,97,109,112,99,111,113,102,100,110,113,116,92,106,109,99,113,107,94,118,108,93,111,109,100,73,113,107,101,93,102,100,103,104,105,106,102,103,103,106,111,94,108,102,121,105,105,116,100,100,100,111,104,97,105,96,108,93,114,102,108,102,97,93,108,111,106,113,109,107,109,96,135,102,120,121,103,100,103,104,98,102,105,98,102,111,78,109,113,101,108,103,102,98,97,125,110,105,84,105,101,108,107,88,105,105,121,100,110,105,96,108,103,102,98,108,98,95,99,105,114,107,109,100,109,105,109,115,94,107,114,107,107,97,105,125,101,104,109,84,100,103,117,111,100,96,92,93,110,100,112,106,116,101,102,109,100,101,104,100,98,106,107,108,111,120,104,113,99,112,97,106,117,101,101,107,108,113,121,101,109,95,118,103,94,106,112,102,99,104,101,80,96,103,79,108,95,105,110,95,98,107,104,112,108,83,120,115,104,93,96,106,92,104,109,109,103,116,102,118,92,97,108,110,101,102,99,100,77,108,83,104,112,111,113,91,101,104,102,102,99,107,99,108,94,102,102,106,113,112,98,121,105,110,106,104,107,107,101,115,108,105,118,101,105,105,117,112,101,98,112,91,98,106,106,102,94,95,95,96,95,101,109,105,96,112,108,104,106,123,97,99,98,101,93,87,98,93,88,103,116,98,92,92,108,107,103,109,99,99,122,95,112,114,102,105,105,101,96,112,105,90,106,95,115,113,102,94,105,105,99,89,98,103,118,124,97,106,100,107,92,95,113,103,100,99,102,114,103,99,113,105,102,109,107,108,108,93,99,102,95,104,98,107,101,104,112,101,99,99,106,109,103,107,109,105,91,104,123,111,104,110,107,92,93,118,99,117,98,103,114,107,98,107,93,99,112,113,106,100,93,105,107,96,107,115,104,104,85,92,108,99,103,97,110,103,91,97,101,99,101,117,104,103,98,120,97,107,99,105,107,114,101,95,96,114,101,108,117,118,112,106,103,119,109,106,103,98,92,106,100,123,109,103,122,112,98,98,106,108,99,98,99,101,102,106,107,109,94,105,108,103,107,117,104,107,102,102,107,104,120,104,97,98,78,82,97,94,107,104,111,104,104,98,108,111,107,113,108,104,107,115,101,108,107,103,103,106,109,99,111,98,106,104,112,110,106,93,108,109,100,108,108,105,108,79,102,94,86,102,109,87,100,112,93,98,121,87,105,99,111,100,105,107,93,107,89,110,108,110,107,104,113,113,109,118,96,96,97,107,96,116,90,102,95,106,102,101,102,106,105,108,95,103,111,106,110,103,110,102,101,94,107,105,105,98,97,109,112,100,96,100,94,96,107,100,109,103,85,110,101,99,104,112,104,108,109,96,71,99,113,106,103,102,103,100,103,98,105,102,109,102,123,109,95,106,97,101,115,107,109,110,107,94,108,105,109,98,88,98,102,117,92,103,93,103,108,105,101,109,110,103,94,110,105,109,114,101,100,102,116,98,98,107,95,105,107,100,100,120,111,106,97,114,115,106,102,109,91,98,95,102,109,104,106,105,91,107,103,111,107,83,107,102,103,107,105,90,113,107,79,97,113,98,105,103,106,100,103,115,96,90,98,95,111,105,101,105,104,98,111,99,96,96,99,93,97,104,136,109,76,110,113,100,92,106,104,100,102,99,90,91,102,107,102,112,112,103,92,95,108,100,115,106,107,103,115,97,101,114,104,105,102,100,108,103,99,111,104,103,98,87,110,106,105,104,124,108,100,110,100,96,101,109,89,110,109,103,111,99,99,95,108,115,106,98,91,97,108,108,107,92,108,98,109,108,101,95,136,104,101,103,112,115,109,100,121,90,112,100,98,100,115,96,110,101,105,105,105,109,108,108,96,104,112,115,95,97,104,119,106,105,98,91,90,120,105,102,101,96,111,96,93,115,107,108,104,98,109,110,97,113,109,98,97,101,101,98,103,96,109,106,108,120,106,100,96,99,94,103,87,99,102,125,109,100,102,104,106,111,109,89,106,93,97,108,119,108,95,104,93,98,99,88,114,98,93,102,90,107,118,106,103,115,86,103,102,98,111,95,103,101,113,102,101,103,88,120,90, +648.00421,114,104,104,96,99,92,99,108,104,111,109,104,105,106,93,110,98,117,111,100,112,106,93,105,106,115,104,122,97,98,100,98,99,102,102,95,106,106,118,106,99,93,94,99,97,110,101,96,94,112,97,103,119,91,108,108,87,103,101,90,108,72,101,105,101,101,96,106,97,98,103,107,99,104,80,102,93,104,105,91,93,106,96,105,100,117,94,109,108,103,97,103,74,98,100,108,99,100,99,99,81,103,106,95,106,95,104,100,100,96,92,100,100,93,108,104,96,104,106,108,86,110,98,105,103,99,108,101,101,115,116,92,96,104,119,102,97,101,109,91,92,96,101,96,104,101,103,115,101,112,113,97,109,101,98,86,95,97,109,90,99,96,110,112,97,102,105,94,101,86,103,94,93,99,99,108,106,94,114,102,104,101,91,112,97,103,103,102,116,109,106,104,104,115,108,105,109,99,90,100,98,102,114,91,112,107,84,107,112,95,102,105,104,105,101,96,92,107,91,100,103,107,101,92,101,95,114,107,102,94,92,103,101,113,90,109,104,106,103,101,97,98,111,110,100,94,114,101,110,103,111,96,90,97,97,107,108,107,92,91,97,91,71,100,89,102,108,103,104,92,104,99,98,97,105,91,113,93,95,105,101,112,83,113,107,99,94,112,91,95,109,112,103,100,84,91,103,99,101,106,98,109,96,105,73,96,101,107,102,100,100,110,114,99,103,106,107,106,118,104,105,94,93,109,99,112,87,99,101,120,99,117,104,102,112,105,108,100,98,114,106,100,105,87,99,112,98,104,103,107,94,104,103,108,102,108,104,99,112,99,98,96,93,96,100,103,101,91,107,114,109,92,100,101,87,91,106,97,98,115,97,96,109,115,109,106,73,92,108,122,120,103,102,108,102,97,104,91,90,107,86,99,96,105,92,101,124,98,119,99,94,105,86,90,87,95,105,104,97,99,104,93,94,104,105,113,118,94,89,109,96,98,105,100,104,101,106,108,108,104,103,98,110,107,101,100,101,97,106,110,97,90,105,98,95,95,107,80,103,94,98,97,116,105,107,102,103,102,105,99,91,100,98,93,93,108,108,113,106,100,103,107,103,109,110,96,105,100,94,102,103,115,100,92,86,87,113,97,105,104,117,107,100,101,102,114,105,95,109,113,106,119,91,109,109,107,99,100,92,107,113,100,113,103,108,96,98,96,101,107,96,106,105,96,99,108,109,113,99,107,115,110,102,96,94,108,109,101,108,98,98,109,106,97,103,108,100,92,105,106,116,102,104,97,100,101,99,106,104,119,95,104,118,97,105,99,102,95,105,100,121,100,82,102,97,93,113,107,108,97,108,103,100,114,112,110,76,98,99,90,92,97,108,111,99,96,96,99,101,95,112,109,113,105,102,108,99,100,114,108,112,107,109,105,106,100,93,101,110,107,90,109,102,101,101,101,115,100,98,100,100,107,101,105,102,98,93,110,100,108,102,107,104,105,107,109,107,112,102,104,113,114,104,86,86,102,117,99,100,110,112,105,118,114,94,110,107,104,103,103,95,108,109,103,106,95,97,110,99,95,115,95,102,107,114,102,114,112,95,91,114,103,96,97,103,91,102,106,99,88,113,109,107,111,89,103,88,96,108,96,116,90,124,112,113,99,96,113,109,106,104,103,93,105,106,106,111,98,115,100,103,105,97,89,98,100,92,89,110,119,111,100,83,105,98,94,94,114,117,99,97,112,110,94,93,107,111,92,106,95,89,106,101,118,105,106,100,106,96,102,101,109,103,102,101,115,73,105,105,100,91,99,103,89,83,103,95,113,98,102,113,83,118,95,117,97,109,94,102,106,104,99,109,119,112,110,108,93,110,110,116,104,99,100,116,116,102,105,107,103,106,85,95,111,112,119,120,105,113,117,103,101,114,102,102,113,100,91,100,107,98,91,94,99,99,105,95,107,94,102,111,106,109,99,105,98,99,91,107,102,98,108,96,92,80,98,113,104,97,109,95,105,104,103,100,104,84,94,112,106,105,105,109,76,112,94,91,92,114,106,99,113,119,108,106,101,99,106,96,82,105,96,98,104,117,112,104,100,102,94,101,94,104,109,104,107,101,104,116,98,86,105,97,110,117,96,98,94,96,107,103,99,111,110,93,103,109,101,102,122,103,109,114,104,104,109,102,108,88,99,90,102,108,102,104,105,103,91,96,99,89,105,101,113,87,118,108,101,97,112,102,104,99,99,102,96,102,100,103,98,96,96,101,75,107,113,106,112,104,109,107,75,103,103,72,96,105,105,89,115,99,103,97,126,86,101,106,101,91,108,124,118,97,96,105,102,100,101,96,100,105,101,107,108,101,95,109,115,114,112,110,108,106,107,108,104,99,106,103,99,87,124,105,91,99,112,145,113,103,90,108,125,111,103,93,100,101,89,111,90,90,116,99,116,92,107,100,98,97,106,106,101,98,105,91,108,112,101,140,107,105,104,96,81,93,110,105,103,101,99,101,89,99,91,102,107,94,103,121,79,107,106,101,104,111,104,103,100,94,116,85,103,105,93,114,101,116,101,98,96,95,112,96,101,78,104,113,99,99,93,102,100,95,94,106,90,110,108,105,106,107,95,110,109,95,103,80,109,101,99,98,97,116,93,113,98,106,104,97,105,114,98,105,102,83,104,99,95,105,103,97,99,109,108,100,110,124,114,106,117,95,118,106,107,100,100,97,88,102,123,106,100,106,100,106,97,100,100,103,111,124,108,98,104,105,103,106,102,110,106,117,101,103,109,119,94,100,108,124,112,94,103,95,98,106,108,104,100,109,111,104,107,119,112,111,107,109,108,97,115,97,101,105,99,108,95,105,115,101,102,99,97,106,98,105,99,96,106,122,101,101,110,98,107,104,103,94,105,98,103,82,116,113,121,105,110,108,112,113,108,106,113,107,102,99,102,110,110,97,93,102,102,107,113,101,110,111,108,99,91,106,115,97,109,102,116,98,91,93,96,98,103,107,101,112,91,100,103,99,96,108,101,101,113,104,101,99,108,102,110,96,101,107,103,109,98,85,110,99,96,106,100,107,106,104,104,108,113,94,113,114,105,107,103,110,110,100,116,95,91,109,99,95,99,99,93,104,98,118,91,101,110,100,109,113,102,106,92,100,109,93,89,106,113,104,110,97,111,103,99,109,99,91,106,95,131,110,103,115,108,94,112,102,123,100,98,101,87,106,96,92,102,100,99,95,114,102,92,118,105,107,92,108,116,103,99,102,108,109,112,95,103,106,107,92,98,88,98,102,102,103,91,110,103,102,105,109,116,94,105,99,104,107,108,102,104,94,110,117,117,112,101,107,109,106,110,96,102,90,91,91,113,95,111,106,96,100,99,102,95,120,102,105,111,104,119,110,96,107,118,101,108,113,105,110,103,94,95,98,93,109,103,98,112,113,93,102,110,89,101,103,98,113,103,100,91,95,96,99,97,117,106,95,101,111,107,93,102,96,94,100,109,111,103,106,113,89,108,100,95,114,95,96,114,103,104,98,100,106,104,103,115,112,96,100,100,99,108,97,100,87,105,105,98,100,106,107,102,107,101,109,105,108,95,104,103,101,97,100,114,132,104,107,94,100,106,107,105,96,111,104,113,122,111,106,116,102,112,91,106,91,104,117,107,101,98,94,91,107,107,105,97,108,108,91,104,109,103,104,102,113,96,104,110,106,105,110,89,110,83,106,114,97,99,106,106,101,105,112,122,107,101,108,105,100,107,102,105,99,93,110,98,106,96,107,95,113,104,120,82,105,98,85,107,102,102,99,125,104,102,107,95,107,104,111,104,106,95,105,102,98,100,108,124,91,115,103,101,98,101,116,95,109,100,98,110,101,79,109,113,106,112,107,116,102,96,101,99,100,108,103,110,101,109,84,101,109,109,106,109,112,109,103,102,101,100,109,107,112,95,103,108,102,108,96,103,98,108,104,109,94,106,88,108,111,113,111,107,109,106,112,109,99,112,104,109,91,104,107,112,107,116,95,111,105,95,108,100,110,101,100,110,91,109,112,111,113,101,109,95,117,94,101,101,97,103,113,111,108,98,113,100,105,95,110,109,96,107,92,94,100,94,104,103,123,106,106,121,98,107,108,103,98,107,107,120,105,107,105,111,96,92,103,95,118,119,99,95,111,109,105,106,99,109,106,109,117,115,106,114,111,98,112,103,102,107,95,98,83,99,120,101,110,100,105,99,108,113,106,108,98,117,114,111,98,115,105,105,108,85,116,91,117,108,99,110,113,92,99,104,90,102,113,97,101,105,118,99,97,116,105,110,97,101,100,105,97,114,102,110,99,98,96,102,103,105,97,107,115,113,111,119,104,117,104,99,108,106,106,109,102,107,98,94,100,111,103,104,107,111,97,96,112,116,103,112,92,91,110,99,104,93,96,115,87,101,86,99,103,116,105,99,92,107,107,88,112,103,106,116,111,111,86,103,100,87,104,112,96,95,102,107,95,107,80,96,109,112,96,99,105,104,79,103,109,98,111,113,104,93,94,100,92,93,97,104,93,91,104,103,95,106,103,106,102,101,94,102,100,96,104,97,101,99,110,109,105,92,97,107,97,102,112,114,102,112,108,104,110,91,103,106,103,99,104,100,103,91,98,114,92,100,108,109,101,97,102,98,103,96,94,91,115,100,113,108,93,103,105,103,105,95,115,107,103,107,107,95,100,95,102,99,104,108,110,106,107,91,112,103,116,81,113,104,100,100,103,92,101,102,112,106,112,113,110,119,92,92,102,107,98,98,107,104,113,100,110,115,112,111,108,100,105,104,101,103,109,100,111,100,99,100,75,101,97,107,96,113,109,102,104,99,101,109,116,100,94,96,102,100,99,93,102,121,104,116,113,101,110,85, +648.14539,107,79,101,98,98,99,95,104,103,103,98,101,104,106,94,100,95,96,91,103,110,97,105,110,101,103,85,76,116,107,103,94,110,110,116,105,99,91,100,102,86,98,113,94,105,108,98,113,107,93,75,97,92,102,98,98,82,101,106,113,78,108,114,106,96,111,95,103,113,92,109,104,101,124,106,103,97,101,110,98,113,95,106,104,102,94,99,125,100,94,106,104,107,107,106,105,113,102,104,102,103,102,103,104,98,106,103,95,101,90,100,101,109,97,92,100,96,95,101,105,104,109,102,114,101,104,106,105,110,103,99,108,101,100,95,121,96,103,102,111,104,95,87,100,104,107,111,97,91,96,105,101,102,97,100,98,95,115,94,81,110,95,98,103,112,95,105,87,109,98,112,100,100,109,97,92,104,102,107,97,112,100,107,94,97,109,117,104,98,96,99,101,109,105,102,108,105,100,98,92,106,99,95,103,97,129,95,103,110,101,74,101,100,96,120,102,103,101,108,99,96,111,118,107,105,101,92,113,95,105,92,108,106,97,99,108,101,109,111,116,89,101,112,96,113,82,110,95,98,112,105,96,93,104,96,108,89,101,101,104,106,104,113,110,87,110,87,110,105,96,108,99,109,102,105,106,99,100,104,102,108,101,92,99,100,106,121,89,100,103,84,101,108,113,99,100,103,101,100,81,101,99,110,106,97,96,100,95,120,106,99,110,115,106,105,97,105,98,102,96,112,95,102,108,102,104,102,91,104,110,91,105,103,104,95,98,95,99,93,114,110,115,97,86,102,86,101,120,119,116,105,104,96,112,104,107,103,104,107,106,112,90,94,103,91,103,95,108,101,113,110,104,115,104,106,102,112,101,101,110,108,99,101,111,100,95,106,113,99,91,103,97,106,99,105,97,104,97,97,102,94,96,93,100,106,91,103,106,112,101,106,92,92,122,87,107,106,99,102,99,85,91,122,101,100,101,104,99,103,110,94,112,92,95,104,101,102,116,98,109,110,102,91,112,94,103,100,94,96,109,97,99,109,97,105,100,100,95,106,96,97,107,102,96,109,116,108,100,112,91,100,103,86,105,102,105,104,95,96,104,68,108,100,116,96,100,95,93,96,103,102,99,97,101,102,101,96,92,91,104,109,98,94,89,107,102,96,108,114,113,113,111,97,119,108,113,105,100,103,113,109,100,106,95,100,106,119,101,90,105,91,94,118,98,101,103,93,95,94,117,95,105,96,113,92,108,113,124,104,113,97,101,90,94,91,103,119,100,113,112,102,106,103,98,101,104,121,94,110,99,110,101,108,104,95,104,106,98,101,114,109,106,110,99,106,103,101,107,109,97,103,96,112,98,104,134,103,103,95,102,103,95,112,100,106,102,91,118,86,104,112,90,107,104,107,82,98,92,104,99,115,102,100,95,101,98,94,108,108,100,97,109,101,108,92,87,103,103,105,107,91,112,110,101,103,78,78,107,108,104,92,98,97,97,98,115,102,108,96,86,118,102,106,101,93,96,105,96,107,106,103,101,108,103,97,105,113,100,106,106,106,109,92,74,86,104,99,98,95,108,101,94,101,111,105,95,102,109,105,96,99,96,95,101,93,105,86,106,104,95,103,94,90,98,105,91,108,99,97,101,103,90,116,108,112,93,101,94,107,119,106,108,99,114,93,108,104,104,114,90,102,83,101,95,107,103,105,114,103,120,106,100,116,97,102,106,99,91,114,91,97,91,99,115,87,97,94,109,92,92,105,111,113,107,110,113,100,96,100,93,101,95,106,108,98,113,103,102,103,100,100,100,101,106,107,114,105,100,110,112,93,97,96,111,113,102,112,104,111,104,113,104,109,101,104,102,86,97,98,103,103,105,114,104,117,118,117,113,94,101,98,94,107,91,96,114,119,98,108,103,95,105,102,98,95,96,110,103,101,103,100,92,117,105,95,109,103,114,93,101,102,95,100,109,97,90,102,110,95,100,107,101,99,104,92,96,109,104,103,98,105,109,121,100,89,95,106,107,99,106,79,90,102,89,113,94,111,107,98,106,104,110,115,100,95,98,91,109,95,103,94,111,110,115,101,118,99,103,87,101,96,109,103,96,92,105,100,103,107,108,96,109,108,110,80,95,101,117,110,98,105,104,103,113,98,98,104,110,104,91,104,94,111,98,109,99,102,99,102,104,104,124,105,102,114,99,108,96,95,106,98,102,105,104,99,103,93,92,108,105,103,106,103,92,96,97,112,100,108,79,108,94,117,96,109,98,97,99,95,106,112,110,101,101,95,90,109,101,103,97,93,102,116,99,85,99,107,93,95,104,114,109,105,97,107,108,102,115,107,104,105,114,118,95,107,87,100,105,115,105,101,123,107,107,117,101,123,108,95,101,106,114,111,110,89,113,107,95,99,102,117,113,110,104,107,101,100,111,92,100,108,107,107,93,96,96,99,98,96,97,98,98,90,97,117,104,108,89,110,104,108,108,108,100,98,98,108,101,111,105,97,100,103,88,102,103,97,103,95,110,101,99,104,106,99,107,102,109,105,101,106,105,117,99,112,97,97,109,106,105,103,106,101,106,92,94,125,120,100,106,94,122,97,103,116,104,111,99,113,105,99,114,141,111,94,119,100,108,110,103,99,105,103,99,113,111,102,91,99,109,110,94,109,104,96,98,107,106,110,105,92,117,95,97,99,115,122,110,108,90,82,103,106,115,107,103,103,94,103,108,104,97,105,103,107,113,111,98,112,106,117,123,102,108,110,90,114,115,106,94,113,96,104,102,88,107,110,108,118,104,104,110,104,109,107,93,109,105,110,110,106,105,107,106,121,105,112,112,98,109,96,102,103,113,108,98,108,105,105,109,102,95,102,100,105,105,115,109,101,108,99,104,105,106,106,105,97,116,110,106,110,113,116,103,100,103,102,113,111,99,98,114,117,111,108,106,102,107,96,111,105,104,108,106,105,108,117,105,98,101,110,101,99,101,91,103,113,96,115,93,108,104,101,107,106,92,102,117,108,101,104,116,94,109,109,100,96,102,95,110,117,106,102,80,109,110,111,105,108,116,93,115,100,92,109,105,99,102,97,98,108,115,101,101,115,115,106,93,94,97,100,94,109,109,110,98,99,102,92,95,91,103,107,106,115,99,94,95,99,106,109,114,102,108,107,113,104,99,97,108,99,108,114,106,114,124,109,102,105,105,97,97,108,104,97,98,99,115,102,111,102,101,100,94,97,99,107,96,108,107,107,98,112,113,95,113,98,111,106,105,111,101,98,105,114,104,117,108,111,110,101,90,100,106,106,115,113,109,105,101,106,106,95,104,113,104,108,104,87,109,103,123,124,99,107,106,107,113,103,108,102,117,101,105,106,107,99,101,113,104,116,99,74,108,108,100,100,102,106,99,117,104,111,113,90,96,98,87,93,106,112,97,127,100,97,101,111,106,98,103,98,96,70,99,101,96,107,105,95,101,111,96,114,94,116,102,102,100,109,99,107,116,100,106,93,109,101,112,105,102,99,105,112,105,101,109,101,106,94,111,108,103,100,98,108,112,105,100,95,95,97,97,101,102,101,105,100,99,84,104,95,97,101,107,94,111,99,88,106,96,99,100,99,110,100,104,95,87,101,107,107,99,112,108,102,104,107,106,103,105,105,94,100,112,106,95,96,101,113,95,115,111,85,94,105,100,103,99,106,109,99,111,109,109,109,104,102,101,117,105,93,110,103,97,108,103,112,107,92,101,104,112,98,95,92,101,103,116,101,97,104,101,93,116,103,109,103,92,99,99,99,111,95,105,100,98,98,100,105,98,109,102,103,108,111,108,99,97,109,99,87,115,110,112,120,109,109,100,108,90,104,99,109,104,116,72,113,87,99,112,114,104,91,104,102,108,112,100,106,102,94,101,110,107,90,98,109,108,106,106,99,101,101,104,95,101,108,96,106,101,104,104,106,106,110,110,106,106,88,110,105,99,98,104,112,103,105,102,102,98,106,104,95,109,107,91,106,117,102,109,82,97,107,101,108,122,78,96,95,107,107,101,102,93,101,101,107,117,113,104,112,98,107,100,101,103,92,113,112,99,105,108,102,108,113,116,113,108,104,113,114,107,98,104,105,111,125,99,105,106,97,106,91,117,110,105,113,105,104,99,106,93,100,95,107,91,102,105,116,109,103,113,114,89,106,101,105,104,98,112,117,114,98,105,101,112,91,111,115,106,138,104,90,97,100,109,101,117,110,105,117,117,110,105,97,91,105,110,105,100,136,102,120,94,100,89,96,84,112,109,109,96,94,99,105,85,96,108,106,111,104,113,114,108,108,110,106,106,109,108,106,104,102,116,94,100,112,96,100,112,100,104,110,108,99,93,109,112,94,94,109,98,115,108,105,105,108,103,107,116,98,94,90,98,96,109,101,103,96,106,118,102,96,114,109,93,91,100,102,106,108,112,102,102,110,98,103,102,105,107,105,110,100,99,89,83,104,103,93,105,91,107,94,121,111,117,100,102,91,108,108,114,97,99,114,102,108,107,104,107,90,98,100,106,94,108,107,99,107,106,103,95,106,92,100,99,106,105,103,104,81,105,129,99,109,107,117,96,96,95,115,109,97,117,95,93,110,100,99,108,95,112,107,103,97,105,102,108,117,104,91,103,94,98,95,106,104,112,97,100,103,99,110,102,118,103,117,100,84,106,101,106,113,109,96,98,114,88,98,128,98,101,101,103,86,93,110,96,118,105,99,96,105,108,97,100,89,109,97,108,98,100,99,118,93,99,110,99,99,101,99,102,108,88,94,112,99,119,103,102,104,105,98,102,99,100,111,103,95,103,102,126,98,104,98,108,105,106,111,89,101,100,91,88,105,93,93,103,106,90,104,76,104,105,99,100,93,104,99,98, +648.28656,95,85,99,103,102,89,102,95,104,105,87,106,99,94,103,103,98,94,97,117,103,106,94,87,104,103,121,97,95,107,103,99,112,116,110,100,106,119,106,103,100,95,110,102,102,108,93,98,93,100,92,101,92,114,98,101,99,108,114,100,111,109,100,100,92,120,113,108,101,100,103,103,100,107,93,110,88,94,116,88,110,107,109,104,112,105,97,101,97,103,99,100,104,111,97,100,87,99,100,113,97,111,108,97,100,116,106,97,104,107,105,106,103,105,107,94,103,97,105,99,108,106,112,105,107,101,111,100,85,102,94,104,116,100,105,95,107,114,98,104,110,103,103,105,114,92,100,106,109,98,110,105,116,103,93,110,107,105,105,95,99,90,98,100,93,95,103,109,101,101,102,95,106,109,106,111,113,107,96,88,105,103,104,106,97,113,100,93,95,92,91,117,114,107,95,121,117,100,99,107,105,103,111,105,103,99,106,107,107,111,111,101,101,105,94,96,114,100,100,102,106,123,103,90,105,109,101,103,98,104,101,92,113,111,109,112,100,102,105,101,105,96,103,110,96,109,104,108,105,113,103,110,106,93,95,103,97,107,105,110,96,121,120,100,96,108,99,101,107,108,97,109,107,101,99,103,105,112,91,93,105,106,105,95,97,105,91,107,105,107,91,100,101,105,111,101,103,100,100,98,95,113,100,106,111,107,97,110,101,102,96,98,105,101,100,111,102,96,103,101,113,91,98,113,99,114,89,101,107,105,104,102,105,120,112,116,97,97,106,91,115,106,92,100,99,112,98,104,89,107,93,114,84,112,94,101,99,114,104,96,102,106,102,97,117,100,97,99,110,97,107,70,102,101,103,108,103,99,88,106,103,87,104,104,101,99,97,120,107,96,107,92,79,106,86,100,108,102,101,105,97,91,113,118,108,103,101,103,107,106,91,99,108,103,99,91,117,97,105,94,109,96,108,108,94,97,97,86,87,107,95,113,90,99,105,98,102,104,109,113,103,112,96,95,109,109,101,115,100,98,105,103,108,100,100,103,109,106,99,104,106,105,100,121,113,113,101,96,102,102,101,100,99,97,105,108,100,97,110,104,108,101,109,101,105,112,100,106,105,104,99,113,83,95,96,100,93,99,108,98,110,108,98,113,103,113,97,99,118,103,112,87,98,103,100,105,106,114,105,98,116,99,105,108,100,99,103,104,101,91,114,98,88,87,104,105,100,102,102,104,91,123,102,99,113,101,98,107,107,116,76,110,98,116,124,105,107,91,98,104,94,100,104,108,102,108,101,109,106,103,92,107,100,105,102,101,95,100,104,110,102,109,105,100,90,94,105,100,105,97,105,105,112,97,108,113,103,106,108,114,125,103,105,102,94,93,106,108,102,93,103,107,105,108,115,109,102,105,109,93,108,104,111,92,110,91,105,109,109,110,101,118,102,108,98,110,105,108,97,98,109,106,105,103,93,100,87,109,98,124,89,103,103,107,108,110,102,108,102,106,107,113,115,101,93,98,96,103,106,103,108,100,100,97,102,105,102,122,98,107,99,107,90,96,106,100,99,99,99,106,98,105,107,107,113,98,100,96,109,100,102,95,114,108,97,94,95,98,95,102,107,98,101,107,96,94,99,104,103,100,102,107,100,99,92,105,93,109,114,103,108,102,97,109,94,93,101,94,104,96,111,105,101,106,105,95,106,105,105,117,109,104,98,108,98,101,99,95,110,98,102,101,96,107,92,111,103,105,108,110,115,103,96,105,90,96,109,105,103,108,102,104,110,113,112,103,103,86,109,106,103,98,110,106,110,100,106,105,105,108,100,105,102,113,106,97,114,102,107,109,114,97,102,109,112,92,95,113,102,99,103,115,112,113,108,104,101,86,109,102,112,105,104,113,112,109,93,98,104,126,113,104,106,109,97,102,104,110,109,106,96,82,113,112,109,100,112,97,91,105,103,98,100,101,114,101,108,100,107,107,109,88,101,108,98,110,102,99,102,102,111,96,102,110,109,107,93,106,105,103,139,102,92,96,110,95,111,100,102,98,109,117,101,100,105,100,106,99,98,102,102,117,102,110,100,85,103,104,114,104,108,110,98,109,101,108,91,95,106,112,116,106,109,110,102,99,97,97,101,101,101,104,103,117,105,117,104,111,104,113,112,108,109,109,108,92,103,107,101,108,95,111,107,101,87,107,104,106,106,93,100,100,119,113,98,108,100,109,95,110,101,116,95,111,96,99,97,108,108,110,107,107,105,125,102,105,101,100,102,108,107,106,108,88,102,106,113,113,107,105,72,115,91,107,100,105,107,105,96,103,98,82,121,106,96,114,103,112,113,108,103,103,109,106,103,98,110,105,107,108,90,115,96,94,105,112,104,107,94,104,101,105,99,107,96,103,74,102,116,102,113,109,96,99,91,100,106,104,110,110,100,113,100,103,100,99,101,102,102,98,93,93,109,105,97,106,119,111,107,108,105,101,114,117,98,110,117,93,124,105,106,112,92,101,102,113,103,119,111,105,114,116,94,108,111,109,96,111,93,108,105,102,94,100,110,88,96,105,106,99,103,115,108,103,106,88,113,113,103,104,102,95,105,110,103,97,90,111,111,104,108,110,103,108,105,105,125,110,103,113,108,103,98,92,110,103,106,95,103,107,112,106,104,108,83,111,96,103,95,116,111,101,113,101,99,110,124,116,95,110,101,106,105,100,113,113,111,114,102,105,99,112,104,95,106,115,107,111,92,109,108,117,108,96,113,106,109,107,105,115,104,110,69,101,104,104,98,111,108,116,106,93,100,116,110,105,111,102,102,92,101,106,102,97,106,98,104,100,99,98,112,110,101,116,102,101,108,99,104,116,105,101,99,104,83,99,109,95,109,108,88,110,108,117,106,94,105,75,110,109,104,97,115,109,104,102,96,104,107,107,102,104,111,106,102,100,112,106,103,112,112,107,100,100,102,99,107,97,104,101,92,102,106,105,109,118,92,116,119,110,100,103,109,128,120,96,99,103,104,101,107,78,99,125,99,97,117,109,103,111,115,97,106,103,111,90,91,113,111,113,107,113,103,104,108,108,98,104,102,113,104,105,112,104,113,100,102,102,115,114,95,108,111,105,110,106,121,111,100,105,101,99,92,105,103,104,98,98,105,100,104,80,112,108,101,103,106,107,100,101,106,105,118,102,99,107,98,107,104,98,111,113,100,107,103,106,111,96,94,100,101,95,102,95,108,109,96,90,108,101,111,95,106,106,121,103,89,103,113,109,94,90,93,101,100,100,100,106,99,97,102,106,107,86,100,106,111,97,106,115,93,104,103,108,104,125,102,98,109,100,96,100,113,110,100,109,111,102,94,95,102,105,112,98,100,108,102,109,95,106,106,105,83,108,100,105,108,110,115,105,97,101,98,114,94,102,102,95,106,107,86,95,98,110,101,105,111,102,101,96,102,107,109,92,82,97,95,91,103,94,97,98,101,97,99,103,107,103,99,102,110,118,102,105,120,107,107,102,107,118,109,93,94,120,107,122,110,106,100,104,93,98,108,99,109,136,98,102,90,107,99,100,103,91,91,98,105,102,114,90,91,109,111,104,106,104,110,104,97,110,89,98,111,110,107,92,107,99,117,102,112,108,103,106,95,102,106,94,108,99,96,102,113,101,99,101,113,108,102,110,124,113,106,108,96,106,105,104,105,100,125,87,113,107,103,100,105,102,113,102,109,117,102,97,102,112,112,71,105,98,105,98,128,85,105,103,85,112,109,108,90,101,101,104,102,92,92,105,111,106,106,105,105,109,101,106,104,114,104,103,109,106,100,102,110,103,104,112,99,104,98,102,94,101,94,107,107,101,113,104,112,111,106,104,114,107,115,107,104,94,106,100,101,100,88,108,106,102,92,99,100,99,103,116,115,113,108,107,99,108,104,107,99,106,115,116,110,105,103,105,95,113,100,107,95,103,106,117,101,101,103,106,106,93,105,104,107,102,99,112,110,104,97,105,96,102,102,106,118,109,101,96,102,108,103,106,99,92,106,99,109,105,95,100,100,131,105,94,105,105,106,112,104,109,101,98,108,93,101,111,101,104,113,107,115,112,114,112,107,105,110,110,105,111,97,101,105,109,99,97,102,108,108,107,106,110,93,98,110,109,101,87,95,104,101,98,118,127,96,94,98,100,104,106,107,114,94,109,104,98,99,103,102,110,106,87,89,111,113,104,103,99,105,87,86,110,114,104,94,98,94,106,113,98,92,108,106,109,109,102,108,113,114,99,103,98,96,88,98,116,98,109,108,104,110,106,95,108,104,102,112,98,108,115,108,102,94,108,114,108,115,103,99,106,106,96,90,110,103,109,108,105,105,101,106,123,103,104,107,103,106,109,102,111,103,114,104,102,113,117,91,96,110,109,94,115,103,107,98,109,74,98,113,104,107,108,94,93,104,120,115,101,112,103,135,111,108,110,103,113,109,97,99,101,107,113,96,103,111,95,101,113,96,103,103,109,109,99,105,79,91,105,88,107,131,121,110,110,113,112,93,104,85,111,113,108,122,92,109,105,94,103,113,104,102,103,107,101,110,90,109,104,100,112,104,103,105,104,121,119,101,100,114,116,105,113,99,102,99,114,103,111,109,114,107,106,116,99,103,110,108,116,106,104,102,106,102,116,110,94,102,109,106,95,106,106,105,115,120,132,94,116,101,97,108,91,111,109,101,95,101,96,88,103,108,105,109,94,101,94,95,97,99,85,102,116,105,102,102,104,89,109,99,95,90,106,112,94,111,113,105,101,103,98,118,92,110,105,107,104,105,100,107,99,108,108,88,104,95,105,102,105,114,116,95,113,99,109,111,106,116,106,103,111,119,104,101,108,106,90,103,95,87,103,107,105,100,105,99,99, +648.42773,101,110,104,95,90,114,108,89,102,106,110,93,104,113,111,107,84,102,109,110,90,101,90,111,95,109,102,96,113,109,107,110,92,102,106,106,103,91,103,100,92,111,97,109,108,116,110,103,104,100,87,102,118,98,96,105,101,95,116,95,112,115,99,102,103,106,67,106,99,110,113,104,96,103,98,108,98,99,110,114,95,110,96,102,107,99,106,115,111,120,99,96,114,99,108,109,102,103,110,102,106,105,103,109,105,113,101,90,97,103,97,106,114,101,104,106,98,107,103,102,96,84,102,109,100,99,110,87,94,95,104,104,94,104,93,107,99,78,102,101,115,101,99,101,102,100,92,106,93,107,112,112,105,107,111,95,108,103,104,106,99,107,95,100,104,115,100,105,95,99,88,104,105,107,103,91,102,92,101,100,99,104,102,99,102,96,99,106,108,98,99,103,104,90,120,107,103,101,112,105,94,102,99,98,96,114,99,99,109,123,99,100,91,108,101,119,99,96,98,92,103,125,108,96,103,101,94,109,90,112,107,109,98,110,101,112,124,99,100,109,103,104,112,86,112,106,105,115,80,97,100,100,106,98,94,104,105,109,100,120,103,95,98,113,101,103,110,100,108,101,106,93,103,102,100,99,108,103,106,114,93,106,91,97,80,110,92,106,103,97,110,108,91,101,117,108,103,114,101,106,102,108,115,106,98,108,112,112,100,109,83,97,106,112,103,109,114,104,109,99,96,93,127,105,104,102,104,92,106,100,101,109,97,103,112,115,112,106,109,112,111,99,96,92,105,102,100,86,93,105,111,101,103,99,110,107,104,108,110,114,90,103,94,94,114,104,83,101,102,96,95,102,106,100,102,106,101,109,96,105,99,103,108,107,108,103,97,91,101,98,107,96,87,107,106,98,93,119,108,102,117,99,89,106,95,122,99,94,111,94,95,95,109,108,92,96,109,106,112,105,106,108,96,110,101,99,103,100,97,105,95,97,99,113,93,103,102,102,98,96,116,106,97,98,94,110,103,111,108,111,111,78,103,104,114,92,112,106,109,101,100,100,108,99,111,102,109,99,102,114,93,106,109,100,96,99,97,105,116,109,105,94,100,96,104,95,116,102,102,96,98,100,107,110,96,105,99,114,108,116,117,102,100,102,102,96,101,102,101,106,103,97,100,109,94,103,107,108,99,109,100,92,108,115,102,102,104,113,95,110,95,111,89,109,105,104,105,91,104,117,106,99,98,107,122,100,104,99,104,110,105,95,106,108,109,95,106,119,100,102,117,108,113,111,104,102,105,90,106,102,95,110,117,106,100,108,111,92,109,105,110,87,101,109,103,109,98,98,106,112,112,93,89,102,106,110,114,98,113,104,110,111,105,103,105,91,111,115,104,103,104,112,102,116,103,104,94,101,86,113,109,115,111,106,101,112,107,117,113,109,106,107,99,96,96,95,98,105,99,115,114,115,102,80,101,99,95,112,104,105,101,102,104,118,97,110,116,98,91,105,115,115,93,104,101,110,122,99,113,102,101,112,118,101,100,121,112,102,95,105,117,92,108,101,105,108,95,110,115,99,102,111,108,105,110,99,99,102,109,90,100,106,100,108,104,111,107,106,95,84,103,99,101,99,109,92,94,90,104,103,108,106,106,94,95,99,100,95,118,106,111,102,101,100,103,111,90,97,107,110,101,116,98,99,103,103,104,103,112,84,118,84,106,108,125,111,101,94,91,89,97,109,90,99,97,91,91,100,104,109,112,106,115,112,107,109,91,98,112,102,104,107,106,100,99,98,86,106,114,114,112,105,100,106,107,99,99,111,108,98,94,124,112,99,109,102,90,96,113,112,112,103,106,112,112,105,104,106,114,106,107,120,110,113,98,113,104,116,103,111,108,97,101,91,95,108,108,98,101,100,103,109,109,95,105,94,104,109,98,92,99,91,97,107,89,113,103,93,100,109,107,101,112,118,100,111,100,114,115,105,97,109,92,108,95,113,110,112,100,102,100,95,112,106,99,85,101,116,99,110,108,102,106,103,102,91,100,105,99,94,105,112,102,115,115,102,103,111,103,102,100,98,116,113,101,103,96,106,101,109,120,98,115,100,92,107,112,99,113,104,107,102,110,109,108,111,107,105,99,103,97,97,97,102,98,109,104,96,88,109,108,99,120,108,105,103,100,99,101,106,104,108,103,94,117,114,110,95,88,100,98,106,108,98,112,112,104,99,100,94,96,103,114,98,95,91,102,79,123,98,105,106,114,98,106,99,101,104,102,105,91,105,103,104,79,99,86,108,90,94,96,116,93,99,112,100,104,107,95,129,101,120,108,99,111,108,115,105,111,104,99,103,103,95,115,108,112,113,106,97,96,114,102,114,98,111,96,101,110,114,99,113,102,104,111,109,99,112,109,115,102,109,109,113,99,106,94,110,87,101,103,102,89,91,84,106,117,99,104,98,91,89,102,112,98,110,105,93,105,96,108,96,106,94,86,95,96,97,114,122,114,122,131,95,92,100,103,109,104,92,101,101,95,96,73,87,103,95,112,107,98,112,102,106,116,110,88,112,104,105,109,110,111,84,94,112,104,108,104,99,100,113,115,105,110,95,104,104,112,110,119,108,100,105,100,124,114,111,98,113,101,104,99,100,119,109,102,87,111,107,107,79,105,99,102,112,106,103,115,106,108,103,95,101,109,99,103,108,101,120,97,104,111,105,105,102,108,96,99,107,101,101,99,116,102,106,95,109,98,106,101,96,87,110,105,110,98,117,108,88,102,120,110,102,111,95,100,107,104,108,110,98,100,108,101,104,109,104,94,107,116,110,119,97,116,106,107,96,104,97,95,102,102,120,113,89,107,128,76,107,94,113,92,108,98,110,103,102,104,96,106,104,107,110,100,87,96,102,109,101,91,104,116,105,108,103,87,102,107,104,103,116,98,93,106,115,112,114,109,102,102,104,102,106,84,99,115,93,90,107,106,100,109,106,110,111,104,96,103,110,91,105,105,104,104,101,115,99,109,105,107,93,96,88,113,103,119,103,96,109,89,114,100,101,104,114,107,109,102,102,109,111,102,101,108,95,104,103,102,107,110,109,102,96,101,95,99,97,105,100,107,102,102,103,113,93,107,102,109,92,109,109,104,100,105,110,98,101,91,103,86,95,104,113,112,106,94,93,97,95,110,97,101,102,100,126,102,103,105,100,110,104,101,105,105,112,107,105,99,101,96,100,96,109,99,97,106,100,101,98,91,87,115,112,104,102,106,110,97,107,103,106,117,104,98,111,106,107,111,106,104,104,100,93,98,72,110,100,101,88,102,110,103,111,98,101,99,125,98,98,91,110,91,98,106,115,106,102,112,106,101,95,100,99,100,101,101,101,104,106,113,101,88,106,97,110,100,111,115,110,105,103,114,105,102,96,103,107,105,98,98,105,105,95,101,108,108,108,105,106,102,98,112,94,102,98,106,121,98,98,104,112,106,97,100,102,98,100,113,92,92,113,105,96,105,109,95,107,98,115,100,102,108,89,107,97,96,113,104,102,100,103,99,106,96,106,92,100,100,104,100,103,105,105,103,111,114,87,103,115,95,107,103,104,106,98,91,112,95,101,109,103,94,100,97,101,109,94,109,108,106,94,109,111,101,102,114,103,101,99,103,120,102,102,96,101,98,99,96,107,101,106,108,101,97,90,110,105,111,96,110,105,109,112,94,96,113,116,107,104,103,106,98,95,109,102,101,117,104,106,106,99,105,95,98,108,107,116,105,104,106,93,110,107,97,103,103,97,96,96,101,104,83,102,98,109,100,107,96,100,107,113,102,91,113,106,97,98,99,107,90,114,93,102,102,103,99,102,100,110,107,104,105,116,113,93,91,95,93,92,94,111,87,96,113,98,108,107,112,101,106,107,99,98,94,109,99,96,96,109,101,99,101,109,97,106,117,105,99,98,111,106,97,107,96,113,96,98,97,108,106,113,108,119,104,103,103,102,107,107,98,106,100,91,103,95,97,97,113,102,104,109,103,94,99,106,103,80,116,100,106,84,99,101,107,108,107,95,97,102,107,105,105,119,105,96,102,111,100,103,99,99,95,111,101,99,108,103,110,102,110,100,103,106,99,114,108,107,103,100,96,95,102,102,102,100,106,93,99,105,97,99,107,108,103,100,109,98,99,96,100,91,111,97,106,93,96,99,113,101,108,104,106,101,90,104,98,94,106,103,124,100,109,99,99,107,109,108,105,102,100,106,114,104,97,103,97,108,97,92,105,103,113,100,103,103,109,82,96,109,108,103,98,115,109,113,102,102,107,102,100,114,102,105,109,96,105,105,97,106,102,101,96,105,82,95,124,104,110,114,93,98,106,95,111,99,105,111,93,109,106,111,115,103,123,110,99,98,98,120,81,94,65,98,100,107,90,90,95,90,110,98,90,98,95,88,102,92,95,106,109,97,106,99,107,97,110,105,102,116,94,98,72,97,113,105,110,93,123,93,93,101,93,117,98,99,98,106,93,98,96,93,92,105,85,100,114,107,111,105,98,103,99,95,98,91,96,104,103,112,112,105,96,92,118,98,109,106,92,100,102,107,94,97,107,99,95,98,101,108,106,109,98,99,119,100,109,110,98,105,94,96,98,99,107,100,118,100,92,99,100,95,109,110,88,97,105,93,121,92,106,106,112,89,108,101,120,96,105,112,100,106,114,116,107,94,110,95,104,106,96,111,101,111,113,83,116,94,103,98,117,97,95,87,98,98,104,98,122,98,75,95,117,100,93,100,104,93,108,99,92,89,109,90,105,103,113,98,99,103,112,107,108,105,98,100,101,99,97,114,91,113,113,101,90,125,94,110,105,105,104,98,99,106,112,88,108,104,114,102,102,108,127,104,113,103,82,97,103,105, +648.56897,87,96,103,100,106,117,102,101,94,101,116,105,99,113,109,101,98,114,108,109,100,91,114,116,110,104,128,100,104,97,128,103,113,97,102,118,113,108,97,95,99,108,117,113,110,109,104,101,103,109,102,116,103,117,106,99,100,102,107,94,124,107,102,95,99,103,84,107,104,111,104,100,93,116,104,98,99,103,99,113,103,100,100,85,106,104,105,96,115,101,107,103,91,112,100,110,112,101,99,97,100,112,110,107,114,107,103,100,98,84,108,106,109,108,108,107,103,108,116,100,113,94,107,107,111,111,103,106,80,115,106,99,95,109,111,120,105,122,98,94,107,89,97,100,91,89,113,97,103,107,102,105,102,91,99,105,99,104,109,100,105,99,99,102,109,113,96,95,100,100,118,107,101,100,99,120,105,99,118,101,112,100,103,101,105,100,102,105,119,105,100,111,114,124,101,107,111,122,95,117,112,100,117,116,103,104,101,97,104,103,105,96,107,104,102,110,109,97,107,114,97,116,96,99,95,120,101,96,98,105,88,106,113,107,104,95,105,105,101,116,103,103,123,85,111,109,96,102,95,120,113,106,114,96,108,115,95,104,105,103,110,108,105,102,102,106,108,115,104,102,121,99,113,105,131,100,100,94,104,113,83,86,104,113,104,113,99,116,104,105,83,105,104,108,121,117,108,107,103,98,100,104,122,106,111,112,120,122,96,102,106,99,104,104,102,108,102,121,108,115,100,101,107,99,100,114,101,108,111,108,106,94,111,110,109,106,113,117,126,108,105,103,105,105,108,101,102,111,111,95,111,99,106,134,107,111,103,110,97,105,110,97,94,108,105,105,103,109,102,108,116,106,82,109,119,99,101,104,111,109,105,123,117,110,120,109,96,110,109,99,112,105,85,117,114,105,97,110,117,105,112,112,103,102,110,104,88,119,112,110,105,100,94,119,112,104,107,105,104,95,112,102,106,106,107,104,99,94,83,112,104,108,99,108,107,106,98,99,104,105,104,91,107,108,105,97,105,104,101,117,105,112,99,122,113,108,101,109,109,103,98,113,103,127,91,97,105,98,99,110,104,115,119,112,120,142,106,104,118,114,110,108,113,113,105,98,101,105,96,77,111,124,104,100,105,106,111,108,107,114,111,111,114,113,96,96,96,120,101,108,122,104,98,112,105,124,103,94,103,97,110,108,109,114,121,104,112,102,95,108,109,107,107,101,110,105,102,109,106,102,116,100,117,113,108,112,118,104,103,97,87,109,106,109,102,104,99,111,86,107,110,101,102,98,102,111,112,116,102,104,102,111,98,105,106,103,108,101,90,106,115,104,107,98,107,95,112,109,112,100,100,115,114,108,106,116,100,102,110,110,108,117,108,103,103,103,105,102,106,96,111,99,116,107,112,108,102,103,97,107,103,94,121,99,110,104,100,107,110,105,108,105,95,105,109,133,96,110,128,99,99,105,105,108,99,106,113,92,102,122,113,112,103,103,82,117,94,109,107,99,121,104,96,113,107,102,95,96,111,116,106,105,107,119,102,103,98,102,89,97,109,100,119,102,83,103,92,104,103,99,110,112,108,96,121,95,94,110,115,95,110,92,110,89,104,110,105,118,100,106,112,109,92,100,94,102,100,113,103,106,106,100,109,95,106,112,100,111,111,115,98,111,99,101,109,108,121,115,122,111,104,104,101,105,104,104,111,107,97,107,113,103,107,119,107,104,108,100,107,107,119,103,99,113,90,124,108,112,109,105,101,112,99,95,107,106,108,101,108,107,102,94,126,119,110,96,111,114,116,122,108,106,102,114,111,106,109,115,104,113,91,100,98,95,111,108,102,102,103,108,126,96,98,109,145,110,119,105,114,104,109,103,99,103,97,108,108,94,99,113,109,103,110,100,110,109,109,114,99,114,107,114,110,120,109,102,107,113,104,102,94,103,87,98,95,115,102,103,88,107,96,99,103,103,114,92,95,107,116,113,96,110,113,111,107,107,114,104,94,102,103,110,106,102,103,104,96,110,108,104,100,118,97,106,98,112,116,118,102,106,128,112,101,106,111,109,105,108,99,110,98,111,98,101,102,120,111,115,110,110,105,110,99,101,113,101,112,109,103,99,102,114,105,113,98,96,111,103,107,100,117,110,104,116,109,108,113,108,105,104,99,110,100,104,110,98,111,108,108,99,111,116,97,97,108,115,105,129,102,103,93,107,112,113,106,105,117,116,103,110,104,106,120,103,106,105,116,110,102,102,108,104,100,109,102,97,113,98,110,102,112,105,94,106,114,114,109,97,105,104,102,99,112,112,113,113,95,108,94,105,115,106,120,138,102,110,99,110,107,107,116,100,103,99,100,102,106,108,97,106,102,108,103,106,101,102,110,109,102,111,120,104,107,104,102,113,115,106,106,105,96,112,114,104,112,103,110,110,91,97,102,99,102,100,93,112,103,114,98,106,91,107,90,105,100,111,102,106,115,110,112,97,91,109,110,103,105,107,103,111,91,95,101,97,110,117,104,108,121,103,99,107,114,99,108,89,110,112,100,95,104,102,113,98,91,105,95,104,103,108,108,117,106,104,90,113,94,112,100,83,95,104,97,110,101,108,104,93,109,98,106,106,115,98,103,104,90,99,105,113,103,97,118,105,111,100,99,107,108,119,110,106,106,99,87,102,98,74,104,100,97,96,112,109,105,104,107,92,101,103,104,102,109,110,98,105,86,96,105,101,111,103,110,106,99,102,105,108,112,97,98,101,106,103,108,95,107,124,104,109,111,98,97,109,95,102,110,104,106,104,95,115,109,112,106,100,93,106,118,104,108,95,102,93,110,99,109,99,108,102,103,106,107,108,98,105,102,86,117,106,101,92,97,118,107,104,109,119,104,110,101,109,99,127,113,101,109,95,99,123,109,135,124,104,103,109,110,115,112,97,99,111,101,91,110,107,108,95,123,96,114,101,94,101,91,108,112,104,103,107,106,110,95,116,112,104,109,100,95,102,97,116,102,96,96,108,104,105,95,107,104,92,92,113,115,104,109,105,100,93,98,85,109,104,105,97,107,109,105,97,104,106,108,102,103,110,102,113,99,105,106,105,103,106,113,110,109,102,117,100,107,115,104,109,113,114,98,110,113,101,99,104,120,100,104,95,102,109,101,95,94,100,103,95,104,109,99,104,110,111,106,107,111,117,99,108,110,100,110,97,93,108,106,110,101,102,117,94,113,91,92,115,95,99,106,96,105,111,110,88,98,103,109,110,101,93,95,101,108,101,106,90,111,116,97,103,110,107,112,96,110,107,108,101,99,103,102,104,110,87,111,102,108,95,106,109,110,89,105,101,102,101,105,102,103,70,112,103,95,112,105,101,107,99,101,114,106,101,95,124,106,112,103,99,106,100,104,108,109,104,95,107,110,95,98,102,137,111,103,101,100,92,101,103,107,116,104,106,93,109,110,108,92,105,104,96,95,107,108,102,99,105,107,115,104,97,97,109,101,75,96,104,105,100,99,104,106,103,101,100,108,106,101,111,102,101,113,113,101,105,92,98,98,93,79,112,102,106,98,108,95,91,111,107,103,105,108,98,101,93,88,100,94,106,118,101,88,121,99,111,95,109,109,98,105,102,104,100,93,83,106,103,115,69,95,109,103,109,98,100,95,103,98,111,95,107,97,107,106,111,108,102,106,106,106,101,104,91,105,106,111,111,121,104,93,113,111,106,109,90,104,98,103,103,117,107,111,98,104,98,115,105,105,98,101,97,98,107,116,102,101,91,100,99,91,106,97,97,101,102,101,100,96,96,108,99,119,111,99,100,101,113,113,94,99,104,99,99,104,106,105,91,108,96,85,112,97,99,104,102,99,116,105,105,104,108,136,121,98,124,102,94,99,106,89,96,88,99,90,92,99,103,100,107,105,106,115,97,122,107,94,108,123,88,105,95,115,101,109,108,100,101,102,108,93,101,109,91,93,104,93,103,94,87,104,99,101,103,108,103,98,87,103,112,108,101,99,96,103,108,112,124,95,107,115,106,119,100,114,107,100,93,100,98,106,99,113,99,120,112,88,106,117,123,91,106,110,110,97,109,104,115,113,92,108,102,103,95,97,115,106,102,105,101,96,100,108,97,116,99,95,107,109,105,98,98,107,106,107,100,108,99,104,84,112,94,112,110,106,98,110,102,117,103,101,106,102,104,95,106,93,97,102,108,99,103,95,105,104,106,116,130,105,103,93,100,110,111,98,103,94,106,102,105,109,98,98,96,113,99,114,108,114,95,117,109,106,101,105,122,94,86,114,98,103,117,104,111,117,103,104,106,103,108,94,96,102,92,100,106,113,97,111,102,105,112,117,103,104,108,110,108,103,96,84,114,109,110,102,100,87,109,94,116,104,110,106,83,98,105,99,94,115,97,75,106,93,108,118,101,115,102,110,109,101,98,102,102,98,99,104,112,104,101,110,97,111,88,100,105,100,100,119,107,112,108,120,109,116,110,97,90,97,101,96,92,105,103,108,95,107,100,104,100,95,109,106,104,101,91,103,103,103,101,104,95,105,101,112,85,108,109,113,103,106,81,100,100,109,102,104,95,109,110,90,105,104,110,93,112,89,103,92,95,112,110,88,141,104,108,104,101,111,103,100,98,108,104,100,96,107,115,107,110,98,99,95,108,110,121,107,93,110,99,103,88,116,109,91,109,114,99,107,115,95,103,89,97,109,103,88,106,116,97,99,104,112,105,105,101,107,112,88,99,94,127,104,102,102,99,88,111,92,108,113,113,111,87,109,108,86,100,105,87,99,79,100,104,100,102,115,95,94,104,87,111,97,95,95,100,110,108,108,104,95,90,91,108,133,98,99,117,101,101,105,102,123,99,99,108,103,97,94,104,97,101,110,93,105,105, +648.71014,95,87,91,97,110,93,100,117,106,87,95,107,99,92,105,96,100,120,106,96,102,104,89,106,95,99,106,98,110,103,110,116,88,106,112,107,110,101,96,109,94,107,92,105,97,104,107,100,86,108,116,71,84,98,83,95,92,102,105,94,121,105,107,90,109,98,101,108,117,100,100,98,103,106,96,102,95,102,114,108,93,111,107,108,99,102,109,104,103,107,91,114,94,108,108,101,103,95,100,98,106,103,99,113,105,106,86,105,96,74,102,98,118,104,120,98,107,91,108,95,106,110,112,104,101,107,104,99,106,101,86,95,102,100,98,104,94,77,97,100,112,98,95,100,99,104,106,90,106,98,99,93,108,101,95,116,94,101,105,108,103,113,103,109,98,101,97,89,93,100,107,98,108,119,103,105,105,78,101,116,105,111,111,110,109,106,105,87,98,113,95,115,113,107,91,109,105,100,101,102,103,93,111,106,100,111,103,96,99,114,94,102,103,108,94,94,96,105,97,95,95,97,98,106,99,114,92,117,105,101,109,113,111,107,107,111,99,107,117,95,110,110,68,104,120,99,105,94,105,101,94,99,97,97,105,112,103,106,100,88,94,106,104,103,102,121,113,107,98,106,98,84,111,107,98,102,94,102,105,96,103,99,102,112,99,106,102,107,113,108,105,108,109,108,109,112,102,102,105,115,103,103,101,109,107,110,105,107,102,110,98,121,101,102,100,111,101,105,102,92,92,91,112,99,94,101,96,93,105,109,110,112,114,105,103,104,111,104,107,96,100,97,93,109,99,102,108,99,100,93,92,105,90,108,98,104,96,114,112,111,104,113,96,88,103,97,102,114,95,96,112,98,102,97,103,115,107,102,103,104,109,107,109,100,94,117,104,112,114,101,116,97,103,110,107,98,102,110,81,119,112,90,99,92,96,92,117,114,120,91,86,107,105,101,111,105,105,106,110,110,97,94,114,108,105,103,103,102,97,111,108,98,108,109,104,96,115,95,99,88,112,104,86,102,100,105,98,95,119,106,111,103,106,110,102,109,111,114,109,106,112,97,111,101,121,95,86,99,94,104,103,107,121,101,99,97,107,112,114,106,97,99,111,104,108,100,91,94,105,103,105,117,104,87,106,140,102,113,101,101,103,107,104,101,99,101,101,104,107,104,109,99,104,101,100,92,95,70,96,96,107,101,107,95,99,101,104,118,104,97,107,103,83,111,97,100,96,111,119,115,100,117,99,101,110,96,96,105,108,101,97,111,99,102,101,101,106,110,95,108,102,108,108,118,122,103,105,101,109,88,105,102,110,106,99,102,102,95,100,96,104,94,95,98,90,103,109,99,122,110,103,137,97,103,102,107,101,86,103,95,98,96,119,108,99,84,96,113,102,99,106,108,120,118,103,96,107,95,118,99,104,106,105,108,111,108,104,91,113,95,99,114,99,109,102,98,106,100,101,107,102,106,105,103,112,94,98,106,107,126,95,104,108,100,106,102,100,100,109,87,113,108,85,110,106,104,118,92,103,110,112,100,117,112,115,108,103,108,109,104,107,116,110,96,96,107,107,107,108,107,98,110,107,107,102,107,112,100,105,97,107,95,90,109,95,122,106,101,94,106,105,103,108,94,85,115,106,106,98,105,109,107,110,90,82,102,110,116,113,108,119,106,108,106,101,108,97,91,103,96,112,98,100,94,108,96,106,103,99,110,106,104,117,102,105,99,105,98,115,111,106,104,101,99,102,110,102,110,112,111,110,100,102,109,94,101,97,105,95,100,95,111,100,110,100,125,101,109,96,98,107,108,100,107,104,112,102,107,108,108,100,107,107,108,101,97,109,101,101,105,108,112,104,101,99,108,94,101,103,100,103,98,102,112,112,100,93,107,116,108,117,94,105,101,97,103,100,109,111,108,107,103,100,103,90,97,100,92,93,93,109,109,99,106,105,108,110,101,98,101,92,88,103,97,113,100,92,106,110,104,113,116,94,95,97,108,114,116,104,97,104,96,109,112,90,107,103,117,95,95,120,100,105,102,112,105,111,111,106,110,106,109,118,106,109,99,90,97,91,91,102,102,109,110,108,89,102,110,103,96,100,95,99,101,96,117,97,116,117,103,95,117,104,102,101,100,95,101,84,98,106,107,106,105,95,104,102,112,103,113,95,111,112,114,101,101,94,114,104,107,89,103,108,103,109,103,88,102,107,106,116,104,98,107,99,105,105,105,94,98,112,102,108,109,95,104,102,87,95,101,102,106,103,107,96,106,98,110,99,100,100,100,108,98,102,107,109,109,102,102,98,104,101,112,105,104,111,106,97,90,111,109,121,102,108,97,102,101,92,114,115,114,101,93,109,87,112,116,102,95,107,106,105,111,116,121,98,118,99,114,109,104,107,108,94,102,115,106,102,110,102,98,104,100,96,102,103,107,102,100,104,105,103,81,113,104,104,98,91,104,95,108,108,111,105,96,98,109,117,99,111,103,93,103,106,88,106,91,96,91,107,95,107,109,111,104,103,100,121,96,98,112,110,106,101,103,109,92,105,94,97,109,104,103,100,96,92,101,95,105,106,108,110,108,105,106,95,102,104,75,98,102,99,110,109,105,103,113,128,93,115,109,110,114,114,109,112,121,86,101,96,100,96,101,90,99,112,94,105,105,116,113,112,110,93,104,109,100,105,98,101,108,96,110,109,109,110,101,118,111,113,111,109,97,100,131,105,98,111,102,108,104,105,105,102,106,112,105,103,104,113,103,104,104,112,109,115,107,95,93,101,105,102,100,112,100,96,110,103,102,97,115,95,117,108,97,111,102,110,125,111,104,110,106,105,109,116,107,108,108,119,104,96,102,98,92,92,102,109,100,99,101,109,107,104,105,99,109,83,110,99,112,112,107,115,113,109,97,104,110,95,111,102,128,98,111,102,109,113,99,104,95,104,97,105,113,106,108,103,103,90,112,102,107,110,117,95,109,101,105,100,91,100,87,108,106,102,107,121,105,106,108,98,114,106,96,111,100,107,92,95,98,106,106,95,94,111,106,99,104,109,109,107,101,115,105,110,106,102,102,101,102,95,101,95,102,101,106,101,104,108,110,117,106,108,100,119,106,95,103,117,100,109,115,111,105,109,104,105,111,103,104,107,99,96,93,90,104,115,96,95,100,98,106,108,98,106,115,110,96,109,105,92,105,104,113,108,105,112,109,110,100,115,105,110,102,98,92,95,109,103,95,94,107,98,109,110,110,109,107,102,113,126,95,102,102,104,112,99,93,103,106,101,84,94,100,106,108,114,100,108,95,95,98,103,109,116,102,102,97,104,117,98,104,98,96,111,109,101,101,118,114,98,107,98,102,108,108,112,125,107,101,102,106,101,100,103,101,104,96,117,114,99,90,101,88,96,114,106,103,108,92,104,99,108,109,113,115,101,104,102,110,109,104,106,102,96,116,99,111,104,105,101,104,110,96,111,91,109,106,109,98,110,109,94,111,95,107,106,88,116,103,107,100,107,115,97,114,109,89,101,101,86,106,94,92,102,108,98,109,90,104,98,101,106,109,107,103,108,113,102,105,72,94,121,111,108,104,105,101,106,113,113,111,98,121,122,101,98,95,99,102,105,97,104,120,102,96,115,96,95,101,114,97,103,96,95,101,109,85,101,105,104,113,100,108,111,103,113,98,103,113,83,109,105,98,107,112,106,108,115,100,108,100,98,117,103,98,109,96,107,100,100,112,93,113,102,105,110,102,101,89,94,100,103,105,104,113,143,110,115,103,112,100,105,98,102,99,106,95,105,110,106,96,115,118,97,104,117,108,113,99,126,104,110,137,106,101,103,102,102,113,106,108,103,102,116,101,95,103,100,99,106,103,113,128,105,94,99,102,100,123,98,102,108,95,115,108,96,110,96,97,109,104,99,108,117,99,105,107,98,95,115,115,108,112,113,109,101,110,101,108,117,98,98,97,121,107,106,100,108,104,104,96,104,105,102,95,109,100,93,106,97,107,100,98,91,107,118,105,95,113,103,109,104,87,109,98,108,99,109,100,108,101,71,105,99,106,110,99,102,93,113,96,130,107,99,98,99,101,105,95,104,107,104,104,89,112,97,99,117,109,109,105,124,112,107,108,108,103,115,103,119,107,104,109,112,109,107,109,118,97,97,99,101,96,105,92,86,97,115,106,103,101,104,101,100,104,113,106,106,103,107,105,103,87,108,96,103,86,103,116,100,100,98,103,102,104,100,96,91,100,121,96,90,97,94,103,112,91,110,97,103,106,97,101,113,91,107,107,111,105,100,106,99,108,96,103,99,112,107,111,108,103,104,109,99,108,104,99,104,108,97,99,109,86,96,109,121,104,98,100,110,109,106,107,98,100,111,113,106,111,100,105,94,101,100,112,107,105,95,101,97,93,88,110,104,100,100,97,98,102,90,105,99,95,98,101,103,106,103,109,108,102,106,94,118,99,106,108,109,100,91,103,91,113,98,99,102,113,102,97,105,99,90,111,99,107,102,94,100,113,116,91,104,123,100,111,117,103,108,100,101,102,114,103,126,98,97,116,100,112,113,112,97,102,107,103,109,96,98,96,106,126,113,108,104,108,99,102,105,100,98,106,111,106,105,109,106,104,87,110,105,91,105,98,111,106,101,103,110,100,102,103,107,102,109,111,113,102,99,107,88,121,109,92,114,106,98,102,101,107,103,105,100,111,113,94,74,96,111,102,117,118,111,93,108,100,110,109,98,95,106,114,113,108,112,103,103,106,76,91,105,102,106,113,117,102,103,105,117,113,88,102,104,83,99,106,101,92,106,102,96,99,100,103,119,90,101,105,90,108,114,109,95,104,114,107,105,113,106,104,97,99,103,108,90,109,98,93,117,113,108,106,101,118,109,87,105,105, +648.85132,110,96,96,116,111,98,101,98,108,86,104,105,94,116,104,68,113,113,96,110,104,94,105,93,104,105,96,89,99,97,105,102,100,103,107,110,96,115,92,103,110,109,108,108,103,113,96,102,96,114,91,102,92,105,108,102,84,99,102,82,93,121,90,97,86,105,93,104,104,92,84,64,89,94,103,107,96,105,109,113,104,105,120,106,95,98,97,113,101,95,101,86,109,104,106,100,104,101,78,105,105,106,98,108,104,110,92,85,95,94,99,109,110,100,113,98,95,106,101,100,96,96,95,108,99,111,108,98,102,99,98,92,105,109,115,107,100,83,95,96,95,97,101,77,117,104,103,96,99,100,105,92,105,94,103,102,107,103,113,97,105,101,108,97,137,97,102,101,92,121,100,107,112,107,97,101,103,100,116,117,107,108,110,100,104,113,100,106,116,79,99,107,108,111,97,69,87,87,104,112,88,96,109,121,88,102,97,99,112,110,108,101,112,92,108,106,105,100,96,98,107,103,111,102,107,99,94,98,112,94,67,102,102,94,98,114,100,102,108,106,96,100,101,99,88,104,102,99,114,104,102,103,104,95,112,97,119,107,100,100,90,106,109,99,96,105,107,104,99,88,113,101,103,101,108,104,101,111,101,100,101,106,96,102,96,102,100,113,106,110,113,92,99,97,97,106,100,102,98,93,109,112,104,107,106,139,105,99,104,112,98,106,112,107,105,105,120,102,106,102,99,99,94,100,103,102,99,71,95,108,99,106,119,96,114,82,119,110,100,114,107,108,94,95,102,104,98,92,113,107,106,115,94,98,103,102,104,118,117,114,87,96,92,98,95,93,107,106,92,110,111,99,106,106,113,99,100,101,91,97,108,100,103,102,98,101,101,113,101,89,104,95,94,96,107,95,100,100,104,106,101,101,95,107,96,93,98,100,103,99,101,96,104,102,94,106,113,106,108,100,105,96,97,106,81,89,93,103,121,110,95,91,100,104,98,111,95,110,97,99,89,94,96,98,72,120,106,87,97,96,87,99,98,104,100,99,101,105,108,86,115,100,105,110,115,107,106,99,99,103,95,109,102,100,98,92,99,105,109,106,95,103,103,98,106,105,100,100,99,107,108,104,95,122,96,103,107,96,105,81,94,108,98,104,104,120,92,101,101,106,94,107,103,83,100,124,97,98,101,101,109,101,101,108,114,103,109,108,113,104,109,94,104,107,106,115,104,104,108,105,100,97,110,104,101,103,95,103,110,107,96,107,103,99,111,99,100,98,97,95,77,105,106,111,115,100,101,82,108,110,94,99,95,109,108,93,103,97,134,106,95,108,117,107,89,108,93,103,106,103,100,104,96,103,108,105,96,81,87,95,105,94,105,100,96,97,101,103,104,105,112,94,115,96,109,95,102,96,106,109,99,96,113,90,94,130,109,93,107,96,99,98,102,102,112,103,108,91,99,109,113,112,104,112,101,95,105,117,94,102,112,110,101,113,111,93,105,113,112,92,106,109,114,92,96,87,114,88,99,108,105,101,104,101,102,97,101,108,116,103,101,105,114,107,99,88,105,106,113,107,110,112,104,104,96,109,105,102,96,99,110,103,105,116,107,104,105,106,124,102,111,100,114,101,92,97,92,104,107,112,101,91,96,95,107,94,97,100,91,105,101,99,102,98,89,105,125,105,109,118,104,100,102,94,106,102,98,115,107,100,102,104,86,101,102,109,94,103,102,100,113,101,91,108,93,98,104,105,106,105,103,100,106,107,100,101,109,97,108,90,93,101,110,97,98,107,97,104,102,103,97,101,103,99,95,112,99,94,111,110,99,113,106,105,111,89,100,95,109,105,103,90,97,102,104,106,118,99,100,106,105,102,98,97,102,100,106,102,105,94,104,91,100,91,102,112,102,91,104,107,114,113,90,107,102,103,101,100,95,112,110,102,96,107,102,103,104,98,95,109,87,95,104,106,104,106,100,100,110,100,102,93,105,113,94,108,106,102,93,105,101,107,102,111,111,106,110,114,109,96,113,117,102,96,110,97,102,104,101,106,92,98,106,97,96,123,91,103,99,101,110,92,108,107,100,89,100,102,98,77,109,111,92,102,98,93,98,100,108,100,105,109,103,90,111,98,103,111,92,95,106,107,110,100,107,101,98,100,82,103,109,105,104,110,112,103,102,100,97,101,98,106,108,97,106,95,104,103,103,120,98,99,98,101,100,108,99,91,104,107,90,99,101,105,94,103,93,106,109,97,104,95,115,111,101,92,94,94,99,104,111,100,100,101,100,100,114,104,102,106,100,105,92,103,103,99,97,103,98,109,110,109,101,96,92,106,103,108,109,100,97,112,97,95,116,91,100,106,110,95,101,104,113,98,99,110,113,105,100,97,105,109,105,103,107,101,106,98,98,84,104,99,109,108,106,98,102,110,113,97,112,110,86,104,106,96,94,109,101,100,103,118,95,102,106,104,91,97,113,111,111,110,107,110,97,95,98,106,108,107,98,100,118,95,105,111,107,100,111,107,100,105,104,105,101,86,105,103,101,126,111,107,115,99,100,108,106,95,120,92,103,106,103,101,98,95,111,112,97,92,92,96,97,105,75,109,99,98,111,103,110,108,103,100,98,116,105,111,87,107,96,98,99,98,117,110,108,113,89,100,108,111,115,114,110,108,111,99,102,113,104,124,101,106,100,113,92,95,122,98,81,113,102,110,102,114,97,90,96,106,107,113,96,98,100,102,107,106,120,96,98,92,102,118,97,102,94,91,121,97,101,99,96,107,104,91,106,100,113,95,111,98,80,103,115,112,99,84,107,103,101,115,106,105,125,113,104,102,97,128,98,114,98,114,101,99,108,105,102,102,104,101,108,106,108,103,105,99,104,109,100,103,99,104,107,100,104,98,105,82,100,100,110,84,103,95,109,100,98,97,103,104,102,105,105,116,98,92,109,111,108,97,99,117,99,112,106,101,106,98,99,106,106,89,117,107,105,95,99,112,99,103,97,95,104,88,101,119,106,104,107,86,99,104,111,98,100,102,103,100,106,110,115,91,100,99,115,98,95,105,106,95,99,94,91,99,97,110,100,97,107,111,119,104,109,108,105,117,93,97,106,99,100,113,99,102,94,107,104,102,105,92,100,107,107,106,99,109,91,109,113,96,102,93,105,98,103,95,125,101,112,99,95,108,109,116,101,101,112,101,106,100,105,105,102,100,102,101,107,91,105,106,87,96,102,102,98,106,100,103,95,108,105,109,101,95,95,116,105,112,86,113,114,111,79,95,108,108,102,105,107,127,106,84,102,98,103,110,116,91,100,120,91,98,112,98,107,110,104,101,99,104,99,112,105,97,120,105,100,103,109,112,108,104,118,105,91,108,118,100,102,111,101,113,112,107,107,99,104,96,111,100,68,104,104,99,105,109,93,81,102,106,103,99,104,102,97,105,113,103,94,101,93,106,82,99,112,115,107,101,87,109,108,107,99,109,105,102,121,97,106,106,105,103,112,107,98,91,99,110,105,99,101,115,96,111,96,100,95,99,109,110,110,102,109,112,108,116,97,103,102,96,101,106,105,97,113,105,105,106,112,107,97,106,92,102,103,95,107,106,88,100,100,110,95,106,98,105,94,107,100,102,98,109,99,88,106,87,110,111,112,106,100,111,100,103,84,109,108,103,105,117,98,102,124,96,118,111,85,111,100,99,103,113,87,100,115,103,106,85,101,97,101,98,105,80,103,105,103,109,102,113,95,104,100,112,105,106,104,97,104,105,112,119,98,106,101,93,106,103,102,107,100,99,95,105,101,99,98,104,107,84,107,106,100,119,90,99,107,100,101,99,107,117,80,96,115,108,111,97,108,111,108,103,109,102,98,108,95,104,92,108,102,108,116,103,81,105,96,102,103,110,108,118,111,95,99,99,89,84,104,102,107,106,95,97,102,110,112,97,102,114,94,106,106,107,112,100,92,98,105,101,95,92,108,91,96,103,107,110,93,94,102,100,95,96,109,110,126,96,106,112,102,97,100,99,116,104,105,107,99,101,91,108,112,100,103,106,115,103,104,104,116,111,104,117,100,119,107,97,106,120,98,107,111,109,94,117,100,92,108,102,94,115,89,103,111,112,95,95,101,99,110,109,99,118,97,99,91,99,107,104,77,99,108,89,94,105,97,106,81,110,86,90,112,104,100,102,106,116,96,105,107,112,99,107,100,105,104,109,64,96,104,119,115,103,110,109,99,103,102,96,113,102,104,102,73,103,101,98,103,104,109,104,103,103,114,100,93,102,105,98,111,115,105,111,94,103,109,102,94,109,124,100,109,102,107,113,111,103,120,92,112,95,102,96,105,109,108,107,101,99,116,110,102,107,113,101,113,109,110,104,104,98,98,113,104,102,113,112,113,104,100,106,97,110,112,89,98,118,112,95,94,79,102,96,96,112,105,108,111,110,110,110,111,98,96,98,114,96,91,103,110,110,99,102,102,109,79,108,108,112,96,105,93,94,111,117,96,98,105,107,101,103,109,99,131,101,100,109,95,108,118,102,97,109,107,99,107,105,110,116,105,103,102,112,101,100,104,116,93,96,100,115,105,103,112,107,104,99,99,111,102,94,103,116,102,112,101,101,105,97,105,110,108,95,109,122,102,100,102,119,106,107,118,109,105,105,102,106,107,109,101,117,105,94,100,102,95,109,110,103,101,106,116,96,107,94,105,104,106,130,113,109,91,93,105,102,91,100,111,86,105,122,92,95,103,102,103,109,109,106,110,111,96,102,127,93,109,95,102,92,88,81,101,109,99,116,95,103,106,95,98,109,105,109,99,114,107,85,107,113,92,102,101,107,102,128,98,96,95,103,89,86,98,109,106,100,100,98,92,99,97,103,110,97,118,103,108,108, +648.99249,86,108,89,101,95,116,106,104,118,103,107,112,104,97,105,106,102,103,102,97,107,113,107,102,107,100,102,99,115,100,101,103,109,73,119,99,107,99,105,105,102,132,105,88,100,110,108,107,90,107,95,115,103,97,112,112,102,103,108,79,103,95,100,111,108,119,107,99,111,115,99,105,109,106,110,86,96,107,97,102,105,93,100,107,108,98,104,106,113,109,107,114,107,103,82,101,97,108,93,113,107,103,99,104,105,99,86,96,110,94,105,113,91,101,110,98,104,104,98,71,70,90,102,98,100,120,109,115,118,103,102,108,103,106,103,110,98,104,96,99,102,115,88,94,105,105,101,102,97,90,108,112,106,121,100,107,101,101,100,86,108,116,96,95,109,96,105,111,104,102,132,105,109,100,120,104,92,102,115,114,104,92,97,95,109,119,93,103,106,104,105,104,97,88,104,103,100,102,104,102,104,92,100,105,93,112,101,118,104,110,71,101,97,102,107,110,98,100,105,109,107,107,109,98,104,95,105,104,100,121,108,97,112,108,100,100,95,112,109,103,113,66,102,99,86,108,96,99,105,100,98,92,103,111,96,107,108,99,95,95,91,90,99,100,82,108,100,104,95,95,109,105,105,100,110,90,109,109,91,103,101,104,109,109,100,102,106,104,101,105,99,109,100,98,116,107,107,90,100,109,97,104,112,111,100,101,101,114,90,102,106,100,108,107,106,104,72,101,94,95,102,105,109,99,95,104,102,104,108,109,109,109,89,105,104,111,108,109,92,111,99,104,101,109,99,106,95,100,113,100,83,103,90,121,99,107,109,131,114,96,103,96,101,90,97,91,102,113,99,113,98,123,102,100,109,105,104,101,109,106,93,108,104,99,101,96,114,114,113,108,111,96,103,110,105,103,98,90,97,109,98,110,100,98,97,99,101,94,114,103,83,92,104,97,96,105,95,98,103,94,84,102,87,101,105,97,97,109,101,109,93,105,95,108,99,94,113,107,104,101,106,97,106,102,95,112,102,100,113,110,91,100,102,110,107,116,112,113,113,102,118,105,96,100,100,101,98,105,103,98,104,100,100,97,91,124,96,119,101,110,95,109,105,117,93,109,91,106,95,108,100,105,94,108,94,107,103,108,100,104,99,104,105,108,99,104,104,106,113,91,80,101,82,103,105,101,96,102,90,95,107,115,104,120,104,112,114,111,98,120,113,115,99,97,108,102,106,103,113,112,101,109,99,108,109,94,102,119,106,100,100,112,100,103,107,108,110,110,100,90,107,109,103,106,110,104,99,111,109,95,96,103,107,89,116,102,99,104,103,105,110,110,113,109,99,100,100,111,82,103,107,82,97,109,110,116,92,102,113,104,99,101,109,95,104,98,107,92,98,105,93,111,106,110,103,94,108,99,114,97,103,114,113,105,121,103,102,109,97,99,104,106,95,104,102,111,110,98,108,108,113,115,101,111,95,101,97,105,104,102,95,103,107,103,106,113,122,114,101,108,92,129,112,106,98,90,111,103,101,98,114,98,101,106,100,98,104,111,104,102,108,106,110,94,106,100,108,108,103,109,110,106,99,104,98,100,99,105,112,95,101,88,103,96,109,110,107,104,106,95,99,109,107,95,104,101,102,118,107,84,100,96,98,115,103,106,95,101,91,106,103,103,95,98,99,103,108,96,112,113,107,98,105,94,91,109,106,100,128,110,102,103,96,105,108,113,100,105,74,100,105,102,99,108,91,106,102,105,107,112,115,101,82,112,98,107,99,100,103,89,97,104,115,113,113,120,103,120,117,109,117,110,111,101,102,103,97,104,118,95,86,120,104,102,103,108,109,108,113,112,110,107,98,108,100,99,101,95,104,95,100,106,106,114,111,105,104,108,102,91,100,102,121,104,101,108,109,113,103,114,104,112,109,104,78,108,106,117,115,101,116,92,99,105,101,99,106,113,114,111,102,97,108,89,117,91,103,107,106,111,105,110,93,111,84,98,110,99,102,103,110,102,99,101,105,103,108,113,109,111,110,98,105,110,110,108,104,95,91,94,106,111,106,105,120,112,117,103,101,100,106,98,85,123,97,95,98,118,101,97,94,96,120,112,97,96,101,103,108,108,101,116,106,110,112,113,104,100,97,111,114,108,110,113,97,98,99,97,105,100,104,69,111,123,89,103,99,102,110,96,100,96,99,100,112,104,97,105,101,102,99,102,106,100,96,104,105,104,110,111,97,109,95,111,123,90,93,100,101,96,98,113,104,109,90,93,102,98,109,109,107,105,105,107,114,112,104,112,102,110,110,110,101,114,100,98,109,101,93,101,117,99,108,90,103,115,97,111,114,94,104,102,99,95,108,107,79,107,106,100,100,117,96,101,122,112,106,113,103,101,99,118,109,98,103,101,117,110,90,103,94,103,106,99,110,98,113,103,103,117,109,109,96,99,100,105,97,103,104,101,99,106,98,101,96,113,103,108,113,105,104,105,99,96,107,94,99,116,109,106,96,99,104,100,102,107,100,103,106,97,110,106,98,109,119,100,105,94,97,117,122,113,110,109,116,98,110,98,104,97,105,103,100,91,103,83,108,126,109,99,105,102,97,107,100,105,101,102,105,99,106,100,111,111,100,104,115,101,116,105,98,98,102,116,109,108,95,109,112,105,111,106,106,110,95,99,109,98,97,101,108,98,98,87,105,109,107,131,108,101,100,104,108,100,105,109,103,98,113,114,95,99,116,96,95,99,113,97,108,99,108,99,102,105,115,93,109,103,103,96,115,105,102,103,99,97,95,109,109,98,95,105,107,104,114,115,109,68,99,109,98,99,98,102,101,109,106,106,99,110,95,103,101,107,105,109,109,113,92,109,120,99,100,101,113,101,105,97,102,107,111,103,110,108,104,101,100,105,110,92,108,101,113,104,105,113,94,100,90,109,106,103,111,95,97,105,102,107,109,96,98,94,97,100,99,101,100,97,96,101,91,103,103,98,109,118,103,112,98,96,91,94,107,100,113,108,113,107,97,90,108,98,91,109,111,108,100,103,77,95,107,108,100,99,97,116,110,80,99,95,100,94,100,111,91,105,104,121,101,102,102,99,117,102,102,113,75,107,96,113,102,113,108,108,93,96,105,91,100,116,96,94,101,101,106,99,97,110,90,109,104,91,98,95,99,106,106,98,110,106,112,101,98,104,106,113,109,104,108,101,102,98,94,104,107,99,94,104,107,93,96,95,94,93,118,102,102,102,108,70,109,104,100,99,99,98,109,98,107,95,107,96,103,101,117,110,103,99,100,99,84,92,100,102,96,97,129,111,98,108,110,102,106,94,103,105,106,88,100,96,100,99,97,109,101,105,94,103,119,98,105,103,102,98,104,99,94,100,91,102,98,103,104,102,104,105,98,99,103,100,95,90,95,100,99,104,120,116,100,94,105,95,108,98,107,124,94,95,104,104,95,108,101,91,102,94,101,111,74,91,113,98,102,104,102,101,100,96,115,97,103,97,97,103,101,104,108,95,108,93,93,111,105,102,97,102,111,103,103,109,105,132,98,112,99,89,100,117,99,113,106,100,96,102,101,105,103,106,100,84,103,109,93,98,109,105,105,108,106,99,89,107,111,107,94,92,95,90,101,110,93,108,102,99,101,99,93,97,104,95,100,92,106,113,97,106,101,116,101,105,96,113,110,104,96,95,92,103,95,98,102,98,113,106,101,113,105,101,101,105,101,102,102,99,99,101,110,90,96,97,99,110,102,101,100,99,103,109,107,111,104,101,111,103,108,110,101,100,102,88,101,100,109,98,116,92,108,94,109,107,102,108,105,99,104,102,106,107,104,99,94,100,102,103,97,114,107,99,108,92,109,100,94,101,106,103,100,106,107,103,105,95,93,102,103,104,101,95,98,102,82,101,101,98,84,107,109,84,104,104,97,99,104,98,96,115,112,104,97,92,119,92,120,113,105,99,114,101,98,113,106,103,100,106,99,115,103,99,94,98,96,107,104,112,113,113,99,93,111,105,95,100,105,101,99,106,85,110,98,99,113,91,96,107,97,108,100,95,113,92,113,107,97,89,105,108,108,117,112,100,108,104,91,111,107,106,96,98,96,104,104,89,101,115,96,95,101,107,94,124,109,92,106,97,99,92,98,101,101,94,103,95,96,88,104,106,103,110,100,73,105,102,97,103,109,101,99,106,112,110,109,105,92,108,107,104,107,98,97,113,104,100,105,98,94,103,102,107,110,91,106,103,106,109,96,104,97,96,114,108,123,96,111,99,108,101,108,100,93,100,100,105,118,102,100,102,102,100,104,111,101,97,113,104,98,101,101,94,106,109,98,114,96,93,97,101,110,97,110,106,101,110,126,108,96,104,109,106,101,106,106,113,109,92,116,100,106,99,104,88,104,92,95,111,106,106,99,94,109,92,103,98,102,109,100,104,105,95,108,103,104,112,103,102,99,101,96,111,101,99,107,83,95,100,91,105,87,100,99,112,95,103,105,103,117,104,104,108,106,93,114,93,102,115,87,106,101,101,98,104,76,102,116,109,103,109,104,90,100,104,93,107,117,87,96,95,103,108,104,109,103,102,107,104,108,98,102,99,107,106,100,99,91,90,104,101,96,104,102,98,119,96,109,95,97,114,104,88,101,112,102,91,111,89,105,107,113,105,93,98,103,104,110,101,117,109,110,102,99,94,108,104,103,104,101,109,101,105,112,91,97,109,101,88,113,111,98,97,106,105,102,96,126,107,97,103,98,100,100,94,103,91,100,113,109,117,98,106,100,104,102,90,116,107,102,107,101,106,100,113,106,105,109,91,102,111,116,106,68,96,109,96,91,89,108,110,85,89,101,98,117,113,104,97,112,95,98,102,106,100,102,101,94,121,120,101,93,96,93,86, +649.13367,96,89,111,116,72,108,92,103,89,94,115,66,100,106,100,99,95,100,112,93,106,117,113,98,95,105,93,98,114,113,101,107,92,115,103,96,95,103,87,99,103,98,100,107,85,110,99,96,99,111,108,100,107,104,108,97,96,109,100,106,111,108,123,88,105,113,88,97,101,108,106,100,92,94,91,126,103,93,81,92,118,97,72,104,104,98,102,116,103,99,113,112,108,107,97,99,98,94,91,110,96,119,99,114,106,108,102,103,91,105,97,86,120,105,108,107,101,103,96,113,111,111,104,112,109,101,109,105,108,106,98,107,93,102,102,97,98,105,94,76,88,101,100,90,99,106,91,88,97,92,100,106,107,96,97,110,99,98,104,112,96,103,108,109,107,99,116,99,87,110,98,94,109,106,101,107,98,109,102,102,97,86,113,94,105,108,90,91,136,100,100,103,97,102,105,100,117,113,94,91,110,110,80,101,110,100,107,97,117,105,92,109,106,108,110,101,97,103,90,94,117,111,113,100,105,95,105,106,100,118,84,102,100,100,112,106,95,99,100,95,91,108,103,94,94,101,110,101,97,110,103,109,102,101,96,104,100,99,102,102,86,122,99,92,99,100,95,103,101,92,96,101,99,123,104,100,101,101,95,100,102,108,102,97,101,85,102,103,96,105,105,100,109,109,101,111,121,100,113,114,99,96,95,102,97,107,98,107,100,109,97,108,98,88,104,106,97,106,103,95,98,97,103,98,107,100,108,94,110,109,109,117,98,105,104,97,94,91,101,96,101,102,108,94,90,132,104,102,94,109,108,112,106,101,97,110,96,108,92,104,106,104,104,102,104,105,110,103,99,105,103,93,106,104,106,103,113,110,101,99,110,108,96,104,99,110,99,97,103,99,107,98,102,108,72,97,106,97,98,114,99,102,100,88,87,94,94,99,106,93,95,106,101,102,99,104,87,116,112,97,103,109,101,80,107,93,99,99,94,114,106,118,120,98,99,101,104,94,104,101,103,100,97,108,94,94,77,105,106,99,98,97,90,90,103,102,101,105,108,101,96,95,114,98,108,120,100,106,101,93,99,113,102,101,103,102,102,119,111,110,106,114,104,95,103,102,97,106,104,107,100,106,100,96,98,95,92,112,97,115,95,106,91,103,95,103,98,102,99,101,103,98,103,101,103,110,102,101,109,105,97,100,104,102,101,101,105,113,96,99,111,101,107,94,106,99,104,105,113,114,100,99,103,105,109,104,108,97,102,113,102,112,94,97,99,94,95,95,102,106,105,103,105,95,99,99,108,103,115,95,107,101,103,104,104,120,110,102,105,96,103,105,104,103,91,90,104,102,79,108,112,103,105,105,108,119,101,94,101,95,103,104,90,85,109,75,109,109,95,112,98,112,101,104,108,110,101,101,123,101,94,97,102,94,115,108,101,99,103,114,101,110,92,114,100,110,106,107,128,105,121,91,116,99,103,91,102,69,104,103,92,110,104,109,106,108,99,105,120,100,102,100,111,110,108,106,110,91,118,101,109,106,126,95,108,108,110,93,104,109,111,107,95,97,100,101,107,98,110,99,100,99,98,111,104,100,104,104,114,108,103,91,99,101,99,108,106,117,94,99,100,103,101,102,89,95,102,87,106,100,109,94,91,110,95,106,103,100,106,103,101,98,110,95,94,105,113,86,108,102,108,98,108,100,106,108,104,105,106,101,103,99,104,112,105,106,99,100,105,105,110,92,112,109,89,108,97,97,95,98,96,121,107,94,112,108,92,109,107,97,100,106,115,94,106,104,99,107,104,102,104,96,101,110,99,94,96,111,112,98,93,111,106,108,108,102,112,106,102,95,99,108,117,111,105,108,106,99,93,100,108,105,103,103,117,104,99,97,96,109,95,98,97,107,105,103,99,107,98,100,109,108,98,107,90,98,101,104,110,115,106,90,104,104,97,87,105,105,99,95,106,98,101,107,113,91,89,117,105,110,107,110,71,98,101,108,102,95,110,92,106,94,97,102,102,101,105,108,112,109,112,120,110,108,95,105,100,109,107,113,103,98,109,109,101,100,88,115,98,95,96,93,102,104,101,82,100,99,98,87,108,104,107,118,83,104,112,100,86,96,100,109,103,108,102,93,99,102,121,96,98,102,109,96,105,91,99,109,103,105,105,109,97,96,106,110,97,102,103,114,106,107,117,107,109,95,101,91,104,104,103,105,100,113,110,90,95,104,107,99,101,106,103,108,101,94,92,100,99,105,89,97,91,105,98,94,92,103,93,99,101,119,98,108,92,95,110,98,101,99,93,95,104,99,116,101,93,95,97,98,102,101,85,97,111,101,100,86,109,99,100,101,100,116,102,92,110,94,99,73,106,110,108,90,86,106,99,113,119,108,106,105,111,97,109,108,98,100,94,112,90,102,116,121,107,121,98,98,94,99,94,104,91,85,94,101,98,105,100,88,105,132,92,106,109,118,111,113,117,101,101,111,104,100,95,100,110,105,106,104,101,99,117,105,101,101,110,106,105,115,108,98,95,94,109,89,101,111,96,101,108,96,89,98,110,95,104,96,106,100,104,113,114,106,95,104,113,99,90,109,103,96,88,101,94,104,98,104,104,107,111,103,110,97,109,113,100,110,112,102,108,85,113,99,107,116,87,88,99,107,101,96,104,105,91,98,115,97,107,83,104,105,96,95,101,112,106,105,92,99,100,104,104,104,101,102,109,92,110,96,102,83,110,102,88,120,102,99,97,111,103,113,103,111,112,113,108,107,119,99,109,99,99,92,106,91,104,103,93,112,94,110,72,121,112,106,109,98,108,107,113,94,110,103,110,110,102,111,105,105,102,115,114,94,107,99,90,111,104,100,116,90,86,100,113,107,104,107,81,104,114,103,103,112,121,107,110,104,105,106,100,118,99,108,107,121,104,120,96,105,116,106,117,67,99,112,97,109,109,100,96,110,102,95,100,113,112,99,102,99,101,105,117,107,102,124,103,105,102,104,108,120,105,103,99,88,110,105,106,94,95,90,104,103,104,104,95,113,101,113,100,110,110,104,103,113,107,113,102,112,109,88,99,107,101,107,100,109,119,92,104,104,96,123,109,104,116,105,100,107,103,93,106,107,95,111,109,94,106,100,104,112,103,114,99,98,91,109,101,96,88,105,109,112,119,72,107,100,109,108,104,108,109,104,94,115,113,104,101,110,109,113,116,101,103,99,114,106,104,105,112,102,106,98,104,98,106,107,115,113,102,102,110,110,117,101,100,110,98,108,74,104,104,102,100,93,98,95,112,94,107,92,99,98,121,102,113,89,109,122,104,110,101,98,101,96,91,97,91,98,96,108,100,108,107,108,103,104,103,104,100,107,118,100,106,100,115,106,105,91,109,121,102,103,99,109,99,105,111,91,104,103,95,108,111,106,90,109,101,103,113,103,95,113,108,106,92,98,110,100,115,81,119,106,100,111,102,102,111,99,101,99,102,96,99,102,92,100,104,97,113,108,103,106,103,102,102,112,102,96,106,98,108,110,124,107,104,106,101,104,103,122,104,103,103,98,96,103,102,111,107,100,108,100,120,107,109,105,116,102,93,101,102,95,101,109,100,104,103,104,97,91,96,100,104,102,107,106,102,108,101,109,105,95,99,107,116,98,108,119,104,102,91,104,82,97,119,119,116,101,95,115,98,99,100,94,107,113,100,101,115,101,114,113,102,95,107,109,105,101,103,105,104,93,105,95,99,104,109,100,109,87,102,101,107,120,104,105,106,108,102,104,107,93,119,94,108,75,112,109,93,108,99,109,109,114,99,115,101,98,104,104,104,100,110,101,107,103,105,110,101,112,103,102,98,98,113,109,103,92,110,106,102,112,101,109,93,98,107,104,105,106,102,100,100,106,99,98,110,120,101,106,116,95,111,106,104,97,100,96,97,92,109,114,116,94,100,108,101,98,109,97,107,104,97,112,101,104,98,105,99,104,90,107,91,94,77,103,107,101,92,99,105,101,107,108,98,103,99,104,104,102,102,102,106,101,117,101,102,109,111,117,91,104,101,105,108,112,108,94,99,94,101,105,96,100,100,108,99,104,73,100,101,104,106,115,99,99,122,106,84,95,105,102,106,106,105,101,121,103,106,94,112,101,98,102,124,103,97,117,101,99,98,87,96,105,107,111,104,98,114,95,102,99,107,104,103,110,113,110,112,100,98,105,102,101,96,117,104,103,108,99,100,104,97,102,98,105,97,103,98,101,116,107,103,105,96,108,99,110,109,105,108,110,102,94,104,110,100,92,104,104,101,101,93,98,106,102,109,99,95,113,99,104,106,105,103,102,106,98,110,102,98,96,107,113,104,106,113,104,111,107,101,103,113,100,102,103,108,101,98,103,106,96,103,100,103,102,112,105,102,95,108,101,104,106,99,98,113,109,112,82,100,112,87,102,114,111,76,80,110,95,102,101,103,96,97,98,97,96,100,99,104,111,88,97,73,107,100,99,93,104,94,106,101,97,111,98,110,106,109,99,105,90,107,113,107,110,118,99,106,107,109,107,102,93,109,100,93,100,94,105,104,100,108,101,99,107,103,98,104,107,104,109,113,104,119,82,104,103,90,112,106,98,102,109,113,108,110,99,140,96,93,91,94,108,110,108,101,102,97,99,104,104,99,121,109,105,104,88,108,95,101,88,116,102,104,93,99,91,111,110,103,92,108,102,103,98,92,99,106,102,98,102,100,105,105,104,81,97,109,99,100,103,120,113,91,108,104,106,113,102,100,100,88,99,117,101,100,99,100,102,112,110,108,98,104,100,105,103,105,105,105,106,102,93,101,112,114,95,104,87,100,108,103,100,93,104,118,97,105,98,102,97,100,101,99,103,92,94,113,106,105,100,101,107,117,109,112,86, +649.2749,115,91,117,111,104,102,104,111,96,111,103,88,113,92,99,121,105,109,99,97,111,99,108,104,96,104,108,105,117,112,99,117,105,101,110,96,115,95,79,114,103,100,100,107,96,113,98,98,89,116,97,104,99,113,98,90,109,102,122,103,115,92,103,114,105,127,89,103,98,71,109,101,111,113,95,107,111,109,102,116,97,108,108,94,112,99,92,113,100,101,117,104,91,100,83,98,94,114,108,107,103,124,123,120,110,112,106,105,108,119,116,99,107,98,106,101,109,102,137,106,118,101,110,102,103,110,99,108,107,107,103,109,89,90,109,105,103,109,122,108,98,112,82,106,102,92,106,100,98,104,102,112,104,99,102,114,128,115,114,97,104,102,105,109,79,103,106,105,121,107,78,108,92,105,104,106,104,100,116,95,101,100,119,103,99,88,97,109,115,78,98,104,103,112,108,122,104,101,110,102,104,105,115,106,107,108,113,110,110,102,99,98,119,118,103,109,89,105,102,98,112,108,118,96,101,107,102,113,95,74,109,110,106,109,101,105,103,110,112,113,114,104,101,111,104,117,117,99,110,108,94,97,102,94,91,116,107,87,113,108,96,118,100,99,110,106,103,104,97,105,108,104,97,112,111,112,98,108,109,103,105,112,97,108,107,102,106,111,104,69,108,98,99,98,113,113,90,108,91,110,105,101,105,108,100,113,115,107,110,113,109,94,111,104,96,114,100,102,108,106,100,93,105,103,99,102,95,94,110,101,108,92,103,108,109,121,114,105,103,98,102,102,118,91,87,111,103,102,117,111,96,100,95,102,100,105,109,111,108,100,102,107,106,95,103,97,100,109,114,119,119,102,98,102,98,101,106,92,100,92,101,105,121,116,93,108,115,99,106,99,105,94,88,99,99,105,98,105,109,102,103,113,102,119,102,99,106,68,98,100,92,100,113,106,100,104,113,103,103,96,105,102,93,105,110,105,105,81,103,103,100,99,99,102,93,113,79,122,107,99,116,101,107,112,98,110,110,97,120,100,109,93,95,102,112,103,106,106,99,91,96,114,109,108,117,106,109,101,117,105,109,104,136,117,101,104,109,99,115,118,103,109,120,113,118,100,100,111,109,101,99,126,101,105,97,106,87,102,100,115,105,119,101,114,117,106,101,123,104,109,101,114,100,118,107,111,98,100,105,106,106,102,103,99,110,102,109,100,111,127,91,105,103,104,113,102,102,100,99,74,108,121,106,100,109,104,114,112,108,109,101,115,120,97,100,99,108,107,108,107,102,105,116,114,87,95,101,110,95,101,109,103,108,112,106,125,97,105,109,109,107,113,103,105,114,92,113,121,110,99,105,113,104,105,109,74,100,104,102,104,95,109,112,100,89,108,110,105,96,111,105,103,104,106,122,110,107,109,106,108,118,104,111,95,106,107,101,106,109,115,100,103,89,104,113,109,106,101,104,94,87,106,107,109,115,99,95,88,113,103,101,113,101,79,101,101,119,99,107,121,101,119,115,107,111,114,114,107,105,106,110,96,117,112,104,109,110,101,112,92,111,122,103,105,98,107,104,115,94,99,105,101,111,114,97,94,122,109,117,104,95,103,87,109,103,109,101,116,107,100,114,107,108,101,117,99,105,115,106,98,108,101,110,106,112,106,108,101,99,118,98,110,109,106,107,79,105,93,103,106,107,104,97,110,101,113,101,117,108,114,103,90,96,114,103,102,100,114,104,103,111,96,101,104,85,112,87,98,106,98,98,98,111,88,89,109,100,108,105,103,115,121,103,112,115,104,109,110,110,111,95,109,94,113,112,105,93,115,117,113,97,99,91,105,121,99,110,96,110,111,124,99,101,99,100,110,97,101,104,110,96,116,109,91,100,113,99,104,113,122,113,100,110,108,105,112,101,102,88,103,95,101,108,99,127,108,102,101,99,107,104,109,108,88,92,117,104,104,113,96,103,101,106,101,113,97,90,98,113,105,100,113,102,108,104,103,116,106,108,109,91,104,110,114,108,99,107,116,106,112,107,118,105,105,111,97,101,125,119,93,109,116,100,92,103,99,96,106,114,112,103,106,105,112,86,111,111,95,107,98,102,107,102,109,103,100,102,108,98,109,111,110,100,110,100,105,91,99,109,99,114,97,110,110,109,112,105,102,114,83,114,91,108,117,112,108,95,110,101,102,104,124,105,101,112,110,99,102,103,105,96,105,114,101,95,97,107,98,102,102,98,107,117,112,87,119,105,98,109,94,102,98,111,100,97,96,104,109,100,109,116,104,103,99,108,107,109,99,90,101,99,105,95,112,104,102,97,121,112,90,107,104,108,98,104,110,106,112,108,107,102,108,109,104,103,100,109,97,113,101,104,109,98,106,112,102,101,118,125,112,119,107,88,98,120,93,107,114,106,101,107,113,104,100,90,107,91,127,118,117,99,107,108,105,94,93,99,100,106,108,100,123,102,108,98,107,103,100,113,108,106,97,103,100,98,100,103,103,111,95,101,111,115,107,97,112,113,102,108,106,113,98,113,106,107,107,99,96,94,112,99,105,107,101,117,104,106,121,109,108,108,104,106,111,109,106,104,103,98,94,105,95,102,89,104,110,96,109,116,102,110,97,112,125,123,100,89,107,102,106,100,98,120,94,111,86,106,110,114,110,98,106,111,110,104,108,101,107,103,95,103,112,102,105,106,101,100,118,98,109,112,105,107,101,116,116,93,99,102,110,107,108,104,96,120,113,99,104,106,118,96,107,78,95,112,128,101,99,102,105,103,111,99,118,102,100,103,106,120,117,97,108,99,107,111,110,112,106,90,112,102,104,108,100,101,114,113,122,104,103,100,105,107,108,101,99,108,102,80,106,110,101,108,110,104,110,106,109,96,102,95,103,102,112,114,109,104,110,98,106,116,109,107,104,126,94,91,99,110,104,114,76,90,102,100,108,107,109,105,108,113,98,111,111,98,102,97,94,111,107,98,110,109,105,106,106,107,102,119,102,107,108,98,114,109,103,108,100,115,96,102,84,107,109,95,99,108,109,104,113,104,95,123,89,107,103,111,114,109,97,104,114,101,126,106,101,117,101,99,111,106,120,100,100,94,101,117,102,111,112,111,111,110,107,113,101,97,94,94,101,101,104,103,113,107,109,104,102,95,107,100,116,112,107,94,109,100,104,104,108,111,97,111,111,95,117,102,112,118,107,99,110,95,106,109,103,106,109,120,103,110,98,102,101,101,91,87,105,106,101,120,102,108,118,98,97,100,111,98,117,114,95,117,98,109,107,104,108,104,94,104,108,102,105,103,108,106,101,95,95,100,104,105,102,104,104,99,100,110,100,95,106,112,104,109,112,112,89,109,99,91,108,106,112,101,92,109,117,111,112,120,108,100,105,107,108,108,102,116,101,110,98,110,104,106,72,106,104,98,103,100,102,94,79,105,113,108,115,103,97,110,104,102,105,98,104,107,102,104,105,106,107,102,113,94,108,89,97,78,103,106,108,105,98,107,98,101,102,96,101,121,107,105,113,108,101,109,109,102,112,99,99,87,99,113,112,109,113,114,110,112,87,99,103,116,111,97,104,110,80,107,98,110,103,110,108,98,104,121,109,95,118,118,108,106,102,108,109,98,105,108,101,95,111,107,110,131,94,101,126,96,117,108,105,100,99,76,111,96,108,99,71,102,95,113,106,87,113,112,104,98,106,111,120,105,108,95,107,96,108,105,106,102,102,102,100,113,108,111,100,111,108,108,118,96,108,107,101,108,107,103,111,108,99,108,103,101,108,108,97,102,118,110,106,101,108,113,116,101,107,107,102,107,106,110,113,100,115,96,106,100,85,115,104,106,102,106,106,95,100,106,98,106,79,106,118,103,118,98,109,103,95,113,104,101,103,117,100,104,109,100,101,116,96,103,88,102,103,99,99,110,105,119,109,100,91,110,117,109,97,108,114,103,108,98,111,106,97,108,120,107,105,115,113,93,110,104,107,108,108,104,109,92,116,124,99,88,96,107,102,104,100,98,103,109,91,111,110,98,113,100,110,109,107,96,102,126,102,111,103,113,100,100,105,101,116,97,102,103,93,94,106,101,111,106,101,101,106,109,106,101,92,101,104,102,99,101,108,96,110,77,102,103,106,110,107,102,107,96,99,107,86,102,97,99,104,107,109,105,96,99,111,116,111,106,91,105,105,101,113,111,110,101,107,97,100,102,104,101,105,113,107,102,98,101,111,111,117,112,99,111,101,104,99,108,106,98,103,103,99,101,91,103,95,96,106,98,100,107,112,105,119,91,105,102,114,105,98,113,103,103,110,105,109,96,121,102,111,111,117,104,100,98,99,101,108,104,111,113,95,113,85,102,109,107,111,94,104,109,114,102,103,118,119,103,109,109,108,104,112,102,131,91,102,99,107,104,108,107,98,118,110,112,102,104,101,98,106,115,98,98,101,105,97,102,96,105,106,99,99,108,94,89,95,103,95,108,113,101,109,103,101,90,124,118,117,89,121,100,97,110,111,110,98,102,104,106,106,120,101,98,107,106,96,104,83,94,108,117,113,110,108,99,97,96,99,101,104,98,98,95,95,104,108,111,109,113,116,116,111,104,107,104,113,120,104,103,103,108,97,117,106,106,109,104,111,100,105,103,104,106,110,93,114,101,99,99,108,108,97,94,109,90,102,108,110,125,109,103,109,99,107,111,106,105,99,102,96,105,101,119,103,110,108,100,108,103,109,98,106,109,99,94,114,95,100,102,101,120,111,92,113,102,113,80,103,106,97,106,102,112,106,90,102,104,91,95,105,112,98,101,100,92,103,95,107,102,117,111,106,105,104,100,103,91,109,105,105,109,103,102,102,106,108,104,93,105,101,108,112,104,91,99,102,93,94,91,107,114,97, +649.41608,103,101,85,94,99,109,101,105,109,109,104,110,118,121,98,108,125,110,102,116,118,96,96,102,91,97,100,113,113,104,104,99,98,108,108,97,104,92,100,96,109,102,93,113,96,101,95,109,113,104,98,97,101,98,87,117,102,96,109,97,91,113,83,101,100,115,90,99,105,103,103,94,90,87,105,125,100,112,129,122,109,104,110,109,99,107,118,110,92,108,108,91,130,108,109,119,106,102,101,113,98,87,108,105,98,91,110,101,108,99,96,94,98,101,99,117,116,112,106,105,95,97,106,109,96,107,96,112,118,109,109,105,100,98,95,103,98,108,87,107,97,105,101,99,99,98,100,114,97,105,113,98,124,90,104,106,107,107,119,110,99,128,110,107,108,100,89,97,103,105,114,106,96,94,109,112,94,97,102,109,107,98,100,99,95,95,87,85,102,103,105,108,119,111,116,103,88,101,102,116,106,93,106,96,99,97,100,108,96,112,94,105,99,103,106,91,99,96,94,110,113,107,103,101,100,97,113,78,94,118,94,106,99,118,114,97,104,104,103,97,91,105,108,103,122,91,117,75,100,107,104,108,106,105,94,109,106,97,98,99,106,118,99,102,99,111,103,99,92,98,109,132,100,96,106,113,97,104,100,99,97,114,99,104,96,96,102,104,111,103,111,107,108,109,123,116,92,106,107,106,103,102,100,110,100,117,111,120,99,103,95,105,103,103,95,110,109,106,104,99,102,105,101,95,101,100,101,102,107,116,111,108,113,97,98,108,114,89,100,97,104,98,105,106,101,102,106,106,111,104,103,106,109,117,105,97,118,90,63,113,102,98,103,105,98,115,110,112,100,112,116,124,110,101,98,104,109,118,109,115,105,98,106,95,113,106,100,107,96,96,100,98,102,106,106,96,94,95,106,98,112,111,93,102,100,103,94,100,90,101,104,98,113,106,91,91,101,94,114,99,105,97,101,98,91,88,87,101,103,114,110,109,106,102,112,96,98,98,102,99,103,106,99,97,105,102,101,104,94,99,85,100,95,118,119,101,107,116,110,101,103,103,107,114,86,97,98,103,112,111,108,104,110,108,93,98,111,116,92,94,113,114,106,105,100,98,112,99,90,103,98,110,114,103,95,100,91,101,104,107,93,97,105,99,101,104,105,105,96,108,96,114,103,121,108,97,106,96,99,92,109,115,102,109,105,101,101,96,98,89,105,107,100,90,105,92,117,80,96,98,109,96,96,94,115,93,101,96,102,95,74,110,110,100,111,99,108,93,106,99,108,100,97,113,101,108,102,103,109,92,100,99,100,98,103,106,109,107,92,102,108,112,110,109,107,118,102,99,103,106,110,99,97,100,114,93,105,102,108,108,93,110,106,101,107,103,100,127,100,113,115,94,104,106,101,107,116,99,99,117,102,105,95,95,100,98,108,87,93,117,101,107,90,102,94,105,86,100,113,115,108,108,107,93,100,92,95,88,111,107,102,70,102,103,107,94,105,99,110,102,113,110,109,101,103,110,99,96,129,116,112,122,105,108,109,114,102,104,107,113,101,115,112,87,105,104,120,101,114,97,102,92,89,104,102,97,107,111,102,105,100,100,93,88,113,110,97,108,101,115,119,100,89,91,96,105,87,117,107,105,100,94,111,99,104,90,96,98,103,104,105,106,97,93,105,103,111,90,114,95,106,98,102,99,101,110,99,96,104,96,113,95,99,106,103,94,100,99,104,100,106,97,102,100,100,95,100,101,103,98,105,97,100,94,106,102,105,100,93,104,106,109,113,111,103,109,113,99,99,101,106,102,115,109,95,99,110,104,110,99,104,101,101,98,90,103,101,107,114,100,100,114,100,113,104,101,105,105,100,105,95,108,100,101,97,98,113,96,106,96,88,102,108,103,96,99,104,103,122,102,112,106,109,97,103,98,101,94,103,113,103,115,109,113,97,109,101,113,115,107,97,93,109,100,96,88,92,108,107,101,104,113,100,106,101,106,102,99,98,102,97,114,101,106,102,101,101,115,113,95,114,110,105,102,116,103,102,111,105,111,108,102,109,108,103,98,93,108,109,108,98,108,103,95,105,95,110,109,83,108,106,107,96,97,100,105,101,99,98,114,95,101,108,91,98,107,101,109,99,110,94,107,100,118,116,107,108,93,99,108,104,107,120,102,102,106,103,94,96,110,110,111,108,104,116,95,92,100,98,102,88,112,99,100,101,101,115,87,104,111,97,109,104,82,112,99,106,103,100,108,97,93,84,111,103,90,105,92,104,113,109,99,101,102,107,104,105,95,105,96,100,104,102,96,97,113,97,97,105,98,111,100,88,101,108,101,123,102,109,100,105,96,91,97,111,99,105,111,97,96,98,95,99,98,94,111,116,105,116,101,101,81,112,100,105,102,95,103,82,82,95,121,99,105,93,99,99,99,102,100,89,102,107,108,114,103,105,105,101,93,84,103,94,98,109,115,98,94,116,108,105,85,106,76,95,109,103,101,98,106,104,107,105,97,93,108,96,109,104,102,110,98,101,97,101,91,96,94,110,100,106,114,106,105,96,127,99,87,99,95,92,102,76,104,95,103,104,109,94,93,103,109,102,111,112,91,113,102,113,93,109,105,118,99,109,101,82,108,103,98,104,99,100,80,112,106,94,106,107,105,112,90,106,111,111,90,102,100,104,98,91,108,87,108,107,88,113,109,105,105,113,98,99,106,122,94,115,94,99,102,103,94,107,102,105,99,110,120,92,97,112,110,122,120,104,109,107,104,99,111,102,111,108,106,91,111,98,101,96,99,97,115,108,117,95,102,127,98,91,113,98,101,106,100,99,106,103,101,115,105,113,106,100,101,113,85,117,108,99,109,115,93,108,114,94,104,110,105,117,109,115,96,112,114,101,104,107,105,105,106,98,93,115,102,108,117,80,88,98,108,100,106,117,107,103,104,108,105,90,109,98,98,111,108,105,92,106,97,113,105,108,111,101,105,110,112,108,108,102,91,99,92,96,124,114,98,103,97,91,90,103,102,98,111,107,99,99,108,104,113,106,110,107,99,104,108,119,105,90,94,105,104,92,105,115,102,91,113,105,97,106,102,105,101,106,94,99,101,110,97,100,107,106,101,107,105,108,112,102,110,94,106,111,103,99,99,95,105,103,98,102,89,96,110,110,104,77,99,104,110,106,65,100,103,94,97,94,95,103,103,104,109,99,100,93,104,110,110,88,120,100,110,102,102,102,102,117,108,105,100,103,103,76,119,121,99,95,115,101,95,93,102,110,98,125,95,104,112,95,98,101,101,104,110,113,98,108,87,100,92,103,98,104,105,109,109,104,88,99,105,91,102,101,111,104,96,101,109,99,125,98,112,112,107,95,99,75,102,97,87,112,83,102,118,104,104,103,111,102,115,98,101,103,115,74,106,102,109,105,108,87,104,96,97,110,103,101,113,100,113,101,103,113,104,101,101,107,105,101,99,108,105,113,99,107,110,102,106,95,95,102,96,96,102,100,99,105,107,98,91,106,101,95,106,97,105,109,113,107,98,108,101,103,100,104,99,102,97,99,113,105,101,102,98,96,108,104,100,108,98,103,108,114,93,103,112,120,105,104,98,92,98,109,101,94,94,109,111,107,102,88,109,124,96,100,101,99,101,98,107,99,111,110,98,100,111,98,110,106,107,107,108,128,103,118,101,101,106,109,100,101,103,107,103,94,100,102,110,109,96,96,96,102,100,92,95,99,105,98,105,101,98,103,93,97,99,95,90,106,98,105,103,97,103,106,101,113,106,115,97,92,107,107,108,124,100,112,102,97,94,102,121,110,105,110,115,113,103,100,98,88,107,100,94,106,114,117,97,89,104,99,121,99,104,115,109,110,94,94,106,85,95,98,106,79,106,104,97,94,96,89,107,96,108,85,88,111,95,113,98,68,101,109,106,100,102,101,102,120,83,101,127,105,105,96,102,88,109,87,115,96,102,97,108,110,108,105,101,98,115,117,93,105,108,108,103,97,94,101,99,118,102,98,97,103,111,114,97,102,105,101,100,104,110,104,100,102,114,95,97,111,106,100,104,101,109,110,107,100,102,105,75,104,102,106,97,100,108,96,87,112,103,112,99,103,113,105,111,97,104,110,90,94,100,98,106,97,88,100,116,97,98,106,106,109,104,108,104,99,90,100,115,103,104,94,87,103,103,105,92,122,106,98,101,102,104,113,98,98,108,110,100,103,107,85,109,95,105,116,96,90,97,104,97,101,115,99,107,103,102,105,109,110,107,109,106,99,103,107,109,106,103,104,96,107,99,99,102,101,116,107,104,116,110,103,105,109,107,102,101,103,102,101,102,107,92,109,107,117,110,110,109,111,116,102,117,114,117,94,95,94,112,101,120,105,90,92,118,110,108,103,89,95,97,67,111,103,101,94,113,103,77,97,107,107,101,103,104,124,101,94,107,103,112,96,98,99,94,97,91,95,100,110,106,97,104,102,116,107,104,110,94,113,106,104,105,94,93,99,99,101,99,104,110,101,112,104,103,103,96,110,102,104,92,91,107,74,101,103,110,98,119,98,101,99,107,107,120,96,110,102,81,109,108,101,98,109,101,105,108,106,103,106,98,102,102,109,117,106,92,113,113,104,100,113,95,114,95,107,95,96,103,113,99,93,103,112,97,95,98,98,92,103,112,103,95,110,103,96,103,105,99,96,100,103,105,108,93,98,92,91,105,102,98,109,100,109,75,114,127,120,92,109,113,99,102,100,107,98,105,102,106,101,110,101,112,104,118,94,93,106,94,119,102,96,109,114,110,104,96,112,100,103,106,106,103,111,110,119,110,107,87,101,99,105,102,92,110,97,81,112,98,111,115,105,104,109,104,97,97,108,110,93,105,127,105,85,98,107,95, +649.55725,94,107,92,104,94,101,98,100,87,101,89,118,107,106,97,103,73,113,93,98,118,110,106,107,103,101,105,103,109,95,99,102,74,86,108,106,106,105,93,95,95,80,100,99,110,99,91,108,112,112,114,117,95,99,101,98,105,115,107,98,109,113,120,109,116,110,95,96,111,99,109,102,105,109,93,110,81,106,100,105,111,103,103,98,108,105,95,118,100,107,103,103,99,97,103,98,105,95,94,95,97,108,97,109,86,87,114,106,104,100,104,98,117,99,92,95,109,104,108,102,94,108,75,117,104,102,98,102,114,100,98,108,97,97,99,108,96,120,96,102,99,99,70,110,103,100,111,102,104,97,102,108,114,99,100,109,107,95,90,117,113,89,104,104,104,97,117,104,109,109,108,103,94,104,106,96,94,97,117,113,115,92,104,107,103,110,101,109,112,98,104,105,101,101,98,107,103,115,102,100,106,114,104,98,95,101,106,93,110,106,99,103,107,110,100,95,88,104,108,101,97,84,82,100,105,105,95,103,107,101,92,96,102,101,101,103,102,111,93,110,113,96,110,106,102,100,107,114,120,113,106,97,101,100,101,107,96,102,102,108,100,107,108,105,100,103,101,103,106,104,96,104,98,98,107,103,92,94,106,110,108,95,104,113,97,110,109,102,110,105,91,101,101,109,95,100,93,94,105,113,98,99,106,108,90,103,100,114,112,116,96,112,105,110,110,101,116,106,72,102,100,102,97,112,114,87,102,97,108,118,106,111,91,81,100,100,98,102,97,120,110,106,97,88,100,109,103,98,103,99,112,100,111,109,97,105,119,93,88,103,99,93,90,102,105,89,99,92,106,97,113,104,110,109,113,98,102,103,97,99,100,104,101,105,110,94,102,104,97,98,109,93,99,101,104,100,97,91,90,109,109,111,112,95,101,96,99,112,105,112,100,101,106,114,103,94,114,97,103,101,95,100,86,99,101,95,98,97,104,111,90,105,109,102,77,99,100,106,96,97,108,101,104,99,107,105,117,92,105,103,92,107,100,90,104,104,94,106,102,118,100,96,94,105,110,104,107,102,107,90,120,102,101,107,105,99,94,100,109,106,93,99,95,102,96,107,109,114,112,101,107,105,99,98,102,102,94,99,98,117,114,99,104,113,93,112,87,101,107,100,108,116,99,113,81,108,99,109,92,103,99,112,114,96,101,97,110,105,106,101,100,97,100,106,109,100,106,106,105,119,102,96,104,103,104,108,102,90,103,104,98,98,118,107,103,111,99,116,100,98,103,106,94,106,100,95,111,93,113,107,84,100,105,98,109,106,91,88,107,108,100,113,95,108,105,104,110,108,99,94,103,105,106,95,108,112,99,101,101,101,116,102,103,94,106,93,96,101,94,102,109,102,98,99,104,94,107,107,101,102,97,105,108,95,107,97,100,103,112,111,97,108,105,111,99,99,105,101,100,119,102,91,98,94,98,105,103,92,101,117,93,100,99,102,93,99,102,109,115,103,103,103,108,110,104,101,104,98,110,105,114,107,110,100,103,96,103,110,107,99,97,110,112,99,100,96,95,102,104,98,99,104,93,87,108,100,96,101,103,101,110,98,104,100,93,99,107,99,101,110,110,104,101,96,95,101,93,97,122,100,114,86,103,99,94,104,107,90,104,104,104,111,97,102,98,99,113,98,119,94,99,97,106,105,103,96,101,101,101,101,102,98,91,91,108,101,100,104,99,105,91,97,105,99,105,103,82,105,102,93,109,99,93,99,110,108,96,103,91,101,105,104,105,102,95,113,91,101,95,103,106,115,103,104,107,95,98,104,109,106,103,109,102,109,105,108,109,94,98,101,75,106,100,105,102,116,113,105,95,104,116,104,104,97,103,100,107,98,130,107,63,101,125,104,110,95,110,109,96,101,102,110,106,104,93,103,105,101,86,98,94,95,104,121,108,97,100,115,106,99,96,106,112,97,99,110,101,127,121,91,93,110,80,107,110,99,100,103,112,106,103,107,109,99,106,94,94,116,95,105,109,106,103,119,100,100,102,92,103,101,104,113,106,113,96,91,103,112,102,92,99,98,107,99,99,99,96,104,101,107,101,117,109,91,78,109,101,108,122,105,113,95,114,108,96,99,95,102,103,101,116,111,101,100,96,83,110,100,102,98,98,101,94,107,103,96,103,110,109,104,97,107,110,98,110,103,103,99,101,95,94,96,103,97,101,98,110,102,98,110,94,110,95,90,101,99,93,97,100,98,105,101,109,98,97,109,104,110,102,109,104,107,96,110,100,99,111,96,89,97,95,133,106,104,95,112,94,101,112,101,79,108,99,98,99,91,96,103,110,94,101,106,90,96,112,102,100,116,109,109,70,101,103,99,98,99,96,114,107,110,115,122,107,98,92,99,96,114,103,96,98,96,103,95,106,105,89,103,95,106,93,101,112,106,105,95,91,101,102,99,99,95,96,100,100,87,100,82,98,104,96,119,105,104,107,100,84,104,95,102,96,102,85,108,94,92,106,89,106,103,87,115,106,104,106,94,102,104,89,114,109,115,117,104,90,106,97,98,106,99,94,114,91,104,96,108,98,105,100,109,106,108,91,112,110,99,102,107,101,103,101,115,96,95,98,111,102,109,98,103,107,97,105,103,102,103,103,97,99,105,106,100,103,89,100,98,102,97,114,100,91,99,87,99,103,109,111,109,97,92,102,108,112,123,108,95,101,97,101,100,106,106,102,106,107,113,106,111,105,94,97,116,106,101,117,100,109,99,100,83,102,104,117,95,93,122,104,92,109,97,102,114,98,106,115,113,125,109,98,100,101,104,98,103,105,97,104,115,98,95,103,113,102,105,99,91,115,98,110,111,96,115,106,103,111,106,105,123,98,109,111,109,103,106,109,105,95,105,106,100,108,106,106,99,99,105,102,109,111,110,101,105,95,101,92,115,93,90,105,99,116,111,108,109,101,98,111,107,111,104,103,110,100,109,106,112,111,113,109,108,101,101,99,103,110,102,101,98,96,98,114,104,101,110,108,93,92,102,110,109,91,112,112,103,104,94,106,102,95,111,105,108,113,91,93,96,120,106,88,101,107,66,102,101,110,97,108,105,105,99,125,106,101,105,103,106,113,111,107,108,105,96,101,116,110,99,102,102,102,95,115,101,87,96,99,98,100,88,99,103,96,101,97,108,119,92,99,95,110,106,121,113,107,98,100,94,111,107,100,107,110,109,113,99,98,103,94,109,102,100,104,102,90,107,102,109,108,106,108,100,105,102,107,92,96,105,99,104,101,95,101,109,111,104,101,100,106,106,101,108,98,113,111,94,105,114,94,98,97,103,93,79,92,88,102,103,108,101,101,99,90,109,101,98,106,107,99,104,105,103,107,101,85,94,103,106,103,104,99,98,94,91,101,88,108,100,113,101,111,110,104,102,96,85,105,93,126,106,99,98,106,93,97,95,107,107,101,110,87,109,110,100,97,99,96,98,99,108,95,96,98,130,108,124,105,100,109,101,105,93,99,100,89,123,104,99,97,110,101,100,99,100,101,91,109,113,75,107,96,93,88,102,95,118,104,76,110,110,95,95,99,92,103,106,108,107,106,98,102,95,96,102,120,103,116,105,102,105,107,106,100,103,105,117,106,115,109,102,117,101,102,104,101,90,76,96,99,106,98,105,100,110,79,110,97,102,81,101,103,96,93,97,103,96,117,104,106,101,109,117,101,101,98,99,100,111,104,110,80,111,88,107,98,98,108,106,107,108,104,94,112,100,101,101,102,108,98,95,109,105,106,104,92,88,102,93,105,97,101,108,106,110,108,91,104,115,99,101,100,103,96,100,95,100,100,101,107,104,69,105,102,108,104,100,100,104,105,96,105,104,101,99,91,96,89,91,106,93,98,104,100,98,92,112,93,103,110,104,100,110,105,106,103,99,101,98,124,110,108,100,102,102,104,106,88,110,104,104,95,105,100,96,95,104,122,102,101,91,98,99,104,114,96,101,96,106,100,105,103,104,110,105,100,81,105,101,101,94,104,108,97,101,105,87,100,102,107,106,110,89,102,89,101,101,101,106,97,92,95,111,105,107,104,107,97,98,109,109,94,98,101,87,105,108,102,105,106,117,98,85,103,93,100,106,108,99,105,94,108,103,106,95,97,122,106,87,97,105,90,100,93,94,107,98,106,99,107,110,105,102,103,107,106,112,106,95,107,94,97,102,105,87,96,105,108,101,114,104,107,83,114,95,80,90,111,118,106,100,110,103,107,115,80,103,100,104,94,90,109,111,108,101,92,100,98,104,107,101,85,95,107,109,100,105,113,92,94,102,99,98,111,91,97,100,115,107,91,109,103,111,99,96,111,110,98,94,118,115,85,100,113,94,117,115,108,110,104,106,99,107,96,80,108,111,113,99,108,104,105,99,125,95,108,103,103,107,91,117,107,99,97,120,125,98,112,98,101,96,94,113,121,97,105,112,100,109,92,99,94,102,101,96,111,119,99,108,109,100,102,103,95,98,105,100,101,107,92,101,102,107,114,112,92,99,100,96,112,106,117,121,96,111,105,107,98,109,122,111,106,93,93,101,94,100,105,94,98,87,111,110,105,104,101,107,91,100,102,101,106,103,100,103,107,99,95,103,109,100,103,104,96,92,102,118,90,103,102,105,91,111,119,106,99,112,107,90,117,96,91,99,91,106,103,109,86,95,110,100,96,112,95,100,102,94,104,107,76,101,105,83,108,102,93,103,105,94,99,102,94,98,100,97,106,104,115,89,104,88,97,97,85,91,107,98,96,106,111,99,108,108,109,97,95,98,99,109,105,99,101,107,99,91,96,110,107,103,96,90,110,74,94,95,88,99,99,101,101,98,103,90,103,104,102,104,103,117,87,118,115,90, +649.69843,96,104,103,97,97,112,96,107,105,105,115,111,101,84,99,109,99,114,110,102,96,108,105,110,104,87,94,99,100,111,108,108,103,110,105,104,118,96,92,102,93,93,109,94,97,107,102,112,95,97,105,99,106,108,106,93,102,97,99,103,103,103,107,98,92,108,102,109,80,97,99,106,97,96,90,120,99,99,98,105,110,115,100,103,103,111,109,110,104,100,122,93,109,109,101,95,100,93,107,106,111,93,104,107,105,94,104,101,105,97,107,96,109,92,92,100,90,105,109,105,116,108,99,98,136,105,103,101,107,105,111,111,94,98,115,105,111,106,100,101,108,102,106,95,99,107,107,100,95,108,103,109,107,96,64,108,98,111,109,101,108,105,97,101,103,100,107,95,100,95,100,105,96,111,111,109,125,96,106,102,106,107,114,101,72,104,98,94,105,97,97,95,113,95,97,105,97,91,94,98,101,95,104,102,93,106,102,108,111,109,98,100,101,117,90,98,100,99,91,91,102,117,90,101,102,101,109,100,113,101,104,101,66,101,91,102,96,118,101,101,97,116,102,106,98,105,95,103,95,106,108,102,97,103,86,108,98,97,92,107,104,112,101,108,101,115,110,110,99,109,105,95,97,103,92,96,95,117,95,90,110,95,111,105,108,121,96,108,106,102,106,107,124,105,117,115,100,104,102,108,108,110,114,111,96,127,98,117,90,105,104,102,100,105,109,85,99,109,106,98,95,102,104,98,105,97,92,107,103,116,96,106,107,116,117,109,106,101,90,97,98,115,94,98,113,111,81,104,104,105,104,118,110,104,105,105,96,129,107,80,107,101,97,96,111,98,110,102,107,106,114,103,107,102,111,100,108,112,100,105,96,112,101,112,97,97,103,105,108,73,116,104,101,118,82,104,90,91,104,105,97,103,89,91,97,98,109,106,102,103,93,98,99,110,106,102,101,94,111,94,99,96,90,103,100,109,97,99,98,80,102,94,115,100,109,106,101,104,92,96,88,108,113,103,94,95,90,117,102,100,96,99,100,102,97,108,100,99,109,106,96,97,106,109,106,93,99,105,105,112,99,100,114,113,105,104,113,98,104,122,92,91,106,105,101,104,105,104,85,94,122,103,111,107,96,104,102,103,118,107,120,97,107,93,107,105,97,104,99,117,109,107,106,107,110,112,96,111,104,98,99,112,108,97,96,97,106,99,91,101,96,112,99,82,94,102,108,94,112,100,99,96,97,104,113,109,99,114,110,101,100,110,108,109,101,99,101,96,109,93,90,114,104,94,99,100,99,107,111,96,87,110,112,109,100,108,100,99,101,105,104,99,107,91,109,87,94,103,104,99,105,102,104,100,109,113,101,110,105,100,87,105,119,113,96,103,95,111,107,109,100,86,98,117,101,103,102,97,107,100,102,94,100,104,109,90,104,113,103,109,96,104,100,121,101,106,103,117,96,108,107,100,98,102,97,88,99,119,107,102,96,94,99,99,95,109,102,117,102,118,84,103,87,104,103,100,111,104,104,107,103,108,103,126,125,118,113,104,101,104,101,126,111,95,118,116,96,100,120,121,100,108,95,103,101,97,111,102,94,103,94,104,104,104,109,104,100,107,109,95,98,104,95,108,77,105,97,94,102,104,113,120,108,107,87,97,93,81,95,113,100,112,104,103,99,106,111,104,105,99,110,99,98,104,100,104,94,105,94,109,106,106,99,105,109,116,98,94,109,112,95,104,91,91,72,113,94,97,100,128,114,110,110,118,106,118,105,103,99,90,126,113,112,94,107,102,110,109,95,100,114,103,93,114,113,99,102,100,100,105,97,105,96,99,109,107,86,111,95,93,110,93,102,97,109,110,103,124,112,102,111,104,99,102,101,117,104,105,107,93,122,100,105,100,92,109,100,113,107,107,90,93,100,103,109,109,96,94,105,129,102,99,97,103,107,104,112,102,101,99,104,99,103,111,102,101,100,99,102,95,102,115,102,100,101,100,102,104,115,98,94,107,100,96,110,87,115,107,108,104,99,101,116,107,108,85,115,109,107,105,103,100,105,90,100,94,92,104,101,110,104,94,105,104,92,97,68,99,100,109,109,94,97,109,96,107,95,99,108,101,106,112,96,98,98,94,111,104,110,112,110,107,93,103,100,94,108,96,104,112,105,107,99,112,107,112,94,79,93,103,94,100,107,101,104,105,110,96,98,111,98,97,97,93,93,87,100,106,110,106,100,106,103,100,95,73,101,102,100,100,109,113,86,98,90,97,93,114,108,117,104,105,112,98,115,101,104,112,98,94,110,98,99,109,85,95,110,92,96,114,100,102,98,94,104,109,100,105,125,97,119,86,103,101,95,101,101,107,90,106,106,113,120,109,98,100,107,85,96,120,102,111,103,105,95,116,95,101,101,109,105,128,90,92,94,96,87,100,109,92,103,111,109,103,94,96,115,100,102,102,96,98,98,117,107,112,110,95,110,107,106,95,106,102,97,100,87,101,103,109,93,93,103,108,99,99,104,95,115,111,99,113,108,104,102,114,102,101,109,105,103,113,111,109,104,103,112,112,116,100,102,109,100,110,106,98,95,116,97,98,96,99,97,108,102,101,101,108,105,96,110,106,103,96,101,102,106,102,110,74,106,99,104,97,107,102,112,92,107,102,102,99,88,107,100,106,71,105,92,94,107,96,105,100,100,110,109,94,100,115,100,102,113,113,112,105,120,96,100,111,102,99,100,91,109,108,116,109,98,110,106,98,95,107,113,102,107,119,102,114,93,106,100,108,114,100,95,102,113,87,100,98,108,111,111,104,107,110,101,109,100,83,101,111,105,104,109,108,98,111,99,109,121,106,92,109,101,103,114,95,112,94,103,117,97,100,106,99,108,111,99,108,117,113,113,94,118,99,105,108,107,113,101,98,99,113,95,103,99,102,98,102,105,99,108,99,116,102,104,103,98,98,90,89,102,113,117,111,109,95,97,116,106,96,100,117,102,117,100,103,102,110,117,114,106,102,112,93,109,103,111,122,99,97,121,99,96,103,100,117,102,98,113,103,115,103,96,107,107,104,101,97,109,102,97,95,97,108,99,103,106,108,99,107,119,101,98,105,97,110,102,106,101,112,100,106,95,98,93,108,109,121,98,94,103,92,96,117,103,105,98,91,103,101,90,94,105,98,108,70,105,98,104,103,101,87,123,115,106,90,114,97,105,114,102,101,115,111,97,103,96,104,106,107,79,121,98,97,113,104,103,100,109,102,113,99,95,86,126,108,104,101,102,95,97,102,96,101,105,113,94,95,85,113,102,112,109,109,99,114,106,97,98,109,116,104,98,110,102,105,95,109,101,99,95,104,109,107,100,105,100,103,114,87,100,96,105,102,93,98,109,98,105,101,87,99,94,91,113,102,96,102,104,110,86,121,110,98,98,107,109,92,105,103,78,112,100,104,114,105,99,112,105,123,116,105,104,102,95,104,108,95,98,102,92,110,101,99,106,92,99,106,76,116,112,102,95,99,108,91,113,101,107,110,91,119,103,100,91,75,94,104,116,98,97,106,98,92,110,104,110,119,92,98,107,103,101,100,115,92,98,99,109,105,108,103,98,108,113,126,93,119,92,106,103,106,102,96,103,95,101,92,115,92,100,89,96,109,98,106,120,97,112,102,113,93,102,105,101,102,99,96,112,97,104,105,108,107,95,99,113,108,109,118,102,98,105,122,89,100,95,104,116,101,95,97,109,105,91,101,121,100,109,108,116,107,108,94,111,110,101,107,97,112,108,70,101,91,108,100,100,101,104,86,125,102,98,102,106,105,98,104,110,123,98,102,107,112,99,102,94,123,95,113,100,99,101,99,106,95,106,99,84,98,107,110,107,105,89,110,101,86,97,103,106,105,101,108,97,106,102,93,98,125,115,104,109,112,110,99,98,102,97,94,105,100,87,103,101,100,104,92,90,116,99,104,107,102,103,97,92,76,98,122,114,108,116,102,93,99,121,117,100,91,95,95,94,104,102,108,104,120,116,105,103,108,108,103,104,102,116,95,91,87,104,102,109,93,112,109,103,112,105,100,109,104,99,99,102,91,103,102,100,113,93,104,105,107,101,98,104,95,99,92,100,99,91,107,128,109,96,92,104,94,97,103,106,108,103,111,87,103,110,92,101,113,105,102,110,87,102,100,115,96,124,91,101,113,102,108,107,114,115,104,102,120,104,103,95,90,105,114,98,98,97,105,109,112,99,101,102,91,111,97,93,103,104,93,113,103,105,96,107,94,108,104,105,87,117,106,87,100,108,105,103,103,104,97,110,108,100,84,98,112,106,108,103,91,106,91,109,98,108,94,111,94,88,100,125,112,98,101,99,113,101,110,95,96,102,97,104,104,104,95,104,100,84,121,100,100,92,101,97,111,97,103,102,110,112,103,114,99,97,95,100,100,102,103,117,116,110,99,110,116,105,84,123,113,111,114,101,112,102,99,111,109,102,75,110,103,109,101,94,107,101,104,104,107,108,103,97,96,103,105,86,104,98,105,109,98,106,103,96,107,109,105,101,91,104,92,105,110,108,102,108,102,109,97,105,96,96,99,101,111,100,102,107,98,100,109,102,107,116,108,100,107,110,107,107,106,107,107,108,107,100,92,95,101,104,112,103,97,109,118,117,83,104,85,97,110,102,87,100,112,100,100,120,108,110,96,113,126,109,102,87,103,107,104,112,100,95,108,98,87,112,99,103,95,98,109,94,89,114,102,85,116,107,94,96,104,104,111,106,114,77,100,100,113,86,103,91,99,102,95,114,113,101,113,120,113,117,90,121,104,96,101,94,102,98,103,138,98,101,95,103,92,93,111,98,91,105,111,106,94,103,95,86,90,104,99,114,119,104,82,102,106,109,81,90,93, +649.83966,72,99,94,106,95,95,98,101,116,99,99,95,104,102,100,104,95,115,84,114,102,122,103,100,103,123,100,104,104,104,111,106,103,106,102,101,102,97,101,100,96,114,114,107,101,100,96,101,90,118,99,97,115,79,108,101,97,108,112,101,93,96,98,97,93,121,100,102,109,97,107,94,92,117,100,114,103,97,105,95,108,100,100,101,110,96,92,110,105,104,108,100,93,103,93,99,112,104,91,100,100,98,101,99,105,107,98,107,102,99,91,87,91,88,107,104,105,98,98,129,98,97,104,101,129,103,107,103,105,102,126,110,97,113,116,102,98,114,107,101,103,119,110,107,100,90,100,94,98,107,77,107,114,80,99,93,112,101,113,88,105,103,114,106,102,101,108,102,103,88,101,112,90,102,106,102,106,105,105,105,108,106,107,104,95,94,108,92,102,99,106,104,115,107,99,100,104,104,90,103,95,99,101,118,104,112,106,101,115,107,108,80,92,109,101,104,105,98,94,76,107,101,98,98,88,120,108,128,113,108,97,93,97,108,99,116,130,104,108,105,99,109,106,102,98,98,100,97,102,99,106,113,105,102,108,96,95,101,94,102,110,109,94,100,102,116,89,95,85,94,98,110,107,97,107,103,102,103,115,82,87,101,109,104,104,99,101,102,118,105,107,103,103,108,101,98,89,94,101,101,102,99,114,102,111,109,105,111,101,101,94,107,101,109,107,104,98,97,110,94,102,95,97,93,99,101,98,99,122,110,102,103,104,97,114,103,101,99,101,83,110,105,101,95,106,92,109,113,100,117,107,109,100,113,100,107,125,104,106,103,108,103,99,111,92,109,96,125,97,101,112,110,105,105,95,102,90,104,97,105,125,97,96,105,109,107,92,95,111,97,113,96,92,112,105,101,93,88,102,103,96,109,102,112,107,113,100,95,108,102,102,100,111,110,100,102,101,100,108,97,101,87,114,108,104,92,103,99,97,108,98,117,92,102,100,104,70,101,95,108,121,96,106,108,80,81,103,94,97,99,97,100,111,102,94,101,94,99,85,99,95,98,101,103,86,106,80,95,109,98,94,102,101,97,96,91,105,105,109,99,108,113,107,105,102,99,92,102,107,93,95,99,109,103,102,102,98,108,117,96,102,101,110,99,99,94,105,100,104,102,115,86,108,107,100,105,108,99,105,91,105,126,106,98,97,104,98,91,109,101,107,107,94,95,101,103,106,106,108,124,99,89,98,95,106,99,105,110,112,106,106,94,102,97,101,105,101,107,102,105,101,107,102,106,94,92,96,104,99,96,98,87,96,110,104,102,96,98,97,106,103,93,112,94,99,94,106,102,107,99,105,109,90,95,102,98,119,112,104,100,111,111,100,95,114,92,102,96,99,107,105,118,102,104,94,102,100,101,108,98,93,108,102,100,113,96,117,101,103,105,109,107,80,113,100,112,132,100,101,117,103,99,102,106,62,97,117,105,91,113,96,109,113,119,107,111,111,103,100,105,99,84,106,90,106,100,94,103,118,103,99,100,103,107,93,95,97,117,100,96,96,106,106,96,107,109,79,102,109,134,99,103,104,100,90,102,110,108,101,107,106,98,87,114,96,107,99,92,87,101,118,99,111,111,113,100,108,96,98,89,94,102,95,116,97,106,97,111,94,117,99,112,108,102,97,112,96,98,104,99,103,99,102,117,99,101,108,103,105,108,110,106,101,107,98,104,122,105,100,104,96,96,99,97,92,108,90,116,106,96,101,103,100,107,102,95,98,109,105,93,101,98,109,98,101,113,96,107,93,99,98,119,92,107,88,109,106,67,96,99,97,104,106,92,112,102,97,111,103,92,100,103,109,100,109,99,109,105,120,107,98,103,98,103,115,114,100,113,105,108,111,96,108,105,105,116,98,103,102,96,98,105,118,110,92,92,96,101,103,99,98,97,98,113,98,116,99,105,99,96,97,111,106,104,112,103,89,106,104,100,103,102,99,99,99,100,107,111,98,110,104,89,101,96,98,103,95,110,99,100,105,107,115,89,97,99,109,102,105,111,98,104,95,120,117,96,87,97,99,99,115,110,112,104,108,104,103,98,112,101,100,96,95,97,86,108,97,106,106,119,92,100,95,105,101,104,108,98,92,105,106,96,100,106,105,88,94,114,118,102,107,100,107,100,111,95,96,97,100,102,112,99,97,103,110,113,100,91,84,104,82,110,100,99,95,110,98,102,94,106,90,98,100,70,96,100,99,100,99,102,96,108,104,110,96,91,106,109,94,116,107,97,113,101,102,96,101,106,104,92,92,108,99,107,97,94,106,101,107,97,112,105,103,98,99,108,107,105,111,107,108,102,117,98,106,101,98,98,108,105,101,97,116,105,94,107,106,102,103,102,104,91,104,105,105,77,102,101,101,95,87,106,99,108,82,104,107,96,115,102,104,108,114,109,113,103,104,101,90,104,101,103,91,118,107,102,106,103,107,98,101,116,100,94,101,98,102,101,112,121,97,95,103,99,95,113,103,102,103,104,107,104,99,99,106,100,91,99,103,111,98,97,102,106,102,90,107,90,110,104,104,96,99,106,110,99,102,104,98,100,98,92,106,92,109,107,98,102,108,101,107,97,113,85,101,105,98,102,110,101,109,103,103,97,97,109,105,99,101,112,105,102,88,99,113,95,106,99,115,98,92,112,100,116,108,104,108,105,92,106,106,99,100,101,94,96,97,89,112,118,99,110,107,91,98,101,83,105,94,90,97,96,109,107,105,117,98,93,90,94,99,103,95,99,92,99,98,100,105,111,103,108,94,87,98,110,113,101,97,113,102,113,101,103,100,103,118,97,94,119,100,110,98,107,112,99,110,113,113,109,109,94,99,108,108,103,103,102,106,109,116,112,104,117,105,138,88,108,96,102,103,99,113,88,96,100,94,100,110,114,104,99,100,107,101,109,100,94,103,112,91,112,91,112,100,105,112,100,101,90,84,99,106,93,122,107,109,98,101,102,104,101,119,96,102,99,108,103,105,87,111,87,104,107,95,104,86,90,107,97,95,100,113,104,117,101,103,98,105,113,105,98,105,88,96,98,104,114,97,100,101,96,117,109,96,99,103,97,105,96,109,106,92,108,104,107,108,105,98,95,104,99,105,126,123,104,99,103,101,104,109,96,111,109,101,98,102,101,104,100,105,108,88,107,102,113,114,107,111,91,98,104,109,99,113,105,101,97,98,115,90,112,96,100,98,108,90,97,107,97,103,111,129,109,114,98,103,100,99,91,107,93,90,101,116,119,112,102,95,96,101,97,109,117,108,109,99,98,108,100,102,96,108,105,100,89,98,98,96,103,102,95,90,101,99,100,103,103,96,107,91,112,101,98,98,100,97,113,100,88,97,108,99,101,93,98,101,102,100,106,105,92,105,101,83,106,106,100,109,95,83,90,102,107,101,92,105,94,104,99,101,107,99,104,97,104,111,103,95,100,102,97,92,99,106,98,111,111,114,113,113,105,94,111,104,102,108,109,112,100,105,106,117,113,101,108,80,102,92,102,99,99,99,99,112,113,114,108,93,118,108,101,123,116,110,116,100,103,122,104,104,101,103,80,95,105,91,102,106,99,98,97,110,96,103,88,99,100,100,95,102,115,119,116,102,101,107,102,105,100,114,102,111,98,96,101,108,95,103,101,91,110,99,118,92,101,111,99,101,105,103,103,99,112,93,99,99,111,101,94,89,105,95,104,102,105,107,107,96,109,89,94,97,87,95,102,90,95,98,95,102,102,107,103,110,106,106,96,104,104,102,98,101,104,98,95,105,103,96,107,121,95,98,110,95,109,100,100,94,112,98,113,99,94,99,100,104,94,101,97,102,106,91,109,110,99,104,98,100,113,99,92,100,97,99,99,91,95,105,91,109,95,108,94,110,100,110,98,98,107,108,98,105,107,100,102,97,104,95,99,99,99,105,107,112,98,95,105,84,100,102,94,93,106,109,103,103,96,103,108,99,103,99,96,109,94,110,100,96,95,98,100,105,102,93,105,112,105,98,96,107,104,100,103,110,103,97,106,98,117,109,100,97,96,96,102,107,74,84,98,105,115,109,108,108,104,109,105,112,102,92,100,109,122,103,104,99,101,98,91,73,91,105,113,106,104,100,113,110,100,106,108,89,81,111,95,108,73,102,106,111,120,97,106,99,96,96,106,108,110,105,124,109,103,107,103,97,101,81,113,112,106,98,104,96,111,103,113,100,99,99,99,100,97,101,112,94,90,103,116,98,93,96,111,109,86,113,103,94,101,96,108,100,106,94,91,97,96,115,103,108,109,105,96,108,101,95,99,99,114,100,103,112,101,100,108,116,108,103,109,93,102,104,102,95,113,103,105,95,106,105,120,98,83,99,95,103,110,116,89,95,101,99,101,98,101,87,95,96,101,124,97,99,108,109,98,108,97,84,101,99,99,102,114,106,102,112,105,117,109,102,92,96,96,98,120,98,103,98,102,116,97,94,114,112,103,108,106,98,97,106,83,105,83,101,101,102,118,105,113,110,107,101,92,114,102,110,114,108,102,97,117,112,104,97,105,111,105,98,111,99,104,99,102,111,106,109,99,100,103,92,94,92,97,108,99,95,104,117,105,102,101,105,99,99,108,115,102,97,101,94,101,99,103,98,109,109,96,107,93,103,102,100,104,100,106,105,105,99,108,103,122,100,105,106,92,108,103,106,87,103,98,111,95,106,108,96,104,115,96,106,91,108,112,111,105,103,102,93,102,86,95,103,102,108,114,109,108,95,96,92,100,113,94,98,106,97,104,103,91,109,103,107,98,93,94,105,89,105,101,95,108,90,95,88,100,102,101,99,104,108,108,104,81,100,104,104,120,109,89,101,99,102,107,96,95,103,116,97,91, +649.98083,101,78,100,99,70,95,90,90,107,116,108,88,101,105,111,93,104,112,113,99,97,104,107,110,108,91,104,83,116,108,104,103,103,102,100,71,107,100,96,100,98,94,97,109,101,114,103,98,116,108,96,101,94,107,104,100,92,105,108,88,86,108,102,75,105,98,111,101,115,104,94,110,106,104,93,109,91,96,105,97,118,102,107,106,106,94,110,112,94,116,109,106,113,102,87,120,131,92,106,103,105,121,100,102,96,111,104,99,95,98,106,106,108,110,112,97,99,93,102,103,106,113,110,101,117,108,102,111,105,101,106,108,107,117,118,115,101,100,97,104,107,112,105,111,105,93,103,91,105,97,95,104,104,106,102,99,136,103,102,111,108,106,118,101,112,111,114,105,125,117,116,110,109,99,110,95,110,90,92,109,107,109,104,108,107,102,97,103,111,102,110,105,111,108,100,112,96,100,95,103,98,102,105,107,113,110,103,100,112,103,90,96,91,101,90,113,102,104,95,102,106,118,98,100,112,108,110,102,95,105,102,111,115,111,110,117,99,118,101,112,98,108,106,98,97,125,112,108,93,105,105,101,114,103,99,106,98,107,110,113,90,99,100,95,89,71,99,108,103,102,100,106,101,89,113,96,105,105,102,94,106,111,106,100,97,98,98,121,96,112,106,100,101,101,103,112,107,105,94,105,105,99,104,135,94,113,115,109,104,102,102,109,106,113,108,92,99,114,107,103,100,105,113,98,97,105,95,96,107,101,103,102,112,97,107,98,94,103,94,111,88,113,98,104,129,101,100,110,111,93,97,107,113,100,95,110,100,117,103,102,93,103,114,102,98,105,103,110,105,105,98,108,110,113,115,118,113,102,99,105,106,109,101,108,105,104,100,103,107,103,104,97,104,95,105,95,108,106,122,108,101,101,110,90,91,104,107,99,103,96,107,99,97,99,116,90,97,105,87,101,100,108,130,110,102,106,96,100,107,113,92,109,104,103,104,104,101,106,108,104,100,99,109,110,111,105,106,95,106,106,89,102,94,110,93,112,115,98,112,111,99,116,114,117,111,105,104,103,105,94,97,106,102,100,101,111,108,102,107,107,105,111,106,109,99,101,98,105,108,102,106,104,106,105,98,100,96,93,103,91,104,101,105,93,96,112,95,99,104,112,120,98,105,102,96,95,99,69,87,117,108,115,109,101,109,111,113,95,100,98,103,113,109,101,109,100,100,103,101,114,97,93,101,101,117,97,103,103,108,104,115,100,103,100,103,103,100,109,99,107,94,110,109,113,105,109,107,110,103,105,78,104,107,110,90,110,102,105,109,97,105,100,99,95,101,101,109,99,98,111,106,108,112,103,112,96,113,102,100,101,101,105,104,83,104,100,102,100,99,99,110,101,94,97,94,90,103,107,101,104,110,102,110,101,104,107,107,99,94,86,100,103,105,103,102,114,101,104,94,99,101,108,94,111,101,100,93,103,105,111,102,100,112,109,91,119,83,104,102,115,113,90,111,113,105,90,100,97,96,87,112,107,105,106,103,113,99,106,101,106,112,113,108,107,102,104,101,99,105,100,110,114,110,101,109,110,105,106,95,93,95,101,103,108,109,107,92,113,107,91,103,102,101,90,102,93,91,97,98,93,106,97,103,113,100,109,107,104,107,112,101,105,106,106,104,111,105,92,112,110,108,116,109,112,99,105,115,109,114,116,102,109,98,109,87,100,99,96,99,109,94,102,103,118,102,88,93,98,97,98,106,106,97,108,100,107,102,103,112,95,109,113,122,101,94,103,106,112,103,98,103,98,105,99,102,101,100,106,104,98,105,93,101,104,112,107,107,103,103,94,108,104,96,109,92,127,114,109,100,104,105,100,107,109,103,87,104,110,109,101,103,109,109,94,95,104,107,104,106,106,100,108,113,103,96,94,98,92,103,94,117,98,98,107,101,98,91,103,117,96,113,104,104,102,101,104,106,84,94,105,102,111,100,113,103,94,120,101,93,101,120,95,107,96,101,104,95,113,104,108,99,107,67,102,103,86,99,106,103,113,113,112,106,109,111,104,85,109,100,87,97,98,93,98,113,95,99,107,102,105,109,109,105,99,102,99,94,102,109,111,107,105,98,113,107,97,99,97,99,100,95,106,108,107,111,103,99,91,93,103,98,87,115,103,103,102,109,99,96,112,102,106,104,95,117,105,104,100,112,99,103,93,106,104,100,94,106,93,105,94,102,97,109,95,104,113,104,91,102,98,103,111,85,97,113,105,105,106,105,111,99,102,94,94,99,99,108,108,108,100,105,103,97,99,103,112,110,109,107,95,106,107,102,92,111,97,99,90,111,106,111,103,93,101,105,98,112,118,100,95,105,102,104,100,95,112,116,104,91,111,111,112,93,103,101,109,94,106,109,102,98,95,105,102,112,104,96,113,103,85,103,136,89,99,109,106,105,97,85,91,95,83,130,112,105,110,98,98,101,104,95,107,94,96,94,98,108,106,110,97,95,92,96,109,110,108,109,102,118,103,111,117,96,107,102,102,100,95,89,93,93,104,102,97,103,101,111,111,109,113,99,122,112,96,92,97,98,102,100,80,101,76,104,109,104,110,101,107,109,75,103,93,108,97,109,94,104,91,94,117,110,89,71,99,107,105,96,101,105,96,114,111,107,102,102,104,98,99,101,105,105,102,111,106,105,104,106,100,106,109,105,96,103,86,105,115,86,96,92,110,112,99,112,95,100,104,104,116,107,98,104,95,104,114,120,99,113,112,107,108,111,123,90,103,100,88,93,108,110,94,103,99,118,112,97,97,99,113,106,96,99,99,109,94,106,109,109,100,94,102,102,93,102,109,93,102,95,107,111,108,107,93,101,109,101,106,106,103,90,102,104,95,92,103,110,104,95,117,98,106,97,104,113,103,96,81,97,100,109,102,105,105,106,93,80,116,106,103,96,99,119,103,104,102,110,91,100,104,97,82,92,110,99,98,99,100,95,98,108,96,108,111,113,108,107,100,106,108,105,96,99,101,102,120,99,101,93,99,113,103,95,105,103,108,105,108,102,103,100,96,107,100,95,99,101,97,95,99,106,104,104,111,112,106,104,99,106,104,97,100,106,110,95,92,100,102,103,108,106,98,105,95,113,104,104,102,102,100,109,99,98,84,106,108,102,102,104,102,105,107,105,104,98,97,103,109,87,108,108,107,97,100,105,103,101,101,113,97,99,97,102,95,102,106,112,94,106,98,103,115,101,96,106,95,117,120,99,106,104,90,90,95,84,103,88,107,105,95,107,102,104,106,101,102,95,112,111,109,114,94,101,114,100,94,103,108,101,94,101,99,95,114,106,103,105,99,104,96,96,97,89,103,97,100,98,98,85,98,98,101,108,104,88,95,102,113,112,97,109,83,107,91,108,79,104,97,99,107,91,98,105,103,106,98,96,97,108,103,119,99,105,110,101,118,96,100,107,109,106,115,114,100,109,103,99,109,106,96,104,109,110,108,103,104,105,107,93,98,98,102,111,109,96,103,102,105,100,98,100,96,87,88,109,109,90,102,105,99,88,111,108,103,108,98,97,113,107,99,112,107,105,95,99,113,104,111,100,98,104,100,96,95,112,112,94,97,116,100,100,103,100,110,108,107,96,108,103,100,81,95,108,110,96,115,105,107,107,107,106,98,109,109,109,97,120,106,109,100,117,93,107,95,109,108,106,104,110,104,111,102,100,97,98,100,110,91,101,98,115,100,107,102,95,96,96,98,97,101,121,109,93,98,105,96,119,102,81,90,106,105,85,109,95,100,102,109,102,98,87,103,108,97,130,110,106,104,95,100,97,97,102,103,104,104,105,106,112,99,99,99,100,108,84,106,99,106,101,105,91,105,101,96,104,89,115,106,102,103,92,106,138,101,102,96,105,101,112,88,93,96,104,91,109,97,95,101,91,101,110,108,105,99,97,105,101,96,118,111,96,90,100,107,108,105,107,105,100,117,94,109,96,101,96,97,117,96,102,110,101,89,103,99,94,101,95,101,100,103,99,103,109,105,102,108,109,100,109,100,131,109,110,106,93,93,105,109,99,106,64,110,112,99,94,117,107,104,104,105,98,113,95,98,103,100,108,117,107,100,95,107,101,117,102,84,100,96,98,117,98,96,92,110,100,99,103,99,103,111,96,100,93,107,101,93,95,100,105,104,96,100,108,107,98,106,105,102,94,98,116,108,109,101,105,106,101,119,105,103,106,111,114,102,105,105,101,103,115,95,109,97,83,95,122,105,100,109,110,104,91,106,112,107,104,103,103,99,93,93,118,119,107,102,112,96,111,101,100,99,104,125,73,81,98,102,113,109,111,102,97,107,106,108,99,102,100,100,100,140,109,113,96,88,106,113,104,107,117,97,104,105,100,94,98,107,102,109,107,111,116,95,106,104,97,95,99,109,100,92,100,101,102,109,98,108,94,96,109,105,106,101,99,96,95,105,99,104,95,102,112,99,102,105,117,95,113,101,110,108,105,88,97,104,98,106,104,108,116,100,100,106,105,106,95,101,97,98,97,83,109,109,105,106,99,100,108,107,117,103,94,104,101,94,110,110,101,108,109,102,90,98,109,107,102,102,96,107,101,106,76,97,110,105,107,105,104,103,105,103,104,109,97,118,105,98,91,102,108,100,91,103,104,103,107,102,98,108,117,99,115,111,117,79,118,104,88,105,97,114,92,113,95,105,108,109,97,99,99,109,87,110,115,80,103,106,103,113,98,102,108,105,77,101,109,104,101,111,107,79,109,108,106,95,101,109,97,97,101,111,98,98,109,95,88,105,110,106,111,102,97,100,110,107,89,92,94,109,89,108,96,90,104,108,98,104,73,100,112,97,102,94,112,88,120,103,101,101,108,98,101,84, +650.12201,113,100,99,95,105,101,123,106,93,102,92,99,105,108,105,106,98,103,83,100,95,80,106,100,101,99,107,110,99,103,102,105,102,98,100,100,99,99,110,93,77,91,101,100,103,104,78,96,106,98,111,98,103,99,95,102,103,110,99,100,99,94,89,106,121,104,107,110,102,92,102,103,92,102,98,108,110,94,112,104,99,101,102,92,110,94,102,107,106,104,98,113,95,98,95,106,91,99,110,101,98,97,99,96,102,98,103,98,97,99,95,100,109,95,102,113,121,98,96,104,114,108,105,107,93,115,105,104,110,107,93,112,106,77,84,108,93,107,79,101,105,106,108,92,101,92,109,106,103,90,111,103,98,95,90,100,101,109,104,103,118,92,99,101,106,88,96,94,94,100,97,94,96,109,112,99,105,101,98,109,104,94,111,92,103,95,105,91,118,105,94,97,109,120,91,98,99,95,98,106,97,101,98,103,105,104,100,115,104,88,100,101,96,107,103,95,104,98,105,98,97,118,109,100,109,113,109,91,105,107,94,106,105,83,112,108,111,104,90,93,107,98,100,106,118,97,100,108,103,118,116,104,118,111,114,100,102,96,106,103,93,100,94,109,100,102,101,96,104,106,106,96,106,102,103,98,100,98,101,98,97,108,105,104,82,96,101,102,100,102,104,106,103,96,105,101,107,102,109,97,102,100,111,121,96,98,117,104,101,116,103,100,105,101,99,109,96,99,90,93,117,90,98,94,104,66,96,93,105,105,103,103,95,107,68,103,106,105,101,109,99,97,100,100,116,99,98,109,91,108,97,100,99,100,104,108,117,115,92,107,108,83,96,100,99,121,92,100,95,104,105,103,95,112,105,103,113,100,93,101,100,99,103,98,101,95,94,95,94,95,107,98,95,114,101,106,111,92,99,101,100,101,101,102,95,102,95,123,101,111,99,93,115,101,106,93,96,99,102,83,98,87,104,97,93,91,106,97,99,95,105,90,105,100,102,101,94,100,99,96,106,99,100,110,102,114,105,118,105,104,103,102,114,100,105,113,91,109,101,102,91,102,104,107,106,105,103,99,94,101,115,115,105,102,87,97,104,103,110,109,100,95,102,95,107,93,103,102,105,94,112,110,101,93,82,100,96,101,102,83,105,102,102,104,100,111,110,88,103,107,106,106,101,114,115,103,106,101,95,100,103,106,97,103,93,96,110,96,90,111,102,102,119,106,94,104,98,107,99,95,105,106,91,104,112,98,104,103,110,113,101,109,101,107,109,113,112,104,101,100,95,95,104,93,105,101,92,95,113,104,105,91,113,92,93,113,107,112,109,102,96,97,95,92,98,99,109,99,107,91,101,104,104,104,103,122,94,92,101,106,107,98,98,107,96,98,105,104,105,100,101,106,98,109,110,105,101,101,102,105,101,101,112,93,100,96,91,106,102,110,100,113,106,115,101,115,94,93,106,102,105,113,99,125,96,95,101,97,100,88,93,106,95,93,100,98,103,102,99,101,105,116,104,97,99,94,93,110,104,126,103,101,109,113,104,101,100,97,110,111,101,90,92,99,110,101,104,94,112,103,112,102,98,106,108,96,105,114,95,88,97,87,96,102,99,89,94,100,103,103,107,86,94,104,109,98,100,98,87,90,100,99,108,104,96,114,92,95,105,111,97,101,85,100,105,115,98,101,106,98,109,105,100,95,101,95,107,99,98,105,97,123,89,101,109,107,105,105,103,72,99,101,100,106,85,111,96,92,101,84,98,100,108,92,103,114,104,100,100,101,93,106,117,106,101,101,120,109,95,106,106,108,100,107,94,109,97,113,104,108,94,94,93,114,109,88,102,109,104,108,97,114,97,99,105,102,108,104,117,98,101,115,93,78,98,106,100,100,100,95,99,100,104,118,102,103,104,109,99,98,97,89,99,109,88,93,108,94,89,101,97,97,101,101,103,94,77,104,108,102,103,87,96,130,96,94,97,97,106,102,110,102,99,110,83,96,98,98,84,93,102,101,105,101,106,95,100,101,101,99,99,106,72,104,105,103,95,94,102,105,107,104,104,101,103,100,109,123,99,100,102,99,93,99,98,104,99,97,86,97,102,102,91,111,108,105,98,114,99,106,110,100,90,91,106,99,93,94,111,72,117,102,97,116,118,102,96,96,109,112,101,105,101,101,108,98,101,113,90,113,102,96,104,90,105,98,105,93,107,106,103,104,106,106,112,92,98,104,99,98,98,113,105,102,90,98,110,113,104,108,109,104,106,100,99,103,120,104,99,109,105,101,96,104,107,107,100,114,96,103,100,104,95,112,87,105,107,106,97,100,108,109,91,99,106,116,111,113,110,113,109,108,104,99,117,103,104,115,119,111,101,98,114,100,108,97,107,114,115,110,111,110,109,100,92,114,113,99,104,110,104,105,100,99,105,94,108,92,96,100,86,101,101,114,100,104,108,115,98,109,101,95,99,106,106,108,110,90,103,107,113,102,109,99,108,103,99,96,113,110,102,107,97,103,93,100,100,91,105,94,100,112,110,96,96,92,101,100,91,115,91,99,116,95,109,102,102,102,101,96,109,119,112,95,102,110,104,111,105,105,89,110,103,101,106,104,110,99,106,98,99,97,114,102,96,88,106,86,102,104,96,108,87,84,120,100,107,108,109,101,100,103,103,117,104,95,95,96,110,92,102,104,96,99,106,112,100,104,104,99,101,95,109,106,91,100,94,94,98,97,87,104,113,115,104,107,111,98,109,98,91,104,98,113,113,103,99,110,105,109,103,101,103,103,99,100,112,112,109,99,81,113,104,107,99,101,118,108,102,108,105,98,118,104,99,96,122,105,93,112,100,95,113,80,96,94,110,109,97,103,94,98,102,108,106,104,97,106,105,110,99,105,101,107,109,99,110,95,103,109,100,101,103,98,103,102,94,109,105,99,111,99,102,109,111,106,106,106,110,107,95,96,101,128,111,107,106,124,100,91,95,98,104,101,109,110,99,103,99,104,103,99,104,114,115,97,112,100,106,98,105,104,106,98,115,105,97,109,103,100,90,112,110,100,104,97,99,109,103,101,109,104,100,102,92,96,102,86,108,97,105,112,82,99,103,103,98,106,100,94,101,106,91,102,101,98,106,89,96,99,96,97,112,104,104,97,98,102,103,95,100,92,100,95,102,104,96,103,103,103,110,96,89,99,97,93,99,106,98,88,87,105,101,91,110,103,104,113,100,104,95,101,104,100,101,93,104,104,105,96,92,120,117,103,95,103,105,98,109,100,98,95,99,94,109,107,97,103,112,118,100,91,108,102,109,116,99,95,99,93,108,103,98,86,103,109,98,71,102,106,94,109,98,88,101,117,110,93,107,106,112,101,105,104,106,104,100,104,117,87,110,100,97,107,99,103,107,106,106,115,98,95,115,114,99,91,101,94,107,106,104,94,109,96,113,110,136,107,94,110,79,115,103,100,105,115,103,99,109,98,102,97,105,104,107,74,100,102,95,102,113,104,92,123,104,117,97,98,100,88,102,102,113,107,115,106,97,103,105,107,95,96,114,95,100,101,102,101,98,118,78,105,95,108,97,105,100,107,106,101,94,101,104,102,93,84,109,87,104,95,108,98,103,104,110,91,110,106,103,107,104,110,110,107,108,102,108,103,99,104,106,97,84,98,116,116,108,98,90,108,102,96,109,108,97,99,107,100,94,104,106,101,106,107,113,100,100,109,103,101,106,112,98,102,91,103,100,102,107,99,97,103,105,96,86,100,76,108,96,96,97,103,94,104,98,117,94,100,99,106,102,106,96,108,103,101,113,112,95,101,103,91,109,118,109,101,99,95,108,95,115,94,114,135,94,102,106,98,109,117,105,105,94,100,103,101,116,106,97,108,104,80,99,121,98,104,105,104,105,113,101,104,104,105,98,108,98,107,106,107,99,96,116,104,100,102,105,98,107,103,106,104,91,108,94,105,107,110,99,103,112,94,105,110,102,108,101,107,109,94,98,106,99,104,113,101,98,109,103,102,113,94,98,107,106,108,102,102,111,107,110,108,116,95,105,108,99,102,104,99,103,108,108,106,108,101,106,106,91,103,101,103,104,102,113,106,93,96,103,136,111,105,108,103,116,107,121,101,99,97,109,105,100,115,96,104,101,104,98,95,122,93,97,103,88,111,102,113,108,84,100,95,124,117,102,114,89,103,102,101,106,94,99,93,76,109,100,111,98,105,107,94,98,105,102,108,99,109,102,88,104,113,104,84,105,113,113,98,123,103,97,102,100,97,96,115,94,95,107,114,96,103,101,103,90,113,100,101,98,93,113,100,108,112,106,112,103,104,97,109,113,101,108,110,110,94,105,98,106,96,102,109,107,110,99,96,107,106,123,93,107,102,105,102,102,97,117,104,90,102,102,90,102,103,107,85,91,85,106,107,111,111,101,99,101,99,92,105,95,110,98,103,100,107,106,109,100,104,112,100,93,109,109,103,102,101,103,103,104,100,88,93,123,103,105,108,102,93,93,83,97,100,99,113,68,112,102,101,99,95,96,101,104,100,96,88,106,101,83,101,95,111,102,101,103,102,88,100,104,103,118,106,102,91,102,99,104,99,107,102,100,113,90,125,100,110,110,111,111,108,103,105,113,100,109,98,101,98,101,118,84,106,100,109,101,95,99,79,109,100,110,101,105,101,95,98,102,137,103,109,94,102,101,96,112,97,101,87,94,104,90,106,92,108,107,98,104,103,90,109,99,101,109,96,100,86,112,95,117,79,97,100,110,111,95,91,110,117,97,85,105,106,99,95,96,103,104,97,106,115,113,97,97,104,92,96,80,104,104,106,110,98,98,91,97,100,95,103,105,89,112,98,106,89,108,93,98,105,99,91,112,95,101,83,91,104,101,99,106,84, +650.26318,91,95,98,100,99,107,115,94,108,103,105,103,96,92,85,104,86,91,104,97,108,119,95,114,63,104,118,103,106,98,106,99,111,106,95,94,109,98,93,110,73,107,81,92,116,103,116,105,95,125,105,112,109,88,98,91,114,104,102,81,99,83,97,91,115,102,100,112,107,111,106,113,86,105,96,109,92,99,80,100,87,109,104,118,106,102,99,110,99,105,105,89,107,102,109,93,109,94,102,105,93,101,106,102,111,96,102,103,92,95,113,102,110,103,113,103,116,100,110,95,110,104,106,107,107,102,109,100,105,108,87,111,99,108,103,103,108,94,92,114,96,107,102,96,96,96,84,99,96,109,116,102,105,81,110,124,98,92,110,100,97,114,97,100,99,116,99,101,105,84,107,94,100,104,98,124,107,91,109,92,91,104,102,99,108,103,93,90,100,103,98,111,109,109,91,105,122,105,103,99,103,105,97,108,96,98,100,105,111,108,98,106,112,96,99,96,117,103,89,102,95,106,91,105,111,111,95,93,113,100,94,75,93,108,94,111,99,117,105,107,109,107,102,86,92,99,99,97,112,97,93,97,102,93,91,102,98,95,98,96,107,103,91,96,100,103,116,95,99,106,95,102,100,93,109,95,100,108,121,102,97,96,99,105,100,98,95,109,99,110,102,107,108,100,100,122,96,97,95,104,97,99,98,117,94,111,109,109,106,114,97,109,113,103,126,93,100,105,95,97,103,103,104,98,117,96,103,94,104,108,109,101,86,99,116,107,114,96,99,109,118,108,105,95,104,116,105,104,100,91,100,103,100,103,99,113,107,104,100,99,101,115,94,99,97,108,87,106,93,105,99,106,105,105,113,101,111,106,96,108,102,101,96,101,111,106,97,96,99,100,106,92,98,104,103,100,90,110,103,110,104,104,91,86,103,103,93,105,96,106,96,92,103,108,103,78,100,99,99,95,101,97,94,107,93,91,101,102,100,113,83,96,110,104,91,106,100,102,98,106,91,97,117,122,96,97,95,100,101,110,104,106,110,110,107,98,128,97,110,104,113,105,94,109,92,99,91,97,100,99,108,102,103,97,105,101,105,107,95,97,89,101,94,104,93,104,97,113,94,102,102,103,106,104,94,103,97,108,71,100,110,92,104,104,101,110,75,96,110,98,110,106,107,114,94,108,79,91,96,96,115,93,104,112,105,95,85,103,103,99,107,97,101,100,108,91,117,93,103,107,100,101,87,100,100,104,99,69,95,102,117,107,100,113,96,108,111,96,93,95,107,107,104,95,99,107,116,121,101,104,99,98,100,106,99,113,101,92,97,108,93,94,104,95,105,101,96,101,103,89,103,111,110,99,102,91,109,94,106,100,107,100,109,101,111,99,101,109,100,100,111,105,102,116,111,103,101,100,108,106,103,99,106,107,107,96,100,95,106,106,99,104,100,105,90,109,101,94,86,115,96,98,99,108,92,98,104,101,100,101,103,99,94,104,107,103,104,103,103,92,103,110,103,100,96,98,106,104,95,104,107,93,104,97,92,96,100,95,103,101,118,101,95,101,98,102,108,103,108,86,119,102,86,112,92,102,104,110,100,105,88,88,108,97,104,97,111,77,111,100,108,95,108,82,97,97,103,108,89,93,106,100,99,105,97,88,100,113,100,98,88,103,85,98,94,96,121,102,113,106,90,99,97,102,105,100,101,104,102,110,97,100,99,96,111,106,100,110,101,109,95,109,105,109,97,94,112,114,105,94,114,110,101,97,98,99,98,108,103,100,108,93,105,105,115,112,98,107,97,114,107,102,101,109,102,112,98,101,99,98,100,113,105,103,102,108,91,108,104,106,102,97,97,89,103,103,95,101,106,109,104,106,93,109,111,99,105,113,111,111,111,101,104,90,100,102,95,94,109,102,98,102,92,100,109,103,106,101,104,105,103,87,103,100,96,98,96,99,97,93,100,110,103,106,108,105,99,98,122,120,94,105,94,109,97,98,105,108,87,108,95,100,100,98,112,102,100,103,110,98,100,111,107,102,101,103,96,110,103,103,113,103,122,104,96,101,91,104,98,88,93,95,104,117,97,100,93,101,90,116,105,100,92,101,103,97,94,102,103,108,99,96,102,100,100,112,120,96,100,103,104,110,98,100,104,99,103,108,108,105,101,105,100,105,108,110,115,105,99,114,114,106,109,95,99,100,94,99,114,103,103,95,94,111,117,94,106,103,96,102,98,95,116,107,87,100,91,91,98,106,89,103,100,101,99,104,101,102,104,109,96,101,102,106,117,105,109,99,91,102,108,108,95,103,109,94,106,95,104,104,111,108,111,94,96,101,93,109,109,97,89,108,92,100,108,101,113,105,111,105,100,98,91,107,103,106,98,107,119,99,88,109,104,105,101,97,99,105,101,94,94,119,84,93,122,101,105,96,112,108,93,118,97,96,101,98,109,111,73,97,96,102,93,100,104,98,102,101,72,102,104,108,98,79,98,90,99,98,103,104,99,106,110,112,102,106,93,98,104,104,96,106,101,97,117,102,102,99,99,99,104,98,99,112,112,89,112,100,113,106,111,107,99,91,106,100,91,98,106,115,108,96,95,100,98,102,96,112,104,91,101,104,103,104,105,114,103,96,98,116,110,96,116,93,108,104,91,108,97,117,96,108,108,102,95,86,110,88,104,100,109,91,100,98,109,106,103,111,106,105,104,102,103,102,96,105,108,90,113,100,104,97,106,108,103,98,102,108,101,102,105,110,106,115,99,101,109,114,108,107,123,110,101,111,102,97,96,95,99,98,97,108,92,118,108,104,101,108,106,105,104,104,101,94,109,105,101,106,102,102,95,108,102,105,103,106,91,113,101,110,100,95,109,105,103,106,106,100,108,110,106,96,90,111,104,115,118,101,105,103,81,105,97,96,117,101,103,95,105,99,112,104,99,95,107,103,94,108,98,105,105,100,110,101,95,100,103,106,99,107,82,133,112,105,112,113,104,93,94,98,99,112,98,98,116,98,113,110,100,109,98,92,94,104,112,95,103,92,97,101,100,108,112,95,107,117,109,107,105,105,104,117,92,112,108,116,99,120,94,105,99,101,88,102,103,100,119,118,103,110,95,98,88,105,98,98,112,91,94,103,107,111,90,95,102,102,102,99,104,100,113,109,109,110,103,111,99,101,108,100,103,102,95,99,105,112,107,91,110,104,104,99,93,105,108,93,93,105,99,111,103,106,107,107,106,102,99,105,112,94,74,106,103,95,118,93,92,107,91,102,97,104,104,100,104,104,104,103,98,118,103,91,100,101,103,99,113,104,104,99,104,103,95,99,96,98,107,94,107,111,104,104,110,104,96,116,113,121,94,104,100,112,108,102,98,113,103,98,98,104,103,99,105,100,91,97,102,100,100,92,100,104,103,118,109,100,120,94,96,99,100,105,113,89,102,95,91,92,113,62,97,102,99,97,97,98,131,100,102,101,97,113,101,97,108,108,106,99,111,101,112,111,111,99,96,100,107,94,97,88,98,104,114,122,106,100,107,97,68,106,110,101,93,100,106,101,96,97,104,102,115,101,95,91,108,105,112,100,107,100,93,115,104,90,102,116,94,110,103,94,91,108,106,103,94,89,103,101,110,105,95,106,121,100,98,92,89,113,121,110,103,103,97,116,104,105,98,109,109,103,108,105,109,111,89,103,105,94,105,102,97,103,104,103,111,106,95,94,104,98,102,112,108,105,103,95,105,105,110,102,113,98,104,102,98,98,108,93,110,105,68,102,105,105,104,90,105,94,117,103,106,104,96,90,99,101,101,87,99,104,117,96,104,91,90,106,101,121,112,108,98,104,98,92,96,98,104,99,104,103,98,107,101,92,100,87,103,101,96,104,92,95,109,92,101,87,109,104,90,115,104,89,102,87,92,99,111,109,103,105,88,104,104,107,89,101,106,100,111,107,100,103,100,109,108,113,100,105,105,101,106,97,107,92,100,101,102,120,94,100,113,104,97,83,110,91,105,100,104,99,104,97,102,103,100,120,105,101,100,101,100,92,137,103,105,125,101,101,110,100,99,106,104,107,107,105,100,105,98,91,110,100,102,113,108,109,103,96,99,98,103,95,101,106,102,101,100,105,101,109,105,109,99,115,99,105,113,105,106,105,101,91,109,103,104,100,108,105,101,95,96,108,100,100,103,101,112,91,98,94,115,112,93,94,96,98,110,102,95,102,94,97,101,102,100,101,104,103,109,113,99,109,96,105,108,100,106,104,104,99,99,99,116,108,109,101,100,86,89,103,96,105,102,111,101,93,96,99,103,109,104,98,111,101,101,103,113,104,102,102,116,84,106,98,100,105,102,105,111,94,96,113,112,100,90,99,102,104,101,112,102,109,101,110,105,124,109,100,99,124,94,94,106,104,102,82,109,101,93,101,106,117,99,101,112,101,105,89,99,80,98,104,109,102,95,105,97,104,110,104,115,98,111,100,89,102,105,95,107,115,98,96,94,96,101,96,102,117,104,105,112,99,107,98,91,111,114,117,109,99,109,117,99,104,103,102,115,103,92,97,94,113,103,90,107,109,117,94,98,107,103,87,108,106,108,106,104,101,105,91,109,116,98,102,109,105,108,106,100,115,104,109,109,96,99,104,113,100,102,101,118,96,107,102,96,99,91,95,95,97,106,108,104,101,103,102,105,108,113,105,98,109,105,95,102,97,105,106,109,97,100,115,111,115,84,92,116,101,106,99,108,97,108,103,89,94,91,103,104,108,87,112,92,106,100,117,109,88,104,96,110,95,104,93,122,99,89,102,94,105,112,99,97,88,106,113,114,95,80,105,114,104,119,106,100,89,83,98,105,102,102,102,101,71,94,117,102,95,102,108,107,90,89,108,108,103,83,128,97,99, +650.40442,95,101,89,98,95,110,91,114,97,111,108,114,102,109,107,103,110,106,102,105,103,113,96,80,107,100,109,96,111,103,110,113,103,109,113,90,105,94,115,99,91,100,106,105,109,104,90,102,96,116,98,99,102,105,100,92,101,94,108,99,112,110,95,75,100,107,96,104,112,91,122,108,103,89,94,99,102,105,103,111,82,100,96,102,99,94,107,106,101,97,116,114,106,113,114,103,95,99,97,101,88,94,112,89,96,86,96,124,112,102,80,83,109,102,105,105,108,98,107,110,99,105,100,126,105,109,133,100,107,100,99,107,92,107,67,104,109,107,98,107,90,117,103,86,80,101,100,103,95,101,109,101,79,90,99,104,114,104,92,109,101,93,98,104,103,98,102,97,109,98,112,100,105,104,113,96,111,106,92,112,111,88,108,104,107,99,106,96,93,108,101,103,91,101,98,95,98,110,98,103,110,101,104,101,102,101,130,106,128,101,109,118,95,120,115,106,107,104,99,103,99,104,92,100,94,110,106,85,112,101,104,92,109,121,103,102,109,119,105,91,99,100,104,116,107,107,112,95,109,97,101,96,109,110,98,108,107,99,95,107,99,114,98,100,90,107,96,87,92,107,91,100,102,99,102,88,91,99,104,97,108,104,105,100,103,106,101,106,108,104,101,108,105,106,109,100,98,103,107,107,104,110,101,99,90,102,98,112,103,119,93,101,113,106,105,93,116,86,105,101,98,107,100,106,113,101,108,89,106,93,109,106,102,121,101,113,130,106,106,105,109,102,118,99,98,107,104,110,112,106,102,103,109,108,100,83,112,113,111,109,101,90,98,107,88,100,95,115,106,117,100,107,110,101,104,107,103,112,97,107,113,110,124,93,105,102,99,99,116,100,100,106,91,112,94,98,112,113,99,85,103,109,108,104,98,98,111,112,115,103,91,105,100,103,107,98,97,96,96,89,111,103,100,111,105,104,105,99,100,110,105,99,107,110,108,110,107,102,102,86,110,99,103,106,108,96,99,106,115,106,112,115,106,118,111,98,104,104,103,96,103,95,100,109,107,110,105,114,106,89,115,107,102,104,107,100,106,116,112,101,104,109,100,114,104,98,115,105,105,100,90,108,104,103,109,101,95,109,99,100,116,99,108,112,100,105,94,106,103,103,104,96,95,99,108,107,104,100,116,104,111,99,100,123,122,99,108,106,118,86,100,106,102,98,108,110,103,104,109,109,102,108,107,104,99,126,100,98,108,94,103,114,108,111,107,96,111,98,101,105,95,111,100,96,112,96,94,102,100,111,98,115,103,113,102,93,109,98,107,97,107,96,108,96,109,106,100,109,105,110,113,107,100,97,113,98,114,100,102,107,85,100,107,112,96,98,103,94,106,118,101,102,100,106,108,103,109,102,102,102,88,106,101,100,109,113,99,112,101,99,103,103,98,112,110,121,93,117,103,112,107,108,102,113,109,101,100,101,99,119,89,103,106,110,107,112,108,106,106,93,104,111,115,106,103,104,104,99,86,109,102,106,101,105,96,104,104,113,108,104,106,120,104,102,101,104,83,117,93,101,102,103,93,111,108,104,104,102,90,84,90,103,99,99,104,100,109,106,94,113,102,102,70,100,105,100,122,100,104,113,96,95,98,105,94,93,92,107,87,106,102,110,107,101,107,114,97,98,118,113,104,93,130,103,100,101,108,104,103,111,107,95,87,99,98,110,103,106,103,103,96,120,98,98,97,104,100,104,114,93,104,102,105,94,108,104,112,119,84,87,107,112,102,100,99,96,104,96,99,112,112,117,106,97,104,97,114,103,83,106,101,99,94,111,102,98,98,100,102,105,109,104,118,97,107,113,107,105,96,100,96,103,100,108,106,107,108,110,98,104,103,97,105,107,107,109,102,113,99,108,96,101,113,89,104,108,117,104,87,93,101,90,98,98,101,104,109,115,97,102,100,109,104,109,109,96,101,111,95,116,117,102,99,103,100,97,101,95,102,105,95,104,104,110,105,111,100,109,101,101,111,104,99,98,89,100,101,111,115,104,103,108,114,103,98,101,102,105,98,109,111,99,106,105,113,103,108,92,95,98,104,94,119,108,94,98,99,95,106,105,85,97,111,102,95,97,101,97,99,110,99,97,104,111,105,85,99,107,100,90,99,101,114,105,104,109,106,111,93,101,115,119,89,117,104,111,104,106,113,98,106,98,105,107,108,99,109,98,106,96,98,111,101,103,111,99,94,101,109,112,92,101,128,111,90,110,109,109,99,104,122,97,98,100,109,108,107,97,109,92,108,106,121,104,90,110,112,106,106,106,106,94,108,105,93,108,97,110,102,114,137,104,98,105,108,97,85,110,100,110,96,121,101,109,104,93,102,102,93,108,100,105,108,106,108,111,107,85,117,117,102,108,105,103,97,108,91,103,94,98,83,120,99,108,96,110,97,98,91,93,94,93,98,113,108,97,92,101,119,106,108,92,102,96,108,90,95,117,110,105,108,104,103,112,92,111,95,117,109,105,100,108,104,94,108,96,102,112,99,102,98,102,105,107,111,96,106,108,103,106,101,114,103,94,111,106,105,112,102,102,117,104,98,94,91,108,99,115,111,104,106,109,99,110,111,102,98,104,104,111,113,94,116,84,100,107,106,106,108,103,96,104,100,116,99,104,112,119,109,91,109,115,106,106,105,109,109,106,112,109,104,115,99,104,66,103,108,101,107,111,101,89,110,95,103,111,102,112,102,98,99,105,99,110,101,84,117,110,108,101,98,114,106,98,100,107,103,103,106,105,112,123,97,117,98,108,101,103,113,101,99,102,109,103,121,88,106,75,99,89,104,109,120,97,98,99,99,97,99,113,108,109,102,113,110,104,116,113,109,108,93,99,98,105,105,104,103,94,119,117,113,107,101,103,105,110,104,120,102,93,101,110,102,107,112,110,105,100,113,100,103,101,99,110,99,99,107,113,109,96,102,112,112,113,117,101,99,111,94,87,109,117,93,106,104,102,107,111,108,99,84,95,95,107,113,101,115,110,103,109,100,100,104,101,112,105,95,113,103,104,92,106,112,95,100,107,122,100,99,103,102,108,98,102,99,99,112,103,106,112,102,96,87,124,110,99,111,106,99,98,103,119,101,110,102,102,108,113,112,93,91,90,121,97,100,99,113,92,108,95,104,98,105,112,109,105,97,117,105,100,105,104,108,94,118,102,98,100,106,109,101,103,95,112,101,94,106,95,107,102,119,111,109,113,103,102,99,123,103,103,102,120,114,113,104,107,109,97,127,96,106,102,103,107,117,97,101,110,116,96,102,98,112,117,100,116,103,101,102,103,102,101,105,111,100,94,106,106,123,109,110,107,105,103,95,110,108,112,99,103,111,98,94,109,103,104,109,113,106,109,98,111,110,110,104,110,98,98,99,103,100,104,104,107,111,104,110,104,101,94,103,100,100,101,97,106,119,100,111,106,101,112,102,114,106,96,101,95,100,99,99,107,104,110,112,108,135,107,105,107,86,102,113,124,102,99,107,103,105,113,105,106,114,104,108,105,95,107,126,112,108,92,106,105,107,104,108,103,106,102,108,112,105,120,103,99,106,103,105,96,106,108,104,101,103,102,126,99,110,109,103,116,111,103,113,107,116,106,102,109,100,103,104,117,105,102,102,98,98,108,110,115,102,109,108,102,100,109,113,99,102,107,111,122,103,111,116,113,103,102,87,108,103,97,101,104,108,100,113,103,114,98,99,96,111,111,110,101,105,103,107,88,113,105,103,87,105,104,113,106,96,92,113,105,97,103,105,108,98,98,128,111,108,110,110,107,99,98,110,68,99,122,108,101,114,109,104,103,128,104,103,98,95,120,109,107,112,113,109,106,103,102,111,93,99,98,109,81,103,109,98,102,113,109,99,109,95,110,107,110,89,108,99,90,114,120,107,105,99,106,108,103,98,90,105,111,102,107,115,110,110,106,98,99,109,104,104,108,103,112,106,102,100,96,109,80,106,102,111,100,106,95,102,106,97,104,106,103,101,100,100,102,106,115,116,103,99,112,100,90,109,98,94,99,96,106,112,102,101,95,101,108,106,103,70,113,112,106,91,103,106,103,111,108,103,103,93,99,95,99,100,95,95,113,113,99,107,104,98,101,100,113,99,97,103,99,107,102,106,105,112,99,100,105,103,111,99,111,111,121,115,98,115,92,103,95,98,107,104,109,106,97,109,103,107,112,105,121,96,105,94,106,99,104,97,114,98,104,105,111,93,95,117,99,91,103,103,105,93,113,100,80,102,105,105,101,103,119,132,115,104,87,110,100,102,105,117,105,99,107,113,117,111,97,113,113,102,88,107,112,108,98,102,102,115,98,115,99,101,102,104,99,109,109,96,83,102,99,107,94,93,98,109,118,93,109,98,67,105,107,105,98,109,95,108,92,101,91,106,105,121,106,101,103,102,113,103,102,116,95,91,102,117,103,95,104,99,116,107,102,105,100,102,116,103,99,109,108,97,95,96,95,86,107,100,124,120,109,89,105,109,101,95,119,99,88,117,104,105,93,103,101,109,98,116,102,116,112,103,108,90,101,101,101,112,109,106,103,110,111,101,104,99,106,109,109,109,113,103,113,112,100,105,91,104,106,103,131,112,103,103,108,114,107,94,102,110,90,102,107,104,108,106,107,108,93,86,103,106,96,114,99,113,112,100,97,107,90,98,103,102,111,87,106,101,104,102,106,87,106,108,85,103,108,110,89,100,113,115,115,113,108,97,87,98,97,103,95,107,94,102,99,111,113,102,103,111,95,103,104,117,104,69,107,111,96,102,91,90,106,104,107,103,111,100,100,107,107,109,99,98,90,105,94,116,89,108,115,98,106,103,105,100,104,121,91,113,99,117,108, +650.54559,107,95,100,101,103,100,103,102,113,99,105,107,115,110,107,100,112,96,94,105,112,100,100,111,106,107,104,105,90,103,113,98,91,96,101,108,106,93,114,99,92,103,92,94,108,97,92,105,99,109,100,118,110,103,91,102,101,98,110,102,106,109,108,110,110,105,106,111,104,103,112,105,99,104,90,99,105,105,97,110,77,113,102,97,103,102,106,103,110,102,111,98,103,99,101,93,98,103,93,104,124,86,108,101,95,98,93,117,103,114,105,95,103,101,102,96,99,104,108,87,94,103,107,99,103,108,115,114,109,109,101,128,97,78,105,118,103,100,106,98,94,109,97,91,113,98,107,99,102,101,110,104,108,95,103,110,96,104,107,103,103,99,106,110,97,94,94,99,93,81,108,103,103,107,108,106,103,93,112,100,101,103,95,99,97,115,104,101,113,94,113,108,103,100,107,95,96,120,111,103,110,98,99,91,99,110,112,101,115,105,114,122,104,105,93,104,100,111,100,100,104,108,107,97,99,107,109,102,103,94,125,101,99,133,114,112,111,106,116,97,99,91,97,100,103,101,107,104,91,105,101,94,94,109,90,91,95,110,114,111,101,100,106,108,88,105,107,95,97,102,110,114,108,99,110,91,101,102,98,103,109,106,109,109,99,103,113,113,108,90,87,99,105,109,100,101,98,101,97,101,102,96,104,108,100,100,102,104,104,107,94,108,117,99,107,101,109,108,103,107,86,94,107,115,102,94,100,100,106,110,101,100,94,112,124,97,97,112,106,90,94,110,94,117,102,112,101,104,98,90,106,78,103,100,124,110,111,105,104,117,102,116,95,104,104,110,69,106,103,112,108,93,111,104,109,89,110,99,95,102,109,107,94,117,112,99,88,99,110,91,115,94,102,105,102,99,117,105,106,117,81,112,100,100,100,102,96,100,116,98,107,92,106,113,99,85,105,96,116,110,107,106,95,98,110,95,94,103,104,103,98,105,114,102,102,108,105,91,102,113,109,108,105,109,102,116,105,112,105,118,98,107,106,94,106,95,108,108,111,100,121,105,106,110,107,98,107,101,97,103,113,112,106,93,98,86,96,119,97,107,100,108,109,100,102,105,99,100,114,102,106,111,98,99,90,109,96,99,109,99,111,103,99,107,102,111,95,99,104,101,114,106,107,114,125,101,102,110,111,99,100,103,104,108,102,102,107,104,106,105,97,76,102,108,99,88,100,111,100,95,100,98,97,103,130,114,112,112,110,104,107,90,107,98,99,99,107,94,101,109,119,100,106,108,112,108,103,100,87,100,96,105,111,108,117,106,108,116,107,111,99,105,88,102,95,102,110,109,109,136,109,100,98,104,108,109,97,105,114,101,107,95,107,95,114,109,100,103,102,103,109,109,101,104,124,92,114,101,108,113,107,109,108,117,107,105,104,110,100,101,122,81,100,106,92,88,104,86,105,105,105,101,105,101,100,100,104,97,100,99,97,108,108,106,97,98,99,106,101,109,106,110,96,107,100,113,104,99,112,93,102,106,90,105,114,97,109,113,109,101,105,103,84,93,94,108,113,103,116,96,111,102,103,106,103,103,118,109,108,91,104,106,104,109,112,102,105,113,97,108,96,98,104,105,94,95,100,91,110,104,109,109,104,103,90,99,100,105,111,87,110,104,107,95,109,102,103,101,107,111,112,106,105,96,111,98,106,101,100,116,100,95,109,97,121,91,109,103,104,105,100,96,95,96,96,96,92,103,103,91,108,98,108,102,110,101,99,103,102,101,102,98,102,123,105,102,99,99,100,117,101,100,93,109,97,113,91,108,106,100,125,111,102,98,108,98,94,111,103,102,106,101,108,103,101,107,103,107,117,105,104,104,123,88,96,111,104,100,104,92,106,103,110,110,101,102,103,96,127,104,104,94,107,98,104,103,121,105,103,111,95,96,101,104,102,97,121,107,95,90,108,97,103,101,103,94,108,97,103,98,88,107,99,104,91,94,108,102,61,96,93,92,99,103,97,110,89,113,100,107,79,114,99,103,90,98,113,102,114,102,99,107,104,105,97,95,95,104,93,87,113,121,108,93,112,100,104,84,100,96,102,103,103,94,102,100,100,93,63,96,105,100,106,143,100,114,98,100,98,102,121,104,96,96,102,101,103,106,109,114,110,108,105,103,97,98,99,107,93,109,107,109,100,120,78,97,99,103,100,99,106,101,113,106,113,103,113,105,102,100,94,104,116,97,99,113,100,98,112,100,99,97,115,99,100,87,105,106,105,94,109,103,94,65,102,108,113,104,98,93,96,94,97,92,112,92,106,100,110,95,110,124,98,97,109,107,104,108,107,111,108,105,122,104,109,97,96,116,115,101,101,108,97,94,101,104,112,109,114,98,103,95,112,110,99,122,109,102,112,98,102,106,104,99,95,97,101,111,99,90,99,109,107,114,107,101,108,80,99,86,105,108,105,105,103,104,96,106,117,134,120,97,112,99,102,117,109,96,100,108,99,104,103,109,97,119,104,117,109,103,97,98,78,103,90,91,102,108,103,100,91,117,100,113,98,107,104,89,113,90,106,107,119,99,117,109,102,96,102,114,104,101,98,110,111,102,101,90,101,101,116,101,117,103,100,113,97,92,99,99,97,89,104,98,111,111,99,110,112,84,108,107,108,87,121,99,113,97,99,109,109,112,107,107,108,101,108,105,106,98,113,101,94,107,95,95,103,116,90,92,131,104,103,104,114,101,101,108,98,104,99,97,104,114,105,108,107,109,99,100,102,100,111,111,107,98,103,100,112,95,100,108,112,113,98,105,101,97,102,106,105,113,110,85,94,99,118,99,109,93,101,109,77,123,112,102,100,91,102,108,116,105,113,104,111,107,97,111,102,111,96,103,102,113,96,102,112,107,111,111,100,88,95,92,102,104,114,102,104,107,91,108,100,107,100,99,104,106,107,111,109,114,100,104,109,105,106,97,93,108,106,110,102,111,108,110,103,112,102,96,108,113,94,113,92,104,117,111,111,99,115,101,106,102,109,104,104,95,82,85,112,111,117,105,108,99,107,107,113,95,104,103,119,105,96,95,101,106,100,105,95,106,103,96,104,98,106,88,105,99,108,104,89,83,111,98,101,83,86,105,106,95,106,98,93,115,101,94,101,110,106,104,96,95,105,111,106,105,113,107,116,104,106,97,101,98,92,105,91,96,99,103,112,98,113,106,112,102,107,109,102,100,104,86,112,101,100,109,106,104,99,107,111,113,100,123,115,105,103,101,105,98,112,98,105,109,116,106,103,95,113,88,110,99,103,90,104,110,98,107,112,124,108,105,106,112,71,100,99,96,88,113,100,113,108,112,88,104,117,98,105,107,106,107,99,101,111,97,107,99,109,104,116,105,91,104,102,98,106,100,100,99,106,123,100,113,110,104,111,95,87,94,103,114,112,89,104,143,102,76,97,108,113,92,103,111,112,109,111,118,107,102,85,91,121,97,102,96,112,115,100,107,95,98,111,111,102,101,94,109,99,102,104,110,99,101,105,99,103,120,100,101,109,113,101,102,95,94,93,106,104,107,106,115,105,105,109,100,109,106,88,106,103,94,108,96,100,109,113,116,108,112,109,114,109,88,101,111,96,105,94,108,111,114,110,95,100,112,104,93,109,109,95,106,98,110,88,95,99,99,116,104,106,123,104,105,108,100,85,79,107,107,109,109,98,122,95,102,111,88,121,112,110,101,108,105,99,98,109,91,107,100,99,98,94,101,108,105,101,107,106,95,112,112,112,103,106,102,106,100,87,104,96,107,104,96,104,84,90,97,110,100,106,102,109,123,92,77,94,92,115,122,102,96,105,103,106,104,107,97,113,106,103,104,104,111,105,101,98,120,98,103,98,93,99,96,102,98,103,98,107,101,89,95,105,95,102,98,116,105,108,116,86,111,99,107,109,97,117,103,111,108,96,112,91,110,102,117,96,108,109,102,102,102,120,92,100,109,100,110,111,102,102,98,104,100,84,104,113,103,110,109,104,96,108,103,79,109,106,103,93,108,104,112,94,107,102,96,114,114,107,95,82,106,87,103,106,97,95,100,101,107,110,91,102,107,96,117,100,101,108,91,85,109,90,117,99,94,94,101,103,104,106,100,106,112,109,103,97,108,96,104,97,89,105,100,98,92,115,100,104,111,116,104,104,112,94,108,113,104,103,106,112,92,109,100,102,103,95,97,104,104,104,108,99,112,99,100,107,97,98,109,103,105,94,105,106,111,93,112,99,100,107,101,102,83,99,94,102,109,102,99,100,102,95,99,96,77,106,104,108,105,97,102,122,104,108,91,100,109,100,110,105,108,103,101,105,106,103,109,116,99,98,109,110,108,113,103,101,108,109,100,72,105,111,97,97,110,105,105,104,92,103,109,98,108,98,104,106,106,110,106,108,92,104,101,104,98,98,99,107,107,105,104,103,90,102,111,100,74,105,99,102,109,104,113,103,120,91,87,90,102,90,99,85,107,94,103,95,107,97,94,102,109,104,94,107,108,95,100,106,104,109,99,106,103,104,103,93,106,103,110,91,103,109,111,103,116,95,113,99,95,116,108,102,97,114,99,99,100,94,105,100,102,102,107,109,116,99,101,99,104,85,111,102,94,113,113,98,111,94,111,107,80,104,90,100,88,101,93,99,103,109,93,111,108,101,114,108,107,104,113,112,85,106,99,102,105,91,90,97,83,101,106,114,89,107,96,117,111,106,104,105,112,105,98,111,109,102,95,105,99,91,112,98,101,105,106,94,115,112,88,106,98,104,100,99,100,107,109,114,115,89,103,106,95,113,122,109,96,109,105,100,95,104,87,101,109,109,96,94,104,113,105,99,102,90,86,100,96,117,104,104,90,117,109,103,103,116,101, +650.68677,106,104,108,96,101,107,108,114,96,109,102,102,107,104,101,104,102,106,90,96,107,95,106,102,108,94,92,106,87,108,99,104,108,96,109,94,111,99,109,92,119,102,102,103,104,110,98,110,102,98,102,99,98,99,98,106,120,110,102,96,106,113,111,96,99,112,105,101,105,97,110,110,92,104,86,105,94,100,100,103,114,106,103,106,101,90,104,99,116,101,90,106,105,101,103,101,104,104,112,101,99,102,101,104,90,102,90,110,110,104,114,101,96,103,108,100,98,102,89,78,103,95,110,114,76,97,101,99,100,106,100,100,106,108,101,103,105,108,98,104,102,96,92,103,94,96,102,92,92,104,100,96,111,97,105,99,103,91,102,103,108,103,99,103,108,102,102,107,96,91,105,106,103,98,108,93,97,101,102,93,93,102,94,99,96,93,98,94,99,105,103,103,105,106,95,100,98,98,99,108,110,93,110,108,101,109,106,111,110,99,92,94,105,110,108,98,100,106,100,91,112,103,106,114,87,102,107,97,110,105,102,94,95,101,99,106,100,95,100,93,108,110,105,103,100,104,99,99,96,108,100,109,101,103,98,130,93,100,95,104,100,95,113,119,83,105,98,113,106,99,111,101,113,97,102,102,104,95,103,96,114,107,108,110,117,97,101,103,99,97,103,102,107,90,112,102,106,116,88,101,94,106,104,111,102,98,106,103,96,108,117,105,103,105,101,105,94,93,101,103,102,103,98,109,104,100,117,100,102,97,96,94,98,104,104,108,103,98,98,116,96,118,102,92,106,107,99,97,117,110,106,116,109,103,98,111,98,99,111,116,100,103,107,99,97,99,97,115,99,105,122,104,109,101,100,105,100,122,115,104,101,115,99,87,107,117,99,100,99,98,110,74,104,91,98,103,102,108,99,103,96,96,103,103,91,102,100,119,104,99,105,101,103,111,101,103,108,101,117,103,112,92,95,103,100,94,101,92,107,113,105,100,93,102,109,106,96,125,102,99,107,100,104,113,95,99,100,94,101,106,91,104,118,107,112,113,99,101,113,101,108,109,119,113,104,78,99,101,105,111,101,108,119,98,103,97,102,98,90,111,114,104,94,110,109,101,100,109,105,101,110,114,101,92,85,101,107,100,101,102,110,109,118,110,103,103,95,113,107,93,113,99,99,100,115,104,103,95,115,110,105,124,113,103,98,112,107,114,102,91,102,94,106,102,90,106,99,94,103,95,98,105,97,94,91,111,105,110,101,106,100,114,106,115,93,114,101,94,112,111,105,108,97,101,105,97,103,110,114,100,90,112,113,96,105,107,112,98,96,111,97,94,103,95,111,98,111,104,96,107,104,108,101,108,100,111,109,106,110,92,108,102,108,102,101,111,95,103,106,97,100,87,106,105,115,108,100,105,94,105,94,113,111,110,103,91,104,99,104,92,91,112,102,105,106,108,117,93,105,94,108,98,107,112,113,89,89,104,108,101,100,92,98,102,105,99,118,106,107,112,107,104,107,105,95,98,103,105,110,103,110,106,101,99,107,98,102,96,94,111,118,102,99,97,80,105,96,104,137,101,103,103,112,113,106,110,103,105,98,95,95,97,95,81,101,105,108,109,107,113,106,98,98,86,109,98,114,114,91,105,110,101,102,111,90,96,99,100,105,111,102,110,108,96,92,98,107,101,105,103,97,119,109,108,110,97,101,101,92,101,107,96,108,97,99,95,92,103,112,104,99,102,99,94,92,105,95,110,103,93,102,110,113,102,95,98,106,104,105,120,120,105,122,110,100,109,114,102,100,114,102,104,106,96,102,108,107,103,99,102,96,105,98,99,78,102,94,114,101,100,116,106,98,92,97,104,112,111,102,98,117,108,102,106,90,100,113,106,102,109,111,87,108,88,93,104,103,108,103,101,107,103,108,108,93,98,107,106,101,108,97,110,93,122,101,106,108,92,99,98,101,89,77,100,111,106,97,108,104,110,101,91,100,116,109,104,104,103,99,100,104,107,102,103,116,100,99,107,113,116,113,107,108,99,76,93,100,111,108,99,108,102,102,105,103,104,107,92,101,104,112,92,98,99,109,115,99,99,107,106,97,99,107,97,106,98,103,108,101,100,99,105,104,109,103,97,88,113,107,106,96,104,79,105,109,99,104,108,98,118,112,101,105,115,102,108,101,113,112,100,115,108,116,100,99,88,102,99,109,107,89,117,104,103,122,108,111,97,102,106,98,99,104,117,105,96,102,101,108,79,94,99,106,105,102,103,108,105,101,101,105,100,102,101,88,110,97,93,100,101,107,107,115,109,98,99,97,90,99,105,98,102,101,111,91,111,100,110,107,89,109,102,113,100,94,115,104,110,90,101,110,133,105,100,102,104,122,99,101,95,106,112,105,106,106,109,104,97,109,113,114,109,101,103,96,98,100,105,91,93,101,102,99,115,111,101,105,98,93,101,101,107,102,105,102,120,105,107,112,106,111,102,91,101,99,112,112,93,115,105,99,102,103,103,110,127,104,104,100,97,113,114,110,100,88,112,113,104,96,106,110,120,97,105,117,106,107,94,108,105,96,103,100,105,117,109,99,114,106,102,98,102,71,102,100,95,89,113,105,113,114,94,118,95,96,103,109,99,94,102,105,91,104,90,106,104,105,94,134,105,101,95,99,107,96,98,106,98,116,110,106,106,94,102,112,109,100,102,107,105,87,106,119,102,107,100,102,84,104,108,116,85,99,96,93,112,103,122,98,110,112,108,108,98,104,108,102,113,114,100,114,99,103,105,106,108,112,105,75,116,119,109,99,117,102,106,104,107,97,112,107,109,104,105,112,101,118,124,97,114,99,116,108,119,98,104,108,108,96,108,99,100,121,108,106,103,99,109,120,110,95,105,107,112,116,106,109,104,108,101,102,97,112,88,107,110,109,115,99,91,119,107,109,112,106,107,93,106,105,114,105,104,92,107,115,108,109,119,105,99,106,108,102,106,97,104,101,97,105,98,97,101,111,106,106,103,104,100,95,103,108,96,108,90,109,99,113,114,97,103,101,107,110,104,99,97,111,101,103,94,106,109,100,92,107,109,108,104,107,108,103,107,110,98,107,103,99,93,100,103,99,102,102,112,115,108,112,110,112,101,101,98,96,111,122,109,107,101,103,107,103,100,102,108,110,108,98,98,99,103,114,106,100,98,102,97,110,117,100,99,109,103,99,133,103,95,101,89,117,98,100,89,114,99,107,95,111,95,98,98,95,100,115,117,108,113,103,95,104,116,106,111,75,101,106,104,105,104,117,94,109,106,67,115,105,91,116,99,100,89,114,95,100,95,113,112,107,112,113,105,105,112,104,77,106,123,98,106,95,106,95,93,116,112,119,104,98,96,101,96,93,102,98,121,112,105,105,102,95,90,93,109,108,121,99,117,114,98,112,116,97,103,111,106,105,94,98,106,104,98,107,129,106,100,103,113,105,113,100,103,112,92,95,72,99,117,101,100,109,104,103,104,106,98,99,114,102,108,100,97,104,109,106,104,106,108,104,104,104,89,120,106,111,113,98,112,92,101,103,100,119,97,106,109,120,103,107,103,106,95,99,92,113,115,109,104,87,108,97,105,103,99,95,109,119,90,108,100,111,117,113,96,101,109,96,105,115,110,102,120,98,92,99,116,93,98,105,101,113,110,103,108,95,113,96,99,101,100,102,99,103,66,100,104,115,105,100,110,112,102,92,107,101,92,109,114,111,101,90,103,107,106,100,95,112,101,122,92,105,101,112,106,112,103,109,103,109,122,105,94,105,109,101,104,100,105,100,98,101,110,108,97,111,102,103,109,96,103,99,107,116,107,104,107,107,98,101,109,124,99,99,107,93,115,105,112,98,109,107,106,104,105,105,104,115,101,105,91,107,97,102,94,101,115,100,108,119,94,111,106,115,84,104,94,102,118,119,108,103,104,94,105,109,96,92,108,106,104,98,98,94,103,106,107,100,99,90,95,100,103,107,99,101,97,123,109,103,102,112,99,106,96,107,103,104,114,106,92,104,110,94,95,98,98,114,112,104,100,113,110,71,99,104,95,90,111,103,99,92,100,80,91,111,108,118,117,103,107,98,111,110,101,105,103,113,116,103,99,103,105,94,100,108,112,106,103,108,117,98,101,99,115,107,111,100,85,112,105,98,104,106,105,71,115,116,109,96,113,105,102,128,106,124,109,97,108,102,105,110,100,102,81,104,112,103,111,108,117,106,108,102,103,119,107,107,102,111,103,81,112,110,111,109,107,106,100,104,100,65,104,105,105,107,105,112,112,104,101,104,113,109,103,118,110,105,96,97,104,96,101,116,106,108,103,106,127,97,104,108,107,119,106,109,109,104,106,132,108,104,103,106,111,113,102,101,90,106,104,111,105,111,116,104,99,100,97,98,86,104,94,119,121,100,89,99,105,107,115,98,97,93,117,119,109,98,97,115,95,107,103,110,107,116,112,99,114,135,104,113,107,100,110,109,111,109,115,109,106,100,112,94,100,108,103,101,112,99,100,99,103,107,119,112,106,99,98,91,103,108,102,93,99,113,99,104,103,111,88,100,106,96,101,116,115,103,117,110,103,95,105,107,106,107,110,105,112,117,85,100,109,98,101,101,93,107,102,101,103,91,99,104,92,100,121,102,94,103,109,99,94,110,113,103,105,75,103,105,101,103,98,95,100,97,100,105,93,90,105,103,103,103,100,99,111,111,109,101,113,99,103,107,91,100,115,100,103,102,113,113,101,90,102,111,106,106,99,108,114,105,113,110,99,100,106,109,101,97,112,111,109,103,98,102,97,113,93,117,106,102,95,107,93,100,102,97,105,98,101,105,80,110,113,86,97,119,107,99,110,94,106,97,101,105,91,116,106,109,96,97,92, +650.82794,96,104,98,92,101,94,106,100,86,109,101,94,107,100,114,101,112,96,107,110,107,94,103,100,112,92,112,101,109,80,95,98,117,100,103,98,94,105,110,113,100,105,93,98,108,105,86,106,71,111,99,91,117,99,99,100,80,106,91,93,101,98,107,103,109,114,106,102,107,107,109,106,91,106,96,109,99,121,102,103,125,103,117,98,113,97,104,96,100,107,97,110,108,102,87,93,96,94,102,96,87,106,97,93,112,94,101,97,101,101,87,90,108,103,106,94,110,102,94,106,113,100,108,102,112,113,101,88,104,106,96,98,94,104,103,93,126,91,97,96,91,110,86,98,108,103,115,95,99,101,105,100,105,76,100,96,89,106,107,97,102,99,109,94,112,93,94,91,98,112,104,93,109,111,108,108,104,106,111,86,107,117,98,110,99,101,101,102,98,104,113,113,106,101,95,93,102,101,94,105,91,96,114,110,104,113,119,102,103,113,99,97,98,85,102,104,83,95,92,94,95,108,95,100,104,104,95,102,94,95,106,96,104,92,103,105,115,114,106,101,106,97,113,101,107,94,98,96,98,120,95,94,127,95,97,101,102,109,105,96,93,99,99,99,106,101,85,104,102,101,99,88,100,101,96,101,95,103,95,101,94,105,101,99,102,102,106,108,83,107,117,123,121,102,117,121,103,101,100,117,102,101,98,109,98,108,100,99,101,111,101,101,106,111,114,98,95,94,118,99,102,100,105,124,110,100,103,99,95,105,100,90,123,97,107,97,106,113,100,97,88,97,102,94,93,104,107,94,114,112,109,102,103,108,100,101,106,105,97,101,113,97,106,92,101,105,87,113,110,101,103,111,109,101,115,97,104,117,101,109,111,104,102,108,107,99,118,94,100,101,79,121,92,110,103,95,97,109,115,100,112,105,93,90,102,100,108,112,109,102,105,107,99,97,112,105,111,98,114,113,112,95,90,104,66,101,99,93,86,112,101,109,102,103,105,105,109,101,96,95,94,110,99,101,83,97,103,104,108,102,102,102,105,110,104,99,104,103,99,111,110,109,101,102,113,106,99,100,105,106,98,104,102,99,101,108,100,110,91,100,78,98,116,100,113,102,114,105,100,77,101,107,107,99,109,94,99,117,112,113,83,113,91,111,106,104,100,100,106,94,94,96,97,91,102,108,99,97,102,92,95,102,113,97,98,99,94,97,91,108,114,103,93,98,94,106,111,101,89,104,113,113,104,96,108,111,104,99,104,108,103,92,113,100,89,98,108,100,86,106,99,117,111,103,110,97,112,99,94,113,88,115,116,98,111,104,90,107,96,95,98,102,89,90,108,114,101,93,111,104,107,100,83,118,99,110,109,107,111,101,99,101,99,105,103,113,91,103,91,117,104,104,107,102,112,101,90,100,117,101,99,106,113,113,108,109,98,104,95,96,91,100,101,104,104,94,102,96,96,108,114,109,104,99,116,96,98,105,116,100,92,108,89,131,98,93,109,101,80,107,99,102,117,100,94,100,105,98,108,108,99,103,104,107,108,113,100,101,108,97,107,119,98,112,109,99,114,107,109,100,100,104,107,108,123,104,104,99,85,92,97,106,93,78,110,113,123,112,108,110,97,112,110,91,104,106,105,106,108,102,103,95,95,103,102,122,98,106,115,105,114,91,105,102,105,104,106,112,93,107,103,99,104,100,99,95,101,106,104,99,105,105,101,101,104,90,109,114,103,99,111,104,80,102,101,100,94,96,113,106,104,105,112,101,101,105,96,103,93,99,102,102,100,96,103,111,115,91,88,75,102,103,106,103,104,120,100,100,108,108,112,101,104,100,112,104,94,116,110,98,102,97,111,95,100,109,113,103,108,100,100,108,115,110,101,101,101,103,112,96,101,104,100,121,103,107,101,100,101,97,93,105,106,94,99,97,105,109,91,108,102,104,93,106,97,110,101,98,95,98,109,103,107,100,106,106,102,98,112,105,95,112,109,107,107,102,108,113,110,109,104,99,108,93,113,110,74,104,106,106,98,103,112,115,96,95,104,95,114,113,100,101,97,96,104,87,95,68,99,103,101,104,88,107,110,95,102,106,100,95,105,105,110,101,92,106,111,109,97,102,96,98,104,122,94,97,94,111,91,100,86,97,101,99,88,99,100,107,93,99,99,96,109,106,104,103,104,112,88,95,118,113,101,99,105,101,103,93,109,108,111,101,115,107,102,104,99,103,101,116,99,92,112,99,107,103,93,106,95,77,107,97,113,100,109,99,94,104,92,102,105,95,95,94,111,102,114,112,101,110,101,105,110,104,115,103,101,104,99,105,100,102,96,101,104,104,98,102,122,100,101,67,107,97,110,92,95,111,98,76,103,104,110,108,100,115,112,95,114,96,117,100,112,107,101,107,103,102,101,92,108,113,103,98,102,109,66,107,105,100,97,107,93,114,109,112,112,98,92,99,105,104,94,105,107,109,102,103,113,95,100,105,96,105,103,102,91,111,105,108,110,102,99,95,105,107,101,91,108,97,94,119,116,105,110,110,105,105,104,106,89,104,100,101,102,100,100,115,102,118,117,126,105,96,97,104,94,110,105,110,109,94,107,114,92,107,91,102,129,93,107,101,95,94,103,94,105,106,103,104,102,105,113,100,100,112,110,107,106,103,103,109,106,104,97,100,102,87,118,99,116,103,98,107,113,112,112,108,104,123,89,109,106,98,121,110,101,117,87,118,118,105,120,99,103,104,107,95,109,108,97,106,104,112,110,112,108,111,96,98,109,100,97,96,101,112,91,115,126,87,95,104,98,104,109,104,104,106,106,105,121,101,107,104,100,100,105,114,119,102,100,112,100,112,99,102,100,110,102,112,117,108,101,107,109,107,109,108,97,100,102,109,109,105,105,99,104,97,103,106,131,98,115,113,108,98,103,102,111,108,116,103,106,111,105,103,104,106,111,116,109,105,106,116,103,108,106,123,123,114,116,108,98,88,113,109,102,103,113,101,113,101,108,101,107,104,110,119,115,99,101,105,102,90,116,102,89,111,95,107,108,113,96,100,99,104,113,103,105,110,111,98,91,98,105,99,112,87,107,109,102,109,102,102,114,131,95,107,107,104,104,107,110,111,101,102,103,102,99,103,95,87,98,109,117,112,118,107,109,99,111,98,107,107,90,102,118,111,101,113,110,88,90,114,100,111,104,100,97,102,96,100,101,107,112,89,101,102,97,107,112,93,113,106,99,94,87,100,99,99,105,104,102,108,100,105,105,99,95,112,100,97,117,98,98,98,109,99,94,96,106,102,109,107,100,112,102,99,109,106,109,109,116,110,107,117,100,94,105,105,99,106,116,111,105,105,109,115,114,99,107,101,110,106,103,109,106,98,105,107,110,102,101,101,109,106,94,121,100,110,113,99,108,102,96,101,114,102,107,116,99,100,107,108,94,97,110,118,94,124,110,106,112,103,108,105,112,104,88,101,110,98,98,113,104,110,104,106,95,99,106,103,106,117,102,107,95,91,91,102,117,107,109,94,99,102,103,102,109,104,103,97,92,91,109,115,101,101,107,101,108,99,108,100,111,98,97,98,97,86,105,96,104,106,110,100,102,98,99,101,92,108,109,98,106,98,96,113,101,103,102,96,90,108,111,111,102,94,101,102,104,101,100,107,93,96,108,102,117,109,112,98,97,134,90,91,100,88,103,99,103,106,101,109,104,97,117,132,103,89,109,100,108,97,102,96,104,110,113,102,96,98,107,97,107,110,107,107,104,109,105,101,99,106,93,105,104,96,105,107,95,88,102,108,102,104,107,94,100,104,93,103,99,101,106,115,107,101,95,99,95,88,96,85,112,105,101,103,103,99,113,106,83,85,106,101,110,96,101,98,101,104,108,117,96,108,96,104,101,94,99,100,112,103,89,95,102,96,105,119,109,106,119,115,118,94,99,103,115,111,97,114,88,124,97,116,103,91,100,97,111,88,105,104,121,97,103,102,106,116,106,104,80,103,104,106,112,87,109,107,110,97,103,100,100,104,110,99,101,100,103,104,93,98,107,103,109,111,109,93,103,106,102,95,91,110,110,110,96,99,97,104,115,108,115,100,94,93,112,107,101,101,114,101,104,113,98,119,103,112,96,97,109,116,121,107,99,101,109,108,106,102,98,105,102,100,101,110,96,91,103,109,114,99,118,109,97,95,102,112,112,105,113,110,106,111,108,101,99,98,120,106,99,96,103,106,116,111,109,107,101,104,108,103,89,91,98,94,107,90,102,96,115,108,101,107,109,100,102,108,102,93,94,93,108,104,103,92,94,108,109,104,104,110,106,98,98,106,102,113,103,90,107,106,108,93,104,108,109,103,72,102,110,96,89,96,101,100,100,107,115,105,100,107,113,96,112,115,97,101,101,110,97,91,93,103,109,102,111,108,106,98,120,99,107,109,111,109,89,106,102,119,100,107,98,101,113,95,106,116,109,90,101,95,101,101,98,104,98,98,96,90,102,113,107,109,97,112,106,122,95,102,94,110,73,104,111,118,106,103,105,105,98,105,91,118,104,96,98,95,95,101,100,106,115,122,99,93,104,105,101,102,93,101,76,96,94,110,107,120,99,95,101,98,97,106,99,104,106,107,111,99,108,104,104,102,98,105,113,113,99,107,110,106,104,89,111,106,102,95,72,91,99,93,112,120,99,98,101,98,115,98,102,99,98,100,104,102,115,88,110,121,100,102,97,127,103,99,109,99,103,94,99,100,94,95,104,104,94,96,106,111,97,102,93,99,102,107,92,102,103,99,103,110,98,104,118,105,99,108,115,101,88,106,110,104,120,100,99,103,98,103,92,106,107,105,90,106,107,107,106,107,98,93,117,101,106,120,103,104,127,100,110,104,102,72,105,94,97,97, +650.96918,93,104,105,91,82,110,112,97,111,97,100,97,108,110,114,98,113,104,81,104,105,98,106,98,113,97,103,104,112,99,99,109,90,102,107,110,100,107,116,101,110,88,117,100,95,116,104,118,90,101,97,112,88,96,98,102,104,93,115,95,98,99,106,110,109,102,104,96,118,118,110,110,110,117,99,96,104,105,81,115,108,105,104,105,106,106,106,106,90,103,106,108,97,99,106,98,109,97,99,90,113,104,98,115,105,96,93,109,91,106,111,102,105,97,117,113,95,111,92,100,99,113,107,103,106,109,113,91,108,110,100,119,97,96,109,101,108,103,94,94,103,108,93,114,96,95,114,105,106,106,98,99,91,96,99,90,102,106,113,98,103,93,107,117,100,100,114,96,107,112,104,107,96,110,112,114,107,104,103,91,102,106,100,104,72,99,114,98,103,114,108,95,104,102,98,121,107,105,105,101,102,111,93,102,98,104,96,98,113,112,102,92,118,107,110,107,95,88,101,106,106,106,105,90,99,121,106,105,109,94,109,102,105,110,109,100,105,104,116,109,105,108,109,97,101,100,106,116,99,109,116,98,102,89,93,117,101,102,109,107,108,99,110,106,100,102,106,103,105,100,107,104,106,94,109,102,101,107,91,101,101,112,93,100,110,108,99,107,104,112,112,106,110,100,109,112,111,109,103,99,100,95,104,99,99,113,108,98,89,96,95,120,100,107,103,107,99,96,103,106,91,109,99,101,96,107,75,99,106,110,97,105,99,103,110,108,113,100,100,111,95,100,102,104,104,113,99,106,90,115,111,101,93,104,110,104,111,94,107,103,114,99,105,97,103,108,108,117,102,106,105,101,111,100,100,101,109,110,80,100,113,99,101,101,102,91,99,96,98,113,107,93,110,98,102,104,101,101,97,102,95,108,103,109,88,92,106,102,97,106,99,89,109,118,107,112,101,94,99,104,96,90,106,96,104,102,108,118,122,93,100,106,111,111,106,107,107,95,92,108,109,96,96,107,110,98,105,99,103,105,98,102,102,110,94,93,95,100,114,117,102,103,101,113,102,106,100,114,112,111,98,109,98,98,96,80,99,110,75,113,112,106,113,102,104,103,104,95,94,101,119,104,100,103,99,106,102,108,98,106,95,125,108,101,109,101,95,109,99,104,92,99,98,114,102,103,107,106,96,94,106,118,107,108,115,101,110,112,91,107,102,109,113,102,98,100,112,72,98,120,104,120,103,97,97,91,104,107,109,95,111,117,109,105,91,101,103,101,92,104,107,102,105,134,111,91,111,109,86,95,101,66,103,101,111,107,105,98,106,99,102,109,100,112,105,95,117,109,100,108,109,109,97,74,106,116,106,103,119,105,110,78,105,100,108,104,100,95,97,112,102,107,105,108,103,108,113,94,107,102,119,107,107,107,117,103,107,110,105,119,95,103,100,109,95,92,98,94,98,109,102,118,91,109,102,94,98,115,113,96,97,93,114,100,109,105,105,114,111,105,109,110,109,100,107,103,108,109,93,101,113,101,103,109,103,108,102,109,105,106,106,104,117,97,103,103,102,106,113,90,104,109,101,97,95,110,83,116,99,89,99,100,109,108,104,103,104,113,111,104,102,101,102,105,99,101,79,98,99,93,120,102,117,102,99,104,92,112,109,97,102,129,111,103,98,103,99,110,124,109,107,95,118,113,104,104,101,104,108,114,112,104,112,103,106,93,80,86,117,100,95,102,99,94,93,106,112,110,116,96,100,100,107,98,101,105,110,93,103,91,111,108,106,103,103,116,108,101,105,100,108,105,100,105,113,105,104,109,109,115,98,117,101,109,99,100,98,96,75,108,114,118,113,105,102,94,102,107,111,90,105,116,96,105,113,111,99,99,97,89,104,98,99,100,113,108,107,110,99,107,96,106,111,85,95,91,108,104,106,97,110,100,102,106,100,101,91,101,103,111,94,110,107,108,108,100,105,109,111,111,106,124,104,114,109,114,107,99,94,105,107,107,98,113,93,107,86,120,106,104,102,102,100,103,110,111,108,101,99,109,105,112,105,107,114,121,101,98,99,95,122,79,111,122,106,105,102,93,105,106,96,96,97,102,102,110,96,96,99,108,112,110,113,109,99,103,97,99,113,111,96,104,103,108,103,101,99,110,102,107,105,96,104,103,111,107,98,111,109,104,113,108,108,102,103,106,106,100,94,120,105,104,103,97,91,108,111,99,95,96,107,109,99,111,105,116,96,105,101,103,102,100,108,115,102,102,96,102,106,100,115,103,96,99,107,104,105,100,102,106,101,98,96,106,103,116,99,106,107,99,104,98,97,108,108,115,106,105,106,105,104,92,110,95,95,93,102,102,106,101,95,107,94,111,103,99,103,98,113,108,108,108,97,111,101,108,103,108,97,102,105,94,118,101,95,94,110,101,105,105,104,112,106,106,102,113,99,105,107,105,92,107,100,106,115,119,98,96,117,104,105,104,99,95,87,109,104,101,103,103,111,104,109,103,96,116,94,109,101,105,94,106,116,110,109,102,102,95,95,102,112,101,106,105,131,118,101,111,110,82,111,113,124,96,100,103,99,104,97,98,106,94,109,111,109,98,100,92,100,106,102,102,105,109,109,110,103,105,116,94,107,91,97,102,110,104,100,111,111,111,109,100,89,84,104,97,120,100,100,109,104,103,89,118,108,108,103,106,106,111,119,124,102,76,98,98,93,106,91,101,105,110,91,109,101,107,102,104,112,107,98,109,109,105,107,109,106,95,100,106,106,109,105,100,99,105,97,105,103,97,93,106,103,103,122,101,100,97,104,101,111,99,99,82,92,98,104,100,94,110,119,108,98,102,98,103,101,113,100,100,88,100,109,107,98,110,114,103,66,111,93,109,78,102,101,101,113,103,98,111,100,100,101,96,95,99,97,117,100,96,96,104,98,95,98,109,99,101,95,102,101,102,103,109,109,101,111,104,94,101,112,95,93,91,108,102,102,109,104,95,101,108,99,104,108,105,92,93,106,101,108,85,103,119,99,99,117,99,101,104,102,108,116,89,117,113,107,108,107,114,98,112,97,95,105,100,84,106,108,111,98,113,112,98,100,98,99,100,115,106,103,100,111,109,110,96,109,96,90,101,76,107,98,107,109,96,79,96,99,113,100,100,110,113,101,106,113,85,94,98,99,106,97,110,102,102,119,97,122,108,93,103,106,121,109,104,79,98,106,69,102,119,110,94,97,104,88,94,98,103,95,97,101,83,102,98,95,111,99,115,110,108,111,109,105,106,118,99,106,102,111,94,108,111,120,103,117,117,108,110,108,105,108,104,101,105,107,112,116,96,102,106,103,103,110,68,124,108,77,105,104,102,82,100,96,108,83,90,108,104,112,104,102,115,108,104,108,102,107,109,105,108,106,102,91,112,113,102,95,111,93,95,101,87,89,99,103,104,110,102,101,98,94,109,118,93,104,107,93,101,119,105,103,90,105,105,107,123,109,102,121,113,96,112,98,105,97,102,104,106,110,111,99,109,109,89,97,113,99,117,94,100,106,99,105,107,98,102,115,108,122,99,101,116,103,98,103,91,109,102,94,104,90,100,103,108,110,96,105,104,106,116,111,101,108,109,99,97,104,104,99,111,105,100,108,106,93,93,97,86,105,94,102,111,101,104,82,99,99,114,98,108,93,101,108,97,108,96,117,88,107,111,110,116,120,103,109,91,97,106,88,113,132,104,109,97,108,111,103,108,110,87,98,97,88,109,95,109,93,100,98,91,117,115,105,104,99,104,109,97,105,102,92,117,101,102,107,95,109,103,116,95,115,116,93,112,104,97,108,107,106,119,103,99,102,103,108,98,98,94,106,109,108,120,102,108,108,102,95,92,105,98,104,109,107,106,110,88,87,99,105,93,88,103,102,110,119,99,99,107,111,105,111,99,98,105,105,106,121,106,93,100,98,113,106,112,103,105,93,105,111,102,111,105,96,95,95,106,99,103,105,109,108,98,108,98,100,99,115,101,104,105,95,117,99,106,111,124,102,96,102,106,104,102,110,115,79,100,112,106,109,102,100,97,95,101,102,104,86,104,97,110,104,114,102,110,100,99,93,102,112,102,108,105,109,114,102,100,107,103,113,93,102,100,105,90,100,106,99,99,109,106,105,104,110,124,106,105,93,105,101,101,93,103,111,115,96,109,99,113,102,102,104,119,105,112,117,100,104,98,90,105,100,113,100,103,96,100,102,96,106,101,110,99,95,120,90,109,89,98,103,104,108,114,104,113,109,95,91,109,98,107,110,103,78,101,100,105,95,112,99,107,108,107,96,92,102,104,96,99,105,102,94,94,99,106,97,105,105,99,117,100,102,116,90,87,98,101,97,113,111,108,104,103,100,105,116,98,100,106,92,84,106,109,105,84,91,102,105,89,98,108,106,103,110,105,108,95,96,107,106,103,94,100,116,97,96,99,94,102,113,105,98,104,108,108,98,101,102,112,106,104,100,115,107,94,99,115,94,92,105,105,85,110,108,96,117,107,104,99,98,99,114,98,114,106,102,90,107,82,104,104,102,113,102,108,99,99,88,112,105,94,102,106,94,102,117,96,118,114,99,109,110,99,106,91,107,106,108,100,123,100,103,109,101,107,105,97,100,98,94,107,106,97,98,96,110,103,105,113,110,102,132,104,82,102,111,103,108,98,112,108,100,104,106,92,97,99,96,97,101,96,90,115,83,107,117,103,99,107,107,100,101,90,99,100,109,109,80,103,77,96,119,114,97,96,106,86,116,105,108,103,117,88,98,116,105,106,100,103,106,116,94,106,105,110,102,95,101,94,90,100,101,101,94,103,100,109,105,109,99,109,95,92,96,95,112,93,91,115,110,111,95,117,105,97,102,103,107,92, +651.11035,94,109,95,86,63,94,106,94,102,100,95,107,100,105,98,101,94,91,113,109,121,105,101,99,99,106,91,105,96,106,109,99,100,114,88,98,90,95,110,113,107,96,104,86,106,113,98,99,102,112,89,103,100,99,100,93,101,93,105,96,100,101,112,100,108,119,98,98,100,99,120,122,114,105,94,105,95,87,99,100,96,112,84,95,96,104,95,101,113,109,101,98,102,95,95,116,106,109,105,101,68,118,101,116,118,101,99,112,103,99,89,91,110,120,111,99,105,110,114,94,117,91,110,101,95,104,103,106,102,111,99,109,99,113,96,92,99,116,100,99,95,102,95,94,103,101,124,96,100,93,92,98,100,105,102,117,105,106,105,97,95,113,95,105,99,100,102,103,115,95,102,119,96,104,107,106,102,102,101,109,87,104,94,106,105,103,96,102,111,115,104,104,102,108,95,116,95,107,105,96,99,102,93,94,103,93,116,103,108,104,87,108,111,107,114,90,96,107,99,106,108,105,105,97,105,106,103,103,109,99,97,106,114,91,104,104,109,110,106,88,105,100,93,88,100,98,110,105,97,102,99,102,91,120,99,103,101,101,107,98,112,115,107,107,94,107,100,102,95,92,104,105,95,108,110,99,104,100,100,99,113,109,96,100,99,110,91,106,96,103,112,116,105,102,108,101,96,104,106,103,130,99,106,120,91,103,115,111,99,112,103,108,98,88,91,103,109,110,111,96,105,90,87,110,102,94,72,104,104,96,106,97,97,95,103,100,99,96,99,116,110,121,114,98,92,106,96,110,106,103,104,107,113,106,97,108,130,101,108,105,127,99,85,94,112,97,92,107,98,112,104,92,104,113,95,100,106,92,92,112,101,98,97,102,95,100,105,102,109,104,100,96,99,106,100,104,95,95,105,107,98,97,95,95,102,107,99,109,95,106,107,100,88,100,127,96,97,102,109,97,95,88,110,105,94,93,104,92,114,94,105,96,97,103,113,107,83,108,86,100,113,106,112,92,91,108,104,122,114,95,99,94,112,102,110,97,94,111,99,113,106,99,104,89,112,95,107,99,96,93,102,114,110,107,112,89,95,102,103,98,102,106,98,109,112,109,102,107,113,95,95,113,103,108,91,98,112,105,105,104,104,93,95,97,95,118,99,106,105,102,114,110,105,108,102,102,109,100,102,101,108,106,108,92,90,105,106,105,109,94,102,101,103,98,98,94,107,100,97,113,117,104,98,98,126,84,105,108,114,103,100,94,103,102,107,107,98,114,106,98,101,101,101,108,109,105,114,96,74,104,86,105,111,105,107,102,111,108,101,104,114,103,101,99,110,105,105,91,91,103,105,106,101,98,95,106,109,105,100,104,112,97,108,92,99,105,115,104,112,100,79,111,112,106,102,91,85,95,92,101,97,109,109,105,106,104,99,105,112,102,108,106,104,102,99,110,110,109,97,102,106,108,98,97,109,97,98,104,90,103,130,98,104,109,103,112,112,107,102,97,108,110,91,101,93,102,97,113,114,94,104,96,114,97,111,108,107,111,102,120,101,109,95,102,103,100,117,100,92,101,103,114,108,103,96,97,101,107,100,90,95,110,91,106,110,113,97,95,106,99,97,115,98,100,102,109,103,106,94,89,76,99,119,104,105,98,98,118,112,108,102,108,95,93,100,110,93,119,96,104,116,92,123,107,104,92,91,98,101,109,112,105,101,99,109,97,112,98,113,108,101,105,97,102,100,91,101,113,92,114,95,104,110,97,101,88,103,88,100,117,105,102,115,107,101,105,108,108,103,111,109,96,98,109,106,103,95,98,107,102,99,104,90,86,98,109,110,103,109,98,99,105,113,109,97,109,115,104,102,99,98,97,107,99,112,107,120,112,83,110,104,111,102,100,100,132,107,97,120,108,101,109,91,103,72,99,96,105,87,117,102,109,97,98,69,97,104,87,96,93,105,108,109,105,109,102,97,103,102,116,107,99,104,104,105,102,98,108,114,96,106,89,101,97,112,109,94,105,105,90,106,109,99,101,101,108,101,105,101,104,103,96,108,110,101,93,104,97,100,104,100,94,94,100,121,113,102,111,86,115,100,109,117,109,103,94,91,109,104,110,69,86,114,79,97,111,103,101,97,98,91,105,103,115,102,101,110,104,108,108,104,99,115,97,106,93,107,114,101,99,105,112,113,111,83,101,95,96,104,99,100,108,112,100,99,95,116,96,100,107,88,106,102,109,108,88,100,106,103,103,105,104,105,102,104,111,110,97,93,106,109,100,100,103,109,94,89,107,84,98,104,112,99,103,100,107,116,99,99,96,121,106,118,92,101,103,98,105,87,106,105,104,116,111,105,98,99,104,114,110,109,98,94,111,110,105,118,99,107,119,80,121,103,96,95,107,100,106,96,105,106,101,99,99,105,105,106,108,100,106,97,107,125,102,100,102,106,113,114,105,97,99,102,112,105,93,94,97,117,114,95,105,98,100,97,94,95,108,109,103,106,91,100,111,101,105,108,92,102,107,113,114,104,108,99,113,88,80,94,99,91,102,109,96,102,121,98,102,107,103,94,111,104,105,96,99,109,94,104,102,104,106,93,108,101,113,112,106,98,107,109,101,104,105,101,106,120,80,108,101,101,104,104,95,110,92,113,109,99,100,101,105,95,99,100,106,91,98,99,107,102,109,98,116,101,107,111,102,103,101,91,108,106,99,97,115,104,112,99,108,96,88,104,96,97,117,105,97,100,91,92,103,98,106,113,114,100,101,101,98,105,114,114,97,104,95,107,105,100,95,103,91,102,106,104,95,88,102,94,108,106,96,107,95,95,105,96,113,113,106,121,107,101,108,93,98,94,100,103,107,106,96,107,100,113,93,104,106,97,110,99,98,104,100,108,107,98,96,109,109,105,113,110,101,90,98,111,102,116,96,99,105,111,105,97,96,92,96,94,96,101,105,109,103,104,106,105,109,94,96,100,111,102,113,101,108,106,97,106,96,110,103,107,104,109,106,98,98,105,100,116,101,98,106,107,109,68,106,95,104,99,109,105,95,119,90,97,97,74,72,98,98,98,107,116,107,98,106,98,108,106,86,110,98,111,88,104,104,108,91,95,112,106,105,103,98,92,122,104,108,91,100,94,109,102,126,108,100,97,111,101,101,108,101,105,121,99,94,100,108,100,85,104,93,105,101,103,110,103,98,102,95,97,92,87,96,96,95,103,105,99,119,106,105,103,98,95,95,107,107,100,99,101,109,99,107,97,111,116,114,105,93,109,102,94,113,108,123,101,101,101,90,100,116,101,106,105,93,105,98,115,109,108,98,105,101,102,98,102,92,104,106,88,105,100,96,105,97,104,93,108,104,100,99,100,108,106,98,112,100,98,111,89,100,105,91,98,94,110,92,97,108,95,110,110,104,91,110,113,99,86,102,98,102,98,107,107,92,102,97,104,95,102,104,88,92,104,111,97,93,110,95,94,97,98,107,110,99,110,103,98,104,103,112,95,89,103,98,96,106,97,119,96,102,92,91,104,101,113,102,101,106,116,99,104,106,92,112,105,101,98,93,113,102,94,102,107,98,100,108,97,102,102,98,100,109,94,94,112,101,105,98,101,97,103,106,102,98,105,109,91,105,108,102,98,90,105,106,111,106,109,89,106,120,100,98,94,106,95,93,96,110,100,102,98,98,90,101,108,95,100,106,101,104,99,99,97,98,97,100,100,95,91,92,94,105,125,108,117,110,110,99,109,92,100,100,101,108,95,101,108,100,103,86,106,111,95,79,109,105,96,81,87,99,99,91,116,101,98,98,100,100,100,101,95,97,105,93,95,100,100,108,109,106,104,104,107,108,96,100,108,98,99,115,128,104,91,109,92,94,104,102,96,102,98,96,113,103,104,111,100,109,107,104,92,97,98,95,117,110,109,107,102,91,88,113,103,97,104,90,104,107,96,107,100,100,99,95,94,96,93,116,96,102,112,99,101,87,87,107,96,95,97,100,109,102,104,91,90,96,110,108,96,99,102,103,102,108,101,110,97,82,103,94,96,108,97,104,101,79,104,107,109,97,95,104,106,91,93,134,107,103,102,95,93,109,94,108,88,97,104,92,99,101,106,100,110,101,111,95,114,88,105,99,105,108,104,84,97,113,103,95,91,81,95,102,108,102,105,103,96,98,95,112,77,113,103,103,105,99,103,104,97,98,103,105,103,93,99,106,116,106,99,95,89,100,92,112,93,92,116,98,110,107,95,103,101,101,119,94,106,105,109,129,104,108,93,98,87,110,98,106,91,91,106,102,96,104,97,95,113,106,103,96,95,98,106,99,98,108,107,100,112,98,102,91,95,103,113,107,99,106,110,102,99,101,112,106,113,108,91,96,101,108,93,102,118,109,89,92,97,96,103,111,96,112,104,98,89,99,109,101,111,112,93,86,100,93,103,109,71,108,95,108,94,89,106,100,105,92,101,109,96,111,111,111,98,94,102,105,101,102,84,105,107,117,92,102,106,99,93,117,97,95,105,91,97,110,98,105,96,100,87,96,107,95,99,106,95,111,100,95,110,96,97,101,111,102,98,104,103,94,103,115,107,95,102,95,101,112,116,108,116,95,100,95,112,102,107,105,113,103,106,98,103,101,95,100,98,112,100,89,103,102,102,99,108,114,109,100,99,115,92,111,113,105,108,95,105,106,109,101,110,111,98,105,95,97,91,94,94,102,94,99,107,98,104,93,105,100,108,83,104,99,99,108,100,106,110,102,110,94,87,97,95,111,99,98,93,95,94,99,116,99,102,94,88,104,89,98,82,99,101,111,111,98,111,102,100,97,117,112,98,103,112,97,106,99,120,100,114,104,99,92,93,93,91,104,88,87,113,118,102,99,101,103,100,112,103,92, +651.25153,118,104,112,102,101,126,94,98,88,88,91,103,114,95,109,108,109,109,107,110,96,102,98,104,100,106,101,99,109,105,104,105,113,108,95,106,113,104,103,98,99,111,109,109,106,107,101,103,93,106,103,113,104,101,107,90,99,95,109,80,110,104,115,72,105,109,91,88,110,101,121,109,127,109,111,106,107,91,110,100,100,100,106,112,105,96,102,120,107,108,119,103,102,108,96,109,100,95,101,97,99,104,93,108,106,98,103,105,102,113,94,106,119,98,114,102,97,107,95,107,98,120,105,130,100,105,114,109,106,97,98,100,111,120,106,67,103,105,108,98,105,107,110,112,99,106,109,110,106,100,90,119,98,101,117,95,103,91,97,96,103,106,102,104,75,104,95,100,95,106,107,106,96,102,105,106,94,77,100,106,98,101,102,113,105,117,100,101,92,118,103,101,100,113,103,107,96,99,103,99,99,107,98,110,103,114,100,110,124,97,93,106,100,115,97,108,87,112,115,127,111,102,116,106,110,102,105,118,105,91,105,95,109,105,102,103,103,94,100,99,88,101,87,95,106,113,101,113,107,105,101,98,100,112,104,112,107,108,99,109,82,94,96,111,100,94,120,99,101,109,100,105,101,99,111,100,116,112,114,97,103,112,102,106,94,92,91,109,105,114,108,110,116,112,107,100,102,118,119,97,101,95,114,107,95,103,113,104,93,106,105,122,98,105,99,103,90,96,106,99,107,97,106,109,91,102,111,94,101,95,115,107,105,113,84,113,98,105,105,105,103,111,110,105,101,118,100,99,97,99,102,107,109,100,95,118,114,101,112,106,98,97,112,96,105,109,104,105,100,101,103,112,111,101,103,106,111,111,112,115,103,116,104,95,105,112,104,104,96,104,110,98,103,119,107,100,100,104,111,113,106,95,106,105,116,100,106,96,101,99,111,95,108,102,95,102,93,95,92,109,107,109,111,97,95,98,99,98,101,108,106,117,116,110,105,108,89,98,97,112,114,94,103,104,102,105,99,98,104,105,99,105,128,101,103,107,64,100,112,101,114,102,90,104,85,97,104,114,107,91,103,103,115,100,118,100,98,109,94,112,111,101,108,106,102,107,96,112,95,97,100,99,97,106,93,102,95,115,117,98,111,92,107,122,108,107,98,108,107,96,117,106,91,126,99,109,102,106,97,117,109,98,99,102,110,122,106,103,101,99,98,106,106,103,110,99,102,116,98,105,100,105,106,99,105,102,109,106,108,114,103,105,108,117,94,89,110,111,108,99,104,99,104,108,95,106,106,107,104,103,97,104,93,100,114,116,101,102,102,107,102,112,98,104,107,99,102,106,113,102,106,108,99,106,111,105,98,108,111,98,108,112,105,113,105,109,103,102,91,105,101,105,99,93,110,97,95,107,105,121,111,106,98,98,110,93,107,105,91,106,99,96,94,105,98,102,112,98,107,95,95,108,100,100,102,99,104,98,105,113,107,116,99,103,104,103,103,114,103,118,102,105,99,113,99,97,103,101,88,106,106,110,107,104,94,114,107,112,89,103,103,99,128,102,108,99,99,96,106,98,108,107,98,110,100,93,106,102,110,109,108,93,107,103,108,102,113,122,110,93,106,103,95,109,102,100,110,113,99,98,104,98,114,98,99,99,111,116,104,115,109,101,104,108,102,103,116,104,99,102,106,102,108,97,101,115,116,99,100,95,111,106,100,102,107,102,103,106,109,108,100,107,90,112,98,95,98,98,99,98,103,98,99,110,106,99,95,104,99,108,102,107,88,105,102,99,122,98,98,109,107,105,97,105,113,98,105,107,101,98,110,97,104,118,102,107,99,94,108,116,102,105,100,103,110,107,98,107,100,96,114,108,125,111,111,110,106,97,107,101,107,105,106,92,92,122,116,99,92,120,97,107,99,91,108,83,100,102,95,91,103,97,96,111,104,101,91,115,108,100,105,95,115,107,110,112,105,92,103,100,102,107,106,108,91,90,112,94,107,103,108,114,103,103,103,113,84,109,106,106,95,102,108,110,95,99,101,103,99,100,107,108,109,95,103,96,102,100,111,101,104,116,111,109,98,93,102,108,95,101,97,110,101,108,108,99,96,101,103,108,100,98,108,102,97,99,97,93,100,108,106,102,106,104,93,102,96,101,87,102,106,113,105,107,110,104,92,105,106,101,99,102,108,107,100,107,98,98,97,98,103,93,108,90,100,106,107,93,94,96,111,109,101,108,111,98,109,105,98,100,103,106,106,100,93,96,104,101,99,96,102,109,107,89,102,120,105,103,92,101,107,109,83,106,100,112,102,104,117,110,113,103,108,95,112,94,126,88,95,103,108,108,93,82,113,106,101,110,99,105,99,95,98,135,104,132,110,102,98,99,102,114,102,100,99,113,98,108,107,94,98,108,110,102,113,105,100,89,115,95,100,123,144,107,113,99,109,118,103,96,111,103,109,98,101,111,112,94,109,107,97,109,103,113,103,98,99,113,99,103,105,96,100,92,101,114,89,97,106,111,100,110,104,99,95,100,105,101,99,97,99,98,105,103,109,102,102,69,88,113,109,117,102,102,107,103,93,100,111,113,95,92,98,115,108,110,97,105,100,104,108,99,114,106,105,106,102,98,104,117,105,100,104,107,109,113,88,105,105,90,108,100,96,95,93,94,102,104,90,112,99,117,108,108,107,94,111,100,89,94,103,94,102,116,105,117,105,87,106,105,100,105,114,103,91,108,103,113,108,104,104,99,95,102,100,105,99,110,103,107,108,105,101,92,109,103,108,112,105,103,106,107,98,104,103,99,73,106,104,111,102,96,112,95,105,99,96,113,97,108,101,111,100,113,101,98,98,121,103,102,109,102,88,100,107,108,109,109,106,103,105,129,107,109,106,87,98,116,93,93,101,102,117,102,86,105,112,92,98,84,124,99,105,83,111,107,89,99,111,104,102,131,95,108,98,109,106,112,129,107,99,109,105,96,106,116,105,101,102,99,91,96,100,95,98,97,95,95,102,102,90,103,108,99,115,112,100,101,105,98,100,106,109,106,104,95,114,105,107,102,101,104,104,94,106,95,109,106,105,116,102,105,104,97,77,94,107,86,105,77,96,97,108,108,107,106,100,107,106,107,103,128,98,99,99,114,104,102,107,109,96,100,104,103,99,106,118,96,103,111,101,103,113,100,102,113,104,88,100,105,98,113,103,110,116,91,114,106,99,110,112,100,99,99,106,102,93,98,105,104,98,99,99,99,115,95,104,93,106,100,95,107,112,103,113,113,103,101,101,112,109,99,116,111,107,93,104,117,104,109,106,108,91,113,103,102,84,102,104,95,91,123,99,94,113,106,102,102,107,104,104,121,99,95,107,107,108,94,90,96,108,106,93,122,106,108,105,104,123,107,106,100,108,113,100,106,105,102,111,107,102,93,94,101,104,100,106,99,96,105,97,106,103,120,120,98,105,115,95,101,105,95,105,87,107,105,102,108,107,106,112,111,104,105,107,104,111,105,99,112,119,91,111,111,84,98,103,105,105,82,100,96,118,105,91,96,100,110,115,103,96,98,110,120,108,112,95,105,92,98,102,106,102,92,107,90,99,110,101,104,106,87,102,106,95,92,111,113,108,102,111,97,101,107,92,102,109,101,100,121,110,96,104,99,96,99,101,107,72,113,102,105,100,103,103,93,103,114,109,97,105,98,98,105,112,107,108,93,88,99,100,100,101,103,104,99,108,110,103,104,99,106,105,90,114,103,107,108,117,94,119,98,107,96,112,99,92,98,104,107,106,98,103,118,98,103,118,106,93,98,110,98,118,99,101,96,102,97,99,101,95,104,98,107,98,108,91,110,96,88,98,111,100,115,119,103,95,105,97,104,104,99,95,104,103,94,110,100,84,119,103,102,96,108,104,105,110,93,104,90,105,105,110,103,104,109,102,98,107,105,113,113,111,105,103,116,117,107,98,97,82,109,87,98,78,102,99,101,103,106,113,103,108,100,121,99,100,102,103,96,98,108,117,98,109,109,105,100,104,93,106,110,121,95,111,116,110,102,103,110,104,99,85,100,111,109,104,112,89,116,103,100,100,106,111,103,104,111,91,104,98,99,112,110,104,104,108,98,110,103,95,100,106,112,104,104,100,95,96,106,99,97,99,98,100,100,119,103,107,96,107,86,112,109,99,119,102,70,105,108,110,108,107,102,102,103,88,96,115,98,105,103,110,101,94,103,108,110,92,95,111,101,109,99,103,97,97,108,104,100,107,90,109,106,96,88,99,88,101,101,95,108,98,91,99,117,109,94,105,99,114,98,109,117,106,106,116,99,95,108,110,98,100,102,112,96,115,104,114,106,100,97,81,108,101,119,106,108,89,95,92,104,104,99,91,104,100,97,103,106,86,93,129,104,91,105,106,107,102,102,108,107,110,94,96,98,97,104,110,111,107,114,100,102,104,110,109,105,95,85,104,108,104,100,103,99,95,100,103,105,106,104,87,92,108,106,113,98,100,96,75,106,100,103,111,100,109,107,110,131,102,102,95,100,105,100,99,110,98,109,102,116,101,101,76,103,106,116,92,81,92,99,102,106,111,99,96,97,108,99,96,109,100,118,107,113,94,98,113,104,105,101,112,111,100,95,102,111,109,101,110,112,117,111,88,97,105,100,96,86,98,99,102,100,114,109,105,99,109,113,112,104,113,79,106,105,94,122,101,103,111,113,97,114,106,113,101,80,106,104,105,100,104,103,122,107,94,120,98,104,105,97,98,104,99,105,115,109,96,88,107,112,111,100,98,100,101,110,99,87,111,105,97,94,98,106,112,103,107,102,94,100,102,107,110,103,100,87,112,100,126,105,106,96,95,100,100,107,98,98,107,92,102,121,106,113,94,110,111,94, +651.39276,103,101,99,106,74,103,98,106,98,114,89,95,108,109,107,99,106,98,108,92,83,101,95,103,101,107,106,108,106,104,111,100,89,106,99,114,95,101,104,95,110,113,96,94,106,108,98,92,100,113,105,89,99,95,106,96,106,94,104,101,97,102,99,97,102,98,97,92,108,101,104,104,94,115,107,118,93,95,104,110,91,103,96,112,100,103,100,121,101,95,101,112,106,91,101,108,95,98,104,104,91,107,100,105,101,108,126,104,100,95,114,102,98,74,110,97,110,107,107,115,103,99,108,103,83,100,111,115,117,114,101,121,105,101,102,106,105,104,99,108,106,102,102,112,98,105,98,105,95,107,112,110,94,97,103,106,98,96,112,96,109,109,102,98,109,112,106,90,99,105,106,107,111,91,101,101,88,105,111,112,103,104,99,105,94,97,107,96,107,101,109,100,109,85,100,110,100,96,99,107,105,102,111,106,102,109,93,110,119,104,103,112,104,116,96,108,98,106,87,94,117,104,99,108,112,96,104,117,102,102,99,118,105,100,102,92,99,105,104,109,105,108,119,99,97,96,109,110,109,111,94,103,113,119,98,96,107,103,93,100,102,121,106,95,103,108,103,98,98,81,103,102,96,105,102,113,103,102,112,101,99,103,108,111,94,103,110,101,113,106,95,99,112,100,113,98,109,95,104,116,104,82,111,113,89,112,95,101,106,103,109,103,105,103,103,92,109,105,101,93,105,99,105,105,97,102,105,108,106,100,106,96,108,116,108,108,92,97,103,98,106,100,113,91,109,111,104,106,107,111,119,121,98,113,96,102,96,94,109,98,100,95,102,104,105,101,93,105,95,103,98,115,110,105,113,99,100,107,99,110,107,105,89,95,92,99,92,100,101,104,101,99,105,101,105,101,97,100,107,101,96,112,100,95,100,103,100,85,116,113,88,102,95,100,105,83,105,104,113,112,101,97,92,90,99,105,100,117,108,104,97,102,121,95,111,105,99,119,101,96,108,98,95,109,104,104,114,95,102,108,100,104,94,109,110,96,109,101,114,103,89,91,107,105,107,106,105,98,113,107,119,103,95,109,112,98,99,116,100,107,99,121,100,99,82,95,100,105,103,88,108,96,104,100,97,95,93,109,112,90,110,88,106,96,98,109,95,99,122,100,115,98,106,112,96,105,105,113,100,96,99,97,95,101,112,105,108,94,93,100,104,105,91,106,94,109,103,107,106,101,107,114,95,93,113,106,110,98,91,114,94,96,109,96,110,103,102,105,102,95,95,101,98,120,101,107,106,103,103,103,102,105,104,102,100,91,96,100,108,111,129,103,108,104,101,110,103,95,111,90,105,105,103,97,102,100,97,98,108,103,97,103,98,100,99,107,85,104,108,108,107,110,117,104,102,106,103,94,85,109,98,108,107,99,70,103,113,90,95,103,105,95,114,116,95,103,100,99,102,103,97,94,107,107,104,114,102,92,110,102,106,90,101,111,107,97,112,100,106,105,105,104,87,102,90,103,108,93,104,100,110,105,102,103,98,119,113,97,104,99,107,106,91,110,97,90,94,102,98,106,106,105,86,98,111,99,96,103,111,98,101,100,106,102,96,99,112,99,92,98,101,117,106,109,103,105,103,92,111,95,110,102,106,112,97,91,99,104,106,110,98,97,98,101,96,102,110,107,121,115,117,96,98,103,102,102,109,109,97,106,112,98,98,100,107,91,127,101,92,101,100,109,108,94,100,109,101,106,117,105,111,98,100,102,102,99,101,108,90,98,108,111,103,106,101,101,106,96,98,99,102,107,108,106,102,106,107,97,94,116,101,101,97,104,104,92,107,105,109,100,105,94,94,109,108,98,109,102,111,95,120,85,92,107,97,124,95,110,115,112,107,91,96,116,91,107,97,95,104,101,113,102,93,104,94,95,95,106,105,98,67,94,99,100,107,105,91,113,86,108,100,104,93,101,108,104,98,103,109,112,104,87,98,105,105,105,104,98,112,91,93,105,113,94,108,105,96,110,96,98,103,103,99,93,117,103,95,106,105,106,105,100,108,92,106,95,105,108,107,96,107,103,107,109,101,104,85,123,105,108,96,106,112,99,96,101,93,103,104,97,97,108,104,109,98,98,87,102,100,105,111,93,96,96,104,109,113,105,100,102,100,105,110,111,106,103,102,105,104,104,103,109,94,105,106,95,108,96,110,100,101,96,107,108,102,109,97,112,99,111,93,108,113,91,96,103,117,104,105,117,115,106,106,101,96,100,88,100,94,111,123,107,106,101,116,101,102,102,100,104,95,102,104,102,100,114,95,100,102,99,101,111,108,99,106,99,103,101,106,117,103,121,98,90,74,94,100,99,107,105,103,104,100,104,111,103,104,83,110,104,118,102,99,107,91,99,88,101,101,98,104,107,108,110,118,100,101,97,102,72,91,105,107,112,103,118,109,99,99,102,109,113,99,109,101,96,90,101,114,110,104,101,108,98,95,107,105,96,93,98,100,96,113,95,102,110,107,102,106,109,106,106,112,107,98,100,106,99,121,98,100,65,95,108,90,110,104,102,93,109,102,107,104,87,92,108,94,108,117,101,107,97,74,97,96,104,107,90,104,98,103,106,100,120,116,100,100,103,107,111,95,86,105,90,108,108,95,97,89,108,104,108,108,115,104,111,105,104,103,98,107,109,101,98,97,109,127,99,100,109,94,95,98,103,98,115,104,94,101,97,106,100,87,107,109,109,100,114,105,93,103,102,103,104,110,102,105,121,101,99,125,110,102,97,107,86,99,102,109,107,101,104,104,111,97,90,100,100,112,113,109,94,121,95,115,100,100,113,104,109,91,107,109,105,100,105,98,114,99,113,112,100,104,111,104,105,98,105,102,109,94,106,103,109,95,109,118,112,93,103,100,119,110,96,109,107,107,111,95,99,99,100,92,105,106,107,98,94,97,108,94,95,104,95,102,90,104,104,103,92,90,73,99,97,98,102,112,116,88,97,98,109,100,103,102,110,111,101,103,95,104,106,97,111,106,113,107,104,100,104,94,116,108,102,119,110,115,104,71,109,106,109,97,105,104,113,100,111,102,107,105,100,103,97,117,105,104,102,113,94,108,92,106,95,107,99,94,111,104,93,110,97,102,101,99,109,105,90,104,103,115,88,109,101,113,102,117,100,107,107,102,90,90,97,96,100,106,101,108,96,79,104,103,96,109,101,109,91,96,106,116,99,98,98,104,108,103,102,117,102,122,113,99,99,102,109,102,110,77,95,100,96,97,109,95,105,103,94,99,101,111,107,106,103,113,98,109,104,96,105,115,105,115,109,113,100,93,96,105,109,114,106,104,109,97,102,98,107,100,96,108,109,98,99,102,105,119,98,107,105,109,111,95,104,102,92,116,107,93,98,97,97,109,100,96,98,101,106,103,95,113,91,104,103,106,117,109,113,113,102,102,95,99,100,98,80,86,97,103,95,124,113,106,95,108,110,103,97,107,92,92,90,81,103,105,103,106,108,125,102,110,107,105,109,95,109,114,102,100,103,113,99,96,104,77,89,115,99,98,93,101,86,100,116,95,98,96,99,102,91,102,109,97,101,98,95,99,98,110,107,95,103,107,99,106,111,109,107,99,95,103,95,103,94,91,99,99,95,109,119,105,91,92,108,101,100,114,106,119,100,101,108,102,103,99,101,109,98,79,109,100,72,108,95,106,100,117,85,91,92,106,99,106,101,106,99,95,98,108,108,103,101,98,98,102,88,104,99,110,109,102,97,100,96,111,113,104,100,109,88,98,114,80,96,112,104,107,96,95,100,110,109,108,112,95,101,99,103,105,89,90,105,108,99,102,113,103,99,116,101,94,92,110,101,110,111,90,99,108,102,101,97,101,106,108,94,99,110,104,90,102,94,101,95,83,97,108,95,78,90,91,92,107,101,101,126,100,95,105,95,102,99,109,101,101,107,110,103,95,93,89,102,92,99,113,104,103,108,108,100,103,107,93,77,96,99,102,112,97,98,105,98,97,113,108,108,104,91,100,92,104,96,104,90,98,100,101,104,109,93,96,72,96,99,91,101,99,114,102,104,107,108,91,114,96,106,109,94,97,129,105,102,99,101,108,105,97,87,102,111,117,97,94,100,109,105,109,96,102,113,103,93,96,101,96,108,122,101,93,103,102,102,103,106,100,93,100,103,99,103,113,107,95,74,111,113,110,103,105,118,94,109,96,104,102,100,83,110,116,100,98,98,124,103,99,76,106,89,102,101,115,102,99,99,103,95,109,88,85,97,97,108,92,107,98,105,113,104,95,113,103,109,108,114,106,99,104,113,105,110,107,96,98,104,107,99,108,99,108,100,94,100,112,111,104,97,109,95,91,98,105,96,110,109,97,112,105,109,101,100,98,95,98,100,110,112,97,112,97,118,114,122,100,98,105,88,102,86,85,110,97,108,106,106,105,105,109,99,102,99,102,100,95,104,92,98,102,92,103,113,110,113,107,115,106,113,103,108,100,94,93,104,99,109,100,98,94,102,101,106,93,106,98,106,95,101,99,100,105,93,103,105,91,110,89,102,94,100,101,100,104,86,105,117,100,103,102,118,94,105,95,102,96,109,95,103,105,108,104,93,119,108,108,109,97,99,117,105,98,93,100,112,108,92,107,125,131,91,97,96,106,101,105,91,109,98,106,95,95,94,107,92,102,100,99,94,107,107,95,93,94,98,96,103,105,112,102,94,100,99,100,99,98,103,104,93,94,105,101,97,109,108,96,109,109,95,107,98,107,106,120,112,102,108,103,107,100,112,107,96,117,89,94,103,102,98,103,94,98,95,120,102,97,106,84,105,108,100,99,97,110,112,117,102,103,79,109,101,97,94,114,106,96,101,119,89,108,102,86,95, +651.53394,95,118,106,98,105,113,98,98,97,95,97,109,106,113,111,106,105,119,107,114,102,99,91,106,105,89,107,108,104,129,98,104,104,98,105,103,116,98,101,107,103,104,104,93,102,116,101,111,104,95,116,99,94,96,112,86,92,92,97,90,91,115,96,110,101,109,92,105,105,95,93,109,96,112,109,99,93,76,106,113,101,110,98,95,100,86,98,102,104,94,100,108,106,98,98,97,110,92,104,107,85,98,105,98,97,94,100,104,106,96,114,106,103,106,110,93,101,101,109,97,105,114,108,97,98,119,102,101,131,112,97,102,99,102,105,108,109,105,98,102,101,95,91,103,103,109,113,101,97,87,103,112,106,111,103,104,111,100,101,115,96,103,98,111,103,87,104,106,105,101,97,99,102,111,112,127,98,92,106,130,93,101,109,103,107,99,102,103,106,97,95,108,114,92,101,116,103,95,96,108,113,103,101,106,95,109,106,118,110,105,88,106,107,103,105,101,104,123,104,108,105,117,106,102,90,114,108,110,97,100,108,115,104,97,106,104,109,95,117,105,107,91,104,108,87,100,103,101,96,100,109,103,94,98,95,105,96,114,105,113,119,107,107,100,102,98,110,104,104,92,98,112,121,104,104,110,114,102,106,103,108,110,106,99,94,102,99,99,103,106,102,103,103,106,113,97,95,105,100,104,105,116,101,113,100,115,91,102,99,99,99,99,97,107,101,92,107,106,117,105,69,108,103,99,101,102,104,90,109,108,116,111,113,116,93,113,102,100,108,113,100,108,109,92,88,105,103,103,104,111,107,76,116,98,103,102,102,124,94,94,98,104,103,89,99,104,122,103,106,91,107,118,108,112,105,105,116,101,94,103,105,94,94,105,100,110,93,101,98,105,103,105,96,125,116,106,99,101,113,104,90,112,106,99,99,94,115,114,100,92,95,99,102,90,105,99,100,99,114,101,111,107,99,109,100,87,95,117,97,113,105,100,102,105,95,101,116,110,103,93,98,114,107,90,101,105,91,95,101,97,95,104,77,109,103,108,90,114,107,99,107,109,99,95,111,95,98,94,111,104,93,101,104,86,97,103,103,109,118,102,112,115,103,105,110,103,97,106,104,96,101,104,100,106,103,109,105,105,108,110,123,93,100,98,105,123,79,102,104,105,103,98,95,99,111,103,105,109,101,100,92,111,104,111,90,107,99,96,104,103,98,99,110,104,94,104,105,98,114,107,106,100,97,109,108,106,108,106,98,107,95,108,102,109,103,103,110,108,74,121,106,104,105,110,101,91,113,109,90,96,93,98,116,95,102,110,113,102,106,101,103,94,107,103,112,116,91,117,108,106,125,98,104,87,108,108,102,113,100,105,106,99,100,101,108,99,97,98,108,101,99,108,108,104,102,101,108,103,103,108,93,106,95,103,110,100,96,100,97,103,104,106,94,97,107,125,103,95,112,120,105,125,94,118,106,108,107,102,105,104,97,103,108,104,106,97,111,106,100,97,109,100,111,95,88,96,100,95,97,117,110,97,99,98,102,99,96,106,105,109,112,112,110,106,102,91,99,95,101,94,114,113,94,110,118,108,98,119,101,97,114,101,100,92,107,119,112,106,101,115,111,105,124,116,107,98,109,105,117,105,103,102,98,98,85,93,109,105,109,104,105,100,110,99,90,104,110,90,104,111,121,106,113,108,105,104,111,104,106,99,100,110,101,110,116,105,112,105,121,110,123,121,98,87,102,100,117,110,87,93,102,106,120,103,102,108,100,87,108,97,102,121,102,108,109,109,121,110,106,112,103,107,100,108,96,103,99,109,108,110,95,99,110,105,110,99,100,113,90,113,105,108,117,104,94,99,103,103,90,106,102,98,108,101,97,110,95,96,100,117,117,95,90,123,94,113,111,92,105,102,104,113,100,104,101,100,98,106,101,95,132,109,94,96,94,103,104,96,101,97,105,99,112,109,98,109,97,114,104,109,113,105,102,102,112,103,105,98,112,104,106,109,97,103,111,95,101,129,110,106,113,103,114,101,105,89,108,95,105,103,100,99,108,108,104,114,101,117,109,101,102,106,119,99,102,85,107,90,100,116,105,98,111,106,111,77,106,99,107,94,102,102,97,111,97,104,95,100,103,110,114,95,98,93,104,105,102,95,104,99,118,108,105,112,106,106,101,104,98,108,137,111,89,93,103,97,114,82,100,114,88,112,102,102,93,109,75,109,109,111,104,104,104,106,124,105,77,110,101,106,104,113,114,102,95,121,106,96,104,103,107,95,96,100,111,98,113,103,95,101,108,100,101,101,95,99,101,107,105,105,111,108,103,101,107,99,101,110,108,103,102,102,113,102,107,98,108,105,107,107,108,111,110,99,78,114,119,115,114,116,90,106,99,110,104,116,114,98,109,98,98,94,118,110,105,105,98,108,96,112,102,117,103,112,107,104,96,97,97,94,109,96,109,114,88,109,102,99,115,104,103,105,108,94,103,97,101,90,101,108,109,109,113,98,96,71,106,100,118,106,109,107,103,103,108,103,119,108,116,103,95,108,99,93,113,102,95,118,105,109,105,109,106,106,112,90,99,97,112,93,103,90,103,113,95,94,112,103,86,106,110,110,118,102,101,111,113,109,99,117,105,91,91,100,104,104,113,92,100,114,99,95,99,100,99,113,99,99,109,106,104,117,87,107,111,106,117,106,100,106,101,106,86,98,100,106,120,121,107,104,98,104,106,111,111,98,77,108,110,98,103,103,111,105,105,108,96,106,116,104,92,104,119,94,104,97,94,103,117,112,98,108,103,106,97,104,109,94,84,112,117,102,115,96,101,103,117,105,104,103,97,101,114,98,100,102,109,117,100,109,104,110,109,102,109,114,97,113,95,104,123,101,96,115,95,110,103,99,111,88,100,98,106,110,106,101,115,98,87,101,103,103,104,103,97,104,110,92,105,105,98,117,89,98,98,104,102,111,101,105,108,102,113,102,103,108,108,120,107,112,104,110,109,104,106,99,103,96,109,101,94,94,107,108,104,107,98,100,105,125,101,132,108,136,94,107,103,96,112,115,97,110,99,105,102,108,96,113,101,106,94,119,98,96,102,94,100,101,101,105,105,100,100,106,104,109,105,115,87,92,109,93,80,96,108,103,99,90,97,105,109,91,98,100,108,109,108,98,112,110,115,112,97,95,102,102,113,108,110,94,98,117,112,107,102,100,99,94,107,98,96,110,104,81,98,96,111,71,105,95,102,108,100,104,109,119,95,103,125,109,111,90,103,99,127,94,88,100,111,99,97,89,99,112,89,107,102,93,110,105,111,114,100,120,108,83,101,113,106,122,95,101,107,102,101,103,102,99,105,95,109,101,107,100,96,100,103,95,102,106,102,96,88,91,102,95,103,99,116,108,91,94,95,116,101,110,105,113,97,105,86,100,102,103,95,87,99,108,106,100,104,107,100,103,91,106,119,101,100,97,105,114,108,102,98,101,99,102,112,99,115,108,107,101,112,111,109,96,108,103,106,107,109,111,101,106,101,112,103,112,98,121,99,101,98,94,95,107,101,102,102,93,107,93,96,102,111,101,109,99,98,118,95,89,94,108,104,110,96,110,106,100,111,110,100,104,107,109,106,106,109,97,108,107,101,113,105,96,98,98,104,106,99,108,94,104,103,113,108,102,99,116,106,123,92,103,100,107,104,111,124,103,102,111,99,97,103,103,98,104,95,95,104,100,98,112,92,98,97,98,96,99,116,105,106,108,109,106,98,105,113,99,97,106,106,100,105,98,102,112,83,113,99,112,103,100,104,94,104,105,110,95,102,96,104,90,113,127,120,101,96,110,103,100,113,106,99,99,102,94,108,100,102,91,105,111,112,108,100,95,95,104,104,109,109,93,108,102,100,101,103,99,105,110,125,100,99,123,106,109,101,105,110,108,98,112,79,101,96,108,98,104,100,100,103,110,107,105,94,103,116,97,104,109,97,110,100,93,104,91,100,120,98,101,71,92,105,98,119,102,101,102,102,102,100,108,97,98,114,114,107,106,111,92,117,119,119,107,111,104,114,100,102,102,101,116,102,106,88,99,107,86,102,99,104,112,99,97,103,99,105,95,95,103,113,107,98,108,102,103,123,113,117,99,98,95,102,104,106,102,101,108,92,99,106,106,110,103,105,94,101,96,106,100,104,117,102,104,100,98,100,110,109,98,101,103,112,105,97,99,104,92,115,69,102,112,102,114,67,96,108,93,116,105,111,99,101,107,106,102,96,89,109,99,98,109,116,108,93,103,112,103,106,99,100,105,101,102,104,105,108,98,111,106,94,87,114,96,103,106,106,98,101,110,114,106,94,103,99,94,118,103,114,95,104,102,102,98,103,99,94,110,106,99,88,98,113,114,99,107,102,99,102,118,108,108,103,102,106,114,125,124,94,102,105,97,87,106,103,113,113,103,113,98,110,99,90,99,103,99,102,103,91,101,111,99,104,107,103,100,106,99,96,113,99,95,105,94,102,102,94,107,105,105,109,103,105,124,111,102,117,110,96,101,107,94,116,94,99,104,105,103,111,104,105,104,102,107,97,110,97,100,82,107,101,97,93,108,103,100,105,93,95,100,101,105,99,111,116,98,113,92,100,101,106,85,126,97,105,108,99,102,116,100,81,108,99,109,105,102,109,97,94,95,92,101,104,109,111,108,103,121,97,107,106,108,106,104,108,101,98,98,100,106,105,96,100,104,102,107,101,99,94,97,103,112,93,95,99,107,97,104,105,125,92,100,93,101,98,109,105,107,119,95,99,99,100,113,110,119,98,96,95,99,109,98,91,100,85,109,110,99,99,105,98,108,98,119,103,117,101,96,117,93,100,99,90,101,110,98,112,109,113,105,91,94,114,98,104,103, +651.67511,114,103,105,104,97,110,116,94,109,104,91,95,109,96,106,92,102,98,104,102,107,93,94,100,106,95,102,105,102,103,104,102,83,107,104,106,95,105,90,88,92,108,101,98,104,83,95,110,92,98,96,84,101,91,111,118,99,92,112,71,100,99,96,100,100,101,113,104,98,91,106,104,92,113,100,102,101,114,106,108,102,111,98,103,98,100,99,94,106,104,99,102,101,123,115,102,103,101,115,99,111,90,99,108,95,97,98,91,112,96,95,109,104,100,98,105,96,108,108,116,97,101,102,105,101,105,104,94,103,109,100,96,97,107,94,104,99,104,99,108,94,102,103,99,92,97,112,90,97,104,97,102,107,91,100,121,101,118,99,107,95,106,101,106,105,103,97,112,99,94,102,101,109,97,98,96,104,112,95,113,90,101,117,95,103,105,93,103,108,96,98,105,113,109,106,96,105,104,105,101,102,101,105,107,99,105,112,103,100,107,95,100,103,120,104,94,102,103,96,87,103,98,105,89,91,100,101,104,104,107,97,102,95,108,113,107,104,109,92,95,102,100,107,109,79,105,92,102,87,113,101,111,93,77,100,112,90,104,100,104,107,102,115,96,97,106,90,101,99,94,100,94,109,106,102,109,108,96,104,104,108,92,113,103,82,93,100,108,116,107,96,117,110,103,102,98,101,97,95,106,94,104,111,96,98,99,111,104,109,110,106,110,112,94,102,113,101,106,99,93,99,113,99,96,99,110,101,93,114,95,105,105,101,94,104,112,105,107,70,99,103,104,106,91,104,105,104,112,107,102,103,109,101,107,121,111,97,105,99,95,102,103,100,100,98,97,104,104,101,109,100,95,113,113,105,99,103,117,87,108,104,99,102,111,98,97,95,106,105,102,104,89,109,101,103,113,90,105,103,104,98,95,105,103,90,91,101,102,95,98,93,96,99,104,113,83,102,99,108,100,98,104,109,101,101,99,91,104,100,94,99,96,98,103,99,102,77,103,103,100,98,107,102,112,106,93,79,98,97,95,99,96,96,107,103,102,99,109,105,108,100,117,103,99,100,117,111,108,98,104,102,108,99,101,110,115,102,109,97,98,115,107,132,104,99,98,101,112,108,96,116,110,103,103,100,99,92,99,79,96,91,96,96,123,100,103,98,96,101,98,117,109,95,107,112,115,103,105,100,85,121,95,80,107,109,110,103,100,102,103,91,103,113,99,91,101,105,98,105,114,101,112,96,100,117,109,107,99,108,97,100,109,113,120,100,95,102,102,98,100,91,103,100,106,95,104,111,109,99,115,97,97,111,105,103,114,95,102,99,112,106,102,93,107,95,90,108,96,104,95,113,92,98,101,102,107,82,112,113,102,101,101,104,95,99,99,98,95,102,107,102,100,99,109,91,89,97,104,92,101,102,105,115,103,111,99,101,90,108,105,101,94,101,108,100,100,100,97,103,93,94,114,98,111,109,99,113,104,109,102,91,108,96,100,112,108,101,107,111,99,109,101,97,102,98,105,99,97,108,86,108,104,99,94,114,95,97,99,104,101,103,115,97,80,104,101,115,107,106,108,104,108,95,102,93,94,104,106,100,93,114,100,100,100,105,93,71,106,108,98,97,105,100,105,100,97,95,101,101,102,108,88,79,98,96,95,100,95,118,129,108,104,99,97,92,114,108,98,107,106,104,105,92,102,103,99,90,102,105,129,102,109,102,101,101,96,109,107,104,111,109,114,91,95,112,109,101,101,104,97,108,114,103,78,101,105,105,91,97,86,121,116,107,100,68,90,138,109,109,118,100,104,124,95,96,105,115,114,115,105,95,96,97,86,111,98,109,95,108,100,111,100,87,95,120,106,106,91,102,100,93,85,103,95,108,98,103,100,95,105,97,109,105,112,95,108,99,100,101,104,93,102,111,98,103,79,109,109,89,101,96,85,105,109,90,105,108,101,96,95,108,91,109,109,111,96,100,101,115,100,106,104,96,109,96,118,96,107,111,99,124,107,97,105,107,95,81,104,104,100,105,105,88,106,113,99,100,98,101,105,104,99,100,102,101,104,112,94,103,99,99,102,95,99,98,98,96,98,95,113,106,106,122,113,96,98,108,92,100,76,97,103,88,100,86,107,98,88,106,99,112,99,108,101,111,91,104,100,98,94,109,103,108,109,95,96,103,116,93,93,95,129,104,104,97,99,121,103,109,102,100,98,96,102,96,106,90,98,101,100,115,109,101,104,89,94,94,89,109,104,108,99,106,103,93,87,96,96,94,102,105,95,109,93,108,86,106,102,95,95,91,108,103,102,95,102,99,104,107,102,107,96,98,106,96,98,100,110,111,96,114,103,110,88,102,92,97,111,121,103,94,118,99,98,92,99,105,98,107,104,108,110,103,105,107,110,116,102,99,106,94,114,85,107,100,85,107,97,108,116,107,110,110,113,97,105,109,101,96,99,102,104,114,102,112,104,112,102,113,116,103,99,108,101,114,103,114,99,116,104,108,104,113,98,105,121,112,108,108,108,112,110,93,105,101,92,117,98,103,107,96,108,106,107,107,106,105,107,113,94,107,106,111,108,91,96,105,104,79,99,98,104,96,103,101,101,108,102,114,93,113,102,99,95,110,103,114,103,107,105,114,96,113,108,115,108,117,102,106,91,95,83,102,101,103,100,110,95,131,96,111,113,84,111,114,104,109,108,102,104,95,97,108,102,108,105,105,98,102,99,95,106,108,123,121,118,109,113,109,112,121,85,98,106,101,107,112,104,101,109,115,99,106,99,120,107,111,98,112,113,98,112,101,107,110,99,117,99,92,111,111,114,107,114,107,105,109,103,104,108,86,111,115,103,112,106,100,114,91,121,95,94,92,116,106,109,109,98,107,119,113,111,101,111,108,88,109,99,104,119,119,118,116,112,108,109,107,91,108,79,108,115,96,109,105,99,107,109,96,113,99,112,101,103,98,111,106,105,106,104,105,102,95,102,109,98,115,115,99,117,121,110,112,103,111,103,114,117,105,111,96,112,105,115,109,120,110,110,107,121,113,113,103,113,108,108,108,108,110,112,114,108,96,118,106,108,111,100,105,105,108,108,105,105,109,104,112,91,105,112,98,115,91,107,109,98,93,99,102,111,111,100,127,101,105,102,104,99,106,103,105,108,107,108,108,102,93,106,110,116,113,97,104,105,107,119,115,96,105,103,107,110,103,102,108,100,103,105,109,103,98,105,93,117,105,105,109,95,111,100,102,102,94,110,102,103,96,104,94,100,106,101,102,109,90,103,102,104,113,105,103,115,104,110,89,105,121,105,99,104,102,103,104,105,112,112,100,113,105,101,90,109,87,102,112,104,110,111,117,105,115,111,118,104,103,79,119,106,95,97,102,94,103,108,104,102,105,108,106,106,105,98,108,79,106,99,108,113,101,114,109,101,105,89,98,110,105,101,92,118,115,102,94,92,98,91,102,99,109,109,94,111,106,114,97,116,114,112,102,94,96,107,94,99,92,98,95,108,99,95,111,106,85,121,107,108,106,115,98,105,121,97,102,101,105,110,109,112,105,107,106,99,118,102,109,102,109,111,112,105,91,104,90,109,106,107,93,98,96,102,110,109,116,103,107,103,122,109,106,104,89,110,111,105,96,109,94,112,105,103,100,102,102,101,110,107,100,104,113,108,99,87,103,106,91,99,104,107,106,103,109,131,107,113,114,123,101,99,113,101,119,98,108,102,106,92,101,121,95,109,104,113,95,115,104,103,103,112,113,107,114,109,96,108,107,95,100,95,106,111,97,112,105,103,94,121,113,108,89,99,119,111,108,96,102,102,107,104,100,81,81,101,111,96,95,101,106,109,104,116,119,106,106,111,113,92,110,105,102,108,101,108,100,114,107,112,109,92,101,112,108,122,101,95,100,113,98,103,124,123,105,98,110,95,97,109,115,105,108,105,109,103,99,113,94,114,102,104,108,103,101,127,99,110,102,106,101,108,96,117,94,100,99,116,110,104,97,108,103,104,106,102,118,112,99,109,121,88,119,98,100,98,90,110,106,125,104,106,113,104,119,110,105,92,111,104,100,95,108,97,108,101,108,101,113,103,101,111,100,114,96,103,108,112,107,91,117,108,95,102,111,108,94,99,119,105,109,119,107,103,97,117,98,97,107,91,99,111,95,112,103,96,101,104,112,107,103,115,127,105,107,95,109,110,116,109,97,104,108,115,107,106,118,107,103,103,110,105,100,97,98,91,99,90,103,106,103,106,97,90,113,103,98,95,112,109,100,95,99,113,107,90,88,128,107,106,113,104,102,111,113,106,108,102,106,107,109,105,104,103,123,100,104,102,94,100,113,102,107,110,114,114,107,100,92,96,104,107,89,103,110,105,106,117,104,99,108,101,124,91,94,106,105,102,89,109,98,102,96,89,116,106,97,99,109,92,96,101,104,110,99,108,100,104,108,94,109,109,107,112,106,107,119,107,121,107,109,105,99,104,117,128,121,109,102,100,113,96,104,109,107,105,99,116,106,101,106,98,111,102,113,112,109,111,112,107,95,97,102,115,100,111,104,95,97,107,110,112,103,101,99,100,99,106,80,110,103,104,98,110,92,110,120,106,92,117,110,109,102,92,92,98,106,107,113,94,108,123,107,104,107,104,105,115,109,105,101,108,102,103,104,101,99,110,87,111,112,106,113,92,112,103,114,114,107,105,103,113,113,100,106,104,101,106,95,110,110,97,108,76,111,108,113,104,105,101,104,105,117,100,112,108,117,104,106,105,111,110,101,110,110,99,102,102,106,102,96,99,91,139,117,102,101,95,103,97,113,108,102,105,103,95,91,118,101,100,110,105,95,92,106,100,105,102,107,110,89,99,115,116,98,90,108,102,107,83,101,108,92,104, +651.81635,123,102,101,94,70,94,92,102,90,111,88,101,102,95,98,111,90,101,108,99,93,104,97,104,96,114,112,100,93,111,109,94,88,108,107,78,102,98,109,100,101,91,108,110,101,93,97,112,91,104,118,106,100,96,104,105,95,109,108,100,111,92,84,99,99,112,98,80,104,90,106,98,85,94,94,118,95,109,107,97,108,91,108,115,94,105,104,102,106,105,113,99,102,107,95,109,92,99,104,94,107,100,96,85,104,103,96,100,119,110,100,103,109,103,102,100,103,98,104,116,100,109,98,105,107,102,111,107,106,65,110,96,106,110,104,106,113,92,104,98,121,112,107,107,97,95,107,87,108,107,102,100,112,112,88,112,89,107,105,101,93,90,109,101,106,99,121,93,92,96,99,100,97,98,92,96,108,98,108,103,95,108,113,102,106,107,95,96,109,97,116,108,100,107,110,108,105,101,104,92,104,105,103,95,102,99,100,101,96,106,104,105,80,101,95,94,102,99,112,110,109,105,99,97,96,97,97,99,95,100,98,111,94,114,107,93,104,117,109,106,94,100,102,112,103,89,96,106,108,110,109,93,105,101,103,109,94,111,95,104,105,118,104,108,96,104,98,97,100,99,93,98,101,116,103,102,110,106,102,101,103,111,110,110,114,105,85,102,100,106,104,100,105,98,98,108,100,104,123,101,106,113,97,107,109,95,123,95,104,108,96,104,89,103,98,102,113,94,100,112,105,82,109,105,103,100,109,104,121,112,106,97,99,104,106,103,102,69,96,95,92,93,112,103,113,101,106,104,106,115,99,105,96,106,102,106,103,109,102,105,90,101,88,97,95,92,105,109,92,96,96,102,103,98,93,105,107,104,96,101,103,92,92,104,113,100,86,91,87,95,103,102,95,95,97,98,100,110,101,105,109,107,106,94,92,109,94,110,97,96,97,94,105,102,102,102,112,105,99,107,100,98,91,111,106,99,100,104,103,102,114,99,96,92,106,106,102,105,96,106,100,91,100,103,92,104,93,102,106,110,97,95,102,110,105,108,96,105,112,101,99,110,102,104,116,107,109,106,92,95,96,120,116,89,101,109,97,114,102,98,97,99,103,89,72,96,111,74,103,99,102,90,110,98,97,103,99,97,124,75,114,104,104,100,113,103,106,108,99,100,112,97,110,107,110,99,99,100,103,95,96,109,98,103,133,101,104,95,95,101,102,114,97,97,100,93,111,102,99,103,107,107,98,107,102,93,103,104,96,94,105,116,112,99,112,104,103,113,104,103,77,75,105,96,102,90,97,96,100,117,107,106,89,79,109,106,104,113,119,103,94,115,114,100,101,107,98,109,106,100,112,108,98,105,104,92,104,117,99,108,99,94,112,103,104,101,110,108,104,101,104,107,106,108,102,102,114,102,113,100,106,95,106,108,113,111,94,112,110,85,108,99,105,107,96,100,96,90,105,74,108,104,112,99,105,95,101,98,104,117,103,95,92,110,107,107,104,113,99,113,108,99,106,102,82,98,100,97,102,108,104,105,114,107,96,100,105,106,111,108,108,114,98,102,79,100,91,99,113,93,100,99,88,110,97,102,105,97,97,112,105,95,109,113,101,114,86,112,101,108,111,94,89,78,96,104,100,108,116,88,95,105,93,114,87,89,108,101,115,103,96,93,113,98,93,80,109,92,117,102,101,95,113,94,107,116,106,103,102,108,83,94,102,103,106,112,107,100,95,100,108,93,100,112,102,99,99,99,117,107,112,108,117,106,104,101,108,107,109,107,103,106,108,100,114,112,97,111,101,96,80,82,91,106,107,106,92,106,80,116,106,101,100,100,99,87,104,100,104,93,109,103,103,115,107,95,106,100,103,106,95,111,109,95,108,100,110,98,102,107,105,109,100,99,109,109,98,103,95,110,89,102,103,99,101,92,100,81,104,93,95,91,106,105,101,104,103,104,104,106,103,109,104,99,96,93,107,106,121,100,112,99,105,105,108,98,105,103,101,104,99,114,108,93,115,99,114,115,100,112,104,105,124,111,100,101,105,104,119,105,92,95,108,95,94,97,93,107,102,105,100,104,103,103,100,97,104,98,93,100,102,101,115,108,99,93,97,101,96,111,95,103,105,107,101,96,94,107,100,113,98,114,104,104,95,107,104,97,95,106,104,93,106,110,118,100,108,100,110,101,99,116,97,91,116,116,87,104,113,99,114,116,121,104,109,99,104,104,89,99,97,112,104,105,97,104,83,91,102,108,108,110,106,99,89,92,106,92,106,102,95,100,100,90,108,94,113,100,95,108,109,95,87,108,98,101,96,99,92,94,94,99,97,101,110,93,101,106,92,117,107,117,105,105,101,90,87,99,107,107,119,106,110,111,111,107,94,101,113,118,105,94,104,101,113,91,105,102,104,100,98,98,101,95,95,105,92,95,113,97,88,109,110,100,109,116,94,93,107,96,105,97,98,102,116,109,105,93,105,100,103,95,106,94,108,97,99,107,102,112,92,94,92,100,100,111,109,100,99,104,99,114,98,68,108,88,102,111,92,107,100,107,111,99,94,102,102,107,97,104,91,102,104,97,97,105,112,121,125,113,104,103,95,109,97,104,106,93,99,106,112,95,96,99,97,109,113,91,109,104,87,99,104,73,94,110,96,98,110,98,107,97,89,97,91,109,105,108,97,95,100,80,104,98,98,103,108,110,90,95,110,98,112,104,96,112,100,109,100,98,92,98,108,105,108,102,110,103,101,99,77,101,102,105,108,104,98,107,97,113,99,91,97,94,93,106,113,98,94,112,108,109,109,100,104,106,111,103,109,111,109,109,109,102,100,107,95,113,110,110,97,98,102,102,106,112,73,90,96,102,103,110,105,86,107,104,105,90,102,103,108,95,102,99,95,111,105,92,112,104,119,113,103,87,103,108,105,106,94,116,101,104,114,106,103,97,118,98,100,103,95,107,99,100,104,94,111,109,88,83,95,101,114,106,112,81,107,102,105,89,105,106,113,101,109,111,106,100,102,114,101,101,100,99,98,97,96,106,98,109,104,95,95,87,97,102,105,95,91,109,112,92,100,115,113,91,107,110,100,102,86,103,103,102,103,87,102,105,105,112,112,107,98,106,99,92,100,111,79,98,112,96,92,100,102,94,113,111,114,98,100,109,105,107,106,108,102,96,105,108,109,104,92,110,110,104,101,91,94,110,92,101,95,102,96,96,95,103,99,105,99,103,97,101,108,105,102,105,114,88,104,116,109,116,97,107,99,116,107,97,103,103,103,99,100,96,97,95,91,95,103,95,101,102,100,97,108,101,105,97,108,95,103,99,106,108,101,96,99,106,102,106,110,98,89,103,110,108,102,96,106,102,113,107,102,98,99,100,94,103,115,106,115,107,104,110,75,99,104,94,93,98,93,109,94,111,109,105,120,89,99,107,88,78,100,108,102,115,97,113,91,94,112,106,104,101,98,103,109,111,102,109,112,97,98,84,97,96,110,102,107,99,98,107,87,102,92,92,115,100,91,91,84,102,108,122,102,115,97,108,94,109,99,110,97,113,93,102,102,99,106,117,98,103,103,104,87,96,100,100,102,94,86,94,104,100,102,99,98,104,92,109,102,95,97,94,108,91,98,114,100,117,105,106,96,96,87,98,102,97,102,91,93,101,105,108,101,110,95,102,113,85,93,106,96,99,103,99,112,105,106,100,108,108,96,89,100,101,97,110,98,100,96,102,106,104,112,116,91,103,100,97,108,112,99,93,98,90,100,97,103,88,104,102,98,101,97,107,110,104,98,100,92,102,105,108,110,106,102,96,112,103,101,98,97,101,106,106,102,104,97,98,91,83,91,116,101,101,96,106,99,104,92,101,112,103,97,98,101,103,75,108,106,109,106,84,102,84,99,107,97,99,95,104,94,113,93,109,102,102,100,103,109,105,98,99,101,90,91,96,104,103,100,90,101,99,117,86,101,103,104,87,104,92,107,98,95,102,94,110,99,94,92,105,104,95,102,113,98,99,107,109,101,104,91,117,98,96,99,101,108,106,109,102,92,109,103,103,100,87,105,101,120,106,102,96,101,101,92,110,103,91,99,96,104,98,101,104,98,104,102,106,109,107,101,110,96,95,104,104,102,94,96,113,109,98,104,104,94,98,108,90,95,89,104,97,113,94,110,99,94,104,90,107,96,101,96,98,109,94,124,95,125,100,100,111,99,104,92,114,106,98,99,103,113,113,112,93,100,100,108,100,105,93,100,95,99,105,106,100,117,101,110,109,97,129,115,101,90,104,103,102,91,107,109,93,93,104,112,106,97,110,103,96,102,104,109,104,105,103,110,100,112,110,106,98,100,95,104,83,107,93,100,102,104,101,110,103,93,104,103,98,104,98,91,102,114,120,98,99,103,104,96,110,93,106,93,102,91,97,103,112,106,92,97,131,96,97,106,89,106,103,104,105,89,97,91,95,96,105,100,101,108,111,109,102,103,105,109,114,95,90,102,87,95,111,95,96,96,106,94,101,113,107,108,108,104,114,103,98,91,103,104,112,104,98,119,75,102,97,97,140,100,92,97,96,109,114,95,105,111,92,109,108,108,117,97,112,112,117,116,102,108,97,108,111,102,105,101,104,106,100,98,107,98,110,110,87,101,95,86,103,110,94,106,109,95,113,108,95,92,93,97,106,102,117,118,106,90,107,100,93,107,109,119,95,105,116,95,90,84,91,102,104,89,102,107,110,99,110,111,100,110,99,108,87,92,87,112,105,108,102,113,108,94,113,94,97,102,115,112,95,99,83,108,97,100,106,100,98,99,98,106,93,109,110,113,101,101,102,98,111,105,105,106,106,100,112,95,99,103,104,101,95,99,102,97,117,91,96,99,108,91,102,121,107,97,105,97,94, +651.95752,139,96,104,107,104,102,101,106,113,98,96,111,76,106,106,110,99,103,93,99,112,100,105,102,95,104,106,104,113,101,109,102,99,104,90,95,100,101,109,106,94,102,81,94,98,124,96,106,114,110,113,91,109,109,115,91,108,94,91,100,105,116,99,98,70,112,100,93,82,104,113,113,98,97,93,98,103,101,107,110,90,104,102,96,102,102,109,98,106,90,100,97,115,97,100,105,100,100,96,99,117,95,104,86,103,104,106,104,113,99,112,105,98,114,106,108,110,97,111,103,112,107,110,99,112,109,118,111,103,92,95,109,109,107,102,95,104,103,104,99,103,102,96,112,106,108,126,90,115,98,104,82,96,95,109,108,95,109,108,112,100,118,107,101,101,105,99,106,96,122,63,109,99,108,98,79,95,91,104,99,99,109,111,96,95,100,101,108,105,90,102,105,109,96,102,113,88,110,121,101,102,103,100,105,96,100,97,116,104,103,95,102,108,110,99,102,110,117,103,100,112,111,104,104,97,111,108,114,109,103,89,106,100,121,105,97,103,88,113,111,98,97,123,104,113,68,105,98,107,89,104,107,87,104,94,114,110,90,90,95,101,105,88,111,92,98,118,107,100,103,110,98,104,99,105,111,122,109,107,94,94,98,99,119,98,91,102,103,97,100,87,109,113,113,99,106,105,105,104,117,94,98,109,102,97,96,100,90,97,107,87,106,106,97,102,109,96,102,111,109,115,97,96,86,101,99,93,104,102,107,89,119,107,114,99,95,113,97,94,105,107,110,109,104,106,111,102,110,108,94,101,104,105,96,105,107,112,96,108,97,102,101,111,102,95,88,102,102,97,112,105,91,120,105,120,105,104,91,111,106,111,103,106,104,113,97,104,105,107,109,106,109,99,103,96,96,91,99,64,109,97,108,96,104,98,105,100,102,104,87,99,91,99,95,104,85,110,97,98,106,99,99,92,111,92,93,91,86,114,110,108,107,102,95,72,102,112,108,99,107,102,101,67,110,95,112,109,102,105,103,109,98,99,107,109,113,95,100,116,98,107,113,99,103,105,104,96,97,94,90,102,106,96,96,101,100,111,104,101,102,100,112,103,102,101,98,104,103,95,98,118,114,109,100,94,96,106,111,104,105,116,98,101,107,102,112,98,115,100,113,109,120,108,92,115,108,100,100,106,100,104,96,101,117,99,101,107,102,103,101,95,99,95,112,103,77,108,102,107,101,101,103,106,114,105,113,115,96,93,100,102,89,109,90,107,99,101,102,110,98,99,105,93,114,103,109,100,104,103,112,91,105,96,107,105,102,96,101,101,105,102,95,100,108,104,105,101,117,111,92,104,97,106,100,98,112,94,106,104,102,108,100,102,105,91,99,105,103,110,108,102,98,99,100,112,92,108,79,115,108,114,95,91,108,107,100,112,87,105,104,104,103,97,98,95,106,94,88,105,109,106,102,98,100,96,96,96,101,105,111,96,106,103,102,106,102,107,107,108,112,108,99,112,106,114,113,103,87,103,114,93,114,108,111,106,104,116,99,110,104,128,100,84,99,99,84,100,100,105,110,115,94,91,106,103,102,114,129,106,105,109,98,98,110,104,116,109,79,102,94,107,100,98,101,99,95,103,105,112,98,98,109,112,114,98,116,115,105,109,100,103,94,108,108,97,109,90,94,108,102,117,100,110,105,101,107,102,103,100,108,105,100,99,95,115,109,107,105,102,92,116,113,91,88,93,111,96,112,102,100,117,101,105,106,96,69,105,97,95,110,95,118,107,99,130,117,107,104,79,106,106,107,98,123,106,107,103,110,108,105,115,98,113,110,109,105,105,105,101,98,116,99,92,100,74,101,110,95,107,101,107,96,96,109,99,99,103,101,95,99,112,99,105,106,105,110,104,102,108,103,99,106,112,109,97,81,88,104,101,88,102,103,97,127,99,104,110,101,117,112,102,97,105,107,95,110,102,97,108,89,114,110,130,99,95,106,94,92,104,88,86,104,101,103,88,108,95,118,106,99,105,96,107,105,105,96,109,101,103,112,95,105,107,95,101,98,91,79,99,112,108,102,113,104,98,100,106,102,96,100,102,105,105,93,102,97,94,106,117,110,91,100,106,102,91,115,102,98,106,117,105,91,107,88,97,92,97,110,103,102,96,93,97,100,107,105,99,101,109,120,109,108,106,102,104,104,100,101,100,105,101,94,106,113,98,125,122,82,115,98,104,108,112,106,99,94,91,104,97,89,99,103,121,125,97,95,91,83,91,102,91,107,104,89,122,114,105,106,105,116,99,106,112,110,95,103,103,90,108,110,104,86,94,93,105,111,106,90,105,103,102,105,113,94,109,97,103,107,109,100,107,106,95,109,98,100,108,105,103,103,94,102,108,99,92,117,94,118,100,107,98,106,93,101,125,100,96,96,114,102,111,105,90,104,99,96,101,103,98,91,101,125,97,95,102,107,99,91,116,96,104,103,111,100,95,105,119,111,104,109,103,102,97,98,104,109,107,99,107,106,99,114,103,112,93,93,108,102,99,108,101,103,102,100,108,105,92,92,112,106,113,106,105,72,99,101,112,75,107,97,94,102,106,115,100,96,102,95,103,111,112,103,115,93,110,109,95,132,108,105,103,94,98,61,112,111,104,98,114,112,93,91,110,103,101,106,88,112,98,98,93,106,90,104,107,113,107,103,90,105,99,80,121,113,95,104,101,109,102,85,108,110,103,114,97,99,97,97,109,99,105,113,98,115,119,140,107,106,93,97,109,101,87,112,107,109,102,97,91,93,98,103,96,104,107,111,125,107,106,108,108,99,111,95,101,113,112,108,103,107,109,105,113,101,96,106,95,109,106,107,104,109,110,114,103,105,94,102,96,113,97,124,108,113,103,97,101,95,101,101,98,93,95,100,103,107,104,93,107,91,103,113,98,104,113,107,109,104,94,109,96,111,111,107,102,101,109,108,103,106,112,106,95,109,119,116,97,105,124,98,117,99,106,107,102,92,92,104,100,98,102,94,103,108,104,108,102,102,109,98,111,101,100,108,103,100,98,98,107,111,102,99,102,108,105,98,97,102,116,101,110,107,124,105,112,101,103,104,108,103,102,93,95,105,112,117,100,108,91,105,109,109,103,104,107,87,107,104,99,104,92,122,104,107,111,95,106,102,96,106,105,96,99,112,101,105,104,106,107,108,98,100,84,106,100,95,80,100,82,107,113,112,107,105,96,100,100,96,113,103,110,95,94,102,107,112,112,117,97,90,91,93,95,104,94,108,110,90,100,93,111,102,107,109,99,111,117,105,107,113,102,115,98,80,100,104,106,94,96,101,105,105,99,103,108,102,102,108,104,101,105,89,100,102,97,105,70,113,107,85,113,112,115,103,102,95,104,103,107,109,104,113,109,113,95,111,109,105,97,114,101,103,94,95,90,94,105,116,91,107,90,115,102,90,87,95,101,100,102,98,102,104,102,96,104,106,103,106,103,83,113,101,106,111,109,114,108,115,108,104,113,107,106,106,105,91,106,105,95,104,105,108,106,99,101,106,101,123,108,108,110,100,96,105,98,98,120,97,96,112,95,98,102,107,110,101,107,107,78,110,109,104,110,112,97,100,116,104,109,110,99,111,98,107,109,78,79,103,116,105,98,114,102,103,99,109,91,136,112,107,107,99,96,87,119,96,98,84,94,86,109,106,108,108,118,102,109,92,104,100,94,102,99,103,103,102,107,109,114,97,94,85,95,100,98,105,108,99,106,108,84,86,125,95,112,92,97,96,110,104,96,92,109,119,93,110,109,103,99,96,105,96,99,86,110,105,104,103,97,99,94,96,106,101,91,111,106,105,110,103,94,103,107,97,93,101,98,104,95,107,100,102,106,99,89,98,100,110,108,99,96,92,103,95,98,79,102,105,112,94,104,102,107,103,92,116,113,112,103,105,105,107,99,112,99,95,98,82,102,69,104,113,99,86,87,105,119,111,98,110,109,98,114,102,110,95,104,103,105,101,111,103,103,95,100,104,102,101,109,99,105,106,100,103,105,109,102,100,112,109,105,107,104,94,100,105,113,101,130,100,110,108,99,104,104,100,104,100,105,116,105,100,99,111,100,95,93,110,108,102,112,92,106,99,109,96,100,101,101,101,104,101,87,104,104,114,108,104,107,99,112,109,108,99,100,104,104,119,114,109,108,110,101,113,103,97,111,99,83,97,105,99,100,106,97,104,106,108,114,104,109,102,98,108,93,107,93,80,103,106,102,115,110,107,107,97,99,100,100,109,108,110,102,105,108,103,104,109,99,113,124,99,107,114,94,96,117,103,130,101,101,113,102,103,121,97,110,91,113,110,96,100,105,107,104,113,105,101,104,113,106,111,106,112,102,114,103,112,112,115,99,95,101,107,95,105,87,99,105,95,110,83,92,97,104,105,106,96,98,103,108,109,109,103,95,102,97,90,105,99,94,92,94,100,102,95,97,100,92,102,105,109,101,108,106,121,100,113,107,96,101,128,103,102,102,97,115,110,93,88,105,106,100,109,107,112,104,108,107,108,107,96,128,104,111,116,103,99,113,96,99,109,104,102,90,103,109,109,99,99,97,103,95,107,90,120,99,109,95,100,104,94,91,108,108,110,102,111,105,102,105,94,108,98,109,97,96,106,90,100,107,97,105,99,106,81,95,106,113,101,103,101,100,98,116,100,107,100,97,117,102,111,99,98,88,104,115,100,106,104,112,110,89,102,100,100,114,108,102,94,96,100,106,102,106,109,101,96,100,92,110,105,99,94,98,98,99,108,107,107,108,105,92,106,104,112,97,107,97,100,96,112,91,65,92,109,106,118,96,102,98,86,109,99,112,117,96,88,109,95,110,94,107,95,119,91,91,111,112,93, +652.09869,110,98,97,95,127,106,105,99,93,106,113,107,101,96,96,104,102,114,100,112,93,106,105,95,102,86,95,97,99,105,90,95,96,99,103,98,111,92,106,95,87,105,107,106,107,99,102,108,114,96,116,112,102,114,97,107,100,100,85,81,106,93,88,91,103,98,101,87,107,106,106,110,103,110,109,112,107,112,112,100,91,108,94,83,92,88,110,100,102,93,116,97,102,106,87,100,84,104,99,90,101,118,95,82,101,117,107,107,106,92,114,108,97,102,109,101,101,83,108,94,90,106,103,103,93,121,106,105,96,107,107,104,96,102,101,99,92,107,93,104,94,100,97,106,106,101,105,116,96,106,116,105,122,84,101,107,104,95,85,96,96,116,102,103,96,116,109,98,102,81,99,101,110,91,97,108,94,98,110,112,97,97,114,106,101,111,106,83,110,96,79,98,112,95,116,101,105,103,108,100,93,100,97,92,97,97,105,91,113,104,107,96,100,106,94,106,107,105,92,105,106,106,107,104,94,110,93,99,102,102,97,95,99,106,103,108,101,102,103,105,105,93,113,90,113,108,78,102,95,100,112,134,104,93,99,103,84,100,91,110,110,102,96,100,88,100,104,99,94,101,108,107,98,96,101,98,98,104,104,98,118,95,129,100,101,95,109,109,92,100,113,99,113,98,114,96,113,104,105,100,106,92,107,109,110,98,109,120,103,124,95,98,103,99,111,100,112,109,100,101,98,98,109,102,99,102,98,101,110,102,112,95,96,101,104,102,99,96,94,116,98,100,102,89,93,120,98,100,104,94,100,96,132,96,104,94,107,108,104,103,99,98,101,103,102,96,97,109,100,109,100,101,115,109,104,97,126,90,100,104,110,100,91,99,94,68,76,107,95,104,122,95,83,105,83,97,97,106,105,91,103,86,104,93,103,109,95,106,109,94,99,105,97,99,115,103,109,96,112,95,105,111,97,99,104,106,94,105,112,108,95,102,106,87,111,98,104,113,107,106,95,81,108,90,114,110,109,98,104,126,105,117,96,125,113,112,109,106,100,107,98,99,106,103,93,109,91,118,104,107,96,103,109,94,99,106,114,109,111,100,121,108,107,103,103,92,107,100,97,104,100,112,107,105,81,108,92,99,110,98,101,102,97,113,88,107,105,95,106,95,121,115,104,102,106,100,101,100,97,98,104,96,111,96,97,99,103,112,105,102,101,111,104,99,109,114,99,99,102,104,102,104,98,101,114,94,94,99,123,95,99,94,96,92,110,88,100,107,104,105,101,101,95,103,111,100,111,90,107,97,92,91,101,103,106,107,95,102,97,98,100,91,100,109,103,109,97,82,109,90,110,96,111,110,98,115,96,99,105,99,104,110,106,110,94,86,103,99,103,101,92,105,104,98,104,99,108,106,105,95,107,107,100,98,95,104,92,110,96,112,99,100,106,111,96,116,100,100,106,95,101,100,100,108,106,82,98,90,99,120,100,120,104,116,103,103,101,109,104,90,103,96,106,95,101,109,94,99,64,111,108,108,100,104,115,103,100,99,110,98,112,101,111,102,105,100,100,110,102,103,109,87,112,106,107,103,112,91,95,100,101,96,107,105,105,129,99,104,99,99,96,108,108,104,128,113,105,97,114,106,97,97,98,104,107,99,95,106,87,108,104,107,96,97,98,110,113,104,101,105,107,97,97,90,105,98,98,99,104,104,103,94,109,103,101,95,102,107,93,97,99,105,95,95,103,105,102,96,118,97,112,94,112,91,96,109,119,97,117,80,111,84,102,106,110,98,100,108,63,108,103,116,106,88,110,105,100,103,100,103,103,90,102,101,109,110,117,94,102,104,98,106,103,98,119,104,91,111,107,109,105,102,101,109,111,105,103,96,86,108,106,102,114,96,102,112,102,112,114,104,104,99,98,94,104,95,90,101,108,106,105,97,103,95,94,105,114,107,98,112,96,109,100,110,104,100,96,95,105,112,99,95,119,116,100,113,103,98,106,84,99,101,116,102,104,101,102,102,96,101,95,106,103,108,93,94,99,98,95,102,87,106,107,109,109,97,98,78,108,96,110,100,113,103,98,106,91,114,97,102,118,101,113,101,99,98,108,109,82,84,101,103,100,101,97,103,98,108,90,101,102,98,103,96,103,99,101,113,92,106,104,95,110,114,103,112,101,105,108,120,109,100,91,96,106,92,102,131,69,105,97,100,99,102,102,99,112,112,100,106,103,98,85,105,102,96,114,102,73,101,101,112,112,109,91,107,102,101,101,102,103,96,96,98,104,98,100,110,92,101,101,103,95,94,99,102,107,101,105,108,115,92,93,97,98,77,99,106,102,98,102,98,111,103,103,98,101,103,104,120,111,98,112,101,93,99,104,108,102,103,110,103,91,97,100,109,106,111,107,102,90,110,106,113,94,100,104,104,101,97,97,100,105,108,108,103,102,99,89,90,92,107,76,97,94,105,105,98,80,105,102,99,102,103,71,108,106,112,115,119,101,102,100,92,97,106,103,100,86,102,97,116,109,105,97,93,106,95,92,107,111,91,121,97,118,102,91,99,104,105,103,96,109,91,102,101,108,100,101,112,91,102,115,107,106,103,95,98,103,94,105,116,120,98,101,101,108,104,117,100,108,89,97,112,112,118,103,98,111,98,96,105,90,100,97,99,113,94,106,113,101,93,86,113,106,94,104,103,101,99,101,98,105,106,94,99,103,97,113,102,127,90,107,107,109,112,101,102,102,105,115,103,102,110,109,108,99,103,99,104,88,112,112,98,90,104,103,113,108,102,102,115,112,112,102,104,112,105,101,111,97,112,108,91,100,103,112,95,106,109,104,98,107,107,101,105,95,112,97,99,92,101,117,109,101,104,97,105,107,109,102,97,94,111,113,101,98,102,101,101,108,101,105,87,97,96,91,107,99,108,108,104,108,100,98,108,100,95,101,103,97,113,98,98,103,101,109,100,94,104,99,107,94,99,108,121,101,122,108,91,94,100,112,113,102,94,108,90,118,117,87,97,96,99,110,115,102,84,101,101,97,99,108,101,96,102,103,86,101,106,103,114,107,102,99,111,103,102,95,103,113,104,108,105,83,101,108,112,99,109,103,101,106,110,100,95,87,107,105,109,99,98,105,110,98,117,90,104,99,96,91,104,111,101,113,104,103,92,113,96,104,101,85,107,132,103,102,106,100,97,106,113,100,102,100,93,106,102,98,105,101,110,95,91,104,101,106,106,106,104,101,102,113,113,109,108,100,106,107,106,100,110,95,109,104,102,108,87,96,104,105,100,112,108,72,98,105,106,94,95,103,100,101,113,108,104,97,99,111,109,103,88,110,100,101,109,106,92,114,86,106,101,96,108,112,107,105,101,97,95,95,109,97,95,106,107,110,96,96,99,93,111,97,102,101,101,104,102,104,112,117,80,89,105,107,104,101,102,105,104,106,100,101,108,90,109,100,99,99,93,119,107,102,92,102,105,99,99,96,105,108,112,104,101,100,96,120,88,96,97,87,105,101,117,87,102,108,105,92,113,110,100,119,87,108,102,107,109,103,107,102,94,100,119,99,100,94,97,99,102,98,93,103,120,105,101,95,116,105,97,104,123,107,107,81,90,105,96,99,110,93,96,106,103,95,88,99,109,109,107,98,105,99,100,94,104,91,94,96,98,100,109,96,97,92,103,105,107,106,93,95,102,97,108,101,98,102,87,106,83,104,112,96,111,114,98,105,90,104,100,97,105,93,102,114,109,106,105,100,101,102,105,107,101,99,102,103,94,98,103,102,115,95,103,90,105,105,95,94,91,99,100,104,93,104,105,104,105,96,119,84,103,96,115,97,102,94,97,95,94,107,96,97,106,94,109,96,98,107,100,104,91,107,106,113,96,104,111,79,100,101,96,110,119,101,97,105,105,96,108,98,106,104,106,93,98,113,100,103,103,111,75,100,104,106,98,106,109,103,117,88,97,98,110,106,95,102,113,99,95,112,101,110,116,111,93,98,89,112,100,106,100,98,107,95,96,105,100,102,105,106,96,98,108,110,118,96,111,101,99,112,92,101,108,93,103,97,95,101,98,94,106,95,115,118,108,113,108,111,116,107,109,105,100,102,102,101,88,100,104,109,99,102,91,101,92,102,90,105,107,95,97,93,98,104,101,109,109,91,97,101,106,108,104,100,88,102,98,96,102,116,98,104,113,98,87,111,98,102,99,95,102,104,100,78,99,100,102,103,85,90,105,106,93,104,107,75,101,100,94,111,94,112,96,89,99,114,99,84,104,96,100,97,90,91,84,98,99,96,104,90,91,104,105,101,96,90,109,103,107,111,99,100,111,103,102,100,98,101,100,111,103,103,110,105,94,102,119,121,108,104,107,101,110,102,106,112,84,107,97,92,92,104,99,97,113,99,95,110,101,112,98,119,102,91,101,89,106,99,96,102,97,106,105,104,87,87,97,97,94,96,100,100,113,102,91,102,97,102,102,109,106,107,108,110,109,101,104,101,94,92,92,110,98,97,105,107,142,98,90,101,109,90,109,99,102,88,94,107,81,94,94,113,99,104,104,100,96,94,100,103,94,91,95,104,116,104,106,96,114,96,99,99,95,88,107,105,109,100,117,109,99,110,97,113,101,99,88,113,105,96,104,110,101,101,94,99,85,92,104,102,99,97,97,112,94,102,98,105,105,103,109,104,108,104,121,102,95,100,105,93,107,97,109,103,104,97,104,118,89,110,107,65,94,110,97,87,99,114,94,110,99,105,103,91,108,128,95,106,106,102,101,101,94,106,105,99,101,101,113,108,95,106,101,107,99,94,113,91,84,109,98,116,111,104,104,101,102,92,96,105,112,102,100,98,101,87,80,96,84,105,98,89,101,103,119,125,107,91,89, +652.23993,100,99,98,121,105,111,106,99,78,101,103,92,120,103,114,100,106,110,120,95,109,100,101,98,104,104,96,109,91,116,89,99,101,98,96,108,121,76,94,98,101,97,106,101,103,110,97,103,98,106,109,99,101,66,108,87,114,95,96,97,93,103,98,101,105,102,90,75,107,88,101,111,87,97,97,98,103,122,99,104,99,98,110,107,105,96,100,108,98,113,92,99,108,114,104,104,110,93,100,106,99,106,110,113,104,103,100,103,105,95,107,93,102,72,105,107,100,110,107,105,90,100,110,104,100,101,101,92,105,93,105,93,99,92,104,104,104,91,101,98,109,104,103,104,109,91,105,98,102,99,96,92,95,106,91,103,100,95,99,99,103,111,99,95,99,98,97,107,90,98,118,110,96,98,116,107,104,97,79,109,87,98,88,107,101,110,102,91,101,118,101,109,102,108,101,114,99,100,103,94,102,97,104,106,98,102,101,110,97,113,87,99,108,101,95,107,97,100,94,101,89,106,101,105,102,103,108,96,100,111,91,92,111,108,109,110,101,102,120,100,96,98,96,100,89,109,106,104,102,99,97,97,110,100,107,107,94,100,105,89,93,105,94,102,96,103,100,96,99,101,104,91,68,92,98,100,104,105,99,104,103,101,102,108,108,100,96,100,97,104,101,108,109,103,111,99,104,102,106,112,106,96,100,98,95,108,96,107,98,112,92,103,93,98,95,95,97,126,101,95,93,92,94,103,100,98,107,94,96,108,99,105,108,104,111,96,104,106,101,111,98,103,96,87,96,113,88,106,108,105,107,109,102,109,103,104,98,105,105,105,92,93,101,105,93,94,96,123,99,110,98,104,106,97,105,97,109,110,120,99,99,100,102,111,104,99,101,97,102,102,98,106,97,99,106,96,95,101,106,106,102,120,95,100,100,102,96,103,101,106,112,107,102,111,105,91,111,99,101,93,102,96,113,109,103,98,86,107,91,106,113,98,79,112,106,97,111,114,99,122,109,98,105,102,104,109,105,101,103,100,99,102,95,90,95,105,95,103,122,112,95,83,116,107,95,99,92,108,106,89,102,107,101,97,111,104,110,109,103,105,105,107,99,102,96,109,105,108,106,90,91,98,99,91,105,103,91,107,107,101,99,104,103,120,107,106,102,102,98,92,112,104,101,105,106,108,116,87,96,98,103,103,96,103,100,99,118,87,77,105,93,99,82,99,105,107,104,104,103,106,83,99,100,109,122,86,104,106,101,111,110,113,98,97,97,105,100,94,100,99,110,102,97,99,92,104,103,124,101,104,98,99,98,106,101,104,101,96,100,101,110,108,90,93,100,99,116,100,96,106,105,110,99,108,105,103,97,101,99,84,98,97,108,97,94,100,97,118,98,63,91,102,101,100,101,103,103,96,106,105,118,108,104,95,104,99,95,95,89,108,104,100,84,104,99,102,98,84,102,101,99,100,108,86,107,105,91,98,98,100,90,95,99,122,107,121,110,107,107,96,116,92,99,108,95,98,104,91,107,101,101,107,96,102,93,107,109,97,107,106,113,102,100,92,110,116,103,96,84,111,108,93,105,103,100,110,92,114,107,87,100,108,97,101,91,102,103,114,93,103,105,91,106,103,100,106,83,103,112,105,99,101,105,95,95,99,91,109,101,110,103,113,92,104,114,109,95,102,99,99,107,95,101,92,100,114,99,116,98,107,104,108,103,104,107,107,87,107,107,103,113,105,94,106,93,116,99,105,94,97,113,96,103,100,102,100,94,101,109,87,98,95,103,133,93,93,100,93,101,107,99,111,112,105,115,106,108,110,102,93,93,107,93,106,110,100,104,102,123,102,106,102,106,116,108,113,111,110,103,102,104,105,110,103,102,98,116,104,111,102,95,100,106,105,101,101,94,113,102,108,100,110,109,108,111,97,97,104,106,100,92,92,95,93,104,97,107,111,102,104,113,101,100,112,108,96,118,104,102,100,99,101,99,93,99,105,95,98,84,101,112,113,107,100,107,104,106,112,102,100,104,80,101,113,112,101,106,108,110,103,97,129,102,106,90,98,104,105,101,103,107,109,90,100,103,97,112,104,97,112,109,108,104,108,100,107,100,69,103,106,94,106,99,95,100,104,115,109,104,106,100,103,103,96,107,100,95,111,111,102,106,103,96,98,108,104,100,99,91,105,109,113,104,106,90,117,101,103,91,97,96,102,85,100,106,114,108,101,93,111,105,112,98,92,91,99,98,92,109,105,100,93,103,96,93,97,98,98,102,78,116,100,99,114,104,96,97,98,91,106,97,105,107,103,108,98,100,108,101,85,105,109,93,92,99,100,105,100,103,103,100,93,97,107,102,111,100,113,108,91,99,114,101,99,107,109,107,110,116,99,100,109,113,105,99,102,102,107,109,106,103,106,108,105,93,96,93,113,102,105,92,108,103,90,108,86,102,109,104,114,92,99,102,97,103,117,98,104,90,106,106,119,113,97,95,93,102,113,103,95,108,96,116,100,108,107,106,99,106,100,106,110,101,97,97,116,105,105,109,105,101,99,108,102,113,101,91,111,97,94,101,98,110,99,108,95,100,104,102,107,111,94,98,99,93,111,124,112,106,106,108,100,108,104,101,98,101,107,98,103,104,89,112,95,100,126,114,105,110,99,101,108,109,101,98,99,106,107,92,107,105,102,93,105,103,103,111,96,108,99,89,116,108,95,104,104,102,97,107,107,105,106,99,105,101,96,106,94,114,107,99,115,104,112,100,102,96,106,111,104,99,111,93,108,106,113,99,113,111,105,93,103,97,105,110,106,96,91,104,103,104,112,107,95,104,105,109,100,102,99,105,99,117,109,96,107,96,112,91,96,103,99,105,116,98,103,97,107,101,106,94,101,105,102,100,89,107,109,103,111,98,112,105,98,111,96,102,108,103,102,105,101,107,104,75,107,100,105,105,102,99,106,91,104,94,108,99,117,93,99,102,109,105,86,103,113,101,105,99,104,90,107,108,102,103,90,105,104,100,113,114,101,111,107,109,105,101,93,102,111,110,103,106,97,101,102,106,116,108,100,109,107,95,110,106,99,102,109,117,95,91,105,105,108,110,92,103,92,106,100,113,98,106,113,104,111,100,103,112,121,109,103,69,98,103,111,117,104,111,90,103,103,111,101,98,103,104,91,107,95,97,91,106,96,93,102,102,87,100,100,100,109,110,106,102,102,101,103,110,103,126,107,106,88,103,104,103,96,113,103,110,105,102,99,105,94,92,127,113,117,95,96,101,96,101,107,101,101,93,99,98,95,97,107,109,106,109,102,104,87,109,98,97,98,99,103,112,106,117,108,100,110,109,97,104,103,107,97,105,116,98,103,89,106,106,109,96,79,99,102,100,93,91,95,108,97,100,101,112,105,103,106,115,112,110,97,111,100,106,84,102,113,98,99,86,100,108,110,99,103,99,101,104,105,100,105,104,103,113,100,100,105,96,98,100,114,109,110,124,96,107,107,90,93,103,110,105,95,107,102,97,97,108,101,95,99,106,102,99,101,94,101,96,88,98,109,99,114,95,98,110,107,109,98,99,108,108,101,95,98,106,101,91,99,100,108,115,102,102,94,100,102,98,123,104,93,99,109,100,106,91,101,99,101,107,106,113,93,97,91,100,89,104,97,100,112,103,100,100,105,104,105,106,108,94,96,104,97,99,102,116,102,120,112,102,106,101,101,108,88,93,99,95,104,107,95,110,102,111,100,119,103,92,100,96,101,109,105,94,102,79,98,104,100,104,101,96,109,99,113,113,99,95,111,102,101,96,112,100,95,109,92,105,90,82,98,102,86,101,103,93,101,110,102,92,104,92,106,105,98,109,97,102,93,110,93,105,101,97,120,103,89,106,99,99,105,100,94,98,119,95,99,99,108,103,100,95,114,108,93,98,100,109,117,101,106,109,111,105,107,102,104,110,103,101,105,102,98,103,94,103,113,87,113,113,105,111,99,105,105,116,108,84,96,101,105,103,96,109,96,98,106,98,96,109,114,108,110,105,97,105,95,96,111,116,99,131,101,99,104,95,104,97,98,99,107,110,121,112,94,98,98,109,99,104,113,102,109,117,106,101,110,93,108,105,113,106,89,101,105,111,96,91,115,99,100,99,102,115,105,105,93,103,104,105,116,110,90,111,94,96,96,107,111,96,99,105,116,116,101,110,109,108,102,104,103,106,104,97,111,98,106,118,95,106,105,110,108,105,100,98,98,102,105,94,107,104,97,101,92,100,112,108,113,86,111,94,93,95,103,102,105,103,95,115,102,101,96,99,89,107,82,113,115,105,109,100,103,104,115,105,113,110,79,101,95,109,113,102,95,101,107,108,110,108,108,107,95,105,94,91,118,110,93,101,106,98,107,102,95,92,82,99,105,102,101,97,107,106,93,107,104,105,98,101,97,109,98,104,99,114,102,112,116,101,81,101,91,111,104,116,94,108,102,102,106,104,106,101,102,107,103,99,105,78,110,99,101,123,79,94,101,100,99,112,104,101,103,101,98,91,107,94,102,107,95,120,98,100,99,94,99,104,105,97,102,102,97,101,101,101,95,105,107,124,100,95,96,95,100,104,104,95,105,108,102,96,110,103,88,94,111,107,91,109,93,110,108,98,91,95,101,102,102,105,94,107,96,93,98,98,96,104,101,112,112,98,89,100,108,98,109,89,106,99,112,98,82,93,96,107,98,95,99,102,110,102,99,109,97,109,118,104,83,90,106,93,115,113,102,117,98,81,99,99,98,104,99,104,111,99,113,97,110,94,106,98,101,105,105,116,100,107,95,114,102,106,118,111,103,100,92,112,102,98,87,91,108,111,99,107,108,102,96,108,95,92,109,85,99,110,102,105,87,101,117,96,96,103,100, +652.3811,95,94,105,104,96,117,101,88,112,97,100,120,120,106,99,79,103,121,142,110,116,102,119,103,102,98,99,96,96,93,119,104,122,112,95,106,105,103,102,99,101,104,107,109,117,103,105,94,98,99,106,114,93,86,108,93,105,82,97,84,95,104,93,93,93,106,108,104,100,98,91,107,96,109,99,103,87,99,102,83,96,113,95,100,90,99,98,101,98,95,99,112,102,130,96,105,91,102,87,94,115,94,92,107,112,93,92,104,99,98,94,98,85,110,96,99,93,104,102,111,98,102,96,95,92,84,105,97,110,108,100,114,98,102,107,108,91,113,71,101,83,91,91,102,107,104,105,91,105,105,95,105,113,95,88,101,97,88,111,90,98,106,85,104,98,93,95,101,106,92,99,120,98,103,116,102,103,99,106,107,91,88,114,107,103,104,94,96,103,99,101,107,101,99,106,105,104,100,106,101,105,98,104,101,108,97,87,103,104,106,100,102,97,107,107,101,100,93,97,103,113,106,93,110,102,107,119,100,114,107,107,96,108,110,95,105,96,94,100,80,100,93,92,98,96,106,98,94,112,87,98,103,103,112,104,96,101,105,101,119,97,95,99,105,99,118,101,95,99,100,103,108,91,67,109,114,94,98,110,90,70,101,113,113,116,99,97,105,98,101,108,108,107,106,114,106,105,105,104,97,94,109,100,116,89,106,101,90,107,115,95,115,108,104,109,102,98,105,90,99,95,94,104,99,104,90,101,96,114,115,103,93,101,97,106,98,96,93,99,106,94,110,94,91,104,114,117,109,105,111,106,104,105,102,95,94,108,102,102,100,95,91,104,97,103,97,116,111,98,100,102,92,100,104,114,108,97,106,102,102,111,97,111,108,98,90,86,105,112,99,98,99,109,107,103,100,103,113,101,119,104,102,106,108,107,104,112,113,100,106,99,103,105,101,108,96,95,102,110,113,104,96,99,101,94,98,98,92,103,118,97,106,105,87,100,95,110,104,100,106,97,108,66,114,94,111,104,99,114,102,103,112,102,99,91,105,97,101,93,100,99,104,102,116,104,108,111,102,107,108,103,108,87,89,100,94,98,120,105,102,88,106,108,108,100,106,105,107,92,97,109,109,101,100,98,99,94,109,97,102,104,118,97,107,106,99,92,115,94,116,112,95,94,101,102,99,101,106,97,114,102,90,101,106,103,112,112,110,105,99,99,100,75,97,95,97,107,100,105,99,91,110,95,104,111,106,98,96,101,124,96,109,105,101,111,102,109,99,103,100,104,104,105,116,103,105,101,110,109,93,99,105,92,110,114,91,92,94,97,103,119,92,105,104,116,104,135,110,105,98,109,114,88,98,113,104,98,92,100,100,99,119,98,101,102,98,87,112,111,103,98,92,114,98,102,108,110,98,100,96,100,107,97,97,84,102,101,109,106,101,95,107,102,108,102,109,99,95,114,109,112,119,105,105,101,107,105,94,111,99,93,114,110,109,108,76,105,124,106,98,112,117,111,92,96,92,106,104,111,89,130,107,113,105,96,112,110,97,115,94,110,117,116,102,96,99,106,110,106,97,101,105,106,111,95,104,111,108,120,94,107,101,105,116,104,104,104,115,96,112,102,110,110,102,99,93,108,103,107,93,104,101,101,102,93,101,101,109,113,95,83,97,103,105,102,83,104,97,99,90,117,104,121,102,108,98,107,104,101,106,116,90,99,111,116,104,103,104,99,96,112,115,104,104,97,124,95,106,109,87,99,98,118,115,105,104,105,100,111,102,116,102,107,110,107,105,107,101,101,98,113,98,118,114,103,105,105,115,111,100,101,95,113,101,76,110,105,102,125,107,106,94,95,106,107,82,121,100,101,101,100,110,108,95,113,104,115,105,107,107,103,106,110,114,97,106,102,102,98,107,102,108,95,102,86,96,97,96,97,90,105,96,113,109,98,104,101,104,106,101,94,101,99,114,93,102,95,100,108,97,104,104,104,110,95,100,109,114,94,98,99,95,99,114,102,128,110,110,101,112,108,107,100,114,101,111,95,90,104,99,104,105,105,112,104,105,106,83,94,102,101,106,104,108,107,109,108,98,100,90,117,124,112,105,108,109,117,96,109,95,121,99,102,107,109,99,99,107,102,107,106,107,109,99,89,100,120,111,102,98,109,105,118,114,113,105,100,100,98,106,112,106,92,99,110,98,101,108,108,99,96,99,100,98,110,100,109,95,106,97,92,110,72,101,103,106,107,106,96,107,93,102,110,109,108,113,98,96,108,106,91,93,90,106,107,102,106,117,94,105,96,75,101,111,99,118,111,104,99,98,109,102,112,100,107,109,103,98,107,103,110,99,93,93,116,91,100,99,101,103,109,86,86,108,104,112,106,103,106,109,110,93,101,99,102,104,114,100,96,102,107,114,85,104,91,105,98,98,101,96,100,121,104,105,121,107,110,101,105,91,101,108,118,107,99,96,104,99,105,92,91,100,110,96,101,110,105,91,110,98,104,98,106,105,104,103,112,111,108,110,120,103,117,103,104,100,96,104,98,111,101,103,105,103,97,95,115,99,109,108,111,106,105,99,106,88,106,102,116,99,99,87,109,120,110,107,104,95,117,109,107,91,96,91,100,100,111,111,93,106,110,103,119,79,115,104,101,105,104,117,102,93,94,98,99,108,108,101,103,102,99,115,92,102,115,102,103,97,63,97,101,109,104,101,101,108,109,103,119,105,117,98,112,124,93,99,104,114,99,97,108,108,106,110,97,99,101,108,96,107,97,110,85,90,110,103,88,90,106,113,109,98,111,98,102,103,95,99,104,115,110,88,110,92,105,93,110,103,106,104,107,102,104,119,107,101,92,108,96,103,102,111,97,116,105,111,96,100,89,115,111,104,101,109,115,100,98,96,104,105,99,95,116,118,87,91,107,109,96,107,133,103,99,109,110,103,97,103,103,108,103,98,102,105,103,104,105,106,95,98,99,92,109,88,107,106,92,105,106,95,108,98,99,86,102,109,106,98,103,101,100,100,97,112,100,102,109,93,108,101,95,100,84,80,97,95,112,104,101,107,96,108,93,102,115,108,108,102,95,105,97,102,103,97,114,96,98,103,108,109,92,103,110,103,105,100,94,116,93,97,108,86,112,102,98,93,90,106,109,105,93,103,108,108,93,118,104,113,109,101,106,103,107,116,103,100,109,103,99,115,102,109,106,95,109,99,96,121,117,113,119,83,108,100,95,104,115,109,115,98,111,109,108,112,124,92,106,103,104,105,98,98,100,90,117,109,91,111,93,102,103,87,111,113,99,95,120,103,90,64,108,94,104,105,106,87,96,103,100,100,100,109,100,102,109,109,117,101,100,100,102,112,87,103,100,108,108,92,99,100,119,104,88,96,106,105,98,105,105,103,88,104,103,102,119,120,106,110,102,103,89,100,95,119,97,103,104,98,104,103,110,113,107,98,97,109,113,112,118,104,109,108,111,90,94,116,108,105,113,96,110,102,102,85,129,106,96,105,101,97,102,112,115,112,106,102,103,104,98,108,90,106,129,92,110,102,86,108,105,97,113,109,98,120,101,105,99,95,101,121,93,95,105,103,101,96,97,103,89,114,95,99,104,108,99,97,97,98,100,107,92,106,103,96,100,104,107,109,94,113,110,105,108,102,110,98,91,101,101,110,109,113,112,111,97,100,104,111,101,107,110,103,99,117,105,94,117,95,94,111,107,99,106,106,123,95,105,113,91,102,100,108,91,94,103,101,92,96,93,111,98,100,112,101,116,105,90,90,118,93,105,102,96,104,93,109,105,99,114,110,108,98,95,99,95,109,99,100,98,113,105,111,113,104,108,103,98,97,107,100,104,106,95,102,85,116,102,99,100,94,91,95,109,95,105,106,99,108,98,114,101,98,107,105,104,91,100,130,114,115,98,95,110,113,96,99,113,98,109,108,113,103,99,111,96,94,106,93,92,112,105,99,110,99,95,100,113,112,85,104,117,115,95,100,101,106,110,95,102,102,98,110,106,93,100,105,112,99,110,89,107,86,102,91,100,112,101,100,92,100,110,116,112,102,81,102,99,107,108,102,97,98,104,120,107,106,93,106,112,120,108,97,100,109,92,102,100,106,91,110,109,101,90,92,95,93,107,106,116,100,107,103,98,98,102,108,111,113,103,103,111,106,110,99,99,101,94,95,102,109,119,106,109,98,110,104,96,94,103,111,104,106,106,94,115,96,97,103,103,95,113,93,102,99,102,69,94,100,106,105,120,108,119,102,103,111,88,84,94,102,98,106,103,109,107,98,103,104,102,109,113,108,103,105,118,89,94,105,101,101,108,100,103,102,100,95,103,109,108,106,101,112,101,99,96,95,101,98,117,79,102,105,99,110,98,99,103,108,101,100,97,98,91,105,99,106,103,107,84,100,107,102,106,86,100,104,98,114,123,105,113,107,106,93,105,98,99,102,100,97,112,90,101,117,107,107,91,107,99,103,98,99,98,98,100,97,104,95,109,106,101,97,106,129,85,97,101,108,114,106,93,108,98,113,104,95,98,97,105,111,91,114,113,99,111,110,106,98,109,98,104,97,103,103,106,104,95,106,113,103,101,103,108,100,105,100,97,112,106,94,93,99,95,88,117,108,99,102,98,108,98,94,102,105,101,91,100,114,97,101,94,104,112,111,96,99,98,109,107,116,109,98,109,107,113,105,103,100,80,100,95,104,104,113,113,109,103,106,100,107,100,101,108,97,110,84,98,100,100,102,111,99,104,105,107,104,111,101,106,113,83,100,111,114,90,101,115,107,99,106,103,100,105,99,105,108,87,105,100,119,105,101,100,101,99,106,99,102,109,98,113,96,88,91,99,104,103,112,90,109,104,102,102,107,109,121,99,82,101,102, +652.52234,109,94,97,97,104,109,121,93,100,116,95,107,87,99,104,85,109,111,103,93,100,97,96,101,112,103,94,109,106,105,88,111,105,66,101,99,104,93,102,92,97,109,127,105,97,98,89,104,105,106,93,101,102,113,100,99,95,95,111,102,98,91,93,88,107,106,108,102,93,103,95,94,101,100,102,101,109,110,114,102,103,109,86,88,117,97,102,100,103,91,105,106,104,100,100,99,105,101,101,98,95,98,111,96,101,103,87,99,99,103,96,104,96,99,96,94,95,108,105,105,93,111,107,80,104,105,101,92,100,110,98,94,94,101,102,90,92,114,105,104,109,115,89,105,109,103,106,99,100,102,103,103,109,96,97,104,103,94,103,96,86,83,108,101,104,95,97,95,84,100,100,121,97,102,106,100,105,102,105,103,100,116,101,103,99,102,99,101,111,95,103,100,112,94,100,104,100,91,95,95,99,93,103,92,91,97,103,105,103,103,90,105,107,100,106,96,96,110,90,105,103,110,105,92,111,107,104,110,100,102,91,89,107,87,90,127,112,105,99,94,99,110,94,87,107,99,111,98,106,114,99,102,99,95,107,103,121,107,99,104,101,96,103,96,92,104,103,109,103,114,103,95,103,104,107,88,100,114,97,101,95,104,112,101,95,105,97,96,108,104,97,108,105,90,103,109,103,102,106,83,106,98,108,102,104,96,98,96,100,95,88,107,125,106,107,102,95,102,97,104,97,109,113,101,99,100,100,98,110,107,111,114,110,96,104,101,107,99,97,99,104,101,110,104,100,117,103,113,99,104,95,98,106,107,97,109,107,108,94,108,91,91,95,101,111,92,99,114,87,100,110,111,102,101,92,108,101,110,103,100,117,113,105,112,95,114,103,103,96,105,107,99,124,101,118,98,98,96,100,110,101,103,103,90,113,100,101,98,108,94,95,87,99,108,107,96,111,96,107,99,95,109,97,95,100,97,109,90,87,106,103,95,108,98,99,88,87,114,99,99,113,79,99,107,95,103,107,84,107,109,95,104,104,102,111,106,95,102,113,101,105,94,109,105,106,112,106,95,104,80,107,98,108,91,106,106,104,87,105,102,101,99,91,91,100,103,99,93,104,99,94,111,112,104,105,101,84,106,102,83,111,95,102,98,106,104,105,111,109,99,99,72,93,99,110,103,111,107,94,102,115,107,103,108,109,96,111,112,87,112,104,108,110,103,99,99,102,99,118,96,106,97,85,99,115,101,98,114,103,111,105,111,94,98,88,95,98,101,99,94,110,128,94,98,100,117,107,112,105,92,95,95,102,94,100,107,110,91,109,92,103,94,91,110,90,104,110,99,110,113,104,99,104,103,102,94,105,104,107,95,96,102,101,97,101,118,110,118,116,108,107,102,102,107,86,102,99,102,105,95,102,97,97,107,115,106,98,102,110,102,105,110,101,99,102,107,104,100,101,117,101,104,114,94,97,99,101,96,112,99,95,103,108,103,103,110,96,112,114,104,118,107,76,119,92,110,117,105,111,106,97,98,107,106,91,104,108,99,111,86,105,105,95,104,105,98,103,110,100,100,103,101,93,108,104,103,109,113,111,99,105,96,99,93,103,118,115,114,104,104,105,110,100,103,94,103,124,99,104,104,103,110,97,108,110,100,92,102,89,101,97,110,97,75,86,108,99,100,113,99,113,116,98,105,102,109,119,107,111,111,111,98,104,92,121,93,103,113,103,102,101,104,90,104,99,91,90,113,102,111,104,99,99,94,113,118,112,104,98,109,109,113,97,119,108,109,103,110,91,105,116,115,101,102,108,105,97,101,103,108,101,100,108,100,98,109,105,113,116,116,115,98,96,105,103,109,103,109,95,107,102,110,104,101,107,110,100,105,96,102,114,107,99,103,111,108,103,100,103,113,96,96,108,108,90,103,101,97,100,113,101,105,111,96,99,107,104,91,104,117,120,99,103,93,101,108,102,98,110,107,102,109,96,108,98,110,93,93,105,99,117,99,104,109,105,103,102,118,101,91,112,102,117,94,113,112,87,105,102,80,105,113,110,106,104,99,99,103,102,101,94,101,103,113,109,96,89,105,108,89,109,101,107,102,100,114,105,109,101,100,102,110,98,105,95,103,95,106,96,94,97,111,102,104,100,101,96,115,104,104,105,112,109,99,106,110,91,113,85,111,100,103,107,96,111,100,107,102,114,107,99,101,96,113,104,92,102,110,98,99,117,125,85,99,104,100,98,100,100,106,114,95,100,87,102,97,90,109,96,106,88,113,101,93,103,117,110,106,99,106,112,98,105,101,104,103,95,104,116,110,99,104,112,89,90,117,90,105,102,103,110,98,77,91,109,104,63,97,112,102,106,108,89,101,120,109,103,104,123,113,117,104,107,106,98,106,111,90,126,103,103,102,103,100,104,88,108,105,108,100,104,92,109,93,103,81,100,109,100,96,105,106,94,104,102,100,100,108,116,111,108,111,101,98,101,106,106,95,113,98,102,102,114,98,93,104,91,98,111,100,87,99,97,121,105,99,98,84,75,106,114,96,109,106,112,100,100,108,116,100,105,107,106,106,106,101,83,107,100,103,104,102,86,112,96,95,101,102,111,93,117,101,100,113,99,97,113,104,111,97,106,101,108,96,105,102,81,102,116,88,94,93,104,100,101,104,101,79,117,106,115,102,96,108,90,103,109,99,96,105,91,101,99,101,98,104,111,105,101,95,98,107,98,96,111,95,104,102,95,104,108,105,96,112,102,99,91,113,100,104,107,106,98,105,119,109,104,100,103,100,105,111,109,109,107,113,110,105,112,95,104,97,117,103,120,111,105,113,98,113,108,95,111,104,103,91,87,104,103,94,112,105,108,104,100,111,117,101,100,88,103,107,100,99,117,102,111,103,105,117,100,104,105,109,101,102,109,93,123,112,111,109,100,95,64,103,111,109,108,114,106,109,97,99,113,121,99,108,98,106,100,108,101,94,104,117,103,70,112,108,100,94,109,117,103,105,108,103,106,111,106,102,105,108,103,91,102,98,88,98,91,103,114,97,117,105,113,105,111,99,99,108,92,100,103,100,88,107,106,104,99,109,109,94,105,100,109,96,108,110,114,107,106,119,100,107,92,105,100,100,91,103,113,94,91,91,110,103,90,93,100,100,101,111,96,103,105,103,105,92,99,104,101,124,97,102,102,100,105,96,96,92,103,101,113,105,83,101,104,100,100,107,96,102,106,108,97,99,125,103,117,104,92,104,90,97,64,109,106,98,111,101,120,108,98,98,97,97,107,104,87,88,104,113,110,97,108,96,102,98,106,113,106,110,105,99,88,114,102,93,100,106,96,95,113,85,107,100,113,103,113,106,105,103,110,107,89,105,109,112,115,99,113,102,102,107,99,120,110,101,93,97,93,110,103,104,104,106,107,92,103,95,109,105,111,101,88,105,110,104,112,108,99,97,104,105,103,95,106,101,108,103,104,105,112,110,112,105,98,103,108,127,103,116,96,106,101,99,100,99,114,98,106,101,100,99,106,99,106,111,105,103,105,104,117,111,103,106,106,115,120,84,106,99,95,92,108,81,111,101,96,65,100,116,103,105,103,104,99,104,97,95,108,113,96,92,105,110,96,102,101,111,104,105,107,103,89,97,105,117,108,97,96,106,95,110,111,101,102,104,104,110,106,110,99,100,98,108,87,96,101,118,116,101,108,96,100,100,112,91,103,100,107,111,110,99,101,103,106,96,103,101,104,112,86,107,90,119,106,101,90,108,112,91,108,102,102,94,116,106,96,100,99,90,105,110,104,116,105,108,102,102,106,97,109,125,108,101,96,109,109,113,106,101,104,111,110,102,106,106,110,101,105,107,110,104,96,102,100,102,110,102,100,98,100,97,105,105,106,109,111,104,114,105,101,103,129,110,79,105,112,109,117,96,91,77,100,96,109,99,96,113,95,115,95,101,109,97,109,105,109,108,110,100,114,112,97,108,99,103,113,99,125,107,103,92,102,98,115,106,110,101,115,108,103,95,102,103,102,95,101,99,101,92,99,104,96,110,112,112,106,112,99,95,112,103,111,104,107,117,85,108,106,107,94,109,109,109,103,109,107,105,96,103,101,104,112,100,110,109,104,107,98,101,83,109,97,110,108,103,104,100,109,105,105,124,105,112,86,113,103,107,109,110,102,113,117,117,114,126,112,97,115,98,113,96,111,110,105,95,115,96,89,118,102,124,107,121,111,95,113,96,119,91,90,110,96,99,100,98,94,101,116,102,108,108,108,96,99,114,88,103,113,108,104,109,74,90,94,106,107,107,105,106,111,107,79,114,101,103,108,104,102,108,103,106,113,99,104,102,104,108,103,111,103,110,109,101,108,114,97,88,101,108,117,96,117,103,111,102,98,95,104,109,101,96,101,95,104,90,119,94,105,107,98,99,92,99,95,89,106,106,117,106,103,103,90,97,76,94,89,98,95,102,107,99,99,106,102,102,105,103,104,114,100,98,104,103,98,94,90,108,102,105,98,92,101,110,93,108,94,104,100,94,106,116,104,95,98,102,109,95,103,109,108,101,106,110,100,96,91,109,98,107,127,92,100,97,102,102,109,103,99,99,107,104,107,116,105,105,113,106,93,99,104,88,115,106,98,132,103,95,107,105,117,90,89,106,102,102,93,93,104,102,110,98,112,128,97,106,106,109,96,99,100,113,103,109,90,106,107,101,90,106,105,114,104,113,93,106,100,92,117,114,107,96,94,113,118,101,97,103,102,105,99,115,113,95,100,108,91,103,110,101,106,105,75,116,96,115,113,91,98,107,114,113,110,108,100,105,118,102,100,94,96,101,93,105,98,99,104,98,102,116,105,93,95,98,102,97,110,102,112,100,102,114,110,113,106,101, +652.66351,108,92,83,94,87,103,104,98,91,122,119,104,101,104,111,87,110,105,115,99,108,98,105,103,103,103,91,115,97,107,92,87,69,90,113,102,95,113,100,109,103,94,101,107,92,106,107,124,105,106,101,87,115,91,102,103,105,87,100,104,104,105,97,99,97,100,90,118,96,102,130,101,124,108,92,99,102,114,104,77,93,95,115,107,104,90,108,109,103,104,111,102,105,108,106,97,96,109,104,111,96,103,97,102,93,111,103,104,99,101,74,80,111,104,110,107,107,97,110,112,101,101,107,105,103,108,109,95,112,106,101,95,100,109,96,99,101,105,105,106,92,92,98,83,113,105,98,110,101,103,103,108,113,95,97,106,105,110,99,103,108,111,101,99,99,106,100,95,104,90,108,92,100,87,104,112,110,101,105,112,112,99,104,114,100,103,104,101,111,100,100,106,101,103,103,103,117,96,104,112,106,106,85,106,94,101,97,99,117,100,102,100,119,99,101,97,99,104,102,108,95,118,108,97,105,104,110,103,109,93,108,72,103,102,103,96,112,106,101,97,114,98,120,110,109,104,99,102,112,106,102,109,88,97,87,104,99,106,98,98,102,111,96,97,87,98,114,96,99,100,101,105,106,95,96,101,105,102,105,103,103,111,112,108,91,103,103,110,97,101,95,93,117,112,104,105,103,94,106,91,100,103,96,113,110,108,113,105,101,107,101,91,109,103,97,93,103,109,102,105,95,97,113,107,101,101,93,104,107,107,111,102,100,111,93,117,107,97,108,97,106,97,100,97,95,92,102,108,113,103,97,104,91,111,102,97,115,101,103,104,99,95,101,97,102,105,106,100,102,108,104,101,103,114,101,93,105,106,103,118,98,102,96,99,102,98,107,104,109,93,94,106,91,79,104,100,128,98,91,108,91,108,109,110,107,91,92,100,98,109,106,95,91,94,96,99,87,103,103,100,96,108,101,99,101,89,91,96,93,104,108,100,105,99,106,106,113,102,106,98,116,92,110,105,93,106,93,108,109,103,102,99,110,106,101,102,97,107,108,99,109,109,110,102,107,113,131,98,95,100,99,110,101,107,112,107,115,99,97,105,99,115,111,110,113,100,100,105,100,99,100,110,103,100,106,102,109,109,92,98,117,108,107,104,111,97,96,108,96,105,101,101,100,104,98,110,104,112,114,93,100,113,68,117,94,95,114,97,100,104,93,111,106,104,93,103,107,102,108,111,100,93,98,105,97,100,94,115,113,97,134,101,107,80,91,93,111,92,99,110,101,107,98,97,110,79,106,105,102,100,109,100,101,108,102,114,104,105,104,104,96,91,101,106,103,109,109,114,101,94,97,106,100,106,99,108,104,92,106,96,106,109,109,98,95,98,101,96,89,98,98,114,94,99,106,106,92,92,113,114,107,101,87,110,92,117,92,95,74,107,104,109,101,103,89,102,99,94,97,100,110,111,100,131,99,102,90,100,105,99,100,95,98,114,95,104,100,101,97,90,100,93,95,113,101,109,104,103,107,98,98,95,95,103,99,103,99,102,106,98,89,105,116,105,97,108,101,108,100,110,105,105,98,107,109,113,105,105,117,96,98,102,101,94,104,109,102,118,104,79,81,100,106,111,97,100,93,101,104,88,111,98,112,104,101,96,104,108,96,101,98,105,101,108,97,99,113,101,116,78,105,97,106,111,105,106,104,113,97,119,113,87,117,88,111,94,99,105,103,91,98,118,107,105,101,104,100,101,105,97,104,98,97,87,95,121,110,108,100,104,87,94,100,109,95,102,113,97,105,106,111,104,101,106,110,106,104,108,95,112,99,90,128,111,105,88,100,106,105,115,109,102,105,88,92,96,100,110,105,97,109,104,114,103,99,110,92,91,95,101,101,105,99,99,106,104,93,97,125,105,98,96,94,100,98,107,103,95,110,107,108,86,103,108,108,113,97,103,93,86,106,108,98,97,96,105,97,102,105,103,110,108,95,107,102,99,105,98,107,105,96,107,95,105,103,104,101,94,73,105,101,118,100,99,101,96,108,108,103,74,105,111,91,106,103,107,119,98,102,109,111,115,109,104,105,97,102,94,110,110,98,95,110,110,101,96,100,103,85,107,81,108,103,114,103,101,99,96,95,108,108,106,113,98,101,106,93,105,95,102,90,103,90,95,103,99,99,108,114,101,125,108,108,86,101,105,96,112,99,105,102,103,112,92,107,102,96,95,99,108,95,96,101,107,104,96,99,103,106,100,113,100,102,111,121,95,97,103,95,103,121,95,91,87,118,109,110,112,99,98,85,97,91,108,93,98,110,99,93,103,96,113,109,98,112,102,105,100,129,96,82,97,94,97,110,74,114,99,108,99,94,85,101,105,89,98,98,107,93,102,90,103,105,90,99,106,108,100,92,104,100,106,105,94,92,100,106,113,103,113,94,114,99,101,102,100,107,124,124,112,114,113,95,106,104,95,95,99,110,108,99,93,113,89,91,109,112,106,105,112,102,89,106,103,99,120,106,90,103,105,93,112,102,96,96,103,105,99,91,102,109,102,98,84,96,90,102,102,99,92,98,115,116,105,102,105,89,110,103,105,112,95,98,107,97,103,100,110,120,95,95,103,106,102,97,102,95,112,96,104,108,105,100,101,94,103,104,104,105,90,105,95,93,108,98,96,91,94,96,109,98,105,91,114,97,99,109,73,111,104,97,112,103,105,104,101,113,92,89,107,109,103,105,111,86,102,92,103,107,101,95,98,101,109,105,112,96,110,101,93,99,104,94,113,96,94,92,108,98,105,100,96,94,107,97,75,123,102,99,110,106,106,112,99,106,96,101,106,107,115,96,112,105,108,107,99,96,108,100,104,99,97,105,103,95,101,95,104,102,104,104,102,101,107,106,94,99,99,94,102,92,100,96,102,97,112,102,100,108,101,94,110,97,84,103,107,99,104,105,103,110,108,102,101,95,93,103,103,104,98,93,106,91,100,106,116,103,112,101,109,110,102,106,102,105,98,111,97,104,100,96,95,93,92,108,102,104,95,88,87,98,94,103,91,98,101,107,106,102,101,98,105,101,99,110,99,89,101,96,100,105,105,104,101,91,98,104,95,89,105,99,107,107,113,100,108,101,102,81,94,96,109,104,94,105,118,114,94,93,92,97,101,96,97,98,116,112,101,115,103,84,105,103,108,105,91,105,103,97,92,102,107,99,100,102,96,102,114,104,108,102,109,101,90,99,103,99,105,107,105,117,106,107,109,102,99,100,110,88,128,91,99,114,92,98,104,99,100,108,102,94,102,104,100,99,100,97,103,98,105,112,107,105,113,110,101,96,93,100,95,113,113,91,91,117,97,103,91,101,106,94,103,113,103,95,90,104,91,95,100,109,125,95,106,91,105,103,102,100,119,117,93,97,100,105,105,120,103,86,99,100,100,105,108,94,112,135,110,96,96,98,100,103,100,107,116,107,109,106,92,106,113,116,103,102,101,95,99,104,122,102,101,105,97,116,120,93,96,95,109,101,101,108,104,96,73,107,99,97,81,90,96,102,104,102,98,99,106,114,113,98,93,109,102,105,101,103,97,111,95,102,105,102,100,96,114,95,93,96,104,106,112,96,104,94,109,100,113,100,102,100,110,110,101,95,121,105,95,100,103,87,104,101,96,94,105,91,95,106,95,101,96,99,106,99,101,101,107,98,106,91,104,106,108,103,97,108,111,108,92,99,89,102,94,102,95,91,92,102,95,95,108,92,93,111,96,96,102,106,112,93,110,100,101,97,100,107,112,103,116,113,108,94,97,106,76,107,96,108,112,97,100,99,103,98,101,100,89,109,120,103,101,106,99,107,105,106,105,100,96,108,106,100,90,85,113,109,105,98,106,96,107,105,100,108,110,106,108,92,105,100,98,105,99,99,117,99,101,97,114,95,106,106,102,95,100,104,108,109,101,101,104,96,93,98,87,107,106,102,102,97,102,97,101,115,99,102,105,92,98,110,92,97,102,95,101,101,101,104,111,96,113,102,110,96,98,106,101,101,116,116,98,110,95,120,103,109,102,98,100,65,97,101,113,93,100,106,104,109,98,110,85,89,116,106,108,124,102,103,98,98,95,97,103,100,107,106,95,102,103,110,99,92,99,99,96,105,106,108,107,101,102,88,93,106,89,94,102,93,98,105,95,106,105,120,101,111,134,106,104,103,116,118,97,99,98,113,92,101,115,106,106,107,99,94,98,93,100,110,103,101,102,93,100,103,102,98,101,105,109,102,103,110,95,90,100,106,99,94,91,102,107,102,105,103,99,104,111,93,104,102,107,109,100,113,96,112,99,112,90,104,108,102,99,114,121,97,96,103,116,107,100,98,91,98,97,102,99,82,101,108,106,104,107,102,103,109,111,109,102,94,85,97,113,93,106,97,95,106,100,112,104,99,102,85,98,101,105,101,100,81,108,99,105,107,103,105,108,98,109,116,100,94,104,110,103,107,109,104,100,95,109,88,107,100,100,101,101,94,110,102,88,100,98,104,102,97,105,97,104,103,113,97,90,101,101,104,110,91,103,103,107,97,88,102,103,112,107,86,99,109,91,100,99,99,88,104,100,106,106,110,99,84,111,100,104,105,106,106,109,89,108,94,96,125,118,109,102,104,109,102,105,113,98,91,99,101,94,109,92,99,71,109,100,105,93,108,106,114,102,125,122,103,107,99,103,113,99,91,94,100,112,94,94,92,104,99,97,95,102,99,108,103,105,97,102,103,96,103,97,101,103,89,97,96,87,95,99,105,100,94,102,110,98,94,102,100,102,96,95,84,87,100,102,96,95,115,105,103,104,98,83,94,117,91,112,93,122,102,90,101,115,95,94,98,89,106,104,96,110,106,84,109,93,105,104,80,99,102,94, +652.80469,84,94,96,108,94,100,117,108,102,123,96,111,88,100,106,92,96,104,103,99,105,101,94,100,98,109,77,101,107,95,94,85,112,94,99,111,102,96,106,86,95,93,97,112,109,114,104,109,96,95,104,112,101,100,109,93,113,96,104,86,98,101,91,94,96,107,97,103,97,107,111,105,112,105,81,115,105,94,102,131,96,116,107,102,104,100,102,106,104,103,99,98,82,107,91,109,109,108,96,106,99,101,109,105,84,108,104,96,101,100,95,103,98,104,103,94,109,102,108,105,103,104,108,111,90,104,95,90,110,90,101,131,114,104,94,103,101,101,107,99,97,108,117,101,109,101,110,99,94,105,82,100,99,82,91,97,105,98,108,102,102,100,102,103,102,92,100,104,105,101,89,101,105,97,106,102,100,97,103,111,105,106,113,99,99,95,91,100,109,104,112,85,105,99,106,90,110,95,99,99,91,109,108,111,107,108,97,116,108,108,98,104,115,110,105,106,99,114,102,104,108,86,101,94,109,92,105,103,94,105,103,84,84,71,101,105,109,69,109,109,103,102,103,104,101,100,104,98,102,86,100,103,116,100,95,108,104,104,107,105,88,102,100,98,90,105,100,88,109,98,104,104,107,102,116,102,99,94,104,99,105,106,103,99,101,96,99,105,105,98,108,98,103,102,112,111,100,94,110,91,98,115,105,105,119,117,103,106,94,109,113,109,96,105,96,111,96,105,105,106,107,119,108,107,105,102,102,86,97,103,100,110,110,106,102,120,108,93,105,100,111,95,102,94,107,121,108,104,108,106,112,98,113,100,112,104,119,98,110,95,96,100,105,88,101,106,103,106,100,103,98,100,107,117,114,103,87,106,93,111,96,105,100,106,83,106,107,108,106,96,105,116,95,109,102,102,106,95,106,102,101,111,96,114,88,98,100,110,99,109,108,84,105,101,92,106,100,106,104,96,104,104,91,113,94,88,92,98,97,98,96,95,90,109,100,110,100,106,99,103,105,104,108,113,96,95,101,115,100,107,104,94,102,103,93,113,93,103,116,104,92,99,104,95,109,102,110,103,102,99,101,98,103,100,102,103,95,100,116,107,104,108,113,112,102,99,100,104,91,92,106,96,106,110,93,96,105,101,122,91,117,108,99,98,105,102,109,109,116,97,104,113,116,107,110,107,100,112,95,101,109,101,99,99,113,102,104,94,100,111,102,102,98,97,95,100,109,108,110,102,87,99,112,97,101,100,106,94,112,96,104,101,103,110,98,108,105,100,105,90,115,90,102,105,114,100,95,106,112,102,96,100,101,110,113,100,90,95,97,95,96,98,92,110,95,102,107,96,103,109,110,99,103,99,111,106,100,111,104,99,105,91,111,101,92,98,97,106,107,87,92,98,117,107,102,82,107,106,108,107,101,91,100,104,120,111,98,113,98,101,107,110,100,108,91,104,98,92,128,105,105,91,103,97,97,99,96,101,94,109,99,88,73,108,97,110,103,98,97,83,110,97,90,105,102,103,97,72,108,114,104,103,104,97,101,102,110,95,109,94,99,109,103,90,96,78,85,94,71,106,104,108,100,126,110,108,100,95,104,87,101,95,95,104,96,107,95,114,107,102,100,86,109,104,95,121,82,109,109,105,100,102,104,117,109,91,107,102,105,96,96,105,96,104,97,106,97,103,100,100,105,114,98,104,103,97,100,105,97,104,96,107,118,109,101,88,117,112,96,99,104,106,111,102,100,108,82,103,101,101,109,100,124,95,100,102,107,69,106,101,96,103,93,112,98,109,91,117,103,112,98,103,88,102,102,108,107,104,113,107,111,105,106,106,103,105,97,97,98,94,65,90,94,116,103,104,112,117,108,108,87,102,97,104,104,110,101,100,110,93,107,104,105,105,100,122,101,111,96,97,97,101,105,103,102,109,112,95,94,107,105,112,101,99,103,100,91,100,110,109,99,99,99,96,96,107,91,110,105,139,106,101,110,90,99,114,100,96,100,108,104,96,95,104,104,104,113,118,100,107,106,110,105,111,97,107,107,104,110,109,96,120,99,110,98,105,96,103,102,89,121,120,100,112,104,98,103,104,91,101,93,107,99,106,114,114,100,96,99,106,101,110,103,113,97,105,113,107,118,94,108,107,103,93,109,105,114,105,118,95,93,98,96,113,107,93,73,92,105,101,103,96,101,113,113,103,115,110,93,97,99,91,102,100,107,91,106,87,105,103,91,88,96,101,99,107,99,94,99,110,94,92,91,100,99,103,99,103,106,93,106,92,99,91,103,104,102,102,93,103,90,103,107,104,110,99,104,110,109,93,104,114,99,96,106,100,119,108,101,100,106,97,100,100,100,101,109,112,105,99,102,110,107,103,83,100,111,110,105,104,108,114,120,114,89,102,112,98,102,91,84,94,112,107,99,110,79,96,98,106,104,83,104,103,112,96,98,97,91,102,85,107,102,103,102,113,94,103,107,112,111,105,111,106,93,102,102,91,112,102,111,105,117,98,100,99,104,90,112,78,87,112,107,101,107,99,102,113,95,106,96,109,111,114,103,102,113,103,102,98,104,113,117,96,106,116,106,113,106,101,113,91,97,125,98,96,97,79,102,107,109,99,118,109,93,103,112,101,97,103,99,108,107,117,112,118,95,102,99,101,117,96,103,94,111,95,99,102,120,103,108,99,106,98,102,105,105,107,102,96,103,99,119,111,109,106,120,100,111,96,106,107,102,106,109,115,95,97,100,109,109,101,87,104,106,107,120,112,110,99,97,107,94,102,105,101,99,105,99,114,96,109,93,109,116,113,110,105,102,103,117,97,109,105,108,101,97,108,102,105,95,107,112,117,104,103,104,102,84,109,110,104,114,102,105,89,108,119,117,100,109,96,103,116,109,107,105,104,105,98,110,109,107,105,97,106,108,99,105,99,112,103,106,96,92,115,108,100,99,106,102,101,100,115,113,97,96,102,91,87,106,98,104,110,109,116,107,97,102,102,107,93,112,125,107,96,102,109,115,109,98,121,116,95,108,99,103,106,91,60,104,84,107,100,113,103,105,89,113,97,104,117,97,103,100,107,102,104,107,94,130,113,97,109,108,97,89,90,95,95,103,115,98,114,97,98,110,107,102,113,103,104,105,112,100,103,102,88,109,106,102,95,100,106,109,112,92,105,113,114,99,102,100,100,99,102,110,106,101,106,98,101,108,108,104,103,107,104,105,117,99,104,105,109,111,91,104,107,101,92,102,95,90,106,102,114,106,73,110,102,105,107,111,98,94,102,112,99,109,95,100,104,111,120,95,107,110,91,102,105,106,109,106,94,101,103,112,87,98,101,106,110,120,103,97,103,108,109,109,104,108,105,101,105,99,98,91,100,115,107,102,111,104,111,111,104,107,111,117,100,99,103,100,98,101,118,113,105,107,98,100,99,97,122,101,104,108,108,109,91,104,118,97,102,106,107,112,103,102,97,99,103,99,104,110,99,108,96,106,101,95,101,101,103,110,95,95,96,106,100,107,99,106,111,99,96,111,112,109,101,101,109,100,106,109,97,97,113,110,101,103,102,101,108,119,120,106,102,104,104,106,101,102,111,108,104,113,115,97,95,88,106,102,109,117,90,103,98,109,102,93,121,124,104,105,93,107,112,100,110,111,89,102,103,100,111,102,108,95,113,105,106,103,102,109,109,105,106,98,105,96,103,107,101,113,109,109,106,103,123,100,98,104,113,117,105,96,108,103,101,109,108,99,100,101,94,102,108,102,115,97,107,123,107,110,109,102,102,98,114,101,109,104,93,111,91,106,103,99,103,102,106,102,91,104,120,99,111,102,109,94,101,99,104,83,105,106,102,109,90,99,96,108,101,106,106,106,110,101,99,109,98,94,105,113,104,111,103,107,105,100,108,103,108,108,105,95,95,98,101,94,104,110,101,104,107,109,101,109,103,105,85,127,109,107,115,100,103,96,99,113,109,99,106,115,106,104,91,99,104,115,70,98,117,108,102,114,101,101,98,105,109,101,103,108,91,107,107,110,99,103,99,95,110,96,107,105,109,110,96,107,103,107,104,99,92,97,113,104,112,103,113,95,104,106,103,105,112,96,108,97,104,110,104,104,75,103,90,110,105,101,96,90,109,107,104,108,102,113,112,107,103,112,104,108,107,103,122,98,106,96,113,89,102,103,98,110,104,110,115,107,101,101,102,112,105,104,111,97,114,104,105,110,103,98,96,113,108,86,108,104,113,86,111,101,90,95,97,102,97,98,108,103,113,107,110,99,102,99,119,98,92,104,102,95,92,109,106,99,98,100,96,104,103,108,108,110,80,84,107,114,94,98,117,108,98,109,95,125,109,106,98,104,109,97,106,108,92,98,103,100,96,103,103,112,95,113,96,97,90,102,95,109,113,104,101,110,92,95,109,116,97,104,105,102,104,94,101,101,95,110,102,90,79,112,103,109,103,97,102,96,90,108,106,108,100,104,121,95,114,97,103,95,103,107,98,102,108,105,78,105,95,95,121,117,113,104,96,108,103,98,110,83,94,99,104,106,108,95,110,97,108,100,98,103,107,108,103,90,105,103,112,105,100,102,105,90,105,117,103,93,105,108,112,113,113,101,107,101,108,101,106,106,100,107,102,112,107,114,103,112,93,108,115,98,97,104,90,101,98,107,99,117,98,103,91,107,111,107,102,114,116,108,97,94,109,92,113,91,107,97,107,105,102,84,98,113,108,96,98,106,101,100,108,113,105,90,121,104,108,108,100,110,112,104,102,93,105,106,99,99,121,122,101,102,96,110,114,113,106,94,95,102,92,104,89,99,102,95,116,111,107,110,117,106,104,88,97,110,101,102,102,95,87,103,112,103,102,98,95,117,113,91,110,113,106,76,93,111,108, +652.94592,107,100,89,100,96,104,109,109,96,96,92,100,94,122,102,114,100,91,97,112,111,96,105,101,101,97,106,102,111,92,86,99,94,103,119,105,95,100,117,113,92,76,92,97,77,113,102,97,113,107,107,106,104,92,101,100,104,98,103,97,100,105,90,102,107,111,101,102,98,92,119,113,107,94,103,102,95,103,114,99,100,111,99,100,94,71,101,114,102,76,99,98,100,105,102,95,104,99,101,94,92,108,112,106,100,102,101,91,116,83,91,109,99,104,104,96,104,99,107,99,106,104,100,95,105,118,107,117,90,111,104,92,95,116,90,101,101,101,101,113,102,104,91,90,94,90,115,108,90,111,101,97,109,102,105,104,108,83,98,96,92,92,97,104,95,93,95,96,93,97,99,108,104,105,100,95,99,92,109,113,93,92,99,99,95,95,108,106,97,101,97,115,90,100,97,103,107,113,108,100,96,110,117,103,105,95,101,105,107,104,101,93,101,104,106,111,106,98,97,100,92,103,104,108,99,108,111,117,97,87,64,92,90,86,105,101,110,112,103,103,103,92,100,110,95,104,111,106,95,88,107,104,106,95,98,103,104,99,108,80,103,113,97,91,109,103,97,107,91,101,105,96,103,114,113,98,114,107,106,110,106,102,112,113,99,100,99,99,94,96,105,101,96,95,118,144,106,116,91,106,106,113,105,111,95,108,104,103,97,103,102,106,104,108,105,102,104,108,108,102,102,117,105,106,106,96,97,87,109,101,105,99,106,97,100,109,90,110,100,110,91,104,92,105,102,103,104,107,102,97,96,109,105,105,108,94,98,109,100,112,103,114,100,101,102,106,89,108,91,101,106,96,118,109,114,102,96,96,113,96,99,99,98,97,90,104,106,107,102,93,102,121,98,95,87,104,104,100,105,101,94,110,101,100,99,106,98,108,104,103,93,102,102,99,125,102,95,96,92,95,97,98,76,103,103,93,95,99,100,110,102,98,96,99,107,110,95,100,107,83,94,92,105,95,98,103,108,101,103,104,101,112,92,114,101,94,105,103,104,109,88,96,117,113,104,117,104,110,94,90,102,96,111,104,94,82,106,103,130,108,104,119,112,109,101,101,111,104,99,115,110,106,100,92,92,98,98,103,102,102,113,96,105,106,97,114,108,98,115,103,122,113,91,121,99,99,102,105,106,109,114,107,101,98,106,101,105,104,98,104,103,110,101,92,89,112,96,99,118,105,105,108,91,102,111,111,103,111,97,96,102,111,96,94,91,99,117,114,103,92,99,110,93,125,99,109,106,106,95,98,91,98,98,109,92,113,111,117,102,115,105,104,94,98,88,100,104,106,115,106,114,101,123,100,102,90,105,101,105,108,109,109,104,106,112,96,100,106,83,104,98,87,104,102,106,98,104,87,100,91,101,107,109,99,106,111,93,97,95,101,106,108,111,102,103,98,105,98,98,92,104,100,104,100,94,102,102,93,96,111,98,101,97,101,107,96,99,111,103,107,100,104,105,108,105,108,94,110,115,99,105,109,113,107,104,94,103,104,108,100,99,99,95,97,105,101,97,102,88,103,103,107,97,100,123,98,105,94,92,95,93,104,93,106,98,103,87,104,103,96,94,104,97,95,91,110,99,91,98,109,82,98,116,112,95,99,98,97,97,95,101,100,103,96,98,112,98,90,103,98,103,103,103,98,115,95,103,104,99,102,101,98,105,100,111,94,98,100,106,99,100,106,106,100,98,118,92,104,103,93,98,104,69,106,114,111,95,80,102,89,95,106,91,98,106,99,102,89,114,105,115,108,113,106,92,102,109,103,99,111,97,107,94,97,105,102,92,108,102,108,102,103,101,103,105,104,114,103,101,108,106,113,92,112,97,95,102,105,106,110,96,96,125,104,93,94,115,98,107,103,102,99,109,96,105,105,112,95,94,96,107,101,98,111,92,98,110,100,101,102,96,109,100,103,105,101,102,113,108,98,91,104,107,111,117,107,114,93,110,101,113,104,103,98,103,95,94,110,101,109,98,99,109,96,108,107,96,116,108,113,96,91,103,99,96,86,97,98,101,106,116,85,109,105,101,99,101,87,98,102,101,99,96,104,100,108,106,105,91,106,92,102,99,105,96,100,95,98,96,104,98,72,98,112,102,108,102,107,105,88,114,109,108,102,113,104,112,110,102,103,106,102,103,102,100,102,97,94,105,100,93,104,102,104,101,98,119,106,92,98,95,100,117,105,115,102,101,105,102,104,95,80,88,98,101,96,101,100,103,100,101,97,103,97,112,107,102,105,93,106,98,94,108,106,100,117,109,109,103,95,107,107,104,99,98,101,109,109,115,104,100,96,104,95,114,97,95,124,113,104,103,115,96,84,102,99,100,99,104,107,112,108,111,109,92,96,115,104,101,99,123,116,97,103,109,100,105,101,96,83,99,106,102,103,114,103,94,107,91,87,107,102,93,102,96,108,99,101,89,97,97,110,95,109,99,99,113,103,107,109,106,105,121,101,97,99,102,106,102,102,100,128,101,102,113,105,95,99,105,98,101,96,117,98,98,120,95,104,110,107,104,106,110,121,101,109,113,104,110,124,121,108,105,109,96,109,116,121,92,102,104,103,105,105,107,95,106,104,103,103,113,95,106,94,108,114,109,109,96,95,114,103,107,100,103,98,109,113,108,102,109,116,110,103,108,105,113,103,116,94,87,120,93,114,90,104,99,103,106,95,109,110,115,99,109,108,99,108,122,114,108,102,105,108,113,107,109,103,94,98,103,106,110,115,91,103,110,102,112,106,103,112,93,102,100,99,109,105,105,105,120,110,105,93,108,112,109,100,103,103,100,89,109,112,107,107,109,123,101,95,116,97,108,120,111,112,103,98,108,109,103,100,106,114,109,103,99,103,89,104,112,100,115,106,98,116,120,110,102,98,110,111,119,98,132,104,109,88,108,106,102,105,110,108,112,105,110,101,89,108,104,105,96,108,107,109,95,109,96,97,106,99,104,95,106,105,114,109,105,116,95,101,104,114,108,116,100,99,104,106,103,100,104,102,107,102,72,101,112,104,104,112,102,102,101,98,104,102,99,101,108,116,115,108,111,101,114,92,101,90,107,107,106,109,89,117,97,99,107,86,98,90,108,111,109,94,107,108,101,87,115,91,110,113,109,112,95,96,111,102,110,108,120,94,115,102,107,102,112,99,111,92,108,110,100,106,109,99,112,108,117,108,104,80,106,112,102,98,120,109,108,110,116,114,107,106,109,109,105,99,101,93,117,111,105,101,111,104,110,105,100,98,97,103,77,119,105,108,98,131,116,104,103,98,96,107,100,109,112,94,101,98,109,101,92,113,122,102,109,127,112,107,91,105,109,121,100,108,102,94,101,110,109,115,117,109,111,88,113,94,101,106,112,113,104,100,105,98,104,91,109,110,102,94,104,100,92,99,92,108,100,98,102,99,100,109,96,106,112,101,106,105,100,108,97,114,105,116,108,105,85,98,87,110,109,107,108,106,102,99,100,110,104,117,104,116,106,87,102,106,91,98,103,115,106,110,89,101,102,105,109,109,106,111,111,105,105,106,91,98,100,89,105,99,111,121,102,97,92,115,97,101,107,100,93,103,110,107,110,99,101,107,106,103,95,109,106,89,125,98,110,99,100,109,106,102,102,117,102,93,102,110,109,103,109,102,95,96,109,102,93,103,102,113,104,104,108,108,109,116,105,101,96,90,108,101,94,102,102,115,106,113,108,102,101,105,107,106,103,111,102,106,104,104,95,104,106,94,90,105,97,104,98,98,113,117,89,104,101,96,94,108,91,83,104,104,103,97,117,124,104,112,99,99,104,105,107,99,108,111,103,100,103,93,107,94,105,100,111,109,95,115,87,112,99,101,102,105,101,100,116,107,101,99,85,88,131,111,101,98,94,92,108,109,103,109,96,102,111,106,101,104,112,106,93,99,108,98,100,97,97,107,94,110,104,89,119,100,105,109,105,110,100,119,104,99,98,101,121,106,103,87,106,96,110,102,95,100,125,102,105,110,104,114,95,100,94,95,102,106,105,99,96,96,93,91,94,106,96,104,106,104,104,103,109,103,106,111,95,99,93,110,109,102,113,105,105,104,109,100,101,99,95,102,104,100,101,109,97,110,103,97,99,116,99,107,102,106,96,112,117,99,115,99,98,98,102,116,96,96,99,107,101,119,95,104,105,104,96,107,107,109,89,114,87,104,95,112,106,112,96,99,114,101,103,115,104,99,112,118,113,110,102,104,110,106,91,105,98,104,101,107,92,99,108,106,105,105,95,108,113,101,94,103,111,103,109,113,84,109,99,100,103,108,108,101,97,91,108,109,92,111,106,120,99,108,106,108,101,105,107,116,103,88,118,105,104,108,108,106,98,95,100,91,91,106,93,73,113,109,113,96,91,112,112,94,101,110,107,97,105,111,98,95,121,95,100,94,104,104,95,117,110,95,102,98,101,110,104,95,113,79,92,107,110,125,121,118,98,73,105,86,104,96,113,105,100,114,95,102,111,105,97,99,95,99,110,101,107,103,104,103,103,101,104,84,98,106,97,115,106,102,92,108,101,109,88,104,117,112,102,103,100,101,107,94,122,109,102,96,100,113,108,100,125,112,104,101,105,108,101,110,103,103,113,106,104,94,101,102,118,102,105,110,109,101,100,110,96,113,105,111,104,104,98,102,107,73,115,112,92,92,98,104,107,99,126,92,118,88,97,99,124,105,91,94,109,103,99,98,97,113,114,115,104,106,103,104,87,109,100,96,124,112,123,88,113,119,108,108,109,114,107,103,117,98,98,116,106,107,107,117,113,99,89,111,101,110,100,91,108,111,113,89,99,102,95,109,104,103,101,105,99,98,106,102,99,109,102,93, +653.0871,119,102,101,103,99,108,93,94,91,91,108,106,108,95,109,106,107,118,95,108,95,99,90,113,114,105,100,87,110,109,88,100,118,102,100,115,106,96,101,103,109,103,106,87,101,114,119,101,107,113,114,100,109,101,117,115,104,101,102,102,104,102,90,103,93,111,95,95,96,113,103,107,103,110,102,118,95,104,90,106,102,102,97,108,102,106,96,98,110,94,95,95,104,96,77,96,80,96,110,100,113,104,95,100,104,109,116,106,112,104,107,98,97,105,102,102,103,80,125,103,88,91,99,95,100,118,104,102,108,107,109,111,97,98,98,105,90,111,95,91,89,105,117,90,95,88,112,109,87,112,91,109,105,103,90,106,91,96,96,87,102,118,97,101,102,101,100,107,106,99,110,99,102,97,100,101,107,94,95,103,91,110,96,105,103,99,101,95,109,94,98,109,104,95,97,105,113,82,106,105,105,104,98,95,106,102,105,102,100,105,94,103,118,99,107,99,95,107,101,102,95,98,103,105,108,97,101,100,105,100,98,103,107,102,103,108,111,95,90,105,98,95,99,92,85,105,96,99,109,104,105,102,104,107,102,105,101,104,97,108,110,106,113,103,93,102,103,100,103,90,114,103,103,103,117,105,103,106,88,96,106,105,99,102,107,73,105,99,116,106,101,98,101,110,120,117,99,97,101,96,83,97,106,102,86,109,103,113,107,106,89,106,105,105,103,106,102,100,103,97,99,107,100,100,102,109,101,99,102,111,100,102,110,106,102,95,113,100,100,112,103,109,95,91,104,108,93,96,111,110,103,104,98,99,103,107,132,100,114,95,113,100,92,90,94,100,104,115,95,101,108,98,110,102,105,99,104,91,104,90,109,111,101,116,118,99,96,102,93,87,94,99,94,111,100,100,104,103,100,114,107,99,104,95,99,105,110,99,107,108,98,109,100,97,111,105,115,91,99,82,98,93,100,115,96,97,80,96,91,100,92,102,99,102,95,104,99,119,102,103,112,109,106,101,85,103,91,97,105,110,104,93,110,107,99,109,104,94,95,97,97,103,109,103,110,107,122,107,99,105,93,101,92,95,106,101,101,117,99,96,97,116,104,98,94,96,98,97,94,109,95,108,105,94,91,112,102,109,106,103,115,97,97,106,102,102,107,90,107,99,101,79,116,95,102,94,80,94,102,91,95,114,105,98,105,102,133,105,90,98,97,108,101,118,101,99,96,99,121,103,86,101,101,110,105,96,118,101,111,110,104,106,102,118,97,99,106,100,103,97,107,102,97,96,90,97,107,99,105,100,97,115,107,115,121,99,96,109,101,109,105,97,109,101,95,88,115,112,102,113,109,100,111,101,110,110,93,95,108,109,123,92,101,98,113,97,105,98,106,99,106,96,105,104,103,94,97,101,110,93,99,114,96,100,101,107,93,98,103,104,104,103,95,97,99,116,106,114,106,106,114,100,112,116,95,95,96,89,94,91,90,108,107,99,89,101,100,109,100,114,98,99,102,103,102,83,116,96,106,110,115,91,108,104,115,113,99,97,100,106,100,87,110,104,97,98,90,108,111,90,99,102,103,103,99,106,94,108,99,99,107,96,106,96,96,111,112,91,106,102,94,79,104,107,103,96,100,92,96,103,102,95,126,94,101,74,105,109,116,104,86,94,99,109,104,100,109,90,102,111,117,68,111,100,101,113,108,96,101,113,112,90,101,109,105,96,102,101,101,99,94,104,93,104,102,95,93,105,103,84,104,100,82,106,96,96,98,117,108,96,96,101,111,113,103,88,119,99,96,96,86,105,103,105,115,106,83,102,99,106,75,99,92,103,104,101,106,87,109,114,105,100,113,109,115,99,115,109,114,99,98,105,101,100,90,110,115,103,101,95,103,94,111,104,110,104,117,86,99,113,95,110,99,99,120,112,101,98,116,101,99,114,94,94,101,112,86,107,100,101,100,103,102,98,102,107,101,105,121,112,78,99,104,111,106,112,108,66,99,94,108,107,107,103,96,112,96,102,107,99,99,70,94,104,93,86,105,103,99,93,108,112,93,109,104,105,94,98,96,104,97,117,98,108,108,103,88,101,104,101,105,81,72,103,112,106,93,96,101,103,78,94,106,98,66,100,97,114,99,106,105,93,102,109,95,99,105,106,94,99,105,94,104,114,112,105,103,97,106,110,90,107,105,95,99,98,103,95,102,111,93,98,112,104,106,105,102,102,97,96,87,91,112,101,102,93,102,108,101,98,95,94,86,110,93,97,95,101,105,93,107,121,101,103,96,94,105,99,90,106,91,109,105,95,85,102,107,94,106,98,107,100,113,106,115,109,107,101,103,102,101,113,103,94,104,101,109,96,105,99,97,108,97,96,92,113,108,110,111,108,103,83,75,100,97,112,98,101,97,92,90,97,109,99,82,94,96,101,101,117,94,108,105,105,95,112,87,96,113,109,107,92,104,109,105,112,103,94,107,97,105,133,108,99,94,92,99,96,98,106,96,83,102,100,102,109,104,100,105,101,114,102,108,104,104,103,107,117,104,102,101,116,125,100,108,102,105,83,104,109,92,113,108,92,100,96,106,112,107,113,92,95,102,91,101,106,103,90,103,106,117,109,103,102,102,100,129,105,105,98,95,124,97,89,103,101,109,93,103,92,97,95,109,109,99,93,102,107,109,103,95,101,107,102,106,117,104,105,92,94,97,102,107,99,106,104,107,81,90,110,117,112,103,115,105,74,95,116,103,112,106,113,87,116,96,106,91,105,112,91,122,110,99,105,103,106,109,115,112,99,94,98,96,106,106,101,109,104,94,113,98,102,108,104,101,105,95,102,101,116,111,106,106,94,112,96,104,99,100,109,106,92,110,104,102,99,106,93,98,103,101,96,106,103,98,98,105,103,95,108,97,110,99,109,98,107,104,100,92,106,110,119,99,106,96,102,93,95,102,108,68,102,108,98,91,104,104,108,106,108,100,110,108,93,111,109,112,110,105,105,110,99,108,100,123,93,108,105,104,91,107,106,105,94,120,97,105,107,112,107,90,93,107,95,107,95,111,100,108,103,97,106,98,106,104,91,95,98,103,118,108,118,103,101,95,93,117,100,97,89,95,106,103,118,109,99,98,109,103,103,95,96,104,98,106,110,104,113,107,105,95,87,113,104,84,95,104,99,101,109,99,96,102,105,100,104,119,95,109,98,95,99,88,101,106,104,103,117,112,103,108,104,99,101,104,112,102,123,110,99,111,110,105,88,113,103,103,109,104,110,95,97,103,113,112,102,105,111,111,100,108,111,101,96,96,106,104,102,107,97,107,104,107,98,102,114,101,101,104,105,102,109,91,104,97,103,95,104,103,117,100,115,114,96,104,110,103,96,99,109,116,94,116,96,109,101,106,114,97,120,103,109,108,109,102,120,109,104,106,113,95,102,115,100,105,100,98,109,104,95,111,116,97,105,101,102,115,98,100,98,109,121,113,108,100,112,97,102,110,114,101,105,109,110,81,106,105,99,111,101,99,113,111,108,110,106,102,100,108,107,90,103,122,91,108,103,99,94,98,104,108,112,104,102,99,102,102,103,111,116,95,103,104,97,95,101,113,97,99,79,84,106,100,113,112,92,101,103,102,115,121,111,112,112,100,99,102,100,112,104,104,107,120,83,108,101,94,102,95,115,97,99,113,101,104,101,106,100,109,87,100,104,109,101,131,106,106,110,94,114,115,91,104,96,103,100,109,104,102,104,103,93,106,98,120,96,99,111,100,110,98,115,99,103,95,110,109,98,102,98,106,92,124,100,107,99,107,110,98,100,111,104,117,96,96,98,83,110,104,106,112,109,98,109,96,113,102,111,100,108,107,103,111,104,91,110,97,106,108,96,82,99,106,103,96,91,101,95,107,96,102,105,102,113,124,94,110,104,108,85,109,96,101,98,102,106,102,107,113,96,129,100,97,101,104,113,109,105,91,102,94,99,97,106,100,99,104,107,95,115,108,121,101,105,99,108,105,118,100,124,103,99,95,103,98,106,103,103,109,101,113,96,109,105,98,102,98,104,98,116,99,88,115,95,102,122,102,111,112,100,93,95,110,114,112,98,95,103,104,105,105,102,118,87,105,107,110,103,104,89,100,84,98,95,110,102,104,110,115,98,114,106,96,94,111,105,105,104,101,100,108,106,104,101,101,106,98,106,101,113,122,107,97,101,105,101,103,97,100,98,113,102,99,90,99,106,95,111,114,111,108,107,104,97,100,89,101,96,98,102,106,92,109,98,100,104,108,101,102,107,110,99,102,106,108,83,124,105,102,112,111,82,103,109,113,101,105,109,98,99,103,102,95,100,95,98,104,109,103,99,96,102,109,102,106,106,112,101,106,110,102,117,107,108,84,95,105,90,107,112,106,90,111,108,99,98,102,102,113,136,106,103,108,97,98,102,90,110,105,108,101,104,94,121,104,115,112,107,105,110,99,86,72,111,104,94,112,113,91,108,96,96,92,97,98,96,106,100,108,103,93,98,109,100,109,96,108,120,102,100,103,102,97,103,104,109,109,89,98,100,108,92,100,99,107,104,106,105,95,95,106,96,104,99,116,113,101,96,120,103,96,106,107,114,109,99,94,101,101,101,102,101,118,96,110,112,114,112,93,101,96,105,101,107,95,107,109,94,116,102,94,123,108,112,107,104,105,98,107,100,91,105,106,100,104,107,92,94,100,98,100,96,113,104,102,113,101,104,103,78,108,100,80,102,98,99,73,115,95,113,108,89,110,117,101,105,93,87,104,98,93,108,104,121,101,106,112,111,97,68,115,90,109,111,109,95,103,95,106,122,109,113,94,105,107,108,94,95,108,97,97,105,101,93,105,103,105,108,100,98,104,96,102,81,104,106,113,96,92,109, +653.22833,95,103,100,94,98,101,100,108,102,101,99,118,101,109,103,106,107,107,99,95,108,106,97,103,97,109,118,103,99,94,74,99,94,88,91,96,107,101,113,96,106,101,101,108,104,120,90,111,104,113,108,102,91,95,87,102,95,101,100,88,113,96,94,105,88,100,100,103,86,121,108,96,96,106,96,100,109,96,114,87,101,100,108,95,110,99,97,102,114,95,104,109,91,109,87,93,103,103,96,94,110,105,94,102,101,103,116,104,107,92,97,112,93,91,101,105,101,95,96,85,106,98,94,104,105,118,105,97,90,100,126,102,104,115,93,109,93,109,93,107,101,110,100,102,103,105,99,98,99,103,108,87,111,89,93,107,90,107,90,102,106,105,108,106,104,107,104,102,108,97,96,106,109,103,113,80,113,99,105,96,112,111,108,101,96,97,98,97,108,101,101,97,110,117,99,105,101,109,95,103,103,98,100,97,93,100,96,101,107,106,96,91,104,102,105,101,95,101,95,109,114,99,109,101,112,105,105,121,95,107,104,102,107,90,97,96,101,106,101,105,100,106,98,110,100,94,104,103,104,97,93,93,98,104,94,105,94,103,99,101,103,116,107,99,73,104,108,116,101,104,95,110,100,91,107,91,91,116,106,138,106,99,110,97,101,98,101,108,94,103,107,101,102,72,109,87,106,102,112,106,103,109,97,108,95,102,118,100,99,99,95,103,109,123,103,106,113,105,102,82,107,93,115,110,114,102,116,107,109,105,101,103,114,100,105,108,110,98,103,103,101,109,106,100,102,108,106,104,103,96,93,108,101,95,110,95,106,104,101,102,96,94,95,101,98,110,100,79,111,112,102,109,102,96,97,99,105,110,105,125,104,109,99,108,95,90,94,100,95,104,102,100,94,108,88,93,103,94,96,99,95,105,89,94,100,97,94,110,102,95,95,117,102,105,108,103,109,106,101,108,101,101,105,81,103,99,95,96,94,111,98,102,90,92,112,109,109,98,96,96,86,102,97,112,101,91,103,104,111,99,104,102,109,115,107,95,105,101,117,96,102,107,100,108,107,104,149,101,111,91,105,106,119,102,95,101,104,100,101,99,101,107,99,105,100,96,104,102,88,96,99,121,90,101,98,95,106,105,102,97,95,98,96,98,105,98,94,98,109,93,113,91,88,104,123,104,113,105,94,96,107,103,87,110,113,93,111,118,102,105,85,105,108,103,99,106,105,100,95,116,100,102,99,98,107,112,108,96,107,94,90,105,113,102,92,97,100,106,101,98,108,98,108,104,103,99,118,103,96,86,96,101,110,100,102,116,103,113,111,104,103,94,106,107,106,87,114,118,109,107,97,100,101,105,109,94,108,99,95,107,104,109,110,94,102,106,106,98,84,103,94,99,106,98,103,106,126,107,103,101,112,96,84,91,101,109,99,97,117,112,94,106,104,107,105,106,107,98,99,113,85,115,118,101,99,93,94,75,107,112,90,105,96,104,104,106,108,101,111,87,105,125,108,102,100,86,111,98,123,103,103,119,96,117,90,115,100,106,105,99,99,96,108,96,107,93,96,111,98,109,101,100,104,114,104,110,109,102,106,92,95,106,93,110,104,113,95,102,99,113,94,110,96,105,105,102,84,100,106,101,94,95,101,99,100,103,107,88,105,99,96,110,100,98,102,97,117,90,107,103,108,97,92,110,104,111,87,95,100,117,125,98,103,94,96,106,106,102,99,97,101,90,103,107,98,105,102,98,84,93,114,105,113,98,94,104,107,98,94,93,103,118,109,95,103,100,110,100,90,101,112,106,109,113,101,118,112,115,105,109,108,100,98,107,117,99,105,101,117,99,109,99,91,100,112,102,107,112,96,102,130,103,94,90,88,107,107,120,113,105,114,105,103,102,105,110,103,114,105,93,99,100,113,110,112,89,82,97,102,98,101,100,98,93,94,98,106,90,96,105,99,105,115,108,111,99,99,95,118,102,95,106,108,108,100,96,94,100,103,104,113,102,108,103,99,103,106,106,99,100,95,116,100,95,102,99,90,114,105,104,109,103,112,108,105,105,101,98,100,102,103,103,112,97,104,100,101,88,98,109,104,105,101,106,121,89,90,100,105,113,90,86,99,100,109,98,104,94,102,95,99,97,109,94,101,106,113,107,100,106,105,101,111,106,116,94,86,109,94,113,118,107,104,81,94,95,92,114,105,98,99,99,102,99,95,103,121,95,98,97,96,98,100,100,101,95,100,95,87,105,117,111,105,98,100,110,95,94,100,106,104,103,116,100,121,104,113,108,88,102,95,103,98,99,102,97,109,92,100,92,80,107,106,103,117,88,103,96,103,99,102,102,91,103,102,95,100,98,111,110,104,109,106,109,109,112,109,103,90,92,114,106,105,100,106,113,105,86,103,99,88,102,96,85,104,109,101,99,106,93,96,110,107,105,99,104,105,100,96,103,97,113,100,93,105,102,100,101,95,104,107,106,108,86,105,93,112,96,108,112,103,89,102,104,114,108,98,115,102,103,102,108,100,95,109,96,101,107,100,118,97,109,94,101,106,99,104,102,113,105,111,117,110,87,104,113,97,94,104,101,94,102,92,112,116,93,126,105,97,103,118,100,116,100,101,104,107,95,107,101,123,103,95,101,94,107,105,100,102,100,99,88,85,87,101,71,104,109,110,101,101,103,106,105,114,103,90,108,100,91,106,102,106,100,113,109,96,104,95,107,107,102,112,104,98,119,93,106,115,95,99,107,100,94,106,105,105,115,98,83,112,106,99,90,106,104,88,107,107,102,108,99,98,91,121,112,105,97,108,111,93,69,104,100,102,103,104,117,100,111,106,92,107,107,101,104,101,106,107,107,96,107,107,108,100,91,97,106,110,100,108,101,106,108,104,100,111,108,107,113,91,113,105,113,102,106,108,106,102,103,99,104,105,109,108,122,101,98,99,103,95,107,103,96,104,101,103,108,111,96,106,103,93,109,112,109,99,109,117,108,118,104,115,123,98,93,87,105,107,108,100,97,99,104,122,96,98,112,107,109,108,107,110,105,112,105,104,89,123,114,106,100,99,98,100,94,102,110,115,104,100,108,113,103,98,111,99,100,100,98,105,104,102,112,102,105,110,107,105,105,91,98,83,113,104,106,96,98,93,92,101,95,115,100,105,95,93,105,116,90,95,102,96,110,120,94,116,98,110,111,97,110,102,96,94,91,104,108,95,111,101,99,103,101,94,119,87,94,112,112,98,99,119,111,108,103,105,116,97,107,92,84,116,104,108,93,97,99,99,101,91,105,108,96,106,109,108,95,117,110,102,110,105,102,106,117,86,104,103,87,124,95,92,108,106,109,97,110,113,106,103,104,99,97,100,101,113,103,99,102,101,110,108,78,105,108,109,101,108,87,107,107,104,105,117,94,108,98,92,107,104,90,101,98,103,109,102,100,100,98,99,106,101,107,98,105,108,94,100,103,88,112,99,96,99,103,100,115,107,92,103,98,88,106,101,128,102,95,107,100,109,75,102,87,111,92,110,106,113,102,100,103,101,109,106,103,98,107,98,97,108,81,95,108,102,103,123,107,96,109,102,94,92,103,105,94,98,111,101,97,87,96,108,94,92,107,104,113,95,104,107,104,106,101,100,92,110,104,75,102,107,89,94,108,90,94,107,102,105,91,102,100,105,100,112,95,108,101,100,103,107,101,101,101,102,117,119,110,101,100,116,100,97,94,107,101,109,92,98,98,110,104,111,98,114,107,107,98,111,98,102,102,106,106,126,109,87,98,106,100,100,106,109,106,106,101,103,109,89,94,106,91,111,91,102,114,107,100,101,104,102,110,112,100,107,113,113,100,99,86,103,113,97,116,89,98,97,102,105,101,96,108,117,102,93,96,99,112,93,109,110,107,119,107,94,90,105,85,111,110,101,109,113,97,93,102,97,113,100,102,99,106,110,91,123,104,75,99,98,96,110,108,93,98,84,102,105,99,93,116,89,106,94,102,102,95,102,93,109,103,112,99,106,113,110,106,104,98,102,101,109,84,91,92,104,118,98,110,107,73,108,104,106,106,99,102,105,102,106,107,110,105,90,109,104,113,100,98,107,108,107,96,112,87,109,101,101,102,112,105,84,101,95,107,95,109,100,97,114,106,100,68,103,99,99,112,115,95,109,110,106,103,105,100,105,108,98,114,106,106,104,97,112,98,97,95,104,103,109,100,104,94,102,84,99,109,107,106,102,110,113,85,114,96,101,109,103,108,108,112,97,113,118,102,98,102,95,100,106,109,100,101,102,100,106,99,104,109,99,107,98,120,98,101,100,96,104,113,105,108,105,101,92,91,90,104,104,108,110,105,105,101,103,111,97,99,114,102,97,101,96,110,104,109,93,104,106,107,99,95,106,104,98,106,100,113,84,120,102,105,110,114,107,95,99,102,119,95,111,104,104,109,89,99,121,96,109,101,99,91,107,93,103,111,113,101,101,103,94,92,94,113,124,96,106,106,102,77,103,98,81,97,94,109,101,108,105,106,93,102,90,96,96,96,112,108,100,103,105,104,98,111,112,93,103,102,99,95,96,91,91,102,108,107,96,105,112,94,109,110,87,105,103,104,105,101,103,100,101,94,109,105,91,102,113,100,110,99,107,106,103,96,119,97,105,109,114,93,96,98,104,98,108,110,121,100,102,99,90,116,81,102,98,99,95,101,96,104,98,98,97,97,98,113,101,100,112,105,99,106,107,99,100,92,92,105,105,108,96,101,100,99,95,104,102,110,105,105,91,107,121,101,108,92,102,94,112,102,87,92,109,103,107,92,105,101,94,102,99,101,124,109,105,101,84,120,96,88,98,103,98,104,113,96,111,107,108,107,95,96,116,92,104,112,91,106,99,94,98,97, +653.36951,104,107,105,100,100,111,125,109,72,102,96,90,106,101,115,92,104,116,100,101,104,105,99,115,110,106,110,114,108,106,95,87,87,108,101,94,102,96,99,115,117,103,95,99,96,112,91,107,97,88,104,102,76,97,104,113,106,96,104,107,95,91,106,92,108,100,106,107,90,97,90,110,113,106,103,116,103,97,97,91,112,113,94,115,105,107,106,110,98,82,104,108,104,83,96,114,100,108,100,110,102,104,109,105,97,96,102,100,97,97,104,118,98,102,92,115,94,94,109,101,105,93,112,107,121,110,118,112,109,112,108,104,91,107,114,106,116,106,102,107,104,116,104,109,99,101,111,101,102,104,106,99,104,103,94,100,98,101,113,114,102,112,110,101,103,110,102,99,90,98,87,96,107,93,100,110,101,96,103,104,100,116,102,96,102,94,102,95,113,92,105,108,90,99,109,95,103,104,108,105,97,124,105,102,99,95,93,112,114,96,95,109,94,109,100,112,113,88,91,96,91,112,103,114,96,98,114,104,126,101,99,101,105,114,106,106,87,109,87,100,112,116,115,105,93,111,92,117,101,96,103,94,105,95,97,101,101,105,99,96,97,110,91,105,105,104,97,99,100,106,101,100,99,91,107,98,114,107,106,111,103,96,103,115,104,110,107,98,94,111,108,102,113,104,90,111,98,105,124,101,121,92,92,99,97,102,109,107,104,108,98,123,107,110,100,105,90,111,105,102,96,110,90,108,103,96,112,90,113,110,101,95,112,111,85,100,115,105,99,101,101,102,101,100,103,107,95,110,97,100,110,102,106,99,108,113,99,109,100,99,103,101,103,95,100,90,105,110,99,106,118,93,105,117,100,104,113,117,99,94,103,105,121,74,100,89,66,114,104,99,124,102,104,106,105,115,113,99,102,98,105,92,97,92,99,112,106,107,111,108,110,103,105,109,105,95,93,99,110,105,108,94,98,115,102,103,101,95,106,111,99,104,89,97,94,99,104,86,97,106,102,86,102,101,101,106,119,106,98,99,103,102,104,113,99,105,110,106,103,94,114,113,94,107,100,113,116,110,103,107,101,100,105,97,105,104,109,102,109,72,98,97,106,107,106,108,98,117,98,116,86,107,109,112,95,105,80,113,90,109,115,112,105,113,85,107,92,118,106,112,114,103,109,104,106,105,103,109,112,98,99,104,96,96,105,100,103,114,107,109,108,111,96,99,112,110,83,110,99,119,94,95,109,104,98,98,109,97,112,92,104,88,111,104,113,101,92,116,105,103,106,104,102,101,121,108,104,106,109,101,100,97,95,104,98,105,90,100,92,104,88,106,102,102,98,106,100,105,101,93,109,105,95,102,110,113,110,98,105,104,101,109,112,104,104,109,113,98,112,98,98,120,108,103,126,98,104,101,107,111,101,91,103,101,104,109,101,106,107,98,95,111,103,99,81,109,98,117,108,93,107,100,92,102,100,96,112,100,93,90,96,105,95,104,85,102,102,112,113,104,108,110,118,103,96,104,113,116,110,111,108,105,98,110,97,117,111,104,110,97,117,121,95,107,104,118,98,105,94,103,112,97,99,104,99,98,101,99,113,107,95,94,91,100,104,100,102,97,96,108,100,107,122,99,100,109,114,95,105,102,111,108,105,108,94,93,102,103,104,107,96,118,96,105,100,105,107,109,120,110,98,99,123,103,113,110,91,102,103,109,120,114,106,105,98,91,108,103,104,113,103,108,98,91,89,105,97,98,100,93,110,105,99,106,102,103,98,94,107,98,111,107,109,97,94,99,105,120,108,106,104,109,107,102,109,97,99,114,105,107,99,97,94,100,91,100,104,107,102,107,95,91,103,100,123,98,105,109,109,92,109,114,105,106,103,100,102,106,98,105,105,99,105,98,99,91,110,105,102,100,100,103,95,102,100,100,95,95,99,91,99,106,101,98,98,103,105,93,104,111,95,111,100,98,99,109,105,108,117,107,107,103,117,99,100,105,109,98,105,100,87,108,99,103,104,104,95,103,110,94,103,103,111,106,100,105,99,117,102,106,104,101,105,100,112,103,72,108,104,112,99,116,115,103,113,98,111,90,93,101,99,101,106,100,115,94,108,105,103,103,105,100,99,117,99,100,107,109,109,94,91,109,94,107,91,110,110,107,105,108,102,104,100,101,111,103,97,98,106,102,112,107,94,91,97,110,118,115,117,82,97,105,107,91,97,109,108,106,83,111,105,89,104,105,98,113,101,101,110,108,104,96,104,112,94,108,100,99,66,112,105,99,99,105,105,108,99,103,114,114,103,95,102,115,108,124,98,106,101,104,106,124,108,105,109,112,114,102,106,106,102,101,118,96,117,96,90,122,110,121,99,108,112,110,99,108,100,109,106,113,91,100,100,102,97,110,99,96,104,97,95,100,112,117,98,91,99,98,101,95,106,101,100,119,96,111,106,99,87,110,98,108,91,110,101,116,102,78,105,97,103,100,96,98,96,104,100,113,88,108,106,109,107,101,108,119,104,109,95,109,103,106,95,99,114,103,92,103,98,105,106,94,102,100,101,103,106,97,101,119,105,89,102,96,128,107,109,106,90,103,106,117,102,92,88,100,111,116,101,93,121,98,119,94,99,105,105,118,105,103,102,97,117,98,100,107,97,110,104,104,109,84,98,105,103,104,98,71,113,99,94,88,87,109,108,107,101,106,103,107,99,111,102,103,102,99,76,105,98,121,103,86,105,105,121,113,103,102,93,119,77,111,110,117,99,108,113,124,93,96,118,108,95,112,100,99,108,107,104,113,116,111,102,106,108,112,110,104,103,102,92,87,99,104,99,106,112,104,95,100,95,108,108,108,114,96,95,104,104,113,95,93,105,110,100,119,103,103,88,97,100,113,99,121,102,105,104,108,101,115,105,112,104,116,109,101,94,113,103,95,107,111,102,97,100,114,106,122,97,124,108,107,100,108,91,109,112,105,87,112,108,109,99,104,103,117,96,109,98,101,108,106,107,104,104,94,113,105,98,101,105,105,89,116,112,101,92,103,93,92,107,106,98,109,107,102,108,105,110,105,111,92,103,97,103,88,108,89,94,109,106,109,109,97,113,97,97,98,101,103,96,101,87,100,109,99,104,89,87,94,99,98,111,106,98,101,104,103,101,106,104,101,112,98,104,113,108,108,100,83,100,116,106,107,100,84,102,96,101,67,103,99,102,95,107,83,111,102,102,104,99,110,82,98,95,97,107,99,119,110,101,108,111,110,102,101,96,112,103,96,101,105,108,103,101,99,107,105,111,100,99,73,104,100,103,99,99,107,103,102,100,106,71,93,103,107,98,93,106,110,102,107,112,98,91,103,111,109,113,112,105,101,113,101,102,107,121,100,89,103,110,105,100,113,98,106,110,110,106,78,104,103,97,99,92,103,112,120,104,103,95,100,119,92,96,96,104,104,98,106,98,110,94,102,102,111,115,119,107,91,110,106,112,110,101,105,111,102,122,100,101,104,91,109,105,103,99,102,104,121,106,116,91,102,104,113,107,87,100,95,107,107,98,106,112,113,105,104,90,115,91,99,109,136,120,116,104,95,107,109,103,95,94,102,97,110,90,102,96,111,96,109,105,106,107,100,101,102,97,113,100,124,108,104,115,105,92,104,113,120,99,100,102,104,104,105,99,104,105,104,98,111,103,102,106,112,113,94,105,93,103,97,106,105,103,113,120,98,113,119,105,106,108,94,95,103,93,97,103,101,97,104,105,94,106,102,100,87,102,101,104,102,109,103,105,105,102,105,94,119,108,105,103,109,108,102,115,92,102,93,122,88,111,103,109,98,117,98,109,102,105,100,110,104,82,100,102,101,104,95,108,104,104,108,113,97,102,107,98,96,102,101,124,103,112,104,99,92,108,112,98,104,109,93,104,104,114,113,101,90,105,102,104,119,103,101,95,102,114,99,100,106,111,102,124,98,119,102,94,98,104,103,107,101,101,103,106,124,76,113,107,109,100,113,116,104,99,91,90,108,112,101,91,112,112,102,109,104,105,109,101,107,109,98,124,103,103,108,110,100,107,97,101,92,100,102,97,99,109,105,109,103,102,99,121,100,95,104,110,109,108,105,110,111,108,105,109,105,99,95,96,99,90,102,114,107,113,98,112,113,98,107,100,94,109,98,116,101,101,101,110,106,96,102,101,104,107,99,101,104,112,106,107,127,107,98,101,95,97,107,104,98,83,115,102,101,99,109,121,97,103,103,96,101,112,109,94,110,105,109,98,84,106,111,103,97,105,96,93,112,111,115,114,101,108,104,106,108,107,104,100,106,101,108,111,98,107,104,98,103,107,96,111,94,88,108,104,98,108,123,105,121,83,90,97,113,106,98,98,101,99,116,106,99,102,99,78,105,116,105,104,104,89,109,111,114,109,104,104,108,116,101,111,103,112,100,94,111,104,99,95,106,100,102,100,91,99,111,112,107,110,100,114,115,106,98,100,103,95,100,100,88,100,107,100,110,96,103,97,103,103,100,106,113,102,108,116,115,102,106,110,103,104,110,99,93,105,104,108,109,102,106,99,96,113,107,104,118,115,117,67,94,102,108,112,103,105,100,112,103,117,93,96,103,115,115,128,118,97,103,108,102,92,102,105,95,107,98,110,98,99,100,100,117,110,99,105,91,108,104,116,118,103,121,98,87,102,117,94,95,102,102,108,100,113,101,104,91,106,104,104,114,97,107,117,109,98,96,108,100,98,109,109,121,96,109,75,115,103,96,97,98,113,110,104,98,104,94,98,104,104,102,112,97,100,106,110,92,111,104,104,105,111,92,123,109,103,105,105,95,100,102,97,98,89,114,95,118,105,100,106,95,111,94,119,106,114,107,105,112,120,112,117,108,105,100,107,108,127,110, +653.51068,105,87,101,97,102,98,107,110,90,108,103,113,93,101,98,100,92,97,106,107,91,104,92,101,98,106,90,110,105,99,105,96,102,106,101,99,100,108,98,99,93,90,97,90,93,102,104,98,108,94,93,121,111,110,101,91,113,105,105,100,67,95,99,85,99,107,111,93,86,98,97,99,102,115,97,113,105,102,106,102,96,103,97,111,97,106,100,113,106,94,108,100,115,104,100,96,98,101,87,87,102,109,99,91,104,95,105,97,117,105,123,101,106,98,106,101,88,99,100,91,106,110,98,99,103,97,103,95,110,106,87,122,93,107,109,98,91,94,95,98,98,104,100,88,100,90,105,100,97,121,99,97,108,96,100,96,100,102,105,98,113,109,94,104,120,102,107,96,106,94,95,93,100,104,106,97,99,98,112,102,109,104,94,112,85,96,92,100,102,102,97,102,76,101,92,107,113,96,96,102,106,105,105,94,101,100,102,110,96,99,75,103,95,98,105,95,93,117,82,102,95,105,98,100,100,117,102,100,96,95,98,90,100,94,100,105,107,91,92,91,100,105,117,105,103,110,100,101,97,120,98,112,99,95,98,108,86,112,99,122,104,108,113,95,95,101,94,108,100,97,103,95,119,95,100,108,109,113,105,99,111,79,93,114,110,97,98,105,91,100,93,110,113,100,109,110,100,113,100,100,97,97,91,96,93,107,117,115,90,108,98,104,110,91,120,112,103,102,79,99,95,100,109,99,87,100,113,97,103,94,92,93,95,107,101,100,109,97,96,106,102,101,95,92,104,99,105,106,101,94,98,101,106,101,107,100,84,105,102,99,93,104,100,100,97,94,97,119,105,91,109,96,91,95,122,103,90,103,102,102,99,115,97,113,100,92,96,100,102,97,105,80,97,101,78,113,108,85,86,100,107,101,98,101,89,92,98,107,95,101,98,96,79,110,106,97,90,104,97,98,116,102,99,110,86,99,103,90,93,95,94,104,101,77,93,98,91,108,117,101,99,102,105,98,99,96,99,95,101,95,93,95,109,104,104,91,101,106,106,106,95,102,98,104,104,112,117,103,106,112,94,112,78,92,106,93,92,108,107,99,93,113,106,104,105,103,94,106,118,99,98,105,95,97,103,94,108,96,101,100,122,107,107,102,94,92,100,112,105,104,100,103,104,101,112,103,93,112,89,100,109,105,122,99,104,99,105,107,97,106,115,93,94,105,85,112,104,94,99,101,109,110,102,95,100,71,98,101,110,103,106,101,106,106,105,95,105,113,98,104,106,105,100,106,95,98,111,114,105,112,90,123,103,110,113,99,100,96,102,106,110,111,97,109,110,93,118,95,104,88,98,111,83,109,100,103,100,104,95,112,104,97,117,86,100,101,99,100,102,102,95,113,99,95,109,106,105,110,119,108,94,104,100,111,92,104,93,114,106,101,98,97,91,95,94,106,104,92,99,104,94,107,98,103,103,101,104,109,107,102,89,102,112,113,118,95,98,100,108,114,108,88,106,110,112,95,104,92,111,87,102,107,95,98,87,112,118,99,99,92,90,112,102,96,96,114,97,95,90,104,103,82,96,115,103,107,106,112,107,97,95,100,100,105,96,102,122,96,105,92,107,91,106,103,88,94,95,102,98,106,103,95,114,103,98,93,98,109,94,105,103,117,104,92,106,100,104,99,97,101,112,105,96,98,107,98,116,106,97,111,107,97,103,87,102,104,100,99,103,98,109,102,81,104,93,100,99,104,104,114,101,96,109,98,98,115,94,103,105,97,97,111,110,105,101,101,114,118,101,117,105,98,106,111,104,90,99,108,99,125,126,94,91,109,91,104,93,98,103,106,112,118,68,95,106,101,100,105,104,99,95,87,108,103,99,108,106,100,110,104,103,92,96,92,116,108,107,104,105,96,102,105,117,114,112,106,116,102,104,97,94,101,100,103,100,103,93,101,107,111,106,100,108,94,96,99,127,109,104,103,96,106,83,96,87,104,102,84,95,98,107,109,109,107,109,105,101,99,103,95,101,121,112,108,90,104,106,107,92,98,110,112,84,115,104,118,103,101,126,99,110,115,105,103,106,106,97,97,100,74,103,97,104,106,95,115,90,101,95,109,103,106,122,96,123,103,105,84,97,105,109,90,108,99,102,106,71,102,104,99,91,107,112,92,103,100,95,95,94,99,102,104,105,93,119,104,96,97,102,105,92,95,109,96,106,95,93,103,106,118,95,108,112,100,94,100,93,111,88,113,95,118,121,105,96,101,93,114,102,105,117,109,107,98,113,96,109,103,97,111,92,108,98,101,100,103,102,108,100,105,97,110,103,100,95,94,96,99,101,90,92,117,103,96,80,93,99,112,95,108,103,108,99,103,102,99,116,120,103,109,108,98,99,105,104,107,98,105,105,103,98,109,101,113,101,99,106,108,92,98,105,100,101,103,94,101,100,99,104,98,111,90,96,99,104,98,106,95,102,123,100,107,98,100,99,101,105,96,113,107,96,99,100,106,106,104,91,107,103,93,117,106,102,105,106,101,94,100,108,98,100,110,92,106,87,111,91,106,91,99,120,104,113,112,101,110,104,97,94,112,117,105,94,80,95,111,101,105,108,97,105,94,105,108,95,114,109,104,103,104,98,99,105,89,97,101,110,99,108,112,105,106,120,105,108,101,97,98,102,114,106,94,112,102,103,66,104,103,115,109,107,107,107,121,117,99,104,98,110,113,102,107,110,102,107,99,107,104,104,95,101,104,88,109,103,105,103,118,110,95,108,82,100,107,122,101,97,111,103,104,89,107,107,100,100,76,104,103,87,97,107,88,102,111,111,75,108,109,107,99,114,104,115,99,103,108,109,116,103,118,105,92,102,103,109,105,107,109,111,104,114,96,99,105,105,104,101,103,108,99,102,98,103,106,99,109,94,90,103,107,92,113,93,103,110,105,101,104,112,110,120,102,104,103,110,97,123,112,98,106,103,110,107,103,108,111,107,106,94,110,111,97,105,105,113,112,110,102,95,96,102,99,104,106,117,108,109,107,93,107,102,91,108,95,99,107,103,106,104,99,106,103,112,108,98,113,107,95,96,107,113,116,109,100,108,112,114,95,109,110,97,107,113,102,102,100,111,108,102,103,109,95,111,111,117,103,102,103,97,103,103,104,105,96,112,103,109,92,104,123,107,89,91,105,101,88,123,101,109,106,104,92,101,97,112,96,120,100,102,108,111,113,95,105,100,105,98,113,117,117,99,101,109,128,119,105,100,113,94,113,100,99,104,107,102,103,94,108,112,91,101,105,101,105,90,119,106,109,95,113,118,101,97,102,107,106,112,103,115,96,112,101,112,95,100,102,91,101,94,111,102,116,97,102,111,79,113,106,95,104,104,113,110,114,112,99,107,112,94,98,105,113,112,91,103,103,105,98,101,112,102,116,97,99,95,97,105,92,103,92,101,96,94,112,86,118,110,97,110,121,106,108,96,101,103,106,105,103,109,103,95,107,104,89,102,115,99,116,116,108,110,110,110,104,105,111,109,98,100,113,101,106,101,105,110,113,101,103,120,106,111,104,106,92,98,112,99,102,106,96,92,99,102,109,91,112,98,91,111,105,95,98,100,115,109,111,104,110,120,116,99,108,86,113,104,116,109,98,108,108,103,108,101,122,108,102,105,115,112,107,100,90,120,100,104,104,100,111,103,103,98,94,104,104,99,103,104,112,109,97,105,92,120,92,106,92,120,107,102,94,121,98,96,103,103,106,107,106,91,107,99,113,91,105,102,94,99,115,110,106,103,108,99,114,103,87,99,102,98,101,111,104,101,99,100,109,110,112,108,104,94,98,98,93,93,101,110,103,110,100,104,107,103,100,102,102,92,100,108,103,108,71,102,96,105,105,109,97,101,105,108,104,108,104,109,109,98,76,101,104,102,103,106,111,102,122,102,107,115,104,113,96,105,101,108,106,109,86,95,102,111,100,105,106,109,101,111,100,92,116,102,101,100,101,121,105,115,105,101,104,102,104,112,107,117,106,116,107,114,112,92,109,98,102,105,111,106,107,100,99,102,106,85,94,118,108,98,85,93,100,102,101,96,90,106,114,95,107,91,108,106,95,112,105,97,108,112,109,114,108,103,84,102,102,108,114,102,106,111,112,100,91,100,113,102,100,93,100,102,101,104,92,108,102,102,122,100,106,101,106,103,100,108,105,107,95,100,109,105,81,105,108,113,99,98,114,114,100,103,101,98,97,113,93,106,107,99,114,105,108,106,96,106,100,113,112,113,105,88,107,104,113,108,106,98,102,111,97,98,106,107,106,115,110,101,109,94,108,95,115,106,113,103,106,101,100,103,110,117,113,100,92,103,111,104,105,112,114,101,97,100,109,102,101,105,124,110,121,106,98,96,106,105,103,90,102,105,97,111,100,114,105,109,96,72,102,104,104,95,102,100,110,107,108,99,99,109,94,107,112,105,93,104,110,105,106,103,101,76,97,77,107,102,100,107,102,108,105,108,70,100,98,105,107,116,99,102,107,92,105,113,108,98,105,113,100,90,110,113,99,109,102,114,93,102,102,114,104,101,110,103,94,119,101,95,111,104,109,97,100,101,93,107,115,95,101,107,109,97,108,121,103,108,116,112,99,108,98,105,103,86,99,95,114,107,103,95,119,110,126,98,100,90,113,106,98,87,110,99,81,104,105,106,110,106,102,95,96,108,105,101,113,98,111,103,118,105,104,104,107,102,99,107,105,108,91,95,126,96,100,99,100,105,112,105,109,97,96,110,91,102,99,115,94,95,118,98,112,105,97,117,103,99,87,100,108,99,102,91,96,108,112,100,104,104,73,99,109,106,99,102,111,116,99,92,110,77,108,99,97,96,98,118,107,106,103,98,99,126,105, +653.65192,106,85,95,106,109,104,92,100,110,98,102,115,105,103,95,95,117,102,107,108,98,108,96,93,113,98,110,103,102,107,105,111,95,115,111,97,106,101,104,104,101,99,113,119,106,105,112,116,112,101,109,99,98,100,106,109,95,98,111,92,100,100,86,98,103,102,113,128,106,92,117,101,103,107,89,98,100,120,92,108,101,104,93,109,104,112,106,97,102,99,91,109,106,108,103,94,105,110,110,93,106,106,95,95,100,106,111,98,108,115,107,109,102,98,111,100,94,99,93,99,96,92,89,113,103,113,111,98,124,101,98,99,100,113,101,110,106,102,95,104,87,113,103,96,100,116,93,96,106,98,105,105,109,96,97,107,106,107,95,98,115,110,102,97,97,110,99,95,82,98,96,98,107,96,103,106,107,109,99,111,106,107,102,95,85,110,99,99,123,97,100,109,107,116,92,113,100,107,103,108,104,105,100,126,95,131,105,113,106,98,97,96,103,109,106,114,100,102,100,91,108,106,99,98,109,103,111,99,110,116,112,100,113,90,110,67,104,112,99,122,102,98,117,120,91,103,97,104,104,101,99,106,103,108,96,109,100,104,104,107,104,102,113,128,93,114,105,107,107,109,96,106,121,105,103,110,101,105,107,113,113,102,96,99,113,111,107,101,111,104,113,98,101,105,111,96,118,111,99,108,105,98,110,115,95,111,100,113,103,133,98,103,99,115,105,85,103,100,103,89,110,90,95,98,105,109,107,103,103,106,105,105,106,104,91,101,108,87,96,112,108,103,103,101,100,100,115,110,100,101,102,105,106,101,106,109,108,104,99,108,104,104,92,92,110,102,96,113,96,109,109,108,103,115,102,94,109,111,95,118,112,111,96,103,107,107,102,98,113,97,134,97,110,103,89,101,101,101,122,114,111,110,105,82,104,109,105,117,104,86,101,95,116,107,109,112,112,103,101,109,103,102,107,107,83,92,104,96,111,111,99,113,95,107,113,115,98,103,107,109,95,106,109,96,92,106,92,103,99,93,119,117,126,117,99,99,99,110,88,110,97,103,98,95,107,99,103,105,103,73,105,101,93,98,108,98,96,118,108,102,117,115,118,100,99,98,107,96,98,94,102,96,100,110,96,108,102,89,111,108,120,110,107,105,104,104,101,105,103,111,118,97,96,106,110,109,117,105,106,101,76,106,107,110,104,102,93,97,101,113,102,111,107,100,110,101,103,114,109,105,95,109,105,102,110,129,101,101,99,114,111,110,96,99,108,107,110,106,100,103,98,98,114,107,96,99,130,103,104,108,105,120,97,111,105,120,102,109,98,109,99,101,106,101,94,103,109,107,100,117,105,103,109,103,98,96,102,102,108,113,104,104,102,97,101,92,119,94,107,110,113,94,98,104,101,70,99,89,117,100,113,91,104,96,113,109,87,110,109,101,92,100,113,101,108,116,98,97,106,113,108,110,101,105,106,101,118,106,99,94,98,108,91,102,104,115,106,95,95,107,105,102,114,104,95,106,97,95,113,96,107,96,99,86,99,109,109,98,109,117,113,113,120,92,109,94,107,103,106,107,102,109,96,114,105,119,112,120,108,100,108,94,100,110,99,110,94,108,102,105,103,113,102,105,115,120,105,100,112,99,101,102,113,114,94,67,110,97,109,89,110,122,103,104,109,108,112,92,114,110,107,96,116,107,103,106,111,106,107,108,114,109,93,105,110,95,111,104,113,96,101,103,101,96,104,96,108,106,127,103,97,100,104,98,106,103,98,115,101,95,105,105,104,105,109,105,108,110,114,103,98,100,116,99,109,104,96,106,107,105,99,100,107,118,109,99,106,96,101,111,115,108,96,110,104,97,109,108,105,98,103,93,105,97,101,105,105,102,114,104,100,71,100,110,104,88,113,108,95,79,101,109,120,113,105,101,108,75,91,96,107,93,105,99,98,104,103,107,103,108,99,100,107,118,108,100,99,106,101,100,111,103,100,104,102,108,96,98,111,113,101,110,108,117,98,107,107,109,101,95,112,107,108,102,113,100,111,99,98,102,111,112,105,106,105,104,118,113,105,93,104,95,108,113,104,91,100,95,100,109,100,104,102,107,107,117,99,104,113,101,96,97,100,105,107,110,100,100,103,106,71,92,99,117,116,114,109,108,117,110,113,106,115,84,107,104,95,117,98,123,91,116,107,93,117,106,102,100,104,113,104,99,101,108,93,99,102,103,91,104,119,104,99,100,94,101,100,96,90,110,106,121,106,99,110,114,102,116,90,98,103,109,113,97,107,101,109,92,95,117,104,120,98,107,95,106,110,98,100,110,105,111,126,100,116,111,106,99,115,118,110,104,107,101,104,94,83,113,107,121,109,105,111,117,96,99,97,104,114,119,103,117,110,113,113,101,111,106,102,120,108,106,95,100,105,84,103,98,109,103,97,96,98,105,109,109,86,96,100,106,94,103,95,96,101,111,102,84,108,114,109,117,103,98,102,105,94,109,112,99,94,109,100,107,115,106,106,105,116,105,103,109,99,104,114,93,105,104,98,101,98,113,102,102,108,104,106,111,103,98,96,108,94,101,112,102,127,97,94,105,98,102,106,112,109,103,112,99,112,104,97,106,104,94,104,112,116,107,100,94,109,92,128,99,113,108,104,100,106,95,116,105,98,100,96,102,99,75,109,112,110,100,117,101,106,115,97,111,100,112,104,108,98,111,99,105,90,108,94,102,112,74,96,108,102,112,105,114,110,105,113,101,83,109,111,106,97,103,104,95,103,106,100,103,113,101,95,119,113,114,104,105,90,102,106,106,99,113,113,107,105,98,112,99,100,103,100,122,108,102,107,107,114,113,107,98,104,102,91,115,104,80,104,102,110,102,108,103,97,99,105,117,96,102,98,92,115,103,103,106,99,99,110,100,100,99,98,108,111,120,112,108,99,88,109,96,101,100,104,103,96,101,93,106,107,100,99,96,111,104,99,116,92,111,101,105,102,108,113,104,106,103,113,98,98,95,123,105,116,92,96,103,106,99,106,107,110,104,103,117,75,102,105,109,107,113,99,107,106,105,113,105,86,103,82,104,99,107,102,101,110,104,105,107,112,100,100,101,120,89,106,97,99,114,112,88,102,118,95,113,107,79,108,107,98,101,102,103,99,102,101,105,110,102,114,97,99,99,102,106,106,103,90,104,94,100,113,110,111,105,94,100,91,104,101,101,108,107,113,98,97,100,100,105,111,112,93,100,103,94,112,102,100,110,98,80,105,110,105,108,97,100,100,99,93,96,105,104,109,99,111,94,106,106,94,103,103,96,109,94,99,114,98,96,109,108,102,104,102,94,107,115,89,99,108,108,113,100,108,98,111,99,112,92,95,105,105,102,96,104,110,109,94,98,106,100,108,106,107,104,95,103,112,103,104,100,95,105,106,105,116,106,102,108,87,94,99,103,109,107,106,102,109,98,91,106,105,94,86,91,103,98,99,100,107,104,120,107,108,102,115,94,102,115,107,97,100,110,113,97,107,103,95,106,106,112,108,106,103,103,97,124,103,110,110,116,96,103,112,113,111,103,101,90,107,96,98,99,104,98,97,103,94,106,92,102,98,98,105,101,102,101,100,103,111,94,101,115,104,100,102,111,95,113,101,109,98,98,121,111,115,102,99,106,98,101,100,98,100,98,102,105,101,98,102,106,113,109,85,103,112,103,90,100,116,101,103,102,109,94,96,107,107,98,100,97,80,103,108,97,99,98,109,97,103,107,109,103,98,104,103,87,104,108,100,101,114,103,106,101,98,101,89,104,103,84,94,113,99,99,119,100,102,96,104,99,104,102,108,114,105,102,106,106,112,106,99,100,97,91,104,102,110,102,106,103,105,92,114,113,103,92,92,74,107,106,104,105,98,111,97,102,116,100,102,95,88,100,99,90,101,99,107,90,101,108,99,109,107,111,95,102,108,99,112,103,98,99,102,102,95,100,100,108,113,109,103,101,96,119,93,90,97,116,110,94,93,95,104,99,107,96,104,106,106,94,112,106,111,96,107,69,102,95,86,97,113,98,103,94,112,103,96,94,109,99,96,100,100,109,85,119,102,123,105,102,93,79,110,112,99,96,106,109,102,96,109,94,95,104,139,97,98,98,107,94,98,106,99,104,102,100,109,101,105,94,99,107,111,96,106,103,109,105,77,110,97,107,112,110,110,98,109,106,104,98,107,97,110,109,106,91,109,108,102,101,97,104,109,99,105,97,98,100,99,101,91,102,105,104,109,112,107,100,97,103,112,93,95,102,90,105,107,100,107,109,113,107,81,103,102,99,107,102,117,86,108,95,110,132,109,101,97,90,97,99,91,107,106,106,103,101,91,116,96,97,103,98,101,108,99,110,140,81,103,96,104,88,100,100,83,110,95,98,105,103,101,106,103,104,89,95,98,88,103,105,98,94,94,97,126,90,110,102,125,115,108,89,98,106,88,97,102,99,103,103,102,105,95,98,98,112,94,116,98,106,109,104,104,103,90,113,109,105,98,76,99,102,102,106,98,90,94,95,104,107,113,114,103,104,102,94,108,106,105,113,117,93,112,108,109,106,113,99,106,107,97,106,98,113,104,100,87,100,101,112,113,96,111,101,102,105,98,103,93,88,86,120,99,109,104,94,113,98,105,93,89,99,99,102,95,99,104,101,97,98,109,105,83,93,118,113,96,102,100,112,111,95,102,99,110,99,108,101,113,100,97,101,100,102,87,104,97,102,113,93,102,113,104,109,114,118,98,99,109,106,102,109,102,98,98,105,102,88,94,101,103,105,104,106,99,93,102,98,105,115,101,100,115,76,79,110,104,63,92,118,89,103,108,87,94,92,108,120,114,98,103,97,111,111,110,104,99,110,112,110,100,98,93,92, +653.79309,91,103,93,113,110,93,130,102,112,108,103,105,97,105,109,103,106,101,105,113,113,104,102,100,102,113,95,115,110,90,94,112,100,99,104,123,107,89,108,102,103,99,100,101,102,100,105,101,91,96,122,96,94,108,108,115,83,102,109,102,107,90,110,98,110,120,108,109,105,112,112,105,110,113,90,117,102,98,106,121,110,117,90,109,104,92,107,101,102,111,107,99,100,109,100,101,97,82,128,102,100,100,120,101,104,97,105,94,105,94,101,108,110,101,113,90,99,114,97,98,108,98,101,88,97,112,116,105,115,105,79,102,104,101,98,113,100,92,99,103,101,101,101,92,102,98,106,95,94,102,114,100,114,90,113,115,105,94,101,107,103,110,112,96,90,103,107,92,98,102,121,97,101,100,105,100,114,107,94,114,102,105,102,106,104,97,99,108,102,104,108,98,98,101,97,103,95,107,94,96,104,110,113,121,102,111,104,113,121,109,98,104,107,93,109,109,100,111,100,97,100,116,109,101,104,108,91,103,117,96,91,107,99,109,103,110,100,117,102,105,96,108,111,101,102,116,108,101,99,98,97,112,91,99,108,107,101,116,96,114,91,103,101,105,98,113,105,110,106,108,107,106,100,104,102,102,97,105,100,113,100,111,103,99,104,117,75,101,92,99,106,110,93,102,120,114,107,108,101,104,103,91,117,106,95,106,122,113,107,120,94,115,100,102,101,104,96,95,90,100,100,105,107,111,100,92,102,102,104,102,117,97,104,75,107,116,118,96,98,110,108,105,80,103,112,107,104,102,106,102,101,109,98,105,97,95,96,96,119,104,101,101,98,93,102,95,106,113,105,101,98,93,115,105,102,110,95,127,104,105,106,89,102,104,95,101,88,115,101,100,109,86,102,100,102,104,100,101,107,103,103,108,100,91,90,112,102,105,107,104,106,95,98,78,79,117,97,107,96,104,100,94,99,100,101,89,106,103,88,106,100,100,110,96,99,99,103,106,103,107,104,102,92,105,102,112,84,103,99,105,107,101,109,94,111,115,101,113,103,106,93,110,122,96,114,121,96,91,106,101,107,105,108,94,106,96,111,115,103,97,104,113,112,104,109,110,105,115,121,111,101,98,107,101,85,116,106,103,104,101,102,105,107,113,98,101,99,90,110,103,109,94,98,109,106,102,108,104,123,90,101,102,113,85,98,97,108,103,96,112,97,97,95,96,107,103,106,103,89,100,111,94,108,113,118,105,109,98,99,89,104,93,108,105,113,82,104,93,107,96,94,105,108,98,102,104,101,106,95,109,104,104,112,96,99,95,99,101,96,103,108,134,123,101,101,107,108,109,120,110,103,111,102,105,113,99,103,103,104,97,99,113,111,106,99,113,102,101,107,95,100,105,106,107,111,101,111,90,115,109,99,106,99,104,100,100,106,96,98,98,96,94,113,100,102,96,102,102,120,107,106,113,95,98,106,94,106,104,108,106,105,111,100,105,79,109,110,118,97,101,96,103,81,100,93,103,114,111,104,105,90,109,103,98,99,115,94,103,112,105,96,105,112,108,99,86,92,108,105,88,101,115,95,106,100,105,111,101,112,101,100,94,102,98,113,107,100,104,97,106,94,106,97,101,103,92,96,103,103,101,90,95,99,98,108,107,108,93,98,104,101,108,107,104,104,110,114,93,113,104,104,100,98,98,92,101,99,103,110,111,102,110,109,106,104,92,106,102,94,102,114,101,95,104,104,105,101,87,108,109,88,101,106,102,102,106,102,95,110,100,113,107,110,106,97,109,99,98,97,112,102,91,97,104,125,93,95,103,103,102,101,101,105,113,111,104,108,104,107,114,111,103,94,105,116,95,108,110,108,103,93,120,105,101,108,107,94,102,115,100,101,122,108,99,102,125,106,98,110,95,106,112,103,83,102,98,113,114,107,101,103,101,96,108,106,112,103,96,100,111,96,109,108,118,107,96,99,107,110,106,112,112,107,107,90,98,118,102,104,79,108,114,110,105,91,117,105,120,110,103,85,110,98,96,104,110,101,100,105,128,111,107,98,99,115,120,101,114,94,82,105,102,114,109,110,113,97,110,101,94,109,113,101,112,97,84,100,97,89,108,97,108,105,104,114,92,96,109,96,106,106,117,109,93,93,102,117,107,108,103,106,98,112,110,106,99,100,104,99,112,106,94,109,109,109,123,115,113,101,92,101,96,114,112,107,99,92,100,96,106,98,108,101,112,107,101,95,95,112,95,104,103,99,101,116,118,105,100,118,113,112,107,95,107,99,84,103,94,99,109,99,105,116,95,103,111,86,86,109,101,107,103,98,88,101,112,112,99,99,112,86,100,100,105,119,90,98,95,106,105,113,84,98,116,91,106,103,99,102,102,113,109,111,100,104,109,98,110,113,105,111,100,100,129,97,90,100,72,97,107,97,109,102,107,103,112,98,101,99,101,102,110,102,100,97,97,105,102,107,112,102,108,96,96,106,110,112,75,95,105,120,110,103,97,109,106,99,104,108,113,109,108,100,102,103,98,106,109,100,125,107,100,94,91,99,110,104,138,97,92,103,102,113,98,101,103,110,108,106,79,106,113,102,117,99,108,109,116,113,99,112,109,102,99,107,106,123,103,113,108,102,98,108,100,106,113,103,120,115,102,112,110,116,134,96,125,106,101,107,112,103,99,102,98,106,103,98,102,107,113,92,113,105,108,106,108,99,96,108,99,106,94,98,103,107,106,111,98,106,105,106,93,87,113,102,104,107,99,106,113,97,106,106,111,100,100,102,111,100,104,103,90,105,115,100,111,108,106,111,117,105,105,95,93,99,78,103,103,107,114,113,102,103,92,99,101,109,106,113,94,110,109,103,87,124,106,94,111,94,112,100,104,104,111,105,101,107,111,109,117,105,109,117,104,98,107,99,101,110,110,105,116,107,108,96,111,109,97,117,111,113,97,107,108,116,106,107,102,99,114,111,107,109,95,110,106,112,103,103,99,108,93,99,112,102,106,98,109,102,83,106,97,102,106,106,99,109,96,116,105,94,108,101,97,97,95,92,94,109,98,108,106,107,99,100,109,109,116,94,109,99,109,114,108,106,105,101,94,110,97,89,105,99,111,113,94,97,98,96,105,113,105,103,102,121,119,91,94,99,96,105,108,111,103,108,112,103,100,98,109,106,105,103,105,95,109,102,105,115,102,101,117,96,111,103,93,93,112,110,120,114,107,94,107,95,102,93,109,107,99,98,109,119,88,97,104,108,109,104,108,104,99,114,101,104,106,101,92,99,106,102,95,109,110,108,98,108,100,100,97,99,72,105,89,117,109,99,103,99,103,98,103,107,112,103,109,93,103,104,113,104,105,105,97,100,105,98,103,110,93,105,101,111,108,109,122,107,85,102,102,109,109,94,114,102,111,95,109,120,104,115,105,124,91,99,114,108,105,104,109,92,100,79,88,83,102,110,103,112,102,107,101,99,106,112,93,110,116,102,119,110,105,96,117,102,105,103,107,94,98,115,116,107,100,105,108,110,99,109,100,100,106,105,102,103,106,94,116,107,99,110,97,97,111,102,108,105,104,109,94,111,107,102,107,96,101,99,109,108,100,105,102,102,109,113,102,103,107,106,99,103,110,98,116,105,101,108,105,108,104,78,106,109,106,107,104,102,104,104,105,109,128,111,107,104,107,101,103,100,104,106,108,107,105,107,98,113,103,105,103,104,103,114,91,113,84,101,100,97,100,112,110,106,102,109,108,106,100,109,104,115,109,99,107,118,111,106,100,111,105,95,111,101,104,116,109,108,106,106,100,100,99,110,102,107,110,106,100,92,107,107,106,118,100,105,104,114,106,89,94,104,106,107,115,95,109,96,106,108,90,78,96,104,106,106,94,98,101,104,100,109,99,107,116,102,102,113,94,130,107,102,99,102,107,118,106,101,100,104,104,120,111,97,100,99,100,105,106,101,110,105,105,107,117,102,105,108,116,100,111,102,102,98,105,107,105,99,112,92,103,104,106,127,111,102,107,109,85,109,106,99,102,98,97,108,117,88,106,119,116,116,103,108,104,98,128,116,97,121,110,109,110,108,106,106,102,99,106,116,112,91,108,108,103,104,118,98,105,110,113,97,104,96,110,111,112,105,117,106,110,105,103,97,87,115,111,115,118,114,106,105,105,109,90,103,109,112,109,111,107,105,110,107,104,111,100,107,103,97,112,101,107,108,113,105,104,107,117,104,103,104,111,116,116,99,95,99,92,123,104,102,110,121,109,112,129,103,105,101,114,102,102,121,99,102,107,120,103,79,109,97,113,107,113,102,99,93,106,102,101,109,100,99,105,109,105,96,112,112,109,99,106,106,109,108,105,104,101,103,107,99,112,99,110,112,111,106,106,112,111,91,91,106,103,105,101,104,96,111,96,120,103,105,98,114,103,97,100,104,112,89,102,101,97,101,95,102,104,108,107,109,107,103,91,105,109,100,104,103,112,124,114,114,112,99,101,98,102,101,106,100,102,105,105,92,104,106,101,108,114,100,106,97,102,98,116,112,102,116,108,107,104,104,108,100,97,102,101,119,100,107,88,114,99,113,106,93,100,102,115,101,112,94,97,92,115,103,107,98,97,100,110,105,108,103,98,111,100,117,105,85,102,103,113,92,111,119,109,103,104,96,124,94,104,112,104,117,98,106,99,102,107,98,115,113,107,111,105,112,108,106,113,101,102,117,108,117,83,103,109,105,94,94,114,100,101,99,97,101,103,95,105,101,112,98,106,106,103,106,104,102,117,101,104,85,106,109,110,95,105,101,102,109,110,111,99,107,104,106,112,95,112,86,102,99,115,113,91,91,102,100,99,100,111,101,90,104,87,97,101,104,104,101,113,99,104,106,119,109,116, +653.93433,90,102,117,108,75,115,98,105,95,110,105,80,94,111,107,115,104,115,100,97,94,92,95,104,104,95,89,110,95,101,105,97,98,95,93,99,68,96,100,109,108,106,83,116,95,105,115,98,104,90,88,99,95,92,91,102,101,98,94,94,108,96,100,90,111,103,91,99,108,90,110,96,92,115,92,90,106,108,113,108,104,99,98,100,97,101,107,102,94,114,95,96,114,97,90,89,116,103,111,107,104,121,97,95,91,112,108,98,101,100,95,105,101,91,97,98,100,101,102,104,103,106,105,107,100,118,99,124,107,116,95,113,112,99,108,99,100,102,102,105,97,105,104,120,107,97,106,100,104,94,92,95,108,94,99,105,105,92,111,98,96,94,102,95,106,107,100,101,107,94,93,112,106,99,91,106,95,103,99,94,96,90,104,85,101,99,104,102,101,97,100,106,103,104,92,99,100,99,109,104,91,86,98,97,96,111,95,101,107,95,105,101,105,102,98,101,100,92,100,81,100,99,104,100,101,103,104,91,109,106,92,104,95,102,105,106,118,103,100,104,106,98,107,102,92,84,104,99,96,82,96,107,90,102,99,103,94,99,87,110,105,106,106,110,106,107,113,112,109,97,87,97,103,100,102,115,114,108,90,110,104,104,105,99,100,100,100,103,99,97,93,92,108,95,103,100,100,105,95,120,99,111,99,114,79,112,104,105,94,105,96,114,114,101,94,95,96,109,94,106,95,101,106,109,111,97,103,88,113,99,98,97,117,105,91,98,109,118,87,109,115,99,101,99,92,104,106,99,92,98,107,116,117,104,98,106,105,113,89,108,92,104,107,94,97,103,84,121,107,82,107,99,96,95,104,100,104,101,100,100,105,105,91,100,100,102,107,107,104,87,106,100,78,99,101,94,104,97,96,113,90,99,99,96,94,100,96,104,104,111,96,94,103,109,91,102,88,88,100,95,96,104,100,101,104,93,99,84,90,109,105,88,95,96,115,102,110,103,91,111,91,98,101,95,99,97,106,87,96,102,96,95,119,109,101,91,99,109,109,85,92,104,111,97,106,98,100,107,115,95,97,121,107,104,90,91,91,86,105,102,97,95,103,102,105,98,102,106,120,95,95,116,102,102,88,102,104,76,76,100,103,102,100,97,93,96,93,100,110,100,97,110,112,92,100,119,115,96,88,92,91,95,98,93,86,100,115,109,95,96,98,90,104,112,98,118,111,98,108,92,86,96,96,94,112,102,92,98,98,121,103,105,112,97,101,100,111,95,99,112,115,101,102,136,103,108,100,95,90,122,106,92,94,102,92,107,108,100,98,95,103,96,106,102,91,92,109,108,95,94,98,97,110,85,113,101,100,95,102,109,95,104,111,99,98,99,108,91,96,109,97,99,104,105,108,99,100,102,98,106,109,92,98,105,97,95,104,99,95,103,94,89,87,104,85,91,79,89,109,92,116,110,106,87,109,76,95,102,97,95,101,109,100,96,101,95,114,101,94,119,101,95,104,94,93,110,106,97,105,103,106,105,93,106,104,103,87,107,113,100,102,101,97,101,101,104,91,105,99,105,104,92,104,101,107,100,94,116,109,98,103,95,132,93,96,102,106,90,104,99,99,122,110,104,94,100,110,103,104,107,101,96,104,113,102,96,99,112,100,107,94,106,96,100,102,97,103,98,102,94,91,102,111,98,106,96,98,102,100,106,109,115,108,103,104,109,101,93,105,90,114,105,88,94,93,98,100,104,107,102,98,91,102,101,118,96,99,96,105,94,98,105,101,99,105,100,100,92,105,99,102,101,108,75,106,106,102,102,102,98,89,108,87,97,100,94,94,104,101,92,107,102,101,100,125,85,107,108,106,104,108,106,104,105,103,105,100,102,108,102,104,103,95,102,92,102,104,100,100,100,96,115,101,89,111,99,107,102,103,108,107,111,99,104,98,94,87,104,95,113,102,99,94,112,117,89,97,94,113,104,106,117,98,116,117,110,102,99,93,95,99,100,106,115,88,102,102,99,96,110,107,118,100,93,105,94,95,118,111,84,106,101,106,96,118,104,94,96,111,104,99,106,110,107,113,95,97,102,101,110,114,95,113,99,98,120,99,93,97,88,118,109,107,100,105,111,83,108,96,108,97,108,103,110,106,101,100,107,104,112,95,98,110,114,109,106,105,98,99,119,113,102,97,102,102,96,115,91,116,94,91,104,102,97,97,105,91,95,93,107,106,103,91,96,110,102,96,116,97,101,86,100,95,102,102,106,95,104,96,105,109,119,101,93,97,94,117,109,83,95,95,102,105,111,96,105,104,106,101,100,114,110,100,84,100,111,102,94,104,96,102,102,103,94,103,107,117,117,106,102,116,101,91,106,103,78,107,107,104,116,111,103,115,113,107,109,103,111,93,103,100,101,105,104,97,100,94,95,100,89,107,119,95,104,113,99,116,107,102,98,106,108,95,106,106,106,100,103,111,100,92,99,118,102,102,108,106,96,72,116,104,95,111,108,103,112,109,101,99,107,112,114,92,108,110,81,96,99,101,105,123,100,98,94,106,111,109,106,114,107,108,96,105,99,110,100,106,105,105,106,96,94,106,119,94,83,113,104,105,104,93,103,101,108,102,118,97,109,96,101,104,91,102,95,105,109,102,102,107,95,100,91,113,105,105,107,101,105,109,109,102,109,103,112,105,103,100,97,106,106,105,110,110,110,103,106,105,103,97,109,95,99,100,99,123,114,114,106,117,109,108,98,103,102,108,114,98,109,106,102,102,102,94,102,98,107,95,119,99,110,105,112,94,103,107,105,114,116,102,96,121,110,111,105,105,108,102,112,115,101,108,101,93,121,98,99,109,106,93,102,100,108,88,109,78,107,106,100,99,109,113,110,102,111,110,103,93,104,106,100,104,101,108,100,99,117,98,94,104,108,98,103,94,105,91,111,110,98,97,112,95,113,101,110,116,100,109,98,105,109,113,103,98,99,99,108,106,100,107,99,111,102,97,98,107,105,101,120,102,108,110,83,100,105,108,109,100,100,101,104,108,106,110,93,99,113,98,95,112,110,108,99,120,99,102,99,101,110,95,83,109,105,111,95,102,98,108,106,99,106,106,110,97,111,113,100,92,108,105,114,103,104,113,113,98,103,109,95,107,110,104,107,104,105,105,100,105,103,116,110,106,110,98,120,102,102,110,106,109,105,93,117,111,110,100,107,108,108,110,98,113,100,100,100,109,99,101,90,114,109,111,105,108,110,112,101,98,104,120,99,88,84,109,91,103,104,122,104,100,110,113,95,98,96,105,107,102,99,104,99,110,120,98,107,110,110,92,101,111,108,105,117,109,92,101,102,98,108,121,106,100,110,108,114,89,91,103,95,106,96,120,110,99,106,94,102,106,113,100,96,98,98,100,108,104,92,103,94,94,113,96,98,106,113,104,105,98,102,105,107,118,104,96,97,107,103,111,103,98,91,111,108,96,97,113,111,106,104,108,97,102,105,102,128,106,112,103,111,114,94,113,105,100,103,110,105,103,107,105,108,91,115,100,109,111,100,103,110,115,107,95,117,103,104,112,110,111,101,103,97,91,104,87,100,113,112,103,112,95,107,91,113,108,114,108,91,107,109,100,108,104,102,111,109,99,99,102,107,102,117,114,95,113,102,98,107,100,98,96,103,116,112,105,96,97,69,93,103,109,96,108,99,109,116,91,104,108,102,98,100,101,97,107,121,100,101,105,112,92,103,104,88,88,99,107,105,103,120,114,117,101,96,95,109,115,99,101,98,106,98,103,115,93,108,100,98,108,96,103,105,103,98,105,113,102,89,101,89,98,109,96,113,101,100,91,97,93,88,105,110,95,103,94,102,95,105,102,99,105,106,79,97,84,91,99,96,110,87,93,97,102,101,96,87,103,100,98,106,97,106,108,105,104,106,104,98,99,101,110,106,104,101,83,102,97,65,104,112,101,79,109,101,119,108,79,119,101,103,97,105,98,99,95,99,117,89,106,97,105,101,119,110,105,110,104,109,103,93,117,92,113,99,101,106,97,108,101,119,108,99,102,111,95,90,89,100,89,108,113,102,102,106,112,107,101,121,88,119,113,114,97,101,105,101,95,103,106,104,102,92,100,111,94,101,106,103,99,117,102,98,106,106,87,96,110,104,109,113,94,103,101,88,95,112,95,117,99,106,102,98,102,119,101,95,104,117,94,95,101,97,107,95,108,108,94,102,110,109,106,106,98,82,106,93,105,96,102,100,105,103,106,104,102,96,100,117,99,92,85,104,111,103,104,105,97,79,95,102,87,86,112,93,110,112,108,113,98,91,100,106,99,107,109,91,104,104,101,98,89,107,109,99,109,102,110,104,115,100,109,103,101,104,105,108,101,91,104,108,103,103,97,89,108,102,97,115,101,112,108,96,97,113,100,90,99,103,94,93,103,110,109,103,105,108,129,97,108,101,98,91,97,89,96,104,102,105,100,103,87,107,104,105,97,99,107,101,95,106,106,105,100,99,103,100,100,98,112,93,106,98,111,99,109,105,100,109,101,98,102,89,97,96,117,110,107,112,112,102,100,104,100,127,101,117,103,101,106,104,107,116,95,117,104,114,101,99,117,103,106,98,98,107,100,99,109,97,103,99,108,103,91,83,98,99,103,87,112,100,111,103,91,102,100,108,100,101,129,108,113,101,117,104,122,99,102,95,109,103,96,103,96,94,108,102,104,102,102,95,99,118,98,111,102,109,101,106,109,115,102,105,99,99,90,111,95,112,116,98,113,81,100,103,99,103,95,103,95,109,106,98,112,96,102,104,113,103,103,108,101,99,92,106,104,102,100,86,100,110,109,101,102,98,100,105,103,101,99,108,109,87,114,96,95,101,100,100,104,113,94,93, +654.0755,106,99,107,109,113,100,89,123,90,103,96,100,105,109,96,109,91,103,101,99,101,107,99,107,91,96,100,108,107,99,99,95,95,109,94,120,97,104,105,97,93,108,99,99,106,98,104,109,96,95,110,106,90,99,102,89,107,110,112,94,120,102,98,94,95,98,101,103,116,97,103,104,102,99,103,116,86,110,107,104,114,96,98,113,102,86,107,101,94,100,101,107,103,107,101,100,96,106,87,101,93,99,98,100,94,109,109,98,95,102,103,94,102,84,105,83,103,117,104,106,118,111,87,106,103,119,110,103,128,95,108,107,99,99,126,100,103,118,96,101,96,102,97,95,95,105,102,100,106,94,95,106,106,106,99,100,88,118,100,100,104,102,97,113,102,100,104,90,106,98,108,96,97,98,99,97,105,96,111,114,102,84,98,101,98,100,71,103,110,94,89,86,103,109,93,97,104,97,103,95,110,102,105,97,98,115,103,111,107,132,97,102,112,100,93,100,89,80,97,100,103,110,104,104,98,114,102,104,116,103,99,100,109,105,108,107,113,126,102,100,93,103,116,105,98,105,121,108,99,94,120,102,96,103,106,105,96,102,94,98,96,104,112,93,102,104,101,106,102,86,104,117,106,118,90,99,97,109,105,104,95,107,104,108,101,101,99,104,98,113,95,106,96,106,114,110,103,110,99,110,120,105,107,103,108,110,110,100,105,114,94,104,107,102,105,98,111,97,94,99,100,108,107,116,102,113,115,94,114,125,111,96,98,104,104,119,106,91,94,117,102,107,118,92,97,104,99,115,110,102,115,100,106,109,96,95,106,118,104,91,93,105,99,97,99,100,110,103,103,108,111,99,101,100,98,106,108,117,113,100,99,103,107,115,112,109,98,101,100,87,112,91,102,98,99,101,111,104,99,100,104,86,86,108,106,101,98,93,104,102,90,100,109,99,101,100,105,101,101,102,99,118,104,102,104,96,109,107,105,109,90,89,103,105,104,88,99,107,92,108,106,91,106,99,91,106,97,101,108,112,108,100,104,109,105,108,103,103,105,103,100,98,101,98,110,105,105,104,129,93,108,103,98,95,95,98,101,112,113,113,106,77,106,95,112,106,100,101,116,97,95,102,104,109,107,102,98,104,107,124,111,100,97,100,103,104,97,98,99,96,108,107,94,117,98,95,94,107,100,98,99,91,104,96,114,97,114,109,102,99,97,92,92,95,91,100,113,103,97,111,97,118,95,113,110,105,105,106,99,104,110,108,121,112,103,98,106,103,97,97,95,111,101,98,67,91,100,95,108,112,95,105,101,109,95,92,108,104,99,115,114,99,95,100,104,100,110,112,102,110,117,105,105,88,103,109,100,109,99,99,102,96,100,105,96,116,94,105,112,109,102,112,102,100,113,96,99,110,97,89,104,106,96,102,107,114,102,94,123,105,103,109,99,95,97,98,97,99,110,104,99,104,92,121,106,98,93,107,102,117,99,100,109,100,100,115,102,109,93,99,98,96,107,110,96,101,111,100,122,111,114,99,132,102,103,100,110,100,114,109,109,120,106,102,101,94,94,102,101,102,108,92,95,111,106,108,101,100,114,92,106,95,98,107,112,117,99,101,101,105,99,102,88,93,89,119,107,104,104,99,99,95,92,114,99,103,114,105,102,102,104,99,88,99,103,102,107,102,113,113,106,81,105,102,103,101,100,103,98,100,105,109,91,99,101,106,98,105,103,106,130,100,99,103,102,116,96,104,98,93,103,99,101,111,118,83,111,124,103,109,112,116,117,107,95,105,104,94,104,118,110,96,96,101,100,104,99,115,104,102,115,101,95,107,104,109,97,101,101,101,108,104,101,108,111,97,106,95,121,88,72,107,101,99,106,113,102,110,121,101,92,98,106,100,106,101,114,94,98,96,107,90,104,99,119,89,100,106,96,101,104,89,98,99,98,105,104,105,83,104,99,117,101,102,97,98,109,104,101,99,107,103,92,103,103,90,95,97,106,96,106,107,98,119,111,92,101,111,106,116,96,114,106,98,106,109,92,103,105,119,111,112,110,108,92,97,96,98,109,98,96,110,99,111,101,91,88,110,96,106,108,101,97,102,93,113,102,107,108,111,112,99,108,91,95,98,93,88,105,102,101,96,107,112,97,111,96,112,91,92,101,98,110,102,99,104,103,99,85,114,105,106,104,108,105,96,97,99,105,107,95,109,109,94,96,109,98,105,94,101,106,106,103,99,96,100,103,76,98,112,107,107,112,108,101,102,99,97,103,103,114,109,88,108,109,95,103,101,93,97,104,105,98,104,108,101,98,102,104,101,104,103,106,99,100,107,105,111,108,103,114,103,103,109,113,105,95,96,107,100,128,109,91,115,104,90,112,97,106,99,100,104,96,106,102,84,109,103,96,104,95,94,114,100,107,98,99,102,113,85,116,107,101,108,105,98,99,103,100,100,98,87,101,98,111,96,104,101,108,102,111,114,106,105,117,110,95,98,100,100,100,95,104,95,104,110,108,102,124,113,106,106,94,107,109,103,98,100,95,102,74,101,102,73,99,103,102,105,108,94,109,111,105,99,97,112,99,88,106,103,98,106,102,97,112,106,105,104,113,95,107,104,110,114,109,94,87,101,109,95,106,90,103,91,107,102,108,96,110,118,104,106,107,112,106,99,99,88,104,114,105,112,107,102,120,120,106,103,108,105,106,101,107,103,96,103,105,91,106,104,118,113,102,101,120,118,106,106,102,94,103,102,96,105,102,102,108,104,110,97,96,106,109,105,101,102,102,110,106,99,104,104,108,109,94,93,107,111,108,101,104,107,100,99,127,108,109,101,104,110,101,109,109,112,96,104,102,92,97,102,122,108,108,103,115,102,113,100,98,99,99,80,80,116,104,107,101,105,104,120,108,109,106,103,95,112,100,107,106,113,104,95,86,83,91,66,104,106,101,113,104,114,104,107,108,102,107,102,97,93,89,104,85,100,104,106,119,111,112,100,114,107,103,102,113,99,110,96,102,98,91,100,113,95,107,104,100,113,84,101,95,99,100,96,99,99,108,100,120,80,96,118,97,101,95,93,112,104,105,109,107,108,103,99,106,100,104,102,102,103,100,112,104,104,101,98,92,106,105,104,109,88,108,98,103,86,100,93,104,113,96,91,109,104,106,100,82,122,106,108,98,112,104,104,107,113,103,104,102,109,103,106,97,109,101,110,108,96,99,109,103,112,98,93,97,116,102,101,101,112,113,106,101,113,99,102,99,109,94,110,102,103,110,96,107,106,112,113,108,99,103,99,104,110,114,91,118,110,116,99,119,107,108,118,106,116,96,100,100,101,101,109,104,99,101,112,111,109,101,93,118,104,100,103,101,104,105,108,113,100,93,101,108,95,98,117,104,94,118,98,101,105,106,103,98,78,100,102,116,98,101,111,103,99,111,108,100,107,106,93,108,106,104,98,88,106,95,104,102,95,104,100,100,107,106,106,113,115,106,113,102,86,99,104,103,108,104,116,118,97,105,107,105,102,100,95,99,111,105,109,103,102,109,109,108,103,102,107,97,104,107,95,99,97,98,98,90,102,86,99,102,89,103,112,102,101,105,92,98,99,100,103,103,109,112,95,96,101,106,91,104,113,113,104,97,95,92,105,118,118,108,99,101,110,98,110,95,110,107,109,108,107,100,108,107,104,93,108,99,99,95,106,108,108,105,102,87,112,101,94,111,108,104,100,102,107,107,105,104,99,106,87,96,91,105,99,102,102,104,114,101,97,103,120,112,101,111,101,108,116,92,112,104,109,103,111,88,103,106,95,114,104,106,102,102,106,103,94,93,101,90,96,93,99,108,98,103,98,114,99,102,105,85,105,111,109,109,111,102,94,104,102,83,92,99,86,102,92,106,106,105,100,100,104,101,90,106,97,101,96,103,107,114,104,95,109,96,98,99,102,100,108,96,109,70,103,99,110,107,102,117,96,104,98,106,97,103,103,90,110,98,105,110,108,108,100,95,92,109,119,125,103,102,94,107,97,105,102,105,98,103,103,99,108,110,112,105,119,109,98,81,92,94,91,98,101,104,108,105,94,100,103,88,121,106,103,108,107,96,107,96,99,110,100,107,120,113,92,104,97,99,91,94,104,100,98,99,110,114,98,101,109,100,87,90,98,110,107,103,91,120,109,116,117,92,136,100,110,104,96,111,106,111,103,116,94,113,97,96,98,92,113,95,97,100,106,113,109,105,119,107,108,103,115,104,103,99,104,98,95,110,111,94,113,110,118,111,101,100,106,95,97,120,97,99,102,107,108,99,112,100,97,105,97,102,104,107,94,102,104,105,114,92,104,89,104,101,96,111,98,96,103,95,111,100,92,103,107,106,111,112,115,108,99,107,106,102,91,102,94,95,91,98,109,92,113,94,86,102,98,104,97,93,94,103,85,91,90,115,100,103,99,99,100,108,96,106,105,114,101,108,105,112,100,116,105,91,94,97,95,94,80,95,112,99,116,103,103,104,76,94,113,101,115,109,98,83,100,103,115,110,104,103,102,106,96,98,73,104,107,100,99,125,107,113,103,106,96,95,91,108,93,100,112,101,111,95,102,82,106,104,103,82,104,97,102,109,96,101,103,122,103,104,106,105,99,106,102,102,108,95,118,117,98,97,109,94,105,111,90,109,101,102,99,115,102,112,105,103,105,90,117,97,113,98,101,97,97,99,90,102,93,112,106,110,91,98,91,85,113,103,106,117,88,86,100,88,106,104,105,95,101,86,102,106,114,88,104,111,114,102,101,93,91,117,101,93,99,99,96,104,99,102,106,93,101,105,113,95,107,108,108,89,94,114,112,121,94,104,90,99,101,110,105,100,108,94,94,107,96,107,91,92,100,96,106,96,79,109,108, +654.21674,99,78,99,94,97,96,97,107,95,108,112,90,100,70,104,104,98,75,111,114,98,100,93,98,109,99,101,110,92,99,98,96,101,107,94,98,90,110,100,99,102,96,94,113,118,113,97,105,103,100,91,115,112,117,96,101,113,85,100,98,95,116,104,96,92,104,102,111,124,104,100,99,99,100,93,117,93,101,105,105,96,120,76,105,103,80,94,105,103,81,99,98,94,92,96,120,105,103,108,100,93,110,109,89,97,103,108,109,87,100,95,99,100,111,86,105,108,96,104,97,113,93,103,110,101,105,126,105,106,97,104,115,99,97,105,112,88,75,102,96,101,100,102,99,93,100,114,104,76,109,104,92,97,95,110,107,99,97,107,99,108,100,101,102,100,101,95,95,102,98,98,105,110,98,97,83,118,105,115,107,102,106,93,102,92,88,98,94,124,96,104,103,103,105,100,109,97,100,89,107,91,109,104,106,113,100,95,89,112,102,98,95,94,97,91,104,106,96,99,113,103,115,108,95,109,101,102,98,104,105,105,95,108,107,93,99,104,94,111,102,112,92,98,95,103,97,94,109,102,102,88,90,97,105,99,108,106,99,87,101,94,114,91,103,108,106,106,106,108,92,96,96,108,98,110,91,105,101,102,118,102,112,105,96,101,116,99,114,101,101,95,105,105,94,112,101,110,105,100,98,99,102,101,113,85,102,96,112,102,111,91,114,105,103,116,93,110,118,99,110,109,100,91,104,94,106,96,94,102,111,106,106,108,116,108,102,100,99,102,108,108,109,99,100,117,100,92,110,103,96,103,108,104,116,113,100,106,113,102,92,115,104,88,105,99,96,99,103,108,118,99,103,95,97,100,100,103,104,110,119,106,104,94,114,93,95,106,108,100,110,116,106,100,103,93,100,92,102,111,113,110,93,95,97,97,94,99,94,108,95,90,110,103,103,105,106,103,98,114,109,104,105,91,83,103,105,97,102,97,117,96,100,104,105,90,99,100,114,97,109,77,94,112,102,101,108,106,92,89,109,113,96,104,102,89,106,107,93,119,104,101,95,105,101,108,112,97,98,103,98,97,100,113,113,107,99,88,105,103,104,109,115,126,116,109,109,100,103,103,101,105,102,106,108,100,104,96,98,100,98,104,104,103,101,96,101,99,99,99,106,112,100,94,114,101,117,104,104,109,88,108,97,96,90,94,100,120,106,105,100,91,106,89,96,108,106,99,90,106,107,95,101,96,103,103,125,105,101,96,95,107,100,102,113,90,139,106,109,94,95,84,99,96,92,106,102,102,104,107,103,94,108,94,111,122,113,95,102,93,105,100,98,100,94,96,103,106,99,102,101,102,100,106,91,110,111,92,100,96,100,103,110,106,94,103,105,103,90,95,93,105,93,115,105,96,105,106,99,102,95,101,76,95,97,110,110,97,114,109,100,92,99,98,98,116,108,100,99,107,100,90,112,113,91,115,93,97,100,109,107,103,112,104,95,108,104,94,104,92,99,107,112,110,106,97,98,102,108,110,104,117,94,104,97,88,102,112,105,113,106,102,100,108,105,107,110,94,107,103,129,115,102,94,107,102,90,102,102,105,87,112,89,87,95,110,94,100,108,99,105,103,99,117,111,110,104,102,104,95,100,113,107,99,102,99,97,88,103,106,109,104,98,98,100,98,96,100,85,109,89,107,99,94,100,98,102,116,105,93,98,103,101,110,110,117,88,108,89,112,92,110,95,95,110,105,107,104,110,103,107,100,100,104,99,92,125,109,107,105,112,106,107,109,96,143,110,108,104,103,107,100,109,105,116,102,100,100,83,106,110,110,106,98,97,98,103,111,107,95,87,108,103,103,112,127,99,105,102,105,101,105,113,106,110,97,100,103,100,102,102,110,104,102,105,102,97,103,104,108,102,94,101,103,114,106,104,96,116,93,89,110,110,105,100,94,94,99,97,106,107,91,99,105,101,96,113,99,96,107,96,95,97,98,108,95,104,103,101,113,108,109,101,106,98,108,92,95,107,117,106,103,102,98,101,97,94,99,112,95,104,108,104,116,96,105,102,99,114,105,111,83,112,108,104,96,106,71,98,95,94,93,92,110,88,103,93,96,103,93,99,115,103,97,100,97,110,102,99,98,91,113,99,102,88,111,107,105,100,110,113,102,95,107,100,103,110,98,104,103,110,104,109,106,105,103,99,116,117,111,91,92,87,98,103,98,97,109,90,107,99,100,100,113,86,97,95,80,112,108,110,95,105,117,92,87,113,102,111,105,107,109,99,107,96,109,105,117,109,105,111,101,101,105,110,97,104,94,100,98,84,100,112,104,88,92,109,91,102,110,96,109,99,105,99,111,98,103,104,95,105,110,113,107,102,100,90,109,94,104,115,94,100,105,93,113,93,87,99,94,95,106,101,85,107,111,119,103,106,103,105,105,99,116,103,104,116,101,108,101,103,105,101,90,112,101,100,96,93,108,100,119,99,111,99,104,109,93,98,107,106,99,100,113,99,101,104,116,104,105,105,96,113,99,101,96,117,93,116,113,102,109,103,107,109,110,68,109,104,103,117,103,108,100,96,110,106,98,100,108,100,98,85,106,108,117,105,117,103,104,99,107,120,114,106,105,109,97,87,111,114,103,94,100,110,110,108,108,103,111,97,102,107,98,103,96,105,103,100,116,99,100,112,89,99,109,113,115,109,110,112,105,96,98,109,103,103,83,96,92,125,110,104,111,108,113,120,100,104,114,101,103,124,100,112,100,106,108,108,107,101,106,109,98,105,107,103,94,104,99,102,80,109,93,113,106,102,103,102,106,108,103,104,110,95,98,113,106,99,99,101,114,104,113,103,98,99,99,107,113,101,108,105,100,107,116,100,107,119,106,95,104,108,113,121,110,103,110,98,113,117,107,101,110,104,112,102,96,99,105,103,94,119,91,107,109,96,104,104,102,114,97,93,121,102,107,109,105,116,98,104,103,110,109,106,101,98,95,95,113,99,117,104,99,96,107,102,98,99,101,98,99,103,111,109,117,96,87,110,102,106,101,103,118,101,103,100,109,98,120,85,107,106,113,99,96,97,100,107,102,109,113,118,106,106,113,112,116,99,103,106,110,98,120,113,113,106,106,98,110,105,102,110,107,106,104,99,111,106,101,92,106,105,92,114,104,83,111,106,97,101,106,108,102,105,107,100,103,95,105,83,82,104,101,107,111,97,106,106,110,101,110,105,85,98,101,95,105,106,101,96,95,106,106,109,124,102,93,98,104,113,98,111,111,119,103,109,100,101,111,101,108,110,111,90,89,102,117,101,99,102,107,117,110,103,109,115,94,106,107,103,95,114,101,93,102,112,95,110,102,110,100,106,102,95,99,113,102,100,105,116,105,103,88,107,88,101,109,108,113,102,94,113,104,113,101,102,111,106,96,97,100,107,101,103,99,102,99,100,99,118,111,123,118,111,101,111,119,98,109,91,97,111,98,95,103,106,113,94,111,106,107,100,102,116,103,113,110,108,108,96,113,109,100,104,102,107,90,116,107,99,106,105,105,112,112,90,100,99,101,117,128,105,96,112,100,94,112,136,103,95,87,116,97,111,95,94,109,109,113,104,100,100,117,99,113,108,99,100,102,106,111,101,116,97,112,103,97,112,104,113,104,103,108,70,105,95,104,101,97,100,108,124,102,109,95,98,73,109,107,97,100,108,108,113,109,101,100,106,108,93,102,99,106,91,114,104,108,108,95,104,91,59,113,88,111,100,106,96,105,100,95,104,118,97,86,112,99,92,124,97,105,111,104,111,105,104,112,97,103,109,110,85,104,93,103,108,102,91,99,99,94,101,104,105,90,105,115,116,99,106,108,113,112,98,103,111,102,99,105,95,100,103,102,103,96,97,125,106,103,113,91,106,117,117,119,111,115,108,103,96,104,103,107,115,100,103,109,104,106,102,91,96,103,118,96,101,113,98,104,103,104,105,102,112,116,105,102,88,88,97,103,123,103,106,97,107,99,111,94,109,111,97,108,104,94,93,110,94,100,109,112,102,88,103,105,108,105,102,112,96,98,110,99,118,107,102,102,97,99,117,105,107,86,84,106,114,109,106,96,104,121,100,109,110,112,106,93,113,102,111,96,98,107,100,94,108,98,78,103,105,101,112,88,100,103,102,116,117,103,94,111,101,100,104,81,96,107,100,99,105,109,101,108,104,114,106,100,100,111,104,96,108,100,99,97,100,103,105,99,109,97,110,105,108,104,95,97,105,102,98,101,99,106,108,112,113,101,112,106,104,106,142,105,109,111,99,105,101,92,113,106,104,102,110,117,98,113,119,94,98,102,121,118,109,84,95,90,122,101,112,104,96,112,101,104,100,105,105,109,110,90,118,103,103,96,98,108,109,121,99,94,101,93,112,110,110,99,110,93,112,112,96,93,109,102,105,90,109,98,110,118,102,102,101,103,93,109,95,100,108,98,104,121,111,110,99,106,103,114,108,115,117,94,111,102,105,100,119,102,103,96,95,110,113,100,104,107,99,102,103,95,101,102,114,93,108,111,98,105,93,96,107,87,99,99,117,99,103,77,98,108,103,102,109,96,100,100,96,102,105,101,102,103,106,96,111,105,113,83,109,105,109,88,101,100,96,98,99,101,104,103,97,78,105,100,91,98,117,108,116,106,106,88,99,98,95,115,101,95,104,95,113,111,98,108,101,123,103,81,107,97,105,101,109,106,104,107,103,114,104,114,117,92,100,106,101,101,103,94,100,96,104,113,105,102,110,107,98,104,103,98,98,100,108,84,106,91,105,91,105,115,99,99,101,110,103,104,106,104,100,112,117,98,117,84,94,102,104,107,92,99,118,113,90,105,112,100,117,111,109,107,102,117,108,93,103,97,101,103,102, +654.35791,101,103,118,82,97,102,117,113,109,99,76,104,98,98,114,102,98,119,107,112,117,96,98,97,106,113,94,103,98,108,101,109,119,108,105,98,100,101,110,101,95,100,94,95,120,105,93,109,108,98,97,101,110,101,102,91,101,104,98,99,109,97,107,103,111,112,99,117,87,110,107,101,102,113,95,105,112,95,113,105,95,106,105,98,108,90,118,123,104,106,101,102,90,81,90,88,106,102,97,109,92,99,104,115,98,108,98,104,112,107,100,98,102,103,110,107,105,108,99,100,91,102,112,83,102,107,108,94,103,105,103,107,108,106,108,110,100,105,106,112,94,113,97,93,106,101,114,98,97,109,105,115,110,103,99,122,106,86,109,84,109,105,118,104,98,109,98,92,109,86,88,110,98,109,96,95,103,107,99,101,102,112,112,99,112,113,100,98,122,92,125,99,96,98,90,97,110,116,100,100,105,97,99,98,103,82,103,95,112,111,94,99,102,104,99,105,106,96,105,115,125,109,100,110,100,107,103,108,97,109,106,102,120,113,106,99,120,99,111,108,106,95,111,97,92,104,111,103,104,107,98,95,101,101,106,107,89,106,101,113,96,111,104,95,93,112,118,106,103,96,100,116,108,101,108,100,111,113,106,106,116,105,100,75,107,103,113,107,102,105,106,113,109,108,104,94,99,100,105,108,101,108,109,103,105,111,112,106,114,119,93,104,97,94,99,94,113,113,108,105,76,97,113,99,91,101,94,95,110,96,104,99,97,108,107,102,102,106,105,117,100,102,102,108,99,100,102,101,113,80,100,116,103,103,98,112,111,101,118,99,108,102,88,98,101,106,118,94,104,119,109,104,95,107,113,104,107,104,100,103,100,101,96,93,101,101,97,103,109,83,108,107,108,103,104,105,115,102,109,96,95,98,103,93,94,90,135,105,113,100,96,96,109,110,110,93,99,110,111,99,107,113,95,96,101,92,113,91,103,99,104,101,103,98,94,110,101,102,101,96,108,108,100,103,103,100,95,95,102,105,104,97,134,90,108,105,107,103,115,110,101,110,98,105,98,111,113,94,96,107,103,114,99,94,96,102,111,106,113,104,98,104,102,122,101,102,118,91,114,129,109,103,108,104,96,98,110,108,102,94,108,98,107,107,104,109,99,104,104,107,109,96,102,117,102,69,116,99,97,105,97,103,98,99,97,99,97,97,98,107,104,105,100,106,105,107,117,103,108,105,104,107,98,108,116,108,113,102,109,105,112,108,94,111,100,103,106,112,90,101,111,104,102,105,97,105,98,96,93,104,89,101,103,98,103,108,106,109,107,102,107,103,106,100,105,95,109,99,99,93,99,111,109,107,112,107,101,104,90,105,115,97,115,104,99,94,92,107,107,96,98,95,116,107,100,99,92,102,103,102,79,107,115,98,103,95,97,98,104,113,95,104,99,100,97,108,97,97,101,100,98,99,80,97,91,95,106,103,104,114,102,95,116,111,99,102,111,109,95,105,98,112,102,105,109,106,115,111,107,109,112,107,111,108,93,108,101,109,104,105,110,108,113,105,106,104,94,97,100,103,105,67,86,103,90,82,106,110,100,87,111,112,85,102,105,106,103,117,110,105,110,105,103,91,86,103,105,100,90,93,103,108,102,116,98,94,99,86,105,107,116,108,94,106,89,102,99,94,105,97,111,100,107,108,117,105,105,105,104,108,109,92,100,109,106,98,106,100,107,96,106,107,85,106,97,95,103,103,100,72,108,109,107,108,108,102,101,113,109,101,94,106,99,107,100,122,101,117,105,112,102,113,92,102,101,95,104,103,103,101,103,110,96,107,107,105,114,102,98,97,103,118,109,103,108,107,102,107,111,95,97,107,101,104,100,103,108,104,90,103,110,115,110,114,113,104,100,104,113,111,86,100,105,106,101,93,110,97,97,103,101,95,97,107,108,102,99,103,103,106,103,108,112,107,103,94,106,117,125,91,108,110,102,101,103,108,110,95,95,104,96,126,96,103,96,111,91,109,112,95,114,122,106,103,97,92,99,96,100,123,121,99,107,102,102,100,111,103,102,88,105,105,101,113,101,103,103,105,107,125,95,102,119,116,112,101,114,102,100,105,104,109,100,100,90,94,109,97,122,99,102,99,104,103,103,93,121,103,98,125,107,103,95,110,104,108,106,107,100,112,105,111,104,70,95,108,84,112,107,113,113,107,108,107,106,99,98,112,103,104,108,109,106,108,97,104,96,106,107,114,95,114,104,107,107,99,99,103,100,99,100,98,108,91,107,112,94,111,96,101,102,99,102,102,90,100,92,100,112,94,97,89,111,107,108,107,96,103,111,98,97,110,94,96,98,112,110,118,107,108,111,105,94,105,92,110,105,96,109,115,107,113,106,104,89,108,99,94,108,92,108,120,101,111,96,98,96,112,108,93,102,101,102,83,112,105,78,121,96,107,108,110,91,119,104,95,107,101,103,91,97,96,110,102,95,83,101,92,106,99,107,104,104,99,96,101,109,101,109,99,119,102,109,94,120,96,104,98,98,105,100,109,92,105,103,107,104,105,81,98,114,115,104,96,111,100,94,102,103,95,102,96,110,106,97,98,107,107,97,90,107,104,113,92,99,103,103,100,97,113,102,90,95,88,101,107,98,88,106,94,98,90,105,104,105,102,99,93,111,99,116,99,104,99,110,104,113,136,100,107,101,111,100,99,94,95,109,105,94,106,121,97,104,106,106,101,108,106,105,100,109,92,92,118,120,106,105,105,106,102,112,99,94,102,109,103,100,93,113,101,88,118,110,113,100,101,108,98,84,96,106,95,109,95,99,98,94,102,109,108,104,105,104,113,101,98,103,109,89,79,105,103,86,100,98,95,100,105,96,102,103,97,103,90,97,97,107,115,99,101,98,108,102,99,83,116,97,107,108,108,93,104,100,107,101,99,116,107,92,95,99,115,95,94,96,101,106,104,86,112,101,113,109,98,108,110,101,103,106,115,109,108,102,99,79,106,116,109,109,102,111,109,101,101,105,106,102,106,91,102,87,100,109,103,104,104,111,98,105,104,106,107,105,113,91,82,105,98,98,104,119,105,105,103,116,99,107,102,107,90,109,99,90,99,111,105,108,112,97,95,98,89,99,100,98,101,103,93,106,99,102,107,98,106,97,97,99,91,103,104,111,110,104,106,105,96,98,102,105,96,99,99,100,97,102,105,94,100,108,102,104,107,94,107,98,101,95,130,115,85,112,106,91,103,96,103,98,97,93,111,89,105,92,93,94,89,102,101,100,101,101,113,94,97,99,112,105,104,102,91,96,90,104,112,100,79,100,96,105,128,109,99,103,93,101,100,100,99,107,109,92,114,97,106,91,99,98,99,102,114,108,102,98,102,101,102,80,109,106,107,89,112,101,113,112,100,100,102,91,95,113,92,99,108,99,85,111,103,98,103,110,106,115,88,104,107,97,100,119,93,108,102,91,111,95,100,101,92,98,94,117,120,105,101,139,92,114,104,105,93,104,104,105,113,117,105,106,105,100,103,102,92,108,101,109,106,104,94,112,110,105,90,104,96,105,98,98,94,110,109,101,99,97,94,111,101,108,105,112,95,92,100,133,109,105,96,101,96,100,107,94,83,108,102,97,105,118,94,107,100,109,98,101,110,102,95,93,108,98,97,101,117,102,109,95,106,109,93,94,95,97,107,107,110,93,91,104,88,107,112,91,92,101,106,101,103,102,109,111,95,97,97,99,103,108,96,123,92,95,111,100,100,97,91,107,96,115,89,95,111,94,106,97,107,97,92,99,110,103,128,104,109,102,108,111,98,101,105,106,105,100,89,95,108,110,105,106,100,106,104,104,95,107,96,103,104,99,88,97,109,90,102,96,105,91,91,101,84,98,93,100,100,91,90,102,95,97,102,98,104,106,91,95,109,105,109,95,76,102,108,97,87,104,107,103,97,94,89,101,113,105,96,99,98,105,91,104,100,86,105,99,116,102,107,106,110,105,109,108,109,99,91,116,98,100,110,101,102,103,102,112,90,92,101,105,103,97,101,99,94,110,96,92,89,120,105,92,98,84,106,102,96,96,114,94,100,111,106,95,107,98,94,104,98,106,121,94,95,80,101,122,89,101,103,99,101,102,115,110,104,102,104,108,82,105,104,113,87,76,106,93,104,113,109,106,108,99,108,117,105,112,104,106,106,115,98,101,103,89,97,97,103,110,100,98,99,102,111,103,110,101,110,112,108,96,99,102,103,112,114,115,98,107,101,96,96,116,102,65,100,115,108,108,101,83,109,100,96,91,119,107,117,102,90,98,100,78,105,98,97,102,83,105,100,95,92,105,108,103,103,106,99,98,104,92,95,106,106,104,113,96,108,95,95,101,116,106,117,94,105,100,94,96,104,90,125,108,88,122,102,107,99,96,101,93,104,102,101,102,107,121,92,92,100,103,90,85,109,106,97,98,114,108,110,101,104,94,97,100,99,105,105,94,105,96,103,107,94,100,105,101,105,103,92,106,109,109,98,107,100,99,114,116,101,104,113,97,87,112,87,103,107,112,109,113,106,105,101,100,108,105,101,106,118,101,103,110,107,131,103,97,112,107,107,90,101,90,109,114,109,110,114,95,89,107,75,102,94,108,106,105,68,98,103,87,101,93,97,114,88,97,98,108,96,106,111,99,104,116,95,100,98,102,109,95,93,88,97,111,94,108,96,101,97,102,99,109,96,93,96,116,93,100,109,98,106,90,114,110,90,110,97,104,102,100,96,110,95,97,107,100,94,109,96,106,99,122,99,92,104,95,109,105,95,100,113,104,112,95,97,100,101,110,105,106,100,107,108,116,109,105,100,112,101,106,109,101,101,106,108,105,108,98,90,128,94,102,103,100,109, +654.49915,99,103,107,106,99,95,116,100,80,114,95,110,93,94,107,105,110,108,109,98,106,102,100,93,120,101,112,117,105,100,129,98,103,112,99,98,98,101,95,124,95,109,98,93,106,107,99,112,115,113,97,100,99,109,113,100,91,100,105,105,93,102,103,113,90,126,93,104,106,99,110,96,100,102,87,112,113,88,101,92,106,103,106,92,76,95,113,107,96,83,96,110,118,110,111,105,108,104,110,103,112,90,101,88,97,104,105,109,103,102,92,104,121,100,102,93,94,117,107,101,96,84,107,117,105,99,102,109,103,103,111,109,92,109,101,99,91,75,90,107,93,102,101,103,96,102,109,103,110,87,102,102,103,89,97,91,89,109,97,107,94,98,109,102,107,92,100,103,111,90,110,96,94,93,100,96,105,91,109,100,114,94,112,87,93,103,98,98,101,117,98,96,104,92,109,96,105,107,135,88,109,100,102,106,96,117,100,108,117,99,114,97,110,109,113,94,94,105,105,93,100,105,103,107,97,95,91,102,98,108,100,108,103,92,112,100,117,109,109,98,79,102,102,96,96,104,101,108,86,99,101,105,99,91,91,106,97,80,101,100,102,105,106,113,94,109,98,110,97,89,111,93,105,111,98,104,104,104,90,98,98,106,101,102,100,106,97,101,97,121,97,103,100,86,99,107,101,100,98,78,84,102,103,103,96,95,87,106,110,104,97,102,100,109,105,101,95,101,111,101,99,98,105,98,115,105,105,102,102,107,98,95,102,107,94,102,109,91,91,98,97,101,100,91,108,109,105,99,92,109,107,98,106,106,108,109,103,104,102,97,100,105,87,108,100,93,91,104,101,99,108,79,96,108,106,103,104,111,102,113,94,106,102,109,115,100,117,94,109,89,99,97,115,113,97,102,98,98,105,121,93,100,111,95,108,107,100,103,106,103,106,106,97,107,104,93,101,102,97,103,102,104,108,107,112,104,103,97,104,117,93,98,86,101,110,112,111,114,100,97,100,106,103,103,87,95,93,102,105,113,96,106,102,110,113,101,111,104,109,109,100,108,105,112,113,98,107,114,97,107,103,102,101,76,103,95,106,109,104,103,101,87,106,110,119,105,73,120,95,100,95,117,114,103,118,97,115,106,105,102,111,101,112,108,103,104,97,107,99,109,102,103,98,99,101,113,87,102,111,106,98,91,101,99,97,98,101,105,104,106,96,103,104,101,105,113,101,101,114,108,95,111,104,96,104,101,100,101,98,112,108,117,98,104,106,86,118,112,98,117,102,107,103,103,101,109,102,103,101,96,98,102,113,108,103,101,108,93,111,109,106,103,107,86,114,99,107,121,101,104,103,102,103,112,109,109,98,107,109,121,97,97,99,102,104,101,100,107,100,99,104,96,104,115,113,100,98,107,103,91,92,110,104,92,91,133,104,106,101,122,106,107,93,102,106,101,90,95,108,97,98,114,96,97,109,80,89,102,104,120,96,98,93,112,90,99,105,98,106,109,100,107,106,99,95,90,99,106,107,98,105,105,94,96,90,94,98,96,112,109,110,117,110,108,99,99,90,93,103,88,108,111,102,104,102,106,110,102,109,97,98,101,115,95,83,106,106,114,91,103,99,112,87,101,98,94,87,103,124,91,115,91,100,106,91,100,82,87,121,100,95,106,94,109,95,105,102,98,104,80,104,107,97,109,105,101,106,99,100,94,105,108,114,106,112,107,109,100,98,87,114,107,104,117,96,101,98,103,115,104,99,106,111,108,111,112,97,97,112,114,105,107,108,102,99,98,94,102,93,100,99,112,105,107,102,102,117,112,113,110,101,98,98,104,107,105,104,100,99,101,115,100,85,115,101,105,112,111,104,108,101,99,109,106,109,102,111,91,115,109,106,98,102,108,103,97,104,81,103,106,102,116,96,102,89,106,103,102,96,99,95,89,93,98,98,105,89,104,118,107,109,99,108,99,102,104,91,106,117,98,96,108,91,111,97,95,108,96,112,103,112,108,106,101,109,102,93,113,105,101,100,113,106,116,104,98,96,107,103,122,102,110,110,106,101,106,101,101,101,109,105,98,94,99,103,97,95,105,95,105,103,106,91,93,96,99,95,101,92,108,104,117,100,111,108,102,93,103,106,96,113,104,117,110,101,108,104,114,82,111,106,97,97,103,108,102,82,111,104,107,102,112,102,95,105,95,91,103,105,112,102,104,114,106,110,99,104,94,100,99,93,115,101,102,99,92,109,103,98,106,129,112,105,106,96,103,101,96,92,104,105,107,112,98,107,92,113,104,93,104,92,103,105,102,105,111,119,101,101,105,94,107,106,98,110,111,91,111,109,97,112,95,104,92,113,102,95,113,92,109,95,93,117,109,103,99,100,94,106,99,97,110,120,104,108,96,104,107,102,111,114,123,104,113,101,100,100,102,92,100,105,105,99,108,99,102,104,106,92,100,101,104,97,111,100,117,93,88,121,113,105,100,90,104,107,81,95,109,101,109,103,95,108,103,107,117,100,102,104,107,113,106,104,103,102,105,114,99,120,99,106,101,104,104,119,104,104,106,109,94,112,111,105,87,106,107,98,95,98,98,95,95,98,106,104,100,109,96,99,100,111,107,119,114,97,101,96,100,105,112,112,93,122,117,100,117,118,100,108,119,97,93,97,100,102,93,116,94,102,97,102,110,111,108,104,120,110,105,98,110,105,106,103,104,92,104,105,94,117,106,110,113,109,107,101,112,95,106,100,92,104,96,99,103,117,102,118,109,124,104,118,101,102,97,104,100,109,99,108,110,104,108,107,98,111,105,104,103,94,95,111,90,103,96,102,109,98,112,99,104,118,99,109,96,109,100,96,100,94,97,106,105,106,112,102,106,109,104,98,100,95,109,116,105,100,93,100,105,112,108,97,103,113,110,100,107,105,116,108,109,106,114,88,100,108,110,109,95,107,106,108,114,122,102,101,101,119,107,110,94,108,107,105,107,112,110,108,107,105,89,98,95,99,108,109,111,113,93,112,102,92,104,106,109,109,109,106,98,95,128,105,100,92,89,101,109,109,109,108,95,93,105,105,92,101,95,110,113,98,101,106,108,110,115,109,103,114,100,104,98,111,91,104,120,113,109,102,106,111,112,98,94,105,118,98,115,105,106,96,106,117,101,101,95,94,111,93,98,111,104,113,107,103,105,128,98,116,116,105,110,113,110,89,116,104,91,106,109,110,108,102,105,98,82,109,105,93,138,108,106,110,95,102,105,103,105,103,105,102,109,102,109,97,108,108,97,95,107,105,97,87,109,109,101,104,102,113,112,96,95,101,113,106,89,101,106,90,91,109,112,108,110,112,100,109,102,91,107,117,107,102,126,102,99,104,112,94,94,108,106,104,109,101,101,105,93,96,102,105,95,102,93,105,93,107,90,100,80,105,104,102,97,100,105,100,102,104,94,104,92,113,105,100,104,92,97,98,101,108,102,104,102,99,96,101,110,104,90,108,87,108,102,107,115,104,116,110,91,90,110,108,96,98,107,102,112,104,103,105,112,110,101,112,103,106,98,98,100,103,109,89,97,113,104,102,106,102,102,112,92,100,100,104,109,92,70,100,109,97,117,110,116,113,105,108,99,97,99,115,119,92,103,104,107,99,73,97,110,106,117,103,96,117,104,101,127,113,107,100,94,99,107,103,105,92,99,106,100,97,108,102,98,94,116,112,111,97,109,99,96,95,97,105,108,99,99,110,114,108,80,121,92,109,105,113,110,107,102,108,99,112,87,110,104,96,99,104,97,108,103,96,104,98,104,108,95,96,108,105,121,117,91,117,106,109,118,101,107,103,104,86,107,95,104,98,113,102,95,104,98,99,101,90,109,112,113,99,108,92,101,105,100,98,100,105,112,117,101,100,112,98,98,90,101,102,97,101,96,105,101,113,109,107,100,99,111,109,106,103,71,107,109,100,103,98,100,101,102,98,96,109,117,95,106,103,77,102,117,100,116,103,106,99,102,111,100,108,104,108,105,116,96,107,95,112,107,103,113,106,101,106,101,108,89,101,106,104,109,114,91,98,115,99,91,101,106,114,107,100,102,99,109,97,113,107,99,101,98,98,94,107,103,109,98,114,106,96,94,102,108,91,95,101,99,101,102,113,109,93,100,107,103,105,86,108,102,114,112,96,105,109,107,99,106,105,109,96,109,112,113,108,112,111,106,96,103,98,95,98,102,113,102,98,112,100,121,112,117,97,96,100,95,112,109,98,107,99,109,102,107,101,104,106,121,106,106,131,96,99,103,99,109,97,100,101,96,100,103,113,117,103,98,114,99,116,106,104,101,106,99,98,97,107,108,116,99,108,104,104,106,107,109,95,124,114,102,99,105,93,110,110,100,108,102,90,97,110,97,102,104,90,105,95,107,98,102,108,105,103,91,114,101,106,109,91,101,83,100,95,110,104,106,99,100,103,115,104,104,102,106,105,102,105,96,111,100,95,116,95,106,102,105,105,116,98,97,106,102,102,92,90,104,95,94,95,122,104,101,98,105,101,100,97,118,102,99,90,93,116,100,106,109,110,92,108,105,100,101,83,103,111,112,98,109,101,103,99,110,110,93,95,99,105,95,102,98,109,113,103,94,100,108,102,116,102,109,133,97,100,99,127,95,105,105,110,107,98,98,92,91,118,95,102,96,106,100,106,112,79,107,115,105,100,94,96,112,110,101,79,97,100,105,96,101,121,102,109,93,99,109,102,97,105,106,103,119,103,109,94,113,97,109,101,93,109,93,101,109,103,112,102,97,103,99,105,109,114,103,100,101,112,93,95,108,109,100,110,106,98,98,111,116,99,90,100,102,76,91,97,101,84,104,85,105,112,114,102,104,100,107,101,90,108,99,103,105,112,105,103,102, +654.64032,115,118,98,83,106,105,93,98,104,75,108,130,92,96,90,92,92,113,145,113,111,95,100,104,109,106,99,104,97,97,126,100,96,109,109,108,97,90,99,102,92,109,107,98,100,96,100,101,95,121,100,114,99,99,94,88,83,91,100,98,104,104,97,90,91,102,104,107,92,94,85,107,110,96,104,110,88,99,106,103,95,92,109,111,105,92,98,107,105,112,104,117,79,107,97,104,111,113,96,101,111,98,117,103,105,99,103,99,94,96,101,104,106,107,106,94,101,112,94,99,99,98,104,100,101,103,117,89,119,95,102,105,113,99,93,99,105,125,105,110,99,118,91,110,109,104,110,103,114,100,98,110,109,106,102,113,105,104,104,113,96,100,106,120,91,105,100,101,95,105,107,114,105,105,93,108,96,87,102,104,108,109,98,92,109,118,100,79,102,91,100,108,103,109,99,100,100,100,90,112,96,105,119,104,106,101,95,90,116,108,102,94,109,100,93,99,111,101,99,93,81,97,109,92,106,106,101,102,107,118,110,110,109,103,104,103,101,99,104,96,111,105,96,101,102,101,103,104,99,106,105,105,99,100,105,110,100,92,99,105,93,101,115,100,114,98,116,99,105,103,93,103,106,96,104,99,102,102,109,91,109,107,104,107,112,97,94,107,113,74,86,109,105,105,123,109,103,98,97,107,104,97,84,104,94,104,106,102,95,113,90,110,120,110,110,114,115,113,103,84,106,93,103,97,109,108,98,100,110,108,110,98,108,105,115,109,98,98,98,107,106,108,103,109,114,105,106,101,103,108,109,113,108,78,110,111,100,106,97,105,109,115,100,96,103,96,98,122,102,104,105,103,117,102,90,101,99,114,93,96,112,102,83,89,105,104,97,112,100,89,104,92,92,74,91,99,101,96,90,96,101,102,87,91,95,89,101,95,90,97,83,91,112,97,109,96,97,92,96,91,96,108,102,108,105,89,111,99,104,106,93,92,109,103,103,112,78,100,95,96,113,100,104,101,99,102,92,93,99,102,85,101,104,111,97,105,102,102,100,115,108,96,112,116,97,102,101,92,102,92,99,102,83,110,100,112,94,107,97,99,95,102,103,95,109,110,101,103,112,107,110,107,99,92,114,103,92,96,105,92,114,99,103,114,100,98,105,118,92,120,102,105,98,103,98,98,103,100,101,117,98,112,95,109,104,103,106,99,108,100,101,109,97,104,102,103,108,111,96,92,95,111,95,100,97,87,103,96,105,114,100,103,107,94,99,102,105,105,100,113,101,98,106,93,99,105,97,109,98,100,104,94,95,99,112,109,88,99,98,95,97,97,82,99,102,93,103,113,106,108,108,105,89,107,107,112,94,109,107,106,95,106,100,103,101,97,103,101,101,94,108,106,99,105,95,97,91,98,110,108,97,107,95,100,105,108,104,106,96,107,100,104,96,112,98,104,100,109,108,92,107,100,90,91,103,104,97,85,102,100,104,116,79,103,111,102,103,114,101,100,108,105,105,104,96,95,111,92,105,108,92,97,109,120,102,115,102,101,117,107,101,93,109,97,99,99,102,98,121,102,101,102,110,106,112,94,102,99,104,93,98,95,91,107,106,105,104,107,109,100,105,116,108,106,104,96,93,95,89,102,96,100,107,106,110,102,109,104,97,107,100,98,97,105,105,104,91,96,94,106,108,112,108,101,107,113,96,92,87,100,104,107,95,81,106,92,108,106,102,102,105,94,98,98,103,109,91,121,96,99,104,100,110,113,96,106,98,93,109,103,78,107,107,105,104,103,108,98,95,104,104,105,100,99,84,108,103,102,104,107,101,111,102,104,99,98,96,100,113,128,102,101,107,106,119,107,102,105,102,100,98,106,112,106,109,112,116,106,85,96,103,95,97,95,100,111,108,99,114,104,104,108,108,112,101,111,101,93,101,102,112,101,98,103,97,109,107,120,115,104,101,94,96,104,100,102,100,71,95,100,101,102,110,103,107,104,109,105,100,100,116,103,110,112,93,101,100,96,96,101,95,103,114,107,96,97,96,106,100,101,112,97,95,118,106,99,104,98,89,89,103,105,112,109,105,75,99,108,118,96,114,102,91,117,104,105,105,110,98,96,98,100,99,101,100,102,96,90,105,105,101,97,95,97,98,91,103,108,101,106,100,96,112,107,94,101,108,99,97,106,113,128,95,102,82,90,98,105,91,99,114,98,94,105,101,102,108,102,100,100,105,74,102,104,108,98,99,105,102,97,105,99,97,99,107,99,100,101,92,92,105,95,98,94,105,102,100,96,101,102,97,97,107,116,97,108,113,108,90,105,99,108,98,95,94,97,108,95,100,85,100,99,105,102,111,104,122,108,99,109,104,106,106,102,87,105,110,105,78,105,120,85,95,88,109,109,76,88,108,98,103,98,117,105,103,108,112,105,95,92,100,108,105,104,102,103,95,103,99,106,99,101,113,106,106,98,98,93,90,111,94,106,104,109,102,102,105,99,120,109,105,113,114,102,96,117,103,99,112,117,107,114,102,99,92,104,103,114,106,114,100,107,102,102,102,97,104,113,112,99,108,107,108,93,90,117,117,117,109,110,102,113,97,107,111,112,108,108,103,102,113,104,92,106,105,98,112,95,120,107,115,97,98,90,108,118,110,98,113,103,91,113,115,100,103,113,103,99,117,105,95,125,105,115,95,116,104,91,109,104,115,107,105,126,102,115,102,96,96,108,125,107,106,103,103,100,114,98,100,86,106,110,97,105,88,103,110,105,109,98,112,113,107,120,87,98,106,99,111,119,106,95,106,105,111,107,100,106,109,104,135,99,96,92,96,116,111,122,104,110,112,115,102,106,101,104,111,105,103,110,109,106,105,106,104,101,111,103,114,110,117,115,109,126,106,112,102,115,120,119,102,105,104,127,112,112,106,107,103,106,104,107,107,101,109,100,107,116,104,99,102,104,102,106,106,109,109,100,94,95,106,111,113,99,106,89,106,112,104,114,105,95,100,100,111,102,113,101,104,96,104,91,97,95,108,94,104,108,99,99,104,110,103,95,89,98,114,109,108,103,110,113,98,106,92,101,98,96,100,105,121,122,104,96,116,110,107,116,104,109,98,106,100,116,111,118,109,104,107,103,115,110,109,106,97,105,108,116,101,99,101,93,105,110,121,108,108,89,114,98,101,98,100,97,103,104,101,100,99,116,98,106,99,101,104,105,96,99,119,109,105,102,109,111,97,103,109,109,104,106,112,102,107,111,102,103,98,104,95,90,95,99,121,100,103,100,106,107,112,101,100,100,106,102,110,103,97,99,108,115,101,113,104,101,112,111,105,96,99,99,81,92,106,108,104,114,112,111,107,109,103,109,91,102,100,125,104,100,87,109,112,104,107,107,112,96,108,109,82,95,111,96,95,107,109,81,80,94,110,99,109,107,96,104,106,110,106,106,93,101,104,103,113,101,105,115,110,102,112,102,107,95,109,99,104,109,104,123,103,114,106,109,82,116,99,108,108,105,107,101,96,95,111,120,111,106,113,104,119,99,109,101,103,102,104,103,97,92,99,113,108,97,95,103,113,96,104,103,116,104,104,99,100,97,108,111,107,97,96,99,115,99,106,113,90,87,109,101,104,112,103,99,111,93,104,98,109,97,102,113,99,112,114,109,105,93,112,111,99,103,112,110,97,115,102,99,131,112,117,106,96,104,111,91,104,101,103,109,104,109,94,110,113,100,107,108,110,101,107,101,101,103,100,111,106,108,101,111,102,89,112,107,105,103,119,108,101,88,105,108,108,124,108,115,95,99,102,115,107,106,113,84,112,104,117,100,106,94,95,107,92,113,107,102,101,108,95,111,112,99,87,123,106,108,107,99,100,91,106,107,102,101,94,108,108,105,108,97,95,105,90,108,105,71,99,111,99,107,103,106,98,99,107,107,110,121,90,79,105,102,100,127,109,126,101,113,115,115,94,94,108,99,95,108,104,106,120,105,100,109,106,100,101,104,102,109,110,106,109,101,117,90,90,105,105,105,101,116,92,122,98,106,108,108,111,104,98,108,103,106,107,96,108,99,109,96,99,108,99,106,94,110,108,111,106,110,104,104,104,106,108,103,109,113,109,123,101,108,99,102,100,93,109,112,108,116,98,101,96,99,91,74,97,101,110,105,88,79,112,102,103,103,101,120,117,95,106,123,99,99,111,107,98,98,100,98,102,106,103,104,105,105,117,113,113,104,101,107,111,104,115,94,109,107,112,103,98,118,110,94,97,115,119,97,119,109,108,71,100,106,100,105,104,102,106,126,105,118,104,123,113,113,100,104,110,115,100,105,114,118,104,102,97,98,101,94,109,93,104,109,112,123,119,109,100,111,109,96,113,105,101,94,116,103,110,113,103,102,109,94,95,91,91,116,96,110,108,106,111,106,109,109,103,96,101,91,109,103,97,103,95,99,95,111,101,88,100,104,115,98,88,102,100,108,102,98,102,112,116,96,99,106,103,109,106,104,108,96,103,92,102,103,100,102,95,112,103,103,106,93,99,98,89,104,95,98,101,108,109,106,105,113,109,96,105,104,102,99,97,116,104,107,106,109,115,98,102,101,96,111,99,102,97,102,105,118,106,101,108,104,116,103,90,106,115,102,108,106,105,88,99,94,107,102,109,101,105,89,112,95,106,110,99,103,96,95,103,109,97,104,119,112,106,110,105,111,95,94,89,98,105,100,99,101,106,107,117,84,101,104,115,91,94,108,113,95,98,106,104,98,103,110,115,96,103,95,76,109,91,107,116,113,108,101,102,105,95,111,89,101,116,108,104,95,104,108,107,105,110,103,84,103,100,104,100,106,91,110,107,118,101,109,108,108,96,113,101,109,100,99,99,79,110,116,101,119,103,91,98,107, +654.78149,98,110,101,86,95,103,113,101,99,102,103,104,97,106,105,105,105,105,104,106,123,90,104,98,95,98,124,102,104,103,100,104,101,100,121,96,95,98,106,94,90,98,95,100,105,74,100,108,113,107,99,97,91,108,103,92,101,94,110,91,107,113,102,109,100,105,105,99,133,101,117,103,99,113,141,119,82,100,98,99,104,107,105,107,104,110,109,141,92,86,104,96,105,95,80,105,103,104,109,74,101,108,102,104,113,104,101,114,104,99,102,101,92,103,99,96,98,89,103,115,96,105,100,108,96,105,108,104,105,108,87,109,94,121,109,101,102,98,93,97,108,109,102,100,104,91,108,114,96,105,103,104,98,98,108,111,95,92,102,109,115,102,97,105,92,97,109,101,115,97,105,104,104,104,111,95,104,85,90,100,107,102,101,104,94,91,99,95,107,98,110,96,106,101,111,100,106,108,102,101,96,102,96,106,96,109,91,91,117,99,123,97,106,99,101,100,97,94,94,98,98,106,96,101,92,112,107,106,93,114,104,96,113,105,112,106,107,98,87,105,100,105,114,113,91,109,119,106,103,94,110,103,101,100,103,111,90,122,97,102,106,98,103,100,96,104,108,113,108,93,100,112,95,99,108,111,101,111,110,97,103,109,91,108,96,86,97,109,108,102,103,100,116,110,96,98,109,104,92,99,106,93,105,108,91,108,105,109,105,101,104,101,102,94,96,106,109,102,98,104,99,95,72,106,100,93,95,98,106,101,103,101,100,104,106,111,95,99,98,109,91,99,96,101,98,85,95,96,102,100,104,120,94,104,98,95,107,92,109,80,98,93,99,100,98,100,95,107,96,83,117,103,100,95,113,108,109,98,97,111,105,110,97,106,103,83,106,72,105,108,119,105,84,101,117,100,99,106,109,104,100,96,98,99,106,99,105,103,110,98,102,127,99,120,92,98,108,97,101,98,99,104,97,106,108,68,108,99,98,114,112,86,105,94,112,94,98,103,107,102,106,95,99,90,104,100,105,99,107,110,107,96,106,109,98,104,96,103,114,97,104,105,103,97,101,108,104,95,95,103,92,104,88,84,112,94,83,112,102,91,108,96,109,99,92,113,101,103,94,106,100,111,107,99,112,116,107,94,108,106,105,108,115,115,107,102,109,98,106,96,114,108,100,107,105,86,94,118,100,103,100,113,92,84,105,99,104,102,104,103,111,97,97,98,104,98,95,113,100,98,103,107,110,105,114,97,108,98,102,102,97,97,115,100,111,110,87,87,95,96,106,110,102,118,92,100,103,105,105,101,101,98,112,91,106,91,105,109,99,87,94,102,101,93,90,98,103,102,112,98,96,100,106,98,110,99,116,92,104,100,102,112,107,97,103,99,100,97,97,106,100,123,112,97,119,103,108,95,110,101,96,106,110,103,107,97,102,97,103,120,110,97,100,104,106,101,105,98,99,100,107,116,98,95,109,97,97,98,110,105,101,94,103,106,104,97,96,118,95,107,125,105,109,99,101,98,108,92,108,92,103,120,107,100,95,105,94,101,110,99,107,102,107,91,101,99,99,101,105,107,106,106,98,129,105,98,102,109,111,93,108,118,85,95,106,105,108,103,102,98,111,103,86,105,105,103,108,112,109,106,108,96,110,109,99,108,102,105,99,103,104,116,97,106,80,105,98,116,107,100,107,94,100,92,109,108,108,101,110,103,107,108,114,97,105,120,97,101,111,101,101,108,88,105,99,109,104,94,97,98,102,90,107,104,102,110,98,104,98,104,104,126,98,102,101,110,108,100,108,109,110,120,102,105,110,100,104,106,104,122,106,103,106,102,101,105,109,105,97,111,102,100,105,98,99,122,105,95,88,109,98,92,98,98,112,109,113,130,106,101,99,99,107,83,101,105,105,113,107,99,97,94,95,119,112,99,96,105,91,127,95,94,107,119,91,100,102,101,109,97,103,102,95,97,99,98,100,102,106,109,97,97,99,100,91,94,105,94,109,83,108,98,104,113,92,103,95,88,104,104,99,113,118,107,105,94,98,106,105,88,102,111,99,97,105,100,99,116,88,120,106,102,102,102,94,108,110,105,108,108,103,112,105,106,88,101,103,105,97,99,87,108,100,95,96,103,97,104,100,113,99,90,110,103,113,84,102,97,105,99,111,99,104,106,94,110,108,100,104,98,108,105,87,100,114,94,110,82,95,108,98,122,95,106,94,99,99,103,94,106,91,111,86,105,105,83,97,100,92,93,100,89,109,104,99,107,106,103,91,95,95,101,107,97,100,87,90,97,109,88,100,91,111,101,94,104,110,105,104,100,99,109,99,101,109,98,108,99,101,84,100,101,92,96,105,99,103,100,95,87,76,104,86,99,98,94,96,90,102,106,112,107,113,103,92,106,111,94,99,107,106,104,84,105,105,108,105,90,95,105,94,106,97,104,114,109,97,110,113,95,98,104,89,101,106,103,117,108,108,102,96,106,115,99,110,110,102,107,108,111,103,98,106,97,103,108,103,113,105,96,95,111,101,108,110,95,109,101,97,109,104,106,101,111,124,108,72,110,97,113,105,115,109,67,112,107,99,121,112,99,104,97,101,107,100,98,113,99,92,99,105,106,103,111,111,113,106,107,96,100,120,100,106,101,102,125,105,106,106,100,99,103,105,109,88,105,121,100,92,109,108,104,98,95,124,116,101,115,109,107,97,96,102,101,100,103,106,108,98,95,117,107,107,103,114,109,109,93,92,112,99,104,106,102,103,111,107,104,107,105,110,110,104,106,115,120,109,106,107,98,104,101,101,100,106,108,102,110,103,111,115,106,108,91,95,102,104,121,97,109,96,109,113,97,87,98,101,90,96,101,98,115,103,102,106,112,106,98,101,103,102,103,99,107,97,99,113,104,109,98,110,100,110,89,107,102,101,108,117,102,103,107,93,100,95,112,102,104,131,107,104,119,115,102,101,100,99,103,100,109,94,110,83,105,100,111,100,105,99,92,102,110,105,99,109,99,122,92,111,100,105,101,106,109,108,107,121,105,103,109,110,111,100,113,105,122,128,104,101,94,100,99,103,89,93,92,107,105,109,91,97,114,110,95,106,104,105,112,105,111,100,98,94,102,118,99,106,112,106,113,105,109,87,106,108,110,103,109,108,106,93,100,104,103,110,115,91,101,103,110,101,112,108,106,113,101,109,105,121,110,94,109,98,97,104,101,105,105,108,105,112,102,99,87,104,106,106,100,126,105,110,105,119,104,108,107,96,106,99,97,98,101,121,100,113,104,94,97,98,103,101,90,110,113,104,113,98,107,94,94,102,104,137,102,107,108,95,104,105,102,93,94,107,97,78,90,106,106,104,103,111,107,100,100,84,95,97,107,106,110,99,113,105,105,103,100,105,98,109,109,96,97,107,113,103,114,103,86,98,109,110,103,93,105,109,110,107,100,105,101,115,94,106,113,97,103,104,98,110,104,101,100,104,109,103,114,94,105,134,96,101,106,81,105,95,100,100,109,105,97,99,119,93,106,97,108,110,111,94,117,97,102,114,104,122,101,106,96,103,109,101,109,103,107,99,113,105,110,106,105,103,109,109,112,101,119,111,101,95,127,91,107,108,112,106,105,124,108,108,121,109,96,99,91,89,103,113,111,104,105,113,107,113,103,97,102,95,103,106,102,106,116,106,112,112,111,111,114,110,105,106,125,109,126,105,106,103,100,103,95,104,116,108,98,98,105,104,98,104,116,107,105,108,107,104,113,102,108,102,104,97,87,98,101,105,103,108,97,110,107,92,123,94,116,101,105,95,98,91,104,105,110,102,103,101,102,100,100,103,106,91,116,116,106,87,105,107,99,104,96,107,103,101,102,114,101,99,89,97,91,92,103,109,103,110,94,106,96,80,98,106,109,110,107,117,104,97,96,111,104,95,102,99,102,110,114,99,98,112,98,102,106,98,119,104,98,98,101,90,102,98,113,102,93,101,98,104,112,104,98,105,118,100,72,108,93,105,105,98,97,104,113,95,103,113,102,114,104,104,107,109,96,106,115,116,116,94,101,108,93,105,105,117,107,95,106,92,99,106,109,114,99,107,100,99,119,108,112,107,107,112,107,101,101,106,110,102,113,113,112,105,94,106,97,105,103,105,103,101,107,106,87,94,106,106,96,107,97,106,94,103,107,110,104,115,121,94,107,113,105,110,102,96,96,107,113,100,100,102,99,106,91,100,95,101,95,95,101,106,112,98,106,103,100,94,109,106,104,109,82,94,101,114,100,102,97,106,92,96,105,89,95,107,96,102,99,104,94,106,99,107,99,113,105,104,108,106,105,104,115,108,103,94,108,101,102,104,113,112,109,89,110,106,101,112,113,98,107,108,105,99,115,111,109,99,98,97,100,110,101,89,99,106,111,102,117,102,88,90,100,125,101,106,109,95,105,97,111,92,115,93,111,111,95,99,91,91,92,103,100,94,109,98,109,105,91,102,87,108,99,103,100,103,89,108,106,103,101,105,102,98,100,102,102,100,106,108,101,101,93,105,105,102,107,100,104,105,92,112,104,90,109,108,87,114,107,100,105,112,106,105,99,85,108,107,117,119,97,102,98,109,100,106,98,110,118,96,108,115,108,76,107,97,94,108,107,102,109,102,109,96,98,99,106,109,100,108,109,105,101,103,111,106,112,105,109,104,90,104,105,116,95,100,101,103,99,101,93,120,109,98,102,111,123,102,108,124,97,105,108,100,89,117,117,83,94,112,98,97,110,128,112,107,95,104,103,105,99,113,111,114,112,108,102,100,96,94,108,106,95,101,81,100,113,103,95,111,106,109,111,105,92,92,104,98,103,104,107,111,82,105,111,109,116,103,106,93,102,109,100,114,100,93,127,106,97,105,98,96,99, +654.92273,92,98,105,93,101,99,111,99,98,111,94,114,114,99,121,110,99,116,98,108,105,79,111,122,107,114,108,91,104,100,106,93,110,96,116,103,100,117,103,94,93,112,112,106,110,106,101,112,105,100,106,97,109,111,91,97,101,95,99,105,106,106,100,97,107,99,102,104,102,99,96,109,97,98,110,111,89,99,94,104,108,102,112,97,104,117,113,105,88,101,103,100,92,101,97,102,109,100,79,111,104,106,108,107,100,95,104,103,110,98,100,106,100,97,111,109,105,106,110,109,87,111,101,113,105,109,109,117,100,103,97,109,101,100,120,111,100,108,91,97,88,117,100,98,101,94,90,99,90,102,101,102,105,98,82,101,101,95,109,103,98,99,117,106,112,95,102,91,109,99,96,110,105,100,105,122,105,100,82,108,98,108,95,111,109,95,106,85,99,104,95,111,100,105,103,105,105,103,114,106,99,101,100,99,106,107,101,105,119,106,98,107,112,106,104,103,108,109,95,104,96,103,104,106,94,106,103,110,100,102,98,99,108,100,93,103,112,104,82,94,104,96,91,124,93,105,111,87,108,99,100,97,103,101,96,99,106,99,108,104,97,105,92,95,91,98,93,108,109,101,101,95,105,106,107,88,101,107,101,100,108,100,94,108,93,89,93,109,97,106,107,112,111,109,108,97,99,98,116,92,93,116,114,113,107,119,101,107,101,108,106,103,111,106,114,99,96,100,100,101,101,97,108,112,101,114,107,111,110,102,103,101,107,101,109,103,111,107,90,108,97,102,91,104,90,115,97,109,105,101,112,100,105,106,106,92,122,102,101,117,97,105,98,99,95,109,99,113,78,110,104,96,117,93,101,109,116,110,100,110,94,102,97,109,109,106,100,101,102,92,102,98,102,109,96,76,95,99,103,107,103,102,115,112,103,87,104,101,114,101,103,105,105,115,101,95,97,106,106,96,94,105,99,119,97,101,101,104,103,114,100,99,100,107,112,99,106,106,92,101,116,102,102,100,103,94,102,103,104,118,99,105,103,117,104,111,106,113,105,93,97,110,91,94,111,102,104,102,99,90,107,106,111,102,105,103,103,112,104,101,81,114,107,101,100,86,103,105,111,100,113,104,117,94,99,103,98,109,100,99,113,107,97,101,119,102,104,118,95,105,101,105,106,100,95,110,103,109,104,97,94,102,108,109,121,101,114,113,103,102,108,96,104,111,102,104,102,93,113,101,96,104,112,99,113,100,103,109,105,98,118,109,104,102,108,106,99,111,98,112,112,99,125,96,99,104,116,109,105,126,94,110,99,96,109,88,114,105,89,116,97,104,109,93,110,101,97,108,118,91,119,107,84,97,103,106,111,101,103,106,99,110,122,104,95,99,103,100,100,110,110,99,103,103,104,124,92,105,106,98,117,96,96,110,103,98,99,101,114,96,99,98,105,105,102,102,103,101,94,101,104,103,110,109,96,106,100,105,102,110,94,102,103,103,107,103,111,106,99,106,110,92,100,94,94,104,96,107,105,103,98,95,108,103,101,113,106,99,96,104,104,113,115,96,101,104,99,103,91,109,92,114,98,103,102,106,114,120,90,96,95,103,99,92,109,116,103,104,101,115,96,114,103,110,98,99,97,96,107,98,105,101,96,99,82,94,108,106,96,108,99,114,103,101,105,78,108,87,115,94,106,91,105,104,104,104,97,106,103,110,113,100,100,107,99,111,94,110,101,103,92,110,94,103,104,108,103,104,94,88,109,105,99,116,97,110,94,105,109,92,110,111,108,109,114,107,97,105,104,109,109,87,105,112,121,101,103,109,105,87,108,105,102,95,112,115,117,106,107,95,110,100,104,98,112,99,109,103,102,102,98,105,111,98,109,110,114,101,96,106,105,117,99,108,100,111,90,105,107,102,97,101,98,98,92,105,101,80,108,110,99,105,103,97,111,112,101,109,100,106,103,102,98,117,106,98,109,107,119,110,111,113,89,111,92,101,103,105,94,91,110,103,118,102,96,99,98,118,106,91,88,112,106,115,104,93,101,110,106,100,113,99,112,107,97,100,109,90,105,103,103,120,102,108,100,87,99,106,106,108,121,106,106,109,93,103,103,113,99,102,113,95,104,107,95,121,110,102,108,112,103,100,67,100,109,104,104,118,104,109,106,101,107,109,102,96,117,111,108,102,112,103,104,106,114,98,102,117,117,104,107,102,107,80,104,105,90,109,105,91,104,93,66,110,94,87,105,105,106,100,73,127,96,96,109,96,95,95,114,78,99,93,101,111,96,91,105,114,100,99,97,104,101,98,96,102,88,94,86,112,116,94,109,105,114,104,105,109,102,104,117,97,113,112,105,103,109,97,105,107,106,98,94,109,107,104,110,105,102,117,97,112,108,106,104,104,110,110,106,105,103,94,112,124,97,105,102,100,108,98,109,109,116,103,106,113,104,104,112,99,100,99,93,106,99,101,105,88,120,100,98,106,87,100,106,102,101,103,100,101,116,90,98,102,94,112,101,104,103,109,111,123,106,93,105,94,80,107,98,111,95,102,75,105,95,108,105,101,106,100,103,108,103,95,100,90,106,101,77,92,117,105,104,109,105,103,95,115,119,114,117,98,110,96,94,102,95,103,111,90,110,95,89,100,99,103,99,91,120,92,103,100,105,106,107,105,109,103,109,97,91,98,101,105,96,108,117,111,98,98,98,109,88,105,94,110,107,94,102,107,117,97,105,93,116,102,107,107,99,101,95,115,99,116,117,100,99,109,94,90,96,104,109,107,111,109,95,108,108,105,98,96,114,97,100,101,99,117,104,98,106,112,117,102,108,111,121,112,99,104,95,90,105,106,100,95,106,89,111,110,97,99,104,106,117,116,93,107,107,100,106,110,108,104,117,99,97,105,99,114,94,100,113,109,99,111,111,109,85,102,94,112,102,112,113,98,109,104,102,108,83,110,98,106,106,106,109,102,98,100,106,109,96,96,106,110,110,92,103,99,107,103,86,99,113,99,108,109,91,106,94,96,103,108,107,99,99,88,108,107,109,111,139,97,107,101,116,112,106,108,99,113,99,102,90,96,105,106,95,96,101,100,109,109,107,106,108,103,102,128,106,94,93,118,104,97,104,103,113,100,98,90,103,95,96,97,103,102,85,112,100,104,107,102,99,110,92,102,107,106,114,106,109,114,105,110,99,106,104,108,101,105,107,112,98,97,97,92,97,104,101,114,97,94,101,97,101,98,107,96,100,101,108,102,102,104,102,102,104,91,107,107,103,99,103,103,107,105,103,104,102,86,99,111,88,104,112,92,106,101,85,117,102,111,125,112,95,101,108,99,98,105,110,98,103,96,104,105,101,101,105,102,108,111,102,101,102,114,102,96,106,106,96,100,106,106,90,101,93,111,100,116,108,104,86,102,96,83,95,88,93,96,102,99,102,103,102,119,92,92,91,100,89,105,105,101,111,105,108,110,97,89,104,101,95,104,99,111,107,92,106,92,104,106,112,95,102,94,97,97,102,107,94,107,97,99,101,95,106,103,108,104,109,109,107,109,97,97,116,83,106,95,104,108,98,101,72,97,103,107,106,97,94,120,103,109,112,103,102,104,98,103,110,108,101,92,109,89,98,95,104,108,102,115,98,91,116,87,117,127,100,98,111,112,96,96,83,109,99,104,107,119,95,109,83,116,99,88,98,98,109,99,97,120,94,100,115,106,94,97,102,110,136,95,97,98,106,100,104,92,114,101,103,102,110,99,100,100,102,91,96,101,100,97,102,114,99,101,116,106,102,104,100,124,104,104,106,106,97,109,109,104,103,98,109,109,110,94,96,94,110,110,105,103,97,102,93,94,96,103,100,98,102,99,94,93,106,110,109,109,106,104,87,103,99,101,79,100,107,108,97,99,101,118,99,100,105,101,115,109,113,108,104,108,106,97,108,105,108,110,101,103,101,108,100,98,94,98,102,98,92,100,107,95,102,99,108,104,90,108,106,94,100,95,102,77,96,109,109,103,112,94,96,101,105,111,99,99,109,100,98,106,99,103,105,109,102,103,105,103,101,98,110,97,104,105,91,86,103,88,105,84,91,108,91,111,101,105,110,107,109,101,109,101,103,113,107,102,111,99,117,103,107,112,117,104,101,108,110,104,111,108,91,103,110,96,115,98,104,99,112,93,99,108,101,108,98,110,107,101,113,109,98,75,91,102,106,109,98,103,111,96,110,108,105,113,104,97,121,105,102,109,105,108,99,107,121,99,103,105,96,114,105,95,102,119,102,106,97,113,94,100,110,103,98,104,93,88,99,103,105,93,103,102,110,97,103,112,103,104,107,102,103,98,108,102,113,106,110,109,111,98,94,117,102,104,108,108,104,101,96,121,99,101,92,90,96,115,104,99,103,99,99,99,98,113,110,102,115,102,100,113,109,90,96,110,98,103,99,100,99,103,103,106,108,125,98,102,112,110,101,107,101,103,105,113,106,103,107,98,103,95,108,104,106,88,102,101,93,109,95,109,105,94,96,108,108,107,99,85,99,109,114,87,108,95,100,94,112,99,116,109,104,97,101,103,107,100,85,104,94,97,103,100,110,98,102,104,102,97,89,106,100,102,108,111,103,104,87,98,111,101,98,91,109,99,111,95,104,107,93,91,101,110,98,89,107,103,118,100,105,103,107,94,114,108,95,106,114,94,113,103,99,110,109,97,111,101,110,89,108,97,118,111,113,109,101,113,97,102,109,103,106,91,112,112,110,106,94,105,100,110,98,105,112,107,104,101,108,97,104,97,106,111,111,97,103,117,104,115,104,99,96,112,85,95,105,100,100,104,108,92,98,94,91,111,88,100,112,84,107,105,113,91,102,101,112,100,98,100,120,91,99,95,107,102,99,106,97,94, +655.0639,118,107,97,98,102,103,113,101,95,106,99,105,118,101,107,108,101,117,105,109,98,102,111,106,104,105,108,100,107,117,71,117,113,95,109,119,114,109,102,101,97,103,101,103,106,92,112,99,95,93,109,116,90,102,99,97,107,105,107,86,114,95,99,96,107,107,98,112,97,98,103,89,110,101,101,92,93,90,114,117,103,98,104,105,102,108,106,109,103,100,124,120,100,121,91,100,111,98,102,99,106,105,113,92,102,83,98,89,100,93,110,102,102,100,93,115,105,89,102,87,106,107,104,114,112,101,104,84,102,111,100,102,96,105,99,86,113,108,105,103,108,102,92,103,110,99,108,103,92,94,111,103,105,99,74,102,98,100,111,109,114,110,103,95,104,109,102,112,103,97,96,113,106,113,96,99,119,92,110,100,119,98,107,103,99,103,92,100,101,99,109,97,97,103,102,113,105,104,102,108,97,111,103,92,92,107,115,102,115,109,96,95,97,108,119,87,102,104,102,94,98,109,98,103,107,100,99,110,105,116,97,103,102,102,98,107,103,103,125,99,98,112,103,101,105,106,98,98,94,102,90,106,111,106,101,103,121,101,96,106,97,105,113,110,109,109,104,110,102,109,104,99,104,102,108,99,96,96,117,89,91,109,114,97,87,108,118,118,72,121,95,92,107,102,118,99,100,115,110,106,105,102,106,100,104,102,100,112,89,121,97,110,115,111,86,87,108,102,103,106,99,94,103,113,103,107,120,98,111,100,106,104,111,107,106,105,69,103,91,98,101,101,108,94,101,95,95,97,102,111,107,114,100,96,104,90,100,101,106,104,104,104,101,96,112,104,108,112,95,102,124,98,109,105,102,104,106,108,103,99,111,107,90,108,106,117,98,105,112,99,98,99,102,100,102,94,117,94,98,107,113,111,107,100,100,96,110,113,96,109,102,97,90,109,110,103,102,104,105,100,105,103,104,103,106,100,106,102,114,95,104,113,105,99,113,104,115,104,99,113,106,92,91,108,115,98,98,101,107,108,111,99,103,111,99,97,111,101,113,92,110,104,105,103,108,107,101,97,109,100,102,102,99,98,108,97,94,99,98,98,101,101,106,105,102,108,114,103,100,102,90,113,94,99,101,103,112,107,110,117,99,103,118,110,100,118,114,97,98,116,102,104,102,95,101,105,104,112,102,95,103,102,110,113,111,94,100,114,110,124,104,108,107,111,99,122,113,104,98,98,131,113,111,98,110,97,107,101,111,96,100,99,118,103,91,97,122,105,104,107,109,105,119,117,108,120,105,106,105,115,100,103,92,113,105,110,99,91,107,112,103,106,92,109,87,101,107,106,105,108,113,125,103,95,102,107,109,102,111,102,99,96,109,103,100,113,100,110,99,118,95,105,104,103,108,98,111,106,107,96,106,96,98,99,101,104,101,95,107,109,100,105,102,109,99,105,105,110,102,83,114,106,101,97,103,99,105,96,100,125,101,104,113,116,91,99,99,107,98,95,96,101,115,108,99,102,104,100,103,131,103,105,105,104,120,112,99,107,111,99,110,109,119,98,100,110,87,95,96,123,94,109,101,99,98,103,98,93,107,96,108,95,98,111,110,102,111,119,101,96,105,114,96,112,108,97,99,88,109,107,109,93,104,112,105,108,94,98,109,101,122,117,103,114,97,95,94,98,113,95,105,98,108,107,106,107,104,105,105,103,110,105,97,106,110,87,95,100,105,123,111,101,101,105,96,102,99,96,91,102,106,99,129,112,104,108,106,105,112,110,108,118,112,112,106,121,104,104,99,110,110,101,96,115,112,111,97,103,106,113,98,115,105,107,100,102,105,105,90,108,106,108,112,113,113,104,113,94,105,105,111,112,108,119,96,103,113,98,113,96,110,112,109,95,117,102,90,99,104,104,103,106,111,95,96,99,95,103,107,103,99,123,87,91,101,107,94,94,110,98,104,102,104,111,112,101,102,125,107,98,100,103,101,122,98,103,109,102,101,97,106,104,117,98,111,108,99,118,114,109,108,102,102,110,109,98,97,116,107,112,104,105,107,99,97,96,106,101,105,94,105,109,106,115,104,112,100,79,87,116,111,116,94,98,97,98,112,108,104,98,100,108,113,105,94,108,106,103,105,101,106,100,104,87,102,108,109,109,101,97,110,98,100,110,120,92,107,105,112,115,124,108,98,104,112,101,103,112,108,97,98,104,112,100,120,108,109,108,97,104,101,91,91,115,124,90,98,92,102,84,92,102,99,120,112,95,106,120,104,111,101,106,99,95,117,102,109,115,97,92,106,74,108,106,107,106,116,104,95,105,108,108,91,104,120,90,97,91,102,99,84,103,120,105,107,104,100,109,91,105,106,97,103,104,110,101,101,101,92,113,81,109,109,98,93,103,87,110,102,104,106,117,109,101,129,102,97,111,103,108,98,103,100,99,101,109,106,106,85,110,105,103,98,104,106,109,94,94,102,96,103,100,100,98,111,107,105,110,100,103,91,115,105,95,103,102,86,105,106,108,104,113,107,125,102,134,118,102,97,102,107,107,94,105,103,106,103,102,113,94,94,98,107,101,97,104,95,100,99,102,99,98,95,109,107,99,106,107,102,99,107,107,110,110,107,104,102,109,102,107,108,94,111,92,98,108,111,97,120,87,95,94,100,109,113,103,94,91,106,87,103,103,97,96,107,107,111,93,103,103,88,96,111,106,102,113,102,100,104,115,113,113,114,108,100,118,100,110,103,92,116,103,100,111,102,126,112,116,97,95,102,95,104,99,111,123,99,113,126,96,139,108,117,98,104,110,71,103,109,105,102,112,112,89,112,113,104,106,102,106,109,72,115,108,96,124,97,96,102,111,95,94,109,100,97,103,112,101,113,103,106,112,100,106,100,104,97,114,105,98,103,104,109,103,117,101,103,103,102,105,104,101,98,104,105,110,102,114,115,91,105,96,93,119,91,112,106,117,125,104,108,123,100,87,102,114,97,96,103,96,108,107,102,106,113,100,106,97,106,107,96,102,103,105,115,98,109,115,102,103,110,98,107,109,102,95,107,100,108,104,99,104,102,106,100,99,103,117,101,107,116,117,101,91,108,105,87,94,109,94,107,108,102,115,111,93,108,95,100,113,101,103,100,109,96,102,111,87,100,108,101,108,76,94,95,102,105,103,105,115,99,115,100,106,107,99,108,98,102,101,101,95,103,99,111,109,97,109,100,97,100,108,117,108,99,110,110,95,111,91,117,108,100,106,106,104,106,111,99,115,103,104,110,115,95,107,99,99,124,108,113,113,109,100,107,109,106,109,97,120,110,107,102,104,106,101,108,72,117,103,102,106,120,105,85,105,98,106,103,99,96,112,114,102,112,109,102,105,105,99,101,110,98,111,104,94,107,113,102,113,102,108,104,113,96,90,115,98,100,107,110,102,106,102,100,100,118,94,99,100,109,112,101,97,94,109,98,100,104,117,116,119,107,105,105,112,106,96,115,116,99,109,92,124,126,111,114,100,105,113,96,104,108,103,117,107,102,112,103,101,107,93,80,101,107,106,116,112,96,109,92,108,103,100,106,104,98,104,96,92,101,105,100,112,109,96,106,99,101,101,102,95,106,94,111,101,105,107,114,120,91,107,103,113,104,111,116,116,116,112,104,104,100,95,89,101,99,98,98,105,103,114,123,88,99,109,100,83,111,107,96,111,103,104,114,99,102,106,106,99,107,102,89,96,108,107,111,120,101,104,107,106,94,105,105,107,103,101,108,105,105,100,117,110,100,97,94,99,113,108,102,116,106,114,94,96,105,116,104,116,107,112,105,105,98,106,98,87,104,102,95,109,104,92,90,113,102,102,105,93,107,103,107,106,96,115,93,97,109,101,105,96,107,104,97,104,106,103,104,85,105,88,109,95,96,98,120,103,95,110,109,99,118,113,103,109,100,114,104,113,109,105,95,106,109,115,98,110,99,106,100,113,97,100,82,101,110,101,100,104,106,106,104,102,110,97,104,99,96,99,117,105,95,102,106,112,89,90,106,100,106,113,95,93,113,113,107,114,108,108,105,100,105,99,98,103,98,108,106,111,117,101,105,108,101,109,105,109,98,99,108,130,106,124,103,104,85,94,121,102,106,91,92,102,108,100,94,110,108,106,94,95,104,92,105,101,110,98,93,96,108,100,116,110,112,114,98,103,104,104,112,103,116,100,99,109,102,96,101,105,109,101,94,99,106,95,119,111,120,83,97,90,91,103,107,104,96,107,93,101,108,76,112,104,95,112,95,84,97,94,92,89,101,96,106,102,99,103,95,104,112,100,97,110,107,106,103,89,88,99,104,111,106,109,99,98,104,101,109,103,116,101,106,102,111,102,112,84,100,104,99,99,96,109,94,119,113,106,117,87,106,106,112,103,100,101,91,100,106,102,105,104,110,110,104,99,94,110,90,101,70,114,100,100,111,102,99,99,109,105,105,94,107,108,107,109,107,106,101,105,99,93,102,110,108,105,101,113,76,94,91,107,102,123,95,105,101,110,110,93,89,109,114,106,104,105,96,104,102,111,100,102,107,102,98,96,104,98,99,108,95,99,105,101,109,104,106,103,72,99,106,102,105,102,113,97,100,108,102,103,118,117,94,103,106,112,117,102,106,112,98,96,98,104,91,104,98,100,102,98,114,121,116,115,109,107,105,110,105,80,108,102,104,122,101,115,99,124,100,106,84,101,91,111,100,106,99,118,109,111,99,96,101,109,94,99,100,116,103,113,87,99,90,102,109,99,94,96,99,110,109,84,114,93,103,107,102,95,98,101,98,95,97,87,100,100,75,94,102,96,117,100,109,107,113,101,89,101,114,103,108,114,109,110,101,95,108,114,101,117,97,94,107,99,89,107,109,101,112,99, +655.20514,108,108,112,99,91,114,95,108,89,99,102,111,94,100,112,96,94,120,94,101,110,106,95,109,101,100,106,114,109,108,104,96,107,99,104,109,102,113,116,108,94,106,90,102,106,98,109,107,99,102,98,105,108,102,103,102,114,89,119,100,102,107,97,98,98,95,102,123,100,105,97,105,104,123,105,110,106,111,107,97,106,105,108,97,97,98,111,104,96,102,95,104,91,91,113,93,96,97,119,105,102,104,101,96,95,93,84,109,99,99,102,109,128,95,101,97,100,94,97,105,102,99,97,115,119,104,96,90,97,111,100,95,91,102,114,117,96,103,87,103,98,83,102,107,109,116,114,100,103,102,122,103,104,96,98,111,99,107,100,104,99,109,100,99,100,101,91,97,96,93,107,92,105,94,100,106,104,92,89,90,95,98,105,104,104,97,92,103,100,113,109,94,112,105,92,83,99,135,96,117,106,104,88,106,91,114,103,100,117,100,102,111,101,95,104,97,100,100,104,104,109,99,119,92,99,108,98,99,97,99,87,104,107,105,100,109,110,104,114,95,106,101,109,113,109,107,92,106,98,110,100,98,91,105,99,85,97,106,96,104,97,105,98,106,86,101,117,110,112,101,96,93,100,102,91,109,88,107,102,94,110,110,95,109,113,103,98,100,104,106,100,98,118,102,96,113,96,101,101,109,111,94,103,117,111,113,109,107,114,106,122,101,100,85,110,108,103,112,100,96,109,91,103,113,107,104,107,101,109,109,97,105,102,104,102,96,79,100,97,108,103,107,109,92,102,112,99,108,98,110,83,98,98,109,100,96,107,99,99,87,95,106,110,87,109,100,103,105,92,118,100,105,107,109,101,107,101,103,95,123,103,113,89,100,106,103,98,109,102,73,103,89,92,117,104,99,97,104,109,104,98,106,108,103,114,105,95,85,113,102,112,91,101,100,102,109,109,101,101,104,98,98,99,112,101,94,106,102,98,109,94,99,101,97,91,102,89,100,123,95,106,95,135,104,100,103,98,109,111,109,96,111,101,112,108,91,98,94,96,103,100,106,94,109,101,94,113,104,96,96,99,107,108,103,101,92,101,121,109,106,102,98,83,103,109,107,83,123,102,98,105,107,108,120,90,72,95,102,106,91,116,106,104,104,103,96,88,106,97,109,104,107,101,95,69,105,93,96,106,103,111,98,106,99,96,106,109,115,98,103,97,93,103,101,93,96,98,95,108,119,103,104,102,94,113,106,107,99,113,109,115,102,105,114,87,106,91,95,107,114,94,95,101,91,96,107,112,98,108,99,102,101,125,84,95,98,102,96,101,95,105,117,106,88,112,98,94,105,104,103,118,98,118,99,95,114,108,113,105,99,108,111,102,105,114,91,100,96,120,101,94,94,105,111,107,95,107,104,103,112,94,101,101,98,104,91,96,100,95,103,98,105,115,91,99,101,98,93,105,106,106,102,124,104,96,110,103,102,113,93,73,106,106,102,107,103,96,110,95,102,102,107,100,109,102,106,117,90,112,89,109,86,120,88,109,87,104,100,106,102,119,109,101,111,94,109,99,112,101,107,108,108,103,104,102,113,90,93,102,104,104,96,110,106,110,103,107,133,103,92,97,97,103,106,89,94,104,113,105,106,102,95,112,106,98,100,105,105,106,86,114,105,114,110,97,92,86,94,106,101,99,97,101,99,99,84,102,95,108,117,108,103,90,86,96,100,109,94,108,102,109,94,89,101,90,95,113,107,98,98,108,98,100,94,94,109,106,90,94,100,109,100,101,100,89,92,100,112,111,101,95,112,106,99,100,106,96,109,99,84,100,106,110,102,112,98,101,95,110,104,95,102,91,92,109,110,95,99,76,106,105,97,95,94,99,112,111,104,107,114,102,112,104,78,112,114,98,76,110,68,106,99,107,101,100,91,109,116,112,100,98,107,105,101,93,103,106,108,106,95,105,96,104,82,99,95,95,100,123,107,105,103,112,115,112,105,112,105,106,102,101,97,112,98,85,108,94,105,97,98,115,100,101,100,128,101,97,103,103,103,98,100,113,107,98,98,105,99,100,108,95,104,112,97,103,108,117,101,103,97,114,100,109,101,113,95,92,102,103,101,97,99,108,121,104,109,90,91,97,124,103,99,120,114,102,118,110,86,91,121,113,108,115,108,114,98,103,112,71,106,94,100,103,101,88,99,101,103,102,91,86,107,107,98,95,110,95,89,100,103,97,105,105,107,102,117,97,108,109,106,114,93,106,97,100,100,102,109,95,99,102,90,101,106,97,112,102,87,97,96,100,104,98,105,123,116,100,102,103,97,115,95,106,103,95,101,101,102,97,103,114,90,108,98,99,102,106,136,110,109,104,109,108,105,103,104,112,96,109,110,101,111,106,95,100,110,114,97,112,97,91,112,97,100,105,100,95,99,110,91,83,98,88,97,113,96,101,103,97,106,104,103,96,100,100,110,87,96,117,97,96,107,104,94,101,107,102,100,107,99,99,103,103,115,97,109,101,110,102,101,99,112,103,96,101,99,113,102,98,100,99,110,111,100,109,97,100,107,103,110,101,114,94,110,108,105,109,105,103,97,106,95,103,116,103,92,112,97,109,95,127,103,107,109,108,108,98,87,109,98,110,100,100,105,100,107,130,108,94,100,100,107,98,101,102,104,110,99,98,106,106,98,97,104,104,102,100,108,109,108,105,121,115,106,89,113,106,119,105,97,92,108,111,103,100,96,115,106,111,111,111,105,112,111,109,114,106,110,104,92,107,107,101,111,108,142,98,103,113,105,103,99,117,116,109,107,104,101,111,106,109,108,110,99,107,97,114,106,102,118,105,109,106,107,105,111,108,103,88,99,112,111,115,112,110,100,98,101,109,102,106,104,112,103,121,101,105,99,115,104,97,102,104,125,112,94,109,127,106,104,107,99,101,115,97,105,103,117,107,113,98,103,97,108,100,104,110,107,100,106,111,99,104,107,119,104,98,105,112,85,114,120,102,106,102,91,115,78,97,98,102,79,96,112,111,100,105,101,87,100,109,103,113,94,94,111,99,123,108,103,103,108,105,106,97,107,99,118,102,97,121,96,99,105,112,108,107,98,100,108,108,107,99,99,96,100,104,105,105,91,102,99,94,107,110,110,105,105,101,105,102,98,106,104,104,101,102,102,106,95,104,121,105,95,103,84,112,104,106,87,109,100,98,98,111,99,109,109,93,110,121,107,100,101,90,102,106,96,113,105,104,98,121,112,103,98,102,104,100,116,96,99,91,103,105,103,105,106,116,120,101,91,100,117,99,115,112,95,100,101,113,97,94,104,112,112,93,103,106,107,83,95,99,87,113,103,96,91,102,98,80,102,111,109,103,99,94,104,104,99,94,112,87,97,98,112,101,98,102,92,95,100,104,98,113,125,107,110,86,100,100,100,89,99,87,99,120,103,111,104,103,105,125,101,98,92,98,108,103,99,106,97,86,97,101,104,100,105,115,86,111,120,88,114,108,110,104,105,96,91,128,97,99,111,106,110,108,81,86,110,105,106,107,110,117,98,100,104,108,106,120,101,115,100,96,107,95,102,110,104,112,102,97,105,107,105,109,114,92,99,105,103,99,105,106,95,99,103,109,112,102,105,103,106,95,95,118,108,81,110,109,94,109,102,109,110,106,105,98,84,103,106,110,107,103,98,106,98,112,109,95,103,100,120,100,109,106,106,102,96,104,105,100,103,109,103,101,105,93,101,92,98,102,96,116,115,97,112,105,105,114,94,128,114,105,98,98,95,102,103,97,100,102,111,109,106,100,101,101,103,111,113,105,108,99,99,95,95,113,107,95,111,97,99,114,105,113,97,104,83,117,103,87,91,107,99,95,104,106,108,83,102,97,101,99,98,113,105,103,110,101,109,94,109,113,103,84,97,88,102,90,107,105,106,88,107,94,107,110,91,102,96,111,104,98,110,98,96,99,106,98,93,93,109,100,100,100,95,106,107,101,99,96,95,103,97,103,90,111,101,113,108,103,86,110,107,102,100,96,96,111,103,103,98,113,108,111,96,109,99,106,97,98,104,105,99,110,99,99,107,106,107,100,105,101,116,102,103,92,105,103,117,92,100,105,116,108,112,95,109,94,94,91,102,105,109,91,107,105,98,117,102,88,93,100,102,106,104,99,108,103,104,104,87,105,111,101,112,105,99,110,106,99,108,100,105,98,107,100,104,106,99,92,105,94,99,112,94,118,100,106,105,100,99,90,96,99,94,106,91,95,102,105,95,104,101,105,102,104,96,95,99,94,105,103,112,116,116,111,108,109,113,103,104,113,107,106,85,97,109,97,114,100,87,90,83,101,99,109,113,95,104,108,103,103,109,111,102,93,101,99,104,107,105,105,120,108,95,96,105,97,86,109,103,91,114,102,87,91,100,116,98,99,96,108,113,114,96,106,112,101,104,102,107,104,94,99,101,109,110,100,99,88,103,104,112,96,100,99,111,105,110,108,109,111,109,97,105,105,96,107,103,99,98,109,109,108,119,106,97,99,103,98,100,97,112,109,101,102,101,110,94,107,106,103,111,104,104,98,98,102,96,97,104,112,98,106,101,109,108,97,108,112,99,100,87,117,103,103,94,106,117,100,94,117,108,102,104,101,102,103,101,109,116,101,103,100,96,99,94,93,107,94,112,105,115,116,110,105,101,117,95,108,111,95,95,111,95,96,100,106,101,95,103,103,95,109,107,99,86,111,114,104,86,101,92,106,92,108,105,100,92,109,107,99,96,116,105,99,102,101,107,113,100,104,100,103,117,103,110,99,94,98,107,101,93,113,109,98,114,97,99,89,110,112,94,117,108,116,96,98,103,117,95,98,102,109,103,98,106,104,98,84,134,100,102,110,112,97,97, +655.34637,77,96,96,90,101,116,112,90,108,103,99,75,94,101,95,97,92,139,121,104,118,94,93,99,90,105,123,101,104,100,104,100,115,85,104,104,98,104,102,103,77,99,96,115,98,110,91,117,101,109,93,98,69,99,108,108,103,95,109,75,94,111,100,99,104,97,90,111,104,102,117,108,94,108,100,106,101,107,107,104,112,107,121,112,97,91,109,113,100,111,90,91,98,76,92,98,100,105,93,96,111,104,100,105,109,113,102,111,106,104,106,97,98,98,92,111,100,105,99,103,94,101,105,125,106,80,106,97,111,112,97,111,102,100,112,107,116,106,104,96,103,102,83,107,115,108,107,95,98,102,92,97,101,104,102,103,103,102,91,104,93,110,95,96,97,103,105,90,101,99,106,104,99,96,105,100,95,97,111,103,111,102,104,100,100,108,99,94,100,93,100,88,95,105,102,92,117,98,114,95,100,100,119,105,70,104,93,110,120,97,107,104,112,102,97,101,98,99,98,98,91,100,99,104,100,111,112,101,104,98,108,107,113,103,110,113,104,103,112,72,90,78,104,111,87,99,102,98,98,86,98,106,112,113,104,104,95,104,95,90,104,104,96,106,104,107,102,109,90,100,99,101,105,117,110,96,97,98,96,112,88,96,99,99,113,98,102,101,91,105,88,97,103,102,111,100,115,105,99,103,104,106,109,94,94,109,106,106,104,105,97,113,104,117,98,95,102,78,107,109,104,99,104,109,105,92,106,101,121,103,103,106,103,108,98,108,99,96,96,102,96,92,102,105,101,107,100,113,98,100,105,99,103,107,103,95,98,91,103,106,101,97,100,102,105,101,118,109,93,106,117,107,111,99,71,110,103,102,100,112,100,104,99,99,107,85,98,103,99,100,97,93,105,106,102,101,87,110,99,104,97,100,99,94,103,107,107,96,106,92,98,91,103,104,98,100,97,98,100,101,108,100,94,100,101,105,102,74,114,105,105,107,107,109,101,101,101,107,101,92,106,110,108,107,97,103,106,107,99,98,84,109,104,116,104,100,104,105,103,110,110,103,100,101,98,108,104,105,101,99,103,115,103,111,98,101,107,109,105,106,101,103,117,107,101,98,121,117,89,98,107,107,106,95,100,107,86,116,102,107,115,100,90,106,98,106,106,93,109,102,110,102,105,103,116,107,98,97,101,92,100,86,106,95,96,111,106,102,98,110,105,98,107,100,121,102,107,106,110,109,93,105,116,86,106,100,100,100,103,102,95,103,109,115,108,108,105,96,90,99,96,107,100,107,105,110,108,106,100,101,103,105,98,93,100,106,100,96,93,114,100,107,99,101,107,108,105,105,117,102,100,93,103,104,111,107,120,95,109,107,95,102,100,104,91,104,113,105,107,109,95,100,106,108,106,97,103,110,109,101,105,102,93,83,108,110,101,107,112,100,97,100,105,93,108,111,96,105,113,108,122,98,96,101,100,91,84,101,105,115,108,103,101,107,96,108,107,87,105,92,121,100,92,90,105,98,106,97,112,100,105,101,88,107,90,98,107,107,103,95,101,116,109,91,97,101,109,100,94,112,102,105,92,104,90,101,78,100,111,105,103,87,109,105,103,109,95,104,95,103,103,117,98,89,93,112,104,98,107,84,93,101,105,101,101,113,95,101,104,100,118,104,100,109,96,96,106,86,104,100,112,91,102,105,107,100,107,99,124,107,106,92,109,98,102,96,109,109,104,107,97,105,99,105,89,97,89,102,104,98,110,96,105,101,99,91,114,92,101,91,98,110,102,107,109,92,105,102,96,107,101,107,111,97,97,96,108,95,99,100,94,101,100,107,111,114,96,103,99,93,113,105,114,100,128,107,116,105,93,116,101,114,102,109,105,116,111,94,99,102,103,91,91,123,92,110,102,84,109,83,100,113,92,97,95,105,96,91,103,92,108,108,112,99,103,101,94,90,106,95,106,97,103,64,99,99,99,108,108,87,110,100,100,105,102,109,112,98,101,111,99,102,104,94,104,97,112,111,95,101,106,106,103,98,104,105,99,99,81,117,111,100,103,101,105,103,102,103,101,106,104,105,94,112,110,81,71,99,104,98,108,97,101,99,107,91,109,103,98,106,102,102,103,103,110,102,98,103,96,112,110,114,109,108,94,103,101,92,104,95,102,106,106,111,103,105,92,104,110,108,105,109,95,102,103,92,100,114,97,101,106,102,94,105,86,103,96,96,96,94,104,108,104,113,107,106,95,134,97,91,105,103,116,118,99,104,110,98,114,104,121,106,89,99,116,110,97,96,99,87,91,111,101,107,109,106,103,106,108,96,114,106,92,94,101,95,99,103,103,89,111,95,107,88,117,94,119,104,107,111,86,65,109,102,101,121,105,101,106,116,115,104,96,99,111,115,88,118,102,102,97,111,108,100,100,90,103,101,99,98,105,108,66,108,100,97,129,109,93,106,96,103,113,99,107,116,99,117,98,102,119,95,101,98,98,104,108,94,98,107,106,89,104,96,92,91,100,89,98,98,95,101,101,102,95,104,104,98,105,98,105,101,90,96,96,95,97,101,108,110,97,110,109,96,92,107,96,113,100,102,99,99,104,108,97,97,133,113,103,97,120,97,88,108,97,94,97,101,105,101,118,66,104,87,109,103,97,103,107,99,115,109,109,85,97,105,95,102,103,103,100,99,100,116,116,108,104,108,103,105,108,114,108,117,91,109,103,101,114,106,108,101,106,110,106,103,118,110,108,112,95,82,107,70,109,105,106,107,111,97,105,93,107,101,97,101,100,105,107,116,107,96,98,106,98,90,109,89,113,97,99,99,107,107,106,101,113,103,83,102,104,109,105,98,116,103,100,102,106,105,99,98,109,110,105,113,94,92,105,109,99,99,101,103,106,102,99,91,108,113,124,101,116,104,105,116,88,109,109,100,95,104,99,86,96,102,105,99,100,99,100,98,92,116,100,83,107,100,94,101,98,101,97,95,118,111,111,79,94,98,113,97,107,99,105,89,113,112,100,97,99,106,104,108,108,106,67,105,103,96,118,95,100,108,94,88,96,95,113,99,103,109,103,98,106,89,96,108,103,88,99,102,92,96,103,112,111,98,123,98,93,103,114,109,100,99,106,101,103,104,84,92,109,94,98,106,109,104,95,98,101,76,95,102,97,124,101,100,97,101,91,108,98,114,104,111,109,105,91,100,108,93,100,96,108,96,100,97,105,112,109,106,106,99,88,87,92,93,108,99,104,99,103,102,104,105,107,108,104,94,99,102,96,97,96,97,103,110,112,96,101,109,109,110,100,97,118,111,100,102,103,105,94,99,102,118,99,100,102,111,107,101,103,104,121,97,109,103,104,104,98,108,96,110,98,109,102,101,104,88,101,95,94,67,110,95,82,105,114,98,113,110,94,101,97,117,97,95,110,96,94,99,95,103,106,98,100,105,108,109,109,88,109,112,102,101,102,105,99,97,98,90,96,77,100,106,106,109,98,99,97,104,94,99,96,97,107,102,109,101,110,125,102,101,98,105,107,118,101,108,108,100,100,99,112,90,91,107,105,103,116,102,104,103,110,106,94,107,113,90,105,100,95,103,98,103,106,76,108,92,91,103,95,110,105,88,108,111,104,97,98,113,103,105,94,98,96,110,108,110,102,98,102,104,98,96,97,113,102,86,92,99,103,102,88,100,101,102,109,88,108,109,100,113,96,104,111,103,106,104,105,116,99,102,98,100,93,108,92,91,101,109,98,101,112,116,103,104,95,97,105,87,102,110,102,92,105,97,101,103,87,110,95,96,113,109,108,111,114,107,101,110,96,100,101,122,102,99,101,114,96,102,102,117,96,109,107,99,111,100,104,92,94,101,98,102,100,82,112,105,96,99,104,102,119,91,96,92,102,96,100,112,102,96,113,101,106,107,93,103,86,96,96,89,96,98,98,104,105,108,105,119,101,107,101,96,105,91,92,94,101,96,99,110,101,100,102,115,95,98,84,98,99,113,106,104,98,99,98,105,109,99,96,102,91,103,108,94,103,98,98,108,115,96,97,106,96,99,95,98,104,98,92,112,101,107,102,110,107,100,100,103,96,103,108,96,100,105,101,96,98,111,106,96,104,105,103,106,104,105,102,96,106,80,121,99,106,104,109,113,102,100,107,109,108,99,99,105,122,97,95,99,103,87,88,107,114,113,117,99,107,100,95,105,108,104,121,120,104,100,100,104,101,105,94,101,93,117,104,95,99,101,112,96,94,91,98,100,103,108,84,104,98,117,103,103,119,82,92,91,97,112,101,110,99,91,88,93,101,109,95,107,110,106,97,90,113,103,108,104,103,94,106,101,105,112,102,100,96,104,91,101,117,113,101,103,95,101,101,91,104,100,98,105,101,97,98,107,109,100,113,98,102,108,97,99,95,105,103,95,97,106,95,104,88,100,104,102,113,99,97,99,95,98,101,101,103,100,105,100,96,95,109,106,95,104,105,103,93,93,88,91,106,107,99,109,103,82,107,90,106,105,105,103,101,101,107,108,109,108,96,108,96,94,72,100,97,102,98,104,99,102,108,94,86,87,86,116,93,92,97,96,93,115,104,106,98,93,100,100,96,103,100,113,94,107,102,94,101,98,103,102,98,96,107,104,117,110,103,115,105,87,102,94,100,109,117,105,101,102,106,101,99,109,110,96,111,118,113,101,98,87,109,104,104,102,112,104,97,99,90,92,95,100,83,99,108,97,100,96,99,109,92,97,101,103,86,106,93,117,88,111,98,99,100,104,106,105,104,96,98,105,96,91,97,113,101,99,103,116,91,88,97,106,102,95,94,98,103,109,101,105,104,94,106,124,91,93,102,77,114,115,117,87,101,95,106,99,89,98,110,91,101,93,103,93,82,96,94,91, +655.48755,83,113,106,106,116,95,101,116,116,106,92,104,109,92,107,101,91,93,102,96,102,105,94,97,103,104,115,108,107,117,106,106,111,122,106,84,101,98,93,94,102,106,97,91,104,119,118,107,96,107,93,101,105,97,98,99,98,100,99,86,95,94,93,103,94,119,92,113,88,94,113,101,125,112,96,99,99,91,103,98,112,100,104,97,105,99,99,101,96,88,117,104,99,101,95,99,120,110,109,113,91,105,101,102,95,88,86,100,109,94,104,100,97,87,108,102,98,92,103,94,101,106,98,99,109,102,99,95,105,111,113,108,100,114,113,100,75,116,90,109,106,100,96,105,111,106,108,105,93,105,108,95,119,76,101,96,99,109,104,92,111,103,103,94,103,106,103,110,99,101,106,104,122,105,95,112,108,101,112,99,105,98,101,106,101,99,107,99,102,101,109,105,109,135,102,107,98,102,105,107,115,109,107,97,107,105,95,101,115,97,99,98,104,115,87,107,99,107,101,96,113,107,91,91,107,110,101,91,108,104,102,102,116,99,109,133,96,105,112,99,98,104,106,100,96,98,106,104,89,102,102,117,105,103,104,101,108,95,82,110,91,115,97,97,105,113,105,102,101,91,95,98,98,98,103,111,100,120,108,108,109,103,101,103,99,108,106,97,103,95,99,103,102,104,99,105,99,106,100,114,103,99,101,113,89,110,108,98,92,103,101,110,96,108,103,100,104,120,103,123,103,80,109,107,113,101,98,102,105,106,106,103,101,98,104,104,100,101,95,121,103,92,98,95,97,118,101,105,105,103,107,98,95,121,109,114,114,109,89,100,95,99,110,104,90,94,109,106,95,101,110,104,108,97,106,96,105,118,111,103,99,110,96,95,94,122,92,87,101,96,105,84,111,113,103,97,103,115,114,94,111,107,109,100,108,105,122,102,96,103,89,95,100,97,104,102,109,99,117,98,111,101,85,97,102,78,104,87,102,101,106,109,105,95,107,97,100,109,94,100,123,91,99,114,91,96,94,79,93,109,101,98,99,118,101,104,87,112,90,102,113,108,99,114,97,104,101,112,104,103,109,103,88,103,100,108,88,105,99,106,100,114,112,99,108,95,110,100,95,104,103,100,109,95,112,104,93,84,110,94,100,95,95,104,105,109,99,101,94,108,99,107,106,94,114,110,110,92,106,94,102,97,110,90,105,106,106,104,104,104,103,112,134,105,101,86,94,91,105,106,100,107,96,107,103,93,107,118,98,95,105,92,105,99,116,100,88,100,102,110,97,97,95,104,111,101,90,107,96,107,104,99,108,105,107,103,92,136,100,105,92,106,103,110,95,108,99,114,108,100,104,111,110,100,103,104,98,108,101,108,100,109,106,97,99,101,113,103,98,104,99,113,107,100,113,100,106,95,104,91,95,108,99,99,113,93,107,107,102,108,100,115,100,110,105,99,107,104,109,100,110,106,91,104,108,90,91,93,102,110,101,91,118,100,112,94,114,104,97,95,102,108,118,104,79,95,116,102,109,103,101,108,98,101,99,97,94,104,96,107,101,116,105,103,109,89,101,93,91,104,90,106,91,111,100,86,118,102,95,92,109,96,91,102,98,133,111,103,104,106,89,107,103,95,99,103,105,99,108,98,100,94,105,98,104,105,92,109,99,98,113,91,108,106,95,92,97,106,117,111,115,95,94,99,97,99,104,104,100,109,105,99,101,108,94,130,92,102,90,97,97,104,67,107,110,102,96,105,101,95,87,107,97,94,104,113,107,100,107,94,97,104,102,113,100,133,100,95,108,103,97,102,109,91,99,112,95,109,102,100,91,92,94,107,87,101,110,104,97,97,111,93,103,100,101,119,97,110,105,83,92,105,104,99,82,109,109,102,116,96,106,111,97,113,98,102,109,99,95,100,89,99,120,98,97,102,111,99,96,107,113,99,123,106,108,95,96,102,104,100,100,107,96,121,102,97,105,108,112,103,124,102,124,99,100,113,99,100,100,94,109,95,95,103,101,107,96,100,110,106,101,110,89,101,105,95,118,92,110,96,100,99,101,109,111,112,98,96,95,106,104,109,93,116,110,95,101,117,100,100,100,102,99,104,100,90,101,101,106,106,105,102,113,127,107,98,104,90,110,105,104,109,107,100,107,102,94,106,102,95,112,101,127,110,106,104,111,100,101,101,110,111,108,105,89,78,101,111,107,103,104,109,95,95,99,98,97,97,95,113,101,108,116,97,100,90,98,103,96,103,112,93,110,112,101,97,109,103,105,87,97,95,97,105,123,101,106,109,103,108,93,87,109,109,93,100,103,120,115,106,108,103,105,109,99,97,108,105,114,109,103,109,87,92,106,104,102,111,109,96,95,111,102,97,95,109,111,108,91,119,113,116,114,97,102,96,98,92,96,101,87,90,105,105,105,102,107,110,94,102,88,99,94,114,103,96,97,109,94,102,103,87,92,100,88,113,95,104,107,100,105,94,110,91,97,96,113,98,110,103,92,95,96,95,99,95,103,92,104,93,101,111,116,105,99,96,97,92,108,88,105,111,109,106,109,94,102,106,112,134,109,98,105,90,105,104,109,91,98,96,99,102,97,102,93,95,105,95,112,104,110,106,103,101,100,98,103,104,107,118,112,88,104,76,92,111,112,116,91,115,99,86,116,103,92,101,108,95,115,113,92,104,109,98,105,117,92,94,70,100,102,96,103,93,92,112,104,97,117,105,89,100,102,106,100,100,125,93,108,90,111,109,121,99,102,86,92,100,101,88,121,131,101,92,84,109,92,92,81,101,98,120,101,104,102,96,101,101,106,97,106,104,122,90,91,108,103,83,105,107,102,93,102,91,102,86,106,81,93,88,97,108,98,109,100,101,100,127,108,110,105,82,106,112,97,113,112,98,101,113,100,102,106,92,108,115,106,115,90,108,108,102,95,110,101,108,116,98,105,102,105,99,102,106,92,100,105,98,91,97,76,109,99,101,100,84,102,103,112,102,101,107,108,113,114,114,104,104,106,103,104,96,92,109,102,112,105,107,100,88,98,94,99,97,107,113,105,102,100,117,110,105,108,97,93,99,99,102,110,102,101,96,115,91,103,102,102,95,93,90,96,98,89,104,101,96,123,99,101,101,106,99,105,113,97,104,94,100,98,102,98,95,103,108,102,106,104,106,108,107,106,95,93,96,105,101,108,92,103,94,92,96,101,100,100,84,93,112,102,90,104,96,105,99,105,105,96,102,113,104,110,103,101,102,96,101,105,107,101,95,94,108,115,110,107,120,103,103,102,102,95,89,98,100,97,104,101,101,104,102,105,103,99,90,113,112,111,77,99,98,108,113,99,95,109,113,101,95,107,108,93,102,99,102,85,112,95,84,106,94,97,106,101,108,100,87,101,99,105,98,98,100,96,100,103,106,105,105,116,100,68,95,115,106,108,99,107,97,89,109,107,103,98,108,101,97,90,101,102,100,94,104,102,99,106,103,98,99,104,98,99,92,100,117,112,103,121,110,109,103,98,105,104,105,97,106,101,114,98,112,99,99,95,99,105,110,95,109,112,118,110,104,87,84,120,106,96,90,101,94,85,87,117,100,108,100,103,102,93,87,126,94,107,91,107,90,95,112,111,103,113,104,105,101,98,91,98,98,110,99,75,98,109,111,108,107,93,99,101,96,103,117,99,109,107,100,95,108,104,98,105,110,116,94,113,94,106,113,113,99,98,92,110,99,92,104,98,121,108,103,104,102,101,105,111,100,110,105,102,114,100,100,103,106,100,99,111,96,106,100,89,99,104,107,106,107,110,103,90,119,106,96,108,114,108,106,107,99,113,91,91,99,102,93,98,93,107,94,101,116,99,101,101,113,102,126,97,103,115,97,112,98,96,98,101,93,105,96,95,94,94,94,106,91,98,99,104,95,102,101,97,101,109,91,110,110,97,113,98,102,101,98,92,102,92,97,123,108,107,91,98,98,92,108,109,109,111,109,98,106,95,105,102,115,99,112,96,100,98,102,102,94,96,102,103,79,98,96,106,101,94,104,95,98,104,106,108,119,106,101,102,103,95,105,102,102,103,104,97,97,86,103,96,96,105,99,99,94,75,87,95,107,100,98,102,121,103,99,102,95,109,101,87,105,100,102,99,113,89,95,106,92,93,103,104,106,101,99,103,99,114,117,101,87,99,100,92,104,97,98,96,101,98,95,104,96,102,98,105,95,105,100,102,100,106,98,99,113,98,94,99,106,97,103,105,100,92,97,101,105,111,97,115,97,109,108,100,103,98,107,105,104,105,102,107,103,84,104,103,106,109,101,105,101,115,91,97,108,99,96,102,101,85,113,111,108,117,101,104,96,94,95,105,117,100,102,111,99,106,83,100,99,99,100,102,102,107,111,111,100,97,89,96,95,99,108,103,100,103,93,105,107,98,109,106,100,87,115,93,102,97,107,94,106,110,107,106,91,103,97,104,91,113,104,98,111,108,108,102,98,97,92,88,100,118,96,102,91,106,85,76,94,107,89,107,99,104,98,97,103,102,108,109,89,103,101,101,105,114,114,94,117,105,102,100,109,104,108,104,110,105,108,104,106,107,106,103,95,98,98,114,87,102,112,107,94,102,97,102,89,98,99,98,103,116,113,104,104,113,97,93,94,114,102,108,75,93,97,103,100,91,101,89,108,109,94,101,98,107,113,108,102,101,99,91,98,116,85,97,85,104,105,87,101,100,105,88,107,115,105,103,92,97,99,108,91,97,92,106,99,99,97,106,112,102,106,100,101,109,94,86,105,88,88,95,113,103,98,102,106,103,101,106,99,112,106,100,101,95,95,91,107,102,108,106,100,85,90,109,94,92,104,106,104,97,99,98,101,104,96,109,98,94,103,100,101,108,102,94,84, +655.62878,109,97,109,88,105,103,94,93,98,106,109,101,92,107,109,79,103,114,110,113,109,111,109,105,117,107,105,109,103,104,106,93,96,117,117,95,100,103,93,108,114,100,96,104,99,114,100,107,108,117,120,98,109,98,117,93,104,106,99,102,106,104,104,83,90,101,101,113,88,100,106,110,97,134,97,107,98,105,100,104,109,82,93,107,101,109,116,108,97,102,105,107,105,106,102,102,112,96,108,99,107,104,96,106,106,95,108,97,95,94,101,93,99,109,92,104,112,98,101,121,112,105,105,114,115,102,101,100,120,102,99,107,104,106,100,102,89,97,98,98,122,90,103,98,127,104,110,102,100,101,118,85,109,105,94,99,100,101,101,103,107,110,96,104,109,107,95,94,106,101,95,100,108,105,107,108,109,95,107,100,102,95,101,99,98,100,79,93,106,93,98,98,102,119,100,101,98,94,99,110,110,100,118,111,106,99,97,102,91,112,89,102,109,108,102,102,100,112,117,104,109,121,109,97,96,106,105,101,110,105,98,96,116,98,105,110,104,109,103,106,103,116,78,106,104,92,102,96,110,102,102,105,97,118,110,102,102,105,96,120,101,100,102,100,91,102,108,104,115,101,109,113,104,96,111,95,100,109,107,107,92,115,111,112,115,101,76,102,97,96,108,113,111,111,106,104,107,109,102,105,69,112,100,99,109,107,112,112,104,107,89,102,110,111,104,109,103,98,96,110,91,106,105,108,104,106,105,87,108,98,104,101,100,107,93,106,112,92,103,104,97,109,105,106,116,112,96,99,106,97,105,94,107,90,102,116,114,106,111,104,102,110,94,95,104,107,67,104,102,98,110,95,105,83,120,112,116,102,97,94,120,104,94,104,92,100,109,96,111,104,106,95,101,123,97,98,113,98,113,112,105,100,105,103,90,106,124,104,101,105,100,94,107,112,87,100,99,95,99,90,91,100,102,99,104,103,102,105,106,112,116,104,115,111,105,116,103,112,97,93,112,107,107,106,92,91,91,104,119,104,98,96,104,111,102,101,100,100,104,95,97,99,105,110,98,104,98,98,118,109,106,100,105,103,100,111,92,110,105,110,99,116,94,101,106,103,107,107,101,106,96,109,119,108,91,112,108,105,109,103,104,102,100,112,99,109,103,104,110,100,98,109,103,104,79,119,95,105,112,104,100,90,106,103,108,102,99,106,100,108,134,118,94,108,107,108,112,110,121,107,103,105,105,103,117,103,106,103,100,98,104,101,107,106,103,99,118,105,97,91,116,99,98,102,103,103,106,78,98,103,98,92,97,113,112,104,110,113,100,114,99,102,116,113,101,95,87,115,111,105,104,111,108,99,107,113,104,104,102,102,109,104,106,102,103,97,105,102,103,100,102,104,114,96,104,97,119,98,119,101,118,116,100,106,120,104,106,113,108,113,105,96,101,91,99,111,114,102,104,109,97,110,103,114,109,98,94,105,104,103,96,101,97,108,104,96,106,106,103,99,84,100,104,103,106,100,116,99,115,96,103,100,104,79,101,105,99,98,101,103,91,114,105,98,95,107,104,102,104,92,106,109,108,116,113,97,116,112,121,100,112,89,98,103,111,111,109,114,106,104,87,91,84,102,101,107,100,108,105,107,100,110,88,107,106,101,103,106,111,113,108,115,105,101,99,113,94,106,107,110,102,109,90,100,109,109,102,117,95,99,108,105,109,105,98,112,104,88,102,103,107,112,97,99,111,111,103,98,91,104,101,99,96,94,103,134,105,102,107,126,108,106,114,104,109,99,110,103,102,99,102,108,107,112,97,112,112,115,110,110,106,105,90,100,107,109,92,110,102,106,106,108,79,100,100,109,113,106,116,100,110,102,106,103,104,107,109,95,105,123,111,95,78,115,112,105,110,101,105,107,109,105,115,104,101,109,108,103,98,105,98,101,100,102,89,103,113,78,100,111,108,102,99,116,110,83,103,102,111,103,108,114,99,99,100,110,100,103,95,105,95,105,103,125,105,112,104,106,105,93,102,107,97,109,105,99,107,116,102,96,106,109,107,99,109,100,112,105,107,97,98,89,102,114,119,96,108,94,103,107,112,100,109,115,109,96,98,104,112,96,101,104,106,108,98,98,82,100,103,102,110,95,104,100,100,125,113,116,91,105,99,99,113,107,102,109,91,107,100,115,104,106,95,97,102,106,102,126,102,110,121,101,109,112,107,101,117,94,105,104,116,109,114,99,106,101,113,88,109,101,101,88,100,97,118,101,98,95,103,123,95,104,104,97,106,106,101,110,99,103,110,104,103,108,106,113,103,107,103,91,105,105,105,106,102,108,105,103,117,94,98,110,99,100,118,97,85,109,111,106,105,105,90,91,110,108,118,114,108,91,107,104,105,99,101,101,107,110,100,110,108,96,120,102,100,101,102,98,102,107,93,115,96,90,102,94,97,100,103,106,99,105,100,103,116,103,109,97,107,112,98,98,111,103,107,100,109,112,110,99,99,105,105,103,100,103,102,98,104,107,112,107,116,110,98,98,112,111,102,120,117,105,107,104,99,102,77,111,94,113,100,110,110,105,99,115,103,94,98,99,111,106,101,99,109,101,105,101,116,103,104,109,104,108,104,103,109,103,107,99,115,99,113,100,102,117,96,105,113,112,94,88,104,100,102,108,103,107,109,113,93,105,108,95,107,110,124,94,99,104,105,105,96,106,107,119,99,102,96,104,107,110,90,110,99,108,105,101,110,106,106,105,102,103,104,115,106,116,95,99,107,114,97,95,101,115,104,109,110,110,91,99,104,107,106,102,93,112,108,120,105,101,113,95,109,109,96,106,115,100,104,109,104,111,105,93,91,112,97,102,108,100,118,109,111,104,102,116,103,87,100,120,100,127,112,107,102,101,95,117,102,104,113,109,111,108,100,104,104,103,102,102,109,110,94,103,93,95,92,98,104,106,98,98,111,102,102,108,119,112,95,109,97,100,98,109,101,106,98,118,103,110,104,105,101,95,99,106,105,100,106,101,98,109,110,117,106,107,106,105,102,121,113,111,112,108,100,94,110,112,109,99,96,108,88,87,107,111,120,106,107,109,98,115,123,98,108,99,106,94,109,116,98,111,95,98,106,102,108,97,112,102,99,103,104,103,104,101,102,103,109,101,100,108,107,107,99,96,96,98,106,117,94,99,104,104,103,103,94,112,105,109,98,109,105,101,101,120,95,106,101,103,104,94,99,96,109,111,106,109,116,97,102,112,98,99,100,105,98,96,90,95,111,112,96,102,92,122,100,96,103,92,108,112,107,102,118,105,107,95,102,102,103,109,108,109,85,103,102,100,94,107,105,99,121,102,113,89,110,97,98,102,110,103,105,105,99,95,107,93,110,105,108,100,110,112,95,109,114,90,98,115,106,99,102,112,104,101,101,103,95,96,107,101,108,103,98,103,99,114,113,106,94,97,102,102,110,110,103,109,108,99,106,106,100,120,115,105,102,86,111,105,116,102,100,109,100,102,105,106,116,106,94,109,110,95,112,104,109,104,92,111,106,103,108,101,102,125,98,115,107,114,113,106,116,117,102,94,108,96,91,111,106,109,110,103,106,93,114,96,105,97,100,104,97,90,83,90,98,105,106,96,108,103,109,100,109,104,106,117,100,103,109,96,98,101,100,117,106,112,107,117,103,108,103,106,99,98,115,106,95,104,106,109,120,96,107,102,98,117,105,117,113,97,94,103,108,98,90,100,102,100,99,94,98,86,103,104,115,107,110,104,98,102,108,94,91,95,120,100,98,96,97,110,102,91,109,104,107,105,113,117,108,103,105,113,107,104,95,99,101,110,102,106,106,110,109,117,97,93,100,89,99,103,113,107,100,103,110,97,121,104,92,99,109,103,102,118,99,98,95,116,112,100,99,107,119,113,107,97,106,106,112,108,100,102,106,110,101,121,101,120,91,102,88,105,100,108,98,106,98,102,104,106,109,98,106,105,104,111,109,108,121,109,111,106,105,101,107,117,108,91,107,114,104,130,118,105,103,99,100,113,103,109,117,109,114,113,98,108,102,114,117,100,103,108,103,105,102,112,99,101,92,112,108,107,111,98,104,97,103,101,96,123,99,119,88,106,112,85,106,89,99,110,119,102,113,108,103,99,106,105,105,94,111,108,99,113,102,99,114,104,91,108,104,80,111,116,103,106,107,104,102,103,108,101,113,108,105,106,104,101,106,103,111,105,113,103,105,103,100,96,98,103,91,107,97,116,97,116,90,104,105,97,108,109,115,108,94,102,87,97,101,97,99,107,102,118,105,120,112,102,110,77,110,104,93,96,107,101,106,100,114,94,110,107,109,110,90,109,98,123,110,102,99,102,104,107,100,103,92,113,111,101,108,103,107,102,112,72,99,96,96,100,117,112,77,108,107,106,111,113,101,108,92,92,93,105,96,107,108,109,117,100,111,106,108,104,101,99,92,93,106,103,118,105,106,100,103,106,103,111,105,94,118,105,126,99,104,95,94,106,105,96,104,109,110,102,98,103,111,105,100,115,121,104,101,110,99,108,91,107,112,110,105,95,98,103,94,115,93,97,112,111,102,113,101,105,105,107,103,107,111,106,95,104,112,112,92,108,108,101,117,99,93,93,106,115,140,101,110,103,105,98,107,106,103,93,102,108,76,106,95,113,112,102,93,108,108,108,109,105,110,105,97,101,95,105,108,104,92,97,104,112,107,100,109,105,108,113,99,103,97,99,119,109,99,91,104,106,106,109,114,109,99,96,113,94,113,116,95,112,96,107,96,119,98,96,98,108,113,120,104,93,115,99,110,104,109,109,102,96,102,117,101,102,96,113,129,111,125,92,110,87,110,105,99,110,103,104,98,104,124,91,114,116,107,93,100,87, +655.76996,113,87,97,98,98,96,85,106,101,106,82,95,97,102,113,108,105,108,102,90,125,96,106,84,92,98,100,114,97,116,107,93,105,101,105,106,112,113,105,90,102,94,113,97,98,103,102,96,103,96,92,101,117,113,103,100,98,99,101,106,95,90,97,97,94,104,94,105,91,98,112,93,101,103,107,100,99,104,104,102,94,105,101,92,103,95,103,101,94,109,92,110,109,105,107,99,105,93,107,63,92,105,100,90,104,90,95,102,105,98,98,110,116,100,117,107,98,97,112,101,92,95,99,100,104,102,108,103,125,101,96,98,95,110,96,93,103,118,98,112,106,105,90,101,109,114,97,101,104,100,103,96,96,98,72,110,100,111,98,102,108,123,99,106,93,99,88,90,107,99,105,67,98,100,100,101,119,96,114,100,121,103,92,105,109,92,101,105,102,108,113,104,88,101,103,105,114,106,103,96,91,112,110,92,104,100,100,100,108,103,96,102,106,104,112,103,95,92,92,101,105,109,112,113,100,106,99,81,111,98,102,102,105,99,115,104,118,103,102,103,103,91,102,107,101,102,102,107,92,98,90,103,100,111,91,108,99,115,98,94,93,103,112,105,87,100,93,98,104,109,108,93,94,110,113,117,105,111,99,74,96,100,99,103,104,106,94,103,104,100,99,93,123,98,104,109,137,97,109,109,105,96,96,116,104,101,105,125,91,105,104,106,111,111,95,102,94,102,99,103,96,97,108,97,101,133,99,85,109,102,118,104,108,105,106,89,101,108,96,92,105,98,105,96,105,106,109,99,109,105,104,90,97,116,96,106,102,109,99,110,84,108,102,98,98,109,95,102,115,100,119,102,86,108,110,103,101,102,96,116,92,102,109,100,114,102,102,99,107,102,108,90,111,108,104,109,96,100,101,110,96,95,119,94,110,104,103,114,102,112,96,88,103,100,98,102,88,105,104,106,120,116,100,96,102,99,111,104,98,121,94,107,100,105,105,92,106,104,105,94,108,101,101,110,95,98,98,103,108,104,109,114,108,109,97,110,95,111,103,97,112,102,108,94,108,117,97,105,109,100,102,100,98,117,99,94,95,100,101,110,106,107,107,104,111,101,105,110,97,91,112,106,101,99,106,101,100,103,110,105,105,96,95,95,100,104,109,101,106,109,105,104,113,98,105,102,101,98,106,102,106,100,102,113,111,102,103,105,121,95,96,107,101,105,103,87,94,104,100,107,94,112,102,99,112,95,111,117,98,103,100,106,100,108,106,109,111,115,101,99,113,108,99,107,104,99,102,116,98,97,89,108,110,109,95,104,99,102,107,100,97,94,104,105,109,110,104,113,106,94,107,105,98,114,97,114,98,103,108,89,106,112,86,108,105,99,91,108,105,109,96,105,108,111,96,86,109,107,102,125,104,101,95,96,113,105,91,113,102,102,103,101,107,110,103,108,99,95,120,105,111,106,88,109,106,94,96,103,114,95,100,108,105,103,99,102,102,95,92,92,102,93,105,106,99,107,107,89,96,104,107,91,91,103,105,104,103,103,99,104,108,123,100,97,97,101,105,101,107,99,103,103,91,107,98,110,99,94,109,101,101,106,95,103,95,104,108,103,99,110,108,104,100,100,104,97,96,103,102,99,99,94,104,109,103,119,106,117,108,103,108,115,106,91,92,98,115,98,103,99,104,104,82,104,104,113,82,114,102,96,107,97,93,106,106,106,99,114,106,124,95,101,105,112,95,101,102,100,112,99,104,92,99,106,90,96,97,114,116,103,112,105,110,109,102,91,99,104,105,117,93,102,111,104,101,105,112,104,114,117,96,110,121,105,109,96,110,99,103,101,112,100,100,107,104,100,107,106,113,99,109,104,71,99,122,100,107,105,102,114,119,105,113,96,98,117,108,97,113,94,91,125,103,102,92,113,100,96,99,100,105,96,100,118,110,101,114,98,95,102,87,104,98,103,110,100,103,113,114,105,107,106,102,112,101,96,104,102,109,103,107,104,97,108,100,105,105,109,105,111,109,114,113,95,128,92,109,109,93,107,105,112,104,99,107,95,95,94,105,105,107,112,97,105,107,103,113,121,90,98,109,105,100,102,102,98,105,101,106,106,107,106,105,105,100,102,101,106,113,104,102,108,115,105,91,109,109,115,107,112,102,104,108,107,106,94,105,110,106,120,98,96,94,95,108,102,100,99,104,91,98,99,101,95,104,95,103,93,88,100,108,102,110,107,101,107,109,112,86,107,94,105,110,102,96,99,107,101,95,103,103,108,97,103,108,101,91,112,96,99,80,99,100,105,104,110,100,105,105,97,118,101,111,108,104,117,102,100,110,108,113,101,105,103,118,98,113,103,100,87,76,93,106,115,88,101,109,97,96,105,120,96,102,99,105,106,109,109,91,124,99,110,76,108,104,85,104,98,98,103,94,104,102,110,112,113,99,111,103,114,96,110,82,106,102,105,100,102,124,101,112,90,95,96,95,105,105,105,102,101,105,99,109,103,100,96,104,113,117,103,88,112,108,108,95,97,104,102,98,121,115,74,109,102,123,105,94,106,103,94,101,105,97,102,104,90,100,99,94,101,91,94,100,117,104,100,94,92,108,111,114,95,104,101,101,101,104,102,93,103,104,89,102,96,101,104,115,99,103,97,112,98,107,101,113,69,106,112,113,106,89,107,113,98,100,109,106,109,115,105,99,106,108,115,110,106,106,97,112,96,110,93,105,91,71,105,109,100,99,97,113,82,98,104,129,101,105,105,93,101,113,106,99,108,101,97,105,108,107,107,87,97,101,114,98,113,131,85,103,104,107,106,107,96,115,102,108,103,92,100,113,108,106,104,113,89,114,110,100,121,104,99,103,102,102,99,114,110,110,122,112,105,95,104,100,102,107,103,104,105,117,109,103,102,111,101,113,105,87,107,99,95,96,95,97,110,100,120,105,94,97,108,113,106,101,94,115,106,100,88,111,105,109,103,110,108,105,104,106,105,111,112,100,94,107,99,111,110,110,97,109,97,97,101,110,110,101,97,98,108,102,102,109,99,102,104,101,110,113,104,96,104,96,111,95,103,108,105,99,107,105,112,97,107,100,94,110,99,92,104,106,105,108,99,108,97,97,99,96,99,95,99,100,101,107,103,108,98,98,113,97,99,97,103,106,98,113,95,107,101,110,112,103,98,100,105,98,106,109,110,109,98,93,113,113,94,102,107,110,112,103,110,100,93,108,103,98,97,116,99,106,107,104,118,105,100,101,116,105,111,101,102,109,91,108,107,103,92,125,106,104,100,109,109,99,107,104,100,94,90,105,107,100,97,90,110,105,91,103,102,79,100,88,99,105,100,93,103,97,98,104,102,99,99,107,106,101,82,95,95,111,84,88,80,91,106,100,113,112,102,97,95,116,102,101,95,112,92,99,84,91,95,104,94,110,107,100,108,103,104,119,108,102,102,105,96,97,124,99,103,98,105,102,108,103,96,113,107,102,102,97,121,102,116,103,97,101,102,101,105,113,99,91,109,96,114,101,100,109,110,95,104,95,96,104,106,99,97,103,108,115,103,95,97,100,94,106,101,81,91,94,103,105,94,109,90,113,102,103,107,100,105,104,104,98,101,114,103,108,100,93,99,127,107,109,95,98,102,102,108,102,113,119,124,114,104,100,124,109,106,100,98,93,93,116,113,107,95,99,102,103,103,112,72,108,101,100,109,106,93,103,104,99,101,104,103,102,104,103,105,103,102,96,92,97,71,108,101,117,107,102,95,112,98,101,108,101,97,111,106,123,112,105,144,114,105,106,101,101,121,113,113,80,96,99,99,73,97,112,119,88,99,98,103,113,102,100,132,108,104,92,88,81,101,98,100,110,109,101,92,111,91,99,107,111,68,93,94,107,93,91,108,103,114,103,95,102,100,101,100,104,100,97,106,106,99,100,98,103,103,100,110,101,114,101,107,103,106,98,99,105,105,101,91,105,108,100,108,122,102,104,96,97,91,112,103,102,102,99,113,110,101,122,103,116,99,118,98,107,112,102,106,99,97,110,106,119,102,109,100,102,104,119,100,109,102,104,99,103,115,108,112,106,105,96,99,103,90,97,99,114,117,106,106,103,105,101,104,99,97,104,108,103,111,83,99,108,100,94,100,106,101,104,101,98,109,99,103,97,108,99,106,101,114,111,102,112,105,107,122,117,107,117,96,124,106,70,108,101,103,104,102,94,121,99,110,112,90,98,109,104,103,118,104,104,110,101,103,100,107,97,96,110,96,112,98,95,101,98,120,92,102,123,105,117,108,109,99,92,107,104,108,108,111,113,99,108,115,101,105,106,108,106,124,106,103,107,112,102,95,102,104,108,101,94,106,101,103,121,103,106,108,107,91,96,102,108,121,97,103,108,96,101,108,101,107,109,109,101,110,105,108,103,104,111,60,91,105,99,97,111,104,105,98,115,100,106,102,112,99,90,102,101,107,99,98,99,69,97,98,114,101,105,109,108,102,105,92,94,86,103,100,112,106,100,112,95,114,104,100,99,118,102,95,85,103,93,104,107,102,102,109,104,103,106,100,109,90,114,100,108,110,98,107,101,96,97,103,101,101,104,100,105,107,108,102,98,108,109,103,105,103,102,111,122,97,105,90,97,100,99,100,91,94,95,99,111,96,100,98,104,97,106,98,112,91,103,106,86,105,106,106,112,99,107,109,92,98,91,103,91,104,98,89,106,89,105,104,102,115,103,110,104,111,92,100,108,121,95,119,104,107,102,102,101,99,102,103,97,105,104,109,104,101,99,93,104,113,98,102,115,73,106,96,106,110,102,104,96,103,114,108,90,110,96,117,80,105,105,102,98,95,107,94,107,101,91,116,115,86,116,106,106,108,101,99,91,110,93,104, +655.91119,102,114,87,97,99,106,109,98,98,85,92,93,118,103,104,101,100,116,99,104,99,99,91,99,110,98,99,94,103,111,80,108,110,114,101,104,112,96,102,101,100,102,101,110,108,108,120,95,92,95,115,108,98,72,91,96,100,96,99,100,92,97,98,97,108,101,101,107,99,94,85,107,110,103,86,98,90,104,106,101,101,96,94,101,95,85,103,105,120,92,92,83,96,116,98,99,96,98,106,104,91,105,97,115,95,93,90,101,99,96,96,105,113,97,103,96,113,96,99,97,101,98,106,110,101,116,93,95,108,110,104,98,104,101,101,112,101,99,83,92,109,98,99,111,108,97,113,119,102,97,103,88,100,86,95,103,112,97,105,105,107,100,111,102,109,92,109,87,87,92,99,124,98,95,110,109,98,89,102,101,111,103,102,116,105,95,100,92,95,98,92,98,110,92,98,94,99,99,110,105,113,109,107,110,123,113,109,97,103,110,111,105,93,100,97,101,111,99,136,114,99,109,110,113,92,109,102,103,117,93,91,91,109,97,104,99,104,111,121,102,106,98,109,99,92,87,101,102,102,104,90,111,69,107,99,107,98,101,105,92,88,89,96,99,106,126,101,101,99,104,98,109,114,100,105,100,84,93,97,103,100,106,85,96,98,106,96,106,103,94,110,102,112,101,112,108,105,98,98,114,101,104,106,109,104,105,109,98,108,106,96,93,105,97,108,97,106,102,105,96,96,93,96,102,108,104,103,93,105,113,114,96,105,95,113,100,103,103,87,102,91,108,87,96,120,102,105,114,103,104,110,101,102,98,96,101,107,105,111,102,89,96,118,91,92,105,99,114,103,101,97,108,99,93,100,87,103,105,109,98,100,104,108,97,101,95,90,101,103,98,106,110,105,103,96,100,91,108,123,106,105,91,91,114,104,102,105,100,102,110,98,88,102,98,99,104,91,104,108,100,94,94,95,102,103,95,106,100,116,104,102,98,109,100,112,99,102,110,101,103,111,96,112,137,95,92,100,100,106,122,114,104,114,110,109,106,109,90,109,109,108,108,99,112,113,107,100,113,103,91,101,109,99,131,96,103,102,116,110,94,95,101,107,94,109,107,102,98,96,101,110,103,107,106,100,115,107,100,102,121,97,108,96,110,98,116,105,107,113,97,107,106,101,123,105,107,98,105,99,108,101,117,97,105,102,103,111,109,99,105,105,101,114,101,110,105,97,118,93,96,100,103,98,101,113,100,112,93,103,114,102,103,117,99,113,98,96,101,87,104,109,91,110,107,104,95,97,104,98,104,99,89,103,107,103,99,100,97,97,112,102,105,104,106,97,93,107,104,102,102,105,98,101,98,108,119,99,95,108,111,111,107,111,100,98,109,92,102,99,105,100,112,112,109,104,90,103,102,107,100,96,106,101,111,108,96,107,112,115,107,102,108,110,106,95,107,108,103,99,93,106,108,98,105,107,95,111,94,103,98,88,100,109,95,102,102,101,106,105,128,103,109,110,113,100,103,106,100,108,91,101,102,97,92,102,113,116,110,97,104,102,104,117,94,99,94,109,103,102,102,93,91,102,104,109,98,99,99,96,106,112,83,105,106,103,110,95,105,107,95,90,93,122,97,116,99,110,109,100,100,102,86,96,99,106,100,105,103,97,99,98,98,93,98,100,81,107,105,106,104,109,105,113,91,112,105,106,94,108,102,114,99,93,107,99,103,76,105,99,103,103,106,86,102,91,104,102,106,102,106,109,100,110,106,100,102,126,102,95,95,100,108,117,96,96,96,102,96,109,104,95,108,100,117,100,110,112,108,99,94,105,105,114,114,103,116,101,99,108,103,103,107,112,110,92,96,112,99,101,99,101,118,102,101,102,99,95,95,109,101,109,98,91,100,104,105,111,104,103,97,101,111,98,110,103,109,104,99,90,94,89,109,98,113,100,95,106,103,102,95,98,113,100,94,111,106,99,107,107,98,107,97,95,95,93,107,109,90,90,97,116,87,97,105,105,102,98,105,98,96,94,95,102,110,105,98,96,101,90,106,103,99,99,107,111,99,109,98,91,90,107,105,116,97,90,96,93,104,102,111,107,94,111,104,87,95,106,105,102,103,99,108,101,97,100,103,101,92,109,102,108,96,86,113,101,96,109,104,106,94,97,100,113,106,99,112,99,94,99,99,99,83,109,113,103,106,96,100,102,93,87,98,95,105,109,111,104,106,97,98,97,102,112,97,95,109,101,112,103,109,98,102,94,69,91,105,99,94,93,114,97,97,99,90,110,112,103,98,83,99,108,100,105,101,113,103,110,103,104,110,106,103,102,91,101,112,108,100,99,109,91,99,107,100,101,100,103,114,95,108,98,115,79,107,105,108,103,103,97,120,104,83,102,104,96,103,99,97,96,110,98,94,109,95,100,95,96,114,117,95,77,112,95,119,104,114,101,107,98,91,98,111,88,97,100,107,108,110,110,107,100,95,91,98,102,102,95,108,121,97,100,93,91,101,91,107,95,102,94,101,104,107,111,108,100,96,99,104,104,94,111,113,99,92,122,107,125,103,112,113,114,105,116,103,91,112,120,106,100,97,94,99,99,104,97,87,102,108,109,100,112,118,105,103,102,107,107,105,105,116,107,103,106,90,105,109,103,107,101,119,92,83,113,108,102,105,98,93,110,100,101,67,88,74,109,113,109,103,91,104,105,110,102,105,103,110,107,103,113,102,104,106,105,109,103,114,91,103,110,102,105,105,105,102,116,117,102,109,105,107,97,121,116,99,116,88,108,106,102,117,98,113,105,104,109,101,106,102,97,106,106,110,109,103,110,93,110,116,100,114,116,96,121,108,100,103,101,108,97,107,122,107,93,103,107,109,93,97,112,101,124,81,111,104,102,111,106,120,109,116,103,112,105,91,105,99,104,116,106,104,101,105,105,101,101,109,98,103,114,100,116,112,99,113,94,101,106,113,106,105,85,107,129,103,112,113,111,97,112,103,114,112,88,100,113,113,114,106,106,107,104,100,107,107,112,116,117,100,106,104,99,103,101,109,96,105,111,109,110,114,110,95,95,102,108,100,109,106,83,87,104,96,106,101,111,101,108,113,100,103,106,104,97,114,102,104,99,102,80,109,102,91,107,113,121,106,107,122,80,104,106,104,111,114,107,111,106,98,109,102,116,99,114,92,103,107,96,103,109,110,102,98,98,102,108,97,108,100,113,113,95,101,107,108,109,102,113,91,109,73,103,104,105,108,104,115,105,101,96,106,93,105,109,112,94,108,101,103,106,104,112,96,110,107,101,105,103,108,108,96,109,110,81,88,121,101,108,100,100,105,114,116,91,96,107,114,108,104,110,105,103,101,103,106,99,105,114,102,95,107,108,83,100,104,110,98,101,114,117,104,105,105,106,103,99,98,102,106,113,101,105,96,102,106,106,103,113,114,88,102,102,131,114,103,102,106,107,109,95,102,103,99,124,100,108,98,104,101,103,98,110,98,97,104,118,84,93,109,108,91,113,109,106,95,93,105,120,108,98,95,107,95,102,108,111,106,102,94,100,99,95,103,96,100,111,102,110,114,103,90,87,92,97,117,97,106,95,100,108,107,94,109,112,124,102,75,104,111,105,105,102,104,123,111,100,124,104,101,116,105,92,99,108,102,97,112,124,103,97,109,102,102,79,100,101,95,99,106,105,109,113,97,107,99,113,106,102,102,116,94,103,102,93,101,103,97,106,102,106,103,98,103,92,95,103,95,94,95,108,105,96,115,91,108,114,98,105,99,118,111,108,105,102,104,110,108,101,102,103,94,102,95,112,105,107,113,109,101,99,109,97,95,93,105,105,110,113,98,95,101,101,103,109,98,99,106,110,75,96,100,105,105,88,116,102,101,107,102,101,97,99,106,104,112,102,100,112,103,116,100,101,100,111,105,100,102,95,96,107,102,122,100,101,112,98,94,109,115,117,98,93,107,102,98,104,104,105,105,101,100,101,113,91,107,99,100,97,97,100,111,104,105,97,101,103,98,114,100,109,94,108,88,94,92,99,103,109,102,107,107,102,93,113,109,100,111,109,97,91,106,104,112,111,106,111,105,104,102,97,116,105,104,93,106,105,103,96,105,111,106,96,96,108,107,102,101,103,109,100,110,102,98,97,102,103,105,103,99,117,113,103,98,98,96,103,105,98,106,106,97,105,104,103,105,93,97,91,104,101,111,109,109,111,104,95,111,97,107,99,116,103,94,106,79,104,109,100,98,128,86,99,107,98,101,100,104,113,118,98,100,95,104,109,101,107,97,115,112,102,102,106,97,104,75,99,94,105,114,107,102,99,93,110,113,102,104,115,99,105,113,88,106,95,113,102,100,94,94,117,98,101,108,104,105,95,98,90,105,95,91,87,91,93,100,100,107,100,102,95,103,110,101,110,107,102,112,98,84,109,108,110,99,95,110,94,103,110,112,116,102,91,102,110,115,100,96,100,95,118,107,99,102,96,106,104,99,102,101,98,106,88,102,91,108,93,100,106,112,103,102,100,132,100,101,108,95,93,105,95,111,104,81,93,100,108,97,104,99,103,102,102,101,108,101,94,103,97,96,109,101,110,99,107,103,103,108,97,107,104,90,106,98,96,102,95,102,103,95,112,110,95,97,103,104,105,107,123,100,98,106,73,103,101,99,86,105,110,107,99,104,119,102,106,94,100,105,107,102,95,106,98,97,95,99,96,103,113,105,102,103,106,101,104,104,108,102,101,113,102,114,108,105,95,97,99,124,89,103,96,104,91,94,112,100,94,104,103,103,107,110,108,95,98,96,115,97,89,102,106,104,103,105,105,106,94,111,92,96,104,107,93,108,92,110,104,94,100,116,107,96,95,113,68,95,123,101,97,93,87,118, +656.05237,98,92,87,107,85,102,95,101,99,99,100,98,101,116,115,98,102,109,100,112,96,99,113,101,105,67,105,115,108,93,92,108,107,108,116,104,116,110,91,103,92,98,96,98,94,109,103,119,90,109,106,90,106,99,89,106,103,107,108,105,109,92,101,101,113,101,91,104,118,108,117,99,106,94,104,106,98,107,103,102,99,113,104,111,89,95,111,107,93,101,108,108,103,92,100,99,92,100,96,104,98,111,106,114,90,94,99,100,96,104,88,99,103,102,104,103,105,97,92,99,103,120,105,108,106,121,113,99,115,114,100,105,107,116,99,118,100,81,95,98,108,118,99,100,94,94,112,109,105,112,109,76,107,111,101,110,97,109,96,103,95,102,107,99,90,98,116,94,102,106,103,111,100,89,117,99,111,96,109,99,101,117,100,105,104,112,104,92,100,104,106,109,115,110,98,100,108,97,99,108,105,104,98,104,104,102,102,112,106,110,121,108,104,108,98,105,99,106,109,94,110,116,101,99,93,94,95,103,105,105,95,109,108,120,110,113,99,103,104,91,114,105,108,114,109,103,101,105,90,93,98,100,100,113,111,105,96,98,100,111,103,117,83,103,92,95,101,102,101,102,101,107,102,96,102,92,113,92,102,105,100,107,105,116,108,100,98,100,106,107,102,84,98,113,101,107,104,100,103,99,88,105,117,108,93,105,104,104,103,109,101,118,93,102,109,104,100,101,90,102,107,102,96,102,95,94,101,86,112,106,98,86,108,107,95,109,90,99,103,101,107,97,92,98,96,101,112,100,107,102,101,100,101,109,99,104,108,102,89,104,109,101,109,107,98,102,106,103,88,108,99,100,95,105,109,96,116,90,109,115,113,109,105,103,98,99,110,92,95,108,110,105,100,101,106,96,96,105,78,106,95,103,103,95,122,94,103,96,106,102,96,101,94,99,112,102,109,98,105,105,101,117,106,103,100,102,101,104,87,99,105,96,116,106,92,112,103,102,101,107,104,104,112,98,102,103,102,105,99,101,98,101,100,112,100,113,104,102,106,90,110,97,97,95,103,103,103,108,102,111,108,100,104,100,98,97,113,108,110,112,95,116,104,110,113,92,100,98,103,104,110,108,104,115,103,106,91,104,112,98,116,100,101,98,106,101,89,105,94,86,114,105,99,100,94,115,103,103,105,105,105,105,100,104,104,98,100,94,78,96,105,109,105,97,104,115,101,100,98,96,100,107,99,110,92,106,100,103,107,103,100,112,107,96,106,100,103,98,96,99,102,104,96,107,108,99,108,98,96,99,105,99,100,100,86,110,98,105,116,108,106,94,102,96,96,118,99,104,90,108,104,105,106,102,107,100,117,104,96,115,95,105,106,90,94,97,100,111,101,112,100,100,109,101,104,99,104,91,94,107,112,111,100,94,115,98,97,95,100,101,87,98,99,108,84,114,106,95,101,99,121,116,100,95,107,97,97,98,98,113,90,99,102,106,77,104,89,109,105,102,114,100,124,95,89,103,110,121,113,103,109,100,102,97,77,98,112,105,110,104,107,96,104,94,102,98,108,102,112,102,102,104,104,118,108,97,92,110,107,96,99,96,96,102,104,96,104,105,111,97,97,102,116,94,93,101,109,95,107,95,101,96,98,127,103,102,88,98,110,107,105,105,100,97,102,100,105,100,107,104,107,105,100,105,117,97,108,100,102,110,117,103,98,104,91,113,99,97,107,99,101,100,109,97,91,97,98,110,87,116,116,103,106,128,108,94,106,88,107,95,102,110,107,91,101,113,80,100,99,107,101,101,93,100,104,96,100,97,123,103,107,102,108,95,106,113,114,108,97,95,108,92,95,90,104,95,94,109,106,101,107,110,108,102,95,105,109,95,103,105,108,97,105,109,109,126,95,106,89,86,104,103,119,95,117,105,98,116,94,94,104,86,111,110,104,100,104,109,101,105,117,105,113,106,109,96,93,99,111,117,102,101,83,107,99,107,112,101,108,100,109,113,107,102,102,98,103,115,107,103,100,108,107,91,104,93,108,100,92,106,100,107,106,105,102,107,90,102,88,96,106,105,98,101,120,89,103,106,101,103,104,100,107,109,105,109,93,101,109,107,98,111,112,109,104,104,98,102,106,112,103,108,115,99,96,100,100,95,101,101,102,104,114,106,105,116,112,105,102,108,112,111,110,96,113,107,98,96,103,109,118,103,103,109,100,107,101,105,94,96,106,107,78,93,107,116,98,110,100,114,87,101,117,99,89,99,110,114,93,105,109,120,93,108,111,100,105,101,94,99,103,108,107,117,106,106,114,101,91,100,113,106,102,122,100,88,100,93,111,103,103,110,106,106,105,96,104,120,106,88,98,101,100,112,104,104,98,102,99,104,97,105,112,105,97,107,102,104,119,98,96,95,97,110,103,99,94,93,107,104,97,100,106,123,114,104,104,109,100,97,104,103,101,136,102,98,110,125,113,109,99,108,117,100,117,104,94,107,109,108,111,108,113,112,105,107,109,104,100,100,115,115,97,113,96,96,109,97,106,108,107,106,109,119,117,107,106,111,99,93,104,108,77,111,111,101,107,107,103,93,98,98,95,135,102,112,80,107,100,85,110,100,111,105,98,102,115,102,83,105,102,99,104,102,110,103,88,100,103,108,108,108,100,110,103,100,112,106,100,98,100,98,102,105,100,109,120,113,111,112,112,95,106,98,102,116,109,107,120,88,97,111,103,98,99,108,104,103,113,113,104,95,103,101,98,116,98,112,106,98,106,110,116,107,111,101,96,105,122,99,99,115,105,104,115,90,98,104,100,104,112,91,106,98,107,109,103,105,91,106,113,102,109,114,100,96,102,115,102,107,97,109,95,105,112,102,110,120,99,100,91,93,109,118,102,95,124,114,127,114,111,99,103,103,98,100,91,96,107,109,107,115,101,96,102,101,110,88,103,100,114,101,103,102,98,111,102,100,107,109,103,100,112,92,114,102,113,106,105,115,109,104,103,103,112,106,92,108,108,112,95,107,105,116,107,131,109,91,97,107,111,105,112,104,91,106,98,109,106,109,112,106,112,125,103,112,103,115,102,104,107,104,105,97,121,90,107,101,106,99,105,103,106,108,102,112,105,114,98,104,92,104,98,106,100,104,99,100,107,97,103,103,100,99,114,107,109,95,102,100,109,105,104,102,112,106,104,105,113,108,98,111,105,120,75,95,102,93,96,108,109,115,93,101,98,101,114,111,108,105,106,106,116,106,104,104,105,101,100,104,84,91,101,101,107,97,108,100,110,104,102,99,117,111,100,94,111,97,112,98,100,108,118,104,102,106,97,113,101,100,103,101,100,110,101,96,98,100,100,102,107,104,114,102,100,99,107,89,95,111,97,101,109,99,108,105,97,110,102,97,109,98,107,103,107,100,104,96,100,107,98,101,100,108,102,109,100,113,101,103,119,112,101,100,117,104,107,108,120,93,97,101,106,94,101,104,118,99,107,97,108,105,99,111,104,111,115,102,97,107,119,103,104,115,91,102,102,113,77,109,105,86,102,99,102,97,107,104,108,108,115,107,96,104,100,98,106,100,99,102,94,101,91,109,102,95,107,102,109,104,96,95,113,106,109,104,91,102,108,101,104,115,104,108,105,83,92,91,101,105,111,103,90,102,106,100,116,111,98,105,94,102,101,101,93,97,99,117,129,116,99,99,105,109,108,113,101,117,99,109,106,111,101,99,101,97,108,89,108,110,111,105,105,108,103,99,102,94,101,99,95,102,96,95,95,98,95,97,107,107,96,100,105,106,106,130,98,102,106,102,112,99,108,95,103,103,107,87,113,102,89,103,96,92,108,98,106,101,95,98,95,103,96,98,99,104,87,109,93,112,110,72,103,102,105,99,96,93,104,91,94,108,111,100,97,90,100,97,103,102,98,99,103,87,92,99,109,105,107,100,102,96,95,109,106,104,102,98,99,92,98,104,106,95,106,95,100,106,98,107,99,93,122,104,107,98,97,110,106,97,115,91,84,102,109,98,107,100,100,99,105,111,91,100,75,106,95,100,114,103,109,106,117,100,83,100,94,104,109,99,97,107,101,100,95,118,94,103,83,108,101,108,94,96,101,101,103,118,98,107,93,94,100,106,135,87,109,90,112,113,110,101,60,94,88,112,102,109,145,105,99,98,108,105,111,131,101,120,99,99,101,103,102,101,106,107,113,103,101,102,100,76,105,103,99,126,106,105,92,108,103,94,117,94,105,109,95,110,112,107,99,100,115,101,90,112,103,88,104,98,111,95,102,105,99,99,109,100,79,102,112,118,99,110,104,97,97,106,103,101,114,94,128,97,109,102,93,99,83,130,101,112,112,93,93,117,109,98,107,98,108,105,105,108,105,108,89,110,105,103,99,105,106,104,111,111,98,107,109,106,96,99,90,109,116,100,96,117,108,105,104,95,101,110,107,98,107,112,106,102,102,96,89,105,95,96,102,109,95,77,92,102,92,104,103,108,104,99,91,98,105,108,107,105,105,96,102,95,106,102,102,100,87,110,93,103,108,98,106,107,97,109,117,119,100,102,113,107,101,98,109,108,102,112,110,107,95,94,91,112,103,104,100,98,96,109,105,105,112,104,117,101,99,104,107,90,115,103,109,107,109,105,97,101,101,101,102,103,95,119,100,101,95,93,101,98,111,109,101,87,97,101,105,96,95,95,103,98,102,94,107,100,102,105,105,103,112,93,110,107,113,100,107,95,99,102,102,113,102,109,105,105,104,105,96,103,100,105,106,99,104,70,109,107,106,92,103,109,92,98,102,106,98,102,122,110,107,106,95,105,99,103,110,110,114,104,99,105,103,96,100,91,101,83,119,102,98,106,101,83,113,102,113,108,108,85,103,94,104,107, +656.1936,98,90,100,96,98,102,103,93,105,95,85,84,105,96,90,105,101,109,108,109,95,96,96,129,95,103,100,115,108,108,99,110,91,98,96,105,111,94,107,104,91,110,69,94,123,98,98,104,101,104,108,105,98,110,108,113,102,98,108,94,98,108,111,76,106,104,107,99,91,102,96,105,102,103,106,106,82,98,130,123,108,102,106,96,89,100,100,107,102,98,101,108,106,106,106,92,109,106,102,101,95,91,108,103,109,96,83,108,99,97,99,99,96,100,109,98,99,98,109,112,101,75,101,102,109,114,104,104,111,102,101,97,98,96,95,99,109,108,100,113,105,103,100,108,101,100,96,107,99,100,96,95,117,91,96,100,103,95,109,103,97,95,116,107,119,97,104,99,96,95,96,110,94,93,103,100,91,96,109,104,108,100,98,123,89,103,99,102,103,102,105,107,119,101,90,102,115,92,93,103,91,109,100,74,103,117,96,105,99,94,100,96,103,109,105,107,100,96,94,110,104,109,93,95,102,100,117,105,100,80,103,104,96,107,103,111,105,103,109,95,98,97,100,111,94,96,103,105,118,114,98,135,104,109,105,100,102,101,107,103,90,91,98,101,98,107,104,85,105,94,105,104,102,105,96,99,97,93,100,101,71,103,91,117,102,107,101,86,95,109,94,102,101,103,107,111,108,106,107,105,105,102,101,108,102,107,111,102,102,113,102,105,109,112,102,100,102,95,101,99,118,100,113,98,106,101,104,93,109,109,106,93,117,103,92,110,100,109,103,101,113,114,111,111,103,97,97,110,105,117,101,88,102,97,94,105,133,108,109,98,99,106,107,101,99,93,92,109,107,109,111,103,104,95,106,96,104,101,100,125,110,94,114,108,107,93,114,92,112,86,110,105,105,101,98,99,107,106,105,113,107,100,96,89,97,110,103,102,110,110,94,94,98,95,96,107,117,101,121,98,95,101,99,99,104,95,89,103,106,110,101,114,96,105,95,100,101,102,103,97,101,115,99,96,100,98,95,95,109,106,106,98,100,98,101,105,100,98,108,105,111,110,100,102,107,108,102,107,100,112,108,88,95,92,105,109,95,103,114,107,93,112,104,102,116,108,110,106,106,100,90,103,87,117,94,104,101,133,94,89,84,97,87,106,94,94,108,103,116,105,99,105,96,97,105,97,107,96,105,91,99,92,101,104,106,93,116,101,104,105,88,104,105,104,106,107,95,106,109,107,95,101,99,89,117,99,105,100,101,113,102,104,112,107,96,98,106,108,99,98,92,87,102,105,99,92,105,111,102,90,93,100,111,107,100,108,125,96,97,106,110,100,102,110,101,104,109,117,113,110,108,97,104,114,102,87,108,108,99,104,112,100,100,113,106,95,93,107,89,115,109,99,98,116,115,101,103,97,95,98,98,101,100,100,99,101,105,111,103,100,107,99,110,110,123,103,95,101,108,95,107,99,102,104,112,100,89,106,104,105,97,102,92,67,111,106,103,105,95,87,111,96,106,100,102,92,113,94,107,107,107,98,104,114,90,101,99,97,100,95,109,107,107,106,91,98,93,93,106,114,104,100,91,107,92,106,111,99,117,102,98,100,100,94,108,106,103,107,93,93,103,108,102,108,98,96,85,88,94,102,97,102,97,104,109,91,101,91,120,105,111,107,108,91,101,96,92,100,101,109,109,89,96,93,114,84,106,102,103,102,111,101,97,88,96,92,98,96,101,108,104,94,105,101,101,109,105,102,115,110,109,106,106,106,91,94,110,106,93,89,129,115,111,86,94,102,102,99,108,106,100,102,110,88,99,110,97,102,100,107,93,104,95,99,91,102,97,96,98,104,103,100,102,102,107,102,99,100,108,93,100,90,114,97,107,120,109,108,100,120,89,99,92,94,118,101,96,101,111,100,100,101,86,109,97,111,91,104,102,94,103,100,97,103,97,92,103,96,109,113,103,103,83,105,112,113,109,96,108,105,97,108,101,101,100,109,100,91,94,101,102,99,87,105,97,98,101,105,97,102,99,117,107,105,103,99,101,100,98,99,87,100,92,93,103,105,92,102,96,106,107,99,101,107,97,86,103,101,105,103,95,106,100,94,116,97,87,96,101,109,112,106,108,99,105,95,97,103,105,94,106,109,109,92,103,81,100,111,105,103,108,109,104,106,96,101,108,103,91,103,108,108,100,84,107,82,109,97,101,111,95,95,112,99,105,105,98,90,100,98,92,101,101,100,104,105,89,103,103,101,95,113,93,96,119,112,107,114,103,98,107,96,104,106,107,99,92,112,99,100,94,109,105,100,96,100,78,101,98,102,110,103,110,103,96,99,102,107,68,99,104,103,105,97,100,97,103,102,112,115,106,104,91,107,104,115,98,84,104,111,106,103,94,106,103,105,100,108,114,114,90,106,96,111,98,92,91,91,104,88,99,103,95,101,107,94,107,99,102,76,95,105,79,110,97,116,99,76,118,105,102,104,108,101,90,91,108,102,113,101,106,104,111,100,100,104,108,109,110,104,95,93,98,88,93,109,96,90,98,117,105,110,109,113,97,116,106,109,102,104,106,104,100,96,100,95,97,98,95,97,98,99,92,99,87,91,107,103,116,120,103,91,105,100,98,112,100,88,96,104,105,89,95,97,100,108,96,86,93,94,94,103,98,110,117,107,112,100,111,71,93,95,92,103,109,120,101,93,96,111,103,99,98,101,100,91,109,100,108,114,98,95,101,94,105,110,110,103,100,105,107,113,96,106,104,108,114,109,108,101,119,110,92,93,99,90,100,103,118,97,101,105,96,117,105,105,103,95,114,114,107,103,112,115,103,110,108,96,105,107,107,106,109,99,101,108,105,87,104,115,109,108,123,100,97,112,103,104,92,101,111,107,108,117,107,102,106,107,104,102,97,118,90,114,92,103,91,104,104,106,96,105,93,100,119,101,102,115,106,101,103,102,92,106,93,101,102,97,103,105,102,109,105,115,96,110,108,99,121,96,104,96,104,109,106,117,111,102,110,98,103,94,100,120,121,103,101,105,95,98,99,111,108,100,105,104,90,105,106,111,99,120,99,107,107,125,101,105,103,122,130,99,103,103,100,96,106,105,105,93,109,94,104,102,102,99,108,99,108,102,98,107,119,106,98,101,101,108,107,109,95,102,94,101,102,101,113,103,109,107,107,104,104,102,113,109,109,104,97,103,102,113,105,113,96,92,110,102,94,94,105,89,101,102,101,95,113,96,116,93,100,113,101,107,113,113,104,104,102,98,103,101,101,106,113,103,107,111,118,103,99,98,102,112,97,105,105,102,106,91,105,106,102,101,109,100,98,95,117,103,100,92,103,105,109,104,102,103,102,92,101,101,96,102,103,97,81,107,114,93,102,99,106,99,106,107,96,125,104,106,84,112,99,96,107,97,106,99,102,99,104,94,106,106,103,107,104,108,108,114,107,106,103,101,97,110,105,104,100,98,109,115,114,95,107,112,94,103,105,99,113,95,99,113,110,116,106,101,102,95,113,97,110,103,99,96,104,98,98,111,105,108,98,98,98,114,95,98,87,104,108,103,102,109,98,113,91,107,108,101,91,90,95,109,111,103,103,87,95,109,74,92,99,97,95,98,102,109,108,109,98,102,102,113,99,100,99,96,111,112,91,109,103,106,95,110,97,108,108,105,98,103,106,94,97,95,108,113,107,111,101,107,109,100,112,102,122,99,104,91,105,94,115,99,84,104,110,87,110,92,105,104,97,99,111,100,98,96,111,105,102,102,103,95,103,113,111,101,104,97,106,96,106,115,103,107,115,91,89,105,110,110,92,108,111,104,93,109,104,100,101,115,98,105,109,95,110,106,88,96,104,104,92,79,112,91,106,105,97,136,111,97,104,108,103,111,100,105,78,100,100,113,106,111,93,94,107,104,108,103,100,102,109,101,99,97,108,125,108,99,104,103,81,106,97,86,100,97,67,105,96,104,103,99,114,92,104,105,132,110,103,89,96,105,119,78,100,107,106,67,91,112,108,100,112,117,108,95,108,109,106,123,101,109,103,101,109,106,101,104,97,99,105,101,94,105,107,107,88,88,111,117,106,111,108,112,99,106,96,102,105,102,99,102,113,111,98,108,101,113,98,98,114,105,102,119,105,105,110,100,107,95,104,98,104,108,100,122,109,101,109,98,102,109,111,107,97,95,99,103,99,103,112,100,108,115,104,113,84,96,89,117,97,103,107,101,111,105,97,84,96,94,94,102,113,93,90,102,100,67,120,97,113,88,105,101,109,115,90,91,89,105,96,103,108,96,89,107,96,102,95,100,110,107,112,104,92,118,105,103,115,88,96,109,101,105,102,108,105,121,97,103,96,96,94,114,106,110,118,94,96,107,107,107,107,102,104,100,108,106,83,95,102,113,107,100,95,93,96,113,103,91,102,101,87,96,106,100,112,98,106,105,103,113,105,96,103,99,107,102,104,94,102,105,103,102,98,100,111,98,99,105,95,102,114,95,72,84,87,106,102,90,95,98,111,110,95,103,101,95,114,107,101,104,99,104,111,111,99,127,95,102,103,103,91,102,103,107,104,102,105,108,107,104,100,97,95,105,112,107,100,108,101,96,93,98,111,101,95,102,113,103,110,102,104,109,108,111,94,104,108,103,104,92,97,113,95,95,107,98,98,100,108,101,97,93,103,104,104,102,106,110,107,106,98,89,111,97,95,111,101,110,93,108,110,100,89,105,99,93,107,96,103,106,105,99,101,101,103,100,102,97,107,99,103,97,103,96,87,94,137,112,102,103,98,101,100,93,104,102,107,104,112,90,108,111,83,110,99,103,119,101,88,107,100,109,102,98,106,100,108,98,79,103,91,113,97,104,109,98,112,98,103,110,99,107,103,104,107,91, +656.33478,103,111,102,102,89,104,102,112,93,103,91,103,104,116,95,95,109,102,100,103,113,93,105,109,100,106,101,114,103,103,99,108,100,86,109,108,113,103,97,110,104,89,104,93,113,105,104,107,105,103,110,98,96,112,115,104,99,95,104,99,110,115,98,95,104,104,96,116,104,96,100,89,100,96,104,107,106,104,114,98,94,101,103,95,108,97,105,99,96,104,104,108,107,106,101,105,105,107,113,96,97,92,108,97,95,95,105,104,93,105,101,101,106,98,103,105,101,105,103,112,98,88,109,118,109,110,105,98,107,110,97,99,101,108,110,118,106,102,96,101,107,72,97,119,107,110,104,93,102,109,92,91,112,97,117,106,98,108,98,110,102,104,104,95,96,111,104,99,106,97,104,105,101,108,100,91,103,92,99,91,117,96,104,99,110,103,94,94,108,95,109,90,106,109,100,102,99,105,109,102,108,110,100,130,98,101,102,111,115,108,94,109,105,118,112,95,100,107,97,107,103,104,89,105,108,91,108,112,104,95,102,93,101,103,113,101,87,105,117,104,95,101,111,99,98,112,103,99,101,104,103,96,100,103,107,99,97,106,98,109,88,97,113,108,101,99,98,100,96,94,113,103,111,83,107,102,110,100,105,94,105,101,107,104,99,95,105,100,103,113,104,98,104,97,108,97,106,106,103,96,101,103,99,104,94,96,103,107,102,116,95,96,94,108,104,103,96,111,102,100,113,92,117,91,105,95,87,98,109,107,104,109,119,102,94,109,90,99,109,104,109,99,109,94,109,104,96,98,104,103,94,112,94,109,100,95,98,107,110,107,104,109,100,101,100,90,101,107,94,109,114,102,111,99,105,96,101,103,92,105,98,96,105,101,94,94,93,109,108,98,105,100,92,109,102,96,100,104,95,106,110,91,101,103,105,109,114,102,105,102,109,90,103,91,91,108,103,102,98,97,100,101,95,74,99,86,109,107,103,92,98,93,105,108,108,105,110,108,99,95,107,101,98,100,105,84,102,98,103,79,88,99,90,99,101,105,93,100,113,111,96,97,106,106,109,103,101,93,102,99,95,113,101,107,99,100,100,107,101,96,93,111,104,92,110,100,105,107,104,102,97,116,108,104,97,109,108,99,99,94,102,112,114,116,113,112,97,106,94,109,98,105,87,101,112,100,105,98,108,90,104,101,100,117,99,106,120,99,91,104,98,101,101,115,110,107,97,108,101,100,102,102,101,97,113,91,92,101,100,118,108,102,112,98,100,110,103,110,100,93,96,104,99,104,96,99,109,99,100,101,97,97,102,104,91,104,102,104,108,103,109,97,102,96,93,109,110,99,106,97,90,105,105,105,111,96,98,104,100,107,125,101,82,106,109,90,96,104,118,99,96,114,99,93,95,96,102,104,114,102,100,102,98,98,105,107,84,106,100,97,114,110,106,110,95,112,115,91,103,84,97,91,102,103,93,90,111,87,111,111,86,91,110,102,106,112,103,99,117,95,112,105,107,95,102,102,103,92,109,109,99,103,101,107,96,108,100,116,105,102,108,116,93,107,108,93,101,98,101,103,105,113,98,106,103,90,119,104,107,101,105,97,102,108,112,105,102,111,111,96,100,97,106,94,86,98,97,107,105,96,110,98,93,119,100,116,110,99,121,118,117,102,101,86,104,106,100,114,109,101,99,98,109,107,109,69,105,112,115,107,107,101,103,91,103,105,106,110,117,111,110,107,97,105,105,106,94,102,116,95,105,107,113,102,72,105,106,110,104,96,91,120,100,100,102,113,103,111,98,101,99,103,100,103,105,109,113,101,108,113,114,106,106,101,104,103,112,111,98,110,110,95,103,105,103,103,102,110,103,102,101,103,105,106,107,106,107,110,110,96,104,100,92,90,109,108,113,105,103,85,96,87,96,100,92,98,101,110,109,93,106,100,104,110,103,108,102,106,107,105,100,108,122,109,107,94,96,106,105,103,94,116,97,100,96,108,114,114,97,102,96,81,112,103,101,108,104,102,94,109,109,106,101,104,98,98,100,103,87,103,103,122,113,103,113,101,98,106,115,109,134,112,96,93,102,104,96,103,94,94,100,98,96,105,107,99,84,99,109,101,109,97,99,106,104,109,101,92,98,104,107,107,110,96,94,100,107,98,100,112,97,107,103,105,98,96,104,117,95,107,107,111,76,108,97,101,97,99,103,107,101,98,102,113,102,109,99,112,101,106,97,104,101,102,100,93,123,100,109,109,103,100,109,91,93,99,110,100,102,88,106,107,96,104,107,98,103,91,99,100,105,111,103,92,101,105,103,102,104,105,111,107,109,112,101,109,112,106,106,109,95,120,104,111,92,90,113,118,114,105,114,105,103,93,112,97,114,107,105,100,115,92,113,118,109,111,93,67,105,116,95,83,98,111,102,99,94,98,95,103,101,93,96,100,96,116,114,101,101,100,105,93,95,101,89,109,90,92,110,116,108,108,94,93,105,95,103,93,109,104,99,98,114,105,106,104,113,102,107,91,103,121,102,103,95,113,97,106,102,112,97,105,94,98,99,104,101,109,102,113,105,94,106,100,103,99,101,91,101,95,117,92,104,107,101,102,109,98,103,102,110,107,104,100,105,103,98,107,98,96,110,108,87,97,104,108,91,92,101,104,90,100,112,103,95,98,113,106,102,101,114,117,107,109,100,104,108,108,109,99,102,83,98,104,97,100,101,100,100,103,104,105,96,103,94,89,101,92,109,101,98,107,104,95,105,96,105,102,95,97,109,101,108,111,115,102,103,109,101,98,98,99,97,103,113,90,110,99,109,101,94,102,109,91,101,97,90,100,79,109,96,94,110,102,95,102,108,100,98,87,99,106,105,110,119,96,99,102,98,107,101,105,91,105,95,95,73,108,102,103,115,104,89,103,73,111,99,96,112,101,104,106,97,105,99,104,94,102,96,124,95,95,94,102,105,91,111,96,87,88,107,114,92,104,104,105,102,105,102,101,103,103,106,98,104,100,115,110,105,91,110,107,84,104,96,105,99,102,113,102,104,101,106,110,98,96,100,94,104,100,106,98,103,110,93,77,95,95,102,99,110,98,107,96,110,99,103,96,110,104,110,100,123,109,108,103,91,100,103,110,107,87,103,114,102,100,95,86,99,108,100,97,107,102,91,104,109,112,99,95,117,99,92,95,95,109,102,110,99,91,91,103,102,113,71,113,117,105,91,104,119,100,91,97,94,99,105,101,97,109,104,98,103,102,88,102,101,95,91,109,103,92,110,103,92,95,99,110,101,98,101,96,97,73,95,107,103,102,101,93,113,105,102,103,106,110,101,101,97,99,91,93,120,101,98,113,109,116,112,102,110,91,108,91,107,104,91,101,98,102,95,117,96,104,93,121,107,94,115,109,103,111,113,121,96,101,104,106,99,107,96,107,107,97,94,108,94,108,103,111,104,108,104,96,111,112,116,142,106,105,105,98,112,102,96,109,115,113,113,105,108,95,88,107,105,105,100,107,102,96,100,95,100,103,91,105,104,91,88,98,103,103,102,93,110,100,99,98,95,104,101,95,97,105,101,107,76,99,98,97,100,108,114,100,113,83,96,90,106,93,104,102,100,102,106,101,98,72,98,99,101,99,102,102,94,101,93,90,111,105,100,109,103,103,117,105,88,120,99,98,109,104,91,110,101,108,93,97,108,95,108,99,109,113,111,105,108,99,103,99,104,108,114,100,102,101,98,99,102,107,101,109,99,96,107,105,95,105,112,91,113,104,98,87,104,91,98,90,106,104,96,93,110,92,93,102,108,70,111,106,101,101,111,109,105,113,98,105,109,109,96,98,97,104,90,99,109,114,100,115,110,89,100,103,110,111,93,105,113,117,115,112,107,94,107,99,101,113,96,105,110,108,89,105,103,100,99,92,107,100,99,99,98,95,93,127,110,85,96,83,95,105,100,107,98,101,101,103,113,98,105,105,105,103,109,108,100,106,93,108,101,99,98,109,96,95,96,98,112,106,100,91,100,106,98,106,106,88,108,95,106,111,87,108,116,107,109,100,108,99,111,95,99,108,69,107,99,109,105,106,106,101,106,101,102,107,100,106,96,98,96,99,106,103,102,109,99,99,108,101,110,104,101,95,104,97,98,108,105,113,102,99,91,119,101,98,112,104,101,94,109,96,103,141,97,111,103,96,102,83,97,104,85,94,114,103,112,112,97,110,104,81,104,93,97,95,109,110,99,121,92,102,107,101,97,91,92,90,107,81,104,117,106,103,108,106,94,98,87,99,98,102,103,111,99,100,92,88,105,96,77,97,95,101,99,95,102,84,100,101,103,92,114,101,97,95,103,104,101,99,100,103,107,103,116,106,106,89,99,88,102,107,84,114,116,101,122,95,102,96,107,91,114,112,101,143,123,99,113,100,106,99,109,105,92,101,92,101,98,107,103,108,105,112,89,87,93,87,99,106,99,99,95,101,98,110,103,96,107,104,108,103,99,105,112,104,108,99,104,94,93,99,99,105,100,100,102,99,107,102,92,106,100,96,99,106,113,110,103,97,97,109,109,97,95,98,111,96,91,106,100,88,102,92,109,107,104,114,95,117,100,91,103,107,91,87,104,76,94,88,123,85,102,109,107,99,100,95,109,100,94,85,108,108,95,95,105,117,101,87,101,94,102,107,99,81,106,107,98,102,104,107,109,93,110,103,97,103,104,104,90,85,116,95,101,107,104,108,87,100,102,109,85,115,107,105,109,114,100,103,101,109,97,104,97,96,102,88,92,116,91,117,104,93,106,109,94,90,91,109,109,116,93,101,96,105,102,116,100,99,100,100,106,107,109,120,97,103,109,93,105,97,98,92,86,97,106,98,102,97,109,94,95,98,108,106,103,96,101,110, +656.47601,94,122,107,91,102,107,103,102,116,89,95,111,106,109,111,108,117,128,108,97,100,112,108,103,94,105,109,102,109,104,99,94,95,102,113,110,100,110,100,104,100,97,103,95,113,116,94,97,103,91,107,105,102,111,99,104,135,97,105,96,104,109,100,101,105,109,104,113,97,115,98,113,93,113,103,104,102,116,103,108,99,114,101,97,102,102,118,103,103,122,125,100,96,93,105,115,103,95,117,101,96,118,99,100,101,84,95,106,99,95,96,94,103,101,107,95,100,100,114,109,106,116,102,110,108,101,103,101,115,103,94,106,95,108,96,108,101,97,91,107,102,104,93,106,90,98,111,102,106,97,95,103,102,96,109,107,110,96,110,108,94,102,116,103,122,99,104,94,107,105,108,92,97,99,90,105,109,110,99,87,102,107,111,110,98,93,102,97,105,102,100,104,85,98,106,98,108,108,115,108,96,110,101,105,87,95,105,107,109,107,96,112,111,108,107,113,91,118,94,99,125,96,104,103,103,119,102,103,113,100,109,100,104,102,107,106,106,120,98,108,105,108,107,85,103,92,107,107,95,108,103,101,107,95,109,104,100,101,89,95,86,100,92,103,90,106,100,98,101,104,107,111,96,111,107,96,101,96,98,106,105,102,112,106,111,108,87,113,111,119,112,94,105,116,108,111,114,94,102,109,120,104,106,95,95,113,110,114,102,113,107,111,98,99,103,111,103,98,97,108,108,96,101,99,101,111,99,112,105,98,113,98,121,109,83,106,106,105,101,89,96,96,94,102,98,109,115,101,126,101,99,103,88,102,96,100,106,99,106,108,105,92,99,79,98,105,108,101,95,99,96,104,101,99,104,100,102,101,93,117,109,110,101,115,81,94,94,87,107,106,105,105,107,105,108,99,105,95,98,109,99,106,104,96,96,95,91,107,109,110,87,106,105,112,105,94,104,100,116,91,106,94,102,94,101,102,95,102,93,98,99,107,101,106,107,109,100,108,88,103,113,92,105,96,96,125,97,108,104,114,100,95,120,99,100,97,111,106,103,99,100,112,94,115,110,102,96,106,99,97,105,98,110,114,109,99,82,104,117,103,94,101,117,93,100,109,110,99,92,114,114,105,117,108,103,113,93,113,99,93,109,110,103,103,87,105,101,105,104,93,84,111,103,109,107,90,101,88,110,102,108,108,98,103,102,92,109,94,104,100,100,104,109,99,97,110,103,99,104,104,104,109,108,94,92,97,113,107,110,104,104,112,101,112,107,91,109,110,100,108,108,104,110,107,102,101,111,101,114,107,89,98,119,98,101,105,100,92,106,109,93,103,108,102,104,102,106,113,104,91,109,109,107,104,108,105,100,101,102,105,100,108,99,96,119,103,106,111,117,112,110,100,105,109,105,105,103,100,103,111,94,112,104,95,117,100,99,110,112,104,106,105,109,106,108,90,95,104,136,126,95,104,104,97,94,92,117,104,105,101,91,111,110,108,110,104,90,111,95,106,112,104,106,113,93,94,102,100,106,102,115,106,93,134,98,103,100,101,103,120,109,99,102,106,105,104,94,102,103,107,91,100,94,102,101,112,108,114,105,99,103,97,117,99,106,110,103,123,95,96,98,97,107,93,101,102,87,95,106,106,107,94,92,99,116,88,105,101,96,106,105,97,89,104,105,102,99,96,109,100,106,111,107,95,102,107,109,108,100,105,104,102,101,112,128,112,99,102,97,96,104,92,90,112,100,101,100,94,99,105,108,96,103,106,99,105,110,102,91,100,97,107,117,103,104,107,91,96,98,122,105,114,106,105,111,105,88,103,96,101,108,77,99,101,101,118,95,108,105,110,102,102,96,101,106,133,89,86,104,98,114,108,99,101,105,109,105,97,111,101,114,108,106,103,93,91,98,99,99,108,95,99,105,101,103,98,99,110,110,91,105,92,102,108,91,96,86,116,81,120,94,97,99,105,72,85,87,101,100,96,99,108,113,108,100,106,101,88,101,101,105,94,106,91,105,105,105,95,99,95,106,100,113,113,104,92,109,107,90,108,107,100,102,93,105,95,101,91,101,98,115,102,110,108,114,101,89,84,107,84,118,107,106,96,96,113,98,105,97,96,110,102,106,104,113,112,75,108,105,101,90,114,116,102,105,114,107,103,101,103,89,95,107,96,104,100,112,97,104,111,114,108,103,103,102,111,108,106,106,102,115,102,93,101,102,93,100,94,91,107,101,102,120,102,99,99,86,92,98,99,101,93,108,103,98,110,92,111,115,95,107,102,91,107,106,109,101,106,101,99,108,96,106,102,98,100,108,105,101,93,95,114,100,97,88,95,86,99,91,97,102,98,104,102,96,114,88,107,100,97,104,97,123,106,107,95,104,89,102,92,98,103,97,102,98,100,98,108,104,106,97,106,108,117,95,101,94,101,101,100,97,107,93,99,98,102,120,107,104,94,104,94,93,112,113,107,94,100,107,110,105,101,102,88,105,110,105,113,118,111,97,75,108,97,99,105,102,105,116,101,101,113,112,103,103,96,96,109,103,102,94,94,104,104,74,108,98,104,104,106,67,109,104,98,100,99,108,107,99,96,102,82,91,103,99,108,101,101,108,95,110,104,104,106,108,109,113,99,102,105,98,88,102,95,109,94,100,105,106,109,103,107,108,100,100,89,106,108,111,103,102,106,105,94,95,102,112,105,94,107,98,97,102,116,102,98,98,97,105,101,119,89,104,107,97,109,93,102,97,95,99,99,106,109,108,111,106,106,101,97,109,112,106,107,121,117,92,106,104,100,94,99,102,100,97,93,112,103,67,94,101,116,121,104,105,93,106,105,90,108,106,112,108,103,99,109,99,100,98,111,105,102,96,110,104,99,97,99,100,111,106,106,111,98,106,98,94,98,107,101,108,105,113,94,98,116,99,111,111,104,89,110,109,90,110,110,98,100,103,91,107,102,102,118,94,91,107,99,101,97,100,100,111,105,101,111,105,97,108,98,117,111,95,97,109,100,117,103,101,97,106,102,101,103,97,91,111,103,108,98,93,104,108,107,102,96,105,99,107,117,101,123,90,100,102,114,106,99,99,95,99,100,109,113,99,104,98,109,114,99,111,108,107,111,109,107,95,102,93,97,112,100,102,96,102,112,98,87,100,95,99,93,98,102,112,107,98,88,105,113,102,108,101,93,113,107,108,106,105,113,106,105,99,96,99,110,108,112,115,92,91,107,95,90,98,101,110,95,103,112,101,103,113,107,101,103,107,100,90,93,102,96,95,108,94,90,102,95,97,109,79,107,110,106,109,106,106,100,97,110,105,101,121,110,108,107,94,98,112,99,106,89,103,103,108,90,112,98,108,123,110,105,101,101,102,108,96,109,97,97,111,110,99,93,87,105,113,109,110,90,84,103,100,112,102,80,92,92,102,106,107,90,109,107,107,99,100,109,94,95,97,99,91,101,102,92,118,101,101,103,96,113,110,108,101,121,108,98,109,104,104,110,97,105,102,94,101,100,90,99,101,103,104,107,107,103,103,102,94,111,113,108,100,104,97,117,103,110,81,104,102,96,102,99,103,113,102,107,104,106,104,96,95,106,111,109,113,109,108,113,99,108,96,101,109,85,110,104,102,103,114,107,123,108,111,93,92,91,117,100,101,86,102,113,101,102,108,97,105,114,109,111,108,101,95,96,106,117,95,102,101,102,102,101,102,86,95,115,106,90,105,91,102,89,117,98,98,98,101,98,106,101,101,98,98,108,110,97,113,103,99,102,83,103,99,101,107,98,109,104,91,96,100,112,91,108,103,99,94,97,106,109,98,97,94,111,98,108,94,100,99,108,104,101,93,113,108,100,102,102,99,102,95,113,85,101,76,104,100,112,103,109,99,94,100,103,100,92,91,91,87,103,91,106,95,96,105,111,98,88,101,94,109,97,96,97,115,102,116,90,106,108,85,113,98,93,98,95,99,108,106,119,101,88,101,112,96,102,93,100,121,103,105,110,108,101,100,103,99,93,113,107,97,112,90,108,112,102,92,99,109,108,98,101,100,104,115,115,97,99,100,94,107,103,100,113,103,114,95,113,108,108,99,113,108,101,88,116,98,100,109,101,112,102,106,89,113,98,108,95,94,106,102,107,94,116,98,108,105,98,102,111,97,78,93,107,109,112,103,99,104,105,103,101,112,107,99,96,97,100,110,95,104,94,111,109,104,102,100,99,115,116,103,97,98,108,105,106,109,97,88,102,136,91,92,102,96,107,94,99,102,102,111,109,105,100,97,95,87,100,87,97,112,94,103,89,98,107,114,99,103,100,106,94,105,105,96,101,87,104,98,103,102,103,100,92,103,96,87,104,91,106,102,106,105,113,127,105,111,104,107,96,100,105,103,96,97,100,107,87,107,100,111,101,104,104,106,119,96,112,91,103,96,104,106,108,95,106,108,112,90,102,112,115,104,118,97,92,102,103,90,97,110,106,102,96,98,110,99,106,104,109,102,101,122,109,109,88,95,102,92,84,104,100,101,103,104,103,107,95,103,113,98,104,105,114,105,106,112,106,104,104,108,98,104,98,101,111,89,96,101,95,115,103,112,94,108,115,102,105,103,102,109,104,105,104,97,107,95,86,88,92,98,104,94,90,109,96,104,88,100,121,103,98,103,99,100,104,106,82,100,105,104,83,101,91,111,82,105,87,102,110,101,96,117,96,90,104,103,105,91,95,97,101,110,108,108,109,102,95,102,96,110,105,113,85,91,106,107,94,94,99,100,105,95,74,115,110,92,104,91,99,105,102,96,106,105,100,109,98,95,85,100,100,96,117,96,97,103,108,96,108,108,97,85,105,95,88,101,91,90,108,104,99,101,89,95,109,98,91,91,93,98,98,101,98,108,92,106,96, +656.61719,107,108,95,77,83,106,121,111,120,92,92,84,95,107,91,104,103,114,101,112,108,73,97,88,109,109,112,106,105,112,105,97,94,110,104,107,113,109,105,98,99,96,113,101,97,104,99,100,100,117,113,106,111,111,101,97,88,96,95,95,102,108,98,93,110,95,107,106,107,90,106,100,94,102,106,101,90,103,109,106,111,105,109,97,105,88,112,104,102,103,98,101,99,99,100,111,104,80,99,114,104,103,94,104,72,104,99,105,96,104,105,97,103,103,104,103,96,113,107,114,98,105,105,118,113,105,104,95,116,97,97,92,109,105,105,102,105,103,94,104,95,107,100,104,101,110,74,108,110,116,98,97,121,93,92,101,98,105,114,106,106,101,91,113,89,92,113,97,105,96,107,96,88,98,101,97,104,105,104,112,104,90,106,104,98,97,110,95,106,132,112,109,89,105,103,118,107,101,104,106,97,106,90,102,97,99,107,109,97,106,110,101,107,103,106,113,114,100,88,88,108,99,99,105,102,101,107,106,114,91,115,109,105,99,99,109,103,108,96,111,96,96,104,92,107,107,96,96,108,103,100,114,94,101,120,92,96,110,95,103,93,104,105,110,100,99,106,93,109,110,101,92,108,99,109,98,109,114,76,98,96,108,103,107,92,103,104,99,91,108,105,106,114,104,93,107,102,97,95,102,81,100,100,111,105,98,115,104,106,114,105,110,118,107,110,93,114,87,107,103,100,101,103,112,99,99,100,90,104,105,101,109,106,103,109,105,90,104,100,106,97,99,109,98,96,94,110,101,102,101,105,91,102,109,113,112,110,105,110,99,98,113,106,96,109,101,104,113,121,107,114,110,100,112,81,109,109,100,98,95,110,106,108,108,95,102,112,95,98,99,107,90,90,104,106,102,101,106,103,103,105,99,93,109,104,111,129,98,104,94,96,98,109,100,101,101,112,106,110,103,106,101,100,110,101,94,100,108,109,121,105,92,96,103,102,99,94,113,91,100,101,105,107,99,96,86,103,104,111,99,107,109,102,97,105,104,99,110,107,101,95,100,106,103,105,107,104,101,99,96,104,104,108,100,101,102,105,104,112,102,108,108,114,94,110,94,100,93,101,102,101,106,95,105,92,111,104,101,100,99,103,103,95,98,100,95,107,99,114,100,114,96,92,95,98,105,88,98,97,82,77,112,105,100,112,113,106,92,111,107,102,111,107,84,105,108,108,102,113,107,103,97,104,96,104,100,110,112,109,98,101,106,106,105,102,101,108,94,121,100,103,109,99,106,101,104,103,112,105,108,121,101,102,103,100,102,109,113,101,100,100,119,106,93,109,104,106,101,102,104,99,87,107,109,109,106,90,102,93,112,100,101,113,98,99,105,91,118,91,100,103,105,105,95,116,94,109,105,101,103,113,102,98,115,84,107,98,90,81,105,110,101,83,106,103,103,105,108,108,91,107,112,106,97,92,94,96,99,112,113,103,108,106,94,110,95,108,108,109,103,101,105,104,101,97,110,103,101,108,89,108,112,108,96,101,101,103,110,103,86,102,111,117,88,94,108,104,106,99,109,103,100,98,114,103,98,103,99,95,91,104,95,101,94,95,100,105,104,89,95,109,92,105,95,97,106,96,108,117,97,97,106,100,113,105,106,93,101,101,126,108,97,100,106,98,109,102,90,99,104,104,99,103,97,100,100,101,109,116,101,108,100,115,99,112,105,99,74,100,108,78,95,93,116,101,95,94,106,94,96,116,92,103,102,98,108,98,98,110,87,105,114,121,110,94,111,104,96,102,109,104,107,95,100,103,88,108,99,93,104,110,103,101,101,94,99,98,99,107,95,106,100,95,96,99,105,111,98,104,102,113,104,100,99,104,99,100,82,117,102,101,91,97,103,100,106,100,104,97,101,94,101,114,94,118,70,95,94,104,104,105,103,102,98,100,113,98,90,97,101,89,94,109,101,107,95,102,97,101,109,95,105,112,107,102,101,101,106,103,94,106,105,99,93,100,98,110,111,111,104,92,102,100,106,98,82,122,105,100,111,100,110,101,100,99,115,93,121,105,92,89,99,103,104,118,114,106,96,93,94,107,99,105,108,112,88,105,97,99,105,113,108,115,106,87,87,95,95,101,110,96,92,74,95,111,95,109,105,102,115,96,104,109,125,106,101,101,96,95,100,108,108,97,106,112,100,104,104,92,100,88,98,99,107,98,100,99,101,87,109,96,103,100,102,86,91,113,107,101,95,100,98,104,100,100,104,106,102,105,106,113,99,102,94,111,125,107,100,93,110,100,103,96,115,88,100,107,107,94,88,101,112,92,98,105,96,105,99,103,103,107,106,109,120,117,94,92,106,106,100,110,104,104,103,94,99,110,97,105,103,113,98,99,102,100,104,93,96,105,103,100,138,94,105,103,92,98,91,101,91,95,103,102,103,109,93,94,100,103,113,100,84,99,101,94,108,98,94,100,95,102,111,109,95,105,96,108,111,117,110,103,102,106,116,95,109,108,99,120,103,88,98,122,93,100,97,103,103,86,99,107,100,93,102,103,109,92,108,95,94,97,106,103,91,89,92,100,111,108,108,104,95,102,107,95,106,105,98,108,102,95,105,105,107,96,101,109,109,95,102,110,98,106,99,94,95,99,108,104,107,101,106,103,100,95,98,94,88,113,100,103,100,101,98,109,114,126,91,93,111,115,94,106,113,87,101,92,98,117,93,106,107,94,104,104,110,111,117,108,96,101,96,103,111,104,112,101,102,112,88,117,112,111,97,97,105,104,112,111,102,98,108,106,112,110,97,98,104,109,92,105,86,111,103,99,100,117,98,102,101,86,110,99,97,107,113,107,99,95,103,104,105,108,95,105,94,101,95,105,105,104,104,99,92,106,92,99,102,118,100,104,103,110,73,101,101,104,102,102,92,92,98,95,100,95,95,94,102,101,104,97,97,97,106,96,98,89,105,95,101,101,107,102,94,111,101,99,104,110,93,104,100,107,102,87,122,100,103,105,115,95,96,100,107,106,101,108,102,101,102,94,101,95,95,94,105,107,93,106,83,106,110,101,103,95,102,112,97,94,96,100,87,100,99,110,108,104,98,99,98,129,101,99,105,107,99,102,105,105,99,105,99,100,103,102,90,99,100,104,102,113,103,105,103,95,98,100,98,103,112,109,96,117,95,104,101,106,107,101,104,95,92,99,100,97,104,94,104,107,88,106,110,95,87,97,100,104,82,103,100,86,117,88,102,102,105,112,99,96,92,93,93,91,101,105,104,103,103,100,97,105,98,99,102,107,97,101,118,108,95,101,94,98,108,98,104,101,84,100,105,95,95,100,100,98,109,100,111,112,95,98,115,75,102,97,105,100,112,109,99,95,105,97,109,103,109,105,93,117,105,85,101,110,109,91,99,106,95,99,120,102,93,104,103,97,129,91,94,96,94,102,106,109,105,104,94,104,117,114,85,101,113,95,110,105,105,102,101,79,108,114,107,90,104,103,104,86,108,109,102,101,95,105,92,100,93,125,104,98,105,96,116,111,99,102,106,88,99,108,107,109,108,96,116,97,108,100,100,101,99,86,95,103,95,97,107,95,94,102,110,87,103,103,105,100,99,102,103,105,103,93,100,95,114,108,111,103,98,108,103,98,101,101,108,101,84,97,104,123,106,98,106,112,107,96,99,96,100,103,103,99,108,109,98,96,105,102,103,108,96,109,103,104,105,103,85,97,88,101,97,103,104,115,105,97,97,99,104,95,96,104,97,95,96,88,100,109,98,92,110,97,103,98,113,118,107,106,103,109,106,104,97,97,96,100,105,106,112,96,108,112,95,100,114,105,101,111,115,109,90,103,96,129,112,110,98,106,104,101,106,108,106,104,82,113,111,96,98,94,100,103,114,98,112,92,105,127,102,104,99,103,112,105,92,106,102,96,104,116,98,96,108,87,104,97,108,108,103,97,90,108,100,116,108,109,94,98,110,96,99,81,97,91,100,101,93,86,94,106,114,102,104,102,106,109,99,106,105,95,107,109,101,119,99,115,105,105,117,102,85,109,107,95,102,97,104,104,104,104,109,84,108,100,112,94,117,99,107,94,106,102,88,111,105,122,102,103,95,103,107,98,95,96,107,91,104,113,106,101,106,106,116,99,105,112,105,98,99,100,95,105,91,108,103,77,121,107,98,113,111,85,84,99,93,103,100,96,107,92,91,103,99,94,96,104,103,113,106,100,109,91,103,104,108,99,108,113,101,105,101,98,116,109,96,106,98,94,94,106,104,87,106,101,101,101,102,101,97,104,106,110,89,100,100,120,111,115,108,95,104,109,94,99,100,115,104,107,103,107,108,94,93,105,124,80,107,99,103,92,98,93,105,109,103,98,111,93,99,92,94,97,89,97,106,112,107,86,91,105,109,106,115,93,97,101,96,102,88,95,105,101,100,100,99,100,92,95,100,95,101,101,102,103,104,102,106,105,112,102,96,100,107,99,104,104,98,91,107,107,95,126,100,88,127,106,95,106,111,100,87,85,107,99,109,101,95,105,114,109,91,103,105,105,100,99,91,101,91,91,103,102,109,110,110,115,101,99,100,84,103,102,104,108,105,92,95,106,104,98,92,99,98,106,109,105,103,95,100,108,107,105,95,102,110,115,66,116,90,107,100,96,102,102,113,112,106,106,104,97,103,90,90,117,99,121,97,100,101,108,110,100,106,119,88,104,109,109,99,104,88,106,97,115,101,113,104,92,102,102,97,96,104,91,98,93,94,90,94,109,93,110,101,98,107,102,101,94,91,100,104,109,111,99,96,91,116,102,100,102,103,95,101,110,109,106,115,99,100,108,98,101,105,102,105,105,100,103,98,98,92,111,102,97,94,87,88,105,106,107,83, +656.75842,115,109,104,100,82,95,96,132,103,98,110,98,92,109,105,95,97,127,112,95,103,102,96,110,107,98,91,106,113,104,96,103,106,96,118,99,98,86,103,110,100,102,99,71,102,107,91,100,107,108,114,107,116,105,102,99,90,90,102,117,103,105,97,89,109,102,105,96,101,110,94,113,100,102,106,107,107,94,105,108,106,117,96,99,98,87,91,91,100,96,94,116,100,99,107,102,106,113,99,93,99,109,106,96,104,86,112,115,108,112,113,100,91,99,112,103,100,114,103,87,111,113,112,111,108,105,102,99,108,111,109,95,111,95,90,104,101,96,99,96,106,111,94,100,103,106,100,98,95,107,96,110,95,87,78,104,100,109,94,102,103,106,96,110,99,103,89,107,99,100,99,104,97,99,99,96,110,76,115,97,104,108,95,105,94,81,106,96,99,121,105,114,109,104,92,99,100,109,95,104,96,94,100,106,97,107,97,113,108,104,106,106,114,100,105,94,100,109,95,102,110,113,105,107,102,104,100,109,98,93,107,106,120,95,108,103,102,106,97,110,99,93,108,98,100,110,115,105,106,96,103,101,97,112,83,114,109,114,114,108,95,114,110,104,92,104,108,109,107,104,94,97,107,101,102,104,105,122,116,101,103,93,119,98,92,104,85,100,117,109,105,95,108,103,112,94,106,112,99,91,108,104,101,106,92,114,109,110,103,113,91,106,106,115,104,112,106,98,102,99,118,94,94,104,99,93,102,80,95,98,102,92,114,102,105,105,100,109,95,95,104,95,100,83,101,111,105,114,99,116,96,99,109,114,105,108,92,94,97,107,109,90,95,106,99,98,103,106,103,91,117,100,96,100,101,90,100,101,98,104,100,114,101,107,99,104,93,113,79,97,95,89,97,111,98,106,98,96,100,106,105,101,86,98,99,92,88,111,119,106,107,132,98,100,104,110,109,101,96,100,112,102,95,98,101,99,98,98,113,126,94,96,100,103,105,105,88,133,109,98,120,112,88,103,116,106,98,96,114,108,84,106,68,97,95,98,100,92,117,98,96,102,106,104,101,110,105,102,99,97,104,109,94,107,103,96,95,121,104,92,108,106,106,102,108,105,91,110,103,103,109,109,101,88,105,103,108,113,110,95,110,91,90,96,104,103,88,90,105,99,114,100,89,107,110,103,96,102,105,92,117,103,96,102,105,86,110,102,103,102,101,94,112,108,92,108,105,70,107,111,109,117,91,101,102,98,102,101,101,105,97,102,110,106,118,114,109,104,98,103,101,99,105,111,103,99,112,91,104,100,94,108,99,108,82,121,94,113,117,111,107,106,106,104,99,105,109,117,91,103,107,100,100,99,106,105,91,95,106,107,98,104,105,95,111,96,100,117,97,102,96,102,113,110,92,94,95,97,103,103,105,104,105,102,114,111,101,106,105,69,102,101,104,125,88,110,103,97,105,100,104,85,105,104,99,106,116,103,98,111,92,113,106,103,107,106,113,109,103,117,112,92,108,107,115,98,115,116,99,115,113,99,105,108,106,110,100,91,100,94,94,98,111,99,108,99,106,121,95,102,109,116,107,107,106,109,107,102,97,92,110,99,103,91,108,107,96,101,98,108,95,100,104,99,109,110,95,101,105,85,102,103,105,95,99,104,92,101,108,102,99,108,103,97,111,102,100,102,100,91,110,104,106,110,98,98,74,102,96,112,108,102,91,91,103,99,104,94,90,100,104,107,101,110,106,92,101,112,100,103,106,104,105,97,111,98,102,114,99,108,98,89,98,101,96,104,111,103,88,113,109,111,103,100,92,114,101,112,111,105,98,103,101,106,100,85,90,100,91,91,105,107,100,118,99,105,115,109,111,101,104,99,101,103,96,114,103,93,105,105,100,108,107,105,118,100,108,98,116,91,112,110,103,105,113,108,95,90,100,98,114,107,106,99,104,109,103,106,101,96,102,107,99,94,107,79,91,114,108,110,124,105,101,103,108,114,98,93,104,86,103,104,100,103,108,111,101,104,111,110,110,109,108,111,99,101,95,91,105,93,117,106,108,113,112,100,104,101,108,71,108,104,105,99,100,87,113,110,107,104,107,106,113,118,106,87,108,104,106,106,103,94,100,108,112,103,104,102,120,103,110,106,103,107,102,107,103,98,93,98,114,90,102,107,117,104,106,101,103,105,111,104,102,107,106,104,90,94,104,96,105,91,112,96,108,104,111,113,89,112,124,95,99,104,84,101,99,108,99,107,95,103,99,108,96,109,94,105,92,106,106,105,82,87,128,97,94,110,107,113,98,101,107,105,111,100,97,95,94,97,113,89,119,94,109,106,99,101,103,99,101,103,120,96,90,95,112,106,103,104,125,112,106,106,102,109,105,104,104,104,122,106,113,111,88,97,91,102,107,103,112,115,84,112,96,101,108,112,113,101,99,96,104,94,103,95,108,115,94,100,98,95,93,102,100,93,96,97,113,99,114,104,94,96,88,93,100,95,104,106,88,101,91,95,100,93,103,103,65,100,92,113,104,97,99,103,90,97,101,104,103,92,96,106,102,106,103,103,99,98,109,95,99,82,110,95,111,102,100,106,87,101,90,99,80,108,94,101,108,104,103,97,105,106,112,99,96,95,101,105,92,97,106,99,95,109,94,94,121,96,91,102,101,94,94,91,81,99,110,96,102,94,103,99,100,77,104,104,91,83,93,93,97,97,90,96,113,84,97,106,96,108,104,91,99,119,104,97,95,102,98,108,102,108,99,93,99,104,102,106,119,111,110,86,103,102,108,115,102,100,92,91,92,106,104,94,102,112,99,108,112,105,104,84,95,99,107,104,103,97,98,100,99,104,108,72,98,98,90,100,98,98,108,99,100,100,113,96,99,100,113,102,91,107,104,96,95,106,91,109,106,112,93,113,111,103,98,101,92,100,96,103,98,83,92,99,92,101,109,110,100,109,120,95,92,98,91,95,97,88,105,93,97,103,96,107,99,103,98,90,106,104,101,95,99,112,101,107,96,117,106,103,94,104,107,105,109,103,113,105,97,104,101,103,110,101,87,103,120,107,104,94,78,63,106,97,101,118,110,97,105,98,119,99,91,99,94,92,114,108,86,113,101,112,91,117,103,101,108,107,99,101,107,100,98,100,116,90,102,91,96,101,73,98,113,110,89,103,126,117,102,116,98,96,90,84,104,110,101,104,92,97,106,80,95,93,96,111,106,106,92,104,90,109,95,102,106,98,99,98,103,98,98,108,98,113,97,110,86,91,112,99,108,109,93,105,97,98,102,108,104,106,112,102,112,115,115,91,102,95,114,93,94,112,99,104,93,95,102,105,97,106,93,96,96,112,105,102,102,101,85,98,102,106,110,104,113,106,93,96,110,104,111,91,95,104,109,99,92,102,98,100,97,121,95,92,113,96,97,117,96,101,91,97,112,102,100,87,108,115,110,98,84,90,107,100,104,88,104,99,90,101,79,103,111,102,99,108,95,95,99,96,87,106,99,96,95,97,102,92,106,96,101,97,86,98,105,104,94,101,94,100,101,102,121,103,90,103,92,108,110,91,73,94,102,103,96,94,105,102,104,101,101,98,95,102,103,99,94,93,94,96,102,104,106,93,95,112,106,102,98,106,105,99,101,94,93,106,98,103,94,95,95,89,99,104,89,100,94,112,91,100,93,95,84,97,96,104,105,97,125,94,87,97,112,88,104,108,107,98,95,79,93,102,105,94,99,103,113,98,105,98,102,100,103,99,96,102,103,93,106,89,90,90,91,95,101,103,98,99,87,104,98,83,92,104,101,113,94,100,107,102,98,102,99,100,92,82,105,107,90,124,97,98,90,101,103,102,92,102,94,103,100,97,100,98,105,96,102,90,100,100,97,96,98,106,108,96,86,98,84,106,99,103,101,97,90,98,108,101,114,94,107,90,99,107,97,96,95,91,99,98,84,97,103,95,116,95,92,105,93,96,97,100,94,99,100,109,110,99,95,100,89,111,104,99,106,106,98,104,111,102,110,94,108,95,103,88,100,91,99,102,106,96,95,85,103,112,108,102,92,93,107,92,97,101,91,96,89,103,103,100,83,89,100,95,90,105,92,108,110,101,94,100,98,102,95,91,104,96,94,102,87,96,106,97,94,95,100,106,94,96,101,91,70,93,120,96,89,99,101,100,109,107,109,109,96,101,100,99,109,99,101,102,102,90,99,91,88,102,102,94,105,103,105,97,109,106,102,97,88,101,105,107,100,93,94,83,82,90,110,110,103,106,74,107,97,98,87,119,104,95,107,99,95,102,98,97,85,101,99,102,108,103,98,106,95,102,98,102,98,98,102,80,106,99,111,87,94,112,83,107,103,105,98,101,106,92,91,98,99,97,102,105,75,100,103,120,100,97,101,105,121,99,98,110,108,102,88,101,92,105,97,92,102,92,95,101,90,95,99,103,98,87,96,96,95,104,81,101,96,92,95,113,98,98,88,104,98,100,94,109,95,103,110,125,101,100,91,98,101,87,93,88,94,95,86,102,90,96,114,103,96,100,110,92,96,95,104,98,101,109,96,105,100,112,114,96,106,106,104,93,93,97,97,93,105,96,104,129,102,120,110,98,102,110,100,114,112,99,105,92,109,95,109,94,99,106,109,93,88,99,98,87,93,102,91,109,91,87,94,84,97,92,96,116,97,106,99,104,101,102,101,103,101,102,103,133,112,95,120,101,105,96,86,83,97,98,94,94,109,97,102,94,106,99,97,102,97,109,91,95,100,99,97,101,107,94,113,84,100,96,125,96,105,101,95,109,99,97,116,90,104,94,109,108,93,95,108,92,93,106,103,104,107,108,84,106,121,87,87,108,101,95,121,91,104,103,106,120,95,87,102,98,96,117,115,89,101,116, +656.89966,103,101,110,97,100,110,113,91,93,99,97,88,106,91,102,90,101,94,97,106,100,110,94,104,107,107,99,93,96,105,104,105,96,102,107,109,113,106,106,101,111,90,104,94,98,111,101,104,86,114,96,103,99,102,105,113,70,104,98,103,113,103,96,110,94,107,95,101,90,104,109,113,101,104,96,104,91,105,113,104,109,70,102,101,104,94,97,106,95,107,108,105,80,99,101,92,103,94,103,100,91,107,96,88,95,95,97,99,108,101,101,102,109,96,98,111,99,94,89,90,75,98,107,104,91,113,95,101,94,100,88,116,105,97,108,96,86,95,93,96,108,103,94,70,93,93,85,106,96,95,97,101,105,98,108,105,92,98,88,98,107,99,103,97,105,95,99,113,101,102,97,108,100,100,106,103,105,96,107,104,99,107,95,101,105,100,105,99,109,100,104,106,101,79,104,109,98,95,96,109,97,112,108,101,118,90,99,90,104,101,96,109,112,112,100,101,97,97,100,110,104,101,98,95,98,103,118,101,108,92,103,101,90,93,98,99,92,116,94,100,97,100,107,92,102,101,101,100,95,100,93,108,101,99,104,99,121,104,85,105,99,98,98,101,100,104,107,100,106,103,110,119,110,101,97,117,102,110,100,96,87,90,108,106,104,102,87,104,113,95,105,111,92,99,98,107,119,105,102,106,91,105,90,98,98,125,100,91,100,101,84,120,96,100,103,95,96,95,98,100,102,134,99,99,107,95,100,101,105,98,104,91,104,94,102,84,116,105,102,100,95,101,95,100,103,106,97,95,99,83,101,106,99,101,101,108,93,101,94,102,100,105,92,110,91,95,94,104,93,106,124,104,98,103,99,94,107,106,107,101,87,82,121,111,105,100,95,95,106,102,120,100,99,92,90,114,100,106,109,98,94,87,88,98,107,108,106,104,109,101,91,97,97,105,80,92,91,114,108,98,95,98,96,105,92,92,100,96,91,104,91,98,105,97,105,96,95,100,108,84,108,100,100,100,104,103,101,104,99,114,88,105,109,98,105,108,116,103,97,98,94,91,105,139,98,108,140,98,105,101,95,112,99,100,109,101,103,103,69,97,104,106,103,104,102,107,113,90,97,95,110,102,98,101,103,105,92,102,97,95,113,108,113,108,84,109,100,104,113,109,109,98,102,87,103,96,104,105,112,94,114,99,98,101,104,97,102,106,103,114,93,100,92,88,112,94,82,101,114,101,98,102,99,106,110,93,107,97,109,95,96,100,110,96,114,103,91,95,91,95,95,96,92,98,102,99,114,101,96,104,102,99,92,103,106,102,96,96,111,95,98,96,95,105,102,98,108,104,108,105,105,105,96,99,102,99,103,97,99,99,100,98,105,95,110,102,91,97,77,112,94,101,112,106,103,102,104,100,98,106,94,106,101,113,100,105,116,103,110,103,105,112,119,104,97,101,100,106,110,78,109,108,98,95,104,95,102,103,104,109,94,109,107,101,87,117,101,113,100,99,104,99,113,105,106,102,98,108,99,115,106,102,106,97,96,104,99,113,97,95,102,112,116,104,97,105,94,103,104,106,109,99,90,101,100,104,112,118,98,98,103,109,99,103,99,89,90,99,108,94,100,120,97,98,98,102,103,106,99,93,99,107,107,111,101,86,101,92,112,101,119,97,95,98,141,116,104,92,105,93,95,98,112,98,101,91,110,103,108,112,104,97,114,103,98,101,104,106,92,101,101,108,103,105,102,96,132,96,120,109,100,113,117,100,96,98,105,106,91,107,105,98,108,103,98,105,109,102,105,98,98,103,99,104,102,103,90,88,107,115,97,106,102,103,92,102,99,105,84,104,124,109,101,95,101,103,102,101,113,94,99,108,101,97,94,106,102,103,104,115,105,107,104,100,96,109,96,110,102,109,93,97,120,105,87,94,100,103,94,114,102,106,105,97,98,99,115,110,102,104,98,107,104,95,102,99,105,107,99,102,107,98,99,109,110,99,103,95,93,68,109,111,92,104,109,108,99,106,100,104,105,108,94,103,103,101,105,102,90,113,100,114,109,110,106,92,102,108,107,108,114,103,102,101,91,95,107,102,108,104,108,101,118,94,91,100,81,99,110,106,106,101,96,103,107,81,104,92,101,99,106,103,108,104,113,112,104,96,95,111,102,101,92,105,98,97,95,107,97,108,102,109,101,103,86,97,113,95,105,105,98,104,99,93,115,103,101,115,96,102,105,97,97,107,112,106,83,95,112,101,90,102,107,95,103,97,105,103,97,105,99,95,111,101,125,99,96,99,93,102,94,91,106,97,105,95,102,99,106,101,113,106,100,95,105,96,99,100,92,92,103,99,109,92,100,103,102,108,105,106,109,109,113,106,93,108,116,99,92,108,100,104,104,113,102,120,105,104,105,93,84,107,111,102,98,101,95,99,102,101,95,108,99,107,103,110,102,113,101,102,90,102,114,97,108,101,109,106,117,91,98,124,117,104,105,113,97,92,102,94,91,93,100,116,88,104,107,97,105,103,95,99,95,102,100,89,100,103,99,99,101,95,103,105,107,98,95,87,105,95,102,113,96,100,91,103,83,102,105,88,109,95,78,111,95,95,94,104,98,101,103,106,99,107,96,107,105,107,108,104,97,105,103,100,109,103,102,104,106,94,107,98,108,110,94,107,100,102,113,98,96,96,106,77,100,106,112,106,100,96,106,112,109,96,89,101,98,106,95,106,101,65,106,101,105,101,108,113,98,92,98,99,110,108,117,116,113,108,97,91,122,102,104,102,105,96,98,97,105,95,100,105,95,114,109,101,97,114,102,114,110,89,114,100,99,98,106,107,111,98,110,106,107,108,122,102,103,96,100,117,104,97,103,105,104,105,97,98,109,106,116,99,105,106,99,97,107,100,105,112,107,109,95,98,77,105,98,108,105,100,97,105,101,93,108,92,95,95,98,105,106,110,100,101,106,103,109,120,97,93,103,104,96,105,105,107,102,93,105,108,115,116,105,100,100,106,108,106,93,100,113,101,101,110,113,105,110,99,98,94,103,103,102,107,107,94,103,99,99,113,98,109,93,107,109,97,106,101,107,103,108,110,94,95,108,97,117,113,105,120,116,100,100,117,98,95,107,95,103,87,101,89,94,105,95,104,81,100,119,107,98,104,109,91,102,102,104,98,105,95,105,102,105,95,96,105,104,100,99,104,98,101,102,106,107,98,101,128,93,110,98,106,100,94,104,100,116,106,106,95,123,108,110,115,110,103,98,103,115,98,82,97,90,114,95,91,105,109,104,105,103,90,112,104,104,104,102,110,103,105,115,111,102,110,96,106,87,101,99,97,97,108,104,105,101,92,102,106,99,98,96,97,106,112,104,111,94,103,109,95,100,110,94,93,99,94,108,101,99,103,100,104,110,100,101,101,112,66,109,92,94,97,101,101,101,105,102,102,107,108,99,92,90,104,93,86,100,95,102,105,97,131,128,89,94,100,99,99,108,99,101,105,103,98,107,115,92,95,107,95,108,76,102,112,100,107,94,105,107,119,88,100,104,98,108,115,106,92,105,108,105,100,112,98,110,115,105,105,110,96,114,108,106,101,127,96,92,98,113,102,81,101,113,101,100,98,105,113,105,97,99,103,108,104,99,97,91,123,86,104,100,113,99,99,109,110,100,112,93,100,109,112,112,115,98,111,100,103,99,103,108,99,109,100,102,97,108,89,102,105,110,87,104,96,108,99,101,79,103,95,96,91,97,108,117,94,107,104,117,100,107,89,100,104,114,102,110,99,100,95,100,99,104,102,93,108,100,102,113,98,116,98,103,98,110,106,100,90,94,122,82,104,97,103,97,108,96,64,105,104,93,106,102,110,102,106,106,104,117,105,95,102,100,93,99,98,102,99,113,98,96,99,101,107,110,118,102,99,112,86,101,103,101,108,99,109,107,102,99,92,98,110,101,112,101,107,98,94,108,96,110,118,104,109,107,95,113,116,95,101,119,91,101,109,120,86,104,104,102,133,100,83,92,101,96,98,111,93,114,105,102,103,102,98,113,110,105,108,107,98,97,96,84,103,91,106,101,116,98,103,109,95,89,110,85,71,104,94,97,102,106,94,59,104,100,106,100,99,94,104,104,94,109,104,105,116,90,106,109,98,110,79,97,113,99,109,114,101,88,101,106,116,87,100,97,104,95,108,101,109,111,101,99,113,104,96,100,102,107,100,116,94,96,112,94,91,87,102,100,106,108,83,104,106,107,97,96,119,100,116,100,94,100,99,97,90,105,94,109,101,105,103,104,98,101,108,107,107,101,106,120,98,98,107,117,109,99,96,98,110,79,104,99,109,105,91,96,102,106,92,101,117,109,106,90,110,98,109,103,101,106,108,103,104,91,107,103,112,105,99,84,90,98,107,101,96,102,122,100,115,107,97,118,106,87,115,80,97,99,97,102,108,87,98,111,91,92,99,102,103,91,87,104,100,95,94,101,99,100,97,112,110,103,109,96,101,93,115,103,96,105,97,90,99,104,99,100,115,108,99,97,108,91,97,105,95,108,102,96,101,91,105,117,95,91,108,105,93,88,96,107,99,95,102,103,102,104,95,133,98,94,82,94,104,102,99,99,98,105,105,105,101,111,101,116,91,92,102,121,99,96,97,100,105,88,108,113,97,93,98,93,110,95,105,103,87,99,107,94,88,114,104,95,98,101,106,103,107,102,101,108,94,102,111,97,99,95,110,107,98,107,102,115,98,96,102,95,103,105,100,104,91,100,101,101,112,111,90,94,135,100,100,109,122,108,96,100,99,94,97,102,100,95,110,95,105,107,109,108,105,104,100,103,97,111,101,116,109,84,100,94,110,83,97,95,115,104,94,109,83,99,82,104,101,100,90,115,105,102,99, +657.04083,96,104,95,99,94,96,106,98,104,107,101,110,105,112,101,99,95,112,106,99,108,110,117,114,108,93,112,105,116,106,111,105,98,99,110,108,105,90,103,109,98,110,104,103,102,100,108,111,108,101,98,109,94,116,109,97,98,106,98,104,107,103,104,96,100,103,99,109,115,106,95,99,94,94,106,103,88,93,94,109,113,96,113,100,106,88,87,95,86,106,106,102,108,109,101,86,99,96,96,101,125,103,110,95,94,101,99,100,109,106,100,109,120,100,109,108,94,106,105,91,104,101,94,96,105,99,84,104,105,97,105,127,96,97,102,105,105,102,92,93,101,109,102,110,100,107,117,98,96,116,110,113,109,95,111,91,105,93,98,114,101,95,106,105,93,89,108,103,101,103,108,103,104,104,96,98,97,89,101,108,106,109,96,83,114,101,103,90,104,96,101,102,99,110,99,105,94,99,103,110,102,122,93,103,101,96,111,96,110,86,90,95,106,105,104,101,106,103,96,103,102,112,105,104,102,106,101,108,94,104,101,107,101,101,95,93,78,102,92,102,92,100,102,94,97,97,100,100,109,103,96,100,96,94,108,105,89,90,101,110,112,110,106,118,91,109,98,100,100,111,95,99,108,100,95,114,101,103,79,93,96,108,105,93,111,99,101,119,105,105,103,100,99,101,111,106,101,102,112,99,94,90,97,106,95,110,124,97,103,103,96,95,94,107,94,98,111,99,98,104,98,94,118,94,112,96,98,106,105,110,94,94,106,106,101,97,106,108,96,104,106,109,115,96,99,112,104,97,101,102,109,112,117,119,103,101,102,106,112,108,104,105,100,98,100,89,84,106,101,100,97,97,105,113,84,94,102,100,103,98,106,103,103,107,96,99,91,100,100,76,107,89,99,113,105,106,106,103,94,105,101,93,98,90,93,105,103,105,101,105,92,98,99,98,107,122,88,100,105,102,102,103,99,107,105,95,106,90,95,106,97,103,110,100,104,88,98,100,108,94,107,91,107,108,103,101,110,99,109,103,97,109,94,100,104,110,97,94,100,110,97,94,105,102,108,110,97,110,107,96,106,109,107,103,100,102,99,100,106,102,95,99,111,106,97,100,96,106,101,108,96,109,111,110,104,105,98,103,101,109,101,104,95,115,97,97,97,74,99,93,109,103,96,76,109,107,113,101,100,91,101,117,110,106,112,106,102,110,92,113,100,102,97,98,109,107,105,89,103,108,96,113,104,108,127,114,95,111,111,107,104,94,106,102,110,97,107,94,99,113,64,99,116,103,116,109,95,99,113,101,90,98,112,114,98,100,114,104,101,109,116,98,77,102,103,104,89,109,99,120,104,102,97,116,118,99,104,100,113,105,90,109,99,105,92,111,106,112,109,102,101,89,112,98,94,95,119,88,108,95,124,99,107,105,114,105,104,94,105,94,85,100,122,107,110,102,96,93,109,109,94,96,100,102,100,98,113,96,94,92,101,108,87,116,101,115,103,113,113,101,113,106,98,100,105,113,104,101,112,109,100,96,105,98,82,98,98,105,114,93,106,106,117,95,86,80,99,99,107,106,115,106,104,104,110,104,75,94,129,103,87,104,80,104,98,92,111,111,138,97,87,109,107,95,100,118,104,112,91,107,117,93,87,109,105,91,98,105,95,109,107,111,104,101,104,118,113,94,102,111,111,101,107,102,105,99,114,115,101,103,114,105,107,96,116,100,95,102,118,94,94,103,83,107,98,110,95,103,97,92,98,98,103,105,97,102,101,106,113,102,97,100,106,119,95,114,99,112,110,108,104,100,108,99,99,111,88,105,104,112,97,99,100,99,109,105,107,110,93,115,100,109,103,101,109,103,101,111,105,104,102,111,114,104,105,110,101,108,104,96,106,106,103,101,118,110,111,99,113,112,102,97,95,104,107,95,107,89,113,91,106,99,87,109,101,104,104,94,104,102,106,108,91,99,100,81,100,105,110,90,102,108,96,100,101,105,105,104,102,102,108,114,119,108,102,92,91,122,112,106,103,113,107,100,104,107,100,107,104,123,97,99,95,132,111,105,99,96,110,92,115,102,108,96,102,117,99,82,97,101,96,91,97,102,91,100,113,98,102,102,93,103,101,98,90,100,101,106,98,109,98,101,99,84,99,120,112,110,112,102,94,107,122,120,116,110,109,104,101,105,104,106,95,96,94,106,87,103,82,106,93,116,114,94,102,123,100,108,100,91,99,100,104,113,117,93,108,102,100,109,107,99,105,110,102,100,94,104,98,106,109,113,111,109,106,96,106,101,108,92,110,108,104,96,100,110,124,105,102,99,108,113,96,113,101,114,104,105,112,107,100,109,106,97,105,96,97,118,104,103,105,107,91,110,104,116,105,110,99,110,91,98,96,104,101,112,104,107,116,116,103,112,102,102,97,88,114,98,104,83,104,125,98,111,108,100,95,101,115,91,98,103,103,103,105,110,106,101,105,100,100,121,101,95,102,103,113,104,110,102,116,96,104,99,99,76,94,100,113,94,109,116,95,107,112,93,114,108,96,106,103,110,116,105,105,103,105,101,93,99,100,100,103,107,106,112,98,107,106,88,92,100,104,105,100,107,89,107,99,102,100,101,105,99,106,112,108,112,116,107,108,91,117,96,112,102,97,98,104,139,100,113,104,106,110,102,110,108,111,99,106,114,90,114,103,106,94,84,103,98,102,103,99,110,104,114,105,102,92,115,94,95,99,103,111,105,121,95,107,95,98,99,113,106,123,113,107,113,103,98,109,101,117,98,105,109,106,113,103,90,93,95,94,110,114,114,113,99,99,95,114,92,107,101,104,99,104,110,100,96,102,110,99,105,111,103,105,102,98,102,117,99,117,108,105,110,105,105,115,109,124,95,104,101,99,106,97,98,102,104,105,122,103,101,105,112,109,104,97,110,101,104,101,103,105,108,113,100,107,88,101,101,103,96,105,105,102,107,101,94,97,115,103,97,98,104,115,97,109,97,103,102,108,116,104,104,103,105,113,102,102,97,109,110,108,105,115,93,108,97,103,113,135,103,91,101,102,108,104,104,101,109,100,102,98,123,100,119,94,107,112,106,109,97,99,105,105,102,110,103,116,104,105,114,115,104,101,93,98,97,117,100,112,111,106,99,107,98,99,107,94,96,99,102,102,110,107,108,111,105,118,99,95,105,102,112,117,107,99,113,101,108,106,105,103,103,106,104,103,106,105,101,110,90,99,98,106,102,112,106,104,102,117,117,113,101,103,102,112,96,60,88,98,97,89,96,103,106,114,103,110,94,111,106,102,78,116,99,101,111,111,115,102,106,107,105,92,110,114,97,104,107,100,110,106,87,103,107,99,109,95,102,103,83,98,105,109,98,103,91,103,99,101,107,103,99,109,105,120,90,112,99,92,108,111,98,94,90,99,105,102,103,73,104,87,121,102,94,103,101,100,109,120,98,97,121,99,106,113,105,100,119,103,101,115,106,124,83,100,103,111,113,95,94,112,98,126,104,105,93,110,109,116,96,97,105,97,99,102,105,97,98,107,94,102,116,101,101,101,111,113,88,113,102,99,108,102,113,92,90,110,108,96,117,99,105,116,109,117,115,98,102,124,98,98,95,100,125,103,102,109,103,112,107,103,90,103,98,95,108,108,104,106,102,109,84,115,117,99,88,104,116,103,112,100,107,106,110,100,103,107,99,106,108,99,89,105,106,100,97,111,91,104,106,103,101,105,89,97,99,111,110,95,101,108,111,103,98,107,95,97,103,105,112,96,115,104,105,102,108,99,117,117,106,106,109,103,101,105,105,108,98,91,117,95,106,101,100,96,116,81,115,100,105,113,104,93,103,104,110,104,116,98,81,113,114,104,114,110,109,105,105,106,97,110,125,109,98,106,102,109,103,108,112,100,100,109,99,103,89,111,94,105,113,89,101,103,98,111,81,97,112,104,103,105,96,104,99,97,116,73,98,100,102,90,101,102,108,92,100,112,101,100,97,110,95,106,98,83,110,104,98,103,103,102,104,112,105,121,103,107,95,102,99,111,106,92,119,103,99,112,92,104,102,96,101,104,109,98,104,100,95,91,119,106,112,104,104,102,99,110,89,90,105,108,118,92,108,107,109,108,103,107,101,132,118,105,107,98,109,110,99,112,103,104,107,104,121,92,104,88,102,98,100,112,101,109,100,98,115,109,116,112,109,110,102,100,107,102,98,105,89,109,109,107,111,108,117,98,96,105,96,104,108,95,103,106,106,104,106,102,110,116,100,97,97,111,105,99,112,102,115,113,118,100,91,105,100,94,108,120,75,110,119,71,101,107,102,91,95,102,90,103,104,110,105,108,106,97,100,118,108,100,104,106,104,113,106,110,99,100,100,105,96,118,122,109,115,103,116,104,101,105,99,109,121,95,99,98,96,106,96,103,97,98,105,100,104,105,104,111,104,103,108,95,98,92,102,102,104,98,101,99,97,105,91,106,98,99,97,79,100,92,104,107,109,105,99,107,101,109,100,106,110,101,107,116,105,101,105,99,89,101,106,103,97,121,104,117,95,104,117,105,119,103,96,106,98,105,111,98,103,103,115,106,106,84,91,102,94,102,110,104,109,90,111,98,92,110,104,108,109,98,108,104,95,116,102,94,111,89,92,106,95,99,106,103,109,95,103,116,86,108,110,91,98,99,111,97,94,101,106,101,103,96,91,116,100,95,97,107,101,105,95,97,107,95,107,102,106,109,103,106,98,106,122,104,101,95,97,100,110,103,109,107,114,92,102,105,105,91,94,90,101,112,97,96,98,105,97,114,106,95,127,97,106,104,112,113,102,123,99,104,102,104,102,97,107,109,96,102,113,97,100,101,100,103,119,109,115,91,107,102,114,94,112,97,107,93,99, +657.18207,118,100,91,105,95,102,104,98,99,90,88,85,96,106,103,99,98,94,117,105,102,105,102,101,105,92,97,96,96,107,101,102,103,103,107,113,101,105,116,105,106,98,91,94,101,97,97,103,109,102,105,96,107,96,96,94,94,97,101,118,106,108,108,103,92,117,87,106,91,101,99,108,90,94,99,110,113,107,112,108,95,100,99,95,100,97,106,107,102,92,97,105,107,103,96,106,91,100,91,101,97,97,77,100,107,100,103,104,105,100,105,106,99,98,91,95,101,105,113,105,104,101,101,97,102,113,100,97,111,111,96,107,105,97,91,100,100,101,103,104,98,100,96,113,100,90,108,103,107,107,108,111,105,105,103,103,100,96,100,100,101,113,104,106,109,99,84,99,93,93,88,83,92,102,93,108,104,98,99,103,103,98,99,103,102,94,96,102,103,101,110,114,114,105,96,94,100,96,100,108,101,107,116,96,106,106,102,100,114,79,96,102,124,101,111,99,92,104,98,90,113,111,108,101,95,96,99,104,93,113,103,121,112,108,97,95,101,72,113,106,108,102,96,122,104,102,94,98,117,108,99,105,101,100,124,110,90,101,89,104,112,107,102,99,93,111,81,96,90,94,93,79,101,101,104,102,94,110,103,99,94,104,99,102,95,102,95,100,99,94,111,96,98,102,108,102,100,106,103,108,98,95,90,108,102,103,101,99,102,103,94,94,103,102,84,111,105,106,99,100,112,94,103,105,95,102,104,98,111,119,106,78,109,103,116,97,99,101,100,88,107,113,102,101,109,101,113,105,108,106,98,104,107,99,108,96,108,98,105,113,99,87,100,89,90,100,95,99,97,132,104,98,106,102,101,98,105,92,101,104,97,90,104,105,113,103,77,94,103,95,100,89,98,99,103,110,97,99,93,90,96,82,100,104,102,95,97,96,99,107,90,64,104,91,101,105,96,106,95,100,101,122,107,127,94,95,95,99,95,121,86,104,102,100,115,105,109,98,107,95,99,90,110,101,96,100,99,99,96,108,107,99,100,99,103,100,101,105,110,100,106,96,72,100,104,101,105,106,98,87,103,95,108,100,101,94,101,98,93,97,101,92,110,107,113,104,113,92,97,82,88,107,94,103,89,100,100,93,112,109,106,100,105,99,95,103,94,107,100,103,131,103,107,110,108,90,93,95,100,89,106,91,108,104,101,106,112,114,106,95,111,97,104,77,99,97,110,90,107,116,97,103,109,92,105,95,118,95,96,88,104,95,104,89,104,93,103,99,85,106,113,92,96,113,98,95,100,97,92,102,99,92,97,107,121,108,98,117,91,104,113,94,110,98,93,117,107,111,107,86,106,102,100,99,108,103,95,89,105,132,104,100,109,107,93,93,98,106,96,102,97,110,99,93,101,93,100,96,98,93,110,85,112,83,106,92,95,108,101,109,100,109,110,117,101,124,96,103,101,97,98,99,103,108,97,102,97,107,102,100,92,100,108,93,105,102,108,87,102,107,109,100,91,100,93,98,100,98,91,100,110,109,89,101,124,104,95,108,105,103,116,103,107,94,95,100,87,97,98,107,106,101,93,109,101,97,117,99,112,85,90,90,102,90,102,111,103,100,106,104,106,105,94,101,98,91,106,100,109,113,103,96,101,118,88,93,98,101,111,112,102,103,104,101,105,101,104,98,101,101,106,89,98,95,109,92,94,91,113,94,100,95,103,96,103,106,95,114,115,97,102,90,95,93,96,99,101,101,103,106,101,102,96,106,98,111,96,98,121,102,110,108,106,96,94,98,105,103,100,111,96,103,106,111,102,106,100,95,106,110,98,99,98,107,101,84,103,96,99,98,112,111,118,95,108,98,123,113,83,95,108,102,100,106,96,104,106,116,106,105,93,101,106,108,109,98,101,101,113,103,102,111,95,110,110,94,105,96,105,105,106,104,90,109,102,104,101,102,108,86,106,117,104,103,103,115,99,105,102,92,104,103,100,105,120,102,102,88,101,107,92,106,110,113,98,100,81,108,101,117,79,106,99,102,111,91,108,107,86,107,106,104,99,113,106,96,101,103,97,97,116,102,104,99,111,100,101,117,94,94,96,101,94,107,100,95,95,96,94,95,98,117,96,104,103,103,96,87,102,103,97,101,106,111,101,98,93,109,108,103,92,111,109,108,102,125,107,104,92,112,116,113,108,100,86,112,98,102,100,105,96,103,103,107,97,107,90,97,102,105,109,112,100,95,91,92,93,88,105,104,113,99,97,103,100,110,94,99,105,96,113,102,111,98,105,105,100,105,97,105,93,71,99,93,102,106,102,100,100,107,89,108,106,106,106,102,97,105,108,90,98,92,99,104,98,113,97,100,112,99,110,99,98,108,99,113,98,95,116,110,104,98,101,98,102,122,100,119,113,104,91,95,101,108,95,108,96,87,96,101,96,109,105,117,113,91,93,87,96,111,96,95,104,89,95,102,113,112,114,90,99,93,98,95,99,108,101,92,107,107,105,109,102,97,99,110,111,107,106,104,84,107,105,112,108,99,99,92,96,117,114,102,105,110,101,121,112,112,104,115,103,79,110,104,92,122,98,101,104,105,113,98,104,101,103,91,92,98,89,110,102,107,110,99,112,109,112,99,91,133,96,94,104,106,107,121,109,107,87,103,98,106,104,102,94,122,94,101,104,92,100,111,100,114,109,107,117,110,107,106,103,106,103,100,95,92,104,92,101,103,106,116,95,97,100,99,112,105,101,87,98,99,101,95,108,105,113,102,104,104,108,102,108,115,101,96,104,109,100,106,99,100,104,104,104,102,90,98,103,108,110,107,100,99,83,108,78,109,103,100,102,109,105,132,102,107,101,96,104,105,103,102,99,96,113,98,102,106,95,102,102,104,101,111,116,103,76,109,83,111,104,103,107,92,93,103,102,112,111,116,110,104,95,94,103,102,107,92,91,106,103,102,100,103,107,102,106,121,95,111,111,106,102,115,116,106,100,101,123,92,107,100,101,81,94,109,105,112,94,99,104,109,107,122,117,111,100,106,102,96,108,96,99,102,111,116,99,78,109,111,98,108,105,102,99,103,110,97,111,99,103,100,101,104,109,109,116,101,91,96,101,108,83,104,106,113,96,99,97,95,79,99,114,94,110,106,112,95,95,97,101,94,105,102,99,112,98,82,117,116,91,115,102,110,81,100,94,93,95,100,109,107,117,91,103,94,109,91,96,108,95,110,89,91,99,98,104,104,107,104,103,100,105,113,117,97,93,115,109,100,108,93,110,102,102,100,92,108,106,107,113,86,89,103,95,87,103,107,96,93,99,108,111,95,113,105,101,97,117,98,99,95,100,94,109,121,109,103,121,93,100,121,101,107,104,96,99,101,114,98,104,91,99,98,94,109,106,97,103,106,94,95,104,107,91,106,103,107,101,99,94,115,112,103,100,107,102,76,102,91,106,102,131,93,92,85,105,103,106,111,105,94,105,108,86,109,97,99,108,91,113,106,100,102,107,106,91,94,95,107,108,107,95,110,109,101,113,103,104,106,98,109,111,100,102,99,91,103,116,102,96,107,104,106,103,113,104,107,109,101,98,106,109,100,91,104,104,122,100,99,91,98,110,103,115,115,98,108,101,105,105,101,109,99,103,105,107,100,83,102,103,96,111,108,98,98,100,116,104,93,104,103,106,98,101,105,95,107,102,99,107,103,91,105,89,95,110,104,100,95,111,113,111,92,98,95,92,104,105,95,107,106,99,111,104,104,99,105,101,99,104,99,98,102,98,97,95,104,116,108,102,104,104,103,120,113,99,110,99,91,112,91,122,103,103,99,108,111,100,110,104,95,95,97,68,103,116,101,106,91,106,94,94,92,104,100,100,106,101,97,103,80,81,106,115,106,96,94,93,102,102,96,91,107,98,102,107,104,102,101,106,109,108,99,116,96,97,100,92,105,83,100,109,108,99,106,100,96,104,104,116,103,97,94,119,101,92,101,94,109,90,107,96,109,91,75,100,107,100,114,94,93,100,103,103,97,107,106,101,107,103,106,106,95,109,103,90,95,107,100,112,107,100,101,79,109,93,99,104,102,117,94,101,96,96,102,91,101,104,117,96,101,95,103,104,109,112,98,106,100,108,103,108,103,98,102,110,107,106,111,117,95,112,94,95,99,101,94,96,100,109,96,103,107,99,103,105,98,94,94,84,81,97,114,110,103,98,102,102,106,105,100,113,98,103,97,103,103,105,96,104,96,95,96,109,109,104,103,105,103,104,106,102,99,109,104,102,102,94,89,92,98,98,101,108,102,109,93,102,115,107,99,116,98,105,97,94,102,101,107,121,94,105,92,104,97,101,105,104,95,94,102,112,109,92,109,107,111,106,95,98,107,110,94,94,109,113,101,104,93,93,97,101,113,96,113,104,95,101,99,105,111,106,99,116,105,134,98,95,112,103,109,116,97,99,99,110,93,94,101,105,103,95,104,97,100,81,104,105,104,92,92,93,103,104,107,108,110,103,103,87,106,107,101,99,104,105,108,105,101,101,114,100,95,98,100,102,100,117,96,102,99,110,98,120,101,102,110,96,113,101,105,113,98,104,106,106,106,98,100,105,103,100,112,99,94,109,100,106,99,113,109,98,97,109,106,114,104,100,113,108,91,112,110,95,110,100,109,101,95,106,107,100,102,104,100,101,110,107,100,95,107,105,117,133,89,110,95,98,91,102,98,101,101,118,106,91,101,107,98,100,86,120,111,110,102,107,108,111,110,104,97,98,106,110,104,96,87,107,99,97,107,98,90,110,103,92,100,97,95,103,99,104,107,91,113,93,88,97,112,99,113,90,108,90,116,100,108,109,90,102,100,99,97,93,104,94,103,108,113,108,120,96,91,104,123,97,86,98,94, +657.32324,73,97,97,94,109,104,93,100,105,102,97,91,97,102,87,100,106,79,94,112,95,98,103,95,87,112,99,108,103,96,100,109,96,112,110,95,91,107,93,111,104,112,105,98,96,101,100,115,93,103,95,110,96,108,110,92,109,103,113,107,108,98,99,102,83,110,100,106,100,96,106,113,92,100,115,99,104,108,100,101,118,107,107,103,83,111,94,116,111,102,103,106,105,87,108,100,102,82,102,99,101,108,96,99,93,93,94,95,95,86,109,98,95,95,117,103,100,93,100,97,107,119,90,117,105,96,115,96,112,106,103,97,96,87,100,109,107,106,101,85,92,87,93,93,92,94,101,103,97,92,91,114,100,93,91,103,114,95,96,104,120,101,104,91,108,109,105,88,107,108,124,103,100,106,102,93,101,99,102,101,108,104,99,107,96,105,100,98,113,69,94,109,103,100,106,105,97,101,108,119,99,107,85,99,97,104,102,107,112,109,90,102,108,104,83,87,96,97,99,94,100,101,106,98,114,100,100,100,98,105,95,109,117,99,124,120,110,100,105,103,118,116,117,80,101,107,104,100,97,103,101,96,104,97,97,100,103,107,102,104,88,98,106,99,96,100,106,107,95,102,103,108,92,98,104,102,105,100,103,112,101,103,91,100,114,101,88,103,108,106,102,103,106,109,114,105,109,102,108,97,95,101,109,81,101,98,103,95,95,103,87,114,102,99,107,91,98,101,113,86,121,90,92,109,97,107,97,94,112,104,98,102,97,79,99,101,120,107,89,97,92,105,98,100,97,100,98,97,103,96,105,101,105,106,105,105,105,137,97,100,111,91,102,94,100,85,123,100,94,108,104,114,99,100,104,103,97,107,106,96,91,99,94,107,92,99,98,123,100,104,112,99,100,107,110,102,95,111,113,104,99,106,108,93,97,101,100,105,105,101,96,99,99,121,104,97,98,93,99,110,113,115,95,99,101,93,106,91,94,112,103,103,100,100,114,94,100,78,102,94,100,97,97,105,98,105,69,80,101,107,96,96,96,109,82,95,96,99,102,107,111,102,105,112,112,144,104,105,104,102,100,102,100,109,104,95,98,111,101,103,116,109,86,113,100,100,106,99,96,105,99,99,105,102,97,114,89,98,110,96,108,113,97,100,112,126,96,103,113,99,113,106,101,94,116,99,103,102,95,99,93,106,102,106,103,84,92,106,112,102,99,98,93,110,100,108,101,94,110,91,77,103,86,99,110,96,105,96,100,104,111,106,116,95,96,92,110,98,90,117,101,104,91,107,107,105,110,102,64,99,95,104,99,96,96,106,103,105,95,107,106,97,103,98,112,92,95,102,109,104,113,91,93,113,117,107,106,104,110,95,97,109,108,99,98,109,112,98,110,117,116,107,107,106,105,102,101,91,103,105,108,112,104,92,114,103,104,95,104,98,101,107,103,102,99,102,98,97,105,93,96,91,106,83,99,104,104,111,99,102,81,92,100,100,99,90,98,111,103,102,104,117,89,92,95,120,110,79,121,108,121,100,103,98,98,100,101,95,102,94,104,97,107,98,112,96,95,103,99,98,99,103,105,121,104,101,99,102,115,92,100,117,73,108,105,123,103,125,91,97,103,99,103,107,104,112,96,103,99,99,107,103,105,90,92,108,108,105,101,105,96,99,95,91,98,104,109,104,103,102,106,106,107,106,104,103,102,108,98,100,110,102,102,95,106,125,103,100,109,107,104,102,95,103,96,94,94,91,96,102,116,106,105,102,94,103,109,102,108,109,111,95,103,93,100,112,102,99,97,97,95,106,104,106,109,105,102,99,110,111,98,102,100,101,110,111,93,112,98,106,111,119,102,99,115,106,103,96,103,100,99,103,68,98,108,95,102,104,101,104,106,105,107,95,97,102,108,102,98,107,106,102,110,95,92,100,110,96,104,100,86,90,101,106,88,96,102,99,102,112,100,109,106,103,109,101,88,99,110,106,100,106,113,102,96,107,111,90,102,121,98,95,105,113,113,108,105,115,95,98,110,109,109,98,100,87,107,107,100,117,98,88,112,105,96,97,108,109,104,111,106,108,104,102,106,95,108,100,91,95,104,109,105,108,107,105,105,102,95,93,87,96,105,114,97,105,100,92,102,104,102,112,103,113,101,104,102,98,106,107,104,104,101,98,104,109,90,98,90,100,109,110,107,102,114,109,101,101,100,99,103,100,108,101,105,107,100,67,97,95,98,104,99,106,122,99,94,95,106,100,93,79,103,96,90,94,100,97,98,102,108,107,106,101,110,114,104,102,91,92,100,107,108,106,97,103,90,98,105,104,100,98,108,100,99,106,87,99,117,102,99,98,96,105,108,107,95,106,94,103,104,106,89,116,107,106,102,104,99,105,117,95,85,103,104,102,103,103,120,95,91,105,108,90,98,104,105,105,104,99,91,99,99,108,101,98,93,92,91,104,91,106,102,103,132,103,104,88,119,108,102,98,93,102,112,94,108,81,98,102,108,94,102,101,115,101,90,101,109,91,106,112,106,84,100,101,107,105,94,98,101,99,113,92,108,92,95,104,115,102,91,86,111,103,109,105,105,93,108,108,116,93,112,97,88,99,103,112,99,100,106,101,114,102,89,105,100,113,105,111,103,102,99,88,117,105,108,93,101,98,90,98,87,93,95,92,109,101,89,99,102,104,97,87,109,91,119,106,119,103,107,97,100,103,108,104,102,95,112,96,106,106,104,106,95,109,99,115,94,95,91,104,108,117,105,102,74,94,91,104,103,100,103,111,108,105,107,104,110,97,98,110,101,105,101,105,106,84,100,98,102,97,104,100,113,98,103,90,105,106,111,109,102,110,95,100,103,112,100,110,101,98,97,110,104,108,108,126,107,117,88,103,108,116,112,117,96,98,98,101,112,94,100,96,105,81,101,110,107,93,108,108,98,112,112,109,116,108,97,109,104,109,107,97,104,107,121,105,78,108,94,108,98,114,114,110,106,103,105,106,109,99,99,113,102,113,102,109,104,95,96,93,93,75,102,98,103,98,109,115,107,101,104,96,99,102,101,108,103,102,107,103,102,104,101,107,107,106,111,98,103,111,94,88,108,94,96,91,97,97,93,106,117,104,102,94,94,109,98,92,92,99,101,98,111,71,111,90,92,86,95,105,110,101,93,95,105,108,109,102,113,104,104,97,99,95,108,104,103,99,103,92,94,122,119,109,104,110,75,104,102,111,99,106,94,106,97,101,78,106,109,101,98,107,109,100,103,95,93,101,113,103,102,101,106,117,90,99,102,68,100,88,114,121,103,100,112,102,112,106,99,95,102,98,102,99,93,95,94,92,96,105,118,111,109,100,91,108,117,102,103,100,105,100,96,107,103,100,105,107,89,99,103,119,109,101,105,112,105,104,96,101,104,103,108,102,107,105,112,104,106,93,99,113,116,102,106,105,105,100,117,102,93,113,105,102,102,106,112,91,106,107,107,99,105,104,114,104,108,100,116,117,91,102,105,96,98,103,103,83,113,94,106,116,98,127,96,105,106,95,84,108,103,118,109,95,124,106,100,110,103,98,103,103,100,108,107,102,111,100,102,102,106,98,105,100,91,97,95,103,107,71,108,97,101,107,106,109,110,104,98,115,111,113,99,112,110,96,110,111,97,105,106,120,105,102,103,100,106,93,72,100,99,91,113,93,101,105,98,109,104,99,100,101,110,88,100,95,96,101,105,106,102,99,108,99,103,104,110,113,106,93,107,112,100,108,107,97,121,111,97,94,102,100,105,125,105,98,93,106,110,138,99,96,111,103,107,106,115,106,111,104,96,109,109,103,86,95,99,121,89,96,111,109,107,115,105,109,101,96,101,98,100,85,97,105,98,93,101,104,103,98,95,111,103,93,107,100,103,106,95,118,104,101,105,102,103,95,108,96,101,95,99,100,102,104,100,87,99,104,108,111,110,113,99,93,102,112,100,107,125,102,107,111,110,95,95,97,97,104,103,109,108,86,102,99,88,100,107,90,102,101,113,107,96,112,101,124,103,95,107,102,101,102,102,103,102,115,116,96,99,96,95,112,102,105,106,102,109,106,106,113,103,116,103,117,116,72,114,116,116,102,104,95,84,102,105,112,110,116,103,101,95,112,108,103,99,106,95,98,113,113,89,116,106,98,96,109,103,95,104,102,103,113,105,98,101,109,111,106,109,110,106,107,106,104,107,102,91,107,102,95,116,106,92,114,107,107,106,97,97,99,114,109,93,91,103,100,116,102,116,100,107,88,111,97,106,102,100,110,105,106,93,100,99,106,98,102,105,103,102,96,109,102,113,104,100,103,89,107,98,102,113,105,90,106,110,91,99,101,104,115,101,94,105,103,107,100,101,108,100,103,99,115,104,105,109,97,110,124,94,97,101,104,104,105,99,108,98,99,104,108,92,103,113,87,104,117,95,114,115,107,101,104,88,97,113,97,112,101,109,113,95,99,108,96,103,110,106,101,110,97,102,113,105,104,118,105,90,100,95,100,99,104,106,100,95,97,116,108,97,108,107,96,102,104,100,70,100,103,96,107,99,102,110,103,112,102,87,103,100,98,110,103,104,104,101,99,109,102,95,103,96,99,99,116,104,105,110,107,102,109,104,103,104,96,112,109,105,107,100,96,103,94,92,100,114,106,114,96,92,107,108,117,98,103,106,121,108,116,103,104,98,107,121,103,97,96,110,104,91,113,101,118,84,97,107,99,92,102,116,104,104,99,98,103,104,110,113,84,113,120,105,109,106,100,107,102,109,103,97,110,112,112,105,106,97,124,93,105,124,93,109,99,95,114,116,98,95,99,103,102,100,95,98,112,94,100,99,107,110,92,109,91,102,95,102,101,110,95,107,101,107,102,108,92,97,93,109,105, +657.46448,103,94,96,72,93,106,102,110,76,102,94,112,110,105,125,95,94,103,108,104,89,100,95,91,111,105,111,105,98,96,97,103,127,96,109,111,100,88,78,96,105,94,101,94,104,108,112,105,87,94,99,102,115,99,106,105,99,116,103,98,94,99,78,91,102,107,91,126,100,97,115,94,97,106,97,117,109,97,121,98,100,115,92,108,110,97,74,135,99,109,103,108,92,89,91,111,99,101,91,99,108,95,97,106,93,98,104,90,96,111,111,102,101,113,109,105,96,100,97,72,98,99,105,103,99,104,114,101,109,100,102,113,109,103,95,106,102,101,104,101,102,102,90,115,87,110,118,92,89,96,90,108,105,96,88,92,87,95,102,111,121,104,107,101,109,100,110,98,71,104,87,101,95,99,109,90,102,111,103,96,96,98,105,112,94,99,95,98,112,97,110,97,97,109,94,113,102,90,109,98,99,100,114,110,95,99,90,90,106,113,69,111,99,108,101,112,89,98,111,90,104,113,101,104,99,105,99,101,97,104,89,72,110,110,100,108,100,105,100,109,97,90,110,101,98,105,90,110,95,102,100,97,100,106,91,102,87,100,101,101,95,99,110,97,101,87,103,99,107,98,95,103,100,105,99,91,105,110,105,96,107,102,92,102,91,107,99,122,108,110,100,98,110,93,97,99,106,101,101,91,99,105,113,102,97,109,99,107,105,96,71,98,131,117,102,104,96,105,100,95,106,98,88,99,96,85,98,106,112,103,78,98,108,93,102,100,104,96,90,106,107,117,94,104,103,100,105,103,102,107,101,102,108,103,102,99,103,106,112,104,104,112,103,96,102,97,108,107,104,114,91,91,101,94,108,101,107,87,103,110,95,115,99,112,89,101,97,103,103,108,101,95,94,116,96,106,96,104,92,110,106,106,97,107,99,105,101,98,103,97,90,94,94,108,108,96,91,103,100,95,92,107,92,112,87,105,103,101,104,105,87,102,114,95,100,96,101,102,95,100,112,115,107,83,101,94,103,96,90,102,96,102,101,108,103,98,100,91,114,110,87,103,106,101,99,105,113,113,106,100,100,99,95,90,93,99,101,109,113,107,101,114,109,107,116,105,116,98,101,109,122,105,103,100,91,117,102,97,107,101,107,95,100,100,109,99,102,100,102,101,93,103,72,107,105,109,112,100,119,107,113,105,105,97,107,98,99,106,102,99,96,113,102,95,99,97,109,83,108,114,101,105,108,118,107,96,105,91,101,105,102,100,107,96,99,100,104,96,96,115,119,109,102,96,85,108,101,101,93,105,100,91,100,115,110,97,101,104,107,110,105,107,111,106,96,113,101,101,105,90,101,103,94,107,102,103,95,97,104,110,98,102,111,97,109,104,106,102,105,101,100,97,104,105,107,96,102,98,111,99,106,107,106,96,113,98,100,106,112,97,102,95,105,101,109,97,111,96,100,103,106,105,107,106,108,106,100,101,111,113,101,117,103,112,107,106,103,104,103,104,100,95,105,103,99,127,107,106,99,103,101,112,99,109,93,105,104,94,104,100,109,112,108,94,92,99,119,100,109,99,97,105,115,105,104,100,100,99,129,103,111,99,105,102,95,105,89,113,93,102,91,96,107,89,71,104,94,114,104,96,92,102,107,102,107,108,114,97,104,106,102,104,98,99,100,100,98,90,112,97,82,113,95,99,100,94,106,116,101,113,105,112,108,102,96,105,105,94,104,108,102,109,92,91,99,115,100,91,95,106,112,106,98,101,114,108,94,105,105,95,105,91,97,110,98,110,101,117,98,100,102,103,110,105,111,83,109,104,102,97,114,100,98,100,105,110,100,95,103,98,118,101,94,108,106,90,108,108,101,100,102,111,102,106,101,99,99,105,103,104,105,104,103,91,105,114,113,96,105,109,99,85,104,101,102,98,112,93,96,109,94,94,98,96,98,105,100,107,109,98,102,108,99,101,105,100,112,108,98,111,115,99,102,92,97,109,103,103,109,97,97,87,91,103,99,105,99,110,96,104,103,103,72,102,104,116,110,96,94,105,98,111,108,104,87,106,101,104,108,96,109,110,115,99,99,98,111,105,99,105,101,104,91,104,102,101,105,95,110,100,115,109,102,111,101,104,105,92,110,112,112,116,105,104,120,98,105,92,106,112,105,96,107,109,106,97,112,100,89,99,94,108,94,109,111,107,82,105,110,107,102,103,115,104,92,105,110,112,103,95,92,90,106,107,104,74,104,122,100,103,111,104,103,95,97,102,102,97,97,109,104,94,99,91,104,96,102,105,95,101,101,108,95,109,95,103,110,105,110,99,120,109,95,110,103,94,99,115,102,102,117,101,103,106,110,83,108,107,101,109,107,127,95,95,108,108,110,104,98,107,106,103,112,103,98,94,94,108,113,102,101,116,108,117,92,97,86,101,87,100,98,96,91,101,88,100,108,104,113,92,90,97,103,103,107,99,93,102,97,91,112,96,91,107,97,111,96,93,109,101,108,101,103,104,96,110,105,96,103,95,100,105,105,95,115,101,92,104,91,101,111,103,97,113,111,113,111,102,102,101,109,103,115,113,108,108,106,108,102,96,101,98,79,104,96,96,97,95,119,109,106,104,106,107,99,116,102,96,111,102,89,94,109,101,100,99,101,109,110,101,105,103,103,102,106,108,109,99,99,97,109,74,102,95,90,101,102,107,105,110,112,103,120,103,93,109,113,85,108,124,103,104,106,120,106,91,95,93,108,104,106,99,105,111,95,112,102,99,113,107,99,98,99,101,108,70,106,104,98,107,93,106,105,99,107,95,116,112,109,91,98,107,97,100,105,110,101,104,92,102,94,86,108,104,106,121,85,97,107,111,104,109,96,98,113,109,107,106,82,110,98,98,96,112,100,100,104,88,99,101,110,108,105,104,107,97,122,99,101,104,92,109,101,98,97,103,105,113,99,107,109,103,95,107,101,97,111,105,106,93,120,106,95,97,104,113,106,111,105,98,108,110,108,106,112,97,115,110,94,88,107,108,101,103,102,104,103,113,109,97,110,97,104,102,89,96,107,104,105,105,109,91,103,110,96,107,107,96,102,100,104,110,85,95,111,100,97,104,102,94,115,103,113,117,110,101,97,100,100,99,94,97,103,102,113,94,114,104,99,95,93,98,96,99,111,96,101,96,101,104,103,93,106,104,107,106,109,107,104,121,98,105,101,99,116,102,104,103,105,95,106,102,107,99,96,103,111,103,104,101,97,106,105,112,115,100,102,93,104,98,95,103,106,101,98,114,112,106,106,104,101,101,107,97,112,88,109,98,105,76,103,109,101,103,104,108,103,95,101,97,99,108,113,94,100,105,104,101,94,96,102,106,97,112,103,101,97,104,96,109,98,96,92,112,101,113,105,104,100,106,101,100,99,97,95,88,100,100,104,118,108,102,102,89,109,109,107,101,101,92,67,91,111,114,110,99,96,105,102,106,104,109,96,92,105,96,96,99,107,100,104,107,98,102,101,96,108,101,104,86,102,96,99,107,106,103,109,105,98,87,95,111,112,102,98,111,100,109,106,102,109,100,98,100,100,100,98,108,113,109,113,99,104,99,111,82,106,105,103,119,104,106,106,113,108,96,106,110,105,107,109,105,105,105,88,105,108,108,95,98,100,98,97,103,105,110,114,101,113,104,106,97,95,114,101,108,95,105,98,97,109,112,100,100,103,104,98,103,109,104,108,98,101,105,102,107,106,125,105,104,113,91,97,98,94,103,97,89,107,101,98,96,109,99,95,99,104,98,109,103,98,110,99,105,99,94,101,110,100,95,106,107,92,111,85,108,102,101,87,106,105,96,103,91,102,104,95,100,110,91,95,98,94,105,99,103,97,87,108,108,102,100,106,99,106,100,93,94,95,94,99,106,103,109,105,103,100,90,107,88,102,96,106,107,107,99,112,105,97,101,117,99,104,99,101,132,109,82,98,98,104,100,99,105,101,98,105,99,95,97,117,97,105,108,91,116,76,113,91,92,102,106,102,101,112,103,92,99,118,93,96,109,88,103,112,105,102,96,120,94,103,104,106,107,94,93,96,111,99,102,105,117,103,110,106,117,106,108,106,93,135,103,104,112,98,101,102,93,102,102,98,105,106,109,106,101,96,81,95,105,110,99,103,102,100,104,92,101,93,106,104,102,103,104,96,101,104,109,101,106,104,102,97,108,106,101,98,102,110,121,101,110,100,91,112,96,104,104,119,101,95,104,84,94,100,105,106,97,104,104,107,107,105,112,94,96,102,105,102,95,117,102,106,104,102,98,127,106,105,106,101,99,107,102,104,107,94,103,114,104,110,90,109,105,113,100,104,100,106,87,98,125,94,116,106,113,104,101,103,93,109,111,103,94,94,105,117,96,107,92,95,100,115,110,116,101,102,103,85,97,108,105,82,92,99,105,101,101,103,103,119,113,108,96,109,97,96,100,114,99,97,100,106,107,111,124,99,106,103,109,106,101,111,116,95,109,109,107,100,113,87,102,97,100,99,102,92,119,93,96,104,125,91,99,108,94,114,101,105,102,102,104,99,98,100,112,106,94,101,90,100,101,108,102,107,103,107,105,95,105,96,96,110,121,101,98,96,98,106,96,97,100,80,95,101,106,95,109,117,105,103,111,94,103,104,102,86,96,96,107,106,100,101,94,110,99,108,103,110,98,108,109,89,105,123,103,99,104,113,108,98,98,100,101,108,103,115,107,119,94,106,106,108,108,106,101,89,118,104,104,99,108,101,94,91,105,102,95,113,101,101,109,98,108,103,101,94,113,99,107,107,105,98,97,117,104,111,109,108,92,105,104,97,110,102,100,87,103,108,112,102,114,111,100,108,95,106,111,102,78,99,104,113,95,83,94,115,97,97,95, +657.60571,113,99,96,113,98,98,113,96,109,104,95,125,94,102,105,94,98,99,96,96,95,106,97,118,93,99,90,87,104,105,115,85,91,111,103,97,110,96,105,116,109,94,104,110,108,109,96,109,101,88,103,104,106,98,98,98,108,99,103,104,99,104,102,108,94,105,108,103,112,99,115,114,109,113,97,118,97,94,130,100,114,98,99,102,95,108,99,103,91,97,97,98,95,93,103,89,99,104,126,89,102,110,90,97,102,92,102,100,102,108,92,99,98,130,128,107,98,105,100,94,109,101,103,107,114,105,106,103,102,108,112,105,92,94,92,88,108,115,101,88,95,103,107,96,100,109,111,106,90,104,111,108,120,110,92,101,98,86,100,105,99,102,103,100,109,106,95,102,99,94,103,102,103,101,105,105,110,86,104,100,102,112,97,103,102,86,95,102,109,102,74,97,105,121,103,110,96,93,106,108,117,91,100,113,89,111,102,93,106,105,94,102,103,108,103,103,97,109,112,98,104,107,102,98,80,104,101,109,104,112,97,104,103,108,94,96,113,95,117,93,81,100,103,102,130,107,123,108,120,94,107,110,101,97,102,108,91,106,93,105,97,100,100,101,103,103,98,93,105,98,95,100,112,110,104,98,92,106,96,90,105,107,95,102,99,102,95,105,97,104,95,100,89,85,98,113,83,98,95,94,110,95,111,99,103,102,117,103,100,104,107,110,96,89,105,107,108,92,102,103,98,95,95,104,96,109,102,91,111,106,98,98,94,105,114,104,116,104,97,105,81,96,97,100,104,107,106,103,109,102,104,99,102,97,74,109,101,118,111,97,98,103,98,107,110,96,106,112,104,112,113,94,120,104,105,107,107,100,109,114,109,113,110,105,113,101,107,103,104,99,103,98,109,93,103,102,91,95,100,113,99,112,105,94,94,109,100,116,109,112,119,98,112,99,110,99,111,106,135,94,113,96,97,102,101,101,101,112,109,112,104,109,109,100,97,107,103,98,115,110,108,101,114,112,104,103,97,109,95,102,108,101,117,118,126,98,92,88,105,107,93,106,93,114,101,111,88,113,77,94,116,98,99,99,125,104,109,90,110,90,107,107,102,110,105,108,111,99,103,97,95,112,109,106,98,100,91,106,108,110,113,116,97,108,114,116,100,101,117,91,116,105,104,111,112,107,108,107,102,109,96,102,107,99,101,118,99,105,105,95,112,97,118,109,101,101,105,89,99,105,114,101,102,96,117,97,106,87,109,113,104,109,101,110,100,100,106,88,95,105,104,124,105,104,102,101,96,99,93,95,100,102,114,106,99,109,105,104,114,104,111,107,102,99,105,106,109,95,104,95,121,104,109,101,110,93,108,110,106,106,107,97,103,111,103,96,106,96,113,105,117,95,108,97,99,107,107,105,105,106,99,115,115,106,91,103,113,106,102,107,101,96,108,101,102,101,96,96,99,106,99,85,102,103,100,83,90,91,109,109,107,102,101,118,106,105,101,112,103,111,123,105,99,101,97,108,103,92,102,103,104,109,109,99,81,103,106,106,108,101,106,110,104,94,100,101,103,86,114,113,101,110,95,99,104,101,99,114,95,92,89,102,109,105,101,109,108,106,111,102,100,102,107,106,100,94,88,95,100,96,93,108,105,108,91,102,114,98,106,110,103,120,105,109,100,108,105,103,111,105,111,104,134,96,125,110,110,111,95,113,110,97,104,105,97,99,93,105,85,111,103,113,97,99,94,104,98,103,100,99,105,99,96,102,113,101,104,102,108,112,101,95,104,105,95,85,109,102,113,100,102,100,89,96,93,106,112,107,110,117,104,99,99,100,110,93,99,127,104,105,116,104,96,101,100,100,105,104,99,101,94,101,109,97,102,106,101,101,104,101,110,104,104,95,104,106,100,89,107,108,102,94,116,111,91,100,94,101,95,102,105,97,96,105,105,101,99,117,97,100,116,104,103,87,104,102,113,120,107,102,105,116,94,95,99,107,107,106,102,103,94,97,99,96,98,96,98,105,100,102,111,114,104,105,103,95,105,115,106,89,110,103,97,100,101,98,118,102,98,106,112,105,104,100,119,94,89,102,108,112,105,117,104,102,103,94,95,97,115,97,102,113,99,101,95,110,88,102,106,111,125,100,99,107,97,105,105,110,106,110,99,116,81,104,96,109,104,113,100,108,115,107,104,111,105,99,90,101,99,105,95,100,100,94,109,109,100,102,103,96,92,90,96,98,78,100,96,111,106,112,97,96,99,100,101,113,105,109,88,97,118,94,104,110,97,87,114,96,96,107,104,102,100,105,99,102,102,105,103,109,116,108,102,87,106,103,118,93,95,95,104,113,102,97,111,96,90,112,120,100,94,93,106,99,111,112,109,104,90,105,99,108,110,100,103,91,100,115,113,91,96,111,93,104,113,106,97,103,101,102,94,114,95,111,102,88,101,104,103,101,96,101,109,100,106,106,105,108,112,123,132,107,113,103,97,92,87,90,113,99,106,93,93,98,100,101,101,105,122,97,108,102,104,96,108,107,102,98,92,109,97,106,92,113,106,103,103,94,102,106,91,94,100,108,105,107,115,91,91,96,106,109,98,112,96,107,102,109,100,105,115,109,116,108,97,114,102,114,96,108,85,96,108,109,91,88,98,107,96,107,117,107,97,105,97,92,121,105,100,99,111,103,100,111,106,102,100,109,109,65,103,99,107,106,89,110,117,100,105,112,96,96,101,91,106,110,104,111,96,120,111,112,104,99,108,102,106,106,102,93,101,106,108,106,106,109,92,106,107,92,106,105,94,105,104,102,98,102,101,101,96,88,100,106,91,102,102,66,98,110,109,94,108,108,99,105,97,104,101,110,103,111,113,98,109,98,99,107,98,98,109,90,117,109,111,102,96,109,96,102,102,94,102,91,101,108,92,100,90,100,95,113,95,99,92,105,97,94,119,95,103,108,103,106,111,103,90,101,104,106,98,110,95,93,105,113,102,100,98,93,104,104,102,101,117,94,110,104,107,104,113,95,113,116,101,98,110,101,78,101,115,102,107,105,100,106,110,103,100,108,97,107,105,109,96,96,104,104,107,89,122,103,111,97,106,82,94,111,107,91,99,95,117,119,99,101,112,103,94,102,106,105,101,110,98,105,106,104,108,94,82,91,94,101,96,115,98,105,107,99,102,109,97,103,89,108,112,94,81,112,102,105,114,100,95,101,95,95,96,100,112,94,93,101,99,104,106,104,99,94,112,100,86,112,104,93,102,99,102,100,109,97,112,111,105,90,95,105,108,112,104,89,91,108,115,106,97,105,110,98,99,104,110,95,102,115,91,88,112,94,86,113,109,105,81,103,103,127,106,104,102,105,106,104,107,102,112,105,110,130,94,98,98,101,108,101,93,106,110,100,97,102,111,106,109,106,100,105,106,111,98,101,116,97,93,98,98,101,107,107,106,103,94,108,97,109,110,103,100,94,103,99,93,103,97,85,99,100,107,102,99,107,87,116,110,93,105,105,99,98,99,100,95,109,108,109,109,93,105,113,103,115,103,114,112,94,109,96,108,102,108,101,89,99,103,100,100,104,99,101,105,88,105,114,102,102,89,100,98,102,92,116,101,96,95,107,104,104,105,98,140,114,98,100,102,93,108,104,107,104,97,79,99,101,103,109,104,95,107,100,108,110,89,95,105,92,104,101,114,106,102,99,86,104,106,105,116,95,103,114,100,87,102,102,104,107,108,102,104,101,103,100,106,98,106,106,99,92,109,109,91,106,114,107,84,99,98,106,99,99,109,97,105,107,101,96,96,86,99,90,89,100,99,107,102,118,114,107,99,101,96,116,100,99,98,113,105,97,112,91,103,112,98,104,102,104,89,112,103,101,103,101,97,102,104,99,108,100,93,105,112,116,105,110,84,92,103,91,104,100,110,99,105,72,111,98,106,90,96,103,109,103,97,110,99,106,84,99,102,100,108,97,105,100,108,102,92,101,102,95,101,96,102,101,105,113,90,91,105,111,105,97,94,99,97,104,104,110,104,98,107,99,87,99,102,103,108,99,111,98,102,105,87,112,103,102,97,107,103,96,112,115,102,107,94,105,89,109,100,102,116,103,105,104,102,114,113,101,98,107,109,105,97,95,107,101,108,111,104,113,104,95,97,90,110,103,107,99,98,99,88,99,107,106,102,100,96,112,101,96,106,105,95,102,101,102,102,115,107,106,113,105,111,109,102,119,107,105,108,96,98,103,105,105,97,96,98,111,97,119,113,101,103,103,98,100,105,95,102,99,103,107,114,101,94,108,96,97,102,107,91,110,99,99,123,108,99,94,114,144,116,98,111,106,106,94,122,102,104,101,105,120,106,112,102,106,103,99,96,98,105,118,103,102,108,113,97,102,103,113,105,89,114,109,97,106,96,112,110,100,118,83,86,97,110,90,93,99,106,99,95,100,104,99,109,93,98,109,98,112,99,97,96,102,105,104,109,95,99,111,116,100,115,109,94,108,101,99,96,103,89,98,112,104,111,99,96,97,102,91,102,105,104,107,97,108,118,88,98,102,131,99,113,103,99,100,96,97,109,113,102,106,81,110,102,101,107,101,99,107,103,106,93,95,109,112,101,105,104,96,99,92,104,104,107,105,117,90,94,99,90,91,99,100,98,108,109,103,92,102,91,113,96,91,99,105,110,113,97,98,117,110,104,106,110,101,93,94,101,100,93,103,87,111,95,97,100,95,93,108,100,103,102,105,93,108,113,106,114,105,110,101,104,108,97,98,93,105,104,102,91,98,108,106,95,103,91,94,106,90,96,93,96,103,108,109,99,112,90,101,90,111,105,92,105,105,117,91,109,98,99,109,100,105,110,103,82,106,91,89,107,102,100,104,103,96,94,102,93,85, +657.74689,104,97,92,96,94,97,83,94,83,83,99,107,101,108,132,98,95,112,102,107,91,100,95,104,103,83,115,99,95,106,105,93,110,94,117,92,99,109,90,93,105,100,95,100,110,112,106,116,101,99,106,103,95,106,101,97,92,85,113,99,95,115,96,105,95,106,92,102,114,97,93,103,97,102,94,108,108,98,91,98,110,102,98,104,88,93,95,98,107,94,100,103,74,106,102,102,92,96,95,102,103,104,102,101,86,101,94,113,94,96,100,90,97,104,103,97,105,100,98,96,96,116,99,109,104,109,107,100,98,100,109,105,96,112,104,92,106,100,98,96,99,101,95,101,95,101,95,106,88,101,104,101,107,100,103,108,114,96,110,104,108,96,105,101,104,101,102,96,106,91,101,97,102,87,98,106,96,97,101,103,103,101,102,108,99,125,88,96,105,100,117,104,112,104,104,99,96,105,95,110,102,110,115,118,96,112,103,97,104,94,80,119,99,88,103,100,95,107,99,102,98,115,108,98,104,108,128,115,99,113,101,105,76,102,110,109,117,107,99,109,112,109,101,108,82,110,104,89,101,99,97,116,102,92,107,99,98,104,97,113,116,101,95,100,101,109,98,102,98,98,104,104,135,98,112,108,101,94,95,91,105,113,119,107,84,118,80,104,101,113,105,101,113,112,111,108,105,88,103,99,100,97,105,99,94,122,88,109,104,111,95,90,62,103,99,97,111,102,116,91,80,105,101,93,103,99,98,99,113,98,111,94,104,105,101,112,121,105,102,101,104,108,87,94,104,102,110,117,104,99,108,99,114,105,103,106,106,121,81,98,111,92,98,97,99,93,110,110,111,107,100,104,109,108,101,107,110,103,86,108,94,108,113,105,109,101,105,105,105,97,101,107,116,99,98,105,115,88,105,110,101,106,102,103,112,86,104,108,94,103,104,102,102,115,96,96,101,133,94,110,105,104,100,100,97,102,105,111,102,115,100,113,105,103,113,92,99,105,110,111,105,101,101,105,98,99,98,107,96,108,101,102,116,106,115,91,92,112,108,95,96,97,105,103,104,92,106,105,119,100,113,106,99,101,93,92,114,114,111,115,103,112,112,104,108,106,83,98,100,101,111,107,104,96,102,114,83,113,116,113,105,95,108,113,106,118,99,110,116,108,104,108,95,107,92,106,130,96,106,91,110,95,118,106,100,127,107,117,103,104,99,111,109,108,102,107,101,119,109,106,102,101,101,103,112,96,108,94,107,115,126,97,105,110,100,100,103,101,108,107,109,109,111,100,102,103,100,110,109,106,103,122,98,104,110,104,95,94,105,95,110,109,105,101,119,106,77,121,107,112,110,103,93,98,111,106,110,108,100,105,119,105,103,115,105,101,109,112,102,111,99,107,91,106,105,94,110,73,120,112,102,104,106,102,106,103,115,93,106,110,110,101,114,104,98,112,115,96,118,96,110,110,102,90,92,100,96,83,105,98,94,91,108,98,96,103,105,104,91,101,104,87,108,105,98,107,120,102,103,107,109,91,103,108,105,98,114,114,104,96,108,110,110,99,106,91,101,103,114,103,103,107,94,103,111,104,96,100,117,119,106,105,94,107,109,98,108,104,98,102,111,104,97,92,97,92,89,109,100,101,102,91,100,95,102,98,101,103,96,103,101,110,108,106,103,95,124,103,113,101,96,107,109,105,104,103,116,109,97,101,106,119,117,98,95,101,112,110,107,102,92,100,106,107,100,121,92,105,108,102,115,114,100,88,103,109,107,104,99,112,110,102,106,107,113,108,96,110,115,104,111,101,112,113,104,105,101,99,110,120,96,106,88,98,108,98,101,111,113,96,104,111,109,97,107,106,117,99,103,114,97,108,117,101,107,111,119,90,107,109,102,109,104,116,114,109,107,83,107,102,110,99,101,113,99,100,65,105,111,98,102,102,114,107,116,100,103,95,102,102,104,114,105,104,112,101,95,93,104,106,98,109,91,97,99,106,106,97,109,114,104,104,108,105,104,101,99,124,108,101,92,106,110,116,109,92,104,105,107,106,105,110,97,109,106,98,105,109,104,100,97,95,103,112,95,103,110,106,96,108,116,99,127,100,100,109,97,105,94,99,106,106,100,100,96,101,96,106,91,113,117,99,95,95,90,93,104,109,104,106,113,104,113,86,101,102,110,81,101,107,113,113,107,106,112,112,108,102,110,98,110,105,106,108,110,109,101,117,101,105,95,112,94,99,103,113,112,102,98,104,86,107,107,96,91,83,99,98,116,104,78,104,109,106,121,103,113,107,101,103,94,105,106,111,105,113,90,90,99,102,115,110,99,114,106,105,103,103,106,109,97,84,107,112,101,93,99,116,101,99,98,110,101,104,97,95,104,98,117,112,113,111,108,108,97,107,116,117,107,108,87,104,100,90,91,100,99,102,109,106,94,118,97,111,104,101,98,101,93,95,105,95,89,104,102,102,102,101,105,113,103,107,107,107,103,104,95,102,96,102,117,101,111,81,97,116,110,109,111,102,112,123,99,119,96,95,113,96,97,124,106,102,108,102,108,91,106,96,89,104,102,95,114,107,110,101,91,104,97,100,113,87,102,101,109,100,93,108,101,100,108,89,93,109,98,95,90,105,106,107,102,93,100,107,111,113,85,92,99,97,99,113,106,103,101,94,92,103,108,99,113,94,91,110,97,91,109,98,98,99,70,100,112,122,96,101,110,103,105,117,107,121,99,97,105,95,113,111,91,95,111,116,87,105,113,105,97,100,94,93,99,107,94,113,112,97,105,98,111,99,88,102,104,104,112,104,124,102,96,112,105,102,120,102,98,113,100,117,101,110,107,107,99,105,105,102,99,120,108,98,90,112,111,110,101,104,97,103,97,98,95,103,91,109,115,110,105,101,104,103,98,95,119,105,93,105,103,113,101,108,113,99,105,111,105,104,103,127,110,100,119,104,103,105,112,105,103,107,103,104,94,103,104,103,101,116,106,108,102,102,103,105,106,113,97,98,96,111,97,106,98,96,101,101,104,101,79,108,96,85,102,101,101,102,95,101,106,106,112,104,103,98,106,103,98,95,109,95,113,97,113,114,115,121,113,98,100,96,116,87,105,109,112,107,107,90,101,103,104,88,103,106,124,106,106,94,98,101,101,98,101,111,111,103,110,117,102,99,99,103,115,99,90,98,110,103,102,112,103,95,111,123,109,107,104,114,76,117,100,99,95,102,105,107,94,94,100,100,111,92,107,113,109,97,94,94,114,80,106,112,96,94,102,104,91,101,108,110,99,102,96,97,98,104,97,121,99,92,108,106,98,99,104,106,119,97,105,97,113,94,91,108,95,103,102,106,114,104,116,118,104,124,106,102,90,113,92,113,99,109,113,102,108,110,97,100,112,118,112,107,93,108,114,109,104,108,114,100,96,109,99,105,98,116,98,107,95,76,109,109,109,102,100,99,112,104,94,111,109,94,111,111,109,101,106,107,113,112,111,99,113,101,105,102,109,101,108,91,92,105,103,100,92,106,88,99,121,112,91,96,108,106,99,116,102,112,93,104,87,111,100,106,116,94,64,108,108,74,120,104,101,102,100,104,106,84,91,95,114,106,94,110,106,109,105,81,124,97,97,97,110,102,103,103,109,95,105,100,105,92,102,106,109,100,111,87,109,96,104,97,82,103,99,96,98,105,100,110,111,109,96,90,110,109,103,93,98,102,115,106,105,112,95,104,94,102,99,112,110,95,104,94,111,97,95,103,96,112,88,105,111,90,101,113,96,81,83,92,99,101,99,101,98,107,100,105,99,106,102,101,104,101,109,107,99,105,104,104,92,109,95,97,98,96,96,101,112,109,103,100,80,116,98,101,99,107,101,101,105,98,95,118,90,102,96,111,99,109,109,89,99,108,108,105,102,111,101,107,109,95,93,116,94,87,107,120,102,110,107,105,98,107,104,108,88,100,118,106,96,105,100,100,109,105,116,96,109,100,112,93,101,103,107,99,117,107,90,92,104,120,104,109,100,96,102,120,103,110,113,98,104,102,100,99,104,106,101,94,101,115,107,96,100,96,102,103,110,108,92,101,106,112,100,102,108,102,106,112,99,110,93,100,112,100,108,107,95,97,109,104,111,105,91,106,103,98,103,114,113,110,110,98,102,100,108,97,92,103,104,96,111,104,103,100,101,104,100,112,100,104,93,114,102,107,110,110,104,108,103,113,119,101,93,98,89,101,98,102,109,102,98,103,108,104,97,106,97,125,95,97,110,103,119,103,92,105,106,97,102,98,90,101,100,108,112,106,87,111,104,112,111,95,115,113,106,103,98,109,104,99,109,91,101,108,96,109,114,108,103,112,101,103,117,111,101,108,122,105,106,100,110,99,96,102,109,98,108,103,116,106,95,89,107,101,100,108,104,94,108,98,109,102,111,103,94,113,97,113,104,110,98,108,94,96,112,104,97,108,100,97,130,106,106,107,126,94,100,93,105,118,99,92,92,108,106,94,99,107,99,100,83,87,102,104,109,111,96,106,117,111,96,98,103,104,103,101,95,108,104,102,102,111,101,94,95,109,112,97,87,103,92,106,105,113,109,110,98,83,113,108,92,115,100,101,98,109,105,104,102,105,101,105,92,97,107,110,113,114,97,94,100,87,96,105,103,91,96,89,101,103,99,107,105,86,109,106,98,111,96,94,109,105,95,98,96,105,91,92,102,106,101,109,99,90,96,101,106,103,100,101,107,114,93,112,91,100,89,113,95,105,110,101,101,93,114,102,109,98,107,102,93,98,109,97,97,112,96,108,87,99,110,99,94,107,109,107,105,105,109,102,105,116,105,116,97,99,95,113,119,94,106,105,116,92,118,94,108,112,99,101,105,103,109,108,105,94,117,105,101,109, +657.88812,90,109,111,93,94,111,92,93,95,70,109,92,93,94,97,86,95,92,97,86,108,106,107,107,108,100,99,108,99,96,104,99,92,100,101,108,106,94,101,103,91,134,98,115,101,96,101,112,99,106,112,106,91,98,107,97,91,101,88,94,93,102,98,94,103,113,113,103,91,100,105,95,73,105,96,94,97,106,97,95,98,94,111,94,107,106,101,76,101,113,96,103,116,107,105,92,103,109,87,107,99,98,98,106,77,94,106,106,82,91,102,108,87,110,102,100,105,96,97,98,109,100,101,97,94,104,109,100,106,105,98,117,99,106,109,106,103,104,92,109,96,104,84,110,103,88,109,102,94,98,95,103,103,110,90,105,106,118,97,101,100,83,100,106,109,107,107,98,109,95,100,97,105,108,104,97,98,95,98,94,101,106,108,92,103,105,88,86,100,102,93,108,100,109,116,109,101,108,109,107,105,95,98,107,109,99,103,99,114,120,94,107,101,83,105,104,108,99,106,90,113,113,110,106,133,101,100,108,106,106,96,110,100,91,102,102,109,108,96,103,96,103,92,98,98,92,109,95,91,101,100,94,92,113,71,110,91,110,108,103,101,102,86,101,96,113,114,108,108,102,95,93,114,102,99,114,110,105,102,97,112,108,105,99,95,90,99,100,83,111,101,98,108,104,107,93,104,90,123,91,118,107,105,101,96,111,96,99,101,115,97,98,102,104,92,96,110,103,94,97,98,101,105,103,107,100,90,104,92,110,103,74,106,100,103,101,94,110,97,100,100,97,108,101,109,107,110,105,97,103,97,125,103,83,90,96,108,115,89,100,107,80,98,104,109,106,101,111,98,106,108,94,106,109,104,112,108,99,109,110,109,111,101,99,100,104,107,100,110,100,109,87,105,103,108,115,112,103,102,109,108,95,101,107,82,96,103,114,101,99,99,98,105,97,102,107,100,95,109,86,119,99,96,98,96,96,103,111,113,127,103,107,112,106,103,108,97,97,96,117,106,88,101,98,87,100,105,97,107,106,95,108,96,106,100,115,91,101,113,101,97,101,100,101,109,112,101,103,124,102,114,102,105,101,93,111,92,102,111,105,109,108,110,98,105,107,109,92,96,99,97,106,104,102,90,107,84,101,99,85,121,102,99,102,98,99,86,111,104,96,99,99,114,96,113,100,103,103,106,100,95,102,120,104,108,97,108,104,104,116,102,103,89,101,109,107,111,108,109,96,99,96,101,98,108,104,102,104,108,97,107,95,108,94,103,107,103,106,96,107,94,95,91,105,98,103,121,103,103,100,99,102,110,102,103,96,97,99,95,114,103,96,109,108,91,98,104,101,106,103,109,110,67,97,87,109,99,90,99,97,95,104,105,113,100,98,105,97,109,113,99,96,103,99,117,107,100,104,117,103,112,92,113,98,107,97,104,107,99,109,97,122,99,101,98,92,102,95,104,98,96,96,106,115,101,104,102,97,92,109,100,109,101,110,102,93,105,103,89,101,112,107,108,108,97,107,104,101,101,105,106,95,95,96,107,96,118,99,111,116,110,114,114,103,101,99,104,113,106,101,100,99,96,108,103,112,103,102,95,106,108,93,105,104,101,108,107,99,113,98,110,98,96,106,106,101,98,96,101,98,96,98,104,110,107,86,109,111,110,107,101,101,112,105,102,98,109,104,105,104,96,94,108,98,109,97,102,97,108,112,102,100,94,100,100,103,101,104,99,96,100,105,100,100,86,94,98,101,105,99,99,100,103,98,100,100,106,106,94,91,105,100,111,100,101,107,101,102,117,107,107,98,108,110,89,101,102,97,111,108,93,97,99,97,102,121,96,105,102,100,99,90,106,100,102,123,116,122,117,109,103,109,99,104,95,115,103,105,106,68,114,106,103,115,127,126,102,108,105,97,98,105,98,105,105,117,95,91,101,102,101,95,109,99,105,96,109,123,105,107,99,103,108,92,107,101,93,110,108,115,92,110,103,96,92,96,95,93,109,93,98,113,100,106,102,106,107,105,101,99,97,110,109,104,97,96,108,104,103,92,107,111,103,98,101,118,97,107,94,95,107,103,118,118,108,99,105,102,99,102,108,100,111,98,95,97,91,108,113,99,98,96,106,105,92,97,97,114,107,101,109,94,112,100,113,101,101,99,94,134,113,101,115,107,95,93,95,108,102,102,81,116,94,88,109,107,86,97,95,104,88,110,99,94,101,108,98,103,116,102,103,90,105,107,97,106,95,108,106,119,105,102,100,105,108,87,92,104,106,99,102,114,98,106,104,99,97,90,93,109,97,103,107,91,92,109,102,97,100,97,106,107,95,99,95,104,105,116,112,97,102,119,106,96,121,106,115,115,94,83,102,107,110,96,88,102,113,99,115,105,108,98,94,99,80,97,93,112,75,108,106,104,89,91,108,110,103,95,100,90,93,102,97,93,99,94,97,94,109,100,101,97,100,109,92,98,108,102,99,102,113,104,105,99,107,93,99,102,117,100,107,95,102,106,95,96,111,109,103,99,100,106,114,91,99,101,105,98,102,109,96,110,113,113,114,104,104,94,110,107,108,106,109,94,104,104,97,95,96,95,113,105,102,107,106,100,102,100,102,109,116,104,108,98,95,107,103,104,113,110,106,106,99,94,92,101,95,104,105,94,101,100,110,101,111,101,109,97,97,97,97,115,95,117,107,110,107,97,97,114,97,108,105,95,115,99,105,102,113,110,106,105,103,95,105,106,95,116,101,104,105,113,107,112,106,113,96,95,97,92,103,102,98,102,103,104,98,98,96,101,105,100,95,104,102,87,99,102,111,101,101,94,102,98,103,91,99,99,95,107,101,110,109,106,108,112,96,95,105,110,105,97,87,99,116,101,109,108,107,98,104,116,110,98,104,99,102,93,78,95,110,110,105,96,103,114,110,94,109,121,104,108,111,103,106,107,107,106,117,110,94,107,89,115,109,104,113,104,106,106,105,107,99,99,109,108,114,90,124,123,113,98,106,112,116,95,107,111,101,113,113,96,104,103,96,99,94,97,100,101,105,113,105,115,98,105,103,100,110,103,95,100,97,105,101,109,106,102,100,99,111,101,108,112,102,107,106,97,100,95,111,95,112,101,123,88,103,97,102,102,106,77,108,110,71,109,99,111,103,98,96,108,105,111,112,97,98,90,111,96,102,109,93,101,95,106,115,102,102,102,101,107,96,98,103,92,100,108,105,106,96,106,98,95,101,105,99,101,116,110,114,102,109,110,110,103,94,88,95,121,105,92,107,102,104,101,100,112,92,106,103,96,100,111,98,117,108,105,90,95,103,102,106,103,90,98,95,101,103,125,105,98,104,105,95,109,101,96,110,95,102,108,103,122,94,98,106,97,99,85,109,98,93,119,96,111,107,111,106,98,101,107,101,105,96,99,94,101,106,112,113,101,95,99,100,97,99,99,93,104,103,108,101,99,104,101,96,107,111,102,112,97,99,108,103,99,99,105,108,87,112,97,99,103,95,103,135,89,111,95,107,95,103,117,99,101,109,104,111,93,104,78,101,99,84,114,89,101,98,109,110,104,102,104,97,113,109,95,108,101,105,116,101,98,106,105,107,94,95,76,93,96,104,94,92,117,106,99,109,91,113,110,110,102,104,92,110,99,101,98,107,99,91,115,107,104,103,108,97,113,102,107,94,112,96,98,103,96,107,102,109,92,100,106,117,100,127,104,123,88,105,99,107,71,99,109,98,91,106,104,105,99,98,102,109,102,116,105,105,105,107,94,102,108,97,89,102,121,104,92,109,107,101,119,105,94,110,115,87,108,107,106,108,104,105,108,103,112,103,100,109,111,103,107,94,96,111,91,106,95,100,103,106,98,106,107,98,110,108,100,97,104,103,99,106,105,111,102,106,105,102,106,108,96,97,75,105,115,109,106,106,105,105,110,98,110,94,98,98,103,104,100,83,102,104,102,105,89,105,99,103,100,104,106,115,106,104,115,83,99,107,98,98,100,109,109,101,99,112,102,119,103,98,100,123,111,114,87,110,109,104,99,98,111,106,105,102,89,101,101,106,107,103,99,104,109,103,97,77,97,119,117,103,112,100,111,104,104,86,107,108,104,115,110,111,108,112,101,101,97,105,101,92,112,112,105,99,112,94,108,111,97,99,90,106,111,100,96,93,99,104,112,101,102,113,97,105,99,111,109,103,92,103,103,100,110,98,109,123,92,104,109,86,101,102,125,94,101,90,113,114,101,108,107,88,101,90,100,108,106,98,108,113,92,86,110,109,88,102,112,104,101,100,116,101,99,106,106,103,117,105,99,108,112,101,106,116,113,95,99,102,102,106,108,106,94,109,110,102,101,96,106,71,94,113,106,77,116,117,109,111,100,116,107,99,109,100,101,101,97,101,95,100,101,104,102,101,100,87,105,115,110,94,95,102,101,96,96,110,104,103,109,99,96,104,106,86,108,106,82,96,103,109,87,112,106,93,118,96,98,107,98,100,115,110,110,107,101,105,109,102,91,107,102,97,108,110,104,98,99,95,105,106,106,99,111,96,106,83,102,92,111,108,96,107,98,110,99,109,101,102,106,121,104,113,96,101,100,111,86,105,101,111,101,101,121,100,112,102,108,104,113,110,106,108,108,105,106,93,108,106,103,111,102,101,100,107,105,121,98,102,102,105,96,103,81,106,105,92,102,106,106,94,110,96,100,96,102,100,114,98,104,104,98,88,108,105,100,115,110,107,96,99,100,96,107,105,100,102,93,98,119,88,107,100,85,110,92,102,114,104,98,114,91,91,105,112,97,95,100,98,99,102,104,94,113,85,80,98,104,121,109,93,105,97,107,94,104,108,90,98,109,121,101,110,97,112,110,99,114,115,91,109,102,99,118,109,105,99,111, +658.02936,101,102,93,83,98,112,87,97,109,111,110,100,98,121,102,93,111,91,99,95,107,91,92,104,102,105,103,97,91,110,101,112,98,108,103,123,106,89,106,95,104,99,111,102,101,102,104,112,102,97,113,109,105,87,100,109,111,106,103,113,100,91,97,94,104,105,89,109,111,96,101,104,96,96,98,101,97,109,108,88,107,94,108,109,103,101,111,113,111,95,102,98,104,101,99,106,100,97,116,102,94,99,79,103,99,100,111,100,91,86,103,92,100,100,102,115,97,101,120,105,109,113,107,104,95,103,104,99,104,93,104,95,95,113,97,100,102,102,102,103,114,113,96,100,102,94,105,129,109,95,105,87,105,85,89,91,102,98,97,95,104,110,109,102,98,96,91,93,122,100,101,97,94,106,108,87,107,99,102,109,98,105,95,113,101,96,96,97,104,105,97,101,103,106,108,98,93,109,101,120,106,110,86,109,103,99,91,95,96,114,89,95,94,100,106,109,92,111,104,116,85,112,93,99,102,106,103,109,89,107,96,103,112,112,111,113,111,106,106,87,107,113,100,89,104,96,110,98,98,95,109,101,97,95,100,100,98,104,104,98,98,95,100,111,94,89,98,97,104,110,96,99,109,105,99,102,102,106,99,107,100,102,105,101,120,103,95,100,100,106,95,116,109,109,114,97,90,93,102,87,90,106,101,107,93,104,100,105,92,98,102,100,105,101,112,101,107,100,111,101,109,96,107,98,106,90,91,90,106,99,107,98,103,100,108,100,108,101,96,92,97,76,89,101,95,113,100,113,104,104,117,111,90,100,106,92,100,109,101,103,93,103,89,98,105,110,102,103,89,102,107,114,94,110,105,94,95,94,83,112,110,107,100,106,101,95,102,92,94,98,107,104,101,110,101,88,104,92,104,116,105,107,98,95,90,93,102,108,104,112,104,98,105,96,104,87,109,110,104,120,114,97,90,97,107,93,93,92,83,100,94,105,97,108,105,114,104,110,100,111,106,101,109,112,101,112,97,98,94,91,87,91,96,124,110,99,106,95,112,101,95,113,103,105,113,104,111,105,105,95,98,123,102,100,103,99,100,114,95,104,104,105,116,105,110,107,99,101,88,88,111,99,106,94,96,113,104,92,103,104,101,104,97,101,95,102,98,105,100,94,104,97,97,103,121,104,105,97,102,86,104,106,103,100,99,99,107,104,103,106,92,77,100,88,100,95,101,109,88,111,124,99,109,103,106,103,96,95,113,102,96,100,105,97,109,102,101,100,84,93,103,101,108,103,103,95,107,101,104,102,98,93,105,107,102,109,99,92,110,106,92,96,97,98,88,97,103,97,96,96,104,109,105,98,103,101,116,99,103,104,90,98,113,92,95,90,103,98,104,106,103,83,111,105,102,105,106,114,96,103,95,92,103,97,107,97,108,99,99,80,99,110,101,102,97,88,101,92,101,94,103,111,110,104,96,96,104,89,100,108,91,107,105,109,103,114,98,103,98,100,104,109,85,112,96,99,93,99,98,80,106,100,105,105,97,90,118,104,114,108,104,103,107,85,105,101,107,97,100,96,100,99,79,106,107,96,93,91,94,99,102,100,100,100,114,97,106,101,102,98,103,105,93,92,98,122,109,100,92,96,99,99,92,109,94,101,100,108,98,117,102,110,114,118,105,99,95,94,94,101,104,90,115,110,110,89,99,96,94,111,109,102,118,95,102,108,104,93,109,121,100,99,89,91,94,99,95,105,106,89,112,109,105,122,91,96,100,98,103,100,111,103,137,101,104,117,99,113,106,100,97,100,87,109,104,109,111,82,94,109,104,103,85,97,112,102,109,105,102,99,109,99,91,72,100,98,97,103,120,103,107,102,102,97,116,103,110,95,102,96,117,100,97,100,110,104,99,86,110,103,100,100,102,99,99,87,104,108,95,101,108,99,88,105,99,105,99,93,99,88,105,90,100,118,112,96,105,98,104,98,101,96,101,105,104,99,105,93,93,94,101,105,108,91,99,99,104,105,102,101,104,102,102,114,103,104,106,112,98,100,93,107,104,101,96,100,76,100,101,91,115,100,107,100,94,95,101,95,103,100,111,105,108,97,102,100,98,107,102,93,97,101,117,119,104,102,106,110,112,98,103,104,99,113,97,110,108,108,109,109,98,106,106,112,105,90,104,93,104,113,104,118,111,93,96,99,102,98,98,106,95,97,101,99,102,104,96,98,96,102,98,106,104,97,104,93,93,109,103,110,95,77,95,125,105,107,110,98,102,105,92,105,98,108,111,104,104,100,94,99,99,105,103,108,111,113,113,101,93,113,110,108,106,104,107,112,105,108,107,107,101,91,98,96,95,92,106,114,107,106,114,109,103,100,99,106,127,99,110,90,102,111,101,104,103,101,99,98,100,109,103,105,107,95,105,103,91,100,103,105,113,104,106,103,98,105,110,117,79,101,107,117,96,103,116,108,105,104,110,90,111,99,106,94,95,109,101,102,111,99,112,104,109,97,101,108,105,104,106,102,99,107,101,102,110,79,90,105,102,102,112,101,99,102,101,100,88,95,98,83,107,100,104,91,94,112,111,105,111,99,105,100,92,114,98,90,104,103,111,102,102,113,108,105,101,104,112,96,99,110,107,83,105,96,97,109,105,113,106,106,95,114,105,102,91,103,95,68,105,110,108,100,110,111,103,110,121,106,100,109,112,104,111,127,130,98,105,82,108,122,97,88,116,101,97,101,98,107,84,98,102,106,100,121,113,100,75,103,104,94,103,94,101,100,106,99,108,107,95,108,106,106,117,94,111,99,98,105,107,113,109,98,107,94,119,111,99,106,95,110,109,95,100,95,100,110,104,103,109,97,98,100,99,102,114,96,101,103,101,108,98,104,104,110,91,101,104,107,110,102,94,114,99,98,104,108,97,99,96,99,99,109,94,99,100,99,92,109,102,102,90,107,96,107,107,96,103,112,98,117,98,106,97,107,104,115,99,106,106,97,115,107,95,112,110,101,128,106,106,106,101,96,96,113,99,114,104,101,97,106,102,102,111,96,107,102,107,102,110,99,103,108,94,98,101,102,104,97,109,94,92,88,101,87,104,81,113,106,107,89,105,99,83,97,107,96,109,107,100,85,99,92,98,98,98,109,102,93,88,119,102,98,106,91,110,109,103,81,104,101,118,98,100,102,100,109,105,105,98,99,96,98,91,108,108,105,99,110,90,108,94,113,89,92,94,110,106,82,106,101,116,107,102,111,109,103,93,113,112,99,94,98,104,96,97,110,97,109,109,110,105,113,102,99,105,110,102,87,99,98,104,102,106,98,106,110,91,92,105,96,105,103,101,96,100,92,118,105,107,104,98,103,104,102,100,113,106,96,112,98,98,98,92,117,105,95,102,100,99,102,103,112,97,113,99,99,104,102,101,89,99,95,95,107,102,120,95,110,113,100,108,117,116,106,98,107,95,115,102,103,115,101,100,99,90,123,100,96,109,96,105,97,97,107,106,96,102,106,101,107,103,113,99,114,106,96,99,99,105,103,96,118,100,116,96,113,102,90,97,120,100,106,101,112,98,105,101,91,95,100,101,93,104,105,108,99,115,99,106,116,109,107,114,102,105,99,96,108,99,104,104,113,103,93,117,121,95,85,113,112,105,97,105,114,108,105,92,110,121,92,100,97,96,112,94,103,105,100,100,115,108,98,110,102,129,113,102,109,105,96,87,100,102,90,103,96,99,102,102,97,76,109,96,68,113,99,114,102,102,107,107,98,111,98,95,94,104,99,112,97,105,95,102,112,105,96,101,102,98,104,110,101,103,96,86,108,106,99,94,109,109,106,101,104,98,99,101,103,108,111,94,104,95,97,108,106,99,85,88,103,106,87,98,108,120,109,93,95,102,90,96,94,99,98,109,104,102,89,116,93,104,101,103,96,100,108,116,98,101,95,94,106,107,106,94,93,100,105,99,77,101,104,109,108,103,95,106,111,92,86,108,105,108,112,109,103,105,98,101,103,96,103,73,106,103,96,102,109,111,104,108,90,108,100,118,108,99,107,68,103,103,107,105,98,105,110,98,95,87,104,114,107,113,99,105,94,110,100,99,102,111,96,109,108,104,99,107,110,105,98,106,98,101,105,109,101,103,120,102,106,107,105,78,88,112,101,94,99,105,107,111,98,112,96,105,106,121,114,102,104,115,90,100,107,104,101,106,111,100,107,110,101,106,104,91,99,106,99,109,109,100,94,104,113,107,100,98,108,105,98,107,102,104,94,102,100,102,105,96,93,92,103,104,96,104,94,108,119,100,105,101,99,97,99,113,107,108,103,103,111,101,111,112,100,105,96,105,101,103,102,102,104,113,103,100,93,111,102,109,89,102,95,99,101,129,102,98,95,97,116,94,87,117,100,97,111,96,111,101,100,115,97,102,92,98,105,102,98,110,111,100,92,100,101,113,103,111,104,105,102,104,110,100,94,117,108,98,108,92,106,109,107,104,98,107,109,115,103,95,92,93,96,92,107,95,95,100,114,91,88,108,103,100,107,102,94,104,92,106,100,98,103,102,106,107,97,113,98,113,98,104,97,100,97,105,112,114,100,102,103,90,90,106,107,92,96,108,80,99,104,102,95,101,107,114,95,102,105,102,93,99,94,112,89,98,102,96,104,108,96,83,95,104,111,116,117,117,91,94,95,94,107,106,94,105,102,101,94,98,98,102,100,104,105,98,113,98,111,96,102,108,103,103,103,109,123,108,95,109,104,94,94,111,106,112,105,108,103,117,100,100,105,105,106,106,104,113,102,123,102,117,105,99,98,114,96,92,101,100,91,111,115,120,103,105,136,104,120,113,95,92,93,92,92,108,87,112,94,121,78,106,104,108,108,105,103,113,111,102,91, +658.17053,111,101,72,116,101,95,101,97,96,104,105,121,102,107,105,102,92,117,97,103,105,115,105,100,103,110,103,89,119,95,118,106,103,105,101,100,92,105,101,125,112,106,93,103,95,117,82,112,112,116,115,86,112,109,99,102,102,109,105,94,95,108,101,98,115,102,97,108,103,100,103,98,89,99,101,100,108,110,105,116,109,98,113,112,103,92,100,90,93,117,105,92,94,79,91,98,100,95,111,101,97,109,107,103,98,100,89,113,109,105,102,104,110,108,90,99,111,111,118,87,100,94,91,112,104,105,109,95,97,102,102,107,86,101,108,105,101,110,113,95,98,104,103,99,99,107,117,94,87,89,100,103,115,85,99,104,97,102,108,98,85,102,100,103,101,104,92,96,100,98,117,99,95,110,99,103,104,94,82,109,95,95,109,104,97,109,94,90,102,102,94,95,110,106,105,103,100,115,105,103,105,104,103,98,99,109,103,116,103,104,96,102,113,102,101,90,105,105,107,102,98,103,102,107,103,95,99,104,105,113,85,100,100,98,101,113,104,104,103,117,102,99,104,104,88,102,103,103,99,112,103,96,113,107,100,116,94,99,94,107,102,108,110,95,105,103,104,95,107,111,89,103,91,103,98,93,98,104,95,94,109,97,103,109,109,101,98,91,108,107,96,105,97,102,112,98,101,104,101,104,94,121,102,101,105,114,107,91,100,107,102,109,97,101,101,94,110,83,109,102,102,106,101,106,99,106,95,96,132,100,104,110,109,118,104,104,106,105,95,101,106,82,95,105,98,124,95,100,104,112,98,106,90,118,100,90,99,102,102,104,103,105,98,100,95,98,108,106,93,96,102,97,94,115,107,77,94,98,95,101,105,105,98,103,108,88,89,95,95,102,101,98,67,112,108,106,106,102,103,107,94,99,105,101,102,93,100,106,119,97,96,107,94,103,101,72,104,106,101,95,107,99,90,98,109,94,79,96,91,112,124,102,96,105,102,107,100,100,98,105,106,111,105,100,98,100,102,90,95,102,106,110,99,115,100,95,93,116,95,104,97,109,103,109,116,117,105,92,104,100,106,103,97,112,101,98,116,103,104,93,103,98,121,105,97,101,116,98,97,89,115,104,98,109,96,101,104,96,110,101,108,76,98,107,109,109,96,106,99,107,102,102,100,99,107,100,105,98,99,104,112,109,113,85,104,99,95,109,104,96,95,100,102,103,70,93,95,96,90,108,112,102,105,107,110,110,95,95,102,98,84,109,100,98,97,117,94,108,100,97,106,98,113,107,95,104,103,88,106,95,90,100,107,93,111,100,95,103,100,98,105,99,99,92,102,100,111,109,105,89,111,114,98,106,101,94,96,113,100,104,100,99,105,100,96,95,124,103,123,114,110,102,103,103,113,109,107,98,102,105,106,101,105,99,110,103,101,105,100,104,102,97,109,105,82,90,104,103,101,93,103,100,107,109,100,92,109,98,124,102,112,101,104,106,109,107,107,102,101,108,108,109,92,109,98,105,104,101,103,99,108,113,103,92,109,107,109,103,105,96,102,111,123,100,94,100,102,103,100,101,110,97,85,105,95,95,95,114,99,102,98,102,107,105,102,103,100,102,100,101,99,99,99,99,98,104,99,96,108,94,113,94,104,100,99,104,97,103,102,97,105,96,109,98,98,101,96,101,92,102,113,101,107,95,97,109,115,115,109,106,118,108,101,103,115,110,108,106,107,92,101,105,94,102,87,105,95,94,76,96,102,104,101,104,109,101,117,112,101,95,100,104,113,109,90,116,96,106,87,104,102,108,99,116,95,97,103,102,110,108,98,101,101,103,114,101,110,99,92,107,111,109,97,101,97,113,109,96,107,101,113,109,96,100,107,104,104,95,93,108,101,104,94,109,98,106,91,90,106,89,102,101,102,102,101,93,91,109,95,90,103,93,94,112,99,107,99,101,95,104,86,97,92,107,98,105,104,109,100,102,100,95,95,105,107,114,97,95,100,99,107,108,97,87,117,93,91,98,94,103,109,116,87,110,107,101,121,95,114,98,95,108,102,104,87,97,101,116,100,100,103,108,103,102,126,91,90,112,110,106,95,108,108,100,99,108,80,98,90,100,108,107,104,113,97,104,91,88,103,92,113,112,89,88,111,102,107,108,97,97,89,104,99,115,66,105,96,112,101,105,79,113,118,95,100,101,91,97,100,112,104,102,112,93,101,89,97,89,82,103,92,100,109,96,105,95,102,105,112,101,92,107,101,103,99,93,91,105,100,106,103,95,98,106,95,100,93,108,101,101,97,104,92,97,102,107,119,98,102,114,101,119,105,85,103,103,95,98,116,113,106,107,112,106,103,93,97,105,109,100,88,109,98,94,108,90,98,117,109,101,97,94,99,115,109,99,89,102,102,120,104,109,109,109,105,123,106,104,106,102,102,104,101,109,106,92,105,98,104,102,98,102,94,103,89,118,106,95,99,103,94,107,96,99,107,104,112,83,132,103,108,94,99,97,99,105,110,102,104,102,101,110,106,109,101,109,115,110,98,96,110,108,115,97,102,67,106,103,98,108,117,110,96,107,106,102,100,104,110,95,108,95,104,115,96,98,105,101,108,94,102,110,106,99,94,100,102,107,121,114,98,99,94,101,103,102,112,108,101,104,79,99,101,108,102,92,101,80,100,117,96,112,102,107,103,113,105,100,107,113,107,108,105,106,118,104,102,95,105,117,116,113,108,103,114,99,93,112,97,109,102,104,101,102,104,106,100,118,102,104,108,104,87,106,116,106,101,121,101,100,108,112,99,101,100,107,109,97,102,106,97,104,90,96,113,119,99,102,104,108,118,105,104,115,107,96,93,105,98,110,94,103,104,105,111,106,101,109,108,101,115,105,101,110,101,108,96,98,103,103,96,107,105,103,109,107,101,103,106,95,98,102,100,107,107,111,108,92,102,106,99,107,91,111,108,108,125,113,106,112,108,96,98,99,106,99,89,98,103,95,129,101,109,90,110,99,105,106,97,108,99,98,101,96,109,112,105,87,110,102,91,99,105,99,95,103,109,99,110,109,100,92,98,90,104,100,106,97,106,98,99,97,110,113,101,102,95,100,100,100,93,107,100,116,100,68,106,111,105,92,98,91,99,113,102,90,88,78,96,103,107,95,104,109,99,107,80,105,106,100,106,103,102,106,99,101,108,99,106,117,113,112,103,105,102,97,87,104,100,103,98,99,101,101,102,84,107,99,109,102,102,97,100,108,103,113,90,99,98,113,100,104,107,99,99,98,106,105,122,108,102,95,110,107,100,111,104,102,112,101,109,107,92,101,106,106,97,105,112,102,97,104,89,99,111,116,98,108,106,113,92,113,100,105,101,103,109,109,107,112,101,113,102,104,103,102,117,91,103,98,96,96,102,112,103,109,111,113,102,98,94,110,106,89,98,102,79,104,109,104,101,107,100,104,107,106,101,87,98,93,105,90,94,107,97,97,96,108,105,103,101,102,116,99,104,105,117,100,98,99,102,109,101,117,98,116,107,107,106,130,97,75,96,108,67,103,101,98,105,102,95,102,102,111,99,98,102,99,99,96,93,102,100,94,105,109,109,102,103,105,92,103,110,113,104,102,109,93,103,107,104,110,111,115,95,95,102,102,101,113,102,99,104,97,99,99,94,110,98,105,95,104,99,95,113,117,110,96,100,119,115,103,104,97,112,100,102,112,101,117,101,91,93,106,96,90,107,107,90,115,111,108,102,98,91,102,108,101,108,103,102,106,111,104,105,106,97,101,99,108,99,102,98,110,102,104,120,117,100,101,115,108,100,108,100,99,107,90,90,99,101,105,95,104,110,109,106,96,103,120,92,101,98,104,99,100,102,106,108,100,102,109,116,114,101,101,93,94,100,105,97,97,104,97,107,101,105,104,99,99,98,91,109,99,92,106,112,106,105,132,97,111,98,96,103,110,102,102,101,103,114,104,112,97,101,113,96,107,86,105,101,85,91,106,109,100,93,100,103,108,99,97,103,103,105,101,107,93,108,94,117,98,108,94,110,105,103,96,109,93,109,98,114,109,101,101,112,99,106,96,108,118,97,109,114,103,99,128,100,114,106,98,109,110,93,94,121,91,104,107,100,106,99,108,109,110,94,108,96,102,113,96,112,97,103,99,95,111,102,97,109,113,107,101,117,110,103,110,113,106,107,108,100,115,91,95,114,70,108,107,108,89,91,103,117,90,107,121,105,103,121,105,101,92,100,113,103,98,94,106,105,100,112,105,102,103,101,98,103,110,105,105,101,112,94,115,103,99,85,103,96,107,108,110,100,99,109,90,113,111,108,105,104,95,105,92,112,104,97,98,107,103,104,93,113,103,110,93,102,99,116,110,94,97,92,106,108,114,85,103,90,98,106,116,95,113,93,84,95,104,123,112,114,98,108,104,88,99,100,102,102,104,104,94,111,97,105,114,110,114,115,121,101,91,103,103,86,108,91,113,97,102,108,109,113,105,93,98,108,98,87,110,94,99,98,113,102,106,111,106,109,100,96,117,110,99,115,91,107,100,99,109,99,97,95,100,116,102,106,94,100,96,100,111,87,126,107,92,88,102,99,104,100,99,120,100,101,102,115,91,101,106,102,117,96,97,106,107,115,105,100,90,101,103,94,92,103,117,105,94,94,101,99,97,105,100,107,105,108,90,102,104,110,115,97,107,102,100,93,97,100,111,106,106,103,96,102,96,95,103,98,93,103,105,94,103,117,116,97,105,113,99,104,102,112,112,96,105,112,101,95,104,101,120,109,112,102,114,100,108,117,116,94,94,100,102,99,101,102,103,104,107,99,103,106,100,90,99,97,87,94,95,99,103,108,100,111,102,117,101,106,102,92,99,104,118,109,111,91,97, +658.31177,100,97,100,112,101,94,93,103,92,108,101,110,90,140,107,97,80,109,89,104,108,103,98,93,101,111,109,92,84,99,108,87,83,106,104,128,102,103,81,117,107,100,92,107,96,106,106,101,94,101,108,96,101,107,102,97,92,101,96,108,110,95,104,106,118,96,99,100,101,99,95,101,110,106,95,108,97,97,106,110,97,106,90,107,99,104,108,97,96,100,99,103,121,100,108,102,101,85,106,101,107,108,105,93,100,101,97,103,93,105,101,97,105,91,98,93,108,111,94,95,109,100,105,103,103,104,107,64,98,97,103,111,95,104,100,115,99,106,97,83,113,105,106,102,91,91,100,84,104,92,104,100,103,104,104,104,101,98,100,103,90,98,101,95,105,103,99,104,110,101,104,104,95,98,106,105,112,95,94,96,117,108,80,104,100,102,91,80,99,109,93,99,95,110,106,110,104,108,103,91,97,110,99,101,97,109,105,103,114,102,97,103,91,97,101,93,106,105,98,99,105,102,88,101,99,93,109,100,105,113,95,100,117,117,101,103,107,110,101,101,91,107,107,88,91,95,110,91,101,102,99,108,104,105,91,102,91,78,95,110,106,108,99,104,107,111,99,95,94,101,98,104,99,99,107,104,86,102,105,103,114,102,107,100,94,111,73,102,125,105,96,98,103,104,102,120,103,108,109,68,94,121,112,111,100,109,105,100,97,99,102,110,107,99,98,104,91,106,101,92,104,118,92,98,105,94,92,98,106,91,108,102,100,95,103,106,99,104,106,98,92,110,92,103,96,107,131,108,99,110,113,87,98,111,94,109,98,103,100,104,103,105,104,102,104,102,94,91,100,102,103,109,110,101,104,91,132,110,108,106,99,113,115,113,112,99,91,94,99,94,104,97,100,110,108,105,101,103,98,118,96,101,105,107,94,93,98,105,94,101,105,87,109,110,98,99,105,110,106,99,117,91,102,81,109,88,108,101,105,107,103,112,96,110,97,119,95,94,95,105,113,100,95,97,96,107,103,94,101,119,108,107,102,110,106,93,98,95,102,104,84,103,116,103,105,98,109,104,96,104,110,108,91,99,97,95,95,113,100,102,102,105,106,111,95,108,108,105,98,91,109,115,98,109,101,105,118,109,99,98,108,101,105,109,105,105,102,93,98,95,109,105,105,113,96,117,100,113,75,86,91,103,93,102,88,104,104,106,91,94,110,88,103,106,101,105,100,104,105,92,105,100,95,101,118,95,122,92,105,98,102,106,108,101,109,99,100,99,89,95,116,104,98,104,108,103,96,108,103,110,106,97,112,100,101,97,104,86,75,102,118,98,108,94,110,93,100,100,102,106,119,105,93,102,107,96,102,109,99,101,106,97,96,103,100,95,91,91,110,106,100,99,116,116,102,95,101,105,101,93,108,102,101,123,104,103,74,120,91,101,99,113,81,101,109,117,105,98,95,110,104,96,101,98,117,93,102,100,106,101,103,104,97,105,100,107,103,95,105,99,118,111,100,102,90,73,100,93,109,114,99,110,96,100,95,106,91,94,97,95,122,101,105,93,97,120,107,92,97,106,115,96,101,89,115,102,104,111,113,99,110,99,66,106,90,107,102,112,94,91,113,99,99,90,106,98,96,107,97,91,104,116,79,117,95,100,106,94,94,113,103,106,106,94,101,101,96,115,110,101,102,95,109,103,101,107,113,98,105,104,121,94,93,101,107,117,103,112,92,108,102,100,100,95,103,80,96,96,118,111,103,96,108,94,109,106,94,105,112,94,116,99,116,99,101,108,92,109,106,99,92,99,101,97,106,103,109,103,102,105,99,111,87,108,99,111,104,99,111,105,103,101,97,107,102,99,87,108,98,104,100,95,98,96,95,100,103,108,97,101,105,113,92,98,98,101,101,102,110,97,111,114,105,103,96,105,102,94,81,104,102,105,107,100,89,100,101,107,97,103,92,99,91,101,109,98,96,94,109,94,97,114,109,104,106,104,99,92,100,99,103,105,94,103,93,104,105,112,98,110,101,102,107,114,105,109,97,98,94,89,91,115,107,109,102,98,94,86,103,103,96,105,104,97,106,105,88,96,95,105,105,100,103,92,97,101,70,100,102,112,89,99,104,100,102,118,107,102,102,99,109,105,112,100,92,98,106,103,99,99,99,62,103,91,104,97,110,103,98,96,102,109,99,100,115,101,95,99,94,98,91,100,97,105,91,110,106,91,93,107,98,98,106,97,98,108,92,99,83,113,100,89,96,104,100,93,107,103,106,101,106,104,102,105,104,83,102,105,101,103,89,105,76,98,99,100,100,96,104,91,93,94,99,86,108,110,112,95,95,92,100,105,106,105,105,98,103,109,101,110,94,109,109,99,104,103,91,104,99,99,95,103,115,106,107,99,101,106,107,96,103,111,112,104,99,108,112,105,100,109,100,106,107,88,102,104,101,97,96,97,105,116,98,123,111,106,96,109,103,109,109,103,113,105,84,104,100,91,125,96,95,95,105,135,96,111,103,110,98,102,100,102,108,106,99,98,90,116,87,99,115,105,101,106,112,109,100,99,105,99,108,101,99,96,98,115,97,105,112,93,112,98,105,99,113,106,102,108,109,97,118,104,111,105,96,102,102,102,99,111,105,96,96,102,107,96,97,106,110,102,104,100,104,107,92,97,110,99,123,103,110,102,98,94,101,110,113,107,113,109,83,109,104,121,105,106,108,100,102,103,127,104,115,99,101,102,101,108,97,98,102,111,109,98,108,109,117,107,99,101,105,116,104,109,98,108,106,104,101,107,98,102,105,106,97,107,113,111,105,106,100,102,115,110,112,111,104,109,106,99,97,99,102,100,99,102,109,112,94,105,101,91,95,109,110,113,85,100,100,107,121,83,106,106,110,96,95,96,99,99,94,85,115,101,99,107,104,107,101,108,111,104,74,107,106,101,113,97,110,106,112,108,109,104,90,105,104,103,101,108,101,102,95,104,99,117,101,103,121,99,108,108,104,119,110,66,100,110,109,98,91,99,102,113,96,106,115,107,115,110,102,117,105,112,117,105,96,97,98,84,97,100,105,110,96,94,102,112,104,140,98,109,112,100,102,98,109,109,100,108,97,103,106,104,104,109,89,101,98,99,95,97,103,109,98,88,110,103,113,94,101,106,105,108,115,104,115,98,118,101,111,103,87,106,109,108,96,74,110,101,91,98,87,114,107,96,103,106,102,99,102,105,99,102,105,102,87,77,107,96,123,108,103,117,109,103,95,105,106,103,110,94,110,113,104,106,107,97,100,106,111,97,99,100,97,111,109,91,109,101,106,95,109,101,114,106,99,113,105,97,100,97,77,102,114,98,100,111,108,94,97,105,107,105,94,109,115,106,98,114,103,106,105,90,96,92,107,121,109,98,92,99,107,113,104,104,102,103,100,111,116,95,88,109,103,110,107,99,105,102,107,97,110,90,102,109,111,98,109,105,89,97,109,100,96,94,113,113,101,101,100,96,107,108,110,98,98,111,107,97,105,106,103,65,103,94,104,107,104,113,94,101,102,96,102,105,110,117,99,115,106,98,93,87,109,100,107,110,104,87,103,99,103,116,95,92,104,96,102,83,93,104,103,109,108,96,64,121,104,110,102,112,108,103,97,105,112,103,113,106,109,107,107,111,98,105,101,91,109,112,95,111,102,104,109,104,103,91,89,104,114,113,106,109,102,94,99,100,113,95,103,105,117,102,104,106,104,86,110,103,103,101,101,111,100,111,107,110,102,105,100,91,104,98,100,93,95,88,103,108,112,96,102,96,107,102,108,102,102,99,106,105,116,106,94,118,111,116,94,109,116,105,99,114,103,101,107,105,111,102,102,130,100,83,94,103,100,100,97,112,102,115,99,95,103,93,99,96,102,116,106,99,116,107,113,95,109,92,125,103,95,103,109,114,114,99,107,110,95,100,91,103,75,102,105,111,102,97,104,102,104,106,100,106,100,104,109,108,97,113,98,101,103,99,108,108,116,94,107,112,105,97,98,96,96,89,97,108,97,82,72,110,103,97,103,109,111,112,96,97,103,97,108,98,119,106,110,104,99,102,104,113,108,104,108,109,125,106,96,110,112,102,105,80,106,108,111,114,107,110,106,99,99,111,101,111,101,100,109,99,109,103,100,89,99,103,105,96,107,89,100,105,103,102,112,102,105,110,107,91,121,108,105,108,106,119,98,106,101,104,102,95,106,94,103,107,109,115,101,113,99,91,102,117,97,91,97,99,109,109,112,86,107,90,95,106,101,92,106,110,98,96,117,106,101,113,106,109,105,108,96,105,104,112,102,104,107,101,112,108,115,112,110,90,109,101,85,96,100,118,106,107,115,109,102,96,113,102,104,103,98,122,108,97,103,113,106,77,104,100,60,96,116,101,99,97,90,104,103,94,112,108,106,87,112,96,101,95,103,105,95,97,120,97,109,100,102,98,108,110,95,117,102,99,101,99,116,106,109,118,108,81,91,109,108,109,98,113,106,120,95,91,101,105,91,111,109,110,96,104,99,109,105,98,110,108,98,110,123,87,94,103,113,106,105,96,100,95,90,91,94,99,93,110,104,107,103,94,101,96,109,94,106,101,108,113,111,97,104,87,101,106,111,101,100,103,102,100,102,102,115,113,106,98,104,94,113,99,110,105,107,96,105,113,99,109,105,107,95,108,110,112,98,90,104,94,92,97,110,94,110,103,102,108,118,105,106,108,121,113,96,107,105,97,77,102,102,106,100,110,94,101,101,72,108,104,106,111,94,105,110,108,86,103,105,105,109,101,106,110,93,111,100,98,114,113,101,104,105,111,108,112,104,115,116,98,99,103,104,96,98,131,108,94,99,99,95,104,93,107,102,98,95,99,104,101,101,96,105,100, +658.453,105,104,107,104,98,100,114,98,99,115,87,87,111,106,83,102,95,104,99,102,109,122,93,112,91,98,106,80,94,103,104,98,83,108,106,102,108,108,87,109,94,96,98,110,110,103,95,108,94,113,107,106,87,95,106,91,90,105,98,93,107,104,110,98,103,102,93,95,107,88,117,99,90,93,89,106,96,88,110,128,109,95,101,107,109,108,98,103,97,100,110,101,100,104,105,99,94,121,97,98,104,96,101,100,97,98,102,98,99,103,102,103,102,96,101,105,104,107,110,104,119,105,106,107,112,114,118,96,105,106,104,101,92,99,97,89,86,117,96,102,99,104,87,115,109,87,110,105,98,101,117,96,103,82,119,111,86,102,97,109,102,103,97,96,96,115,92,108,108,89,104,103,91,95,96,106,105,94,113,98,97,88,105,109,105,95,97,87,90,102,97,99,108,100,100,108,106,101,91,106,100,114,107,93,104,104,99,94,120,104,94,103,118,100,98,104,106,95,101,116,102,117,104,106,101,104,100,110,98,107,98,98,99,109,100,102,105,110,97,96,113,93,102,112,105,94,100,101,100,106,99,92,97,113,95,82,105,109,94,108,91,104,100,106,101,104,101,104,95,104,93,101,107,89,104,107,98,101,101,94,98,98,96,106,104,113,98,113,103,107,115,103,100,99,98,109,105,117,111,108,104,88,104,107,94,116,99,104,104,100,99,92,96,92,102,91,96,103,112,111,104,104,107,109,116,96,107,108,112,115,103,96,101,111,97,103,117,117,104,103,95,90,101,111,98,107,106,103,103,102,107,102,97,118,103,104,103,109,112,105,105,98,99,98,99,95,117,103,103,117,99,113,98,101,104,99,110,99,106,102,100,101,113,107,94,97,99,99,105,106,125,100,102,109,110,108,103,100,102,103,100,110,106,106,105,98,97,108,107,98,94,96,105,97,103,117,101,106,99,98,93,107,114,101,83,99,90,105,99,111,97,90,94,97,104,99,106,109,104,115,110,91,115,100,95,106,101,103,108,102,105,113,98,100,100,89,102,111,105,110,110,104,104,107,114,100,107,99,99,94,101,106,103,103,98,105,99,112,107,102,101,127,109,108,114,96,102,115,110,98,99,94,102,96,110,95,99,103,101,82,107,108,104,98,100,99,106,109,113,105,97,91,101,109,108,93,105,100,91,87,100,105,101,97,104,107,101,100,97,111,85,108,101,117,107,108,109,102,104,105,87,100,86,99,93,99,103,103,109,116,112,112,115,94,98,112,105,94,99,98,102,103,108,102,85,104,105,112,93,94,94,105,107,105,109,113,106,101,109,109,112,105,92,100,111,106,106,102,112,109,94,111,101,99,106,105,86,106,121,93,95,105,108,103,101,93,100,99,101,110,111,116,100,86,107,106,103,118,109,96,112,97,107,90,97,106,92,110,103,101,97,93,108,109,108,97,99,99,105,106,100,103,102,105,104,90,120,91,104,106,94,98,104,100,101,102,111,112,93,99,100,115,95,109,106,104,95,95,107,106,106,80,105,98,112,102,103,94,96,99,100,104,120,91,96,103,113,99,108,101,101,104,101,99,102,105,102,108,109,105,100,91,101,95,99,103,108,113,93,95,101,109,101,103,97,101,103,100,107,93,108,102,109,87,96,96,105,96,102,100,100,100,103,106,96,92,104,97,97,102,121,98,105,101,96,102,99,98,114,108,108,95,98,121,113,97,104,112,114,98,101,106,101,100,102,101,96,112,101,98,116,95,113,114,104,104,101,106,109,107,109,106,98,106,96,104,104,103,103,104,100,102,94,83,100,101,99,102,101,109,95,113,96,101,108,102,101,117,109,97,113,110,107,86,109,104,120,98,99,95,104,122,112,114,101,97,110,106,106,102,95,94,103,116,102,102,112,113,102,105,101,125,106,83,100,97,93,107,95,94,96,92,105,87,103,102,102,109,91,92,108,109,103,116,105,91,107,92,98,111,101,95,102,96,103,113,70,113,106,106,103,115,96,101,106,114,95,102,106,104,102,107,102,95,113,94,99,96,105,106,117,112,118,98,96,92,93,92,85,101,113,101,108,118,101,109,102,105,98,100,108,102,109,102,101,101,103,106,95,100,98,106,84,104,98,100,99,106,102,105,97,102,102,102,114,101,100,104,97,108,98,100,111,114,100,104,107,109,101,101,100,108,103,95,100,110,92,103,104,107,91,112,103,101,100,90,105,92,84,109,99,99,106,100,115,97,98,89,101,100,104,95,97,103,100,100,96,111,101,114,94,111,96,97,107,90,100,102,99,98,101,104,116,94,97,95,100,90,92,105,100,95,109,86,112,104,96,104,117,97,105,114,144,100,96,103,98,93,97,110,83,102,102,100,102,90,99,100,94,98,106,111,108,107,111,112,102,102,103,115,77,107,112,96,104,98,105,110,112,96,83,108,100,100,109,84,107,100,91,111,104,95,101,110,102,105,132,104,113,104,108,95,110,95,104,85,105,101,119,98,99,93,106,100,106,95,99,94,103,108,106,106,103,99,109,101,125,112,89,112,103,111,112,92,111,104,105,97,73,111,91,109,104,99,114,88,91,104,98,100,104,91,98,112,111,88,104,95,97,103,101,109,121,108,98,90,106,97,98,119,101,99,100,88,96,98,105,102,106,101,79,98,109,95,99,91,97,98,103,101,99,115,99,97,108,93,116,87,108,109,96,115,102,105,88,97,102,112,98,101,107,92,107,103,134,117,100,112,108,102,110,103,112,91,91,86,108,107,110,113,90,112,106,116,100,98,105,106,106,105,97,100,109,118,110,103,100,105,112,108,95,105,95,87,113,113,124,102,112,106,105,109,103,99,94,117,98,91,102,107,113,105,100,104,98,86,115,102,103,102,119,105,109,110,95,99,103,104,103,103,119,99,95,109,112,104,102,102,109,104,98,110,99,112,105,102,96,104,109,96,102,100,112,105,107,105,110,109,102,92,111,109,112,108,113,97,104,120,105,112,131,103,103,99,106,102,100,109,105,113,95,110,93,117,98,101,96,118,108,113,109,111,111,97,106,109,95,107,107,108,100,118,110,108,100,95,114,107,99,100,108,99,97,105,102,98,109,103,107,94,109,91,102,103,92,106,107,100,102,101,107,104,105,105,100,100,105,104,77,101,105,103,103,95,86,102,90,96,106,103,107,102,102,111,100,107,97,95,100,102,100,99,105,101,99,98,95,112,97,106,109,109,107,98,106,94,99,94,98,113,98,107,108,105,106,116,92,99,115,101,116,104,125,107,100,96,105,99,114,111,90,84,110,103,99,126,106,100,98,110,107,91,103,91,113,102,99,95,96,91,98,112,113,95,125,107,102,103,114,104,99,107,105,104,107,106,105,102,94,101,129,112,99,108,100,113,110,87,102,96,95,100,93,105,105,94,100,100,102,95,102,103,104,99,105,103,105,95,102,96,102,103,108,97,106,113,113,118,108,98,103,108,93,105,96,99,106,98,94,90,111,106,113,103,113,117,100,118,96,110,111,112,106,107,95,106,103,95,115,121,99,110,108,109,96,102,95,123,106,109,107,117,101,100,100,110,105,108,106,96,86,93,101,114,92,89,90,100,110,116,95,110,101,104,104,93,92,94,113,97,91,102,110,107,100,98,100,91,116,103,109,96,109,104,98,100,100,122,109,107,106,104,98,87,106,97,107,94,110,99,96,112,107,113,120,104,114,105,99,106,101,95,109,101,122,99,100,114,96,102,122,93,94,102,109,106,106,128,97,112,109,96,99,101,104,102,101,89,104,99,91,106,102,112,112,100,105,94,109,96,115,101,106,101,91,111,106,95,110,88,104,108,117,94,101,91,118,99,114,104,95,100,98,97,111,106,95,99,86,113,101,83,98,100,109,103,98,106,91,102,103,115,103,105,120,109,114,79,101,105,110,91,102,108,94,106,100,103,87,108,109,110,109,120,103,102,104,95,96,100,108,94,97,105,102,98,102,107,109,95,115,102,98,117,112,104,99,102,107,101,108,99,104,92,101,112,103,97,117,98,108,111,107,97,105,112,106,99,107,82,112,103,100,88,98,106,108,100,112,95,108,106,110,98,97,114,106,108,102,105,92,100,106,105,108,96,117,105,103,117,98,98,102,104,99,109,117,99,96,98,93,95,105,97,109,113,116,95,93,102,92,104,112,99,109,99,100,103,108,115,128,122,102,94,108,101,102,93,86,96,108,112,98,116,106,100,101,124,97,105,112,106,110,102,97,101,102,96,113,112,103,110,99,92,114,102,96,89,103,98,109,102,99,108,121,108,98,98,98,116,102,122,107,104,91,104,99,115,104,107,101,111,113,111,92,101,106,95,102,99,104,111,114,117,100,124,108,108,101,109,105,110,109,105,96,106,112,103,92,113,96,95,109,112,75,101,112,102,93,96,102,121,99,104,102,97,95,95,112,97,100,100,108,107,106,97,95,97,99,111,109,93,111,106,104,96,100,87,125,102,98,114,94,99,112,111,99,110,100,103,90,90,104,102,95,104,107,100,111,105,97,104,98,94,105,106,98,88,110,98,112,105,97,87,103,113,112,100,95,101,101,98,87,117,98,118,99,101,102,106,101,103,100,105,108,106,106,100,109,95,108,115,107,110,107,107,105,102,99,109,101,107,111,113,101,102,106,102,112,112,102,100,102,106,98,109,89,116,101,98,106,118,104,107,93,101,98,80,101,101,108,89,88,103,107,84,115,91,102,109,98,114,104,108,88,103,117,112,109,98,102,70,101,108,117,105,107,133,93,110,106,98,87,100,120,107,98,112,104,93,102,104,98,95,96,113,90,92,102,107,99,97,108,110,96,103,100,111,111,92,93,108,107,99,117,109,111,111,87,94,88,98,96,90,108,107,117,104,106,95, +658.59418,120,110,91,93,87,108,101,90,102,107,93,95,107,88,117,109,112,100,93,101,108,110,105,109,113,100,106,113,97,107,98,104,113,100,106,95,97,97,103,100,104,100,109,106,108,116,114,113,112,104,108,117,107,93,99,104,96,87,112,88,98,101,112,101,111,126,99,78,95,102,98,99,108,115,96,113,98,111,101,110,117,108,101,109,111,95,99,105,98,99,106,97,101,96,106,102,99,95,97,95,103,102,107,96,103,112,106,98,98,77,107,106,95,107,105,96,109,106,108,113,111,94,106,102,101,104,102,103,100,121,106,94,106,93,110,102,109,97,105,104,102,95,104,111,94,100,104,102,107,98,104,95,131,99,100,100,116,85,127,106,95,105,98,112,121,106,105,95,107,100,96,96,101,109,92,101,86,94,104,108,109,98,98,108,112,100,100,93,100,89,101,105,116,103,96,106,96,96,113,99,101,97,106,106,98,104,101,94,120,106,105,109,106,105,91,103,101,86,106,103,109,106,96,106,97,113,99,101,110,110,102,99,89,115,95,114,99,91,110,107,101,94,108,104,99,109,106,98,105,95,91,95,100,109,98,113,102,101,97,106,103,106,118,106,101,109,111,105,101,101,107,101,85,107,104,114,117,107,98,102,99,121,97,95,101,102,95,94,106,106,99,96,105,106,111,105,103,96,83,106,101,113,107,86,92,109,102,104,101,107,93,100,93,104,111,101,116,98,99,96,95,99,99,113,105,100,101,93,113,108,94,109,113,103,94,111,104,97,101,93,105,100,109,97,111,108,103,100,105,105,96,96,104,117,113,105,99,106,103,108,101,114,104,95,109,96,103,96,110,102,108,103,94,100,110,93,100,100,101,105,107,98,109,104,108,111,103,109,108,98,105,96,102,88,104,106,106,103,100,101,116,118,88,100,104,100,98,121,91,97,112,103,114,98,89,90,111,93,115,107,106,113,107,110,106,92,95,105,102,110,98,113,113,92,103,101,113,109,95,100,109,91,101,110,95,113,106,103,105,104,107,93,103,102,106,98,104,102,92,102,105,98,99,111,102,144,108,112,102,95,114,100,99,108,101,109,103,117,91,109,111,110,82,97,108,106,111,117,125,90,91,106,99,105,107,98,102,104,104,103,109,94,99,90,103,109,110,108,106,90,114,110,109,105,109,105,95,98,101,89,95,98,114,94,80,96,108,111,116,97,111,104,94,101,106,83,98,105,122,107,101,108,102,95,102,98,106,99,91,109,97,102,115,110,94,99,100,96,104,91,107,108,107,98,100,106,96,103,103,109,98,106,100,106,115,88,97,108,98,105,111,99,100,113,100,109,113,95,105,101,99,111,101,100,116,100,92,109,113,99,95,106,106,105,85,109,101,83,105,104,109,101,103,115,108,107,99,116,113,103,105,94,90,102,104,106,99,106,103,91,108,111,103,105,91,113,102,108,112,92,110,114,104,95,97,87,114,113,91,107,95,112,96,90,98,114,100,105,99,104,111,111,98,104,95,103,140,103,117,106,111,95,102,101,96,112,108,90,101,105,98,87,108,93,98,101,95,114,101,107,88,100,94,97,104,96,114,100,111,111,103,78,101,103,109,112,103,109,108,102,110,97,115,102,101,99,93,96,108,100,100,95,105,104,100,102,96,102,112,109,99,104,103,110,95,86,109,105,113,109,106,101,106,97,117,95,107,121,99,114,116,116,107,104,105,110,107,100,94,117,104,110,88,92,114,97,99,111,120,96,104,117,92,105,95,105,101,92,103,106,95,102,99,108,98,104,93,113,96,99,112,108,113,89,113,102,103,107,96,110,97,106,90,104,104,121,113,111,111,98,105,106,101,102,108,99,109,107,104,101,99,106,108,120,99,121,102,96,100,87,102,111,103,107,84,107,123,102,118,96,109,117,108,102,87,95,94,99,108,105,107,103,105,109,107,109,106,113,107,94,96,99,104,113,92,99,109,107,103,111,110,100,104,100,92,99,110,100,97,104,96,95,93,98,108,105,94,114,91,100,104,111,101,101,104,101,102,104,101,111,100,96,106,97,105,114,91,114,114,95,100,107,108,92,107,108,93,104,102,100,112,105,99,90,101,100,103,96,104,98,102,104,99,107,103,102,98,106,114,110,122,104,106,100,96,103,116,95,114,104,112,100,102,100,103,102,117,110,120,87,105,113,114,114,112,93,90,92,108,108,108,135,111,93,86,106,105,110,101,96,93,95,102,99,120,99,101,107,103,92,102,93,98,106,101,94,90,104,113,105,101,104,105,110,111,110,98,83,98,112,91,100,97,101,101,118,122,109,107,94,106,103,88,102,108,91,100,104,106,96,100,114,113,109,111,84,101,94,100,89,95,107,107,95,107,98,87,107,110,97,101,88,114,121,113,106,110,109,98,113,103,115,111,111,94,103,102,104,108,104,100,111,107,114,100,106,99,107,108,93,97,102,91,102,82,107,102,103,104,104,112,107,98,106,99,99,108,106,103,106,99,95,96,106,107,101,98,96,97,107,112,113,108,117,113,102,102,102,105,98,134,96,101,105,101,105,91,101,108,102,102,88,95,105,106,106,107,126,102,96,116,107,93,108,108,108,97,103,106,87,99,103,105,109,85,112,97,97,106,95,95,95,99,94,105,95,97,105,110,108,100,109,103,101,105,101,108,97,102,99,103,91,103,73,99,106,112,98,107,99,100,110,113,102,117,94,109,101,102,106,98,86,92,100,99,106,113,105,106,100,106,110,80,108,103,102,102,98,125,101,118,115,96,105,94,111,90,106,116,105,93,104,94,105,108,126,100,103,109,91,107,98,107,96,107,97,100,98,111,119,95,115,107,97,113,104,106,96,97,91,112,106,97,92,105,100,112,109,106,111,111,110,101,103,96,93,98,101,83,107,108,103,107,95,103,93,95,93,103,95,91,96,96,99,100,105,101,107,101,91,85,110,119,98,101,99,102,101,97,93,98,105,99,104,102,97,103,100,93,101,112,109,97,100,103,100,101,101,93,117,102,96,97,104,118,108,94,105,103,104,99,105,103,100,112,87,111,101,112,121,104,111,106,101,98,102,113,104,92,109,97,111,118,98,102,111,95,107,99,98,100,105,95,113,98,93,108,98,96,114,97,100,92,118,93,90,108,95,109,95,99,102,105,99,101,115,100,99,106,107,116,109,93,109,100,104,121,114,100,109,113,101,105,108,117,95,105,108,107,117,112,108,109,96,93,106,106,100,107,104,102,102,104,114,119,114,107,104,99,114,112,101,106,121,104,93,98,100,96,97,101,95,113,109,105,105,117,104,102,102,96,101,101,99,99,106,92,105,99,87,106,106,99,105,111,109,90,107,99,101,119,106,116,105,119,111,99,99,92,106,109,111,103,103,110,103,103,103,109,109,98,94,107,96,99,112,105,97,108,93,90,102,97,101,93,122,95,103,102,111,95,107,99,104,110,110,104,90,99,100,105,104,104,83,97,96,103,99,112,97,104,96,99,111,101,110,102,98,99,106,109,99,112,103,99,103,104,81,102,113,104,107,90,94,109,123,98,112,107,107,109,100,133,111,101,104,99,103,93,95,95,99,98,108,105,103,107,105,109,106,111,88,112,93,99,83,103,93,110,112,112,102,104,102,101,95,92,104,109,108,109,97,95,99,102,109,87,68,114,106,102,111,111,102,98,102,96,100,104,98,106,113,100,98,103,97,107,108,111,109,95,105,99,103,113,96,104,94,100,101,109,95,94,95,108,100,109,105,104,114,106,102,109,102,99,100,110,96,97,99,96,107,105,103,91,110,102,105,99,124,107,100,106,99,108,129,98,94,96,97,102,105,99,112,95,101,100,107,107,95,99,121,99,101,91,95,106,107,104,98,106,108,102,117,95,84,103,87,108,99,107,79,96,105,114,99,111,96,111,106,96,101,102,101,109,105,101,125,104,84,100,115,99,107,99,112,99,102,98,97,115,104,115,112,102,98,97,99,117,108,96,105,92,100,112,94,101,112,110,112,107,105,114,92,100,102,109,94,91,107,103,105,98,102,108,115,121,98,104,102,112,104,104,92,103,108,108,79,121,107,89,105,102,118,104,100,106,116,91,109,105,101,123,107,99,108,94,108,98,108,91,101,96,126,95,96,109,104,106,99,107,96,100,120,104,102,105,92,112,105,93,103,100,97,109,97,105,109,112,111,108,100,110,106,107,100,103,103,95,96,101,105,104,105,109,87,106,107,91,108,99,104,113,108,100,100,115,103,113,97,98,101,102,95,94,106,105,99,117,105,93,102,98,110,126,103,102,108,108,83,109,99,97,117,124,99,111,103,97,105,105,99,101,101,113,104,105,92,108,107,107,98,99,102,113,120,109,90,78,102,88,103,96,102,105,94,103,102,99,100,101,94,117,109,99,104,94,102,93,91,113,105,94,112,101,94,103,102,74,91,111,113,99,110,98,114,102,97,102,108,129,101,93,105,108,103,105,101,104,99,104,106,94,107,109,101,107,108,103,104,102,104,105,112,103,106,104,102,105,110,105,97,111,76,112,96,106,97,98,102,105,103,111,109,101,109,112,100,101,95,106,96,100,104,94,94,109,99,96,118,110,104,89,106,100,100,110,109,95,103,113,96,106,113,108,92,104,107,100,106,102,100,100,100,105,103,98,101,91,97,99,99,109,100,106,98,104,103,93,115,107,109,113,101,98,97,89,103,95,82,100,103,98,97,94,108,112,97,101,87,108,110,95,96,100,102,108,107,100,104,93,92,89,100,100,120,86,101,89,101,106,106,107,107,114,92,89,112,107,104,114,103,91,96,105,99,89,112,110,111,90,107,116,100,105,103,107,97,103,90,101,101,117,107,93,102,96,111,95,111,109,94,107,106,95,95,104,109,100,104, +658.73541,78,94,104,94,94,105,113,127,99,99,97,101,92,94,104,99,99,99,104,105,101,110,95,103,100,98,106,94,99,97,101,110,87,91,110,97,114,102,104,101,98,93,105,118,102,104,83,122,94,97,99,99,101,95,103,100,98,96,102,97,104,94,93,97,109,78,96,107,105,105,85,104,110,103,97,87,101,93,86,107,101,91,103,104,104,110,99,100,100,102,98,103,118,101,104,91,107,104,101,97,106,105,103,110,117,90,99,102,101,105,95,108,105,94,88,93,106,113,102,106,93,104,102,109,109,98,102,102,100,105,107,108,99,108,96,99,107,91,110,106,103,94,108,100,100,92,106,100,103,100,101,106,100,103,115,99,94,102,107,88,110,108,108,95,106,87,102,106,101,100,105,99,92,104,101,105,105,102,100,106,99,107,104,93,96,104,109,104,102,89,96,97,101,98,101,105,94,100,97,89,98,106,95,96,97,103,100,118,98,99,102,97,106,110,105,110,101,103,104,98,101,105,107,98,96,114,102,101,106,117,102,103,89,93,90,94,112,115,101,98,111,107,102,115,103,111,97,103,102,109,100,94,100,100,85,107,96,79,102,105,101,111,97,90,96,98,79,98,100,94,100,99,93,112,109,104,97,96,100,94,107,99,94,111,106,101,101,92,104,108,96,79,106,111,113,104,99,100,104,95,83,114,115,107,87,91,108,109,103,114,100,97,98,105,97,124,101,95,66,104,98,106,97,100,110,101,101,86,103,76,96,98,100,109,104,93,109,95,106,101,96,98,79,97,115,112,101,100,100,111,108,98,111,109,105,106,104,113,106,100,99,110,96,89,109,104,88,99,100,109,95,100,110,100,103,100,102,95,111,107,114,112,104,103,102,108,93,100,104,83,108,97,90,105,98,107,96,106,106,105,103,110,110,94,92,102,101,102,108,89,98,102,120,109,105,89,103,101,97,107,99,100,105,103,89,96,119,91,107,105,84,99,91,120,102,112,101,96,102,88,115,120,97,95,97,94,108,97,110,109,105,91,99,121,99,104,98,88,104,102,99,103,106,108,110,102,112,92,95,103,116,114,93,104,97,91,113,98,104,99,103,111,109,102,102,109,110,100,109,95,105,102,91,106,111,100,99,99,96,94,112,95,67,94,98,81,98,93,113,92,101,99,100,100,118,123,112,105,100,92,110,100,104,116,109,104,101,86,96,99,100,107,99,108,108,90,93,75,99,104,97,105,102,97,104,104,99,97,99,106,99,105,101,90,106,98,100,94,103,103,103,100,106,102,101,99,105,102,99,91,82,104,103,104,108,105,99,96,107,103,111,95,109,102,100,101,91,101,106,104,99,117,92,96,106,117,98,105,99,84,100,97,95,108,107,100,102,101,99,102,105,95,114,113,108,101,108,89,107,94,114,92,103,102,104,110,94,102,100,96,92,112,98,107,102,103,95,100,104,94,101,108,102,96,94,101,99,92,110,101,99,94,107,117,100,106,100,110,104,111,117,107,95,92,93,98,104,109,117,102,99,90,100,91,101,98,104,106,98,107,109,98,95,104,97,103,104,92,103,111,109,99,99,113,102,100,106,114,112,97,106,91,96,92,97,103,113,108,93,99,104,95,100,96,96,104,101,107,99,105,99,101,100,100,91,101,97,95,98,114,94,102,101,106,86,101,101,96,115,99,101,95,100,100,102,113,105,103,97,99,111,92,107,89,96,113,106,99,111,111,105,106,97,109,101,112,106,109,81,102,107,100,100,109,102,114,100,98,107,95,104,98,129,106,95,105,102,108,100,102,99,102,97,91,113,101,89,102,108,104,96,105,91,100,95,99,96,96,111,104,107,102,111,98,101,98,98,99,103,100,106,106,99,94,111,119,106,90,94,110,76,95,97,106,94,103,102,108,114,101,112,100,90,88,110,91,96,92,92,101,94,106,96,107,97,105,90,103,97,105,99,99,108,110,104,104,96,106,91,112,128,108,98,93,104,100,94,104,103,114,87,108,106,97,110,97,103,90,105,99,98,108,109,92,113,87,100,113,96,103,108,109,105,105,113,93,83,110,101,104,109,116,113,109,91,109,93,104,98,109,106,105,103,114,111,104,104,94,119,105,114,102,86,106,95,101,91,102,102,96,104,102,106,106,102,109,99,94,101,93,98,103,111,127,90,103,103,100,101,100,106,114,108,104,103,97,109,108,99,105,107,110,105,108,101,102,104,102,98,105,111,109,106,98,100,108,99,96,92,113,103,96,100,100,98,101,109,108,95,110,93,93,98,113,101,106,121,105,88,90,123,102,86,115,92,96,102,102,90,108,111,101,101,94,107,102,97,111,97,109,97,110,94,114,98,99,111,108,101,107,117,107,87,102,82,102,108,102,106,105,105,99,99,104,92,95,102,107,103,104,108,96,102,98,99,95,113,98,105,107,95,106,101,101,92,93,108,114,95,92,99,111,97,106,109,78,105,110,104,102,103,97,99,103,95,98,108,101,110,98,96,99,99,107,103,104,99,95,120,95,106,103,109,96,98,105,102,99,106,94,100,97,96,110,89,95,104,115,117,96,104,105,102,92,99,101,100,102,91,94,102,96,94,107,101,109,111,131,96,93,100,113,110,99,106,110,99,100,99,106,112,101,82,100,102,95,89,94,99,99,102,105,121,101,96,111,119,109,109,115,101,101,103,99,106,104,111,100,106,101,97,98,107,104,96,95,106,98,97,105,112,110,104,109,97,89,102,107,106,107,113,100,91,102,100,102,99,109,106,105,106,117,107,111,110,98,100,107,96,100,100,101,101,99,117,92,113,101,99,99,111,97,107,95,124,109,108,118,94,115,101,98,108,103,121,94,106,104,99,102,96,105,102,109,105,104,90,91,104,79,106,120,108,115,108,101,100,107,101,112,102,111,96,119,102,106,103,95,104,95,102,125,93,99,85,109,101,98,113,113,113,109,99,104,97,105,107,100,97,110,109,109,110,79,102,119,94,99,100,102,107,115,100,97,109,109,106,113,111,98,89,102,108,102,98,100,106,99,98,97,108,102,102,99,110,113,107,89,94,98,97,112,94,98,82,93,111,109,103,109,91,115,106,96,99,94,109,105,100,78,104,102,95,101,98,95,105,105,99,96,109,82,101,111,117,94,104,102,98,92,105,103,104,88,101,101,102,98,103,104,105,105,101,105,95,105,111,92,101,95,102,101,101,92,96,99,104,107,95,97,101,104,100,105,95,102,95,106,102,101,99,94,99,112,98,92,97,103,98,104,103,111,106,121,97,102,105,91,104,98,100,105,100,108,100,107,111,94,112,108,117,95,104,91,97,94,85,100,94,91,133,110,104,115,109,101,98,104,106,102,99,102,100,102,97,99,97,91,102,100,105,95,105,103,99,121,107,99,113,98,112,101,99,112,107,98,113,106,110,103,109,101,90,119,111,101,116,108,99,97,103,108,94,108,114,108,112,92,107,93,111,110,96,108,102,100,117,97,110,104,105,109,96,93,77,102,113,97,106,98,105,103,95,104,92,130,100,100,102,110,103,104,102,98,102,103,95,111,92,116,89,102,92,102,110,102,108,107,110,101,108,99,104,104,97,94,105,98,99,108,103,104,104,98,88,112,105,104,102,104,99,94,103,105,94,91,96,92,103,105,109,101,97,114,99,114,106,90,100,97,110,98,101,117,94,99,104,94,99,103,97,121,105,108,108,91,99,105,107,95,104,107,98,104,108,103,103,103,101,101,96,95,98,99,98,109,102,117,92,103,112,109,93,107,96,102,101,76,110,101,99,111,102,99,89,106,96,101,96,106,106,97,95,95,83,97,103,97,99,109,87,84,113,94,104,106,108,92,95,98,92,95,110,100,105,99,77,93,108,113,119,98,98,94,93,104,93,110,102,110,101,100,106,104,101,93,103,101,97,109,90,115,109,94,114,91,109,100,103,102,107,99,93,95,105,106,105,95,101,102,99,98,99,104,98,101,87,103,124,112,94,105,102,98,103,98,96,105,104,96,103,97,99,101,101,107,105,103,98,94,102,89,121,87,105,99,106,74,116,103,92,101,105,96,105,114,103,97,103,101,103,106,102,110,110,100,110,103,98,108,105,102,96,109,110,105,101,104,105,91,102,86,95,95,100,101,105,104,102,105,111,96,100,93,96,105,103,100,95,105,117,99,106,97,105,111,117,99,90,101,119,97,98,102,102,100,97,103,105,94,102,83,102,103,104,98,96,97,104,115,102,95,111,98,104,101,107,95,109,96,101,99,100,102,97,106,91,92,100,106,96,106,111,95,97,107,117,102,106,104,106,109,78,106,106,118,107,108,102,104,95,93,108,93,106,97,100,107,102,100,102,104,103,98,99,118,95,95,96,96,135,103,101,105,105,115,94,105,105,112,102,97,108,103,102,100,103,103,96,102,99,98,104,95,109,104,107,95,106,108,110,102,106,105,106,103,103,112,95,90,93,100,109,99,109,106,113,88,95,100,112,103,106,108,103,108,93,91,102,90,87,106,98,83,107,102,101,103,97,89,100,102,93,93,105,106,105,101,100,113,98,109,96,96,88,102,115,114,111,104,93,93,107,116,106,101,107,96,102,98,106,94,95,103,110,106,106,111,100,103,102,95,105,98,94,85,92,113,104,96,101,90,109,113,99,92,94,91,100,117,95,113,91,114,99,94,103,95,100,102,99,108,106,107,99,99,98,78,93,99,106,125,105,93,92,102,105,99,103,94,98,91,103,122,93,97,108,98,104,97,91,88,100,100,93,100,96,96,100,96,95,98,103,102,104,108,106,108,95,100,103,99,125,99,109,108,106,94,71,108,100,107,102,84,94,85,94,109,97,106,102,95,124,88,99,100,100,112,102,94,100,101,102,108,102,124,113,106,121,108, +658.87665,104,94,104,117,100,129,115,101,104,102,98,87,119,95,105,110,95,102,107,105,100,106,90,109,106,126,104,96,92,105,99,112,103,107,109,105,97,110,100,113,86,101,99,106,98,103,106,98,99,106,99,99,129,105,110,95,101,100,112,102,96,117,103,90,109,101,95,106,105,96,99,105,102,108,99,100,100,99,106,107,87,107,99,88,103,113,93,105,105,92,109,110,105,122,115,96,106,114,94,109,81,95,101,106,107,95,98,101,98,104,104,95,103,114,100,104,99,102,99,103,106,98,109,98,118,111,113,105,112,103,114,115,104,98,91,105,112,100,105,99,99,103,105,103,96,97,113,106,93,100,107,108,115,103,100,100,111,95,110,86,107,102,127,106,104,105,111,113,98,110,104,121,97,104,100,107,112,104,100,108,107,100,111,111,105,94,87,83,101,101,107,101,102,100,87,113,100,101,103,111,101,88,107,101,99,104,107,97,109,122,102,109,94,99,99,106,110,103,93,100,98,96,100,97,99,95,101,106,86,106,104,107,114,107,113,102,106,107,109,106,105,101,124,111,97,97,100,98,79,111,104,97,96,113,110,105,109,105,102,128,104,111,108,108,90,108,104,111,102,100,93,103,103,89,109,116,99,91,106,118,99,107,106,110,96,104,98,90,109,92,106,112,100,117,121,108,106,98,98,114,106,97,98,120,97,108,110,110,106,109,95,104,100,118,103,112,104,109,102,93,99,104,100,106,109,114,95,96,108,113,99,104,101,93,106,103,99,106,94,99,102,109,92,95,107,123,98,111,103,102,90,133,114,107,109,101,102,89,105,104,96,88,104,110,112,104,100,110,91,104,118,109,111,109,101,88,108,106,99,106,99,94,102,119,98,95,88,95,102,89,114,90,110,100,101,103,110,97,101,112,81,113,106,111,105,108,97,110,98,108,98,82,110,103,84,96,92,104,113,97,90,106,95,102,99,93,109,79,105,96,102,113,102,94,100,99,97,103,100,100,101,104,98,93,103,108,98,94,114,107,90,87,106,113,104,103,93,99,99,103,103,103,106,111,107,107,88,105,98,98,100,102,101,97,110,101,107,114,104,107,92,115,110,110,103,104,137,97,101,104,78,108,107,92,104,111,100,99,104,102,113,103,114,102,104,100,102,96,96,98,115,110,103,107,107,98,101,105,95,100,106,96,100,100,91,112,107,116,112,101,103,100,113,98,92,104,107,99,111,109,100,118,99,102,102,109,116,101,105,108,95,112,116,133,113,101,106,93,103,107,103,107,90,105,96,107,110,111,81,101,101,104,92,108,102,113,100,101,103,105,109,93,107,104,107,102,108,105,98,113,100,114,104,96,108,102,101,73,101,105,109,105,112,100,96,97,96,99,101,104,112,94,109,110,99,102,109,121,110,94,112,99,96,109,88,99,100,105,106,106,102,101,98,113,113,97,109,110,101,107,100,105,94,92,105,99,100,100,107,118,107,102,103,102,106,129,100,103,105,114,108,105,108,106,101,109,113,104,108,106,108,113,102,107,108,99,94,108,89,97,76,103,98,99,108,97,103,103,110,104,107,103,105,102,107,105,99,111,96,98,113,96,95,74,102,105,120,100,108,95,97,101,105,111,105,103,104,101,108,104,91,100,128,104,108,91,99,99,111,110,100,106,102,109,103,107,98,105,110,94,98,99,105,118,107,103,112,113,101,112,121,97,97,97,99,100,106,84,105,103,98,114,96,94,98,107,91,102,114,97,104,115,109,103,99,103,108,105,112,100,99,104,112,99,92,92,104,116,114,107,122,114,101,106,106,112,100,104,108,102,95,102,104,115,105,101,111,99,103,104,109,100,98,97,113,107,107,114,116,98,103,120,99,114,104,109,103,102,104,114,107,104,98,98,120,106,109,96,113,100,99,103,113,102,109,101,92,103,95,102,99,91,106,102,97,102,98,110,99,103,100,101,105,99,95,96,105,102,125,101,100,89,100,96,100,96,100,88,90,101,99,98,102,104,104,105,131,96,109,92,110,100,96,106,102,100,114,114,101,96,103,116,94,105,99,98,101,106,102,108,101,91,120,106,99,103,93,93,107,101,104,104,102,109,103,99,100,103,110,109,101,118,105,107,109,117,106,105,102,100,116,105,107,105,112,98,100,115,99,105,95,91,112,103,105,90,105,106,101,99,113,100,106,96,109,96,90,97,104,78,101,112,104,124,102,112,102,103,98,104,98,93,93,92,100,104,103,91,88,112,101,100,93,105,96,108,103,93,101,94,105,98,105,92,107,105,106,110,99,103,96,102,111,106,105,110,120,98,86,98,97,103,99,93,105,107,99,97,103,97,115,114,103,101,120,96,119,98,109,96,109,117,103,104,108,102,101,92,116,105,109,107,102,122,106,91,92,104,99,96,95,121,97,104,108,98,105,99,105,101,97,103,98,111,102,104,123,108,90,101,96,101,94,100,100,101,101,113,99,99,99,107,102,106,99,96,110,98,112,101,94,103,111,102,94,98,104,116,108,109,106,110,104,98,105,104,107,102,101,108,108,103,115,96,114,98,97,99,104,100,96,106,106,96,110,105,92,101,98,108,103,92,96,97,96,102,94,94,113,93,98,95,102,106,115,100,109,107,100,104,92,100,102,105,105,104,98,93,103,93,69,98,108,100,104,90,107,93,102,107,104,99,107,98,111,104,108,102,112,100,108,102,110,109,120,116,106,106,105,86,106,104,75,99,91,99,105,108,116,112,104,108,96,102,111,102,105,108,101,101,105,101,96,107,85,103,102,77,111,114,95,106,81,106,104,95,103,107,96,100,99,103,83,112,103,121,108,107,95,96,107,107,104,80,111,102,103,103,101,106,107,96,94,121,110,101,108,104,98,110,113,100,104,114,95,93,102,100,100,105,110,102,91,96,105,103,104,95,103,109,102,102,98,101,104,99,101,96,104,100,113,82,104,115,103,96,121,122,108,103,96,98,100,60,82,99,104,101,122,102,103,92,85,106,106,99,97,110,108,100,97,91,92,105,121,87,105,94,102,115,106,105,108,104,101,74,104,87,117,97,100,106,109,111,98,96,98,88,97,96,95,105,105,102,88,101,102,100,118,107,108,102,117,102,100,102,96,109,102,100,96,94,96,101,96,94,95,96,99,96,97,109,96,100,103,116,126,105,112,91,116,102,97,94,105,114,107,102,109,100,94,95,96,113,62,98,102,95,97,105,100,109,102,100,105,100,107,96,115,94,112,86,108,120,108,96,98,106,97,95,102,107,91,101,91,100,103,103,117,108,101,105,111,101,105,98,99,107,92,99,113,100,103,94,102,104,107,88,91,109,99,102,93,105,96,115,106,99,90,101,105,100,100,115,96,105,92,95,99,98,100,110,98,97,94,92,93,107,115,100,95,102,96,111,110,101,87,109,110,102,108,102,114,109,101,103,99,105,119,104,105,105,105,98,95,94,93,102,100,99,102,103,101,93,102,96,106,94,104,98,103,106,100,96,107,109,101,113,97,101,101,91,105,107,97,111,111,109,87,104,95,95,118,103,93,105,97,100,105,105,95,94,98,102,99,103,88,92,97,100,91,111,104,105,112,112,104,102,100,99,98,98,98,107,98,83,100,96,113,108,102,101,108,105,103,91,105,107,104,100,95,109,101,121,101,101,105,91,109,99,100,101,104,96,98,109,94,77,95,97,107,99,100,100,104,92,117,97,91,97,94,102,109,112,103,104,109,100,100,103,94,108,98,99,94,100,92,105,98,95,111,101,104,103,105,98,98,96,102,115,90,100,88,108,98,102,103,106,107,109,109,106,97,118,102,102,97,113,104,100,101,104,114,96,109,93,90,99,107,112,92,101,91,102,102,105,96,104,109,90,95,102,97,111,97,97,119,95,95,102,102,102,108,108,96,92,102,111,110,101,96,108,108,103,79,106,91,107,100,105,97,93,90,107,102,115,106,102,100,95,128,113,95,69,102,101,103,96,108,103,94,103,102,103,115,98,100,93,104,87,89,117,72,106,125,106,98,93,107,100,121,112,102,92,109,95,101,100,108,104,97,93,102,88,113,111,104,104,104,107,97,106,100,104,117,112,110,108,95,79,71,108,94,103,109,107,103,100,104,116,98,96,91,109,114,100,103,108,106,106,118,101,94,93,103,104,96,96,99,104,111,90,98,102,92,113,99,105,102,99,85,98,103,103,103,108,95,96,92,108,100,102,92,108,81,102,103,102,104,114,90,89,100,105,97,102,122,105,115,99,106,98,106,108,105,103,93,96,93,103,103,98,91,119,97,99,109,101,112,107,114,109,98,112,102,100,103,106,91,113,119,103,100,113,92,109,98,107,95,111,97,104,107,121,109,100,104,97,101,95,102,94,103,94,96,108,102,95,106,106,98,87,93,99,87,107,102,100,97,98,102,105,89,98,91,108,79,104,83,101,113,114,102,110,112,106,108,102,99,106,92,103,102,100,103,104,111,101,87,103,97,108,94,94,106,99,91,108,110,90,100,102,102,103,94,112,111,120,114,104,119,100,99,94,101,94,113,96,94,104,111,122,104,117,104,112,105,105,99,95,90,112,103,108,105,106,97,99,104,113,104,108,106,99,94,101,110,117,101,102,97,110,106,101,111,103,98,96,103,92,105,93,98,98,92,113,102,95,101,99,91,104,102,105,102,99,94,100,96,96,106,110,96,85,99,104,103,105,106,92,100,107,91,95,102,102,102,100,102,86,107,103,85,90,97,86,101,96,102,96,94,97,102,102,109,101,115,111,109,100,108,98,106,109,103,100,100,120,105,94,100,102,104,115,106,101,108,108,88,110,105,105,84,120,93,100,87,103,106,110,98,85,108,91,107,97,101,105,127,100,103,100,102,102,109,105,105,104,96,109, +659.01782,112,96,96,92,110,96,110,95,117,69,121,105,88,102,107,106,104,126,105,123,99,89,91,111,94,112,104,103,103,95,109,110,113,96,101,68,111,104,75,102,101,92,98,90,98,115,98,127,109,113,97,108,94,101,109,105,102,106,105,117,117,98,102,95,104,98,91,108,95,93,102,98,99,97,111,112,105,102,99,114,96,98,107,83,102,86,100,101,120,103,111,99,100,95,107,100,102,112,102,100,91,92,96,104,96,92,103,100,117,100,98,101,105,98,108,94,92,102,116,113,102,101,112,79,108,99,109,101,100,107,114,96,96,102,100,99,119,93,108,103,104,110,107,104,101,100,102,92,99,90,99,109,97,87,105,110,98,91,95,95,109,101,108,92,98,97,98,107,104,114,98,96,96,99,104,106,103,105,102,99,106,107,97,111,86,99,105,93,85,106,111,105,100,98,96,95,94,101,91,117,95,90,106,108,103,79,105,100,101,97,101,102,97,95,98,110,95,86,96,103,119,67,100,104,91,100,118,103,109,111,110,103,97,105,103,100,100,93,102,109,92,103,105,96,106,91,97,99,102,122,103,92,100,120,98,100,101,103,104,101,87,110,105,105,100,113,105,110,98,109,101,105,91,106,105,100,105,115,97,103,96,104,115,93,100,107,82,92,104,121,109,90,95,120,99,109,80,99,101,126,92,101,103,108,104,117,107,108,87,104,103,116,107,95,102,103,112,100,103,113,104,102,99,105,112,111,122,97,103,99,102,101,93,101,101,107,98,80,104,110,105,100,109,91,98,93,116,99,108,102,100,98,100,91,104,98,102,103,94,100,108,91,98,100,91,101,101,104,106,96,112,95,108,107,107,92,107,67,99,113,109,98,95,105,99,101,94,108,96,94,112,86,108,99,110,116,122,114,107,111,97,101,86,96,113,95,96,97,98,104,94,102,106,103,102,112,97,106,108,97,97,98,101,112,91,103,101,96,99,100,106,95,101,109,113,109,115,123,105,117,101,94,104,113,108,109,105,102,122,98,103,98,88,114,111,109,92,107,104,102,100,112,108,101,106,107,104,94,102,94,106,103,98,90,88,99,111,108,88,103,109,112,104,105,107,81,99,99,95,107,105,105,103,104,94,109,97,91,95,108,113,99,96,96,100,99,108,111,98,101,103,104,106,104,112,111,104,105,111,103,87,111,103,103,103,112,101,109,112,99,102,96,94,123,105,93,111,97,104,105,110,124,99,113,121,84,101,111,101,111,99,102,103,98,99,101,90,94,100,99,104,105,105,103,106,101,109,104,88,95,101,94,104,103,99,101,92,112,98,99,99,94,111,91,108,104,103,98,106,103,96,100,101,98,109,109,94,98,91,96,98,107,116,96,102,96,93,88,85,99,103,130,108,103,111,115,103,111,112,103,106,99,104,108,102,94,96,110,104,119,101,108,101,100,88,96,99,95,101,106,105,99,101,110,102,96,99,92,114,103,78,98,108,92,106,112,114,111,101,103,108,88,101,100,101,99,97,92,104,100,99,104,110,105,105,103,96,97,117,98,100,99,105,113,88,104,101,96,90,108,119,105,106,102,100,97,102,97,102,66,115,97,106,97,96,105,108,94,94,105,96,95,104,96,110,100,102,97,97,99,101,93,90,109,102,100,94,105,94,114,126,97,105,86,95,106,92,103,120,100,109,105,101,114,100,106,99,85,102,111,98,101,109,94,104,98,105,107,106,100,97,113,91,106,100,111,92,100,98,94,109,98,108,103,131,103,97,94,93,108,106,109,101,96,95,113,141,88,99,104,113,108,90,104,106,107,98,93,70,102,90,104,104,101,111,102,101,108,105,99,110,111,116,108,102,96,87,105,101,92,114,107,114,108,101,99,106,98,108,98,101,98,109,97,98,113,113,96,116,103,100,116,98,100,98,100,119,106,90,96,99,99,106,101,99,104,98,103,107,105,71,98,104,92,97,91,96,82,112,120,95,92,109,109,112,97,105,86,92,105,76,108,109,99,100,102,106,103,100,107,100,110,104,96,104,108,116,100,107,100,110,118,108,108,111,91,92,100,93,109,101,100,97,100,106,103,105,99,110,102,110,105,88,99,108,102,83,106,103,103,95,106,106,109,98,102,99,92,114,106,95,104,103,115,96,110,91,98,90,105,107,100,109,124,108,109,102,116,97,108,121,110,114,97,113,97,99,103,98,100,112,103,99,105,98,114,103,100,100,91,93,99,106,104,105,101,97,97,105,109,104,104,100,108,97,105,117,95,117,112,102,103,99,99,98,102,103,91,99,96,113,108,97,117,101,111,101,109,94,90,108,100,93,94,93,93,100,100,108,101,98,105,108,93,110,93,107,93,97,104,94,101,104,108,102,98,113,111,79,100,96,110,102,98,81,119,87,115,104,103,98,94,100,102,122,105,98,96,104,104,106,109,104,98,90,102,91,103,95,88,98,107,96,105,120,108,104,113,117,92,99,103,102,86,100,114,90,94,108,100,108,95,112,106,110,96,97,112,94,97,112,103,100,105,110,103,96,98,89,106,100,97,108,105,100,106,77,101,109,104,105,108,102,101,106,91,95,100,107,101,110,100,94,109,106,99,91,95,105,100,98,96,109,104,105,108,101,97,96,100,112,86,112,99,106,106,111,112,109,106,95,110,108,99,104,109,110,112,111,108,106,101,103,102,105,88,111,87,132,101,108,95,95,111,112,97,108,95,101,101,100,105,110,109,106,105,98,106,98,91,111,113,105,103,106,102,101,105,107,104,103,109,93,107,106,102,104,104,103,113,103,106,88,104,99,95,113,113,103,108,102,93,100,98,101,91,103,93,95,97,112,99,103,100,107,110,112,105,105,120,112,98,101,88,104,103,106,103,100,101,98,115,105,112,106,100,117,102,113,107,112,102,106,101,102,113,95,107,109,110,103,106,104,105,107,103,123,101,97,115,112,93,107,100,98,109,107,117,116,127,101,111,115,101,105,103,112,102,105,122,113,95,99,103,115,99,114,69,99,110,106,100,101,102,110,104,103,106,80,115,100,105,99,91,98,98,110,104,104,98,101,101,110,111,95,87,105,104,96,103,106,118,103,97,116,102,99,118,100,116,103,108,97,104,101,105,93,111,95,99,99,107,92,87,122,95,102,112,117,108,102,95,103,110,104,108,107,102,98,101,108,100,108,108,93,104,107,102,99,103,118,104,101,103,103,98,89,104,106,116,115,106,95,115,102,100,114,111,107,100,111,102,112,112,112,105,98,110,108,111,108,112,105,98,117,110,102,106,112,103,106,93,108,106,113,117,115,108,111,100,107,99,95,113,112,105,101,96,110,96,101,129,105,106,99,106,108,98,108,116,102,107,104,97,98,96,100,98,97,97,90,105,109,108,108,95,114,107,101,108,107,92,134,111,107,99,110,112,107,105,108,102,99,106,104,111,105,114,102,95,97,101,112,98,105,66,101,97,110,103,101,103,102,100,101,100,115,99,104,105,108,100,106,110,108,113,114,107,110,114,112,102,96,114,104,111,120,106,112,110,98,121,103,94,104,104,105,90,95,111,100,105,108,93,105,117,105,98,99,101,109,109,107,108,103,113,97,113,99,105,107,92,107,100,99,107,98,104,105,102,100,101,117,99,95,105,105,106,106,109,105,123,98,106,110,112,109,98,98,103,102,112,109,100,98,101,102,101,107,106,100,96,105,99,105,109,106,103,108,110,92,107,107,102,106,112,105,108,119,109,108,113,88,100,98,100,103,97,111,136,103,101,103,108,110,99,109,96,108,108,95,106,107,97,110,121,112,110,107,113,120,110,102,127,111,111,97,88,97,111,104,112,96,100,108,99,111,107,103,107,107,97,101,119,98,112,105,112,117,98,108,107,96,116,105,114,127,105,100,74,112,105,110,125,102,101,103,77,110,100,120,106,118,108,105,85,97,101,101,92,107,106,99,105,105,105,117,95,104,92,110,104,96,111,105,100,109,98,110,98,108,109,102,108,98,99,100,99,102,100,106,94,106,98,113,111,113,101,105,105,102,107,96,107,101,124,108,106,105,112,114,98,103,108,100,112,105,90,99,107,74,104,104,99,113,108,106,109,109,96,109,101,110,100,98,114,102,103,117,105,89,101,98,100,101,104,92,110,113,107,113,104,90,100,103,98,111,104,99,99,115,100,124,109,109,116,94,97,110,104,105,106,107,117,104,100,103,99,101,116,105,107,113,113,115,113,112,79,117,116,111,106,102,104,97,106,113,104,109,103,102,92,111,117,99,102,108,101,88,102,101,101,121,94,101,101,104,102,101,109,105,98,101,113,112,109,109,112,105,137,106,92,105,109,101,90,108,110,111,102,108,101,102,106,117,108,131,103,116,96,87,107,96,112,102,101,110,111,112,110,104,110,104,97,92,95,117,97,109,104,110,99,94,110,111,103,106,102,99,112,101,111,100,100,109,92,87,100,124,98,106,92,98,103,101,110,105,83,88,92,95,81,106,105,110,112,101,109,110,97,108,98,94,101,101,96,117,104,108,96,101,97,100,95,100,101,85,110,113,111,108,111,113,115,103,95,102,102,78,110,105,101,105,99,110,132,112,98,101,90,105,105,103,117,100,105,113,97,108,96,108,107,100,103,103,104,128,110,115,82,74,112,103,112,90,114,99,104,105,102,93,81,110,96,105,105,111,112,99,91,107,123,109,130,99,112,106,90,90,121,87,105,96,98,98,102,111,87,93,110,92,100,71,131,108,102,121,97,117,94,95,128,106,137,113,114,103,110,100,95,114,104,104,100,107,114,93,116,99,117,107,119,107,101,112,116,101,120,96,108,110,109,94,108,88,96,96,98,129,100,100,101,102,107,99,93,96,91,113,105,103,100,124,113,110,101,114,114,94,99, +659.15906,102,102,97,92,101,108,104,88,102,102,95,112,100,95,103,110,103,110,111,104,126,105,97,117,102,103,91,97,98,96,101,99,101,108,108,92,108,106,95,99,101,104,100,98,102,111,90,103,104,99,89,109,108,100,109,93,104,110,114,91,98,88,92,103,101,108,100,98,103,81,111,92,103,98,97,107,110,92,105,103,95,108,116,102,96,89,93,104,101,106,107,113,103,101,101,97,105,106,98,104,108,107,96,94,85,89,97,108,110,103,101,93,105,90,93,105,104,103,99,104,103,121,105,103,110,100,107,95,115,96,103,84,95,86,88,100,99,94,97,111,103,103,96,108,102,100,111,106,95,101,105,98,104,101,98,99,99,89,109,107,100,103,108,98,105,96,95,87,110,102,91,112,73,102,97,104,114,93,109,101,104,99,107,93,124,99,96,115,128,101,100,100,98,107,99,105,95,100,109,109,100,109,96,109,100,106,104,96,135,123,99,96,99,105,104,109,109,96,97,106,105,114,95,100,100,96,91,105,106,99,95,108,95,109,108,110,94,108,108,109,96,107,93,112,97,107,110,95,95,108,99,108,99,112,94,105,100,112,94,102,90,97,90,99,102,102,110,100,98,74,119,101,101,117,99,101,97,108,95,105,104,108,94,110,111,66,102,110,104,98,97,107,110,104,96,103,118,110,107,106,110,100,107,113,92,102,107,110,95,97,93,113,99,109,104,103,109,108,102,87,107,109,118,101,101,121,103,98,114,96,112,106,103,108,105,116,107,102,113,99,93,96,98,105,105,109,106,104,104,98,94,100,110,88,105,100,110,91,105,107,93,102,103,114,94,105,106,109,116,107,106,97,96,111,103,103,94,101,101,105,104,106,79,105,103,105,105,104,102,101,114,102,106,106,105,116,106,96,99,114,88,96,102,85,96,90,105,109,130,97,110,102,94,105,105,95,105,111,117,104,105,102,101,102,112,96,96,111,96,101,113,83,113,111,106,104,100,104,98,111,88,113,98,112,104,102,107,90,102,104,79,100,98,117,118,108,100,116,108,96,104,100,106,100,99,105,89,105,98,117,105,101,100,93,110,97,89,115,103,97,94,113,110,101,96,110,113,95,104,94,111,106,96,91,94,97,87,104,106,98,108,105,102,114,99,98,99,94,105,87,101,114,108,107,96,107,104,103,105,98,107,95,102,102,104,109,92,102,107,104,108,103,101,103,94,102,92,104,92,111,113,94,84,103,109,100,107,95,103,114,107,103,98,96,108,107,102,105,103,104,112,97,103,95,102,112,105,104,104,107,99,85,105,98,111,100,95,100,107,100,111,101,108,95,121,89,102,117,102,100,107,115,94,90,106,114,93,109,109,115,112,111,110,114,106,108,102,108,103,114,101,98,97,105,100,98,115,87,110,101,105,93,137,96,101,112,111,107,106,101,107,84,109,112,105,112,100,105,109,88,106,108,83,103,97,95,94,95,103,89,99,98,108,103,110,101,99,107,91,106,113,105,102,102,99,96,103,95,91,95,102,87,102,96,106,116,110,110,99,101,109,96,107,102,93,101,93,103,106,109,104,96,97,106,103,100,116,116,99,94,104,102,100,103,82,103,113,111,97,109,97,112,91,95,101,103,97,92,102,95,104,94,107,106,93,103,103,96,109,114,107,95,97,92,97,108,102,100,118,90,103,96,108,115,109,100,110,96,85,102,108,107,100,96,111,105,109,102,108,100,91,101,98,106,94,100,96,106,95,100,102,111,93,100,108,104,99,97,106,89,100,102,110,105,94,102,107,103,113,99,103,106,105,98,95,98,97,110,97,115,103,106,99,104,103,84,105,103,100,102,120,106,102,112,100,108,100,91,86,109,107,115,99,106,98,96,108,98,107,103,109,101,111,111,99,101,107,107,105,110,99,99,113,102,100,96,87,103,104,94,101,80,90,99,95,94,94,101,97,101,102,101,104,103,112,86,93,87,104,104,110,108,98,106,97,114,110,90,102,87,111,98,127,86,98,109,108,106,92,94,98,113,105,110,94,91,98,102,96,103,97,95,106,100,101,105,92,90,97,102,96,111,111,102,100,97,87,87,104,109,119,102,101,109,115,91,94,103,101,112,95,78,108,109,112,113,95,100,90,105,102,101,97,96,95,99,94,109,91,99,100,112,110,100,112,94,108,98,104,107,121,107,98,102,108,90,99,100,109,103,92,90,102,90,102,111,114,92,102,82,91,107,104,109,91,114,84,101,102,103,101,107,109,96,106,98,100,84,99,98,108,103,91,94,113,108,99,105,100,99,98,106,93,111,88,115,90,95,106,102,111,108,132,89,109,117,99,105,100,100,101,117,97,100,111,86,97,99,104,119,96,108,92,99,110,102,108,98,107,104,104,108,106,114,101,97,101,110,99,118,100,104,108,109,93,95,108,100,100,105,104,107,98,108,102,95,93,106,99,109,102,97,98,105,94,107,97,101,111,108,101,101,106,94,103,109,106,110,110,96,106,100,101,98,89,102,72,96,103,112,106,107,105,101,112,110,89,95,104,87,107,102,102,113,119,114,100,101,95,97,106,114,113,74,102,105,101,108,106,95,113,113,102,127,102,105,99,99,101,100,105,96,103,108,116,87,109,109,110,114,109,98,107,96,84,117,113,95,104,95,106,114,107,121,105,105,104,95,106,98,86,108,93,102,105,99,106,103,110,98,96,109,103,105,104,106,99,102,94,89,103,102,79,112,99,107,93,103,104,100,95,110,98,117,101,99,101,102,107,100,108,103,98,92,99,93,94,109,106,100,107,98,98,106,110,100,100,112,98,117,103,101,106,91,107,99,102,101,99,98,109,97,117,100,117,98,93,108,104,100,113,105,105,94,98,107,87,106,106,106,106,113,98,110,100,91,109,102,103,116,91,113,108,110,101,105,113,100,105,108,113,87,105,103,110,111,105,106,110,101,104,104,98,104,101,101,113,104,88,101,94,120,94,95,108,103,98,112,119,105,115,102,113,105,117,97,112,103,107,102,110,96,104,116,109,110,101,105,102,112,95,97,103,94,112,104,95,98,106,106,102,107,100,101,105,100,101,97,100,91,91,108,113,99,109,100,102,102,116,105,95,106,101,114,102,102,109,120,114,109,105,113,102,107,102,106,103,94,104,106,87,105,98,117,113,103,112,108,119,105,102,99,104,116,100,103,104,103,123,94,98,104,105,109,91,102,99,104,103,99,103,104,99,91,97,99,116,98,105,89,110,108,100,103,98,102,94,106,100,108,110,97,112,105,100,95,104,108,108,91,88,100,104,103,101,102,103,113,114,107,102,110,109,102,121,106,108,104,91,102,100,111,103,115,102,102,103,108,120,115,97,98,109,102,98,96,109,103,111,102,95,111,105,107,94,101,99,109,98,117,100,106,102,97,94,109,121,100,103,105,106,110,108,101,109,108,100,104,102,107,104,100,115,87,97,106,112,95,87,93,110,108,97,107,101,109,117,99,105,99,104,102,102,105,113,101,105,100,96,103,97,102,105,105,108,101,97,93,114,88,108,100,103,97,114,104,103,110,89,109,107,99,102,91,120,81,112,108,111,102,107,105,102,96,110,94,102,106,105,116,98,109,105,104,99,99,109,109,105,111,98,114,102,96,108,106,108,89,121,106,92,101,101,101,107,99,93,108,109,92,72,99,106,105,86,90,106,91,111,103,109,92,110,114,106,101,97,99,107,95,102,109,85,110,105,107,102,117,105,112,102,91,101,104,110,107,109,96,109,107,116,99,98,116,108,109,72,99,118,108,98,107,112,98,75,97,97,110,100,101,104,99,104,96,109,106,99,109,111,110,104,109,100,101,97,92,102,92,105,110,101,104,106,113,94,124,89,110,116,98,95,94,110,120,107,107,101,103,97,109,99,95,99,99,101,113,109,98,106,86,105,109,106,93,99,98,103,113,99,100,103,100,101,105,105,110,104,107,101,108,92,110,77,97,101,107,103,101,92,93,113,92,102,109,110,105,99,92,91,108,103,101,98,105,96,106,101,100,112,106,121,102,94,98,98,107,108,118,106,99,96,107,102,101,101,105,98,107,106,108,103,91,102,114,105,115,102,107,104,98,96,98,105,109,94,108,108,99,102,107,103,106,104,88,96,105,97,99,102,109,85,107,90,100,99,113,91,99,96,106,108,108,106,109,101,102,99,104,102,92,117,106,100,100,101,84,103,98,106,100,106,90,112,91,95,99,109,106,114,99,113,103,109,100,100,106,105,111,98,100,117,109,110,96,96,113,103,102,92,109,108,105,112,103,110,112,97,104,107,116,104,115,91,99,110,102,103,102,107,106,91,104,102,112,102,93,95,107,112,105,108,107,109,117,105,105,105,91,111,96,86,105,105,116,105,92,102,103,87,109,101,99,118,109,102,97,103,93,107,108,118,128,99,94,104,95,126,99,102,107,120,107,109,99,114,72,103,106,97,103,100,111,83,109,104,91,112,116,104,108,92,99,98,100,106,100,107,75,110,100,101,98,98,101,105,106,119,120,112,106,102,102,103,99,97,109,105,105,101,94,101,103,114,102,106,90,107,107,103,100,108,104,101,103,120,114,107,92,110,93,110,103,95,107,102,89,115,109,96,94,103,102,96,107,109,109,113,109,104,106,89,107,116,114,108,97,106,93,123,112,106,106,107,111,113,111,109,101,91,106,121,102,113,103,105,94,108,100,107,112,95,105,88,89,105,99,101,102,105,97,109,96,95,110,99,101,97,110,90,101,101,93,95,84,113,108,106,106,93,110,106,93,98,100,112,113,106,96,101,110,107,107,76,102,119,107,110,113,96,99,97,112,109,104,102,101,107,105,107,111,113,106,99,102,104,100,108,116,95,102,104,107,109,118,100,101,100,106,101,95, +659.30029,96,104,99,92,100,94,102,97,97,116,104,108,110,110,116,105,103,99,90,99,106,114,105,106,100,108,106,102,90,106,106,105,99,108,112,93,117,103,88,109,116,89,102,75,110,110,106,107,90,100,109,79,113,110,112,94,99,98,105,108,94,103,97,97,109,121,103,103,83,98,121,125,109,97,103,104,84,96,111,106,95,95,110,101,97,83,108,95,96,111,105,104,105,105,104,95,98,90,107,104,101,102,96,103,106,101,90,94,102,99,106,104,103,110,100,114,105,70,99,97,111,105,112,100,110,119,111,108,120,107,96,109,96,106,99,104,87,95,94,94,96,104,103,111,102,118,111,98,124,99,100,106,98,101,95,105,93,105,102,95,101,110,102,100,116,98,93,88,106,104,95,99,94,103,127,104,113,98,114,94,89,98,107,109,110,101,97,90,109,106,101,110,101,108,101,112,100,105,109,96,125,101,93,104,110,108,99,125,127,114,98,113,101,93,101,98,105,111,108,119,114,102,100,102,94,103,120,112,107,100,86,98,101,101,105,95,103,101,105,104,101,103,106,100,95,107,104,104,108,106,90,100,109,100,103,97,99,114,92,107,92,103,103,101,103,110,109,108,95,93,112,103,107,95,111,104,95,106,119,101,99,109,92,102,107,103,102,94,93,101,95,107,110,116,101,104,107,99,91,100,106,96,104,101,91,114,102,99,103,101,101,99,90,104,103,70,95,103,98,115,101,105,111,108,104,97,90,98,109,117,87,100,120,101,97,106,96,100,109,99,101,105,106,99,111,112,106,117,115,113,106,90,122,112,112,109,105,102,107,92,103,101,108,96,78,94,112,106,91,105,105,94,111,105,109,90,99,104,108,110,98,100,104,98,108,87,110,109,108,106,111,96,114,107,99,99,104,100,97,104,111,99,110,94,109,91,103,113,86,102,110,94,106,109,111,100,110,101,110,99,89,105,106,95,100,86,104,99,98,101,98,110,104,100,103,102,95,117,108,102,105,98,100,99,108,95,94,97,107,104,96,103,111,106,122,95,106,98,103,101,100,105,113,113,111,112,95,104,104,103,102,98,102,91,103,98,104,118,106,94,103,108,99,105,98,104,119,103,98,117,109,106,102,100,104,112,110,100,116,108,107,109,93,107,96,103,101,87,95,93,113,105,95,108,103,109,103,96,87,102,101,102,99,103,91,97,110,114,101,114,79,89,111,99,101,106,114,99,98,105,104,113,101,103,105,89,115,108,109,86,113,106,102,100,110,111,103,117,118,102,109,100,111,104,104,103,97,108,106,84,109,104,103,112,89,98,107,102,99,99,99,103,109,107,111,94,117,103,119,107,104,97,99,112,106,108,107,97,106,98,103,97,102,110,110,99,113,92,116,117,110,92,105,97,101,103,103,93,101,110,97,104,112,119,120,113,105,101,118,105,123,105,99,104,102,105,97,86,102,100,97,101,95,107,102,106,93,98,120,101,109,117,99,90,118,108,107,109,111,112,109,100,96,111,100,109,95,93,102,113,110,97,111,113,95,106,99,105,112,94,109,110,103,100,104,96,93,101,86,113,99,115,102,107,103,102,104,110,95,91,98,109,100,96,109,116,112,109,100,104,116,103,94,117,101,106,89,104,115,114,99,95,109,106,112,110,112,100,104,116,99,98,109,93,102,105,111,103,107,104,109,103,111,108,111,117,89,104,100,101,96,101,109,105,107,89,101,99,106,101,97,97,103,112,102,112,95,104,111,102,105,109,110,102,102,107,95,106,105,96,108,101,101,103,102,111,105,101,104,109,99,104,97,100,107,98,95,99,92,102,91,113,95,99,104,104,102,105,110,108,118,106,100,97,106,101,87,99,106,98,103,100,112,104,105,113,87,95,98,92,104,106,109,106,95,102,107,113,107,99,94,100,101,95,94,116,113,92,94,102,100,99,114,115,92,101,99,113,100,92,105,99,94,113,109,106,95,99,122,110,91,118,110,105,106,109,97,90,104,104,101,106,98,110,104,101,91,104,96,98,97,117,110,111,102,99,105,95,92,96,91,108,103,97,95,98,98,107,101,104,108,91,99,107,118,99,93,112,105,104,104,98,103,98,86,116,110,96,113,116,103,101,107,112,99,103,103,108,99,101,107,103,93,100,108,109,109,87,106,112,112,107,90,102,112,102,102,104,99,99,104,103,103,96,109,104,90,90,112,94,68,98,103,100,99,98,115,103,96,102,101,108,112,107,102,101,98,109,100,100,106,99,107,101,94,98,102,113,107,107,106,103,110,99,103,110,109,104,100,108,105,115,105,100,95,108,116,94,97,106,114,109,99,98,102,97,93,105,100,88,98,106,94,89,107,113,87,109,111,111,112,114,96,92,106,95,106,104,101,120,103,111,110,101,104,109,111,107,104,108,101,103,112,92,102,117,93,105,106,94,97,103,97,102,110,99,103,106,105,97,103,120,92,103,120,92,98,101,114,98,104,104,115,99,76,92,116,98,91,98,105,92,93,98,111,104,108,110,106,102,94,121,113,102,106,109,101,106,99,110,109,110,99,101,111,108,96,103,116,104,108,115,104,105,105,111,107,113,104,103,100,107,108,101,99,102,99,99,100,93,98,114,109,105,102,102,114,98,97,98,99,105,105,99,94,104,104,103,106,117,97,113,100,109,87,99,97,102,98,101,86,108,95,101,113,105,99,105,105,102,103,103,102,101,112,105,108,101,96,103,103,124,107,106,101,96,106,122,104,108,94,102,102,88,97,105,115,107,92,100,101,111,105,98,95,99,100,104,108,109,85,91,108,113,105,99,102,102,92,111,105,96,103,95,105,106,119,108,92,100,121,106,114,101,103,101,117,95,105,91,100,94,121,108,100,104,79,105,105,106,100,110,104,94,113,101,108,95,113,97,114,112,96,97,96,108,86,93,100,108,99,69,103,103,113,110,112,104,121,116,113,105,101,97,99,115,111,95,102,104,97,95,105,96,103,102,104,100,113,109,104,102,96,113,103,88,119,106,103,96,100,101,87,112,105,100,113,101,103,99,102,104,113,104,106,96,103,86,108,115,110,105,101,106,90,93,94,98,107,98,112,125,108,106,107,97,110,108,109,99,102,105,90,108,102,102,114,107,106,104,94,98,101,100,111,106,100,91,106,101,86,106,106,98,107,103,107,104,102,112,99,112,97,98,102,103,110,102,103,102,119,111,112,96,105,97,108,106,97,105,103,104,101,90,107,96,105,108,128,106,103,107,102,114,105,104,103,109,100,98,113,107,119,93,106,98,112,100,112,104,102,93,100,124,100,110,103,82,104,108,106,102,111,97,106,114,95,100,105,106,97,110,89,126,95,92,114,94,105,90,110,113,110,120,108,99,96,93,108,101,103,101,105,109,99,112,97,109,106,106,103,112,102,109,105,106,115,109,87,103,106,105,93,112,116,109,99,113,106,104,98,91,86,111,102,106,103,93,95,95,116,101,103,114,95,98,98,110,113,100,113,108,110,100,106,104,109,112,98,112,111,97,115,101,95,105,112,112,106,104,97,108,108,98,101,104,93,101,105,117,98,92,104,108,116,103,106,103,98,84,112,81,108,112,120,99,106,103,99,100,91,113,108,114,109,84,124,110,103,102,101,112,113,108,101,115,107,100,106,118,98,124,100,109,110,97,108,96,106,83,113,107,105,119,110,104,109,97,90,94,100,113,112,102,99,107,117,103,112,99,103,104,119,97,108,93,96,103,113,107,114,91,106,107,108,105,109,110,99,113,108,112,105,81,108,94,122,99,112,129,100,105,99,102,114,104,106,118,117,97,111,99,98,106,119,103,103,111,103,98,95,111,106,93,97,106,98,103,100,111,117,105,98,100,103,101,101,105,107,109,104,97,104,110,102,95,114,97,98,109,112,109,96,106,92,110,115,93,104,89,99,106,107,118,104,105,75,103,98,106,97,106,106,96,98,115,108,106,94,110,115,105,68,117,121,139,86,107,97,118,101,87,98,98,104,99,104,99,100,102,120,97,116,103,102,96,88,91,105,105,106,107,101,106,105,110,115,95,101,114,101,97,99,105,98,112,108,108,105,109,89,107,107,107,142,128,107,102,106,110,104,104,98,105,106,108,123,94,110,105,107,105,96,99,119,96,95,88,95,101,103,99,106,101,102,109,104,95,118,100,108,103,116,113,90,99,106,121,106,107,102,107,101,109,103,109,114,105,99,107,116,115,107,104,109,104,100,84,117,121,105,102,103,125,93,109,113,111,94,104,106,101,121,106,95,112,108,121,99,131,96,111,119,105,109,102,97,102,95,95,125,105,105,118,106,102,98,101,98,104,99,95,95,101,108,95,100,103,98,99,82,107,112,108,100,95,102,94,109,113,94,104,105,112,102,108,102,112,98,100,96,88,107,109,99,104,102,100,98,113,104,102,100,107,113,91,92,99,102,110,95,87,95,98,102,101,110,98,111,101,102,90,102,100,99,96,107,100,105,110,102,98,106,106,94,112,107,110,107,102,106,103,106,98,111,106,104,100,127,107,103,97,101,107,97,116,111,94,113,100,110,116,125,103,110,103,101,97,87,102,98,87,117,98,107,110,100,91,101,104,100,111,94,88,101,115,103,109,109,104,106,104,102,103,90,99,95,99,99,100,109,109,107,103,106,109,114,99,112,112,103,103,101,103,103,110,101,105,100,92,106,100,106,112,98,95,115,99,79,108,102,102,105,107,94,99,109,94,109,119,104,93,98,111,104,106,101,105,99,101,91,111,72,95,104,112,118,111,95,104,98,102,105,109,98,99,99,104,108,96,113,111,110,91,103,100,113,105,106,103,106,108,94,106,98,106,101,109,106,99,106,125,101,83,102,92,124,102,101,97,102,106,104,95,98,106,131,84,106,97, +659.44147,94,102,92,108,102,101,114,94,98,98,95,94,111,90,98,112,102,94,104,94,97,91,100,107,88,94,105,101,97,102,98,93,104,102,105,98,100,104,87,98,98,103,106,97,110,104,119,104,113,86,98,109,93,99,105,92,104,96,105,103,95,95,89,98,87,102,102,106,102,110,105,92,91,105,103,114,74,96,101,111,103,106,93,104,101,101,103,96,102,92,89,98,92,93,115,105,108,110,108,102,93,111,107,106,100,94,111,112,112,108,96,95,117,93,95,99,95,102,107,108,103,95,103,108,106,98,111,104,123,105,102,123,94,104,113,97,109,98,101,101,110,114,98,96,89,94,110,111,93,99,99,97,110,91,108,98,90,107,100,110,105,106,104,97,105,98,99,110,103,104,106,109,106,92,102,108,94,100,91,92,87,90,102,103,97,95,101,110,101,126,90,107,109,103,98,116,96,112,93,96,114,93,107,100,100,95,107,100,104,108,81,101,111,110,94,101,100,95,112,100,103,106,99,110,101,114,101,110,99,103,109,118,109,102,106,104,107,115,108,94,103,104,102,105,81,105,103,103,101,111,106,111,99,104,98,110,88,104,117,98,98,103,111,98,94,106,83,96,104,101,113,111,113,101,109,102,105,125,99,102,95,110,105,96,100,121,100,102,105,108,98,98,108,108,108,108,106,98,100,108,106,106,103,110,103,103,101,97,106,94,97,101,107,106,103,102,99,91,88,92,99,103,107,101,103,105,99,103,121,103,104,113,105,108,105,104,118,95,104,105,95,103,99,96,97,99,100,99,106,102,106,100,107,102,107,114,108,111,95,96,92,99,99,87,94,80,99,104,103,93,105,99,111,93,87,96,101,97,107,108,104,111,95,89,98,97,100,87,97,89,100,100,102,117,94,96,101,110,107,107,108,104,121,95,115,92,102,101,105,91,104,102,102,108,89,99,105,101,105,104,97,99,101,100,94,95,105,93,111,101,100,91,102,107,101,106,102,94,99,102,104,82,114,81,93,107,109,85,97,100,98,121,96,93,101,111,92,101,110,102,101,94,82,91,103,91,137,99,104,98,107,103,92,107,96,83,103,94,102,105,92,113,107,110,104,95,114,122,87,98,106,106,90,98,91,107,110,99,99,102,101,109,102,91,99,113,90,109,106,100,102,102,99,93,102,105,106,96,99,101,108,97,109,109,101,111,117,110,112,102,96,109,96,109,109,96,98,108,95,100,98,95,103,107,98,91,124,100,99,96,88,101,112,100,103,78,110,98,92,108,102,100,98,109,99,107,115,114,97,108,95,94,109,103,96,116,101,106,105,118,101,103,98,107,99,104,110,100,100,95,100,110,97,110,111,133,97,101,110,92,106,107,96,101,97,101,92,100,105,112,96,102,98,112,115,106,102,103,108,103,108,103,101,103,106,107,97,98,111,94,106,101,107,103,106,118,96,98,87,102,106,99,105,100,101,100,100,97,109,111,91,100,109,110,114,103,105,98,99,91,112,95,100,105,97,108,105,103,101,102,110,102,106,105,98,114,90,107,113,114,105,94,115,98,96,91,100,105,99,90,106,112,96,100,110,95,105,117,103,105,104,97,108,102,101,109,97,108,105,99,120,92,93,107,103,116,103,92,108,95,106,99,102,116,97,95,102,103,104,115,106,97,98,107,110,94,100,97,116,104,105,94,110,112,117,98,110,108,98,119,104,95,92,114,112,83,99,99,110,100,101,98,107,98,98,106,98,113,100,108,114,98,104,109,108,104,103,106,106,97,100,94,100,102,108,113,106,106,105,111,103,96,100,109,116,103,104,91,121,111,91,104,100,101,102,95,114,101,108,105,98,97,106,97,110,112,119,111,102,85,97,114,100,99,99,101,100,100,109,105,107,120,104,101,96,96,111,115,112,88,111,98,95,88,104,107,103,97,103,101,99,104,95,108,105,96,107,96,107,108,98,114,101,99,96,110,100,105,108,100,100,114,115,105,99,91,114,103,102,89,103,103,97,98,98,99,104,109,103,99,93,112,110,103,109,96,117,103,94,92,104,103,97,101,99,108,104,102,102,116,109,109,103,106,108,105,93,104,104,107,108,88,104,115,107,85,99,109,111,102,101,96,107,106,104,111,81,98,86,102,91,96,103,101,92,90,101,115,127,110,91,103,113,106,107,100,101,97,101,101,108,106,101,108,110,89,129,96,101,119,63,99,109,102,99,105,98,95,101,98,90,101,91,107,107,108,98,99,105,105,94,109,104,98,95,88,102,106,93,110,113,105,96,94,108,106,99,112,103,106,96,109,98,82,113,100,97,85,105,106,121,108,107,96,106,100,101,115,105,101,110,99,99,107,97,101,106,105,105,89,112,106,97,102,109,97,88,109,102,123,90,99,97,115,97,112,89,119,113,107,102,108,107,118,96,104,97,112,101,106,78,106,104,100,101,118,92,100,90,79,109,101,101,98,114,103,102,104,102,96,100,104,113,98,129,84,83,110,117,98,98,79,102,108,95,104,101,105,94,114,90,107,107,104,103,98,102,106,109,109,102,111,109,114,105,98,106,103,101,97,95,115,111,97,94,102,95,113,110,90,113,98,105,112,90,100,109,107,104,106,113,104,98,99,107,95,111,100,93,104,115,103,104,109,101,106,99,109,103,89,112,116,102,112,112,102,109,90,108,95,115,107,97,98,112,104,116,94,104,100,90,91,106,98,121,89,111,108,97,134,113,104,101,101,101,107,120,108,103,95,104,112,100,98,112,119,101,104,101,96,93,109,108,98,88,80,98,93,99,95,97,118,105,112,102,97,97,104,109,98,108,96,115,104,95,98,104,111,106,107,115,105,101,110,107,112,72,106,98,97,108,96,99,104,104,101,104,104,99,106,111,99,105,112,73,105,109,98,114,112,101,104,106,102,99,104,115,91,100,115,100,108,101,102,103,109,95,104,100,107,107,98,108,110,97,107,113,107,94,109,98,119,100,95,109,74,103,111,104,99,103,102,98,103,99,110,104,100,103,99,68,83,85,115,81,108,106,100,101,93,106,115,111,99,102,103,93,103,107,103,100,106,108,106,100,102,106,84,92,99,110,104,106,106,105,103,113,115,106,101,103,99,106,99,98,93,101,113,98,96,108,88,111,92,99,103,103,102,106,95,104,108,94,100,94,115,103,101,112,110,108,106,101,106,92,94,112,102,106,109,110,105,107,97,110,101,107,108,105,95,114,100,95,97,104,96,100,109,120,101,105,104,101,98,97,102,83,99,98,91,101,108,108,100,111,98,92,86,96,89,102,94,109,93,105,90,117,91,109,105,113,106,117,103,98,102,94,101,112,97,91,103,90,105,102,102,99,104,98,96,102,102,100,91,98,105,98,108,107,77,100,79,103,99,117,108,100,98,104,99,108,102,117,102,102,99,104,73,93,104,105,98,108,91,101,97,108,108,108,108,103,100,102,117,105,111,101,88,104,81,108,106,116,93,107,99,96,98,95,99,111,101,96,109,123,99,100,101,112,91,103,98,101,111,98,105,96,96,94,105,92,105,101,96,108,108,95,102,101,110,99,103,108,101,106,101,112,97,95,99,97,103,105,103,99,82,100,117,99,103,78,85,108,107,105,84,95,108,106,111,99,105,99,105,94,103,109,101,109,103,113,107,102,101,112,91,104,101,101,93,113,101,103,109,96,93,106,105,110,117,109,105,112,103,109,107,91,113,99,92,93,100,121,92,105,100,106,103,95,96,107,92,100,92,78,117,97,101,103,107,103,85,103,99,109,106,98,92,102,100,97,105,96,104,108,93,110,103,105,99,132,113,104,115,115,103,94,99,113,111,100,104,102,110,107,80,100,95,96,102,109,101,100,104,104,106,101,121,102,109,107,95,103,104,101,98,99,89,95,103,107,97,105,116,105,99,113,97,114,102,96,95,107,100,99,106,89,108,103,102,106,110,94,99,101,97,103,117,94,124,83,104,126,102,111,107,87,108,104,107,103,95,97,99,102,100,99,106,100,102,105,94,99,97,93,103,99,99,101,98,104,85,93,110,111,100,106,117,108,99,92,92,108,100,100,97,102,98,108,110,112,105,88,105,101,99,94,102,94,112,90,108,101,89,108,102,109,94,96,98,112,100,93,88,91,112,109,95,112,91,107,100,103,91,99,103,107,104,89,103,114,105,111,102,112,100,104,100,96,120,112,103,105,100,112,96,117,100,94,113,95,98,99,124,111,120,104,88,101,97,91,100,99,106,96,113,96,88,95,103,95,98,117,77,102,97,104,96,99,98,99,109,113,101,98,114,103,111,94,115,109,112,99,104,97,91,98,108,101,81,94,92,93,106,109,96,107,98,104,101,105,112,117,101,128,107,111,103,95,88,107,86,96,126,110,96,104,97,103,100,95,101,118,109,108,105,95,100,108,105,108,96,107,105,105,91,92,103,93,111,99,108,102,95,102,91,95,104,102,85,99,90,95,100,95,107,104,107,91,104,109,100,104,103,101,110,107,102,90,100,106,99,102,93,124,86,108,103,105,106,101,105,92,103,106,108,103,102,84,100,100,108,102,102,102,99,121,91,102,95,98,111,101,102,115,105,112,91,102,99,104,93,100,97,96,109,117,95,80,107,97,99,103,95,106,116,109,111,95,92,106,107,111,92,107,106,105,113,101,101,91,100,98,102,103,111,95,96,98,98,107,96,102,87,97,89,97,103,102,106,106,98,93,113,112,86,95,86,103,95,116,108,105,101,101,90,104,105,107,94,102,105,90,103,99,95,106,98,106,120,105,93,98,97,102,109,96,105,93,96,101,97,111,117,109,104,104,118,98,103,101,93,102,113,91,100,100,106,111,92,113,94,104,104,82,97,106,106,114,89,132,117,105,101,96,98,114,125,80,117, +659.5827,104,103,100,95,115,106,107,97,97,113,94,105,93,114,115,89,88,111,102,100,89,109,103,106,101,118,110,101,103,90,106,104,99,107,98,112,104,96,102,105,95,95,95,107,86,102,103,104,99,133,104,100,97,103,119,93,104,94,100,102,94,92,96,113,108,84,95,103,92,110,103,109,103,107,80,113,89,85,125,97,96,108,97,104,103,97,90,111,109,100,100,83,93,95,102,93,106,102,85,113,104,102,98,100,109,101,126,114,98,92,99,98,96,99,107,97,92,102,108,97,96,96,98,107,98,109,104,97,91,104,111,105,97,106,105,106,112,100,101,99,107,107,104,99,107,90,111,105,102,100,106,107,110,99,103,112,117,91,114,119,96,122,110,90,106,98,92,107,105,111,99,100,110,100,100,97,100,82,113,102,100,94,111,87,97,99,100,86,108,94,104,97,109,98,101,97,102,103,108,99,105,99,96,99,95,98,101,105,109,110,101,108,103,96,109,103,108,104,115,96,105,106,106,94,99,100,107,103,105,106,101,102,96,100,109,104,97,103,109,99,95,105,114,102,104,105,110,97,102,105,110,106,107,103,104,96,103,101,98,100,103,103,100,96,105,110,111,113,111,95,114,97,112,96,109,95,99,97,109,101,100,105,118,104,108,105,109,106,120,113,108,111,98,107,108,107,105,115,100,87,90,99,107,113,93,101,104,100,107,108,108,113,111,95,104,102,100,121,98,99,92,104,108,102,110,103,101,103,104,100,92,90,110,112,103,106,107,106,97,105,108,103,93,100,93,90,119,87,100,100,106,98,117,109,115,92,113,109,101,95,95,103,102,101,110,102,87,102,100,100,100,107,108,111,104,82,113,106,114,114,102,106,94,99,105,95,110,108,110,99,108,105,82,104,99,115,90,109,108,106,105,99,105,107,100,104,115,107,90,99,94,102,98,101,105,106,89,100,105,95,99,100,107,107,93,105,90,101,97,64,98,97,99,102,96,102,88,108,86,99,104,98,83,101,94,112,103,95,108,87,105,105,91,79,109,105,90,107,112,125,106,105,92,103,96,107,97,102,110,104,103,93,86,105,112,99,102,106,110,105,91,102,116,89,94,106,108,100,107,105,112,106,102,101,93,106,90,98,98,99,109,112,96,113,106,125,108,100,104,109,104,112,107,111,108,104,101,105,105,87,93,105,109,108,108,112,106,115,104,114,103,112,104,96,107,86,106,96,101,95,107,111,99,113,93,91,101,105,104,105,101,109,90,99,103,101,84,104,94,102,113,87,101,98,102,101,132,99,105,105,92,95,104,91,105,110,88,94,105,116,105,113,108,100,108,114,100,104,108,100,91,112,104,95,114,107,87,104,106,110,107,104,110,99,103,84,97,93,107,109,102,103,115,99,127,99,100,96,105,95,104,110,101,105,99,120,96,105,109,101,95,108,100,95,98,104,100,102,123,83,96,112,108,92,101,102,107,86,102,104,105,84,101,110,119,106,104,100,104,102,108,114,102,105,86,76,109,99,103,96,114,113,108,100,83,118,111,96,102,105,87,102,97,93,105,106,96,99,103,109,99,104,102,104,108,104,98,105,101,97,110,97,97,101,107,118,87,113,106,102,95,95,78,96,99,106,104,101,104,103,99,111,120,98,102,83,99,106,93,119,111,103,108,107,98,97,95,100,104,101,105,93,92,107,97,101,92,117,97,105,111,100,111,104,97,88,101,105,94,84,100,113,101,103,110,105,84,102,95,102,81,105,138,103,106,108,92,94,113,94,97,104,107,87,99,104,112,96,98,97,89,111,105,102,99,99,107,104,102,107,104,136,100,88,99,115,102,107,94,118,102,101,107,116,107,120,108,101,106,101,113,87,105,102,108,111,103,99,109,102,99,114,109,101,108,103,105,107,104,100,103,99,99,112,106,98,105,102,97,99,102,104,99,84,102,101,109,100,110,95,100,111,91,104,93,107,104,85,110,87,108,102,101,104,101,103,111,89,99,98,104,103,93,90,105,98,95,110,119,109,108,104,100,100,99,96,112,97,91,103,103,98,109,104,89,94,102,96,113,105,103,101,88,112,106,120,103,109,108,123,107,102,99,103,109,103,103,110,92,103,109,101,104,105,104,97,100,97,120,101,108,108,116,106,107,108,103,103,99,115,102,104,103,106,110,90,107,110,108,105,109,99,97,111,112,102,99,102,95,99,94,105,117,94,108,97,101,100,98,106,96,106,102,96,99,113,102,99,106,106,101,103,96,92,101,98,106,117,105,92,103,100,91,96,99,118,91,102,99,95,92,81,108,109,105,111,103,106,95,102,105,103,104,86,106,97,116,103,102,110,106,101,83,64,108,104,111,120,97,112,107,99,94,101,79,117,121,110,113,118,107,123,95,112,110,97,117,108,106,102,100,116,102,103,94,101,108,92,93,106,104,95,92,90,103,107,92,107,108,104,100,103,94,104,99,97,109,99,108,105,95,102,83,104,97,102,99,102,103,110,105,94,112,91,113,105,110,99,95,114,101,101,104,91,103,120,104,106,108,108,100,110,88,103,105,98,94,105,104,94,114,102,95,108,96,102,97,94,102,97,99,100,99,118,96,107,106,104,102,111,98,91,106,105,103,91,104,105,104,64,103,97,109,97,99,109,92,108,103,108,100,105,109,112,102,100,107,106,102,104,105,98,96,96,93,108,101,92,107,106,104,104,99,100,107,107,114,84,106,108,112,103,112,95,103,68,98,99,106,110,91,141,102,109,108,109,113,128,94,94,107,104,93,106,100,104,99,110,114,104,95,110,80,100,111,108,102,98,87,116,108,105,104,96,108,117,99,106,93,103,105,111,107,112,115,97,95,95,108,95,113,113,109,107,116,106,102,96,99,107,118,99,99,102,102,108,94,111,108,107,111,99,99,107,98,99,94,108,103,110,100,120,104,104,97,88,95,113,98,102,96,111,104,104,97,98,105,119,113,110,99,99,92,98,120,110,110,102,94,100,114,99,101,101,105,117,109,109,88,109,105,93,98,102,108,105,93,105,100,101,94,94,101,102,106,101,108,105,99,98,98,105,105,68,98,103,106,95,101,101,96,125,98,92,98,104,81,91,96,120,99,97,101,106,98,99,92,108,88,114,106,94,89,91,121,90,101,107,99,111,101,99,98,76,104,101,108,98,110,92,112,85,92,110,99,100,110,110,112,105,102,108,95,101,100,100,98,83,95,116,111,110,107,105,104,106,99,95,109,92,100,100,106,103,116,102,101,104,94,95,104,94,105,99,107,98,96,94,99,82,90,106,110,95,95,105,100,97,110,106,107,102,104,95,106,110,107,113,112,100,99,103,107,84,108,113,103,94,101,109,90,108,103,99,72,96,91,96,113,92,108,112,89,105,96,106,100,106,104,109,101,96,98,108,103,95,101,98,95,116,107,96,92,96,102,115,108,97,87,105,99,107,107,100,87,99,100,107,89,104,108,92,103,103,96,103,90,99,100,113,125,95,100,110,110,98,104,102,102,92,108,97,110,107,99,108,106,91,107,110,103,106,95,102,112,95,103,104,103,114,105,108,103,99,111,96,111,104,91,79,96,107,87,114,107,93,98,105,93,110,99,104,115,104,108,112,108,106,93,101,93,106,105,95,92,101,101,102,117,123,106,95,105,127,106,100,96,98,102,102,102,113,113,98,100,106,119,111,89,94,114,106,104,94,116,108,89,101,91,108,101,95,110,84,98,92,106,127,94,101,103,104,95,96,98,93,101,101,96,109,114,103,74,103,109,102,99,89,104,113,95,105,96,107,114,90,103,104,108,99,98,101,106,113,98,108,100,96,108,109,104,97,113,101,93,105,112,111,103,105,101,105,118,102,97,101,96,104,96,113,87,101,98,99,110,88,107,111,97,102,106,97,90,94,94,100,109,92,113,108,104,94,96,103,94,101,94,109,106,99,99,98,102,102,103,109,103,113,101,102,105,104,107,105,105,95,115,105,104,100,99,100,95,99,103,96,106,106,99,95,118,103,112,115,91,94,105,88,104,107,98,97,89,102,128,102,100,92,104,65,100,95,99,96,94,115,99,88,111,96,103,104,104,105,106,97,104,105,102,114,79,98,109,107,106,99,102,98,86,96,98,89,101,112,102,109,84,101,110,104,104,92,103,103,104,104,102,114,96,90,106,103,106,108,105,107,95,120,102,97,110,100,116,105,109,105,84,100,101,100,103,112,109,114,102,106,82,115,105,99,104,94,104,105,88,93,97,100,86,110,122,100,120,79,99,114,111,101,101,103,118,109,118,93,100,87,103,103,104,101,109,108,115,89,114,94,101,96,97,102,107,100,107,100,102,103,106,109,94,97,109,113,110,103,109,97,101,95,112,104,102,109,100,106,87,107,106,102,102,99,98,105,112,124,92,98,95,98,108,101,95,110,83,101,89,100,98,101,95,103,108,106,99,109,105,74,104,105,113,103,101,101,122,103,109,108,100,103,104,106,94,106,102,109,105,99,108,95,85,98,98,111,106,102,105,103,115,110,79,124,101,100,108,97,100,103,106,102,97,90,111,104,113,97,94,115,116,112,103,109,97,103,104,98,104,100,102,91,111,94,99,113,98,94,123,108,108,100,113,113,98,94,105,92,105,97,96,112,108,106,104,109,104,90,113,93,104,108,106,94,97,104,111,112,103,90,108,100,114,94,105,105,94,100,101,106,90,112,122,92,106,102,103,92,121,116,100,98,109,102,107,96,102,101,94,125,108,109,107,101,99,98,78,108,102,92,97,105,103,105,103,101,105,93,87,112,104,103,103,94,116,109,104,108,92,120,108,103,90,105,106,63,83,98,98,107,107,81,110,111,107,113,112,106,76,109,111,102,108,96,106,125,102,108,106,87,99,85,103,78, +659.72394,105,102,114,96,102,100,104,105,105,85,91,107,90,100,106,90,96,101,101,102,123,93,114,98,93,100,104,85,92,96,102,103,107,114,105,99,100,98,103,83,108,108,100,107,100,105,109,115,109,96,106,79,97,100,99,94,96,92,103,99,100,109,97,116,98,116,100,95,98,104,110,106,102,97,102,103,95,91,99,91,109,103,103,112,96,107,93,102,117,97,101,105,106,102,109,108,95,104,94,110,94,116,106,101,90,101,111,104,108,106,102,101,99,94,114,120,104,108,101,105,102,114,109,108,118,113,107,97,102,111,103,107,93,117,104,113,122,100,95,104,103,101,106,109,103,104,115,105,105,96,113,109,100,98,96,104,79,103,105,114,75,102,98,101,105,98,111,104,107,116,96,116,104,100,105,102,91,102,121,108,103,96,100,112,104,98,94,106,107,102,105,112,102,112,111,101,100,105,105,107,107,103,97,104,85,94,110,119,90,107,97,103,106,104,103,107,125,108,106,109,70,99,99,96,103,102,94,112,75,99,96,89,102,101,123,103,92,105,99,115,96,99,118,91,110,97,97,94,115,107,112,108,105,106,109,103,96,108,96,106,123,101,105,100,95,113,110,103,105,99,101,103,103,100,109,101,109,109,90,103,109,109,97,86,113,92,98,104,106,100,104,105,108,100,104,113,119,106,130,100,105,99,101,111,115,110,127,96,103,113,94,109,127,106,108,110,101,98,104,95,118,104,93,113,97,113,99,103,114,79,86,89,101,99,96,103,103,102,103,113,97,95,80,103,116,104,113,104,109,103,113,97,105,97,105,108,95,113,104,116,100,103,96,107,109,97,104,118,104,82,103,112,105,103,109,104,101,108,105,105,108,126,103,117,108,101,92,104,93,98,114,99,95,101,103,99,101,108,96,117,91,105,104,104,94,83,90,104,112,104,106,104,94,108,113,101,102,91,105,99,91,101,95,110,109,106,101,99,95,107,103,101,108,98,103,100,96,103,111,93,104,79,94,99,100,105,107,96,108,103,100,104,101,103,109,101,96,106,114,112,90,100,98,105,103,107,74,96,92,114,98,108,108,113,93,97,92,120,99,109,103,105,108,117,108,102,96,112,104,105,98,110,102,105,99,103,102,109,103,102,95,113,113,90,99,114,107,103,110,104,129,108,103,119,106,109,106,99,111,93,94,97,113,107,110,99,107,103,98,105,100,113,96,111,96,108,111,107,110,99,100,108,105,106,103,99,103,113,101,113,95,89,94,100,105,86,108,95,101,100,102,96,95,99,77,92,92,104,95,102,89,96,126,102,99,118,93,105,114,104,107,91,122,95,109,102,107,99,105,99,86,104,91,99,111,103,98,107,101,98,103,107,104,94,98,111,122,102,94,102,113,99,103,105,108,96,102,101,121,104,100,102,105,91,92,101,100,104,98,105,94,103,86,115,101,113,104,95,115,106,107,103,105,94,118,102,98,98,99,97,94,106,107,110,104,103,103,106,101,100,102,110,108,99,100,115,107,98,101,109,110,109,95,101,111,104,107,103,118,90,110,116,105,83,103,108,102,114,98,105,106,114,100,121,105,103,105,111,113,88,102,90,110,106,101,110,113,106,96,118,106,100,95,103,107,89,100,105,96,113,104,110,100,113,105,90,106,101,103,122,116,102,102,95,93,104,106,98,112,103,99,98,109,117,110,108,110,103,110,99,116,106,98,106,115,113,102,92,101,93,101,108,100,92,99,109,101,100,114,98,98,105,104,106,109,114,107,106,100,105,112,107,105,120,95,114,107,104,99,99,100,112,99,103,101,107,112,105,93,102,101,96,106,95,103,94,89,110,99,102,111,104,91,113,87,109,98,104,112,96,97,93,96,100,106,103,97,104,104,107,110,109,105,109,96,102,104,103,105,105,101,98,92,113,112,110,100,102,99,107,103,97,105,119,99,114,97,106,105,104,104,96,102,91,101,96,91,112,99,107,103,101,109,100,93,103,105,100,108,98,97,103,96,93,105,79,100,101,101,112,112,113,111,113,99,86,104,97,100,101,116,104,120,105,105,89,100,110,104,97,110,103,106,103,102,101,96,104,103,93,102,105,102,83,96,104,94,100,97,112,99,112,78,101,101,100,103,104,105,100,97,107,104,99,109,108,97,105,103,94,82,108,96,100,103,100,114,95,99,107,102,105,109,113,106,94,88,100,107,110,92,106,108,106,91,104,102,95,93,103,104,99,98,107,91,109,98,106,107,105,106,102,102,93,100,99,92,113,103,108,100,100,111,87,112,107,94,92,94,106,101,103,71,103,84,105,105,106,108,107,104,106,94,100,89,105,94,104,103,97,107,112,99,94,109,79,107,103,105,102,103,109,105,136,97,101,122,130,100,109,104,102,83,115,106,112,77,114,120,112,86,107,119,106,95,114,99,109,95,102,97,103,113,92,91,103,106,98,100,104,95,96,105,141,116,109,101,98,117,107,115,98,115,104,105,81,113,117,114,101,108,89,107,108,107,106,112,113,103,106,111,112,100,104,104,100,99,108,99,113,98,105,108,93,103,104,100,115,108,96,119,108,111,103,116,104,99,105,92,97,113,102,101,104,96,106,116,98,106,98,109,111,106,104,96,113,113,97,106,100,95,100,105,93,103,103,105,97,107,98,103,100,94,102,113,98,101,99,83,95,106,116,99,109,107,110,113,91,132,104,108,111,100,98,85,104,101,113,98,110,102,115,111,115,112,113,104,113,110,115,98,113,104,109,83,117,115,106,112,100,100,111,100,117,102,105,106,101,114,106,84,98,106,116,106,105,120,103,116,127,102,93,113,99,114,95,99,107,106,104,104,117,113,107,121,113,108,104,106,110,115,107,106,106,112,104,80,100,86,107,103,109,105,110,104,100,104,109,105,101,112,111,98,103,111,101,107,99,104,98,108,130,109,106,107,108,123,115,98,97,104,94,118,95,100,108,105,113,106,109,105,105,100,101,92,103,102,99,101,108,103,100,105,105,119,83,110,102,116,108,102,102,100,122,98,103,104,109,98,101,102,109,103,109,108,105,112,99,96,96,101,109,101,98,98,96,107,103,102,106,106,113,103,100,103,113,112,103,102,107,100,111,117,101,102,103,103,117,108,107,106,98,104,108,100,106,91,113,118,105,103,103,110,124,113,103,96,110,119,111,70,117,98,113,103,102,102,104,103,95,106,107,105,109,109,108,62,117,88,101,107,94,71,104,104,107,97,101,106,98,104,109,101,99,110,103,108,111,89,75,102,107,117,113,104,110,100,105,105,107,91,104,117,119,100,111,108,94,112,101,97,104,119,102,113,106,88,99,116,106,96,102,106,109,105,117,113,98,87,115,96,111,110,103,109,81,96,104,105,98,98,95,89,106,103,108,99,104,108,101,93,111,109,91,106,104,94,102,99,107,105,109,98,109,98,106,100,114,105,99,107,108,104,105,103,99,102,105,105,113,77,105,95,94,103,92,94,100,113,94,105,105,94,76,103,113,98,92,110,96,104,99,106,122,113,114,103,102,95,106,91,105,102,95,99,107,90,119,101,107,100,108,97,103,102,110,104,107,85,97,94,103,99,105,105,102,110,109,89,99,97,95,106,100,86,100,107,111,102,115,102,105,118,99,91,102,96,100,92,97,102,105,99,111,108,92,102,117,91,101,104,103,106,109,104,112,101,107,109,99,119,92,101,111,100,115,107,111,121,101,108,97,95,120,103,107,105,96,98,112,101,95,94,98,101,99,101,108,106,96,141,109,110,103,98,110,108,102,120,101,101,103,100,110,107,99,107,101,117,102,118,118,106,108,97,114,120,105,99,111,99,117,97,106,77,103,120,106,109,102,105,116,101,95,106,99,102,105,101,110,100,99,94,108,103,100,104,115,95,107,105,96,100,107,94,108,101,98,113,98,116,109,116,116,112,99,100,111,88,100,104,105,102,108,101,107,117,101,100,107,103,106,102,112,107,103,98,120,111,104,99,91,92,102,105,101,93,102,94,113,83,97,97,105,101,102,94,103,94,105,113,111,97,94,112,111,102,105,114,97,100,108,111,100,103,109,97,114,106,106,99,122,119,127,111,106,107,115,109,111,99,101,99,109,103,103,109,110,94,101,107,104,87,97,80,91,132,100,109,106,109,92,103,87,94,104,109,109,100,106,95,91,111,107,101,96,112,101,97,105,111,119,102,103,98,104,102,105,92,102,93,103,98,95,107,113,105,83,96,100,106,111,100,95,108,99,100,104,98,112,97,96,100,105,90,91,99,87,93,103,117,94,101,101,101,105,94,119,106,110,110,108,117,108,105,101,108,102,99,83,100,102,105,103,117,101,105,106,108,101,121,91,101,112,74,102,94,103,110,104,91,108,92,106,102,96,111,83,83,102,92,104,106,110,107,100,108,101,77,101,99,113,104,109,113,102,113,95,90,114,86,106,106,124,111,111,97,101,107,93,95,98,100,128,90,96,97,104,104,102,105,94,116,103,102,95,87,105,98,106,111,97,114,105,120,93,108,104,111,100,96,105,105,119,102,97,101,112,111,108,105,111,127,98,104,83,97,112,98,113,79,98,109,105,102,107,98,98,107,115,102,107,99,102,99,103,114,90,98,90,104,95,102,104,99,97,104,95,108,87,98,99,97,113,98,97,105,93,112,123,116,105,98,106,99,91,111,102,97,100,98,101,114,100,100,93,104,107,113,93,102,103,102,94,96,106,105,99,109,102,109,106,100,113,100,92,106,104,102,89,98,106,114,113,93,124,108,98,98,114,92,101,115,92,97,110,94,110,104,108,118,92,94,103,105,96,89,113,105,105,101,113,92,114,93,105,92,105,95,109,104,89,104,97,121,106,99,101,100,100,113,106,107,102,106,101,106,93,97,104, +659.86517,108,121,94,106,85,102,103,62,101,97,99,100,99,120,109,105,101,97,104,104,113,88,104,100,102,117,118,100,103,108,102,103,109,98,108,95,91,102,80,112,116,93,95,80,104,114,109,117,93,105,110,90,99,91,100,122,105,103,125,100,94,101,112,102,105,115,100,107,107,105,103,106,96,111,103,105,110,110,110,105,99,102,100,99,104,103,98,95,91,95,105,111,105,104,96,87,104,100,107,103,98,91,106,106,93,116,96,104,101,108,114,100,105,102,109,101,106,101,101,87,101,103,97,107,104,102,103,95,99,102,99,120,112,115,95,102,94,93,101,95,112,102,94,101,99,80,102,107,91,112,108,98,96,91,100,95,99,101,100,103,106,109,102,107,101,104,99,116,112,99,97,107,99,106,114,112,103,99,106,112,101,97,101,101,97,103,95,101,103,93,99,106,111,104,92,105,102,102,100,117,100,93,100,100,98,102,117,109,110,91,94,103,108,119,99,109,113,107,98,109,112,107,107,90,100,108,110,95,104,100,117,75,108,106,111,100,96,104,119,113,97,87,100,103,110,99,98,104,91,104,100,125,110,96,105,104,96,98,99,106,107,106,100,95,91,99,107,103,104,87,96,106,96,107,95,97,102,111,96,105,94,99,98,110,98,104,108,104,104,94,109,97,99,103,104,114,96,99,103,102,101,110,102,112,98,104,113,110,99,92,103,101,102,109,104,95,105,100,97,108,99,97,98,100,97,92,91,82,100,104,100,104,101,95,96,102,108,100,100,101,94,89,98,87,108,97,98,101,120,104,112,95,110,96,100,107,107,109,99,102,101,99,111,106,87,103,109,107,98,99,111,108,100,99,104,109,98,109,101,107,112,110,109,118,101,104,104,110,102,113,120,101,99,105,99,119,100,109,96,105,110,112,116,103,104,88,102,98,99,99,98,96,102,91,97,101,103,103,105,109,107,104,101,96,107,91,103,104,97,110,106,106,103,104,93,95,102,112,102,98,110,118,105,104,97,106,99,93,99,103,101,99,108,99,106,112,105,101,116,111,117,107,108,100,102,111,102,89,102,114,110,105,96,98,106,101,104,106,113,96,109,116,107,103,105,94,109,101,106,98,93,103,78,86,102,103,108,117,101,93,112,98,102,106,80,109,92,114,95,104,102,99,102,103,111,102,102,106,102,105,101,105,100,101,113,98,100,102,104,102,101,95,105,96,110,91,108,109,112,98,107,109,107,114,101,109,107,103,107,109,106,109,94,99,90,73,105,104,96,104,109,100,104,115,101,95,112,108,104,91,95,108,102,102,83,105,87,104,105,81,105,97,113,106,112,83,109,104,90,96,98,108,106,107,106,110,109,109,102,106,104,106,105,105,97,90,92,98,99,106,98,104,81,107,100,100,107,86,105,112,102,111,113,109,106,105,101,94,95,100,96,98,97,99,100,123,95,110,104,105,113,103,102,107,96,98,100,100,105,135,102,104,107,104,101,90,107,112,102,103,106,99,102,94,93,113,107,78,103,104,99,94,112,106,97,99,106,114,90,100,103,107,104,105,90,94,102,104,108,102,108,99,109,87,102,105,111,119,108,104,112,95,111,115,100,103,98,109,101,135,109,105,103,97,109,84,94,109,108,93,105,89,102,108,95,81,105,113,110,103,96,117,105,101,112,95,112,100,113,94,98,103,95,105,97,100,104,107,99,94,100,94,97,106,103,83,94,107,102,95,100,94,94,102,105,102,95,113,94,91,101,105,101,93,93,108,92,110,91,86,105,111,111,100,103,112,100,103,106,104,95,102,112,100,88,99,93,108,96,101,109,115,115,100,107,104,109,111,102,114,109,113,98,113,105,104,95,112,101,93,96,101,105,94,102,125,103,102,104,103,95,104,108,113,98,106,112,94,112,70,101,109,108,104,97,106,113,93,114,102,109,115,97,113,100,109,97,113,100,111,100,100,98,89,97,96,105,92,100,112,98,94,92,105,109,102,115,94,111,104,81,105,105,83,102,99,105,108,102,97,113,102,87,101,95,87,109,101,110,102,97,103,103,98,97,102,96,96,100,104,103,103,105,106,97,91,98,117,111,95,104,101,115,111,109,103,96,100,110,112,112,104,100,107,95,112,100,108,107,104,102,98,101,100,100,92,111,99,111,101,100,109,98,100,115,98,101,105,102,101,100,100,115,101,102,101,99,108,98,116,104,87,95,108,107,112,103,95,96,117,102,102,108,97,99,86,105,99,98,109,104,104,107,89,98,99,108,98,94,109,94,102,115,106,117,106,111,107,107,100,117,115,104,111,99,105,106,100,101,113,109,92,99,101,109,110,108,104,98,105,103,109,106,100,102,98,105,110,105,113,99,102,105,105,96,102,108,102,111,98,89,102,92,125,113,99,104,97,99,106,82,108,100,97,97,93,100,118,99,78,107,112,112,91,94,104,107,98,99,99,102,106,104,106,106,109,98,95,107,101,101,93,105,88,65,113,106,100,113,96,102,101,100,108,101,93,113,94,107,98,101,119,109,101,98,97,99,101,101,105,104,108,102,106,103,113,98,96,104,112,112,114,106,92,114,102,109,96,99,95,97,94,101,104,92,107,113,95,109,106,111,106,106,112,103,92,101,99,100,107,108,92,100,97,114,97,104,96,106,100,103,94,110,98,87,96,93,109,102,109,114,87,101,112,92,100,116,96,99,114,91,102,106,96,99,103,87,110,100,110,100,104,126,95,89,116,102,105,98,109,107,107,108,104,105,106,92,114,91,106,107,99,96,101,108,120,90,108,114,103,101,104,81,112,103,98,108,109,106,121,105,110,117,102,101,100,106,109,100,99,120,103,105,113,96,92,84,105,104,101,97,109,84,100,117,101,109,105,119,108,99,110,94,116,100,113,97,90,104,99,107,103,108,109,106,98,102,98,103,100,112,109,102,103,113,83,102,103,100,106,112,101,103,111,98,93,101,113,99,98,102,110,99,93,95,102,98,109,105,102,117,104,98,99,95,108,100,108,106,92,100,106,112,115,106,111,91,108,112,106,104,98,94,94,102,100,115,101,99,109,105,108,108,105,106,103,97,88,89,104,96,104,104,94,113,110,79,103,102,98,106,101,104,113,115,88,95,107,105,103,104,90,94,88,102,95,99,99,103,100,88,109,109,106,96,113,108,119,110,101,104,105,102,113,106,104,104,112,101,101,102,107,101,105,102,97,105,101,106,115,109,100,95,94,101,94,106,99,96,104,91,107,101,115,108,105,105,100,101,104,104,92,114,77,89,83,106,108,108,94,103,105,103,109,103,102,102,117,115,112,100,107,117,114,111,106,94,94,99,109,90,101,94,98,95,96,100,98,128,107,107,118,104,99,100,96,114,105,108,98,95,105,105,98,111,102,95,102,99,83,96,103,104,99,108,118,110,96,106,104,96,96,102,107,91,100,105,101,98,105,103,90,103,97,98,115,119,101,97,106,109,132,106,106,102,99,98,104,104,101,102,91,114,96,105,102,102,97,93,101,98,105,101,99,99,102,98,97,101,99,101,100,99,106,101,109,106,107,110,105,97,95,120,123,102,102,83,106,108,92,102,108,98,102,94,98,101,97,103,108,90,101,100,99,111,97,113,97,111,105,103,87,100,109,102,109,108,113,94,102,95,109,100,119,107,101,108,103,105,97,123,111,106,95,73,111,102,101,98,96,100,98,110,110,99,101,105,106,102,104,107,108,108,98,109,109,100,107,100,123,104,109,98,89,120,100,108,96,112,112,105,103,99,109,108,103,109,99,109,115,114,107,102,94,99,105,106,116,103,92,105,103,111,88,104,105,98,97,102,121,99,102,94,103,94,100,104,104,102,104,103,104,107,107,104,107,80,98,104,97,97,100,91,105,80,105,103,76,103,111,110,109,100,98,106,104,102,90,104,113,104,96,91,117,99,117,116,112,99,97,105,103,110,96,108,101,138,101,95,104,91,117,108,99,104,102,95,105,107,114,115,109,99,120,113,79,108,107,105,108,107,110,108,98,100,102,113,100,95,83,111,105,84,105,100,100,96,105,106,103,98,99,108,91,113,105,106,105,122,96,101,106,109,111,113,115,96,109,87,100,104,97,94,103,113,96,104,103,113,109,99,99,102,108,84,107,100,108,127,108,95,102,96,103,99,109,101,108,98,102,82,101,103,100,104,109,98,118,94,106,102,98,91,94,106,107,100,97,103,97,110,88,108,87,98,109,103,94,100,103,93,101,94,102,103,95,103,97,100,103,98,98,106,103,97,100,98,94,93,94,96,97,93,112,91,99,109,97,100,105,119,107,92,96,116,108,98,101,95,102,105,103,112,109,105,100,108,103,102,98,101,110,104,110,104,106,107,105,127,101,113,107,95,103,96,102,86,90,112,101,91,107,101,96,90,103,99,102,95,120,109,101,103,94,91,105,103,113,97,108,96,102,92,107,99,91,110,110,96,120,99,103,99,105,86,96,106,114,100,115,87,103,92,122,114,109,95,97,101,101,112,97,110,84,102,93,109,107,101,101,95,102,102,95,93,106,108,110,89,96,104,114,106,99,107,96,103,93,96,103,108,108,103,98,112,111,102,101,98,102,116,95,99,106,109,103,113,102,102,102,114,82,103,107,121,100,101,101,100,81,102,100,114,102,85,89,98,95,102,94,109,95,101,91,118,95,113,101,87,120,95,92,103,113,98,92,89,108,102,102,99,120,95,103,98,107,102,100,108,102,103,105,103,93,97,102,103,108,104,91,104,95,111,105,100,83,108,100,95,106,91,102,95,101,88,100,93,107,89,98,101,99,106,102,105,96,103,123,104,108,93,94,113,71,112,88,87,108,105,97,110,103,99,104,109,109,107,108,106,105,98,98,127,106,104,124,100,104,109,99, +660.00635,99,119,90,101,91,85,94,96,100,95,96,95,101,105,97,101,98,99,100,106,101,108,98,102,101,103,109,96,106,91,98,84,104,110,100,117,90,107,115,100,99,110,99,96,99,104,101,125,100,102,90,87,92,87,107,82,94,106,101,92,99,104,101,103,110,98,97,108,93,103,105,106,106,104,91,121,100,92,103,113,103,100,85,95,101,113,116,99,104,112,121,108,105,106,97,94,99,107,103,101,110,96,94,92,99,109,84,93,115,98,90,104,104,106,101,118,99,106,108,104,91,101,109,98,90,97,109,104,103,103,101,87,92,111,114,116,75,106,97,106,96,108,95,95,97,111,104,108,100,99,100,84,91,105,89,106,105,105,109,109,104,97,110,108,104,102,108,91,99,94,102,106,94,95,113,110,97,90,105,117,109,110,106,95,107,109,91,101,108,113,103,103,95,97,96,103,107,105,100,100,104,105,104,107,112,98,113,111,98,104,105,100,110,94,113,104,100,107,102,87,106,85,97,95,100,98,86,83,104,95,98,104,102,111,109,103,91,103,105,100,110,108,102,113,90,91,116,98,100,103,93,91,109,98,103,108,93,91,94,114,101,105,113,114,92,99,93,112,119,100,101,103,124,106,99,96,85,100,105,108,100,103,101,106,93,103,103,105,101,109,102,87,102,114,110,95,99,115,101,105,88,107,108,108,105,106,103,109,108,101,79,104,101,97,95,95,100,94,106,99,89,98,92,112,96,100,100,87,114,84,106,104,68,93,113,96,112,106,92,104,97,105,99,92,99,94,100,106,100,92,97,96,109,104,104,110,113,95,114,105,98,100,82,104,107,100,90,97,105,97,107,111,104,107,96,98,100,102,92,99,105,90,97,120,98,89,103,99,105,99,106,97,100,96,100,104,96,94,101,101,92,116,113,90,94,99,98,103,110,90,94,95,106,118,104,84,101,104,107,104,92,100,96,87,100,93,108,96,93,116,96,101,90,106,112,106,102,116,124,104,109,96,97,104,94,113,101,102,98,101,94,111,103,105,97,109,98,109,110,95,109,94,87,104,95,108,94,90,101,106,94,102,125,104,101,100,91,101,104,96,100,96,103,95,94,86,107,106,97,96,119,105,86,97,96,108,106,99,109,95,104,109,96,106,95,113,116,83,105,103,104,106,103,100,107,105,106,108,99,96,95,91,117,100,117,100,112,80,98,105,110,85,102,108,107,63,97,105,102,108,99,102,100,102,80,93,116,105,116,104,109,99,106,98,100,95,110,104,105,101,115,103,95,104,96,94,102,103,99,107,96,62,102,86,97,101,111,108,107,114,104,108,82,115,93,95,109,107,105,92,102,99,71,101,89,103,101,93,109,110,103,104,106,89,97,97,94,94,103,102,105,100,100,80,101,101,113,97,100,99,113,101,105,103,105,103,90,97,100,105,106,104,79,92,97,99,98,92,92,101,104,99,96,109,98,102,102,102,104,120,94,110,101,103,98,99,105,102,92,98,110,121,121,91,94,96,113,102,103,104,105,100,99,101,93,102,116,96,117,98,109,106,97,89,96,103,94,106,104,96,102,109,90,110,101,101,108,111,105,107,107,103,99,105,96,89,108,113,90,101,90,106,109,93,109,97,99,87,101,100,90,102,113,105,108,99,105,100,108,103,105,101,103,97,89,98,114,102,98,97,108,103,104,108,97,103,99,100,101,99,99,90,103,91,92,116,94,74,104,99,104,101,89,113,105,101,92,106,93,91,95,100,106,93,107,102,96,99,113,92,98,113,120,93,100,102,112,98,104,107,102,109,104,100,108,93,98,101,104,107,92,106,99,100,97,102,112,105,100,98,105,98,107,95,93,97,79,119,94,98,97,96,98,111,98,108,96,107,105,105,91,97,101,107,95,94,113,96,108,113,112,97,102,116,94,102,114,106,116,103,104,92,100,97,107,105,104,97,93,106,95,101,105,109,96,107,93,107,111,95,92,108,100,111,99,96,112,95,98,102,103,96,110,104,105,92,102,104,84,98,91,108,103,97,104,87,94,104,105,100,110,94,94,105,96,104,85,101,99,99,102,85,105,96,95,99,99,95,97,107,107,116,105,109,105,102,103,95,104,99,108,99,103,108,104,107,96,97,96,95,100,100,102,112,109,107,92,92,105,93,106,99,97,99,101,99,101,111,103,100,94,96,95,104,98,101,110,95,96,102,83,81,94,106,105,97,79,80,96,97,97,100,98,100,101,108,109,105,100,84,90,98,97,89,99,105,93,112,89,98,101,97,88,108,103,99,105,102,95,98,84,105,100,104,106,104,101,102,98,96,98,109,99,106,103,100,102,109,100,100,100,110,75,94,103,104,97,100,72,97,89,112,103,94,97,112,103,102,86,97,110,113,104,101,125,114,100,97,102,91,90,99,107,79,105,99,95,108,91,98,87,109,93,106,107,91,101,98,110,94,88,102,101,110,102,109,111,101,102,97,98,99,105,87,105,110,109,105,100,103,111,92,105,106,92,98,102,109,104,94,90,119,99,102,105,120,100,106,108,105,108,101,99,110,104,103,102,102,109,106,113,102,101,89,104,98,100,94,112,104,100,98,100,94,72,134,103,101,102,95,105,96,95,117,98,106,108,107,95,107,103,94,112,96,93,115,104,111,113,106,96,101,106,99,97,98,112,93,110,110,102,97,100,97,97,99,112,112,115,106,96,98,99,93,98,106,99,112,105,98,102,100,105,97,102,112,99,105,106,104,105,120,102,111,113,98,104,117,99,102,106,105,103,101,95,108,102,112,106,99,104,98,99,104,103,104,104,92,110,110,113,87,98,77,100,104,114,101,92,106,110,101,98,105,102,109,99,113,91,111,109,85,99,102,102,103,108,108,98,98,112,100,90,106,110,99,102,101,109,96,106,97,110,100,112,112,119,89,99,103,99,101,102,105,93,118,102,102,94,104,111,99,108,99,113,102,112,113,118,109,96,97,98,104,102,105,94,104,108,99,116,99,93,109,113,99,110,110,92,68,106,99,102,108,121,108,106,100,91,99,99,101,108,109,115,101,99,109,114,105,116,112,100,117,87,102,112,104,114,106,110,101,112,94,84,100,126,90,102,101,90,101,101,112,113,104,101,117,95,101,106,105,95,87,94,94,99,105,104,116,97,108,111,112,86,107,106,91,113,102,100,109,99,109,100,113,107,99,104,101,96,112,116,105,97,98,117,112,93,103,82,94,97,95,95,101,104,93,103,102,109,101,104,118,106,96,104,113,103,93,102,96,98,97,102,103,98,104,108,105,107,99,106,87,103,105,95,97,110,100,100,98,102,98,101,113,104,92,123,99,110,107,102,108,101,105,101,106,110,97,97,109,109,104,90,110,120,100,93,98,95,104,98,102,92,104,105,105,90,108,96,93,104,111,106,95,112,98,103,105,103,97,99,94,102,88,114,96,116,100,90,94,106,100,105,103,102,100,103,97,94,107,99,98,103,116,87,95,113,94,76,104,106,126,93,106,106,106,103,97,113,103,86,112,93,104,104,84,107,99,104,100,95,131,97,104,100,98,100,111,113,102,96,109,111,107,94,94,100,99,90,109,100,100,97,125,103,100,95,95,84,87,106,95,117,122,96,105,109,105,91,100,103,104,107,106,110,106,109,107,103,97,107,105,99,101,95,98,102,103,106,109,100,97,91,94,100,93,117,89,97,98,119,109,109,105,100,109,94,92,95,104,95,92,112,96,93,94,110,96,88,96,109,101,92,96,100,100,106,101,100,100,107,100,97,100,110,109,101,93,104,92,103,110,104,103,109,104,97,105,119,104,99,111,96,96,93,109,108,116,111,105,96,92,98,108,108,103,90,111,97,115,96,100,103,104,99,100,104,91,97,96,101,110,116,113,102,86,100,108,108,95,101,116,102,95,111,99,105,102,111,98,111,95,102,103,102,102,113,102,95,101,94,114,104,113,93,108,102,104,97,103,99,84,100,100,103,111,97,102,103,92,93,101,109,97,92,98,105,98,123,99,92,100,96,90,105,96,98,96,97,110,108,101,104,105,113,101,104,91,101,88,94,113,100,104,84,107,103,99,104,106,98,111,98,96,77,85,97,112,100,93,100,105,96,108,100,92,90,93,105,94,98,109,99,99,92,105,101,103,100,116,93,92,106,94,116,108,97,103,108,108,105,108,96,105,107,111,108,103,116,94,98,109,98,110,106,89,101,98,118,100,98,100,98,98,117,106,105,102,95,94,109,107,99,111,98,110,113,110,96,105,103,100,109,99,99,102,92,101,113,116,77,107,96,97,101,98,106,131,106,110,109,107,93,103,103,91,115,99,113,78,108,105,94,100,100,96,95,107,99,110,108,111,100,107,121,103,102,75,104,103,112,101,102,101,108,98,102,98,105,87,107,113,108,106,94,101,106,103,107,92,98,97,101,106,104,92,100,107,108,110,95,108,105,98,108,107,100,111,100,95,110,94,105,91,104,97,114,97,89,112,103,105,107,115,102,116,103,103,101,93,106,104,100,96,99,95,101,94,102,101,96,93,101,88,124,125,102,100,100,113,105,103,103,98,115,106,98,112,89,98,101,101,95,100,91,102,101,108,99,97,111,110,104,143,100,108,94,94,106,107,101,107,115,116,105,112,99,103,106,96,115,108,106,104,100,99,100,121,91,93,93,111,97,99,101,106,107,87,101,73,99,98,103,95,113,105,102,103,101,96,98,91,101,102,109,100,100,94,100,103,113,104,98,105,115,91,113,99,125,91,92,101,92,109,103,102,99,99,109,101,113,94,107,91,101,96,101,103,108,101,102,100,109,109,118,110,109,108,108,102,108,100,92,101,91,96,104,89,102,95,102,103,97,92,97,97,105,90,101,98,120,87,107,107,99,92,103,110, +660.14758,114,102,101,118,105,100,115,92,94,102,104,104,100,105,95,101,108,104,111,92,100,95,99,104,90,100,104,102,114,98,97,98,102,118,87,109,103,77,104,91,104,104,98,109,104,98,110,101,97,95,110,107,119,97,100,95,100,110,107,80,96,97,116,99,100,104,95,102,95,91,105,103,94,96,79,106,92,100,100,101,94,101,99,90,99,87,102,101,102,108,102,98,100,94,101,96,100,118,93,100,91,83,97,103,87,94,104,111,98,92,104,100,104,96,113,103,105,109,109,110,97,109,102,103,113,105,103,112,67,96,89,106,92,100,112,138,96,99,87,100,89,102,102,99,99,104,109,113,92,96,100,103,98,92,101,97,96,96,108,97,95,87,110,107,104,97,92,114,108,109,92,93,99,106,102,99,100,106,117,93,99,117,112,121,109,99,95,104,94,88,106,114,102,101,96,108,101,110,98,100,106,104,99,93,100,114,96,94,117,101,101,109,103,105,101,95,99,108,113,106,120,100,92,92,94,113,92,107,109,98,97,113,107,94,94,94,106,109,103,95,106,106,106,97,101,82,96,102,104,96,105,98,114,104,100,102,103,105,94,105,85,107,105,91,99,99,92,105,108,108,105,103,102,98,101,94,96,104,101,90,93,101,91,92,105,100,113,96,106,125,87,104,102,91,98,105,104,91,88,109,100,91,105,109,99,116,82,100,107,93,92,110,86,114,103,97,102,90,98,93,92,85,107,104,105,93,104,84,108,94,103,94,101,105,103,108,104,97,95,96,108,88,105,96,110,95,87,99,99,102,99,99,101,94,91,102,105,89,97,103,94,98,104,113,90,98,105,103,117,102,106,102,98,90,80,97,100,107,116,94,103,107,98,99,100,84,95,94,106,95,116,92,98,86,110,105,96,106,104,99,96,95,96,104,101,90,94,106,101,95,90,98,101,107,92,101,108,89,103,98,106,92,92,99,98,102,113,87,92,104,88,96,101,101,101,94,102,102,113,95,111,105,99,96,87,106,92,102,102,105,99,106,101,107,103,105,100,107,98,100,108,96,93,99,102,100,99,100,104,101,94,103,98,99,87,108,103,102,88,101,94,103,101,105,108,87,103,109,98,102,113,109,104,97,87,110,91,99,103,100,118,99,102,105,103,100,104,94,101,104,96,103,104,100,99,77,96,115,93,107,104,96,122,82,97,100,100,101,95,86,101,103,101,98,96,109,95,95,106,99,102,104,105,91,98,89,90,100,104,96,86,109,96,100,100,105,107,96,99,102,96,95,100,109,90,96,96,117,124,99,98,92,98,130,106,98,106,92,98,111,98,108,105,107,98,100,106,101,93,103,105,95,104,112,103,94,93,97,104,92,92,87,105,63,81,94,104,105,99,91,100,91,99,95,85,102,91,105,100,91,106,98,102,102,100,97,105,104,112,93,106,91,104,108,89,102,95,97,100,98,102,106,111,100,99,107,97,97,96,99,96,86,109,110,97,113,89,92,101,95,113,101,117,94,90,104,93,92,91,90,101,106,100,96,115,104,105,92,103,105,105,94,87,93,96,109,99,107,96,109,105,102,109,104,105,103,105,102,112,95,97,94,91,84,102,95,94,104,95,102,95,91,99,100,95,108,99,108,100,97,108,96,106,103,87,99,97,95,80,96,102,102,100,109,96,91,109,96,111,106,100,96,90,100,116,87,101,100,104,110,107,98,111,102,96,98,104,108,110,101,92,72,91,99,108,96,100,101,105,103,123,99,107,107,102,92,103,122,95,107,97,99,100,105,94,102,106,103,101,105,96,111,101,109,105,115,95,102,93,106,107,107,97,99,109,109,100,101,103,107,102,101,101,100,107,112,96,102,107,93,92,95,112,101,99,102,105,108,104,99,105,101,100,102,109,103,105,96,95,94,116,97,99,103,102,91,93,100,96,97,96,95,100,101,97,100,79,89,104,99,116,99,82,105,89,99,98,109,104,104,91,95,96,105,96,98,101,104,98,117,111,108,107,97,105,93,88,103,99,99,101,95,105,104,102,79,116,97,90,98,72,104,111,95,104,101,87,102,124,97,98,111,110,104,108,92,102,101,103,105,101,107,108,100,122,96,81,99,106,112,101,112,109,115,100,96,97,103,113,108,100,101,121,116,99,103,86,100,100,94,106,99,104,96,98,111,102,98,99,112,100,102,104,98,101,88,95,100,97,103,95,104,110,105,100,107,108,102,94,111,94,105,94,97,105,98,96,97,107,93,97,97,113,102,111,99,107,107,95,98,102,95,103,95,110,109,113,102,93,94,88,105,101,91,101,94,96,108,101,102,81,107,119,101,96,91,105,101,92,97,94,108,109,108,110,109,123,108,121,101,85,98,93,93,106,105,105,92,108,119,106,98,96,108,99,108,94,101,100,110,95,112,100,87,105,100,102,100,102,95,110,107,76,95,98,95,112,100,89,107,111,111,90,102,99,96,104,96,103,106,111,109,101,97,96,120,109,101,112,91,102,113,104,108,110,101,91,106,93,95,99,115,116,116,117,110,109,96,102,99,96,103,110,94,100,102,102,102,103,108,116,112,102,93,101,96,105,103,92,96,92,63,102,99,93,118,113,99,91,94,124,115,111,100,108,109,116,106,73,113,104,113,119,102,94,107,97,99,100,112,90,105,108,96,94,95,116,109,110,107,108,98,101,98,109,113,108,108,115,105,105,111,100,102,107,95,101,96,105,109,109,117,108,103,91,102,99,102,97,98,98,98,110,93,108,113,93,117,111,90,116,105,100,112,109,98,106,103,112,107,106,118,106,96,101,96,100,108,103,98,107,102,111,100,109,94,87,101,101,108,99,91,107,121,91,106,89,99,95,107,114,100,92,98,126,112,111,103,106,109,110,102,112,104,99,98,97,89,116,110,109,105,113,119,98,108,106,99,101,112,96,111,83,105,104,110,79,101,116,111,103,94,105,110,97,99,102,105,96,104,100,115,117,102,96,99,104,94,82,99,107,110,103,102,90,94,116,120,104,95,109,99,99,103,108,107,110,98,108,96,100,116,106,94,102,111,103,113,96,102,105,96,99,112,106,92,113,104,101,100,115,110,117,100,128,95,110,94,104,94,95,94,96,111,99,107,103,98,126,95,105,94,96,120,102,105,99,100,108,85,105,96,101,107,99,108,99,105,99,103,87,99,108,104,93,99,106,110,107,103,104,105,104,108,108,90,128,97,85,95,107,106,106,93,101,88,102,110,109,106,95,117,108,103,106,96,106,108,98,106,105,95,90,105,107,104,105,106,96,110,99,103,108,117,98,99,108,102,108,98,101,109,106,96,101,98,81,97,107,103,95,97,108,96,98,103,105,105,111,106,100,102,112,105,98,103,109,107,94,98,96,113,106,95,105,104,86,106,122,99,98,99,107,98,76,104,115,104,110,110,99,98,93,103,99,104,105,112,102,105,95,99,116,102,108,102,106,103,106,106,105,99,100,104,87,115,89,112,94,101,94,110,104,104,110,102,90,104,107,109,110,99,113,109,111,91,102,110,107,90,113,106,108,111,111,106,102,97,106,99,112,97,85,108,93,107,95,102,113,105,89,98,100,103,130,99,77,113,109,108,100,105,112,97,104,101,116,106,113,81,111,110,109,111,97,104,99,99,92,108,108,104,111,101,98,98,100,109,95,104,101,121,98,105,97,99,98,103,102,96,99,121,108,104,106,98,102,119,112,111,97,98,100,89,102,98,114,100,101,90,114,114,99,101,105,93,96,95,99,108,111,94,108,107,100,98,101,99,121,104,102,106,106,111,87,107,106,100,104,92,95,104,102,109,100,112,102,98,108,99,113,93,121,99,109,94,95,108,100,88,100,106,97,110,98,94,93,103,104,102,104,96,103,102,102,95,105,106,96,83,88,101,104,103,102,98,98,91,88,98,101,92,76,102,94,108,106,89,105,103,99,99,88,105,76,107,100,102,107,105,104,94,102,108,97,105,92,110,88,95,99,96,89,110,112,111,110,104,91,110,105,95,97,99,119,107,111,100,121,83,108,110,97,106,104,108,102,114,108,90,110,101,104,101,101,109,106,80,102,100,102,111,100,109,92,109,101,110,109,114,109,100,108,103,99,92,115,91,99,109,95,91,94,109,105,104,104,112,96,96,109,101,100,99,96,105,106,100,98,101,98,86,112,71,104,105,97,111,107,98,99,99,102,97,104,108,105,98,101,110,137,96,102,100,93,101,116,114,114,112,108,110,102,106,97,99,96,114,119,113,104,103,111,104,110,103,108,89,91,99,112,102,114,117,99,100,106,99,95,115,104,106,101,110,105,113,91,93,100,96,103,103,116,109,99,97,106,116,102,106,104,102,124,105,102,111,108,105,96,97,100,103,106,110,111,105,105,103,111,113,102,95,95,119,95,104,96,106,97,98,101,103,100,100,111,103,103,106,103,107,104,112,92,109,104,106,94,113,105,102,104,96,108,108,109,114,103,105,104,108,101,96,112,125,101,112,116,121,104,94,100,113,116,103,105,109,108,96,106,89,106,111,106,106,102,103,90,99,105,103,91,109,102,113,91,102,112,110,100,93,101,105,102,105,106,106,109,103,115,116,107,104,107,114,105,116,107,79,104,95,110,112,113,103,96,102,103,110,111,107,110,99,108,110,104,98,109,89,112,98,110,101,98,94,98,105,102,103,111,99,102,109,104,101,111,110,111,109,103,90,99,108,97,106,86,101,101,91,109,84,108,97,103,99,111,104,92,103,107,92,101,99,115,102,101,102,102,104,110,96,95,110,109,103,108,101,97,102,86,98,98,68,97,104,111,95,100,113,109,107,83,98,91,102,90,106,109,110,108,88,95,109,100,100,112,87,101,106,107,99,98,98,102,110,93,110,97,100,80,106, +660.28882,113,104,93,102,88,89,107,96,107,104,103,94,88,108,90,112,104,117,98,91,111,108,110,105,105,100,105,110,103,93,89,100,104,121,119,117,108,94,109,90,98,106,95,100,98,110,106,108,106,108,96,106,106,98,121,110,100,104,107,109,98,97,102,93,106,100,96,118,92,106,114,111,94,94,65,101,101,105,101,103,94,112,113,110,99,106,109,91,104,105,98,107,106,90,92,109,109,102,102,109,95,103,107,99,97,101,97,89,99,87,108,94,111,111,100,99,72,69,127,108,75,102,103,103,103,104,78,93,97,109,91,98,107,104,103,114,112,106,86,93,101,105,99,112,99,106,105,98,101,100,100,102,108,97,88,103,107,104,88,100,111,125,106,99,109,98,102,102,93,104,102,91,103,97,105,104,99,96,96,101,117,98,98,110,94,88,98,105,112,104,99,100,93,94,88,105,107,109,89,95,103,108,100,111,96,103,105,108,120,113,110,90,102,103,109,88,86,113,105,91,103,99,84,94,90,102,80,100,88,114,104,101,100,100,110,98,90,102,103,96,101,102,103,110,102,99,99,99,98,94,103,103,106,97,101,107,105,108,96,101,96,105,101,112,107,99,98,111,103,103,94,97,115,93,100,99,110,97,113,93,100,99,95,109,98,108,90,93,112,96,111,105,99,97,113,118,104,119,105,100,104,101,96,104,113,103,107,108,91,103,100,104,102,103,98,110,104,102,106,94,104,99,113,95,100,110,107,102,107,95,98,104,96,101,101,108,113,101,95,125,118,98,105,88,114,97,101,106,109,111,105,104,101,120,102,111,101,101,112,102,104,98,111,99,94,95,106,108,104,99,115,98,110,129,103,96,103,94,105,104,99,91,101,104,119,95,97,89,109,93,104,95,101,103,109,92,119,107,105,105,106,100,106,101,105,95,95,93,105,95,88,97,105,115,104,106,98,103,103,95,101,91,87,115,103,94,90,100,80,97,113,100,106,93,91,91,101,106,102,108,115,115,105,106,100,97,98,104,112,101,100,96,98,119,105,93,101,100,114,99,97,108,98,109,120,103,98,108,101,71,110,91,95,87,99,109,101,113,128,112,103,104,103,98,103,95,100,100,95,102,111,98,108,102,88,93,102,98,95,102,100,89,105,96,110,104,110,86,99,107,120,86,109,103,111,106,101,97,109,110,100,105,106,105,107,102,105,102,92,105,102,108,119,102,98,117,102,94,109,119,94,95,107,100,108,103,101,108,106,109,102,96,123,108,100,86,105,100,101,110,103,116,109,104,107,97,102,100,101,99,96,100,104,94,101,108,103,99,88,109,102,95,114,94,96,112,93,117,103,104,90,114,97,99,101,103,103,96,96,108,109,94,94,98,112,103,106,93,100,97,99,92,108,102,105,111,98,72,105,121,100,111,99,100,85,108,107,109,101,114,113,95,110,102,91,101,126,85,109,108,106,110,102,102,107,99,103,93,98,106,89,98,98,98,96,98,99,105,101,102,113,104,108,87,103,96,107,101,103,95,101,112,100,99,102,109,105,109,101,107,98,110,110,101,97,101,101,77,104,93,84,95,107,102,88,102,98,104,103,105,106,117,92,97,108,103,100,110,95,100,102,105,102,108,113,104,93,101,106,83,105,98,103,106,88,93,98,99,105,110,94,104,99,86,100,100,107,104,109,90,105,102,104,101,105,117,90,110,96,107,107,92,112,92,99,107,113,104,110,95,99,94,101,102,95,108,113,102,101,105,96,97,108,102,84,115,99,98,106,106,94,104,101,109,102,91,100,104,105,113,95,106,99,110,109,107,100,97,102,108,113,100,81,105,108,94,98,105,107,108,105,94,100,110,99,112,96,109,121,101,107,120,89,98,113,105,102,104,101,106,101,102,98,100,95,109,94,104,104,114,105,97,95,107,103,109,105,90,102,97,99,98,105,109,101,100,99,101,103,64,83,108,92,100,94,97,105,97,109,114,117,116,111,94,108,103,106,92,112,105,98,107,106,99,113,98,95,107,106,106,106,105,83,89,108,99,96,106,102,94,118,114,113,100,113,102,103,104,95,106,100,105,112,102,98,109,120,106,100,113,103,101,101,103,109,102,94,108,110,104,93,90,106,105,107,116,100,105,95,104,104,100,106,108,101,109,114,109,98,104,118,110,110,99,117,106,104,108,107,95,87,100,108,99,98,97,111,103,101,112,100,105,109,103,99,113,103,97,101,99,92,99,89,95,106,101,102,92,103,90,106,97,102,107,106,92,113,92,107,108,103,110,103,106,110,99,99,114,108,98,86,107,94,96,96,114,106,97,106,98,94,106,102,101,109,98,100,96,96,90,109,107,120,103,108,112,89,97,94,93,108,125,90,95,109,102,99,108,116,108,97,104,106,100,109,92,102,113,100,109,101,101,113,107,102,110,96,111,106,102,107,115,111,100,91,103,100,100,92,95,82,103,90,101,106,102,95,98,98,112,105,102,87,101,97,95,109,101,101,107,106,114,109,99,98,112,92,101,87,75,99,95,95,104,115,98,98,103,102,101,106,102,96,104,100,106,100,107,106,110,110,99,104,99,101,95,106,101,99,93,101,102,100,103,102,98,110,104,90,101,102,101,98,104,102,109,98,107,104,105,104,99,103,100,110,107,104,87,102,103,107,103,105,105,100,111,94,97,108,107,89,103,98,108,112,98,111,109,109,117,104,87,114,101,97,105,106,107,108,97,99,84,103,70,103,105,113,104,91,105,105,103,102,107,110,98,94,103,109,100,95,105,106,93,110,97,97,103,92,92,108,100,96,103,99,103,88,99,103,92,106,106,102,110,109,99,94,95,104,111,115,107,92,108,112,91,107,93,113,106,109,104,98,102,96,102,108,105,120,112,109,101,102,115,108,116,105,99,104,108,98,109,108,106,99,107,104,105,78,106,109,103,93,97,107,102,96,97,87,94,105,104,106,102,99,95,104,100,103,108,87,103,101,106,93,92,106,109,102,90,111,98,107,102,106,112,108,101,97,101,115,107,106,104,113,105,103,98,100,97,96,110,104,105,107,107,82,101,105,109,98,94,108,101,102,127,82,116,101,81,100,97,98,94,110,94,101,102,101,94,105,100,99,118,104,95,121,92,109,88,102,104,96,98,108,103,102,105,95,99,89,108,104,113,100,95,107,106,109,103,105,110,92,108,102,103,100,99,111,113,105,103,97,105,91,98,89,110,94,103,103,107,93,92,98,97,109,91,103,87,109,91,113,105,103,98,102,90,110,102,109,80,111,96,104,99,95,105,110,95,103,91,95,109,99,96,110,109,100,91,86,88,101,105,102,101,98,105,109,98,107,91,95,95,106,99,89,102,100,92,100,104,106,91,102,96,109,100,93,101,111,116,95,105,112,126,106,93,107,96,97,103,105,108,99,86,103,93,103,94,99,102,96,109,106,105,96,111,104,91,102,103,101,110,98,95,95,113,103,98,109,103,112,103,95,96,105,105,91,94,103,107,101,90,104,104,87,100,122,98,96,111,91,96,104,103,105,114,114,98,101,112,96,109,117,109,96,95,94,104,117,95,97,105,81,99,94,108,102,95,101,106,96,111,103,100,95,100,95,113,103,102,104,99,105,91,107,102,100,99,114,92,111,113,97,99,110,113,105,93,103,104,98,99,85,105,94,87,102,101,107,105,94,90,84,101,90,86,108,110,101,103,100,99,116,97,117,112,98,110,106,98,88,100,106,93,100,101,97,96,106,103,104,106,102,91,99,106,113,112,100,98,94,90,103,104,104,92,114,114,96,104,98,117,101,96,106,100,105,107,107,101,102,128,96,87,100,95,102,94,105,122,89,102,93,106,105,100,111,98,92,100,104,107,102,108,105,110,103,112,97,92,105,120,102,100,116,108,103,89,85,94,105,98,100,105,106,107,106,101,87,87,102,123,88,97,109,106,106,99,98,96,96,94,85,96,95,96,84,102,100,110,109,109,89,98,90,107,99,104,113,98,91,96,96,107,97,103,95,102,95,95,91,98,99,90,116,98,96,104,113,101,102,106,103,117,108,114,109,105,100,104,103,102,95,102,100,105,106,97,104,98,96,108,90,94,108,85,110,100,109,112,113,101,99,105,105,108,95,115,96,76,88,83,104,105,118,102,103,104,97,100,109,100,103,101,107,103,95,104,101,116,106,87,105,116,97,101,107,108,99,102,72,112,105,101,106,97,97,104,105,88,106,94,99,87,100,115,110,86,102,93,103,95,106,90,103,118,94,95,107,95,103,108,110,102,98,111,95,94,91,99,99,104,98,102,91,103,111,106,99,102,106,112,85,103,109,95,102,106,101,102,109,105,97,99,117,110,102,101,106,97,91,106,95,109,96,99,107,106,92,99,101,104,95,108,114,111,92,95,99,88,94,91,92,98,102,98,87,94,103,98,105,113,114,112,101,96,105,90,91,115,101,96,110,101,106,91,123,113,92,88,101,105,104,102,100,89,95,105,100,105,96,109,104,101,100,107,103,105,97,99,103,97,109,106,95,108,102,101,107,100,108,109,92,115,101,105,101,95,106,116,116,107,104,107,105,105,90,102,112,113,106,96,109,108,105,96,104,106,98,104,84,106,112,99,100,104,105,109,94,104,99,105,112,100,92,102,99,93,103,98,97,103,93,105,102,102,92,100,119,101,98,104,97,105,112,91,86,94,111,108,91,95,91,111,106,95,107,101,92,107,95,102,102,95,100,100,105,114,95,91,117,90,93,105,107,107,90,101,93,110,82,115,99,113,108,95,109,109,105,109,109,107,117,102,91,96,106,96,83,101,114,110,117,95,102,97,112,106,115,113,93,97,100,103,90,106,118,110,105,96,102,106,116,104,103,94,88,95,107,94,110,103,105,111,99,107,97,100, +660.43005,99,114,99,105,105,106,98,67,111,106,94,106,97,100,100,104,101,110,107,117,105,96,92,107,95,102,102,118,121,91,112,114,98,95,108,100,111,100,94,96,86,121,91,92,97,98,90,113,85,100,114,108,88,77,102,95,113,117,100,98,97,111,78,96,93,109,91,106,105,91,104,113,106,103,92,107,102,98,107,107,118,112,100,98,104,107,93,103,110,94,86,109,103,110,101,122,114,105,88,94,113,105,103,104,108,99,114,101,103,102,101,101,94,102,116,97,93,108,96,102,99,117,103,108,103,93,109,105,112,102,103,102,90,121,98,114,101,95,95,90,91,109,89,103,93,109,107,101,94,99,99,95,118,94,96,91,90,103,106,111,96,100,110,87,102,101,113,98,102,104,97,103,92,95,105,88,122,98,113,103,103,84,94,111,100,95,99,102,106,101,97,102,95,101,89,103,103,101,103,102,93,103,100,107,95,113,106,98,104,104,92,100,111,104,105,100,96,106,104,105,78,109,83,105,82,104,100,99,108,102,104,99,100,102,122,110,106,105,109,104,103,94,103,104,108,97,106,93,113,87,104,99,94,110,94,95,89,101,98,76,93,108,100,104,101,96,95,103,106,98,111,97,97,91,96,110,105,110,76,95,108,96,113,102,108,94,92,94,94,104,108,102,97,117,111,101,113,105,102,108,101,93,97,104,101,103,101,97,105,111,102,94,102,117,103,88,110,121,94,105,89,88,100,102,104,112,98,99,86,109,103,90,96,120,105,101,102,92,107,110,109,93,104,95,82,101,96,104,104,99,96,103,108,95,99,109,113,88,97,104,94,102,98,96,102,99,101,99,112,109,113,94,110,123,109,105,97,96,87,110,108,104,95,100,94,98,116,99,105,100,99,82,101,101,103,97,106,97,114,108,99,76,91,91,92,101,99,117,112,100,61,93,116,121,105,104,102,91,104,107,101,98,94,108,105,90,79,95,95,106,98,107,101,100,99,103,99,110,101,92,108,88,101,107,103,113,109,103,102,113,103,106,109,101,104,100,102,103,106,110,94,109,104,105,98,106,103,101,98,107,114,105,105,93,113,94,100,115,103,89,95,100,107,101,102,100,119,113,117,86,107,109,101,108,103,97,107,100,109,105,106,96,103,105,100,109,99,98,100,106,107,100,106,106,113,108,98,105,95,96,107,106,94,95,104,95,78,105,96,87,93,99,112,102,93,96,112,99,95,108,102,102,88,92,98,91,105,105,107,102,110,100,102,97,103,115,108,89,100,98,90,104,110,105,105,110,117,101,106,97,106,99,110,98,99,102,117,98,94,104,110,102,116,108,94,111,103,111,95,107,100,95,102,107,105,127,108,109,99,110,90,96,96,104,96,118,95,95,100,104,102,111,104,120,115,105,112,109,106,104,87,89,106,90,93,100,93,102,95,108,105,96,101,105,107,98,96,95,114,121,106,98,105,95,117,93,104,103,105,108,106,106,104,102,96,105,115,94,92,92,108,112,108,94,99,99,107,106,103,103,99,102,105,99,93,110,119,102,113,104,105,98,107,104,110,92,93,100,93,104,113,95,108,105,108,101,105,110,103,92,104,97,104,94,106,96,106,99,113,98,107,108,111,87,96,95,92,110,99,116,98,101,95,95,99,84,97,96,90,105,93,110,106,116,99,104,107,101,108,111,117,105,106,102,103,103,100,89,89,97,101,106,104,91,114,93,106,99,102,104,98,107,104,100,94,83,102,105,101,104,112,105,108,104,101,102,108,98,87,107,100,104,94,99,102,115,94,84,103,115,94,108,108,101,101,101,103,101,100,114,101,108,97,105,115,104,110,99,100,111,115,96,100,99,101,103,114,113,97,100,82,103,110,108,113,103,104,99,106,83,108,92,101,114,95,113,109,93,104,110,106,99,117,117,109,101,87,93,95,87,94,116,118,104,103,113,104,91,98,108,106,99,82,85,93,96,93,112,114,107,100,108,106,103,106,103,101,103,110,112,100,94,99,104,100,108,98,109,99,112,108,104,99,110,118,97,111,100,94,102,110,103,105,96,102,88,104,98,94,89,98,99,82,103,101,102,90,108,108,111,99,121,107,102,91,95,104,104,106,99,99,101,108,105,114,103,95,101,108,115,99,112,104,109,92,88,98,102,105,102,102,104,103,110,109,101,103,82,104,106,102,102,105,95,113,114,105,106,103,91,96,90,98,99,106,117,110,95,101,113,94,108,99,99,107,113,103,108,92,85,105,91,109,95,99,96,89,101,100,102,105,100,97,100,102,108,92,98,109,98,93,95,109,104,120,94,105,101,86,86,104,100,95,95,106,99,100,92,93,101,103,98,100,98,110,84,104,117,109,107,113,117,100,109,93,100,103,91,85,100,97,98,95,91,105,93,98,103,105,103,97,106,103,97,100,101,111,98,91,99,89,104,90,96,115,88,93,109,99,84,63,104,105,101,99,109,92,118,126,99,106,111,100,104,102,96,105,96,102,104,110,88,99,107,110,115,77,105,108,103,105,112,103,112,113,104,109,98,99,105,110,113,113,102,95,98,102,113,117,103,111,103,110,100,120,98,96,97,106,98,83,86,117,119,95,92,94,95,107,98,104,102,105,106,95,96,110,117,98,117,105,85,95,103,106,101,93,107,103,107,105,104,110,98,98,116,103,100,115,108,88,106,96,114,96,95,94,98,110,86,88,106,113,109,98,101,97,101,119,105,100,102,114,105,108,105,107,103,104,95,110,103,99,106,102,106,99,113,104,106,100,124,105,102,100,95,86,107,99,112,95,103,111,67,85,102,110,102,82,102,104,103,109,103,93,113,98,107,103,103,88,95,112,120,106,107,106,109,97,113,111,101,109,106,104,112,108,103,126,115,99,109,110,118,112,107,108,102,104,107,112,128,112,113,101,103,95,104,104,107,106,116,91,104,90,98,94,104,95,104,101,94,111,110,93,96,99,100,87,102,111,105,105,103,90,99,103,102,101,100,108,102,101,98,105,97,99,91,102,92,98,99,99,93,102,108,107,110,103,106,101,95,111,103,94,108,111,98,102,105,108,113,111,103,106,90,97,94,85,91,109,118,98,103,105,108,106,102,90,101,104,110,98,101,112,107,112,109,112,97,108,104,99,107,95,105,103,98,107,96,112,99,111,112,93,107,105,92,111,100,104,100,98,106,99,99,111,104,100,111,88,101,102,95,106,93,96,119,94,119,116,107,99,87,104,98,99,114,109,106,111,101,83,93,99,117,103,114,99,109,105,96,102,105,100,98,101,111,101,110,104,107,113,94,99,111,109,105,99,106,115,113,95,93,115,113,102,103,96,104,93,74,102,90,102,97,104,85,112,117,91,106,99,96,103,104,101,104,118,101,94,100,104,104,104,90,106,103,111,108,103,105,100,111,101,102,124,113,92,107,101,106,102,88,103,106,111,95,98,104,103,107,100,102,99,95,118,97,102,105,109,93,117,98,79,110,102,102,110,101,105,91,94,98,91,103,94,103,104,100,98,108,96,101,94,107,93,110,116,121,100,106,104,113,100,113,102,104,98,99,96,88,111,107,111,100,103,106,71,92,92,122,105,123,101,108,94,104,109,90,102,103,99,100,106,96,99,122,110,105,116,106,102,104,99,83,103,101,102,111,103,102,100,104,105,98,93,112,107,90,107,113,97,97,87,98,106,109,107,99,108,101,100,106,106,110,109,101,99,109,92,102,107,100,106,109,95,98,100,98,103,118,111,100,111,104,102,107,108,102,105,97,100,116,99,103,100,99,106,98,107,117,94,105,106,101,103,105,99,108,119,109,117,105,102,92,102,94,99,107,109,111,95,99,104,106,108,114,106,104,101,106,96,107,94,106,92,105,106,95,113,113,108,109,103,107,108,98,105,110,102,97,106,96,99,101,95,108,113,98,99,102,104,113,90,106,99,99,103,119,96,99,94,109,89,97,102,103,89,100,103,106,90,106,103,101,97,107,85,118,100,103,95,106,111,94,91,105,103,102,109,104,97,111,98,108,110,107,109,106,102,94,104,102,103,114,102,107,110,93,103,111,106,103,77,112,98,99,106,106,102,109,106,112,105,108,93,102,104,99,105,90,94,108,96,109,117,95,99,121,104,92,105,116,107,110,110,95,95,114,108,96,102,96,116,115,111,102,87,93,110,105,107,101,114,112,96,105,112,99,96,92,101,107,99,99,103,103,92,98,111,103,126,101,104,111,107,105,122,95,100,103,105,102,111,103,87,107,105,100,103,103,113,95,106,108,95,91,100,98,99,91,104,113,103,99,95,101,115,109,94,94,111,91,108,106,103,107,105,95,103,112,103,108,97,95,95,104,94,115,107,109,104,100,118,104,110,109,114,119,106,113,105,110,105,108,104,107,115,104,91,115,104,106,100,102,101,99,104,109,100,123,113,106,110,92,109,98,96,97,107,106,98,105,97,110,109,100,100,109,98,97,99,95,96,103,100,107,102,98,93,102,107,117,119,94,96,125,114,101,90,89,80,101,109,104,103,121,109,102,98,104,95,106,102,107,97,100,104,116,99,104,118,120,92,105,106,96,94,91,108,121,106,97,123,109,100,104,109,100,109,105,104,110,104,107,96,102,94,100,95,91,100,88,101,94,108,113,109,109,103,97,118,102,106,91,111,108,95,95,102,91,98,102,106,96,103,105,98,100,126,106,94,104,98,94,109,105,100,86,111,111,92,103,104,95,108,107,109,102,103,112,88,99,98,98,112,103,100,91,93,122,105,117,107,110,106,102,107,106,96,76,101,103,96,100,101,102,108,101,114,84,111,99,89,110,107,93,105,97,111,93,95,101,112,103,94,110,110,85,108,98,101,98,98,117,107,107,112,100,107,117,122,100,110,115,112,98,101,101, +660.57123,102,97,99,98,105,111,102,102,109,99,93,90,96,103,110,95,88,109,97,99,106,105,117,106,110,95,103,100,117,107,91,109,109,98,104,94,103,96,95,98,98,99,97,115,104,100,110,113,88,95,112,102,100,100,102,101,104,94,111,86,90,113,108,91,100,103,85,91,102,93,110,104,101,103,96,118,91,97,98,96,114,88,96,105,113,104,97,106,97,105,99,100,96,108,100,95,105,102,97,112,99,96,97,91,109,98,86,95,108,100,95,110,107,107,108,123,99,99,103,95,99,91,99,107,101,99,82,74,110,94,96,114,100,107,116,109,98,105,95,102,100,111,89,102,106,99,97,90,97,85,90,88,113,98,99,92,95,94,91,101,96,82,110,110,101,109,97,93,92,91,124,109,103,107,97,124,106,89,109,102,101,101,94,103,104,100,96,99,99,100,99,92,98,98,93,102,100,104,80,106,104,104,101,97,94,88,94,99,81,105,106,104,96,87,114,100,98,101,97,109,106,98,96,95,93,104,95,113,100,111,100,92,102,104,116,93,99,112,92,113,110,100,120,100,96,100,109,100,105,88,105,99,99,103,104,106,98,108,113,116,100,102,99,104,104,95,102,92,100,99,109,94,103,91,93,110,93,103,101,100,90,111,100,94,107,99,96,96,99,109,96,108,99,116,100,78,105,103,102,99,92,95,104,93,99,106,104,93,95,113,90,109,96,96,86,101,97,93,104,101,97,101,105,102,81,107,111,110,106,100,102,93,97,113,81,94,109,91,99,100,98,95,100,95,105,109,102,106,109,110,101,103,106,104,107,101,86,102,110,104,95,100,104,94,104,95,97,102,120,99,98,95,105,107,103,99,97,97,74,104,113,109,107,110,98,107,103,102,113,98,103,111,94,93,103,102,103,98,97,98,105,98,104,117,109,93,95,104,107,98,95,90,91,109,101,99,102,120,95,95,100,107,95,99,100,96,98,101,110,103,109,105,95,104,102,97,75,101,85,103,103,94,108,97,101,96,78,82,107,110,107,115,105,96,99,99,115,113,103,104,103,100,103,110,94,106,106,100,96,100,101,93,106,112,108,95,100,114,115,107,108,107,112,99,110,87,96,93,117,95,110,103,101,103,96,100,107,106,91,92,100,97,106,102,92,102,101,103,102,101,102,93,97,109,124,98,88,95,90,98,105,107,100,104,102,100,105,100,98,103,94,106,94,108,109,80,100,101,102,100,98,113,96,95,92,88,108,98,117,110,95,139,109,95,113,85,115,96,114,105,100,109,94,100,101,106,98,95,91,95,93,100,109,108,95,88,94,101,98,84,92,103,100,95,103,103,101,92,92,104,104,100,103,94,114,100,94,109,103,104,108,98,107,97,95,90,90,92,102,87,99,110,103,113,102,91,103,104,88,96,107,104,111,106,92,119,91,109,109,91,96,98,93,111,93,105,87,102,105,106,108,104,106,100,107,96,104,91,108,105,101,103,108,106,108,102,111,95,100,108,65,93,111,98,87,102,117,99,97,107,102,95,116,98,115,103,104,101,99,101,97,83,103,103,111,101,97,94,100,109,108,104,114,93,111,102,107,99,95,99,101,104,112,98,99,100,123,107,95,104,103,108,107,99,95,103,95,99,101,93,102,98,109,104,95,101,98,97,105,88,99,108,102,97,90,101,105,91,110,99,115,110,101,105,100,101,117,99,95,123,120,109,91,106,112,98,102,113,109,111,101,94,94,108,92,102,91,102,102,86,106,100,104,101,87,110,107,94,116,115,102,110,102,106,104,104,107,102,95,108,110,112,105,109,90,109,102,128,97,114,89,100,103,101,105,108,82,100,108,96,119,101,96,97,103,108,102,104,93,109,112,108,112,103,106,115,106,104,103,101,99,93,75,97,99,102,100,105,92,101,100,112,95,104,90,100,110,109,100,100,105,101,100,109,86,120,102,95,109,105,98,90,102,110,104,105,101,115,119,109,98,104,91,105,108,112,113,112,105,96,100,116,100,99,100,113,103,110,110,106,107,103,108,96,95,105,112,94,100,99,107,104,99,96,103,99,91,102,106,99,120,98,108,100,96,107,91,109,105,101,100,106,102,105,97,103,115,97,88,105,105,108,106,118,92,109,97,95,109,100,102,96,87,91,98,108,101,109,100,109,95,100,113,105,102,98,102,98,88,112,95,102,112,100,109,106,95,102,109,109,99,103,92,102,100,108,109,101,105,101,109,96,95,100,101,100,107,99,108,93,97,84,106,95,100,106,92,107,99,106,109,107,107,97,87,118,96,111,100,97,101,105,87,90,86,103,109,94,95,98,104,105,101,92,105,109,118,93,104,96,99,94,104,98,102,101,100,103,100,111,94,97,91,126,94,97,109,102,103,104,118,101,95,121,102,106,107,115,116,104,105,100,101,91,102,135,98,96,114,115,101,105,125,105,97,97,109,97,93,87,73,102,94,105,99,104,97,98,109,102,98,95,100,102,104,97,98,91,108,98,94,99,97,107,109,101,98,102,78,107,104,115,108,113,97,103,94,107,104,104,97,103,108,88,99,109,102,115,116,105,97,112,109,92,106,92,96,96,101,98,108,105,99,126,100,74,104,111,112,101,104,107,108,100,91,97,110,103,93,106,88,97,109,92,106,102,106,96,103,92,108,100,100,113,107,102,96,104,103,99,100,115,94,94,99,117,119,113,113,95,104,101,106,105,96,106,104,100,104,93,91,103,100,105,117,103,90,87,105,107,105,105,96,103,96,108,99,100,106,110,97,115,106,103,101,99,97,94,102,105,101,118,100,108,115,102,84,99,121,105,112,102,100,96,125,89,96,95,105,98,99,100,113,99,104,102,105,109,103,106,102,92,102,104,103,102,93,122,110,101,109,97,106,106,108,90,88,104,102,76,97,114,118,98,98,108,104,101,111,112,107,99,97,97,101,104,102,99,107,107,103,95,101,105,102,105,100,119,106,100,106,109,102,91,102,109,98,102,98,101,105,100,98,100,84,100,102,100,105,94,83,90,108,115,112,118,97,94,105,96,104,102,96,92,109,104,95,97,107,110,100,112,114,107,104,95,95,99,109,103,79,100,112,109,105,95,104,108,107,102,102,102,94,121,101,111,98,92,110,99,105,107,110,100,115,104,83,99,102,109,91,103,109,106,115,100,106,83,102,96,97,107,93,111,101,109,85,109,94,111,112,106,106,95,109,102,108,99,101,106,104,83,88,107,104,126,98,101,104,83,78,101,100,118,115,97,113,101,102,99,109,109,99,101,100,98,102,102,111,108,94,115,115,101,115,94,96,94,95,102,107,89,106,109,114,104,99,92,102,113,102,103,101,88,97,98,99,107,110,112,100,105,112,97,116,107,106,100,115,109,99,113,100,95,109,91,101,96,123,109,105,109,92,117,105,99,107,91,101,104,104,108,99,99,95,94,110,112,87,101,103,104,106,109,106,95,99,95,102,96,101,109,103,104,89,101,92,109,110,109,94,99,96,104,111,95,110,90,115,102,105,111,96,109,91,105,96,106,95,101,103,101,95,102,102,112,94,102,107,112,104,101,115,108,99,100,104,101,104,94,98,112,90,107,97,105,106,98,97,106,108,97,109,106,109,97,89,107,112,99,99,112,103,87,94,117,119,97,100,103,111,115,107,109,101,116,106,118,98,98,107,100,89,101,104,98,110,105,101,107,107,92,109,94,108,112,108,102,105,104,108,98,90,102,98,109,101,91,109,101,103,102,100,108,100,114,105,106,105,108,117,104,98,105,101,101,97,93,96,112,106,106,103,105,96,90,106,96,106,95,99,119,110,99,102,87,111,97,90,85,105,101,101,95,101,99,113,96,98,104,102,103,97,105,91,98,111,98,99,106,91,109,113,109,99,107,102,98,101,108,91,115,97,105,110,88,97,95,110,105,86,92,105,95,100,110,109,100,105,99,88,103,97,103,97,105,99,111,103,104,108,90,103,111,99,106,108,98,94,102,101,103,96,109,98,101,101,99,94,114,127,112,105,113,102,93,105,98,111,100,107,100,106,107,114,109,103,102,94,101,99,100,94,97,102,116,103,94,108,92,111,123,96,111,105,115,112,105,94,102,108,98,123,69,98,115,104,104,106,106,103,99,99,97,91,104,105,107,106,102,98,101,97,111,100,104,97,104,104,93,104,117,101,107,94,105,91,107,99,101,103,111,103,102,89,100,102,123,103,109,113,88,101,101,100,92,104,103,105,102,95,110,90,103,105,98,102,91,101,107,104,110,100,116,99,103,101,87,95,102,99,101,116,99,94,92,106,98,92,105,95,116,105,105,97,100,90,97,99,96,128,105,109,101,113,98,100,114,99,106,108,97,112,92,105,106,100,81,101,90,85,102,110,102,104,109,105,87,103,107,99,109,105,95,99,101,96,102,94,109,104,91,101,93,105,115,116,98,118,110,102,98,107,99,101,101,89,91,98,103,107,98,112,109,99,109,101,116,94,83,94,96,105,108,91,104,95,100,108,100,103,101,112,109,111,91,99,108,98,100,96,103,94,96,90,120,86,106,107,94,98,94,105,98,99,92,109,98,94,119,101,101,108,82,83,104,96,104,98,120,108,106,79,109,102,109,105,104,91,106,106,111,98,83,109,110,98,112,109,91,100,102,94,106,100,107,105,91,101,98,93,80,95,102,101,103,112,115,99,90,101,110,98,106,83,101,120,94,101,100,99,95,94,106,98,88,84,92,100,95,109,102,109,107,106,112,103,103,84,104,94,92,97,98,99,128,108,80,87,98,101,103,113,91,107,100,107,100,99,105,109,94,94,94,107,96,98,105,107,102,102,108,103,101,108,102,91,113,100,97,102,100,105,129,99,103,127,87,98,91,127,84,111,116,105,108,113,98,95,96, +660.71246,111,92,90,98,101,104,90,82,82,93,91,93,89,95,111,92,110,95,104,121,88,119,118,94,108,100,109,106,104,98,113,98,101,133,106,103,101,87,106,78,96,94,80,94,102,117,102,98,98,112,101,92,101,104,105,104,88,104,99,101,67,116,94,95,100,102,88,102,95,92,104,98,102,106,96,106,113,95,110,88,99,102,99,108,101,110,111,91,92,95,117,93,103,78,99,96,95,92,87,95,106,100,105,97,104,98,90,92,94,92,102,95,95,93,104,107,117,100,104,100,106,95,109,105,101,111,106,108,106,99,113,95,100,110,95,99,91,116,99,87,101,108,100,103,88,93,104,102,98,98,116,109,108,106,101,92,106,97,105,102,95,92,105,92,104,105,101,87,95,99,102,100,98,103,90,102,101,91,104,104,95,96,96,109,99,96,102,98,99,93,106,92,101,105,109,103,116,102,119,118,109,99,92,109,96,81,117,107,97,104,96,103,96,102,98,102,90,106,99,89,114,96,91,108,106,102,103,96,111,114,94,104,95,105,103,102,101,107,106,110,102,75,107,106,95,106,95,109,116,99,97,101,105,103,106,113,101,96,101,114,106,109,102,101,92,104,102,105,103,99,118,102,97,110,101,104,98,99,97,96,116,112,94,109,95,100,100,102,95,93,91,111,118,91,98,101,105,109,93,91,106,109,100,102,95,114,106,100,109,113,112,121,104,105,99,88,96,100,113,102,105,99,94,103,100,110,110,97,104,105,99,104,113,104,97,104,99,91,102,99,99,106,96,101,105,116,93,103,109,94,97,107,99,120,112,95,107,103,114,105,96,96,100,90,105,104,98,100,95,95,107,103,122,104,113,110,121,106,106,103,99,100,99,92,93,95,101,110,106,104,91,86,95,84,102,105,84,99,95,94,97,102,106,103,112,113,102,101,119,113,114,87,99,97,97,75,96,97,94,103,97,99,99,101,100,108,101,94,114,98,91,100,100,121,100,95,98,93,98,76,104,107,110,109,102,96,95,99,110,95,94,102,108,86,100,106,104,108,106,104,105,105,99,102,105,106,107,104,114,101,112,104,92,87,100,96,100,122,100,104,100,97,105,91,105,83,102,107,101,103,115,99,101,87,88,108,102,107,109,101,95,99,98,116,109,100,104,89,116,94,109,105,94,107,99,101,99,110,106,99,109,109,106,107,113,100,104,107,104,99,97,100,111,101,114,112,101,105,113,106,95,100,104,100,121,93,93,99,100,100,101,106,108,110,100,102,117,104,106,96,96,99,97,91,97,102,107,106,108,102,90,91,100,120,116,104,111,99,96,98,103,115,104,108,108,104,118,89,116,108,99,104,110,107,106,98,104,109,109,110,110,106,108,120,108,100,105,101,111,96,110,103,125,110,102,99,83,104,104,104,95,100,113,82,105,115,99,95,102,101,106,104,115,98,84,104,107,98,108,88,113,96,114,111,100,92,104,97,106,99,102,99,102,107,102,114,101,102,105,93,98,94,90,108,96,101,102,98,110,103,112,110,109,95,103,95,97,96,106,75,97,104,118,106,100,99,97,97,96,99,98,108,108,101,114,102,98,104,110,98,104,102,105,109,99,102,95,92,96,101,103,111,95,99,97,91,89,110,124,101,101,95,100,109,95,96,100,106,112,117,98,105,106,108,96,101,105,99,110,87,102,99,103,110,101,99,108,111,110,122,99,102,99,98,111,71,102,112,97,99,90,97,98,85,78,113,93,109,98,104,107,104,104,82,105,110,107,99,109,95,104,96,101,103,111,107,109,107,103,108,99,101,106,105,102,112,98,108,71,99,118,108,97,105,89,100,120,89,99,102,103,105,107,106,100,94,101,97,116,94,113,105,107,103,110,106,105,100,105,110,106,98,103,107,106,102,108,100,104,102,104,113,99,104,116,103,98,110,95,105,104,91,109,109,100,110,101,99,100,111,101,99,91,105,98,102,107,107,116,100,94,109,104,102,95,99,94,104,97,94,109,101,109,94,101,106,94,105,110,111,104,122,90,99,103,106,94,107,97,105,103,99,96,101,108,97,98,103,94,96,105,105,132,87,101,107,105,97,104,105,100,110,98,104,104,88,97,96,97,97,74,106,98,114,109,110,98,99,114,100,116,100,98,111,118,107,112,113,105,99,103,98,93,105,107,95,103,111,102,99,103,108,101,103,102,105,98,101,108,99,106,96,102,99,91,99,102,96,86,112,98,102,109,105,103,102,101,113,107,95,89,97,106,101,105,99,107,81,92,103,86,103,97,106,112,100,105,83,83,102,94,112,99,104,117,126,102,112,99,114,114,104,117,94,88,108,112,102,106,99,101,98,108,91,108,105,95,110,103,109,106,113,99,102,99,107,107,100,96,100,96,111,100,114,93,108,115,108,102,95,98,101,98,100,101,103,95,91,99,103,107,103,104,105,105,105,107,107,104,113,103,117,104,96,82,96,96,100,106,94,91,113,107,75,97,101,102,99,102,102,94,109,100,97,100,102,102,92,110,112,91,123,104,110,109,95,105,100,97,110,91,98,103,108,100,101,98,99,100,96,99,110,95,97,110,96,104,106,114,93,106,105,104,107,90,96,103,114,109,95,103,110,121,107,116,105,105,110,104,96,107,103,98,93,95,89,112,101,115,101,109,105,107,104,97,100,106,101,109,105,108,99,97,111,105,98,105,95,113,110,103,100,108,111,99,133,107,102,97,105,107,96,99,101,117,104,100,107,92,109,109,105,101,107,102,99,102,102,103,80,105,104,95,99,116,105,114,100,98,112,97,111,106,115,100,113,99,113,109,79,108,99,112,79,100,104,96,107,103,99,109,110,104,105,100,101,108,109,105,100,107,108,115,117,105,105,104,92,106,93,110,110,105,100,93,120,93,105,86,117,103,106,115,94,99,99,100,104,110,110,98,107,101,108,112,110,87,105,113,104,109,111,112,115,76,98,106,103,99,98,95,106,85,109,113,101,109,104,108,102,99,117,105,101,109,95,88,108,88,102,116,87,98,116,109,96,105,107,105,105,94,122,108,107,102,103,100,102,112,96,114,112,103,92,95,99,109,92,95,117,108,107,112,97,101,104,102,92,112,101,100,100,110,107,91,92,108,101,111,101,82,91,105,111,104,108,103,105,99,99,76,98,95,103,105,101,117,109,98,106,104,95,100,98,104,110,102,112,112,96,106,103,106,95,112,110,105,96,110,94,96,110,92,119,100,94,110,108,112,105,108,102,103,104,106,95,100,108,109,109,116,112,113,100,101,97,106,100,116,98,120,104,111,102,111,124,107,115,102,111,113,94,105,98,108,113,101,105,110,109,95,109,98,79,106,105,113,98,96,118,103,106,105,99,111,105,96,102,94,83,96,94,104,120,106,111,103,111,106,106,108,102,111,113,91,108,119,112,100,109,64,94,98,97,103,99,105,103,108,105,108,103,95,105,90,108,119,93,101,95,97,108,109,102,98,89,105,107,97,95,102,106,108,129,105,104,103,105,91,98,96,110,104,108,104,108,104,105,99,99,99,94,107,101,105,110,103,101,116,109,99,106,99,102,101,110,106,104,96,107,95,104,98,85,96,98,88,75,105,105,87,104,96,95,102,101,100,116,104,105,94,103,107,111,90,107,93,95,101,109,93,107,104,98,93,101,95,106,104,99,97,109,103,116,100,109,104,106,116,85,119,93,127,112,117,105,88,87,108,97,116,95,113,102,121,96,107,113,103,106,107,109,97,95,103,99,90,102,107,102,99,92,104,100,112,102,104,114,107,107,102,113,80,108,98,107,110,104,91,103,100,80,107,113,90,106,97,105,97,100,91,99,103,115,88,106,105,111,105,93,111,92,93,102,99,106,97,98,103,100,101,99,102,91,102,92,99,79,94,97,109,111,102,102,103,96,114,94,112,95,103,111,114,107,96,106,108,109,99,105,103,97,103,105,106,90,100,109,102,112,103,104,105,100,98,102,108,103,100,118,104,107,112,100,96,97,93,93,108,109,104,107,99,103,99,116,102,100,106,100,100,102,99,101,103,112,101,101,101,104,109,103,78,104,107,97,104,99,95,100,98,105,103,100,101,115,97,98,113,111,99,90,110,88,105,99,99,110,97,101,99,100,98,93,97,95,97,99,108,112,102,102,100,100,100,108,99,107,106,63,92,110,107,99,105,102,103,100,106,89,106,102,128,112,99,104,102,99,94,105,99,99,98,98,96,105,99,107,85,101,97,98,99,98,97,91,99,121,99,85,100,105,107,112,98,109,93,108,101,103,104,99,97,102,103,107,93,112,96,102,111,116,107,103,112,95,103,105,95,103,106,111,105,97,109,94,100,109,100,116,109,117,110,107,71,108,93,101,84,94,104,97,104,102,102,101,112,119,109,113,97,97,96,102,90,112,78,91,96,97,97,107,110,110,112,95,95,101,103,113,102,103,113,96,100,100,104,88,109,103,96,98,97,72,109,110,111,105,112,76,101,104,90,109,84,93,105,95,103,97,107,99,103,105,109,99,98,103,97,100,98,95,93,104,113,99,99,105,106,112,94,100,102,101,97,112,99,117,100,107,108,97,92,118,108,103,98,101,101,103,101,112,98,97,96,107,92,94,109,109,103,96,106,92,96,92,104,106,112,101,99,101,102,88,96,99,93,95,110,100,103,110,117,110,101,113,104,116,107,106,105,99,98,94,113,95,104,99,103,108,94,107,95,96,100,97,107,90,100,99,104,91,96,92,102,102,111,104,98,98,101,109,99,101,106,104,111,101,114,103,98,88,106,100,99,111,95,101,117,105,106,93,104,89,104,114,106,108,91,102,107,99,94,91,87,101,90,67,116,105,101,107,100,112,103,101,105,105,110,111,102,105,87,100,100,100,88,113,106,87, +660.8537,115,108,104,65,100,104,102,98,100,100,92,83,98,105,111,100,103,103,104,99,110,100,97,102,90,100,97,105,100,135,93,105,91,105,101,125,109,118,96,94,98,104,101,105,115,87,114,96,97,107,94,118,98,95,101,88,97,98,112,91,113,103,103,93,97,108,108,103,115,88,98,105,100,111,107,102,108,95,115,113,113,113,98,84,96,91,104,93,97,96,105,98,102,101,105,96,99,102,99,110,99,103,112,99,104,102,102,104,101,95,96,93,100,92,99,101,96,87,95,92,100,89,104,127,111,109,114,98,106,103,106,97,99,104,103,103,103,100,104,111,102,112,88,101,98,117,112,106,101,92,107,106,112,90,104,97,108,107,99,113,98,106,95,106,108,97,103,95,113,109,99,100,95,109,105,99,103,99,101,98,96,105,90,100,102,105,99,91,96,102,104,97,105,91,99,102,105,131,94,90,102,98,83,103,94,114,106,91,104,96,90,102,105,100,94,87,97,100,100,95,102,90,114,75,103,101,72,116,90,100,105,117,95,94,107,104,100,110,117,89,114,122,94,101,94,110,96,102,92,102,91,92,116,105,91,99,99,99,101,91,105,107,108,94,91,104,86,110,102,104,81,98,105,103,108,102,89,104,111,95,103,99,105,99,105,98,91,114,104,100,98,94,100,110,97,111,99,99,99,97,107,107,91,100,69,106,99,108,95,99,102,108,109,110,109,105,101,101,98,100,83,100,111,87,107,99,104,91,102,122,93,100,104,100,120,102,103,101,99,102,101,116,105,100,104,113,101,97,101,106,108,115,105,134,99,100,99,101,110,102,103,103,97,102,98,92,96,110,106,104,107,105,92,84,104,108,100,93,102,102,103,121,97,106,103,108,104,98,93,102,109,109,101,107,107,103,92,109,108,102,96,94,89,108,91,91,99,141,108,99,95,95,108,100,105,88,94,102,95,105,98,101,88,104,117,105,101,93,98,105,91,101,100,94,102,107,116,99,100,95,136,97,101,104,85,105,103,95,99,107,112,107,108,113,100,100,100,92,111,105,101,106,97,110,95,90,111,97,103,106,109,109,106,102,115,91,103,110,96,100,91,113,99,101,105,105,111,99,99,105,113,105,115,97,101,101,100,109,104,109,91,107,110,103,102,98,101,101,109,101,103,107,107,95,114,109,102,107,114,99,108,97,101,102,105,119,108,114,106,101,99,102,121,102,101,105,110,95,102,113,95,107,105,103,110,102,95,95,109,122,97,109,109,104,105,105,67,89,110,104,99,108,103,86,107,98,105,83,93,103,92,98,96,97,100,103,91,84,110,105,98,93,101,91,99,96,100,94,105,109,110,101,107,103,113,101,106,100,111,105,99,110,96,108,100,102,101,102,99,116,95,107,100,101,110,92,100,99,106,103,112,105,95,98,110,101,84,112,92,100,99,102,92,112,96,89,92,86,97,98,109,95,91,94,96,95,118,97,99,100,88,108,117,105,97,106,105,88,103,91,101,92,99,86,100,90,109,92,101,101,95,104,98,99,88,104,106,113,111,104,100,100,96,104,96,100,108,97,105,100,105,95,102,103,103,94,111,96,104,95,97,99,99,103,100,101,94,100,104,102,99,102,88,105,104,105,100,99,104,107,101,85,105,98,96,101,106,108,104,106,91,102,102,99,94,107,99,112,106,95,91,101,107,100,106,100,105,104,108,104,110,116,104,94,110,89,106,105,112,112,101,107,86,114,94,107,97,89,94,86,113,95,102,101,101,98,101,115,98,100,102,99,95,95,86,106,104,105,88,101,89,103,105,108,115,117,98,97,103,97,92,110,100,112,102,111,106,94,106,107,112,108,114,103,112,89,103,98,109,89,98,102,110,105,105,101,111,107,105,89,120,100,107,103,104,102,114,76,109,104,105,114,109,95,106,86,94,91,102,106,97,96,102,95,102,95,106,112,105,112,107,87,95,107,121,96,104,104,112,113,98,102,103,101,94,89,100,99,108,99,98,98,114,104,106,112,96,109,106,109,104,119,103,102,116,84,105,98,106,104,109,102,104,105,103,100,99,91,98,100,106,89,103,94,110,108,100,104,104,99,101,106,102,125,109,100,104,100,87,97,97,103,110,110,98,120,93,93,101,115,91,103,83,88,102,106,112,107,87,115,101,103,104,96,113,111,107,99,97,98,107,118,114,98,112,85,103,95,104,92,100,103,97,105,102,86,100,109,101,105,96,102,96,106,100,99,111,104,102,99,96,97,106,107,90,105,103,124,96,103,97,88,92,97,107,109,110,80,102,105,97,115,105,107,121,96,101,114,120,106,105,96,99,103,101,104,114,112,103,94,108,106,103,105,118,92,102,111,110,93,109,103,92,102,111,107,112,98,99,101,101,108,100,104,101,118,84,95,107,114,96,106,104,92,101,95,103,114,103,96,88,107,100,87,104,100,92,125,101,96,102,99,113,103,119,105,103,94,108,113,106,111,117,91,106,103,110,104,109,102,102,104,99,98,108,99,114,102,95,101,115,106,103,106,99,100,95,101,106,95,100,85,99,97,104,96,106,101,100,107,100,123,97,101,102,104,105,98,100,106,99,97,100,111,105,95,110,100,114,89,107,97,106,102,95,103,100,105,104,106,108,96,105,100,110,80,107,108,104,94,95,107,118,102,116,102,109,96,104,115,118,102,106,101,128,105,106,104,112,93,114,124,91,109,108,107,99,101,98,107,100,96,102,113,105,105,106,107,105,107,121,105,94,89,124,115,95,120,107,95,104,110,99,100,103,107,108,98,113,99,89,95,99,110,109,93,96,89,105,92,111,110,101,102,99,104,109,103,104,105,107,102,98,104,106,109,103,109,103,106,102,101,101,103,101,109,107,108,113,104,127,100,99,109,114,97,108,102,94,101,99,95,111,98,109,106,109,120,104,96,108,104,115,119,101,99,98,101,111,97,103,107,104,124,98,118,106,106,101,101,114,90,87,104,99,111,63,99,99,100,113,114,95,90,104,117,106,101,113,83,99,101,95,94,114,104,111,106,90,109,106,99,101,97,104,102,100,100,105,88,94,122,95,100,90,95,100,93,93,104,114,94,103,113,109,88,113,114,109,105,111,95,98,107,100,104,98,93,96,100,109,101,96,91,93,101,101,111,103,104,95,92,100,106,94,91,113,105,114,102,108,94,92,97,97,108,103,101,91,112,99,107,94,99,105,99,102,111,101,102,107,76,97,104,103,104,105,96,110,84,119,108,102,108,109,97,105,103,110,100,104,94,107,100,91,99,103,109,109,99,110,97,106,111,102,92,114,109,104,106,113,110,115,104,123,103,103,98,95,105,98,107,108,105,110,114,104,101,95,96,83,104,87,104,103,97,109,87,110,124,105,98,122,95,112,107,103,102,116,104,97,108,119,109,96,111,119,106,96,103,95,104,114,104,92,129,92,103,94,104,109,98,121,101,111,99,119,99,110,101,104,105,105,99,100,111,101,98,114,92,98,107,95,121,104,103,91,124,86,98,105,109,105,116,100,81,120,105,99,110,100,82,108,101,105,104,100,106,105,110,106,77,87,107,100,94,91,100,110,97,95,122,104,117,95,101,107,94,107,113,96,96,106,94,112,95,106,98,100,107,100,110,101,107,98,105,110,107,102,115,90,109,109,105,108,107,99,88,109,99,113,103,102,104,95,101,115,108,97,96,112,116,106,104,106,99,99,106,101,117,107,105,97,102,101,107,97,104,92,97,99,90,94,94,79,103,113,95,109,100,109,106,107,104,93,100,104,100,116,99,99,111,105,104,109,102,102,101,95,108,112,106,107,92,107,106,102,103,105,102,104,109,103,111,108,108,100,101,91,107,102,96,97,104,99,98,101,83,77,102,92,105,90,96,100,92,113,109,96,110,108,75,108,112,100,101,97,101,103,105,101,98,112,96,103,109,100,106,108,111,102,109,104,96,99,105,103,102,104,87,103,102,100,101,104,113,107,91,94,110,101,120,98,93,98,101,93,103,108,100,111,111,105,98,99,103,96,108,101,97,104,101,119,102,111,110,105,105,101,92,104,113,104,100,99,89,112,101,95,101,93,113,98,116,108,99,81,105,102,113,103,90,95,111,105,102,107,129,109,115,111,104,91,100,103,103,104,102,94,102,87,104,97,101,99,111,116,106,95,96,99,93,89,108,113,96,103,100,99,104,97,100,101,109,95,98,96,107,101,105,105,108,104,101,101,101,106,101,100,113,92,84,108,107,121,99,87,107,115,105,95,100,90,92,96,112,104,102,104,99,95,103,92,92,105,97,103,103,104,108,104,112,116,105,108,105,124,103,107,94,127,101,108,107,104,95,105,108,112,102,91,110,107,94,99,110,102,106,104,106,118,105,102,113,94,124,100,94,96,92,88,93,101,110,92,104,95,83,102,104,106,99,111,102,77,109,107,95,115,100,106,102,97,95,107,109,114,103,102,119,101,93,103,97,111,104,101,103,93,92,105,121,100,94,88,106,100,109,98,98,89,96,95,105,93,111,100,106,102,109,101,96,100,99,90,99,94,91,100,104,102,110,120,114,97,98,131,98,94,98,95,99,95,107,106,90,99,98,99,115,99,98,110,108,110,106,103,98,96,102,107,112,102,99,109,92,102,80,101,95,98,99,102,90,99,106,104,103,101,94,95,108,96,102,114,104,110,102,92,83,103,95,102,113,105,80,111,101,91,93,108,119,91,105,98,105,97,97,113,108,108,102,113,104,103,114,108,112,100,98,101,89,99,99,100,108,110,103,99,102,86,100,108,72,109,109,105,105,93,89,108,115,101,98,116,116,105,103,109,106,91,99,107,104,110,107,103,117,97,95,90,83,92,94,96,108,94,88,94,92,110,99,98,111,100,110,109,109,112,102, +660.99493,97,103,100,86,95,92,93,94,97,95,87,87,94,99,97,107,92,112,128,97,121,103,101,104,102,94,100,94,106,109,97,100,92,91,114,90,96,97,97,99,103,99,136,94,108,109,99,104,99,94,101,96,106,113,104,100,100,107,108,91,97,94,109,95,99,104,111,105,106,96,99,100,110,107,91,97,106,100,101,109,107,113,119,104,97,95,109,102,101,107,100,97,96,91,98,105,105,113,112,112,106,99,101,101,102,102,109,107,95,112,97,91,104,102,93,102,99,99,100,99,105,95,95,102,104,99,108,90,96,92,108,99,100,101,98,105,101,115,96,91,108,90,100,95,96,81,91,104,100,94,105,107,103,95,101,103,104,88,94,106,109,110,110,101,97,99,121,100,94,96,92,103,109,97,103,112,94,96,107,110,96,105,105,104,95,103,109,85,108,108,92,114,95,104,104,102,85,70,110,138,105,110,93,112,99,78,88,98,106,101,96,105,99,104,99,98,86,102,106,91,96,105,107,87,98,96,103,96,101,101,106,91,92,105,121,106,97,114,111,87,108,108,107,115,91,106,113,109,99,97,101,104,96,89,96,90,90,99,76,107,96,78,98,104,109,97,89,115,105,91,101,91,97,97,107,109,98,105,91,93,113,107,101,101,105,92,95,100,103,94,108,99,100,101,103,89,104,97,114,69,100,101,99,112,90,92,126,103,109,116,111,99,98,101,103,97,100,104,95,103,101,101,94,97,102,88,98,84,108,97,95,90,101,101,109,98,99,106,94,98,80,107,102,102,103,112,101,97,110,106,99,98,96,80,104,106,99,96,95,107,109,98,83,91,77,96,106,101,94,99,103,86,88,107,99,103,111,104,108,100,101,103,85,109,99,100,97,108,100,92,101,96,86,102,113,98,94,98,104,104,110,101,62,102,93,104,101,91,106,103,91,90,105,102,101,75,96,91,105,97,102,95,99,113,100,109,99,92,99,98,97,95,104,99,100,91,113,93,115,100,107,98,105,100,108,93,92,111,92,98,88,97,102,106,93,86,96,98,105,108,103,100,103,97,100,96,108,101,97,93,92,104,98,118,92,88,94,109,92,114,104,102,102,111,94,89,96,112,105,99,98,100,89,95,84,106,100,95,100,101,90,97,94,100,98,112,93,97,98,101,103,100,91,97,99,96,99,94,101,91,102,97,110,103,106,105,102,104,101,92,97,108,98,110,112,105,92,100,104,90,89,114,87,101,97,102,105,86,109,106,104,102,107,108,93,72,106,88,94,93,89,94,91,90,101,100,105,90,98,94,97,87,94,110,104,84,101,98,95,101,99,102,72,101,92,91,109,111,76,105,97,103,97,106,107,91,93,104,94,100,100,115,123,102,94,96,98,79,80,103,90,102,115,96,112,93,97,98,103,97,103,93,105,105,112,95,87,106,106,106,91,103,91,99,115,98,98,94,89,97,88,101,101,96,97,88,92,99,101,101,102,95,101,117,97,101,109,104,98,98,101,102,104,97,94,102,100,102,104,103,98,91,97,96,93,101,96,104,107,90,100,104,113,92,104,96,100,105,90,97,105,84,97,99,93,93,108,106,101,101,94,95,101,114,104,69,101,95,101,59,97,92,96,94,95,93,87,103,94,90,87,93,114,100,100,93,93,97,100,106,93,103,99,102,114,100,96,92,103,98,112,101,91,98,110,85,105,118,99,108,121,114,95,91,109,96,79,104,95,94,93,107,109,92,92,90,93,103,121,94,101,100,96,100,96,98,101,97,81,96,106,103,103,122,84,107,99,109,105,77,95,95,106,76,105,97,93,109,102,97,94,100,90,99,91,111,98,103,104,102,103,84,108,93,105,103,105,114,102,100,110,105,92,106,109,98,109,99,70,104,95,95,110,99,101,98,107,101,112,99,103,112,107,128,113,106,112,98,97,98,92,91,97,100,104,104,115,106,109,107,95,98,99,103,104,98,82,101,107,103,101,112,101,108,94,90,102,94,94,99,102,102,105,96,84,115,101,111,113,104,91,110,99,105,99,92,107,100,104,106,101,98,101,94,85,98,87,110,98,103,94,103,99,103,99,104,102,97,109,115,120,98,97,93,96,100,83,117,106,95,104,92,123,102,103,95,95,100,99,112,93,115,88,108,99,99,114,100,106,96,102,96,112,111,101,107,99,95,101,91,103,103,106,89,106,100,91,90,93,101,95,104,105,89,98,99,105,111,100,93,101,110,84,102,104,104,93,128,91,101,98,109,106,94,94,95,96,107,102,93,101,89,93,106,98,91,113,102,98,87,101,106,95,114,108,85,104,96,100,94,113,102,100,93,98,101,95,97,94,90,99,113,106,120,107,108,96,108,98,102,94,102,100,94,95,91,110,104,107,97,114,104,95,102,84,102,101,108,98,109,106,103,103,105,94,98,95,109,97,109,106,103,100,88,109,99,91,66,97,94,110,100,100,102,106,113,96,88,106,111,97,97,91,86,96,95,114,97,92,103,94,80,109,107,85,113,93,95,103,91,83,90,101,79,106,100,96,92,100,98,96,109,94,107,96,96,117,97,105,95,101,108,98,100,102,98,96,140,102,98,88,106,93,91,86,89,99,100,105,101,103,89,119,105,97,104,104,100,94,84,101,88,97,98,104,99,100,101,95,106,113,112,109,105,92,95,97,82,107,104,110,98,85,105,104,104,105,113,100,104,98,103,105,121,100,87,107,87,102,106,92,103,95,104,108,114,103,104,111,116,105,105,100,99,99,101,103,107,99,100,105,110,98,109,103,100,94,107,108,113,101,107,102,103,91,95,110,98,88,100,100,102,113,108,102,96,108,101,98,98,97,103,107,100,103,108,109,110,102,115,102,97,87,108,91,96,116,106,105,99,102,108,102,96,80,105,93,101,106,94,98,105,97,102,88,101,104,108,108,99,105,88,108,102,96,110,107,98,98,105,130,95,102,108,99,90,102,101,98,101,98,110,102,91,104,109,96,92,98,109,96,117,98,110,108,99,108,105,107,107,88,94,108,112,117,94,104,106,100,101,104,94,101,72,103,102,105,96,108,105,108,109,90,101,104,94,96,99,96,93,114,120,101,72,105,103,117,119,99,103,103,93,94,108,113,99,89,116,105,94,113,94,88,103,102,102,95,94,102,94,107,70,101,103,96,102,100,93,107,110,102,99,98,96,95,107,96,79,113,106,88,96,99,104,105,107,83,101,99,96,109,102,110,97,96,97,123,102,109,97,103,103,109,112,103,103,116,106,102,100,105,95,129,90,115,106,106,109,139,101,91,94,106,105,107,106,100,92,105,93,93,112,113,117,105,100,101,91,104,104,97,101,87,101,108,110,103,96,106,100,99,89,99,97,99,94,106,96,106,109,105,107,109,105,114,114,93,107,106,101,113,101,101,108,89,96,111,117,120,74,104,104,100,108,96,111,86,93,98,104,102,101,94,91,107,98,110,101,109,97,105,106,97,93,91,109,103,91,114,101,98,96,99,98,103,105,103,100,117,93,111,107,98,113,104,109,127,110,96,110,91,101,99,109,108,118,89,99,95,112,113,100,101,101,99,98,98,106,101,88,95,102,103,97,101,91,102,106,99,108,102,104,107,97,97,103,108,107,119,104,105,98,98,99,102,111,94,95,107,100,100,104,88,104,104,106,102,88,104,87,89,105,97,96,91,100,103,104,101,104,101,97,102,94,110,104,97,97,105,104,107,95,87,101,111,93,105,105,95,105,98,91,107,109,87,105,107,115,108,106,108,101,101,90,116,105,122,91,107,92,86,104,93,99,94,104,92,98,92,106,116,87,99,101,114,101,100,102,99,110,94,114,118,107,74,100,94,101,101,100,104,93,102,114,114,94,83,95,105,95,101,109,103,110,91,98,119,97,79,92,112,110,99,101,101,101,109,119,100,105,106,98,96,98,94,101,101,97,97,106,106,111,109,106,94,106,94,112,100,95,105,105,105,115,98,96,98,102,94,116,101,101,87,112,101,98,96,133,110,110,105,103,100,107,99,91,102,107,90,95,92,103,99,104,109,106,105,96,101,109,99,86,102,105,102,94,100,106,101,99,95,105,101,109,115,107,94,107,95,104,103,112,103,106,102,103,105,100,106,94,96,91,90,102,96,104,106,103,97,91,101,100,99,91,105,113,108,101,102,91,90,111,102,96,110,107,90,103,102,91,102,109,95,106,100,108,89,77,98,99,108,96,71,103,93,103,108,98,104,100,98,103,103,106,90,104,103,101,103,104,94,106,102,108,98,110,94,105,108,110,100,103,106,99,97,108,101,105,121,119,123,105,108,98,108,99,106,65,100,102,99,90,89,98,105,106,105,104,96,112,99,116,104,103,109,104,110,109,97,92,109,100,106,111,107,98,101,108,103,105,92,92,100,112,105,109,102,98,98,99,104,105,96,106,93,97,93,97,96,90,124,117,97,108,104,86,91,103,92,103,109,99,113,103,104,114,90,103,106,95,103,103,99,115,108,104,113,99,103,99,95,96,104,108,98,113,102,109,112,104,94,107,98,107,103,102,97,95,102,105,90,90,106,99,112,113,101,108,99,94,97,92,98,104,97,106,98,98,94,107,95,107,87,103,98,77,98,98,112,100,106,94,96,96,106,101,99,94,107,93,103,97,93,90,107,92,115,97,97,92,111,105,104,95,99,95,105,103,106,91,95,94,110,106,88,109,100,91,103,103,96,109,103,95,96,97,103,104,117,99,102,87,99,104,108,95,106,101,109,112,99,98,102,101,106,112,88,91,102,99,97,105,94,85,95,91,102,110,91,101,103,100,92,101,109,99,121,117,89,100,87,106,91,98,102,94,99,100,110,91,91,96,108,103,92,102,112,98,93,87,103,90,110,98,108,105,111,94,104,104, +661.13611,87,94,97,97,91,122,106,86,111,102,106,113,106,100,105,121,94,112,111,99,108,109,101,109,86,92,112,104,94,99,99,104,93,87,115,99,95,106,114,100,97,83,96,94,99,98,93,86,87,119,104,102,102,100,109,103,98,103,102,87,98,104,95,92,105,104,108,107,114,90,110,105,90,100,87,109,96,110,107,94,94,100,99,108,104,93,105,94,96,104,98,98,106,103,96,111,109,83,109,115,91,107,102,115,112,113,91,81,105,107,101,101,107,112,105,105,100,95,98,90,98,101,112,126,101,95,109,98,100,103,112,106,91,100,102,103,99,106,95,103,100,118,99,99,112,102,108,107,95,97,103,109,107,102,97,104,108,98,101,113,106,108,93,105,105,107,111,92,102,104,102,93,103,115,113,112,100,101,107,109,98,73,90,98,103,96,108,94,83,107,96,100,98,99,105,100,110,108,108,100,89,104,106,104,106,106,90,88,103,102,115,115,108,92,100,89,97,109,103,105,99,99,93,95,110,97,103,99,104,75,104,110,103,101,102,102,102,102,106,106,89,97,109,100,103,105,117,102,93,88,108,71,102,103,94,105,97,108,77,106,101,84,60,81,94,109,106,95,99,99,103,100,104,101,98,102,93,106,103,91,106,108,107,108,98,101,103,102,107,99,89,106,109,98,106,96,101,95,102,98,102,98,103,108,98,109,113,101,87,106,97,109,102,111,98,92,102,107,100,107,99,104,101,107,113,109,123,90,104,107,108,100,108,106,108,97,106,106,98,107,101,111,104,106,94,106,97,104,103,98,103,101,108,103,93,91,105,109,95,96,106,102,104,95,108,104,101,104,106,107,103,97,105,100,108,99,110,94,105,104,108,115,105,98,102,106,100,91,103,113,106,89,107,104,107,98,100,88,110,105,96,94,106,106,107,108,87,102,126,107,88,102,97,107,109,97,93,101,104,95,109,102,104,104,96,95,109,95,100,103,108,91,89,103,94,106,104,109,102,100,110,100,104,116,90,101,98,92,93,109,109,101,96,102,103,98,93,97,99,100,110,97,103,102,99,100,119,118,104,105,103,106,101,110,95,105,102,120,98,98,102,117,110,99,112,112,106,105,107,111,108,99,105,99,97,99,104,109,91,106,102,95,104,111,98,98,100,117,93,116,109,105,81,91,98,105,103,119,100,100,100,101,100,107,101,101,122,97,109,103,89,112,99,98,103,96,102,101,103,95,96,105,108,96,100,100,106,105,110,109,95,96,102,105,92,110,104,96,100,103,107,118,101,110,98,99,117,115,103,90,104,98,98,110,100,98,102,100,108,104,99,105,105,104,109,101,105,102,109,91,107,102,96,110,105,99,87,114,109,88,99,121,109,105,87,109,94,103,83,101,94,110,97,88,109,113,104,106,118,104,105,95,96,104,100,102,92,107,85,110,99,105,105,112,96,118,112,99,102,106,113,112,106,100,99,106,94,114,101,117,101,110,107,95,100,111,92,89,106,111,101,93,116,104,92,100,103,96,108,114,114,114,102,95,73,112,87,103,105,96,109,109,114,109,97,109,105,113,95,107,109,123,109,102,95,96,105,111,98,101,96,97,94,101,102,107,104,105,94,92,94,107,111,104,104,103,100,107,104,100,107,92,108,97,96,102,86,117,103,107,102,98,95,93,104,105,120,88,110,96,106,95,94,103,105,107,89,105,114,105,106,94,106,91,101,109,111,91,108,101,99,93,97,92,94,93,98,109,107,106,118,111,106,99,110,105,108,97,109,100,99,92,107,113,100,103,109,107,103,107,102,106,106,101,98,98,98,102,111,106,104,99,110,102,104,117,100,101,114,101,104,97,109,110,96,105,104,98,89,90,105,99,90,113,98,99,92,100,105,100,112,96,94,115,108,105,106,106,102,111,107,107,106,98,97,102,98,105,105,92,99,92,94,109,87,111,82,100,95,88,93,93,96,96,105,102,107,102,110,141,106,124,96,111,109,92,90,108,106,113,108,96,105,104,117,109,104,105,107,105,83,102,103,101,119,87,99,106,95,110,107,113,111,109,96,120,99,110,94,97,109,98,106,113,101,96,96,102,106,96,113,108,114,102,106,101,103,96,103,100,115,104,106,114,104,101,103,98,97,104,102,116,101,103,94,95,110,112,104,97,106,98,116,108,109,106,108,108,102,103,105,114,102,91,114,102,101,102,105,96,107,97,95,115,113,103,96,111,110,112,98,104,108,114,105,100,94,95,107,82,103,101,108,121,99,92,95,109,91,105,102,102,96,104,108,117,95,98,109,98,101,101,107,98,88,102,83,108,102,111,110,106,120,91,117,102,98,101,108,100,117,96,105,113,103,98,105,109,91,101,117,115,99,103,132,96,99,109,100,107,116,110,100,101,98,106,103,102,110,89,94,110,117,108,108,92,95,109,94,97,103,105,91,112,108,92,116,102,100,93,91,101,92,93,91,115,103,98,112,104,99,109,99,102,85,99,102,112,134,99,94,101,105,106,107,108,107,94,98,107,103,100,110,112,100,103,107,116,91,106,111,104,98,103,112,101,105,112,109,102,100,117,110,103,96,101,113,126,102,107,92,104,102,103,102,110,100,85,89,97,90,104,101,101,104,109,99,108,105,106,98,101,112,90,110,92,106,91,113,108,104,94,114,108,106,104,104,96,107,108,102,104,102,102,103,100,109,106,109,117,106,111,106,110,103,106,92,107,100,118,99,102,111,105,112,103,84,109,97,114,102,100,104,104,93,108,100,115,107,113,107,109,105,101,95,115,100,108,115,99,104,113,94,108,107,106,111,112,116,103,95,104,95,103,106,106,94,104,103,106,107,99,116,102,107,105,96,103,100,103,114,95,117,103,104,105,106,106,106,103,107,105,96,107,102,100,112,106,99,105,106,103,116,106,116,110,98,91,105,111,108,120,105,96,98,109,109,105,101,111,96,130,92,109,107,112,104,105,99,100,93,117,117,99,109,108,99,107,109,104,114,110,105,106,119,113,103,93,113,100,107,95,111,105,112,121,101,127,105,112,109,89,106,90,109,105,106,97,116,100,115,97,100,105,99,96,105,109,93,114,99,96,108,92,112,102,122,111,100,102,71,83,87,109,103,100,101,106,101,96,102,112,111,107,104,103,109,99,102,115,90,112,116,105,92,106,110,112,109,109,106,115,102,121,128,102,100,66,110,103,87,104,87,107,110,97,103,102,99,78,109,111,109,102,102,108,107,116,116,100,113,100,106,128,101,102,97,100,108,110,108,106,119,104,104,105,96,103,108,104,101,96,111,83,117,110,128,105,111,95,100,103,98,116,112,102,98,86,106,101,108,103,89,105,91,97,106,100,106,114,98,103,94,108,109,102,93,88,100,101,116,103,109,114,112,100,112,109,100,99,102,102,112,117,91,100,105,112,89,106,104,92,85,110,95,99,108,110,96,106,98,118,99,91,90,98,108,93,109,106,109,125,85,93,105,110,103,101,106,101,103,97,107,104,108,112,103,112,99,107,102,96,104,110,105,105,110,108,107,104,98,95,100,111,100,103,109,105,113,117,97,93,110,106,109,103,109,97,106,94,94,116,112,108,112,92,107,103,111,106,95,99,117,97,98,97,114,95,118,103,107,102,102,108,99,97,105,102,117,119,104,103,94,111,101,103,104,109,107,79,104,116,101,100,98,101,101,106,97,101,110,100,104,101,105,108,103,106,83,101,105,107,106,76,112,106,112,94,106,105,100,102,108,116,114,83,97,107,124,104,106,91,110,112,96,98,106,96,110,91,102,109,91,105,98,107,108,106,99,108,106,96,109,85,76,112,107,102,107,117,95,106,106,104,99,101,106,93,108,94,103,106,103,111,113,102,101,108,108,110,106,102,99,103,96,98,108,104,97,110,122,102,100,112,75,102,110,98,102,95,103,106,108,103,98,120,110,106,104,96,94,117,99,103,82,101,104,80,100,104,104,101,106,101,82,91,122,100,110,101,102,104,97,103,102,101,106,101,104,108,100,108,117,95,106,108,106,103,95,106,100,105,103,99,116,122,102,94,119,103,99,95,110,91,104,108,105,103,95,107,109,114,95,95,97,105,110,110,97,104,102,105,109,102,96,104,102,95,99,123,103,98,106,104,107,113,107,104,91,102,101,90,91,83,108,114,104,110,101,97,108,96,102,103,107,103,96,109,98,102,110,99,109,115,117,107,104,113,105,105,112,91,109,115,93,105,109,105,97,93,96,103,106,96,103,111,97,101,98,101,104,93,114,100,99,117,87,101,99,121,101,99,114,98,114,91,97,109,100,105,113,103,101,118,102,96,103,88,96,103,90,98,121,103,115,106,114,104,93,94,100,102,116,109,106,99,106,107,101,101,109,113,109,103,103,99,103,95,107,109,106,98,75,108,97,108,95,97,87,98,120,94,107,104,97,105,93,95,94,104,119,98,109,104,110,94,113,105,91,102,99,105,111,103,114,113,106,106,117,101,104,107,111,106,111,115,110,102,91,101,107,108,84,113,100,113,96,114,117,101,107,95,99,109,105,111,90,101,104,102,98,114,120,105,110,100,114,105,109,102,104,108,111,111,106,91,93,108,97,105,113,102,103,113,109,107,120,91,100,95,100,120,113,109,113,95,106,97,111,100,105,101,116,94,104,110,120,111,102,111,95,112,101,107,115,103,97,102,98,106,104,104,110,90,105,99,107,103,102,103,92,113,95,109,104,98,113,100,111,98,101,108,105,103,90,107,102,98,98,117,100,108,113,114,104,138,112,117,109,104,117,102,107,102,113,103,105,116,94,106,91,97,106,102,107,105,99,103,102,105,119,107,106,108,105,116,96,80,114,110,103,123,103,90,102,78,112,110,107,103,109,106,103,94,110,114,90,107,98,93, +661.27734,78,91,102,78,112,98,96,102,99,103,112,104,98,100,100,97,113,101,94,116,92,101,120,110,98,114,99,98,102,100,111,99,101,96,79,101,118,92,92,103,108,96,107,114,114,96,113,101,96,95,104,109,98,105,98,87,110,92,105,89,113,86,103,92,101,113,88,100,106,101,104,118,97,105,109,112,86,123,123,109,116,104,108,127,88,100,95,102,105,99,82,108,86,107,102,100,103,109,94,110,95,105,109,100,110,93,96,105,109,102,111,109,107,102,84,105,100,108,99,92,97,104,100,106,102,97,110,102,91,102,103,104,86,111,106,96,107,129,94,93,95,102,98,92,105,104,100,114,106,91,103,92,97,108,113,105,97,101,101,103,101,110,101,103,112,100,100,97,110,103,101,96,100,107,104,91,99,90,89,105,95,100,101,113,103,79,89,89,114,94,121,93,96,98,86,98,89,101,106,94,107,114,93,93,108,102,97,98,109,103,98,104,103,105,107,97,105,103,99,93,94,112,112,95,102,98,113,106,109,112,102,104,106,103,104,110,108,111,112,95,94,91,105,107,116,99,99,93,100,104,104,98,98,111,113,103,105,100,98,103,98,105,110,94,92,103,124,101,111,97,91,104,113,107,104,105,111,88,96,103,112,107,96,93,108,94,92,89,97,98,106,97,111,104,108,105,98,112,106,112,97,101,109,111,94,106,105,100,104,111,100,97,102,107,108,93,97,101,116,93,128,87,94,111,109,102,105,105,123,108,99,102,112,92,112,101,92,117,106,103,98,96,106,98,100,109,111,100,110,113,100,99,113,106,110,117,104,102,105,105,101,114,95,100,103,105,97,113,102,113,109,107,98,103,100,112,108,101,101,91,92,101,104,96,111,101,97,94,106,81,96,101,93,106,92,102,110,106,107,110,113,89,101,106,104,97,84,103,98,101,103,102,108,105,108,104,110,80,104,95,95,99,104,101,105,81,104,110,96,87,84,109,94,99,101,92,107,103,107,105,108,94,104,101,93,99,106,88,102,102,93,99,98,98,117,101,106,93,116,93,99,106,100,104,114,107,110,112,93,100,94,93,93,110,94,98,109,108,87,105,97,105,102,105,102,117,97,109,104,109,102,110,71,101,121,105,101,108,95,103,102,112,109,106,94,105,97,76,107,113,108,102,99,104,104,98,109,107,96,100,110,104,106,104,93,108,98,98,88,102,100,91,107,102,94,103,99,94,98,103,93,109,99,96,104,106,100,95,108,109,106,110,95,98,103,117,110,105,98,103,99,106,96,86,105,102,120,105,97,90,113,100,106,102,101,105,100,102,96,104,104,93,97,96,91,104,105,104,102,117,111,100,100,110,100,107,91,95,110,105,102,93,101,97,99,90,89,121,110,93,98,110,109,107,114,96,109,82,97,109,103,112,104,112,107,99,96,78,95,95,113,109,97,107,96,110,107,99,100,105,114,109,88,95,100,101,85,107,104,103,95,111,104,121,91,107,101,94,90,109,117,95,113,108,98,114,114,99,115,109,106,100,104,106,104,113,102,98,113,102,106,94,117,94,86,106,102,111,103,112,99,102,104,112,104,100,114,109,109,95,98,96,116,119,93,108,113,101,109,103,97,98,113,90,108,103,104,108,106,106,96,88,109,110,95,99,117,104,102,105,105,103,100,97,94,122,101,98,107,82,107,92,104,115,101,100,100,103,88,110,112,98,99,95,111,110,105,113,103,107,107,119,119,99,103,107,96,109,96,106,109,102,101,102,105,107,101,92,103,111,91,107,104,109,99,100,96,100,103,100,112,96,109,102,113,107,105,97,127,99,98,102,118,104,103,104,102,104,103,110,108,113,106,93,108,105,113,102,113,101,105,107,106,105,116,99,109,96,113,95,103,100,111,100,108,106,99,104,95,125,104,103,75,101,108,102,95,117,96,94,98,79,109,102,86,102,105,94,103,99,108,97,88,100,102,90,95,108,116,104,116,107,116,99,105,78,110,94,94,108,102,110,80,109,98,108,100,101,80,106,100,82,109,96,101,102,100,103,103,106,88,111,100,107,100,109,96,106,122,97,91,92,111,109,109,99,107,109,100,101,91,110,104,100,101,102,104,105,81,72,110,107,101,102,105,100,101,93,104,99,104,92,98,110,95,97,98,97,109,102,98,97,99,107,103,91,112,108,112,108,120,103,102,99,90,99,96,102,100,108,99,99,116,105,94,107,111,101,97,116,100,115,107,91,123,99,77,102,123,105,95,112,111,106,99,95,98,96,85,112,104,96,101,98,102,103,96,98,103,103,100,95,97,106,109,107,95,98,105,111,113,102,109,95,101,92,96,104,106,110,92,112,101,106,89,71,102,110,107,109,111,125,106,99,120,95,103,110,111,112,98,111,111,109,99,106,107,99,98,100,86,112,108,100,98,102,105,119,96,100,93,105,102,109,96,71,99,118,93,99,107,86,102,102,103,109,89,112,110,104,100,100,99,96,95,95,96,108,98,100,90,97,108,109,102,117,107,107,108,108,110,110,112,94,88,91,101,98,95,107,94,92,90,100,105,98,101,97,117,99,108,110,102,98,107,114,120,97,105,101,108,107,103,96,77,110,105,103,112,96,104,100,106,93,108,110,102,113,113,116,107,94,100,97,109,108,94,99,96,103,101,96,104,108,94,91,100,103,101,105,106,105,95,89,110,103,97,127,95,106,94,104,101,116,83,106,116,99,102,103,106,96,99,106,103,102,100,109,105,103,112,103,90,104,105,107,101,101,101,95,109,108,103,108,103,98,91,109,114,113,103,101,94,121,99,112,106,102,89,118,98,110,108,92,99,102,106,100,93,106,103,101,101,101,101,90,113,100,102,109,115,97,112,106,112,112,103,99,100,92,99,102,109,98,104,107,104,111,100,106,98,105,108,103,98,104,105,94,106,100,104,102,106,107,101,88,112,91,101,98,115,107,101,107,97,94,94,104,105,92,101,92,109,96,111,120,102,98,109,92,83,108,99,110,103,95,99,104,104,94,85,108,83,87,109,102,99,98,98,112,102,114,116,99,100,94,108,102,111,92,95,119,110,100,98,93,109,85,102,100,103,106,96,107,104,111,100,113,99,108,104,107,99,110,101,96,91,103,101,112,96,101,93,81,99,97,100,97,94,94,107,100,95,107,99,99,109,100,100,103,103,104,106,99,103,101,110,105,105,109,94,95,107,90,92,97,99,101,103,94,97,106,83,112,101,88,103,91,108,100,108,111,93,109,112,99,92,110,106,93,97,93,99,102,105,103,103,98,100,82,110,98,92,101,96,98,102,102,105,95,104,102,104,97,69,101,104,103,98,105,100,107,98,103,106,107,101,105,103,109,112,103,74,99,101,109,95,98,98,105,103,92,109,108,103,111,99,100,95,100,101,107,111,92,103,97,104,85,96,92,117,94,113,87,98,74,100,95,116,99,110,80,105,99,96,117,110,104,101,100,101,98,100,96,100,89,104,91,107,96,117,91,97,107,123,96,108,105,118,95,102,104,106,108,83,101,95,106,109,111,103,99,99,113,92,115,91,104,96,114,104,93,105,101,111,114,114,100,126,86,100,102,96,103,86,104,106,99,95,98,94,98,112,88,107,97,103,97,101,102,101,87,102,116,107,102,101,95,92,99,105,103,96,110,94,102,98,98,98,95,114,112,100,109,96,113,108,95,104,106,105,95,99,102,104,105,107,104,96,106,100,100,95,108,106,107,115,107,108,100,106,103,101,97,103,92,94,110,109,94,99,93,96,104,104,100,103,99,101,101,104,79,111,111,106,107,101,97,106,99,104,99,84,116,107,100,95,91,96,99,87,113,100,98,107,106,101,92,115,106,87,92,105,99,104,106,114,95,97,99,84,96,101,103,95,101,109,105,87,108,99,95,104,100,104,92,104,101,97,108,110,117,101,101,102,104,111,103,107,106,107,104,100,107,108,97,102,98,105,104,112,104,103,101,101,106,101,110,98,107,107,100,99,90,116,79,101,95,117,99,116,105,107,112,95,99,103,105,110,112,105,93,93,110,69,102,107,109,100,97,93,111,115,96,95,106,102,102,108,103,95,92,111,111,106,108,95,121,76,110,96,99,96,95,98,105,105,94,98,98,113,89,110,110,95,102,95,112,107,99,103,101,112,91,108,112,107,113,95,104,102,97,94,106,106,104,94,108,106,96,98,112,88,103,95,106,100,99,102,105,111,102,105,105,107,99,106,109,113,111,110,100,112,105,100,98,102,108,96,103,97,103,95,110,95,108,77,101,99,106,106,100,95,101,97,94,108,105,98,110,104,90,103,102,103,104,101,102,95,98,95,95,95,113,88,101,112,105,113,102,104,108,98,108,101,99,106,105,91,113,93,91,109,97,116,101,111,121,100,105,102,97,105,106,96,120,97,95,91,101,94,93,106,102,99,93,84,99,109,108,92,102,100,92,110,109,103,100,109,97,92,77,101,111,99,104,94,100,98,95,97,85,93,104,99,106,106,103,96,100,104,102,103,90,106,121,95,123,99,102,97,108,113,104,96,113,103,103,102,116,112,83,122,107,100,121,108,98,96,113,100,75,101,95,111,98,106,110,99,108,108,104,92,100,101,105,102,113,83,94,106,91,94,102,107,103,103,110,101,91,103,97,96,102,100,101,105,99,108,100,98,103,114,111,99,93,96,109,98,106,107,109,94,94,102,90,102,88,100,100,98,101,101,92,113,92,107,114,110,99,109,91,107,122,102,104,114,97,101,102,96,105,87,107,110,103,109,96,90,108,92,96,113,106,100,100,109,99,103,85,109,102,101,108,102,108,90,105,91,114,96,99,99,102,94,120,88,98,95,99,85,101,114,112,105,110,90,97,104,96,117,116,91,94,107,103,94,99,95,94, +661.41858,103,111,97,106,100,105,107,97,110,108,106,98,85,95,104,105,102,102,108,103,102,99,113,103,107,99,108,105,103,111,103,98,110,114,99,68,102,90,94,98,93,100,106,114,104,102,102,122,95,95,96,108,105,96,104,96,94,108,113,96,111,96,96,97,88,110,104,108,79,94,101,113,102,106,115,100,93,115,104,95,99,107,92,102,96,108,116,103,101,99,97,110,98,105,106,115,104,95,101,109,105,94,111,104,100,113,99,112,99,101,101,111,98,106,99,96,112,95,106,94,92,105,102,109,100,91,103,91,117,99,90,101,96,113,111,98,87,107,103,118,92,101,91,95,97,83,113,98,94,93,108,99,113,93,82,90,94,109,101,96,90,103,107,106,101,98,100,93,102,87,106,99,99,103,95,103,101,98,91,102,107,105,88,105,97,112,93,101,106,95,107,98,103,100,119,119,106,93,98,107,99,92,105,101,100,107,101,88,113,102,104,100,106,97,85,108,105,108,106,102,109,108,93,98,87,104,99,110,110,107,107,95,105,105,91,114,108,108,118,97,107,98,111,93,97,119,104,102,109,98,97,94,104,77,99,117,105,108,107,93,70,94,110,105,87,113,103,90,101,102,97,97,107,110,86,96,107,105,99,107,100,111,102,109,97,95,98,91,92,110,102,87,106,115,101,108,100,105,103,93,103,99,88,100,97,100,103,110,107,108,94,99,99,103,109,104,114,107,105,104,92,102,94,108,104,103,115,85,112,102,110,106,113,91,108,95,104,98,97,115,81,100,91,107,116,110,101,111,94,107,90,103,100,104,92,99,109,107,86,95,100,95,99,101,114,82,83,112,98,105,104,101,103,105,107,95,99,94,102,109,88,99,108,117,116,88,95,100,104,94,115,110,103,112,87,87,102,95,108,109,98,121,101,103,99,89,97,98,108,89,90,91,107,116,100,98,98,109,109,100,96,103,98,99,90,95,95,101,101,105,107,107,90,73,101,81,99,104,93,104,104,98,106,104,106,97,97,97,115,104,101,94,111,116,110,109,98,91,91,89,105,94,98,106,119,106,99,99,93,95,112,99,98,118,103,102,94,111,99,102,109,110,105,90,105,101,106,102,81,108,117,110,101,95,100,80,97,103,102,89,113,94,105,80,106,105,91,91,96,98,118,98,97,99,107,100,99,113,104,106,101,104,106,109,100,107,101,108,101,95,92,95,113,103,96,105,101,109,113,105,101,101,99,104,103,108,118,105,105,112,103,105,98,102,105,91,113,81,107,104,97,97,97,105,105,98,106,103,102,104,97,92,99,94,105,101,110,97,99,94,104,96,113,99,93,102,91,104,100,99,99,109,99,112,107,102,103,98,102,104,116,96,95,95,100,101,113,92,106,108,103,99,109,109,100,113,96,102,98,111,94,107,102,103,113,88,102,114,103,103,101,92,115,101,95,101,100,90,100,99,106,108,97,110,90,101,99,98,107,106,82,95,103,102,98,104,103,95,103,92,110,100,104,123,88,107,110,94,102,95,100,95,95,108,104,104,100,103,118,99,102,110,117,94,89,109,100,108,90,102,95,113,100,100,97,98,106,107,122,99,87,100,105,101,104,100,97,117,88,102,113,109,97,108,102,93,109,103,102,112,97,104,102,103,97,93,95,108,108,100,101,114,108,96,94,85,92,100,100,105,115,85,107,100,96,95,96,104,102,101,107,89,115,114,107,106,111,94,110,91,104,111,104,105,98,98,97,102,101,108,109,113,107,95,111,109,102,103,106,97,101,100,114,106,87,111,101,119,99,102,91,120,94,96,110,102,99,105,111,106,103,91,109,100,105,117,108,113,103,94,110,106,113,88,106,99,128,105,108,98,102,117,86,95,101,112,105,116,110,103,108,99,106,108,116,102,107,98,104,103,95,111,108,108,100,94,95,103,99,89,90,96,100,102,105,103,99,100,100,112,113,97,108,97,98,86,88,104,105,109,118,92,100,107,104,117,108,97,101,105,92,99,100,94,89,96,97,107,89,113,114,102,102,92,105,94,99,106,105,97,86,105,91,95,113,98,94,95,93,106,100,98,108,109,95,105,106,102,122,107,105,103,107,94,87,83,94,99,109,106,100,100,106,113,98,102,101,99,91,115,96,99,106,121,82,109,117,98,99,106,102,90,109,105,107,97,101,105,95,97,105,111,88,70,101,103,90,94,127,97,93,91,97,106,103,114,106,94,87,100,85,98,95,69,99,101,79,98,105,89,95,106,104,105,106,96,109,107,105,96,101,104,95,97,116,106,99,88,107,99,103,100,105,96,98,109,93,96,110,97,97,107,118,78,96,105,105,105,101,104,113,105,111,92,107,100,105,117,96,104,108,105,81,105,107,90,75,108,97,114,100,107,105,116,111,120,106,98,104,111,94,100,98,101,108,92,69,93,103,102,105,104,108,95,91,105,88,86,105,108,105,108,104,113,105,95,96,97,107,102,100,102,108,100,87,116,103,101,100,95,102,94,101,110,107,113,103,106,90,98,103,90,98,115,91,89,98,87,102,104,112,104,95,74,101,97,103,111,120,95,94,102,115,100,106,95,105,103,111,97,99,102,98,110,100,109,96,110,101,87,99,99,117,97,96,107,106,91,110,116,114,96,101,101,92,105,103,82,103,94,83,101,96,106,103,105,101,95,103,102,99,101,95,106,121,111,104,103,105,102,103,91,129,105,102,100,98,102,98,105,124,108,108,101,107,110,124,105,114,102,95,110,108,107,104,114,100,109,95,111,95,97,113,107,106,101,94,99,113,104,98,99,102,110,113,114,99,108,82,102,107,102,102,96,108,100,104,103,103,92,99,110,93,110,100,95,95,116,98,106,111,102,99,112,116,112,110,101,92,102,108,93,103,124,127,103,93,105,99,107,101,104,112,100,104,116,97,103,111,109,105,117,97,109,101,122,120,100,97,101,103,103,92,100,99,104,112,84,81,102,100,95,104,106,114,102,84,110,92,103,110,101,95,104,98,104,108,100,98,106,88,99,101,118,109,101,110,103,88,96,108,110,122,113,108,101,99,105,110,125,106,108,95,111,108,122,101,113,106,103,106,109,116,112,104,95,109,90,106,99,96,97,95,108,99,102,101,103,93,96,91,101,96,100,113,96,103,103,99,106,97,99,105,104,107,116,104,102,106,108,107,98,70,102,105,107,108,85,88,111,109,73,107,98,112,90,100,109,99,100,103,109,95,98,112,101,101,97,117,109,102,97,112,111,107,105,99,113,100,100,102,96,108,102,99,100,106,109,104,94,104,108,105,108,87,79,116,108,103,101,104,109,114,97,124,100,106,102,103,94,92,111,98,108,101,101,88,103,100,116,101,109,105,98,107,87,96,106,105,106,105,96,96,93,105,110,107,102,108,98,97,95,111,102,105,95,100,105,99,106,104,96,110,97,102,112,108,107,98,87,99,110,112,95,96,98,117,104,108,97,100,102,106,106,98,126,119,117,102,114,97,97,91,105,106,104,99,98,96,95,115,116,104,111,82,91,103,99,110,104,108,108,104,95,102,108,97,104,108,103,97,99,100,113,113,113,111,103,104,103,105,105,89,89,106,112,112,99,85,104,102,93,104,106,110,98,113,103,112,99,100,115,107,104,93,96,110,108,111,101,95,98,97,108,95,107,107,94,98,115,115,99,91,102,106,95,102,94,110,100,102,112,108,84,107,99,98,104,96,100,102,100,103,98,109,95,104,114,97,109,105,94,107,90,110,119,69,108,111,114,103,97,110,102,101,95,104,104,109,99,94,103,104,106,97,110,107,108,101,105,106,106,105,94,106,104,104,97,90,108,108,106,111,94,106,103,113,104,102,100,97,113,104,102,94,97,91,110,105,99,100,98,96,95,100,103,98,104,93,113,105,105,96,108,109,95,89,101,103,103,103,104,106,102,103,95,106,109,120,100,106,101,109,117,101,104,113,109,95,119,111,83,102,103,98,100,108,103,100,103,102,110,93,102,103,99,100,105,108,105,106,98,105,91,121,107,108,101,100,88,102,106,103,95,108,106,100,102,114,107,108,102,100,105,102,108,109,107,112,106,116,105,112,98,113,114,109,109,99,111,112,101,113,108,99,113,112,86,94,100,103,101,91,102,103,92,102,99,97,92,97,89,100,100,89,100,110,110,95,96,116,109,100,100,101,103,91,107,110,103,99,102,101,99,116,97,106,105,96,117,103,94,109,86,97,97,106,102,115,91,103,96,103,98,108,105,107,91,112,94,109,106,106,109,136,109,106,94,105,101,103,104,107,102,117,82,103,108,117,110,103,104,99,102,109,94,94,101,102,99,104,105,102,92,106,106,93,93,104,119,94,109,107,107,100,99,102,107,107,98,107,107,104,101,96,102,95,111,111,111,99,97,102,100,98,115,93,95,97,98,101,100,105,100,96,97,83,96,114,95,101,111,96,109,105,101,102,100,116,115,104,91,92,100,99,105,99,99,102,112,104,110,93,105,101,103,109,107,88,98,96,98,101,99,105,108,108,113,98,101,91,100,110,101,111,112,100,117,123,101,97,100,88,88,117,109,108,102,102,100,116,112,99,104,117,82,118,100,114,116,103,115,104,95,111,109,108,101,108,96,113,101,102,121,105,112,107,105,89,100,95,98,102,107,103,103,111,109,108,93,103,101,105,116,108,98,104,102,97,96,100,106,108,98,108,91,109,110,107,94,93,103,101,95,92,103,102,126,105,102,97,105,92,96,90,100,92,112,97,98,101,108,117,103,105,104,107,110,108,100,109,112,104,102,110,104,84,115,91,136,112,99,96,110,95,115,96,98,96,105,106,94,97,105,105,100,92,109,108,95,116,105,105,116,98,104,106,102,116,128,101,106,99,91,107,109,95,64,90,110, +661.55981,105,105,104,113,114,96,109,100,103,100,92,93,100,99,113,109,108,116,102,98,109,107,98,104,103,105,103,116,87,138,101,92,97,89,115,97,106,98,99,88,92,95,106,96,96,106,106,108,95,91,102,98,103,99,89,101,100,108,102,99,97,93,105,96,84,116,107,97,123,95,111,98,92,95,90,105,86,96,101,107,108,104,99,98,96,95,106,105,106,105,103,82,96,94,91,109,105,99,95,93,92,109,113,93,105,90,99,94,97,90,108,91,98,103,101,113,110,111,102,90,112,106,95,102,104,108,96,105,109,105,101,101,97,106,106,120,101,115,99,101,110,109,91,95,103,103,108,97,92,96,105,109,115,90,98,102,119,95,103,103,100,96,123,75,92,109,96,100,99,98,108,99,102,97,106,107,102,94,96,100,102,105,106,109,104,109,119,90,105,107,88,100,95,113,97,109,73,105,113,99,110,91,85,112,92,96,98,110,118,100,107,108,104,111,104,108,104,103,97,97,98,104,102,102,97,100,116,105,102,100,76,107,98,100,113,99,94,100,107,105,98,103,123,97,100,107,101,109,102,104,114,99,82,104,99,108,94,102,103,102,95,105,97,99,93,103,102,102,104,102,113,116,105,100,107,100,97,109,110,103,91,104,95,101,98,106,82,101,99,108,102,106,102,94,116,96,116,101,104,99,115,86,98,98,101,108,100,100,110,116,83,109,112,96,108,107,106,102,103,100,100,101,108,113,113,103,102,92,107,118,104,99,97,106,99,99,102,97,103,112,101,104,102,102,114,111,100,94,104,109,108,103,141,98,110,98,103,98,114,109,103,104,102,96,94,104,106,115,101,100,88,97,109,108,102,96,106,104,96,104,104,103,105,98,112,96,98,101,98,96,119,102,97,116,109,100,106,107,99,93,92,100,101,112,91,101,95,100,107,65,90,110,95,97,105,97,99,96,120,100,103,96,95,77,98,98,99,90,103,105,94,107,100,102,107,99,112,108,95,108,112,101,96,114,103,100,88,99,104,110,104,98,117,97,92,97,97,98,99,81,88,99,98,117,106,113,113,96,112,88,109,104,107,98,87,104,92,111,109,105,116,103,99,101,98,112,106,120,103,94,95,102,100,107,96,93,100,102,94,87,99,100,105,101,108,106,102,108,100,100,105,107,102,98,112,109,100,97,98,99,66,106,97,110,92,103,102,100,110,100,96,101,94,97,89,98,103,89,99,108,90,101,106,91,98,111,104,95,101,94,103,87,91,99,94,96,95,108,87,101,111,91,97,100,110,101,106,107,107,100,82,105,100,106,106,91,113,100,95,97,119,108,92,108,71,94,122,82,97,88,102,112,104,107,112,102,100,96,97,89,95,99,109,105,91,104,105,90,99,103,104,97,88,105,94,107,110,73,114,82,93,106,105,94,103,97,103,96,109,104,95,100,89,101,109,102,103,89,98,83,109,103,94,100,94,89,94,107,102,104,80,112,98,106,108,116,103,96,99,101,111,95,104,99,95,99,98,95,110,112,110,113,108,107,85,106,105,105,101,100,110,96,109,97,99,99,118,109,116,100,113,100,88,109,90,105,99,100,108,97,98,102,116,107,101,100,101,105,88,100,103,106,109,105,96,105,120,96,95,108,99,106,110,100,100,98,91,109,105,109,100,100,99,89,90,110,105,86,105,92,83,101,96,98,101,111,109,96,100,102,99,96,102,106,96,111,104,89,107,87,93,98,98,95,77,113,89,102,102,105,102,102,116,103,92,108,101,120,96,87,106,89,104,112,102,97,116,102,97,103,100,101,105,100,101,116,99,113,81,113,97,113,111,102,85,116,99,99,95,101,100,109,103,99,112,99,96,98,93,91,107,95,100,112,103,99,98,101,100,98,101,106,94,91,99,100,108,100,96,108,96,107,100,104,96,98,110,100,103,98,102,97,99,105,99,107,96,106,101,100,96,95,98,106,105,100,87,98,97,101,108,108,92,84,106,99,100,79,101,97,91,99,102,78,106,103,108,107,114,101,94,107,113,101,105,105,103,94,90,93,99,99,109,117,97,94,97,106,99,97,90,104,113,95,113,93,100,109,101,107,108,109,101,105,103,111,118,109,101,99,83,99,100,99,99,106,99,121,107,99,88,100,105,107,103,103,102,103,106,110,104,111,108,99,115,103,103,106,97,114,116,99,91,91,104,106,98,101,103,94,103,103,92,94,115,108,94,101,101,100,86,99,100,90,88,115,96,105,108,98,101,108,96,85,93,97,100,97,87,110,102,99,99,98,108,91,106,109,100,100,94,108,74,105,106,100,110,102,95,100,106,104,100,91,102,111,120,98,106,100,95,112,103,104,104,106,101,110,91,105,96,110,99,98,109,94,99,104,92,91,105,112,110,108,98,110,103,100,94,99,97,102,105,96,111,104,106,101,102,103,105,107,109,107,107,103,114,99,102,108,101,123,94,103,124,113,99,102,106,100,97,109,100,95,85,95,90,110,105,117,95,89,98,98,99,89,102,106,110,105,91,110,101,112,92,104,109,104,91,99,112,103,98,105,99,99,102,99,104,79,96,122,109,96,102,96,95,105,92,97,95,90,94,106,97,98,95,102,111,100,95,92,107,109,102,101,103,88,100,109,96,87,102,86,92,110,97,92,98,113,112,98,118,99,92,97,101,110,103,104,103,102,97,112,94,95,109,88,110,111,113,105,93,101,90,102,101,91,103,105,104,109,101,100,113,104,105,102,94,91,103,93,94,100,100,96,109,119,98,106,104,114,106,109,85,77,96,109,93,105,115,114,97,106,107,109,103,108,98,106,105,100,93,105,118,88,99,97,72,104,96,102,85,104,95,108,100,103,99,113,109,104,100,113,101,96,98,110,102,94,106,108,98,114,105,103,116,98,110,99,108,101,117,96,104,99,101,95,109,98,90,100,99,74,103,103,99,106,98,100,95,115,97,109,99,97,105,101,85,104,113,104,114,93,107,98,108,91,117,103,101,97,97,108,109,97,94,107,110,96,89,105,102,97,105,91,103,90,109,91,97,97,124,100,110,106,103,98,95,102,103,100,98,98,105,96,101,101,106,103,102,100,100,111,102,102,106,101,110,98,112,108,104,105,103,107,100,109,106,95,104,97,101,111,91,96,99,98,107,98,99,98,102,102,107,102,96,102,102,105,107,103,83,86,102,119,105,105,114,111,77,126,108,95,100,94,98,91,101,103,113,98,94,101,105,104,103,102,97,79,91,97,103,101,115,97,105,94,104,101,117,97,97,99,101,91,100,96,92,113,104,85,99,103,111,104,104,94,107,95,107,100,102,112,102,121,98,92,105,100,95,100,99,97,100,116,108,102,99,107,95,101,112,94,99,108,103,117,112,102,111,111,93,99,83,104,107,110,116,92,101,104,99,94,95,99,104,98,103,96,99,106,96,107,93,107,100,117,105,97,97,100,94,101,109,97,98,98,101,107,106,101,80,96,105,117,94,97,104,90,105,103,100,112,108,109,103,108,103,107,118,99,97,98,106,103,106,105,94,105,113,101,104,113,104,99,100,88,95,111,116,94,80,97,100,94,92,102,113,101,90,103,109,116,105,109,102,113,101,96,84,103,105,117,109,98,106,84,107,108,105,112,113,113,112,104,97,95,105,108,96,110,100,105,105,110,97,109,100,109,99,104,100,102,98,95,98,102,104,109,101,96,93,103,106,102,110,76,111,91,109,99,107,81,109,95,111,98,104,106,97,95,96,95,116,114,95,106,94,103,107,93,97,91,106,110,99,94,103,102,102,106,101,113,100,107,103,96,109,85,108,104,104,100,112,103,99,91,116,110,89,98,94,96,107,105,105,105,100,97,108,104,109,96,92,104,103,107,96,94,102,95,109,92,109,104,103,96,81,96,101,98,105,105,98,91,109,97,98,102,93,97,106,108,111,95,92,95,95,91,91,103,90,103,103,89,105,102,96,88,95,96,96,95,92,97,98,100,93,107,109,114,100,95,107,101,112,100,104,101,93,102,104,100,91,103,106,107,105,74,103,113,97,111,107,112,98,98,96,99,103,90,104,96,95,92,99,98,109,107,102,100,114,99,98,102,108,102,95,111,108,112,102,115,117,97,92,97,103,96,105,95,96,102,92,109,101,97,89,96,102,101,92,97,106,87,101,109,101,106,93,96,94,103,114,114,98,111,107,101,96,100,94,107,100,112,110,95,94,100,100,104,111,104,116,95,99,119,99,102,113,94,106,105,98,105,95,94,101,102,98,119,98,101,102,97,100,98,96,89,93,103,99,105,95,109,104,97,113,117,115,94,101,104,109,106,92,88,105,101,97,100,97,102,100,102,108,108,103,94,117,109,95,104,100,109,107,101,106,100,102,112,98,108,100,104,102,95,107,97,92,91,96,103,98,106,108,98,101,85,106,99,109,110,105,96,100,66,115,106,95,98,94,102,104,95,108,103,102,97,96,96,101,106,107,119,84,113,105,111,97,102,108,102,109,97,108,102,99,93,112,105,100,113,105,101,95,109,85,105,117,110,107,103,106,105,99,110,103,100,97,97,107,110,100,108,106,105,110,107,87,102,109,103,102,95,100,100,102,95,94,97,101,105,94,112,105,102,107,101,92,93,98,92,102,98,89,100,102,87,93,97,115,102,109,105,102,96,108,100,96,117,112,93,98,123,101,98,95,92,117,114,112,98,92,106,95,97,106,101,95,105,96,108,112,107,98,103,108,107,95,99,106,98,93,92,113,102,112,102,91,95,102,100,104,107,110,98,99,102,117,91,117,86,113,114,108,92,100,100,97,88,78,86,92,99,105,95,96,102,95,109,98,108,102,103,90,100,98,100,104,99,77,97,100,79,98,101,101,87,91,86,101,91,109,95,102,112,89,96, +661.70105,103,99,120,110,101,100,104,81,97,101,77,113,96,101,98,100,98,82,110,86,99,109,97,108,104,112,102,100,97,108,116,102,89,97,97,102,90,110,95,106,101,110,114,106,99,102,106,110,89,93,109,99,91,98,109,94,106,99,100,94,100,102,102,92,83,122,101,98,108,91,96,108,90,79,111,106,101,92,122,97,111,100,86,82,107,86,103,128,96,89,96,102,106,85,91,104,93,92,104,100,101,103,96,90,114,89,100,113,96,88,96,101,98,93,101,99,107,108,110,98,91,100,93,104,113,96,111,89,101,105,99,95,98,97,104,105,105,88,88,97,97,100,105,101,104,97,104,94,94,105,98,91,87,97,100,110,93,97,101,106,87,104,99,109,104,102,97,108,98,103,111,93,96,97,111,101,104,91,100,102,87,103,105,95,101,102,99,81,109,96,91,98,104,98,101,105,95,104,89,109,84,102,105,119,97,115,109,111,97,110,94,109,101,112,104,97,96,102,101,103,80,105,104,102,107,97,112,103,103,107,84,104,108,104,95,101,97,93,97,83,107,107,105,107,105,121,110,114,92,98,96,97,101,100,88,109,121,107,95,97,95,101,105,112,96,104,119,114,107,102,111,96,104,110,103,103,96,100,91,96,98,101,89,100,100,96,94,105,98,110,102,95,86,87,112,111,86,107,96,107,100,103,93,105,96,97,103,78,96,103,95,92,103,91,100,103,102,116,100,99,94,95,90,102,99,97,92,88,110,110,102,99,104,103,106,108,107,114,100,96,95,95,91,97,99,90,111,95,102,108,86,109,98,103,101,100,95,103,87,101,102,102,100,93,106,99,108,110,105,97,103,96,107,96,104,92,100,98,94,104,111,113,106,88,93,105,87,110,93,94,97,102,101,109,105,108,94,109,98,112,102,104,108,96,104,91,96,94,102,97,102,103,100,91,103,99,99,95,113,93,91,95,97,100,98,96,100,100,100,100,89,105,99,105,108,104,104,97,100,89,105,103,102,99,93,103,101,96,107,101,109,98,112,99,86,104,97,116,100,111,100,99,106,109,96,107,105,92,96,99,98,99,93,102,113,98,90,76,116,101,99,125,108,103,104,105,102,106,92,105,100,106,112,93,99,105,104,99,106,104,105,106,96,102,105,97,95,119,95,107,95,99,97,92,91,102,96,108,97,95,108,95,101,99,89,84,117,107,104,96,105,96,108,108,93,77,111,116,95,117,100,107,100,98,99,94,106,91,100,107,109,111,105,95,92,99,99,104,108,106,108,97,108,112,96,89,106,119,107,97,96,90,95,98,101,101,98,93,92,101,106,89,105,108,103,91,113,111,102,99,104,100,96,94,106,106,91,98,99,106,99,102,104,105,102,95,97,97,103,94,99,96,93,92,101,96,97,105,99,103,99,104,111,107,103,122,89,114,99,107,119,106,104,107,100,108,114,85,101,97,117,98,96,102,106,95,88,95,92,102,90,103,104,94,94,93,101,92,96,106,103,98,114,97,94,113,102,95,114,103,99,97,104,137,89,105,98,101,113,99,94,110,105,93,95,95,99,106,94,98,101,105,105,90,93,103,93,99,109,105,112,101,101,95,102,101,100,108,103,114,111,129,97,94,102,91,100,100,107,103,99,133,94,108,101,117,93,102,98,106,101,98,110,97,97,96,110,95,110,112,104,91,91,101,105,104,94,95,86,80,109,101,96,106,111,97,100,95,103,101,102,107,87,99,99,111,108,90,109,110,100,121,107,100,83,117,95,91,110,95,100,102,98,106,95,100,97,76,93,91,111,102,99,109,105,111,117,112,100,105,93,92,111,103,103,109,98,99,101,99,106,103,107,106,115,97,99,117,106,103,113,109,110,111,111,103,96,102,106,95,106,96,98,122,106,94,107,90,99,108,104,96,97,101,93,101,91,87,112,101,110,102,95,89,92,107,103,91,95,97,93,100,99,105,99,102,94,109,100,105,106,107,103,109,83,100,107,92,99,96,98,113,91,102,99,99,97,105,101,93,106,103,71,110,112,91,101,98,100,104,101,103,113,96,100,102,91,111,88,107,89,102,107,91,108,92,90,103,99,96,101,101,105,103,108,88,98,92,87,113,79,93,103,99,107,98,95,97,101,109,107,100,99,115,95,115,104,123,116,102,94,103,100,100,108,104,101,109,96,96,109,100,98,93,113,107,90,99,92,88,96,100,104,82,97,106,106,93,93,105,104,109,124,96,111,95,96,113,109,84,108,114,99,99,97,74,100,116,100,107,108,106,89,84,111,101,120,106,100,91,88,111,88,102,101,109,96,101,101,117,104,100,107,91,103,99,80,101,113,87,103,89,100,101,100,81,100,107,102,105,94,121,100,100,97,94,101,91,100,105,106,96,113,101,87,101,105,94,101,92,101,95,113,113,106,97,100,107,95,99,67,114,98,91,104,100,103,99,104,102,94,110,110,102,116,103,109,89,113,102,98,102,110,102,98,108,93,105,83,100,99,95,101,87,119,108,108,115,105,116,105,106,106,94,111,100,109,95,103,99,103,99,70,97,108,92,97,109,107,108,105,113,108,91,91,101,89,112,101,85,100,94,94,91,94,97,94,102,80,94,116,112,113,99,113,98,129,99,98,110,104,109,93,88,108,89,97,111,111,109,95,96,110,103,96,97,100,99,105,107,100,115,103,105,109,90,106,96,109,105,97,110,107,99,94,110,110,98,99,94,107,103,107,107,88,98,100,96,104,122,95,106,91,113,111,112,114,101,103,78,107,107,102,113,114,104,102,104,120,91,98,109,103,113,94,112,103,103,92,102,77,121,102,105,103,95,117,96,107,101,99,105,114,121,102,107,119,118,106,106,102,125,111,102,103,99,95,95,105,103,122,115,105,104,99,96,96,100,115,101,107,98,103,103,106,96,107,123,100,110,105,128,99,104,104,93,103,109,104,96,77,104,97,119,97,86,68,104,91,87,102,110,90,83,107,98,108,96,102,100,100,84,107,99,113,102,103,87,107,98,109,112,104,112,101,116,103,85,104,98,106,99,103,94,110,100,123,101,114,103,101,118,108,108,98,100,104,105,91,105,110,111,84,102,106,103,116,112,99,104,102,116,107,84,99,109,111,104,103,102,95,93,121,107,102,105,100,112,101,102,99,104,108,105,97,88,106,106,110,99,107,105,92,107,97,109,94,110,106,108,104,106,109,99,107,94,82,100,109,113,104,105,103,110,95,119,107,106,103,108,114,111,107,109,116,95,127,113,105,106,103,102,107,106,108,105,103,107,99,94,99,99,101,103,103,111,107,99,99,104,103,104,107,100,107,106,115,94,103,133,97,101,113,98,116,93,113,119,110,106,112,104,107,98,116,103,106,106,116,99,101,98,101,103,107,99,100,102,111,105,112,114,98,103,104,104,109,124,107,105,102,87,107,114,98,110,113,108,94,115,108,118,99,103,93,95,98,95,103,99,106,102,115,95,114,104,117,108,111,108,103,112,108,108,106,107,97,107,113,99,121,92,102,101,97,99,99,101,106,109,95,110,105,111,102,113,100,107,109,108,115,102,106,104,102,113,112,94,99,108,97,112,106,99,106,106,103,99,102,106,97,96,99,94,99,78,91,111,110,95,102,101,112,114,104,91,102,94,101,108,92,103,100,110,97,109,109,106,113,106,108,104,118,98,109,106,94,102,106,106,105,102,98,112,97,103,111,114,83,102,117,109,105,94,109,103,110,95,108,109,105,109,109,100,106,109,101,106,94,111,104,99,102,110,104,99,99,102,116,96,105,119,98,119,108,111,115,121,101,93,103,71,109,110,107,113,99,96,89,106,100,125,97,109,110,96,94,114,96,109,104,104,103,113,112,96,104,91,109,93,87,102,98,104,106,101,87,83,102,94,100,96,101,102,96,106,102,84,100,111,104,111,103,102,112,100,90,96,108,113,98,101,101,102,112,103,94,104,119,108,93,107,102,100,117,105,91,101,107,111,99,111,91,71,92,96,102,105,103,105,114,91,93,100,98,100,99,91,71,101,121,107,88,95,103,102,94,98,93,103,102,105,101,97,113,91,104,109,103,102,110,101,89,99,105,117,100,109,101,97,107,104,66,84,100,108,98,97,109,105,100,104,99,114,100,97,103,93,95,121,107,95,98,90,111,105,95,102,100,86,100,109,102,95,99,99,99,96,107,104,107,113,107,100,100,104,106,103,93,97,108,108,109,101,92,89,99,103,97,110,131,109,104,87,106,109,101,108,102,94,105,103,121,105,108,100,98,102,97,105,93,110,116,103,101,97,109,103,113,117,109,110,123,125,101,110,105,100,99,97,106,104,116,113,87,98,116,92,95,114,98,113,109,109,99,109,113,119,104,105,112,109,109,120,99,102,104,106,105,105,97,89,105,117,94,113,84,99,111,95,108,90,94,99,106,107,94,98,104,107,104,116,101,104,97,99,102,109,111,89,105,107,108,110,111,96,115,89,103,102,102,99,95,97,100,109,104,112,98,94,109,99,116,101,105,103,108,100,98,115,96,105,102,99,108,110,91,97,114,108,96,102,104,93,97,101,99,97,106,91,96,102,100,91,112,105,104,106,107,108,92,109,87,104,93,120,98,112,95,112,109,103,91,109,109,107,109,107,100,109,88,106,106,100,104,104,112,89,106,100,115,108,105,84,114,94,98,94,99,98,106,102,99,102,107,100,104,104,100,109,108,101,93,100,97,101,118,105,100,94,96,96,109,106,98,97,102,103,112,105,101,99,116,111,108,102,109,110,102,87,105,110,99,109,98,117,101,98,92,106,111,100,95,96,116,113,101,103,102,107,102,113,99,100,109,98,101,81,96,104,96,100,97,99,106,99,113,105,98,111,104,96,96,106,101,108,112,87,105,89, +661.84222,97,98,97,90,92,102,100,98,93,105,99,106,101,103,105,105,101,131,95,107,99,109,103,99,95,105,106,98,89,119,94,103,109,93,105,98,86,94,100,103,70,111,105,114,100,105,122,118,100,96,99,100,96,100,98,132,99,91,130,94,99,83,96,103,97,121,97,101,107,105,102,98,106,105,100,111,116,107,98,102,94,111,114,89,110,99,98,106,103,86,105,107,109,78,107,98,115,94,109,108,116,120,92,102,101,104,105,89,103,97,96,95,104,84,112,98,105,98,101,97,105,96,96,114,107,104,106,98,107,121,100,108,105,101,103,102,108,94,97,100,86,108,97,100,100,84,106,90,89,110,84,105,108,83,109,112,100,102,106,97,101,106,109,104,94,94,104,91,111,91,100,106,81,103,101,113,102,90,107,121,102,92,92,117,102,92,96,87,102,70,108,102,108,101,95,95,100,115,93,101,105,101,91,114,108,105,101,100,122,116,95,103,94,92,102,100,103,110,108,112,109,127,91,97,82,111,100,109,99,91,91,99,100,100,109,97,93,107,99,103,97,102,98,105,98,105,106,108,101,106,105,108,93,98,108,109,100,104,97,120,95,112,101,99,85,107,102,104,102,100,110,91,96,100,103,106,95,99,95,108,109,87,95,96,109,113,87,102,100,93,95,99,105,108,113,113,111,118,106,85,99,104,104,111,92,110,105,110,110,97,102,117,87,85,100,109,122,107,105,100,92,100,109,102,89,107,101,99,109,104,103,99,106,99,98,111,106,86,99,111,112,101,92,100,100,115,94,101,121,100,97,97,90,113,108,101,98,96,115,101,100,113,90,112,94,99,95,109,106,100,103,102,126,125,94,100,97,94,104,90,115,118,90,99,99,98,121,107,122,92,109,105,97,94,111,112,129,93,99,106,101,106,82,100,103,99,101,103,97,83,65,108,104,99,97,98,114,106,103,102,106,100,96,124,97,99,102,104,86,100,114,96,94,101,104,96,107,95,105,121,102,108,101,111,102,110,94,91,106,105,107,121,84,98,112,108,109,104,105,107,107,94,106,108,104,84,95,88,112,103,104,105,100,103,101,100,101,108,93,101,101,99,108,99,105,103,93,118,95,108,110,117,109,103,96,110,95,101,101,98,66,111,96,103,98,105,94,103,102,93,126,102,105,107,108,101,102,100,102,93,92,98,87,98,99,106,109,104,90,107,115,114,93,106,100,104,99,90,102,95,109,129,94,97,110,95,92,100,110,95,99,101,100,99,100,104,95,108,100,97,101,94,100,105,106,96,110,102,99,101,99,95,109,106,105,110,91,104,94,108,108,95,104,96,105,94,106,89,110,105,103,107,90,102,108,96,103,102,106,111,102,103,95,97,100,113,95,94,101,90,92,97,110,91,114,108,104,109,108,112,102,106,123,106,89,104,99,99,110,91,107,94,103,100,98,103,107,100,106,108,106,96,116,98,97,91,94,96,107,98,100,103,103,115,98,104,103,109,95,96,108,97,100,102,87,104,101,100,99,111,106,111,116,90,95,109,106,105,99,115,90,115,102,73,105,105,102,109,83,104,100,108,90,104,109,107,105,109,105,109,96,98,99,94,92,102,117,91,91,105,107,99,98,104,108,103,119,114,101,110,97,92,105,100,103,104,104,71,101,100,94,98,98,111,90,107,89,97,109,103,110,101,97,113,110,102,105,109,113,110,102,99,100,98,107,92,99,105,106,90,106,105,107,104,100,113,95,118,120,110,95,76,94,105,100,97,84,111,95,115,100,123,99,96,90,100,102,112,103,108,104,100,96,108,103,108,77,100,90,125,97,118,104,122,92,102,92,105,106,109,108,91,116,99,97,97,111,103,102,108,100,98,104,111,71,109,108,111,104,126,99,92,107,108,110,100,107,94,111,109,101,111,105,101,98,95,103,95,105,81,96,100,98,100,102,99,96,94,110,104,96,110,104,102,99,105,86,99,110,103,109,103,94,95,105,109,112,94,95,105,104,94,107,103,133,97,99,109,95,98,102,108,103,99,113,100,113,109,93,102,93,111,102,94,119,102,88,114,83,111,96,112,103,108,103,99,94,107,110,100,101,101,111,100,104,113,98,109,104,111,97,92,94,103,93,107,94,98,99,96,88,100,98,108,93,99,88,105,103,110,105,109,107,105,113,98,106,85,93,101,103,102,89,96,105,91,109,103,96,132,79,93,108,87,102,84,112,109,101,110,99,96,99,102,96,103,89,90,96,109,95,104,100,97,95,96,99,84,91,96,95,95,109,99,92,104,95,117,92,102,107,93,92,99,102,105,101,99,98,93,109,113,97,91,106,108,96,106,109,112,97,95,106,69,96,91,100,114,108,106,92,99,96,110,90,106,98,96,104,107,106,119,99,93,101,111,102,96,92,111,92,123,99,112,95,95,95,109,101,94,91,97,99,105,98,100,96,94,92,102,92,99,102,103,106,102,99,99,116,85,113,119,108,121,100,78,106,104,117,106,98,91,106,92,105,117,100,97,117,102,101,119,103,110,93,88,122,108,102,91,90,89,93,109,106,95,97,112,101,102,112,108,108,116,93,110,102,106,103,102,104,102,103,101,93,99,96,129,111,92,104,101,117,95,100,106,117,94,102,103,98,98,100,92,103,107,104,84,105,96,96,89,99,101,96,107,87,107,104,101,96,96,83,97,97,103,114,97,101,111,111,100,96,115,93,99,102,97,107,88,94,100,100,91,108,101,107,102,110,111,111,103,107,112,101,105,100,102,94,96,118,107,109,67,111,97,100,104,102,100,99,112,101,96,105,84,97,99,110,121,99,102,91,116,91,102,96,107,92,109,108,130,99,101,90,108,81,110,112,102,104,106,118,116,104,104,117,87,95,102,107,103,104,112,99,106,105,118,96,116,81,101,113,101,102,102,103,104,94,102,96,111,94,100,101,115,104,95,106,106,104,99,115,107,95,102,104,111,106,99,97,112,94,90,103,99,104,91,109,104,109,104,104,100,87,99,113,98,101,110,101,90,102,103,92,100,98,107,125,129,111,96,94,100,98,96,105,111,104,108,101,100,93,103,101,111,92,108,99,97,106,105,108,99,104,94,101,94,104,111,105,97,104,112,109,107,106,108,103,105,98,98,100,101,98,98,109,98,99,93,102,101,77,112,96,113,102,93,100,99,131,96,102,115,94,108,104,106,105,97,86,109,94,107,83,113,102,125,106,109,116,94,99,94,92,99,111,108,116,105,97,99,123,109,91,112,106,115,95,127,101,110,123,90,97,95,106,108,104,109,91,95,81,95,107,108,98,91,101,101,100,99,99,84,105,94,101,93,98,97,108,103,91,97,101,100,111,103,105,104,98,123,106,95,102,105,94,109,117,100,104,101,95,91,109,107,105,103,118,95,97,108,98,119,103,105,113,104,98,106,102,100,113,91,105,98,104,102,101,94,112,105,110,105,104,100,97,110,92,96,94,96,102,89,99,121,113,107,99,88,106,135,102,96,109,91,103,101,91,91,104,100,101,103,108,98,112,112,110,97,109,105,112,108,109,94,108,135,100,108,108,103,108,117,98,99,104,99,108,94,97,104,97,111,100,115,107,92,106,106,93,120,115,95,92,85,105,101,105,111,109,119,102,103,108,80,110,110,113,109,111,92,107,113,91,106,99,99,99,90,102,105,106,98,107,96,102,102,99,89,107,99,111,99,99,98,109,105,99,104,108,99,112,105,91,104,105,100,101,102,83,97,108,105,103,103,98,119,92,99,95,108,102,109,111,100,100,99,112,99,87,119,105,112,105,97,109,89,100,96,104,100,109,101,94,103,74,104,102,84,95,103,98,114,99,96,103,104,113,96,93,105,101,99,94,101,98,94,100,96,101,106,109,101,107,100,104,101,102,109,96,101,110,101,107,104,112,96,98,108,96,96,110,98,66,99,118,108,104,98,102,102,94,95,102,103,104,99,98,113,108,98,95,104,102,108,100,100,98,101,104,102,94,102,99,107,95,101,98,99,108,112,97,108,119,94,113,96,103,99,106,117,100,106,109,110,100,104,108,103,100,94,110,92,108,108,110,101,104,111,119,90,102,107,104,109,93,110,103,97,97,109,103,110,104,113,105,100,105,108,94,88,98,106,92,127,100,101,102,104,105,86,102,99,107,122,113,96,98,111,109,111,97,112,113,105,104,96,93,90,104,95,102,102,119,97,113,106,99,102,89,91,104,109,106,93,103,104,102,101,92,102,109,96,103,110,98,90,108,99,103,130,108,101,112,95,101,97,100,105,106,90,102,109,110,98,110,98,104,110,109,115,102,99,121,101,103,112,99,105,97,96,103,102,104,104,99,102,107,106,99,111,107,99,98,102,99,104,98,104,108,117,113,87,107,113,91,101,96,107,110,88,103,110,89,101,112,101,100,125,109,103,96,114,106,110,96,101,109,112,109,109,109,100,90,106,109,99,116,110,102,105,102,94,106,88,97,106,111,102,92,97,95,107,100,109,121,108,108,96,103,104,95,101,103,109,112,96,94,99,104,101,105,95,108,94,113,91,105,107,102,111,103,99,102,107,107,106,102,103,109,98,110,112,103,94,99,96,100,105,87,102,98,98,114,104,100,113,113,101,98,107,95,103,117,104,96,107,110,103,114,101,108,110,107,114,100,116,103,104,97,93,101,116,93,96,103,103,99,114,103,94,99,103,102,93,101,116,109,103,99,106,104,100,107,87,106,101,100,112,104,93,101,85,107,113,103,103,106,92,105,96,103,110,97,100,114,93,92,98,99,96,102,111,98,107,103,131,100,106,112,100,101,109,128,98,100,103,108,112,109,102,94,114,106,98,104,95,122,105,107,91,101,121,111,88,84,108,107,95,106,117,111,105,98,111,87,111,113,98, +661.98346,96,97,97,96,85,94,103,100,105,96,102,87,95,99,106,99,97,100,107,97,104,98,105,100,96,104,91,102,109,100,100,84,98,108,104,105,104,94,99,101,96,96,95,90,107,93,102,102,111,100,101,103,109,83,108,91,103,96,94,102,105,106,90,101,75,108,96,87,100,65,100,109,83,101,101,114,91,96,109,94,102,110,92,101,110,77,101,102,100,102,110,96,107,93,109,101,121,89,95,105,102,104,82,95,109,95,90,91,107,108,95,127,101,97,103,95,123,98,106,107,125,104,102,116,91,104,106,100,101,112,94,113,95,133,108,85,91,113,96,112,107,104,105,92,113,106,101,92,98,97,97,102,98,99,105,105,105,103,103,103,94,104,101,97,104,108,101,95,114,108,83,104,94,97,109,103,101,91,109,98,107,110,98,108,105,101,97,92,107,100,102,95,106,112,100,105,98,109,93,112,102,98,106,88,110,104,103,108,117,109,101,110,92,98,97,106,103,107,93,95,117,83,95,92,100,120,108,105,104,99,118,112,107,99,94,111,96,98,102,102,99,110,108,97,81,105,100,98,87,99,97,118,108,106,99,99,110,104,94,111,85,97,100,95,102,98,100,103,95,103,111,106,103,95,110,129,113,110,101,103,104,100,110,106,94,96,100,113,101,85,111,114,104,93,104,91,102,103,115,101,113,102,100,102,88,110,104,99,96,105,108,109,103,106,107,99,100,105,102,100,110,103,105,102,114,100,102,112,116,114,101,98,100,117,99,117,98,101,97,108,113,111,109,103,102,106,124,119,100,102,104,102,104,112,101,99,94,108,103,107,101,97,102,104,105,102,106,102,95,99,101,110,97,100,103,101,106,113,100,101,109,105,101,111,99,111,92,102,95,106,110,98,100,112,106,101,90,96,100,102,94,105,96,97,100,103,104,96,111,92,114,109,99,99,95,101,113,129,96,90,103,104,96,103,108,97,109,83,99,117,98,99,90,95,105,97,103,101,107,109,103,95,93,108,88,96,98,96,100,103,102,106,93,102,103,94,101,109,93,95,94,100,102,109,106,98,87,101,93,101,103,96,108,103,92,113,105,98,108,103,107,103,98,105,97,103,94,110,105,109,109,100,75,103,94,109,104,111,108,100,114,103,106,100,128,121,100,95,102,102,105,93,70,100,101,100,94,105,102,100,98,104,100,107,107,106,107,108,110,104,97,114,100,110,96,92,89,99,100,99,102,95,111,98,110,98,106,105,111,109,104,109,110,98,90,104,108,103,103,112,113,110,94,90,94,110,101,104,75,102,99,102,118,127,98,102,91,99,101,104,112,92,87,97,97,103,105,109,108,98,110,100,103,101,106,96,102,103,113,105,95,114,118,99,101,118,91,91,104,106,97,92,104,96,102,104,113,87,111,101,105,96,102,92,106,103,102,95,99,95,99,96,101,110,99,100,102,97,95,103,112,108,100,103,101,104,107,94,93,101,84,120,94,104,102,105,106,106,104,99,107,97,98,102,109,103,102,103,101,118,117,100,121,101,110,95,100,114,109,106,99,105,99,100,87,103,112,117,103,104,103,104,94,122,89,93,102,115,103,89,105,104,106,92,95,103,99,100,109,93,110,99,102,96,106,106,94,103,89,101,106,95,99,110,101,94,95,96,97,114,105,121,110,98,104,99,102,94,112,99,103,97,103,95,104,90,112,110,105,100,102,101,121,97,102,108,99,101,97,113,96,106,95,105,99,101,101,113,118,97,103,103,112,116,110,103,100,112,102,98,99,106,122,96,75,107,112,81,97,90,89,99,107,125,114,107,102,93,113,99,100,97,98,100,109,106,93,106,106,104,112,102,101,101,94,94,98,108,93,95,89,99,104,108,95,95,107,114,98,103,106,88,96,100,96,105,103,95,116,93,98,100,87,99,95,102,106,88,100,95,105,96,106,74,103,110,110,109,96,109,95,108,96,97,105,101,94,100,102,123,115,116,105,104,108,101,111,110,105,100,117,113,106,97,93,102,96,105,117,106,106,111,104,109,95,100,98,106,119,118,101,102,106,109,106,101,99,108,110,93,93,111,110,112,102,114,113,110,93,98,110,113,105,114,98,100,107,101,106,103,115,78,87,103,71,101,99,94,93,108,94,100,100,97,91,92,107,87,105,101,111,101,114,100,106,99,102,112,98,104,87,101,108,105,96,105,96,108,102,111,107,102,106,110,101,113,104,96,104,104,91,102,99,109,104,107,108,92,107,94,94,103,107,94,99,112,105,99,114,104,105,98,97,117,108,113,99,114,96,98,78,105,88,110,105,97,90,119,99,100,106,100,117,92,105,97,99,118,109,92,106,111,101,107,112,101,100,92,111,104,110,115,97,97,110,104,97,94,88,119,114,116,94,93,120,100,111,124,105,103,100,114,112,99,92,98,103,99,99,94,96,104,91,94,96,105,92,96,78,100,101,86,108,102,91,100,94,94,101,99,102,113,102,100,90,97,98,104,101,117,98,88,97,105,101,114,113,105,103,103,104,101,103,101,104,107,91,99,82,111,91,76,89,79,96,101,104,110,104,95,92,108,103,101,98,97,93,106,97,101,103,91,101,129,111,94,104,92,102,99,106,106,103,105,106,104,104,103,99,107,98,86,93,86,99,116,106,92,118,107,99,104,113,94,94,101,107,94,99,97,106,110,102,103,100,96,118,104,102,104,87,106,95,106,93,113,101,82,103,108,103,85,92,105,95,96,101,107,107,102,100,104,100,101,100,104,90,100,99,92,106,111,100,96,98,104,99,106,108,93,117,98,89,96,96,103,101,95,102,107,101,101,106,102,98,108,102,95,114,91,92,98,102,101,102,101,98,103,83,94,96,91,104,108,101,99,88,100,107,95,111,109,98,96,101,99,90,102,104,107,108,104,104,106,101,102,98,103,100,100,105,99,104,92,104,106,112,103,106,105,95,98,109,115,117,88,97,96,87,102,100,111,95,123,98,125,98,96,93,96,104,102,99,106,95,99,131,96,110,90,104,102,104,102,105,91,108,113,94,102,106,95,124,96,110,89,102,108,96,113,103,99,97,109,95,104,101,101,102,106,98,104,106,109,113,97,98,98,111,105,94,106,103,105,103,112,123,95,107,101,95,96,112,94,100,94,98,96,128,114,88,92,92,100,76,105,104,101,95,92,99,104,104,97,100,101,91,103,101,102,97,100,100,106,101,97,99,102,113,91,110,105,106,86,90,109,104,99,99,101,110,108,108,109,109,101,99,90,99,76,104,103,109,92,104,106,110,106,102,101,102,108,105,98,104,105,109,108,98,103,84,100,113,98,87,89,95,99,88,100,91,101,121,87,113,98,104,100,106,106,98,113,111,117,97,105,91,104,103,103,108,103,103,99,99,120,108,111,111,92,106,107,87,101,109,102,99,99,92,102,109,87,95,99,99,102,102,106,114,112,103,97,94,94,91,102,100,110,93,104,104,91,104,106,107,100,96,112,105,109,106,104,92,93,113,106,99,101,101,99,111,89,102,100,96,104,98,103,88,100,97,98,117,93,104,110,88,99,95,107,104,105,101,106,105,111,98,90,110,102,100,97,103,104,110,100,98,112,110,104,101,105,124,102,105,95,99,112,112,105,92,94,94,107,97,101,92,94,105,110,105,92,87,95,96,84,105,96,113,109,106,98,98,99,98,99,95,98,104,100,106,117,98,102,97,91,117,112,97,94,106,99,95,98,106,99,93,105,115,110,102,96,89,103,97,105,100,110,101,88,106,108,100,105,91,97,75,98,101,92,101,106,94,100,96,95,108,112,101,91,100,96,112,102,109,113,104,92,91,113,105,106,97,97,98,101,105,100,102,92,99,94,114,100,88,98,87,106,96,95,97,108,114,99,102,97,110,101,101,108,114,94,98,117,95,106,97,89,103,97,95,95,113,98,94,108,106,98,101,101,107,95,104,108,110,98,103,107,100,104,119,98,98,95,95,93,105,109,99,99,105,98,105,112,105,96,98,99,104,99,96,81,102,105,109,109,114,97,113,100,108,95,103,91,98,108,101,106,102,96,111,103,103,111,100,95,110,105,87,91,103,105,112,113,101,109,106,106,87,104,104,104,87,104,99,112,99,97,100,108,109,98,103,95,94,96,106,106,98,109,104,102,96,97,90,99,89,96,89,104,105,106,99,106,121,107,96,103,110,104,112,98,100,106,95,104,109,103,115,109,105,105,112,104,96,96,120,109,96,85,97,111,103,90,100,92,100,98,105,97,90,99,108,93,91,106,94,93,105,100,106,104,101,108,101,98,110,84,80,113,116,114,102,100,110,103,113,105,109,87,91,92,103,99,105,103,91,100,104,112,109,108,111,90,92,128,109,129,103,111,94,103,99,117,101,101,99,94,99,101,113,101,80,117,94,94,104,99,98,100,108,113,113,105,107,94,87,100,98,102,104,93,96,100,105,96,88,109,93,98,96,112,104,98,105,103,91,112,91,91,75,116,99,104,105,112,98,105,91,102,101,83,104,105,97,115,104,105,102,101,98,87,91,102,100,87,103,96,95,103,104,104,112,101,82,87,109,88,102,100,94,108,106,105,103,98,99,98,120,104,98,98,103,99,113,104,97,105,98,109,97,102,117,82,112,108,105,95,106,99,103,100,92,95,113,93,97,111,97,92,99,84,101,98,102,97,113,91,96,79,101,108,104,117,98,101,98,102,99,101,92,100,96,97,124,102,121,95,97,105,109,124,89,72,101,100,107,98,91,98,98,101,103,107,99,101,92,95,100,101,96,96,105,102,106,107,102,102,112,87,109,111,104,106,95,109,103,106,101,111,88,110,105,94,94,101,99,104,106,93,116,107,120,92,99,84,101,116,104,90,103,92,95,89,91,104,115,98,95,89, +662.12469,96,97,80,98,94,94,78,94,119,116,108,107,99,85,101,116,105,105,108,117,124,100,104,95,100,120,103,102,73,104,98,99,117,100,97,83,98,102,98,92,116,100,99,98,102,104,118,106,102,83,101,110,101,94,90,91,96,96,114,97,124,95,103,96,107,108,104,111,105,84,102,103,97,77,102,99,90,87,103,119,102,92,91,100,83,101,99,106,100,74,105,112,84,107,100,91,100,109,109,102,101,103,97,103,108,98,96,98,105,85,98,101,90,102,118,102,107,102,100,104,101,103,110,98,99,89,114,86,113,101,101,94,97,113,115,103,106,109,105,101,91,109,100,91,106,101,101,98,99,106,98,105,107,85,92,106,106,99,107,100,104,106,100,110,98,102,102,113,100,87,104,106,101,84,103,91,97,85,105,104,97,103,107,96,98,90,102,100,105,102,95,83,97,92,108,104,105,101,75,101,93,100,91,98,99,108,99,99,109,110,96,116,114,99,95,99,89,105,94,98,108,100,109,77,102,113,97,89,107,132,92,100,113,98,100,108,104,100,112,96,100,117,99,107,102,104,95,109,103,109,112,95,92,102,106,99,101,107,85,107,96,94,96,92,104,100,113,98,77,102,105,91,106,102,99,117,112,112,89,102,112,99,104,119,112,100,99,135,98,96,105,92,108,94,113,103,113,95,103,91,91,95,105,116,101,98,96,94,90,100,98,100,100,111,106,95,110,105,97,103,105,113,99,106,116,108,97,100,108,103,92,95,102,101,103,88,98,95,97,99,95,107,98,103,97,101,94,100,92,101,100,100,107,108,102,112,94,101,112,104,98,107,101,107,105,96,100,112,105,102,100,94,103,108,83,98,101,99,93,103,104,105,107,105,100,109,108,103,101,91,92,76,93,102,95,118,112,109,111,98,105,99,107,98,108,92,100,108,96,108,101,87,102,88,99,103,97,93,84,94,95,109,97,103,96,97,105,102,99,98,94,102,98,99,98,90,99,112,96,115,117,90,123,108,99,126,90,83,106,108,96,109,117,102,106,99,95,107,101,96,99,78,98,110,107,113,100,102,106,108,102,104,101,109,93,94,95,101,97,96,97,112,111,100,100,105,117,94,108,99,102,113,107,89,105,101,96,96,76,110,102,112,95,112,98,105,110,104,86,116,101,98,92,91,103,100,66,106,90,101,109,102,107,101,108,106,103,103,98,91,104,94,89,95,105,102,105,99,110,101,92,104,111,96,103,103,111,98,107,96,104,107,99,95,93,97,108,94,102,104,91,106,95,104,99,99,106,110,105,105,89,116,113,110,100,106,104,94,99,101,105,103,82,114,91,97,103,96,102,97,112,92,99,107,115,107,104,95,109,107,95,100,80,95,94,105,108,91,113,106,78,105,98,95,98,89,99,85,94,98,98,102,117,103,95,106,100,93,109,120,92,62,92,103,95,104,108,106,102,102,94,101,107,109,99,99,103,109,97,107,101,107,124,103,102,102,103,109,100,70,106,103,97,95,107,102,108,90,111,88,106,108,109,95,108,109,94,107,93,92,103,108,103,100,97,96,98,104,96,111,98,99,95,103,105,103,100,113,91,96,102,98,103,106,106,129,100,115,88,108,104,109,106,109,86,104,103,103,116,109,109,90,111,106,96,97,77,103,104,110,93,105,114,100,90,119,97,100,96,105,95,95,96,108,102,106,104,111,96,110,90,100,94,102,96,89,112,104,101,103,95,101,109,94,95,109,101,97,90,105,101,101,82,97,91,107,106,123,91,100,90,84,120,95,97,94,86,106,96,101,110,102,102,101,104,102,104,94,107,108,81,93,99,98,106,105,106,85,106,104,111,103,94,104,100,104,113,108,109,110,101,99,105,99,108,112,118,112,105,101,103,97,107,95,90,119,111,87,84,99,101,108,96,117,105,100,108,100,97,111,98,103,103,91,89,103,103,102,94,102,98,91,95,105,107,95,86,107,106,96,108,104,107,107,101,96,103,102,93,96,106,105,105,101,101,119,104,108,96,102,106,114,81,104,104,95,108,96,91,99,107,108,98,105,104,97,94,103,92,100,113,99,112,105,111,93,101,91,109,97,103,112,100,97,97,108,115,100,103,108,93,101,95,112,99,120,97,110,111,99,113,99,98,94,83,103,102,111,93,103,100,93,105,108,100,101,106,109,96,93,109,111,108,94,117,93,84,96,101,105,99,96,98,92,95,110,103,92,101,98,93,95,108,101,101,100,112,86,94,96,99,102,94,101,116,101,100,102,96,95,96,104,105,91,111,106,96,104,109,102,120,96,87,116,101,112,96,96,97,117,108,116,100,96,117,114,106,106,112,103,105,105,99,88,109,105,105,125,102,94,107,108,102,110,110,99,99,113,107,104,113,93,104,107,80,101,93,109,106,89,101,103,107,114,104,104,105,104,108,98,83,105,92,101,110,106,99,83,101,102,106,107,111,101,95,106,99,91,118,99,113,99,100,99,95,100,110,114,113,106,106,93,110,117,104,97,95,92,108,114,105,106,111,103,104,98,103,110,97,111,112,111,92,109,111,100,96,96,119,91,107,107,106,100,100,95,98,106,103,105,94,87,108,100,106,104,101,105,101,105,132,93,113,96,106,106,106,98,99,108,98,95,105,93,104,94,117,104,100,98,102,100,108,96,105,104,103,97,103,100,101,109,88,100,103,116,107,91,99,112,113,105,101,108,114,99,110,107,96,102,109,113,109,103,94,111,97,126,99,113,104,104,97,121,120,103,117,99,101,94,106,108,101,97,112,100,102,122,102,75,101,103,96,99,104,104,107,84,95,109,101,106,99,77,91,98,105,108,105,108,107,103,111,108,85,98,99,92,99,114,122,107,92,107,110,107,110,96,104,110,112,111,118,117,101,106,120,103,109,107,122,109,105,111,103,91,104,102,114,107,113,106,102,121,115,117,96,107,111,107,102,108,97,113,104,107,109,101,110,92,99,113,106,102,105,103,103,115,96,118,104,99,98,114,111,97,108,110,103,100,111,102,110,109,112,136,113,100,105,99,101,98,105,95,106,113,107,101,110,102,116,95,99,104,77,93,110,103,104,99,102,101,103,105,98,112,104,91,102,97,96,96,103,110,85,109,98,113,105,96,103,94,110,107,113,97,117,98,88,96,101,96,110,107,91,101,106,104,110,114,95,109,110,105,102,95,76,100,116,108,105,112,114,102,113,100,103,105,113,108,108,99,104,98,91,99,105,91,103,100,99,111,105,109,103,80,110,104,103,103,92,99,117,83,104,99,99,98,103,92,92,103,110,100,113,110,102,87,104,116,103,104,108,104,96,114,101,98,94,111,107,105,108,104,109,90,97,109,107,113,94,106,90,100,106,96,98,98,117,99,102,97,115,114,97,109,101,105,103,96,95,103,102,106,100,103,112,102,106,111,106,102,108,100,90,102,98,102,100,102,107,103,98,112,107,113,103,111,105,109,87,105,114,91,97,106,94,105,131,100,106,107,96,102,113,89,93,112,103,107,106,101,112,115,72,106,103,103,103,95,101,100,90,96,103,102,99,119,113,102,103,100,99,98,93,101,101,97,102,91,99,102,99,106,106,105,104,105,110,105,72,99,101,96,94,98,96,89,111,102,100,95,106,101,103,119,98,94,101,112,97,104,105,117,100,106,104,104,100,106,103,100,94,99,104,90,129,102,112,103,112,92,113,99,105,106,86,99,93,109,96,109,94,104,130,102,103,106,89,98,98,107,100,89,111,92,95,102,102,97,97,95,98,124,113,101,110,115,114,103,102,114,88,107,101,127,101,108,106,102,87,102,101,101,101,111,100,106,76,100,100,108,95,91,111,101,101,98,108,98,100,88,96,99,101,104,95,109,121,102,115,95,101,100,94,94,102,95,91,108,95,119,102,107,112,88,99,102,103,103,106,98,102,98,107,104,91,102,102,109,105,102,105,108,87,104,98,96,98,102,110,95,103,107,95,94,103,87,87,104,91,106,98,102,105,96,95,102,106,100,98,88,100,106,110,89,98,117,96,100,95,101,94,111,105,114,102,91,102,112,98,105,99,94,99,71,106,110,94,105,102,101,88,104,90,98,107,110,101,103,103,103,105,110,106,97,105,106,103,107,102,96,98,102,101,98,113,108,98,99,109,100,90,89,96,104,105,106,95,94,109,121,115,103,105,100,113,102,103,110,103,107,106,95,102,104,101,94,115,99,102,111,111,116,106,92,107,102,114,93,101,105,100,90,112,107,97,97,102,89,88,87,99,96,115,99,105,103,90,105,95,97,101,100,72,98,99,87,94,106,105,113,91,99,105,112,88,106,107,100,107,97,100,110,107,95,92,98,105,98,112,106,101,100,97,105,109,95,109,95,90,113,105,115,100,100,96,92,94,101,99,109,93,113,99,105,92,104,103,110,112,116,87,103,106,104,94,104,106,110,97,96,102,105,93,106,97,92,85,113,102,92,106,106,99,94,81,91,90,98,82,115,97,97,90,96,93,79,107,91,92,102,111,104,101,90,100,110,116,101,110,119,96,100,88,98,86,104,97,96,91,116,101,101,111,105,100,88,102,97,101,87,98,95,108,75,100,101,94,89,103,91,110,91,92,122,102,97,101,97,114,100,112,104,97,95,102,102,99,96,89,96,106,100,96,104,105,95,96,106,108,107,104,107,103,97,92,96,95,100,93,99,91,108,101,103,109,96,105,97,92,111,87,98,93,92,114,107,113,111,103,98,92,106,93,94,80,112,100,94,89,109,127,102,103,117,99,103,93,106,88,98,91,94,102,112,108,107,98,103,102,91,84,93,93,99,102,93,107,110,117,94,94,111,98,113,91,96,103,92,98,103,112,87,98,94,89,94,109,100,107,102,110,96,93,82,103,94,93,80, +662.26593,134,105,111,93,99,106,124,106,100,111,115,104,100,106,106,94,94,102,100,92,100,117,103,115,95,107,92,106,90,100,108,123,112,102,114,116,101,92,88,103,102,96,89,86,111,110,106,106,107,108,110,109,106,101,100,92,87,103,112,93,113,111,99,92,112,110,101,100,91,93,105,99,101,118,100,113,102,100,95,99,101,99,97,102,95,100,104,101,95,101,108,110,112,119,72,106,100,97,101,101,100,108,99,97,103,100,96,98,100,91,116,106,103,105,93,108,103,122,100,98,86,91,102,87,100,105,103,98,113,108,102,99,99,98,95,91,103,106,96,106,104,113,101,99,108,102,110,101,100,102,95,136,108,103,96,95,109,100,103,106,94,109,96,99,103,108,111,91,109,89,101,90,94,113,96,104,108,105,108,103,84,116,101,107,104,99,97,98,100,96,99,106,105,110,102,99,104,108,94,106,100,98,88,100,96,115,100,102,104,107,102,106,107,95,106,95,99,98,97,110,94,106,102,103,101,104,106,105,99,105,87,92,102,103,98,104,98,114,100,104,97,95,100,108,100,98,99,105,101,120,100,99,107,112,108,105,123,104,99,107,103,103,95,112,108,93,106,97,92,102,122,105,102,107,112,113,78,94,103,105,102,113,99,109,99,104,97,95,98,101,105,101,107,110,109,110,107,109,111,99,109,107,100,104,110,107,108,98,107,112,109,100,90,102,97,113,101,100,100,96,103,102,97,115,100,117,103,90,115,107,96,99,112,108,96,101,128,104,101,97,115,106,108,98,107,91,100,111,94,96,98,111,105,102,104,116,104,117,110,91,107,100,90,124,100,108,100,91,100,102,103,85,119,110,104,92,116,103,96,104,111,97,92,117,103,116,102,101,109,100,111,100,91,114,106,111,99,99,99,98,85,103,103,105,90,99,100,102,104,111,103,105,105,103,103,108,93,89,100,96,103,97,130,98,100,107,95,107,105,113,103,112,98,119,83,106,97,102,101,87,107,94,109,118,98,114,108,91,95,100,102,102,112,106,104,104,108,116,107,102,108,61,97,112,105,88,102,116,101,95,96,116,108,107,95,100,96,104,115,103,98,105,110,108,107,101,103,104,114,98,108,92,106,106,99,106,96,100,90,104,116,82,108,98,100,102,102,101,103,105,104,109,113,104,107,87,103,104,107,109,98,104,99,108,93,95,90,102,106,108,102,111,108,103,92,104,102,103,107,112,94,106,99,108,101,116,99,102,98,113,98,121,117,109,100,107,118,109,95,100,111,111,94,103,100,99,103,113,101,95,100,97,108,87,100,114,114,98,101,104,106,101,85,103,108,107,99,107,106,97,111,104,93,103,111,113,105,104,108,110,110,95,110,100,91,102,105,107,109,121,104,108,109,103,110,97,98,103,101,83,108,98,97,102,102,105,101,111,102,101,93,94,104,107,102,103,97,104,102,109,105,105,117,92,95,105,95,97,100,108,100,105,107,105,102,84,109,106,95,103,100,101,116,98,106,94,100,95,87,90,106,100,106,100,98,91,104,107,105,112,100,109,110,92,87,100,108,107,114,114,100,100,102,117,103,110,102,94,107,90,103,102,106,104,106,106,100,110,101,87,100,99,104,101,101,93,109,106,102,97,104,114,113,106,104,103,99,102,106,111,107,105,94,100,103,112,97,90,106,101,93,95,113,108,104,104,109,99,75,109,112,114,106,98,102,114,106,110,140,100,95,105,100,90,87,96,94,99,95,106,109,112,101,105,107,104,114,104,112,117,100,101,115,97,104,114,92,102,92,108,99,102,108,102,100,112,96,104,104,99,105,101,75,95,103,94,95,104,99,103,107,108,98,106,103,104,99,109,114,99,102,108,109,109,105,110,109,105,106,101,109,100,105,118,98,99,105,103,107,108,106,99,108,94,94,107,88,98,101,102,96,97,97,110,95,106,99,104,94,109,98,104,102,104,94,108,103,116,99,86,102,111,85,111,101,106,109,102,106,107,113,111,94,112,95,105,101,112,106,105,111,120,100,111,99,100,96,104,109,97,107,98,110,97,112,99,96,100,99,106,103,95,105,106,109,98,107,107,113,94,121,109,110,96,99,103,100,102,99,104,102,105,101,101,95,91,93,87,94,99,95,108,102,102,104,104,105,109,94,119,103,110,110,106,95,80,104,105,113,107,105,101,109,98,114,105,99,102,107,106,89,100,104,109,112,102,97,104,98,102,108,100,100,104,98,114,96,100,106,102,107,94,123,95,105,105,102,94,101,93,103,106,91,102,108,103,104,104,111,103,99,101,103,97,91,103,113,91,104,109,101,108,109,112,106,107,108,113,95,95,67,108,97,103,96,103,118,94,106,104,111,106,103,90,96,107,123,100,108,103,119,111,110,96,107,96,103,113,101,95,95,101,103,112,101,105,111,104,92,95,103,112,118,113,100,103,113,101,116,112,102,101,121,107,105,106,106,95,116,96,117,102,99,96,102,105,102,114,100,113,102,108,109,106,101,104,113,92,101,107,82,111,121,99,97,98,92,109,108,107,109,103,71,106,110,106,111,106,108,106,98,109,109,107,112,112,97,109,102,90,103,101,105,107,100,108,109,98,105,90,102,91,99,95,109,107,89,98,103,103,104,91,92,99,84,102,105,90,108,90,103,106,92,103,110,102,106,109,98,98,110,109,106,103,91,107,107,113,101,105,106,99,107,101,98,105,117,96,91,110,103,101,121,108,98,108,103,101,97,101,97,105,98,110,105,106,116,106,100,105,96,97,112,92,98,107,103,105,109,99,102,107,102,110,104,104,84,115,123,109,111,111,106,105,113,113,108,100,106,103,102,101,107,103,99,94,101,104,103,105,109,106,104,92,109,98,98,109,94,96,110,95,103,104,106,100,111,114,104,98,105,109,103,101,112,104,102,111,106,103,108,112,97,116,108,100,112,108,104,109,106,108,95,102,98,99,104,106,104,122,101,107,106,110,112,106,99,98,121,101,107,99,101,98,112,113,103,113,87,110,101,92,90,100,112,112,120,95,103,115,109,106,106,106,105,98,80,103,100,111,104,109,101,85,105,103,104,98,99,106,117,108,98,94,106,99,109,94,101,94,95,106,89,107,139,89,99,94,102,96,97,92,113,99,121,105,103,109,107,105,100,87,101,105,101,115,117,95,108,123,101,102,95,104,99,108,96,106,117,106,102,108,105,107,109,99,93,95,109,97,106,111,106,114,103,105,126,93,109,102,109,107,105,102,102,112,94,106,100,121,104,102,112,106,95,107,113,112,108,110,103,98,102,94,113,109,103,104,114,94,104,101,104,107,103,109,87,105,104,94,95,102,92,98,102,95,105,103,111,100,100,101,103,91,92,88,105,110,107,115,115,105,113,96,106,104,100,112,106,101,102,109,102,104,100,114,110,117,109,105,100,103,91,101,107,84,109,97,99,111,119,109,115,92,107,110,100,92,99,102,99,104,104,95,95,109,111,97,99,104,91,104,109,115,95,93,103,107,98,102,108,110,108,95,100,109,112,104,100,102,88,116,111,114,114,103,109,113,110,106,105,102,94,111,111,105,100,107,97,100,109,96,93,111,116,95,109,103,104,99,97,105,111,100,104,106,98,115,97,109,99,106,115,97,105,96,112,80,96,73,103,99,99,102,99,105,95,117,105,104,111,90,88,107,97,98,102,106,99,115,104,101,100,102,108,100,103,106,107,102,112,98,91,108,112,120,98,124,104,86,97,111,95,93,97,101,101,99,106,99,101,98,91,101,106,103,98,106,109,101,99,99,103,108,102,102,101,78,109,105,104,102,107,96,102,98,105,113,93,101,88,109,92,102,122,104,103,98,104,109,98,98,97,103,104,93,101,91,109,104,111,85,95,104,104,80,105,108,90,99,84,91,109,108,106,101,90,94,96,87,94,94,112,97,111,116,94,99,110,95,105,99,109,112,101,92,89,96,102,96,103,102,96,100,104,112,101,106,106,110,104,96,101,117,111,100,106,121,113,101,112,109,99,99,98,112,105,92,103,108,120,113,98,99,106,109,110,98,102,98,91,108,102,112,98,98,102,99,94,107,110,100,99,109,99,98,106,101,95,100,101,91,96,101,98,107,97,105,91,91,100,100,98,106,75,101,99,109,117,101,102,93,105,96,102,96,97,95,102,96,102,103,100,110,107,100,101,112,108,99,100,116,101,110,110,113,110,97,104,93,106,108,100,117,98,91,108,106,95,107,97,95,100,104,109,83,97,107,101,103,106,95,114,100,100,97,120,99,101,92,113,101,89,95,97,104,95,111,100,108,107,98,100,108,112,104,78,111,97,105,115,102,103,99,90,93,99,110,108,103,105,108,114,113,97,104,113,113,116,104,99,115,106,109,104,69,106,104,103,86,105,91,96,86,99,109,91,93,97,92,111,85,104,105,115,97,91,102,108,95,106,109,111,109,97,98,98,97,101,96,106,102,111,97,108,103,92,96,108,104,98,98,103,97,91,97,107,97,103,98,100,91,94,103,113,107,102,117,98,103,104,106,97,101,99,103,104,95,126,95,98,99,115,99,104,103,99,114,106,102,108,92,112,101,102,104,105,109,102,108,103,103,98,103,109,111,111,118,111,102,100,110,115,109,110,103,107,99,102,104,94,109,97,110,105,100,106,105,103,88,94,103,102,109,101,102,109,115,100,99,95,103,99,103,103,94,98,95,78,89,98,100,102,103,91,101,85,99,111,106,97,102,70,101,104,118,98,105,113,90,96,101,95,124,111,96,116,110,91,92,118,120,104,100,123,101,105,101,101,111,104,106,97,94,98,110,94,72,82,78,108,100,101,87,104,78,96,104,113,109,101,101,102,109,98,95,105,116,98,94,110,95,98,87,110,112,105,109,91,95, +662.40717,134,93,79,98,89,96,108,108,97,105,99,114,88,98,101,75,94,107,108,96,100,101,98,99,86,117,108,110,127,81,113,96,99,93,102,100,101,92,104,81,100,89,117,92,112,94,101,106,119,103,97,110,88,103,106,105,109,102,97,94,94,111,95,108,102,107,118,108,103,107,105,110,110,103,100,98,103,93,119,92,96,101,101,99,105,99,90,105,125,102,107,100,97,101,102,102,114,91,88,95,109,99,108,108,108,105,100,102,94,97,93,94,88,101,103,110,100,95,98,99,102,98,113,81,98,103,103,94,90,100,102,103,92,99,110,103,85,103,87,90,95,94,107,105,98,95,107,103,89,96,105,103,96,96,101,100,95,99,108,112,97,100,106,91,107,97,93,94,114,97,112,103,109,102,114,108,106,92,107,120,90,91,98,109,99,91,87,90,96,104,100,101,114,98,103,96,116,95,98,98,98,105,96,104,99,101,104,108,105,107,90,99,111,112,97,116,100,108,95,108,106,105,96,105,102,109,99,103,101,104,90,93,113,99,94,117,105,111,105,97,90,100,95,101,83,103,97,91,100,106,98,101,101,115,108,98,99,107,96,97,102,98,95,103,99,104,109,115,89,105,111,91,111,86,105,99,96,87,117,98,106,107,102,97,109,103,99,103,106,105,101,102,108,91,101,100,95,104,104,96,103,103,101,112,96,111,110,105,101,98,101,110,109,102,101,92,104,107,104,92,108,116,100,102,98,104,105,100,105,109,100,91,111,99,123,89,99,111,90,105,95,112,115,91,92,106,102,105,113,106,98,98,107,93,109,105,105,98,106,75,102,97,98,92,93,101,105,104,102,101,95,108,104,101,112,100,111,97,101,107,106,99,107,114,100,100,100,103,83,91,105,99,95,105,99,94,67,91,113,103,94,89,76,96,102,111,95,107,105,100,105,94,105,107,99,95,94,108,105,97,103,110,95,91,103,99,97,92,100,101,101,97,100,100,102,104,106,96,98,101,99,114,100,127,106,95,104,106,106,118,96,100,94,112,100,95,101,107,108,96,98,100,97,107,96,105,101,99,107,106,101,100,98,106,101,101,117,102,121,108,98,95,114,96,110,109,109,97,101,82,111,95,104,126,97,95,102,101,93,111,108,97,98,94,105,93,101,95,98,107,106,104,75,96,119,110,94,92,91,98,94,110,111,100,107,78,91,92,112,113,100,105,91,97,92,114,105,98,117,99,101,107,101,94,103,105,95,96,101,105,119,97,107,94,96,102,118,104,105,100,100,106,101,101,100,119,106,71,98,101,98,91,100,101,90,107,109,93,100,116,95,100,92,97,97,111,106,109,109,96,108,105,101,116,104,106,105,102,101,96,98,93,101,98,105,97,98,107,98,102,104,91,98,108,103,90,99,91,107,101,94,106,108,95,102,85,79,102,108,101,88,99,90,103,109,101,106,109,109,101,113,104,104,93,101,99,95,102,95,90,105,104,109,109,95,104,116,96,92,104,102,113,106,111,98,86,116,106,109,107,113,106,97,99,96,97,100,104,115,101,86,105,110,94,103,114,109,101,89,105,102,99,88,97,104,96,100,86,106,95,92,92,99,87,106,107,102,107,104,90,105,105,105,110,95,95,93,102,104,93,91,93,108,104,104,89,102,95,111,109,104,112,98,106,101,106,99,97,103,105,105,100,96,101,113,92,99,98,95,114,108,92,107,97,104,72,110,95,89,103,96,103,90,121,99,98,96,101,111,87,104,96,102,100,89,109,108,105,102,103,101,109,97,101,97,98,90,102,104,108,99,115,98,112,104,121,100,99,103,101,93,97,106,105,105,108,95,103,96,99,113,101,103,98,108,111,103,95,108,87,108,99,106,96,108,99,94,105,111,111,103,96,96,98,104,96,94,103,97,93,94,104,105,90,99,95,105,113,95,104,107,92,114,89,100,107,95,98,106,115,107,109,98,97,112,98,98,101,98,108,111,111,101,116,99,100,119,108,105,108,112,106,107,107,105,103,104,109,93,96,105,108,105,104,110,104,112,95,91,99,96,107,97,108,94,101,108,97,102,105,110,103,100,96,100,95,101,122,99,95,108,107,113,104,102,90,100,108,105,104,95,105,100,109,107,94,103,103,104,99,104,103,96,98,105,92,104,102,110,94,97,98,95,98,106,114,116,98,102,95,101,101,101,95,109,101,100,91,101,100,100,106,107,107,118,94,102,84,102,109,91,102,100,100,103,114,106,95,102,106,104,95,109,84,98,91,102,111,101,101,121,91,105,96,103,102,108,103,95,99,109,94,97,105,100,99,106,102,116,104,94,107,104,97,100,95,110,73,111,105,108,98,105,93,117,105,104,96,106,82,95,102,104,113,96,102,107,105,111,117,106,103,98,110,106,110,98,88,91,98,97,92,111,111,91,90,109,105,101,91,86,111,108,79,105,109,104,94,97,114,98,90,102,124,104,110,100,96,98,108,89,110,101,104,102,131,98,110,109,105,113,98,105,113,106,112,110,112,115,105,106,112,98,103,108,96,103,104,105,101,80,97,99,105,111,112,104,109,103,100,113,98,108,104,102,102,95,109,116,99,100,102,104,102,96,104,111,96,120,93,108,113,111,95,108,90,101,91,94,109,105,111,101,90,109,116,107,103,109,90,113,90,117,100,86,101,118,112,110,103,102,96,91,102,101,118,100,106,106,108,120,94,94,95,102,106,105,93,91,108,113,92,107,108,107,107,99,112,98,95,99,110,94,100,113,108,109,99,96,108,107,104,99,98,106,111,100,104,115,109,102,111,91,101,96,95,103,103,110,99,118,98,104,96,103,94,105,103,139,119,108,103,103,109,92,67,104,111,95,115,97,109,117,103,104,118,108,114,115,103,97,96,103,109,121,98,104,105,108,110,107,117,110,106,106,120,105,101,111,103,103,106,102,99,107,110,100,111,110,101,110,108,109,131,98,91,103,110,101,113,105,94,103,97,108,107,99,102,105,102,100,97,100,105,96,97,116,113,100,110,93,95,99,109,107,102,99,103,101,107,106,112,107,105,116,110,107,99,109,101,112,102,83,99,104,95,103,99,87,94,107,102,104,102,108,102,106,122,109,113,104,118,100,105,108,112,107,106,109,108,103,81,105,103,116,96,108,102,106,108,102,100,99,95,99,105,107,101,105,101,100,92,107,112,99,98,100,102,111,115,98,72,102,101,99,103,96,109,106,110,102,105,100,109,97,102,89,105,110,103,100,108,106,112,112,113,92,131,98,88,103,104,107,95,109,109,98,108,108,91,109,113,106,98,104,104,106,95,108,102,103,100,92,108,92,103,109,102,97,96,109,113,112,87,106,106,99,120,111,110,102,97,94,107,94,97,102,105,107,95,125,106,103,107,104,112,107,123,110,102,90,102,108,107,119,96,110,106,101,107,107,107,106,102,100,104,109,103,103,112,101,103,99,99,116,92,106,93,94,91,107,101,102,103,104,98,107,97,113,97,100,102,102,103,117,109,105,108,101,94,112,96,96,108,102,104,107,104,112,117,92,91,107,101,109,106,101,94,103,115,98,103,117,102,112,108,94,107,102,102,113,105,87,98,122,98,102,108,91,105,80,98,111,104,105,111,94,105,106,108,107,99,102,97,112,95,103,97,112,106,110,105,105,111,111,106,103,105,104,99,106,108,97,100,104,114,104,106,109,109,108,82,89,114,103,98,116,110,107,92,104,109,108,100,102,101,106,104,111,120,91,102,102,104,102,102,104,94,107,107,102,98,98,98,91,94,100,94,109,106,103,107,101,103,106,89,97,102,88,97,102,104,119,110,114,108,104,91,87,116,87,111,98,105,96,99,97,107,107,87,102,101,99,112,103,106,106,98,106,95,100,103,104,101,105,111,93,104,108,105,98,128,100,95,102,104,103,96,99,107,104,100,106,91,98,116,91,103,104,111,108,113,102,105,112,101,94,99,98,89,100,123,105,101,107,111,108,104,89,111,111,94,97,105,106,104,98,106,105,99,100,91,102,113,103,105,117,99,112,101,120,106,109,103,117,132,113,110,104,106,103,94,98,97,102,107,103,123,96,106,103,105,101,100,110,116,88,112,102,99,106,109,113,100,102,111,101,107,97,109,103,98,109,117,112,108,104,106,95,101,97,94,104,99,109,99,106,97,92,101,115,91,100,116,91,109,109,107,106,105,121,114,96,96,106,102,91,108,110,117,103,107,98,98,105,100,95,102,109,101,101,101,109,97,103,102,91,110,91,100,97,87,109,115,108,103,102,97,100,107,95,102,108,99,100,100,103,96,107,106,102,110,86,101,107,105,102,103,96,112,99,117,108,107,105,94,101,106,100,103,102,102,117,102,100,108,104,114,102,99,120,98,114,103,110,109,97,102,98,94,97,98,100,106,94,112,97,104,100,105,101,94,105,102,103,110,106,98,99,106,112,110,99,104,103,113,99,99,108,102,83,96,113,97,109,101,93,85,101,113,102,102,111,106,103,108,114,106,101,100,100,102,108,101,105,105,96,103,105,110,97,101,95,108,100,109,97,103,113,111,98,102,101,113,108,93,107,114,113,103,96,104,101,120,110,101,112,106,104,110,105,107,94,100,108,103,102,102,99,98,99,104,109,109,108,101,112,107,106,110,85,116,99,71,89,95,106,93,109,103,102,94,99,106,110,102,94,110,94,109,109,91,100,102,105,107,98,104,98,107,101,102,79,109,104,101,104,107,95,106,99,104,105,100,95,104,99,115,106,106,104,105,109,102,106,114,120,103,103,95,96,95,103,120,99,93,91,97,101,102,112,100,107,110,98,109,121,103,100,122,101,115,105,104,69,116,115,131,117,100,100,96,95,97,91,103,90,106,107,94,94,116,90,102,98,108,93,95,125,102, +662.5484,91,107,108,101,92,102,109,89,94,95,99,105,99,94,105,95,94,95,101,115,110,105,95,96,96,108,99,98,110,102,95,103,103,99,106,110,99,95,125,112,86,98,111,97,101,102,97,110,85,98,101,104,102,104,99,98,103,88,98,108,116,104,100,103,103,111,104,105,92,100,109,103,104,95,113,109,91,94,101,111,112,105,95,93,117,83,101,91,105,104,106,103,102,108,101,102,101,88,100,100,91,126,95,97,98,102,95,115,105,96,110,97,95,100,107,95,87,109,105,99,94,95,95,109,105,120,84,82,104,103,98,100,103,99,100,105,100,101,98,94,106,97,96,100,101,97,109,96,106,86,104,102,99,84,86,100,103,110,100,102,111,108,111,92,84,87,104,103,100,91,105,99,95,123,107,101,91,100,122,116,103,102,112,83,106,109,99,86,113,94,100,83,93,102,103,112,105,98,102,106,105,107,101,106,98,104,97,114,114,109,102,101,95,104,111,104,92,106,92,114,98,95,106,92,100,110,101,104,73,105,96,102,99,84,98,86,103,103,98,102,97,104,106,102,94,104,104,108,108,111,107,100,108,110,109,97,96,102,80,105,99,103,113,98,110,104,95,120,98,102,97,101,103,101,110,104,110,105,96,92,102,112,104,108,104,98,96,109,106,99,92,97,104,105,105,102,108,144,116,107,84,97,102,121,98,104,105,102,104,107,101,111,122,106,96,104,117,106,107,111,103,102,92,100,105,108,120,87,104,116,119,104,114,114,93,104,102,90,100,91,108,121,102,95,96,104,95,113,111,95,102,111,107,103,90,95,102,117,106,111,104,106,101,103,110,91,106,96,99,102,109,104,112,104,103,99,98,84,106,114,109,108,90,100,100,105,114,116,100,94,104,70,101,105,109,99,109,101,109,115,112,104,103,96,106,96,94,111,102,103,104,116,116,109,92,103,117,108,103,95,100,109,105,103,94,101,105,101,105,103,109,111,102,103,104,109,101,110,97,109,112,110,96,99,86,99,107,100,95,107,102,102,93,107,115,102,98,99,103,102,95,104,103,111,109,106,90,106,103,103,98,115,99,99,112,102,102,119,107,99,98,111,106,99,108,100,96,98,91,102,114,109,106,102,93,129,71,106,99,122,101,119,105,106,102,110,97,103,107,111,110,108,99,113,104,103,96,99,104,96,94,107,103,93,99,75,101,94,98,94,94,95,94,113,105,103,105,101,84,106,105,103,96,105,99,98,101,114,99,88,113,103,95,77,113,96,93,108,101,111,101,104,97,115,101,108,101,108,108,92,97,113,99,108,101,113,115,111,105,110,117,108,100,101,106,100,91,97,109,109,111,110,112,104,85,116,107,105,110,106,110,113,117,107,100,97,92,101,108,105,99,110,105,111,107,101,111,96,108,101,82,98,104,106,110,104,108,108,102,103,113,103,105,105,103,105,109,98,103,111,104,112,121,102,108,92,116,105,94,101,113,104,92,95,107,99,103,94,87,103,109,108,111,102,102,98,107,100,116,97,99,103,99,102,94,105,101,115,103,106,105,104,114,85,96,95,106,105,111,110,97,98,98,97,95,102,106,82,112,99,124,86,101,98,94,97,99,106,109,100,102,116,98,109,109,112,119,106,110,87,90,97,96,98,103,109,104,103,101,108,107,100,106,95,87,97,111,91,107,100,104,95,104,102,130,99,99,99,103,93,99,94,107,103,114,106,98,109,107,102,91,99,93,91,99,99,101,105,97,81,97,91,100,93,88,106,90,98,91,105,98,103,116,96,102,102,91,102,103,113,104,110,101,110,105,106,99,106,101,113,96,99,99,113,116,122,101,102,112,100,108,98,79,94,104,106,108,104,110,101,94,106,101,111,105,89,105,99,106,101,109,101,104,102,106,104,105,93,113,95,98,103,102,106,99,108,102,93,99,98,94,97,100,97,99,105,105,101,106,92,98,106,109,114,94,99,104,110,111,106,101,103,120,103,99,110,107,118,99,100,109,96,103,102,105,95,104,118,99,96,96,105,107,108,89,111,106,114,108,103,103,115,111,92,95,81,98,98,96,105,99,79,112,102,96,97,89,100,100,103,104,107,107,105,100,115,107,110,100,99,113,91,113,108,104,95,96,105,114,97,99,94,102,98,102,97,104,117,102,101,101,102,107,122,103,107,97,100,96,101,76,104,101,93,105,84,96,103,97,106,93,121,110,104,101,98,100,95,106,101,106,113,91,109,99,110,110,94,102,110,101,91,108,108,100,100,102,87,99,104,100,113,93,102,109,93,91,110,100,92,104,101,96,79,101,128,76,99,105,109,76,98,116,126,106,97,115,92,100,92,88,101,108,105,99,99,102,102,106,103,108,94,79,95,99,112,117,98,110,108,111,107,98,111,103,119,108,76,95,95,105,108,92,94,104,97,104,106,94,96,88,103,99,103,114,104,109,100,102,91,106,105,105,113,105,95,84,100,99,94,85,111,96,101,94,99,105,107,106,102,114,102,96,107,108,103,97,106,126,104,100,109,102,93,108,104,105,88,106,111,101,101,100,109,106,106,97,110,106,114,109,112,101,101,100,96,104,113,106,89,101,100,104,100,107,88,109,98,89,102,94,91,104,111,104,101,107,112,92,105,98,96,105,88,88,110,101,100,117,108,108,102,106,112,90,97,107,90,110,102,106,113,103,112,99,105,108,121,105,92,110,112,104,112,98,119,105,94,95,110,112,103,109,107,95,87,105,107,107,104,100,109,105,84,116,91,91,102,109,104,110,115,96,97,98,105,104,111,105,96,118,104,95,108,102,98,96,98,106,108,106,105,103,97,97,98,102,102,103,113,110,100,96,108,103,97,108,118,107,97,97,100,106,102,112,95,105,105,112,105,95,119,101,102,99,105,113,108,98,103,104,98,112,100,103,96,95,109,109,99,102,115,96,85,99,95,115,95,99,106,121,99,107,109,94,103,102,111,109,97,100,112,102,96,104,110,104,98,120,99,100,88,98,99,102,98,100,105,98,95,70,113,85,106,94,115,88,92,116,91,104,79,109,111,100,91,120,115,110,93,107,112,105,91,104,88,107,95,102,102,109,107,117,105,106,99,111,105,103,109,115,103,110,116,99,88,96,94,105,105,103,102,117,105,97,108,116,104,105,101,110,102,103,108,116,102,116,108,98,106,107,103,100,98,104,102,105,107,117,104,106,106,116,96,98,100,126,109,113,99,106,108,106,91,105,105,101,72,105,102,102,117,112,98,110,102,98,114,101,88,106,91,110,111,112,116,110,99,104,95,93,109,102,98,109,105,101,106,99,94,102,99,106,113,93,94,99,104,95,98,103,106,117,105,98,114,81,112,101,109,87,118,101,100,98,112,101,111,97,94,109,104,102,105,102,122,106,100,102,108,98,92,102,103,101,108,103,97,104,109,110,105,95,111,105,98,105,111,96,117,102,112,94,109,101,100,106,101,88,105,111,106,99,96,100,100,101,108,107,105,103,101,108,98,108,95,111,113,103,113,115,107,102,95,98,104,94,117,109,101,74,108,104,111,88,108,97,108,107,108,101,80,102,96,110,93,101,108,111,99,101,113,107,105,95,104,105,101,109,100,92,111,77,105,98,106,106,102,92,108,97,113,109,104,107,110,98,90,102,98,101,104,105,124,88,92,96,97,101,110,131,98,98,108,100,114,102,110,74,78,99,99,109,110,91,105,100,105,108,117,96,102,103,107,103,92,74,101,91,105,104,101,111,111,111,109,108,100,104,100,101,98,104,93,95,108,116,102,102,100,105,97,100,102,121,103,100,111,105,100,109,103,108,101,110,102,97,101,111,115,98,105,105,98,107,107,103,94,98,101,102,87,104,105,103,100,92,98,97,99,109,99,91,106,111,96,104,104,102,101,92,104,97,111,110,99,108,93,109,95,101,106,107,89,93,100,98,97,102,111,104,103,88,94,89,112,115,105,99,101,104,102,110,103,99,95,85,102,99,106,106,105,108,109,86,113,94,110,108,115,104,97,103,100,105,103,113,97,105,106,100,97,102,97,95,94,102,99,117,91,99,95,107,99,93,82,113,103,97,96,100,106,108,105,95,106,101,112,103,113,108,99,110,97,95,104,92,108,92,111,109,106,91,99,99,100,91,102,94,101,113,104,93,128,109,105,103,92,102,102,102,101,109,95,112,102,99,95,90,120,106,96,107,111,103,98,111,100,103,95,91,95,110,113,113,91,94,114,97,112,93,114,118,107,97,106,103,101,108,100,98,91,110,99,105,103,92,120,101,98,101,103,103,88,103,92,108,97,110,107,98,110,103,114,107,98,100,101,91,112,106,102,108,101,98,104,107,110,104,104,107,96,111,108,91,107,101,98,110,95,93,109,99,101,98,97,118,105,116,101,92,103,105,96,103,105,99,108,103,93,101,106,98,112,102,92,92,106,94,107,78,96,90,104,104,105,76,84,116,94,106,106,97,95,98,88,90,98,79,118,112,90,86,101,107,91,101,89,104,98,102,111,100,93,97,101,106,101,105,105,94,96,100,100,81,104,106,88,104,99,106,108,97,92,107,94,97,100,95,111,100,105,103,107,117,94,77,108,102,106,109,104,109,104,104,108,120,100,94,110,106,117,110,97,98,100,104,93,102,106,98,98,92,119,93,102,107,104,100,105,98,85,106,96,96,94,105,113,84,96,100,97,99,108,104,90,113,106,95,102,113,91,102,101,100,88,100,99,106,99,103,102,102,112,91,95,101,93,102,105,101,100,100,127,97,113,96,104,104,106,87,89,91,109,72,116,93,104,92,94,99,106,99,105,106,99,98,107,96,95,83,105,102,94,87,92,94,110,90,116,104,111,97,97,98,111,101,100,86,105,117,92,90,113,110,99,96,93,107,92, +662.68964,116,87,84,109,105,121,88,86,93,101,106,77,114,99,97,104,102,103,97,105,107,107,103,100,123,98,84,94,99,101,70,113,103,93,104,99,105,105,99,94,97,110,104,90,106,107,92,102,101,94,94,109,94,116,122,106,89,113,100,103,108,131,90,100,94,91,92,107,86,102,98,99,106,95,109,108,103,124,118,98,108,103,102,111,108,94,99,93,99,111,108,102,100,98,100,92,86,104,98,97,82,93,94,97,114,118,105,113,109,107,102,115,99,102,102,106,109,88,97,101,102,88,102,109,102,108,121,102,108,102,102,117,104,103,99,103,103,105,86,104,96,99,100,105,92,106,110,96,109,111,96,106,106,97,102,108,112,104,117,105,103,98,91,102,103,99,92,99,106,87,106,108,103,97,106,100,101,87,109,101,100,110,100,99,102,92,89,101,106,90,92,129,94,103,104,99,99,117,106,107,98,101,108,100,111,107,100,91,106,119,101,109,106,111,113,106,101,105,100,91,100,103,93,96,102,106,103,100,104,108,108,101,96,100,102,108,98,102,104,109,96,99,71,107,101,111,98,97,102,109,101,104,104,87,107,108,109,104,113,96,93,99,93,99,96,106,86,103,97,100,105,98,99,118,105,109,96,109,105,101,105,83,99,105,110,87,90,108,100,107,109,100,111,98,106,102,93,105,112,98,106,96,95,112,102,105,109,92,104,71,107,104,98,108,103,109,94,107,100,98,96,102,105,98,106,102,112,95,117,108,95,87,101,100,103,100,104,103,108,101,104,109,101,117,121,99,85,99,104,95,104,87,96,109,103,94,101,104,95,102,95,117,106,95,103,97,101,104,100,88,113,118,106,105,91,106,107,95,107,101,99,120,101,116,105,111,103,91,96,94,99,102,106,106,97,102,89,100,104,104,92,99,99,88,95,107,94,97,104,109,93,86,104,101,95,107,91,98,113,106,94,71,106,115,101,98,96,107,99,106,99,106,104,106,103,98,97,104,98,111,106,103,93,98,98,95,98,73,109,111,100,104,96,106,90,92,106,87,92,106,99,107,111,96,95,104,96,83,117,100,98,105,106,105,112,102,109,113,109,131,102,115,93,126,101,105,98,115,100,109,96,110,97,107,97,99,100,109,108,91,111,100,100,104,85,110,101,113,100,93,98,99,96,107,98,108,94,93,103,104,78,106,105,101,102,100,109,96,80,101,60,102,99,104,94,105,91,98,91,99,102,108,105,100,105,87,103,105,107,111,104,107,104,87,113,100,94,101,80,105,103,88,95,110,100,111,99,104,102,91,104,99,104,107,92,114,103,94,110,99,99,98,91,103,109,98,112,101,103,112,91,104,97,96,105,109,105,100,106,95,100,101,107,95,94,95,88,98,102,99,100,103,99,106,99,105,103,101,110,100,102,101,97,106,99,107,99,105,100,103,95,116,101,112,93,93,104,93,94,96,109,101,94,108,90,101,96,103,109,107,102,99,98,102,106,98,104,115,107,108,105,94,113,98,119,89,105,93,98,89,111,115,91,107,101,100,98,105,103,96,110,100,102,90,115,106,105,95,108,104,94,90,105,91,103,106,104,109,87,96,111,108,105,105,109,105,104,88,101,100,112,104,106,106,106,105,99,108,106,91,113,98,108,111,99,103,96,104,92,112,111,104,104,102,105,113,101,108,94,86,99,99,104,102,101,109,109,104,86,101,108,94,101,103,100,103,91,109,107,106,100,103,91,101,90,98,90,109,99,110,97,107,104,111,106,103,99,103,101,99,105,104,108,99,100,100,99,95,106,91,94,95,101,100,112,104,97,88,110,96,97,90,61,89,118,101,105,95,108,99,109,107,108,94,107,95,111,98,91,100,120,107,107,98,106,109,113,103,104,94,106,89,103,96,106,79,103,92,108,106,96,103,116,91,99,101,108,95,98,101,110,87,101,120,99,96,108,107,112,99,103,98,102,100,103,95,98,108,110,113,97,114,101,127,95,105,99,97,103,102,103,96,104,109,98,98,100,97,120,97,100,104,102,106,105,101,106,103,98,103,96,107,87,105,105,103,99,101,92,103,99,106,111,112,102,99,88,92,101,103,108,98,99,116,96,89,95,97,105,95,112,99,98,103,98,100,99,96,96,101,98,104,109,107,108,118,95,114,99,114,112,103,111,111,103,103,104,95,112,90,104,103,107,101,110,103,100,105,102,103,90,94,98,100,97,104,92,118,109,113,95,95,100,102,104,111,99,98,105,110,87,96,106,108,98,98,103,104,95,101,110,101,96,87,101,104,117,115,91,105,94,108,121,100,71,90,104,100,96,92,113,103,104,90,104,132,84,97,114,109,110,99,112,101,102,93,65,115,104,103,102,104,108,99,91,97,103,109,113,99,83,110,103,91,101,99,94,119,100,96,108,107,100,105,94,105,89,99,104,106,101,102,93,69,108,114,94,97,88,105,99,97,95,99,115,94,89,105,106,104,93,103,100,100,102,102,114,107,106,107,106,79,108,102,84,107,70,82,99,96,105,104,103,103,87,92,105,109,98,102,107,119,97,99,117,103,106,110,83,98,121,96,105,102,92,105,92,99,105,95,112,92,95,100,101,105,104,96,109,99,104,106,113,107,106,113,102,102,110,108,96,98,102,97,104,102,117,100,105,100,103,99,112,102,105,97,110,95,97,95,98,110,105,96,107,105,121,97,85,114,110,110,108,121,96,110,103,80,102,111,106,99,107,98,98,106,109,93,101,101,96,101,101,113,96,94,100,87,109,103,113,103,109,87,112,98,107,109,99,97,91,102,82,113,111,96,99,112,94,101,86,115,110,101,112,107,100,108,112,111,100,95,82,103,100,107,104,103,118,103,102,98,92,97,99,100,105,97,94,105,105,106,112,102,101,96,102,96,106,108,102,103,106,102,113,109,102,102,104,67,105,105,62,106,104,98,103,117,106,100,109,95,100,115,84,102,105,104,102,91,101,117,91,101,101,106,98,104,108,105,105,99,104,102,103,113,100,113,113,103,98,107,115,94,104,93,93,122,90,96,103,96,98,109,95,97,102,99,110,95,117,98,89,101,99,98,95,101,107,106,104,102,101,99,106,113,117,96,103,95,104,105,109,109,102,104,112,106,92,99,101,92,94,113,95,111,96,108,100,99,95,99,108,103,98,117,104,92,112,105,92,105,94,104,102,105,93,105,97,98,91,104,102,109,109,97,98,114,112,140,97,105,100,95,100,96,112,105,106,133,95,97,93,108,104,95,111,105,100,94,109,102,80,99,94,95,98,114,100,102,106,102,113,98,110,109,98,95,105,101,89,113,101,103,100,106,99,98,113,107,103,92,103,85,108,114,106,111,103,98,107,96,100,88,113,108,104,109,105,106,83,96,99,104,105,107,105,102,86,85,102,120,109,92,95,104,105,93,104,101,101,94,98,98,103,117,105,80,91,104,108,105,117,102,100,94,112,110,105,93,101,100,109,94,105,117,98,98,101,114,97,105,96,105,101,101,100,102,104,100,102,97,109,96,105,92,96,104,109,94,104,105,113,105,110,109,99,92,116,109,108,95,98,95,108,104,87,101,113,87,99,101,99,107,101,101,102,106,101,107,72,110,93,91,93,100,92,108,110,99,109,98,105,95,117,105,107,95,112,112,95,99,112,103,100,111,99,107,108,92,104,103,107,100,92,104,99,111,98,106,101,100,108,100,99,103,99,105,111,97,102,104,115,94,97,97,106,105,107,96,103,108,94,109,99,115,106,104,111,99,99,73,95,100,106,103,120,82,98,94,84,97,91,106,101,95,94,105,104,93,114,105,110,103,104,106,71,97,102,106,91,106,93,102,118,107,99,96,109,107,100,111,96,97,102,85,101,98,101,99,95,90,109,106,108,96,105,105,95,109,98,108,94,87,113,109,93,97,103,106,104,94,92,106,102,117,103,110,89,109,115,93,94,95,104,105,95,90,86,92,96,112,101,112,92,90,96,98,102,100,108,95,121,108,99,90,99,103,121,113,104,113,114,94,98,107,95,109,99,120,101,100,103,94,106,108,98,108,106,101,104,105,98,97,102,94,95,106,97,108,113,109,98,108,99,101,98,105,104,100,95,110,103,102,101,99,100,116,93,103,91,92,91,99,109,99,80,95,97,102,105,112,107,91,98,111,97,91,100,102,99,101,103,96,101,76,104,100,108,100,100,104,102,109,104,96,102,111,103,113,91,117,110,100,89,105,106,101,114,99,129,108,103,100,97,100,99,95,110,114,109,96,103,99,95,102,104,102,93,123,87,110,109,96,121,105,87,125,107,113,88,112,113,117,123,103,103,94,100,95,100,90,96,104,106,101,99,107,109,104,96,104,115,102,112,101,102,113,94,106,105,110,101,104,113,113,92,107,120,95,109,97,111,99,88,101,96,101,97,102,99,92,98,109,101,98,92,100,107,98,109,104,104,106,116,98,100,95,103,92,101,101,102,98,105,105,100,100,101,113,90,88,101,95,98,99,93,106,74,97,95,100,113,101,109,109,99,98,98,94,107,104,115,106,98,105,105,106,113,99,106,115,107,101,108,112,91,88,104,79,108,96,106,100,118,100,104,91,96,106,109,106,99,100,104,136,80,97,108,100,97,120,94,118,97,104,112,100,96,93,100,101,101,118,110,99,98,113,91,101,115,87,92,103,118,99,101,115,100,87,109,107,102,99,111,111,99,92,107,97,102,106,107,101,104,116,103,89,112,124,99,105,110,104,108,101,101,109,109,108,89,109,106,109,109,105,110,108,105,96,91,94,101,94,110,119,103,100,103,99,93,100,96,117,109,96,97,104,104,103,91,100,74,122,90,104,96,98,103,93,122,116,106,95,94,110,100,100,96,88,102,94,92,98,114,117,103,101,98,110, +662.83081,100,91,99,90,86,100,97,112,107,98,102,94,107,110,100,68,106,111,114,112,94,98,102,99,106,101,103,116,105,103,104,98,103,99,108,102,98,95,100,90,88,118,101,102,106,91,97,113,88,101,111,79,107,101,104,108,90,95,113,89,107,102,108,94,101,105,94,87,102,91,90,110,100,109,110,103,93,104,94,90,99,103,102,88,99,98,99,100,79,108,87,103,115,94,92,95,95,100,97,96,90,113,99,107,101,94,100,94,98,95,110,110,102,107,116,100,122,108,108,88,98,101,117,98,80,108,102,95,110,104,120,97,90,103,105,101,120,111,94,110,96,106,105,102,116,96,103,102,110,109,78,83,101,97,101,108,97,103,99,102,98,101,101,106,104,107,99,91,116,113,106,108,100,93,100,97,104,105,104,107,106,108,104,102,110,91,108,88,115,99,100,117,109,100,95,101,101,102,103,101,115,100,101,102,101,105,96,103,102,100,94,112,103,102,105,100,106,102,98,92,100,127,93,94,89,105,106,98,102,92,105,106,99,98,103,109,97,101,100,102,111,100,112,105,101,107,93,106,97,103,114,120,91,118,106,99,106,91,99,100,81,107,107,108,90,110,104,101,86,106,100,103,98,101,102,106,109,102,87,100,96,99,112,106,105,103,102,106,109,103,112,94,96,107,119,102,95,106,109,110,91,110,100,105,68,103,95,109,94,95,96,102,97,104,91,90,110,104,107,105,105,99,101,95,100,102,107,99,108,107,103,105,104,114,98,100,101,90,116,102,99,95,95,100,105,94,97,108,102,108,94,98,121,91,109,107,112,103,108,96,98,98,84,94,101,102,81,116,86,102,104,105,99,105,84,124,109,113,98,91,102,104,94,116,100,86,95,93,101,98,117,99,97,104,96,95,95,88,108,98,102,98,91,91,94,97,101,112,104,108,100,104,105,109,104,99,99,105,138,108,102,97,106,98,93,93,100,97,97,96,91,106,95,103,109,105,92,109,105,106,113,110,103,100,94,104,93,101,109,103,91,104,105,99,102,94,104,95,108,99,108,113,104,103,100,105,98,99,97,104,103,94,101,106,99,94,103,108,98,95,99,104,104,102,97,98,101,102,95,97,111,100,115,107,96,105,95,93,99,101,102,107,109,106,117,109,102,95,128,110,108,101,100,96,130,106,99,105,101,99,119,105,102,103,95,104,103,112,108,106,93,101,101,99,100,112,100,95,99,106,95,103,108,108,100,102,88,98,106,109,113,102,100,99,105,112,101,99,103,105,108,104,94,104,112,110,117,104,101,94,108,98,120,109,100,99,102,101,101,100,106,108,110,99,87,114,118,87,105,83,109,91,95,101,106,101,114,90,100,107,92,96,101,106,90,97,83,102,105,107,96,113,116,108,99,91,97,101,111,102,108,99,102,112,101,95,96,86,99,114,99,96,106,111,100,106,100,98,101,117,96,114,106,105,102,106,110,109,110,108,108,95,99,98,100,101,108,114,112,98,107,106,99,101,101,95,93,89,109,107,133,116,109,113,103,114,104,104,103,95,99,120,117,99,84,98,109,102,106,108,106,100,103,102,110,119,101,93,105,90,113,97,106,95,93,108,103,110,93,105,105,95,126,109,94,94,109,99,102,106,100,95,99,114,96,100,104,94,109,107,95,99,95,98,98,91,100,91,109,104,92,97,99,107,105,100,118,104,102,118,116,100,101,112,100,111,103,108,125,88,105,99,95,96,93,85,93,97,105,100,104,101,108,95,113,102,115,117,108,112,119,105,96,98,101,114,98,105,113,112,106,126,112,105,117,106,94,110,100,107,106,96,87,99,109,108,102,108,93,100,104,98,95,95,90,96,113,119,107,103,89,113,110,105,94,97,104,97,103,103,99,88,107,87,106,107,109,91,112,102,107,110,103,91,100,105,111,110,84,92,118,90,94,110,105,108,103,113,99,103,108,90,108,100,101,96,102,105,110,84,98,103,103,105,95,100,106,92,110,104,113,101,106,109,97,102,103,100,114,97,95,108,95,99,98,89,105,97,102,113,80,103,96,101,110,100,104,103,100,98,106,106,110,95,108,103,95,112,102,113,98,104,120,109,108,81,87,112,107,107,97,109,102,100,97,110,82,106,109,110,94,99,102,104,100,99,103,106,92,103,107,72,104,113,110,92,105,111,95,102,101,108,100,113,103,95,89,97,101,100,109,102,100,108,101,117,102,100,105,104,103,106,107,100,95,101,95,100,99,110,111,95,101,109,109,91,88,107,108,108,109,95,103,104,90,112,108,106,95,100,96,108,102,114,103,97,95,100,96,99,78,114,96,99,90,103,98,117,113,100,99,105,104,109,94,107,103,96,111,114,98,109,109,103,96,97,113,117,103,115,111,113,101,102,110,76,94,108,108,104,99,92,103,100,106,97,102,106,110,94,82,118,91,97,95,94,116,94,87,93,116,94,104,103,99,98,97,108,113,94,111,101,106,93,104,95,103,102,103,98,121,83,97,105,102,101,96,101,95,103,85,106,99,71,98,95,101,105,84,106,109,106,95,107,109,100,96,102,114,92,94,110,116,83,96,99,103,100,95,109,97,99,106,113,109,98,95,97,101,102,105,107,115,111,95,101,106,98,108,107,113,90,89,104,103,109,91,109,101,91,102,107,109,98,102,108,108,103,112,100,102,102,98,120,102,98,114,106,106,120,100,108,116,110,86,96,103,100,101,104,119,100,103,104,104,105,109,104,91,104,101,112,101,104,96,105,107,112,110,103,116,112,100,103,106,110,104,101,111,106,95,107,105,112,111,93,98,100,101,112,113,113,118,91,93,96,111,102,94,93,103,93,110,106,101,104,99,105,101,108,106,111,99,97,106,115,106,108,100,101,108,104,100,111,102,123,104,89,88,103,104,111,106,102,118,107,93,102,98,114,115,102,95,107,104,100,97,118,101,87,99,103,99,107,99,100,112,86,103,92,95,112,93,103,104,93,101,112,97,96,112,111,107,106,107,96,102,95,107,103,96,88,100,105,121,100,106,90,100,105,96,108,106,76,102,111,116,100,113,108,91,98,98,87,100,93,107,91,100,98,97,104,104,95,113,99,104,102,105,107,106,128,116,101,106,96,92,95,112,107,100,94,97,104,116,98,101,113,116,102,105,113,90,92,110,99,113,102,102,118,95,106,100,103,102,116,97,96,110,114,95,104,102,106,102,103,106,105,107,99,114,104,95,102,97,103,104,104,86,109,101,108,114,109,112,92,105,101,108,106,108,103,100,113,100,124,93,103,108,93,97,97,114,98,101,108,106,103,106,108,89,94,95,110,112,107,109,101,91,105,88,96,107,95,97,111,111,117,105,93,106,108,98,103,103,107,96,98,102,108,104,96,103,102,91,106,115,113,109,94,93,102,89,99,104,100,109,110,105,116,103,101,106,96,103,122,103,101,102,107,102,101,101,100,126,109,95,100,97,99,95,99,108,94,113,117,121,109,110,98,104,110,89,94,101,105,96,102,99,100,115,99,112,112,103,108,105,102,91,100,102,105,96,105,111,107,105,99,106,120,95,86,125,109,98,103,106,99,105,100,108,96,92,99,112,96,105,95,99,92,102,105,104,105,98,110,108,97,113,103,104,104,112,109,115,111,105,92,103,99,90,99,99,105,99,106,117,97,99,101,97,81,101,116,89,103,101,100,101,104,100,89,109,110,100,107,115,114,99,98,96,99,109,98,106,103,105,108,104,101,96,93,95,92,117,95,109,111,102,106,86,93,109,107,101,105,115,72,110,107,98,102,115,110,93,98,111,102,98,121,126,93,108,101,102,110,93,101,100,102,103,103,104,99,105,103,98,99,106,96,101,119,109,105,110,103,95,118,110,101,96,99,91,102,105,92,107,102,102,102,101,83,104,104,104,95,100,93,104,102,99,106,101,107,109,98,102,105,106,107,103,102,96,113,105,97,92,102,94,92,96,94,87,98,101,100,96,101,106,108,107,100,98,102,107,97,91,104,115,100,103,117,104,107,105,98,96,92,105,99,110,98,96,112,106,115,110,95,102,105,105,96,102,102,121,110,99,103,95,101,109,112,87,111,97,100,106,108,96,100,106,92,107,101,98,101,105,96,87,103,94,110,101,111,109,97,86,105,104,99,111,103,103,84,95,103,108,129,99,102,118,94,105,104,106,104,93,112,99,122,74,109,101,103,75,103,93,110,97,116,108,112,112,87,93,99,106,109,104,93,106,115,108,101,108,105,115,107,98,107,107,103,111,107,104,106,115,102,108,104,107,104,95,92,102,106,103,102,94,102,107,109,113,92,120,94,109,113,98,107,112,108,98,100,96,107,102,99,108,111,106,111,104,108,100,102,109,106,105,96,97,111,112,108,109,95,98,109,110,93,92,87,108,88,104,107,103,104,106,105,101,105,92,105,91,110,89,115,103,121,107,114,99,109,85,102,107,92,103,84,106,91,103,98,111,106,100,103,106,104,97,96,108,113,107,111,102,102,98,104,80,97,119,93,110,101,108,125,95,122,96,115,117,101,99,106,106,110,100,107,103,101,120,105,98,101,98,100,102,113,93,106,99,115,107,105,101,96,116,94,101,109,83,102,105,108,105,103,98,106,116,89,113,110,106,98,110,85,105,100,106,91,103,98,97,100,103,96,108,99,97,97,102,102,95,100,97,119,103,102,113,93,114,83,98,97,99,111,100,81,92,98,87,104,112,112,117,122,107,108,123,100,98,95,97,94,106,96,101,106,104,99,105,108,100,110,113,107,104,92,91,111,101,96,110,99,95,105,111,111,108,103,95,100,110,101,108,109,107,108,109,98,103,122,71,107,110,91,105,106,91,106,103,91,109,104,112,99,98,96,102,93,99,113,110,95,109,112,103,91, +662.97205,103,124,102,79,100,100,86,90,104,93,98,97,95,103,104,102,114,108,101,97,105,100,92,106,100,105,101,102,100,96,94,105,112,91,102,103,97,99,91,94,108,94,114,98,110,108,94,105,93,103,101,103,109,94,90,102,105,97,90,100,98,103,98,101,91,103,105,112,114,89,114,112,94,116,105,114,111,87,103,102,94,109,106,92,118,94,96,100,97,112,98,99,110,86,93,107,111,105,127,108,77,108,95,95,113,98,109,100,89,105,107,104,112,97,102,106,105,97,112,97,106,94,110,100,110,93,96,107,101,98,114,112,91,93,109,104,92,80,94,103,123,103,90,112,105,97,111,95,97,101,109,103,111,99,83,101,99,110,96,103,99,99,104,86,100,104,102,104,98,101,98,95,96,96,94,98,105,96,120,100,97,106,107,111,107,98,107,81,99,97,105,112,103,100,94,101,109,115,118,100,87,97,110,99,97,112,93,104,106,104,92,112,101,116,96,102,97,100,99,104,113,108,99,93,110,101,100,99,105,107,98,100,94,109,107,103,87,109,107,95,118,107,103,105,112,105,98,108,99,103,96,94,106,107,112,102,104,98,92,99,99,104,99,99,93,106,102,105,101,85,112,106,95,91,100,104,110,113,103,93,97,108,107,97,111,95,94,109,118,103,100,109,111,114,99,102,107,115,94,102,113,73,95,102,98,103,108,91,101,113,99,99,107,110,76,96,78,100,102,91,106,99,100,103,90,110,94,100,105,106,97,92,108,97,100,117,110,97,99,96,102,92,103,93,104,108,108,104,105,104,113,112,115,95,104,99,105,98,100,106,73,108,94,63,105,96,100,117,97,101,101,101,103,112,112,99,101,68,95,119,100,109,105,103,92,93,108,105,98,97,108,95,105,106,116,97,95,95,106,105,93,95,92,90,96,85,63,101,107,96,105,90,102,120,100,96,96,87,107,106,90,116,102,99,111,97,95,80,104,102,97,106,90,101,100,91,101,106,91,101,101,103,103,106,86,96,97,95,103,105,89,113,106,103,118,97,102,83,105,115,100,100,109,99,100,110,101,109,110,101,115,96,103,89,110,95,99,105,105,100,111,111,105,99,107,97,103,95,114,115,107,98,103,125,105,109,102,88,102,96,104,126,93,107,111,103,101,105,105,99,110,108,105,104,110,95,93,84,92,102,97,105,113,108,107,105,96,105,103,112,101,109,108,94,110,101,111,107,97,123,109,106,116,117,112,100,104,100,111,93,95,104,109,105,99,85,115,91,109,96,115,109,93,110,109,103,113,105,91,103,97,87,103,108,109,105,103,97,107,112,116,94,103,97,96,106,110,103,105,94,97,98,104,98,113,113,100,99,98,112,99,120,105,99,102,105,103,114,105,97,95,97,104,110,101,104,108,84,121,97,102,103,95,86,96,96,99,108,98,108,101,111,97,102,108,100,99,105,103,110,112,108,106,106,102,93,117,96,104,111,94,113,111,102,106,113,87,120,91,95,116,106,95,111,96,96,85,95,97,96,107,104,103,124,91,106,102,100,112,106,109,101,109,91,101,102,116,95,101,99,91,106,95,95,92,107,103,103,109,101,109,98,97,104,100,112,110,125,101,106,102,91,103,101,102,103,109,90,98,104,97,97,111,108,100,107,105,105,121,103,112,118,89,111,104,104,92,91,109,110,111,100,106,101,108,101,121,101,98,100,110,102,105,96,107,113,113,96,96,113,102,100,92,101,93,93,101,104,104,98,101,96,99,97,103,103,96,112,104,103,96,102,110,108,110,105,107,97,105,111,118,99,96,103,94,95,96,113,98,94,97,102,96,111,97,108,100,103,111,92,105,95,98,98,97,103,104,113,108,106,94,108,107,115,98,111,105,89,94,87,103,92,117,89,94,107,112,109,119,106,102,104,106,100,96,108,110,92,93,117,106,91,104,94,100,106,102,113,107,111,112,102,98,105,93,96,106,90,113,108,97,101,101,101,88,101,104,97,107,94,96,102,105,103,101,106,94,109,106,100,98,105,99,107,125,100,103,117,106,109,117,105,112,100,107,100,106,115,101,97,100,106,105,98,98,80,98,105,102,84,101,106,108,118,105,107,105,76,99,109,106,108,102,103,87,95,96,101,110,108,98,94,99,121,103,105,117,94,108,107,94,119,108,112,100,101,102,81,94,102,118,103,111,103,94,92,94,88,115,111,103,114,102,113,95,99,93,102,92,100,85,100,106,95,106,104,89,106,107,126,111,106,95,106,101,95,120,102,103,88,95,108,102,99,112,103,124,105,69,101,86,103,96,103,101,97,114,105,105,110,116,104,83,113,93,101,105,95,95,98,114,93,110,100,94,108,102,93,111,99,110,114,98,113,112,103,100,115,99,113,100,121,111,99,112,117,86,96,101,113,95,96,94,92,102,100,100,91,95,94,105,106,99,90,110,106,102,104,102,108,105,111,93,116,98,101,91,101,106,114,91,101,113,105,98,101,104,93,106,113,109,103,115,95,104,101,103,97,105,106,93,105,115,112,104,113,96,109,101,90,116,83,108,104,113,105,105,102,95,102,112,110,104,114,93,100,108,100,100,104,107,104,95,114,108,124,102,105,112,100,103,107,113,100,124,100,91,102,106,103,94,94,102,92,102,106,101,103,109,110,97,91,99,110,111,100,117,118,110,108,106,117,101,105,121,115,97,115,113,110,98,98,102,108,102,105,100,97,95,104,98,100,115,90,102,117,97,96,103,96,98,108,92,91,105,109,113,110,108,104,116,101,98,104,103,113,105,105,111,103,92,109,116,96,116,93,104,96,95,107,101,100,99,95,103,113,99,102,96,109,109,120,107,108,95,90,102,104,92,113,99,102,93,108,107,102,96,99,89,115,115,94,99,103,101,109,106,109,101,110,102,112,110,113,104,104,102,106,113,105,107,105,100,99,99,107,88,94,102,97,112,115,110,98,101,102,104,106,99,104,97,108,103,95,104,102,103,106,102,105,111,81,98,103,112,98,109,100,93,111,98,108,93,116,102,95,108,92,98,117,100,98,116,105,104,114,103,100,102,112,98,109,96,105,96,95,104,103,104,87,106,106,81,105,113,101,109,110,100,104,99,100,105,113,114,101,91,103,109,104,101,112,91,97,96,94,98,102,103,99,100,97,106,108,106,116,103,94,104,119,109,104,105,113,98,96,106,92,104,105,106,99,103,119,88,99,98,103,113,97,107,92,110,111,109,87,126,90,105,92,107,108,116,110,110,96,105,105,106,99,104,94,100,103,98,92,110,99,99,114,107,107,111,94,108,93,98,96,96,107,118,97,95,113,101,105,115,103,93,112,96,106,105,98,94,119,109,109,111,107,102,94,91,112,100,98,99,92,99,103,103,101,108,105,104,108,93,90,108,92,94,99,108,98,99,109,112,100,102,103,112,97,98,109,103,109,98,97,107,94,99,103,128,95,94,113,102,98,115,100,111,98,104,102,101,109,117,97,92,115,100,104,101,105,103,108,110,95,98,103,101,96,100,106,104,97,109,109,94,113,91,101,100,101,115,109,97,94,111,105,92,100,91,101,111,94,106,104,101,95,103,101,115,111,104,107,102,114,111,105,97,99,108,106,99,105,109,103,92,97,100,98,111,103,106,89,105,95,107,115,100,104,99,93,87,102,103,101,98,109,107,88,104,105,79,99,111,105,103,109,103,97,103,113,134,115,100,112,106,92,98,109,104,102,116,104,113,100,113,91,107,103,99,86,95,105,106,110,109,104,115,98,116,110,103,108,99,89,106,128,117,105,92,106,116,100,109,107,91,107,96,97,110,93,103,106,106,103,102,107,100,98,103,120,96,104,103,94,100,96,98,104,93,107,102,106,81,101,96,128,108,97,104,98,109,98,97,107,96,96,109,106,98,109,97,105,107,108,96,99,107,89,106,110,95,113,66,103,100,101,102,112,101,112,99,100,104,106,95,109,101,107,88,96,113,94,89,101,111,99,98,99,105,102,97,110,100,108,109,102,98,94,98,105,102,112,108,108,97,99,96,109,103,104,72,106,106,110,106,95,110,107,109,106,98,95,85,113,92,102,97,100,102,110,97,107,112,101,99,102,111,98,101,101,101,105,107,96,73,107,92,94,99,99,102,101,135,99,111,99,111,103,109,104,94,116,104,103,98,94,111,111,97,117,108,92,102,101,117,98,106,114,102,104,106,98,95,109,101,110,114,113,106,109,92,100,106,111,91,96,112,99,108,90,100,102,95,104,103,99,109,102,112,100,99,106,102,98,106,106,93,103,100,91,106,108,110,101,94,104,102,110,105,94,98,108,115,109,105,104,121,93,102,95,98,84,84,107,116,102,102,114,109,102,110,101,102,108,101,94,109,106,101,105,98,108,105,107,112,97,93,89,105,101,93,104,102,92,96,97,92,102,98,101,101,78,105,98,105,103,108,99,90,102,104,91,102,95,112,100,103,100,125,102,116,109,97,91,96,97,117,96,89,96,121,115,114,111,115,96,96,98,113,96,101,104,103,97,102,106,92,110,96,122,99,116,107,98,97,100,95,97,104,99,106,110,107,108,95,109,96,101,107,113,112,95,95,107,102,106,105,101,103,99,102,104,109,104,107,95,111,104,106,127,104,97,92,121,102,103,99,112,101,99,98,123,95,106,103,99,102,106,90,105,95,104,73,112,94,94,109,101,103,96,88,97,108,98,108,96,105,99,90,104,105,99,92,85,98,101,107,112,102,98,125,103,97,120,109,121,84,116,99,108,81,92,110,98,104,87,107,117,93,102,91,101,94,106,92,92,115,102,90,96,108,87,111,106,106,97,142,110,95,107,98,107,106,102,112,107,116,108,103,99,109,83,94,103,95,108,113,110,110,106,110,98,119,96,90,92, +663.11328,104,92,93,93,92,104,109,83,103,121,103,128,99,112,97,110,102,103,103,93,86,97,104,101,97,87,101,93,97,107,103,101,89,99,118,108,110,87,96,99,97,99,104,98,109,117,100,90,112,120,105,95,104,97,103,116,113,102,77,88,110,120,89,96,109,114,88,99,111,105,104,91,99,100,106,105,95,103,104,121,104,104,108,105,104,108,121,108,95,105,102,97,105,85,102,106,81,105,96,77,102,104,100,99,96,102,80,117,83,108,106,110,108,72,107,104,102,89,103,102,117,97,108,93,101,105,111,101,105,100,108,100,103,111,108,102,102,92,103,90,85,112,102,83,103,107,103,102,106,92,94,113,111,100,102,100,98,97,100,90,96,90,100,93,95,99,97,99,94,109,98,111,109,96,97,98,106,94,118,99,101,97,108,116,95,98,97,90,112,100,97,109,100,90,107,106,103,109,100,101,106,109,103,109,99,94,112,110,114,115,102,104,107,107,105,94,97,98,94,114,103,108,93,92,104,121,108,105,112,96,119,103,108,95,105,107,102,109,107,89,103,96,100,98,105,109,100,86,107,84,116,106,96,98,106,104,100,95,98,112,97,108,111,116,93,117,101,93,112,97,98,102,104,106,109,106,102,100,91,103,96,102,96,113,119,102,102,101,99,93,108,108,114,103,99,95,110,109,103,91,100,101,102,109,95,88,102,116,104,112,82,108,114,103,103,92,109,112,98,105,111,100,102,100,99,91,112,91,113,111,96,99,105,108,109,106,101,99,97,122,93,106,111,111,99,112,97,100,115,101,99,109,105,108,105,102,101,108,104,100,102,107,110,107,101,95,114,106,110,99,99,101,112,114,96,113,113,102,99,104,109,122,96,92,104,108,110,98,104,98,109,102,92,110,106,107,103,98,98,103,95,90,104,104,101,103,108,106,95,108,98,105,94,109,104,91,94,93,108,93,108,105,105,108,96,83,99,91,100,112,92,104,113,102,99,92,102,95,96,108,106,99,92,106,84,99,106,93,104,111,107,95,104,108,63,102,96,117,109,104,107,83,100,106,101,114,110,108,98,108,80,104,109,94,114,102,104,107,100,101,99,112,101,99,104,106,107,103,99,93,97,98,100,98,95,109,100,98,107,103,106,97,102,105,100,98,86,114,105,97,103,108,100,106,107,107,110,108,102,87,110,114,116,104,103,101,117,105,105,102,96,103,114,106,101,113,107,99,106,106,105,105,98,102,115,106,112,114,112,97,114,118,114,87,101,116,100,72,118,104,91,133,103,111,112,97,125,106,96,99,96,97,99,99,96,107,106,105,104,94,101,91,95,101,110,105,107,116,98,105,112,100,102,109,101,94,103,100,103,96,94,99,117,105,93,102,94,105,113,97,103,102,102,101,104,98,103,87,105,113,101,107,113,101,84,100,100,108,99,116,91,92,99,109,102,105,90,87,107,98,103,103,105,91,95,105,121,95,98,118,118,101,129,106,110,101,107,97,101,106,101,107,110,109,100,87,98,102,111,107,110,106,105,100,96,108,93,110,100,104,110,105,103,96,98,113,115,99,88,104,113,106,100,89,115,96,114,112,99,90,100,108,98,92,108,101,118,103,103,104,98,97,109,116,133,93,107,101,101,100,100,93,99,109,100,106,109,106,102,95,103,104,106,110,94,104,110,100,112,102,102,110,105,106,96,100,120,105,110,97,114,101,102,104,104,118,92,90,102,99,110,90,97,101,101,105,97,103,102,100,109,102,112,114,101,107,104,93,98,87,114,114,96,101,109,110,106,109,108,103,95,103,101,97,93,101,95,103,96,98,107,99,92,95,108,101,99,108,103,98,107,95,103,100,110,81,105,105,103,106,99,116,107,106,112,106,82,109,121,113,103,96,111,98,109,130,101,95,104,122,100,101,112,107,99,108,104,112,95,105,98,103,113,102,90,102,105,108,102,95,99,101,97,112,95,100,104,109,118,98,102,106,94,100,102,101,112,104,103,104,105,114,104,101,103,109,101,107,95,91,108,115,104,103,109,100,92,117,95,98,110,107,109,104,106,109,117,103,91,99,100,98,123,102,100,112,108,98,100,105,104,96,102,90,110,98,103,108,110,118,103,126,98,103,103,103,90,90,111,119,98,97,97,103,97,104,104,101,112,105,97,100,115,95,118,107,107,99,90,97,103,109,100,99,102,113,101,93,104,99,103,101,110,108,94,101,104,100,91,101,91,109,93,106,92,87,105,108,104,105,104,100,101,99,107,96,99,95,100,88,110,95,98,98,100,110,106,106,108,91,101,87,104,102,103,102,103,111,106,100,96,97,105,104,97,94,87,101,110,110,93,108,106,105,101,98,105,111,117,104,105,105,106,111,97,113,100,118,104,102,119,111,122,99,98,104,104,111,115,110,90,93,95,104,115,110,97,123,107,91,101,112,115,99,117,105,105,113,88,110,105,99,97,108,110,107,105,109,105,96,102,109,101,103,126,109,104,91,104,113,124,87,104,90,98,114,95,99,105,99,111,95,111,90,106,96,100,112,108,107,79,105,99,95,93,106,98,103,95,68,113,105,103,90,98,100,107,97,96,104,117,103,93,105,93,88,98,99,105,112,110,101,103,87,94,100,90,99,117,122,111,80,118,90,109,105,100,100,110,100,91,110,122,91,96,100,99,94,95,106,100,110,96,109,110,113,96,102,92,113,116,100,102,108,90,113,103,103,100,129,101,95,95,95,101,113,93,102,100,105,121,101,87,98,112,90,96,101,110,103,106,98,109,97,117,102,108,118,98,99,99,119,97,103,105,81,113,94,133,115,99,85,107,102,97,112,90,102,103,100,104,115,107,97,110,85,112,92,100,100,108,98,101,96,95,95,89,116,102,99,106,94,115,123,100,93,99,104,117,106,89,103,97,106,99,70,108,104,101,101,94,117,108,99,109,101,107,101,99,88,105,98,108,115,94,96,97,98,107,99,91,111,100,96,88,117,109,94,120,95,98,110,95,100,109,108,101,103,104,106,106,98,96,114,122,105,102,102,101,98,75,98,104,94,122,105,112,98,116,104,96,107,103,100,83,113,88,103,109,89,112,114,106,101,105,109,117,106,106,102,102,93,93,112,93,117,97,108,112,102,95,94,112,98,102,96,115,101,102,101,104,93,96,111,104,125,111,108,94,97,106,119,101,111,94,101,121,80,105,98,91,106,88,109,102,107,101,102,95,120,118,110,100,115,95,96,113,94,105,94,100,120,124,105,106,94,104,111,111,104,107,111,114,103,97,100,90,102,103,106,101,98,103,104,116,91,105,93,100,97,100,102,103,95,99,113,113,109,83,88,108,108,90,95,103,103,93,112,107,102,106,106,113,103,104,105,110,93,97,103,93,82,100,106,110,112,103,111,105,95,93,113,111,96,100,97,93,93,99,111,112,90,113,97,106,107,120,101,116,102,106,107,107,97,83,108,107,117,105,93,103,95,99,101,105,110,106,109,103,90,124,109,104,104,107,105,103,100,99,102,96,97,102,113,93,116,104,105,98,100,103,95,104,110,109,100,96,105,113,111,102,95,97,102,107,111,102,109,102,105,95,101,100,110,107,95,114,109,87,106,101,100,109,106,95,89,110,98,100,108,100,94,102,124,96,102,104,101,103,97,101,106,108,106,110,100,87,126,97,94,98,105,109,100,123,101,106,107,104,93,102,100,101,120,95,101,98,104,109,102,90,114,105,102,104,108,95,110,103,108,120,87,102,105,88,99,108,103,104,109,113,95,99,105,91,85,112,92,100,111,101,106,110,101,110,106,99,98,102,105,91,111,109,96,105,99,114,119,103,109,103,109,98,114,95,109,96,102,98,87,91,88,97,110,90,101,98,94,102,98,94,112,112,102,104,108,108,98,101,103,112,107,104,100,105,82,110,101,104,97,87,111,113,98,106,115,104,103,116,104,106,100,101,108,102,112,104,97,116,98,90,84,106,94,96,95,102,102,91,99,96,100,64,99,100,104,100,92,112,115,101,101,113,98,114,110,109,105,109,94,72,104,101,99,117,104,101,92,113,114,94,107,106,104,107,105,114,102,95,103,99,104,103,113,121,103,79,101,99,102,104,108,96,110,92,103,90,106,91,99,104,114,101,102,99,101,103,93,109,90,100,111,98,75,102,104,109,112,110,97,91,92,102,97,102,115,96,105,101,103,107,108,90,107,100,110,86,60,95,114,102,94,100,96,90,112,100,104,108,100,106,100,116,98,103,105,101,101,96,99,102,109,101,94,98,99,101,101,95,100,100,113,96,98,97,100,87,101,97,99,98,100,110,102,102,103,98,104,95,113,110,101,91,112,101,103,104,96,101,104,96,99,110,107,99,103,103,104,98,106,98,106,98,107,98,87,97,99,95,92,99,73,101,99,76,105,94,102,109,97,106,87,100,98,104,101,93,97,109,112,106,92,96,101,101,111,100,100,98,109,89,98,99,96,104,113,101,102,101,107,104,93,91,114,108,108,98,113,82,100,106,83,99,99,107,112,107,104,99,107,109,106,105,107,109,109,102,94,119,98,103,106,109,93,97,109,101,109,96,103,98,89,105,98,103,110,115,101,108,99,88,97,95,95,105,113,105,109,110,102,100,105,105,89,101,108,108,108,116,93,102,98,102,105,97,83,97,102,94,92,103,98,77,111,109,103,98,103,91,93,108,110,96,107,98,97,103,87,104,104,112,90,88,103,95,95,105,107,109,95,103,108,102,100,104,96,96,105,101,107,112,101,103,98,109,106,105,107,103,100,131,96,98,105,98,106,96,84,101,107,113,101,87,106,114,101,114,94,124,103,96,112,100,106,87,90,79,98,111,91,110,106,99,92,103,101,100,91,102,107,101,105,102,101,110,109,117,101,92,103, +663.25452,106,102,92,102,91,111,96,99,109,101,100,103,109,105,104,99,100,105,101,105,102,99,101,78,102,105,104,94,99,106,100,96,98,115,108,105,104,101,108,110,95,118,100,104,107,109,99,92,95,104,102,110,102,95,105,100,100,82,111,96,110,109,96,93,108,105,109,107,106,104,104,113,92,118,100,130,101,95,105,104,111,115,81,97,91,90,101,95,107,102,109,108,97,93,99,103,107,98,95,112,98,97,104,100,106,109,95,98,103,102,95,115,121,101,99,92,101,117,111,94,90,109,114,99,92,100,103,103,102,113,100,102,109,108,100,101,95,117,111,106,82,109,99,101,95,102,102,85,105,90,100,108,120,85,100,109,95,100,100,97,100,90,106,100,109,84,112,101,95,102,93,110,109,101,102,98,109,89,100,96,105,107,103,100,103,107,98,82,96,100,104,111,115,108,104,101,109,109,94,107,98,102,96,96,100,105,104,110,110,109,105,103,107,103,106,101,92,117,108,94,101,116,109,106,105,110,106,89,61,91,97,94,91,98,104,100,92,102,106,94,110,109,102,100,98,105,93,105,97,109,91,112,102,103,99,113,100,110,90,108,94,115,107,96,99,99,102,98,108,73,102,96,121,105,101,103,105,103,117,131,94,105,94,107,105,105,106,106,115,74,107,106,103,106,98,109,99,83,109,101,105,100,95,108,86,105,107,120,101,103,98,110,109,112,113,103,93,118,101,104,101,95,104,100,105,103,100,98,107,112,95,108,109,98,87,100,107,106,105,106,94,98,105,91,104,109,98,105,105,107,105,107,117,109,118,106,114,97,109,105,100,96,91,92,115,96,107,106,103,118,98,101,99,112,93,89,94,105,99,106,108,104,87,112,104,99,97,96,109,89,98,94,108,114,88,103,102,104,101,96,102,111,95,103,99,93,110,105,105,104,90,102,98,109,105,96,108,105,117,92,72,93,92,105,105,83,102,109,130,99,95,97,103,115,99,90,101,104,103,109,99,113,98,95,113,105,108,107,100,107,109,110,99,95,99,91,102,113,94,95,105,100,108,99,112,113,111,95,102,98,107,110,95,104,125,103,98,111,98,94,107,109,107,109,106,93,97,108,118,104,103,76,101,98,93,101,109,102,100,99,111,102,92,112,101,104,113,106,96,100,93,94,108,110,106,110,104,106,97,98,87,95,119,117,101,94,99,105,100,102,118,105,104,107,109,100,113,99,109,110,99,103,86,94,111,103,121,105,88,107,106,103,108,110,97,106,111,105,106,85,109,103,102,120,101,104,119,108,103,92,92,88,107,105,100,102,103,107,111,96,98,100,100,95,101,104,110,105,102,98,103,109,98,141,117,106,91,100,117,130,106,100,101,89,108,101,102,92,104,112,90,101,109,94,106,101,110,90,101,92,103,106,104,99,106,103,102,99,94,109,101,90,108,102,98,102,104,100,97,98,109,106,104,111,111,82,108,91,100,112,103,102,104,94,110,98,98,109,109,98,93,96,111,95,94,102,102,95,111,99,108,99,105,90,110,111,103,104,111,99,103,100,113,71,108,94,103,117,96,103,94,94,97,111,101,110,104,104,115,100,95,97,101,93,105,110,107,115,94,121,92,118,94,93,103,97,88,110,99,106,96,104,121,108,77,86,95,99,112,111,110,111,104,95,96,105,105,100,102,101,99,100,94,99,109,98,106,97,100,91,100,113,103,90,94,97,96,105,107,97,102,98,104,99,93,104,88,87,97,99,120,105,111,113,97,96,91,104,104,105,103,97,106,97,98,103,107,91,113,106,113,114,104,103,124,104,105,107,106,106,96,104,102,97,70,111,102,96,103,95,117,101,94,114,105,101,92,103,107,117,111,108,103,118,88,99,117,101,106,112,108,98,111,101,103,100,88,80,107,100,104,99,105,93,98,97,113,97,109,100,97,102,104,104,90,112,127,103,102,106,110,106,95,93,110,97,100,109,105,105,98,106,103,103,117,95,113,107,113,95,110,106,105,112,99,95,93,115,104,108,101,108,107,100,110,101,104,106,108,93,108,109,94,113,104,88,102,102,91,102,97,93,107,96,102,102,95,128,107,98,96,106,107,121,107,103,103,105,112,117,100,110,109,102,99,96,94,119,107,109,107,93,90,111,104,101,107,106,98,109,97,105,102,112,111,105,100,104,100,105,123,88,86,99,124,93,136,105,104,112,111,97,94,121,99,103,105,94,109,110,99,102,98,99,103,87,91,113,101,100,103,92,104,101,106,103,101,108,109,115,97,105,94,110,103,100,98,102,91,101,98,104,112,108,96,108,99,102,107,98,123,120,105,93,96,100,102,104,100,117,113,103,108,95,106,72,110,104,108,113,104,113,96,111,91,113,107,106,97,97,108,106,88,95,104,98,109,109,113,95,99,96,103,88,110,96,94,96,107,109,110,112,84,110,113,95,110,105,99,110,89,108,100,107,108,104,91,90,109,96,107,94,98,98,115,106,110,106,98,102,110,94,102,104,92,97,104,99,100,104,96,115,99,124,101,100,108,105,93,100,105,87,102,107,94,102,100,108,100,109,112,109,104,90,93,105,98,98,105,98,98,96,104,101,109,98,101,106,110,82,91,99,100,103,115,86,98,101,106,102,117,98,96,93,100,106,110,115,104,108,100,99,103,94,94,107,106,98,108,103,109,117,112,123,92,113,118,120,103,104,93,103,113,107,94,104,95,94,103,92,102,99,92,99,101,102,112,126,112,114,95,105,96,98,73,96,104,102,108,87,131,102,100,110,98,94,108,121,119,107,67,116,109,107,105,108,101,100,115,113,107,106,110,107,95,105,100,101,86,103,99,103,100,116,91,102,76,107,99,112,110,98,117,108,101,76,111,106,102,104,107,109,107,100,91,108,96,108,104,109,110,107,101,113,103,105,101,108,98,107,100,117,101,98,105,98,102,102,109,104,112,111,108,120,75,109,112,112,118,97,101,105,111,94,111,102,113,94,101,110,112,95,111,108,107,98,104,104,113,103,111,107,101,67,109,102,98,107,96,106,106,108,107,102,107,93,106,100,106,113,105,105,107,94,96,101,110,88,104,101,107,107,105,105,98,96,112,105,102,101,113,112,112,108,130,98,117,121,100,106,112,98,102,120,108,97,111,116,99,95,110,106,105,103,112,111,101,109,105,95,117,101,101,101,97,102,115,105,112,98,98,101,104,100,110,101,100,108,102,98,105,106,116,93,102,98,106,109,104,100,103,108,93,109,102,95,138,109,96,99,110,95,99,100,104,117,106,108,92,100,105,90,113,101,93,100,118,105,102,102,108,102,124,96,109,104,110,94,93,102,93,100,113,108,102,108,110,104,107,109,101,100,97,85,101,106,101,100,91,100,113,91,127,101,106,104,113,89,102,104,98,88,103,101,105,91,107,106,106,89,108,110,95,94,97,100,95,109,108,103,108,105,104,103,102,101,108,96,105,96,109,113,96,106,106,98,106,89,92,104,108,112,124,111,101,104,109,101,117,99,101,109,93,104,102,97,95,111,103,92,100,104,103,95,108,104,83,75,98,99,104,105,104,109,111,106,107,100,94,99,96,84,105,103,95,117,108,101,123,113,91,106,112,108,96,105,105,64,103,102,116,101,112,110,99,99,107,108,99,103,93,90,108,109,110,91,99,100,106,104,103,106,108,112,103,104,97,104,106,96,112,90,112,112,99,104,115,101,101,98,103,105,106,116,95,112,96,110,96,106,111,95,96,98,105,94,106,108,102,99,105,106,113,105,93,83,108,111,93,113,89,109,100,101,108,97,105,104,97,110,102,109,112,99,108,109,115,97,117,90,97,107,108,111,107,105,106,103,102,100,97,112,107,110,115,101,114,113,100,79,105,99,98,114,103,102,86,100,104,107,98,96,109,107,96,97,115,100,97,101,104,96,106,112,108,103,106,110,119,113,109,131,112,112,110,119,117,79,106,98,111,107,110,109,103,95,100,103,102,96,105,97,98,99,107,94,102,102,102,111,118,112,106,114,109,104,105,102,108,98,106,101,99,109,121,116,108,100,96,107,103,94,102,108,110,99,112,111,109,121,100,106,102,98,109,119,109,112,105,105,108,103,118,119,95,102,95,102,109,102,106,109,112,104,90,108,109,105,100,89,98,112,102,102,100,110,101,106,107,97,108,103,113,110,113,100,96,84,107,103,101,66,104,112,103,108,103,97,102,103,109,98,99,104,105,104,101,125,102,102,112,104,120,108,114,104,108,104,98,99,98,99,101,102,102,103,112,97,94,106,100,89,109,98,89,102,97,98,104,113,97,110,100,90,102,104,109,107,102,95,124,99,109,98,97,110,100,99,95,101,98,99,111,111,107,115,104,99,98,113,91,109,104,108,112,95,116,103,102,102,101,75,101,109,97,99,90,102,107,102,100,106,83,95,103,108,97,109,94,97,104,124,99,91,99,106,93,108,115,98,112,95,81,104,108,104,89,103,103,103,89,121,101,108,114,102,102,98,108,99,102,101,103,98,98,120,101,87,113,104,101,110,93,87,101,83,97,100,99,116,118,108,124,102,103,102,102,99,87,98,80,94,115,94,112,98,89,103,95,103,101,119,105,103,104,110,124,106,109,108,108,100,105,102,98,101,93,114,102,98,104,101,114,99,100,107,101,102,98,113,105,101,97,105,100,94,98,103,112,102,105,95,99,97,105,102,105,100,89,105,105,103,108,105,104,95,114,105,106,103,109,103,101,104,94,103,107,101,97,92,89,100,117,101,106,102,135,112,103,108,98,101,95,99,109,108,101,96,94,102,90,96,103,109,126,109,97,99,109,117,100,117,105,94,99,101,112,105,109,88,103,117,113,99,97,106,89,103,92,111,95,87,102,101,106,131,111,96,87,111, +663.39575,101,118,96,101,94,106,101,95,100,100,104,106,100,110,105,101,94,109,100,108,102,100,122,104,104,105,101,104,103,116,80,101,104,104,110,94,110,97,113,95,95,104,95,114,104,124,90,110,102,91,109,100,107,104,97,87,109,103,100,95,103,106,96,94,113,109,102,109,103,104,105,108,107,101,94,93,104,97,109,100,91,110,102,88,98,99,96,130,113,97,107,109,103,96,95,95,103,105,102,108,98,102,99,107,99,118,106,108,97,109,110,97,118,97,97,105,91,115,109,106,101,103,101,107,109,104,113,95,117,95,103,103,108,116,95,101,93,98,92,103,92,110,99,100,108,96,99,105,105,100,118,105,112,110,94,126,111,101,105,107,93,97,89,100,97,100,108,100,99,96,103,119,91,98,105,102,117,103,98,103,99,107,110,102,100,95,101,106,95,102,100,100,99,98,103,105,107,108,105,107,106,108,104,113,96,105,97,113,107,112,113,110,108,100,93,105,105,115,98,102,101,109,99,107,103,105,99,96,98,114,93,108,102,100,105,79,102,109,107,104,96,98,103,102,104,100,98,99,104,90,98,94,101,107,105,98,107,96,102,103,89,114,111,105,96,107,104,112,83,103,106,102,98,98,108,99,89,106,97,93,105,103,99,111,100,97,78,105,112,101,102,107,111,99,123,108,105,104,108,105,114,104,95,104,105,102,106,103,94,98,91,107,106,104,108,98,121,95,106,101,92,102,106,99,100,121,101,104,103,108,98,100,105,103,104,102,119,95,116,94,121,94,101,105,119,98,113,114,105,104,113,104,108,110,95,106,104,118,95,102,102,104,97,88,111,100,99,94,93,104,107,119,94,98,110,96,104,101,107,103,100,122,102,110,103,109,81,102,106,105,100,106,102,101,62,92,100,90,95,103,104,99,102,74,100,108,125,95,104,107,102,97,102,95,102,96,94,100,94,89,97,96,104,98,99,100,95,88,106,98,98,126,119,109,96,105,107,108,109,117,113,100,99,109,95,117,109,93,113,109,109,108,91,117,104,111,95,109,105,110,89,96,109,106,100,107,121,102,101,103,98,93,107,99,109,95,91,101,105,96,105,106,111,105,103,98,92,103,95,100,103,106,94,98,95,104,106,114,112,97,101,103,102,89,106,98,91,126,96,93,97,105,101,109,95,107,91,99,111,87,113,91,106,98,100,97,104,103,101,90,97,101,98,107,100,97,109,109,107,106,112,112,86,86,105,99,102,97,101,107,110,111,102,95,87,99,106,94,98,102,101,112,99,111,102,104,107,118,110,103,89,96,101,112,101,104,105,104,98,114,105,99,103,107,105,97,103,98,105,92,106,102,110,89,113,106,108,103,105,109,105,92,116,107,96,106,106,113,104,113,85,109,106,92,102,109,95,100,107,88,95,108,104,97,105,97,99,94,104,111,108,85,104,97,98,108,106,104,104,98,108,139,100,85,92,92,111,109,98,110,95,96,120,94,102,93,92,99,99,106,104,100,98,99,105,100,94,105,100,100,113,105,120,89,103,102,99,118,102,98,105,96,108,94,103,96,100,100,113,102,112,98,82,95,105,101,103,101,108,98,98,90,105,98,98,108,97,103,99,94,101,100,104,106,96,105,100,96,107,95,99,95,100,104,98,98,104,85,110,103,95,102,98,95,102,106,107,101,111,106,97,98,104,101,107,105,85,111,102,107,98,104,115,111,109,90,107,97,107,101,105,102,109,95,111,104,84,112,83,102,113,103,109,117,96,99,94,105,83,105,105,117,107,99,100,101,107,111,97,116,127,108,101,99,116,97,92,104,99,86,100,104,95,97,103,99,103,109,116,95,112,101,103,111,106,111,109,108,104,103,96,107,100,102,110,105,102,92,100,101,92,97,105,95,87,94,101,105,106,94,103,104,122,112,104,106,102,87,93,101,101,96,93,98,90,109,95,102,94,91,108,100,104,106,103,94,94,95,113,103,98,94,95,110,93,95,102,83,109,102,103,99,110,104,112,96,87,104,104,97,106,103,78,116,108,98,103,112,91,107,102,95,100,98,105,100,104,100,84,91,102,103,87,102,103,97,90,106,90,100,105,99,114,103,117,106,108,85,98,102,75,106,103,77,101,104,94,102,100,108,117,107,105,100,105,102,114,100,99,96,96,102,96,100,110,104,103,104,111,108,101,100,111,104,106,104,100,107,107,91,105,103,102,114,95,99,106,87,116,104,117,109,100,95,90,113,95,110,106,101,110,138,113,104,92,94,89,91,106,114,102,117,105,119,114,106,102,98,90,116,100,108,118,110,93,82,109,104,101,111,107,112,104,86,88,94,96,84,94,103,103,110,102,108,81,94,105,107,101,102,100,107,106,104,109,103,115,102,106,118,112,103,102,116,102,101,102,105,105,101,103,104,107,83,100,117,107,105,105,97,92,74,95,100,104,111,104,112,102,91,89,115,111,106,107,104,112,97,113,101,94,109,119,112,96,116,103,93,124,112,99,96,103,94,106,107,108,96,97,95,89,108,112,91,105,101,105,103,100,109,83,104,99,99,107,103,109,105,96,73,100,97,109,101,106,105,120,104,90,101,94,97,104,103,95,105,117,85,108,91,106,89,113,108,94,106,105,111,106,108,112,97,108,93,105,107,106,106,99,105,118,110,104,100,101,98,96,101,99,106,102,110,102,105,121,113,128,107,109,104,84,99,98,98,97,106,96,93,94,110,107,103,112,87,95,116,103,105,117,97,93,111,103,101,104,94,109,100,103,105,100,95,140,95,113,113,88,112,102,104,107,74,111,107,108,106,105,108,110,98,100,95,109,99,77,106,101,114,107,102,92,98,112,104,91,95,107,109,109,113,140,98,88,94,116,101,99,96,105,99,99,105,102,117,103,107,104,113,110,117,96,111,112,107,104,102,102,103,89,93,110,117,87,104,101,107,105,96,92,102,105,109,96,85,103,106,100,116,105,108,100,98,110,94,108,108,105,102,108,100,106,91,99,102,116,107,104,101,102,106,114,102,97,104,107,96,114,109,115,106,109,95,109,98,108,97,108,102,96,102,87,104,77,101,99,89,105,103,96,106,107,96,110,100,104,111,101,107,102,105,102,111,99,107,100,101,106,103,110,103,104,110,99,99,114,109,96,108,99,100,98,103,87,100,106,113,108,99,109,108,105,98,100,113,100,103,94,104,108,98,95,105,102,93,99,85,89,106,91,106,96,110,102,94,115,102,93,102,111,98,94,101,104,113,106,102,107,105,89,86,101,105,104,104,119,105,109,99,108,102,101,94,109,106,104,106,101,96,113,100,97,124,101,100,104,109,113,102,106,101,99,100,101,111,113,109,119,111,108,106,96,98,104,108,94,97,102,99,96,101,107,108,105,99,98,107,78,117,100,103,91,90,101,109,106,100,96,96,104,110,96,125,100,100,103,105,131,109,96,102,110,121,96,97,94,110,113,109,100,100,120,115,100,108,100,106,102,104,107,109,112,100,103,98,105,96,104,105,99,98,113,99,83,93,112,88,103,113,112,124,100,103,99,96,101,94,106,119,106,116,117,84,108,102,108,85,105,105,94,100,96,103,94,104,102,103,98,105,107,105,93,105,112,118,108,90,85,99,98,92,98,97,98,108,106,95,113,103,104,127,96,96,107,121,95,98,99,113,110,98,133,108,101,112,88,97,107,113,117,106,102,102,109,104,103,97,106,102,105,98,98,104,112,102,113,106,112,103,85,110,103,92,102,100,112,92,103,109,109,112,105,103,103,108,107,88,100,96,98,108,88,107,111,116,106,110,101,98,110,104,98,104,105,109,104,112,100,90,112,97,97,98,98,103,107,113,106,102,106,99,95,101,110,102,110,107,117,98,90,102,109,119,111,101,110,99,91,106,108,115,106,93,91,114,101,126,98,108,98,100,111,100,101,102,103,98,99,101,107,102,109,89,100,102,79,96,98,103,100,109,101,97,110,102,121,103,103,102,112,108,97,106,92,109,102,94,113,100,103,109,112,108,98,99,95,102,109,96,104,102,95,103,97,100,104,114,104,105,113,92,113,88,106,99,97,96,95,106,104,96,95,99,108,101,97,120,133,96,88,99,102,94,102,98,106,101,106,99,111,103,102,99,100,99,103,108,107,99,82,106,101,105,94,108,105,102,109,112,114,85,98,102,106,100,110,105,102,101,111,100,100,106,83,109,99,106,113,96,93,96,97,124,106,106,113,104,110,109,103,101,102,91,84,99,101,104,100,86,110,104,115,96,107,109,102,108,99,100,95,105,97,116,105,105,108,94,100,100,99,103,101,94,95,105,106,93,101,87,103,108,114,92,104,85,108,96,113,117,99,117,109,111,107,108,119,100,116,94,102,102,95,98,97,100,102,119,95,116,100,105,105,87,103,107,109,100,105,98,98,103,114,103,98,95,102,96,103,106,109,108,94,93,113,92,99,100,107,110,106,108,103,99,112,113,102,105,103,99,97,97,103,91,100,99,102,99,106,108,105,94,99,95,104,97,101,110,97,95,111,97,104,110,99,97,105,100,99,112,105,110,101,110,109,114,107,104,101,97,109,113,101,95,112,108,113,98,94,100,110,100,94,100,104,104,104,104,96,112,102,114,102,103,109,102,101,99,103,98,122,92,103,113,106,105,92,113,96,102,105,94,108,95,109,96,89,97,78,109,99,106,113,110,109,101,117,92,92,95,103,102,107,101,101,103,108,83,116,104,120,96,101,107,105,113,101,101,105,131,96,105,101,107,104,114,96,118,108,109,112,102,100,102,114,135,101,99,101,104,101,100,97,89,96,106,95,97,104,105,85,104,98,106,110,99,91,120,103,107,105,96,96,94,99,101,96,115,106,103,106,100,115,115,91,116,110,104,112,101,99,107, +663.53699,116,102,94,110,101,99,99,98,98,109,104,102,103,110,98,105,107,104,102,107,109,106,109,107,106,104,92,105,113,105,108,95,101,103,102,115,95,101,110,105,96,109,105,98,99,100,100,102,103,92,111,107,101,101,96,109,103,109,110,96,97,104,99,89,104,97,95,99,94,113,112,103,105,105,96,106,69,113,98,111,113,99,111,97,112,102,97,87,108,107,111,94,102,97,108,95,106,103,110,96,102,108,97,116,102,103,91,102,98,115,100,104,106,122,103,103,100,96,107,101,100,107,96,117,103,113,95,93,99,104,97,98,100,106,104,96,97,110,92,94,101,100,108,97,104,103,93,113,97,98,89,97,104,95,91,99,96,97,118,84,100,102,95,102,111,100,106,100,110,107,105,103,100,105,112,96,92,92,109,91,91,108,103,92,106,87,97,91,99,96,99,113,108,97,90,100,98,107,90,105,93,97,93,107,96,114,102,82,112,110,95,88,99,113,105,102,96,116,89,105,98,98,98,101,97,90,104,117,104,105,104,106,95,97,100,103,98,86,94,106,87,97,109,103,98,104,96,94,96,102,110,98,100,85,96,101,85,97,95,98,95,101,107,101,85,99,94,102,114,109,96,93,97,96,107,104,104,104,102,103,107,109,95,96,111,105,117,105,109,101,114,108,118,100,95,104,105,112,115,115,101,99,106,104,99,104,94,110,103,133,94,113,96,104,107,90,103,83,110,98,106,99,101,108,111,109,107,102,100,101,99,112,103,103,109,91,107,108,95,109,97,105,110,95,106,109,109,105,99,105,108,117,96,95,101,100,113,112,98,102,120,107,122,114,107,109,93,114,92,91,113,100,98,105,101,97,109,108,102,106,107,88,89,91,86,94,110,93,98,99,116,109,99,110,101,96,95,107,106,110,99,112,100,91,102,105,127,105,92,103,113,104,112,95,114,98,108,103,104,102,90,97,105,98,101,100,112,108,95,95,100,91,105,104,101,121,105,114,90,102,119,87,105,106,99,87,98,94,97,107,88,104,98,100,107,106,110,110,96,102,96,108,107,108,107,102,113,105,116,87,105,99,109,101,105,112,98,99,103,98,110,107,100,102,105,96,114,91,100,97,96,93,105,100,94,99,92,91,107,104,106,98,110,102,115,107,86,109,120,106,109,106,103,106,95,103,103,110,102,99,101,95,104,111,104,98,100,91,118,109,109,96,99,113,94,104,109,103,105,109,98,104,64,106,110,101,104,107,110,98,82,103,95,110,80,97,117,99,96,107,102,105,98,111,100,103,107,105,98,102,105,72,111,95,96,108,95,112,97,105,101,110,108,115,104,100,95,111,98,101,111,103,99,105,110,113,97,106,114,98,108,100,104,110,103,110,101,101,101,118,118,106,103,99,108,106,95,82,98,99,108,113,105,106,101,98,108,109,97,102,96,104,105,111,104,104,74,110,99,97,105,123,102,109,87,104,101,107,100,96,103,104,106,101,94,97,114,112,92,108,114,102,102,107,103,89,107,104,108,101,99,98,96,110,96,109,109,102,106,95,112,94,110,92,97,101,99,102,106,109,106,94,109,108,106,106,106,101,107,93,101,115,103,92,110,103,84,106,112,107,98,106,108,96,97,114,104,113,97,102,105,89,102,107,101,99,102,110,92,102,108,102,94,97,90,98,82,96,105,95,113,96,101,92,108,108,103,97,103,108,105,107,108,98,112,105,103,108,100,102,106,110,100,110,105,95,95,100,115,98,119,104,101,94,91,99,104,79,121,97,92,98,110,108,103,104,103,103,94,92,104,78,104,114,110,100,94,104,106,119,99,105,100,99,97,104,104,100,98,103,109,109,105,91,118,96,110,107,97,99,104,102,107,107,110,104,91,99,89,99,108,115,108,93,84,105,106,98,113,109,92,90,101,104,106,97,113,102,103,100,109,85,104,109,105,103,115,103,106,104,102,103,110,106,109,107,104,112,107,116,112,109,107,108,98,109,95,101,90,96,105,89,97,95,124,106,103,122,101,103,108,113,104,109,101,99,101,92,100,103,100,106,102,114,106,106,91,97,98,100,111,96,106,90,91,100,103,102,102,89,103,109,107,99,97,95,102,102,110,99,107,90,103,106,99,93,92,107,109,109,109,99,102,105,112,100,97,114,90,105,110,109,96,100,106,97,99,107,94,102,113,110,105,104,102,95,105,92,108,112,94,105,99,108,92,102,99,101,91,87,102,95,94,117,105,110,101,91,102,90,104,102,95,98,110,100,105,105,100,113,104,105,99,104,108,108,109,94,101,119,94,91,96,118,90,101,108,117,99,92,117,104,117,104,107,107,86,103,103,98,100,113,109,100,117,99,105,122,108,103,103,100,112,91,103,111,114,105,112,104,116,106,113,108,118,108,103,87,95,103,103,108,109,110,105,98,94,111,91,96,87,108,101,107,101,102,98,96,87,83,107,112,102,112,108,84,99,102,124,102,106,110,97,93,105,108,103,89,98,110,96,105,101,103,116,104,102,103,108,111,95,109,112,104,105,102,105,102,106,112,108,101,92,95,108,97,106,108,100,103,102,104,91,108,106,118,90,99,105,94,104,102,104,106,96,108,117,116,109,109,99,125,112,113,106,112,90,101,104,112,108,91,104,108,104,106,111,100,107,105,101,107,101,103,102,99,104,99,99,99,108,99,97,100,105,103,117,109,103,102,110,108,101,103,104,105,103,106,109,108,114,102,111,109,102,113,98,114,101,97,94,99,101,100,108,122,127,107,101,104,107,116,90,104,109,101,98,114,110,111,100,103,105,109,101,103,108,104,120,102,108,106,100,102,105,112,94,104,103,106,97,111,100,113,99,94,111,109,95,99,97,104,115,111,102,95,103,102,111,103,108,100,107,123,106,105,108,115,99,116,102,110,106,106,107,109,105,102,106,110,104,108,92,108,112,97,110,104,106,103,102,98,91,115,107,104,77,107,99,108,102,114,116,103,103,118,102,105,102,100,110,102,115,96,103,106,108,112,112,103,102,107,104,111,104,121,102,95,106,99,113,103,98,102,90,105,97,86,117,110,113,104,104,105,91,109,87,107,100,109,101,110,103,111,108,104,110,98,109,96,106,98,103,106,97,109,100,106,106,96,104,101,105,98,90,100,109,102,104,106,105,112,118,102,106,104,100,105,92,103,107,103,121,103,105,102,100,101,109,111,100,113,103,131,104,106,108,109,101,108,98,111,112,93,101,99,113,95,106,103,111,110,109,99,112,107,106,102,106,102,107,98,103,115,94,100,97,99,110,97,102,93,105,105,105,113,106,96,107,100,112,106,105,102,111,106,105,99,108,92,93,110,103,103,113,103,115,108,99,105,102,105,102,108,94,104,103,95,106,112,98,101,108,92,120,101,88,110,119,101,99,83,92,98,82,109,100,94,101,101,99,103,106,102,108,115,109,102,121,98,99,110,102,105,111,97,104,98,108,105,111,115,111,99,95,109,99,78,123,99,97,109,100,117,113,95,104,110,97,110,103,109,91,110,99,111,104,104,98,89,107,67,103,110,106,96,108,102,98,117,120,98,101,102,106,101,118,103,103,102,106,99,95,102,106,95,97,94,114,99,96,112,100,105,98,64,98,107,104,86,100,103,113,111,109,101,108,97,108,109,87,92,104,100,101,104,97,101,102,102,105,110,90,102,110,92,102,103,104,92,102,107,106,106,97,109,109,103,111,109,109,104,95,99,103,110,98,99,95,107,101,99,102,120,117,101,112,99,107,100,98,91,107,107,110,93,102,108,98,102,113,101,103,105,98,101,114,106,108,101,117,105,109,99,115,97,107,103,98,99,109,114,100,96,109,111,110,102,110,96,99,96,101,106,106,116,95,98,102,108,97,105,89,100,100,98,102,107,109,98,123,107,100,105,88,102,91,109,117,101,111,113,122,103,102,108,111,100,103,107,119,110,101,100,99,104,106,91,102,94,102,104,93,99,110,99,110,111,99,95,112,101,105,101,110,95,104,101,107,117,119,115,109,104,104,112,98,94,106,105,107,99,97,105,113,99,105,87,106,98,127,100,115,99,106,107,107,104,103,104,112,110,101,103,112,108,105,95,94,106,106,104,119,104,102,103,112,112,103,118,111,124,102,107,112,110,102,100,109,109,104,91,94,107,111,102,102,107,95,83,121,95,108,97,105,106,97,112,103,118,98,116,95,116,116,105,99,105,98,105,107,100,105,92,94,112,101,113,105,95,108,99,97,83,93,99,86,102,106,108,108,84,111,106,104,87,108,105,95,100,107,101,82,100,108,99,111,101,109,105,109,111,91,110,106,102,103,104,112,106,107,103,124,113,110,100,86,97,109,108,98,107,120,124,111,105,109,102,108,110,100,106,111,104,104,100,103,103,116,106,96,93,96,105,97,109,101,115,111,111,107,109,101,98,112,103,94,99,102,91,98,104,109,116,93,108,102,109,114,87,92,94,99,88,100,112,106,94,110,104,108,104,104,113,98,109,109,111,101,96,105,114,96,94,102,87,103,106,106,109,108,117,102,104,102,108,105,114,118,75,112,139,105,110,107,108,107,106,109,99,113,104,102,103,112,103,101,105,101,103,92,103,102,103,115,110,115,100,107,101,103,103,114,110,109,107,95,105,119,99,112,113,116,96,98,100,108,109,104,104,90,104,103,100,108,105,103,98,116,103,105,104,93,96,122,102,110,103,103,101,95,114,97,105,113,101,106,91,116,102,104,98,108,106,105,93,123,96,102,103,113,95,111,106,108,107,110,102,104,98,99,107,111,98,98,104,105,105,105,102,95,115,98,95,108,108,105,109,104,112,102,104,101,97,102,107,104,98,82,108,103,99,99,104,99,99,105,100,113,106,113,114,108,94,105,101,114,90,99,101, +663.67822,105,100,94,94,98,105,96,89,88,115,93,101,111,91,109,85,95,103,101,98,66,92,89,95,99,98,112,114,87,104,97,113,94,90,103,97,103,94,88,100,106,96,101,100,109,94,93,108,105,95,100,116,101,97,114,101,104,98,96,92,90,112,111,80,91,120,103,102,75,88,106,121,101,103,90,101,102,83,97,99,107,93,89,113,101,101,93,100,103,97,109,105,96,92,103,108,108,95,97,104,113,96,98,104,98,94,87,106,106,89,94,93,110,106,89,97,111,109,111,94,79,109,94,104,95,79,115,97,103,108,106,101,96,103,106,97,92,98,104,90,92,99,99,101,87,110,101,103,100,99,103,96,105,96,93,109,103,90,110,103,105,100,107,114,107,105,98,95,110,86,91,104,106,104,99,100,109,99,104,96,111,124,113,94,110,99,83,104,106,106,99,104,107,104,107,108,108,102,98,112,112,99,124,121,109,135,103,112,119,104,93,100,109,96,107,98,95,108,100,101,105,100,115,99,110,101,96,93,97,97,107,73,110,103,100,113,95,109,100,100,104,94,108,109,113,105,101,109,98,91,104,111,97,112,105,99,98,101,103,105,88,102,97,99,95,109,107,117,104,98,99,99,90,98,107,88,85,108,101,97,117,108,96,97,106,95,95,102,102,103,113,103,105,101,127,107,107,113,107,93,90,103,96,114,95,105,105,105,101,108,92,113,102,98,100,94,110,97,109,101,97,106,91,99,81,99,105,86,106,116,107,101,93,97,109,100,106,92,98,106,106,105,109,93,98,120,109,98,104,94,94,94,101,88,104,111,106,99,99,95,94,95,100,119,95,100,109,110,89,103,105,98,99,105,87,93,114,121,108,106,106,107,99,97,97,97,112,95,114,92,103,92,91,96,95,98,98,104,89,100,102,90,92,99,98,94,72,92,98,103,101,95,109,108,95,90,101,97,109,98,102,99,94,107,98,108,106,87,106,107,98,103,98,97,95,103,108,120,97,96,106,99,105,120,106,103,101,91,104,86,104,100,98,95,99,106,93,116,103,101,99,100,125,107,106,104,106,91,101,105,113,106,100,83,102,91,105,96,97,110,102,116,105,102,104,114,112,107,98,112,112,108,103,98,96,94,97,101,113,104,124,96,95,101,100,107,109,93,122,106,108,96,106,104,90,107,95,106,97,100,107,106,96,99,104,104,101,113,94,86,98,115,108,97,104,98,101,105,101,108,96,117,101,110,109,97,104,98,107,67,83,100,101,91,106,107,101,83,102,95,110,98,112,107,99,107,104,96,110,91,111,115,95,100,100,100,105,106,94,101,104,92,106,99,106,91,121,110,104,99,110,101,101,102,102,103,105,102,105,112,115,102,128,112,98,100,89,98,98,102,90,95,115,103,107,103,94,123,106,102,100,108,94,98,112,92,103,105,107,106,99,104,99,105,101,102,91,103,104,104,109,103,104,89,96,107,99,99,105,107,94,110,95,102,106,102,116,110,108,103,115,99,112,109,91,99,104,105,103,100,114,95,98,94,99,101,88,99,98,97,105,104,99,93,94,97,106,100,100,95,114,103,109,93,106,92,103,111,117,94,99,101,88,100,104,105,106,103,113,101,96,100,107,102,99,86,98,97,106,100,79,102,111,108,81,103,104,86,96,101,101,107,96,89,98,94,97,93,96,94,96,88,105,106,99,105,94,112,102,101,107,93,104,109,93,95,106,85,107,100,113,106,91,96,107,106,94,99,99,75,104,108,90,88,103,101,91,98,94,98,101,115,110,109,102,106,105,104,102,113,109,115,115,108,99,90,109,91,94,81,97,98,102,100,109,93,108,108,106,103,109,99,112,103,117,105,117,104,106,95,98,106,109,106,90,105,103,115,94,95,101,90,103,96,105,107,105,94,95,103,99,90,102,107,95,114,122,103,99,92,104,90,92,98,97,101,110,98,104,105,107,100,103,101,108,105,98,109,119,99,108,110,92,68,95,91,102,98,109,65,94,91,96,101,107,99,105,99,98,105,103,112,107,102,113,106,106,100,96,96,96,111,108,109,100,96,106,100,101,106,101,111,105,110,115,97,87,92,90,100,99,100,94,106,90,98,93,105,108,103,102,103,84,104,105,102,105,101,103,104,91,98,102,110,106,89,113,102,100,109,103,96,96,105,112,91,91,94,94,107,101,69,99,116,106,117,94,100,107,89,88,97,105,100,106,100,110,94,108,100,98,117,97,103,108,109,97,98,104,89,101,101,112,109,95,101,97,85,99,95,98,102,105,84,116,110,97,118,101,109,108,100,98,100,100,98,99,102,101,99,98,100,112,101,101,98,96,104,106,94,93,108,115,114,109,88,104,108,123,100,91,108,95,91,117,117,95,105,100,94,74,90,92,102,103,97,103,104,93,113,98,110,103,102,112,109,96,95,98,104,96,103,96,102,106,104,107,113,96,107,94,109,97,99,101,105,105,95,108,99,115,99,114,93,94,95,109,104,100,109,97,100,101,97,107,106,103,100,106,105,102,110,92,109,102,87,111,110,94,102,91,112,89,107,103,95,87,105,104,107,100,108,99,103,101,93,107,109,105,84,113,101,101,107,112,98,88,102,114,106,113,107,116,109,102,99,105,110,103,110,105,101,97,89,121,111,103,95,112,95,104,103,97,110,96,99,108,90,109,103,97,113,84,118,101,111,108,101,90,106,115,91,108,100,109,107,110,104,106,95,96,106,113,124,104,106,101,114,89,99,104,98,103,108,95,98,116,107,87,101,76,112,94,105,108,96,88,99,100,94,106,104,92,83,107,97,101,114,102,106,107,106,105,95,99,115,113,81,102,109,100,79,97,105,106,113,97,109,112,106,110,94,98,106,102,109,106,102,104,106,109,116,104,106,102,99,111,107,99,104,99,113,118,97,114,104,89,83,106,106,108,103,108,96,99,99,111,108,100,109,99,112,97,99,105,104,108,98,107,107,105,102,94,105,100,101,95,106,103,101,111,105,105,103,102,100,99,114,109,102,94,89,99,97,105,106,107,117,100,102,102,100,110,96,105,107,90,104,108,89,100,96,110,99,91,96,102,96,99,107,110,113,103,101,102,95,125,101,97,105,102,114,104,109,104,105,111,97,104,101,122,108,113,104,101,101,109,103,92,115,97,100,109,102,107,106,126,108,106,91,111,106,99,103,106,96,113,91,135,113,101,114,88,91,92,97,108,98,105,120,98,106,100,95,108,115,109,104,107,94,113,113,110,103,103,89,109,101,105,97,75,96,95,117,105,110,114,117,108,95,99,81,100,102,102,106,120,105,107,104,85,100,112,101,102,111,98,103,99,112,85,117,76,121,99,98,96,107,111,95,108,112,101,97,97,95,97,104,98,101,104,89,105,110,111,99,107,96,95,102,104,111,106,104,103,102,101,97,100,94,92,106,103,97,91,104,95,94,99,104,115,109,98,103,105,105,101,93,102,98,126,97,97,105,108,114,113,114,111,98,81,83,112,107,101,108,99,94,108,105,114,106,101,105,100,109,112,102,68,115,104,102,122,102,99,112,91,113,96,112,106,88,92,96,100,98,116,107,97,92,100,107,98,94,101,110,111,102,105,106,103,81,112,86,100,92,94,102,104,110,107,106,106,97,98,91,108,112,95,99,101,99,106,107,102,107,100,102,107,92,105,108,74,106,87,107,105,112,95,91,111,100,101,108,104,114,94,105,98,117,100,95,106,105,101,107,98,111,106,102,95,109,95,93,106,108,102,107,111,108,110,94,103,82,105,98,110,94,116,105,100,99,95,99,117,99,111,92,101,101,103,101,102,92,108,108,101,92,102,109,100,104,104,102,97,100,105,93,106,113,130,105,100,119,113,109,101,98,102,100,93,103,99,102,103,104,92,94,93,99,94,85,122,110,96,96,105,93,111,93,120,89,109,97,104,107,99,101,100,94,106,106,103,120,109,102,72,105,95,89,102,114,97,111,105,99,102,84,107,113,104,110,96,99,100,90,101,99,119,113,104,109,105,103,105,106,121,103,111,102,103,100,115,102,104,109,100,98,112,95,108,91,103,98,96,104,98,115,103,97,97,103,108,101,108,98,98,111,105,106,101,102,102,95,117,114,98,94,95,96,103,98,93,105,102,104,108,106,113,117,105,105,104,99,104,113,99,92,101,96,106,97,103,95,100,102,94,105,105,113,104,91,103,110,104,101,95,102,99,117,112,106,95,102,116,106,104,107,104,92,94,111,102,104,106,113,102,106,105,100,113,101,128,98,101,105,105,104,109,123,109,106,109,104,109,103,111,104,99,114,111,111,103,102,106,99,94,92,98,104,109,105,102,104,95,105,103,103,104,114,105,107,109,119,114,98,106,112,102,105,103,109,87,105,105,91,107,115,110,92,99,100,108,95,95,87,105,104,105,91,105,109,91,96,96,100,92,88,100,99,113,106,95,116,107,96,106,104,111,93,97,96,105,101,106,95,123,96,107,102,101,103,100,106,117,110,104,99,112,81,94,104,114,108,96,95,111,114,106,91,97,109,99,98,107,95,99,108,111,97,106,104,110,109,97,103,122,95,104,98,92,88,101,98,104,99,110,103,114,101,88,107,79,117,105,107,101,98,101,108,101,114,107,106,109,105,94,104,106,105,99,102,107,97,104,103,109,68,93,104,90,94,101,100,103,97,97,104,93,96,101,102,96,88,101,103,105,99,103,92,102,96,104,96,103,97,104,103,100,104,107,95,94,99,84,99,123,97,96,103,105,106,99,106,108,112,100,98,119,112,91,91,114,88,106,99,98,109,99,100,105,99,97,80,105,103,106,95,105,101,123,98,105,96,113,108,111,93,79,93,96,102,113,99,104,90,105,99,106,92,113,106,97,96,101,110,107,92,100,100, +663.81946,86,102,94,98,105,105,108,83,98,109,94,87,93,111,89,107,113,106,109,104,97,102,113,105,91,93,95,96,104,115,98,108,64,99,103,100,104,112,102,96,95,100,100,106,105,110,98,105,120,106,104,111,100,111,101,104,104,105,110,111,100,106,113,93,110,91,89,107,98,89,95,103,99,104,111,99,100,107,107,109,107,109,109,91,102,87,95,104,94,92,104,103,106,104,91,116,115,97,109,105,105,101,104,98,105,105,113,98,102,73,107,106,98,95,100,97,98,102,101,88,102,109,87,112,105,104,125,103,120,99,104,115,87,113,101,98,96,94,113,102,93,121,90,96,94,96,99,112,100,102,95,113,98,95,93,112,98,96,110,98,105,110,99,94,105,102,109,94,90,97,99,111,99,101,106,106,110,110,103,91,104,101,108,105,110,97,100,76,111,97,93,104,99,104,97,109,94,100,98,96,105,96,109,112,98,118,103,102,110,107,89,103,112,100,119,98,110,107,95,107,99,118,107,87,112,109,103,99,90,108,114,101,79,104,87,93,99,107,106,106,107,108,101,117,95,90,110,95,105,119,98,102,98,105,106,104,104,95,107,117,88,113,92,92,104,109,103,91,110,101,102,104,94,105,112,91,98,69,109,100,105,97,112,102,95,100,96,112,92,95,101,110,115,110,108,110,104,107,99,92,96,97,102,117,93,102,114,117,97,110,106,109,109,87,108,95,99,104,99,103,99,95,99,102,104,107,93,94,115,108,103,99,116,100,103,100,104,101,124,109,100,106,103,100,102,96,105,117,100,105,105,101,114,116,88,110,111,110,99,97,109,88,106,101,100,88,96,118,102,104,99,119,105,112,104,103,104,103,86,114,100,121,108,99,107,101,102,88,106,91,99,109,113,102,92,109,100,103,113,91,80,109,103,84,94,104,101,81,97,109,108,106,109,95,105,98,98,97,114,97,106,108,112,105,103,94,91,102,103,84,109,112,104,98,103,96,109,114,95,90,104,84,96,103,104,101,111,91,96,116,107,106,98,106,97,110,105,99,114,94,102,106,97,114,101,102,101,100,106,103,104,108,104,95,109,94,93,92,129,109,102,111,114,93,92,125,82,108,115,101,97,117,92,121,98,108,94,105,101,83,118,102,101,87,104,112,97,103,97,98,108,106,80,106,104,104,112,106,99,107,96,115,111,112,95,98,110,105,106,113,101,90,103,105,106,93,108,115,116,119,98,102,94,94,103,100,119,108,91,95,113,100,104,113,99,95,108,104,97,97,91,102,102,112,98,101,113,105,98,99,104,97,97,88,105,104,101,95,113,92,109,118,99,96,107,102,101,95,90,91,116,109,101,104,102,100,104,98,101,102,91,107,94,94,103,98,103,100,108,110,106,101,101,109,114,101,108,97,98,103,101,104,101,94,104,106,102,104,112,114,106,101,104,112,98,109,101,114,100,108,96,100,94,112,104,94,100,97,114,99,111,113,115,97,110,112,94,115,101,102,97,107,102,108,100,104,107,90,107,101,103,107,103,102,110,104,104,105,94,101,78,106,111,98,96,92,103,98,98,75,114,109,91,110,105,98,115,104,107,108,96,101,107,113,113,112,95,109,99,103,106,102,94,102,96,98,115,105,112,98,96,101,99,112,97,92,114,98,113,109,94,99,106,105,90,86,107,113,105,97,112,97,84,99,98,110,92,100,100,106,109,109,95,93,98,97,111,98,90,99,107,102,110,90,104,103,91,90,105,90,104,99,92,102,104,100,102,103,112,96,101,99,103,110,119,107,99,103,98,106,107,113,107,106,103,101,119,113,102,101,101,101,101,100,92,86,109,77,101,85,100,92,99,101,111,94,110,111,92,97,97,106,92,103,107,102,105,104,108,97,94,97,86,104,106,101,111,94,95,95,102,94,105,111,105,100,99,99,108,107,103,87,131,105,87,104,100,104,109,102,105,100,103,97,100,107,99,110,108,102,103,124,100,103,97,81,108,100,85,94,97,107,115,100,106,101,97,103,113,101,99,124,110,108,113,108,100,102,101,109,99,101,106,105,106,94,103,104,101,99,115,110,113,106,88,98,96,106,106,103,108,125,117,111,109,99,87,107,110,105,104,107,104,102,96,108,94,100,99,97,104,96,121,104,91,106,104,102,98,103,106,97,105,110,106,91,100,108,106,105,100,105,83,111,107,101,104,113,99,98,94,99,100,103,106,111,100,96,100,108,94,103,99,75,103,97,99,100,106,101,110,103,97,99,101,114,101,107,102,107,99,104,101,90,114,99,111,114,95,112,90,99,109,110,106,95,94,105,105,114,112,95,100,106,104,100,94,96,100,89,98,97,95,99,108,112,109,110,91,108,105,105,110,104,100,93,109,124,101,97,79,98,112,121,87,106,84,104,104,89,95,125,92,106,107,102,94,96,99,103,88,102,92,108,109,98,95,90,88,99,112,94,90,103,106,112,115,95,100,114,106,95,110,96,113,103,101,100,109,103,105,100,100,101,103,115,105,116,99,101,100,105,114,102,105,102,101,106,99,114,117,100,105,115,102,99,98,106,101,108,102,99,95,98,100,104,98,99,109,101,114,95,102,101,98,99,109,99,105,101,105,102,99,109,99,94,113,96,94,110,110,104,109,90,98,117,110,105,101,100,103,108,108,104,105,119,107,108,104,101,111,112,103,110,105,120,112,100,96,107,98,130,108,109,91,108,109,98,111,92,98,103,93,120,99,120,95,100,115,108,110,123,100,105,114,100,110,108,111,113,108,104,102,102,116,111,90,110,107,105,95,101,101,108,109,108,102,125,101,110,99,98,106,102,109,103,113,99,101,111,96,108,107,113,104,109,102,109,103,108,107,106,113,90,114,107,109,106,96,104,99,105,94,117,99,108,102,102,103,107,113,96,117,95,117,115,104,103,109,106,113,110,105,107,100,99,100,101,98,103,101,98,98,124,97,98,107,113,108,94,109,99,130,101,123,107,118,120,117,98,103,105,98,106,96,90,102,114,110,105,110,92,105,101,107,101,97,96,98,108,98,104,110,102,112,117,107,97,106,106,106,106,102,108,91,105,114,104,113,101,103,122,112,101,107,106,109,80,100,106,113,90,113,111,119,108,114,115,98,105,113,104,101,103,94,98,109,109,110,106,93,104,112,102,103,113,109,100,109,100,108,108,89,104,93,102,99,95,101,100,94,104,85,113,102,110,102,101,101,103,121,101,106,103,92,104,105,104,105,112,100,111,104,107,114,104,98,120,96,99,108,94,108,100,109,91,111,112,117,108,107,104,112,107,104,105,99,106,96,120,107,121,101,109,96,103,101,101,98,98,100,111,100,100,97,96,101,102,101,96,102,100,99,113,91,98,107,97,106,107,112,107,111,102,114,111,105,117,101,107,104,95,106,107,95,104,98,91,111,96,105,93,105,99,107,109,119,102,101,110,108,111,109,101,102,107,106,102,106,107,112,102,117,85,95,109,104,107,102,103,97,111,101,105,109,108,90,107,100,107,107,104,110,107,99,100,101,110,106,111,101,102,111,103,104,102,91,113,101,101,104,105,101,106,106,101,99,105,101,98,98,96,112,90,106,103,107,120,104,107,109,107,109,74,102,99,110,113,99,101,106,100,108,97,105,111,110,107,106,109,99,94,91,121,104,99,101,116,99,101,97,117,108,106,95,101,103,101,103,98,102,108,109,107,99,104,101,107,104,102,92,107,97,100,119,92,114,104,104,105,104,100,99,104,102,99,99,104,97,101,94,96,119,100,103,102,102,102,95,113,101,104,104,120,101,92,100,118,103,100,113,100,100,104,93,108,102,96,102,104,101,95,101,109,104,109,103,103,114,91,108,98,112,98,106,114,100,106,102,95,107,113,98,102,95,99,117,97,104,103,98,104,105,119,104,98,96,108,101,103,101,98,107,84,99,87,117,94,94,100,113,107,93,113,101,101,105,104,95,104,102,98,119,100,100,101,103,101,103,92,91,88,107,95,111,97,91,106,108,98,113,102,101,106,98,98,103,105,102,97,96,103,104,100,110,109,92,98,109,94,105,110,98,103,76,101,111,106,107,109,103,107,100,104,92,106,92,103,99,113,115,99,101,103,106,108,99,102,111,111,97,104,106,105,103,98,99,110,113,105,75,104,98,109,100,110,109,107,111,121,105,104,99,95,97,114,103,106,92,99,106,111,100,104,104,104,89,111,97,128,101,94,101,109,98,99,105,97,100,96,114,96,108,91,96,100,96,102,107,95,99,100,108,102,106,99,95,80,93,101,100,104,112,106,114,100,97,101,108,108,93,112,107,107,102,103,104,109,107,110,104,89,100,93,95,106,106,99,111,102,121,82,103,112,100,85,116,99,114,96,94,107,105,106,106,101,100,100,108,113,95,100,113,97,107,101,100,113,92,98,109,113,108,101,99,97,75,91,92,100,109,102,96,96,93,111,106,101,100,99,93,98,97,108,118,102,102,110,102,101,88,99,99,98,102,97,105,102,100,102,111,104,97,106,98,100,96,121,107,98,102,101,105,91,109,80,92,106,104,124,108,108,105,88,105,106,101,102,100,96,101,102,101,116,99,111,120,104,109,104,102,105,107,111,109,96,102,109,103,107,100,105,107,99,113,93,107,104,105,107,95,89,108,110,117,102,106,112,106,101,83,94,103,97,95,108,101,101,96,104,112,125,99,102,105,105,103,107,100,112,76,111,100,111,109,96,102,103,107,103,107,106,103,99,90,91,102,98,101,108,98,99,98,125,96,109,98,102,105,91,112,103,101,102,132,118,92,109,92,95,112,90,107,118,98,99,104,100,106,98,98,80,100,111,83,109,98,97,100,98,116,99,104,110,108,100,94,105,94,105,112,87,94,109,101,99,96,112,108,88, +663.96069,100,80,91,98,112,104,104,101,97,102,109,90,97,97,120,117,115,114,110,112,100,99,91,101,113,113,116,96,102,114,89,110,101,103,102,105,108,104,105,98,112,99,101,98,100,120,113,106,105,106,109,98,110,98,96,100,98,95,111,100,100,110,90,103,100,101,95,106,105,97,107,105,108,113,100,110,101,105,97,105,109,102,107,98,101,104,100,106,119,99,96,106,100,102,105,109,102,102,98,110,95,94,119,104,102,94,96,105,106,97,113,97,98,107,100,85,97,103,115,118,96,120,105,107,107,102,106,105,95,104,100,101,87,96,101,119,107,108,106,103,93,99,94,92,99,101,102,101,102,102,99,95,96,93,106,98,111,98,98,116,102,107,110,107,105,106,107,96,105,94,93,108,106,98,100,108,109,96,101,105,105,117,104,98,105,105,106,101,90,104,108,106,105,94,105,93,115,106,95,116,110,98,104,120,94,96,103,106,122,113,97,98,126,106,102,106,96,112,89,108,94,104,107,107,96,108,79,105,113,97,100,120,103,99,112,110,88,95,104,100,115,96,119,109,104,98,101,92,108,105,95,99,118,116,99,113,110,101,109,100,104,95,93,99,108,108,96,103,105,94,106,92,108,113,111,110,103,102,95,98,113,100,104,102,105,103,104,90,100,97,108,115,109,90,104,104,104,104,109,93,109,106,104,100,96,107,110,117,89,106,103,102,94,116,98,102,103,100,126,106,98,95,81,99,95,100,102,86,99,95,109,123,108,116,96,110,117,86,120,100,94,104,112,96,105,108,99,96,102,95,101,107,105,102,106,110,109,108,109,92,93,87,99,102,97,96,109,109,96,118,107,105,103,100,115,95,99,98,115,108,102,103,96,99,94,101,102,104,100,104,107,99,101,104,99,112,101,101,104,95,99,114,112,91,102,84,103,108,114,104,104,107,94,101,100,92,104,103,105,103,101,106,90,104,114,98,91,97,90,84,93,95,104,95,100,106,101,98,99,109,102,98,94,103,79,103,97,94,115,109,103,100,99,104,108,101,105,103,104,110,108,112,99,113,107,104,102,92,98,101,107,100,91,96,111,101,104,112,104,110,114,107,104,98,99,114,116,107,98,114,94,112,103,105,100,102,101,99,103,65,113,108,101,107,90,103,104,102,112,105,111,106,107,95,98,97,109,110,100,95,102,114,107,107,106,102,102,107,102,92,101,105,100,96,114,105,104,102,95,110,112,93,101,103,103,95,103,101,104,99,96,99,99,105,100,104,98,106,105,100,102,106,95,101,101,106,107,108,106,108,102,100,88,101,107,113,103,121,102,104,108,102,100,108,110,105,104,77,109,100,101,99,99,107,118,126,108,102,109,106,99,102,105,98,102,93,100,99,100,109,109,112,108,108,98,102,103,99,104,112,104,115,106,104,104,107,95,107,103,104,97,99,105,105,99,106,105,99,107,106,101,110,110,103,108,94,100,100,122,113,104,100,93,105,104,96,109,104,100,101,130,103,111,111,106,110,134,104,106,99,107,110,114,107,100,120,97,103,100,98,104,115,110,101,103,91,103,105,108,95,105,85,87,105,94,102,99,102,102,97,82,127,97,109,106,101,95,110,88,113,105,108,98,100,104,108,114,103,83,104,97,91,95,107,107,114,106,100,105,107,100,110,91,110,101,98,99,95,100,110,102,96,117,115,106,111,102,103,86,103,99,100,97,100,112,111,106,94,122,93,114,100,99,105,76,102,95,98,106,108,107,96,104,113,109,118,92,96,106,102,106,111,104,111,105,107,101,99,99,107,102,99,104,101,110,105,97,103,97,97,99,112,105,105,112,111,102,98,106,105,112,106,66,111,105,106,96,111,112,106,95,108,94,115,99,106,104,107,108,118,107,99,100,94,104,107,107,105,103,109,111,106,101,88,104,102,93,97,110,100,109,93,97,107,103,108,102,96,94,109,103,107,129,100,100,101,107,105,106,105,106,114,110,100,124,102,111,87,100,96,114,115,101,100,106,100,104,108,117,103,110,108,110,106,102,108,99,102,91,103,104,104,104,117,113,97,99,101,91,99,105,99,110,101,99,103,100,99,88,114,91,93,102,114,94,102,114,102,109,97,105,112,115,121,97,106,97,108,104,103,102,103,110,105,105,100,105,101,101,104,104,105,110,105,106,107,107,107,91,104,116,101,118,98,109,106,99,107,106,96,91,100,102,97,103,106,107,99,101,101,97,114,94,100,97,95,106,106,102,95,99,96,106,105,101,105,107,102,94,117,106,103,106,104,98,102,100,99,91,104,105,99,105,125,111,98,108,106,100,108,96,114,116,101,110,102,98,99,81,107,96,105,110,106,109,104,103,122,111,93,104,111,100,99,101,101,107,108,114,106,108,115,108,92,105,96,106,103,91,97,93,96,112,91,114,98,105,108,104,107,109,114,98,98,108,107,106,108,90,105,103,112,87,102,115,107,98,109,107,110,98,113,106,96,114,98,125,95,115,94,104,103,101,109,101,113,85,110,112,106,100,112,104,99,117,110,96,95,92,103,109,111,94,94,108,109,109,112,86,107,108,108,102,97,99,107,105,105,101,93,108,102,91,94,97,105,95,96,98,105,103,106,114,100,107,102,108,116,103,110,113,94,110,85,105,104,98,91,98,105,98,103,131,89,98,112,106,103,123,107,112,107,101,96,108,113,114,91,83,103,100,95,106,106,97,101,112,89,97,101,109,114,109,109,122,106,112,107,107,101,100,88,94,104,91,120,112,102,101,108,110,106,103,100,105,105,99,102,108,105,96,100,100,107,102,104,102,101,95,107,113,113,115,95,115,115,112,103,106,106,117,121,102,107,93,99,111,102,104,113,87,113,104,94,98,108,107,104,95,109,117,96,102,113,105,106,113,115,107,117,112,109,109,103,114,106,109,104,99,97,101,109,102,113,110,107,110,113,94,102,86,96,104,116,108,102,87,104,105,103,96,104,88,110,111,99,109,117,99,90,113,96,115,109,108,106,94,98,93,89,110,96,95,113,110,113,93,104,109,121,95,103,111,99,104,108,117,103,109,108,120,104,111,107,103,100,100,110,95,109,113,99,97,74,103,99,109,100,97,101,106,105,105,116,109,112,95,107,70,103,101,94,95,112,105,107,102,105,104,105,102,101,98,87,108,101,106,96,98,107,103,104,104,103,108,103,111,104,95,108,104,116,107,114,102,97,103,107,83,109,103,105,100,101,104,92,102,100,113,107,102,95,113,99,101,104,106,105,94,110,91,99,109,105,115,91,100,116,103,124,93,92,106,109,110,113,106,102,113,99,102,99,87,108,108,116,116,92,99,100,96,101,100,107,101,103,107,102,113,98,94,105,98,94,98,102,103,106,107,114,102,102,107,109,92,105,109,116,111,116,101,102,108,105,100,106,105,94,113,106,106,101,94,91,104,112,105,100,100,96,117,99,108,101,109,102,109,103,103,107,121,110,120,98,110,101,97,104,107,115,106,109,103,107,83,104,95,96,109,101,108,104,101,113,106,98,113,105,98,103,108,103,97,100,113,100,98,101,111,111,109,108,101,124,97,113,103,109,92,98,107,97,95,110,107,102,103,94,91,101,83,105,108,112,95,98,98,105,101,117,86,109,113,107,104,95,102,100,109,123,103,98,79,97,103,97,118,119,103,111,110,106,100,113,107,102,105,77,102,111,135,91,109,107,106,108,99,109,102,102,104,103,105,105,100,107,106,92,109,98,106,102,98,102,113,113,101,100,107,108,110,103,102,99,104,107,106,101,110,85,100,110,109,119,87,107,114,110,91,105,104,100,106,88,111,113,99,97,102,110,112,108,92,109,103,113,105,106,108,108,91,95,115,98,107,100,90,114,86,113,100,99,117,98,106,105,93,107,105,97,101,116,115,102,112,108,114,101,112,118,99,102,115,104,99,97,111,103,119,102,111,101,98,117,102,102,98,116,98,117,113,104,107,100,110,97,102,93,95,105,111,108,112,107,107,106,108,108,110,101,122,104,95,92,103,109,116,115,103,101,110,113,104,106,124,97,103,95,106,101,101,94,114,119,111,105,94,96,107,100,98,108,107,107,107,101,95,91,103,108,102,92,96,82,98,116,116,117,108,105,102,95,96,116,101,96,105,103,103,96,109,92,114,95,101,105,105,104,97,100,101,97,112,120,103,112,109,106,102,101,105,97,102,104,106,102,113,105,108,102,110,104,95,116,120,104,99,97,110,96,110,114,95,111,105,102,105,113,102,107,102,102,114,95,99,107,119,91,103,110,100,113,104,99,107,94,108,110,106,104,89,96,113,104,108,96,119,109,103,109,105,97,95,103,119,108,111,107,100,113,102,119,107,109,96,93,101,118,99,77,110,99,102,103,94,104,111,110,118,99,97,90,103,109,96,103,100,91,102,95,102,107,108,105,99,106,98,103,111,117,100,126,110,108,112,106,99,112,114,103,120,95,109,106,106,99,109,111,104,101,105,84,102,93,105,105,105,111,103,88,99,109,103,100,97,89,107,108,96,113,113,107,101,112,102,95,105,108,110,103,105,102,100,102,103,100,98,100,100,91,95,97,92,110,105,100,108,100,101,97,91,82,109,116,106,113,105,112,99,112,100,101,107,93,113,105,120,102,99,103,100,103,104,102,103,84,104,106,98,109,103,117,96,96,101,98,109,104,110,100,115,126,119,103,113,96,98,100,105,101,116,116,104,114,106,93,102,94,102,115,75,110,109,91,107,105,98,107,106,115,102,107,106,109,103,106,114,93,105,104,116,98,98,112,111,100,97,96,102,119,102,105,113,106,108,104,112,98,112,90,103,108,97,66,104,107,100,104,104,107,92,94,103,102,109,94,115,103,104,91,91,116,96,102,110,98,106,104,96,99, +664.10193,108,96,107,94,103,98,93,97,77,105,106,109,98,101,109,108,115,113,99,110,100,104,107,100,105,98,103,112,90,105,88,110,96,100,90,120,99,103,96,108,111,93,100,105,99,113,101,100,103,106,99,106,87,96,106,104,101,74,108,103,120,104,97,97,105,110,111,110,108,90,105,102,102,104,91,105,105,107,83,106,97,106,105,94,104,99,97,63,104,97,111,114,108,100,95,101,94,108,96,103,98,95,107,83,109,103,111,98,78,104,101,109,92,102,107,95,98,99,108,85,91,87,124,109,119,113,110,93,123,94,72,99,108,97,100,103,113,107,91,107,98,104,93,104,92,103,102,100,97,108,100,103,109,106,108,113,110,106,115,104,96,99,101,109,88,109,114,96,101,103,108,104,94,97,105,90,99,94,90,115,104,107,116,104,103,92,101,96,110,92,83,113,99,102,105,92,111,112,96,94,98,116,99,103,99,118,110,102,114,114,94,92,102,104,100,107,96,83,102,104,104,92,106,108,107,110,118,106,116,103,105,101,117,114,112,117,82,108,112,104,108,111,107,109,98,98,101,107,93,104,105,103,94,107,108,111,105,103,103,104,106,105,98,94,97,102,94,112,109,85,101,100,97,98,103,98,102,115,118,112,103,100,101,101,116,98,93,97,103,102,110,99,108,106,120,111,92,96,98,96,72,98,101,97,107,108,109,110,108,116,103,103,107,111,94,102,103,87,110,105,89,104,98,110,101,110,98,97,114,109,107,95,107,110,114,95,98,100,108,104,109,111,103,98,100,102,107,99,112,89,101,110,106,98,109,83,110,95,100,101,84,103,98,83,95,99,96,106,92,90,103,111,104,110,91,97,114,104,97,104,112,106,100,109,109,110,114,118,113,109,111,99,105,101,109,93,95,101,104,98,102,100,115,101,103,102,103,103,102,91,96,92,112,104,112,96,105,100,106,98,99,100,97,114,104,96,97,109,91,107,95,111,95,102,109,95,109,113,90,109,88,101,103,97,94,113,109,89,98,103,91,94,99,116,111,98,116,98,107,99,96,102,118,110,102,106,93,101,102,106,110,105,104,108,107,106,89,90,96,93,130,102,111,104,103,90,106,98,106,101,94,107,104,105,90,100,98,110,101,105,101,96,106,98,104,96,96,115,106,99,111,105,91,96,96,101,104,110,95,116,111,96,99,105,114,108,94,100,113,111,117,98,113,104,110,108,100,109,118,104,99,111,109,95,96,101,114,109,106,96,97,103,104,107,91,100,103,97,107,95,94,96,100,91,104,97,113,99,77,91,112,106,112,94,109,103,106,101,93,93,110,105,95,100,94,97,95,92,100,113,108,101,105,104,91,100,93,105,104,117,106,92,101,92,111,100,105,101,107,108,95,109,107,100,96,99,95,105,112,93,96,112,70,97,102,94,97,104,92,117,101,100,103,110,106,91,103,95,99,109,100,101,103,97,101,105,120,102,116,102,97,120,104,106,101,102,96,103,109,103,87,106,109,103,101,103,100,107,111,107,117,106,105,101,112,116,102,103,104,109,105,97,89,109,109,95,97,112,107,98,104,92,114,112,112,106,110,100,104,104,91,98,89,103,108,107,103,104,99,98,112,105,102,98,108,101,97,84,115,101,101,99,97,105,85,109,106,108,98,110,120,101,113,91,95,106,100,105,103,94,110,94,99,105,108,101,94,96,107,118,100,99,105,101,100,100,107,103,104,106,121,108,107,111,106,120,91,115,93,101,113,98,100,96,111,108,105,105,112,101,106,122,113,101,104,99,106,103,110,111,107,107,99,104,110,102,88,121,107,108,121,88,96,99,109,100,107,107,112,96,120,96,103,91,97,94,98,122,103,98,109,99,108,115,99,107,104,100,103,102,96,88,109,102,105,104,106,105,112,99,110,108,98,108,105,104,107,111,104,102,102,107,102,104,97,107,103,101,97,107,100,119,101,105,79,87,95,105,138,100,113,106,112,106,113,99,103,124,86,112,109,101,107,95,102,101,95,94,94,114,98,115,99,94,90,94,116,100,96,94,110,69,100,106,105,101,104,100,99,94,110,106,103,111,113,112,100,102,104,105,105,111,106,95,104,100,94,101,85,106,98,106,101,106,99,104,98,104,106,103,120,104,105,107,115,95,103,113,110,113,103,100,102,107,112,106,102,98,100,113,106,93,103,100,98,105,92,103,107,103,95,109,107,105,90,99,110,92,100,110,98,108,110,105,95,103,103,91,97,99,88,99,100,101,98,103,100,99,95,106,108,93,102,93,105,105,105,98,92,99,92,104,107,111,111,100,95,110,94,105,103,116,96,88,118,99,113,107,98,101,92,109,104,108,101,101,113,117,110,116,100,97,107,115,112,103,97,126,102,103,95,105,102,114,100,112,102,90,112,95,104,112,96,108,115,104,125,102,94,99,105,109,102,106,104,104,106,101,106,101,101,113,88,107,103,100,113,89,125,108,106,105,111,88,107,107,98,92,103,114,95,104,100,116,101,106,98,99,112,90,108,100,100,105,109,90,105,102,97,107,101,96,113,113,103,112,107,100,92,112,109,105,108,101,101,95,102,111,107,85,95,108,93,123,104,104,108,99,109,97,110,101,102,106,102,103,113,114,110,105,108,94,102,95,99,110,102,100,100,106,101,99,104,113,105,99,114,99,101,101,97,92,108,101,113,108,109,115,116,103,99,94,91,90,113,109,105,113,97,106,99,111,88,90,101,117,110,91,95,100,101,109,106,97,107,100,110,106,93,99,98,124,94,97,101,94,88,113,116,95,95,128,96,110,102,99,114,105,113,116,113,101,108,108,108,103,109,98,96,99,85,91,102,107,106,109,115,116,103,100,102,108,109,104,106,91,104,90,105,98,116,101,96,103,104,88,98,101,98,117,116,99,103,105,109,106,85,100,101,106,102,112,100,115,102,109,94,79,104,114,103,108,112,106,96,81,118,106,95,107,105,126,110,102,101,111,97,107,100,87,113,77,100,103,105,103,102,112,106,105,114,95,113,104,106,102,120,103,100,100,96,94,98,97,125,101,131,111,106,101,103,107,98,100,94,78,108,105,97,95,100,90,103,108,104,106,105,107,108,96,112,128,81,116,112,104,120,109,104,105,91,98,103,99,102,92,100,93,96,108,95,103,83,96,86,99,100,104,98,96,98,100,104,100,97,126,80,89,99,120,97,112,91,84,108,114,88,104,98,107,121,102,84,102,99,103,104,94,73,107,101,99,112,113,123,101,107,92,100,129,115,100,102,133,105,98,85,100,96,105,95,98,106,102,95,116,101,106,98,105,103,98,112,108,105,105,99,102,96,106,99,110,107,94,94,107,105,100,98,105,99,116,93,102,105,98,109,118,105,100,109,92,100,96,106,110,105,98,102,104,93,98,99,100,97,99,94,120,97,102,109,94,101,98,101,99,95,109,89,108,103,107,103,108,128,109,103,105,100,86,106,81,103,90,113,110,64,98,109,101,100,95,107,113,99,105,103,105,104,106,99,106,102,105,111,96,115,100,101,95,102,95,89,110,117,104,91,111,114,106,98,106,108,98,103,100,101,106,97,100,80,102,106,92,92,101,106,86,100,97,98,108,109,103,111,91,107,87,104,98,101,91,91,106,104,93,104,111,99,101,94,102,105,105,93,103,92,95,113,101,103,113,106,90,100,101,101,104,103,95,102,111,107,105,102,96,99,95,103,82,91,100,112,109,106,99,118,98,106,100,117,102,94,96,97,111,137,100,100,96,99,94,109,98,98,104,108,93,101,115,102,92,102,108,76,103,107,109,99,100,97,109,92,117,109,106,119,97,107,112,100,111,93,99,105,95,100,94,112,105,103,116,103,97,104,105,106,100,106,101,104,111,87,93,92,110,115,87,91,96,95,99,101,102,108,94,99,102,97,102,96,107,102,106,99,104,102,107,113,109,100,119,108,94,94,96,107,87,98,100,98,103,93,94,111,99,110,103,104,100,95,104,88,100,104,100,116,101,111,121,111,90,96,100,109,107,98,108,121,102,108,117,95,106,103,94,100,109,102,106,100,110,109,101,111,91,105,111,101,103,102,99,91,99,100,110,105,117,95,107,100,103,93,104,104,98,93,104,111,89,100,101,105,98,104,109,94,104,102,95,102,116,100,94,106,94,97,91,97,99,120,98,98,122,107,104,97,100,94,93,112,109,102,106,99,96,97,93,102,95,107,107,110,93,109,109,96,101,100,103,98,102,105,112,101,94,100,96,96,91,89,110,121,108,111,106,105,105,103,107,100,90,116,98,113,102,119,101,104,120,117,106,93,97,107,99,97,107,76,108,106,99,108,111,92,100,102,106,107,104,91,103,102,109,86,107,116,101,104,115,102,113,110,122,111,90,111,108,116,100,106,87,111,102,105,115,101,77,113,102,113,101,95,101,109,107,96,110,108,116,112,111,94,91,108,97,125,94,104,103,68,92,106,105,110,106,105,112,96,112,96,96,104,120,110,87,108,104,104,96,107,112,109,94,115,95,113,105,101,91,102,117,112,107,96,94,95,99,104,101,102,106,102,96,105,106,109,105,106,102,86,95,97,103,108,107,99,101,101,110,95,113,112,112,79,93,100,105,107,102,99,102,111,113,107,89,112,108,100,103,102,96,101,101,103,94,103,97,97,103,99,90,103,104,108,94,112,119,111,90,101,111,106,109,98,82,103,103,116,99,104,100,95,106,103,98,101,95,98,104,90,100,109,108,105,72,97,95,104,95,88,105,87,116,111,102,99,105,103,95,106,101,100,95,104,89,100,106,92,100,108,87,104,94,108,93,103,99,107,96,98,110,100,106,95,99,106,109,103,102,100,125,96,91,100,98,105,107,109,98,110,111,100,97,110,99,113,99,113,110, +664.24316,98,95,105,106,102,97,118,100,95,95,101,87,108,108,94,105,109,103,82,95,111,96,99,105,108,105,118,95,111,103,93,102,101,97,105,104,98,105,93,106,119,100,104,105,110,102,112,106,95,111,96,98,73,102,115,97,90,112,100,94,99,94,97,96,94,117,89,98,100,100,112,100,111,100,83,107,92,100,103,108,95,106,107,106,101,106,94,91,103,68,98,94,95,98,103,95,102,106,110,103,100,115,105,113,98,103,98,92,106,109,100,96,106,96,102,99,104,115,96,109,102,94,92,123,109,101,118,95,109,117,87,98,100,102,104,96,108,130,103,112,100,88,90,105,100,84,102,108,99,70,83,116,106,97,94,93,95,98,97,95,98,112,101,112,100,95,97,94,96,87,116,101,101,97,98,85,99,91,109,116,109,96,97,101,103,109,101,104,90,101,98,97,103,102,103,104,96,102,95,97,94,114,94,94,99,101,103,98,110,108,100,114,110,94,102,101,99,118,101,85,106,99,107,99,106,110,95,89,113,104,106,94,100,96,95,85,101,108,111,97,103,94,101,116,93,94,93,110,105,97,100,113,94,102,108,100,87,104,96,97,107,100,88,104,102,113,101,112,99,95,105,113,94,101,109,114,109,101,96,110,95,99,106,99,96,100,98,99,106,104,83,116,124,110,119,102,93,95,97,105,89,106,102,106,86,103,99,101,101,95,106,111,111,106,106,106,100,98,110,105,61,95,99,108,84,99,102,95,111,116,96,92,98,98,91,107,105,110,93,83,131,102,101,101,104,109,100,94,111,112,111,107,100,78,97,109,113,102,109,110,104,109,99,99,95,102,104,117,107,114,80,103,103,103,107,89,103,102,93,103,98,99,101,100,101,101,94,99,118,94,112,81,96,102,97,99,100,99,137,104,108,98,110,96,99,97,100,102,98,102,98,96,114,80,97,85,99,104,116,88,116,102,83,103,106,98,99,96,79,106,92,105,98,85,98,107,96,113,95,95,106,93,101,105,100,92,96,97,113,104,93,93,115,107,102,104,88,116,75,105,102,105,119,112,100,103,103,98,101,97,100,106,104,105,112,97,98,107,99,103,106,88,110,102,100,102,103,105,114,97,102,102,91,103,99,106,83,99,112,116,116,101,101,96,102,100,101,97,107,99,112,101,95,91,117,97,101,107,110,83,101,110,105,108,102,102,114,100,107,98,100,105,106,101,98,116,85,115,97,109,102,104,112,96,108,97,104,87,97,100,109,104,112,104,98,102,103,99,104,98,98,114,100,107,108,109,101,110,93,102,105,113,99,89,93,97,99,92,101,114,109,113,98,99,106,96,102,103,100,102,104,108,104,104,98,110,94,101,112,110,100,106,96,106,93,92,98,107,98,113,104,106,98,99,91,113,104,97,109,98,105,93,106,102,101,100,96,97,103,94,91,103,96,100,91,117,109,109,115,101,112,95,99,97,90,99,97,97,119,103,86,109,105,108,110,109,97,114,102,95,109,103,100,104,97,97,114,87,111,121,109,109,129,113,103,97,112,104,113,107,94,89,117,87,104,95,89,100,99,112,97,100,100,105,102,94,99,118,98,97,107,82,103,100,106,111,121,107,102,105,104,103,114,105,109,106,97,103,96,114,104,105,108,105,96,107,103,89,109,104,105,107,112,103,100,98,96,104,94,98,102,99,116,92,106,105,102,112,95,110,99,102,96,102,113,99,105,106,106,107,113,103,97,107,114,106,96,107,105,90,113,97,99,109,95,94,90,98,86,91,110,97,102,103,108,116,101,108,95,105,107,92,106,104,107,104,101,111,107,105,100,63,95,104,98,108,98,101,102,97,117,105,92,97,104,90,101,108,102,106,105,99,98,108,108,103,112,104,98,114,103,92,90,98,106,103,95,103,103,89,100,98,103,95,102,98,96,99,91,97,105,99,135,96,109,98,101,90,99,100,103,76,128,98,103,88,97,116,102,108,95,102,103,105,94,99,108,88,99,101,105,93,104,94,107,98,102,105,84,93,98,94,93,90,98,87,104,102,99,111,97,90,105,101,108,99,103,101,96,91,104,103,97,104,109,99,99,103,101,105,96,95,110,107,98,86,98,97,103,96,101,113,113,108,99,102,93,99,106,113,107,99,103,111,104,110,96,105,92,106,106,105,102,107,118,116,95,108,111,102,107,95,105,106,112,95,100,100,103,106,92,102,99,93,97,103,92,104,88,97,92,102,98,94,100,100,97,103,103,99,104,105,102,112,105,104,92,101,97,113,106,104,102,82,107,91,103,100,101,98,100,107,88,103,101,106,113,103,101,102,103,98,107,93,114,101,91,104,105,89,94,105,106,98,99,98,104,105,108,108,111,109,107,89,101,103,105,111,102,113,98,105,101,103,102,95,102,112,92,95,95,93,97,104,89,86,111,113,99,101,107,114,110,111,107,100,103,107,106,104,97,106,103,113,117,109,101,96,109,106,98,109,95,102,96,109,102,93,105,98,103,97,111,112,100,105,114,100,103,109,106,99,102,116,101,92,113,88,106,104,108,101,94,117,94,107,113,106,105,101,110,114,110,99,104,105,81,105,104,88,106,110,100,102,92,89,107,98,105,100,109,107,108,98,112,91,98,103,100,110,96,102,107,92,94,107,102,91,110,100,102,112,94,102,87,115,107,112,109,100,103,116,81,112,94,112,100,107,110,119,102,123,95,110,107,103,80,95,100,100,109,96,116,105,108,111,98,105,101,100,102,97,120,107,106,96,100,107,103,102,110,117,100,91,109,96,103,95,94,116,102,102,95,101,114,103,99,116,99,98,101,104,112,95,117,110,91,111,103,106,120,114,102,96,99,108,104,118,94,106,98,102,109,110,103,102,109,103,104,108,96,98,105,113,105,99,97,112,100,113,94,97,100,107,100,106,100,122,100,96,101,105,99,116,98,104,99,92,106,101,104,105,103,107,99,113,106,107,104,99,91,98,105,110,113,104,111,106,96,104,105,113,105,105,111,96,110,102,104,102,99,98,99,102,107,94,115,111,107,113,99,100,98,107,106,95,102,105,112,118,103,106,109,105,96,94,94,99,99,98,110,103,99,106,108,108,104,94,108,97,102,108,100,111,109,100,104,107,108,100,103,94,100,106,81,93,117,115,95,104,99,99,91,103,106,100,110,97,83,101,119,107,102,118,113,93,106,105,93,90,106,103,132,103,95,100,104,104,110,97,96,108,87,101,106,105,102,110,113,104,97,103,101,103,111,107,94,115,110,98,110,107,111,97,105,99,105,107,99,104,103,97,106,100,118,112,100,95,102,104,99,104,114,111,106,111,95,101,114,98,105,100,113,104,105,96,104,115,105,105,101,112,110,102,83,94,100,101,87,99,102,106,120,112,105,112,86,115,102,88,107,87,102,112,102,110,105,99,112,99,98,108,102,99,98,102,100,106,94,98,105,104,106,104,98,114,105,101,108,96,98,95,107,98,94,101,99,102,108,121,94,111,96,100,118,107,103,79,93,108,106,109,107,101,95,102,90,97,106,101,83,96,112,91,102,106,99,109,102,109,115,99,101,116,106,101,96,108,113,98,112,95,93,107,92,101,101,98,99,95,92,96,106,102,93,98,102,101,96,117,109,104,109,113,103,64,102,99,97,106,99,98,99,96,89,83,112,101,84,109,110,117,95,105,104,106,108,98,103,98,95,103,109,100,105,110,112,96,63,91,103,101,107,70,106,121,99,108,105,109,117,95,102,98,105,86,95,110,112,103,88,104,97,100,101,97,91,103,99,118,102,103,92,105,110,100,99,106,115,96,107,87,111,113,116,104,96,104,110,102,83,95,106,109,92,98,115,106,99,107,92,99,106,117,101,103,98,103,94,86,95,107,93,102,113,103,99,98,101,103,108,108,101,86,104,96,103,89,103,100,101,103,109,109,107,111,94,103,106,102,109,108,102,109,99,86,105,107,98,98,97,103,70,98,108,103,98,107,97,108,109,103,98,97,113,98,98,107,103,111,105,99,99,109,116,105,76,106,123,108,103,98,90,99,105,103,96,108,106,86,100,99,96,94,108,104,98,112,100,102,99,94,94,105,100,111,92,99,105,99,98,97,106,111,101,72,116,102,95,108,98,96,109,100,92,97,120,93,90,109,105,93,96,100,108,100,111,107,93,91,108,115,110,104,97,106,101,113,98,103,111,104,99,113,107,99,108,103,103,106,118,95,103,103,95,106,116,107,87,98,86,99,88,90,97,111,97,93,87,105,107,98,108,99,97,124,90,88,93,94,86,97,102,96,93,98,103,84,91,102,95,113,112,102,98,98,105,113,112,104,107,96,104,112,110,103,113,108,110,104,101,106,101,113,98,99,104,100,100,99,91,104,99,100,82,102,104,110,96,112,93,106,100,100,108,108,94,100,113,99,105,97,121,108,107,95,102,108,113,78,71,104,102,79,100,95,104,100,91,89,100,95,96,92,98,108,108,109,99,108,96,117,90,108,100,107,89,112,105,100,97,96,108,84,99,103,104,98,106,96,102,100,84,87,103,119,97,103,98,107,104,99,101,98,107,95,101,98,101,107,104,108,102,114,107,122,99,98,112,111,103,90,92,115,95,88,80,114,116,106,106,96,104,91,104,97,103,106,100,89,83,101,90,101,100,96,109,101,117,98,100,97,116,101,101,95,93,102,92,106,106,93,109,105,105,93,109,110,93,99,99,108,94,91,92,87,97,105,105,109,113,117,101,110,94,123,95,105,102,90,106,104,87,93,100,110,96,114,105,102,108,114,94,92,94,80,99,99,93,101,110,100,104,109,96,106,98,95,103,106,105,98,99,107,106,97,95,110,103,106,90,110,97,102,115,101,97,101,103,88,99,106,110,98,107,97,92,107,106,100, +664.38434,105,110,106,93,91,107,102,109,94,110,98,107,113,98,115,91,92,97,105,92,101,109,101,117,91,100,86,96,97,103,102,106,112,98,102,115,95,98,99,101,100,99,97,107,103,103,120,109,128,104,99,100,96,107,88,96,100,108,102,83,98,114,101,98,99,104,103,104,108,99,106,98,100,103,105,105,103,99,91,100,101,128,106,101,109,107,99,118,104,105,95,85,111,98,104,105,99,90,104,95,99,112,94,102,92,90,109,112,105,96,87,103,101,102,109,105,104,95,103,102,107,103,110,106,105,74,102,98,99,107,96,117,101,95,107,104,121,95,101,101,92,109,104,88,96,92,96,88,94,97,103,102,106,100,104,93,107,96,101,92,106,96,104,102,102,108,106,106,117,100,111,104,98,121,103,114,105,94,110,108,101,87,105,114,107,107,105,97,103,101,108,100,106,109,107,87,108,99,118,101,108,94,97,99,109,109,94,109,94,108,100,97,107,109,108,102,96,107,114,105,107,83,104,119,97,118,105,98,101,99,106,112,102,108,101,108,106,113,100,102,97,100,112,96,86,85,102,115,106,112,94,97,101,96,104,108,99,107,100,97,98,116,97,97,92,104,119,105,89,102,105,94,108,100,96,109,94,98,107,95,100,102,103,102,97,102,104,86,86,98,108,111,103,105,117,99,99,101,119,105,103,106,100,105,108,104,99,110,117,108,101,109,111,104,108,90,93,100,81,105,101,99,114,94,102,111,104,108,103,112,107,129,121,92,96,106,105,103,101,105,105,107,114,95,98,104,107,120,98,109,116,105,102,104,108,101,113,106,103,115,99,99,94,94,127,104,102,110,104,101,106,99,104,118,109,90,101,97,109,113,110,103,116,106,101,96,99,99,113,96,96,102,104,108,103,98,101,99,100,108,100,110,102,95,106,101,111,97,102,105,100,92,108,105,92,109,102,102,98,93,105,107,91,103,95,89,109,92,96,104,100,108,102,109,113,100,106,101,99,104,116,98,109,108,108,110,99,93,102,112,96,107,111,114,92,104,104,114,100,100,93,109,110,113,121,109,98,110,94,113,95,116,110,111,103,115,101,105,109,105,108,96,104,114,100,94,102,100,101,89,97,105,104,91,101,96,102,111,116,91,114,86,108,106,104,99,103,103,100,100,107,104,78,108,107,95,92,103,98,112,100,99,104,91,96,102,111,99,105,103,104,100,106,118,118,105,104,104,106,102,86,103,104,106,103,108,110,108,108,113,106,110,103,100,109,104,112,111,111,109,106,102,110,101,100,99,113,96,100,100,113,105,104,91,96,103,109,99,104,108,100,106,111,98,93,99,96,105,103,106,91,104,100,102,114,99,101,111,108,112,100,111,107,105,97,98,102,109,98,107,106,106,113,100,97,97,105,90,106,112,104,107,97,103,106,101,106,107,101,108,94,105,94,122,84,121,102,108,99,104,104,106,106,102,104,102,120,94,106,96,104,125,108,121,112,110,75,104,115,108,100,106,112,104,108,101,95,101,120,98,120,102,97,93,97,103,103,110,105,112,98,111,103,90,96,106,102,95,105,101,104,109,94,108,101,112,103,112,99,117,104,93,97,109,116,112,110,102,85,103,102,88,107,105,87,104,107,95,109,100,105,77,99,101,94,94,91,116,112,107,110,100,108,90,106,92,99,95,98,94,99,99,112,97,96,108,102,107,105,113,94,100,115,104,96,101,108,99,103,98,100,95,102,105,90,108,105,92,100,119,107,110,108,111,106,105,114,113,91,98,100,102,111,105,105,107,111,113,96,117,93,101,109,100,99,98,89,106,104,103,110,107,97,89,113,92,102,110,100,106,107,102,100,108,112,105,105,121,105,101,109,110,102,100,105,103,111,93,110,105,103,99,99,99,116,105,108,104,93,105,99,98,94,86,99,107,95,107,105,92,111,95,104,109,100,96,120,106,100,99,102,113,106,111,106,98,104,108,109,113,106,113,88,105,99,98,105,107,112,104,79,105,101,85,105,109,97,107,106,111,104,105,96,96,106,102,90,104,111,108,115,111,96,104,64,95,93,101,106,96,106,102,101,120,100,109,90,96,116,103,102,116,106,111,86,104,107,109,113,99,99,113,96,111,93,105,94,108,106,107,94,104,103,108,90,106,100,98,87,105,93,99,109,122,102,110,93,94,97,100,117,104,107,100,109,101,106,95,95,96,107,97,122,110,90,113,107,100,94,110,98,110,108,103,104,105,100,99,103,117,98,87,109,104,92,84,102,108,102,113,116,96,96,107,106,114,103,108,104,105,100,105,105,107,94,100,103,102,104,95,117,98,91,103,110,89,95,108,121,111,118,103,106,111,104,98,104,109,120,99,109,125,98,102,103,110,102,101,95,108,118,104,106,104,90,99,125,108,88,104,113,104,109,96,102,100,104,108,104,103,97,102,96,108,106,101,94,100,95,114,86,100,94,104,109,103,114,116,104,97,70,108,103,101,103,100,118,104,114,106,107,93,109,109,95,107,100,100,95,100,99,113,107,98,103,102,95,101,102,107,96,106,95,87,111,108,110,108,92,105,100,106,95,92,104,99,103,102,100,94,90,93,107,97,101,110,111,120,104,99,106,105,136,108,109,107,108,96,101,100,103,102,103,100,112,114,105,93,123,99,99,109,110,96,102,100,106,94,110,98,104,95,107,105,104,102,91,114,95,92,101,85,111,94,94,107,104,108,105,103,94,109,100,105,103,124,110,102,102,98,105,95,93,111,114,103,87,107,120,105,106,109,104,90,103,108,95,104,102,108,105,103,106,110,112,103,101,106,107,102,103,110,106,88,91,119,99,101,87,95,105,100,102,105,110,111,95,100,106,109,96,102,98,103,102,100,107,109,103,116,104,100,103,114,98,102,97,107,106,112,100,99,104,109,112,104,97,112,103,80,101,105,115,104,94,110,104,103,96,117,123,128,110,99,90,109,99,102,93,113,105,86,103,89,103,111,94,104,118,111,101,97,98,98,107,105,110,95,109,99,94,104,102,105,113,91,102,100,104,108,106,102,88,104,111,107,107,105,103,103,108,103,76,115,102,95,86,88,113,86,111,106,100,104,101,98,113,108,94,88,78,101,99,110,125,116,104,96,93,104,100,98,114,112,95,103,100,105,109,98,100,95,104,104,101,93,104,100,99,98,109,105,107,109,112,111,103,107,102,106,98,108,100,102,84,109,93,101,104,92,103,97,98,106,105,98,93,108,119,89,96,113,104,103,128,88,88,110,95,116,106,94,104,96,96,101,95,99,101,101,102,95,104,97,116,113,106,105,98,94,111,115,100,100,104,107,100,95,83,105,104,100,121,101,108,102,121,103,107,105,93,104,101,101,107,97,90,109,97,101,99,106,89,104,95,102,99,103,107,112,87,95,104,99,104,98,101,106,99,107,104,104,103,106,106,109,115,105,124,113,98,103,95,100,115,116,104,111,111,91,108,108,108,101,114,111,103,102,90,101,103,105,99,107,111,94,109,112,89,95,113,106,109,116,99,106,108,105,100,115,96,108,109,95,103,87,66,105,111,103,113,102,106,103,108,103,95,74,98,95,105,101,93,104,91,102,118,112,107,95,101,105,108,110,101,102,103,105,95,119,97,99,116,105,96,105,108,91,108,116,105,97,110,99,94,113,105,103,111,102,104,110,118,98,95,97,103,115,104,100,105,91,110,103,106,95,106,98,104,95,104,99,99,95,99,113,101,79,96,103,92,91,100,102,91,109,103,102,106,95,108,106,96,112,106,113,116,104,94,99,96,110,104,99,108,105,108,106,97,92,103,108,113,113,108,105,106,86,102,107,107,102,115,99,113,112,100,107,106,88,114,105,94,108,102,106,114,96,94,92,102,91,109,103,104,90,98,100,99,96,91,96,100,98,104,110,102,105,107,106,114,102,97,98,96,107,108,103,135,92,106,108,98,106,103,112,106,88,101,110,109,108,99,97,102,104,94,103,97,107,97,103,111,95,86,107,94,92,105,100,106,115,121,97,106,87,98,92,109,113,107,102,97,91,105,106,109,101,99,89,106,98,103,101,102,102,95,105,91,114,112,101,96,108,90,108,95,110,101,107,110,89,91,111,102,99,104,117,104,99,90,96,99,119,87,82,103,104,99,102,106,106,93,105,107,91,108,107,103,107,103,105,114,104,111,103,96,136,100,106,110,105,92,103,109,96,102,102,97,110,99,99,107,108,101,106,107,112,107,90,101,101,113,95,97,103,94,92,101,116,109,108,109,102,97,98,103,90,81,105,105,81,94,104,101,99,105,106,107,112,102,108,103,108,63,99,90,98,104,103,110,93,93,100,107,105,112,109,112,107,97,102,88,102,104,101,98,114,106,111,105,105,99,104,102,116,107,104,107,106,100,92,115,108,92,103,95,94,105,89,108,109,74,100,110,99,98,113,110,104,98,106,105,100,97,102,117,91,139,112,94,111,111,99,116,119,97,102,101,104,99,116,87,103,106,98,98,100,92,96,104,105,122,109,101,101,105,108,106,112,103,108,88,109,104,103,105,99,109,101,97,116,105,104,94,107,106,88,73,101,98,101,98,110,107,98,105,111,104,97,101,104,99,99,111,109,106,98,107,100,117,94,112,100,105,109,117,103,102,93,100,95,102,102,94,105,102,106,105,116,101,89,96,99,96,101,106,103,104,101,124,103,102,100,111,105,107,94,106,110,106,114,88,117,104,110,106,101,92,99,90,102,95,100,99,105,84,111,100,99,112,95,100,102,102,102,94,114,98,102,102,116,120,89,99,106,101,110,114,112,103,101,96,93,109,117,104,108,109,93,93,95,101,106,100,104,92,87,104,100,111,91,105,107,119,113,122,99,111,100,106,101,106,98,101,104,102,108,91,113, +664.52557,89,117,105,86,95,102,100,87,100,96,97,89,105,99,100,114,99,105,106,95,94,97,109,98,100,106,109,79,110,96,105,113,79,98,92,95,116,93,106,98,101,109,112,103,103,103,137,102,101,100,102,101,93,84,103,121,105,103,103,92,93,104,98,104,118,107,90,117,98,110,114,104,112,101,99,106,113,88,105,91,95,107,96,108,90,96,99,101,101,104,98,103,62,96,105,111,94,98,104,106,101,94,97,93,98,101,93,107,100,134,100,96,106,96,98,92,95,122,106,123,95,99,94,113,102,104,98,95,103,101,103,94,100,100,113,99,104,98,100,93,91,108,109,97,108,97,101,102,104,109,92,116,93,95,97,98,110,88,104,95,84,118,121,100,116,116,96,92,103,107,94,90,104,104,95,91,108,104,101,105,97,92,105,112,110,102,101,99,110,106,98,105,103,95,100,102,99,106,103,99,111,106,91,121,102,90,103,100,106,106,99,104,107,107,100,99,107,98,98,105,107,104,101,99,104,117,106,108,109,100,113,114,94,121,109,105,104,95,106,104,112,103,107,104,98,106,100,107,104,99,97,111,102,108,117,97,101,101,97,109,96,104,100,96,101,89,98,67,113,108,102,91,111,87,106,98,95,99,87,96,101,120,93,113,97,99,101,105,94,94,96,100,109,106,101,101,108,104,100,113,102,101,100,113,110,109,103,112,101,108,98,116,100,100,90,102,105,107,99,112,104,102,98,106,101,87,90,91,104,107,106,90,100,98,107,105,98,96,96,108,102,105,128,98,98,110,99,115,95,108,114,95,92,101,97,104,116,105,110,104,95,103,94,98,108,91,106,102,92,108,100,99,100,106,106,92,97,100,110,105,100,96,104,110,103,103,96,110,113,114,107,84,101,113,96,94,100,93,114,100,113,101,98,99,94,106,111,100,96,101,98,96,109,113,106,95,119,91,105,104,90,88,102,112,109,101,93,89,96,100,104,106,101,95,106,99,112,105,105,118,107,107,104,103,93,109,110,97,107,127,98,105,95,102,93,100,107,115,101,105,96,95,115,108,104,113,93,98,101,105,104,101,86,103,106,105,94,102,106,110,100,118,113,96,110,107,101,105,103,108,103,105,109,96,87,98,116,96,115,102,100,98,99,96,111,103,101,101,107,116,106,100,96,102,118,91,103,101,99,97,124,99,111,100,103,114,108,101,105,97,100,102,105,111,92,111,102,95,108,113,94,96,101,105,94,92,109,106,101,103,101,110,98,97,102,86,95,100,101,102,104,114,108,105,99,104,108,105,101,104,101,108,102,108,106,109,95,102,105,88,105,91,104,113,105,95,121,106,102,95,101,103,102,107,92,107,99,96,115,99,102,96,105,102,98,108,99,98,107,112,104,109,103,103,102,98,107,88,108,98,93,113,110,87,71,99,105,108,108,95,95,115,99,101,100,91,83,91,100,112,111,100,105,101,113,101,109,99,99,95,95,99,103,94,102,99,118,113,117,105,94,95,115,107,93,96,107,99,102,97,112,124,100,100,105,112,111,106,99,95,95,132,105,107,91,94,101,104,87,101,104,106,99,108,94,72,118,103,107,108,104,102,104,100,105,113,101,102,88,96,109,112,102,98,98,99,98,110,108,99,102,89,96,103,113,110,92,112,111,112,100,103,102,90,88,105,105,112,107,92,105,98,105,106,95,110,108,101,97,93,86,123,100,109,125,104,96,106,105,108,106,90,93,109,96,102,99,107,109,96,96,104,103,104,96,99,94,113,103,105,96,95,111,102,100,99,113,102,94,99,116,101,96,70,105,104,97,108,66,91,101,87,98,116,101,112,100,99,104,89,124,116,102,102,109,94,102,139,102,99,108,110,111,98,97,99,105,94,105,99,106,106,108,89,120,96,98,101,99,79,104,101,104,93,101,109,101,81,103,93,110,97,95,100,96,101,94,109,95,97,92,104,103,96,107,95,106,105,105,103,112,89,101,107,115,113,97,98,102,109,109,108,114,102,106,105,109,98,102,107,102,105,97,108,110,125,94,105,80,106,96,103,101,103,105,101,107,107,97,98,92,116,123,102,106,101,102,108,100,98,104,110,103,104,110,112,107,104,103,106,107,109,99,100,103,107,113,116,100,104,102,106,99,101,95,113,104,102,111,98,101,94,94,115,111,96,113,99,93,107,104,101,95,108,105,118,104,107,115,108,99,96,97,100,90,108,97,97,93,102,105,99,88,100,101,98,108,106,88,113,101,117,103,114,102,117,100,96,107,112,101,98,99,108,105,117,113,100,105,96,96,99,99,101,114,109,101,107,100,99,90,100,100,96,109,92,117,98,103,94,104,102,102,96,113,99,104,106,110,100,99,101,114,98,105,100,117,88,97,109,98,119,116,107,101,109,89,126,105,97,103,109,99,108,100,104,105,105,91,104,93,112,96,103,113,113,106,114,86,96,109,97,98,96,109,98,109,83,113,109,109,116,109,100,101,97,103,94,109,103,98,112,101,100,111,106,107,111,107,87,99,120,101,105,109,100,109,108,95,123,108,106,107,101,108,107,88,107,109,104,117,107,101,105,69,110,93,87,105,113,95,94,91,112,112,102,109,92,113,96,94,108,111,121,91,94,93,105,112,102,105,109,90,98,128,105,96,102,93,90,117,102,112,102,109,97,101,97,108,98,98,126,101,108,109,109,120,99,96,91,100,109,110,110,117,108,89,106,108,111,102,88,108,96,110,108,99,104,111,109,104,117,100,101,112,110,125,116,109,104,102,106,102,98,99,114,106,109,106,105,105,107,92,103,109,107,95,104,97,102,106,111,121,91,109,110,98,98,118,99,106,92,110,89,94,104,105,109,102,112,120,98,98,101,109,96,113,108,96,100,105,109,84,110,100,97,104,110,113,103,97,111,109,107,95,111,122,91,109,109,101,104,94,91,106,93,101,98,97,90,105,108,95,106,104,105,102,113,104,92,135,96,100,95,103,100,124,110,103,93,116,101,111,96,117,103,107,104,101,106,101,92,87,100,117,109,99,92,96,102,110,100,105,92,103,116,117,83,109,124,103,113,130,102,102,110,91,107,112,87,100,100,106,96,116,94,106,109,102,106,110,93,102,110,113,98,103,95,104,103,110,93,108,97,103,95,109,85,111,102,100,92,99,109,112,101,109,101,96,101,98,116,91,108,99,100,111,106,102,104,100,105,98,122,103,101,96,102,113,109,99,100,97,113,106,94,75,99,91,91,104,104,106,113,108,100,99,112,102,107,102,103,110,95,117,104,113,91,106,103,115,95,103,91,102,100,105,116,94,105,98,105,106,109,95,108,104,107,91,95,103,108,90,99,96,108,112,99,100,96,93,121,90,93,100,112,97,102,103,110,109,94,89,95,92,109,104,110,102,97,105,94,97,84,108,78,68,90,105,105,84,91,105,104,103,105,93,105,99,95,100,103,111,96,95,99,97,95,97,96,107,107,90,96,113,99,90,100,110,98,107,105,106,109,102,105,98,107,99,100,101,116,104,109,101,87,104,104,100,108,103,100,95,105,106,106,98,102,104,106,125,100,105,98,107,104,116,97,117,100,102,97,73,101,102,84,91,95,110,107,103,108,95,111,105,92,113,106,108,103,97,92,82,104,99,87,101,103,116,110,98,108,100,109,106,108,101,101,99,94,106,109,90,116,96,101,113,96,106,107,108,105,102,110,93,113,97,101,94,101,113,96,111,99,99,108,104,112,88,92,91,117,107,94,99,108,109,115,108,103,99,112,105,102,103,118,97,101,100,96,95,91,103,95,106,112,110,91,93,99,108,110,94,87,107,106,96,98,100,115,111,101,95,102,96,108,110,106,95,96,95,101,94,105,91,107,106,109,99,109,94,105,95,113,100,96,108,102,113,100,100,105,91,116,91,106,98,106,94,103,101,102,110,104,91,106,113,99,85,106,99,103,109,102,79,99,102,109,100,110,93,104,108,94,114,105,103,96,92,105,97,94,90,111,103,103,90,85,110,103,102,102,102,95,113,101,116,87,112,104,100,95,104,91,91,96,108,114,107,113,112,108,101,106,113,103,103,97,111,106,102,108,102,107,106,105,117,80,83,83,92,94,111,109,102,105,105,105,99,77,106,98,109,107,91,97,101,102,97,104,91,99,100,104,110,89,107,104,107,101,100,102,104,86,114,118,90,109,112,100,102,97,101,109,108,101,107,103,134,116,108,100,108,109,95,92,96,112,109,98,105,106,112,110,103,97,108,98,102,113,108,108,101,106,98,89,103,121,95,110,108,103,94,111,99,100,105,101,107,112,111,94,119,101,103,109,121,108,91,90,111,107,104,107,102,118,102,118,74,96,108,105,98,107,108,94,110,124,103,98,114,104,95,129,106,106,111,105,98,91,105,105,105,97,113,93,96,106,98,92,112,100,98,93,105,103,103,104,103,99,95,109,95,100,103,100,104,100,114,102,109,108,99,106,108,105,71,98,104,111,110,106,103,113,100,112,103,101,105,92,96,97,111,108,102,98,108,113,103,105,111,129,103,103,101,102,106,101,108,102,77,110,94,103,103,99,104,96,82,104,101,95,110,101,102,114,98,105,93,102,102,112,92,100,105,100,110,107,107,106,107,102,104,98,93,93,115,105,107,96,98,100,107,107,96,97,113,103,108,135,91,87,106,105,111,106,100,105,97,92,109,104,101,103,97,100,109,109,110,77,96,106,96,99,99,109,81,89,95,111,112,90,91,111,105,95,97,112,109,105,106,103,83,96,109,99,101,103,94,97,98,99,93,109,99,103,95,116,100,104,96,101,107,108,95,112,110,117,97,104,93,103,102,90,99,99,95,104,124,114,106,96,127,108,113,90,94,109,129,107,106,89,101,111,101,104,107,98,101,108, +664.66681,103,90,105,92,101,112,98,108,110,102,103,108,100,91,104,112,86,96,113,98,108,103,116,92,103,121,105,98,108,96,107,105,129,102,94,104,100,126,99,112,102,107,104,103,108,111,91,97,98,113,104,102,90,97,106,98,87,99,117,103,107,98,101,102,95,102,113,106,105,99,111,106,95,96,107,116,97,95,97,94,108,118,106,112,104,100,116,111,110,105,99,99,99,106,110,104,112,102,91,111,97,113,79,95,107,101,107,99,97,94,95,95,93,106,96,100,102,107,104,102,97,104,94,111,107,94,118,105,101,97,90,120,84,107,100,110,101,127,104,96,110,108,91,106,101,106,106,86,102,102,99,106,103,98,94,105,100,110,100,110,106,78,101,106,86,103,114,98,92,87,101,107,106,104,97,97,107,94,141,110,108,99,103,102,85,109,91,95,104,101,107,98,77,113,111,91,94,107,105,108,103,106,96,101,100,101,103,96,110,97,74,101,113,112,99,99,102,101,95,107,108,116,109,96,100,106,104,106,108,115,109,107,94,110,100,98,106,104,101,103,100,94,98,94,90,107,98,120,102,98,111,107,100,121,95,114,100,105,94,103,117,95,105,108,95,102,88,112,107,98,116,99,107,94,117,100,75,109,108,111,98,102,145,131,100,107,102,110,98,102,119,108,104,125,113,113,107,125,108,100,97,90,109,108,99,102,97,111,104,107,88,108,92,111,103,94,104,102,95,100,100,96,113,90,129,97,101,98,107,106,104,104,104,109,105,103,104,96,96,109,104,104,102,100,110,107,93,110,111,85,99,104,90,118,106,111,105,101,99,108,101,105,90,106,115,94,114,110,103,92,94,100,109,105,125,106,99,96,104,108,106,103,97,109,96,110,89,107,104,99,99,91,94,94,100,102,100,73,103,105,102,95,102,101,106,93,97,112,106,99,109,105,102,100,111,97,115,103,109,100,98,92,119,104,109,95,105,81,99,111,89,97,103,116,100,110,98,83,100,99,106,107,100,102,86,101,104,115,102,105,97,105,125,102,105,95,102,95,102,106,96,109,99,105,104,116,95,102,97,104,103,90,90,101,115,96,104,108,104,112,94,106,106,94,109,99,101,102,95,96,104,95,110,108,103,113,98,105,106,108,91,106,106,106,118,107,97,100,98,106,107,101,102,95,107,111,102,109,111,82,101,97,110,100,94,110,93,65,100,96,97,121,109,105,98,111,95,98,102,107,106,97,98,99,112,99,113,99,119,100,114,106,104,118,109,93,105,108,113,105,106,114,117,103,106,96,113,106,102,113,104,96,94,112,97,93,105,104,95,105,130,105,121,95,96,100,114,105,108,105,108,102,110,105,102,97,96,119,107,110,107,99,89,109,101,86,93,97,111,96,103,113,107,102,112,109,107,90,114,99,110,103,100,101,109,88,101,97,120,98,115,104,93,103,105,100,99,110,100,113,103,98,121,107,98,95,102,89,95,110,98,109,110,84,106,105,107,110,105,102,87,113,110,109,93,100,113,108,100,103,111,107,108,109,96,103,100,95,100,102,110,108,105,105,98,110,95,104,107,99,107,108,103,91,101,95,100,90,109,97,91,89,88,107,110,98,106,110,96,100,103,105,112,93,104,99,104,104,105,90,96,92,104,111,97,110,91,101,98,103,113,106,101,98,102,106,97,104,99,102,108,111,103,104,106,106,103,105,100,103,101,102,105,110,106,100,97,95,100,106,87,107,93,107,90,101,99,85,98,89,100,102,114,92,110,105,106,100,104,105,107,103,112,109,105,117,96,108,106,103,116,112,100,74,105,106,96,107,107,113,83,105,101,96,101,109,105,95,113,99,120,98,103,105,105,97,105,104,104,102,97,106,97,93,97,109,101,101,110,91,108,92,99,108,111,104,103,99,72,89,88,107,106,94,109,105,97,97,111,94,91,109,98,100,99,98,102,102,94,109,102,113,97,100,119,87,89,82,105,111,86,107,110,112,104,103,112,104,101,98,112,109,101,93,100,99,104,100,106,100,79,107,106,97,102,97,106,102,103,107,97,104,98,98,106,97,96,99,99,99,98,110,108,111,101,111,106,98,113,104,110,103,117,108,98,103,105,100,105,91,105,99,114,104,108,117,91,107,107,116,94,107,101,94,99,117,105,106,96,101,112,91,104,103,101,98,95,105,95,118,113,102,96,101,96,99,90,104,97,91,101,128,99,102,98,105,101,98,101,98,99,117,103,93,115,111,97,99,112,113,103,107,107,103,97,98,94,97,95,109,113,105,98,101,115,105,84,113,87,111,91,112,105,105,102,102,108,103,105,108,108,90,108,104,113,96,103,109,103,101,102,84,106,101,102,105,103,144,99,96,103,101,110,106,100,106,110,116,97,82,121,106,114,102,105,96,100,95,118,103,96,111,105,109,105,109,94,111,86,88,107,106,110,86,101,103,106,111,100,94,100,113,105,101,109,81,96,95,106,106,99,106,96,84,104,82,104,83,114,117,100,96,109,115,103,109,110,106,111,106,105,108,99,98,112,98,88,100,102,108,98,102,100,111,101,99,92,110,106,100,107,121,112,98,102,99,109,94,103,99,113,103,97,108,104,98,116,100,114,107,106,109,125,107,104,97,88,102,92,113,112,101,108,99,107,115,105,104,111,101,104,119,110,129,110,94,103,102,103,102,99,108,102,100,102,112,106,104,108,102,104,99,101,110,105,94,100,99,96,88,98,109,105,105,116,115,99,107,102,113,105,103,95,112,110,113,95,105,110,112,99,108,99,98,104,95,103,79,114,111,97,80,117,103,107,107,114,106,101,115,108,108,109,98,104,103,97,116,111,97,100,91,110,112,102,100,92,109,94,97,101,98,94,108,105,91,100,109,104,99,102,106,99,102,109,101,105,105,101,102,109,95,87,109,125,102,99,96,119,100,108,111,112,107,101,106,103,96,106,120,110,103,106,103,102,100,103,105,96,98,88,109,103,84,93,105,113,106,103,98,104,103,93,106,116,93,99,96,108,96,103,99,95,104,105,103,105,124,102,102,105,102,106,118,109,102,108,96,103,116,110,97,118,116,102,99,113,102,117,116,109,95,95,110,114,101,101,79,102,101,97,100,107,107,106,96,106,113,108,102,106,93,102,96,104,117,102,104,105,102,103,72,99,90,103,103,106,102,100,102,101,100,124,108,91,120,99,113,111,103,94,98,107,102,101,100,104,101,95,110,100,95,105,99,89,101,96,98,97,99,120,106,103,101,108,105,106,94,104,103,98,105,113,108,109,99,96,108,104,101,102,119,126,107,99,110,99,96,106,91,109,116,105,106,107,102,109,111,99,112,95,106,97,89,106,109,101,111,117,103,96,99,97,99,119,99,100,100,115,105,99,94,96,102,96,111,97,107,98,104,103,93,103,100,113,95,104,96,112,101,106,98,103,103,99,100,116,105,96,94,91,96,103,95,94,102,106,109,98,89,102,98,98,105,102,98,105,94,110,111,107,104,107,120,101,105,108,114,114,107,101,98,92,103,89,99,107,112,102,90,98,99,101,100,113,103,108,111,104,104,105,91,94,113,118,96,103,107,106,103,104,96,103,111,108,98,99,95,112,111,100,101,108,113,114,109,107,100,110,117,112,104,104,103,117,100,111,100,98,116,97,100,92,116,94,105,96,101,112,103,105,103,99,105,99,100,105,112,102,95,107,99,99,104,99,99,105,109,102,99,106,119,104,100,104,98,101,99,91,116,105,112,98,102,99,115,111,113,107,77,117,95,109,110,121,96,100,110,106,108,101,99,109,127,102,93,106,110,93,105,135,95,101,100,102,116,111,105,98,104,104,95,109,100,101,103,97,109,105,109,106,116,95,94,102,114,119,102,91,86,96,96,94,104,114,95,87,105,99,103,108,106,105,99,115,107,107,98,82,103,108,106,104,98,128,128,103,108,104,101,99,94,97,114,104,102,118,104,101,102,108,114,95,103,125,76,109,111,104,96,112,97,112,99,116,104,86,110,104,102,109,97,101,103,103,95,102,98,100,97,112,91,103,103,104,106,100,86,103,92,99,98,105,107,98,105,100,101,119,114,84,99,97,102,104,110,107,104,103,101,106,96,107,111,109,103,103,93,98,112,104,117,111,105,103,100,101,99,108,110,113,99,104,97,100,102,94,101,104,105,104,104,98,118,101,109,98,98,109,95,111,111,108,103,104,94,102,98,99,91,112,95,105,107,99,99,108,122,111,87,127,100,100,103,100,105,102,101,97,115,104,103,112,106,104,103,100,108,95,119,107,102,97,95,107,107,101,100,96,96,106,91,113,102,117,112,97,103,102,100,106,112,103,91,113,97,106,96,98,96,103,103,77,116,98,100,91,102,113,105,115,119,107,109,122,104,100,113,105,109,106,98,74,106,94,96,103,102,104,98,105,112,100,93,80,119,87,105,106,102,126,99,100,109,99,83,98,104,99,96,94,89,121,107,85,116,89,102,101,95,88,95,92,104,99,72,107,102,108,101,91,101,97,77,111,108,103,98,113,107,110,110,96,113,102,89,85,101,108,103,78,92,108,103,101,108,110,105,94,93,106,97,97,99,109,109,105,115,99,100,92,106,108,99,116,101,126,105,108,105,106,116,115,74,103,112,113,104,109,99,101,112,103,103,94,116,99,105,111,100,107,122,93,82,98,97,98,104,98,96,104,109,110,110,97,97,82,109,111,90,98,110,100,110,113,106,99,84,104,105,98,102,110,110,103,108,96,102,95,100,103,73,105,98,102,110,104,92,109,97,110,92,99,114,100,95,107,110,91,96,100,108,101,107,101,93,106,107,97,85,111,107,101,103,102,98,93,109,98,94,119,108,94,101,101,106,105,111,109,91,102,107,95,109,97,105,97,106,100,99, +664.80804,107,103,105,101,110,89,91,102,99,104,106,92,119,88,103,89,81,104,96,101,100,113,81,105,88,101,109,103,94,109,97,93,103,100,110,108,99,96,107,98,101,97,102,90,98,107,107,98,101,88,96,77,97,103,99,87,93,97,108,74,87,108,97,120,95,102,83,91,96,98,91,97,99,107,108,116,98,85,90,104,98,98,104,97,115,85,91,95,102,102,99,96,96,104,101,89,103,95,98,84,93,110,97,98,95,99,106,113,103,103,94,96,105,95,98,92,110,100,94,102,116,103,98,111,112,109,95,97,104,108,101,107,94,105,89,106,99,99,94,95,95,110,102,97,102,105,97,102,112,96,105,98,118,98,100,100,99,76,120,74,105,105,99,103,93,99,93,95,100,96,99,108,83,105,99,102,94,111,122,104,104,95,103,115,110,95,101,132,105,108,104,114,95,90,102,100,98,92,97,84,95,97,107,96,103,107,99,92,95,109,103,107,109,108,93,97,97,99,98,104,105,103,94,94,88,106,98,96,87,95,96,131,91,96,105,92,102,106,97,102,108,102,111,96,95,102,92,103,112,98,101,96,104,99,102,109,102,105,100,104,98,107,91,101,102,102,94,69,91,107,98,111,103,95,103,110,97,108,108,96,113,99,101,104,99,96,97,94,101,98,98,101,111,102,98,97,105,105,112,104,98,118,98,69,95,125,87,109,88,111,96,98,100,104,98,95,110,104,89,100,99,111,126,101,104,86,103,91,104,100,105,103,108,100,102,93,97,101,99,102,97,103,101,102,98,107,107,99,101,97,107,113,104,115,85,103,106,101,103,113,112,96,112,95,99,96,101,102,111,102,105,104,89,106,104,92,104,99,102,98,110,122,97,106,107,110,105,102,103,103,101,98,103,113,104,100,96,95,105,108,105,100,108,93,97,96,96,114,92,91,96,99,104,97,95,99,103,99,100,116,98,95,106,110,96,82,103,89,97,98,103,102,118,107,102,92,109,99,94,97,105,101,100,113,94,99,100,102,102,105,98,104,103,101,97,97,107,109,121,110,99,103,99,97,97,105,113,77,108,99,103,101,103,110,101,108,98,106,100,108,90,106,110,100,97,114,96,104,96,96,105,99,109,94,95,103,104,108,100,101,132,102,97,101,109,103,98,104,96,104,101,104,87,99,97,106,96,96,108,112,102,103,94,121,107,101,98,103,105,90,96,102,98,97,92,116,98,101,117,87,100,94,104,110,110,101,100,95,109,113,99,92,104,113,92,101,98,105,92,104,103,112,107,103,102,91,101,112,98,92,93,105,93,101,103,104,99,99,106,93,96,103,97,100,95,106,96,92,106,101,113,114,104,90,95,96,96,102,107,104,100,117,94,112,105,96,89,93,115,103,90,104,110,112,98,111,99,106,104,100,98,105,97,102,110,100,98,102,111,102,105,118,106,95,88,113,107,64,93,95,106,106,105,100,94,102,99,99,115,100,102,102,97,92,120,110,105,99,99,97,105,95,106,98,103,91,111,96,90,97,99,105,109,98,95,99,94,94,99,86,104,99,100,87,101,101,92,94,108,109,109,104,93,106,107,108,113,104,109,103,79,111,102,99,93,112,100,113,108,106,105,100,104,108,107,82,101,104,100,100,98,96,100,113,100,98,107,105,100,108,119,102,99,96,94,98,110,108,93,107,105,95,97,99,103,96,102,94,97,114,94,101,103,97,96,91,92,97,116,109,111,105,93,109,91,112,93,98,102,118,104,101,118,97,89,98,104,106,98,100,99,97,105,101,101,101,111,97,118,104,98,95,93,107,102,99,95,109,87,63,93,97,103,102,95,110,102,103,101,100,98,104,91,88,114,92,105,116,106,97,103,105,104,101,107,101,116,96,111,104,109,104,108,98,97,104,97,105,109,98,106,99,109,109,105,87,99,103,98,100,101,101,100,100,89,87,106,108,99,108,98,101,101,103,109,99,101,110,91,102,101,96,114,101,105,95,83,104,106,115,94,104,100,105,106,105,105,112,102,98,118,108,106,100,95,120,109,97,86,102,84,110,113,114,123,91,105,107,97,95,107,104,100,104,108,97,100,115,94,100,103,103,107,99,100,110,102,110,123,102,101,109,106,113,80,102,99,103,97,106,108,102,103,99,90,92,98,111,109,101,96,99,106,114,104,99,107,99,99,94,111,107,102,101,93,110,101,103,113,88,106,110,94,100,100,101,97,101,91,98,88,101,96,99,106,95,95,101,98,102,104,106,100,106,104,95,115,105,96,109,99,110,95,99,100,93,98,116,94,111,101,94,94,108,94,104,100,102,93,106,112,101,107,117,106,105,85,100,109,99,93,103,98,86,104,99,100,106,108,106,116,100,106,103,94,100,96,103,113,101,94,100,109,102,98,98,95,95,113,94,97,100,99,117,102,105,100,109,93,101,93,111,91,107,96,102,103,94,106,94,100,112,98,105,106,100,108,94,106,101,96,113,111,103,96,92,102,107,106,101,91,91,103,104,105,101,108,98,103,104,89,118,112,105,101,106,99,82,83,99,102,107,105,97,100,109,106,105,107,126,116,107,107,92,110,104,92,95,109,110,105,98,103,106,97,82,105,103,109,97,114,112,117,94,98,97,109,109,103,104,96,111,108,86,105,106,104,110,111,111,106,105,101,114,91,102,109,89,102,108,95,92,91,97,100,110,108,96,98,111,106,107,104,100,100,95,109,98,105,105,106,111,108,100,98,120,106,96,91,108,104,96,103,106,102,104,102,111,78,106,112,94,116,103,109,106,100,107,98,102,114,94,95,113,106,105,111,105,104,108,113,101,102,97,84,115,103,127,97,98,117,98,98,106,101,116,107,102,114,113,114,114,75,106,99,99,108,93,112,100,111,101,101,103,109,105,96,98,121,107,103,105,125,100,117,106,101,94,114,106,113,106,113,98,107,107,100,106,105,100,108,111,102,108,101,115,99,105,109,104,102,96,106,95,110,107,111,103,99,104,97,82,110,111,113,117,103,111,88,115,100,95,97,103,107,125,116,105,100,100,98,115,106,101,102,95,100,99,114,108,98,117,105,99,110,115,82,106,105,96,105,101,94,111,100,94,101,102,95,101,106,104,103,103,112,101,91,104,114,92,102,106,97,109,98,115,103,101,101,103,105,115,103,111,99,100,109,105,106,103,106,108,86,140,113,110,116,105,106,107,99,117,97,106,110,100,112,102,101,120,110,110,104,91,106,110,104,115,110,105,111,103,100,87,112,106,101,100,102,105,109,113,106,100,96,105,113,108,119,94,115,101,107,101,113,109,102,101,99,115,84,104,125,95,108,108,98,98,103,102,105,104,91,103,93,105,101,102,109,103,110,97,105,103,94,104,105,99,104,101,102,112,112,94,104,102,98,97,104,106,86,101,83,106,98,111,101,102,105,106,108,103,99,95,101,106,98,103,105,108,107,104,100,106,100,107,100,101,102,100,122,111,103,113,98,107,112,99,108,103,99,104,95,109,98,98,100,105,107,108,135,105,101,112,87,104,109,99,106,96,108,100,100,97,100,102,94,104,97,109,110,101,109,110,104,93,105,102,113,99,104,101,103,102,87,94,95,106,105,98,106,117,113,109,95,112,113,101,105,99,102,96,109,110,101,117,101,114,110,104,97,114,98,116,99,109,106,107,99,98,95,103,103,105,95,102,109,100,102,92,100,109,107,104,103,102,105,105,95,97,102,97,91,107,110,100,98,104,95,101,104,101,120,90,116,100,98,102,102,110,110,102,101,105,111,96,108,100,99,109,92,105,93,107,104,100,107,98,94,95,111,106,99,92,109,107,110,96,97,98,101,97,100,101,92,110,96,94,102,101,92,106,105,97,94,95,111,96,90,104,89,104,109,104,96,98,112,96,106,103,101,106,100,101,92,103,107,85,106,107,97,93,113,92,78,118,96,107,121,96,105,108,116,108,111,89,108,115,97,105,108,103,92,106,103,95,84,102,108,104,107,102,77,93,111,104,102,116,101,109,105,102,102,104,102,110,112,107,117,98,106,115,68,101,106,108,93,106,102,108,101,108,101,103,105,97,99,99,96,97,100,105,108,103,103,131,93,96,110,103,101,98,107,94,108,98,100,99,80,104,107,112,91,104,109,102,105,105,111,114,105,95,100,110,92,107,102,99,118,98,100,117,109,96,100,107,103,111,95,93,112,98,103,105,94,107,106,103,99,104,106,102,109,101,84,109,107,124,98,99,106,99,104,107,99,92,106,92,103,98,102,98,116,117,101,101,103,108,88,108,100,90,107,100,109,100,107,90,104,108,96,105,89,108,94,115,103,92,107,103,96,85,102,108,106,106,89,112,109,94,108,111,116,95,105,99,90,111,105,101,98,102,98,100,95,103,103,91,92,105,94,97,99,105,105,107,99,114,115,111,115,100,105,107,92,100,96,87,99,105,94,108,94,83,98,90,97,103,93,104,104,110,101,98,105,96,112,100,101,107,88,115,100,118,97,107,113,101,107,106,105,108,105,92,93,96,106,98,103,111,102,104,98,102,102,100,100,107,100,98,103,117,107,115,89,108,106,97,104,105,108,91,93,118,100,98,105,110,102,114,113,104,106,116,98,112,111,101,91,99,100,101,102,108,109,108,117,99,98,96,99,101,106,100,106,102,96,105,94,95,92,109,107,108,104,95,99,105,95,103,105,102,108,106,102,104,101,104,99,89,103,100,99,101,93,105,107,111,107,100,100,116,119,105,107,99,105,99,105,104,104,95,105,104,102,129,117,102,110,109,90,117,109,94,108,88,99,108,106,104,108,106,82,97,103,105,103,122,108,114,105,104,97,98,114,107,87,97,125,85,105,105,112,109,98,101,104,99,107,104,105,102,110,104,91,92,115,96,102,101, +664.94928,102,97,102,107,102,102,104,117,92,104,105,106,98,104,105,98,98,104,102,106,108,99,92,106,108,99,83,115,106,96,97,94,95,94,110,98,106,97,92,112,102,102,96,97,92,108,107,94,98,117,104,98,91,106,88,113,90,126,121,87,107,112,96,101,96,107,104,99,89,107,115,104,100,101,102,103,106,109,100,109,106,113,114,105,110,104,111,99,106,105,101,102,101,111,99,109,107,108,113,113,71,96,104,105,100,104,95,103,104,88,91,102,95,92,104,99,107,105,107,97,103,92,99,100,93,108,99,100,111,108,98,102,109,95,108,103,100,105,104,96,108,102,103,97,95,95,106,103,98,93,99,107,97,102,102,103,92,109,115,107,97,108,102,103,109,96,93,95,110,111,104,103,109,101,95,108,108,106,98,104,113,109,107,102,96,101,97,100,100,135,100,112,112,99,115,106,111,105,99,106,109,100,99,94,96,99,97,102,102,66,99,104,101,112,104,110,101,92,99,106,99,94,105,98,95,108,113,105,101,113,96,94,113,92,106,105,101,96,113,107,107,87,109,102,99,97,98,99,109,94,98,97,103,103,95,96,98,87,101,105,106,89,92,98,115,104,110,110,101,98,109,93,108,98,112,118,91,105,103,102,100,97,102,102,97,96,88,109,93,106,101,101,111,108,94,100,97,107,93,93,110,107,103,95,97,105,98,117,105,109,108,102,97,114,103,101,92,109,106,95,114,95,105,107,97,108,101,111,109,103,110,104,103,106,96,104,105,96,101,90,86,118,104,96,101,106,100,100,110,114,113,97,101,94,115,115,114,105,102,111,96,104,113,101,90,111,106,102,102,102,106,98,83,104,95,93,105,98,98,103,109,111,103,104,99,109,95,102,94,93,106,96,105,87,104,101,86,103,101,113,103,114,116,100,102,91,102,101,106,102,102,98,141,101,117,92,98,96,105,91,102,104,94,111,100,110,99,100,101,108,100,99,104,97,97,111,103,114,95,113,101,96,110,100,96,106,102,102,100,90,103,103,117,106,116,97,109,90,89,92,89,103,114,102,106,104,104,97,105,115,101,104,105,101,101,83,89,101,107,107,104,97,108,126,100,108,101,104,97,107,104,97,104,106,103,103,102,105,99,99,105,103,97,109,99,101,104,109,90,94,104,104,99,100,94,110,108,103,102,96,99,102,109,99,112,105,107,114,94,113,112,99,83,116,108,97,104,109,99,102,96,106,82,101,104,105,97,94,102,108,105,96,90,94,111,100,96,95,104,96,92,96,101,94,95,113,115,97,100,93,95,94,100,99,101,99,89,99,110,102,113,92,96,95,97,101,99,99,112,83,103,99,102,91,111,111,105,96,111,99,95,106,92,100,97,93,102,108,105,109,106,108,107,99,102,103,101,107,104,67,108,106,88,86,112,106,94,95,95,107,98,100,106,117,101,103,97,104,102,105,107,99,98,95,102,101,105,110,102,108,96,111,95,104,99,107,115,106,98,94,104,104,102,104,94,87,99,97,101,111,100,83,109,102,96,109,108,138,106,101,106,113,108,93,99,101,95,100,97,99,107,96,103,101,108,104,104,97,101,93,97,104,101,102,104,106,98,111,78,103,105,93,116,108,108,102,96,105,115,100,94,101,85,101,109,98,102,103,98,105,102,90,106,103,102,106,114,101,113,105,99,95,98,109,102,102,99,100,118,104,106,102,100,99,114,97,102,112,103,100,107,102,119,103,98,97,88,109,109,111,96,94,110,91,102,102,104,88,97,96,98,98,124,103,105,109,108,100,104,105,91,104,98,110,109,92,97,104,100,104,101,82,101,129,103,103,108,106,102,111,104,101,107,85,112,95,100,101,105,103,107,102,93,108,125,105,104,96,105,105,104,105,105,104,109,104,71,94,105,110,95,111,109,93,98,89,109,109,98,103,112,115,113,115,91,113,120,102,107,107,89,69,112,99,121,104,94,100,110,103,119,101,119,109,110,115,113,97,103,95,106,104,106,105,97,91,108,113,109,104,102,93,99,93,95,101,99,117,102,117,105,101,112,96,105,127,98,109,95,88,93,96,114,103,109,84,107,95,95,100,104,108,100,91,109,85,101,97,99,103,107,97,99,101,105,106,102,96,75,100,105,109,96,104,69,89,87,99,97,118,113,105,100,104,104,111,118,111,98,115,92,92,98,111,107,104,100,99,104,102,97,105,108,108,104,86,97,90,102,102,99,94,107,96,91,110,103,112,103,100,91,101,105,96,101,107,102,100,99,98,92,107,91,104,99,114,100,112,91,114,99,106,98,103,97,104,112,102,102,109,103,112,107,90,112,103,110,104,104,91,115,99,113,99,98,96,111,98,111,98,113,109,99,117,104,87,103,95,93,110,108,120,113,94,107,108,102,101,101,91,104,107,96,104,108,96,90,98,101,103,113,102,108,105,109,111,118,101,98,93,98,116,117,104,108,106,139,98,96,95,97,112,108,84,99,100,109,110,104,110,99,107,99,99,87,110,99,101,109,107,95,116,100,110,100,104,100,115,108,105,97,103,116,108,104,108,97,89,105,113,114,98,106,101,92,105,85,107,109,97,114,100,99,102,108,97,96,115,107,96,102,110,105,96,103,97,112,104,107,109,84,97,109,82,91,110,107,111,101,107,101,100,106,77,89,106,98,115,101,108,102,104,112,106,101,103,107,102,108,105,90,96,75,101,101,107,103,99,99,95,95,97,96,107,87,111,108,109,107,100,102,109,88,101,108,105,106,100,96,97,112,104,100,86,101,99,92,115,112,111,107,111,98,107,109,102,103,111,106,104,92,101,106,100,103,103,107,104,102,96,116,100,100,100,109,106,107,103,105,111,98,107,102,101,124,102,112,103,109,102,82,101,104,111,110,104,114,91,99,112,103,108,98,87,109,103,102,95,98,95,94,107,97,102,107,113,101,95,98,95,112,108,104,105,112,105,105,106,99,87,100,118,107,103,117,105,109,103,99,95,114,103,99,104,107,94,117,105,108,113,98,96,102,106,115,134,106,100,98,98,111,116,113,113,105,108,97,111,106,103,102,98,97,109,93,94,99,105,99,107,112,112,105,90,101,105,108,120,103,98,117,113,101,99,99,102,110,102,102,105,78,101,91,105,99,105,96,108,101,96,109,112,123,106,105,108,100,102,117,118,104,112,106,117,111,115,112,107,103,99,106,98,100,104,97,105,102,113,110,109,113,113,101,105,104,98,103,110,107,115,99,107,105,101,108,106,103,98,103,109,108,104,105,103,105,112,107,95,97,98,96,102,99,95,95,96,117,97,106,100,101,103,119,96,112,110,99,117,108,107,87,113,98,103,115,100,108,112,106,111,102,83,101,101,103,109,112,103,94,101,108,95,91,111,124,106,107,112,95,102,99,103,106,107,116,106,97,103,91,113,105,106,95,103,96,104,94,94,73,105,108,102,98,94,114,103,102,102,96,89,115,109,105,101,101,103,118,104,105,98,113,99,105,111,96,111,103,95,97,101,119,103,97,99,94,109,109,100,101,98,95,95,113,103,112,95,100,88,108,98,105,103,94,103,95,112,93,93,101,102,99,99,105,108,91,109,106,96,100,86,99,113,111,108,121,99,103,92,110,117,94,107,92,100,92,98,99,99,88,105,93,116,106,107,96,102,104,99,93,102,109,122,103,103,90,99,109,97,105,103,92,102,111,103,107,123,107,115,109,102,99,104,104,104,100,136,101,104,96,101,96,102,105,97,95,102,102,92,119,115,100,96,98,101,98,102,109,89,101,107,90,100,100,107,103,97,105,105,100,107,109,99,96,101,91,142,96,115,103,107,94,113,108,99,109,112,106,104,107,100,95,104,113,109,101,104,97,101,101,88,89,84,95,103,103,100,105,112,103,103,120,96,94,104,97,108,107,98,101,98,97,96,111,105,106,93,91,104,93,106,100,101,113,92,109,105,102,113,103,117,95,105,116,78,101,96,99,99,95,95,106,102,92,104,116,91,91,96,106,90,99,102,98,97,103,117,93,101,110,102,91,118,105,98,104,116,101,110,104,91,91,93,94,96,100,112,92,105,101,109,110,106,109,99,104,113,103,99,99,99,99,108,120,115,107,96,102,99,104,108,105,101,99,95,101,108,101,116,104,104,90,105,95,113,105,94,106,104,98,97,104,105,99,105,109,113,92,102,110,111,102,104,111,101,100,105,111,119,125,99,104,90,106,92,101,108,95,105,91,96,104,103,105,105,105,102,104,97,109,112,95,100,108,86,99,106,102,110,105,111,99,95,103,104,117,96,96,100,106,99,106,99,97,103,104,106,105,115,101,95,95,102,112,99,104,106,108,108,106,106,101,95,106,98,96,107,107,103,98,104,105,95,116,95,114,102,107,100,90,96,109,95,102,102,111,103,115,103,102,106,98,99,98,76,103,98,95,109,99,95,103,124,104,103,104,108,103,107,105,103,110,103,95,114,96,91,92,89,110,105,101,99,104,104,93,103,136,97,100,104,100,97,104,104,90,103,104,103,98,102,106,102,95,96,86,116,96,106,104,115,99,104,107,105,106,103,106,110,140,90,92,100,97,113,108,99,112,115,102,105,110,110,94,106,108,111,97,103,111,113,110,104,101,110,116,96,97,95,101,99,92,99,102,109,95,109,93,103,93,102,89,110,107,96,116,119,107,95,102,99,108,110,106,95,105,104,108,101,117,80,100,108,94,97,108,102,87,99,99,96,105,107,103,108,109,98,94,109,104,96,110,101,103,99,102,86,111,86,102,112,117,95,95,103,96,103,104,103,115,110,103,107,101,108,95,96,109,116,102,99,113,103,91,104,98,95,92,103,113,99,110,105,99,111,122,114,99,96,93,95,104,95,100,100,102,107,117,103,94,92, +665.09052,95,103,105,99,102,113,107,100,84,93,93,113,88,99,105,109,100,101,97,108,103,112,96,115,101,88,105,109,106,96,112,97,97,75,98,93,100,102,95,102,108,101,102,103,98,96,100,109,109,126,101,112,99,107,95,116,96,100,98,113,101,91,93,106,111,99,83,108,106,102,108,84,116,92,91,91,94,99,98,102,98,113,107,104,99,96,104,105,98,104,101,103,97,102,104,87,95,99,101,102,103,102,105,101,96,79,113,95,100,100,111,99,103,100,94,86,101,102,105,103,102,112,111,108,98,105,105,108,110,103,104,111,103,104,113,99,96,117,94,103,112,114,109,100,85,95,103,97,95,110,100,99,109,86,113,62,83,106,111,97,92,104,104,108,107,100,104,101,103,95,91,110,109,112,93,94,102,97,109,97,103,105,100,104,106,96,95,105,108,107,99,114,107,111,109,99,115,106,100,118,109,97,92,97,93,73,100,109,112,113,96,96,100,102,103,104,99,99,99,99,110,92,103,98,94,98,103,106,105,97,90,103,101,99,104,94,107,98,95,95,102,105,109,105,92,93,105,96,106,94,72,102,102,115,87,93,94,103,106,98,98,100,108,100,97,102,102,105,105,100,111,92,115,96,119,94,95,98,99,102,104,101,100,97,101,107,111,99,103,90,101,103,104,94,102,101,119,103,98,114,102,105,103,112,104,104,83,116,105,108,91,111,94,117,95,101,102,102,105,118,103,95,107,104,110,109,97,104,114,94,104,100,98,107,86,105,116,88,101,102,116,99,100,110,107,99,108,115,112,108,107,107,118,104,107,109,102,107,100,101,99,99,118,96,96,94,99,102,91,106,109,101,116,98,106,101,102,99,100,111,101,101,96,102,108,97,100,98,104,96,88,102,88,115,109,102,109,97,100,102,103,113,107,105,96,98,109,105,114,104,95,104,99,111,104,91,111,92,94,95,90,95,106,113,99,91,88,89,104,103,95,105,93,113,123,133,103,104,103,93,100,97,109,93,94,108,107,94,102,101,93,106,107,104,97,104,97,108,107,102,88,100,99,96,104,104,103,95,110,120,116,100,101,103,111,94,94,99,106,106,98,95,94,109,96,109,122,97,98,98,104,117,113,102,88,116,103,106,95,96,103,106,107,104,100,104,101,102,102,105,104,113,104,100,101,106,103,94,101,99,93,103,99,116,107,85,107,103,100,103,93,101,121,103,113,102,118,108,95,95,103,95,99,95,110,92,102,103,116,99,96,103,102,104,90,95,110,108,95,99,104,105,104,96,101,96,115,106,101,98,96,96,97,104,93,102,105,108,102,103,95,87,92,98,105,111,114,118,82,100,99,103,97,86,109,90,106,98,104,106,98,101,98,103,96,98,109,93,92,105,102,97,105,102,110,89,113,97,111,98,102,105,113,110,106,87,94,114,113,105,92,110,90,111,74,108,112,99,108,109,103,113,93,98,102,107,80,96,107,103,102,105,100,111,102,101,97,95,103,108,105,107,98,114,89,97,117,109,107,103,120,88,108,106,99,112,98,106,108,97,118,101,103,93,104,104,94,110,99,104,99,106,103,105,108,99,99,90,109,88,100,112,95,111,88,99,105,76,101,103,93,94,97,99,91,90,96,118,107,110,110,102,98,111,103,102,104,100,111,110,99,98,96,107,110,86,95,102,112,104,115,100,111,107,88,105,95,98,101,106,102,109,92,99,99,108,99,96,118,88,104,97,104,105,92,106,92,90,103,105,105,108,106,100,100,107,97,101,106,105,99,100,100,107,104,108,100,97,106,110,103,107,104,104,103,107,105,103,104,124,92,104,100,95,108,119,102,103,104,94,90,94,88,106,110,94,108,106,99,92,120,105,106,108,103,108,103,99,100,102,104,106,83,114,92,99,99,96,111,102,109,105,107,107,96,100,92,100,90,102,92,83,70,103,99,105,98,105,101,118,99,93,107,100,108,100,101,102,116,101,105,90,97,103,100,93,105,78,110,104,98,99,101,104,95,112,104,98,103,82,106,102,109,98,100,98,104,111,101,106,106,110,108,98,97,96,101,101,95,104,101,91,99,99,118,107,106,101,93,93,103,100,123,108,98,105,93,97,100,101,99,99,101,99,102,98,99,85,92,122,106,101,112,91,107,106,99,108,100,107,98,101,110,86,101,101,104,100,108,113,100,104,106,104,100,94,109,107,103,113,93,97,94,95,97,104,104,104,92,102,94,101,106,103,95,95,92,100,109,106,98,93,94,102,98,100,93,92,94,104,112,101,104,99,110,97,102,97,107,95,99,102,102,122,95,109,111,102,101,90,114,105,104,93,102,87,120,109,96,104,119,100,103,95,107,99,90,110,91,102,103,107,100,100,98,90,97,112,104,96,110,121,100,98,89,90,112,108,80,95,108,111,111,88,98,92,87,96,100,100,99,104,100,101,102,97,100,109,90,103,95,110,116,103,98,99,102,90,117,111,109,93,105,104,106,105,107,86,105,97,111,96,107,80,104,74,98,110,107,106,114,103,91,93,105,103,84,105,95,101,95,104,104,97,101,101,138,100,104,104,103,105,101,102,106,110,101,89,101,106,97,98,84,113,115,101,105,96,113,95,110,115,105,102,99,95,107,109,93,103,91,105,95,70,107,106,99,99,100,104,105,101,103,115,106,106,120,96,113,95,107,93,103,100,110,111,125,116,98,109,102,97,103,103,106,101,101,99,100,112,91,106,100,114,102,111,106,94,99,107,94,112,104,113,103,106,114,105,97,94,106,113,106,101,100,103,101,97,107,103,100,98,95,109,98,108,96,109,102,115,113,101,106,110,101,112,97,106,104,106,101,106,109,105,101,102,111,99,104,105,102,100,90,110,112,99,111,103,98,105,105,104,108,108,104,99,102,94,109,113,96,111,102,101,113,115,120,100,111,98,105,96,81,95,112,103,90,99,111,91,114,109,90,106,119,108,101,108,101,94,102,105,101,100,113,109,96,108,108,94,108,102,104,101,105,101,111,108,117,83,97,93,104,105,103,94,108,100,103,105,101,117,98,96,109,110,101,112,114,92,87,105,103,112,99,97,108,105,105,98,103,103,102,105,98,94,112,105,103,112,92,98,101,115,102,99,100,105,114,102,114,90,105,112,99,97,111,99,107,101,90,102,100,100,108,101,101,96,106,101,80,98,114,105,110,115,104,97,95,100,99,109,108,103,103,86,103,102,101,100,106,106,90,111,90,102,111,112,107,96,119,96,98,109,110,95,103,106,102,100,104,108,125,98,97,100,104,111,98,98,89,92,107,104,100,101,111,106,100,100,113,94,106,108,109,117,98,94,132,109,105,101,89,104,107,111,101,106,104,108,103,103,113,101,106,107,96,99,98,96,102,110,103,101,122,106,97,107,98,110,100,109,106,114,87,105,119,107,103,111,109,117,101,100,104,98,102,104,97,99,101,109,91,86,101,100,109,103,110,105,107,135,108,105,63,109,106,115,99,101,107,109,105,109,98,109,102,101,101,102,98,100,96,99,102,109,113,108,107,113,96,109,94,138,109,103,97,98,107,109,122,85,101,99,109,96,108,114,101,89,102,103,99,105,103,102,99,91,100,105,101,93,102,109,100,102,101,97,103,92,106,102,105,90,97,102,92,76,103,114,100,110,99,95,103,88,94,108,96,95,99,108,111,108,100,101,93,98,110,113,91,111,96,94,105,99,120,100,96,104,110,91,106,74,117,71,114,110,108,99,106,66,102,100,98,101,114,103,107,102,95,98,100,108,101,102,102,94,104,113,108,101,87,109,102,97,88,103,102,92,93,99,104,90,109,100,109,101,100,98,101,96,83,97,93,102,95,71,109,103,94,117,105,103,91,104,108,98,102,99,107,106,104,103,101,102,103,106,99,101,103,115,98,116,98,101,100,107,102,105,96,92,113,106,100,99,105,108,86,118,105,103,102,110,109,94,100,97,84,124,106,96,109,105,105,103,100,117,110,113,104,106,83,92,97,80,99,110,104,112,103,99,115,113,106,129,103,104,106,98,102,106,101,100,110,110,97,102,94,94,103,99,107,104,101,100,104,100,106,89,97,100,95,100,96,108,97,113,92,108,99,102,109,108,98,106,114,104,105,107,96,111,68,103,108,102,93,100,96,114,101,96,97,102,102,109,94,103,72,87,105,101,113,114,110,104,108,117,103,96,103,105,101,99,106,102,103,93,116,107,110,98,108,112,102,97,111,111,106,95,94,103,110,101,100,117,68,113,88,107,103,102,119,105,115,107,101,107,97,118,98,94,123,95,101,97,109,94,102,109,113,116,102,107,114,98,112,102,92,105,113,95,99,103,107,95,110,107,97,98,107,106,110,108,92,93,113,111,104,103,94,95,95,98,107,104,107,99,106,105,102,96,103,100,109,101,96,102,109,108,105,110,100,100,102,97,97,80,101,96,121,114,101,92,120,102,103,103,99,95,99,99,103,106,105,105,133,106,100,100,82,97,80,114,99,104,113,115,89,121,109,98,105,102,88,105,107,101,105,108,91,109,94,98,105,105,107,116,99,106,93,106,108,108,99,110,102,100,103,105,102,95,100,115,109,109,101,114,117,99,127,110,102,114,110,99,109,116,96,100,103,101,107,106,107,100,113,103,95,113,99,97,102,91,95,110,105,100,102,99,97,104,73,95,94,85,108,111,95,116,104,94,102,110,105,102,108,99,100,102,93,103,108,100,95,115,108,102,108,103,110,103,98,107,102,100,92,99,120,87,99,122,100,95,99,101,113,110,99,104,109,97,119,105,103,105,103,103,95,102,102,101,104,107,115,105,111,107,91,104,111,117,96,63,96,100,84,103,98,99,89,101,113,113,90,95,103,112,101,106,115,109,98,99,103,89,89,102,91,105, +665.23175,86,114,98,99,109,100,118,114,120,107,115,110,109,101,94,96,106,103,106,119,100,86,110,103,95,97,98,100,105,117,105,108,112,104,99,93,93,96,105,106,106,109,100,106,109,106,95,91,100,101,108,99,93,88,95,98,115,112,103,91,104,96,103,91,105,115,108,109,105,90,109,108,94,98,95,102,101,106,103,98,107,112,111,132,103,113,98,108,120,96,101,105,96,108,98,107,97,96,112,99,94,113,105,97,104,94,92,103,97,113,113,118,80,101,92,94,100,114,99,87,103,113,101,107,99,114,109,94,105,104,104,104,102,99,105,108,103,96,99,99,111,109,93,100,93,95,105,108,100,114,93,99,92,89,105,103,104,101,101,88,92,113,98,94,103,103,96,97,123,101,100,108,100,101,97,101,112,110,108,113,98,103,98,99,106,93,92,108,103,85,94,105,114,87,104,108,98,88,113,104,103,100,102,97,97,100,99,104,109,100,89,99,108,103,105,100,97,109,101,102,102,113,104,92,99,100,106,107,99,107,94,113,109,101,106,106,112,104,115,98,92,118,116,114,99,104,86,103,109,107,96,107,106,115,95,113,94,106,115,97,98,98,114,106,96,111,104,121,100,116,100,100,103,103,104,95,102,104,98,106,103,91,99,115,104,113,113,98,96,107,100,106,106,104,101,109,118,88,107,97,107,100,91,118,105,107,107,95,93,110,99,113,125,104,113,97,90,106,92,105,96,98,95,99,106,100,81,102,124,88,106,87,99,106,103,102,107,97,111,102,97,104,101,104,107,107,110,110,108,108,99,112,109,118,104,106,97,114,98,107,108,102,91,96,106,96,109,105,95,117,105,97,112,104,99,106,116,97,103,94,108,101,96,108,92,100,95,100,95,98,105,97,89,108,91,92,96,92,108,96,84,100,108,95,109,96,103,106,107,101,117,90,105,104,100,95,104,105,114,95,93,111,98,136,100,98,105,105,99,100,91,100,99,101,107,99,97,105,104,106,99,92,102,103,105,114,109,107,94,106,102,93,103,113,95,99,105,79,109,100,109,100,104,110,108,112,85,109,105,106,102,103,99,100,88,97,112,113,102,111,102,110,104,105,98,118,95,98,97,96,100,111,112,110,102,109,106,109,86,94,111,94,103,105,99,97,93,99,104,92,110,120,118,103,99,95,114,107,95,104,104,118,102,103,102,105,104,100,94,107,100,99,86,110,108,108,103,107,110,112,95,117,106,98,104,100,112,93,101,109,100,103,102,107,107,105,103,99,104,94,89,95,110,106,103,108,104,100,98,97,89,98,119,107,104,88,93,114,94,102,101,97,104,93,100,100,102,107,93,100,119,109,105,94,108,102,98,102,109,104,86,94,100,99,102,103,100,97,102,109,95,109,107,106,109,97,108,112,100,107,101,101,105,98,102,96,72,119,118,118,102,101,108,104,95,101,97,103,110,104,100,100,109,105,98,95,96,94,105,115,106,105,104,100,115,114,110,102,99,105,107,95,103,105,114,99,108,110,108,100,109,110,102,114,111,94,99,101,87,95,111,99,109,94,101,108,100,109,127,109,107,114,105,100,112,96,113,110,119,98,112,114,113,107,102,123,100,116,100,117,110,99,110,105,104,94,104,101,109,91,91,105,106,100,97,100,108,105,104,97,109,108,104,102,93,110,99,103,101,102,104,105,102,105,101,102,101,110,98,103,103,100,110,95,114,96,103,95,109,86,98,103,100,102,99,109,111,108,108,101,105,107,101,91,98,105,97,106,103,108,109,114,90,102,102,99,108,111,97,99,104,104,84,109,96,86,102,101,101,109,104,101,91,98,107,103,102,103,94,102,117,109,106,99,107,106,106,108,110,115,104,107,106,99,105,115,107,102,91,102,115,109,94,111,95,103,109,116,105,91,100,104,97,108,91,119,108,104,109,92,114,100,111,97,109,110,98,101,88,103,105,94,102,100,114,100,95,104,114,107,102,109,111,107,95,110,96,96,112,116,98,98,103,100,112,103,98,114,98,113,92,119,107,101,108,96,109,123,118,107,100,92,109,96,96,100,95,104,110,97,108,113,102,117,103,103,109,116,102,105,101,111,114,109,109,111,101,93,98,96,103,105,103,103,101,103,104,110,101,105,105,103,112,98,99,107,100,105,106,98,103,103,102,100,105,103,97,106,95,111,103,93,105,115,108,99,101,90,106,103,106,101,85,95,106,103,94,97,113,102,92,99,113,100,107,112,128,112,95,103,101,104,108,103,98,100,93,98,93,110,93,106,101,108,120,103,108,112,96,104,96,98,106,96,109,108,109,105,104,111,103,99,98,101,111,115,94,97,99,88,103,95,103,98,94,105,101,98,97,106,91,112,101,113,113,98,94,107,126,109,122,108,101,106,105,104,106,109,103,108,112,97,104,112,91,113,117,111,98,99,91,110,92,104,104,114,103,103,109,95,91,101,95,113,107,103,93,87,113,109,104,100,94,111,87,122,124,111,120,102,101,99,103,103,98,96,109,109,107,98,95,111,103,103,97,92,89,112,94,97,107,96,90,100,121,96,98,105,107,106,104,103,90,80,104,94,102,90,115,92,75,100,100,99,93,87,100,104,98,104,101,100,112,116,98,106,99,94,113,100,117,105,89,89,105,117,113,100,102,110,110,104,102,108,105,85,78,98,110,91,104,109,101,99,109,105,108,114,100,97,102,98,113,109,101,110,113,95,106,112,99,100,107,106,106,111,95,98,102,106,103,104,95,106,103,104,104,105,119,112,103,105,100,94,98,98,109,106,105,99,90,114,99,109,99,88,109,105,103,101,107,94,119,109,106,108,101,107,108,109,105,93,100,99,95,95,110,97,98,106,103,105,98,95,105,93,120,112,107,104,104,101,108,103,109,105,101,100,96,120,93,104,100,98,108,110,101,92,102,109,105,117,98,109,75,111,102,91,107,111,106,100,99,102,95,99,95,105,87,94,100,95,106,97,102,113,100,99,108,102,94,99,105,101,106,97,109,101,109,96,104,94,98,110,103,95,115,94,104,100,105,105,114,107,93,96,88,104,106,100,109,107,106,114,96,102,105,95,101,106,105,114,107,97,108,107,106,97,110,97,102,94,111,106,101,101,97,102,102,99,100,101,92,96,108,110,106,106,100,89,91,92,102,107,102,107,100,125,86,117,97,94,107,114,101,105,96,109,107,109,85,89,96,100,102,80,103,109,100,100,105,90,96,106,95,97,99,101,97,108,96,94,93,100,99,102,95,98,103,100,91,101,96,103,98,95,101,115,111,99,102,97,99,102,100,104,111,95,108,111,110,112,101,105,96,105,98,103,82,101,78,105,97,98,106,102,111,96,111,111,98,97,97,94,84,95,102,105,105,97,117,105,105,108,103,99,104,103,109,105,106,94,100,103,95,103,107,111,100,110,98,104,93,107,106,101,107,107,99,104,100,105,104,96,106,103,101,108,98,112,108,98,103,92,97,98,106,96,103,89,106,117,100,96,103,110,106,91,100,89,113,113,104,98,98,105,98,104,122,96,101,108,106,92,103,115,105,104,93,102,114,123,105,103,93,97,105,104,109,116,109,107,106,96,111,99,137,95,100,110,112,100,105,105,108,93,105,109,113,106,108,92,96,99,109,113,91,107,92,103,97,100,98,121,88,111,94,108,103,93,108,112,92,106,99,95,97,91,107,95,104,106,101,104,92,102,109,98,101,98,110,106,102,98,116,94,98,92,93,101,112,99,105,97,100,106,113,96,100,102,110,95,106,114,94,96,113,82,102,102,107,104,91,106,91,95,98,106,96,95,113,96,114,95,105,106,109,105,109,99,101,115,110,97,96,95,103,107,101,94,105,97,97,111,106,117,104,96,94,92,108,101,92,95,102,97,99,98,108,106,104,120,116,98,100,92,106,98,96,102,104,112,96,94,99,97,106,97,90,99,102,110,105,106,101,108,91,98,90,100,107,95,95,102,101,101,98,100,90,99,97,125,97,105,108,102,89,113,106,94,109,108,104,98,104,111,98,116,100,110,93,104,94,97,101,98,105,113,118,102,101,93,103,109,103,116,100,105,102,104,106,104,108,100,107,100,105,109,99,105,103,105,111,104,96,117,103,104,124,102,96,108,94,118,91,102,100,118,108,94,116,102,107,100,100,100,89,104,89,121,104,91,97,101,108,102,94,109,90,107,105,102,109,89,99,83,93,102,105,94,98,100,98,82,103,100,110,99,106,104,95,98,101,99,107,113,98,100,109,102,105,91,106,99,102,101,107,101,90,96,95,105,99,100,107,105,113,107,137,98,106,111,105,100,102,103,96,108,110,97,106,87,95,104,88,108,103,101,121,96,103,113,108,103,118,103,106,111,107,106,101,104,107,98,105,103,100,104,101,106,99,98,107,105,100,104,103,99,101,90,121,103,112,103,104,99,96,99,108,92,95,101,109,114,101,102,100,95,99,102,106,87,110,108,109,101,103,107,92,110,106,102,96,117,108,103,106,121,114,93,109,96,113,103,99,102,105,109,97,116,100,101,104,100,96,91,101,118,104,109,92,105,104,93,82,109,104,113,89,106,99,109,96,95,87,92,105,107,102,108,107,109,105,102,99,122,102,109,101,98,121,103,104,122,95,91,118,113,111,102,100,113,104,105,95,80,93,109,108,99,84,97,105,101,99,75,105,101,126,104,102,111,104,100,108,110,102,120,106,108,95,98,99,109,110,94,108,101,96,96,96,112,103,101,108,86,88,92,113,95,91,94,103,99,111,105,109,91,91,101,104,105,112,94,96,113,102,95,115,108,87,100,97,110,104,97,95,96,99,100,104,118,101,94,79,100,97,107,101,109,98,98,104,92,91,103,108,87,96,93,100,112,81,99,112,102,105,100,102,102, +665.37299,109,98,101,109,80,99,104,108,105,98,106,103,87,105,105,96,112,111,99,110,96,90,101,102,103,87,106,111,114,107,96,102,106,138,109,98,103,101,82,99,101,89,112,105,105,115,104,118,91,110,89,87,107,96,103,104,100,99,106,108,99,98,100,96,96,103,85,116,108,101,109,103,95,104,95,108,89,107,109,102,94,101,110,125,101,96,91,92,93,117,100,101,97,101,90,101,91,98,104,99,111,120,100,101,98,102,104,102,104,90,101,109,105,92,101,110,97,94,98,106,109,107,113,105,104,109,113,101,108,103,108,96,106,93,97,104,81,104,104,92,102,110,104,102,89,110,107,98,103,100,89,125,101,107,110,115,101,116,98,101,98,90,99,105,107,107,101,105,98,98,108,99,103,102,113,86,100,84,100,104,95,99,109,102,105,95,106,105,107,103,101,93,103,99,109,103,100,104,106,96,96,100,100,99,103,100,104,104,107,104,106,94,109,96,100,104,106,107,95,97,120,101,110,112,95,102,97,105,114,101,100,112,103,112,98,105,95,108,102,100,100,103,95,112,91,96,115,103,100,97,94,106,72,113,99,90,105,103,94,105,104,104,91,105,106,95,96,102,94,97,90,110,95,94,113,113,99,107,99,112,97,95,100,95,91,97,90,92,101,101,101,103,107,113,109,102,96,104,102,117,99,105,106,104,94,102,97,106,105,109,111,94,101,117,104,98,105,110,103,98,101,106,108,109,97,103,105,105,103,106,110,104,100,89,105,101,100,106,95,106,115,112,84,111,94,100,111,98,99,107,106,102,100,102,106,98,98,103,99,97,99,93,93,100,95,101,94,108,98,112,106,97,92,105,98,96,110,106,107,102,116,108,102,93,98,104,115,97,97,85,112,100,91,110,99,106,105,91,104,113,93,111,103,100,94,103,106,95,115,103,97,106,97,97,83,87,102,107,113,99,100,122,91,105,103,92,89,99,92,96,108,100,80,97,98,89,100,88,94,100,96,90,102,98,98,108,101,93,102,109,94,91,105,108,95,100,97,96,99,107,95,99,110,104,99,107,103,90,104,102,100,104,115,94,97,96,106,133,98,105,96,105,104,100,110,110,108,107,95,102,96,103,108,97,100,116,98,85,107,83,105,108,104,112,123,98,92,113,102,101,113,102,118,114,105,96,110,109,96,103,109,107,106,105,104,99,100,85,96,101,97,102,95,112,106,93,109,101,100,100,95,114,105,93,104,110,101,106,104,83,99,95,109,105,102,110,86,90,104,104,105,97,114,103,117,107,98,107,96,103,97,109,99,104,94,101,97,113,95,101,102,98,99,100,99,98,106,109,105,114,105,107,94,111,103,101,104,96,107,95,96,102,101,108,106,96,95,105,101,103,108,106,113,94,99,92,108,109,99,101,101,96,101,101,98,107,105,124,101,100,96,104,100,101,98,95,106,95,114,102,87,105,80,98,104,88,102,95,109,119,96,102,106,104,86,95,107,107,107,104,111,109,106,107,100,113,100,108,107,113,96,113,103,101,110,108,100,105,97,105,110,96,101,113,94,105,101,109,102,96,101,108,98,98,105,102,102,95,104,88,107,103,97,84,112,105,101,104,89,100,116,104,103,108,108,103,94,104,100,94,95,93,104,109,103,102,98,90,96,100,96,103,110,98,88,102,114,98,103,101,118,82,106,90,103,104,104,110,101,100,99,95,104,107,116,104,103,101,112,102,95,93,105,98,91,98,95,107,111,98,112,107,112,107,93,103,94,92,106,89,84,104,106,100,107,108,109,105,94,105,103,97,103,77,102,108,100,105,112,106,105,98,110,106,94,99,106,104,104,89,99,95,98,96,109,106,118,101,113,97,98,104,105,91,111,106,86,97,117,111,97,104,95,98,105,109,106,111,103,106,101,103,101,104,110,98,103,95,104,103,106,84,102,94,86,98,105,96,111,108,102,93,108,99,103,101,97,105,108,109,95,103,104,98,106,106,112,101,94,95,103,101,104,96,92,105,104,111,117,117,100,115,90,115,112,115,87,105,102,104,96,94,119,103,91,93,101,82,95,100,100,112,105,98,81,109,100,103,104,112,104,109,114,112,104,92,104,104,104,124,94,95,103,106,104,107,101,111,85,96,107,104,94,98,111,101,107,116,103,96,106,104,96,100,112,110,98,117,98,113,99,106,94,95,117,107,100,113,106,96,95,108,111,100,104,107,111,110,112,101,112,108,102,97,119,109,103,99,83,103,111,97,96,109,98,92,99,98,112,106,108,92,87,98,99,102,113,113,91,97,98,115,126,108,88,97,104,109,99,100,99,114,109,91,104,118,79,113,95,103,103,110,99,121,101,98,92,104,101,96,96,103,124,114,120,106,109,108,111,98,91,109,115,113,107,116,100,113,90,112,78,111,105,95,106,105,99,109,111,96,93,107,101,100,81,100,99,105,103,92,96,104,102,119,102,111,101,103,102,109,99,107,102,89,80,100,100,100,123,108,106,98,111,99,103,101,98,112,102,91,101,109,99,100,105,97,98,107,98,98,106,102,103,110,106,99,97,104,103,97,98,103,108,103,106,109,99,109,96,96,97,116,94,106,106,107,103,109,119,99,102,98,106,95,109,108,102,109,108,117,104,101,97,116,117,107,101,101,96,101,92,107,111,116,97,104,98,97,99,106,108,88,105,94,101,108,112,100,106,98,104,87,96,110,93,98,92,100,96,94,98,96,107,95,103,102,113,110,97,105,98,107,105,104,98,99,99,102,103,93,102,108,99,97,98,109,95,105,105,111,104,106,104,95,99,102,106,99,108,97,115,111,111,101,101,100,72,110,92,99,102,110,111,111,106,106,110,112,93,105,108,108,91,115,98,104,121,95,109,101,107,106,102,115,105,106,100,94,97,100,108,99,114,95,91,108,102,113,111,110,108,108,99,106,120,115,99,101,71,102,108,98,114,109,121,107,101,114,98,98,117,105,111,103,117,97,112,117,92,104,102,96,110,102,108,104,102,95,98,110,124,99,94,103,84,91,105,101,99,97,107,108,103,94,109,84,89,104,98,106,103,101,110,95,94,115,98,111,104,105,93,109,106,93,109,102,103,108,93,110,88,99,100,109,100,110,112,96,99,106,110,91,111,97,100,100,109,99,89,102,109,96,102,102,117,116,103,100,116,104,104,110,109,105,100,111,107,104,105,105,125,96,83,100,120,109,103,104,106,105,101,106,96,117,107,101,103,100,108,107,111,108,104,106,106,111,103,108,95,109,103,102,102,104,101,104,85,105,95,114,74,105,102,95,97,105,105,117,105,97,97,102,101,91,99,110,118,95,97,114,93,104,107,97,110,110,109,119,101,110,98,125,105,96,91,104,102,110,108,101,101,91,102,117,109,121,105,98,96,102,103,98,100,103,104,101,104,105,109,109,106,105,99,88,112,95,93,113,101,107,105,111,103,129,99,107,103,104,103,101,108,96,109,101,108,108,100,108,103,102,99,107,107,101,99,110,102,106,102,102,103,99,105,69,95,90,107,109,107,112,100,95,111,105,96,107,102,108,92,113,101,112,105,105,107,108,104,103,95,105,102,104,115,131,91,104,96,99,106,99,89,102,94,96,97,110,95,127,96,109,99,100,105,95,93,90,95,101,105,115,100,130,101,113,112,99,93,95,100,104,117,110,104,95,100,98,105,103,106,97,99,102,110,115,99,98,96,101,99,89,97,93,104,96,109,102,109,100,97,97,114,111,95,97,105,88,108,109,94,95,104,98,89,99,106,103,104,93,106,101,95,104,105,101,108,104,106,110,100,103,102,98,120,88,109,100,90,100,107,100,89,82,96,99,106,111,96,105,98,100,100,102,108,105,108,115,103,105,101,104,107,112,108,94,105,102,110,108,99,104,105,103,100,101,93,98,113,98,102,122,112,94,102,102,103,110,109,95,107,105,109,108,99,107,105,97,117,113,104,101,99,99,102,112,112,97,104,96,113,92,108,111,97,94,94,95,103,105,102,102,111,103,105,95,109,87,114,103,107,106,99,96,88,95,96,110,102,82,102,98,93,110,102,100,97,110,107,97,99,105,118,104,96,104,110,107,98,105,107,100,111,111,109,96,100,107,92,96,99,103,88,102,96,107,107,98,110,100,90,110,99,92,85,95,100,121,101,113,105,101,104,125,112,99,106,106,98,114,115,98,110,113,116,108,98,121,104,108,102,102,104,96,100,105,115,103,97,103,96,112,109,103,108,100,97,100,95,99,89,109,86,101,139,95,107,95,107,104,105,113,105,120,107,106,96,97,111,84,109,112,104,104,106,109,99,97,107,109,101,103,100,101,105,101,104,105,103,98,102,101,96,88,99,104,104,103,92,107,109,112,91,103,108,91,106,105,101,117,100,100,99,95,112,100,102,95,107,99,102,103,107,103,100,98,107,110,107,108,114,104,111,114,105,97,106,105,99,97,111,99,101,108,104,91,110,108,106,106,99,109,117,102,110,142,113,99,92,103,84,102,96,93,105,100,107,113,101,110,100,103,106,98,105,101,99,110,108,104,106,101,122,110,106,96,89,108,110,107,96,115,102,98,97,108,110,109,104,116,110,109,117,113,110,98,101,107,105,98,102,96,98,96,100,100,105,109,103,104,103,98,101,99,105,109,108,100,102,102,93,96,108,91,110,116,94,71,98,97,108,99,113,106,104,98,105,75,106,104,104,97,103,106,84,98,94,95,104,75,115,110,93,94,109,110,92,99,96,108,104,109,97,98,90,98,100,106,102,114,115,104,83,100,105,106,99,105,102,96,111,103,99,109,105,96,95,91,108,126,103,104,106,106,87,112,103,103,106,95,108,92,103,102,111,109,99,102,110,104,117,103,108,105,108,100,102,93,114,97,103,108, +665.51422,101,106,111,105,101,110,98,86,98,113,92,111,85,96,113,99,79,104,109,99,99,87,95,103,104,116,90,98,104,103,76,93,97,97,109,97,96,102,101,99,91,100,106,101,103,118,100,107,70,97,110,105,100,105,100,86,104,102,104,87,106,97,100,92,92,97,90,101,96,95,108,106,103,96,89,106,96,109,100,98,97,98,103,111,89,89,95,103,104,86,121,116,102,103,98,88,92,91,97,101,99,109,93,107,91,98,101,108,96,93,92,93,102,100,102,98,106,98,100,95,100,96,96,109,95,105,108,101,109,106,91,101,98,101,104,103,105,99,87,99,96,100,100,87,119,96,120,95,94,94,87,104,102,100,89,112,98,92,108,94,87,100,107,97,111,99,90,92,101,108,94,106,94,85,112,100,97,101,95,95,94,93,89,108,107,119,82,91,97,91,103,96,101,101,106,98,103,91,96,107,108,103,95,100,92,99,100,93,96,115,92,104,106,100,109,95,108,104,101,101,98,107,109,103,93,91,105,100,103,104,106,100,103,108,98,101,98,103,96,90,107,109,106,118,97,97,107,112,100,89,105,116,90,100,89,104,85,93,112,104,94,114,105,109,99,109,105,108,97,94,97,93,96,116,103,111,109,106,103,98,100,105,104,92,86,92,85,98,98,88,110,97,83,70,107,108,122,97,96,92,104,98,115,106,100,104,105,100,96,105,93,112,91,95,101,112,107,98,106,105,106,85,100,101,93,90,104,97,86,103,102,103,103,103,93,95,95,104,100,106,92,101,97,99,103,103,93,110,106,86,95,103,109,106,95,102,104,105,103,112,90,95,89,95,105,106,113,109,96,96,96,99,101,110,84,94,111,93,100,117,106,100,99,106,101,105,92,94,97,117,101,97,99,103,92,95,110,98,102,110,102,90,90,108,92,90,100,109,101,108,104,94,100,98,90,111,95,105,91,95,105,72,87,106,94,94,100,99,99,103,91,105,105,104,97,108,96,107,113,102,107,97,106,103,108,102,100,93,58,75,90,100,100,108,97,107,100,92,112,106,99,102,115,97,102,98,95,101,109,102,94,104,109,109,86,101,115,109,114,104,102,109,111,96,106,102,104,98,99,75,99,93,103,101,102,105,94,96,103,87,116,94,91,100,111,100,92,104,107,95,110,99,102,100,96,108,99,109,103,106,106,109,110,105,109,109,103,94,86,104,90,104,99,98,107,103,93,97,117,93,108,100,101,99,114,95,110,89,113,108,94,113,103,92,104,97,92,85,103,95,103,109,94,101,85,99,111,110,106,108,91,99,113,103,109,110,121,105,95,101,108,81,102,109,90,93,106,81,88,95,117,99,101,101,118,95,98,94,119,98,102,111,102,96,98,100,94,92,99,99,99,101,104,98,99,97,103,89,106,109,100,101,100,109,110,98,101,112,103,102,90,93,101,98,91,108,96,89,94,109,101,101,97,97,74,64,93,86,107,105,102,93,95,103,101,105,103,101,96,105,105,97,87,116,90,100,119,99,102,98,108,93,103,105,88,98,91,103,105,109,103,96,104,101,101,94,78,108,96,104,97,98,104,103,83,101,105,97,75,86,94,101,100,99,86,100,98,101,95,93,118,108,101,105,90,103,109,108,105,105,104,87,106,70,95,101,107,89,95,68,84,94,107,79,113,98,104,99,96,107,99,99,94,93,109,102,105,98,95,104,109,102,102,92,106,103,101,100,112,106,103,100,90,106,96,108,85,102,94,97,96,113,93,92,95,95,101,94,95,94,104,105,119,114,95,99,98,96,104,100,106,94,106,112,105,99,102,128,107,105,102,96,103,102,101,101,102,99,110,97,95,112,94,95,108,90,94,102,107,101,101,104,105,105,104,116,108,95,88,99,100,92,95,104,93,120,93,98,92,108,110,102,115,101,91,103,98,90,92,87,102,101,96,96,109,114,111,112,102,103,100,95,102,94,101,90,104,98,86,105,99,104,91,100,107,106,95,90,101,99,99,101,107,97,99,97,95,105,99,91,95,105,92,104,95,98,96,101,102,92,101,97,103,102,105,106,80,97,102,92,107,104,107,100,93,100,89,106,102,107,100,92,98,101,100,107,100,104,98,101,96,88,112,100,101,96,94,97,101,101,96,103,95,94,97,100,82,100,105,102,104,96,111,99,96,95,104,105,96,109,84,93,96,92,94,100,93,95,106,111,109,91,100,84,107,97,91,104,104,106,93,104,93,78,97,102,106,101,104,93,108,94,109,93,106,91,108,98,109,102,112,106,91,122,110,111,102,102,102,103,103,105,98,87,105,86,109,92,90,100,97,103,91,127,76,100,91,103,105,90,104,91,97,105,113,97,92,98,97,102,91,95,95,92,100,102,109,104,125,100,105,118,72,97,108,105,93,101,104,103,93,99,102,102,100,108,95,92,107,107,104,103,106,95,98,103,96,89,104,96,85,104,96,94,89,96,100,96,102,104,117,98,91,90,103,95,92,94,105,103,104,108,100,100,95,110,93,93,101,99,97,111,105,100,104,112,95,99,112,103,97,86,90,105,98,102,114,101,101,105,102,115,94,96,101,106,105,109,101,98,103,109,90,111,88,100,121,102,86,87,104,97,125,112,101,99,99,102,104,105,106,89,108,88,100,128,116,102,87,104,113,106,98,84,100,103,107,95,88,92,113,101,100,97,97,88,103,99,118,103,114,110,89,100,92,111,106,99,94,102,100,99,101,101,102,94,104,102,95,109,102,87,107,102,111,106,102,104,98,99,111,104,91,94,112,102,112,92,112,103,101,99,92,81,116,94,115,99,104,96,107,95,102,94,101,106,104,121,106,113,112,104,106,89,99,103,94,100,91,110,97,97,91,115,100,99,95,107,105,110,98,101,96,101,117,112,105,99,113,111,96,102,98,95,107,91,99,102,109,112,109,110,105,89,110,100,110,83,94,104,106,109,96,90,96,105,96,104,102,105,110,100,94,91,111,85,102,108,99,99,90,96,103,115,106,112,106,107,115,99,95,104,109,111,104,87,108,95,95,102,93,100,111,98,103,102,94,101,98,99,97,107,98,106,94,102,112,108,96,113,92,107,109,104,102,101,103,99,94,99,106,102,112,98,107,105,103,113,102,103,113,104,98,102,103,99,117,96,105,99,108,101,82,93,113,105,117,94,101,105,112,87,89,96,108,101,110,115,100,119,95,102,109,103,97,100,108,108,105,98,109,94,109,86,103,99,99,107,107,104,110,108,100,101,99,102,96,106,101,106,96,107,113,105,101,104,108,104,113,100,95,107,103,109,91,104,105,104,98,94,103,95,93,111,79,103,113,101,97,108,97,103,108,93,94,98,105,106,105,98,94,110,95,97,101,95,111,96,96,103,105,108,97,106,104,100,106,108,97,103,96,106,101,108,97,96,101,108,99,103,107,94,95,104,102,100,97,101,104,94,110,101,117,105,87,97,96,92,105,106,111,106,111,108,92,105,95,113,100,91,102,108,106,105,104,106,105,99,94,108,124,104,106,102,97,105,105,99,100,113,100,102,92,106,104,106,88,109,87,106,99,93,104,100,114,111,100,122,97,103,92,101,105,109,106,104,99,104,109,111,100,95,109,108,94,88,105,109,113,99,102,101,98,101,108,97,103,104,102,104,111,99,105,97,105,102,104,113,97,96,106,103,108,105,92,100,103,119,105,96,105,98,96,102,117,110,101,106,104,98,104,109,102,109,106,90,106,104,107,99,103,100,135,95,110,95,101,102,99,99,107,107,102,99,90,98,102,100,114,95,94,95,96,94,103,107,113,106,102,96,101,94,60,95,109,103,80,104,112,104,101,102,100,100,105,87,108,108,93,102,112,96,101,97,102,102,99,98,99,104,99,104,109,104,98,100,104,97,83,84,107,89,107,101,109,102,106,94,105,91,101,92,113,110,113,103,100,89,109,84,109,106,97,117,82,98,107,98,104,94,108,97,91,95,101,111,93,101,94,115,76,99,103,109,103,91,72,86,102,90,109,114,94,102,101,101,101,98,98,106,108,99,101,91,82,98,119,109,106,94,107,104,99,104,111,107,94,116,99,88,110,98,87,102,108,110,101,97,109,112,96,109,110,94,98,117,100,95,104,91,106,91,110,99,103,109,99,103,98,94,107,106,90,110,105,102,99,106,84,105,113,108,107,100,111,106,94,100,101,97,103,94,108,99,108,111,105,102,101,106,105,97,98,96,100,113,118,107,98,94,99,101,107,96,102,117,100,94,104,102,101,103,98,111,113,96,100,88,98,106,93,114,100,105,100,111,97,104,92,98,110,113,112,106,101,100,94,98,96,107,99,102,95,94,105,99,112,101,117,102,107,101,105,97,104,101,106,111,100,107,109,102,100,106,100,93,99,103,100,115,97,98,98,105,99,106,93,108,97,100,128,104,103,107,102,85,118,100,119,106,112,104,101,106,103,97,106,100,100,86,95,103,95,99,107,104,105,86,108,99,103,95,105,98,98,104,106,109,110,100,89,102,93,112,93,98,108,105,96,104,109,97,99,100,109,95,105,91,102,112,102,108,98,110,100,104,110,102,103,92,107,92,139,110,111,100,112,109,110,110,100,97,99,99,112,100,94,89,96,102,94,93,106,116,96,99,100,98,112,98,106,97,102,116,99,104,100,104,102,96,105,100,103,104,97,106,112,103,101,95,109,112,114,102,90,96,102,95,94,98,107,102,97,97,88,97,119,111,102,101,112,103,89,108,68,109,100,105,103,92,107,101,104,112,101,112,86,107,103,101,105,100,126,94,102,128,95,111,109,106,115,95,99,102,106,65,87,94,108,91,117,100,112,105,94,102,99,77,97,105,99,98,94,117,114,112,95,103,116,95,120,95,94,93,108,91,97,98,109,89, +665.65546,110,98,100,101,84,103,101,104,75,87,100,92,98,84,109,87,97,104,88,110,99,102,111,102,96,106,108,100,98,105,108,100,115,115,116,108,92,97,109,107,87,95,107,99,122,100,95,106,103,110,109,107,108,113,98,102,94,103,101,124,104,99,113,90,105,95,103,110,101,94,103,103,89,99,104,105,92,101,99,95,118,109,101,104,99,104,104,118,103,117,104,111,100,101,99,110,97,100,108,107,113,105,92,106,101,92,97,100,107,102,104,105,95,95,106,99,112,96,108,101,112,95,96,105,105,111,119,93,116,99,96,111,106,93,117,123,102,93,124,108,104,107,112,97,76,90,93,100,90,105,107,100,91,93,81,105,104,92,95,119,89,103,109,112,98,87,108,101,98,110,100,108,111,95,108,109,99,98,96,85,106,98,106,100,104,108,90,94,103,113,105,95,100,88,102,104,77,99,98,96,97,112,101,95,92,96,105,103,109,120,108,113,121,104,91,107,98,96,100,114,110,103,100,108,110,112,111,94,99,112,112,102,104,94,109,96,107,116,105,91,75,100,102,97,108,111,100,67,102,107,106,105,102,105,101,110,104,117,99,109,101,105,109,114,107,115,111,99,95,98,98,99,111,103,102,105,113,90,97,98,96,97,109,79,113,102,92,92,122,98,109,107,103,101,116,99,101,93,112,105,110,96,109,100,90,105,95,100,105,109,97,98,101,97,98,101,109,104,96,107,106,98,104,104,107,100,102,101,104,102,107,96,120,111,121,116,106,100,99,95,102,91,108,99,98,103,108,112,108,103,104,95,98,106,99,116,113,100,105,106,96,105,105,113,92,101,105,117,104,107,87,105,136,113,118,93,107,98,81,103,99,131,89,101,106,107,98,116,83,99,100,104,98,94,104,114,98,98,108,109,93,109,94,97,109,92,101,107,104,108,112,97,118,99,112,119,106,99,99,106,105,108,100,108,96,93,100,102,100,110,96,129,104,106,98,91,121,99,100,97,94,105,100,104,94,99,104,93,110,103,105,110,97,98,113,90,106,104,112,94,89,100,92,106,92,107,109,99,101,110,101,114,100,83,103,114,95,95,101,106,94,106,107,108,100,106,100,106,103,106,77,110,111,96,97,94,114,91,100,103,106,110,99,104,97,108,104,104,127,98,104,94,108,108,81,98,90,101,117,92,103,99,103,109,94,94,108,107,99,112,99,100,96,114,103,105,107,103,102,101,99,106,84,92,99,126,113,100,113,103,105,126,105,111,102,100,103,103,101,101,100,107,106,109,104,98,90,113,108,107,95,102,109,110,97,87,87,101,104,104,98,95,118,99,96,83,120,106,93,107,107,94,111,94,110,101,97,97,100,103,98,87,103,96,116,95,87,102,92,80,120,100,107,106,98,115,103,98,92,94,105,100,110,101,102,103,102,104,109,116,107,94,98,100,93,103,106,102,100,133,95,90,104,104,99,107,103,106,107,103,101,105,100,105,95,102,111,96,104,93,113,104,109,107,99,93,103,109,103,103,115,103,92,104,92,107,103,87,111,103,109,105,104,100,108,109,97,101,96,131,95,102,94,108,97,92,103,106,110,94,99,102,108,115,94,116,98,104,90,106,106,95,90,101,103,100,101,95,96,102,103,99,96,110,98,99,104,118,108,106,97,98,98,103,97,102,108,101,107,111,111,113,104,112,98,107,101,101,99,110,116,98,97,105,98,115,102,103,102,110,100,113,94,103,101,124,98,102,115,103,98,99,111,95,95,116,95,104,99,103,99,98,108,115,110,112,109,100,106,105,111,123,93,102,120,102,90,103,90,110,102,115,104,108,102,108,88,100,118,105,117,110,96,100,106,99,98,104,116,93,94,107,105,109,104,111,110,114,116,98,113,98,112,99,103,106,106,105,86,107,113,105,105,92,105,134,99,98,94,101,105,98,116,91,99,103,100,105,113,100,108,85,96,101,96,113,108,103,98,100,107,114,102,87,100,104,99,103,96,97,97,104,103,101,93,126,100,129,99,96,101,94,101,121,100,103,110,84,102,116,103,118,113,116,98,118,90,100,100,108,93,102,112,105,122,102,110,108,113,90,99,106,107,105,113,89,100,118,95,96,96,113,117,107,96,94,101,95,102,100,102,106,102,87,102,99,58,96,116,99,95,104,98,102,104,105,102,98,100,115,114,113,102,99,117,94,103,104,104,103,100,98,109,107,94,102,105,103,108,102,92,108,91,102,99,114,93,110,103,106,108,109,104,95,90,110,106,107,108,106,89,96,99,102,114,96,103,109,109,115,109,107,92,110,107,115,104,99,95,93,104,98,98,104,113,101,100,91,107,110,103,100,101,94,113,92,102,112,98,118,106,83,109,111,100,107,112,108,102,98,104,94,113,86,81,124,98,83,100,89,107,109,92,101,101,93,102,95,102,104,98,96,84,105,95,109,101,94,101,103,105,119,96,107,103,104,104,110,114,109,84,110,109,105,93,93,104,112,104,116,113,105,115,87,88,104,91,92,110,105,106,106,112,94,104,109,97,100,107,83,107,91,86,101,112,108,97,98,109,106,95,112,102,96,105,108,101,99,106,93,97,99,98,94,104,79,104,107,104,124,116,110,119,101,90,103,104,100,106,102,108,110,99,94,99,100,94,88,99,92,96,110,105,98,105,106,103,97,111,108,95,115,100,105,103,104,106,101,106,87,112,98,105,116,98,103,108,105,104,105,104,111,106,102,115,116,116,103,95,105,98,103,103,108,103,92,103,106,117,98,113,107,96,108,104,103,99,98,99,115,104,119,100,113,103,110,106,105,93,109,100,107,104,104,105,103,103,97,100,104,109,112,104,102,105,92,105,102,89,105,108,97,108,96,102,101,108,108,94,100,102,107,95,98,106,110,86,99,101,107,91,97,102,94,106,117,89,103,104,116,105,102,114,101,106,113,101,95,100,109,104,104,130,102,97,97,111,106,92,99,99,96,109,103,104,98,99,102,115,100,102,107,104,117,100,106,109,109,108,102,83,101,98,113,98,101,118,103,100,107,103,109,100,101,104,110,103,94,99,98,102,116,101,99,117,116,97,110,105,100,112,109,110,95,104,108,107,110,88,108,90,110,107,109,116,106,91,100,87,96,106,99,102,103,101,97,105,90,105,101,91,107,105,100,119,114,104,116,109,100,110,105,106,102,105,103,109,110,92,111,99,94,111,107,92,110,108,114,91,118,106,102,102,99,96,114,113,104,100,82,106,99,97,108,102,100,102,102,111,108,105,96,100,99,99,108,98,88,109,99,103,108,78,97,109,108,101,100,100,105,107,115,101,90,95,90,108,96,95,93,103,110,108,98,106,93,94,85,109,87,112,102,101,102,87,94,100,91,98,107,103,91,67,104,106,112,112,100,97,98,99,98,98,104,98,99,107,99,105,113,98,97,110,97,104,101,103,99,107,96,103,99,98,91,98,95,104,110,114,102,99,84,100,93,99,110,99,108,113,98,95,98,105,96,99,105,110,115,96,106,100,104,98,111,114,101,106,96,87,103,95,97,103,96,102,104,106,104,101,78,98,93,109,114,115,112,102,120,95,100,99,110,98,105,108,101,113,105,119,111,100,105,95,103,104,95,104,109,109,109,98,106,100,114,110,97,106,97,98,97,100,101,108,116,103,108,106,99,90,109,90,108,105,102,105,98,101,98,95,107,102,100,100,103,103,94,108,99,92,96,100,105,94,84,120,99,99,102,101,100,100,93,103,96,109,105,108,111,101,91,104,97,112,94,91,108,108,104,107,90,87,111,103,101,103,112,95,106,102,99,104,89,105,102,104,107,108,111,105,114,103,107,98,111,89,102,103,104,104,96,98,117,99,105,106,85,104,92,106,102,111,99,90,95,91,93,105,97,118,105,116,101,106,99,103,100,103,98,106,105,113,115,104,97,105,101,91,99,95,109,93,98,98,111,91,96,104,100,95,108,99,100,94,105,110,102,110,106,87,102,122,93,103,109,96,98,91,104,97,102,108,103,111,98,113,100,102,105,111,105,103,104,100,95,107,102,103,94,113,94,105,93,110,98,100,109,99,103,89,99,103,121,109,102,104,109,80,94,109,95,95,111,94,100,103,113,99,100,102,95,97,102,103,122,95,107,95,113,105,99,114,94,109,83,110,100,131,110,93,100,107,119,115,101,121,98,88,99,94,110,108,100,110,98,98,102,101,87,98,100,101,98,110,104,108,102,101,115,87,102,117,101,98,102,91,98,91,104,108,108,105,105,112,92,115,104,105,108,96,100,95,100,97,101,97,116,91,104,105,109,108,100,108,105,99,97,98,103,100,108,115,103,102,102,108,86,107,106,107,107,101,104,72,101,109,120,105,101,109,106,91,95,104,100,107,110,102,112,95,101,98,90,97,96,103,93,97,127,103,104,111,97,114,100,95,74,104,104,101,115,96,111,102,112,104,97,103,103,100,92,114,102,102,103,115,102,98,103,104,102,107,103,100,112,113,107,101,98,102,103,103,111,103,108,100,112,95,104,102,113,101,99,93,104,97,97,109,111,104,100,115,98,107,100,106,102,107,96,100,92,104,94,113,107,106,105,97,101,100,104,86,84,98,103,100,96,106,119,102,117,120,98,100,120,95,95,104,106,101,100,108,99,117,95,96,106,105,99,106,112,97,101,94,100,111,102,105,96,100,106,100,104,86,110,112,101,112,86,117,105,101,103,87,95,97,91,95,95,115,102,116,99,106,93,109,104,110,99,110,100,106,98,99,110,94,120,103,95,107,97,95,113,97,96,100,108,101,116,109,97,99,89,97,96,105,121,104,107,100,96,96,109,93,109,93,109,104,104,93,112,118,94,86,100,106,96,98,120,105,106,107,94,112,81,98,82,98,97,92,95, +665.79669,116,112,87,98,104,104,107,104,89,110,109,86,100,97,109,109,98,82,100,92,99,100,72,96,103,99,89,96,110,95,95,102,105,118,107,112,101,106,93,101,100,109,100,110,80,103,111,110,82,94,102,111,97,109,86,91,92,104,109,101,99,106,103,106,97,111,96,97,94,100,105,92,108,105,100,114,106,77,91,104,101,98,96,102,103,88,100,97,101,109,107,92,109,106,97,109,94,111,109,109,132,98,102,96,107,101,102,104,84,102,93,105,95,107,95,101,93,98,94,105,99,98,101,113,101,104,107,97,75,100,107,96,96,108,94,101,101,101,105,98,101,123,99,91,105,103,106,100,100,89,110,88,114,99,93,94,95,111,106,110,74,109,103,101,104,99,96,91,102,98,106,86,97,104,117,102,99,92,99,106,96,105,100,86,98,105,92,94,100,101,95,109,109,123,89,118,102,92,102,100,85,106,102,97,97,96,108,97,103,108,96,104,90,104,101,109,90,109,106,92,90,102,110,103,109,102,104,112,99,103,103,104,104,107,94,109,99,95,85,107,92,105,82,99,95,105,103,117,93,95,104,111,93,103,99,113,98,100,103,94,94,113,79,99,102,100,101,87,99,104,95,98,103,114,98,95,95,102,92,98,86,99,110,84,92,98,102,109,106,106,86,102,106,109,113,110,104,104,100,90,97,95,108,103,96,100,97,129,94,109,92,109,99,107,93,98,118,104,96,104,89,100,86,96,121,108,102,89,92,121,105,93,113,87,102,98,104,103,102,102,87,107,99,96,95,99,96,108,92,95,113,119,105,97,110,102,111,106,105,105,109,114,98,104,105,107,89,112,93,88,110,99,106,103,102,104,104,105,90,110,107,107,87,101,103,106,98,111,106,77,123,83,96,104,96,110,92,72,90,103,99,99,96,99,97,95,87,105,99,101,105,94,100,96,114,97,106,100,110,105,94,101,98,104,102,85,110,100,96,106,105,91,103,100,94,99,104,90,98,91,95,91,102,101,92,108,98,97,84,100,93,84,86,100,93,122,111,105,105,98,96,99,103,101,109,109,94,95,101,81,99,88,115,101,99,105,101,104,107,105,93,99,118,108,95,114,102,107,105,104,86,109,102,101,91,109,101,103,96,88,105,100,112,99,103,87,103,75,107,100,110,110,106,106,109,107,86,103,93,103,103,108,72,96,101,101,103,113,113,106,94,108,106,91,104,102,108,101,101,108,94,109,94,95,100,101,97,99,97,104,102,105,97,94,91,96,108,101,105,94,105,111,109,96,99,102,100,105,110,105,90,116,94,98,99,99,92,104,103,108,91,95,101,102,89,96,102,105,106,109,104,102,99,94,114,108,105,121,109,105,104,104,134,104,105,101,92,98,92,101,84,103,80,101,107,80,97,97,105,101,98,102,96,97,109,100,94,116,113,112,104,105,98,114,90,106,105,110,101,106,78,92,95,106,88,115,109,99,98,99,110,96,100,90,104,99,106,101,99,95,112,100,104,102,108,115,111,102,97,103,105,115,99,93,106,100,96,103,95,93,101,103,85,121,99,102,101,111,125,103,99,104,125,100,98,101,109,98,99,107,109,91,94,113,107,102,95,105,103,98,101,111,112,96,92,95,102,102,102,122,103,107,103,110,91,99,99,93,108,102,98,103,105,105,98,101,110,93,98,109,100,90,103,95,102,107,100,114,104,108,104,89,103,91,95,104,101,100,112,93,87,100,103,101,101,107,110,116,107,100,93,87,101,93,107,109,107,97,88,98,99,114,124,109,114,101,100,111,100,98,106,99,101,110,98,99,99,109,100,102,89,103,108,92,102,107,101,105,99,94,107,103,93,105,100,88,98,100,111,95,112,103,99,100,105,108,109,106,102,106,85,96,104,97,101,101,108,98,102,104,98,99,100,102,100,107,98,92,94,91,105,87,104,104,99,96,99,100,111,93,91,99,96,103,101,95,108,110,80,91,106,104,104,102,89,95,110,85,105,104,99,93,102,103,108,104,98,122,114,117,107,101,90,78,108,101,102,98,105,106,105,84,88,111,116,96,110,96,110,102,107,94,112,112,110,93,100,109,97,104,110,107,104,90,102,99,103,98,102,109,104,98,98,102,96,108,100,100,87,99,96,100,110,105,101,100,90,100,97,103,103,97,118,106,108,91,108,98,98,105,101,75,112,98,104,106,105,92,116,106,104,96,96,104,94,92,101,98,95,104,97,88,97,93,106,100,109,96,91,100,97,102,113,69,100,109,94,100,103,97,79,106,102,100,120,101,114,99,99,87,94,100,80,101,108,96,103,100,108,107,108,106,98,105,112,98,94,108,107,112,86,106,91,108,100,95,97,103,103,98,107,107,107,98,99,106,109,94,103,104,106,101,99,102,99,98,108,103,106,97,104,112,95,91,99,94,96,94,110,117,96,102,99,96,105,90,92,112,90,104,94,101,90,90,111,101,108,105,110,111,107,95,104,98,112,98,87,102,111,92,100,93,116,100,99,112,100,107,102,115,108,109,99,98,101,97,104,101,99,101,114,102,107,104,94,109,102,104,104,108,105,108,95,63,80,99,96,95,110,105,102,105,95,99,106,101,84,99,90,87,96,95,118,108,102,98,98,92,99,98,95,106,103,88,113,98,99,96,99,117,103,106,95,100,108,107,113,99,102,94,90,102,98,104,101,106,136,91,98,109,95,101,102,94,95,109,88,99,99,99,100,95,109,96,99,112,99,92,92,114,110,88,109,99,126,109,102,117,102,102,91,94,93,98,99,82,105,111,98,109,103,104,105,107,102,104,102,95,93,109,99,103,108,101,100,98,123,112,107,109,100,105,111,105,101,97,89,100,103,117,104,99,96,116,101,95,99,101,102,113,107,103,112,110,88,119,101,90,97,107,94,100,108,112,111,107,97,105,110,106,93,103,99,108,109,96,93,108,105,110,98,101,96,106,108,106,88,108,116,105,109,104,102,144,92,104,100,106,107,104,103,101,93,103,101,93,114,99,111,104,100,105,94,108,112,105,89,95,113,117,100,108,103,102,103,100,98,107,99,98,100,107,99,113,98,99,100,111,109,99,99,110,113,113,93,101,103,95,102,105,69,102,105,111,107,113,108,95,94,120,98,98,101,92,90,87,102,100,103,93,94,101,95,98,97,122,106,89,104,98,92,90,105,113,104,107,102,106,103,121,109,96,79,110,101,100,99,116,92,99,104,75,99,96,105,107,99,99,108,96,99,104,98,102,110,88,111,103,105,103,102,99,91,102,102,102,109,119,106,88,107,109,95,103,107,101,109,108,101,97,110,96,97,107,98,102,105,95,109,98,103,107,115,106,102,99,94,91,97,104,98,105,106,105,94,106,102,101,101,104,103,96,97,100,91,109,102,100,96,100,105,103,106,123,102,107,93,98,93,94,105,101,100,105,101,90,99,86,97,101,97,104,98,110,96,93,97,93,99,98,95,94,98,95,100,102,105,96,106,94,101,104,113,99,105,101,105,106,108,98,98,101,113,83,95,100,118,103,106,101,103,104,107,107,94,95,102,99,100,101,108,87,98,101,95,100,106,99,100,104,101,95,85,108,103,99,79,104,111,99,102,99,107,106,101,94,102,108,105,103,91,111,102,103,93,108,89,97,99,111,87,95,97,96,88,95,90,96,104,109,95,97,96,115,111,96,97,102,93,103,98,98,102,94,82,107,116,109,109,116,106,102,98,95,95,105,103,96,93,104,96,108,97,93,96,96,110,108,102,108,109,113,112,101,106,104,99,102,105,102,78,99,112,118,90,105,105,102,102,105,99,104,116,96,96,113,106,88,100,111,86,105,98,97,108,95,113,103,100,97,105,100,95,93,96,100,95,94,101,96,102,92,91,94,93,114,108,103,96,104,105,112,105,95,103,98,98,109,99,108,102,111,103,110,108,101,105,102,103,103,99,105,110,96,99,96,103,103,95,101,92,104,94,100,109,100,109,102,92,108,95,99,99,109,96,104,100,102,110,102,105,98,109,101,95,92,108,107,97,105,107,96,109,105,111,101,103,90,106,106,114,108,103,96,99,112,102,115,107,100,117,102,108,101,97,97,92,118,100,105,101,97,102,98,98,97,88,106,102,101,101,97,97,107,96,101,102,102,112,105,100,100,100,95,99,102,102,96,102,91,99,69,96,108,112,114,93,92,108,98,108,98,111,96,95,90,104,90,108,108,64,94,104,109,82,103,90,102,102,94,94,99,108,99,97,97,94,97,107,102,112,112,97,98,104,98,98,102,102,108,100,113,100,106,95,105,95,107,108,104,105,109,96,101,102,95,95,109,123,102,104,103,97,106,105,100,111,105,111,103,112,110,96,95,106,103,106,102,96,94,109,95,105,109,90,106,98,107,101,99,89,92,96,103,97,93,91,103,90,109,100,83,98,89,106,93,101,105,105,95,112,116,110,115,113,101,108,101,99,85,94,97,108,73,107,99,94,106,99,98,92,103,104,99,99,96,114,95,106,94,99,92,113,109,107,98,103,98,89,100,109,102,96,96,91,93,106,105,92,104,111,117,99,102,98,104,109,71,103,104,102,100,98,102,104,92,100,100,102,112,94,94,96,96,95,97,107,91,101,99,97,97,91,97,100,99,103,110,98,109,100,90,94,106,96,111,101,92,93,108,99,103,109,91,99,100,102,97,98,114,113,109,97,104,101,116,112,109,85,99,102,99,97,97,117,116,101,90,113,107,96,96,109,96,98,101,107,101,107,98,98,112,119,105,107,99,96,106,99,99,96,102,87,90,85,74,110,105,106,113,109,104,98,79,110,90,107,97,91,110,98,110,77,93,93,105,87,100,106,97,105,91,90,102,109,105,94,95,102,98,111,95,98,89,98,102,104,110,90,86, +665.93793,105,102,90,92,79,96,103,109,100,75,90,101,94,102,87,95,100,117,117,89,105,102,96,107,106,105,102,111,102,92,102,99,108,96,118,95,110,85,105,103,100,113,100,104,97,98,96,114,115,103,108,80,105,99,106,103,102,107,95,95,110,112,96,93,105,109,87,101,100,94,93,104,101,109,99,96,90,111,116,91,91,104,123,99,101,95,114,105,101,89,106,107,106,96,97,95,105,99,110,103,80,100,105,106,91,89,105,101,104,106,102,103,109,101,97,101,99,109,99,99,110,100,98,100,103,113,108,91,106,104,98,95,106,93,92,120,101,104,98,95,96,116,102,99,110,79,101,83,98,100,88,106,99,100,92,92,102,113,111,104,84,107,95,106,94,101,91,96,90,106,98,99,101,92,90,100,100,82,106,113,102,103,94,99,101,110,90,88,108,99,91,101,111,94,99,103,104,96,94,103,111,101,96,93,122,91,91,93,96,103,99,112,100,109,96,96,94,110,113,102,114,104,103,94,97,105,91,102,108,94,114,94,81,111,109,118,101,102,99,95,108,86,98,99,94,93,102,99,101,109,110,100,95,111,107,109,95,104,123,105,97,107,105,103,103,97,101,101,108,98,101,100,101,108,106,100,100,102,101,94,109,103,101,104,100,102,94,101,70,98,100,104,99,99,102,99,97,112,105,101,99,94,104,94,94,96,100,110,105,95,89,109,100,93,89,92,95,106,105,108,93,102,111,99,97,105,102,87,105,99,105,98,99,97,76,101,111,110,107,103,97,108,110,96,95,104,97,113,95,104,102,112,113,101,103,101,103,99,99,107,86,100,96,80,90,96,89,108,90,96,99,104,107,103,102,104,108,65,100,99,109,97,95,104,102,100,78,94,95,101,110,97,98,94,99,106,98,114,93,115,99,103,106,104,89,90,96,89,106,105,94,105,106,104,91,108,110,87,95,93,100,90,101,83,91,108,103,98,97,105,102,100,94,95,82,101,97,95,91,91,109,112,103,106,86,108,95,92,99,104,91,110,107,114,96,98,97,90,106,105,84,94,90,109,90,97,105,101,104,85,96,110,103,101,116,81,100,107,96,99,103,103,111,91,94,106,111,94,108,98,96,105,97,98,92,99,105,100,91,100,107,87,111,106,104,110,106,90,101,106,101,99,97,87,105,97,100,99,99,90,96,103,108,101,103,103,98,117,101,101,91,109,105,98,88,104,100,108,87,104,95,105,99,94,100,87,104,98,112,107,85,113,96,105,94,95,103,96,100,104,86,97,103,96,98,98,102,104,103,97,101,94,104,94,112,104,99,96,110,106,111,121,101,103,113,95,111,95,112,100,96,98,104,74,106,109,99,107,106,116,102,91,87,109,82,97,99,94,111,98,97,99,107,103,93,93,96,97,90,125,97,93,123,103,114,97,117,90,100,111,109,111,102,99,97,92,99,90,106,101,100,110,94,97,104,96,100,117,100,129,100,97,103,104,107,101,115,110,111,95,100,91,107,104,100,95,77,108,107,88,108,108,98,102,91,111,99,96,112,96,83,93,110,99,94,97,100,88,102,108,105,103,103,87,112,94,91,105,117,107,96,105,103,113,103,121,95,106,91,98,101,96,102,105,96,102,93,92,105,94,97,96,102,106,103,100,102,85,95,110,96,109,99,105,92,101,91,95,100,88,104,109,98,102,102,104,113,105,112,106,111,99,99,103,99,88,101,104,106,97,86,100,83,101,112,106,94,95,92,88,103,105,88,91,89,102,81,110,103,91,109,110,103,92,103,106,96,107,94,108,99,112,100,98,91,103,103,101,106,110,97,101,105,102,107,106,90,91,99,89,105,106,98,94,114,103,90,107,122,96,118,113,100,101,110,99,113,102,101,102,104,94,91,109,92,109,110,97,106,76,96,95,104,103,111,112,99,86,102,95,112,87,109,88,129,108,98,104,109,102,106,99,106,96,94,104,99,107,98,110,109,102,102,100,103,102,99,93,70,111,103,106,84,108,129,93,85,81,111,94,99,105,113,93,95,105,98,101,99,99,105,117,107,98,102,98,98,109,91,109,99,94,107,100,102,105,102,106,100,90,99,103,95,96,112,104,94,95,104,102,109,113,96,108,99,103,104,95,118,106,95,98,106,89,99,85,87,97,95,133,104,106,98,102,107,108,102,86,103,100,97,95,91,91,108,90,88,107,107,104,97,110,104,103,102,102,100,93,94,98,110,105,104,97,95,79,100,98,101,98,90,105,102,99,95,101,102,112,98,101,99,94,100,102,114,98,99,99,103,100,104,91,97,113,92,104,98,103,108,100,103,95,125,102,92,97,105,87,116,91,104,103,103,90,95,98,111,102,87,94,117,112,92,107,86,112,106,99,106,94,107,126,112,98,107,99,90,107,107,116,107,104,114,107,100,101,106,115,102,90,86,101,103,101,101,97,101,102,93,88,108,110,106,82,108,102,106,91,99,94,96,100,109,89,96,99,102,99,95,114,108,104,110,108,101,99,96,98,91,85,91,105,103,116,79,108,100,117,93,99,96,108,101,100,106,103,107,107,96,110,96,110,106,98,100,99,96,104,107,107,100,100,101,110,103,92,109,103,105,100,106,107,117,107,102,100,103,102,111,94,107,106,115,102,103,99,99,108,107,98,98,106,103,102,104,113,96,107,97,103,103,100,107,116,105,114,107,96,102,92,103,105,107,111,99,93,83,105,106,111,110,116,109,102,78,111,96,126,108,101,102,108,104,106,122,98,105,110,89,101,108,112,94,102,102,96,101,109,112,97,91,110,102,105,105,107,102,100,103,113,102,101,103,91,103,103,100,99,102,106,105,102,95,97,115,98,96,102,103,105,117,97,110,101,101,92,76,109,121,98,106,92,103,109,113,92,100,96,104,97,99,112,110,101,103,101,110,96,101,110,100,109,99,101,100,113,89,96,121,104,90,90,97,103,100,92,104,106,105,100,103,91,92,96,117,98,104,110,105,113,110,97,110,106,109,87,115,108,98,102,109,103,98,113,106,93,95,105,94,108,99,98,102,104,113,102,109,101,92,90,103,91,108,103,93,92,100,107,101,109,103,108,107,107,102,102,101,88,89,91,101,99,101,109,111,102,106,98,107,90,88,91,90,103,104,107,108,98,108,105,98,96,115,102,112,110,103,104,101,97,114,112,91,98,112,103,105,98,102,127,100,106,109,109,94,98,95,119,104,111,92,98,91,96,102,111,112,94,109,108,107,93,104,106,99,94,101,99,102,106,101,106,105,108,100,95,97,101,108,116,105,102,100,96,108,107,97,82,102,97,113,108,99,98,108,108,103,94,103,100,93,113,103,102,98,89,105,90,113,106,103,109,115,105,102,102,88,100,103,101,111,96,100,110,106,106,103,105,110,94,99,91,105,117,97,108,101,99,96,93,102,92,109,107,98,96,96,99,111,102,93,103,102,104,97,103,79,99,107,86,97,100,109,88,100,113,116,106,106,98,110,98,105,113,111,111,96,104,90,113,99,103,93,113,99,108,122,98,91,101,101,112,112,98,113,102,94,102,97,115,106,99,101,95,116,99,111,84,108,76,100,92,94,108,95,96,91,105,91,89,105,103,107,113,105,88,99,109,105,105,91,114,114,100,103,103,103,104,103,99,106,103,102,107,105,99,111,104,115,109,98,110,103,117,105,110,104,102,99,108,107,95,109,97,104,98,102,106,101,102,94,93,105,109,100,101,96,113,114,117,101,92,96,108,101,89,95,113,100,110,109,106,96,105,95,95,115,99,104,102,100,105,96,111,100,99,92,94,103,73,111,88,105,91,94,116,98,106,96,111,100,105,94,106,103,106,108,103,110,109,91,102,112,104,103,88,94,101,103,106,98,108,102,99,126,88,104,87,100,93,102,96,102,100,120,103,113,106,95,108,108,101,121,99,101,119,96,100,104,98,104,71,87,104,95,98,103,102,103,109,100,106,95,104,106,102,98,95,102,98,104,93,108,109,99,103,91,95,100,98,106,100,93,91,108,95,113,100,103,93,103,107,94,100,93,105,96,90,109,106,111,107,121,101,91,101,108,104,76,103,112,97,112,107,107,108,104,106,116,96,110,101,105,106,113,106,104,113,98,100,111,102,93,103,100,113,107,104,104,101,103,105,96,106,104,110,96,94,88,97,93,113,104,108,99,109,94,115,93,106,111,103,104,105,95,105,105,100,87,102,88,91,98,106,114,107,104,109,99,102,101,93,98,107,102,94,95,99,99,113,92,94,100,109,116,107,96,102,98,120,100,94,95,100,100,92,88,95,108,96,107,117,83,120,93,111,99,104,103,99,105,101,101,106,98,109,112,96,108,112,104,103,108,108,105,106,100,107,101,106,111,111,103,110,109,106,106,118,107,85,79,94,107,98,100,111,111,99,92,83,100,99,113,102,99,80,98,99,103,98,109,121,94,106,110,91,82,100,102,109,103,120,103,111,98,107,98,112,98,106,104,104,101,103,108,104,104,95,111,82,93,100,100,114,99,100,100,101,107,100,88,119,99,122,99,92,107,89,98,101,104,113,117,117,94,118,111,101,90,113,110,89,102,101,103,105,91,100,105,111,110,108,94,101,107,113,98,110,103,98,111,87,94,107,104,107,113,95,96,98,99,116,98,108,98,90,97,108,98,96,89,104,99,98,97,99,100,101,107,99,91,99,112,83,104,111,77,78,92,112,101,105,95,88,115,106,110,95,108,95,102,93,106,106,104,95,92,104,96,98,106,114,99,104,113,104,112,100,92,95,100,98,115,97,103,102,104,100,100,87,107,104,88,101,96,105,99,115,90,101,97,108,95,100,80,106,98,83,103,92,96,83,112,91,110,97,90,107,96,98,111,110,107,109,109,88,99,108,105,101, +666.07916,103,68,82,96,90,97,105,87,94,99,71,106,105,117,72,89,101,103,99,103,100,125,107,90,80,102,110,105,101,111,97,102,102,108,104,78,99,102,102,90,118,100,96,117,107,106,95,106,104,99,98,91,106,98,108,104,103,86,111,100,98,129,94,89,110,109,106,104,88,102,109,104,95,117,93,104,94,100,88,104,99,113,100,113,83,92,114,100,105,105,112,92,104,103,94,92,106,96,95,105,95,97,95,108,95,110,108,101,92,97,92,96,107,92,106,96,98,108,96,100,105,93,100,101,114,112,106,95,117,85,90,114,106,106,104,85,109,99,103,85,94,100,107,89,112,88,101,104,97,88,92,108,92,95,108,97,95,106,102,82,99,99,100,96,103,117,87,106,100,103,111,104,107,100,95,103,103,98,102,111,100,106,108,104,104,103,99,89,97,97,111,102,110,101,105,95,107,97,92,106,117,112,98,106,108,109,105,99,105,96,94,104,99,91,110,104,93,105,96,93,107,112,93,97,102,106,98,110,100,96,99,94,96,112,105,102,111,126,101,109,103,99,100,110,108,92,101,97,101,101,105,88,99,104,93,104,95,91,92,105,93,95,74,95,92,102,108,99,99,102,101,107,103,97,99,102,108,99,80,77,93,97,115,99,106,95,101,94,99,102,96,97,109,100,101,101,94,105,108,116,103,106,96,110,102,109,100,103,104,103,98,109,99,102,102,105,81,86,91,136,94,93,103,97,98,122,95,95,108,116,105,96,89,103,106,103,106,92,98,99,105,104,109,93,105,109,109,101,109,111,112,87,98,113,103,112,113,98,101,98,110,103,100,94,104,100,106,95,108,98,94,111,112,92,117,85,91,114,101,112,105,116,97,102,97,103,78,96,104,97,117,87,100,76,115,93,102,91,97,97,101,101,105,95,94,99,104,100,105,98,92,90,87,99,108,108,100,103,108,105,101,99,104,92,102,101,115,80,109,134,95,109,101,92,110,94,99,95,91,88,112,116,100,114,99,98,96,97,107,115,88,96,102,114,95,105,100,101,101,99,88,101,110,110,103,102,100,100,104,93,99,115,112,90,102,100,102,107,102,95,98,94,100,103,104,77,103,116,99,95,101,92,102,95,93,103,77,106,102,109,109,95,108,88,104,106,99,107,106,105,105,110,112,100,106,105,96,103,105,97,103,88,102,95,108,113,101,98,107,102,110,108,117,104,99,102,93,103,114,101,93,105,99,90,105,89,103,112,94,103,109,118,99,90,82,100,104,101,99,109,103,107,101,109,97,100,102,103,99,95,91,95,101,102,98,113,100,84,102,84,94,98,106,95,95,101,106,98,106,101,106,100,82,104,119,104,106,100,106,122,94,106,112,112,108,103,93,106,113,99,100,98,100,103,117,108,103,89,96,87,100,113,90,107,100,98,115,111,101,111,95,84,97,106,102,107,100,100,104,106,110,107,118,103,113,95,94,91,103,107,110,103,103,112,100,108,98,103,98,105,94,95,113,118,88,97,106,106,107,104,109,96,105,96,97,101,104,101,110,99,104,99,102,99,97,99,88,99,101,98,100,82,103,95,100,99,105,105,112,95,121,109,104,99,104,101,109,117,94,95,89,98,99,101,96,114,99,110,104,84,106,91,100,101,100,101,96,98,103,118,100,104,99,101,99,108,107,108,110,102,106,107,97,100,108,102,91,108,102,109,104,105,116,101,105,107,110,100,104,113,108,94,96,102,89,103,93,104,108,103,109,105,115,110,101,95,111,102,101,96,97,105,99,103,95,106,91,101,98,109,103,96,106,106,114,98,91,102,102,103,105,106,99,128,109,109,91,110,98,105,106,95,100,100,115,111,94,94,104,110,93,108,104,109,111,81,104,98,94,89,103,97,95,102,102,109,101,94,100,96,100,101,104,97,95,104,92,97,112,98,102,100,105,96,112,109,103,98,104,114,89,101,94,98,101,105,100,104,121,103,111,104,95,103,106,106,100,85,104,111,108,108,108,105,105,89,102,111,102,98,96,112,96,109,108,86,107,101,97,107,95,115,102,101,96,97,96,90,93,100,97,106,109,114,102,101,109,115,97,109,107,102,96,108,108,94,106,94,90,109,102,116,98,105,101,101,97,113,99,100,94,103,75,109,92,102,98,104,94,95,103,132,95,115,115,98,104,100,110,100,109,94,85,95,105,91,93,107,106,89,102,103,101,97,90,102,103,98,103,106,119,102,98,105,107,91,102,109,93,108,91,104,101,101,95,96,97,95,106,94,94,100,105,99,104,94,109,96,109,103,96,100,97,107,108,109,99,104,111,100,112,106,111,96,95,102,101,94,102,94,97,87,88,113,106,97,101,91,113,99,121,105,118,94,94,72,117,101,76,92,99,96,123,108,99,94,99,110,114,117,87,112,129,125,94,101,107,106,104,96,107,116,108,95,97,104,109,93,90,90,104,105,108,118,117,119,108,96,106,110,106,111,106,105,98,108,101,104,98,94,94,97,98,103,100,108,116,100,108,101,96,113,105,103,98,97,95,99,99,97,96,99,99,102,101,111,102,116,107,109,98,103,109,94,100,95,92,99,93,106,99,95,97,103,109,94,102,91,97,103,108,95,111,112,107,107,101,106,99,114,110,104,112,99,113,111,98,95,99,101,103,105,102,101,113,100,109,108,114,107,105,105,105,105,113,98,111,99,114,94,104,104,101,111,93,106,92,100,101,94,97,102,102,94,104,113,112,125,99,95,91,97,74,102,114,109,108,114,94,109,112,102,124,104,113,103,93,110,114,91,102,98,107,114,116,109,104,102,95,106,111,94,112,102,95,101,101,104,98,99,98,100,108,108,106,96,99,96,115,104,107,97,104,117,111,95,118,100,113,100,104,103,97,104,106,89,105,94,99,109,98,98,97,106,111,104,109,98,98,104,101,108,100,97,110,104,104,102,102,101,108,113,106,97,98,113,108,100,99,102,114,107,102,106,98,68,106,108,105,102,100,98,106,98,104,107,105,110,109,98,108,88,95,106,108,99,104,111,91,106,101,114,106,98,105,101,108,94,108,103,103,107,102,106,90,99,92,99,107,92,101,129,102,107,102,104,107,92,95,100,109,99,100,98,103,101,108,122,95,98,113,99,90,90,104,108,92,111,107,116,101,105,109,90,107,96,106,105,100,90,110,104,103,94,100,110,99,110,92,108,90,112,105,94,103,111,96,95,94,111,100,103,100,93,105,97,94,101,107,112,102,107,105,98,106,97,89,103,104,104,102,102,102,86,104,105,99,113,113,98,104,99,116,108,112,96,101,107,104,97,103,101,108,92,110,108,119,101,88,97,98,112,102,103,103,95,101,102,98,106,89,95,101,112,109,103,109,102,96,104,102,109,102,95,110,108,99,95,79,97,98,102,112,101,104,99,99,93,95,103,103,102,100,103,102,108,102,104,96,98,95,101,110,108,97,100,99,107,100,99,113,105,94,105,108,105,90,96,93,121,100,108,98,111,111,111,106,105,102,102,106,105,105,105,109,105,105,104,102,113,95,91,109,102,101,100,101,107,102,110,109,112,115,118,101,100,111,116,97,100,87,115,98,101,103,102,104,101,111,113,98,97,92,65,102,110,107,106,112,108,122,100,98,102,91,100,110,110,96,105,100,93,114,107,92,101,103,109,106,94,101,106,99,107,102,104,107,113,107,109,102,95,104,109,99,106,106,101,104,105,113,103,103,82,111,107,96,108,95,100,98,103,100,120,100,109,100,100,99,97,98,93,91,103,90,101,98,110,107,121,87,99,99,107,102,94,98,104,103,96,104,97,109,99,86,103,101,91,89,105,101,110,95,93,98,94,111,101,98,96,104,104,107,100,103,113,99,121,100,119,97,90,100,112,106,100,92,97,112,87,111,91,91,107,94,100,111,101,108,101,107,96,98,105,96,106,97,117,108,102,108,103,92,98,90,109,105,107,118,100,115,100,121,96,102,100,107,105,102,104,96,98,93,110,110,101,91,109,97,104,108,103,96,96,106,101,109,112,107,101,110,110,84,106,107,125,98,95,107,98,90,85,107,94,119,114,100,96,107,96,103,108,90,100,115,112,108,139,97,95,94,100,98,99,100,104,100,90,100,105,104,98,101,108,98,114,97,94,110,107,112,89,82,125,101,113,106,105,94,95,100,99,104,105,87,113,102,106,109,94,96,101,93,102,99,92,100,104,115,103,103,109,106,103,106,109,104,95,101,91,105,96,100,105,95,104,99,100,93,103,113,103,97,108,99,98,103,88,98,92,96,95,112,94,104,99,85,106,92,101,107,94,104,100,116,102,112,110,97,102,96,83,98,105,85,117,100,99,117,104,113,103,105,108,109,96,123,93,96,106,98,104,126,98,100,101,109,106,87,95,100,97,87,113,95,92,87,112,99,91,125,101,98,107,96,102,98,104,96,90,95,104,91,101,88,101,96,106,99,99,97,101,107,101,93,120,98,95,104,109,101,90,93,102,94,102,94,101,104,92,93,97,98,113,86,104,91,101,101,97,103,105,103,106,101,94,101,94,100,95,96,105,103,98,89,100,109,115,103,92,90,90,113,106,114,107,100,110,102,101,125,106,99,101,98,92,106,106,98,94,99,109,107,101,102,111,100,109,103,88,108,97,91,104,96,101,95,98,110,116,93,100,103,91,94,98,107,102,97,102,100,105,112,93,99,93,102,99,110,83,109,103,93,96,101,109,94,110,105,93,78,93,85,91,80,90,104,94,98,109,97,108,110,113,96,112,103,101,105,106,109,105,105,113,106,98,108,89,106,93,100,94,95,106,115,101,103,102,106,102,103,96,104,110,98,108,115,88,101,105,105,97,105,100,98,105,87,91,115,109,124,103,106,111,110,105,104,98,108,88, +666.2204,106,109,102,100,100,97,109,111,98,103,118,95,99,106,101,95,88,95,106,106,111,78,91,95,92,115,102,100,97,99,98,97,98,109,105,77,109,90,94,100,103,104,100,98,93,94,107,103,105,91,104,100,105,118,71,103,113,95,95,112,92,109,94,117,94,112,86,104,115,91,94,108,113,105,105,100,92,105,95,110,99,105,107,114,100,94,97,101,100,98,105,105,83,99,98,94,120,108,109,102,106,102,107,99,94,102,100,104,112,98,96,97,99,100,92,99,106,98,87,112,108,103,97,117,104,117,98,103,108,91,113,99,103,109,98,91,95,99,112,104,98,89,108,98,99,95,102,104,104,106,109,109,105,94,109,106,106,109,114,99,112,90,114,91,115,102,98,94,105,89,103,103,96,117,104,101,106,107,106,108,93,89,116,107,93,99,101,101,108,85,92,98,90,100,108,100,105,100,105,109,122,98,109,106,101,94,90,103,98,104,96,100,106,91,98,106,100,101,105,107,99,98,101,105,115,99,99,107,98,103,111,108,105,115,98,101,102,105,108,95,94,108,114,99,99,107,98,100,94,104,106,102,97,101,103,102,90,97,95,114,97,109,102,101,97,111,84,105,116,91,102,95,97,94,92,84,97,104,103,94,102,112,103,104,101,106,90,108,103,102,74,96,93,102,108,100,104,110,98,95,101,126,100,103,100,109,103,94,107,117,102,113,103,98,111,99,99,88,112,100,104,115,100,102,97,108,91,96,110,111,94,101,102,100,109,107,103,91,106,107,99,111,92,93,109,105,95,107,96,109,99,86,100,96,106,104,104,112,102,102,102,97,99,99,97,97,106,111,109,98,106,98,104,85,76,103,95,104,103,120,103,100,104,99,105,99,101,104,93,103,102,98,99,108,96,109,90,103,88,116,99,103,103,109,98,99,104,122,102,100,90,93,88,95,110,108,91,94,102,91,95,94,89,103,105,101,105,110,93,112,87,103,106,101,95,93,105,109,91,101,106,109,103,104,109,104,114,109,109,106,105,91,100,99,105,110,113,103,77,106,99,108,108,95,107,102,108,102,101,109,95,100,111,89,109,100,96,103,119,113,101,105,97,107,94,87,114,94,95,92,101,78,107,107,113,105,102,108,90,109,113,104,110,95,104,93,103,105,97,102,104,91,108,119,116,100,80,104,91,99,109,98,100,105,112,101,105,85,101,108,99,92,103,102,101,89,108,92,106,116,103,107,90,104,105,89,109,101,106,109,99,102,107,102,99,99,104,116,94,98,106,115,105,105,108,102,102,113,109,92,109,88,101,115,112,98,102,99,107,122,99,102,104,98,98,96,106,101,97,87,111,101,97,101,117,103,108,104,111,94,113,95,106,104,122,111,105,95,109,109,101,107,112,115,91,91,108,95,100,104,95,101,99,103,111,99,122,99,99,101,100,103,105,109,109,108,130,108,80,101,92,112,114,112,95,104,108,105,95,101,105,107,97,120,108,108,107,110,95,103,99,85,98,103,101,101,102,113,110,103,116,83,100,98,100,74,102,104,100,108,110,111,98,95,100,98,101,88,102,102,104,98,95,112,104,106,98,116,97,102,109,95,99,104,102,110,96,113,113,109,100,100,106,108,101,105,110,104,100,98,109,112,99,91,87,116,111,99,114,112,74,98,94,114,100,110,101,93,103,97,103,97,98,102,114,109,109,98,104,118,99,98,101,107,99,93,100,98,105,106,92,98,96,112,106,100,103,99,98,106,97,102,108,106,102,100,108,89,104,105,99,106,110,105,111,111,109,107,100,101,108,107,95,105,110,97,92,105,105,95,105,96,97,133,106,116,105,100,105,110,102,102,112,106,93,100,95,117,102,102,100,91,105,129,104,93,108,118,111,99,103,106,104,109,109,103,99,101,97,109,99,95,99,106,97,115,102,100,107,99,87,88,98,96,92,102,100,94,93,86,99,92,92,102,102,93,96,93,104,105,98,111,79,107,94,115,109,95,113,93,108,107,104,98,105,105,103,98,92,123,109,102,111,109,108,101,100,106,88,112,104,105,104,100,98,101,100,115,112,93,100,105,113,106,85,96,99,105,115,94,104,126,109,95,103,95,105,103,91,106,99,103,97,108,97,98,97,107,101,96,102,98,103,104,106,104,98,100,103,71,100,103,111,93,110,82,109,101,105,104,99,99,103,100,96,90,97,123,93,101,108,95,109,87,91,102,97,106,95,96,101,95,90,63,106,103,95,102,102,105,97,87,90,98,103,112,99,101,128,99,103,99,99,88,100,106,112,106,103,90,111,112,95,102,102,86,108,101,102,105,84,108,93,100,101,102,112,103,92,106,100,111,109,100,96,108,108,97,100,97,88,107,91,92,103,101,82,104,102,100,104,102,99,113,100,96,101,109,101,109,101,99,96,100,107,105,104,99,103,92,105,105,111,96,97,100,100,102,97,116,103,109,117,96,97,88,95,102,101,113,107,111,98,108,89,99,112,110,111,97,102,102,104,108,100,104,87,99,102,91,108,117,111,118,105,95,96,107,94,108,98,117,101,96,99,104,94,106,97,101,103,99,110,98,93,98,92,107,108,120,105,94,91,105,97,102,107,98,103,100,103,101,107,108,98,101,105,92,101,106,69,91,108,110,107,103,97,89,104,106,111,108,99,95,101,99,103,102,96,103,133,103,105,101,101,106,108,105,96,108,94,98,103,111,95,97,97,94,103,87,88,101,100,98,95,112,104,111,109,109,112,97,96,99,105,112,82,107,81,97,116,111,98,110,105,99,95,108,107,105,91,115,105,103,100,104,104,103,108,107,115,109,104,99,101,106,103,101,112,107,105,112,109,105,96,101,101,114,107,113,111,99,111,109,109,96,101,114,104,104,98,99,97,111,117,102,95,101,117,101,94,108,98,97,97,115,106,102,115,103,104,101,107,102,101,110,94,109,101,95,109,96,102,112,100,92,108,101,109,106,114,103,95,96,119,107,96,87,103,101,102,104,106,104,111,91,104,95,102,100,111,102,102,113,112,105,103,104,96,106,105,99,109,125,98,102,104,92,107,116,109,99,99,104,100,97,99,113,108,92,104,95,107,114,106,94,115,92,113,121,117,101,99,108,113,104,111,101,103,110,90,95,99,104,106,95,99,101,101,82,102,101,78,108,96,114,97,108,102,102,110,106,97,102,106,104,117,106,96,97,105,103,108,104,88,117,105,101,99,107,140,109,88,100,104,100,111,101,117,99,104,102,117,112,116,78,101,117,104,106,106,105,100,99,105,112,100,115,109,106,108,84,105,109,109,98,92,103,113,101,107,99,105,99,111,104,100,100,99,97,98,110,100,106,109,103,108,109,111,109,103,111,103,113,107,103,109,106,94,108,105,108,107,101,100,103,104,95,104,89,114,98,94,104,107,108,113,100,82,106,111,91,114,102,107,105,112,109,118,99,107,108,105,102,111,100,128,106,140,102,112,91,107,119,93,102,108,101,101,102,99,100,102,115,101,109,112,99,96,104,106,95,101,108,108,106,106,105,107,112,101,105,112,100,105,108,97,111,102,92,102,97,103,101,106,113,120,94,115,87,101,118,95,105,104,95,97,102,104,90,93,93,100,92,116,98,111,120,108,93,102,101,101,98,100,94,109,105,96,109,94,108,102,113,103,101,112,111,101,106,111,113,99,106,91,92,113,110,111,106,83,96,94,95,109,108,109,108,95,117,92,112,103,104,112,98,97,102,113,90,88,111,103,87,111,102,104,64,88,87,98,106,101,99,106,94,102,96,115,108,100,106,95,102,115,101,87,84,94,106,109,91,105,101,91,108,98,99,100,99,104,121,99,122,102,104,105,93,93,102,102,92,100,97,109,109,97,98,98,107,116,103,101,101,117,105,99,110,97,105,89,105,120,95,104,102,109,91,115,102,114,102,104,104,99,123,95,103,112,96,102,103,103,112,97,102,96,109,101,103,112,106,111,109,104,100,107,95,94,108,98,107,102,90,87,98,100,117,93,101,111,116,112,94,116,98,124,106,106,102,109,106,101,98,101,111,89,106,109,102,103,99,102,85,101,107,105,105,102,93,98,115,97,108,97,112,109,113,114,108,106,97,115,106,113,105,98,106,98,93,106,108,95,116,93,101,104,93,104,114,108,99,106,96,97,110,109,100,89,107,107,97,108,105,116,105,109,102,99,94,113,99,104,113,109,101,114,97,102,105,95,99,98,103,107,91,103,111,100,102,98,109,108,105,96,108,100,94,87,102,117,113,101,98,109,100,101,95,93,113,100,111,102,102,105,105,118,107,107,106,108,104,106,98,121,106,99,108,101,104,109,98,96,103,93,86,109,115,118,122,109,81,104,112,101,100,92,99,107,86,104,110,107,99,101,110,106,84,113,98,105,100,112,107,94,121,103,104,109,99,94,105,96,103,99,92,103,97,89,115,106,99,92,101,109,98,97,94,94,102,96,87,113,104,112,106,98,101,101,100,105,104,110,118,110,107,109,102,109,93,84,98,106,97,102,96,106,106,108,101,96,110,99,93,98,99,106,102,93,107,104,113,99,97,90,109,108,96,96,94,97,105,101,102,103,92,111,106,110,111,82,116,97,100,110,106,97,109,100,98,90,100,112,100,103,115,107,108,106,113,98,101,101,106,132,112,110,69,96,99,96,105,113,106,105,110,103,102,108,104,105,98,104,92,109,102,106,76,92,92,97,102,101,94,100,111,113,88,115,109,119,105,94,113,100,95,88,97,101,102,103,115,92,100,92,110,100,98,109,80,89,102,103,109,106,99,109,101,96,92,104,112,106,110,112,116,109,105,106,84,117,92,92,106,111,118,99,118,106,88,110,85,98,104,119,95,100,103,96,107,101,107,105,97,94,103,99,135,89,108, +666.36163,104,102,98,107,90,99,103,96,98,84,91,101,99,100,106,92,105,104,108,104,106,108,92,110,98,93,94,97,96,96,93,87,94,106,98,99,101,89,94,98,121,83,106,89,105,110,101,83,86,112,102,111,103,91,94,106,96,97,112,93,93,103,113,96,130,93,98,105,99,89,103,106,92,112,100,103,114,110,110,99,121,112,94,107,100,109,99,118,117,109,106,102,82,93,102,97,91,107,109,121,104,100,96,95,92,113,95,107,101,108,109,102,101,83,106,106,110,115,110,101,105,100,86,107,106,111,114,96,121,105,111,99,87,111,117,100,92,100,108,105,102,102,103,97,102,110,96,94,100,103,98,102,106,92,90,108,100,97,98,97,96,99,99,102,96,100,125,98,98,116,105,98,100,90,103,112,83,91,98,104,102,105,99,110,94,100,104,104,116,103,97,105,98,93,97,100,100,108,107,109,117,103,106,102,98,104,105,109,113,103,103,107,107,104,106,98,104,95,94,91,105,119,108,104,105,99,103,99,109,102,92,102,94,102,100,101,107,107,124,104,88,95,105,105,110,102,100,97,93,89,100,102,100,106,108,107,103,96,90,103,96,109,106,108,98,105,99,104,100,107,105,104,96,105,107,106,114,100,98,101,97,111,109,95,109,108,93,102,104,106,105,96,103,103,113,100,98,112,107,110,108,110,99,113,90,100,102,103,110,109,94,111,96,110,99,99,100,98,95,109,101,100,112,96,101,102,100,103,107,118,80,102,100,104,109,96,83,94,99,92,104,103,100,87,92,108,108,93,109,100,98,102,118,100,104,105,96,102,117,98,106,108,102,71,106,107,90,108,102,98,102,100,95,102,113,108,95,118,99,109,107,106,87,110,107,104,111,109,98,107,104,96,107,105,104,92,106,97,116,112,100,100,85,93,94,109,97,101,100,102,91,93,112,96,105,103,110,104,87,96,115,100,98,110,103,95,108,93,100,102,101,104,105,114,103,103,108,109,101,110,115,107,107,130,97,118,97,87,109,100,79,114,110,93,113,109,110,92,92,104,99,97,102,109,117,95,111,101,101,107,100,100,98,85,113,101,110,104,101,104,109,101,110,105,109,107,115,105,96,99,100,99,99,100,91,112,100,106,110,99,108,107,91,106,105,101,103,108,109,100,92,106,105,110,107,116,105,95,104,101,116,103,102,96,103,117,99,113,100,110,103,117,89,99,113,101,100,100,106,108,96,100,107,98,111,104,113,102,94,109,107,106,92,106,109,106,98,93,92,100,112,104,96,108,97,95,102,101,104,104,100,95,84,101,102,120,106,98,101,97,91,98,114,88,91,104,106,99,95,104,121,106,107,102,108,106,102,109,93,110,95,109,103,105,95,100,87,99,101,109,86,107,105,109,113,102,108,100,97,103,106,103,95,100,110,91,104,109,104,108,107,102,111,117,89,103,101,95,101,109,107,111,98,99,96,100,118,77,116,104,101,105,104,119,105,105,105,103,95,108,107,104,88,107,94,103,102,101,99,106,101,110,104,109,109,120,103,97,102,104,107,108,106,91,89,107,98,91,109,106,107,102,88,96,111,100,109,112,102,103,104,100,98,104,97,97,101,107,95,96,100,102,103,117,94,91,107,106,105,119,99,104,106,103,98,96,106,109,99,118,105,91,107,100,104,95,99,106,103,101,105,108,96,105,95,106,112,97,95,112,102,88,102,96,99,101,106,79,110,101,105,114,87,99,105,104,95,94,97,92,112,112,100,102,96,79,112,75,104,95,99,100,99,112,104,105,104,107,110,104,89,94,113,105,103,111,85,111,95,105,104,101,105,123,100,99,85,106,99,100,94,103,99,99,105,111,111,101,97,102,97,114,109,104,104,112,109,90,95,115,112,101,108,109,109,104,100,99,110,106,94,100,110,95,96,98,95,100,99,89,107,91,101,101,87,93,103,86,99,110,107,92,106,102,93,99,103,102,96,104,96,111,89,112,90,109,102,99,106,96,89,98,105,93,100,103,99,103,118,78,90,107,102,116,99,85,99,109,101,100,100,105,102,93,103,103,87,107,101,98,100,113,105,102,109,104,100,108,104,105,112,102,102,98,94,103,105,103,93,100,101,94,119,116,96,97,96,92,105,95,111,99,101,101,101,106,98,117,103,97,104,98,108,116,99,102,110,103,85,99,104,101,103,99,109,104,104,93,103,99,98,92,100,104,99,78,108,94,100,106,84,105,98,100,100,92,105,109,100,102,104,110,101,97,92,101,84,97,103,105,101,94,92,95,95,106,92,95,100,103,102,113,92,112,111,105,103,86,112,102,107,110,96,97,104,98,103,99,106,102,89,93,102,101,106,97,97,104,120,96,104,111,101,98,95,99,108,105,97,105,108,93,104,106,103,86,61,97,105,112,109,98,116,96,99,93,100,105,102,93,105,110,98,100,92,87,88,89,95,98,99,113,106,104,98,98,103,82,113,84,96,104,87,100,95,88,69,94,109,102,110,88,104,105,99,111,97,91,106,100,99,116,101,97,98,108,107,112,99,108,105,108,101,106,107,102,99,103,101,105,101,112,100,112,113,108,102,112,93,101,100,107,104,103,101,105,102,104,119,105,95,96,109,96,104,101,104,91,100,99,107,99,108,95,101,105,110,91,112,96,100,100,109,97,104,105,90,110,104,109,116,105,89,111,104,114,117,100,100,106,95,103,111,94,96,106,94,91,100,121,95,109,90,98,106,109,107,102,112,111,100,108,108,110,100,104,102,102,113,100,98,119,100,102,108,97,95,103,100,104,110,106,97,103,101,97,110,88,114,108,98,105,103,101,88,92,109,103,101,84,105,113,100,102,115,106,108,102,87,106,101,100,122,82,70,92,100,102,102,109,109,88,93,106,106,103,109,106,100,112,91,94,108,95,93,109,89,110,105,94,103,95,102,104,91,113,102,106,102,108,111,98,107,104,117,106,115,110,88,98,111,112,94,95,98,111,90,111,108,103,109,110,94,98,95,94,112,103,97,105,83,89,100,106,99,97,95,102,96,94,107,99,109,102,101,115,104,101,107,97,104,96,99,98,90,97,112,105,94,101,108,102,109,111,103,106,115,97,93,94,101,105,110,103,100,101,102,111,95,106,101,119,93,94,109,87,101,102,97,104,93,100,101,106,97,109,101,103,94,98,102,95,92,100,90,110,99,98,101,118,105,102,96,106,107,93,98,96,101,100,106,103,75,100,108,110,97,90,89,98,99,97,97,98,99,111,87,107,114,99,114,98,68,100,102,123,103,101,117,113,91,92,107,106,102,116,96,100,110,103,104,112,99,117,103,95,99,112,105,101,106,115,72,100,100,92,108,113,117,117,98,95,95,106,96,96,105,91,105,105,113,108,105,107,94,99,124,107,97,108,105,105,108,115,102,107,105,100,96,94,108,98,110,81,101,84,102,95,102,99,96,99,84,103,95,122,100,98,97,103,97,105,98,115,100,96,104,98,108,106,101,99,95,109,104,112,83,98,102,75,99,115,90,107,89,104,101,92,109,102,104,96,104,107,120,105,89,109,95,99,112,98,104,107,96,105,101,103,96,97,96,98,107,100,105,103,68,103,117,101,91,100,109,91,87,94,97,98,99,123,103,110,98,91,104,99,119,103,102,113,105,88,104,108,101,115,101,90,110,98,100,117,105,125,95,90,120,112,112,100,106,104,94,100,100,95,106,92,99,100,101,82,100,97,94,101,105,100,93,103,97,101,98,96,99,104,109,94,97,107,114,100,100,104,100,109,120,98,112,95,95,99,93,108,99,97,108,106,96,94,114,116,102,93,112,90,103,100,107,111,93,92,96,103,95,94,105,97,95,90,98,91,109,101,116,109,116,101,93,103,96,108,98,106,102,102,98,99,115,104,102,100,110,105,98,105,106,103,106,100,120,116,110,96,108,106,96,101,102,98,72,85,102,114,96,101,101,93,108,102,97,109,106,101,102,91,97,96,87,99,120,109,103,99,99,92,103,105,92,106,107,109,75,117,141,97,108,99,105,97,99,102,97,98,115,109,113,103,111,102,90,98,94,104,102,108,90,106,109,98,100,107,104,102,113,96,102,102,96,95,98,94,102,107,106,99,101,104,84,108,91,98,92,88,110,107,100,94,103,105,107,92,88,87,108,102,100,93,98,100,95,93,113,105,106,108,98,113,101,105,113,103,102,103,95,113,94,113,90,103,105,98,106,104,106,105,102,100,78,95,100,91,94,116,100,95,103,99,95,97,109,96,104,102,92,97,103,109,106,104,98,99,100,106,94,93,91,103,112,108,97,101,114,110,114,106,103,95,96,91,106,96,102,96,107,97,79,100,94,110,94,113,100,102,108,87,99,100,105,90,91,105,77,94,102,88,108,99,99,108,94,87,95,109,77,108,99,111,96,99,102,91,105,105,109,107,105,106,105,127,104,95,88,107,97,88,98,106,99,108,96,116,100,101,115,100,95,116,91,102,96,89,100,106,95,103,101,73,113,105,94,104,105,100,100,102,115,115,108,100,101,108,112,110,101,95,104,98,94,107,109,107,112,98,102,98,105,113,96,105,104,97,105,99,99,109,98,98,94,92,100,103,108,96,91,109,98,109,101,108,108,102,109,96,83,96,110,97,109,108,103,96,125,110,95,100,95,101,102,99,92,102,107,102,106,102,94,113,104,95,105,111,92,99,112,96,107,107,96,107,97,101,104,93,97,109,101,103,109,111,115,88,96,92,100,101,95,102,109,112,103,102,107,101,102,114,103,93,93,107,100,100,97,117,98,109,122,83,61,114,118,101,103,107,101,97,101,115,88,115,108,105,99,98,94,106,97,109,108,96,108,111,107,99,99,96,107,111,95,94,108,112,101,91,104,75,103,110,95,90, +666.50287,88,99,103,94,102,112,88,108,107,98,100,105,103,106,102,101,95,71,103,104,101,102,99,98,81,120,79,96,95,90,101,103,93,108,104,86,89,95,97,90,94,96,100,100,100,102,97,97,97,100,94,107,103,90,100,103,103,105,116,89,103,87,94,112,98,97,97,105,102,97,110,112,114,95,99,107,94,99,104,94,95,96,100,109,93,99,109,90,102,103,94,93,96,98,97,94,97,99,102,100,103,79,83,95,97,98,95,109,88,87,107,101,103,96,93,94,104,106,117,98,100,103,105,108,112,104,104,102,105,103,87,109,91,91,96,102,83,97,87,91,89,100,113,117,102,94,106,94,94,91,94,106,101,84,92,99,101,87,117,104,103,98,103,101,111,104,103,100,96,98,109,106,101,98,97,97,95,86,98,103,98,87,103,91,99,96,90,101,101,106,100,102,93,93,100,108,107,105,106,99,112,100,92,86,64,91,107,92,107,104,89,107,92,104,95,99,102,107,98,100,110,103,101,107,93,103,99,103,101,91,99,99,90,101,106,104,95,98,109,101,103,89,121,113,94,103,96,111,115,105,97,90,84,102,97,100,101,92,98,117,94,101,94,110,95,99,96,95,110,101,101,101,101,98,98,103,101,110,71,91,109,106,79,98,96,100,88,104,108,102,105,102,103,108,106,105,103,105,98,98,99,101,98,104,91,108,112,108,98,102,90,106,96,94,99,106,106,92,107,93,98,96,107,102,96,98,93,96,98,105,122,99,99,97,102,102,95,97,93,101,102,99,100,96,85,111,99,110,101,102,98,108,108,90,118,94,95,99,90,103,101,101,98,109,88,98,99,109,92,119,94,107,105,92,104,94,105,103,99,107,98,106,81,98,95,112,99,80,93,94,112,101,74,103,96,96,106,105,98,107,93,104,102,100,99,90,103,94,98,94,99,99,100,99,101,84,111,100,101,113,91,93,104,105,113,100,108,92,98,95,97,104,101,110,96,99,104,105,83,102,105,101,101,101,112,102,101,101,91,108,90,101,104,105,100,100,102,97,108,100,94,111,105,113,96,102,103,86,94,95,100,99,95,96,105,98,103,115,92,97,113,113,100,103,95,97,108,108,95,92,94,111,106,109,103,108,98,100,104,102,105,84,110,102,103,107,98,98,83,100,100,110,117,93,106,100,100,109,90,102,105,103,103,104,95,88,109,111,78,96,91,113,99,100,103,91,100,94,101,103,91,108,102,100,107,97,97,105,103,102,90,110,101,79,108,97,104,100,100,103,97,100,100,107,96,103,107,90,101,98,95,115,106,104,103,102,98,109,114,105,101,95,106,95,101,105,112,104,106,101,104,93,98,102,116,107,97,105,111,112,107,93,100,108,97,90,104,98,100,101,96,106,85,99,103,98,105,100,100,97,96,117,98,105,116,97,88,103,108,105,103,100,109,107,89,103,97,96,106,95,91,81,78,100,98,87,104,89,110,105,89,105,91,115,95,102,103,106,102,98,103,125,94,103,100,94,100,113,103,107,99,91,102,104,91,104,100,90,109,106,96,92,106,104,101,96,98,85,109,120,98,102,94,109,100,93,112,98,105,109,103,103,93,97,99,91,97,110,90,112,97,99,87,102,96,94,91,100,117,97,98,98,115,105,95,90,100,96,105,112,93,108,93,97,105,104,97,111,104,104,105,97,94,97,108,90,100,111,110,92,99,81,99,97,107,110,94,104,106,109,97,103,90,89,94,87,89,95,99,93,101,97,101,105,93,104,99,105,97,101,96,112,120,100,92,99,109,96,101,96,94,97,98,82,87,114,110,109,110,109,94,102,105,97,103,105,107,91,99,109,110,100,107,102,99,109,84,100,102,101,100,99,106,93,116,90,104,94,104,71,111,101,91,110,105,99,101,99,103,104,93,84,97,105,95,94,90,87,105,92,91,102,99,105,101,91,114,98,127,104,94,104,107,112,93,91,108,103,91,100,106,94,114,99,94,104,102,82,95,104,104,100,107,80,112,98,98,112,116,114,112,105,97,107,83,104,103,108,101,100,98,108,103,90,83,104,97,93,97,100,111,107,102,105,116,100,97,89,95,109,86,99,104,97,99,109,100,88,100,106,104,101,113,89,89,109,94,95,92,108,101,96,97,119,110,108,107,113,88,102,97,107,95,121,99,101,100,94,107,95,94,102,99,92,120,84,105,109,105,100,96,128,106,95,91,102,102,106,89,87,105,97,111,91,107,106,96,101,107,99,100,110,103,97,101,105,97,104,111,101,98,106,96,110,114,109,109,101,101,102,91,115,93,99,89,118,106,92,96,97,113,105,105,96,114,96,113,94,90,97,109,101,102,96,109,90,96,102,90,95,101,88,89,95,99,99,107,131,94,83,104,103,107,96,105,102,93,115,97,94,99,101,107,101,98,86,92,114,105,87,99,101,101,97,108,99,102,108,99,104,103,100,106,110,109,111,90,88,109,106,111,84,98,102,100,100,98,115,108,106,97,111,99,106,94,105,101,109,91,114,110,111,106,111,106,103,117,95,110,84,94,113,91,95,112,92,101,104,102,96,101,108,102,76,97,83,100,109,96,104,94,91,99,125,105,108,107,101,107,100,101,106,98,97,91,103,105,117,97,90,89,103,94,95,93,108,90,106,86,100,105,109,89,106,97,91,90,112,104,100,99,102,100,106,101,109,109,111,104,108,99,97,92,115,97,101,98,106,97,108,78,104,125,103,103,109,112,108,95,98,104,103,96,104,97,101,102,106,83,92,100,98,100,90,93,109,89,108,111,105,93,102,97,105,100,98,99,103,103,115,101,99,94,84,93,103,98,95,102,110,96,99,115,84,104,104,106,110,79,95,111,96,97,112,105,106,98,97,100,107,113,111,98,107,101,109,116,122,106,117,98,90,114,114,105,102,101,112,103,102,93,103,109,93,108,106,110,98,106,96,107,114,87,95,98,96,106,117,100,100,110,98,100,100,99,97,95,106,88,104,114,101,77,102,95,100,111,116,105,84,100,105,104,95,87,99,109,103,102,121,95,83,94,98,100,105,100,95,103,95,104,109,107,95,96,101,95,104,117,103,102,90,106,97,108,92,94,105,98,96,99,105,102,93,106,97,92,114,94,95,93,101,102,104,103,91,102,95,95,94,96,104,103,101,113,107,102,109,135,100,95,95,114,94,106,109,110,92,118,102,130,104,104,99,107,75,104,113,93,95,100,105,94,98,105,97,108,98,104,100,120,102,92,113,113,88,102,101,99,82,100,105,109,107,94,105,92,108,108,90,102,96,103,117,106,103,103,106,100,115,110,88,95,105,96,117,102,98,101,103,103,105,94,106,98,100,106,97,105,84,96,96,95,102,101,91,102,109,101,102,102,96,101,101,112,96,90,99,97,110,104,103,112,101,109,108,94,107,98,102,90,102,110,97,103,103,94,122,97,105,84,108,109,103,101,110,107,102,99,94,94,115,103,102,102,99,103,84,97,90,96,114,109,97,98,98,111,90,103,96,103,105,96,109,102,109,111,99,104,102,100,96,99,95,113,94,101,105,106,107,104,101,103,92,105,103,98,101,103,89,92,106,101,106,102,96,100,92,96,103,92,82,108,93,102,93,105,113,98,95,101,98,115,97,107,104,98,104,111,92,133,102,102,113,101,105,108,103,106,99,96,96,101,98,117,105,107,116,95,94,109,91,99,104,112,90,89,105,84,100,89,97,107,91,88,109,102,103,109,93,99,100,102,90,110,108,103,101,104,101,117,96,99,107,94,117,92,96,102,120,97,95,89,97,104,102,107,97,108,105,104,85,103,97,97,104,95,102,94,98,105,99,96,98,105,102,120,105,69,96,102,65,100,102,95,114,94,103,106,104,96,105,105,102,100,96,94,98,105,100,102,98,101,104,97,100,99,88,95,104,95,91,101,105,107,97,93,117,98,94,100,98,99,116,99,100,109,105,94,102,99,109,112,105,104,107,109,107,100,106,104,102,94,119,110,101,103,91,94,109,105,102,101,102,98,91,108,95,96,99,83,104,70,106,105,108,100,102,101,96,105,105,96,95,99,103,99,101,106,94,96,101,98,103,107,103,109,102,99,97,100,72,103,118,98,101,108,92,89,81,107,96,101,105,95,98,105,88,105,113,105,88,85,109,103,102,110,102,97,119,97,105,102,99,90,98,95,110,116,98,105,97,110,104,68,110,112,114,92,99,97,114,104,88,93,109,102,103,97,105,103,91,105,87,93,101,105,94,92,87,101,89,90,114,98,104,98,95,108,117,102,112,100,102,93,107,108,95,102,113,95,100,110,71,101,115,91,101,107,112,114,101,100,100,107,95,88,98,109,116,100,114,103,101,116,103,114,94,77,98,109,91,84,107,90,104,94,102,97,98,85,94,106,109,89,121,104,106,99,113,106,99,106,101,114,106,96,102,102,104,116,113,102,110,107,103,107,96,103,90,91,97,95,100,93,99,98,102,115,100,108,92,102,99,107,104,107,98,91,92,89,107,113,100,105,102,111,107,109,95,90,105,96,90,102,95,96,101,96,105,105,111,106,100,103,106,117,104,94,101,99,97,109,104,103,102,108,106,106,104,95,107,97,107,102,104,104,93,107,103,106,106,95,99,106,103,103,111,102,109,103,97,106,107,98,97,97,105,102,99,108,109,108,101,112,109,100,93,91,93,109,108,93,104,94,114,103,100,94,92,98,90,100,94,102,97,102,103,104,87,99,96,99,88,105,110,96,102,121,107,107,99,104,97,96,102,113,89,102,106,104,99,104,99,109,104,91,129,94,90,98,111,99,104,109,86,109,89,113,96,111,106,98,110,80,98,92,87,99,96,119,102,95,83,112,93,92,97,108,96,112,105,90,100,94,103,111,104,100,93, +666.6441,89,102,103,101,96,105,92,111,86,112,102,103,98,119,113,99,85,105,106,101,98,102,102,111,101,109,99,111,80,105,103,93,105,103,110,97,98,101,87,90,90,103,106,95,102,101,112,109,101,104,99,96,95,93,88,79,109,99,87,95,110,94,94,113,94,106,98,98,107,106,104,99,70,102,104,114,108,97,106,101,96,109,89,102,100,97,112,90,97,90,101,79,114,101,98,99,104,104,105,104,100,104,102,95,104,101,90,94,94,95,95,95,106,98,101,106,86,101,105,104,99,100,118,97,99,107,106,104,95,100,101,101,96,104,105,106,107,98,90,101,98,111,108,95,109,96,110,100,98,89,96,104,101,104,109,89,104,113,107,93,95,106,103,101,131,91,111,102,107,98,114,113,111,97,96,100,95,106,90,109,105,110,110,101,105,104,96,94,106,116,106,96,107,114,98,109,95,104,95,100,107,108,110,110,80,113,95,102,105,108,90,108,97,99,110,107,102,100,107,101,106,110,109,100,101,102,108,108,114,95,109,106,102,103,118,102,90,102,105,100,104,97,103,103,94,99,104,103,98,105,94,100,104,94,97,100,98,87,99,98,103,101,97,96,99,104,103,109,103,97,102,106,104,100,100,106,95,106,101,106,97,93,103,94,100,102,100,96,106,103,102,98,100,91,109,102,98,109,104,96,109,100,117,109,111,102,101,113,95,105,125,99,111,107,104,108,115,101,100,91,100,106,108,117,110,98,95,114,114,105,98,98,113,116,104,108,95,97,102,105,123,97,103,92,96,112,100,110,100,89,103,113,99,100,111,108,103,106,113,108,95,97,103,94,108,103,102,93,99,107,98,113,97,98,99,108,111,93,98,99,95,104,94,104,108,99,99,97,111,99,95,80,94,107,92,97,109,96,93,110,108,105,94,99,100,105,105,107,106,107,96,100,106,100,107,95,105,105,101,97,101,112,113,105,108,93,91,108,114,122,110,101,101,97,90,92,106,99,101,101,96,98,102,109,103,105,104,104,103,105,90,100,110,98,103,100,101,95,105,109,98,95,110,102,107,102,103,104,96,107,107,94,92,105,104,99,115,102,108,95,107,104,100,112,105,96,112,108,99,98,115,113,105,93,91,103,100,105,100,99,100,101,106,104,108,114,68,92,93,99,107,112,106,99,110,87,94,100,103,110,87,107,97,86,95,109,95,95,104,99,98,78,114,103,96,109,115,107,102,107,96,105,103,123,102,104,101,110,95,109,102,91,113,95,109,103,106,107,105,111,112,105,121,104,94,101,97,101,105,103,112,107,99,117,107,104,104,89,103,120,108,101,106,103,105,100,111,103,97,97,106,95,105,98,100,106,103,96,117,108,104,98,99,97,104,102,97,104,93,120,109,85,102,94,105,117,103,101,105,84,103,104,100,97,111,92,101,105,109,94,103,103,104,111,96,105,95,103,108,106,102,102,111,109,103,104,93,90,105,104,79,96,108,95,96,107,102,99,106,116,105,101,104,105,116,102,111,81,102,102,110,108,102,94,106,106,100,109,102,104,106,100,110,95,94,101,87,110,99,109,101,104,105,98,110,105,100,104,108,100,105,100,110,97,109,106,101,116,124,102,104,102,104,96,97,93,96,99,100,96,105,100,107,114,98,94,89,101,107,103,96,111,110,104,108,94,101,94,111,109,96,95,116,105,115,105,122,92,95,103,106,108,110,105,93,114,105,95,108,105,108,111,105,102,97,104,117,118,104,95,102,82,104,102,87,100,94,105,109,95,89,112,116,99,91,103,117,106,100,114,98,99,91,107,106,110,112,105,121,102,101,106,101,97,105,95,87,109,110,105,103,117,107,105,104,101,107,113,115,95,95,104,104,99,113,105,106,112,107,96,102,107,100,112,100,99,105,101,105,98,109,104,90,98,110,115,105,97,103,105,101,101,108,105,96,96,100,107,104,107,95,111,106,105,98,97,87,110,103,107,95,106,82,112,95,101,110,95,102,104,96,111,98,99,113,100,104,113,103,86,104,100,101,96,109,101,101,107,112,105,102,100,104,109,97,101,99,114,106,105,97,107,99,103,97,95,108,106,94,105,100,109,100,105,79,106,104,99,120,104,118,103,94,109,100,102,99,92,106,102,102,93,99,105,102,99,104,102,103,109,106,116,101,100,99,108,88,111,99,110,102,110,82,108,100,105,94,101,113,73,99,107,99,96,109,106,113,96,97,118,91,103,99,107,108,101,108,100,105,114,116,90,108,101,102,95,91,102,78,102,103,102,100,96,126,105,99,99,105,104,94,106,111,104,93,113,116,107,104,90,96,97,115,100,102,111,111,112,102,97,94,105,105,95,106,105,110,109,100,101,104,108,110,99,82,88,102,99,106,110,112,113,99,103,124,103,90,97,108,103,99,102,114,106,96,104,69,100,99,108,110,94,95,107,97,113,102,102,97,100,102,94,124,98,100,100,98,99,103,112,103,109,75,92,111,93,103,111,91,98,101,101,103,91,96,102,93,87,97,112,104,96,110,107,107,99,104,102,106,113,102,95,105,96,98,103,104,102,94,97,100,110,90,88,89,102,97,101,104,101,112,95,98,107,95,99,105,105,102,105,108,113,106,96,106,109,98,101,95,110,105,103,103,98,114,99,97,109,111,101,102,92,124,99,86,100,103,95,96,95,90,106,98,100,108,106,106,96,89,113,107,95,104,125,94,87,106,88,101,112,105,97,113,91,114,107,107,110,99,71,99,106,102,100,104,112,99,93,102,105,112,94,95,104,101,105,101,114,106,108,104,98,106,97,103,106,105,105,99,102,106,105,96,92,103,106,98,105,105,104,112,99,115,106,100,107,102,102,99,105,100,97,88,101,108,109,93,87,106,109,107,107,107,101,105,111,102,86,107,106,106,110,101,120,98,92,95,120,113,102,93,131,92,92,106,106,97,96,116,93,98,109,100,102,105,95,127,107,92,80,89,104,109,105,132,91,121,108,99,100,109,108,104,98,92,110,108,96,102,104,111,81,89,115,104,115,104,106,109,76,96,108,98,113,105,107,111,107,98,107,104,105,95,117,89,94,117,100,100,98,112,108,116,106,98,115,110,94,94,109,100,104,106,76,96,96,112,105,106,96,102,106,107,86,101,107,136,108,110,102,102,109,110,102,96,109,99,92,109,105,107,98,90,93,105,108,96,99,95,107,111,108,84,98,94,104,101,102,99,95,102,102,99,98,98,99,113,91,98,101,106,104,94,114,109,97,134,98,118,102,100,99,103,97,109,102,101,95,108,98,110,105,107,99,103,100,123,102,94,89,103,101,94,100,99,102,97,98,105,94,101,102,99,100,101,83,107,93,115,103,100,85,88,96,97,100,88,99,94,92,93,102,93,107,107,107,109,115,106,85,101,103,110,95,95,113,96,100,102,111,99,103,105,102,101,98,96,100,101,100,117,101,99,88,106,104,109,117,113,99,96,106,96,97,106,98,110,108,112,109,93,101,98,106,109,111,106,102,99,97,96,100,106,107,105,83,99,109,118,102,98,110,98,101,107,106,103,109,110,111,114,110,107,111,104,103,111,89,109,106,99,98,100,115,110,99,104,107,106,94,96,116,94,109,107,88,100,104,99,98,106,110,98,102,94,94,106,98,107,101,114,113,106,105,99,108,102,101,102,92,98,99,85,108,100,106,102,104,100,101,95,105,104,105,114,98,115,106,93,99,98,93,100,94,104,103,112,110,104,93,108,99,104,94,108,111,95,72,103,97,111,64,90,106,99,98,99,97,103,101,97,103,91,102,101,92,98,98,97,98,114,89,107,97,87,101,103,106,98,102,97,109,99,94,110,91,90,98,111,116,104,87,102,104,106,112,120,101,95,103,100,108,98,111,106,104,107,90,99,111,102,94,104,112,102,105,99,89,109,100,110,117,112,101,107,102,94,110,105,96,103,106,103,102,101,98,112,120,97,102,115,96,103,93,102,100,97,112,105,107,102,103,92,112,115,100,104,102,88,104,116,104,103,111,108,89,113,105,105,98,116,92,93,111,112,84,100,105,101,99,108,95,98,90,115,104,96,105,103,100,108,112,102,98,124,109,103,96,94,91,92,99,99,96,110,90,97,112,107,104,101,101,89,95,98,105,101,98,105,102,93,89,103,99,109,94,108,102,83,102,100,97,108,94,106,105,104,106,108,112,108,96,127,101,115,94,106,95,109,99,106,100,100,101,106,100,97,99,95,98,98,102,116,106,102,93,83,109,112,96,95,98,110,97,98,107,100,106,102,107,100,100,107,99,112,92,101,101,104,109,99,99,113,111,98,109,100,103,105,92,110,102,92,98,105,96,100,94,100,103,109,91,111,112,102,109,93,87,94,104,114,117,103,100,103,74,110,104,102,88,87,81,104,98,84,107,93,94,113,102,102,104,106,108,82,118,88,102,95,99,113,98,113,107,119,96,109,117,117,103,96,100,103,104,95,102,103,82,101,91,94,91,107,101,104,101,100,103,98,94,98,107,105,97,94,108,112,102,101,92,98,114,94,93,104,93,95,108,100,102,95,95,102,90,107,107,120,94,90,118,86,108,100,107,96,102,98,100,83,110,99,98,98,108,100,104,117,100,110,95,100,111,113,95,112,113,77,104,98,99,107,110,100,107,88,97,96,106,102,98,96,95,96,108,112,95,115,87,107,107,110,107,99,95,105,104,97,114,104,98,92,110,88,113,94,105,114,106,100,102,94,97,98,108,99,97,96,111,106,103,94,98,108,103,93,112,110,103,98,108,87,94,102,92,110,82,105,99,102,102,104,107,105,99,106,99,112,104,90,97,113,103,108,89,90,102,95,100,109,97,101,112,110,85,106,101,100,113,104,97,101,101,100,100,106,90,113,103,109,95, +666.78534,96,99,96,109,110,106,121,98,99,115,91,92,104,95,97,112,108,95,100,106,92,106,111,103,95,110,105,106,95,115,103,100,95,99,118,87,100,81,96,94,97,90,65,102,77,95,97,108,99,99,95,115,100,98,106,92,112,104,103,100,92,100,114,99,105,96,101,105,103,115,90,86,86,108,91,104,90,92,111,99,96,102,102,101,95,93,105,102,101,101,109,103,102,105,84,87,97,80,97,103,91,100,95,104,104,94,103,100,103,101,88,75,99,101,104,114,99,105,96,98,98,103,93,110,106,98,105,98,103,107,92,109,96,100,98,98,87,100,88,116,109,107,100,95,85,106,94,102,98,96,86,110,108,93,94,100,100,105,100,102,88,94,97,100,101,98,120,95,95,106,108,99,96,99,108,101,103,110,102,117,99,104,107,89,101,91,106,81,100,109,91,122,104,92,117,90,96,101,109,95,110,95,93,94,93,104,117,117,104,99,100,104,110,98,99,97,106,105,101,110,97,105,91,95,99,111,88,112,105,100,104,95,110,95,106,111,104,110,116,104,103,103,96,117,110,100,91,113,101,100,104,98,91,119,107,95,105,106,103,109,95,96,99,106,99,103,98,104,109,92,96,104,89,127,106,95,104,102,99,91,92,83,105,98,101,103,103,106,93,99,109,106,125,103,109,108,104,100,82,114,104,96,101,122,89,119,102,102,103,113,95,114,102,103,96,107,103,114,103,88,94,91,107,101,103,94,95,110,106,112,118,100,104,100,98,98,97,95,88,100,101,97,98,101,100,83,103,98,101,103,103,102,106,94,103,102,109,108,103,100,104,92,95,96,111,95,100,112,94,100,106,112,96,97,102,106,99,100,108,92,103,106,113,86,95,90,109,98,103,99,110,84,94,100,101,94,105,105,109,115,100,102,106,98,87,99,101,121,106,105,120,95,107,92,112,98,105,99,104,95,101,100,94,96,117,94,94,97,89,100,96,106,100,97,110,112,101,103,92,95,109,96,92,92,90,103,96,100,101,113,98,101,111,101,106,103,101,100,106,94,106,113,97,109,114,106,105,107,98,95,90,100,95,82,104,99,88,109,105,107,88,115,101,108,101,88,105,105,105,99,101,96,103,92,79,98,98,110,95,105,79,105,106,102,111,112,102,90,101,95,106,102,101,95,107,98,111,111,109,102,95,97,117,97,109,98,109,108,94,110,107,105,96,98,96,93,99,95,104,100,103,106,102,94,104,96,108,100,111,103,86,97,108,99,94,96,81,86,98,96,108,102,110,103,101,104,105,99,109,109,100,96,101,103,105,106,98,104,97,104,109,108,94,100,99,113,106,98,97,100,99,116,103,102,107,115,91,108,100,110,100,101,98,94,85,94,103,106,90,113,98,107,109,103,104,93,100,106,103,96,106,96,98,96,94,97,97,96,102,104,88,102,100,96,100,96,112,98,107,88,96,103,99,94,121,95,102,100,105,101,116,93,96,113,103,109,88,101,94,106,116,108,90,84,91,99,102,104,100,87,95,108,114,99,87,105,99,113,109,98,105,103,99,90,92,109,103,93,99,106,97,102,107,105,105,95,91,115,117,96,96,99,101,103,97,111,84,118,90,105,109,100,99,98,98,91,107,98,92,89,103,102,107,109,92,94,110,82,105,98,96,122,85,105,96,97,105,103,102,101,108,99,106,87,98,103,125,97,91,102,100,103,96,107,105,110,107,94,98,113,95,100,73,108,99,95,91,100,99,100,109,104,104,120,99,109,104,100,112,103,110,98,109,102,101,97,104,87,93,111,114,95,105,99,108,98,102,100,109,104,101,90,92,100,104,104,97,111,103,108,121,98,97,95,104,107,77,118,103,107,98,84,94,100,102,109,111,94,106,103,91,99,99,102,92,108,114,120,84,111,92,101,109,101,115,99,103,84,99,94,103,89,92,99,109,104,106,99,99,102,113,102,116,103,100,101,103,101,109,106,113,110,102,88,107,102,137,103,104,95,97,103,96,98,94,98,102,110,106,103,99,109,104,117,108,102,100,111,96,102,100,103,103,103,100,98,103,112,92,118,100,104,118,104,106,95,100,96,100,108,106,127,109,92,91,108,86,114,110,106,115,108,88,100,84,108,95,107,109,113,108,94,83,108,90,83,105,109,102,91,104,103,100,104,116,108,115,103,108,107,102,102,104,105,99,90,109,96,104,94,102,111,101,95,96,90,103,99,116,95,107,100,101,96,95,89,101,97,99,100,103,95,104,108,104,92,96,109,97,105,99,94,109,106,106,108,67,111,103,102,95,113,108,107,108,105,98,90,101,112,105,96,107,105,114,86,122,106,94,107,100,96,95,82,93,91,105,111,106,95,93,113,95,85,103,103,99,109,82,104,93,97,101,114,100,106,76,109,96,109,101,112,99,76,102,110,106,106,96,103,103,112,111,104,110,104,102,90,96,91,108,114,103,114,98,117,112,110,113,102,109,119,94,90,95,106,99,104,103,107,111,94,93,102,85,112,103,101,95,100,102,112,102,106,102,100,102,96,106,108,98,104,134,107,98,104,100,99,125,93,111,110,117,101,111,92,94,97,109,88,90,96,96,113,96,98,104,96,108,99,113,96,103,103,99,104,108,101,103,98,106,100,106,93,112,106,81,97,106,110,111,101,107,87,99,100,105,91,110,98,107,106,103,102,115,93,105,105,98,98,100,108,113,89,101,72,102,94,103,110,101,102,113,105,101,105,111,98,115,109,109,93,105,106,100,104,113,106,106,97,113,105,102,102,111,100,73,111,93,104,107,98,104,111,94,109,111,115,108,105,100,100,105,100,99,108,110,100,105,110,105,112,108,112,103,102,113,103,100,120,108,102,110,102,97,105,102,104,106,117,105,108,101,119,100,101,106,99,106,78,105,94,95,104,108,98,104,110,111,102,104,117,97,103,88,102,102,106,99,108,108,108,99,115,109,97,102,113,95,94,98,118,106,91,115,118,99,106,105,103,107,100,99,90,123,101,113,99,100,100,90,99,106,107,118,108,112,109,102,95,95,102,102,110,94,113,114,88,112,100,94,105,108,100,109,103,100,102,106,96,94,98,100,107,106,108,102,101,109,98,115,93,102,118,102,99,98,104,90,100,96,96,109,98,92,115,117,106,95,100,101,102,101,97,94,108,97,97,118,95,104,91,88,98,113,81,95,114,99,114,104,90,103,112,113,94,98,113,70,96,105,101,95,94,100,107,106,106,99,106,100,98,108,108,109,110,93,108,105,101,97,100,96,97,105,104,108,103,107,109,95,98,100,113,105,100,100,99,98,109,103,106,89,101,105,102,99,94,100,92,90,99,101,109,112,121,94,88,100,103,101,102,92,106,84,107,117,96,97,106,94,113,99,114,94,98,105,104,107,99,95,97,99,112,109,98,110,108,99,102,96,102,109,100,105,104,90,108,116,97,105,107,100,108,115,110,96,103,100,95,102,101,100,98,107,103,108,117,99,120,113,103,100,97,98,71,101,104,105,97,107,116,106,116,106,100,105,112,98,99,109,109,112,104,105,106,97,108,110,123,111,108,100,108,112,96,106,104,100,106,104,91,108,106,102,98,106,105,86,97,87,111,91,99,109,95,104,113,105,99,112,102,101,100,105,98,94,94,104,110,106,98,103,117,88,111,99,108,109,103,109,113,104,110,104,101,107,106,118,97,101,91,95,103,103,98,99,107,105,94,95,103,101,104,116,113,110,109,96,100,95,98,99,105,102,110,96,103,102,103,105,98,99,102,105,94,75,105,105,100,96,111,99,108,103,105,109,108,99,107,109,95,108,89,108,99,93,95,98,106,120,128,94,113,100,106,100,101,99,94,94,101,101,106,114,114,104,93,95,109,95,100,101,109,94,101,98,105,108,87,103,109,100,121,103,83,111,106,100,99,100,100,108,104,85,96,102,98,113,102,94,106,99,107,97,105,100,100,97,99,107,116,95,96,99,104,101,117,94,115,99,105,94,109,115,105,101,107,101,105,104,111,103,97,109,106,110,104,110,111,96,118,97,115,104,102,93,97,104,94,107,100,105,95,116,101,115,100,113,98,113,112,102,107,108,107,86,105,104,99,110,105,107,103,91,107,125,94,95,96,107,97,104,108,100,101,104,100,109,100,103,109,102,105,108,117,98,117,104,100,104,101,117,111,112,102,100,87,100,93,115,103,117,117,108,95,103,107,114,123,95,110,101,97,96,108,98,109,111,93,94,93,112,116,91,107,97,109,117,100,80,102,105,88,110,99,114,103,99,113,102,119,94,98,95,119,106,96,95,105,107,98,111,117,103,101,99,95,105,103,117,93,110,83,101,108,98,94,83,91,117,110,97,97,104,92,84,110,98,106,116,96,101,116,100,106,103,102,103,120,107,89,98,101,107,101,95,100,103,113,110,106,98,108,103,99,101,105,113,102,90,106,95,107,108,97,100,94,108,109,96,96,99,103,104,95,105,102,102,101,106,101,95,96,100,106,101,101,100,102,99,100,108,102,92,102,105,115,108,118,98,104,97,108,103,107,97,116,101,116,104,108,106,98,104,113,105,102,94,100,103,95,92,114,104,97,103,102,113,98,99,105,111,93,98,106,95,99,109,109,107,73,104,105,102,112,107,89,98,104,104,93,106,112,94,88,84,104,109,89,117,101,110,100,102,93,106,103,88,95,104,111,108,107,97,93,109,109,101,95,97,98,86,98,103,107,106,100,117,116,115,105,99,116,109,100,106,113,101,107,112,104,90,107,102,91,104,76,102,102,98,110,122,97,127,106,100,109,101,113,114,108,105,102,100,96,112,88,102,94,96,109,124,98,96,106,94,99,107,98,114,102,99,95,96,92,109,107,100,114,99,100,113,109,91,97,108,107,98,97, +666.92664,110,118,92,100,90,113,100,104,112,93,95,93,111,112,104,99,96,104,114,101,111,101,99,94,91,106,106,102,87,95,92,103,128,121,87,106,109,114,109,96,97,97,103,99,87,109,98,103,110,113,85,104,94,98,91,99,93,111,115,94,103,100,86,84,102,106,107,101,99,98,95,99,81,120,93,105,104,105,95,102,94,106,101,96,94,99,124,89,88,94,106,98,82,103,97,89,97,104,106,103,104,91,98,92,96,102,91,94,100,83,87,91,88,104,100,102,103,102,107,105,98,104,104,102,97,99,107,96,96,112,101,113,92,105,102,114,96,104,101,94,90,108,108,100,85,117,108,113,101,97,108,103,104,98,89,104,93,103,93,101,102,106,94,100,109,86,107,98,97,105,106,105,92,83,97,94,94,106,113,102,96,102,85,105,87,105,94,94,102,95,101,107,91,94,91,115,94,103,93,117,104,96,91,89,90,106,93,112,95,103,92,97,98,101,90,97,101,106,95,102,90,98,101,105,107,101,97,101,99,97,101,99,104,94,121,99,102,106,99,97,105,99,105,98,99,94,94,102,91,100,105,102,95,109,99,105,95,90,101,73,99,102,96,109,102,104,105,107,109,108,105,100,99,109,108,102,83,108,95,95,99,100,105,96,109,101,113,124,110,90,101,107,98,110,112,105,113,109,93,96,93,101,107,104,79,128,109,101,96,104,96,97,105,109,99,90,95,100,101,114,100,99,109,100,107,100,90,102,104,143,90,112,90,86,108,96,105,101,99,98,101,104,96,87,103,97,96,110,109,92,106,112,104,118,114,119,104,105,104,98,104,96,96,96,94,109,95,101,104,95,110,106,101,102,111,89,103,99,98,114,91,86,87,112,103,97,102,94,90,93,113,108,103,105,105,101,83,100,105,99,105,90,91,104,98,107,125,107,99,105,95,94,106,106,112,98,96,71,97,102,95,99,94,113,100,100,102,99,102,104,107,104,89,101,103,101,103,85,99,106,98,93,100,98,95,89,93,99,111,110,107,101,103,106,122,92,92,111,109,102,99,90,95,109,98,108,66,106,94,98,97,97,93,101,87,98,97,109,107,98,106,102,108,100,136,99,92,98,103,104,106,101,102,99,98,97,102,91,109,100,102,99,102,98,98,91,87,112,109,102,111,78,98,95,104,104,112,95,107,112,107,110,112,98,96,95,103,101,94,106,96,102,83,96,101,108,94,97,104,102,116,101,88,81,101,83,101,101,95,95,85,96,104,100,96,97,105,119,91,102,102,113,93,117,105,99,113,100,101,93,99,107,104,95,91,96,108,103,108,94,102,102,100,94,107,98,95,95,100,95,111,105,103,89,102,100,96,100,98,106,96,95,105,99,110,97,87,99,107,108,100,106,114,114,116,105,107,102,98,107,94,104,87,103,100,99,89,94,99,99,102,105,92,104,100,102,97,94,106,95,104,113,106,113,103,102,101,91,108,104,103,93,116,108,98,104,95,103,91,98,101,103,66,96,103,105,96,102,106,108,103,110,101,83,105,104,92,104,100,99,105,104,112,98,97,94,92,97,107,108,95,102,91,102,101,97,101,69,87,109,94,85,97,112,95,109,103,90,88,100,99,96,105,102,99,104,99,93,104,98,116,100,106,105,95,99,100,96,91,97,104,101,106,101,93,104,107,110,95,98,103,100,106,104,94,93,100,99,88,104,105,101,105,102,107,67,108,90,101,90,110,116,100,104,93,99,95,98,104,102,101,98,104,91,113,103,100,105,99,110,104,108,107,101,98,96,100,111,106,95,103,99,100,107,103,110,106,100,117,97,108,110,103,91,106,99,96,101,91,99,100,93,95,109,106,112,103,102,104,102,104,97,88,103,97,103,107,99,102,100,100,108,96,91,98,112,109,96,116,103,93,94,108,105,94,98,111,100,100,99,89,93,100,93,94,104,105,99,92,100,110,101,97,94,107,102,90,87,96,106,96,104,99,112,101,80,98,92,111,105,110,102,101,108,95,92,100,102,110,100,99,91,94,102,106,94,98,102,114,92,98,96,100,99,100,103,110,80,104,108,110,108,95,106,110,75,100,99,97,97,117,110,108,105,106,116,104,104,104,103,103,105,102,106,89,107,97,96,105,107,110,95,108,99,101,111,95,108,94,101,106,98,117,98,91,104,116,101,89,120,113,82,111,102,102,95,94,108,104,104,109,109,104,98,93,105,99,99,102,103,100,94,96,91,88,100,102,92,100,106,109,101,103,100,101,102,88,97,95,95,99,99,110,102,91,107,94,101,101,104,98,109,97,110,98,101,102,113,95,95,115,106,114,95,102,88,100,104,97,103,91,98,100,102,103,111,116,105,105,102,106,98,97,99,106,111,104,101,104,107,102,91,107,106,97,98,100,106,103,103,116,90,100,109,102,96,101,96,81,90,100,93,105,94,106,98,105,109,91,101,104,109,94,112,99,109,116,102,117,92,107,97,103,102,103,107,102,96,100,126,97,108,108,100,108,96,98,102,95,103,105,109,112,112,120,112,95,99,95,107,91,102,93,99,108,101,121,105,92,97,80,105,105,101,97,97,91,91,95,98,95,88,92,102,100,102,99,92,100,87,109,106,113,105,101,97,102,94,113,98,100,97,96,98,101,101,100,108,113,94,99,104,99,98,94,98,109,105,98,99,104,108,98,111,102,94,101,105,97,100,98,102,111,96,100,103,102,103,99,98,103,100,100,109,112,113,95,96,103,103,103,97,109,100,98,92,108,103,108,102,97,100,109,112,104,105,102,107,107,102,74,111,111,109,109,112,98,96,104,96,100,102,107,100,95,101,99,118,102,92,104,95,116,97,105,111,105,107,100,106,100,95,101,107,105,101,120,105,98,109,103,115,106,116,103,100,96,97,96,113,105,73,95,111,101,94,100,94,91,104,105,108,103,89,117,113,103,108,110,109,103,104,104,103,99,86,104,98,116,99,98,104,94,102,120,100,100,105,108,92,118,98,102,107,95,107,99,113,100,105,91,98,101,105,104,98,108,94,112,108,85,98,108,110,116,103,97,103,88,109,101,99,98,103,103,95,122,96,109,94,124,109,96,104,110,95,100,105,101,101,105,101,101,106,109,100,103,113,104,100,94,96,85,83,110,96,119,108,102,102,101,103,108,106,107,104,92,91,112,109,98,94,112,112,98,111,107,105,112,99,105,93,121,97,102,100,98,102,112,108,97,99,95,102,104,93,103,95,113,106,91,101,100,113,106,104,95,113,103,107,112,105,96,100,115,95,96,87,105,100,111,87,106,107,103,110,117,101,113,102,111,100,80,93,105,109,100,105,98,91,113,109,97,107,106,111,109,107,95,103,103,100,113,102,100,109,99,108,101,96,104,110,101,100,107,107,89,104,104,96,118,103,116,102,98,102,106,98,101,103,108,95,103,91,107,104,110,117,104,104,97,98,101,100,109,108,103,95,102,96,102,96,101,96,106,107,104,102,106,91,106,107,105,107,103,105,101,95,96,99,105,108,103,110,95,108,110,100,109,106,104,98,86,122,107,104,113,100,105,120,106,92,102,109,107,98,102,106,110,115,99,106,98,106,96,104,104,106,106,97,96,110,95,105,103,92,107,109,102,105,91,103,109,100,107,113,108,136,105,103,91,103,104,115,105,97,93,102,121,79,113,113,102,100,91,96,110,99,130,100,101,99,110,107,106,82,95,105,107,93,106,103,93,98,102,102,105,105,105,89,103,92,106,97,115,103,107,103,95,101,80,109,102,99,102,96,108,106,94,108,110,97,103,99,111,107,108,103,99,102,119,97,102,103,103,99,103,98,100,109,102,109,89,93,112,102,107,99,112,103,110,110,103,112,103,109,102,113,100,96,115,104,94,103,93,87,117,128,100,98,112,108,101,109,101,112,98,96,88,105,99,103,112,122,97,109,110,103,103,105,94,98,100,108,106,102,103,106,108,96,96,96,114,100,120,102,94,103,93,105,106,91,107,104,94,97,98,101,105,98,100,96,99,104,113,96,90,108,106,101,104,99,99,88,102,100,102,95,114,108,108,97,89,94,102,99,97,103,101,100,108,90,101,105,93,113,113,103,104,96,117,98,95,97,122,111,95,100,109,105,96,104,113,106,103,99,99,108,103,116,112,108,100,112,108,99,105,101,106,97,106,110,113,95,117,99,102,105,116,117,110,110,107,103,98,100,100,99,101,91,112,105,105,99,95,122,108,117,116,103,101,97,105,96,97,88,108,99,96,102,110,94,125,101,101,105,97,87,99,103,99,98,105,98,107,95,87,89,101,109,94,97,110,111,106,102,97,99,102,116,113,105,124,106,103,90,109,95,107,116,99,102,114,103,106,93,110,101,113,89,108,108,101,92,105,101,104,103,112,95,98,92,102,105,92,97,95,104,106,89,124,104,103,107,100,105,94,94,105,82,107,99,104,100,106,113,117,117,101,107,103,98,78,106,104,92,97,110,110,100,101,100,98,113,102,95,93,80,107,92,108,98,111,100,107,109,99,107,109,96,91,113,120,103,85,92,96,99,102,93,115,103,109,103,113,105,102,109,95,99,109,100,103,109,104,95,100,96,107,105,105,105,98,109,108,107,98,101,96,92,121,104,113,101,104,93,101,107,108,109,95,100,100,106,108,137,112,96,112,100,100,108,112,96,78,101,116,105,106,125,107,115,102,84,104,89,99,89,95,99,102,88,105,103,108,93,102,107,106,107,120,107,93,100,99,108,99,105,94,105,102,104,105,106,104,96,106,96,102,106,95,95,103,99,104,102,103,99,117,107,112,110,108,109,107,100,104,106,96,111,102,106,101,90,97,115,107,101,99,91,98,87,102,97,90,98,94,113,106,113,112,89,67,108,107,98,111,109,95,94, +667.06787,118,100,103,100,110,99,105,101,85,108,100,80,92,102,117,87,105,112,104,94,103,100,98,98,104,91,123,101,91,103,129,110,114,91,101,109,93,90,102,105,94,110,96,87,96,116,105,96,96,99,90,113,100,96,125,93,104,106,101,99,96,105,105,100,105,105,107,113,93,105,113,97,103,102,89,112,95,99,95,93,96,101,99,99,96,87,92,94,97,95,99,91,100,104,107,99,114,97,108,93,97,102,78,107,99,92,100,108,104,104,100,99,104,112,96,109,98,112,111,102,102,97,107,113,103,103,104,102,105,96,92,99,86,98,101,100,99,98,96,101,96,108,108,104,110,111,100,107,97,96,99,111,110,86,94,91,104,79,90,97,98,99,109,101,117,105,95,106,90,97,107,107,101,113,89,94,105,98,99,101,94,100,97,99,105,93,100,101,109,95,100,89,93,97,107,95,98,109,105,103,99,94,100,99,91,102,103,89,95,103,84,104,101,107,107,103,94,99,110,102,104,123,104,99,107,95,103,94,125,94,108,99,99,103,100,102,90,105,115,102,95,107,100,90,87,104,98,121,109,96,98,87,108,102,100,111,112,105,96,102,105,104,80,105,97,113,104,105,99,102,106,115,103,102,100,95,102,101,108,100,98,127,98,109,94,72,90,106,115,104,98,88,111,99,110,103,104,110,102,84,103,108,103,96,100,91,113,99,95,77,95,110,107,98,109,94,99,96,104,91,109,108,94,96,102,102,95,96,106,107,101,102,93,92,106,96,98,105,106,91,109,103,109,104,107,115,106,107,82,96,93,104,110,100,101,101,99,106,102,100,101,105,91,98,100,90,93,98,97,109,103,105,102,98,99,101,102,110,99,109,87,74,101,105,100,96,101,97,87,95,105,104,110,105,87,91,102,107,101,109,104,107,93,100,106,95,90,101,107,100,91,94,106,98,101,97,99,106,104,88,91,100,99,97,98,101,104,96,100,114,100,95,103,109,87,95,101,112,106,102,109,98,103,110,88,104,105,94,95,124,103,98,109,109,109,103,101,95,106,104,93,105,105,113,105,106,113,90,107,113,101,109,113,112,93,100,81,111,94,107,106,109,102,96,104,96,106,95,102,106,98,83,118,101,101,112,96,101,100,101,104,107,105,114,111,114,104,101,106,102,114,96,89,113,111,120,75,105,99,100,100,114,96,104,99,100,108,99,99,86,105,92,96,93,101,104,102,107,94,110,98,112,90,103,101,96,100,94,98,111,109,129,114,95,108,99,109,111,105,106,105,80,95,104,103,103,107,94,98,100,95,100,96,106,124,101,109,109,129,112,114,97,103,112,91,94,108,87,109,111,101,113,101,105,105,101,106,115,104,88,104,101,94,89,101,94,104,98,101,99,108,105,97,100,111,107,103,101,95,102,111,100,110,97,101,96,109,109,94,99,102,104,104,95,95,103,78,101,95,106,105,109,105,89,96,87,88,101,102,115,112,101,106,115,102,96,99,109,103,106,103,106,102,98,107,110,112,106,95,105,115,107,110,102,63,112,95,97,107,108,109,131,101,111,96,102,98,86,121,111,110,110,114,101,105,120,107,110,112,94,91,101,95,101,107,93,106,101,100,105,102,101,109,95,89,103,108,100,107,106,100,100,111,91,96,96,100,110,80,111,112,76,102,105,106,102,110,96,118,100,91,100,95,105,104,104,121,114,99,108,106,101,93,102,99,93,95,106,109,99,107,99,96,83,99,96,91,99,97,107,117,97,119,102,95,107,104,106,108,108,103,102,135,95,100,111,105,101,101,101,105,104,106,101,101,97,94,98,93,107,94,105,99,96,113,102,102,93,108,110,113,91,92,109,104,121,107,93,115,104,107,103,109,105,98,96,114,101,114,109,98,109,96,102,92,99,104,103,102,103,116,98,111,104,80,118,108,98,114,101,102,99,90,101,98,105,98,106,113,107,91,99,89,118,102,106,90,111,95,88,125,104,129,114,85,104,108,99,105,101,108,111,104,109,113,106,108,110,105,105,103,100,112,98,106,87,94,102,103,101,101,108,100,99,106,102,87,107,83,110,110,95,103,104,105,95,99,106,108,98,78,111,112,103,105,91,107,106,102,111,108,84,105,95,102,102,99,109,103,106,102,98,105,110,116,100,103,95,101,96,101,96,104,108,93,103,103,106,105,102,96,106,101,104,115,118,101,101,112,109,101,92,102,103,96,100,108,100,99,101,98,103,106,104,106,92,103,111,108,108,113,106,97,113,110,90,105,101,114,102,97,101,95,100,99,107,96,107,111,103,103,99,86,100,87,105,106,90,88,107,107,100,100,103,108,116,105,100,105,103,102,115,112,98,120,97,97,96,112,101,101,102,104,104,102,99,142,127,93,105,100,106,109,104,92,96,98,98,92,91,103,109,104,116,99,100,96,74,102,103,118,100,103,99,105,106,104,106,99,111,108,109,94,108,105,108,88,105,99,112,113,103,123,90,107,109,97,109,108,96,109,101,103,101,106,110,104,102,101,91,108,100,105,107,106,83,113,91,104,101,77,100,98,92,123,109,106,99,106,93,100,108,103,89,93,95,95,92,92,64,106,94,94,82,94,98,103,113,105,94,113,108,110,101,94,112,100,106,96,112,116,84,103,93,87,113,100,108,98,114,103,86,117,96,105,102,100,95,109,109,97,104,97,98,97,83,104,104,91,98,106,101,106,93,100,97,96,120,94,104,98,104,98,93,104,115,105,91,118,108,111,110,96,111,118,106,104,105,101,109,110,99,109,102,105,100,96,104,103,113,98,106,108,114,108,79,100,106,102,109,108,111,101,95,95,96,96,105,97,103,104,105,108,98,105,109,97,94,99,104,112,97,100,101,109,108,91,93,93,101,121,106,111,103,102,112,107,95,103,97,104,108,77,91,100,100,98,105,110,107,102,106,101,107,102,107,100,92,98,95,105,116,97,98,78,100,105,102,95,105,115,93,102,100,106,105,100,96,98,98,97,100,96,90,113,82,121,100,108,100,107,98,104,116,105,104,101,90,98,92,105,99,105,90,115,102,103,90,106,101,99,98,92,100,100,103,102,103,89,92,114,99,110,106,112,96,101,98,112,114,106,114,102,103,96,107,95,109,115,113,97,107,106,90,110,99,108,99,96,108,93,99,105,109,104,102,105,103,115,98,106,98,102,93,102,103,109,92,98,100,101,110,100,97,103,98,102,94,109,94,106,109,90,95,98,95,102,93,109,100,109,89,106,106,110,104,100,104,106,90,101,91,105,91,109,122,94,114,91,95,109,109,109,100,103,99,106,97,117,100,95,96,102,104,104,94,95,100,96,82,91,103,109,103,99,115,99,117,105,99,101,91,113,95,105,95,102,106,101,93,97,101,100,104,105,94,113,117,105,100,107,107,108,110,98,106,115,100,101,105,106,103,95,95,87,85,103,104,93,110,101,98,108,102,93,110,102,91,92,94,106,109,99,105,92,103,79,104,110,103,103,122,108,99,115,104,93,102,110,105,100,95,109,100,103,102,110,119,102,99,104,100,103,109,105,112,100,94,94,105,118,111,92,94,109,101,95,105,105,103,100,79,108,101,116,100,110,89,97,103,97,91,105,102,102,95,104,113,110,92,109,105,106,104,94,85,102,110,99,115,105,105,103,104,92,99,103,102,112,89,91,108,106,88,97,106,100,103,104,96,108,105,107,103,113,97,114,98,99,90,105,97,102,105,111,100,108,90,101,100,101,99,106,87,108,96,97,114,109,102,103,92,95,106,99,96,103,104,104,102,100,111,103,103,105,107,104,113,93,94,106,100,103,98,91,101,84,91,96,102,103,101,94,95,91,107,106,91,104,102,107,101,94,113,100,102,93,105,106,104,99,108,110,108,100,90,96,104,105,110,112,99,106,89,93,89,106,95,112,101,113,106,92,96,97,101,104,105,101,80,106,77,101,99,106,100,104,103,97,103,86,108,98,107,99,98,92,95,91,104,105,96,100,112,105,95,94,104,110,119,102,101,103,109,93,112,102,100,118,113,107,107,104,105,96,105,100,109,107,135,115,108,112,99,107,124,92,103,101,96,105,103,94,97,102,120,102,107,106,106,100,101,104,102,99,102,106,86,108,102,107,87,98,103,92,105,107,105,109,87,99,94,101,101,107,109,101,93,105,97,98,103,94,99,106,109,92,102,99,102,104,109,94,109,110,102,90,101,100,100,97,108,96,94,88,91,105,108,97,84,97,103,114,101,101,93,96,100,103,106,103,100,124,106,103,97,98,88,103,102,103,100,93,99,109,106,100,96,108,94,108,104,105,103,120,102,89,96,102,93,111,98,98,101,96,105,110,107,101,106,109,108,101,97,96,110,102,97,110,99,98,110,99,86,95,117,114,109,122,104,100,95,109,104,109,113,98,103,100,99,83,117,101,103,100,105,102,100,112,99,105,94,105,110,104,95,90,96,99,109,111,101,99,109,104,112,103,105,91,101,99,97,87,100,95,103,105,109,103,94,94,102,108,97,113,95,117,89,102,105,99,96,97,89,92,98,100,86,110,96,105,98,102,104,83,102,106,107,82,99,100,90,101,111,93,105,100,98,104,102,108,83,98,108,109,103,89,98,110,106,110,105,108,95,117,94,108,102,90,96,107,105,108,103,102,110,103,96,106,78,105,78,119,100,100,102,107,98,94,106,96,97,91,109,109,98,86,107,102,105,88,88,102,103,97,101,104,109,100,92,97,96,92,108,102,110,92,108,96,106,116,101,98,114,103,95,108,101,96,90,101,110,103,96,101,90,100,101,104,92,107,92,100,94,96,109,90,92,95,116,87,105,104,93,95,107,97,113,104,98,84,109,96,92,128,87,109,104,109,95,102,93,105,112,99,97,93,94,98,91, +667.20911,105,118,94,101,106,108,90,99,98,116,100,103,111,101,101,104,98,103,134,96,101,101,104,109,95,109,108,111,103,105,106,95,103,111,111,99,104,106,109,98,92,97,84,96,95,97,95,95,102,115,108,94,110,110,107,88,100,92,101,95,87,102,91,97,101,103,101,112,96,97,105,104,91,95,99,105,102,95,113,107,106,106,107,102,103,101,99,109,114,107,69,85,98,107,103,95,104,94,98,95,106,100,98,102,117,90,99,98,99,108,108,108,101,105,101,105,99,99,104,105,102,78,95,105,103,100,103,99,114,105,89,104,91,93,107,106,102,105,88,93,98,107,103,109,95,100,91,104,95,96,74,105,107,98,91,103,105,101,109,101,114,99,111,98,96,99,97,102,108,108,101,99,93,108,100,102,95,87,104,99,93,110,91,111,96,100,98,103,107,92,89,101,112,107,100,104,114,100,91,105,98,106,111,99,103,102,103,109,117,117,95,96,110,119,99,107,96,103,100,110,109,115,100,108,108,108,109,105,104,100,105,100,102,105,105,111,102,103,108,92,92,104,116,98,105,98,106,105,89,105,108,77,108,112,87,107,108,101,97,104,96,106,107,95,93,102,96,96,104,103,100,90,97,93,103,101,136,106,96,99,104,107,108,98,93,109,96,105,97,97,108,108,111,95,99,111,108,113,109,103,107,101,107,113,100,105,112,119,110,105,94,109,100,107,105,94,101,103,108,101,98,104,97,113,91,105,101,86,113,119,97,90,101,109,106,101,108,99,119,107,123,110,106,103,104,112,99,114,116,102,105,111,107,98,105,100,102,112,109,106,106,110,123,105,94,100,81,93,102,108,103,99,105,98,104,108,100,103,97,109,113,106,99,102,99,96,97,111,115,95,111,71,92,104,96,111,96,98,99,112,97,89,93,103,107,112,104,105,109,104,100,70,117,98,110,101,98,106,104,106,105,116,117,95,109,113,110,95,98,99,104,109,104,103,101,108,105,108,99,98,103,100,110,95,104,113,100,103,101,91,104,120,115,101,101,110,110,104,101,110,105,99,96,100,129,115,99,102,99,105,99,103,103,112,100,98,108,108,108,103,119,107,107,101,91,100,103,97,115,81,103,103,130,109,103,96,94,92,104,98,98,105,103,110,97,96,99,99,123,94,116,109,103,109,99,95,98,104,104,97,99,94,110,106,98,99,115,107,91,98,98,102,103,106,111,95,110,99,101,103,91,104,97,108,111,100,112,112,103,109,111,118,103,103,106,104,95,108,93,98,109,101,99,108,108,105,103,109,97,104,96,112,105,104,97,98,107,117,87,106,106,95,106,102,108,106,104,96,106,100,108,111,92,95,109,102,103,106,115,102,101,96,92,113,93,89,99,100,104,98,110,103,95,114,114,100,100,101,99,99,105,99,88,105,114,108,92,109,111,113,87,96,87,98,90,103,109,101,111,96,102,104,111,99,103,89,100,96,95,122,103,96,106,115,98,105,108,121,101,106,111,96,101,101,97,92,102,98,103,107,120,109,100,99,104,97,106,106,118,104,112,106,105,107,99,102,101,104,93,102,104,113,95,103,111,96,99,104,111,108,103,95,87,97,113,127,108,113,105,106,95,106,99,106,100,106,95,108,107,98,99,95,105,115,107,95,107,99,91,116,111,101,103,108,104,110,99,102,95,102,113,101,117,86,101,97,102,96,98,99,116,96,96,98,101,99,98,102,108,103,105,102,105,111,103,95,104,95,99,97,100,87,102,107,100,100,101,97,107,102,118,107,99,111,91,110,110,100,97,103,109,103,107,107,101,87,106,95,95,95,99,98,96,99,95,108,98,108,103,92,107,124,100,100,102,95,109,107,110,115,106,96,87,109,97,95,111,105,94,102,107,107,101,99,102,102,108,99,94,117,111,106,94,92,110,106,108,85,107,96,109,100,103,115,98,102,72,95,98,102,97,100,95,106,103,98,102,112,106,107,114,109,112,95,100,103,98,98,101,96,99,111,100,106,101,105,97,110,106,98,105,104,103,102,94,99,90,110,119,98,93,107,114,97,105,103,99,102,98,102,102,106,113,86,121,87,94,115,88,105,109,121,101,96,87,90,97,99,85,104,100,95,95,111,112,107,95,106,100,100,113,108,82,72,108,103,104,90,97,113,103,102,105,94,107,109,95,100,100,99,92,98,93,106,99,116,101,98,99,106,88,100,99,101,97,112,112,99,101,101,111,99,97,100,95,105,103,94,99,106,100,104,109,110,116,103,98,103,84,111,100,96,103,106,109,108,106,100,92,114,77,101,105,110,109,111,102,96,111,112,101,103,106,96,94,109,98,105,103,95,103,95,99,94,104,104,110,101,107,105,95,110,101,104,98,92,95,99,110,93,113,103,112,95,99,86,109,98,100,96,102,105,93,93,93,91,104,105,103,102,79,109,104,115,105,94,96,85,97,101,107,112,97,119,111,111,102,105,113,94,111,100,103,98,108,101,106,109,111,105,95,87,118,83,92,97,103,102,111,82,92,113,114,84,103,107,107,107,99,104,92,102,111,100,107,97,98,103,113,108,96,101,105,101,92,112,102,103,97,91,100,94,93,106,95,101,101,100,106,106,109,110,102,105,96,108,98,98,120,116,101,84,101,91,108,105,105,99,109,106,105,91,104,98,120,114,90,108,106,101,98,107,93,105,98,102,115,103,107,99,94,113,109,109,103,97,101,96,100,108,100,101,109,104,106,113,108,109,105,101,97,116,105,106,94,121,111,107,111,106,111,113,105,99,102,119,98,109,112,95,108,104,109,100,101,107,102,109,96,109,101,88,100,95,119,107,96,100,99,106,113,92,106,112,108,109,116,123,98,106,109,99,101,116,101,96,97,100,98,100,100,106,109,95,115,99,98,116,95,97,100,105,123,97,104,104,106,109,106,106,99,102,96,102,97,109,108,95,111,104,92,102,95,112,104,101,79,120,95,105,94,103,102,94,93,114,124,107,103,109,115,106,113,108,101,112,112,93,102,111,92,101,105,123,118,110,109,106,80,102,87,102,122,94,103,104,104,123,120,109,104,96,93,104,101,101,110,97,100,101,104,112,109,110,106,108,98,100,104,116,120,95,108,111,97,87,112,113,102,102,86,98,106,109,79,98,105,110,99,98,99,96,102,111,112,109,105,95,95,127,98,90,103,107,105,129,108,100,100,104,96,96,105,99,109,87,102,105,106,115,104,111,100,95,101,100,89,95,128,98,107,104,113,112,94,109,107,108,112,104,99,104,102,97,101,108,101,102,104,94,104,92,94,109,104,100,108,100,104,106,113,95,103,91,104,107,98,92,132,95,96,105,95,101,95,108,109,115,111,93,85,95,117,110,106,116,96,99,96,109,107,104,100,113,100,97,94,95,111,109,92,85,99,106,106,113,103,105,112,107,102,100,108,96,105,105,96,90,102,101,104,95,100,105,117,111,105,115,94,105,94,109,100,95,115,104,111,114,126,104,99,106,89,101,104,104,100,99,101,97,103,111,115,107,100,99,110,99,104,91,90,106,104,104,108,101,109,114,101,108,115,100,107,101,100,103,107,102,103,97,97,94,113,98,105,107,102,101,110,96,95,94,111,96,97,106,93,98,84,97,96,111,104,105,113,98,110,105,93,96,102,107,90,109,101,100,88,106,118,95,104,102,107,110,95,78,102,105,121,105,100,111,99,104,107,112,99,104,96,99,99,107,102,102,109,106,117,115,105,111,104,102,95,99,106,104,103,111,112,116,100,104,95,103,98,98,99,95,110,102,117,108,96,89,105,108,107,111,89,99,113,111,95,108,94,105,108,94,87,100,94,104,96,99,107,101,113,101,99,120,100,104,97,107,111,105,106,104,93,106,106,103,117,104,123,100,102,101,102,101,102,110,88,101,116,104,102,87,109,96,96,97,107,107,93,101,98,105,111,104,102,105,98,79,121,106,113,99,99,95,94,97,112,106,115,95,98,97,88,107,98,95,98,109,109,88,102,100,108,93,93,97,108,91,109,102,102,99,118,105,106,101,112,101,101,113,111,104,108,102,87,92,111,99,105,108,100,78,99,105,94,108,101,100,107,113,104,112,111,102,94,109,108,99,116,132,115,91,97,108,98,96,104,103,103,89,92,102,108,91,108,114,106,98,110,101,100,99,99,103,113,100,105,107,97,104,98,103,118,110,117,111,116,100,109,95,103,99,92,92,99,112,96,92,108,105,103,105,88,105,99,104,112,102,96,102,96,104,82,106,107,102,101,107,100,105,100,95,97,97,97,102,104,105,112,103,99,103,100,109,102,108,107,102,106,113,107,100,109,108,110,96,112,102,100,98,108,100,104,96,101,118,107,115,107,119,110,99,120,99,102,100,99,109,108,105,109,115,98,103,90,93,105,105,101,106,92,113,102,113,112,114,99,111,103,78,93,98,100,108,89,112,94,98,106,97,105,113,89,108,104,116,108,105,99,101,100,111,102,110,86,106,95,101,117,84,102,96,108,98,100,102,102,117,115,113,104,101,112,108,95,102,95,105,95,101,105,103,102,94,102,124,88,97,110,111,103,108,115,92,102,84,103,109,95,100,102,101,109,105,101,108,98,107,98,119,103,108,109,100,106,103,97,107,102,103,107,108,117,106,107,106,117,105,96,93,87,99,102,103,91,102,106,106,108,119,103,124,103,98,108,112,110,116,103,91,112,99,99,104,88,98,97,111,106,91,90,101,109,105,107,109,100,113,108,95,105,115,116,111,114,102,103,103,106,101,118,105,109,102,119,95,101,100,105,101,112,104,112,104,113,106,87,107,105,110,102,113,94,109,102,99,101,97,99,94,101,100,107,106,98,91,133,104,97,103,102,112,100,117,107,96,105,96,100,95,109,98,96,69, +667.35034,110,102,106,91,94,119,105,101,117,111,106,113,105,117,102,106,105,97,113,110,106,99,88,94,99,124,95,113,102,106,106,86,95,108,100,102,99,109,108,98,99,111,102,101,92,109,96,91,111,123,112,111,107,96,102,100,102,100,103,88,104,104,112,100,107,108,103,104,83,101,105,106,104,106,92,122,76,109,98,97,120,99,104,95,109,97,111,107,110,104,92,110,104,107,87,105,104,95,108,98,103,88,103,100,110,104,115,98,103,105,86,107,105,105,94,107,111,107,101,97,98,100,102,105,114,107,112,94,114,104,100,95,100,94,107,117,94,79,98,99,101,107,106,103,97,105,96,94,103,93,92,98,108,91,102,105,103,101,115,102,114,112,99,99,89,100,113,89,97,106,108,111,98,98,95,98,96,95,103,95,108,104,95,104,115,99,102,95,106,108,101,105,103,108,107,105,98,109,104,103,117,108,94,87,105,87,106,98,111,104,96,104,90,100,105,99,104,85,99,106,105,105,103,93,105,102,110,109,93,97,103,106,97,100,101,103,97,99,100,100,87,101,104,107,102,104,100,109,117,110,107,92,95,110,100,107,93,106,108,125,99,108,100,113,103,104,95,104,107,96,103,107,98,99,108,108,103,97,100,102,111,105,96,95,109,101,97,103,98,109,105,89,105,99,90,104,112,106,113,104,101,99,102,101,100,107,96,102,108,78,96,99,108,94,110,91,102,92,100,99,102,96,103,109,101,100,106,96,108,95,92,107,99,92,91,103,103,109,101,102,110,105,87,109,94,112,100,98,104,102,108,107,118,115,87,106,103,103,97,113,94,96,105,107,96,101,106,104,113,98,126,99,98,104,121,102,96,101,105,98,113,108,67,107,93,108,91,104,106,95,109,105,81,105,99,91,101,89,97,102,96,89,96,97,93,102,94,94,91,102,96,102,99,105,104,91,104,114,104,88,108,117,98,111,100,94,98,98,86,107,94,102,100,103,107,84,100,103,93,104,104,97,99,117,99,107,95,91,108,105,96,104,111,105,105,99,99,100,113,107,96,104,100,107,89,107,118,101,103,92,117,108,112,91,104,105,95,95,111,104,91,103,103,100,101,93,100,102,102,108,94,107,97,113,103,101,96,101,106,112,107,101,109,112,101,115,101,103,111,102,111,110,114,105,106,98,96,99,108,105,97,91,99,109,89,92,120,95,108,98,97,115,103,121,112,96,102,99,95,90,99,107,104,100,111,122,98,103,92,108,105,117,109,105,102,98,95,96,102,91,96,108,98,108,101,96,101,99,99,95,104,103,107,104,103,99,104,111,114,115,96,116,98,94,100,102,104,103,109,104,97,108,88,96,103,99,117,98,105,99,105,106,102,108,95,104,114,111,102,114,112,104,118,108,102,103,97,100,108,140,105,108,93,103,117,103,104,100,83,97,74,109,117,107,96,97,93,110,108,103,101,109,100,100,97,111,98,108,107,125,94,114,108,113,102,113,114,110,95,117,94,109,96,85,88,109,94,109,104,103,108,108,106,100,106,97,109,103,113,77,101,105,94,88,102,105,98,106,106,109,101,98,95,118,104,103,96,100,89,93,101,95,120,110,95,101,102,111,102,105,101,98,104,86,97,99,98,104,97,117,103,106,108,87,108,92,98,102,113,105,96,103,99,95,77,98,97,96,114,109,101,95,91,93,98,107,131,107,97,112,106,96,106,95,106,89,98,106,98,108,96,101,99,90,101,96,85,95,99,115,93,96,110,96,91,113,93,116,110,99,110,100,109,107,98,94,116,106,89,102,109,109,98,113,105,100,104,95,96,112,98,92,94,96,111,102,110,104,95,103,110,101,103,108,106,103,115,97,111,95,104,119,101,107,112,102,104,101,95,96,97,105,104,77,85,106,97,109,104,104,109,99,96,114,106,95,104,103,104,98,96,124,108,96,96,96,99,104,90,106,100,96,103,103,76,100,93,101,117,100,105,104,102,88,101,99,106,106,102,97,103,111,96,106,103,106,95,103,95,110,99,121,90,106,99,104,106,110,91,96,99,103,96,102,91,98,102,109,95,100,105,96,112,97,102,96,93,108,101,98,98,109,105,105,111,103,102,104,96,115,107,108,102,98,100,100,96,91,93,111,102,104,105,109,101,97,105,97,92,104,96,100,109,109,105,91,105,104,90,103,123,103,94,102,107,103,103,104,105,88,101,97,101,83,113,89,98,114,88,100,93,98,113,97,104,92,92,105,86,109,104,97,110,97,95,105,101,116,102,104,92,100,102,98,105,99,102,124,76,102,114,102,105,95,90,107,108,91,118,94,73,98,118,97,98,120,104,104,102,113,100,114,102,106,91,99,87,104,110,111,100,109,105,116,116,105,126,108,91,107,98,94,88,95,94,122,108,105,108,107,120,106,98,96,97,92,94,105,108,100,88,106,91,111,112,102,105,106,92,100,108,108,104,106,104,94,102,96,108,101,110,111,98,94,103,97,100,109,114,100,98,101,98,99,111,106,101,108,106,100,102,104,101,101,117,93,100,119,104,98,124,106,106,95,104,89,117,109,107,106,96,110,97,98,110,101,103,112,94,105,99,106,109,104,107,102,105,90,104,95,95,100,116,101,104,106,105,108,100,101,102,101,109,101,110,102,94,94,108,106,105,107,102,95,90,101,114,96,95,101,97,92,103,91,108,100,110,98,100,94,103,108,103,99,94,106,107,100,102,97,108,102,101,110,110,101,99,105,100,96,95,111,95,106,100,98,101,113,104,98,113,107,96,103,113,107,127,105,106,96,105,105,102,92,113,125,105,103,105,102,113,108,106,106,95,107,105,121,96,106,100,105,107,111,104,105,105,100,105,119,118,107,91,117,111,109,108,104,113,84,100,97,103,107,105,102,98,107,94,118,102,103,107,115,118,100,103,91,106,100,113,102,102,104,114,94,114,92,115,101,129,106,106,110,72,108,108,105,109,109,110,107,95,114,105,120,96,126,102,114,111,97,100,106,99,103,107,112,95,112,109,101,97,112,105,115,99,95,118,84,111,110,102,95,105,120,113,108,105,96,107,99,108,96,103,106,102,104,92,97,104,108,97,92,111,113,110,107,98,96,93,96,92,113,104,108,91,101,107,91,99,88,114,111,94,107,103,100,96,106,108,104,93,98,105,110,96,111,97,97,98,90,98,110,106,106,104,103,68,93,92,114,101,102,112,100,103,92,100,111,95,90,119,101,101,80,102,104,97,110,101,106,103,129,111,109,93,89,98,126,97,101,101,104,104,98,101,104,110,98,101,104,96,114,99,107,112,112,119,100,95,104,107,103,102,101,95,109,104,99,107,94,92,103,105,98,113,95,116,85,112,106,105,104,101,104,117,92,105,99,95,100,94,104,100,107,108,108,108,97,102,106,116,102,94,99,94,95,116,102,107,106,104,99,105,94,105,103,98,102,96,109,107,108,102,101,107,99,92,93,108,112,101,109,109,101,95,93,117,101,96,104,88,101,97,109,114,109,111,112,95,115,99,95,117,112,105,102,96,101,97,87,68,101,97,98,94,112,94,104,102,102,98,93,112,110,105,88,109,109,128,96,106,109,91,105,103,102,100,99,98,103,101,90,95,103,112,114,96,104,91,109,110,97,98,104,100,113,104,102,92,100,95,100,92,108,95,102,99,112,103,108,103,99,93,104,93,127,95,109,115,101,110,105,108,98,107,98,97,94,102,111,103,107,105,103,97,103,112,108,103,100,97,102,100,103,95,107,99,100,112,92,102,108,101,93,117,106,108,114,96,116,97,98,100,102,104,97,104,112,83,102,110,97,92,108,103,108,97,106,99,100,105,93,101,120,112,92,103,95,107,109,105,105,113,106,92,99,98,104,100,107,97,73,102,102,103,75,96,105,90,104,90,92,96,106,113,92,103,105,94,98,113,104,98,93,97,108,102,103,100,107,105,101,105,86,109,105,95,105,115,119,100,112,109,94,103,100,89,100,100,107,101,108,98,102,101,104,105,105,102,100,113,114,109,91,113,121,101,112,109,104,113,104,92,106,93,99,113,108,109,93,103,98,92,115,95,91,99,100,101,112,117,112,98,100,99,100,101,83,103,98,93,103,103,99,113,85,90,96,97,105,107,106,100,106,98,101,99,90,94,97,101,90,109,104,113,99,102,108,108,102,91,98,112,120,96,121,105,113,117,102,101,109,100,95,97,101,101,110,112,117,101,105,109,100,112,102,98,103,105,105,109,105,108,107,92,102,81,105,98,95,121,104,100,103,104,100,94,103,115,96,94,104,114,92,108,106,104,102,104,105,104,98,106,112,78,100,110,99,105,98,115,114,102,90,107,112,90,99,111,77,106,96,91,100,105,109,106,103,98,110,101,98,120,98,99,103,95,112,95,97,98,108,101,97,98,93,104,90,117,109,105,96,125,96,104,96,97,105,100,103,131,97,93,98,97,107,104,103,86,103,87,107,99,106,101,113,101,112,109,95,98,116,93,105,112,106,105,101,99,90,100,101,98,97,97,103,108,115,100,107,95,100,121,95,103,105,112,104,115,112,117,64,103,111,112,110,101,108,99,104,117,109,118,112,111,95,103,104,105,100,103,89,109,117,120,109,99,94,107,110,94,98,115,99,101,98,100,107,102,89,101,110,98,109,94,110,110,109,94,90,106,98,107,110,100,111,98,100,116,100,107,106,105,101,111,102,100,96,114,113,96,109,101,97,111,97,121,109,98,112,95,97,103,106,106,104,111,105,109,107,111,116,96,94,109,93,84,92,97,110,98,94,94,84,83,110,108,115,110,97,92,104,103,104,113,104,106,99,107,99,102,108,98,103,83,111,103,99,103,106,110,96,101,104,98,120,95,90,110,113,80,93,108,99,106,87,95,126, +667.49158,97,105,102,98,104,103,74,114,77,99,95,97,91,107,96,102,112,94,88,84,98,89,89,109,106,104,103,105,93,117,88,94,95,109,99,105,105,97,99,101,99,99,96,100,90,99,84,104,98,106,95,98,97,96,103,95,104,105,109,102,105,131,103,101,118,95,102,101,105,103,100,97,102,112,105,106,113,106,102,101,104,110,93,114,102,78,102,104,97,99,101,95,88,96,115,95,107,102,94,103,102,104,108,100,108,86,100,95,100,105,90,96,111,91,95,106,98,107,88,99,101,104,95,106,95,106,114,101,116,101,99,112,96,105,109,109,94,104,94,91,91,96,101,92,96,101,112,90,101,104,85,105,118,93,97,62,96,101,105,98,98,111,108,105,99,108,94,94,99,103,101,106,102,117,102,105,99,96,110,81,117,103,106,104,86,98,97,94,101,102,111,109,109,106,94,96,103,109,106,107,87,66,87,91,107,113,99,106,109,100,90,108,108,97,99,108,99,95,93,105,99,113,98,112,106,99,98,108,118,96,103,101,100,69,112,105,80,100,106,103,95,106,103,114,109,93,100,108,112,100,91,106,107,113,100,103,108,108,103,82,102,107,99,110,95,108,101,99,102,100,97,98,101,105,104,97,99,94,92,70,102,97,96,106,105,101,98,99,103,108,94,104,109,100,117,101,99,114,105,108,98,107,113,107,92,118,104,108,99,100,98,107,105,93,106,108,101,106,108,99,98,100,109,97,100,104,103,96,77,108,104,98,76,91,104,102,103,91,95,98,92,100,107,114,108,113,100,104,106,97,105,101,89,94,91,100,94,110,105,95,98,102,98,100,94,101,98,112,93,94,114,104,105,101,97,99,117,97,95,103,92,117,91,101,104,95,111,99,117,88,111,95,97,94,96,109,96,90,100,67,104,108,91,97,98,104,85,106,109,109,91,95,97,99,92,86,96,96,110,107,103,98,104,110,82,92,88,91,95,104,78,117,104,90,99,101,98,108,103,111,99,109,98,102,105,97,100,101,111,105,90,107,102,107,108,91,107,108,106,116,99,106,98,98,97,110,81,109,95,101,103,100,100,102,95,100,93,100,103,106,104,100,108,101,92,105,98,96,99,100,83,107,88,96,102,101,99,91,76,109,113,94,105,104,96,111,89,103,102,95,109,101,106,106,102,112,98,91,99,99,100,102,98,105,111,105,114,103,95,98,96,107,116,100,113,91,108,96,95,99,95,101,98,96,105,99,113,82,104,87,97,96,100,110,101,98,93,91,96,92,105,95,96,99,96,94,113,99,110,81,99,106,110,104,105,100,109,115,98,110,100,99,106,100,110,106,110,108,104,100,100,102,79,94,107,103,100,100,102,89,104,106,112,102,105,103,92,82,101,114,98,115,109,108,102,88,110,108,95,93,107,107,108,93,98,108,97,105,94,103,98,104,99,109,94,108,102,94,95,109,98,99,96,105,95,104,104,103,103,113,111,99,101,102,100,106,98,100,105,94,103,92,104,105,87,101,108,101,111,100,107,96,108,104,96,93,107,103,97,99,109,112,116,107,101,97,95,106,98,98,95,101,114,102,97,93,108,103,103,101,91,100,104,94,105,105,87,105,111,99,108,107,105,96,105,102,99,95,95,93,114,101,117,105,100,106,101,109,102,103,104,100,101,106,110,96,86,111,83,112,94,101,110,95,105,90,104,112,110,99,106,101,115,90,101,113,102,104,108,100,100,103,76,71,95,108,92,99,108,99,98,107,118,97,102,102,114,99,104,114,110,99,102,103,99,106,94,102,95,100,115,105,98,98,107,94,96,90,105,112,96,102,97,98,135,112,96,108,101,110,114,100,100,109,97,106,99,97,109,99,103,96,106,100,108,112,110,95,104,104,108,90,97,92,100,106,100,95,102,99,104,98,121,118,97,111,90,93,95,90,100,113,96,113,95,112,109,100,91,120,109,106,105,106,101,99,95,117,104,105,96,105,110,115,113,97,124,94,105,98,97,95,106,107,100,104,106,111,105,102,106,98,90,119,97,99,90,98,100,104,98,102,98,98,97,99,94,109,101,102,95,103,107,94,95,103,100,105,96,114,102,100,112,111,105,93,100,95,109,103,122,121,96,113,90,96,98,94,105,124,101,114,94,100,104,95,100,104,97,99,108,104,92,98,97,97,88,99,95,105,101,106,128,101,94,109,109,100,94,99,90,106,95,112,88,106,99,94,92,95,105,101,98,95,94,105,99,105,125,105,110,98,106,102,91,87,97,89,99,117,99,107,102,102,94,104,102,102,101,105,91,99,96,100,87,106,103,95,100,96,96,94,102,103,99,109,98,113,107,91,110,106,105,100,105,100,114,107,92,103,99,116,98,97,81,109,98,109,118,108,85,103,99,99,94,108,89,99,102,108,87,103,103,95,104,107,102,97,99,94,95,105,96,101,93,110,107,94,94,100,127,100,102,104,91,100,107,105,131,112,105,117,103,95,98,96,106,98,87,90,108,98,100,86,98,107,96,100,100,104,102,118,95,83,98,110,104,99,98,96,93,90,100,98,99,100,94,92,107,106,101,105,105,96,100,108,101,112,96,78,101,96,99,106,100,107,104,106,109,109,117,107,115,112,95,99,94,101,109,112,98,96,97,93,104,106,107,103,103,121,104,94,102,92,94,99,101,102,98,98,106,103,111,103,102,100,103,107,108,131,105,93,118,102,96,113,97,103,103,96,101,96,103,102,101,97,107,106,99,109,86,112,103,106,113,110,100,110,113,100,101,104,90,109,100,109,99,104,105,102,108,100,107,112,97,108,99,109,104,102,108,104,104,106,102,106,106,104,87,102,98,112,111,96,101,82,94,101,98,106,101,99,108,101,105,103,104,97,106,101,105,114,99,98,108,113,103,111,98,103,96,104,93,109,113,98,93,92,98,96,106,108,95,101,103,91,92,94,97,89,87,98,87,99,113,108,108,107,94,109,104,106,94,98,104,123,105,103,98,103,115,108,115,107,105,101,105,115,109,92,95,91,93,102,99,105,101,103,92,113,101,93,104,106,105,104,102,98,92,105,96,104,104,117,98,98,95,91,93,101,98,109,97,103,105,96,96,101,91,98,116,97,88,111,103,101,100,99,100,108,92,96,112,98,113,91,98,98,97,95,105,99,108,91,107,101,99,98,104,96,99,102,113,105,90,116,95,104,117,97,101,103,105,111,76,99,101,93,108,98,95,100,80,120,94,100,111,98,102,98,114,100,108,106,93,94,100,103,102,103,102,104,98,120,111,109,102,128,100,105,91,90,103,99,94,115,103,128,106,112,101,80,101,92,98,98,98,99,99,106,97,94,103,100,105,97,81,107,105,107,92,102,108,91,108,93,100,95,108,103,99,103,93,110,104,113,97,121,108,109,101,116,101,96,91,109,100,102,106,109,95,87,100,104,110,100,93,86,98,103,104,106,102,98,95,103,95,88,89,108,102,96,91,102,98,104,103,99,113,101,103,111,100,89,110,117,113,118,100,99,108,104,105,99,100,101,85,98,104,114,106,99,98,102,95,111,96,99,101,116,101,74,83,95,106,106,109,96,109,98,104,105,106,98,103,112,102,99,95,109,94,109,108,93,107,96,108,103,111,112,107,86,104,108,99,99,92,105,113,111,99,95,95,102,75,98,105,103,115,116,101,101,96,99,106,104,99,99,93,99,111,95,99,115,106,108,112,100,98,90,104,106,111,102,97,107,104,103,102,95,92,109,98,96,114,100,100,68,94,103,106,95,100,93,103,100,93,100,113,96,102,106,102,104,104,105,99,110,110,97,98,102,100,101,104,111,93,89,97,83,104,113,94,99,91,98,104,111,95,100,103,93,91,97,94,117,114,101,94,99,106,102,104,102,113,95,88,101,112,98,97,94,102,111,98,138,113,112,103,107,97,95,105,97,96,97,95,106,105,98,97,105,103,105,102,102,85,96,95,103,101,105,115,109,91,99,97,99,108,111,99,106,91,107,100,91,95,106,104,112,106,96,101,113,101,105,123,74,114,118,109,111,102,92,101,109,96,105,109,95,112,100,116,92,108,103,104,99,102,98,107,102,90,120,107,102,99,98,104,93,97,90,105,98,100,109,106,105,105,102,106,102,95,115,98,100,116,96,119,95,107,92,102,92,93,103,102,97,104,101,95,93,106,104,114,98,92,104,106,108,102,99,103,105,111,102,98,106,100,106,109,94,106,99,88,92,124,98,96,99,101,116,101,98,105,107,64,106,107,98,104,106,102,114,99,95,110,96,112,109,96,105,105,105,96,98,105,101,92,113,101,108,107,106,104,100,107,99,102,91,98,89,110,105,96,103,103,94,104,98,90,98,109,106,88,91,100,103,102,101,100,101,95,117,91,98,107,107,106,97,95,90,96,103,108,101,102,106,106,83,102,90,102,103,98,105,84,97,97,116,102,101,109,97,102,97,97,96,106,98,97,104,88,96,106,104,103,96,93,97,93,103,93,106,78,99,100,98,101,100,94,99,100,102,102,99,103,119,88,106,98,97,98,102,104,96,102,89,100,105,109,109,117,95,99,98,95,92,106,106,98,88,98,107,102,99,107,100,90,103,100,114,107,99,107,102,105,108,92,91,106,93,124,100,102,90,99,103,109,113,87,92,99,97,85,108,94,92,97,102,104,100,100,101,81,111,96,96,100,99,110,100,102,104,101,106,108,102,111,103,95,103,92,106,104,94,113,90,112,100,103,106,99,102,112,110,94,93,94,114,95,105,99,110,104,97,93,94,109,100,97,94,101,98,109,95,99,106,100,117,103,97,107,85,99,102,115,98,102,94,99,119,97,93,103,109,111,96,127,96,97,106,84,91,104,92,94,102,93,91,89,103,95,110,92,99,109,110,109,109, +667.63281,101,109,90,104,110,112,101,96,72,97,107,95,100,100,98,94,104,100,104,94,106,96,114,99,100,101,96,108,97,103,91,89,93,109,95,113,101,85,102,105,101,105,86,105,99,103,99,76,111,108,90,108,101,95,105,86,98,106,104,101,94,98,98,101,108,98,104,102,111,100,101,109,99,102,90,113,90,105,94,104,111,107,102,96,108,96,105,96,101,98,101,99,101,103,96,108,114,96,97,105,99,105,103,103,102,103,91,99,92,99,105,96,108,101,105,116,100,104,113,99,106,95,99,103,105,99,103,106,122,94,87,107,91,109,100,95,102,99,102,92,104,92,95,95,97,99,115,110,105,100,106,113,89,97,105,88,100,96,88,102,98,102,104,104,112,91,92,100,99,95,91,100,94,93,100,105,94,91,100,96,98,95,100,109,103,96,97,99,101,105,103,100,104,101,85,97,91,104,104,100,104,105,103,108,107,100,101,106,124,99,89,95,94,98,103,91,110,91,105,103,104,93,109,112,100,105,102,105,104,97,97,95,96,98,97,113,92,120,97,101,115,104,114,108,107,102,99,104,109,98,129,103,96,101,93,104,96,98,94,100,107,98,102,77,88,93,100,110,96,95,100,93,101,116,95,102,92,104,97,94,100,120,107,100,109,104,88,100,93,125,108,100,104,96,109,106,110,106,112,91,101,105,95,112,97,93,117,114,106,98,91,100,98,123,110,103,95,93,95,76,106,93,100,107,104,81,101,101,102,108,113,99,103,118,96,96,101,96,104,114,95,101,96,117,98,106,115,103,105,98,106,111,83,101,95,102,95,107,99,91,94,106,88,107,87,108,102,107,93,106,114,104,91,110,112,101,110,103,92,103,105,102,104,108,104,102,96,98,105,95,100,103,111,109,92,85,104,100,100,102,95,95,102,100,92,99,117,86,103,109,98,103,96,96,99,104,97,105,97,90,109,85,102,96,107,82,102,97,110,108,94,118,101,97,113,106,94,100,100,106,102,92,108,108,97,96,99,104,91,108,97,109,103,112,96,101,104,103,103,100,90,101,109,108,107,107,99,95,100,102,97,105,105,111,90,96,93,103,99,109,104,106,108,102,109,92,93,99,101,89,107,108,117,105,77,96,102,99,98,98,89,92,100,103,104,92,91,104,107,113,109,95,91,84,91,102,101,105,105,96,100,99,83,112,100,106,107,92,95,106,99,96,95,108,94,83,94,127,80,95,105,100,87,97,105,107,105,99,101,103,99,105,105,92,91,94,101,106,94,99,114,98,114,102,100,113,99,96,99,95,94,96,101,101,104,119,106,93,94,108,103,106,95,98,109,99,99,108,104,95,101,103,98,91,100,104,120,102,100,104,100,98,110,105,97,106,94,108,97,75,97,98,97,99,106,109,115,105,102,94,104,90,99,92,104,105,118,91,104,107,106,109,96,113,97,109,100,90,98,105,108,108,95,102,96,93,98,90,97,108,91,101,106,112,98,97,102,110,104,108,109,96,99,99,106,105,98,96,106,83,102,101,110,105,94,103,99,96,100,108,97,101,102,102,97,112,99,106,122,104,100,99,116,102,102,91,109,114,99,96,99,95,113,121,103,103,106,117,99,103,96,95,106,118,92,99,99,110,95,104,103,103,102,104,94,99,110,99,105,109,95,100,101,96,100,94,104,102,105,107,108,97,96,104,117,101,104,113,96,98,106,86,106,92,95,112,94,78,102,99,106,100,99,99,85,101,89,101,115,92,95,107,106,102,104,96,92,87,106,96,102,110,101,92,97,102,105,106,112,98,99,107,102,105,107,105,95,95,106,113,102,101,98,99,105,102,114,109,105,88,106,100,111,106,117,100,112,108,96,99,106,105,109,108,99,102,91,107,99,99,105,96,106,108,104,98,103,103,117,98,107,108,107,106,101,89,79,101,106,90,95,98,95,106,90,105,84,105,91,98,98,111,97,96,82,95,96,100,104,110,112,102,117,117,99,100,110,86,97,93,109,93,101,97,108,106,92,104,92,94,103,93,90,111,104,94,98,102,100,111,96,99,101,103,113,91,90,95,93,101,95,105,110,100,99,94,84,102,101,102,114,104,104,92,100,92,106,109,82,93,96,107,98,101,93,101,91,100,87,99,107,110,104,104,101,88,101,100,102,110,99,110,120,101,97,84,100,94,99,100,104,108,99,99,103,81,108,101,101,106,100,92,79,103,97,96,103,90,89,102,100,95,101,100,101,94,106,99,111,100,99,104,102,96,105,98,95,114,95,107,94,109,110,90,92,100,107,107,98,101,93,107,101,108,103,100,106,100,94,94,103,106,115,91,99,102,103,91,107,92,107,98,97,98,101,96,83,118,106,112,86,103,115,102,98,104,102,74,84,108,103,97,102,116,90,118,106,99,99,108,98,105,106,106,99,102,94,103,102,97,94,105,91,100,109,113,103,106,101,95,103,123,101,95,113,93,101,98,100,107,106,112,102,91,104,107,101,100,102,107,105,107,106,97,108,104,97,129,91,101,109,117,100,96,97,100,101,98,99,90,92,111,98,118,90,88,105,121,107,95,102,100,103,101,87,107,115,94,102,85,108,98,96,105,104,99,105,108,106,108,108,102,102,100,99,95,105,99,94,105,102,97,105,96,80,98,83,106,117,98,105,105,102,99,108,100,108,99,104,104,96,101,96,91,99,99,103,109,105,102,109,102,104,116,105,109,109,91,113,114,102,113,112,107,104,108,103,107,75,105,107,102,104,110,99,105,103,73,114,102,116,120,87,88,106,104,102,100,109,102,105,115,94,109,97,106,105,107,108,109,114,103,106,98,95,86,108,110,97,110,101,100,104,116,98,108,105,110,88,110,100,105,103,108,120,113,103,95,105,101,114,100,103,100,107,98,97,108,101,96,99,104,101,112,103,105,96,103,109,105,108,94,102,94,103,106,100,98,98,105,95,103,95,110,84,99,117,113,105,105,91,108,96,100,112,110,106,116,107,100,104,104,103,100,108,88,102,95,100,95,100,84,96,119,99,109,108,107,103,73,112,103,99,104,93,103,105,100,101,112,84,103,107,110,104,111,91,95,102,99,103,114,99,106,112,113,111,100,107,117,112,101,101,113,111,113,99,107,90,99,103,90,106,101,102,101,93,99,106,95,87,98,88,109,113,99,106,105,103,110,120,98,105,100,98,105,110,100,99,100,98,99,93,110,110,98,101,117,109,108,95,105,106,92,101,105,107,109,116,98,96,98,108,107,105,105,96,103,106,112,95,96,112,102,95,105,100,110,113,105,112,95,110,103,103,85,115,102,109,94,96,102,101,116,110,100,97,89,98,118,105,110,110,108,96,106,102,100,91,103,95,95,101,98,122,84,90,112,103,104,99,87,93,99,117,104,98,96,86,103,98,106,107,102,91,88,95,103,99,102,97,87,95,96,104,98,100,99,98,105,97,105,101,99,86,113,100,93,101,84,99,114,100,97,97,105,107,95,105,104,97,99,97,100,105,97,91,108,101,94,112,97,103,111,102,103,112,91,99,103,97,100,108,107,115,106,94,100,112,83,102,98,94,111,107,110,113,104,101,100,97,98,90,105,99,112,105,101,87,97,93,108,104,108,103,100,107,109,106,105,92,101,98,99,101,99,102,97,106,132,105,97,95,117,120,99,101,113,108,107,104,109,99,104,104,106,99,106,107,105,112,96,92,108,106,94,109,106,100,94,95,109,105,93,100,104,100,93,91,115,101,106,103,92,109,97,104,98,108,99,104,106,102,94,108,96,97,110,114,108,105,99,100,110,102,113,117,108,95,92,103,109,95,100,105,91,96,94,111,98,108,99,111,104,108,95,107,102,105,91,93,104,109,100,105,111,102,116,83,102,101,105,96,102,105,103,95,99,98,97,101,106,101,108,93,91,105,101,95,89,95,98,104,102,105,111,100,100,109,104,102,111,81,104,96,102,111,107,111,105,101,102,105,98,97,101,100,109,103,106,102,97,97,111,102,101,113,113,96,112,129,102,94,98,105,111,110,105,96,96,101,98,116,110,105,109,85,100,105,117,93,87,105,90,105,90,97,111,104,83,111,112,96,106,102,106,100,101,96,114,105,97,110,101,100,105,108,95,101,101,104,93,97,113,87,110,113,100,108,102,106,87,107,113,96,102,104,101,106,102,110,110,107,91,111,115,90,106,100,116,125,113,116,109,102,99,92,104,93,114,103,98,104,108,93,83,96,102,110,101,95,96,100,112,99,92,78,95,99,111,106,95,112,103,110,100,95,93,90,132,98,102,87,99,100,90,94,106,102,102,121,112,106,99,106,103,97,102,107,107,101,95,101,107,106,105,111,100,101,104,90,105,101,113,96,121,108,109,113,105,90,96,104,109,97,94,104,116,110,106,103,100,94,106,96,108,106,100,99,98,117,101,101,110,98,98,98,105,120,108,105,119,102,112,118,102,100,85,106,120,105,109,100,134,107,103,100,102,111,107,97,103,99,104,111,105,103,94,117,96,104,109,103,99,106,92,103,109,114,101,109,107,116,103,120,99,108,111,107,99,112,125,102,88,100,101,96,117,111,106,118,94,108,108,104,98,109,91,104,102,104,101,100,103,113,106,100,100,107,97,109,105,105,94,96,96,100,99,106,86,101,95,99,110,102,92,94,79,95,96,94,98,98,102,104,99,99,104,98,95,102,107,113,110,104,92,112,110,101,102,115,100,98,119,100,111,109,103,106,100,102,84,112,99,113,106,94,113,109,96,109,111,101,111,106,110,101,92,109,105,104,90,87,101,91,100,99,103,95,94,111,93,102,114,123,107,98,116,87,100,92,104,99,92,101,100,95,104,105,101,100,107,114,106,115,99,106,111,103,89,98,96,96,107,90,97,100,107,97,107, +667.77405,103,109,86,100,87,92,101,98,90,93,81,110,117,100,92,100,101,103,114,93,96,114,102,94,94,106,98,110,112,100,107,101,100,91,91,104,109,99,99,102,101,100,113,93,95,108,98,112,100,113,112,97,95,93,112,102,92,90,97,92,107,110,104,98,108,112,96,100,108,99,137,101,99,111,95,94,99,96,95,103,95,104,90,98,99,72,111,137,94,95,114,108,101,101,109,94,90,97,98,113,113,84,105,102,74,103,97,111,95,100,98,103,100,90,82,95,108,102,105,106,92,105,97,106,102,109,107,92,110,101,98,104,98,112,102,112,91,108,103,98,106,103,97,95,89,106,108,102,98,99,93,95,87,100,96,97,93,88,94,101,95,96,97,107,115,100,100,96,109,81,103,98,90,73,96,99,104,100,99,102,87,91,97,82,105,102,95,99,109,86,105,98,98,92,91,107,112,98,107,104,106,101,98,97,91,111,101,99,82,103,95,104,98,122,104,100,98,98,102,107,95,94,102,106,95,104,104,101,117,123,101,113,97,117,98,101,99,102,95,102,101,100,112,113,104,94,105,112,114,98,100,100,104,96,86,110,96,100,98,102,92,98,111,95,101,105,106,102,105,101,95,118,107,90,103,91,88,112,99,99,95,93,91,97,107,99,89,107,104,101,97,104,105,100,102,95,112,113,95,103,95,115,93,103,97,107,94,110,102,100,87,98,95,90,81,103,95,112,108,103,106,91,102,104,103,100,95,105,105,106,103,101,99,96,109,101,99,96,96,99,95,105,94,109,108,107,121,101,100,108,102,105,106,104,97,110,103,107,104,112,105,99,103,96,110,105,94,101,100,102,106,104,109,91,101,93,105,92,85,103,101,96,98,99,85,117,95,97,104,99,121,99,93,102,94,102,107,102,104,106,94,97,93,96,109,109,97,106,110,109,96,109,89,99,100,101,106,98,101,94,102,91,87,99,97,91,93,105,103,99,104,103,108,95,111,106,106,65,100,93,91,98,96,103,102,94,91,106,102,102,94,94,94,103,83,111,103,110,109,105,94,91,111,101,98,105,98,108,94,94,91,105,104,105,94,96,96,105,108,109,117,105,105,95,113,106,96,110,104,89,104,101,97,107,102,108,83,97,106,111,102,99,110,99,108,100,103,100,104,97,104,92,110,109,106,94,104,100,98,96,102,101,95,103,99,102,104,108,119,98,105,99,108,104,105,102,94,98,101,103,110,107,103,96,95,100,112,103,100,106,101,102,107,101,105,109,114,104,102,91,104,116,97,109,104,104,113,108,112,102,98,105,103,118,114,107,92,95,104,111,97,91,102,95,109,102,99,106,106,105,107,103,110,94,96,90,99,98,98,91,105,100,109,100,108,93,97,103,107,112,121,102,102,99,101,83,103,95,108,99,108,101,90,100,113,99,104,102,98,90,98,93,102,106,106,103,105,98,105,105,99,126,104,107,93,97,95,90,98,100,108,92,106,115,101,113,107,105,100,101,104,90,97,89,98,100,109,107,104,108,113,87,103,104,119,104,100,103,98,95,82,112,101,91,110,91,93,103,102,97,102,103,102,106,100,109,76,108,113,98,106,100,97,94,70,108,102,98,107,102,96,102,100,107,99,115,106,96,105,94,103,106,106,106,117,97,107,100,98,98,100,105,100,108,95,94,102,97,112,102,102,114,100,121,98,75,101,107,111,108,108,101,104,91,96,99,105,87,103,100,112,97,98,95,94,97,96,105,102,105,110,117,106,92,103,103,106,105,97,90,100,103,106,105,107,104,78,89,103,92,108,101,92,100,107,107,112,119,95,110,91,100,96,95,123,121,115,105,83,104,107,96,113,96,95,108,107,112,106,98,77,95,92,103,96,105,84,104,100,78,115,101,103,95,106,107,102,105,107,103,101,110,98,95,96,109,100,103,97,100,102,92,105,103,93,95,110,100,100,103,101,109,103,116,100,114,94,100,109,105,111,106,92,101,109,100,104,100,100,100,115,95,83,102,99,101,107,122,113,112,79,86,112,95,109,102,102,102,95,96,101,105,108,106,105,100,95,98,103,101,121,106,95,100,103,113,101,113,104,102,101,100,110,101,109,96,105,99,103,111,109,106,95,105,94,95,93,70,106,101,99,103,91,96,106,95,113,109,102,105,104,90,111,96,106,86,105,102,93,101,100,98,100,106,103,89,99,102,100,105,106,106,97,96,97,97,109,94,101,97,108,100,106,108,97,99,105,105,94,99,115,107,105,113,114,101,93,109,104,95,101,94,97,101,96,81,98,107,98,95,105,103,101,80,105,99,117,115,106,100,111,102,96,93,105,104,109,106,98,110,112,88,113,110,104,96,98,106,109,101,109,105,111,107,98,113,82,103,96,104,125,101,118,103,95,114,90,122,106,110,107,108,99,109,109,109,102,103,105,99,99,96,103,101,99,106,102,109,94,112,97,87,93,109,104,91,93,90,110,110,88,100,106,95,83,101,102,113,86,94,113,97,97,96,102,96,93,114,117,104,98,111,80,110,107,100,97,108,104,99,104,109,97,99,99,102,103,105,112,100,98,97,93,90,98,98,108,102,88,103,97,79,100,101,101,113,104,115,109,88,102,102,117,97,111,108,89,96,97,100,97,97,97,99,116,93,99,92,116,105,100,106,104,96,93,112,101,111,93,105,100,102,103,99,106,101,103,87,101,95,93,97,102,113,97,105,105,98,89,100,103,96,114,121,96,107,117,115,99,98,112,110,100,108,99,98,102,101,100,111,111,104,100,105,100,108,106,94,107,106,94,108,100,109,94,98,98,101,105,92,87,102,95,100,92,106,100,108,92,116,109,110,111,101,87,101,123,101,95,106,108,121,101,103,109,103,102,102,101,100,108,95,105,116,91,99,111,91,107,99,109,95,115,102,104,103,99,110,106,98,96,69,89,112,98,116,109,112,94,115,111,80,102,91,105,111,96,95,108,94,108,102,96,94,102,99,96,91,110,100,113,113,116,110,101,100,114,94,103,99,106,103,87,108,109,109,94,88,100,103,91,96,95,107,95,102,110,110,100,115,98,100,71,115,107,93,105,103,100,98,93,113,100,90,104,91,106,109,106,105,96,105,103,109,111,104,113,103,99,92,106,101,104,100,104,97,105,97,97,111,97,98,100,98,110,91,106,106,101,104,100,103,92,94,100,109,100,93,94,101,109,86,105,101,113,103,102,105,109,102,110,99,102,110,98,101,108,105,103,92,98,113,117,106,102,104,91,115,98,98,103,99,94,113,102,100,99,104,107,98,95,107,105,101,108,113,112,99,108,106,86,102,106,102,104,111,86,108,102,95,104,102,120,104,108,104,100,112,99,103,106,102,93,104,101,103,81,104,112,83,97,93,99,99,100,113,98,103,107,94,92,101,112,103,97,109,105,95,99,106,112,108,105,97,111,92,105,113,104,97,112,104,97,88,102,95,101,102,103,115,104,109,114,97,101,105,102,103,112,110,97,107,99,94,100,110,103,103,108,108,104,111,93,100,98,116,106,107,103,105,99,101,102,99,97,105,96,103,106,88,99,104,85,103,119,105,97,104,102,97,99,101,92,97,95,97,94,90,101,105,96,103,109,119,102,86,106,104,101,107,98,96,97,89,110,99,95,100,100,100,111,99,98,109,93,105,103,92,126,108,99,101,112,110,98,92,95,96,101,97,108,96,105,108,103,96,97,110,101,101,100,107,104,92,109,84,113,96,111,104,102,99,95,84,108,107,100,95,101,105,116,100,108,90,101,102,98,98,91,106,99,104,87,98,111,92,107,103,115,113,93,104,109,107,90,100,110,98,100,103,99,115,95,91,108,104,95,94,103,94,109,114,104,104,107,98,106,102,106,112,107,102,103,111,114,104,100,103,91,103,97,110,98,100,96,98,100,102,128,105,99,78,112,99,92,95,97,94,96,108,101,113,103,108,98,121,116,91,104,111,96,89,108,77,98,102,101,91,105,113,96,101,90,102,105,105,114,101,106,89,109,104,112,106,101,94,123,95,101,96,108,96,99,112,113,110,101,118,107,115,103,91,102,80,103,104,101,88,107,97,100,102,89,100,111,111,100,109,97,110,105,108,112,119,101,120,113,113,106,94,95,109,96,109,104,103,98,101,95,112,84,98,96,97,108,104,111,100,102,94,90,104,102,108,100,104,111,106,103,105,109,112,110,94,115,100,113,103,124,112,110,104,101,98,94,89,113,104,102,104,89,114,109,103,122,98,89,105,102,100,105,94,124,103,103,103,99,91,80,112,112,99,110,96,100,109,103,100,91,112,96,113,123,108,99,108,108,97,92,111,100,109,101,99,108,92,104,108,103,100,101,107,102,102,99,104,95,101,111,101,83,100,95,91,100,100,110,108,109,93,100,92,105,110,100,102,98,103,102,96,98,105,105,106,97,103,93,91,97,101,127,111,106,104,95,102,103,112,92,100,105,114,94,103,98,99,105,99,98,103,101,94,92,109,101,99,98,95,108,97,92,116,96,113,94,95,99,95,100,95,103,103,94,105,113,99,95,95,87,100,103,104,107,87,98,109,82,109,106,92,91,106,95,119,110,81,105,98,95,108,90,94,97,108,85,107,90,103,106,113,108,102,116,102,91,102,114,99,104,96,109,93,101,105,97,93,99,98,102,97,113,84,96,114,106,102,98,101,97,105,110,116,99,105,92,97,89,100,109,104,92,98,101,108,100,99,98,99,93,109,110,98,95,119,100,95,122,99,109,109,96,101,116,112,102,102,94,97,94,117,101,105,119,98,95,125,103,104,115,107,105,101,111,98,103,106,103,109,93,100,105,99,94,92,95,103,97,98,99,95,114,95,114,89,90,108,102,103,93,73,96,95,97,110,88,105,103,85,98,98, +667.91528,109,100,118,66,83,102,107,85,91,105,113,104,100,97,93,96,87,102,103,98,96,104,87,113,84,103,110,95,81,107,108,95,110,105,99,113,96,89,99,95,96,96,102,84,101,109,84,93,98,91,101,109,101,97,97,86,94,98,104,116,103,108,98,81,96,109,123,106,91,89,89,109,105,101,97,108,67,119,100,87,97,105,107,86,100,95,103,127,96,95,108,75,98,112,100,103,98,97,100,99,99,100,100,77,76,84,94,107,101,97,98,100,113,94,99,103,105,89,134,108,107,104,98,97,88,103,103,83,110,115,92,101,90,105,100,106,101,101,105,92,91,104,89,100,91,88,103,96,93,108,80,110,115,87,101,83,92,101,97,100,97,92,121,96,118,96,96,103,99,79,96,95,109,88,114,81,100,81,98,101,98,103,88,88,96,99,97,94,107,91,92,91,85,92,102,102,100,88,93,96,99,105,92,97,95,102,99,103,100,103,104,91,124,94,109,104,104,86,90,94,101,90,119,94,106,110,100,98,94,99,89,93,109,115,93,121,92,107,113,96,100,106,99,99,102,98,98,116,102,109,110,98,100,116,103,102,99,111,102,102,96,107,109,112,94,103,114,103,101,89,85,95,105,96,95,109,100,95,79,99,105,98,101,101,89,95,94,106,92,92,102,107,88,93,103,107,106,97,103,105,96,98,97,101,93,106,108,104,101,94,96,98,104,97,100,110,87,93,103,105,106,115,102,110,109,102,110,104,107,106,101,80,95,83,102,106,97,101,101,100,110,99,89,91,112,109,100,98,101,114,110,90,94,109,116,118,96,103,102,112,96,98,117,92,106,97,105,98,105,105,102,114,121,101,99,105,95,97,100,101,102,101,94,96,124,96,91,112,105,101,107,101,95,102,88,96,96,106,95,104,101,90,104,104,90,95,82,106,100,95,88,94,101,106,92,97,104,92,120,96,116,102,100,99,105,97,93,94,118,93,93,95,97,94,89,101,95,107,93,94,93,98,101,96,98,105,103,100,94,95,94,100,99,110,101,91,100,110,86,84,101,102,110,107,114,115,98,93,99,97,98,92,103,104,91,96,95,117,94,99,103,110,102,92,101,100,102,99,100,88,99,109,95,102,98,96,96,100,107,105,94,92,103,97,112,99,99,95,102,99,111,95,104,104,103,102,89,91,100,100,105,99,107,106,100,109,104,104,95,115,93,101,98,95,104,103,104,87,104,95,105,108,95,105,97,94,101,102,100,91,99,106,102,94,103,101,105,101,96,96,95,87,95,114,92,106,108,111,102,97,82,97,93,92,98,99,107,90,97,101,101,97,92,101,100,107,107,102,109,99,96,109,108,109,108,92,93,101,108,110,92,99,103,113,91,106,110,99,89,111,106,100,111,106,93,91,95,103,110,101,105,102,98,91,100,107,91,99,107,94,103,82,100,98,92,110,94,111,109,113,104,95,96,97,101,97,99,110,113,109,104,97,106,99,96,96,108,75,114,104,106,96,75,102,87,105,103,105,113,105,108,100,91,101,88,105,104,106,115,100,94,103,94,97,95,111,80,93,114,99,99,101,92,89,100,98,100,121,106,83,108,100,99,100,108,98,116,113,87,96,95,96,108,107,89,101,98,100,116,95,109,94,102,102,92,88,90,99,108,110,83,104,104,97,96,103,97,94,113,104,114,86,101,94,102,107,95,101,103,115,102,93,82,107,102,101,98,109,95,75,98,99,96,91,96,105,95,105,102,96,98,90,96,100,108,112,111,82,93,95,99,99,110,98,96,104,90,111,95,101,101,103,107,95,93,99,103,97,106,103,123,101,106,84,112,98,99,108,98,101,108,94,103,95,102,106,93,101,101,98,97,104,99,120,98,85,107,104,100,102,112,94,106,97,106,110,97,106,103,95,90,103,90,110,105,92,98,108,102,106,101,81,102,114,83,86,118,104,95,97,91,94,88,105,101,104,94,97,106,100,99,103,90,96,85,103,95,96,101,95,98,97,97,99,91,102,95,97,100,99,94,108,105,100,97,95,92,110,85,98,113,105,104,111,99,90,89,99,91,100,104,110,100,108,102,105,106,104,103,109,99,102,114,96,106,99,96,105,95,100,94,94,106,98,91,106,108,102,102,111,99,112,89,87,114,124,113,106,99,109,103,117,96,94,102,104,104,83,102,97,107,99,102,93,108,103,97,92,95,102,90,93,95,96,95,90,106,98,86,91,100,92,96,97,105,91,109,84,104,97,97,93,92,107,94,97,103,96,95,92,100,104,103,91,106,96,94,115,96,100,84,102,106,101,101,101,82,111,102,96,104,100,105,101,107,96,96,96,101,96,107,110,100,78,107,73,86,103,105,103,92,94,98,106,124,105,105,95,100,89,93,102,122,99,94,102,94,103,92,110,100,101,110,97,110,91,88,100,104,102,91,117,105,100,90,96,99,96,83,101,110,105,102,116,110,107,108,103,121,109,103,113,105,113,105,101,115,113,107,121,97,106,104,87,101,102,102,101,108,112,112,111,112,108,103,120,105,103,95,112,113,107,108,100,109,109,99,112,114,117,103,115,110,101,101,108,99,114,109,101,101,101,90,101,103,87,118,106,110,107,113,99,112,104,112,110,95,117,112,107,98,106,104,92,100,108,115,104,100,106,99,110,109,98,110,109,98,107,104,108,103,100,92,95,116,102,113,109,89,103,102,106,121,91,111,112,104,98,113,103,109,110,114,107,107,106,101,122,121,113,108,105,104,106,102,109,104,100,119,101,105,109,109,102,111,106,113,113,83,136,112,110,114,108,95,109,114,103,108,99,109,93,133,105,94,98,104,101,93,105,98,105,126,110,107,97,110,95,109,112,115,106,104,105,112,109,92,107,97,102,113,101,87,108,96,98,101,103,105,115,94,109,101,109,108,112,107,111,113,99,107,100,101,109,110,117,105,99,127,99,97,107,109,108,108,103,106,121,101,91,103,115,124,109,112,112,112,107,106,110,116,109,114,113,108,99,90,108,90,95,98,109,99,109,110,113,113,110,113,109,105,106,104,109,117,111,109,108,102,110,101,113,105,105,103,104,96,115,107,95,110,119,105,100,99,104,107,112,106,106,108,112,105,110,121,110,100,107,103,103,107,106,110,112,106,96,106,105,104,91,104,96,107,117,117,94,106,107,119,107,109,85,93,112,114,104,112,112,94,111,108,96,92,105,102,95,109,106,99,105,110,105,110,110,98,112,112,103,113,96,111,107,107,110,113,107,104,108,96,101,95,101,109,102,100,113,107,100,102,110,111,94,107,110,113,115,109,105,105,108,106,98,97,110,101,106,112,96,113,102,99,104,112,101,101,107,96,114,92,96,104,130,110,101,106,112,110,102,120,99,109,101,100,109,105,98,102,105,95,104,94,95,120,109,105,70,104,107,107,112,106,113,109,112,105,105,109,91,95,104,112,95,97,106,107,99,95,104,101,99,110,102,125,101,116,116,108,103,106,99,97,114,108,110,102,106,102,109,112,98,101,120,104,99,99,104,113,109,103,106,107,102,100,108,114,104,104,101,102,115,108,97,108,96,92,104,100,98,111,91,103,102,120,114,105,110,102,107,99,109,100,106,98,121,108,97,95,99,95,110,109,104,103,117,107,106,102,109,112,106,91,109,100,102,91,105,104,101,107,105,107,95,77,93,101,110,102,103,100,98,99,112,125,99,105,105,102,108,101,104,99,104,103,105,94,99,105,95,95,97,113,96,94,100,103,102,108,108,95,89,92,87,106,98,112,101,106,101,121,110,101,95,120,111,107,97,103,112,101,110,107,103,99,101,98,102,109,106,93,109,98,110,105,95,101,96,101,88,103,95,100,101,108,94,106,104,95,117,96,116,110,100,104,105,96,111,105,107,116,102,108,113,97,102,109,103,104,95,112,96,101,91,113,107,102,82,104,101,117,101,110,106,98,105,96,104,91,90,107,96,99,109,90,105,109,98,118,106,100,107,106,99,87,109,111,90,99,119,98,112,94,109,101,98,96,100,110,106,106,107,106,104,103,107,101,116,103,91,105,116,103,90,100,103,109,106,106,111,106,101,101,114,105,109,106,114,104,122,100,102,102,96,108,113,99,96,102,83,103,103,102,101,91,114,118,109,102,118,95,120,115,90,89,100,125,109,115,102,100,102,112,102,111,108,101,111,102,96,105,112,109,100,110,110,112,85,104,107,101,108,100,110,106,95,87,103,125,118,109,99,93,102,139,98,101,130,100,97,113,96,92,90,106,109,102,101,103,99,96,98,105,117,101,109,107,110,103,102,106,105,118,106,112,102,113,95,109,103,109,110,116,103,75,108,107,111,106,106,107,105,92,102,103,118,96,111,110,105,103,100,104,83,109,103,106,101,120,111,108,111,99,95,97,113,100,103,94,98,100,109,106,94,108,101,114,104,97,108,83,102,117,103,110,101,109,105,93,101,106,109,103,114,86,121,124,111,111,92,108,104,108,109,111,112,110,107,108,106,97,99,99,102,103,98,89,107,105,115,117,115,94,99,99,101,113,101,113,103,106,81,92,113,106,97,112,87,96,96,104,103,99,106,81,113,103,82,113,106,113,105,67,86,99,101,113,100,111,107,93,95,105,107,104,102,91,94,106,124,97,105,96,103,117,99,105,101,98,102,117,104,116,103,111,113,115,83,109,116,83,99,101,102,104,96,105,94,120,105,102,103,107,103,98,96,100,106,110,92,106,101,116,101,100,87,101,107,109,103,91,113,98,103,91,97,104,100,113,87,113,104,103,109,99,120,105,104,98,109,103,97,106,103,97,101,116,110,91,97,99,106,75,114,97,94,107,107,101,100,105,86,107,103,126,103,94,95,108,94,95,113,105,98,79,99,109,113,100,106,116,111, +668.05652,103,100,94,95,71,101,99,91,103,116,100,87,92,86,98,115,103,107,111,105,103,102,115,115,106,110,98,81,99,106,99,107,105,103,99,95,97,85,105,101,89,99,100,105,103,117,102,102,95,93,98,111,104,104,102,90,99,98,99,105,88,110,85,98,101,98,99,122,109,101,96,103,99,97,96,102,89,94,88,100,104,110,103,98,100,94,104,104,94,101,102,106,93,96,101,89,101,99,110,113,101,113,116,106,98,100,105,84,109,111,110,99,102,102,99,96,98,105,103,106,86,101,108,97,103,109,89,105,114,104,98,106,98,126,94,83,104,98,103,98,101,87,100,103,95,98,103,98,95,108,105,104,111,102,97,95,96,98,87,96,96,89,107,112,112,91,99,78,96,95,115,99,103,100,99,97,109,98,100,105,95,99,96,102,103,101,105,100,112,103,116,99,107,105,112,115,95,102,100,99,97,111,97,104,84,103,104,73,118,101,99,106,106,94,98,101,88,109,106,97,93,102,91,98,99,95,113,104,104,109,96,100,108,105,97,100,116,103,120,90,93,93,121,100,113,106,88,102,98,117,102,105,103,101,107,118,98,98,94,102,97,95,113,100,92,104,94,95,91,100,100,113,101,102,113,93,91,106,100,96,105,93,108,103,97,100,96,99,101,97,96,102,100,102,102,109,99,96,100,88,112,97,100,105,91,107,114,94,102,99,92,98,95,99,107,104,101,106,94,96,79,99,106,103,115,99,100,96,95,103,105,92,112,98,104,101,96,86,114,92,92,103,111,95,114,108,100,104,110,103,94,81,106,106,97,106,103,108,99,109,89,91,96,93,97,88,117,99,86,106,110,95,116,88,108,95,108,106,108,96,104,98,102,112,97,97,101,96,102,104,101,97,116,99,98,118,100,95,90,102,101,93,101,113,108,99,97,106,94,92,97,96,104,104,99,103,98,98,112,94,82,87,96,100,89,105,103,109,96,105,102,88,102,103,88,103,117,100,106,97,101,106,98,116,98,125,100,98,98,95,98,98,107,104,103,101,88,110,117,100,91,104,100,100,110,104,98,94,106,111,96,100,113,107,90,111,105,104,107,108,100,105,93,99,89,102,111,103,105,92,104,132,99,93,90,105,104,100,105,112,103,100,103,104,99,106,96,106,110,92,114,97,99,89,113,98,114,98,99,101,103,100,116,104,103,101,105,95,96,101,105,95,111,106,101,91,113,101,105,117,103,104,113,102,99,105,105,100,101,107,100,106,105,92,99,103,99,94,98,99,110,91,99,104,111,95,100,110,114,102,94,99,108,114,110,92,98,103,94,101,100,105,102,104,100,90,97,94,97,84,96,96,106,95,103,98,100,109,102,91,100,94,92,86,86,112,103,100,104,106,105,102,105,99,120,103,101,104,87,109,107,109,105,102,120,96,95,99,99,94,109,100,102,114,98,95,100,97,107,97,100,111,91,101,99,99,104,90,113,106,95,98,105,105,101,97,104,100,113,105,110,94,115,109,85,98,104,113,102,102,112,119,100,114,100,110,105,99,101,99,102,106,112,100,105,96,91,111,114,107,111,112,106,103,109,101,101,107,113,95,110,105,96,98,98,95,94,111,121,111,114,102,103,88,97,101,102,99,100,103,104,105,91,102,98,109,101,86,91,94,98,95,99,110,100,121,99,97,106,102,95,98,114,101,114,107,108,117,93,102,115,83,101,92,82,113,101,100,113,98,113,92,94,101,102,103,91,92,94,97,110,100,106,111,101,112,95,81,104,93,94,109,115,112,101,109,109,107,100,106,114,104,122,98,109,108,102,109,107,105,104,98,107,104,108,96,105,92,103,98,115,85,84,102,100,119,108,90,111,106,111,107,98,95,105,116,102,110,109,105,100,108,104,108,99,112,101,109,112,108,105,118,102,108,98,101,105,112,92,95,101,109,92,109,103,100,113,101,98,100,96,88,104,102,102,106,82,102,96,97,109,105,97,112,95,110,110,97,102,98,101,100,109,101,96,108,100,105,105,102,116,94,106,108,108,87,110,106,101,105,99,99,109,111,99,97,96,105,101,110,100,106,95,91,91,91,101,113,106,109,84,101,91,104,104,98,104,100,92,96,101,98,120,101,91,88,105,102,106,113,101,120,108,94,106,111,104,112,97,124,102,99,104,97,98,98,97,105,92,96,118,90,101,109,99,107,107,98,98,105,90,95,92,109,111,96,95,94,101,103,97,103,99,102,99,100,100,104,98,121,104,100,112,107,90,103,84,97,94,103,105,98,95,104,105,100,98,109,110,107,100,95,92,98,100,109,112,97,99,105,96,102,90,79,95,95,97,114,107,102,99,101,108,106,118,105,102,99,128,91,108,97,91,108,106,103,85,109,101,106,100,109,122,105,107,110,106,103,110,98,87,102,107,111,97,81,110,111,93,108,100,98,108,89,107,102,109,97,103,102,104,96,99,109,106,104,103,108,107,107,102,103,91,103,95,104,103,102,98,101,113,88,112,113,98,109,88,119,102,110,109,101,101,99,97,102,92,95,106,97,102,108,103,107,99,98,100,107,107,110,99,118,114,102,109,98,98,99,104,97,97,91,99,103,108,98,99,101,104,96,113,103,102,99,101,110,100,93,101,91,104,96,107,100,110,99,108,100,102,107,109,106,99,110,99,98,100,86,102,104,98,102,96,108,109,96,100,84,96,100,92,104,95,104,91,107,90,102,110,110,116,101,99,97,106,104,91,98,112,101,99,115,109,107,99,101,110,96,99,109,97,102,98,101,102,92,103,113,105,114,112,100,94,96,108,105,110,110,120,105,109,106,93,91,91,122,86,113,113,99,97,113,124,101,88,103,97,116,100,98,99,92,100,105,112,105,102,98,97,113,102,100,104,111,100,108,90,104,108,118,98,108,108,103,99,117,112,96,111,103,98,121,84,95,110,98,112,96,94,109,93,108,98,104,108,112,124,100,94,106,102,102,83,93,98,103,101,108,94,113,102,101,99,111,100,98,111,112,96,97,98,108,95,111,96,109,109,102,99,115,104,113,95,104,97,101,102,110,106,106,124,91,113,105,93,95,103,99,113,110,111,110,113,105,106,95,98,109,102,108,105,116,119,104,97,98,108,100,100,94,99,108,94,105,114,93,93,93,108,94,96,102,99,102,95,99,125,99,115,107,87,105,98,94,90,96,101,95,121,101,101,96,101,101,106,92,113,96,97,105,113,107,98,106,113,107,96,96,111,104,113,90,102,110,103,106,99,97,105,95,105,96,125,97,98,102,107,103,97,103,100,93,101,103,102,112,103,115,110,102,106,118,91,107,90,109,107,91,120,95,99,103,99,99,102,99,118,107,103,105,98,98,96,102,105,94,102,101,111,102,104,99,96,103,102,109,95,96,98,97,78,112,95,96,91,81,104,99,100,106,96,94,93,99,90,102,100,77,95,115,103,106,99,90,95,114,103,91,101,101,111,107,106,108,104,100,106,119,114,92,104,105,95,100,101,106,104,108,99,84,103,97,92,98,95,98,109,101,108,112,101,100,102,104,112,101,112,78,102,105,114,88,126,96,94,97,100,99,109,95,93,104,89,103,103,92,106,105,104,109,99,101,104,105,114,97,103,113,115,105,109,101,100,102,107,96,96,110,101,105,94,112,97,101,96,104,93,105,108,103,104,96,96,106,94,105,95,98,101,101,110,105,100,115,103,97,96,111,104,97,106,98,106,101,105,105,105,97,113,113,105,103,100,105,98,104,113,91,111,100,102,117,114,102,103,99,98,101,100,106,97,110,96,105,134,94,116,109,108,100,108,98,100,108,110,107,100,95,94,104,104,101,92,95,94,107,115,101,88,102,94,104,103,103,101,106,102,97,118,95,100,98,101,104,114,106,102,104,100,100,103,88,105,97,112,95,90,95,104,94,88,85,114,115,81,104,96,106,106,106,96,98,96,98,102,93,99,99,106,101,106,106,110,95,105,72,91,103,104,109,101,100,89,108,105,97,102,103,109,104,113,111,106,102,111,106,102,99,110,98,102,97,104,99,97,118,103,114,101,109,112,100,107,104,127,107,100,111,89,116,113,110,106,98,117,102,99,96,96,104,103,102,99,102,104,106,112,86,99,106,107,104,101,108,102,97,97,99,99,106,111,113,102,89,106,113,115,97,103,106,100,95,103,107,98,102,100,121,85,112,101,115,106,110,109,98,105,101,100,102,115,98,103,80,83,102,116,117,102,105,99,96,104,105,108,103,103,100,105,102,97,101,104,109,112,100,104,88,73,104,87,97,106,121,102,100,92,98,95,100,108,108,102,103,115,106,94,104,106,113,120,104,96,108,94,109,107,102,97,98,102,111,101,99,108,109,111,88,104,104,111,105,108,108,109,101,103,110,108,118,102,105,97,102,101,111,112,113,117,97,106,103,104,101,99,93,100,91,96,111,102,97,106,111,96,110,105,102,105,110,101,99,102,100,109,89,97,96,94,101,100,110,109,100,100,108,106,100,102,107,94,104,110,112,101,103,108,100,91,118,96,93,109,116,105,101,108,100,107,105,112,110,113,98,97,89,103,101,110,98,114,91,115,98,99,98,112,95,104,117,106,102,97,103,103,109,109,103,99,94,111,105,96,102,103,109,108,96,103,106,101,93,108,101,103,100,108,102,97,100,108,109,105,99,98,106,113,107,96,96,110,107,99,97,89,115,104,91,105,72,97,109,93,91,94,103,102,100,95,100,102,90,100,105,94,100,96,97,101,113,99,103,107,99,90,102,106,96,91,102,93,97,94,95,100,102,98,113,89,105,105,101,98,106,92,109,120,96,107,99,93,96,112,91,107,104,95,102,93,84,104,77,96,117,106,115,106,109,96,97,98,104,111,103,119,101,100,102,91,77, +668.19775,108,92,96,91,89,97,101,81,106,110,91,99,96,110,97,101,105,108,94,101,96,106,94,103,108,111,83,93,107,90,104,83,91,97,106,110,114,97,99,98,109,99,92,91,91,106,99,91,89,114,101,108,92,103,112,92,95,99,102,103,98,99,105,104,96,116,101,100,106,100,113,102,93,101,106,93,101,99,113,95,101,115,112,90,103,99,100,110,103,104,92,99,106,90,90,101,101,99,124,90,94,101,95,104,94,95,91,96,92,98,108,91,112,111,107,93,108,107,106,97,110,71,105,108,103,104,108,87,116,95,91,102,102,84,91,111,102,108,97,101,97,98,97,91,91,101,99,105,95,98,111,96,108,101,105,94,100,105,104,101,92,100,102,102,105,105,102,99,106,95,100,107,103,117,97,79,118,93,108,99,99,98,100,104,90,95,96,96,109,99,104,94,91,100,84,104,103,109,101,99,100,95,94,103,90,112,103,104,100,97,94,104,89,104,108,106,99,98,91,98,96,99,119,95,91,103,100,95,104,90,96,103,107,101,90,107,88,117,98,91,106,86,106,100,88,72,92,102,97,97,99,99,68,91,108,99,111,98,97,106,94,96,90,92,98,102,103,96,103,89,102,105,104,99,97,104,113,92,91,105,98,104,109,96,115,106,96,104,100,104,101,99,100,94,84,120,116,105,102,101,106,95,100,109,90,105,92,96,104,99,110,112,100,103,107,101,91,95,101,103,103,102,111,103,101,99,98,99,104,100,108,99,92,97,86,105,101,87,100,94,89,90,101,96,96,98,98,113,108,97,103,105,95,107,108,97,104,109,114,104,92,99,88,84,82,90,87,103,102,108,102,99,101,106,91,99,93,102,103,108,93,96,99,103,95,96,109,102,114,90,95,88,85,103,102,143,110,98,102,106,97,96,101,98,95,101,99,103,93,107,100,95,94,112,97,109,104,108,77,95,89,103,102,95,98,97,86,86,106,97,100,98,98,93,92,86,105,104,102,104,100,110,89,98,105,113,98,90,97,99,102,94,102,95,100,97,89,101,120,102,94,106,108,97,96,110,111,104,86,91,102,103,103,94,98,98,102,105,105,105,108,109,105,102,104,102,108,78,109,107,97,107,106,103,93,109,104,106,91,89,103,110,105,105,107,111,99,101,86,109,106,111,86,93,93,96,92,72,97,100,100,107,101,103,100,100,108,87,99,112,106,98,95,109,87,100,113,121,93,97,85,98,100,91,97,96,98,104,110,104,102,99,94,98,109,101,98,82,108,98,93,94,93,110,100,98,99,94,106,100,101,95,96,100,103,106,97,96,94,115,101,93,94,97,113,98,110,92,96,90,101,99,100,95,99,106,100,105,105,103,94,103,104,102,96,108,105,79,78,96,103,100,101,118,91,101,94,95,114,99,102,130,93,105,103,102,91,97,95,118,92,94,93,119,94,102,101,96,107,99,100,105,94,94,102,88,92,78,108,99,97,103,106,105,107,104,96,108,100,107,95,107,100,103,90,109,101,100,97,97,99,97,93,92,98,97,100,97,97,98,94,96,99,93,101,97,94,95,92,98,101,97,96,99,104,100,101,109,118,91,99,93,93,104,112,99,99,106,92,90,105,98,91,103,94,99,110,95,104,94,98,102,109,102,103,97,94,95,101,101,97,106,97,96,108,90,107,94,109,95,111,96,99,92,108,95,114,92,95,102,100,92,104,91,105,100,96,97,105,91,95,100,95,96,93,111,94,90,97,105,114,113,101,104,95,100,97,109,100,89,101,105,90,113,91,94,100,99,107,100,112,109,106,102,100,90,100,102,93,109,93,92,101,94,97,101,106,114,97,95,105,101,96,93,101,105,92,107,104,96,106,101,105,100,101,100,108,108,98,102,104,106,113,103,91,98,111,112,93,101,93,103,110,95,89,84,102,101,101,94,87,101,95,91,89,105,98,98,105,112,95,94,97,86,112,92,84,104,99,95,101,98,113,107,122,101,103,91,97,105,91,107,101,99,108,96,103,92,84,84,97,95,91,100,116,108,95,115,102,110,97,100,108,96,103,99,91,97,104,97,102,120,91,94,125,93,98,97,104,104,87,105,94,101,106,96,122,96,100,95,95,108,91,108,91,95,96,125,94,94,100,81,95,110,105,95,110,109,100,104,107,97,102,95,112,86,94,109,94,106,119,114,97,98,95,111,95,112,105,99,88,99,103,96,94,100,101,101,97,108,95,105,93,98,108,100,98,101,95,101,106,96,106,98,109,118,97,109,99,100,101,101,100,90,105,102,103,102,109,102,96,97,85,119,100,109,103,106,90,100,104,101,93,101,104,106,107,90,91,100,76,99,102,88,99,94,95,111,106,102,108,110,106,94,98,107,115,101,107,93,109,92,119,105,102,92,106,104,102,105,96,105,109,104,90,82,107,106,93,100,106,97,106,96,103,97,101,94,85,92,91,98,95,106,98,107,112,89,116,110,106,111,106,99,102,99,107,106,109,106,97,93,107,103,87,99,128,106,127,110,106,105,103,104,109,102,100,107,104,108,104,104,94,93,100,96,102,104,107,102,102,67,102,81,109,105,90,105,98,99,105,104,88,104,112,96,106,103,95,99,102,93,107,103,106,94,96,113,104,104,103,98,71,104,113,105,94,101,100,97,108,116,117,110,96,95,103,98,103,107,111,113,100,104,106,108,102,133,117,104,104,104,96,106,108,94,94,105,101,106,90,106,105,111,102,105,96,106,105,96,113,101,96,103,92,101,96,112,105,98,103,112,102,105,101,117,107,104,96,114,105,108,96,113,101,94,108,114,88,103,97,101,121,98,109,109,92,104,101,117,105,107,97,118,102,95,120,110,97,105,95,107,94,90,105,93,106,113,102,113,110,97,95,102,114,94,101,102,113,103,106,103,95,108,93,108,87,111,108,136,105,107,98,92,103,100,104,91,107,102,113,105,91,112,108,113,123,109,108,96,93,97,113,99,86,96,108,104,115,112,93,105,109,91,98,107,95,98,106,97,104,98,100,103,110,103,124,95,100,79,109,107,106,88,103,99,111,104,107,97,94,99,103,113,104,100,95,124,112,105,106,105,113,96,107,105,105,105,121,104,120,105,98,105,105,112,106,115,101,100,106,105,101,94,95,114,96,100,95,95,101,88,108,105,102,104,105,96,77,103,107,96,101,106,106,104,108,98,99,74,100,112,95,79,102,102,96,116,93,111,98,98,108,94,102,109,99,90,94,105,106,110,103,107,108,98,101,107,95,102,92,99,100,108,95,120,116,102,102,90,105,87,111,94,95,110,95,98,112,103,97,103,101,103,94,108,102,105,104,108,118,107,91,92,101,105,117,94,106,113,95,108,91,104,108,101,97,114,109,102,98,113,102,111,102,115,111,82,110,99,79,100,113,110,109,93,108,109,106,109,105,99,106,98,101,116,109,106,101,112,102,106,101,105,87,99,102,113,89,106,116,108,109,94,106,99,104,96,90,93,105,102,106,102,101,108,99,104,102,101,96,103,103,109,98,112,115,109,99,95,103,90,109,110,108,120,102,99,99,109,108,108,96,105,108,88,112,105,103,103,98,106,96,107,99,90,102,77,93,83,95,102,106,104,117,117,98,108,100,93,89,95,101,113,97,92,111,104,100,98,94,104,108,100,100,96,104,93,109,106,107,94,104,126,113,99,86,108,102,96,106,106,107,113,99,93,103,96,113,88,100,100,97,98,102,109,110,117,106,110,110,103,98,92,104,112,121,104,99,112,103,88,111,92,102,94,100,109,100,119,102,97,111,109,103,95,95,103,91,101,131,94,110,100,102,102,96,110,100,103,107,113,107,109,116,93,103,97,98,103,102,107,100,108,104,108,95,96,95,102,105,114,96,90,91,109,95,103,107,106,103,86,101,98,104,80,105,100,103,103,101,98,108,102,90,92,88,75,95,101,110,113,93,104,92,124,106,96,94,95,93,110,109,108,99,109,103,100,105,106,101,92,109,100,107,105,95,88,104,104,106,92,105,100,105,115,106,89,114,103,106,108,96,104,104,108,100,108,106,102,107,95,110,105,101,89,106,102,101,105,99,69,108,113,94,107,114,98,102,98,107,110,98,107,108,112,88,97,106,107,104,95,98,117,99,105,112,99,104,108,110,98,99,76,110,105,107,95,106,87,102,103,101,104,109,109,97,106,104,113,112,101,125,99,109,112,104,105,108,95,104,92,105,97,98,108,110,106,108,96,101,101,113,108,104,96,102,102,104,102,108,106,116,106,104,94,100,97,98,115,95,95,92,98,109,110,97,116,91,103,105,111,102,99,106,110,103,104,109,105,111,109,106,109,91,105,108,104,104,106,100,106,111,102,91,95,101,108,99,122,96,109,117,108,98,102,107,88,102,99,103,84,99,106,95,124,97,97,104,101,106,92,110,97,94,91,90,101,103,114,110,103,105,87,115,110,105,108,104,103,79,95,84,104,103,101,107,111,100,104,92,98,105,104,102,109,98,117,105,95,95,129,101,107,108,110,110,117,106,101,107,84,102,112,93,101,111,96,98,107,95,102,112,100,117,99,106,98,105,95,101,107,103,106,117,105,106,101,103,104,118,106,106,111,97,108,110,106,99,113,107,99,106,100,94,96,120,109,96,109,103,100,105,102,103,120,108,114,107,95,111,113,112,110,104,96,118,109,103,102,107,105,103,100,97,99,81,105,75,93,98,106,101,93,103,92,112,100,101,110,120,109,100,99,110,100,101,93,71,107,95,111,105,101,87,108,102,109,117,117,112,102,103,97,96,108,97,107,99,116,104,98,109,107,96,100,95,106,96,83,106,104,86,100,124,105,99,114,105,101,102,95,86,109,105,102,98,112,112,75,116,99,103,95,88,92,104,94,92,84, +668.33905,95,91,99,106,86,107,100,111,93,108,112,93,87,107,89,104,90,96,106,94,116,100,93,112,100,103,95,96,105,99,109,92,99,100,113,93,101,89,97,100,108,105,108,99,109,94,99,97,100,72,87,97,103,98,97,98,102,105,101,100,94,110,92,94,105,114,98,102,116,95,102,96,95,107,85,104,90,96,101,100,96,114,87,106,97,92,101,99,96,103,100,93,106,101,94,93,100,101,95,75,107,100,103,95,102,103,93,98,112,98,111,78,107,95,100,105,95,106,107,96,94,94,98,102,94,96,107,105,99,91,100,102,100,108,109,100,94,113,102,108,102,99,95,109,95,100,102,104,102,104,109,97,90,89,101,102,91,93,107,105,95,120,103,99,86,93,89,105,106,97,108,99,96,101,99,100,84,107,100,89,110,94,94,75,100,115,103,89,94,97,102,100,100,101,104,105,103,105,103,103,113,105,106,108,109,106,98,94,97,94,106,107,106,100,108,95,99,114,96,103,99,92,88,89,98,111,105,103,64,90,109,104,96,117,95,99,97,109,105,92,93,90,104,104,89,109,98,100,89,108,95,106,95,96,103,105,99,96,99,98,83,83,77,93,105,67,104,107,80,100,101,95,107,108,94,120,93,82,111,104,100,104,110,110,103,97,91,89,104,107,102,102,88,95,102,103,94,101,105,92,95,105,104,93,106,99,95,120,100,118,94,113,97,103,92,101,101,101,83,95,91,102,109,106,98,95,94,96,104,100,99,100,107,92,98,101,114,106,102,106,94,102,99,85,87,118,112,114,95,96,105,82,104,107,95,110,101,116,102,97,84,113,103,96,100,107,95,106,95,94,110,98,117,97,98,105,96,101,99,95,104,99,95,101,93,94,117,101,99,118,109,83,91,104,98,92,112,102,83,100,106,111,105,102,99,99,91,96,91,113,93,87,119,113,101,106,99,108,97,98,97,84,99,100,115,89,94,86,96,107,97,110,97,120,99,102,90,114,93,111,106,92,101,98,86,104,104,87,105,84,102,102,121,101,98,98,106,102,99,93,108,116,105,102,93,104,107,100,93,92,100,111,99,104,108,89,97,108,111,105,97,109,105,92,92,98,107,104,94,95,100,104,100,79,102,98,108,90,95,75,95,127,97,97,95,97,105,104,101,97,105,102,107,111,93,104,96,94,94,105,103,89,90,86,93,92,103,101,105,92,103,108,103,97,106,104,110,105,108,85,97,104,96,92,90,100,116,100,96,95,104,100,107,102,95,95,92,94,98,103,104,110,107,99,100,100,105,101,97,102,107,96,95,111,115,100,108,99,103,104,91,101,101,99,96,104,109,97,101,95,96,100,99,106,104,116,94,95,103,84,80,112,100,89,98,100,95,102,104,113,96,69,98,103,106,100,89,96,102,100,106,106,109,90,100,97,107,95,108,98,101,100,100,99,106,99,104,94,113,103,110,105,101,105,82,100,91,95,93,103,96,106,100,104,101,98,101,89,103,102,101,101,101,103,91,99,101,106,106,99,103,91,104,99,106,104,101,100,99,91,103,96,98,82,91,91,98,93,99,95,107,101,95,110,109,99,112,104,85,85,85,108,91,105,105,100,117,101,97,95,108,100,103,93,96,101,109,102,96,92,97,89,87,98,86,93,102,103,110,108,93,102,91,94,97,100,82,105,102,97,100,95,99,107,100,92,104,90,101,73,103,97,102,91,87,95,116,106,106,108,92,96,84,99,95,110,99,90,90,86,101,106,108,95,108,96,97,98,109,101,99,105,94,104,91,99,95,97,98,99,102,101,89,96,83,85,107,96,96,99,103,103,96,98,102,117,90,93,99,102,92,111,104,98,93,101,104,106,95,112,95,99,116,101,103,116,113,86,111,100,94,105,104,113,95,87,109,95,110,93,91,105,110,105,102,95,86,91,97,100,96,100,104,103,92,100,109,99,99,99,106,89,96,105,98,94,96,113,121,111,89,112,108,106,100,107,105,96,103,91,102,115,99,101,95,95,98,96,99,101,117,108,97,100,109,88,105,116,101,104,100,112,98,99,96,111,91,71,87,94,108,99,102,114,106,87,98,112,113,109,99,97,95,104,122,95,110,103,95,102,105,113,97,108,105,85,96,102,102,92,90,98,96,103,93,106,111,106,102,105,103,93,96,101,106,102,101,93,104,95,112,103,96,95,106,99,90,95,87,104,93,92,101,105,95,91,102,95,86,101,91,108,102,102,109,103,83,106,102,94,105,103,96,100,92,107,104,113,88,107,103,94,109,95,101,102,98,105,98,99,87,103,96,114,101,105,88,102,106,100,92,90,119,102,108,92,108,105,102,120,95,96,118,114,103,100,99,100,100,100,99,106,88,103,109,102,95,108,93,103,95,106,112,85,94,107,90,103,98,109,89,104,94,106,105,102,95,95,99,97,105,96,102,100,109,88,94,92,100,100,106,107,88,109,110,109,97,93,106,115,106,103,104,96,106,105,113,102,100,103,108,103,115,100,91,95,100,98,145,106,111,117,97,99,98,104,109,108,95,103,97,101,105,95,105,111,104,99,108,112,101,97,101,102,116,99,117,94,93,97,95,92,92,104,104,112,96,107,102,108,104,99,104,107,104,95,103,98,108,112,100,93,95,103,106,114,95,94,94,98,103,110,109,100,86,79,113,98,106,100,108,112,110,100,96,103,113,118,96,103,99,111,108,100,104,106,102,98,109,100,113,100,108,101,94,102,114,105,95,97,103,99,100,107,112,103,105,116,102,113,101,112,103,109,106,110,93,99,103,110,103,107,99,113,96,106,99,96,103,107,110,102,100,94,103,106,108,91,95,108,105,104,112,105,88,92,98,105,98,104,103,97,92,105,106,109,104,102,103,103,96,119,110,116,110,102,114,113,108,103,106,113,105,116,109,101,94,96,106,94,93,110,102,100,113,105,109,88,101,114,101,101,106,113,97,101,109,110,106,121,93,116,102,110,114,102,95,108,109,103,117,98,103,109,112,96,106,96,108,102,101,93,98,98,102,104,100,95,99,110,109,108,95,109,105,105,107,91,115,104,92,113,102,93,97,109,105,110,119,104,112,100,106,114,97,94,98,104,97,102,74,87,120,108,104,102,110,111,104,107,95,92,97,89,99,107,95,105,100,100,100,95,103,112,95,105,100,109,107,108,117,94,68,99,98,104,106,138,106,90,94,95,115,107,106,108,108,95,106,107,102,96,99,102,106,107,109,100,100,103,103,126,96,116,105,118,94,104,90,117,97,103,99,102,96,99,119,113,104,108,112,104,97,104,102,103,102,103,117,125,100,110,104,100,106,121,105,99,97,107,104,108,107,96,100,108,81,102,109,103,99,104,108,106,103,104,99,100,97,96,96,107,84,88,95,102,107,108,106,110,102,100,98,98,117,104,67,102,100,101,101,98,88,99,96,106,106,100,102,96,110,103,110,89,99,111,104,96,83,101,105,107,91,96,96,107,115,102,109,100,107,94,110,115,101,105,101,112,94,99,97,107,92,100,93,97,98,116,94,113,110,101,99,96,124,109,98,113,115,110,107,101,119,103,104,96,98,102,110,98,86,101,98,96,102,104,103,109,109,106,98,104,113,112,108,97,116,99,104,101,95,102,118,98,100,113,97,101,109,119,65,95,100,94,90,101,105,107,109,103,111,105,103,106,91,95,85,96,110,91,93,100,103,106,94,99,104,100,103,98,101,102,98,105,104,108,100,96,101,104,100,94,100,96,94,105,103,103,97,94,113,87,102,109,103,100,108,97,98,106,101,114,92,103,107,100,92,113,113,87,101,94,91,94,100,109,88,117,96,116,98,96,99,106,101,87,105,99,99,107,91,113,102,103,109,114,141,105,109,105,101,103,101,102,103,96,94,107,104,99,100,95,91,110,88,102,95,103,106,114,107,104,115,95,106,93,92,97,108,110,117,85,102,109,98,116,96,96,95,104,87,111,96,90,100,91,92,108,92,99,108,100,85,91,113,96,101,98,91,102,110,97,103,110,91,98,98,106,111,106,101,109,100,102,105,115,109,107,120,104,116,96,103,77,100,94,107,92,87,94,107,103,97,109,99,107,109,114,101,103,104,100,128,109,101,115,92,93,81,111,105,101,106,109,110,109,108,93,103,101,106,107,94,92,97,108,104,109,103,95,119,97,118,99,107,119,109,105,103,110,101,107,93,115,98,118,107,100,101,101,112,111,112,103,94,105,100,113,99,103,93,114,104,102,103,106,101,98,101,98,112,95,122,97,108,101,114,85,93,87,90,111,110,98,100,102,110,99,103,109,97,85,90,111,109,91,113,108,90,106,94,91,101,104,100,117,108,91,107,111,109,99,109,105,101,92,105,102,99,90,93,106,95,105,105,100,95,107,106,86,87,98,98,101,118,104,99,101,102,102,104,94,91,101,92,95,99,98,105,101,100,92,89,115,96,110,106,105,117,111,104,117,101,121,100,97,96,103,101,97,99,100,91,112,103,98,99,104,87,110,86,94,113,100,112,120,116,93,110,98,102,117,96,109,101,96,108,97,94,92,102,115,101,101,93,96,93,94,102,74,100,88,101,73,106,96,103,103,105,124,101,110,96,101,110,113,104,103,115,102,98,111,104,99,108,97,109,117,102,107,103,94,105,102,102,108,113,100,97,103,98,108,100,102,99,108,117,99,109,110,98,101,100,95,101,96,107,103,97,101,98,119,100,96,117,108,103,98,120,76,109,94,105,101,111,107,85,106,65,95,102,108,87,114,102,104,117,105,100,106,106,94,111,98,102,91,108,92,96,92,111,94,98,102,110,103,91,86,93,100,77,106,87,116,96,93,88,109,106,108,103,92,100,104,105,115,96,112,100,98,106,121,96,98,102,109,109,105,94,88, +668.48029,95,98,101,103,105,116,104,99,109,106,91,104,98,101,120,97,93,121,105,104,118,98,101,100,99,105,105,92,104,85,102,100,92,89,117,129,101,104,100,110,77,72,99,105,107,103,104,96,97,103,84,102,98,100,114,97,103,105,117,91,110,115,96,135,114,103,104,97,106,94,93,106,92,103,117,108,96,99,99,104,105,107,102,102,101,95,100,101,108,106,118,84,91,95,102,88,93,89,106,107,107,100,93,98,94,108,100,93,91,98,102,100,98,96,108,96,90,100,105,101,106,103,100,94,112,105,102,109,107,100,104,102,94,105,109,96,110,106,101,104,101,101,97,109,100,105,104,101,83,94,96,114,105,107,105,94,106,97,102,92,98,101,99,103,113,108,87,85,82,105,97,101,120,100,107,112,106,95,109,101,100,106,105,98,94,92,102,93,81,104,97,98,104,106,101,99,117,96,88,93,94,92,102,103,103,103,100,101,102,92,82,110,103,109,103,105,105,102,116,87,94,87,104,96,96,101,102,109,102,106,98,103,107,103,94,96,102,108,107,91,107,98,94,89,87,91,93,102,100,104,109,92,98,99,102,100,97,98,111,98,99,114,99,114,97,103,96,102,107,116,102,104,106,103,104,94,92,101,105,109,106,103,104,107,101,117,98,97,105,94,104,112,111,105,137,101,109,103,114,101,105,105,101,104,102,104,98,109,107,103,105,102,102,121,104,119,84,103,99,109,100,98,112,103,105,113,102,100,101,101,107,96,106,112,102,104,104,107,115,94,85,98,107,98,102,106,98,92,114,105,97,108,108,113,90,105,102,105,106,90,98,93,114,105,102,93,100,112,91,101,102,99,115,91,96,93,108,101,113,86,97,118,108,89,104,101,96,97,113,94,121,102,81,116,118,101,106,94,91,94,113,98,100,102,117,96,97,112,104,105,95,97,107,90,112,101,98,109,104,100,103,87,101,92,97,88,110,106,102,107,114,106,87,104,94,110,109,103,97,98,105,115,91,98,112,104,94,95,87,108,90,98,101,101,113,100,93,96,102,103,106,106,110,105,106,105,112,97,99,92,98,100,104,106,98,105,97,115,95,107,94,104,100,102,101,106,98,107,105,109,105,113,101,104,91,101,97,109,83,95,108,109,100,116,97,109,96,92,103,99,101,108,103,71,95,101,95,95,96,102,98,105,96,104,95,101,110,108,92,101,107,90,101,104,103,99,96,103,105,100,88,114,103,91,113,101,98,101,122,98,106,104,87,106,100,88,98,90,97,97,103,109,108,95,99,95,100,113,95,97,92,103,114,106,113,94,92,106,99,100,109,112,107,95,101,94,95,102,102,97,92,104,102,99,104,126,101,112,100,103,98,108,93,109,103,115,96,91,102,78,108,106,105,101,104,111,99,100,90,96,110,102,92,97,116,111,100,119,96,106,106,94,97,117,94,101,109,103,120,104,107,100,105,101,102,93,102,91,102,105,105,113,90,108,100,113,102,98,111,107,116,109,102,109,98,104,95,109,100,99,109,100,101,90,102,104,106,104,96,105,111,95,103,108,96,95,106,115,110,113,99,124,110,119,102,106,107,101,93,100,108,100,92,94,107,104,101,105,94,111,104,102,92,100,90,96,91,99,99,98,75,111,100,102,104,93,102,92,112,99,107,109,99,105,105,94,103,103,101,97,107,102,105,102,94,108,82,113,96,99,110,105,111,105,100,102,91,112,103,95,119,105,96,98,88,100,105,98,109,100,117,103,105,94,115,105,112,104,98,87,108,105,98,109,108,93,110,109,99,110,103,95,105,106,98,105,110,94,100,88,99,106,101,98,105,105,98,105,100,99,112,112,97,97,99,92,114,107,117,103,85,120,100,114,104,113,110,101,117,102,107,97,112,101,95,97,101,106,108,117,103,104,118,88,112,98,94,108,105,102,107,109,100,64,100,88,110,103,103,105,96,99,108,94,95,97,105,103,108,109,100,106,103,103,106,109,101,99,99,91,100,108,99,105,107,102,99,105,102,105,103,107,104,105,98,99,108,105,91,98,100,105,99,86,99,88,80,104,106,96,98,102,116,106,101,112,106,100,98,98,104,111,111,101,111,102,110,98,106,100,104,110,101,103,96,105,103,109,106,106,97,93,116,103,100,116,105,112,106,119,100,105,106,109,91,98,103,107,82,107,108,109,100,97,104,100,103,114,108,104,94,108,105,99,94,102,88,93,120,97,96,97,100,114,110,110,105,100,104,104,113,102,110,98,109,109,91,96,96,95,115,101,102,99,95,106,112,91,100,109,102,100,97,92,99,108,96,102,102,113,109,100,108,100,110,114,104,117,103,91,98,123,102,102,109,102,100,108,110,106,98,98,98,117,91,104,108,113,113,95,100,105,100,97,94,102,86,114,82,95,98,112,113,99,102,102,92,109,107,86,89,108,106,103,105,104,109,105,95,91,95,79,104,113,97,124,99,100,100,100,103,102,99,91,98,93,108,88,96,106,92,95,97,100,98,112,96,96,106,110,92,111,105,113,134,84,117,105,86,98,91,107,102,104,95,95,98,94,93,106,91,105,103,105,96,97,87,107,103,96,100,91,89,94,100,98,95,100,99,103,105,95,108,100,95,99,102,102,106,102,104,95,96,91,113,105,102,105,97,97,106,91,101,106,102,104,100,102,105,100,98,100,95,103,113,111,111,104,101,94,94,90,105,94,102,101,102,97,97,106,101,98,109,113,105,104,105,104,103,104,105,96,101,108,101,93,114,104,99,94,100,110,102,101,101,105,101,91,105,99,104,99,109,106,104,106,102,107,100,93,99,92,113,87,105,105,105,91,103,101,94,100,93,96,102,96,95,107,100,111,92,94,98,112,108,85,91,108,102,102,104,103,112,95,95,101,96,102,105,103,95,108,108,103,95,99,84,104,110,106,111,105,107,105,96,107,99,103,109,94,94,97,103,102,102,119,101,104,115,118,103,104,102,104,108,109,99,94,94,95,106,116,97,84,98,124,99,94,103,99,98,99,105,97,95,96,111,97,102,98,97,113,126,100,96,108,104,102,108,104,94,107,97,97,102,95,103,104,106,104,103,112,106,102,109,100,105,93,101,105,103,100,95,108,108,96,102,102,101,94,99,105,99,106,103,97,101,94,107,131,92,90,94,108,112,91,103,98,106,105,108,94,107,111,113,99,102,102,108,100,113,112,100,103,105,102,105,103,106,101,109,95,102,102,110,105,99,92,98,93,106,102,97,116,94,110,104,98,104,107,98,93,98,106,97,100,106,102,99,108,96,91,108,98,104,99,108,99,98,85,95,119,96,99,95,102,94,107,102,91,92,113,100,94,78,105,99,108,107,100,123,99,110,109,106,96,107,110,96,102,94,106,106,100,107,98,98,96,103,99,102,98,101,102,102,96,119,89,71,112,92,104,118,109,105,103,96,103,101,95,95,105,97,105,99,97,95,97,96,96,99,106,97,98,103,88,103,105,98,87,113,106,87,109,103,99,104,106,106,91,98,97,108,104,105,103,101,101,100,107,94,113,105,98,110,108,106,99,95,124,110,113,105,104,100,108,96,96,113,108,113,100,101,100,99,108,101,102,87,98,95,103,107,111,105,95,107,98,109,87,103,106,104,105,118,70,110,113,102,109,102,113,99,109,90,95,87,110,97,100,104,121,94,104,108,108,101,95,103,109,109,98,109,96,103,107,100,105,101,94,101,105,106,105,99,97,129,101,101,90,94,104,93,89,87,99,113,98,112,91,100,105,105,97,103,90,102,92,107,105,110,108,93,100,96,88,111,108,95,100,95,101,102,105,91,101,95,102,91,101,100,117,108,90,111,100,111,104,101,101,91,101,95,107,98,122,103,94,96,105,84,103,106,105,100,92,93,104,104,98,100,100,104,99,83,97,101,98,105,100,91,102,99,98,89,113,100,98,100,108,84,104,91,98,105,97,117,109,91,95,103,100,102,96,103,100,103,105,105,103,104,105,97,109,105,101,103,97,121,107,106,93,97,94,103,104,90,100,103,108,103,98,101,101,102,102,98,103,130,98,109,93,103,101,105,102,91,103,97,97,108,113,96,100,105,107,102,98,106,99,104,91,99,101,91,99,104,116,106,93,90,104,94,102,100,109,106,93,103,103,102,109,96,100,96,92,101,101,87,91,98,92,100,90,109,109,99,99,102,93,99,95,98,93,101,84,102,100,117,108,113,102,107,107,103,103,96,105,92,93,100,100,105,95,91,101,101,95,95,96,113,95,107,102,109,101,82,101,97,71,97,93,93,102,102,106,111,104,102,104,100,98,97,105,99,114,101,95,93,96,108,104,99,100,99,116,111,98,102,107,105,103,104,95,99,107,106,95,104,92,101,97,112,106,95,94,113,112,117,88,109,108,99,109,95,104,92,103,99,103,92,98,91,95,105,92,108,101,101,99,98,112,112,99,106,113,100,94,106,100,95,88,104,95,99,100,90,108,106,98,85,106,104,113,107,84,110,113,100,95,93,98,101,104,104,110,102,105,102,93,100,104,106,106,95,93,109,117,94,109,99,107,95,87,91,95,95,98,85,85,100,93,109,99,101,96,107,100,85,79,93,98,102,101,111,98,102,105,101,101,100,115,117,98,110,90,95,109,95,97,115,84,100,114,92,103,95,111,94,96,90,108,99,98,98,109,100,105,88,95,108,108,105,99,108,119,94,101,101,93,102,106,101,102,89,94,106,87,99,102,97,82,99,104,100,91,101,103,102,97,107,102,112,93,115,95,107,116,78,106,99,94,109,81,82,98,96,104,77,118,99,91,113,94,101,94,87,98,97,94,99,111,93,98,91,112,84,100,104,96,97,104,108,96,108,109,105,96,96,94,100,118,108,114,104,124,110,95,91,108, +668.62152,90,84,98,102,98,100,90,104,100,102,94,94,101,114,88,92,104,113,102,101,90,105,94,97,108,102,108,118,106,99,94,98,93,93,101,117,97,83,110,108,89,86,92,98,109,83,108,105,98,115,102,105,108,101,97,98,94,89,107,95,107,107,89,97,101,133,99,107,89,102,103,95,100,83,92,97,87,104,107,98,99,99,103,96,102,93,101,125,107,79,91,120,87,102,100,110,110,101,93,89,95,100,99,98,101,102,109,100,84,82,96,105,120,91,111,112,100,97,91,101,102,103,105,102,86,110,97,88,106,135,99,97,109,116,103,100,88,93,105,90,82,98,86,116,94,101,92,92,91,88,105,106,108,97,99,85,97,95,107,76,108,107,100,107,101,80,100,93,111,94,98,107,97,108,103,85,101,95,103,103,100,94,102,94,100,92,92,94,104,105,104,100,98,102,94,106,99,108,94,78,99,98,86,99,87,107,90,106,111,103,106,97,105,107,105,96,104,101,96,97,89,108,95,95,102,95,99,95,95,113,95,97,104,95,98,105,93,101,96,99,91,101,94,108,94,104,100,108,99,113,95,101,101,98,96,99,101,104,100,109,92,112,101,83,95,100,99,103,88,96,102,103,94,106,104,102,102,114,96,103,105,103,96,94,99,106,99,103,94,112,104,85,129,104,117,98,111,101,98,98,101,100,94,101,105,102,109,103,97,104,105,97,114,99,101,97,116,98,112,98,99,87,90,103,106,92,100,99,107,102,98,97,99,96,119,106,101,92,91,107,105,112,99,103,105,109,109,101,100,95,73,123,105,108,111,99,113,101,110,95,110,101,109,95,107,93,101,111,112,105,101,95,112,94,98,115,111,103,101,107,107,91,103,94,102,92,96,108,105,100,98,97,103,95,93,90,106,100,103,103,113,114,88,109,86,96,112,105,112,96,106,99,97,101,93,100,98,103,101,112,98,105,108,99,114,104,98,95,98,103,91,87,95,101,109,93,92,108,103,108,103,102,91,103,120,104,103,98,107,102,100,102,108,105,102,106,99,98,108,121,105,96,102,100,102,106,107,103,120,106,105,115,103,98,97,105,112,102,96,105,98,105,103,113,89,90,100,101,90,108,99,94,94,97,90,110,101,95,98,95,95,88,112,103,93,96,102,101,102,96,91,93,108,110,105,88,101,78,99,120,105,96,99,117,110,108,105,95,96,112,92,94,93,96,111,103,112,105,98,95,99,110,120,108,104,93,107,100,98,110,93,107,93,111,99,96,116,112,105,105,90,102,88,103,98,109,100,105,107,96,88,114,101,95,106,132,97,105,100,95,103,96,124,100,111,105,117,90,109,103,102,110,95,104,102,117,101,100,108,98,94,114,103,103,95,105,98,110,97,102,90,98,104,86,99,89,101,106,117,100,104,119,115,88,99,101,96,95,109,100,104,111,98,109,109,105,109,95,106,122,106,117,73,101,101,101,96,105,108,99,91,110,96,98,98,96,103,101,94,97,104,113,104,99,100,98,103,100,102,97,102,104,101,92,101,109,110,103,105,110,115,110,100,93,106,99,105,94,102,108,103,114,84,108,103,108,101,106,105,90,92,105,81,102,102,102,108,92,115,96,100,100,99,91,93,112,102,95,95,98,98,94,95,96,105,98,93,93,100,101,100,102,95,123,95,90,118,106,98,108,101,89,94,99,108,96,105,101,99,114,95,94,101,103,96,97,106,92,105,92,100,121,104,90,102,89,99,108,93,90,112,94,103,100,92,105,105,101,103,100,97,110,113,97,114,104,93,98,109,98,102,112,99,101,98,108,104,114,93,97,99,111,95,105,105,106,114,105,115,106,86,101,77,96,107,113,95,104,111,96,108,112,102,97,93,97,77,78,98,108,95,95,105,103,98,92,88,101,106,95,94,99,109,102,91,103,106,106,106,101,95,104,92,111,104,95,118,106,107,98,105,100,117,94,103,104,99,106,116,105,104,98,98,101,100,114,112,101,95,97,105,95,101,102,94,96,94,112,104,102,106,101,109,92,108,97,103,100,96,112,98,100,98,97,102,101,106,104,102,98,114,95,101,114,120,76,87,95,99,100,112,103,98,85,107,95,101,80,96,89,101,95,87,93,99,97,101,99,104,95,101,107,114,105,106,104,103,90,94,105,106,107,114,100,117,103,87,100,95,126,103,106,94,99,115,102,104,98,82,91,102,100,108,98,90,97,98,90,82,102,98,93,105,106,104,108,100,78,105,111,104,107,100,88,101,93,102,105,104,101,107,83,105,98,99,88,73,92,101,112,98,103,89,112,98,109,92,109,93,97,105,99,98,110,80,95,102,110,103,95,99,92,103,88,88,100,100,103,93,99,109,97,98,98,95,86,121,109,89,98,90,112,105,103,121,97,117,103,118,95,94,107,102,104,96,93,94,98,107,103,95,109,91,94,102,103,110,105,103,98,96,108,96,121,104,107,106,95,106,83,116,106,105,102,99,97,91,101,113,106,107,107,109,98,98,123,102,97,102,113,91,111,90,97,106,103,104,102,104,103,111,96,106,96,89,106,98,87,92,91,90,105,112,92,106,105,108,96,97,96,133,100,85,98,107,109,97,98,108,95,106,101,112,90,110,103,108,113,102,103,123,97,99,109,109,96,103,97,112,95,113,100,99,109,106,100,113,115,98,105,102,97,95,101,109,95,111,111,108,104,100,103,95,99,99,107,95,88,98,102,95,106,113,99,102,110,116,111,107,100,122,104,97,91,103,109,101,106,125,97,102,102,107,110,104,97,101,108,102,109,102,99,100,101,104,95,116,108,106,113,120,102,99,88,108,120,105,102,105,103,108,100,107,110,104,108,106,98,101,100,102,106,95,103,111,104,80,116,91,103,116,94,112,115,102,101,102,97,96,95,96,110,109,112,97,105,109,105,103,96,98,127,101,101,100,83,100,117,100,110,100,105,107,111,105,109,93,113,98,75,96,112,113,100,109,108,97,104,112,101,106,121,98,105,112,102,101,90,102,92,103,102,111,103,109,88,94,99,110,85,88,106,104,96,102,97,95,99,120,92,89,82,103,99,103,98,94,99,105,103,103,100,102,100,111,96,118,113,105,84,109,101,103,102,109,99,113,92,107,111,120,104,95,105,109,87,103,111,105,95,90,94,107,117,110,109,103,94,97,99,119,104,100,72,102,109,110,95,111,103,106,102,102,107,95,101,111,102,106,103,101,101,94,97,106,89,113,105,100,106,107,102,106,99,97,102,88,107,96,100,103,91,102,107,105,104,104,101,103,93,118,94,116,106,98,104,103,104,74,107,97,89,107,109,103,112,103,102,95,90,81,101,106,113,96,88,100,106,125,99,108,98,94,95,99,105,96,98,97,95,116,92,91,96,94,101,107,94,111,103,93,101,100,96,106,100,102,98,96,92,102,108,89,96,90,106,98,102,101,104,108,97,105,128,100,95,106,100,102,87,104,109,96,103,94,116,106,99,104,95,96,100,111,111,103,97,111,105,106,91,111,102,97,99,107,102,104,102,95,96,100,90,105,103,113,90,105,104,99,101,113,95,104,109,98,102,136,97,99,94,106,102,92,90,83,98,104,109,105,107,89,80,116,100,102,112,105,102,102,95,100,100,106,109,108,105,108,108,117,106,96,102,114,106,99,102,117,105,104,102,98,98,103,104,104,103,103,99,107,92,109,101,108,111,98,108,93,103,103,101,98,105,100,91,108,106,102,113,109,99,104,102,97,110,105,104,104,98,100,96,112,96,79,100,97,110,99,112,101,104,101,105,106,104,105,112,118,100,105,109,124,98,111,109,87,100,102,105,99,110,90,104,92,109,98,99,110,99,106,96,92,109,108,100,103,108,100,99,100,106,105,105,108,106,106,100,96,100,94,106,84,100,108,107,97,95,102,98,107,99,103,109,111,113,74,102,103,92,113,105,99,102,99,106,100,95,102,101,96,96,95,102,95,98,100,109,106,113,100,106,96,89,101,106,100,108,98,107,98,97,113,105,96,105,105,101,110,96,100,122,111,106,93,98,91,113,92,100,100,93,109,96,95,101,100,114,106,100,97,97,102,102,109,108,108,104,107,108,91,109,107,104,98,109,98,104,105,104,113,100,102,94,95,107,93,103,99,113,98,105,111,99,106,124,114,107,98,95,103,99,110,104,106,102,98,107,95,98,107,110,111,104,109,106,103,119,95,106,103,109,114,104,104,107,105,103,106,109,109,90,94,112,116,106,94,83,102,93,95,101,91,91,102,101,99,99,95,95,92,107,101,100,107,89,110,111,107,98,107,115,105,99,103,90,102,98,98,102,110,102,108,105,103,105,93,100,109,113,95,100,117,96,110,101,98,102,115,109,111,88,85,105,96,109,107,108,103,109,112,101,103,90,116,105,85,123,88,97,104,95,111,101,101,95,99,112,98,101,111,107,101,102,100,88,89,97,97,95,102,104,96,97,104,107,105,113,109,75,105,105,102,104,109,104,93,100,97,87,98,97,99,99,101,102,92,85,97,117,106,111,102,102,108,111,100,102,99,101,106,113,101,95,105,93,95,106,99,104,104,93,102,100,97,104,108,98,109,113,107,115,76,102,103,111,102,110,111,109,108,99,76,102,98,103,100,92,117,102,102,102,102,109,101,117,103,88,102,101,62,98,101,100,87,102,101,102,94,112,101,113,97,122,94,98,95,93,95,116,87,98,98,102,90,110,98,97,112,94,92,94,101,86,104,111,102,110,88,98,98,100,94,110,116,108,99,113,115,103,104,94,102,115,90,103,114,103,89,100,88,111,106,98,103,99,95,103,101,106,114,99,110,117,102,102,86,72,95,107,99,97,103,103,110,97,108,93,101,112,99,96,97,103,98,90,102,110,105,91,111,96, +668.76276,106,107,92,87,92,93,97,88,98,101,99,100,90,103,106,98,94,105,124,99,100,97,87,110,106,113,92,105,111,117,114,90,96,95,101,108,96,91,105,103,88,116,95,121,101,100,99,100,104,109,95,105,98,101,98,107,103,99,113,114,102,106,96,75,105,104,105,99,102,98,104,92,102,101,94,103,102,104,116,99,129,97,98,82,101,101,104,95,91,105,107,96,95,90,92,103,102,97,110,88,96,98,107,113,95,112,88,100,99,104,116,107,97,109,98,113,109,105,105,96,109,106,96,108,91,100,71,95,98,110,106,102,99,97,106,105,105,109,105,105,98,94,111,103,93,103,109,108,101,103,122,103,105,108,103,95,97,100,96,108,101,84,107,96,102,101,131,98,100,113,96,102,98,101,96,112,102,94,119,94,105,101,99,96,86,78,95,89,99,94,100,114,96,105,103,107,99,105,100,109,100,102,105,90,91,100,102,108,103,85,83,105,102,99,112,101,91,83,118,101,112,101,106,100,87,109,104,104,100,101,115,100,106,111,100,109,88,97,100,96,103,101,102,109,99,111,105,101,97,102,103,102,106,99,91,95,107,101,101,120,103,104,88,101,90,103,101,96,105,95,104,101,89,103,107,100,86,94,91,101,102,92,100,96,104,104,99,102,95,102,100,96,93,93,104,104,114,104,104,105,97,95,104,103,82,104,118,96,100,105,116,104,96,104,98,101,103,126,105,106,108,106,104,103,104,98,101,93,105,107,107,96,103,100,94,112,98,104,96,113,90,105,104,102,97,103,106,105,99,106,113,104,112,92,96,92,94,101,105,100,96,109,102,110,99,102,107,110,94,90,111,102,113,96,96,97,96,95,108,96,100,112,95,116,89,96,100,101,96,92,101,102,90,92,94,99,96,104,104,113,92,105,100,98,101,93,90,102,101,98,94,107,109,93,101,90,97,106,95,93,102,91,96,99,100,113,106,93,106,118,98,101,104,102,104,95,90,100,88,104,108,107,99,98,98,91,106,97,96,103,93,98,109,88,100,94,111,101,99,100,105,96,114,87,105,100,111,101,103,96,94,115,100,99,97,94,92,103,104,103,107,109,100,93,100,92,92,98,108,87,97,98,108,91,98,93,101,106,88,99,90,104,106,104,97,108,105,116,116,105,107,98,98,108,99,102,108,93,93,103,99,103,96,104,122,106,106,103,95,100,95,94,102,113,94,99,104,95,74,104,96,113,107,97,111,105,103,101,112,106,99,95,101,89,103,109,101,105,98,83,100,102,101,109,105,98,118,91,106,109,76,108,112,109,126,125,105,100,99,101,101,89,112,105,107,90,117,102,109,98,88,111,100,105,99,94,96,96,101,92,91,112,105,106,102,98,106,100,108,98,86,109,83,110,107,117,94,100,106,106,105,105,103,118,116,109,106,107,112,109,95,99,93,113,86,104,104,97,98,109,110,81,101,108,103,94,109,98,108,106,85,102,126,101,105,104,107,105,103,91,99,95,121,115,101,104,101,98,110,99,110,105,101,97,101,95,95,117,112,102,114,101,105,100,95,101,112,104,95,101,105,103,101,113,110,102,102,102,101,100,95,108,116,97,103,99,108,117,107,95,102,79,95,96,89,90,98,96,103,104,97,101,89,89,93,100,90,105,111,107,112,110,85,99,98,96,103,110,109,106,97,100,89,92,102,104,102,92,103,110,93,100,108,104,101,102,105,104,114,92,106,95,100,97,98,108,97,104,106,97,110,111,103,109,113,99,115,102,110,109,108,98,99,94,85,104,99,105,113,107,101,69,111,83,110,101,116,119,93,104,93,102,84,122,102,94,110,108,107,123,116,100,105,95,109,96,97,89,114,95,101,105,101,104,111,109,111,99,111,108,104,100,115,87,108,116,87,83,94,99,104,106,108,97,96,94,96,104,110,103,108,91,105,100,91,106,96,121,104,106,102,106,101,100,100,101,117,99,99,102,112,101,92,103,91,107,107,93,119,107,108,101,97,98,102,99,91,120,99,104,99,99,104,108,111,100,89,100,107,100,100,110,112,97,99,100,92,101,97,102,111,101,99,109,107,93,100,95,104,106,107,95,104,106,93,102,95,104,98,99,101,114,110,105,97,103,97,104,101,101,104,125,112,105,104,101,105,112,108,110,106,97,101,95,105,117,84,105,90,109,121,100,96,95,103,101,90,95,98,100,109,100,88,118,100,93,102,98,88,102,113,103,106,111,100,110,89,108,108,104,126,95,110,100,116,112,108,104,93,101,92,99,94,105,108,99,98,94,101,98,94,80,101,109,102,88,117,98,107,82,107,115,111,85,115,99,96,100,113,107,105,97,114,99,103,93,98,114,102,99,91,113,98,114,110,100,105,107,104,102,103,117,103,101,110,109,97,112,112,92,91,113,106,108,110,107,101,92,102,86,96,87,106,109,105,107,98,109,105,105,105,99,106,104,110,118,98,102,113,102,109,98,104,104,102,104,120,97,112,108,102,108,102,114,96,103,109,95,99,105,89,103,94,102,113,108,107,99,99,107,105,105,104,101,103,111,100,117,102,99,105,117,107,104,102,123,97,98,99,110,100,92,104,120,107,89,108,104,117,103,113,110,97,110,113,96,104,101,102,98,100,112,109,94,105,110,105,98,101,98,116,91,107,98,98,100,105,111,91,110,105,103,117,79,116,113,100,99,99,101,98,114,100,99,96,115,100,87,91,113,99,106,89,111,97,107,108,103,109,110,101,109,113,98,120,110,98,102,104,105,100,114,110,91,107,112,108,105,120,101,96,97,99,102,106,113,105,109,112,91,105,103,92,100,105,115,93,99,103,99,105,117,105,108,107,102,94,98,112,111,110,93,99,117,110,113,101,99,117,100,105,110,112,94,97,114,124,97,126,108,99,112,105,106,103,110,91,99,106,106,107,102,81,110,112,121,104,95,103,99,97,104,98,111,108,118,109,114,97,108,101,104,121,110,106,136,108,110,98,98,93,109,98,107,108,103,105,98,105,112,109,108,120,117,96,109,109,107,104,106,97,103,103,101,117,102,101,92,105,97,97,115,100,113,96,110,99,100,110,119,109,110,90,108,110,95,99,93,97,103,104,100,113,112,95,106,97,96,104,101,110,93,103,103,90,101,109,99,98,105,113,69,114,102,123,106,105,103,120,113,108,101,93,105,103,101,108,93,86,104,103,106,110,87,113,95,105,106,104,111,102,91,90,101,102,108,107,96,106,110,99,106,101,105,113,101,102,99,116,105,90,110,107,106,102,112,96,97,106,99,92,102,94,100,104,109,102,113,96,96,101,108,107,110,107,108,106,103,98,107,97,87,105,99,99,106,104,108,100,102,113,117,92,109,103,98,100,99,112,98,100,95,98,109,108,98,103,102,98,119,108,102,103,124,102,98,113,103,93,105,96,117,105,100,104,100,110,96,103,88,93,95,108,112,104,103,106,100,96,110,98,107,101,103,103,109,101,108,118,106,109,96,96,112,102,99,108,102,99,96,114,106,95,109,102,119,105,109,101,118,100,107,112,99,102,110,102,105,95,118,117,107,101,72,109,91,98,122,107,95,105,104,100,106,114,108,101,105,108,97,94,103,106,101,98,88,113,102,104,110,100,107,115,93,104,104,106,94,103,100,108,87,109,100,107,88,107,102,101,112,108,108,92,108,92,98,105,113,108,108,103,110,94,104,111,98,123,105,113,100,96,99,107,100,88,108,105,96,104,100,112,88,103,95,100,101,106,98,103,105,96,96,96,99,108,91,100,69,114,97,112,104,102,120,94,106,105,107,100,104,102,101,101,102,107,81,105,112,90,100,98,99,110,98,118,102,106,109,125,103,105,117,103,108,113,97,100,109,97,105,103,87,103,100,116,99,99,101,94,100,107,112,98,105,105,103,106,101,102,99,107,96,111,96,102,97,93,98,115,105,102,97,93,108,109,94,109,96,87,105,103,90,113,104,108,103,107,107,92,100,106,106,99,102,103,92,100,100,100,112,100,104,109,100,108,116,96,87,100,105,106,91,101,103,107,100,109,93,122,105,104,104,103,91,94,109,101,105,107,104,104,124,100,108,101,103,95,104,103,97,109,98,109,102,94,103,108,101,113,99,92,83,96,98,113,105,113,105,102,107,105,101,99,88,111,106,90,102,106,100,105,99,96,113,115,103,106,104,97,113,109,96,107,92,101,97,109,110,104,100,98,125,92,96,99,111,99,104,103,105,105,96,116,101,100,100,99,99,88,103,103,89,111,104,91,113,103,94,98,104,91,109,101,79,109,100,94,99,90,124,106,100,102,100,98,98,108,106,76,107,96,98,109,97,102,104,103,108,84,101,99,107,120,108,98,108,108,100,123,77,99,91,101,101,102,97,113,110,101,105,104,87,109,122,103,110,93,107,107,97,104,110,96,92,111,103,107,97,98,106,101,111,101,98,112,109,95,102,100,100,110,121,95,103,95,118,106,98,100,82,90,113,93,95,93,103,102,105,97,91,101,104,94,108,101,103,104,106,117,102,100,101,95,103,108,94,108,118,99,98,96,99,104,98,108,107,103,104,106,95,112,105,103,116,106,89,103,107,94,109,115,96,101,103,102,109,117,98,114,101,111,101,99,98,102,93,92,100,109,92,103,109,112,106,101,104,103,102,103,94,99,92,105,107,101,111,106,102,95,102,108,75,98,106,99,121,96,98,84,96,101,110,104,101,109,102,110,101,101,104,98,104,104,104,105,101,108,119,108,95,102,105,99,101,107,112,97,109,110,113,102,101,102,99,95,107,107,99,110,106,108,100,105,84,106,103,106,109,83,111,107,109,97,90,116,92,89,117,100,99,103,92,105,110,123,105,108,106,103,95,95,112,96,98,99,97,112,104,100,88, +668.90399,99,94,90,103,98,106,86,97,87,98,78,98,100,109,95,85,97,99,106,99,106,104,99,95,117,109,103,101,99,89,102,106,93,92,119,100,96,92,95,98,93,99,97,101,96,111,98,93,102,89,101,89,95,91,92,101,91,91,105,92,87,100,69,99,100,101,92,92,95,82,92,100,95,93,95,111,95,89,100,87,104,89,115,91,99,91,101,104,100,91,108,95,100,106,87,89,114,96,100,105,112,101,105,95,95,71,97,105,110,102,83,104,110,84,104,102,98,83,97,93,121,100,93,94,102,106,107,106,106,87,108,100,104,98,95,94,94,95,113,127,98,90,95,94,101,99,102,99,93,94,88,114,98,96,100,108,99,96,104,97,94,95,102,100,104,102,95,88,91,87,98,96,104,106,113,96,96,92,100,103,102,111,99,106,99,105,94,86,106,100,105,95,98,103,82,87,89,90,101,114,91,90,103,100,93,92,98,90,108,104,93,99,97,100,109,102,110,96,99,136,107,102,100,96,81,96,95,112,99,108,93,92,99,108,102,104,116,87,91,107,104,103,110,90,95,103,98,95,105,96,97,85,96,99,106,93,95,98,95,105,90,102,97,104,96,110,105,87,110,102,86,101,105,99,102,102,98,98,98,96,97,96,99,94,85,102,105,96,113,95,91,96,108,110,104,102,104,111,98,95,99,98,110,100,85,106,106,99,109,110,96,103,102,96,101,103,106,98,106,94,100,87,106,100,106,105,94,101,113,109,99,108,103,99,100,98,103,105,89,97,108,94,91,100,92,103,100,104,102,115,96,104,96,95,95,100,97,85,97,105,90,101,112,108,100,101,95,116,94,97,95,96,103,102,110,100,116,92,93,115,108,104,109,86,86,105,105,95,88,113,111,92,91,107,100,99,102,97,108,108,69,97,105,97,99,94,109,109,102,82,90,93,100,99,107,105,94,96,96,94,98,81,93,104,102,99,105,92,102,100,92,101,96,100,105,103,98,95,95,97,99,99,100,100,109,90,100,101,95,91,106,98,102,101,98,98,101,103,106,101,107,91,102,94,105,98,96,93,94,102,95,92,100,103,95,101,96,101,121,104,97,107,103,105,100,102,105,96,87,105,100,102,102,95,98,105,91,92,110,100,107,69,95,115,104,99,97,105,102,90,96,95,101,103,100,99,97,99,96,94,83,94,112,96,102,103,119,105,102,85,94,106,108,102,97,109,83,96,106,103,91,93,74,98,111,99,100,102,106,98,111,108,104,96,96,86,110,95,97,97,90,98,94,100,101,104,101,100,103,106,101,117,96,97,97,102,100,89,106,97,96,110,107,90,101,101,105,98,85,104,102,103,95,106,101,100,100,109,102,98,87,114,93,108,103,100,102,94,100,102,94,99,98,94,108,96,80,110,103,110,106,112,100,97,107,104,109,100,108,91,91,104,99,104,104,104,105,88,106,101,98,107,103,92,96,105,91,84,83,111,92,94,95,83,87,109,108,96,99,113,98,115,98,88,90,106,101,99,102,108,106,106,100,98,84,87,101,84,96,94,107,105,102,97,99,105,105,106,99,106,96,103,98,114,111,99,105,102,99,94,86,97,108,105,111,115,95,97,93,109,105,98,108,92,100,97,102,111,100,114,97,113,105,90,92,90,97,96,98,100,101,109,101,104,92,98,97,102,103,93,103,100,105,99,101,105,100,100,101,94,103,102,101,100,94,97,87,91,104,109,91,104,97,103,94,120,101,105,104,87,107,113,97,94,106,104,100,100,92,98,96,90,104,96,107,109,96,105,103,99,103,98,92,108,110,94,101,89,96,100,97,116,84,101,80,102,98,104,104,106,109,92,99,98,97,104,104,98,107,90,74,115,91,101,104,111,111,101,109,78,104,99,99,92,94,93,98,92,98,105,94,99,100,99,96,112,102,106,90,104,111,103,98,100,106,99,94,105,107,106,97,97,96,94,100,94,96,103,98,99,102,109,102,108,102,103,106,87,104,100,96,80,91,102,94,90,91,109,95,94,103,100,105,101,99,89,92,104,110,99,102,123,109,108,99,105,90,102,109,94,97,120,104,103,98,98,92,108,96,95,103,107,110,92,97,99,91,101,97,100,105,99,91,112,96,91,92,104,98,104,104,103,103,100,102,94,105,94,98,96,94,96,121,106,104,97,100,94,100,117,101,102,94,92,104,97,103,99,98,95,95,85,103,95,98,95,94,98,98,102,93,99,100,85,99,99,83,94,92,96,99,101,91,115,97,83,98,100,98,92,99,100,109,99,99,106,118,101,92,95,114,113,92,94,94,100,106,92,92,93,93,101,95,91,94,100,94,98,100,97,101,110,103,97,86,86,105,116,96,97,108,96,94,99,103,106,65,95,112,98,103,91,104,104,97,107,100,93,109,107,93,116,110,103,93,104,103,102,104,96,99,95,108,97,105,108,122,108,92,99,117,102,106,102,98,109,117,107,103,99,99,96,100,103,107,108,100,88,101,106,101,105,109,97,102,113,98,100,102,97,102,113,106,100,106,93,98,109,99,100,93,106,94,97,103,113,113,104,97,96,101,112,98,98,101,104,102,109,96,90,102,101,96,114,101,112,104,105,102,100,99,104,111,101,102,108,107,100,107,109,101,93,116,101,96,113,107,100,103,84,109,117,95,105,94,109,105,110,91,97,102,96,100,104,88,116,117,98,99,106,105,92,111,108,96,100,97,90,91,67,114,102,105,100,106,104,107,101,104,78,97,95,99,99,105,104,101,98,98,91,98,95,101,95,113,104,107,99,105,100,106,108,107,103,107,100,99,98,102,108,95,83,100,90,106,101,103,99,97,101,111,106,115,107,102,107,121,97,105,102,103,102,100,100,113,102,108,99,102,104,108,106,111,101,98,96,110,101,98,103,105,95,101,75,92,115,97,109,105,90,117,99,93,112,105,98,113,108,106,119,102,100,108,112,104,89,108,85,76,91,102,96,101,95,116,95,107,117,103,107,114,98,110,113,107,117,115,106,109,106,92,99,109,108,101,108,97,112,95,91,94,106,117,85,105,92,107,110,99,110,95,113,98,103,100,95,89,104,101,92,124,103,105,97,105,120,93,100,96,104,100,115,96,99,104,99,97,109,100,90,115,98,91,104,109,95,101,96,101,104,105,97,100,102,130,101,104,105,100,73,101,106,94,92,103,113,99,95,112,101,103,102,103,101,103,104,83,95,98,112,108,100,98,104,98,100,109,105,121,103,104,103,107,109,103,95,101,101,90,118,103,107,107,98,100,102,95,92,104,99,99,105,100,95,98,107,96,90,99,112,108,96,96,96,78,99,97,98,104,86,98,93,105,96,110,101,103,95,106,100,100,106,110,88,88,97,105,109,104,93,106,108,99,101,100,116,96,98,104,100,107,101,98,105,102,101,118,91,106,104,99,106,99,101,101,117,91,102,95,99,102,104,116,96,110,103,102,120,102,99,95,109,106,97,94,110,105,114,95,107,102,97,96,105,112,99,104,96,107,107,98,99,104,100,101,106,99,92,87,90,90,105,119,93,98,104,93,98,96,111,113,96,106,108,110,107,101,108,100,89,99,102,101,112,102,102,95,109,101,120,102,104,107,106,94,99,101,98,103,102,101,107,98,100,95,103,111,95,109,103,109,94,95,76,108,105,109,103,102,90,91,113,113,99,91,101,96,92,105,117,109,104,100,106,109,106,103,97,108,96,98,105,110,107,102,99,117,105,104,103,103,113,106,102,97,113,102,102,102,102,110,105,102,98,99,106,96,110,99,102,63,104,90,117,115,102,104,122,103,98,101,97,109,93,91,109,111,100,95,118,105,94,106,108,93,99,99,97,102,121,106,97,94,105,100,106,105,103,97,106,75,96,102,95,106,79,112,90,93,109,92,102,94,107,107,99,99,98,77,97,107,94,112,102,100,101,90,98,109,97,103,98,96,109,106,99,101,104,102,102,111,107,99,98,109,105,109,112,79,107,102,103,93,106,98,102,103,113,106,100,109,105,101,96,111,115,103,94,109,116,101,125,94,101,108,105,97,98,99,110,104,94,104,99,105,100,95,102,99,104,111,99,104,76,111,107,89,103,96,109,112,102,109,123,98,95,99,83,105,102,95,98,103,111,91,116,115,105,102,100,104,100,90,105,108,100,94,103,101,100,107,115,106,105,105,108,112,106,104,103,108,105,97,106,100,93,100,98,92,90,88,91,103,97,101,107,95,113,116,102,105,111,96,88,102,115,101,112,111,93,99,91,111,82,105,108,101,114,105,100,104,94,108,87,92,94,94,91,100,108,120,108,116,116,102,102,103,98,108,116,80,97,96,104,104,105,109,105,107,117,93,108,91,111,102,114,114,101,96,100,88,97,102,97,98,95,111,96,110,100,105,93,122,108,91,105,97,104,103,103,109,108,89,99,100,95,97,89,97,97,95,106,113,93,103,96,107,112,105,99,99,91,102,112,85,97,75,105,96,104,88,94,100,109,100,98,107,96,95,95,97,96,100,103,102,103,92,113,109,98,95,105,98,114,106,94,116,95,107,108,96,96,134,96,99,99,112,110,75,92,102,102,107,96,107,107,104,101,109,106,92,95,108,113,102,96,101,97,117,85,95,94,103,100,95,102,116,118,95,114,101,98,99,101,93,112,105,101,102,90,92,113,104,102,99,96,109,108,86,113,100,104,102,91,87,102,99,91,87,105,103,106,97,103,98,92,106,91,90,90,100,100,95,104,101,102,93,117,86,94,102,103,104,106,107,108,104,104,101,105,111,101,101,108,103,92,107,110,116,105,103,102,96,101,93,111,104,88,99,108,99,98,117,101,105,112,114,100,108,100,96,104,96,108,107,99,101,130,88,98,115,105,113,102,109,115,96,103,97,93, +669.04523,122,106,98,106,102,106,74,100,113,103,97,108,101,108,104,96,99,97,103,100,114,103,112,102,108,109,119,100,124,98,106,106,112,106,97,95,99,96,103,106,99,96,109,94,123,103,120,111,113,93,99,94,99,100,111,104,103,103,114,92,104,94,100,94,102,104,98,116,118,107,95,109,100,87,89,104,100,100,126,99,105,109,113,103,98,100,90,103,105,92,96,110,95,103,95,104,99,111,101,96,104,79,108,105,96,102,106,102,97,77,124,98,105,104,102,101,93,98,103,108,101,104,112,109,109,115,103,87,98,100,106,103,102,94,101,103,92,104,87,100,108,101,99,104,98,98,99,101,102,112,109,113,97,91,104,102,107,86,105,103,93,101,88,97,97,111,105,104,103,103,104,118,102,106,90,98,107,109,122,92,107,104,98,98,95,96,87,102,94,108,91,105,108,91,113,99,94,106,106,103,111,98,115,102,95,113,100,99,109,117,101,111,98,101,97,104,93,98,102,105,106,101,88,100,90,101,95,107,106,82,101,102,97,108,98,115,101,112,112,108,106,77,107,104,92,99,103,101,103,111,102,99,102,105,105,113,93,107,106,94,96,102,91,98,94,96,114,105,100,112,96,89,119,100,112,96,109,102,109,103,98,99,100,98,102,113,100,105,103,112,97,104,105,100,111,99,126,103,107,106,116,97,101,104,93,103,117,102,105,107,99,112,108,103,103,103,102,101,100,80,104,102,113,88,102,100,83,95,103,103,103,108,109,102,97,90,106,99,107,92,99,112,97,87,101,118,94,112,107,94,95,100,114,93,104,99,99,94,101,102,94,106,89,105,98,113,103,109,90,103,99,101,109,103,100,101,102,95,81,103,99,105,100,100,113,102,102,94,103,100,108,97,107,99,96,89,102,104,96,99,110,97,102,96,99,95,102,103,98,110,104,102,100,106,100,92,105,92,101,105,103,90,105,126,107,96,102,109,100,100,96,107,100,100,112,106,88,100,100,117,101,91,109,91,98,99,97,99,107,107,101,103,92,102,110,107,109,105,107,106,86,105,113,108,96,105,100,98,105,101,102,99,95,105,91,110,106,115,109,101,98,95,93,100,104,95,116,99,109,96,103,113,102,104,101,121,114,94,99,96,104,112,105,105,109,107,100,92,109,98,96,106,108,110,106,100,98,100,103,87,109,95,112,110,91,110,96,98,102,103,109,108,96,100,102,111,100,102,115,103,116,108,104,96,106,105,92,100,111,92,118,87,98,90,104,101,97,98,90,98,100,104,84,92,105,97,115,108,106,95,102,102,86,107,111,100,72,120,103,108,110,94,97,123,95,91,102,101,118,88,115,81,104,100,91,106,104,100,108,104,106,103,108,96,97,101,98,99,98,103,98,111,106,102,97,106,97,97,102,94,94,100,112,93,94,102,98,95,100,102,109,111,87,123,89,96,94,62,97,100,106,106,104,107,101,93,100,107,110,108,96,101,106,94,114,96,102,110,108,106,117,109,95,106,95,116,112,85,127,95,99,99,105,103,109,106,96,93,105,99,116,97,103,96,96,98,108,101,101,113,102,120,96,97,97,107,102,99,102,99,111,91,117,103,112,107,106,102,103,90,107,98,99,107,102,84,105,99,102,109,118,109,113,105,101,101,122,104,95,104,108,98,97,110,107,95,109,103,92,100,99,95,99,91,105,99,99,100,99,101,110,97,102,100,110,108,103,107,94,104,93,105,105,104,96,105,95,102,103,105,103,102,100,98,105,109,108,90,105,105,95,107,102,102,105,100,105,110,98,106,103,103,106,110,108,100,104,106,128,97,107,108,120,103,102,110,107,101,120,99,105,89,104,110,105,103,100,107,105,95,115,101,114,94,99,115,104,100,106,101,100,102,103,107,98,108,105,106,113,93,109,106,133,110,90,94,102,99,108,98,102,91,99,102,90,110,113,89,95,83,104,132,92,97,106,91,110,108,101,113,104,111,101,107,93,124,108,105,116,102,102,92,100,108,97,100,101,109,98,110,101,114,101,106,98,91,106,116,109,104,106,99,110,99,112,109,93,103,103,110,109,101,95,83,103,91,94,95,107,100,113,107,114,109,110,93,96,107,94,104,90,107,103,107,90,104,98,108,94,110,89,113,95,102,86,109,103,106,112,113,110,93,109,75,100,105,104,103,102,111,109,94,96,96,97,107,91,106,94,116,99,96,105,98,114,76,99,98,90,96,89,90,100,92,104,102,98,87,101,102,104,107,100,97,87,94,95,109,110,105,80,90,79,83,103,100,100,92,96,123,88,106,109,116,103,104,102,103,86,105,110,100,97,79,95,99,95,99,107,107,112,109,93,113,107,99,96,117,95,106,96,108,98,100,112,104,102,106,98,109,115,110,113,105,102,111,117,114,98,102,80,100,116,95,118,100,99,100,91,100,105,95,97,107,105,104,109,103,102,114,91,104,107,108,106,95,85,116,118,111,95,105,98,99,100,90,114,116,106,97,108,91,94,107,111,110,102,99,99,106,105,111,112,105,90,106,104,108,114,110,102,112,106,82,109,97,103,104,102,105,100,100,109,96,91,101,101,102,105,103,112,111,94,90,101,99,105,102,84,93,104,91,115,102,100,110,112,101,103,115,103,97,97,104,108,103,111,105,116,101,105,99,106,95,90,106,107,115,112,110,111,111,105,109,118,108,113,97,109,104,98,115,97,75,84,105,117,94,112,103,100,106,115,96,104,100,118,99,109,121,104,101,108,117,108,101,117,111,107,104,115,128,97,101,96,107,102,120,102,103,98,115,113,116,116,120,102,113,91,110,115,102,122,95,104,108,106,113,106,107,108,85,108,113,106,98,98,104,97,107,109,99,96,110,110,91,107,94,102,102,112,109,109,112,102,93,101,106,111,109,120,105,101,106,104,104,107,110,105,87,102,119,109,103,124,107,117,120,98,84,104,115,87,114,104,110,104,107,99,101,91,103,103,114,102,92,95,105,100,95,108,113,105,104,98,104,108,109,92,111,106,96,103,96,120,105,99,105,101,95,101,104,97,104,92,109,91,95,110,105,102,84,109,105,113,105,110,110,100,118,124,102,97,98,105,100,108,104,109,107,113,91,104,110,97,111,125,110,92,98,103,96,107,102,106,100,105,105,116,91,95,104,102,106,104,101,97,97,116,116,102,104,101,113,98,100,108,102,97,104,95,102,95,89,111,99,113,100,106,113,109,110,104,90,90,97,95,109,111,90,98,114,106,105,105,102,96,110,103,98,109,95,110,90,100,98,105,102,112,90,96,100,102,96,99,103,118,113,101,102,104,106,114,73,96,101,97,102,110,94,94,97,95,76,105,103,104,101,108,103,99,94,102,93,115,97,116,111,100,85,93,106,110,97,97,100,109,95,110,106,108,102,105,103,103,117,110,102,116,102,93,101,96,104,104,102,91,99,92,106,115,101,101,95,103,105,108,109,107,102,107,110,109,115,113,108,100,107,118,111,98,108,100,106,111,98,120,113,87,135,120,98,102,109,100,112,119,113,94,110,99,95,102,84,112,110,97,109,89,95,120,110,113,97,107,102,100,107,101,102,99,104,96,86,96,106,104,100,107,109,96,104,110,97,107,102,108,101,96,99,101,94,105,100,103,101,95,90,96,98,109,99,91,102,105,102,96,94,111,99,108,104,105,98,97,99,107,111,102,121,103,104,125,104,94,123,103,72,104,99,111,101,106,102,116,109,109,100,106,80,103,108,100,98,109,99,101,105,111,95,124,102,84,94,105,90,103,107,86,99,102,99,117,111,107,94,98,105,109,103,110,106,111,77,106,109,108,110,103,110,106,100,107,110,93,109,122,109,95,93,110,94,98,91,103,112,102,101,96,104,97,89,94,98,101,95,100,87,100,95,104,100,93,100,89,78,100,90,100,72,99,96,107,101,110,108,102,116,107,106,99,97,100,108,74,113,113,104,94,103,93,112,95,112,112,111,103,104,101,112,95,100,101,119,104,102,89,100,91,109,106,107,101,95,118,102,101,109,103,100,102,104,97,91,108,99,100,109,102,94,108,100,115,100,95,103,102,98,104,102,99,103,101,102,103,119,102,105,102,109,105,89,106,112,105,103,117,105,107,99,95,91,100,98,92,91,101,120,109,110,95,90,105,94,118,105,106,112,103,113,111,104,109,109,105,104,109,110,100,107,104,110,99,99,116,101,119,102,107,112,107,92,97,102,99,98,103,114,114,99,97,112,109,91,96,113,88,100,106,125,107,111,114,101,101,109,107,90,96,109,108,109,106,101,93,107,113,109,101,112,104,106,117,112,120,91,96,89,113,103,94,110,101,103,106,101,111,113,98,96,101,100,115,108,96,103,109,99,100,98,104,115,109,99,103,109,104,103,113,104,83,97,111,101,105,103,103,113,95,99,115,105,97,96,101,106,93,97,102,103,101,104,102,102,103,109,98,101,98,108,87,93,109,104,99,106,100,99,104,112,123,98,97,107,98,113,116,106,105,100,90,105,100,100,104,105,101,110,95,96,83,96,88,103,100,109,116,93,99,108,98,111,104,114,112,95,98,111,111,102,102,90,105,90,96,108,115,90,109,103,98,98,105,95,93,111,99,108,117,99,114,115,96,93,107,109,108,107,108,103,96,122,98,106,100,107,109,101,105,82,99,97,110,108,95,109,110,102,98,115,110,112,91,103,111,101,109,108,91,109,100,116,104,98,97,101,98,110,114,99,124,102,99,116,113,102,96,108,105,107,104,100,111,113,98,105,95,103,109,117,95,116,104,103,107,101,113,107,93,113,113,96,93,108,98,105,107,106,110,89,89,95,97,97,81,108,105,98,119,119,89,109,98,101,115,100,109,113,96,114,112,110,103,107,115,116,104,100,113,94, +669.18646,119,107,108,97,86,106,85,76,104,98,96,96,101,106,99,89,101,96,98,97,99,97,104,109,113,99,78,101,99,100,109,110,110,116,95,106,98,91,91,106,104,100,86,84,107,109,107,94,94,106,97,79,114,116,114,102,98,104,110,108,105,95,96,100,87,118,97,83,114,97,101,102,94,92,101,105,88,100,98,107,93,91,112,107,93,105,109,92,102,103,106,102,101,102,102,109,99,107,98,95,101,97,95,100,89,91,93,94,99,106,95,94,98,92,99,86,91,99,95,100,97,110,103,98,113,117,106,98,116,105,111,115,103,97,104,113,106,89,99,99,104,99,96,92,95,127,98,94,93,101,90,107,101,93,79,83,93,103,106,97,99,96,107,106,101,101,98,88,96,99,108,99,104,101,92,96,98,92,97,94,101,111,97,102,96,121,103,96,98,96,99,100,102,106,94,114,105,109,104,123,102,91,100,112,93,94,101,101,111,104,107,98,110,98,107,73,97,106,96,128,100,108,108,113,100,103,99,106,106,101,89,93,114,100,106,117,102,108,103,112,100,105,109,116,95,104,94,94,104,100,102,93,101,103,93,105,109,102,104,101,97,105,92,109,95,101,97,97,99,106,82,94,101,99,108,102,109,102,105,93,100,104,98,104,96,94,102,106,93,115,102,104,112,101,101,98,100,111,110,101,109,104,91,110,101,108,108,100,99,100,79,100,99,103,105,109,95,97,104,90,110,94,112,106,95,97,92,104,85,105,106,94,99,113,101,113,96,95,106,104,108,99,93,105,94,88,107,109,88,103,106,103,101,99,104,98,97,114,100,111,96,99,99,112,105,95,101,104,111,106,109,96,101,105,100,99,107,100,91,101,114,106,100,105,98,103,95,99,106,98,111,101,96,99,91,95,94,109,96,104,88,105,103,91,101,105,95,106,97,103,105,101,101,112,104,94,107,98,98,90,81,104,93,110,98,103,93,86,111,110,101,117,109,113,102,100,111,103,93,99,116,95,105,102,96,95,101,101,106,107,112,97,100,103,109,99,100,97,105,122,108,103,93,120,109,99,102,112,106,95,112,106,90,61,92,94,105,107,100,111,94,102,103,96,99,94,97,103,111,93,103,89,102,101,92,112,111,99,108,94,106,108,100,90,95,101,100,103,114,90,104,102,105,103,99,104,109,92,106,98,104,113,105,105,106,94,105,102,101,106,95,114,118,103,106,93,86,98,96,122,94,108,96,106,107,111,95,83,111,108,87,122,107,113,111,108,129,103,102,94,112,108,100,115,110,115,87,100,92,86,95,108,108,107,117,124,101,94,104,99,101,91,114,105,108,97,122,99,100,89,100,113,93,103,102,100,107,106,109,106,98,113,103,101,97,80,87,97,100,102,106,108,102,108,109,99,110,92,112,116,108,96,99,103,99,111,86,80,103,99,106,101,103,105,94,103,98,93,100,113,121,111,100,102,112,97,104,109,108,113,95,104,105,101,97,108,102,111,100,100,105,108,109,106,84,94,103,101,102,95,108,115,107,88,95,108,102,103,96,114,101,103,115,91,100,104,92,102,105,93,98,102,108,95,116,111,109,104,91,94,101,106,86,111,107,100,101,113,97,109,106,104,107,110,105,106,107,106,92,94,110,80,100,98,91,94,109,101,107,112,105,112,96,81,98,100,98,115,111,100,96,102,95,98,99,98,103,103,103,102,85,96,97,97,89,95,97,104,110,89,104,101,93,75,84,102,91,104,119,91,100,104,115,105,99,106,93,109,96,102,107,114,100,109,99,101,103,106,103,104,116,101,102,111,89,117,93,92,106,102,99,105,105,105,113,103,105,95,107,94,100,94,112,88,109,108,115,122,100,109,95,106,105,101,96,105,112,94,99,104,108,94,103,110,99,113,111,102,100,96,94,91,104,124,104,98,109,95,92,100,112,95,102,90,69,107,96,98,98,98,103,97,108,98,96,92,90,102,105,122,103,118,95,105,103,98,100,100,111,87,109,99,102,107,103,96,108,110,99,107,109,120,109,106,99,99,97,112,95,91,108,111,101,96,96,122,98,101,102,102,104,111,118,109,105,103,98,108,106,106,95,105,103,101,98,108,98,95,99,96,94,90,119,106,101,106,95,93,97,102,92,110,99,91,93,87,96,92,105,105,95,109,107,87,100,105,109,104,98,94,112,101,89,102,104,104,86,97,110,113,99,109,100,104,90,101,113,94,94,104,104,107,99,110,103,97,96,105,97,95,102,104,98,94,104,96,102,97,99,101,109,104,101,101,104,88,103,97,100,109,102,103,99,105,105,114,119,97,99,109,102,103,116,100,101,103,102,95,115,109,104,110,108,103,100,89,97,103,104,98,105,101,93,107,101,95,114,84,91,106,108,108,108,106,108,97,96,98,96,95,100,99,111,106,104,100,98,96,95,93,85,103,65,113,116,98,94,87,117,106,101,94,106,87,110,87,113,105,115,99,103,95,81,93,94,96,66,109,109,87,116,109,100,106,92,94,95,95,98,96,102,105,110,102,100,110,105,101,109,105,112,106,111,90,108,104,91,79,103,113,104,106,98,94,112,103,100,103,100,95,102,103,95,104,98,101,121,106,109,96,117,105,105,98,104,97,105,112,105,108,109,91,105,96,109,100,103,100,106,99,95,92,114,98,94,106,94,92,90,100,94,109,98,104,106,101,107,99,116,118,103,95,109,104,94,98,94,86,102,105,95,97,95,97,94,144,111,107,114,96,107,97,101,99,99,102,93,104,113,99,97,105,106,96,100,85,96,91,111,92,101,102,98,93,107,85,102,100,107,108,101,100,105,101,106,118,88,96,100,94,112,103,104,113,102,94,100,83,101,108,102,108,98,93,127,95,107,98,109,95,97,98,95,128,99,103,99,101,111,85,98,101,106,109,97,96,91,95,108,102,107,103,105,87,97,107,102,95,102,101,115,95,114,105,93,107,105,102,105,85,97,87,99,94,97,109,109,100,106,105,106,102,103,86,100,91,110,102,105,92,98,98,93,100,88,97,93,100,97,115,93,110,104,92,101,99,109,99,107,96,95,92,111,96,103,90,104,111,96,111,104,102,102,95,107,111,111,93,100,115,101,117,84,98,104,85,100,102,108,105,99,99,102,104,94,88,98,94,99,100,98,83,93,106,105,95,87,106,98,105,115,102,112,112,109,108,107,101,91,116,100,113,94,95,108,98,98,102,102,107,97,106,93,107,94,110,92,108,104,97,101,102,106,98,101,104,101,100,106,106,95,107,99,107,108,98,96,102,109,91,100,99,104,100,98,109,126,92,104,103,108,111,103,116,102,108,105,99,95,101,94,102,100,99,102,100,106,98,100,107,96,108,113,102,91,102,97,117,94,101,109,101,94,103,98,106,91,95,101,97,102,102,98,94,114,94,99,90,108,102,97,100,93,102,92,113,106,116,98,108,95,106,105,104,98,106,108,98,95,104,107,111,91,92,92,103,91,117,107,104,95,105,100,108,104,110,108,117,106,102,99,87,96,114,104,110,99,114,98,109,110,102,100,111,91,99,101,75,88,95,102,96,108,97,105,101,104,103,102,95,97,97,101,103,93,102,94,95,110,104,93,96,113,94,110,102,101,103,97,95,95,99,96,94,90,95,109,93,102,107,99,99,107,104,89,102,103,97,106,101,97,103,100,107,106,100,107,99,106,88,105,109,120,103,93,99,109,103,105,103,98,98,113,95,108,98,91,84,92,105,88,107,88,96,87,96,99,102,96,82,110,100,107,106,86,96,101,94,102,102,105,96,101,107,118,100,106,105,98,105,108,102,103,99,97,95,112,98,117,119,98,100,98,102,106,99,99,99,107,100,103,109,101,96,108,98,95,100,104,103,95,98,117,103,101,105,107,93,88,77,91,130,121,96,113,95,94,76,109,97,96,108,99,98,104,113,107,102,98,99,94,104,91,103,99,106,103,103,108,99,100,106,95,104,93,98,92,98,94,98,97,99,104,120,108,97,98,104,115,108,106,98,108,104,109,108,110,91,102,66,100,102,93,115,99,106,106,102,106,92,100,110,104,97,92,80,117,98,101,83,101,99,101,105,120,100,98,101,103,96,104,105,111,106,99,103,110,104,98,99,102,99,90,108,99,104,66,103,91,111,103,86,99,99,96,102,100,113,104,99,103,102,99,102,108,99,106,100,113,103,99,108,102,92,99,91,104,100,109,94,110,96,110,92,94,119,103,105,95,103,97,95,108,97,91,99,96,98,111,103,101,92,100,105,104,98,109,87,85,95,101,109,110,97,104,89,96,96,108,99,108,104,113,92,106,101,99,97,93,104,108,113,98,94,96,101,109,96,104,88,91,102,97,105,107,98,92,100,109,117,105,111,98,96,99,97,99,102,106,105,102,91,105,100,98,92,94,95,90,98,116,99,101,94,100,114,98,101,106,109,96,107,113,102,100,104,96,92,105,91,97,95,108,95,90,95,100,105,110,100,97,95,105,100,94,112,96,102,100,86,113,101,91,97,107,108,106,113,108,99,95,104,112,90,106,93,106,97,109,103,112,111,106,102,99,115,104,106,102,102,107,94,106,102,96,95,109,110,119,103,94,90,100,110,94,109,101,107,105,99,103,100,103,116,99,97,107,105,102,99,104,96,103,101,91,101,119,104,106,93,91,93,105,99,110,99,98,114,94,103,99,113,96,100,107,97,110,104,97,98,100,92,99,101,83,95,93,101,105,103,101,99,98,97,96,113,98,102,100,100,75,105,101,94,102,111,103,93,92,99,102,91,130,91,100,97,106,101,116,88,108,88,99,91,75,105,95,109,102,104,106,105,93,100,95,109,105,92,116,97,94,100,93,89,107,93,109,110,96,94,100,84,102,96,101,103,117,81,104,105, +669.32776,116,115,106,85,90,90,107,114,93,101,88,109,104,107,94,94,104,112,100,90,105,101,103,105,98,101,103,110,102,95,71,106,110,94,108,92,103,74,97,106,108,95,100,110,100,104,94,99,100,127,105,103,111,98,99,115,111,95,109,90,103,113,91,102,95,93,99,106,102,101,97,101,105,92,100,106,104,105,89,101,108,99,107,109,95,98,102,103,96,93,105,102,100,111,87,102,125,108,108,101,98,105,94,100,82,89,87,102,107,107,98,102,105,107,113,100,103,99,92,99,103,103,107,101,99,112,104,120,106,106,101,96,91,97,116,95,95,102,84,110,95,108,100,99,97,109,100,104,81,106,105,103,99,104,94,105,105,91,109,97,99,84,102,112,93,112,92,99,109,105,107,105,78,113,90,98,103,88,97,103,99,82,105,106,92,94,92,94,102,103,96,117,117,107,92,99,79,99,94,109,96,99,100,102,108,92,106,104,111,105,108,104,106,104,111,110,108,98,114,95,106,113,105,90,101,107,104,96,106,117,104,97,99,86,95,105,112,109,103,94,94,107,116,99,94,103,112,104,100,100,102,115,99,99,91,105,107,104,102,109,102,87,92,99,93,98,101,107,94,103,94,104,105,98,106,107,103,102,95,108,102,102,113,110,106,100,102,101,101,102,104,91,96,94,104,112,105,100,116,101,106,105,115,111,96,100,101,118,103,108,97,113,106,96,108,109,101,92,105,89,115,98,104,93,107,102,100,88,108,105,103,97,92,110,91,99,106,104,91,99,92,106,104,96,97,102,107,94,92,107,104,98,105,99,110,96,108,98,100,103,98,107,95,100,97,99,97,108,106,107,117,104,96,109,107,95,97,112,95,101,104,101,99,102,93,103,101,103,107,91,110,96,89,100,102,107,94,106,101,112,90,99,106,102,100,100,113,99,97,101,99,95,94,114,105,83,97,103,109,101,101,106,107,114,103,98,97,100,94,107,102,104,110,106,109,102,98,90,106,108,104,101,116,100,97,104,99,105,100,109,95,97,103,102,101,89,105,108,92,91,94,107,104,109,106,108,105,110,88,95,106,111,96,112,103,106,99,120,108,116,90,108,104,101,111,100,98,97,103,102,97,116,102,98,89,96,101,99,103,109,103,97,97,85,97,96,98,102,113,102,103,98,114,99,101,103,97,103,101,103,104,116,103,101,104,101,102,101,107,100,91,99,105,101,99,116,101,98,96,108,87,105,105,97,99,100,102,102,104,103,109,99,97,99,102,104,96,99,98,82,105,95,113,99,112,107,104,109,97,103,105,106,94,105,97,105,104,97,112,66,101,103,104,101,92,100,106,108,118,94,99,101,98,82,116,102,110,99,103,101,91,108,106,101,103,97,109,108,98,100,94,96,94,110,100,101,100,105,102,102,106,87,106,104,91,101,94,101,113,97,103,96,121,101,84,98,102,103,112,98,78,101,109,115,104,100,95,104,118,102,98,84,97,111,101,98,101,105,111,106,113,96,100,106,95,97,110,100,105,100,116,97,104,100,96,110,107,99,101,112,90,100,113,102,103,99,99,109,101,99,110,117,103,107,108,105,113,108,109,100,88,95,96,92,102,100,109,105,96,99,112,66,101,92,93,106,99,104,98,96,99,100,97,116,96,93,91,110,92,109,95,102,105,113,80,95,97,97,98,98,120,83,104,104,112,104,105,94,105,108,102,92,106,106,103,102,104,108,102,91,113,95,95,94,87,91,101,94,105,95,108,79,118,103,95,100,98,99,104,96,109,124,90,99,87,102,92,90,105,98,104,100,102,105,98,107,86,110,107,72,93,102,106,100,119,105,108,103,106,95,108,100,101,97,105,100,106,91,108,103,104,108,95,107,99,104,105,107,102,100,121,98,108,99,107,114,95,106,97,101,116,101,109,102,106,97,91,97,105,105,94,88,100,102,103,99,104,101,100,99,102,91,113,97,102,111,106,97,103,113,102,96,100,116,65,112,106,96,106,105,91,110,102,98,112,91,97,97,107,105,113,110,100,98,91,112,99,105,103,110,90,112,109,107,87,84,93,100,100,98,92,103,88,108,100,96,94,96,100,109,104,120,111,100,94,75,103,100,93,97,102,108,100,100,95,103,114,110,103,102,109,112,108,109,105,116,104,107,103,104,105,104,96,109,109,100,110,95,102,101,113,103,93,105,105,105,95,103,102,106,97,114,105,102,106,98,100,94,94,99,104,89,98,95,98,91,102,101,100,99,97,88,109,92,100,90,100,104,109,91,101,90,96,92,103,98,102,106,97,108,97,103,100,118,81,93,113,96,95,104,90,102,88,100,108,105,99,81,96,104,103,108,96,103,103,100,94,108,96,106,114,94,109,114,110,98,107,101,107,97,100,103,104,104,86,105,96,110,106,121,105,111,102,103,95,113,100,91,100,106,99,112,96,101,88,95,112,84,87,90,100,99,109,92,109,104,106,102,104,104,116,97,98,97,103,94,99,114,102,97,129,104,110,86,108,102,101,100,100,113,105,96,111,88,101,95,107,95,100,130,110,100,100,100,96,92,101,111,113,105,105,109,97,101,94,103,101,105,107,96,114,100,108,102,111,84,111,106,92,102,118,96,104,105,105,95,99,96,97,101,112,108,108,99,106,100,108,93,112,108,108,97,99,99,109,87,108,101,123,102,107,112,103,112,91,106,117,107,100,102,113,101,99,109,93,108,108,95,102,104,102,111,109,102,110,117,104,108,97,105,95,100,102,97,111,116,108,128,100,94,105,113,101,101,102,109,98,107,99,100,101,109,104,92,108,107,106,97,103,114,101,106,112,108,95,102,98,113,102,105,84,103,83,98,110,109,89,117,100,117,107,97,101,110,113,104,100,102,103,113,110,101,109,91,113,103,92,95,116,108,100,112,104,99,105,114,105,102,103,100,101,102,101,93,103,96,93,100,112,104,106,93,99,96,98,99,105,105,103,99,96,97,100,92,105,101,95,108,98,107,103,101,108,106,110,102,106,109,106,109,98,105,92,116,110,108,105,101,115,108,100,113,95,102,101,93,103,107,108,101,87,111,104,103,105,93,110,107,103,111,103,106,99,99,117,102,102,94,101,97,117,91,98,113,100,101,90,106,98,103,112,86,117,106,94,95,92,94,107,111,104,110,95,99,98,99,96,96,106,106,106,91,96,115,117,109,94,117,107,109,104,107,100,103,104,104,97,102,102,98,113,103,102,86,90,103,88,105,73,104,99,102,109,100,108,99,102,102,97,110,97,104,92,104,105,97,108,105,114,98,113,95,87,101,92,100,106,109,122,95,98,101,102,109,109,107,95,93,104,99,109,100,100,100,101,88,109,96,122,100,89,112,113,115,98,107,96,104,114,106,104,105,106,99,108,94,115,95,106,109,105,71,101,113,96,112,99,101,121,107,99,103,110,99,102,105,114,104,112,102,97,100,108,103,96,100,111,101,108,103,104,91,108,112,102,106,120,108,119,98,99,110,101,106,97,110,100,97,103,106,102,103,110,108,109,107,106,104,102,107,112,100,98,101,100,107,93,97,99,103,111,98,92,107,107,113,105,65,104,94,100,107,98,100,106,90,106,94,109,96,106,106,98,108,97,95,94,93,98,104,116,95,97,106,107,100,92,94,109,109,89,92,112,110,93,103,120,106,97,104,103,87,92,102,107,92,104,113,103,109,104,99,102,105,98,87,92,101,113,96,104,105,113,95,103,96,104,83,114,97,111,83,98,106,92,108,99,96,97,116,100,99,88,87,89,94,105,94,101,100,109,103,71,105,97,91,98,116,105,100,106,106,116,106,107,108,103,85,89,104,99,113,117,117,102,101,100,109,99,95,100,101,105,114,105,107,94,100,113,87,97,95,105,90,103,92,102,99,90,108,95,87,102,103,106,116,95,100,106,100,104,101,127,107,98,95,99,99,109,99,104,103,78,117,104,112,100,107,93,100,107,95,100,111,106,104,101,103,101,96,103,102,95,106,107,99,100,106,108,104,98,93,108,104,114,103,108,100,108,109,109,99,99,111,122,107,98,104,114,121,125,95,113,107,100,100,90,98,102,103,93,112,100,107,105,101,101,103,99,90,109,98,107,103,113,111,104,101,112,101,99,110,102,109,108,108,107,104,100,109,107,97,104,102,104,105,107,94,90,97,104,114,116,101,103,125,89,115,105,107,99,106,100,116,99,84,98,107,100,92,100,97,108,95,104,101,70,103,103,101,100,99,104,91,98,94,109,72,105,97,100,93,114,107,100,116,111,95,105,93,98,97,103,104,95,93,101,97,96,111,106,107,112,99,104,96,106,80,97,109,98,106,108,93,111,99,108,97,99,113,108,113,102,106,102,100,103,108,121,105,99,104,101,119,97,115,95,100,105,95,102,93,101,100,101,103,89,104,93,76,113,97,112,82,97,100,91,99,102,108,100,110,102,103,108,100,90,100,91,94,107,100,100,102,107,98,105,100,107,107,101,83,99,108,106,105,100,96,108,106,90,107,98,101,98,104,101,98,96,108,103,105,90,108,113,64,95,103,96,103,99,98,102,95,99,88,94,94,105,102,101,91,103,97,101,95,112,102,92,104,90,102,112,103,87,108,100,99,101,97,111,101,98,92,105,104,102,109,91,85,113,101,109,98,105,101,117,105,101,96,100,103,102,106,108,100,103,92,106,101,107,106,115,119,100,103,93,92,106,111,87,95,98,91,92,103,118,99,100,96,116,99,104,103,109,98,91,92,97,100,99,95,96,112,101,101,81,90,117,113,89,95,91,102,100,108,110,105,103,117,109,99,96,99,108,109,109,103,102,96,121,103,104,107,106,113,93,106,102,121,92,93,105,100,102,93,117,100,97,95,123,100,108,109,109,95,123,106,117,103, +669.46899,113,102,91,94,97,106,67,91,100,114,102,104,101,103,94,91,114,99,71,100,99,92,97,112,104,91,102,90,114,117,90,104,124,97,100,106,107,114,106,96,99,104,108,105,105,106,104,96,106,98,110,96,112,99,93,91,105,103,91,95,102,107,100,105,91,109,97,99,105,117,103,112,97,109,96,123,94,113,106,109,88,110,109,99,109,94,108,83,92,94,99,88,102,107,95,98,103,103,108,94,87,95,108,98,92,107,87,105,103,109,107,98,125,104,104,90,105,101,106,100,97,116,109,115,95,100,105,108,102,101,99,99,105,100,104,109,111,105,102,105,94,106,115,99,96,102,91,107,100,116,102,115,109,100,98,100,100,104,109,92,106,108,98,90,98,104,103,106,107,103,104,108,108,101,97,108,103,109,91,107,109,99,98,109,95,95,116,95,96,94,99,97,102,98,102,98,106,98,109,109,101,96,103,93,81,110,89,108,116,103,90,75,98,93,101,104,105,105,97,104,80,109,102,101,102,99,99,99,99,100,88,97,94,98,105,102,107,99,106,104,79,104,114,105,100,98,95,111,113,105,105,98,110,96,101,99,102,110,79,102,107,112,98,101,97,101,95,110,105,97,106,99,102,112,94,98,100,99,99,100,105,103,89,109,95,94,92,94,100,88,104,106,104,117,102,106,98,99,105,103,108,102,98,102,88,100,107,102,99,105,104,108,104,99,113,101,107,108,98,98,104,111,104,112,109,96,110,107,111,109,97,96,104,139,94,110,105,100,100,95,105,94,90,90,96,99,91,105,106,101,103,112,103,106,100,107,106,121,100,102,94,90,95,100,83,110,102,111,96,114,124,107,117,101,101,101,104,99,105,114,104,116,96,91,98,103,96,99,104,75,113,108,86,106,88,85,102,100,102,112,96,92,98,97,115,92,97,97,113,101,96,106,111,106,105,101,86,104,114,97,96,98,99,116,103,102,100,105,91,98,93,98,99,105,98,101,114,114,94,109,106,91,104,100,86,121,87,107,108,103,97,107,109,99,100,97,99,107,118,99,112,111,106,106,100,117,97,112,109,101,105,99,98,109,95,91,96,96,88,101,92,99,109,105,106,97,121,106,109,112,110,106,99,97,102,133,103,79,104,101,104,112,92,100,98,105,98,97,107,104,110,113,96,98,104,104,96,103,99,74,109,82,106,119,104,103,111,110,96,102,86,102,120,106,91,112,100,96,103,117,101,100,98,117,109,106,101,103,99,106,108,122,109,123,91,102,105,100,111,93,93,97,103,101,98,91,107,105,94,102,85,100,109,97,96,102,102,104,93,91,96,108,88,94,104,79,109,102,87,109,110,104,104,102,101,99,94,102,113,100,102,100,102,98,87,86,109,117,97,106,99,95,100,111,100,89,102,99,117,101,100,100,99,92,103,104,92,90,90,110,98,107,101,104,87,95,93,88,105,97,98,77,101,97,105,101,99,91,97,111,105,94,99,100,97,103,110,113,108,109,102,101,102,95,96,97,106,104,98,95,107,92,112,95,96,95,104,96,115,100,92,101,104,99,94,105,99,107,98,94,99,93,100,109,104,95,98,100,106,95,98,91,89,103,101,113,114,109,102,102,94,107,105,97,107,103,100,101,103,113,101,111,106,97,98,101,95,110,102,99,98,111,106,105,92,93,105,96,99,96,103,93,104,103,101,103,91,107,90,102,98,105,114,94,78,106,119,106,108,87,94,102,96,101,100,93,94,113,96,89,101,98,112,97,92,118,109,94,93,99,98,101,98,106,100,100,101,108,100,108,106,99,104,101,102,98,106,103,99,91,90,98,101,110,114,101,109,100,95,92,106,113,111,87,102,113,95,116,101,97,100,108,109,106,103,94,102,97,94,108,108,99,97,104,102,100,102,105,112,100,97,108,101,109,96,101,115,97,99,90,91,101,95,111,87,94,96,110,103,97,99,93,92,100,91,102,98,109,101,114,94,109,101,104,108,102,118,88,122,100,107,98,110,85,107,104,95,104,103,104,98,102,104,101,91,94,101,88,94,116,97,95,98,91,106,104,111,113,106,94,120,100,101,113,112,104,90,103,77,110,94,107,94,110,98,102,93,96,97,101,111,99,106,111,92,91,106,93,94,104,96,91,109,100,114,87,91,94,99,113,109,104,79,96,107,97,99,109,94,98,116,96,108,98,99,98,105,98,101,109,95,110,104,86,100,112,110,91,98,98,120,107,97,94,98,93,88,104,97,104,101,109,99,102,101,117,95,109,89,107,99,107,104,100,107,105,96,99,108,106,108,70,110,110,110,114,106,113,118,102,113,112,96,96,107,97,98,109,99,101,111,116,88,84,136,94,104,97,111,93,107,116,99,108,99,98,97,116,99,105,107,98,96,106,102,113,83,103,110,97,93,106,111,108,95,109,102,103,115,100,86,80,100,95,107,109,100,95,99,88,106,96,104,105,113,108,105,98,112,97,98,91,111,105,105,96,105,103,107,92,102,107,106,80,97,97,105,104,109,96,97,116,112,105,96,104,82,113,91,135,105,94,102,100,98,99,105,101,100,91,94,108,106,104,97,96,99,93,98,115,98,98,99,111,101,95,105,98,113,88,110,94,114,95,115,96,104,106,111,94,111,94,89,107,99,106,116,91,102,96,96,100,101,104,104,104,103,102,107,109,101,101,95,111,108,116,107,103,100,97,94,100,100,128,100,104,109,87,95,108,133,99,95,91,117,104,103,102,114,99,86,102,111,105,107,99,100,107,94,91,113,111,100,90,99,95,102,95,100,101,100,115,102,108,90,102,95,93,106,107,105,121,101,99,106,99,94,111,104,105,124,100,106,116,105,105,101,99,92,111,115,105,111,104,112,105,103,100,108,117,106,107,105,104,99,103,94,104,106,107,101,102,103,98,106,104,94,104,100,98,99,109,100,87,105,96,120,96,97,105,91,98,97,109,95,105,101,112,103,100,104,108,99,100,97,101,101,94,107,107,104,99,96,109,99,99,104,106,105,98,99,105,95,107,109,87,101,108,91,108,115,103,107,96,98,99,105,119,113,112,100,109,84,83,103,100,109,102,106,96,98,113,105,98,107,105,117,96,102,96,106,100,87,121,110,94,107,112,105,92,109,91,102,104,96,93,89,100,98,96,94,109,105,117,112,108,104,95,97,110,111,100,108,101,92,111,104,104,108,119,107,106,98,94,105,94,99,95,104,91,110,108,108,102,102,105,103,116,104,95,108,101,99,104,102,100,87,103,102,107,110,97,109,102,101,107,108,101,104,103,94,98,104,100,93,113,119,87,106,98,112,98,87,100,102,112,101,99,104,65,104,103,95,99,101,110,100,98,102,103,103,103,94,102,111,89,101,87,101,110,104,97,113,103,99,89,87,108,103,101,88,101,96,101,99,104,99,99,95,100,97,95,97,101,106,92,99,108,102,103,108,100,104,95,90,109,101,117,101,119,98,106,105,87,101,97,110,113,105,97,104,93,116,92,100,103,96,99,91,103,110,108,91,109,99,110,99,103,99,102,87,100,106,101,102,106,102,103,108,110,110,107,101,111,92,109,88,113,104,97,97,104,98,93,109,110,116,109,102,92,96,93,109,108,99,98,98,77,113,95,99,99,105,103,104,94,110,97,100,109,89,105,99,102,104,107,112,96,110,99,106,112,108,102,83,96,98,106,110,105,95,97,110,107,104,102,107,112,95,100,101,103,103,89,96,95,99,98,95,90,98,89,110,97,106,97,101,109,95,95,103,92,94,95,105,96,105,106,103,106,99,103,100,94,104,108,101,110,100,102,107,101,94,99,103,106,98,102,99,113,89,111,113,101,110,99,101,96,109,106,103,103,97,105,104,103,108,102,100,104,106,116,98,99,103,100,114,93,110,104,101,99,118,105,95,101,104,85,104,116,98,107,109,100,106,107,106,102,100,101,96,95,97,99,106,101,104,103,99,98,113,102,112,100,97,100,99,103,109,110,95,102,101,75,106,98,78,96,113,109,113,98,96,96,98,99,99,100,106,102,98,92,107,93,103,107,99,102,101,102,88,98,96,79,89,94,101,120,108,104,102,104,107,111,100,105,102,106,106,91,105,100,120,95,93,109,101,101,96,107,97,91,93,109,97,109,93,108,96,91,102,111,111,87,105,105,102,108,104,109,102,92,83,101,106,109,102,102,105,111,91,120,103,122,104,105,119,97,106,99,105,95,106,96,88,111,104,103,110,102,83,111,108,91,98,96,101,105,126,98,116,98,110,91,106,104,109,97,101,105,105,103,107,91,103,106,107,105,87,117,102,108,108,104,103,101,118,109,105,110,103,97,116,97,101,87,102,89,100,102,113,93,84,106,93,105,91,95,114,102,99,107,107,102,98,102,105,104,89,92,99,102,126,95,106,102,91,94,96,89,107,101,100,94,100,95,102,105,107,107,107,101,116,107,98,78,100,98,94,102,93,101,98,104,107,101,109,106,108,108,96,103,102,110,105,111,113,113,90,102,96,102,94,103,100,107,115,107,100,108,116,113,105,103,102,108,99,100,113,104,89,102,111,106,108,115,102,107,102,104,101,100,107,107,101,94,109,91,100,123,110,90,97,103,92,107,106,99,115,109,111,105,112,98,101,92,104,98,97,108,101,103,102,103,102,106,98,105,107,96,94,103,108,100,108,94,102,104,79,94,115,101,113,103,109,104,113,102,94,97,98,118,92,101,103,99,105,101,107,92,113,97,101,108,92,99,95,107,92,112,107,102,106,97,105,106,103,80,98,87,110,106,102,91,109,110,90,101,102,96,109,95,94,93,107,136,103,102,104,99,95,94,109,102,94,95,85,94,110,112,107,84,100,103,104,80,121,116,99,101,109,108,107,106,120,98,108,105,105,99, +669.61023,100,105,109,87,103,110,104,101,87,102,78,102,95,97,104,101,94,96,91,101,100,103,105,101,104,100,103,95,100,86,93,104,95,103,106,96,103,95,93,89,101,94,96,108,83,100,105,113,100,101,106,110,109,113,104,87,98,111,117,91,119,111,99,100,102,98,100,97,111,100,97,96,89,107,97,104,87,95,100,88,105,92,103,107,105,94,94,106,103,106,101,95,100,103,91,95,100,100,115,98,84,100,105,98,85,108,98,97,96,103,106,96,98,88,113,96,99,115,105,94,102,99,98,108,105,99,99,101,117,103,108,103,109,105,91,99,99,101,106,88,93,106,100,94,89,99,103,104,102,100,105,101,79,83,102,101,95,102,107,102,106,91,103,94,98,94,96,100,120,110,102,113,84,102,103,105,108,100,95,106,110,110,107,103,105,104,104,106,104,97,101,87,94,91,108,112,106,93,101,98,106,94,105,98,90,96,98,108,110,103,84,124,97,87,107,87,95,105,95,97,91,100,114,111,92,106,86,102,92,101,110,101,107,96,106,117,104,91,99,99,95,97,95,89,90,107,98,112,96,94,86,88,98,101,95,103,95,103,101,111,91,107,100,97,98,99,108,103,103,90,84,101,90,105,101,101,93,110,96,103,116,104,111,111,99,108,99,110,106,109,100,96,100,108,114,99,101,103,94,97,92,109,100,108,101,113,97,109,118,104,92,101,103,103,113,99,109,106,98,103,95,105,102,106,112,100,94,94,104,107,97,92,108,96,103,108,105,106,106,107,109,97,114,95,104,96,118,117,102,105,113,125,100,111,87,104,121,108,78,96,98,109,104,103,127,87,106,116,99,107,103,112,92,89,97,98,102,91,109,102,101,96,96,101,97,105,105,106,105,95,109,96,90,98,99,92,99,100,95,100,101,133,100,97,101,103,99,115,107,100,99,104,113,100,104,92,104,87,101,101,90,105,106,99,98,103,101,107,110,101,93,102,106,95,95,103,114,104,100,103,109,99,109,105,93,107,107,103,101,105,97,99,101,97,97,112,97,100,105,99,99,114,107,98,110,113,97,94,85,95,107,104,103,106,101,94,99,110,103,104,89,97,98,89,99,104,102,110,89,99,110,101,102,97,101,98,95,102,109,95,103,101,103,98,91,115,95,105,102,101,97,89,100,85,125,107,109,98,92,103,84,103,118,99,102,101,99,92,103,96,90,116,93,108,95,103,89,110,105,106,105,97,91,91,104,100,94,97,97,122,97,99,99,114,101,102,108,100,109,99,90,100,100,104,102,105,102,111,100,107,107,92,97,102,108,108,103,98,103,100,109,99,94,110,101,100,108,104,100,107,102,100,96,100,117,96,98,101,110,109,95,87,110,96,87,106,97,99,76,100,104,101,109,109,102,101,100,91,106,105,104,95,102,104,105,101,100,105,101,95,108,106,111,104,96,102,109,103,105,104,96,112,96,104,92,92,101,93,112,121,107,106,99,99,102,111,108,100,99,96,111,107,102,104,89,99,116,96,102,99,94,104,104,112,101,100,99,116,103,101,97,109,110,104,97,102,104,104,102,111,121,102,95,102,115,99,104,94,100,99,93,127,108,94,104,109,100,104,92,94,112,88,86,110,109,86,97,112,103,97,99,102,110,102,99,93,109,98,102,109,103,110,69,97,102,101,91,86,104,94,99,99,107,102,106,104,105,112,101,113,115,89,92,98,73,102,93,103,109,108,94,98,92,112,87,106,110,102,95,97,104,98,103,104,97,111,102,105,97,114,106,110,105,102,109,111,103,105,109,108,112,104,99,104,118,103,103,109,104,105,102,108,95,106,110,114,99,110,109,101,124,102,99,114,115,110,104,93,112,107,107,99,99,101,108,104,108,108,117,98,106,95,101,102,101,96,99,104,107,106,98,102,96,103,100,104,105,98,101,100,107,99,98,100,88,109,94,102,100,97,93,104,90,99,104,103,95,98,116,110,101,122,102,102,112,108,104,92,99,97,113,110,101,97,92,96,84,110,113,109,99,98,90,98,108,109,109,93,79,99,107,99,108,94,110,92,103,114,111,101,107,108,100,101,103,95,99,113,98,104,113,106,110,96,109,99,103,100,88,104,95,113,109,86,94,108,105,109,109,100,102,104,106,104,91,111,104,94,103,108,101,106,107,106,109,91,96,104,107,97,120,104,124,95,117,94,100,106,105,97,100,105,95,113,104,97,98,100,98,102,100,95,83,97,96,94,108,102,102,100,118,99,101,106,96,106,99,102,89,110,99,88,102,91,99,96,98,107,101,105,92,96,104,113,98,116,103,103,102,96,102,112,112,101,95,95,110,99,100,108,131,104,111,100,100,92,109,109,108,102,115,110,96,100,101,96,98,109,114,102,96,106,107,114,99,94,96,106,106,102,108,99,106,120,95,87,106,99,105,91,94,115,91,102,96,103,105,98,99,104,97,103,109,112,100,98,93,127,122,104,104,116,108,109,89,109,105,104,98,99,113,100,100,113,99,102,108,99,108,91,108,110,102,99,99,96,109,108,94,112,96,105,98,103,99,107,116,104,113,95,103,99,102,116,113,105,96,104,108,103,110,83,105,101,97,110,100,93,104,95,101,91,113,105,103,103,109,105,107,107,85,106,97,109,105,106,100,105,111,105,117,94,108,101,99,107,120,100,99,97,95,99,100,103,111,112,114,106,111,104,80,107,79,105,109,107,100,97,96,111,99,101,113,91,100,94,99,104,101,111,102,102,107,110,109,107,105,115,117,114,109,113,95,101,105,115,100,106,108,108,108,103,102,103,85,105,106,102,116,99,102,96,110,101,106,109,105,100,103,108,96,96,104,101,106,90,97,100,108,92,111,123,97,105,107,91,110,105,105,107,105,94,96,103,92,106,110,107,104,109,98,99,98,111,102,109,94,109,110,102,105,106,97,103,104,103,106,101,97,106,106,105,101,112,113,93,93,117,99,106,107,110,104,106,114,92,97,104,96,95,106,107,101,117,103,105,110,105,105,107,99,98,103,104,108,94,112,108,104,105,93,111,102,93,109,113,80,107,112,102,96,97,102,79,114,98,94,103,102,97,105,104,113,101,101,95,109,110,116,91,104,98,99,109,118,94,92,89,98,87,98,101,93,99,100,93,115,94,99,96,96,98,100,101,89,108,96,106,111,108,110,103,107,114,102,103,109,101,103,99,100,98,99,106,104,94,105,107,109,128,103,103,108,112,106,105,109,99,105,101,100,93,109,106,118,104,94,107,88,102,100,94,100,111,101,105,106,98,109,105,102,99,107,108,104,103,106,97,104,100,100,112,113,111,103,112,103,104,106,99,104,107,104,111,129,115,115,106,104,112,113,101,128,126,103,108,95,103,99,108,101,105,103,92,96,120,102,110,104,91,95,102,102,101,99,95,94,86,98,101,98,109,108,93,96,113,101,99,103,103,108,89,109,105,108,96,110,105,110,106,108,110,92,100,106,95,100,99,105,87,99,112,105,99,116,92,90,95,109,103,96,121,102,105,103,106,106,126,115,104,111,105,107,90,93,106,99,98,96,117,113,105,105,104,119,95,115,109,102,98,103,113,100,102,113,99,105,112,112,85,86,110,97,102,103,95,106,112,106,103,97,105,102,97,111,97,115,104,105,107,102,102,102,106,95,109,99,105,96,113,102,103,108,96,92,96,100,116,106,107,107,116,93,105,113,98,109,103,112,100,102,100,96,99,98,98,99,101,114,100,109,103,111,93,96,108,112,118,114,117,92,101,104,95,83,93,98,88,105,108,101,105,100,108,115,105,86,107,94,96,106,108,112,104,103,112,105,91,98,117,106,108,99,110,106,108,99,100,88,102,112,89,96,107,113,96,102,100,102,107,113,100,105,92,109,107,102,98,94,101,97,102,105,102,108,105,107,104,92,104,92,105,117,91,64,111,101,101,101,108,113,100,98,107,94,101,101,109,96,116,109,104,100,95,116,104,101,91,105,85,102,110,100,116,106,96,101,102,106,111,109,95,115,90,106,103,102,105,96,104,123,114,97,99,95,104,98,102,114,98,107,108,105,87,103,100,98,99,103,91,108,105,101,109,104,107,100,111,112,112,104,116,90,103,109,107,92,101,105,105,105,108,97,105,104,110,101,104,117,84,111,104,107,105,101,102,111,96,97,106,119,109,111,115,101,97,121,104,126,99,103,104,103,105,78,103,111,104,104,92,97,105,101,89,105,86,103,100,98,120,105,89,96,100,106,86,100,104,94,99,99,103,102,99,103,121,106,96,94,95,105,106,102,121,109,111,106,100,100,115,112,112,106,100,104,102,102,94,104,102,111,100,106,104,89,95,103,104,100,98,98,101,107,96,109,91,107,110,96,101,105,99,109,107,100,105,103,109,111,97,98,96,90,111,102,112,105,98,113,112,112,95,94,105,100,104,102,102,101,109,115,116,95,113,99,90,102,112,108,102,94,104,95,105,101,97,94,109,98,99,107,98,96,110,98,106,106,106,100,91,90,110,123,98,102,107,102,119,106,111,104,110,88,105,100,105,111,108,99,109,91,106,102,110,106,112,110,97,113,95,116,89,98,99,108,103,102,100,102,111,110,94,106,97,103,81,101,99,112,96,100,102,113,90,112,104,105,101,108,111,87,105,100,99,114,96,112,100,102,109,93,107,68,104,112,94,111,107,110,93,100,104,102,109,98,101,113,104,104,101,104,93,83,104,105,105,84,97,98,118,95,92,100,98,99,99,98,116,88,105,102,111,106,111,104,98,107,109,119,99,88,102,108,115,91,101,97,104,94,107,112,101,106,80,95,102,99,118,96,103,82,110,89,102,100,114,116,101,117,99,107,99,106,91,108,122,104,106,99,104,100,107,98,119,87,95,104,112,108,85, +669.75146,137,99,104,95,96,126,104,92,94,98,106,99,104,92,98,105,98,112,103,98,95,106,108,98,105,95,113,103,106,107,109,110,97,111,106,121,84,91,85,94,105,105,95,105,84,102,106,106,82,103,106,117,102,107,104,101,105,108,91,105,107,104,106,92,87,100,89,108,95,97,92,118,91,104,102,104,97,105,86,105,110,101,88,105,108,91,93,100,78,102,93,103,114,88,104,91,80,100,102,94,107,100,94,126,141,103,103,95,115,100,100,109,107,95,102,102,96,99,103,105,109,107,140,96,101,90,101,94,99,112,99,108,92,106,115,92,101,92,106,104,106,106,99,101,98,103,80,96,67,105,89,101,92,102,95,122,110,113,108,105,114,102,101,90,102,95,112,94,95,111,101,106,93,89,100,103,107,89,111,103,100,96,105,96,101,99,115,91,109,105,107,91,102,99,106,102,102,109,99,96,105,113,97,97,95,94,105,99,103,97,107,99,103,103,104,98,104,105,88,98,114,101,94,99,98,100,111,108,99,102,111,103,85,94,104,95,93,100,91,94,96,102,106,100,101,99,100,96,96,93,107,106,118,110,100,112,101,114,99,107,93,105,98,100,109,108,88,105,97,129,102,119,98,90,103,107,94,100,107,102,108,103,96,103,101,102,98,99,105,102,99,94,103,105,114,101,102,92,109,93,109,117,114,114,79,106,120,117,104,100,91,101,107,117,101,96,113,91,94,113,114,101,101,107,109,103,102,96,108,83,99,89,105,104,101,106,103,105,99,97,95,118,114,95,107,96,99,103,98,112,113,106,99,105,98,101,109,100,105,98,94,105,103,90,104,89,98,104,117,101,107,100,108,92,100,117,99,96,115,114,102,99,99,105,93,103,102,103,102,93,112,101,94,102,86,96,105,99,89,105,94,102,98,107,96,106,96,93,108,107,91,95,100,102,100,113,99,106,105,96,113,91,104,106,108,103,106,107,100,115,108,98,95,103,109,99,102,102,102,96,138,105,102,102,99,103,96,108,102,100,107,105,100,113,110,101,104,107,115,104,106,96,107,94,107,111,95,107,100,96,97,111,109,109,105,95,98,113,101,104,98,120,109,107,95,100,100,115,107,102,99,105,96,99,109,100,96,99,106,96,118,90,98,105,98,107,91,96,107,102,105,112,97,103,106,98,102,99,87,99,97,99,98,100,103,101,105,94,102,102,98,98,94,94,91,106,97,99,120,105,100,98,97,97,97,106,113,109,96,110,94,109,108,99,108,98,112,99,100,88,109,105,95,101,110,108,107,100,90,105,88,109,115,88,106,102,87,95,104,115,98,94,101,102,98,96,104,114,96,104,109,113,101,105,107,107,102,95,104,94,106,110,99,102,103,110,96,95,104,98,107,97,106,116,99,107,102,97,101,107,95,106,105,93,116,110,89,111,95,105,94,91,107,94,81,92,96,106,100,109,106,108,104,96,97,104,92,88,104,112,111,94,100,98,97,124,90,100,102,108,103,95,99,95,94,92,110,101,106,101,85,107,98,99,98,92,102,110,97,106,106,99,109,95,91,100,100,100,102,73,100,97,110,97,106,113,102,107,106,92,101,92,105,91,96,99,102,100,90,118,114,99,100,93,97,99,102,100,99,100,99,109,106,104,95,97,88,98,102,108,71,104,87,115,95,99,107,97,99,105,101,96,114,96,109,103,96,111,101,101,105,100,98,98,99,102,92,93,102,95,106,110,93,113,102,101,98,104,126,107,111,94,106,101,98,95,89,103,112,87,114,101,99,99,94,106,104,98,94,109,109,104,102,112,110,87,105,109,100,104,98,99,99,90,106,101,111,106,112,106,114,100,100,104,103,99,103,106,109,92,102,105,103,97,91,98,102,101,111,93,95,88,96,103,106,95,103,105,106,93,100,102,117,105,103,97,96,92,109,82,105,91,100,107,92,109,109,102,95,111,99,100,99,98,92,97,103,105,103,106,105,116,109,105,99,95,102,99,113,106,123,98,99,100,85,95,108,105,96,94,103,106,96,78,100,91,108,102,91,94,103,96,110,112,114,99,93,88,101,95,99,113,108,105,114,94,95,101,101,114,106,103,110,106,113,101,103,95,105,92,96,105,109,104,105,100,95,95,110,103,114,115,116,105,99,100,111,102,96,100,115,99,103,109,105,104,84,104,91,103,95,107,90,105,103,102,108,98,91,111,96,107,98,105,97,95,98,99,106,97,99,92,112,75,106,95,106,98,101,83,101,100,101,102,92,100,108,101,91,108,103,103,109,94,108,104,101,100,82,90,93,97,94,105,103,106,97,91,98,94,101,103,105,98,104,103,102,107,104,97,109,107,66,97,113,82,98,107,107,80,97,95,115,101,93,102,100,110,95,68,99,98,98,115,105,100,100,104,90,89,104,110,96,106,92,100,106,105,92,98,99,114,98,113,116,99,80,99,97,95,98,97,94,103,101,102,89,94,95,97,95,115,98,96,96,101,113,96,105,94,98,93,92,112,108,103,107,99,89,102,101,100,103,93,112,99,97,110,98,103,100,104,95,105,87,103,100,115,103,110,99,111,84,92,110,110,104,95,94,106,106,91,104,105,112,103,97,101,91,101,107,114,108,99,109,105,106,103,101,110,113,108,110,107,112,94,95,100,107,91,98,94,96,94,95,102,113,98,112,104,99,103,93,101,103,107,121,97,106,104,97,98,105,105,90,95,104,100,104,110,99,100,111,100,102,106,104,102,92,112,104,98,104,108,105,112,110,100,86,99,97,112,98,100,103,95,103,97,90,105,97,104,102,98,96,95,100,107,106,109,100,99,84,103,106,92,112,109,99,100,100,105,106,100,108,96,92,112,101,100,109,84,101,103,91,96,100,98,91,120,102,100,107,110,111,96,100,130,121,111,88,110,117,102,96,106,93,114,105,110,112,112,91,102,92,110,103,110,96,92,99,101,96,100,95,115,96,110,101,99,98,99,93,83,108,97,96,102,97,93,99,101,102,105,96,104,117,101,101,101,100,105,108,101,112,110,100,95,88,87,110,104,121,97,101,101,101,106,101,107,99,108,98,107,104,99,105,109,105,109,101,117,97,99,105,85,102,82,98,98,106,104,103,112,115,106,111,111,105,98,104,83,114,107,97,88,103,102,109,97,83,92,101,105,92,102,102,87,99,110,101,121,103,103,98,105,95,102,107,83,86,102,90,102,96,105,105,104,106,104,95,114,99,95,103,86,126,92,102,104,114,88,96,107,87,99,96,104,105,113,110,88,105,101,99,96,102,101,107,108,105,91,107,102,100,101,105,107,106,98,106,102,107,106,97,103,107,111,91,105,87,107,99,96,103,102,121,98,102,107,89,104,124,105,94,108,89,87,100,98,99,84,104,107,97,103,102,96,116,104,104,99,106,99,108,111,100,115,103,102,107,107,100,97,110,98,96,102,105,99,98,101,102,101,81,97,104,102,100,95,79,98,94,99,107,104,96,100,105,96,106,103,98,106,109,112,101,104,88,97,98,103,95,112,103,99,131,104,108,98,101,102,111,111,105,95,98,128,106,100,113,109,97,109,102,108,105,98,117,91,103,99,109,100,101,96,99,73,98,105,94,100,96,96,103,91,102,99,109,104,111,104,85,84,95,91,106,103,110,124,91,96,97,94,111,97,103,98,106,96,102,107,95,110,107,98,94,110,87,100,96,116,122,96,95,87,104,95,95,109,85,106,100,94,105,91,112,109,91,98,101,94,100,93,87,104,99,104,100,99,116,105,105,95,96,94,92,110,92,107,108,104,101,93,99,90,118,102,101,99,109,95,99,99,100,102,103,91,88,98,102,109,93,80,103,95,107,101,89,106,103,97,100,108,110,104,91,83,87,99,99,99,82,104,100,106,107,104,98,99,91,85,114,100,99,107,91,103,99,95,105,101,105,94,98,96,107,98,98,93,97,100,76,107,86,97,106,101,108,95,110,103,95,102,101,97,104,105,98,99,95,99,96,120,103,98,116,121,109,97,105,76,94,102,90,108,104,94,96,105,114,86,86,104,104,101,103,98,99,83,96,99,98,91,102,106,104,108,99,94,95,104,105,97,101,101,98,109,94,107,93,113,105,111,95,101,101,96,87,115,100,81,88,93,77,97,95,115,102,104,109,97,100,92,92,111,125,103,95,100,96,105,95,97,91,108,103,106,96,101,115,105,103,104,107,96,102,96,98,116,108,104,101,101,108,104,110,96,94,103,105,101,106,98,94,98,100,105,109,95,91,101,102,108,95,94,108,100,97,100,113,96,92,96,100,99,96,101,103,98,102,117,95,99,116,104,95,89,80,102,96,95,103,100,95,107,95,103,106,98,98,95,92,98,104,69,108,95,103,105,101,104,100,106,91,101,98,103,114,109,89,98,97,100,98,94,89,93,90,99,128,93,91,104,99,95,94,96,101,104,104,97,99,93,101,105,98,98,87,98,88,104,107,109,100,104,82,102,95,106,101,124,95,106,100,106,96,104,105,113,105,105,112,96,95,96,109,104,103,103,100,105,109,99,121,95,108,98,100,103,107,79,105,91,130,117,110,106,89,91,96,108,109,101,96,118,109,95,101,106,91,98,100,93,108,108,101,101,113,105,104,104,106,87,104,102,98,97,100,95,92,96,106,101,103,102,110,104,109,98,95,100,102,105,103,109,102,110,95,95,100,104,101,104,109,99,94,95,98,100,110,103,101,101,112,108,93,93,66,98,90,95,100,110,106,93,91,104,93,102,105,110,102,107,104,95,104,104,83,95,88,94,98,103,100,104,105,105,106,117,97,100,104,104,104,94,101,95,72,100,115,100,101,107,108,100,99,82,106,107,101,93,109,101,117,99,106,130,88,96,101,83,100,121,111,95,100,81,88,82, +669.8927,89,100,88,94,98,104,95,95,94,98,95,95,97,97,108,96,102,111,105,93,105,108,96,96,100,109,100,91,75,98,96,103,106,69,94,92,97,99,112,120,95,102,88,91,90,113,90,109,95,98,96,104,95,105,101,107,111,93,104,85,89,113,101,90,103,98,121,98,100,103,98,95,93,89,94,135,94,94,92,106,107,106,104,100,108,93,93,101,89,93,101,102,110,100,93,88,99,93,90,85,95,95,95,103,120,105,96,104,121,94,103,94,102,102,95,99,83,87,104,100,75,103,100,113,104,108,108,98,104,91,106,90,102,103,102,106,96,100,90,101,102,97,96,113,83,90,105,91,88,96,95,105,113,105,93,97,97,95,102,91,104,113,88,96,94,106,102,100,95,108,100,103,100,100,108,95,97,97,98,104,102,106,109,100,96,113,98,88,100,99,98,92,113,99,98,100,96,101,102,107,95,109,104,87,97,101,78,88,98,99,94,88,87,100,94,98,103,90,99,102,109,103,93,99,98,98,93,113,108,104,113,80,83,104,121,93,94,107,91,96,103,105,126,110,90,101,103,92,109,102,106,94,96,92,97,105,88,95,103,94,94,110,89,116,120,108,106,92,102,101,96,92,112,108,106,94,95,96,93,97,108,97,101,95,102,104,99,91,100,99,105,106,107,99,110,105,99,84,105,92,102,99,110,116,100,98,96,97,92,91,97,114,102,94,99,118,106,109,107,104,110,96,110,104,98,87,105,88,108,113,97,100,113,115,102,108,104,89,100,103,112,98,96,96,86,97,94,104,103,114,97,100,105,108,106,91,107,116,108,104,105,100,99,97,95,100,95,108,102,78,91,97,98,109,91,100,96,100,83,108,107,97,90,98,99,102,95,101,90,91,108,90,87,103,88,108,95,88,96,101,88,94,91,100,104,95,104,90,96,90,102,89,96,89,97,94,103,113,104,103,98,90,114,101,101,92,93,88,93,112,87,98,107,93,100,107,97,89,89,111,95,105,110,100,126,92,91,98,102,90,92,103,92,105,100,94,94,99,99,96,97,101,112,110,110,112,108,112,101,95,106,110,96,89,103,97,94,114,106,110,93,91,116,103,94,96,106,92,97,109,102,109,104,98,91,104,95,116,102,97,94,103,102,87,100,99,109,114,95,107,95,91,90,104,95,104,107,101,103,79,97,100,102,109,114,95,103,100,98,105,100,98,98,91,102,104,103,101,99,104,104,96,111,98,101,102,105,123,106,100,96,111,100,106,124,112,101,97,99,95,113,109,87,104,105,70,93,111,104,85,96,93,110,103,106,97,106,122,97,106,101,98,99,105,95,92,106,116,103,76,101,105,94,102,115,97,102,99,105,75,86,104,94,97,102,99,74,112,96,108,98,82,104,108,103,100,99,93,107,103,108,99,91,103,94,99,102,72,106,105,104,99,100,90,105,97,101,88,102,96,109,97,87,103,90,101,100,104,97,100,88,90,94,101,99,116,104,113,110,94,108,103,104,104,93,112,104,88,95,102,113,97,96,105,96,100,99,100,99,106,98,104,128,98,103,101,101,109,100,96,91,100,98,107,93,113,105,96,88,97,80,86,93,91,97,100,100,118,107,100,114,98,96,83,88,97,103,103,93,101,110,103,93,113,101,94,94,97,90,90,112,91,88,104,97,116,104,99,94,109,112,92,102,93,96,106,82,95,80,101,101,100,101,89,91,105,101,105,109,94,75,98,93,108,79,99,87,101,92,105,103,99,112,95,104,106,101,91,91,103,96,96,103,103,98,101,100,98,105,102,98,95,103,108,104,100,108,96,116,103,92,96,104,109,110,92,99,82,110,101,103,101,106,111,96,106,105,88,96,107,102,98,109,112,103,114,104,93,104,92,108,100,106,107,112,106,85,101,107,99,94,102,110,103,92,107,91,105,94,95,113,97,85,93,95,98,102,101,91,103,93,113,97,110,97,102,103,101,98,96,101,111,105,105,104,97,89,95,108,101,97,113,103,103,102,109,97,103,107,103,96,99,102,98,107,105,95,107,108,112,97,103,99,103,74,102,98,129,96,91,80,107,103,95,87,102,101,106,96,91,91,119,104,102,98,93,99,90,106,103,100,106,95,104,70,97,97,96,98,99,100,94,112,99,100,101,104,106,101,84,96,97,109,101,120,101,91,102,86,115,99,106,96,99,98,101,104,92,102,96,102,105,94,96,86,106,99,92,86,92,107,95,106,99,112,82,106,104,99,100,115,100,92,94,105,91,99,93,96,98,103,118,105,98,107,116,104,95,97,104,94,108,94,102,107,108,110,95,105,94,101,104,91,124,102,97,113,107,101,95,97,111,99,95,102,99,86,112,117,92,94,92,101,109,111,114,110,108,113,94,115,98,116,102,109,90,101,109,107,97,90,102,111,85,102,106,99,93,91,106,101,101,100,108,107,117,99,91,101,103,106,105,102,103,106,110,116,98,104,107,113,92,95,99,102,117,96,104,103,102,113,94,108,105,103,106,100,107,107,84,99,105,110,104,96,92,111,98,96,102,110,105,96,102,90,108,98,102,97,95,107,102,100,116,101,117,107,97,99,90,105,109,90,110,97,99,113,100,105,105,105,97,109,106,109,106,106,98,112,109,120,85,94,93,108,99,98,91,106,97,106,104,103,111,106,96,109,106,115,95,106,101,101,112,92,94,112,101,96,107,66,109,110,105,107,105,102,98,117,103,105,105,99,104,95,82,107,115,100,106,100,104,95,111,115,103,106,94,116,108,107,117,101,111,102,99,102,113,109,112,102,99,97,103,104,102,106,103,97,101,113,115,111,91,101,103,98,102,109,100,91,100,106,92,102,106,98,108,107,119,112,98,107,105,105,101,101,112,102,97,103,104,107,121,111,111,101,88,105,108,105,93,109,108,117,107,102,103,73,105,98,113,98,98,100,109,101,95,97,101,108,107,91,114,103,109,102,102,103,92,110,105,93,84,104,109,113,103,109,108,111,114,102,91,102,94,95,98,105,93,104,97,111,103,108,113,106,99,100,105,101,111,87,96,81,113,99,102,106,98,94,106,84,98,88,106,106,101,115,118,113,110,102,100,110,105,107,111,89,107,101,103,107,117,102,102,101,114,71,109,98,108,108,104,103,94,97,83,75,101,95,101,99,108,102,98,104,108,109,105,112,107,101,99,104,100,107,117,104,100,95,103,100,96,107,106,103,99,107,104,91,101,114,91,121,104,105,100,95,108,111,105,108,115,112,109,95,100,87,109,108,98,103,101,110,106,105,102,115,103,104,91,102,111,92,106,109,103,97,74,99,106,106,107,104,106,92,100,103,94,103,106,119,99,104,120,105,109,116,103,106,113,105,108,102,98,101,106,117,101,103,81,101,98,113,97,100,94,97,103,96,108,100,101,95,104,99,88,110,99,113,109,98,111,94,109,102,105,105,86,112,109,102,103,100,103,114,99,97,91,111,104,108,98,100,98,117,113,110,99,109,97,98,113,106,102,101,103,99,99,109,106,98,113,102,99,103,100,94,112,101,102,108,108,104,99,101,93,119,95,100,98,97,102,93,94,103,105,115,100,107,102,105,102,106,94,106,108,105,108,93,96,110,102,106,96,111,102,113,106,68,107,101,102,103,98,100,106,113,103,119,106,105,110,95,106,106,114,85,101,109,114,109,102,91,97,103,113,102,98,101,113,104,115,96,96,101,100,108,81,96,96,101,91,118,102,101,102,108,102,105,100,103,98,113,97,103,108,116,85,102,111,112,96,96,111,88,105,125,103,110,104,102,104,103,99,107,111,105,102,113,105,98,102,105,109,109,117,112,116,87,104,114,101,99,103,103,99,122,99,98,111,111,101,79,95,107,99,99,100,100,111,111,104,109,96,97,96,90,106,100,106,107,109,101,108,104,113,101,95,96,104,117,107,98,110,97,98,73,98,112,119,92,108,91,109,92,91,99,109,112,115,118,100,91,98,102,92,109,100,99,103,105,106,108,102,95,107,108,112,102,100,105,108,95,113,103,85,105,106,100,106,104,101,97,101,105,104,105,109,103,94,98,110,101,98,97,110,100,100,101,100,99,106,109,107,100,101,103,104,106,107,108,124,102,99,106,104,112,112,99,81,101,87,114,100,99,102,94,106,106,112,98,94,103,109,113,98,109,104,106,109,106,93,104,118,92,119,104,69,103,108,102,101,100,97,102,117,99,98,105,100,113,102,103,103,105,109,105,104,113,110,100,102,104,112,103,113,98,98,99,108,111,105,103,105,121,96,102,92,98,108,108,100,109,103,101,104,103,99,100,99,98,106,112,102,97,105,129,111,94,106,109,112,111,96,107,106,95,110,106,83,112,110,93,103,118,109,104,111,101,110,114,119,103,109,78,103,108,109,92,95,97,105,93,102,83,85,89,101,108,105,105,104,91,105,104,112,113,106,115,103,117,93,107,98,103,100,104,101,111,83,108,104,94,98,102,107,110,106,98,99,91,111,100,108,113,114,105,108,108,105,101,100,105,110,99,101,100,109,110,107,102,113,104,108,113,110,109,104,104,117,101,101,105,108,108,108,100,98,115,108,136,112,101,94,99,107,105,110,108,98,111,106,106,109,109,109,99,94,89,96,104,103,109,103,116,111,103,114,106,109,96,107,101,94,101,98,90,95,98,100,96,92,117,106,107,106,94,95,106,117,110,102,112,92,111,104,108,99,109,109,107,102,86,106,103,98,98,102,109,100,98,99,113,89,94,107,101,106,89,104,103,98,121,94,97,110,87,109,97,98,94,99,105,105,101,111,97,100,76,76,87,96,103,96,110,101,97,106,101,98,101,111,98,98,95,100,106,86,98,93,96,110,75,101,98,108,95,100,98,107,100,106,95,104,96,101,87,99, +670.034,91,87,103,86,92,117,109,88,87,104,105,110,105,90,103,106,104,113,105,101,106,71,96,105,90,108,96,113,105,104,98,90,97,97,100,106,111,107,93,96,104,108,103,92,96,95,103,109,115,105,112,102,103,110,104,119,109,87,98,83,89,101,104,82,86,112,97,109,102,99,89,83,83,100,93,104,92,91,96,105,80,100,102,106,93,90,98,119,94,99,100,90,99,90,108,103,101,90,93,95,98,106,84,93,104,100,82,105,95,111,108,97,100,93,97,105,94,101,111,112,102,101,103,100,100,101,105,94,91,109,108,104,99,104,103,100,90,97,109,99,104,109,81,95,103,93,97,114,106,93,86,96,102,102,106,97,93,94,110,91,94,105,101,100,110,113,94,101,100,106,108,95,117,99,97,97,95,103,132,102,104,96,103,106,94,101,98,109,96,110,116,98,107,92,90,116,103,96,95,102,95,105,95,92,99,99,121,116,108,100,87,106,103,109,91,101,96,94,103,98,105,106,102,96,95,107,97,95,105,95,100,113,87,108,105,111,92,96,103,96,99,100,109,92,98,112,117,109,97,110,97,95,115,104,81,122,108,90,96,101,93,109,95,94,98,113,100,96,87,96,97,82,99,104,101,101,93,104,113,100,96,95,95,109,106,101,97,107,104,111,94,96,104,100,93,96,102,106,103,110,108,117,106,112,101,107,112,107,129,100,99,133,98,110,101,96,106,93,101,101,102,95,100,107,109,97,109,102,105,101,99,90,99,100,104,112,94,105,95,96,97,100,96,99,101,97,98,102,105,92,113,101,94,100,98,102,118,107,98,117,97,117,98,88,101,108,103,106,101,95,102,112,121,112,76,102,96,116,91,95,107,104,101,105,89,104,106,89,107,108,105,98,107,109,120,100,107,91,97,116,109,103,89,101,103,98,100,98,98,113,87,94,106,104,93,106,109,84,105,91,94,88,100,106,95,74,101,97,100,102,93,105,90,102,94,97,100,67,101,101,109,94,108,102,105,105,105,100,109,102,102,99,105,105,105,65,101,107,107,94,100,97,102,94,105,105,92,95,105,104,98,103,92,116,98,101,103,112,100,110,84,98,100,97,104,91,118,100,102,100,111,95,102,98,99,103,98,98,99,101,109,111,96,100,102,103,95,100,113,102,102,91,102,95,101,106,97,106,103,103,83,104,94,101,114,104,109,113,102,93,96,98,102,125,101,104,106,104,100,108,105,105,92,99,96,101,108,102,117,107,92,108,94,107,95,103,95,110,89,106,117,101,89,91,90,109,105,98,101,94,98,93,103,98,108,93,98,65,105,100,104,100,96,91,103,108,93,95,107,93,93,112,103,100,106,103,99,116,105,106,97,96,110,108,97,101,99,104,103,114,103,96,109,103,119,128,94,98,93,105,99,113,100,106,106,98,99,103,101,110,96,100,106,104,113,102,102,93,94,102,110,101,102,102,94,94,95,102,100,103,110,108,100,108,104,98,97,105,103,106,104,104,103,129,88,105,113,109,107,101,110,105,90,97,115,108,96,94,102,88,108,101,110,99,103,101,100,102,105,113,88,96,97,114,98,109,94,103,102,107,100,88,95,101,96,92,107,96,98,100,94,99,91,111,110,101,102,91,95,95,107,87,95,99,95,96,93,100,118,117,98,101,98,97,99,108,96,99,99,111,107,100,109,103,100,100,96,99,100,92,104,102,90,93,96,89,113,106,111,106,90,110,108,95,100,98,88,95,106,85,106,98,101,88,97,101,98,101,105,109,107,99,117,104,99,109,104,109,95,103,104,99,123,104,110,83,96,103,105,92,107,91,105,100,110,115,97,104,106,94,99,101,86,102,102,117,110,103,67,100,101,104,108,102,106,83,115,92,104,93,115,88,91,101,86,102,110,102,104,110,102,96,101,102,96,100,93,108,102,100,90,97,88,101,98,96,115,99,98,107,99,100,103,88,125,111,94,94,105,91,96,103,101,109,91,102,105,96,101,103,98,96,96,97,94,92,97,89,92,110,111,101,94,117,108,101,97,104,91,100,100,113,118,99,105,106,97,105,86,90,105,115,106,103,103,100,92,101,100,100,107,106,103,106,99,96,94,100,96,99,111,96,109,94,80,95,93,93,116,92,98,99,91,103,103,81,110,99,121,107,120,107,102,99,107,106,104,101,88,104,116,93,102,90,103,100,94,95,103,96,95,101,98,97,95,107,98,93,99,99,94,101,99,93,96,104,104,94,110,106,132,101,106,101,91,102,98,95,97,107,97,90,95,92,95,111,102,99,92,102,119,103,105,107,106,107,99,106,96,86,104,100,92,102,106,109,95,104,104,93,113,98,101,104,107,99,90,97,111,103,102,110,106,91,109,101,92,111,108,112,112,107,104,102,99,104,100,98,108,86,101,96,89,102,102,103,104,100,96,99,90,104,102,103,94,105,102,99,91,94,92,98,108,101,90,120,85,101,107,108,91,110,106,95,103,105,105,102,120,112,114,91,115,96,106,108,103,100,107,97,100,110,104,93,102,98,101,105,96,100,121,97,94,106,97,97,103,107,95,104,115,100,104,102,91,96,115,101,102,98,112,102,101,102,106,101,100,98,95,117,112,97,105,121,106,104,107,98,95,102,108,103,95,88,122,111,98,101,111,115,100,105,104,101,100,109,109,101,106,105,104,103,108,103,118,76,117,95,97,100,97,113,106,111,96,98,98,112,103,86,106,108,118,87,94,103,107,101,94,99,105,105,105,97,102,104,100,110,102,111,108,100,102,93,105,95,99,92,100,107,98,113,117,89,107,104,96,103,106,114,109,108,118,106,100,101,106,102,88,115,106,106,99,113,100,101,95,109,101,104,103,105,88,108,102,98,108,103,100,109,107,106,100,80,105,98,98,105,104,99,104,83,94,114,99,103,96,100,109,104,112,102,98,93,87,103,102,105,101,98,106,93,92,96,113,96,94,107,103,106,100,102,100,98,101,105,96,90,100,103,106,107,96,104,108,85,113,99,108,104,103,91,94,109,103,102,107,109,105,92,105,112,108,99,105,108,109,109,106,111,104,75,103,106,91,98,100,104,84,103,104,106,110,92,101,95,105,93,102,105,106,99,98,104,105,91,109,91,106,97,106,102,101,113,111,99,103,93,104,104,99,112,99,97,111,100,98,98,105,108,104,107,98,105,91,107,110,100,105,110,98,99,101,104,98,86,98,113,110,96,110,78,86,84,117,108,96,102,101,103,111,102,103,106,103,101,105,106,94,100,91,96,99,116,98,103,98,98,97,96,104,105,100,110,99,107,100,107,104,109,107,107,107,96,105,108,100,104,107,106,83,66,83,101,89,108,106,101,106,110,95,101,110,104,94,110,104,94,92,94,98,123,108,96,85,108,99,99,104,117,95,116,103,108,103,97,105,99,111,106,104,94,104,102,105,99,102,102,95,103,84,107,94,96,104,102,107,100,102,93,113,101,112,96,103,79,107,99,102,107,113,108,88,116,104,113,106,99,94,94,121,112,99,100,101,99,105,108,102,109,90,105,116,107,102,101,99,112,114,116,110,100,94,98,106,110,109,98,99,95,104,96,101,104,94,104,103,104,98,105,103,107,102,100,109,99,92,107,98,111,100,95,116,110,110,104,100,120,97,106,119,90,108,103,104,106,106,102,94,106,104,115,100,111,96,91,95,105,97,100,106,95,100,98,107,101,93,113,110,93,84,111,112,100,100,118,106,100,103,106,94,96,113,103,87,105,112,100,113,94,107,109,115,104,102,91,103,100,111,115,92,97,92,103,109,109,101,95,100,107,107,104,127,104,100,93,101,105,97,102,109,116,94,121,100,92,96,96,106,99,119,100,107,108,99,101,106,101,107,93,108,99,105,109,98,94,110,98,118,103,96,99,94,101,95,94,103,98,110,104,113,95,112,99,95,107,93,94,127,98,93,104,87,100,91,104,97,100,105,101,104,99,104,106,110,102,106,96,96,111,96,111,96,98,104,98,98,103,99,104,107,99,106,113,101,105,113,105,98,105,104,98,94,68,102,87,104,103,95,107,113,97,98,93,101,96,89,99,81,91,100,94,102,117,100,113,108,106,89,110,77,100,111,95,106,100,103,98,101,100,102,105,97,111,88,86,97,109,95,106,107,104,105,93,106,103,96,96,107,89,111,103,110,103,112,100,97,99,117,98,107,126,112,108,113,96,97,102,106,111,101,104,102,91,104,98,102,122,94,95,102,103,113,111,105,105,97,106,98,100,92,94,108,97,99,102,98,91,102,105,102,121,109,93,101,99,109,100,101,102,104,105,103,111,112,101,99,98,97,94,101,94,110,99,108,103,103,97,112,96,102,88,99,94,106,88,119,108,105,104,115,109,100,103,108,102,108,82,110,117,93,97,100,99,98,106,107,92,100,93,98,99,90,97,117,91,100,95,102,117,105,113,92,104,109,99,103,109,120,101,98,99,96,108,113,104,110,96,110,96,94,99,99,123,118,106,83,99,101,104,96,92,89,105,109,102,105,99,102,95,106,94,126,103,103,107,106,97,106,111,108,96,102,104,105,105,110,100,100,106,99,106,107,107,100,81,97,94,91,107,102,91,98,109,93,114,100,96,111,74,105,105,103,105,96,92,91,98,115,105,102,88,115,95,97,98,97,105,102,80,97,102,103,110,91,98,108,106,100,104,92,117,98,104,96,101,103,99,97,105,79,113,112,102,105,97,120,95,107,108,111,103,102,101,93,118,102,122,129,69,90,95,96,98,102,102,101,108,119,109,112,114,102,100,107,90,95,103,83,100,98,93,93,93,102,105,109,101,101,86,112,108,104,97,104,105,95,107,109,107,113,88,101,106,111,89,91,101,105,91,106,108,101,124,102,106,113,93,107,97, +670.17523,102,90,89,98,98,94,101,100,87,118,108,91,119,96,86,86,103,128,112,88,93,102,101,102,98,100,93,99,96,102,107,103,109,103,102,101,99,101,98,101,80,114,94,100,98,101,102,105,104,109,111,91,96,105,89,113,88,104,102,79,104,96,96,90,108,102,92,107,95,101,99,101,101,100,93,101,110,107,97,91,104,90,99,105,93,113,105,100,100,91,101,98,93,109,101,109,101,105,91,95,104,108,91,93,91,96,87,107,100,89,103,83,94,98,105,120,89,105,107,114,103,101,90,100,107,98,110,98,118,109,102,109,109,92,91,107,101,105,105,99,106,103,98,108,96,99,96,100,93,102,96,109,113,97,100,103,100,96,114,104,103,103,122,105,98,97,98,90,95,91,93,104,102,102,110,101,100,91,107,95,110,102,108,95,97,91,98,102,93,108,98,91,97,100,90,103,121,104,101,95,93,87,94,104,100,101,87,95,107,104,98,111,105,98,99,105,105,102,92,101,108,103,92,111,93,94,87,97,107,102,93,94,96,97,104,107,98,104,97,95,113,104,103,98,98,93,93,98,109,102,99,109,91,109,99,104,109,99,88,105,95,95,99,94,101,94,106,73,107,89,102,109,102,97,91,100,96,101,111,88,111,104,109,113,114,94,96,103,105,84,92,94,92,96,101,108,103,101,99,93,98,104,106,105,94,101,111,104,99,100,95,97,98,102,107,94,98,104,109,110,101,92,94,106,117,83,100,83,102,87,92,115,101,101,101,113,102,107,106,104,91,98,107,98,89,103,98,99,100,102,100,98,93,93,93,100,120,95,114,95,99,98,96,100,108,97,121,103,91,97,112,104,105,100,103,105,95,90,96,98,85,101,95,117,89,98,95,92,99,92,110,86,100,108,93,99,100,114,110,104,107,106,89,94,86,87,97,110,103,99,97,100,105,100,92,98,101,104,118,96,102,93,98,95,104,105,103,102,92,125,101,113,96,103,99,92,105,120,115,113,104,104,95,99,99,94,99,102,111,102,99,117,118,104,102,109,107,104,108,97,112,103,101,110,109,114,93,99,99,103,90,109,101,109,109,95,106,111,90,94,121,107,107,97,86,113,87,109,103,109,95,108,107,94,96,111,95,119,114,83,109,103,106,95,111,99,99,106,101,91,112,96,90,98,100,91,101,136,100,104,104,95,90,104,106,96,112,98,106,100,101,94,98,89,97,95,100,113,104,103,106,114,111,87,101,93,105,101,101,94,105,111,111,98,110,106,115,83,100,104,108,92,93,95,97,95,111,104,106,97,111,91,106,99,110,116,95,93,91,106,103,94,91,103,109,113,105,110,112,102,96,87,105,98,104,100,95,108,120,96,95,107,107,96,113,100,97,101,94,106,105,94,106,95,113,98,104,92,104,117,87,105,103,96,89,95,109,102,93,97,97,111,95,98,91,105,105,94,98,105,105,104,115,99,114,99,98,94,109,98,90,109,94,108,92,97,106,100,97,106,99,103,111,118,88,99,114,102,96,99,113,104,109,104,106,113,99,101,103,95,118,102,99,106,97,96,104,101,94,98,104,111,109,111,100,97,104,98,101,95,77,90,95,97,97,93,102,106,96,107,114,97,102,109,97,99,103,117,100,113,102,104,107,107,95,90,95,116,102,99,101,105,105,102,91,98,101,100,107,109,94,114,117,104,99,98,113,104,105,116,108,99,101,119,104,107,100,92,112,89,99,98,96,102,96,107,104,95,106,96,103,104,99,96,102,87,104,92,97,105,98,110,112,107,107,104,105,97,99,121,106,100,103,107,102,98,118,110,114,112,102,90,94,105,114,110,97,114,94,112,112,92,99,100,105,105,97,106,94,95,109,106,124,95,96,103,107,121,91,98,110,99,105,100,97,103,108,104,100,100,102,114,113,93,103,100,99,105,98,91,96,87,104,111,100,106,99,95,100,100,104,109,103,102,87,106,95,104,107,114,100,116,96,99,98,96,99,112,86,96,101,100,88,101,114,109,99,121,105,103,102,108,103,109,103,84,97,100,102,103,116,103,107,112,99,91,113,109,103,107,110,112,104,108,100,94,101,107,95,112,109,92,98,90,95,100,104,106,91,93,102,110,105,107,106,104,108,90,102,92,105,103,90,96,94,88,107,99,108,110,109,99,85,112,106,105,119,97,98,116,100,91,101,108,109,120,97,98,109,105,83,96,66,94,110,97,68,94,111,94,107,104,93,112,103,102,102,93,103,87,100,98,109,95,103,107,99,91,89,111,112,90,104,102,117,106,107,113,104,109,95,98,101,107,100,102,99,96,93,98,109,107,91,95,86,99,101,99,92,100,104,105,109,95,105,104,102,106,108,102,106,109,97,108,99,95,98,102,108,113,97,115,111,119,112,110,96,101,99,96,103,102,97,100,110,101,92,101,104,95,92,99,101,102,101,99,99,92,87,97,106,100,99,100,109,80,99,105,106,108,97,105,114,89,103,100,101,87,93,110,109,91,96,101,98,114,86,109,101,90,104,104,102,99,105,93,98,102,97,103,111,96,101,111,112,94,101,102,114,106,108,107,98,91,95,98,108,111,92,90,104,108,108,103,96,108,106,109,116,96,112,115,104,113,107,110,96,105,103,111,104,91,101,99,96,103,109,100,104,100,106,91,105,110,101,108,93,103,109,100,109,112,92,95,128,104,106,96,98,108,111,109,112,105,105,107,110,106,105,97,108,108,115,113,103,73,108,110,109,98,106,106,108,106,105,100,103,98,107,106,113,112,100,109,103,100,102,113,113,98,102,103,77,97,103,106,109,112,107,104,113,82,113,99,111,93,112,106,101,106,111,102,100,104,107,99,103,106,101,117,118,109,97,96,104,101,100,102,102,111,111,106,108,113,113,116,105,112,89,99,101,96,120,107,109,97,103,109,114,105,106,104,105,106,97,105,101,112,114,96,99,106,104,103,100,109,99,113,108,109,102,105,96,117,103,97,106,108,105,114,109,112,103,99,67,108,114,101,88,100,99,99,93,105,114,66,94,100,105,96,100,105,122,109,109,93,112,109,99,109,114,102,96,107,94,94,103,96,101,101,106,121,106,94,111,108,108,98,103,107,107,103,101,121,110,95,104,107,82,94,110,107,99,106,100,102,107,87,99,100,96,97,97,107,109,97,110,80,117,108,111,96,105,96,102,90,112,110,94,102,97,104,109,113,101,98,86,103,93,110,98,115,87,110,93,113,124,95,100,107,105,101,102,114,99,105,107,98,110,96,99,102,101,111,96,91,96,95,97,112,99,103,118,98,89,96,107,97,104,103,104,98,103,108,102,110,101,101,111,105,97,96,95,100,95,101,112,104,112,101,94,93,96,107,98,102,96,84,98,93,104,105,96,98,106,103,98,113,111,100,105,103,98,108,101,99,111,102,104,107,104,97,106,93,113,100,94,69,97,89,91,97,103,119,106,97,103,100,107,102,109,111,110,132,106,130,105,105,102,96,101,104,105,112,98,109,92,93,108,104,104,95,109,102,99,112,101,98,105,102,105,105,104,121,110,108,104,96,106,111,109,97,97,106,99,94,113,108,112,94,98,110,105,111,102,94,104,96,97,110,114,101,103,105,96,101,108,95,117,103,104,98,97,91,101,98,106,121,108,119,106,103,112,103,107,102,98,112,109,99,96,111,98,106,107,104,96,109,109,106,100,121,106,97,105,112,97,99,103,113,98,102,115,99,99,110,107,102,91,110,101,94,104,105,101,96,101,103,103,102,101,108,91,106,93,101,108,93,113,111,87,109,101,106,92,105,102,102,104,102,123,103,94,99,116,100,97,98,108,112,103,106,96,100,101,100,96,104,104,85,87,117,108,100,113,99,105,97,100,94,105,93,106,95,97,102,92,90,105,107,109,91,94,104,96,110,95,93,103,99,113,102,110,101,105,100,100,112,101,113,100,102,113,110,95,102,98,108,100,104,95,102,96,101,95,94,102,105,101,102,99,100,97,102,106,87,97,104,107,92,102,98,89,114,97,108,112,94,89,102,105,90,90,104,103,108,103,98,117,113,85,108,102,99,103,102,100,95,91,113,97,93,91,107,106,108,101,116,97,94,98,93,117,100,106,103,99,91,110,107,100,98,95,107,100,109,82,95,101,98,102,111,79,112,104,102,109,72,86,99,109,104,106,99,99,107,112,106,99,97,100,103,106,101,91,96,101,102,104,109,105,98,104,102,98,108,96,104,111,87,97,99,103,102,115,104,92,106,114,108,99,103,105,102,105,104,98,91,94,94,102,99,90,109,97,100,108,107,97,107,113,100,107,98,107,109,111,100,91,104,104,86,105,129,105,91,97,86,103,109,102,92,98,103,103,107,99,108,106,109,105,127,108,79,105,108,100,112,114,97,98,79,108,119,92,106,96,91,99,111,95,116,93,99,104,96,60,99,98,103,121,100,102,100,108,95,101,99,103,99,97,95,103,95,114,89,94,108,99,106,97,116,99,97,105,105,110,110,104,99,96,93,124,102,108,114,101,116,101,92,95,113,106,105,98,98,106,102,100,103,113,97,105,101,94,102,98,110,105,98,100,106,113,102,99,98,104,108,89,111,92,102,109,117,96,100,109,105,95,105,102,106,107,101,113,89,107,100,131,100,98,102,106,109,104,110,107,99,83,108,95,109,90,112,103,105,96,102,101,100,98,101,106,99,114,101,98,102,92,97,93,97,94,107,104,80,105,95,110,102,113,102,110,108,96,106,87,106,88,95,98,99,109,101,100,97,108,133,111,101,108,95,98,95,93,107,108,98,104,106,99,100,102,102,113,102,95,115,111,100,112,98,96,105,94,103,96,85,102,101,113,99,109,102,94,111,106,110,103,102,117,94,103,106,108,99,82,100,103,92, +670.31647,107,98,95,97,90,106,95,92,97,111,97,103,112,91,99,96,94,86,93,94,106,85,91,101,88,99,96,97,96,109,71,85,105,101,103,76,105,86,98,114,96,97,98,97,101,98,96,118,90,96,103,93,105,101,105,113,63,97,90,96,106,99,109,95,94,99,99,104,107,107,109,113,91,114,91,106,98,95,113,96,102,100,103,92,98,96,97,104,90,105,91,93,112,105,95,101,88,100,103,100,101,104,93,98,97,108,113,105,101,98,94,91,105,97,89,95,91,83,86,108,93,101,112,88,109,103,82,96,103,100,102,109,105,107,109,99,101,98,103,102,94,104,109,97,97,92,103,108,106,103,106,76,108,93,94,85,93,100,102,110,94,96,98,96,95,104,117,93,94,110,104,102,89,106,95,91,97,99,117,99,103,100,88,96,92,85,108,91,102,100,103,103,106,107,96,86,114,102,107,106,97,105,90,101,96,102,95,103,113,98,108,82,107,103,106,96,102,103,105,109,92,95,94,102,96,95,99,107,95,106,107,103,106,121,105,102,93,103,100,104,102,94,94,92,104,85,101,89,91,106,96,93,96,103,102,99,87,97,90,82,92,102,112,94,88,107,104,109,104,101,99,94,111,95,112,101,106,104,90,107,101,98,90,96,115,92,96,102,101,106,104,117,107,101,94,112,121,96,89,111,89,115,98,98,100,107,116,110,108,106,113,100,109,111,86,104,95,95,105,97,90,92,121,102,106,102,99,95,117,106,89,100,103,97,90,101,92,81,105,105,89,91,99,103,100,106,103,106,90,94,104,108,102,101,102,92,76,106,106,101,92,101,84,103,112,104,95,96,102,109,99,95,103,113,105,93,112,98,99,112,108,103,96,85,97,87,99,105,106,99,106,95,101,109,87,89,95,109,87,111,93,100,96,96,106,92,104,99,94,102,101,94,95,102,97,94,97,95,102,108,98,113,102,98,102,104,85,101,103,108,92,99,108,89,101,106,100,99,95,95,110,105,93,111,90,98,97,85,102,100,107,91,106,101,100,107,104,123,106,95,70,100,108,96,96,135,98,102,93,101,94,100,93,92,110,93,90,116,102,88,96,99,95,98,107,92,98,100,101,106,116,114,96,91,97,115,108,91,98,99,95,106,99,98,106,101,95,101,104,93,106,122,98,100,99,91,91,96,89,94,98,90,102,98,109,104,103,94,99,98,86,99,98,78,99,115,117,96,96,98,88,105,101,99,109,101,104,102,102,96,91,121,74,100,94,103,101,109,87,98,94,99,105,94,103,103,112,98,89,92,92,88,94,96,101,107,99,97,105,100,102,88,98,99,110,99,107,103,99,104,105,98,99,92,114,125,107,111,104,96,100,95,93,92,95,90,101,125,108,108,114,104,102,101,102,94,96,103,106,101,94,106,105,87,114,99,105,106,106,104,105,109,98,115,100,102,89,98,95,97,103,104,99,103,108,101,87,96,110,108,94,110,93,117,106,91,107,101,98,104,106,112,95,107,103,92,97,101,94,107,94,96,102,102,102,99,89,97,102,95,95,102,97,102,98,92,101,110,105,105,98,110,96,99,114,94,101,95,103,93,95,95,108,114,112,94,108,112,114,101,101,101,110,92,95,105,101,101,116,98,99,101,95,97,93,94,103,113,111,107,112,104,94,91,100,100,86,102,107,98,97,100,107,91,81,109,105,94,105,79,102,101,110,107,94,93,97,99,104,89,110,112,97,102,93,102,94,92,100,82,97,105,102,98,102,84,101,95,97,99,92,112,103,91,107,102,110,107,114,104,108,108,100,94,88,91,96,105,82,60,111,91,87,110,110,107,112,103,109,104,102,90,95,98,78,101,112,105,103,96,100,105,105,101,90,96,114,103,103,100,101,96,92,105,96,106,101,116,109,105,94,105,109,94,92,101,109,90,94,103,100,105,91,104,94,98,95,91,101,102,102,105,106,93,103,104,78,101,109,107,110,112,98,102,97,102,101,94,103,101,97,94,102,116,99,113,86,95,103,94,103,99,107,93,103,94,89,108,106,112,100,109,91,100,95,95,101,109,91,97,98,108,94,99,90,100,102,92,95,101,92,85,120,101,104,92,94,95,95,102,87,90,105,105,107,104,92,92,95,106,99,93,92,103,100,103,99,102,110,107,99,94,107,108,105,103,110,104,97,94,105,97,100,105,99,102,84,70,90,109,88,110,94,116,106,95,95,92,110,100,89,104,97,97,119,102,105,84,94,99,101,99,96,105,96,112,99,89,94,103,101,89,98,112,105,98,96,107,106,96,93,105,100,104,95,112,109,99,113,98,100,99,100,86,91,91,111,98,104,112,95,106,92,101,100,104,115,100,97,94,116,90,103,112,114,106,105,87,102,110,102,100,110,109,98,104,101,102,110,100,97,93,101,99,101,109,103,99,100,105,96,97,96,91,111,99,105,104,83,91,85,106,96,101,104,98,93,91,111,97,103,104,110,101,86,102,90,124,107,95,101,99,107,90,92,77,106,114,102,102,96,105,113,96,93,95,103,111,106,108,97,101,99,97,102,92,102,122,99,100,102,106,105,78,104,105,103,112,94,102,102,99,108,103,103,107,95,104,106,106,106,113,101,94,97,101,111,116,84,108,96,94,107,100,75,107,111,90,100,104,104,101,104,97,110,92,107,108,106,103,115,93,98,104,99,102,112,101,101,87,93,92,108,99,105,99,102,107,94,101,102,106,98,100,98,103,110,99,93,102,117,101,99,101,102,96,110,106,100,95,107,111,108,95,92,100,99,103,99,105,98,112,101,99,117,98,108,99,108,108,108,98,108,95,105,107,100,111,108,95,104,107,108,102,97,103,102,97,91,106,105,104,101,111,108,88,87,98,92,107,114,96,102,117,106,96,127,115,108,102,88,110,99,96,97,96,102,105,112,102,100,114,93,95,96,105,109,95,102,99,109,104,94,100,106,97,99,105,95,99,100,109,95,104,101,108,113,105,94,92,106,101,94,108,98,106,99,101,79,87,88,109,91,104,104,107,103,112,95,107,97,117,100,102,94,100,105,98,103,100,103,97,80,113,100,105,114,100,99,112,115,116,92,108,99,91,89,106,109,96,85,99,101,104,110,102,102,110,114,97,102,98,101,98,100,92,91,108,79,96,92,86,109,97,103,113,103,99,100,99,101,116,108,121,106,99,87,104,102,101,97,101,96,105,98,89,87,107,92,100,89,105,90,89,102,99,111,96,98,113,102,103,105,102,100,89,98,122,98,124,96,90,85,101,102,100,100,96,100,99,111,91,91,104,85,103,104,88,94,100,102,97,102,102,102,99,108,98,102,102,98,95,92,98,94,110,99,96,95,97,102,98,95,98,111,110,101,104,100,87,89,90,96,92,100,74,98,94,102,100,96,101,105,102,96,89,93,95,73,108,113,103,104,100,113,99,100,100,97,106,101,116,96,75,92,102,98,91,108,90,116,106,113,84,102,105,103,98,107,105,100,97,95,100,98,100,106,115,97,113,109,98,109,107,106,109,100,101,96,109,101,99,101,105,96,98,98,102,105,103,98,88,103,115,94,103,113,113,106,95,94,107,98,122,106,102,107,107,98,109,95,98,101,106,102,101,109,102,99,107,99,102,99,107,104,105,100,98,94,104,104,95,97,101,93,91,105,107,109,101,108,105,102,97,94,101,93,100,105,106,106,104,100,102,104,89,101,103,107,100,93,79,109,101,104,95,106,101,89,98,101,101,102,97,101,92,94,103,110,90,95,92,100,102,95,94,92,106,108,116,75,95,98,113,99,97,112,105,106,106,102,106,107,95,108,101,103,63,107,99,98,102,110,104,121,102,113,97,99,99,62,108,110,102,106,111,107,96,115,102,106,99,126,97,105,101,103,118,98,113,93,96,101,111,94,87,92,138,103,93,117,97,94,109,106,101,109,96,101,107,103,91,106,108,89,110,102,92,107,107,95,96,112,95,87,105,99,95,95,109,104,105,108,117,102,113,98,115,112,108,102,112,95,93,99,105,104,96,105,113,96,95,101,100,87,106,110,117,108,91,108,97,105,107,96,96,96,100,105,102,106,98,106,103,104,99,102,100,112,102,108,94,106,100,105,107,103,102,97,97,105,127,100,93,120,116,96,105,105,96,91,98,104,92,104,98,113,105,94,95,108,108,99,99,102,109,128,104,91,104,113,97,97,98,99,99,103,98,100,98,95,107,94,99,97,106,113,106,98,107,107,99,113,100,99,107,108,100,97,101,103,113,92,97,116,103,92,88,101,103,99,90,113,105,95,90,95,101,94,93,100,102,106,102,119,99,109,81,105,94,109,94,96,101,76,97,105,98,100,112,96,96,105,92,103,97,104,113,92,104,89,105,102,99,99,89,102,98,102,108,95,104,97,112,98,113,98,94,101,99,124,112,101,92,92,105,87,97,100,102,106,102,112,102,92,96,110,103,96,92,97,98,98,102,101,100,121,96,98,104,79,105,100,110,99,102,89,104,114,98,106,95,98,88,108,105,87,109,101,98,102,121,97,100,94,99,98,111,96,97,100,111,105,93,105,96,101,96,99,95,104,87,87,101,101,103,92,98,105,101,96,106,98,101,102,106,99,97,96,111,88,101,105,102,87,99,93,101,113,109,97,103,101,111,103,105,122,98,97,97,99,96,99,104,100,87,100,97,96,96,101,98,106,99,113,109,109,95,98,95,104,87,103,109,91,94,108,92,111,106,101,105,102,109,103,104,90,104,105,111,93,108,107,91,101,108,108,94,103,100,95,100,94,81,100,110,79,102,102,108,115,106,97,83,100,103,87,107,94,100,98,105,96,93,95,98,100,94,91,105,107,87,86,104,102,74,102,101,105,91,116,103,91,98,102,114,99,109,101,90, +670.4577,110,114,98,91,106,102,110,97,97,105,91,95,102,93,86,94,91,108,98,100,102,90,108,99,94,101,90,112,103,89,96,94,95,103,110,101,96,102,89,91,96,118,102,101,98,106,100,104,101,85,110,98,101,95,89,105,116,77,108,93,95,108,94,102,97,100,101,108,96,96,105,66,97,101,107,95,108,102,94,87,92,105,92,101,100,83,97,105,97,95,103,106,97,96,102,117,108,116,105,97,92,105,101,96,109,96,94,78,105,102,99,99,113,117,90,105,97,101,102,111,104,99,129,100,102,93,88,86,107,107,100,124,97,131,97,104,102,104,94,99,103,121,91,109,90,111,113,101,88,99,90,88,106,101,97,107,76,97,105,96,98,121,99,97,95,97,95,97,102,102,101,113,96,100,101,80,94,97,127,108,93,108,110,96,105,104,91,103,103,96,100,104,100,95,109,101,109,105,107,99,111,97,103,109,105,102,106,92,102,84,89,101,100,100,93,109,115,91,101,110,105,101,104,100,96,115,106,107,98,80,111,104,98,91,99,96,96,103,104,98,89,93,108,108,92,90,101,102,90,106,103,110,99,112,91,98,99,108,95,107,71,101,69,104,97,107,94,104,99,90,96,99,95,96,107,94,104,104,83,98,95,106,98,107,101,92,108,102,94,98,99,104,103,94,96,95,99,100,88,99,103,95,93,115,98,103,99,114,116,98,105,106,99,89,92,87,99,103,97,82,96,92,89,98,119,104,94,93,105,99,96,103,92,84,92,92,113,102,105,99,101,98,96,93,89,99,106,73,98,109,102,117,109,101,100,94,101,94,92,102,105,104,84,92,107,100,117,82,97,102,95,92,107,91,91,95,99,113,109,95,107,113,92,98,112,92,96,108,108,69,121,99,97,108,96,104,97,108,101,109,103,106,83,105,107,101,104,107,105,105,102,88,95,102,104,101,104,104,111,96,99,94,101,108,95,101,108,104,103,114,95,117,82,105,98,106,96,100,109,88,101,108,95,96,97,123,94,100,109,100,94,96,105,99,97,92,103,98,100,97,106,104,110,110,109,99,83,95,95,103,99,105,100,119,106,100,100,109,95,112,95,93,99,101,108,97,103,96,100,113,108,104,108,105,97,103,108,96,97,88,99,104,98,95,106,102,75,96,95,89,91,105,107,100,111,107,104,92,90,108,105,112,92,100,89,102,96,103,89,104,90,107,94,125,117,94,97,96,97,94,97,101,120,91,106,104,107,94,107,104,104,104,109,102,98,99,110,95,90,111,94,112,77,86,99,105,101,107,90,87,96,105,100,105,88,93,93,99,103,91,108,103,71,103,94,97,110,107,103,107,91,100,91,92,100,98,93,93,101,105,102,100,98,98,95,108,107,100,109,102,99,100,102,110,97,97,108,104,86,123,98,106,113,102,105,110,87,94,99,99,93,104,105,105,89,98,101,89,103,98,102,125,97,111,115,90,102,94,114,105,101,105,106,105,95,93,119,81,101,96,93,97,99,98,101,100,104,91,102,91,101,105,86,94,103,104,96,87,103,99,98,102,96,97,93,125,94,106,102,109,98,98,97,94,96,102,111,98,96,100,99,107,109,113,92,106,99,102,100,105,105,108,98,91,97,104,107,91,109,110,103,87,99,95,103,88,102,105,106,112,93,107,100,103,105,111,107,98,99,104,98,98,122,99,104,93,96,101,107,103,110,66,97,113,99,105,100,111,89,101,104,111,95,103,89,98,95,101,91,86,107,115,102,87,97,111,109,102,99,97,89,86,99,107,99,112,102,114,103,102,96,106,102,101,90,111,94,99,60,100,92,93,105,97,93,99,115,100,97,90,106,99,85,99,104,111,111,102,109,101,104,87,97,95,106,102,93,104,105,94,107,99,73,95,92,107,108,95,108,94,101,103,90,99,99,101,101,89,97,102,99,87,106,100,99,105,102,92,92,109,107,105,100,92,98,91,103,96,103,105,102,103,99,96,88,102,107,95,100,101,105,109,107,112,100,102,100,107,101,110,110,99,107,99,113,107,101,89,113,103,112,102,107,91,103,108,91,108,98,106,107,112,100,104,92,101,113,96,112,105,103,98,101,97,91,102,71,96,108,92,104,76,98,105,102,106,93,101,90,104,93,100,104,101,103,104,113,89,96,88,102,99,103,105,94,100,104,116,95,92,98,105,97,103,93,96,98,108,99,100,91,108,102,105,81,116,109,97,101,104,92,107,95,91,95,96,97,97,99,115,113,96,101,96,97,100,95,110,94,102,109,96,100,93,122,101,95,112,105,106,92,101,97,103,97,73,86,105,104,97,103,105,113,110,121,96,99,99,99,111,106,106,103,97,104,91,103,100,107,105,95,99,106,113,88,98,117,101,98,102,110,103,101,98,108,101,101,110,96,99,99,112,106,92,108,104,87,113,89,93,90,111,102,95,112,97,111,111,95,95,99,96,104,108,99,108,98,111,112,105,97,89,107,91,97,108,109,108,104,107,94,94,102,109,105,102,91,96,94,112,104,105,103,101,128,98,107,102,91,100,98,89,99,101,96,108,92,103,102,110,108,98,95,100,101,100,88,97,99,88,107,107,98,101,98,102,100,105,98,97,102,104,112,101,106,106,102,102,97,103,99,95,103,92,102,104,100,100,103,102,99,95,94,99,112,95,112,103,105,107,99,94,109,106,100,102,111,97,102,102,105,99,121,109,96,103,103,96,106,111,113,106,105,103,102,98,107,104,82,103,113,95,106,110,99,99,103,106,98,102,87,103,79,103,103,98,99,82,103,103,92,117,96,107,96,104,119,107,101,107,110,99,99,106,92,95,107,100,106,101,105,92,100,112,112,99,97,101,115,115,104,94,104,101,98,103,104,99,121,121,106,106,106,104,98,81,103,102,96,108,107,104,107,109,94,103,110,91,90,98,104,108,93,109,101,99,92,73,98,98,106,107,102,106,100,96,109,110,103,101,91,104,97,94,108,123,109,103,101,99,126,114,90,113,106,105,105,106,89,106,112,91,99,103,109,92,92,106,94,107,89,106,99,102,105,100,100,101,110,103,77,105,105,116,104,95,106,99,99,81,82,103,95,112,109,102,106,113,104,88,117,109,95,107,113,101,100,93,90,100,109,103,107,99,103,107,100,99,81,91,91,88,116,104,107,104,101,109,106,99,98,95,95,108,105,99,100,103,98,102,106,90,91,103,111,99,99,77,108,95,93,92,104,100,95,99,106,92,102,105,105,105,98,120,97,113,96,125,99,123,100,99,102,101,110,106,91,93,103,103,106,105,110,99,99,92,110,95,101,119,103,102,107,96,104,109,105,72,102,102,103,107,103,98,110,109,108,105,115,108,103,99,103,101,99,98,114,103,99,102,121,100,111,106,112,98,108,107,112,95,104,108,108,110,103,97,110,113,76,102,108,106,108,101,96,111,105,75,109,114,103,101,103,95,102,96,99,102,101,99,98,102,92,113,109,112,113,103,112,116,115,110,103,106,110,103,95,109,106,97,116,107,94,99,113,87,104,102,95,95,101,104,122,100,99,106,94,93,104,118,102,107,102,120,105,105,110,105,110,104,104,107,94,102,103,109,98,106,106,101,91,109,101,109,99,99,114,90,102,94,102,108,106,101,103,94,111,107,109,105,98,113,104,106,98,94,103,97,104,104,115,110,118,111,107,95,102,104,96,98,104,106,103,108,99,96,106,113,105,99,113,105,118,99,113,115,104,104,95,103,98,101,109,99,89,109,98,99,106,112,108,101,105,97,100,96,107,101,105,99,99,101,97,103,67,95,94,106,106,108,96,105,109,96,99,110,99,104,103,111,100,99,109,97,100,105,89,96,106,109,97,93,105,101,99,98,104,96,108,97,103,113,107,106,109,94,109,95,99,103,99,103,102,85,107,113,105,103,101,76,98,101,108,94,108,107,95,91,97,105,103,100,99,99,98,101,109,96,100,109,109,109,101,105,103,100,97,99,98,91,101,100,95,105,110,96,109,101,112,99,77,105,100,107,104,95,97,98,98,100,104,103,94,93,109,114,128,107,105,87,103,98,98,100,101,99,109,107,101,108,117,106,118,115,99,111,107,103,104,99,98,96,96,104,100,106,103,101,97,100,104,101,97,88,120,106,99,100,95,108,117,97,99,99,109,131,100,91,98,94,106,98,94,115,89,102,102,101,101,124,110,105,110,104,105,109,107,102,94,101,76,92,106,94,95,105,108,102,93,94,88,82,109,94,109,100,99,99,102,102,97,90,109,95,105,105,100,104,108,108,101,105,97,99,106,104,109,112,113,112,104,109,113,98,109,111,103,111,95,115,98,109,102,79,103,102,101,100,107,100,77,105,112,116,96,102,109,111,116,105,103,100,107,103,107,107,100,99,106,106,84,95,97,108,105,104,108,106,110,94,103,104,105,93,111,104,100,106,96,100,102,121,95,93,110,91,104,98,93,108,105,89,101,101,101,99,93,110,98,92,95,108,102,85,101,96,83,95,100,103,105,91,100,97,97,91,112,102,101,98,91,106,102,101,95,109,107,96,105,111,110,113,100,85,89,96,101,91,96,99,82,93,111,114,98,102,94,95,94,106,102,114,87,95,104,116,88,112,105,104,112,108,104,105,101,99,101,115,101,100,108,109,110,98,100,141,103,100,105,109,92,97,96,101,102,105,106,98,99,97,110,102,109,110,102,101,91,107,94,95,100,106,88,93,105,81,106,94,70,114,102,95,100,105,113,101,96,96,104,96,96,105,111,113,103,98,105,91,92,92,92,104,106,105,108,115,95,105,98,104,120,102,93,83,101,107,105,113,92,111,104,98,97,112,96,101,94,104,110,93,99,106,124,93,103,105,96,104,117,98,106,95,99,104,100,117,96,109,91,96, +670.59894,104,110,92,95,98,106,107,117,84,108,91,100,103,91,100,97,95,98,104,102,110,97,96,95,107,100,91,100,106,108,112,97,96,105,103,110,92,82,95,97,85,104,102,104,104,103,109,98,95,117,99,88,88,99,108,104,100,93,94,98,91,103,88,96,87,95,96,103,96,100,96,108,96,107,80,91,90,99,96,110,122,106,100,106,94,86,112,98,82,96,105,105,98,104,103,108,87,103,92,106,88,110,107,106,96,114,87,100,119,106,105,101,99,103,96,96,80,104,102,106,96,99,86,107,92,97,86,97,97,114,83,105,95,104,108,104,105,94,96,97,97,110,93,99,108,93,93,98,98,104,86,99,105,108,87,104,92,94,95,98,98,94,101,90,100,114,96,99,105,90,94,106,92,118,101,96,93,97,107,104,97,83,99,107,106,88,86,89,97,129,111,104,103,104,90,85,101,97,96,93,103,103,109,83,110,98,83,104,104,102,114,105,100,87,103,114,91,100,80,92,102,101,102,106,105,105,124,104,104,105,92,100,98,100,96,102,101,96,87,89,101,97,102,91,93,76,100,116,116,102,106,85,98,107,103,79,96,104,97,106,66,101,102,94,98,100,93,100,98,104,104,110,100,103,106,105,106,105,99,95,91,110,86,106,107,105,99,90,89,94,114,97,111,105,106,107,104,105,104,96,103,104,99,115,95,107,106,102,99,106,95,115,108,104,110,98,105,112,108,100,98,121,100,126,113,82,100,100,108,103,108,99,103,104,102,108,95,100,96,104,115,96,104,109,98,97,96,93,86,99,95,102,89,99,102,103,106,98,114,100,110,109,101,100,98,101,95,105,95,97,96,92,108,95,100,108,94,107,100,98,98,96,91,105,93,103,95,101,98,97,103,100,100,105,97,105,108,100,109,100,107,105,97,90,98,98,101,96,101,107,97,94,92,94,104,105,93,92,93,99,99,108,89,98,95,103,104,85,93,75,98,101,95,100,96,90,103,99,100,109,109,97,103,100,91,94,93,100,97,107,95,96,111,100,106,107,94,101,102,89,110,113,99,107,110,101,89,91,120,96,91,102,104,114,94,100,98,94,110,99,94,97,105,93,95,98,91,105,105,97,95,110,131,113,96,100,93,97,87,99,104,90,103,109,102,113,92,97,106,95,109,117,91,103,97,105,100,99,100,90,97,106,106,94,101,91,112,99,105,110,98,92,94,87,113,103,99,95,102,117,105,104,104,89,104,99,102,98,101,101,99,96,82,97,98,100,109,92,111,93,97,92,96,106,93,104,102,95,76,98,90,102,106,102,108,101,81,96,93,94,98,98,93,88,102,105,108,101,101,98,116,102,96,105,105,97,108,105,110,98,105,100,96,101,100,98,104,84,99,101,105,85,98,108,101,79,101,92,95,99,98,114,107,96,95,100,96,94,109,106,107,96,102,105,106,102,108,117,100,101,99,94,101,100,98,84,92,101,103,110,95,97,105,104,91,101,108,99,103,109,97,106,104,104,96,97,109,92,102,109,115,90,102,82,125,111,108,92,95,96,115,98,105,95,99,98,104,94,117,100,110,106,102,100,106,90,103,100,107,88,100,100,94,110,99,95,103,102,102,100,100,100,106,122,105,100,96,95,98,98,85,103,96,108,96,89,95,104,88,112,106,94,90,88,94,98,97,110,109,114,117,101,100,108,95,104,109,103,96,101,111,99,97,105,99,91,88,95,106,92,110,106,95,105,91,94,101,91,102,102,104,101,102,103,91,110,112,91,95,100,106,117,101,104,108,90,94,96,101,107,101,97,95,110,97,108,97,95,102,96,103,100,113,93,105,101,98,99,111,105,115,93,97,97,98,129,114,101,97,98,89,104,100,99,102,97,89,104,100,105,111,106,90,95,109,99,105,94,96,105,103,100,113,111,98,95,112,91,93,108,90,96,99,117,91,99,103,95,108,105,97,96,110,97,92,110,89,129,103,108,102,98,81,118,105,98,104,103,99,95,104,99,107,91,99,108,98,85,100,102,99,113,119,100,92,101,104,90,99,94,115,104,100,118,105,99,116,108,83,104,91,107,106,104,90,110,83,94,96,99,87,108,110,92,110,89,95,103,91,94,99,102,103,116,109,87,91,82,105,90,97,101,99,101,106,101,96,99,90,100,104,99,105,102,105,92,86,117,100,110,89,104,102,89,109,86,103,94,97,103,110,110,101,75,87,100,89,94,86,75,104,94,96,107,101,114,107,114,95,104,107,87,102,89,102,97,88,95,106,105,104,96,106,106,100,103,102,104,97,99,93,103,94,115,105,114,100,105,103,97,86,96,110,98,93,103,92,105,110,98,92,86,122,111,101,79,103,103,104,101,107,95,99,102,110,110,103,108,110,114,98,98,105,104,106,106,100,110,106,86,80,91,100,92,93,92,108,100,98,96,105,112,99,84,100,93,76,98,88,96,99,98,113,112,106,106,106,96,117,99,107,107,99,103,100,87,100,104,112,103,97,96,101,113,94,113,110,95,111,110,90,109,117,110,110,81,108,124,91,100,106,109,105,95,90,105,111,104,108,107,98,102,112,97,109,112,100,103,95,111,94,103,98,101,93,132,107,94,107,95,103,102,111,101,138,96,93,99,101,106,90,105,112,103,108,109,98,106,105,105,90,96,117,99,95,105,116,98,111,101,110,102,106,99,111,103,95,103,101,102,87,94,114,104,88,93,113,96,104,103,106,87,106,106,103,115,107,99,102,109,105,103,107,100,101,112,107,114,101,100,105,117,96,100,109,93,93,100,120,104,109,102,97,115,105,102,99,103,91,106,102,114,114,95,97,105,106,109,107,111,109,101,99,95,111,101,109,107,92,102,109,98,112,102,103,109,95,101,117,104,106,101,110,109,109,97,80,109,99,110,124,106,105,101,95,98,106,100,103,109,99,103,93,111,94,113,109,122,98,118,108,110,102,110,113,102,105,104,104,100,111,108,99,99,103,107,82,100,110,94,99,112,110,103,99,102,112,116,110,91,101,100,96,102,110,92,104,107,95,93,96,106,113,98,105,95,104,95,104,102,113,103,101,116,91,103,104,106,112,106,110,106,102,103,107,119,111,95,77,87,99,107,104,103,111,90,98,91,111,100,102,121,108,112,95,105,118,107,114,109,98,101,108,103,100,93,100,104,102,119,100,106,107,106,96,104,103,99,98,99,108,93,102,101,101,99,110,101,113,102,108,113,91,106,103,97,104,87,106,108,109,111,104,102,102,107,91,99,91,101,116,116,111,96,102,109,101,101,99,103,101,96,92,98,106,97,109,108,109,105,106,107,101,117,114,104,133,105,105,107,103,101,97,98,133,102,99,102,99,103,93,114,108,102,105,113,99,110,106,110,114,94,101,94,116,106,93,105,106,94,105,100,105,113,112,95,100,119,105,99,98,113,105,106,116,92,109,113,99,95,108,106,110,106,105,122,110,96,99,101,103,79,105,100,117,108,107,88,94,100,105,107,96,107,112,99,111,109,104,86,105,78,105,112,103,104,102,107,98,104,113,108,99,104,113,94,93,114,120,112,110,96,101,105,105,109,108,105,102,91,94,96,108,108,91,102,109,113,75,101,87,113,108,96,101,95,105,106,103,97,112,91,103,101,103,107,90,98,106,109,102,107,89,100,95,92,100,86,109,103,118,108,99,103,101,105,103,105,103,113,98,99,98,103,95,106,112,100,109,90,106,99,104,100,114,101,107,97,100,102,100,96,109,96,97,106,102,104,107,114,99,98,110,102,95,90,102,100,103,107,95,104,106,112,100,103,111,111,83,95,109,106,112,96,103,104,103,96,84,115,98,110,106,83,105,121,101,104,104,104,94,94,92,101,103,108,101,94,117,99,101,103,99,100,90,97,108,104,109,109,96,102,97,97,101,104,102,89,105,114,106,97,108,107,106,111,113,105,103,108,111,92,98,94,85,92,109,109,108,100,108,112,103,112,102,96,111,103,92,108,106,105,107,103,107,102,110,105,115,106,110,107,108,122,104,104,95,95,116,102,105,104,93,94,95,137,102,101,98,95,102,85,101,104,98,121,95,69,97,99,103,114,91,100,95,119,105,98,99,101,106,102,96,103,112,112,108,98,96,97,99,102,98,110,104,96,102,99,104,105,100,95,105,98,94,106,85,101,101,92,113,106,100,80,113,100,111,102,121,98,104,107,65,95,123,104,96,105,106,102,103,101,98,107,108,117,105,110,99,100,89,107,120,93,100,101,98,110,96,103,109,90,110,93,112,107,93,97,97,105,104,101,108,96,104,109,100,104,101,111,90,117,110,102,98,96,94,110,96,98,120,90,98,85,115,95,109,110,102,95,97,94,100,106,104,116,110,105,110,102,98,107,101,96,111,110,103,107,102,99,81,98,108,115,95,104,91,106,97,103,111,99,100,108,102,104,98,93,105,106,110,98,106,95,105,109,99,105,128,109,103,97,101,103,100,109,103,102,102,114,76,108,109,107,124,102,99,102,102,98,88,92,97,109,99,97,106,101,103,102,109,101,103,113,104,108,98,104,101,103,105,112,112,108,107,109,112,105,91,104,91,106,107,112,101,96,109,101,112,100,109,109,112,99,95,106,112,97,105,117,109,116,112,101,99,100,103,107,97,108,111,100,108,94,112,93,111,98,107,104,105,113,92,99,97,103,110,96,106,106,111,103,109,104,113,105,100,111,93,108,103,106,97,100,100,106,118,105,112,110,105,96,102,96,93,102,121,76,88,101,104,102,119,100,112,107,98,89,107,101,119,103,91,106,116,110,99,105,111,99,128,101,96,106,110,104,95,108,109,106,114,101,105,93,92,120,112,104,95,100,101,95,128,94,111,112,106,95,101,103,103,109,103,90,98,106,88,105,108,111, +670.74023,114,100,96,98,97,98,83,103,113,98,108,115,106,69,109,102,105,106,94,99,111,104,98,107,94,100,115,99,97,106,102,95,96,90,103,105,111,100,88,97,93,103,97,99,102,125,97,106,95,108,117,109,94,114,98,95,108,99,117,87,104,100,100,89,115,110,110,125,101,97,112,105,107,102,103,107,90,107,94,98,105,85,106,103,95,94,102,108,90,95,104,103,106,107,97,103,103,98,99,91,95,109,102,111,91,103,101,104,101,107,116,96,124,96,99,99,100,108,113,108,106,103,115,113,101,102,102,97,108,103,109,98,106,112,98,104,95,112,114,103,90,97,103,99,95,106,99,104,96,97,102,102,103,100,112,72,98,98,102,109,100,111,103,109,100,96,101,107,114,91,96,104,101,120,108,100,111,96,102,113,112,113,102,97,107,127,105,96,106,101,101,107,110,101,113,103,97,113,106,100,111,109,103,103,105,99,96,106,101,101,93,95,108,94,99,99,88,105,98,106,115,99,114,104,97,91,105,113,103,107,95,105,97,95,100,107,105,94,126,107,106,101,109,95,106,95,102,101,109,110,108,107,105,100,103,120,100,104,103,99,93,92,88,107,122,104,105,110,125,102,93,114,132,100,108,95,112,112,108,108,104,102,102,88,105,96,105,105,104,111,103,110,106,113,75,97,94,104,99,104,95,95,119,102,86,105,109,98,101,122,95,116,105,113,101,106,110,103,106,105,94,96,109,105,89,120,94,101,111,108,123,101,104,104,103,105,105,95,95,122,99,102,100,108,112,103,95,107,117,119,91,113,103,102,111,95,85,95,102,113,88,104,82,112,91,99,101,88,113,118,117,103,99,103,98,96,110,97,92,106,99,95,99,119,101,92,100,105,109,105,112,92,106,104,90,100,106,101,107,102,96,103,102,115,108,106,94,106,115,108,90,96,108,106,113,91,80,92,118,103,113,104,92,105,98,99,107,114,113,107,90,101,101,101,101,86,98,104,102,99,106,104,98,109,109,97,101,94,107,111,112,109,97,107,106,113,97,111,116,85,102,87,78,101,109,103,102,99,98,92,99,100,99,122,118,108,91,118,86,102,103,104,107,98,103,104,100,109,96,97,111,101,108,98,93,98,93,119,105,99,117,98,99,117,95,108,97,113,103,109,103,98,96,106,102,108,93,108,88,113,109,109,100,96,106,67,110,113,102,95,100,101,98,95,105,105,104,109,68,96,100,101,105,115,94,93,109,108,108,101,109,100,108,94,101,94,105,104,106,101,97,106,109,105,110,107,106,90,115,95,98,92,107,106,103,107,95,101,102,110,96,91,110,105,79,101,104,103,108,110,98,99,97,97,106,101,121,113,97,100,88,101,105,99,99,102,87,106,113,96,98,93,103,92,112,104,104,108,106,100,74,107,110,102,104,94,113,107,101,106,105,103,92,109,80,104,111,101,102,97,106,102,99,106,105,98,85,95,106,107,108,117,112,104,112,102,114,115,88,104,83,107,110,99,106,103,100,106,105,101,101,98,111,107,97,105,116,105,95,109,100,104,96,100,106,107,95,97,104,104,102,70,96,106,103,108,115,117,85,104,112,105,109,96,103,110,91,106,96,96,111,109,96,92,102,111,97,95,100,103,110,105,99,106,100,105,99,115,96,108,102,108,101,113,112,101,110,107,97,97,109,97,101,129,110,102,112,108,91,124,102,116,104,109,107,106,103,113,105,97,109,93,105,92,95,107,96,99,105,101,115,98,104,103,95,107,108,95,108,103,102,96,96,95,102,117,100,99,107,108,116,109,108,100,110,99,117,97,98,96,113,90,107,111,105,107,111,96,87,104,110,105,116,107,111,110,110,118,104,89,98,109,104,102,94,113,105,84,99,107,105,96,95,104,103,108,101,104,104,98,99,95,105,99,100,109,93,96,97,100,101,92,98,108,104,103,102,103,92,103,109,96,117,109,104,105,98,109,118,103,104,104,104,107,101,110,103,87,104,103,121,128,122,94,104,104,101,100,119,129,100,105,91,110,99,103,96,95,96,107,96,102,101,100,100,90,98,98,105,102,99,110,102,94,96,98,98,95,97,109,101,107,93,105,96,99,109,100,92,102,115,87,110,102,98,84,94,105,106,102,104,100,103,106,111,111,118,102,104,99,117,96,102,99,102,107,113,101,109,111,109,100,103,105,100,103,99,99,101,78,109,101,105,92,102,114,104,96,114,103,96,101,88,99,98,97,111,101,92,106,105,97,109,105,104,108,110,106,107,118,108,101,100,102,103,109,99,109,122,99,106,98,101,106,109,100,99,110,101,92,99,115,95,94,97,109,105,107,78,95,101,115,108,113,99,94,108,110,90,110,102,105,112,98,104,103,106,108,100,106,101,100,106,97,109,98,113,78,98,110,101,113,111,109,99,113,100,89,98,97,106,104,104,96,99,104,109,105,103,93,103,102,100,104,100,106,99,93,112,106,104,96,102,95,91,98,112,95,116,106,70,90,88,100,106,119,100,108,100,113,96,111,93,97,97,87,109,105,101,100,89,98,97,112,95,99,105,102,109,83,109,111,109,90,88,111,102,103,98,96,99,86,85,114,96,102,98,93,101,102,103,103,110,99,109,109,114,105,110,96,103,89,95,77,95,89,109,103,103,94,106,80,101,100,109,99,96,108,107,97,95,106,91,123,84,112,103,109,106,104,87,98,84,92,99,92,110,103,110,98,103,104,95,94,101,111,93,89,105,95,95,106,92,98,116,108,99,99,113,105,90,103,100,91,92,99,100,103,93,100,84,101,105,110,116,105,112,99,107,102,98,95,106,89,101,93,103,111,103,114,114,106,107,102,112,111,106,113,94,97,105,100,117,99,107,98,93,101,108,113,100,94,96,103,107,102,101,118,96,105,104,101,100,104,101,105,96,106,112,102,102,97,96,87,102,103,94,99,102,108,103,98,101,87,103,99,102,78,105,98,90,95,93,99,99,106,87,113,96,94,108,105,108,98,106,107,116,105,104,118,100,90,108,105,95,106,98,104,96,97,98,103,93,93,96,99,98,93,106,108,106,87,103,101,107,94,89,97,96,92,92,112,103,90,92,90,99,96,106,99,106,105,95,107,104,113,98,114,102,101,100,101,112,90,104,94,94,103,100,100,103,92,89,102,104,89,95,100,99,93,108,103,98,105,102,115,108,103,101,105,102,106,100,104,102,91,104,95,103,104,100,100,103,91,101,110,113,96,102,98,104,98,98,110,110,94,103,95,102,101,94,103,86,101,101,105,99,103,106,95,96,99,107,105,95,108,98,96,110,98,111,111,112,107,114,102,105,103,88,103,102,91,112,112,106,110,103,101,109,103,95,99,101,115,110,116,105,107,103,105,98,92,84,102,103,112,98,101,96,102,95,107,94,117,94,97,89,125,101,96,96,92,90,112,95,100,92,117,100,102,113,98,94,102,101,91,111,96,98,95,114,106,101,100,91,100,87,110,105,97,90,98,95,106,105,100,103,97,95,94,108,104,101,107,94,109,98,104,99,95,94,97,108,99,107,112,105,106,95,105,105,107,99,113,99,109,93,99,94,96,101,88,97,102,100,98,105,106,101,105,104,83,95,94,97,88,92,88,100,102,96,100,106,104,98,93,111,101,102,98,98,97,94,95,97,113,95,104,110,102,102,102,91,102,96,110,102,103,114,88,93,99,98,100,105,94,99,105,102,97,96,95,91,104,104,95,102,108,99,95,94,97,88,87,101,92,99,98,102,97,110,104,106,102,114,94,109,99,96,115,100,105,105,107,97,100,100,97,101,101,96,95,110,104,95,108,99,107,96,100,99,95,91,104,98,96,100,111,100,98,91,97,101,105,90,107,102,100,92,96,101,98,95,96,100,115,105,96,92,98,104,102,95,104,102,95,97,99,108,102,109,113,96,105,101,99,93,108,105,98,98,99,94,110,98,99,88,91,107,101,113,101,110,99,103,100,100,102,92,97,101,100,98,100,103,100,91,110,106,109,90,100,102,107,108,95,105,98,110,106,93,102,97,93,100,98,99,97,105,110,104,99,109,95,87,101,104,109,104,107,108,97,103,105,105,107,110,140,90,99,104,103,98,94,95,112,95,90,99,96,75,101,101,96,107,99,98,113,112,97,94,112,83,98,107,95,114,100,97,102,101,108,135,103,106,109,92,107,94,106,108,95,104,104,96,88,115,87,99,79,102,94,91,101,110,92,111,104,107,98,100,84,116,91,86,86,104,107,98,102,106,106,103,112,100,94,106,103,113,102,106,96,91,102,101,99,102,98,97,98,93,90,117,97,120,112,96,90,94,101,101,102,99,102,106,98,118,113,101,106,106,97,95,105,99,99,89,110,102,100,106,135,109,109,100,101,108,117,106,102,99,95,107,93,79,98,97,97,104,106,104,113,101,105,104,99,94,94,109,109,103,92,103,94,101,99,98,92,94,106,98,102,101,96,92,111,94,106,96,97,105,101,94,105,101,91,119,103,128,80,94,96,108,88,83,102,103,79,103,92,105,109,96,109,112,96,102,95,97,105,106,113,120,87,102,97,109,87,91,98,99,90,99,106,101,102,98,101,98,98,92,102,105,107,94,104,102,95,109,110,98,105,88,97,96,96,103,118,110,111,85,96,103,104,95,100,102,98,73,93,94,118,113,87,100,92,96,91,104,91,110,101,103,112,129,105,85,102,93,103,88,102,91,86,114,107,108,107,90,100,108,104,103,108,85,112,110,96,104,108,122,97,117,95,105,94,126,109,102,101,98,106,87,85,100,95,105,100,99,103,96,98,109,107,104,104,103,105,106,101,113,106,88,105,84,100,98,106,103,101,92,102,120,96,105,86,98,119,106,102,93,98,105,106,108,115,109,87,107,96, +670.88147,109,107,102,98,96,98,114,94,107,93,98,93,102,98,107,104,92,102,101,96,99,107,112,107,100,88,103,105,104,98,95,113,105,90,115,98,115,103,95,94,92,99,96,99,97,111,94,92,90,97,108,116,91,108,99,64,113,101,94,89,95,77,103,96,102,108,96,109,105,94,105,94,90,98,94,103,98,104,100,93,107,95,106,112,101,90,110,101,65,89,98,93,89,99,103,122,113,101,105,95,97,112,107,98,101,101,94,99,99,102,97,103,97,96,102,102,107,103,92,100,98,100,106,114,106,106,105,96,95,100,94,101,72,91,107,101,93,113,104,101,107,103,88,102,110,106,92,97,102,107,95,97,100,92,92,94,89,91,93,101,96,91,98,103,100,99,95,97,114,96,96,122,111,95,99,97,101,86,98,92,107,92,101,90,93,109,96,99,100,92,92,98,94,88,100,104,112,96,100,108,98,95,91,102,92,107,113,107,105,100,99,104,102,98,95,109,99,101,103,104,102,92,108,96,92,106,98,101,126,105,103,118,98,107,105,119,104,97,98,104,99,108,99,104,108,83,95,98,96,101,100,96,98,101,103,105,103,103,107,99,91,89,100,99,94,112,103,98,104,98,96,115,103,98,103,98,97,109,95,93,98,111,102,100,92,101,96,105,103,100,99,102,97,99,96,102,95,93,127,99,91,110,99,93,93,106,96,104,101,104,96,115,93,82,108,94,97,88,103,102,99,89,95,105,100,96,96,97,98,100,102,91,113,99,102,109,107,101,95,96,73,99,101,96,93,103,99,105,91,112,100,101,110,87,118,104,113,103,98,97,91,91,106,96,100,96,100,100,100,101,102,106,96,103,103,101,117,108,90,99,113,109,99,92,89,97,90,95,114,74,98,98,91,90,98,95,93,96,91,113,106,99,104,99,90,110,91,106,104,91,100,93,94,106,91,103,99,97,100,103,102,94,90,111,97,84,90,106,109,98,100,97,69,101,110,103,101,105,96,101,92,95,80,108,101,97,90,97,99,110,93,99,89,109,105,100,96,111,118,94,105,95,96,110,105,94,96,102,100,97,97,100,99,95,108,82,102,98,117,101,106,103,105,96,102,83,102,111,103,112,102,97,91,101,62,101,107,94,93,92,88,87,96,111,95,107,102,107,107,112,107,103,99,105,89,104,106,94,92,95,110,103,108,103,95,110,94,109,101,105,100,109,107,104,98,93,109,99,105,105,107,106,94,107,101,103,100,90,109,100,100,111,103,91,103,96,103,93,92,83,104,88,91,98,97,100,107,93,98,110,105,102,99,94,93,107,101,106,98,94,102,109,87,99,110,104,105,109,96,100,94,92,97,99,104,104,94,95,102,110,97,103,101,107,99,91,105,105,107,105,99,108,107,106,106,99,100,100,98,110,107,97,103,103,110,100,98,108,89,106,100,94,99,100,89,102,107,97,108,91,104,103,104,105,100,106,100,79,95,98,79,110,99,109,95,104,97,103,100,106,106,107,98,94,105,84,91,92,96,112,121,98,105,105,100,99,91,104,121,102,94,103,111,112,101,97,95,96,103,97,97,110,104,106,88,97,103,100,97,87,99,96,96,98,104,116,91,132,110,98,111,106,111,100,97,104,124,101,103,99,97,97,94,99,97,105,77,110,109,109,111,114,105,103,91,95,103,95,113,98,104,101,107,97,106,106,110,108,101,94,102,102,94,100,110,104,102,99,112,97,101,115,102,102,105,106,93,98,96,83,95,102,108,100,100,105,108,110,98,97,91,77,99,100,108,90,104,105,101,111,109,87,103,98,95,87,91,100,107,105,92,104,93,101,108,124,100,101,107,94,99,99,107,97,111,107,110,106,106,91,111,99,101,103,111,98,111,105,120,96,104,99,103,101,103,103,94,104,88,106,109,93,109,93,88,112,88,96,106,102,102,100,92,104,103,92,112,91,87,95,100,106,101,120,97,106,95,96,112,110,107,108,93,95,104,101,103,93,105,91,104,108,109,105,93,95,92,111,100,92,105,103,100,91,100,113,106,107,103,105,91,110,102,103,111,98,111,97,87,104,121,97,92,100,109,102,97,104,101,105,107,104,106,105,93,100,96,101,109,95,100,82,96,107,82,107,108,105,102,105,99,96,101,93,100,104,110,102,88,107,102,102,101,112,105,100,98,100,107,88,112,101,100,99,110,100,104,97,98,100,104,91,104,105,92,104,108,101,93,96,104,108,92,101,86,94,110,88,83,97,97,95,96,97,109,101,89,114,90,91,100,86,103,98,87,107,101,111,92,86,89,100,99,96,105,101,101,98,101,93,99,107,102,92,116,97,100,100,106,95,101,104,125,94,94,107,111,97,110,94,99,127,101,87,110,99,103,111,99,98,111,96,111,115,104,102,99,101,106,94,104,99,102,96,109,94,91,100,99,101,90,96,88,92,98,80,94,109,99,96,107,111,89,92,108,107,96,96,114,84,111,87,119,96,99,105,110,103,117,117,95,108,104,103,100,105,109,94,101,101,101,113,112,122,106,98,94,99,100,114,114,90,108,108,105,101,100,112,106,102,100,112,96,90,104,111,100,111,104,97,109,88,89,100,97,107,107,107,124,109,105,101,116,103,107,114,99,104,102,105,109,94,103,90,115,97,92,95,109,100,104,100,102,109,96,113,95,109,109,72,104,97,97,105,108,117,99,106,105,105,100,104,114,100,96,103,119,111,109,112,118,99,104,102,106,90,108,105,108,103,96,88,100,100,110,95,85,103,91,107,103,103,92,106,103,117,92,96,103,101,96,102,101,101,99,97,103,105,103,107,105,108,108,95,94,93,98,98,103,106,90,106,110,96,105,88,100,103,99,109,116,108,101,100,111,109,104,102,104,103,106,106,109,113,111,122,100,104,118,104,99,98,95,100,104,112,98,107,103,104,109,106,113,116,106,125,100,116,95,101,101,109,95,106,124,107,113,102,110,93,114,107,111,104,109,98,99,96,99,102,109,96,105,109,104,100,102,102,109,100,102,110,94,108,117,94,109,90,104,106,109,110,104,94,101,102,110,100,115,117,107,103,92,110,105,102,108,91,99,98,82,102,109,102,103,103,107,104,104,105,108,118,109,117,104,95,102,98,104,92,99,104,117,98,115,113,106,107,92,96,99,94,109,103,99,99,93,95,122,100,106,109,87,104,92,103,102,99,100,95,72,102,100,98,107,98,106,104,105,103,104,112,104,61,95,108,102,109,100,76,112,104,116,109,117,104,94,107,109,98,114,98,108,106,100,87,105,102,99,102,100,103,114,108,109,105,109,111,119,103,99,117,94,96,115,112,98,109,103,117,90,116,100,109,110,109,121,100,114,99,115,106,105,103,78,103,115,105,105,106,97,94,99,104,117,105,98,101,104,102,96,92,106,101,96,104,104,100,103,110,105,108,96,103,98,103,99,92,107,104,111,102,107,96,94,103,111,109,106,96,100,111,106,101,105,95,101,109,114,95,106,114,102,106,105,111,117,106,109,95,107,108,108,110,98,108,100,104,106,107,98,113,97,103,100,109,102,101,104,105,116,101,109,115,106,108,112,85,113,95,93,102,106,119,87,83,110,96,103,104,99,105,84,101,103,113,107,104,98,107,93,98,96,114,110,92,110,105,114,106,107,103,100,107,100,91,105,94,104,104,99,98,109,93,109,91,112,99,99,103,102,111,96,113,108,101,115,91,106,106,110,93,93,105,111,104,98,107,104,104,112,91,103,91,116,97,113,105,106,104,100,92,103,108,92,106,106,117,110,104,99,108,85,113,102,110,99,106,100,95,103,106,92,105,111,92,106,106,103,102,101,106,106,107,104,110,91,95,105,101,99,101,100,110,104,110,111,102,94,114,98,80,95,99,102,107,98,99,104,99,121,105,98,109,104,87,106,98,96,98,103,92,110,106,100,106,98,112,89,107,101,102,96,102,94,102,107,114,104,106,117,99,106,96,98,102,114,110,93,98,101,99,104,109,113,107,98,113,106,107,107,97,72,102,93,101,98,84,119,102,108,109,87,101,107,109,96,110,88,105,115,102,116,96,92,105,95,110,113,98,102,104,111,93,104,113,90,114,98,107,107,91,95,94,104,109,101,104,115,94,96,99,101,110,96,104,106,102,96,105,102,96,90,89,103,93,101,110,108,100,110,106,100,103,103,112,92,106,108,102,109,101,115,114,98,95,99,102,106,101,109,106,92,112,104,107,114,111,96,100,109,115,103,107,95,103,113,105,98,105,106,81,104,97,132,105,99,101,110,102,109,112,115,100,96,81,111,110,112,103,113,116,113,99,109,111,108,110,91,100,104,102,103,102,108,109,104,94,99,101,123,109,98,112,113,97,84,92,102,98,115,106,95,95,105,96,98,109,106,94,104,97,93,106,100,105,98,123,99,100,117,95,100,101,109,103,95,116,97,94,115,103,104,96,90,117,115,97,100,110,104,97,93,111,101,100,95,98,101,101,91,114,106,108,102,119,105,101,89,88,95,103,106,108,110,128,90,105,97,95,104,100,96,104,95,98,101,91,104,97,104,106,103,108,104,102,114,103,106,104,107,92,100,103,113,104,111,95,104,101,91,111,104,94,88,109,92,109,127,112,103,99,102,101,103,98,118,109,87,106,102,80,109,93,121,111,115,103,121,108,97,108,102,107,128,92,95,105,91,111,98,103,117,113,101,100,107,90,106,94,110,100,105,93,106,106,109,99,103,105,114,101,107,98,105,106,104,99,92,94,111,85,110,102,94,93,128,105,96,99,105,113,92,101,109,103,98,120,105,107,114,108,99,98,105,115,103,106,104,91,103,120,95,118,97,112,110,102,97,96,103,110,103,118,108,95,110,101,105,111,121,98,101,94,104,104,120,94,91,92, +671.02271,100,102,95,94,93,110,92,95,100,91,107,115,90,109,109,94,113,98,95,93,101,113,98,84,94,111,97,104,93,114,99,104,98,94,96,96,109,94,106,113,104,97,93,104,99,95,101,94,99,122,100,97,99,106,103,95,86,96,116,84,114,94,106,92,105,83,94,100,87,109,98,96,87,110,93,101,102,103,90,89,95,112,106,99,105,110,106,102,99,105,105,100,101,113,108,96,96,103,104,99,92,105,107,112,101,104,117,98,96,96,94,110,103,101,63,103,94,110,116,103,102,109,112,100,101,110,95,112,98,99,104,103,74,102,109,102,92,106,101,105,103,104,99,96,95,130,111,94,97,87,87,105,103,93,91,101,95,97,91,99,99,105,100,72,99,94,104,97,90,96,105,101,103,90,109,101,100,89,106,92,103,96,99,100,97,100,104,90,102,112,100,112,98,93,100,107,112,80,102,105,112,104,84,100,93,92,94,93,105,109,96,103,107,94,97,100,106,100,137,98,108,108,111,99,84,103,92,101,104,109,112,97,112,112,94,112,113,95,102,103,105,87,104,100,99,100,107,96,88,106,97,104,101,110,109,102,94,106,108,100,100,98,97,93,90,103,108,102,97,94,100,110,103,82,106,95,102,100,98,106,107,105,86,83,97,110,113,92,102,104,101,119,95,99,100,100,83,107,109,98,96,91,101,101,105,105,112,110,93,98,91,115,95,100,96,94,101,100,97,100,101,114,104,101,116,101,93,101,96,95,113,91,102,114,92,104,120,96,95,103,97,115,102,91,102,91,108,100,116,100,112,100,108,105,92,100,100,87,110,76,106,94,106,109,91,91,92,93,109,91,104,104,96,96,98,102,113,97,105,95,101,108,105,117,100,105,99,99,109,91,93,93,97,97,86,102,107,97,97,109,99,100,90,88,89,102,101,98,109,106,91,94,97,107,99,91,98,94,114,106,104,97,99,100,97,87,103,98,92,101,98,109,96,95,107,101,93,106,94,104,102,98,110,108,100,99,96,99,104,95,102,101,104,97,101,104,88,103,99,88,103,103,113,104,104,99,106,107,102,98,100,83,93,94,98,97,96,98,111,105,97,94,108,102,104,90,94,93,90,87,111,104,102,89,113,111,96,99,96,91,105,87,99,100,101,102,96,111,100,104,112,107,110,101,89,95,109,101,95,113,101,100,103,113,103,99,90,100,103,99,101,116,99,116,104,83,107,103,113,102,102,109,107,109,113,108,101,95,102,100,115,106,101,115,119,94,99,86,102,96,105,102,97,109,103,72,103,103,101,96,87,97,100,106,100,105,104,104,94,102,99,112,101,103,103,104,106,100,107,107,94,108,91,92,102,93,100,95,100,106,98,104,105,115,89,91,108,107,103,98,97,68,112,109,99,106,110,101,98,91,89,104,117,111,86,110,97,96,96,106,92,95,98,105,78,93,96,95,110,103,110,95,104,101,104,101,92,94,107,99,94,97,98,94,99,87,101,108,97,107,104,101,94,120,85,121,102,102,101,105,104,98,105,104,108,105,106,96,104,96,99,106,110,107,97,96,101,109,102,102,97,94,101,102,99,103,95,112,99,98,98,97,92,97,99,114,107,90,89,107,103,100,114,89,97,96,100,105,106,101,95,91,99,97,98,96,93,100,106,110,115,119,96,103,94,111,97,101,101,100,97,99,92,105,114,90,105,91,97,105,110,87,103,97,93,99,99,92,100,95,89,100,101,99,92,96,98,92,105,95,100,102,101,92,96,96,117,117,135,99,99,90,98,104,102,108,97,109,101,102,98,109,106,101,103,89,88,124,77,106,100,90,104,101,116,101,99,110,104,99,103,88,106,105,116,95,110,99,113,92,101,104,98,98,101,97,105,95,100,93,104,98,92,86,100,110,108,102,95,98,119,97,100,96,91,104,100,99,93,95,104,101,101,93,94,112,87,100,94,104,100,111,125,105,98,96,93,101,102,103,90,77,98,109,101,101,96,100,82,108,96,107,97,101,114,98,105,106,80,88,98,103,112,106,107,101,103,100,106,104,102,106,96,102,110,110,101,99,92,98,104,101,102,98,98,110,99,80,95,103,115,100,101,99,110,103,109,94,103,107,95,87,102,111,94,106,90,100,111,99,118,107,100,101,99,103,110,102,111,92,93,93,111,103,97,103,116,100,104,100,113,94,108,92,109,99,104,101,93,98,101,92,105,93,94,110,107,98,83,100,99,105,93,101,106,100,92,93,102,99,95,92,104,113,102,98,98,110,97,107,97,108,98,94,137,115,104,108,82,95,101,94,93,110,97,94,108,98,96,94,101,105,103,102,112,103,105,97,109,91,99,99,115,105,103,91,95,113,98,102,105,103,98,83,93,101,97,94,94,106,84,103,101,91,113,110,96,105,110,94,76,100,108,100,108,100,98,97,107,91,98,105,95,99,112,99,105,109,101,97,100,105,102,91,113,113,112,114,104,102,94,99,106,114,91,101,110,99,106,98,99,102,98,87,109,102,110,114,114,113,109,100,100,96,103,95,109,100,97,120,103,101,104,107,104,100,96,94,101,102,101,109,101,108,112,102,103,100,104,98,107,109,103,112,109,117,110,91,92,98,105,107,98,111,109,112,100,104,109,98,101,101,104,101,116,107,97,92,127,98,98,101,93,102,109,100,94,79,111,103,95,99,95,98,109,95,108,108,105,113,103,112,113,104,100,89,102,100,111,110,125,106,108,98,107,89,103,103,100,107,104,105,109,105,79,113,131,108,101,108,113,104,95,84,121,112,102,108,111,109,104,112,105,114,107,113,102,103,115,113,99,107,107,107,100,89,105,105,116,107,111,107,109,113,102,101,90,124,106,100,112,109,113,112,105,110,115,112,107,100,113,108,110,104,97,99,112,103,106,100,105,108,106,103,100,108,102,117,118,103,107,111,89,91,99,124,93,93,103,110,104,93,107,95,101,108,109,105,103,102,110,108,106,104,107,95,104,94,101,79,98,105,106,109,107,104,115,108,102,95,105,97,96,107,112,110,105,99,105,103,113,112,103,99,106,107,102,111,106,95,92,106,108,108,104,93,96,100,102,113,116,107,113,101,110,101,96,109,110,100,114,97,92,97,105,104,102,107,91,101,105,100,83,98,75,109,98,96,101,106,103,102,99,94,110,99,103,105,105,114,102,112,97,97,101,106,110,100,112,117,106,98,113,98,110,92,107,99,97,118,101,99,101,100,100,95,97,98,106,94,99,117,110,119,111,97,97,107,105,107,106,93,98,112,87,104,96,93,95,95,109,97,105,108,89,114,106,94,102,102,102,101,99,101,107,87,100,100,104,97,105,118,95,102,94,100,100,96,101,100,111,80,92,105,96,95,120,112,108,103,109,105,98,103,108,107,116,107,94,117,103,104,106,105,101,99,107,94,99,101,93,86,106,103,112,103,102,109,94,99,98,105,105,90,101,99,104,105,98,104,109,101,103,94,102,98,99,109,116,96,98,106,99,102,97,99,100,127,103,95,117,99,105,116,87,97,140,106,100,108,91,99,111,89,97,99,92,100,107,108,112,109,97,102,104,108,99,104,106,75,107,101,92,99,101,98,101,94,107,104,110,100,115,95,115,100,97,98,94,101,110,98,103,99,98,87,116,108,99,98,102,91,91,88,95,101,104,98,107,98,109,110,107,98,98,102,113,107,112,98,119,115,113,98,111,110,104,85,103,95,113,91,95,117,95,116,110,103,95,89,98,108,106,100,112,102,101,110,114,96,99,98,103,118,99,102,98,96,102,105,103,112,96,108,115,99,102,104,105,77,106,126,102,95,100,106,99,102,102,106,92,99,106,95,106,105,113,105,94,97,87,104,96,104,98,97,109,103,113,105,104,101,100,90,103,106,92,98,97,99,103,93,107,103,94,103,96,103,95,98,105,94,117,100,105,116,91,107,103,91,105,108,102,105,110,118,98,99,105,108,109,96,102,108,97,105,102,102,101,112,101,102,98,91,100,91,103,104,103,113,109,68,102,109,99,100,97,105,103,113,108,106,103,99,102,109,100,108,100,102,110,92,108,99,99,100,109,104,106,96,95,100,92,100,104,100,111,96,101,111,98,90,109,98,116,98,111,109,96,113,98,97,104,110,100,95,112,105,88,91,106,98,88,95,88,114,107,101,104,103,88,98,95,103,99,116,106,108,103,106,111,97,109,99,113,109,74,103,84,103,105,112,108,77,98,104,94,114,100,102,102,96,100,91,100,102,110,93,98,102,102,103,101,99,106,95,101,105,116,98,107,116,104,102,96,96,86,112,92,101,95,102,106,104,99,106,109,104,105,93,105,102,104,99,98,98,118,109,96,102,107,114,119,112,103,92,95,107,113,110,102,119,105,105,110,96,123,113,98,94,96,95,105,100,102,110,108,106,113,106,103,108,107,96,94,104,104,95,96,105,84,114,105,105,96,109,97,105,106,117,104,101,111,98,105,100,109,99,101,91,100,92,98,109,100,95,106,85,112,97,98,106,111,108,118,98,107,110,105,106,81,101,95,100,100,101,99,107,99,104,122,97,99,103,117,110,104,96,95,108,103,90,111,109,108,107,105,120,112,106,102,98,116,101,101,111,109,96,96,90,105,100,124,111,102,86,104,99,111,102,81,90,93,99,104,114,86,102,98,84,104,106,106,100,99,101,97,103,102,100,108,103,107,99,95,100,111,107,92,101,105,102,91,94,103,101,102,77,77,102,119,110,100,103,98,100,91,98,91,110,97,101,106,93,105,110,112,116,113,104,105,98,110,103,106,100,82,117,96,93,109,94,109,96,103,114,109,111,107,96,98,102,105,97,101,109,103,103,97,105,109,110,97,108,108,101,120,98,94,110,103,98,104,110,84,97,108,107,92,119, +671.16394,96,106,86,75,89,98,96,101,99,95,95,105,92,92,102,107,93,105,95,102,116,98,93,105,110,131,110,107,82,126,84,97,90,103,105,108,90,94,95,99,102,107,103,98,91,96,107,104,99,107,111,94,104,99,107,96,97,96,106,105,99,95,97,98,92,114,86,103,110,114,106,95,92,100,90,112,96,112,98,101,98,102,104,100,106,91,98,108,100,97,98,99,89,101,100,107,114,78,103,94,121,94,92,91,103,102,90,97,106,95,93,97,93,104,105,103,111,102,102,89,105,106,104,107,107,91,116,93,117,124,92,109,100,109,96,101,80,103,94,96,96,102,94,99,92,92,103,91,93,97,97,92,103,89,97,98,96,101,99,108,141,114,101,109,120,80,98,96,102,108,95,106,105,96,94,110,98,96,100,116,105,98,96,101,106,106,98,96,101,94,99,98,95,101,101,109,108,87,99,104,96,93,105,115,96,119,97,103,98,108,102,102,94,91,106,99,102,112,108,107,111,112,98,106,104,113,102,94,116,103,106,109,102,103,97,102,103,112,96,95,104,90,109,99,102,102,109,112,100,82,96,100,103,118,95,111,109,98,91,98,104,101,92,107,91,98,94,111,92,110,113,128,111,94,106,96,95,105,97,99,101,107,92,106,95,99,104,103,95,105,96,98,114,112,109,109,100,91,91,95,103,116,97,98,89,100,98,100,102,114,98,95,105,99,96,99,108,116,94,106,108,98,109,102,97,96,94,86,96,97,111,109,100,105,109,81,114,99,98,104,98,96,104,85,87,109,101,98,105,107,105,76,100,99,83,96,108,74,98,106,95,95,90,101,101,104,100,100,84,96,109,97,92,103,76,101,111,100,90,121,106,110,101,109,76,117,97,100,107,90,103,91,102,105,120,97,105,111,101,102,95,100,98,92,97,117,105,95,94,112,93,87,114,90,104,95,108,115,108,109,104,87,96,109,90,99,100,104,87,106,101,102,107,110,99,108,98,99,87,96,112,114,101,102,97,102,103,93,96,100,115,95,96,109,95,92,95,113,106,95,97,102,113,101,90,103,116,94,100,93,104,87,82,98,103,101,117,111,107,97,90,119,111,92,99,104,100,115,101,89,105,111,108,104,104,95,95,110,99,99,105,96,92,102,104,106,98,105,109,106,100,95,97,96,69,107,95,97,88,104,97,108,108,102,101,96,125,98,104,110,108,109,96,99,94,101,109,100,94,108,110,103,94,102,114,95,109,103,113,107,102,93,110,109,99,90,108,111,104,100,105,110,94,105,103,106,113,99,108,105,92,100,111,98,97,105,103,110,96,99,95,96,105,95,112,98,127,106,95,96,102,103,81,106,116,110,105,109,108,86,110,101,90,98,102,109,94,104,100,99,99,102,100,133,104,98,100,102,115,90,107,97,109,103,101,109,101,107,106,100,101,105,111,103,100,96,107,95,107,92,114,99,99,102,105,134,98,100,103,104,95,95,106,99,101,109,93,110,105,117,102,99,105,108,99,70,96,105,129,104,102,113,90,110,89,107,126,106,108,103,103,106,116,92,88,86,101,95,95,103,111,110,102,119,104,111,109,100,104,97,99,103,93,104,98,108,114,106,108,112,113,92,104,103,103,108,102,103,97,107,107,96,97,97,93,105,93,108,100,109,96,95,93,122,103,101,96,100,103,105,111,90,97,118,110,101,97,112,98,110,84,98,101,102,106,98,100,99,106,104,103,91,97,68,90,100,109,108,100,94,107,98,105,96,105,99,104,99,113,105,106,109,98,109,108,105,103,111,91,100,107,111,118,91,109,110,84,90,99,126,115,111,100,113,107,98,115,108,106,98,102,94,101,92,103,101,95,95,116,114,100,104,97,112,86,105,98,104,106,111,107,93,103,104,110,108,106,108,117,109,94,101,97,102,91,100,95,93,103,112,99,99,94,105,105,101,101,113,108,104,108,105,103,96,100,91,92,101,90,94,106,103,104,99,91,109,106,101,78,108,100,101,108,105,99,81,95,107,113,101,102,92,105,102,110,90,77,94,98,107,106,100,99,103,107,94,100,95,99,96,100,109,106,103,101,99,99,98,97,104,116,105,99,103,97,97,97,108,113,98,100,100,109,102,94,104,93,108,119,114,95,96,95,105,107,104,111,118,110,107,97,101,110,99,116,115,96,104,101,107,111,104,98,92,104,98,103,104,100,112,94,110,103,101,107,112,104,95,98,106,104,95,106,111,98,101,113,104,103,109,96,125,94,107,103,100,100,102,110,109,101,95,96,105,109,97,107,95,83,106,97,110,94,96,78,112,100,92,103,92,99,100,106,109,114,98,102,90,102,114,103,105,107,98,104,94,103,104,113,106,100,107,103,102,101,108,102,97,95,97,99,96,112,99,87,102,83,122,110,94,89,113,110,113,108,109,87,99,96,103,115,97,101,94,101,85,107,106,105,103,102,107,106,104,107,106,95,104,94,110,108,94,103,106,95,100,87,97,108,103,106,105,112,102,107,112,108,90,116,103,107,115,99,109,98,106,100,87,94,98,105,108,87,106,102,105,105,95,94,92,105,94,94,100,93,99,101,107,114,98,94,93,98,106,98,90,68,104,120,104,105,90,101,96,103,104,109,96,115,100,103,96,97,93,113,89,110,108,109,101,101,96,104,105,103,93,110,111,100,108,96,84,98,114,89,101,111,95,95,103,105,101,126,105,105,108,116,112,101,106,106,114,104,96,92,110,102,81,103,101,87,98,101,66,99,105,105,104,103,85,114,85,94,108,110,101,108,104,104,100,88,100,90,108,108,116,100,107,100,115,106,86,99,103,92,87,121,103,96,94,91,103,100,81,105,91,105,98,87,111,107,95,103,97,100,78,91,100,102,93,104,107,104,104,101,109,101,103,119,100,99,102,108,104,98,118,99,103,96,111,89,105,102,96,114,105,104,116,103,101,98,99,113,107,97,96,94,111,98,102,104,102,103,116,99,103,108,98,109,77,108,107,98,107,108,102,105,80,106,97,101,105,98,100,126,102,105,96,97,98,100,97,101,98,101,101,93,102,109,105,109,107,91,103,101,110,98,99,111,102,96,99,114,100,113,104,103,103,99,100,94,102,102,114,106,101,99,103,87,101,88,106,97,103,97,89,101,101,101,93,99,101,101,96,113,109,97,91,108,103,96,105,97,97,101,117,111,96,93,108,99,106,105,108,114,99,117,101,97,106,99,91,104,100,90,105,98,97,104,92,91,107,108,111,104,86,101,120,110,108,113,92,118,80,100,106,102,96,107,115,92,95,106,113,99,94,98,102,113,79,104,107,96,104,101,114,105,105,99,101,94,100,103,111,107,105,102,107,102,101,105,112,99,101,103,100,100,110,99,95,104,117,102,105,102,101,99,102,116,103,93,106,112,124,108,110,103,96,99,110,104,101,95,100,97,98,103,108,113,90,100,101,95,99,97,95,102,100,110,109,114,94,110,103,98,107,101,100,104,92,119,107,100,116,105,99,107,115,113,89,97,97,102,113,104,112,101,95,116,100,96,102,104,103,113,111,99,83,102,103,106,97,99,106,102,100,103,104,101,111,78,108,105,88,82,97,105,111,112,100,102,107,111,107,92,103,107,95,89,110,106,102,106,91,102,104,116,109,107,101,95,100,102,106,86,80,91,117,109,85,101,105,113,105,92,102,102,96,106,91,100,99,93,121,103,90,113,105,103,100,92,109,106,98,97,105,104,95,92,103,96,111,94,103,109,103,91,103,105,96,105,120,103,99,106,103,98,101,107,104,91,102,66,111,103,98,106,110,86,102,104,108,112,99,81,105,81,99,107,102,94,99,97,98,106,93,110,103,107,91,89,117,116,105,100,109,102,96,100,106,99,102,101,96,104,97,102,111,103,96,109,106,118,97,91,104,100,69,103,98,92,92,105,106,103,104,97,99,110,106,100,116,83,96,106,103,110,109,113,108,102,98,94,110,92,88,95,105,97,97,98,104,105,89,102,119,104,104,117,96,103,109,98,101,105,96,110,95,113,87,120,104,102,94,109,106,116,99,104,95,95,104,91,95,104,98,99,98,103,90,113,107,98,104,78,104,95,111,109,112,101,106,105,103,96,76,97,108,101,105,93,98,100,107,106,106,104,105,95,100,104,105,96,105,111,99,109,88,104,118,108,96,111,95,96,98,92,104,96,97,103,115,106,98,91,106,113,110,103,102,109,92,105,105,105,113,102,100,97,97,90,96,108,103,98,103,92,111,110,95,97,112,119,102,109,98,113,100,82,92,96,104,102,106,102,101,95,105,107,118,104,103,108,103,99,93,95,109,97,101,107,101,106,106,104,107,107,103,103,99,102,102,120,102,92,100,103,92,99,102,92,98,103,98,112,106,99,96,120,104,108,93,108,103,102,105,110,108,103,101,104,105,106,101,100,102,95,103,107,107,98,97,106,102,87,94,100,99,107,98,101,105,117,101,113,100,102,109,101,79,106,92,117,97,112,96,97,106,109,101,102,102,112,93,105,103,106,110,101,97,98,102,95,98,102,104,109,107,110,91,103,109,100,96,103,100,97,106,97,109,106,87,106,92,108,103,106,102,101,96,110,102,109,105,103,99,119,101,103,105,98,108,89,101,113,95,111,112,127,104,98,107,104,110,94,100,97,99,104,103,101,97,108,106,102,99,119,103,102,103,101,116,106,107,102,97,92,88,97,87,95,131,91,94,104,101,107,97,113,109,114,107,113,111,87,95,113,98,110,106,103,110,86,127,116,118,113,99,102,116,99,110,113,91,102,112,100,103,100,114,107,116,98,95,109,112,128,90,108,119,110,99,100,110,88,106,108,100,101,108,97,104,110,100,106,95,101,90,100,106,100,88,114,109,105,110,105,99,100,104, +671.30524,107,99,93,93,90,105,106,97,122,101,100,107,91,103,114,107,96,106,100,88,108,112,103,107,91,100,101,104,116,93,95,112,99,93,101,87,106,93,103,112,109,107,105,113,91,105,91,105,100,82,103,110,100,105,110,101,120,84,112,94,106,107,97,110,118,123,99,109,80,106,101,103,104,111,94,111,97,101,91,106,95,87,89,109,92,108,94,96,95,106,104,95,103,108,97,100,113,82,110,98,113,96,88,97,93,101,100,102,106,104,102,99,104,98,108,103,110,96,110,111,101,95,104,104,99,100,107,84,99,109,107,107,96,99,117,115,100,98,92,103,102,104,116,110,113,99,106,93,85,96,107,101,102,103,112,77,102,83,102,113,95,113,98,106,100,105,98,114,97,94,100,95,104,91,100,112,102,96,98,106,103,98,100,105,110,105,100,105,109,96,104,119,100,98,74,99,103,114,78,109,104,98,98,106,104,100,84,108,83,75,92,104,106,101,105,100,102,92,97,107,103,101,94,110,96,94,104,106,106,113,105,99,97,106,96,98,101,92,96,106,104,104,116,108,98,96,97,102,95,112,105,104,121,97,114,96,97,100,91,96,73,106,101,98,100,105,82,100,99,89,103,99,114,100,108,105,110,95,99,95,94,92,104,89,104,104,95,100,116,95,100,106,102,113,96,110,98,100,107,100,101,90,99,108,100,103,101,107,103,106,99,103,95,106,99,94,105,130,107,100,102,94,103,98,103,94,104,95,122,101,96,92,103,111,107,102,104,126,98,93,104,102,100,92,97,102,104,96,110,120,90,113,109,113,115,113,105,113,91,104,100,91,96,106,100,106,103,106,91,108,112,96,97,92,111,105,107,107,94,116,109,113,107,102,97,105,93,97,91,89,115,94,95,108,102,97,90,108,105,112,98,88,91,98,87,95,100,107,103,106,97,101,107,99,86,101,99,95,110,99,104,87,99,101,102,94,98,95,107,94,103,99,99,108,98,98,103,111,99,94,99,102,107,104,96,104,102,95,102,110,98,102,102,105,109,103,106,107,98,97,99,137,102,102,107,109,111,91,91,99,116,107,113,100,99,104,111,96,104,98,103,107,109,107,103,105,90,110,102,98,99,106,125,97,91,101,101,92,109,113,107,108,97,95,94,113,90,114,100,109,103,107,105,109,92,113,96,101,103,93,100,101,112,109,105,97,108,108,112,101,97,63,104,105,117,99,107,105,118,101,100,104,97,106,104,103,97,109,97,115,114,104,116,104,104,103,89,101,86,90,105,101,91,120,109,100,105,112,105,99,86,101,96,95,93,103,96,108,121,101,102,108,102,94,100,116,108,110,99,97,111,117,101,91,101,105,110,107,111,96,112,109,98,104,92,109,97,106,109,97,104,104,111,95,99,88,90,103,99,101,108,103,101,98,94,99,88,108,105,107,75,103,102,102,97,105,103,107,118,105,108,110,101,92,91,102,105,99,98,105,101,94,97,91,102,94,98,100,99,108,106,97,110,114,97,95,86,93,108,90,108,98,101,109,104,115,110,94,103,106,93,108,98,91,109,96,95,93,112,107,104,106,103,107,101,103,99,99,100,112,95,96,106,98,107,103,91,103,101,95,115,103,107,94,110,110,109,99,114,99,103,109,107,99,95,109,133,101,113,113,95,112,105,92,114,110,106,95,97,102,103,76,104,106,106,95,114,99,85,96,98,105,98,117,94,99,90,105,105,104,88,99,101,100,102,73,106,96,104,88,102,95,106,100,106,96,112,102,109,98,110,97,100,101,101,97,103,110,93,113,113,108,106,110,104,109,117,105,107,98,87,98,102,107,96,106,97,99,102,110,109,104,105,99,113,97,97,106,116,102,106,142,114,98,103,112,98,107,110,82,99,100,107,95,114,95,102,107,96,101,104,99,110,97,91,88,90,99,104,108,117,87,104,96,95,99,94,104,99,99,87,99,100,99,109,117,94,104,105,95,95,104,98,107,93,105,120,89,95,108,94,103,109,100,99,99,102,116,99,105,103,105,96,108,103,92,101,90,101,99,98,106,94,82,101,100,101,98,105,109,98,75,110,99,99,93,116,104,101,100,112,100,101,105,88,108,103,97,98,97,93,98,96,109,102,96,99,94,69,102,109,83,105,91,121,106,101,114,98,109,127,97,104,104,96,102,99,99,108,100,101,105,90,97,105,87,86,88,104,104,89,92,95,113,88,96,111,89,89,112,98,124,102,98,101,87,88,100,92,100,121,100,101,99,87,106,90,106,99,104,102,103,91,99,112,117,102,102,100,103,87,102,75,115,103,100,108,115,91,105,104,100,102,104,117,108,117,98,96,96,107,87,99,106,100,100,108,102,95,98,121,114,94,101,111,103,76,103,101,109,99,116,101,101,111,109,99,106,98,110,87,116,100,116,103,108,94,124,100,100,102,118,88,109,105,109,104,106,112,89,93,97,86,106,94,100,114,94,114,109,101,105,109,61,99,104,102,98,112,109,122,92,100,107,107,113,106,100,102,106,103,116,107,112,116,103,109,96,101,102,104,90,92,96,99,109,93,106,101,105,106,106,100,102,105,103,98,91,99,87,94,95,100,99,97,104,98,108,107,95,104,104,100,94,104,105,98,102,91,104,103,120,107,99,99,97,103,95,116,93,105,97,99,105,106,103,106,105,107,102,104,103,101,102,101,104,92,105,104,111,108,91,96,102,94,69,106,99,108,102,105,95,105,113,106,121,98,99,101,118,104,108,96,95,105,105,99,115,109,109,107,106,98,108,103,97,109,97,109,95,97,97,90,96,105,90,112,105,103,108,102,113,108,99,99,99,98,109,103,106,103,103,111,91,79,100,87,106,94,98,91,100,94,105,96,106,99,109,89,108,109,98,107,108,105,93,98,105,107,112,100,109,95,102,91,111,109,98,99,93,105,104,110,91,127,111,111,104,102,104,102,113,92,104,114,93,103,103,101,107,93,116,106,93,107,103,122,106,125,109,100,83,105,110,115,104,117,99,113,108,107,80,109,107,99,100,106,105,105,110,98,109,109,93,112,93,108,109,104,106,106,111,104,97,91,93,105,106,94,103,103,111,94,96,110,90,115,105,96,106,94,93,108,120,104,107,107,109,111,106,111,113,99,101,112,90,118,101,102,105,109,93,98,98,102,94,103,105,99,98,91,95,100,104,104,105,114,100,102,97,82,102,98,105,101,105,98,103,102,118,103,99,90,96,101,95,104,102,113,99,102,102,105,110,99,108,108,97,98,118,99,101,100,101,108,105,111,101,94,105,100,109,104,106,91,114,100,102,112,106,111,106,106,97,108,110,101,89,94,106,101,107,100,109,109,85,103,100,98,94,104,98,101,97,104,102,101,107,98,100,102,91,100,100,111,101,108,115,105,103,113,104,98,96,107,96,105,95,106,88,92,91,95,113,104,106,106,105,105,93,108,108,96,103,104,97,108,107,100,108,106,102,108,102,112,109,93,104,91,101,103,111,97,107,104,105,105,106,104,96,111,116,98,114,94,106,102,107,108,109,101,113,97,99,102,106,109,106,106,93,115,105,101,104,111,103,101,97,102,97,102,98,108,93,103,98,98,108,109,103,99,109,99,122,105,115,90,112,113,111,94,107,107,69,99,97,101,98,109,104,101,95,104,115,90,104,115,107,108,97,98,108,93,102,100,97,95,106,100,104,108,103,98,121,107,93,107,105,100,105,103,104,93,99,106,93,113,100,100,94,109,97,98,103,118,103,117,110,101,94,125,96,97,91,100,103,98,101,107,116,91,106,98,99,107,93,104,98,112,100,111,100,92,94,99,108,101,94,103,108,91,99,100,97,100,98,101,106,103,92,107,100,106,104,109,96,112,91,101,93,106,102,87,95,99,93,110,110,106,95,105,100,98,105,101,94,110,97,111,96,101,65,120,105,103,113,93,93,102,97,93,105,101,107,98,106,106,94,114,80,94,107,103,109,93,109,111,97,89,112,64,104,97,99,102,98,105,99,98,101,103,106,97,98,100,107,112,96,103,98,106,95,107,101,100,115,102,97,105,98,107,108,102,101,98,103,111,98,110,98,108,109,99,109,102,115,107,98,105,106,96,103,107,103,102,100,107,103,91,99,111,102,105,109,106,102,95,108,101,104,107,99,91,104,113,99,101,108,81,101,106,79,102,105,103,104,105,108,94,97,100,99,92,114,103,96,116,95,92,102,98,91,83,95,90,96,113,102,108,102,110,96,108,101,92,96,91,100,107,104,107,95,97,106,103,105,140,103,98,112,105,110,101,98,100,99,105,108,109,107,96,101,111,111,109,106,104,107,93,124,94,98,105,102,103,103,102,105,99,105,104,94,100,97,101,99,107,93,105,106,87,100,103,121,96,101,106,117,103,109,83,116,104,99,99,109,101,115,102,87,111,97,93,97,93,94,101,116,113,94,96,108,103,100,104,102,104,108,91,98,112,101,111,99,101,108,96,84,103,102,102,103,95,114,114,108,96,102,102,97,88,98,100,96,105,113,100,106,102,106,113,102,97,110,104,105,96,106,102,102,101,107,107,104,102,103,77,103,93,102,101,99,100,108,105,109,121,110,111,104,109,99,89,108,93,113,103,110,94,86,102,102,105,104,103,96,118,102,107,103,98,110,105,110,95,105,116,106,108,101,104,119,104,104,98,104,107,96,94,99,100,113,101,103,104,101,108,92,98,115,90,99,71,106,111,106,107,100,95,102,101,102,90,87,96,105,88,102,105,116,92,113,97,94,100,105,100,101,113,106,111,109,106,91,99,100,97,107,104,98,113,109,103,107,109,103,94,101,102,97,88,106,108,117,106,115,95,82,110,100,100,113,103,102,120,99,92,106,94,79,95,102,103,117,109,96,103,101,103,78, +671.44647,95,97,115,89,72,113,119,111,96,116,80,105,118,86,102,101,112,97,104,110,95,99,87,107,99,104,101,96,106,109,94,104,103,97,120,94,102,95,108,100,107,105,96,99,101,118,97,106,95,103,85,114,103,100,99,102,104,111,102,116,99,108,85,86,107,91,91,116,82,102,93,101,89,114,103,106,86,98,95,113,109,99,98,98,98,95,106,95,94,104,102,121,112,97,94,103,113,102,101,94,100,98,95,105,108,101,102,101,94,107,104,99,100,103,96,88,99,82,110,99,104,95,101,120,97,96,110,124,101,110,106,95,99,100,106,100,95,103,94,102,101,106,98,104,95,94,103,69,110,100,111,106,84,96,97,93,113,105,99,94,95,101,101,97,99,97,106,97,99,91,101,109,100,102,98,102,106,97,103,105,103,91,103,108,102,105,94,98,108,102,103,119,99,104,100,104,102,111,112,98,121,117,100,108,91,115,108,95,111,114,103,106,102,101,111,108,103,113,119,93,104,106,98,102,99,104,106,102,107,112,109,95,115,119,112,98,116,115,95,108,109,98,104,107,94,98,104,125,90,110,110,121,92,89,79,103,128,91,109,102,90,105,102,95,87,105,98,96,98,101,91,106,100,86,114,110,103,103,99,108,108,107,105,101,96,104,98,91,112,100,103,106,110,110,112,105,105,99,112,107,100,107,99,110,100,102,103,109,107,106,97,100,116,95,98,96,114,99,102,86,95,102,104,98,99,99,102,95,115,104,71,92,110,95,100,105,90,99,110,94,94,73,91,101,101,97,105,110,112,95,117,102,110,109,108,102,126,123,99,113,112,104,106,113,104,95,106,103,98,79,108,88,106,108,105,103,103,94,102,113,103,113,107,105,94,92,100,106,105,103,112,100,97,112,103,95,96,99,100,114,111,103,95,93,84,99,100,89,111,107,100,67,101,99,95,107,102,108,101,92,103,96,94,111,94,88,107,118,88,101,91,87,100,102,107,107,99,101,96,105,86,118,103,106,100,110,99,103,105,103,107,92,103,112,89,103,99,100,90,111,99,109,104,112,103,105,98,97,102,104,107,113,109,106,109,96,96,107,100,116,115,100,116,98,112,98,101,99,97,105,108,104,102,102,86,96,97,109,104,93,111,99,106,101,109,105,126,104,84,101,110,101,103,114,112,99,96,99,102,94,97,74,99,93,96,106,123,106,95,109,86,112,103,101,101,104,111,102,105,106,110,88,87,106,122,96,100,100,96,113,107,97,106,112,91,105,102,92,105,95,104,109,103,113,100,102,104,108,102,88,97,105,101,103,96,103,104,102,110,108,107,103,116,96,97,98,104,118,101,94,91,109,95,95,102,107,100,100,110,98,102,99,102,86,102,100,95,93,110,108,103,106,94,120,110,98,109,109,100,93,95,95,96,103,100,103,105,103,93,110,99,104,95,115,90,106,109,92,108,102,89,107,105,94,95,114,99,106,99,106,99,103,117,100,80,104,113,106,104,101,126,104,120,107,89,99,87,108,105,117,99,109,107,93,97,108,106,94,94,100,112,90,105,109,90,106,87,96,108,100,107,110,115,116,102,92,96,122,109,97,104,96,100,106,106,110,101,103,102,106,109,142,94,112,96,99,101,93,88,105,105,90,104,100,100,91,96,106,86,116,102,108,103,110,100,101,99,102,100,96,101,102,100,94,109,108,101,106,105,102,103,104,120,109,94,115,95,80,103,117,104,120,104,95,110,110,108,109,111,106,79,95,109,113,101,112,97,107,120,121,106,107,110,95,102,112,100,99,108,110,105,99,98,112,93,103,94,99,120,109,121,108,101,103,81,106,105,106,110,98,95,98,97,98,112,100,112,108,97,109,91,99,109,97,103,105,106,94,95,97,97,109,105,102,98,102,98,102,109,112,94,99,109,95,97,107,99,103,128,99,100,108,106,104,103,108,98,101,98,101,118,103,103,94,98,92,95,97,121,93,106,103,95,112,104,95,110,93,99,95,106,103,90,96,109,99,103,108,116,105,109,106,96,106,109,94,88,106,95,105,103,103,109,88,113,98,98,95,89,102,105,80,122,105,100,101,100,94,103,109,109,100,112,101,109,108,99,106,104,95,94,123,92,109,98,91,99,99,109,113,103,102,108,108,80,95,99,114,99,104,99,103,113,99,113,92,106,102,96,107,112,113,94,106,107,107,104,107,95,106,95,102,105,92,99,99,98,93,103,110,93,96,102,83,111,99,92,99,96,105,98,88,102,100,100,111,109,106,87,113,93,105,94,95,113,103,115,92,100,105,100,114,111,101,103,97,103,110,108,102,112,103,106,96,102,102,98,102,110,90,100,108,100,94,103,87,99,103,112,98,114,108,104,95,89,94,106,100,105,104,107,91,106,104,105,101,88,94,106,90,91,100,102,121,90,97,100,108,103,91,96,113,101,91,95,100,116,98,97,104,95,109,94,102,101,91,122,105,102,96,99,95,86,103,100,105,103,100,103,101,96,93,96,95,111,103,103,100,84,97,101,113,111,96,110,101,106,100,97,102,104,99,92,102,95,120,108,93,102,105,92,102,102,87,98,103,104,93,91,102,105,108,106,122,99,102,91,95,106,98,96,91,108,97,101,95,138,98,105,97,104,83,103,100,85,114,96,99,112,111,99,102,94,90,108,107,103,93,107,95,109,101,98,95,98,101,104,103,112,70,100,107,131,104,109,95,96,99,97,102,84,123,114,106,101,106,110,99,103,100,106,86,96,102,119,108,115,99,88,98,96,107,98,98,91,99,102,107,107,98,105,106,102,102,113,91,97,85,102,90,96,113,107,92,98,99,94,100,87,102,100,100,109,110,115,92,104,106,103,116,105,100,115,103,118,96,96,101,84,104,99,84,110,106,107,115,107,105,102,113,104,125,98,109,98,107,96,105,87,98,95,112,98,97,95,109,91,89,109,92,94,101,82,105,80,98,98,102,91,101,111,102,101,107,104,103,106,103,96,106,103,108,109,100,102,102,120,109,113,96,100,96,114,98,116,107,96,105,99,99,103,87,97,80,119,104,103,90,112,104,97,105,99,107,96,106,95,91,108,103,95,123,102,99,101,98,81,100,104,109,106,103,95,100,102,108,100,116,123,107,104,109,92,97,107,95,116,96,108,87,100,96,100,109,108,112,107,100,98,97,116,96,91,96,92,109,109,103,99,107,103,102,101,103,106,101,102,103,92,114,111,95,107,94,86,84,118,112,101,93,97,100,88,105,94,87,100,103,107,95,105,112,99,93,98,103,103,102,94,110,109,88,103,109,97,102,106,102,104,95,110,108,94,110,107,99,85,100,104,104,95,94,89,89,104,97,117,104,109,107,89,106,92,93,108,91,95,107,100,93,106,91,98,104,110,108,76,97,114,104,95,98,96,111,90,102,107,102,97,108,106,96,103,98,103,98,100,94,105,108,95,104,104,93,97,107,99,99,103,108,106,97,91,89,95,107,100,102,109,94,102,96,94,106,107,88,100,97,102,103,103,107,106,98,99,100,104,108,96,102,91,109,109,104,112,117,96,107,121,109,111,112,103,103,105,106,107,95,88,94,93,91,100,109,97,103,92,106,98,91,94,96,105,101,127,95,111,110,95,103,94,101,106,104,116,103,95,97,112,100,92,98,102,103,105,100,80,113,109,99,109,109,97,100,101,95,106,109,102,99,105,107,115,102,112,94,98,97,105,95,102,93,97,91,107,88,106,115,105,96,106,97,101,97,101,100,95,97,103,94,100,92,96,93,99,93,106,104,101,109,102,102,100,112,100,94,117,98,104,99,107,113,114,100,87,96,106,99,100,106,108,96,92,109,102,100,103,100,107,107,106,102,103,84,106,98,99,90,94,102,95,94,103,94,102,93,117,105,108,90,101,95,108,110,115,105,113,93,104,94,102,93,100,90,97,102,85,100,107,95,94,103,106,89,106,104,95,100,97,98,102,109,97,95,101,93,100,100,93,99,95,109,93,102,106,98,106,94,102,98,116,108,106,97,103,102,106,89,105,99,103,86,98,85,109,109,103,88,75,104,97,94,119,89,91,105,115,113,100,94,104,100,99,106,107,102,103,100,97,100,96,96,97,97,99,99,107,91,96,104,88,114,95,107,98,106,95,100,103,109,83,88,87,96,105,105,105,90,101,104,106,101,98,96,97,106,94,110,90,103,107,93,90,95,88,117,91,103,108,94,116,98,100,86,93,102,102,98,88,103,94,93,94,108,98,104,98,100,99,100,106,110,102,99,101,106,112,98,93,94,106,103,97,99,106,123,92,104,101,104,98,89,95,115,78,103,95,97,104,111,109,93,95,94,102,89,100,92,111,100,92,105,110,102,105,98,108,109,96,91,105,106,101,102,95,88,107,110,78,90,91,97,102,108,78,105,99,99,109,96,113,92,91,96,98,98,100,104,105,109,98,100,103,102,98,86,106,100,103,97,97,80,116,97,105,102,98,101,88,102,92,94,101,138,107,101,103,113,105,119,102,102,100,96,108,107,91,83,104,111,98,113,92,102,99,99,105,109,94,102,101,128,106,105,103,98,122,103,97,107,110,103,99,101,107,101,84,91,93,106,103,101,109,104,93,108,102,107,85,113,103,88,107,103,101,96,89,102,94,102,98,108,122,102,106,87,100,107,99,96,92,95,99,102,94,108,103,96,103,105,97,118,107,101,99,108,101,98,91,96,93,107,88,89,83,89,100,110,97,105,104,97,106,101,94,104,94,106,99,107,97,107,98,95,103,111,98,93,105,99,92,98,106,89,105,106,93,108,105,92,108,95,105,100,102,99,97,105,88,120,108,99,113,107,86,94,98,94,126,91,100,87,113,94,113,88,101,101,109,106,98,101,115,89,105,92,108,101,98,102, +671.58771,95,92,111,105,99,100,99,104,110,94,102,95,105,108,108,102,103,100,103,93,112,101,108,113,116,103,94,96,112,105,100,110,100,83,109,99,113,84,92,115,113,101,99,106,105,107,103,90,97,116,101,97,95,107,99,90,99,93,110,113,95,96,106,101,99,114,99,102,106,99,117,101,99,104,105,113,95,114,106,97,98,99,116,104,107,103,98,114,107,106,105,104,124,105,103,101,96,106,98,105,95,109,95,106,102,117,105,98,108,84,104,101,104,105,99,108,100,101,108,122,90,104,97,116,77,109,111,98,105,106,89,101,98,114,109,97,104,96,101,103,99,97,99,99,90,106,104,104,96,103,100,96,108,93,101,101,102,103,110,98,108,100,100,105,104,102,95,97,105,99,91,103,94,89,104,93,104,90,105,100,97,94,101,104,121,93,105,91,113,93,95,106,100,100,132,114,94,110,106,109,102,100,102,109,97,101,105,109,103,112,102,103,87,105,107,106,98,116,90,103,103,108,87,111,99,98,108,97,117,108,105,105,113,115,105,107,101,95,106,101,90,91,117,105,106,98,103,102,107,98,111,102,114,105,99,95,94,122,109,96,99,116,97,89,111,104,117,95,114,102,109,108,105,107,112,110,93,104,109,103,100,100,105,107,100,109,95,96,103,104,100,98,103,100,107,110,105,98,102,94,109,107,104,93,94,117,117,111,105,107,113,109,106,102,98,93,93,109,100,96,111,107,107,112,103,98,95,110,114,109,111,116,117,109,102,101,99,102,112,115,103,92,96,99,97,108,105,109,102,106,97,98,96,107,94,108,105,104,98,107,91,107,90,105,94,105,101,108,98,102,106,85,101,100,96,105,113,104,96,109,104,105,101,119,110,101,95,103,119,89,103,83,107,110,113,96,95,101,68,106,102,95,101,101,104,95,120,103,113,94,95,95,109,95,98,105,94,95,113,96,116,95,88,109,91,87,101,98,115,110,103,105,97,118,94,95,110,98,99,113,95,109,110,105,101,104,118,100,99,104,101,101,101,105,93,102,112,103,99,98,112,96,109,96,97,94,92,112,105,94,104,117,110,102,92,110,101,118,99,99,103,117,113,98,91,109,120,98,90,97,108,115,97,96,97,87,93,102,103,115,102,90,79,114,101,113,92,95,106,99,104,102,109,113,95,101,93,97,109,95,106,112,101,88,99,96,95,104,96,96,95,105,104,106,99,99,111,100,98,108,96,91,101,108,118,101,106,90,99,97,102,98,109,106,103,112,97,98,102,104,113,105,92,93,102,104,104,100,94,109,97,102,95,101,110,106,109,96,103,110,107,95,94,95,94,99,106,105,77,102,100,94,94,102,116,96,97,102,93,102,108,95,111,86,97,99,112,100,99,74,101,106,106,102,94,101,105,106,101,104,103,111,110,98,110,115,107,95,96,111,105,106,110,107,103,108,107,111,115,104,117,99,108,106,103,101,96,103,102,102,109,95,101,114,92,100,99,96,99,113,97,97,109,94,99,104,106,93,108,98,110,101,111,101,112,98,111,78,107,96,110,104,113,90,79,107,104,107,94,111,108,107,104,105,105,104,114,98,99,100,110,91,94,90,114,101,108,123,104,105,115,110,102,93,96,109,107,109,102,94,108,83,105,104,100,107,109,103,96,105,107,93,101,108,95,108,96,105,103,105,110,97,90,107,103,111,97,114,98,102,100,103,108,104,93,95,102,94,100,108,98,97,102,111,102,100,107,99,109,109,110,94,101,105,108,103,99,109,91,108,99,102,92,103,86,105,94,108,104,110,103,105,99,100,96,84,107,88,100,110,105,113,98,113,105,109,105,100,117,94,104,112,110,92,107,107,106,106,106,102,99,93,106,105,97,109,109,97,110,102,91,107,105,95,105,119,117,99,99,118,97,108,99,103,105,96,108,108,109,108,111,96,102,105,103,110,96,97,100,102,98,81,108,104,98,94,95,94,113,101,99,104,110,106,87,104,99,86,116,106,103,109,95,99,111,101,112,98,108,98,101,102,103,116,106,96,107,97,75,109,98,119,116,105,103,102,106,105,105,97,110,96,95,109,104,112,100,93,99,100,109,103,104,93,124,89,104,112,111,101,102,109,103,103,105,105,101,106,103,98,98,99,111,99,103,97,105,96,83,120,88,101,106,99,105,104,117,99,96,109,109,110,103,100,102,102,107,97,106,100,92,100,100,96,87,102,103,102,96,108,105,129,100,100,106,100,96,97,77,95,104,111,98,88,102,100,100,112,104,105,100,104,98,89,95,114,101,101,92,110,88,107,104,102,105,109,109,107,107,104,111,108,94,100,98,100,115,117,102,101,96,110,109,103,103,105,110,110,101,112,97,115,112,104,98,101,113,104,100,105,114,126,107,102,99,102,106,110,103,110,98,108,112,93,100,75,96,108,104,96,111,108,101,96,108,101,112,112,101,98,102,96,94,118,112,112,96,109,104,105,112,102,89,108,102,102,105,102,91,103,104,97,116,91,101,110,103,101,102,107,100,119,119,109,102,101,110,102,106,120,107,112,104,102,102,104,104,112,107,103,88,98,94,99,98,105,96,103,105,106,112,112,111,113,107,108,106,108,104,96,113,99,113,85,107,101,91,104,98,103,104,99,105,98,104,99,100,106,84,113,107,109,108,112,100,94,116,106,105,102,100,106,106,101,93,98,112,99,102,104,102,96,120,96,97,119,104,101,111,102,98,119,106,121,108,108,113,118,110,107,108,108,98,113,107,103,114,112,99,102,106,108,117,103,100,99,102,108,88,105,99,104,103,104,111,101,104,102,110,99,105,105,114,90,105,105,110,107,96,106,93,105,101,91,110,106,105,105,100,96,108,109,113,109,112,100,122,93,94,97,103,105,103,110,105,87,105,102,100,106,100,108,103,106,100,108,117,96,107,115,97,117,109,95,94,111,112,98,94,86,103,102,111,105,90,108,106,71,105,109,91,113,81,105,79,107,108,120,92,107,109,101,102,96,108,109,98,105,110,97,109,104,91,121,117,106,96,102,101,106,106,116,105,100,99,112,106,103,107,95,109,103,105,111,97,106,105,102,109,101,109,104,105,102,107,97,104,110,109,101,97,96,106,113,112,100,103,106,105,103,105,105,105,102,102,105,101,100,106,116,104,109,79,107,104,109,99,80,98,99,91,100,97,98,106,96,115,104,101,97,93,97,89,100,98,93,106,99,96,113,101,107,102,108,107,98,112,91,108,96,117,111,106,104,102,96,95,121,97,97,104,96,116,98,109,96,95,100,105,99,104,112,117,104,97,100,98,93,109,111,107,104,105,95,99,114,106,97,104,87,103,94,97,112,99,101,93,95,105,101,96,103,94,94,100,103,97,104,90,102,107,98,94,98,106,120,99,100,108,112,97,107,117,112,94,97,94,106,101,105,97,100,102,101,114,111,111,104,100,96,95,107,104,112,91,95,117,122,111,136,104,97,111,94,88,100,94,95,100,106,113,115,76,121,96,105,100,106,94,106,104,108,108,120,94,110,107,106,97,101,93,91,95,102,107,101,126,99,100,109,112,109,94,114,95,104,99,77,99,83,104,96,99,96,109,108,95,100,93,94,112,101,106,100,100,105,117,106,107,109,91,105,103,97,100,95,92,98,100,111,96,98,109,117,95,96,102,99,109,102,109,101,105,99,108,100,101,109,93,102,100,97,112,109,109,92,112,102,102,105,113,102,97,105,104,105,101,101,109,104,108,99,99,101,106,107,94,104,108,97,100,102,104,105,98,83,100,94,101,104,102,99,107,106,101,108,116,107,98,96,106,100,96,104,77,108,113,109,96,107,98,93,92,118,106,106,108,87,101,100,97,97,106,108,105,102,91,102,103,103,87,105,99,95,100,100,105,103,101,85,102,91,103,97,98,106,90,103,99,97,113,99,102,104,105,110,104,91,111,109,99,101,98,105,101,100,100,96,96,101,106,108,79,102,89,111,109,102,104,95,102,109,105,104,106,108,90,105,105,103,110,104,95,106,98,102,109,106,98,105,89,96,94,100,109,101,100,108,102,104,102,91,100,107,97,95,107,108,112,110,117,98,113,108,103,103,107,111,101,89,92,99,107,111,100,105,109,99,98,94,95,116,105,112,109,98,102,102,100,96,97,101,114,97,104,104,106,122,106,99,105,106,110,103,105,105,98,102,100,89,101,98,101,102,105,110,101,109,93,95,108,98,110,100,113,111,102,99,93,103,101,98,85,117,92,103,91,97,98,114,96,103,96,107,96,99,118,106,95,98,104,108,108,103,109,107,109,102,120,109,109,105,120,103,102,102,100,102,104,103,102,102,99,104,112,105,105,108,100,109,106,110,106,113,105,105,104,102,113,91,111,108,109,88,108,99,110,88,101,105,109,101,99,102,106,106,96,107,91,85,107,105,98,116,74,103,94,104,97,106,108,102,109,94,116,104,106,116,99,104,116,102,103,110,106,95,90,98,99,117,108,79,96,110,115,103,118,107,82,100,105,99,108,118,74,106,112,120,101,112,105,102,94,101,112,95,102,91,93,120,102,107,112,100,90,94,101,93,101,108,101,102,100,101,109,107,97,94,105,106,91,105,105,110,109,123,105,105,101,96,108,109,100,91,87,113,117,123,105,99,109,116,117,107,91,97,104,99,104,100,101,105,106,106,104,100,103,124,133,101,103,99,101,116,105,107,94,94,101,92,99,90,111,102,105,103,124,98,100,109,109,105,106,113,81,93,93,107,99,102,98,88,113,91,109,106,92,100,106,102,94,105,113,104,96,112,95,106,96,94,105,109,86,109,106,102,116,101,125,117,111,106,103,109,92,97,114,80,96,110,90,96,100,97,117,102,108,131,105,104,111,95,99,101,106,114,105,115,85,103, +671.72894,85,82,101,102,104,82,101,101,71,117,99,89,98,98,106,101,101,106,92,94,99,98,101,99,91,105,92,106,113,98,108,94,96,100,102,108,79,103,110,122,101,110,104,106,98,104,108,89,96,106,91,110,110,89,95,91,97,95,92,89,100,91,91,93,98,105,116,97,101,91,92,92,109,102,106,113,117,96,105,98,98,98,108,118,109,104,83,93,98,98,112,99,101,105,88,104,116,102,110,99,123,98,104,105,113,103,95,93,109,93,107,87,103,90,105,99,106,112,108,99,87,100,106,108,108,103,104,94,101,102,83,88,100,98,98,117,96,108,96,97,106,127,95,91,94,111,105,103,93,105,96,99,112,98,89,101,107,110,108,87,97,102,95,105,96,105,96,98,100,96,124,105,112,100,110,93,104,99,108,105,112,91,109,98,93,104,107,97,111,94,88,98,101,95,99,102,89,91,99,98,95,111,81,92,109,98,101,99,87,112,90,114,107,108,106,108,98,96,99,95,104,99,99,97,102,118,93,113,121,104,99,103,103,92,104,110,93,95,105,93,100,95,101,99,99,102,117,82,111,112,105,103,106,103,98,111,91,102,102,109,97,103,98,98,95,100,95,93,105,103,119,107,103,104,92,110,100,106,99,98,95,92,115,122,98,98,100,97,102,97,104,108,101,92,125,102,105,103,88,98,92,103,109,124,104,108,108,113,96,105,80,115,103,100,103,109,102,136,102,108,104,83,99,109,100,104,101,114,113,112,113,103,104,108,95,97,100,115,99,104,97,93,91,112,109,108,108,94,109,92,99,101,110,103,93,103,99,106,105,101,95,92,94,100,105,103,105,95,96,93,106,94,100,100,96,100,99,99,102,106,92,98,91,107,97,103,104,100,86,89,106,102,97,96,95,101,94,103,109,105,107,107,98,98,96,97,103,99,101,85,93,102,99,118,93,78,103,101,99,84,104,105,95,112,77,105,97,108,105,99,96,99,93,102,95,99,102,109,92,107,107,105,99,103,97,103,95,106,107,111,94,95,105,108,105,86,104,110,108,112,98,113,107,111,99,105,93,97,99,94,96,105,96,98,103,121,100,100,110,101,105,105,100,91,93,104,105,95,108,85,109,96,118,106,97,99,103,108,103,109,98,100,105,92,100,104,92,99,121,107,104,101,105,103,101,99,99,105,108,95,93,93,106,101,95,105,117,111,95,105,111,103,96,105,121,107,93,99,104,92,98,99,101,96,98,83,107,101,106,97,106,108,94,109,105,104,95,82,104,95,105,101,103,126,93,103,122,109,101,99,93,97,98,105,96,108,100,93,113,106,95,99,98,108,96,115,104,106,104,101,91,101,86,104,108,95,89,103,118,96,107,106,114,106,105,109,108,100,95,102,105,103,102,106,105,95,112,99,103,100,106,99,103,102,92,113,99,97,108,107,104,95,92,103,106,114,100,104,102,101,105,109,95,93,106,100,99,77,111,103,98,99,107,84,107,107,107,97,105,101,102,105,100,100,84,102,109,97,100,106,111,103,105,102,95,105,106,106,100,113,105,111,116,96,95,105,109,97,107,108,106,117,95,104,104,96,103,101,110,99,97,94,105,104,105,113,101,109,100,102,106,101,104,99,97,101,104,104,105,110,100,96,105,101,101,89,96,107,102,121,96,91,121,99,87,100,100,89,99,100,86,102,88,106,101,107,109,93,87,106,99,96,103,102,115,108,97,90,98,105,106,96,91,101,96,107,107,95,100,97,99,102,106,97,103,100,105,100,102,98,112,99,95,114,103,101,85,110,99,99,100,109,109,114,104,88,101,91,94,102,96,102,108,96,116,98,100,101,117,106,111,92,91,100,109,106,105,95,104,120,106,98,97,109,108,98,98,109,108,109,121,97,121,88,101,124,113,103,102,100,94,97,79,105,90,98,113,90,96,94,109,103,91,105,96,99,89,114,89,110,109,100,136,107,116,106,95,105,105,108,102,101,110,106,100,106,105,109,112,109,98,112,109,104,99,101,96,111,101,98,92,117,95,103,107,92,105,98,100,94,90,103,105,95,101,97,74,100,103,98,99,92,96,108,93,110,93,118,102,106,107,103,95,99,100,118,96,107,99,103,110,106,113,91,83,117,94,96,100,105,104,106,103,118,92,97,102,107,106,103,98,99,90,97,103,96,118,111,104,99,104,102,111,92,99,96,97,101,97,98,103,108,102,101,105,86,109,97,94,92,96,111,93,113,101,97,95,106,101,109,105,98,80,102,96,98,93,103,99,94,106,102,101,100,111,100,111,79,109,112,98,108,99,105,109,90,96,109,101,103,116,102,104,82,112,100,95,95,94,93,98,99,82,122,114,94,88,102,105,109,100,108,97,110,105,106,105,110,98,110,105,106,101,94,105,108,92,103,101,102,103,107,95,104,97,116,113,109,94,89,94,112,109,100,109,104,101,85,98,80,121,108,104,106,105,117,102,102,109,97,106,112,98,98,104,120,116,100,112,91,93,99,102,97,101,106,105,108,108,103,99,113,104,117,108,98,94,102,99,94,106,91,92,106,106,108,87,113,113,93,99,107,98,107,104,98,111,95,96,94,94,105,101,117,96,97,107,104,103,98,106,102,112,94,75,104,109,103,104,106,96,96,98,98,101,101,111,88,103,102,93,104,102,113,117,106,99,101,105,104,86,101,100,107,109,101,116,84,111,100,86,104,111,112,101,104,111,102,88,97,100,95,107,99,105,114,95,111,102,102,101,100,97,107,101,110,100,100,109,103,98,109,104,95,110,104,99,109,100,96,102,106,88,97,97,94,97,105,113,102,104,103,105,96,89,102,87,101,105,115,109,112,99,103,99,100,101,106,109,116,115,102,98,112,106,104,117,103,93,101,85,95,107,108,106,99,98,110,105,96,104,102,92,93,106,101,108,104,99,90,104,117,93,95,106,112,103,102,102,108,121,97,101,112,87,95,120,106,89,102,98,104,104,92,103,100,91,112,91,117,106,108,89,98,109,105,99,104,100,114,104,113,94,95,105,106,103,109,104,108,105,94,108,100,78,106,106,99,107,100,97,106,93,110,97,95,109,96,103,105,108,101,110,94,100,98,107,104,113,110,103,95,108,104,114,117,103,98,117,103,115,106,103,98,102,96,101,97,103,100,104,93,98,95,119,108,101,94,110,111,117,108,100,110,107,103,114,83,102,114,95,104,75,111,100,87,96,111,96,107,112,99,93,105,105,103,99,97,108,99,114,112,98,109,93,106,109,103,95,102,117,103,104,96,98,68,92,111,99,103,101,104,113,100,104,101,102,101,119,97,103,104,102,118,105,104,108,94,107,97,101,106,101,96,105,83,109,103,102,91,91,105,106,94,109,102,95,96,108,95,98,89,91,105,101,110,94,100,103,100,108,109,120,111,97,95,95,109,103,105,108,96,110,100,94,106,109,109,94,99,97,107,109,100,97,97,109,111,97,107,107,102,93,107,113,98,100,101,102,99,109,85,92,104,92,83,95,103,112,100,110,104,95,110,101,124,103,96,105,96,94,103,107,106,97,116,99,99,92,108,108,107,132,91,94,103,105,102,109,91,103,100,105,102,107,111,109,99,113,103,82,103,110,103,92,108,100,106,100,102,105,97,109,101,100,102,100,105,102,111,95,99,109,122,102,109,106,109,104,92,105,101,107,107,93,106,70,106,105,86,116,104,91,104,100,109,100,106,87,100,104,106,101,107,113,91,95,98,95,96,105,96,74,100,96,103,90,108,100,117,96,105,114,95,98,112,112,103,120,92,101,96,91,109,102,109,100,112,100,105,102,106,113,105,109,111,104,96,95,103,101,110,102,103,98,108,106,107,113,94,96,109,108,103,112,104,106,102,105,98,107,96,100,106,102,100,102,99,99,94,111,105,94,105,102,107,112,110,98,114,102,110,116,102,112,115,105,97,99,92,101,108,93,95,102,102,94,91,84,95,107,112,95,102,114,101,101,99,90,105,92,98,91,97,103,90,101,99,95,107,106,93,90,108,108,99,107,107,100,107,102,91,103,86,93,124,99,100,76,100,103,113,97,90,105,100,92,102,106,111,104,101,87,100,99,106,101,98,91,102,99,99,108,106,102,91,94,97,102,107,98,91,105,108,85,102,107,103,96,108,118,108,102,92,113,107,104,115,99,90,98,108,108,103,102,98,98,99,113,112,99,123,98,113,93,102,124,109,93,106,114,101,106,94,96,96,109,105,93,98,93,99,103,102,107,115,104,105,98,106,98,101,98,114,101,102,97,109,94,105,110,105,102,109,108,97,92,108,97,113,116,101,104,113,93,91,119,99,101,103,113,90,113,85,97,101,102,112,103,108,95,90,102,100,90,98,92,104,100,107,96,105,110,109,97,101,107,107,104,90,100,101,92,113,96,95,99,100,115,92,105,117,92,105,100,107,93,95,103,96,99,116,103,99,101,96,90,108,103,114,97,100,107,91,91,99,97,110,102,96,101,87,86,73,103,95,96,113,98,94,98,103,110,117,104,105,108,115,102,103,100,102,104,100,105,92,106,102,103,95,101,109,103,102,108,99,109,103,107,94,114,101,109,99,112,96,93,102,102,101,101,118,96,100,109,97,102,96,99,94,96,105,120,98,99,115,112,98,101,111,105,110,113,109,107,78,93,101,105,99,104,95,93,96,111,106,106,101,102,99,109,109,106,107,108,101,106,96,89,88,110,94,100,92,98,111,95,106,101,108,102,99,115,117,91,102,110,108,96,101,100,107,99,98,102,113,107,95,108,102,98,98,94,94,113,103,111,113,105,98,106,89,93,98,102,96,109,104,95,105,108,113,98,108,100,99,106,76,97,89,98,112,110,104,103,96,106,91,101,99,100,100,84,99,87,106,99,106,95,91, +671.87024,106,115,99,100,112,111,95,98,103,97,97,100,97,109,103,99,92,105,103,100,94,100,102,100,87,97,90,95,102,93,101,94,87,103,93,100,115,86,105,96,108,92,100,98,104,107,96,99,100,103,99,100,99,96,92,79,92,107,106,80,93,106,97,97,103,99,85,111,103,105,104,109,89,99,100,111,101,102,95,100,106,95,95,103,109,79,103,109,97,110,97,106,117,88,96,108,101,101,99,99,104,85,104,105,97,100,96,111,90,106,110,96,94,76,100,94,107,111,111,93,99,91,101,105,119,101,95,102,107,102,91,112,102,102,113,107,95,106,112,100,108,107,93,104,94,97,102,91,90,116,109,114,101,97,96,99,99,103,106,98,102,103,90,104,95,101,107,105,109,100,96,105,98,105,99,95,115,95,105,102,119,109,97,102,93,92,92,80,112,105,103,106,98,102,102,95,97,91,97,96,93,110,111,108,96,92,96,104,101,111,95,99,105,105,101,102,98,109,83,105,96,110,100,112,99,106,102,91,109,95,104,105,99,95,105,108,104,101,95,103,102,96,96,104,99,106,101,98,72,121,96,105,98,112,88,100,105,97,100,106,96,114,85,101,96,101,104,89,110,105,77,114,104,92,107,94,104,103,100,107,98,101,104,104,99,97,107,102,88,110,103,110,104,105,108,98,111,103,102,98,93,105,98,93,94,113,105,103,108,100,92,115,109,98,99,95,104,105,113,109,100,85,92,102,99,94,97,97,97,103,101,90,97,104,95,108,124,105,90,97,97,106,106,88,108,91,100,101,95,98,99,101,107,88,110,106,95,106,101,107,88,92,95,100,99,103,104,114,94,107,102,96,117,105,99,87,108,98,91,100,99,105,97,105,94,84,96,116,107,96,105,104,101,102,95,106,95,107,105,101,97,105,100,101,101,101,98,93,100,97,96,107,108,103,82,93,95,116,92,109,95,116,110,100,100,93,100,94,100,115,95,103,104,99,105,105,103,95,100,108,100,92,113,93,92,102,109,95,104,106,97,81,100,99,92,94,93,100,104,94,91,107,103,98,107,103,90,94,108,98,103,101,106,98,102,101,100,102,112,108,92,112,105,103,100,96,102,107,94,104,98,103,100,91,92,93,87,95,100,92,102,102,105,99,112,113,95,108,111,108,97,109,99,105,100,112,89,103,109,96,109,106,104,98,112,102,100,106,114,106,81,108,103,105,109,100,100,106,98,113,97,100,100,91,106,87,105,95,77,104,94,102,105,91,85,109,104,86,102,98,84,111,102,108,103,98,103,98,99,100,99,90,103,84,78,102,103,102,104,106,107,100,102,91,109,104,106,84,81,127,106,111,90,98,107,98,96,99,101,90,91,100,92,94,103,109,87,102,100,94,95,94,130,102,105,99,108,105,95,97,116,112,91,102,106,97,101,101,101,105,104,102,90,112,95,107,112,93,96,94,105,117,99,107,93,97,106,96,107,118,101,108,100,98,129,106,117,106,105,92,101,108,105,110,108,101,109,92,101,106,99,99,104,96,98,103,95,102,105,103,117,94,104,90,84,92,82,95,101,100,91,107,106,120,116,91,105,97,96,90,95,100,97,98,103,103,90,107,95,95,99,101,90,96,90,108,103,109,105,106,99,91,107,95,102,89,92,88,95,95,100,104,99,101,111,107,99,100,101,97,114,104,110,92,116,104,104,101,101,106,106,87,111,99,96,84,98,94,105,101,94,109,85,104,94,107,85,100,97,84,117,110,104,103,102,87,100,100,92,113,96,117,106,96,97,103,111,107,118,107,88,111,111,107,107,95,88,102,105,107,104,113,114,84,104,100,101,110,92,106,106,99,91,121,108,104,107,105,110,106,87,108,97,99,105,100,101,107,122,103,108,108,96,107,116,113,96,101,103,103,105,94,81,104,96,101,109,91,96,81,108,94,103,104,93,99,98,104,102,101,107,100,101,102,87,102,97,114,99,100,91,98,102,94,104,99,96,91,99,109,113,104,104,104,113,99,101,73,110,106,104,118,101,102,103,113,101,101,104,104,102,97,110,92,100,103,106,100,103,104,105,109,104,105,106,86,94,108,96,107,101,113,102,103,106,96,93,102,109,111,106,100,108,112,96,97,93,98,104,107,94,95,101,100,95,104,101,106,100,114,99,96,106,109,112,113,104,96,107,112,105,115,92,91,99,98,89,92,103,97,101,99,110,110,97,102,109,97,85,95,108,104,98,102,94,98,91,95,103,112,110,100,94,101,94,89,78,103,98,108,113,101,91,100,109,110,104,89,102,98,87,108,98,103,112,93,97,93,100,98,101,105,106,93,86,103,109,100,98,107,105,113,107,99,99,92,95,113,103,102,107,97,102,101,111,101,104,110,109,89,91,122,113,94,96,114,98,107,104,90,101,106,106,112,102,92,102,102,113,94,100,95,92,103,102,108,98,102,100,122,90,98,102,87,90,103,109,92,110,108,102,102,100,96,90,118,88,98,95,89,99,95,100,106,104,113,107,89,98,100,98,113,98,93,102,101,113,98,98,109,101,96,122,95,114,121,98,110,109,100,108,105,110,85,110,101,110,100,97,91,100,106,98,113,100,103,111,91,103,97,113,108,120,106,96,108,107,94,94,97,86,92,104,87,94,116,98,92,104,85,105,101,110,98,95,102,91,95,100,99,94,92,102,112,107,74,114,100,101,103,113,90,92,106,108,102,95,100,112,98,106,109,92,97,110,99,119,92,103,93,106,103,102,101,119,104,107,107,115,110,113,107,101,101,90,107,105,113,94,97,104,103,107,111,101,103,106,106,95,104,103,104,104,127,100,96,114,120,98,117,93,108,104,106,99,107,109,92,102,120,106,104,116,104,111,91,103,92,109,119,101,100,101,107,101,91,100,94,90,119,113,100,109,83,110,102,109,97,100,105,108,109,101,103,106,94,98,102,113,107,104,106,101,100,106,109,102,106,101,89,115,94,109,96,106,96,106,101,112,97,103,103,87,122,102,93,91,109,113,99,100,87,107,98,124,102,102,109,108,106,101,96,111,95,109,96,99,92,111,103,93,113,108,101,101,105,109,95,105,103,100,103,103,99,93,104,106,106,101,108,99,110,103,109,94,87,103,93,101,111,96,115,113,102,87,97,80,98,99,107,95,93,103,100,101,104,93,99,103,107,112,109,103,102,98,106,105,94,104,108,96,107,111,87,107,100,107,92,106,113,100,105,94,102,111,97,103,103,111,98,116,102,106,107,94,95,89,102,112,99,103,106,107,90,100,98,99,118,101,107,95,103,102,99,97,94,110,99,106,105,101,99,103,111,108,118,106,92,110,95,100,106,103,95,92,108,103,100,107,111,101,100,98,105,95,109,108,102,112,113,117,103,102,106,94,110,104,105,106,95,96,104,104,110,97,84,97,96,108,97,92,91,99,108,96,108,104,102,97,109,104,104,106,118,100,99,102,96,105,116,103,104,90,94,90,105,94,96,109,103,104,109,107,102,106,104,102,109,106,106,99,106,102,112,101,107,112,103,95,112,110,103,93,107,111,103,105,100,102,108,115,90,95,88,103,94,111,99,96,92,91,106,103,99,104,122,107,109,103,98,98,92,107,98,75,88,97,110,100,112,103,92,107,96,101,96,90,105,101,93,106,99,108,120,99,103,94,107,104,110,109,96,112,96,107,106,107,109,99,109,106,107,102,112,108,98,99,103,75,109,92,99,103,104,117,104,109,105,108,97,102,92,105,101,106,107,98,124,111,106,97,103,106,99,110,94,102,94,116,103,79,112,101,102,108,102,111,97,113,105,109,93,95,99,102,106,93,100,98,105,107,100,106,96,98,91,111,106,101,100,107,97,98,90,112,87,107,98,101,101,92,104,92,96,109,97,101,109,112,100,109,100,100,104,106,98,106,100,92,92,102,91,117,105,97,91,103,114,96,111,96,108,91,100,100,106,101,97,108,93,109,102,118,103,112,98,74,86,97,107,102,97,89,102,109,95,100,96,99,112,103,109,100,95,99,113,117,98,106,101,99,102,105,103,112,130,114,91,103,91,97,99,101,100,92,84,100,107,99,103,105,95,86,99,116,104,88,93,101,103,106,96,97,109,105,104,98,101,112,91,101,91,97,102,100,102,107,106,107,109,107,96,92,91,99,87,106,105,94,92,108,102,98,97,92,88,102,106,99,96,104,98,104,99,112,103,99,105,100,103,117,109,106,106,112,104,103,104,100,92,104,95,111,110,98,107,103,107,102,93,105,97,101,98,94,92,91,109,107,109,99,102,106,104,103,104,102,98,104,82,107,113,100,107,98,102,105,113,106,99,113,103,111,103,99,101,101,111,102,101,115,111,107,109,88,104,102,103,111,96,101,95,111,106,99,107,104,112,99,97,108,92,88,118,98,106,106,116,107,96,104,105,83,100,105,107,100,109,103,117,103,102,92,118,95,99,103,115,108,92,108,113,111,103,95,112,87,99,96,101,98,87,91,102,98,100,100,93,100,117,97,93,95,99,108,95,100,99,111,110,104,110,102,100,102,119,102,102,114,104,99,101,125,97,108,99,112,108,93,92,103,105,102,100,120,96,92,98,100,107,104,115,101,115,97,113,104,104,100,97,98,97,113,96,104,94,110,97,112,100,100,95,102,108,100,95,111,108,126,91,78,96,99,106,103,102,101,111,106,99,103,92,100,111,96,101,110,97,101,99,127,102,101,98,108,92,96,98,98,113,107,105,103,112,99,103,89,101,119,105,110,104,108,99,111,100,113,90,107,91,95,96,98,91,104,110,103,99,97,98,111,96,105,92,106,99,95,100,93,102,102,98,99,111,109,110,98,115,102,94,94,102,105,104,109,98,95,97,111,95,97,92,112,88,102,96,109,98,108,125, +672.01147,96,92,97,77,97,84,97,103,96,104,97,105,98,97,92,98,104,112,106,100,115,88,99,93,107,102,106,104,110,101,101,107,110,97,94,87,97,91,98,93,93,97,89,117,105,104,99,105,93,109,100,88,100,104,108,91,109,100,105,108,98,97,106,98,107,98,98,102,102,97,90,102,97,93,99,105,91,98,103,113,110,100,99,94,91,105,95,96,110,101,96,99,102,101,100,93,96,94,104,95,95,105,95,94,89,91,112,63,95,100,97,91,109,101,99,91,102,115,109,100,103,94,67,97,110,91,106,102,123,92,98,104,99,100,101,95,100,107,91,88,94,106,98,87,114,96,98,110,87,108,96,104,111,96,96,102,102,112,104,87,92,109,101,100,111,100,95,89,101,104,97,72,99,118,99,100,104,89,101,108,91,99,110,85,104,88,89,93,99,97,106,95,104,97,99,105,108,104,92,106,88,105,97,93,101,93,90,103,104,108,93,88,105,115,110,101,96,109,96,98,97,111,99,121,91,109,93,114,95,111,98,98,103,100,89,108,98,109,97,104,84,89,94,123,107,98,102,107,101,95,105,105,99,107,103,130,88,81,86,107,93,98,103,109,93,101,109,104,100,97,98,102,100,98,102,105,101,101,97,98,99,95,105,103,101,94,98,104,100,121,97,109,97,112,106,104,98,98,102,108,81,93,98,104,101,98,100,94,98,106,109,108,100,99,83,103,95,103,94,103,108,99,103,92,105,98,113,95,105,109,107,105,99,113,94,110,96,94,93,99,91,101,89,93,108,103,98,104,103,104,95,108,91,94,94,88,109,96,106,94,96,95,90,94,96,92,98,103,93,95,101,100,99,98,93,105,105,105,98,107,106,111,102,92,106,103,94,103,98,99,118,93,95,107,88,100,105,88,106,88,101,100,106,95,97,95,96,102,92,88,82,95,103,114,109,104,95,109,95,100,93,91,94,100,94,95,105,89,105,102,88,107,98,111,101,112,97,106,90,100,101,114,105,98,104,111,106,96,104,112,91,94,96,102,101,97,89,104,96,104,95,101,100,107,109,105,94,110,109,96,102,100,98,103,99,98,97,120,103,102,92,99,100,108,101,101,98,94,90,103,100,93,96,94,101,97,97,105,100,93,97,102,93,105,96,98,103,99,99,108,93,119,102,111,97,99,110,99,102,94,104,95,103,91,112,108,98,103,99,87,95,108,96,100,97,110,110,97,116,112,102,95,102,99,109,106,100,123,110,109,97,98,102,103,105,78,97,100,87,94,113,100,94,96,105,98,86,114,94,95,91,95,99,99,106,103,90,90,96,104,106,90,100,108,103,93,91,110,99,88,99,109,97,102,111,100,104,100,105,99,104,101,104,95,99,87,97,112,102,98,107,98,90,102,104,90,100,103,111,91,104,106,103,91,104,97,91,104,114,103,133,102,83,105,76,99,98,93,117,100,87,101,98,101,106,84,100,95,114,103,101,105,106,92,103,103,106,86,103,109,112,100,96,97,90,95,110,106,108,104,107,103,103,98,90,105,95,104,110,90,95,120,100,95,100,102,96,97,113,103,92,109,94,105,89,81,92,94,89,100,97,70,99,109,105,104,110,109,91,109,96,109,101,87,94,97,107,97,101,90,91,96,103,110,86,91,99,87,92,104,98,104,99,93,95,98,90,94,109,103,94,101,98,102,101,108,102,109,101,103,92,100,99,98,101,99,98,97,105,86,102,112,97,121,88,108,106,107,105,95,109,103,97,105,101,92,94,99,102,102,97,98,86,101,91,103,110,99,93,105,95,97,105,107,93,106,95,102,111,110,98,92,103,98,103,102,107,92,93,106,119,106,93,121,106,98,96,105,99,92,99,105,104,114,110,113,99,95,100,102,127,96,99,107,98,102,93,101,94,99,101,97,119,107,113,99,82,113,103,88,99,90,109,102,94,112,112,91,96,99,92,97,104,108,114,100,97,114,105,131,105,94,104,105,95,96,102,100,103,96,94,106,102,98,101,93,100,79,86,91,104,108,81,98,101,93,91,104,103,102,102,94,95,101,85,98,96,81,100,101,100,113,92,111,119,98,90,103,101,93,99,96,99,93,98,88,99,97,80,105,102,104,94,88,98,98,92,96,110,97,101,111,93,89,93,109,76,113,112,101,96,109,103,109,97,101,99,106,98,86,105,103,96,102,109,94,85,101,96,104,94,108,107,98,91,102,101,95,94,104,88,97,105,94,104,104,98,97,97,96,111,98,105,96,96,96,95,92,87,96,103,95,89,101,99,101,116,98,98,90,76,102,91,101,103,100,101,101,102,94,107,117,97,97,120,107,106,108,84,95,108,94,102,92,103,101,103,95,98,101,97,87,97,86,105,102,96,123,92,103,87,104,109,99,105,112,116,98,109,112,89,109,116,99,99,96,95,105,126,102,100,93,82,99,95,103,106,94,91,105,108,103,110,110,114,109,100,111,116,101,99,96,109,97,103,113,97,111,109,101,108,88,85,105,95,117,94,110,101,88,105,105,113,99,109,91,88,137,93,109,105,112,98,100,99,109,116,107,92,99,101,117,104,103,101,105,109,107,105,94,92,95,101,99,104,101,105,98,104,103,108,108,132,95,106,108,102,102,108,90,106,97,104,94,112,107,104,107,106,109,106,104,110,102,101,99,102,108,84,104,106,101,96,100,95,107,107,106,106,108,108,106,103,97,105,107,106,102,111,110,113,103,88,107,109,108,106,106,100,98,101,105,102,113,104,98,108,121,99,102,102,91,106,100,87,98,107,113,98,108,92,106,99,95,95,111,115,107,107,109,107,109,110,104,93,95,106,106,104,88,104,103,110,107,95,104,103,94,103,104,116,103,101,100,93,106,104,114,97,102,129,117,100,113,102,107,96,105,100,109,109,107,113,100,91,102,98,98,117,105,106,105,97,81,103,105,116,90,106,107,110,115,113,103,86,93,96,104,108,88,83,106,95,99,117,99,103,95,121,105,95,93,98,103,117,112,100,116,98,99,108,98,93,105,108,97,112,108,114,100,97,89,101,104,90,111,103,100,105,89,113,110,104,98,95,104,94,95,104,103,110,107,102,103,105,87,108,106,109,114,103,88,100,108,115,106,97,97,102,106,100,99,104,95,93,112,91,102,105,110,98,107,119,108,101,113,97,108,102,104,103,106,94,110,107,125,108,98,91,81,96,98,106,98,109,82,100,85,112,108,112,101,102,100,98,95,111,104,104,98,103,102,103,109,107,95,99,110,104,104,109,93,117,114,120,96,102,97,100,108,101,99,96,102,103,100,122,110,127,88,95,104,114,102,101,101,100,106,99,102,103,112,99,104,95,106,111,104,108,93,106,111,109,105,117,112,106,110,95,101,112,109,112,103,101,114,95,102,112,98,96,99,109,104,95,102,112,90,107,106,116,93,100,101,104,105,91,96,131,83,99,106,121,101,95,98,104,100,102,107,104,112,111,106,105,95,100,107,111,88,109,118,105,95,108,94,113,102,95,104,96,98,103,107,102,98,101,106,103,109,99,117,94,94,108,124,115,115,101,111,113,107,110,100,100,83,103,107,105,96,109,98,91,111,101,104,103,95,111,100,101,96,92,102,110,97,106,102,115,107,98,109,97,107,110,107,109,98,106,109,103,93,113,108,109,95,96,100,94,109,103,109,97,113,103,113,109,98,104,106,115,99,105,99,103,92,93,105,99,97,106,99,112,105,101,96,94,94,108,139,97,83,97,100,98,101,106,109,88,89,92,104,110,109,101,94,90,96,100,111,99,102,103,97,104,94,112,114,102,96,106,102,96,111,109,112,99,105,109,104,105,101,100,80,102,90,108,101,75,102,114,113,105,106,103,109,99,109,102,103,93,100,116,99,106,103,99,101,92,91,108,95,111,105,101,95,103,106,104,98,109,99,109,92,91,96,107,94,96,100,104,98,99,105,104,102,104,107,108,106,103,110,100,100,113,100,103,97,105,103,96,101,96,94,98,103,109,106,97,106,106,99,114,102,109,109,111,96,107,95,112,105,102,108,108,110,121,102,109,109,108,99,100,109,91,107,98,104,110,101,99,102,108,114,106,113,101,98,97,95,107,94,104,108,72,95,84,105,100,99,91,90,100,110,96,111,104,107,109,103,102,104,91,101,91,110,116,96,98,105,109,109,108,89,116,116,105,108,102,99,97,100,113,100,118,97,114,103,87,107,99,86,102,91,106,100,105,123,97,101,106,100,118,101,103,107,112,107,103,103,110,100,102,98,94,105,113,97,95,101,110,120,101,102,103,92,106,100,99,104,101,110,118,94,105,112,101,111,113,101,102,100,104,100,76,103,100,107,94,91,102,100,107,108,106,100,115,97,101,104,105,109,107,95,104,108,104,113,101,107,96,94,102,113,96,102,93,97,110,104,110,108,100,99,100,95,90,111,89,113,99,102,115,107,102,97,108,104,106,101,102,102,108,84,92,102,100,105,96,111,93,94,101,103,106,107,106,109,99,95,91,94,97,103,113,102,105,108,121,87,95,106,101,97,105,104,95,89,114,98,111,101,96,103,102,114,81,92,94,94,78,97,100,104,105,112,101,112,97,114,104,99,113,107,90,103,92,104,76,99,100,116,103,109,100,107,104,111,107,102,102,84,99,107,96,108,103,99,109,110,95,102,112,100,100,91,100,97,107,99,103,100,102,96,102,113,99,100,98,107,108,106,101,110,106,102,113,105,100,82,101,100,102,104,111,117,98,108,96,102,106,106,100,102,98,97,95,111,97,99,89,103,105,110,95,100,100,112,101,102,113,98,62,104,105,112,98,95,99,103,96,75,100,105,93,106,94,90,100,103,93,104,105,98,118,104,96,103,112,103,95,105,110,108,98,115,111,105,110,107, +672.15271,105,99,90,100,100,106,91,85,91,97,108,107,96,105,107,101,79,108,99,91,102,100,94,93,97,106,108,99,112,117,105,91,117,86,104,104,105,98,108,103,102,102,84,98,114,108,102,101,97,99,97,92,104,91,115,99,101,98,108,102,94,103,99,91,110,105,96,117,101,122,109,118,105,105,101,119,87,101,114,85,103,93,95,109,104,105,95,101,99,95,95,104,100,95,93,101,106,80,111,92,118,103,100,104,104,95,101,97,89,98,105,100,98,102,98,103,105,101,115,105,105,101,116,85,96,100,84,83,104,107,99,91,106,113,110,97,103,98,103,91,95,110,102,104,91,101,90,107,98,108,96,95,94,95,101,107,100,93,99,106,108,100,113,100,98,97,109,99,101,109,98,96,96,101,105,101,99,94,106,93,94,119,107,103,105,103,100,94,106,101,92,113,108,101,99,94,104,103,100,128,106,99,94,101,108,114,103,88,106,102,95,109,99,101,110,99,104,82,99,93,98,100,113,104,95,92,100,95,107,106,110,102,106,104,95,109,98,105,93,105,95,103,103,111,93,94,97,104,109,110,99,95,95,95,96,109,116,108,105,110,112,102,92,101,86,95,107,94,95,98,99,103,100,108,106,105,107,102,105,100,117,102,107,88,85,101,100,99,112,90,112,93,103,92,113,107,99,100,114,101,94,112,109,99,90,133,98,105,112,105,96,112,110,107,98,96,122,103,98,94,96,90,115,99,100,103,94,105,104,107,99,94,110,110,92,100,105,100,107,108,98,90,99,99,117,109,98,98,101,108,114,106,105,102,120,100,98,131,115,96,103,98,98,100,100,109,87,104,107,102,105,90,99,90,108,94,104,98,101,117,96,108,94,99,96,95,112,106,98,110,110,103,109,96,105,107,89,105,101,105,108,107,105,95,105,94,93,89,121,101,92,107,106,108,107,75,101,89,106,93,100,97,91,96,99,97,94,97,107,106,97,87,103,97,111,107,97,105,100,101,106,103,93,107,114,104,95,107,84,83,106,98,98,111,108,102,102,108,105,86,92,106,101,110,98,91,110,100,101,97,109,105,101,91,95,115,95,110,103,105,114,106,102,92,104,100,87,101,94,113,101,98,111,104,85,101,101,95,102,96,108,110,90,105,99,102,89,97,107,106,103,118,103,95,95,98,98,110,102,97,100,92,91,102,96,103,102,102,99,85,100,109,104,97,104,101,100,94,110,105,96,111,95,101,101,103,98,101,100,106,102,94,105,101,98,112,95,97,105,106,116,96,99,107,95,106,93,96,105,109,94,90,108,102,105,103,96,95,100,87,92,100,109,93,94,95,102,104,111,100,69,92,97,118,108,98,93,104,102,100,91,104,113,100,96,103,93,94,82,95,96,108,110,98,101,111,103,95,106,107,96,101,83,105,108,102,89,96,104,102,101,104,101,103,106,103,106,90,94,97,100,108,102,91,100,88,97,101,102,100,91,86,123,121,90,111,101,101,102,102,106,109,110,95,88,97,107,95,102,101,111,108,106,108,101,100,92,87,102,95,95,108,100,98,90,100,93,110,91,99,114,102,103,110,102,103,97,99,106,93,90,104,97,99,101,105,107,86,103,87,96,95,99,101,101,107,101,107,105,102,106,93,103,119,108,88,104,99,110,105,107,89,109,96,91,102,108,86,109,105,117,91,103,92,101,99,115,101,104,107,104,113,107,112,105,92,112,95,114,112,96,95,93,115,91,95,105,104,99,104,109,95,111,99,107,101,96,88,99,92,103,104,106,103,105,106,104,104,105,100,101,101,99,107,94,97,105,106,110,107,92,94,100,100,106,110,95,109,101,97,108,105,106,114,110,95,98,98,107,100,84,104,110,99,110,110,99,105,99,106,102,95,110,94,99,126,107,73,98,99,83,102,96,104,112,91,92,96,101,106,99,110,104,112,102,99,104,95,99,102,80,100,106,101,100,104,92,104,103,98,103,95,98,111,93,98,110,106,92,97,99,114,91,101,103,101,105,101,98,95,102,110,108,101,88,94,102,92,103,105,103,101,100,93,98,98,88,99,100,95,98,112,108,90,100,99,100,99,108,109,96,111,104,98,108,97,95,91,95,97,95,98,114,99,103,102,99,97,100,101,113,107,115,98,105,99,106,102,89,110,103,109,100,89,102,97,95,106,102,102,105,105,99,98,98,98,102,110,96,89,92,99,102,100,102,101,112,101,99,91,100,96,94,96,114,100,104,106,107,87,102,106,112,101,102,101,99,105,94,108,95,98,112,97,107,115,106,98,110,100,99,102,100,106,105,102,101,97,97,91,100,95,107,96,98,100,93,101,97,100,110,95,104,104,107,92,96,110,107,100,108,100,103,99,104,65,105,113,109,105,105,92,104,100,93,119,100,109,97,115,100,103,98,106,127,96,96,101,107,100,96,113,98,101,117,109,115,104,89,63,100,115,99,96,99,94,113,93,107,100,105,101,101,91,90,101,104,102,113,102,108,89,99,69,97,109,108,108,106,94,97,109,100,109,103,105,96,102,93,104,112,85,104,105,107,113,103,111,105,73,99,100,104,98,106,104,105,99,114,94,94,109,101,106,113,109,95,105,97,92,103,102,114,97,106,92,104,113,113,107,103,100,87,88,101,103,105,105,108,105,118,96,120,104,98,104,115,95,117,92,114,113,95,98,97,107,104,113,104,95,101,103,107,100,106,113,101,95,106,100,95,101,111,97,106,109,99,104,109,103,102,104,100,90,103,111,101,109,93,102,102,107,109,101,108,91,108,102,95,92,105,117,94,103,84,100,102,102,102,107,115,97,107,96,125,106,99,128,105,102,106,94,96,117,104,124,101,96,98,105,101,96,97,105,106,112,105,113,105,108,98,107,94,104,101,101,106,108,93,102,95,95,106,120,100,115,109,75,117,91,98,97,96,99,92,91,113,100,102,94,99,102,95,88,112,92,106,100,87,98,88,96,101,88,112,105,96,111,106,99,119,102,108,108,104,116,103,114,105,102,134,99,100,108,105,106,103,106,107,111,106,95,102,110,101,96,100,95,108,110,107,98,96,106,102,101,99,106,115,105,113,123,102,108,84,101,100,92,98,65,94,121,105,114,101,101,98,107,102,104,106,102,117,115,114,101,105,103,98,105,104,111,109,103,106,103,101,116,105,101,117,77,93,104,105,113,103,108,110,109,94,97,113,108,102,97,93,98,89,109,98,112,104,104,98,78,109,99,113,107,111,105,111,109,113,100,104,116,106,100,98,101,112,105,101,99,106,108,113,91,96,82,99,121,100,105,109,88,106,99,105,101,109,110,97,100,103,100,106,103,102,112,84,95,109,112,97,99,99,99,113,104,116,110,98,97,117,104,104,108,96,96,101,100,87,109,111,107,98,109,92,114,102,112,107,100,105,103,113,106,87,99,104,108,103,95,113,101,90,100,103,103,107,98,101,113,104,113,112,98,103,104,106,93,97,109,109,98,97,92,107,102,100,125,99,95,117,111,105,105,109,108,102,108,102,96,110,102,96,106,105,106,96,106,110,109,92,104,100,119,107,99,98,110,102,99,109,95,106,91,100,112,97,84,120,100,109,109,99,102,95,101,104,103,109,79,102,105,113,97,100,92,106,105,106,96,92,77,103,103,107,90,111,109,95,103,90,128,112,101,99,111,100,111,95,96,104,109,100,108,103,99,100,106,94,104,109,110,100,98,104,94,102,100,105,104,110,119,93,112,109,102,92,96,117,91,95,109,107,95,105,103,110,98,99,110,83,106,98,109,92,96,109,103,99,87,106,104,112,95,104,106,103,104,107,102,100,102,96,103,104,104,106,103,106,103,109,104,99,109,101,100,94,110,107,106,111,108,116,97,105,99,99,105,104,90,102,100,101,89,102,96,109,94,106,109,112,103,109,112,116,94,103,107,113,101,111,104,102,91,103,100,85,104,88,108,101,105,99,109,100,106,102,101,100,102,106,100,96,99,111,108,97,109,104,94,92,111,99,102,79,98,90,102,105,106,95,114,114,110,92,100,118,92,104,92,111,109,102,97,93,102,105,98,102,94,96,110,104,95,105,109,115,110,109,114,113,111,96,127,102,98,105,99,87,102,104,100,100,113,112,98,102,105,100,110,98,103,113,91,95,96,95,97,101,104,105,102,96,103,108,95,112,102,93,88,100,118,109,97,108,105,105,104,105,100,100,99,107,98,113,91,105,102,101,93,102,107,97,110,112,88,115,89,108,105,113,88,109,113,104,88,119,104,97,108,105,94,105,95,109,108,100,94,111,91,101,116,109,112,103,103,99,108,104,112,71,113,106,114,103,117,91,121,96,99,106,113,100,117,120,117,107,96,104,99,106,94,101,95,110,108,105,90,108,96,95,116,116,103,103,96,91,102,92,110,97,116,98,107,99,96,104,109,87,97,91,103,100,104,113,115,101,105,84,103,108,98,91,101,103,94,95,103,107,108,93,101,140,98,95,97,101,97,113,109,100,98,107,109,100,96,104,115,96,108,101,102,94,117,84,105,91,101,111,103,106,103,100,99,113,110,109,103,102,100,87,113,110,89,95,102,96,101,109,109,112,103,110,121,106,102,108,101,99,126,103,103,113,99,105,105,107,100,107,108,100,105,108,105,114,105,97,101,108,105,116,103,104,100,96,96,99,92,95,100,116,104,105,103,109,106,112,113,72,97,108,112,112,101,112,103,102,103,112,100,105,93,93,105,102,106,103,103,101,95,100,105,108,107,94,103,108,96,92,98,68,110,108,100,108,98,116,102,104,109,105,121,91,101,110,107,105,103,106,97,109,113,103,96,84,99,109,96,100,103,100,96,103,114,112,96,111,98,99,96,109,103,92,104,115,111,104,105,107,101,94,108,86,98, +672.29401,126,98,113,105,88,97,105,95,106,117,96,99,102,99,110,91,105,105,95,102,68,95,92,103,101,121,107,102,106,93,103,96,113,100,107,99,111,112,95,108,101,100,96,111,99,113,100,100,96,99,102,106,113,98,74,101,96,91,101,110,94,95,97,103,112,121,98,104,105,92,105,118,92,104,88,88,97,95,107,104,89,114,101,99,100,115,85,98,111,91,98,120,98,96,102,101,95,94,98,99,91,107,103,110,91,100,98,100,92,99,100,97,105,97,96,99,99,100,115,102,95,101,100,95,113,108,102,95,115,106,113,98,100,103,104,97,95,97,109,102,105,106,98,104,95,98,106,99,96,95,93,103,100,94,102,106,98,82,102,99,99,101,104,121,96,106,92,75,108,94,105,111,87,83,100,102,103,96,100,102,104,108,107,104,102,83,96,100,96,104,114,88,101,100,104,108,102,102,90,110,99,104,92,92,104,96,95,99,105,109,112,98,95,104,98,103,117,81,94,91,105,103,100,100,100,104,99,95,96,123,106,98,96,113,107,102,109,108,100,98,106,107,109,107,108,106,103,103,104,103,95,128,109,104,103,113,101,109,99,100,95,99,116,100,108,100,108,101,109,101,99,118,105,90,106,96,103,115,91,98,107,89,96,75,96,109,98,90,105,104,93,108,88,101,113,110,109,86,106,107,96,108,99,98,120,107,109,119,106,103,101,109,107,93,99,95,103,113,118,84,93,105,113,98,112,102,108,109,104,109,113,92,111,92,111,98,110,98,104,95,95,92,111,104,94,104,94,109,100,87,96,107,107,106,102,97,101,106,109,102,106,100,106,98,103,98,103,96,91,103,99,97,105,102,105,101,107,105,107,112,102,108,94,106,110,100,102,100,98,104,114,96,108,99,106,102,136,103,106,105,107,110,101,109,99,87,102,105,102,91,98,104,100,98,104,82,96,96,100,95,101,96,95,103,103,96,97,97,95,118,98,116,91,101,104,98,104,109,102,102,92,109,99,119,95,104,105,94,107,106,107,98,91,106,107,93,105,105,102,70,96,104,110,100,97,107,102,102,103,102,105,106,110,105,97,94,95,110,104,105,106,96,109,91,96,101,105,99,98,101,106,109,110,82,99,104,92,99,105,108,104,102,96,107,102,114,100,104,113,105,112,96,105,116,87,92,110,88,93,103,117,112,109,108,99,114,98,103,100,100,104,106,103,102,105,105,102,100,106,102,97,101,90,96,100,101,107,107,106,105,117,106,103,104,100,102,112,94,100,106,108,105,105,83,131,91,103,110,95,97,97,104,107,104,109,117,134,97,107,102,98,110,110,83,99,95,119,98,105,103,108,105,92,106,108,105,97,103,112,96,102,107,106,107,107,73,108,113,110,95,91,106,94,98,106,113,106,92,104,96,105,105,117,100,101,104,92,87,102,103,97,70,100,95,95,89,106,100,97,90,107,105,102,99,94,107,110,96,98,124,104,92,101,118,104,100,101,119,103,140,109,98,97,105,102,97,121,93,99,99,100,99,103,98,105,102,95,106,107,95,100,117,111,100,105,98,90,101,92,104,109,117,111,110,108,99,98,99,115,87,104,94,97,104,109,98,93,113,105,112,105,116,84,93,97,96,101,95,107,102,107,102,92,109,90,96,104,111,109,109,111,110,101,105,97,106,107,86,105,84,109,75,101,106,105,114,113,95,111,93,113,98,100,102,115,103,106,108,105,98,102,106,95,103,102,102,101,104,103,99,103,97,103,104,97,118,90,108,111,90,108,102,102,100,109,108,98,88,92,97,105,103,108,109,112,103,112,103,104,103,98,93,100,102,103,99,105,106,111,93,113,103,88,101,106,93,93,105,105,105,95,105,99,113,102,112,101,117,110,103,109,94,104,101,105,110,100,100,102,96,83,101,112,100,97,107,86,101,96,103,113,99,100,106,114,102,91,113,113,108,94,108,103,95,110,99,97,118,105,107,96,99,105,104,109,105,106,105,104,90,103,106,111,101,111,107,91,100,110,111,101,113,97,99,97,105,103,107,107,101,109,114,95,103,107,102,95,107,101,106,106,108,105,100,100,101,86,97,96,100,107,106,99,89,98,83,108,91,102,103,101,109,103,98,109,106,102,109,94,108,95,119,115,93,99,101,105,120,99,104,106,95,112,109,105,91,97,103,106,110,104,109,102,110,104,114,108,73,107,102,94,102,105,98,95,107,105,97,103,106,95,108,105,102,97,93,98,105,96,102,103,106,112,102,103,110,88,98,96,103,100,88,93,96,109,108,110,90,106,98,94,94,95,100,101,110,104,100,109,91,91,105,107,92,95,84,101,106,114,91,83,109,98,101,108,101,97,103,97,101,101,107,91,109,117,95,106,112,118,111,104,107,113,95,100,106,97,97,108,94,100,108,109,103,104,97,95,108,101,106,89,112,102,96,101,100,97,102,112,83,102,109,96,115,99,119,90,101,107,103,104,120,97,92,100,101,108,96,101,100,92,94,102,97,99,97,102,87,93,109,88,101,106,102,108,95,89,98,92,101,107,96,98,105,100,103,95,107,114,104,107,117,120,104,107,97,109,93,95,101,113,100,93,96,103,114,97,109,109,100,111,106,112,107,98,95,99,88,99,102,102,96,94,78,95,108,98,104,94,89,103,98,100,113,103,109,103,95,97,95,102,108,129,95,85,108,101,94,105,110,94,99,97,104,96,108,103,91,109,106,104,104,108,101,100,98,99,98,103,105,100,101,110,101,99,101,107,102,107,106,114,111,90,104,99,103,101,101,101,87,98,87,123,107,108,93,100,109,116,105,100,112,99,95,107,103,98,99,98,90,103,105,95,104,108,94,105,90,100,102,99,100,104,102,100,95,109,108,108,99,102,100,105,100,95,111,105,97,101,93,108,105,106,98,108,106,101,106,109,108,99,103,100,95,93,104,106,98,94,104,110,94,104,104,110,95,102,106,98,101,95,107,96,97,101,109,107,104,114,108,115,108,106,104,106,103,114,92,113,96,98,105,106,73,102,100,106,107,103,107,97,103,96,99,90,96,101,102,104,102,105,106,113,113,92,95,117,108,113,96,103,105,103,113,109,96,99,102,94,96,97,100,102,103,106,103,101,103,98,94,98,103,95,108,100,98,96,105,93,109,99,101,105,110,108,108,112,96,109,94,104,98,89,102,92,106,102,103,95,90,98,102,91,67,104,96,101,107,92,106,122,97,102,94,98,101,100,99,113,101,104,101,103,109,109,108,97,103,91,100,107,96,107,96,112,90,99,100,106,95,107,96,102,99,97,102,108,107,102,101,100,107,107,103,97,96,103,95,104,86,98,100,99,95,100,98,112,106,109,96,94,116,104,103,97,98,98,95,93,114,103,101,96,92,93,107,97,94,103,91,91,101,108,114,96,102,103,97,100,102,107,88,102,89,114,109,104,106,95,98,101,94,96,100,84,106,99,99,91,97,91,99,98,94,77,85,103,94,113,101,86,102,104,103,114,98,105,105,96,95,98,94,82,113,102,102,99,102,100,98,96,112,110,94,117,106,101,93,88,112,90,104,99,97,95,95,100,105,104,98,96,99,100,105,95,99,100,107,113,101,85,94,109,103,87,108,113,98,95,107,113,93,104,108,110,86,94,102,110,100,103,104,106,115,105,105,93,102,102,105,97,109,100,90,88,105,108,98,106,103,100,97,112,111,105,105,119,100,104,104,99,100,103,96,107,101,106,101,102,92,103,106,103,106,90,111,95,101,108,103,98,106,94,105,101,110,102,101,114,97,93,106,101,99,98,97,115,107,98,113,95,103,102,94,113,115,108,108,93,106,88,104,117,97,95,100,110,105,106,99,96,104,112,94,100,104,111,100,102,111,99,106,119,100,98,104,96,93,94,87,91,111,113,108,109,100,105,98,95,105,105,100,100,105,99,101,96,110,105,101,102,102,99,96,102,102,90,108,110,100,104,113,102,90,112,102,97,103,103,101,102,108,87,109,98,97,103,90,89,121,102,99,94,106,105,108,97,93,97,107,91,100,94,95,111,106,132,106,104,90,106,99,105,113,96,101,101,90,110,104,103,114,95,111,101,105,105,109,99,99,112,106,99,95,108,107,100,97,106,107,95,83,99,103,106,100,132,112,105,101,107,98,87,100,99,98,108,102,113,101,112,109,95,92,107,106,101,98,117,96,115,102,108,105,100,110,118,127,108,100,111,98,102,88,101,98,102,113,89,100,98,83,99,105,97,96,99,96,108,93,94,68,117,91,106,104,98,89,73,108,96,104,101,102,104,105,95,105,101,107,107,103,100,106,104,103,97,100,100,105,99,94,87,87,100,100,109,112,97,103,91,99,107,98,102,87,108,111,104,98,100,112,103,100,102,91,140,94,99,100,94,94,106,106,102,103,107,95,94,94,99,91,117,101,120,83,98,96,96,101,96,101,112,77,99,99,98,118,106,95,91,109,115,78,97,95,86,101,112,89,100,91,99,105,98,96,98,104,104,104,92,89,103,101,108,102,104,103,93,92,81,101,108,100,101,91,107,100,115,99,115,100,98,96,105,95,100,94,102,98,108,99,116,99,116,94,107,102,107,99,105,104,112,105,105,112,108,106,118,97,102,98,104,111,106,105,113,102,105,106,98,104,101,104,94,103,101,77,119,98,89,98,103,106,102,99,113,103,104,92,107,109,102,120,99,81,92,102,89,96,95,99,108,92,91,99,105,93,97,128,96,95,101,111,101,100,95,84,113,101,109,103,102,105,97,107,99,105,97,111,96,97,108,95,97,102,102,118,84,103,109,106,103,95,107,94,98,92,104,89,101,100,102,97,95,106,93,91,106,96,103,87,113,105,96,97,102,115,131,120,100,84,106,95,109,101,135,100,117,91, +672.43524,100,101,99,85,97,108,87,90,103,94,95,92,106,96,77,117,84,111,100,100,105,93,109,98,99,110,96,98,89,90,94,92,100,92,97,104,91,105,101,102,97,102,92,95,113,99,84,101,99,102,104,92,103,101,94,92,108,107,110,91,75,95,112,83,95,110,102,96,101,101,104,106,95,91,102,99,100,93,103,107,96,97,103,97,94,109,91,94,108,82,96,101,100,95,101,95,79,91,106,92,108,100,100,99,102,104,101,112,100,95,101,98,108,97,70,106,107,92,92,99,101,97,92,105,98,100,101,87,112,104,114,105,89,114,111,90,90,107,104,99,92,104,107,96,93,96,114,100,112,117,86,110,105,88,91,96,116,98,106,124,111,103,103,98,102,94,58,98,98,100,98,116,100,95,92,127,110,92,104,100,102,100,95,114,109,98,92,87,105,101,98,110,100,97,94,104,108,104,92,95,95,101,94,95,105,107,101,100,105,103,102,103,104,103,101,87,91,108,106,113,102,102,118,94,83,104,109,89,105,100,97,94,91,110,98,107,98,104,99,104,113,109,113,114,101,97,95,91,98,111,92,94,96,103,96,104,98,108,84,110,101,105,99,104,89,107,96,97,99,95,87,103,102,98,107,95,94,109,97,76,102,101,97,98,106,97,98,101,103,99,99,99,110,103,106,104,104,92,96,107,99,94,96,98,131,107,96,109,101,105,94,94,109,103,102,103,96,101,104,99,106,103,115,107,96,98,100,98,103,103,112,102,107,101,94,104,109,100,100,94,100,105,97,98,102,106,113,101,95,103,97,93,105,97,91,109,96,106,106,112,91,97,95,102,79,99,94,107,105,112,108,104,96,104,101,100,106,110,95,96,113,94,96,100,105,105,103,95,111,99,111,102,109,99,97,97,110,109,107,97,103,109,106,101,105,89,102,115,91,110,99,96,107,122,104,98,99,99,108,94,106,90,106,114,93,97,106,98,94,101,87,108,103,106,93,110,88,100,110,106,103,108,95,110,90,94,94,97,114,107,96,65,110,111,98,94,97,105,101,100,98,102,108,100,96,107,102,107,95,105,107,108,104,105,96,114,95,112,99,104,103,109,106,92,114,88,101,103,85,98,101,108,118,92,92,97,106,100,107,95,109,99,104,77,97,97,90,96,101,99,104,95,103,109,99,113,103,123,98,92,80,91,96,109,97,95,101,95,104,102,116,98,97,87,102,101,109,97,102,97,103,88,94,105,103,108,100,105,104,105,101,104,107,88,117,105,108,109,102,112,105,100,95,108,109,109,107,88,103,113,103,112,100,107,99,105,100,101,108,103,106,97,98,102,97,100,104,105,105,100,99,98,98,103,103,107,99,113,112,93,95,117,93,97,100,102,100,90,101,104,96,98,105,114,112,91,105,103,91,102,101,107,105,87,108,91,94,107,105,98,89,113,116,112,90,119,96,105,101,101,97,101,105,91,105,104,108,102,96,108,109,100,100,106,110,96,115,104,95,98,105,91,104,107,95,100,95,106,100,109,106,102,120,101,105,116,103,93,105,107,97,105,105,105,106,112,98,94,104,101,117,87,99,110,112,105,95,110,110,98,95,97,100,105,114,108,103,109,100,95,93,97,92,104,103,107,108,106,101,96,115,95,110,108,103,103,101,101,105,110,84,104,111,100,101,101,108,105,122,98,105,110,112,87,102,95,106,107,99,95,111,97,86,106,104,109,95,92,113,96,105,103,101,96,95,107,108,100,101,100,95,95,120,110,98,90,103,106,101,107,72,115,95,107,104,108,95,110,92,100,109,98,109,112,106,101,104,91,102,104,102,104,109,104,115,115,105,94,102,83,106,92,105,103,95,101,105,95,96,99,109,93,103,103,103,109,102,100,105,106,108,98,113,103,87,96,94,108,101,113,103,107,99,97,87,91,98,102,86,95,103,102,102,110,96,96,96,90,106,109,96,98,99,93,100,96,95,102,98,110,99,107,101,115,104,98,100,101,101,103,102,115,88,100,106,93,121,130,106,102,105,98,99,108,98,88,98,95,100,104,105,103,107,107,107,121,95,105,103,100,104,103,100,102,106,114,88,105,106,125,99,96,102,101,100,115,103,99,99,101,107,93,102,107,98,100,96,102,98,80,106,109,111,99,103,107,101,99,99,107,104,97,98,95,104,111,95,98,100,93,86,105,109,93,113,90,92,91,68,108,99,115,107,100,99,90,82,97,100,104,104,108,98,91,105,91,98,105,92,94,100,108,89,101,105,101,94,96,96,101,95,75,96,111,113,114,94,95,95,101,82,110,96,104,102,106,100,95,97,96,112,108,99,92,101,98,102,95,97,69,106,95,116,104,106,97,102,117,101,101,103,95,107,109,93,96,106,100,98,105,108,107,111,103,98,100,95,103,107,112,100,105,101,106,109,87,93,98,101,100,88,109,86,97,101,98,93,95,93,96,90,102,80,104,96,96,107,100,113,109,108,101,101,99,99,95,84,108,107,89,105,97,100,108,100,111,105,104,98,101,102,106,98,91,101,99,110,93,105,110,125,106,111,95,98,96,104,99,93,103,97,109,112,87,103,96,97,94,101,99,97,93,101,112,97,100,105,87,107,98,114,94,109,105,105,109,109,99,103,100,99,98,109,102,99,102,102,100,101,93,102,97,103,115,94,98,97,118,109,113,110,93,82,114,103,117,116,103,99,112,107,95,95,99,99,97,106,112,98,93,116,97,108,107,113,98,107,99,104,79,102,88,102,105,123,108,107,104,106,112,105,100,103,106,97,102,101,106,90,105,92,103,100,109,117,90,117,102,101,96,110,98,105,90,93,96,101,114,102,100,92,111,106,105,105,106,108,99,88,108,105,98,100,108,99,113,99,96,101,99,102,113,104,107,100,100,103,106,98,104,96,100,105,107,110,97,98,101,99,110,121,124,87,109,112,84,100,100,111,113,105,121,98,105,104,95,98,109,100,103,91,100,101,93,96,108,89,110,100,110,110,104,104,113,105,107,97,112,96,97,77,85,96,112,101,93,97,109,99,113,107,103,102,88,100,101,103,81,102,99,102,100,98,95,104,112,94,99,102,96,124,103,105,103,107,112,103,109,98,93,98,69,101,106,108,107,110,103,98,102,95,95,114,95,111,98,100,95,98,91,89,94,97,101,88,93,115,90,96,96,94,102,109,94,112,115,96,86,91,98,90,106,110,97,101,91,102,113,106,113,105,101,105,108,106,98,104,94,110,103,103,98,94,119,105,96,98,109,91,109,100,106,105,98,105,95,105,107,102,96,96,112,91,95,90,94,99,97,104,83,115,89,116,107,98,97,93,102,106,102,109,106,109,99,99,97,105,104,107,107,103,112,109,99,92,109,73,109,106,97,103,94,87,94,103,113,101,105,100,95,103,102,103,113,103,105,112,102,103,106,106,101,108,104,96,115,104,98,102,96,101,121,109,100,102,92,99,102,110,106,108,102,100,100,113,102,105,104,107,102,110,96,107,105,110,106,104,112,109,104,98,95,96,99,110,94,112,102,105,87,94,98,100,108,104,107,95,101,109,106,116,105,104,96,96,91,93,93,99,100,98,102,107,97,101,108,110,91,99,103,96,105,102,108,99,95,92,105,103,96,96,101,110,102,102,98,94,92,98,113,106,104,101,103,107,88,93,100,115,98,109,113,106,100,97,101,97,104,102,104,87,89,103,107,111,98,103,115,93,102,107,83,109,95,88,100,95,105,96,108,97,99,98,91,104,82,93,101,111,93,111,101,93,101,102,100,98,98,104,103,83,105,96,98,100,95,106,103,102,99,116,106,93,117,95,98,112,98,111,119,83,106,99,100,102,91,105,109,104,100,108,113,102,100,115,99,106,92,91,103,108,105,92,102,106,99,99,108,80,100,103,100,104,96,113,93,111,94,103,106,111,100,101,103,102,116,94,98,104,102,103,106,91,98,77,106,102,98,100,87,106,101,103,133,113,99,109,114,102,96,110,111,104,106,101,109,107,100,93,95,105,96,100,110,97,135,111,108,104,97,105,94,101,101,117,104,95,99,113,104,107,101,103,94,104,107,119,72,104,102,110,110,95,107,101,104,102,101,93,109,102,103,99,104,93,97,102,103,99,95,106,89,98,105,88,101,108,99,110,102,105,93,101,102,97,96,108,99,82,106,105,105,103,102,97,98,91,104,104,98,97,113,101,106,100,101,92,121,101,102,108,105,103,103,105,104,107,108,95,83,104,99,107,97,94,94,99,100,103,99,102,105,109,88,108,93,88,84,95,109,94,99,100,105,95,108,97,104,106,106,107,114,101,96,105,100,109,95,105,109,99,97,105,96,104,98,112,96,104,111,117,103,89,105,106,90,101,95,95,96,90,113,102,105,97,104,103,112,93,100,96,108,91,102,101,111,104,100,99,97,120,102,96,102,102,94,101,95,125,98,108,111,104,102,106,91,96,105,102,102,94,100,86,102,97,132,98,95,98,99,101,103,92,111,102,105,109,98,99,90,97,89,102,108,112,101,111,113,107,102,111,94,91,104,101,104,108,99,90,103,105,113,107,117,87,97,109,99,99,83,99,100,96,106,89,100,119,98,101,111,95,101,101,90,92,107,100,106,108,81,99,109,107,98,109,92,105,104,102,111,97,97,108,95,93,102,97,80,104,105,110,97,95,102,103,93,102,99,98,101,97,95,112,108,103,98,96,104,104,102,108,105,93,97,103,87,104,104,106,103,108,79,95,103,94,105,99,106,100,110,92,90,112,106,90,92,109,101,95,80,108,104,76,69,113,87,94,105,104,100,105,103,102,96,94,107,100,102,96,98,116,114,116,113,95,91,97,105,98,103,125,112,92,92,94,120,112,104,104,96,106,111,107,100,95,115,103,84,100,103, +672.57648,82,72,98,113,90,98,105,84,106,108,99,100,115,105,92,100,105,105,103,100,106,105,101,98,103,101,99,94,117,91,92,99,104,99,106,96,123,99,109,103,113,105,99,102,91,95,108,106,96,100,115,110,103,103,96,99,97,86,89,93,97,104,98,109,105,109,94,114,97,99,102,101,91,100,97,106,86,97,108,102,85,87,112,105,104,93,95,101,95,100,95,99,101,97,86,96,94,93,94,93,90,109,100,98,112,107,96,100,99,95,109,98,107,97,100,106,104,106,102,101,114,115,98,93,105,105,98,94,113,103,91,95,129,102,126,106,114,107,99,104,93,112,97,114,89,92,112,91,93,105,104,99,96,93,109,102,100,90,104,97,107,108,100,86,110,79,94,102,103,105,113,92,93,92,102,94,95,103,99,99,110,110,103,100,109,91,111,106,116,98,109,103,88,103,89,99,95,78,90,99,104,101,101,95,94,98,103,105,107,113,98,118,93,110,104,107,103,103,105,104,109,88,104,100,85,111,107,106,104,98,108,94,113,104,95,110,93,109,119,93,105,104,102,111,92,92,92,100,103,105,106,119,106,104,110,112,115,103,104,104,97,102,105,101,94,106,105,117,98,98,129,101,111,136,95,91,88,99,75,111,95,103,70,107,99,105,102,103,96,111,107,96,96,103,120,108,101,100,105,104,110,103,108,110,96,121,109,112,105,97,117,90,96,96,98,91,98,95,101,101,84,98,109,104,104,96,98,102,108,99,103,93,108,112,91,107,95,106,94,100,102,100,95,95,93,110,108,106,107,107,109,109,106,96,105,100,91,101,115,104,113,99,100,102,112,105,105,113,77,116,102,101,99,109,110,98,112,102,89,114,100,107,101,107,106,87,94,95,104,105,108,92,90,99,104,97,106,95,102,108,104,104,99,104,101,95,107,96,84,107,114,98,126,113,110,101,79,106,101,114,102,93,110,105,110,97,104,86,95,100,100,112,95,101,110,97,108,101,94,106,107,110,101,112,105,94,104,87,113,109,109,100,97,102,104,110,97,101,107,106,94,101,99,104,112,113,95,105,110,96,98,104,102,96,100,104,110,103,83,108,99,103,100,95,98,94,105,106,113,101,90,103,77,98,105,96,96,112,95,106,102,106,94,95,104,103,104,103,103,97,100,100,101,103,87,92,80,105,93,99,104,110,100,98,125,101,101,94,95,104,85,105,108,105,66,109,107,101,100,113,94,123,104,107,90,97,95,110,111,96,105,97,116,98,104,108,110,97,98,95,103,98,101,99,102,111,108,120,98,106,93,105,109,102,117,104,105,98,107,97,108,101,106,96,94,82,96,104,98,98,97,108,100,102,109,105,102,100,116,100,100,82,104,92,98,100,101,94,123,107,65,107,117,102,108,102,103,105,118,101,99,122,92,100,100,103,78,99,113,95,95,99,106,110,96,104,105,98,112,94,98,103,106,96,100,99,94,100,103,106,101,103,98,94,110,110,96,103,104,104,109,95,97,98,88,111,109,115,111,114,106,94,94,104,102,103,101,100,110,112,101,99,104,85,96,98,98,97,113,98,111,121,93,98,82,95,110,101,101,88,105,108,103,91,106,96,100,108,98,109,101,107,109,94,97,99,102,98,95,107,102,86,106,104,103,91,94,113,98,104,103,100,98,96,104,102,103,100,100,105,99,103,102,91,91,99,103,110,114,99,113,95,106,99,105,103,94,106,93,93,109,105,112,92,94,93,97,90,121,100,115,99,113,95,106,102,103,100,105,97,98,108,103,99,102,109,96,104,97,106,105,98,96,114,109,107,102,123,107,98,106,105,87,81,103,103,103,105,75,103,99,95,101,107,96,100,96,110,110,105,104,111,97,108,107,99,102,92,79,99,92,92,99,109,101,100,112,113,114,109,95,95,92,102,97,99,111,97,105,91,100,98,96,97,104,104,99,101,105,99,101,102,90,102,94,99,96,101,106,103,114,97,102,100,94,108,98,110,103,100,97,105,91,108,111,99,99,102,113,104,107,108,102,100,97,106,100,115,101,104,68,117,100,106,106,96,94,90,91,106,101,105,102,113,95,108,104,110,89,105,109,95,87,107,101,112,105,87,106,98,103,100,107,94,99,96,100,96,96,110,100,103,103,111,101,83,104,98,109,110,111,100,103,101,102,97,103,118,87,91,88,101,94,99,99,103,90,99,104,82,99,101,106,98,96,114,97,77,98,100,103,92,110,100,92,102,96,108,109,90,101,107,91,116,92,97,102,103,100,101,101,98,108,100,113,109,100,117,97,107,98,112,109,103,98,108,128,104,105,95,109,112,117,95,102,90,108,95,99,116,98,100,112,97,106,99,98,108,111,100,94,93,103,102,96,108,98,92,95,110,95,111,96,93,99,101,108,98,107,101,96,104,105,99,107,117,96,103,85,104,109,103,102,97,103,97,103,103,99,98,100,97,100,110,103,110,98,98,100,110,99,99,102,96,100,101,103,101,109,110,106,102,109,105,95,105,110,105,105,108,105,114,98,91,98,101,111,106,99,113,108,102,110,105,102,106,101,109,116,103,89,112,104,102,104,99,101,116,104,99,101,95,98,113,101,89,92,111,103,98,99,100,113,79,108,109,94,104,88,106,95,97,104,84,113,106,96,88,120,87,104,93,109,107,108,98,93,103,109,108,96,102,98,97,100,105,106,99,101,99,101,93,112,105,107,98,117,104,106,95,102,98,99,113,103,109,110,136,111,104,92,103,105,96,113,113,136,87,112,103,99,101,117,107,104,113,98,100,97,99,94,101,101,107,112,95,106,103,99,113,111,98,102,102,104,104,106,105,110,101,103,90,95,100,103,103,105,113,96,105,98,106,101,108,121,87,97,100,113,109,110,69,113,100,100,95,97,102,95,115,109,106,95,85,98,94,91,91,105,103,107,98,98,95,112,97,96,102,112,110,104,117,102,104,101,100,120,110,98,109,103,98,96,106,109,102,104,113,113,103,103,93,93,103,110,90,106,104,106,109,109,105,111,100,104,102,100,98,102,109,96,93,103,132,113,101,101,95,90,97,107,115,102,115,98,105,96,112,100,108,105,104,108,112,113,99,111,101,96,102,100,101,117,110,107,102,93,101,107,102,105,95,119,107,89,105,93,98,92,100,99,100,100,102,104,105,117,100,118,100,102,109,100,82,99,95,112,137,119,99,96,101,111,104,109,99,102,92,101,103,106,97,109,104,103,112,108,98,94,119,99,104,100,112,108,108,90,101,100,106,108,91,98,106,102,100,100,94,84,101,111,84,106,103,107,128,113,97,111,104,103,98,107,99,104,98,95,108,107,101,104,105,102,92,94,108,98,117,94,100,92,106,113,106,95,102,98,102,100,105,105,117,115,95,101,100,103,113,103,97,100,109,109,112,96,106,107,108,107,107,111,103,99,95,89,105,103,106,104,94,110,96,115,99,98,107,106,97,105,96,105,105,106,106,112,110,97,105,109,94,107,100,106,110,99,100,109,108,95,102,99,105,105,105,96,102,109,99,101,110,112,97,112,108,103,99,85,102,86,102,102,87,102,100,91,101,101,87,105,97,102,104,91,114,97,95,97,95,98,109,89,105,103,95,92,89,111,112,113,104,99,104,104,115,100,90,104,100,105,104,107,103,104,106,103,99,104,97,105,98,96,108,96,106,87,114,106,106,106,108,92,96,101,97,116,96,103,103,108,97,100,100,116,90,112,113,107,106,97,101,99,113,98,93,105,88,99,99,102,104,113,101,98,106,98,100,94,106,99,107,97,87,91,110,99,98,101,104,114,109,116,101,104,100,106,108,66,82,95,104,102,100,92,95,87,106,87,105,96,101,107,100,113,108,98,98,108,99,108,102,113,100,96,96,96,103,93,96,100,102,108,115,107,107,104,114,100,104,90,98,106,136,114,110,106,103,97,99,101,88,99,104,100,110,101,100,102,106,101,113,87,102,107,76,101,104,106,103,109,103,104,100,112,100,103,88,96,106,98,88,102,101,96,113,96,99,125,100,96,97,108,110,101,91,106,110,91,109,105,98,108,106,105,108,110,94,108,100,106,93,96,107,96,101,103,99,95,108,103,110,96,103,104,96,96,112,103,97,113,105,102,112,101,118,111,105,97,103,115,103,115,98,91,96,111,111,102,96,102,99,104,108,102,106,114,95,103,104,113,96,100,119,102,106,108,85,97,104,93,100,105,99,88,102,106,104,109,103,110,104,101,103,97,106,94,105,99,96,98,98,112,91,109,100,97,93,102,91,96,102,107,102,110,98,105,96,108,104,109,110,100,113,116,103,101,93,105,100,109,105,105,97,97,102,101,101,111,118,115,109,94,104,119,112,115,98,108,88,99,105,90,105,116,111,98,90,94,110,98,99,103,99,102,106,97,105,94,92,105,111,108,105,94,94,88,96,102,99,121,106,97,109,99,105,99,92,80,93,104,100,119,132,107,105,102,113,102,104,119,117,94,109,93,99,100,105,104,109,111,98,105,103,100,113,111,102,105,107,95,100,109,84,99,105,101,99,116,86,97,92,116,104,102,106,98,83,93,94,105,94,105,100,109,91,108,109,105,108,104,104,105,103,110,112,97,103,107,111,105,103,108,104,96,101,104,102,99,87,103,99,91,84,106,109,102,118,109,78,97,98,91,94,106,104,93,114,117,101,95,97,109,101,109,113,110,84,101,103,103,100,86,99,95,102,118,100,92,91,106,109,110,85,111,106,102,110,86,104,106,85,103,108,99,100,97,90,105,106,94,101,114,117,113,63,107,103,97,85,108,103,110,109,100,108,99,105,90,104,95,108,92,104,93,105,105,116,83,102,117,105,95,107,101,88,127,99,98,103,102,106,98,106,102,105,84,95,113,100,110,110, +672.71777,108,101,111,92,104,102,87,102,91,98,93,101,109,106,73,109,106,112,118,99,112,100,88,98,104,115,106,78,104,103,109,106,81,95,99,99,124,103,99,105,96,103,98,91,104,104,101,109,95,106,106,114,103,95,98,94,86,112,109,96,97,91,95,95,109,107,98,103,91,111,110,98,100,91,115,104,101,92,103,96,91,92,100,104,102,99,93,103,106,99,98,108,106,101,93,107,95,105,102,106,111,103,101,95,98,94,108,99,106,101,99,118,106,108,106,102,76,109,107,92,101,116,111,103,106,98,108,95,114,98,89,92,91,102,79,114,94,108,90,91,79,113,104,91,92,99,95,82,97,100,95,99,104,91,113,94,101,71,106,102,89,96,107,90,113,95,94,86,110,98,101,95,110,101,105,87,99,90,110,110,102,118,105,98,109,95,98,95,96,97,93,97,101,100,103,114,98,95,105,112,108,111,99,111,100,103,95,98,100,112,94,100,98,99,108,91,96,98,97,93,95,106,97,94,99,102,95,104,116,107,108,106,97,106,111,108,105,106,95,106,92,104,107,101,101,104,96,95,109,97,107,114,93,108,99,109,91,98,83,94,104,100,97,102,92,99,102,95,128,95,96,96,107,94,121,96,94,108,108,118,101,97,85,102,89,107,86,108,99,89,101,107,102,104,106,101,94,105,111,103,83,107,111,110,92,96,106,101,96,109,91,110,113,120,102,96,91,91,106,113,121,103,108,115,83,102,101,98,104,104,98,93,77,101,81,107,92,101,95,102,99,101,104,103,109,90,96,101,120,101,95,104,113,103,104,100,98,109,113,101,100,108,99,94,100,113,111,97,95,105,103,91,98,102,104,101,99,114,103,109,104,114,94,99,103,83,99,96,95,93,103,102,111,100,100,108,102,103,109,108,92,105,105,101,99,104,91,95,112,95,100,90,104,111,91,97,109,100,110,94,82,103,106,101,104,100,90,86,105,109,89,99,101,103,105,113,105,99,98,102,105,103,108,102,93,98,106,88,107,105,110,96,97,121,98,94,100,103,99,95,98,117,114,101,111,105,105,92,100,97,116,113,97,101,95,106,88,110,97,113,97,104,94,106,94,101,99,108,103,83,100,102,105,118,98,96,94,101,112,95,100,96,105,96,97,103,98,106,91,93,125,115,100,103,100,120,103,100,95,90,106,99,103,108,92,101,108,104,102,94,106,115,104,105,97,88,96,100,102,92,92,106,102,99,104,99,110,112,102,93,116,102,100,105,93,93,107,105,134,102,95,95,108,98,93,105,104,103,111,108,108,102,87,108,101,97,106,105,94,97,109,95,102,94,93,95,121,100,100,97,104,102,110,96,101,105,92,97,99,108,91,93,109,100,99,114,102,94,95,86,90,95,95,110,111,96,108,96,96,109,100,116,105,96,105,101,103,97,108,109,112,100,113,95,90,96,110,96,104,97,109,95,116,95,101,90,105,106,86,99,93,86,91,106,102,106,117,106,99,106,103,104,98,103,96,105,105,107,98,100,110,82,103,108,101,98,105,92,100,100,108,100,105,95,106,99,98,85,90,100,84,96,104,106,97,100,96,95,105,102,108,93,94,105,106,89,107,101,93,104,103,104,94,97,97,108,93,98,77,98,100,119,102,113,93,96,105,100,109,102,106,91,95,118,100,96,102,99,98,110,92,77,107,93,107,105,101,108,111,105,109,103,102,99,98,96,103,99,100,106,87,100,84,101,92,109,98,103,103,93,108,105,91,91,98,94,104,98,104,111,99,100,101,104,101,101,107,113,102,101,108,118,104,97,97,99,93,112,105,77,86,102,116,102,99,96,99,95,111,100,103,106,104,93,120,100,104,99,97,105,92,111,96,99,85,95,106,95,104,99,101,94,100,108,105,101,98,102,113,100,100,112,99,113,92,123,91,103,95,89,108,102,94,121,93,87,102,109,99,100,102,98,104,108,105,86,100,109,107,105,100,112,97,101,109,102,127,97,100,99,95,100,98,110,97,85,99,114,107,94,96,106,103,95,99,93,110,105,109,109,104,107,115,108,95,100,103,104,104,95,102,100,115,121,109,110,89,108,97,116,101,102,87,111,102,100,96,108,100,105,104,100,102,103,105,101,103,106,90,99,110,104,112,92,77,96,96,95,101,95,98,104,95,96,101,121,101,98,102,96,102,100,112,87,107,97,101,97,103,109,104,104,100,91,99,106,99,100,109,103,106,95,102,92,104,112,102,112,94,109,110,94,99,97,109,100,106,98,105,108,92,100,91,95,93,105,106,101,92,108,90,106,98,106,102,94,105,107,111,94,110,109,104,86,95,102,110,97,111,112,102,99,105,106,98,92,115,104,108,97,105,89,96,99,109,111,98,103,103,109,102,113,100,97,101,106,107,104,104,90,91,96,103,95,129,101,96,97,91,97,102,104,97,92,103,97,100,97,91,91,106,98,100,91,104,94,97,98,109,93,98,99,97,103,103,104,104,91,116,95,92,99,110,91,102,97,97,99,91,99,90,111,105,103,101,85,94,100,96,121,113,92,97,108,98,110,103,111,96,115,103,97,100,103,100,101,95,105,103,104,92,89,101,102,97,113,107,100,108,102,107,83,117,104,104,105,100,107,108,97,89,75,108,86,92,103,103,103,104,101,98,96,100,94,95,113,103,107,78,100,102,103,89,106,97,113,112,100,100,104,108,103,95,100,95,69,110,92,101,103,110,107,103,124,100,109,109,115,106,95,102,112,105,101,105,99,92,117,102,106,104,102,99,72,107,101,101,98,108,100,97,108,98,98,110,97,116,109,104,135,108,109,104,105,95,101,97,107,106,106,98,102,110,101,113,99,98,96,92,106,103,95,98,113,108,98,92,117,97,93,91,105,107,117,95,113,101,103,102,94,98,101,104,109,94,100,103,120,111,96,102,110,96,109,111,92,99,113,101,108,105,97,98,81,91,100,99,100,105,89,95,110,101,111,94,88,103,100,110,106,99,110,106,113,96,108,114,106,91,95,95,91,122,114,104,104,107,108,115,106,81,101,106,101,107,99,116,95,103,104,107,86,116,104,91,95,106,112,105,98,107,109,103,97,127,107,109,104,108,96,95,109,100,103,98,109,110,105,101,125,96,91,135,100,117,93,124,97,89,112,87,110,110,104,101,102,91,90,114,97,102,95,101,94,99,102,109,103,115,106,105,102,95,104,108,91,86,89,100,105,100,96,101,104,88,106,98,102,100,107,111,98,106,113,108,105,105,112,93,104,99,91,111,107,108,96,97,101,94,106,98,91,111,110,97,99,114,107,106,102,97,91,93,100,94,104,88,94,102,91,104,109,104,100,92,111,96,94,78,101,89,99,101,99,109,108,97,108,102,107,103,109,102,102,104,98,109,96,106,99,108,101,107,113,105,96,106,92,100,103,95,93,117,94,109,102,103,114,94,101,103,110,97,110,91,106,103,95,114,102,94,110,105,95,96,72,100,106,112,96,102,109,98,93,118,109,106,104,97,114,101,89,98,112,104,102,110,97,100,99,114,95,109,107,107,90,97,93,78,110,115,111,106,101,90,103,108,96,111,94,110,106,94,107,107,95,103,96,92,108,101,113,101,94,81,99,104,92,96,83,100,104,107,99,95,81,98,97,97,113,98,98,104,104,104,102,99,94,120,112,105,110,104,105,88,99,104,121,95,117,79,99,107,101,98,98,112,102,115,97,97,114,112,92,97,103,100,96,113,102,99,109,97,91,90,97,99,80,105,103,100,97,95,111,79,109,102,97,102,100,107,96,102,106,106,99,103,109,103,115,108,101,110,98,97,106,100,105,105,105,90,103,104,102,87,100,101,93,99,98,110,108,102,102,97,100,106,106,98,97,106,97,101,107,99,106,94,95,100,105,104,99,102,90,108,92,105,98,108,109,101,94,97,105,91,99,105,106,94,98,104,98,100,102,102,109,102,110,94,96,101,107,97,100,105,89,100,92,107,109,91,96,98,115,104,98,112,105,103,104,93,95,95,98,108,117,109,106,110,100,103,106,107,85,105,102,107,111,104,106,90,89,88,91,99,100,83,108,103,91,102,119,100,109,108,98,98,103,98,107,113,96,103,97,107,103,109,92,96,84,106,103,105,93,101,99,110,100,102,110,109,88,84,102,99,102,91,100,76,99,109,107,104,99,108,101,108,113,106,94,108,108,92,91,101,93,102,124,97,98,95,100,101,104,104,97,108,103,91,91,106,116,105,103,98,102,105,106,93,119,107,108,108,105,99,108,105,101,91,105,98,100,113,89,101,130,104,98,111,118,101,107,104,112,93,97,86,107,120,96,100,95,100,113,106,98,102,117,102,112,94,100,91,108,109,94,99,108,99,102,106,97,103,101,92,99,113,110,95,98,102,107,103,102,95,98,95,101,100,110,108,105,86,99,102,97,104,100,105,106,87,108,102,98,92,123,117,112,106,107,102,109,116,102,112,104,110,95,101,100,97,96,94,108,87,104,108,102,107,97,80,80,106,110,87,116,108,102,97,110,106,105,108,98,111,98,109,96,98,108,108,101,112,101,107,108,112,100,97,98,112,95,110,102,104,110,125,116,115,94,107,108,112,104,93,115,122,111,94,103,107,102,104,94,105,89,109,95,97,106,104,95,92,100,96,103,110,115,90,109,100,92,89,106,101,100,106,104,91,95,107,99,103,103,113,106,97,110,98,103,99,100,107,100,97,129,101,98,94,108,103,98,95,123,102,97,100,107,118,114,101,98,94,75,101,105,109,97,96,101,110,106,103,105,94,103,97,120,94,107,116,119,76,105,104,100,105,113,117,98,102,89,104,97,100,107,100,101,98,88,104,107,102,104,104,96,95,106,106,95,113,102,70,94,104,102,107,104,105,100, +672.85901,105,107,99,91,97,94,89,120,90,113,113,96,91,97,98,103,91,100,113,104,106,108,74,95,98,109,102,106,102,100,104,109,99,94,113,76,101,103,106,103,96,104,106,108,107,117,93,108,98,79,106,104,97,103,86,94,88,90,101,94,73,105,98,109,105,104,92,103,100,88,98,104,102,116,103,102,114,124,99,103,98,101,91,88,106,91,87,105,99,86,100,96,105,83,96,106,104,97,75,104,101,97,100,105,93,106,120,101,96,100,101,99,117,110,106,103,100,111,96,94,100,108,96,100,124,104,107,100,126,106,100,108,91,111,84,88,93,109,105,100,105,104,102,103,93,87,114,98,114,101,83,91,124,102,95,98,99,103,103,106,107,109,102,98,107,96,86,94,107,88,103,103,104,102,103,94,102,101,103,108,101,87,104,105,98,108,121,96,113,102,94,113,105,109,91,99,102,108,104,99,91,108,110,110,100,112,92,107,100,115,98,104,105,101,105,89,93,97,88,100,116,100,109,105,98,111,105,100,86,107,91,103,110,102,106,103,103,100,103,100,105,97,93,110,101,101,90,98,108,104,105,106,93,113,100,108,104,101,94,109,108,113,94,117,87,105,97,100,94,101,124,96,102,106,101,107,99,100,100,106,110,98,101,91,102,107,96,95,102,102,96,110,99,89,102,100,100,100,94,105,100,110,126,114,99,103,91,108,106,107,100,109,93,92,108,101,94,100,103,91,138,126,108,115,98,86,104,93,116,111,96,86,102,112,109,92,78,97,104,92,96,102,99,107,96,110,97,106,104,104,81,105,96,106,112,113,106,92,105,101,118,99,106,90,107,76,88,105,106,100,125,113,106,99,95,115,101,104,106,100,114,104,97,93,109,93,100,128,116,94,105,99,102,95,96,97,98,114,95,107,96,99,105,105,94,97,95,108,98,109,95,102,113,92,119,102,105,93,104,99,99,100,96,113,97,106,97,93,92,109,94,125,94,105,102,102,102,94,96,98,109,103,114,111,97,101,103,100,95,105,105,76,99,102,100,104,107,118,116,94,99,104,95,99,97,98,103,93,118,96,104,118,113,99,103,97,91,105,108,99,107,108,99,106,108,101,105,129,100,106,101,103,100,95,98,103,84,105,98,96,101,89,98,104,105,102,94,95,101,114,110,113,98,74,111,116,101,94,104,94,108,93,111,103,108,105,101,108,105,104,99,108,94,97,99,102,105,100,105,99,68,97,105,99,77,98,110,95,105,103,99,111,116,87,103,100,107,71,114,100,97,102,106,108,99,94,107,108,96,109,99,99,98,90,115,100,104,102,117,113,102,91,111,95,113,96,104,99,110,103,99,97,96,99,103,87,104,112,107,96,105,101,109,93,109,99,83,111,95,91,87,98,107,111,94,113,101,105,94,111,99,111,88,112,103,107,86,97,96,104,104,100,109,116,87,114,99,91,90,104,105,95,107,94,117,100,99,93,107,102,103,100,110,111,118,103,99,100,84,106,116,92,101,113,105,98,112,108,109,104,98,94,110,91,110,110,96,115,99,109,112,115,105,102,100,92,95,108,100,99,106,102,100,105,105,108,99,96,105,94,125,90,99,107,96,93,117,101,110,107,100,101,105,84,96,106,105,96,114,101,101,104,108,114,91,99,97,96,100,100,111,104,96,95,114,105,99,109,112,99,103,98,100,99,97,94,110,111,105,109,108,98,105,72,105,109,98,115,101,99,94,92,101,96,104,95,104,109,100,92,102,90,105,90,102,103,98,95,100,98,107,90,104,103,97,110,105,99,106,98,108,118,100,100,106,105,95,99,104,109,100,112,109,97,101,97,119,101,110,101,111,96,88,101,105,105,110,105,100,92,99,100,103,103,110,112,113,99,104,101,109,95,99,129,105,106,98,101,105,104,98,110,114,105,101,106,94,103,98,117,113,76,102,113,94,77,100,98,104,95,101,87,105,109,99,91,101,110,100,112,103,106,98,105,98,93,108,106,88,98,99,107,122,108,99,104,99,114,99,85,99,100,95,111,109,88,100,96,94,102,103,105,103,97,92,106,99,102,113,106,110,100,111,104,97,119,101,111,108,109,103,116,97,107,100,96,107,100,99,104,109,108,98,96,101,89,101,98,109,99,92,100,97,98,112,70,120,89,101,105,95,106,98,121,111,96,95,108,93,94,119,112,101,101,113,96,109,100,100,102,99,117,110,105,97,103,96,92,94,100,100,96,101,112,109,86,99,98,92,102,90,96,101,103,76,99,98,111,83,105,98,114,101,92,110,109,105,101,98,103,100,99,97,101,105,98,101,105,103,90,95,116,104,100,105,94,103,100,97,96,100,111,97,89,122,94,94,104,93,101,102,100,94,102,102,99,106,94,101,105,102,104,101,104,95,102,97,107,102,104,125,112,108,102,104,96,99,91,91,96,93,105,101,104,106,96,99,104,89,98,134,101,100,103,103,111,105,92,94,111,105,105,96,98,93,98,102,89,103,102,117,104,97,106,101,92,101,103,110,100,123,114,99,102,105,101,104,64,117,109,121,98,82,105,112,110,116,109,98,102,104,94,109,105,98,93,101,125,110,107,108,93,101,105,93,107,107,98,108,105,102,95,109,108,108,103,77,111,94,103,108,89,98,101,99,92,108,98,104,102,96,105,115,110,106,104,109,100,106,95,102,98,96,103,102,98,95,105,109,107,100,107,102,111,91,100,105,102,106,103,79,103,101,113,101,110,99,103,98,92,102,112,94,104,117,113,110,93,100,90,106,101,101,104,106,100,96,100,109,105,84,103,104,101,104,106,113,103,93,103,109,103,103,99,106,102,86,98,101,101,109,114,106,101,93,98,93,94,98,113,122,106,97,93,110,105,97,100,96,100,96,91,115,97,105,91,99,93,112,112,103,96,98,110,95,92,97,110,105,100,102,108,109,93,107,92,111,102,95,104,105,111,95,105,98,102,105,97,95,97,100,102,94,106,99,95,93,94,104,111,106,100,101,98,98,101,98,117,102,116,110,106,102,102,99,95,97,107,110,96,100,108,103,95,97,101,99,98,104,88,103,113,104,97,101,89,99,105,106,97,103,131,95,100,100,106,110,100,100,112,82,107,96,116,120,79,97,101,99,111,132,102,98,105,106,84,94,91,104,96,95,101,100,92,103,112,94,100,79,99,111,95,102,101,105,95,106,103,107,99,99,106,95,96,97,93,98,116,95,105,94,105,103,104,108,99,107,91,103,93,98,106,115,115,104,99,96,104,104,102,98,97,103,105,109,106,99,87,102,94,104,95,100,106,100,99,99,116,113,113,93,107,108,108,106,101,101,105,92,102,109,92,95,93,100,101,102,107,104,95,100,88,87,99,108,103,104,127,95,111,93,104,98,110,93,100,98,98,122,101,102,106,102,101,110,103,107,96,98,104,108,117,101,91,104,100,100,100,103,96,99,124,102,113,102,102,115,106,113,96,97,98,104,104,108,100,117,104,106,112,104,101,102,100,107,107,106,103,99,89,106,88,101,84,98,98,101,110,100,107,93,93,99,102,97,107,101,95,87,104,103,101,94,100,108,105,99,102,114,101,98,101,100,105,105,96,95,96,108,105,106,95,109,106,97,109,102,67,109,107,99,103,103,93,97,97,108,96,103,109,111,106,102,104,102,108,100,111,107,100,101,102,103,103,101,90,108,111,102,102,107,103,110,101,102,95,105,102,100,106,87,99,99,94,103,109,104,100,92,97,102,94,103,96,98,91,95,92,95,101,98,98,95,95,109,98,95,109,113,116,80,105,104,93,112,95,113,96,104,90,110,101,103,102,98,95,94,99,113,102,95,112,107,106,82,95,108,106,106,92,105,99,113,107,106,102,104,114,108,112,108,102,106,93,95,103,123,101,97,102,97,107,111,107,98,93,110,103,102,110,98,95,105,97,104,99,104,96,112,103,111,102,91,104,100,102,96,94,97,93,109,106,98,111,115,108,96,106,90,104,79,99,94,109,105,103,87,94,92,98,108,109,94,120,116,101,107,104,106,94,110,91,83,105,109,106,105,92,103,91,96,104,110,93,91,116,103,101,92,102,100,112,102,106,101,98,100,107,109,100,109,94,112,101,95,111,103,93,84,111,100,109,107,115,103,104,98,94,97,87,93,71,95,109,104,98,102,83,104,120,124,106,102,108,107,82,95,94,104,88,102,100,110,100,109,105,114,104,100,113,100,116,107,97,109,97,106,113,96,103,96,92,102,110,94,107,94,96,108,102,98,99,112,94,94,101,107,90,95,93,107,91,102,103,107,101,94,99,109,105,105,112,102,101,104,102,106,111,100,96,91,104,93,107,110,100,103,99,94,94,102,100,107,100,100,107,103,87,93,100,103,94,97,105,114,90,108,112,106,106,99,98,100,105,95,113,105,100,92,101,103,101,98,94,96,105,100,105,111,94,115,103,105,105,90,105,104,95,108,118,114,99,99,111,104,92,101,100,108,102,90,105,98,115,87,98,120,98,102,101,103,107,117,116,98,99,96,98,104,110,100,94,93,101,100,109,96,92,98,104,104,111,104,100,125,111,104,123,95,102,101,101,103,114,100,105,85,112,105,96,101,107,93,104,109,109,102,111,100,91,100,99,99,98,104,96,92,91,97,98,106,96,121,99,97,93,102,101,95,103,90,115,109,106,109,92,106,113,106,102,104,105,80,99,99,104,96,77,103,105,103,101,88,100,110,94,109,108,108,95,110,102,99,107,106,100,109,99,94,103,101,100,98,109,117,105,98,96,106,116,101,100,105,93,103,98,105,100,95,114,99,94,103,128,101,106,109,100,103,104,114,104,105,95,90,106,116,96,100,99,88,107,99,103,119,99,93,116,115,84,100,107,93,104,112,104,99,98,102,97, +673.00024,113,104,113,106,106,112,90,87,103,120,102,101,98,99,101,98,100,100,98,103,106,105,100,110,97,116,110,112,108,104,120,99,96,103,107,104,112,111,104,103,90,100,98,97,110,110,95,107,96,122,106,111,86,91,103,94,94,106,95,100,103,85,126,94,107,114,108,98,101,96,104,106,100,102,95,112,100,104,109,110,94,108,112,93,101,110,91,97,101,95,99,108,106,108,96,104,102,103,112,104,68,98,97,100,92,106,108,95,94,79,97,106,109,114,97,99,106,105,115,86,100,117,111,96,99,104,101,104,103,96,89,101,89,114,101,111,99,101,88,105,84,81,101,103,101,109,96,102,97,98,101,95,119,99,120,100,98,95,113,106,98,110,99,99,105,95,98,98,104,96,110,102,98,106,97,91,114,85,97,98,91,107,99,102,102,95,100,109,96,94,102,96,104,103,109,101,104,91,101,119,98,93,104,101,98,108,102,106,101,96,97,98,74,96,100,107,96,96,105,103,100,108,112,122,101,109,92,99,102,109,69,98,109,93,102,117,101,108,98,107,102,90,114,104,84,110,91,98,96,115,117,109,102,107,106,97,95,105,97,105,94,110,94,94,99,95,101,97,103,101,111,107,106,106,102,92,98,102,93,101,115,111,104,108,99,110,91,95,92,124,88,102,114,99,111,101,102,101,99,99,98,106,93,104,97,104,98,123,92,107,103,97,102,97,105,89,102,109,98,88,97,95,103,111,118,100,97,107,110,92,107,95,103,108,116,107,102,93,103,110,95,97,120,101,105,125,103,98,94,116,105,112,102,101,103,100,99,101,112,104,98,106,96,99,97,100,98,98,94,98,112,102,108,97,97,99,100,92,100,96,114,95,91,106,78,107,108,83,102,100,109,110,88,94,95,100,97,103,99,106,101,93,105,100,88,108,101,109,112,117,101,96,99,114,104,92,104,98,105,97,93,103,96,96,87,99,90,105,101,100,86,104,121,97,97,119,111,107,111,90,104,82,106,92,90,107,101,98,93,106,102,107,103,99,102,96,95,92,104,96,101,105,99,102,104,109,101,111,103,112,101,104,95,102,113,105,115,90,111,105,102,105,100,102,106,98,108,111,94,104,105,110,97,93,76,97,107,104,122,98,104,100,104,88,105,104,99,101,100,98,112,108,104,94,110,107,87,100,102,98,98,113,99,108,113,101,98,109,98,102,74,91,113,101,65,95,104,101,90,101,93,102,103,102,116,102,107,92,98,96,104,96,112,109,98,94,105,88,106,92,106,100,98,101,83,98,87,106,101,92,106,90,107,99,81,104,116,105,94,113,105,106,110,113,104,108,105,103,126,111,95,100,127,99,105,81,101,104,113,100,106,91,101,98,99,109,105,103,136,114,105,97,92,110,105,101,94,86,95,105,111,108,96,101,105,102,86,99,108,101,106,93,101,111,93,100,96,93,107,94,105,109,107,100,87,101,104,87,100,97,92,96,93,90,98,107,94,106,97,103,109,111,104,86,107,97,95,90,109,96,103,98,109,97,98,113,99,112,106,108,113,92,105,84,107,103,109,93,104,105,99,116,99,108,90,88,104,114,110,94,95,102,96,98,97,94,104,103,102,107,110,100,102,97,103,97,115,106,100,105,103,93,103,110,90,108,103,105,94,97,101,103,97,99,98,98,102,94,103,106,97,94,112,96,109,105,100,103,105,103,100,98,108,99,108,101,96,103,101,107,95,95,96,102,100,126,65,102,105,102,113,92,98,112,102,101,108,94,114,97,95,94,84,104,103,112,96,113,94,107,112,106,94,106,107,103,95,107,104,88,110,107,91,94,94,100,95,95,101,105,111,100,112,97,98,97,114,115,92,99,96,108,98,99,92,97,116,110,104,95,106,103,101,106,91,104,76,103,105,113,101,102,94,107,102,94,97,104,101,98,102,97,94,114,99,96,106,111,95,105,102,101,101,104,107,99,101,92,111,97,96,97,96,109,91,71,95,93,113,100,107,110,99,98,110,102,97,103,108,101,109,101,104,103,102,89,95,103,105,91,95,103,111,104,94,116,113,96,94,110,97,90,99,94,104,111,96,107,98,95,111,97,98,120,91,96,108,91,90,104,106,111,96,113,99,100,96,104,93,104,106,110,94,100,112,113,99,102,95,81,106,110,104,105,104,95,101,109,77,90,112,98,102,103,71,102,88,107,94,100,83,100,95,97,106,98,115,85,94,103,99,103,93,110,97,91,104,105,105,113,105,98,94,111,110,96,93,108,96,99,97,103,93,101,99,109,75,102,101,110,97,97,103,117,99,106,108,104,95,107,105,109,104,97,106,95,61,99,101,107,107,122,111,99,104,95,95,114,108,89,106,87,105,98,93,89,100,109,90,106,109,107,102,112,105,110,96,106,97,107,92,108,100,104,105,103,96,103,110,98,95,111,93,85,108,98,103,94,85,96,71,106,98,94,96,116,87,90,78,114,87,110,99,96,109,93,101,108,107,98,110,100,98,104,89,115,79,101,116,101,103,116,106,97,103,94,99,104,91,112,98,103,92,79,111,102,98,102,100,68,112,109,102,95,99,107,100,105,104,95,108,85,105,98,105,96,91,106,104,106,112,95,106,107,111,99,79,112,104,109,76,97,112,93,111,110,93,101,104,106,104,105,99,102,103,73,103,95,110,103,97,116,88,97,108,103,111,110,104,117,110,106,113,94,91,103,100,99,102,97,100,109,87,109,98,94,115,107,99,105,99,102,100,99,112,112,106,110,102,106,98,98,90,110,109,105,99,93,105,104,87,109,105,101,106,101,97,108,109,98,105,100,115,96,106,96,87,100,104,105,82,99,97,98,112,103,108,102,113,108,105,103,96,106,132,110,107,104,65,102,110,105,94,113,104,100,102,100,112,108,105,105,105,92,107,98,95,115,98,106,102,99,95,103,105,103,107,104,94,99,93,94,104,125,103,106,112,104,95,95,94,105,97,104,98,109,107,100,110,110,114,95,102,100,108,108,102,96,97,98,92,100,100,112,100,92,96,108,100,103,106,111,106,97,108,114,104,106,104,106,103,103,103,106,100,91,113,106,108,97,80,106,99,102,116,94,102,112,106,98,115,109,103,106,104,100,100,102,101,81,101,94,82,102,105,94,106,102,92,117,103,89,107,104,99,117,115,102,109,110,115,100,104,105,103,98,107,107,108,99,97,106,84,91,104,96,110,102,85,103,104,99,107,110,103,107,63,111,101,112,104,110,112,112,99,104,103,105,105,105,100,95,95,102,102,104,109,87,103,102,117,101,112,105,104,105,115,106,103,111,102,94,116,94,99,101,87,92,95,102,93,99,99,102,98,92,113,106,105,109,96,102,92,90,103,105,101,100,100,98,95,95,87,106,101,99,99,100,102,87,100,103,100,106,107,99,109,105,112,106,98,103,105,99,102,113,112,103,101,99,81,112,95,106,87,99,112,98,90,104,110,97,97,91,101,111,108,105,98,93,118,116,95,104,90,97,102,99,107,99,100,103,102,100,105,110,105,111,98,105,104,105,101,103,103,102,95,105,106,115,91,91,100,101,95,100,109,92,113,91,109,114,105,108,114,100,98,103,94,96,103,102,108,109,110,109,119,117,99,92,109,107,101,105,109,95,97,112,98,106,84,90,106,113,101,107,99,101,100,100,104,105,100,74,116,99,107,102,95,105,88,119,90,110,115,95,106,111,119,95,110,99,105,74,104,108,96,106,110,102,106,113,101,96,102,111,98,111,95,104,91,98,105,97,107,113,92,117,113,106,100,97,87,102,103,91,113,108,91,116,108,101,117,104,100,103,97,91,108,101,91,105,117,100,107,94,111,91,125,113,105,117,105,107,125,113,91,106,102,112,91,109,106,96,107,95,95,93,112,93,110,90,101,86,102,90,99,103,107,101,106,111,113,108,98,103,106,107,108,107,98,106,95,105,92,108,104,90,97,115,99,108,94,100,97,105,109,107,94,99,106,106,97,93,103,100,99,101,99,110,105,110,100,109,95,104,106,95,101,98,104,109,96,100,101,101,108,97,109,109,101,99,104,69,107,96,107,97,94,97,108,102,77,108,103,109,98,102,103,92,108,99,105,99,95,108,96,95,91,95,95,95,99,95,98,112,103,106,102,106,102,104,109,104,99,108,105,106,101,107,79,92,118,105,109,106,92,97,102,109,120,110,96,105,94,107,96,91,110,106,101,96,110,95,102,109,105,105,101,99,115,93,112,106,92,101,108,98,70,105,98,113,101,98,95,111,96,93,87,103,96,114,88,102,87,89,106,104,116,112,94,108,66,101,104,98,100,98,103,101,109,117,93,111,95,94,100,94,85,109,112,102,102,115,106,112,107,103,101,104,99,104,111,98,108,108,97,87,96,100,94,94,115,108,103,108,108,105,100,101,100,101,95,95,96,85,98,114,96,105,104,103,102,111,108,97,76,102,104,96,106,98,117,111,106,120,94,101,103,104,97,102,95,100,98,92,110,100,104,91,97,104,108,118,104,96,110,116,91,98,96,116,95,100,109,103,106,97,105,110,108,98,105,88,96,102,113,101,109,100,105,97,94,112,102,97,110,99,106,106,89,94,105,97,109,116,117,104,107,110,100,105,95,107,91,101,109,109,94,101,98,105,129,105,97,102,109,106,121,98,81,91,108,115,98,104,103,105,102,92,95,102,111,109,99,91,114,120,109,106,108,120,105,99,94,106,110,91,110,105,106,96,100,106,97,99,91,111,102,109,90,97,98,104,97,108,101,103,84,95,106,99,98,84,97,103,111,98,111,106,103,104,95,99,114,100,119,105,94,94,103,112,101,94,96,117,89,99,101,109,102,103,98,103,112,98,107,95,87,95,102,111,95,90,111,99,95,95,113,77, +673.14154,99,121,97,84,104,98,105,94,93,92,112,109,104,96,117,109,104,105,96,106,98,106,106,92,111,96,102,102,117,99,130,100,107,107,104,101,109,97,95,96,99,103,83,94,104,104,108,110,110,111,98,94,101,92,97,94,93,106,116,90,95,105,126,105,111,97,99,99,98,97,94,109,102,103,101,106,102,121,120,96,98,104,111,98,97,100,105,100,96,91,106,101,93,104,95,106,107,91,99,107,93,112,102,96,100,98,103,103,109,106,87,104,99,110,101,93,99,105,94,102,95,122,103,110,114,89,100,97,122,106,98,111,93,112,110,106,100,92,80,94,104,102,102,93,99,96,102,102,97,105,101,101,97,89,108,114,100,88,100,102,107,109,102,107,92,94,118,94,92,87,96,103,105,91,97,115,98,103,97,105,103,85,114,104,79,86,91,90,101,102,110,88,100,100,100,100,78,106,102,101,96,103,102,121,65,97,95,104,107,115,95,95,100,104,113,108,101,116,86,102,99,103,97,105,109,103,96,114,99,124,112,108,103,103,95,97,101,105,101,90,104,108,95,91,101,96,103,106,101,110,100,143,101,96,105,90,106,71,94,88,99,108,106,92,97,103,99,110,99,99,110,105,106,94,108,108,95,103,94,101,105,99,101,96,91,108,110,96,110,90,99,94,99,115,87,110,107,106,90,104,107,90,113,110,101,104,103,110,102,108,94,99,108,102,102,100,102,110,100,96,103,93,118,112,94,90,98,91,114,100,98,101,111,106,103,94,91,91,70,109,94,105,95,92,102,113,99,106,73,103,103,96,97,103,110,97,105,98,112,92,102,108,105,103,93,103,109,104,114,111,105,92,106,105,80,80,97,110,98,97,105,110,96,96,85,100,97,106,99,102,103,111,94,99,102,100,109,113,100,107,90,100,95,97,102,100,108,78,94,108,101,113,112,113,104,83,109,109,102,105,96,118,91,108,91,91,105,119,106,105,102,105,105,104,103,98,103,99,98,98,117,117,102,99,105,104,92,103,100,100,96,77,104,115,107,95,96,110,113,114,97,98,105,104,105,101,105,95,109,107,114,98,105,103,104,100,88,96,102,113,99,98,108,102,110,101,107,96,95,94,108,116,102,103,94,96,98,96,106,107,105,100,110,101,96,102,105,108,108,106,102,107,98,98,99,98,92,98,109,94,101,100,97,116,102,104,105,90,100,94,92,114,111,100,105,113,100,106,105,101,86,96,91,92,100,106,105,108,97,108,87,100,105,105,107,105,104,111,101,97,101,102,102,94,96,98,108,97,113,105,91,91,95,91,108,103,94,97,101,113,127,89,116,108,100,99,102,101,95,96,108,108,103,100,108,96,98,95,104,111,104,119,104,100,107,97,92,100,103,100,105,99,111,112,113,111,105,92,113,105,108,111,115,86,105,95,98,99,106,91,99,106,99,102,101,110,99,108,103,105,108,113,112,98,111,106,107,99,93,95,91,105,107,101,106,109,108,99,110,99,106,102,104,101,101,91,102,97,99,99,109,110,105,103,106,97,110,96,99,100,98,99,108,114,94,98,97,82,117,112,99,110,102,108,113,97,91,85,101,94,99,106,109,99,106,105,112,91,94,105,103,100,105,106,106,93,104,103,82,109,108,91,102,103,103,100,103,102,113,97,112,114,98,105,90,112,96,97,122,103,129,102,98,112,108,83,106,104,103,115,102,82,105,102,103,99,102,105,103,120,103,106,113,103,113,96,90,100,86,103,110,98,103,94,90,104,106,99,99,99,97,94,107,96,100,94,108,111,102,73,117,109,93,111,73,105,108,105,113,104,103,91,104,105,113,117,107,107,113,96,113,103,93,96,113,97,115,104,113,98,108,113,95,84,110,95,69,99,107,99,105,96,89,104,107,102,102,100,101,98,102,106,94,107,108,98,105,104,101,96,121,94,90,97,107,109,97,105,106,101,101,105,104,113,104,96,95,106,102,102,100,117,102,107,97,95,106,97,102,110,101,113,99,105,112,103,101,105,104,99,105,118,95,100,100,110,95,110,99,105,113,104,104,113,107,114,93,106,92,98,95,93,109,109,112,97,100,109,107,107,105,118,104,123,110,93,108,90,104,107,104,110,102,98,100,87,97,94,87,112,109,99,96,102,99,101,102,108,103,116,91,106,102,108,97,110,104,86,103,98,96,102,92,104,108,99,100,90,89,99,109,109,101,104,93,103,86,97,94,82,101,109,104,107,101,95,91,95,90,117,109,99,97,97,105,99,105,97,99,100,95,85,92,98,137,103,104,100,89,96,102,100,104,100,95,110,92,104,112,113,101,98,105,114,101,85,88,114,111,110,102,96,116,111,94,93,105,97,108,112,98,106,101,102,101,100,106,97,104,104,109,94,105,95,85,98,116,92,105,102,97,91,101,102,94,98,96,108,100,91,99,104,84,102,106,107,92,93,95,106,93,101,95,97,93,105,100,106,105,120,93,112,116,98,80,94,98,100,96,98,99,87,115,117,96,98,97,112,98,90,106,94,111,102,95,100,94,98,100,109,98,113,101,96,106,111,104,120,105,99,107,102,100,96,109,91,99,98,113,81,99,103,89,105,99,108,97,107,99,111,106,107,97,91,102,80,111,101,98,101,94,94,102,103,96,113,90,113,106,102,98,108,94,103,113,99,101,98,99,111,101,98,85,103,113,113,119,107,108,108,109,101,94,112,104,109,101,105,109,112,86,104,92,102,116,106,97,108,110,102,103,107,98,106,96,104,98,104,106,98,102,112,109,98,110,94,102,105,97,100,105,107,83,89,102,99,92,100,106,109,109,93,100,123,103,103,104,113,127,114,116,88,110,104,99,105,92,98,97,107,96,98,110,96,114,127,111,109,98,109,101,100,104,110,97,99,100,103,100,103,97,102,106,100,104,105,111,113,96,106,103,117,101,89,92,110,97,95,108,98,100,105,100,103,101,94,104,108,111,108,109,117,109,94,112,108,101,101,94,106,109,102,96,87,110,111,102,98,99,100,117,98,98,114,112,95,107,100,98,102,83,106,117,103,108,96,108,91,90,102,107,112,102,104,104,100,105,104,110,96,95,110,120,110,105,90,105,102,101,69,101,96,101,107,102,95,101,104,101,101,108,94,99,112,106,97,103,99,91,102,96,97,110,95,100,107,98,109,117,96,104,88,91,99,101,100,106,104,109,120,115,111,103,110,84,99,102,92,103,93,102,104,104,88,91,85,107,81,104,95,120,118,105,113,114,96,83,117,98,113,87,80,105,95,104,103,92,94,105,98,102,101,106,101,102,95,91,104,117,98,115,97,99,107,110,97,104,97,85,95,104,105,92,96,99,93,103,104,94,100,101,101,99,100,111,111,103,90,92,100,104,91,117,107,96,98,95,106,97,96,98,121,114,92,99,97,104,106,105,99,95,90,105,107,105,99,98,107,103,109,104,108,103,102,95,106,106,105,109,102,108,102,105,94,103,103,113,114,98,114,91,100,97,97,96,96,106,116,115,87,99,109,100,109,105,99,115,99,95,85,100,95,96,99,103,109,93,96,106,114,105,96,98,102,107,116,108,98,103,104,105,92,94,100,100,105,88,102,103,116,102,73,107,113,96,116,106,89,108,101,105,104,112,95,99,95,94,102,89,105,97,106,107,106,86,98,98,105,112,95,108,109,97,100,96,100,110,102,107,99,111,88,111,95,113,104,100,99,87,100,125,108,104,99,90,116,102,102,113,119,103,113,105,94,98,103,96,106,107,104,83,109,123,115,90,101,111,100,109,108,96,108,98,118,91,91,102,94,98,104,106,95,95,98,106,99,120,96,97,95,104,98,81,99,102,85,99,95,103,93,112,103,98,97,103,109,106,102,114,94,94,113,98,104,112,101,113,104,99,91,96,128,97,116,102,96,96,100,98,106,99,104,109,107,87,107,111,76,110,115,90,110,96,110,103,95,101,110,99,103,96,102,102,104,105,99,98,99,102,99,98,96,91,104,105,108,100,103,105,106,102,97,102,100,103,116,104,102,110,98,109,108,99,96,104,109,105,94,104,108,102,91,102,103,92,103,86,107,113,103,99,107,110,107,96,97,91,105,109,99,108,109,110,116,93,93,96,99,94,109,102,94,104,86,93,99,109,98,104,111,100,98,84,85,94,87,99,94,118,91,115,113,110,115,104,106,96,103,110,112,122,105,91,94,108,100,96,102,97,93,125,103,94,104,101,99,103,100,102,96,95,124,110,95,97,100,104,105,99,101,114,97,102,94,99,107,96,94,91,99,104,107,102,103,113,112,98,108,96,111,101,92,121,96,105,90,94,81,99,106,102,99,103,108,100,101,105,120,106,113,99,106,97,99,102,90,107,99,112,102,92,113,106,89,94,98,102,117,98,109,85,101,97,96,96,105,101,94,120,100,108,107,95,95,114,101,113,108,117,105,97,108,104,105,110,93,102,103,95,107,103,115,100,101,102,98,105,102,99,103,110,96,103,108,106,105,96,106,103,99,109,101,97,98,102,69,97,95,102,98,98,117,95,111,110,97,94,93,91,94,101,109,114,103,106,104,110,102,100,103,103,100,97,103,113,97,99,98,107,101,96,104,108,106,96,113,110,109,106,95,113,103,100,102,110,90,89,108,99,90,92,108,104,103,100,107,94,97,103,104,90,98,108,103,107,100,98,89,102,103,103,108,108,100,88,91,102,83,97,100,108,92,108,91,102,102,108,99,106,108,94,94,99,108,110,98,96,103,109,109,100,110,102,105,99,108,95,102,98,99,115,86,101,107,112,102,101,105,97,103,104,87,100,100,96,99,102,87,104,102,108,118,101,80,87,113,77,101,94,93,117,107,108,100,113,81,103,99,105,105,97,101,96,102,91,90,116,98,87,113, +673.28278,87,101,100,100,99,98,94,93,96,106,107,106,96,105,90,94,93,95,111,108,100,93,96,107,92,107,97,95,107,104,115,101,106,95,114,89,100,97,90,93,114,101,106,92,88,95,94,101,93,106,96,111,95,89,96,100,93,97,95,100,96,97,108,100,87,111,80,96,91,94,99,96,108,111,83,109,92,89,111,92,91,100,101,104,99,104,99,104,94,106,101,95,104,99,92,109,92,92,92,106,107,101,87,111,95,107,98,97,95,103,109,98,102,95,100,93,80,91,101,104,102,111,125,104,93,107,94,92,104,95,113,105,103,100,100,110,98,92,101,93,95,106,104,97,97,104,104,100,104,92,99,91,107,106,99,109,103,90,109,108,91,78,108,103,101,102,106,86,119,112,89,101,119,102,101,96,99,102,103,106,93,90,99,100,93,101,97,109,104,98,105,104,106,97,105,112,97,91,111,95,101,102,95,105,90,103,97,110,114,113,107,103,107,116,102,111,97,93,90,105,108,102,103,92,94,102,97,110,97,89,96,110,104,110,99,101,99,110,103,109,102,106,109,92,97,125,125,98,113,101,104,100,106,104,89,99,101,101,86,103,99,107,105,105,98,109,109,97,100,99,97,102,113,101,120,113,90,99,98,95,117,103,97,92,105,107,101,107,91,96,87,106,100,96,109,112,105,110,106,106,116,88,101,106,92,112,102,106,101,101,93,101,99,115,106,101,105,96,104,100,97,97,106,99,103,106,90,90,102,98,103,96,99,109,98,93,98,91,93,111,95,108,99,93,87,94,90,101,86,108,97,99,116,109,90,103,117,101,95,99,96,104,86,91,102,97,103,106,106,105,106,105,97,108,98,96,101,107,106,108,106,99,92,102,103,96,105,109,108,103,100,97,101,99,95,86,99,101,109,108,98,113,92,102,94,90,108,102,107,99,93,98,108,109,109,94,81,88,85,95,98,102,94,100,92,97,93,80,101,108,89,105,101,103,108,97,103,103,112,109,104,94,100,96,101,100,97,99,104,105,96,102,111,115,106,89,111,103,101,95,113,101,95,109,112,109,97,98,89,72,103,108,87,106,80,95,106,108,103,98,97,99,100,97,103,110,102,97,100,119,95,100,96,105,96,113,87,106,96,94,110,101,104,101,93,101,94,97,113,96,114,106,103,100,100,103,96,116,100,104,105,94,103,101,95,105,104,109,99,94,96,107,101,116,109,99,102,110,109,100,96,95,109,105,107,111,96,95,111,91,94,103,107,107,89,92,115,107,103,102,104,108,104,93,90,108,101,109,82,96,99,95,110,99,101,103,104,91,112,114,96,94,104,102,102,111,107,111,102,108,98,114,97,91,117,88,102,113,99,103,110,95,98,101,109,102,102,96,112,107,99,119,95,107,99,130,102,94,108,96,110,104,102,99,115,113,109,99,100,94,97,106,100,121,100,86,106,97,98,105,104,97,95,105,87,96,93,103,107,100,95,77,104,104,104,101,113,105,97,112,105,122,108,94,94,99,94,111,101,105,96,108,108,102,96,89,119,104,106,97,105,105,94,98,102,87,102,101,109,102,106,99,98,110,110,117,89,113,103,76,106,117,114,90,103,128,110,119,98,98,104,103,114,93,102,100,95,104,100,106,103,107,113,109,96,94,124,103,100,106,98,95,98,95,96,92,113,100,98,102,104,111,105,105,96,102,108,117,103,96,106,98,101,88,121,104,100,100,117,98,105,101,87,99,92,106,90,87,100,89,96,101,104,99,97,89,109,122,103,91,97,92,110,105,100,104,105,101,104,109,93,108,105,108,106,102,104,106,103,111,101,101,102,113,113,101,102,103,96,95,121,111,103,97,100,110,107,103,104,96,109,83,105,108,102,88,102,99,107,109,111,101,102,87,105,109,96,99,102,108,90,117,97,99,84,101,109,92,98,93,119,101,91,105,95,97,110,98,93,106,112,100,109,100,98,105,103,108,109,104,94,111,105,100,103,95,99,104,96,100,108,99,113,93,117,101,95,115,95,92,103,109,101,90,106,104,86,96,117,113,108,100,97,97,107,99,121,107,97,113,112,100,108,96,102,107,110,115,96,108,110,91,99,96,104,91,96,98,85,105,100,108,104,94,97,106,114,106,91,102,99,104,67,102,99,100,111,100,95,109,97,104,113,107,114,100,111,106,100,95,115,104,99,106,96,116,95,94,75,102,98,95,97,92,104,102,114,98,111,108,102,122,104,91,118,100,88,95,103,79,101,91,102,111,107,122,104,94,101,98,107,109,100,103,111,115,105,90,96,108,101,94,103,112,94,81,101,87,100,107,103,100,104,96,105,94,105,71,105,94,104,105,105,99,117,97,102,113,94,105,105,108,96,98,109,102,116,110,97,112,108,104,95,96,121,94,101,98,99,92,95,111,103,99,107,105,97,99,107,105,88,106,100,96,108,100,100,105,101,99,108,96,89,92,109,100,105,105,103,102,95,105,100,105,100,99,97,97,95,96,111,98,96,113,96,108,95,96,91,94,101,112,87,97,104,100,99,106,96,101,102,109,71,98,107,108,94,99,101,96,102,115,97,87,113,96,94,96,94,96,101,95,101,100,103,91,100,97,94,108,113,105,116,107,107,103,103,114,107,112,100,103,98,92,108,120,110,104,99,97,99,105,96,101,95,96,92,109,96,127,100,97,93,103,96,99,93,100,96,89,113,99,113,106,95,104,95,93,99,105,106,104,103,103,104,115,106,100,105,104,111,88,117,98,103,103,105,92,110,95,94,112,101,109,116,92,101,106,97,101,96,103,95,104,91,106,96,104,111,96,94,94,109,103,121,99,105,103,98,103,105,110,115,109,105,95,98,103,92,112,104,93,100,101,113,103,107,99,97,102,103,99,102,101,121,99,91,99,110,107,95,104,107,90,97,86,105,98,114,108,114,110,103,112,106,112,102,102,103,96,113,98,109,112,104,100,110,106,94,102,93,105,109,90,110,90,91,103,101,112,98,109,101,101,124,105,103,106,98,97,94,96,96,99,110,90,102,101,105,105,98,101,106,98,88,101,109,100,117,112,111,109,98,100,92,106,94,111,104,86,94,117,103,103,100,91,111,103,98,98,100,101,112,101,102,110,94,101,117,102,109,98,116,110,110,102,104,115,99,111,105,109,104,91,110,110,100,93,112,93,102,91,86,100,91,114,116,102,107,102,99,95,99,100,102,101,106,103,101,99,111,80,93,99,99,105,103,96,102,98,109,103,107,104,108,97,95,103,98,103,97,109,103,97,96,100,94,93,96,107,102,95,105,94,107,101,99,98,106,92,110,95,97,95,101,94,99,97,97,106,84,103,99,115,114,102,92,98,104,94,102,109,83,95,102,110,104,89,88,109,98,105,109,95,107,100,105,94,110,95,117,99,103,103,103,98,120,97,104,95,101,99,94,98,105,108,97,118,91,102,117,91,108,91,85,107,96,106,105,106,98,91,95,93,93,104,97,102,91,99,102,108,103,93,102,96,85,101,84,97,108,108,121,99,95,100,102,101,102,107,99,100,100,102,95,103,96,109,97,104,103,88,104,90,96,103,101,114,94,88,95,103,105,115,105,112,108,99,104,102,92,99,103,107,110,100,98,95,107,96,96,100,108,105,105,104,108,97,103,98,105,101,103,102,95,92,107,112,112,100,87,104,106,98,105,101,113,100,78,92,104,111,107,108,98,85,108,103,106,91,99,101,102,96,96,100,103,103,94,109,112,95,105,92,106,100,91,104,103,100,102,89,116,96,97,98,105,104,116,103,91,103,111,104,105,85,99,107,101,115,101,104,101,81,103,94,98,94,104,93,111,109,98,135,103,92,97,98,104,108,94,99,93,94,114,109,104,101,99,97,93,98,94,96,107,96,99,95,102,102,103,112,85,91,99,100,100,101,110,95,109,97,123,102,89,97,98,106,98,103,105,110,100,105,93,113,108,107,102,108,102,100,104,100,95,101,109,101,106,99,94,99,96,93,95,95,91,103,99,104,108,112,95,96,117,119,100,101,109,116,107,103,97,104,113,93,100,104,106,98,106,102,105,94,79,104,102,105,112,94,111,105,109,109,99,90,102,108,109,108,95,101,112,108,100,103,106,91,104,110,95,73,97,96,99,108,91,100,100,92,90,94,98,98,104,105,98,112,99,104,100,109,110,91,102,95,86,99,99,107,103,100,106,100,104,96,99,95,106,110,105,103,96,110,97,96,109,107,111,91,112,103,108,102,88,97,98,94,101,99,113,105,104,103,107,103,98,96,102,110,97,107,102,121,107,104,105,88,102,106,98,91,111,99,103,99,110,109,90,99,95,92,107,95,91,97,111,103,96,101,108,107,104,111,100,114,105,99,102,87,103,106,108,107,81,100,106,90,97,92,96,97,93,111,97,108,100,119,100,113,108,108,98,99,101,114,90,102,103,98,83,96,109,104,103,102,107,119,95,107,107,105,94,103,87,95,102,105,100,108,93,109,101,115,100,115,98,102,103,99,102,100,96,111,105,110,103,86,110,93,97,90,104,108,97,107,101,99,100,95,110,109,111,97,112,110,92,117,100,95,103,96,101,111,115,95,106,91,112,94,95,91,98,96,112,104,98,99,112,112,113,108,100,99,106,91,111,100,105,115,103,112,113,113,98,98,100,108,110,90,95,87,102,120,104,97,106,93,109,95,107,95,103,99,73,99,100,107,91,103,112,93,99,100,109,105,117,111,106,99,99,96,102,107,104,99,102,110,99,113,118,88,107,87,102,99,104,103,97,99,104,88,125,107,109,88,95,89,109,105,102,97,101,98,119,102,99,104,96,107,94,123,99,106,71,108,106,109,91,93,99,99,107,142,99,95,97,96,99,102,103,100,92,105,105,111,105,114,99,99, +673.42401,99,99,87,100,92,95,105,111,69,92,98,98,109,106,110,99,107,105,115,99,106,93,98,79,110,109,98,125,99,83,98,99,108,95,108,89,107,105,110,108,114,98,88,108,116,123,103,106,105,95,75,99,106,102,100,92,94,87,95,101,101,99,91,111,105,99,107,105,98,91,75,105,98,95,96,110,95,96,94,109,96,98,95,87,94,94,89,109,105,98,97,108,99,104,98,105,87,89,100,110,96,90,98,78,98,98,97,94,103,95,94,99,94,86,85,100,98,88,98,98,105,109,90,98,99,106,98,100,99,105,91,110,96,109,101,100,102,105,102,100,99,103,90,104,101,103,103,104,109,107,94,97,109,91,99,90,99,85,104,107,98,104,105,104,101,95,100,98,93,102,93,113,69,99,95,98,105,103,111,100,96,110,100,92,110,117,102,84,99,101,95,90,106,100,106,87,100,109,103,100,98,94,102,110,103,102,100,102,102,91,99,92,89,103,106,100,105,102,107,105,103,121,100,102,114,96,88,111,114,101,99,103,102,93,104,131,97,108,103,94,102,117,111,96,107,102,95,94,102,103,108,111,84,105,101,103,93,112,88,93,109,105,104,99,118,109,99,116,107,100,108,100,111,99,90,76,98,107,96,88,104,97,106,101,113,109,90,95,106,88,112,92,113,105,83,84,108,100,101,96,96,102,108,102,91,97,94,103,97,99,80,106,110,110,104,105,113,99,100,97,109,98,110,111,102,102,102,87,108,94,92,93,101,97,98,95,104,84,100,98,95,97,110,96,106,100,99,108,103,99,102,102,114,100,110,112,109,103,113,98,95,98,89,102,101,105,100,110,95,97,113,98,116,99,117,95,107,101,100,85,116,123,100,105,91,97,89,107,91,105,113,87,104,100,94,98,91,104,103,106,107,100,94,98,85,92,102,115,97,105,97,105,102,105,95,86,95,106,98,96,97,95,93,100,96,87,90,101,96,103,106,98,105,91,108,89,104,108,108,102,103,94,106,109,99,101,94,99,96,104,107,98,96,115,117,98,113,102,92,99,90,98,114,102,116,112,108,110,102,99,113,110,99,95,119,106,101,103,102,110,97,98,108,98,98,93,108,100,103,113,109,105,113,102,75,83,86,102,103,94,105,90,111,100,99,101,99,103,100,99,102,104,102,109,109,109,116,101,101,114,94,98,95,94,96,89,114,102,101,100,88,102,108,113,105,97,104,107,97,106,101,101,107,100,104,90,101,99,105,100,110,114,105,94,105,96,103,87,102,99,99,89,97,105,86,93,105,91,108,91,97,103,102,108,101,95,102,98,91,102,99,100,105,117,120,113,121,108,106,95,116,93,111,101,100,111,106,100,109,103,102,101,99,94,103,98,105,99,114,109,101,110,104,102,113,103,102,97,106,99,97,106,106,93,112,93,96,112,99,91,99,96,97,120,103,105,103,92,110,106,108,105,97,94,106,91,84,99,107,103,108,103,107,93,99,100,102,113,97,111,101,100,104,102,94,114,110,100,108,107,113,100,89,104,91,96,108,105,94,104,100,96,107,109,102,103,101,98,71,106,110,109,102,110,110,89,112,103,98,96,107,107,92,110,98,99,100,96,99,97,102,97,126,106,100,105,95,96,102,99,103,93,99,94,105,103,93,102,101,108,102,106,108,110,97,86,116,92,109,91,107,88,93,109,105,104,104,99,103,100,100,104,94,108,106,100,103,99,101,99,101,97,84,97,97,98,95,105,103,104,102,107,129,106,101,97,100,87,103,97,94,109,105,97,97,109,101,95,103,108,100,107,113,107,84,115,91,88,109,107,115,106,86,109,93,101,89,107,102,107,109,98,104,111,106,94,110,102,93,102,101,105,104,103,91,117,97,109,103,94,103,90,104,100,103,96,96,97,94,108,105,97,109,104,103,104,108,102,115,103,91,98,105,110,105,106,98,99,99,97,104,98,83,94,105,104,103,95,103,106,110,108,107,109,119,118,110,89,104,102,91,105,96,94,99,105,104,105,131,93,103,98,96,104,93,99,99,103,89,102,103,101,98,107,93,109,106,96,105,100,103,105,99,93,94,95,97,103,98,97,118,92,101,108,103,98,96,101,95,109,92,106,106,102,93,117,102,109,106,95,97,99,89,95,112,101,95,100,113,91,103,87,99,105,102,106,97,103,113,106,105,102,101,95,93,88,105,111,104,99,84,97,109,98,98,100,95,93,92,108,102,80,104,97,116,91,109,99,101,106,112,110,97,134,101,103,100,103,108,99,97,106,102,100,102,106,108,113,106,101,102,102,86,93,95,96,95,94,99,92,115,97,101,90,105,98,111,110,104,99,94,107,86,85,99,90,107,104,105,100,106,89,117,97,96,96,95,90,103,95,106,104,112,100,101,81,103,103,105,108,84,101,108,99,101,107,95,108,90,89,105,107,97,101,110,103,104,106,100,98,90,100,96,113,114,126,95,90,103,99,106,97,102,98,103,120,94,110,118,105,88,101,115,96,102,101,107,102,104,106,93,106,103,100,101,103,98,107,101,108,97,96,103,107,104,112,96,103,116,104,115,99,106,106,113,99,98,95,106,95,108,98,97,110,97,80,96,116,128,100,103,109,110,105,102,109,95,99,99,98,101,94,97,101,96,99,103,102,106,97,114,103,97,94,101,103,101,103,105,91,108,103,102,100,118,107,114,102,107,105,92,105,103,103,76,80,106,97,99,112,104,94,109,92,99,108,112,104,93,108,99,98,97,98,100,107,98,94,108,97,90,98,108,97,102,112,124,100,103,102,98,111,99,82,109,105,101,101,102,105,99,95,106,94,94,107,92,107,108,108,112,105,99,97,106,122,92,98,97,99,103,99,111,110,112,99,105,99,94,103,98,92,99,105,97,109,94,107,117,100,92,124,94,97,93,102,92,112,104,106,91,91,76,105,107,121,90,102,106,105,98,90,84,101,94,92,103,111,101,95,97,111,100,113,103,113,121,101,97,97,111,91,102,111,105,112,98,102,101,101,100,103,103,109,111,110,102,104,102,102,101,98,96,104,105,94,120,97,117,95,103,91,79,100,95,121,94,96,106,108,116,116,96,114,97,107,105,91,91,82,102,91,76,112,104,96,113,137,102,96,99,94,84,100,101,107,94,113,92,105,94,80,101,101,105,98,91,108,107,110,105,102,93,109,99,115,97,108,104,102,111,107,92,107,94,91,100,94,102,97,124,101,102,95,94,105,100,103,108,98,106,105,92,103,110,109,84,113,100,96,110,74,103,96,107,93,104,96,112,99,102,100,98,100,103,108,111,102,100,99,104,107,104,105,106,111,100,89,97,106,106,111,107,102,97,97,113,115,105,114,104,115,99,94,94,94,94,90,104,102,110,102,105,113,102,108,98,102,107,107,97,107,97,109,98,116,102,94,103,101,102,92,95,104,106,99,104,106,90,94,103,109,104,97,95,92,104,112,104,98,106,121,90,95,89,91,108,113,118,104,92,111,99,104,105,106,91,100,100,93,105,103,106,111,106,103,92,110,98,104,100,104,107,110,104,111,115,106,104,120,111,104,89,110,105,96,108,93,103,102,96,99,101,107,104,120,115,98,106,107,103,107,115,106,107,109,101,91,103,94,104,116,103,108,98,101,107,102,104,101,108,98,106,114,104,104,98,107,100,98,106,101,99,109,93,93,102,94,100,109,87,102,111,102,108,106,106,104,94,101,103,93,104,95,97,96,105,102,112,97,103,105,112,105,100,97,94,105,105,103,116,102,106,106,99,108,98,91,109,103,100,101,108,102,98,98,101,110,106,100,94,90,114,88,111,103,95,97,95,77,102,100,90,101,105,106,108,85,113,103,106,105,110,104,98,103,89,97,102,112,76,103,95,102,99,93,96,96,92,104,105,93,115,109,96,90,110,108,106,106,101,97,112,96,99,106,102,108,101,101,83,99,103,97,106,104,105,111,92,95,110,97,100,106,101,108,116,100,95,107,107,113,98,112,99,96,104,103,101,110,103,107,100,106,115,99,116,98,127,108,106,91,101,103,104,109,107,108,106,105,99,92,113,104,99,98,97,101,105,100,104,95,84,109,109,106,94,113,103,95,92,93,103,100,94,109,106,95,106,104,91,101,91,111,102,92,99,92,94,112,115,104,88,96,108,90,101,97,115,108,119,93,102,108,91,115,101,91,107,100,98,104,95,111,107,101,111,96,104,109,102,113,113,94,101,101,106,98,96,102,112,100,103,97,93,95,81,95,96,115,113,104,105,101,100,102,99,98,101,104,100,100,121,110,81,104,98,97,101,113,102,112,110,105,107,103,94,96,94,109,108,96,97,110,111,99,105,106,110,118,99,100,124,103,87,90,112,95,100,97,105,109,107,115,108,105,114,97,91,103,106,92,89,99,99,91,98,97,105,99,113,89,96,104,97,100,91,90,99,104,103,100,109,110,119,101,97,93,111,108,92,101,111,101,116,118,101,98,89,99,93,116,87,105,113,101,112,95,92,99,106,100,88,97,101,91,97,89,97,79,93,107,105,99,100,91,108,90,114,101,116,111,99,113,112,95,113,92,96,95,99,97,97,110,108,117,108,109,104,100,93,99,102,89,97,105,105,95,98,102,102,108,87,102,109,107,115,93,89,106,117,91,102,111,108,100,94,95,107,88,103,113,106,106,95,104,100,113,101,98,111,111,102,96,99,60,99,99,88,104,93,112,99,101,101,95,103,101,108,104,104,93,111,113,90,101,102,121,102,100,77,102,94,109,113,120,115,94,99,102,99,102,106,105,109,105,83,119,104,105,89,95,106,114,105,111,105,95,92,103,95,86,96,104,99,103,92,116,108,103,88,111,109,105,103,111,97,104,95,96,98,107,100,117,98,94,94,92,121,118, +673.56531,98,116,103,94,92,97,115,109,95,98,99,86,106,101,110,95,88,113,109,105,99,99,105,100,101,101,109,92,109,98,101,104,110,101,102,75,102,104,87,101,102,84,94,75,105,112,107,97,96,101,98,101,111,96,97,97,97,91,100,98,102,100,102,101,101,104,98,90,103,93,112,106,87,100,96,116,93,92,103,110,91,101,96,90,96,99,112,106,103,102,99,107,98,107,101,112,114,94,93,101,88,96,108,100,95,96,109,105,100,100,101,107,102,92,90,105,85,85,96,110,105,97,100,109,123,112,109,105,114,104,108,104,84,90,98,106,98,102,115,101,109,101,97,105,88,102,106,101,98,94,101,92,105,97,100,96,104,97,105,102,88,98,102,104,100,99,106,98,89,109,107,95,113,91,111,101,104,97,105,98,96,98,95,111,103,95,97,77,90,97,112,109,99,104,96,106,112,100,88,84,101,102,100,93,87,108,101,98,102,92,117,96,100,94,114,91,116,100,93,96,106,111,104,113,98,106,101,105,100,92,102,90,101,101,99,99,111,98,110,101,90,87,100,109,107,112,95,94,97,107,113,95,91,106,103,104,92,96,90,61,92,100,85,107,106,99,112,97,102,95,93,86,99,112,101,92,98,93,118,107,112,95,104,94,104,101,92,105,95,105,108,114,102,99,107,107,109,98,103,98,107,105,128,122,94,101,110,115,112,108,96,109,111,104,98,103,93,97,105,106,100,101,102,101,103,106,102,99,102,98,99,102,100,107,97,105,102,107,101,100,100,102,104,89,99,98,97,101,103,98,101,107,87,97,110,100,99,100,100,103,109,95,110,79,99,96,103,102,105,109,101,96,101,106,109,106,123,104,106,102,98,113,105,107,105,98,95,91,102,101,102,92,92,107,95,98,100,100,103,102,95,103,103,98,105,90,110,107,97,101,100,95,103,107,104,102,103,101,97,116,101,107,99,99,93,95,100,113,105,98,97,100,107,104,99,99,96,88,111,91,102,90,99,106,99,98,96,97,91,113,102,114,100,105,101,108,100,107,108,112,96,104,95,104,119,103,101,94,87,94,109,101,99,93,106,84,99,106,108,73,99,103,109,96,99,97,103,96,107,109,101,98,106,105,94,111,107,106,122,95,113,100,102,96,100,117,99,107,101,102,110,110,92,107,102,103,97,90,106,99,113,106,101,101,95,103,93,101,104,114,95,103,105,101,108,101,98,105,109,101,98,96,112,100,100,88,94,96,100,107,110,96,109,111,99,97,109,88,99,99,118,86,99,103,98,98,112,108,102,106,101,72,94,100,96,101,97,104,102,106,102,102,98,89,114,108,113,104,102,106,98,105,99,100,97,98,107,104,100,109,90,112,99,100,108,106,97,106,95,116,116,109,107,100,89,109,98,99,111,102,113,95,102,113,108,103,100,103,102,91,95,106,110,117,90,99,97,105,102,105,101,108,103,112,104,102,100,104,112,106,75,104,98,109,99,105,109,92,108,106,111,106,107,118,114,95,102,107,104,111,102,101,98,94,94,92,101,95,102,93,109,104,101,105,98,111,113,96,101,110,98,100,94,102,110,91,100,108,103,92,105,101,90,98,107,98,103,101,105,103,97,116,106,105,109,98,92,95,101,99,104,112,109,96,102,101,103,64,94,90,106,103,82,103,86,93,116,95,97,111,99,115,111,95,106,107,79,115,100,105,98,122,111,94,106,97,106,106,91,99,92,107,88,100,94,102,99,104,110,93,101,104,102,96,103,100,96,103,105,95,104,102,113,103,98,102,92,96,110,100,104,82,107,114,95,107,103,110,93,84,107,104,94,97,108,108,99,108,99,96,108,109,99,108,117,110,104,104,99,111,103,125,104,110,111,114,106,101,116,101,101,108,110,108,96,105,113,129,94,105,103,103,91,111,102,113,108,91,94,95,93,93,105,96,100,112,110,101,96,105,103,101,101,105,83,97,92,106,108,121,110,105,100,79,100,104,104,106,105,113,101,105,101,113,92,92,100,113,104,95,105,100,104,94,105,94,83,94,105,101,94,105,96,115,100,101,100,95,92,105,102,102,98,101,102,101,105,105,101,98,113,107,104,93,94,112,105,103,92,104,103,106,107,106,87,102,114,97,96,99,101,102,100,101,96,110,105,109,105,108,96,110,100,105,102,87,108,91,98,96,101,98,104,103,106,95,96,101,107,95,94,96,127,99,101,114,107,109,99,103,92,86,109,108,103,102,102,113,104,104,112,107,105,97,105,107,109,95,115,101,112,100,87,96,108,112,96,106,95,95,104,106,92,98,102,93,107,107,114,97,106,94,98,107,101,94,115,95,100,85,97,116,109,101,101,93,99,100,106,100,97,107,94,117,100,102,102,95,115,86,122,109,108,115,81,103,91,111,101,101,96,108,103,100,102,99,104,104,92,96,98,107,98,102,109,110,94,100,115,96,96,110,102,94,112,103,108,109,111,102,107,100,100,92,90,109,105,92,91,106,104,105,99,101,102,117,108,97,99,117,100,118,96,104,106,106,104,117,93,108,101,107,102,102,98,102,112,116,96,106,108,106,118,99,102,102,104,113,94,105,134,99,111,113,97,99,122,104,105,99,124,101,96,109,104,100,111,108,104,111,94,101,99,102,110,112,92,121,99,108,109,89,110,103,100,117,98,100,110,102,105,104,73,108,109,101,99,98,108,110,102,104,101,106,112,106,80,72,104,104,111,101,108,104,121,117,114,106,108,99,113,109,108,117,97,111,101,101,98,105,94,123,96,97,111,86,104,110,96,103,99,112,99,111,111,103,105,102,105,102,109,110,105,108,102,104,105,108,110,105,96,114,105,104,108,104,102,93,106,107,94,92,102,108,116,107,89,100,99,107,100,108,101,119,101,105,119,104,99,109,101,117,101,106,89,119,92,105,95,105,103,110,104,106,99,102,109,95,108,106,110,102,93,103,103,105,128,99,95,109,91,101,103,109,107,109,112,104,103,87,116,100,105,105,107,93,104,113,97,100,101,109,101,103,71,110,113,107,100,104,106,104,107,116,109,92,115,102,116,99,105,98,112,118,98,103,106,108,107,112,102,113,116,105,98,104,108,108,105,94,91,99,96,107,90,106,87,104,98,106,112,112,94,107,100,102,117,113,101,108,105,78,106,103,111,113,101,96,115,95,109,104,108,91,104,108,95,106,97,107,97,103,96,110,113,107,106,113,103,116,102,104,84,103,104,109,96,98,114,108,117,109,105,107,118,99,103,108,102,92,104,108,100,88,95,105,101,100,121,116,103,100,92,102,120,115,100,105,103,116,102,115,100,92,103,110,99,85,108,98,108,116,97,98,94,117,105,101,102,102,98,105,110,112,102,111,99,99,101,105,93,109,100,112,96,106,111,114,113,96,101,101,116,112,104,87,101,103,106,111,111,84,110,98,96,113,115,87,99,95,96,88,95,107,98,104,114,102,104,103,98,104,104,99,104,95,96,102,103,111,113,99,107,100,98,109,117,108,85,100,102,110,98,107,104,98,103,108,117,100,97,116,102,113,111,108,109,96,96,118,111,94,117,98,102,108,104,99,101,96,119,107,97,105,92,111,100,99,121,99,100,96,89,109,103,98,120,103,96,101,122,113,103,119,111,102,102,111,86,106,108,107,104,99,103,94,75,90,102,98,91,99,102,121,116,96,101,101,120,110,109,100,96,95,105,99,102,105,101,96,101,120,95,97,101,102,103,117,102,92,92,96,85,91,98,98,112,91,100,86,98,92,96,109,96,116,104,90,114,108,88,96,93,109,100,104,100,105,103,97,97,95,112,98,112,121,90,110,95,114,101,111,102,103,96,117,115,110,95,107,97,101,100,105,102,100,101,97,103,89,103,97,96,101,105,101,111,104,113,102,101,99,106,111,91,99,107,120,111,99,105,104,116,109,95,101,102,110,118,100,104,110,102,104,100,110,113,108,103,103,98,106,95,95,97,93,108,104,106,99,105,101,75,108,115,96,96,85,103,114,114,98,112,102,102,112,106,100,104,99,107,115,103,110,100,111,98,117,110,105,95,98,112,91,95,109,98,76,103,93,108,108,109,97,101,90,103,113,101,102,104,88,114,115,109,116,109,103,98,98,111,83,111,90,100,103,96,105,109,116,101,105,98,98,109,103,113,99,111,109,110,97,99,111,95,92,100,93,108,93,109,117,103,87,110,98,107,107,103,103,104,100,110,92,100,105,104,112,108,98,96,96,117,109,125,95,87,106,115,96,113,108,121,108,89,113,91,110,97,111,96,104,88,128,109,101,105,97,105,107,102,106,108,101,100,111,106,102,114,108,99,104,103,103,112,108,100,99,101,108,91,108,121,113,105,108,107,108,98,104,107,107,98,104,121,111,113,108,96,101,102,91,107,101,108,107,109,101,117,108,98,99,106,97,95,100,94,117,100,110,95,105,109,99,109,103,109,98,104,86,104,100,105,100,99,96,97,105,110,95,99,93,92,109,98,106,67,101,92,96,102,98,87,113,108,84,97,93,96,106,111,106,95,110,97,112,111,104,102,96,117,113,107,100,119,103,110,109,99,103,100,93,108,101,105,118,109,108,103,102,107,110,105,106,95,95,109,101,99,103,108,103,106,91,102,107,115,113,108,97,108,99,89,113,110,98,106,117,98,109,96,104,108,104,106,104,121,114,101,77,92,108,109,100,113,96,98,96,112,97,96,92,101,101,100,123,75,97,109,100,107,90,112,96,101,103,90,118,118,108,108,108,97,119,107,101,103,96,115,100,102,102,111,93,109,101,106,111,97,96,110,92,96,109,98,105,115,98,95,105,113,126,100,110,99,99,80,112,114,85,112,116,104,113,88,100,100,114,96,94,112,121,109,97,96,101,101,102,107,126, +673.70654,105,101,121,100,100,126,115,82,101,99,87,92,99,92,108,91,90,104,107,114,84,112,120,127,105,106,96,97,101,107,99,112,103,100,97,87,102,102,105,101,106,97,97,100,103,112,97,101,92,112,93,94,94,113,95,102,92,88,91,80,104,105,98,78,104,110,84,102,93,105,101,96,101,110,105,94,94,114,109,111,97,109,92,97,101,109,96,111,104,100,94,105,101,96,97,96,104,80,110,102,76,98,101,94,111,90,111,108,93,105,113,111,110,103,105,88,90,105,109,98,91,121,99,103,101,109,118,98,105,91,99,102,109,110,96,119,131,100,91,99,101,106,105,95,110,98,99,103,101,93,103,99,101,95,89,96,90,104,108,112,92,99,111,104,100,104,95,100,106,86,117,104,108,112,102,91,99,101,104,113,110,104,99,114,97,101,106,101,112,88,99,116,94,97,107,100,114,112,100,103,91,100,99,104,103,116,104,109,102,118,100,101,111,102,101,103,106,109,96,100,107,117,98,91,112,110,94,109,102,90,115,106,97,102,95,99,91,104,113,107,108,103,103,100,86,96,105,113,105,95,87,117,109,106,68,104,98,97,99,97,98,96,102,110,97,114,113,101,107,102,101,105,108,94,116,98,99,98,109,102,104,117,101,91,112,101,87,94,110,100,104,109,105,109,108,82,91,106,107,100,68,103,106,116,99,106,103,111,110,110,104,110,118,121,106,95,99,113,107,104,125,104,103,113,98,124,102,100,98,105,108,101,105,92,94,98,99,98,101,104,114,105,98,100,96,93,109,101,108,92,107,102,103,98,109,107,105,113,97,107,95,96,110,103,98,107,103,103,97,106,109,101,112,111,106,99,105,99,112,102,107,113,99,108,97,99,100,96,112,104,100,89,102,97,72,104,90,92,100,110,102,98,94,84,97,93,102,97,102,99,97,100,103,72,105,84,99,87,95,95,86,96,103,107,95,90,96,94,80,108,91,94,97,84,106,109,122,101,100,101,92,104,86,110,108,99,107,90,104,95,96,93,100,108,98,101,103,103,113,100,96,100,107,102,104,109,110,97,105,106,105,114,101,100,98,105,108,103,101,103,118,117,112,115,96,97,112,105,101,98,99,100,94,109,93,105,100,112,107,106,113,101,100,110,117,102,88,95,107,99,109,105,106,102,102,109,96,104,105,97,94,99,105,91,106,111,96,99,101,113,103,96,98,109,121,101,95,101,106,102,99,100,99,102,94,113,105,122,105,103,98,99,111,101,100,108,111,115,84,122,109,96,102,112,91,92,97,107,96,102,102,94,103,100,96,101,95,81,93,104,105,105,94,103,109,100,89,116,92,116,104,98,98,99,98,103,98,90,82,105,100,90,104,112,98,103,105,107,104,102,109,88,102,107,99,107,103,102,103,97,98,99,104,97,112,117,107,105,104,109,103,101,98,100,96,109,97,105,114,96,109,109,102,85,105,97,122,96,105,100,102,110,105,94,91,107,108,96,99,99,117,96,100,105,97,104,109,100,100,100,107,104,109,103,106,104,69,98,111,101,103,109,103,94,102,98,100,120,100,95,98,90,100,102,110,102,111,101,106,101,98,110,103,108,96,106,113,104,107,103,104,103,104,96,95,101,100,102,103,105,93,106,107,102,91,107,95,98,108,99,104,107,105,91,94,108,102,102,104,104,95,108,119,100,109,101,106,101,99,101,111,100,98,124,100,121,101,98,81,86,94,110,82,95,98,96,100,101,103,87,106,96,113,114,90,105,105,125,106,109,113,115,107,106,113,101,97,103,109,104,103,114,113,97,102,99,110,102,89,111,105,112,110,106,95,99,104,108,106,100,106,102,94,110,101,100,99,100,90,73,92,111,95,101,109,109,108,105,111,103,104,106,114,118,108,101,90,99,95,109,112,100,108,105,113,111,113,101,104,111,110,107,108,107,99,89,98,100,104,94,103,107,95,85,97,102,98,100,104,104,109,90,97,113,100,111,108,80,116,105,102,100,112,103,116,100,92,108,106,95,107,106,100,103,121,95,93,112,83,108,98,114,103,101,95,121,91,96,106,100,108,112,116,110,102,105,102,97,99,102,98,107,109,96,108,105,98,108,99,104,111,104,100,103,79,102,96,109,85,100,106,109,95,105,103,115,99,95,91,117,100,98,106,100,106,106,112,90,96,104,111,102,107,106,113,105,99,97,113,99,98,92,108,101,104,109,95,96,95,106,109,111,100,98,95,93,91,103,99,106,95,89,101,126,92,96,105,112,104,95,105,106,104,94,105,92,95,94,91,113,95,105,100,92,124,105,126,100,98,103,105,111,110,105,119,97,99,80,101,107,109,115,97,96,107,97,91,104,104,105,94,103,98,92,101,87,118,109,99,107,102,84,92,88,96,96,100,101,102,106,104,119,107,109,97,104,102,99,101,97,83,104,101,97,98,95,98,98,102,118,95,117,95,68,112,100,99,94,98,88,92,103,98,109,92,82,104,92,119,101,102,102,103,103,99,101,96,99,102,87,133,107,109,104,106,102,108,110,104,101,104,112,102,103,113,101,115,116,104,107,107,119,112,97,68,101,95,102,97,107,97,97,109,104,89,96,117,110,112,106,104,106,108,121,96,102,104,101,124,104,107,91,103,102,102,106,97,93,106,95,101,115,94,107,102,118,99,112,120,89,95,101,98,109,99,109,112,100,104,95,111,95,107,102,114,99,111,93,107,87,99,109,97,100,87,102,119,103,94,103,100,99,99,106,106,101,104,108,108,97,102,104,98,112,121,110,105,113,111,87,98,114,105,102,108,102,109,104,104,99,102,110,91,100,110,97,111,103,104,111,103,98,101,111,102,97,106,117,101,106,99,106,94,107,113,102,94,113,113,113,99,107,109,108,120,101,111,104,109,107,102,99,81,104,102,102,102,106,109,107,109,118,99,99,117,108,99,105,99,108,107,113,102,111,112,104,102,106,111,101,107,95,106,115,98,103,112,113,108,102,106,97,117,94,69,101,108,114,100,103,88,101,104,102,115,107,110,102,99,102,99,101,92,93,105,99,100,94,113,111,102,113,109,93,88,104,100,104,101,102,105,109,108,107,107,108,117,101,110,96,102,96,94,93,95,100,102,101,105,106,108,94,104,97,111,105,108,110,99,85,93,106,102,111,103,96,102,98,100,98,106,100,105,104,104,105,110,95,105,104,109,110,101,109,105,113,117,105,105,113,109,106,99,118,99,107,104,98,112,93,118,101,106,102,98,96,90,106,106,102,113,100,98,107,102,99,104,116,101,102,121,109,101,102,116,117,104,76,111,98,108,107,92,113,97,105,109,98,99,113,92,100,97,95,108,109,109,107,109,107,99,106,114,107,106,108,107,113,108,104,113,97,65,119,100,108,103,106,103,106,99,113,115,76,109,106,110,98,92,103,101,107,103,90,103,109,100,104,112,107,103,108,92,103,102,104,92,106,82,101,105,105,111,116,108,115,98,109,98,112,115,115,103,107,107,99,106,103,108,90,105,104,113,106,107,104,100,98,99,115,109,103,112,101,107,121,105,103,108,107,120,101,108,110,112,110,107,97,101,95,92,95,84,105,98,115,106,101,99,102,94,107,103,102,107,89,106,96,113,105,108,119,105,102,89,96,108,105,110,96,98,109,93,100,96,105,101,110,84,106,108,114,110,99,104,97,133,101,106,100,113,101,115,111,102,110,96,95,102,98,104,104,109,92,98,100,114,100,104,101,115,95,94,104,107,105,98,108,100,102,100,97,96,100,100,101,97,88,96,116,112,101,83,102,98,112,106,108,101,91,108,105,97,86,105,98,102,106,92,109,95,102,103,110,90,99,100,94,97,104,103,107,97,105,105,109,104,101,99,103,109,104,97,70,104,100,113,99,93,103,112,110,113,107,99,97,102,106,115,103,117,69,98,107,111,96,103,110,110,111,111,111,100,102,114,90,110,110,96,103,117,93,97,102,107,85,99,93,102,119,107,92,106,100,114,94,95,100,103,99,97,119,116,100,103,96,114,103,99,102,105,96,95,78,110,111,98,98,103,96,108,99,100,117,109,105,109,101,104,98,100,107,117,102,113,110,104,110,110,124,112,93,105,105,104,100,110,102,100,123,100,93,100,111,108,99,100,112,109,107,104,96,108,88,107,103,104,109,116,90,104,91,96,103,107,104,105,109,117,101,99,102,104,104,107,107,105,104,89,112,102,97,111,105,103,113,109,91,100,101,78,97,108,102,99,95,90,112,111,92,95,104,115,107,111,111,98,108,99,99,96,102,102,109,108,105,100,96,96,115,96,85,98,114,104,103,102,103,103,122,107,98,114,102,111,108,102,104,107,114,120,112,106,109,103,117,111,107,109,89,104,95,117,108,106,106,107,98,113,102,106,92,105,103,96,122,107,106,89,97,101,112,99,109,120,102,96,99,98,110,113,105,111,106,100,100,91,112,110,95,110,100,93,101,106,103,96,100,109,98,105,112,117,102,108,105,107,101,105,101,110,98,136,107,101,98,102,104,110,107,100,96,101,94,91,96,95,102,109,99,101,90,101,115,110,102,93,107,104,91,106,100,109,106,106,101,115,91,113,102,100,106,105,109,106,115,108,113,103,103,107,106,97,106,85,83,126,102,109,90,101,102,103,95,69,104,108,78,105,106,113,101,108,118,105,106,111,100,106,97,117,106,111,105,102,107,104,107,103,101,109,103,99,102,101,87,88,104,110,102,106,100,103,122,98,107,104,122,88,98,100,105,99,105,95,116,101,95,108,101,100,107,102,97,114,105,103,103,109,112,104,93,93,97,109,103,106,114,102,98,108,114,92,98,109,109,118,109,97,111,99,108,105,108,93,114,108,87,106,98,113,104,103,104,87,106,88,102,102,105, +673.84778,101,86,99,98,100,96,102,93,102,105,96,87,103,111,97,112,100,94,97,89,87,97,102,95,119,111,104,106,95,108,100,92,116,103,94,94,120,106,106,102,73,95,100,83,104,104,93,102,101,121,99,97,98,112,87,91,99,101,102,99,110,97,101,84,79,125,87,108,100,91,99,103,104,98,90,101,86,97,91,114,100,95,100,98,105,93,116,114,91,104,91,111,96,97,103,96,109,94,83,84,98,105,100,105,103,95,101,95,98,92,99,101,102,101,98,103,98,75,101,84,104,96,92,107,112,96,105,95,99,95,98,97,116,109,102,110,93,105,97,95,93,100,92,98,96,103,109,104,111,103,102,83,95,77,107,91,106,104,103,105,101,100,97,100,113,104,109,92,105,120,104,108,102,107,96,91,99,95,103,98,104,111,102,102,106,111,106,93,105,94,95,113,95,100,94,95,102,107,82,98,113,89,101,100,105,105,104,106,110,112,98,102,96,103,105,106,95,94,118,110,91,112,108,97,102,102,109,105,104,91,100,103,100,95,106,68,122,107,99,92,109,100,97,93,103,95,99,103,70,109,107,108,102,98,109,115,103,102,110,98,113,99,65,100,104,99,104,93,100,103,103,98,97,99,97,102,94,105,94,115,99,103,100,110,109,109,116,114,98,108,92,82,95,90,113,104,104,93,106,96,107,100,102,103,95,104,107,108,104,115,91,94,116,95,101,102,111,100,101,91,99,98,108,92,102,91,98,99,106,101,101,100,94,114,105,94,95,103,103,97,93,108,90,92,117,100,102,104,104,104,106,88,103,81,110,101,105,100,106,132,98,95,93,92,98,97,97,98,96,99,108,99,107,112,103,91,96,105,95,106,99,106,93,99,98,100,117,96,115,99,109,93,73,107,98,87,84,95,108,106,117,105,85,98,104,91,94,94,101,101,98,92,104,109,100,93,100,115,102,88,100,111,92,108,96,103,103,98,92,100,104,129,103,99,94,106,95,78,102,98,95,94,97,96,93,106,101,102,110,96,97,93,106,100,96,99,98,95,112,67,91,103,112,104,108,106,110,102,109,100,97,116,104,101,98,99,94,109,95,109,99,103,100,103,108,87,99,96,95,85,101,109,103,109,86,94,100,99,95,99,107,95,95,98,104,98,99,96,99,96,103,103,104,110,99,90,104,95,99,88,85,100,108,101,96,99,98,105,86,100,100,97,96,105,90,101,100,118,99,103,95,104,102,109,95,94,106,74,100,107,107,113,86,101,90,106,106,108,102,97,105,114,91,96,106,93,97,115,97,90,97,101,110,110,109,97,97,99,94,106,93,101,106,90,107,82,95,105,109,91,110,98,103,102,100,108,91,100,93,95,101,105,110,90,95,104,100,107,95,102,121,104,99,118,101,97,103,95,100,101,95,110,106,117,112,97,109,91,91,96,96,96,94,103,104,98,98,112,97,99,105,115,101,104,100,78,110,95,96,99,90,95,105,104,111,99,102,113,96,88,100,107,107,92,95,89,112,101,103,100,102,109,103,91,98,108,98,103,114,98,98,102,115,95,82,96,92,99,86,107,98,84,111,98,102,91,102,108,100,91,100,83,91,96,105,103,106,109,98,102,97,99,99,110,100,99,104,102,92,100,97,92,97,108,98,96,94,87,85,109,104,106,100,104,99,105,97,103,101,111,104,92,88,96,100,100,97,102,110,107,103,100,104,91,99,96,107,80,108,76,104,88,95,96,99,98,91,93,94,98,106,100,102,102,134,96,90,99,100,105,109,102,120,103,96,99,103,92,102,96,106,103,94,104,91,95,108,103,102,97,101,99,95,100,104,96,68,102,98,104,95,102,107,107,101,99,101,101,106,119,105,95,100,104,100,101,102,96,105,97,98,105,103,104,93,117,98,110,108,102,103,121,92,95,96,104,102,95,94,106,94,85,98,104,102,108,103,117,90,94,90,92,102,101,108,85,101,103,104,101,107,115,103,98,79,90,105,97,101,99,96,95,104,115,101,105,101,100,101,99,83,105,91,106,90,91,96,96,106,102,105,92,107,95,102,75,100,92,99,94,97,102,102,101,101,100,100,112,117,108,121,110,108,120,106,109,71,99,101,109,101,90,95,109,100,100,112,100,98,94,97,86,95,99,99,84,100,109,98,110,97,94,98,98,108,105,104,98,100,96,105,76,91,98,97,94,97,91,99,99,102,102,106,91,93,95,110,105,86,110,93,95,101,98,79,92,101,108,96,99,92,99,99,91,95,90,95,99,98,107,91,96,96,98,102,93,112,108,88,102,85,104,94,113,94,113,100,116,91,96,95,111,104,94,104,87,88,104,104,95,100,96,101,110,109,112,105,102,95,95,98,113,103,106,99,98,102,106,96,94,109,113,108,102,97,99,93,103,105,116,100,104,95,100,92,102,91,104,98,102,92,111,109,97,95,91,109,94,101,87,103,93,97,101,112,100,81,97,111,99,109,113,98,113,117,101,108,117,95,108,102,96,117,111,86,101,105,109,114,99,100,113,98,95,88,103,109,105,99,106,109,107,100,100,106,103,99,85,101,101,101,111,108,99,102,101,96,105,87,99,104,107,104,102,107,102,97,102,97,102,113,99,103,98,93,109,102,112,96,114,106,104,110,91,92,94,94,102,103,109,97,97,105,95,102,99,105,93,94,106,113,91,105,108,111,101,101,99,91,111,102,99,105,106,97,100,93,98,107,101,97,99,95,89,105,112,103,104,98,94,83,106,98,101,95,116,95,108,102,102,115,102,95,109,107,92,99,106,101,105,108,111,81,115,99,113,114,101,101,99,88,102,101,90,96,105,116,96,105,105,107,112,98,104,96,106,95,111,94,95,98,106,110,107,112,104,104,112,98,106,128,109,104,102,109,112,97,101,98,96,109,104,98,113,112,119,93,106,106,101,100,108,101,107,94,112,100,95,105,101,101,102,96,97,110,117,108,99,118,95,109,96,108,99,120,108,105,86,102,103,103,113,93,98,121,108,109,96,93,103,87,89,92,110,115,112,94,103,113,83,94,89,115,95,101,88,103,91,117,97,102,104,100,96,109,101,111,113,105,107,110,106,102,97,107,100,108,106,84,107,98,108,99,99,98,103,117,93,96,102,117,102,100,94,102,99,104,107,104,96,96,110,106,118,95,91,95,102,96,96,100,106,90,97,103,104,99,90,102,108,103,88,93,104,112,80,104,89,104,94,94,106,107,83,94,105,94,109,106,97,97,104,104,107,85,101,99,100,105,99,103,101,97,103,95,103,96,94,100,106,95,111,101,111,79,97,114,102,102,108,101,106,99,102,102,96,104,92,96,90,101,93,96,93,106,98,119,109,95,105,109,99,113,105,107,98,103,102,105,103,100,108,90,98,109,117,95,91,105,103,105,105,109,109,109,94,104,120,106,98,116,93,96,91,105,109,89,126,105,92,102,98,95,113,99,101,91,107,93,99,108,109,87,117,96,108,103,101,100,98,112,99,97,91,95,103,103,100,105,98,104,86,93,104,102,101,97,103,96,102,94,97,109,105,102,112,91,107,107,123,106,91,99,99,92,102,116,107,91,103,112,100,89,104,101,108,113,103,109,87,88,88,113,105,99,100,107,115,104,114,99,98,120,91,102,99,91,100,107,103,108,83,112,106,101,95,88,99,102,84,113,100,112,120,103,98,94,97,98,108,105,102,67,102,93,96,103,102,96,93,103,104,110,112,92,117,105,89,105,109,100,105,73,93,110,99,114,113,92,94,102,89,103,114,108,105,110,87,114,100,94,104,107,97,113,88,102,103,93,103,99,106,93,79,109,104,99,94,101,104,88,109,102,100,103,102,104,71,106,101,92,102,106,89,83,100,93,107,101,109,88,98,98,116,111,100,94,98,90,104,90,106,103,94,99,83,114,104,109,96,110,65,110,106,106,107,96,106,106,102,102,98,100,106,102,104,98,102,98,84,96,103,96,97,96,104,100,106,100,97,100,95,123,112,101,93,102,96,111,103,114,97,105,102,98,102,107,117,111,104,107,106,88,96,106,104,92,93,107,105,99,109,94,91,117,91,103,99,95,109,97,113,114,103,92,85,82,103,100,103,97,101,99,87,105,92,89,104,114,90,91,85,109,98,101,107,88,87,111,102,96,102,97,100,101,99,109,95,103,103,113,96,97,99,96,113,84,101,91,102,90,96,106,108,109,105,102,105,82,109,119,91,103,87,98,97,106,111,89,90,75,91,107,99,88,99,96,105,102,107,98,110,89,96,105,105,92,93,100,102,106,102,110,91,96,92,99,102,93,105,103,111,100,94,101,107,95,94,104,101,94,104,92,109,105,108,111,101,112,102,98,97,100,85,98,91,103,99,95,110,91,111,103,113,105,95,94,119,103,98,97,106,106,95,101,109,96,96,102,85,102,109,94,100,105,107,98,101,93,122,109,118,94,113,105,91,113,103,102,101,94,97,97,108,125,106,100,103,97,99,91,100,96,105,90,109,99,106,88,100,102,102,91,98,99,97,108,104,108,95,108,87,110,103,119,101,100,83,110,115,89,102,111,95,99,109,104,106,107,97,104,100,98,98,100,100,95,107,105,100,87,102,87,105,91,104,114,128,87,109,95,101,104,83,99,93,117,108,87,96,91,87,96,104,112,98,99,104,91,91,96,100,95,99,98,98,106,107,96,106,101,116,113,91,97,99,99,99,100,79,66,115,92,104,101,107,111,84,84,107,98,99,106,96,104,99,110,90,96,100,105,91,105,105,103,106,108,97,98,100,113,98,102,106,101,104,106,95,93,105,100,89,106,98,103,94,111,103,101,113,101,100,96,91,101,105,101,118,100,97,88,84,118,98,119,90,89,109,109,87,100,101,110,111,104,113,105,98,95,116, +673.98907,104,93,87,109,77,93,99,103,101,109,87,110,125,90,98,92,98,97,96,95,96,105,87,97,100,102,87,104,111,87,91,97,96,106,104,104,93,94,109,104,105,103,124,98,103,105,108,104,98,107,100,101,74,105,96,89,102,93,99,90,91,91,105,90,106,125,118,102,96,96,99,102,101,102,93,105,110,97,96,111,108,92,101,101,95,96,95,99,106,95,105,104,104,106,100,101,106,109,89,106,87,101,80,97,96,97,101,102,104,101,111,100,106,101,80,98,91,96,105,106,111,113,104,100,112,107,86,91,103,105,89,107,112,110,103,97,101,99,100,101,96,114,103,115,102,97,109,91,131,91,96,97,107,101,115,102,103,109,98,94,103,103,108,101,110,99,104,105,107,98,103,97,95,106,102,100,73,84,106,88,98,110,100,102,109,100,102,96,98,102,100,87,91,101,99,98,106,94,98,100,100,102,109,95,96,105,87,101,86,102,93,89,104,103,100,100,93,103,95,99,104,97,94,97,95,82,87,107,102,103,104,101,100,101,100,96,95,94,100,96,94,108,97,99,86,102,112,109,107,93,88,97,92,94,106,94,101,80,108,96,81,106,98,118,101,101,95,80,100,99,75,93,106,103,111,106,104,99,100,105,106,100,93,88,107,96,88,110,98,105,93,108,100,108,114,110,100,110,99,115,106,103,98,110,101,98,104,100,98,106,94,102,106,97,99,108,100,97,97,99,100,97,96,109,98,90,110,90,106,115,98,67,109,103,106,98,105,101,95,110,105,112,90,95,109,100,109,117,107,114,107,98,105,113,77,105,107,100,96,92,95,94,95,107,106,101,97,107,100,102,108,107,105,108,109,101,100,91,94,118,100,116,101,110,100,91,102,77,106,102,94,79,99,88,99,90,83,102,101,106,103,105,95,97,96,96,118,96,111,100,97,99,104,109,96,106,79,100,111,99,102,90,88,100,99,95,98,106,91,102,84,103,100,90,110,101,87,113,101,97,102,91,101,110,98,96,96,102,97,100,98,100,91,115,110,99,103,96,105,98,114,94,97,114,103,101,94,105,109,90,105,106,121,102,109,96,93,96,100,105,89,104,101,97,93,92,102,104,95,93,103,110,94,109,89,105,93,94,105,91,104,103,102,102,108,102,98,103,105,89,107,100,94,106,85,109,89,99,99,97,93,96,105,92,102,104,115,99,108,96,96,110,110,100,113,100,95,97,75,103,100,87,100,91,99,113,104,102,89,104,111,105,100,107,91,107,99,100,95,94,99,85,91,105,104,103,107,87,114,94,89,97,95,107,106,100,93,100,92,99,99,100,98,104,108,97,103,98,106,95,95,101,113,95,106,100,99,94,99,95,94,99,109,101,103,108,96,93,98,82,117,101,99,104,104,101,93,90,108,100,101,95,105,97,118,87,95,108,102,105,99,97,106,102,106,108,109,101,121,106,103,124,95,101,100,92,110,106,97,106,83,97,105,98,115,97,113,102,80,104,116,102,90,80,104,79,100,114,106,105,108,94,99,80,82,103,99,99,108,100,101,88,96,103,102,106,109,95,95,101,102,94,82,110,102,109,99,108,98,101,110,87,97,101,90,99,108,98,88,95,110,93,114,102,92,92,83,102,99,101,104,98,109,102,85,99,96,87,102,101,99,92,108,91,91,98,98,87,110,102,111,97,96,97,105,101,107,101,92,100,108,91,95,98,78,103,87,90,96,98,90,114,95,108,95,97,90,100,91,99,102,105,109,86,94,76,107,96,94,92,104,100,103,101,97,112,104,99,97,91,91,93,101,97,95,108,107,97,100,111,99,102,97,114,99,107,103,93,110,106,89,94,107,101,107,87,97,106,94,103,102,101,100,109,101,96,105,101,100,92,105,97,105,98,102,112,90,107,99,101,102,94,97,100,100,96,96,95,101,96,102,100,97,108,95,93,97,106,87,98,99,103,107,103,101,99,95,94,109,95,111,99,112,101,95,100,98,110,94,101,90,102,102,105,98,106,98,103,101,107,104,113,102,104,101,93,109,99,87,105,101,102,117,92,95,99,100,97,85,105,94,109,111,101,95,101,98,105,101,94,94,108,105,109,107,95,102,94,97,94,92,97,101,101,91,106,99,100,99,109,99,96,101,112,92,103,100,105,103,93,102,101,90,101,111,105,91,106,115,121,112,94,105,106,111,88,104,100,93,113,82,105,103,103,94,99,95,86,100,94,103,95,110,90,92,104,97,112,100,100,100,98,92,111,94,93,101,98,89,108,103,86,107,90,117,102,84,90,100,100,96,104,103,87,93,101,98,97,99,95,99,100,106,96,107,100,107,105,102,100,104,105,92,101,85,89,87,109,98,91,102,125,101,97,95,92,98,96,91,112,103,98,101,94,102,98,86,99,111,106,97,108,100,97,97,107,99,103,113,105,104,106,99,104,97,100,87,90,99,111,93,98,87,113,95,72,104,104,106,120,98,104,102,98,104,113,91,112,95,103,98,113,115,108,100,112,109,116,99,99,98,104,104,110,105,94,84,126,105,93,107,107,102,112,93,103,106,100,105,100,102,106,104,99,95,99,108,94,96,109,100,104,93,99,95,101,98,106,111,88,113,102,114,98,106,109,105,104,108,105,100,85,97,94,105,110,100,104,114,104,104,98,97,93,110,87,104,99,101,103,97,97,91,100,92,105,99,106,129,107,94,104,108,99,99,107,90,80,89,92,105,100,104,106,99,106,117,104,94,85,101,112,103,94,110,104,111,76,99,100,95,105,76,107,105,100,100,109,108,110,102,104,96,107,106,117,81,94,79,96,107,84,96,95,92,89,113,100,98,102,112,110,108,102,92,104,103,102,96,110,116,86,109,112,108,95,106,109,98,101,108,77,106,99,111,93,109,98,102,117,103,95,94,103,114,99,91,98,116,108,93,104,105,111,78,111,99,93,104,98,97,110,102,108,99,94,90,113,112,135,96,104,102,94,98,105,95,101,114,101,107,107,96,106,96,100,106,99,106,100,101,96,102,91,110,105,100,98,99,107,108,104,105,99,100,108,102,94,105,101,113,121,93,106,101,98,110,110,80,99,101,109,99,116,92,99,112,80,94,93,107,98,108,112,104,99,95,108,105,102,91,98,94,96,113,102,100,107,92,91,95,91,109,102,116,110,80,105,116,90,99,99,101,98,107,112,100,100,100,96,97,92,77,100,108,101,101,100,96,102,100,103,104,103,100,101,107,91,110,107,111,124,94,99,102,102,108,110,107,98,109,102,95,105,98,92,98,108,116,91,91,105,105,97,100,109,110,99,100,98,102,113,105,100,106,97,98,97,115,97,112,125,95,103,79,112,101,105,100,108,92,107,92,112,95,91,112,96,102,98,100,108,102,98,94,115,97,86,100,96,100,112,97,107,101,86,106,95,93,100,93,93,101,91,124,94,93,99,98,104,116,111,112,92,95,103,105,94,115,85,115,104,105,99,110,113,106,105,95,102,101,102,92,105,101,105,100,104,106,97,97,87,81,95,104,91,90,113,104,103,93,112,99,108,96,105,100,108,87,109,97,100,99,103,91,99,98,95,93,92,102,104,97,97,105,105,107,108,103,98,90,85,100,95,101,100,107,106,100,100,102,101,112,95,100,98,107,92,100,106,103,108,104,109,90,93,101,96,109,101,103,115,106,107,102,108,102,99,99,102,104,89,113,113,105,98,98,97,94,110,107,102,89,94,94,110,73,97,91,104,101,96,95,98,98,89,102,106,95,103,114,108,98,102,93,104,96,94,105,103,99,97,94,99,106,118,99,115,99,104,98,104,103,93,109,98,102,99,106,102,95,98,104,95,108,103,97,93,100,94,101,90,108,93,78,129,99,116,101,96,82,103,103,91,95,95,105,112,103,109,107,102,101,104,100,100,91,98,105,100,108,92,90,104,104,104,93,98,103,94,100,100,91,106,91,112,110,113,110,104,90,114,89,103,100,95,103,96,110,106,97,110,98,113,99,104,96,99,116,101,104,101,87,109,113,94,111,88,101,102,102,113,104,101,94,109,93,95,107,109,117,107,99,93,93,112,93,101,84,97,102,100,91,99,109,103,125,99,95,97,99,103,117,105,103,110,99,94,98,95,90,100,98,96,91,104,102,100,109,104,110,101,96,105,100,109,79,97,108,93,95,101,105,104,112,113,97,108,101,93,120,94,94,99,101,108,108,99,99,87,98,104,105,101,108,100,101,96,113,84,103,96,95,97,93,95,113,91,101,98,95,109,90,89,98,97,108,96,88,92,102,118,98,108,100,101,110,109,105,108,106,94,102,111,109,104,95,104,113,108,105,98,100,106,116,102,103,95,90,103,97,88,96,116,93,100,104,93,108,84,125,100,99,107,106,99,115,98,113,98,95,102,104,108,102,116,84,102,102,118,101,113,108,105,103,95,106,61,95,118,105,105,96,103,110,106,96,103,103,118,91,105,103,126,113,89,101,125,94,103,100,96,90,98,102,112,103,93,105,89,80,109,104,105,96,95,94,102,103,105,98,102,93,113,100,98,92,95,100,105,73,109,99,106,107,106,96,105,94,100,98,91,104,94,94,127,87,73,100,102,113,121,96,101,95,101,106,104,78,80,97,95,104,87,98,102,100,99,104,94,89,94,97,93,105,95,94,85,103,87,113,101,106,107,109,110,98,102,91,87,105,106,97,97,114,97,102,105,108,101,101,109,97,114,103,80,96,105,91,105,98,102,104,104,86,101,98,108,131,98,94,109,111,98,111,99,131,88,95,92,98,94,91,107,91,73,90,109,96,95,107,108,92,72,100,109,105,102,99,101,114,96,98,110,97,97,92,101,122,105,103,114,108,96,100,100,106,111,107,99,109,102,113,106,110,102,109,113,105,103, +674.13031,91,106,91,103,87,98,98,98,115,100,101,105,98,95,92,87,89,121,111,106,103,86,101,107,88,101,98,108,101,120,100,109,96,98,114,105,100,96,105,98,100,102,103,108,104,97,89,109,95,80,109,98,89,101,90,88,101,101,113,98,106,108,99,97,98,104,96,90,113,93,91,99,99,101,89,102,134,105,95,106,109,97,101,108,91,105,107,104,107,92,108,100,82,109,89,85,97,94,97,100,99,103,108,107,102,108,96,113,98,95,98,103,109,98,107,107,94,102,102,93,99,97,108,99,96,119,106,102,103,110,101,112,101,102,95,96,95,102,116,105,104,106,94,105,100,94,100,93,103,97,93,91,101,98,98,100,90,92,100,114,78,105,93,100,108,82,99,112,108,96,98,96,109,105,110,101,118,92,109,98,106,111,109,94,96,100,99,95,103,96,104,107,110,109,99,103,109,116,96,101,97,99,103,113,99,93,85,95,108,103,97,99,94,105,102,100,111,122,78,109,90,111,102,92,101,91,103,96,95,110,103,110,106,103,95,94,100,106,102,91,110,108,112,106,110,101,102,102,90,94,102,105,109,102,108,88,100,102,105,91,104,111,92,100,93,105,78,101,104,97,107,99,113,102,103,104,88,120,93,108,110,100,109,96,98,97,96,113,101,114,122,95,94,98,108,111,102,94,91,99,103,104,99,99,96,100,116,103,101,103,93,117,102,67,103,102,110,101,93,102,90,93,97,107,109,89,109,100,106,103,106,99,106,100,108,97,106,102,83,107,103,105,95,98,98,99,102,101,109,106,112,92,100,110,128,112,90,99,106,95,92,91,93,87,99,97,95,105,101,102,100,96,106,101,106,100,106,101,98,105,118,104,102,117,98,96,96,106,97,91,95,100,94,98,104,106,102,95,99,115,106,105,96,100,94,101,96,104,101,91,98,92,105,106,95,101,97,89,104,91,99,101,113,109,98,79,97,93,95,100,92,105,107,109,101,96,95,109,93,99,110,100,103,114,98,87,114,104,106,113,94,89,103,101,97,115,100,112,109,72,104,98,99,103,103,107,99,96,102,102,98,122,105,99,102,91,101,87,103,108,103,100,101,99,103,97,101,90,110,104,98,101,108,78,100,105,109,104,109,85,106,91,92,113,101,91,100,100,98,93,101,102,107,116,100,109,109,102,105,95,93,92,99,98,92,101,98,97,97,96,98,94,103,103,96,112,111,96,99,91,105,106,93,96,106,97,94,97,96,102,107,110,118,100,93,101,113,98,108,108,106,92,101,113,104,86,92,113,108,123,104,105,95,107,105,97,97,109,90,102,100,101,102,92,113,105,105,96,104,101,114,94,98,102,113,102,101,102,114,104,99,102,100,111,97,103,106,95,94,108,92,102,116,95,106,101,99,95,105,100,100,98,92,103,95,106,97,103,105,107,99,112,94,103,92,128,103,105,109,115,105,109,103,102,97,99,105,87,103,96,109,88,102,97,86,102,107,99,101,91,107,109,99,94,107,101,99,94,105,99,108,76,76,79,98,110,102,94,107,107,111,102,99,99,99,105,108,106,94,95,105,73,94,97,94,97,110,97,108,90,95,102,94,107,96,102,116,104,92,108,103,91,99,100,101,92,89,97,103,100,95,105,101,107,98,105,95,88,101,107,97,97,95,97,99,105,96,106,103,106,104,97,106,97,108,108,100,90,110,103,109,106,98,103,103,93,104,118,109,91,92,103,102,99,101,97,99,94,103,91,125,101,100,96,114,96,99,94,108,99,99,108,113,108,93,110,102,106,101,104,92,93,101,117,100,94,94,108,102,95,92,109,104,91,114,112,98,99,109,91,108,108,83,108,111,100,115,109,103,107,120,95,109,99,100,98,108,103,102,112,108,94,113,111,102,101,101,96,95,105,94,107,128,101,86,102,90,93,99,101,122,106,104,97,86,102,97,94,97,99,104,95,100,117,98,96,110,106,103,94,100,97,106,89,104,105,97,92,98,99,120,98,98,87,95,90,102,113,112,82,98,102,104,92,108,116,87,91,104,108,114,109,105,104,118,108,93,95,107,97,98,102,108,99,108,106,122,105,97,118,109,122,100,102,105,92,96,110,100,100,96,108,102,104,101,94,107,100,105,100,117,97,106,96,109,108,115,104,101,102,105,106,100,101,94,92,91,89,95,103,110,96,92,85,113,99,99,111,102,92,96,101,104,96,99,92,104,99,104,94,102,121,108,114,94,112,103,108,97,110,103,96,104,107,93,87,103,110,95,103,103,106,99,110,117,110,88,96,106,101,91,90,95,114,100,103,106,109,96,108,103,107,110,102,104,114,118,105,108,94,100,96,101,90,124,100,102,104,110,105,101,105,99,97,105,101,115,100,96,91,92,90,80,113,103,102,103,108,100,96,97,112,107,113,103,95,102,120,97,101,91,98,101,105,93,97,107,109,103,102,99,96,98,109,106,116,112,104,102,104,99,71,114,91,93,99,103,94,106,113,103,95,117,105,99,107,94,95,103,107,106,108,110,113,98,99,99,110,87,114,99,88,109,106,107,103,111,106,95,98,110,131,100,88,109,95,102,106,101,98,98,97,93,91,110,106,105,109,99,113,98,87,106,98,96,107,99,95,111,107,97,92,103,89,110,115,104,87,110,103,109,107,88,86,114,102,91,106,99,102,97,98,99,101,101,96,102,98,99,115,94,107,110,97,94,106,108,105,95,103,97,109,104,94,96,112,91,78,100,97,100,101,104,109,112,96,103,101,101,95,107,101,101,87,95,101,102,109,108,103,97,117,100,103,93,105,105,95,106,108,93,104,115,103,97,109,106,102,101,105,106,119,97,107,89,115,97,107,98,112,92,114,112,95,69,81,108,105,94,108,114,104,104,96,104,109,111,108,95,101,70,107,109,101,98,114,88,104,104,93,106,112,85,97,93,106,105,94,88,100,99,106,99,111,102,99,103,113,96,91,95,94,98,99,96,104,101,106,87,99,113,113,97,109,111,99,102,105,108,113,105,104,99,106,108,99,102,124,109,98,101,99,113,94,102,100,95,100,106,105,98,106,101,99,106,97,100,91,100,94,109,105,104,103,113,102,103,102,109,104,102,110,105,104,110,105,96,99,107,94,99,99,105,96,87,87,112,104,88,104,98,94,91,88,99,95,112,87,110,87,95,102,98,105,105,103,121,95,107,97,91,87,103,101,101,97,86,105,95,104,101,96,82,94,117,91,109,102,103,100,100,98,94,110,113,99,101,104,102,105,106,101,83,99,90,109,120,97,107,96,108,100,102,108,110,112,107,104,105,95,98,104,113,100,112,113,97,94,105,104,100,120,94,97,99,109,113,93,109,100,106,110,104,104,101,101,99,109,103,102,87,91,92,113,105,103,114,106,85,92,97,103,109,112,97,106,89,98,90,98,106,91,91,100,91,99,98,101,92,97,107,103,106,88,102,99,100,101,112,106,106,109,99,100,106,95,104,100,109,99,100,108,95,106,67,112,95,103,99,106,108,95,108,101,83,100,109,114,95,104,98,107,101,116,112,100,99,100,114,125,109,100,99,103,102,92,102,97,103,101,92,100,92,92,93,106,112,107,102,102,102,75,101,96,109,94,97,108,110,106,105,111,106,105,103,104,93,108,100,108,109,109,100,100,103,97,98,116,128,101,112,117,98,100,102,86,113,102,86,103,97,114,109,113,98,102,106,101,103,101,100,100,115,105,106,99,100,103,98,105,98,120,105,99,98,104,100,100,108,111,92,89,115,107,95,105,105,100,102,96,98,106,97,99,116,100,81,116,113,100,112,111,107,102,94,94,99,108,91,95,102,102,100,93,105,98,100,111,103,105,118,96,99,96,103,103,107,89,96,104,98,89,93,111,94,110,108,100,80,103,103,94,96,100,96,109,99,102,97,98,102,85,110,95,92,107,109,105,99,96,116,101,99,109,91,94,98,102,87,96,111,92,103,104,106,100,104,100,98,102,96,104,101,116,111,110,92,105,105,100,113,110,106,108,95,98,114,98,105,109,113,92,107,97,98,110,92,101,100,104,123,107,103,83,94,96,110,98,99,100,100,104,105,114,116,107,97,106,100,102,103,100,99,98,96,98,108,89,98,102,96,113,98,107,102,102,102,79,102,103,116,99,93,89,102,108,100,79,97,96,104,98,100,105,106,106,99,112,103,82,111,95,99,109,99,95,104,104,93,105,103,101,113,103,99,98,104,67,104,96,101,102,101,104,96,97,100,107,116,91,104,106,98,100,106,110,96,98,105,107,105,113,110,109,114,99,90,68,112,100,104,103,94,105,99,103,109,109,107,95,113,97,103,116,101,101,105,110,112,112,90,107,101,109,89,113,103,116,98,97,100,111,103,99,86,90,115,102,107,99,104,87,106,111,106,110,90,95,99,104,98,102,103,98,95,113,108,97,105,113,104,112,102,93,94,97,92,108,100,106,99,95,91,100,109,106,107,112,102,112,102,110,92,103,111,104,106,104,87,105,88,96,103,101,100,111,112,87,101,105,114,120,96,103,103,110,102,101,88,98,109,98,111,96,97,95,105,100,107,103,105,91,103,111,106,101,106,103,109,101,93,116,85,96,100,109,108,83,106,95,108,109,106,96,108,98,117,103,96,96,102,104,106,105,107,90,96,106,106,97,96,94,100,99,96,98,107,110,92,109,102,109,108,105,99,101,91,98,117,85,102,110,91,110,110,86,107,95,102,102,92,89,108,98,76,111,105,112,113,106,90,98,105,105,102,106,98,98,111,99,106,104,109,102,97,110,94,95,109,117,116,98,102,97,89,120,121,99,95,94,103,105,101,101,73,105,94,101,96,105,97,117,91,75,96,83,93,102,100,110,110,105,85,99,93,85,105,110,113,90, +674.27161,100,106,109,99,106,112,99,98,109,106,105,116,101,96,110,96,98,104,107,106,93,92,89,108,101,102,121,88,101,84,78,99,96,105,114,112,105,92,98,108,102,91,95,109,93,103,83,110,106,77,112,106,111,94,104,92,95,97,112,95,109,109,111,87,98,105,92,100,109,100,105,106,104,110,106,98,98,96,91,108,100,108,113,111,93,100,105,109,98,95,85,105,89,85,103,93,95,87,111,104,100,108,99,91,92,108,95,98,114,95,112,102,112,109,100,110,104,103,102,103,104,95,93,116,99,98,96,89,112,106,102,110,97,88,104,101,105,95,95,114,101,101,104,103,95,94,115,89,107,111,108,105,109,102,106,99,107,108,123,108,103,103,100,100,91,96,97,96,99,100,100,102,92,97,115,100,96,97,101,102,111,109,99,109,95,93,92,99,108,90,92,95,112,102,101,110,79,100,94,91,97,98,102,113,101,95,108,92,109,117,96,110,92,105,88,105,101,104,104,110,102,105,101,103,93,97,92,105,101,97,85,104,96,91,95,109,86,95,114,108,113,100,88,102,104,97,98,106,100,110,101,103,70,103,100,98,109,104,100,92,98,103,98,100,104,113,116,100,97,109,104,99,94,97,104,99,106,82,105,94,125,104,109,101,98,100,101,106,103,106,103,111,111,101,103,111,104,108,94,107,101,97,102,87,87,113,106,106,114,107,95,105,86,103,102,96,97,95,101,98,95,97,99,97,98,101,109,104,112,119,95,101,110,104,106,111,117,104,90,102,92,103,98,97,105,96,90,117,101,105,109,103,99,108,91,98,98,94,106,106,98,94,96,100,102,100,101,105,96,104,106,100,110,102,104,103,97,103,107,101,100,99,102,98,94,104,99,99,103,95,109,93,92,105,100,104,96,113,114,103,105,90,107,100,106,96,97,106,95,98,96,96,108,109,103,100,96,100,110,87,102,91,93,102,94,91,77,101,94,94,96,93,109,102,105,102,109,102,101,98,101,99,108,102,94,100,93,107,110,103,85,103,89,102,101,110,92,103,103,97,90,95,92,87,108,108,143,99,98,114,95,94,108,84,92,103,105,103,114,110,117,102,109,102,97,99,106,94,100,106,104,99,90,103,95,105,105,117,97,97,116,117,99,95,106,110,105,81,96,102,109,103,104,100,125,96,105,99,99,119,113,102,101,97,103,103,118,106,100,91,99,101,107,105,98,97,101,95,105,104,101,102,101,98,121,94,108,112,118,101,99,101,109,110,107,102,98,99,98,102,103,102,100,106,100,98,108,79,103,99,93,104,102,95,124,115,105,114,105,108,101,96,101,102,98,105,104,103,98,94,108,101,94,111,100,108,101,94,105,109,101,105,117,114,96,109,74,103,105,118,97,103,115,101,113,91,101,96,105,101,101,107,104,106,100,115,79,98,98,92,97,103,97,92,82,107,103,109,105,103,104,124,109,97,94,78,104,96,104,101,94,108,103,111,101,101,109,107,102,117,101,112,95,106,120,86,109,103,105,98,104,86,113,102,111,93,101,101,117,96,91,114,106,95,89,99,113,103,96,104,94,99,94,105,102,96,103,104,110,107,103,110,97,101,106,101,102,107,96,93,94,98,104,86,99,101,112,97,114,83,108,106,98,124,104,101,102,94,116,96,109,113,103,99,95,89,102,95,98,100,93,87,102,106,103,102,96,97,96,90,114,102,104,105,107,102,108,103,109,110,92,115,94,81,93,98,107,94,109,91,104,98,119,100,102,94,106,103,97,105,96,105,113,108,108,76,103,116,99,100,108,103,104,105,104,100,98,108,104,110,106,95,109,103,115,114,98,92,99,98,105,104,104,97,118,107,104,122,107,80,115,98,102,109,110,112,98,101,97,103,108,115,108,103,98,99,110,101,107,103,109,91,109,99,97,99,97,87,103,91,109,96,100,103,90,108,109,102,100,101,105,107,94,106,109,108,97,110,100,103,96,99,116,117,100,112,122,102,107,104,112,98,97,104,111,80,96,98,109,96,93,112,100,113,107,90,105,97,97,104,103,107,102,97,104,110,104,97,86,96,104,107,103,108,99,97,101,96,89,100,105,92,96,98,88,101,99,106,91,109,107,96,104,103,100,103,100,104,99,109,108,109,110,101,106,114,105,100,97,112,98,97,112,90,91,100,110,101,110,104,114,75,99,98,111,106,94,110,98,99,93,98,99,101,106,105,104,102,104,105,111,103,107,76,108,103,107,101,90,111,99,97,98,109,113,103,98,109,106,95,103,107,108,96,106,105,108,110,100,97,98,100,105,100,105,101,101,104,103,109,107,106,102,96,104,96,96,103,107,92,115,98,99,102,99,104,108,96,108,73,96,104,93,120,104,104,103,110,100,94,98,102,101,107,103,100,85,89,107,104,92,104,96,99,90,89,101,109,103,97,92,109,96,96,97,107,111,101,92,105,90,117,97,94,106,107,124,93,117,99,92,102,107,101,106,101,113,109,102,110,102,98,111,95,103,109,113,98,98,100,109,95,112,105,111,95,106,108,97,109,113,112,111,107,101,109,117,110,107,109,121,113,107,104,99,107,95,100,103,105,109,108,101,109,100,103,103,110,81,72,103,105,115,104,103,86,99,136,106,100,106,93,109,102,98,108,106,114,109,101,106,103,98,108,106,117,112,102,115,99,100,98,109,101,110,108,103,96,111,105,106,118,108,85,109,104,99,104,104,104,99,110,109,101,99,101,117,99,101,105,104,99,116,126,99,106,100,99,107,101,104,103,92,96,88,106,111,112,121,95,112,103,105,113,100,116,106,117,100,77,110,101,103,91,106,107,113,109,100,120,102,105,105,102,93,107,91,109,108,103,105,104,98,96,105,96,116,87,109,110,107,105,107,111,104,102,100,99,103,113,108,99,112,106,112,73,88,104,99,98,100,97,92,100,114,108,114,95,98,105,111,107,113,95,102,109,105,102,99,109,100,101,99,105,102,101,108,100,106,96,111,121,101,102,97,96,118,106,111,102,102,108,101,111,112,100,106,106,107,105,104,94,98,99,106,109,115,102,99,112,112,117,108,101,93,98,113,109,101,96,98,108,108,81,105,110,100,92,104,106,91,102,103,113,92,105,108,105,98,120,98,101,90,107,118,99,104,111,110,94,108,96,97,103,109,99,102,97,99,107,119,109,101,101,100,100,105,102,103,106,92,115,101,98,104,93,112,91,86,106,99,100,99,125,92,105,101,108,104,101,99,104,105,106,114,109,103,116,101,106,103,99,105,105,87,115,104,88,114,116,96,105,106,104,96,106,112,93,99,96,106,105,104,100,100,101,101,95,103,107,94,118,100,106,92,116,112,101,110,102,97,113,113,103,101,93,100,90,113,100,94,100,97,103,109,99,106,96,111,99,97,102,105,104,91,109,95,109,100,105,96,98,94,101,105,97,95,104,97,96,110,107,94,100,102,92,113,99,102,100,112,108,100,95,96,107,107,97,99,100,101,109,101,106,97,103,104,109,100,111,118,93,101,94,107,105,116,110,99,109,93,102,112,108,117,115,96,102,100,111,103,86,124,109,109,108,113,100,100,91,92,100,109,115,108,103,108,105,100,121,102,88,98,98,95,101,106,112,90,119,101,102,117,98,98,68,108,107,111,111,100,104,103,113,96,112,94,103,99,95,122,102,99,98,109,102,112,95,95,105,99,119,101,99,103,102,113,110,100,101,105,107,91,101,107,115,111,108,100,108,106,100,96,94,99,96,105,116,106,104,92,89,101,113,102,99,106,91,100,95,104,105,89,98,100,93,105,102,107,107,104,100,101,102,94,106,102,105,99,113,100,113,67,89,92,111,100,102,99,109,110,101,106,109,102,96,102,96,98,104,105,95,98,85,99,105,113,98,103,107,99,95,101,99,99,95,101,95,106,101,103,110,99,105,112,109,98,98,121,119,99,109,111,101,102,115,105,102,94,88,100,107,96,104,104,106,101,103,91,110,113,99,99,100,114,108,128,112,116,96,90,110,102,102,113,119,99,100,99,102,102,98,103,91,109,99,103,110,94,95,113,86,107,97,94,103,98,95,102,102,108,100,108,96,102,101,116,109,105,102,105,112,107,100,96,104,106,104,98,101,120,109,100,100,102,103,104,106,94,107,109,115,100,94,129,99,87,111,109,109,96,91,107,109,112,115,92,98,110,104,102,92,105,104,107,101,108,108,98,102,117,108,106,90,100,125,110,111,107,103,91,107,110,94,91,97,97,90,106,111,112,105,104,104,112,106,96,96,95,101,98,100,94,88,101,103,99,100,103,78,82,101,116,91,117,97,101,108,100,105,111,95,95,106,100,98,112,103,109,104,104,112,103,115,113,91,115,107,94,99,99,103,114,111,96,109,105,101,111,122,99,105,98,114,101,106,97,106,96,97,109,97,93,89,117,104,101,88,108,105,108,106,107,105,99,97,107,98,96,109,104,102,95,100,111,102,98,99,99,99,100,105,95,103,104,101,97,110,114,96,113,103,107,105,108,67,101,107,98,83,93,110,100,107,72,100,90,93,117,102,109,110,101,106,104,100,116,106,96,86,104,100,111,112,98,105,103,94,95,101,104,107,102,94,103,102,99,102,95,96,110,97,101,100,104,107,96,121,105,101,100,101,101,98,86,108,109,117,104,99,101,108,89,105,97,102,111,111,93,117,100,99,106,106,105,98,111,105,98,92,98,106,98,102,111,99,121,93,110,102,100,101,105,101,94,106,100,101,109,99,102,98,98,91,104,76,107,109,99,109,107,94,112,111,99,101,98,109,105,95,98,95,107,104,97,109,95,102,96,114,104,102,100,102,104,111,93,99,92,94,101,105,92,97,107,99,113,106,95,109,105,95,109,107,98,92,108,108,108,123, +674.41284,115,106,93,80,92,106,97,106,91,97,95,104,89,107,93,97,104,100,89,98,103,90,104,96,106,97,119,103,96,105,103,100,109,91,102,108,97,97,108,103,99,109,93,110,106,112,96,112,92,110,100,86,100,107,103,105,96,101,91,86,95,94,100,92,98,98,104,117,104,96,101,112,92,101,112,110,138,100,92,110,89,88,107,86,117,100,104,106,99,102,98,107,91,101,88,103,87,97,89,97,100,103,83,96,102,101,98,104,102,102,94,107,104,95,100,104,110,90,102,113,96,103,94,104,102,111,106,101,107,110,101,105,92,94,108,106,92,103,110,99,110,105,98,100,98,107,106,103,100,93,100,100,95,106,98,122,103,105,107,90,103,100,109,97,95,97,100,97,102,95,102,95,105,104,107,101,106,86,101,122,105,104,96,99,110,102,96,88,96,103,87,104,102,112,109,95,103,97,105,80,101,99,95,100,100,95,100,100,102,108,96,71,95,104,114,98,89,102,102,100,98,96,105,102,108,109,96,98,88,97,109,110,106,108,100,85,99,103,102,99,99,113,79,86,98,91,90,110,98,110,101,99,96,101,103,107,111,102,96,104,87,97,99,95,113,99,98,104,90,92,91,100,113,103,99,102,99,101,76,95,90,105,96,106,106,92,94,108,116,105,109,113,107,91,117,96,86,106,116,109,101,102,99,113,98,110,109,108,104,105,100,104,94,99,95,90,93,103,92,94,95,95,104,96,104,95,100,101,106,99,121,88,106,107,113,100,111,94,100,112,107,107,92,97,93,112,102,104,107,111,113,102,94,102,106,109,106,107,99,127,103,99,93,103,119,108,92,107,73,74,101,97,85,105,106,114,97,92,99,104,102,114,98,112,114,97,98,97,107,108,104,106,90,101,95,110,114,96,104,96,97,89,86,114,98,84,102,109,91,97,114,99,91,94,109,81,112,97,99,88,95,108,103,105,98,97,107,100,95,97,97,92,101,109,104,94,108,104,87,99,105,118,107,126,94,117,115,97,99,112,99,100,108,108,104,92,101,106,103,106,101,100,103,120,96,116,92,114,98,110,103,102,113,96,98,92,95,97,92,105,101,99,123,103,105,100,113,90,110,111,106,111,109,103,98,68,91,95,97,100,110,105,102,99,95,104,99,98,102,97,111,110,104,109,106,101,108,95,100,101,99,107,92,103,90,99,106,101,105,98,107,95,92,97,109,102,105,103,100,109,92,102,107,101,113,108,103,101,114,107,97,83,105,95,91,96,93,101,97,97,97,91,89,97,109,106,109,96,94,68,102,96,100,93,100,112,104,93,95,98,122,96,105,75,93,123,104,110,99,108,115,105,98,105,107,106,104,98,105,90,100,111,110,96,109,89,101,101,107,99,94,103,110,97,117,99,104,99,111,102,103,109,129,99,104,99,104,100,101,100,101,111,101,105,85,113,93,84,92,105,100,92,108,95,116,99,93,109,100,117,100,102,91,96,113,99,97,92,105,104,97,81,104,106,99,93,108,109,96,96,101,90,86,95,99,105,91,95,109,96,112,110,107,97,104,92,98,102,106,100,92,104,138,109,114,112,129,109,114,83,97,107,95,109,99,103,105,109,101,103,99,103,95,97,88,98,91,100,96,103,103,97,104,107,102,95,100,105,103,112,96,87,100,112,97,115,101,109,100,106,122,104,114,96,90,105,107,91,94,60,104,102,110,88,100,105,105,101,108,116,95,105,91,101,104,109,100,102,105,104,108,97,102,102,98,105,99,107,110,101,95,98,107,113,93,118,103,134,95,102,98,100,101,112,99,95,98,101,106,115,99,97,102,101,101,111,102,107,111,115,90,109,104,113,104,99,120,100,96,111,106,95,100,112,97,114,107,91,79,98,105,97,100,109,102,92,109,94,104,107,101,111,98,108,95,99,113,96,88,96,99,94,101,108,94,106,99,114,105,105,98,92,111,111,106,103,121,94,107,91,101,107,102,108,91,99,108,99,106,95,105,98,103,99,112,106,106,91,110,106,110,110,101,111,91,97,104,100,106,89,101,96,112,106,90,87,104,101,108,96,98,101,110,111,90,91,93,105,116,79,83,114,91,98,101,106,110,102,106,102,107,105,98,102,103,99,96,103,103,94,101,100,102,110,112,99,100,107,107,98,109,101,110,105,87,97,103,100,103,107,102,106,130,100,93,103,111,100,90,102,98,105,106,93,108,102,109,111,97,103,89,108,106,103,102,98,117,102,101,94,96,102,98,112,99,103,95,101,100,113,112,105,96,110,96,109,109,86,98,105,91,98,96,106,102,103,101,92,98,98,104,103,91,78,105,109,102,108,98,115,102,95,112,86,82,82,95,113,98,104,105,101,101,108,100,104,107,117,121,100,105,98,114,113,104,98,101,114,103,114,96,101,96,99,101,96,99,98,99,96,99,95,104,104,95,107,109,99,96,105,101,102,93,111,98,95,103,110,109,102,99,98,103,92,83,104,107,90,118,104,104,100,109,109,116,100,98,107,97,104,96,103,95,98,113,97,104,102,100,103,120,105,113,109,100,112,104,94,100,94,103,106,99,97,101,99,103,109,101,109,101,65,104,107,102,92,101,100,103,89,99,99,107,108,112,104,101,107,105,100,85,102,108,99,107,113,105,110,104,93,89,112,108,108,114,109,95,98,108,109,100,93,96,96,96,105,105,101,103,113,89,101,102,107,109,111,110,116,104,104,99,108,110,105,94,107,104,123,106,108,101,108,107,108,110,89,101,135,84,107,113,108,105,99,100,107,97,100,101,97,95,109,102,104,100,89,99,100,117,118,99,95,102,112,101,105,94,105,92,108,99,94,100,113,104,102,99,107,102,72,101,99,96,92,109,110,107,101,98,105,99,101,98,106,105,103,112,92,103,105,107,107,107,111,95,103,108,99,113,108,95,94,91,107,88,103,104,97,105,110,108,103,88,113,98,89,108,105,94,100,99,97,106,81,110,106,105,115,111,107,105,94,96,109,104,96,105,93,91,113,112,105,108,117,103,96,105,96,105,109,92,104,94,91,95,94,103,102,99,124,91,109,105,111,90,104,110,102,105,102,108,96,106,93,105,106,108,94,101,98,102,111,100,102,99,112,98,115,113,105,103,97,93,108,100,96,103,110,96,105,103,106,100,105,108,104,104,103,99,111,115,94,105,98,93,112,110,116,112,104,108,88,100,92,96,99,93,115,103,105,95,101,109,110,109,115,104,99,108,109,102,102,101,111,114,108,104,106,101,105,110,108,130,115,98,97,96,103,112,116,96,98,99,107,110,106,101,98,105,96,102,110,98,132,99,113,103,99,109,84,109,115,104,100,96,90,104,104,116,105,94,110,106,106,107,100,96,105,104,94,87,103,94,101,100,112,98,102,107,117,101,100,116,103,100,98,110,105,110,109,102,98,88,106,95,109,103,112,101,99,100,112,113,93,113,103,111,95,106,99,106,108,104,105,90,111,106,113,97,96,102,103,96,107,106,110,108,93,92,99,106,92,111,112,105,114,108,100,104,109,101,101,100,96,102,99,103,90,91,99,104,98,112,95,113,105,107,108,116,104,94,105,101,102,103,106,100,112,109,105,102,109,105,105,104,97,112,103,110,107,109,77,107,108,90,105,96,98,98,102,101,104,98,102,119,118,102,95,96,101,106,108,102,113,99,90,112,97,104,107,96,99,101,105,105,102,110,104,96,91,98,94,90,105,100,93,103,116,112,103,98,92,103,88,97,105,106,107,107,113,85,119,113,113,97,77,103,94,98,102,99,109,84,103,71,97,106,107,96,98,100,96,101,105,102,125,99,90,99,104,92,103,99,92,97,98,113,108,96,105,103,105,99,102,97,104,104,88,105,101,83,94,119,106,101,95,106,95,92,73,104,136,106,103,98,105,96,91,104,105,117,111,110,97,106,92,108,118,104,105,112,105,89,100,96,98,94,102,100,106,105,83,108,106,106,101,105,98,101,94,98,95,111,104,110,95,98,104,115,103,105,102,110,95,104,98,103,120,107,96,112,105,93,107,101,99,98,97,117,98,110,96,108,105,95,102,102,102,89,95,101,95,100,89,112,113,92,102,79,120,101,101,100,108,95,102,96,96,102,95,94,98,101,101,110,91,107,94,90,96,95,92,96,91,113,103,109,103,103,87,103,114,107,109,98,99,95,99,78,108,116,99,104,100,120,92,95,99,115,100,113,97,113,96,103,105,117,110,114,101,85,95,120,95,110,77,102,108,103,104,109,92,102,105,106,111,103,106,96,104,100,104,95,90,95,107,97,103,91,109,118,82,104,103,103,101,97,100,101,103,102,88,100,104,108,96,104,104,95,96,94,116,108,105,98,101,103,99,105,100,106,105,105,95,117,98,101,106,89,101,106,80,99,90,99,103,90,99,100,98,105,109,93,110,120,102,84,99,108,116,109,106,103,95,110,100,112,95,94,121,99,107,99,109,97,103,96,111,101,110,90,122,98,105,109,103,99,107,91,105,97,114,80,103,101,104,107,112,100,100,103,103,97,104,92,111,102,97,93,98,94,102,101,98,108,116,112,99,108,104,104,104,97,105,94,116,105,96,109,113,104,107,103,99,95,104,103,102,95,97,114,104,99,95,122,94,102,86,97,98,101,102,91,104,108,97,105,98,98,91,125,101,86,96,105,109,112,111,86,90,107,131,100,101,100,81,99,93,93,95,83,95,115,102,100,112,108,95,114,88,117,103,103,97,99,102,103,103,97,95,94,113,104,115,83,107,110,102,93,100,113,106,112,95,103,118,110,96,109,101,96,98,88,122,103,99,101,96,93,112,109,108,103,107,102,103,87,112,114,90,103,98,100,110,109,80,100,117,121,94,100,115,98,96,104,95,120,91,100,96, +674.55408,109,106,105,102,95,107,97,87,92,104,113,95,107,99,109,91,107,108,95,109,74,101,110,104,106,104,95,95,114,116,90,113,105,100,112,101,99,98,107,93,119,99,84,98,105,109,116,94,97,101,95,103,114,106,112,68,129,110,109,86,103,99,106,98,100,128,96,94,96,105,92,112,116,95,90,106,99,101,108,107,89,101,103,114,98,99,108,107,105,95,103,113,106,110,103,99,100,112,94,101,76,94,95,99,91,96,97,106,105,101,93,98,109,90,118,129,106,111,96,102,102,95,107,122,98,102,105,101,111,99,100,113,96,101,102,99,98,100,109,101,112,115,109,103,105,85,116,105,88,110,110,100,100,96,97,104,113,109,102,102,98,90,105,98,102,111,98,108,104,104,98,95,102,95,104,97,101,103,99,110,101,97,99,95,99,99,98,91,111,92,101,91,106,105,102,105,104,103,102,92,94,111,99,99,90,96,94,100,118,114,101,105,127,106,114,101,103,119,105,97,102,81,101,99,92,109,92,99,98,99,125,86,92,96,109,96,91,118,98,104,95,108,89,110,86,100,91,90,102,100,113,106,104,108,100,106,98,111,85,94,84,107,96,97,87,98,95,97,102,97,99,86,103,107,106,116,88,100,107,103,104,90,97,104,91,96,102,95,91,101,90,104,101,99,107,99,95,99,107,99,88,113,101,109,95,107,108,105,99,110,100,104,102,100,92,96,110,94,98,101,87,99,113,113,118,107,105,102,114,102,104,96,108,107,99,104,119,92,95,112,112,103,101,95,93,100,105,99,102,106,115,100,104,109,106,107,108,104,99,107,103,101,102,99,108,94,94,100,98,109,96,99,110,92,99,110,102,103,107,110,105,107,109,101,97,94,100,96,103,95,110,93,95,109,93,105,87,97,106,109,123,108,101,92,94,101,93,106,97,99,100,99,113,98,109,95,101,102,99,100,104,99,107,94,100,98,97,97,99,100,87,101,109,100,108,103,87,109,105,101,101,123,94,99,102,130,95,108,93,98,99,95,101,101,98,92,133,97,129,108,102,87,112,101,103,97,109,94,100,107,108,111,96,100,104,112,95,115,101,94,92,117,100,97,105,93,73,96,103,96,99,110,105,109,104,108,102,105,111,103,118,112,105,105,105,97,90,93,103,102,99,102,103,95,100,84,98,86,102,104,113,116,96,106,98,105,97,96,105,100,97,103,88,82,110,87,127,94,111,110,88,98,102,96,102,101,121,98,103,77,89,125,101,103,92,108,107,110,89,99,109,116,98,95,105,103,105,93,105,107,92,99,94,103,96,107,112,104,115,97,99,95,103,99,90,103,107,97,112,91,105,93,101,100,122,104,96,97,96,104,98,88,67,92,108,101,95,97,109,95,105,112,76,112,92,114,103,107,99,105,98,111,109,105,106,121,110,99,112,107,100,94,88,94,98,108,104,116,106,95,102,111,104,102,97,80,102,94,96,106,95,104,112,106,94,116,101,106,101,103,99,108,111,94,92,105,97,101,124,92,110,104,109,109,90,112,92,106,105,100,95,103,95,104,103,95,90,108,98,106,110,98,100,110,105,105,107,97,99,97,98,82,98,101,97,90,108,98,111,94,105,103,99,93,112,113,109,94,96,94,108,92,98,96,95,91,98,94,93,102,108,110,98,100,88,97,96,94,99,106,94,105,103,99,97,103,108,101,88,103,99,101,106,97,104,113,105,103,112,88,89,102,82,101,93,104,101,66,114,118,128,98,105,88,95,109,102,102,108,99,97,113,100,120,104,102,110,95,95,110,112,97,109,106,99,109,105,109,103,99,99,103,105,103,118,108,116,91,95,112,106,104,92,94,104,94,101,90,95,100,100,102,110,105,100,108,108,97,110,95,95,95,82,103,105,103,101,109,104,95,100,110,105,108,103,98,104,95,97,106,103,89,92,105,100,118,104,96,100,89,96,96,106,105,104,91,100,97,108,99,93,106,109,96,91,129,107,98,108,98,93,99,95,95,101,95,88,110,103,91,100,100,109,94,105,99,103,96,99,102,91,93,110,104,110,100,107,95,112,99,95,105,114,110,101,105,101,96,87,103,103,104,96,114,109,99,97,113,100,91,97,99,99,90,105,102,87,96,101,111,102,91,106,103,103,82,94,101,89,115,86,110,103,112,99,105,105,99,95,107,103,100,108,94,96,106,91,117,95,93,91,85,114,102,100,93,106,97,84,112,97,132,105,110,109,87,96,90,104,99,109,92,92,100,88,101,96,77,100,103,99,104,99,105,106,100,98,105,104,90,107,93,124,96,101,101,97,97,105,107,104,104,95,85,104,99,107,96,98,105,91,112,113,88,104,90,85,96,95,97,110,107,117,95,114,95,117,101,99,108,90,96,113,99,93,111,108,129,98,70,92,104,92,108,99,99,102,98,108,94,91,99,105,99,96,92,102,105,98,94,94,115,99,104,102,106,97,101,103,118,106,95,92,98,92,103,101,105,101,98,99,109,101,94,107,113,106,100,96,105,111,108,102,82,105,88,94,103,92,99,97,106,91,111,97,85,119,91,107,128,118,111,101,99,99,102,99,99,95,95,101,101,93,91,92,102,100,108,102,105,110,115,106,108,93,98,99,90,107,101,100,98,95,90,89,103,98,101,89,101,108,110,101,97,105,103,111,85,93,103,94,98,90,99,91,104,103,86,114,108,112,107,96,108,100,118,101,103,100,98,93,95,105,110,107,116,104,103,98,108,102,105,103,89,105,99,91,109,103,95,96,94,101,92,101,95,93,100,106,107,105,104,121,87,95,101,98,97,87,100,102,109,109,85,103,106,100,107,101,97,99,110,101,103,106,109,101,110,105,123,102,101,100,115,104,109,101,102,92,103,106,96,104,103,96,94,112,97,95,108,83,92,104,106,85,99,71,107,100,110,102,110,101,101,88,112,107,98,116,114,98,90,109,106,100,103,95,104,94,97,95,107,108,101,103,113,112,115,108,99,92,99,102,102,96,107,102,101,105,94,99,97,102,112,115,109,106,107,94,103,95,108,99,95,126,108,105,101,98,97,104,104,96,102,99,89,94,102,91,99,117,106,107,101,106,102,104,101,117,103,104,96,95,109,101,109,103,100,109,109,87,100,104,101,95,101,102,96,104,110,109,93,97,97,109,98,104,99,113,78,115,103,101,108,92,115,117,102,88,108,93,109,113,97,96,88,98,97,103,99,101,103,95,104,92,97,91,112,106,87,100,113,105,103,112,101,91,105,99,92,99,98,107,103,101,98,110,108,98,96,69,94,100,107,95,114,100,104,95,105,110,108,103,112,82,104,102,102,107,107,99,110,103,101,124,67,95,99,96,97,105,109,103,108,109,99,106,109,108,102,103,116,81,102,104,93,101,106,115,108,99,92,105,106,97,95,103,100,106,79,101,89,100,87,91,93,88,101,93,105,101,104,112,100,97,91,94,96,90,97,96,105,102,106,97,102,108,94,109,106,102,112,100,99,112,106,104,98,81,100,108,107,112,109,107,101,104,108,102,109,94,110,107,90,98,105,88,97,110,116,105,109,99,108,100,107,89,90,100,94,84,95,91,108,94,106,107,110,98,107,93,110,113,112,106,89,107,106,95,108,92,104,97,106,108,106,106,117,99,103,103,114,108,102,100,103,91,95,98,83,101,91,103,109,98,96,107,101,108,110,95,109,100,112,102,103,106,99,109,107,98,101,103,96,98,111,104,95,96,98,103,96,102,111,116,105,101,114,110,104,102,97,101,105,97,98,94,92,104,110,109,113,101,97,103,102,104,97,101,98,124,95,104,102,105,95,95,94,95,106,101,97,99,100,87,99,93,100,109,100,99,100,93,98,115,105,105,107,96,117,107,106,104,92,103,99,114,109,114,99,98,125,110,98,92,98,108,97,103,104,101,94,85,95,105,98,102,102,105,98,109,110,98,119,100,114,105,98,99,107,102,89,101,111,109,124,113,97,102,96,116,84,97,108,109,94,102,112,98,104,104,94,109,90,90,106,90,97,102,112,102,101,96,105,116,105,101,99,101,99,98,96,120,110,109,97,100,99,96,109,96,98,104,110,102,102,99,113,98,91,96,98,113,105,95,113,102,105,95,103,110,100,88,98,95,99,96,106,71,97,105,94,100,104,111,109,99,102,102,98,101,113,109,112,109,106,97,121,116,96,98,106,101,109,107,103,103,91,93,100,98,94,105,94,99,101,105,112,97,90,100,103,97,97,82,92,91,103,132,112,100,97,112,100,104,114,92,101,108,99,95,115,97,99,110,119,113,109,108,103,112,103,117,113,100,107,105,106,94,105,104,103,102,104,96,86,108,104,102,95,95,97,109,94,120,98,106,117,100,91,109,112,108,67,91,113,121,100,101,100,95,95,110,92,117,95,94,104,103,94,102,113,75,96,110,99,85,101,100,106,95,120,114,103,113,102,101,100,92,110,103,97,102,101,96,93,99,102,108,105,97,99,95,111,103,110,106,108,102,101,97,100,107,106,100,106,104,94,105,100,97,104,87,100,76,100,91,94,90,108,93,113,109,93,91,100,115,99,96,113,101,87,101,98,114,98,112,97,97,98,89,107,93,94,117,103,96,111,112,94,108,102,93,95,105,92,103,112,104,97,110,106,100,110,96,104,105,99,103,80,100,96,91,71,126,98,109,115,104,102,99,105,98,96,101,105,119,104,108,104,98,103,92,97,101,105,99,92,102,100,100,98,96,87,95,99,91,99,107,104,102,92,104,110,84,88,103,107,101,107,97,116,98,103,95,104,97,107,91,93,102,113,104,106,113,103,99,105,82,91,104,100,95,99,96,103,99,88,117,104,98,104,89,109,113,101,96,101,99,101,114,99,124,81,108,94,107,100,86,107, +674.69537,101,96,100,97,106,100,94,99,103,112,100,105,95,98,119,110,83,107,99,126,100,88,105,89,109,123,113,116,87,105,100,97,101,99,116,99,103,100,95,107,108,104,103,105,95,103,101,113,93,98,115,102,100,101,103,97,95,106,103,100,104,97,98,83,89,101,101,96,98,102,99,113,93,101,85,99,113,111,115,110,96,106,104,80,97,80,103,110,96,98,91,102,101,101,100,101,96,102,111,104,96,98,103,94,107,85,107,98,100,92,102,99,100,112,108,78,101,99,100,108,100,91,106,102,93,91,108,98,106,78,103,109,100,94,104,96,86,102,125,94,107,98,95,105,98,106,104,92,103,95,101,91,106,83,111,92,96,86,115,84,105,92,101,102,95,103,93,88,99,102,108,111,97,104,108,94,86,101,98,90,112,123,94,105,109,87,94,96,102,98,91,97,99,101,94,121,98,115,91,100,94,94,107,118,101,110,103,89,113,106,92,95,99,95,109,95,88,104,109,101,103,105,103,87,96,109,93,100,98,109,96,97,96,98,116,100,106,77,106,97,99,105,108,100,94,113,113,106,106,100,96,95,103,98,103,89,92,81,97,103,82,100,94,95,92,116,109,109,95,105,93,100,101,101,100,99,103,117,100,101,102,115,103,105,98,106,87,97,99,117,90,99,101,100,97,111,106,111,99,85,104,94,104,103,104,113,93,115,96,102,97,101,93,103,105,99,99,103,95,102,100,96,100,94,100,93,96,90,100,103,100,91,99,106,104,84,101,104,99,109,93,119,116,101,104,105,102,95,105,102,117,98,102,91,102,98,106,93,103,103,100,102,92,105,102,108,101,106,109,98,109,102,96,99,112,86,95,95,105,108,94,105,95,99,88,99,102,117,105,98,104,75,87,98,101,97,99,95,103,117,96,115,91,102,96,103,108,99,72,107,98,88,98,100,102,101,83,102,109,104,106,101,105,106,109,93,81,104,97,108,98,103,93,104,101,92,95,104,95,95,95,99,107,106,122,95,98,100,94,108,105,93,82,112,103,109,103,103,100,99,83,103,106,100,106,106,98,101,110,97,107,101,99,93,97,98,95,103,98,100,99,97,109,99,99,98,97,97,97,99,93,121,102,100,100,88,92,103,100,111,109,99,91,104,103,108,98,104,107,109,105,100,105,97,107,103,72,104,104,110,109,103,108,98,98,122,104,99,113,105,82,104,94,92,92,111,104,91,122,103,81,98,115,98,107,91,102,93,112,112,94,97,98,110,105,87,103,110,100,98,99,111,101,103,103,108,102,91,102,105,95,103,95,109,105,92,101,102,97,101,101,91,111,106,101,105,106,96,103,109,107,110,95,101,104,91,94,98,105,104,102,102,117,100,96,108,97,112,109,104,109,103,100,103,101,103,110,103,99,108,110,99,108,96,103,89,100,112,108,104,100,130,90,103,99,103,104,100,96,87,105,114,111,94,101,88,92,102,108,109,99,107,103,112,90,99,102,105,111,116,109,107,105,95,121,99,110,103,102,101,100,121,109,104,94,105,99,105,106,101,111,102,110,99,96,102,101,107,87,112,117,103,101,108,97,103,103,116,100,92,97,98,102,90,97,105,109,104,98,103,103,91,95,99,120,101,104,102,101,102,100,103,89,100,94,102,99,108,116,99,101,104,95,105,102,109,106,103,103,97,106,106,96,99,98,92,95,83,108,99,104,96,110,103,95,103,105,113,106,101,101,105,106,95,82,94,98,95,97,101,110,90,94,98,99,90,107,106,104,98,105,100,113,102,99,105,98,89,102,104,90,115,105,104,109,90,101,94,99,92,91,88,99,100,116,103,102,90,103,100,103,85,96,85,100,90,120,101,102,110,83,102,96,110,73,95,103,102,106,97,98,98,112,107,110,95,109,94,96,91,106,100,116,101,101,97,97,95,98,72,105,105,97,103,109,114,94,99,99,101,101,107,106,102,98,114,97,103,113,111,122,83,88,110,101,94,86,108,102,99,99,99,104,100,116,102,99,104,110,105,109,100,112,99,103,96,107,107,98,107,102,114,97,91,104,87,113,95,101,92,102,94,114,110,100,98,94,99,96,113,107,95,111,108,98,96,99,115,104,105,90,100,111,106,106,100,101,94,98,102,105,104,105,95,75,96,110,105,102,106,101,98,95,99,105,90,104,90,101,99,106,104,98,106,102,103,95,99,100,108,107,93,109,112,100,110,99,104,96,103,90,102,102,104,97,105,103,116,99,100,99,75,110,111,110,99,106,91,106,93,108,96,91,94,112,102,111,106,90,107,94,100,90,115,106,94,107,99,100,99,108,114,103,92,105,106,107,86,106,78,117,95,89,97,113,105,94,101,107,105,94,106,97,112,94,110,99,99,102,100,96,117,117,100,138,98,107,106,99,108,92,106,100,105,99,83,110,90,105,95,101,111,97,114,116,100,114,101,91,100,112,97,92,99,107,103,95,104,102,115,99,110,101,93,103,100,89,99,91,100,107,97,106,103,107,109,100,117,108,114,96,109,103,106,104,80,95,103,94,114,110,92,102,103,99,99,104,100,121,94,106,118,87,100,98,107,99,97,106,92,100,99,100,112,110,103,100,102,100,95,117,100,115,103,108,106,113,102,81,106,105,101,114,97,96,97,111,120,97,99,92,111,102,100,106,101,111,97,109,104,104,106,106,98,103,105,113,108,93,95,91,110,124,109,91,109,104,100,109,94,100,107,95,107,103,104,99,110,98,112,91,87,117,112,110,100,94,110,101,105,96,106,109,109,119,118,109,105,106,102,108,114,106,98,96,97,100,104,109,103,100,106,112,99,101,91,104,113,99,108,105,99,101,115,106,89,96,109,89,97,105,104,99,108,111,104,102,113,108,99,103,108,100,105,106,100,102,101,128,118,116,107,110,109,95,104,96,106,106,102,99,106,94,102,112,103,109,114,96,99,106,98,108,110,102,109,98,100,97,99,99,104,92,93,103,112,91,94,90,111,104,96,87,105,110,89,115,69,106,109,91,97,98,107,109,99,113,103,106,96,107,121,107,111,111,105,114,100,109,95,111,104,99,104,103,91,108,97,101,122,93,114,94,116,111,98,102,102,108,77,109,105,109,98,94,95,92,93,100,103,109,91,100,110,100,97,98,117,70,92,81,108,114,102,98,109,106,102,102,104,110,101,112,112,103,101,112,111,74,85,98,104,93,100,114,89,102,98,104,102,100,99,102,108,93,103,106,96,108,105,109,111,98,105,108,109,106,105,67,103,101,111,94,102,91,103,104,108,109,108,104,97,106,98,98,107,113,95,102,103,95,101,97,105,100,113,99,96,105,105,96,106,95,102,104,107,107,104,110,112,99,109,123,124,118,105,91,104,102,105,97,109,103,104,113,105,91,106,117,95,98,101,94,111,104,103,104,113,101,99,103,101,101,107,101,106,98,87,93,97,112,105,106,110,94,90,109,74,65,95,111,124,110,109,99,95,111,104,110,107,100,102,104,111,108,94,93,121,109,109,103,122,106,105,108,110,112,105,98,91,92,126,111,111,111,106,97,87,103,109,103,94,107,112,111,95,77,100,105,101,110,103,117,93,102,104,121,71,97,103,106,93,112,112,105,87,103,105,113,105,104,109,101,96,101,85,106,99,113,121,107,96,97,101,92,103,90,88,114,106,103,107,109,95,114,103,106,93,105,100,105,111,88,112,103,103,109,95,100,99,107,105,115,86,73,98,110,92,99,111,113,102,113,95,106,108,99,102,106,110,98,93,108,107,83,106,93,103,102,105,93,106,103,103,99,92,103,100,97,98,100,102,104,97,106,105,79,106,93,101,101,105,92,108,107,111,104,89,109,104,94,99,108,99,98,95,90,103,102,100,106,102,100,95,94,105,98,113,110,119,100,96,105,95,99,114,107,108,102,113,101,100,106,97,102,98,96,93,116,100,99,98,96,101,98,100,106,109,98,96,104,82,105,98,97,100,108,103,88,100,109,101,84,95,108,93,98,109,119,99,101,109,110,86,91,104,117,102,100,84,95,105,92,97,105,111,112,92,104,111,109,100,95,111,107,96,106,111,97,101,105,96,104,106,113,106,96,100,110,100,99,108,102,106,120,128,89,110,109,100,95,102,95,102,96,97,109,110,102,105,93,91,95,91,106,103,107,103,98,92,98,115,86,109,111,100,106,113,101,104,94,107,112,108,111,115,80,97,111,111,106,94,101,116,72,99,104,114,110,101,85,105,106,91,97,93,84,104,112,111,111,100,104,112,107,96,96,104,106,115,107,99,95,105,110,102,99,96,92,98,109,103,106,103,123,104,107,107,90,108,103,110,105,103,103,102,99,118,113,109,98,102,94,102,103,109,115,132,97,118,90,107,77,106,110,98,112,98,114,108,100,90,99,108,104,104,106,99,113,108,100,104,114,99,100,111,94,103,92,99,96,99,106,107,100,100,105,94,105,104,106,105,90,94,107,96,117,102,121,118,101,102,101,107,105,106,104,86,96,98,104,105,101,103,106,105,106,103,90,114,95,128,99,100,103,98,107,103,98,95,93,105,100,98,98,101,109,101,85,112,108,95,94,93,111,104,101,95,110,99,107,139,99,104,100,111,105,108,104,112,112,91,107,104,110,107,99,116,103,114,100,102,110,104,95,92,108,104,98,98,103,91,100,102,119,100,104,100,99,100,109,103,113,91,114,108,116,96,106,107,104,100,101,112,101,91,103,86,109,90,100,110,100,111,94,79,99,103,107,92,102,108,106,106,97,109,107,88,110,108,99,118,120,105,99,99,108,94,101,112,104,87,94,90,110,108,107,80,99,101,101,95,104,106,99,95,94,94,94,101,96,72,109,116,94,102,98,108,80,79,100,113,94,100,91,120,127,92,112,99, +674.83661,112,102,105,97,84,123,101,109,102,90,100,83,100,88,100,96,101,106,105,92,90,96,94,94,99,82,100,104,106,103,97,99,103,102,107,99,105,98,97,99,92,99,102,103,95,96,98,106,108,104,105,104,102,99,83,86,96,94,113,94,104,96,94,101,106,103,90,130,91,92,101,102,106,108,99,109,96,107,86,111,100,108,101,97,109,88,94,103,92,91,108,92,87,99,95,89,113,103,107,96,117,102,96,91,99,94,111,102,105,101,108,117,81,90,110,105,99,101,105,101,102,72,112,106,99,103,104,105,112,91,114,111,105,101,90,99,106,109,99,101,114,96,108,101,93,100,114,100,90,105,79,94,107,102,96,91,101,93,91,101,113,102,100,106,107,105,91,101,99,102,98,96,105,99,103,112,97,92,108,94,96,111,116,100,108,100,90,100,100,113,96,96,103,108,90,107,107,116,101,101,106,104,112,92,99,95,99,98,103,110,93,112,104,93,85,84,96,119,107,100,109,100,108,105,89,104,106,107,106,92,105,99,101,109,109,97,99,95,106,94,113,102,102,114,90,94,96,94,106,103,108,101,86,94,102,107,94,101,100,107,101,108,101,104,88,110,96,112,109,103,97,102,96,100,107,98,90,102,105,108,101,103,104,102,105,109,89,104,107,84,106,94,104,104,108,105,95,101,108,108,91,96,104,107,107,105,98,112,104,110,98,110,109,106,106,98,75,101,99,109,88,111,88,100,94,97,108,94,102,89,109,99,110,75,95,117,100,103,100,110,95,92,116,109,100,107,96,100,91,110,111,99,101,99,122,112,115,98,100,104,93,89,98,101,95,98,99,99,106,101,102,112,94,98,104,106,109,92,104,110,117,108,103,95,101,103,99,98,92,95,102,96,104,96,104,92,109,107,97,101,109,94,97,93,82,103,101,105,100,108,91,104,109,98,92,96,100,102,96,95,111,104,97,94,102,87,111,104,97,105,92,104,100,107,102,112,97,109,100,108,104,105,103,99,90,99,112,117,104,122,96,89,124,113,107,98,106,103,112,118,101,105,107,109,100,77,101,95,99,100,102,100,102,102,102,105,100,104,109,114,102,104,106,108,111,101,100,106,104,114,109,105,109,109,95,101,89,95,107,104,117,98,104,108,104,100,98,105,104,107,101,102,93,101,115,106,110,102,98,97,111,95,115,102,102,93,113,98,92,102,108,84,93,94,102,108,104,90,91,109,102,109,101,103,105,95,99,107,100,97,96,88,109,95,102,90,109,98,96,116,105,98,97,101,104,108,105,92,121,96,102,105,95,100,113,103,98,105,128,99,104,89,108,95,97,101,87,109,102,92,99,97,108,118,106,98,103,125,106,101,82,109,108,105,79,112,101,97,108,92,104,102,103,82,113,101,112,96,104,105,99,100,92,104,113,96,98,115,103,99,103,90,91,107,101,90,115,102,106,109,105,107,98,98,100,97,102,98,105,95,109,97,105,110,94,98,104,109,99,107,100,110,103,107,98,99,108,96,99,106,110,111,112,88,106,106,98,121,112,90,104,99,85,107,104,104,117,102,106,106,129,111,110,105,105,99,104,113,96,97,107,114,94,100,92,95,114,98,96,111,108,100,112,96,93,101,97,106,102,94,105,95,111,113,95,100,99,106,107,114,114,105,91,98,93,99,95,97,116,99,102,104,112,96,105,99,102,104,90,100,100,113,94,103,106,107,103,92,111,94,112,97,98,95,93,105,88,103,99,97,102,102,105,109,108,101,103,106,114,91,95,104,106,99,110,105,102,104,113,102,97,96,120,95,96,104,95,109,108,123,100,99,100,100,106,102,101,104,100,105,99,94,105,103,85,94,112,105,91,103,110,107,106,92,101,103,98,93,110,103,108,92,114,113,112,112,112,101,95,100,91,102,112,103,104,113,110,96,108,81,108,91,102,112,98,102,94,102,93,96,102,103,118,104,97,95,102,104,110,109,97,134,97,103,96,108,111,98,93,97,96,112,104,95,97,91,93,102,104,101,103,103,104,110,107,91,100,106,107,101,100,103,103,110,106,98,104,101,102,100,88,109,110,107,92,108,97,106,115,100,104,98,103,102,103,96,99,103,117,101,96,103,104,98,105,102,89,97,97,108,113,99,105,109,85,90,98,100,93,104,123,110,101,82,100,100,96,104,101,100,103,113,97,98,95,97,96,105,103,111,100,109,97,102,109,96,109,100,97,90,101,95,101,102,95,104,94,91,102,108,95,114,99,99,103,104,103,104,111,88,104,109,96,88,94,103,103,95,69,91,92,112,93,98,108,97,100,95,101,108,119,114,100,100,118,108,97,91,65,112,92,98,123,101,107,99,100,102,104,108,110,109,92,88,91,99,104,96,96,109,105,95,111,95,95,103,102,96,107,98,103,99,113,95,92,100,106,98,94,99,97,101,104,95,97,101,97,91,95,98,101,98,96,107,113,103,116,101,96,108,95,99,102,116,93,108,103,96,112,117,111,105,100,102,111,108,84,104,113,100,104,110,113,109,92,63,97,96,94,115,103,113,112,104,92,107,106,111,97,100,108,97,100,99,96,101,93,100,87,97,112,92,100,106,94,109,109,103,113,97,119,100,111,107,92,105,100,114,98,100,102,97,118,92,95,97,109,93,100,103,83,95,105,106,123,115,98,103,100,105,98,102,104,100,99,107,115,109,103,106,96,105,98,114,110,104,88,92,94,101,103,105,104,111,112,108,91,81,101,111,98,104,105,100,105,111,104,100,108,103,101,123,104,97,105,92,99,103,98,108,96,98,113,103,104,100,113,127,99,98,99,112,115,98,107,91,113,108,88,100,93,95,107,108,106,93,104,107,104,106,98,111,102,120,94,101,108,102,81,105,99,105,105,104,101,87,106,99,103,111,91,102,113,103,99,126,102,105,117,109,90,114,92,108,105,111,113,102,88,107,86,106,97,103,103,108,100,102,101,101,100,109,106,92,109,104,102,97,118,96,101,101,98,105,105,105,109,109,101,112,103,91,106,106,108,112,107,100,98,97,84,102,99,96,104,95,117,96,99,119,122,110,102,99,108,84,98,87,100,107,127,107,104,95,125,94,95,100,97,100,103,106,96,105,116,116,100,117,101,105,115,95,110,116,108,104,94,105,118,106,116,99,103,103,116,105,109,87,117,119,106,103,100,100,110,102,116,106,110,102,103,101,97,108,98,90,109,115,105,107,100,104,104,105,113,111,108,99,113,106,106,102,101,104,92,108,93,113,108,110,115,79,96,109,108,95,98,107,121,99,108,97,121,109,65,112,102,88,100,101,95,114,93,117,97,102,105,106,117,96,108,102,105,104,108,113,104,84,101,103,117,98,113,106,100,103,99,109,99,99,97,106,91,118,95,108,104,106,112,106,99,94,109,105,96,105,113,102,106,103,108,99,110,106,99,104,101,123,96,108,103,102,100,91,96,100,109,102,114,97,101,108,106,99,107,109,110,110,108,119,103,107,99,103,107,110,99,109,76,103,106,101,87,113,116,120,111,95,97,104,101,106,105,113,105,103,98,108,114,114,101,109,104,111,95,105,108,106,98,101,104,92,103,102,113,94,105,107,95,112,104,100,104,122,106,102,104,103,120,94,105,114,107,98,93,86,110,101,101,112,116,87,106,114,79,96,96,107,103,102,100,104,73,104,87,106,102,84,72,90,100,113,105,111,102,120,106,107,90,96,90,100,103,91,94,97,109,107,106,98,96,98,103,86,104,103,107,110,115,102,118,99,101,105,108,101,102,102,118,115,100,101,109,112,105,99,111,105,96,105,111,107,107,103,108,123,104,99,91,111,76,103,101,102,100,100,96,97,101,105,92,99,99,106,98,100,109,96,106,110,102,94,103,106,100,99,110,92,102,104,94,106,113,99,106,105,103,92,97,91,103,102,95,133,108,98,102,107,96,106,100,71,101,102,98,99,101,98,93,97,103,107,95,97,100,115,98,95,97,94,107,102,108,110,108,101,102,107,106,103,114,102,112,105,98,95,109,96,117,95,99,80,95,103,107,102,99,96,99,104,106,106,103,98,100,110,102,96,112,112,106,109,99,103,101,110,89,94,98,103,102,106,106,96,111,104,110,89,96,108,106,98,98,102,100,88,94,91,94,104,104,97,102,103,101,101,96,99,98,94,103,114,109,106,104,111,95,98,98,109,106,102,101,101,93,112,97,91,114,98,110,101,120,98,96,99,92,99,104,116,102,112,108,89,100,109,96,105,89,102,102,104,103,110,110,103,93,89,87,111,100,112,104,96,95,94,101,82,92,120,99,100,112,105,105,101,100,107,102,100,114,96,103,105,101,119,102,98,87,115,97,103,105,102,97,105,110,94,102,104,105,102,95,106,106,105,113,113,104,95,92,100,92,98,105,99,89,106,86,99,106,108,102,98,102,119,91,95,99,96,108,103,110,108,106,98,120,97,94,94,97,95,98,112,102,99,105,98,103,104,100,72,104,117,93,106,87,98,101,107,96,106,92,92,103,102,99,114,101,106,96,125,104,97,96,114,114,117,94,111,100,102,105,96,107,98,106,96,95,116,101,107,124,91,104,86,95,99,108,102,99,113,104,110,98,104,112,105,100,95,103,99,99,100,101,110,108,104,98,111,106,117,121,99,94,95,96,111,100,100,102,94,108,106,97,90,108,100,87,91,97,120,99,97,104,108,97,105,102,91,98,100,90,96,104,113,96,97,101,87,113,99,98,119,96,103,107,100,104,106,114,106,107,99,125,78,97,104,96,127,96,104,105,82,108,91,84,93,106,104,113,113,87,109,101,109,104,105,93,73,119,114,99,88,105,66,81,104,108,102,101,98,99,96,91,96,97,93,81,84,114,112,97,99,102,114,104,103,65,90, +674.97791,98,107,90,105,88,97,93,108,102,96,103,113,84,107,109,103,102,99,102,94,94,109,90,98,110,106,107,94,100,99,102,98,104,105,96,105,110,101,112,89,105,126,96,105,100,98,97,102,93,110,110,89,94,99,104,88,105,96,104,92,90,83,104,97,102,102,90,99,99,95,102,110,109,106,98,109,97,108,119,100,102,101,107,95,102,73,111,104,109,105,100,112,97,90,106,102,102,97,94,100,100,103,101,92,102,96,106,105,96,115,101,112,101,113,96,89,99,113,107,102,91,101,95,111,111,102,107,94,107,101,99,101,104,104,91,98,94,93,89,106,110,105,101,100,108,94,106,92,94,96,83,106,106,105,92,96,115,96,91,100,106,102,104,101,103,87,105,92,94,92,109,111,94,83,98,92,96,97,102,114,101,100,105,90,104,104,90,95,86,94,98,107,102,118,94,106,113,100,84,93,91,87,102,99,100,107,94,109,94,112,96,102,105,96,94,103,95,102,83,93,117,96,103,88,88,101,83,105,98,102,96,100,104,106,91,98,97,90,93,97,99,102,92,90,100,97,110,103,94,102,92,107,97,70,110,117,96,108,81,88,93,101,91,102,101,101,95,89,93,99,99,118,108,104,111,97,84,95,100,90,96,105,102,98,107,90,113,93,98,110,105,116,96,116,115,93,94,105,99,101,99,112,100,104,88,90,100,101,99,97,103,104,103,108,103,98,105,104,99,113,103,94,92,95,134,105,87,91,98,105,121,110,99,104,99,93,86,91,99,96,102,108,100,91,91,101,103,91,103,100,114,87,96,105,113,104,101,102,96,93,106,91,92,101,101,107,109,95,104,112,114,92,103,95,101,109,101,109,97,100,108,101,100,101,91,96,110,98,98,97,101,93,95,104,98,99,89,97,104,94,98,101,103,101,104,92,91,117,106,68,94,86,103,92,97,99,101,93,98,91,86,98,103,87,95,92,96,95,103,118,100,105,104,95,103,102,97,107,99,104,104,108,93,100,96,96,107,110,107,105,101,97,107,107,108,97,100,91,108,101,106,100,100,98,100,104,89,91,99,104,98,87,102,99,102,92,103,106,107,115,109,106,103,133,103,103,108,103,102,98,110,99,100,101,83,99,98,99,92,93,107,95,98,100,101,90,63,105,78,99,101,99,101,107,118,107,105,96,104,97,97,112,90,101,117,97,101,95,100,107,87,109,99,104,100,105,111,92,104,93,94,95,89,104,91,83,117,105,114,99,109,94,100,90,103,96,102,100,87,98,103,105,92,98,105,108,113,96,101,93,94,94,113,101,95,97,113,92,95,96,108,93,91,100,73,97,117,98,95,87,108,107,108,102,111,99,108,98,110,114,103,101,99,107,97,98,97,100,103,100,104,107,100,107,114,99,90,108,109,101,108,97,96,103,103,96,113,98,106,100,106,102,105,94,96,101,94,100,78,120,102,95,114,109,99,98,95,101,110,104,101,90,110,105,107,100,92,92,105,104,102,89,113,98,97,96,96,106,108,98,104,92,101,93,96,103,104,108,101,96,100,106,110,98,89,101,103,103,96,99,110,96,96,110,98,110,103,97,96,95,112,97,99,97,94,113,99,99,102,100,110,93,97,106,109,87,72,105,89,103,97,90,101,92,85,98,104,99,90,102,100,98,83,104,98,97,113,107,109,105,100,99,103,107,101,94,88,106,90,103,95,107,74,94,96,101,113,98,113,102,109,97,109,107,71,94,98,117,75,97,107,97,92,101,107,117,91,103,99,92,116,103,81,93,110,116,103,92,100,95,104,100,92,87,137,93,109,110,113,108,106,82,102,107,97,101,99,97,105,113,96,109,112,100,104,87,116,95,103,95,102,101,94,105,91,102,111,115,103,86,106,96,119,109,102,99,110,96,96,119,90,115,101,95,92,97,91,98,100,92,121,100,89,101,121,103,109,109,94,96,100,93,93,97,103,98,98,105,117,99,103,111,97,95,96,102,98,97,88,90,104,101,95,102,104,103,93,108,90,95,98,105,100,98,110,96,94,94,102,105,103,105,98,103,92,102,103,101,94,104,109,104,103,100,100,87,87,110,86,90,94,100,107,101,98,93,97,93,107,99,107,104,97,106,89,100,89,98,95,99,95,107,92,113,108,108,93,102,88,99,88,93,102,106,99,106,106,102,103,94,100,104,106,112,103,63,108,96,102,94,95,88,109,109,96,103,104,90,104,105,87,108,98,87,107,100,90,97,82,97,101,102,94,105,86,109,108,97,92,104,98,99,94,88,110,107,90,98,92,101,91,99,96,107,98,105,100,95,103,98,106,110,96,96,97,107,91,100,110,94,107,91,93,89,98,86,97,108,106,102,101,98,104,108,98,95,99,116,99,106,82,100,100,85,91,92,103,102,101,90,91,98,96,102,104,110,89,73,88,100,102,111,96,95,104,90,102,94,82,115,117,92,90,91,85,102,101,101,112,114,97,99,112,98,97,101,97,105,104,95,94,92,103,87,97,105,102,101,104,101,95,80,99,98,95,86,106,94,90,103,91,117,99,91,101,109,92,97,90,114,105,110,109,88,95,99,104,103,106,98,94,92,92,94,75,89,105,109,107,98,108,109,114,107,98,100,86,105,101,101,98,95,91,91,107,95,95,94,110,98,94,100,112,108,103,101,98,101,82,94,103,100,97,120,93,107,98,108,93,98,102,112,95,102,105,93,110,102,91,109,99,107,91,98,94,94,102,101,97,103,103,113,100,99,98,106,107,105,104,89,107,105,100,105,116,91,94,101,99,95,103,94,97,107,102,101,96,94,98,98,109,105,102,85,99,101,101,98,100,108,92,107,129,110,97,100,101,105,105,109,100,106,113,99,89,107,107,111,93,89,97,109,113,103,106,93,103,111,101,97,101,94,107,106,104,115,106,135,99,127,93,88,100,103,101,110,98,102,100,73,98,98,101,96,107,99,117,96,100,90,99,105,97,98,101,92,100,102,101,104,93,95,98,111,110,102,98,105,96,89,106,106,92,100,108,109,106,104,95,102,103,105,101,80,86,97,102,98,110,120,94,106,100,105,88,103,102,105,103,111,98,100,105,93,100,96,99,103,92,100,107,110,98,104,116,75,107,99,94,102,107,94,102,99,109,103,106,101,98,85,109,91,105,109,119,98,88,91,100,106,99,97,94,99,105,99,93,102,113,93,96,115,100,88,100,99,102,120,103,105,117,100,99,109,89,95,93,116,101,106,115,100,109,99,99,105,108,99,100,89,103,104,105,103,100,99,91,119,100,83,93,103,111,111,90,85,103,96,82,95,114,110,99,105,104,96,114,102,91,96,94,106,101,102,100,100,93,96,101,101,99,84,110,93,105,98,94,99,100,95,107,93,98,102,103,108,97,97,100,112,95,106,113,107,98,102,118,97,107,92,90,99,94,98,103,101,103,109,102,99,102,109,103,98,103,105,94,103,99,94,111,92,112,88,108,97,105,94,115,102,108,123,98,110,100,107,91,106,107,93,106,101,100,88,93,100,84,113,103,103,94,106,101,90,114,106,96,101,95,102,118,94,99,116,109,94,102,99,98,99,93,93,104,102,105,96,108,105,91,105,88,97,94,117,96,99,100,99,87,96,92,105,111,95,92,87,120,97,111,106,100,110,100,96,99,95,99,104,84,94,102,110,95,94,91,93,92,101,101,100,95,91,101,99,98,91,101,98,118,97,111,93,94,105,95,109,104,98,101,101,99,102,106,87,110,106,100,112,100,99,102,104,100,97,100,117,95,103,104,100,102,103,98,104,88,102,95,103,121,86,104,93,105,116,107,97,109,107,95,96,92,101,107,91,98,94,102,127,91,102,96,110,101,113,108,104,101,91,100,84,91,96,109,92,109,101,101,96,102,88,104,108,111,89,112,105,99,85,108,100,103,92,100,108,97,117,105,105,105,96,100,88,89,107,100,98,97,107,97,99,91,98,100,104,103,93,103,96,89,105,94,98,101,86,103,103,101,95,100,107,95,96,99,98,113,100,100,93,113,120,105,99,105,101,116,110,105,98,97,96,103,88,101,101,100,112,114,102,97,101,96,105,99,109,111,102,112,104,70,108,112,97,99,94,103,99,101,103,99,108,92,105,106,100,105,95,95,91,110,109,105,87,109,109,103,86,108,92,103,94,110,109,95,107,93,109,98,111,96,104,99,95,101,100,120,105,104,105,107,107,117,100,98,93,115,95,113,96,95,98,95,110,101,99,88,102,92,103,105,84,92,77,106,101,105,98,102,104,95,117,99,104,99,101,99,104,102,103,98,100,100,110,110,107,105,109,109,109,94,100,109,112,120,106,112,105,103,103,105,102,109,91,107,96,106,87,109,103,100,100,96,92,106,106,91,97,109,94,106,94,100,98,107,113,108,111,94,105,109,103,112,105,91,96,97,102,105,88,110,103,102,112,97,109,110,104,100,98,95,99,94,101,84,111,105,110,106,72,105,97,96,80,108,102,109,103,98,98,106,87,114,96,104,92,110,115,114,110,107,96,94,99,108,101,115,104,87,106,92,99,96,100,104,113,92,95,105,102,84,99,107,93,105,110,92,102,103,104,95,95,99,103,113,88,100,106,120,110,96,94,92,102,94,101,95,109,108,102,90,85,102,100,103,90,104,104,106,115,113,94,97,110,108,112,106,87,114,89,118,106,102,107,99,93,105,99,106,94,97,115,101,103,95,99,93,101,109,109,94,103,104,89,101,129,114,112,94,105,113,97,121,100,98,112,100,83,108,117,101,101,92,96,102,90,92,61,101,107,111,101,107,105,97,100,100,116,94,103,95,101,108,86,105,87,102,104,101,95,127,90,106,106,104,97,90,84,95,110,82,105,98,106,93,96,103,108,98,96,90,92, +675.11914,99,106,109,101,98,113,91,94,84,98,107,79,107,110,94,96,109,104,121,101,95,105,100,98,109,91,105,91,109,111,98,88,100,104,99,98,98,102,110,109,92,102,91,116,105,95,118,117,97,102,102,102,97,106,101,99,99,97,109,104,92,96,99,92,98,114,103,93,104,105,102,101,99,118,98,86,83,102,82,89,96,98,103,102,95,94,107,105,116,103,71,95,103,101,104,96,112,96,116,102,106,95,101,90,101,100,102,92,99,94,98,102,112,90,104,120,117,83,109,104,99,99,114,96,112,109,106,98,100,117,110,108,102,111,100,95,87,110,96,90,89,99,110,106,92,112,100,104,103,97,86,94,101,101,88,92,96,94,97,93,103,118,110,98,100,89,101,117,79,115,103,91,132,102,102,96,99,102,103,105,99,104,104,97,99,99,83,101,90,88,106,94,94,108,97,99,99,104,92,112,111,101,85,102,106,104,97,97,113,100,95,108,102,104,95,107,112,94,91,104,109,102,96,102,101,91,96,92,95,97,92,92,104,103,106,102,100,106,116,97,108,105,103,101,112,93,90,104,94,105,108,103,99,121,96,106,92,87,90,96,94,99,105,77,84,94,99,110,93,106,95,108,98,103,107,96,102,99,69,82,100,108,96,117,102,104,95,95,106,108,94,84,104,113,100,111,98,99,104,116,99,100,143,106,96,112,105,105,100,98,83,98,92,92,85,100,106,109,102,98,96,90,99,102,103,90,96,98,98,98,104,107,90,113,80,111,102,95,105,111,106,103,102,99,92,95,121,110,107,100,112,103,105,104,92,102,101,100,108,100,120,97,97,102,105,105,97,128,94,103,105,100,100,97,95,98,88,95,104,107,120,98,110,99,99,96,109,92,98,89,108,101,98,115,99,104,89,101,105,107,95,87,98,93,113,97,91,109,92,107,94,98,97,105,97,102,104,96,104,87,105,90,125,101,95,91,105,94,103,100,96,106,109,105,97,90,100,101,96,101,97,98,89,101,99,103,109,76,99,108,91,106,104,107,100,100,94,106,99,104,95,95,94,101,105,119,97,105,104,104,102,113,110,99,104,105,103,108,121,96,103,98,92,87,105,103,109,108,110,95,113,105,107,105,101,92,100,106,112,104,100,95,102,103,112,105,94,94,97,103,106,112,98,97,94,104,109,80,100,92,104,100,104,101,91,102,81,104,88,104,95,112,105,86,96,102,90,101,101,103,102,98,100,107,100,102,103,111,108,101,106,99,114,100,98,102,101,97,86,91,109,103,101,99,100,103,102,97,97,98,106,109,97,89,102,104,108,97,99,106,111,106,112,102,107,80,113,96,116,91,110,99,97,101,103,105,91,105,109,103,95,102,99,104,100,106,97,84,104,93,109,104,99,101,109,109,111,103,93,103,128,93,95,106,95,90,97,99,114,97,110,112,105,101,97,95,97,94,104,79,92,114,99,101,95,90,99,105,98,103,101,101,92,138,100,101,107,94,91,104,104,114,112,101,105,101,68,87,100,108,110,107,100,94,102,115,110,109,99,106,104,102,111,94,96,94,101,99,110,101,103,103,104,108,103,95,94,91,105,101,100,97,97,99,91,100,113,95,88,102,104,94,96,103,97,110,111,106,101,101,102,103,95,104,96,91,98,113,96,108,108,108,94,100,95,92,115,112,107,103,100,95,112,96,99,100,107,106,92,109,102,78,109,119,99,92,95,99,97,104,97,93,99,104,107,85,102,87,92,110,107,103,95,109,99,103,105,89,102,105,106,105,112,100,112,77,109,103,83,107,105,116,101,109,96,104,99,102,98,102,100,90,99,96,98,102,111,103,97,99,103,93,105,103,113,84,114,99,106,95,92,86,106,101,107,103,106,104,100,104,99,105,96,110,101,102,103,98,108,109,98,105,101,100,95,110,95,106,95,94,87,102,100,111,101,99,105,97,104,100,93,90,109,103,99,67,91,101,110,108,101,101,79,93,116,108,100,100,93,99,82,94,102,106,111,89,103,101,100,105,106,103,104,112,100,96,100,97,79,107,107,97,97,101,106,98,101,95,101,96,102,104,92,107,62,98,75,109,91,92,89,103,107,109,112,100,109,103,103,110,108,100,100,111,102,108,97,92,90,112,101,98,100,100,92,97,97,103,98,116,90,101,113,96,113,100,121,111,89,101,106,96,95,103,98,92,87,96,92,106,101,100,112,91,105,111,110,96,98,99,98,112,105,100,118,107,87,94,98,101,97,106,109,102,101,101,96,97,92,112,111,109,102,91,107,100,109,97,97,108,97,104,110,107,94,93,97,101,99,97,141,109,100,99,100,88,113,94,97,109,94,98,104,92,111,84,97,103,98,99,101,103,100,101,98,99,102,105,100,92,104,103,100,99,95,108,106,106,106,102,88,105,105,103,95,104,98,110,108,94,77,105,97,105,104,92,112,99,96,97,119,97,94,107,102,92,92,97,113,98,89,96,116,97,97,90,97,96,101,103,103,88,99,94,101,99,100,108,105,99,96,99,100,104,116,108,98,92,95,99,95,104,99,105,105,103,91,100,108,100,97,109,105,100,105,101,95,96,98,97,105,77,99,104,91,105,96,104,98,99,103,107,113,92,103,109,98,100,98,114,105,94,105,75,117,104,109,89,96,92,108,85,91,100,96,87,106,98,100,106,99,115,91,100,105,99,114,100,100,87,102,101,99,107,97,83,103,91,96,101,113,107,109,88,92,101,107,105,100,94,94,77,83,88,98,104,117,98,98,93,100,114,90,105,100,97,106,106,97,117,100,97,95,113,103,101,102,93,93,98,98,97,114,93,105,100,102,102,114,107,107,98,104,106,98,99,98,106,93,99,106,99,104,110,102,100,95,104,102,92,108,94,99,94,100,102,84,97,95,94,95,106,98,95,113,100,99,101,102,99,93,89,98,103,108,103,109,88,106,95,102,98,113,97,96,96,90,99,93,93,104,99,98,91,112,116,101,98,97,115,102,98,100,92,99,104,108,100,98,120,105,103,91,89,105,98,107,99,95,105,104,100,117,98,106,105,105,104,93,105,93,105,98,108,113,98,99,105,102,95,103,92,112,98,103,91,109,97,122,101,98,96,98,100,104,94,107,109,88,95,99,90,108,92,99,113,93,100,98,99,85,105,98,107,103,91,107,91,103,95,94,110,104,87,100,99,108,94,106,99,99,95,106,98,108,96,104,103,103,112,100,95,106,100,103,102,100,93,101,94,100,95,104,108,111,120,97,105,106,83,99,122,95,112,104,101,95,101,101,105,116,94,81,94,95,105,100,109,96,109,102,108,96,98,99,106,96,85,98,93,113,94,93,105,99,106,91,94,99,92,95,111,95,107,91,103,113,74,95,100,97,98,100,103,122,104,91,96,117,94,99,110,101,104,104,99,117,98,83,95,92,101,96,109,100,89,95,102,99,104,100,108,103,81,101,104,116,103,103,97,91,112,103,92,97,109,126,111,105,92,102,84,100,109,106,109,103,94,109,91,111,117,98,102,106,97,105,96,115,103,106,113,102,104,99,96,103,102,86,101,92,96,96,97,99,101,97,102,133,96,98,93,102,91,98,89,112,96,100,98,93,102,104,100,111,109,96,103,111,97,90,112,104,94,109,105,107,104,91,101,97,94,96,99,100,105,102,108,92,102,103,100,100,100,105,97,106,100,107,106,80,108,97,107,104,101,98,112,106,87,112,102,105,93,105,103,107,103,96,101,99,80,91,95,109,97,104,95,113,94,95,102,98,97,94,97,97,109,103,100,93,83,98,102,106,102,96,99,96,113,96,106,105,91,101,71,92,87,100,105,101,91,96,104,94,104,85,98,86,91,100,94,99,96,101,120,101,104,83,97,98,106,105,71,110,97,93,102,99,90,101,107,95,107,96,88,109,99,106,83,101,109,101,91,101,104,114,90,112,99,106,101,98,100,94,94,95,96,102,97,98,98,101,105,104,98,102,98,90,89,95,100,95,98,96,98,102,111,110,94,105,94,84,86,103,97,100,99,104,91,94,104,92,83,114,108,110,103,112,95,99,100,106,96,90,88,112,98,96,98,112,109,97,102,108,98,114,105,105,121,92,87,107,95,113,79,106,105,103,105,98,79,92,94,93,102,100,105,98,107,94,98,97,100,92,99,99,107,124,94,112,104,99,104,97,88,105,98,97,98,103,104,95,98,101,102,100,81,104,101,101,102,98,107,94,111,103,104,106,94,107,86,100,103,116,102,104,109,91,105,97,84,106,93,91,99,89,101,94,98,105,100,113,95,95,96,107,95,104,106,110,110,98,107,100,92,91,92,103,83,107,97,97,98,103,97,94,98,89,100,80,107,99,112,92,106,79,103,104,107,89,96,93,104,84,98,101,110,113,81,93,85,126,99,99,109,92,102,90,114,104,109,108,100,95,88,81,97,88,112,97,105,95,108,102,100,102,106,115,101,88,105,106,102,95,89,105,104,101,97,82,101,99,106,105,102,95,129,88,92,103,93,88,118,98,79,94,97,108,100,98,98,107,102,96,94,97,101,104,100,88,99,102,91,108,102,109,102,114,96,110,96,106,113,102,102,113,104,103,105,100,99,99,105,81,103,104,123,103,104,109,100,112,104,101,93,103,94,103,96,95,92,99,104,104,99,102,94,92,95,98,107,101,102,102,99,101,97,100,96,100,78,86,91,105,99,106,107,99,91,104,103,96,105,85,109,92,88,99,96,105,118,102,109,98,97,117,108,100,100,100,92,99,107,100,88,107,110,105,108,116,90,98,108,105,88,103,95,98,97,71,87,91,102,102,89,105,96,103,103,98,92,94,104,94,118,87,71,108,98,107,98,95,97,106,90,107,117,93,93,107,92,88,84,106,98,96,98,91,100, +675.26044,108,100,103,91,103,91,95,134,115,109,105,104,106,104,101,92,112,99,113,97,105,104,86,106,91,106,108,109,83,99,114,106,93,97,94,113,102,92,102,99,100,114,98,97,126,91,105,99,96,103,94,93,103,87,102,106,96,122,102,97,109,112,94,92,110,91,93,97,96,88,106,99,91,110,110,109,99,94,112,94,110,100,96,100,99,99,95,102,113,108,102,101,103,101,87,106,106,109,95,113,123,104,100,103,98,79,107,105,98,109,104,106,109,93,103,101,96,104,109,90,109,87,112,83,104,101,109,94,95,99,95,104,95,90,108,81,106,97,108,110,93,100,93,97,99,99,110,99,93,106,95,106,99,96,93,95,92,97,108,106,103,106,99,101,96,107,112,110,83,94,99,100,98,96,98,99,97,88,109,103,103,97,104,109,90,94,95,112,93,98,86,83,106,102,97,109,111,111,93,96,104,93,101,104,101,96,99,107,103,95,110,99,104,109,103,96,87,102,100,104,99,95,99,97,101,104,100,104,99,103,87,95,110,101,103,94,96,102,99,91,116,99,98,113,101,103,94,103,102,101,103,100,104,95,86,100,99,114,101,107,105,92,101,113,84,92,104,101,91,100,97,99,109,110,104,108,101,104,118,98,77,105,102,101,107,94,93,107,106,118,101,95,113,114,104,99,106,99,100,93,93,95,110,105,105,102,106,115,91,112,101,107,99,93,97,98,103,106,99,92,99,94,98,99,101,100,104,76,102,105,108,91,108,98,76,100,114,97,84,106,99,98,102,105,96,103,88,95,97,99,102,97,106,96,105,115,112,106,111,93,94,96,90,92,108,97,97,104,97,97,105,97,107,84,120,96,104,111,101,102,105,100,94,100,93,107,97,98,86,91,104,92,91,106,107,95,108,103,103,99,103,99,91,95,91,90,101,103,98,98,90,102,92,94,108,91,92,105,110,81,107,102,96,103,101,82,98,95,93,102,101,97,102,104,97,106,83,112,91,110,98,101,100,102,94,94,93,102,109,109,103,99,100,105,103,128,101,92,106,105,101,110,105,97,114,95,108,96,108,103,95,100,95,96,110,90,101,98,96,104,104,90,104,100,93,101,106,100,110,99,117,105,110,104,92,99,101,100,105,89,105,93,94,98,104,111,100,100,95,101,116,103,100,79,94,100,108,97,91,104,100,93,94,104,100,112,100,104,101,104,109,108,97,107,103,107,96,94,94,104,102,108,100,94,115,100,108,103,102,104,92,111,101,102,103,103,97,102,93,99,97,104,106,106,92,94,107,102,92,108,95,109,104,100,103,100,104,94,113,87,102,95,96,111,108,105,99,94,96,97,99,101,106,97,95,100,102,93,97,105,96,97,97,109,101,98,68,103,95,94,106,88,98,101,105,125,93,114,105,91,79,100,98,95,92,95,93,97,106,102,105,94,101,95,98,108,95,109,70,102,94,104,103,100,96,98,104,107,105,106,92,107,118,111,81,91,111,95,93,93,106,104,113,101,95,98,98,99,99,98,69,98,99,104,98,105,103,106,103,102,117,94,105,94,108,101,105,93,99,96,99,82,107,102,95,101,103,111,102,88,99,91,104,99,99,91,108,100,106,97,98,95,101,93,99,92,94,101,95,97,101,107,99,106,104,113,117,119,98,98,111,107,107,87,101,107,95,95,103,109,91,96,95,96,99,94,98,106,102,96,108,108,93,105,102,112,88,99,112,106,115,91,96,99,96,91,86,95,100,97,109,103,98,95,93,107,131,104,107,94,103,99,108,113,98,102,96,106,97,103,106,109,122,105,113,93,100,114,96,99,90,94,89,95,104,116,116,104,101,96,102,103,83,110,114,96,93,96,112,101,102,100,98,109,107,95,100,100,108,94,118,106,103,106,101,99,97,105,95,100,90,101,108,97,102,84,101,106,106,95,99,86,109,92,97,96,115,104,90,97,114,92,108,107,108,103,99,99,105,92,100,100,104,100,95,102,94,96,106,113,107,108,100,98,95,101,95,106,102,104,102,103,103,102,103,97,98,99,111,104,92,108,103,104,103,86,100,95,103,93,101,99,108,86,113,107,109,97,99,106,97,118,100,100,98,92,91,100,104,103,107,121,105,99,96,114,84,94,111,115,97,104,97,105,83,94,95,102,113,103,105,95,110,103,104,98,103,103,88,109,99,109,101,103,107,99,99,101,101,110,96,101,104,100,101,97,103,98,95,95,91,99,85,88,96,90,87,92,106,87,111,96,99,88,75,99,103,99,91,99,89,101,98,114,105,108,95,93,94,89,109,100,99,96,86,108,102,105,105,95,102,99,95,90,105,109,108,109,109,87,87,99,112,93,95,86,96,106,114,109,105,67,93,102,94,104,100,94,111,113,106,102,102,100,104,101,99,94,103,98,92,87,98,102,94,110,108,92,87,102,87,100,110,93,113,105,90,113,90,92,104,129,97,104,91,113,116,89,110,104,104,104,103,105,108,112,107,111,110,111,102,117,96,108,115,96,106,100,95,89,103,109,111,93,91,104,111,106,93,101,103,97,100,104,103,81,98,111,102,97,100,107,109,105,96,104,106,100,110,103,113,101,117,118,102,98,96,120,109,91,107,97,102,108,110,109,100,100,101,96,97,104,100,96,111,111,104,101,111,98,91,105,103,102,108,108,99,105,111,106,123,99,96,100,111,96,106,95,102,102,102,99,111,121,108,100,119,87,107,105,109,112,100,90,98,124,109,95,91,101,100,109,109,104,106,121,89,112,109,103,109,93,75,100,102,84,106,100,109,108,100,104,92,116,97,97,102,106,98,102,100,108,99,83,119,104,113,109,114,102,97,109,99,103,100,106,92,92,105,101,101,105,86,108,107,96,105,104,99,114,104,101,105,111,98,99,96,113,97,125,118,98,121,107,103,105,91,121,108,107,92,71,105,108,118,106,105,111,113,98,95,113,96,135,101,104,105,109,106,97,96,108,103,102,104,109,102,105,104,102,111,99,109,108,103,106,102,108,101,102,95,92,102,117,107,93,113,102,91,118,97,111,120,100,101,99,113,99,106,100,95,99,109,104,101,101,124,97,101,101,101,106,104,122,109,97,111,92,116,106,101,106,87,95,108,98,96,100,94,99,104,109,102,103,100,100,97,101,102,113,93,100,108,104,101,79,101,110,106,103,96,100,101,95,108,107,118,105,106,99,101,101,101,97,109,103,94,115,134,104,97,114,93,109,111,103,100,100,119,95,89,109,104,118,108,104,110,108,80,100,109,106,111,109,105,119,98,91,106,99,99,96,112,104,104,102,107,94,96,112,103,103,104,108,102,129,111,113,96,109,101,95,104,105,87,102,99,95,96,92,96,100,103,103,108,105,109,100,106,103,109,118,98,102,100,115,111,93,91,107,110,91,97,104,94,95,104,103,113,98,90,97,105,114,89,93,107,98,95,103,105,116,112,91,100,115,106,108,103,103,105,105,103,100,98,107,104,98,101,94,91,113,102,104,117,97,99,105,101,91,106,101,97,109,114,98,101,120,99,100,117,103,97,106,88,110,102,108,104,113,111,89,103,118,105,109,105,100,90,103,103,99,99,106,105,105,109,105,108,100,98,111,98,98,98,103,99,105,98,102,98,112,109,119,102,108,91,96,90,100,113,117,102,109,97,100,104,110,116,102,113,103,100,102,96,95,101,100,107,101,107,91,88,104,110,111,100,98,107,95,97,103,106,105,116,109,121,110,107,104,103,109,95,102,102,106,109,99,106,107,107,95,106,107,107,96,100,100,102,91,102,120,94,110,101,98,100,100,102,106,106,81,117,77,93,107,97,101,104,101,98,103,100,103,98,102,101,99,108,106,101,94,89,98,111,103,112,107,113,101,96,103,97,101,104,103,103,105,98,97,98,103,105,106,95,101,115,94,102,117,92,112,110,111,96,105,104,97,108,98,95,117,111,104,95,101,91,104,97,100,125,98,98,103,105,107,100,98,91,100,99,101,108,101,112,101,108,107,109,97,112,113,100,110,112,106,101,103,108,100,107,95,101,105,111,110,105,110,99,118,105,97,108,101,99,106,95,110,91,93,110,101,96,104,98,94,75,98,104,102,102,103,113,109,103,127,101,93,115,102,98,109,114,106,127,104,103,110,102,105,107,110,124,119,104,93,118,93,107,98,106,108,110,101,111,109,106,109,101,98,107,108,111,101,108,101,99,104,104,101,112,102,106,104,94,100,104,113,99,86,97,98,89,101,94,102,109,97,104,100,101,99,107,112,99,99,102,102,108,97,96,118,100,100,115,113,93,93,106,106,106,102,111,100,100,101,104,117,102,109,101,99,107,103,110,105,96,108,97,110,105,104,97,102,105,102,105,97,94,107,101,101,106,113,96,104,104,114,121,87,113,108,98,108,98,101,101,101,93,101,103,116,98,106,107,105,84,94,102,88,117,103,88,100,83,95,102,91,108,112,98,108,97,101,116,106,101,107,86,99,114,93,94,107,105,105,98,98,103,106,103,129,103,106,102,120,107,95,109,109,97,108,107,104,113,101,95,100,109,103,98,117,101,96,93,103,108,98,93,108,109,99,104,115,101,107,100,98,95,100,111,104,100,113,95,96,91,86,105,102,113,98,101,115,100,101,91,101,105,95,97,95,112,108,121,98,102,104,105,98,107,103,107,101,95,104,106,117,103,132,121,97,111,104,101,105,102,97,103,94,96,107,107,104,88,111,105,104,101,105,106,94,93,109,93,95,102,89,116,100,90,114,83,103,91,113,98,89,93,104,110,94,110,93,97,96,104,97,93,115,77,105,104,116,113,103,106,97,106,68,99,105,107,99,92,90,101,100,106,108,99,105,125,99,105,109,115,92,89,96,105,136,103,99,101,103,102,101,98,103, +675.40167,104,107,92,112,97,104,116,99,90,81,100,96,103,113,108,106,97,103,100,97,97,92,105,109,95,105,121,105,105,109,95,102,117,120,99,106,99,97,104,97,107,95,104,103,112,118,109,103,103,107,100,104,103,95,98,101,92,98,97,94,94,99,110,120,136,112,96,96,104,103,104,112,96,105,94,104,103,98,106,97,103,105,87,95,100,98,109,104,112,95,102,102,105,108,99,98,104,105,96,96,96,96,90,103,108,106,105,109,107,103,102,90,114,103,100,99,86,101,110,91,97,105,109,102,107,114,102,97,107,83,101,97,101,138,109,102,91,97,106,104,101,111,93,105,104,105,97,115,104,93,97,109,107,95,86,101,101,91,91,95,88,91,106,122,99,89,99,103,96,108,101,107,99,115,102,95,102,110,112,99,112,103,115,103,99,106,89,90,100,99,99,103,112,110,106,109,87,110,107,103,100,102,95,108,94,117,101,108,106,115,100,106,104,103,112,93,112,98,113,96,100,104,85,93,104,105,99,118,106,99,103,106,96,103,110,113,112,112,102,104,98,104,106,104,102,106,103,104,102,92,107,103,118,95,108,106,94,108,94,112,107,104,112,110,109,99,95,101,107,102,103,122,117,106,95,108,96,103,101,104,106,108,102,114,91,104,83,99,105,98,114,72,107,104,98,120,98,119,101,87,105,100,103,107,94,107,98,112,97,116,98,115,101,101,107,94,114,104,101,101,96,102,104,98,93,94,89,105,99,109,102,102,103,117,102,110,99,97,103,98,109,109,104,104,109,109,107,107,112,111,86,121,111,99,114,103,109,117,104,103,105,96,95,103,94,109,135,108,107,114,110,98,101,105,115,102,100,111,103,108,95,105,98,101,104,100,92,106,103,95,111,89,95,107,97,108,109,102,105,106,111,99,104,108,101,110,99,101,91,94,101,89,105,87,97,99,86,96,101,101,101,73,101,106,101,94,91,93,101,117,105,104,105,92,101,103,98,99,123,109,110,100,104,100,102,91,98,118,100,83,106,97,117,100,96,105,96,109,104,99,101,110,119,109,100,105,98,106,106,104,101,105,103,112,99,89,111,108,111,110,104,112,115,112,108,99,101,94,101,104,108,101,97,88,98,91,110,110,106,108,110,99,113,108,96,98,98,95,105,109,106,100,116,94,101,95,109,98,109,96,107,104,103,99,107,98,95,108,91,104,104,110,91,113,109,97,105,96,106,112,107,92,99,102,108,99,117,103,105,109,105,109,121,105,102,95,110,100,100,101,94,101,101,102,101,110,105,107,97,105,97,96,103,95,111,105,107,74,99,100,114,93,113,100,105,113,98,107,98,108,104,99,95,91,102,105,111,102,109,116,101,101,111,99,112,101,98,95,108,116,109,103,102,112,111,101,99,98,99,94,106,102,103,94,104,106,95,109,103,111,106,106,90,104,95,109,99,104,104,95,109,119,108,94,94,98,101,107,102,106,94,101,97,100,107,98,97,106,99,97,99,109,99,101,90,97,104,97,102,97,101,107,97,91,100,104,104,114,112,104,99,103,100,100,112,110,103,103,111,100,106,93,86,106,90,100,74,116,111,77,99,101,104,108,101,106,107,104,99,101,112,98,99,97,111,90,89,67,103,107,108,123,95,100,91,99,105,103,97,97,107,114,103,95,108,98,92,104,95,98,103,99,108,99,96,105,89,97,101,108,114,94,101,93,106,106,101,87,102,101,99,108,97,102,102,101,92,114,93,99,100,101,108,105,99,93,103,108,103,99,97,101,102,104,110,113,106,113,110,98,116,110,100,111,100,100,110,99,105,110,92,88,96,90,96,94,110,98,110,99,114,101,102,109,102,106,121,99,95,103,105,102,110,114,118,103,103,112,105,108,117,98,109,112,116,103,97,97,108,103,100,105,113,102,108,98,92,93,103,108,104,90,94,119,110,98,95,101,101,96,112,95,98,106,99,99,99,106,114,111,103,96,105,114,91,106,96,94,101,111,100,103,105,107,103,94,98,107,108,105,93,103,94,98,103,101,107,102,98,114,109,102,96,104,107,103,81,92,97,96,96,112,113,111,99,110,105,102,96,102,105,96,87,106,109,109,100,109,93,96,105,115,104,104,108,104,95,113,110,95,98,104,94,108,103,111,92,96,101,102,117,97,102,95,109,97,117,113,93,101,111,108,127,111,112,103,107,103,103,99,102,100,99,97,102,103,100,103,103,108,100,111,96,108,97,104,101,96,106,95,96,98,112,93,109,92,101,97,109,106,104,92,106,103,106,103,101,101,100,106,85,100,96,104,98,102,112,111,111,117,80,100,103,92,106,102,98,96,98,96,99,103,101,102,116,86,103,99,117,113,94,96,81,112,91,101,99,112,101,107,115,110,112,105,93,105,109,104,114,117,91,97,110,110,108,114,101,90,104,100,113,103,114,110,94,103,100,117,96,92,102,103,89,109,102,110,98,100,100,112,118,108,81,91,114,96,99,99,102,90,98,108,106,105,111,113,105,94,117,104,106,97,106,93,116,87,99,100,89,107,91,101,95,101,104,112,94,113,95,109,113,100,93,94,88,103,105,109,89,100,101,94,81,98,89,85,103,106,98,94,106,93,111,74,99,94,98,92,113,104,102,85,115,100,105,107,103,104,103,91,100,99,106,102,97,105,101,105,114,99,109,94,109,100,96,104,99,102,110,110,87,102,100,110,104,87,99,90,108,104,109,83,103,85,96,109,101,99,108,90,100,95,112,109,112,110,106,89,101,101,104,109,109,97,99,109,104,105,106,110,96,95,102,105,99,110,103,108,104,116,100,95,108,93,101,105,113,103,99,110,101,103,98,123,100,77,106,95,93,97,105,82,94,100,97,94,107,97,96,109,110,115,102,102,100,104,102,94,101,108,104,98,101,113,105,100,92,112,115,102,96,116,98,100,101,98,95,103,105,107,109,110,84,102,95,101,109,105,76,90,100,104,108,92,102,91,112,107,103,103,102,106,96,104,116,94,101,98,102,91,98,96,96,95,110,109,107,98,94,99,102,105,102,95,85,96,104,104,120,103,105,113,92,102,97,99,96,94,91,102,106,108,94,107,113,96,98,104,93,99,112,93,100,105,94,94,101,102,106,105,109,95,94,95,117,74,101,112,101,108,102,95,102,96,103,111,91,97,101,103,97,102,105,96,94,102,95,114,110,113,106,96,99,99,102,101,98,108,103,111,94,104,97,94,99,104,107,105,106,95,98,103,110,103,114,94,94,137,101,103,110,95,105,103,102,102,101,108,112,101,108,108,105,109,105,101,86,104,99,107,108,95,87,109,103,111,101,97,102,111,107,107,106,104,96,115,101,113,89,94,89,98,105,99,87,91,103,110,91,97,95,97,96,111,99,112,95,96,95,95,85,99,100,104,96,86,64,124,100,103,101,92,99,87,117,96,102,106,96,92,103,97,97,96,100,101,102,70,103,96,92,102,117,97,106,101,112,103,92,91,104,105,96,103,99,116,97,103,113,94,101,95,106,111,100,105,106,103,102,105,91,100,98,104,109,106,95,100,116,105,107,89,103,95,103,102,97,104,99,100,102,111,100,95,84,103,97,115,108,98,92,92,109,97,90,98,103,102,128,97,106,109,107,100,96,102,78,100,113,96,102,110,101,103,97,91,94,106,103,100,106,109,103,96,103,93,97,98,100,91,99,88,101,88,108,102,101,109,91,100,103,101,110,101,103,83,107,102,100,97,98,99,99,95,98,80,96,98,103,98,102,102,96,79,89,97,79,96,95,111,110,104,89,113,104,100,109,94,105,107,102,100,96,116,98,107,104,101,101,102,104,100,97,105,96,93,105,99,94,96,101,110,94,96,100,92,105,103,93,100,90,92,106,94,96,99,95,104,102,85,88,82,94,99,102,96,103,85,121,101,103,98,96,108,98,104,99,98,107,95,88,101,107,93,103,90,99,82,88,104,93,95,103,97,104,92,97,93,97,103,98,102,106,97,99,103,99,106,73,113,104,106,107,98,99,86,123,87,92,87,102,92,88,82,103,105,101,95,106,98,117,98,130,89,106,112,101,101,105,88,109,99,98,105,96,106,101,102,96,105,102,101,98,102,113,98,85,103,105,104,100,98,96,103,101,96,89,103,97,99,102,120,93,97,104,96,111,106,99,108,116,110,100,78,98,104,96,102,95,116,108,118,90,95,107,107,100,106,92,108,98,87,96,102,97,107,113,101,115,87,94,101,104,90,99,95,117,103,101,112,105,101,100,102,106,108,110,95,86,83,87,109,99,105,95,97,103,111,92,107,101,100,105,102,101,99,105,99,95,109,105,91,100,90,94,92,70,95,94,105,113,107,85,102,90,100,91,101,122,94,95,109,100,100,99,105,91,98,65,105,99,103,103,96,94,105,99,101,106,87,109,101,101,91,94,100,98,97,95,107,101,108,107,94,116,102,106,99,101,114,95,62,94,102,102,99,94,76,92,102,98,88,113,101,100,87,93,106,96,102,106,93,101,84,81,98,102,94,99,79,108,114,101,98,89,105,101,92,103,97,93,107,102,102,103,100,110,105,97,109,103,92,104,110,123,114,113,109,96,109,87,94,94,98,98,106,94,97,104,96,94,99,98,98,112,93,104,100,116,100,92,93,82,110,95,104,104,102,100,93,90,102,99,99,101,101,84,94,86,91,92,111,89,94,96,101,108,96,95,104,96,106,108,98,98,103,95,100,98,105,104,116,99,95,100,102,92,99,104,97,107,96,109,110,110,96,97,99,102,108,105,85,107,93,105,98,90,103,92,100,104,108,96,104,106,89,104,102,107,102,87,99,102,107,93,106,107,86,107,106,110,95,111,105,113,105,95,100,99,94,99,103,96,64,114,88,92,128,104,110, +675.54291,98,109,94,81,103,97,92,91,91,111,103,108,105,91,96,108,96,115,100,88,112,102,98,101,88,101,89,99,99,98,106,98,96,99,108,102,120,99,95,112,110,110,117,88,105,105,98,89,89,117,115,99,105,100,91,105,100,105,111,87,92,99,108,100,111,115,93,123,113,100,111,115,93,112,102,103,97,100,110,90,107,101,110,106,98,101,102,107,99,104,90,92,108,94,113,107,104,96,104,97,103,96,103,85,86,102,98,102,104,98,102,108,105,102,108,108,97,100,102,104,98,97,104,109,90,104,99,99,106,107,59,96,107,112,101,108,98,98,89,107,104,91,81,93,99,98,101,108,109,107,94,100,100,101,102,104,101,109,103,110,91,93,102,101,96,109,97,88,99,96,96,109,106,95,101,122,105,93,110,105,101,111,103,115,107,100,104,89,100,92,91,114,103,98,95,100,109,100,104,107,95,112,113,94,103,103,117,89,112,108,102,83,99,99,95,101,110,115,129,95,104,99,106,99,107,110,104,101,96,112,104,117,118,102,88,112,94,107,103,104,99,105,110,101,103,127,106,105,103,105,102,81,99,101,100,108,96,98,94,116,112,89,102,109,99,110,102,103,105,91,97,94,111,96,111,111,94,95,100,110,103,99,97,107,106,99,91,106,104,106,100,108,96,110,94,105,111,88,112,105,101,94,109,116,95,107,122,105,99,115,98,110,94,83,106,101,85,103,92,112,108,87,96,106,103,96,96,90,92,98,89,104,105,98,98,111,108,100,80,91,94,117,94,107,102,101,102,99,99,98,96,106,92,105,106,109,117,113,95,100,98,94,94,91,103,93,97,98,93,100,107,95,100,88,98,105,111,100,72,97,116,94,88,113,98,118,105,101,100,104,118,100,105,110,96,97,99,100,99,117,100,100,80,94,115,100,104,101,125,106,97,99,101,106,103,93,96,102,91,106,101,97,97,114,102,93,111,106,107,98,104,91,94,92,103,92,105,105,91,92,111,105,96,97,92,113,97,101,107,105,100,103,108,104,102,98,98,103,109,96,97,102,118,95,104,102,94,113,107,102,98,97,123,103,110,91,96,105,106,107,97,105,109,101,94,105,104,102,94,95,93,104,102,108,101,111,103,108,104,111,110,102,102,104,112,96,88,100,111,98,105,92,87,102,104,109,90,110,104,96,102,106,107,109,104,101,115,101,97,100,104,113,107,97,102,110,112,97,103,101,107,102,100,99,109,106,102,105,116,103,108,91,94,99,99,99,108,112,94,112,109,98,98,113,94,95,94,94,109,102,87,101,99,108,109,104,94,107,96,98,104,106,108,86,105,105,112,106,108,104,110,112,100,123,108,100,102,91,100,96,99,106,98,113,107,98,104,97,105,104,101,104,113,99,109,104,105,110,106,100,96,98,108,95,99,106,100,104,107,91,104,118,126,103,85,115,97,105,110,109,95,107,110,104,109,95,101,91,114,105,106,95,108,105,111,107,91,109,104,84,107,117,103,93,99,116,106,98,101,93,104,99,106,102,99,103,102,108,109,111,106,99,105,84,90,94,94,105,94,112,94,105,93,108,93,97,99,106,106,104,99,98,103,106,103,89,81,119,110,104,107,72,103,101,102,95,98,98,105,99,92,101,104,103,91,99,104,107,112,101,104,116,96,103,69,96,108,92,95,130,98,101,90,105,89,100,111,101,95,102,107,81,99,104,105,94,96,109,96,109,110,104,100,112,92,105,83,111,96,105,106,101,83,96,111,93,109,99,95,114,104,98,108,102,105,103,102,106,99,115,95,99,102,107,108,98,100,104,99,96,101,101,101,99,103,103,92,99,98,115,105,104,91,97,120,118,103,99,102,97,98,108,99,83,109,99,109,97,94,97,106,106,108,103,102,113,103,100,107,105,107,92,102,90,106,98,94,102,107,99,101,92,109,112,103,100,111,100,98,105,103,103,95,112,122,107,92,100,106,96,104,99,96,110,107,92,123,104,88,98,103,113,108,100,92,102,106,110,94,103,104,104,100,96,119,103,115,101,105,100,98,99,112,102,99,113,97,102,99,105,107,100,116,107,96,103,103,116,139,102,98,112,113,91,94,117,104,88,90,98,87,109,99,100,102,107,87,100,103,99,92,109,108,107,97,109,101,95,100,103,95,108,108,104,96,76,109,93,109,103,102,97,117,98,92,103,91,107,98,99,100,116,99,93,113,102,94,97,104,105,100,131,93,97,102,101,98,106,95,100,104,99,86,105,99,117,95,94,99,105,97,99,97,95,107,95,101,106,92,85,93,105,94,100,99,108,105,96,105,93,112,91,76,94,98,98,94,100,107,83,104,95,100,102,108,94,97,108,111,108,111,99,106,102,113,101,122,117,98,90,104,98,94,103,94,106,104,107,107,103,77,81,102,105,101,92,97,103,92,94,100,102,94,98,108,110,116,102,100,98,97,107,103,106,102,100,95,94,105,104,113,109,97,88,99,98,109,105,91,110,119,85,121,112,102,103,104,104,99,86,96,103,99,110,96,112,93,111,94,102,96,103,104,112,117,77,105,114,113,104,109,103,99,103,108,105,98,102,98,107,98,87,106,107,109,97,109,106,106,96,104,106,100,101,107,95,102,107,102,101,102,98,101,89,98,103,121,103,109,98,104,101,99,88,116,105,95,98,108,102,105,110,110,99,108,111,107,86,120,92,94,104,103,117,109,107,107,105,105,112,100,101,92,99,112,102,112,105,95,105,101,93,104,99,117,102,115,107,108,77,113,107,94,101,97,98,104,118,98,97,101,105,108,104,101,99,103,106,109,109,102,102,123,108,98,100,113,100,90,115,109,105,95,107,87,110,102,102,101,112,92,99,116,105,93,106,71,99,102,102,110,110,98,99,111,99,102,120,99,103,100,103,98,96,109,120,99,111,112,110,111,98,134,88,100,96,97,98,106,99,106,98,94,102,97,98,107,104,104,109,105,105,100,101,107,96,76,102,126,101,102,100,103,102,108,91,105,97,114,96,101,95,103,110,99,106,108,98,104,100,88,105,102,104,96,105,95,99,112,109,90,101,101,98,108,97,101,95,95,108,107,103,105,101,108,91,102,103,95,100,98,103,100,105,110,106,101,96,100,105,101,110,98,100,96,106,102,99,79,92,94,105,97,93,106,113,97,105,112,94,97,96,97,105,112,108,114,111,117,111,109,100,101,105,108,97,91,98,105,99,113,93,97,120,98,99,106,112,100,101,103,101,117,105,105,101,107,100,104,93,106,111,102,99,99,105,104,93,117,98,102,107,107,94,71,101,96,95,107,99,101,103,92,113,106,102,108,95,109,96,109,109,104,105,104,94,112,96,105,97,91,108,97,92,114,96,99,108,106,94,105,100,91,95,103,97,98,103,105,101,95,92,101,98,90,97,104,105,97,111,105,99,101,109,108,105,101,75,99,97,113,104,108,113,98,104,104,91,104,99,101,115,89,101,92,94,97,123,122,116,91,97,106,106,98,110,101,109,104,110,100,99,91,121,99,112,102,109,92,96,95,94,108,97,109,98,105,104,110,102,109,106,113,103,103,103,108,113,111,109,101,104,95,108,93,99,91,103,105,113,83,95,103,103,106,95,99,105,102,95,111,109,100,104,109,94,124,104,108,103,102,111,101,87,95,96,103,102,115,109,105,80,94,105,87,98,98,105,120,99,88,103,97,107,113,97,104,111,103,109,95,104,101,97,111,101,107,98,114,104,105,106,94,88,122,100,101,106,117,94,109,101,98,107,99,104,109,99,98,87,100,109,90,101,109,101,93,104,98,103,90,92,106,103,98,104,86,100,91,107,100,101,100,97,92,102,106,98,102,63,95,84,104,70,109,100,100,94,103,103,117,111,107,103,112,105,106,98,84,91,97,98,97,108,98,97,99,101,109,97,103,99,109,105,103,98,107,102,92,107,99,101,95,104,94,117,86,92,94,100,104,105,95,97,117,103,108,90,98,101,100,106,96,105,104,98,90,104,123,110,116,100,99,76,100,102,97,80,103,84,105,70,108,100,101,104,100,109,100,107,113,91,105,101,113,106,91,104,98,96,109,102,100,108,87,112,102,115,101,92,107,98,102,100,95,111,107,95,108,88,106,105,104,103,97,109,93,107,116,101,97,108,96,95,95,100,117,98,96,95,106,97,96,106,103,107,91,106,71,75,103,94,101,103,96,97,81,102,109,107,106,96,94,100,101,99,111,109,91,95,93,98,102,112,108,97,94,109,110,102,125,112,101,108,111,103,94,113,94,104,115,112,109,108,106,99,98,106,97,107,97,102,112,95,86,103,113,100,102,95,126,102,92,99,87,86,101,101,79,98,144,107,96,100,100,100,109,100,109,104,100,69,95,104,103,101,91,98,101,106,105,95,100,93,98,97,101,100,94,110,100,100,98,100,95,105,93,81,99,102,100,109,116,99,111,93,116,116,105,96,112,90,94,115,102,101,114,113,96,96,99,107,95,108,108,106,98,90,101,103,101,108,81,106,106,114,114,109,113,103,99,111,97,94,105,99,100,98,89,96,96,98,112,102,99,95,100,97,104,94,132,83,100,110,104,106,84,100,103,104,80,100,80,109,108,101,113,93,102,101,106,117,98,99,95,71,96,98,104,99,105,92,120,97,107,103,106,101,96,74,93,94,91,98,99,97,122,91,98,105,91,102,105,104,102,92,105,93,90,91,108,93,83,104,104,100,96,117,98,100,109,105,98,84,106,110,95,99,94,98,95,91,102,104,96,116,80,84,91,122,108,114,97,90,97,100,99,98,105,100,98,111,93,120,116,100,95,110,114,96,92,108,92,93,98,84,88,102,111,96,107,82,95,123,105,85,107,98,101,100,111,92,115,93,88,95,106,108,102,97, +675.6842,97,113,101,110,95,102,109,108,107,92,94,86,101,100,95,98,103,111,101,104,96,103,101,99,104,103,104,108,96,105,111,106,84,102,100,95,100,91,106,120,111,108,95,92,113,107,116,135,109,112,98,98,108,87,95,104,97,101,103,77,118,116,119,99,106,102,90,94,101,100,90,98,102,121,94,106,97,90,98,92,111,104,95,104,101,97,117,90,94,95,105,102,92,103,96,99,95,93,99,98,110,103,109,96,97,95,100,96,104,100,102,94,101,93,91,104,103,105,102,95,96,95,111,99,124,102,91,107,104,104,88,101,99,118,107,98,103,100,99,106,104,100,100,99,98,92,103,96,94,96,105,92,100,117,90,101,103,113,105,103,106,96,103,109,111,112,97,104,110,99,92,111,111,96,95,103,117,93,99,95,98,100,97,88,112,94,97,91,107,92,89,96,98,98,107,100,104,90,99,109,98,102,109,95,94,108,104,98,102,124,101,111,102,96,94,96,95,106,96,110,77,107,105,92,102,102,103,85,98,96,88,67,101,112,121,103,97,109,101,97,107,100,94,110,107,95,104,98,99,118,99,104,93,112,103,106,94,101,111,107,92,102,117,107,91,107,99,99,109,95,100,98,100,98,93,102,95,105,108,101,99,102,113,103,104,98,99,100,105,102,105,99,103,95,114,91,105,91,104,104,96,105,93,103,97,96,102,106,89,102,102,105,101,92,99,103,102,114,108,113,101,107,115,99,96,98,108,89,111,104,107,94,109,100,102,105,92,109,96,91,108,111,93,94,89,103,87,100,103,93,94,111,95,96,102,100,103,97,94,108,105,117,107,109,95,100,101,99,97,102,101,107,108,101,100,95,98,97,105,102,104,108,98,99,97,101,90,106,93,91,107,104,101,111,97,106,85,102,107,103,88,95,89,95,99,90,96,95,96,98,89,100,120,99,92,97,98,97,112,96,100,99,96,123,104,87,100,109,91,108,96,106,101,95,75,91,93,107,88,104,110,102,101,102,101,97,105,103,106,108,106,112,111,107,109,113,107,96,114,96,95,106,96,105,97,100,98,91,113,85,96,100,100,102,99,96,92,102,109,105,110,102,116,126,101,104,103,102,100,86,106,113,112,101,95,96,99,102,98,102,94,107,92,101,95,95,98,92,103,112,105,113,110,103,92,100,97,98,101,111,107,95,116,104,107,103,95,102,93,105,103,109,101,100,96,117,108,98,110,119,104,99,100,101,94,104,105,97,105,107,101,99,93,107,97,113,99,101,98,101,103,109,105,107,105,109,97,112,103,92,95,98,100,107,80,117,99,101,124,113,102,101,96,93,91,96,114,104,110,91,117,104,95,91,94,101,99,101,107,100,99,95,117,101,98,97,102,96,106,96,112,105,99,106,97,97,109,94,99,86,98,90,92,111,98,110,87,88,101,93,102,94,107,90,96,96,104,90,115,88,83,104,105,110,107,107,104,112,102,113,110,99,84,98,100,107,95,99,95,131,100,100,109,107,101,101,103,96,97,104,104,96,105,99,98,106,109,94,102,102,85,100,106,105,97,94,101,108,97,103,102,95,114,94,113,114,105,99,108,95,101,109,102,95,95,97,91,98,83,104,107,102,101,103,112,83,100,107,109,101,99,112,87,110,89,92,104,105,104,107,108,102,119,108,98,98,101,101,112,109,101,104,115,104,95,101,116,108,100,101,101,101,108,88,98,94,96,100,110,101,104,97,96,110,94,83,98,105,103,100,105,99,106,84,117,107,99,106,92,99,97,109,106,101,97,100,82,88,109,113,102,101,83,120,99,89,107,96,91,114,97,99,98,93,106,111,118,105,94,112,105,100,101,108,114,102,108,109,116,96,100,106,105,106,91,113,101,102,101,87,109,102,100,134,99,92,116,100,98,108,94,101,101,98,99,98,101,88,109,98,109,98,105,99,90,98,104,100,101,106,99,105,99,98,99,97,100,99,106,103,96,106,105,95,97,98,111,98,101,100,106,100,100,103,107,110,90,88,101,115,104,99,98,98,107,88,108,109,101,98,103,109,107,105,97,93,96,95,91,106,94,111,99,103,107,103,95,110,98,95,117,109,112,101,105,108,93,100,107,99,109,81,102,134,97,94,97,97,121,96,98,102,101,98,96,105,90,110,88,99,104,107,106,99,97,104,93,113,96,104,103,98,100,104,109,108,100,96,100,105,98,105,97,104,93,91,105,101,92,102,101,97,102,99,105,102,100,113,93,96,93,95,113,104,111,126,99,97,95,103,94,110,103,101,97,100,100,85,93,101,100,106,93,99,103,110,94,112,108,100,111,102,108,97,99,98,102,117,101,98,99,108,109,94,106,94,97,116,111,116,102,102,93,95,109,104,108,90,117,103,105,126,109,100,96,100,96,98,109,93,97,104,106,107,103,106,104,107,111,105,101,109,99,103,110,108,101,105,109,97,94,100,102,104,102,118,91,110,117,103,93,98,103,100,96,109,101,88,113,106,113,103,113,89,108,125,101,106,75,111,94,108,114,122,106,91,105,110,99,90,112,111,84,116,99,103,101,113,112,105,105,125,104,95,94,108,92,104,96,98,101,99,99,109,95,99,104,106,102,112,103,103,105,89,112,108,109,102,98,102,102,87,117,98,109,111,100,103,109,95,117,100,103,98,99,101,96,96,106,93,108,102,105,98,101,98,109,90,99,106,106,107,87,103,106,92,107,104,91,94,105,100,100,102,105,97,103,115,107,105,102,99,115,108,84,110,107,111,107,92,107,100,97,95,100,108,99,115,110,111,105,104,121,107,112,110,108,103,107,111,109,99,103,102,113,101,98,104,95,109,90,109,103,108,101,101,106,99,100,103,111,97,101,98,104,98,93,108,105,100,106,109,110,109,102,106,102,102,108,99,100,97,93,112,109,98,94,95,109,102,102,106,120,106,92,102,100,100,104,100,111,98,109,87,103,108,109,105,99,113,106,133,99,97,109,104,95,93,100,92,102,109,102,102,89,95,103,118,91,104,102,90,98,108,110,109,108,98,105,89,102,112,106,95,95,101,117,110,111,97,105,105,102,115,112,96,112,110,95,102,117,110,117,96,104,91,102,106,103,99,98,111,105,101,110,116,93,110,103,109,96,114,90,103,97,96,100,91,101,99,115,95,98,117,113,102,95,104,99,107,112,95,96,112,98,110,107,92,105,94,102,110,97,112,94,77,102,102,111,105,113,106,103,95,104,99,116,104,103,93,105,108,107,116,112,113,105,100,104,119,106,80,97,88,116,106,92,92,107,104,99,102,105,97,101,101,115,114,105,105,103,104,79,124,108,117,104,104,117,109,96,108,106,99,97,113,108,102,95,114,98,102,104,107,91,100,101,98,107,104,107,97,86,105,100,91,103,112,100,92,107,89,105,114,98,97,95,104,98,107,108,102,112,99,98,113,106,95,102,106,134,116,104,114,101,108,98,108,100,105,109,98,116,96,107,115,118,104,113,99,102,100,102,97,114,100,103,103,104,95,112,118,95,115,106,108,95,108,105,109,99,110,94,105,104,98,96,90,115,104,104,91,101,100,96,95,103,106,96,87,117,86,99,99,109,101,103,110,110,105,98,108,101,99,102,91,101,101,104,96,98,101,104,113,98,98,116,95,101,112,99,111,91,105,96,96,98,94,97,102,100,101,100,102,101,103,103,102,109,104,97,105,112,120,106,116,108,101,115,103,92,101,110,100,101,107,101,95,101,100,99,95,103,112,102,108,105,103,104,112,109,101,105,101,99,99,102,105,99,105,98,114,114,105,94,99,112,102,96,101,99,114,102,103,110,100,103,107,100,98,109,102,100,100,106,100,101,92,106,113,96,108,109,98,102,113,107,97,112,106,94,101,107,91,98,101,103,103,101,110,113,100,105,107,102,83,104,98,102,96,109,90,98,117,110,124,103,83,104,108,98,93,78,104,109,90,101,96,97,91,119,104,109,108,110,101,108,102,96,107,98,92,99,104,107,104,118,102,110,88,117,105,112,95,98,109,98,87,97,107,106,105,109,78,101,108,85,103,103,101,101,93,104,100,92,100,115,92,105,104,98,100,90,101,102,102,107,98,102,93,94,93,113,110,90,105,91,89,99,95,99,97,98,96,95,102,99,101,99,111,98,101,100,84,102,109,100,109,100,94,115,106,102,104,110,109,101,103,104,95,99,116,109,107,90,98,99,102,117,99,104,115,99,109,107,101,105,111,106,98,99,104,106,104,114,100,101,103,74,119,99,92,109,98,98,111,98,100,98,98,103,100,100,104,95,104,96,102,110,108,116,106,104,105,97,96,95,108,107,89,97,104,98,104,95,98,110,96,112,124,101,96,103,95,106,113,104,104,105,112,111,105,87,106,103,109,99,105,104,104,69,98,104,105,97,101,93,101,98,87,100,96,89,100,97,99,121,101,107,101,115,102,109,95,95,101,103,105,97,98,107,99,114,102,103,111,104,96,101,93,93,100,96,112,82,103,107,102,94,95,101,102,112,78,103,99,102,117,84,117,91,99,97,98,103,101,86,109,117,107,107,109,102,98,100,109,102,97,97,105,104,106,103,138,117,110,101,102,102,69,100,108,101,101,101,96,117,115,98,98,102,112,116,109,106,89,101,102,107,95,110,91,105,111,104,103,87,106,87,92,102,103,100,103,118,108,105,102,108,107,105,98,111,105,91,97,98,98,108,106,105,106,99,101,104,120,108,103,94,111,103,100,103,116,106,94,98,107,117,92,109,106,92,103,117,110,116,104,98,103,97,91,101,96,107,98,101,105,108,101,98,103,94,107,102,108,106,103,121,99,113,91,86,109,110,99,96,92,97,97,75,103,101,92,102,99,104,91,108,109,111,97,109,103,111,98,109,104,76,101, +675.82544,104,128,102,95,96,116,102,98,107,106,93,108,91,95,108,93,97,106,109,103,99,113,113,107,90,105,105,95,96,101,94,100,129,98,112,94,110,105,104,98,109,105,94,102,110,80,109,106,109,95,96,127,99,103,99,106,82,99,110,96,100,100,92,118,103,111,100,97,98,92,107,103,103,98,102,111,104,95,101,96,102,94,91,106,106,98,100,85,95,96,100,97,101,101,86,96,106,95,71,96,105,96,108,113,92,98,97,104,101,101,110,117,101,90,92,97,101,98,114,91,92,109,91,112,106,102,118,90,113,109,102,113,102,113,103,104,110,101,101,99,110,108,102,106,105,102,101,86,99,108,109,90,102,96,111,97,106,111,91,106,103,119,123,101,107,110,97,96,98,92,104,105,103,88,91,99,89,93,99,85,98,108,102,111,110,104,94,108,107,101,104,97,92,101,104,103,98,95,99,98,102,110,97,93,103,108,104,96,111,110,87,109,92,107,100,104,95,102,82,87,91,102,91,80,86,99,106,104,113,110,96,109,96,105,99,98,108,106,102,101,96,98,105,97,90,91,83,104,90,92,125,116,101,108,107,102,105,96,106,95,97,107,108,90,104,104,107,104,110,100,105,105,118,116,109,106,112,103,102,108,101,101,104,96,99,96,97,111,81,106,108,103,104,114,103,114,103,98,100,92,99,106,92,113,100,104,98,104,93,113,109,114,103,100,90,102,85,99,106,114,98,96,90,109,106,132,97,98,114,104,105,93,97,111,109,93,111,107,112,113,100,89,116,87,107,103,105,108,107,95,93,94,104,105,100,102,108,95,92,104,111,109,98,105,97,102,101,105,103,95,101,111,107,98,108,84,106,95,103,110,104,102,102,72,96,87,91,104,106,97,100,97,95,117,110,104,99,123,83,120,94,106,97,97,100,89,99,101,94,99,98,95,104,99,95,100,83,100,99,83,114,98,105,102,102,105,104,101,95,112,96,118,99,104,109,104,100,122,96,108,100,105,96,101,94,112,115,104,91,107,104,96,98,105,103,103,92,105,106,98,97,96,96,107,101,107,106,99,105,101,102,114,94,116,90,87,95,103,104,106,102,113,99,105,114,99,95,98,96,95,108,92,105,103,100,108,103,99,103,97,98,108,101,111,97,98,104,91,105,100,88,98,101,94,109,95,100,104,89,91,104,95,100,90,105,111,118,105,115,118,101,104,97,104,101,107,106,98,116,103,98,96,106,90,118,100,100,96,108,114,103,94,107,91,104,116,102,101,108,105,112,71,101,99,100,102,113,114,102,91,105,104,106,108,98,100,115,105,107,95,104,93,102,100,113,101,113,107,106,92,103,117,94,120,98,98,99,101,78,103,96,109,95,96,108,99,99,113,99,111,89,98,108,106,106,96,97,106,107,108,107,104,95,101,100,116,99,96,119,100,108,104,116,105,87,119,101,99,109,104,108,114,101,109,99,122,86,106,107,113,98,106,105,97,64,103,110,93,103,100,100,106,109,109,99,97,107,95,100,123,97,104,101,98,79,103,107,85,106,85,109,105,108,110,98,105,98,99,107,104,97,110,98,104,98,99,95,108,102,101,106,103,101,102,104,112,106,99,87,97,95,109,97,113,110,112,96,104,100,95,100,103,103,104,96,83,104,107,110,103,106,101,106,110,99,91,104,102,103,99,95,83,99,94,98,114,95,112,103,108,106,90,99,94,116,90,109,96,108,98,108,106,91,68,96,104,90,102,90,108,107,97,97,106,95,105,101,99,111,96,106,88,112,104,102,103,92,112,108,110,105,112,80,98,112,95,102,95,104,110,97,106,101,95,106,113,67,98,100,101,107,116,99,93,125,128,107,100,109,98,98,102,97,119,95,101,96,113,100,97,113,99,101,109,100,98,109,102,97,103,82,99,104,92,98,99,105,110,98,94,102,95,121,107,102,94,96,104,106,102,98,102,105,95,102,101,101,94,103,103,107,114,95,107,100,121,108,98,98,96,100,91,101,101,108,99,105,103,130,105,124,109,118,100,114,98,101,104,93,110,106,104,112,99,96,116,101,99,92,116,96,98,109,113,140,103,87,97,105,110,97,109,126,109,105,96,102,127,91,114,91,104,108,106,106,94,100,107,97,97,102,91,90,101,91,97,113,113,110,102,106,94,115,111,101,109,103,97,103,103,106,102,106,100,102,98,97,97,95,99,104,92,79,102,99,107,104,104,104,90,90,99,95,121,118,105,95,99,106,109,93,100,109,100,102,95,104,103,99,112,110,121,93,109,102,101,110,100,77,103,99,111,106,96,105,103,106,100,91,107,111,115,104,95,106,105,99,94,99,109,112,113,101,94,107,98,86,104,108,112,98,105,107,88,111,105,104,108,106,106,100,107,109,108,98,95,106,114,92,98,96,117,109,107,92,104,104,100,106,99,79,102,94,131,100,99,121,104,97,98,112,110,114,112,97,118,99,98,109,109,108,100,96,96,101,93,104,97,105,115,111,98,107,107,108,91,121,105,101,99,100,108,99,83,110,105,93,112,87,100,101,104,104,95,106,91,110,109,112,98,102,107,98,107,109,106,98,98,102,103,111,95,83,111,99,111,104,100,124,97,99,102,104,101,105,99,99,115,101,103,115,98,105,85,95,102,99,105,102,112,96,94,117,94,100,99,113,100,112,110,105,117,104,113,95,104,109,113,89,112,130,112,97,96,88,105,100,102,108,116,104,95,105,106,102,108,110,110,106,112,103,100,101,105,102,105,110,106,117,95,108,112,97,111,108,101,102,105,109,94,83,106,96,106,96,100,125,92,100,123,116,105,133,87,97,88,98,108,110,108,106,109,115,98,99,102,108,119,106,109,99,95,101,100,104,101,110,101,112,102,109,109,100,115,105,119,102,91,96,81,111,107,86,105,116,96,116,104,106,103,112,94,99,86,98,114,111,113,109,101,104,94,121,101,102,94,111,105,115,96,100,116,105,109,110,103,89,97,109,109,112,95,90,103,92,98,106,98,93,101,99,96,91,112,119,99,81,93,104,92,105,102,106,84,106,105,105,110,101,96,112,102,107,109,111,102,104,107,95,98,109,101,98,97,107,104,106,100,112,96,101,104,114,111,109,93,100,109,103,100,107,116,98,100,103,102,98,98,102,96,100,98,108,102,115,95,98,107,106,96,68,97,96,101,95,113,103,105,110,109,107,110,106,100,110,97,110,116,98,103,104,92,118,106,106,110,103,109,105,71,103,111,78,116,111,92,108,118,92,102,96,99,93,97,96,107,101,103,99,99,100,102,100,98,105,102,104,109,98,104,104,100,95,101,108,102,106,101,114,102,96,81,91,112,108,117,102,107,108,102,94,113,99,95,107,107,104,100,105,96,110,106,106,104,103,91,97,116,99,100,89,97,102,109,67,103,119,99,100,108,98,99,123,112,96,102,104,106,102,103,117,98,106,104,96,102,101,109,112,97,91,103,106,94,71,112,113,94,106,97,110,98,99,108,98,103,141,105,113,101,105,96,111,103,85,88,95,93,107,105,93,101,99,103,107,117,97,103,99,110,95,71,102,102,101,99,122,97,101,97,100,103,91,108,99,99,105,107,99,99,65,100,98,100,109,100,114,110,101,98,99,91,100,107,112,92,129,91,103,97,106,104,110,120,96,99,98,111,95,95,100,105,99,100,93,96,93,103,95,98,117,108,96,105,106,95,103,104,98,106,100,101,104,107,113,101,105,102,100,98,102,106,91,75,100,107,102,96,103,104,103,105,94,105,99,101,98,95,118,95,104,106,101,95,104,109,101,101,116,114,113,99,106,107,109,108,100,95,120,110,101,93,107,97,80,114,109,110,108,113,87,105,106,110,123,104,107,107,113,105,92,105,87,95,105,95,116,96,99,106,95,107,100,95,99,94,100,93,98,107,105,106,97,97,92,109,121,75,128,103,98,119,113,113,100,109,101,107,97,96,81,96,105,114,107,107,102,98,91,99,112,101,96,109,115,109,104,100,109,98,109,83,92,101,95,101,105,98,110,114,107,92,102,104,105,104,100,95,103,100,110,100,109,95,95,101,100,101,110,104,98,104,99,102,107,100,106,104,117,103,107,105,111,102,98,110,96,99,108,109,98,91,103,96,104,98,111,107,104,100,101,94,112,88,95,110,100,102,108,99,94,95,114,103,106,112,108,105,96,105,109,101,99,113,97,109,111,98,101,97,95,114,103,103,118,103,106,103,101,93,88,101,107,111,95,90,104,113,94,102,109,94,103,95,104,103,105,97,96,116,103,102,102,94,99,103,91,105,103,102,88,87,104,112,102,106,110,106,98,106,106,87,109,97,99,101,93,96,106,109,101,93,110,109,104,100,113,87,97,100,92,115,109,100,99,100,104,109,108,103,109,98,120,99,89,98,98,96,116,95,100,99,98,95,95,96,99,94,98,113,109,102,100,96,109,92,93,97,109,105,82,111,115,90,106,104,102,99,109,114,102,91,94,96,107,96,102,111,108,94,107,95,95,98,97,116,107,106,91,101,109,96,98,101,99,107,98,106,111,95,99,100,104,93,102,115,105,98,92,103,107,97,104,100,104,96,100,111,110,103,106,93,101,114,100,114,104,95,107,103,111,98,104,94,109,94,108,89,95,102,99,102,104,109,102,104,94,95,122,97,91,110,100,85,108,117,97,108,93,113,120,110,116,117,118,117,111,97,115,101,99,100,99,109,115,102,121,106,105,100,116,97,107,113,103,96,100,96,101,109,111,99,97,107,102,106,101,103,104,106,107,99,99,99,113,107,109,74,85,98,112,97,99,100,72,105,94,105,108,102,91,102,91,104,101,106,84,98,102,101,105,102,93,102,100,106,80,107,106,110,127,102,114,101,102,92,114,102,120,90, +675.96674,96,116,104,95,97,111,111,90,115,92,62,94,94,103,104,84,100,105,103,83,110,87,109,113,115,105,92,111,105,101,104,91,99,79,125,90,92,101,91,106,95,99,90,103,101,107,97,98,99,101,97,102,111,99,111,96,98,102,99,94,100,98,102,101,90,103,90,95,96,96,108,101,94,97,93,60,83,112,97,106,98,103,97,103,92,107,95,94,121,109,96,107,101,95,94,102,101,108,93,94,103,99,97,99,100,99,108,103,108,110,97,119,102,107,99,101,93,97,101,102,111,99,106,100,99,101,114,100,96,105,91,97,92,92,74,99,95,100,91,105,98,99,87,88,100,106,107,95,112,113,101,101,95,96,100,102,80,95,101,86,90,103,107,111,106,68,105,93,89,91,108,107,91,87,103,96,95,100,98,94,99,100,104,108,96,93,85,92,80,121,100,102,93,97,95,90,91,96,100,96,100,96,102,97,82,114,97,65,101,104,101,104,88,95,91,96,101,97,112,107,82,91,95,101,98,96,96,96,99,115,82,97,97,95,97,84,90,100,107,100,107,92,94,93,93,96,85,93,101,100,100,95,95,99,99,96,105,89,115,107,97,100,109,92,113,96,99,114,113,82,105,100,100,97,90,97,83,100,89,98,92,101,97,99,105,97,98,109,104,109,99,101,97,110,113,100,103,95,75,99,78,106,95,97,100,99,99,104,99,97,99,115,94,101,104,94,97,101,98,102,118,87,97,90,92,97,109,86,104,91,99,97,94,96,92,108,91,105,93,105,98,91,102,75,112,101,103,103,95,107,103,108,104,108,95,104,110,103,88,105,105,97,87,95,104,100,97,89,104,104,98,98,98,106,105,90,102,84,102,117,108,105,99,105,105,94,95,102,107,96,114,92,103,101,92,97,96,99,106,95,104,94,107,100,116,100,83,113,91,96,92,100,109,105,106,94,116,101,110,97,103,96,104,109,95,90,110,91,105,107,95,103,104,108,90,92,88,100,99,95,107,91,89,99,100,95,105,91,105,99,91,106,101,95,108,106,88,97,94,106,101,95,114,93,80,91,99,100,106,100,94,107,97,99,91,86,96,100,97,107,102,111,106,102,103,99,107,87,98,94,110,99,102,103,99,94,71,97,103,103,104,105,100,103,96,96,83,91,105,103,102,95,115,95,108,95,96,100,94,93,101,87,104,96,93,111,105,105,104,88,96,101,108,97,82,99,101,99,94,102,91,98,87,104,102,100,108,106,92,112,99,104,91,105,102,95,95,99,98,105,96,109,97,93,97,103,112,108,94,98,95,99,78,98,92,96,101,103,103,105,107,100,97,102,80,96,101,95,105,95,100,95,98,102,99,117,105,107,104,106,92,99,103,107,93,100,96,95,122,99,104,102,87,102,105,92,97,89,98,68,104,93,97,89,100,95,94,103,111,116,109,91,95,97,89,110,102,98,100,92,114,86,91,107,102,89,104,105,102,108,94,99,95,103,100,95,104,95,108,107,103,107,77,105,99,92,105,101,102,95,102,111,91,104,106,99,104,99,106,95,107,101,103,91,95,95,103,95,96,95,101,99,96,116,99,84,90,111,94,101,97,97,122,105,101,110,100,102,103,100,92,103,106,103,95,106,98,104,95,101,94,101,107,83,99,80,95,103,101,100,107,94,103,92,92,109,101,99,98,106,103,103,107,106,94,102,100,101,88,97,107,103,91,93,99,106,99,99,103,99,106,104,103,103,92,105,104,111,104,95,104,104,96,102,99,97,99,98,95,98,108,98,105,101,95,115,105,118,98,135,111,101,91,106,98,124,111,102,109,95,98,82,104,102,102,112,97,91,108,97,100,107,102,94,106,92,115,106,106,89,96,95,102,95,106,106,108,94,103,94,97,100,103,112,103,98,98,93,104,103,115,116,90,105,117,102,90,94,106,105,96,103,98,102,91,90,102,107,94,97,91,106,105,101,99,91,98,102,114,106,106,109,114,113,99,98,99,92,101,105,101,101,104,95,106,105,103,97,96,104,95,102,95,100,103,95,98,108,104,109,96,110,107,100,99,92,94,97,109,103,102,105,102,99,102,99,92,104,107,100,102,108,102,95,104,101,98,99,98,100,108,91,97,101,84,100,99,109,113,87,106,109,100,103,97,135,98,102,102,100,96,101,98,120,103,90,103,104,99,104,96,99,94,97,92,98,100,96,106,101,105,109,125,93,99,102,92,92,97,105,95,102,92,98,97,102,97,91,91,95,111,95,94,92,96,102,105,103,93,103,94,97,96,102,104,91,103,98,93,106,107,120,91,107,98,93,102,96,100,102,105,109,85,101,99,100,101,95,110,99,93,112,95,109,110,92,89,101,101,99,108,101,104,112,100,102,101,109,101,88,108,107,114,100,101,111,97,95,105,91,91,83,102,104,97,95,114,103,101,92,94,102,107,99,95,103,104,95,104,91,113,100,111,107,100,113,96,90,116,100,108,101,101,103,97,99,103,108,110,104,98,101,99,106,113,116,104,106,102,98,99,102,105,100,111,95,95,125,101,124,103,101,95,112,101,105,99,86,98,112,102,111,98,101,106,102,108,91,101,98,107,109,113,110,102,115,69,95,99,102,101,94,109,64,101,109,100,97,105,108,109,82,108,91,110,108,90,93,94,104,108,105,98,102,94,115,88,103,102,108,113,105,99,95,103,109,109,104,95,119,97,101,100,116,118,106,98,99,109,101,103,105,110,119,104,107,108,95,109,113,111,99,112,112,97,100,112,109,102,94,118,104,105,97,99,100,100,102,108,100,94,106,95,104,110,125,104,102,101,100,121,100,113,97,108,99,109,110,98,99,114,100,98,108,97,100,99,99,92,103,105,107,100,104,101,94,97,98,101,102,99,110,105,109,103,113,100,103,93,107,98,109,108,116,104,81,97,87,100,103,108,105,100,99,102,125,106,99,99,102,106,103,98,99,93,108,100,100,97,106,108,101,104,90,108,107,108,104,105,112,108,105,99,90,112,94,111,104,97,105,99,101,92,105,110,113,109,102,99,116,98,80,98,106,105,117,102,99,102,88,92,98,96,112,121,85,103,110,96,95,109,107,92,101,125,93,103,107,104,93,100,116,103,109,103,102,105,91,111,96,111,100,106,101,100,104,83,98,110,104,100,102,97,87,109,103,108,105,96,111,97,98,94,108,104,109,102,108,86,108,92,106,97,104,84,101,96,105,102,102,103,99,95,88,100,101,96,106,102,96,105,110,112,114,104,101,104,130,97,85,107,110,106,118,104,99,95,108,94,95,100,92,101,100,104,106,95,99,105,108,93,99,95,98,109,111,113,96,107,95,92,112,111,98,105,92,102,106,109,104,95,107,94,109,103,116,103,116,117,94,106,97,95,92,96,107,95,103,107,106,94,93,105,108,96,111,122,101,97,111,92,107,91,104,95,102,87,104,99,101,94,104,92,101,101,98,106,97,93,111,108,103,116,104,110,103,110,107,105,97,106,102,101,109,95,113,94,103,92,106,98,104,111,109,102,104,101,106,109,100,100,108,101,98,113,106,101,92,73,110,115,98,94,105,115,103,121,102,114,96,94,103,102,99,101,90,108,109,109,100,99,95,108,115,116,111,112,108,95,118,104,110,113,109,105,90,96,105,104,101,106,95,107,102,108,103,92,100,108,131,111,99,95,105,94,107,102,110,102,102,108,92,104,105,119,104,103,108,103,98,96,99,104,105,97,101,98,98,108,102,104,104,107,107,109,97,108,99,101,107,108,100,91,103,98,103,104,93,110,113,103,106,100,73,85,94,101,102,97,98,102,99,104,108,104,110,94,93,93,107,100,99,99,97,105,98,112,88,108,110,109,95,125,106,106,97,103,95,98,106,97,108,110,103,102,105,97,95,100,109,111,98,113,94,111,87,107,97,101,93,85,92,103,97,102,106,99,99,97,110,101,97,89,109,90,103,96,104,102,103,100,107,95,109,120,100,101,111,105,110,89,93,93,88,105,100,101,99,102,110,105,112,95,97,101,104,98,116,108,102,126,101,103,84,97,119,106,93,110,89,99,103,98,98,105,104,95,91,95,109,111,113,96,101,108,106,107,107,98,117,111,108,108,109,118,114,96,92,112,99,93,104,92,81,105,111,109,99,127,111,108,124,91,93,102,107,111,105,102,111,83,109,73,111,101,104,95,108,113,105,106,112,109,115,106,99,95,100,124,94,96,100,98,98,98,96,104,109,108,110,96,108,95,100,98,92,104,96,112,101,99,103,100,103,104,102,115,97,88,95,103,96,101,89,101,94,111,94,111,110,108,105,116,97,103,100,71,72,87,96,98,92,100,91,101,112,98,104,112,108,85,106,94,117,101,101,105,104,97,100,113,104,83,106,101,97,96,64,98,102,98,95,97,109,96,95,100,108,102,103,98,113,94,100,98,100,105,93,85,114,117,103,94,107,105,97,107,98,94,98,105,100,112,113,96,99,97,104,107,102,95,107,71,95,107,99,116,105,93,93,97,98,85,95,100,72,100,101,108,102,95,109,92,90,103,103,108,98,102,96,106,113,105,103,100,99,99,99,103,91,106,95,110,104,96,106,97,92,106,123,97,106,93,95,103,116,95,107,84,103,117,82,96,91,99,110,112,102,101,99,101,107,117,104,99,101,100,101,108,91,105,103,95,113,105,99,108,94,102,115,95,101,108,109,105,78,104,105,108,94,102,91,100,97,91,102,102,106,109,113,99,108,97,99,98,101,111,107,99,102,91,95,103,100,103,98,108,100,98,100,99,105,88,88,125,94,106,108,99,111,113,98,90,105,102,112,85,119,100,106,99,100,95,97,100,108,97,101,106,94,102,107,91,94,110,99,111,87,106,93,106,100,119,98,96,92,94,103,99,104, +676.10797,128,98,102,96,110,114,117,86,105,106,93,105,92,104,111,92,109,111,116,97,103,95,77,85,95,99,115,107,86,96,106,98,123,93,115,94,105,91,98,98,96,97,86,95,107,94,108,107,83,115,94,85,105,92,116,94,90,100,105,79,97,86,103,102,113,108,109,111,114,69,91,97,120,109,93,105,82,99,99,105,103,93,101,105,94,97,102,93,117,98,109,108,96,111,94,97,129,92,100,93,95,102,98,107,101,103,103,102,96,97,103,104,109,95,102,99,100,111,105,100,90,96,139,101,95,110,107,95,100,105,105,104,102,101,96,106,105,113,95,96,106,86,105,98,97,106,108,91,87,99,89,91,103,99,103,108,122,97,104,94,107,93,108,100,104,105,112,94,87,98,103,100,104,98,105,99,104,96,111,100,95,103,98,104,106,98,87,87,92,91,87,101,106,88,75,101,95,103,111,98,100,114,103,104,97,99,98,98,108,105,97,97,103,101,110,101,104,103,106,100,108,111,104,114,101,96,110,105,96,106,101,96,106,100,101,106,99,102,101,103,114,90,109,91,95,96,101,106,91,110,92,98,97,91,105,114,95,110,99,97,95,99,98,97,90,105,104,87,98,109,108,104,102,98,104,95,98,108,102,99,105,99,94,95,105,106,92,97,99,105,106,104,102,101,101,119,104,101,110,98,100,106,102,95,93,115,111,107,100,117,99,127,107,98,102,102,95,100,94,114,98,102,105,100,102,94,89,94,98,94,99,103,96,128,101,92,88,96,94,104,97,84,107,100,104,105,96,114,100,100,103,102,97,97,102,95,95,112,109,111,108,99,106,91,100,106,104,104,88,107,105,95,101,86,98,89,110,103,99,103,109,101,105,118,126,100,96,93,107,96,107,101,101,107,98,94,103,104,104,95,106,110,104,97,102,97,92,103,99,103,106,115,98,105,88,97,91,94,107,95,95,106,103,97,92,99,109,95,93,110,106,105,80,95,101,105,113,102,106,102,109,100,102,111,90,98,105,94,96,105,118,106,110,111,91,107,111,95,125,98,111,98,103,109,108,97,125,92,97,100,98,115,83,98,111,108,95,99,98,109,98,84,103,100,101,113,100,95,109,80,105,126,100,100,94,105,97,92,101,88,102,94,105,100,97,94,103,104,99,90,110,110,99,99,113,101,107,106,88,100,102,101,103,98,95,105,109,99,108,110,85,110,105,98,104,105,99,94,97,104,111,109,110,102,106,93,103,109,107,98,85,100,105,101,95,102,94,93,99,101,106,83,100,96,114,121,97,111,98,107,100,102,106,103,106,99,101,88,112,112,99,105,103,87,92,107,109,103,103,98,107,104,98,103,130,95,97,96,110,107,105,104,104,94,102,104,92,95,103,109,112,94,102,102,117,119,108,103,104,114,113,95,77,104,107,99,100,98,109,103,94,99,90,111,92,116,104,83,100,95,99,103,104,107,83,97,94,91,103,104,106,105,116,101,103,101,111,99,103,118,102,93,108,95,84,105,104,96,99,100,108,114,103,106,95,115,103,99,106,107,100,109,98,105,85,91,95,104,93,106,108,105,90,103,103,105,96,102,102,104,97,96,97,87,102,99,102,99,83,93,89,97,107,95,99,97,85,113,95,96,105,96,100,67,102,108,98,105,105,97,107,100,101,102,87,97,110,97,102,103,103,97,109,106,110,98,103,94,99,95,105,99,104,83,98,90,99,110,98,87,99,114,97,106,97,102,105,105,94,86,109,104,101,98,97,99,104,96,105,104,102,101,105,106,105,100,102,86,111,106,100,106,95,118,93,91,91,104,99,97,100,98,93,100,105,109,103,111,105,108,105,103,108,95,101,91,104,109,105,101,109,101,105,109,95,96,102,96,90,93,113,92,103,105,102,98,113,91,101,109,111,92,105,98,105,101,97,102,106,99,98,104,93,104,91,98,101,105,106,101,103,106,104,96,117,95,85,94,99,104,96,103,91,101,99,100,102,106,99,94,91,96,97,92,95,103,108,101,102,96,94,100,103,103,105,93,100,129,100,106,90,99,118,95,102,87,105,92,98,90,103,99,101,112,87,101,87,85,104,98,92,99,102,96,97,94,90,101,103,106,95,114,110,99,103,94,94,92,103,107,99,92,106,104,96,111,108,91,102,102,98,99,89,99,87,100,96,88,104,115,102,107,98,126,105,102,105,93,100,108,98,102,91,101,119,108,101,102,102,83,97,99,95,108,121,121,88,104,105,97,96,78,105,101,86,104,102,108,101,91,106,98,89,108,110,99,97,109,107,100,96,96,101,102,104,96,106,97,100,104,100,105,95,97,103,92,104,103,92,96,106,101,107,93,99,90,115,102,95,91,83,103,80,99,100,97,94,110,105,106,97,108,109,105,95,95,103,105,106,99,102,113,113,76,102,86,103,107,105,87,103,110,107,100,102,100,98,102,95,97,103,102,92,91,108,100,101,98,108,108,103,91,110,98,97,96,102,103,116,101,104,83,105,98,106,106,104,105,89,108,106,99,100,103,106,92,107,106,95,102,104,91,95,103,92,100,96,94,102,99,103,101,106,115,104,105,105,99,99,89,116,96,105,101,93,101,94,87,100,96,101,109,94,100,100,96,97,113,97,97,104,86,96,88,97,102,85,112,98,96,105,101,106,98,98,100,97,98,88,106,101,89,105,74,103,103,109,106,95,99,93,106,96,110,108,101,99,101,106,106,106,99,117,107,99,102,107,99,102,91,101,109,100,100,102,108,126,106,101,107,107,92,108,101,94,97,83,101,112,106,99,109,102,110,112,97,95,105,105,121,107,97,101,95,92,98,105,99,94,94,95,101,101,103,105,102,111,94,117,109,96,100,120,102,95,101,102,101,99,106,105,116,99,106,116,93,102,108,109,103,101,120,105,100,96,97,104,98,111,108,99,110,111,100,105,100,109,94,66,107,98,94,109,103,98,94,97,93,105,128,101,104,101,117,106,107,91,65,105,105,104,100,96,90,105,97,107,94,95,97,109,94,115,99,101,92,122,103,109,94,107,99,102,108,102,98,96,100,108,85,99,102,104,100,100,99,111,97,89,79,101,104,109,100,104,94,105,80,100,97,96,98,73,100,97,103,94,109,99,90,96,107,102,98,97,106,107,97,84,99,94,101,111,98,91,104,91,105,98,102,106,97,93,73,111,109,105,101,111,104,97,115,82,102,103,89,114,103,97,99,115,93,99,86,90,102,104,105,108,94,97,110,99,111,102,108,88,104,98,106,98,108,103,104,105,97,103,105,111,59,106,106,114,105,119,91,103,101,113,102,92,95,99,112,99,113,94,104,111,84,117,106,107,95,95,109,102,96,102,98,94,98,97,93,101,101,103,106,82,101,99,91,98,114,100,92,89,103,104,98,95,107,102,112,90,92,102,97,98,84,97,96,102,107,110,102,102,76,87,101,109,102,103,113,94,88,100,100,108,87,87,96,103,106,96,71,100,106,114,101,98,102,96,102,102,96,104,112,98,112,111,102,104,108,111,109,112,114,97,108,95,115,108,88,108,97,89,109,104,103,99,94,102,101,109,101,97,103,101,100,101,97,95,103,96,107,99,89,104,99,93,102,102,98,108,94,99,121,99,99,100,95,103,104,103,97,109,96,104,104,91,106,107,99,109,99,113,94,106,111,107,115,104,106,98,90,115,101,107,98,95,83,98,104,99,103,112,95,97,98,102,103,102,105,100,100,96,95,101,98,106,99,115,101,106,105,110,94,101,80,93,96,95,101,112,97,106,100,103,99,103,98,85,103,101,92,96,105,104,110,102,101,107,94,101,110,93,100,100,108,88,95,105,100,88,98,100,102,65,93,107,92,95,106,106,114,104,97,101,89,98,85,91,104,97,103,95,101,99,82,111,92,87,100,93,98,118,107,83,97,100,102,112,104,90,104,118,102,116,100,95,101,93,101,99,93,97,138,87,90,95,98,96,107,102,96,98,98,104,99,104,104,105,97,108,90,95,102,88,102,101,106,105,96,103,93,105,95,95,87,104,109,86,87,104,99,97,103,100,101,91,106,111,96,91,97,98,96,96,99,117,103,103,103,100,99,92,87,102,104,108,97,104,106,99,110,98,107,92,97,106,95,104,113,107,105,90,104,103,102,92,91,100,90,100,107,101,103,95,88,102,104,97,104,107,99,87,104,105,100,108,96,97,98,96,105,94,102,99,96,104,91,113,101,100,104,102,100,108,106,96,93,98,101,101,94,99,102,102,99,100,106,104,84,103,108,86,93,91,104,99,120,106,98,105,96,99,104,92,98,110,92,107,103,91,106,102,102,90,79,106,100,97,100,108,103,96,95,106,100,104,115,109,92,107,121,109,98,96,102,116,90,109,106,80,101,98,96,96,104,100,87,103,89,91,95,113,114,97,89,101,95,98,91,85,106,105,95,107,96,105,94,114,106,121,94,110,107,93,109,101,100,108,98,103,109,98,103,105,100,95,96,101,113,112,109,121,109,87,95,105,92,104,106,96,107,97,96,91,96,96,106,105,101,107,104,97,83,108,108,99,91,110,103,98,94,107,95,98,105,86,115,106,98,113,102,101,97,110,101,103,95,96,110,110,103,94,103,96,96,108,103,102,102,108,98,87,95,104,101,78,109,98,90,109,80,98,80,100,112,112,107,102,95,107,95,97,91,115,94,95,99,96,98,92,90,94,100,101,100,85,106,93,105,109,98,109,71,105,98,99,103,112,117,90,97,99,109,104,105,90,100,122,113,95,117,107,92,106,103,120,100,112,100,89,88,93,96,102,94,110,103,112,90,108,108,85,105,99,87,102,107,91,109,105,106,101,105,94,101,107,86,103,94,98,78,97,101,98,95,99,118,84,92,91,95,93,109,92,86, +676.24927,107,96,101,85,96,101,98,99,97,101,97,97,113,98,102,98,104,112,107,96,114,84,92,105,92,111,95,101,81,117,98,101,105,100,103,99,100,111,105,113,99,86,80,99,107,95,100,99,93,111,102,92,96,95,94,85,83,111,99,108,96,90,108,80,102,115,89,85,106,100,105,98,95,99,105,105,103,112,115,88,101,105,108,107,91,83,102,106,92,105,102,101,104,106,98,105,94,108,107,92,101,116,107,100,99,96,105,108,108,98,95,91,105,91,96,101,97,100,101,92,97,92,106,104,108,103,106,103,104,83,105,96,102,109,108,109,94,126,110,107,104,115,100,107,105,98,99,87,92,103,97,108,106,98,96,104,101,100,103,101,108,105,99,110,95,95,100,95,104,103,100,94,109,92,108,86,102,98,101,102,95,102,94,98,92,102,98,91,109,121,105,99,97,97,84,99,105,92,96,90,99,103,98,98,98,92,102,101,103,98,92,96,111,103,99,95,102,98,100,104,109,100,94,111,106,83,105,97,109,95,97,96,103,105,96,106,91,95,89,98,101,101,105,99,94,106,100,100,98,95,88,109,95,95,110,109,99,105,100,82,85,101,109,94,96,100,110,102,103,94,96,93,100,98,95,129,99,109,110,103,106,102,90,106,105,96,95,94,109,108,95,103,102,102,109,109,94,100,114,103,92,99,93,130,84,102,105,98,106,110,106,105,104,78,104,103,98,100,108,106,105,88,98,109,93,114,101,89,102,102,97,69,99,101,103,101,100,89,90,109,98,112,104,96,99,108,81,98,95,97,91,114,116,100,104,102,103,104,105,109,104,116,106,103,98,90,108,99,96,94,108,102,100,100,111,96,108,100,88,110,100,103,101,101,97,90,129,97,97,84,109,126,97,105,103,99,105,90,105,98,86,108,98,89,95,92,90,103,86,72,99,98,97,91,100,94,102,100,97,98,94,71,106,95,94,101,103,97,106,92,95,84,95,92,83,105,114,107,107,98,94,100,97,104,90,115,100,104,99,109,103,70,87,108,100,96,103,109,114,108,111,93,100,107,119,107,106,91,99,98,100,88,103,102,97,95,116,108,101,103,99,102,92,89,104,108,91,103,105,105,102,107,100,91,116,95,84,103,101,112,99,121,109,98,97,90,100,99,95,110,94,67,110,105,97,105,107,92,99,95,99,99,104,98,100,103,110,89,102,109,105,100,98,95,115,110,89,109,109,109,96,89,92,95,95,86,105,99,96,89,104,109,100,100,101,97,100,94,100,99,99,121,99,102,99,91,97,107,86,96,107,98,97,103,99,107,106,97,93,98,106,95,104,91,103,87,104,102,111,94,104,102,105,113,106,107,109,101,100,103,104,105,97,105,99,98,109,93,96,96,106,103,112,92,100,99,90,96,110,124,99,102,95,97,95,93,97,93,84,96,103,101,92,109,100,94,91,96,114,103,114,109,103,99,108,113,106,103,99,101,104,109,108,102,96,98,94,95,92,100,103,96,104,94,104,97,90,104,87,104,108,103,101,101,98,112,96,99,117,102,106,102,96,108,94,103,100,106,103,97,108,100,100,107,121,94,109,104,110,98,97,102,114,95,99,105,107,103,98,81,106,95,78,101,98,101,95,99,102,95,92,87,96,113,111,104,94,96,106,114,96,92,96,104,103,102,113,83,107,91,102,94,104,96,94,91,95,109,109,91,95,103,105,91,95,101,114,115,95,105,121,100,84,91,107,96,98,97,100,98,103,91,98,106,97,113,113,102,125,96,99,108,102,101,95,104,108,98,104,106,110,101,102,106,78,94,103,95,98,107,102,118,97,104,98,116,102,110,97,101,102,102,103,114,110,108,119,113,111,110,92,109,97,95,102,105,98,100,99,91,110,84,113,99,103,100,105,107,114,109,93,83,95,90,103,89,104,107,98,92,109,100,101,103,112,102,93,98,97,93,100,99,99,102,113,91,91,108,100,125,100,112,95,97,98,108,107,97,95,98,106,100,106,99,108,105,95,112,106,106,102,102,103,102,120,90,98,79,87,104,105,107,110,112,113,102,87,109,91,105,100,90,98,108,88,99,102,112,87,111,98,109,108,107,109,76,103,94,106,105,119,112,95,98,99,94,98,95,104,96,104,109,97,99,97,108,104,97,113,101,112,95,106,105,99,104,111,96,92,100,99,99,90,96,94,99,100,88,116,110,87,101,97,113,98,111,110,96,108,88,105,113,99,100,112,96,101,104,100,102,100,109,107,105,98,79,105,110,88,110,98,94,108,101,105,79,96,105,113,106,98,95,114,106,102,103,108,114,96,117,113,101,110,95,100,96,92,102,103,101,101,108,98,100,103,92,103,115,110,106,110,112,94,108,101,115,97,110,111,98,113,102,101,109,88,98,103,105,101,106,100,103,101,115,103,97,92,105,100,107,104,105,95,93,97,103,90,109,105,91,93,100,86,106,103,127,91,94,107,100,110,105,109,116,91,99,98,98,101,104,106,101,107,98,103,110,102,100,116,99,89,104,116,106,125,97,100,99,106,106,101,99,104,93,107,107,107,91,106,91,102,105,103,66,98,99,96,97,103,98,104,88,105,117,90,98,93,122,90,87,109,95,107,93,85,98,113,92,97,98,110,96,110,98,108,99,113,109,120,98,100,90,102,90,104,100,100,97,109,98,109,75,99,110,98,102,114,102,105,102,83,97,99,101,95,107,81,99,113,96,98,105,113,86,108,105,97,113,94,75,99,95,88,101,106,98,101,97,100,94,108,105,102,113,92,91,94,102,97,101,83,112,92,106,105,99,105,104,102,94,113,109,108,100,99,95,98,103,103,97,97,101,106,105,93,110,108,103,101,103,94,89,108,99,98,113,103,98,99,115,109,105,108,109,97,96,95,103,97,101,95,97,108,87,102,112,113,118,102,98,95,110,102,117,109,102,102,98,94,106,104,109,101,103,109,120,102,99,93,110,109,109,107,108,108,88,99,87,103,104,113,108,99,104,107,100,113,94,100,101,105,87,94,95,97,103,103,99,100,103,99,97,99,93,87,101,116,102,108,103,96,102,94,106,87,92,112,99,105,112,101,104,103,104,100,97,106,92,104,112,107,97,87,114,105,102,95,105,117,93,94,110,98,101,96,95,98,108,107,95,92,87,125,111,100,97,111,97,102,93,106,91,103,94,99,92,102,99,107,94,99,98,117,96,101,105,90,92,94,102,116,102,89,94,93,96,97,91,91,100,97,105,97,100,104,87,103,100,104,111,98,108,106,100,99,102,93,133,93,93,84,86,105,101,99,105,110,100,110,102,97,117,101,101,96,103,92,101,95,101,101,101,101,93,101,99,92,108,108,103,93,103,96,91,95,108,97,107,102,87,110,105,85,97,97,91,106,107,97,98,111,95,98,98,102,86,105,98,105,101,104,95,102,94,101,101,99,110,99,98,116,100,99,96,104,98,102,104,93,105,82,107,103,93,104,94,100,95,107,106,101,94,105,110,110,96,107,105,89,94,95,91,108,108,95,103,99,94,106,120,99,101,103,98,83,109,96,102,102,109,104,98,95,105,92,101,92,105,96,98,96,100,97,99,95,99,116,94,91,101,87,99,101,97,106,92,101,100,107,100,103,97,98,107,105,95,95,104,102,100,109,93,96,117,92,132,99,116,104,95,102,106,97,101,106,105,102,99,113,106,97,107,100,93,99,100,105,99,107,103,95,109,102,98,113,103,116,102,101,94,97,110,113,88,105,107,100,95,96,101,101,94,98,88,107,109,100,100,110,96,93,105,92,107,117,111,101,106,96,113,93,87,113,103,92,95,89,111,97,102,109,100,98,98,92,93,125,105,98,106,106,105,100,96,102,83,95,104,99,97,105,94,105,110,99,106,104,103,83,99,110,105,107,102,87,100,105,93,102,89,101,94,104,96,99,91,99,103,106,108,103,107,101,112,99,99,109,127,107,105,96,99,101,106,99,103,98,97,97,95,98,105,94,95,104,102,104,98,94,104,104,105,99,92,102,102,100,106,102,101,106,98,95,93,98,103,95,105,88,105,100,100,102,105,96,95,99,110,101,106,123,104,109,115,110,104,101,105,109,96,95,87,111,97,100,103,89,92,108,95,79,91,102,92,110,91,102,91,104,102,112,91,97,91,92,108,105,100,103,97,83,105,98,98,95,96,92,94,94,94,105,93,96,91,95,106,106,97,95,106,97,102,94,91,101,103,105,103,100,87,94,92,107,107,91,99,80,120,119,109,103,103,99,88,102,105,111,100,100,110,98,96,95,97,105,96,97,96,102,102,108,102,96,107,94,94,104,109,98,98,101,90,91,112,97,96,106,98,102,88,99,93,105,101,93,105,94,113,99,99,98,98,102,103,88,96,93,108,104,89,118,93,95,103,96,98,97,91,103,99,122,95,108,99,113,92,102,107,106,115,99,97,97,97,105,100,102,97,103,109,102,100,93,91,81,104,93,91,91,95,100,97,92,105,75,94,106,101,83,94,103,89,109,104,103,103,120,95,93,96,100,113,111,109,102,98,105,101,111,80,91,107,112,105,102,98,101,112,89,107,95,102,104,102,109,108,102,91,109,72,104,96,101,98,100,105,90,103,103,91,94,100,103,98,106,88,99,104,108,93,92,98,101,99,113,84,99,109,102,76,87,97,89,96,101,83,94,100,91,97,107,97,105,100,98,97,95,105,98,95,93,108,97,102,94,97,107,90,113,94,105,109,88,96,101,104,109,102,96,88,92,99,98,99,111,110,102,97,101,101,90,103,98,105,92,87,100,102,102,97,108,106,98,105,100,109,100,100,95,101,92,92,96,104,104,100,78,96,98,84,87,104,95,123,118,109,92,107,100,91,92,105,106,92,107,93,104,98,86,100, +676.3905,101,114,101,99,99,103,99,111,84,98,120,105,95,109,110,90,82,88,97,106,115,114,98,100,118,92,110,123,116,101,105,99,102,90,105,114,105,102,100,103,83,102,88,92,100,97,88,117,86,109,95,109,99,92,108,94,96,110,101,103,117,91,107,95,99,91,95,112,107,105,108,104,101,101,96,108,104,101,115,114,107,95,103,97,91,87,114,110,106,94,103,103,105,111,95,102,83,93,108,112,108,99,95,77,107,95,110,105,96,106,105,101,85,101,100,92,92,92,106,106,98,96,116,100,87,120,120,99,103,91,104,94,109,108,109,98,99,92,92,106,87,104,109,103,100,109,103,97,77,95,104,104,109,97,93,99,76,114,108,100,101,99,88,103,100,101,106,111,103,97,115,91,98,99,91,90,99,109,95,104,105,109,100,100,97,110,101,92,101,101,107,108,98,101,97,116,100,101,109,107,100,114,116,91,98,103,100,93,94,101,99,104,97,109,96,108,90,86,100,103,102,114,101,92,97,108,102,92,99,108,104,89,96,99,106,96,96,101,102,104,112,91,96,109,104,100,116,109,97,108,88,100,80,101,86,106,94,96,87,97,97,95,99,105,89,113,97,98,90,91,96,90,95,98,95,107,97,99,104,102,101,100,103,96,109,101,93,102,105,109,99,107,102,100,112,109,108,112,90,103,109,92,109,102,102,103,91,105,102,98,95,103,97,99,94,99,103,99,103,106,103,92,107,107,116,102,99,101,102,106,100,99,102,112,105,98,91,72,95,93,106,96,100,92,106,88,82,113,103,108,107,111,105,107,112,96,108,104,115,119,103,98,88,100,95,93,106,104,93,106,99,100,108,111,112,101,101,105,106,114,105,106,100,99,106,98,97,99,100,106,99,93,105,97,90,105,92,100,86,110,96,96,100,105,112,87,104,107,108,113,109,99,104,108,97,104,107,103,112,114,89,109,84,99,111,91,95,100,94,109,105,93,107,94,100,97,103,103,101,104,100,108,110,105,95,109,95,97,101,107,104,97,97,97,100,110,107,98,110,105,100,96,103,100,104,103,100,103,93,101,99,99,96,90,90,105,77,117,112,96,95,95,108,96,94,91,96,99,82,99,100,111,92,94,99,106,116,108,103,101,143,87,101,101,107,101,95,101,95,99,101,113,92,107,102,97,98,106,103,110,98,98,94,104,105,95,92,111,107,90,100,101,97,96,107,102,97,106,100,99,110,106,98,89,107,99,100,104,107,109,107,98,103,104,92,105,102,96,108,108,102,98,81,97,110,102,96,125,95,109,122,97,103,98,109,100,97,86,94,112,94,95,100,92,117,110,111,104,91,98,93,116,105,97,117,100,102,106,109,104,84,99,90,108,97,102,102,105,104,87,105,106,108,98,113,102,110,104,104,89,91,95,91,102,105,90,100,98,95,102,101,98,97,106,103,99,100,104,100,101,105,94,98,85,88,91,98,102,96,124,107,108,102,118,99,105,94,107,100,112,111,101,94,107,107,95,105,103,103,100,103,106,90,92,95,103,106,107,104,99,107,106,96,97,91,106,99,101,113,103,104,105,96,96,102,101,106,113,104,104,101,96,100,97,97,92,97,104,106,110,98,102,104,87,108,98,90,110,103,98,104,79,99,108,97,105,113,103,96,107,99,110,106,100,96,96,102,94,107,102,110,101,100,105,106,89,102,108,106,119,79,94,109,99,97,95,95,110,109,94,93,102,99,113,98,122,97,97,108,98,96,103,106,89,112,105,104,123,99,105,101,101,100,115,106,103,99,103,103,109,108,94,116,104,106,107,95,93,66,127,104,103,98,109,121,99,89,102,106,103,114,103,114,106,101,96,105,111,74,102,99,105,100,102,94,104,108,92,98,100,106,102,129,99,104,102,102,93,109,105,97,93,93,104,106,104,108,96,82,99,109,90,99,104,98,106,102,108,111,104,103,89,103,109,115,106,95,97,97,103,105,102,96,99,94,103,98,105,102,102,104,112,108,108,104,106,110,98,105,100,95,106,105,113,113,107,100,103,111,99,95,104,100,101,96,93,104,98,94,107,95,109,117,113,103,100,102,99,100,100,96,103,99,95,113,97,105,101,98,108,100,99,107,105,92,107,94,93,102,104,107,97,104,109,114,86,83,99,108,107,108,106,84,105,103,99,106,111,87,106,105,110,94,92,104,99,91,86,101,101,99,105,104,83,100,102,108,94,102,99,86,107,103,99,98,95,90,91,104,103,102,109,110,97,104,103,102,110,100,102,87,100,98,94,116,98,110,108,96,103,109,106,104,98,110,106,99,91,100,102,101,103,98,103,110,91,111,98,113,94,121,91,116,110,94,103,110,104,95,99,116,109,107,102,97,97,98,96,96,90,100,102,103,101,95,105,100,98,99,105,108,110,105,108,108,93,87,90,105,101,106,108,103,109,92,93,94,103,102,107,107,91,91,105,111,105,98,92,95,90,96,119,93,110,96,92,98,98,112,116,98,93,105,97,103,112,97,91,97,100,102,110,92,95,103,93,118,106,89,98,101,109,104,95,102,76,102,98,83,105,105,114,84,93,100,108,106,92,104,92,82,111,95,99,99,96,109,113,83,93,98,89,100,105,90,101,99,94,91,98,102,86,84,96,104,103,92,102,109,99,105,100,106,99,101,92,93,95,106,100,108,91,99,102,92,109,108,113,99,109,104,106,98,116,102,109,100,85,102,106,100,90,102,107,94,104,94,117,94,117,96,104,100,102,100,105,95,111,99,100,98,103,100,97,105,96,91,101,108,106,88,111,100,100,106,97,100,101,96,107,108,94,104,107,117,107,95,105,101,105,102,94,110,92,106,96,105,105,97,115,99,107,102,100,106,94,113,105,93,103,104,112,100,116,102,86,93,99,100,93,88,110,100,96,96,109,91,100,99,96,107,92,88,96,101,96,100,99,93,104,87,91,92,97,107,101,103,101,105,85,99,99,83,116,103,91,95,113,99,87,91,103,94,108,125,92,104,103,105,100,105,93,102,103,106,99,95,97,114,103,105,95,132,106,101,73,107,106,95,106,83,96,93,97,91,98,93,99,87,97,110,97,92,98,117,98,100,99,104,98,96,97,110,110,106,101,98,105,96,95,98,102,104,112,113,111,98,108,117,103,102,100,107,102,112,107,95,106,112,103,107,105,75,106,101,104,114,109,101,104,111,98,99,107,104,99,98,101,105,108,105,94,108,106,111,97,112,94,91,105,121,118,108,116,106,117,104,111,99,102,83,97,98,96,91,109,112,103,100,95,91,101,95,105,123,110,107,113,107,106,106,88,90,102,107,91,91,106,102,101,87,99,96,96,98,104,92,98,94,105,93,113,99,93,100,100,93,105,107,99,103,100,101,116,109,100,103,90,108,109,110,109,101,105,89,92,104,113,114,108,105,103,104,94,95,97,111,103,119,101,100,100,107,99,106,102,104,109,90,91,94,98,95,96,87,101,100,98,104,101,102,94,116,106,109,97,105,91,97,105,97,108,108,100,104,88,98,95,98,100,101,91,92,105,99,106,101,98,106,108,109,107,98,112,107,104,101,92,111,101,125,99,104,111,109,99,106,99,101,97,93,100,105,106,114,101,110,119,113,99,101,97,109,96,105,96,101,106,107,97,102,103,84,102,78,93,98,112,107,104,98,94,79,100,92,97,113,103,96,109,99,107,98,99,101,102,93,95,111,99,94,98,101,101,91,88,106,99,94,96,95,96,100,93,99,100,106,109,103,108,104,94,108,97,103,90,105,90,113,113,98,112,99,101,106,99,106,98,97,105,99,105,105,117,95,113,101,107,93,106,98,112,86,105,103,104,103,101,89,102,96,96,85,80,102,92,92,96,97,101,94,105,87,99,86,100,113,99,87,94,108,108,95,106,117,101,105,96,100,98,94,97,94,98,107,109,97,92,104,101,102,101,95,116,94,107,96,94,94,97,114,109,98,105,102,81,100,96,103,95,100,96,94,90,110,100,94,103,110,105,116,99,94,93,101,93,102,101,97,108,105,93,94,103,87,113,107,92,94,91,103,96,98,89,98,97,108,87,94,110,106,118,91,115,96,106,95,100,89,110,105,93,109,106,91,100,97,86,106,107,98,92,96,97,95,107,98,102,105,99,100,93,93,99,92,112,95,107,92,98,107,120,103,98,111,103,97,98,109,101,106,99,107,115,94,94,98,110,98,106,108,94,99,94,103,105,110,103,96,94,95,105,100,113,71,108,104,101,104,105,113,105,97,88,102,93,94,102,93,102,111,100,105,97,98,85,101,91,94,110,100,113,113,108,100,110,96,106,98,102,105,89,102,106,102,87,105,89,104,105,92,98,104,102,114,104,93,80,97,105,93,100,96,95,99,104,105,103,99,93,96,91,96,99,97,96,106,97,96,111,101,99,122,106,96,107,109,94,93,97,96,97,103,112,103,92,100,88,103,101,98,90,107,92,105,96,110,100,94,111,98,97,93,112,98,105,95,96,91,88,109,93,107,101,98,100,104,100,97,101,101,94,106,104,100,112,95,102,97,109,106,92,106,94,104,102,102,87,92,102,94,98,87,104,118,103,104,117,118,91,107,101,95,112,104,112,94,105,98,92,108,106,107,96,111,97,111,99,92,106,99,104,99,109,90,102,106,109,92,94,96,105,99,106,95,97,88,105,98,93,110,95,85,87,104,95,103,95,90,103,97,110,99,92,103,109,105,98,96,96,108,95,95,116,112,107,97,105,104,92,103,103,106,96,103,106,104,110,112,98,100,104,103,90,101,88,96,120,99,113,111,105,98,102,104,106,102,91,93,102,92,101,99,123,99,104,98,105,98,99,104,94,105,98,92,107,110,109,98,92,105,92,107,103,100,92,105,93,95,79, +676.5318,103,103,112,95,122,99,101,85,101,120,105,104,100,101,106,110,109,107,109,101,90,91,87,101,97,83,91,92,107,103,101,96,101,103,108,100,110,104,93,111,100,102,117,96,104,84,101,109,95,103,111,98,95,100,90,88,109,101,97,86,86,105,106,101,103,97,104,96,105,94,108,106,96,109,96,101,99,78,104,107,99,104,106,109,109,91,106,103,101,100,109,104,74,106,105,97,105,111,112,109,104,114,100,106,108,110,96,106,91,102,107,117,104,96,99,100,124,103,97,99,88,93,98,101,130,104,103,104,106,104,100,99,105,105,94,104,101,101,102,103,106,93,98,101,101,105,103,108,110,96,100,115,113,109,98,102,97,90,100,100,90,107,104,110,111,112,103,96,106,92,98,94,104,102,98,94,109,99,104,98,96,97,110,106,106,94,95,108,107,87,91,100,105,107,90,111,109,98,103,99,95,103,94,91,102,110,102,100,103,91,102,103,104,101,99,107,94,106,98,104,105,105,103,103,109,99,104,104,104,112,97,106,108,100,113,95,104,109,101,94,109,115,101,101,110,102,99,94,115,108,115,109,109,105,106,108,104,109,102,123,95,96,96,97,98,106,106,102,105,107,97,96,102,110,113,103,88,100,110,111,109,106,105,110,97,94,96,110,104,106,109,101,99,98,116,107,117,117,113,100,99,107,95,117,91,110,111,117,110,94,93,107,102,95,101,105,93,94,106,114,96,107,109,103,105,90,84,105,102,114,92,96,104,100,92,84,98,101,87,99,102,97,103,107,108,111,93,105,97,101,96,101,102,94,118,101,116,111,96,91,110,87,102,91,95,97,103,103,102,98,111,98,109,115,97,94,111,102,103,102,110,112,92,92,100,102,81,92,101,101,107,101,88,95,96,96,100,94,97,94,101,117,93,108,92,94,103,104,106,94,91,105,100,104,86,106,95,86,104,106,113,100,98,96,109,104,96,116,102,90,101,98,100,109,96,95,97,108,104,94,106,97,97,102,93,96,94,86,100,99,87,103,95,102,109,103,97,101,113,102,99,105,118,96,108,109,102,100,88,87,106,106,104,90,100,105,99,119,104,115,97,101,105,97,107,102,104,101,105,100,114,108,111,103,94,100,102,92,103,106,104,100,109,107,103,117,90,100,112,109,99,107,103,107,96,88,113,105,113,91,107,95,109,114,86,105,106,117,99,92,101,102,105,100,105,106,100,105,100,104,109,105,99,108,97,95,97,111,114,96,118,104,98,103,100,104,71,82,99,91,123,108,109,118,87,96,101,109,91,90,96,97,95,99,109,100,101,101,104,106,102,105,103,72,96,107,108,102,89,90,102,125,102,109,103,112,96,81,102,103,101,100,104,100,105,98,97,103,97,95,101,104,99,99,118,99,98,99,102,98,95,87,97,113,112,100,100,108,106,105,93,76,93,101,102,97,108,113,106,96,107,97,96,121,109,100,106,103,95,145,106,100,95,106,102,89,98,104,105,98,107,82,91,110,98,107,107,90,105,111,114,92,109,97,93,102,103,84,109,101,99,94,109,102,103,92,107,107,105,95,109,107,105,104,100,95,105,98,106,98,99,90,98,104,100,100,109,103,109,96,94,112,106,104,106,88,100,112,107,99,89,105,102,100,101,103,99,94,102,95,114,113,79,105,95,110,108,96,109,104,110,99,91,94,110,92,108,100,105,104,100,95,96,89,96,95,97,96,101,104,97,101,82,67,100,99,81,107,113,86,95,104,90,93,109,112,100,110,111,101,109,106,98,99,100,103,98,117,106,107,98,109,98,114,101,107,105,105,94,108,94,109,100,102,99,110,107,102,101,100,98,99,95,114,101,107,104,96,119,94,114,103,97,101,106,105,94,99,108,100,98,95,103,85,104,103,104,104,103,104,104,97,97,98,104,105,99,96,82,94,95,97,111,103,93,106,101,130,95,100,98,104,104,95,104,104,105,106,94,109,110,105,103,103,86,102,88,92,99,98,74,99,102,111,103,101,92,105,99,98,97,102,96,105,94,107,94,108,93,106,72,112,102,106,104,102,96,104,95,95,98,107,103,106,95,104,102,107,103,104,110,80,102,104,92,106,105,103,102,104,103,106,92,99,103,99,94,100,103,85,99,108,104,105,104,95,91,100,105,104,91,111,106,99,108,94,111,106,90,95,103,115,102,103,102,109,98,105,102,105,95,100,108,104,94,100,106,99,113,110,101,105,92,110,99,106,104,106,93,107,95,101,107,107,94,88,100,95,95,98,93,90,89,96,109,92,107,88,108,111,105,104,106,106,106,111,102,103,105,93,105,115,98,97,113,97,102,98,125,109,105,94,102,99,104,94,103,116,83,101,121,106,95,105,115,108,105,106,111,106,108,102,103,111,74,101,104,101,112,87,103,111,92,107,107,108,110,108,102,108,95,104,96,104,112,116,91,104,101,104,83,105,113,102,104,94,96,106,107,109,113,93,108,80,104,103,93,97,103,107,94,111,104,102,96,106,91,67,96,111,96,125,106,88,103,104,98,100,91,91,88,93,101,103,105,94,98,107,110,91,105,112,100,104,98,100,98,103,100,90,110,104,100,91,97,102,118,93,90,87,106,99,105,91,106,72,105,101,104,102,103,101,104,98,103,119,98,101,107,93,103,98,102,108,103,95,97,108,124,112,101,102,101,103,102,98,99,90,100,106,95,99,104,85,99,100,95,95,109,95,98,107,97,97,99,111,100,101,106,94,93,91,97,92,110,95,101,103,102,98,106,100,103,104,102,111,108,106,104,108,96,102,105,105,107,101,101,117,102,101,101,94,107,91,93,108,113,107,93,107,103,107,110,132,108,107,106,104,104,93,101,102,115,104,103,94,88,99,97,106,104,101,99,108,108,94,103,104,91,108,95,100,84,95,105,99,104,100,103,109,96,102,103,97,108,103,121,109,97,91,90,94,86,93,94,107,98,96,100,106,101,112,105,92,106,113,111,111,100,109,96,94,96,111,96,98,113,106,102,96,104,110,98,107,103,89,105,100,98,103,100,107,115,102,99,111,107,105,103,97,105,106,102,101,87,94,90,107,85,87,103,110,108,95,102,96,91,94,106,95,124,97,94,108,105,102,93,109,98,120,98,98,102,95,91,107,105,105,112,97,93,98,105,96,107,114,105,96,99,104,113,102,97,101,85,105,106,99,97,108,105,102,104,105,100,93,109,98,94,106,95,94,104,95,95,105,104,80,92,117,100,96,111,101,94,95,108,98,113,106,102,95,102,102,96,111,107,88,107,99,109,89,96,109,103,101,92,95,95,95,104,101,103,104,110,105,97,92,110,108,101,107,100,88,96,99,104,106,98,108,95,104,102,100,107,102,92,105,103,95,87,92,107,99,105,89,109,101,103,79,98,111,83,107,113,98,111,90,92,112,98,104,107,101,109,100,97,99,97,114,95,102,99,98,102,101,102,98,96,103,104,113,101,99,99,97,86,104,100,99,108,94,97,84,102,108,92,100,102,95,114,110,99,95,108,103,99,106,105,91,103,97,108,105,101,101,102,98,103,93,106,102,108,100,106,96,109,92,97,91,91,95,96,103,99,100,107,95,104,111,102,95,100,100,91,102,100,75,104,87,109,97,117,100,96,108,103,103,101,87,101,103,101,102,102,100,88,96,87,103,105,110,96,100,90,112,102,100,97,107,100,92,105,112,74,91,109,107,70,97,107,104,91,105,112,103,104,101,97,110,100,96,112,109,112,108,101,96,102,100,84,105,118,94,100,93,102,101,113,98,91,105,109,108,93,81,100,102,87,116,108,102,96,103,106,103,102,101,101,126,105,97,105,109,98,100,117,113,102,71,98,97,105,96,92,98,104,91,96,96,108,101,93,102,107,102,110,101,91,99,95,124,101,94,108,106,105,99,110,96,93,113,99,98,104,107,104,104,109,98,97,109,93,103,99,99,105,106,97,100,94,89,93,126,95,101,105,100,115,100,112,96,83,100,109,95,102,109,98,98,109,112,104,90,99,102,86,92,109,107,99,95,104,116,94,104,95,93,105,85,102,95,102,115,101,103,113,98,92,102,93,94,97,93,94,109,104,96,100,87,104,96,94,103,98,104,88,102,98,107,103,95,90,105,102,85,105,99,115,105,91,106,85,84,101,107,97,102,104,89,114,97,105,105,108,108,97,110,104,97,100,100,108,95,104,98,98,99,108,118,108,102,100,100,93,92,104,100,95,92,106,109,104,100,99,103,92,119,97,101,105,111,105,116,106,99,85,99,102,90,121,113,111,111,100,98,107,106,111,107,99,94,102,117,106,98,87,104,98,94,88,93,103,95,100,102,99,102,102,108,95,96,112,107,108,101,110,89,105,96,105,102,102,108,93,82,99,110,106,107,112,96,99,93,90,102,107,92,104,103,104,122,102,81,101,105,86,101,98,105,100,100,112,108,109,98,109,103,109,100,98,84,99,111,102,106,95,92,95,104,90,100,93,105,101,87,121,101,98,90,96,104,97,102,97,93,100,100,104,104,98,105,104,93,106,112,107,97,97,88,95,112,115,96,98,102,101,91,95,100,112,105,109,98,98,99,102,99,104,122,94,110,104,102,102,101,110,100,108,100,102,105,100,117,106,94,99,95,106,92,98,95,100,97,101,92,96,109,90,96,95,111,98,102,104,103,109,117,100,93,96,99,96,90,94,108,116,89,110,116,73,115,104,98,106,95,92,106,108,94,107,59,82,105,96,110,96,101,98,100,101,108,102,111,102,94,107,100,107,109,106,100,109,101,98,92,103,91,105,89,102,84,90,107,105,108,113,82,96,92,108,109,93,106,90,87,100,105,105,86,99,99,92,99,104,105,67,97,99,96,102,105,99,102,105,96,92,99,98,93, +676.67303,104,95,101,94,107,101,88,112,103,109,99,98,101,106,98,109,105,96,86,106,104,106,89,90,90,98,108,91,98,84,99,99,93,92,98,100,97,100,100,106,99,98,93,96,97,99,104,103,101,101,98,101,90,117,100,109,103,91,99,100,99,107,106,95,97,118,96,114,87,106,107,123,104,97,111,126,95,100,106,106,110,126,86,100,79,97,99,127,92,106,108,100,105,96,79,105,98,108,102,95,95,113,120,108,98,104,98,108,73,109,98,93,101,102,111,112,95,105,103,100,107,107,98,89,109,125,106,101,100,107,108,101,99,96,112,103,108,109,94,106,94,111,112,99,111,109,106,105,86,100,100,109,104,89,99,105,87,103,109,109,94,96,101,102,93,98,97,102,90,103,99,100,100,99,103,98,112,87,103,100,96,101,90,95,89,103,111,102,101,108,100,105,111,99,109,105,105,96,101,94,96,96,97,102,102,108,113,100,111,90,103,128,91,109,103,104,91,110,95,83,105,105,94,95,92,111,88,116,105,95,107,88,98,104,104,94,91,108,108,112,102,102,95,101,99,112,100,91,102,110,104,95,94,103,103,109,97,112,103,97,100,105,98,99,103,112,104,98,94,101,93,111,104,101,109,101,99,103,99,106,125,110,94,99,102,112,88,104,103,96,103,88,102,113,98,106,114,98,86,102,95,105,91,102,92,102,103,108,101,102,96,103,103,98,105,108,110,105,99,97,103,108,104,75,103,114,95,98,114,110,105,113,102,109,104,105,115,107,108,118,63,105,105,86,109,101,95,106,97,111,98,108,106,108,104,106,107,112,102,103,105,102,115,103,99,104,107,109,109,95,99,89,97,98,95,100,101,90,97,104,99,108,99,97,94,106,108,99,101,98,109,100,103,102,94,102,101,87,106,96,97,94,94,92,96,99,97,108,106,106,101,101,110,98,102,94,87,97,92,104,101,102,109,100,100,100,109,104,112,116,95,100,112,109,102,105,99,104,101,101,105,104,112,98,99,96,90,99,108,120,100,107,102,98,88,97,91,103,103,99,89,101,91,109,117,104,105,97,97,110,91,91,93,116,108,98,102,101,103,105,94,110,113,104,95,101,97,100,95,104,99,97,106,96,94,101,76,109,109,100,100,96,106,104,112,88,92,107,104,104,99,106,103,103,104,114,98,99,108,90,99,103,112,109,105,103,105,102,83,115,95,107,111,100,104,105,107,100,106,105,97,95,96,104,105,105,85,95,108,116,111,102,84,96,98,99,115,96,104,96,104,101,86,108,99,106,100,121,100,93,102,99,102,108,89,104,102,100,98,102,112,98,104,113,99,99,100,110,97,100,88,111,110,111,88,106,105,99,114,105,105,105,94,100,103,99,109,95,104,82,104,108,101,86,97,101,93,114,105,101,105,99,106,99,97,98,87,67,71,139,104,103,98,112,93,96,107,99,103,92,98,98,95,95,102,93,103,100,99,117,103,106,109,103,108,92,105,97,105,124,99,109,113,108,105,97,97,103,112,104,108,101,104,113,97,110,108,100,105,117,103,102,109,100,94,95,94,93,85,110,111,98,96,115,98,109,106,101,104,91,99,99,100,100,96,94,101,113,103,97,118,111,103,99,100,90,90,108,112,104,104,95,91,102,99,94,86,102,97,107,104,115,108,100,109,94,105,97,107,93,98,92,103,115,99,97,110,107,102,113,105,96,103,109,111,116,108,99,99,95,100,98,94,97,102,93,95,86,104,119,108,130,101,93,96,98,107,96,99,99,100,101,103,112,105,106,107,100,106,113,96,101,103,107,101,107,98,96,99,97,90,105,94,103,90,107,101,100,104,96,112,95,76,84,105,107,91,107,102,101,100,89,102,102,88,89,113,103,101,108,96,106,112,99,97,72,107,103,102,99,107,113,95,99,102,96,111,93,95,96,109,108,105,100,97,104,101,104,104,100,98,99,108,95,99,95,111,98,120,99,110,114,98,99,114,105,109,101,111,101,99,124,102,103,98,99,107,110,101,105,113,100,89,93,96,94,94,116,74,114,80,103,101,94,87,110,98,101,91,104,100,109,114,106,117,97,96,99,100,95,92,91,98,99,102,99,99,116,101,96,93,105,99,111,90,103,98,97,107,108,78,98,93,95,99,98,106,106,105,107,100,108,100,107,112,97,124,99,95,94,105,119,109,102,110,125,98,99,103,103,96,114,101,117,104,94,102,96,104,114,87,102,97,100,100,105,98,92,99,104,106,107,99,96,95,108,92,96,103,106,100,123,89,90,99,104,101,111,103,86,96,100,94,103,102,99,110,113,113,96,110,102,101,98,103,107,103,85,97,104,94,108,105,92,102,96,92,100,106,96,111,97,102,117,93,104,106,103,94,99,89,92,94,97,101,98,108,99,108,103,95,112,103,99,136,102,103,98,103,94,105,103,106,104,105,84,91,99,97,105,105,114,94,99,112,106,100,96,105,97,97,95,62,103,98,102,93,78,95,107,108,105,108,93,100,115,79,100,107,92,104,123,104,95,107,98,100,104,92,104,103,95,106,102,99,102,106,95,107,106,109,104,105,105,98,106,102,96,93,101,98,103,104,99,64,107,104,92,110,95,104,108,108,110,109,98,105,100,105,100,104,104,102,99,106,116,103,109,107,107,108,96,93,106,99,116,99,97,116,105,103,109,94,98,100,111,103,106,106,103,99,98,120,106,103,100,99,96,99,91,107,94,96,94,100,110,106,96,97,100,95,101,88,99,94,105,106,112,107,97,104,112,87,105,100,94,110,103,103,92,102,112,106,106,94,106,89,103,99,94,109,116,109,98,101,115,98,117,116,102,91,104,109,101,101,100,93,106,105,124,106,106,97,108,113,99,98,117,97,120,110,106,121,91,102,101,101,103,110,110,103,113,104,100,105,112,101,106,113,101,98,110,114,111,100,115,103,106,101,108,95,113,101,105,92,99,100,101,103,98,98,108,104,89,109,99,95,108,96,88,90,99,100,102,106,92,109,102,101,91,109,104,112,106,113,99,108,99,102,103,113,104,114,99,110,93,111,100,112,110,95,108,102,105,85,105,99,100,105,105,110,114,113,111,113,106,109,98,94,102,103,106,102,116,112,99,98,92,98,108,103,94,98,91,109,100,107,99,100,103,76,108,101,110,102,93,98,102,112,107,99,106,104,95,107,117,108,100,101,100,97,96,113,100,106,103,113,105,104,102,100,103,99,113,101,99,105,99,104,104,88,112,92,120,104,95,109,99,92,103,104,99,95,104,103,104,104,104,104,96,110,92,99,117,99,112,102,106,110,108,106,110,90,112,110,102,112,93,101,94,100,111,96,102,102,100,102,111,106,107,102,96,106,96,104,118,102,105,97,103,103,103,100,123,96,110,121,100,103,106,95,77,101,90,101,101,102,107,101,107,107,97,108,101,106,97,101,109,102,109,103,107,97,93,98,106,100,98,107,101,112,99,108,100,95,118,83,117,109,117,102,104,106,100,95,101,105,94,98,96,109,112,96,101,105,103,104,93,110,87,95,106,103,102,97,101,105,103,112,107,108,110,109,113,100,100,97,107,103,82,99,94,90,114,116,104,117,98,101,108,99,95,98,110,111,104,99,102,108,90,106,128,97,100,92,100,93,104,100,106,77,104,113,101,100,107,101,105,109,106,106,97,96,100,104,97,98,102,93,102,103,95,99,104,107,105,106,102,101,91,117,63,96,117,96,106,112,97,101,96,99,64,101,98,113,103,107,103,106,98,106,107,113,99,106,97,109,121,104,103,108,109,99,111,109,92,104,107,111,102,107,99,99,102,95,114,98,103,91,108,92,91,102,109,100,97,96,106,113,104,106,105,98,97,111,100,95,100,103,103,107,98,108,103,111,108,104,99,92,96,97,114,97,127,117,91,95,95,102,97,103,106,106,102,90,90,111,109,101,113,108,94,93,103,94,95,108,96,93,107,88,100,85,113,99,107,129,106,96,87,108,105,92,95,108,95,109,103,100,108,89,105,93,103,107,101,104,92,109,101,98,102,110,101,108,113,68,101,106,96,102,104,116,105,108,117,103,103,111,113,98,99,103,100,109,112,103,106,93,103,104,88,106,95,103,97,104,109,105,99,108,84,102,101,92,116,72,103,104,95,100,106,107,102,120,110,101,105,97,80,110,106,97,105,104,100,112,102,109,96,106,110,107,113,94,114,95,94,101,112,105,95,102,95,86,108,105,102,102,103,97,108,107,94,101,91,111,112,102,107,105,105,105,84,108,98,88,97,101,103,95,128,105,104,99,104,98,98,106,109,98,105,102,119,95,101,98,98,100,90,110,109,99,103,87,110,101,89,100,100,97,127,122,125,106,105,109,115,96,106,93,98,92,109,104,111,109,101,88,97,98,112,100,98,91,104,98,99,113,106,110,100,93,112,97,97,94,98,102,113,107,102,105,112,112,93,106,139,102,92,101,96,109,115,105,102,106,109,100,81,97,84,98,96,107,99,109,105,94,98,92,105,95,97,112,107,88,102,105,107,92,91,97,108,102,109,102,103,100,113,105,98,113,100,128,107,97,103,94,112,104,87,92,104,117,110,105,110,94,108,100,99,108,108,84,103,120,113,86,108,104,100,109,112,99,106,109,99,106,110,102,101,107,92,89,87,92,95,109,120,103,87,102,111,133,108,119,110,110,98,96,106,98,103,116,103,107,111,111,94,102,99,95,99,114,105,104,112,100,109,91,105,92,112,95,109,94,93,99,92,104,104,108,103,104,96,100,105,94,109,92,109,90,101,94,112,106,109,105,112,104,99,89,101,95,108,108,107,95,101,89,106,91,92,96,102,100,102,106,92,113,95,102,90,92,94,90,111,105,121,110,87,105,100,99,115,103,94,97,113, +676.81433,99,108,81,100,110,98,98,83,93,98,99,92,80,110,118,87,94,99,109,100,117,89,86,101,102,99,102,101,105,104,95,95,101,108,110,105,86,100,92,92,102,103,98,88,98,100,108,98,89,98,110,101,96,109,93,93,91,106,125,101,113,100,98,94,104,105,97,117,107,110,103,106,90,99,104,106,101,99,102,98,93,100,89,103,109,105,105,98,100,90,106,93,106,106,95,92,98,103,94,97,99,96,99,111,98,103,114,91,108,113,108,91,98,93,103,96,110,91,108,112,109,107,104,104,95,95,90,92,115,99,115,107,104,111,113,90,90,104,97,103,107,104,106,95,113,101,96,104,103,96,102,111,109,88,95,83,94,104,107,93,95,105,124,100,91,100,105,94,109,87,90,118,90,106,113,100,109,90,121,105,94,91,102,99,79,101,100,88,93,116,104,96,109,101,100,100,91,101,94,112,101,109,104,101,102,84,102,102,105,102,105,103,109,103,110,110,105,102,94,101,107,109,120,100,100,106,91,87,94,100,113,97,106,105,105,91,98,104,104,97,105,100,67,93,104,100,91,113,133,108,98,104,90,114,97,95,92,100,92,96,105,80,101,79,95,110,94,102,103,104,102,111,99,87,108,93,98,90,104,95,107,118,91,99,91,96,104,95,87,93,96,104,98,108,93,104,106,102,92,96,95,91,99,110,96,100,108,102,95,94,101,98,98,105,98,111,96,107,101,61,103,108,113,113,115,101,91,86,102,110,95,92,108,112,111,108,102,104,88,104,98,86,100,101,109,109,108,102,100,97,97,100,98,102,102,108,99,102,118,101,97,101,113,92,99,89,86,98,96,105,84,104,108,87,103,122,98,96,90,110,99,104,100,92,105,99,105,99,113,102,108,102,95,96,99,97,96,102,97,93,94,102,100,94,105,92,102,94,95,86,86,95,100,91,93,77,98,117,100,102,92,80,116,118,108,90,98,95,75,104,104,101,91,95,103,101,99,107,88,96,97,97,107,93,94,91,99,89,96,102,100,103,93,106,97,96,104,101,104,87,112,99,72,107,94,92,90,99,104,98,117,95,93,93,98,94,94,95,101,95,100,100,108,84,93,97,103,104,101,113,96,107,98,105,91,97,93,109,97,95,112,113,90,99,125,98,104,109,91,100,98,105,96,103,107,102,102,106,99,94,95,103,108,103,99,104,106,99,106,98,87,116,98,94,119,106,111,94,113,100,97,98,100,104,107,89,102,105,99,100,92,98,107,91,98,120,101,110,107,104,110,104,98,102,104,95,100,112,102,105,102,97,103,96,95,105,92,99,93,103,105,101,94,105,96,91,107,99,82,105,103,118,98,106,103,100,105,91,97,108,103,91,101,95,95,104,98,105,110,95,98,98,105,105,101,104,104,105,105,107,102,95,93,93,102,100,105,90,114,100,103,96,110,96,86,105,115,97,95,98,106,105,88,97,100,99,92,94,111,99,100,98,103,101,105,105,91,101,103,98,109,100,98,102,79,102,95,97,103,102,98,103,108,104,120,98,95,112,94,101,98,106,98,98,101,101,102,119,102,90,103,107,94,120,97,91,113,98,114,95,102,94,101,102,103,100,101,101,98,107,103,97,96,105,89,101,108,101,94,109,84,102,93,110,99,98,108,106,113,106,104,102,99,97,100,103,109,80,109,98,89,95,96,97,105,93,99,104,98,98,104,106,82,89,100,98,94,87,93,96,102,99,100,100,80,97,88,95,86,107,101,104,102,100,99,100,98,83,94,99,88,102,115,117,100,94,102,105,98,104,116,96,100,107,93,105,93,108,104,93,91,98,100,106,113,101,120,92,91,105,113,100,109,99,96,98,101,98,88,100,103,104,109,94,102,102,94,96,109,101,105,109,101,91,94,102,101,106,114,101,88,101,109,101,100,100,89,97,98,100,102,94,120,100,107,94,114,97,86,87,95,105,99,95,97,100,89,97,106,91,106,99,91,111,91,105,113,90,105,104,101,107,112,88,110,100,92,108,96,117,86,96,97,87,100,97,94,102,100,101,100,96,102,114,111,92,96,101,92,98,95,112,109,98,106,108,101,107,108,98,86,101,105,119,95,107,94,106,103,98,99,96,113,103,100,103,82,105,107,101,103,103,90,99,100,104,108,106,117,100,104,104,96,102,107,100,101,102,99,101,102,103,96,93,112,106,101,102,107,104,91,100,122,100,89,104,105,83,93,100,94,106,103,103,106,105,86,95,110,103,97,104,118,90,98,98,95,108,111,100,113,99,100,82,99,81,101,97,94,108,93,102,116,103,102,98,111,106,98,103,102,107,87,89,101,102,103,101,108,84,94,100,89,103,102,97,105,99,90,108,107,107,93,106,96,99,96,100,95,110,99,71,95,103,100,95,102,113,105,97,92,101,94,105,106,87,96,106,114,86,97,109,114,101,98,99,107,106,101,86,99,100,99,99,109,100,92,103,99,87,64,110,109,86,60,98,103,97,93,89,99,95,99,100,91,99,90,97,116,98,103,110,106,97,107,96,101,97,106,104,100,107,104,91,96,100,89,99,103,90,98,118,110,95,98,103,101,114,108,94,98,104,93,109,108,92,107,104,100,102,107,95,104,99,103,105,102,107,102,109,105,91,117,102,120,118,117,104,113,115,92,109,111,114,105,103,100,107,101,108,87,114,105,102,99,115,106,98,103,113,100,102,104,108,93,114,103,101,109,102,106,104,111,95,92,117,102,113,103,93,86,101,104,103,107,109,112,115,98,95,107,97,109,97,97,102,109,113,93,94,96,100,100,112,97,102,104,96,107,98,96,112,103,103,101,101,115,95,99,98,102,87,119,91,102,93,92,102,102,101,104,105,104,100,112,105,112,117,106,102,110,106,109,94,92,97,96,91,109,106,109,111,103,108,98,122,100,111,101,94,112,110,100,115,105,105,102,99,85,108,105,99,116,116,94,106,95,106,106,105,99,102,97,104,119,100,111,117,99,103,113,110,89,98,105,117,70,110,105,101,93,96,108,104,71,104,100,100,109,91,100,117,101,95,105,97,104,112,90,96,109,103,102,141,92,102,95,96,107,98,105,113,102,94,107,105,88,106,105,89,108,93,101,102,100,93,88,109,102,117,103,102,110,110,99,103,104,103,104,94,105,98,102,103,102,99,101,97,102,109,92,98,101,98,98,96,95,101,107,81,97,93,100,79,105,107,96,98,106,113,107,98,107,110,90,100,99,105,95,99,95,103,84,110,110,91,103,92,105,102,102,107,102,105,97,102,101,96,99,97,103,92,92,102,109,99,119,105,116,89,112,110,96,99,100,104,107,104,103,96,102,109,99,98,83,97,112,102,96,115,98,107,117,130,99,95,102,105,104,107,104,98,97,96,100,103,100,95,107,108,112,99,104,117,87,92,89,91,103,99,108,107,106,91,102,102,109,101,93,89,112,102,97,108,105,93,112,94,94,103,103,103,99,102,101,115,106,109,103,93,93,108,103,96,115,91,113,108,101,95,105,101,105,99,127,103,109,108,94,94,105,116,98,100,112,108,98,101,90,105,97,108,97,93,89,100,109,104,88,108,104,96,110,86,102,99,98,101,105,106,101,103,80,92,101,92,103,108,105,98,102,106,101,102,93,90,101,86,101,101,95,108,97,110,100,105,76,108,100,99,109,106,98,114,102,106,105,100,103,104,98,96,109,139,98,101,101,104,120,108,83,100,108,94,91,104,103,106,77,97,98,92,95,91,107,103,101,103,99,102,88,92,87,105,106,102,109,95,87,100,86,94,96,103,95,110,97,103,93,88,107,101,93,105,95,86,99,107,97,81,97,99,96,100,104,100,91,99,99,96,110,104,91,106,97,103,95,94,105,125,98,100,99,97,106,95,115,96,97,128,123,101,81,97,109,110,119,98,111,97,95,95,109,100,87,117,95,88,98,102,108,112,99,101,95,111,107,112,109,108,103,111,92,108,99,104,112,100,93,109,103,98,106,98,110,91,108,107,131,107,102,102,94,100,103,116,105,96,102,91,119,97,100,90,93,101,107,99,94,104,105,106,101,99,98,108,109,95,90,93,106,103,96,95,102,112,90,105,104,105,104,102,99,105,109,89,112,108,99,107,110,107,95,106,98,101,106,110,102,107,103,100,117,105,103,103,92,109,102,94,97,100,109,100,104,104,104,104,100,98,112,99,98,95,92,112,98,95,85,112,112,110,100,107,94,110,96,98,102,101,104,96,108,90,97,95,90,97,94,90,139,97,79,101,109,107,107,120,104,103,109,112,108,90,105,106,99,116,106,109,97,112,106,120,103,108,113,98,105,98,107,88,101,103,105,104,102,104,107,99,101,99,122,107,103,89,114,113,98,93,102,113,108,113,96,101,96,102,97,100,95,97,112,100,104,113,97,125,95,90,112,102,101,101,92,100,96,99,107,108,124,101,108,109,101,104,108,103,109,112,94,97,83,108,100,115,90,106,105,91,102,85,98,103,114,109,98,108,91,79,87,85,84,95,97,105,103,106,104,111,93,103,98,100,113,100,104,103,106,101,104,112,113,107,108,100,113,97,92,97,97,97,111,94,110,109,96,100,112,95,96,95,89,109,100,100,102,101,95,109,101,86,99,102,118,102,104,103,108,79,105,104,101,94,100,100,105,105,98,99,92,107,80,94,117,83,112,102,94,93,109,121,91,100,106,82,98,97,108,105,97,102,91,100,102,105,84,99,99,93,96,108,98,100,96,107,90,105,115,89,107,100,98,110,92,102,97,96,105,113,101,96,103,96,90,104,109,106,110,109,112,109,95,99,107,92,108,94,96,104,104,119,115,98,105,108,96,98,101,99,97,104,95,93,104,84,90,103,97,91,107,96,99,103,117,119,104,104,95,96, +676.95557,106,100,91,106,92,97,107,102,84,88,113,106,108,94,98,100,89,102,121,118,91,101,96,93,90,95,99,96,99,97,96,104,93,103,94,106,100,89,103,102,107,99,117,73,97,100,109,107,96,113,86,107,98,99,91,100,96,95,100,110,97,99,102,100,109,111,102,99,92,106,101,112,97,95,112,98,109,94,102,94,107,86,101,98,96,100,92,89,113,109,103,107,97,101,103,105,98,101,102,97,97,101,101,98,102,102,107,114,93,100,102,99,98,95,109,103,99,103,92,111,92,112,106,100,95,108,98,93,90,97,94,99,99,94,101,100,107,105,89,93,103,103,99,104,96,83,102,105,87,103,102,111,102,92,77,91,99,92,104,109,109,106,104,110,89,98,104,94,103,113,95,103,97,100,105,98,102,103,101,90,113,104,102,89,108,85,112,94,107,89,86,108,100,109,93,100,75,106,96,99,98,99,100,89,106,119,107,102,113,102,103,106,112,116,112,95,99,106,95,104,103,103,113,95,97,100,114,96,100,103,96,125,86,102,107,99,92,99,103,86,87,98,117,100,95,103,86,101,107,106,101,108,94,99,75,103,88,103,96,105,94,108,99,108,73,95,97,98,103,89,101,76,94,83,117,99,95,104,96,97,100,106,99,116,107,97,103,90,108,94,108,95,98,100,118,110,106,118,106,94,88,108,112,98,95,107,103,115,96,106,98,96,100,119,101,98,110,96,105,100,88,91,102,104,112,105,103,90,110,102,95,112,138,109,98,97,104,92,99,107,124,101,93,87,123,104,96,102,109,96,99,101,101,99,93,94,104,105,114,100,111,102,97,103,100,102,103,108,104,109,95,109,112,99,100,115,108,94,100,101,97,97,100,108,110,113,106,100,100,86,108,87,104,94,107,105,97,92,103,102,92,86,102,99,90,95,96,101,103,90,93,104,98,103,103,98,99,99,107,98,104,94,92,93,97,91,104,98,113,101,100,94,99,96,100,91,108,83,85,84,103,134,98,97,104,95,103,97,107,99,109,109,101,102,98,105,100,100,104,105,100,111,108,108,113,115,92,95,101,106,100,116,99,98,77,102,90,107,108,96,102,102,107,106,108,92,108,103,108,102,104,99,106,98,95,115,94,91,107,94,105,98,98,98,106,95,89,108,114,97,99,113,95,104,90,99,98,96,114,90,108,108,101,107,92,100,72,99,99,101,101,88,96,115,99,108,100,89,75,96,111,99,107,107,107,96,100,89,106,97,88,110,106,86,98,99,116,89,102,110,115,97,106,97,103,109,95,92,109,103,102,113,105,97,91,102,105,102,107,93,99,99,113,123,108,96,110,103,100,126,99,104,105,104,110,90,89,97,101,96,96,92,95,102,117,95,100,105,103,107,107,107,100,103,96,100,100,109,100,100,105,101,99,96,104,91,111,71,100,95,98,92,106,110,93,102,92,108,92,113,98,103,91,104,106,96,104,104,100,103,100,110,103,97,99,98,104,104,96,99,108,108,100,101,100,109,107,96,94,101,101,108,99,92,96,106,106,103,111,107,119,94,105,99,87,109,102,99,108,98,108,103,99,105,97,91,103,97,101,97,112,100,95,101,113,110,104,103,87,107,101,101,107,97,106,99,107,102,117,94,101,99,115,110,97,102,114,86,104,105,107,112,114,98,96,107,108,96,108,97,107,98,100,121,105,112,117,104,114,100,109,91,112,100,108,103,99,96,100,104,99,106,98,116,102,104,91,117,111,76,106,94,108,104,106,114,103,102,100,92,102,112,111,90,104,94,128,98,102,109,103,105,96,113,93,103,95,111,103,112,99,109,102,100,95,100,105,99,102,102,106,92,86,94,96,95,96,92,110,100,139,104,114,82,99,100,97,100,111,118,98,97,110,101,112,101,108,103,98,101,87,108,100,103,102,103,100,107,88,93,101,99,108,105,96,91,111,98,98,94,105,104,106,105,105,123,88,99,103,103,102,105,107,104,113,99,95,93,101,104,96,102,98,99,102,100,95,118,89,103,101,109,112,108,105,103,98,109,102,115,109,99,102,106,97,102,94,101,93,103,102,105,117,82,96,103,102,107,117,108,98,109,109,97,105,112,107,101,103,101,112,72,108,93,99,108,106,97,105,114,95,107,100,101,92,94,90,94,104,123,87,102,106,100,110,104,114,99,96,99,89,112,112,97,106,108,91,89,104,107,94,102,96,104,102,113,103,94,98,106,91,86,107,106,102,96,90,110,104,110,113,103,100,95,116,101,98,101,101,94,102,109,96,98,117,110,100,104,91,98,102,107,108,113,110,104,99,92,105,110,110,105,113,91,105,100,108,96,105,103,94,113,112,98,102,90,90,114,102,102,109,116,110,101,88,62,95,104,121,103,83,114,97,100,113,105,95,104,106,108,96,106,104,112,95,105,108,94,116,94,92,112,99,102,104,90,96,104,104,88,96,99,105,108,103,96,91,87,107,104,95,118,103,96,95,98,99,104,110,105,106,99,94,100,113,108,101,94,117,97,98,105,98,96,112,106,110,95,97,107,103,100,106,106,96,75,106,103,88,102,105,110,81,101,105,105,95,90,111,96,110,105,102,92,98,104,106,100,99,104,99,113,113,95,94,102,101,102,89,102,91,92,105,91,94,104,111,100,97,100,91,109,99,107,100,107,114,93,108,77,105,101,95,94,98,105,108,99,111,108,72,109,106,98,93,113,101,102,99,103,109,106,112,114,91,84,103,114,100,98,103,112,98,97,101,109,110,95,93,99,106,107,102,96,113,98,104,111,93,98,102,100,103,98,102,121,102,100,96,101,101,111,97,116,89,109,113,101,99,110,115,117,109,96,100,105,96,83,93,108,106,71,96,96,123,107,106,102,96,107,106,106,106,114,107,107,97,101,110,102,108,97,106,102,103,94,92,88,97,96,99,99,103,109,103,108,107,107,116,106,103,90,93,108,101,116,110,96,100,101,91,107,111,103,97,96,112,110,98,98,94,104,107,133,95,94,100,99,99,104,104,99,102,106,102,104,102,100,107,85,93,102,111,93,118,100,101,101,95,111,96,95,126,104,102,104,104,103,113,136,104,104,106,94,106,104,113,102,102,99,97,100,105,72,99,96,102,97,105,99,108,102,98,104,105,118,109,131,97,92,105,99,97,119,102,111,94,109,111,101,108,114,105,92,109,110,110,98,115,99,100,110,109,86,109,103,101,97,101,98,110,105,107,112,112,99,104,108,102,94,97,94,121,106,99,99,109,126,100,94,99,103,108,84,104,99,106,98,109,101,104,98,95,106,104,107,102,79,99,94,106,98,98,98,114,95,106,96,107,106,105,108,113,99,103,94,94,105,102,100,98,122,103,109,105,101,98,108,111,101,108,101,93,94,94,99,102,106,97,98,92,93,104,82,97,103,98,96,99,97,90,107,102,99,102,103,108,135,106,100,108,117,88,103,83,105,82,106,92,96,98,88,98,101,103,107,95,105,105,93,99,94,105,110,104,96,101,102,105,94,113,96,98,107,96,104,95,100,92,99,119,91,101,102,96,109,108,112,91,104,98,95,96,112,93,93,104,96,112,93,104,113,90,104,103,98,98,91,100,99,108,99,120,103,98,99,93,87,115,102,94,93,103,107,98,94,104,102,107,109,110,99,105,92,113,96,104,105,105,95,99,104,97,106,102,95,70,125,122,103,112,115,104,105,105,108,94,118,104,91,98,98,102,93,106,109,106,95,116,105,104,102,88,98,104,99,97,127,103,94,98,104,100,84,109,96,105,113,103,101,111,105,93,94,112,105,101,104,94,103,111,100,105,99,95,138,107,93,100,95,106,106,94,104,101,99,109,87,104,95,98,101,91,99,90,94,96,120,96,97,101,94,94,96,109,102,91,85,94,102,100,87,108,98,100,103,99,95,102,100,112,98,111,109,94,102,98,105,107,116,98,121,81,97,100,104,103,98,110,86,115,106,102,110,100,71,110,98,94,95,107,104,100,97,111,95,104,99,94,103,107,100,103,86,106,95,110,78,104,97,106,98,102,93,106,108,103,95,71,90,101,109,104,103,95,97,96,115,101,93,87,104,104,97,96,104,103,107,100,100,95,94,95,92,101,107,76,101,99,109,95,88,95,104,109,96,99,108,95,100,98,98,101,95,96,91,107,109,100,111,104,109,99,97,107,99,91,103,98,128,107,103,94,98,90,99,100,98,96,115,97,104,105,88,105,96,112,107,102,100,104,91,101,105,95,115,96,106,102,104,101,101,103,103,107,109,105,96,96,92,100,104,96,107,99,105,87,105,99,113,109,104,103,94,100,107,97,110,98,98,107,92,101,108,100,110,112,92,95,109,99,137,112,98,91,112,108,101,98,101,96,105,109,100,95,101,101,104,105,110,91,95,109,98,103,105,98,103,105,83,98,113,96,92,99,108,106,99,82,112,90,105,104,98,99,115,71,113,120,102,97,101,104,117,104,117,106,97,114,117,93,97,87,91,109,115,108,97,105,83,105,97,100,104,91,112,104,91,101,105,94,99,95,102,97,108,110,93,97,101,104,118,109,102,104,97,92,86,90,103,94,83,101,72,109,104,109,96,105,96,106,100,107,98,89,104,108,104,117,94,106,106,100,96,109,102,107,104,106,94,93,97,101,109,103,95,102,104,105,107,103,92,117,94,102,107,95,94,110,98,98,113,102,93,99,112,101,82,98,103,105,95,95,100,91,101,106,102,113,86,95,92,109,99,104,101,94,65,104,97,103,91,96,97,117,95,102,93,99,102,98,94,98,78,101,100,94,92,78,99,106,104,98,111,96,98,96,96,93,108,100,96,81,86,97,103,91,102,103,93,93,100,79,108,104,102,94,87,85,95,111,99,105,95,104,108,109,106,104,112, +677.09686,121,105,93,96,99,100,112,117,107,105,98,105,94,107,91,95,101,110,110,102,104,107,101,104,121,107,98,110,96,108,118,113,118,111,122,108,75,91,105,109,94,102,113,101,96,107,103,133,95,80,107,94,96,91,94,109,98,104,112,79,111,101,99,88,92,116,99,100,96,111,109,101,94,105,97,97,97,104,105,106,96,116,102,108,99,103,98,110,102,86,99,105,102,105,97,101,105,105,102,98,95,103,105,91,109,111,101,116,95,111,101,104,103,99,109,104,100,88,101,112,99,92,102,113,104,110,128,97,108,114,110,101,96,96,98,106,99,94,105,101,95,120,102,86,87,96,91,98,108,106,104,105,99,95,99,113,84,110,100,102,93,106,95,104,114,104,63,101,100,85,102,99,100,105,91,115,106,105,105,113,102,92,99,101,96,88,88,105,111,96,102,107,96,93,96,109,112,100,107,109,110,109,107,107,101,114,105,114,99,114,102,103,95,95,99,89,101,104,91,100,100,81,102,103,101,96,89,95,93,101,105,119,103,105,94,102,99,105,98,112,100,112,100,112,79,106,95,74,108,104,105,93,104,116,90,100,100,105,105,107,100,95,98,104,86,104,104,109,104,105,100,104,98,97,99,66,101,105,100,102,92,103,100,114,101,97,101,95,99,100,104,96,98,96,102,100,107,101,102,88,108,110,109,103,103,113,115,98,105,108,92,104,112,108,111,109,101,92,104,109,106,94,107,98,103,110,99,91,111,106,114,92,112,101,112,95,112,108,100,115,95,112,93,92,116,93,112,116,105,106,98,96,102,95,104,96,96,97,108,109,100,102,97,109,98,111,113,98,102,107,105,97,117,110,105,102,95,101,98,111,84,87,104,94,102,105,106,106,110,101,108,97,100,79,99,80,92,116,104,103,91,110,94,91,78,101,100,107,105,90,109,100,104,106,91,97,99,93,101,108,106,103,101,116,115,101,83,92,90,99,104,107,97,106,100,103,112,99,107,101,104,105,120,100,100,98,97,94,105,102,104,95,98,105,101,106,96,103,106,96,94,100,101,104,97,108,104,101,107,102,98,96,107,90,96,60,113,111,95,91,108,120,114,106,95,107,95,104,95,98,110,113,114,103,88,103,94,96,104,97,87,92,91,105,107,97,100,102,103,91,101,113,91,109,97,61,94,99,108,102,97,97,101,98,98,99,106,97,100,100,96,105,113,85,101,100,103,93,101,117,100,109,87,94,97,98,109,102,104,111,100,101,111,98,108,108,90,111,99,104,125,110,102,106,94,96,100,98,118,97,87,122,99,105,90,104,98,94,117,105,119,102,104,113,94,99,112,105,100,119,93,117,90,108,96,117,98,93,94,108,113,108,111,98,98,98,112,98,109,102,114,105,109,116,99,109,111,95,99,107,113,100,105,100,93,94,101,91,98,93,109,105,105,99,111,101,100,106,106,109,101,104,96,85,92,84,107,109,110,103,93,105,102,98,98,102,117,104,111,116,112,97,99,99,88,101,111,103,102,91,107,108,108,98,106,104,95,100,105,97,117,113,97,100,98,101,91,107,108,106,101,115,90,80,99,90,101,102,97,104,93,100,102,100,98,104,103,114,97,100,104,88,97,94,101,104,95,112,94,95,100,121,106,104,105,104,90,105,114,91,103,105,109,99,99,106,110,105,92,98,103,102,109,108,103,113,113,107,97,101,107,95,98,109,104,104,105,104,109,110,92,94,86,114,102,112,91,100,112,96,105,99,105,124,101,113,106,87,101,77,93,104,99,103,107,99,107,112,112,104,99,107,104,100,111,98,102,103,104,110,96,101,104,94,112,112,62,91,108,67,109,96,87,118,112,101,128,90,106,98,101,96,92,105,94,95,83,103,116,97,108,107,115,103,95,97,103,99,108,101,121,102,98,95,103,104,111,100,111,99,108,104,95,104,97,108,99,100,104,110,108,97,99,104,108,97,105,114,95,101,99,93,99,105,115,119,96,90,100,103,108,114,113,102,103,92,94,99,93,102,102,101,101,107,109,96,105,105,96,85,96,101,92,109,109,96,92,90,110,105,101,99,101,101,84,105,97,105,97,96,108,123,99,109,110,107,102,112,105,108,104,106,104,101,90,94,120,110,101,87,98,99,100,102,93,108,100,96,110,99,110,95,100,109,104,96,101,113,84,95,102,101,108,95,102,90,101,98,85,104,105,129,94,112,101,110,99,98,103,91,95,105,95,95,100,116,102,99,93,117,94,103,99,97,106,114,98,99,99,109,118,107,102,104,97,103,105,94,107,93,95,117,110,93,85,124,100,92,99,93,110,104,102,99,105,104,106,110,104,91,106,86,105,104,102,101,81,109,109,99,87,108,99,106,98,106,122,106,106,106,104,108,94,104,97,101,100,104,106,81,94,94,100,95,101,103,99,105,116,118,98,86,118,92,115,103,87,99,97,101,100,101,100,104,111,78,102,77,82,106,107,100,98,96,93,94,110,94,93,100,104,93,91,89,108,96,106,107,109,95,101,110,90,111,108,93,98,102,108,108,97,102,101,95,105,98,101,113,113,110,107,106,106,96,109,115,102,99,86,99,101,102,104,98,96,110,110,81,90,103,104,99,107,104,100,102,106,105,110,98,104,100,100,99,98,103,117,102,101,109,105,102,101,103,102,102,104,94,108,83,94,102,103,120,104,105,98,89,108,105,106,91,102,106,105,101,104,98,105,95,92,100,112,89,97,95,103,99,101,113,97,105,103,87,106,102,104,99,95,101,107,105,91,101,94,99,97,100,104,102,101,110,97,106,97,108,99,101,111,101,101,114,110,91,64,92,110,102,91,94,93,110,108,110,100,87,111,88,105,115,102,99,104,110,101,106,97,104,93,119,113,98,110,109,100,114,102,98,116,97,94,107,96,88,97,98,98,93,94,112,105,105,112,105,101,114,101,90,101,95,99,109,98,99,101,96,112,109,101,103,112,98,104,95,107,102,98,96,101,106,105,100,94,99,111,112,108,103,97,104,105,112,95,110,93,108,92,104,83,112,106,91,113,104,101,99,109,105,109,96,103,94,96,109,101,95,112,102,115,110,105,102,110,94,101,101,90,103,107,102,98,107,97,95,109,99,104,96,102,110,102,109,102,104,107,100,95,91,103,102,93,93,109,101,91,79,108,97,102,98,100,98,95,105,100,112,98,99,96,102,94,100,115,105,98,113,108,96,108,101,103,114,95,101,91,95,98,100,101,103,109,99,103,106,104,104,92,105,106,106,108,113,107,94,104,103,97,94,111,99,90,93,105,106,95,102,105,107,100,94,99,108,98,102,102,95,116,109,107,105,109,104,92,104,114,88,91,111,100,110,96,112,108,100,106,104,96,106,98,107,105,99,99,105,98,108,114,102,105,100,77,97,102,103,88,95,103,100,99,113,91,97,98,115,94,94,108,106,100,99,100,92,117,91,94,105,107,103,97,95,94,107,93,91,109,102,99,99,109,97,104,106,106,104,124,102,89,105,90,99,98,94,101,112,105,110,100,103,96,99,100,101,92,100,98,110,107,96,112,117,97,100,99,119,96,106,105,100,104,92,96,97,103,102,105,109,116,96,96,95,98,104,100,113,104,105,117,111,81,91,95,104,103,93,93,100,104,96,101,96,103,95,100,128,99,102,103,101,100,93,96,103,97,87,107,100,102,105,108,108,110,85,117,109,101,96,104,100,102,94,101,106,99,92,102,108,113,100,98,111,95,106,95,94,102,110,102,103,105,106,91,101,105,97,92,102,100,97,107,99,111,93,93,106,99,101,110,107,99,101,113,94,105,107,102,120,98,103,95,115,96,104,98,101,104,101,100,101,98,104,113,100,101,98,97,89,95,105,99,86,110,100,97,115,100,95,107,97,99,102,103,102,92,104,104,85,108,108,100,100,113,96,108,92,96,106,108,98,98,91,105,99,92,107,82,101,106,96,108,96,100,102,102,109,108,101,95,101,92,97,100,93,82,107,103,105,96,97,101,113,105,98,102,95,101,97,105,99,115,94,111,98,102,113,102,105,106,114,105,105,118,92,80,94,98,83,98,100,105,106,100,105,99,115,109,108,89,98,112,100,96,100,101,105,102,98,111,98,94,106,100,96,77,96,106,100,95,98,105,93,105,101,100,107,103,99,103,106,107,105,100,96,99,94,111,102,95,96,102,101,105,90,109,108,98,99,98,93,90,119,94,100,102,98,97,95,92,103,89,110,117,112,91,93,99,100,103,105,110,103,104,93,113,108,103,104,104,100,110,106,124,98,106,101,101,99,94,105,96,114,101,99,95,106,100,103,107,97,104,95,112,96,99,91,111,101,106,102,101,103,109,105,108,116,91,102,96,100,102,105,99,99,79,99,102,98,100,109,98,97,101,91,104,91,87,120,85,95,94,107,110,104,93,100,100,102,94,99,92,98,99,114,108,102,115,110,91,83,100,103,96,94,101,111,96,104,99,98,96,105,100,108,91,108,103,95,102,109,96,84,101,99,102,106,105,87,103,101,104,105,114,101,98,109,104,96,98,96,92,120,93,94,109,92,111,109,103,121,106,100,101,85,109,100,113,102,111,102,127,117,98,103,95,109,96,113,114,100,108,98,96,101,120,102,102,97,105,100,98,101,104,100,101,71,92,100,96,91,106,117,91,105,92,89,112,75,94,105,94,97,90,111,107,99,104,95,102,110,108,96,97,99,109,103,94,90,106,103,107,83,105,97,93,92,104,106,100,91,107,103,120,91,116,120,100,94,106,91,95,93,99,94,96,105,112,104,115,97,115,104,105,64,95,98,110,97,128,102,99,118,97,112,88,115,112,100,95,97,104,93,103,104,96,83,96,97,107,107,106,105,104,97,100,113,108,99,111,103,75,82, +677.2381,126,111,105,95,87,100,104,112,111,96,106,94,108,94,97,107,109,117,83,94,103,96,91,106,95,92,101,94,114,109,106,96,95,113,96,100,95,99,88,105,87,106,102,101,91,116,101,96,90,110,100,95,103,110,111,97,69,110,103,91,108,113,86,90,100,108,105,99,102,98,100,98,96,76,100,94,88,101,117,102,103,88,102,100,98,94,101,103,100,88,106,98,105,101,88,102,94,97,92,93,97,93,109,100,97,104,101,103,98,92,90,109,107,109,98,110,105,114,108,106,105,91,119,109,72,95,113,114,113,101,101,104,96,95,120,110,83,101,101,100,90,109,110,86,96,94,101,105,96,97,94,96,106,90,95,124,104,99,105,86,80,105,91,103,103,108,97,106,96,98,102,107,89,95,117,113,118,92,103,94,95,108,96,100,93,94,97,86,98,114,107,95,103,95,108,102,104,107,95,99,86,90,97,103,95,109,110,112,104,113,84,98,99,102,115,93,98,115,98,99,102,103,110,97,99,92,106,111,92,99,84,98,95,100,111,104,109,101,101,94,103,100,102,101,89,102,101,105,94,100,84,111,93,109,106,109,91,91,101,105,89,101,92,106,104,98,93,99,111,94,102,86,97,96,107,100,95,95,101,112,109,103,95,108,109,102,100,113,101,103,96,74,120,102,97,96,103,99,102,105,94,111,98,98,102,98,96,110,97,93,100,108,105,94,93,94,101,98,106,95,93,106,97,102,121,104,96,91,97,86,111,95,99,104,101,100,109,105,102,97,125,88,100,100,101,112,101,113,106,97,102,93,108,98,113,117,106,103,94,105,114,100,102,93,76,101,80,108,97,103,109,107,98,96,101,106,97,108,100,87,107,97,96,101,100,106,102,106,71,102,94,95,88,102,102,101,107,93,106,101,111,95,102,100,100,98,91,99,100,106,94,105,105,101,108,105,100,98,103,102,102,102,97,90,94,88,85,99,92,106,96,112,78,94,97,109,103,99,99,102,92,96,98,113,101,90,91,97,97,97,97,101,108,107,97,101,105,107,107,100,97,104,96,101,101,108,100,106,103,97,108,99,95,95,97,95,91,100,106,102,101,112,112,91,101,94,100,96,97,103,102,109,104,103,87,108,107,101,104,96,114,103,107,109,101,94,113,98,102,106,96,111,102,112,104,98,106,109,105,103,93,92,103,91,103,96,109,99,101,100,91,98,106,97,98,100,110,99,100,105,96,99,111,97,106,75,102,70,105,107,104,98,99,96,98,101,100,104,103,94,88,97,93,111,91,96,95,98,94,92,102,113,105,84,91,95,104,94,104,90,94,104,101,92,83,108,103,128,110,94,98,97,105,106,113,117,103,104,120,99,96,85,97,114,101,102,95,98,101,109,97,94,104,103,101,94,86,91,107,112,105,102,101,98,92,103,105,104,103,97,92,97,90,102,92,106,100,100,103,99,99,95,92,92,95,98,92,98,109,99,92,98,103,106,98,107,97,105,92,100,108,108,110,103,92,97,101,98,99,104,102,104,88,94,96,127,103,99,102,91,107,92,106,100,96,94,108,108,91,95,105,103,105,105,101,95,103,105,101,99,102,97,98,102,96,118,97,112,95,90,94,91,97,104,98,99,92,107,95,83,101,80,110,104,96,105,98,97,107,117,103,105,94,99,97,96,100,94,99,100,97,90,73,87,105,102,97,103,98,103,103,101,98,102,97,98,90,100,100,107,106,101,94,101,101,102,89,96,95,96,116,97,97,91,88,99,95,94,99,89,92,112,106,100,105,106,109,105,98,103,109,100,85,111,109,105,110,92,97,103,88,106,93,104,114,98,96,105,102,99,109,100,108,88,96,115,107,103,105,100,107,104,99,99,93,93,103,108,109,108,102,96,87,94,97,105,95,95,111,104,97,107,109,95,102,103,121,106,101,103,99,96,97,98,95,92,97,95,90,100,97,95,114,79,96,89,92,106,100,90,102,112,98,85,112,106,100,106,102,104,99,95,121,103,94,98,102,98,112,100,102,113,95,104,101,91,93,102,98,97,97,112,99,92,100,105,88,91,107,92,116,118,105,91,102,99,87,90,87,100,113,96,101,108,100,91,102,92,100,109,104,101,111,87,98,96,97,96,93,104,97,96,106,106,82,101,96,96,104,97,114,102,98,85,121,100,112,96,99,95,97,94,102,95,106,100,99,104,97,114,108,113,84,99,92,100,98,90,101,101,92,100,96,98,86,100,105,91,103,94,99,106,102,85,90,96,104,102,102,106,102,94,101,87,100,100,97,101,107,100,89,104,101,98,94,102,98,98,91,115,112,105,95,90,106,112,97,115,106,101,96,86,103,97,100,93,97,103,99,99,102,129,105,105,93,79,100,100,100,95,106,99,95,110,105,112,87,96,99,92,91,109,104,97,93,80,91,102,110,80,96,93,98,104,87,98,97,98,90,94,99,87,100,107,98,106,102,90,94,111,105,107,109,112,100,106,92,107,104,108,91,96,121,96,113,96,115,107,107,78,102,119,100,107,102,102,98,99,98,104,99,108,102,102,105,99,116,97,112,110,106,113,106,102,119,100,102,86,93,105,93,110,99,102,103,103,104,105,98,90,102,93,98,99,101,102,105,97,102,109,102,97,109,101,100,90,104,89,101,117,108,117,116,101,100,91,96,99,105,92,98,117,109,101,101,109,114,97,111,93,107,98,90,111,94,98,99,100,104,95,104,98,98,105,99,101,103,107,105,113,104,108,111,106,111,107,99,111,100,104,117,98,100,101,112,99,101,110,106,108,91,108,83,95,97,92,106,105,76,106,97,100,103,91,99,99,97,103,98,111,105,99,101,100,99,95,99,106,106,105,109,99,95,102,104,101,81,103,99,92,100,94,104,104,94,88,121,98,106,110,101,109,99,102,112,103,106,107,99,102,99,113,97,99,112,92,101,109,98,109,109,95,92,104,101,112,113,100,112,105,96,97,101,94,99,123,100,98,101,95,101,102,98,105,103,105,105,101,109,88,93,87,101,111,103,117,110,89,110,95,97,109,118,114,104,101,110,103,112,108,102,98,112,108,106,100,114,102,101,104,98,111,107,106,99,79,106,108,84,105,100,103,103,105,75,101,103,102,108,106,98,98,110,106,109,115,96,102,97,117,102,89,101,94,95,100,106,92,99,117,112,94,102,112,104,99,113,99,109,92,98,105,98,108,111,73,103,106,108,103,108,100,101,95,94,109,84,94,102,107,117,108,101,105,105,91,93,103,100,108,114,98,94,102,103,99,98,104,102,106,105,110,100,103,94,102,115,99,103,98,109,97,106,71,107,103,108,106,104,96,100,103,101,89,111,104,96,97,106,103,101,101,105,99,101,103,109,96,107,103,110,90,94,103,103,87,97,71,110,117,98,106,113,107,110,108,110,106,95,102,101,97,112,120,96,94,101,115,92,86,101,109,102,94,104,106,107,84,93,87,110,117,104,100,108,96,103,109,116,90,100,97,97,122,104,105,106,99,94,107,99,92,115,109,110,95,110,109,103,107,110,100,97,95,104,106,98,102,113,114,109,95,97,98,102,110,107,94,88,100,101,98,104,101,101,101,99,103,101,90,98,105,96,103,107,66,105,113,101,109,105,110,116,103,104,102,97,109,102,102,108,105,105,110,91,106,98,101,102,104,113,101,97,111,90,106,69,99,125,95,111,116,100,111,88,112,108,99,97,110,101,98,105,107,101,110,102,102,101,104,102,101,94,115,103,100,108,116,104,106,86,103,115,110,107,95,109,89,90,119,111,106,94,107,104,101,96,108,101,104,104,108,75,98,86,104,106,86,100,95,95,91,98,97,102,104,118,104,104,107,108,99,102,101,108,102,113,99,95,111,115,113,103,99,104,92,97,105,100,100,97,108,105,112,97,103,109,90,99,110,93,101,105,123,100,102,115,95,112,106,98,117,94,102,95,102,80,103,86,101,108,92,109,101,95,95,99,93,101,127,102,99,100,109,100,103,94,103,103,96,100,99,105,87,103,100,96,102,108,94,100,94,98,112,109,99,105,99,115,102,109,99,100,103,100,113,89,101,95,113,92,120,106,105,102,114,95,105,120,111,107,98,97,104,107,98,104,105,100,109,94,96,99,102,107,104,121,119,109,100,112,81,102,106,93,109,114,99,111,102,79,122,110,94,109,117,101,112,90,108,104,113,102,113,98,100,97,99,104,112,113,97,112,107,107,101,103,105,111,104,116,99,96,115,90,72,94,98,91,105,100,100,103,107,95,106,99,93,103,109,112,108,106,110,117,102,100,94,96,109,116,99,101,114,104,95,99,103,103,115,109,95,111,101,104,100,109,101,99,102,104,108,99,102,106,107,106,102,100,107,95,104,99,107,108,97,96,114,106,101,91,104,94,107,96,118,98,111,114,100,110,78,100,93,95,98,101,94,101,112,104,109,99,92,105,94,102,110,98,92,103,110,103,91,95,91,90,105,104,100,108,105,95,101,96,103,104,108,102,97,106,105,101,107,98,102,101,108,93,96,92,98,98,94,105,103,109,106,105,103,95,123,106,101,103,118,103,102,88,86,89,106,83,102,109,104,101,99,107,100,81,86,95,104,108,106,101,116,93,105,106,109,87,109,121,102,102,99,110,97,108,103,97,96,118,101,84,94,93,95,90,112,104,96,99,111,112,105,98,99,98,113,119,97,102,107,84,92,99,99,102,102,102,97,106,110,98,93,102,111,107,105,98,107,93,111,112,96,99,93,96,108,100,89,101,109,100,100,102,104,99,73,103,108,93,103,95,99,95,100,108,102,95,98,98,100,71,91,90,109,91,99,94,98,84,102,111,101,115,98,105,124,121,96,120,98,111,108,94,102,109,101,85,99,97,101,101,88,105,96, +677.37939,104,96,107,106,104,107,86,108,101,113,110,68,82,100,96,100,108,89,89,94,114,103,95,102,92,100,93,94,101,101,93,101,101,92,98,95,101,96,89,112,93,102,108,99,106,103,104,96,108,66,108,110,110,100,77,99,99,87,114,91,100,103,99,95,111,106,116,126,109,115,96,97,102,100,100,104,101,102,100,106,102,91,99,97,100,96,107,101,102,102,107,92,109,99,101,104,101,87,94,111,96,100,92,91,100,97,100,97,103,107,109,98,104,108,108,117,117,99,104,109,100,90,99,117,105,107,106,84,110,97,99,100,89,98,111,106,109,89,95,100,91,110,102,106,92,95,112,123,99,97,93,104,96,108,89,91,105,105,114,94,112,118,105,97,111,105,93,109,92,108,102,109,110,116,100,91,102,92,115,100,105,101,104,101,102,101,89,80,104,95,93,101,94,111,86,96,109,102,93,111,106,92,92,108,100,101,105,90,108,95,94,99,97,113,95,96,101,110,100,110,99,96,110,93,100,109,100,108,111,96,101,83,108,95,103,94,93,104,83,113,101,95,106,97,101,102,101,97,105,83,112,92,90,98,102,94,98,99,103,108,94,92,86,101,90,105,82,103,102,96,93,113,115,124,97,98,100,113,110,101,95,108,98,107,88,101,97,109,116,110,105,101,98,105,98,111,105,104,126,95,105,97,96,107,95,112,91,114,87,114,103,105,98,85,91,101,96,87,97,108,99,94,93,98,112,94,98,91,104,102,105,111,106,101,102,84,94,98,93,105,104,103,88,95,94,100,98,102,104,123,102,102,110,87,98,111,109,100,95,92,99,106,96,95,102,95,104,110,99,113,103,99,92,98,104,102,103,93,99,100,102,113,89,109,106,109,94,86,109,97,113,91,99,95,99,102,94,114,105,116,109,105,102,100,98,93,102,100,97,106,92,94,110,105,100,107,107,95,103,101,118,96,96,107,104,93,104,94,102,121,101,95,116,98,94,101,90,100,104,104,121,105,99,110,107,98,111,99,112,99,98,99,110,116,107,105,106,120,93,115,101,105,100,110,104,103,103,92,117,105,86,102,100,97,106,91,92,112,99,108,90,91,106,101,92,92,71,99,96,103,114,99,97,97,102,99,93,110,109,105,108,95,88,107,101,100,102,90,107,104,92,104,88,113,100,100,106,109,98,94,104,101,100,91,91,103,109,87,94,97,90,105,109,96,92,118,99,84,105,112,105,96,93,99,97,91,120,94,106,99,93,96,109,98,99,98,105,93,112,105,108,97,101,99,111,105,106,106,110,108,100,119,105,76,103,98,94,98,109,97,100,110,102,96,103,116,114,109,89,112,100,107,99,95,110,112,103,97,98,115,100,102,112,102,101,110,98,102,100,99,105,100,103,115,105,100,87,104,96,87,100,105,100,105,101,89,105,99,117,99,96,127,102,103,96,97,99,102,101,104,95,86,111,117,106,99,99,93,101,115,88,104,113,94,94,101,111,111,95,115,99,97,91,104,93,100,101,99,91,103,104,105,131,98,98,118,105,106,101,100,104,111,104,90,99,96,99,115,110,105,104,101,101,114,96,101,103,99,99,90,97,102,102,103,90,91,105,110,96,95,99,82,91,106,104,98,95,98,93,100,102,96,102,103,97,98,110,103,98,97,97,99,104,104,100,90,94,96,110,111,104,94,103,107,92,112,111,104,96,103,81,96,98,105,90,101,104,71,117,105,109,107,86,99,77,87,93,101,86,83,92,105,100,94,105,103,89,99,96,97,104,87,111,104,92,100,101,102,93,98,92,96,102,115,108,107,110,112,106,109,95,104,94,106,105,109,94,108,101,104,108,101,103,109,115,100,102,97,99,110,103,90,110,104,105,107,105,95,99,93,111,99,96,95,92,99,101,100,114,97,95,113,111,84,103,98,96,79,103,100,98,95,96,83,96,91,100,114,103,98,102,95,103,94,95,103,101,106,104,113,91,100,95,92,105,96,101,70,105,112,98,91,100,105,80,111,102,111,100,98,98,103,100,103,91,106,115,105,95,97,102,108,102,101,109,90,103,103,95,93,104,111,103,96,97,108,97,101,112,97,94,100,101,101,106,104,98,97,96,95,97,103,82,99,102,98,98,98,108,103,107,100,89,98,93,102,99,101,97,101,109,101,95,115,98,99,109,96,106,81,119,108,106,104,110,94,107,98,101,87,104,108,114,102,101,78,95,102,101,109,99,100,111,108,105,101,97,89,108,103,101,108,100,88,102,114,98,104,115,116,122,99,89,102,109,91,103,99,92,116,96,105,103,112,100,99,109,105,109,101,110,106,107,87,100,114,101,113,113,112,94,93,108,86,109,87,92,99,107,109,99,98,92,91,103,113,98,110,94,89,99,86,93,87,88,99,106,90,95,99,97,103,101,104,100,103,104,104,106,91,89,114,98,95,93,108,96,100,97,92,96,104,101,106,105,104,109,132,108,99,108,107,116,91,92,98,103,114,107,102,99,104,119,110,102,98,98,97,113,99,92,110,110,97,95,92,102,99,76,103,104,98,96,99,100,99,95,105,77,107,102,90,98,106,109,108,95,100,96,99,93,99,95,102,102,103,99,111,106,100,105,101,109,117,117,96,103,101,99,105,110,94,103,104,111,101,102,102,104,105,104,113,119,103,87,102,105,101,95,96,106,95,96,115,103,78,105,103,94,104,103,103,114,113,111,100,106,103,108,111,105,103,107,98,103,104,96,108,99,117,105,107,112,95,113,99,102,116,95,96,100,116,98,104,105,100,106,102,96,102,95,98,92,102,110,95,111,92,92,111,104,110,104,95,110,101,98,114,104,113,91,106,106,98,98,92,108,108,96,106,109,105,107,99,111,95,100,95,103,102,112,125,95,108,98,81,109,110,99,108,114,101,106,101,88,102,101,112,101,103,107,105,91,108,89,115,107,106,107,100,96,100,116,99,100,109,103,104,96,105,91,109,94,88,107,109,106,101,100,103,100,102,98,104,112,99,103,112,114,114,104,99,99,113,103,99,97,99,102,95,96,107,108,92,108,97,98,109,120,91,104,90,98,98,89,104,92,113,106,101,100,109,99,97,99,99,104,109,108,98,106,108,112,107,108,96,106,106,110,95,110,92,102,99,97,98,103,111,97,94,111,100,109,96,103,95,107,92,109,105,105,90,103,96,94,107,106,111,102,114,87,106,105,119,105,98,115,93,80,99,97,99,104,99,91,104,120,105,119,96,101,103,104,114,102,87,117,101,102,102,117,85,92,102,102,112,100,98,105,108,109,96,111,102,93,102,112,93,102,114,104,107,98,110,105,115,100,97,86,108,107,114,102,113,104,105,104,106,99,107,83,103,106,107,91,106,106,98,113,105,101,101,96,101,105,106,100,102,104,102,109,103,101,103,98,103,108,94,96,98,99,97,99,94,90,93,107,103,99,116,91,108,109,95,102,101,112,96,104,96,105,107,108,103,97,99,77,92,111,95,103,100,102,113,111,101,99,108,89,78,101,101,105,113,104,99,98,96,106,100,102,92,102,99,98,106,105,109,106,102,96,98,108,101,90,98,97,98,103,106,106,107,97,79,112,92,111,102,116,108,95,95,113,97,98,97,109,98,75,100,92,102,108,107,108,87,99,98,103,105,97,95,79,99,100,90,100,104,109,95,110,104,99,100,121,105,95,108,114,95,94,99,102,113,105,97,91,79,83,85,95,98,96,106,101,107,102,94,94,104,107,95,108,105,102,94,102,96,100,98,108,103,101,111,102,105,103,96,108,111,112,110,87,107,100,95,90,109,78,96,112,108,103,97,98,96,110,105,100,97,90,105,118,108,110,101,109,104,121,103,104,105,108,109,92,102,100,100,97,109,102,95,95,116,109,96,97,107,103,94,104,95,86,102,107,99,110,95,106,95,108,91,110,95,105,109,103,105,106,103,93,116,97,109,101,103,107,98,95,98,109,115,91,96,96,81,111,103,98,111,91,95,104,92,116,103,101,115,104,101,101,83,106,100,103,104,112,95,113,94,113,105,109,108,101,108,95,100,113,97,96,104,105,105,98,90,103,113,104,96,106,96,104,104,94,102,100,102,96,94,105,105,101,108,105,110,101,101,102,109,97,87,108,101,107,101,101,120,96,106,107,89,90,90,101,73,101,104,104,100,102,102,100,98,101,109,95,90,99,108,105,101,101,106,98,107,93,88,98,97,109,94,91,98,99,103,109,120,94,102,101,99,107,106,101,83,96,111,92,104,91,103,109,98,93,99,106,94,103,110,85,105,95,103,112,96,104,92,118,115,96,96,108,103,103,84,104,116,95,100,98,102,112,103,89,96,99,99,92,97,108,105,110,92,107,106,109,71,106,93,96,96,84,104,94,105,99,104,102,92,96,95,103,111,103,81,103,103,104,90,110,106,103,94,99,98,90,99,102,105,108,108,91,94,106,88,108,106,102,124,102,83,103,67,105,117,103,99,106,104,105,103,104,114,88,100,102,112,105,101,97,99,107,98,97,94,123,104,105,97,103,105,117,111,102,83,101,90,93,105,95,102,104,94,92,106,104,106,103,94,97,109,111,93,109,95,108,109,107,110,102,104,107,101,101,101,111,102,92,102,91,108,104,106,98,96,118,90,91,95,94,113,108,125,98,101,133,115,88,98,107,78,93,103,103,117,106,108,110,77,91,116,104,105,94,100,102,102,95,98,93,108,98,101,102,104,111,105,113,90,112,104,102,102,111,94,98,99,100,93,101,95,106,100,102,114,102,103,103,110,105,110,101,101,99,92,109,99,109,110,92,110,91,93,92,104,105,110,104,88,104,119,89,108,94,135,97,100,102,100,107,87,95,102,102,111,105,116,102,116,102,91,97,100,107,111,105,85,91,90, +677.52069,94,92,103,114,95,114,90,110,97,103,98,109,94,102,90,92,102,121,109,95,96,128,95,98,93,95,102,109,109,102,94,92,105,97,100,96,94,99,101,91,105,91,97,97,101,120,102,103,102,106,101,106,110,105,107,91,98,107,97,97,99,92,101,95,101,102,99,99,95,90,90,108,91,102,99,103,87,84,108,89,92,98,73,93,98,94,96,101,99,104,95,93,92,98,106,101,88,99,100,106,108,112,91,107,106,102,125,97,102,107,109,105,99,99,97,99,102,97,119,108,107,99,97,118,94,100,96,87,104,107,96,97,76,96,106,100,97,98,109,95,97,98,92,105,99,100,94,96,91,96,118,98,94,110,101,105,108,107,102,103,104,112,93,102,97,113,91,92,95,89,118,98,103,109,109,114,92,97,104,100,100,105,88,107,107,102,106,99,101,101,91,108,90,101,98,100,99,101,100,97,110,96,103,116,106,102,84,112,110,105,101,87,105,105,101,98,92,105,109,121,112,105,95,105,109,109,99,111,94,106,93,95,104,102,109,94,85,101,92,92,102,104,100,86,99,102,117,83,94,100,96,97,97,98,100,112,106,101,81,100,95,110,93,100,92,104,99,96,99,100,103,103,101,97,103,105,108,94,106,94,100,102,95,109,91,92,93,77,110,106,91,94,113,101,104,111,106,108,88,95,88,102,98,108,95,105,107,107,102,113,89,91,97,113,114,102,100,103,92,95,95,100,101,103,101,108,100,98,105,104,101,109,104,103,95,91,91,105,94,94,104,97,102,107,107,115,110,102,99,105,80,91,135,99,94,93,104,80,108,102,99,99,101,101,103,102,97,103,102,101,109,64,96,98,119,102,98,106,105,96,113,106,94,95,93,86,103,90,97,101,105,97,102,104,99,103,93,99,96,99,101,106,92,103,101,109,90,103,113,93,88,95,101,103,100,92,109,102,104,95,97,108,97,123,102,100,82,107,104,102,98,113,108,90,109,111,96,107,90,98,107,104,107,114,101,103,99,97,91,100,98,113,96,106,99,103,84,106,110,96,104,98,107,105,105,111,106,102,112,114,93,107,103,92,97,100,98,102,96,106,97,109,98,105,97,94,105,110,95,98,98,99,98,101,94,102,92,106,102,92,96,98,103,107,91,103,99,100,99,102,99,101,95,108,81,99,98,114,108,96,96,88,99,107,87,104,112,94,103,124,96,111,97,92,109,102,96,95,97,107,98,105,100,97,98,103,100,117,91,109,109,95,106,96,99,106,101,98,94,97,103,101,105,100,99,97,100,106,98,104,86,88,101,111,98,100,100,113,96,92,103,95,111,95,90,91,103,99,94,109,103,97,106,107,114,109,100,113,94,83,96,102,96,101,96,77,96,101,91,109,113,97,97,93,114,95,96,100,105,104,110,102,112,98,71,97,102,99,100,99,107,108,91,96,89,91,100,98,105,103,95,103,108,96,92,102,101,109,94,90,100,106,100,107,105,104,107,102,105,102,110,99,107,100,89,113,101,97,94,100,107,94,109,106,91,118,108,82,95,108,100,102,110,94,105,97,100,88,93,112,76,109,110,116,114,99,99,96,92,98,91,98,107,106,103,87,107,98,100,104,97,93,109,99,97,108,94,101,100,101,105,99,92,99,103,100,107,111,104,116,103,101,95,115,105,101,100,98,95,118,112,97,107,97,103,94,95,100,112,93,82,99,93,109,93,100,94,94,103,97,101,101,89,95,93,91,95,110,104,90,96,99,97,96,103,98,100,102,63,102,129,97,100,93,96,102,107,108,96,106,95,102,99,97,107,98,88,100,90,103,108,108,96,98,109,91,100,104,92,99,110,98,97,99,100,90,102,102,95,105,104,98,92,100,98,106,101,106,99,110,95,101,118,94,104,136,95,99,109,103,102,99,79,88,104,82,107,103,97,104,97,94,99,103,89,104,83,95,108,96,105,104,100,86,106,101,98,110,104,99,118,105,97,103,94,92,114,90,95,113,111,101,98,89,98,87,111,116,102,110,95,98,101,102,103,101,109,106,84,103,99,87,101,99,112,96,89,97,107,101,103,99,100,109,93,100,94,97,96,105,100,98,124,88,90,97,114,105,95,97,92,100,90,109,94,102,90,92,88,99,99,98,99,96,112,97,109,99,106,100,94,111,112,112,106,101,99,97,93,100,101,93,104,103,91,101,108,101,106,87,91,105,109,98,95,101,111,105,90,95,85,104,97,87,86,87,91,105,96,98,108,95,100,105,93,87,100,98,97,105,109,95,93,87,99,91,103,102,88,100,96,98,100,109,92,102,96,95,104,106,91,106,108,88,101,84,111,81,97,103,108,101,96,98,98,95,98,114,105,102,98,107,118,106,106,101,111,87,99,102,104,97,98,112,101,106,101,90,97,110,104,103,104,114,107,103,97,104,98,101,95,103,96,103,102,97,101,102,104,106,92,90,93,97,107,103,95,82,104,91,102,94,104,87,100,99,112,103,109,103,106,104,98,113,106,110,105,96,98,109,101,117,97,97,105,104,105,96,105,114,113,104,90,96,107,112,102,107,107,99,99,136,109,91,113,115,90,100,105,67,94,104,99,113,103,103,100,99,105,107,98,108,102,102,106,109,113,101,107,105,103,90,105,102,95,103,98,103,103,104,104,87,114,102,105,120,105,95,109,113,98,104,100,89,80,95,100,80,105,110,106,100,99,85,106,112,103,93,105,112,105,105,91,95,111,108,100,102,104,107,100,102,117,106,104,110,101,108,90,108,114,100,104,95,100,114,129,95,109,109,103,94,103,110,110,97,111,108,102,104,94,109,89,103,103,98,108,105,96,107,109,118,97,95,98,107,102,97,103,103,106,109,97,107,117,106,109,108,105,99,107,102,116,116,109,104,106,109,106,110,76,116,104,103,102,118,112,119,94,106,116,100,107,108,97,100,108,108,101,102,96,103,101,99,102,103,103,111,95,107,96,108,73,97,104,92,96,100,107,98,113,99,96,95,108,97,107,95,109,125,107,94,112,100,100,95,108,101,103,106,106,107,98,92,106,105,102,96,113,106,104,99,101,99,91,95,113,98,88,90,120,108,113,104,107,101,98,112,100,106,102,106,111,102,113,114,95,88,101,95,109,100,101,114,92,104,100,116,93,98,109,106,101,108,105,108,113,103,87,107,103,95,85,113,104,106,94,102,108,87,116,104,102,102,91,96,100,110,97,107,99,105,98,93,105,99,99,112,106,106,96,91,110,119,99,102,111,99,104,116,113,83,95,106,108,105,102,94,105,105,106,107,102,106,98,106,101,116,102,86,102,98,107,106,103,106,73,109,108,104,101,109,95,97,106,105,113,104,95,106,86,88,98,110,112,106,99,96,99,96,99,100,100,84,98,98,115,96,103,90,104,105,104,94,100,109,113,102,111,114,104,91,104,99,103,106,117,109,106,102,100,103,114,95,93,98,103,107,106,93,116,109,101,101,104,115,106,99,113,116,105,114,120,102,101,110,102,93,67,100,106,102,102,113,105,107,109,92,114,107,104,110,101,98,109,104,98,103,99,107,104,100,108,110,95,104,106,105,108,65,89,103,103,100,99,91,109,114,102,102,105,114,108,99,94,95,108,104,109,94,90,99,100,106,102,103,100,98,119,106,111,104,106,104,102,99,93,101,113,108,103,113,106,119,101,94,106,102,105,104,98,103,111,104,114,124,102,98,108,102,111,103,113,102,108,105,105,107,106,108,106,109,106,99,107,107,100,107,95,101,120,93,104,98,99,96,104,72,106,109,117,115,105,109,103,100,110,104,102,88,106,96,106,95,113,110,102,105,104,73,111,110,104,109,91,106,117,106,109,96,98,111,99,86,103,103,104,107,111,106,103,108,93,102,92,94,106,102,105,95,101,105,105,120,110,104,103,108,102,102,108,108,94,113,99,99,98,100,103,121,105,100,110,102,99,110,106,115,100,98,96,97,103,103,102,98,112,110,105,99,101,114,104,112,109,112,110,100,100,109,107,103,107,107,114,93,94,99,110,76,105,108,103,107,116,95,110,88,103,101,102,103,103,98,107,101,96,141,119,109,99,94,96,122,110,107,102,103,107,115,105,99,106,110,104,100,105,98,102,99,102,96,94,103,115,113,103,111,104,84,100,101,110,92,100,82,103,99,97,100,104,110,108,98,97,98,96,99,112,101,117,105,100,116,111,100,101,102,100,104,102,96,110,105,107,100,109,100,112,117,102,106,107,101,94,104,93,99,106,106,97,113,110,102,92,96,101,106,97,107,95,107,99,100,96,106,102,105,106,95,117,108,102,100,102,79,109,106,104,95,105,116,92,91,102,105,117,102,104,103,106,113,135,100,96,104,109,103,112,98,108,103,116,106,96,98,106,116,101,99,112,96,98,100,108,82,97,109,98,101,110,97,96,85,98,98,96,107,99,104,104,101,106,100,98,109,105,95,97,107,102,102,106,104,96,83,102,98,95,94,90,98,89,103,109,106,100,107,102,98,92,106,113,105,101,96,105,99,107,108,107,100,91,104,95,98,90,99,104,122,99,102,110,89,111,108,102,105,99,101,102,99,106,106,71,118,98,111,103,105,103,104,100,112,98,108,109,102,100,96,114,101,114,107,112,105,109,99,97,99,86,105,107,102,98,90,89,96,109,105,98,102,98,111,107,89,96,103,105,91,96,114,111,104,102,109,105,84,112,96,106,91,91,116,99,117,117,93,98,98,104,96,103,97,101,100,93,105,110,100,100,100,122,74,98,98,100,98,112,103,94,96,97,106,106,123,107,97,106,100,102,102,100,82,106,101,102,106,105,107,97,125,99,69,100,118,97,108,123,93,102,102,102,103,101,84,102,107,107,120,113,97,88,109,115,112,101,102,99,93, +677.66193,90,97,93,84,87,106,109,90,97,113,109,91,83,111,113,99,107,105,104,91,116,105,111,104,109,108,104,99,106,88,104,99,101,95,107,99,113,104,103,84,85,107,99,106,95,105,104,108,103,112,107,104,94,99,97,98,100,100,105,104,93,105,95,95,98,116,65,114,110,107,96,106,108,104,102,106,91,85,105,101,77,97,118,98,98,103,102,102,99,92,104,112,106,99,98,94,119,105,99,98,98,95,118,97,88,102,95,97,102,107,107,102,100,96,108,99,104,100,113,94,103,102,104,104,98,103,108,99,103,114,91,93,106,114,96,104,96,104,87,114,99,103,94,91,93,102,115,90,96,93,95,106,103,85,99,101,106,86,98,91,94,91,96,109,108,94,102,100,104,97,83,101,96,97,126,106,100,95,116,99,94,84,116,101,108,103,96,95,104,101,92,111,112,94,116,104,99,103,99,100,107,110,94,107,95,102,95,105,108,97,101,104,99,114,109,99,98,106,105,98,99,101,96,92,98,97,111,90,121,90,121,109,95,106,114,106,110,102,96,100,116,99,98,104,102,93,104,113,99,115,100,96,98,96,98,108,100,98,95,95,114,114,100,97,94,89,111,113,106,92,95,102,124,93,103,98,94,102,98,96,95,98,96,98,105,98,101,101,93,99,100,95,99,100,106,107,105,89,109,96,110,103,100,112,95,96,104,106,95,88,96,108,99,107,96,97,81,97,113,101,97,88,112,104,113,99,100,97,93,111,105,99,98,110,108,100,100,101,91,92,96,101,98,101,113,101,103,96,105,91,100,91,95,112,119,94,105,100,108,104,109,93,101,95,114,101,113,110,93,98,109,88,116,95,101,97,100,96,106,98,121,105,108,109,103,93,92,98,112,92,105,120,104,101,96,106,111,87,105,99,99,116,100,97,106,100,105,103,111,94,58,90,113,102,106,89,99,98,93,103,103,90,102,109,94,104,100,102,102,107,104,92,95,99,97,96,113,105,104,117,107,99,97,100,90,109,92,115,117,108,94,98,99,110,113,87,108,98,108,95,93,103,107,100,111,105,101,102,110,96,95,105,99,104,87,97,99,108,94,99,90,112,104,94,103,75,93,98,105,106,102,96,106,105,109,95,80,106,99,95,117,102,94,99,103,92,90,106,102,103,112,100,92,100,98,98,95,93,97,102,106,94,104,109,108,101,108,91,102,113,93,96,69,113,94,102,113,90,97,104,98,99,90,105,117,101,106,117,108,70,103,107,101,105,95,92,101,106,102,99,118,105,96,99,104,106,102,111,90,98,91,98,102,104,100,104,110,96,106,114,100,100,101,95,72,97,100,104,106,91,112,103,96,100,112,105,96,98,97,94,95,91,100,96,93,107,96,102,103,104,94,99,103,99,97,92,96,95,104,106,95,98,104,98,94,105,95,106,104,106,98,128,98,88,99,109,100,92,106,107,101,114,101,99,97,101,98,87,98,96,95,114,102,99,103,105,106,95,98,106,105,104,105,103,91,103,101,109,109,105,101,104,96,80,93,102,99,100,106,89,113,105,110,100,94,104,92,98,96,101,101,105,100,104,98,105,98,87,85,103,108,93,99,101,105,104,104,105,126,108,90,113,100,113,105,99,99,92,109,91,100,97,107,102,100,93,105,100,107,103,93,105,94,102,108,112,104,96,106,100,102,96,111,99,97,100,109,115,102,99,117,108,108,86,102,93,101,92,104,97,96,112,97,100,96,110,84,96,98,97,112,115,102,109,132,96,109,95,110,90,107,91,105,84,95,115,97,105,105,88,107,103,100,106,117,106,104,102,101,106,95,96,91,92,112,102,106,106,104,111,107,98,96,106,95,94,101,75,102,93,93,108,94,100,94,96,107,106,112,102,113,90,108,98,99,94,111,96,100,108,100,115,118,90,106,99,101,103,86,103,108,93,93,107,116,104,105,94,103,106,99,113,108,99,105,94,102,101,114,97,88,132,91,106,106,100,108,100,99,95,100,98,108,105,103,95,101,97,104,101,103,111,100,103,107,96,104,98,112,100,111,99,104,110,98,105,102,82,104,102,92,113,114,92,113,100,90,108,101,97,102,102,100,104,109,99,99,98,99,95,109,107,106,102,99,94,90,114,102,113,87,96,89,103,103,98,94,96,96,95,121,91,99,105,107,106,108,102,100,95,93,97,103,91,102,99,101,100,95,102,93,92,106,102,92,106,107,104,89,105,101,111,103,90,104,98,94,104,109,97,110,103,109,98,98,97,100,100,93,100,104,94,95,111,106,109,103,108,106,103,99,112,103,112,103,104,105,101,103,109,120,102,99,97,100,111,98,104,104,103,99,92,97,97,104,94,92,111,99,102,94,106,130,102,93,98,95,107,103,111,119,93,95,107,100,112,107,93,110,89,105,117,105,110,98,101,96,99,96,90,98,110,96,106,105,94,93,99,92,104,98,110,85,95,110,109,96,85,108,105,108,98,98,98,96,106,109,103,109,102,99,96,87,108,101,108,109,87,104,103,104,111,105,102,97,99,100,103,109,113,104,101,97,116,94,107,104,107,103,109,90,99,94,98,97,97,90,103,97,95,85,92,108,108,104,105,102,107,113,98,96,107,108,100,100,108,98,98,98,110,113,93,104,91,107,107,97,97,105,112,103,103,92,97,112,105,91,102,99,98,99,105,110,102,104,103,99,97,104,113,97,106,99,96,104,111,102,90,104,107,99,100,101,106,120,99,99,93,97,107,95,96,103,102,99,106,101,109,90,114,110,111,100,101,90,104,95,111,100,100,98,111,101,113,104,110,101,109,99,139,103,90,106,107,96,101,105,105,109,105,110,105,101,109,75,113,97,98,103,106,100,100,120,104,115,104,105,102,102,105,103,101,95,120,76,107,106,95,111,110,101,98,113,96,106,112,98,101,94,100,95,98,96,85,112,93,105,95,95,102,110,98,97,82,99,103,99,103,114,99,105,105,107,81,107,108,104,108,131,105,107,101,105,140,105,101,112,111,105,92,100,104,99,100,99,93,105,100,109,101,106,103,100,105,95,93,111,89,108,97,97,96,102,99,97,104,101,100,100,101,106,98,103,95,78,95,95,97,112,96,90,88,112,111,100,98,91,102,97,96,115,98,104,102,107,109,101,109,99,120,103,87,105,103,102,105,101,97,99,96,95,99,82,104,106,107,112,100,99,107,108,103,95,109,80,92,98,96,100,104,96,104,85,93,99,113,101,92,117,110,108,98,112,110,101,103,99,106,92,111,102,113,104,111,116,101,101,104,100,107,93,95,101,97,93,100,106,108,96,104,109,102,106,113,101,111,95,98,101,92,79,111,97,105,106,95,109,95,99,102,108,101,96,106,103,94,105,102,95,102,101,102,97,105,91,109,91,88,103,102,94,96,102,112,110,96,111,96,96,94,99,97,107,101,90,99,99,107,109,93,101,92,89,102,74,105,106,107,103,101,96,102,108,106,76,101,108,92,120,95,87,105,97,102,98,107,102,97,97,98,104,103,103,113,110,105,106,99,87,117,91,102,96,91,103,111,99,109,103,105,94,99,103,107,109,98,103,98,94,94,98,101,110,99,97,100,96,90,101,113,119,92,109,105,91,103,101,108,107,102,117,110,107,106,95,98,105,92,91,95,90,106,91,109,113,106,102,102,102,107,105,106,94,115,95,108,103,99,98,101,115,106,109,73,106,104,99,92,98,93,97,102,108,114,109,103,92,80,99,98,79,102,92,105,102,95,124,98,102,110,101,106,117,112,110,98,99,101,110,101,93,98,91,98,98,105,105,93,103,104,106,94,100,107,103,88,113,89,89,111,101,104,98,96,101,93,102,109,105,88,98,103,94,102,107,105,104,102,98,69,111,99,87,105,97,102,93,91,103,121,87,108,98,102,83,91,94,110,108,93,101,93,115,96,96,107,98,101,100,101,87,98,93,107,109,105,114,103,91,104,101,96,107,86,100,103,94,88,96,103,106,108,96,114,103,97,107,104,94,101,110,97,104,91,99,111,106,109,105,99,102,99,100,106,108,99,105,102,108,100,115,98,97,104,100,94,107,109,112,107,107,64,101,90,105,100,98,103,107,112,109,109,102,100,105,108,98,104,102,107,110,76,109,109,103,91,94,109,102,90,92,93,96,98,99,82,104,96,100,99,102,99,109,93,108,89,95,101,104,104,110,104,103,111,97,105,95,96,105,97,112,97,93,106,94,91,121,108,97,96,105,104,100,104,97,105,105,107,109,104,108,91,115,109,91,102,101,100,104,103,97,102,93,98,92,100,85,98,104,105,104,99,100,110,113,109,89,99,96,97,108,93,103,104,99,93,104,109,113,118,102,94,104,111,97,99,97,105,99,95,95,98,97,101,101,79,102,100,81,84,98,100,102,104,90,92,111,114,99,93,107,92,103,117,103,111,93,105,106,103,97,102,87,98,94,100,88,100,112,107,100,100,103,103,103,100,87,109,112,102,102,95,118,103,99,100,105,109,90,100,84,111,117,106,108,101,108,106,92,91,105,91,108,95,102,112,99,92,99,97,105,107,101,101,100,109,97,98,94,96,90,100,106,111,107,98,96,101,121,115,96,106,99,99,94,96,98,110,105,99,106,124,111,128,104,87,102,105,110,108,96,99,93,98,114,100,110,109,94,98,99,104,110,96,100,98,104,113,98,99,109,108,101,92,96,91,102,108,86,99,86,104,97,104,111,123,115,95,100,103,117,109,98,116,96,95,112,104,96,96,111,108,100,96,95,74,96,103,109,99,93,101,102,97,96,100,91,100,98,110,98,94,103,95,88,100,121,86,108,99,108,95,96,79,113,103,103,105,93,84,110,103,96,83,102,109,94,109,103,102,98,94,94,99,109,84,99,109,95,97, +677.80322,99,106,92,97,93,98,91,94,96,91,101,108,109,102,101,102,105,95,92,105,105,98,92,98,103,103,94,108,117,94,94,106,107,123,102,94,93,96,95,99,107,97,99,108,105,106,94,112,103,98,104,98,106,96,97,84,90,96,100,97,101,95,100,93,120,99,84,99,104,87,114,117,108,86,91,103,89,102,103,93,105,99,92,105,106,97,97,101,101,97,91,105,95,109,90,96,109,97,110,103,93,101,112,93,77,106,96,112,102,100,103,105,96,92,117,104,98,97,108,103,101,103,112,106,98,106,99,97,90,112,102,100,99,99,110,111,105,102,93,99,100,103,101,108,85,93,86,109,100,94,99,98,103,93,123,99,107,100,94,103,97,105,93,107,97,105,95,99,91,97,93,99,79,95,92,102,91,95,97,98,103,104,93,92,100,114,90,97,96,96,99,110,99,101,102,91,104,99,94,107,109,97,91,110,97,86,118,109,109,108,99,99,103,109,99,109,97,109,95,100,110,107,92,116,97,95,97,95,106,102,96,97,106,82,100,98,92,105,99,94,98,94,105,114,95,103,93,109,95,102,107,108,93,98,85,105,106,101,92,106,87,102,96,98,95,110,84,118,96,115,96,92,105,92,101,100,94,102,94,102,98,86,95,80,101,109,88,100,113,115,83,101,107,100,99,96,105,90,106,103,83,101,90,109,100,97,109,99,97,105,89,103,107,105,105,95,94,96,102,99,104,82,101,83,96,94,97,97,104,90,100,84,101,107,96,117,95,96,93,114,97,92,86,100,85,108,97,98,112,87,107,105,104,87,111,92,102,105,103,87,100,113,96,96,96,101,100,96,101,104,95,105,94,97,101,101,106,98,93,93,100,93,98,112,96,99,96,94,97,114,107,96,86,110,92,103,91,100,106,97,95,98,89,97,100,101,97,101,91,101,101,96,104,100,95,99,100,98,110,88,83,103,97,100,94,91,95,87,99,98,106,103,106,101,99,96,98,96,98,109,112,98,88,94,87,93,107,91,109,99,98,105,94,102,89,92,97,122,98,98,94,87,105,105,108,68,95,94,101,102,88,100,109,97,100,86,91,101,91,101,115,105,110,105,95,93,91,110,100,102,98,99,110,108,99,103,93,98,97,90,102,94,95,104,96,100,104,105,104,97,112,104,99,99,96,91,93,95,98,93,103,85,99,116,96,102,109,105,104,102,107,100,92,90,100,94,106,116,96,111,94,100,89,104,127,120,105,89,97,109,96,97,106,94,72,114,101,78,94,92,95,95,108,94,112,93,111,94,86,97,103,93,104,92,90,91,102,95,102,105,111,99,100,85,98,93,115,112,106,72,108,96,94,100,118,91,103,96,105,84,94,105,107,96,102,100,91,99,108,103,101,99,112,63,93,92,93,98,101,95,93,98,101,90,99,99,99,104,98,96,95,93,91,93,105,96,91,94,105,108,104,96,102,95,106,74,105,79,90,106,85,95,99,101,100,122,96,109,105,98,111,105,93,102,88,100,100,83,102,86,100,106,101,98,104,98,94,87,95,98,106,91,99,90,96,92,97,103,96,98,99,100,114,105,94,105,92,99,90,93,88,105,91,97,101,96,100,99,99,95,92,100,88,92,92,98,99,104,94,103,100,92,102,107,89,106,93,91,102,105,104,99,99,87,93,96,99,106,100,77,93,92,99,99,92,102,113,94,126,96,110,100,100,96,117,102,102,98,100,103,76,109,95,100,89,91,76,102,107,95,103,97,101,98,100,94,87,105,96,110,95,91,94,105,94,97,100,102,98,102,105,101,95,132,96,94,107,91,99,96,102,91,110,98,104,96,91,113,89,113,105,94,96,91,102,110,105,109,99,95,106,102,77,93,102,94,103,98,100,98,100,88,110,94,94,95,97,116,108,100,98,92,103,93,99,103,108,97,97,102,100,99,92,109,91,103,104,103,106,93,96,98,114,111,99,93,90,93,91,92,94,105,100,100,86,101,97,82,95,96,99,112,106,107,93,97,97,98,86,97,109,109,87,106,116,105,108,110,87,99,97,113,109,95,103,106,92,104,84,104,91,93,99,96,103,97,94,109,94,107,99,94,107,103,93,91,95,89,97,95,106,94,102,109,105,90,114,105,99,116,105,102,105,103,106,109,100,99,102,106,103,107,118,109,105,107,108,88,105,94,96,96,106,65,99,116,102,85,103,95,100,96,109,114,112,109,99,96,99,96,99,90,100,100,90,116,96,89,98,99,99,92,102,101,113,100,105,105,103,105,105,96,104,113,99,101,104,98,93,77,82,87,103,100,90,102,102,100,90,108,100,98,114,86,105,90,100,100,108,93,94,105,94,105,102,100,100,114,100,102,106,103,98,102,93,93,93,93,113,107,98,104,85,98,99,106,117,103,104,97,98,99,110,106,96,101,89,106,102,97,87,99,99,99,97,101,105,101,83,99,97,94,107,103,104,92,108,101,110,111,103,117,88,111,103,100,98,112,105,101,95,102,107,100,99,117,104,105,94,101,89,105,99,103,99,83,112,98,105,100,100,94,120,93,116,87,103,108,81,97,107,117,105,103,101,102,102,102,116,88,102,99,107,105,116,111,95,96,100,101,105,117,125,106,110,104,102,101,92,97,99,119,105,102,108,112,107,101,116,95,107,103,100,106,100,99,105,92,112,97,99,110,110,76,109,104,121,105,108,107,95,106,107,98,106,98,100,100,104,110,108,105,107,108,110,98,109,106,95,92,109,98,102,102,102,80,118,107,98,106,107,99,109,89,121,110,90,108,104,112,104,113,101,104,111,95,98,95,110,107,102,97,99,116,108,99,106,113,101,97,108,133,111,97,90,108,102,112,108,108,103,105,107,109,116,87,108,103,101,115,104,101,96,100,113,99,95,92,111,106,96,111,113,103,90,103,92,106,117,106,100,106,94,95,104,102,103,98,103,99,121,69,104,105,101,112,120,109,107,116,106,106,97,100,113,113,105,117,98,99,105,107,101,97,110,99,109,112,104,102,85,110,95,106,102,99,71,111,73,103,99,113,114,89,87,93,107,106,105,103,107,96,97,104,95,95,97,112,93,101,111,99,93,99,124,104,99,111,105,105,109,111,102,98,103,99,98,105,93,99,103,94,112,111,112,90,98,107,111,95,101,106,99,103,111,106,98,107,100,104,108,96,102,101,99,102,109,91,106,103,103,95,97,94,107,94,106,104,104,105,119,115,98,95,105,101,116,100,102,111,105,104,102,116,100,95,102,112,98,91,113,107,107,95,103,97,90,101,111,104,79,100,110,114,103,95,104,111,99,90,99,110,104,102,115,113,98,113,103,98,100,113,132,100,90,108,102,102,110,95,100,106,124,106,103,102,104,94,105,105,104,113,86,116,99,94,105,110,100,112,98,107,106,98,86,108,106,102,112,103,94,106,95,100,100,106,97,96,113,98,102,96,95,104,96,87,120,104,101,110,103,104,97,100,99,101,102,100,108,103,100,107,104,106,116,108,92,99,112,97,106,95,99,109,88,115,108,101,103,108,102,110,101,99,109,106,91,100,96,104,113,105,102,94,73,110,109,93,111,101,95,100,107,109,120,99,102,108,109,113,100,103,118,104,112,96,103,105,109,110,109,107,117,98,102,119,102,93,105,100,100,110,101,106,96,84,102,105,102,109,112,102,109,110,92,98,110,105,112,90,93,108,112,110,106,96,95,109,100,107,74,85,100,103,102,101,120,109,109,99,94,105,106,101,104,101,128,113,100,101,104,106,107,106,112,91,95,100,114,109,95,97,100,104,108,99,96,125,103,108,106,93,106,96,101,92,97,116,117,99,101,106,102,105,111,98,110,99,109,90,106,108,107,102,104,111,99,112,109,106,101,110,107,101,109,105,106,102,104,107,103,107,107,104,91,111,97,100,87,99,99,106,125,98,99,100,97,110,116,93,104,116,96,109,103,95,107,103,106,75,110,96,108,105,105,102,104,96,101,97,103,106,99,102,117,103,96,105,102,100,112,100,112,93,100,98,106,105,111,96,105,98,112,109,107,104,88,94,86,108,99,88,101,94,101,105,95,103,109,105,105,98,102,107,111,101,98,108,107,98,97,124,103,103,107,117,116,114,94,101,99,98,105,113,108,108,103,105,95,100,106,92,104,89,106,94,105,104,108,105,121,96,107,99,97,91,101,107,104,109,106,99,113,103,101,91,103,99,86,102,98,113,99,104,108,103,96,106,106,106,91,106,113,107,93,106,99,104,103,110,100,105,104,105,102,113,108,106,127,101,99,136,105,99,104,113,98,92,114,115,112,102,95,102,98,111,100,105,106,107,111,104,102,104,86,112,79,105,114,88,105,94,109,103,105,94,107,100,99,103,95,112,112,126,109,97,115,114,97,96,92,97,101,106,102,109,95,101,101,99,92,111,109,91,102,105,98,104,92,98,114,101,98,95,109,100,97,96,103,112,91,113,103,102,98,99,107,102,100,98,102,99,91,103,116,110,110,116,102,102,102,90,98,105,105,98,104,96,100,98,86,95,100,126,97,100,97,85,102,109,104,109,106,95,105,102,106,107,112,107,97,96,113,107,105,104,110,101,96,101,97,105,90,103,102,102,104,114,109,136,99,111,103,96,102,99,100,119,103,107,108,96,124,105,94,95,91,109,101,120,109,94,106,104,97,99,105,85,105,107,113,99,109,99,106,104,100,101,110,110,91,95,99,97,103,102,105,99,113,105,95,102,104,96,104,94,92,107,110,95,91,102,104,110,101,110,91,94,126,112,105,106,103,92,109,109,86,100,102,101,114,101,106,92,110,112,98,107,96,102,108,99,103,100,109,92,100,106,113,91,111,103,102,101,100,107,98,120,108,92,97,103,102,108,105,102,103,105,112,101, +677.94446,113,108,95,88,93,101,92,105,102,102,97,105,100,99,110,103,102,111,111,95,111,100,106,102,108,105,87,100,105,104,104,119,105,104,91,103,108,100,97,104,103,95,101,98,98,110,99,114,85,122,100,99,107,107,96,112,111,114,100,96,93,90,93,84,110,101,96,107,102,88,102,100,93,108,95,111,101,98,114,119,98,96,97,103,103,101,97,107,88,95,97,109,67,103,123,93,102,108,89,106,100,94,93,111,99,84,98,108,101,105,95,87,95,101,103,94,95,98,98,107,95,106,94,110,107,104,100,106,106,121,108,114,91,113,96,108,95,110,90,106,103,103,105,104,96,102,108,93,101,99,106,91,108,100,102,101,101,94,102,98,89,94,103,96,106,100,110,103,108,100,105,91,91,87,99,97,99,81,103,104,86,95,104,102,106,102,108,81,118,97,95,100,106,109,100,111,95,99,99,93,103,101,102,103,94,104,100,94,106,104,114,105,107,99,103,99,97,59,111,115,92,113,94,99,96,103,103,94,100,101,106,105,105,105,101,117,100,103,108,107,115,103,111,104,115,86,98,109,116,96,96,100,98,91,101,107,86,105,100,98,108,80,97,101,97,105,102,96,108,101,115,95,96,100,101,98,98,103,103,121,90,102,100,100,110,106,116,107,101,100,92,108,95,104,101,106,98,99,101,101,98,107,92,116,106,105,94,105,101,101,103,95,95,104,109,100,94,100,98,105,104,95,111,103,102,108,103,95,115,96,100,105,81,106,102,99,105,94,97,96,100,69,109,93,117,106,113,115,97,108,98,110,99,100,95,112,99,100,101,101,104,97,93,103,107,103,111,108,87,109,89,100,104,104,100,107,101,101,98,101,110,99,94,99,101,99,106,89,113,106,106,91,99,95,106,108,100,103,93,103,105,101,101,111,111,103,97,101,105,103,105,101,97,96,109,92,93,99,107,110,99,98,102,109,97,102,97,111,103,100,99,90,93,114,103,106,95,104,105,105,102,93,95,104,98,102,109,99,110,113,94,109,101,106,99,98,97,115,103,93,103,114,110,91,103,109,102,105,109,109,112,101,89,88,105,86,100,115,108,115,94,103,106,117,119,104,111,96,94,92,105,108,99,99,100,106,101,106,109,113,103,107,108,112,102,113,93,94,105,103,99,102,97,110,88,116,105,107,106,96,116,108,106,105,106,99,104,107,99,96,97,100,100,108,95,98,95,108,113,107,86,114,105,112,96,95,96,99,94,100,100,104,117,100,102,97,90,113,99,91,102,112,91,118,105,95,104,108,92,97,97,105,110,93,108,99,87,97,119,111,110,100,109,97,100,77,97,107,88,106,95,108,108,102,117,107,105,120,112,104,96,108,103,104,93,109,96,113,107,98,87,107,94,107,100,100,107,100,111,91,110,108,97,95,104,104,114,95,110,108,108,104,97,96,111,116,111,101,101,97,106,100,101,98,100,108,98,119,98,110,95,110,107,107,104,110,107,99,105,107,96,102,104,101,96,104,100,94,104,100,90,90,101,102,97,104,100,105,110,106,98,102,99,93,101,102,86,97,107,110,101,105,102,93,95,98,104,98,103,83,103,110,106,100,101,112,101,93,107,93,108,102,109,106,101,103,97,100,102,108,88,104,91,98,98,98,99,101,104,102,103,100,93,99,94,101,97,90,110,98,105,102,105,103,107,101,105,104,108,108,111,100,102,95,91,105,96,93,98,101,103,106,106,102,91,102,98,105,104,94,103,106,111,110,96,105,112,103,107,107,103,105,100,100,88,104,112,102,118,111,105,98,98,108,95,108,91,110,94,118,92,98,100,108,93,94,97,96,103,99,110,100,100,97,78,106,104,109,106,104,98,99,116,103,107,105,108,110,101,99,106,98,108,105,100,100,103,101,113,90,97,105,72,104,100,98,109,105,83,106,106,102,104,101,101,109,107,107,99,95,100,106,94,104,103,94,95,105,99,100,108,97,99,91,103,93,102,100,106,90,106,104,105,95,107,96,97,108,99,97,97,106,102,96,93,109,101,92,106,108,98,108,99,103,100,106,107,104,101,102,111,106,109,95,84,100,95,109,104,100,104,91,106,102,96,122,108,105,88,85,107,109,124,109,86,96,98,109,108,95,103,109,104,94,108,106,102,104,114,99,113,102,92,106,95,94,109,102,103,104,90,103,115,96,98,95,89,105,96,108,104,109,98,96,103,91,99,88,106,96,104,94,103,107,102,95,96,112,95,104,103,104,92,96,97,93,100,110,99,114,100,100,105,96,106,97,94,102,80,102,107,102,103,102,92,102,106,98,100,107,102,97,107,99,90,103,113,91,95,103,99,103,104,103,109,102,95,112,104,91,97,116,92,102,93,112,96,92,96,109,105,94,108,105,94,92,98,95,105,100,104,101,107,106,100,99,96,87,104,98,98,115,103,104,105,112,86,93,100,109,106,103,95,103,101,108,98,95,118,106,106,108,102,105,95,124,108,114,106,110,82,108,108,106,97,104,100,103,104,106,109,108,95,103,105,94,103,111,104,106,101,94,101,98,92,105,92,109,105,98,101,101,88,99,105,92,88,81,102,102,96,95,100,89,106,98,96,120,111,99,98,109,101,103,66,105,111,92,106,86,98,91,104,109,92,100,101,96,102,98,92,106,117,88,97,100,106,99,105,113,87,101,105,111,108,121,108,108,108,111,106,95,104,105,98,106,101,110,98,111,113,97,102,94,85,93,96,100,96,100,104,97,95,106,97,104,116,111,95,104,90,105,103,95,113,117,98,103,105,110,100,107,92,98,106,103,100,101,98,95,109,100,109,98,113,86,98,95,109,118,105,107,108,103,106,105,101,110,102,94,104,101,106,104,89,98,99,109,107,95,107,102,99,108,104,100,96,95,102,88,101,97,103,98,103,113,109,118,99,94,99,97,108,87,112,104,108,109,97,100,106,101,98,101,118,103,104,106,100,104,106,102,99,102,105,103,105,112,102,100,109,97,105,95,109,98,97,83,115,102,99,112,103,98,111,112,94,103,106,104,116,91,104,97,103,106,103,100,115,98,112,105,112,109,103,95,92,108,110,91,100,102,110,107,94,105,95,91,93,102,96,102,100,110,113,96,102,94,106,103,104,112,99,96,105,103,120,101,96,100,101,95,110,96,120,107,104,87,100,94,85,92,109,102,106,95,109,101,106,103,99,104,112,107,98,101,104,104,92,112,98,104,95,112,95,104,106,103,107,99,96,92,106,115,103,109,93,105,109,98,105,103,95,93,99,103,101,100,101,101,107,88,103,108,105,110,96,95,95,106,95,97,107,95,105,105,94,101,117,101,104,108,104,94,98,103,107,122,105,104,105,86,92,104,95,105,102,102,93,102,88,100,102,106,111,103,101,102,99,97,98,103,97,99,83,103,106,107,100,102,98,105,107,99,94,107,107,74,103,97,96,98,101,94,95,94,107,109,98,105,105,100,119,99,99,106,106,98,107,106,89,91,101,111,105,97,108,100,116,109,112,99,99,103,91,105,98,100,101,93,91,97,100,93,108,108,105,103,102,91,94,113,95,109,106,102,107,105,95,110,119,97,96,96,92,108,99,95,99,120,74,93,98,102,105,91,108,108,98,96,104,99,98,109,95,109,95,100,105,99,111,93,96,100,97,99,111,109,104,100,100,106,90,108,98,96,98,100,98,98,93,92,92,113,93,88,98,96,90,97,97,111,90,100,85,114,82,105,110,100,107,107,90,96,95,104,99,109,97,100,108,99,97,96,98,100,102,99,106,104,105,104,113,103,102,98,102,112,93,117,105,95,101,120,100,104,96,96,103,109,117,99,99,88,108,101,93,96,97,100,98,99,94,89,97,101,96,112,98,101,104,99,104,104,101,91,93,101,98,94,112,105,110,100,97,87,109,99,105,95,104,109,102,119,90,101,96,111,100,84,108,95,103,89,94,109,99,102,100,97,109,110,96,100,110,110,96,102,97,97,108,98,96,99,108,99,104,97,112,93,102,88,94,107,95,109,113,113,97,100,124,113,93,91,109,108,113,103,99,96,99,105,108,99,108,108,113,99,100,106,100,96,108,120,102,100,107,92,88,88,111,109,93,95,91,112,112,100,100,101,105,96,102,101,95,96,106,108,97,96,103,100,91,117,100,104,94,110,114,99,102,103,103,71,102,112,102,107,105,106,109,109,101,96,98,104,104,92,112,105,114,104,100,98,91,90,96,106,96,92,102,96,93,95,99,107,100,114,102,97,114,107,109,106,100,87,104,113,101,107,105,104,96,105,103,101,96,105,105,88,106,107,102,100,94,102,106,104,108,95,101,101,104,97,94,102,109,109,107,100,68,106,96,105,99,104,108,102,98,101,106,108,101,116,98,102,106,122,103,87,107,80,102,91,110,110,96,103,98,99,108,94,98,111,98,92,98,119,104,110,99,98,92,105,100,108,95,109,99,94,86,91,113,96,95,105,113,110,104,100,98,91,112,95,102,112,102,126,95,94,102,97,103,100,109,111,101,104,104,91,113,102,105,97,97,101,101,111,99,102,100,119,102,92,104,108,98,101,97,103,98,100,101,79,119,99,91,101,111,104,98,109,94,101,79,101,108,108,81,97,106,85,105,105,92,97,91,95,95,103,97,98,103,111,94,109,95,97,98,96,94,92,100,102,103,101,96,103,107,90,96,111,99,113,86,100,102,76,104,109,95,99,107,106,96,103,103,107,90,114,115,106,112,88,97,109,94,102,99,91,102,98,104,119,104,110,92,89,100,99,106,104,107,95,100,97,104,83,104,91,104,111,96,100,113,98,113,94,95,95,99,89,85,98,102,105,101,117,97,101,96,102,114,97,96,101,104,143,105,96,111,95,88,100,103,108,109,108,90,110, +678.08575,107,120,102,104,89,102,99,89,100,93,87,99,106,95,103,95,103,110,106,95,89,91,90,95,109,115,98,138,117,89,101,97,92,96,106,97,109,113,97,112,83,107,113,95,86,102,107,100,109,105,110,92,95,99,102,105,88,80,109,94,105,86,100,90,105,99,94,111,95,102,98,101,66,101,92,95,91,89,103,99,103,107,93,103,100,92,104,110,86,85,96,103,105,112,107,91,106,96,90,103,100,124,87,105,93,96,88,121,90,97,103,95,108,110,103,93,99,121,93,103,88,94,92,101,88,120,99,97,109,95,85,94,93,98,98,91,116,105,87,99,106,97,98,100,102,116,102,86,87,96,97,97,107,97,103,95,95,98,101,104,95,80,110,112,108,102,112,91,117,92,96,102,100,103,114,92,94,90,103,102,105,97,110,109,99,96,88,86,85,100,101,95,106,99,93,96,85,103,102,98,91,92,107,106,95,104,96,100,108,122,96,95,107,95,105,95,84,105,69,94,95,104,91,97,114,97,87,110,103,107,92,105,98,103,106,99,90,103,100,102,103,93,106,114,103,110,101,109,102,108,95,96,98,108,100,90,96,92,93,94,97,107,102,92,84,121,98,95,92,105,89,106,100,100,105,89,92,109,93,99,102,135,105,79,106,104,100,100,105,111,105,104,110,99,103,94,108,103,95,104,106,104,100,125,90,103,114,112,83,108,98,101,95,118,104,96,98,96,94,82,91,95,96,101,99,101,104,102,115,109,96,104,105,99,103,97,96,91,89,92,97,99,90,101,111,109,103,107,107,102,112,97,112,110,95,86,94,105,100,102,115,99,114,96,100,109,103,105,101,107,118,102,105,93,115,97,103,93,97,109,102,99,94,107,102,113,96,94,95,94,96,98,94,97,82,106,98,109,84,112,101,100,92,89,104,91,93,108,113,107,93,91,94,101,89,109,96,107,103,106,95,104,101,94,96,89,106,92,107,106,87,112,100,95,110,95,108,96,96,98,104,104,93,99,100,122,101,91,118,108,96,82,102,81,92,101,95,99,105,99,113,97,105,97,96,114,70,128,106,111,94,114,99,93,99,113,107,105,99,100,92,111,109,100,97,98,105,99,104,91,107,113,101,95,88,105,102,100,108,95,89,97,105,91,108,98,98,92,95,113,103,93,100,118,112,100,95,102,98,113,95,101,107,96,107,112,121,98,103,101,94,106,105,101,98,95,105,96,106,109,95,108,101,104,104,90,113,102,110,103,105,90,98,100,94,98,103,99,93,107,100,106,101,99,93,109,104,106,96,98,92,106,90,100,93,100,109,102,106,102,103,98,96,99,101,110,97,105,101,100,112,97,101,96,106,102,91,96,118,81,97,105,99,100,92,95,100,102,98,102,100,97,99,117,94,113,101,87,110,93,100,120,106,107,89,101,92,101,100,96,101,100,108,100,98,95,95,93,104,82,104,105,86,95,91,99,97,105,111,102,97,99,95,100,101,113,76,114,100,96,99,104,96,102,92,105,89,100,99,116,110,113,100,77,86,103,100,106,116,99,100,113,104,108,105,91,94,76,97,91,90,105,97,96,99,97,109,106,98,84,99,96,100,96,100,109,94,105,108,106,100,106,98,95,94,100,108,90,95,97,103,91,102,103,95,101,106,117,95,104,95,114,99,107,100,102,107,88,116,101,116,98,107,87,129,92,94,105,90,104,104,98,125,102,99,94,98,95,112,89,94,94,100,87,69,108,87,102,103,81,108,101,105,101,80,94,107,80,87,104,112,103,103,95,96,101,95,99,100,93,94,100,103,95,106,99,102,93,101,100,89,105,102,102,101,107,101,93,114,102,96,84,110,101,103,92,109,88,107,110,99,109,109,106,107,106,109,104,97,98,100,104,105,105,112,99,104,94,117,103,98,106,110,100,107,105,97,107,97,93,94,96,98,99,93,99,105,103,94,118,108,101,103,103,104,105,92,96,114,100,103,104,112,120,100,90,108,96,114,92,100,99,104,98,103,103,80,97,93,90,84,112,124,83,107,83,98,118,78,101,72,88,109,93,104,96,95,111,88,97,104,96,105,101,116,98,91,102,113,105,99,74,97,97,101,95,107,106,98,77,106,97,98,98,94,100,90,94,95,108,105,86,110,94,99,90,105,112,103,109,100,101,108,104,102,88,104,105,91,97,94,108,104,99,118,110,98,89,112,109,91,96,106,109,109,118,92,95,96,106,102,100,104,88,101,111,101,100,100,91,88,92,103,95,100,98,100,96,102,110,90,105,90,94,106,103,101,103,93,104,87,92,100,98,89,108,98,110,89,93,103,90,107,99,97,108,95,104,110,91,104,96,109,100,115,88,96,103,102,100,95,105,83,110,96,95,98,104,104,100,101,98,121,107,94,95,91,110,97,90,116,82,106,112,102,109,100,100,106,101,88,103,79,117,95,103,102,100,83,98,88,107,96,127,111,97,99,94,112,101,109,101,113,98,95,108,117,107,107,107,77,89,110,108,103,104,110,115,102,95,96,108,98,109,103,95,107,93,105,112,108,108,91,102,96,108,97,108,89,108,112,103,103,117,106,108,113,100,98,104,105,92,105,103,94,102,115,96,109,105,105,72,120,100,78,101,118,102,104,98,103,98,98,110,109,115,116,97,105,102,112,105,116,92,97,108,105,104,110,105,124,105,101,102,105,98,99,114,96,82,113,96,107,112,103,106,101,96,114,93,98,112,112,111,110,106,102,109,94,103,99,106,102,95,108,101,90,115,102,100,104,101,91,102,107,112,110,99,98,121,82,109,106,105,99,99,95,112,97,104,104,108,107,86,102,101,91,111,104,109,102,105,105,107,106,105,104,105,104,106,112,95,108,105,115,106,101,92,107,104,105,77,92,113,105,103,100,105,96,111,101,108,117,98,117,95,112,106,109,106,105,107,94,110,96,109,101,104,100,116,94,103,91,97,105,115,92,111,78,99,107,100,96,93,119,125,103,114,92,99,106,110,106,109,110,114,106,94,108,98,99,94,117,96,109,106,98,109,110,101,94,109,98,110,102,115,113,111,103,97,106,114,107,106,103,100,104,107,114,109,106,100,104,109,105,98,101,100,102,73,76,108,95,104,104,109,105,102,102,101,91,98,101,109,103,92,105,93,93,114,94,102,111,108,103,98,98,100,91,108,104,104,93,109,101,89,110,106,106,98,107,99,101,99,108,110,109,115,102,106,105,102,117,105,111,99,109,96,95,98,100,96,111,105,103,109,92,106,107,100,108,106,103,109,99,111,104,103,110,108,109,95,103,108,101,111,106,99,109,98,102,112,94,103,105,95,98,95,103,95,92,98,110,95,105,122,115,108,102,101,108,112,95,104,92,92,101,92,99,100,95,97,92,132,121,101,104,108,109,99,95,116,103,105,98,107,109,95,106,102,91,90,108,93,99,98,97,102,100,100,100,113,116,111,115,108,104,106,103,87,94,92,111,96,98,102,100,107,120,96,92,71,97,106,110,110,106,105,93,102,110,110,104,101,95,98,108,98,116,108,106,101,110,104,120,107,95,113,109,119,111,104,107,116,111,105,98,108,85,95,91,104,99,88,107,100,109,103,101,119,87,93,94,91,106,107,116,117,108,100,97,98,103,115,92,105,110,103,120,115,106,90,102,103,108,107,96,97,101,111,107,119,102,112,110,101,105,108,115,97,103,97,105,108,106,106,100,101,104,99,106,93,117,107,100,100,108,104,108,92,105,90,125,91,113,108,109,103,99,107,113,97,102,94,100,101,96,101,113,104,99,112,98,103,96,90,110,106,104,88,102,95,114,102,104,103,100,99,107,104,101,104,88,102,102,106,91,101,103,108,96,101,102,104,112,104,107,101,96,99,95,100,100,98,100,108,99,105,103,115,98,99,106,99,102,107,106,100,104,102,97,93,119,103,99,104,93,100,109,105,99,111,88,107,103,86,108,99,102,95,99,97,84,96,93,102,98,109,91,101,104,96,95,105,109,105,99,102,105,112,98,103,111,101,111,97,93,104,127,107,106,114,109,105,100,107,112,108,109,99,105,92,102,115,105,103,91,105,100,104,102,116,105,107,110,108,99,117,107,99,110,100,108,96,96,102,103,112,96,93,108,104,103,112,101,101,103,99,104,104,95,104,100,98,105,113,110,102,105,104,104,99,111,108,116,115,98,102,112,105,82,99,104,95,105,101,97,108,103,95,107,116,91,101,104,106,115,116,97,90,106,100,108,99,84,104,108,95,110,108,101,94,106,110,108,115,108,79,101,114,81,104,107,104,96,102,104,108,107,106,100,97,111,105,115,115,104,104,88,113,108,104,112,105,103,110,107,106,108,111,106,106,107,100,96,109,103,102,94,110,108,108,110,103,110,105,85,115,107,108,106,84,127,106,101,108,92,115,114,98,103,102,109,102,104,89,98,108,101,110,117,109,104,109,94,102,95,92,107,91,109,90,103,99,107,106,101,109,113,97,102,100,108,97,114,97,102,119,96,106,102,105,103,79,93,85,110,97,93,111,98,91,100,101,96,106,105,110,104,105,108,109,109,101,98,113,97,101,93,94,95,90,106,104,100,92,115,94,108,115,102,92,96,100,103,112,96,110,104,99,106,109,95,100,99,110,110,96,111,108,103,108,99,98,102,91,111,104,96,95,110,85,116,101,101,89,105,105,97,96,87,102,113,104,104,110,112,107,94,105,102,111,99,93,109,98,99,98,96,110,99,100,88,106,98,108,98,110,109,111,108,105,105,98,116,101,104,93,103,108,107,104,109,106,107,97,107,98,99,99,102,105,115,96,104,100,97,100,102,107,109,108,97,112,64,90,92,97,87,108,108,94,101,120,100,102,99,123,93,87,111,108,98,112,98,116,106,102,100,104, +678.22699,102,95,87,103,84,104,110,107,94,91,112,93,99,101,111,105,109,100,111,105,109,91,102,95,98,112,107,99,104,114,107,92,120,105,104,101,75,75,103,97,100,120,95,94,102,114,100,98,104,76,103,92,105,104,109,94,103,90,114,97,96,94,104,101,101,111,109,112,97,101,106,114,96,102,80,104,99,83,115,92,99,102,100,105,92,112,100,99,89,93,115,99,104,91,104,103,106,99,80,99,97,102,112,104,89,97,101,114,97,96,100,100,99,109,104,111,91,107,99,101,108,90,98,113,97,107,106,97,107,96,102,94,96,92,113,98,108,121,103,105,104,88,92,97,97,106,91,105,120,99,91,100,118,90,89,96,111,106,106,86,112,102,95,95,107,109,114,89,82,101,100,103,103,96,99,128,91,84,108,87,95,116,103,106,109,114,101,96,101,100,93,82,83,103,94,92,100,104,100,109,108,104,102,79,93,109,95,94,110,103,98,100,92,109,97,112,108,95,109,91,114,124,115,92,105,93,113,102,90,108,86,96,100,95,88,105,109,109,103,101,96,92,92,99,99,94,95,96,113,103,110,99,94,104,100,100,118,97,98,97,106,98,99,105,89,116,106,102,93,96,96,100,79,107,100,85,94,105,104,96,102,106,110,106,98,106,93,107,99,102,98,113,104,94,115,98,106,105,107,116,110,107,101,94,94,111,102,112,96,113,89,113,104,103,109,103,114,103,107,105,94,89,100,105,117,106,103,108,108,114,107,96,99,103,105,113,128,105,95,105,94,92,109,108,96,105,100,101,95,99,94,109,104,91,105,101,116,102,109,113,106,103,105,103,99,100,112,94,97,103,96,99,103,98,114,93,93,87,107,111,102,100,98,103,109,100,98,104,95,86,110,95,96,112,110,99,79,107,108,100,103,93,108,107,100,101,99,97,103,113,87,116,105,111,120,102,96,96,105,94,103,98,93,112,100,93,108,91,97,125,101,98,101,109,84,87,95,99,100,97,102,88,96,98,75,102,95,108,90,100,98,100,101,103,97,97,100,116,84,112,101,107,99,112,91,120,82,103,101,79,99,112,103,113,92,101,102,116,102,99,102,109,105,109,93,107,104,106,82,98,100,94,99,104,91,109,93,98,108,80,117,105,106,110,90,105,97,102,96,97,88,109,72,102,95,105,100,96,134,98,62,94,99,109,93,99,110,116,104,106,104,90,102,102,100,105,104,109,97,113,99,110,87,105,111,101,129,103,94,106,102,105,108,113,94,96,95,112,104,96,110,103,103,109,99,104,91,97,109,101,105,101,110,104,94,100,95,104,105,108,87,99,97,92,94,111,111,104,110,114,107,102,106,98,103,112,99,99,82,99,91,110,110,114,101,88,95,101,103,114,92,105,103,105,111,95,109,99,103,96,99,105,105,100,106,87,102,109,110,105,103,109,100,109,100,115,101,88,105,100,90,94,108,99,106,98,103,109,97,106,96,99,101,104,109,105,109,101,97,104,102,106,95,108,93,102,98,98,106,121,94,99,97,101,95,98,113,116,91,115,102,103,107,108,92,99,94,109,104,101,111,99,101,104,104,111,106,102,112,91,96,94,118,101,101,102,97,100,96,100,99,99,120,95,101,84,93,105,117,98,98,98,103,103,97,99,107,103,106,107,113,79,96,96,102,104,103,102,102,99,104,102,92,80,107,92,100,106,113,101,88,99,97,111,93,101,101,100,102,103,103,94,110,99,64,114,105,108,90,103,104,101,111,101,113,100,94,99,104,111,103,104,110,98,106,98,95,91,106,113,100,114,105,126,99,110,111,91,107,110,102,102,97,103,100,99,93,94,92,99,117,93,97,108,111,86,102,112,97,103,97,113,106,96,112,106,94,101,112,103,98,78,106,107,99,98,108,109,109,103,108,135,95,109,90,91,104,99,100,105,98,94,97,107,103,99,104,108,111,112,113,97,93,94,104,91,108,96,99,103,106,105,107,91,99,93,102,105,105,110,118,106,101,116,100,110,99,102,97,109,101,110,114,102,103,95,120,106,99,110,98,103,108,101,105,114,105,98,96,85,105,114,112,104,109,107,100,112,106,106,99,109,101,107,102,109,99,124,109,99,104,108,107,104,94,105,94,101,110,96,108,116,114,102,110,83,111,113,103,104,104,105,107,94,100,94,104,101,97,94,98,99,96,98,91,96,101,101,95,102,110,105,106,118,108,104,102,66,94,105,99,101,109,99,91,100,102,111,96,110,96,103,102,74,96,100,98,98,108,105,101,90,117,129,106,103,105,103,102,102,104,106,96,102,98,113,102,86,94,100,109,103,113,88,101,100,104,104,103,97,95,96,109,95,100,106,104,113,95,100,100,98,102,98,100,106,105,115,107,104,103,118,95,96,89,106,99,103,108,99,101,101,92,98,107,92,95,96,99,91,98,92,116,113,96,110,102,100,83,112,98,92,99,101,88,107,101,107,119,111,113,96,97,86,101,118,102,96,113,114,112,99,111,106,99,99,117,115,103,110,105,122,100,99,112,86,104,113,94,114,108,97,100,102,113,120,117,116,112,91,99,108,101,108,104,105,108,84,107,95,102,104,94,110,102,99,93,87,108,96,111,96,104,93,107,96,113,101,103,108,109,104,109,82,93,110,100,75,107,95,98,103,100,101,77,109,109,99,101,104,100,107,112,113,98,94,102,83,114,109,125,93,114,111,109,98,99,100,91,113,98,97,106,94,107,99,97,118,114,118,98,107,103,102,91,98,91,109,104,64,108,101,93,107,117,93,105,81,113,113,90,101,98,105,100,100,98,104,103,103,110,98,120,98,101,96,91,107,105,92,108,107,98,108,103,108,96,99,114,108,95,99,67,87,102,108,104,113,105,95,102,98,100,95,103,98,102,100,98,105,100,101,100,93,111,112,112,115,101,106,89,118,102,110,88,106,113,108,111,113,107,104,120,100,97,111,103,115,90,91,99,102,108,105,101,108,97,103,105,110,101,99,96,100,100,99,107,96,102,97,107,107,89,102,109,107,106,108,103,99,99,99,106,96,82,98,101,94,102,99,102,100,103,104,105,99,90,94,102,108,99,98,111,104,109,97,111,118,103,91,105,94,98,87,85,93,105,112,111,93,109,91,99,97,101,92,100,116,98,103,101,103,95,101,96,77,101,110,105,106,106,120,96,101,100,103,96,97,102,104,107,103,117,97,98,104,95,91,102,95,106,105,93,98,100,102,100,97,105,108,109,101,103,106,101,98,99,104,105,109,100,85,100,103,100,104,100,102,111,104,100,97,101,107,116,107,109,99,119,103,99,95,112,96,108,104,102,103,101,101,103,102,87,104,109,107,108,105,107,102,93,97,102,102,107,97,95,102,102,95,90,101,98,107,113,96,120,99,104,107,101,115,88,101,117,104,101,109,109,106,106,100,108,103,105,98,113,95,104,104,101,98,97,98,89,102,102,112,102,89,111,102,105,111,77,113,103,113,111,106,102,99,97,78,111,111,99,103,100,94,103,103,108,130,100,111,121,113,108,96,95,112,98,110,98,98,104,101,109,98,113,102,107,108,107,100,97,104,76,92,106,95,94,106,94,84,103,104,116,103,107,89,98,98,105,96,103,106,91,97,110,92,137,109,115,96,99,98,108,104,100,96,106,110,88,92,104,101,102,103,102,115,98,107,110,102,105,125,105,113,106,75,106,112,100,101,106,102,94,88,100,109,101,91,96,122,97,92,110,95,93,96,106,105,100,103,97,101,119,107,98,100,96,93,113,91,106,104,109,109,97,102,109,101,99,98,99,100,104,97,100,95,118,103,109,111,109,106,104,97,117,115,100,97,103,104,108,95,97,101,94,108,98,96,97,105,93,99,128,95,113,99,95,99,101,91,89,95,109,106,91,95,115,121,103,99,109,93,104,103,98,101,121,116,94,101,93,109,106,96,103,100,104,90,113,98,95,110,121,92,100,108,105,80,99,95,101,95,103,104,107,116,98,109,102,115,94,108,106,107,106,93,101,112,112,111,116,112,119,98,107,93,99,87,104,102,116,105,116,114,97,105,99,84,98,106,97,100,97,106,109,98,103,95,106,117,100,108,96,94,108,112,122,100,108,114,91,106,106,116,100,95,101,105,96,94,109,91,104,141,112,102,110,78,106,110,99,99,104,108,83,97,103,117,103,99,102,96,97,110,120,117,105,113,101,106,102,109,94,107,100,98,106,76,95,90,114,98,101,105,99,99,138,101,107,101,102,95,90,100,112,94,108,99,82,99,90,101,100,97,104,105,106,115,108,96,97,100,101,109,98,102,109,94,97,106,98,115,102,92,116,108,117,103,117,106,120,105,109,84,103,98,101,104,103,111,103,103,94,103,92,107,90,110,106,105,106,112,104,103,117,100,98,95,107,99,114,100,106,108,117,106,113,105,103,113,94,97,99,106,104,105,105,97,109,84,103,105,77,91,71,107,113,98,107,104,101,103,87,110,98,108,92,104,94,106,106,100,114,98,99,112,112,102,108,100,104,110,106,103,94,79,107,95,103,101,95,94,91,101,98,112,99,102,99,95,110,92,100,100,103,110,92,110,105,112,103,107,109,107,95,105,94,96,90,107,107,96,106,96,99,91,70,97,116,104,95,103,104,105,99,94,100,104,113,85,100,112,106,102,98,98,91,87,108,97,94,92,86,90,106,106,107,97,100,95,91,84,103,108,106,108,112,95,105,88,101,100,105,110,91,102,103,104,92,104,117,103,116,96,103,91,103,101,94,103,104,102,102,96,109,97,92,99,102,107,92,117,98,107,111,98,124,103,101,108,109,83,97,100,91,102,83,97,103,112,97,113,111,85,109,113,107,96,101,96,98,112,101,102,112,95,104,111,105,106,109,91,117,93, +678.36829,95,96,92,87,86,97,87,113,84,103,99,86,112,83,97,106,106,91,101,93,92,94,101,100,105,97,90,91,109,111,91,104,101,104,104,107,92,93,96,100,102,94,101,98,102,99,94,110,84,90,95,98,108,103,105,106,101,99,102,98,104,109,104,124,90,105,99,107,112,109,100,81,93,97,85,113,99,108,102,109,111,96,92,101,97,93,99,97,92,92,91,100,95,91,98,97,105,95,112,101,97,103,99,97,109,106,90,101,101,92,110,106,102,105,93,102,102,99,102,113,93,92,110,105,102,101,107,102,108,92,105,115,101,93,111,107,112,106,96,136,99,106,110,93,114,97,120,78,96,102,91,88,123,96,103,68,87,102,103,101,95,84,103,99,101,116,108,88,94,98,99,117,103,105,96,102,107,90,101,98,106,96,99,92,105,99,97,87,124,101,99,96,117,95,96,108,103,76,91,104,105,100,102,96,97,109,113,94,105,99,100,108,97,110,96,102,104,101,89,101,99,94,110,93,95,104,119,104,97,102,91,96,97,101,89,108,101,96,96,102,87,105,102,89,93,99,104,107,98,88,96,100,109,96,97,114,95,110,96,106,98,100,85,95,88,106,106,100,99,105,102,106,101,96,102,97,101,97,94,95,108,91,85,102,105,98,93,89,95,102,83,108,100,92,114,105,103,104,97,88,92,91,109,93,94,114,105,92,109,89,90,96,106,98,102,99,98,98,89,97,102,96,121,116,116,86,93,79,98,100,93,96,104,90,104,100,99,91,107,113,97,93,89,100,90,96,107,120,101,94,119,101,100,112,99,99,97,104,102,107,101,101,103,94,100,94,102,97,91,86,98,96,105,110,93,92,101,103,102,100,100,98,95,98,101,97,96,94,101,93,106,110,105,113,84,95,97,101,113,90,93,102,105,97,101,96,101,98,90,95,89,101,105,101,105,95,95,106,100,129,94,94,105,113,96,87,101,104,94,111,92,100,94,97,95,112,80,102,92,110,104,101,104,98,98,88,98,88,99,99,110,94,91,95,110,102,103,93,101,79,100,108,102,103,99,100,101,98,114,91,90,95,101,90,97,114,99,115,94,112,90,113,106,100,97,97,94,89,96,94,110,105,97,88,90,100,100,124,105,109,112,95,100,103,92,94,101,95,96,92,98,95,95,95,86,99,93,106,117,97,97,111,106,105,97,98,109,94,102,97,99,102,104,101,94,105,101,100,104,100,92,107,99,104,101,95,99,89,125,105,95,100,102,99,107,96,105,94,117,96,95,96,109,97,107,96,115,111,99,112,93,100,103,117,98,94,105,105,103,101,80,94,98,98,99,95,105,98,100,96,102,100,85,98,94,97,98,94,102,97,114,102,106,90,107,111,104,91,102,108,92,104,96,98,101,93,103,98,100,108,103,101,112,89,97,97,91,93,98,101,94,96,87,104,87,114,102,96,112,101,102,91,84,101,108,98,97,105,108,104,89,110,102,101,102,95,106,99,104,112,99,105,88,124,95,104,102,100,106,95,107,95,102,101,102,95,107,103,112,87,99,99,99,88,93,100,90,97,102,101,102,105,95,117,100,99,103,103,107,100,101,91,96,84,100,103,100,96,104,102,98,89,92,89,93,107,103,90,122,102,88,91,96,110,88,99,95,104,97,110,97,92,93,85,90,89,105,97,103,99,105,104,95,113,108,101,103,91,108,107,104,108,118,91,92,91,101,96,99,99,101,100,102,99,97,100,102,106,103,105,118,102,102,105,94,99,107,112,97,108,104,106,109,83,92,84,92,112,91,108,105,101,86,114,74,102,100,110,90,104,89,110,104,92,109,108,106,100,98,105,112,101,86,96,115,87,98,91,103,100,95,104,101,104,109,98,93,95,108,107,101,109,99,98,77,108,81,79,102,100,104,101,94,100,92,85,91,98,111,101,102,105,96,109,101,104,107,100,104,97,106,83,101,102,93,101,98,94,93,111,103,99,99,85,96,105,104,100,95,102,87,106,103,104,102,104,104,91,99,96,93,98,103,95,97,93,96,104,94,91,107,99,95,105,94,103,93,99,104,99,98,107,99,98,108,101,112,100,108,105,98,102,95,88,98,91,99,120,99,97,90,105,103,107,98,105,99,89,98,109,103,81,100,112,104,90,98,108,104,81,106,105,103,102,110,91,101,115,97,90,103,96,111,95,98,99,100,78,99,105,109,99,90,91,102,106,100,98,84,100,84,106,106,109,111,104,108,113,97,98,97,104,91,99,86,97,99,99,114,94,106,99,110,77,108,103,100,96,88,107,100,103,91,108,92,98,104,98,97,96,97,94,98,87,108,108,104,107,106,101,102,103,102,89,105,91,99,94,100,98,104,97,106,101,97,105,95,104,94,98,114,91,99,105,109,102,105,96,99,115,92,100,106,97,111,112,91,101,100,98,104,113,94,110,101,105,96,124,110,108,101,102,96,101,111,100,103,101,123,104,108,98,107,104,96,101,109,94,97,106,101,110,110,101,112,118,102,98,97,89,105,94,110,104,114,102,95,98,108,107,110,107,106,100,97,109,107,108,100,105,96,105,100,86,105,104,103,97,100,107,92,100,91,91,90,95,97,96,112,102,110,111,108,106,98,97,103,106,98,104,111,87,102,76,111,101,102,138,101,101,98,132,98,101,96,98,109,99,104,96,106,100,120,111,83,100,107,99,106,113,110,100,96,96,108,107,103,94,105,96,91,106,108,101,90,102,112,112,106,110,99,101,96,97,102,105,113,100,107,101,99,104,102,114,104,94,100,109,100,117,96,103,124,113,110,97,100,102,104,106,102,107,103,95,96,100,101,104,108,98,94,109,106,111,106,102,101,102,83,104,99,107,113,108,106,107,100,110,108,102,96,114,104,124,108,94,92,107,98,127,92,107,108,112,106,99,104,100,103,102,110,105,99,106,100,97,101,119,109,104,105,99,101,112,101,102,90,115,100,87,119,106,99,102,104,104,99,103,100,106,102,84,101,103,113,101,109,101,106,99,90,92,113,87,112,95,98,101,102,99,97,105,118,107,103,104,100,108,95,109,103,112,95,108,94,118,109,97,112,107,106,105,106,103,95,96,97,107,113,115,105,96,113,113,106,97,102,104,102,97,120,77,109,97,99,105,101,115,103,102,99,94,103,105,105,122,102,97,110,100,107,97,105,99,98,113,109,99,115,97,100,95,115,99,112,103,97,109,103,119,107,111,109,100,108,108,103,98,102,120,109,98,112,104,106,101,99,106,80,109,106,96,113,98,108,101,104,132,98,85,88,100,131,108,87,103,108,105,106,101,91,100,99,97,113,106,99,106,104,102,104,114,113,114,106,98,107,111,92,99,98,111,107,94,92,100,95,100,101,97,85,99,87,99,104,111,90,111,113,112,111,74,100,102,99,95,125,101,106,100,99,107,101,118,101,108,71,113,102,98,96,91,102,98,99,92,107,105,111,112,91,98,109,98,94,106,114,99,112,108,101,104,106,100,102,104,117,101,110,99,118,107,102,114,127,115,102,112,119,99,100,110,91,107,115,104,108,98,103,120,104,107,107,113,91,94,98,102,124,111,100,100,103,107,111,98,105,96,98,103,103,102,107,101,97,98,130,101,99,108,104,107,119,103,99,108,107,94,98,104,98,107,87,109,100,92,90,102,103,94,103,100,98,102,103,100,103,99,96,108,96,107,105,97,101,103,108,103,107,100,116,100,119,100,97,97,101,106,105,97,105,98,96,99,111,99,109,107,97,100,103,93,101,110,95,97,100,101,119,96,105,94,101,109,94,83,91,100,100,103,102,101,106,97,95,106,107,104,93,99,70,107,76,107,105,91,77,105,97,85,102,100,99,92,105,103,101,97,100,95,111,110,98,106,109,100,103,103,115,96,100,98,104,110,113,100,103,93,103,99,98,94,105,112,83,105,125,109,104,102,94,106,98,110,85,107,103,107,101,101,98,112,105,100,105,110,100,94,100,114,109,117,115,125,100,90,96,106,100,119,99,98,110,100,99,113,109,107,98,109,101,107,96,102,97,113,107,90,104,104,117,104,106,96,112,96,107,105,103,103,103,103,88,89,101,115,110,94,100,106,108,100,117,108,101,94,90,100,101,103,95,95,96,109,122,102,75,99,94,110,109,96,101,97,109,106,94,115,112,98,100,101,107,98,102,103,94,105,102,102,112,109,109,99,102,104,105,102,100,109,114,112,101,105,95,102,101,94,105,94,91,103,112,99,103,105,89,104,98,100,99,110,102,88,104,101,101,100,104,101,100,103,100,98,116,102,99,101,104,112,112,103,110,106,115,104,104,108,102,103,102,116,105,98,92,102,117,109,105,109,100,108,117,99,103,109,109,81,102,110,100,108,94,100,117,108,94,100,101,105,110,96,98,133,106,79,97,104,100,92,100,109,101,94,101,114,102,98,91,94,110,111,111,91,106,105,95,92,108,111,94,108,117,105,103,96,93,83,107,106,95,103,108,108,97,110,106,92,94,106,75,90,105,110,103,108,96,109,109,101,107,101,92,103,122,102,88,101,102,107,111,102,104,87,89,93,110,111,89,102,103,102,103,106,108,106,108,96,96,101,102,92,104,101,99,99,108,109,106,105,112,98,112,97,97,91,107,108,114,95,106,98,108,99,98,95,102,123,105,99,89,94,87,110,120,96,104,98,108,110,94,107,119,110,95,99,102,103,106,105,93,105,98,105,101,120,116,90,104,104,116,105,104,97,111,107,102,107,98,96,82,94,103,108,87,98,117,99,90,112,93,105,102,103,110,112,100,109,103,136,106,97,106,98,95,107,101,101,106,108,106,103,96,105,108,99,90,117,105,103,99,106,106,94,123,95,95,103,116,92,112,109,110,102,112,80,121,108,102,97, +678.50952,106,83,101,103,90,98,102,94,115,98,109,86,95,120,109,93,100,115,101,103,92,98,108,99,104,109,104,95,109,100,107,111,136,106,96,109,109,86,101,106,101,96,101,96,98,93,104,66,96,109,99,114,88,104,99,100,92,121,114,83,100,106,102,102,91,111,87,107,89,96,105,91,107,114,98,112,111,103,109,105,115,108,112,93,102,93,110,107,124,87,100,104,114,95,108,101,84,94,100,95,94,95,117,98,103,100,92,115,105,93,89,108,110,99,106,110,97,112,93,102,90,101,102,106,99,104,110,87,99,93,98,101,81,100,99,95,105,104,71,100,95,85,80,97,91,91,103,101,73,103,103,106,107,94,106,102,109,115,100,109,97,113,112,71,106,133,111,91,105,107,99,95,99,100,110,104,109,96,106,110,97,106,107,102,108,99,96,75,90,95,99,109,94,100,99,100,108,107,110,108,98,102,92,97,95,100,104,108,101,100,94,78,102,108,104,105,99,91,107,105,93,106,100,101,108,107,105,97,105,106,104,102,106,122,107,102,92,67,78,104,99,103,103,97,90,114,99,113,106,107,94,119,101,114,105,99,88,101,89,109,109,98,102,87,90,120,109,96,100,99,117,99,109,101,99,109,91,110,93,102,97,113,95,109,107,110,96,112,95,115,97,101,100,117,106,107,105,103,97,103,99,114,87,107,112,107,107,98,104,101,102,111,105,110,93,97,92,93,98,102,97,103,98,108,93,102,100,102,113,103,112,108,100,96,105,107,104,99,102,102,103,115,101,101,95,109,99,106,101,100,97,102,102,102,96,113,107,109,113,122,94,106,95,96,114,100,101,100,96,98,115,100,94,104,105,83,82,97,100,105,103,104,98,116,103,94,107,104,103,96,106,103,95,121,103,114,98,94,108,103,97,102,86,91,91,120,96,98,96,103,97,92,109,90,113,96,95,95,100,94,100,99,102,99,99,95,99,96,100,121,107,113,109,105,95,102,101,113,92,94,101,97,99,102,104,104,103,95,102,103,109,92,95,101,104,92,111,102,80,94,98,98,109,98,99,115,112,103,98,105,100,101,87,102,106,90,115,107,91,101,107,94,108,95,101,85,102,102,110,110,106,102,102,99,86,101,107,109,89,104,106,93,117,113,98,105,97,100,98,94,105,104,99,108,106,108,103,104,108,101,101,99,101,110,109,103,108,94,97,100,101,99,100,94,106,91,99,100,99,98,94,105,122,94,104,108,106,100,100,105,125,101,109,111,91,106,99,96,98,99,106,99,102,107,106,111,103,108,102,107,96,98,112,91,111,98,101,101,103,95,114,89,105,92,106,97,111,123,97,106,87,91,99,108,104,112,94,104,109,94,100,116,100,101,100,104,100,100,104,91,102,100,106,109,113,90,96,98,100,99,107,103,107,90,112,102,98,102,101,92,91,106,99,98,92,110,102,101,106,102,99,109,99,99,96,92,104,94,105,108,101,110,93,98,93,106,115,98,96,101,111,105,99,92,107,94,103,82,102,106,99,112,109,105,99,106,92,99,104,103,97,106,108,95,100,100,86,98,108,99,104,103,87,115,76,99,105,87,105,101,88,94,108,105,111,108,107,101,101,105,96,98,98,95,90,96,101,98,107,122,94,101,105,121,113,102,96,98,107,108,106,122,97,102,95,109,103,96,111,98,97,99,79,106,114,92,98,122,101,101,96,90,104,98,103,113,101,100,108,102,95,99,102,98,101,95,103,104,114,98,104,108,112,103,103,99,106,101,104,98,109,99,105,99,98,82,105,103,89,103,100,100,107,117,99,103,109,106,101,100,95,101,105,103,109,108,106,105,98,101,99,96,99,108,105,101,102,99,107,103,104,103,91,96,101,103,105,96,106,113,100,101,109,95,95,102,95,97,98,111,90,99,100,109,107,112,85,92,102,99,109,95,89,112,103,108,102,95,106,95,96,106,96,110,110,93,100,93,111,111,113,104,97,114,93,107,129,101,110,102,95,102,94,105,105,103,95,117,104,104,104,109,88,101,104,107,99,107,103,102,91,108,117,103,92,103,86,100,96,103,107,103,109,105,108,100,100,95,103,99,95,102,101,103,94,108,106,103,99,104,99,102,101,113,95,90,91,90,109,110,111,116,111,110,96,95,102,93,99,121,108,77,113,108,100,96,113,111,92,101,111,105,97,96,108,105,100,106,106,97,121,110,121,107,90,97,107,86,102,105,95,97,98,108,95,102,99,108,97,101,103,98,101,105,86,102,95,107,108,97,95,103,113,89,109,100,102,103,92,95,106,94,95,101,108,108,85,94,97,111,91,112,114,92,92,102,105,104,102,119,102,114,105,92,99,104,115,85,91,102,109,102,100,109,119,104,114,99,105,114,100,102,108,108,97,121,96,89,105,93,105,83,100,104,108,92,87,93,114,97,80,110,84,105,87,89,90,90,99,80,97,99,98,110,111,100,88,107,126,106,103,103,107,99,102,97,111,94,98,94,98,92,75,97,88,85,108,98,109,84,114,107,99,85,105,102,103,97,110,105,105,118,107,105,102,114,96,122,106,91,105,100,102,79,87,101,105,105,108,102,103,89,101,103,111,105,100,102,108,101,110,97,101,106,110,89,103,100,95,99,88,98,107,102,110,101,110,107,108,93,98,108,100,97,93,102,100,106,114,121,97,117,96,119,118,106,108,101,105,116,116,94,102,100,106,77,100,99,101,100,114,107,103,102,112,100,101,110,107,100,109,98,104,96,103,108,116,101,104,101,104,104,103,110,111,108,102,98,93,109,96,92,106,99,104,104,99,106,96,115,99,109,113,111,110,113,87,97,99,116,100,110,99,84,102,115,87,116,96,114,109,89,100,103,115,103,114,101,99,98,107,93,103,112,97,111,98,108,108,106,89,102,93,96,100,109,90,86,109,104,101,112,97,93,106,112,95,103,98,106,108,98,93,105,93,113,106,104,88,75,73,105,91,104,107,97,105,113,117,98,98,116,99,98,108,102,101,110,109,98,92,91,93,96,117,115,95,109,106,100,99,106,95,82,103,87,95,93,109,102,104,101,109,103,102,110,99,99,106,101,106,107,100,106,120,106,102,111,106,101,117,113,94,100,101,105,101,118,119,95,102,102,76,103,113,99,95,98,104,99,107,81,107,107,103,107,119,109,109,102,96,105,101,103,100,94,104,111,112,105,95,91,106,126,105,98,111,102,94,106,91,95,102,101,115,118,118,91,112,106,111,103,100,107,113,98,90,102,96,108,104,109,97,102,104,104,114,104,117,95,111,89,103,112,99,102,103,104,101,97,99,129,96,108,95,122,92,107,94,103,115,108,101,98,83,108,110,101,96,102,101,106,112,101,85,100,98,104,102,102,110,105,103,115,100,111,112,101,96,110,96,98,102,113,100,105,96,85,101,98,115,91,104,92,110,108,104,116,94,98,110,99,107,101,107,105,109,95,107,94,109,100,109,102,100,105,106,105,99,103,102,101,112,105,103,103,108,98,86,102,103,100,107,111,99,106,107,124,104,111,104,92,111,106,129,109,96,94,109,106,96,108,98,107,109,107,110,102,100,98,99,102,91,95,101,98,103,107,116,119,93,103,123,103,102,104,103,103,109,108,107,104,90,74,87,101,105,99,98,109,106,103,112,106,96,99,112,104,119,100,124,105,103,100,109,111,94,92,88,100,108,101,112,91,106,88,98,101,107,98,103,102,110,92,98,103,107,108,113,102,105,101,103,95,95,103,113,101,102,103,113,100,112,106,108,118,110,95,107,103,87,109,93,89,110,87,100,110,95,92,108,114,111,95,99,103,99,103,95,105,108,121,102,117,112,103,101,106,97,97,108,87,104,102,108,87,97,112,107,102,106,95,109,101,97,104,109,94,87,103,99,108,105,103,94,96,105,106,125,116,103,109,106,94,111,112,106,103,109,106,94,98,100,107,105,95,98,92,83,108,95,98,102,98,98,104,108,103,106,118,104,105,97,101,105,110,113,98,104,104,98,105,104,103,116,113,112,106,88,92,108,107,116,92,105,103,92,102,100,101,101,92,100,81,107,94,107,102,96,92,105,114,108,106,112,107,106,104,93,107,105,111,100,103,108,113,108,90,131,104,107,105,101,104,108,110,89,102,103,105,113,94,98,98,102,119,109,105,99,95,113,94,111,102,105,104,88,120,104,105,112,100,108,104,95,104,105,99,105,106,102,111,106,96,108,107,112,107,110,100,107,99,115,95,107,99,99,95,106,109,103,104,105,93,96,119,103,107,101,101,104,115,121,98,105,94,107,99,101,116,117,117,104,121,106,100,105,113,103,109,104,95,108,102,103,113,104,109,108,100,97,96,104,109,93,98,94,102,114,104,104,110,94,119,96,105,94,114,110,97,101,84,106,115,102,111,104,105,113,101,113,97,100,103,100,97,104,106,99,108,97,109,107,109,106,96,105,97,99,107,98,98,95,99,101,106,106,104,95,107,113,109,101,107,91,105,99,113,94,99,102,107,93,108,108,109,101,113,97,96,93,103,102,89,102,113,93,104,102,111,92,106,101,103,102,98,104,101,98,79,107,106,109,65,113,98,90,103,95,104,104,101,108,108,99,113,110,102,100,106,99,105,120,89,104,105,109,105,117,109,99,92,110,106,78,103,104,89,90,105,102,110,103,92,106,92,112,110,99,100,102,109,110,97,100,105,101,102,94,104,100,104,89,105,102,93,106,98,103,108,104,109,88,108,96,103,93,102,107,109,105,120,105,98,99,94,107,103,100,74,94,112,98,95,99,107,108,108,99,97,97,112,95,100,104,110,104,103,96,112,121,103,105,101,100,94,91,110,106,95,92,100,104,108,110,115,109,100,89,107,103,116,104,106,109,111,109,115,101,75, +678.65082,100,106,101,113,94,96,96,93,106,135,109,102,94,100,100,87,106,112,99,91,99,102,113,98,111,115,98,101,103,100,95,90,109,99,109,100,102,107,114,91,94,106,107,106,110,104,98,99,103,103,89,94,99,96,98,98,104,84,98,101,101,101,101,95,93,105,96,97,97,96,95,103,104,97,93,105,96,107,97,102,97,91,109,100,121,93,91,104,105,106,108,101,95,100,98,95,85,91,103,99,97,100,85,108,91,102,98,100,109,90,99,106,90,87,104,90,97,108,109,88,85,94,106,101,99,109,93,97,106,101,97,97,104,109,100,96,91,102,90,106,88,101,110,107,97,91,106,93,82,98,109,97,95,97,76,99,121,105,100,95,93,106,99,100,100,114,103,98,99,93,93,104,112,105,99,114,97,98,112,122,103,105,105,105,96,97,104,93,103,99,89,94,104,99,98,109,112,94,100,103,96,94,86,102,96,100,101,102,103,104,109,111,100,102,95,97,106,108,87,107,91,98,94,108,105,102,104,86,75,106,104,111,92,116,108,111,120,110,97,95,104,117,109,96,101,103,102,105,98,114,109,106,92,103,105,99,111,99,109,105,101,99,101,109,97,99,97,97,111,108,99,93,104,94,117,95,88,100,97,104,98,100,112,116,95,106,88,104,104,101,93,102,97,106,105,109,108,94,99,110,102,100,92,83,90,113,101,101,92,108,94,102,93,98,105,104,98,109,104,104,93,102,121,95,101,105,108,100,109,98,101,79,93,78,102,98,100,104,108,91,103,92,100,94,110,115,108,101,103,98,113,105,111,105,92,105,112,110,129,101,101,101,109,94,107,98,101,112,100,98,91,95,100,94,100,98,105,97,102,98,102,102,99,102,107,84,90,102,104,97,114,109,101,101,74,87,92,93,97,103,111,98,92,100,101,87,91,102,110,97,91,92,108,97,111,124,105,99,99,96,98,87,101,91,86,100,99,97,90,101,98,98,106,99,104,97,98,106,107,110,106,100,98,115,113,107,105,94,111,100,97,98,105,108,106,110,104,104,101,96,94,101,97,113,100,106,101,101,98,101,102,92,116,98,105,98,100,101,111,110,99,108,110,94,100,92,106,112,95,102,102,101,105,90,90,98,106,94,96,108,109,112,98,112,103,95,112,92,111,97,97,105,108,104,83,103,132,110,115,91,108,92,95,119,91,101,100,102,109,96,96,121,103,99,94,116,99,109,106,113,101,100,112,87,105,111,116,108,108,115,101,106,106,100,96,105,95,110,100,106,103,98,113,108,104,98,109,99,104,94,96,93,100,103,109,90,100,96,112,100,93,105,113,94,100,100,96,91,114,105,109,94,95,106,110,100,98,98,99,100,102,110,118,107,97,103,91,92,102,98,87,99,101,107,100,108,104,66,101,110,96,100,102,120,100,92,97,108,99,116,83,99,105,103,93,90,106,98,113,108,101,104,101,95,95,98,93,80,105,101,96,114,95,101,99,108,99,91,103,94,107,100,94,99,96,111,98,105,114,116,96,108,107,107,93,96,95,112,97,101,112,111,107,106,84,107,107,100,95,104,98,100,88,103,114,109,108,96,93,91,101,103,97,94,94,112,102,94,86,101,86,108,101,115,88,99,96,114,101,110,95,93,98,101,98,87,107,99,101,102,107,109,103,108,111,93,96,89,93,103,108,102,104,100,110,97,103,112,98,104,109,101,103,100,99,96,103,101,92,104,100,98,94,99,92,94,103,102,112,96,110,98,106,104,91,101,100,106,117,107,99,129,105,107,97,107,94,103,104,110,100,101,99,102,95,107,106,90,97,107,96,95,98,114,99,103,106,114,102,95,102,100,105,109,104,96,110,121,100,102,103,106,100,105,89,103,103,95,99,105,111,83,100,103,95,109,104,112,98,94,105,104,98,102,91,109,97,90,95,100,94,96,94,96,88,101,107,113,95,93,102,96,96,114,104,84,106,101,96,97,97,104,93,111,103,87,98,94,104,102,97,106,95,106,113,102,106,101,108,71,104,101,97,112,104,112,98,110,99,111,96,100,112,79,98,100,104,95,103,92,99,100,112,99,109,117,103,102,101,99,99,98,128,106,106,91,96,98,88,104,87,101,104,108,109,93,96,96,105,104,88,113,102,95,95,95,102,98,106,88,90,83,99,106,106,95,96,103,97,100,96,90,92,107,110,101,107,102,107,85,104,87,105,105,111,101,98,98,91,94,106,113,102,108,109,105,94,93,99,110,108,109,93,105,102,108,100,124,94,99,111,96,113,95,107,103,107,106,91,100,97,107,96,102,99,106,101,98,99,107,108,106,102,100,113,103,90,103,102,99,102,100,107,104,113,96,100,99,106,102,110,93,106,104,107,105,92,102,103,106,117,100,99,104,104,109,97,98,108,92,106,98,90,103,104,122,97,115,105,91,99,107,98,111,88,105,91,109,105,91,104,90,99,108,112,101,100,99,117,105,94,101,107,86,105,99,101,91,111,103,104,94,103,97,106,103,99,102,111,103,100,117,101,95,92,94,92,102,95,116,87,101,95,113,105,100,100,106,93,97,102,103,113,108,116,91,96,96,94,104,110,113,106,107,105,104,97,109,96,97,121,101,98,106,102,96,108,98,95,114,100,96,90,99,105,104,98,96,100,107,101,96,102,116,105,102,90,93,111,113,102,95,96,100,107,113,105,112,99,109,95,103,116,103,90,97,111,95,97,99,100,109,91,101,110,118,125,110,109,109,101,97,109,100,107,89,105,98,94,100,123,96,102,99,98,101,105,104,105,105,113,112,104,101,94,85,98,99,106,95,95,108,112,108,105,106,109,106,92,87,94,88,99,96,94,105,100,91,95,99,101,101,108,113,113,115,93,107,105,91,102,102,111,96,113,105,101,93,106,109,113,101,102,99,102,104,91,98,104,138,99,115,97,110,101,104,92,90,107,106,103,100,108,114,100,101,110,109,110,95,94,107,107,98,98,102,104,104,95,102,107,108,100,115,77,98,105,105,96,97,106,94,100,103,127,112,101,96,87,95,91,108,108,84,107,103,113,102,112,100,93,103,93,106,94,106,93,92,118,108,94,113,99,100,106,98,88,100,98,93,107,102,110,105,99,112,95,102,106,103,100,98,112,107,109,109,97,109,108,107,104,106,96,100,108,103,109,103,100,110,111,99,101,92,106,113,108,97,105,100,113,100,104,108,87,97,110,92,105,101,105,101,93,106,103,102,101,105,122,100,105,105,92,114,95,108,107,99,85,93,99,98,105,102,95,101,102,108,98,117,94,97,106,99,88,96,110,112,106,107,111,103,108,107,120,103,89,98,87,102,94,99,96,91,94,94,108,101,101,108,90,93,113,103,105,101,96,95,104,100,104,105,104,95,113,108,98,101,108,106,101,100,95,106,103,93,121,101,99,91,104,101,96,96,66,100,98,112,102,105,102,119,117,97,92,102,107,104,108,103,91,94,109,106,110,103,100,115,95,90,104,113,106,102,104,110,102,92,100,93,103,117,101,92,98,101,105,106,101,95,99,106,100,105,105,110,110,94,105,108,95,97,105,105,102,128,102,99,102,101,102,102,124,103,104,93,100,102,102,93,97,99,104,108,111,94,104,95,109,98,99,97,105,100,100,98,104,91,113,94,105,104,102,100,91,98,98,109,97,101,101,110,95,68,89,107,104,108,102,96,101,97,104,100,103,100,107,100,111,91,72,102,102,95,108,104,107,107,120,89,101,101,91,105,109,108,113,116,114,95,112,103,104,98,106,89,101,99,121,97,100,109,98,104,91,102,100,120,90,96,102,99,107,85,108,106,92,91,104,111,92,104,81,97,103,91,91,109,103,115,94,94,107,70,104,105,104,96,94,97,94,76,109,99,98,87,112,112,94,89,98,102,106,99,108,101,111,99,100,97,122,97,93,96,106,106,95,117,99,110,90,103,102,95,102,97,104,97,101,103,102,100,111,113,96,107,105,95,91,91,98,109,106,113,106,98,98,106,99,98,100,87,109,106,104,98,108,98,110,101,104,97,108,94,92,109,96,94,109,94,105,80,102,105,102,95,104,100,97,104,104,115,109,95,108,112,98,118,94,107,107,106,102,102,107,113,102,86,108,108,99,100,90,105,95,99,102,104,103,96,105,89,108,88,108,109,91,94,117,105,110,103,100,103,105,104,90,108,106,109,111,103,109,112,98,105,104,113,106,105,107,113,84,104,103,99,91,117,100,102,102,78,103,97,85,96,84,102,106,101,101,102,102,93,117,96,116,95,94,112,121,104,103,102,98,97,111,104,107,92,103,81,110,102,93,105,91,98,101,107,102,104,112,91,94,95,109,100,107,109,83,98,112,111,112,102,104,100,114,99,101,109,109,118,102,102,113,106,97,116,96,108,107,99,98,103,107,103,102,108,98,100,96,99,89,103,102,99,99,109,110,112,97,100,133,96,92,101,111,97,106,102,100,100,111,94,91,106,101,106,101,97,103,110,119,113,103,100,102,83,90,90,100,91,105,110,117,93,104,92,105,104,109,105,115,117,101,101,103,101,120,103,103,91,104,107,99,101,103,91,100,98,96,105,75,109,95,102,94,108,94,102,101,89,84,112,103,108,106,108,107,101,103,96,96,119,111,94,100,89,103,105,103,108,106,100,107,98,120,96,95,112,91,106,100,118,106,116,107,91,102,98,93,106,95,96,103,90,98,99,87,104,75,100,111,92,111,81,106,106,88,89,110,107,100,97,101,100,101,106,100,90,98,110,115,109,112,96,95,99,92,115,106,96,95,107,101,105,89,116,105,92,117,116,104,90,92,112,105,121,102,101,86,109,87,96,95,106,117,93,93,94,98,97,102,108,93,96,99,89,110,100,94,102,106,111,109,91,90,93, +678.79211,93,78,94,99,104,96,101,100,106,90,101,111,101,116,96,104,88,93,107,104,98,110,81,120,97,92,108,100,112,90,109,101,91,95,100,78,110,99,104,109,96,93,96,95,100,109,97,95,95,90,97,108,102,93,100,92,113,89,112,93,105,104,101,96,95,102,89,90,107,95,101,101,94,109,105,105,102,107,100,95,101,111,95,97,96,86,103,99,93,88,113,99,113,92,102,92,94,107,107,113,75,105,98,95,101,109,96,95,90,104,106,97,85,95,100,97,105,100,114,97,99,97,95,101,99,97,110,102,81,105,88,111,105,100,106,105,95,96,113,104,114,107,109,96,91,99,107,108,92,92,100,91,101,93,101,101,111,103,103,108,83,105,93,98,110,104,110,92,109,93,112,100,97,93,95,99,105,87,101,105,96,96,96,107,106,103,95,91,96,100,82,99,103,92,96,99,116,90,101,105,96,96,88,106,117,98,106,94,99,86,95,104,103,106,95,92,95,108,111,109,113,112,101,99,110,103,95,91,104,103,99,104,103,102,112,104,95,106,103,94,98,91,117,100,92,86,94,102,91,96,115,102,88,99,99,104,92,103,99,107,105,95,110,103,111,106,88,98,113,98,87,101,100,103,103,95,105,90,104,88,93,98,103,108,94,97,93,99,92,96,100,112,112,96,98,86,97,107,105,98,92,105,97,95,77,109,98,93,106,109,93,93,100,106,105,102,104,118,97,100,100,92,115,96,94,98,113,102,107,96,95,107,95,103,103,105,101,99,87,109,84,106,108,76,96,96,100,113,113,107,97,104,104,99,85,104,117,97,99,102,103,105,96,105,88,103,93,109,74,100,111,110,104,89,76,108,95,92,87,106,105,92,99,89,104,108,103,98,99,89,106,113,90,102,104,100,97,103,105,100,75,92,89,82,90,88,97,112,94,104,113,91,105,96,91,94,104,121,106,104,98,109,93,103,83,95,95,87,99,105,108,95,98,100,92,93,91,108,102,129,103,97,84,113,99,100,92,101,104,108,100,97,105,103,104,95,85,100,103,100,98,91,113,102,99,104,103,89,99,93,95,108,91,95,104,96,98,96,101,100,104,104,105,98,92,99,105,104,98,103,98,101,93,102,93,100,105,126,109,105,100,99,110,105,99,98,91,92,108,104,114,94,98,99,110,91,110,99,102,96,97,90,99,109,77,103,110,91,108,97,84,101,104,97,97,107,91,107,96,95,87,103,114,97,90,103,107,95,102,100,99,104,108,102,109,101,97,97,90,96,106,98,103,96,99,92,109,106,99,104,90,94,113,105,104,108,102,91,106,102,101,102,85,106,103,106,103,91,105,100,113,97,97,110,101,105,87,98,117,89,97,111,99,102,98,102,98,105,105,81,94,97,103,109,99,96,85,100,109,93,99,102,105,96,104,99,94,111,101,117,106,98,103,100,84,103,95,99,106,102,108,101,97,97,110,90,102,101,102,110,117,109,104,102,99,102,100,112,103,107,105,98,100,94,87,102,103,109,112,100,109,91,101,100,95,99,108,98,111,95,103,107,99,88,102,101,90,104,97,95,104,98,101,103,99,106,103,104,102,106,106,107,88,104,96,73,107,107,98,95,109,105,87,101,96,92,101,97,96,95,111,95,109,98,92,101,107,110,103,107,94,95,105,99,97,110,99,93,93,102,107,99,111,116,102,106,95,106,96,110,98,101,102,111,106,67,96,100,108,101,97,101,101,99,99,96,101,90,114,87,97,103,112,95,107,90,97,89,80,95,101,95,94,106,101,112,113,90,103,106,109,99,104,95,108,99,108,102,105,115,102,99,95,105,93,105,113,106,103,95,121,96,99,101,110,96,104,105,99,109,96,112,98,99,103,88,107,113,98,103,103,91,88,114,87,95,108,101,105,85,95,108,100,102,104,103,97,90,106,87,103,87,94,95,105,105,101,95,88,91,103,91,111,104,99,100,102,98,103,76,104,100,93,101,97,100,108,105,100,90,101,109,107,110,103,100,104,108,96,96,106,88,110,106,97,105,109,112,113,104,96,107,99,112,97,109,100,100,102,99,103,109,110,96,96,104,95,104,114,97,97,107,101,100,110,104,91,100,95,80,106,93,113,116,101,113,93,104,100,103,103,107,103,100,97,101,99,95,105,107,101,96,93,104,103,102,101,98,105,100,100,85,94,93,95,96,101,102,80,101,97,91,113,105,94,97,100,93,110,89,89,98,97,96,84,103,95,99,106,94,107,100,100,111,110,108,99,113,99,95,94,97,92,106,108,101,106,102,90,99,97,102,112,101,109,122,100,103,95,101,102,96,100,112,95,101,105,117,106,95,102,103,96,101,95,103,95,107,99,100,100,88,91,108,106,91,112,105,109,97,87,103,97,100,105,101,92,100,102,102,106,114,97,102,98,92,90,103,104,105,95,113,105,93,103,98,99,112,102,96,95,101,89,112,104,99,94,95,119,98,95,104,101,100,84,105,107,96,92,107,109,101,121,106,111,112,102,105,106,96,92,113,87,106,106,99,105,100,95,111,88,96,102,104,104,104,103,87,91,103,105,99,112,103,101,96,101,107,99,117,101,91,100,102,100,100,102,98,105,95,109,105,104,103,107,100,102,104,94,95,109,99,110,90,103,100,109,103,109,91,113,141,95,99,99,99,109,94,106,95,102,103,110,95,107,101,107,106,103,105,96,99,81,111,100,88,105,95,98,107,103,125,100,126,104,112,94,109,116,99,96,112,108,96,105,108,92,100,115,101,108,112,106,95,97,99,94,102,110,110,95,100,102,96,100,91,104,100,103,104,107,105,102,95,98,114,102,78,108,104,105,97,108,103,104,96,94,109,103,91,106,110,108,119,105,95,115,101,103,100,97,110,112,93,105,80,101,95,115,103,94,106,118,109,109,103,112,98,104,99,95,99,105,92,107,103,106,103,108,106,103,95,98,108,97,104,121,107,100,101,97,108,96,99,114,99,103,96,101,111,107,108,97,106,83,106,100,96,110,98,103,91,102,109,111,105,102,97,109,99,99,95,103,107,96,87,100,99,118,111,109,108,92,96,109,113,98,107,94,99,87,108,98,99,104,64,106,99,99,101,99,95,88,107,102,103,104,91,97,95,116,104,106,103,109,84,95,93,101,105,98,97,112,90,96,90,103,108,108,84,106,104,99,98,95,100,99,117,106,109,99,92,92,100,106,107,101,108,99,98,107,108,115,101,81,111,105,98,99,115,91,95,90,106,104,90,92,109,111,91,107,101,103,98,106,107,91,102,109,103,107,106,104,101,104,99,112,91,100,100,119,110,103,97,91,105,91,106,85,91,97,101,96,107,105,90,106,99,114,101,107,106,86,104,103,102,101,103,94,91,112,102,109,100,97,103,92,105,96,95,92,106,106,111,115,94,114,109,112,95,106,95,98,98,111,91,95,94,86,104,99,108,99,83,90,101,97,99,99,92,98,101,90,109,87,105,106,108,100,99,94,102,118,102,106,106,98,113,72,98,104,90,99,95,110,106,98,106,79,108,102,109,99,98,99,108,97,97,101,109,104,99,105,98,95,109,115,116,107,91,99,107,99,111,102,104,108,102,104,113,92,100,99,111,91,101,93,106,109,105,95,118,102,107,100,100,99,100,102,108,113,95,100,109,98,92,94,100,108,107,97,120,88,104,88,86,97,103,102,90,100,103,105,91,98,91,106,93,104,97,94,96,99,87,95,104,103,104,105,118,98,101,107,105,93,120,109,109,105,108,109,90,111,102,92,107,124,85,103,105,115,102,97,102,101,99,96,95,99,99,106,104,111,109,105,111,97,87,110,112,93,106,111,99,99,94,85,102,111,104,103,103,98,113,110,100,92,102,94,101,105,105,95,92,101,106,102,99,97,104,95,94,98,111,109,105,112,95,108,101,100,107,127,95,113,105,98,108,112,96,90,108,105,106,97,103,109,118,103,95,106,103,105,114,98,107,94,104,113,98,91,88,99,95,96,84,85,95,125,100,69,104,108,98,99,109,112,96,104,101,105,88,93,99,103,93,95,89,105,97,103,95,105,101,104,98,98,86,91,102,94,119,108,102,94,109,97,97,110,109,107,93,101,101,99,117,117,90,91,96,94,101,98,105,104,95,112,110,107,109,101,114,102,81,99,115,99,94,94,98,97,103,112,97,104,116,108,123,98,101,116,110,110,96,106,101,105,104,104,98,102,83,117,95,99,103,110,111,106,90,102,102,100,94,90,108,103,108,100,105,100,101,107,98,109,99,105,101,99,108,103,76,92,107,104,99,83,98,103,95,101,93,105,100,104,109,87,105,103,116,120,101,103,104,69,98,100,93,110,113,103,104,103,102,101,106,97,96,90,85,97,97,97,118,105,110,114,107,114,100,106,108,97,104,103,103,108,103,113,103,104,104,101,94,101,98,93,105,91,113,102,109,106,105,96,92,97,84,106,98,100,108,108,96,112,114,111,107,101,101,104,99,98,94,106,95,106,91,95,103,90,95,104,108,111,104,97,108,108,97,104,105,101,103,105,104,101,96,108,109,95,110,112,102,92,96,93,101,99,89,103,97,110,105,106,98,99,105,94,110,71,106,86,109,94,107,90,103,92,95,103,93,109,101,87,98,100,95,106,83,92,101,114,101,80,92,116,108,108,97,103,102,99,110,140,91,100,92,95,100,98,113,112,108,99,98,106,92,97,98,101,102,105,96,116,101,119,103,96,98,101,101,96,109,110,112,94,104,95,109,109,97,111,97,116,108,102,94,95,95,91,104,104,98,99,98,99,96,116,110,101,99,101,105,112,95,101,108,107,113,109,98,104,103,76,104,63,111,104,104,94,93,78,98,99,95,90,108,100,88,95,117,105,92,117,100,96,95,96,92, +678.93335,115,110,100,102,97,94,93,96,109,103,91,108,101,89,105,111,92,102,91,108,104,100,86,97,94,104,103,95,105,103,109,93,96,101,109,98,87,94,91,116,90,107,97,105,101,113,100,103,87,89,98,97,101,93,105,89,109,95,99,108,108,95,77,99,104,107,111,100,109,99,91,106,110,101,101,124,105,95,102,87,109,98,100,95,94,94,102,110,101,98,105,113,108,107,91,97,109,97,95,98,91,102,96,100,103,100,96,101,114,96,109,101,101,104,99,96,100,105,96,111,103,90,97,102,101,102,94,99,103,109,100,98,102,102,109,96,91,107,95,106,102,104,99,113,107,98,110,105,72,102,107,101,104,86,83,97,100,101,107,105,91,94,96,96,97,95,107,103,100,94,99,109,90,110,74,93,106,92,97,100,103,100,99,101,94,95,93,87,98,101,102,104,105,100,103,106,104,101,103,109,100,106,106,106,109,109,94,97,102,103,97,103,93,99,104,97,103,93,97,103,103,107,106,105,94,110,101,99,101,113,97,114,113,91,93,111,105,111,104,91,96,101,113,122,106,104,111,101,104,112,94,100,88,97,100,107,109,103,105,98,100,98,113,94,113,95,104,103,92,95,97,98,110,100,110,110,96,105,102,101,86,106,114,105,92,100,99,94,95,100,95,105,113,98,109,90,91,102,108,99,102,99,82,97,103,98,123,112,102,116,94,109,101,105,96,104,87,99,107,95,110,100,100,112,101,97,99,95,109,104,104,117,108,111,117,103,95,96,98,117,89,91,101,98,94,99,96,110,108,109,98,112,100,101,91,104,102,102,96,87,86,61,98,98,95,101,110,111,103,109,92,93,104,104,106,113,100,102,96,86,113,106,88,112,105,83,102,96,105,117,109,96,95,99,104,105,96,103,105,96,112,91,87,91,98,99,94,99,82,103,89,94,104,102,101,107,100,104,109,104,87,86,94,97,94,101,103,103,95,98,105,101,97,97,103,110,103,102,98,97,99,91,101,106,93,91,97,95,97,95,96,103,98,108,99,99,95,106,87,101,92,102,103,111,107,107,98,105,103,108,104,94,98,108,99,97,105,132,100,104,106,94,108,106,104,112,90,94,89,109,98,86,85,105,103,120,101,108,103,110,110,99,103,97,97,101,85,105,106,93,99,95,98,106,106,99,95,104,100,92,104,129,99,101,110,103,96,106,101,95,103,91,91,90,92,95,121,99,102,103,102,103,87,97,101,109,90,100,122,104,99,97,102,93,96,95,100,108,96,83,103,99,100,93,100,113,97,106,122,101,94,94,107,101,102,112,96,104,97,115,109,115,104,98,99,101,98,97,109,109,99,103,90,119,101,101,86,102,101,93,104,103,103,110,108,114,90,105,98,102,125,106,136,96,109,70,96,93,102,111,103,99,94,104,91,114,106,100,107,101,104,113,92,102,93,99,97,83,95,102,102,99,126,112,100,96,93,86,94,104,103,117,91,116,101,104,102,109,103,101,94,95,101,101,97,98,106,96,119,110,113,106,105,93,103,107,101,100,97,110,104,99,95,95,110,99,96,114,111,105,101,97,98,103,106,101,112,95,112,90,98,101,108,99,106,105,108,101,104,104,99,109,95,108,111,96,116,100,101,79,102,100,110,104,95,96,95,110,100,103,100,99,100,98,107,128,100,89,105,102,102,100,99,99,100,89,105,107,97,102,116,99,103,102,110,110,106,101,96,98,94,102,93,110,106,97,90,106,92,84,100,91,116,93,97,97,110,102,107,105,102,100,107,108,99,103,97,107,98,118,99,97,100,113,95,108,96,96,96,109,98,93,97,91,104,103,101,102,99,96,91,96,107,72,98,99,103,104,104,89,97,103,102,107,118,115,112,99,102,92,100,112,99,94,92,103,104,98,108,105,108,92,117,114,101,99,109,101,91,102,96,95,101,107,92,105,104,117,95,100,95,91,104,99,115,113,101,107,103,114,116,89,92,100,94,97,95,95,104,109,96,94,102,103,112,120,94,119,104,102,106,105,111,110,72,92,90,102,92,105,99,102,100,98,96,95,102,92,102,105,103,105,116,98,97,119,97,90,96,100,111,101,100,105,96,97,97,94,77,103,96,102,90,110,91,112,94,71,102,111,100,97,112,99,110,94,97,107,110,112,102,105,99,111,103,99,107,109,99,100,98,108,114,101,102,111,121,104,109,99,102,109,107,100,98,103,104,101,106,101,91,99,107,98,111,97,99,120,108,96,89,101,115,105,112,90,102,96,98,106,113,105,96,103,111,94,98,108,109,89,111,91,103,102,90,116,89,95,108,103,102,93,100,90,105,92,101,92,99,112,99,101,102,97,123,95,116,103,113,102,103,107,108,94,100,99,93,94,112,105,109,103,101,75,108,105,99,105,102,117,103,123,101,96,71,102,97,112,102,108,104,94,99,97,113,102,98,109,103,103,96,97,92,112,98,101,102,95,103,93,103,109,99,88,102,100,99,100,102,108,96,96,80,92,101,94,97,103,107,104,88,108,110,100,99,100,97,114,100,96,102,93,110,103,88,101,100,65,96,109,98,124,98,98,101,90,91,98,103,102,100,96,91,109,101,99,100,106,100,95,106,104,97,105,104,95,99,109,105,104,104,84,102,95,100,104,102,105,105,98,109,108,106,109,73,103,90,107,94,90,105,108,93,99,104,106,105,105,102,95,103,96,101,84,98,106,111,99,100,97,97,110,107,100,85,101,98,112,95,91,91,95,93,99,95,91,91,116,101,95,109,109,96,104,108,96,106,109,103,96,95,108,98,94,104,89,99,97,96,93,99,101,103,97,105,99,74,102,101,99,97,101,106,101,101,135,92,103,96,92,102,96,103,100,97,95,94,108,97,94,109,92,101,107,97,98,108,105,106,109,93,91,95,94,104,99,109,100,115,88,96,105,101,106,108,102,100,105,104,104,109,103,102,109,105,105,90,95,113,94,102,96,95,94,113,99,100,97,105,114,109,95,106,103,100,96,102,110,100,99,96,113,86,122,99,89,96,98,105,110,111,95,102,92,99,99,91,107,104,96,97,93,84,93,109,87,100,97,96,100,107,116,96,82,98,101,109,102,106,108,108,98,98,113,113,105,92,97,103,94,107,102,102,101,94,93,114,104,110,101,101,91,102,103,105,103,113,103,100,103,106,97,115,104,103,100,118,93,101,99,84,107,98,101,92,96,93,100,99,96,98,96,104,94,87,97,113,108,109,105,107,114,96,99,109,108,104,108,82,101,105,96,100,102,98,104,100,98,112,104,117,92,109,98,103,102,101,100,96,105,99,113,96,101,107,96,109,96,107,104,97,90,101,113,112,98,96,109,109,102,97,110,104,106,97,99,100,95,110,97,99,94,86,121,99,102,109,102,104,90,111,90,96,110,86,104,101,97,96,108,95,90,98,95,105,101,113,101,102,105,102,108,102,106,100,116,103,102,84,98,108,97,91,95,110,113,112,105,102,101,98,101,103,102,94,104,107,93,90,99,109,107,109,107,97,97,107,113,91,108,98,97,99,97,106,95,106,101,108,106,111,108,96,95,102,114,104,105,103,100,99,98,102,96,93,104,105,113,98,88,94,106,101,101,93,93,99,115,113,98,106,96,134,99,103,80,110,98,91,97,98,100,94,89,96,105,92,96,91,109,112,106,106,109,113,105,93,117,104,94,102,98,102,100,105,102,106,100,99,104,100,102,99,105,108,109,101,104,104,96,98,100,93,94,100,96,100,104,97,91,93,101,104,97,95,109,97,104,90,86,93,98,103,105,95,111,124,109,111,105,110,109,108,107,94,118,104,95,87,106,106,99,89,113,92,104,112,97,101,81,94,109,95,110,98,83,104,92,112,87,106,100,113,91,106,90,97,93,98,111,96,101,113,110,95,116,96,95,96,102,102,97,106,112,104,100,98,93,107,109,110,101,104,100,104,103,95,109,97,93,100,98,99,103,102,100,95,107,97,101,101,87,88,102,104,113,97,105,109,94,97,106,115,98,99,110,95,113,107,89,87,103,88,96,105,97,99,98,94,105,100,106,97,104,102,101,79,105,103,102,108,102,87,95,99,105,106,110,97,100,103,99,101,99,77,113,98,96,102,109,94,104,102,101,104,96,104,84,110,85,110,103,106,103,92,96,94,102,97,95,103,97,97,78,112,109,102,102,94,90,114,102,102,101,96,100,107,105,95,101,104,84,110,95,97,96,107,95,97,100,110,97,110,97,83,101,94,91,106,102,103,102,95,99,96,95,104,98,94,124,100,93,113,93,101,100,108,99,109,109,114,104,97,107,106,115,95,107,80,103,96,105,95,96,104,106,92,98,100,105,92,113,103,104,99,116,103,99,99,101,99,99,102,110,97,106,108,99,106,109,101,95,89,120,98,110,99,97,88,107,93,93,94,81,87,73,93,101,104,98,90,94,90,98,98,102,80,100,103,102,90,93,112,94,106,98,110,93,102,102,95,101,98,96,98,96,89,108,96,96,95,90,98,103,97,98,116,115,97,102,110,99,93,105,104,95,100,111,108,94,102,106,106,96,95,107,99,98,104,99,101,87,108,106,109,108,98,101,100,102,109,106,95,99,105,110,98,103,93,93,105,109,95,108,103,105,91,106,90,101,98,106,104,116,91,75,102,111,111,64,84,105,101,106,108,96,95,99,120,85,110,106,111,97,100,119,102,108,95,95,95,110,98,97,94,99,100,88,96,100,87,104,93,98,87,92,104,98,117,105,91,93,100,106,104,106,102,92,98,121,105,107,99,93,107,89,104,107,100,105,101,92,93,96,97,98,96,93,100,121,111,101,104,105,98,100,95,96,104,87,102,105,101,109,109,92,102,113,97,80,100,106,98,104,109,108,112,109,105,96, +679.07465,102,87,102,99,90,85,88,95,101,107,95,95,103,91,98,99,106,103,96,97,106,90,96,114,105,97,114,109,103,119,116,99,88,92,94,114,107,104,102,101,97,112,114,92,91,112,104,107,108,107,96,94,101,91,110,66,96,96,82,88,128,102,91,90,91,127,99,94,105,109,91,108,110,100,92,108,95,112,103,116,88,105,99,104,93,94,88,96,99,95,99,105,84,90,103,98,98,101,101,97,97,96,98,108,100,77,105,105,102,105,103,107,103,107,102,97,108,103,106,95,89,101,105,108,108,112,110,89,120,105,99,97,93,101,107,101,96,98,92,105,90,105,104,94,92,88,116,98,93,109,98,105,105,89,100,108,92,113,96,107,97,104,108,86,113,102,111,98,113,101,110,114,108,103,116,97,120,95,104,101,102,106,102,105,94,89,101,97,89,121,97,103,100,109,90,112,97,99,112,100,103,110,99,106,99,106,106,105,112,103,105,114,88,101,132,82,97,101,117,104,100,102,92,101,103,99,104,103,98,112,97,97,108,103,94,91,116,109,91,95,90,100,119,99,97,94,95,101,83,99,120,82,101,92,99,106,94,101,88,100,88,99,117,85,109,103,105,103,92,113,108,112,103,108,108,92,96,102,99,103,104,118,100,102,102,93,87,95,98,93,110,106,110,95,113,102,123,91,104,101,109,96,105,105,97,93,103,116,98,108,97,123,90,114,108,98,106,123,99,90,99,101,104,99,109,103,95,95,101,98,96,88,103,112,104,95,108,104,96,96,118,99,98,102,109,110,99,100,108,88,112,95,99,106,100,87,109,109,99,103,103,84,101,116,102,97,105,127,95,90,96,97,95,97,95,98,96,97,99,94,104,119,103,116,94,110,108,102,105,96,109,92,94,107,85,94,93,113,100,91,103,98,95,95,94,98,93,106,106,102,91,95,116,113,97,95,107,96,101,91,109,93,100,109,104,100,112,96,88,108,90,109,107,94,98,104,108,97,95,108,109,100,98,96,104,94,94,100,110,110,93,100,100,108,106,93,95,118,133,102,110,120,109,107,109,106,111,99,101,109,99,101,96,80,98,101,95,91,108,103,98,97,109,102,113,99,113,105,102,89,102,108,104,89,80,101,92,102,104,92,106,93,91,91,108,107,97,106,101,90,105,103,102,96,102,104,105,92,94,105,100,94,101,96,112,104,110,100,110,95,94,100,94,101,97,104,100,88,107,95,96,117,105,96,101,121,100,88,107,109,105,102,101,98,109,92,96,97,102,110,107,103,96,102,99,106,113,98,104,98,94,102,100,103,103,93,106,95,99,105,115,85,112,94,100,97,100,108,95,91,109,120,101,101,111,104,100,98,109,100,105,105,101,91,110,98,98,99,100,104,99,100,111,93,101,100,104,102,105,107,105,126,109,99,102,107,94,104,103,100,102,101,104,97,106,104,108,97,94,102,106,99,115,99,94,102,111,100,106,130,108,109,102,107,96,102,121,102,109,105,109,105,106,103,100,106,105,100,107,102,105,104,100,98,64,100,99,98,109,99,100,108,104,90,94,103,106,105,107,109,106,101,104,96,100,77,104,98,106,90,102,101,97,95,91,103,107,108,106,99,112,104,92,104,100,93,97,100,98,93,87,92,108,82,97,92,116,109,115,109,98,104,104,99,107,110,103,96,108,98,108,100,117,110,102,101,101,101,106,110,110,93,115,100,110,91,95,103,105,109,121,97,104,96,96,98,96,94,106,108,113,109,93,101,100,99,85,108,102,92,100,99,103,98,96,110,100,107,107,115,96,112,95,96,86,92,91,95,108,111,98,100,100,87,108,107,108,94,104,103,113,95,104,100,118,114,106,101,108,104,102,114,106,95,80,114,107,100,94,104,116,101,102,106,107,100,105,100,100,103,111,97,106,98,102,101,100,95,105,96,104,92,101,89,96,95,100,99,98,107,104,96,108,106,108,86,101,107,96,121,95,110,111,132,92,98,102,99,101,103,105,100,100,103,95,109,97,102,106,97,106,103,95,110,109,92,109,113,105,106,98,100,112,99,109,99,98,97,97,111,117,108,106,113,105,98,96,109,102,116,103,104,100,94,114,106,100,102,116,106,94,96,104,106,100,105,96,114,107,108,99,92,100,113,80,100,116,101,99,109,101,94,108,98,109,105,109,107,103,110,105,100,106,95,103,106,96,110,90,103,97,101,108,97,98,109,105,92,103,108,103,113,92,109,117,93,100,100,102,106,93,111,102,115,103,105,99,72,99,103,113,108,113,97,107,89,94,102,95,104,104,99,98,96,104,106,90,96,111,99,83,98,103,99,113,105,104,116,118,99,105,121,113,88,100,100,108,113,108,103,103,86,92,99,114,125,90,104,93,111,92,108,95,118,112,91,106,121,66,101,95,113,92,102,107,105,101,103,95,97,96,109,97,101,121,98,107,98,97,102,100,103,102,111,105,101,105,96,125,106,104,125,92,106,93,96,88,113,105,97,112,89,113,98,98,111,117,103,84,99,98,97,91,95,103,103,93,108,89,97,105,101,99,106,94,94,99,103,107,92,93,100,99,99,100,93,89,112,108,86,92,96,98,105,90,114,102,113,100,107,124,105,114,93,119,105,118,102,90,95,96,100,65,90,113,124,127,93,101,84,94,91,104,112,104,107,102,113,110,104,103,93,96,110,96,108,104,107,105,101,95,100,98,106,97,112,100,104,94,104,104,95,94,104,102,107,94,108,115,89,102,64,96,101,100,95,113,98,98,96,106,107,94,120,99,100,102,105,100,106,103,98,97,76,105,99,102,110,108,109,89,93,90,104,95,96,101,108,106,107,92,96,111,105,98,94,90,109,103,92,98,102,95,102,77,92,97,109,96,103,107,106,106,106,97,100,84,89,86,123,87,94,111,96,104,103,98,102,87,88,100,105,93,105,98,102,106,89,103,102,111,91,93,102,107,99,109,112,106,100,97,96,113,91,106,100,92,98,100,97,112,114,97,102,102,94,99,106,102,109,119,92,94,119,106,100,106,68,67,104,104,97,109,104,113,103,125,103,104,97,100,99,97,98,85,96,121,105,90,112,103,102,109,108,117,69,109,114,115,112,100,97,101,104,95,101,99,107,103,100,83,94,99,97,94,105,91,115,116,104,87,100,96,105,95,94,99,98,106,101,102,91,104,98,95,118,111,112,95,96,96,112,104,94,103,104,92,102,115,94,108,94,105,97,96,120,93,90,96,101,119,107,102,117,110,93,101,104,104,96,97,107,99,105,103,93,97,114,105,97,97,107,103,109,98,108,98,92,103,98,114,102,100,95,107,97,96,105,102,103,111,115,101,108,100,98,90,111,115,108,101,103,90,98,96,105,80,104,98,99,102,94,101,87,100,103,113,100,102,92,89,109,114,105,89,94,99,97,87,96,106,97,102,99,102,103,104,95,108,94,99,106,107,110,98,108,91,93,99,101,99,95,116,93,102,109,102,103,103,92,98,101,103,106,98,115,102,96,92,98,95,123,100,96,95,106,109,105,101,111,102,100,107,99,100,90,104,100,97,105,103,95,101,93,107,100,105,94,101,91,100,109,108,101,98,103,102,97,114,102,93,110,105,102,99,93,107,115,90,107,103,111,113,101,98,106,103,97,98,99,109,103,102,131,79,93,109,91,102,111,104,111,98,106,96,104,107,92,95,112,76,84,116,111,95,95,98,106,102,92,106,101,92,118,100,98,112,105,98,96,109,104,94,101,99,95,102,101,100,107,101,96,108,109,91,93,95,96,92,101,98,121,108,91,108,104,124,104,104,96,107,106,101,105,111,109,89,96,95,119,83,114,109,123,97,98,111,109,109,101,112,100,103,108,117,83,105,101,105,89,96,105,111,87,108,103,97,69,84,106,99,89,102,113,104,99,100,93,99,107,97,105,106,110,81,97,104,94,114,101,90,114,96,103,104,96,108,104,100,95,102,101,93,123,102,86,104,87,109,106,111,97,99,112,105,97,99,104,97,105,105,101,103,106,105,93,111,91,107,101,111,109,95,88,104,107,104,98,97,99,103,103,100,104,91,95,94,101,103,102,105,102,102,99,95,104,104,115,100,108,100,91,100,100,104,105,102,96,99,94,98,101,91,90,102,107,92,102,105,89,108,87,94,106,97,108,99,106,108,90,108,81,85,100,98,99,111,114,101,93,103,95,109,114,106,100,108,107,106,105,110,99,105,108,101,104,107,94,94,74,95,91,94,101,97,121,93,102,110,116,83,92,109,107,101,97,108,97,93,99,108,109,105,93,111,99,110,109,93,107,84,91,104,99,106,102,106,101,99,103,104,100,97,95,99,99,106,99,106,98,93,99,115,103,99,87,111,106,101,95,104,107,80,114,89,110,106,108,95,102,99,92,100,102,96,97,94,97,105,108,106,115,100,98,96,87,88,97,96,106,105,107,100,104,97,93,96,97,106,98,94,99,115,95,92,115,90,108,100,100,94,103,102,113,94,92,106,91,91,89,91,104,102,95,117,103,96,64,106,107,99,104,95,100,103,91,93,95,102,101,99,98,95,106,94,98,115,96,89,92,109,88,122,92,109,98,103,104,106,99,90,98,101,96,83,104,98,112,90,103,97,110,109,92,96,102,98,99,106,123,97,100,102,100,128,97,99,87,98,96,101,94,100,102,100,95,101,94,97,101,102,116,114,91,119,101,83,98,87,97,95,98,93,116,107,96,113,97,106,91,104,96,102,112,99,91,98,110,101,105,112,91,78,96,106,96,102,97,107,104,103,106,106,102,101,101,99,91,96,111,111,104,95,116,91,101,107,96,115,106,88,95,106,116,95,87,101,104,117,90,101,98,95,87,92,93,97,110,118,78,103,102,86,93,105,95,101,80,102,104, +679.21588,87,95,89,103,90,112,106,85,100,108,95,104,107,92,105,101,94,101,87,101,99,97,94,104,96,105,97,102,109,102,106,102,102,103,110,92,88,93,95,106,98,100,97,94,110,101,93,105,82,109,89,111,91,90,101,89,101,95,105,88,99,94,101,101,98,99,95,94,109,95,113,104,102,106,95,107,93,100,94,108,106,106,90,102,97,80,103,100,102,109,104,95,99,93,89,105,96,113,91,107,116,118,106,106,108,97,114,95,99,97,96,104,96,109,105,103,89,101,72,111,98,91,92,83,99,105,110,104,89,98,95,102,107,109,93,110,107,76,104,93,105,110,109,105,104,99,104,112,104,98,98,108,108,100,100,100,104,92,102,103,91,102,88,95,109,99,97,84,95,96,94,98,95,105,107,89,95,105,110,84,92,108,92,110,98,101,98,85,99,94,94,83,101,80,100,101,110,104,103,92,91,96,100,111,99,110,104,105,92,116,94,105,84,105,99,95,95,99,95,109,104,105,82,97,99,110,92,106,96,92,95,122,103,98,105,105,99,101,90,95,94,92,116,109,96,97,91,96,99,102,93,103,92,106,95,105,99,111,87,102,95,97,93,102,104,107,105,108,100,103,101,98,96,118,117,80,98,106,103,105,99,105,88,104,96,109,102,88,98,95,105,107,106,105,87,109,107,104,97,99,101,104,109,108,91,105,95,108,100,97,94,99,106,88,121,123,98,109,79,99,94,88,104,96,96,92,104,97,110,82,104,99,103,117,109,112,90,111,105,105,103,108,93,101,102,107,86,94,110,95,103,102,98,103,112,124,99,105,114,103,104,103,98,90,103,98,92,111,104,113,102,98,91,103,99,101,107,99,90,106,102,103,101,108,110,90,101,94,104,113,109,97,98,107,93,89,100,101,100,107,104,96,101,109,90,85,107,106,97,107,93,97,101,100,104,100,98,94,97,95,104,106,93,106,88,98,108,109,97,108,87,87,116,90,106,94,93,97,114,95,101,96,106,91,91,94,99,92,105,101,87,101,94,109,103,106,101,112,96,103,112,99,95,99,106,111,88,92,103,95,103,97,93,96,106,86,92,107,102,95,104,99,107,98,75,89,113,77,104,97,99,100,102,105,102,95,109,97,107,98,110,111,105,95,96,98,97,96,100,95,107,119,99,104,95,101,100,99,96,88,103,94,105,100,95,97,98,98,105,98,107,94,109,87,105,106,98,110,110,97,87,111,86,92,105,109,88,92,90,104,95,95,104,84,90,99,102,106,105,95,93,95,95,95,97,97,87,117,99,100,95,94,86,111,97,124,86,98,99,101,103,91,102,104,94,108,92,109,100,98,95,112,105,90,107,101,108,103,116,103,96,89,108,114,104,92,91,102,103,98,87,97,100,108,105,99,88,114,105,107,106,110,113,100,103,96,104,108,109,102,90,105,92,103,95,96,121,100,78,95,99,96,105,89,95,100,99,109,93,110,104,98,88,105,92,100,93,107,107,92,108,98,114,100,92,100,102,82,103,98,102,97,85,96,96,101,99,91,109,85,98,103,121,65,109,98,101,97,109,102,101,103,107,106,107,95,108,98,96,93,99,97,106,94,94,100,89,102,126,106,105,96,106,88,102,99,96,101,105,99,102,102,109,98,101,114,92,106,99,102,108,104,100,101,96,101,102,86,123,105,107,88,93,90,96,105,109,95,105,99,107,94,99,95,95,92,95,105,100,100,101,77,100,96,100,101,103,98,103,95,107,105,103,91,110,99,90,98,87,99,105,111,95,106,95,106,92,100,104,103,91,109,107,107,106,108,80,102,101,101,89,85,76,88,96,115,106,102,110,112,100,88,107,92,100,107,107,103,112,105,97,104,121,94,103,96,104,106,103,88,101,103,100,105,99,101,113,95,88,104,105,93,97,99,116,103,104,104,97,95,104,99,108,105,94,92,103,105,95,102,98,91,95,114,88,97,99,104,117,105,104,103,101,78,101,104,105,97,107,100,94,101,93,96,88,109,101,99,124,114,108,95,98,99,96,89,94,93,99,96,105,101,104,100,110,90,100,99,90,102,101,112,105,108,90,100,103,104,100,101,100,115,66,104,96,101,94,104,100,103,100,109,108,96,88,97,105,100,104,104,96,97,106,98,98,96,87,97,101,103,88,85,109,101,105,98,106,91,96,102,103,106,95,99,93,91,115,110,105,92,83,107,101,93,113,102,105,101,87,119,102,100,108,109,100,112,110,99,93,107,101,86,114,103,123,97,94,102,95,83,93,103,94,95,103,83,103,98,91,72,95,91,96,106,99,97,110,110,104,111,94,104,101,94,91,116,103,101,106,92,100,108,110,100,86,97,87,104,99,107,101,103,84,104,88,100,106,99,99,106,100,104,111,109,102,100,109,94,107,96,96,107,100,113,109,89,98,105,109,94,92,95,106,98,97,99,96,94,107,101,101,101,102,109,100,89,102,102,108,108,103,97,104,99,93,114,92,97,109,95,89,92,108,127,99,99,100,98,105,105,100,107,107,107,107,100,105,97,101,98,96,98,108,101,99,107,113,100,108,100,94,112,99,94,103,105,109,91,96,124,85,97,100,102,111,95,105,104,115,108,110,96,104,103,107,92,105,93,95,88,100,95,90,97,105,105,93,103,111,84,108,104,102,95,88,107,95,88,103,103,96,125,107,94,103,100,103,93,100,95,109,97,106,101,95,117,91,99,109,104,100,106,106,101,110,98,103,117,106,113,91,84,117,88,100,115,110,106,93,101,101,115,114,94,97,106,96,99,102,98,98,98,95,114,108,100,99,112,99,110,102,96,108,93,110,107,100,119,106,98,97,112,106,113,104,90,103,105,101,90,122,125,109,107,116,94,102,108,87,96,81,108,116,121,99,100,118,87,105,111,112,101,104,96,121,94,93,100,100,110,98,104,105,102,106,97,96,91,97,110,103,110,101,113,98,104,104,82,100,99,115,91,109,91,100,98,99,110,116,114,120,98,103,107,111,112,108,101,120,102,86,94,96,110,109,117,96,96,102,100,102,87,103,105,94,99,96,103,99,117,94,107,95,106,116,103,110,115,95,106,106,108,114,91,109,111,104,103,95,71,108,101,107,113,110,101,93,106,100,105,104,77,106,112,106,113,92,103,105,96,97,105,105,89,101,96,90,94,102,109,102,102,108,114,109,102,110,94,108,69,95,100,109,97,105,88,108,103,103,102,106,100,100,85,98,102,103,113,98,97,96,101,83,113,113,74,106,80,103,83,97,103,101,103,103,105,94,94,101,94,95,101,106,106,113,120,104,106,104,99,98,97,96,108,93,100,91,102,113,97,108,105,102,99,91,114,99,108,111,94,96,103,110,103,115,97,102,103,108,99,98,101,112,95,104,110,106,103,102,95,90,113,109,96,97,103,94,106,95,108,100,98,95,96,108,88,94,104,106,102,105,111,115,90,94,94,105,108,101,109,101,100,102,89,92,100,117,99,100,98,125,108,94,106,125,108,106,104,107,132,111,112,99,102,99,101,113,111,105,106,107,95,102,96,106,101,106,91,111,92,104,96,100,98,109,102,97,104,91,94,78,109,113,107,104,99,107,87,106,96,104,109,112,108,115,95,121,76,102,89,97,97,100,108,98,91,108,104,108,106,91,95,101,108,109,93,95,104,107,99,99,101,92,110,90,101,106,112,110,104,96,109,110,102,107,91,104,102,96,90,115,101,95,96,110,80,103,106,98,98,83,96,104,95,110,95,116,101,99,105,115,87,100,94,100,105,94,99,110,99,99,103,125,99,98,91,100,103,117,101,106,101,96,103,106,98,100,95,88,92,102,106,100,106,98,92,112,99,109,106,96,98,102,102,95,99,104,94,101,110,98,107,98,110,110,106,97,102,109,95,104,117,101,103,106,101,95,107,96,101,91,86,101,101,98,96,103,113,104,94,99,101,91,109,96,95,126,101,96,106,105,96,92,105,106,98,97,117,105,100,100,104,104,101,106,95,106,115,99,102,103,98,89,93,105,92,99,102,104,95,105,110,84,107,102,94,100,109,105,104,105,104,99,101,97,98,104,100,102,99,104,99,99,105,99,113,105,102,97,113,104,95,94,102,99,98,102,105,97,114,95,108,108,77,102,96,96,100,99,107,110,76,99,84,109,101,98,101,106,108,108,108,105,105,107,113,91,98,105,101,103,96,100,111,84,94,82,107,109,96,113,91,101,96,119,95,106,108,112,98,92,113,108,105,100,106,95,89,100,106,109,108,132,97,104,100,113,83,84,94,102,103,102,108,98,109,91,105,104,108,104,106,108,108,95,96,106,107,102,110,112,101,101,92,91,105,105,94,107,111,100,103,117,120,104,112,96,95,108,93,104,99,116,123,99,105,101,105,83,106,94,89,98,100,109,109,101,84,84,107,106,96,102,94,112,112,101,95,97,116,115,100,102,102,112,110,107,100,104,99,100,100,107,105,103,92,91,100,99,100,92,107,105,111,107,95,100,104,103,99,96,97,96,101,115,105,93,88,95,87,91,101,99,106,99,102,111,95,98,107,110,120,102,107,104,114,98,112,109,101,90,91,94,111,84,97,99,99,120,103,97,98,105,97,99,106,91,83,91,107,112,109,102,109,105,111,99,97,106,109,96,98,101,98,104,95,100,94,111,116,94,110,110,116,98,105,100,107,102,91,108,105,105,107,101,108,102,103,91,93,107,98,108,92,99,117,93,99,115,105,95,110,105,104,95,102,105,108,118,98,87,115,104,99,110,101,98,115,98,101,97,83,92,97,86,98,95,108,94,102,108,89,99,102,100,111,111,99,83,101,98,103,88,98,97,107,96,103,102,104,95,74,104,109,115,102,99,98,106,84,98,98,77,95,111,106,106,105,98,95, +679.35718,104,102,112,104,91,109,101,95,101,95,92,96,91,108,108,88,101,118,102,103,107,100,112,107,99,104,91,104,96,104,108,88,95,96,103,98,103,96,126,94,102,96,94,98,98,104,102,91,100,105,113,98,84,91,96,99,106,100,106,116,98,107,98,92,95,103,104,99,98,105,97,119,99,108,100,128,104,106,90,96,103,102,79,83,97,94,93,101,106,99,113,103,104,100,100,105,106,88,101,93,86,105,83,107,105,105,94,106,104,98,95,125,112,103,108,108,98,95,110,106,98,105,110,104,126,112,103,109,122,110,110,112,98,117,116,105,113,95,104,105,99,99,99,106,92,110,109,93,93,99,100,107,100,94,101,105,109,112,89,95,99,109,103,102,94,87,96,92,94,94,105,88,103,115,106,99,108,100,111,98,101,98,118,109,105,104,104,84,113,96,108,106,104,96,98,109,96,107,97,118,105,98,111,89,96,104,92,100,102,106,101,98,91,107,99,112,100,93,66,106,89,102,102,102,100,117,104,102,96,116,97,104,95,98,76,98,113,103,99,87,106,98,110,99,113,107,110,101,122,106,93,96,121,106,103,108,93,92,108,103,104,103,99,99,99,102,102,99,102,71,95,92,108,94,110,97,100,112,100,102,101,108,94,101,106,96,96,100,99,100,99,99,96,102,96,119,108,96,100,99,100,104,109,98,113,104,105,94,99,99,94,105,103,102,107,98,102,106,100,94,109,93,108,98,105,95,89,99,101,108,92,100,99,84,100,102,95,104,90,98,104,103,101,109,103,107,97,114,101,103,104,92,109,105,113,100,100,101,120,99,105,94,102,106,82,109,120,109,95,101,74,104,106,100,113,97,100,93,103,107,112,113,102,99,107,96,97,101,87,98,113,95,116,100,98,95,107,92,101,105,101,103,100,91,86,105,96,97,95,91,96,107,100,106,91,98,117,94,77,106,93,99,107,106,101,93,103,92,100,107,102,112,98,98,104,94,102,99,91,106,113,101,97,111,106,99,105,101,113,103,110,95,109,112,100,101,93,107,91,104,106,79,109,110,81,104,97,98,99,105,97,103,103,101,97,100,99,108,98,109,90,110,114,97,103,104,99,105,98,94,108,102,103,109,95,91,107,98,109,101,104,108,101,100,91,102,110,101,105,99,112,106,97,110,100,105,116,107,101,109,107,100,102,105,104,102,107,100,94,111,98,110,90,112,93,97,100,89,98,106,106,113,104,98,109,100,105,101,122,116,110,104,113,106,97,104,109,106,98,113,96,96,101,88,102,108,100,99,97,105,89,102,112,117,107,101,108,87,119,106,98,99,100,107,96,104,106,97,98,99,96,114,101,99,114,116,105,100,93,95,102,101,108,98,95,96,101,99,114,107,101,101,112,127,92,92,99,91,117,109,94,96,96,104,105,97,115,106,101,99,94,94,102,101,99,116,104,99,96,99,110,93,111,91,94,108,98,93,112,102,106,74,104,98,102,99,100,99,116,100,108,106,110,103,98,95,99,94,108,104,104,94,86,105,96,108,119,110,110,101,107,84,108,92,105,107,92,104,108,114,98,110,100,110,106,105,106,105,106,97,113,84,92,103,104,97,95,92,97,87,91,113,101,95,99,104,95,102,120,98,94,103,105,103,106,97,99,98,106,104,93,106,103,103,114,100,99,91,112,110,97,97,92,105,106,106,104,97,91,101,113,103,102,85,92,101,107,98,97,95,100,101,97,109,93,90,111,107,101,99,113,93,109,94,97,118,89,109,98,97,104,100,111,90,105,101,92,100,109,103,110,106,103,113,103,113,110,104,101,103,92,105,103,110,103,100,107,113,104,98,108,91,97,103,95,111,111,92,105,109,112,106,113,96,114,109,113,115,115,110,102,89,110,101,102,100,99,103,111,96,91,107,107,107,96,102,101,96,102,99,109,108,100,96,105,100,106,95,110,103,100,76,102,101,91,100,92,95,100,107,103,94,104,106,102,95,99,100,115,99,109,94,104,98,109,107,107,99,102,103,110,111,96,105,111,102,102,97,102,97,93,106,109,86,113,84,95,98,92,104,111,109,102,113,108,106,85,108,102,105,104,110,96,105,110,95,98,97,95,106,106,109,99,103,96,101,90,99,86,96,110,100,91,101,98,99,106,115,97,99,107,106,105,102,113,112,95,106,109,104,104,110,102,96,99,102,104,93,87,105,91,94,94,101,86,104,97,99,105,110,112,102,101,105,99,100,97,102,94,96,86,102,103,105,99,91,103,96,105,95,111,87,94,102,106,95,92,86,106,98,90,97,100,114,98,116,122,110,106,111,95,96,112,93,104,104,96,102,96,101,108,99,116,100,121,99,102,112,109,103,98,109,101,98,98,95,100,97,103,104,107,114,95,104,106,112,92,96,111,101,95,105,90,94,97,94,91,99,99,69,93,109,90,107,116,104,101,95,88,107,101,101,95,98,98,111,108,108,103,117,87,108,101,98,105,111,99,102,103,98,99,98,104,104,94,111,94,103,95,103,105,96,101,84,107,97,96,105,91,98,97,100,95,93,109,79,102,102,109,98,93,98,103,98,102,93,94,96,105,87,99,83,95,103,103,91,99,97,102,95,102,99,101,100,124,90,108,97,92,106,106,114,106,99,108,107,88,79,101,102,103,92,104,94,108,103,95,98,112,101,98,84,92,113,105,93,92,105,93,105,102,101,100,116,102,110,100,88,117,122,95,99,103,97,97,106,102,100,92,102,101,106,95,92,97,101,118,108,106,105,102,105,102,126,105,95,86,101,97,106,98,102,98,90,93,107,101,99,110,108,109,108,108,95,98,106,85,106,97,99,106,104,100,98,94,105,91,102,99,104,110,98,95,98,99,89,100,104,89,99,104,103,99,96,96,105,96,106,98,99,100,94,103,95,99,101,89,94,107,97,85,92,91,94,112,100,99,95,105,92,94,102,102,97,110,100,95,108,102,101,84,112,97,102,111,100,106,101,99,94,99,94,107,100,108,92,107,104,87,102,99,96,88,111,105,98,95,107,92,98,94,93,105,87,101,107,95,88,98,106,101,112,111,104,97,96,107,99,100,111,102,96,102,96,92,95,107,94,99,104,113,90,105,109,115,103,127,113,109,96,90,94,91,99,93,74,106,110,93,113,100,97,99,94,103,106,88,99,116,109,105,100,88,102,98,105,101,95,107,105,103,84,98,94,108,94,97,101,105,106,100,97,91,95,97,102,90,105,99,95,104,89,83,94,105,91,106,107,95,93,99,92,102,109,98,96,94,94,99,99,113,105,109,109,106,101,105,106,94,101,96,109,106,105,99,112,96,101,103,83,90,105,106,113,96,94,113,95,95,89,83,102,98,98,103,106,108,107,101,103,110,105,96,113,97,100,88,101,104,97,84,123,99,101,84,96,105,93,93,101,101,90,101,95,96,91,107,98,104,93,93,138,93,105,91,101,102,104,105,103,104,105,109,94,116,101,98,102,106,87,96,105,96,99,98,101,101,102,98,91,98,108,100,105,95,101,106,103,89,100,99,91,105,103,92,102,113,99,90,98,107,100,115,87,103,123,93,105,92,91,89,110,103,101,105,96,101,81,102,106,95,106,69,98,99,104,92,102,98,106,99,97,100,110,97,99,105,96,98,100,92,98,96,101,91,102,85,103,98,141,102,102,110,103,87,94,107,107,95,87,100,94,100,115,95,104,96,117,95,71,91,85,99,68,88,100,104,92,99,98,106,102,102,98,102,93,101,100,100,87,109,92,105,100,104,105,102,105,95,109,96,99,96,101,101,96,107,105,105,96,102,104,113,98,104,98,104,105,99,102,101,108,107,94,103,90,101,92,104,108,100,101,102,104,111,102,93,108,97,88,101,91,101,91,115,88,103,100,81,102,108,111,109,95,106,95,105,91,114,91,84,89,91,96,104,98,98,93,110,105,104,97,97,110,72,106,94,95,83,102,104,105,96,110,98,80,91,97,92,92,98,106,96,114,100,94,95,92,109,110,109,96,95,97,96,101,109,104,97,99,98,102,83,97,96,110,92,104,132,81,110,102,94,98,102,101,85,101,100,98,80,111,95,94,100,107,87,95,98,93,103,99,103,104,138,123,98,95,102,107,101,94,100,104,102,108,106,102,97,89,126,101,101,100,98,91,106,100,88,93,94,102,100,96,107,97,86,85,105,112,90,92,107,100,98,100,97,97,92,94,101,110,95,95,92,109,106,96,106,93,97,94,116,96,99,101,94,98,91,105,94,96,102,112,101,91,105,98,94,110,84,101,103,111,98,99,103,102,99,108,94,104,104,87,108,95,113,101,76,99,99,74,116,94,104,102,104,101,87,99,106,98,98,105,105,107,105,105,98,107,109,113,95,108,98,101,99,90,106,83,93,105,91,97,94,103,98,98,86,103,100,105,83,99,97,95,104,111,98,101,120,106,94,93,89,94,100,101,95,101,93,89,100,96,120,97,102,107,100,99,99,107,100,97,96,109,98,97,100,106,75,109,95,91,94,108,104,97,105,98,97,101,109,103,92,107,100,101,101,100,65,96,105,101,101,96,102,103,100,112,98,92,95,97,103,114,96,106,102,100,99,102,104,98,94,104,100,112,101,80,95,101,96,89,106,107,143,108,94,109,96,105,100,104,106,94,99,104,101,103,102,96,96,93,100,113,97,111,105,92,99,102,110,90,87,95,94,99,118,121,101,96,94,98,92,99,112,105,102,102,104,97,97,92,101,101,93,103,111,104,118,105,90,107,93,87,95,97,103,99,86,103,98,98,98,104,98,100,94,105,102,84,99,98,101,111,92,102,95,94,93,99,111,112,101,111,90,115,101,87,91,95,101,108,95,99,109,105,95,84,95,103,101,103,113,98,104,100,103,110, +679.49847,108,108,92,99,87,82,102,83,98,106,91,129,96,89,124,89,107,97,80,100,104,107,95,118,74,95,95,102,100,98,106,102,91,96,91,97,94,100,99,103,102,93,101,114,90,104,96,116,90,108,100,100,91,89,101,95,104,96,109,107,99,109,97,93,111,108,91,117,96,92,107,94,93,102,99,115,99,97,102,91,93,86,79,117,91,103,97,90,106,83,114,105,88,112,93,95,81,101,96,96,93,101,93,90,102,104,106,99,103,109,102,82,101,104,92,92,92,103,97,92,113,96,101,104,95,108,105,98,103,94,95,79,103,107,101,103,99,98,101,95,91,99,97,128,95,92,106,102,95,109,94,94,106,97,114,95,91,107,109,92,96,109,98,124,113,97,101,103,91,97,98,106,93,92,103,95,104,97,117,101,98,105,103,97,103,89,106,97,113,86,86,100,109,109,91,107,94,106,105,98,96,97,105,101,99,94,111,104,115,101,83,104,105,92,100,95,92,101,103,93,102,105,90,101,99,89,115,98,99,113,96,90,113,102,95,107,108,104,89,89,98,89,95,91,98,95,99,106,88,106,99,95,86,101,103,96,105,108,100,98,88,84,116,103,98,101,85,98,97,96,103,90,99,98,97,90,96,98,104,92,100,96,107,94,89,97,94,97,95,91,95,100,117,92,95,108,96,93,109,100,96,101,100,109,89,97,107,93,98,87,94,113,97,105,103,112,90,96,95,100,99,110,97,101,94,95,78,91,119,102,109,96,96,101,101,107,91,95,89,105,100,98,119,104,97,104,107,98,103,107,100,106,103,97,103,91,92,96,106,97,114,84,98,98,100,93,103,101,107,99,94,98,99,92,108,100,97,93,107,67,102,92,100,114,97,110,95,102,114,97,127,95,98,100,101,95,94,104,102,96,94,106,112,91,94,95,100,105,103,105,88,96,97,99,91,105,97,102,91,99,94,103,75,106,106,101,110,97,101,98,88,108,105,90,96,86,96,100,99,92,92,102,117,109,99,99,85,99,105,103,96,96,87,108,115,101,99,98,106,95,101,104,93,131,107,103,94,103,105,92,101,112,100,94,91,94,98,92,98,104,101,96,107,101,107,104,99,103,95,96,91,105,95,99,93,96,96,65,97,99,98,112,100,95,98,106,92,98,98,96,107,99,100,107,115,104,113,92,106,102,101,78,100,102,99,108,111,106,107,103,92,94,93,100,96,95,94,109,110,101,100,96,102,107,103,101,110,90,90,105,107,107,94,91,103,107,91,110,109,108,105,100,97,107,105,100,95,104,101,90,97,102,98,93,107,98,98,101,109,116,100,96,94,102,98,105,103,105,103,101,116,95,92,94,92,96,102,84,122,100,89,96,95,86,102,101,96,93,108,107,100,108,105,103,92,92,98,97,93,101,98,110,93,91,105,94,98,95,119,95,93,105,95,101,100,99,89,92,106,93,99,106,104,96,112,95,103,100,109,102,103,102,97,68,97,102,108,100,100,99,110,102,98,110,89,78,95,98,105,106,99,119,97,98,111,89,119,108,112,95,97,96,105,96,100,93,109,100,104,110,104,95,88,107,100,97,107,114,103,83,88,93,102,99,78,98,100,94,91,97,97,98,103,114,97,72,102,108,101,99,102,101,113,101,96,101,106,95,96,98,106,93,94,68,91,97,101,105,95,101,109,118,111,107,99,97,121,97,92,93,96,91,95,93,103,82,109,96,90,102,112,100,94,98,82,116,89,109,112,92,96,92,105,99,101,106,103,95,92,108,93,93,112,106,104,97,113,103,102,108,100,92,93,100,99,103,89,102,104,96,96,100,110,95,126,89,107,93,94,110,101,94,104,78,98,97,108,108,90,105,105,103,108,106,92,106,110,89,84,91,101,101,99,100,100,109,112,97,98,97,100,124,91,104,87,87,110,95,101,96,98,100,105,89,109,93,99,96,92,103,102,104,112,107,97,104,87,98,100,100,102,97,89,106,92,102,111,92,80,110,95,60,92,93,90,108,101,92,101,110,95,99,94,108,102,100,90,103,111,106,108,104,110,94,97,94,110,96,94,94,111,102,97,102,94,99,96,101,95,100,101,99,102,106,89,96,102,106,99,95,95,88,98,110,89,96,104,102,101,103,87,101,93,99,110,102,99,107,95,112,106,97,103,97,101,110,103,107,86,90,91,94,88,95,116,87,97,105,108,110,93,101,85,92,89,114,95,85,89,92,102,118,99,103,78,75,93,100,112,73,104,102,97,108,76,96,95,110,97,104,93,92,96,100,88,97,104,102,95,113,92,108,111,102,95,100,106,110,91,84,113,79,105,87,96,107,87,108,74,94,85,126,114,97,103,93,100,103,100,109,116,101,99,93,125,114,103,96,101,98,106,114,92,97,114,101,101,102,104,90,86,100,91,113,97,101,97,93,91,85,94,104,98,99,97,95,118,103,79,88,103,122,101,116,106,95,114,83,98,99,105,100,94,96,95,100,106,85,101,100,106,93,103,86,104,109,103,97,100,108,106,96,116,104,112,98,105,104,112,93,105,98,109,92,89,120,105,91,110,114,102,96,112,85,96,135,108,107,106,96,92,92,102,105,105,84,109,91,105,87,115,109,98,100,105,104,116,96,96,108,113,95,98,97,107,113,110,90,85,104,102,98,86,100,105,108,95,96,113,97,109,106,100,109,97,110,107,99,101,99,100,107,103,108,142,104,108,93,92,111,106,96,99,103,102,114,115,113,102,102,99,109,104,97,105,112,96,98,106,95,101,106,104,94,103,95,106,111,110,95,82,105,96,111,94,113,100,103,107,103,103,102,111,84,98,109,109,94,101,103,100,100,102,117,106,96,103,101,105,109,102,90,119,109,100,99,102,103,99,112,102,106,104,102,108,90,100,79,100,109,100,93,111,109,110,114,92,105,106,100,106,91,108,87,98,111,98,138,100,98,101,83,104,113,99,98,83,104,105,96,66,110,108,103,102,102,112,99,123,114,104,102,104,100,109,99,91,119,99,80,62,97,106,100,97,98,98,98,95,107,97,98,112,112,99,105,117,109,104,97,86,101,101,95,95,107,100,102,95,105,94,114,104,100,90,108,86,96,96,102,98,86,100,98,107,99,100,100,106,100,95,90,103,95,95,89,93,105,108,98,91,108,112,103,104,90,94,99,106,109,106,103,98,91,94,105,103,109,107,105,95,103,116,100,111,100,110,104,104,99,98,110,105,83,91,102,109,102,105,111,94,100,95,89,102,94,98,108,97,105,107,100,96,111,93,86,109,102,108,102,84,99,113,109,97,107,98,75,105,97,102,108,99,95,106,90,92,95,85,100,102,103,98,111,97,100,100,107,117,110,105,109,102,92,101,104,91,109,98,100,98,100,96,107,103,117,76,104,110,100,109,113,100,98,100,92,105,103,104,99,95,102,103,86,95,106,117,109,99,98,100,93,94,105,102,104,111,103,95,108,116,106,106,98,102,102,94,93,111,114,99,106,106,103,98,98,103,103,112,104,108,92,107,105,93,99,101,97,96,113,98,107,106,97,110,103,106,103,105,113,103,94,101,99,101,106,103,99,88,87,101,108,108,104,83,115,109,88,99,105,101,96,98,111,109,87,106,99,107,84,96,96,103,109,99,107,98,101,91,92,96,104,100,103,105,107,106,94,113,101,93,111,94,104,94,101,94,87,100,103,95,93,106,106,105,95,114,103,109,113,98,100,101,97,113,103,96,106,113,102,91,94,91,88,103,103,115,105,95,107,99,96,98,102,90,105,95,92,103,101,93,103,109,111,95,91,91,103,90,81,106,115,102,119,94,102,71,87,101,97,91,110,87,98,82,98,114,88,112,106,105,105,102,106,104,91,98,106,104,99,122,105,91,103,89,110,108,94,93,100,98,105,74,101,106,89,107,97,105,93,115,83,115,105,106,97,101,101,95,70,99,107,96,123,106,99,96,108,94,102,96,110,105,104,103,99,104,101,101,106,101,111,91,73,105,73,94,104,112,106,104,109,110,100,97,105,104,102,90,93,104,102,105,109,98,102,106,104,109,95,101,114,108,96,103,99,95,98,98,99,102,112,96,107,100,109,119,99,73,108,102,96,110,107,103,102,105,99,104,102,108,96,95,109,92,109,98,117,112,105,88,104,115,101,109,93,98,96,98,99,103,103,116,104,108,93,96,94,121,96,101,101,106,109,101,106,100,97,113,95,109,103,96,105,103,100,106,102,91,95,120,94,105,105,106,109,103,104,102,101,101,95,106,96,94,102,98,106,105,94,95,101,105,94,102,97,91,109,102,107,91,94,110,107,99,97,103,109,89,96,117,107,108,93,91,104,111,76,105,101,95,90,114,112,98,95,102,104,98,96,95,105,100,105,96,116,92,96,95,91,118,94,95,117,97,105,80,93,92,100,103,98,92,98,100,88,104,96,103,102,102,111,103,110,103,96,121,107,102,111,97,87,94,97,96,90,119,102,96,94,90,97,84,117,105,97,83,103,88,96,110,96,101,104,109,101,103,121,104,108,95,99,101,103,108,109,119,96,91,97,98,96,113,105,106,100,97,98,100,95,86,96,105,105,100,104,99,92,105,115,97,94,96,99,104,113,111,99,107,98,104,111,103,106,96,108,100,100,102,97,97,105,105,95,99,111,94,94,93,99,110,98,106,104,102,97,102,104,86,94,114,77,112,101,101,103,105,109,95,87,85,105,100,101,93,95,103,99,90,92,103,103,93,94,107,98,104,110,96,110,84,104,91,104,98,99,101,117,101,116,111,114,109,99,100,98,108,92,98,114,106,106,107,102,113,108,93,88,87,100,106,120,93,94,92,101,87,100,99,99,88,104,102,106,113,113,92,94,103,101,87,99,102,95,112,103,95,96,95,87, +679.63971,97,101,91,101,95,109,96,106,95,110,108,101,106,89,104,104,100,98,106,119,97,106,102,99,99,90,100,94,109,87,89,91,95,99,121,105,115,98,95,103,97,105,100,104,98,92,87,102,100,111,115,100,77,104,117,94,90,102,97,92,92,109,94,105,108,102,86,108,106,91,84,110,96,99,106,116,110,99,93,115,116,100,79,88,83,100,107,109,107,107,104,111,97,111,96,106,96,99,106,116,96,98,97,95,98,97,109,96,103,93,98,119,112,97,86,102,102,105,99,105,98,102,104,105,106,94,113,90,101,99,116,99,96,96,110,108,94,102,95,82,104,104,98,97,108,97,97,100,106,99,104,98,102,87,107,98,94,109,112,110,118,106,112,100,104,108,95,99,104,120,98,97,97,104,102,108,97,95,107,105,106,110,100,102,96,94,106,105,101,103,101,102,100,106,97,104,92,106,104,100,92,107,94,108,101,102,103,96,105,100,93,113,98,108,105,96,91,100,97,102,101,101,100,101,98,108,91,105,99,91,110,100,104,117,102,107,95,103,90,96,116,101,100,108,99,96,108,99,104,86,90,101,96,102,102,100,107,96,97,114,103,108,84,95,97,103,103,98,95,99,99,98,99,98,93,110,107,100,106,101,91,94,99,102,112,99,90,101,100,96,99,99,103,102,104,114,102,101,104,86,92,96,97,114,84,108,90,108,106,105,105,117,95,101,101,101,95,104,100,103,96,102,100,106,103,106,103,92,113,108,93,96,111,117,88,107,94,104,112,97,95,98,101,97,105,109,103,105,103,106,107,108,126,101,90,121,105,100,106,96,91,94,107,103,104,99,99,102,106,97,103,99,98,101,99,99,106,103,88,91,99,105,94,102,106,91,100,98,91,103,103,92,86,114,99,91,107,94,99,114,99,96,92,100,102,87,102,118,98,106,94,89,101,107,102,91,106,105,95,97,98,94,90,101,99,91,103,87,96,99,93,104,95,100,91,108,92,98,99,99,105,99,91,97,98,98,98,98,99,102,113,109,95,109,105,100,98,105,111,96,97,103,94,105,90,95,96,93,107,107,101,113,100,98,100,93,95,105,100,105,96,113,105,93,104,107,100,105,97,99,123,113,101,95,91,101,110,101,100,112,101,110,96,103,113,105,105,103,114,100,112,104,104,107,93,114,98,110,97,93,99,76,97,96,97,108,105,107,110,113,99,103,93,99,104,116,105,101,102,92,102,110,88,92,100,102,107,117,91,105,77,103,105,105,102,95,103,76,108,105,98,108,104,97,109,98,109,118,96,96,107,91,91,100,102,103,83,93,92,111,95,106,114,107,112,96,97,99,91,91,94,102,109,90,115,106,98,105,108,102,105,96,79,102,93,91,94,97,101,94,101,95,122,94,98,104,87,108,102,93,94,102,97,99,82,93,88,114,108,106,101,109,104,91,94,106,87,94,90,104,102,131,101,108,95,97,80,95,100,98,95,95,97,91,99,99,89,100,91,100,130,114,111,103,99,103,109,71,98,99,103,122,110,106,97,107,94,95,95,105,107,103,111,97,101,97,101,101,99,100,109,108,102,94,106,99,93,102,107,116,100,98,102,103,110,99,101,96,109,105,106,109,98,103,114,81,85,100,103,103,105,96,90,101,94,96,100,84,110,103,94,104,94,104,100,110,97,98,110,97,100,109,97,102,107,94,97,97,97,96,98,98,104,97,101,109,95,78,99,106,106,99,96,98,89,99,102,98,97,100,97,91,101,109,109,106,88,94,94,86,94,94,99,92,94,103,102,101,107,108,107,99,102,83,106,95,96,97,104,95,86,97,107,96,102,99,104,96,97,111,96,100,97,95,114,100,107,107,99,91,100,99,101,105,110,104,117,87,111,96,102,100,97,97,104,100,107,104,94,97,89,96,99,118,106,108,99,89,95,97,112,104,95,104,101,102,101,107,114,106,98,94,105,104,101,98,101,97,102,103,110,95,95,105,104,104,105,108,104,112,101,105,92,104,107,109,98,105,93,109,108,105,98,100,99,98,105,110,97,99,93,111,102,102,101,106,102,93,95,105,96,96,92,98,103,99,96,100,97,101,94,105,105,99,94,96,108,104,109,96,103,93,104,100,99,105,121,92,106,104,95,106,105,99,88,96,92,117,109,100,93,107,99,102,106,98,103,100,98,91,99,95,92,105,118,90,76,91,99,102,79,95,107,96,92,115,95,97,92,100,94,108,101,108,106,98,100,104,87,99,115,106,96,97,100,98,103,94,105,102,94,97,106,91,100,91,109,101,91,100,85,98,112,101,87,110,94,102,99,104,107,108,99,104,86,88,104,108,110,110,104,101,101,97,88,94,100,109,101,104,94,82,98,104,115,118,106,101,105,101,105,104,107,97,86,98,100,97,104,96,96,103,99,98,94,108,98,98,83,100,100,100,97,95,101,103,101,98,100,102,107,96,107,105,112,102,105,97,98,102,96,106,117,103,102,106,95,98,106,95,108,99,105,104,110,108,119,99,100,100,97,98,116,105,102,106,102,108,96,105,126,102,130,109,103,103,108,108,132,109,99,113,98,87,102,98,100,110,81,99,109,110,98,104,96,97,104,114,108,95,111,99,102,96,102,87,100,94,101,99,109,113,98,102,110,99,113,91,96,100,85,103,105,112,102,107,105,102,100,99,106,101,99,97,105,109,112,103,89,105,90,99,105,105,100,101,110,104,105,113,111,103,115,99,106,106,107,102,99,107,96,99,102,103,95,95,90,95,99,119,113,105,92,91,99,102,101,100,97,98,100,108,87,127,102,97,107,104,107,132,102,110,98,107,97,95,103,97,98,108,106,91,100,103,107,81,94,108,91,98,103,100,114,97,111,103,101,107,101,124,87,93,92,107,99,102,102,116,115,110,102,110,103,104,109,99,107,100,107,95,101,114,115,115,94,105,102,95,109,105,109,112,105,104,104,105,101,106,94,111,101,101,94,93,97,113,106,100,99,96,113,100,98,109,103,121,107,98,98,101,115,94,104,99,111,113,103,87,100,102,106,97,101,86,103,113,95,102,105,124,110,110,110,94,91,101,103,102,98,95,103,108,112,102,102,104,106,85,98,110,87,98,116,97,102,95,102,106,96,107,94,96,113,95,101,95,94,103,102,113,101,102,102,100,97,120,117,83,95,101,107,94,105,93,96,105,110,101,104,109,101,102,95,114,104,95,85,90,96,102,106,101,108,95,105,96,105,91,113,99,108,97,117,112,107,92,113,106,100,121,98,108,100,102,109,99,113,100,106,91,104,93,100,86,123,96,105,103,90,96,98,100,95,96,105,99,106,107,92,102,95,101,104,98,106,105,101,108,108,108,96,111,100,90,105,100,111,109,114,75,104,110,89,112,89,108,91,93,101,103,101,99,93,98,105,113,96,96,96,93,105,98,102,94,98,100,112,101,98,94,97,103,102,94,124,90,86,109,100,89,109,104,92,100,101,74,98,112,102,109,100,93,110,105,110,112,101,107,107,101,99,114,109,107,98,89,106,119,102,103,99,96,96,113,109,98,97,92,105,103,108,92,106,104,100,104,108,108,90,108,101,87,112,97,91,94,104,112,93,107,98,110,107,97,111,101,100,105,99,108,101,106,102,104,101,100,108,98,113,94,101,99,99,100,117,106,108,102,106,104,97,107,104,103,98,101,115,120,103,103,102,91,104,100,108,90,93,100,115,100,103,106,92,100,120,105,99,105,106,99,100,101,96,94,97,106,96,92,99,100,98,104,101,96,105,103,109,96,102,114,95,103,118,108,106,99,102,103,93,92,106,109,98,90,102,108,111,96,97,126,97,98,99,93,101,128,102,100,97,98,101,118,109,113,99,98,102,107,106,107,103,105,101,98,99,97,96,100,102,96,97,99,91,105,101,103,117,101,107,110,97,110,100,103,108,115,99,102,103,106,107,80,100,115,109,105,113,117,96,93,102,109,98,99,100,94,102,113,97,105,106,101,113,99,111,98,108,94,96,107,96,88,102,111,84,103,110,99,107,95,98,94,98,90,107,112,108,93,103,99,95,93,102,107,105,104,92,98,95,110,114,116,107,92,101,105,94,93,96,107,92,103,99,104,108,103,96,98,98,110,110,103,102,111,89,91,104,110,102,104,105,105,100,100,84,108,100,100,96,103,104,103,96,105,98,107,98,105,105,103,94,102,108,106,94,97,113,96,103,105,103,95,101,99,111,95,116,101,110,87,93,95,111,103,102,102,103,71,100,106,108,96,109,103,95,105,102,106,95,100,103,98,103,101,98,113,99,101,102,105,97,103,103,105,108,104,110,110,99,100,112,100,101,106,105,97,105,106,111,85,103,104,97,113,112,108,111,90,112,93,107,103,105,104,103,99,107,98,129,91,80,94,98,96,104,98,98,101,104,98,104,108,105,97,93,113,98,94,98,90,97,125,96,101,104,98,102,102,101,103,92,89,102,95,93,100,97,90,108,95,88,96,98,113,113,99,108,69,113,84,85,116,109,106,99,103,117,105,99,102,116,100,95,96,88,129,99,76,94,106,97,98,106,105,101,94,93,117,81,96,108,112,98,100,111,119,129,99,97,90,98,95,89,108,96,96,98,96,109,99,106,106,103,87,107,100,103,90,113,109,94,98,104,105,91,110,108,93,96,97,105,102,100,97,92,97,102,121,88,94,106,102,80,111,96,111,108,105,105,102,102,115,94,95,109,90,114,101,107,113,97,98,98,100,99,97,91,115,97,105,84,98,97,107,100,106,110,100,92,79,88,98,124,85,103,117,103,103,99,99,103,94,110,99,99,103,105,98,106,100,106,105,120,109,90,115,102,108,107,100,100,113,94,95,92,105,104,105,100,121,111,97,89,92,103,93,99,100,102,93, +679.78101,109,93,108,99,95,121,118,95,98,92,97,99,98,99,103,98,96,108,100,102,98,90,92,105,103,102,96,107,89,110,96,95,98,97,112,86,91,98,101,99,92,94,103,108,102,110,110,118,93,101,92,101,109,92,104,92,95,116,99,80,108,95,100,85,108,100,94,96,96,98,98,99,89,91,95,114,105,92,99,114,97,112,100,109,98,99,104,114,91,104,91,102,102,109,94,100,110,94,97,107,104,95,104,123,98,110,90,105,95,99,97,103,105,95,105,99,105,111,99,107,105,100,104,99,118,104,105,98,96,97,105,103,90,101,105,92,109,102,100,95,108,95,88,93,96,97,94,102,100,100,96,78,105,96,95,96,96,102,109,112,85,92,84,93,100,98,93,97,109,92,112,103,98,101,108,106,104,77,94,100,100,99,99,104,91,108,85,96,93,96,97,108,96,98,108,93,99,102,99,101,111,108,112,99,93,115,108,100,102,109,104,101,106,101,82,94,105,96,104,112,114,109,97,90,103,96,94,105,102,100,94,103,91,98,91,98,94,98,86,107,105,102,111,101,110,105,96,110,100,105,103,99,99,92,96,95,95,109,102,104,99,105,94,97,101,104,110,113,94,95,103,107,96,96,98,93,88,109,100,101,102,96,105,92,101,110,93,96,115,109,95,98,118,100,92,103,108,91,107,93,111,106,99,102,87,104,97,108,100,108,96,116,105,92,100,104,92,106,108,110,110,90,105,103,103,104,97,89,99,120,112,100,108,91,94,105,105,101,107,117,100,97,100,104,93,91,99,97,100,121,105,121,101,98,86,95,105,101,113,99,100,102,104,109,94,113,110,109,82,95,102,105,99,103,100,110,102,94,110,108,105,99,92,101,111,99,98,108,109,110,93,88,107,112,129,85,98,98,92,102,102,114,112,96,107,72,87,104,95,110,101,108,101,101,108,100,99,95,92,107,99,97,112,104,91,90,103,102,90,104,111,121,109,94,125,104,102,107,97,93,110,100,106,100,86,94,108,94,103,99,84,102,109,105,95,96,99,100,103,113,91,107,104,105,109,92,103,112,100,100,111,78,101,105,103,101,105,95,117,109,100,107,109,91,99,98,93,103,91,97,100,111,100,104,91,107,91,100,106,94,136,96,105,97,100,101,87,114,104,100,110,101,87,99,98,91,94,90,112,101,98,85,97,115,96,107,107,101,96,99,113,100,98,100,93,100,112,102,106,110,112,93,99,95,109,117,92,95,111,102,84,99,92,110,97,100,91,96,103,94,96,89,100,93,99,97,95,103,102,101,127,104,105,95,91,110,113,90,99,109,100,93,99,105,102,105,104,100,98,104,103,105,101,98,133,100,111,98,95,106,99,104,105,104,105,104,90,107,103,106,105,102,90,91,115,101,96,105,107,96,105,98,104,101,97,102,98,89,105,104,90,101,104,96,93,106,84,96,104,91,98,106,87,105,95,93,89,98,102,97,102,101,94,95,107,103,108,103,102,122,109,108,97,91,98,99,98,105,107,99,108,106,97,101,88,96,89,106,112,95,99,99,109,103,92,93,96,106,110,115,107,100,107,106,111,109,101,101,80,101,95,116,101,98,94,81,95,105,97,102,99,99,109,97,95,99,108,100,95,97,108,93,103,108,104,98,72,113,95,100,102,117,104,85,100,89,105,103,95,91,106,95,100,98,96,113,97,105,94,90,121,94,109,103,101,88,92,97,106,96,98,96,89,104,97,103,102,108,107,99,96,102,109,85,107,102,99,109,104,113,104,94,106,105,105,93,107,104,101,104,110,80,106,100,106,100,98,107,102,104,93,100,96,103,100,104,95,81,103,96,101,109,101,98,96,91,96,94,104,104,111,109,105,114,92,109,89,102,91,98,109,102,109,101,97,107,96,102,100,96,99,97,97,102,98,101,94,100,100,98,103,100,101,103,89,99,100,102,88,94,102,80,90,106,90,97,95,108,110,108,105,98,98,102,114,103,108,103,103,111,100,97,111,114,107,105,102,95,95,99,95,98,103,94,110,94,108,107,99,110,95,108,109,103,107,102,114,99,100,101,105,95,95,97,103,104,96,104,108,97,102,104,104,93,111,104,105,97,106,93,91,97,105,110,102,103,90,99,100,91,97,89,73,109,100,104,97,102,95,103,128,100,105,110,102,106,78,105,99,97,96,98,102,93,107,100,104,114,92,113,102,113,106,97,86,96,102,108,102,105,101,95,94,97,95,101,97,86,100,99,103,103,101,99,91,111,109,86,90,105,103,98,99,105,113,97,94,94,94,92,95,109,107,113,102,108,101,102,102,92,112,103,108,92,108,98,97,111,111,90,109,103,91,96,103,109,113,105,101,128,101,106,110,106,101,100,103,104,99,90,95,106,91,103,101,111,95,102,94,95,102,97,95,113,90,95,91,99,94,90,96,100,96,111,98,105,104,93,101,95,90,100,96,108,92,100,94,81,102,101,109,105,89,96,102,95,107,98,90,115,98,96,111,109,105,102,71,115,106,75,103,125,96,109,100,104,107,98,87,101,110,104,101,89,99,105,100,100,102,117,101,108,106,109,111,102,102,104,99,111,106,99,98,109,103,93,78,98,102,92,97,94,100,108,105,117,107,100,107,98,110,93,106,92,105,114,103,100,107,93,98,101,108,106,102,104,97,101,108,109,107,107,88,98,108,98,100,103,113,96,104,97,99,103,105,98,111,100,94,99,99,91,107,111,108,113,97,105,114,107,99,101,106,95,93,117,97,95,115,93,105,109,96,108,98,108,101,107,93,105,97,103,104,93,95,105,103,117,96,105,115,94,99,108,100,95,121,106,111,95,111,116,99,95,70,101,109,95,91,108,109,111,92,105,104,105,97,92,83,91,104,103,89,107,103,96,102,105,98,102,109,113,101,99,93,100,97,106,96,101,100,84,111,104,102,93,115,97,103,105,104,91,102,98,99,98,107,106,95,107,114,89,97,96,108,134,115,106,105,101,103,89,97,98,101,100,93,94,111,88,97,96,89,98,100,109,99,111,112,105,81,103,102,98,97,98,111,101,106,96,98,91,109,106,99,99,109,97,91,102,112,112,101,109,110,99,107,97,94,95,106,101,102,114,115,99,91,101,99,93,99,109,108,108,99,104,91,98,117,107,106,102,107,100,112,101,95,102,96,95,108,102,96,110,93,96,93,114,103,109,97,98,108,93,103,76,75,113,114,117,120,103,94,92,98,104,104,101,108,82,95,118,106,110,100,100,96,109,96,104,103,100,105,92,92,113,100,93,111,109,101,101,118,100,99,86,103,113,102,95,97,90,117,97,111,115,86,103,105,101,75,98,103,112,95,106,101,117,103,98,101,102,105,109,95,97,116,113,100,83,105,96,94,102,98,95,98,101,93,102,95,103,102,105,99,100,111,111,106,98,107,112,101,102,105,91,95,93,100,98,110,118,108,97,99,100,96,95,104,104,109,108,98,97,101,95,77,102,117,99,101,99,107,105,94,97,113,95,100,110,111,111,95,100,92,97,102,106,105,106,109,95,103,79,110,96,108,107,114,98,110,87,95,107,131,115,105,95,98,94,83,100,98,106,102,102,111,108,105,108,102,109,114,103,99,97,111,107,103,109,91,99,102,87,104,98,99,103,112,98,85,98,103,104,102,97,106,106,107,107,95,103,106,110,122,94,104,95,97,103,108,104,108,138,95,98,108,97,108,106,99,98,107,104,106,107,94,90,110,107,99,102,103,98,108,102,109,98,97,103,97,92,97,91,116,105,118,101,109,104,109,115,98,106,110,96,117,116,87,68,105,99,103,110,88,107,107,76,95,101,102,113,100,93,108,103,107,107,99,97,100,105,98,102,107,98,103,109,93,101,103,106,112,101,116,113,106,105,101,93,98,102,95,104,102,107,119,95,113,113,98,100,94,103,100,97,98,103,102,107,98,107,103,104,94,108,104,104,95,99,103,96,114,95,97,94,96,91,115,106,107,77,104,100,107,103,100,105,104,98,109,98,109,96,87,92,109,92,101,102,101,104,99,104,99,105,101,107,111,109,98,92,98,111,102,91,109,119,103,104,106,103,103,106,112,102,96,95,95,91,85,86,99,101,101,124,103,114,103,94,101,92,93,125,120,98,110,100,113,106,100,96,102,97,113,137,112,106,102,102,103,101,110,106,99,109,101,108,94,107,116,108,105,103,107,105,108,107,105,103,106,90,100,99,103,97,112,105,105,101,102,104,107,106,94,99,102,108,102,99,107,107,104,103,107,99,95,109,91,98,100,108,97,118,103,107,97,102,105,112,103,101,103,98,103,93,103,86,106,99,112,92,96,106,104,131,122,96,101,103,102,93,113,103,97,97,105,94,105,105,101,96,106,109,104,101,107,112,107,100,96,102,101,96,91,102,92,116,93,101,106,92,81,95,113,100,110,105,98,102,112,106,111,104,117,107,107,95,104,103,104,99,95,94,106,108,104,99,97,107,83,95,94,108,103,86,97,97,106,102,98,101,82,101,95,102,92,123,106,97,100,124,107,110,105,111,107,111,98,70,94,115,107,111,94,106,106,94,92,97,99,106,88,99,97,105,106,94,104,100,95,111,99,99,104,99,111,99,90,116,98,95,109,103,120,94,104,100,106,111,106,104,95,114,84,87,94,99,110,97,97,110,104,105,91,93,101,110,96,94,98,106,122,95,84,101,102,96,101,90,98,94,92,99,103,109,101,99,123,105,102,109,97,108,117,99,99,101,101,116,91,112,112,100,105,116,95,106,75,118,94,92,110,107,109,108,95,107,94,111,84,100,101,98,107,89,98,102,98,106,91,113,106,103,92,107,96,92,103,93,104,123,101,99,108,99,88,114,99,81,82,96,107,102,101,105,99,103,104,105, +679.9223,105,108,92,124,97,91,101,105,120,102,122,108,98,100,110,105,87,99,94,112,100,102,114,112,104,102,101,97,96,120,103,101,91,97,112,109,96,94,104,112,108,109,98,114,98,101,95,107,98,93,103,110,103,109,93,94,99,98,107,75,114,104,109,96,107,91,86,94,98,107,95,109,130,105,113,107,102,99,99,99,94,101,92,102,108,99,100,103,104,95,98,103,100,100,97,106,107,107,95,98,89,105,100,109,94,108,85,98,112,91,109,104,106,104,99,91,109,88,136,112,103,98,85,108,102,110,107,122,113,105,106,96,115,99,98,106,101,86,91,91,109,103,114,96,95,103,100,102,98,99,101,98,99,91,104,98,94,95,94,98,90,106,97,111,103,109,112,96,137,105,105,100,100,110,98,99,100,85,100,100,114,117,102,115,98,131,101,109,104,99,131,114,103,98,89,106,114,114,90,102,107,97,94,106,95,99,108,103,111,106,105,112,106,98,100,99,104,95,103,102,97,113,106,101,91,113,111,104,99,99,98,106,110,112,109,88,107,92,82,106,94,105,114,101,92,102,93,107,109,99,109,104,114,102,102,122,97,106,105,106,92,110,90,100,95,99,99,97,112,112,92,97,108,118,107,101,109,98,98,101,99,102,104,102,98,103,109,124,110,98,116,99,107,110,125,101,90,108,102,95,102,99,96,114,98,95,111,109,98,92,97,101,97,124,108,100,91,117,105,100,109,106,94,97,104,98,105,98,99,106,92,121,88,115,105,108,107,110,107,92,103,99,96,100,99,99,109,99,104,125,97,114,105,104,94,99,111,106,77,102,91,94,103,96,107,93,95,109,94,100,104,104,101,109,96,100,102,103,101,104,108,107,106,113,109,109,104,102,100,95,105,101,93,114,100,97,100,98,100,102,103,99,91,105,105,91,99,73,101,106,89,92,100,108,114,99,101,88,103,96,103,99,99,105,97,100,109,95,101,99,96,106,101,95,96,93,105,107,100,101,105,108,85,101,90,98,99,94,108,109,92,101,104,108,104,133,89,105,92,110,96,101,102,107,122,103,98,113,100,92,95,105,94,101,94,87,96,116,106,100,101,88,99,92,102,97,101,108,107,104,101,92,105,103,100,107,101,96,93,97,107,114,102,105,112,88,76,69,98,95,99,107,86,105,105,105,110,102,104,100,91,102,100,110,104,110,103,104,110,99,97,107,108,99,98,95,95,101,110,106,87,105,94,94,110,105,120,87,100,97,96,108,104,96,111,91,104,95,98,108,114,98,103,99,111,103,100,109,105,90,88,103,116,109,102,104,121,97,102,128,99,105,115,92,87,106,101,107,107,67,105,106,95,105,113,100,109,105,90,102,112,101,108,82,103,107,94,100,121,110,112,96,110,103,99,94,91,102,103,105,99,98,101,100,101,96,102,91,98,98,108,100,99,112,101,98,112,114,101,86,94,107,116,98,95,84,94,100,105,117,103,105,101,101,104,112,111,106,108,121,95,98,104,109,92,104,104,111,103,108,107,117,117,113,105,104,115,69,104,120,100,104,116,100,100,95,97,104,115,110,95,97,101,98,93,100,104,111,112,98,102,98,113,99,98,104,112,106,101,93,103,108,111,100,93,85,103,107,105,93,100,98,111,108,102,99,113,94,93,111,126,106,102,109,99,101,99,99,109,115,89,104,109,92,96,105,108,108,109,89,101,106,102,87,95,112,108,90,100,102,90,91,90,82,92,105,94,98,103,102,97,104,104,107,108,106,90,97,98,93,102,102,99,86,95,109,123,101,97,111,100,116,94,112,110,103,99,107,102,99,95,96,96,117,114,107,110,105,104,96,114,99,100,107,122,102,100,88,111,107,102,116,91,105,102,102,100,100,108,109,97,97,120,96,86,91,107,101,95,103,96,83,105,111,106,106,107,93,100,84,102,101,108,106,103,95,112,104,106,106,106,98,105,105,120,109,96,100,110,99,105,112,103,89,105,109,96,94,106,86,101,104,107,106,104,111,98,103,108,105,94,109,99,97,107,98,105,93,100,99,104,107,97,113,101,94,101,124,92,91,87,106,110,97,91,108,91,101,101,95,98,100,104,104,117,141,94,99,100,110,105,103,106,109,96,88,107,94,106,90,91,101,99,107,103,101,74,103,92,102,92,96,109,105,102,110,107,90,110,116,107,95,99,83,109,106,93,112,104,101,99,109,99,86,101,100,108,96,89,105,95,98,100,110,89,107,98,103,100,107,104,109,102,95,106,101,100,94,104,105,109,104,111,101,106,96,100,96,112,101,96,113,105,100,104,106,109,102,91,95,109,78,88,95,94,113,105,106,105,90,74,91,99,84,106,103,86,96,99,103,85,114,86,91,100,106,99,109,103,100,104,101,97,107,97,91,90,97,97,94,99,108,117,105,106,86,94,103,108,111,89,103,100,100,100,105,100,102,102,121,97,94,96,120,102,110,92,99,94,114,102,106,105,113,98,110,99,79,102,85,94,96,100,91,109,107,105,99,103,83,95,95,99,113,102,95,119,103,109,104,93,91,104,100,104,103,91,87,100,104,105,108,102,76,107,109,97,98,98,109,104,95,97,102,98,112,98,104,122,96,94,99,106,113,83,107,103,106,100,96,103,101,95,98,99,88,100,99,110,106,94,101,104,96,88,105,116,104,109,111,98,103,107,104,101,115,111,104,99,100,117,112,100,97,95,101,103,91,97,104,102,97,101,103,102,117,105,103,101,97,102,115,103,113,99,107,101,110,112,132,105,105,89,103,100,113,84,107,84,101,98,86,103,107,99,100,101,114,105,105,107,95,103,90,93,103,108,107,94,91,94,114,105,112,97,87,79,92,95,109,109,98,111,99,113,96,99,112,96,107,91,114,101,104,107,88,102,104,105,102,94,106,105,110,104,104,96,99,104,104,108,100,104,102,98,108,109,111,109,101,115,103,107,99,102,108,118,99,95,101,103,96,87,102,103,106,105,105,108,98,117,98,122,97,101,85,112,109,98,103,102,89,102,104,105,105,105,103,117,105,99,97,103,112,108,100,99,105,97,103,125,106,103,98,104,100,100,99,107,99,124,107,95,97,111,94,111,99,101,99,94,109,108,100,113,111,99,99,101,96,94,91,109,103,99,106,102,96,109,94,103,98,107,95,99,99,105,103,97,101,101,97,103,96,109,92,98,108,98,97,102,102,89,99,109,99,96,106,94,117,107,96,98,100,104,91,108,80,104,88,98,100,101,126,104,97,101,110,95,106,105,88,106,101,101,105,112,94,94,107,106,87,106,100,106,97,101,105,105,95,95,83,107,105,101,107,109,97,97,99,124,101,91,95,101,105,86,106,79,99,102,100,87,104,103,102,94,111,107,90,106,109,100,108,99,106,103,112,111,94,96,105,91,105,88,94,109,102,97,110,97,110,109,98,83,105,103,100,105,89,111,105,106,102,73,98,109,104,94,100,104,105,94,105,100,111,95,102,106,109,98,98,103,105,102,103,97,105,100,104,84,115,104,113,112,111,106,105,98,108,96,116,101,115,111,79,104,94,108,116,98,93,101,102,101,105,94,107,102,106,103,103,91,111,99,83,107,103,99,86,94,102,104,99,71,108,99,105,107,103,96,95,98,99,89,101,102,117,105,101,101,100,108,101,101,99,99,102,107,95,108,112,94,112,99,107,81,96,104,100,102,104,105,103,98,98,92,94,94,95,101,94,97,83,100,101,96,100,114,101,106,97,110,91,103,98,101,94,101,98,98,99,104,101,111,104,112,95,113,106,107,70,95,103,110,107,98,103,96,86,86,101,124,102,103,87,97,98,96,105,103,116,77,96,92,104,94,114,96,105,96,100,109,98,96,90,95,101,99,97,85,96,100,97,109,100,95,98,91,114,96,96,106,112,100,107,105,91,93,99,111,84,102,101,95,94,104,105,107,91,108,100,91,108,109,108,96,108,102,99,94,101,94,105,109,109,102,98,96,96,92,84,90,97,104,101,103,102,102,105,105,104,109,116,101,104,110,91,96,95,101,101,99,106,104,95,92,95,119,95,100,99,106,85,96,103,117,105,100,99,95,116,108,109,84,92,98,80,90,101,105,92,109,98,83,111,105,90,95,100,95,93,79,109,96,99,111,95,102,99,107,105,98,86,104,106,117,109,105,100,103,96,101,115,107,111,95,104,113,96,104,113,103,107,117,103,100,97,85,104,101,89,105,103,98,100,107,84,95,91,92,110,105,100,105,105,96,101,109,101,110,95,104,92,108,88,113,90,106,99,104,107,97,104,102,98,111,84,97,119,111,101,119,116,99,109,103,80,116,95,104,95,104,102,97,100,96,94,105,102,90,98,103,113,106,98,100,110,102,118,101,101,101,91,105,104,100,99,113,89,89,87,102,114,94,110,90,108,110,105,102,102,100,100,106,98,99,106,94,98,127,76,105,104,102,91,98,99,112,112,90,103,90,100,107,105,88,95,103,115,94,106,97,120,97,107,106,106,112,100,94,103,100,109,92,111,98,105,95,105,85,98,104,109,105,102,92,108,102,106,111,114,100,93,104,94,107,108,103,97,109,103,106,106,90,106,98,96,95,94,93,104,118,84,95,102,113,108,109,96,109,95,108,91,108,109,108,98,93,102,91,94,102,108,92,98,96,103,98,96,96,94,93,96,109,101,101,94,101,101,114,106,97,113,99,109,91,93,96,97,114,112,94,111,116,100,95,100,105,105,96,105,103,94,92,108,104,113,111,97,105,75,112,104,102,106,102,109,104,114,112,110,120,102,96,93,107,92,100,100,97,102,96,95,93,109,108,110,105,109,105,103,101,102,113,116,95,118,112,102,113,98,125,100,106,93,107,104,102,87,94,108,95,106,93,95,104,117,102,96, +680.06354,113,110,98,104,96,101,92,106,107,106,98,105,103,99,101,103,100,97,116,99,103,93,106,113,112,97,101,95,104,100,113,102,86,97,109,108,101,98,94,106,104,118,113,84,103,109,98,70,88,111,101,105,96,112,96,106,95,99,103,82,104,97,85,82,103,101,101,101,99,103,99,99,105,95,106,104,92,95,99,92,98,100,100,106,100,102,109,102,99,100,112,102,94,117,104,104,88,113,94,99,95,95,106,103,101,91,89,101,100,91,96,94,109,105,79,106,108,103,97,110,99,101,96,105,100,86,104,104,108,113,96,96,106,109,100,94,96,109,100,115,101,90,105,100,115,101,103,102,80,102,97,91,99,99,97,106,99,90,103,103,108,104,105,86,101,95,103,96,95,98,103,96,98,112,102,104,103,91,96,95,95,109,98,98,97,97,89,104,99,91,103,96,108,106,97,103,105,101,100,95,101,119,103,94,101,106,91,100,109,115,94,95,102,99,103,94,90,101,105,107,98,110,99,104,99,85,97,95,91,91,99,108,96,106,96,102,99,110,103,97,107,106,98,98,100,113,106,109,100,96,105,96,97,102,105,99,96,102,88,107,89,116,104,100,88,101,96,101,104,111,91,100,103,93,102,100,90,104,88,94,87,97,104,96,105,101,109,97,97,95,108,96,111,105,108,111,103,108,105,113,95,100,101,104,92,106,109,100,95,101,102,104,107,107,107,99,93,97,103,96,110,128,93,111,112,103,84,97,98,114,108,92,100,100,99,103,98,106,88,106,103,99,85,107,100,100,110,101,94,106,105,100,103,105,102,103,97,98,91,103,94,94,92,97,103,83,101,113,97,114,119,110,101,90,95,101,107,88,100,89,71,100,102,101,89,96,101,99,96,111,109,102,103,99,101,89,97,107,107,97,103,87,97,91,95,102,103,99,94,87,93,97,101,70,104,102,108,96,98,101,95,91,94,77,85,105,95,94,100,101,92,98,103,105,104,84,102,101,105,85,100,99,101,104,89,83,96,77,97,119,98,98,97,107,99,101,103,109,102,108,109,104,104,104,104,99,93,95,100,90,105,99,97,95,95,97,104,103,105,105,74,113,111,105,105,107,91,101,99,107,104,113,101,103,105,107,100,96,98,99,105,92,98,103,103,89,110,97,98,96,98,93,93,92,99,86,100,103,89,89,95,102,113,95,106,101,89,95,105,92,102,113,112,96,108,117,101,122,103,95,94,92,100,91,124,102,108,101,103,93,102,104,96,90,97,107,94,92,100,102,118,102,93,97,104,100,95,102,101,103,102,106,101,111,92,103,103,108,98,108,95,80,100,101,111,93,104,92,108,91,96,95,102,98,108,84,102,105,105,101,99,105,98,96,91,101,95,95,98,99,103,100,99,107,99,93,98,93,106,105,100,104,100,102,101,93,102,110,103,95,93,98,99,109,98,110,100,113,101,115,112,100,95,109,109,97,107,104,106,101,99,117,100,100,99,117,102,107,112,106,89,92,109,109,101,109,108,99,122,97,112,95,113,101,100,112,97,102,100,100,113,105,105,101,96,107,106,109,88,95,93,95,115,100,96,100,107,100,110,90,98,86,93,103,113,97,87,98,99,112,91,110,111,100,93,86,102,105,98,96,111,101,88,100,87,91,104,105,103,114,106,101,103,96,90,108,106,98,108,107,107,94,91,77,97,110,83,99,92,101,117,106,103,92,105,103,94,98,104,114,100,112,100,106,112,117,93,102,103,96,102,108,109,102,101,123,108,96,98,98,113,101,108,90,106,109,108,105,101,101,109,108,105,104,101,87,106,108,110,105,95,97,90,114,89,106,100,106,101,99,103,81,96,87,109,94,113,109,101,89,100,103,112,110,107,97,105,100,110,113,89,90,108,102,94,105,108,77,102,96,102,101,103,105,100,92,97,82,108,98,115,103,103,100,97,106,100,114,106,103,105,99,105,105,118,92,79,94,99,100,104,96,105,98,105,106,110,102,103,99,103,118,104,102,100,99,87,99,94,110,89,91,99,109,106,96,112,93,96,106,99,110,100,97,106,87,94,91,122,119,102,109,107,112,102,91,100,99,112,90,99,108,103,104,101,101,109,94,103,108,102,113,98,106,93,101,90,100,108,103,101,105,113,101,107,79,97,97,93,101,104,106,97,110,113,91,99,98,98,102,101,100,99,80,99,83,109,100,110,107,95,100,97,90,136,101,109,99,96,94,124,86,108,96,99,87,102,101,114,71,94,102,98,98,104,94,97,93,92,100,97,98,109,106,109,106,94,94,121,90,77,86,105,100,104,83,105,102,111,103,95,108,105,96,101,89,102,97,106,100,96,92,109,96,109,89,110,109,114,97,76,110,97,105,94,103,102,97,98,88,98,108,108,101,100,100,101,95,105,111,98,96,103,98,89,104,96,87,79,101,100,113,96,102,90,94,95,94,102,99,100,98,98,101,99,82,83,109,107,107,87,107,96,98,110,103,89,106,102,117,93,98,111,104,92,106,107,102,98,94,105,106,101,115,97,99,112,98,112,103,106,95,101,94,103,103,99,133,104,100,106,105,105,94,114,97,101,101,116,105,107,103,93,109,101,115,107,100,105,100,108,116,105,100,108,106,95,97,104,99,118,84,109,99,95,107,90,102,101,103,108,111,124,102,103,92,105,99,102,112,96,99,99,111,107,120,104,92,91,103,99,97,105,102,105,109,102,98,108,91,102,100,104,94,94,113,117,100,101,108,99,107,110,92,117,95,109,115,96,98,98,101,91,108,102,99,100,101,104,103,95,120,98,99,98,98,113,111,104,98,103,112,121,98,92,74,99,113,97,101,86,91,103,100,103,106,113,111,79,89,101,96,110,103,104,94,108,106,102,100,78,96,106,107,111,93,106,113,98,108,109,102,101,97,102,104,73,88,100,113,105,102,105,95,99,106,104,104,109,117,101,107,101,90,90,111,103,104,109,91,101,94,89,111,78,100,107,109,104,97,94,110,107,95,100,104,109,99,103,115,104,88,111,106,84,106,105,111,104,94,92,105,79,99,97,105,111,107,100,104,106,118,96,97,120,86,99,96,98,104,96,98,107,99,111,110,102,107,103,104,102,100,108,102,104,104,92,107,105,99,96,97,109,107,99,104,104,103,91,101,90,98,104,71,109,92,103,102,113,110,89,93,95,95,111,107,107,103,117,108,102,104,108,113,102,105,103,105,103,101,106,99,105,97,104,110,103,97,112,98,101,96,113,102,109,92,109,106,95,93,102,106,101,102,102,96,97,111,91,101,98,93,93,98,98,104,111,92,100,101,101,107,112,99,95,102,95,94,100,107,102,108,97,106,98,105,102,99,90,104,97,107,113,116,102,92,112,107,96,102,101,103,102,106,104,105,98,99,101,112,103,104,96,102,99,107,97,100,95,107,87,110,105,105,99,104,116,112,102,103,99,94,109,116,92,110,99,108,101,103,97,99,106,99,93,109,86,103,103,96,94,106,103,115,86,110,102,103,109,118,102,99,119,103,93,110,100,114,98,104,102,116,96,105,104,90,98,108,111,106,112,103,98,98,106,102,97,104,102,97,99,100,97,99,108,106,109,90,101,104,122,104,104,97,100,83,118,96,97,98,97,110,106,95,103,94,99,108,109,103,101,92,104,99,98,111,96,105,96,116,88,106,102,100,97,80,101,104,105,107,102,109,91,105,100,96,107,105,109,102,86,97,101,111,108,108,95,99,135,95,102,95,106,100,106,100,86,106,104,105,112,95,93,104,102,98,101,101,103,108,103,106,98,104,109,103,106,98,99,102,113,101,114,96,96,106,109,106,109,102,105,106,112,96,97,108,114,100,101,100,97,102,91,109,98,106,99,98,107,101,95,98,102,101,101,99,106,93,92,110,95,97,92,101,109,99,99,95,106,101,101,101,101,99,100,100,115,95,102,91,99,94,101,112,107,100,95,88,99,101,104,109,101,88,107,90,106,107,88,105,110,100,103,106,117,102,98,98,103,117,112,103,98,91,105,97,106,95,109,103,101,96,97,94,100,106,100,108,106,93,102,107,106,92,104,92,103,102,91,104,93,114,102,95,110,99,113,104,91,96,102,106,101,102,86,101,81,102,103,120,110,98,92,100,109,101,93,102,108,110,107,106,103,92,99,108,94,106,98,109,94,95,108,109,108,101,113,105,110,108,121,101,108,94,100,89,101,97,100,105,101,109,100,98,108,69,109,92,98,90,101,101,131,97,94,97,99,127,99,113,106,107,113,98,111,97,100,99,96,98,94,101,105,105,103,99,104,94,96,101,111,102,111,99,99,104,107,108,94,98,116,97,96,99,82,102,99,92,110,96,106,103,109,111,106,108,103,95,108,100,111,99,103,107,100,102,102,103,128,95,90,104,99,107,96,113,106,101,90,103,99,83,112,101,100,96,91,92,100,94,73,108,105,103,98,110,103,87,112,105,92,102,93,110,102,95,95,102,114,105,105,99,115,108,104,105,94,101,97,83,89,100,101,93,113,119,100,105,103,120,97,79,99,96,96,98,97,107,105,98,98,105,111,101,109,113,109,99,112,95,101,96,88,102,113,108,98,80,117,97,91,114,101,105,94,115,108,96,113,106,108,108,95,103,98,106,116,100,98,92,96,98,103,95,91,96,88,109,88,100,99,94,114,97,122,106,108,98,98,106,110,102,109,107,88,106,109,94,87,97,116,102,87,104,102,104,76,117,116,113,83,104,119,103,94,92,89,111,102,97,106,127,107,100,106,114,101,107,89,100,88,102,106,105,99,98,98,103,105,92,117,97,101,106,116,88,96,100,107,87,105,90,84,114,114,108,75,102,98,95,96,95,90,102,96,95,91,87,98,97,114,90,115,107,104,94,100,108,96,104, +680.20483,92,108,91,109,86,101,118,107,91,89,90,95,107,83,102,100,103,102,88,99,100,100,102,79,95,95,108,90,94,117,93,101,106,87,98,98,98,99,97,85,99,102,94,98,107,114,103,118,104,102,105,96,101,90,99,109,102,105,94,96,102,103,105,92,113,102,93,90,99,88,103,96,99,96,92,99,94,106,99,96,95,101,92,101,96,94,100,105,98,102,95,99,104,98,100,99,103,86,86,105,102,98,96,103,98,95,97,94,100,95,74,92,108,81,96,97,81,96,94,95,101,101,93,99,101,90,113,111,103,109,101,115,102,102,94,94,109,103,89,107,94,99,96,106,101,106,106,80,106,91,87,95,108,92,96,98,111,112,106,97,101,104,120,99,99,100,115,103,106,107,106,110,109,103,96,115,101,95,121,100,102,98,102,103,96,110,94,87,104,93,95,111,95,84,94,88,115,114,96,94,86,116,107,102,122,104,93,94,106,106,105,108,105,95,107,96,102,97,86,102,101,94,84,111,101,94,92,102,105,103,102,108,98,110,98,107,103,107,104,100,95,105,109,96,88,102,99,108,104,107,83,106,102,92,109,117,95,104,103,108,95,95,102,91,106,107,106,103,102,97,100,96,111,106,120,102,91,102,102,107,110,116,106,95,95,94,99,103,112,111,100,110,95,92,101,94,107,125,98,102,101,107,93,101,93,105,94,101,88,97,94,118,105,100,110,110,103,91,98,96,108,102,101,104,111,102,107,98,107,100,112,102,92,113,103,103,102,106,93,99,85,99,109,98,112,100,106,109,107,100,104,105,96,115,107,96,127,112,106,103,107,91,101,104,99,104,109,103,87,80,104,89,118,71,107,98,100,101,96,87,104,98,107,102,100,91,98,100,110,87,99,108,106,99,103,90,97,96,97,114,102,95,91,104,98,103,107,109,99,95,96,83,100,93,95,111,104,102,103,99,97,100,100,103,101,98,101,63,112,115,101,105,110,113,104,108,103,100,105,103,104,104,106,116,94,105,107,100,109,100,100,74,90,114,112,101,114,104,105,111,99,102,113,113,91,102,108,92,97,98,101,95,106,104,107,96,99,106,90,97,98,115,113,92,102,92,110,103,113,98,108,107,109,97,88,95,94,94,102,98,108,99,110,114,88,92,104,104,89,95,100,102,101,103,113,94,108,113,95,88,81,83,113,115,102,104,108,109,96,97,98,97,91,96,84,120,102,106,100,103,95,104,96,109,94,96,110,97,105,107,93,95,102,98,103,100,96,94,102,94,115,106,86,106,96,107,105,102,88,99,94,94,104,98,102,109,97,92,97,95,107,100,96,96,95,101,103,97,110,99,100,115,83,86,98,97,96,104,98,85,115,101,110,95,106,87,94,103,102,107,99,101,96,100,108,97,102,108,121,94,104,104,91,105,95,103,96,109,97,95,97,87,101,109,96,102,82,86,100,104,106,109,101,94,102,111,92,108,104,107,94,103,112,86,96,104,122,113,105,92,116,104,99,103,90,105,91,102,118,105,110,105,100,80,95,125,97,100,93,101,98,112,108,100,95,96,98,98,88,90,96,99,98,108,97,91,110,92,104,101,114,92,102,110,92,101,114,101,106,95,105,100,93,98,91,96,92,99,117,100,100,96,111,98,90,104,105,107,106,103,115,93,101,105,104,93,95,92,101,106,95,106,103,106,100,100,99,108,90,97,99,98,108,101,83,114,111,104,102,97,96,101,95,84,94,97,90,102,102,103,110,97,86,111,100,92,96,101,113,103,103,101,101,99,101,114,71,106,97,105,105,81,106,114,102,102,110,101,96,102,91,97,103,97,111,99,91,104,95,108,108,94,100,95,112,94,105,94,105,102,103,107,102,109,104,99,113,113,109,103,107,95,116,104,99,106,105,95,111,106,103,102,104,109,103,123,92,96,97,93,98,92,106,105,102,88,94,107,105,103,95,101,96,93,105,102,67,97,106,105,120,102,109,108,105,92,98,95,101,105,96,100,105,113,96,99,94,112,107,98,107,112,93,102,99,103,106,97,98,103,94,104,108,100,103,95,94,95,92,91,99,101,91,117,100,98,82,108,107,104,113,86,106,107,95,116,103,75,94,107,94,109,100,91,103,102,97,87,106,105,104,90,99,99,99,100,91,100,105,94,96,102,96,84,103,105,90,119,97,97,113,109,91,93,99,103,96,88,117,108,106,83,101,99,105,91,102,92,106,104,95,102,96,99,90,98,86,82,94,108,96,100,98,87,95,95,95,108,106,106,96,104,95,104,87,114,108,97,96,107,99,90,104,97,101,92,90,98,102,107,112,114,93,94,105,100,92,91,107,92,97,93,111,99,100,100,90,105,96,103,101,113,95,93,94,92,109,98,96,107,110,101,95,108,98,103,100,100,101,119,109,100,106,92,103,108,90,95,101,93,89,100,84,106,109,102,100,92,86,96,99,111,94,106,78,105,104,106,102,104,91,86,99,98,99,107,109,103,113,109,100,98,99,110,102,107,99,107,109,108,79,108,105,105,107,100,109,105,113,100,94,107,96,100,107,104,107,105,96,99,102,102,117,123,103,91,108,87,95,101,116,90,102,122,101,96,103,100,105,104,99,112,104,105,103,134,107,97,110,103,96,91,102,90,106,106,107,111,100,98,98,100,95,107,108,96,106,92,110,100,99,106,109,103,95,95,103,103,102,113,102,102,98,106,107,113,92,105,105,103,90,118,104,102,95,94,108,94,98,100,108,90,95,96,112,104,103,115,93,105,100,112,99,103,115,107,105,111,112,84,107,91,99,111,104,96,105,98,105,108,102,102,101,106,99,104,101,106,109,103,101,102,86,118,105,114,112,113,92,102,104,109,98,107,113,98,102,99,94,103,102,101,103,104,111,94,103,107,113,103,96,102,100,110,98,97,105,109,96,100,100,114,94,109,99,96,105,106,102,107,103,100,80,108,108,96,109,100,108,101,89,99,84,92,102,107,95,104,95,98,120,106,95,101,106,100,93,100,105,106,76,99,96,98,112,108,97,104,99,100,106,99,112,91,118,96,104,96,95,111,104,100,109,100,101,107,107,99,86,105,96,99,119,92,90,102,95,111,92,99,95,105,103,95,93,102,95,107,102,88,110,95,109,120,111,95,104,97,105,104,85,95,105,98,114,108,92,99,119,109,105,103,100,102,83,95,102,113,98,78,99,107,98,105,106,90,98,104,95,106,100,94,98,107,95,100,104,96,104,106,113,100,108,104,104,101,112,113,107,93,91,104,108,104,95,95,107,104,108,103,106,110,101,129,104,103,104,99,115,98,106,96,104,94,98,92,98,93,100,114,96,115,98,84,98,108,102,106,108,106,104,104,112,112,96,87,91,99,112,110,105,94,89,106,96,100,91,113,106,110,89,98,98,107,92,111,97,98,100,103,92,102,98,114,100,101,100,115,102,114,113,109,93,97,97,100,111,113,93,92,108,103,99,109,103,100,99,119,90,108,91,103,105,100,103,115,102,98,98,101,104,105,101,97,88,108,111,91,96,105,109,99,108,101,95,107,93,93,103,107,102,102,99,102,96,91,109,97,99,93,105,104,104,97,95,114,101,98,95,116,103,100,106,93,98,94,109,116,99,106,108,125,114,107,92,95,103,101,108,94,108,93,105,113,96,95,101,115,109,96,103,119,105,103,100,90,93,97,82,102,99,100,109,97,98,94,98,97,99,95,98,102,108,87,119,102,103,92,95,131,96,100,105,98,103,110,116,96,95,94,110,92,92,102,101,110,90,98,98,103,98,103,102,90,100,106,117,108,106,98,95,100,103,96,101,94,97,116,102,106,112,115,106,113,110,89,100,107,106,98,99,118,97,106,108,99,96,101,98,110,101,97,95,109,108,92,100,108,102,102,98,97,94,96,98,98,106,98,105,104,112,91,104,111,98,75,97,98,99,99,102,113,108,109,97,103,111,106,96,97,94,108,108,107,109,96,90,96,98,108,107,107,90,107,94,96,104,108,100,92,103,93,93,95,96,103,110,103,92,99,106,91,88,98,94,103,100,99,101,113,96,98,100,97,105,109,98,117,97,86,105,101,100,101,90,98,91,105,99,103,112,106,95,111,113,98,103,92,98,101,90,100,94,101,94,102,109,84,103,117,101,106,96,94,108,94,124,103,112,114,106,113,99,105,99,104,94,101,114,98,103,128,91,106,104,103,116,101,108,106,97,103,103,104,99,99,104,100,112,109,116,99,98,94,101,108,88,100,108,114,144,95,102,101,94,101,94,92,99,101,102,93,98,110,100,99,95,100,110,99,116,128,97,94,97,91,95,97,111,106,111,110,127,106,110,96,104,105,113,106,103,103,108,98,106,102,112,100,97,97,130,90,112,105,102,94,93,103,102,107,90,97,100,96,105,107,90,105,96,98,136,108,96,97,103,98,94,88,111,125,98,100,102,107,99,89,89,106,106,108,109,99,102,80,98,103,88,100,100,103,103,92,98,126,101,99,103,89,99,96,90,109,108,105,96,110,92,108,109,95,84,88,100,105,103,104,103,102,102,106,100,110,98,95,83,93,111,99,100,92,68,87,102,106,100,106,108,91,105,104,95,111,89,103,96,109,98,99,104,85,99,99,104,98,101,108,99,94,105,100,104,94,105,98,96,105,94,106,95,100,111,105,99,95,103,106,97,102,95,108,98,98,100,90,99,93,97,105,100,89,95,109,92,102,95,94,101,88,117,93,95,105,96,97,110,106,98,99,102,100,94,98,101,101,107,112,101,105,102,98,109,104,105,97,115,100,116,106,102,82,98,90,91,118,103,105,103,93,101,99,92,108,107,100,103,110,91,121,97,100,109,103,94,92,80,98,98,103,94,94,94,102,98,106,111,83,107,114,106,114, +680.34613,89,97,99,110,101,83,91,97,108,103,102,96,104,108,97,103,106,128,91,76,84,101,106,95,110,103,95,108,103,102,104,89,98,107,117,105,104,87,107,101,106,98,113,105,100,109,91,117,99,103,95,84,90,95,98,101,107,100,104,102,101,112,100,91,104,104,95,101,100,99,92,95,104,96,106,122,105,96,100,113,91,110,101,115,97,82,108,113,95,99,111,103,98,96,97,87,98,89,94,100,100,104,106,101,108,104,93,113,107,112,99,90,100,91,112,93,98,116,100,97,104,99,110,116,102,90,98,90,113,100,98,95,102,96,85,115,90,104,98,105,101,99,105,91,96,96,99,98,113,101,100,100,120,103,105,95,105,98,96,93,91,107,112,106,111,91,109,98,103,113,92,99,87,102,102,94,104,97,110,96,100,81,106,99,112,131,89,110,111,97,100,114,102,98,88,96,103,103,117,101,104,95,100,94,105,106,113,105,108,96,101,95,105,93,105,94,94,92,101,100,79,122,108,94,108,105,108,104,101,100,95,101,101,110,91,109,96,105,111,95,108,101,113,102,105,96,89,100,105,110,101,107,93,102,99,88,102,95,86,96,111,98,99,99,99,100,99,92,95,108,108,105,100,84,106,103,91,95,109,95,96,108,101,102,96,97,100,87,105,100,91,102,112,92,106,108,105,99,109,112,92,102,107,110,79,99,96,94,100,92,86,101,100,88,91,99,92,108,96,105,93,111,107,107,103,103,102,96,103,102,103,99,89,107,100,108,98,94,106,95,101,93,96,103,97,97,105,103,106,110,101,98,107,91,97,95,92,101,88,113,99,107,102,81,97,100,87,104,104,98,107,105,100,95,96,109,103,114,97,108,104,95,101,93,107,106,97,95,97,88,103,110,100,97,95,91,98,107,108,108,100,105,92,99,108,93,101,96,99,101,80,99,104,95,86,105,101,95,98,101,88,92,95,99,80,93,92,86,101,112,102,101,107,96,99,101,97,113,92,96,103,107,105,99,89,96,86,95,108,97,102,98,96,120,99,99,92,109,103,98,80,97,90,102,106,104,104,96,90,93,99,93,101,88,96,104,94,100,113,95,98,100,101,96,101,103,96,100,105,91,109,108,100,97,89,83,99,99,90,96,108,110,106,99,92,100,98,104,94,110,95,104,96,102,104,102,101,100,107,92,105,99,99,104,106,101,104,99,104,98,98,111,78,105,94,93,93,102,100,109,87,97,89,101,113,102,99,91,111,111,103,102,102,99,99,103,98,85,105,102,113,98,96,93,93,99,105,94,108,96,98,98,105,103,99,105,112,103,97,97,88,89,86,100,101,104,98,93,123,92,101,113,105,114,113,109,109,103,101,100,96,111,102,82,100,92,99,76,102,93,100,98,111,96,108,99,113,96,111,100,122,99,106,91,100,103,94,111,100,100,80,103,100,111,102,98,95,96,105,100,107,102,92,105,105,97,96,105,101,105,112,99,95,105,104,113,110,121,95,102,105,111,99,99,97,101,118,91,110,96,95,91,100,100,110,106,112,110,106,106,108,109,101,97,82,89,101,108,93,107,104,96,92,97,106,99,108,91,98,95,107,98,81,104,104,112,104,105,80,106,100,106,84,93,96,99,106,115,105,118,108,97,106,101,100,100,94,91,96,97,103,95,101,78,105,98,81,70,114,100,108,98,109,96,104,118,96,103,105,107,109,94,97,94,92,95,103,90,99,99,105,98,98,110,95,92,120,106,104,110,103,114,113,106,88,96,101,106,94,95,104,99,126,106,99,112,101,96,104,100,112,114,96,110,100,100,98,106,106,109,93,96,99,99,99,109,102,98,108,107,111,100,86,104,108,98,99,105,111,95,98,109,103,102,104,104,99,94,89,104,101,107,105,101,109,88,102,108,103,83,85,109,96,107,94,97,96,86,126,93,108,95,91,94,97,102,97,87,99,105,112,104,97,115,106,99,100,103,100,102,105,107,95,102,91,94,106,105,124,89,100,107,106,95,95,108,104,107,111,106,108,96,104,113,103,98,98,87,103,118,108,110,97,112,99,89,62,96,94,96,101,76,108,102,98,100,90,95,94,106,104,93,99,110,100,96,99,103,107,102,111,111,105,109,112,93,119,98,95,108,100,113,113,100,97,95,99,105,116,101,115,95,111,107,112,108,104,91,107,99,119,111,97,94,96,93,100,97,105,97,96,107,103,95,82,108,105,108,99,98,110,98,107,114,104,87,94,76,98,104,106,102,110,95,102,89,83,108,109,103,104,86,107,103,104,106,83,99,104,110,104,94,97,98,90,115,97,102,104,101,103,115,103,89,100,104,102,91,101,93,95,102,104,102,101,93,82,87,106,111,102,110,108,101,110,99,113,96,94,98,123,99,106,107,91,102,107,100,99,92,107,111,91,102,96,107,103,100,101,116,94,101,91,103,97,110,100,86,90,99,106,94,98,115,103,116,98,96,104,116,102,101,101,106,77,104,87,79,106,104,108,93,113,99,113,113,104,103,102,113,96,90,109,98,116,92,95,117,91,117,102,99,101,97,109,112,105,103,95,102,98,105,105,98,100,107,107,99,111,93,113,96,96,93,108,105,100,101,104,102,98,104,103,98,106,126,116,100,99,107,108,85,104,100,111,113,113,102,107,97,99,104,101,117,105,101,108,99,102,105,102,89,92,105,93,104,102,94,94,103,104,96,108,94,97,104,98,94,91,100,117,90,95,91,102,97,112,105,96,99,103,92,107,109,108,99,100,91,93,103,110,104,102,113,106,96,91,115,122,100,100,95,95,107,106,94,108,101,90,114,104,103,109,105,98,106,105,94,99,100,119,107,111,102,113,91,94,98,97,107,108,98,111,92,91,102,102,91,97,90,107,94,80,109,85,95,95,102,106,103,96,117,101,108,103,106,102,112,99,101,93,95,93,102,104,102,107,95,92,102,99,105,93,106,109,112,101,98,96,99,92,102,103,104,104,98,108,100,106,96,102,106,106,107,120,99,108,91,88,104,102,87,89,109,101,102,101,100,106,95,81,101,102,101,100,101,116,105,110,95,106,108,98,96,104,109,103,105,101,102,105,91,82,100,104,80,99,108,111,98,106,113,99,110,102,105,93,97,96,104,112,96,116,89,108,88,88,108,99,100,90,109,91,102,97,105,85,105,101,123,95,91,91,95,105,105,116,101,101,106,93,106,99,108,95,96,101,97,109,103,102,104,105,106,98,102,100,99,108,107,96,93,74,110,100,108,102,99,93,108,106,110,101,95,95,109,99,108,94,95,80,104,111,102,89,106,116,102,87,108,107,100,95,103,104,105,88,93,87,93,106,99,106,109,101,85,110,103,96,98,96,105,108,127,113,106,99,97,101,99,95,97,114,99,80,100,106,108,103,99,97,101,101,102,108,104,104,72,115,98,103,99,89,100,92,98,80,91,90,101,97,105,96,99,89,96,109,99,99,97,111,100,113,104,93,102,101,92,124,106,100,109,96,105,104,96,102,101,93,104,113,89,102,99,91,113,106,110,101,106,97,99,102,113,102,101,102,109,89,99,115,96,105,106,114,109,107,110,105,91,92,101,115,96,95,106,109,108,111,94,84,88,102,93,82,95,100,102,95,98,99,100,98,88,112,94,96,95,78,101,104,102,110,101,102,94,94,105,110,96,115,99,95,98,92,97,100,113,103,102,103,98,118,108,101,91,97,101,109,99,102,104,97,97,106,102,100,104,95,99,107,104,101,99,107,109,108,102,94,88,102,111,95,87,98,95,105,85,109,102,109,105,98,99,105,108,107,102,123,97,105,96,99,94,98,106,101,103,94,94,96,138,103,90,96,100,112,117,97,103,99,110,114,98,106,99,116,103,97,100,100,101,95,84,105,100,102,100,94,98,92,104,109,96,107,99,95,100,98,92,109,84,107,104,101,109,82,97,97,96,100,109,100,99,101,110,91,101,77,108,95,116,111,98,116,90,106,109,105,104,94,106,97,102,109,102,91,106,108,103,110,92,103,114,101,93,102,100,105,103,100,110,95,102,109,100,105,103,103,110,105,101,109,101,110,104,89,105,106,95,110,100,111,103,94,107,98,98,92,98,103,94,107,92,104,105,99,102,96,92,117,94,94,110,105,108,99,97,106,107,104,109,93,93,101,103,98,101,87,108,94,95,103,97,103,104,113,104,102,108,113,117,102,93,105,110,96,104,106,104,95,112,95,95,98,97,104,109,106,117,73,92,96,85,91,96,100,111,108,105,98,102,94,95,108,91,80,85,94,105,98,104,100,101,100,112,95,108,95,111,109,101,86,108,112,102,101,98,116,94,98,92,99,85,96,84,103,98,108,83,103,115,115,109,102,92,93,111,103,106,93,100,96,112,87,103,105,128,89,96,101,87,96,108,108,94,94,97,105,108,112,113,99,96,99,101,99,81,91,113,99,107,104,101,105,106,84,111,104,100,101,83,103,104,117,92,104,98,99,89,89,96,106,87,103,105,102,97,108,103,79,94,77,107,110,99,102,116,105,112,99,101,104,105,106,107,95,100,119,102,98,101,67,92,100,101,90,97,95,95,103,86,101,113,110,111,114,84,93,108,122,108,103,93,94,97,137,107,106,91,110,102,99,105,84,102,100,98,87,104,101,83,100,95,103,87,90,89,94,105,103,105,106,97,108,95,99,98,91,83,90,121,108,86,94,105,108,97,95,95,100,95,95,98,101,102,104,109,84,94,98,95,95,111,109,96,92,106,87,100,94,91,104,98,107,106,107,96,91,124,93,107,99,121,97,98,118,100,105,110,108,115,92,100,88,112,102,113,92,114,101,106,109,104,95,113,83,105,109,99,110,104,101,98,109,73,96,106,82,92,106,94,98,93,90,106,110,98,104,118, +680.48737,96,90,91,108,98,109,105,103,105,111,104,103,91,91,105,106,88,110,110,103,107,107,102,113,108,109,109,106,101,98,101,105,109,99,103,97,110,101,95,101,103,101,92,128,99,97,79,95,99,96,93,103,113,105,110,96,91,124,98,95,116,104,100,87,101,113,97,94,97,104,90,98,98,103,101,121,107,89,98,105,124,109,100,100,92,91,92,111,107,107,110,109,94,97,95,98,103,103,99,94,102,100,107,105,98,103,106,100,100,99,102,91,105,107,96,101,115,106,104,100,101,92,133,105,98,107,101,89,114,108,96,101,97,101,103,110,94,109,97,83,111,99,93,91,100,90,102,93,96,106,104,101,99,106,97,119,97,108,106,95,106,101,108,90,99,116,102,98,90,97,99,109,106,95,80,94,103,105,94,116,101,96,91,96,108,95,95,86,102,98,98,96,111,101,102,109,101,105,103,103,99,100,93,98,89,96,113,114,103,103,91,111,100,97,112,88,124,94,100,95,112,113,114,91,103,106,106,102,107,102,96,104,114,101,103,99,101,107,102,102,99,100,113,97,84,99,100,110,100,101,107,108,102,107,87,104,94,97,98,101,93,99,102,117,110,101,108,93,104,88,98,91,118,100,106,91,94,106,104,86,107,107,104,107,98,101,104,99,95,94,98,98,96,100,113,100,107,96,106,106,99,95,93,109,94,98,105,96,102,122,98,126,96,100,110,111,103,108,107,98,110,96,112,109,111,92,95,98,85,94,111,102,93,90,104,110,77,97,92,104,114,103,96,103,104,106,114,102,110,103,125,112,97,107,92,113,113,105,100,95,117,103,105,98,101,89,93,93,104,95,118,104,95,103,109,101,102,109,96,113,107,108,95,101,102,101,99,110,97,91,111,105,111,103,101,97,92,133,102,103,101,103,110,107,99,99,108,91,118,90,94,91,104,102,110,120,101,109,100,91,93,102,106,107,94,112,93,109,101,105,98,107,103,103,99,95,115,105,103,74,102,108,129,96,91,117,102,109,121,110,83,104,97,105,105,103,90,108,104,102,98,109,95,114,101,105,107,102,111,98,103,111,95,98,94,102,110,117,100,111,111,110,120,99,106,110,103,109,120,105,88,101,116,101,104,98,98,105,107,107,99,101,113,99,102,105,96,98,102,98,105,109,94,96,103,109,101,102,108,100,107,100,102,94,101,100,101,105,101,110,108,102,93,95,93,111,108,95,104,92,97,101,105,95,106,96,99,104,105,96,109,102,108,98,97,115,106,116,87,105,97,104,96,103,101,98,110,106,92,108,98,94,109,95,91,87,110,83,96,101,103,93,100,90,105,104,104,98,109,104,101,99,102,91,102,102,98,109,107,100,102,103,96,88,100,105,94,104,102,102,103,93,109,119,118,97,90,94,98,93,94,98,100,105,95,91,102,97,64,108,94,92,105,112,104,95,103,95,95,96,104,106,74,100,117,98,103,95,102,110,99,86,98,87,89,99,106,121,102,108,105,99,109,105,95,94,99,90,88,91,111,97,97,106,101,103,105,102,106,105,107,103,108,108,100,95,86,97,111,105,97,100,87,110,105,87,109,137,109,91,99,96,89,111,95,125,112,99,92,105,103,108,97,92,104,95,94,100,104,103,101,107,135,95,101,104,95,96,93,119,107,102,103,105,104,92,95,116,95,108,113,91,97,98,92,104,97,108,101,105,111,99,122,97,97,102,94,95,100,106,100,100,98,106,83,101,97,105,108,105,106,106,106,99,110,110,91,96,116,92,86,103,106,114,95,113,99,102,98,111,110,133,103,102,115,109,102,95,99,106,104,100,104,107,92,108,101,114,91,110,108,92,98,111,100,103,95,102,111,104,94,110,108,96,108,112,111,102,103,111,98,115,105,94,102,102,96,97,119,106,103,105,106,105,90,93,98,95,90,79,112,101,96,102,106,88,84,109,115,101,96,117,110,106,124,79,84,103,102,104,104,113,104,107,104,103,104,101,100,99,96,98,104,104,103,103,107,104,107,118,102,103,91,94,103,101,116,109,93,95,91,106,109,99,110,94,93,126,91,105,112,104,102,109,99,94,106,106,85,109,99,98,106,94,98,82,104,112,100,95,98,100,114,89,96,101,83,99,100,96,94,104,102,84,80,70,111,95,102,114,104,97,110,101,107,109,98,108,107,114,100,101,99,90,102,94,90,104,103,102,84,98,109,98,105,109,97,87,96,99,111,92,98,100,97,105,109,112,106,99,108,92,103,96,92,106,103,96,92,104,91,119,104,101,109,105,109,105,93,104,92,104,101,95,104,101,105,91,96,99,98,82,100,92,96,101,107,96,112,105,102,105,105,109,123,104,117,107,92,119,103,88,91,106,93,120,104,105,105,97,109,107,102,109,97,86,101,98,105,100,103,107,101,97,92,112,86,94,104,85,96,110,119,113,92,102,104,92,101,108,96,101,96,129,110,99,105,103,99,111,104,113,79,108,90,99,99,91,98,106,105,98,102,105,103,98,97,107,114,106,106,97,98,96,108,106,102,115,96,108,99,95,93,119,109,94,100,109,95,99,109,96,106,109,104,95,101,103,102,94,103,87,97,92,92,94,111,99,109,103,107,93,87,105,93,106,98,100,87,101,99,89,106,93,95,111,105,103,90,89,127,94,118,95,101,105,116,98,110,111,109,104,97,110,96,86,111,107,113,83,98,103,103,107,94,117,113,92,103,93,77,96,91,98,111,101,93,106,109,94,84,94,96,97,108,107,86,105,98,103,93,105,110,70,105,102,97,100,102,110,110,116,104,109,102,89,100,106,110,84,121,105,96,96,109,106,98,114,94,105,100,115,100,95,98,100,94,98,79,106,98,104,104,111,117,103,106,98,111,104,109,103,100,109,100,84,102,103,103,114,96,96,100,109,103,102,82,102,107,99,73,104,105,103,103,102,99,100,106,110,95,103,105,112,100,91,89,106,80,94,100,98,94,97,103,109,108,113,90,100,105,100,107,120,111,100,94,107,94,98,105,99,101,116,98,91,102,108,95,90,94,107,99,105,102,99,110,98,104,111,124,106,102,99,97,108,109,97,117,100,104,111,109,110,107,100,113,97,101,105,102,108,102,89,112,105,93,97,105,109,104,89,110,113,102,106,113,103,96,93,99,90,101,107,104,108,98,100,98,104,104,105,101,99,99,108,109,103,100,105,99,102,100,112,98,107,99,102,93,97,105,102,97,104,100,104,102,92,102,112,111,91,113,104,109,99,114,106,109,100,108,102,102,105,109,93,100,101,100,100,104,96,102,109,108,111,117,101,108,103,106,112,119,104,105,99,105,90,91,114,108,131,107,103,93,105,113,104,95,103,100,106,97,106,104,110,105,98,107,100,106,108,108,102,113,91,104,96,95,102,92,98,103,106,98,95,109,112,117,115,98,93,121,104,99,102,111,121,105,98,131,95,99,117,88,100,104,100,100,99,106,102,106,122,105,91,98,103,104,105,105,99,93,111,109,121,110,114,106,101,100,99,101,110,102,113,110,105,100,104,110,102,106,119,104,100,95,110,100,102,107,101,107,103,105,105,96,109,111,99,92,88,107,115,100,102,108,108,88,111,104,106,110,108,102,94,108,102,81,109,90,112,116,116,98,108,90,105,105,98,100,111,105,95,102,102,99,110,97,91,102,129,95,102,98,110,121,113,111,100,113,99,102,106,102,115,100,83,108,87,103,104,103,110,111,95,100,107,108,104,95,107,94,99,101,104,99,109,105,97,102,110,104,102,107,104,101,101,81,91,95,113,111,113,106,96,108,109,102,115,109,94,102,109,123,103,112,104,104,106,103,103,102,101,107,100,106,87,99,96,127,116,107,108,109,101,84,109,111,106,99,101,100,99,98,102,100,95,118,96,109,105,85,113,89,100,103,94,94,98,106,98,120,94,99,111,91,114,99,100,103,107,104,100,103,109,110,128,113,105,112,98,106,105,116,118,93,102,102,106,119,102,93,106,101,95,103,104,110,98,112,95,102,102,104,104,115,97,108,102,109,101,96,110,113,111,128,102,114,96,95,109,112,88,97,99,107,99,81,103,112,110,104,115,104,107,117,97,97,105,109,112,105,92,88,103,92,105,109,107,90,94,105,116,98,99,104,99,112,108,104,108,89,90,109,92,106,121,100,99,111,96,104,104,105,114,105,106,113,101,104,106,96,103,112,97,101,116,95,107,111,101,97,97,102,94,107,98,110,86,95,82,104,111,99,109,104,102,93,102,115,99,108,103,98,94,112,91,99,112,113,106,105,92,106,104,101,99,106,107,107,102,92,98,105,112,102,103,110,100,108,98,98,104,99,92,93,108,110,119,105,94,111,106,104,117,107,109,107,98,99,111,96,116,105,113,105,105,99,97,101,94,98,98,104,106,96,102,119,115,120,100,100,100,105,95,94,98,104,109,110,109,115,111,102,103,88,107,94,110,94,92,98,112,106,90,94,77,103,98,100,101,93,97,97,99,102,106,99,106,105,97,96,96,95,103,102,111,93,109,95,97,91,100,92,112,108,97,95,105,86,124,93,96,115,99,97,119,92,111,99,104,107,112,116,104,109,77,117,103,97,113,106,97,100,112,112,97,101,103,106,103,101,100,101,85,112,117,106,102,96,99,105,99,103,120,93,107,98,103,101,100,89,98,91,109,93,104,96,98,104,113,115,78,105,113,99,93,99,99,97,99,106,105,101,105,99,107,84,107,109,96,98,76,96,99,103,107,105,111,88,94,114,96,101,103,96,112,103,100,100,97,92,105,121,108,105,98,97,94,96,95,101,103,110,106,104,92,125,110,119,123,97,109,97,100,100,99,116,107,105,97,105,92,98,97,112,107,105,98,109,102,94,103,118,102,116,95,87,103, +680.62866,109,96,102,92,91,108,95,88,91,99,92,107,104,104,107,108,99,110,104,101,106,101,101,91,107,100,91,111,105,112,113,97,83,68,107,105,102,107,100,98,99,87,99,93,91,103,97,105,106,101,94,101,88,108,116,105,101,99,111,96,101,104,94,89,100,100,83,110,102,98,108,86,99,100,90,95,120,99,109,99,107,105,101,115,97,87,110,103,110,95,108,82,94,105,95,107,122,104,96,108,119,113,104,78,109,110,87,98,100,101,102,101,101,100,87,107,95,104,99,106,95,98,104,99,101,95,109,113,100,96,93,98,97,107,103,107,95,117,98,123,105,105,110,105,96,96,108,100,97,99,94,94,98,98,87,113,103,89,104,97,94,103,96,116,104,112,116,117,99,103,87,89,105,105,102,102,97,103,105,96,94,112,104,99,98,106,99,97,111,92,93,103,91,93,104,108,101,103,91,118,68,108,104,95,86,97,110,88,102,104,105,106,96,108,88,101,85,100,86,100,106,109,93,96,97,104,97,103,101,101,98,104,103,103,110,100,91,112,99,102,101,108,108,103,105,107,110,96,98,103,106,116,101,108,110,99,99,98,94,121,93,102,101,90,101,109,92,97,88,92,95,97,106,115,95,104,109,105,93,96,101,100,106,107,94,105,109,101,111,101,106,105,116,102,104,104,113,98,109,112,110,110,104,108,103,104,109,111,102,119,101,99,104,101,94,91,102,101,103,100,96,103,72,99,99,104,106,114,99,126,120,97,106,103,115,112,106,99,100,99,101,109,109,109,88,103,88,107,104,105,100,105,118,99,126,91,107,101,105,97,101,92,97,97,97,94,101,92,105,100,119,100,103,105,101,107,100,108,89,91,104,106,104,96,105,100,98,104,103,91,107,104,91,105,101,103,95,104,108,104,72,109,101,88,94,101,99,104,118,109,97,88,95,104,102,101,92,92,102,103,103,95,102,99,95,94,98,96,98,103,105,102,102,102,101,108,102,108,100,100,116,105,95,104,92,106,103,102,112,106,87,88,110,108,101,91,103,92,104,102,102,113,103,100,101,99,100,83,100,113,89,103,101,100,108,105,99,97,104,105,94,100,82,104,106,116,114,110,98,97,104,111,97,101,100,100,106,98,105,109,104,92,95,98,99,105,91,100,96,102,94,89,107,105,109,104,102,118,106,95,111,102,108,91,98,103,102,103,104,99,82,103,96,98,94,103,98,100,98,112,112,106,107,102,96,98,104,93,99,110,95,94,106,103,106,108,99,97,102,87,100,108,98,99,109,91,110,112,102,111,99,94,98,113,99,100,109,111,109,108,100,95,114,98,113,101,101,117,117,92,94,98,100,107,95,92,80,100,90,105,101,111,115,100,97,94,104,91,103,101,100,104,114,98,94,101,110,97,100,105,108,105,98,96,105,101,95,101,102,99,107,88,92,106,107,99,90,89,99,93,110,104,102,104,96,90,99,129,96,115,99,110,104,96,107,85,109,108,98,107,112,97,86,103,91,106,103,71,103,99,105,110,108,110,104,91,101,97,102,87,103,115,106,98,97,96,96,91,111,100,100,111,102,104,99,107,96,97,113,94,88,90,100,124,104,108,109,105,102,98,111,107,99,116,100,97,106,126,106,98,101,109,112,114,99,85,100,101,108,105,102,108,99,102,103,104,104,96,101,81,109,102,108,101,107,102,99,102,123,104,103,99,99,103,91,104,106,93,111,100,113,110,88,96,100,105,86,100,114,98,99,103,109,84,112,99,97,102,110,103,92,97,103,109,100,105,99,98,95,104,100,112,107,104,93,84,101,103,107,105,106,97,96,100,97,105,107,108,97,100,106,103,97,93,115,110,116,114,97,103,96,109,98,98,122,97,105,99,115,103,98,102,98,108,99,100,87,107,97,109,104,104,108,105,107,105,97,98,106,104,102,97,98,103,97,93,101,108,100,107,92,74,92,140,103,94,96,99,112,113,117,100,93,106,97,94,104,108,99,101,93,102,103,102,92,97,102,105,107,98,104,108,92,112,105,105,102,112,91,98,103,113,116,99,108,105,98,96,94,95,104,106,109,104,113,84,100,107,96,101,107,96,99,99,106,97,104,115,109,101,95,110,98,121,106,117,93,109,103,108,116,98,91,114,98,102,99,107,108,106,100,102,117,102,97,90,103,102,112,105,93,111,104,121,106,112,101,78,109,107,100,114,95,100,97,105,109,104,90,93,93,118,101,98,95,113,100,110,83,105,109,100,103,99,100,107,94,103,90,95,121,110,97,101,93,104,95,109,97,107,102,105,90,96,110,98,91,100,114,113,102,110,93,106,104,86,98,109,105,72,123,92,95,106,104,87,118,108,99,106,106,122,95,98,99,101,108,107,96,99,98,112,103,94,95,104,94,107,105,104,115,104,106,96,99,96,97,110,108,90,93,105,97,102,97,102,98,101,101,97,99,91,107,103,90,98,102,97,115,97,105,113,112,98,101,113,96,105,102,104,102,102,97,108,99,103,99,107,101,102,112,112,110,92,108,107,105,83,97,109,107,107,102,106,97,98,107,104,115,109,105,106,106,99,102,99,95,96,106,98,96,94,89,111,94,90,108,105,99,113,112,103,102,108,106,106,104,101,90,110,113,80,105,98,92,89,103,73,104,106,103,106,109,107,93,107,95,107,87,102,107,105,105,98,99,93,114,105,108,100,107,96,99,104,100,113,102,95,116,100,112,115,109,92,107,110,104,94,117,112,101,116,110,91,107,113,107,104,94,98,108,109,96,107,95,107,104,105,108,105,97,101,95,108,99,69,110,87,107,109,107,101,106,91,98,97,109,104,109,97,105,101,110,102,105,94,110,102,115,104,106,116,107,102,109,110,102,101,101,104,86,109,100,72,98,106,116,101,104,115,103,102,106,98,100,114,97,110,103,81,110,107,102,105,95,109,106,108,103,101,115,103,103,109,100,88,107,107,107,104,109,74,116,97,105,93,103,109,107,103,103,100,107,124,108,103,106,113,92,102,106,92,108,106,99,122,116,97,103,123,100,105,113,87,101,95,95,99,118,99,108,130,111,101,100,112,118,103,118,104,109,99,106,105,106,89,102,104,108,104,100,115,95,103,111,88,88,106,113,81,112,101,87,77,97,91,91,99,98,108,87,98,103,102,95,104,98,112,106,103,98,107,98,104,102,107,102,109,100,113,107,109,99,101,102,79,103,102,101,104,103,100,107,104,102,102,103,102,106,107,95,107,103,100,108,111,104,104,107,82,103,98,105,102,86,100,91,89,105,109,130,91,102,113,99,108,90,98,106,100,97,97,110,104,107,94,111,108,105,111,95,99,115,96,100,108,106,109,86,100,112,98,107,96,99,86,100,94,109,106,111,102,98,105,116,106,111,109,96,108,101,99,109,110,100,98,117,99,110,107,110,102,104,112,92,116,110,111,109,95,103,104,95,107,111,112,96,118,101,103,112,102,115,95,94,100,122,99,104,94,110,96,91,100,118,96,102,99,102,91,99,111,110,99,107,116,106,108,104,107,77,107,104,105,108,109,98,109,104,106,103,108,107,107,87,106,107,104,106,94,107,112,99,99,106,103,109,99,97,105,92,106,108,101,102,99,99,99,124,104,104,103,112,109,100,101,116,108,105,87,96,105,105,113,107,90,86,111,107,105,110,113,96,95,90,102,106,96,103,95,104,101,98,105,106,95,105,101,105,90,105,91,111,102,103,97,107,117,105,95,66,102,107,102,106,103,117,93,122,100,104,98,106,108,98,107,91,93,108,99,92,111,96,98,101,109,97,100,100,101,104,108,100,110,113,113,116,99,104,106,88,101,102,97,95,99,99,100,115,96,104,110,111,107,110,105,109,101,97,105,98,110,95,100,98,101,113,94,100,106,105,96,98,101,103,93,115,103,112,107,105,96,107,103,105,102,98,102,89,114,102,121,103,108,103,102,102,95,95,101,91,101,92,89,95,108,100,106,92,102,106,113,99,105,112,108,104,108,119,113,104,106,117,105,104,105,116,112,95,112,103,117,91,100,98,126,99,103,94,107,100,108,110,110,98,106,108,105,107,104,110,106,97,111,111,117,103,103,88,100,106,96,103,92,114,111,86,96,111,102,101,98,102,109,100,99,100,108,103,100,99,99,113,98,123,103,103,114,104,105,105,105,117,101,111,107,98,103,101,102,117,107,85,103,104,113,102,104,101,104,101,92,107,106,95,105,97,106,111,102,103,100,111,107,105,108,107,110,104,107,103,99,109,107,104,106,114,100,104,105,87,107,98,115,115,100,112,103,101,108,107,100,110,106,102,94,100,103,96,108,108,98,112,108,107,97,121,103,106,111,110,108,118,118,87,88,103,119,107,100,110,104,103,106,108,102,103,115,109,110,99,91,94,90,96,112,104,103,98,101,105,111,103,108,102,104,91,103,98,104,110,98,96,110,104,102,87,99,96,102,101,98,112,100,110,105,104,101,100,115,113,91,93,112,112,103,106,107,96,107,108,97,107,104,102,111,119,107,108,102,97,113,107,107,113,87,101,96,107,104,102,98,104,100,95,111,112,95,110,104,99,76,109,103,106,97,96,98,99,100,107,112,111,100,105,106,97,89,68,104,102,105,102,104,100,100,102,98,109,119,105,88,101,99,122,104,128,108,113,121,92,108,103,108,107,98,121,114,99,114,119,102,106,104,91,107,103,97,98,96,92,101,96,106,111,99,103,97,109,109,109,111,108,113,88,106,100,106,102,110,90,113,104,109,106,111,97,99,99,105,99,89,92,102,104,105,105,111,103,101,99,89,95,109,114,113,116,110,113,87,97,108,94,106,109,108,90,113,100,94,112,115,95,101,94,93,116,102,106,93,99,113,106,94,107,100,116,97,105,91, +680.76996,99,98,95,95,89,96,103,91,99,97,99,100,87,100,95,102,94,102,106,120,112,92,117,101,98,92,100,103,100,106,107,99,104,91,104,115,106,103,108,101,101,107,106,91,89,103,107,84,95,106,107,107,97,97,110,98,100,106,101,95,98,117,94,113,121,101,96,110,96,99,94,102,109,107,100,108,103,108,113,96,106,99,102,98,101,100,97,100,104,97,106,96,106,96,100,111,96,104,96,98,101,102,95,104,97,107,81,97,63,92,94,109,96,93,106,104,105,102,106,95,111,102,85,108,109,87,95,100,114,113,110,108,100,103,104,91,95,107,93,108,100,108,92,96,95,83,98,104,102,97,95,96,96,94,95,109,83,106,102,104,98,95,99,110,99,97,94,103,95,96,120,96,103,104,99,90,96,103,99,101,101,103,104,110,129,99,101,97,91,102,89,98,92,104,102,84,99,96,96,87,92,97,97,111,92,110,96,102,103,107,105,92,105,113,99,98,87,98,109,95,97,107,95,87,100,102,91,107,92,105,99,101,105,103,99,99,111,101,113,102,87,105,108,104,110,105,111,102,107,91,79,99,113,108,96,94,95,116,86,95,91,104,99,104,91,103,91,99,99,99,109,97,102,114,105,100,95,101,102,97,105,100,91,96,102,96,94,105,89,95,102,99,99,106,93,101,96,101,97,107,103,103,108,117,95,110,100,94,90,105,92,95,97,94,98,104,100,106,91,121,110,94,106,104,104,97,103,102,99,70,96,95,106,91,98,98,108,100,103,102,95,88,98,101,105,101,102,101,98,96,89,102,105,104,99,101,97,104,98,96,104,100,111,97,108,101,95,112,98,104,109,105,96,104,96,136,98,100,90,96,91,97,107,101,99,97,91,114,88,97,108,93,92,112,99,96,98,108,102,104,104,100,89,105,104,97,102,108,102,103,93,89,102,107,82,98,112,109,105,99,99,93,94,104,107,93,104,100,97,104,109,104,108,104,88,99,84,105,99,98,106,102,111,102,92,112,95,97,100,102,116,107,107,100,103,92,103,99,95,94,86,107,100,114,100,96,104,107,99,97,109,97,112,110,114,93,86,115,111,97,104,98,105,96,106,102,100,105,109,111,105,104,106,104,103,107,114,100,85,93,116,116,99,100,97,109,98,98,102,98,96,92,91,102,96,88,105,106,107,94,101,97,103,99,100,114,96,108,105,105,97,101,105,104,103,112,105,92,103,99,96,105,97,111,114,103,100,102,88,103,83,98,105,103,95,105,115,110,100,103,108,101,105,101,95,110,102,111,105,98,91,86,120,101,109,100,113,105,110,101,108,76,95,98,104,110,106,101,104,91,100,111,110,89,103,110,102,93,117,102,103,104,110,101,111,97,110,110,91,115,104,96,109,108,105,123,102,115,98,96,114,111,97,97,109,105,89,97,101,101,105,107,96,99,110,97,99,96,113,98,101,106,98,95,108,106,108,96,102,91,92,114,102,103,104,120,89,97,110,114,109,104,104,100,93,98,109,111,102,92,96,105,97,103,97,104,99,109,106,107,105,117,113,97,118,107,86,103,100,92,105,110,104,105,95,111,100,104,96,99,100,105,89,103,140,112,106,109,95,100,101,102,115,101,85,96,106,98,99,99,103,104,108,108,96,102,95,110,104,105,111,103,108,92,94,102,107,97,108,97,93,83,97,101,110,114,103,90,108,112,108,100,99,87,96,114,98,96,122,95,110,103,62,98,100,99,104,93,111,100,99,95,101,96,98,99,101,91,113,98,102,109,117,91,108,108,100,118,107,103,94,101,109,98,88,108,91,97,100,103,101,98,95,104,106,111,104,106,105,82,107,102,94,96,118,84,107,98,101,95,106,109,117,101,95,106,101,101,99,96,94,103,116,98,103,106,102,108,100,101,107,93,95,95,93,101,101,92,98,99,115,107,107,95,97,98,118,101,92,100,98,100,98,98,90,95,99,105,98,98,110,113,102,100,102,108,103,100,98,104,113,98,102,122,76,100,88,103,109,110,106,95,104,102,108,99,105,96,99,89,92,99,104,101,102,99,96,94,99,107,93,99,103,112,117,102,102,99,92,96,112,110,103,99,98,99,101,95,102,103,99,103,102,107,103,100,76,100,102,107,94,97,94,95,97,98,100,108,86,98,99,108,105,100,105,108,105,113,96,101,106,95,112,99,98,98,109,103,104,107,81,102,108,90,87,115,104,99,93,105,112,99,105,109,104,103,104,109,89,89,106,91,105,94,99,113,100,98,95,102,71,112,102,103,100,113,96,97,100,106,87,114,96,104,99,105,91,100,95,96,102,94,114,95,113,88,92,94,99,100,102,106,108,97,104,93,109,115,106,104,112,113,108,94,92,102,113,87,105,104,108,99,105,117,91,114,109,107,99,102,105,100,113,89,111,95,107,90,95,93,98,109,100,96,98,97,103,110,99,106,95,96,97,105,103,100,101,108,111,106,94,109,94,80,81,104,107,95,106,94,103,102,98,100,100,109,107,74,96,102,98,116,114,109,99,94,105,93,101,60,100,89,104,97,89,97,103,104,112,105,112,117,102,97,97,103,104,86,103,98,116,94,97,97,106,117,105,97,108,135,109,103,111,104,107,103,109,105,123,100,104,103,100,100,103,113,116,101,102,106,102,102,100,112,92,105,108,94,99,105,105,107,111,119,113,113,108,112,100,106,94,96,108,109,101,94,94,105,101,91,116,101,91,102,100,104,100,102,86,110,94,120,105,112,106,109,113,109,116,105,103,112,87,106,99,109,100,113,90,104,98,99,107,104,95,95,99,87,100,104,121,104,105,101,108,99,98,107,117,111,102,74,110,114,97,97,87,129,99,102,114,98,103,102,117,112,91,103,98,109,105,104,107,100,105,105,95,92,124,99,110,109,101,104,97,80,93,114,105,112,113,95,96,115,109,103,104,101,106,115,103,100,108,113,103,107,110,98,82,98,110,110,105,99,111,98,90,101,117,106,109,103,97,108,98,98,102,108,105,113,100,100,95,107,103,100,95,94,111,109,98,105,99,96,117,116,110,105,107,98,100,107,99,104,92,103,105,108,109,101,106,106,112,109,112,87,129,108,105,105,113,95,99,111,102,94,106,101,97,100,87,94,102,112,97,103,104,81,105,104,100,101,108,109,101,107,109,97,114,103,118,116,100,111,99,113,78,100,106,112,76,109,94,107,109,94,100,99,100,96,101,105,103,95,105,95,113,105,110,99,101,111,112,110,107,109,103,107,109,102,103,102,99,101,105,106,102,119,98,98,103,101,99,109,98,101,109,104,102,104,107,108,94,109,109,105,109,102,111,107,88,94,108,100,108,108,101,95,112,92,101,106,100,109,117,106,96,94,105,106,99,103,91,109,105,95,95,101,104,91,102,86,104,103,109,93,109,111,104,98,99,103,98,109,96,99,105,105,104,103,102,99,111,105,101,121,110,97,94,101,113,103,102,104,109,104,103,108,107,96,112,100,107,101,112,113,103,107,103,104,121,107,123,103,101,116,102,101,98,98,95,109,102,106,105,114,111,115,109,114,106,108,116,104,104,116,102,96,108,108,110,105,93,102,106,105,106,98,97,115,95,110,103,118,98,95,109,99,113,105,105,102,100,95,106,98,116,108,113,98,113,102,104,103,111,117,93,115,108,104,103,117,93,94,102,102,105,97,105,90,101,111,111,111,87,98,102,103,118,96,96,103,105,106,117,107,106,89,84,95,107,89,109,99,104,106,99,105,92,95,102,106,109,110,109,94,100,88,103,104,95,97,101,105,113,110,103,115,106,105,100,114,106,104,103,109,108,102,102,110,96,104,102,104,116,98,99,119,104,79,106,99,112,103,100,109,112,104,113,90,103,104,95,123,98,94,110,104,108,103,100,108,87,109,94,105,115,93,95,101,106,106,108,95,104,96,100,111,105,107,97,104,111,93,104,96,64,104,104,101,103,105,106,101,113,95,103,106,97,105,102,106,85,99,112,100,90,103,109,102,111,96,109,98,109,99,98,100,122,103,101,109,90,109,101,108,112,99,76,109,107,107,115,82,111,107,105,101,94,100,104,110,103,108,99,112,112,96,114,107,96,102,113,113,106,105,108,93,113,100,97,90,108,104,98,100,114,92,106,105,106,94,99,97,109,132,101,101,105,112,98,114,103,99,113,106,105,103,116,107,106,114,101,100,95,106,112,103,104,93,112,100,95,119,95,105,96,118,108,101,92,113,102,105,126,100,98,98,107,98,105,97,118,115,129,94,91,93,95,102,100,94,100,97,103,103,99,104,100,121,112,117,105,106,103,123,76,107,95,98,111,109,94,126,92,97,107,102,98,112,120,101,117,111,95,105,107,111,107,105,103,108,105,118,104,97,104,112,84,100,99,89,106,108,99,107,97,109,105,110,99,95,94,99,107,95,102,105,97,108,103,104,112,113,110,103,105,104,101,114,112,93,105,102,107,104,95,102,103,101,106,111,81,97,100,115,103,106,103,102,96,104,105,97,100,116,117,115,96,105,112,103,104,99,98,107,94,100,104,101,92,105,107,77,87,109,103,83,105,98,108,98,104,107,115,98,101,105,101,88,103,96,111,111,106,100,110,104,99,109,102,101,100,90,97,99,110,112,106,98,101,108,100,111,100,96,98,109,101,108,103,94,102,102,111,106,103,110,110,98,118,110,113,112,108,97,100,95,96,100,100,107,103,112,109,116,116,101,112,108,116,106,98,108,102,87,111,100,77,109,104,109,100,94,101,116,98,106,105,106,95,103,101,104,116,106,97,83,103,105,102,110,104,99,100,102,94,109,106,98,102,105,100,124,96,114,83,100,111,100,100,103,99,90,106,95,102,109,96,91,109,98,101,112,108,105,107,97,87,134, +680.91119,108,106,78,116,104,106,96,96,103,114,100,99,104,99,97,101,105,89,117,112,105,98,93,101,90,106,105,99,110,101,119,104,101,106,106,113,92,98,105,99,100,101,64,109,91,109,111,108,99,103,93,97,98,100,106,97,94,97,110,101,100,106,104,103,112,104,95,115,97,102,103,100,92,113,100,114,102,106,98,95,98,97,109,109,114,106,113,107,111,107,121,110,98,98,94,91,103,104,89,100,94,106,101,100,92,103,97,113,84,79,88,101,109,98,100,90,132,105,135,108,92,106,106,95,82,106,111,109,113,100,96,99,107,114,111,107,103,102,98,95,107,96,69,103,99,110,104,102,101,103,92,107,113,99,110,98,98,103,112,101,109,115,102,122,99,97,103,98,110,106,109,98,116,96,99,103,89,96,109,104,100,112,97,103,95,98,105,98,92,86,101,108,99,106,101,101,107,109,109,92,90,103,104,100,96,96,95,97,106,99,94,108,118,100,99,107,96,92,105,98,109,97,94,95,97,105,114,106,105,97,91,116,95,103,108,103,95,107,91,107,98,100,103,105,98,91,116,99,103,120,96,99,108,88,97,112,101,104,98,103,100,98,104,97,109,96,105,105,105,90,100,100,106,99,114,103,101,101,100,110,97,108,116,104,90,94,96,95,111,101,100,100,103,112,102,106,102,104,114,100,103,103,105,110,88,106,107,111,109,113,90,96,101,100,115,97,99,100,89,91,100,98,108,109,105,97,105,96,106,114,99,89,102,86,105,106,105,98,104,100,109,111,107,107,106,83,100,109,104,92,90,95,100,101,94,103,94,120,92,96,115,96,93,103,91,104,107,107,102,98,106,105,114,113,103,102,105,98,106,112,114,105,102,101,108,98,107,104,116,100,99,101,94,105,96,101,102,102,107,118,93,104,105,98,104,83,125,105,105,108,105,90,96,118,101,97,95,98,102,97,90,96,100,109,99,97,114,100,106,104,94,100,100,104,94,95,95,108,95,91,112,95,118,106,101,94,101,101,106,103,93,102,109,104,108,104,103,122,110,106,90,99,104,107,100,98,95,101,96,104,109,111,95,100,104,109,89,107,97,114,104,106,109,97,109,86,103,108,101,101,100,105,113,105,103,97,112,101,98,87,104,91,134,101,119,98,99,108,105,109,108,78,100,104,102,97,102,111,99,98,101,95,98,99,96,96,102,98,101,109,97,98,114,92,97,94,95,113,108,93,82,104,78,106,108,96,98,118,113,100,100,98,113,97,94,96,96,96,108,86,116,92,98,92,113,86,95,99,97,103,97,106,112,102,99,89,106,93,95,98,92,92,108,91,114,95,105,111,103,111,90,98,104,100,121,106,101,110,102,99,98,108,96,79,98,98,75,98,81,99,106,114,106,104,85,111,108,100,101,95,113,97,100,103,105,99,91,94,102,102,98,100,102,107,93,112,66,96,109,95,96,101,80,106,90,101,105,110,75,106,101,106,98,103,102,117,113,112,97,112,111,98,106,92,96,96,110,89,113,111,117,106,113,107,102,106,111,99,110,106,106,96,103,99,114,105,102,88,99,104,102,104,113,106,111,109,100,101,122,91,110,103,87,103,95,106,102,99,85,103,110,115,109,91,98,98,97,105,105,109,100,104,106,105,109,110,105,112,107,99,113,115,102,102,103,100,105,93,118,103,95,99,90,117,96,104,101,98,105,98,108,98,97,87,98,95,103,98,90,97,103,97,104,107,103,97,111,107,99,99,113,99,104,104,104,122,94,109,116,95,121,112,99,107,102,96,106,107,92,112,115,109,113,96,92,109,94,117,107,119,100,98,97,101,103,113,113,103,92,111,124,93,104,108,99,85,109,95,105,94,101,118,94,107,100,105,99,103,122,93,110,112,102,112,102,98,95,100,109,101,87,113,95,98,99,102,101,100,91,96,106,100,100,94,104,95,101,112,104,98,104,103,98,104,110,102,91,102,113,93,106,109,91,108,92,98,105,104,113,103,94,99,93,100,117,95,90,106,95,108,99,106,95,100,100,92,108,110,96,99,99,111,101,115,104,98,105,102,95,93,99,101,102,105,111,98,99,99,104,97,94,103,95,119,94,91,100,98,107,97,102,106,115,102,108,101,98,108,95,100,102,116,104,93,108,100,109,98,101,116,102,108,108,105,102,107,104,105,101,102,124,104,105,105,116,101,97,91,102,116,97,103,114,104,100,108,101,95,97,108,98,99,99,94,104,103,91,100,106,104,104,105,101,99,98,108,91,100,106,101,91,102,104,96,98,88,110,98,95,99,104,117,107,105,100,98,91,89,100,92,109,107,99,109,100,99,109,108,113,99,106,101,123,97,95,103,99,106,104,97,104,110,103,94,98,129,96,98,115,99,86,120,112,101,91,113,101,103,103,106,106,93,107,113,103,109,101,97,106,115,110,103,106,105,96,94,95,102,108,106,106,101,94,102,90,101,100,100,97,127,108,71,96,84,108,100,104,99,112,91,94,109,101,97,104,126,103,102,95,96,86,94,96,98,114,96,99,95,91,85,100,91,102,103,100,104,96,98,89,93,101,103,93,87,97,107,90,104,92,94,98,93,104,109,99,107,109,103,105,105,124,101,119,110,106,108,98,107,106,121,102,97,106,86,95,109,103,108,104,105,120,100,113,109,98,103,100,99,95,105,101,91,107,113,118,100,100,99,117,117,101,87,104,106,106,103,103,101,103,113,114,79,112,93,110,121,102,113,99,82,103,96,103,107,94,101,99,113,94,102,105,97,113,111,90,104,98,109,103,92,101,112,73,118,100,102,106,107,97,121,98,81,110,102,106,99,97,95,104,102,101,107,101,128,96,98,97,113,100,106,102,104,113,100,101,102,106,98,95,102,108,99,97,94,104,109,109,107,107,108,112,100,106,98,103,108,114,101,98,98,99,104,108,106,111,98,109,98,108,105,110,101,105,101,105,83,106,109,104,108,98,95,105,101,108,105,100,104,108,104,100,108,105,103,103,104,100,94,93,93,90,91,110,99,120,124,92,117,98,114,107,100,116,117,108,90,104,100,103,108,100,110,96,105,105,96,95,97,102,101,100,113,110,103,108,94,115,95,104,97,108,96,89,106,109,100,97,111,94,97,109,100,103,101,85,94,109,104,99,111,85,97,108,97,102,97,111,95,96,118,102,102,98,107,108,91,95,105,99,92,117,99,88,93,102,93,96,97,95,98,99,92,100,95,99,104,100,97,100,105,106,115,106,104,114,101,90,112,96,106,105,94,111,106,110,98,88,109,105,98,111,91,94,104,99,110,103,108,96,90,97,113,93,98,99,119,99,107,104,83,103,114,108,98,107,99,111,109,102,104,95,91,109,91,90,101,97,92,101,97,110,102,109,95,101,105,105,105,108,96,94,99,107,100,109,111,88,113,103,74,101,94,96,98,128,107,93,90,97,108,104,101,103,95,96,98,101,99,86,99,113,100,99,104,108,95,101,109,113,100,72,99,101,106,109,99,102,106,100,105,111,99,100,116,96,104,121,100,115,100,100,111,92,110,100,93,109,92,100,99,108,98,99,114,100,109,97,90,112,85,85,95,91,110,102,91,102,101,115,108,94,109,96,104,110,99,93,105,108,100,105,101,108,105,99,94,120,89,99,105,101,93,97,96,103,98,94,93,113,93,90,102,98,108,94,94,103,104,97,75,99,106,99,102,105,104,103,98,100,101,96,97,102,104,112,101,99,97,98,104,100,95,114,102,98,105,88,93,103,97,106,112,94,82,111,91,104,102,109,123,104,100,105,87,105,92,108,99,107,92,95,122,100,106,104,69,98,102,98,101,90,102,95,110,105,99,101,85,95,96,100,106,89,107,98,94,98,105,99,90,99,107,101,96,99,100,106,91,85,111,139,107,95,103,103,91,102,96,106,94,96,98,100,106,110,100,96,108,108,91,105,103,106,107,102,102,105,98,89,94,105,116,117,101,107,104,94,109,88,99,111,104,95,95,110,88,107,95,100,103,107,104,65,131,99,109,101,101,110,108,90,102,111,108,109,100,100,91,100,101,110,104,119,88,98,107,87,99,100,108,113,109,87,103,107,116,105,104,100,108,95,90,100,97,93,108,108,108,101,95,95,106,106,120,109,103,83,100,93,107,104,103,75,94,95,104,114,98,97,87,105,123,105,101,118,99,104,106,103,98,110,118,97,103,104,104,102,98,108,102,100,103,120,100,86,100,102,109,109,97,109,95,109,101,95,99,96,101,100,96,100,100,115,102,89,103,95,109,87,112,108,103,110,94,94,98,97,111,99,95,102,102,101,112,113,93,98,92,96,105,102,110,104,104,110,99,113,113,97,109,103,101,99,103,87,104,101,100,66,97,96,109,121,105,110,107,100,113,91,113,105,103,100,105,96,105,88,90,112,107,115,102,111,114,113,115,103,107,105,107,99,105,101,111,108,113,100,95,108,112,98,102,90,99,112,121,101,113,105,103,116,103,104,105,101,104,100,104,105,95,64,105,97,107,92,115,108,99,104,119,107,105,108,106,107,95,107,107,102,99,91,94,110,72,102,109,108,98,99,94,98,108,105,106,106,98,103,109,98,124,94,102,94,103,105,111,107,108,106,103,91,94,107,100,119,83,98,106,99,108,100,102,113,110,90,104,94,104,80,89,91,100,100,128,105,94,94,97,106,98,98,105,96,107,104,100,104,99,98,82,104,100,91,109,98,93,99,85,100,100,100,101,93,105,102,98,102,113,111,91,105,92,100,110,113,100,110,106,105,102,109,101,99,107,109,96,91,117,100,108,115,109,96,106,92,99,115,127,97,110,103,106,92,96,85,99,98,100,86,95,99,97,101,96,103,95,101,113,110,101,105,96,105,118,109,95,99,99,107,98, +681.05249,117,100,96,99,93,128,84,96,87,94,90,101,102,94,109,100,95,109,99,98,107,101,83,76,114,102,116,89,96,105,102,104,108,83,108,105,103,99,76,101,94,97,103,100,107,105,94,111,111,102,108,86,92,90,109,87,102,86,91,95,79,99,110,104,104,94,92,96,103,88,101,121,101,115,99,107,104,91,98,87,101,116,103,109,96,102,105,103,106,97,98,100,103,104,89,87,109,101,98,97,102,106,100,103,90,101,95,108,103,97,95,108,98,98,114,98,98,111,111,103,85,92,105,108,106,112,103,96,114,101,91,87,99,100,106,115,92,108,94,108,96,103,80,102,95,104,111,100,92,110,107,105,100,136,92,98,86,106,94,99,100,100,112,104,116,115,87,109,101,112,102,111,104,90,91,105,101,90,99,93,99,92,85,104,112,99,91,100,99,98,106,92,101,99,98,109,100,108,98,94,111,97,111,96,94,103,111,104,115,99,104,97,104,103,113,109,93,91,100,103,95,104,104,92,92,104,105,101,109,99,98,97,105,106,108,103,91,107,106,103,96,100,111,104,109,90,106,97,103,101,88,99,97,109,94,97,106,102,87,104,96,99,98,101,95,117,99,98,99,104,97,107,97,111,91,83,101,74,116,97,101,97,90,124,94,100,93,103,105,109,92,103,96,102,118,110,98,104,99,103,100,99,100,114,116,106,105,116,91,112,91,103,86,110,105,101,94,109,102,102,112,94,102,103,94,103,96,99,107,107,101,97,98,113,105,104,93,91,92,114,100,98,102,94,92,106,100,102,100,98,100,100,95,90,110,100,103,106,97,100,110,101,109,99,98,102,109,102,87,98,120,96,102,100,94,92,100,104,95,113,107,107,95,99,88,100,85,91,98,98,112,95,89,104,90,96,117,102,98,96,101,91,99,99,108,101,86,99,98,103,98,99,98,119,97,93,101,110,106,104,104,98,100,101,99,98,98,103,94,102,102,102,105,101,101,99,110,112,97,98,104,93,99,108,89,93,99,102,92,114,89,106,98,95,96,95,95,93,105,100,98,100,99,110,98,87,100,109,105,96,92,93,96,87,108,94,108,98,103,105,101,85,92,95,98,94,99,80,97,104,102,111,98,97,101,78,96,91,106,105,117,97,104,100,97,103,99,98,109,97,98,107,100,104,110,104,114,88,106,96,101,93,91,99,114,91,114,95,97,101,108,99,96,109,101,102,97,103,98,98,106,98,102,95,103,95,90,101,99,108,93,95,102,100,101,109,99,104,96,98,91,98,103,103,100,104,109,98,91,99,90,90,110,102,93,102,108,96,108,105,105,101,104,93,92,104,107,102,115,97,110,96,103,99,97,98,101,93,98,115,89,86,103,98,115,102,96,102,104,88,108,101,110,100,108,113,99,103,104,93,98,77,93,102,129,101,105,107,95,96,91,99,98,97,93,103,114,91,103,96,105,107,104,117,98,94,89,96,96,105,88,111,122,104,95,94,110,95,102,96,98,97,108,97,86,93,101,97,109,101,104,112,101,105,96,121,95,95,122,99,98,104,105,98,88,100,95,97,94,103,106,101,93,93,102,99,98,100,100,101,99,105,90,101,94,110,99,100,97,93,102,92,114,95,91,110,112,85,94,86,98,95,99,94,94,101,100,103,107,99,105,107,103,89,98,94,100,95,86,92,110,110,108,105,100,98,96,100,101,97,99,92,89,104,99,104,99,108,99,98,113,100,86,100,95,105,102,99,105,101,107,104,101,78,113,101,105,103,109,107,113,107,101,106,104,113,109,110,103,109,98,84,97,117,90,104,104,102,100,95,93,108,104,97,104,90,105,100,95,113,95,108,106,106,114,99,101,110,88,102,108,103,103,102,123,101,106,101,107,104,95,113,104,105,101,90,105,104,94,99,106,107,89,120,99,107,92,93,83,109,98,89,91,105,101,103,103,99,93,105,99,103,99,108,110,95,99,101,110,103,100,105,100,124,105,94,93,88,80,91,106,119,93,102,79,104,99,118,99,105,109,99,102,97,106,86,105,105,88,107,103,107,109,99,97,97,101,99,100,94,103,100,113,109,103,105,111,90,74,100,101,106,102,108,98,100,117,99,102,90,106,109,98,107,95,101,101,107,98,107,96,97,110,93,89,105,101,96,90,99,114,92,106,111,102,92,110,92,95,107,108,89,92,113,100,106,94,98,94,114,86,103,84,89,94,100,124,97,111,111,101,103,108,103,96,101,98,106,103,95,101,110,109,96,101,101,103,109,97,93,99,99,113,109,95,98,92,110,103,112,99,89,95,100,102,101,89,88,74,96,108,101,103,92,98,91,104,97,90,101,116,98,96,101,104,97,102,112,95,99,97,100,87,87,92,94,69,95,99,100,101,108,104,112,105,128,100,101,108,111,105,98,93,97,105,98,78,108,101,104,93,114,92,96,95,120,110,100,93,103,107,106,98,100,111,111,92,87,104,107,102,97,104,100,101,94,82,103,108,120,112,112,108,99,107,89,109,105,81,99,106,112,96,102,103,106,99,102,102,113,103,94,105,95,100,106,107,102,105,115,94,111,98,96,105,88,100,97,103,98,105,91,99,104,88,94,79,102,98,102,118,108,112,104,104,84,91,94,98,119,111,89,101,89,110,106,98,99,105,100,101,102,101,99,90,99,106,100,109,102,103,117,85,125,103,128,109,90,98,102,94,107,107,108,112,97,113,100,124,100,100,107,103,107,115,113,118,106,97,103,105,91,92,104,113,109,97,112,106,99,96,100,113,111,102,109,92,100,103,102,89,109,108,110,100,97,89,120,105,100,108,94,94,92,106,120,102,105,112,92,115,107,102,93,97,95,94,106,117,118,109,104,104,106,106,102,118,94,101,99,107,88,116,102,89,84,89,94,108,108,100,110,97,106,99,99,111,113,100,110,94,103,104,98,108,99,96,92,111,104,114,100,107,113,104,109,129,112,106,112,91,101,102,88,95,95,100,98,104,107,101,103,105,97,96,110,106,97,96,93,108,106,103,106,110,104,99,98,113,109,107,106,108,104,106,116,101,97,105,87,97,105,102,89,104,89,99,94,98,92,109,101,94,104,117,94,110,99,102,102,99,99,95,100,100,105,107,107,98,99,108,102,105,102,108,104,103,98,93,108,101,96,116,101,85,116,103,102,107,96,104,108,112,100,102,103,100,76,103,104,104,98,103,112,109,101,111,113,113,100,107,107,99,100,96,106,98,97,109,105,100,107,87,107,91,97,102,109,100,98,112,77,103,97,72,105,95,97,103,96,116,88,112,101,103,100,110,103,102,102,101,124,94,92,109,122,97,108,102,76,119,109,139,98,101,104,125,98,102,101,117,99,104,100,98,106,99,91,112,94,102,94,102,108,96,99,109,113,124,113,102,107,96,102,95,101,109,99,115,87,106,94,113,94,98,107,106,92,113,107,104,106,110,94,95,104,108,96,96,113,119,103,101,114,99,108,97,108,110,131,110,100,97,107,114,123,103,109,109,100,117,105,103,106,93,102,98,79,100,75,97,100,108,102,109,101,102,87,112,119,107,110,107,97,97,101,98,94,94,97,109,111,109,104,97,96,109,102,99,100,89,112,92,109,121,111,104,116,100,107,116,110,92,95,105,102,85,110,115,103,94,95,106,109,99,95,105,116,95,90,79,114,93,109,94,102,109,95,112,104,113,105,137,98,108,100,115,94,102,99,87,98,109,74,96,100,92,104,106,96,100,109,112,110,100,83,101,103,103,107,119,74,97,104,97,96,107,106,107,76,102,108,96,105,104,100,101,109,106,99,107,94,120,93,100,105,98,103,101,112,89,104,97,95,97,108,113,109,105,98,98,99,96,94,102,106,108,91,92,100,106,98,90,82,113,104,92,88,108,90,104,90,109,102,108,100,102,96,102,106,88,109,113,90,101,112,108,128,103,98,108,113,91,99,94,116,91,100,105,102,107,105,101,100,112,101,94,87,93,111,95,106,103,109,105,89,94,106,110,89,106,84,107,97,119,89,97,106,111,99,102,107,107,87,108,102,104,98,113,99,98,106,104,103,102,104,102,106,82,116,101,111,103,96,95,120,106,109,100,111,113,100,101,112,84,107,104,108,97,99,98,98,84,98,98,98,102,101,100,98,102,103,97,97,104,99,111,100,101,125,102,117,102,98,108,113,101,96,85,92,108,105,95,119,108,99,105,104,114,118,96,100,106,84,99,105,100,112,101,91,94,102,118,97,96,98,112,93,111,99,106,104,102,95,98,108,103,100,91,112,93,96,104,110,98,102,94,99,104,113,94,106,106,98,103,88,103,98,102,114,99,106,101,105,103,98,108,104,105,108,93,105,108,111,95,109,107,110,91,99,105,107,101,100,95,98,109,109,101,97,95,99,108,102,111,102,101,104,93,103,89,99,117,105,114,100,92,105,112,100,109,100,96,105,103,111,104,103,99,100,111,98,107,98,102,96,98,91,106,96,91,101,88,89,98,88,106,96,88,105,97,100,101,109,104,112,94,103,93,98,110,104,104,106,105,98,102,101,91,101,107,93,108,110,84,113,116,100,113,100,102,80,99,102,103,106,96,112,118,103,105,94,101,106,93,95,106,93,92,92,103,101,107,91,107,101,112,101,109,100,83,93,111,101,97,102,107,97,94,102,100,106,101,105,99,95,101,101,99,123,90,97,111,104,94,113,114,92,95,101,87,84,80,99,102,117,92,88,78,101,103,102,86,110,91,97,95,98,100,118,106,101,101,103,113,117,115,96,117,92,100,90,111,105,105,108,103,106,107,105,104,94,109,100,111,106,104,105,103,106,118,107,92,118,109,101,97,104,108,83,96,99,110,99,99,100,111,107,105,99,106,100,106,115,109,102,109,103,95,96, +681.19379,91,90,91,89,90,110,101,109,112,102,97,92,99,96,103,101,116,120,120,101,121,109,120,107,102,106,100,108,106,105,108,97,108,98,110,91,106,101,100,96,105,107,102,88,105,95,99,102,104,111,100,97,102,109,97,112,94,92,113,101,114,97,87,92,99,101,99,108,107,90,97,119,106,105,98,107,102,105,106,104,101,108,113,102,86,94,116,97,88,104,100,118,113,98,99,101,105,90,105,102,105,110,100,102,87,96,100,96,106,96,106,105,105,98,107,98,105,100,113,102,109,102,105,103,90,90,100,88,105,106,95,105,115,102,95,105,100,99,94,99,100,98,97,91,93,106,99,102,105,92,102,100,100,107,95,86,114,108,101,111,92,107,106,94,103,108,96,93,93,106,92,101,71,105,101,93,100,95,99,90,106,91,107,107,107,95,99,106,102,110,101,101,104,101,97,96,101,100,104,99,101,113,82,110,101,94,93,85,105,100,86,96,94,98,92,97,110,102,92,99,108,100,98,95,105,104,105,105,96,104,91,106,104,100,101,108,116,92,104,97,106,97,105,104,101,95,93,109,92,102,101,113,90,111,101,98,100,121,97,95,77,119,109,88,103,102,107,89,107,95,98,102,107,109,101,100,112,105,109,101,104,114,66,103,107,106,110,112,104,100,99,94,116,101,95,110,113,93,89,122,115,104,101,118,103,78,105,112,103,108,95,98,93,95,105,96,104,102,101,103,105,102,117,104,100,96,88,91,101,109,109,100,106,99,99,106,112,95,91,101,101,101,99,95,94,108,109,101,109,105,90,108,98,96,98,99,111,103,102,99,104,98,95,88,104,93,97,107,93,98,98,100,102,105,108,102,97,98,97,95,102,100,91,103,99,99,101,90,114,101,100,91,95,105,103,92,109,110,96,113,105,98,104,95,105,104,104,92,108,106,93,103,111,102,103,103,92,102,106,105,99,99,97,104,101,97,82,86,102,106,106,103,102,90,97,100,92,103,97,103,113,92,107,98,83,113,99,104,103,108,104,102,101,110,117,94,101,101,91,94,106,107,98,99,91,91,91,112,106,105,117,116,108,102,101,97,92,112,103,109,94,111,100,92,100,114,107,99,108,104,95,104,101,107,100,100,79,107,114,100,106,104,110,103,101,107,93,95,91,111,105,103,87,106,98,97,98,96,95,106,101,105,107,105,113,98,106,103,92,99,96,101,97,106,108,98,113,92,101,112,90,105,90,109,106,94,98,107,100,99,118,125,97,101,105,94,94,107,109,90,102,78,105,106,103,110,100,108,104,92,92,98,97,98,107,97,102,97,99,101,82,106,91,105,110,104,87,116,104,96,98,110,98,94,100,110,95,110,102,100,95,113,122,100,95,102,108,90,89,108,94,105,110,111,103,101,106,101,103,101,109,109,102,103,96,96,93,99,103,114,101,98,107,108,92,102,98,94,107,99,98,107,125,105,102,109,100,90,91,93,104,99,102,99,85,107,100,106,105,111,103,107,98,94,93,98,103,96,103,96,93,94,104,105,106,83,104,96,121,105,114,99,113,116,90,112,91,106,99,109,106,106,95,102,101,107,97,96,91,97,101,89,99,105,108,105,105,92,104,104,126,103,105,108,77,110,108,95,96,101,107,98,89,105,97,113,96,98,105,105,111,112,98,97,104,105,100,92,94,101,108,104,98,99,101,101,104,98,107,102,114,98,100,87,95,104,117,102,111,104,96,104,97,105,104,99,95,97,92,92,79,96,113,95,83,93,99,88,106,100,100,90,105,115,94,102,99,99,102,106,111,105,96,102,97,101,106,108,96,113,98,90,97,95,99,108,83,104,117,103,98,108,107,93,111,92,103,107,104,98,97,107,103,96,106,104,99,93,105,97,103,98,94,94,97,106,100,97,104,100,96,107,97,104,88,83,88,95,83,86,118,98,95,99,106,108,99,98,90,97,102,97,105,99,94,99,108,97,108,92,102,97,100,101,86,102,100,99,101,81,95,112,103,105,100,104,97,114,113,102,100,101,88,106,101,91,99,102,77,108,97,109,108,101,82,109,108,97,95,115,104,101,95,112,101,95,105,103,93,100,106,103,99,96,102,88,110,91,96,101,98,109,101,97,103,95,102,102,103,110,110,98,91,105,82,103,100,102,104,77,107,103,111,99,94,96,107,111,100,106,93,106,104,108,107,96,105,99,110,97,105,112,102,106,98,97,100,101,96,98,97,113,135,91,101,89,103,103,97,102,102,100,105,95,91,106,84,114,95,100,101,109,90,98,95,109,107,94,92,112,102,104,97,92,89,109,105,100,97,107,116,112,105,97,98,97,104,98,96,108,106,104,95,96,99,104,99,102,98,108,94,105,101,95,98,93,106,91,116,95,87,105,109,93,101,97,105,100,95,105,101,101,104,116,108,100,116,95,101,100,97,108,86,93,98,98,103,110,102,105,102,97,98,110,97,105,95,97,107,110,95,109,117,96,103,98,99,101,103,111,98,101,104,95,94,116,85,86,104,98,104,106,99,101,95,102,101,103,96,84,130,96,93,88,105,124,103,106,102,114,78,112,99,105,91,112,98,103,98,94,99,81,94,119,99,97,97,107,116,103,103,100,117,102,98,95,102,108,106,98,103,100,111,97,103,104,100,98,106,104,108,83,112,105,101,115,103,100,99,104,105,104,90,108,76,102,103,100,120,112,105,104,103,110,91,105,108,85,93,105,111,109,106,110,100,101,91,109,73,115,88,102,96,109,109,105,101,105,102,110,115,96,101,112,104,103,98,104,107,109,104,110,101,103,107,97,99,89,116,98,91,99,98,94,91,96,116,112,105,105,105,96,104,112,98,110,103,106,114,95,97,91,101,109,99,99,122,102,100,109,122,95,100,118,88,105,112,101,101,115,103,101,106,109,103,98,102,97,112,116,112,102,99,95,101,103,90,125,106,96,96,101,94,105,97,100,106,104,79,110,94,93,112,90,114,69,105,110,100,83,98,102,101,96,104,107,91,95,95,107,110,72,100,111,107,108,85,106,97,115,97,113,99,105,91,101,110,121,100,106,105,106,106,109,105,105,96,87,102,115,103,116,103,97,103,91,117,104,113,104,102,94,104,103,102,98,100,104,91,95,104,99,101,107,103,98,100,101,101,105,87,99,94,84,106,104,102,99,121,91,110,111,102,101,99,102,104,96,113,104,106,103,85,88,102,103,85,95,104,113,92,112,98,95,99,113,116,104,114,105,107,108,104,114,110,97,102,99,101,101,108,98,96,95,98,103,97,96,105,98,94,119,105,102,101,98,100,103,106,112,104,100,95,106,104,102,97,98,109,100,100,92,91,101,96,88,113,112,102,109,97,92,102,100,98,111,99,113,104,119,95,117,104,99,100,108,109,109,106,98,87,103,104,98,108,102,104,105,112,101,103,101,105,98,101,116,96,113,95,91,103,100,109,95,102,95,112,107,106,95,106,91,107,95,99,92,89,104,125,91,103,103,95,92,100,100,86,102,94,101,104,123,98,80,94,110,93,94,112,106,117,105,101,71,94,103,112,90,113,108,99,113,97,111,105,97,108,106,87,98,121,107,111,99,95,95,78,99,106,102,77,88,106,98,100,85,99,104,106,106,99,96,103,93,112,94,95,100,103,97,97,99,100,105,88,122,95,111,109,92,98,102,106,110,90,106,108,98,100,91,107,107,96,98,103,122,111,108,95,93,83,106,102,106,114,108,96,103,98,101,105,92,99,94,91,104,110,104,100,107,102,88,120,101,109,96,107,87,109,102,99,94,104,100,96,105,102,103,109,90,97,108,114,91,99,106,102,105,102,100,98,94,95,107,108,95,111,94,108,101,109,91,92,63,102,102,105,105,104,118,112,96,101,98,99,105,105,96,105,98,99,109,92,101,113,111,109,97,115,93,101,117,102,100,103,102,102,111,107,129,96,107,95,108,92,109,103,98,91,106,105,99,113,112,94,110,105,96,102,116,108,95,103,100,99,102,97,114,106,109,129,106,98,104,97,108,112,108,109,103,112,102,101,103,108,86,98,100,102,111,106,113,116,106,106,109,99,107,98,95,105,105,107,97,105,92,109,98,103,102,111,102,106,107,103,102,102,102,119,96,120,90,100,98,124,105,106,106,107,105,111,111,95,86,100,98,110,101,99,84,127,99,111,88,103,107,109,106,101,136,110,99,112,101,103,107,101,106,102,109,106,93,99,106,97,98,102,115,100,92,104,103,112,97,89,100,98,100,109,110,94,99,117,106,104,101,96,88,102,107,99,112,114,109,91,109,108,108,104,99,102,103,104,111,101,98,97,109,103,108,106,94,109,102,83,93,97,110,96,112,103,96,96,97,92,99,107,113,102,99,97,97,106,108,95,109,117,100,95,120,100,93,102,101,95,111,94,106,104,96,109,105,101,95,97,94,97,102,104,101,108,116,108,101,91,94,117,101,99,102,98,90,97,96,92,102,105,94,97,97,100,104,90,107,103,106,106,110,113,99,79,88,104,97,109,106,96,100,106,101,120,104,99,90,109,100,100,104,103,115,107,85,95,95,105,101,99,105,96,75,109,87,100,102,99,97,92,111,109,105,102,98,110,102,93,105,104,88,109,104,108,99,124,113,90,107,107,101,100,99,98,121,105,99,81,94,101,76,96,95,100,99,103,104,94,83,105,92,92,102,101,119,112,97,104,91,99,96,114,101,96,98,100,109,106,95,103,95,94,106,99,112,112,92,103,99,95,101,112,100,108,105,103,96,101,109,95,105,86,111,94,101,108,88,100,102,99,94,102,110,109,92,89,98,110,99,113,91,88,106,93,101,105,93,87,111,103,99,116,110,96,115,104,102,103,107,112,105,102,96,105,101,103,115,109,107,89,101,101,102, +681.33502,103,93,90,106,79,95,100,102,106,103,98,99,95,106,94,110,95,116,95,105,113,102,111,86,96,110,109,92,108,98,100,98,99,108,100,84,98,113,94,84,107,109,90,110,123,97,109,103,95,104,86,100,116,96,106,99,100,100,100,94,98,100,120,90,96,102,94,91,97,106,117,106,97,91,98,122,111,94,88,101,100,105,107,96,105,92,91,100,93,94,105,110,101,95,95,101,100,109,100,81,98,99,109,101,100,90,97,98,125,99,106,79,92,112,94,107,97,118,110,90,86,103,105,91,94,110,100,92,110,102,86,114,105,107,102,105,105,114,103,99,95,102,103,99,89,101,100,106,94,116,100,91,117,97,100,103,109,107,98,105,104,93,86,104,106,105,97,84,105,94,106,104,100,99,116,112,105,95,108,100,100,98,101,97,100,107,102,97,105,98,113,89,94,85,97,80,90,91,99,102,91,100,88,98,103,110,104,95,117,117,83,107,94,93,75,105,97,97,98,98,98,98,83,99,97,101,95,97,95,75,106,110,118,92,106,114,101,105,83,103,96,96,107,102,95,107,88,104,104,102,102,91,99,113,102,109,91,99,102,101,93,100,93,100,98,103,96,75,95,92,106,101,93,93,110,105,98,104,120,99,103,107,110,96,101,99,90,103,103,91,95,95,104,99,98,109,99,94,103,89,112,101,113,106,87,82,94,100,105,112,86,105,107,100,111,97,96,108,118,102,104,111,105,104,106,91,90,102,104,110,104,105,105,103,92,108,92,92,98,99,91,94,90,107,100,99,98,108,101,78,92,102,99,100,109,95,107,106,97,101,101,88,108,96,113,105,108,105,93,100,99,94,108,104,100,102,117,109,93,95,100,100,91,99,106,93,97,100,106,96,105,101,97,102,95,107,99,102,100,94,122,96,90,95,105,94,101,98,106,95,87,95,98,107,103,100,100,100,101,101,99,98,96,105,97,103,95,96,101,103,91,106,93,101,95,94,103,117,106,97,108,106,102,102,96,107,98,100,109,118,105,101,92,101,99,104,121,106,120,68,100,100,105,116,99,113,100,94,104,104,104,98,98,95,103,96,98,98,70,104,99,104,117,97,94,97,94,98,89,95,101,101,109,107,96,97,106,101,105,90,106,110,92,102,95,100,83,104,96,96,92,117,106,98,97,104,98,108,86,96,94,113,91,98,99,94,101,96,102,106,83,91,97,96,100,105,90,97,101,106,94,90,104,92,121,91,102,99,99,96,96,99,105,97,105,100,97,116,95,95,101,106,95,125,113,103,104,106,97,101,88,94,101,109,94,102,103,101,95,108,100,113,105,114,98,95,109,105,106,101,101,95,93,92,112,101,99,90,97,105,95,104,103,112,108,111,104,101,108,92,101,102,94,99,90,106,97,91,101,99,100,98,91,97,103,94,101,100,103,98,105,101,94,101,71,108,106,116,113,112,101,100,99,103,97,93,80,101,95,112,91,100,98,104,104,110,106,113,99,116,104,86,109,98,88,91,98,84,106,96,98,97,103,105,99,98,100,93,99,101,99,110,98,96,95,101,118,105,98,99,117,111,110,102,102,98,95,106,93,98,95,100,109,101,92,107,105,95,108,110,116,79,97,109,108,99,97,108,103,91,100,90,100,114,89,82,89,98,98,112,101,92,74,105,92,94,102,97,107,91,108,100,103,88,96,106,114,103,108,114,106,106,79,111,111,107,100,92,106,91,102,102,94,100,103,91,97,109,95,96,108,105,94,105,114,111,100,99,92,84,102,99,88,101,108,90,108,102,106,99,109,98,102,96,96,107,105,89,97,104,98,103,98,102,97,104,93,98,90,97,114,94,99,108,102,107,111,97,110,109,93,96,107,95,97,107,103,92,103,109,108,101,99,99,99,113,101,103,99,90,99,102,110,110,105,99,108,97,113,93,108,91,106,89,95,95,97,87,95,131,107,92,94,100,109,104,94,102,109,94,87,114,104,87,108,103,110,95,83,113,94,100,107,104,68,95,106,108,106,111,100,105,103,100,96,88,97,111,98,98,98,104,100,105,99,91,95,105,102,106,112,109,100,107,85,105,101,110,100,106,102,95,103,106,100,99,98,108,83,100,103,109,110,98,91,105,86,95,94,99,109,94,101,103,100,113,101,105,93,118,98,111,87,120,101,96,100,103,125,95,109,93,103,97,99,98,97,98,93,89,63,113,103,102,108,108,107,91,105,97,88,117,106,95,101,67,97,107,115,102,95,91,96,99,107,94,100,109,94,79,101,122,81,89,100,101,102,106,101,99,90,112,105,102,100,94,105,115,108,104,100,120,105,87,100,103,110,94,103,99,101,113,103,102,95,98,101,100,109,102,106,102,84,105,95,105,97,102,107,98,99,104,110,104,93,100,60,106,107,104,102,96,105,115,102,93,96,105,103,104,94,112,87,102,87,104,107,96,126,95,103,101,95,113,110,114,96,91,101,98,102,102,95,100,104,98,104,103,120,112,97,106,109,107,99,102,107,102,112,106,94,107,92,88,99,100,96,109,88,109,105,101,84,94,105,94,108,106,104,105,103,106,96,100,99,119,106,103,113,85,114,101,96,107,95,90,104,106,102,102,109,98,114,106,112,115,105,105,111,105,99,102,102,94,92,95,99,109,114,83,107,84,101,104,98,86,106,98,106,94,98,103,102,97,99,97,120,100,98,109,109,116,106,89,97,69,109,91,86,108,84,107,117,104,95,100,100,93,101,103,108,114,81,99,96,114,101,96,117,84,103,102,113,87,118,104,96,106,91,105,102,113,81,108,86,104,112,112,101,94,109,92,103,90,99,104,102,95,113,103,91,103,117,96,95,107,109,103,97,114,115,83,103,94,101,97,107,106,98,101,97,100,94,125,103,95,109,114,111,92,102,96,116,100,91,96,97,106,107,103,88,101,96,107,107,107,107,99,113,107,94,108,108,106,92,91,112,110,107,95,99,98,108,91,105,102,104,100,110,102,115,102,108,98,109,104,106,98,103,109,99,87,88,112,104,102,97,100,101,110,97,95,101,94,99,102,100,113,100,101,103,108,92,98,100,106,106,94,99,111,101,105,99,113,100,115,100,107,105,102,111,106,100,103,110,98,101,103,104,103,103,99,95,111,105,91,105,101,108,106,97,97,92,96,103,109,94,98,112,106,102,114,98,92,94,102,99,105,110,101,108,102,104,94,100,98,92,96,94,102,101,102,102,86,87,96,111,98,97,106,95,98,102,108,110,98,113,98,104,86,96,106,106,109,105,85,96,109,106,99,98,110,108,107,110,104,102,110,108,107,104,106,107,103,103,101,89,94,101,99,101,118,98,109,101,91,105,103,92,93,99,106,106,114,89,105,101,104,91,105,101,106,101,107,100,112,106,108,99,104,99,112,109,112,102,95,138,99,92,126,87,104,98,106,105,73,106,105,108,101,97,106,99,102,99,105,106,96,98,110,81,112,107,96,116,103,98,95,78,91,109,104,99,93,113,87,98,103,107,90,85,102,114,112,108,101,110,95,101,77,93,109,105,103,101,97,94,98,103,109,106,109,98,99,95,101,96,107,100,94,104,98,97,99,107,102,79,113,107,111,116,99,100,99,98,92,100,103,103,99,94,105,112,100,96,102,106,99,91,102,97,111,91,111,98,103,99,85,91,106,113,105,110,98,95,106,105,102,115,100,102,94,100,102,109,93,106,104,116,101,98,92,115,92,109,99,100,97,91,94,98,96,100,94,96,87,98,97,116,102,113,88,102,113,103,98,102,97,118,97,98,96,99,106,95,104,97,97,103,90,105,98,94,86,88,99,107,105,91,99,90,104,98,96,106,99,100,99,102,94,107,109,100,104,97,106,109,88,106,100,121,100,108,113,101,103,98,103,64,94,101,104,88,96,122,101,95,114,105,102,100,101,99,100,106,106,108,102,100,109,115,92,101,109,96,109,113,101,105,99,100,108,107,104,88,101,102,104,92,102,104,105,95,101,113,102,99,92,104,103,109,83,95,97,92,99,99,95,107,95,99,99,98,89,95,106,90,94,110,92,109,93,103,97,105,87,101,106,121,111,111,93,102,102,115,105,102,101,108,87,100,97,94,103,103,99,114,95,105,100,94,95,98,101,105,105,104,96,103,112,105,99,88,94,97,114,104,105,94,109,101,102,107,88,107,100,76,110,104,103,104,98,95,101,102,104,93,108,98,100,112,112,104,98,104,102,99,105,85,102,104,103,111,102,104,101,85,97,93,98,106,92,106,112,92,110,93,96,99,107,84,106,108,100,112,80,96,103,113,106,100,104,103,100,108,124,93,105,104,108,95,95,84,108,102,95,104,102,104,92,87,111,119,104,103,94,84,100,99,105,98,99,106,109,106,105,107,101,104,95,99,104,91,99,98,108,92,107,105,96,96,107,99,96,91,101,106,98,96,97,95,93,108,92,102,78,112,103,112,102,97,100,96,105,101,105,105,100,97,101,97,93,95,97,106,114,91,102,81,94,101,105,97,109,106,101,88,87,104,113,103,96,114,93,113,105,124,101,110,97,114,105,108,102,109,110,98,106,92,106,97,100,102,88,103,109,110,100,99,87,92,105,91,110,99,101,109,98,115,97,94,107,106,102,103,91,109,94,90,99,107,106,108,95,95,130,113,86,113,97,106,96,105,97,81,95,107,103,98,102,95,95,101,111,102,102,96,91,103,100,95,99,95,96,100,113,94,102,103,93,109,91,96,117,101,92,120,105,91,110,98,100,109,98,96,102,106,99,98,95,99,94,96,99,92,99,105,106,92,88,92,99,110,98,106,91,100,100,104,109,105,114,104,104,91,112,110,95,103,96,96,81,111,98,96,108,93,116,107,109,103,97,103,100,92,118,105,103,88,92, +681.47632,112,90,83,92,92,105,97,83,102,110,99,83,95,102,106,106,88,93,100,97,111,91,91,97,95,102,95,91,103,95,86,103,95,99,100,105,100,95,104,99,96,96,92,94,103,101,91,106,91,122,108,94,105,113,99,103,105,106,106,83,95,101,99,94,106,96,107,106,97,99,98,114,100,102,110,100,125,99,96,101,84,95,103,90,94,92,87,94,102,105,104,103,98,87,106,86,104,106,91,94,109,96,103,88,91,98,90,101,100,107,95,104,94,113,97,97,126,114,98,89,108,91,94,114,103,102,90,103,82,105,99,94,101,109,111,95,90,86,106,98,102,97,102,113,91,90,111,100,97,105,93,93,85,87,98,98,99,93,108,104,95,99,99,104,103,99,106,88,96,98,104,118,99,100,103,108,86,93,97,103,90,113,114,99,113,107,96,108,103,104,90,89,98,103,104,101,110,103,106,108,96,95,113,105,72,100,111,77,121,75,91,109,100,99,101,107,102,99,98,100,100,105,106,96,91,110,95,96,99,100,92,131,102,117,84,118,92,104,118,97,85,101,110,109,99,102,96,99,108,97,99,102,96,98,97,110,97,107,99,99,99,83,98,96,92,110,113,99,105,99,98,105,100,90,100,91,103,82,97,102,99,104,95,103,102,109,94,80,104,110,105,109,105,97,103,100,81,99,106,103,97,104,103,101,82,92,97,97,93,103,100,109,112,104,96,94,105,109,105,88,84,99,118,104,97,91,109,87,101,99,103,98,106,92,97,95,98,100,93,96,90,102,95,95,95,103,108,95,100,111,106,107,96,116,92,98,95,109,105,88,105,97,97,99,104,115,103,108,99,104,101,92,111,87,101,101,108,102,94,106,91,122,93,108,108,86,106,101,113,101,99,101,103,105,97,101,95,106,118,117,91,92,98,113,102,102,92,111,101,98,88,101,109,106,106,104,103,95,87,82,101,98,97,95,109,101,88,92,105,128,101,105,101,103,102,100,110,113,89,109,108,94,102,106,93,103,91,99,102,108,102,97,107,106,104,102,101,104,103,96,100,97,84,105,107,98,98,83,109,97,103,100,87,123,108,83,104,103,98,106,107,95,113,104,105,96,108,114,102,106,103,101,97,101,91,108,100,102,96,96,106,106,95,96,107,110,97,94,105,104,106,100,93,93,105,107,93,98,102,99,103,96,110,101,101,100,83,99,96,116,90,111,72,101,97,106,101,102,101,110,103,114,94,105,67,89,108,104,85,100,106,98,96,101,101,100,101,91,96,107,93,101,92,87,90,110,110,91,94,98,95,91,102,79,100,104,84,92,105,100,100,105,104,109,101,107,109,100,101,104,108,109,95,98,108,98,88,100,105,101,99,113,95,109,98,101,98,102,91,101,118,103,102,102,106,101,86,99,94,99,120,98,99,96,102,105,91,102,100,98,86,95,96,93,90,101,104,108,73,96,112,105,99,106,103,86,97,94,100,100,103,92,114,101,100,100,99,113,102,96,100,90,97,82,101,99,109,101,96,95,100,94,105,97,100,105,102,104,110,96,103,102,101,85,92,101,96,93,90,110,91,99,99,108,96,90,115,106,107,96,97,95,81,95,109,93,112,91,93,97,103,106,111,90,100,103,95,104,110,99,116,112,93,112,97,98,91,95,105,108,100,103,99,90,98,100,102,100,108,99,104,97,92,93,93,83,98,98,97,104,98,108,105,97,99,101,104,97,97,90,102,100,86,83,96,99,91,111,108,95,102,100,97,96,100,100,103,105,117,84,91,104,103,100,107,106,99,112,103,93,106,104,104,101,109,98,86,89,100,111,97,107,101,92,95,95,95,95,89,100,106,94,101,97,103,94,141,107,108,106,102,108,96,93,94,100,109,87,93,100,108,100,101,117,94,103,97,112,107,103,88,98,106,105,104,99,94,91,98,96,102,99,95,103,109,102,97,105,109,100,95,95,92,95,100,95,89,104,103,103,104,99,106,101,94,81,96,101,88,93,98,107,99,102,108,104,100,104,109,104,96,94,91,97,101,59,98,110,91,106,96,96,108,101,100,96,99,105,103,98,108,99,96,97,97,109,98,94,88,94,100,92,103,103,97,97,85,91,105,92,108,100,99,103,106,99,100,97,114,94,99,102,92,100,64,78,77,94,89,102,98,107,109,101,108,86,110,97,108,92,108,99,91,77,113,110,93,96,104,98,94,94,98,106,110,105,95,91,110,106,105,92,94,103,106,106,85,115,84,102,111,97,106,125,79,58,92,112,77,93,113,88,91,93,107,106,111,103,101,98,93,100,97,109,110,111,96,96,98,107,104,95,110,97,105,116,105,95,101,98,96,113,100,95,105,92,97,95,99,106,117,76,95,105,101,80,102,105,97,98,107,89,88,99,92,92,86,97,95,96,99,119,98,106,97,92,95,110,107,102,108,110,107,109,100,110,92,99,102,110,92,97,115,110,102,114,111,104,100,95,116,108,103,100,101,99,105,88,93,107,85,105,106,116,109,107,100,116,94,103,106,101,107,100,82,104,92,104,93,116,106,97,101,92,106,99,114,100,101,106,108,100,106,98,117,99,96,98,119,90,100,108,91,104,94,89,104,108,112,116,106,99,122,107,100,113,118,109,95,110,103,107,105,93,105,105,111,98,122,102,101,109,105,109,107,100,110,106,125,100,110,84,92,107,101,101,106,104,116,112,104,106,106,102,101,97,102,108,112,100,105,96,105,87,116,100,99,98,102,110,102,102,108,101,103,94,104,104,94,111,106,109,102,92,109,88,105,108,101,114,98,103,101,107,93,101,107,91,98,91,105,111,128,106,92,106,100,108,104,98,110,107,113,107,100,110,101,105,101,101,112,105,115,106,115,99,108,105,100,103,114,93,99,94,100,103,104,114,109,107,98,113,105,103,100,107,95,106,103,91,98,98,99,104,104,95,120,92,106,104,101,91,101,95,103,104,114,111,100,107,105,101,69,95,107,106,112,109,97,95,120,104,113,108,103,97,112,116,104,98,117,100,83,113,109,95,105,97,87,119,103,93,104,102,105,97,104,108,112,133,106,106,107,97,87,95,105,102,113,87,102,85,101,96,110,101,96,99,103,102,102,107,104,100,99,102,112,96,97,103,115,105,100,104,99,105,98,85,99,108,94,98,113,97,105,97,120,100,108,106,106,100,106,109,92,101,105,105,110,91,102,107,95,101,95,95,103,98,106,108,99,100,111,94,88,99,102,98,114,104,106,96,100,115,92,100,98,101,97,96,95,109,99,97,108,97,100,102,99,103,102,98,106,104,98,116,107,98,114,100,101,111,109,93,107,110,95,108,107,99,97,106,106,106,94,111,91,102,101,100,102,97,102,110,102,95,103,107,106,91,95,109,99,108,103,108,102,112,107,90,105,105,100,102,105,87,111,109,99,82,112,106,108,96,106,102,93,100,103,98,106,102,99,103,109,100,101,113,103,100,119,95,105,109,107,100,103,100,101,102,102,113,96,111,107,100,111,103,97,98,97,90,106,97,95,112,108,96,95,106,101,92,115,107,97,102,97,105,98,109,110,108,108,100,94,103,98,104,97,101,98,94,102,103,103,92,106,99,105,98,102,103,101,105,94,105,102,104,105,113,90,100,115,113,103,107,96,106,110,114,109,101,103,109,101,103,100,105,96,100,123,106,103,110,94,98,97,106,108,103,108,106,98,102,107,110,109,83,96,100,97,102,95,116,98,100,105,101,113,106,99,108,98,95,100,112,97,102,98,121,104,90,94,93,88,102,94,110,101,99,97,109,99,102,107,109,103,108,102,89,110,98,75,108,108,105,98,93,102,97,98,105,117,98,91,97,103,113,98,115,94,108,98,113,101,102,98,94,111,113,107,101,88,94,104,104,96,95,108,95,108,102,111,97,113,104,109,99,108,96,110,102,110,104,98,105,103,114,108,92,98,107,100,105,102,103,103,112,99,94,101,103,106,99,92,95,112,99,95,102,115,116,109,104,110,110,107,114,108,98,103,107,101,100,107,101,96,111,92,94,99,105,101,93,99,98,104,106,91,93,99,103,125,95,95,110,89,103,103,93,107,104,103,108,101,100,102,110,87,108,105,104,90,101,97,113,105,120,95,111,97,89,93,97,101,104,95,115,91,102,100,113,110,87,98,105,103,96,108,87,104,93,116,87,112,113,105,107,97,105,100,98,101,93,118,92,71,103,98,105,118,108,109,104,105,109,103,109,108,100,95,89,98,98,102,102,83,96,113,121,112,106,104,98,98,95,108,99,102,106,104,103,117,92,95,109,103,95,118,102,103,111,102,99,102,95,97,112,103,93,105,93,107,102,101,108,96,109,102,98,81,109,113,96,100,83,112,110,99,94,113,105,106,124,100,98,126,101,100,93,88,87,97,99,97,96,91,103,105,103,99,98,91,98,93,101,105,101,91,109,101,104,102,122,102,94,100,109,105,96,101,96,85,115,108,108,104,104,102,104,103,94,91,104,110,106,101,88,97,99,100,109,100,97,96,91,99,113,111,99,105,85,109,108,104,120,103,132,98,104,103,96,111,96,106,95,99,102,105,96,104,96,90,108,123,102,108,110,80,106,119,106,107,105,94,93,106,94,110,99,96,111,104,97,99,105,109,106,96,103,98,107,100,113,105,107,118,91,102,116,102,98,87,112,86,102,97,107,97,94,103,107,120,113,96,104,105,102,103,105,92,111,98,104,96,105,102,109,98,99,104,96,101,96,87,100,93,98,108,88,114,102,104,98,104,110,91,79,103,98,106,112,106,96,98,103,120,90,97,105,113,95,106,101,117,110,104,105,93,112,100,92,87,92,84,104,98,115,111,100,82,93,111,86,107,94,91,97,96,111,95,93,107,104,104,109,107,109,105,95, +681.61761,107,92,77,110,91,100,102,97,98,107,95,104,101,98,94,106,95,106,84,79,97,91,100,95,106,98,111,94,102,103,95,121,97,94,93,98,89,109,90,98,101,88,101,90,109,91,88,107,105,111,106,97,101,90,97,92,94,113,99,107,104,90,102,90,101,103,99,100,103,93,100,94,93,100,106,109,100,99,117,96,97,99,100,95,97,107,100,105,89,93,109,109,133,101,103,88,99,88,98,109,97,80,99,97,94,110,85,95,101,109,99,100,89,98,105,93,93,98,94,91,106,92,109,104,107,90,101,98,94,105,99,109,112,96,97,91,128,102,103,89,96,107,99,101,99,100,98,114,91,98,95,108,100,108,103,95,104,97,98,92,98,92,91,99,101,97,111,105,104,90,110,107,95,103,86,95,97,100,109,106,95,106,105,100,95,97,111,97,92,98,100,95,98,76,101,90,90,101,95,94,107,94,90,91,99,94,90,92,111,103,111,100,90,100,96,68,92,91,106,106,106,95,108,87,95,108,92,84,108,107,94,87,90,102,98,106,121,105,96,84,90,86,99,97,107,92,101,94,98,95,101,95,107,104,97,101,104,104,125,101,92,94,105,101,70,104,94,105,105,99,87,108,89,104,110,99,101,97,95,104,88,96,109,122,92,96,102,89,104,108,92,140,123,101,103,104,104,103,96,104,110,93,107,97,91,98,103,114,95,98,83,107,96,103,112,89,94,106,105,106,101,96,89,93,111,95,95,101,102,114,90,93,101,108,98,90,95,99,89,103,91,102,103,100,102,100,98,94,103,105,107,110,103,87,101,104,109,109,108,97,103,90,94,98,97,96,98,107,92,113,96,90,94,94,98,103,116,101,97,100,114,99,88,95,90,96,92,90,106,106,116,87,91,95,92,96,84,98,99,101,87,117,90,92,105,102,93,99,95,100,88,112,94,89,92,101,98,98,92,96,101,102,94,100,88,100,104,97,104,105,77,97,100,99,104,94,89,104,101,95,109,101,98,98,94,108,89,90,95,106,101,93,90,101,99,95,101,90,102,103,93,98,104,106,101,93,103,97,98,102,110,95,93,88,99,102,99,95,98,99,101,102,104,88,82,108,102,106,101,99,95,103,100,93,82,97,102,101,97,98,111,90,98,94,109,101,91,105,103,90,99,109,105,103,96,94,89,99,90,98,111,101,101,91,89,94,103,102,102,90,99,104,113,126,103,97,103,97,95,102,97,105,91,106,104,113,102,100,89,99,101,112,109,108,99,93,88,102,99,96,107,99,91,100,97,100,105,105,101,96,98,109,125,95,106,94,108,93,93,98,113,96,93,101,111,96,95,100,109,89,100,96,92,93,101,101,95,102,91,96,105,105,96,99,103,104,91,104,117,110,100,103,102,112,105,105,104,96,93,101,103,106,105,112,100,99,111,97,96,98,101,116,98,128,84,102,101,99,96,93,104,114,92,100,104,108,98,97,96,113,104,99,91,98,105,90,107,105,103,95,121,105,103,94,102,96,107,109,105,94,102,80,105,108,99,105,97,108,103,96,105,99,117,102,95,96,98,103,97,103,87,113,99,106,90,98,92,94,108,94,105,102,99,83,94,105,100,104,98,99,94,100,99,92,89,113,95,97,103,113,107,102,98,109,96,106,95,113,109,114,84,98,103,93,99,102,110,92,120,110,113,118,103,110,95,101,98,108,110,106,86,98,93,97,97,105,107,114,97,113,103,102,94,90,96,108,85,103,88,102,95,84,102,85,86,107,106,101,98,95,97,108,106,95,94,102,98,99,103,108,89,114,99,134,122,103,80,104,100,103,95,96,91,122,100,102,100,95,99,93,118,94,116,98,110,96,101,100,102,109,96,99,92,109,100,109,93,91,105,105,95,91,105,100,93,100,112,101,101,99,91,86,102,101,85,101,93,111,85,92,97,105,91,91,96,107,91,100,101,103,96,86,118,102,104,98,99,102,111,111,100,111,91,85,111,124,98,96,104,104,90,102,104,91,105,103,98,113,103,103,91,96,88,110,98,98,92,109,103,110,98,95,98,104,115,87,92,99,93,102,106,91,103,97,97,84,104,102,70,101,94,95,96,105,94,101,107,102,89,95,104,112,110,109,92,77,94,88,99,107,103,94,77,103,93,100,99,105,100,102,98,108,107,98,105,103,101,100,100,104,104,91,101,96,100,102,97,102,103,89,103,96,87,98,95,98,108,105,97,101,94,93,90,105,93,103,111,116,99,114,111,92,99,116,97,82,91,104,95,93,100,106,108,104,102,93,95,99,93,96,95,105,96,105,95,105,101,104,99,98,107,106,92,80,98,104,97,117,104,107,100,108,101,101,93,90,103,90,92,98,101,98,106,100,103,112,113,103,99,110,108,113,109,110,112,103,93,95,104,93,91,114,108,108,95,89,90,100,96,91,90,95,111,95,96,107,87,98,102,96,104,104,100,102,106,118,118,92,111,109,102,103,108,120,84,116,83,112,103,98,104,99,115,101,104,107,109,103,106,96,106,100,108,104,100,106,98,119,105,97,107,103,101,102,100,101,113,109,99,107,104,110,109,105,116,112,113,96,105,99,104,89,109,97,93,106,95,106,110,95,119,102,108,111,103,104,113,104,98,115,99,90,99,94,116,100,99,84,96,102,106,111,103,88,99,102,102,106,102,102,94,115,102,108,104,95,107,106,98,96,100,100,106,104,107,113,109,98,108,110,105,113,109,106,96,105,102,115,104,112,107,106,103,108,98,91,127,118,97,108,101,111,98,103,96,80,97,102,107,100,113,97,87,113,105,94,121,111,112,105,116,93,105,98,99,109,102,103,98,100,87,104,116,97,104,113,98,97,110,110,113,96,108,110,104,99,116,103,95,116,104,102,116,112,107,77,105,83,100,104,99,99,114,114,98,98,107,106,98,97,101,108,98,105,105,86,113,108,98,101,76,107,99,102,106,107,102,107,92,107,112,95,102,102,120,102,99,95,100,113,101,113,102,87,117,91,106,99,104,104,92,99,106,118,99,95,97,75,111,109,95,99,104,109,107,98,102,100,109,96,104,110,104,105,97,98,109,102,105,109,103,99,101,109,105,105,103,97,93,109,106,96,99,120,110,98,99,96,106,96,100,100,100,108,112,96,108,92,110,102,91,96,109,106,104,112,101,120,99,99,99,103,106,98,105,110,112,101,110,93,100,109,103,94,102,98,101,97,98,106,103,102,103,96,91,102,108,109,115,103,100,98,106,102,110,94,105,113,94,106,94,101,92,97,88,98,101,101,100,112,102,98,103,100,126,106,129,102,94,97,102,103,104,108,102,92,94,113,101,105,108,116,98,105,104,107,97,115,109,110,107,109,99,96,104,109,85,98,95,96,107,107,103,90,106,92,94,92,104,87,112,102,120,115,98,100,108,105,102,100,107,99,112,99,92,101,105,70,106,104,104,99,100,102,103,112,106,112,106,88,98,111,111,95,104,101,101,107,105,95,119,110,88,106,97,103,98,108,93,97,90,109,107,100,102,97,103,104,104,97,100,101,97,107,99,111,90,101,104,105,98,100,101,108,118,85,105,101,88,93,106,112,106,100,108,107,103,101,104,98,108,99,106,101,90,94,98,116,103,98,101,107,110,91,94,91,103,99,107,101,108,109,122,109,125,105,100,94,107,106,108,104,100,98,97,106,97,99,105,103,107,98,116,114,105,114,107,111,99,96,109,109,93,109,103,100,110,92,100,89,109,113,101,104,109,106,128,104,100,117,104,108,113,96,96,99,102,111,111,100,102,98,112,99,100,106,99,104,103,110,104,93,106,90,104,101,109,96,99,105,101,103,94,101,98,108,113,108,94,94,108,109,105,95,110,110,107,105,88,98,86,102,103,101,85,105,98,100,110,109,107,95,120,113,100,92,96,107,107,102,97,100,115,106,98,100,95,106,109,113,94,94,100,100,110,96,105,82,104,105,98,102,109,94,108,99,98,107,106,99,102,103,107,104,106,91,100,93,99,108,105,104,112,95,120,77,118,88,108,108,97,103,95,95,105,102,106,106,110,106,109,103,85,95,138,95,104,104,87,102,104,111,101,133,101,115,106,108,96,107,105,119,90,104,109,96,106,91,112,106,91,95,95,100,101,107,103,109,105,114,96,92,93,89,95,91,103,89,98,100,105,118,88,102,101,99,107,104,98,93,121,109,99,107,110,109,103,102,95,102,102,103,91,98,87,98,115,116,96,98,98,109,108,94,95,105,96,96,107,109,95,98,111,99,101,103,107,106,97,98,97,103,94,107,108,100,98,109,108,110,114,102,105,94,99,100,110,96,94,103,92,104,108,95,102,99,79,109,102,101,99,100,106,110,139,106,105,129,100,108,102,97,111,96,95,97,107,111,95,103,103,101,99,105,94,87,102,100,116,98,98,108,94,97,95,107,111,99,97,103,99,110,96,105,102,91,100,92,99,94,112,101,83,109,101,101,101,98,92,96,108,100,95,107,95,112,103,102,91,93,100,100,108,100,98,111,109,95,87,109,100,105,104,96,108,105,109,101,113,108,103,113,99,107,100,106,97,98,110,103,99,97,98,106,112,96,106,102,111,114,104,100,96,92,99,115,101,102,94,99,112,97,121,83,111,92,102,116,102,108,90,105,111,103,103,104,94,112,102,97,98,98,104,107,95,107,109,104,91,99,107,100,104,112,108,102,98,92,97,98,101,100,100,97,105,105,124,102,97,115,105,100,98,98,95,104,107,103,107,112,101,113,96,105,105,118,95,107,99,100,92,104,109,85,97,96,108,77,113,101,98,97,109,103,106,118,113,97,94,108,101,113,110,68,84,99,87,100,120,91,97,107,101,79,74,95,99,92,105,98,101,95,66,101,109,104,113,104,112,107, +681.75891,91,112,100,88,91,98,105,91,111,95,102,86,80,100,94,95,91,105,97,107,87,95,105,111,99,117,102,83,107,121,102,103,104,94,107,100,90,101,100,102,75,103,98,94,100,101,113,118,113,100,91,88,90,101,95,96,104,98,112,102,122,105,110,98,97,102,99,91,94,91,94,106,93,96,102,128,94,110,93,97,98,102,95,130,94,96,103,93,114,90,100,109,89,107,90,105,102,100,95,103,98,96,97,95,83,84,93,107,110,101,85,95,99,98,95,101,104,91,98,104,109,100,97,99,96,110,109,90,109,93,100,107,103,102,93,91,83,112,92,102,104,108,102,101,86,92,107,101,107,102,82,108,98,91,108,105,103,100,106,102,98,98,95,106,104,102,106,103,99,96,109,99,94,108,97,98,107,93,99,109,96,98,94,96,100,111,98,97,99,103,90,89,104,99,93,96,99,94,94,105,95,100,99,94,95,90,90,99,100,108,100,109,109,95,101,112,88,105,93,97,112,103,86,105,87,112,103,108,104,108,95,99,110,113,106,103,100,116,100,114,94,101,105,101,98,99,114,96,104,104,97,110,87,108,100,88,93,92,107,94,104,106,95,113,102,111,105,95,108,106,102,106,120,97,113,103,104,105,97,74,98,107,98,102,114,103,100,90,100,97,97,105,94,103,100,96,100,98,91,97,110,100,106,92,67,112,115,103,90,98,98,104,98,104,101,99,109,98,99,102,105,106,117,101,116,102,115,89,125,106,100,95,113,91,91,109,108,101,92,99,80,101,95,89,109,99,91,101,101,95,108,108,110,94,107,104,103,114,99,112,98,105,93,96,87,119,113,101,97,105,110,117,111,90,99,98,98,104,97,110,101,96,92,87,82,93,96,107,102,86,101,99,92,108,92,100,104,114,99,98,102,101,99,97,98,99,104,100,107,110,96,95,105,98,93,90,100,95,98,82,110,98,100,104,104,110,98,95,105,90,91,99,91,90,93,107,102,97,80,102,112,102,102,105,105,104,96,81,93,105,105,102,87,107,102,98,99,118,97,106,99,100,91,101,103,115,104,87,110,108,106,109,113,98,112,93,101,110,94,114,91,106,96,101,94,106,101,100,96,102,100,101,105,105,100,99,101,94,97,101,99,96,104,90,101,99,98,108,102,114,93,102,101,108,103,103,94,119,99,92,73,109,106,97,105,103,108,99,105,99,94,104,97,95,90,110,103,107,91,100,101,81,104,105,109,104,94,99,121,109,95,93,100,95,110,88,105,91,106,113,107,94,95,114,105,91,106,97,105,98,96,98,101,83,102,97,110,99,105,102,109,97,108,109,108,92,107,99,95,104,113,76,103,112,99,108,102,95,104,101,109,90,106,107,104,99,99,99,100,103,99,89,103,112,98,109,105,107,117,104,104,106,102,110,94,92,88,95,105,104,101,96,111,104,92,109,94,96,100,100,71,113,106,103,93,90,99,98,102,97,102,114,110,97,100,95,106,120,99,107,107,98,106,91,113,88,111,101,110,101,106,98,96,101,91,104,98,99,103,89,103,94,105,95,93,93,105,108,110,90,104,114,101,98,88,108,109,111,87,108,89,93,73,116,88,106,103,104,100,104,106,105,98,100,111,87,101,91,101,109,92,101,109,105,91,93,99,108,90,107,109,109,105,101,96,104,103,97,118,101,113,97,97,113,101,95,103,120,104,111,100,99,104,99,99,96,113,103,107,98,102,113,89,101,97,91,94,95,105,98,108,91,106,94,102,110,109,106,101,93,96,111,99,101,101,97,87,118,91,102,100,92,115,96,108,105,106,100,101,113,105,92,99,88,92,102,96,107,95,94,101,90,101,98,110,103,103,105,112,106,102,106,109,104,103,107,107,98,114,108,99,97,99,102,110,105,104,94,87,101,112,102,99,101,104,97,87,97,103,82,96,104,89,103,103,91,100,106,99,101,94,91,105,105,94,104,97,104,115,92,92,101,102,99,109,95,90,93,110,88,101,96,115,110,100,97,79,101,88,114,110,114,109,101,106,93,102,103,105,95,109,107,104,93,99,92,97,91,95,103,102,109,98,94,109,87,101,106,105,86,93,95,101,100,97,95,132,103,96,97,121,106,106,100,95,97,92,100,106,108,112,101,108,111,105,91,101,114,92,98,101,102,109,103,116,103,108,103,97,110,102,111,114,102,100,85,110,90,98,110,110,97,100,108,99,102,99,104,87,97,93,97,93,90,95,102,92,115,102,111,110,101,103,94,99,104,94,112,106,105,97,113,100,92,99,94,103,107,110,96,92,112,113,97,95,99,105,88,124,113,100,115,101,95,99,100,102,105,105,107,105,85,98,99,104,90,84,122,98,108,104,109,107,108,110,102,100,87,98,109,110,114,103,101,98,103,99,114,107,101,104,108,102,105,104,94,100,94,101,102,92,104,97,107,90,100,101,97,89,96,87,107,96,101,104,99,116,104,108,103,79,106,113,92,98,103,98,91,104,102,104,94,116,103,100,108,82,100,95,105,110,109,106,94,95,99,99,106,97,105,112,112,103,106,111,90,98,108,103,95,120,98,105,91,101,103,105,95,104,106,91,104,88,84,99,110,107,101,119,90,119,95,107,103,110,105,103,108,96,102,106,88,110,104,116,104,112,104,99,95,104,106,104,107,98,102,104,105,117,106,101,105,114,100,112,112,110,102,102,99,102,116,101,78,86,109,98,97,103,110,113,106,110,107,111,107,104,108,100,97,95,108,114,107,108,94,106,106,103,106,111,106,96,95,113,92,106,107,102,107,103,109,101,101,105,88,109,97,115,105,98,85,108,102,104,108,108,95,106,99,100,109,115,90,101,98,106,101,98,110,95,105,102,100,100,96,108,95,112,107,108,90,114,101,113,101,112,105,103,99,94,99,101,105,106,90,109,97,116,95,84,113,108,98,105,97,98,99,101,102,104,100,97,109,104,105,106,110,107,88,106,103,95,110,102,108,103,104,104,109,108,110,97,96,113,91,107,98,110,99,99,108,100,100,109,129,106,100,103,97,103,108,101,104,98,101,103,113,102,103,109,105,90,117,87,104,110,94,98,102,97,101,92,103,97,112,105,98,96,95,103,103,102,99,111,98,102,124,105,105,94,95,98,109,104,99,112,98,102,109,112,103,94,105,111,94,96,103,95,101,103,100,99,100,104,100,124,115,121,127,106,108,107,104,99,106,92,115,108,99,115,109,99,88,100,112,108,91,109,100,103,110,104,109,105,92,101,110,103,99,99,102,106,98,102,98,100,98,113,102,101,102,113,105,102,102,104,111,97,99,100,105,90,93,98,114,107,97,114,104,99,112,91,91,108,99,109,106,110,101,96,109,114,96,96,85,108,109,98,86,105,114,100,107,104,106,91,104,107,100,103,100,117,99,99,108,104,108,97,99,102,91,106,99,108,103,94,108,111,104,107,102,108,96,111,94,112,112,103,96,93,102,112,99,101,104,103,102,103,107,90,114,100,120,108,117,110,100,103,91,104,106,111,105,101,110,103,106,92,100,107,104,114,116,103,99,108,105,97,110,113,99,100,108,102,107,104,102,114,101,99,102,104,100,110,114,104,97,107,98,103,121,108,110,102,97,86,113,76,112,81,98,112,99,101,102,100,104,87,109,97,97,107,97,101,98,90,103,93,106,106,102,102,104,94,91,113,96,100,105,123,91,98,102,101,95,118,123,98,101,103,103,103,103,99,109,103,108,91,108,98,101,102,99,101,111,101,110,91,90,103,112,110,107,96,101,113,97,102,95,87,94,103,101,96,92,100,100,105,109,111,101,100,98,98,104,106,102,109,104,100,92,111,98,102,115,109,105,106,95,99,97,102,104,109,99,104,103,98,101,96,102,105,85,97,96,95,96,103,101,102,81,95,107,104,107,113,106,107,95,96,100,96,107,101,110,100,108,117,99,105,99,97,105,99,97,98,98,99,96,112,112,99,106,113,116,117,100,88,87,115,113,97,102,102,101,99,99,100,97,111,97,98,113,90,91,106,97,111,105,95,103,129,81,95,100,75,112,112,96,95,104,93,106,101,104,100,100,99,93,110,96,114,115,116,107,92,123,98,116,99,96,103,117,103,100,107,102,102,97,102,98,108,116,118,117,103,109,96,111,103,101,112,87,104,95,96,115,102,89,105,109,104,98,106,113,109,96,108,100,117,99,104,131,113,109,98,98,106,101,102,101,96,95,98,107,102,106,116,127,116,106,115,102,117,109,98,98,107,100,113,103,98,109,108,80,92,101,97,113,95,96,101,97,106,101,114,103,87,100,104,95,106,103,102,104,105,107,120,112,112,92,97,107,95,98,111,112,102,96,105,113,104,101,108,101,99,104,103,108,103,117,108,107,105,91,101,110,112,108,102,94,109,112,92,111,103,111,98,115,115,104,105,95,105,104,97,98,93,103,113,107,104,110,96,90,95,101,112,107,80,106,101,103,117,107,100,99,96,105,105,94,112,105,104,113,107,100,93,103,83,116,109,97,117,111,102,102,102,96,103,109,102,99,111,101,101,106,98,106,102,100,108,100,109,107,107,107,96,98,110,91,110,108,96,105,105,106,96,107,91,104,102,103,99,111,107,96,104,93,99,109,105,99,111,97,108,100,107,109,96,105,102,101,117,110,106,100,108,102,98,101,106,113,100,94,99,106,99,95,113,109,105,97,103,100,103,105,101,110,95,99,97,107,121,107,100,95,118,105,107,100,95,107,107,112,97,102,96,88,106,97,103,107,81,96,103,69,94,99,104,106,94,101,117,85,102,105,96,95,104,99,101,92,112,100,97,79,89,96,96,86,102,104,107,125,101,119,113,103,102,102,103,98,105,111,100,109,107,71,104,101,99,99,105,103,103,116,116,90, +681.90015,90,82,106,80,108,104,94,94,91,98,98,109,100,97,86,93,98,104,94,103,91,102,101,87,93,99,103,106,109,98,97,94,111,97,98,118,97,93,92,94,100,99,98,109,100,109,96,107,103,106,97,97,104,107,106,107,95,99,95,105,100,102,100,92,98,111,95,97,94,75,96,99,90,93,97,111,105,98,102,99,102,107,102,102,101,112,105,103,94,94,103,109,96,94,94,100,112,92,110,104,106,125,105,103,92,94,98,89,89,101,89,109,109,112,102,112,92,96,102,103,105,94,103,88,102,95,110,92,107,96,87,101,103,101,91,74,91,85,93,99,101,98,100,103,98,95,106,97,102,94,108,96,108,76,96,86,94,102,105,112,103,94,105,105,97,99,96,95,111,115,99,104,108,97,104,97,92,90,102,91,103,109,105,97,100,104,106,83,108,104,92,99,103,103,105,93,101,93,102,104,91,111,95,109,104,91,94,101,106,104,91,96,96,105,102,110,103,90,96,95,92,102,100,89,103,103,102,99,99,102,98,106,98,96,96,95,99,94,97,101,95,89,104,91,104,106,96,82,98,99,95,107,103,91,94,107,98,110,100,99,90,117,94,109,88,103,90,102,88,94,103,108,118,87,104,94,98,108,108,91,101,98,104,102,106,102,91,102,88,94,109,95,114,103,102,106,107,106,77,102,97,95,108,102,101,103,102,109,87,99,96,105,103,98,105,105,94,92,96,106,100,106,99,116,91,113,92,102,103,97,92,98,105,88,92,101,95,102,97,105,86,104,112,89,100,97,106,99,98,99,103,98,99,94,100,105,109,116,95,106,100,107,101,102,92,108,106,94,100,105,94,100,101,104,99,93,109,110,101,108,98,107,92,99,95,97,91,110,93,90,101,101,92,119,98,99,107,98,98,117,109,90,95,105,112,100,95,112,104,96,89,104,103,103,99,92,102,105,102,105,122,101,108,105,113,73,91,105,95,114,90,85,95,96,92,96,100,106,93,99,102,104,122,111,93,124,96,111,94,96,104,98,95,106,96,106,104,102,99,109,96,106,113,96,110,97,104,104,98,102,96,106,118,91,94,104,94,93,118,97,92,113,84,86,100,84,103,104,99,96,98,107,100,113,97,100,90,101,97,98,92,91,104,96,98,73,108,97,96,91,108,85,101,99,97,104,103,102,97,105,94,94,98,96,98,96,101,89,105,99,99,95,87,96,103,110,109,89,109,91,88,92,88,100,107,98,109,95,96,105,88,119,100,96,104,98,95,96,91,104,99,112,92,111,101,100,104,99,104,105,99,95,92,97,87,105,100,93,85,112,91,103,94,109,91,98,115,94,107,111,110,107,86,81,110,99,84,91,93,100,89,109,106,99,106,95,91,97,103,103,101,99,97,86,109,104,103,86,91,90,107,100,89,101,95,94,85,95,103,101,102,101,108,98,89,82,108,99,100,102,107,104,98,94,102,101,102,97,104,100,90,98,96,101,89,91,93,97,106,111,98,100,75,110,97,91,99,98,112,95,100,105,98,90,105,108,103,94,97,100,95,94,87,103,104,87,106,93,101,100,102,106,97,114,92,116,121,94,99,97,110,90,100,100,99,110,92,111,87,99,102,93,106,111,83,102,77,115,104,87,86,89,75,101,84,86,104,90,99,118,110,103,102,98,100,82,99,103,103,97,86,99,76,100,90,104,99,102,97,89,93,97,103,109,117,80,96,101,88,99,99,100,97,97,97,96,99,105,104,93,91,101,80,93,97,107,96,97,102,100,97,103,100,98,99,97,99,95,107,97,92,96,116,103,110,98,80,97,90,107,98,102,99,100,102,97,104,101,80,97,102,98,89,107,105,101,101,98,105,97,93,96,97,107,104,107,98,90,94,104,101,94,103,93,99,102,109,106,102,93,109,103,109,96,111,105,97,96,99,101,106,91,97,99,102,95,110,95,105,93,88,112,85,103,94,93,94,96,110,99,101,93,109,112,97,92,97,95,83,89,98,108,107,102,97,104,109,108,91,100,102,98,102,104,100,101,106,115,100,101,87,104,98,95,105,98,100,99,95,91,118,106,104,101,102,100,114,99,90,100,95,104,100,100,83,100,102,97,91,97,109,101,96,101,95,106,93,102,98,97,101,100,111,113,95,91,91,98,93,105,99,97,101,129,107,97,105,95,100,91,105,96,110,97,103,104,127,101,108,102,104,116,96,91,98,88,96,92,101,105,98,93,94,93,89,100,106,103,102,106,96,92,95,98,101,101,105,112,96,106,110,101,106,97,104,106,101,100,84,105,98,105,103,97,82,96,100,109,106,97,111,105,106,65,106,96,96,104,103,87,96,96,102,102,95,96,113,107,90,101,97,71,105,88,77,92,114,101,109,109,101,109,98,99,94,105,96,112,86,91,103,104,102,104,102,109,101,98,98,98,114,99,94,107,96,90,102,112,101,82,97,105,93,98,107,108,97,109,103,103,109,96,108,86,95,96,106,110,101,95,103,116,120,103,111,108,80,91,88,98,99,105,95,102,107,95,109,102,97,106,98,114,99,100,97,94,106,102,113,109,104,102,99,109,103,74,102,99,96,101,98,97,84,102,102,108,111,116,85,101,116,98,109,100,106,112,105,86,105,110,84,103,121,97,91,104,89,107,121,95,100,86,110,89,104,95,88,95,102,102,85,93,98,113,98,102,117,104,92,113,107,102,89,110,102,108,100,99,97,90,93,108,100,95,95,97,102,115,111,100,92,99,96,88,105,111,102,101,107,96,105,87,88,110,104,95,97,94,101,90,107,104,107,101,88,100,107,103,115,112,94,102,103,100,113,92,94,103,94,99,102,101,104,100,98,101,107,100,106,108,113,100,103,117,102,97,100,96,89,132,90,101,110,96,100,96,102,102,101,117,87,96,95,98,88,106,90,95,108,90,102,102,102,93,107,114,123,98,98,106,103,82,103,100,100,96,98,109,109,100,104,106,100,100,107,109,103,99,100,110,107,101,91,109,121,90,102,101,104,101,100,101,111,102,98,93,100,112,101,108,102,103,112,106,97,95,107,106,98,99,104,98,91,107,103,102,101,109,108,92,102,110,107,97,112,92,112,101,112,92,99,99,102,112,103,91,107,99,108,94,96,96,103,87,97,96,96,85,99,105,103,120,106,98,100,102,98,102,113,102,108,109,115,107,107,96,102,101,102,95,89,102,113,94,92,95,99,101,102,111,113,95,103,99,100,89,109,89,111,96,113,96,84,106,105,95,108,98,112,101,105,99,104,103,107,111,101,96,116,104,98,94,99,89,106,99,102,93,100,102,106,102,112,75,112,100,106,97,102,99,93,116,107,105,91,102,91,100,109,104,101,106,105,99,95,121,98,97,106,96,95,86,98,111,122,102,102,94,88,98,92,105,90,104,100,106,109,88,106,103,106,108,105,97,99,99,103,99,108,100,115,107,111,122,105,100,92,98,83,97,104,102,121,95,97,105,102,99,104,102,100,98,100,104,113,95,98,103,97,102,104,103,113,104,89,110,105,92,93,116,89,108,107,95,92,106,98,112,102,97,110,80,94,105,106,98,101,108,106,85,97,93,96,104,108,106,121,103,107,100,112,119,111,110,96,88,95,99,100,103,96,104,99,101,93,95,98,101,107,99,109,105,102,102,99,108,98,100,96,99,105,104,111,105,101,108,96,105,104,89,101,94,99,103,99,98,106,117,96,106,99,96,98,117,103,93,100,101,106,100,98,96,95,98,101,87,102,95,93,62,111,98,97,95,94,102,102,102,110,94,101,95,111,101,101,90,101,107,99,108,105,101,101,110,100,107,96,105,106,107,104,97,103,95,99,107,98,95,100,101,107,100,91,99,91,109,94,91,95,96,110,94,89,101,91,98,99,102,95,87,108,106,104,101,96,119,95,90,114,98,89,98,108,115,101,104,98,95,106,94,112,99,107,112,101,105,94,108,96,98,95,113,100,104,110,97,103,101,103,99,88,95,99,100,97,99,97,101,99,93,113,103,89,70,113,108,111,106,90,98,101,96,94,105,95,109,106,100,103,88,106,99,104,91,95,95,94,107,103,115,110,91,107,96,102,127,95,110,97,87,117,103,109,97,100,108,102,97,85,98,100,101,93,97,103,107,104,109,108,91,109,99,99,97,107,104,97,99,101,102,93,114,102,102,92,88,98,95,91,108,103,102,99,117,108,83,104,96,96,101,96,91,104,90,102,102,104,103,98,91,87,92,115,100,94,101,108,103,113,103,114,94,114,109,105,88,99,104,91,107,94,103,105,98,98,106,113,106,98,97,97,101,100,96,97,85,91,105,93,104,107,95,102,102,101,105,96,109,113,97,96,92,97,106,101,98,95,118,107,95,100,100,116,98,94,112,106,111,95,98,100,87,104,94,109,84,87,91,103,97,101,97,94,113,104,90,84,79,102,110,102,103,108,102,90,109,101,106,105,109,86,98,110,106,96,98,95,92,91,110,92,93,99,90,97,103,87,104,110,96,100,112,102,89,105,102,102,102,99,113,103,104,94,102,102,89,77,95,98,103,101,97,107,93,103,101,108,111,93,98,94,108,99,104,85,109,108,94,99,99,101,93,96,96,103,86,98,101,100,85,103,97,94,94,102,97,107,91,97,106,97,99,108,103,90,96,100,105,109,107,94,94,105,95,89,91,98,102,95,92,106,93,107,93,101,102,105,89,107,89,110,96,97,104,99,102,103,100,110,104,99,90,88,98,102,123,109,105,100,109,103,89,96,98,104,95,100,113,109,113,101,96,102,91,83,116,90,106,100,105,105,103,95,76,100,95,83,96,101,92,98,112,90,95,101,98,89,98,106,94,116,106,80,96,112,110,97,103,103,96,99,97,111,105,96,96,113,99,99,90, +682.04144,97,105,119,113,103,110,96,92,109,108,98,103,99,102,98,92,108,104,97,100,84,95,116,97,108,91,93,104,109,96,109,101,97,99,100,95,93,99,109,106,91,100,86,93,113,111,111,114,107,101,105,98,98,99,104,103,102,93,98,99,102,93,102,98,101,107,97,85,102,100,102,101,92,102,95,110,95,102,93,104,114,99,99,118,105,83,100,92,99,90,130,111,97,105,94,101,86,95,100,96,90,95,103,93,104,99,92,84,103,104,100,101,117,98,100,113,87,104,102,90,111,97,107,103,105,102,105,98,111,100,94,104,96,99,96,108,105,102,90,109,110,97,79,95,90,106,100,96,99,90,110,103,98,95,103,101,100,93,91,90,105,94,100,101,98,103,90,92,100,90,100,92,98,82,100,111,104,96,95,99,114,91,103,98,99,100,94,95,111,100,98,100,98,100,104,106,89,87,86,71,99,98,100,87,95,107,74,100,107,105,107,108,108,125,100,106,102,100,93,104,99,107,102,95,100,102,99,102,90,107,107,99,98,107,102,109,105,105,118,101,99,104,100,92,102,93,106,111,105,97,105,109,100,102,103,110,104,102,101,115,99,101,99,99,98,108,100,95,103,111,101,98,105,100,109,92,91,100,100,111,105,96,102,106,98,107,110,99,113,105,97,99,94,93,117,101,94,102,93,113,105,94,94,107,120,106,95,100,95,109,102,118,102,105,91,84,104,106,83,102,96,102,99,95,118,109,104,93,104,99,99,103,100,95,99,85,117,100,94,108,95,92,100,92,104,96,95,96,97,108,90,109,105,102,108,86,96,110,104,105,98,97,104,91,116,75,93,97,108,103,110,96,104,110,96,91,95,105,112,91,108,98,91,96,103,89,98,100,103,102,107,101,105,107,101,101,106,99,95,107,97,109,96,100,94,104,98,99,116,98,102,104,88,95,100,98,91,93,106,99,114,95,97,95,90,107,101,69,92,98,99,105,92,110,103,99,98,97,103,101,91,98,98,104,95,103,101,100,101,105,109,98,113,99,102,106,91,102,80,103,103,103,120,108,95,104,91,95,102,95,98,92,101,105,115,108,104,101,106,109,100,95,113,104,106,95,101,99,110,106,107,112,100,100,94,92,105,107,108,93,99,106,105,98,103,109,97,106,102,97,97,97,99,102,101,112,113,115,101,91,84,108,94,97,116,87,98,96,96,101,109,102,103,104,95,114,100,99,105,106,92,97,99,104,128,93,107,104,103,96,103,96,107,95,98,103,104,88,99,97,88,102,87,101,108,91,102,109,101,103,106,93,101,105,97,103,106,100,104,102,97,100,102,115,98,89,112,99,92,106,108,98,108,103,112,106,94,103,98,92,96,107,110,95,107,101,109,96,98,104,104,103,112,91,95,104,91,95,99,113,121,94,99,101,119,97,98,108,104,114,96,102,92,103,98,104,94,86,99,95,109,97,94,104,121,95,96,101,110,96,102,102,110,95,102,104,97,98,116,105,85,106,109,108,103,103,89,100,103,104,110,95,93,105,93,105,99,103,105,93,105,106,104,97,96,101,97,86,102,98,103,114,104,98,111,109,104,103,100,90,104,84,100,101,102,111,96,94,102,102,94,103,110,94,104,99,91,96,100,95,109,100,100,101,91,101,88,91,91,103,100,101,100,100,91,101,101,95,99,100,93,99,108,104,100,103,104,95,119,101,115,88,102,108,100,87,92,97,95,99,103,120,87,95,95,96,97,109,104,99,102,96,114,95,105,109,100,97,96,105,106,100,107,101,105,96,101,95,92,103,107,102,111,102,103,109,110,86,96,115,108,101,101,107,99,101,105,104,113,75,97,102,96,99,103,97,112,100,102,103,99,90,95,91,100,104,95,90,102,99,100,96,89,97,102,113,98,106,111,96,98,99,112,100,94,108,101,92,97,115,99,91,96,95,103,96,83,103,116,99,98,103,104,96,102,102,92,95,100,91,93,100,77,96,88,96,107,95,109,98,97,111,97,118,106,104,91,116,110,95,94,114,104,100,98,100,78,100,93,108,100,100,113,104,97,103,97,104,84,100,103,105,102,93,105,95,96,129,89,98,108,95,89,93,104,108,97,96,98,100,116,105,102,113,96,113,102,105,106,102,95,105,98,105,100,109,88,106,106,105,100,99,112,104,90,104,100,105,101,103,101,105,97,85,94,96,98,105,102,102,102,93,109,94,99,110,108,87,96,108,97,113,93,99,112,98,91,105,94,83,94,97,97,98,104,98,105,103,98,108,105,105,95,98,104,103,112,102,110,110,93,105,92,95,103,103,113,102,105,112,106,101,109,88,99,113,114,96,103,116,113,100,106,88,110,95,90,101,102,110,98,96,100,105,99,110,93,112,101,95,99,99,100,96,106,112,99,101,101,96,98,103,102,100,93,127,102,98,100,98,101,94,85,93,86,97,101,100,96,95,100,104,83,111,106,66,107,110,106,92,88,95,98,101,99,111,86,95,99,109,99,87,116,100,90,99,93,102,97,101,95,108,105,105,92,108,93,90,89,108,92,100,105,87,108,94,98,99,108,107,100,98,93,96,100,92,108,107,99,100,87,102,100,112,95,103,96,100,89,97,97,104,93,100,113,99,101,103,102,102,102,94,119,92,100,109,99,102,103,95,114,94,106,97,94,102,95,108,102,102,91,104,107,103,103,99,119,98,110,112,95,100,108,96,100,93,102,100,93,108,94,117,103,101,97,101,114,103,75,96,100,99,95,104,110,102,100,88,112,107,97,110,110,108,74,89,101,101,109,109,104,108,104,92,113,132,105,110,105,96,91,103,110,99,91,102,102,103,92,104,98,104,97,97,105,95,113,97,126,102,100,108,105,87,105,101,107,115,104,104,94,101,116,108,102,97,126,120,116,100,102,104,96,107,94,102,89,103,91,112,112,113,90,94,98,88,83,103,103,103,113,102,93,106,99,93,102,100,100,100,102,113,100,102,109,113,107,107,87,96,110,99,104,112,101,100,108,101,102,104,103,103,95,102,104,107,98,106,115,104,104,103,108,105,106,104,105,96,110,97,96,100,116,102,87,107,100,109,105,106,103,104,112,105,111,110,104,109,117,104,101,112,102,103,98,99,88,104,100,101,94,116,113,109,102,92,91,103,98,112,106,92,102,107,105,112,109,97,103,108,104,90,112,103,98,114,115,109,90,113,107,99,96,103,112,105,106,105,103,112,98,113,96,98,90,100,107,95,101,109,108,96,107,115,96,109,116,102,101,112,108,124,110,105,105,105,106,94,121,91,92,102,97,100,110,118,113,93,95,100,114,112,93,103,106,94,100,93,91,94,96,98,107,81,95,114,105,117,107,85,113,100,116,102,113,95,103,78,110,101,100,111,99,104,87,94,104,94,89,101,93,94,101,107,96,110,110,110,100,97,106,96,105,109,94,107,97,110,101,87,112,106,98,108,94,106,106,111,113,102,100,110,119,97,92,99,104,105,105,104,112,108,95,96,95,109,96,113,101,96,98,107,100,105,97,95,105,98,94,111,97,99,106,111,107,107,103,100,91,110,113,100,105,98,106,100,114,106,87,96,84,109,91,114,106,98,103,112,100,98,94,105,95,103,103,91,101,104,104,111,91,95,95,101,93,103,114,99,96,89,95,112,105,104,101,97,89,103,95,99,95,107,103,83,91,99,98,105,101,97,94,103,114,91,108,104,103,99,98,101,100,120,97,112,104,104,99,117,95,99,110,107,101,88,95,98,97,84,106,104,100,98,114,100,102,100,102,99,99,97,92,87,112,100,105,105,98,106,92,92,108,97,102,94,113,106,113,94,100,107,99,97,96,95,93,110,85,104,103,104,100,107,98,102,108,116,129,96,99,96,94,110,97,98,107,106,111,105,93,97,90,115,100,101,94,108,108,102,105,93,106,98,97,112,104,118,102,111,97,96,92,100,99,107,96,107,102,108,103,105,104,95,99,102,108,99,97,98,110,99,101,116,96,102,109,96,104,101,106,103,101,103,91,104,94,112,103,91,108,97,108,112,94,102,101,106,90,99,98,102,100,94,99,94,85,107,101,102,105,103,94,102,100,98,96,108,105,109,95,107,103,105,89,97,101,105,105,98,91,104,109,105,99,100,88,113,97,101,102,70,100,96,103,103,106,95,110,104,105,110,116,101,94,95,84,101,97,117,87,105,121,96,94,91,98,112,93,110,98,103,102,93,113,104,98,109,110,67,111,113,100,103,105,84,105,98,91,103,116,102,104,92,99,109,106,97,102,104,89,98,92,106,95,96,102,107,99,89,111,109,103,101,107,100,106,84,105,108,100,88,110,109,96,97,107,105,112,106,111,94,109,110,102,96,103,103,120,99,105,88,104,93,111,96,105,87,104,115,95,100,95,93,101,115,94,100,97,116,101,98,104,103,96,104,97,94,89,105,96,93,97,108,99,106,87,101,96,100,107,100,112,102,107,100,101,120,97,104,101,92,100,87,92,105,102,109,117,99,100,96,79,84,100,111,113,108,94,98,99,95,88,102,79,93,98,103,96,102,90,103,106,97,106,98,105,131,102,104,113,105,105,95,92,114,101,105,105,102,101,89,103,109,111,108,96,100,109,113,99,100,108,96,100,103,109,97,102,117,105,104,101,109,98,100,109,110,106,110,106,98,105,93,105,115,113,97,99,113,97,91,105,108,98,115,92,102,111,96,99,87,95,93,89,101,105,96,110,104,110,100,104,90,103,113,100,100,95,103,101,96,98,92,109,105,96,98,112,110,102,109,118,98,91,93,97,113,105,100,94,99,117,96,57,102,106,102,116,105,104,106,113,105,98,90,98,117,96,106,112,109,113,106,101,102,112,116,94,108,101,94,94,111,101,112,105,121,108,99,84,94, +682.18274,100,103,96,100,101,82,97,97,91,101,102,84,99,99,103,117,114,107,90,101,97,100,99,113,91,96,116,99,95,95,100,98,90,105,106,105,119,114,104,103,96,106,89,105,104,110,118,104,95,99,104,121,103,96,105,102,103,84,106,97,92,81,71,95,105,95,97,100,95,109,98,101,94,107,86,111,117,104,116,96,100,99,92,108,97,103,95,95,118,109,100,105,98,110,96,97,101,99,93,88,128,102,96,95,101,104,95,82,102,111,111,73,99,103,114,112,107,97,105,100,101,100,113,104,101,104,113,96,96,88,94,103,128,95,99,91,95,110,96,99,98,110,102,99,86,101,97,105,115,101,99,100,102,91,90,111,90,102,109,105,93,104,125,101,108,90,106,96,98,110,96,99,101,98,95,90,98,101,100,104,108,101,90,98,105,113,96,91,104,95,92,95,94,91,106,103,107,92,105,100,101,113,103,103,102,91,98,101,99,104,90,114,93,99,79,94,94,98,93,103,113,104,84,107,96,89,100,99,95,102,105,99,105,110,102,101,102,91,95,115,108,98,101,109,92,106,106,100,104,106,107,106,109,96,88,97,114,92,103,104,94,99,99,96,91,104,108,120,111,98,104,99,117,110,83,84,93,95,95,98,104,100,90,115,106,99,98,101,97,100,98,114,93,98,99,106,95,85,105,104,90,96,105,100,102,100,108,116,110,104,95,97,90,97,105,112,98,107,110,99,101,92,102,101,97,102,116,91,108,115,103,92,103,107,112,102,103,98,99,98,109,107,86,92,109,104,111,103,105,97,97,95,102,99,92,99,104,96,109,97,93,102,104,99,98,90,117,105,98,104,104,109,104,97,100,95,98,96,100,99,100,112,88,95,87,106,92,109,100,109,103,91,106,110,95,90,106,110,95,102,113,120,97,98,81,106,98,104,101,97,94,84,96,107,102,95,100,95,91,91,100,100,100,106,106,86,109,108,89,100,92,105,114,99,114,97,103,97,99,91,104,99,120,107,95,105,78,97,125,101,92,105,90,110,108,103,111,103,111,107,103,118,100,106,95,100,91,92,103,95,104,90,83,98,100,87,95,100,109,104,104,101,108,99,98,110,111,104,108,97,104,97,94,109,88,106,99,99,120,112,90,109,87,98,106,102,96,111,107,105,101,97,98,101,110,104,98,101,101,90,119,100,110,93,105,80,101,94,105,93,118,118,121,97,93,111,98,98,97,109,102,118,95,94,103,105,93,103,110,98,95,110,112,96,99,104,93,111,85,101,86,107,91,100,84,95,99,98,105,104,95,106,101,109,91,103,100,105,107,106,98,89,101,101,98,91,95,108,120,108,102,99,117,106,106,108,93,103,105,111,105,112,92,106,110,95,100,99,110,75,97,104,91,99,106,101,104,92,104,99,103,92,111,105,96,105,99,100,106,101,99,111,106,96,106,107,102,106,102,106,95,103,114,104,96,91,98,95,106,108,99,101,106,99,106,104,108,107,96,111,111,108,110,99,86,101,110,98,105,103,107,111,104,99,104,114,96,104,93,104,129,104,118,100,94,99,93,105,100,106,124,100,95,109,101,99,105,103,104,92,116,104,96,100,113,102,110,115,107,116,112,111,107,100,95,100,92,100,104,92,103,104,91,106,139,104,110,106,122,104,94,102,98,108,98,95,92,105,125,110,104,99,112,107,107,104,114,112,102,115,90,100,107,103,104,95,86,101,89,111,99,100,88,96,88,106,98,104,111,98,119,111,113,98,97,105,94,103,113,108,100,108,96,97,94,93,105,113,102,101,95,104,101,93,106,106,112,114,107,101,100,91,104,96,98,103,110,102,102,109,102,96,106,100,115,97,102,98,110,112,102,105,116,129,101,107,108,101,107,99,103,94,92,102,105,105,105,99,112,99,84,122,109,109,101,100,109,99,95,101,115,106,90,107,100,104,106,86,97,112,99,99,98,99,112,100,107,114,109,98,110,105,105,96,96,100,105,100,120,110,100,112,106,105,92,103,89,101,105,98,107,97,96,92,92,96,110,86,101,102,95,107,99,108,100,101,102,98,101,98,86,102,96,109,104,102,96,104,101,100,111,110,109,106,65,103,99,87,110,98,94,103,97,99,110,117,94,102,97,95,101,94,95,100,97,104,112,111,96,91,95,83,107,114,102,91,102,99,99,104,96,98,94,101,100,92,96,98,93,100,98,97,106,108,104,96,95,88,107,107,88,102,104,99,92,104,96,83,96,88,101,102,105,104,117,94,79,91,102,105,107,98,95,94,94,98,96,102,109,105,116,106,109,103,85,99,105,100,96,108,95,108,104,98,127,100,106,86,100,107,105,105,100,91,97,94,105,87,100,129,121,105,93,92,92,109,108,103,101,106,102,106,114,113,100,97,91,97,102,100,98,104,93,105,100,97,83,103,104,101,94,103,99,96,97,93,107,98,101,99,104,108,98,99,103,108,101,98,112,92,97,110,102,93,115,101,110,92,100,91,96,94,95,114,93,110,105,102,101,91,99,113,101,98,106,97,93,99,94,103,102,110,100,98,106,102,99,106,105,108,117,107,102,95,98,97,97,99,98,103,97,97,100,101,93,84,103,96,102,99,113,102,108,108,101,98,92,109,93,99,99,89,105,100,99,100,91,101,106,109,105,105,99,104,99,97,94,110,108,94,95,89,103,99,91,102,113,101,97,119,93,104,99,117,106,93,97,92,100,113,105,106,100,97,108,103,117,109,99,100,98,112,92,86,79,107,110,114,102,90,110,111,97,93,104,97,106,102,98,98,96,98,93,100,112,105,102,104,105,96,101,101,105,104,105,94,106,113,104,115,117,104,102,119,96,107,97,105,101,106,96,101,99,109,100,99,99,102,98,107,115,103,104,100,109,105,98,99,111,106,97,94,98,92,94,103,85,103,98,104,104,102,96,97,98,99,102,99,109,108,104,103,104,111,88,95,105,113,98,88,92,104,101,105,107,90,101,95,102,98,113,109,96,107,97,99,104,107,98,89,110,95,105,107,106,108,100,106,110,94,89,98,98,99,97,95,107,96,104,102,113,99,95,91,91,90,108,100,100,98,106,97,100,104,107,98,90,116,99,84,85,104,89,103,104,93,104,98,83,110,104,102,109,113,105,101,94,109,105,100,108,99,96,93,99,96,105,91,99,113,109,95,95,103,92,106,104,106,102,111,97,95,98,97,99,113,98,104,105,98,95,95,86,93,103,99,96,98,101,101,107,97,109,87,96,82,106,105,98,99,90,101,100,105,107,102,90,95,89,112,113,94,105,106,92,99,101,114,94,93,109,98,105,106,108,101,102,90,100,112,88,102,101,94,93,111,101,95,106,90,95,90,95,105,83,111,105,106,104,101,102,98,92,89,95,109,104,102,100,111,97,87,76,114,99,88,101,101,112,106,97,96,113,90,101,96,84,102,94,94,105,101,98,96,99,88,114,116,103,91,110,103,111,90,101,107,98,99,101,100,97,100,105,93,105,91,86,114,92,96,102,97,99,89,107,111,97,106,95,95,108,98,98,102,102,104,95,95,89,106,108,94,105,103,107,103,98,101,98,92,96,97,106,102,110,89,98,93,108,110,97,98,105,100,103,106,96,97,95,97,102,101,119,110,101,97,90,101,104,102,97,101,98,95,98,101,107,117,117,101,103,79,97,112,98,95,102,107,110,69,95,70,106,88,106,110,104,107,103,94,101,117,97,92,103,106,116,100,100,98,110,111,99,98,104,98,102,109,103,102,102,89,94,107,101,95,90,86,96,90,105,113,88,84,93,98,110,100,90,87,118,97,99,95,91,108,101,107,95,95,90,102,102,88,96,102,102,98,109,109,104,98,98,108,102,102,106,92,103,107,96,93,96,96,92,102,89,105,85,91,84,96,97,100,102,88,96,95,114,105,105,94,106,95,100,101,99,92,99,99,87,81,102,100,100,96,107,132,111,113,98,94,105,94,92,111,99,101,105,109,98,95,108,92,105,99,92,87,109,113,107,98,105,103,97,97,99,106,106,93,93,94,105,107,99,106,99,94,88,102,101,100,109,91,94,103,107,110,102,92,105,96,96,109,88,109,102,94,82,92,103,73,101,109,98,102,90,101,92,95,95,102,98,101,91,107,101,102,95,91,95,95,76,83,96,105,110,99,102,95,112,100,116,94,92,108,88,129,99,91,94,110,89,99,95,94,86,109,76,103,100,97,93,96,87,98,104,109,94,100,100,106,101,85,92,101,108,98,87,120,134,101,110,83,103,88,102,87,91,95,95,101,101,110,102,103,111,94,101,99,95,103,97,98,99,100,102,97,87,112,117,107,97,110,94,94,108,106,94,98,98,98,93,95,93,95,98,97,98,93,108,95,94,102,97,91,109,102,99,92,100,86,105,93,95,102,92,102,102,106,106,110,99,93,104,100,120,103,108,95,95,103,92,93,107,114,102,107,93,102,91,95,102,101,135,102,95,90,97,96,95,90,96,93,111,103,101,96,82,90,94,109,102,104,99,97,87,97,99,108,112,95,103,96,110,101,106,98,103,94,103,92,97,84,99,93,99,95,103,85,88,103,98,83,106,103,111,102,98,108,93,118,105,91,122,111,106,98,97,100,103,100,102,100,96,91,111,108,90,80,110,92,104,103,91,98,73,96,105,94,109,109,99,103,108,90,94,77,86,90,95,103,104,104,102,91,97,78,103,100,91,98,91,98,95,99,101,105,109,96,92,95,90,105,97,111,100,101,92,131,98,94,104,90,97,113,97,95,96,109,87,95,89,110,109,105,91,99,101,101,106,90,98,99,114,103,107,117,102,104,99,98,102,92,98,125,99,88,113,97,102,90,114,105,105,102,90,113,111,93,98,120,107,93,111,89,87,102,105,110, +682.32404,95,90,71,117,104,103,117,112,105,74,85,99,88,101,105,109,95,104,110,110,104,94,101,105,104,98,106,103,121,108,94,91,104,92,104,89,92,95,90,91,97,104,102,92,99,120,102,103,106,60,95,94,119,113,100,86,102,101,109,96,104,116,100,99,100,109,85,100,100,85,107,106,92,102,97,125,92,92,103,97,101,100,97,107,100,90,97,110,100,96,96,100,102,98,102,94,110,92,93,113,101,105,101,95,90,110,101,90,102,113,104,117,105,100,108,100,105,109,102,116,94,98,92,108,99,98,110,101,101,111,99,109,91,107,105,104,105,101,98,87,98,100,91,91,115,101,105,102,97,104,89,115,104,100,102,108,104,96,108,101,94,96,97,95,96,97,94,98,104,109,96,100,94,102,91,100,104,101,100,102,95,92,113,106,94,89,101,83,104,70,101,101,97,103,99,100,102,98,117,102,99,100,105,107,104,111,86,97,111,97,99,99,102,103,112,100,96,114,89,100,112,104,92,106,103,100,109,106,87,105,110,87,116,101,108,102,105,110,103,104,99,92,98,100,113,104,117,107,101,100,114,94,91,99,95,109,98,95,106,91,85,100,110,102,101,98,107,100,99,100,93,103,96,114,99,105,109,105,94,100,93,106,109,99,90,110,91,102,102,91,102,103,107,109,129,114,99,105,96,104,98,104,97,95,94,113,117,111,114,108,88,95,101,102,112,111,100,116,103,82,107,87,107,103,96,103,90,101,117,105,104,101,110,101,110,103,100,114,102,106,105,105,103,113,110,107,95,98,113,98,100,96,95,103,102,100,108,103,94,110,95,106,98,101,106,90,103,121,109,112,95,95,91,96,106,111,113,105,104,113,99,99,95,105,101,100,117,85,102,93,100,107,92,103,103,104,100,107,103,110,106,87,90,103,94,104,105,115,101,98,102,96,117,97,92,96,103,92,104,100,100,103,108,115,111,101,98,87,102,109,93,95,85,106,104,87,94,112,101,95,107,117,96,91,97,95,92,99,93,105,94,94,109,94,107,95,98,110,107,97,96,90,108,108,97,99,111,105,102,110,106,112,107,94,95,89,106,114,99,113,102,101,105,99,107,97,105,104,110,103,103,104,105,92,113,110,105,105,105,102,104,100,104,112,108,102,88,104,103,94,120,113,91,111,101,97,100,99,95,94,110,107,107,98,94,92,100,122,94,101,88,81,96,100,93,129,100,98,114,102,98,98,97,114,112,97,96,102,98,98,97,87,83,113,102,95,109,91,97,98,93,91,100,104,98,93,98,115,108,100,101,99,104,105,113,106,107,107,102,101,103,106,97,100,107,96,99,106,99,107,106,118,105,102,95,101,101,98,117,97,108,104,116,96,102,96,92,116,98,99,112,126,94,95,117,101,104,112,106,95,102,111,102,114,103,106,83,124,87,90,105,106,106,106,100,109,99,94,113,101,76,105,101,134,100,89,100,101,98,102,91,98,98,102,103,108,108,91,108,93,109,98,110,107,94,107,113,101,115,101,108,110,93,110,106,112,115,109,99,116,112,109,103,106,105,99,104,94,98,98,95,98,119,102,113,104,103,105,99,87,91,99,103,114,115,103,115,92,81,98,94,107,82,101,93,110,114,103,90,104,95,112,88,102,114,103,108,102,101,117,104,110,100,99,92,96,99,105,79,92,86,101,111,106,98,96,108,106,104,108,98,103,106,99,99,103,111,113,113,103,100,102,89,104,88,115,96,99,92,100,105,107,104,105,98,104,112,103,99,103,93,108,118,99,90,106,105,105,101,117,96,106,96,112,101,97,105,110,109,103,103,99,95,122,109,96,107,102,99,105,101,101,100,88,112,106,121,108,117,99,97,105,101,99,97,119,110,112,101,98,109,104,102,100,112,108,98,101,93,98,93,105,81,100,100,100,109,104,99,97,104,112,98,109,110,99,110,117,101,94,101,112,95,104,101,92,107,100,105,98,102,90,105,110,101,109,105,97,101,97,99,96,93,102,100,97,99,100,100,103,90,95,98,103,99,110,117,104,99,108,106,108,101,104,102,81,109,109,96,88,106,84,101,102,83,112,87,98,112,101,101,108,115,114,99,100,105,83,91,98,92,107,99,105,98,99,101,99,103,100,90,101,92,95,94,106,113,112,112,100,95,109,105,93,103,109,103,112,101,112,104,119,104,96,100,100,95,99,99,100,106,96,106,94,101,120,107,98,101,102,94,110,103,109,110,103,99,96,89,93,100,129,93,102,97,91,100,98,88,121,107,94,110,80,110,98,103,95,98,99,93,108,99,109,103,91,103,105,114,92,112,111,92,88,91,100,96,85,92,98,95,98,98,113,102,87,112,107,120,92,103,111,94,108,111,101,101,103,103,111,112,113,104,106,101,113,107,107,106,104,109,107,113,99,106,96,109,103,102,96,91,107,96,98,98,96,102,97,104,113,111,83,91,101,106,108,97,93,110,107,83,111,103,94,94,97,90,86,102,107,107,81,105,101,103,103,104,117,99,97,109,100,105,112,104,111,96,100,104,102,108,99,86,106,92,100,98,103,96,101,104,71,100,100,102,98,93,94,98,105,104,96,89,106,109,92,121,105,117,102,119,101,110,108,113,95,99,101,97,95,90,108,100,102,94,103,95,81,87,102,101,78,110,105,88,105,101,79,93,94,100,108,94,103,101,104,106,93,107,125,104,107,107,104,95,112,91,93,102,113,110,98,112,90,108,113,108,102,109,103,102,93,96,100,96,106,89,113,95,102,92,102,108,86,107,89,104,99,103,104,97,101,104,109,105,89,100,103,113,97,98,101,114,108,100,100,109,91,105,84,106,112,106,111,105,105,102,81,102,98,102,97,99,95,101,113,115,102,105,111,93,100,109,103,113,100,92,103,95,101,100,101,113,107,108,100,98,94,112,97,101,116,107,109,106,105,99,103,96,102,104,99,109,97,84,104,118,101,99,109,105,109,95,94,111,117,100,111,100,95,117,104,105,94,92,111,112,94,105,91,92,88,103,98,109,102,100,102,102,104,105,98,107,100,109,94,102,97,101,97,101,113,99,111,106,113,108,107,95,97,116,108,110,111,100,99,106,101,119,97,96,69,106,94,107,106,105,115,105,102,97,92,103,96,94,100,98,87,98,109,97,94,99,102,88,111,100,82,107,100,104,99,96,95,105,105,108,121,104,95,93,96,95,112,96,96,105,118,93,110,100,104,111,103,110,88,112,92,98,92,96,101,105,110,105,89,101,110,98,82,101,95,104,102,103,102,99,97,101,105,108,93,108,108,106,92,102,109,108,89,105,97,112,73,107,101,100,121,100,100,95,110,106,96,106,100,103,99,114,104,115,106,103,106,97,102,95,107,103,87,108,107,95,111,99,104,106,88,92,105,103,100,100,102,102,98,101,112,100,106,94,94,96,96,102,103,100,98,93,112,105,83,94,103,77,109,111,111,99,99,109,98,102,109,101,112,99,94,100,108,111,113,97,92,107,103,92,109,107,100,103,108,102,104,95,105,99,108,101,103,102,91,104,108,109,102,99,97,103,104,96,89,95,107,101,105,83,109,113,87,103,91,109,101,100,97,109,104,106,113,100,108,95,116,103,82,90,117,111,105,108,110,105,98,98,96,97,106,108,103,115,100,114,102,98,100,94,107,98,87,96,104,106,100,89,104,106,106,100,95,100,108,98,92,104,100,105,92,109,89,95,108,95,89,109,101,106,95,99,116,96,90,111,99,105,104,98,95,107,101,116,112,97,102,97,101,97,111,100,92,97,96,101,112,97,92,96,98,106,105,107,106,107,111,120,107,108,103,107,101,96,105,93,103,101,105,94,106,107,108,95,129,96,107,98,110,111,92,91,106,106,87,95,93,108,96,104,87,107,101,101,113,108,100,88,96,101,92,99,103,102,93,83,98,93,94,96,97,115,96,96,110,110,104,95,106,82,87,105,91,79,112,106,99,117,94,99,91,97,100,112,93,97,101,106,103,106,101,114,112,111,114,122,124,101,117,111,98,106,100,98,118,98,112,80,96,101,94,97,101,101,105,98,98,100,90,107,65,101,102,97,92,95,99,107,108,101,112,93,105,98,95,102,83,98,96,107,103,103,104,92,95,103,100,101,100,104,112,102,100,103,113,98,98,99,110,91,96,96,94,108,91,108,104,105,103,94,120,95,96,100,103,101,109,120,101,93,101,95,94,106,93,89,108,92,90,102,106,104,103,97,100,103,85,104,108,99,93,104,102,100,94,110,82,97,107,108,98,92,107,103,98,100,121,103,94,93,103,105,109,95,103,112,104,95,109,109,98,104,106,103,103,108,103,104,94,94,107,113,99,105,105,106,113,91,90,110,104,98,97,93,105,100,84,96,105,101,121,87,103,96,80,101,98,98,121,101,96,108,94,98,98,113,97,119,100,89,111,99,107,106,87,98,89,93,88,89,121,104,98,98,77,96,108,100,106,106,103,107,100,93,89,101,121,99,106,115,83,102,92,107,89,102,88,92,106,89,99,96,104,100,106,91,83,103,101,94,89,101,108,87,97,113,94,102,118,110,102,109,99,92,90,66,102,111,106,83,109,96,115,70,101,93,113,107,109,96,104,97,108,111,120,98,100,77,109,101,90,100,99,102,105,89,94,104,117,95,99,104,85,108,112,104,134,97,99,96,99,104,91,109,111,82,102,97,103,92,104,104,110,84,103,101,95,102,76,94,110,109,110,103,100,79,99,110,92,93,103,100,104,108,104,110,107,100,100,99,92,94,93,110,94,97,92,105,101,71,103,116,96,107,102,94,102,120,112,104,101,96,93,115,111,98,95,93,108,103,101,113,85,96,103,105,110,96,102,108,114,114,98,106,104,119,107,101,96,94,98,103,103, +682.46527,103,96,102,90,100,103,96,100,92,104,79,102,92,109,97,96,101,92,102,96,105,91,96,96,116,111,95,100,100,104,99,107,106,97,106,100,107,97,99,104,98,106,92,100,102,114,99,110,100,104,90,104,108,106,84,82,100,74,102,101,103,105,96,105,117,108,91,111,107,108,119,97,102,113,95,100,93,103,98,106,106,92,90,98,96,103,96,108,86,91,99,96,98,98,95,100,117,92,95,106,94,113,94,109,81,101,100,91,102,93,95,100,104,95,102,111,100,99,96,105,105,91,116,113,92,99,92,94,98,98,105,92,102,113,109,103,116,99,107,95,98,101,99,104,89,83,111,97,85,104,112,98,106,92,90,108,99,94,109,103,101,97,100,104,97,79,114,97,94,99,97,107,92,86,89,98,98,109,97,119,106,101,101,102,112,99,86,95,109,96,98,113,93,105,101,100,119,97,107,97,104,92,100,137,95,100,98,100,109,102,107,111,96,109,108,114,102,98,104,103,83,98,102,92,94,100,106,95,92,91,97,100,96,97,110,104,107,92,96,107,98,102,112,100,114,101,103,94,110,98,101,98,99,98,110,124,106,106,112,106,93,99,100,99,112,101,98,93,101,110,106,108,108,102,97,98,108,108,111,98,90,103,110,97,94,96,87,100,93,98,83,105,101,103,109,100,96,100,105,99,98,90,124,82,90,98,110,110,114,110,89,104,95,105,96,102,98,104,101,107,95,106,93,100,101,101,99,92,110,76,96,94,100,105,107,97,100,102,100,118,104,96,103,94,100,102,100,108,108,84,100,107,109,101,107,99,111,102,111,64,99,99,99,88,106,90,95,100,91,113,110,91,98,96,113,101,97,102,109,101,106,109,113,108,101,106,106,91,117,87,99,100,106,107,100,110,86,99,88,102,101,98,92,105,109,106,99,106,99,107,106,77,118,92,94,96,90,104,103,100,95,94,98,95,101,91,101,106,85,94,86,103,101,91,106,104,107,100,97,104,94,105,91,84,108,87,79,100,108,116,117,105,107,114,110,105,92,103,104,108,99,86,111,102,105,114,121,94,103,99,105,110,113,94,106,100,95,111,100,110,95,104,110,97,101,113,103,107,101,95,114,107,91,96,94,98,108,104,113,97,102,100,103,102,82,94,99,96,92,109,97,103,125,109,105,102,109,101,87,86,107,86,113,107,104,101,96,98,93,104,90,110,104,100,104,92,106,118,104,112,106,110,96,103,103,99,105,101,106,94,105,109,99,106,95,94,95,99,104,100,99,91,91,109,107,97,95,99,109,91,104,101,97,96,101,104,90,91,104,109,107,95,103,83,105,91,108,99,98,102,94,96,99,98,99,102,100,103,107,96,96,83,107,102,98,104,95,96,103,105,97,107,111,97,95,128,105,107,111,92,108,103,99,96,98,93,108,111,93,121,104,104,98,109,102,104,101,94,103,111,112,100,101,95,83,108,98,97,94,103,100,106,106,108,101,127,101,97,97,96,105,99,117,88,98,95,109,105,99,121,112,95,106,95,101,102,106,98,103,99,96,98,102,101,113,88,69,81,101,102,98,109,108,105,97,87,100,85,106,94,93,102,98,74,99,95,109,115,97,105,104,112,108,91,100,99,107,94,106,105,100,93,103,90,100,103,110,106,107,110,90,102,98,90,94,107,102,91,103,98,113,97,102,99,99,69,98,101,90,104,110,98,99,97,102,105,98,108,88,113,92,113,93,97,105,99,98,102,96,98,100,105,108,105,105,100,94,100,95,109,89,99,99,103,90,103,112,104,99,104,104,121,96,96,103,105,102,98,104,100,110,100,98,105,115,107,107,94,113,100,103,114,101,91,108,116,109,98,93,110,101,103,110,99,103,104,107,92,112,111,100,98,109,94,84,105,117,101,94,108,102,99,104,105,101,97,80,100,93,104,116,98,94,104,99,106,90,91,116,91,112,91,101,103,106,91,89,98,99,94,106,93,91,91,102,90,104,98,99,102,94,102,101,84,113,100,100,93,113,123,99,108,105,106,102,99,101,94,87,103,116,107,97,98,97,104,105,111,101,98,94,102,98,105,106,102,106,103,113,110,97,106,95,114,104,115,96,89,103,94,106,104,100,104,106,91,101,105,119,97,108,101,104,98,93,93,105,116,106,111,96,100,97,115,111,100,107,108,112,103,117,111,106,108,93,95,110,119,96,107,106,101,94,103,106,102,100,101,96,112,110,102,102,116,113,102,106,108,106,91,92,90,104,98,100,103,107,91,98,100,101,102,91,106,98,94,110,105,100,96,83,106,96,73,92,100,107,102,86,105,100,110,111,94,100,101,98,98,109,99,107,104,108,97,96,91,96,103,109,103,91,100,92,97,102,107,118,105,76,117,94,97,110,113,102,104,100,95,94,117,97,110,116,104,99,101,100,100,89,85,99,100,112,89,104,104,107,99,100,100,99,94,110,100,108,88,91,109,103,109,106,100,103,100,101,104,91,97,103,108,118,110,105,99,96,95,104,101,100,104,100,113,103,105,107,99,95,95,109,113,107,95,105,94,102,107,108,109,92,103,97,100,98,99,101,96,97,88,106,96,104,83,97,112,99,107,104,106,102,100,116,101,107,117,115,105,105,104,96,107,100,92,103,95,103,102,107,105,106,105,101,100,103,98,107,111,109,95,102,106,107,96,104,97,100,87,112,100,103,106,99,106,105,113,95,89,108,101,98,101,112,106,105,92,106,112,93,104,109,95,91,91,97,86,114,101,98,103,101,110,114,105,92,103,110,108,106,99,113,109,105,86,100,98,103,100,106,106,90,121,112,101,108,102,92,109,106,104,99,94,108,105,106,98,97,107,104,101,101,98,113,101,96,108,98,100,101,107,109,112,106,107,107,99,109,101,102,108,109,105,111,106,105,98,97,109,88,74,106,103,106,103,105,106,101,111,93,96,105,107,95,107,91,106,104,104,112,104,101,106,118,113,97,92,105,113,100,100,94,91,113,105,116,101,110,95,106,112,98,99,100,100,97,109,113,111,99,94,98,106,117,106,102,108,114,97,105,98,106,103,105,107,95,112,95,101,102,94,117,90,110,104,109,91,108,105,114,110,101,109,91,102,111,104,102,95,102,105,99,109,102,109,106,101,101,88,109,104,104,106,106,96,102,92,96,91,115,104,112,108,100,96,100,101,93,106,102,110,106,109,97,96,98,93,104,98,106,110,96,95,99,84,109,110,104,93,105,90,120,100,109,103,94,118,102,108,100,112,101,99,101,96,97,105,105,99,100,93,99,103,104,101,100,98,104,100,81,96,97,96,108,105,108,98,107,115,102,93,110,91,105,99,109,112,95,97,100,101,101,71,97,96,99,96,102,98,108,107,110,100,103,105,116,99,103,101,106,113,91,113,93,72,103,108,104,101,93,101,95,113,107,91,106,105,92,97,105,101,98,97,97,108,113,98,103,100,96,95,111,100,115,100,101,86,96,105,95,108,103,97,99,94,100,99,109,119,105,107,94,98,109,100,96,103,116,109,99,103,104,99,107,95,113,103,95,110,108,103,88,106,106,102,92,104,97,101,94,100,117,97,94,104,103,95,102,103,113,107,103,107,96,102,108,75,100,102,106,103,99,114,94,104,102,109,101,99,94,101,106,78,103,103,102,114,102,101,93,98,90,111,100,91,118,92,99,84,107,109,98,98,100,100,102,116,102,96,107,97,101,110,104,98,108,98,104,113,104,110,98,109,106,105,104,113,95,97,111,100,109,107,103,127,95,101,104,92,108,101,97,113,101,92,97,110,108,106,102,99,94,106,109,97,100,103,96,94,96,101,100,104,98,105,90,105,105,117,113,114,105,109,109,113,75,99,110,98,113,101,108,105,95,95,94,101,106,98,99,96,95,103,98,110,111,99,79,101,106,92,99,100,96,87,107,107,121,116,100,109,101,91,104,113,94,102,102,95,100,92,105,93,121,110,101,110,101,101,111,104,96,101,95,96,94,98,108,81,94,96,96,115,101,102,101,108,103,99,115,106,102,84,104,97,88,120,100,103,104,86,109,95,99,95,101,81,102,93,104,96,97,101,104,105,101,108,101,81,102,110,101,98,99,103,116,109,94,117,105,97,106,107,104,99,97,100,99,113,107,102,107,99,108,97,97,84,105,115,106,116,98,99,111,113,107,105,98,103,105,109,103,103,106,96,91,101,112,99,96,109,101,97,90,101,111,94,99,105,103,109,98,82,93,101,104,96,97,103,91,105,95,100,109,96,106,96,97,108,103,103,99,104,96,107,104,107,113,101,105,105,99,99,99,97,111,116,97,113,94,100,91,104,109,90,92,80,120,108,103,84,108,102,101,101,108,104,100,96,109,99,98,96,107,76,109,102,84,96,96,103,96,110,97,89,96,96,96,90,104,106,106,102,115,106,95,112,114,102,95,104,103,100,95,109,101,108,93,99,100,97,114,79,100,103,98,104,91,102,108,108,99,113,91,106,102,107,97,104,103,113,98,102,118,85,99,98,100,110,83,100,96,103,107,103,97,91,98,100,92,102,88,91,97,102,114,101,97,99,99,88,93,98,96,93,97,121,92,108,94,98,105,102,85,96,92,96,104,104,98,102,108,91,101,109,103,105,101,96,90,113,98,101,98,112,109,104,104,98,112,102,92,98,116,92,108,84,99,97,105,87,89,98,88,111,99,68,102,91,91,104,105,87,88,101,96,106,112,100,84,92,108,105,97,99,93,104,93,108,105,108,113,101,99,95,99,93,100,97,96,107,109,97,102,100,107,102,104,109,108,96,107,103,102,106,97,100,91,89,104,104,95,98,119,113,117,112,102,102,84,92,117,72,93,108,95,104,112,102,98,108,101,104,106,100,101,103,101,107,96,94,104,88, +682.60657,95,101,105,103,99,94,114,97,104,90,103,98,97,104,103,103,97,107,101,81,95,95,94,101,104,108,101,100,101,98,100,90,94,94,98,84,99,108,92,92,93,103,89,104,97,113,102,103,85,94,93,104,99,105,95,87,99,80,96,88,91,95,100,104,103,94,98,111,92,98,100,101,96,98,72,116,94,103,107,95,117,96,103,98,104,105,112,141,106,94,105,104,92,97,86,95,95,103,108,101,100,103,95,106,91,101,91,107,104,77,105,106,110,107,79,112,115,100,107,95,100,88,99,104,113,104,99,96,104,102,96,117,91,104,104,105,106,106,83,101,99,121,99,109,95,95,100,90,103,99,92,102,109,98,95,104,106,95,109,118,98,113,105,95,112,88,89,105,112,106,92,89,100,97,105,100,100,106,98,97,101,115,101,81,96,109,89,89,105,112,92,95,99,101,102,83,102,96,109,96,96,98,100,113,106,98,100,110,109,107,102,107,100,106,105,100,92,96,94,87,106,103,100,89,92,104,97,101,92,99,98,101,100,107,106,86,101,102,90,96,97,109,94,96,97,102,103,110,103,99,103,105,107,91,96,108,98,99,93,105,94,107,103,105,98,102,98,87,99,89,106,91,102,104,105,103,92,98,99,101,107,109,106,93,105,104,92,104,95,97,106,104,94,103,109,96,110,114,92,107,98,101,93,104,90,101,93,109,109,99,99,108,107,106,98,102,102,106,122,106,108,100,114,100,97,101,100,92,115,97,110,102,100,95,93,107,95,105,104,103,102,82,94,96,96,99,107,103,101,101,96,93,112,104,112,105,94,99,101,106,99,100,94,100,101,94,99,90,96,116,104,93,99,112,100,96,106,115,98,107,105,106,102,107,97,99,94,102,108,97,105,90,73,115,109,94,105,98,101,115,104,98,110,100,109,91,99,107,93,95,93,94,105,102,96,99,99,101,98,87,108,99,96,100,108,91,94,110,103,110,92,100,100,95,105,95,94,98,85,106,109,106,97,115,90,98,92,94,100,103,110,87,103,109,113,94,105,97,108,121,107,115,118,98,101,105,92,106,93,99,92,104,101,96,97,95,99,103,97,114,101,101,99,95,118,94,112,87,95,93,103,85,82,105,97,111,97,104,101,102,101,98,93,98,113,96,95,93,103,101,93,110,103,98,118,107,106,94,99,98,108,106,116,98,112,99,99,99,101,100,98,99,81,107,105,98,109,104,105,112,97,102,106,105,92,95,106,102,105,109,98,103,108,100,105,82,109,101,101,105,101,106,100,93,105,99,105,110,93,95,91,89,105,95,109,76,113,101,105,99,104,98,108,67,95,94,102,88,109,95,97,100,98,103,103,101,93,95,104,104,97,97,98,118,104,100,92,97,102,117,111,99,93,105,109,103,106,106,105,108,103,102,100,110,109,111,97,110,112,109,93,102,67,105,101,101,89,104,107,98,106,115,97,99,105,95,104,104,98,95,106,109,102,84,107,112,127,103,99,102,113,109,114,97,102,99,108,97,106,110,100,82,103,101,92,100,94,91,104,102,102,108,120,93,102,98,89,96,101,97,96,91,107,105,98,111,106,76,97,103,110,99,103,94,96,104,104,102,102,114,100,101,79,98,88,91,109,90,92,91,110,97,105,102,95,90,89,95,100,98,103,100,94,102,78,95,101,89,100,101,65,92,100,100,79,96,111,108,96,87,108,97,96,104,98,104,104,110,98,99,101,103,95,98,101,100,95,106,113,100,88,105,106,107,112,102,103,108,95,94,98,113,106,104,98,109,117,99,100,107,104,107,98,103,102,109,95,107,93,115,97,95,93,103,97,99,99,95,93,100,100,91,86,104,113,102,104,105,109,123,110,110,82,108,93,118,80,107,92,107,100,101,100,108,94,118,92,112,104,106,93,104,99,96,108,98,97,96,88,92,104,93,112,102,97,101,105,76,112,95,98,120,80,117,108,101,94,96,120,99,95,112,91,105,93,112,109,92,109,80,104,106,104,101,107,106,95,109,100,96,108,107,103,103,92,88,99,93,88,105,118,105,106,106,105,92,100,96,98,85,97,94,99,112,114,101,102,104,106,103,102,83,107,102,90,114,98,91,97,106,95,101,98,101,104,110,100,101,107,103,95,100,104,119,115,101,114,104,99,97,93,121,113,107,106,97,98,107,95,95,100,100,66,97,108,113,96,109,94,96,97,96,105,102,109,96,83,93,107,102,98,108,104,103,104,111,103,92,95,110,95,94,99,104,104,88,104,96,100,100,109,92,112,100,104,102,100,114,86,98,109,99,111,116,101,101,95,108,92,112,107,110,106,97,101,97,95,128,104,113,120,104,97,95,103,93,92,105,121,101,109,106,98,95,97,113,105,87,116,114,108,117,98,97,98,97,90,99,102,113,103,99,100,110,94,98,114,96,101,75,100,105,107,99,106,96,125,102,97,100,92,103,101,90,102,102,104,98,106,102,96,123,103,88,103,100,107,105,105,108,101,105,108,107,122,103,107,99,95,97,104,108,103,117,115,106,95,104,102,105,113,113,97,108,113,106,98,113,102,84,117,112,106,98,108,125,126,103,100,102,113,97,99,89,96,104,107,120,110,103,108,101,109,96,111,100,108,96,95,106,101,94,87,93,117,106,109,101,108,91,97,99,99,98,104,99,91,109,89,95,96,108,119,110,107,101,110,98,108,107,105,109,116,97,95,110,100,103,114,109,91,91,110,95,110,102,108,105,110,101,112,106,104,107,110,105,108,122,105,107,94,100,101,100,81,90,109,99,104,101,99,103,104,105,108,102,103,102,108,103,100,98,108,96,99,100,102,102,112,105,107,100,103,116,87,107,83,101,96,119,109,99,110,98,105,113,107,105,104,97,102,101,106,103,104,108,98,104,119,109,104,106,101,100,111,98,99,129,102,108,86,104,97,103,109,99,111,121,104,102,94,103,91,105,96,101,107,96,101,102,100,105,105,94,87,105,105,105,98,108,111,104,97,98,111,100,89,102,98,109,99,97,119,105,104,98,114,97,102,97,102,107,99,92,104,119,94,90,108,111,109,103,102,115,90,101,95,92,88,86,101,105,108,96,108,102,96,106,103,99,109,98,96,97,112,98,98,68,91,104,92,98,103,105,120,104,104,104,103,104,101,102,95,109,99,105,109,98,103,99,105,113,95,99,100,88,114,109,112,112,103,104,112,106,100,101,84,111,94,98,104,100,100,105,104,103,115,103,94,95,100,98,111,101,104,93,102,110,101,110,105,95,104,93,111,113,94,111,102,81,97,96,93,99,102,104,103,99,104,98,101,101,107,105,107,101,100,117,96,95,98,101,101,93,99,96,97,96,113,100,90,104,98,119,106,99,102,105,97,97,96,99,84,107,99,108,110,107,101,101,90,110,93,99,96,106,111,88,107,128,97,110,111,97,109,102,80,94,113,114,101,112,101,92,115,98,104,111,91,94,105,113,113,93,117,85,112,95,99,97,113,92,112,110,96,105,96,105,98,123,98,102,98,67,102,92,106,100,101,106,102,102,90,106,104,103,103,107,108,108,103,102,103,109,114,91,102,95,107,98,95,106,98,106,104,115,111,102,91,96,82,99,103,113,110,95,107,101,101,99,99,109,91,92,100,97,96,101,102,92,104,105,95,120,108,97,98,104,96,97,112,106,102,99,94,91,100,106,108,102,101,90,100,104,108,90,99,115,100,107,97,90,110,94,98,93,87,101,96,94,110,78,103,103,100,90,92,109,106,120,105,101,94,107,106,100,114,101,108,110,91,81,99,109,109,98,100,103,99,99,97,103,106,95,101,102,102,109,107,98,99,109,89,101,91,98,98,100,106,113,103,108,106,108,109,110,98,100,112,92,92,100,88,106,104,99,95,87,98,84,99,104,87,101,105,101,101,100,94,106,110,106,117,100,91,100,95,102,102,83,99,99,105,106,88,94,98,99,102,109,107,116,106,91,95,110,106,106,89,103,93,103,87,97,104,101,93,99,125,89,111,104,100,92,94,97,111,93,105,109,112,85,94,99,96,98,94,103,109,100,100,102,98,95,102,96,94,97,103,91,100,113,100,96,104,117,90,116,98,107,105,108,99,109,96,104,95,106,90,116,98,97,61,102,94,96,88,111,106,99,102,97,99,112,104,75,102,88,109,102,97,100,93,98,104,111,87,105,110,100,98,115,97,107,110,111,103,104,101,90,108,95,106,96,93,97,112,109,81,103,99,83,108,94,108,84,102,100,100,101,87,103,105,102,100,92,113,95,95,99,91,100,89,109,109,105,103,95,95,113,113,106,112,106,93,106,104,93,102,116,108,93,110,112,97,88,104,101,104,110,104,112,114,116,92,94,108,109,100,98,106,100,100,95,98,99,95,111,100,97,106,95,100,101,97,103,94,127,109,96,103,105,85,101,101,107,87,102,104,95,96,96,99,96,102,97,98,110,109,110,105,95,97,100,101,98,92,101,107,100,104,101,98,109,88,101,99,97,108,95,102,98,107,106,95,110,98,107,106,101,97,104,104,100,107,98,101,93,107,101,105,95,105,92,109,110,119,107,101,112,112,71,100,113,99,103,89,109,96,95,102,94,105,98,92,101,106,100,98,95,102,91,111,91,109,85,103,102,100,93,89,105,102,95,92,77,109,95,102,105,87,99,104,103,106,105,111,105,103,78,93,104,106,85,110,106,106,91,94,102,107,107,100,109,95,98,96,98,112,98,100,87,89,104,104,110,99,109,104,98,96,112,99,106,98,110,95,98,101,103,97,99,106,96,85,101,100,109,87,106,94,102,88,100,103,105,88,96,99,108,97,115,107,101,92,104,92,78,101,117,99,104,99,101,103,90,102,103,93,83,105,108,103,100,98,107,101,108,114,107, +682.74786,108,113,94,107,82,92,108,98,83,100,105,106,97,108,97,114,121,103,90,103,95,97,102,102,105,102,102,127,100,99,102,97,98,101,125,98,101,108,99,108,108,93,97,111,100,118,99,106,107,101,84,115,98,96,117,106,93,101,102,99,93,112,109,100,97,113,98,104,101,103,108,90,101,100,98,98,100,97,98,79,89,96,100,104,104,102,103,119,105,100,103,104,95,103,101,109,91,96,101,100,110,108,91,102,109,97,99,95,99,100,101,103,121,107,98,107,97,94,105,95,95,100,105,102,99,108,105,95,114,107,93,107,94,99,104,92,96,106,64,94,106,108,102,93,112,130,112,109,106,104,107,103,97,95,118,102,94,98,96,96,98,93,99,80,93,91,105,98,114,97,109,92,91,85,108,89,107,102,99,104,109,102,101,103,90,99,103,110,107,112,113,111,101,104,100,103,114,104,100,102,108,101,99,103,90,96,105,103,109,112,109,108,94,114,106,105,111,100,100,89,98,98,90,89,101,111,103,104,99,99,128,98,103,103,94,96,99,100,93,118,96,101,92,103,92,92,110,110,105,101,104,92,100,102,94,96,93,99,91,94,95,98,102,109,70,100,104,102,98,90,102,106,97,107,92,92,101,117,107,96,113,112,105,94,94,102,110,102,103,98,108,97,103,90,98,104,109,103,98,97,104,90,107,101,104,105,101,115,103,99,102,105,98,101,97,103,100,96,100,91,102,95,99,106,109,105,107,96,110,100,107,105,104,101,109,104,95,114,98,100,96,101,110,100,87,106,101,114,98,106,99,95,104,99,102,94,102,109,122,111,93,95,101,104,100,94,104,91,96,105,95,108,109,108,102,99,108,95,87,97,90,108,100,115,91,98,98,83,102,104,99,104,94,98,93,99,105,105,101,98,95,105,106,98,96,88,94,109,96,94,108,95,99,98,95,91,96,109,102,98,94,93,110,95,113,98,85,105,98,105,106,101,102,101,108,101,100,112,89,101,108,101,108,113,84,98,116,103,101,103,94,102,105,105,109,105,102,113,103,93,99,102,98,108,110,106,103,89,108,103,112,106,102,105,105,105,99,111,113,101,100,109,112,94,108,103,115,88,96,100,93,98,88,105,108,103,97,107,95,100,103,96,99,99,105,92,106,101,108,91,109,96,103,99,95,95,112,111,102,92,101,99,101,100,111,107,103,102,102,105,101,91,91,70,104,105,104,92,95,99,100,102,104,104,105,107,102,94,100,99,109,113,103,94,77,91,110,99,99,90,91,97,101,99,104,100,97,110,106,93,101,103,100,104,109,97,102,92,112,113,91,105,105,73,91,83,116,98,109,103,109,114,102,114,108,105,105,101,106,95,100,103,105,92,96,94,98,105,98,99,97,109,102,95,97,109,98,87,96,104,110,110,108,96,98,104,98,114,85,68,94,103,104,110,95,91,99,104,104,109,108,104,79,94,98,101,103,106,105,102,98,110,102,118,117,95,104,98,117,106,106,109,105,102,90,100,102,108,111,98,109,102,106,104,96,103,102,95,113,96,110,105,106,104,95,104,91,94,109,103,100,104,103,95,102,106,95,90,94,99,105,92,97,101,101,103,113,107,96,100,107,110,98,102,103,83,94,100,90,110,94,107,96,119,105,94,88,99,99,106,105,109,98,98,100,108,100,94,104,104,92,99,97,105,107,112,95,109,99,95,113,109,101,111,104,115,101,95,104,107,98,97,106,87,87,107,105,118,95,101,102,103,105,119,107,105,114,102,103,98,105,100,109,120,87,113,89,108,96,105,101,105,106,98,108,98,95,87,101,110,98,97,96,108,100,104,103,101,108,102,107,101,96,95,108,101,106,103,98,91,95,103,95,105,99,107,110,101,115,103,91,77,105,111,104,110,102,106,101,98,98,110,113,90,102,118,91,97,111,100,97,98,92,113,101,101,103,99,97,105,106,101,104,99,103,108,101,117,101,109,109,99,81,103,97,102,105,117,114,94,100,105,105,99,95,110,94,109,106,108,101,94,93,107,94,103,64,99,109,83,92,109,76,100,103,96,105,99,104,98,97,106,113,99,101,99,82,95,121,108,110,101,102,119,112,96,104,101,97,106,97,103,91,94,127,99,102,100,106,115,103,106,105,103,88,113,84,112,94,116,104,112,114,98,117,97,94,105,92,99,102,99,102,101,110,100,106,96,100,100,89,103,98,101,101,106,93,99,95,99,100,103,107,95,88,108,117,109,88,96,101,128,105,113,105,96,105,105,91,106,113,101,105,75,104,106,104,107,100,103,94,97,97,102,106,106,107,95,102,101,104,108,101,89,107,95,103,89,113,104,106,103,96,101,104,99,98,111,107,104,98,111,97,99,91,100,96,106,85,102,100,98,102,100,97,110,113,99,95,98,102,103,104,104,92,101,97,107,126,98,92,96,90,122,102,107,114,114,93,99,114,98,104,104,99,102,111,98,108,113,98,100,107,102,99,108,109,88,109,104,104,93,95,102,105,101,98,91,103,102,99,95,106,90,105,105,93,93,109,100,108,109,98,94,102,107,100,102,104,100,94,113,101,95,99,108,95,113,99,104,108,102,96,99,90,88,102,102,111,98,111,100,107,99,88,106,95,112,111,108,104,89,106,91,87,117,100,102,111,109,100,123,109,99,104,103,115,103,107,95,98,111,99,105,104,116,103,97,99,98,100,104,103,106,102,104,98,102,111,99,103,104,102,96,108,105,100,106,110,112,94,115,98,111,104,99,113,88,106,108,98,120,115,104,68,106,98,102,97,108,100,94,103,103,97,98,102,98,113,95,107,91,107,99,103,95,109,105,111,104,108,93,99,97,103,103,97,105,98,108,98,109,105,103,121,72,98,101,104,100,73,98,94,102,105,99,109,99,101,96,107,104,106,96,100,110,96,94,108,105,108,83,102,102,105,104,101,99,107,108,92,86,95,92,104,87,101,109,109,102,117,105,99,101,125,106,110,111,118,105,105,110,112,104,103,93,107,98,93,107,113,97,104,96,110,99,104,101,121,106,94,94,104,97,106,92,104,85,103,102,106,113,86,109,102,103,102,105,102,80,99,112,102,103,116,111,96,111,103,97,112,101,115,104,105,116,115,100,109,100,91,104,111,116,104,103,102,102,95,100,89,110,102,98,94,93,110,95,109,109,98,114,102,113,92,98,107,108,107,106,97,105,117,96,105,106,103,100,106,98,101,101,96,99,97,113,112,119,105,101,110,114,99,118,109,97,105,120,105,100,103,92,108,99,102,85,92,102,95,100,100,91,110,113,100,109,101,92,100,112,116,101,103,101,106,107,95,97,104,100,136,104,117,89,109,117,107,98,104,100,103,105,107,110,107,109,109,100,108,103,108,102,99,106,101,106,105,95,110,101,110,100,102,117,97,103,112,94,113,105,95,108,83,93,94,121,101,108,99,105,108,103,104,108,112,104,101,106,90,100,100,95,103,103,107,109,114,93,100,109,112,101,108,128,93,107,100,96,103,102,116,100,106,105,108,80,98,96,96,106,113,120,114,100,113,99,96,111,109,107,104,100,105,117,100,97,107,109,98,95,92,106,107,109,96,110,92,103,98,100,92,110,117,109,98,102,100,110,114,115,106,112,98,90,102,88,109,99,108,109,103,91,109,101,96,98,106,99,107,95,112,98,101,93,97,92,102,109,110,99,105,101,95,125,102,91,103,96,96,71,101,103,105,105,102,95,111,94,94,103,105,100,92,100,103,101,90,96,102,107,124,116,100,105,109,99,104,97,100,102,91,110,111,114,110,97,112,103,101,100,102,105,100,100,112,91,94,109,92,112,92,109,96,108,93,104,102,91,117,97,100,110,114,95,97,102,110,91,107,109,103,104,99,108,103,103,104,87,94,97,113,98,101,106,108,108,114,104,116,104,101,103,116,105,109,107,96,105,106,98,128,100,85,110,101,105,98,100,106,94,107,99,93,113,108,101,101,103,90,94,107,64,91,101,107,91,106,72,100,111,99,105,89,95,114,76,98,98,106,97,92,110,108,91,104,87,85,116,116,94,101,88,109,100,101,95,93,93,96,106,111,97,108,108,110,101,96,101,105,101,98,105,99,108,116,105,110,114,110,98,96,93,97,104,104,101,92,98,84,96,88,110,101,101,103,90,103,97,75,103,113,101,108,102,97,105,103,107,100,110,95,102,89,92,109,102,97,112,100,106,106,102,107,105,104,107,85,97,108,94,106,96,102,109,98,99,95,97,99,123,99,123,104,100,100,108,97,104,92,102,96,103,111,102,110,100,105,105,102,107,113,104,108,109,112,92,98,102,107,105,94,100,113,99,118,98,92,98,103,105,112,104,99,106,106,103,95,111,99,99,109,103,115,98,97,109,94,113,110,97,103,90,102,113,89,100,105,109,105,103,102,85,94,104,95,94,106,130,97,117,98,104,98,112,102,85,95,104,103,92,93,95,109,99,110,108,97,106,111,114,95,101,102,110,119,95,111,97,114,105,94,107,113,87,109,102,101,101,100,112,99,101,91,98,98,104,95,100,110,104,94,66,108,94,99,90,115,103,95,75,112,91,119,109,98,106,121,103,103,105,98,101,104,102,93,102,112,120,105,101,109,93,107,91,92,92,90,103,109,106,102,85,100,113,93,90,104,88,94,87,112,108,98,103,103,108,100,103,100,87,117,103,107,103,93,101,105,108,95,99,92,108,103,93,105,98,118,106,109,83,96,95,103,97,98,103,105,99,93,99,103,101,96,96,108,98,104,104,122,121,87,105,114,103,98,101,105,105,95,98,104,95,93,109,98,106,85,97,105,107,100,100,96,89,101,112,110,100,110,95,92,90,113,108,103,98,102,109,93,102,104,99,103,102,113,100,95,100,100,94, +682.88916,105,87,88,88,92,102,90,88,90,102,80,110,87,107,96,89,99,100,96,103,105,92,106,105,102,101,96,99,113,105,105,103,110,95,117,95,105,94,86,95,104,109,92,98,97,88,109,119,116,105,108,99,95,100,116,100,105,94,97,94,96,100,98,95,108,111,102,112,94,109,95,92,106,98,101,101,98,104,101,104,104,101,107,106,103,96,114,101,91,94,103,99,94,96,101,103,93,95,95,97,99,99,97,91,92,91,93,96,90,105,99,93,99,96,99,102,92,111,107,100,98,95,104,107,108,111,96,102,103,98,110,103,95,98,95,103,97,98,104,105,111,100,95,92,109,108,117,101,105,81,102,95,100,105,107,107,98,95,100,114,98,99,96,103,111,78,95,109,99,101,102,112,106,97,101,90,103,103,95,85,92,99,91,96,105,104,97,97,104,101,106,116,93,101,102,104,102,81,104,99,109,103,98,103,83,94,102,114,112,103,107,93,101,98,109,110,99,101,94,101,110,93,99,91,110,99,113,96,98,101,91,92,106,104,102,94,99,110,105,95,96,104,98,102,97,98,107,98,101,101,103,96,91,104,74,101,97,109,100,84,101,112,92,108,94,110,94,100,103,100,110,95,101,98,109,95,103,102,96,104,104,104,95,108,104,95,93,101,97,105,102,98,103,91,104,110,105,93,105,96,102,101,112,110,98,111,96,115,107,113,95,106,96,111,103,97,78,102,102,101,99,98,90,95,100,103,90,95,107,95,77,87,105,96,108,99,104,92,119,103,94,99,90,91,101,108,104,112,101,88,110,100,97,94,97,105,102,101,105,107,101,99,105,99,92,102,95,107,99,110,99,108,108,103,99,98,110,101,90,91,104,94,86,101,83,80,102,111,107,100,104,94,88,103,96,107,103,97,92,119,106,93,102,99,97,80,91,100,104,103,89,87,99,122,114,79,95,99,106,88,113,93,93,101,90,103,99,65,87,113,103,114,91,96,96,101,98,106,104,105,96,101,100,100,94,90,101,93,102,99,98,107,96,107,99,101,113,91,114,97,100,95,99,114,96,104,106,91,104,104,105,99,116,98,95,96,96,108,115,89,109,99,100,99,106,87,114,104,99,104,108,97,98,104,113,96,96,102,103,94,103,98,104,103,103,103,99,107,96,95,108,106,100,67,107,97,86,91,112,101,98,110,94,106,102,100,100,100,100,98,101,97,83,83,112,106,116,99,103,98,93,98,102,100,102,108,106,106,99,92,103,113,90,89,76,99,93,88,93,100,99,89,90,100,101,108,103,98,96,96,100,84,105,67,92,106,100,96,100,101,94,105,102,83,108,101,106,97,104,92,108,107,102,108,100,103,99,89,111,83,113,111,103,106,95,95,93,111,102,107,104,92,100,99,104,117,98,97,117,91,100,102,97,98,89,100,104,106,102,101,100,105,111,93,95,103,92,105,100,113,94,88,96,95,80,96,86,110,111,103,90,108,102,111,97,94,95,103,93,94,107,104,101,104,87,99,103,100,93,106,106,98,111,108,93,111,102,96,110,94,103,114,101,88,105,94,99,101,103,103,97,95,97,103,102,104,105,101,92,92,101,95,104,91,94,95,102,101,90,98,110,101,96,114,102,93,100,98,101,108,102,96,108,91,84,82,105,109,102,110,104,91,102,98,86,91,108,93,113,93,96,98,90,102,96,85,96,94,91,100,98,87,98,87,103,114,102,90,94,121,116,93,96,113,109,102,88,98,104,102,113,107,109,100,106,95,93,86,84,98,87,101,115,106,105,105,95,119,119,105,86,93,105,103,94,93,101,107,116,104,93,88,92,103,97,99,96,100,104,107,99,104,98,110,103,113,99,112,97,101,94,97,97,102,100,99,109,100,102,100,106,108,106,107,94,110,109,93,94,94,100,102,69,105,85,94,104,90,95,98,94,96,97,111,96,100,99,90,97,92,94,95,97,113,110,101,89,82,102,100,96,102,97,95,108,91,99,102,100,93,101,103,98,87,96,102,96,92,93,99,102,104,103,100,113,98,91,104,90,103,110,103,98,98,105,121,99,102,91,105,103,102,104,102,101,107,98,113,113,100,95,91,104,109,98,90,90,100,100,94,100,103,105,100,98,93,95,92,108,88,93,95,95,91,96,99,94,97,105,104,105,101,99,105,117,100,101,105,92,101,113,101,102,100,103,73,105,97,102,99,116,94,105,97,100,103,104,100,93,101,106,107,95,93,109,104,89,95,103,94,108,98,97,110,95,95,98,91,87,106,96,102,94,91,89,102,91,109,98,87,97,101,93,101,109,100,104,110,99,86,105,107,103,92,103,100,104,103,110,96,91,106,84,104,92,79,93,104,100,101,105,91,79,100,99,112,105,99,106,94,105,101,98,97,97,72,114,105,101,97,92,101,93,105,90,105,99,94,108,95,103,116,96,97,105,94,96,90,92,94,98,97,116,100,97,106,109,101,117,113,101,114,116,101,88,98,82,113,93,102,107,104,90,97,101,108,105,96,108,100,94,109,112,90,109,105,87,117,103,100,109,118,112,103,94,95,105,92,102,97,105,106,102,98,95,99,101,101,98,98,104,107,99,110,97,98,104,100,111,108,103,115,116,113,97,102,110,117,103,102,116,105,88,103,108,103,116,96,95,100,108,100,112,110,107,126,100,108,103,100,98,106,97,103,97,96,102,107,95,93,100,113,98,131,99,109,105,90,102,105,111,112,118,103,98,109,99,111,98,74,96,107,103,104,118,104,91,107,100,101,98,106,107,105,111,87,94,99,105,97,104,100,99,109,98,99,104,110,102,112,94,106,118,117,108,98,99,107,95,108,101,99,107,99,119,97,102,104,105,113,101,92,103,109,112,94,96,112,105,97,99,97,102,107,98,110,109,113,101,105,99,110,97,105,100,102,108,106,118,102,109,98,100,101,105,107,108,105,91,106,106,96,107,116,93,97,111,109,99,102,106,89,100,99,113,111,99,98,95,99,113,98,123,113,110,101,102,95,103,101,122,97,101,100,99,105,83,112,110,115,94,101,108,101,101,108,98,64,92,106,101,108,109,97,98,104,96,108,109,94,100,112,99,113,111,106,101,99,104,108,101,103,110,111,106,102,109,107,92,99,105,106,93,93,107,107,94,107,101,106,96,94,103,112,99,96,101,106,100,117,105,96,112,104,98,90,100,100,98,100,103,98,98,90,98,126,109,113,102,101,125,106,101,97,88,111,112,96,110,110,110,95,117,112,103,103,106,110,100,106,112,96,103,91,90,108,106,105,110,101,115,113,115,97,117,106,123,103,110,109,111,99,92,116,100,104,83,97,102,122,105,108,100,104,92,94,104,101,106,105,98,94,109,102,109,111,102,97,100,106,97,103,98,116,103,122,107,94,119,89,112,109,106,111,106,98,94,105,103,108,99,110,71,78,108,109,97,125,108,99,95,103,97,101,90,94,105,98,107,104,105,109,105,103,97,106,117,95,108,91,105,109,103,96,94,113,109,105,102,101,102,106,103,108,95,110,95,113,97,106,105,99,102,107,103,116,97,104,91,99,97,106,97,103,102,103,114,97,104,106,104,106,102,105,95,96,104,101,96,94,97,104,93,105,102,103,101,107,108,100,100,97,96,101,105,103,109,103,98,94,83,104,108,114,103,92,102,103,116,95,92,98,109,103,91,95,95,107,107,104,107,101,113,106,103,94,100,70,110,105,100,101,122,105,106,104,92,108,109,113,105,107,97,113,102,97,112,105,102,100,98,100,98,102,101,110,106,99,111,104,99,103,97,96,111,112,93,112,78,116,104,96,88,115,104,110,102,93,100,98,103,105,100,105,99,98,113,106,103,104,112,115,106,106,108,91,110,109,103,109,98,98,102,87,103,107,116,106,105,96,103,99,104,111,96,104,111,105,96,94,102,94,112,102,99,109,103,95,107,102,100,111,93,92,89,110,102,104,94,116,100,100,99,107,91,96,90,105,95,105,99,101,110,108,91,92,100,101,97,102,112,106,106,106,114,95,98,92,108,109,102,102,102,104,105,102,106,105,116,90,90,101,116,91,99,94,109,105,112,99,101,112,91,106,105,105,102,103,102,102,112,99,101,108,105,106,95,114,108,92,90,96,86,102,98,98,135,112,80,93,98,101,96,103,88,136,105,101,96,97,110,95,107,106,109,106,100,116,98,102,102,105,111,108,119,101,93,88,101,108,103,92,117,106,100,92,102,101,102,96,104,98,102,95,95,89,98,102,106,108,111,93,112,87,97,101,100,111,96,104,123,102,102,104,112,100,104,104,104,104,109,106,99,98,100,103,109,92,86,108,99,92,90,106,99,97,110,74,103,100,105,100,96,96,97,98,102,105,110,101,107,117,106,95,109,103,97,108,106,104,96,100,114,100,92,103,76,98,104,93,119,92,102,86,99,101,95,106,99,103,99,109,112,105,102,61,102,105,96,94,104,96,118,113,103,106,101,101,95,71,109,92,98,107,120,104,108,104,106,92,110,98,108,106,104,109,106,101,88,101,107,102,91,105,109,106,93,92,113,100,115,107,104,91,115,102,120,100,99,102,95,97,103,109,100,100,107,94,102,107,98,110,97,106,121,105,106,113,99,100,105,91,105,100,109,103,103,109,141,103,107,108,110,99,86,81,108,95,102,101,91,88,106,96,100,96,111,104,104,104,98,106,96,111,103,109,109,89,100,106,101,101,99,100,101,97,98,106,102,114,98,114,103,98,98,118,89,101,111,113,102,107,100,95,102,109,95,105,89,96,108,104,102,109,95,103,99,112,96,111,102,98,94,95,97,115,94,117,112,98,96,117,108,104,91,111,78,127,119,97,107,103,104,81,93,97,110,104,103,106,85,96,86,113,98,96,104,111,121,94, +683.0304,90,109,99,99,101,109,120,106,107,102,96,89,99,101,95,90,95,92,88,93,110,95,105,113,89,108,102,98,99,93,97,109,101,99,97,111,115,106,100,90,81,95,86,96,95,90,108,113,95,98,105,105,100,97,108,102,103,100,104,98,95,110,99,97,103,114,92,112,110,103,108,112,100,98,93,95,92,104,108,99,94,86,105,95,112,94,102,122,91,85,108,98,88,84,98,102,113,86,99,114,99,101,86,106,92,104,91,103,93,91,98,95,111,88,88,94,95,95,105,100,89,98,103,103,124,104,107,95,92,96,97,80,104,102,94,97,98,106,92,99,102,101,97,99,86,108,102,98,94,109,99,109,110,85,94,95,95,88,110,90,95,106,105,102,95,97,101,90,104,107,99,95,101,91,104,104,105,97,115,113,95,111,104,97,105,107,98,78,96,97,65,94,99,100,102,105,106,109,95,105,84,104,70,101,98,106,94,100,100,103,91,102,95,116,100,85,97,103,94,96,110,98,92,96,102,105,95,97,101,84,93,105,92,99,99,101,100,121,98,91,95,105,105,106,95,113,107,97,106,99,97,100,93,79,98,103,107,97,92,90,88,107,96,81,90,99,104,90,113,101,97,87,113,91,102,111,99,106,104,100,100,102,92,97,100,94,88,115,104,95,95,106,104,92,109,116,107,105,93,75,92,101,104,94,86,99,101,102,97,102,90,95,106,114,98,97,107,95,99,106,104,93,102,88,97,90,113,90,101,110,100,87,104,106,111,91,97,108,90,109,95,95,92,91,86,85,101,94,96,94,91,98,93,101,91,99,99,101,108,99,98,86,104,103,88,111,96,103,98,115,98,92,102,105,102,90,105,120,102,101,101,98,81,105,105,104,105,96,106,87,105,104,101,92,95,93,95,107,91,99,103,98,98,95,70,92,106,96,101,93,90,84,95,113,96,95,100,99,99,103,110,92,102,106,98,109,94,93,95,97,103,85,105,110,91,103,102,104,135,104,97,91,87,86,89,97,109,99,105,93,98,92,100,108,88,91,96,99,113,99,91,96,95,92,90,92,95,97,101,100,93,109,103,91,112,112,100,102,121,119,96,114,102,98,104,103,105,101,98,96,102,104,76,95,96,94,102,103,93,101,99,74,99,99,71,104,96,100,98,101,102,98,97,103,87,102,108,102,103,87,101,122,105,91,110,95,102,109,99,87,83,113,101,104,97,90,101,97,89,107,91,102,97,101,110,96,103,105,95,102,95,101,108,107,94,90,97,108,94,94,97,92,92,108,101,104,97,104,97,103,88,95,93,91,110,99,91,84,103,115,92,104,107,93,104,100,112,96,100,102,102,107,111,95,92,108,100,87,93,106,87,106,108,108,92,94,88,97,87,99,107,84,102,95,98,109,107,104,101,91,105,99,101,95,98,79,90,105,96,98,93,112,86,89,88,85,94,101,104,94,90,91,104,98,105,91,106,104,113,103,105,104,93,95,99,96,100,108,93,102,94,110,105,101,93,92,106,107,91,111,111,107,104,101,88,106,97,98,104,91,121,96,106,94,91,104,60,91,89,96,91,105,98,109,86,103,95,101,102,99,88,87,86,100,103,102,112,99,92,100,98,91,99,107,93,102,98,101,101,101,94,95,106,98,94,91,97,93,111,114,102,102,99,98,95,98,104,106,81,96,113,90,95,105,98,81,102,108,82,115,97,96,121,86,97,106,99,96,103,96,103,104,88,95,86,94,99,100,91,93,116,105,112,98,104,93,98,102,99,95,80,98,100,111,99,106,106,93,106,110,108,91,94,83,101,98,104,95,90,96,92,85,97,105,92,111,98,103,97,109,101,99,105,102,109,75,103,93,113,72,106,94,102,110,97,99,101,99,98,107,92,102,105,94,102,108,94,107,95,107,100,100,96,94,99,100,98,98,101,92,108,91,95,108,95,119,94,103,102,98,93,99,89,95,109,95,97,104,110,106,90,114,104,110,110,99,100,105,95,83,99,96,90,88,103,91,96,109,102,104,103,90,94,104,113,82,94,106,89,96,101,115,99,104,98,93,90,102,93,98,99,103,89,98,96,74,86,99,102,100,94,98,98,91,107,91,107,88,107,105,93,104,104,106,99,104,112,95,98,94,86,96,105,109,75,104,87,100,103,103,114,80,94,87,113,99,98,109,84,104,99,106,92,98,99,94,94,83,114,104,94,95,119,98,99,107,100,99,100,102,103,104,101,98,99,122,98,82,97,99,97,101,97,101,90,97,99,101,90,102,109,100,102,94,103,107,86,100,96,94,85,96,107,110,91,102,87,96,88,90,104,113,99,99,98,94,93,83,89,100,101,74,93,96,86,101,59,104,104,93,92,103,91,112,95,116,110,99,99,103,113,96,111,92,93,103,91,123,100,101,99,99,95,94,92,105,100,91,108,90,95,102,100,83,102,96,106,95,91,100,86,99,102,95,101,88,98,110,98,107,91,100,86,88,103,105,95,107,112,103,112,101,103,107,112,105,88,99,101,104,100,107,93,106,101,106,100,103,105,109,102,105,96,97,103,104,104,114,104,96,102,103,98,94,95,100,120,104,100,102,106,102,92,101,98,92,101,95,106,106,97,86,110,109,104,103,112,110,89,103,118,92,115,89,118,102,83,97,110,99,94,115,98,107,106,103,101,102,112,99,105,97,89,91,113,105,90,102,96,122,113,106,107,100,92,104,105,91,108,102,93,99,97,95,112,109,95,96,98,103,116,100,102,112,108,98,104,113,98,93,103,93,103,116,106,105,92,111,103,100,100,113,102,100,113,97,94,91,112,99,102,102,114,111,100,95,106,106,110,106,113,102,112,103,97,102,100,111,94,106,96,94,98,109,105,96,94,99,91,104,103,112,107,108,95,105,102,103,104,107,103,109,102,120,96,104,98,105,103,108,94,103,98,118,105,99,102,107,107,101,100,107,96,101,98,96,105,98,104,108,102,104,103,95,108,97,109,84,97,99,105,101,103,102,117,110,93,96,98,120,101,102,98,118,103,108,107,107,102,99,102,110,111,85,110,113,105,107,115,100,110,102,95,117,87,106,109,104,102,105,100,104,103,97,105,96,120,93,94,96,108,112,103,100,90,98,93,113,100,99,98,92,101,110,102,88,104,97,94,111,98,94,96,112,106,117,113,110,109,108,101,98,95,95,92,80,105,111,104,100,106,98,109,100,97,95,106,99,87,97,109,120,108,113,77,92,105,105,103,109,99,98,93,100,103,104,102,112,107,98,100,93,106,109,106,103,102,89,97,121,107,93,106,120,102,102,102,110,110,109,106,103,104,107,104,113,90,102,103,109,86,107,93,91,102,110,101,112,104,101,94,113,102,117,109,101,104,102,95,97,99,101,99,103,99,100,99,96,107,90,104,95,96,102,105,98,105,98,111,122,102,105,108,87,101,109,101,102,111,107,92,92,103,106,97,99,110,109,107,98,96,112,103,99,100,112,113,98,98,84,106,97,98,100,95,102,105,95,99,105,112,104,102,87,84,82,106,109,100,109,109,108,112,104,110,103,109,86,111,104,105,105,104,103,102,103,103,98,106,103,101,106,99,96,99,93,113,100,113,92,96,112,114,99,109,88,107,107,96,112,92,109,108,106,110,104,103,100,102,98,102,111,99,100,95,99,75,99,98,101,93,95,107,102,93,99,102,101,97,90,107,99,118,96,99,93,108,94,100,91,107,104,95,113,106,103,93,105,105,94,99,81,96,92,97,104,101,112,102,103,120,99,109,107,98,96,102,108,103,102,100,114,102,105,83,106,102,104,93,100,105,102,99,95,103,100,91,98,108,89,91,104,95,98,104,97,100,107,107,90,92,104,101,96,106,109,110,103,92,106,93,94,98,104,100,95,84,66,86,101,99,115,100,89,79,101,76,99,101,105,110,97,98,92,101,102,100,107,110,109,99,108,98,103,104,96,108,118,105,100,99,104,103,100,94,96,93,101,105,108,96,91,86,106,111,77,98,100,95,96,94,99,101,112,93,106,136,92,95,94,87,98,103,115,120,103,102,101,119,94,103,106,98,99,99,99,106,115,87,96,97,97,103,103,102,98,101,108,91,103,119,108,115,107,95,116,96,95,90,102,101,96,95,110,108,91,110,97,104,94,102,98,101,115,100,77,108,96,103,108,108,97,106,104,99,104,94,111,100,99,98,105,98,95,103,100,112,102,98,107,95,111,85,104,99,103,102,104,115,102,113,99,107,98,72,103,98,82,98,98,102,98,103,97,96,105,105,92,101,107,100,110,106,94,100,106,106,92,108,124,110,77,104,111,83,103,109,116,97,108,110,95,107,107,101,91,104,95,103,102,95,99,100,96,97,106,113,104,113,98,86,110,92,100,101,98,109,84,101,90,101,99,117,99,96,116,96,67,97,97,105,107,83,98,94,87,113,95,99,101,99,96,107,109,99,104,98,99,104,109,93,98,102,116,93,109,81,116,104,110,90,109,110,107,112,103,106,126,91,93,99,96,92,96,105,108,100,109,97,103,103,96,106,99,107,97,99,110,104,109,79,108,91,96,104,100,105,102,99,91,92,102,96,116,97,119,99,93,98,122,109,111,98,77,93,115,110,107,92,111,101,104,109,99,111,98,113,113,100,103,115,111,106,117,84,118,107,96,95,116,83,125,89,98,91,104,106,100,91,103,105,124,115,99,104,101,101,97,112,91,97,117,102,104,103,111,99,97,97,111,104,102,95,107,83,94,102,109,103,110,102,97,87,90,98,108,99,106,89,106,114,100,99,97,100,92,108,114,110,96,116,97,104,101,112,106,108,104,99,108,104,100,103,106,115,112,93,87,106,106,108,110,108,103,101,95,104,102,83,100,100,106,102,123,102,104,115,98,115,108, +683.17169,79,93,102,102,96,112,108,112,98,104,98,96,100,103,117,96,117,103,91,99,129,92,104,102,106,101,110,92,104,101,92,100,93,84,102,82,88,92,102,101,88,95,91,93,88,104,94,107,106,110,103,87,109,84,103,115,105,97,109,104,103,107,96,94,121,98,92,106,93,90,87,108,90,100,92,102,98,98,92,99,95,106,104,106,95,110,93,95,98,105,97,108,98,104,94,112,107,90,95,106,105,98,100,94,87,94,95,112,88,84,104,103,98,94,106,103,101,107,102,83,100,89,109,111,109,108,113,90,111,102,95,101,96,99,109,106,102,101,106,89,92,100,95,102,90,96,112,104,103,99,96,94,96,97,95,99,105,97,104,109,95,95,108,100,95,92,120,102,104,116,84,107,96,102,106,101,94,90,108,98,96,101,98,104,105,96,90,92,101,93,94,102,96,92,97,95,95,106,87,103,125,95,90,90,87,110,98,82,106,109,95,92,89,107,107,102,98,92,96,103,105,107,99,105,99,98,100,102,120,127,100,113,111,99,102,111,97,96,99,106,97,96,98,102,112,94,108,92,97,97,101,99,95,102,92,102,98,100,89,101,106,99,97,90,86,97,100,100,105,100,88,102,99,115,98,97,91,104,98,91,95,112,96,97,103,100,97,113,99,93,96,118,107,93,96,107,102,92,108,103,95,100,97,105,96,114,104,108,99,102,110,110,94,102,101,110,107,111,103,95,95,92,95,95,92,100,103,97,110,109,93,97,101,102,94,97,96,107,104,106,94,102,104,110,97,102,101,107,104,100,98,102,105,103,102,110,104,116,84,93,93,98,98,98,104,106,101,115,105,106,99,111,99,97,101,116,105,99,96,103,104,99,97,102,101,91,104,95,113,93,100,97,105,112,98,92,96,91,75,96,102,87,102,106,89,97,106,103,93,91,100,92,100,104,96,101,90,95,106,101,100,91,96,100,84,100,102,86,86,99,90,109,104,102,96,91,97,104,101,105,99,95,115,97,100,101,82,85,91,98,95,93,107,98,100,96,99,101,104,102,109,98,103,99,112,99,106,94,116,103,106,108,102,102,101,95,102,108,97,99,99,104,71,98,99,110,109,101,106,79,107,108,92,93,86,105,99,100,108,108,114,111,105,97,100,103,105,102,99,105,99,97,103,95,100,101,105,89,105,101,91,109,101,93,98,109,112,106,96,90,96,120,97,92,104,96,113,111,98,102,112,93,99,101,103,96,98,99,108,95,101,102,101,108,102,100,102,113,98,108,99,106,96,105,105,109,101,107,107,102,99,102,81,109,95,104,99,103,102,99,97,85,107,96,95,100,108,101,100,101,103,101,93,101,93,97,96,99,109,104,111,92,99,88,103,104,97,108,98,112,106,91,96,105,99,105,96,109,100,105,93,116,98,99,105,104,105,108,100,101,110,94,103,103,101,119,99,89,100,120,113,95,121,104,100,94,91,98,100,100,96,94,104,106,100,105,105,94,103,93,103,91,113,95,103,101,73,93,91,72,87,99,101,120,102,103,100,96,99,91,97,104,135,106,91,100,97,103,96,104,103,96,92,113,103,97,109,92,102,102,104,90,80,98,101,99,103,98,92,100,106,94,100,104,109,101,97,100,96,99,97,103,97,104,93,96,102,101,92,96,117,94,98,90,101,99,99,98,109,103,110,83,109,101,110,99,102,103,94,106,100,93,100,95,95,102,85,106,99,119,101,86,49,105,99,110,99,79,95,86,105,96,110,104,99,104,104,96,95,102,99,104,112,113,90,107,95,107,98,109,105,80,97,106,100,101,87,104,107,105,100,98,81,91,111,109,104,104,108,107,98,101,92,102,94,99,110,89,105,98,92,107,99,94,99,109,103,107,107,101,115,102,100,103,91,108,107,102,95,93,82,99,95,104,102,110,100,90,90,106,110,97,103,103,93,100,104,94,97,105,100,108,94,109,103,96,93,104,112,98,105,102,87,102,103,101,101,100,95,103,106,99,98,97,102,106,102,110,98,91,105,106,106,107,99,100,71,115,82,105,100,106,106,112,114,104,99,91,102,101,101,86,101,107,105,95,100,115,91,106,106,102,100,109,87,91,100,90,106,114,85,106,94,104,98,97,99,93,91,114,108,102,102,98,94,109,98,113,102,112,94,98,100,103,111,111,101,92,85,104,109,104,94,95,109,101,90,94,105,107,90,80,94,102,107,105,96,106,98,100,99,91,94,109,101,106,96,110,99,98,103,92,82,98,91,103,109,98,84,113,101,113,96,100,100,99,109,113,104,97,86,90,109,96,98,97,106,99,107,100,105,108,99,97,88,103,86,99,96,103,111,80,96,95,107,101,95,92,101,101,102,93,96,106,99,103,110,97,114,135,118,107,100,95,93,99,101,102,100,100,104,121,101,104,104,98,91,129,104,108,95,102,117,109,105,100,94,100,91,97,101,94,86,96,93,112,90,100,117,92,110,107,105,97,96,102,121,113,102,105,100,100,107,98,99,75,96,96,112,106,99,103,124,97,104,112,102,101,104,100,106,101,99,96,101,98,99,107,93,112,100,108,101,102,86,106,102,104,128,96,97,92,93,104,97,109,116,107,109,100,93,110,111,109,95,102,116,100,97,107,104,102,97,82,111,104,104,98,104,101,100,91,89,98,86,105,93,99,103,109,100,101,84,115,95,113,116,112,116,103,106,117,101,96,104,96,108,102,106,110,110,102,105,116,101,98,98,96,100,91,94,108,86,108,117,111,103,106,99,97,92,115,111,98,106,111,97,102,113,110,101,94,102,98,109,96,103,100,108,105,104,100,103,95,99,104,95,113,123,102,102,106,103,88,118,92,93,98,94,108,103,96,109,98,104,97,101,102,80,107,105,99,92,102,106,97,99,95,103,113,105,103,93,97,100,113,93,95,102,92,82,104,113,99,88,105,108,112,102,112,77,106,91,91,98,96,98,99,112,99,102,101,88,98,107,95,106,109,98,84,104,99,85,113,106,96,106,112,102,94,111,96,102,99,108,102,93,101,109,95,101,97,108,103,108,103,101,89,109,103,98,107,101,104,89,104,115,95,111,103,109,117,98,112,112,91,100,100,100,96,104,96,100,104,103,93,96,111,105,107,109,93,121,101,96,93,103,108,98,110,79,109,107,106,100,92,106,97,108,106,93,102,107,109,113,103,106,101,108,103,106,95,88,102,110,101,102,109,88,94,98,94,101,91,94,96,110,105,107,86,119,104,100,116,109,104,108,108,94,101,98,98,99,111,92,104,105,96,109,83,115,113,101,100,93,102,106,91,106,104,93,108,92,93,113,106,94,102,112,102,98,103,90,83,97,102,109,109,99,108,104,106,108,102,107,110,103,102,88,95,108,108,90,102,107,121,94,104,108,94,106,107,111,64,106,112,100,99,99,86,123,95,97,105,95,104,100,108,86,101,105,96,103,91,95,107,98,91,107,104,102,97,99,98,102,99,104,119,108,90,101,93,91,96,95,96,100,98,113,95,105,97,109,104,109,96,107,90,103,109,104,103,97,105,105,115,91,102,106,108,111,106,110,107,107,102,88,108,105,87,93,91,98,99,102,101,109,100,103,100,99,101,101,97,90,117,96,111,111,125,71,98,105,107,89,91,93,101,119,113,107,96,107,109,109,109,84,122,106,101,88,106,101,104,104,100,109,98,121,91,109,96,107,99,105,94,103,97,110,88,100,97,94,91,109,111,94,110,104,99,99,102,99,93,106,97,96,96,105,107,105,107,87,105,100,97,77,105,105,95,98,100,98,113,102,102,103,111,107,112,113,98,107,106,101,104,83,81,94,121,103,110,108,109,100,104,103,100,101,108,78,101,100,112,106,101,106,111,99,93,102,100,110,90,132,105,94,101,98,91,92,107,100,106,95,106,93,96,99,86,91,98,103,100,110,110,97,92,104,108,98,93,99,109,95,106,104,101,94,91,92,101,101,98,102,91,95,96,103,105,103,100,100,108,109,100,106,98,86,104,109,100,89,110,110,115,107,98,102,83,98,101,101,98,99,103,98,94,108,133,92,96,122,94,92,109,103,95,95,95,102,99,105,95,103,103,103,117,100,109,91,104,96,85,92,106,106,107,107,101,104,98,103,110,101,97,109,102,97,104,102,116,91,94,100,102,112,103,104,106,99,106,109,106,99,95,121,123,112,103,101,114,102,99,111,100,92,110,102,102,104,104,92,111,97,104,104,93,99,83,95,103,96,104,100,104,92,103,103,106,101,81,105,95,105,92,103,97,96,102,108,93,99,98,90,105,102,101,120,102,111,103,105,107,111,101,110,104,105,105,105,109,103,100,106,99,103,100,105,90,98,110,95,110,100,101,110,101,101,107,99,111,105,120,99,108,103,117,102,98,83,90,105,101,91,110,92,106,105,105,114,103,111,109,104,107,92,100,100,106,95,105,108,111,99,94,104,97,98,90,102,97,117,99,96,96,102,92,96,104,100,97,98,102,108,94,107,90,109,100,84,103,102,95,77,114,99,98,97,99,85,95,99,99,109,102,101,93,106,98,102,99,104,105,101,112,110,98,95,67,112,94,96,116,105,70,92,106,101,103,100,96,97,100,89,103,109,105,99,98,95,111,95,119,108,100,103,107,103,109,91,103,101,99,102,103,115,97,103,106,97,107,100,94,104,110,87,89,95,101,110,105,114,111,122,98,92,113,109,88,95,95,103,115,107,117,99,104,108,109,112,107,107,94,107,102,100,91,105,99,109,104,106,102,99,103,113,113,86,111,104,110,115,96,110,112,103,104,100,90,119,105,96,108,109,117,106,99,94,93,96,117,101,82,108,101,98,94,119,98,110,117,108,110,93,97,101,112,102,103,95,100,98,90,103,102,101,101,118,84, +683.31299,100,99,103,99,105,100,103,98,92,110,89,104,91,83,100,90,101,106,98,108,102,108,96,111,101,102,110,102,104,103,108,101,107,104,97,103,104,98,91,99,103,89,97,106,100,102,95,109,88,110,87,83,98,97,110,89,104,106,94,110,97,109,91,92,88,102,111,107,95,89,102,103,102,98,100,108,95,101,101,97,105,106,92,99,70,98,101,101,91,103,106,102,109,101,110,82,107,98,96,109,87,93,94,90,106,103,93,112,100,84,114,104,91,93,95,106,104,93,97,102,108,118,108,101,103,95,100,83,106,113,104,102,97,107,111,101,102,101,99,88,114,101,96,100,106,101,101,98,91,89,103,96,98,87,101,101,101,90,94,113,93,105,100,102,112,101,100,98,95,103,96,97,105,99,105,94,100,100,104,100,95,105,107,80,115,97,86,97,98,91,95,86,99,107,93,95,107,101,97,99,90,90,90,117,105,98,98,101,99,105,93,102,105,91,118,101,91,103,110,94,99,111,102,110,93,107,100,108,109,98,104,112,98,105,95,100,90,105,103,99,108,108,101,94,96,97,119,96,99,104,107,106,100,96,102,104,108,113,98,115,79,104,106,113,97,104,109,105,99,101,101,100,96,97,99,113,112,102,97,86,78,106,99,96,110,106,102,104,94,104,104,110,110,90,105,106,112,112,100,105,94,109,82,113,90,116,112,90,100,102,110,107,102,110,109,85,113,109,89,103,102,96,117,98,103,86,105,102,112,113,106,87,102,105,96,101,97,110,94,97,111,107,91,95,97,97,97,109,99,91,88,102,95,99,92,103,104,97,95,112,99,94,99,95,91,96,98,101,93,89,103,98,107,96,91,110,108,82,106,109,101,109,95,100,88,94,101,94,105,88,96,94,92,101,100,87,103,96,104,104,87,105,102,103,105,90,98,98,105,104,90,111,99,93,105,96,107,108,100,97,94,98,94,114,102,108,98,97,112,100,111,100,105,90,104,97,107,101,97,91,95,104,92,91,96,99,97,100,96,97,91,94,118,99,93,84,102,97,97,95,99,99,108,98,94,106,104,96,104,94,100,109,96,100,102,98,102,106,95,100,102,106,99,102,106,95,103,91,102,102,99,103,102,109,93,95,105,104,96,105,112,89,101,96,103,111,102,103,95,95,95,97,91,97,100,111,102,97,105,105,100,99,107,113,98,104,102,105,92,104,103,105,103,101,105,98,92,99,101,96,100,117,96,96,117,95,107,96,107,103,96,104,86,91,98,94,96,98,98,98,104,103,101,91,92,90,103,86,107,107,94,96,100,89,101,96,105,90,103,105,82,106,97,96,98,97,85,114,73,107,101,92,97,101,114,99,93,97,100,98,116,98,111,78,98,103,102,108,108,99,95,94,98,101,115,100,99,102,101,111,103,91,97,100,91,95,105,89,101,89,100,102,105,99,105,96,99,99,109,86,102,103,94,105,133,91,99,117,101,91,104,109,89,91,96,94,106,95,95,103,101,111,99,99,99,94,98,95,96,81,117,92,102,89,99,103,101,106,102,100,99,103,109,98,104,101,94,108,100,97,100,92,94,111,105,93,97,96,121,95,105,100,102,97,92,99,114,96,85,99,98,95,103,87,91,101,101,105,96,100,99,96,99,98,99,87,100,88,91,106,91,98,92,86,104,89,98,98,103,98,96,109,101,108,98,104,102,102,91,115,104,102,97,103,87,98,109,101,97,97,96,105,90,89,95,102,93,118,96,109,90,96,107,90,102,105,98,94,69,99,106,103,111,100,100,95,101,104,90,97,102,104,95,112,92,103,101,112,85,106,91,92,97,88,111,101,98,96,113,99,108,91,104,98,113,84,107,99,108,109,98,118,103,122,100,104,109,97,99,92,102,106,109,91,101,79,95,88,104,69,101,109,110,98,100,107,98,101,96,93,111,88,96,110,97,99,109,112,105,109,108,87,95,96,108,100,99,101,113,98,77,107,90,95,87,88,106,97,101,96,104,110,86,94,111,103,99,105,90,102,101,102,86,102,104,106,99,93,101,98,105,100,108,111,91,108,87,101,92,103,117,108,108,103,86,58,105,109,97,111,102,94,102,105,113,97,89,86,96,105,100,106,103,106,96,90,98,108,99,109,94,97,108,105,104,107,96,106,99,100,106,97,114,92,97,104,93,105,90,103,101,110,103,102,108,97,94,95,113,102,98,104,103,82,96,104,107,104,117,106,101,102,104,117,101,102,94,94,96,83,95,92,92,100,95,95,109,96,102,91,99,98,98,98,107,88,101,70,93,101,96,109,96,106,76,95,95,102,94,98,102,92,109,85,98,103,92,92,93,105,107,102,95,98,109,99,100,97,106,104,105,104,85,117,96,98,110,101,103,108,109,94,100,98,103,108,92,85,105,105,95,100,97,114,109,105,86,96,89,109,105,102,90,96,107,101,110,92,112,94,94,101,103,99,95,109,105,98,109,97,103,117,105,105,93,104,96,105,99,108,106,92,115,112,98,101,97,104,104,90,90,107,103,102,104,80,102,111,100,97,113,111,98,95,109,102,99,95,94,106,94,109,95,108,100,114,107,106,98,98,102,98,98,107,109,94,107,104,114,95,108,108,115,105,114,105,108,102,88,101,95,97,93,91,97,106,91,108,91,100,93,87,114,105,94,100,100,109,110,111,115,96,91,85,98,116,95,101,98,104,94,110,102,107,113,98,100,89,99,110,99,108,100,95,98,89,111,95,89,103,96,105,105,99,99,105,99,104,105,91,100,99,107,110,110,94,110,93,103,102,98,112,94,110,113,100,105,96,95,108,110,102,103,102,102,87,107,109,89,98,94,114,106,107,97,91,94,112,98,94,98,102,98,101,101,102,104,104,96,98,112,103,100,99,108,100,94,97,94,105,116,101,122,115,109,102,95,115,104,76,113,108,106,100,78,115,90,101,104,101,105,86,105,99,91,106,107,103,98,98,107,84,103,88,102,107,104,108,107,84,105,96,101,78,98,98,95,83,82,108,105,98,87,97,105,122,97,97,86,107,98,95,117,87,117,96,100,97,102,98,95,103,122,104,99,94,106,107,102,93,110,91,100,100,111,102,100,92,90,99,106,91,104,91,101,102,83,101,110,112,113,90,88,100,106,98,98,92,129,109,98,105,94,88,110,105,113,100,104,105,112,103,107,96,102,99,100,106,109,107,107,91,94,97,104,96,94,82,100,80,101,107,98,96,93,98,99,97,105,109,108,103,102,124,108,109,98,99,101,105,95,92,96,113,88,101,105,104,103,105,105,91,121,92,83,106,110,100,102,92,106,93,91,109,95,97,97,99,111,96,108,92,96,95,99,103,111,107,107,96,98,102,102,109,101,103,87,99,116,107,95,96,88,100,108,95,103,93,109,94,98,108,113,98,96,98,104,82,124,112,94,97,94,107,88,108,108,107,108,88,106,97,108,102,103,103,104,109,97,102,105,95,104,89,95,114,104,101,106,94,105,100,98,106,103,107,100,88,92,100,106,95,97,125,97,107,98,112,106,101,96,106,107,114,106,85,104,101,105,105,107,96,94,100,113,101,96,106,107,97,108,95,104,105,95,88,105,93,116,86,83,98,107,101,94,100,86,108,101,104,97,97,106,98,94,94,101,98,113,102,102,89,99,102,104,107,101,107,105,96,87,108,100,94,92,92,102,93,106,87,108,96,100,109,103,106,107,95,109,91,105,91,103,97,117,103,92,107,115,105,97,115,97,105,76,95,93,91,105,103,95,96,93,119,102,109,94,91,103,103,90,107,104,101,80,102,95,109,103,98,113,99,111,100,92,95,102,105,102,102,88,80,95,106,95,103,99,101,104,87,106,99,101,101,98,113,106,97,105,109,84,106,95,95,98,103,100,102,111,100,107,104,95,114,79,92,97,100,97,97,99,104,106,105,101,102,109,101,103,100,101,91,97,101,110,101,99,93,96,90,107,106,100,97,98,90,81,100,100,95,102,95,101,102,106,99,107,101,111,105,117,107,104,99,95,99,101,94,87,102,95,99,89,105,108,107,98,107,99,102,92,99,106,96,97,115,101,102,98,106,101,100,92,109,101,101,104,95,102,100,98,99,85,109,104,111,109,108,102,99,93,91,100,103,88,100,99,104,114,101,95,99,92,99,120,103,107,102,104,106,106,96,103,109,105,103,90,97,113,108,99,93,105,103,93,105,87,95,102,97,110,101,91,102,96,101,106,90,97,90,105,103,100,84,104,70,98,104,94,106,102,91,104,116,98,109,112,89,105,100,98,106,103,98,106,67,103,102,113,108,104,98,106,102,103,108,116,107,103,91,107,96,109,101,97,96,98,100,105,95,99,108,98,106,100,110,104,102,109,101,97,114,104,94,93,98,105,96,100,110,104,100,116,103,98,104,97,87,95,66,108,92,101,105,94,111,82,100,95,108,101,102,97,98,104,86,98,92,91,97,87,106,98,96,73,101,86,114,102,111,110,92,100,113,105,107,99,100,104,75,100,98,109,116,108,102,90,111,107,107,101,109,80,96,119,103,97,106,95,106,99,95,114,102,103,110,105,102,96,96,94,98,91,106,87,94,96,103,94,105,100,96,87,106,87,106,100,102,113,102,100,106,107,100,101,102,100,100,102,100,94,116,101,109,92,101,93,97,91,96,92,95,92,94,104,102,110,102,88,88,97,104,109,103,95,112,107,110,95,96,112,112,91,98,101,105,104,101,99,104,103,102,84,116,94,109,94,104,105,104,109,104,118,102,114,91,112,107,102,94,98,94,107,91,113,109,87,91,98,91,100,106,106,101,117,102,94,111,103,94,114,102,92,104,94,98,84,99,103,98,103,98,110,100,112,100,109,110,98,102,105,98,105,105,109,91,90,87,86,93, +683.45428,117,96,93,83,74,109,97,86,114,98,93,102,105,107,107,93,93,100,96,104,99,104,130,99,103,101,100,105,102,101,87,110,106,90,95,106,101,109,108,126,87,94,95,110,103,109,88,87,95,99,87,101,100,96,108,88,105,90,102,107,101,102,101,104,95,112,99,90,83,102,100,106,104,104,101,94,105,80,99,111,94,112,96,105,98,106,104,97,94,112,118,95,92,99,91,110,92,110,101,107,110,94,108,100,96,104,75,101,98,106,101,97,104,112,104,98,89,101,95,110,106,94,104,101,101,97,103,99,99,115,96,86,102,112,107,98,95,101,95,108,88,101,87,91,99,89,102,100,106,102,102,100,101,99,95,96,104,100,95,101,105,82,94,96,101,105,105,96,95,108,98,108,103,103,100,126,99,88,105,93,96,114,105,99,120,100,95,89,96,100,100,72,94,98,100,98,101,109,96,97,103,93,104,97,98,104,86,101,120,99,107,109,104,98,92,86,98,96,90,111,105,98,104,94,83,110,109,113,95,104,110,107,103,100,90,91,109,113,112,100,92,105,102,104,99,91,106,104,102,107,100,109,107,87,110,99,104,96,99,100,87,92,104,96,101,81,112,102,87,110,100,104,109,100,90,93,94,82,100,98,99,106,99,94,96,98,90,102,116,103,106,101,87,103,106,103,101,103,99,99,67,99,104,99,101,102,99,104,104,99,89,112,96,94,97,104,104,100,92,93,105,90,105,101,109,96,94,79,113,96,92,97,99,102,108,107,92,103,96,98,98,99,99,96,101,116,94,105,104,93,102,103,99,100,109,101,114,91,103,95,98,101,106,97,99,93,100,103,102,102,117,69,97,106,96,108,96,95,93,98,93,113,99,111,105,101,119,112,100,98,101,93,89,90,100,93,104,93,101,98,113,93,95,87,109,104,99,96,103,95,88,107,92,97,86,99,99,100,107,95,94,97,101,107,108,97,108,100,95,101,98,87,96,93,103,96,97,80,103,98,100,107,93,95,89,96,98,91,105,101,107,93,97,96,108,106,104,100,104,107,94,95,104,109,106,118,105,95,110,100,110,101,98,106,105,104,88,108,112,96,96,101,103,90,105,92,104,96,95,108,117,110,95,90,102,93,109,103,106,94,92,95,96,114,111,99,108,97,94,86,98,108,98,74,105,101,110,95,97,91,97,95,104,111,118,105,109,94,99,101,104,113,82,92,104,101,95,98,99,95,104,114,91,112,101,88,100,95,102,64,105,105,111,109,107,97,105,99,103,98,91,104,104,106,101,104,108,97,101,96,87,89,93,121,99,99,92,95,100,100,95,98,99,98,97,95,94,113,94,92,97,105,109,95,109,98,92,107,100,98,95,109,103,98,95,93,90,115,94,113,100,103,108,97,115,103,103,100,100,114,96,101,101,93,115,106,96,108,90,103,96,102,99,99,106,97,99,103,104,98,103,98,104,98,97,95,86,97,103,103,92,108,99,107,106,95,109,101,104,100,101,95,99,96,89,111,92,90,100,98,120,99,101,102,111,98,105,105,126,119,99,97,104,91,98,109,108,100,96,108,102,112,95,96,91,104,95,95,100,87,88,104,99,108,103,98,104,93,98,97,89,91,103,100,91,107,105,96,109,97,99,96,99,105,106,99,104,94,99,103,106,101,99,107,117,97,98,89,106,117,100,104,100,101,106,99,99,104,105,112,109,97,92,88,99,102,98,102,92,94,99,104,90,95,92,107,93,95,107,93,101,107,109,91,102,99,106,103,92,102,102,97,107,103,102,104,104,104,119,113,108,94,97,114,99,110,100,109,114,101,101,100,91,90,107,102,95,94,95,114,108,103,101,119,101,109,84,100,101,102,96,107,107,95,95,97,98,96,101,89,90,109,100,100,88,96,109,99,98,98,118,106,103,105,91,105,91,101,94,103,92,100,96,108,116,101,99,99,99,101,101,105,98,102,109,99,101,108,110,115,104,103,98,94,91,101,107,92,105,95,107,105,88,92,97,111,95,106,92,100,92,95,94,101,106,96,90,96,117,102,100,92,104,89,97,108,90,96,102,97,105,104,113,104,101,91,93,101,102,96,103,103,106,104,95,96,111,110,105,100,88,91,101,99,110,100,98,91,102,112,101,96,90,99,83,90,90,109,97,109,97,94,101,105,100,104,104,88,87,101,94,107,103,104,101,97,93,96,77,88,102,99,94,101,101,85,95,93,114,101,104,95,96,92,97,102,101,101,98,102,108,92,91,92,97,103,98,107,101,103,92,101,102,87,94,97,103,100,96,99,104,103,91,104,106,102,99,86,100,93,113,99,95,108,75,95,92,94,105,101,93,105,92,92,101,95,104,101,104,97,94,103,94,95,103,109,89,117,97,96,97,101,89,98,93,100,113,92,99,104,95,113,101,95,104,100,105,103,96,94,92,104,93,92,98,96,99,103,91,92,95,98,120,99,103,93,96,108,112,117,109,96,113,94,91,100,102,89,120,108,92,104,106,105,112,112,94,99,95,99,98,111,95,110,114,104,83,91,94,117,98,109,98,104,109,100,104,119,112,116,106,104,119,98,99,102,108,94,103,107,102,100,105,111,91,100,108,114,110,97,103,100,120,95,103,110,127,109,93,107,101,100,104,97,95,97,103,101,113,103,110,88,117,104,109,102,102,89,112,106,109,101,100,100,110,98,101,105,92,104,106,106,115,90,106,108,108,110,102,101,118,120,105,100,110,102,102,99,103,91,107,99,102,106,91,118,96,107,102,99,123,106,117,96,106,100,102,115,108,98,95,102,92,105,84,93,99,98,103,102,102,99,109,108,95,85,94,110,104,112,110,95,112,114,113,108,106,114,99,113,90,97,99,107,120,95,105,104,92,91,105,110,105,116,101,105,104,96,91,109,111,103,95,104,89,104,94,105,89,87,99,108,97,106,100,95,102,112,104,104,102,105,94,112,98,97,89,101,108,97,95,100,105,105,115,94,98,114,107,100,120,110,99,107,109,112,107,105,94,111,90,92,100,106,108,109,100,99,99,102,100,111,107,97,109,93,94,107,100,113,114,95,103,98,111,99,99,95,98,98,116,121,100,115,112,101,110,99,91,103,102,98,97,111,104,114,99,100,108,111,90,96,95,99,104,109,101,110,104,102,89,88,107,93,109,109,94,102,99,99,102,108,96,113,98,105,117,101,108,101,88,113,83,97,96,101,96,109,98,100,107,106,103,100,103,112,86,93,105,114,108,93,99,106,106,102,99,92,99,99,103,95,99,100,102,113,114,104,97,105,100,107,100,108,102,96,110,114,99,107,109,108,93,103,105,117,87,95,65,105,107,112,104,89,99,117,114,107,111,100,99,93,97,93,109,99,99,108,106,101,100,115,93,113,95,111,136,100,113,107,97,101,87,113,104,98,132,103,88,101,110,98,106,105,105,92,100,99,102,94,102,100,106,92,99,72,109,97,96,108,100,105,115,97,93,110,98,107,106,97,117,99,94,108,101,104,108,95,104,102,104,104,107,113,100,111,115,109,132,100,97,105,105,109,103,100,95,109,116,106,115,102,104,105,106,105,115,95,100,103,100,100,97,101,102,100,87,98,103,101,89,99,112,101,102,104,110,103,96,113,101,104,105,107,100,103,96,97,114,111,87,99,102,101,108,103,105,105,99,94,109,108,98,112,90,93,103,104,104,110,95,106,102,106,107,99,107,113,112,102,97,98,97,110,115,106,92,109,101,107,104,104,94,100,97,114,79,103,112,102,107,104,101,93,97,96,117,90,98,113,101,102,102,109,112,96,101,113,105,88,118,103,108,111,117,99,106,99,117,113,98,99,101,96,95,101,116,102,98,89,106,100,79,102,107,104,94,101,91,106,89,117,104,110,106,98,101,100,103,96,110,102,96,102,106,96,110,102,109,98,87,94,99,120,96,106,93,102,114,104,92,106,99,104,90,103,101,107,103,104,98,100,98,100,108,87,96,110,78,78,93,102,93,113,113,104,109,101,103,102,103,95,102,102,102,97,111,93,113,98,96,110,105,94,103,105,95,96,98,98,113,120,115,96,107,103,101,102,112,112,106,108,105,100,98,102,89,109,88,107,98,102,104,106,103,100,92,105,105,122,98,95,102,111,114,96,99,106,107,106,105,95,101,90,108,105,103,93,97,107,98,104,95,95,119,82,90,87,105,96,105,95,103,108,111,118,108,109,91,98,101,84,97,99,99,88,95,98,111,93,101,105,91,97,98,98,97,104,111,111,107,104,107,94,109,111,104,92,112,112,105,104,111,102,101,102,106,100,108,104,114,110,107,109,111,94,117,102,108,101,108,100,110,92,100,97,115,112,104,108,99,97,99,119,106,110,103,105,103,116,98,87,106,109,97,104,113,101,113,101,106,83,109,102,91,102,104,88,95,97,107,106,98,94,102,101,101,100,94,94,100,99,96,94,108,109,112,96,111,106,102,95,100,107,101,117,68,107,91,115,91,105,95,102,110,100,110,109,107,99,95,105,96,103,104,96,92,108,101,93,97,101,101,97,103,113,103,96,95,103,99,97,124,99,95,109,119,95,94,114,97,102,110,99,112,97,100,100,103,105,94,106,109,118,102,99,87,106,104,107,96,101,104,105,111,91,95,104,109,99,110,105,114,112,102,108,108,100,103,103,91,110,92,103,107,95,117,96,105,101,106,108,109,103,110,95,106,104,98,106,99,98,99,101,102,104,103,99,129,119,125,96,106,103,98,105,100,106,103,98,102,112,98,106,107,109,93,101,103,107,107,104,102,102,107,102,102,111,102,95,114,107,100,102,96,107,103,93,103,102,101,106,97,93,91,104,98,101,103,106,102,101,95,93,101,79,106,104,104,89,98,108,92,101,103,115,97,104,103,112, +683.59558,108,114,83,107,96,115,91,104,100,89,104,81,87,99,102,112,78,105,90,100,108,106,101,94,115,94,94,95,80,105,110,106,100,99,97,116,103,86,95,97,108,97,105,105,100,114,91,100,87,72,96,99,79,95,108,98,107,99,104,101,94,104,99,99,98,107,102,105,105,108,85,101,94,110,101,99,97,109,101,110,100,100,98,95,95,88,109,100,95,106,107,101,113,106,91,106,101,127,109,106,92,96,101,105,100,99,92,106,89,91,94,99,106,96,95,93,101,99,101,89,106,100,102,107,93,107,109,95,106,106,100,101,79,107,100,105,92,100,106,96,103,108,92,108,112,86,108,92,97,104,100,91,100,102,99,87,96,65,101,90,76,96,104,95,87,106,98,95,98,113,108,104,101,97,84,96,95,87,97,109,104,104,105,105,96,94,91,82,101,101,99,97,109,101,101,91,99,90,102,97,98,105,110,94,86,104,98,98,107,104,101,90,99,106,95,98,117,104,99,125,96,101,112,96,110,88,100,109,99,113,102,92,108,115,83,102,110,121,92,109,107,96,114,105,97,97,88,119,108,98,102,108,104,100,101,95,93,92,88,99,88,108,71,103,84,78,96,108,98,98,102,93,106,102,86,123,97,103,93,108,95,104,80,102,105,96,98,106,109,109,87,98,107,103,105,108,99,100,110,107,96,100,89,120,95,115,104,119,98,104,87,109,95,98,88,103,110,112,100,105,97,110,101,103,102,103,95,98,105,118,108,114,102,116,98,105,116,88,110,105,120,99,107,93,95,103,106,100,91,94,96,96,108,108,100,73,99,101,97,105,94,89,101,106,99,109,97,116,96,95,92,101,98,108,116,104,102,100,95,99,104,117,106,102,103,95,104,101,109,108,112,116,95,94,92,101,101,108,96,104,97,103,111,98,99,108,93,104,102,100,97,92,101,107,106,102,87,88,110,97,93,111,105,88,81,97,87,99,108,106,108,118,102,102,113,96,96,105,102,98,96,110,96,103,101,112,94,96,102,105,101,97,101,119,97,113,103,103,100,85,102,100,112,96,108,110,97,100,99,97,118,101,85,107,90,98,82,110,85,103,99,106,102,98,97,105,106,112,98,96,104,105,90,102,92,100,86,99,97,110,105,109,99,105,79,131,99,100,101,104,100,105,87,114,106,109,98,96,100,97,102,93,125,103,100,105,104,125,96,98,109,95,96,98,103,102,113,96,83,104,101,100,87,101,93,107,105,94,100,103,105,104,102,110,102,99,109,86,109,94,109,104,101,99,104,113,105,100,96,104,90,95,106,109,101,95,112,108,85,103,104,84,104,101,100,94,100,107,107,91,98,99,99,89,102,103,94,97,101,105,103,94,110,96,109,90,90,97,95,117,114,101,94,110,98,96,101,95,111,97,102,99,99,90,91,100,100,103,87,98,107,100,100,102,110,98,105,100,110,96,103,92,103,100,96,113,102,98,110,109,95,102,94,101,103,100,105,100,105,103,114,94,104,108,95,98,102,104,107,96,108,108,100,105,105,101,102,98,110,97,103,95,101,95,96,95,98,104,91,98,105,99,102,109,91,91,101,104,99,102,104,88,84,89,99,106,104,103,100,96,97,110,103,94,99,103,104,111,91,96,97,94,111,105,101,108,103,99,97,118,114,97,101,100,109,99,106,99,107,103,104,98,103,103,109,119,104,100,102,89,96,88,95,92,116,87,101,100,107,104,99,104,96,102,94,109,100,96,97,95,118,89,103,114,110,104,93,91,95,98,99,106,108,101,95,94,101,106,100,104,100,90,117,112,84,92,105,107,92,99,90,100,99,104,113,114,112,92,97,104,107,102,84,102,98,106,126,110,96,94,99,102,96,101,111,106,112,98,97,97,107,97,99,116,92,95,86,97,105,96,108,100,95,93,111,97,98,92,97,87,115,100,95,111,99,104,102,103,101,104,119,107,114,90,106,108,101,78,104,96,89,106,103,92,115,105,106,107,104,96,106,90,110,112,96,99,91,85,101,104,103,100,94,109,90,93,109,101,112,101,95,101,97,109,106,98,109,101,104,99,98,101,90,96,108,111,96,113,100,99,97,109,106,99,105,96,89,99,91,104,85,105,102,117,108,101,100,117,102,101,107,101,106,103,92,86,107,102,104,103,106,83,111,95,108,107,92,103,96,100,93,100,92,91,119,107,103,97,103,96,96,105,98,104,101,108,103,93,88,107,103,100,96,106,108,101,91,93,100,100,86,103,90,107,99,100,110,100,100,102,97,104,96,91,87,80,108,108,85,97,87,107,103,95,95,98,108,95,98,91,103,117,95,96,84,110,90,102,115,109,113,108,107,109,105,97,75,115,102,101,118,103,87,109,107,120,93,108,117,95,103,114,93,97,92,111,99,104,90,107,105,100,99,96,93,95,94,93,104,88,91,105,101,104,98,97,107,105,104,99,90,96,74,111,103,102,95,100,103,112,104,100,99,92,90,89,100,99,97,92,107,100,106,90,101,105,110,98,101,96,100,107,95,104,120,96,106,98,89,110,93,99,100,87,97,97,109,108,96,95,95,105,91,135,108,106,92,97,105,79,94,108,89,99,91,108,97,91,117,104,105,94,110,109,104,92,92,106,109,95,105,104,96,97,108,64,104,108,103,90,97,108,107,101,84,104,97,101,73,105,100,104,101,93,92,95,110,94,104,103,102,79,107,104,85,106,84,102,98,103,92,112,98,100,94,90,115,115,92,105,95,99,108,98,105,92,107,111,102,98,103,102,105,98,108,105,105,104,112,95,105,101,101,94,102,102,99,103,111,107,106,106,103,103,92,106,97,97,106,97,94,104,108,105,103,101,106,123,96,106,106,108,107,106,108,100,99,97,74,103,94,106,104,112,116,106,101,103,100,105,101,105,102,105,90,109,105,93,93,103,99,94,90,96,97,99,96,87,97,115,118,99,96,93,95,78,76,106,69,87,99,106,99,112,111,98,99,100,92,104,106,104,99,106,105,95,96,108,100,91,114,100,108,120,109,96,105,109,105,104,91,102,105,104,124,90,101,103,102,97,99,111,103,97,105,90,101,106,104,110,107,104,96,110,98,93,110,94,109,96,101,93,101,94,105,90,107,105,99,100,100,92,109,86,99,100,95,106,95,91,90,97,96,107,89,89,94,112,102,103,102,92,93,104,101,94,107,94,110,112,112,102,101,100,100,94,103,104,90,99,111,104,94,85,110,105,94,67,104,100,90,105,108,100,109,100,95,109,99,116,98,97,106,104,115,99,94,110,91,105,94,106,98,91,108,88,110,93,109,91,94,105,102,134,100,90,91,94,103,97,88,68,91,99,119,101,104,96,92,88,102,104,110,96,97,102,109,98,93,93,100,99,91,99,101,110,79,112,92,99,100,118,100,107,98,99,101,92,103,102,101,87,94,100,100,107,106,97,85,105,99,90,98,101,88,98,100,102,103,90,112,92,99,79,97,100,106,98,113,100,80,103,94,105,102,109,95,95,112,104,108,93,96,129,114,104,106,104,98,117,91,103,102,92,94,113,101,108,101,108,110,121,103,102,96,108,103,103,106,85,73,96,100,91,121,102,99,91,102,127,94,97,103,102,101,90,100,121,100,121,96,100,91,98,97,86,103,95,102,108,86,111,102,119,111,99,95,107,105,103,99,112,101,108,85,87,113,99,96,77,105,105,104,101,95,84,101,107,97,99,99,95,107,112,100,93,118,102,107,103,106,89,94,69,104,104,101,93,97,96,87,88,99,98,100,93,96,91,98,117,98,110,86,108,99,95,88,106,88,102,109,102,106,113,94,92,100,101,99,103,90,99,106,104,98,95,83,108,106,108,102,109,102,102,103,105,98,96,101,99,95,103,97,108,100,106,99,105,97,107,98,104,95,97,101,91,99,94,99,83,106,100,109,98,95,101,108,106,98,95,103,98,96,106,98,96,96,99,96,91,91,103,98,104,87,110,100,101,100,98,109,99,110,101,106,96,98,98,91,106,79,109,103,119,100,106,112,89,112,102,101,101,98,108,104,106,114,98,97,100,109,106,107,90,98,108,102,98,106,111,110,112,98,108,99,99,98,102,105,98,102,105,101,101,104,116,87,99,98,102,97,109,98,111,91,103,103,96,117,102,108,92,93,93,105,92,97,97,95,101,104,100,110,102,103,89,85,110,107,123,105,108,115,107,105,101,105,96,101,99,92,97,105,98,101,97,99,102,115,98,81,95,102,101,88,96,94,106,100,97,107,101,110,104,93,117,98,106,96,101,94,99,106,91,93,108,105,108,91,99,127,96,109,97,95,74,106,105,95,102,92,110,102,102,99,91,95,95,96,104,88,72,108,102,90,100,101,114,98,100,107,90,101,95,99,93,106,95,108,85,103,88,98,105,91,102,94,101,107,104,94,96,96,95,102,99,79,105,106,99,102,100,90,77,110,102,109,98,99,88,98,101,100,95,102,106,100,106,104,112,91,120,99,107,102,91,92,100,102,87,78,93,98,113,100,105,105,88,99,95,102,103,96,93,98,105,88,106,104,98,106,113,103,78,95,100,95,100,93,98,94,96,109,93,94,101,108,87,102,112,116,106,97,100,112,109,98,113,91,90,108,94,88,97,113,88,113,101,94,90,95,101,92,100,95,99,96,100,106,98,102,99,99,121,98,97,93,108,100,108,93,109,93,100,99,103,97,91,104,90,101,87,67,105,97,88,113,86,92,103,118,110,87,102,97,104,101,105,102,90,94,91,116,110,107,109,101,105,99,98,108,101,110,79,102,112,103,108,106,100,109,100,106,100,89,90,84,100,100,99,106,101,91,84,94,106,112,94,103,99,104,100,98,105,94,109,113,103,101,107,112,91,99,108,94,103,104,99,93,102, +683.73682,118,107,100,92,98,112,103,102,102,99,92,98,104,100,99,100,100,110,105,109,92,95,105,91,97,93,93,104,82,123,87,106,102,87,100,102,101,100,102,91,104,117,100,101,109,108,86,107,100,103,103,100,102,78,94,86,87,83,90,97,100,110,105,94,99,106,87,107,99,106,106,106,97,99,96,99,100,86,124,99,102,97,101,96,99,98,102,108,97,95,101,105,114,112,108,110,102,97,112,95,94,94,102,107,91,106,100,105,117,107,84,95,102,105,106,87,108,99,116,85,102,91,93,107,99,99,100,100,107,100,93,117,93,98,96,99,112,96,103,99,90,101,107,103,99,93,102,97,101,102,106,94,108,92,100,110,103,106,117,101,117,110,106,102,107,107,88,98,91,98,102,95,104,101,97,110,117,94,108,89,117,102,100,100,109,103,100,96,110,102,103,85,89,107,94,125,95,92,101,99,96,100,91,108,106,97,94,97,118,104,92,100,118,102,110,107,99,109,103,96,100,105,99,102,96,114,104,97,101,98,90,95,104,86,98,104,109,113,99,86,106,97,98,106,105,92,90,106,98,113,99,113,97,99,103,104,98,95,92,106,88,107,102,90,108,100,101,94,104,94,97,94,101,101,98,103,113,111,106,102,100,98,100,106,102,97,106,102,94,100,93,103,101,112,97,108,108,92,91,101,103,100,94,107,92,106,120,109,107,116,104,98,95,98,92,94,97,95,91,100,92,102,99,84,93,102,99,91,96,99,93,93,103,98,103,102,95,100,99,91,102,108,109,74,104,102,98,112,102,104,106,95,107,93,104,107,109,100,92,100,94,99,101,89,93,99,114,100,102,91,109,99,104,86,99,99,111,104,107,107,117,92,100,95,96,89,104,94,110,110,105,97,84,98,105,96,86,101,101,102,95,120,129,100,100,97,97,91,111,115,94,92,90,99,94,90,101,103,88,100,99,104,104,113,95,88,98,97,83,101,98,96,101,97,97,99,104,94,95,94,109,107,93,109,104,101,98,91,113,108,88,95,100,106,98,102,82,106,111,101,102,104,103,100,102,102,91,100,107,86,98,97,87,97,100,102,93,95,106,98,86,99,71,102,111,110,103,109,96,123,101,105,101,103,94,109,109,104,101,106,94,97,106,109,88,104,98,101,99,95,102,106,105,90,73,96,90,87,97,108,112,92,102,101,99,116,108,99,99,105,103,107,102,99,98,101,109,90,97,95,98,101,96,102,107,91,98,96,102,105,100,101,100,113,95,100,96,88,97,90,101,107,94,99,96,102,94,109,112,105,103,80,121,112,97,112,99,107,102,99,99,102,92,89,105,96,97,107,113,102,101,103,99,96,104,101,103,95,114,101,96,116,112,106,97,96,94,96,103,102,83,95,107,96,109,98,89,94,98,103,103,96,111,96,105,99,97,106,63,116,87,98,79,88,94,105,104,95,95,106,97,98,98,106,112,101,94,105,99,109,86,95,99,101,93,103,100,117,98,91,101,96,103,105,108,96,109,102,117,94,103,104,104,113,95,107,96,101,102,116,116,99,102,101,106,100,91,103,102,111,94,98,96,94,108,106,100,104,109,100,105,101,107,106,97,106,110,92,110,93,92,108,92,87,100,104,104,106,104,96,100,109,89,111,97,68,106,103,93,115,99,107,97,95,92,88,110,95,117,113,99,95,102,93,105,100,96,101,104,98,113,109,98,103,111,93,99,102,102,95,89,101,102,111,105,104,97,67,92,95,105,108,103,101,98,116,117,97,106,90,95,124,100,112,85,101,109,107,96,108,109,102,97,110,92,98,94,96,94,100,96,103,105,95,105,102,103,113,80,98,98,111,89,72,100,96,95,103,112,102,91,95,89,104,100,100,102,89,104,96,99,96,106,95,98,106,100,89,101,94,102,94,88,100,96,100,97,113,99,104,114,111,106,98,86,103,103,108,108,104,103,96,98,102,109,96,95,95,102,109,102,104,91,90,96,100,87,94,100,100,100,100,110,103,96,92,100,105,106,103,94,107,102,99,102,82,97,110,97,97,102,106,102,92,100,101,102,102,102,91,104,98,97,107,99,103,93,108,102,90,105,96,94,106,96,103,97,101,96,111,106,100,104,105,102,94,118,112,106,98,100,102,74,101,107,106,119,96,104,105,100,91,103,95,101,95,101,98,100,108,105,103,104,105,99,80,100,83,116,93,93,77,98,96,96,101,117,99,110,99,94,103,91,83,117,91,92,95,106,102,95,102,99,94,107,99,106,104,105,91,94,81,98,101,101,81,97,101,98,104,99,92,104,106,105,106,111,87,97,87,104,104,101,95,103,103,97,95,99,104,91,105,98,117,102,108,98,96,111,103,94,93,89,97,101,104,100,113,96,94,111,105,111,99,104,94,85,93,104,90,97,105,107,99,102,106,101,104,97,90,110,94,107,107,102,98,100,97,116,94,96,108,96,100,104,99,91,98,103,85,96,114,105,105,100,109,98,107,108,99,97,99,106,89,110,106,99,99,88,104,102,112,103,102,103,99,95,100,97,106,109,78,109,98,113,102,117,98,98,103,100,117,98,118,107,98,114,110,97,105,103,95,96,93,115,90,102,110,110,104,97,101,112,95,101,107,109,108,104,101,96,94,102,100,104,100,93,89,105,86,91,109,113,106,97,91,94,99,98,107,100,100,106,103,102,99,108,97,105,103,103,109,101,101,103,103,99,99,94,99,103,88,101,106,106,105,121,101,104,103,105,103,106,103,114,111,94,96,106,112,110,106,109,101,110,124,101,105,88,118,104,109,117,90,93,107,103,105,100,106,98,95,101,102,100,104,101,100,110,110,102,96,95,84,94,91,94,100,91,98,90,93,101,109,112,112,93,106,98,103,109,98,107,107,92,101,84,102,99,101,86,108,103,106,103,118,87,100,104,104,103,103,88,98,94,104,103,84,102,103,98,117,98,104,93,103,106,107,91,92,91,103,96,109,101,108,106,111,92,101,95,110,107,96,109,96,100,100,102,98,94,98,95,106,105,97,98,96,101,102,87,106,111,100,108,110,99,111,114,108,87,119,112,95,109,99,116,100,93,103,98,113,99,100,107,112,94,95,104,100,99,95,103,97,98,96,97,110,98,100,94,101,112,103,98,96,91,90,94,91,107,102,113,95,101,101,97,83,108,100,111,91,91,97,95,101,109,105,96,101,98,98,107,104,90,84,98,104,97,98,101,114,93,103,101,98,94,99,132,98,103,96,108,107,99,90,100,95,97,105,88,96,99,101,101,104,85,103,115,109,97,109,109,107,87,87,102,98,99,104,97,102,118,103,89,105,95,85,102,108,101,115,106,84,112,98,103,109,101,106,100,87,92,99,96,100,100,92,103,92,109,125,108,105,100,97,104,105,105,85,103,77,107,94,101,105,96,103,102,97,102,107,109,108,105,109,105,105,110,101,106,110,96,94,92,95,104,96,98,94,110,100,120,112,112,102,87,105,101,92,116,100,105,122,103,102,113,99,107,94,102,109,77,102,105,100,105,112,78,95,80,97,109,105,109,98,92,100,103,98,101,95,82,104,109,107,93,95,101,101,105,87,100,96,106,110,92,95,112,103,91,104,103,99,103,95,102,99,106,101,107,118,104,101,105,100,98,104,100,98,100,107,102,100,103,100,112,113,107,109,105,107,105,100,100,123,103,98,99,99,99,105,98,107,93,101,90,109,102,99,104,99,93,106,116,87,98,96,89,81,102,99,109,102,104,102,105,107,106,102,96,102,99,115,100,102,87,108,112,102,101,99,103,111,98,98,108,101,89,93,104,93,106,97,113,101,86,96,108,102,93,107,99,102,99,112,103,95,113,100,94,106,105,91,96,106,90,93,95,101,88,124,87,94,90,97,113,98,96,94,111,117,101,91,99,93,103,105,113,98,104,106,107,108,95,115,95,99,106,121,105,114,81,106,102,104,96,70,97,105,95,106,102,105,107,110,98,91,104,109,104,103,95,105,110,97,111,112,93,87,104,96,97,105,98,93,105,103,109,106,110,109,104,98,109,107,107,101,106,102,100,95,104,89,92,97,108,109,106,95,99,106,100,109,90,95,95,109,97,109,103,95,95,102,105,103,102,96,107,103,99,96,91,104,100,98,122,110,109,94,91,93,100,102,110,105,92,100,108,94,102,95,95,114,90,96,109,95,105,97,97,114,97,117,109,101,103,102,88,103,105,109,91,101,111,105,108,94,93,104,96,101,108,100,102,101,92,91,100,105,96,88,101,102,94,100,103,109,91,106,96,98,109,103,95,102,101,79,103,113,103,107,97,104,97,98,104,106,107,100,106,102,107,100,94,138,114,119,110,96,92,99,99,113,94,95,105,101,97,104,79,88,103,96,100,106,105,103,89,97,107,95,101,106,110,110,101,110,107,115,105,103,113,95,105,103,103,98,98,109,98,110,106,98,111,96,103,90,105,103,103,103,102,107,107,102,89,105,99,105,99,100,87,109,102,98,103,85,102,108,103,108,105,104,82,102,104,91,104,75,96,107,93,104,108,93,100,105,104,97,97,91,114,100,110,112,110,108,87,97,103,95,99,108,100,108,109,101,113,104,101,118,89,89,107,89,100,118,92,97,98,105,106,88,116,100,108,98,105,96,91,109,90,130,105,91,99,99,101,101,91,100,106,108,97,99,101,99,96,97,106,98,104,100,111,100,95,99,106,90,100,102,103,103,101,95,107,107,98,101,102,121,105,119,103,101,109,95,109,105,114,111,110,114,104,109,103,95,89,94,101,113,99,105,109,101,87,98,87,96,107,105,84,85,98,90,97,108,105,91,104,99,108,106,114,92,93,97,111,99,95,97,88,88,124,95,103,117,111,99,110,107,116,97,101,98,119,86,107,113, +683.87811,127,104,93,97,86,105,85,117,91,110,97,112,107,77,100,109,95,87,108,91,88,88,99,107,93,99,105,88,107,91,97,112,114,91,101,100,90,94,103,89,90,106,94,85,94,115,103,96,93,100,104,90,98,103,104,92,100,100,95,104,107,93,78,90,106,102,112,94,102,104,93,94,100,100,97,100,90,84,98,101,96,97,90,108,103,83,90,103,111,104,99,100,97,96,90,86,93,95,76,107,101,109,99,95,93,104,97,107,94,104,96,89,102,96,77,105,107,98,103,97,106,101,88,101,101,104,91,100,84,98,106,107,105,118,101,109,86,98,93,95,87,91,95,88,92,121,88,104,107,102,95,114,103,92,94,104,92,107,103,88,109,94,100,91,101,97,100,88,90,95,95,99,99,97,106,107,109,95,104,99,98,103,95,102,100,93,100,92,108,101,102,106,91,104,90,95,99,92,99,109,110,105,103,95,106,105,111,101,114,101,99,105,104,104,100,106,102,104,92,97,101,93,91,102,98,99,109,95,97,90,99,104,99,95,106,99,100,106,114,87,97,95,102,95,106,98,92,110,96,108,100,102,98,109,83,112,96,105,97,98,97,104,99,99,82,101,99,103,102,102,90,107,98,93,72,103,108,104,100,99,92,102,99,100,92,110,100,98,101,104,117,94,98,99,96,89,96,99,98,113,78,95,94,101,93,99,107,98,96,94,88,97,98,101,97,97,87,96,98,102,104,123,103,101,93,86,101,96,103,107,92,108,106,105,107,100,92,97,108,114,92,101,90,78,113,109,104,120,98,108,97,82,104,109,99,108,103,113,96,96,108,98,95,108,96,105,98,98,105,99,97,98,95,109,92,102,110,102,105,101,93,110,114,101,99,106,87,94,100,83,102,84,94,104,97,101,99,88,104,121,100,105,96,93,105,89,99,101,100,95,96,107,98,98,98,87,113,88,101,102,90,99,100,102,102,89,95,102,94,97,95,107,98,95,92,97,98,95,109,101,89,97,90,129,104,90,78,99,104,128,106,100,93,123,99,112,100,99,87,98,98,96,100,100,88,112,103,90,105,104,99,106,104,113,86,102,84,108,106,110,99,109,119,93,99,105,105,100,108,97,115,109,118,102,96,97,95,113,100,98,100,95,109,106,98,101,76,91,96,91,102,107,91,111,100,100,101,96,124,86,102,97,102,115,90,90,105,98,99,101,91,116,93,108,98,99,107,102,92,94,88,102,85,105,96,102,100,96,98,112,92,95,92,108,102,91,108,104,107,99,98,109,87,110,96,97,105,96,97,88,101,91,101,96,105,94,102,100,96,90,104,91,99,98,100,104,91,95,112,94,99,92,101,91,105,101,98,101,99,95,102,100,109,95,97,99,78,97,90,103,112,101,103,103,83,97,96,100,99,97,99,105,115,100,102,102,101,101,108,99,98,98,99,99,94,104,105,75,102,103,105,108,106,102,98,89,98,100,110,101,93,104,93,101,92,98,113,92,107,98,103,122,99,105,89,99,98,81,103,100,99,101,102,99,110,106,101,91,100,93,96,95,111,99,84,95,89,93,88,108,104,91,97,104,72,104,107,106,102,97,102,81,89,92,99,113,103,94,87,93,99,104,78,106,84,93,108,113,94,84,92,92,88,101,95,103,92,105,102,105,99,116,91,101,98,95,99,98,100,106,100,98,109,91,102,86,111,95,91,99,110,108,104,94,92,96,95,96,101,97,85,103,99,99,88,99,90,95,101,92,111,101,96,98,95,95,106,101,94,96,107,92,97,103,113,105,90,97,106,110,100,103,102,101,95,100,75,93,103,104,98,106,94,86,110,98,95,102,113,100,89,100,90,104,95,100,102,101,103,99,99,100,98,111,108,108,98,104,88,95,96,102,95,100,96,96,113,102,99,101,100,100,96,106,94,102,98,103,88,92,100,108,104,87,99,101,93,112,102,91,96,98,99,97,97,106,95,112,79,100,88,100,96,103,99,104,107,90,94,104,93,91,98,97,104,96,110,98,99,105,103,104,98,103,103,104,107,103,100,89,119,99,101,105,101,87,93,95,97,104,88,108,96,100,113,97,89,107,86,105,106,98,108,108,99,103,98,99,100,100,99,85,101,82,94,113,100,93,88,107,109,101,98,105,114,90,107,100,104,95,98,97,87,105,91,102,99,101,89,91,101,95,91,99,97,90,100,101,108,97,102,104,118,96,97,96,109,93,88,95,100,118,98,94,114,108,99,87,104,111,96,102,104,94,97,100,99,108,91,91,98,98,97,101,118,93,98,98,104,90,94,83,106,103,100,111,91,91,93,89,102,117,97,88,101,99,100,86,96,106,98,102,100,82,104,102,108,106,100,100,87,102,90,88,99,110,101,108,110,101,105,107,107,98,101,106,95,94,108,104,85,112,102,100,100,116,91,117,92,99,95,123,100,100,93,111,110,86,92,99,104,100,98,96,105,110,98,100,109,111,102,103,92,94,102,99,91,99,110,107,113,96,109,101,101,109,94,96,108,102,112,97,88,110,98,99,106,97,87,106,101,105,98,103,83,103,109,102,100,98,95,100,112,105,102,98,97,90,101,90,98,95,100,115,92,113,101,100,87,96,76,98,109,100,92,97,109,96,89,101,108,91,100,86,112,105,95,74,93,112,93,107,98,113,103,104,104,96,102,91,98,101,109,75,92,91,117,93,101,109,100,100,101,106,103,90,97,97,106,114,111,100,106,100,98,96,117,100,101,97,99,99,106,110,98,72,101,101,104,95,96,97,93,102,105,106,94,98,98,83,102,107,99,99,106,105,122,111,104,103,94,96,109,93,95,96,108,106,103,98,107,103,104,100,86,109,87,115,94,110,106,106,101,98,100,104,115,101,86,105,107,101,100,107,95,110,103,105,98,111,107,110,108,98,101,97,98,103,101,110,95,94,91,109,100,90,108,104,92,109,98,112,100,113,87,107,108,105,102,105,108,102,93,109,105,103,99,100,103,99,102,109,93,103,110,95,110,96,86,99,81,94,91,98,112,96,108,105,93,95,102,115,107,90,110,103,106,96,102,112,100,105,98,116,105,101,101,109,93,108,105,97,92,105,99,107,102,95,109,104,105,113,104,97,91,113,105,110,102,104,105,93,106,91,98,89,88,101,88,105,105,116,109,94,103,96,104,105,106,100,106,103,88,105,93,116,94,98,105,88,95,98,102,97,100,95,99,107,97,99,100,101,102,90,82,99,102,89,117,94,92,101,104,94,104,108,89,116,95,100,97,96,103,96,99,100,106,94,97,104,91,99,103,105,109,99,97,97,110,100,101,109,101,113,93,93,101,103,101,95,105,98,84,93,105,106,95,101,101,100,101,101,102,93,96,91,108,111,93,92,100,85,100,102,97,100,106,101,103,97,98,87,87,80,97,105,97,102,100,99,87,94,95,116,102,97,99,92,87,105,100,101,98,87,105,100,98,99,98,99,101,99,99,91,104,105,103,101,113,101,106,104,93,96,103,99,105,105,99,95,103,103,113,106,99,101,106,99,96,120,96,100,98,106,109,100,106,95,106,103,120,106,102,107,95,94,99,93,105,87,94,101,110,98,101,90,85,103,99,99,82,95,105,101,93,88,96,106,103,100,101,112,107,108,87,94,91,89,105,98,102,100,114,107,105,103,94,94,102,93,94,103,91,108,97,91,109,91,96,109,102,109,101,101,97,104,98,72,98,92,98,110,106,92,109,96,99,103,100,105,100,101,104,95,106,102,95,102,98,103,104,101,101,96,92,94,95,99,97,107,92,114,100,109,109,94,107,83,101,98,109,92,101,93,95,94,89,101,91,91,101,105,91,86,104,102,107,92,99,97,118,112,110,97,105,92,106,88,97,101,95,73,97,99,97,101,114,97,100,91,100,93,108,113,102,88,95,99,105,77,92,91,104,87,105,103,96,96,105,93,108,104,97,96,100,93,96,103,97,87,109,112,101,110,98,89,105,100,93,102,108,97,99,66,109,96,97,103,100,98,102,100,99,95,100,98,116,107,98,101,93,111,93,109,109,99,97,97,108,108,104,95,95,93,94,105,104,105,95,102,115,91,114,91,103,110,102,109,96,110,105,88,96,98,100,98,109,96,68,107,102,103,101,95,76,109,95,102,124,98,91,93,96,121,94,105,106,94,99,93,104,100,92,103,102,98,109,100,104,101,90,112,102,87,109,99,101,92,93,102,105,88,99,111,98,88,109,106,88,98,104,99,103,101,101,101,95,90,94,111,104,93,100,116,105,108,67,96,96,115,95,104,91,98,95,102,97,103,105,103,111,97,94,101,97,96,94,99,88,108,106,103,102,90,96,100,111,98,93,97,104,103,107,124,97,105,97,108,93,94,102,92,106,93,98,98,104,107,99,103,95,89,104,103,117,102,105,91,90,100,116,102,118,110,103,102,97,107,99,108,101,98,108,103,100,98,85,85,108,106,97,87,91,87,123,109,93,114,97,103,96,102,89,118,96,96,107,108,84,96,107,94,93,97,102,101,106,101,106,113,98,99,115,87,100,105,104,107,97,88,94,116,100,95,110,101,92,108,108,98,99,102,95,101,118,110,113,113,88,106,93,96,94,96,109,97,98,91,89,89,98,100,115,123,92,102,106,92,98,105,106,84,98,98,99,103,102,95,102,91,102,100,96,97,107,92,98,110,100,94,105,98,93,112,111,102,90,89,105,88,113,101,96,97,91,95,91,92,104,96,96,97,102,95,100,102,95,88,92,102,99,100,105,93,95,106,101,107,99,115,88,93,84,91,102,97,94,97,96,92,107,103,106,89,113,98,116,94,93,108,100,101,98,113,95,97,84,96,97,96,108,93,123,104,98,106,99,99,97,101,94,96,94,91,101,104,90,80,123,81, +684.01941,103,98,85,90,107,101,107,108,83,114,109,131,87,98,102,104,78,114,109,98,128,110,108,98,91,113,85,104,108,114,99,95,90,98,109,111,99,100,102,106,108,100,104,99,111,107,82,85,112,118,94,103,97,83,118,110,97,87,93,95,104,108,91,98,111,107,101,98,101,108,99,101,97,99,89,115,88,101,94,97,99,108,111,100,101,97,94,111,91,119,96,111,94,108,86,87,109,87,94,97,116,105,97,103,87,106,107,105,98,103,102,99,104,93,103,108,101,96,98,95,98,111,109,104,99,108,102,67,126,111,92,110,100,117,99,101,96,109,91,99,109,104,101,102,98,95,105,101,110,106,95,98,106,81,97,95,62,105,100,96,89,101,104,94,108,95,107,114,103,110,95,100,105,111,100,99,86,112,100,99,91,103,101,101,112,100,92,99,99,107,107,94,101,95,82,108,98,103,95,100,91,98,97,109,95,102,95,98,97,91,100,100,103,110,103,106,110,113,111,105,90,109,102,104,84,119,89,95,92,109,99,101,105,104,96,105,100,86,102,101,93,98,101,87,98,109,103,110,102,101,95,101,110,96,103,102,107,104,101,105,91,102,93,93,98,94,103,111,108,109,99,95,105,97,105,104,106,103,88,107,98,114,91,101,107,100,96,94,113,104,99,100,106,96,108,114,97,100,102,103,78,121,121,112,95,100,95,113,107,106,97,102,100,101,103,92,102,119,101,90,104,118,120,96,117,105,100,93,94,93,109,95,80,100,107,116,107,101,94,109,108,99,92,85,103,101,110,94,103,96,96,107,106,107,95,96,96,95,102,95,99,95,95,99,98,105,91,102,98,114,106,96,110,104,91,92,105,118,101,111,122,104,103,101,102,98,99,89,106,89,113,126,104,113,102,99,96,107,102,90,77,104,102,91,94,101,102,113,93,103,101,108,105,99,99,85,100,90,113,93,114,101,93,102,95,96,100,100,99,103,80,107,104,90,98,105,94,108,125,104,110,96,104,101,101,110,100,86,99,109,97,106,96,107,99,94,92,101,117,93,97,94,110,92,102,100,92,99,93,88,115,108,104,94,96,96,93,103,96,112,81,102,112,104,107,104,104,101,100,101,108,117,103,99,95,104,101,98,104,102,108,100,102,103,96,92,87,98,104,96,111,85,102,99,79,109,98,109,99,101,104,90,106,80,98,95,94,104,92,107,93,96,88,103,104,100,110,93,107,106,95,96,91,100,101,103,106,112,97,99,101,130,109,96,104,86,109,97,97,135,101,97,97,97,106,100,111,115,98,110,96,118,105,117,101,105,98,93,91,99,108,102,103,104,99,105,97,110,110,105,122,105,99,102,108,115,93,110,102,102,100,99,116,88,102,104,103,81,94,96,107,98,103,105,99,111,91,125,93,86,100,117,97,95,106,106,107,99,102,105,90,107,96,110,109,107,102,99,106,93,98,109,98,92,105,93,109,91,100,99,114,95,98,99,97,111,99,90,100,103,111,100,111,111,95,96,108,98,109,106,96,109,105,107,108,106,108,103,109,109,107,107,110,96,97,101,100,102,98,107,87,107,99,105,96,95,103,103,101,99,104,91,116,91,118,102,110,110,108,96,100,101,101,94,88,100,79,104,98,95,107,92,107,108,107,106,103,96,101,105,107,94,99,109,87,108,100,95,106,95,107,104,101,106,118,104,106,97,95,110,109,102,105,105,97,100,98,96,87,98,106,109,91,108,100,107,92,101,104,102,99,110,106,94,104,101,124,96,108,110,92,98,108,92,111,100,108,128,102,109,106,99,104,105,111,101,101,95,92,106,105,104,97,106,116,101,106,102,107,107,114,89,96,105,111,99,96,106,113,106,96,96,104,107,99,111,99,109,112,104,108,108,104,83,102,102,107,106,93,111,100,92,98,103,105,95,98,94,96,94,103,95,110,107,101,98,111,99,104,104,93,103,124,107,94,92,67,99,97,97,87,96,94,105,103,97,113,107,102,97,114,92,96,106,112,99,96,108,99,112,85,97,107,108,98,100,98,99,91,105,104,101,113,111,98,103,78,97,95,93,107,95,111,112,90,91,95,96,97,115,93,109,111,115,91,107,97,101,94,100,101,104,104,102,101,103,106,107,103,107,91,97,104,100,94,107,108,110,95,111,100,99,112,91,107,99,99,99,99,105,113,113,114,93,108,97,101,106,97,97,100,99,100,94,96,98,101,105,87,106,91,99,98,97,101,100,97,109,91,91,91,108,101,103,98,104,94,90,101,97,99,97,110,94,104,100,110,103,102,98,90,102,100,96,101,91,114,99,98,88,95,126,99,90,110,104,112,107,106,95,104,98,101,105,113,94,101,106,104,93,117,97,104,103,93,101,108,106,96,92,108,103,93,104,101,87,104,102,100,93,105,92,108,100,99,90,103,94,92,99,93,95,93,103,105,95,90,100,109,108,101,107,108,88,100,98,100,106,100,81,107,113,105,93,93,94,104,113,95,71,97,91,98,102,102,107,105,112,103,118,94,110,100,91,113,100,92,97,96,109,119,104,104,100,111,96,105,99,105,98,102,99,102,100,115,68,105,96,106,100,95,99,100,91,104,110,114,125,98,90,110,104,105,100,96,104,95,107,101,97,93,84,117,87,98,71,103,68,93,96,109,109,112,102,121,112,101,101,99,97,115,91,108,110,103,98,104,101,101,104,104,99,108,109,105,109,110,106,98,92,108,103,102,100,104,93,102,102,91,105,97,103,99,107,90,104,92,108,101,105,98,109,104,103,104,101,97,110,106,96,105,112,92,113,99,100,98,105,95,107,98,101,114,106,113,99,106,100,95,88,101,109,108,111,99,98,99,98,83,87,90,99,101,97,104,101,97,94,109,108,108,106,106,116,102,109,105,108,99,111,80,98,97,107,106,106,97,116,106,110,92,106,93,103,93,117,106,95,99,100,108,116,100,97,103,102,110,117,104,102,95,97,101,105,89,101,109,112,98,109,106,119,102,121,97,91,111,109,94,101,106,102,95,108,95,107,93,98,110,104,106,102,103,97,100,117,101,102,90,101,96,104,104,108,94,93,87,110,96,104,104,105,99,97,115,88,105,98,111,109,101,105,97,121,107,106,111,107,92,109,102,93,75,111,99,88,104,104,95,108,90,101,115,100,104,95,89,110,103,97,113,107,101,113,108,98,91,114,103,103,92,104,108,97,98,103,94,96,108,103,111,104,88,106,109,111,101,104,109,105,111,104,109,106,98,99,95,89,96,107,108,114,99,104,98,105,96,113,103,67,95,98,109,96,96,107,101,106,100,95,102,113,108,94,95,101,99,97,98,102,93,113,102,108,96,103,105,99,99,102,105,108,110,104,100,102,101,103,95,94,105,95,89,102,106,104,90,97,94,99,90,102,88,109,100,107,102,97,91,109,112,109,101,99,102,97,105,88,104,98,111,100,102,88,106,105,100,96,105,95,105,103,99,105,105,109,100,106,103,95,107,99,99,117,98,113,108,104,96,106,100,102,98,113,95,106,105,109,98,95,97,102,112,98,96,110,96,106,92,102,110,87,102,100,92,104,114,104,94,102,99,96,79,96,95,117,100,99,109,111,95,92,97,106,95,100,106,103,99,101,99,83,115,112,105,113,95,80,100,92,113,106,99,102,99,97,99,94,99,99,107,102,103,114,100,92,104,105,114,102,116,106,103,101,94,104,93,94,98,102,96,105,100,112,96,94,109,100,105,94,103,112,103,102,91,101,114,92,83,105,94,93,113,103,103,89,95,90,116,100,95,105,105,104,99,103,105,101,105,98,95,105,98,114,105,100,91,91,102,92,104,102,95,100,101,112,105,112,105,99,113,107,116,99,109,111,96,102,104,94,102,117,99,113,92,112,98,99,88,121,97,96,108,73,97,101,107,102,104,100,94,88,117,97,98,101,99,101,115,100,99,109,86,107,102,105,95,111,102,109,100,101,109,99,103,103,98,99,97,87,120,103,108,90,109,110,98,107,95,98,103,101,79,96,97,105,108,99,113,106,109,114,114,77,100,103,103,95,94,100,98,98,104,73,101,103,109,107,98,98,112,103,105,107,106,105,101,116,102,100,96,96,97,108,97,99,108,96,101,112,102,87,100,105,96,104,105,95,110,101,113,93,93,94,106,109,104,104,104,105,99,107,104,92,84,106,98,108,108,104,99,100,92,100,121,109,101,106,106,121,94,92,100,96,101,100,105,110,105,94,101,92,103,102,105,104,97,116,98,109,89,108,102,109,87,109,109,97,103,97,98,99,102,96,100,100,102,94,98,105,101,117,115,106,109,101,105,105,97,96,100,106,102,88,117,96,125,106,92,91,99,107,100,110,99,91,102,108,100,102,100,116,100,97,110,94,107,109,92,114,104,109,99,105,97,83,94,111,94,95,109,107,102,94,101,103,95,98,113,101,96,122,100,94,98,95,104,113,107,98,113,101,92,93,83,97,102,105,108,105,106,107,107,101,103,108,101,103,111,103,96,104,117,91,100,103,106,105,94,98,114,109,99,111,113,68,113,98,106,97,99,105,104,86,90,98,101,97,105,88,96,103,103,87,111,95,102,99,117,105,112,107,104,97,105,94,97,84,106,100,111,107,100,100,95,97,104,116,117,110,106,97,105,96,107,90,100,108,96,90,106,91,114,106,109,98,120,105,92,106,110,98,101,105,115,116,97,105,93,96,93,77,97,101,107,121,109,99,95,102,105,96,107,103,109,89,104,95,112,103,98,90,92,74,97,84,103,96,107,101,121,95,110,124,95,102,101,83,107,113,115,108,99,100,105,114,111,97,94,91,106,99,97,116,106,113,92,110,106,95,105,99,97,102,98,109,96,98,108,103,104,109,101,97,112,97,110,107,91,91, +684.16071,126,109,107,108,91,104,112,105,101,107,100,106,112,108,83,101,91,96,98,116,101,105,91,100,91,96,107,103,104,96,100,118,106,95,112,102,107,94,136,115,106,102,90,100,95,116,124,90,113,106,87,101,101,100,101,91,102,95,108,110,100,101,99,94,95,105,122,82,105,91,108,99,102,98,95,103,98,106,110,95,98,96,105,105,104,96,106,105,100,90,99,98,96,101,97,99,99,107,103,101,108,95,104,103,107,97,100,112,106,94,101,104,110,102,95,109,93,102,68,116,122,112,106,120,104,101,119,98,107,101,102,112,100,102,100,104,106,101,108,105,109,96,113,111,103,95,102,98,116,105,109,102,107,102,101,90,102,97,104,103,92,105,101,108,100,100,110,98,95,91,104,96,108,103,110,100,108,99,103,100,107,100,105,107,101,101,87,94,98,99,95,102,93,98,110,87,112,98,96,112,102,97,96,108,93,105,100,100,109,108,108,113,102,99,95,95,106,102,98,100,90,71,103,114,114,103,120,107,113,103,100,98,104,95,109,109,107,91,95,105,96,103,77,101,95,105,106,102,115,102,102,117,90,104,109,113,90,109,96,95,96,97,101,105,94,96,104,88,106,99,103,100,101,107,107,99,111,106,106,100,101,107,108,98,99,98,105,94,103,91,100,106,102,100,105,103,106,99,106,107,98,84,103,104,101,108,104,95,114,82,98,109,98,88,95,101,108,98,87,98,100,112,103,96,112,101,101,90,112,108,110,110,102,91,104,110,101,99,101,103,95,107,110,99,96,101,95,97,105,107,120,93,99,108,121,101,104,99,102,109,106,97,84,98,101,123,105,98,92,103,104,94,116,100,94,95,115,86,95,99,96,106,91,103,104,102,108,107,91,93,103,105,103,102,105,96,100,94,113,77,102,100,105,97,109,95,95,112,106,100,94,101,99,83,109,96,96,97,111,97,98,97,86,102,91,100,108,102,95,111,96,104,110,103,101,100,94,104,104,100,101,100,94,104,94,102,94,96,111,102,95,111,116,96,112,101,101,105,99,101,103,99,101,111,114,101,107,91,97,103,104,102,103,109,106,94,94,102,98,102,97,101,105,104,107,101,101,94,93,100,108,103,122,103,98,89,105,108,121,109,113,100,100,101,102,113,98,95,95,103,103,104,100,105,110,86,97,106,99,99,86,96,87,104,98,93,100,91,95,103,105,105,89,94,106,100,77,103,110,106,90,106,91,88,98,101,109,105,99,114,101,105,74,103,98,104,98,98,96,95,99,100,85,107,97,105,107,102,100,99,96,104,116,94,104,117,106,98,114,103,109,107,108,98,106,106,113,104,103,106,99,105,104,103,116,103,105,101,99,112,98,106,116,99,96,100,105,104,94,99,95,112,97,108,100,95,106,74,101,100,108,111,105,98,98,98,93,99,114,109,90,117,95,100,107,106,100,107,94,117,100,98,94,110,103,104,119,94,114,111,104,114,101,99,109,125,89,101,92,91,105,110,104,104,104,91,106,99,96,78,100,107,109,103,86,110,100,109,102,100,106,112,112,100,94,105,95,92,113,109,97,109,84,102,87,106,101,114,103,100,110,105,100,102,103,100,95,90,96,101,95,106,101,102,99,101,98,97,114,102,106,105,98,103,108,88,98,89,95,103,108,107,93,95,105,95,104,105,107,103,106,91,104,91,106,94,112,93,101,100,137,97,109,95,118,97,103,91,96,107,104,97,100,99,117,109,106,109,109,87,105,100,110,110,103,100,105,101,107,91,100,101,112,104,96,104,94,101,102,105,106,92,102,97,84,98,108,92,112,115,103,106,105,110,102,95,112,119,99,102,108,118,114,102,104,102,102,108,108,100,103,105,109,104,109,117,101,110,101,115,111,98,112,106,113,99,103,106,113,96,111,105,105,109,103,101,118,111,91,97,98,114,105,100,93,113,104,102,102,113,97,107,92,92,96,98,96,103,109,106,99,117,117,104,100,102,101,91,94,98,105,100,106,100,95,82,94,106,105,105,109,118,99,99,88,99,100,109,94,99,77,105,108,92,107,100,83,108,100,106,102,106,98,99,105,92,95,103,93,100,97,101,106,109,93,97,105,105,95,99,97,107,101,110,103,100,105,95,94,101,104,109,102,112,83,87,100,97,102,100,98,115,111,104,100,99,100,103,88,96,99,96,96,101,104,86,86,101,91,103,90,102,111,105,104,77,104,83,86,104,98,95,94,99,93,99,93,85,106,97,98,102,98,91,101,89,99,99,104,101,99,101,97,103,110,97,106,89,103,102,82,107,94,107,86,101,96,105,97,120,87,108,95,93,92,91,109,95,103,111,102,94,106,105,102,94,102,110,115,102,100,95,102,98,96,105,112,97,110,101,104,109,97,102,100,109,96,94,105,102,105,115,102,121,98,107,96,100,113,100,100,104,114,99,104,113,106,106,102,119,99,91,113,91,112,102,110,79,104,100,111,88,94,93,103,103,87,116,95,96,101,97,111,111,89,98,95,83,106,101,83,107,108,91,120,89,98,96,95,101,104,96,109,104,128,101,93,113,91,100,99,102,96,97,88,103,95,98,80,90,99,108,91,101,100,103,95,109,98,98,101,106,105,105,109,103,104,102,98,112,90,89,87,90,106,105,103,100,92,107,99,107,79,106,104,105,95,95,97,104,94,100,78,95,102,107,121,89,92,97,94,102,93,88,101,105,107,100,106,95,105,102,109,95,94,102,101,106,112,116,96,105,103,103,105,99,107,95,106,104,98,89,100,95,101,103,98,99,99,94,103,112,81,100,99,96,107,101,103,97,106,95,100,116,88,98,103,110,109,90,105,112,99,95,92,102,103,104,90,106,79,98,112,103,101,98,102,108,104,104,113,104,117,113,99,102,109,97,99,109,108,99,99,99,92,100,110,97,103,106,108,106,100,101,106,94,91,98,101,104,102,106,101,100,88,93,95,108,91,112,95,120,92,89,104,103,115,94,96,93,95,101,103,89,99,123,99,106,93,100,91,97,95,94,100,91,98,108,92,101,98,101,108,94,107,100,99,113,106,96,99,100,98,96,88,107,111,97,106,99,96,104,102,99,108,97,113,108,97,98,104,94,91,110,104,101,105,103,105,99,92,88,98,100,95,103,101,89,105,97,97,89,113,105,108,101,92,97,90,94,79,112,93,86,99,100,106,95,105,85,93,91,98,116,99,101,97,104,107,101,106,104,90,94,95,92,101,102,101,105,102,107,106,98,110,98,88,104,96,99,84,106,92,101,108,103,96,102,97,110,91,89,100,104,96,66,96,85,96,98,103,94,108,97,107,99,100,101,107,103,100,97,94,100,92,75,96,108,105,114,88,108,91,99,91,103,102,100,107,94,99,103,86,106,103,113,103,103,111,91,94,87,109,92,92,78,103,95,94,107,92,113,96,92,94,104,109,83,92,101,91,96,97,91,101,110,98,107,97,100,85,101,105,96,86,97,101,93,116,91,111,103,88,101,92,97,112,112,103,96,104,101,106,103,105,100,102,103,101,101,102,107,97,106,107,79,103,108,109,108,100,95,103,105,92,91,108,104,105,96,82,97,98,117,105,120,87,101,97,93,92,104,93,89,99,100,101,105,101,102,95,111,104,103,100,113,99,103,107,94,94,109,103,94,103,92,98,98,101,108,95,92,96,99,107,99,79,92,109,115,97,101,104,82,96,99,103,120,109,90,110,100,102,102,105,102,96,97,94,96,94,96,90,95,98,101,118,87,95,104,98,92,97,91,94,101,115,100,104,96,79,103,106,101,109,94,108,104,108,98,104,90,103,104,101,97,104,96,89,108,97,100,65,102,86,98,105,98,99,92,100,91,102,100,93,114,95,109,103,120,100,99,93,93,107,93,102,97,95,95,98,138,102,93,101,90,101,88,108,105,119,107,120,102,89,96,101,105,103,99,94,102,100,102,95,108,102,108,77,106,101,107,119,99,106,87,97,90,81,98,106,95,84,99,109,102,100,101,105,91,101,102,108,97,101,99,107,104,94,101,107,105,92,97,88,116,103,101,95,91,91,88,108,102,97,113,98,104,95,107,117,103,96,111,100,111,94,105,105,79,109,108,102,117,105,103,105,112,95,101,98,93,92,101,108,108,119,91,104,106,99,99,102,85,102,109,110,110,88,95,95,98,113,115,110,105,102,114,102,100,97,106,94,96,93,92,108,93,84,102,115,100,104,96,98,101,90,103,104,113,94,111,96,97,97,116,106,83,110,93,105,95,103,107,97,99,97,91,90,101,96,105,89,105,107,94,101,96,89,104,107,99,94,104,100,106,91,100,106,98,106,101,114,86,106,95,100,90,103,112,106,100,109,100,103,96,92,76,88,94,95,98,98,96,95,97,106,101,97,82,95,91,92,96,98,98,101,100,105,102,95,106,95,99,96,94,100,100,89,109,111,99,107,112,102,83,103,102,118,110,95,98,108,100,86,101,106,99,101,103,109,102,102,100,97,101,100,88,104,98,96,101,91,96,109,92,111,92,102,101,94,112,97,95,95,74,102,101,89,101,89,93,102,88,102,96,106,114,87,105,108,94,107,103,100,91,82,101,96,103,92,106,94,110,85,100,105,111,110,73,102,95,95,95,101,94,98,87,97,104,102,105,109,102,100,92,94,103,84,85,99,106,94,92,88,90,118,100,91,98,112,114,99,87,96,102,104,94,82,109,89,100,102,87,100,107,92,113,94,86,113,110,97,92,113,99,85,90,109,97,96,99,120,99,101,90,97,97,101,108,93,99,90,96,103,95,109,108,102,89,104,109,72,96,106,113,98,82,91,94,86,115,95,98,83,118,85,97,115,93,102,95,101,103,117,100,99,99,111,99,102,102,102,84,108,94,110,100,101,97, +684.302,81,99,101,103,93,110,107,97,101,110,111,91,99,108,110,110,95,106,92,122,94,109,102,83,98,103,104,108,104,125,113,89,109,107,119,100,101,98,114,83,109,99,112,103,91,98,109,85,100,103,93,107,122,110,105,104,101,106,103,83,105,91,96,95,104,95,104,110,109,95,106,99,95,105,77,101,101,86,111,115,106,96,107,109,102,100,92,105,95,113,92,100,114,111,95,100,115,105,90,99,111,84,112,98,95,99,96,89,109,97,99,104,112,74,112,103,97,94,102,107,103,95,110,115,101,109,121,119,112,123,115,107,99,100,91,108,94,98,99,92,96,108,100,101,97,96,104,101,104,102,105,109,111,94,107,92,100,108,116,108,90,109,110,106,93,101,101,84,101,100,108,83,99,104,97,105,100,100,114,103,103,113,102,108,108,104,99,88,97,109,105,107,101,108,98,92,99,72,99,92,98,117,105,124,97,101,97,104,100,95,95,111,119,100,97,89,111,91,109,111,109,100,113,108,103,138,101,98,97,96,116,105,98,105,107,100,109,114,96,105,101,123,105,113,98,113,100,97,115,109,105,114,117,80,103,115,99,111,110,90,87,104,100,115,99,104,95,97,103,99,102,109,103,102,109,113,114,98,98,103,93,102,112,105,101,98,88,99,103,97,102,108,104,104,91,89,101,109,98,95,94,95,104,105,99,95,107,99,107,100,89,112,107,108,110,103,104,101,101,93,91,91,109,108,101,97,92,100,98,110,110,98,109,94,86,100,102,101,92,105,107,109,93,109,79,94,99,112,106,100,103,117,104,93,100,103,102,99,112,82,115,104,101,108,95,93,91,96,108,108,105,101,102,118,96,101,106,93,99,116,104,101,83,107,102,99,101,103,103,99,100,96,102,96,104,92,99,99,87,99,105,99,100,103,109,107,101,115,99,94,109,107,104,102,100,100,122,82,109,83,114,97,92,107,103,108,90,100,125,103,105,103,95,98,104,92,97,107,102,99,102,94,91,95,115,99,110,102,110,111,94,99,99,106,91,97,99,99,115,97,96,115,104,100,96,99,101,107,94,91,95,99,100,107,96,93,94,101,105,107,100,108,105,91,109,101,96,100,88,101,108,117,110,102,97,103,98,98,107,106,102,104,113,100,108,102,112,108,103,96,107,105,90,119,98,91,94,101,96,100,97,97,113,107,108,112,122,106,107,99,98,102,104,100,109,107,95,105,103,112,109,90,92,96,97,103,101,107,100,103,98,106,111,101,97,95,100,102,96,99,103,99,101,100,104,111,118,95,116,102,95,98,78,116,112,97,106,99,92,97,105,101,112,95,94,103,115,96,93,96,99,100,101,110,102,114,104,100,102,101,87,107,98,93,108,97,106,108,98,107,103,103,104,99,88,100,104,91,99,99,113,97,67,88,109,109,98,99,98,87,99,100,102,99,96,123,114,103,111,101,107,103,91,103,99,99,96,103,101,107,100,104,102,103,114,95,102,105,109,109,94,101,101,98,65,106,111,96,124,96,110,112,107,110,86,96,103,109,102,109,103,103,95,96,95,91,97,124,95,98,83,112,104,105,101,92,102,102,99,92,107,94,102,94,108,93,107,113,103,87,99,101,99,106,87,99,95,95,106,104,103,91,96,98,96,107,88,99,104,104,96,94,95,101,91,114,95,102,108,94,113,97,99,95,117,106,102,103,99,109,99,98,94,100,91,114,113,107,110,98,100,106,98,92,81,104,100,97,104,87,103,98,114,96,91,102,114,121,108,99,102,111,118,102,112,110,99,90,113,96,103,108,99,106,106,93,108,95,99,88,90,101,101,105,102,106,102,109,100,99,98,110,95,90,106,91,102,93,107,106,101,97,103,107,102,98,106,94,110,97,110,101,111,94,103,108,105,105,109,105,112,103,106,109,87,113,112,96,103,110,103,100,95,107,94,116,100,102,88,106,105,112,107,112,94,101,93,103,122,101,98,111,106,99,96,100,107,104,106,105,106,110,96,93,94,115,106,112,116,99,101,113,108,92,99,109,97,107,106,93,100,107,105,111,106,103,90,104,100,109,90,96,99,114,95,108,87,112,104,99,102,105,100,106,120,100,114,85,105,113,106,97,103,98,96,99,100,105,103,113,92,78,117,94,89,99,99,99,103,99,106,92,80,110,105,111,101,103,98,113,120,102,96,95,99,94,97,98,95,96,107,103,110,93,102,88,88,102,89,105,105,105,91,108,97,111,94,95,93,108,111,101,106,104,109,93,101,95,100,109,100,104,104,94,101,77,105,100,96,99,90,112,101,107,85,95,101,99,83,98,98,112,101,99,94,115,101,96,102,94,95,99,107,95,104,87,112,107,102,107,100,108,116,102,99,105,97,96,97,109,105,103,104,99,107,105,83,80,101,104,99,107,101,101,104,106,94,102,91,98,105,104,104,98,98,117,73,77,95,109,95,101,97,109,111,109,98,85,103,105,110,101,102,83,93,102,105,94,103,109,105,94,102,104,107,107,95,102,124,102,97,107,93,93,111,108,97,96,90,105,101,110,110,100,106,108,105,101,104,94,110,98,105,103,96,107,99,100,94,86,110,98,103,106,101,100,99,88,104,98,108,109,111,102,109,99,101,109,103,97,99,100,104,88,104,95,106,102,96,91,93,100,101,108,93,106,106,98,110,89,103,124,99,100,89,101,104,100,102,121,84,77,99,98,97,98,101,92,113,96,109,104,101,102,97,94,102,84,95,108,106,101,105,112,114,99,104,100,105,99,100,97,108,98,101,117,97,113,103,114,105,101,91,97,103,100,75,107,106,98,108,104,104,96,97,106,115,96,101,101,108,87,106,105,102,103,94,113,95,103,102,99,96,108,111,104,105,108,100,101,100,120,101,114,93,104,97,116,100,101,110,102,100,106,111,104,101,101,95,108,107,105,94,101,109,102,95,120,114,95,113,102,90,109,102,134,90,99,104,102,107,97,105,93,99,91,100,106,98,103,115,105,98,101,103,103,108,108,100,109,92,98,99,102,105,102,100,104,88,111,98,109,108,108,95,98,110,100,97,105,97,114,109,99,112,112,96,103,104,95,97,105,102,101,94,89,110,100,100,94,97,112,92,101,100,89,98,113,91,95,99,85,104,94,96,102,99,108,105,106,101,99,101,105,96,99,105,105,99,98,110,98,93,115,83,108,102,107,107,104,101,119,104,102,107,88,105,108,112,103,99,94,102,100,94,112,111,99,100,105,96,105,94,107,109,102,113,104,98,115,101,113,99,105,96,94,105,102,109,100,98,88,104,99,99,99,115,106,106,96,109,93,115,107,96,105,93,92,107,96,107,97,103,117,99,107,106,105,102,115,107,105,101,101,98,97,100,119,104,103,97,92,114,103,102,114,101,100,110,106,105,105,95,113,101,91,93,106,98,104,104,113,98,104,109,99,117,89,96,97,101,105,109,99,112,100,92,102,96,90,102,109,108,95,98,99,94,116,98,103,106,99,120,113,108,102,105,104,92,91,107,99,97,103,100,100,107,102,104,83,109,101,105,98,96,105,108,101,91,91,95,98,104,96,107,100,120,104,107,99,92,94,109,103,95,98,110,106,93,92,100,97,104,104,92,97,103,109,108,110,104,101,101,97,102,114,100,94,100,107,103,107,105,113,101,99,109,104,112,112,91,103,105,99,104,93,95,109,106,102,104,100,100,98,101,98,112,102,91,96,108,97,92,90,98,97,97,103,100,118,95,104,97,91,93,108,108,106,98,95,98,94,102,101,95,91,95,98,105,89,98,96,91,102,108,99,104,121,95,101,113,101,99,98,92,108,109,109,93,100,91,109,102,95,91,103,108,113,105,104,93,113,98,103,112,104,106,95,107,111,99,97,101,96,93,107,105,98,97,109,96,107,97,112,104,103,102,98,113,108,91,93,101,104,98,109,105,91,111,89,103,99,108,96,98,97,110,112,106,103,102,94,101,100,103,91,107,98,107,109,115,105,96,94,100,92,102,106,96,112,92,98,106,103,103,100,108,103,101,100,68,108,86,95,101,99,97,88,104,97,98,93,98,84,108,108,113,103,106,101,107,96,90,100,111,93,105,108,102,101,97,100,99,103,103,115,105,102,92,104,102,83,109,115,96,105,104,102,84,105,99,104,101,96,104,108,100,108,106,95,96,95,107,94,111,113,95,106,96,107,109,97,109,109,92,98,95,94,82,105,97,105,103,96,98,94,102,100,98,92,92,118,120,101,98,88,112,85,104,94,121,94,97,85,109,108,93,104,101,104,94,114,105,81,103,110,94,102,117,102,109,117,104,102,108,100,106,119,95,109,102,96,117,107,101,112,105,103,109,111,97,99,101,103,115,98,98,106,113,108,105,125,104,114,108,104,107,113,99,96,101,95,100,110,109,116,93,105,105,86,100,98,69,99,111,101,97,114,103,97,99,90,107,103,108,94,105,103,102,94,105,103,93,107,99,106,95,102,91,102,110,97,100,99,108,107,98,93,101,106,89,103,103,89,111,111,100,103,109,93,100,106,114,106,93,121,105,99,105,111,101,112,95,105,104,93,100,102,94,111,91,83,113,114,103,105,91,108,99,112,104,98,97,97,108,108,96,113,98,95,107,93,110,98,113,106,109,94,106,101,101,88,110,101,103,107,95,102,110,103,123,104,114,110,109,96,113,100,99,94,107,96,106,105,94,96,103,96,109,98,105,105,86,108,81,100,119,87,103,92,99,105,100,97,90,105,113,91,110,99,99,97,104,107,95,110,106,97,102,104,115,102,108,92,102,86,102,92,106,108,104,111,96,92,94,101,116,108,99,101,111,112,104,113,81,109,99,99,106,75,110,104,102,86,115,102,95,108,98,100,105,101,88,102,99,111,111,99,108,106, +684.4433,92,91,100,102,95,100,111,93,109,102,102,96,107,95,108,97,101,107,105,90,96,83,115,94,94,110,78,105,116,106,102,98,101,106,98,109,90,98,104,104,104,91,104,93,109,97,87,94,87,97,90,100,103,116,95,103,113,91,110,102,111,109,104,101,107,112,84,104,100,105,114,93,97,111,104,111,101,102,99,104,91,96,99,100,102,83,95,104,100,100,125,92,106,107,102,87,92,95,102,108,100,104,111,94,104,95,112,98,100,113,92,104,105,90,93,96,93,109,115,98,100,103,101,99,92,113,112,105,103,108,107,107,100,107,95,97,93,122,84,98,96,100,104,93,102,97,107,99,104,85,96,106,106,91,92,96,90,103,97,102,98,113,99,106,104,100,98,94,116,113,95,102,92,98,96,99,99,85,106,113,103,97,96,98,101,99,109,86,96,104,91,105,100,97,100,97,98,105,101,103,104,98,98,91,107,108,98,99,106,103,100,97,104,95,106,90,73,111,103,116,102,101,95,99,99,99,95,101,103,88,90,93,102,109,90,99,93,100,105,103,94,105,107,96,90,123,100,109,102,93,99,111,83,114,95,109,92,116,96,92,101,101,103,89,92,106,106,92,110,106,101,97,100,96,107,98,98,104,101,121,99,107,107,104,94,104,97,91,112,99,102,105,88,98,105,100,109,72,95,92,87,101,106,93,103,111,100,87,81,110,96,107,92,98,100,91,93,106,88,109,93,87,105,95,93,97,95,101,94,101,99,104,109,100,107,106,89,105,94,104,92,94,99,97,105,106,106,97,111,99,88,105,103,129,94,117,94,99,103,96,99,105,83,99,106,112,91,104,106,104,108,100,107,96,105,94,93,101,103,108,103,116,106,100,95,104,101,95,108,108,102,85,111,107,99,93,96,92,104,110,106,101,114,101,101,113,99,102,100,94,96,96,107,101,109,87,100,98,108,79,106,88,105,109,104,102,95,89,101,112,88,115,106,99,104,104,98,101,105,94,110,97,86,109,123,103,106,100,94,94,109,104,101,103,100,95,113,114,106,98,99,96,113,103,94,110,112,91,96,93,109,114,95,104,97,113,94,97,99,103,103,112,104,95,99,103,94,105,97,107,109,93,88,96,101,103,90,90,111,100,107,112,101,118,112,101,121,93,96,93,103,101,95,93,85,99,105,94,97,83,101,93,91,113,105,109,96,95,96,99,106,100,68,100,85,99,101,92,105,102,89,108,101,103,100,98,108,102,107,105,104,103,99,98,105,111,97,92,100,107,107,109,97,94,89,117,104,102,116,92,97,95,98,97,109,97,98,95,106,102,94,96,95,98,106,99,104,101,93,82,102,99,98,92,112,108,118,119,100,103,96,101,114,95,103,96,100,98,105,94,95,95,102,112,111,99,95,95,104,100,104,101,103,113,109,99,104,105,100,96,96,101,92,102,86,93,110,102,98,104,96,106,101,100,102,97,104,109,99,118,99,110,110,109,102,105,111,100,99,105,101,98,99,99,101,100,109,91,96,91,102,93,103,100,107,100,99,105,101,103,100,95,106,89,104,96,97,104,99,96,106,95,100,98,98,93,101,104,106,101,92,95,104,91,109,104,100,104,101,113,101,104,100,94,102,96,100,110,105,76,113,96,98,110,111,94,93,104,96,109,103,98,104,101,103,103,114,104,99,100,101,98,93,109,100,102,80,109,85,98,105,99,112,99,105,91,100,95,102,105,91,110,93,106,99,106,113,90,96,101,108,105,100,102,94,100,97,85,96,104,90,129,121,95,105,93,90,97,94,93,110,100,110,103,112,104,88,102,104,98,93,93,94,95,94,101,92,109,105,94,102,93,91,86,102,100,124,101,114,99,101,107,102,107,97,100,99,98,95,108,98,101,99,97,102,91,110,97,100,110,92,104,91,95,102,94,104,105,99,104,103,98,90,95,88,104,109,109,98,103,109,91,97,101,101,96,95,107,102,98,91,103,91,87,95,95,110,94,102,105,89,100,97,97,116,109,104,96,102,109,101,94,103,109,90,93,121,89,112,94,102,105,106,100,93,102,86,108,87,100,107,94,95,97,100,97,97,100,96,95,102,100,100,101,100,100,92,96,97,106,101,97,104,109,99,105,97,104,98,113,109,102,95,113,102,104,97,105,103,101,103,97,104,95,98,103,97,95,91,102,110,99,101,97,104,96,113,89,97,100,94,105,103,87,102,106,100,104,96,99,66,104,101,95,106,90,113,101,90,95,104,105,102,99,119,102,100,91,92,91,114,101,103,97,96,80,118,105,107,101,102,97,96,96,104,104,90,105,105,93,108,118,99,95,102,96,99,95,109,97,109,95,103,106,108,105,137,105,117,102,104,98,96,106,103,95,111,106,87,108,102,103,100,92,97,97,99,105,102,86,103,106,101,132,98,101,106,117,95,102,88,103,91,106,67,97,98,91,97,88,103,110,97,91,123,97,98,108,113,101,94,104,95,101,104,111,96,88,110,101,95,107,94,107,95,100,106,98,101,99,103,117,108,101,108,109,102,94,102,102,103,109,98,93,92,100,99,101,99,101,104,99,113,103,101,99,96,95,100,81,98,101,95,109,94,97,86,95,90,90,103,98,111,91,99,103,100,125,97,97,111,97,110,101,101,96,96,95,101,106,76,88,104,103,106,100,107,103,96,91,112,109,99,111,92,95,96,106,96,113,96,113,107,104,95,108,99,99,99,94,95,95,95,102,97,98,119,103,121,105,78,95,93,101,109,104,110,112,96,100,109,97,106,108,114,104,100,105,108,102,94,102,101,110,87,87,102,108,87,106,105,101,105,105,113,98,106,101,106,110,102,109,106,111,110,84,85,108,92,111,102,101,106,115,108,102,109,99,105,94,102,103,105,105,100,92,97,100,100,102,109,102,106,104,102,103,95,98,100,102,109,110,104,95,113,104,106,97,85,106,101,106,91,103,97,106,98,115,108,124,105,102,99,92,99,112,106,99,98,94,91,106,108,89,110,91,98,103,111,110,107,105,101,106,112,85,106,103,117,96,103,102,99,90,103,100,113,85,106,107,103,98,94,105,98,102,81,99,115,93,106,104,97,102,107,107,96,105,101,98,102,109,104,106,104,99,98,103,94,102,98,91,110,104,114,101,108,103,97,101,89,96,112,104,120,113,108,104,100,109,107,97,92,101,79,107,111,100,112,106,91,94,109,89,101,92,95,101,108,99,108,106,105,100,101,89,108,102,113,112,104,102,99,120,105,100,106,103,106,98,98,96,107,99,96,101,114,99,96,96,108,101,101,96,99,107,112,111,107,84,119,109,103,87,93,125,96,102,96,104,102,101,107,94,106,99,99,79,102,99,100,96,106,101,101,95,84,104,97,102,110,97,96,103,104,118,104,105,99,98,104,95,113,107,100,95,103,104,102,105,91,102,100,98,96,99,109,101,101,122,95,102,102,101,95,104,101,103,112,89,99,101,108,96,106,104,103,107,94,94,102,107,99,105,97,103,94,106,113,121,97,113,99,106,87,97,105,96,88,94,105,100,109,94,102,108,99,101,101,103,96,99,105,89,100,109,106,104,106,107,101,100,110,113,103,95,113,97,108,108,89,85,101,83,93,92,70,111,103,104,105,95,112,105,99,93,114,105,96,91,99,95,108,110,96,98,91,108,108,83,101,109,101,107,96,95,113,87,124,87,87,87,105,102,95,100,98,104,101,103,106,91,80,94,104,106,111,104,113,101,106,88,100,110,108,112,99,87,105,112,108,102,106,106,97,96,101,108,95,97,93,99,99,109,112,103,95,109,110,102,107,101,95,99,106,104,106,95,104,101,98,95,125,114,105,95,90,104,112,102,112,101,100,105,101,86,92,101,103,81,111,105,104,83,108,100,106,92,103,95,100,99,97,88,100,95,109,95,96,94,90,105,99,102,101,95,99,116,103,110,105,98,85,97,112,97,96,107,93,101,93,111,85,92,91,73,96,101,100,105,96,102,104,113,98,95,102,98,93,105,97,102,106,97,93,99,101,92,83,110,82,105,93,95,98,103,112,92,96,91,66,100,99,71,93,93,105,93,98,100,106,106,116,99,109,108,95,96,122,103,112,109,96,101,101,103,98,95,99,101,85,95,86,99,112,101,103,94,102,106,100,90,100,99,100,105,92,104,96,92,112,105,110,106,99,106,96,113,118,103,93,103,103,111,104,92,106,94,104,108,110,112,101,105,107,103,104,103,97,101,100,113,100,91,91,99,100,108,97,105,92,99,107,94,105,108,97,101,105,84,105,106,110,96,94,103,105,111,108,104,109,100,113,101,105,105,93,98,95,100,100,101,104,106,110,110,97,100,109,100,106,94,80,118,94,106,105,104,95,100,87,102,109,91,115,85,115,109,101,93,96,77,97,94,91,91,87,91,99,94,99,112,97,99,91,99,102,115,105,114,95,104,106,95,105,97,97,86,103,100,105,91,102,88,75,98,93,101,97,97,98,91,80,101,103,105,109,102,108,96,89,113,90,89,103,109,104,102,90,94,89,105,100,87,108,97,102,111,106,102,98,101,107,100,103,102,106,99,111,94,95,96,103,99,108,105,98,105,96,101,102,92,101,99,101,98,106,100,98,109,99,102,105,108,97,73,107,117,103,99,100,92,104,91,83,102,104,98,100,83,98,100,88,98,98,108,104,87,107,93,106,108,100,96,117,124,90,105,101,91,103,106,84,98,96,102,103,106,103,94,107,102,97,91,87,112,92,109,104,98,99,113,100,106,103,105,106,100,98,119,104,106,83,118,106,113,96,114,97,99,108,105,102,110,108,91,110,97,105,97,106,108,87,94,107,132,88,105,117,94,100,89,105,97,91,89,91,102,100,89,108,106,102,97,117,116,98,101,100,100, +684.58459,90,108,116,111,91,98,67,100,100,98,96,104,117,82,98,101,85,109,106,98,113,89,87,92,110,111,107,95,97,109,97,101,112,92,100,98,112,94,110,112,77,93,101,93,100,107,97,96,110,104,112,95,107,78,80,106,100,91,119,103,96,108,99,116,98,104,103,114,92,99,94,112,108,99,92,95,88,114,100,115,81,99,88,104,110,98,106,101,92,100,98,110,118,107,92,94,99,100,102,100,104,101,102,106,99,102,97,104,100,95,119,105,102,94,98,116,108,114,101,104,100,108,113,109,112,99,100,99,113,99,109,92,96,98,112,90,97,95,112,109,103,110,95,104,108,94,102,111,93,107,104,100,104,75,91,101,97,96,106,101,102,75,102,110,113,96,109,105,109,98,94,84,96,97,101,92,98,85,105,91,109,104,90,105,105,110,96,105,106,100,103,108,108,94,86,102,104,102,100,98,66,96,108,106,100,101,88,102,95,92,107,92,85,106,112,92,112,101,103,105,113,106,104,94,93,117,105,99,115,110,101,116,102,91,95,110,96,106,98,95,97,93,104,105,94,104,109,124,99,108,103,101,76,101,109,101,96,112,102,90,93,99,94,104,87,93,99,100,95,107,97,104,101,101,99,101,90,114,99,104,100,87,106,92,84,102,94,108,107,115,98,114,99,102,109,109,92,108,110,95,109,61,101,116,88,104,108,105,104,99,95,94,120,91,110,97,102,96,109,95,100,100,107,102,104,107,102,90,102,109,103,110,112,98,107,105,97,95,103,101,88,97,101,101,101,94,99,94,101,106,96,115,94,99,105,105,94,111,94,102,104,98,99,94,96,100,104,109,117,113,101,101,117,86,98,100,109,95,95,105,98,121,99,107,95,99,104,101,96,92,97,98,99,102,102,86,107,103,103,87,85,96,87,111,96,97,100,100,104,94,108,91,106,105,102,99,87,94,108,88,98,85,94,109,104,85,103,98,101,95,108,100,83,101,101,101,109,117,93,99,102,123,112,109,100,104,98,106,98,104,79,100,92,111,96,92,100,103,97,109,110,96,102,106,101,104,104,101,106,104,104,95,110,100,114,99,110,96,99,101,102,91,99,101,100,91,113,97,98,96,98,107,94,108,87,104,98,102,100,102,103,105,97,91,101,111,98,114,105,90,93,100,101,92,91,104,105,93,106,87,99,104,111,105,90,114,106,101,92,100,94,110,102,94,104,104,104,101,108,95,91,98,94,98,109,96,108,112,110,96,106,109,104,92,92,100,106,102,95,92,100,93,108,101,98,95,102,104,99,98,96,95,101,106,95,111,98,109,107,100,116,100,102,95,106,103,112,102,96,105,100,107,101,106,106,118,111,102,106,105,102,96,98,100,98,96,94,103,113,100,108,100,105,116,106,96,110,100,104,104,104,99,105,98,104,108,106,97,98,104,99,102,89,100,97,84,98,95,99,97,100,96,109,100,91,101,87,96,103,96,98,110,95,101,102,101,95,108,104,96,107,112,103,105,94,110,91,94,103,101,102,99,108,114,99,95,100,128,103,104,92,105,108,94,107,96,104,107,100,106,92,102,94,117,96,65,97,102,107,85,104,91,110,93,106,117,101,96,89,104,109,96,75,106,91,100,96,87,105,97,101,87,103,109,98,100,106,100,103,98,102,106,100,107,92,117,100,102,106,107,107,96,97,105,108,98,90,104,92,100,101,99,102,110,104,105,104,101,98,103,98,98,101,99,92,95,98,111,114,96,100,105,98,117,108,102,107,93,103,96,94,97,105,99,102,95,93,103,97,102,115,103,87,107,98,104,99,100,99,109,107,99,121,100,98,113,102,103,107,108,102,97,100,94,94,95,106,104,99,97,111,100,104,108,91,102,105,98,97,107,113,100,107,95,96,110,104,96,113,97,107,119,105,109,88,104,109,98,105,91,100,97,100,105,98,103,106,97,107,110,85,110,109,102,95,89,92,92,106,96,99,108,113,101,90,114,99,109,102,99,101,99,106,96,102,93,98,107,90,104,100,108,106,98,108,81,111,96,83,109,103,88,105,111,95,99,98,91,106,100,98,101,112,95,104,98,97,101,98,88,110,96,121,105,99,99,98,105,100,104,73,104,116,105,90,117,91,96,96,105,98,98,100,99,97,88,109,97,108,96,107,98,113,101,100,109,100,96,111,104,99,103,106,104,108,98,95,113,113,105,108,92,111,104,106,107,101,113,97,104,96,105,92,94,97,119,85,91,100,94,111,104,98,102,104,91,96,101,95,99,113,93,106,99,105,101,105,110,94,105,102,94,107,107,108,100,105,104,100,99,94,97,108,88,113,81,104,90,117,103,100,93,93,81,105,97,95,105,121,101,101,101,107,86,97,112,103,110,95,105,112,97,103,103,100,103,100,98,113,107,103,83,100,108,91,103,94,93,107,98,93,102,98,99,95,104,100,108,100,100,69,99,96,108,104,101,110,84,119,87,71,108,95,90,87,95,104,109,113,104,100,95,94,94,93,97,72,95,97,90,100,88,92,96,90,95,107,102,93,101,107,91,106,99,105,107,85,107,98,109,110,114,93,97,97,104,95,83,102,93,103,99,94,101,97,106,101,94,99,101,106,111,97,99,97,105,92,86,105,91,100,74,101,97,91,96,90,117,93,103,80,95,104,99,95,90,106,101,103,95,104,93,101,83,95,95,102,102,102,90,104,99,104,122,107,99,99,98,101,87,85,107,99,103,100,106,102,101,122,102,102,115,100,98,99,104,94,105,93,69,102,95,96,98,96,99,92,105,104,91,94,100,96,93,94,97,112,86,99,102,98,91,84,98,100,111,109,112,88,100,102,107,95,105,110,100,102,91,91,100,79,104,99,99,106,107,108,83,98,100,95,104,99,104,111,87,89,99,102,104,99,95,103,94,101,98,99,96,104,103,105,92,83,96,117,91,107,100,102,91,113,106,94,104,102,100,98,104,102,95,105,99,113,96,99,110,102,95,98,115,105,104,94,96,105,97,99,106,79,96,105,109,92,94,104,91,113,90,101,101,99,93,95,102,111,93,110,98,103,97,88,87,101,112,92,96,97,93,95,95,97,103,102,105,102,91,102,99,97,98,89,84,113,100,102,92,106,97,92,108,103,102,102,98,101,94,84,102,89,115,99,92,103,113,98,108,100,80,112,106,111,95,99,101,99,102,113,96,90,98,97,102,103,87,92,108,104,98,99,93,91,98,94,97,86,95,101,92,86,115,105,108,101,101,93,94,101,102,110,94,85,97,101,100,97,108,93,99,98,130,91,97,109,100,100,104,109,111,105,95,96,72,106,101,116,108,96,97,104,101,93,88,97,98,115,113,100,132,91,94,109,107,93,101,99,73,106,93,99,104,96,98,92,88,88,92,100,103,102,94,93,96,88,109,97,103,95,95,102,98,98,100,94,95,97,103,81,94,106,88,108,97,102,103,100,106,97,96,109,98,105,104,95,93,87,99,83,100,102,92,99,107,93,94,96,97,101,105,101,100,106,101,103,116,99,113,108,91,101,103,101,105,101,85,90,89,102,103,95,104,96,105,95,97,94,94,111,106,94,95,97,105,86,92,107,95,103,105,99,102,99,111,98,94,89,92,104,90,102,107,102,104,100,95,72,106,98,82,99,102,105,97,93,89,107,80,96,113,86,99,96,112,97,103,87,96,103,105,99,102,102,102,110,102,99,102,92,94,102,97,92,103,98,102,98,108,106,113,103,100,97,91,97,110,104,98,83,110,101,103,98,102,102,97,101,108,95,87,104,91,91,97,103,117,92,108,105,101,96,101,102,90,109,110,98,103,96,100,107,102,108,108,95,107,100,104,92,110,111,87,92,108,106,105,98,90,105,108,82,100,95,97,96,101,100,89,101,94,87,100,102,86,97,87,92,108,107,91,105,79,119,92,100,99,95,108,103,95,108,96,93,101,111,106,106,95,100,98,100,96,107,94,119,76,96,99,93,98,93,101,105,111,79,94,105,97,94,90,101,103,106,94,95,96,105,102,98,97,96,102,101,95,96,104,100,105,103,97,110,108,99,95,105,94,83,96,98,90,90,89,129,101,96,98,93,122,97,111,95,99,93,102,103,100,92,109,92,91,113,98,94,91,90,101,105,97,102,94,82,99,95,91,101,94,109,106,102,88,103,100,109,89,109,102,97,100,112,111,97,97,108,103,92,97,97,106,97,94,92,97,103,88,107,98,113,99,102,94,99,101,101,115,108,107,110,98,99,111,95,106,106,102,107,88,101,99,99,90,97,102,94,95,108,95,97,95,87,98,87,107,115,108,112,103,106,113,95,97,95,109,102,106,97,117,93,107,88,138,93,89,93,92,92,104,93,95,106,110,104,102,89,102,113,104,91,94,90,101,92,78,93,96,102,107,104,104,76,100,107,86,113,110,102,107,102,93,83,92,96,92,93,102,101,108,83,95,90,93,102,102,105,101,103,96,95,103,96,95,103,110,95,95,94,107,99,105,98,99,107,96,91,92,96,99,96,97,117,104,108,100,106,91,88,106,96,97,93,104,89,101,112,121,108,92,106,103,106,103,86,97,92,98,97,107,104,97,98,106,100,103,64,105,100,104,95,92,87,98,98,103,98,104,99,91,105,94,100,106,115,88,104,101,98,100,101,108,95,101,103,92,109,95,88,106,104,90,105,109,89,104,109,94,115,97,91,87,97,90,90,98,104,96,97,96,95,102,98,107,100,101,96,92,110,91,104,101,102,114,114,97,111,108,99,89,120,103,99,104,103,99,98,114,106,105,106,117,111,86,101,102,98,101,98,101,106,101,89,83,96,92,100,92,99,104,87,117,112,112,102,94,88,102,94,100,97,91,104,91,97,97,93,96,109,98,89,106,97,104,87,89, +684.72583,104,91,96,105,104,101,78,109,83,105,107,100,104,94,100,105,105,83,109,91,99,98,91,95,99,92,103,105,88,116,73,101,104,100,104,97,119,102,87,103,87,89,99,87,86,98,98,106,115,95,101,107,83,86,107,82,100,100,108,103,103,97,111,95,106,105,100,106,101,117,105,109,100,112,96,96,82,98,98,108,96,96,107,104,108,99,99,99,108,106,105,108,105,110,101,112,100,102,91,112,101,107,112,97,111,97,101,83,96,107,105,93,108,87,97,91,108,100,81,99,96,107,104,109,86,107,107,77,115,98,90,99,103,102,103,109,91,96,105,93,112,104,101,102,93,108,105,97,99,100,90,105,105,88,100,97,89,91,96,102,100,103,110,91,112,101,106,97,115,96,85,97,88,104,102,106,100,103,114,126,97,84,101,92,94,108,95,96,96,109,107,103,90,128,108,105,94,100,96,91,100,105,96,92,111,109,101,104,88,100,112,101,98,110,106,84,91,101,97,95,96,117,97,101,98,118,90,107,100,98,103,90,95,107,113,99,104,102,105,92,87,96,105,121,117,102,101,101,95,91,102,100,88,89,96,104,102,91,97,104,93,102,98,95,95,101,110,106,103,95,113,95,102,99,103,99,111,102,107,104,103,99,100,98,91,105,102,78,104,107,106,92,97,102,87,96,99,109,99,92,92,92,110,112,98,113,99,116,103,95,105,92,104,96,100,96,99,107,99,102,92,116,111,113,106,88,101,98,103,100,108,103,100,106,105,105,105,98,109,102,100,99,98,90,101,71,96,98,107,101,105,105,102,105,104,104,102,86,104,100,116,109,108,91,93,95,84,109,94,119,116,100,101,104,99,87,104,106,97,109,104,95,107,103,99,108,102,105,101,97,103,94,100,105,95,103,93,77,112,120,102,101,107,89,91,81,97,103,112,109,85,97,100,98,103,86,106,109,111,96,91,100,96,95,104,87,105,101,99,99,92,94,106,105,97,106,104,104,95,107,96,92,98,103,80,95,90,91,100,107,99,102,99,98,107,96,115,105,116,103,93,97,99,129,115,101,99,99,105,97,100,107,102,97,98,94,103,106,98,90,82,100,101,107,104,99,95,102,104,97,117,104,103,98,97,98,100,99,94,102,110,105,107,107,100,108,91,109,99,102,103,104,100,113,98,103,108,96,114,98,97,109,90,106,92,101,111,89,101,109,91,102,113,100,97,94,110,100,106,107,92,108,105,102,103,104,99,114,97,115,101,105,101,104,82,102,85,112,96,95,106,96,101,90,102,97,92,107,97,98,96,110,101,98,102,104,104,97,95,111,107,94,105,98,92,94,99,98,101,98,101,102,99,91,112,92,96,101,113,102,106,109,104,99,102,114,100,96,99,140,102,98,95,101,102,95,100,72,111,109,109,72,95,103,120,95,95,96,102,118,102,96,99,111,86,103,104,95,99,98,96,97,95,106,95,109,101,99,96,105,112,104,102,105,102,101,103,96,105,88,104,97,101,100,97,92,106,102,102,102,92,99,76,94,90,102,95,102,104,103,99,93,89,93,97,103,104,111,99,95,106,96,108,100,94,102,107,98,110,93,120,109,98,105,94,112,106,95,95,106,93,103,101,103,99,94,101,86,101,102,99,109,102,110,105,101,112,86,108,99,102,105,88,105,92,80,107,90,109,109,104,107,106,83,103,99,103,109,108,94,104,92,98,91,103,101,106,95,104,95,110,105,97,99,101,90,102,99,94,95,110,110,121,92,101,107,102,106,87,93,100,102,110,96,104,112,102,96,98,110,109,119,104,106,102,109,113,101,77,97,97,104,102,104,108,103,102,91,97,102,107,96,114,114,114,116,95,112,91,93,111,101,103,102,99,97,94,99,81,106,96,99,102,107,102,97,110,98,100,100,103,104,104,98,98,98,109,104,116,102,101,97,89,111,96,103,115,111,99,96,104,93,104,113,96,106,98,95,110,97,101,105,103,108,110,95,104,84,100,95,107,99,101,101,113,105,94,104,100,99,111,105,116,99,102,82,106,104,111,97,104,105,114,114,95,95,100,103,104,106,100,89,95,103,98,95,87,114,105,94,98,104,112,99,99,98,97,109,95,97,100,107,128,82,104,106,98,99,102,103,107,99,106,99,102,99,104,103,98,113,102,101,100,107,90,114,112,110,103,111,118,102,104,102,98,104,92,95,105,98,100,86,106,106,99,111,100,90,105,107,98,103,94,111,103,94,89,102,105,103,100,110,113,92,106,105,99,99,92,105,95,90,117,113,106,104,108,114,88,102,91,101,99,121,100,94,115,97,108,98,109,100,104,101,111,106,105,90,110,112,104,105,116,93,74,99,106,119,115,82,103,109,96,105,105,112,99,110,72,111,97,102,87,112,118,106,104,113,94,104,109,112,103,93,97,106,113,108,94,111,100,119,95,105,87,98,97,94,101,109,96,114,94,106,102,102,102,101,98,91,118,93,96,92,99,107,96,100,113,92,99,95,107,103,94,109,98,89,106,116,97,89,109,112,99,105,95,98,113,97,96,107,100,96,104,102,105,95,98,108,102,110,105,88,104,95,94,92,108,106,99,94,100,105,108,98,99,112,100,109,117,93,113,97,92,104,100,102,107,102,102,107,109,96,102,101,121,98,104,93,104,98,112,105,87,96,110,104,113,91,96,109,90,103,102,101,112,114,96,115,100,88,102,90,89,97,112,95,104,105,104,99,105,103,107,113,105,105,102,102,106,115,110,104,109,98,97,114,103,91,106,92,87,102,97,101,101,103,104,104,100,112,99,98,101,107,104,85,96,103,100,104,111,105,99,103,99,108,95,112,111,107,105,108,96,95,96,97,95,95,96,101,134,105,107,105,105,112,99,103,94,97,103,102,107,98,103,91,114,103,110,105,102,107,100,99,109,108,101,108,102,99,109,103,95,113,99,107,101,99,101,102,112,100,103,102,103,106,98,96,101,93,102,90,93,107,103,101,113,67,103,98,101,90,96,103,111,114,103,93,110,106,110,101,110,109,108,99,109,110,92,113,113,103,101,104,98,107,98,112,122,105,108,100,88,98,101,103,96,101,95,102,105,142,103,106,105,96,122,98,107,88,108,103,94,94,109,112,102,105,97,91,100,85,105,98,95,105,98,102,89,100,103,113,81,88,103,110,110,93,98,96,95,98,97,92,104,103,106,108,99,97,104,106,111,106,99,117,95,111,106,102,92,110,91,95,91,97,106,103,120,104,98,123,95,102,101,67,101,97,103,97,101,92,93,101,104,95,118,100,112,97,97,103,99,105,112,105,95,101,112,112,113,99,104,109,98,100,97,115,80,98,111,93,95,99,103,120,108,116,96,99,106,94,108,97,94,102,106,102,91,104,94,105,100,94,104,101,102,94,89,91,116,120,94,102,105,97,108,100,85,115,96,103,75,106,109,96,120,98,103,105,103,94,105,106,117,109,101,95,105,108,122,93,101,100,107,101,106,115,104,100,102,99,106,107,109,120,100,96,105,99,87,105,98,96,117,99,109,101,109,104,101,115,112,95,91,101,106,111,99,102,113,104,113,104,107,92,102,94,98,112,103,86,102,103,108,109,95,100,95,106,97,109,108,92,103,103,102,102,93,97,98,100,106,91,94,104,99,96,96,100,95,96,106,93,103,104,101,97,100,101,107,106,105,94,113,105,113,92,106,109,87,111,87,90,101,98,102,97,97,117,95,97,101,103,97,91,101,100,105,90,107,96,92,97,108,110,104,100,100,92,102,100,103,107,109,105,110,109,87,109,105,104,102,111,110,113,100,104,111,98,105,93,109,104,100,95,94,97,98,90,103,102,97,96,107,113,113,116,106,109,102,108,100,97,102,108,91,101,90,105,106,97,96,92,107,103,85,108,87,109,106,111,94,92,106,101,112,103,101,131,108,100,98,120,97,101,116,108,94,106,106,109,106,96,94,99,95,88,117,112,91,112,97,106,98,90,98,99,106,95,100,114,87,100,93,90,113,105,116,114,103,88,101,93,95,95,98,104,108,105,95,99,102,102,105,99,103,100,105,99,104,97,99,103,119,102,103,108,107,106,92,114,97,98,101,102,94,110,87,96,101,94,106,99,98,109,108,98,87,105,95,101,114,107,100,97,98,109,96,106,102,85,81,108,104,109,117,101,105,100,106,101,113,113,93,110,96,104,102,105,102,97,108,107,98,103,100,102,102,100,112,106,96,110,94,110,93,105,98,102,98,110,101,112,100,97,92,102,100,95,102,89,100,99,117,121,90,104,96,103,95,97,102,103,84,100,92,106,108,107,124,111,83,105,100,100,98,106,103,90,112,99,101,94,109,113,111,112,99,101,119,108,88,103,111,97,94,113,103,104,113,107,90,92,109,107,98,97,96,88,98,109,107,100,102,100,105,108,103,113,98,108,104,103,93,101,98,101,106,100,89,100,91,98,101,98,94,107,102,102,92,102,102,99,100,110,105,109,87,93,84,103,100,109,114,106,106,105,110,89,115,104,110,109,110,103,108,98,104,104,103,86,111,107,108,95,99,104,106,109,110,94,113,101,108,94,96,108,95,91,95,104,104,101,101,104,102,106,104,60,89,106,84,99,110,96,100,102,99,103,99,106,101,94,104,100,100,95,107,89,92,111,104,105,97,100,72,103,106,104,95,87,107,99,112,102,104,104,103,114,97,115,92,108,95,97,107,97,98,121,104,98,98,114,113,106,100,93,111,100,92,96,87,105,94,106,104,94,94,94,111,103,99,105,102,107,101,95,107,122,100,104,105,101,95,100,90,100,111,91,97,91,108,110,92,101,90,114,96,99,96,107,109,108,97,116,91,98,91,92,91,103,98,120,76,113,102,98,100,95,97,104,106,97,99,103,109,101, +684.86713,101,94,91,107,110,96,95,99,100,94,97,97,116,97,94,94,96,109,99,97,109,87,106,101,104,113,91,106,97,103,100,105,101,101,109,98,103,103,101,87,97,97,77,110,101,118,120,97,106,65,96,104,95,98,97,105,100,92,105,99,94,102,95,101,87,113,90,100,97,95,100,97,103,102,95,88,99,101,100,118,100,111,105,99,99,79,91,100,117,101,100,98,101,108,90,97,97,99,88,98,94,105,102,101,110,104,95,91,95,104,103,83,99,95,108,90,109,88,102,95,101,100,100,96,109,112,102,103,106,91,100,104,98,101,91,96,100,87,89,87,99,110,96,98,102,103,95,96,99,91,101,102,100,110,93,99,103,95,98,107,106,96,96,109,103,102,98,101,102,101,113,95,101,102,85,84,99,106,100,112,87,97,106,97,104,94,89,92,118,105,108,110,96,105,98,99,98,101,96,102,98,93,103,102,96,109,110,87,115,112,98,104,83,109,98,95,98,91,89,107,99,122,109,102,101,100,99,110,105,100,88,102,114,100,119,106,88,101,99,113,103,98,107,109,98,96,109,99,97,98,96,106,101,93,103,100,97,106,98,108,90,74,99,93,91,95,103,100,81,99,99,99,102,102,106,103,96,102,98,90,102,105,116,98,106,100,98,82,94,99,99,92,104,101,100,88,104,94,88,93,100,99,96,104,93,96,106,88,100,115,94,109,93,102,102,99,100,97,107,84,83,87,99,84,94,92,96,96,107,105,87,105,106,98,101,102,91,103,79,101,93,105,98,91,100,104,101,95,104,103,101,101,95,98,122,91,109,96,103,102,110,93,89,90,93,96,79,102,95,110,99,102,97,92,105,103,98,99,99,111,106,107,121,103,103,101,91,89,98,86,105,96,91,101,93,105,86,106,101,101,112,102,95,90,102,101,94,88,101,90,99,87,95,99,95,95,92,101,98,99,106,99,93,100,109,97,96,93,96,114,91,107,94,99,92,95,107,82,89,110,95,95,88,101,101,100,99,113,104,98,102,100,108,106,93,117,100,105,96,106,94,101,100,97,110,111,100,99,102,95,99,107,99,93,101,99,106,120,107,118,93,103,98,103,101,101,99,96,98,105,102,89,98,103,105,99,109,97,104,111,117,102,110,110,101,123,89,95,98,113,102,101,105,95,102,94,100,99,85,91,91,108,88,106,93,101,107,102,99,108,99,102,91,82,103,89,100,88,96,95,101,99,95,88,108,97,100,83,102,87,92,114,95,103,107,81,96,102,91,101,100,96,94,114,96,96,99,91,105,96,90,90,102,105,99,84,91,104,94,109,107,97,100,95,99,96,118,109,99,98,91,102,103,120,100,116,95,105,103,95,91,108,103,103,85,98,86,107,100,110,93,104,105,99,101,99,99,103,102,90,97,92,91,100,97,96,96,95,100,92,94,99,118,103,96,103,91,98,87,100,101,98,97,101,87,91,105,97,114,108,117,106,115,91,101,96,94,98,116,101,100,96,86,94,99,110,103,99,101,97,117,96,91,99,89,109,109,103,104,101,112,96,90,98,96,98,109,65,93,103,104,93,82,99,104,94,97,106,107,91,105,101,90,82,102,91,98,103,99,109,95,116,95,94,102,99,98,90,99,103,102,93,102,109,90,97,101,110,98,113,84,97,102,117,91,108,95,89,107,98,97,94,102,101,96,98,101,103,99,108,102,94,95,101,91,99,92,99,97,96,94,113,77,98,93,104,91,101,100,105,111,100,123,109,95,100,101,105,89,105,101,101,93,99,88,107,96,122,120,101,96,115,101,106,90,101,107,101,97,99,108,97,109,97,105,93,102,94,91,106,108,97,96,95,94,97,101,106,125,87,106,108,100,101,99,101,102,107,108,92,119,91,105,95,84,102,98,91,110,106,92,96,104,95,91,104,97,94,91,87,100,91,103,89,93,96,89,100,94,94,99,95,83,110,114,101,96,102,102,91,99,124,88,119,105,71,101,96,106,100,99,102,100,109,102,102,101,103,106,95,110,94,102,95,82,102,96,103,87,95,96,102,108,96,99,96,83,126,98,98,99,96,99,107,96,100,100,100,103,94,91,102,106,94,110,93,97,104,100,110,94,103,101,95,88,94,102,102,103,105,107,91,112,93,109,92,96,101,93,104,102,101,93,90,108,102,101,65,107,94,100,105,92,102,99,89,101,99,108,84,96,101,102,96,92,110,89,96,81,100,101,87,101,91,92,88,95,96,100,118,117,103,97,115,98,91,102,99,102,95,119,104,103,100,101,102,102,93,94,101,108,105,109,103,103,99,101,90,95,102,77,97,108,94,114,91,95,93,103,103,102,95,100,98,108,90,118,107,101,87,94,111,107,105,96,113,98,100,105,107,106,106,94,105,88,94,107,96,97,68,98,110,101,118,99,97,105,105,104,106,91,112,103,94,104,96,106,95,110,92,95,92,103,111,107,107,113,95,99,107,101,102,111,85,98,101,103,106,112,96,107,98,105,97,105,102,113,96,96,97,113,121,112,73,100,108,93,108,97,104,90,108,96,100,117,104,112,124,88,101,98,110,83,91,92,101,98,123,106,105,116,109,97,119,95,101,106,95,102,97,106,100,110,104,93,103,105,102,98,102,99,98,103,92,98,95,99,98,103,108,102,116,104,110,93,98,106,101,103,103,103,85,93,94,93,79,116,105,106,114,106,98,98,109,101,95,109,101,103,103,109,109,103,96,105,105,99,102,95,91,109,93,95,109,98,95,102,114,74,115,104,97,98,95,109,122,93,99,90,97,93,106,102,100,97,90,123,105,95,116,100,112,85,72,101,108,102,103,104,122,110,103,100,93,104,113,105,109,96,109,109,105,107,98,102,116,101,112,101,128,100,105,105,106,92,107,103,105,101,104,96,104,113,113,108,111,87,111,104,105,105,123,104,105,92,118,103,102,98,103,106,109,93,109,113,96,111,101,97,99,102,101,96,112,99,107,97,108,110,97,96,94,116,108,94,98,106,96,109,88,113,96,104,100,111,102,86,103,113,96,103,102,106,94,106,84,109,88,95,102,109,115,98,102,104,99,101,102,121,98,104,105,108,103,105,93,108,91,111,101,103,101,106,107,108,91,103,109,99,80,109,84,106,106,106,104,117,93,106,109,94,92,95,121,104,103,96,102,110,110,108,99,96,97,112,103,101,107,97,101,90,98,97,92,98,84,97,93,106,119,110,103,105,114,106,109,100,104,114,109,106,99,102,110,113,109,112,110,94,106,90,101,112,97,101,95,102,89,82,95,98,94,117,108,103,104,99,93,109,95,100,102,108,102,99,95,97,106,80,97,96,102,103,95,94,94,130,110,97,101,98,95,98,114,115,104,93,115,95,95,107,106,75,116,110,100,106,110,104,98,98,96,102,114,92,101,112,83,89,100,99,108,109,107,105,97,103,105,89,110,99,81,96,104,104,100,105,97,103,92,106,75,98,105,89,101,111,108,107,113,112,103,111,111,111,107,112,101,99,97,98,110,122,81,94,87,113,103,99,104,103,99,116,103,97,113,107,93,104,102,106,103,95,105,95,102,97,103,99,99,92,104,94,98,106,100,109,95,102,110,99,102,116,103,92,96,91,97,98,99,88,95,112,120,96,104,118,105,82,91,95,111,113,98,101,103,105,93,118,93,102,102,101,85,93,98,104,107,103,107,110,105,111,109,107,96,124,96,106,98,97,103,105,93,110,101,96,104,96,108,95,105,104,100,94,104,102,107,105,107,111,95,117,110,98,101,112,112,116,98,105,98,101,104,96,111,101,103,102,100,100,95,108,108,106,91,107,95,112,97,98,100,100,113,93,91,99,100,104,103,128,112,105,102,97,101,100,95,94,99,98,107,92,98,85,98,109,85,99,108,100,105,93,105,98,99,106,88,101,105,87,102,100,96,66,101,106,114,125,104,105,117,102,115,110,109,122,104,101,87,102,115,89,106,104,98,96,96,99,102,114,103,102,100,110,107,95,106,96,108,112,112,117,99,102,94,111,104,105,99,111,104,105,111,105,106,101,92,95,111,102,96,105,100,92,101,99,102,107,94,100,104,112,107,114,98,96,101,93,100,107,112,98,104,93,117,94,111,103,100,91,98,109,104,104,110,96,101,102,115,104,102,113,101,94,91,106,98,91,100,99,92,100,95,104,97,93,106,100,99,101,102,94,105,100,111,104,100,90,113,112,99,107,91,106,106,110,90,90,91,92,109,108,108,103,100,99,87,116,96,100,110,104,96,117,101,98,100,99,109,105,121,109,111,101,102,115,104,97,107,99,103,104,102,106,109,99,101,85,116,103,94,111,104,106,101,99,107,100,109,101,98,110,101,98,98,107,116,109,105,89,108,98,107,98,106,103,117,112,91,96,97,101,120,98,113,109,95,110,98,122,93,94,104,84,97,92,102,104,108,98,109,120,115,92,93,91,96,108,111,114,91,103,95,106,92,103,102,101,97,96,113,101,113,102,90,112,94,105,99,103,99,106,102,99,94,100,119,103,104,91,99,106,89,98,107,103,104,117,97,105,106,102,98,111,110,110,116,85,100,95,109,110,106,114,100,102,96,102,99,91,88,90,100,94,121,108,120,107,100,102,108,105,97,102,94,114,101,105,88,92,101,120,101,108,87,105,100,102,113,103,91,105,103,86,99,107,114,99,100,100,100,108,100,108,97,103,95,98,99,107,93,102,104,100,97,93,95,103,103,99,102,106,105,102,112,105,110,105,103,105,107,105,98,101,97,101,110,110,95,91,111,96,99,114,116,86,103,103,100,102,98,98,98,113,93,97,94,102,109,101,111,100,107,91,109,105,103,108,102,102,99,108,107,94,117,94,102,105,101,115,100,101,98,100,117,106,109,101,84, +685.00842,107,97,94,96,99,93,105,81,99,97,101,110,87,99,107,97,89,109,108,93,112,107,107,93,103,98,109,104,94,87,104,96,98,91,114,92,113,105,96,92,108,104,89,87,97,114,95,103,100,80,97,93,73,102,105,101,93,103,94,96,61,100,97,80,95,99,101,102,108,100,107,104,98,99,102,109,95,109,106,91,109,98,112,102,109,89,96,96,102,89,101,107,96,98,96,94,94,85,112,91,93,101,87,100,92,109,100,97,86,97,92,96,99,104,95,99,90,111,105,96,114,104,97,117,105,101,111,88,99,107,98,100,85,95,109,100,103,102,104,96,94,117,105,94,96,110,91,92,108,98,95,100,96,97,86,96,93,92,101,97,91,111,94,108,109,104,102,95,107,94,96,96,98,109,101,102,98,104,102,102,99,102,97,110,98,95,96,77,107,88,101,95,90,102,97,100,86,98,111,99,95,104,94,114,89,100,96,90,113,103,91,101,101,99,102,98,91,99,91,97,102,120,99,93,101,98,95,99,110,102,99,109,92,95,108,99,105,113,88,98,97,93,97,88,93,90,95,108,101,104,109,99,91,95,102,115,93,120,88,101,92,98,97,92,96,108,107,98,105,96,88,100,114,108,100,101,96,110,91,101,100,92,91,102,99,93,97,110,99,100,97,95,105,107,100,107,107,96,91,90,93,94,106,105,99,101,96,99,104,101,84,105,91,97,97,93,99,104,105,94,94,94,96,93,82,101,93,98,104,102,110,104,95,101,105,101,101,101,95,101,98,104,90,99,93,87,102,99,95,108,107,107,101,97,103,106,99,102,94,82,97,104,90,104,95,100,94,108,101,108,94,97,99,97,104,105,79,101,104,96,99,116,85,112,100,90,97,92,97,85,81,98,106,99,101,72,105,107,99,111,94,120,101,113,96,92,105,99,98,96,111,96,94,85,109,99,105,95,113,90,103,110,98,96,106,101,97,111,99,104,94,103,98,93,96,101,102,105,97,100,98,86,102,112,94,96,87,108,97,108,94,110,108,98,97,98,87,99,81,103,93,95,95,88,100,100,100,105,92,99,114,96,91,107,102,91,92,105,102,113,107,98,105,101,106,97,108,106,95,83,97,102,104,110,111,114,98,104,86,91,101,89,108,99,94,94,100,91,95,103,103,98,99,103,110,85,109,94,93,91,108,96,106,106,106,100,96,109,105,101,67,114,96,97,100,103,98,95,95,101,102,98,92,102,104,94,100,91,104,101,92,101,107,90,91,99,112,105,106,96,74,99,101,106,94,100,94,104,92,106,101,98,100,105,103,101,94,97,97,100,101,107,105,91,106,94,108,107,96,98,104,98,113,100,97,111,94,100,95,87,105,101,102,96,97,102,106,106,111,95,105,98,97,104,91,93,98,109,102,105,97,101,109,91,99,95,100,118,91,98,106,82,96,96,94,109,106,96,96,90,98,109,108,93,100,87,104,112,103,112,90,85,91,95,103,109,97,97,96,94,107,104,104,83,124,85,105,87,103,90,106,95,102,95,93,93,96,93,99,73,119,95,105,88,92,108,102,95,96,103,98,98,93,110,103,102,101,98,93,99,110,92,94,97,106,106,106,105,89,97,115,96,96,99,93,89,93,98,112,99,91,91,98,109,93,95,94,98,109,117,94,100,110,83,102,97,104,83,100,96,98,91,102,96,88,112,92,95,94,110,117,101,98,92,97,108,114,109,98,92,102,100,116,99,91,118,91,100,110,112,113,98,100,110,108,111,109,99,100,99,102,99,99,98,99,98,98,105,99,109,116,97,102,101,90,92,92,95,91,96,89,90,106,94,102,114,93,100,59,102,115,106,98,95,126,110,111,87,89,89,104,104,107,105,101,103,97,101,92,102,114,96,95,109,98,100,94,79,101,97,91,98,117,99,109,90,99,107,96,86,97,92,100,96,98,104,101,103,99,101,90,96,98,92,118,87,98,103,107,91,107,104,93,114,99,100,102,85,103,99,104,108,92,91,101,92,91,94,101,101,104,96,98,100,98,65,102,98,100,99,99,101,102,106,105,79,94,91,93,94,114,100,101,101,110,87,100,106,105,90,99,93,101,92,99,103,96,93,107,104,102,96,98,102,89,105,90,91,99,89,101,96,110,104,107,95,99,104,101,109,102,107,106,112,106,102,106,111,81,99,102,107,103,106,113,90,91,96,89,102,101,101,106,98,100,91,66,90,73,99,103,97,87,83,92,110,100,106,113,108,106,105,109,97,90,96,103,105,97,105,100,98,99,93,103,101,97,125,99,113,95,99,96,96,102,99,104,88,94,110,99,110,113,88,99,107,100,101,89,86,101,99,102,101,102,83,102,105,105,95,100,105,114,108,97,98,101,102,106,105,100,98,121,98,102,106,94,96,117,126,101,103,96,108,99,107,95,102,98,99,102,108,104,104,108,110,100,95,72,93,102,96,95,99,107,109,105,99,108,114,85,103,95,98,96,113,102,105,108,94,92,84,104,101,113,108,91,92,94,111,99,107,93,96,104,97,92,91,94,104,116,101,102,93,109,102,92,101,101,102,106,107,108,109,103,96,95,106,102,102,105,102,98,97,102,105,107,96,117,109,97,103,106,115,98,102,109,106,93,98,106,101,105,79,106,108,106,101,106,88,95,94,99,99,91,105,95,90,101,96,91,134,100,120,103,107,103,102,116,108,95,105,98,112,98,99,106,111,98,104,99,93,100,101,100,109,115,100,87,99,102,106,102,106,112,109,119,97,93,92,103,102,103,105,104,123,104,100,103,102,98,103,92,110,95,104,101,103,102,103,97,94,109,78,96,74,103,113,104,98,98,105,104,106,105,104,102,111,96,108,121,104,108,104,116,97,92,102,104,104,106,99,104,102,104,101,115,100,99,108,110,100,105,109,102,100,101,110,104,107,102,104,101,89,100,100,107,96,105,99,100,105,100,110,96,86,111,110,91,102,100,100,99,98,115,112,103,97,98,104,101,98,97,110,106,108,117,109,105,103,125,102,94,104,102,101,121,96,97,106,94,96,120,97,112,107,105,112,103,107,96,101,103,113,100,103,118,99,97,92,110,107,101,102,107,98,108,98,100,91,104,104,84,104,94,112,97,98,101,101,91,95,101,95,111,98,77,111,98,99,102,95,103,105,113,93,100,107,105,107,95,105,93,105,107,108,117,88,99,107,103,100,102,102,105,94,96,101,106,97,102,99,109,99,112,107,107,104,102,96,106,106,106,117,112,105,105,116,96,101,96,100,112,98,103,100,101,103,107,106,96,96,104,97,104,101,94,119,103,100,110,118,100,104,98,112,83,91,112,97,94,98,104,92,93,99,101,92,106,95,97,101,117,114,91,96,102,103,95,106,115,102,113,108,95,105,113,88,107,98,100,103,96,104,112,103,100,103,111,95,103,101,113,108,113,103,109,106,104,99,112,100,93,110,101,98,117,107,108,96,105,103,100,107,97,98,104,103,109,105,99,106,105,115,105,107,93,103,87,113,107,107,102,107,83,102,106,119,100,103,104,102,96,106,95,107,100,100,98,109,108,79,96,98,105,103,96,105,113,99,90,99,105,104,100,96,106,96,99,97,99,103,97,97,118,104,108,101,105,99,94,104,102,101,98,100,113,98,111,128,106,110,103,113,91,104,92,107,107,112,106,103,97,98,96,106,102,96,105,95,95,104,107,104,99,105,108,78,114,96,111,108,104,104,119,123,99,103,105,102,105,100,104,95,93,97,114,105,94,106,118,116,109,98,109,101,108,99,106,101,95,104,96,113,97,101,95,98,99,99,116,84,101,96,105,102,95,107,99,101,102,112,105,101,104,105,98,93,110,99,103,96,105,102,106,108,91,103,92,104,94,101,105,91,101,94,104,100,106,95,102,101,96,113,97,105,91,100,96,100,100,99,103,99,99,92,108,99,88,99,98,111,95,101,109,110,87,95,104,98,106,106,117,99,96,90,98,98,91,92,95,112,102,102,114,91,96,117,112,104,112,102,116,106,111,88,107,93,113,102,102,108,100,108,113,106,107,97,109,99,107,108,98,103,100,123,98,99,92,96,108,106,105,92,96,110,100,87,94,84,112,94,93,118,101,115,109,101,110,95,107,94,103,108,99,97,90,104,91,100,105,94,97,86,105,107,106,105,89,101,119,97,98,95,101,101,104,106,90,114,97,99,98,99,84,115,98,96,117,117,113,91,98,106,109,95,102,98,111,92,102,113,106,106,101,95,102,101,109,102,106,95,95,98,99,92,104,97,108,106,98,130,100,99,97,97,112,99,78,99,109,105,108,101,110,100,102,105,108,107,112,106,98,108,96,95,104,104,105,118,96,104,104,114,105,105,100,115,114,90,105,102,108,108,94,93,105,115,106,99,95,90,95,115,108,110,95,106,96,80,104,112,102,99,94,97,84,93,101,101,117,94,98,98,107,91,97,101,103,109,114,102,98,102,110,115,102,117,105,94,103,99,104,104,102,102,110,114,96,100,123,102,98,106,95,89,109,101,103,110,109,101,97,96,109,111,106,122,100,99,99,108,106,105,105,101,110,101,94,103,105,95,95,115,98,111,105,103,102,100,103,107,99,99,120,96,91,101,122,95,103,94,92,101,89,86,102,98,98,88,100,100,102,108,114,116,111,105,100,81,90,94,103,110,113,100,91,114,95,98,100,94,100,97,117,99,92,100,93,104,105,102,99,98,98,95,104,103,102,92,105,102,97,106,114,89,109,107,92,102,113,105,105,104,92,100,113,101,108,101,97,111,107,110,104,104,73,94,105,113,117,110,104,100,114,95,98,105,109,96,102,89,105,108,85,106,99,103,110,113,93,94,102,103,98,103,113,117,98,87,102,88,103,95,106,96,114,119,92,92, +685.14972,102,96,90,108,92,106,105,94,98,109,100,105,97,93,103,102,85,105,105,108,102,98,96,109,113,101,95,114,103,98,110,99,104,94,109,99,94,98,97,108,97,103,101,101,93,98,112,106,90,93,110,102,95,108,102,107,94,113,111,88,87,95,102,83,94,87,92,105,100,79,106,101,99,100,94,107,96,104,109,99,104,96,103,103,98,100,99,95,87,99,92,107,101,101,114,92,101,91,99,96,102,104,105,97,104,112,95,100,99,99,101,100,95,111,102,104,119,97,91,97,88,92,91,100,97,107,117,99,106,98,110,106,89,104,105,86,101,109,102,95,98,99,99,105,104,108,109,96,96,108,93,101,92,96,95,97,98,89,93,97,96,93,98,100,94,110,117,110,105,103,89,95,81,98,93,106,106,97,99,93,96,96,100,110,103,103,100,100,97,85,86,97,97,99,98,88,92,100,105,104,95,105,108,100,95,109,97,100,114,96,94,110,89,99,100,92,96,100,89,96,101,107,95,102,90,86,99,100,90,99,87,103,100,105,106,106,104,95,103,98,99,99,131,96,100,91,95,101,96,92,94,112,109,84,98,102,96,100,91,99,91,98,100,96,104,98,107,94,105,102,110,101,98,95,100,99,101,97,99,104,101,101,95,105,107,90,98,106,87,88,104,88,87,96,106,104,100,108,98,106,100,105,93,101,92,98,104,97,113,100,94,102,90,100,107,98,102,93,101,97,97,92,95,101,94,94,96,85,112,112,120,99,107,102,114,112,102,78,107,100,92,104,97,99,97,107,93,98,116,94,103,96,103,101,96,98,105,109,102,110,108,110,81,100,98,102,103,102,98,115,104,103,105,92,98,105,100,86,93,108,108,94,96,98,106,119,103,100,96,93,91,102,95,125,107,95,104,92,93,109,87,113,90,91,107,105,100,106,100,92,101,98,101,100,108,85,100,95,108,91,100,99,94,108,106,103,96,102,97,123,105,105,106,94,102,115,101,99,88,104,116,103,105,93,95,100,97,93,100,91,98,100,87,101,97,105,97,95,93,109,98,91,97,86,96,105,99,104,98,105,104,111,107,102,94,94,107,102,103,103,104,99,103,100,94,95,110,106,87,104,106,106,95,102,95,90,121,116,97,98,100,100,107,109,86,113,95,108,100,110,87,91,98,96,122,102,99,92,106,104,110,94,96,103,96,96,110,101,94,95,95,108,123,109,108,99,76,107,101,109,82,105,92,99,107,91,106,101,112,106,102,94,103,92,101,99,101,80,103,95,97,103,103,96,102,101,106,91,110,106,93,93,97,108,100,89,97,99,102,111,105,97,90,100,85,90,110,104,95,92,110,104,106,97,107,109,95,102,98,113,96,105,108,99,96,98,99,95,100,110,107,105,101,105,95,109,91,110,97,100,98,106,95,94,107,101,91,102,102,99,100,105,97,106,99,100,90,88,114,90,90,98,105,97,90,99,98,94,91,79,94,112,97,99,96,94,98,115,98,106,109,94,103,93,93,93,98,95,119,105,104,105,101,105,116,93,98,105,100,110,101,98,99,86,100,98,89,106,100,90,87,101,104,99,93,92,113,94,105,79,100,81,97,89,103,123,110,98,108,82,101,105,100,94,97,99,85,96,110,99,104,100,116,101,96,103,90,111,105,104,102,92,103,100,102,95,106,87,103,90,103,97,108,98,122,97,114,96,92,104,108,107,96,101,105,96,104,105,87,98,96,106,89,101,100,92,87,101,93,100,113,103,104,98,97,106,100,96,100,96,98,106,102,98,90,107,105,109,106,101,97,103,102,94,97,110,106,81,88,105,85,100,100,91,101,105,86,84,102,102,108,96,91,106,90,97,105,115,103,101,99,111,101,116,101,101,102,111,110,91,115,91,103,109,109,102,101,100,105,107,100,92,106,100,96,96,100,97,102,88,121,91,92,97,138,90,100,81,96,104,94,110,83,104,104,101,92,102,99,96,97,98,78,117,105,107,104,94,105,101,97,111,99,96,102,90,97,94,95,92,105,95,100,103,94,97,103,117,95,99,98,107,96,104,80,86,89,104,104,100,103,90,107,100,97,94,91,105,102,95,96,105,112,102,105,94,99,96,99,92,94,112,121,104,105,107,101,88,102,90,103,103,107,97,90,91,98,95,97,100,102,90,105,102,99,97,99,104,101,107,96,102,95,105,101,97,90,96,101,102,97,103,102,82,95,118,106,103,98,88,107,109,109,98,103,93,104,96,98,92,97,83,90,97,113,71,102,105,103,103,105,90,100,91,100,100,95,98,99,103,99,99,96,99,77,109,105,105,100,97,106,101,90,91,108,106,98,102,93,89,95,97,98,99,111,98,105,118,92,96,83,103,102,108,88,79,86,99,95,103,110,105,90,110,83,109,89,104,103,99,91,100,94,83,97,105,108,126,103,111,99,101,123,96,109,109,94,101,100,95,96,95,84,104,85,106,92,102,102,103,102,99,102,92,89,103,93,102,113,93,89,94,104,111,99,108,96,104,96,99,93,110,96,112,102,95,110,101,105,83,105,106,112,103,117,97,105,107,103,101,100,111,97,106,96,99,105,93,102,95,93,91,96,107,98,109,103,109,92,90,100,93,109,103,99,112,106,106,102,100,95,106,99,97,102,106,91,105,105,97,104,99,103,109,97,108,118,95,103,104,109,120,101,86,117,113,101,98,123,104,111,100,104,113,77,104,99,94,104,97,103,99,97,108,100,95,103,106,98,91,95,87,94,89,100,87,102,105,96,98,96,100,93,93,104,102,98,98,106,114,105,102,100,101,96,98,98,98,105,107,96,97,105,103,104,100,105,102,101,103,127,104,117,101,98,103,104,100,105,99,69,97,101,102,114,106,98,101,99,102,112,108,107,111,96,102,107,103,75,110,101,102,103,105,109,106,97,109,93,103,92,81,98,100,88,111,102,103,100,102,105,99,101,120,104,100,102,107,106,91,102,102,99,87,107,104,88,94,97,102,103,102,100,103,103,94,112,108,142,101,101,102,107,113,100,109,109,114,100,98,94,106,119,96,100,99,104,90,97,113,94,107,110,99,101,105,106,97,100,113,120,109,98,100,68,113,111,104,81,97,103,98,109,111,108,106,98,102,107,102,99,90,97,100,106,109,106,95,107,99,91,102,107,102,115,100,101,102,109,96,106,101,101,102,94,111,106,85,103,104,103,110,98,99,100,98,104,109,104,102,108,99,104,100,92,97,110,100,99,105,99,113,106,104,119,98,100,119,98,96,87,95,95,103,106,109,104,96,100,91,97,104,108,103,96,95,100,100,97,103,77,97,91,112,104,91,107,95,101,107,90,107,94,98,117,101,101,105,96,98,100,100,97,101,97,102,101,106,111,103,96,94,101,100,103,117,91,105,104,101,96,107,81,98,97,96,105,114,101,108,105,103,108,96,106,104,90,117,101,93,106,100,104,104,91,101,98,101,93,93,105,85,108,96,97,108,115,124,115,96,94,113,102,76,110,101,105,98,109,69,103,103,101,103,103,104,112,125,94,114,101,102,105,109,97,105,98,105,88,100,105,94,100,109,99,108,100,114,106,95,87,99,95,102,97,100,106,93,110,96,86,104,98,97,93,101,97,100,95,104,105,113,91,100,103,98,89,108,98,92,99,87,95,103,105,103,95,106,100,99,95,105,110,110,109,91,91,100,102,93,96,91,98,102,112,92,97,111,92,97,97,97,106,94,110,104,93,111,104,95,100,97,93,96,75,95,99,96,90,112,94,106,109,107,95,98,101,98,106,98,107,105,106,118,107,100,109,105,104,105,101,101,109,102,88,136,92,101,88,98,94,96,110,110,99,76,106,91,105,96,110,105,110,111,95,108,109,108,92,99,96,111,111,108,104,108,100,94,99,110,98,90,98,102,96,103,108,103,87,91,102,108,103,104,97,99,99,99,96,93,100,117,93,108,103,99,106,100,101,110,108,99,98,100,101,107,98,108,102,107,104,102,102,100,117,97,112,117,96,106,99,94,110,93,112,108,106,99,98,92,110,102,106,101,117,106,109,99,119,100,113,105,91,103,100,105,102,94,116,80,112,112,96,119,108,108,100,106,93,103,86,91,104,96,101,99,112,101,100,110,104,111,98,114,112,106,106,113,100,107,104,90,109,92,109,108,110,102,112,97,106,101,106,111,103,97,93,107,101,97,108,102,101,103,102,96,95,98,109,97,140,113,99,97,97,106,101,121,96,96,101,92,86,112,83,108,100,99,112,99,107,111,118,101,94,101,102,97,95,98,100,94,108,101,96,91,97,103,102,116,108,100,96,106,97,90,99,94,111,95,93,101,103,108,111,91,96,100,93,98,112,105,105,96,104,95,97,104,98,101,102,101,115,115,105,102,94,95,95,100,113,92,98,93,91,108,102,102,98,108,103,95,94,105,92,106,101,91,101,107,102,103,101,104,77,95,98,97,100,105,97,99,100,96,117,101,108,105,105,112,99,98,102,117,115,96,81,99,88,95,97,97,107,107,95,97,99,97,105,109,87,98,103,113,116,103,100,102,101,81,97,106,92,92,93,105,102,99,95,103,96,94,98,102,100,94,110,89,89,110,103,96,102,97,102,97,97,97,109,106,99,100,109,97,104,95,106,105,93,97,98,84,92,91,110,112,99,97,100,96,110,102,96,106,101,107,105,106,127,92,96,89,97,104,94,102,106,102,120,101,95,99,107,103,100,102,88,93,100,111,100,102,101,120,92,106,101,87,93,96,102,105,100,111,98,114,89,91,88,96,80,88,100,92,100,100,95,96,100,97,105,106,101,101,105,98,94,109,105,106,100,90,92,106,91,105,97,89,97,100,100,116,98,103,106,117,108,89,108,82,101,73,95,89,111,94,115,104,107,90, +685.29102,111,97,104,104,116,97,105,103,67,95,98,98,96,106,104,101,93,93,110,90,101,110,93,115,109,84,96,101,82,88,98,100,101,92,105,107,98,96,119,118,112,114,109,97,95,102,95,101,96,113,84,94,98,97,93,89,99,100,105,88,106,84,90,96,106,104,110,99,110,100,97,108,96,103,96,108,111,93,67,104,113,98,89,106,112,111,100,114,96,96,91,109,97,90,96,97,93,114,107,98,97,90,101,97,105,103,100,98,100,84,103,101,101,122,102,105,94,100,104,98,87,100,121,95,100,115,108,110,88,106,98,104,94,94,98,105,126,100,90,100,105,98,98,82,102,99,96,99,87,91,100,105,99,94,91,101,90,91,103,103,103,94,95,106,94,106,88,99,91,102,95,116,89,103,99,98,94,103,104,117,97,107,91,109,103,108,88,108,100,93,98,104,100,97,83,108,101,117,94,124,95,105,117,102,102,99,98,110,100,79,81,97,105,98,100,104,101,106,95,95,96,104,105,98,98,98,106,117,107,105,92,102,98,93,119,104,100,106,91,93,102,97,118,101,98,92,110,104,94,101,89,103,98,93,95,97,105,94,100,107,115,107,101,100,92,91,97,102,102,93,99,106,86,101,113,105,98,94,98,84,107,105,99,101,102,92,85,98,94,120,104,103,96,96,112,102,109,111,87,94,109,95,91,108,91,97,109,101,109,84,89,114,98,98,101,100,99,100,111,90,103,98,95,99,105,95,103,98,98,91,106,109,107,101,122,107,111,99,86,102,104,100,100,96,118,101,104,109,105,99,101,100,107,108,116,96,102,97,110,109,97,89,92,100,102,103,100,94,114,111,97,95,100,106,109,95,98,104,102,85,100,102,96,105,96,100,108,98,102,97,110,100,89,108,95,97,92,100,106,102,109,93,102,89,92,90,102,96,103,99,99,87,102,97,99,77,105,98,94,87,109,82,92,116,101,106,92,96,95,114,94,96,102,108,105,95,83,100,95,97,117,86,97,107,102,96,97,93,108,90,112,99,95,94,88,102,92,99,102,96,96,101,115,95,101,106,100,104,109,103,103,95,91,100,112,97,85,109,111,99,99,105,106,98,93,106,105,103,96,97,117,105,112,89,90,112,85,104,104,97,105,95,104,93,103,105,107,114,128,94,96,106,87,84,88,107,90,99,99,91,100,105,107,103,100,101,101,83,94,104,101,99,103,97,108,105,105,92,110,98,101,119,100,76,111,100,94,93,94,110,125,106,97,91,96,100,101,98,103,101,100,100,100,89,94,105,95,105,103,101,100,99,103,126,95,86,107,106,94,103,99,105,93,92,105,100,104,102,109,101,104,113,93,106,101,112,93,118,104,99,105,100,101,97,76,98,99,103,89,102,108,99,102,106,105,94,104,93,102,92,90,99,110,94,75,95,106,97,95,98,108,113,105,101,98,91,100,109,97,83,98,101,98,103,100,91,91,101,95,97,95,109,116,100,87,113,98,106,94,111,106,94,100,104,81,101,111,102,96,94,100,66,100,90,97,98,88,95,107,101,113,102,108,93,91,99,90,98,91,110,93,99,97,107,102,104,108,105,112,90,95,103,94,82,88,100,104,101,96,88,103,100,81,96,91,105,96,105,100,81,93,93,95,97,95,105,95,101,98,111,105,110,97,113,84,100,118,103,101,89,106,94,103,116,103,98,109,106,99,98,101,90,106,93,95,101,105,102,100,90,101,104,90,87,102,95,94,109,112,98,107,95,98,97,103,100,104,96,102,106,95,109,97,106,105,102,103,85,104,94,103,107,97,100,75,96,104,99,96,96,101,112,102,108,109,99,104,118,102,91,113,103,103,105,102,109,110,91,104,98,92,108,99,100,96,109,102,102,101,98,101,95,115,98,86,100,96,83,106,98,103,110,99,103,105,108,97,91,98,105,98,100,109,106,99,106,92,93,105,104,104,94,114,96,106,84,96,107,99,118,87,103,86,99,100,106,99,91,96,94,112,94,100,96,98,97,99,102,104,95,94,104,107,87,99,98,96,99,89,111,108,88,105,88,111,106,96,101,96,95,95,94,107,96,94,95,98,110,95,95,107,98,107,95,101,102,85,98,105,103,108,100,92,106,84,94,107,105,94,97,101,88,106,103,90,100,118,105,103,95,101,103,99,102,120,96,99,75,102,89,114,117,112,101,88,91,96,96,102,105,92,93,98,90,91,94,103,97,105,109,131,102,105,105,97,90,102,97,109,101,98,98,91,100,98,107,104,95,97,94,90,106,97,111,104,104,94,99,113,108,86,95,91,102,101,96,97,100,91,99,119,104,99,83,92,106,92,98,88,91,100,92,100,104,120,95,100,105,104,122,89,109,102,112,98,112,98,92,97,106,85,108,103,104,95,117,101,96,87,98,88,120,98,104,99,99,109,104,107,84,102,107,108,103,88,94,96,91,102,99,108,90,99,101,98,94,99,99,80,105,120,115,104,106,100,102,106,81,102,90,104,93,99,97,94,103,101,90,106,106,103,97,111,91,106,98,105,104,106,76,112,104,125,92,88,105,97,111,109,99,90,121,92,99,103,109,108,97,109,85,98,104,99,109,109,95,102,100,106,99,103,104,112,99,104,103,107,113,95,106,107,105,109,95,100,103,101,68,105,104,99,105,100,102,111,108,80,106,117,103,96,100,108,110,100,97,106,100,112,111,94,97,105,107,105,105,94,102,98,101,109,99,110,101,77,109,103,97,99,103,111,102,109,96,103,106,85,112,97,101,94,107,116,99,105,107,72,101,106,96,113,95,100,108,105,99,104,95,100,111,112,103,111,102,95,93,104,99,93,107,106,103,105,104,99,105,105,101,110,109,105,93,89,101,103,113,111,89,94,105,96,94,76,106,70,96,95,97,98,112,118,104,114,104,98,94,95,102,100,108,95,106,103,107,108,105,96,102,103,96,95,100,106,91,115,99,107,107,113,109,106,76,98,95,105,102,92,108,102,103,102,108,99,110,100,95,106,99,102,112,97,110,96,112,106,100,105,106,85,106,98,90,91,98,100,86,102,100,101,101,106,98,108,103,107,101,112,99,104,113,106,109,97,93,90,103,103,101,105,105,91,97,97,112,101,109,87,109,94,91,102,127,102,91,105,89,95,100,106,107,100,100,101,98,99,104,106,106,113,98,103,75,106,107,103,119,104,84,92,105,112,96,105,107,105,92,103,91,88,104,105,100,107,106,101,108,99,91,100,93,107,111,115,115,95,100,87,106,93,99,107,105,96,104,91,115,97,107,106,106,96,80,118,107,112,113,101,80,102,117,103,98,87,94,90,96,109,96,97,79,96,88,105,93,104,101,95,104,103,83,94,99,106,95,109,94,102,100,99,107,105,82,99,114,101,97,100,104,95,93,90,97,83,110,97,96,108,110,99,84,106,99,99,104,103,99,102,86,91,103,97,101,98,105,93,98,94,95,104,110,102,111,92,102,100,105,100,105,72,95,71,100,95,99,104,103,114,108,111,94,107,104,85,114,106,103,102,104,103,101,108,101,108,89,96,107,99,101,102,93,103,112,102,98,115,99,96,94,99,90,95,104,104,106,104,98,100,97,100,104,88,113,100,93,99,101,103,104,100,111,97,94,101,112,96,100,109,105,110,100,92,105,105,112,100,105,96,102,119,88,97,106,98,111,93,102,105,98,102,99,101,102,105,104,101,92,102,94,113,92,102,96,96,106,119,102,108,101,79,101,97,98,97,98,96,102,105,106,102,110,93,101,94,95,109,100,99,96,116,97,105,105,91,100,106,91,101,102,95,98,104,101,106,100,94,97,102,95,108,108,97,102,87,112,99,104,104,106,106,109,105,112,88,103,103,105,94,124,100,102,108,105,88,107,90,113,65,99,100,105,92,98,123,94,95,98,97,106,102,109,93,88,113,99,102,97,115,117,99,99,107,112,100,102,92,118,108,113,100,98,103,110,96,105,87,102,90,96,110,113,98,93,93,106,90,101,92,97,106,104,100,98,107,98,93,92,129,83,96,95,72,90,85,91,111,98,107,99,113,110,110,92,100,90,95,97,110,93,97,110,104,109,97,104,105,112,98,100,108,111,92,97,91,104,102,113,107,108,80,100,102,112,100,100,100,96,92,99,100,110,106,104,97,103,99,96,108,116,97,105,111,93,112,102,115,93,99,102,98,102,109,95,88,107,98,107,90,103,107,103,102,99,105,90,102,87,104,102,110,91,100,103,83,96,102,107,102,98,108,103,100,97,107,89,101,95,96,101,88,98,110,114,112,101,105,103,95,90,92,116,118,114,112,106,98,103,100,100,95,100,95,91,104,97,116,101,120,105,101,100,96,108,104,101,117,98,114,101,100,91,83,95,103,106,106,110,111,99,107,113,96,82,97,93,106,105,97,102,90,107,100,101,91,94,93,103,85,100,101,94,97,104,112,102,97,107,81,116,88,87,112,108,92,110,114,97,91,122,81,104,98,86,94,109,103,95,95,115,103,109,90,96,94,106,101,95,100,104,108,102,94,104,94,98,110,111,111,110,96,98,91,104,97,89,96,108,101,102,88,107,111,98,98,112,87,102,98,100,100,120,107,85,105,94,100,105,108,98,101,96,96,111,105,99,103,92,109,89,106,96,96,97,112,100,95,96,101,98,104,74,101,86,107,106,114,99,108,103,113,106,81,109,104,102,99,111,130,94,100,102,100,90,92,113,112,94,89,104,108,104,102,104,95,102,91,84,93,113,109,103,95,84,91,104,101,113,97,99,108,63,82,92,98,101,96,103,102,98,101,96,115,118,81,112,101,101,114,86,89,108,101,98,101,105,109,95,87,106,98,96,86,97,111,102,106,113,90,110,96,87,101,109,115,107,98,97,97,99,102,91, +685.43231,102,86,102,89,107,101,107,103,97,99,105,112,85,72,108,113,116,72,89,109,105,106,90,99,95,100,100,98,112,102,106,91,94,86,100,101,114,98,115,102,117,80,96,131,104,102,86,113,114,109,94,94,111,98,87,93,99,93,101,103,88,108,102,96,102,119,83,99,99,75,103,120,100,102,102,95,98,105,100,104,102,99,92,107,102,82,92,96,103,99,98,100,103,113,114,90,108,96,100,101,105,109,112,92,98,99,79,105,95,99,112,90,97,99,110,98,103,100,112,88,94,113,101,102,107,114,92,96,106,102,110,106,97,113,104,101,88,104,102,87,101,104,103,109,109,94,100,98,102,98,101,96,102,99,96,95,102,95,108,101,90,101,118,101,99,94,105,89,100,99,108,111,109,101,101,102,98,108,95,91,106,102,98,113,96,88,95,93,105,79,102,108,108,100,101,97,102,83,96,102,105,83,90,105,96,96,88,106,110,102,103,109,95,103,95,97,102,107,116,106,92,108,105,94,106,106,95,94,95,105,91,99,103,103,97,106,93,100,104,109,83,109,111,102,93,104,92,92,105,101,103,114,100,98,97,107,102,99,96,96,97,101,114,99,86,101,104,102,108,97,97,103,107,101,102,100,100,112,108,101,104,101,101,92,104,106,101,106,99,99,105,118,92,103,110,101,109,110,105,98,94,71,87,108,98,91,106,104,103,103,85,110,102,99,100,86,103,105,99,92,100,101,101,103,89,99,94,89,121,102,106,92,105,109,90,98,106,91,100,123,101,103,100,96,112,109,100,95,106,105,109,97,104,101,91,98,96,99,102,99,94,94,101,109,98,103,99,102,106,100,98,103,108,95,110,99,101,99,111,98,103,98,95,105,98,75,95,99,105,104,117,99,108,96,97,100,107,103,92,104,97,96,106,96,95,93,105,70,102,93,92,99,97,98,98,96,94,96,115,100,106,95,110,113,103,99,99,98,96,108,96,97,106,106,99,108,104,103,106,94,114,89,96,103,95,93,76,92,101,95,102,99,96,80,101,100,104,96,95,96,98,101,96,105,102,101,99,123,109,100,102,105,89,99,98,101,101,107,109,97,94,96,107,109,111,103,101,91,84,86,129,105,101,83,104,102,87,67,104,93,102,98,99,103,99,100,117,99,97,98,103,115,103,101,113,111,100,99,97,98,118,103,109,105,101,107,106,111,110,105,97,90,96,95,97,104,103,100,104,100,103,103,77,104,108,91,94,104,105,114,101,110,101,102,93,104,116,107,104,100,108,104,100,121,102,104,97,104,101,105,100,87,95,95,98,97,91,107,118,92,95,100,99,103,119,106,106,113,113,102,105,102,91,112,105,109,89,102,102,107,98,97,98,92,109,98,105,111,98,109,95,96,100,109,100,100,91,109,101,99,102,103,103,94,92,96,88,103,99,95,101,99,99,97,91,102,99,91,93,103,90,101,100,96,102,88,99,67,101,84,81,98,97,99,107,107,98,112,98,101,100,102,107,95,99,99,105,92,116,105,97,109,96,100,102,92,94,92,90,109,95,90,108,103,102,107,96,102,106,106,103,72,90,100,92,95,101,79,100,96,110,96,101,103,92,89,98,95,67,94,89,96,106,98,113,109,103,94,101,104,106,95,98,108,106,99,97,93,97,110,103,103,96,102,97,107,102,113,97,99,112,101,90,94,117,101,101,103,114,103,106,92,95,92,103,98,106,100,99,106,98,106,87,92,103,114,103,92,104,109,100,101,107,105,96,110,105,98,109,103,97,99,101,101,95,101,111,108,97,109,103,101,103,114,108,94,106,96,101,104,104,106,105,105,104,91,94,95,90,105,102,98,96,109,102,103,121,113,96,105,99,112,92,93,103,107,106,117,97,100,96,89,109,100,104,78,97,106,105,96,90,113,101,106,94,93,98,103,90,102,96,95,102,96,99,106,107,103,103,101,90,102,96,95,118,101,91,117,108,107,100,103,94,103,97,97,90,89,101,97,101,128,88,101,121,99,107,95,107,106,105,96,98,105,91,92,112,92,92,100,106,100,106,91,102,90,108,106,105,87,89,102,105,99,112,89,96,104,107,93,94,105,106,102,99,94,109,97,97,98,82,99,104,101,96,88,96,86,106,115,100,93,111,107,110,95,106,92,116,94,101,101,97,98,99,101,105,98,92,101,115,109,100,108,104,92,98,95,99,101,92,96,98,102,103,106,91,105,87,81,101,100,100,93,101,108,102,106,95,106,104,100,91,105,92,96,109,107,101,107,100,111,106,101,107,98,72,109,83,103,92,96,94,108,89,109,104,89,98,79,105,105,97,97,93,105,102,98,88,84,107,96,102,73,112,97,111,95,91,97,109,89,106,109,101,96,99,95,96,99,101,105,103,102,88,95,83,91,120,83,88,107,102,100,96,98,90,113,112,99,91,104,88,106,104,96,102,95,85,105,90,108,109,98,107,107,105,105,99,96,99,93,87,90,92,111,103,91,98,102,96,101,109,109,89,109,90,94,98,97,99,103,101,104,99,104,91,92,97,100,112,110,106,88,109,95,112,97,101,100,117,104,105,100,106,96,100,103,102,103,100,95,97,104,109,97,100,93,105,105,110,103,104,107,89,99,101,113,114,103,104,95,112,93,98,109,104,96,113,100,103,101,104,112,114,102,99,92,104,64,108,110,107,102,97,100,104,102,109,106,93,102,107,113,106,102,104,98,95,111,97,97,101,115,109,112,100,110,117,96,116,110,106,87,110,110,98,123,106,109,110,102,107,93,106,98,99,99,90,113,96,106,90,107,102,106,113,118,109,101,93,88,101,96,95,105,107,91,95,107,98,102,105,101,101,107,94,102,108,104,106,95,97,101,100,107,113,93,95,109,100,91,101,105,108,109,104,77,113,98,96,106,104,101,111,106,103,105,106,105,106,125,106,87,90,102,109,104,110,110,113,112,103,96,106,94,101,105,105,92,86,99,101,95,104,105,112,110,104,105,106,109,109,101,119,110,104,99,106,108,96,102,101,97,102,101,97,102,109,109,106,102,116,101,110,93,99,101,73,105,95,112,102,96,93,96,103,104,101,101,99,109,99,102,112,104,104,106,95,100,109,91,116,108,83,95,102,98,96,99,96,94,108,106,100,97,115,108,97,96,85,113,104,103,101,105,97,98,90,97,109,103,101,105,97,85,103,103,109,102,101,106,109,103,113,97,99,100,98,103,83,112,110,94,101,91,96,98,110,96,108,102,98,103,106,99,98,101,99,97,98,104,95,92,110,100,99,108,102,91,107,94,87,107,121,108,98,91,108,100,103,104,95,91,95,108,100,85,96,86,106,92,99,117,104,107,99,107,110,103,91,102,96,108,107,102,116,103,108,89,97,106,95,113,104,120,96,104,88,88,94,113,109,95,100,110,92,95,108,92,93,104,99,101,101,98,112,105,88,99,110,102,121,106,102,104,105,116,100,100,103,99,110,95,100,106,104,95,98,98,98,112,101,107,121,91,103,102,101,101,101,105,100,101,108,114,99,106,113,99,104,105,104,105,111,108,109,93,100,106,97,106,110,97,99,114,102,95,113,92,110,104,91,102,132,102,103,103,109,113,89,98,110,111,100,95,95,102,107,98,96,98,123,109,96,117,106,99,105,97,96,99,96,105,97,93,115,98,113,104,92,104,86,88,112,100,100,110,98,104,98,96,106,102,99,97,99,101,93,97,100,96,99,97,103,98,104,105,99,103,102,99,91,105,103,99,104,105,102,91,99,101,104,109,108,102,108,90,98,91,111,104,87,100,97,102,104,108,102,104,111,93,115,103,101,105,94,96,97,107,121,106,94,102,104,92,102,107,108,98,111,112,103,100,111,99,105,102,105,104,102,94,97,94,110,110,107,94,88,91,106,112,102,111,94,105,102,78,114,103,95,87,103,103,104,116,96,100,102,100,102,94,92,100,108,107,106,90,97,107,103,99,106,114,112,112,94,87,92,105,98,99,99,114,116,103,99,116,102,103,107,109,109,96,115,102,95,104,98,108,107,102,106,99,110,102,117,105,105,102,93,103,107,104,110,104,95,104,104,102,104,102,98,105,102,109,98,102,111,111,110,91,102,105,105,115,113,92,91,113,113,97,98,102,102,102,102,108,107,105,106,87,111,97,109,96,98,105,90,104,92,103,102,120,108,95,103,104,108,95,102,90,105,111,103,98,103,98,93,111,102,96,81,103,97,91,104,106,101,98,97,97,100,95,103,102,97,111,99,96,104,105,115,104,99,101,94,104,99,94,91,94,109,93,91,87,108,113,99,104,98,98,106,102,99,106,96,98,102,99,103,96,105,107,98,104,109,87,107,97,99,97,108,102,102,104,108,103,98,112,106,103,94,109,123,95,109,100,99,102,106,101,103,100,106,102,75,98,106,107,119,107,104,112,101,99,105,100,96,97,101,101,97,106,121,93,91,104,99,104,108,100,91,106,98,104,102,118,111,92,104,98,102,105,109,97,106,95,98,97,103,96,94,98,103,92,108,104,109,100,103,91,97,105,95,104,98,118,97,95,100,94,113,94,100,116,101,99,97,108,93,110,109,103,106,98,110,87,108,106,96,109,98,101,94,103,103,107,100,102,103,86,98,100,110,104,107,115,106,95,106,102,106,127,114,92,97,99,109,98,91,94,109,106,116,108,104,106,91,105,113,110,112,106,78,99,99,101,88,101,100,103,104,97,91,93,101,99,102,105,105,95,104,103,102,102,95,104,99,113,114,88,90,101,86,108,99,102,105,105,124,104,121,82,87,98,103,98,95,100,109,102,108,92,100,114,91,113,108,91,102,102,97,99,92,108,92,104,104,79,102,91,106,109,103,94,87,103,96,104,107,94,100,99,116,121,105,113,108,91, +685.57361,107,109,95,104,93,100,98,118,96,103,95,106,87,105,101,102,79,99,100,101,106,98,107,92,89,98,98,102,116,102,104,108,92,106,112,81,105,102,95,96,71,108,105,106,109,103,96,108,90,79,101,104,96,106,102,105,92,101,89,97,105,100,113,104,109,119,118,100,102,101,111,101,110,114,89,114,88,118,101,103,107,105,112,111,101,106,105,106,65,88,104,103,100,122,107,113,109,96,106,97,106,98,96,98,89,93,92,109,98,120,98,93,119,97,104,91,69,102,100,98,99,99,99,84,98,102,112,102,106,99,105,99,81,117,106,100,107,94,107,96,92,104,97,98,105,66,98,102,107,103,107,106,104,90,92,91,107,99,94,102,101,111,111,105,102,116,100,97,92,98,115,110,108,113,94,103,98,95,86,103,110,97,95,100,130,99,100,91,104,106,87,104,99,108,105,101,109,74,95,68,102,93,94,110,101,105,90,108,108,103,85,97,101,109,99,99,89,113,97,101,100,102,109,74,101,99,103,106,86,90,101,96,107,96,99,95,105,116,102,104,103,93,97,98,96,105,93,115,100,102,92,110,96,104,103,99,106,117,90,95,94,102,110,94,96,98,109,109,108,92,113,94,105,102,93,94,94,98,109,106,101,90,97,92,96,99,101,94,107,111,91,104,109,108,97,109,102,109,94,92,104,96,97,128,101,109,110,105,106,109,92,110,101,118,98,99,94,97,102,112,98,105,96,109,112,92,93,99,109,107,82,100,121,106,101,112,104,107,103,109,100,101,116,98,102,106,91,102,118,95,104,110,106,101,99,97,102,109,103,99,102,108,92,94,103,91,100,106,102,105,105,93,108,109,100,110,107,106,114,110,105,110,105,112,97,99,92,106,112,96,106,86,97,81,91,99,91,94,104,100,98,101,101,110,103,97,113,101,101,106,80,99,105,105,97,87,107,100,93,100,92,105,93,112,96,95,103,97,100,107,91,95,101,95,103,104,106,110,97,100,100,91,121,90,92,96,109,95,94,101,100,99,99,100,87,85,96,84,110,104,115,97,109,110,113,105,102,106,112,87,106,100,80,106,102,105,105,100,113,104,95,103,83,104,101,95,109,96,95,102,102,109,90,100,98,107,100,93,96,111,107,97,98,91,86,110,101,100,100,94,115,92,102,117,100,96,87,102,92,93,109,75,95,96,99,106,110,108,106,97,97,100,99,95,96,98,104,90,110,108,101,104,99,104,87,92,102,114,110,89,101,102,97,101,103,92,108,103,108,109,93,98,97,98,111,106,101,112,101,90,105,88,97,102,114,103,99,104,93,98,105,86,96,99,101,100,107,105,100,97,98,98,92,86,108,100,97,99,103,99,104,108,107,102,83,74,113,95,100,102,91,98,98,91,101,101,100,108,104,108,114,103,104,101,85,98,95,104,102,112,104,102,88,111,95,111,102,107,107,92,102,100,104,102,104,104,87,111,117,91,109,101,101,99,99,116,109,103,94,101,106,106,100,114,97,88,107,110,101,107,121,92,102,78,92,79,99,83,109,96,106,96,108,93,94,105,87,105,99,105,98,99,105,100,92,102,99,104,105,90,101,103,97,102,101,103,94,110,103,105,102,102,101,90,90,96,112,103,106,89,102,89,101,110,97,104,95,92,104,105,101,99,100,99,107,110,99,113,104,100,102,92,97,102,97,105,90,107,93,96,125,95,101,93,114,92,97,91,100,94,101,104,106,98,92,97,94,95,97,100,112,104,108,70,95,95,113,92,91,84,99,83,97,105,99,104,101,112,102,103,95,110,105,101,91,95,99,96,117,103,109,95,94,107,109,94,101,99,95,100,117,102,99,96,125,99,110,120,101,99,106,107,96,116,100,102,108,106,98,100,93,101,112,114,100,102,102,100,103,99,101,103,109,102,98,98,92,88,106,105,115,92,97,79,101,106,102,101,113,116,95,104,100,93,96,91,107,104,113,98,105,99,98,99,99,102,99,104,101,100,97,96,116,111,94,100,92,94,116,101,103,99,98,100,85,104,93,112,101,100,98,110,98,93,95,104,112,105,106,102,110,109,101,103,100,96,95,103,117,94,122,99,102,112,83,96,117,98,100,93,96,103,112,108,106,102,93,101,108,88,108,106,94,100,97,103,103,102,119,106,106,97,98,116,104,106,81,94,102,106,109,99,96,96,113,105,103,104,105,100,116,90,98,98,98,118,107,94,100,105,91,106,98,112,105,103,98,113,100,94,99,121,96,97,109,103,103,103,114,93,105,109,93,103,115,100,108,91,90,91,91,98,97,97,107,120,83,104,91,101,104,97,105,88,95,98,106,112,100,117,102,104,111,110,97,106,98,98,111,95,104,103,110,102,90,101,90,99,109,99,109,108,96,94,104,103,104,97,99,104,110,100,114,91,96,95,99,98,94,104,92,103,99,90,102,91,98,108,107,96,102,102,101,114,108,105,104,98,106,105,106,117,93,100,102,97,108,113,100,95,99,98,107,95,100,108,91,98,98,101,98,110,89,98,116,105,90,101,106,112,113,98,104,105,103,100,105,116,104,102,97,93,97,91,96,107,97,111,102,86,101,97,97,101,106,97,103,100,91,102,106,92,102,102,103,104,104,119,119,105,98,90,109,97,107,119,112,113,123,101,100,106,107,107,96,104,100,100,67,94,104,112,93,99,105,87,99,108,103,108,103,91,93,107,102,108,107,106,101,100,92,103,99,103,112,95,102,88,101,107,105,104,103,99,103,90,106,113,117,119,95,110,104,101,93,103,110,92,108,129,100,104,94,95,98,106,110,95,105,97,111,91,104,87,102,91,103,109,95,101,105,91,115,104,105,113,102,101,105,106,104,104,105,112,98,108,123,101,103,97,97,102,95,107,96,118,97,99,93,110,106,117,100,112,112,113,90,103,104,99,104,108,100,106,102,112,102,103,97,101,95,91,104,109,98,122,89,100,98,102,108,96,121,107,98,113,105,100,106,91,103,106,99,99,121,108,115,105,108,103,106,109,95,109,103,102,89,102,106,94,113,110,98,96,104,67,113,94,95,108,105,87,83,111,106,100,115,109,108,98,106,104,104,103,110,107,101,108,91,105,102,104,111,100,91,110,104,107,93,100,107,99,102,98,103,106,98,103,113,96,98,108,112,99,104,72,104,96,95,110,94,94,92,107,102,108,94,109,113,95,96,95,94,98,96,88,103,110,109,105,98,86,104,107,104,91,116,100,96,103,109,86,107,108,107,89,103,118,105,105,97,99,108,103,101,107,100,99,102,101,113,96,107,107,105,94,102,90,102,102,105,103,103,97,106,110,99,102,112,104,101,105,107,86,108,103,104,97,113,101,98,110,100,121,88,118,101,87,121,105,104,92,96,104,115,105,100,105,100,109,100,99,104,101,94,95,110,99,99,95,95,105,99,91,110,109,103,103,103,104,93,83,100,113,94,102,105,106,90,99,109,94,106,91,80,113,107,93,113,106,96,97,108,101,99,114,109,105,102,86,96,103,95,108,101,101,120,113,107,99,97,99,93,98,101,105,98,110,108,108,105,95,99,106,113,101,102,100,113,94,101,115,106,91,100,99,105,99,92,112,104,115,95,104,105,103,116,102,97,102,105,72,117,106,106,106,105,100,102,108,98,99,111,100,96,97,93,102,90,83,99,121,103,99,98,104,94,99,103,109,94,100,100,108,112,97,101,108,96,96,95,106,101,101,106,105,100,107,102,91,106,101,110,104,94,93,108,92,97,99,98,105,108,125,97,95,103,91,107,102,96,107,108,103,101,97,103,104,105,104,105,101,101,103,105,101,103,94,105,113,98,103,100,98,104,103,104,102,102,105,98,98,102,106,103,106,106,94,93,103,97,101,102,99,99,105,116,96,109,115,93,82,104,106,98,95,103,89,110,118,89,91,103,93,100,110,105,110,108,90,94,100,94,106,97,95,107,98,94,96,120,100,104,97,97,110,95,98,96,97,117,101,102,114,106,98,93,95,107,102,112,112,103,94,104,102,111,136,98,107,111,98,99,104,94,96,109,96,100,105,106,91,109,105,91,103,107,102,102,91,94,106,93,105,112,101,94,100,104,105,94,98,110,104,100,102,96,108,98,97,101,95,95,104,95,97,92,116,104,102,112,103,116,92,102,106,111,109,92,100,107,99,118,113,110,108,80,112,97,100,106,103,102,105,112,94,104,101,97,103,109,95,107,118,103,99,107,103,105,95,107,101,107,108,97,105,103,94,93,112,103,75,102,115,90,91,100,95,92,100,99,115,97,101,108,106,110,97,102,108,113,115,100,107,102,103,95,115,94,86,100,108,95,106,98,102,81,108,100,113,106,115,101,105,110,98,113,96,99,102,99,106,103,102,102,101,107,97,104,101,92,97,107,103,108,97,87,101,110,105,120,99,98,98,98,89,97,100,92,102,102,106,113,99,109,91,97,80,88,97,110,92,92,106,103,98,96,105,112,95,91,106,93,108,98,99,99,92,96,93,91,104,96,98,97,109,97,102,121,105,110,109,113,106,91,99,95,116,97,95,93,104,107,93,99,110,105,91,102,100,108,92,99,115,119,105,110,68,94,101,100,101,102,107,96,104,103,99,106,109,105,101,110,106,94,74,98,111,80,105,102,99,101,96,89,96,92,101,100,108,96,108,113,105,115,88,106,100,99,97,99,108,97,72,110,95,111,100,104,90,102,110,98,116,91,91,113,112,114,83,121,113,103,98,107,105,99,106,101,101,90,100,105,102,107,97,113,90,101,101,96,106,105,109,128,103,97,101,98,91,95,99,109,112,112,100,112,100,99,107,120,92,91,112,96,98,91,112,92,91,98,106,103,93,101,104,100,96,104,89,107,90,94,95,95,100,104,100,97,105, +685.7149,81,89,113,117,92,105,95,104,97,114,95,114,99,98,108,104,91,93,102,97,107,109,116,109,99,106,95,104,106,125,89,101,91,100,98,105,94,98,98,111,78,109,98,100,104,84,96,121,106,99,87,89,89,103,93,90,90,86,108,93,116,97,98,94,94,102,90,101,92,90,87,109,91,89,95,107,99,100,103,84,104,94,96,99,96,110,109,102,85,89,91,83,102,93,104,103,77,101,101,99,103,103,88,92,99,94,97,91,87,106,107,94,96,97,91,87,100,104,109,105,94,88,102,105,106,104,98,95,101,99,91,109,100,97,94,90,95,101,102,93,100,106,105,88,93,84,98,99,97,105,96,96,101,89,96,91,94,104,103,90,103,92,109,90,79,103,91,93,102,87,106,92,96,108,91,91,106,99,100,95,79,89,103,105,96,98,102,98,99,92,102,90,106,95,95,88,99,91,98,103,106,109,100,99,91,102,125,87,126,101,96,102,103,99,91,100,107,96,101,106,96,95,92,97,99,109,90,91,93,85,93,113,91,101,95,99,100,100,97,96,94,95,101,107,89,103,86,100,114,92,87,94,100,107,94,102,82,86,78,96,104,96,102,103,95,95,95,108,102,98,96,92,99,109,106,110,100,93,88,96,99,94,88,93,114,100,102,106,102,103,100,90,93,90,101,100,116,103,91,96,129,93,99,111,96,100,98,93,84,83,93,105,87,105,82,96,101,86,96,103,103,97,75,92,98,95,96,100,121,103,89,92,99,108,95,96,98,92,105,93,93,96,88,91,93,94,104,92,90,100,95,100,102,87,105,93,92,103,106,104,98,98,91,98,103,88,89,95,94,85,100,98,103,115,98,103,79,95,98,92,106,108,93,101,91,112,110,93,93,96,106,95,108,100,59,88,91,93,108,103,94,98,109,92,91,91,101,99,91,97,97,101,102,74,93,104,76,96,97,100,95,96,100,109,95,88,111,105,110,104,92,103,102,89,98,90,99,92,84,106,106,96,98,100,92,100,103,96,98,96,99,114,94,91,91,98,103,87,114,109,98,90,98,98,103,109,88,106,101,95,105,91,96,98,95,102,96,106,98,104,96,109,99,96,96,80,91,107,89,93,96,96,95,95,96,100,98,111,92,95,99,99,87,91,96,88,89,102,109,76,102,98,110,94,95,100,105,90,94,87,81,94,105,95,97,99,112,101,95,110,97,97,97,99,102,101,106,91,101,99,99,101,75,92,123,106,99,84,90,103,100,102,100,90,94,93,105,105,96,96,100,95,98,105,91,100,109,95,99,87,99,108,87,104,96,88,101,100,104,101,97,99,96,112,87,102,107,112,91,78,88,106,95,97,98,104,108,84,101,94,91,91,92,110,96,108,100,112,111,100,102,107,105,103,106,100,80,88,99,104,100,96,109,80,105,79,96,94,85,89,104,91,108,95,102,98,87,95,115,91,110,97,95,95,101,94,95,88,102,100,91,95,125,89,95,107,93,109,101,96,96,99,117,97,90,100,88,95,103,105,97,99,105,94,103,91,102,105,102,105,111,91,98,101,90,94,98,88,115,95,96,106,86,92,91,93,96,100,129,87,102,92,97,101,96,101,100,110,100,72,91,100,100,104,95,99,88,112,96,87,95,90,108,110,92,95,105,111,72,98,98,100,92,98,94,103,102,84,96,102,92,96,90,104,98,96,90,114,93,103,105,96,105,121,92,91,103,103,104,99,89,98,93,95,104,104,95,94,102,98,100,102,91,100,99,96,96,106,92,91,108,110,86,95,100,105,100,95,102,98,89,102,97,97,105,112,91,106,105,83,92,115,95,94,107,92,91,68,105,101,111,92,97,92,119,84,102,98,94,109,88,106,105,97,95,100,111,95,91,102,125,91,96,101,87,99,81,97,104,96,98,106,91,98,96,103,90,85,83,97,109,96,104,109,103,90,97,98,87,101,99,92,98,105,98,98,93,101,99,106,97,105,94,104,111,98,95,97,96,86,97,109,117,101,100,107,89,99,97,96,104,104,101,103,108,90,100,105,98,103,95,100,113,96,102,98,94,100,99,107,114,90,112,102,108,102,91,108,111,101,104,104,105,106,100,63,100,96,99,94,90,115,80,110,101,99,86,94,98,99,102,99,102,98,104,110,94,104,86,101,103,120,95,96,109,105,101,101,98,98,97,92,102,89,98,88,96,91,94,106,103,83,109,90,96,87,80,85,82,98,97,97,103,129,100,88,108,109,91,102,97,96,94,94,86,90,106,98,94,89,92,103,105,96,98,98,100,101,95,95,86,105,108,105,93,99,92,102,100,104,102,100,105,83,109,104,102,100,98,100,100,103,94,96,106,100,104,112,100,104,103,97,93,111,99,91,90,119,100,99,99,107,100,106,106,103,112,95,93,86,91,102,76,93,97,113,106,97,116,98,101,109,100,109,98,122,99,101,95,87,100,113,95,111,125,98,99,84,98,105,110,111,97,93,90,95,109,99,100,102,109,102,108,102,96,102,96,95,108,91,98,113,95,109,91,101,106,93,106,106,99,101,88,94,93,92,93,105,96,110,93,118,103,116,103,103,108,104,100,97,108,99,95,106,105,104,95,107,108,95,102,110,102,105,110,89,102,103,91,101,106,93,94,87,103,95,99,100,106,114,93,105,108,109,90,106,102,97,107,90,99,110,92,106,94,108,104,97,101,102,107,103,102,117,94,106,104,100,97,105,107,97,101,105,105,113,112,103,102,99,106,101,107,111,109,100,106,108,100,102,102,104,107,104,84,106,113,115,92,102,106,115,106,103,111,93,105,98,102,101,109,95,102,88,102,99,103,104,112,110,110,99,94,95,101,107,114,101,106,103,109,97,100,101,108,113,99,104,86,99,95,95,100,97,99,116,87,98,98,98,112,103,106,102,106,108,103,103,115,92,99,106,102,94,100,110,93,99,105,97,95,103,89,114,85,105,109,110,104,93,103,107,104,106,101,111,99,101,109,92,100,102,101,94,111,82,110,106,107,100,100,105,87,110,103,113,89,75,106,96,106,102,104,109,103,109,104,105,111,105,95,109,96,94,88,109,105,96,120,104,114,94,107,97,113,91,94,103,110,100,102,94,90,117,107,112,108,105,113,98,97,96,108,97,107,100,101,106,110,109,102,90,87,111,106,117,103,104,101,99,99,81,107,107,91,91,95,102,97,100,105,99,98,116,103,94,102,99,106,102,98,109,98,95,95,102,103,92,106,109,108,110,107,111,101,90,94,82,100,87,117,99,109,86,101,102,112,96,101,97,101,101,101,105,91,98,113,104,110,100,105,104,97,97,103,98,88,88,113,105,99,95,111,110,95,100,108,95,112,96,90,100,107,102,109,90,113,96,85,95,100,94,109,99,107,99,98,109,96,99,94,101,95,96,100,101,106,94,105,101,96,106,84,92,96,95,92,104,99,104,106,94,98,96,90,97,101,87,96,98,103,92,101,93,105,112,100,105,112,93,121,102,101,107,106,109,95,96,102,96,111,90,103,109,84,97,102,107,94,121,101,122,99,106,106,104,91,99,113,98,102,109,100,101,100,104,97,93,99,95,96,105,90,106,103,116,95,103,99,97,107,100,98,98,100,105,99,97,98,95,94,102,124,102,102,94,95,86,105,101,105,107,102,108,96,104,104,114,102,105,92,100,96,109,99,101,109,103,113,107,97,100,98,112,101,101,104,82,111,104,104,108,99,95,108,107,112,96,99,102,95,90,100,101,107,113,88,108,95,98,101,98,95,102,102,96,105,100,112,109,98,113,100,97,90,87,104,94,95,103,106,93,98,97,106,92,103,102,93,116,98,92,102,94,102,106,109,111,104,98,106,92,112,104,119,95,102,102,101,93,94,83,98,100,105,94,98,109,96,107,92,100,104,96,95,88,96,78,110,88,115,96,101,98,96,106,104,108,109,91,101,106,89,102,89,96,99,102,101,109,105,89,92,106,105,130,100,105,97,95,104,100,101,108,96,96,95,123,111,103,117,107,100,104,103,95,105,96,109,118,104,91,104,101,108,103,112,103,104,98,106,108,99,104,95,100,113,100,96,104,90,111,124,99,107,114,118,105,101,99,114,98,94,98,99,104,98,96,95,112,112,98,107,116,96,97,103,102,103,104,103,109,97,84,92,96,98,90,100,101,109,111,102,88,101,105,93,104,103,100,115,100,99,92,94,103,105,95,98,86,104,99,102,96,99,105,106,113,94,103,92,97,108,100,94,108,92,91,102,103,110,112,102,99,100,105,105,94,94,100,105,101,103,99,101,89,104,101,95,103,91,97,110,114,109,98,103,94,110,98,117,95,92,103,115,94,99,109,112,98,116,96,98,103,96,98,110,117,109,105,105,104,109,96,106,102,97,99,106,108,105,98,94,113,96,97,101,120,102,98,104,107,104,98,85,101,99,101,105,86,99,111,110,101,105,94,93,78,105,100,83,90,98,89,105,100,105,94,99,121,83,112,99,101,100,97,99,108,103,95,92,122,117,73,108,89,89,94,102,102,94,120,103,93,113,104,100,102,102,101,93,109,113,95,95,94,93,98,107,100,104,109,98,94,99,102,106,83,98,98,90,102,96,99,101,105,105,106,106,113,99,95,112,107,109,95,110,90,105,98,65,101,100,100,94,98,97,97,97,107,99,92,123,91,102,98,82,91,106,98,101,98,97,105,96,102,107,104,103,106,92,102,99,103,106,92,108,93,104,123,105,96,105,101,87,91,106,64,97,108,93,94,112,108,110,109,90,92,98,103,95,97,102,85,101,101,106,101,100,105,107,113,106,98,112,107,100,97,103,113,100,109,101,101,87,100,89,99,95,93,104,111,102,93,104,108,108,105,92,108,121,108,102,118,111,83,105,99,95,101, +685.85614,107,99,97,102,89,90,93,102,102,88,96,94,97,100,92,102,88,99,89,103,93,118,85,118,96,84,103,106,95,99,105,98,118,102,87,100,84,86,104,114,95,98,101,110,95,96,97,102,106,103,100,111,94,103,107,116,101,84,104,100,95,94,92,78,92,112,106,106,102,101,93,116,87,115,99,89,86,106,104,99,95,104,99,100,96,78,87,109,103,99,90,113,87,114,108,80,103,94,101,104,97,99,97,94,97,92,94,100,95,99,93,101,104,91,94,89,92,106,90,109,92,95,83,110,105,106,93,99,99,97,112,96,117,115,98,91,92,87,93,102,97,83,103,102,99,98,114,97,97,93,92,103,86,91,103,112,108,99,103,94,104,100,104,93,95,106,98,91,99,98,108,106,93,88,95,93,102,92,102,96,93,104,100,106,90,104,101,87,98,86,88,101,95,102,108,100,107,95,91,102,95,99,105,101,104,109,99,98,99,112,102,109,109,104,109,91,99,105,111,125,95,103,107,107,104,100,96,99,103,107,103,99,109,110,112,100,108,101,93,109,88,99,107,107,106,96,113,112,103,94,78,94,99,94,108,99,102,104,74,104,90,114,98,99,94,97,99,96,105,91,96,114,107,95,100,102,102,103,96,102,88,98,113,98,98,99,97,94,92,109,95,99,99,101,100,112,82,99,109,105,95,110,96,110,97,105,90,95,94,93,102,110,96,109,94,95,105,104,110,94,67,91,102,99,95,102,103,84,111,104,111,99,95,110,108,91,103,104,97,108,106,97,99,99,105,86,108,102,90,99,102,94,118,95,104,96,106,92,104,104,98,105,109,102,104,100,98,103,94,96,108,101,106,99,105,97,116,99,94,98,107,102,105,94,96,91,103,102,94,117,102,95,93,117,81,100,93,103,107,106,106,105,101,106,100,87,107,111,96,105,102,96,112,97,104,97,104,97,116,111,90,100,92,110,114,103,108,104,87,115,96,101,109,108,99,105,101,110,96,109,103,100,97,102,93,101,104,95,102,108,102,116,75,133,109,104,94,98,106,92,112,100,109,94,100,113,102,78,102,96,101,102,95,91,95,105,97,93,100,95,103,96,88,93,101,103,108,102,97,91,106,100,102,102,94,91,90,95,90,92,105,95,103,100,98,110,92,109,102,94,108,87,94,101,98,107,97,94,103,100,116,103,96,114,105,107,94,122,137,104,96,98,104,108,95,102,103,99,97,106,99,86,96,101,104,103,107,106,102,107,108,102,97,92,95,102,110,80,107,101,97,103,97,95,100,98,99,91,92,106,99,97,100,102,102,92,101,101,100,99,107,99,95,96,97,98,117,100,102,112,110,98,90,107,109,103,100,107,116,104,94,102,108,102,101,90,93,100,94,94,108,109,110,105,116,97,113,105,102,99,102,104,94,100,88,113,91,97,97,90,93,99,105,112,96,87,95,96,100,102,106,110,99,95,102,90,89,100,100,100,96,112,105,101,100,103,103,101,103,99,94,105,90,106,101,99,96,97,101,96,99,94,111,103,98,121,100,109,113,98,109,98,95,96,94,88,101,97,101,107,98,97,105,103,102,90,100,99,96,103,104,89,108,99,112,93,100,95,96,104,87,78,104,90,99,102,103,108,98,107,103,84,108,106,125,102,105,106,103,109,108,80,91,99,100,93,98,104,107,97,78,122,109,94,109,93,106,103,96,110,92,81,112,99,114,114,107,105,109,111,95,105,106,99,103,104,135,108,84,99,117,97,89,99,104,92,108,99,107,114,87,95,93,104,96,114,96,118,106,113,109,113,96,111,109,116,109,110,99,105,100,92,105,104,108,102,97,88,97,106,108,102,116,93,104,95,110,89,109,100,110,120,106,95,98,110,110,99,93,103,93,111,106,105,98,109,118,94,100,103,92,96,105,98,106,101,103,110,105,87,108,97,112,92,107,102,109,105,107,106,100,99,86,96,105,127,100,94,123,114,99,112,86,111,109,106,100,94,93,109,88,110,114,93,90,94,106,113,106,96,108,103,107,86,112,117,96,114,96,102,87,102,107,105,105,107,105,89,89,103,98,104,109,109,99,107,104,104,99,103,87,100,101,95,99,106,97,102,98,88,95,108,107,99,94,95,97,101,101,102,105,101,94,99,101,108,103,90,112,113,101,96,111,105,70,110,97,111,74,118,108,107,95,98,96,100,92,86,105,99,107,103,107,106,98,115,100,107,105,100,96,97,91,103,101,100,98,104,98,102,108,100,113,116,96,99,107,104,98,107,105,92,103,88,109,105,105,101,109,104,88,101,96,103,101,106,115,93,92,100,95,109,99,94,97,102,106,89,93,92,106,106,100,110,89,98,98,110,104,95,90,112,99,107,109,100,110,104,101,100,104,98,99,98,101,96,109,99,104,79,105,109,106,97,90,121,92,101,95,95,91,104,95,99,114,99,105,102,92,98,103,98,84,103,107,116,88,98,107,108,110,110,106,96,101,100,95,101,103,91,104,83,93,81,90,96,102,105,106,104,94,107,95,97,92,100,102,96,98,107,101,105,110,101,97,106,96,104,102,101,103,116,103,107,117,105,93,97,98,86,100,107,96,105,95,104,100,110,108,105,94,102,102,95,93,91,87,104,98,105,98,97,96,97,108,101,107,85,130,99,105,105,94,100,101,102,94,102,105,102,91,96,91,100,96,103,84,102,100,102,107,92,107,101,106,80,105,96,95,106,104,100,111,101,107,99,101,105,104,104,101,91,96,104,105,113,110,93,112,93,103,102,95,104,106,120,99,104,99,106,102,107,97,116,94,99,88,103,100,108,86,99,107,92,110,92,108,106,95,112,96,104,106,110,65,101,99,97,104,107,102,113,92,111,102,91,102,101,105,108,107,97,96,112,98,95,92,108,104,106,110,109,109,99,107,108,94,108,72,99,103,109,101,113,98,95,98,92,100,104,107,104,115,108,102,97,102,106,106,90,90,87,87,105,99,83,116,91,110,85,101,94,108,103,107,94,109,104,106,101,103,97,114,100,108,95,95,86,91,102,94,98,104,109,102,105,108,105,103,99,100,95,99,109,101,95,104,93,107,90,105,126,95,107,98,104,100,94,99,96,98,99,89,98,107,87,99,100,99,117,105,99,95,132,93,102,99,104,105,106,105,84,96,96,103,97,106,102,96,103,117,102,93,104,111,109,102,102,113,72,94,100,97,91,90,100,104,106,97,100,102,94,94,93,102,98,114,106,91,93,104,104,93,110,109,92,107,116,101,100,100,100,95,108,116,97,109,97,103,97,113,93,104,96,96,109,103,104,98,92,104,108,100,103,102,91,96,101,95,103,99,99,101,104,107,93,105,100,105,105,101,110,87,91,97,100,103,114,94,108,103,109,98,106,108,104,103,109,101,108,106,108,107,93,110,111,106,97,108,101,101,96,100,100,106,92,96,93,100,103,96,80,106,98,102,103,92,110,98,91,100,114,107,95,104,100,109,115,105,106,106,111,107,107,95,108,104,109,99,96,110,102,108,110,100,100,101,93,105,84,108,92,103,102,111,107,98,99,103,115,100,100,97,121,110,100,102,105,104,97,100,105,87,111,90,100,108,96,113,104,106,102,99,106,96,108,95,110,108,110,109,104,116,107,109,95,104,106,113,96,109,105,105,93,102,96,103,110,109,111,100,102,100,81,97,95,105,105,108,113,97,105,113,119,110,91,89,114,106,102,91,110,92,103,102,100,109,104,91,95,99,104,98,98,102,103,102,101,107,99,95,101,111,102,101,96,104,96,109,97,101,104,87,101,105,103,101,98,101,95,100,123,115,105,116,109,108,113,104,108,105,97,95,114,113,104,98,103,110,104,116,98,95,98,112,103,94,105,106,105,92,96,99,99,104,107,111,94,93,89,95,108,90,111,91,92,111,94,99,108,115,104,107,99,110,106,111,117,110,110,120,95,108,99,104,108,108,91,105,93,99,105,114,100,99,99,95,105,117,103,90,105,121,96,103,105,95,108,100,103,99,107,93,98,98,101,106,113,95,102,104,99,96,102,105,116,100,94,95,108,88,87,108,97,80,108,89,98,87,100,106,105,85,109,111,107,105,110,83,104,102,113,110,105,102,91,94,99,105,96,100,108,96,107,100,104,101,106,110,111,109,89,124,93,98,102,132,97,101,95,101,96,115,113,104,99,101,96,103,99,106,107,95,113,99,102,98,100,103,101,85,103,94,100,101,100,101,100,105,100,100,96,113,107,100,103,103,95,103,98,96,95,98,98,98,110,94,116,101,121,103,109,107,96,110,106,110,95,95,113,101,97,113,100,97,101,107,94,98,100,106,91,107,95,109,102,111,114,94,105,96,108,108,109,109,102,108,105,108,95,96,88,92,92,105,103,106,114,91,96,101,100,109,112,107,111,99,92,102,101,103,112,94,102,101,96,92,79,98,106,105,95,100,104,104,107,100,93,100,103,91,106,109,103,101,109,90,112,98,107,103,99,123,106,101,101,111,110,91,104,104,90,95,98,108,108,92,113,106,100,103,107,98,87,103,97,103,65,104,96,92,110,127,88,101,98,107,96,101,87,99,87,107,112,94,103,106,95,91,89,105,112,102,99,94,94,84,95,107,94,109,100,106,96,105,100,98,96,96,100,94,104,99,101,91,97,89,108,98,111,99,91,104,115,117,101,101,109,108,107,104,107,95,96,103,99,93,105,91,106,76,102,101,91,106,100,89,108,99,99,105,97,105,103,94,72,89,106,100,104,101,101,101,106,100,103,106,98,101,101,95,92,96,97,92,101,103,107,106,104,92,107,96,104,104,76,103,110,100,104,96,101,91,99,83,106,80,63,102,102,95,109,113,104,97,109,94,113,98,104,116,101,102,107,108,91,98,95,116,86, +685.99744,112,99,95,101,84,96,91,104,99,100,90,95,109,106,112,112,109,108,101,101,103,99,98,104,101,114,102,75,100,102,112,100,106,106,95,101,105,105,112,101,87,98,109,91,102,98,95,100,96,108,110,99,117,90,115,101,103,98,102,107,114,86,91,98,107,105,94,95,99,90,119,100,104,79,100,100,93,94,115,110,96,104,102,107,88,99,107,102,91,100,98,93,88,100,92,100,111,102,95,107,90,111,121,98,91,102,80,105,83,98,103,109,106,108,105,109,90,111,102,99,108,124,88,106,110,96,104,109,111,101,100,109,102,110,104,95,96,99,98,100,96,94,96,99,96,99,93,109,100,99,100,97,96,100,95,91,83,93,99,98,86,107,91,90,99,97,100,85,108,100,107,98,101,95,106,98,93,102,102,97,108,104,102,101,111,110,106,94,105,101,103,106,114,114,94,102,104,104,104,103,98,100,102,101,108,101,107,107,112,96,98,100,102,104,100,98,95,95,106,110,84,117,82,105,95,105,98,100,119,102,104,109,99,94,110,98,106,92,99,110,76,106,109,86,97,101,93,99,100,99,103,112,98,96,105,104,109,112,102,95,84,77,103,120,92,118,95,92,96,92,107,95,88,93,101,93,105,101,97,96,96,100,105,103,92,109,89,111,96,103,106,106,100,96,104,105,99,100,104,105,94,105,117,109,95,108,109,103,92,95,99,116,91,118,113,100,92,97,101,101,105,103,106,105,101,98,85,110,109,96,107,95,109,105,100,104,94,110,100,109,104,90,103,101,104,114,108,108,101,100,104,105,99,118,99,75,105,123,99,112,104,98,110,108,101,95,107,106,94,98,113,94,110,73,95,102,105,99,91,106,106,105,94,100,100,102,102,88,115,92,95,91,85,96,97,101,96,101,91,127,97,88,98,97,108,99,105,100,98,90,99,106,101,103,100,98,104,99,109,107,99,96,95,97,105,102,94,92,95,105,103,96,103,93,103,112,98,99,98,120,100,114,99,87,97,94,97,94,110,88,98,105,101,107,100,106,83,111,105,110,110,95,103,104,102,106,110,91,100,85,100,104,106,98,99,109,97,98,98,98,96,113,112,97,108,92,98,105,94,96,113,97,98,104,101,94,105,120,98,99,106,105,105,113,106,104,104,110,111,115,102,117,103,104,129,110,110,103,102,97,104,99,104,102,106,88,102,110,111,106,90,100,108,88,98,84,103,102,92,100,89,107,100,113,112,104,102,99,104,95,100,108,108,101,100,102,105,102,99,91,112,100,97,111,100,99,107,116,106,99,91,99,101,112,108,103,100,106,103,106,104,102,102,105,87,102,100,98,106,88,110,96,103,97,120,100,90,95,109,94,113,95,105,101,98,103,106,104,99,114,106,99,107,97,113,119,106,118,93,104,101,103,99,87,97,105,109,129,101,92,96,92,93,98,99,104,114,105,117,105,114,108,118,101,104,90,104,109,94,89,104,108,102,101,102,107,109,103,100,101,99,117,105,100,108,105,106,103,98,113,116,102,109,95,91,108,101,103,116,93,95,102,104,85,109,100,95,107,93,109,117,106,100,112,72,96,106,108,110,100,92,83,89,96,109,103,102,99,118,88,100,94,102,85,94,96,104,113,116,100,97,92,102,114,84,104,106,105,100,107,106,93,100,96,98,99,106,94,99,99,101,104,79,103,105,97,109,100,95,99,104,106,97,90,96,102,101,118,107,108,99,93,92,106,98,106,84,99,99,90,100,109,99,94,105,83,106,97,97,104,98,108,102,92,99,110,99,106,81,94,104,110,99,114,103,92,104,108,104,111,102,98,94,79,109,95,98,99,100,101,105,107,101,92,113,102,111,91,107,97,100,99,97,114,94,101,106,89,104,124,107,94,114,104,100,92,99,83,104,102,92,113,111,99,101,101,96,101,107,99,96,96,95,100,100,102,100,96,91,99,116,94,98,101,102,106,112,102,108,101,74,104,93,108,110,92,105,101,106,98,100,116,105,91,87,86,95,103,101,107,90,102,79,98,94,90,102,105,99,108,89,95,95,98,98,108,100,103,97,100,95,112,107,98,104,98,104,99,100,105,107,103,106,95,113,96,103,98,77,100,94,106,112,98,96,108,97,101,101,115,107,106,100,109,86,100,97,93,106,87,105,86,118,105,96,96,97,104,88,102,115,119,106,105,107,100,102,95,103,96,100,96,87,100,117,109,107,93,96,114,103,105,100,95,98,92,108,95,91,100,93,101,108,106,92,96,111,106,98,102,118,94,105,90,107,111,127,75,128,100,99,107,100,116,99,101,94,101,105,122,101,117,98,89,92,79,89,94,102,102,108,114,109,106,109,99,100,104,106,94,101,107,106,102,100,108,104,101,93,110,110,101,84,118,105,119,93,110,95,107,106,105,101,104,97,99,104,95,104,95,97,94,104,103,100,95,105,105,96,105,112,100,105,107,100,103,96,98,102,103,102,110,105,82,91,103,97,99,119,104,100,100,100,94,117,103,106,105,104,107,96,116,100,100,102,94,98,103,102,105,108,102,104,99,101,97,94,109,107,103,103,112,97,104,102,109,99,106,103,98,110,90,108,99,118,101,104,106,128,106,107,111,100,111,98,94,101,114,114,96,109,94,101,99,95,97,105,103,68,100,99,98,99,102,105,97,94,99,99,107,100,90,94,97,99,115,100,104,79,111,101,113,100,99,101,98,103,97,103,105,102,95,107,112,116,105,105,98,106,109,97,101,110,105,112,102,103,102,88,112,97,104,96,112,85,87,98,109,100,109,91,112,107,103,94,91,100,107,105,98,101,100,106,108,95,94,87,104,87,98,100,105,124,105,101,95,99,94,99,129,105,109,103,107,103,88,98,103,97,105,96,97,103,120,115,101,92,101,99,109,97,101,112,105,116,99,108,88,88,100,87,108,95,97,105,96,98,104,109,103,100,112,99,105,108,105,92,105,97,107,90,103,109,100,109,108,119,101,102,102,107,103,113,110,103,101,108,92,117,103,74,100,96,102,103,106,100,85,96,102,100,102,119,90,97,102,107,101,107,107,86,95,95,121,109,128,99,72,99,91,101,116,117,107,101,96,122,95,108,96,95,102,99,104,117,99,104,100,111,115,100,101,84,101,90,89,102,106,100,117,92,98,101,87,107,113,100,100,102,71,107,104,101,101,93,96,100,103,101,103,105,89,97,104,102,85,100,111,97,110,98,106,82,103,91,109,104,95,98,88,109,97,110,106,109,107,95,109,100,105,104,99,87,98,105,121,99,95,101,106,97,101,99,102,91,103,103,109,94,100,113,96,84,97,115,96,103,102,103,108,96,113,98,103,107,95,102,109,97,107,101,102,112,97,102,100,111,101,92,110,93,95,91,105,96,96,112,95,91,109,104,94,106,88,106,101,105,87,107,118,87,102,95,105,98,99,91,117,95,98,96,106,92,103,102,109,99,105,98,99,107,119,98,90,100,102,98,98,102,90,102,99,101,100,100,98,101,113,112,103,109,101,87,103,101,104,103,106,113,106,99,98,95,98,105,119,99,95,102,99,102,97,98,94,102,98,90,95,105,102,106,107,99,100,110,76,98,112,100,106,94,92,99,100,91,99,98,112,90,102,101,102,109,103,89,99,107,94,102,106,92,94,103,91,97,83,106,98,105,106,109,116,98,109,95,82,64,101,104,95,110,102,109,108,105,108,102,100,109,102,100,111,115,95,105,104,131,92,101,92,110,103,105,97,98,113,109,99,98,96,109,102,96,101,111,98,94,92,107,103,95,97,109,109,112,91,106,113,106,104,94,98,99,91,101,94,104,93,101,116,100,103,103,115,117,101,108,98,94,104,109,104,86,101,106,103,95,100,105,104,95,97,92,107,102,103,108,91,95,96,96,99,103,105,99,92,101,109,83,74,104,102,103,103,98,109,117,111,98,107,104,99,97,107,98,98,89,100,100,105,101,104,97,110,107,97,96,100,99,106,105,101,89,104,106,100,91,109,105,109,105,107,93,100,94,96,106,111,102,110,105,109,92,99,113,109,102,105,111,104,107,102,119,105,96,107,89,99,99,103,101,105,104,112,99,101,108,100,98,101,103,96,101,105,99,104,97,108,100,100,112,71,102,106,102,108,113,100,109,108,104,100,97,101,82,107,113,100,105,91,95,98,111,114,112,104,93,95,101,106,116,98,92,96,115,110,96,93,93,107,100,95,120,116,112,107,115,97,108,105,99,100,103,105,96,93,93,107,102,102,127,96,104,92,96,98,106,102,95,106,93,97,113,98,98,100,100,95,94,104,102,108,102,107,115,94,80,105,107,108,103,98,103,96,113,102,113,103,97,110,98,94,105,108,92,123,97,92,104,115,107,99,95,104,99,106,108,102,102,87,99,99,91,92,101,105,106,96,107,100,105,106,89,97,105,106,111,103,101,114,111,110,110,105,91,111,99,109,109,96,97,85,96,101,112,106,94,119,90,96,86,107,96,98,92,105,109,96,100,83,99,102,94,107,95,110,109,106,106,101,96,109,92,95,91,109,94,111,104,110,100,78,110,108,110,105,102,87,99,89,91,80,100,102,104,101,101,95,97,105,101,107,100,99,102,89,105,107,113,85,112,108,108,104,103,110,108,99,105,109,101,112,100,103,100,115,96,100,85,100,104,88,99,105,105,103,105,99,101,101,102,90,107,100,91,100,94,110,79,90,95,98,108,96,106,105,116,106,104,118,111,101,93,100,99,97,97,111,106,103,104,90,102,94,102,109,103,98,91,102,113,95,101,92,91,105,99,101,96,105,111,97,94,104,96,101,109,105,113,106,103,96,103,100,105,112,82,106,99,98,101,100,97,94,113,95,102,116,81,104,103,89,102,94,109,98,105,121,96,91, +686.13873,119,108,91,98,103,100,100,76,97,108,113,98,100,109,107,95,95,110,107,92,99,99,103,95,79,100,102,97,99,96,117,98,103,100,104,109,94,92,102,102,99,103,101,108,100,95,101,106,114,99,116,101,103,93,104,97,99,74,95,88,104,96,103,112,105,104,101,103,103,93,94,97,100,104,81,114,99,104,101,104,122,99,104,105,103,102,104,106,101,95,104,97,102,98,106,101,90,99,96,103,106,110,98,92,95,96,107,95,101,101,92,96,104,97,111,97,89,106,98,96,106,105,106,103,109,124,105,108,96,102,101,98,100,96,91,110,100,107,96,109,113,112,101,102,93,105,96,100,99,93,105,98,99,99,92,105,106,113,99,94,100,103,104,104,113,105,110,104,95,90,107,101,92,99,112,97,114,108,106,87,104,90,109,116,105,104,100,99,100,101,99,92,99,103,94,113,88,103,101,105,103,110,101,97,109,93,97,105,103,123,100,102,106,114,102,94,107,87,100,102,88,102,113,98,97,106,99,106,104,113,105,87,108,105,106,100,85,106,101,103,96,94,103,116,101,113,93,104,98,109,101,102,101,110,99,113,104,106,95,109,93,103,103,95,104,99,106,103,106,95,101,98,113,103,101,92,95,105,113,107,98,101,98,120,94,106,95,100,110,101,94,114,101,98,112,106,110,101,101,100,107,96,91,90,100,98,102,92,95,110,106,106,99,98,103,113,92,99,104,91,98,96,103,98,103,104,86,99,121,95,99,116,98,104,110,96,104,102,96,102,101,98,97,98,101,106,90,109,109,105,95,107,115,111,110,106,98,109,92,93,101,102,100,106,113,106,92,97,102,108,102,98,97,96,107,111,107,95,105,102,104,112,99,112,89,87,94,102,117,113,107,96,98,106,97,82,108,100,96,105,101,115,102,99,98,99,103,92,103,94,103,102,108,91,105,102,108,97,107,97,101,92,94,108,107,95,96,85,93,98,114,100,109,94,107,96,99,103,116,110,103,106,97,92,77,99,111,104,107,106,103,97,101,98,119,109,110,101,109,84,103,88,115,105,116,86,110,103,108,108,100,108,101,96,100,90,109,94,122,104,97,108,99,95,103,101,99,98,101,94,105,101,108,100,110,103,92,101,100,89,112,93,99,104,99,96,98,98,91,105,108,105,102,107,94,105,101,104,113,101,109,101,91,115,117,114,110,122,124,104,107,101,100,95,114,94,110,101,105,100,90,102,112,103,104,106,105,97,104,104,103,103,99,122,100,91,113,90,107,100,94,92,114,97,102,98,106,104,111,101,96,95,95,109,107,99,88,96,95,96,97,108,109,101,101,105,103,105,111,84,111,100,95,100,101,91,98,105,116,99,86,115,109,98,99,99,101,113,96,96,96,101,98,110,101,99,94,103,107,103,105,99,108,97,100,109,99,95,107,96,113,99,102,102,114,117,94,109,96,108,108,100,106,99,96,83,91,86,105,100,97,113,102,108,101,107,111,99,94,113,110,106,111,106,91,105,110,100,111,95,106,99,106,104,90,115,110,105,100,90,104,98,110,109,106,90,83,98,109,85,103,96,100,104,94,98,103,102,102,92,90,95,103,112,92,107,104,84,99,97,96,110,101,98,97,104,70,101,101,97,95,94,99,97,99,97,109,118,95,112,101,112,90,105,95,103,103,108,113,104,107,103,104,108,96,105,102,105,98,104,100,94,99,96,103,94,96,118,81,99,92,110,101,101,97,110,96,105,108,108,109,95,102,91,96,98,97,107,94,95,103,102,112,105,100,101,99,103,105,87,95,116,123,100,91,101,96,102,109,95,93,103,96,107,102,112,95,115,104,102,103,100,91,104,103,100,106,95,110,110,115,103,102,103,95,109,110,92,109,107,104,103,96,109,96,101,101,89,92,106,103,108,105,95,99,98,95,85,90,70,99,92,99,103,102,99,101,131,97,106,108,102,109,97,102,87,103,99,109,104,99,103,104,109,96,89,109,96,93,90,108,101,101,98,96,90,105,108,95,109,103,98,107,98,94,94,102,108,91,107,104,109,110,101,94,103,97,113,113,106,101,95,99,94,91,97,104,106,85,103,100,94,108,90,102,99,102,101,91,100,100,106,102,97,102,99,98,117,101,107,100,95,96,101,85,89,105,88,100,117,100,100,112,110,106,102,96,99,96,90,111,101,110,105,103,95,82,104,84,104,96,99,112,88,75,97,101,101,97,102,110,99,103,104,106,101,101,105,108,106,105,92,102,121,111,88,95,95,101,99,102,92,95,99,117,102,110,102,101,95,98,101,107,112,103,110,95,103,107,105,106,109,112,104,99,96,92,106,95,114,110,106,115,97,116,100,104,101,108,94,92,105,106,93,97,102,113,97,91,97,95,105,115,104,98,99,111,99,102,107,84,92,103,114,102,82,93,109,95,96,90,102,93,111,108,110,99,95,104,96,102,96,88,104,106,91,101,100,107,94,109,110,83,97,96,111,96,96,103,112,99,99,102,106,100,111,91,109,89,101,105,109,109,105,111,95,90,114,94,102,106,91,108,92,116,102,106,108,113,108,86,104,103,87,117,94,97,87,107,83,99,100,103,107,101,108,103,110,112,88,99,114,98,96,100,91,87,111,100,98,107,84,102,92,96,77,100,95,105,97,96,115,107,98,99,87,112,99,100,104,105,110,96,131,107,116,98,95,102,111,102,96,91,103,103,99,111,96,95,115,110,96,102,102,101,102,110,119,101,110,91,102,102,94,100,108,104,103,102,105,97,115,91,115,95,104,95,92,94,101,106,106,96,110,104,105,98,103,92,95,101,106,113,111,95,109,104,105,100,107,105,94,104,109,104,115,90,100,96,104,104,105,103,100,105,100,84,96,104,87,97,105,88,123,113,98,101,93,96,108,102,94,108,108,92,115,93,107,98,108,96,95,98,99,102,128,88,90,107,111,104,102,92,104,97,90,101,109,87,93,94,90,98,101,108,100,98,98,112,104,101,103,93,103,107,92,101,104,105,102,104,81,111,100,107,102,109,95,95,102,92,106,95,104,102,111,99,97,98,99,81,105,88,107,88,91,103,93,94,90,110,111,104,94,99,106,100,113,94,91,109,98,108,117,114,103,109,107,103,101,107,93,111,102,108,90,109,104,96,97,99,104,106,105,107,106,113,94,98,110,104,96,90,106,97,92,98,101,100,94,100,100,95,104,102,105,93,102,95,104,80,102,102,98,99,100,97,97,108,100,102,98,102,100,109,96,109,95,88,95,103,125,91,95,83,114,106,106,108,89,97,100,121,101,106,100,102,104,106,109,99,105,96,98,103,123,98,77,105,99,101,80,102,101,116,103,111,99,101,98,101,121,99,94,116,105,100,100,100,108,100,96,96,101,107,108,96,108,110,103,96,95,102,99,98,99,104,105,112,98,105,105,90,100,99,98,100,90,107,98,96,106,99,98,83,101,101,94,102,88,106,112,101,101,110,97,102,99,98,94,96,113,95,108,96,107,98,109,96,114,107,105,78,121,116,113,102,98,104,104,98,97,95,100,99,103,106,100,86,90,103,109,95,100,109,112,100,101,99,106,88,95,84,113,113,87,100,98,99,106,95,110,102,97,105,91,98,110,97,103,90,104,106,101,96,98,98,105,96,103,95,108,101,102,98,94,107,104,102,108,115,113,100,94,97,106,107,100,100,93,106,99,111,100,103,98,117,104,115,101,93,111,109,101,104,113,101,96,105,105,98,106,104,110,109,109,93,113,91,112,98,104,109,96,114,104,108,105,109,109,99,99,97,93,112,112,103,88,109,107,98,109,102,111,103,106,99,98,110,108,102,83,110,101,83,84,105,94,95,93,108,108,98,104,103,103,94,103,75,105,99,103,104,99,100,92,99,94,92,95,95,104,92,112,107,86,69,93,101,101,106,106,96,107,100,113,99,98,110,109,108,105,81,109,96,99,100,101,116,108,112,105,101,94,117,99,90,96,96,102,92,100,104,105,94,85,94,104,102,109,109,97,100,105,98,94,94,106,105,109,103,97,101,104,101,101,109,104,106,100,100,105,116,105,100,101,104,111,107,98,98,104,98,105,102,106,109,103,100,97,113,101,114,110,103,108,104,106,97,113,102,118,105,99,103,93,105,98,87,108,103,99,95,86,110,112,107,111,93,91,103,113,106,112,103,102,94,107,99,112,101,103,99,101,107,108,111,99,103,96,111,93,103,103,92,104,108,114,111,102,94,105,96,104,100,102,103,103,101,104,120,94,111,111,106,109,109,102,97,96,96,91,93,102,109,106,111,98,108,92,95,107,80,107,104,110,126,97,109,102,102,107,101,99,102,97,107,117,105,104,104,103,101,117,107,93,106,102,112,71,102,91,109,105,98,95,103,83,96,97,95,84,107,111,104,110,85,109,113,85,111,95,109,109,98,108,89,90,108,111,89,102,104,106,98,94,102,93,109,88,91,85,105,108,94,101,102,91,106,97,94,92,97,117,99,93,101,107,94,106,100,100,89,93,97,92,102,103,94,91,100,92,99,94,104,96,90,99,95,110,87,96,106,114,113,110,107,91,121,92,58,97,107,103,97,94,108,102,112,110,108,100,89,101,97,94,110,99,106,85,104,121,101,98,100,84,124,105,101,96,104,99,110,115,98,101,103,97,105,108,103,99,100,91,102,106,99,103,102,101,106,105,97,115,99,102,96,105,106,112,98,87,97,99,111,105,99,100,104,108,96,92,104,106,78,100,92,106,104,119,94,102,113,95,96,109,90,98,109,129,95,101,127,95,104,108,96,106,95,99,95,102,96,95,92,91,94,108,98,93,100,99,98,97,96,102,109,102,109,92,113,85,100,113,102,96,95,110,98,96,92,115,97,96,93,102,104,99,105,101, +686.28003,112,103,104,112,98,102,95,93,100,117,117,99,112,89,102,102,99,99,96,92,108,97,107,111,120,98,106,107,106,103,102,103,98,117,112,87,107,101,114,96,95,99,101,100,106,107,109,79,113,106,90,117,105,107,112,96,103,106,111,99,117,105,105,90,92,116,95,93,96,103,117,105,99,96,98,115,84,102,109,98,95,94,90,96,98,100,103,109,113,95,106,105,101,109,95,102,89,109,95,96,94,107,89,94,107,90,102,96,100,97,103,109,99,107,105,109,109,116,102,111,95,99,107,99,101,114,102,97,100,100,94,112,110,110,118,79,103,105,110,90,98,113,106,108,102,92,111,116,98,104,102,98,106,106,104,108,112,103,113,94,98,99,108,106,108,95,93,104,127,105,92,111,96,113,102,111,92,86,95,111,101,99,103,104,97,102,90,95,104,112,103,129,99,95,94,107,105,87,98,95,99,103,106,99,95,108,100,104,113,107,106,105,102,99,101,98,96,112,98,114,103,104,101,120,101,104,101,103,96,101,106,103,104,103,110,102,105,103,108,111,97,110,112,98,107,95,92,103,101,117,104,99,101,101,96,95,100,105,109,113,90,103,113,102,103,97,96,110,103,102,104,104,102,103,104,89,104,109,100,110,95,114,100,104,107,117,95,96,111,108,98,106,114,99,101,88,100,102,99,104,91,101,120,97,100,109,105,103,110,104,88,105,112,106,104,90,105,91,89,112,116,83,109,97,107,110,101,79,95,102,117,100,101,109,87,123,91,94,99,89,98,101,103,92,110,98,110,102,111,102,110,103,97,105,103,77,105,93,103,118,102,109,106,107,104,96,103,91,102,113,100,102,101,108,112,97,103,97,104,102,102,112,87,105,103,98,102,121,101,102,100,96,92,121,84,105,99,100,100,105,100,98,90,88,93,108,112,97,99,90,109,106,117,97,94,106,105,101,104,92,101,99,99,105,84,95,90,94,104,93,96,87,108,96,108,113,113,97,94,107,114,98,96,104,92,113,128,102,99,117,101,103,111,111,94,101,80,97,112,98,97,108,97,102,117,102,114,105,121,99,109,109,99,106,96,108,96,102,102,102,114,113,117,100,98,89,113,109,89,101,99,100,102,99,103,101,107,102,110,96,110,91,91,104,103,99,106,102,104,93,98,112,101,117,108,95,113,91,117,79,114,101,98,107,97,105,122,106,99,106,99,94,91,106,98,97,95,99,102,121,97,104,95,112,101,89,87,100,97,107,102,110,101,84,109,99,124,110,93,100,113,103,108,104,101,99,100,97,107,100,95,100,100,114,99,112,107,114,97,102,90,98,101,111,116,101,102,109,101,107,113,123,105,101,106,114,106,97,105,101,107,88,103,100,103,92,107,98,99,102,110,93,103,100,113,101,90,137,99,102,112,104,91,100,104,103,105,108,109,117,106,106,105,82,84,99,110,104,109,96,122,103,103,103,91,81,98,93,89,108,102,122,98,113,109,100,112,109,97,84,100,105,104,105,90,91,102,97,107,103,95,105,96,95,95,86,105,104,103,97,99,98,114,107,101,97,108,103,104,112,101,110,91,107,117,91,106,109,106,95,89,96,112,99,100,105,107,107,93,114,95,98,95,113,89,99,106,103,102,106,107,101,103,101,106,101,105,112,106,104,111,100,93,105,109,97,113,102,100,103,99,86,96,104,97,96,109,106,104,92,105,110,100,102,102,102,92,102,105,98,103,111,99,113,97,82,103,113,104,102,114,97,96,103,101,104,101,84,109,94,95,99,102,118,111,103,101,125,108,107,94,103,96,102,117,102,103,93,117,97,97,103,98,100,105,108,107,88,99,104,104,104,95,117,120,121,103,111,103,108,94,107,100,103,109,108,114,109,110,114,107,105,106,98,113,106,99,92,105,114,110,108,105,105,96,89,82,108,100,92,106,101,101,94,107,97,98,94,85,92,95,106,95,103,98,103,94,99,110,101,97,94,108,98,98,102,104,100,93,86,101,106,108,95,95,106,93,95,96,100,103,106,113,106,106,94,113,109,97,110,101,100,99,99,98,94,98,107,95,103,104,111,113,98,102,99,91,112,107,107,107,112,105,107,108,98,103,105,96,95,95,86,109,103,105,82,84,108,103,96,103,105,97,105,109,106,103,104,114,105,104,114,106,112,95,101,104,114,102,102,104,104,110,112,93,102,103,99,112,115,106,107,112,107,108,97,105,92,114,105,99,112,98,107,98,102,98,97,92,95,100,105,103,102,98,101,100,109,95,117,102,102,100,103,101,108,108,107,109,103,92,109,107,109,97,68,107,104,88,105,111,117,114,93,94,99,95,99,105,121,110,102,104,103,101,92,105,103,110,102,108,104,102,93,114,99,110,116,107,111,105,121,98,102,85,105,96,99,99,93,103,108,111,98,116,103,109,89,118,108,92,110,99,97,103,100,100,96,87,104,115,106,90,94,102,108,97,101,109,96,78,110,104,100,98,115,99,65,106,102,86,83,99,105,105,101,98,101,97,82,90,94,107,114,105,99,70,100,101,99,95,95,98,108,107,95,82,96,100,100,105,107,103,69,106,105,107,95,92,93,100,82,95,93,96,92,98,102,80,113,112,105,103,108,102,102,95,104,99,95,100,102,92,97,99,103,92,97,96,102,100,94,93,110,103,100,95,100,99,101,95,97,106,84,138,97,103,106,94,101,93,97,102,100,99,97,112,115,111,112,107,93,105,107,104,104,108,112,92,92,96,97,87,101,99,107,97,105,113,87,119,98,98,99,111,99,99,105,113,108,95,108,100,109,98,99,128,100,105,91,112,105,109,102,99,93,102,90,103,105,102,80,100,100,96,104,99,109,96,94,103,104,105,101,96,89,98,96,104,97,101,87,84,111,91,100,94,96,104,108,92,97,107,107,98,113,92,102,105,101,111,106,100,95,112,102,101,90,105,107,99,96,111,107,106,103,113,96,96,90,94,104,96,98,101,118,99,101,91,98,89,92,97,96,96,96,98,109,105,96,92,105,137,113,92,98,95,113,86,95,91,83,98,89,107,109,100,95,100,88,100,88,99,104,74,85,100,89,100,89,108,98,102,100,113,99,100,97,96,90,100,97,93,106,107,105,75,98,116,98,91,92,101,120,97,98,93,94,110,97,91,91,92,119,100,98,110,109,102,106,90,98,96,85,96,106,99,104,104,96,103,107,99,113,106,95,94,101,92,95,101,90,101,96,92,105,103,105,110,93,104,92,106,107,113,104,107,101,95,107,98,99,100,106,108,94,104,115,100,95,95,116,103,98,96,100,104,102,104,102,109,106,100,95,110,101,101,102,92,87,102,108,105,92,97,108,109,100,104,105,99,102,110,96,87,102,104,104,105,95,95,92,111,100,106,117,91,95,91,116,99,95,102,97,90,103,107,95,109,100,96,105,111,104,95,104,95,97,96,102,95,95,93,90,114,101,105,101,98,92,104,117,101,97,101,102,98,95,99,93,100,103,100,105,105,97,112,112,91,105,101,101,103,105,107,112,117,91,89,94,100,95,104,105,99,98,93,116,86,77,107,96,113,102,102,102,94,92,100,98,90,97,114,98,96,97,91,100,98,106,94,109,99,94,100,85,94,107,96,97,92,99,93,105,106,96,96,97,98,98,102,81,93,100,107,98,102,98,100,110,101,102,98,109,108,100,88,97,102,99,99,99,101,111,93,100,101,106,90,95,102,93,97,93,101,95,95,97,104,98,106,101,97,92,110,94,89,96,95,117,94,95,89,93,109,102,98,98,101,100,95,100,96,97,102,103,111,105,103,95,102,95,91,115,104,102,98,88,68,96,105,101,93,93,105,112,91,109,99,91,100,94,97,84,98,92,107,98,97,102,128,96,90,96,90,100,98,96,99,90,101,100,97,100,104,102,97,88,95,92,105,87,123,120,102,104,97,96,90,97,98,99,88,105,97,106,110,98,90,101,104,98,91,98,120,100,99,86,108,114,112,97,99,95,94,98,104,96,105,100,105,98,96,114,94,94,109,96,105,88,92,108,82,103,97,112,97,112,102,95,70,109,101,97,102,105,99,103,95,73,107,107,83,99,108,104,99,102,106,99,107,102,104,101,107,117,103,100,102,95,96,87,82,92,110,98,97,105,96,113,106,98,70,89,111,105,82,99,92,99,93,98,100,95,103,99,95,104,88,99,100,101,97,102,106,99,95,111,114,104,83,95,96,108,95,100,82,93,91,81,96,98,92,101,87,92,100,105,113,98,95,94,99,97,87,101,100,99,92,98,103,107,104,91,105,94,103,100,98,95,101,102,98,89,105,118,97,92,108,98,100,94,104,112,108,86,109,100,112,102,106,109,113,102,97,86,92,101,109,105,97,100,119,107,101,90,114,107,90,96,97,100,100,71,100,108,79,106,88,102,116,91,118,103,92,98,97,112,97,103,106,122,94,100,100,93,89,93,128,97,77,92,98,105,108,91,98,94,97,98,98,100,93,105,106,108,109,102,102,102,99,80,87,97,110,103,100,100,102,107,101,101,105,103,111,105,94,98,98,92,95,116,106,72,109,111,101,106,93,102,107,105,95,74,95,105,97,100,107,103,96,113,109,104,98,102,109,104,117,98,107,99,106,98,105,100,113,108,97,112,101,88,114,130,84,102,95,102,98,113,90,98,108,108,75,93,101,135,100,100,98,100,105,87,111,99,101,114,91,113,100,95,90,102,102,100,96,103,91,99,109,97,100,101,100,92,88,109,102,99,101,94,103,93,102,100,93,90,87,102,97,104,100,112,99,85,93,104,98,88,128,103,101,94,106,96,93,105,87,98,112,105,94,109,78,91,105,106,104,94,113,102,111,102,94,93,101,95,106,99,101,91,101,95,101,102,96,110,102,75, +686.42133,87,103,82,102,95,92,105,89,106,92,99,99,94,121,108,100,125,106,105,98,108,106,109,87,94,95,91,106,98,113,107,101,100,107,99,93,95,99,95,103,101,99,108,108,100,109,98,97,96,99,109,104,99,99,114,100,98,103,116,96,95,101,97,104,104,121,90,101,111,91,108,98,101,105,91,105,97,99,112,94,100,97,96,96,99,93,105,107,97,86,93,94,106,91,92,101,103,95,110,85,99,108,98,88,89,94,91,112,109,101,87,85,91,95,95,98,101,104,119,96,98,108,97,98,96,76,105,96,103,102,64,103,98,112,106,102,91,114,93,109,110,98,95,108,100,106,101,104,101,91,90,91,97,96,93,99,98,110,99,96,87,98,95,92,108,92,100,98,107,95,111,107,89,91,96,94,93,102,115,100,99,93,98,101,99,87,91,91,92,97,106,106,99,111,94,99,96,98,98,109,110,94,95,110,101,97,102,92,111,100,102,100,100,102,96,96,97,98,105,99,103,104,108,97,98,91,116,101,97,98,96,96,105,105,88,113,101,107,102,92,101,99,122,92,96,108,101,103,93,92,102,99,99,110,100,103,99,92,94,96,92,101,98,91,94,100,103,96,94,109,99,106,108,96,106,92,102,98,95,103,96,97,99,101,100,110,95,89,108,104,101,107,95,101,108,99,105,128,93,103,102,97,91,101,95,115,99,110,100,113,100,102,103,98,118,105,116,102,99,95,94,92,100,109,103,109,97,95,103,102,109,113,115,97,103,105,97,101,98,99,106,95,106,97,104,102,107,86,96,82,94,101,102,106,97,98,96,96,105,88,100,98,88,87,109,104,113,111,97,99,110,105,105,105,88,91,95,106,91,100,97,98,104,101,90,84,107,102,99,92,92,91,94,111,96,96,100,86,104,116,97,103,96,98,81,99,106,97,108,98,82,102,104,109,106,99,101,99,109,97,97,89,112,106,90,105,90,103,114,94,91,97,103,109,103,93,103,92,100,103,117,104,101,106,90,99,92,99,99,109,77,107,108,101,98,104,104,99,105,97,101,91,100,106,98,104,107,93,107,97,103,106,100,92,107,98,106,97,111,93,91,88,111,100,81,98,95,101,94,90,109,113,101,103,97,76,86,101,91,100,113,108,100,102,96,110,98,99,109,105,106,100,106,94,99,91,105,91,96,102,101,95,101,101,112,94,104,86,100,106,106,104,101,116,89,102,102,102,103,114,112,107,101,94,105,98,101,96,96,97,101,108,98,98,103,100,94,105,105,93,99,96,92,111,108,94,98,94,96,85,95,101,98,114,97,103,98,101,100,100,102,91,113,98,92,101,112,100,105,96,96,104,106,91,107,105,108,94,100,97,102,103,99,103,85,97,99,90,113,103,99,100,101,101,112,97,104,96,95,104,92,98,100,93,89,116,99,108,102,93,108,85,103,95,96,102,92,99,104,101,104,104,101,99,90,92,101,103,102,105,97,104,99,101,97,102,98,116,99,104,100,84,104,101,86,85,104,98,104,103,98,83,94,100,100,98,99,97,99,91,102,107,99,101,94,97,107,84,99,98,103,103,104,114,103,96,88,105,100,114,103,99,102,100,98,109,118,116,76,106,97,102,103,94,90,103,139,105,102,110,116,91,93,68,103,102,107,97,104,105,105,105,92,94,111,96,111,108,104,103,95,103,97,105,103,95,108,113,86,120,115,103,102,99,110,109,93,96,93,93,94,118,105,107,97,97,89,106,104,100,106,95,99,100,113,100,123,102,95,97,105,90,107,106,81,99,97,118,100,100,101,105,100,102,100,98,93,110,102,99,106,116,95,101,101,99,93,101,90,96,106,95,97,99,105,87,98,106,108,109,83,103,104,101,92,108,110,104,103,100,108,108,108,104,104,100,105,100,101,107,97,94,107,95,96,105,93,98,100,108,116,95,91,91,102,99,94,121,96,104,105,141,108,96,91,99,92,89,108,100,109,101,96,106,99,94,97,89,111,105,101,93,97,107,111,110,102,105,106,105,118,98,102,112,86,98,103,104,113,98,103,98,95,102,101,81,95,93,104,101,112,112,98,100,96,105,107,97,98,96,100,103,94,114,82,105,96,105,95,109,114,101,109,101,104,115,108,98,98,108,100,96,109,111,93,100,100,83,96,96,87,103,104,102,112,104,98,106,94,101,102,98,94,103,105,95,105,100,119,104,96,98,89,96,90,102,101,97,99,102,103,95,109,84,91,100,98,103,100,96,101,92,91,127,100,91,102,92,103,110,99,102,96,95,94,100,108,104,73,106,105,111,98,103,103,106,97,94,104,94,94,104,102,66,100,108,110,101,112,103,111,121,107,99,98,112,103,90,104,92,92,108,96,97,99,105,101,113,102,101,109,98,107,109,105,100,92,95,108,89,66,100,92,116,102,100,95,103,92,101,114,106,95,115,104,101,109,108,96,108,106,98,104,112,104,123,93,112,105,103,107,98,110,100,105,100,98,96,105,100,104,87,121,102,99,92,102,105,105,99,101,104,101,101,106,91,92,94,100,102,102,91,90,100,100,101,113,91,108,102,108,99,108,100,109,100,102,128,101,101,105,99,109,109,95,118,104,101,117,100,111,96,107,98,97,107,95,89,102,89,116,87,91,79,83,98,101,103,88,95,106,98,105,116,105,96,113,103,112,97,98,98,92,104,102,99,105,102,105,94,103,93,92,111,107,100,97,96,89,104,103,94,98,105,106,111,92,105,102,101,105,111,104,93,96,109,88,102,101,107,92,109,96,110,105,107,95,104,97,92,95,121,101,111,93,109,107,111,66,100,106,110,105,91,101,94,109,106,94,96,105,84,100,97,112,100,100,96,105,103,67,109,109,107,107,96,89,103,100,126,111,97,100,117,103,99,92,91,91,118,106,101,106,102,98,101,101,105,105,102,106,92,93,98,106,105,103,97,102,121,83,94,91,111,90,99,95,112,90,114,95,102,103,104,115,95,102,102,110,100,92,102,98,94,109,96,113,93,103,104,103,96,104,105,113,94,90,93,95,106,101,105,99,103,101,96,104,83,102,102,96,104,99,105,90,100,122,66,96,88,104,105,105,105,91,87,68,105,95,91,94,96,100,102,113,96,102,109,82,95,98,109,107,95,97,100,102,109,104,96,92,105,103,102,100,106,96,96,101,98,96,113,99,99,104,125,102,100,106,117,91,97,105,100,95,95,101,106,102,104,105,100,78,87,98,102,99,92,96,94,103,95,105,107,92,100,110,105,89,96,95,100,104,92,97,104,106,108,99,97,100,106,102,116,93,104,98,114,91,90,103,105,102,92,101,91,95,102,103,87,96,116,99,94,108,105,96,116,96,90,101,88,100,104,104,106,103,107,94,100,103,104,98,102,104,92,105,100,95,98,100,98,106,94,75,101,100,83,83,94,92,97,99,87,100,98,104,108,99,101,99,111,104,84,95,94,113,104,119,104,99,101,111,89,106,104,97,103,114,96,106,95,103,116,94,91,101,104,103,87,113,106,106,107,101,109,127,104,93,105,103,107,96,127,106,95,93,96,113,102,98,92,97,96,99,109,97,100,103,96,106,112,98,93,105,93,115,97,114,97,93,97,98,98,108,97,96,103,87,112,106,103,112,100,100,104,111,95,105,109,94,106,101,104,101,96,103,107,113,94,95,97,103,101,100,97,106,108,95,105,105,99,96,102,87,102,100,111,106,99,103,102,104,91,85,106,100,104,109,96,104,106,102,95,95,109,99,108,100,97,83,96,89,100,95,89,96,91,102,104,111,113,104,108,103,101,96,84,105,103,106,103,110,100,98,108,104,106,93,104,93,103,95,96,93,108,98,101,110,88,103,103,107,113,100,106,94,91,102,94,99,85,100,90,118,102,95,89,97,81,88,86,101,98,99,106,98,89,98,99,95,101,99,108,101,108,104,99,102,98,86,101,82,92,100,96,109,99,86,108,106,92,101,103,110,94,100,111,83,101,97,103,98,104,96,113,96,103,110,96,101,96,99,113,96,93,103,116,108,108,92,100,97,85,107,99,104,92,111,100,99,102,101,90,114,109,97,88,93,103,107,104,93,92,98,101,93,106,105,95,108,95,116,109,93,104,96,99,107,120,99,101,92,98,92,96,101,106,98,100,97,103,88,89,78,91,113,104,109,98,102,106,100,111,100,106,97,91,112,101,103,93,115,125,89,101,95,98,97,105,96,105,99,100,100,97,111,113,93,108,89,105,103,95,99,102,108,107,98,109,107,97,115,98,100,121,106,103,96,100,87,100,98,105,104,99,104,108,99,103,100,94,101,104,107,100,98,102,99,98,109,87,104,108,109,100,112,99,109,94,104,101,110,101,92,107,111,106,98,98,95,115,103,121,94,101,102,109,94,111,89,90,99,97,90,111,104,98,106,101,95,102,89,100,95,97,105,100,98,106,92,109,96,121,112,95,107,97,104,105,109,112,109,105,101,85,104,103,103,113,102,93,100,107,115,109,97,96,98,111,73,108,103,101,96,95,115,106,99,106,95,100,95,98,91,96,96,97,114,96,107,106,109,99,107,89,96,95,98,85,105,93,113,100,109,101,97,100,99,102,101,104,104,98,101,99,106,105,91,96,111,93,93,98,110,109,89,99,103,96,100,110,102,108,117,91,102,88,101,105,85,91,105,101,108,101,103,96,108,104,98,102,107,93,99,110,83,99,109,105,100,92,100,108,97,93,113,84,117,96,101,104,91,94,95,105,76,89,97,102,101,104,104,113,92,104,109,87,84,104,98,101,98,97,91,79,96,108,98,97,96,104,94,92,95,105,103,112,113,105,102,97,99,99,98,103,91,94,102,102,106,91,96,111,102,93,106,103,83,93,94,81,115,97,102,94,118,100,61,103, +686.56262,109,95,88,105,78,90,92,95,94,132,98,118,104,121,96,90,100,100,101,93,103,96,77,124,107,104,107,104,111,98,105,104,94,103,111,101,113,95,93,113,95,100,105,94,85,113,112,101,105,107,105,95,133,102,92,97,113,102,107,105,98,96,97,113,98,100,73,102,88,99,105,100,108,112,107,102,97,100,99,105,95,97,126,106,110,99,85,98,96,94,100,99,87,102,107,89,114,97,99,96,95,113,96,93,90,106,105,104,98,91,102,95,105,103,84,99,108,102,100,101,105,97,91,108,117,103,114,107,113,109,87,95,103,108,98,115,95,101,94,91,108,101,92,100,98,98,101,100,108,95,94,107,109,86,91,104,115,106,107,93,101,99,102,101,102,106,98,101,99,96,95,99,105,99,109,105,120,99,107,102,95,104,97,109,107,101,107,102,94,104,97,106,106,104,106,119,93,91,114,90,102,97,98,107,95,104,113,115,110,99,96,113,110,109,101,98,101,96,102,95,114,112,98,107,110,108,82,96,103,111,88,113,112,113,100,102,106,110,94,90,79,103,108,105,101,104,100,86,103,91,101,99,92,87,96,105,98,114,95,95,101,102,113,96,109,98,91,109,101,105,107,95,113,101,99,110,100,94,83,88,103,97,111,96,94,101,93,104,110,104,108,93,99,96,101,95,100,105,94,101,100,102,108,105,100,101,98,104,103,110,93,104,103,99,96,106,81,107,99,96,105,96,104,108,93,104,96,93,108,103,93,114,97,101,101,114,102,101,105,108,105,98,84,96,99,108,90,104,113,99,111,102,102,112,104,103,108,110,101,107,110,113,105,100,109,93,105,91,97,101,104,100,104,95,107,92,98,94,120,87,99,101,96,118,107,107,95,103,98,98,100,102,105,107,92,94,96,98,101,100,94,88,102,100,97,95,99,109,123,91,85,106,106,101,96,101,106,98,106,94,102,97,105,100,96,99,94,100,110,100,100,105,97,104,110,119,106,107,105,111,101,102,109,103,101,107,106,96,102,106,111,98,92,107,95,109,98,101,102,118,98,103,88,112,104,120,101,112,121,104,101,103,95,108,103,97,103,102,117,103,117,107,96,100,94,93,101,104,102,99,100,108,110,100,102,106,96,96,91,94,104,105,104,111,104,101,109,109,101,104,124,102,102,100,102,109,102,94,108,95,111,100,94,104,105,99,114,94,97,87,97,100,104,98,83,103,99,102,93,107,99,104,105,98,101,99,100,90,100,104,92,94,108,102,107,107,104,97,96,106,105,99,84,98,92,107,115,100,95,105,91,100,111,101,120,101,110,93,103,89,110,99,98,103,91,95,108,117,104,95,117,107,113,101,108,103,102,105,104,108,116,110,95,98,95,108,91,98,94,98,99,95,97,100,122,100,97,65,98,83,100,97,110,108,92,104,95,106,110,100,89,101,110,96,110,98,95,99,102,102,107,87,106,96,108,101,95,104,102,83,88,106,101,102,101,116,107,106,97,108,113,107,113,101,88,96,103,103,103,104,100,96,92,92,94,99,111,86,99,104,100,102,95,96,118,112,127,102,101,96,107,103,87,102,104,107,98,104,110,93,104,87,107,96,94,97,94,110,88,98,104,104,104,109,98,110,102,100,103,96,105,107,92,105,99,96,106,91,99,91,105,101,90,116,102,95,101,104,90,91,99,102,93,98,101,100,102,110,78,117,105,103,100,107,94,99,103,99,81,82,95,102,98,104,92,99,97,105,105,97,102,100,99,98,106,109,101,99,99,110,102,97,101,94,94,127,102,100,94,92,100,98,98,110,111,109,104,92,108,114,92,111,97,115,103,100,105,101,90,100,122,96,97,95,107,92,103,98,109,92,102,97,111,95,101,106,97,107,108,110,97,80,100,102,99,105,106,95,89,103,88,98,119,81,105,101,94,98,105,105,101,92,106,108,109,104,106,103,91,116,105,101,107,97,101,108,100,96,108,83,97,71,100,107,105,90,97,98,99,107,102,99,99,101,91,95,109,105,95,106,102,98,89,109,102,94,101,103,109,93,102,105,99,110,112,104,91,106,98,99,99,102,109,93,103,112,96,93,98,100,104,102,101,103,100,118,105,111,107,108,108,105,94,112,89,96,96,99,100,95,70,100,96,102,100,104,113,98,87,111,100,106,105,109,96,101,109,103,97,109,108,100,97,107,105,100,106,109,101,98,102,103,99,102,102,94,96,106,100,92,110,106,102,97,102,112,100,104,109,94,121,94,129,106,96,100,98,116,94,98,99,102,106,105,117,97,97,89,103,122,104,97,102,103,106,101,106,100,117,102,115,113,113,88,109,109,90,102,108,115,103,107,103,97,105,97,113,87,87,97,98,103,103,92,95,100,101,103,100,111,90,103,103,91,108,98,101,101,105,91,86,103,104,107,98,112,102,106,113,105,89,107,100,95,95,125,98,105,96,108,94,104,105,104,103,103,96,69,104,103,113,109,107,90,94,94,102,104,115,110,106,91,120,113,96,106,100,100,108,98,98,106,94,98,100,94,101,108,100,103,93,97,91,100,105,95,109,104,95,99,111,115,99,100,103,101,108,104,109,91,98,102,99,97,104,106,93,101,111,99,99,107,98,83,98,108,100,88,102,100,112,103,116,94,110,117,94,99,100,86,102,102,109,102,92,111,95,79,113,95,103,113,81,113,95,98,119,100,107,104,89,101,96,103,99,102,103,91,103,110,117,107,97,112,91,98,101,109,101,104,110,103,108,79,104,106,85,100,112,95,101,115,94,116,98,100,88,101,92,104,94,108,93,101,106,115,89,99,87,108,104,121,107,105,98,108,106,114,102,100,107,97,99,100,98,107,98,107,99,105,112,93,101,105,100,105,102,99,101,98,98,104,104,102,117,98,94,98,103,105,96,113,101,113,95,121,104,108,121,96,102,99,95,110,95,106,100,96,103,107,94,83,93,106,108,115,113,97,115,95,103,105,115,110,103,109,97,93,105,104,102,105,99,97,104,99,107,109,105,98,96,98,98,101,107,91,94,108,103,107,97,104,95,97,98,110,107,91,87,101,106,95,99,95,98,98,103,96,108,93,107,106,101,110,106,93,114,102,100,99,99,93,113,107,98,87,96,104,94,77,107,86,92,97,101,89,100,106,95,113,92,94,109,115,107,98,108,86,99,113,103,103,107,107,97,113,93,115,108,102,92,91,106,107,122,92,104,115,109,99,102,104,83,119,94,110,125,96,95,104,94,101,93,102,96,105,90,110,107,96,102,105,99,95,95,104,117,105,98,107,121,117,97,103,90,85,110,103,109,91,96,95,98,94,104,94,102,101,103,98,95,95,100,108,95,97,100,102,105,94,92,107,97,100,99,105,100,105,106,99,84,108,96,84,109,98,104,104,103,96,88,100,90,93,100,111,95,108,97,110,95,114,98,96,108,108,105,114,108,90,106,93,91,97,95,95,100,96,100,98,105,98,98,92,95,106,101,100,109,99,96,100,109,101,99,98,96,93,94,104,107,103,104,108,104,111,101,105,94,101,114,102,102,95,111,82,105,109,104,92,110,94,109,103,103,99,97,98,117,97,98,94,87,115,110,91,113,105,98,108,89,112,95,95,77,99,113,103,103,105,89,97,87,106,105,101,105,98,83,102,105,94,93,116,89,105,101,100,105,100,99,110,102,104,94,118,103,103,97,98,113,100,97,108,95,104,106,99,116,94,97,98,96,105,88,105,97,98,111,105,90,87,98,104,113,95,107,94,121,98,104,84,102,104,104,95,96,109,110,89,94,100,97,97,105,98,137,100,88,92,104,92,96,87,95,105,107,110,91,111,117,109,98,88,108,86,98,121,105,100,120,100,90,92,99,95,94,94,106,106,103,105,97,117,102,100,96,97,101,103,114,95,102,97,99,92,98,91,104,90,96,100,105,100,102,102,113,99,104,108,102,104,90,73,65,96,105,93,108,99,108,105,102,117,97,98,96,93,101,93,110,106,100,107,105,102,96,88,109,105,116,103,99,103,101,108,102,106,101,91,109,98,101,97,100,84,108,99,115,87,92,100,100,94,105,113,116,101,113,94,96,99,102,93,95,98,96,108,97,98,103,94,106,112,106,103,107,117,113,106,86,95,101,108,95,107,102,106,113,87,102,101,96,74,106,111,104,103,95,104,109,96,109,110,101,96,87,104,101,107,109,89,103,104,98,102,104,102,107,104,102,106,101,90,107,97,109,103,103,100,96,94,120,105,116,110,105,98,104,113,110,86,114,97,104,77,96,99,99,126,104,104,103,94,97,103,91,101,103,100,109,109,125,102,105,122,112,105,95,104,107,105,103,99,105,87,92,103,94,83,105,110,99,98,96,101,96,99,100,99,102,107,109,94,107,103,109,96,110,79,102,91,103,124,91,102,108,102,102,94,106,98,105,97,98,108,104,104,90,101,103,96,111,116,104,90,112,94,93,96,97,87,72,101,94,99,108,108,100,101,93,102,103,109,104,102,128,116,105,97,101,94,92,87,106,92,107,113,102,130,103,111,100,95,111,89,112,107,107,97,103,90,101,114,98,99,117,109,97,101,94,83,112,101,87,97,89,97,100,102,110,105,91,110,100,100,105,102,113,107,103,91,112,99,102,105,88,94,97,106,106,104,92,104,98,104,100,106,99,106,99,96,103,105,102,95,109,126,97,94,102,100,111,106,113,102,104,106,109,94,94,98,108,106,105,102,96,100,140,97,110,107,100,113,107,100,98,113,95,103,95,98,105,104,100,117,105,100,92,108,96,102,96,89,79,92,94,105,105,100,107,87,101,97,101,110,95,93,101,99,88,96,90,92,98,109,107,106,97,97,91,106,111,114,98,102,96,109,92,98,101,91,113,99,101,109,118,96,104,92, +686.70392,99,104,90,93,96,93,100,76,102,93,72,108,118,111,113,97,88,98,79,99,86,87,92,95,87,100,97,102,103,108,92,104,129,105,96,107,83,97,100,96,127,108,97,107,98,125,107,92,94,104,89,102,97,87,98,98,99,95,98,82,91,105,96,98,101,101,98,116,100,101,102,98,109,103,99,88,107,100,102,103,98,96,107,109,103,100,95,107,93,98,109,111,103,108,90,96,103,93,105,93,107,98,102,90,101,98,100,101,100,88,100,99,109,100,108,99,96,95,107,106,106,98,115,107,114,101,103,86,102,105,94,101,101,95,102,103,97,97,96,96,102,85,96,101,98,98,108,95,89,109,99,96,103,105,100,88,97,98,109,98,104,97,104,102,109,95,95,94,101,96,105,101,116,105,110,117,108,97,119,107,100,85,95,104,101,95,101,99,97,112,99,95,99,112,114,116,102,103,112,101,98,109,101,101,95,87,106,102,111,106,98,98,103,113,114,91,92,98,96,101,95,91,103,99,106,100,107,112,100,102,97,106,104,100,99,92,97,87,106,105,93,76,110,110,94,93,100,101,100,106,97,100,107,87,101,113,99,95,113,102,94,100,93,103,103,86,100,102,95,104,117,105,106,98,107,109,107,102,104,104,98,84,101,108,101,105,97,100,97,99,92,100,105,101,110,113,100,94,104,104,98,104,99,104,99,109,95,102,102,96,98,97,97,99,98,97,98,103,109,99,99,109,101,101,113,113,101,100,91,101,101,97,104,104,104,96,120,83,101,100,93,108,106,112,110,114,95,118,102,101,106,101,110,106,113,97,107,105,119,110,102,97,94,92,99,98,111,129,95,84,102,109,116,99,106,105,100,109,100,110,104,103,87,105,91,102,117,103,96,95,107,96,101,103,97,93,99,98,98,99,117,104,99,98,115,97,97,103,102,102,91,96,102,104,107,104,105,111,104,104,107,108,106,102,110,103,90,92,106,102,83,100,92,100,95,112,104,98,106,100,100,95,104,97,97,112,107,104,95,105,105,96,70,108,95,98,111,112,104,105,85,68,111,107,102,117,109,104,101,101,95,101,102,95,100,101,91,109,100,108,96,98,96,101,109,97,105,101,98,103,108,108,117,112,89,95,94,109,100,93,100,82,113,107,103,109,83,101,116,114,107,99,98,98,99,96,96,96,105,97,93,104,104,97,102,103,95,98,98,99,105,99,97,105,99,99,91,102,103,93,86,107,96,94,95,93,105,93,101,92,100,101,110,114,112,94,110,109,101,101,89,106,103,99,99,99,105,110,114,100,100,101,97,105,109,92,94,104,98,86,102,97,81,113,110,112,105,98,108,106,106,98,101,111,108,99,114,91,107,111,102,107,112,87,95,92,113,94,105,108,105,102,107,101,99,109,102,110,96,110,109,95,99,97,105,117,96,107,94,100,95,100,107,104,99,98,102,100,101,104,114,78,76,99,86,90,96,96,102,103,101,115,101,100,83,106,105,105,113,101,78,95,106,103,99,108,110,91,98,107,102,107,110,109,103,111,108,104,101,104,118,103,101,96,110,107,101,115,96,102,104,100,82,123,95,90,93,108,111,101,107,109,97,99,98,113,111,107,109,101,124,102,104,95,94,103,93,100,101,102,110,92,101,94,89,102,96,111,102,108,116,112,99,118,100,106,113,110,105,88,116,92,95,109,104,107,93,117,98,114,105,104,118,96,106,99,103,106,105,112,103,106,96,95,96,112,105,105,94,102,98,103,100,97,100,94,109,105,105,97,96,101,117,118,109,101,108,110,95,103,91,116,101,115,98,107,88,103,106,111,98,102,96,99,103,103,104,104,114,103,119,95,91,100,112,100,105,110,106,109,96,100,106,107,106,95,101,94,104,99,106,105,101,90,102,131,105,102,105,108,95,106,105,96,94,96,101,94,110,94,102,99,91,91,95,103,102,99,82,110,108,108,98,98,104,108,95,97,99,90,99,96,95,101,113,94,107,96,104,100,105,95,104,101,96,107,119,103,101,96,110,106,103,102,102,98,116,106,100,99,95,99,108,102,103,103,84,113,99,108,106,103,102,118,75,97,96,107,94,109,101,104,99,97,110,93,102,104,92,103,86,107,113,113,102,112,95,99,98,114,107,121,100,104,92,105,102,107,114,110,96,108,91,103,99,98,110,101,115,108,110,102,115,112,112,91,96,110,100,97,97,103,108,89,98,98,105,93,96,106,100,96,101,102,99,109,98,96,94,101,99,101,104,93,105,95,106,101,103,100,101,110,99,96,107,106,102,95,95,110,100,104,110,96,95,117,115,106,74,90,121,107,106,85,102,98,93,112,94,113,125,103,112,96,107,82,105,107,102,105,109,82,74,108,101,101,104,112,106,127,93,103,109,107,97,97,105,124,102,103,102,118,105,110,98,101,83,107,102,99,97,113,111,100,93,99,93,106,99,99,107,98,86,100,107,110,95,99,99,104,116,117,100,83,97,97,106,102,107,101,99,80,99,98,81,90,98,97,84,103,108,110,100,88,111,84,94,106,97,105,87,95,85,94,107,95,82,95,106,105,95,89,103,91,109,98,94,104,97,92,100,99,92,101,104,108,106,104,105,90,105,95,113,98,107,101,96,107,102,100,91,92,98,94,106,113,105,97,97,103,98,95,126,96,105,102,109,98,103,100,106,105,98,94,102,104,101,144,100,108,96,89,112,116,103,103,111,86,83,96,105,109,102,96,95,109,117,108,103,93,104,105,98,107,99,100,117,98,100,104,113,93,89,103,101,101,101,102,107,101,93,101,96,108,103,109,101,101,103,95,106,91,105,103,96,106,105,91,109,94,112,108,106,96,100,98,102,102,101,84,95,100,100,112,105,113,96,100,109,109,105,112,102,106,82,100,97,104,103,97,88,108,106,95,105,93,99,105,112,98,98,113,108,101,102,112,103,96,101,97,102,102,99,109,104,105,97,107,109,92,100,99,97,105,106,111,91,109,107,99,117,109,101,102,101,105,101,95,112,95,100,103,106,116,105,95,97,88,96,82,116,104,116,93,100,106,92,96,102,105,102,90,92,93,87,95,103,103,105,98,103,101,108,107,106,102,98,112,104,103,108,105,110,111,105,116,76,109,109,107,98,101,108,107,111,102,107,109,102,110,105,100,101,94,94,99,90,98,99,90,112,90,93,97,98,96,95,102,104,103,112,95,97,117,96,88,101,109,98,118,93,109,96,99,78,118,100,93,109,109,107,107,108,102,98,91,102,104,106,91,104,98,117,101,88,94,112,122,108,103,87,98,106,96,99,106,108,111,102,97,99,108,110,101,96,112,95,91,100,86,71,112,100,102,103,113,101,103,121,98,96,83,101,99,103,92,101,104,94,102,108,105,97,109,98,101,89,94,77,94,103,102,98,95,90,97,106,91,107,102,98,92,100,98,99,106,107,107,99,77,95,109,91,109,91,93,109,87,106,102,108,103,104,96,91,95,88,100,107,94,107,100,97,103,105,108,93,98,100,95,105,102,106,101,107,93,106,106,62,117,96,105,97,95,106,115,103,113,105,106,109,97,103,103,93,93,91,109,116,102,94,92,95,100,101,91,91,96,96,108,96,111,110,95,99,96,102,107,87,99,91,105,107,97,90,88,106,93,93,105,102,103,81,106,97,105,104,101,108,105,103,70,109,97,97,101,102,95,96,100,94,112,105,102,104,94,102,108,98,114,115,110,95,100,103,92,109,95,93,98,109,95,107,95,100,104,88,91,109,108,94,79,100,83,89,99,109,111,103,105,94,113,87,103,99,96,105,105,94,108,109,96,99,109,101,102,103,98,96,91,91,106,108,114,91,102,101,112,92,97,101,104,112,97,102,88,90,92,107,108,100,94,99,98,106,105,96,103,95,95,96,89,101,105,101,103,101,92,102,109,100,108,97,99,92,95,99,115,107,102,96,100,91,112,87,102,109,109,100,91,111,98,96,101,91,97,95,102,99,81,96,101,98,111,109,93,101,100,117,102,99,104,93,98,112,103,113,106,95,87,108,106,93,96,109,100,111,106,104,98,99,102,97,97,92,105,108,109,114,100,100,94,92,117,91,109,99,117,104,104,102,99,104,104,104,90,101,91,100,100,103,95,102,106,97,99,100,102,113,109,87,116,93,90,107,100,110,102,93,91,103,83,91,101,102,102,100,119,126,99,101,99,98,99,102,107,104,98,107,118,90,100,105,94,103,111,112,108,95,91,104,103,105,111,96,95,87,94,102,109,104,103,117,101,97,89,98,88,83,102,95,124,106,105,94,120,98,99,107,108,87,113,107,94,97,98,99,105,101,109,96,102,99,99,94,137,111,104,97,97,114,101,106,114,100,97,108,62,102,105,92,97,93,98,93,104,113,97,95,79,96,93,108,100,106,101,101,110,102,103,116,107,95,102,99,100,104,86,108,99,87,111,91,102,96,100,102,101,110,109,101,100,101,105,104,96,106,112,104,109,106,95,87,109,98,110,99,109,95,97,102,103,97,96,105,95,106,107,88,105,104,102,108,118,111,94,94,84,103,102,104,117,101,91,97,107,95,96,99,94,111,107,100,98,104,93,100,87,92,103,96,106,107,106,104,66,105,104,107,105,105,107,100,94,119,98,113,103,89,106,101,98,102,91,106,90,113,113,122,103,111,91,104,112,102,96,108,90,109,117,97,109,96,87,107,98,114,95,105,96,110,109,106,99,93,102,106,98,98,121,100,95,88,94,101,108,99,110,95,94,85,106,110,106,104,95,93,88,89,96,106,103,95,96,102,105,98,117,93,100,136,105,105,98,104,105,108,96,94,112,102,99,105,92,97,100,95,104,91,91,87,95,91,90,106,95,102,112,87,108,113,105,79,89,76,109,115,107,104,86, +686.84521,87,108,90,97,96,106,102,93,107,98,96,100,107,100,108,93,106,99,96,94,102,102,107,99,107,95,112,104,106,115,99,106,94,96,99,107,117,77,91,88,104,89,98,101,102,99,96,103,92,92,70,131,108,97,96,90,112,99,94,87,105,106,102,92,112,111,93,109,113,104,102,111,102,110,101,104,97,114,94,93,106,94,99,104,90,99,99,97,98,109,105,92,83,103,113,108,131,93,95,97,96,93,95,95,99,101,93,108,99,94,99,94,102,106,104,111,108,101,101,105,104,107,106,80,103,107,105,91,111,103,115,116,70,88,101,112,98,94,105,94,91,110,100,95,100,95,94,99,91,101,102,100,103,100,96,103,98,92,98,95,96,85,95,92,116,96,101,87,94,78,106,96,120,113,107,99,107,89,102,110,104,125,108,108,109,101,97,90,108,98,102,95,107,98,96,111,106,100,103,92,103,105,90,102,79,113,98,107,106,107,109,110,105,99,108,101,93,101,89,118,110,107,98,96,113,100,124,111,101,95,109,105,107,97,95,102,105,106,109,93,127,105,103,114,104,104,87,99,105,93,104,97,102,103,101,99,97,103,90,102,91,103,116,95,95,102,108,101,102,103,105,82,113,101,116,101,118,106,97,119,90,108,93,98,100,118,117,103,96,112,100,108,109,103,104,103,102,106,115,99,97,105,103,110,99,110,97,96,69,114,102,106,100,105,99,93,97,102,106,110,99,108,106,108,105,108,96,94,111,123,98,104,93,103,110,97,104,105,107,104,102,104,103,106,103,96,107,104,106,107,79,109,103,114,98,106,120,99,109,102,98,103,107,100,109,110,100,103,101,108,101,102,125,107,95,91,104,102,100,95,114,103,95,95,111,100,92,101,107,105,105,93,91,106,89,101,72,94,101,109,95,99,104,104,103,91,98,99,70,108,95,109,104,128,115,94,104,102,98,106,89,86,91,91,104,99,102,109,96,109,99,106,98,102,91,103,99,109,83,82,108,99,105,125,98,94,106,94,110,106,110,99,102,113,115,101,101,104,102,101,77,109,98,117,101,104,114,98,109,100,95,108,98,104,111,108,100,109,105,111,105,106,105,103,108,118,101,100,113,91,100,103,94,103,99,100,103,94,98,101,110,98,92,104,110,100,92,105,89,97,126,91,103,106,103,100,94,95,102,107,94,103,114,91,95,104,110,95,100,94,100,95,103,98,113,105,103,111,106,105,101,104,102,101,103,107,109,98,103,107,95,100,100,104,110,108,105,94,100,100,84,101,100,104,92,100,112,111,98,96,98,93,113,114,112,106,96,103,95,97,95,66,112,86,105,102,109,100,75,94,107,94,104,98,118,109,102,106,107,113,99,99,104,112,100,106,109,96,105,106,85,98,105,106,107,94,112,109,100,97,99,104,103,94,103,106,105,106,111,92,101,101,99,102,92,111,120,87,105,102,104,103,108,104,110,94,108,91,96,95,115,107,99,107,109,103,105,120,104,102,113,81,103,96,103,97,105,93,96,98,94,91,102,104,97,102,103,114,94,97,105,98,93,98,136,102,95,104,94,106,101,94,87,129,118,100,95,102,97,91,103,90,106,104,106,106,89,101,104,90,96,102,99,93,101,96,108,118,99,91,106,98,101,99,99,96,114,102,112,120,116,107,91,95,105,101,100,106,101,95,101,95,102,106,105,99,113,107,104,108,103,106,107,83,93,90,93,108,102,105,105,115,89,80,96,105,98,109,119,108,119,96,109,101,94,103,95,95,108,91,102,108,109,95,109,87,106,105,108,105,105,95,111,94,111,85,110,99,90,95,112,117,91,88,105,102,94,103,106,103,93,92,95,104,117,103,114,103,96,106,100,106,103,93,104,109,95,99,101,100,93,114,101,107,101,132,102,98,103,98,102,105,101,99,95,101,96,96,93,109,104,101,104,99,99,103,101,98,111,84,97,107,88,83,106,96,100,95,95,103,105,105,116,108,100,103,95,99,99,102,97,99,98,96,106,111,107,108,107,102,121,97,107,102,107,106,101,107,108,100,130,106,100,94,106,101,107,113,104,109,118,108,108,104,101,103,92,101,95,109,101,100,108,105,108,102,106,97,117,106,105,95,102,105,95,94,90,105,103,101,106,108,95,98,99,104,101,97,107,102,113,97,98,100,107,99,96,97,95,84,105,101,98,100,114,99,108,95,98,102,107,113,103,96,100,106,113,104,99,96,98,100,108,110,97,104,94,103,106,102,101,96,107,116,103,73,99,102,89,98,104,105,99,100,102,99,93,110,92,102,100,104,109,101,92,113,101,97,105,103,112,100,104,116,103,108,90,97,96,102,104,101,95,109,102,102,99,104,108,115,98,99,99,108,95,95,99,103,107,103,107,107,102,113,103,94,90,110,102,96,98,104,107,92,105,98,93,99,98,92,99,109,98,106,99,97,102,101,109,94,104,97,98,99,103,103,98,98,116,131,102,95,98,90,109,101,93,107,103,97,101,102,99,97,108,106,101,101,114,97,109,106,95,100,103,112,99,106,100,95,96,105,91,104,106,100,97,108,102,100,96,105,93,87,108,94,99,109,97,102,70,100,111,109,97,99,93,101,108,98,102,69,102,104,122,99,101,92,102,107,100,91,104,93,105,103,96,92,97,102,92,92,103,104,89,101,100,105,104,104,99,110,103,108,98,110,89,98,96,111,98,95,119,93,92,110,96,123,91,94,102,96,102,101,87,109,107,120,108,98,95,115,98,99,94,93,92,106,94,104,100,99,96,100,110,104,99,98,99,100,87,97,105,92,102,116,101,114,89,94,112,96,104,102,98,101,105,104,120,104,97,108,106,108,102,107,98,106,96,105,112,78,89,101,102,97,92,102,104,105,95,92,88,109,105,98,105,109,83,101,99,128,108,83,101,98,105,90,100,103,93,92,98,100,99,101,102,100,99,76,103,113,99,103,102,101,101,90,96,89,105,99,102,83,107,95,102,101,98,107,119,102,97,95,98,103,86,132,106,82,94,100,101,108,104,95,111,99,102,106,102,103,105,107,99,102,104,102,92,100,84,103,84,107,104,102,101,102,96,97,101,95,100,90,108,107,104,97,91,107,98,111,105,109,103,98,110,106,72,114,80,101,84,92,95,107,101,99,100,99,100,96,106,95,106,102,107,104,119,120,94,91,96,100,95,93,94,103,111,104,99,97,111,98,96,97,101,97,99,102,92,104,103,107,111,95,98,103,107,97,101,113,102,119,98,78,92,98,105,102,101,97,93,119,105,100,110,113,102,90,99,88,96,99,78,109,104,106,103,91,106,98,88,101,103,104,97,110,100,102,120,115,95,89,100,100,94,109,117,96,100,101,103,98,98,99,100,98,101,104,101,87,100,104,102,98,110,99,102,113,85,112,111,91,100,106,109,102,96,111,73,96,91,91,95,105,100,107,100,100,103,114,95,94,103,113,101,91,96,104,102,99,113,76,106,98,88,106,72,102,95,99,98,106,87,110,108,92,108,91,107,99,98,104,99,91,97,89,99,100,102,105,107,101,101,99,121,105,98,103,104,91,100,99,112,111,96,100,109,105,99,88,106,107,98,99,95,89,104,101,101,99,106,111,98,105,95,105,96,106,111,115,106,99,103,92,101,99,113,94,95,95,103,114,78,93,98,103,97,111,96,106,97,87,87,91,107,99,102,94,123,89,110,91,81,95,103,107,115,99,104,106,103,91,103,91,102,94,97,105,102,101,100,91,109,102,93,112,104,87,100,94,100,94,104,101,99,98,110,99,105,104,93,111,101,94,99,110,107,111,105,106,102,100,98,106,94,90,91,105,98,110,115,104,114,99,109,94,98,102,108,96,101,96,94,103,91,100,95,94,99,94,79,104,85,107,105,95,92,109,108,90,97,94,101,90,100,97,98,97,84,99,109,86,104,102,107,104,108,99,90,108,93,111,96,95,92,109,101,104,100,104,103,110,100,87,96,92,109,110,101,103,112,103,102,100,108,96,105,119,108,99,89,102,104,102,104,108,107,113,101,104,85,102,97,106,99,101,116,110,106,91,102,103,101,105,99,103,97,106,100,106,98,111,104,109,96,97,104,104,100,119,111,104,108,103,98,87,98,114,102,97,100,99,93,100,94,92,91,103,100,95,92,106,103,95,110,98,95,96,102,97,100,96,114,92,105,109,116,92,117,102,109,101,99,95,101,100,109,101,108,110,113,100,85,109,107,98,100,106,96,110,99,102,96,105,97,108,85,96,97,93,105,98,106,102,91,88,100,99,94,100,108,93,109,102,102,108,113,95,106,115,102,104,104,108,98,105,113,109,116,99,108,101,108,99,103,111,105,101,111,113,103,100,98,100,99,103,83,109,114,110,101,95,98,104,95,107,101,109,93,84,99,105,107,94,102,95,94,111,97,120,100,101,101,98,89,100,93,118,102,97,102,102,109,100,87,100,99,102,101,99,106,98,101,97,102,99,104,106,93,99,97,113,98,103,91,104,108,90,104,105,111,113,99,102,100,98,107,94,89,109,101,90,90,90,109,105,106,104,87,109,93,99,92,101,102,97,102,98,84,96,95,115,104,102,103,104,106,94,95,97,100,101,97,98,94,101,96,100,112,108,110,112,107,106,96,88,93,105,91,100,100,114,93,98,99,110,112,97,105,98,107,94,95,92,100,113,98,97,102,111,103,107,97,92,95,104,90,93,91,104,104,102,101,103,107,93,106,111,102,90,92,91,137,103,96,84,96,78,104,104,102,103,83,115,97,95,103,97,100,98,105,99,109,88,94,93,95,104,97,102,109,84,102,96,84,104,93,110,111,108,102,105,103,94,99,98,110,98,105,108,103,103,112,99,107,99,102,94,104,91,103,85,99,97,102,102,108,93, +686.98651,92,107,94,78,102,108,102,96,104,99,112,105,96,105,109,95,98,106,105,96,98,104,101,93,115,97,104,105,129,102,106,104,98,75,100,99,91,103,100,111,106,108,105,88,92,100,103,117,97,112,107,100,95,108,103,102,107,104,103,81,102,96,92,105,105,101,102,113,116,108,104,115,97,108,99,99,99,95,117,92,86,110,85,93,103,102,97,99,96,90,110,112,116,81,98,96,89,95,105,136,104,89,97,97,94,95,85,108,92,111,100,82,106,105,108,95,94,107,106,104,102,99,99,111,109,114,109,129,101,100,91,107,84,99,100,95,104,92,103,95,96,99,110,105,106,105,96,117,68,93,106,103,107,94,112,104,96,96,101,96,92,95,115,101,105,103,94,106,103,106,96,100,100,93,96,100,107,97,91,70,108,95,104,93,105,97,94,90,100,94,108,99,103,91,105,93,101,87,113,112,100,104,103,107,94,91,108,113,115,117,91,102,103,92,112,90,89,102,97,98,114,99,101,101,108,106,98,109,96,108,108,103,79,100,101,86,97,100,104,98,102,94,90,90,102,105,103,107,110,110,101,96,102,99,106,110,93,103,100,98,91,109,114,98,88,98,96,96,101,101,97,100,99,97,103,102,107,95,89,102,101,100,101,101,110,107,104,100,106,99,96,95,119,101,109,120,105,99,113,98,108,101,120,107,101,96,113,107,114,98,101,108,111,121,101,88,102,93,93,106,107,101,103,99,105,104,94,89,99,108,95,103,102,102,109,96,95,91,107,94,100,94,107,97,92,110,100,103,114,66,107,104,108,102,99,99,91,100,104,103,85,100,92,104,109,95,101,128,93,83,96,97,106,96,86,96,104,109,102,104,102,101,92,108,101,104,95,92,97,97,110,97,101,96,91,103,103,96,101,102,92,100,86,98,98,95,92,98,104,98,100,97,87,104,105,92,112,92,96,101,99,95,108,95,104,94,103,89,99,99,100,99,93,92,105,106,104,110,95,102,89,97,93,117,99,96,110,90,90,104,90,103,92,107,109,97,106,84,104,101,101,96,102,106,97,101,106,104,101,96,97,88,106,107,93,100,103,102,110,102,98,107,117,109,87,98,100,96,102,84,102,118,94,96,97,100,93,97,113,95,98,99,109,95,101,109,95,98,106,102,97,104,101,90,96,91,104,88,100,69,91,107,105,103,100,111,109,85,105,101,97,122,96,98,96,107,92,101,104,103,99,109,103,106,112,107,92,102,110,95,98,110,101,111,108,99,86,103,103,115,90,102,103,109,108,95,109,99,98,92,105,107,101,107,99,101,99,91,96,103,97,93,92,90,87,106,109,106,101,107,97,108,89,96,103,109,92,105,88,102,106,108,91,114,98,91,89,113,114,96,95,109,112,106,101,101,97,101,104,110,102,99,100,101,102,102,102,106,105,86,111,109,93,107,98,77,92,107,111,113,107,107,96,100,95,90,105,104,105,100,91,101,108,92,99,106,98,108,107,112,102,94,101,93,98,97,116,96,92,99,111,104,99,97,96,105,89,97,102,94,102,103,107,89,103,99,107,106,110,93,99,112,96,102,100,99,102,106,95,92,98,100,108,95,100,108,98,101,97,96,115,101,103,97,97,97,100,98,95,95,94,102,87,108,94,93,103,102,87,100,101,104,105,105,112,106,103,84,111,99,117,102,102,102,98,107,103,106,97,96,106,101,114,91,98,107,95,99,106,102,107,97,99,96,91,96,90,104,103,110,105,101,108,103,110,102,88,105,99,113,109,102,108,116,98,86,85,104,83,106,106,106,83,91,102,104,105,105,99,104,87,99,121,98,99,104,104,92,101,98,102,89,95,103,107,119,104,103,92,97,101,101,106,112,107,104,88,107,99,106,101,95,87,99,101,98,97,97,106,106,94,105,108,100,110,95,86,105,93,113,94,98,94,103,91,92,114,99,98,94,111,100,105,90,98,101,102,104,105,109,106,100,100,109,107,100,112,102,102,95,109,105,107,98,109,103,100,113,95,108,96,107,104,110,118,94,93,106,92,104,108,94,110,110,95,103,97,103,92,93,105,99,94,96,98,100,89,105,106,94,103,88,98,94,104,97,105,95,94,102,93,106,102,105,104,98,98,102,97,95,101,93,115,103,104,86,103,92,89,96,103,94,94,100,104,101,106,96,102,93,94,121,65,94,95,93,91,94,106,116,106,100,90,94,97,90,94,86,88,101,104,105,104,97,96,88,112,87,89,115,68,98,95,112,102,92,94,95,104,96,98,95,106,96,98,101,99,103,92,95,94,95,100,101,98,95,103,112,99,105,97,99,102,99,68,99,100,95,91,114,96,88,94,108,102,98,100,106,92,106,103,87,97,100,91,109,80,96,96,98,99,97,97,109,91,98,92,102,107,97,107,112,98,111,87,103,96,107,99,85,87,96,91,112,105,92,98,98,82,101,93,100,94,101,104,109,105,112,91,115,97,112,97,66,98,108,87,99,103,98,104,90,107,98,98,89,95,100,108,103,104,108,86,107,104,98,101,103,112,105,127,98,101,93,107,104,102,96,106,90,103,104,109,100,97,105,95,112,100,100,92,96,98,98,94,98,94,91,109,98,100,99,104,109,94,107,104,99,109,102,104,91,109,88,95,109,106,102,98,94,96,95,94,107,109,91,113,89,110,101,105,78,99,109,93,105,100,94,98,98,104,98,109,96,111,102,108,99,91,90,102,109,109,101,108,102,111,112,103,104,104,106,101,99,93,96,106,91,93,91,114,113,91,102,97,101,105,108,110,102,117,107,91,92,102,94,93,94,89,108,112,93,105,92,100,100,104,101,98,108,95,106,122,104,106,109,105,69,105,115,96,82,66,97,100,99,99,94,99,111,105,112,109,78,100,94,91,105,102,104,103,96,103,108,99,103,111,102,109,100,104,104,94,105,100,95,100,107,114,99,92,95,103,109,110,78,98,102,107,91,93,103,96,89,99,120,102,98,96,95,110,103,89,94,112,100,111,114,106,89,83,94,91,93,101,105,105,99,105,110,99,103,108,117,111,85,105,98,99,108,111,80,101,97,96,109,110,102,102,87,112,115,113,100,95,92,108,94,92,96,99,102,104,75,100,103,99,105,99,106,90,100,94,100,90,100,100,102,93,101,98,84,106,101,113,95,88,109,105,100,120,119,107,92,108,104,102,104,92,104,101,89,107,109,107,106,91,101,88,107,95,108,92,112,100,109,103,97,101,103,83,102,112,109,103,96,105,111,91,109,104,98,95,99,101,99,102,98,106,93,101,79,114,101,115,104,115,104,95,104,104,107,116,90,100,101,109,98,91,95,88,108,103,94,105,90,103,89,111,94,98,104,110,89,83,94,97,98,93,92,91,93,95,89,105,103,102,92,102,95,95,97,108,96,92,99,95,103,98,103,99,97,111,100,100,95,97,96,96,99,108,105,110,94,106,100,93,113,98,102,106,96,97,80,100,109,108,83,111,90,95,109,98,102,92,103,88,108,115,103,100,94,106,97,92,103,103,98,94,98,104,80,105,104,104,114,98,100,96,93,100,83,107,88,104,108,105,105,103,90,115,102,95,87,102,97,102,105,94,94,87,121,100,100,93,91,105,94,115,115,106,105,110,99,99,97,100,94,98,97,100,94,102,104,95,93,101,108,99,110,96,107,109,102,87,113,115,106,109,104,110,101,101,99,106,87,107,85,74,92,95,95,103,109,107,86,113,93,101,97,111,96,82,96,92,100,110,104,132,101,108,87,100,104,104,93,95,87,103,102,103,95,95,101,106,89,99,94,105,99,122,111,136,103,95,98,100,62,99,102,105,114,101,101,101,109,109,98,96,91,103,108,98,101,121,111,99,90,96,111,104,74,99,87,95,105,99,99,100,115,120,94,105,94,85,94,96,91,103,94,112,98,82,101,104,116,105,92,106,99,89,107,91,111,98,93,105,96,106,105,120,96,92,98,98,104,88,101,94,113,94,99,95,106,102,100,97,108,102,104,101,107,111,96,103,102,106,95,93,96,95,97,82,100,109,101,103,92,110,86,99,107,105,106,98,102,99,96,104,117,101,100,94,114,91,102,111,97,113,98,105,105,105,105,102,106,98,102,96,103,102,98,91,111,106,87,98,105,98,107,99,100,89,84,113,90,99,106,103,116,105,100,103,101,99,105,101,104,101,96,105,94,96,104,100,86,100,101,94,102,90,109,106,97,91,91,103,106,100,97,92,98,107,106,99,104,86,105,110,95,113,105,104,99,68,95,99,94,95,91,100,112,99,91,105,90,89,97,103,86,92,102,95,107,107,98,112,98,104,98,110,109,101,95,105,94,101,103,102,97,97,117,90,97,99,107,101,100,102,98,92,117,91,100,88,105,107,95,95,106,92,92,100,117,102,98,96,107,106,98,112,109,86,96,100,89,87,94,99,97,106,107,99,100,109,95,102,95,74,98,93,84,102,99,110,102,92,96,96,96,103,96,102,101,108,95,111,94,95,95,97,106,92,113,95,99,115,95,96,103,95,123,101,101,108,95,103,89,109,103,98,104,104,98,100,89,108,91,98,94,101,95,102,97,112,94,103,93,110,94,109,103,77,108,91,110,104,114,93,99,111,104,103,78,107,89,116,101,103,98,90,118,100,96,101,110,107,100,112,91,99,103,101,101,99,78,94,98,100,113,120,104,88,94,100,95,94,98,107,95,106,90,107,108,93,90,110,89,100,95,99,102,97,95,105,93,97,107,112,105,101,103,104,113,104,98,101,90,102,59,83,104,103,101,90,109,99,105,98,72,100,104,103,103,90,104,98,112,93,103,96,103,94,94,93,104,95,107,105,93,90,97,96,91,99,106,102,111,107,105,106,103,103,109,98,102,112,102,116,92, +687.12781,95,94,83,101,83,90,102,96,132,103,101,86,111,110,95,101,106,100,102,78,102,106,97,113,93,101,99,102,117,113,99,90,110,98,100,104,93,83,104,109,115,100,99,97,106,107,86,93,98,95,97,100,102,107,106,98,114,99,99,104,109,90,99,98,98,107,93,108,108,91,99,75,99,94,104,94,84,83,103,109,102,98,100,106,99,92,97,100,98,93,108,99,108,93,96,101,101,87,101,105,91,107,105,108,100,96,92,97,92,107,95,102,114,109,109,125,105,107,105,108,97,97,99,103,104,99,107,96,93,95,105,130,94,98,120,90,99,102,99,99,100,107,91,101,95,109,114,100,100,96,94,122,100,95,109,83,94,109,95,99,99,112,112,102,94,102,100,105,99,90,94,91,94,100,103,83,92,107,113,94,95,103,99,101,108,92,88,90,101,93,86,95,96,113,78,93,91,102,97,119,100,104,103,101,92,112,106,88,95,115,91,102,101,111,109,100,95,85,88,74,90,109,95,94,97,99,105,96,96,108,100,91,105,104,92,94,96,98,108,93,83,116,99,102,107,94,93,97,97,113,98,105,114,105,81,119,103,105,103,102,92,100,99,104,93,102,95,104,90,101,96,98,108,104,102,105,103,99,89,92,103,97,104,89,99,113,97,92,99,94,99,94,115,100,114,96,94,109,96,91,108,100,97,109,101,110,103,102,104,106,97,118,106,100,104,104,97,95,91,106,109,102,101,90,104,91,93,87,108,121,118,102,100,96,95,101,102,100,104,99,110,107,103,99,108,115,103,78,98,100,105,97,104,114,107,103,110,111,96,97,103,99,88,113,103,93,102,105,107,110,108,106,104,85,80,99,105,115,95,99,102,116,108,108,100,111,106,96,105,96,104,95,105,94,100,97,102,102,99,104,104,119,101,105,112,97,102,108,105,103,100,92,106,105,113,94,95,98,118,91,96,74,104,96,95,96,97,96,90,108,92,101,95,106,105,96,107,116,100,90,126,76,103,95,95,102,102,90,98,106,94,92,102,108,100,115,88,90,98,104,84,100,98,120,103,106,101,98,120,86,109,113,105,98,96,105,94,100,96,116,104,115,95,113,110,94,97,99,97,104,97,99,86,103,92,99,93,107,103,88,106,93,98,94,101,94,94,112,101,101,113,96,109,94,107,98,102,107,129,108,103,100,133,105,100,98,105,97,115,86,94,103,96,90,92,99,104,104,106,108,92,102,105,109,107,104,97,94,104,105,91,103,107,87,90,118,103,95,106,93,101,96,102,105,105,118,106,101,98,105,103,115,95,99,110,107,98,104,88,108,113,95,95,94,89,102,103,91,100,97,101,94,106,94,109,103,98,95,112,101,100,91,106,91,99,103,96,106,96,114,99,99,92,114,103,105,110,104,105,108,128,106,92,101,97,94,98,102,105,105,107,95,93,105,89,109,91,93,96,98,114,96,103,97,103,94,103,91,102,107,92,104,100,72,112,92,101,108,94,102,100,104,97,106,92,100,113,105,99,103,119,95,95,102,101,107,105,109,102,109,104,105,115,89,98,97,101,109,98,74,103,114,95,112,95,102,100,106,111,99,104,86,102,102,94,98,93,93,98,106,102,101,95,96,112,94,101,106,96,100,110,102,107,112,91,94,114,94,110,109,106,95,92,93,98,115,86,102,97,109,101,96,114,98,104,92,112,111,98,107,103,89,103,96,100,89,100,98,95,100,107,104,95,101,102,88,86,100,97,91,113,94,101,112,106,104,100,93,102,88,111,111,113,103,104,113,101,101,102,124,97,99,120,99,91,93,103,105,99,107,94,84,100,115,112,109,105,99,101,103,84,98,100,118,117,103,102,100,101,97,98,105,95,108,102,109,111,89,84,109,104,101,97,96,95,104,105,113,100,90,90,112,113,100,99,96,81,93,91,92,103,97,99,120,89,95,107,105,100,101,104,95,106,101,106,98,110,108,92,105,101,96,107,110,110,95,95,131,107,109,124,101,99,101,109,113,104,110,100,98,105,96,116,102,105,90,88,83,93,95,95,106,109,99,109,99,91,99,91,103,105,102,105,97,104,116,94,103,112,113,101,109,82,105,129,103,97,96,96,102,100,112,102,104,112,106,110,92,100,100,95,94,105,103,88,115,91,100,99,102,104,105,110,102,96,97,97,96,83,105,117,99,97,85,109,101,94,100,98,102,108,73,97,87,91,102,92,97,91,94,102,98,95,97,116,97,102,108,99,93,96,91,109,101,100,88,91,115,96,106,109,116,95,79,110,112,103,107,109,101,93,106,108,104,99,96,93,97,92,109,106,102,105,89,88,107,90,99,102,95,99,103,91,100,98,102,96,101,111,100,109,92,92,103,101,100,103,83,112,112,97,108,95,111,105,82,90,110,91,90,89,91,96,91,95,99,96,104,123,90,104,112,101,94,97,92,106,105,96,103,102,88,121,96,120,100,99,103,104,102,98,95,98,92,109,99,95,105,101,110,107,92,105,104,106,91,95,101,98,104,97,118,100,98,105,103,103,100,98,108,113,101,95,99,106,94,103,114,102,94,110,107,111,94,106,102,100,108,92,94,95,97,89,106,95,97,111,100,99,98,98,98,103,103,101,96,104,98,93,101,105,83,98,95,104,104,90,101,112,106,94,79,101,90,95,96,98,100,98,92,96,88,101,103,95,111,114,97,99,105,99,108,121,107,104,98,113,106,103,112,98,101,95,100,95,93,115,103,106,110,99,101,99,109,98,110,113,96,93,102,98,104,106,105,99,92,80,95,105,87,103,103,84,105,102,99,103,115,111,106,100,109,94,93,112,93,101,98,92,103,104,107,107,118,92,100,99,102,106,93,103,93,100,116,117,84,93,80,98,105,108,98,100,104,105,94,105,101,102,100,103,101,99,95,104,99,116,102,71,61,91,105,87,98,93,100,98,94,96,110,108,93,96,100,103,100,112,94,106,103,105,105,98,95,100,104,102,105,94,93,101,98,103,103,103,100,105,93,102,108,95,113,92,99,111,99,102,100,102,95,99,100,104,101,104,94,105,99,105,102,89,107,92,90,121,101,108,98,116,126,93,104,102,109,107,89,107,126,103,108,109,109,100,112,97,91,87,91,95,92,84,93,90,104,93,104,100,99,105,97,94,58,98,87,109,95,109,99,102,97,105,106,98,91,95,107,117,100,116,95,109,99,104,98,97,106,95,115,97,101,97,96,97,82,98,116,105,96,108,99,107,113,109,106,94,93,101,109,105,106,111,100,88,98,97,94,99,95,83,93,93,98,98,105,95,100,102,102,131,110,113,101,98,101,105,106,95,106,101,91,87,97,92,106,87,95,99,97,106,101,105,108,100,101,62,96,97,101,100,87,96,106,86,99,90,101,96,104,95,92,106,96,109,100,99,103,100,105,98,98,105,90,88,103,104,96,98,101,113,106,109,99,103,102,93,113,104,88,109,84,98,96,96,85,79,113,105,87,100,91,114,104,101,94,108,96,99,109,95,88,105,96,95,113,101,84,93,107,107,99,94,104,96,96,97,107,90,105,83,101,103,99,98,93,99,102,112,103,100,88,100,101,113,105,102,101,104,107,102,101,100,88,102,93,105,97,96,89,89,99,100,102,95,119,100,102,101,99,97,116,108,93,108,116,92,85,101,109,112,109,103,102,103,99,110,91,104,100,111,97,99,103,102,111,94,99,104,93,98,92,113,100,108,92,101,92,95,104,115,97,98,101,102,96,105,106,96,92,95,92,102,90,95,98,99,107,96,105,103,103,101,99,96,106,104,105,96,100,96,110,111,103,117,109,116,113,101,100,107,93,95,102,98,102,99,109,105,102,98,101,87,102,93,108,109,124,80,106,100,102,107,83,99,102,98,100,90,100,105,113,111,101,100,98,112,71,109,91,97,100,102,100,93,100,102,106,102,91,97,104,93,106,107,104,101,99,94,101,112,91,117,98,93,109,101,107,95,97,97,100,103,88,91,100,113,95,84,105,107,113,110,89,103,102,98,98,99,94,101,97,108,95,95,94,103,106,96,93,104,99,110,91,99,86,88,108,84,104,93,98,106,115,97,102,101,96,102,104,102,102,98,98,100,98,107,93,101,98,101,119,91,95,98,107,100,101,94,102,100,101,102,97,98,88,96,110,114,102,100,102,101,99,91,90,107,89,93,108,107,105,109,98,105,101,96,96,108,83,97,101,99,106,98,102,77,89,101,93,99,99,91,92,107,82,94,111,99,106,84,90,95,93,108,97,102,102,102,101,94,103,94,106,102,96,105,103,84,100,108,100,103,101,105,117,110,100,89,89,105,108,99,96,98,104,103,99,111,102,80,108,105,124,96,110,105,95,92,100,103,116,92,108,100,107,90,98,111,102,112,97,115,85,99,101,100,97,98,100,109,101,100,103,103,97,100,98,88,95,95,96,98,103,90,98,77,83,80,110,97,90,84,92,90,99,95,96,114,95,98,98,89,100,96,101,98,100,111,99,102,96,87,100,89,101,84,102,110,99,100,104,76,103,111,100,104,77,97,105,111,98,95,94,107,104,109,92,102,97,98,95,104,90,95,106,103,98,100,109,102,94,100,99,113,108,103,114,98,111,101,95,99,96,95,95,96,99,97,113,107,107,108,88,120,108,104,94,101,96,103,104,108,101,97,98,116,101,98,104,98,99,105,100,115,109,95,117,108,99,108,99,100,98,94,103,111,100,101,85,94,105,112,112,102,99,95,96,89,116,109,95,95,99,90,120,94,101,96,116,100,107,94,98,98,97,108,106,104,112,85,99,104,114,90,101,103,103,105,98,91,111,104,102,105,109,93,87,85,105,107,98,94,102,108,109,99,99,97,100,105,97,102,102,111,103,104,93,98,113,106,122, +687.2691,97,101,97,125,88,104,103,93,102,113,69,89,101,105,105,99,95,100,96,107,112,111,100,99,91,104,105,99,103,102,98,101,124,105,108,107,98,111,105,90,88,91,90,98,110,98,105,109,97,105,104,99,99,113,98,105,119,98,99,98,100,108,107,100,100,101,98,100,113,93,101,104,95,104,100,102,91,95,103,90,101,90,97,110,94,103,107,105,108,102,114,106,113,116,99,87,91,106,94,96,103,117,91,110,114,109,84,94,95,93,100,106,91,97,100,97,103,105,87,94,96,100,105,107,103,111,120,98,99,109,102,87,101,93,106,100,101,96,83,104,79,89,98,95,97,91,94,97,106,100,97,112,92,86,92,97,95,93,104,86,102,102,93,97,106,93,106,99,77,95,109,111,100,105,87,96,89,103,107,87,99,105,94,86,101,103,109,90,105,110,93,103,105,104,109,83,108,103,96,109,105,94,94,100,91,105,100,100,118,104,104,105,100,91,105,87,93,106,88,94,113,102,109,71,88,95,96,107,109,98,102,92,106,106,104,89,106,101,106,98,102,101,96,100,91,98,99,96,99,109,105,98,93,98,87,110,104,99,90,107,86,97,115,94,95,112,105,104,98,93,105,89,112,104,95,99,103,95,90,100,112,104,101,85,103,83,93,96,100,109,100,107,105,103,91,96,98,93,105,111,89,101,94,111,104,107,100,118,98,112,116,105,91,104,94,106,96,95,94,93,90,98,95,105,98,107,99,101,95,97,96,112,114,105,108,90,108,90,97,102,112,108,89,95,98,108,97,93,85,104,103,91,92,101,100,87,105,96,108,103,103,99,106,103,94,103,106,106,97,98,104,106,93,107,96,108,109,100,95,101,114,117,98,93,75,95,75,98,133,89,105,77,99,99,103,94,86,93,99,99,109,82,97,103,105,95,101,103,104,103,90,96,103,87,91,95,99,105,103,102,87,95,99,91,110,97,107,88,96,106,106,112,103,101,101,88,97,108,94,94,108,106,96,120,90,94,100,97,98,102,85,109,91,108,105,100,95,102,102,95,99,97,93,121,109,121,94,101,95,103,110,102,110,103,103,92,89,120,108,93,91,109,111,103,92,102,101,107,95,90,103,106,104,95,101,91,102,103,106,99,99,105,93,105,106,108,102,92,103,105,98,96,100,103,96,104,92,91,95,103,100,105,96,93,109,94,106,101,106,90,87,125,117,108,104,108,101,107,113,99,116,113,111,113,102,113,101,105,91,99,94,95,101,109,102,94,105,101,104,95,99,106,96,106,102,105,114,106,101,102,100,92,109,98,104,105,102,91,103,103,102,100,95,98,94,96,103,101,96,109,108,98,105,99,97,107,87,114,86,99,87,101,104,76,101,102,102,104,103,97,103,96,125,104,110,101,99,93,90,107,93,117,113,94,98,116,99,106,105,106,101,97,95,111,101,96,97,102,100,95,111,103,102,99,100,86,95,105,109,105,90,103,98,105,104,107,104,102,98,101,88,95,106,97,100,105,92,96,99,93,107,108,99,96,100,100,93,95,106,92,102,88,95,112,103,102,100,95,85,103,104,102,107,96,115,117,101,94,106,108,99,103,96,101,101,103,109,98,104,95,99,102,102,98,74,101,104,94,114,98,109,94,102,117,102,110,108,92,109,107,104,109,105,101,98,98,99,93,98,100,99,100,87,111,105,103,106,106,111,113,96,113,99,100,112,100,104,98,110,113,109,103,96,95,97,98,91,84,107,92,111,104,106,91,99,100,104,116,101,99,102,99,102,111,104,99,102,112,112,112,116,102,92,95,104,98,100,101,72,92,117,110,89,95,105,105,95,102,104,103,101,91,96,101,100,126,99,108,91,99,108,111,87,101,113,91,99,98,96,108,104,89,98,93,91,103,104,101,96,94,102,99,112,100,94,91,97,102,110,97,95,106,92,100,86,106,108,109,111,98,100,94,88,91,99,68,121,97,107,101,92,110,97,116,93,90,100,100,103,93,96,105,80,97,105,97,93,95,100,98,98,103,99,92,110,95,106,99,108,101,108,107,91,94,105,111,111,108,94,109,111,103,95,103,103,101,95,92,98,97,110,105,102,107,105,96,101,95,94,109,111,100,102,91,84,109,102,97,95,115,107,106,95,97,84,96,96,96,105,101,107,101,100,94,106,108,110,106,97,93,100,116,102,98,98,96,85,109,99,95,95,92,90,92,105,91,104,99,94,89,88,106,97,96,101,92,99,96,103,101,90,97,99,103,88,111,101,98,96,99,96,114,88,87,105,102,108,93,101,99,105,103,100,105,99,109,94,93,91,84,109,104,115,94,109,105,129,108,104,106,103,101,101,106,98,73,107,103,92,101,95,104,102,97,106,103,103,112,107,89,111,103,94,112,95,108,90,112,100,84,95,108,105,94,105,80,108,100,99,102,98,104,99,96,113,91,100,104,98,93,99,92,95,124,96,119,111,94,106,97,102,117,105,109,99,102,100,106,108,107,95,97,89,103,100,95,96,96,102,96,109,105,103,98,95,94,86,108,112,107,94,103,115,100,102,113,98,106,90,101,113,113,100,99,90,104,87,109,108,96,105,91,92,95,105,113,102,106,95,111,109,91,102,117,96,72,100,109,112,109,111,88,104,93,106,105,102,92,106,100,100,95,99,84,95,93,105,103,101,101,96,108,101,100,114,109,99,96,91,111,86,106,108,105,108,120,105,104,107,108,92,97,97,95,109,91,109,106,112,101,102,97,117,93,108,114,92,96,102,104,115,104,97,99,98,96,109,109,105,100,105,99,112,102,100,105,110,105,97,111,114,94,112,95,98,115,100,99,88,109,97,102,101,109,100,105,92,100,93,91,109,97,97,108,117,103,98,114,98,112,91,109,98,107,96,104,105,98,106,99,102,92,115,108,102,95,115,95,103,90,113,106,99,93,96,117,109,94,111,115,98,104,99,107,110,99,104,100,97,105,103,135,105,91,111,101,104,104,100,105,99,105,94,97,102,87,90,104,100,86,101,98,98,101,115,109,99,94,88,102,102,101,105,93,95,100,110,105,108,106,102,111,101,92,98,87,92,103,102,105,111,115,103,107,103,105,108,118,96,111,109,108,103,92,116,100,111,100,83,99,100,83,98,109,109,88,98,97,92,95,92,91,101,92,108,108,94,105,109,115,103,106,94,107,100,102,109,96,94,100,102,98,111,110,98,103,104,94,99,113,108,112,99,99,102,104,99,108,112,106,109,109,104,113,104,90,97,106,113,110,92,99,101,99,96,88,98,105,107,110,113,98,87,102,105,110,104,109,100,97,100,98,94,108,89,112,89,104,102,105,90,106,105,97,110,101,106,97,105,88,106,106,108,104,100,98,100,102,101,97,98,103,90,105,108,101,86,98,113,113,107,86,102,100,96,113,106,99,105,107,94,99,89,93,99,109,103,119,109,101,91,108,102,99,106,101,104,102,92,108,111,95,102,91,100,82,103,111,103,106,106,111,93,92,101,113,106,100,105,91,109,108,97,116,102,99,98,98,95,111,99,92,95,107,125,102,91,101,105,104,113,112,112,105,96,92,95,105,108,98,95,101,101,101,104,101,104,102,94,109,91,103,120,98,102,100,114,100,115,98,107,101,96,109,82,112,108,107,90,115,100,109,88,111,96,104,101,98,105,93,96,116,99,97,97,104,109,98,108,90,95,101,98,107,105,105,107,117,91,117,96,107,94,111,89,92,103,102,98,95,82,121,107,97,128,109,105,112,113,101,103,110,102,90,96,103,104,99,106,100,97,118,98,109,113,78,106,95,100,101,117,99,106,108,89,95,104,95,91,108,95,104,97,85,94,101,103,105,94,105,127,107,96,96,91,101,93,89,116,98,99,103,117,93,103,91,109,93,105,106,114,121,96,98,101,98,75,98,104,110,100,102,95,102,91,106,107,100,91,95,100,100,98,105,99,109,98,105,96,106,108,100,105,93,102,105,99,109,100,110,107,95,99,97,102,99,101,116,111,99,97,99,103,86,102,100,94,101,102,104,99,94,96,104,100,92,98,108,95,95,98,91,95,96,102,106,97,68,107,101,104,93,104,102,98,102,98,102,103,98,106,113,100,104,80,109,95,101,108,99,98,95,105,96,100,95,104,108,98,101,98,93,91,105,117,95,98,98,95,95,107,114,96,111,108,98,101,108,96,104,94,97,101,92,104,95,117,105,106,104,104,100,110,92,84,92,107,110,108,105,103,100,119,99,92,106,84,105,104,98,88,101,110,101,95,99,95,101,88,103,95,110,101,102,108,95,109,105,101,106,104,101,90,109,95,97,99,96,105,97,91,112,95,93,104,94,104,91,101,117,109,114,98,98,91,100,103,106,105,105,101,109,94,98,99,101,106,98,110,109,95,96,102,100,97,108,96,119,87,101,98,103,104,98,105,88,101,98,102,107,112,105,104,99,97,104,104,94,113,91,98,96,95,103,95,102,104,103,97,102,108,99,102,100,102,105,96,98,113,102,95,103,97,98,106,88,82,97,112,105,107,112,96,105,99,99,90,98,98,98,85,108,102,91,109,122,107,110,95,113,116,87,105,96,95,99,101,100,101,98,111,105,100,116,98,124,99,99,103,98,94,109,98,99,112,103,104,100,95,96,105,90,103,104,100,109,101,102,99,93,104,94,111,106,102,96,94,117,105,95,106,97,103,97,104,84,89,97,108,99,97,96,101,109,104,89,96,102,107,97,107,97,98,96,103,92,101,103,106,97,108,101,105,100,91,101,89,103,96,113,113,104,117,100,100,102,90,104,85,110,118,105,94,85,113,111,106,98,102,100,95,106,96,105,94,95,96,100,89,90,101,100,88,99,116,100,100,118,108,94,99,98,78,99,100,102,96,112,102,88, +687.4104,103,111,94,98,92,98,91,87,95,89,82,107,108,108,94,92,88,66,105,93,97,93,119,89,101,100,85,105,108,118,103,104,113,109,113,111,115,113,108,113,99,101,108,97,93,111,100,97,94,108,97,111,96,90,103,132,99,91,103,109,108,93,88,107,102,110,104,89,86,99,67,102,99,92,106,101,92,101,100,113,94,94,97,91,101,117,97,106,97,105,85,96,105,104,104,87,102,98,98,100,101,98,119,105,103,102,105,98,102,121,97,103,97,100,87,101,101,104,103,105,94,103,89,112,102,103,102,95,117,93,100,104,89,103,98,101,86,104,102,99,101,97,97,92,93,100,105,99,103,97,98,100,91,90,101,104,102,100,103,108,98,106,98,100,135,105,106,87,116,97,91,107,91,67,97,94,96,91,95,99,94,90,100,101,98,96,94,91,102,120,95,104,108,96,95,96,95,101,95,108,101,101,104,101,99,106,105,106,110,101,101,96,91,109,111,107,95,94,97,101,95,113,109,101,99,117,101,103,108,99,101,100,94,121,99,100,104,109,120,106,84,100,92,107,110,96,104,92,117,97,90,97,90,97,101,104,98,95,90,94,104,104,99,114,101,113,109,96,104,98,98,105,106,125,100,86,97,100,92,105,106,105,87,89,109,92,100,93,102,113,114,101,102,106,102,96,92,100,95,107,100,100,94,106,91,92,101,103,98,105,101,107,113,104,113,100,94,105,101,101,97,105,98,107,98,97,112,108,106,95,99,104,106,100,102,97,97,86,102,106,102,103,98,99,100,106,102,112,105,102,97,109,101,70,95,96,81,109,95,107,102,104,92,105,111,107,98,110,105,99,111,100,109,103,96,101,99,107,108,98,99,81,99,94,100,99,105,94,113,94,102,102,99,104,101,106,102,91,98,106,108,102,95,86,95,93,106,91,104,105,102,93,100,78,110,92,108,93,104,105,93,97,113,100,90,101,109,110,97,82,104,100,98,97,94,89,101,95,106,95,100,94,102,100,100,98,92,91,106,102,97,101,110,94,98,110,101,100,104,89,108,102,88,91,110,112,92,107,105,105,109,96,92,103,115,92,106,111,99,96,100,91,96,87,105,100,98,109,104,104,101,103,95,98,96,103,101,98,97,97,112,112,95,93,99,108,88,100,103,105,98,98,103,104,105,103,110,95,110,99,98,105,104,100,94,109,107,76,94,92,89,100,95,109,106,100,96,96,100,109,89,113,98,104,108,108,111,94,81,113,98,99,98,114,112,102,90,91,100,98,114,102,91,100,95,99,108,94,102,106,95,117,99,96,108,104,98,101,94,92,104,90,80,104,107,101,104,107,104,103,103,109,103,101,102,106,98,105,92,105,96,101,99,95,90,109,84,105,105,92,106,103,93,103,104,103,95,91,98,103,116,110,99,100,107,102,105,102,88,108,108,99,79,105,100,99,100,101,101,96,107,103,110,120,91,94,84,99,100,106,104,104,103,94,105,104,104,108,103,109,99,109,98,102,96,94,106,94,109,79,108,109,103,100,99,108,98,105,110,103,105,102,109,106,111,87,71,117,98,100,101,107,104,95,108,88,101,113,99,92,98,92,108,95,85,95,104,98,100,105,113,103,104,119,88,91,97,96,96,104,102,98,91,100,94,107,110,112,96,106,102,102,92,87,97,92,102,97,107,107,109,89,107,109,115,106,99,116,118,100,116,99,110,95,95,98,109,109,99,108,99,114,98,99,95,102,94,98,103,98,112,93,125,100,96,106,101,108,94,107,110,104,105,113,99,103,107,111,93,108,115,108,95,111,101,120,100,106,98,101,100,90,98,95,105,101,102,99,116,94,104,106,100,96,109,91,109,91,105,102,96,100,118,108,104,102,101,96,93,105,100,85,103,103,107,110,106,100,114,117,102,91,94,101,90,102,101,124,95,96,105,105,92,112,92,106,110,107,103,96,100,96,103,106,116,104,99,103,108,103,104,104,107,109,101,103,106,101,99,83,106,97,90,98,107,100,98,108,112,102,101,104,96,101,93,92,104,105,100,108,105,106,107,99,115,106,102,99,104,102,103,99,106,102,115,104,96,97,103,104,98,112,107,109,109,99,98,95,97,104,103,105,117,87,101,98,94,91,106,110,94,102,92,113,101,94,101,123,99,96,113,113,105,102,92,100,100,110,71,99,84,93,99,127,107,99,98,110,96,82,91,104,94,91,90,97,94,83,99,92,102,94,100,93,91,106,103,102,103,110,96,91,104,97,100,84,99,106,110,94,93,102,104,95,93,112,114,111,90,98,100,103,100,104,101,105,102,104,96,94,110,102,107,92,95,105,91,93,107,99,103,98,87,92,105,99,113,137,87,109,101,127,104,105,117,96,107,114,93,106,109,100,98,105,107,109,90,96,95,108,102,96,104,90,99,103,94,87,103,100,102,103,95,84,94,104,99,107,112,91,105,91,98,108,104,112,90,97,97,117,103,94,101,89,99,99,100,102,96,91,109,87,111,109,115,100,109,111,97,106,93,98,106,95,100,100,102,99,107,116,111,105,115,105,100,102,108,111,96,105,100,110,100,94,83,102,93,103,94,99,91,100,89,115,109,101,108,95,98,103,99,101,95,105,97,92,106,104,102,103,109,106,101,102,110,106,117,109,105,112,85,97,107,99,78,97,98,113,100,96,99,106,106,98,104,105,104,93,105,93,89,96,105,114,89,102,107,91,99,99,100,100,108,102,98,105,102,99,91,91,108,106,96,91,101,107,106,91,99,97,105,93,94,98,85,105,91,117,106,113,83,107,92,110,97,97,101,95,94,105,105,106,114,94,108,106,95,92,103,114,100,89,102,105,104,84,98,104,110,100,100,100,102,108,109,98,94,106,95,109,107,107,105,110,98,101,93,103,102,103,97,108,99,100,103,97,108,99,97,102,109,100,115,104,100,101,100,94,107,111,108,108,100,104,114,102,98,97,96,93,103,101,98,94,106,108,80,102,104,102,117,107,108,114,98,89,84,105,97,103,102,98,105,102,96,95,117,106,111,107,106,97,103,109,94,97,101,97,107,97,102,100,89,100,107,102,106,100,91,100,107,113,96,98,109,96,101,105,100,90,100,92,96,98,104,99,104,93,82,97,93,89,102,110,94,105,105,95,89,98,124,100,102,95,104,72,106,104,101,107,102,101,102,91,97,105,108,106,94,91,97,102,103,100,104,94,93,95,103,92,95,97,92,97,107,96,98,103,114,117,99,115,103,114,102,100,104,97,104,105,120,86,95,102,98,107,95,100,107,85,105,96,103,101,101,98,109,105,95,97,111,102,133,103,104,113,89,95,102,104,101,111,112,93,100,98,108,110,97,103,104,109,97,100,94,100,96,104,99,95,110,94,98,98,95,93,107,115,102,111,113,94,109,104,90,102,108,103,78,103,105,113,104,105,109,101,110,113,115,103,94,100,102,86,91,103,106,85,97,95,90,98,101,87,101,91,99,68,105,71,117,94,103,97,101,96,102,94,97,94,114,108,104,103,117,100,95,101,98,91,101,105,96,115,106,104,103,102,94,109,112,91,100,95,102,102,106,101,93,101,106,110,99,96,87,108,101,105,107,101,101,108,108,103,96,95,92,77,83,110,98,102,102,104,119,103,99,90,112,105,101,98,101,101,97,101,89,95,103,101,103,104,98,95,100,105,92,90,97,115,105,95,97,102,99,100,109,94,92,94,107,115,93,107,110,100,95,92,96,107,119,96,97,92,102,91,105,95,95,98,113,103,105,108,101,112,103,83,100,102,95,109,95,98,102,90,108,98,105,106,110,94,106,105,97,99,110,92,105,87,105,105,92,106,101,106,113,99,98,90,95,98,99,98,97,89,101,89,100,102,92,111,101,111,103,98,83,110,95,113,90,67,116,102,98,83,102,99,106,104,95,106,106,103,120,92,105,98,82,96,97,112,106,108,98,96,98,90,98,97,114,106,101,94,106,104,92,90,96,104,100,109,95,96,112,98,98,109,105,99,110,106,98,97,90,102,105,101,108,99,111,117,97,103,99,106,108,99,115,113,109,100,100,116,102,106,109,113,94,98,88,97,107,94,96,102,112,91,94,100,100,109,104,101,98,97,113,103,74,103,102,107,108,95,95,110,113,100,98,95,104,91,97,104,96,99,113,106,101,101,113,113,101,101,107,104,102,87,96,102,96,103,94,110,97,100,89,99,96,99,96,98,106,96,105,114,106,105,96,91,104,101,95,109,99,106,100,92,93,109,106,104,100,108,105,107,88,114,111,98,106,113,99,103,102,90,105,101,96,96,105,99,103,102,107,100,95,102,104,121,100,92,102,97,100,98,114,102,90,103,105,93,108,99,111,92,105,99,90,94,94,108,96,100,98,103,110,112,113,101,93,87,102,111,94,103,89,102,68,98,117,100,110,97,94,94,93,104,100,113,108,101,101,99,106,105,89,99,105,97,103,95,68,88,104,106,86,92,99,100,98,103,90,106,98,99,106,90,93,110,79,94,108,103,100,80,101,110,104,103,97,103,100,104,100,104,64,108,101,99,101,107,104,99,107,103,106,108,111,99,89,99,94,108,95,102,112,92,103,106,113,105,102,99,108,91,97,102,103,103,115,91,112,104,99,92,93,106,110,99,93,83,96,104,71,90,101,101,110,97,101,98,95,96,101,89,111,98,99,92,92,129,107,95,99,93,101,105,78,86,100,97,101,108,101,111,108,102,102,98,101,93,94,99,96,91,102,101,89,116,121,98,89,99,108,108,100,99,101,102,108,98,106,91,104,109,87,90,94,102,103,102,87,99,110,107,104,100,114,99,98,100,98,100,114,96,83,104,106,95,104,108,111,109,100,108,104,107,113,103,109,97,101,92,107,93,105,103,91,117, +687.5517,83,101,108,84,94,93,105,95,95,104,97,119,100,104,100,91,105,103,110,101,107,108,106,96,104,91,92,93,99,103,91,100,99,99,119,100,98,105,104,106,109,88,90,95,121,105,92,105,96,101,90,112,83,105,113,112,101,95,101,95,103,102,95,106,103,109,102,94,96,115,112,105,105,83,91,101,101,100,108,95,93,102,109,119,99,93,104,117,106,99,107,90,99,95,104,116,99,102,98,95,100,105,97,82,89,101,102,86,103,96,105,103,96,72,106,100,97,116,105,95,91,98,104,107,99,120,103,95,112,107,90,107,100,92,114,98,104,83,96,103,97,116,93,96,96,96,111,99,85,102,105,99,105,110,94,100,95,88,110,103,98,106,100,104,98,104,114,103,117,100,96,92,101,92,105,99,101,104,96,100,87,97,90,97,109,103,100,81,101,94,88,103,97,101,96,112,85,92,98,104,99,97,90,94,100,101,106,101,106,102,107,93,113,109,108,105,100,109,102,105,100,99,104,79,90,100,94,89,105,95,113,109,98,105,90,100,106,101,98,98,114,93,105,94,99,110,100,107,100,96,105,117,93,99,104,110,87,109,90,95,94,101,97,106,104,106,121,91,102,92,105,97,103,98,100,95,100,93,98,98,97,105,100,87,95,91,97,114,101,100,94,101,109,84,95,97,105,104,107,96,105,104,98,100,102,83,106,101,98,106,82,112,96,109,99,90,101,100,97,99,103,107,116,100,94,100,95,97,101,100,102,103,102,108,121,99,66,98,104,98,121,90,109,113,98,97,97,100,100,95,100,104,94,104,90,96,99,102,110,104,111,107,102,105,91,100,110,75,103,113,83,94,108,100,117,95,104,94,104,112,95,104,105,101,108,93,101,110,108,101,100,88,93,99,100,102,106,95,92,103,104,90,96,100,112,88,96,104,95,108,106,98,100,96,99,91,96,92,105,77,97,80,101,96,102,107,97,99,98,102,118,93,103,103,104,106,103,106,99,115,95,102,106,105,114,90,83,100,106,94,95,108,87,99,76,103,99,90,106,101,99,101,101,99,112,101,94,108,105,100,109,134,106,85,117,97,99,103,98,108,108,103,103,100,98,98,96,100,112,107,112,107,110,100,93,97,101,89,101,101,104,96,108,112,105,97,105,107,97,108,94,91,95,99,94,102,87,107,107,96,73,104,105,101,113,99,93,109,94,110,100,96,105,94,97,105,92,100,96,109,106,109,96,97,110,93,99,105,113,96,94,97,116,112,98,98,101,99,106,104,100,109,98,102,97,103,102,83,84,103,94,90,92,94,91,97,90,97,92,104,102,97,116,94,114,102,107,103,103,100,102,91,92,101,109,72,100,105,102,100,99,95,98,98,104,103,102,94,100,104,96,87,104,98,94,88,101,100,94,105,108,103,100,102,91,95,88,94,93,114,96,100,105,97,92,102,104,93,106,100,97,101,102,102,106,94,87,104,96,105,102,100,101,105,110,107,111,107,105,92,102,100,98,104,97,93,109,113,100,96,96,98,97,95,106,95,92,97,117,94,107,83,76,95,89,101,94,101,107,92,94,117,96,94,97,88,99,106,97,97,100,83,87,100,96,97,113,98,101,101,108,101,102,94,90,109,106,94,94,98,108,94,109,107,86,87,97,105,99,88,103,89,89,107,95,90,100,92,111,102,104,98,107,96,103,99,105,110,107,109,110,96,100,106,105,99,99,89,101,105,100,95,95,100,91,98,64,97,93,114,108,98,105,111,100,99,106,95,88,101,109,100,97,89,102,100,109,110,94,99,101,98,86,101,102,98,107,92,97,94,104,90,100,97,99,87,100,97,101,104,105,100,91,100,110,85,95,102,101,100,105,111,100,101,101,99,89,106,113,95,105,99,102,83,100,99,99,100,95,95,102,96,101,102,98,96,91,94,87,88,88,101,91,95,98,102,103,100,112,106,105,110,94,103,99,99,101,100,80,115,99,91,99,105,88,99,99,95,104,104,103,108,93,97,101,97,105,92,99,95,99,103,99,102,107,99,102,101,101,101,98,103,99,79,92,100,91,91,94,93,108,105,104,96,101,104,83,114,87,91,122,120,97,99,87,98,109,104,103,97,100,94,99,100,94,104,102,91,115,100,96,102,104,100,97,105,98,94,112,108,97,104,102,114,102,99,114,106,104,99,102,113,104,103,113,102,96,100,96,104,96,107,98,102,100,101,101,100,103,108,105,98,93,86,95,102,100,97,102,101,90,91,104,101,97,92,104,106,105,92,82,86,97,101,96,102,91,107,105,100,88,104,99,96,96,95,102,117,103,101,100,118,111,82,104,99,113,86,106,123,105,109,96,90,93,92,109,105,106,103,113,111,90,100,101,96,104,99,100,101,88,100,86,106,109,102,90,95,94,99,108,98,95,98,108,107,93,106,93,87,102,110,92,97,88,96,106,82,83,99,122,108,100,108,116,101,90,98,106,108,94,97,96,104,92,105,90,94,106,105,96,104,95,96,95,95,90,101,94,106,104,116,105,103,111,109,89,102,98,101,101,104,91,102,94,89,109,114,105,103,102,112,97,104,102,101,102,98,100,94,96,103,94,107,101,109,99,103,104,110,108,104,114,105,94,104,102,101,100,102,104,98,107,88,114,107,103,81,119,94,103,104,107,104,106,92,97,111,100,107,95,109,111,113,118,113,119,102,103,102,109,98,121,100,107,103,105,107,109,95,104,104,99,100,102,99,111,100,115,92,111,100,112,100,75,100,109,108,117,113,104,118,107,100,108,110,100,113,104,105,112,112,95,102,102,105,103,104,103,104,108,98,99,100,101,97,97,100,105,116,111,106,115,105,105,105,98,106,92,107,102,104,100,107,109,116,98,102,110,98,96,109,117,100,105,99,73,99,98,96,91,97,117,94,121,92,102,101,97,105,113,111,103,103,116,113,97,106,109,116,91,105,99,100,92,108,113,101,99,100,101,100,104,95,113,116,94,106,101,100,105,105,87,100,102,106,102,99,106,105,105,97,102,104,101,108,99,102,97,111,98,108,109,93,119,102,100,96,115,103,103,93,93,101,117,89,113,100,107,100,108,113,111,90,100,92,111,92,105,104,102,96,94,101,130,106,104,110,94,101,103,98,83,104,101,110,120,100,94,92,102,85,111,98,102,102,93,93,100,106,101,109,102,71,94,101,108,106,112,105,98,102,93,94,113,93,98,100,93,98,110,84,93,112,109,113,101,95,96,95,97,97,98,110,94,108,100,106,101,103,94,103,108,104,110,101,103,104,96,117,108,94,104,109,104,114,106,108,102,100,99,99,98,90,96,107,110,102,99,86,105,99,100,92,94,100,103,104,109,106,106,99,117,110,105,117,101,98,118,92,106,107,98,101,106,112,101,109,106,97,96,102,94,101,82,104,110,100,96,100,109,109,100,99,96,109,104,106,93,111,104,119,113,111,95,99,102,110,101,98,108,120,105,95,102,112,101,105,101,94,105,101,99,113,108,105,117,89,101,100,112,107,103,114,99,104,113,99,95,105,108,101,107,100,113,103,91,103,105,117,116,96,95,92,101,101,76,112,111,99,87,104,101,100,107,104,109,110,109,74,110,101,107,109,113,94,103,107,109,98,104,100,125,108,105,102,98,89,121,102,110,97,94,102,94,98,92,102,104,88,102,104,77,108,88,102,116,93,103,90,111,96,103,101,100,112,97,116,103,97,95,109,94,112,103,108,96,98,117,92,96,101,98,107,88,112,104,90,113,105,88,100,101,102,106,109,98,99,98,99,93,108,99,113,96,93,110,100,71,92,114,107,107,107,98,104,113,107,102,115,103,103,103,106,106,108,93,108,102,93,95,105,94,105,99,101,104,99,110,107,111,100,109,79,107,108,100,99,104,92,96,90,94,105,100,112,105,102,107,110,102,109,96,107,77,102,115,106,110,89,94,106,97,111,116,112,87,105,101,98,103,99,101,108,87,109,108,109,95,95,108,114,92,100,106,95,97,103,101,103,103,95,101,108,94,99,105,104,110,102,99,97,98,106,106,101,106,111,103,96,98,108,108,105,113,106,100,97,100,97,110,100,99,105,114,109,95,98,96,98,109,89,97,94,104,101,97,100,113,100,94,89,100,109,98,100,107,99,106,99,106,100,110,104,97,107,128,95,101,95,97,103,105,112,107,110,89,100,105,107,94,89,103,109,102,96,101,117,96,109,106,101,102,109,96,105,101,107,99,96,97,98,106,87,112,94,93,109,102,109,101,96,107,103,96,112,108,97,92,112,99,94,115,98,102,112,105,108,104,99,111,108,105,98,100,95,97,97,108,104,110,99,103,103,103,104,94,103,112,83,97,106,106,99,107,98,107,101,93,100,100,112,95,63,103,104,117,99,107,100,95,101,98,109,95,118,94,101,91,97,94,120,88,101,104,104,100,110,98,100,100,116,98,104,103,102,106,103,113,99,105,102,118,96,114,118,90,95,97,118,99,115,93,95,117,96,83,98,104,90,93,88,96,117,106,101,88,103,85,105,105,98,109,92,111,111,98,101,110,91,98,98,102,103,109,93,104,99,93,96,104,87,92,106,95,105,100,102,88,102,108,97,105,102,106,111,103,104,108,87,106,104,102,107,98,116,113,99,106,106,119,98,108,109,98,101,112,90,111,100,106,90,90,95,102,109,109,90,98,108,107,107,100,112,94,108,95,96,99,101,103,95,96,105,94,91,97,94,104,103,113,89,105,102,93,97,134,103,99,101,104,104,108,95,72,96,96,112,98,110,108,102,101,110,91,132,89,114,95,94,108,89,97,94,110,108,103,90,118,117,96,107,98,100,99,108,94,101,110,104,103,113,100,97,119,97,94,108,99,105,111,95,108,107,98,110,105,91,86,104, +687.69299,98,106,94,96,98,107,96,109,109,118,96,91,104,99,99,92,110,100,94,103,94,100,91,111,127,107,98,97,113,103,107,107,104,100,108,90,98,100,103,102,95,103,101,98,105,109,98,107,108,99,112,96,80,109,94,100,101,105,110,93,91,104,105,93,98,98,96,106,107,105,96,91,104,100,102,107,90,98,114,101,94,96,106,108,87,101,102,106,106,96,106,101,100,97,113,111,104,89,83,102,107,90,100,102,89,113,93,95,92,111,108,98,105,105,105,103,101,103,107,97,99,102,114,99,116,100,114,90,97,96,99,114,94,91,104,96,111,106,97,98,90,105,105,112,92,116,93,100,100,106,112,92,90,93,96,103,93,97,105,94,115,109,104,96,104,96,102,98,109,98,111,95,99,96,100,97,106,102,97,102,86,94,96,97,96,106,104,96,101,104,91,106,101,102,97,114,91,103,98,102,98,107,97,95,106,105,94,102,104,119,109,98,103,108,93,104,100,95,107,91,95,107,103,106,75,99,102,115,99,112,96,102,98,109,92,100,100,102,105,92,110,89,110,97,104,100,87,104,103,103,92,102,104,107,107,96,100,95,92,92,101,114,97,96,101,102,99,95,102,97,103,102,95,98,98,94,104,102,101,105,104,106,97,103,113,95,85,96,92,108,111,88,120,106,107,108,94,106,100,95,109,101,95,107,109,102,129,95,100,100,113,109,101,84,96,93,84,103,89,125,98,102,102,105,104,113,91,97,106,100,102,92,105,105,92,105,103,103,100,85,98,99,111,104,109,93,103,98,109,103,104,104,106,99,107,112,101,101,97,107,104,99,102,97,88,101,91,115,96,95,96,106,111,94,93,98,109,109,109,95,111,90,93,97,99,104,104,103,98,96,106,102,84,98,90,110,111,102,101,101,101,91,102,107,109,93,101,110,114,91,101,100,100,101,101,87,111,120,102,107,101,106,97,116,97,98,103,97,113,107,99,109,93,108,103,108,94,97,94,118,117,105,99,100,95,89,98,90,100,98,95,105,87,95,107,106,85,97,96,100,109,96,107,102,106,117,101,99,108,102,105,106,96,101,100,99,93,117,111,108,106,101,108,102,110,96,126,95,106,102,98,112,113,105,89,97,98,94,98,101,104,102,105,108,108,101,118,108,118,104,101,117,97,100,113,114,94,109,100,92,109,92,90,104,88,115,105,97,109,98,96,105,103,85,108,103,103,90,106,111,100,103,100,112,106,97,106,103,100,102,101,94,114,104,101,116,109,92,98,97,100,98,95,92,97,95,105,103,101,109,88,103,104,92,99,91,113,93,98,104,112,88,101,101,103,98,101,91,86,102,110,105,91,92,104,110,100,103,94,85,111,95,102,84,94,109,104,90,102,98,104,106,102,107,108,115,100,112,96,94,102,95,114,99,99,106,100,108,100,110,94,105,100,96,87,102,98,73,91,96,104,96,97,91,96,92,104,102,102,110,104,102,102,109,102,113,102,109,105,116,108,95,92,105,99,92,97,95,115,101,109,103,91,104,95,98,100,106,110,92,105,95,106,101,87,106,110,92,97,90,103,95,102,104,99,107,104,106,109,93,104,93,102,102,96,101,103,101,101,99,102,109,92,109,91,102,101,103,108,105,97,105,109,94,115,95,109,95,117,101,93,114,101,102,93,97,110,105,100,104,115,94,101,109,96,96,101,91,102,90,99,100,99,93,94,108,113,99,108,89,95,110,91,96,91,93,108,106,100,71,93,107,99,95,87,100,117,101,100,110,113,128,110,101,93,103,100,98,94,101,102,93,102,108,107,107,79,96,91,111,99,91,104,94,101,111,102,95,93,92,108,104,97,88,121,91,102,95,100,96,110,116,95,104,92,103,81,95,99,87,120,106,102,91,111,100,103,95,105,98,96,114,109,95,99,103,106,87,94,72,100,97,95,106,102,101,106,103,101,110,117,102,101,108,107,102,92,100,95,101,90,97,104,98,109,96,114,93,96,110,100,101,94,99,102,109,100,110,102,105,99,102,100,113,98,91,95,108,114,96,91,93,106,115,106,103,101,99,111,98,101,98,109,104,91,90,101,96,96,102,102,104,103,102,104,94,107,93,107,110,102,109,106,107,93,87,113,98,100,102,94,93,103,104,93,106,106,100,94,106,99,109,99,103,99,104,113,115,95,107,102,102,110,111,108,110,106,86,94,101,92,106,118,100,98,106,98,95,91,92,96,109,127,104,104,102,108,105,108,91,124,96,93,96,98,104,104,103,102,109,109,98,98,99,100,105,75,100,95,91,95,112,98,88,104,104,103,93,96,93,98,98,105,98,87,79,99,101,105,97,98,99,108,92,105,95,104,95,97,89,91,106,98,111,100,112,99,94,90,124,101,94,89,100,95,95,103,117,88,98,101,108,98,99,106,107,99,95,113,92,97,107,95,101,103,105,94,86,97,104,95,97,90,117,110,109,109,117,112,102,107,98,109,89,102,103,108,94,102,95,107,91,103,103,96,105,98,118,106,106,116,96,101,98,100,97,115,106,80,99,110,95,119,103,99,95,93,106,96,84,111,113,101,100,106,86,108,90,98,92,96,113,97,97,107,109,104,102,95,101,84,93,106,106,96,91,98,91,114,103,107,85,101,122,98,103,96,102,101,103,91,99,93,101,103,104,102,105,102,97,117,100,93,99,86,94,97,110,101,102,102,109,128,110,105,99,98,101,109,97,109,91,106,102,97,114,105,99,99,104,107,113,93,105,114,94,99,104,102,110,95,102,106,101,97,88,104,103,101,91,102,103,76,105,103,95,98,103,93,98,103,99,110,109,108,91,95,101,100,100,114,94,100,116,92,95,112,92,106,109,106,94,95,108,95,112,102,113,99,89,100,95,103,108,90,89,103,102,103,110,103,107,104,115,103,97,102,118,103,100,103,103,98,87,106,88,107,106,109,100,109,110,97,91,111,111,109,110,101,108,103,107,105,100,100,106,104,92,102,107,110,92,96,92,99,106,99,100,97,102,117,97,99,107,101,105,86,85,97,102,99,122,104,104,98,95,100,105,107,104,99,98,99,102,99,107,97,101,109,107,107,95,74,97,90,87,100,90,100,107,83,91,112,109,97,98,101,99,88,94,106,107,100,98,113,98,99,80,104,97,91,79,125,103,102,103,103,97,102,111,106,105,98,111,117,98,103,99,109,105,94,93,94,112,101,83,94,105,88,97,102,101,99,89,96,89,114,98,109,109,102,90,107,110,109,103,91,100,98,102,106,105,107,106,104,114,105,88,102,112,96,98,105,84,103,105,108,101,99,107,114,105,95,92,105,108,89,93,101,109,105,103,96,95,104,90,112,101,104,99,101,102,94,105,83,101,97,84,104,113,109,105,105,105,90,106,99,106,100,97,92,103,102,98,94,109,105,118,104,96,100,101,99,105,98,95,104,104,87,111,93,103,115,98,102,102,86,98,96,112,100,103,92,92,108,105,100,102,108,99,84,109,109,100,101,100,98,102,95,98,111,98,95,97,104,109,102,110,95,108,96,95,104,107,105,108,102,100,107,106,108,105,94,94,93,99,102,95,109,86,87,103,86,102,107,99,111,114,92,110,100,108,99,104,99,102,106,113,95,104,99,99,104,92,100,111,95,98,102,94,109,113,109,108,105,93,96,94,106,92,94,107,100,94,110,94,107,105,96,99,96,113,108,104,100,63,101,100,79,101,94,74,112,90,89,93,107,91,97,81,96,94,91,105,97,103,111,96,100,101,110,96,96,102,101,89,97,88,105,91,93,103,107,100,99,104,120,106,105,99,121,99,106,91,102,99,98,95,95,96,103,108,97,98,87,101,113,97,108,105,120,87,99,95,105,102,99,90,97,101,108,87,94,99,95,113,111,99,98,110,92,98,84,98,102,107,101,103,98,88,103,81,112,116,109,112,93,99,91,98,83,97,89,98,99,100,105,96,106,94,86,106,91,97,105,101,112,102,91,100,103,94,88,100,98,114,94,100,91,99,99,104,107,111,94,99,102,107,101,94,100,104,98,99,87,99,93,96,100,98,93,100,98,94,90,100,107,93,90,106,112,104,100,97,117,100,93,97,93,104,99,81,102,108,97,94,111,101,101,94,106,94,96,105,87,107,87,105,109,105,97,99,91,97,98,106,102,97,75,103,106,108,104,99,105,98,94,102,95,101,99,99,117,87,99,98,95,101,105,96,92,95,97,110,106,105,96,107,95,104,105,102,104,91,97,74,95,99,106,110,98,93,113,107,101,98,109,103,89,117,103,100,105,113,95,98,94,95,105,101,103,93,117,88,98,106,102,111,104,97,121,95,101,91,97,95,106,109,105,95,102,93,89,113,92,97,103,105,100,108,85,96,105,108,102,68,108,107,102,95,100,97,89,121,98,112,84,109,101,101,99,95,87,112,104,105,105,101,97,89,101,103,96,107,100,90,85,100,104,104,105,101,112,92,98,103,93,101,90,85,103,109,100,110,103,98,98,96,99,102,100,94,90,92,100,93,77,87,110,97,92,104,99,95,101,97,94,97,89,102,108,100,98,98,91,108,97,92,98,104,96,93,61,94,101,130,105,104,107,102,91,94,110,107,101,107,110,106,101,96,106,118,111,95,101,94,98,106,101,112,97,99,117,109,104,107,100,93,99,105,90,61,104,110,103,105,96,107,89,87,98,109,90,100,102,96,94,109,98,103,95,113,101,96,107,94,91,90,104,126,111,105,101,107,101,92,93,95,110,98,116,108,102,99,86,105,102,80,91,103,97,99,106,105,84,104,91,98,106,99,106,103,101,105,104,102,87,94,102,101,108,104,101,110,102,90,97,95,106,102,117,104,100,97,103,112,94,110,107,83,101,94,103,106,116,98,99,105,100,98, +687.83429,109,94,92,91,96,100,103,105,95,100,86,101,99,110,86,104,100,87,88,107,110,91,110,103,99,107,91,113,105,107,108,106,89,112,112,103,80,99,102,93,97,91,96,93,102,120,88,95,99,115,105,108,94,95,98,102,105,93,112,97,100,102,92,92,109,113,93,118,93,99,107,103,107,94,93,100,87,114,95,97,109,97,100,102,92,94,97,116,105,110,93,97,109,99,101,92,106,104,101,102,109,108,94,100,96,96,114,105,97,98,97,101,109,96,100,92,117,80,103,93,92,116,94,114,102,99,98,117,105,102,94,108,99,104,101,96,87,96,101,102,98,98,105,102,101,105,101,97,101,90,103,92,109,94,100,101,99,100,104,103,90,99,102,99,102,106,113,96,95,108,110,116,89,92,122,109,101,89,81,108,90,92,101,106,103,112,103,94,92,105,101,108,103,98,103,100,93,107,99,102,104,95,103,93,94,91,117,119,79,108,102,97,108,103,98,94,81,104,104,92,91,101,105,113,99,93,95,104,101,100,104,99,96,98,100,112,83,111,99,100,98,92,122,118,101,95,83,106,93,94,98,94,103,101,94,95,111,88,89,93,100,113,101,105,109,115,108,98,92,89,95,98,102,108,98,94,79,103,98,87,109,108,103,101,99,99,91,101,89,100,92,95,108,100,103,100,100,100,104,106,107,106,98,109,94,114,104,103,104,96,95,102,94,96,99,101,109,88,87,95,92,101,100,98,93,105,87,91,126,104,101,91,105,99,90,112,104,99,98,96,90,111,100,98,106,104,90,109,104,97,104,114,103,101,106,101,105,108,99,99,102,91,75,86,98,105,106,122,98,103,107,96,105,97,95,107,104,101,106,105,113,104,113,104,88,72,104,100,108,98,109,87,94,86,92,112,97,95,104,93,80,102,96,104,102,94,100,94,102,105,100,88,96,94,109,123,102,97,102,106,100,97,91,108,106,103,99,113,101,119,97,92,112,102,105,111,95,120,103,94,101,101,90,101,95,105,97,90,101,102,100,92,97,111,105,108,90,96,103,102,97,103,103,108,111,105,102,97,102,97,110,110,104,98,112,93,108,106,105,112,102,97,104,100,100,94,100,98,91,102,96,90,116,101,92,104,100,99,103,100,109,105,112,101,101,112,92,107,97,101,106,93,98,116,116,104,105,90,110,79,103,104,94,103,102,105,102,108,102,86,98,85,95,107,105,101,107,99,109,103,105,68,106,88,97,112,76,91,110,97,92,101,109,99,100,92,90,93,97,93,113,101,99,102,98,110,111,92,112,122,100,99,97,101,108,92,94,105,103,109,101,101,95,110,99,102,100,107,108,110,113,112,97,110,112,104,109,101,102,83,103,107,99,94,98,106,108,106,102,73,101,102,107,104,122,105,98,93,105,109,101,94,115,104,102,97,100,107,102,105,100,104,110,104,92,91,98,101,103,104,100,96,98,98,99,98,97,99,117,106,101,108,100,104,109,104,106,102,94,125,109,109,103,106,115,99,97,90,103,100,108,107,92,110,101,101,104,102,101,83,112,92,106,101,96,104,106,103,108,106,108,80,103,107,98,95,104,100,79,100,104,113,98,94,97,105,105,102,118,102,113,99,104,106,99,111,107,113,105,97,97,92,104,100,106,112,106,102,104,105,117,101,105,104,95,101,104,94,112,104,99,95,102,104,110,112,95,107,111,100,112,95,88,102,104,103,98,108,107,98,104,96,99,96,103,104,90,96,103,89,107,107,104,102,102,94,101,84,96,94,106,94,96,100,94,107,112,102,96,96,97,98,110,111,96,121,100,104,123,103,105,106,94,110,116,104,103,101,100,92,111,97,101,92,107,92,99,86,91,89,112,96,125,104,94,105,111,104,101,91,110,91,120,92,106,106,95,109,111,108,96,96,95,103,125,105,110,98,109,118,103,91,106,105,88,105,101,105,94,110,104,88,103,97,92,102,93,113,107,109,84,102,121,110,94,108,101,102,96,91,104,104,98,94,102,104,94,104,106,102,100,104,106,100,97,108,86,99,100,111,104,108,98,112,96,100,97,95,93,113,102,108,106,101,98,109,103,115,95,101,108,106,99,103,94,96,98,98,95,105,109,88,105,94,104,101,108,103,96,99,89,88,101,109,89,108,104,106,102,109,107,106,108,111,101,91,108,107,103,109,100,105,93,95,97,90,98,114,96,100,99,102,104,100,114,102,104,95,91,106,102,95,99,112,93,100,100,95,99,93,113,105,100,108,100,100,105,92,103,87,98,108,83,102,101,98,104,109,96,92,100,99,98,116,99,106,105,102,105,115,102,120,110,95,97,105,92,83,97,96,101,85,97,97,106,95,110,113,90,100,103,106,107,93,93,113,96,102,86,108,98,115,94,92,108,64,81,97,93,93,113,117,102,86,108,105,84,91,93,90,101,119,91,99,103,104,101,96,112,101,113,106,103,106,106,111,95,92,107,97,100,102,96,89,89,104,104,108,106,100,115,102,109,86,99,95,98,100,107,136,101,114,93,96,113,110,102,105,99,104,100,99,94,109,94,97,105,109,103,98,99,112,97,100,103,90,113,110,108,95,116,96,107,112,96,108,84,117,108,95,104,98,113,109,100,111,104,110,96,100,107,102,112,102,111,98,108,96,97,105,99,99,101,89,99,93,101,91,108,98,103,98,93,96,104,106,109,92,106,103,94,113,102,97,103,109,102,104,105,112,96,109,96,103,96,109,112,110,107,88,108,99,105,102,106,113,98,96,104,94,106,102,102,104,92,108,101,100,83,103,106,102,98,104,100,92,111,106,100,110,102,104,107,96,111,102,106,103,92,112,105,85,101,113,95,109,108,103,102,107,99,101,106,111,99,94,112,118,96,108,100,117,91,98,107,96,109,120,86,116,99,112,105,98,106,99,102,113,101,126,104,102,115,110,108,109,99,113,104,111,112,109,100,113,130,106,92,104,93,104,99,108,98,93,112,113,108,106,100,91,132,109,100,109,107,75,91,107,104,104,108,101,108,99,116,95,100,99,100,94,98,107,93,109,112,95,100,104,96,99,100,92,94,106,86,107,98,102,97,102,107,115,102,95,110,103,100,122,112,108,105,97,110,122,96,119,102,103,90,104,98,90,105,96,101,105,106,103,105,96,107,98,101,106,120,116,100,101,100,109,100,99,98,99,97,104,99,105,109,101,88,103,93,125,108,94,104,99,98,106,90,100,88,92,105,100,94,102,103,103,103,93,104,103,114,86,92,115,116,108,103,117,109,100,98,92,97,90,110,106,102,105,110,100,103,102,103,106,96,89,105,102,101,85,90,95,97,91,104,94,93,109,91,102,106,108,102,97,102,99,106,99,87,90,104,110,100,111,105,107,99,113,96,94,113,102,103,103,111,102,94,96,106,110,88,113,116,107,117,99,100,100,96,118,98,109,106,109,111,98,108,103,122,97,94,104,85,108,105,118,103,105,109,99,104,109,106,104,111,111,101,108,112,102,99,102,97,114,102,89,102,89,102,103,108,103,115,113,127,114,104,105,108,102,106,95,97,98,110,101,111,98,104,102,105,105,103,94,111,93,88,106,106,104,108,96,104,107,105,91,103,100,107,106,95,109,114,102,119,109,86,100,102,100,98,97,136,105,100,98,88,97,94,106,102,98,97,100,108,97,104,108,94,102,101,114,103,108,113,98,114,93,95,101,104,97,89,92,104,103,98,113,113,96,109,100,103,91,104,91,95,102,96,104,91,99,105,89,113,112,119,103,100,109,106,120,109,97,100,107,97,111,106,97,99,90,92,88,94,99,116,98,106,115,122,107,104,91,92,101,101,109,103,104,105,108,113,91,116,90,102,92,107,100,96,101,96,96,91,83,101,100,96,102,101,93,102,98,91,100,101,109,112,101,101,87,104,86,90,97,94,91,98,105,112,103,99,103,112,115,101,95,111,104,95,107,117,109,91,107,99,108,100,95,95,91,97,115,102,112,105,98,91,102,100,104,100,104,104,96,95,108,104,96,117,106,108,96,98,102,101,103,97,91,107,107,102,109,112,100,114,98,90,93,108,114,110,97,109,96,100,92,104,86,76,96,99,109,86,95,95,94,98,109,76,89,99,106,105,106,99,97,101,97,112,110,109,102,97,103,107,97,105,93,102,101,113,106,105,102,104,101,91,101,101,88,93,105,95,115,120,98,105,103,73,94,105,105,103,92,99,92,99,95,98,110,109,103,103,104,89,101,110,99,91,91,95,106,86,112,106,100,103,88,99,118,98,109,98,108,111,99,103,108,94,87,105,114,98,106,107,89,106,103,104,90,109,124,104,110,99,103,102,96,110,100,93,96,100,90,100,100,108,113,97,100,105,95,102,110,95,103,87,107,91,82,116,100,96,102,92,91,105,98,92,95,72,103,96,106,111,99,95,117,103,96,98,87,96,102,108,107,119,100,98,93,102,95,93,103,95,88,110,79,113,92,96,74,99,101,92,102,100,117,102,99,108,98,91,109,102,101,104,102,108,98,104,109,106,97,107,97,107,99,103,102,99,79,108,109,115,106,80,97,97,103,106,110,100,101,78,107,87,93,98,94,102,101,105,114,97,95,94,107,101,106,102,126,101,91,106,105,93,96,104,105,101,106,103,104,103,110,112,106,107,98,103,101,98,104,99,94,100,95,107,98,105,103,104,80,102,113,121,93,98,91,98,88,107,95,107,95,97,98,101,96,100,92,109,96,99,95,105,107,91,113,115,90,113,101,102,114,95,107,93,108,102,91,108,99,94,117,97,105,99,101,103,94,96,97,108,101,116,102,106,105,95,107,94,89,101,105,96,101,97,105,99,94,103,103,109,125,89,100,104,98,103,109,110,104,110,98,82,105,104,107,113,100,109,87, +687.97559,107,90,90,98,90,107,98,91,95,86,101,97,94,111,103,97,90,121,94,108,110,90,91,93,94,105,98,112,99,109,108,105,109,105,97,99,117,102,96,118,115,105,100,113,109,80,102,100,103,113,109,99,106,91,106,99,88,88,87,96,104,105,100,96,102,101,94,94,92,84,102,104,102,105,91,111,91,94,105,112,103,106,109,111,100,92,101,110,97,98,109,95,94,107,103,104,119,100,108,79,92,102,101,98,88,93,97,105,82,92,94,95,124,101,97,105,85,100,105,92,92,110,98,112,103,114,106,107,96,95,84,95,85,103,106,95,105,102,91,102,102,113,95,103,98,106,96,106,99,106,94,91,97,100,101,80,92,101,101,95,95,104,105,98,110,95,85,110,95,83,97,103,97,105,113,92,101,95,104,91,94,94,110,109,98,98,106,91,97,130,97,106,111,94,104,99,104,105,99,98,94,108,96,100,98,99,113,93,103,105,88,101,104,94,97,77,117,104,101,99,108,108,101,103,103,96,95,104,100,103,106,91,90,104,97,103,110,119,116,103,98,97,114,111,98,98,96,101,96,96,90,102,98,108,101,106,94,104,94,91,88,95,104,90,116,99,99,87,102,92,97,102,103,98,110,98,102,101,96,92,102,98,100,97,104,100,95,106,98,105,92,102,103,98,108,105,106,98,105,103,95,84,104,101,92,99,100,103,109,103,87,124,100,109,102,87,122,105,88,109,102,105,114,85,106,108,100,91,94,105,109,94,104,99,95,109,100,100,97,77,95,108,88,93,112,96,99,95,112,104,99,118,107,104,112,99,91,113,99,97,103,92,107,100,113,128,99,104,115,104,98,98,113,103,100,99,104,93,88,100,96,98,91,105,91,91,95,101,106,101,75,91,89,102,98,87,108,97,96,76,93,96,98,95,97,111,97,95,102,88,100,99,109,109,103,96,100,102,102,100,105,101,99,110,96,93,109,92,96,103,100,104,100,99,103,102,99,105,99,110,105,104,107,98,100,103,89,106,114,106,83,104,93,105,96,102,105,103,107,106,91,98,117,110,106,100,101,101,105,89,100,102,113,96,95,109,101,92,101,99,99,107,109,110,91,89,94,111,97,102,98,101,99,87,95,100,98,95,97,105,102,117,96,98,95,108,90,90,109,102,97,105,104,98,108,106,103,108,99,106,96,109,102,98,105,96,104,109,105,90,97,105,96,104,106,108,89,111,97,117,106,95,95,99,101,109,114,97,101,94,96,90,109,98,93,105,108,105,94,103,90,107,97,83,105,100,105,107,101,96,91,100,99,98,104,96,105,100,101,118,98,102,116,104,97,102,104,108,102,106,101,105,101,109,107,91,106,97,102,103,107,96,109,89,78,84,99,102,102,98,82,90,110,96,107,101,101,101,98,99,101,115,95,100,99,105,99,94,102,97,102,102,97,99,96,101,98,107,105,85,123,102,100,104,90,106,86,97,99,118,102,117,106,109,113,92,122,100,113,99,102,112,102,102,92,90,107,96,97,97,112,107,112,101,101,95,95,86,99,105,97,112,110,100,108,94,102,102,96,102,111,99,113,106,96,97,101,102,112,104,117,99,94,110,86,100,80,104,93,95,97,100,89,85,105,111,104,101,111,99,104,101,96,102,100,100,97,104,121,99,104,93,108,98,95,87,98,97,119,99,113,95,105,93,107,97,104,105,97,102,104,100,99,100,106,102,100,95,102,72,87,106,105,99,96,101,103,94,98,105,108,92,111,100,100,90,92,89,111,110,116,102,102,105,104,105,101,98,98,108,89,100,98,106,95,104,92,115,108,108,100,96,97,102,99,101,103,104,123,109,107,118,96,99,117,99,93,92,110,106,105,107,92,91,105,105,107,119,96,99,99,95,106,103,103,99,109,104,95,83,107,98,108,108,97,93,90,100,109,97,94,96,79,83,98,111,101,103,104,103,100,98,84,102,96,106,90,107,111,99,94,96,102,110,97,111,97,112,102,101,111,99,90,99,90,105,97,106,113,100,104,103,99,100,91,103,99,90,90,90,108,112,114,96,98,103,95,101,97,103,96,102,101,106,108,101,80,94,102,101,118,109,96,101,99,117,95,92,97,107,99,96,103,109,100,108,100,97,109,113,93,92,109,106,84,102,122,103,98,103,109,109,112,100,100,94,92,109,108,104,102,105,97,89,110,90,98,107,98,93,102,98,98,91,74,110,106,97,85,97,99,87,98,101,94,102,103,100,98,100,94,98,96,103,94,113,102,100,126,104,103,98,95,103,74,97,108,113,97,99,96,98,90,103,102,91,96,100,101,100,102,110,112,103,112,93,100,104,108,101,119,108,98,102,105,92,93,112,84,96,97,118,101,89,99,95,100,98,90,103,92,101,107,85,96,95,108,105,93,103,99,102,113,116,94,101,100,96,93,109,84,109,93,108,89,104,99,98,101,90,96,118,93,97,102,78,101,93,110,91,112,99,113,103,95,105,119,86,103,80,89,97,132,99,101,104,98,100,90,103,99,101,111,105,102,88,105,101,100,103,102,100,102,104,108,110,96,94,97,100,102,104,103,94,99,112,91,97,98,98,120,98,89,103,97,104,95,101,110,100,105,104,102,92,109,100,107,91,111,100,107,96,111,92,117,113,97,101,111,88,84,85,95,97,101,94,121,104,106,108,101,109,96,111,109,105,103,96,105,102,124,113,115,108,100,107,106,99,106,107,103,107,102,95,95,103,104,107,77,118,105,120,100,123,100,110,116,106,110,106,111,102,99,100,99,117,107,100,103,115,103,109,117,104,105,99,98,116,99,102,104,99,103,107,103,95,85,100,106,102,106,98,102,103,101,104,100,102,94,105,95,100,91,117,115,110,99,96,108,107,103,99,105,99,109,107,99,110,104,137,112,113,103,97,108,103,107,99,89,106,100,89,93,117,111,100,98,105,143,102,108,96,108,104,104,93,94,102,101,106,113,94,104,105,105,107,102,90,91,101,90,112,94,97,104,98,97,110,104,98,108,92,93,107,111,100,109,95,93,98,103,92,103,103,99,99,91,97,109,91,103,97,96,110,100,100,107,96,93,101,97,103,101,108,112,69,105,100,94,94,99,106,99,113,92,93,100,111,101,93,91,96,95,106,104,94,100,96,95,92,102,102,105,96,110,112,100,100,99,106,115,97,98,112,98,102,107,104,105,103,109,100,95,92,101,91,90,104,121,100,106,100,101,95,97,100,99,98,104,116,105,108,109,105,101,107,99,103,91,99,80,109,104,103,102,100,96,105,99,88,110,97,103,93,100,97,106,100,104,105,96,100,119,97,101,99,92,99,104,96,96,100,102,95,105,106,103,96,114,100,92,101,99,100,95,107,107,104,106,96,101,116,100,111,109,102,103,95,117,88,90,92,102,105,109,106,89,100,105,102,86,93,96,99,106,89,110,98,99,100,73,112,102,98,98,91,102,99,102,99,117,107,108,102,99,105,101,99,94,103,100,89,92,97,104,109,101,91,103,91,89,91,95,99,90,101,105,111,103,99,102,107,99,108,103,106,93,109,101,86,98,100,114,102,99,88,99,104,90,98,99,100,102,113,105,101,97,96,102,103,87,105,108,113,101,94,95,98,99,107,108,96,109,93,113,105,104,105,107,106,102,93,101,107,99,91,98,98,106,93,109,109,94,101,99,98,99,109,112,93,101,108,96,98,105,96,112,102,106,95,104,105,98,102,107,107,96,99,95,99,106,106,104,93,105,101,98,102,98,101,106,98,101,109,100,95,91,90,104,96,99,99,98,101,100,98,99,102,96,97,108,100,109,103,97,77,103,103,97,102,103,106,111,107,103,108,94,97,102,107,108,99,77,95,116,110,95,109,95,96,106,90,117,103,100,93,108,101,95,103,113,99,93,109,99,82,108,96,105,101,111,88,106,99,101,94,111,101,99,117,83,107,94,103,97,99,112,102,95,101,93,94,95,95,103,92,106,106,99,117,100,102,110,117,98,103,102,83,108,112,103,98,105,113,93,99,103,96,101,118,117,95,101,92,96,107,91,102,109,101,104,99,109,95,87,106,93,104,105,98,91,102,101,103,108,106,100,99,108,87,101,99,102,110,99,89,109,104,101,110,87,95,102,104,110,93,106,108,100,113,99,97,85,89,110,106,99,127,87,94,117,91,84,107,104,102,102,103,111,116,105,101,103,96,96,94,111,99,113,106,125,103,111,95,98,103,97,97,105,99,100,102,107,99,91,111,99,100,105,102,95,100,108,96,97,97,109,104,98,108,100,91,94,93,95,102,91,104,104,96,108,100,102,104,106,94,101,93,101,100,90,92,100,99,99,112,101,105,92,107,109,103,96,101,90,61,107,100,99,96,90,105,101,103,101,96,110,96,99,108,87,92,94,97,101,108,90,98,112,92,108,99,91,91,95,96,97,105,106,96,104,100,113,116,109,104,96,102,101,98,97,100,88,101,102,112,91,100,93,114,100,101,97,92,101,105,106,101,92,105,91,70,93,105,132,100,103,111,99,99,121,102,92,112,104,103,110,104,106,109,110,106,102,90,98,105,89,90,109,98,94,103,101,91,100,97,101,71,96,91,99,85,75,100,108,104,92,105,113,93,102,106,125,107,107,109,122,99,111,99,95,100,100,100,111,100,102,99,112,93,97,93,99,107,112,108,105,112,96,96,106,102,106,109,105,91,98,88,102,89,108,113,99,113,101,105,107,90,110,92,105,96,95,105,108,112,115,107,106,95,100,90,103,116,104,119,92,108,107,107,107,96,101,94,102,102,92,101,98,101,106,104,92,94,99,95,114,91,97,92,99,88,77,96,95,96,73,96,103,83,95,110,105,91,96,103,101,103,109,110,99,106,109,99,119,98,115,104,94,107, +688.11688,104,105,86,94,94,91,89,101,100,105,105,100,96,104,99,92,95,92,108,99,104,93,116,113,91,104,92,98,94,103,101,91,95,98,113,116,99,98,105,108,96,105,90,103,112,106,87,104,95,110,100,115,90,108,105,66,97,107,112,88,100,95,106,87,106,97,95,95,93,99,109,91,93,99,93,107,95,87,85,100,96,107,106,100,81,90,100,109,109,95,98,101,109,96,89,110,100,95,100,87,108,105,92,100,94,98,108,100,96,102,97,96,95,88,96,86,101,92,112,100,104,97,100,86,97,101,101,108,107,91,98,101,104,118,96,113,94,108,96,107,83,92,95,96,97,96,109,92,89,96,104,106,92,101,99,98,103,109,100,100,96,95,89,99,92,104,91,97,92,109,98,97,86,90,101,136,97,92,98,109,101,94,99,100,102,93,94,84,118,123,99,91,99,106,102,106,94,91,101,94,99,109,102,101,108,94,108,93,91,95,95,92,108,99,95,97,94,100,87,105,105,105,105,104,90,121,106,99,91,83,84,96,102,97,108,101,95,109,98,104,101,104,101,105,97,92,99,97,91,102,102,100,108,99,100,95,99,93,95,98,83,106,95,104,96,104,108,92,84,104,89,100,100,101,96,102,104,94,94,98,82,115,79,104,101,97,95,128,96,100,92,103,94,97,101,121,95,93,96,101,108,92,113,107,95,97,107,105,97,105,78,102,102,111,101,101,105,107,100,106,96,93,106,105,94,105,94,87,110,113,99,91,104,102,94,102,90,108,97,107,92,97,99,99,98,100,93,90,97,96,99,96,121,105,106,98,104,106,106,90,111,96,95,104,95,96,91,106,109,96,113,101,100,108,91,95,104,95,103,97,108,92,87,94,87,94,98,92,103,93,105,94,97,112,74,91,105,101,102,96,98,80,94,110,93,90,107,91,104,86,93,77,95,92,107,88,99,101,99,99,96,101,90,100,111,92,100,92,103,110,93,97,99,109,105,99,109,97,96,99,105,95,103,98,104,95,87,85,96,103,100,100,91,119,71,97,86,91,101,88,93,97,100,93,118,114,100,104,110,90,95,119,98,95,94,90,100,105,110,97,121,99,104,107,91,93,100,111,97,96,98,80,101,100,97,98,102,103,100,101,99,95,96,98,100,91,95,86,100,95,104,98,105,100,99,108,94,98,96,77,100,97,99,101,91,107,94,101,103,108,109,95,82,98,105,94,95,101,104,113,91,85,98,93,96,112,98,92,103,98,101,110,101,108,75,102,103,106,103,112,105,100,101,92,102,83,99,106,85,106,90,87,107,101,95,105,99,92,89,110,100,109,93,98,94,97,109,100,98,93,92,100,105,102,108,104,92,95,94,98,75,97,100,101,97,98,110,101,70,94,102,83,111,103,104,99,90,106,105,100,97,103,94,91,106,101,91,119,100,102,109,97,100,104,85,98,104,103,111,99,113,98,100,101,100,94,90,95,95,108,92,94,83,109,97,105,104,109,99,104,109,90,98,105,95,105,97,102,103,91,105,105,103,99,116,107,107,97,80,101,87,104,96,94,100,85,107,104,94,109,96,84,96,97,113,91,99,91,94,94,92,90,96,105,88,117,102,102,101,98,97,99,108,108,96,105,102,104,94,104,89,112,77,111,126,92,83,102,88,106,93,105,91,86,75,101,108,97,112,114,98,105,105,97,99,112,93,108,102,96,106,88,106,104,106,99,114,108,93,92,88,111,96,108,91,105,95,100,105,101,101,106,104,87,108,110,96,108,99,97,113,90,108,105,93,98,99,90,97,102,97,101,105,103,96,98,92,92,103,93,105,90,102,97,102,100,104,94,99,100,101,91,116,99,108,106,108,118,90,104,98,118,102,105,99,108,98,96,101,110,114,90,106,99,96,95,107,91,104,101,99,106,119,101,94,99,99,103,95,98,103,98,90,102,108,107,91,102,95,104,105,87,111,98,102,99,100,101,97,107,99,101,95,112,108,100,116,105,90,112,104,97,95,120,101,101,110,108,103,89,97,98,90,95,98,99,108,95,97,101,117,122,112,101,105,94,91,99,85,92,121,98,102,98,98,105,95,97,100,102,106,97,111,88,100,98,103,101,98,105,94,113,110,104,94,100,98,105,97,103,102,105,98,97,97,97,104,115,111,99,101,99,107,95,101,102,98,97,87,90,110,109,105,97,78,94,102,112,103,93,91,105,94,92,105,94,98,96,100,84,108,96,96,94,73,99,99,98,89,99,99,92,99,105,113,97,97,100,97,106,94,98,101,100,103,100,99,98,87,106,95,99,105,99,91,102,90,95,98,105,111,105,102,91,86,91,106,98,88,100,104,104,98,93,108,105,97,95,117,96,99,104,108,108,98,97,106,109,93,110,96,104,102,87,88,98,90,83,93,96,92,109,94,107,94,96,102,109,100,90,116,109,92,108,104,90,98,97,90,96,98,108,95,93,96,111,95,106,109,105,90,101,92,83,91,100,95,95,99,103,102,101,99,97,104,94,113,107,101,98,104,108,101,98,100,96,99,105,91,104,91,104,109,91,103,103,88,108,101,100,97,102,98,97,97,93,89,90,84,91,99,102,100,98,96,101,109,100,100,86,106,92,97,110,96,104,113,87,91,103,103,104,89,93,86,97,99,95,76,101,98,98,112,90,105,99,88,97,121,101,81,124,98,100,105,96,96,97,104,95,108,105,99,97,111,140,100,90,96,106,103,108,96,114,90,99,92,111,104,101,110,99,104,97,105,99,102,100,105,107,103,109,96,101,97,96,87,91,97,103,96,111,99,111,98,109,98,82,82,94,113,91,108,100,93,94,107,101,93,103,104,101,94,101,95,105,107,101,96,99,83,98,107,98,103,98,95,99,103,104,97,96,104,96,107,102,101,97,92,105,93,95,101,100,97,106,96,110,101,92,89,109,97,113,99,103,101,98,104,95,102,98,113,106,100,117,98,100,98,91,102,106,92,91,113,101,91,98,97,85,97,97,110,110,111,101,101,110,98,98,98,91,96,88,91,101,99,74,103,101,104,96,103,97,106,106,98,95,87,94,100,100,89,93,88,102,100,83,96,87,119,98,104,96,104,114,92,101,97,113,111,89,103,106,94,102,102,94,97,91,101,103,90,111,112,97,93,102,91,91,75,94,111,97,103,93,111,96,99,112,112,100,99,109,108,97,107,101,101,101,91,104,91,105,103,97,106,92,89,106,105,89,95,96,98,99,90,93,98,106,103,100,111,94,109,94,95,106,97,94,94,89,99,104,93,98,104,90,101,100,98,91,102,95,106,89,89,98,99,88,98,98,99,96,104,111,91,98,96,97,86,98,108,102,95,104,89,102,99,95,93,104,106,100,96,91,100,89,105,97,75,104,89,102,104,98,94,96,105,99,95,101,98,93,102,99,111,95,96,92,99,100,96,97,109,102,70,117,98,87,95,95,94,100,104,107,98,102,110,102,95,95,97,96,98,99,79,105,98,100,105,91,99,106,96,112,98,89,100,102,102,92,99,108,104,103,107,98,95,107,98,103,108,91,99,103,93,94,100,102,111,97,102,93,103,98,96,99,95,100,91,95,99,98,104,103,101,99,92,119,93,100,102,102,100,97,104,106,88,102,95,96,95,107,86,98,99,99,99,103,95,98,105,105,101,114,89,99,100,100,104,98,97,98,103,94,98,93,93,100,106,110,102,108,106,97,95,95,101,91,103,102,92,100,103,91,91,105,105,113,100,104,89,91,100,88,102,93,81,102,98,106,126,98,114,113,105,97,119,83,93,97,113,102,94,116,105,101,94,98,99,100,91,103,104,99,97,94,95,106,90,107,100,100,90,99,105,104,102,99,96,110,98,93,97,108,102,95,95,96,103,103,100,98,92,98,61,95,100,96,100,100,119,111,96,97,108,98,93,109,94,100,98,96,98,96,98,117,105,89,99,92,99,93,93,111,88,79,100,96,102,104,95,107,90,100,88,104,102,91,103,99,85,114,104,91,91,114,112,101,84,101,105,105,107,99,99,94,97,100,97,95,97,105,91,96,98,106,93,92,83,85,94,99,101,94,95,125,110,109,107,106,95,98,101,104,102,111,97,96,99,103,111,105,101,99,97,103,91,102,96,107,118,93,97,105,97,101,102,97,107,106,105,95,102,88,102,95,95,92,100,103,92,99,92,105,87,94,100,97,109,95,100,96,94,91,94,93,99,97,107,95,103,104,99,94,98,110,116,103,81,83,108,93,95,100,97,103,110,101,109,92,101,93,90,106,98,109,90,96,95,105,96,79,107,101,95,96,100,106,93,100,103,91,96,97,105,101,90,118,93,95,105,107,91,97,98,108,89,102,104,104,97,95,88,107,96,103,97,76,91,105,95,104,96,103,108,96,98,103,101,104,99,98,89,97,76,94,98,97,105,105,84,98,92,96,98,97,93,94,95,102,113,103,95,96,106,100,102,108,99,85,106,113,102,91,96,104,114,94,96,95,112,101,100,94,107,100,92,100,102,91,92,95,99,88,101,113,94,91,109,99,98,98,96,100,95,80,90,92,106,110,103,87,98,110,99,101,108,102,93,97,95,112,93,98,93,102,98,98,99,95,100,90,102,112,108,101,102,101,100,103,103,101,104,87,96,94,106,94,97,97,98,106,95,89,89,97,94,100,97,92,93,101,98,106,106,91,94,96,95,103,97,93,107,96,98,103,104,96,105,113,99,100,90,102,102,106,95,98,98,92,122,88,96,96,91,93,96,92,97,95,89,99,99,102,103,108,109,115,100,83,109,105,107,103,93,120,80,104,88,100,95,97,118,91,85,103,88,98,96,104,83,88,93,95,102,91,92,80,115,92,96,98,97,123,101,94,100,98,107,101,101,88,113,92,108,121,65,78, +688.25818,119,105,86,94,108,104,100,102,108,112,108,107,89,121,107,92,107,101,103,95,105,101,113,95,97,91,109,92,96,99,102,97,98,103,103,99,105,102,99,109,118,111,105,111,111,109,110,106,107,94,109,93,101,81,111,101,97,96,116,101,105,86,102,94,96,118,95,95,101,110,102,97,88,100,100,100,103,97,112,110,104,93,112,95,97,117,98,95,106,107,91,99,95,93,103,103,90,93,99,95,103,96,101,107,88,106,90,94,101,102,98,91,105,102,110,106,107,109,100,104,97,94,108,101,109,101,106,91,93,97,98,77,96,95,107,108,101,101,97,113,101,91,109,91,97,98,105,93,98,102,104,93,97,95,107,106,106,97,106,104,89,109,113,115,94,103,96,91,105,99,104,105,88,104,99,100,97,107,93,102,93,106,109,103,97,103,90,91,109,100,90,93,102,119,108,100,96,93,109,102,105,103,87,102,87,115,98,104,110,99,99,106,101,103,96,101,100,92,98,104,120,100,103,102,109,101,98,101,104,95,106,99,102,109,98,104,98,112,100,111,92,111,102,105,88,110,101,103,107,99,104,102,95,103,100,95,117,101,108,104,97,104,105,93,97,100,121,105,95,102,101,93,97,103,104,106,104,111,100,103,90,101,109,94,98,110,87,103,98,113,88,104,117,93,111,95,103,105,113,104,98,103,104,109,96,99,122,95,103,116,90,91,97,99,99,104,96,110,101,102,104,94,106,100,109,95,97,115,107,110,102,91,100,100,104,105,97,99,107,102,112,104,86,97,102,103,106,102,109,91,91,79,108,101,103,86,100,102,96,102,110,100,95,91,99,96,101,99,97,100,108,97,115,114,85,117,98,99,92,110,91,115,102,110,85,106,101,109,98,100,108,89,90,106,94,108,100,95,100,100,94,109,113,83,99,97,103,101,91,112,88,91,104,91,105,99,106,90,99,97,104,100,95,103,99,98,103,89,92,97,96,108,106,99,106,102,96,102,100,93,100,103,101,107,108,99,95,103,100,99,105,103,111,89,96,92,73,105,111,102,100,104,119,98,110,116,102,118,104,99,95,116,107,95,96,101,88,98,102,109,94,104,110,99,96,95,102,100,103,112,110,97,92,96,107,98,93,102,105,112,100,102,99,91,109,94,106,94,101,103,107,102,111,103,95,103,110,101,92,108,92,93,99,105,100,95,108,93,98,112,102,114,89,107,98,94,109,89,93,100,104,102,102,102,101,103,101,107,93,99,95,112,102,100,100,98,99,98,104,97,104,103,79,94,117,92,121,107,103,88,108,97,99,104,104,102,109,101,101,113,102,97,107,101,98,98,91,111,99,105,101,95,89,100,107,113,99,106,97,95,106,100,108,104,95,99,96,101,98,95,106,97,100,105,110,112,100,84,103,110,98,102,106,105,98,99,102,93,82,99,103,109,102,103,97,92,88,112,103,105,108,105,104,96,89,105,96,96,98,104,87,96,103,112,109,99,103,118,107,112,104,110,95,86,94,100,86,95,97,101,106,87,110,109,95,98,100,105,95,102,109,97,109,92,93,90,107,104,94,106,101,113,96,99,101,93,109,123,101,109,106,103,95,91,101,113,109,104,97,100,99,99,101,95,98,97,96,114,102,100,108,90,103,110,115,105,109,104,92,104,76,101,83,105,98,103,99,92,104,89,109,129,106,93,101,113,91,114,104,96,108,89,96,95,99,105,106,124,100,71,100,102,91,102,101,131,101,106,111,101,94,104,110,101,109,108,92,86,105,101,107,100,110,104,94,102,105,104,99,101,105,107,100,112,101,100,113,102,105,100,88,99,108,107,115,109,99,101,112,102,116,93,105,105,101,111,108,88,91,94,104,96,95,113,100,99,98,92,100,106,101,97,102,88,110,99,92,108,102,107,112,100,101,106,100,89,104,89,105,99,107,102,92,102,100,90,99,95,102,100,104,118,105,97,98,98,104,98,106,107,98,101,102,110,95,116,97,103,104,109,115,94,118,97,136,94,102,111,107,91,100,102,98,105,104,96,102,101,99,99,93,97,79,106,98,103,83,103,84,98,97,95,89,97,102,119,99,98,94,111,78,96,99,108,111,93,109,76,110,89,97,93,108,105,94,103,100,105,104,109,95,99,75,98,106,105,100,104,97,100,102,109,104,92,89,107,110,105,100,104,112,102,116,100,101,100,98,111,109,85,96,95,94,99,100,102,102,103,108,101,91,109,103,104,107,99,100,98,90,97,98,98,101,107,105,104,111,96,109,100,105,103,97,101,101,91,100,101,106,106,102,104,105,102,101,97,98,100,102,98,108,99,109,61,101,85,117,99,109,98,108,90,107,97,103,86,91,95,108,107,87,117,101,99,102,111,110,102,103,105,100,98,92,103,100,106,108,101,96,94,101,103,113,120,97,103,97,104,100,99,96,105,92,104,90,97,96,93,101,93,90,117,103,85,97,105,91,84,95,106,104,105,97,92,104,108,99,98,104,99,96,95,105,93,110,101,114,97,106,107,105,98,96,105,101,108,92,107,100,106,91,94,104,100,113,95,86,105,104,98,98,121,92,98,100,114,104,86,104,79,102,92,102,101,102,96,111,116,107,100,95,107,100,100,116,111,97,104,107,98,96,95,107,95,107,96,102,102,98,103,94,97,97,113,108,130,98,91,103,97,110,112,109,122,99,98,104,106,118,101,105,104,111,109,113,107,96,107,114,122,113,88,107,109,109,109,109,101,110,112,103,106,94,106,116,107,101,109,109,103,106,104,109,100,99,110,95,99,93,102,94,115,109,104,106,111,107,107,97,104,116,95,94,99,99,107,101,110,103,110,95,112,110,102,104,98,96,85,102,105,102,100,101,103,105,102,104,105,96,108,95,104,103,106,106,123,91,96,106,120,102,97,104,97,103,98,108,92,99,109,105,94,107,105,106,102,94,92,103,105,98,105,100,102,101,94,113,108,108,112,93,104,107,99,84,112,102,99,105,94,98,70,92,94,116,98,112,100,106,94,112,100,113,107,99,100,100,102,100,106,90,107,103,99,108,101,105,123,110,106,108,108,114,108,101,82,114,91,117,98,107,125,99,94,105,107,109,99,97,96,99,101,92,104,100,109,108,88,91,105,95,101,98,103,109,105,109,98,99,113,100,95,116,98,98,102,93,101,113,92,108,100,103,116,113,101,91,104,102,111,95,94,94,101,99,98,94,98,105,109,100,99,84,95,97,96,102,96,103,91,103,109,107,108,100,96,95,109,102,101,101,98,119,93,77,91,97,94,108,98,97,92,107,115,98,102,115,98,107,90,109,93,102,104,103,105,103,92,103,98,99,103,98,99,106,106,105,99,109,96,89,98,113,106,120,92,107,91,93,97,98,98,94,98,102,105,104,114,98,92,102,110,91,106,98,103,102,116,100,108,96,88,105,97,107,113,108,104,110,102,84,102,101,87,77,113,87,98,101,99,98,98,91,109,64,107,91,104,102,93,115,112,96,102,108,101,111,99,116,105,88,102,107,109,110,109,115,107,95,107,100,101,102,103,111,102,101,107,103,104,115,100,103,93,107,110,98,109,97,89,107,113,103,90,105,109,102,111,91,99,93,98,109,97,103,98,103,113,102,102,92,104,105,98,99,93,106,86,105,103,105,95,104,103,87,108,93,88,92,95,100,110,98,109,97,110,103,107,108,112,103,94,100,103,99,95,103,113,101,102,99,91,96,106,109,94,87,101,97,106,103,110,98,105,110,98,100,105,110,101,109,110,110,100,99,113,106,93,103,95,97,95,99,100,109,108,102,104,96,94,101,101,97,102,108,72,101,105,101,104,94,107,101,106,101,120,124,102,90,107,99,96,108,110,107,100,111,106,109,115,106,113,92,107,107,100,109,98,87,101,99,95,97,109,99,91,101,97,106,100,101,102,104,101,98,97,94,109,97,115,101,105,101,106,106,98,100,101,91,112,99,100,111,118,103,95,98,90,99,105,97,103,104,100,113,96,95,104,104,91,100,95,111,95,102,113,115,100,106,108,107,102,98,96,105,106,101,108,113,111,108,111,105,97,116,94,88,102,114,95,115,97,119,108,89,119,98,90,100,93,109,102,93,109,98,108,97,105,106,106,103,88,90,99,100,106,87,95,102,101,102,90,101,94,105,103,100,109,105,112,106,106,103,105,117,101,121,97,94,99,101,101,114,102,108,106,93,106,99,91,91,87,99,103,97,99,105,109,115,95,84,97,105,99,96,96,91,94,108,118,117,106,112,106,99,98,96,98,96,114,101,100,109,119,97,89,96,102,95,99,94,99,106,105,112,96,108,104,88,88,106,99,117,100,96,100,103,84,91,102,103,99,102,107,115,98,107,102,111,94,98,113,109,100,105,88,98,115,106,102,105,104,102,82,101,102,69,96,89,98,97,105,108,113,101,115,110,112,104,102,103,116,118,100,105,108,100,99,112,106,100,101,89,121,104,101,98,104,103,109,96,90,105,100,115,65,93,74,92,93,109,100,99,92,109,84,114,95,98,119,100,103,98,108,105,103,93,95,100,116,101,101,98,106,115,109,102,105,91,98,106,98,96,109,97,83,108,109,102,106,100,97,101,101,114,117,101,103,114,100,113,100,113,89,103,107,107,101,115,106,99,101,98,92,98,119,94,100,110,84,104,99,97,106,101,97,91,97,97,103,102,101,91,92,110,108,92,102,114,103,102,100,79,75,96,112,103,84,80,87,101,100,101,103,112,106,107,106,92,103,108,106,110,94,113,107,117,99,101,94,102,109,106,119,92,88,104,83,92,106,118,98,102,93,117,101,97,103,97,111,104,100,102,95,96,105,88,92,98,100,115,100,101,104,97,83,100,103,104,110,107,108,96,98,97,102,110,85,108,72, +688.39948,123,99,102,94,98,95,96,117,78,109,144,95,98,94,104,101,100,106,103,111,106,91,98,99,115,90,102,106,110,97,112,93,100,105,89,110,108,94,100,110,105,103,113,92,86,103,96,109,100,109,103,93,95,90,117,101,99,91,107,97,106,105,94,91,94,81,85,96,96,96,109,100,116,99,97,103,109,68,108,99,91,100,90,90,95,89,99,112,101,105,105,93,101,114,100,107,94,112,102,96,102,100,102,115,83,98,97,93,98,94,100,106,105,97,97,90,104,102,79,98,82,96,105,107,100,104,107,98,109,100,114,103,93,93,87,89,86,110,98,96,96,106,89,103,108,103,103,102,96,93,97,99,102,91,96,78,96,96,101,99,102,96,103,92,105,101,107,92,98,83,94,107,102,122,105,89,99,98,95,97,99,90,96,106,97,107,94,94,101,100,99,95,104,109,106,98,98,100,100,102,108,99,89,96,94,89,91,108,104,104,88,107,95,91,96,99,94,97,112,108,101,105,64,109,93,108,110,113,104,109,101,101,98,97,91,105,105,93,106,95,96,110,109,105,96,99,96,104,128,90,110,107,99,117,109,92,97,99,111,90,116,106,105,98,87,99,102,107,106,91,116,90,102,87,105,94,99,109,106,103,89,105,101,101,113,96,84,98,87,110,105,107,99,104,107,100,100,103,98,104,95,106,96,100,108,99,97,116,104,113,89,103,99,104,111,92,101,87,98,94,101,109,98,93,109,96,83,100,105,105,104,101,101,97,94,105,95,106,96,111,91,104,100,105,102,106,100,106,112,102,101,101,109,92,93,78,85,105,102,94,97,103,97,109,104,101,105,93,92,107,108,100,98,101,105,104,105,96,108,104,118,102,92,98,101,102,99,113,91,100,101,93,89,103,90,99,109,100,118,93,101,94,95,101,103,95,85,97,94,91,81,96,103,90,97,106,96,100,104,100,95,91,97,98,105,91,106,101,103,103,105,101,87,91,105,99,104,100,99,108,96,100,100,99,83,100,96,93,111,92,83,98,113,100,104,100,95,91,99,105,100,140,102,88,95,106,105,101,106,85,100,108,99,105,98,97,91,108,110,96,100,99,107,100,99,108,103,95,100,97,98,110,96,101,107,102,93,95,98,109,100,100,95,101,94,99,112,102,106,101,96,94,87,114,105,109,111,115,99,104,105,91,100,103,99,104,90,104,113,105,113,92,87,97,109,102,108,96,106,97,87,101,106,96,98,106,105,94,105,105,99,83,105,97,100,94,104,106,103,98,97,106,100,93,105,99,93,101,87,114,90,104,100,109,97,109,104,94,103,114,99,92,100,87,106,88,107,86,83,103,114,98,88,110,126,105,94,103,111,93,103,104,121,100,99,101,110,92,94,104,98,101,104,101,109,120,106,106,107,102,105,92,105,109,94,108,95,89,105,101,100,96,103,110,107,110,113,99,108,89,105,91,99,108,90,91,98,95,95,99,97,98,93,113,99,95,106,103,113,95,108,94,99,101,99,100,97,95,100,116,100,104,96,105,110,105,96,100,102,92,108,102,94,97,90,104,97,105,98,109,102,99,105,108,99,100,105,104,91,103,103,102,102,92,103,91,106,98,112,86,104,96,99,106,105,104,102,101,102,97,112,105,108,112,98,106,116,107,95,114,103,99,96,101,108,96,98,101,111,107,109,100,108,92,92,90,100,93,90,109,109,98,101,94,101,100,90,89,108,95,105,91,117,89,104,95,92,97,108,105,105,110,87,104,110,101,105,94,100,100,107,102,109,101,100,106,109,98,96,99,107,95,97,117,98,98,98,97,100,100,101,93,98,103,97,99,106,99,108,99,93,105,91,104,114,105,97,109,103,101,98,110,107,108,95,102,95,105,105,102,105,107,94,103,95,97,104,108,103,103,108,102,97,84,94,96,99,104,105,99,104,94,102,102,106,100,108,101,92,101,101,104,101,113,94,95,101,112,97,104,104,104,108,109,98,99,86,91,98,114,98,101,104,106,104,92,86,107,113,107,108,102,98,100,94,107,99,115,99,104,103,93,102,95,104,101,88,100,115,101,100,101,106,97,110,100,108,93,81,109,98,100,105,109,94,97,101,93,94,100,89,108,94,114,101,94,94,99,104,112,110,99,97,108,108,105,137,92,81,120,116,92,87,100,101,95,90,104,92,94,99,105,100,101,119,114,106,102,104,88,92,115,98,98,96,102,102,98,103,105,106,101,110,98,111,96,104,90,101,112,107,99,100,95,116,88,107,109,103,106,91,109,101,98,99,98,79,107,95,94,104,99,92,111,97,91,110,92,102,101,104,100,103,84,95,100,109,101,98,105,107,101,103,96,106,100,100,113,101,106,93,110,118,110,94,107,91,100,104,101,103,103,102,88,109,114,110,101,105,105,106,97,105,107,103,102,97,77,113,103,105,120,103,86,105,90,102,103,95,102,93,99,85,104,94,106,110,102,112,103,98,108,102,87,91,105,104,100,107,104,83,104,104,103,99,101,101,101,77,97,99,118,92,117,105,102,92,105,98,99,87,90,104,108,100,105,105,107,112,101,111,111,109,87,103,107,91,97,102,92,97,90,106,102,99,104,105,114,102,111,107,100,112,95,109,98,97,111,111,100,93,94,98,96,112,107,104,100,116,97,109,91,107,98,92,95,109,84,109,100,91,107,102,98,96,101,99,104,107,100,102,100,111,100,97,94,98,109,98,94,103,102,113,99,117,103,85,108,102,92,99,93,87,100,104,103,99,117,108,103,97,100,95,97,99,93,91,95,68,88,99,101,96,101,98,92,99,105,104,98,100,96,107,94,96,102,93,105,95,97,101,103,102,111,93,93,89,97,91,77,118,109,89,95,100,90,95,101,95,107,111,102,91,117,105,98,104,111,90,100,107,103,108,94,112,106,101,104,99,94,99,93,99,109,104,96,100,101,94,84,102,102,104,103,102,97,110,109,114,100,101,91,101,100,101,111,107,117,110,107,104,104,106,96,94,103,97,103,94,89,95,114,102,96,100,92,100,96,104,104,95,110,100,103,99,101,105,104,98,99,94,109,95,104,108,113,109,110,98,102,94,102,99,102,102,92,100,93,95,90,98,88,104,107,109,109,103,102,104,99,97,93,102,98,99,95,100,97,92,111,98,94,106,106,109,108,94,90,104,94,107,109,101,101,102,80,113,101,127,101,104,95,96,85,112,89,106,116,110,106,108,96,97,97,101,93,104,92,106,102,93,103,104,102,112,98,100,102,92,90,105,104,103,95,96,94,102,98,120,97,106,107,97,81,79,92,91,91,103,104,113,116,91,101,106,89,103,105,85,108,100,99,107,110,103,91,102,99,107,100,95,122,107,101,78,111,118,98,111,95,98,95,92,95,91,128,95,97,120,101,100,97,102,107,98,112,105,95,94,98,92,102,98,95,97,102,108,106,101,100,100,114,99,99,95,116,103,94,103,99,104,96,92,102,105,100,83,97,98,98,101,87,91,110,101,99,109,102,98,113,102,101,105,103,106,108,108,105,107,96,98,107,99,114,85,97,106,99,98,106,101,91,105,99,92,110,94,108,106,97,99,104,103,102,102,99,104,100,98,90,80,105,103,107,98,100,102,104,108,102,100,98,118,97,86,98,95,97,96,99,100,99,100,101,100,98,92,107,110,102,99,110,87,93,80,104,101,107,116,102,101,88,102,98,98,100,92,104,96,104,104,102,113,98,112,111,103,100,101,108,94,96,99,88,101,101,95,100,99,113,113,87,108,94,96,97,92,100,109,95,95,100,73,98,90,104,100,89,110,102,119,83,102,108,109,100,104,94,87,95,93,105,98,95,101,101,109,105,105,105,105,106,93,99,107,91,95,95,100,94,108,108,110,99,94,94,94,98,105,106,95,94,98,81,98,100,94,95,108,105,109,99,98,102,105,106,85,109,108,102,103,102,88,107,96,105,97,94,102,101,91,94,92,104,104,106,108,109,113,99,101,88,87,98,102,88,91,104,107,105,111,100,105,101,100,100,96,101,99,98,99,103,87,97,99,99,117,106,106,95,118,95,105,84,107,102,99,98,92,104,104,99,103,101,96,95,95,93,107,106,94,105,97,117,85,116,108,96,94,94,102,96,100,104,103,107,104,103,99,103,104,98,98,85,101,102,111,127,108,109,99,104,109,107,89,97,103,105,97,111,100,96,97,105,101,103,100,95,92,100,113,91,96,84,92,90,105,103,99,70,95,87,94,88,99,106,103,89,118,119,97,105,115,100,97,106,101,96,93,97,110,100,106,101,105,96,85,97,101,99,104,94,104,99,106,99,104,109,102,97,95,92,109,101,104,111,102,106,92,107,94,98,120,111,86,96,109,112,91,107,97,113,115,95,83,100,111,101,90,100,112,99,89,97,92,115,96,97,101,104,115,108,100,105,94,91,98,92,95,108,101,99,100,109,93,94,101,94,94,99,85,102,87,102,99,95,101,99,100,102,113,81,88,100,90,93,98,117,108,101,95,91,113,104,93,101,104,96,102,103,105,111,93,94,105,99,91,101,106,102,103,107,105,95,102,95,99,80,99,106,102,107,111,95,108,113,102,109,106,102,100,99,102,100,97,102,99,112,99,105,98,96,100,104,129,107,106,97,103,97,99,88,101,88,100,92,107,96,60,91,103,98,96,111,107,101,94,88,98,94,99,108,100,95,100,105,113,90,101,94,116,94,100,99,98,91,105,91,104,102,99,94,89,112,109,101,108,96,75,94,96,96,96,101,96,99,108,91,89,109,101,88,108,100,89,119,95,99,97,132,105,101,97,95,99,107,118,96,113,101,94,105,92,98,96,104,103,92,98,97,104,100,98,101,107,101,95,109,101,64,92,105,104,93,100,98,114,102,94,75, +688.54077,72,90,95,98,95,106,92,102,109,100,113,102,95,69,106,97,98,100,102,103,109,100,101,110,85,98,99,96,119,100,91,104,104,99,82,110,88,92,99,97,88,109,104,86,108,109,90,106,115,103,96,94,88,99,95,90,102,97,82,102,112,95,106,95,97,106,88,111,90,100,100,93,113,101,109,91,94,99,93,97,93,95,93,106,85,103,95,105,81,103,98,94,102,90,89,99,109,99,86,95,96,106,93,102,110,96,98,99,91,115,100,108,96,110,103,97,102,97,113,103,100,95,103,104,107,107,114,91,94,106,117,99,100,107,101,107,101,104,102,90,86,95,88,106,78,91,108,101,111,99,99,100,110,84,99,91,100,94,106,96,88,90,102,100,93,102,98,110,97,104,101,95,95,84,98,97,106,98,113,90,99,95,97,98,88,94,105,103,110,92,98,106,110,99,91,107,104,104,99,101,109,84,100,98,107,96,112,111,110,98,94,104,89,109,103,100,103,96,99,91,110,100,82,103,98,111,102,101,96,100,103,94,100,102,83,100,90,99,102,112,98,83,106,94,87,95,104,107,100,106,95,92,97,98,95,102,86,94,97,99,97,89,105,121,90,97,103,109,106,86,97,104,98,106,99,95,98,100,96,98,85,100,103,98,103,98,106,96,104,102,108,113,103,91,102,106,101,99,89,91,113,102,96,100,98,93,99,112,100,101,84,99,95,96,99,112,94,91,103,79,97,96,103,96,101,99,103,111,108,105,99,99,107,110,100,97,104,107,92,106,103,106,100,91,94,100,86,95,107,112,94,92,95,91,105,100,97,90,102,99,98,96,98,99,95,93,99,103,96,95,116,109,107,99,108,102,100,107,101,92,104,103,97,94,97,94,92,107,109,98,118,101,104,104,103,96,93,95,104,104,94,88,102,109,83,97,105,92,104,94,110,98,100,97,113,100,101,95,103,90,97,93,95,102,88,100,101,86,101,107,98,108,87,96,95,102,98,101,90,103,97,100,78,104,102,99,97,102,93,111,101,89,100,99,98,109,86,98,116,91,102,106,104,112,104,76,97,95,104,106,97,111,105,98,104,90,99,100,109,103,101,111,98,96,100,98,112,101,106,105,99,112,115,108,86,102,104,99,91,100,104,97,98,121,110,109,98,95,101,91,67,106,99,100,112,102,94,90,91,90,114,90,100,107,89,90,104,95,110,78,92,102,106,97,101,100,133,91,103,104,99,97,91,93,99,97,102,91,88,107,95,102,102,113,92,92,94,105,91,109,110,95,102,107,94,95,118,99,95,101,96,96,100,101,90,104,105,90,92,92,95,101,95,107,100,101,105,103,93,107,105,93,100,98,114,102,104,108,102,101,105,98,114,95,96,104,104,107,102,107,100,98,104,100,106,105,101,92,104,100,99,95,102,101,99,102,94,93,106,89,104,96,91,109,93,100,101,97,98,100,108,88,103,96,110,86,104,102,100,115,98,100,105,99,98,112,100,117,102,91,110,98,100,97,90,121,110,107,105,96,109,102,107,103,96,95,97,104,100,100,103,110,106,92,97,95,94,107,95,109,89,105,72,109,91,96,101,110,95,90,95,74,92,123,103,96,86,109,99,102,100,101,95,98,111,96,106,105,84,93,111,92,90,105,106,94,102,103,90,113,110,111,104,96,96,81,105,95,103,109,97,91,89,110,106,98,93,97,117,101,102,102,102,106,98,85,100,91,103,101,95,89,91,71,87,104,95,104,92,98,104,103,100,98,93,102,93,109,103,95,106,106,104,87,113,105,97,91,99,115,96,108,103,98,81,111,103,102,91,102,92,97,91,99,100,92,101,105,106,100,102,101,90,100,103,95,109,103,99,101,96,101,98,106,103,105,98,101,112,106,105,76,113,104,94,95,101,105,100,104,105,109,104,103,110,100,107,98,83,104,105,90,103,91,95,113,94,103,102,104,92,96,103,107,94,95,88,99,119,105,91,105,104,102,94,112,111,100,106,102,106,99,95,104,83,106,94,107,102,105,108,95,111,102,89,99,98,101,88,94,111,111,107,92,99,104,105,110,96,99,100,112,111,97,110,91,109,93,97,105,107,101,107,99,112,100,109,100,106,95,101,95,105,119,102,96,106,108,99,110,108,87,114,94,102,98,106,96,96,104,106,99,87,107,107,92,82,98,112,104,111,105,90,106,92,97,92,96,103,90,108,89,109,96,106,102,94,79,112,102,97,90,113,104,96,103,99,104,93,97,99,107,100,108,102,97,100,103,105,93,103,97,98,108,101,98,100,103,95,101,95,96,90,91,104,107,85,99,101,92,86,108,103,92,102,92,97,101,113,92,92,103,117,102,100,96,106,116,95,88,98,91,105,93,108,103,106,92,98,98,119,98,107,104,93,103,110,113,100,94,99,95,102,103,91,95,98,96,98,88,97,113,99,96,114,98,105,104,90,103,88,100,95,96,91,108,104,103,106,110,94,119,103,99,93,99,110,97,108,98,102,94,101,108,107,104,112,104,107,112,96,116,103,96,92,97,106,96,104,111,106,109,98,91,99,103,92,102,110,100,98,100,100,100,106,103,98,100,103,106,109,106,99,102,92,99,98,113,94,90,98,98,106,105,92,98,93,95,101,95,96,102,106,98,100,114,91,108,111,90,103,100,100,96,95,115,82,116,104,77,110,95,104,88,94,111,108,111,92,118,87,103,112,100,105,110,97,108,94,125,94,102,92,104,105,106,113,103,105,110,105,111,105,110,104,109,92,110,104,105,90,103,102,105,106,110,94,91,99,113,99,104,107,102,107,100,102,110,96,109,100,94,98,109,105,109,104,100,108,99,106,97,103,115,109,91,102,103,87,96,103,112,104,96,116,92,96,109,105,95,107,111,114,111,115,108,99,98,108,102,106,104,114,92,104,96,90,102,99,122,88,113,96,100,97,96,99,119,102,99,97,103,102,104,96,100,95,92,96,103,113,108,97,80,103,98,101,86,100,91,112,99,106,105,103,103,107,99,106,97,106,91,105,106,115,108,102,96,103,99,101,109,103,91,108,97,100,97,104,107,94,113,98,100,103,96,99,94,105,88,100,106,103,103,98,109,86,97,92,68,102,101,91,94,98,104,80,103,108,94,102,84,106,93,100,96,100,102,98,93,101,101,100,90,112,106,104,105,95,89,112,104,103,103,104,108,85,103,102,98,101,113,96,92,105,95,96,98,106,115,96,94,94,92,94,97,108,95,115,100,110,103,94,104,106,98,101,95,101,100,101,97,103,87,99,99,103,110,93,98,108,99,104,112,95,102,106,113,112,98,121,96,96,119,104,105,100,95,104,90,98,122,100,108,100,99,98,94,105,94,112,108,105,107,99,102,97,95,108,100,103,94,99,100,107,96,97,108,103,103,97,108,114,119,102,102,102,105,96,94,101,101,92,96,87,99,84,102,113,102,115,101,95,95,101,120,103,100,98,113,103,102,104,95,102,105,96,105,105,108,100,97,95,102,105,102,103,101,96,100,106,128,91,102,97,101,114,102,116,105,95,111,107,102,115,82,108,98,116,105,101,94,100,99,97,95,113,100,96,92,108,99,100,98,100,109,98,102,91,104,105,100,91,113,98,97,95,95,113,110,93,98,100,102,92,104,103,108,111,115,90,114,107,95,108,100,95,98,98,92,80,110,101,96,102,98,75,99,114,95,98,90,116,98,109,97,106,101,107,96,95,100,105,105,101,112,110,75,101,88,90,105,90,96,103,99,98,98,99,102,101,102,96,103,104,89,118,91,109,105,110,101,104,92,97,101,106,95,98,100,98,95,102,102,106,86,106,124,100,102,97,96,102,98,100,105,99,99,98,113,96,109,90,106,119,87,100,97,94,108,104,95,90,96,94,96,94,100,100,95,102,100,98,100,96,93,104,100,103,113,101,103,96,95,102,103,96,95,99,99,100,94,106,99,104,114,105,106,99,90,111,105,105,101,117,105,89,98,101,94,107,112,98,106,95,105,95,103,100,102,99,100,102,83,103,96,105,97,102,112,105,97,102,110,102,107,107,106,116,98,108,98,100,94,96,99,96,106,106,102,87,105,99,93,106,104,106,83,103,97,95,79,100,96,97,112,100,110,109,99,107,104,76,99,100,104,104,93,120,102,102,106,112,97,92,104,96,107,102,102,83,109,106,108,102,103,99,105,106,101,106,102,92,91,110,96,94,107,123,86,108,101,113,95,110,93,107,102,107,87,88,102,102,104,104,109,101,106,123,96,90,102,125,91,108,96,105,101,92,93,113,101,94,105,101,103,95,103,94,105,111,92,113,111,106,109,104,98,98,100,96,104,111,98,106,104,111,90,90,111,83,111,103,113,105,125,110,104,101,91,100,99,98,92,96,100,100,110,95,95,98,99,101,95,91,109,99,100,105,105,119,97,100,109,115,93,120,110,103,95,96,109,103,104,103,94,102,98,104,111,102,95,94,96,99,99,96,104,110,106,102,121,93,95,104,101,109,108,87,96,101,99,104,93,71,99,111,100,107,99,104,106,93,92,111,97,89,104,112,121,125,110,107,105,106,106,107,97,96,105,95,95,100,106,105,109,87,92,132,102,89,120,110,93,101,105,96,101,99,101,100,102,99,94,109,111,124,108,114,98,88,105,98,114,106,103,114,104,102,98,105,98,100,101,108,101,94,102,89,111,101,105,114,100,108,98,106,97,121,98,106,111,83,94,96,104,98,95,111,108,107,100,95,99,98,102,90,104,98,92,102,104,107,98,109,95,106,64,98,106,98,102,103,110,72,92,106,109,101,98,103,99,90,102,124,102,100,118,94,84,105,124,108,114,97,115,93,97,113,101,105,105,99,102,102,93,91,104,86,92,109,105,100,110,92,107,112,113,95,99, +688.68207,119,107,98,110,93,95,107,106,93,99,94,87,121,85,94,102,106,99,91,98,104,93,100,99,87,118,90,98,103,127,77,98,108,101,99,114,115,95,99,86,109,96,78,92,95,108,100,100,91,110,103,100,112,97,106,99,91,103,102,97,113,96,101,94,108,101,87,96,103,93,100,98,92,95,99,105,92,96,104,103,106,97,100,98,90,91,94,101,93,86,100,91,63,94,107,101,106,91,95,105,95,102,88,103,91,115,95,118,95,121,98,95,103,100,90,102,76,94,94,102,106,113,99,107,105,96,108,102,73,113,92,100,114,113,79,100,93,112,100,94,90,94,99,102,87,94,97,96,99,99,94,103,106,105,98,98,110,70,98,103,105,94,98,95,87,92,95,103,106,105,108,106,94,104,99,104,95,87,86,113,97,94,93,87,101,103,92,95,95,98,90,106,104,117,95,91,77,90,98,102,105,110,101,104,110,109,95,101,103,105,116,110,98,110,102,97,106,105,98,92,94,102,92,91,87,123,97,96,101,100,93,104,102,104,121,101,102,102,97,99,94,84,110,102,99,97,92,102,106,104,95,99,100,105,105,102,92,110,99,98,91,108,102,94,103,99,109,106,108,105,97,101,100,96,92,103,109,97,96,109,110,90,101,100,133,105,90,111,102,96,109,100,107,89,104,95,102,111,96,103,95,100,104,95,95,105,107,100,101,105,98,101,92,90,107,91,90,113,90,103,98,91,104,103,97,107,89,106,104,104,96,105,109,92,104,94,111,105,88,92,99,98,105,89,93,92,98,108,103,109,101,105,82,104,113,100,98,88,102,83,95,91,101,105,95,95,102,89,94,97,112,100,88,102,107,97,104,115,96,95,107,99,105,105,96,101,79,97,100,92,110,85,95,100,93,101,95,104,105,105,88,108,105,102,114,91,94,92,109,87,101,108,100,100,105,105,117,96,90,88,97,90,91,106,99,83,89,104,112,111,101,102,97,98,91,100,100,98,104,101,108,91,96,102,97,101,88,103,100,97,108,105,103,96,107,105,92,113,101,111,90,98,113,100,100,123,96,94,99,103,99,94,97,89,105,98,102,96,108,107,94,100,106,116,94,99,100,98,103,101,99,100,95,98,87,103,105,106,110,111,69,102,98,70,106,104,111,100,121,100,96,92,100,99,91,96,107,94,104,94,98,111,115,99,103,100,97,105,98,92,103,100,110,98,108,97,97,94,96,115,93,99,112,107,94,101,95,87,103,89,98,111,101,97,96,101,89,98,106,108,109,104,98,99,87,85,100,105,94,112,100,90,99,95,98,107,90,95,69,107,118,105,100,113,100,106,103,106,110,100,104,95,100,109,110,112,90,101,102,114,95,112,94,99,93,106,100,97,117,111,97,97,101,104,112,99,102,100,101,99,98,112,101,100,88,108,80,103,100,99,102,105,93,101,96,107,92,88,100,96,100,100,116,100,95,85,84,87,109,103,101,105,86,109,88,112,103,80,98,98,102,105,95,98,100,104,98,101,109,99,113,99,108,109,101,107,91,101,113,92,110,103,96,106,95,101,98,109,92,98,98,94,101,111,101,103,95,105,87,93,100,97,104,104,97,96,104,105,109,97,110,102,99,99,104,104,101,88,113,94,107,102,113,108,101,122,102,95,98,113,88,100,107,100,98,78,97,98,101,90,98,91,90,91,105,103,101,101,91,96,112,106,84,102,97,99,91,95,103,95,80,104,109,102,107,106,90,116,96,98,122,96,99,98,98,96,96,99,119,106,104,95,101,106,102,104,112,104,93,113,113,96,107,106,107,103,113,103,103,104,110,105,99,106,110,95,100,120,100,102,101,97,114,103,106,96,100,102,110,98,98,113,105,104,113,100,100,110,103,109,100,95,100,81,101,100,102,102,102,105,108,98,95,68,103,130,99,92,81,110,81,99,97,95,106,113,105,96,76,108,103,101,101,113,98,98,84,111,99,98,102,106,101,103,88,99,77,105,111,106,120,92,92,105,105,106,95,108,102,105,87,110,97,100,100,80,106,106,113,95,89,107,103,103,105,94,99,100,94,100,104,109,109,98,98,91,90,95,109,99,99,95,99,101,106,105,92,92,101,99,101,103,122,101,104,116,96,105,101,91,86,104,102,105,95,114,103,104,96,109,105,94,71,114,117,100,94,108,105,101,111,107,101,102,108,93,96,104,93,112,105,101,108,96,98,109,98,103,103,89,86,112,95,110,97,98,102,97,98,86,99,95,104,110,103,94,96,95,95,97,106,98,91,108,98,115,105,103,104,100,101,105,103,101,103,94,109,97,102,99,108,101,105,94,106,102,111,104,111,85,115,104,96,100,93,96,122,98,101,101,97,100,109,99,74,100,99,122,111,110,114,101,101,98,95,119,94,98,120,90,99,112,99,98,83,101,99,107,102,91,106,115,101,94,99,91,103,105,92,93,107,104,104,108,92,95,99,104,111,101,108,117,103,95,85,97,94,95,105,96,87,93,95,106,104,94,96,103,104,102,95,106,97,103,103,103,113,93,104,100,101,95,109,114,119,93,99,91,113,94,104,104,103,107,101,104,104,101,95,106,99,96,104,105,104,88,104,103,103,87,109,108,105,91,105,96,103,94,104,98,101,93,99,102,128,93,103,101,101,90,100,99,105,95,103,105,95,96,105,90,105,101,107,104,90,115,103,100,113,105,98,103,107,99,100,101,99,109,94,103,95,107,109,101,99,104,107,97,98,98,106,102,97,105,103,106,115,102,97,112,98,119,95,105,100,119,104,100,88,95,92,109,103,92,95,98,108,109,102,109,110,101,98,101,100,96,99,92,104,119,96,108,94,98,104,109,88,101,101,108,111,99,106,98,116,111,103,87,97,95,119,99,102,115,109,113,105,108,90,105,110,95,112,101,105,97,98,109,112,98,105,117,96,105,98,105,107,78,117,111,100,100,101,100,119,119,97,112,103,102,91,103,98,92,104,108,99,95,115,101,103,103,90,111,105,107,99,105,95,90,105,96,104,106,111,103,87,105,100,124,102,109,103,99,95,91,96,109,105,100,95,95,103,107,103,93,99,104,93,101,108,123,107,102,111,90,104,72,101,92,113,93,95,110,99,104,94,106,110,100,112,91,100,96,99,93,95,104,89,102,89,101,96,100,101,98,102,99,102,97,111,102,98,105,105,112,109,90,104,90,87,106,96,110,108,90,97,101,98,95,99,119,98,97,96,105,101,101,106,100,112,102,110,105,97,105,95,106,95,98,92,87,77,103,113,110,96,118,106,106,102,111,100,95,102,111,96,92,101,112,116,83,105,96,102,109,91,101,103,117,99,113,95,95,113,88,92,109,105,107,105,111,106,108,86,106,96,94,100,93,98,98,105,124,119,106,95,94,109,106,102,107,97,114,99,97,108,89,108,103,100,104,101,105,99,98,109,94,96,104,101,105,92,107,71,101,94,104,92,102,101,109,102,86,105,98,99,95,94,92,111,106,103,110,94,95,76,99,82,110,121,100,130,113,101,106,109,108,99,104,102,83,115,112,105,110,94,101,93,112,100,112,101,98,99,111,106,99,106,101,108,102,109,107,104,104,104,115,88,98,97,98,103,90,94,100,113,94,111,116,106,97,99,92,109,96,103,99,97,106,97,113,94,107,94,105,117,105,117,98,99,111,105,104,92,97,102,109,99,100,124,95,107,110,88,109,103,96,102,86,109,97,110,103,103,105,98,100,112,87,93,100,93,104,104,98,80,103,113,96,112,105,94,111,102,110,112,91,112,104,108,108,100,105,107,95,102,106,94,107,112,95,101,96,100,90,91,97,95,115,99,106,112,106,106,104,109,92,107,100,108,98,93,109,112,104,108,109,92,101,101,101,97,109,105,106,90,100,89,111,80,94,89,70,109,100,102,95,105,93,104,102,101,98,112,99,95,104,99,109,105,99,90,104,103,115,103,100,103,100,99,98,100,100,91,90,101,96,103,99,92,108,102,115,103,91,95,101,120,90,100,108,102,95,80,105,101,91,108,114,104,102,101,119,99,119,102,102,102,96,109,102,97,104,106,86,90,94,112,91,92,108,104,110,104,95,92,101,88,108,106,95,96,101,99,93,105,112,97,109,108,101,100,90,104,88,91,91,87,100,106,108,100,94,94,96,105,82,94,94,87,77,100,100,103,97,94,99,95,96,99,101,112,98,106,119,92,113,100,95,105,100,93,103,98,87,99,104,99,104,99,61,90,97,85,92,98,109,121,101,106,91,98,98,106,108,102,106,95,101,97,101,99,101,97,100,106,98,96,112,102,106,106,102,106,90,108,106,93,87,91,100,104,103,109,95,91,109,98,100,95,105,100,95,106,98,99,120,101,101,84,105,108,103,101,107,76,95,96,109,90,105,101,101,92,114,110,100,112,98,107,112,105,96,84,102,93,99,101,115,110,101,101,97,102,88,100,94,102,103,98,84,97,108,106,107,124,99,113,102,95,94,110,113,98,105,108,107,102,93,100,99,111,114,102,101,101,90,103,102,103,93,106,97,113,100,110,101,109,102,109,105,101,100,98,92,115,98,93,100,102,109,93,113,101,94,98,101,109,98,110,97,113,99,101,107,86,89,105,95,101,90,92,104,100,84,108,94,105,103,90,87,102,104,104,96,109,107,112,105,91,131,108,94,106,87,109,96,95,96,94,101,102,111,112,96,104,100,96,112,102,115,95,93,105,93,106,102,113,105,92,112,102,93,108,103,95,101,98,101,98,98,103,98,97,107,92,87,99,102,85,87,117,101,95,107,83,118,104,105,106,102,95,90,99,98,101,95,81,94,96,103,89,95,107,99,101,102,103,103,94,94,103,105,92,109,91,115,100,103,104,76,102,118,100,100,108,92,105,110, +688.82336,112,98,112,114,104,109,110,102,91,94,104,105,121,88,110,100,110,106,107,111,96,98,81,91,111,106,101,97,101,102,104,93,101,97,95,113,97,90,92,93,94,100,95,98,90,116,98,110,93,107,90,111,111,112,116,95,105,104,106,97,90,104,103,93,104,110,105,96,90,94,67,104,97,92,99,109,94,104,113,107,112,92,100,122,101,84,95,91,100,109,110,99,91,94,112,100,97,105,103,104,94,98,105,91,105,79,103,108,104,88,101,101,102,98,108,87,98,105,104,105,95,104,108,106,101,103,98,104,121,109,112,107,99,80,104,112,111,117,110,98,105,95,98,102,107,108,98,97,97,100,108,110,102,102,99,103,79,101,94,114,97,94,110,106,112,98,115,97,97,102,121,108,104,83,107,112,99,77,100,99,97,120,108,99,122,105,105,101,101,103,98,110,106,97,93,101,105,109,100,97,96,103,91,106,104,94,94,112,111,109,98,97,100,101,100,103,100,106,103,104,102,109,118,96,105,104,105,101,98,107,93,90,111,98,112,109,98,99,105,106,90,112,107,98,104,104,75,100,98,102,97,98,100,113,101,106,94,106,96,95,95,104,96,100,107,103,101,96,106,99,107,98,110,98,103,112,105,114,105,105,112,105,96,102,107,95,127,94,94,106,110,104,105,113,109,91,108,104,117,101,99,94,99,102,105,99,112,117,98,104,97,104,104,101,96,102,102,105,107,80,105,94,100,110,103,100,104,101,109,105,111,112,105,118,109,121,98,108,101,117,113,98,98,104,107,97,90,100,108,110,105,97,103,95,103,109,101,90,97,109,107,106,97,101,89,100,107,97,87,88,103,96,104,92,106,109,109,105,101,90,105,92,91,102,89,103,94,104,100,97,122,99,98,115,85,94,99,111,98,110,94,105,91,97,108,91,104,102,114,98,107,102,101,96,105,106,95,108,99,102,100,101,104,102,98,105,104,115,108,101,95,113,113,103,109,102,94,104,114,112,89,102,102,101,97,115,96,109,95,104,88,108,90,104,101,97,70,117,110,104,106,110,110,103,117,102,108,92,79,95,115,120,92,95,106,97,99,103,113,111,100,113,101,99,106,109,103,97,93,99,96,95,113,115,91,101,94,96,107,102,94,97,106,95,102,108,109,99,95,108,111,94,99,98,102,95,103,98,108,90,98,91,98,104,88,98,98,101,98,118,110,130,102,93,97,106,100,92,100,110,101,95,112,99,96,92,105,89,98,109,112,105,99,99,113,102,107,100,104,108,101,108,118,108,93,104,102,109,88,105,101,97,101,95,98,86,104,99,102,102,99,99,99,112,99,103,104,112,111,111,105,112,97,101,110,102,103,106,101,105,105,106,106,89,113,95,101,105,97,100,102,99,94,99,106,108,100,101,118,110,95,91,91,93,91,102,94,103,98,101,107,98,92,112,104,110,100,100,98,99,103,99,116,95,97,103,91,121,127,101,97,114,116,96,106,109,102,112,94,105,106,101,94,92,102,93,106,103,100,90,105,111,103,104,90,103,104,122,110,107,107,103,114,97,92,108,110,105,96,100,101,92,106,100,113,102,91,105,89,85,92,91,107,109,101,113,98,111,101,97,99,100,104,81,95,89,93,112,91,97,97,91,114,96,99,98,102,103,106,116,98,101,86,109,103,105,105,99,100,100,105,104,108,91,103,107,95,111,95,96,110,98,106,86,97,103,86,99,105,107,87,96,91,100,105,91,95,101,101,94,106,96,102,98,96,98,96,97,101,88,114,109,102,103,100,101,97,63,100,96,110,109,97,102,107,100,100,101,105,110,97,107,105,104,103,98,108,109,102,101,113,100,98,90,98,99,104,96,103,105,83,107,133,106,113,100,114,97,98,101,108,98,107,94,78,116,97,109,105,97,100,92,106,104,113,89,100,94,96,101,100,111,104,109,95,115,101,101,113,93,106,110,88,97,113,112,98,109,113,92,84,105,98,102,102,114,105,98,97,102,98,108,103,106,92,111,97,107,102,92,94,100,96,86,96,99,98,109,107,99,97,108,105,102,96,99,91,106,101,107,101,107,103,112,106,100,92,99,95,97,105,103,109,125,99,98,101,107,97,107,103,88,105,104,106,97,98,102,99,95,101,99,110,97,103,94,99,105,95,106,105,99,92,100,92,107,98,94,90,90,103,107,87,98,111,95,91,97,100,94,98,103,97,93,94,101,102,97,102,93,88,94,99,95,106,99,116,98,104,104,112,92,91,99,99,100,101,76,104,101,99,81,95,97,101,99,102,93,99,96,105,107,97,121,83,125,99,121,104,94,103,90,108,101,90,113,116,92,104,118,110,99,101,102,106,99,95,97,104,110,97,107,100,99,102,99,101,97,103,98,103,111,101,109,116,100,94,96,115,102,100,107,95,100,97,92,101,82,102,118,84,108,92,85,101,105,96,106,106,92,87,102,93,102,96,103,109,104,113,102,101,99,100,103,99,115,95,100,107,89,95,103,100,106,94,107,107,106,104,106,110,115,115,90,101,99,110,105,67,115,95,108,98,91,115,90,98,106,113,105,118,113,98,102,100,105,102,109,89,102,97,92,96,110,104,97,102,108,109,110,114,102,111,108,110,101,112,101,120,100,106,106,103,94,94,95,95,98,113,101,92,98,91,102,103,104,104,100,103,106,115,92,98,109,105,107,102,112,97,92,103,108,106,105,96,118,104,102,109,105,101,99,108,98,108,94,113,104,100,102,112,108,104,103,117,100,108,114,99,89,97,108,86,116,106,104,97,108,95,104,89,117,109,86,99,109,106,107,99,105,95,99,102,100,108,97,86,99,102,103,94,100,100,101,108,92,95,96,104,106,130,102,102,109,104,102,98,107,107,111,105,98,110,104,108,95,82,102,99,113,107,95,114,94,107,110,93,113,103,104,98,105,87,102,107,110,108,95,94,109,89,104,103,114,95,87,107,105,98,101,112,87,92,93,105,102,104,100,102,103,110,105,98,98,107,101,112,105,95,96,103,88,104,94,100,102,99,106,118,104,89,104,108,103,103,104,115,91,98,96,108,105,102,110,101,97,108,104,99,97,107,109,99,104,113,109,117,104,97,92,109,104,95,109,106,107,96,96,102,102,94,90,110,107,106,94,88,99,87,99,107,88,99,112,94,113,94,107,103,109,99,99,107,100,105,113,103,107,107,102,68,106,99,97,108,96,93,95,106,109,105,113,90,98,97,95,98,106,105,116,110,105,98,98,106,101,84,107,102,102,103,99,113,100,111,112,95,77,100,102,99,99,101,107,99,109,106,98,98,91,103,83,105,98,107,109,105,103,98,101,99,108,109,107,98,97,102,106,100,109,91,107,93,109,96,98,111,97,76,90,108,105,96,94,112,109,104,107,107,90,104,91,107,113,113,99,107,108,105,109,100,92,112,94,100,99,108,120,120,111,113,108,108,108,92,103,90,98,110,109,109,105,102,104,101,104,101,104,120,103,102,108,103,83,124,102,104,100,112,98,105,107,106,109,96,119,96,109,114,97,103,98,101,99,108,105,98,87,95,104,115,109,94,96,108,112,104,106,109,98,100,115,99,114,103,100,98,122,95,101,92,99,99,102,102,87,116,104,98,99,99,95,102,121,105,101,107,99,94,98,100,102,97,107,91,98,93,99,106,101,113,98,97,107,98,98,110,108,110,92,98,78,106,98,109,106,106,116,108,98,111,98,105,105,104,95,98,110,99,102,98,107,91,106,113,104,95,113,92,95,104,102,102,107,105,111,95,95,123,108,69,100,102,90,99,107,99,114,101,103,106,107,95,109,102,102,94,99,95,95,103,109,107,91,99,89,112,97,101,105,106,104,104,96,102,106,90,87,113,102,95,104,96,87,98,102,106,91,78,92,109,94,98,97,102,95,94,90,105,93,92,96,105,104,98,93,106,100,96,111,105,99,100,112,98,103,108,98,101,68,109,93,100,97,120,109,95,102,101,101,109,107,102,106,100,93,93,105,103,102,111,102,91,102,100,106,113,107,94,110,108,100,105,99,113,101,93,106,100,102,106,90,98,94,102,108,94,96,106,105,111,123,99,99,110,111,87,91,100,101,100,110,98,109,99,107,113,99,100,100,97,107,104,108,107,91,98,85,99,99,106,99,115,87,97,90,98,108,97,99,110,96,94,103,101,108,100,108,110,103,95,99,94,104,95,87,109,100,103,102,107,101,100,103,95,96,105,114,116,91,90,98,98,106,98,96,97,102,109,97,102,95,109,103,99,101,107,100,93,104,108,92,109,101,115,115,106,101,106,108,105,105,104,101,91,138,106,109,105,98,101,99,97,103,94,117,105,98,94,109,99,101,112,115,104,86,106,107,104,92,109,105,90,116,101,103,109,107,104,104,108,92,99,97,96,104,99,101,97,119,106,115,91,106,93,99,104,96,92,104,101,100,101,91,107,98,117,106,99,100,94,103,95,102,104,104,102,98,100,103,103,100,106,99,110,104,76,99,95,108,100,107,98,100,101,92,102,102,104,100,99,106,111,102,100,97,69,109,107,102,116,102,105,108,102,99,100,110,101,89,107,104,109,94,115,109,99,106,102,90,99,93,111,104,103,108,117,107,100,92,106,102,108,104,104,105,100,95,119,101,108,97,102,102,102,112,107,94,95,109,93,97,105,107,103,101,94,95,115,90,119,123,93,103,103,94,83,107,79,94,107,100,100,104,105,95,105,99,112,94,112,98,103,102,114,105,93,94,97,97,90,102,100,125,98,100,98,102,95,117,90,110,108,95,112,100,102,101,96,99,112,96,93,98,123,113,72,102,106,108,88,101,88,114,84,97,103,99,127,89,108,109,92,97,98,103,91,109,107,106,96,92,101,79,117,104,92,109,104,99, +688.96466,116,109,99,83,105,101,106,101,110,117,96,92,108,93,105,103,99,104,109,108,101,97,96,92,95,90,82,98,96,102,87,104,110,95,108,111,89,75,103,97,93,95,105,92,110,99,98,95,96,102,94,97,103,119,98,88,104,96,99,101,100,102,97,110,103,94,100,97,102,101,113,100,107,95,103,118,115,114,99,106,96,107,93,103,85,93,104,104,105,110,97,91,95,99,103,97,94,108,101,101,98,101,108,92,100,92,89,99,102,110,102,86,79,89,99,109,88,137,102,95,104,100,100,96,104,109,95,99,115,109,101,105,114,98,89,115,109,92,94,88,100,107,94,98,107,85,95,100,109,95,95,105,104,100,101,99,115,94,96,100,108,99,102,109,110,108,105,100,89,110,96,100,92,105,109,92,98,104,94,105,77,104,93,96,101,95,77,89,98,84,87,111,86,100,95,104,112,98,93,104,108,103,97,95,110,108,102,107,114,108,93,96,102,95,102,98,110,101,97,106,93,94,101,101,104,100,103,108,95,93,102,87,99,92,97,105,97,128,101,104,94,111,110,105,101,97,99,109,98,105,92,87,92,112,101,106,105,97,102,106,92,100,99,92,101,91,106,95,101,99,104,97,94,111,114,105,96,92,100,95,100,99,107,100,94,110,103,98,104,101,101,103,99,104,102,95,88,102,105,105,101,101,100,99,100,119,104,85,100,89,90,107,90,103,95,85,105,101,101,100,93,93,97,106,101,92,97,80,99,100,99,93,101,99,100,100,97,99,88,86,92,100,101,96,98,96,91,119,95,92,99,86,105,99,111,100,100,96,108,101,97,92,94,101,91,100,78,105,93,96,95,88,86,105,104,100,78,91,91,91,94,67,99,98,86,104,106,103,113,94,106,98,93,100,102,96,88,100,96,93,91,96,96,86,95,90,104,102,103,100,90,96,105,91,99,104,104,94,90,89,115,100,97,107,88,91,104,105,105,103,101,100,96,93,87,93,92,97,86,104,98,108,98,116,102,122,82,105,96,111,93,97,92,105,94,98,101,97,96,88,107,110,103,97,114,104,108,94,90,97,95,109,101,88,102,114,94,107,99,106,104,103,118,87,95,103,100,107,82,107,104,110,102,96,106,72,98,92,112,114,103,113,100,98,104,85,99,102,107,118,130,99,106,100,99,105,98,95,92,112,98,107,105,103,118,76,102,91,91,94,90,105,107,92,105,91,101,96,104,107,90,102,105,101,113,94,105,108,106,106,104,80,99,100,96,100,106,109,97,107,103,112,73,102,108,103,103,97,92,92,94,98,102,97,113,105,96,93,100,101,106,104,97,97,99,97,98,107,95,100,93,114,103,91,106,101,99,101,90,104,90,96,105,98,103,93,88,103,95,86,100,96,99,93,109,108,94,99,96,97,94,91,95,90,99,87,95,83,101,106,96,114,88,103,93,97,98,99,111,87,102,95,93,96,92,91,87,100,104,95,98,100,99,99,100,97,109,94,92,98,112,104,96,96,93,93,98,98,99,103,95,100,96,97,94,109,98,126,113,101,100,110,107,89,100,105,100,97,106,108,99,102,87,100,108,96,105,108,109,90,92,93,99,87,103,110,95,100,115,95,95,99,95,92,102,93,79,93,105,102,103,96,92,105,98,108,94,90,95,95,89,108,88,99,97,98,102,83,100,89,95,93,88,105,99,86,110,100,96,88,107,104,93,100,89,99,111,97,94,105,104,100,93,101,95,108,89,108,102,107,112,101,103,98,112,98,89,103,92,105,94,94,102,97,97,99,104,95,98,114,106,100,103,120,107,115,97,101,96,92,96,105,123,101,105,110,98,104,94,113,117,95,97,97,93,96,104,106,108,98,88,104,107,98,96,103,100,97,105,88,105,106,118,101,92,104,95,101,109,102,103,90,112,97,102,97,99,102,92,96,96,89,101,105,98,93,99,106,99,101,96,111,92,109,106,92,90,103,104,90,101,104,101,92,107,99,100,105,95,92,91,99,106,97,100,91,97,106,111,94,101,109,102,89,105,101,99,112,96,102,102,106,102,94,111,95,96,114,108,94,93,102,93,86,99,86,96,109,101,95,112,105,110,96,85,114,94,91,100,98,107,104,101,101,97,88,94,97,97,106,97,90,99,105,84,82,95,105,109,103,91,111,100,95,106,107,102,95,97,102,101,111,97,100,107,97,89,99,98,97,102,104,86,106,103,104,98,97,86,94,101,106,104,98,98,93,101,100,91,100,99,98,108,106,94,100,83,102,94,106,103,94,99,97,108,103,80,99,90,100,95,94,87,104,82,99,109,99,95,96,114,96,98,100,92,86,100,98,97,101,89,94,97,110,102,97,93,97,107,91,95,103,98,102,94,113,104,101,94,106,100,94,101,114,92,109,94,92,98,94,89,96,107,111,67,91,93,110,100,100,95,92,97,96,90,94,96,90,107,100,98,94,101,102,100,104,104,109,116,95,98,99,102,107,99,100,91,102,107,94,100,99,93,110,88,101,95,105,109,100,113,97,91,91,100,97,101,95,109,80,105,98,107,108,103,92,108,110,95,106,113,104,104,92,95,100,95,98,103,105,112,102,99,109,87,109,105,96,95,96,107,101,111,129,94,91,112,111,104,96,108,92,100,102,108,98,102,104,74,96,95,118,107,90,96,117,117,102,108,112,108,111,95,99,108,86,108,93,104,112,99,101,110,111,106,98,92,117,100,105,98,106,102,109,105,108,101,101,101,101,103,91,109,94,106,102,104,115,103,101,111,99,86,118,94,97,97,112,102,75,96,106,92,106,104,101,108,100,115,102,99,102,112,103,108,102,99,104,106,104,114,78,102,94,106,100,106,94,100,114,106,105,88,103,111,92,99,100,93,100,101,108,86,103,107,94,99,103,103,111,111,104,108,99,110,124,116,111,106,99,101,110,106,96,93,105,107,104,107,113,105,98,124,99,106,96,95,87,78,114,96,109,97,97,99,103,95,96,117,95,106,98,110,105,105,108,108,100,96,96,99,87,108,107,107,98,101,104,101,101,94,115,101,91,110,99,102,112,110,87,103,106,106,112,105,93,103,107,113,92,106,104,102,107,110,109,107,98,103,98,95,104,87,125,103,94,105,101,103,115,92,96,91,113,100,98,95,100,98,95,103,100,104,103,108,100,103,105,111,106,89,102,101,96,95,108,113,113,84,102,99,113,110,93,94,103,114,104,101,120,91,81,103,105,99,96,105,96,99,115,100,96,108,97,102,105,101,107,108,90,103,96,88,98,104,109,105,106,96,106,109,94,90,102,96,97,96,97,105,92,94,95,92,113,101,99,91,99,99,94,100,109,103,93,103,91,105,102,96,108,99,100,95,104,96,102,97,103,97,106,100,107,102,107,99,103,100,102,106,100,99,108,103,107,86,91,90,98,103,111,106,91,96,93,121,93,101,99,104,103,111,105,108,101,105,97,97,94,107,112,97,99,102,114,111,108,94,94,107,97,73,103,113,107,116,110,105,98,103,94,101,108,98,103,105,106,108,112,103,115,85,105,108,112,116,100,97,98,108,105,101,106,100,113,109,107,95,109,103,90,107,117,102,90,98,116,99,95,93,97,102,98,95,99,101,102,101,109,78,133,103,106,99,104,104,117,108,91,108,109,103,105,102,107,102,97,106,100,93,102,113,127,83,95,95,97,93,107,107,99,92,98,105,109,82,112,100,117,108,104,97,91,113,105,100,95,108,106,118,109,98,97,111,99,125,100,88,104,108,99,96,100,99,105,109,116,89,98,98,110,88,112,113,113,109,79,100,109,101,104,83,98,107,97,99,96,101,103,105,115,103,99,98,94,98,102,109,106,110,86,110,108,107,95,95,83,114,101,102,105,104,112,103,96,84,106,99,98,95,102,91,93,97,100,85,101,107,90,108,105,102,97,93,98,97,101,102,101,103,117,95,100,91,103,110,107,102,84,100,96,95,106,110,106,105,98,92,104,98,106,101,92,96,106,106,103,92,93,98,92,107,112,99,107,113,89,95,109,109,102,102,97,73,95,104,111,103,100,103,95,110,106,100,103,95,102,108,101,97,109,94,98,92,99,101,107,105,102,113,107,88,92,108,117,98,104,97,92,97,104,73,91,95,109,97,106,88,102,99,96,103,88,93,97,103,106,108,130,107,95,98,96,104,102,103,100,107,113,110,100,98,99,104,104,100,99,101,66,99,96,107,102,102,98,100,107,107,108,105,94,108,97,96,81,105,96,102,95,110,104,99,103,110,99,95,104,103,104,102,100,106,118,104,91,99,104,101,110,106,106,91,98,111,100,104,88,117,109,101,92,115,111,95,96,95,107,102,97,106,95,96,95,123,102,98,95,112,102,116,98,97,115,99,105,100,105,107,107,101,106,112,93,96,95,125,111,103,107,92,97,99,112,109,100,96,103,104,102,105,102,95,111,120,94,101,104,107,120,110,90,108,100,103,107,104,99,110,108,103,106,109,87,95,109,107,98,99,103,100,97,95,119,101,106,117,97,102,108,106,109,94,101,108,108,98,110,109,108,97,122,97,99,99,104,101,112,90,106,112,96,96,92,100,83,109,99,122,106,92,110,102,101,79,107,99,105,90,103,100,94,100,91,107,114,107,113,125,98,102,111,96,109,99,102,100,102,110,94,102,98,100,105,98,99,105,107,99,101,95,100,95,102,108,117,101,92,103,109,103,108,99,98,103,102,97,79,109,94,108,104,102,87,93,108,94,105,104,102,116,92,95,123,94,101,105,121,87,101,95,102,90,102,115,96,97,94,89,100,102,94,110,104,98,108,113,99,103,102,103,113,95,103,87,102,106,105,89,97,105,100,128,97,125,115,109,104,106,97,99,97,103,106,99,85,109,100,105,106,85,99, +689.10596,119,93,93,116,101,91,118,91,91,111,84,102,107,98,101,83,104,108,102,101,92,96,99,104,100,107,101,100,95,112,91,92,104,114,94,101,96,100,109,107,90,89,99,109,86,112,109,111,95,110,103,90,108,93,103,102,109,90,96,100,112,126,109,96,88,77,101,107,111,87,118,104,99,100,93,98,96,92,85,104,107,110,96,98,94,86,106,106,100,106,83,94,84,105,87,94,96,98,101,112,99,101,103,100,93,92,98,105,101,96,96,100,107,85,103,93,94,93,113,103,95,96,99,103,103,112,117,115,117,108,103,95,94,98,114,108,113,106,92,120,105,110,103,96,115,101,98,99,104,92,98,102,102,92,84,99,91,101,101,80,91,96,106,113,102,105,101,101,96,105,99,101,85,101,98,90,104,101,104,103,130,112,94,108,104,104,92,93,124,99,101,93,102,103,121,112,105,91,107,115,89,97,94,93,108,97,92,85,110,77,107,97,98,103,100,90,107,98,108,103,102,102,103,91,104,99,84,91,108,89,113,108,116,94,95,95,111,109,95,100,100,109,110,120,97,104,91,117,72,91,87,100,92,98,96,105,95,93,92,104,106,91,98,103,91,108,102,100,104,102,101,92,100,99,111,108,92,96,78,109,107,115,107,107,99,106,92,103,94,95,99,101,99,100,108,106,106,118,99,81,93,108,91,93,113,101,103,110,98,109,98,115,95,97,107,104,97,96,101,95,107,94,101,109,100,99,96,96,114,111,93,96,99,96,109,111,78,101,104,92,107,109,97,96,118,105,103,109,108,99,90,100,93,99,75,106,111,104,100,104,97,100,103,104,101,93,88,107,101,108,91,96,102,102,97,97,115,98,109,100,104,107,91,96,93,120,98,69,96,86,117,99,96,99,105,101,89,96,103,114,99,93,95,85,100,94,99,116,101,86,90,88,96,111,107,96,97,83,102,96,105,102,102,102,100,88,92,94,93,95,77,101,95,93,96,106,96,85,95,82,104,105,104,89,91,96,100,93,95,109,104,108,113,113,111,103,103,106,104,92,106,98,95,104,100,106,100,91,106,91,100,100,94,108,110,89,104,119,100,101,107,111,108,102,105,88,111,100,94,102,103,98,105,102,105,97,102,112,97,99,109,97,101,98,114,103,103,103,95,99,94,114,111,99,87,94,105,81,94,93,90,100,109,105,103,109,114,96,104,94,94,105,107,114,105,104,95,109,101,116,97,94,104,113,96,106,97,91,108,101,93,109,106,117,113,121,85,101,104,104,95,110,102,100,100,92,100,86,104,96,86,87,104,100,83,101,92,99,92,118,95,98,95,104,95,94,107,88,100,100,95,92,95,94,106,103,96,93,104,103,110,108,93,93,89,92,101,101,101,108,103,102,101,100,105,98,105,99,106,93,103,99,68,97,117,114,107,122,108,103,95,108,88,98,102,108,98,106,106,92,109,105,89,98,109,94,100,101,91,108,96,100,110,98,103,100,87,114,110,99,114,113,104,104,80,100,85,96,114,92,118,96,101,100,95,94,79,101,99,100,108,106,113,92,92,106,107,100,113,103,95,101,102,113,94,77,98,102,100,92,113,105,104,108,106,108,103,101,103,89,110,97,94,104,96,103,90,107,99,105,98,94,91,103,92,108,114,108,106,99,110,117,102,92,100,81,98,102,115,104,91,94,91,95,100,101,116,88,96,103,94,96,110,104,100,102,98,94,97,101,116,95,95,99,113,90,98,96,103,103,92,102,100,100,114,95,101,103,95,98,101,103,106,80,100,111,94,97,92,113,99,105,109,109,92,98,96,103,95,109,117,96,103,106,105,100,114,102,77,104,103,95,90,101,98,105,103,107,117,84,108,104,103,94,107,92,107,104,94,109,107,99,86,67,106,98,101,97,97,100,95,106,107,103,104,96,91,99,110,100,92,108,100,103,94,110,95,111,106,104,106,101,104,99,109,98,107,109,96,101,104,104,118,90,97,101,91,102,98,104,109,103,102,92,103,111,83,103,86,103,99,117,101,108,105,95,90,107,96,96,101,109,100,101,103,95,97,103,93,91,103,91,103,100,100,100,91,115,107,99,99,93,102,96,100,96,101,97,97,92,99,111,95,102,116,97,92,95,106,98,94,107,110,96,79,106,96,87,104,102,94,102,103,106,109,91,100,97,95,104,98,107,99,100,110,94,91,96,106,104,86,93,106,94,91,89,106,96,97,87,75,103,105,96,108,106,103,113,101,103,94,100,114,93,101,83,95,102,95,90,102,76,97,98,103,109,108,98,102,107,99,87,99,95,95,107,100,91,96,99,99,103,110,92,111,103,108,93,100,90,97,107,99,105,102,84,98,102,107,106,98,98,107,115,108,110,108,96,104,98,101,98,102,96,100,98,106,110,104,60,109,110,99,97,97,100,87,82,110,88,98,105,114,100,107,64,102,94,101,94,91,97,93,116,100,93,72,91,98,106,105,101,110,101,91,96,103,108,105,106,96,88,97,96,101,96,97,97,102,110,104,107,110,117,103,93,96,110,88,100,97,93,108,99,113,109,121,103,140,103,104,101,113,94,109,104,103,94,100,79,96,95,98,105,104,102,102,98,92,89,107,112,141,104,97,102,109,106,107,101,102,91,106,87,109,93,101,115,106,111,104,104,105,97,95,104,114,97,106,102,100,110,94,109,103,98,99,106,92,108,92,91,108,106,94,112,113,98,75,116,91,102,108,102,95,105,106,99,93,112,103,100,102,97,103,98,102,109,103,108,110,111,104,99,94,95,95,97,106,99,71,100,101,104,99,99,98,106,103,100,106,89,100,92,98,106,108,129,97,104,99,105,118,104,105,107,111,108,102,122,140,104,91,106,96,112,94,104,102,95,114,103,104,101,106,101,104,106,92,106,102,102,110,105,103,104,80,119,104,109,94,112,98,105,106,112,100,117,91,104,113,110,108,92,101,101,105,106,99,102,108,102,103,93,97,115,109,105,106,94,114,94,96,100,111,107,108,100,102,91,106,99,99,113,113,105,104,100,112,108,108,109,97,92,107,99,112,91,100,117,105,98,102,101,90,96,101,109,96,88,98,99,99,109,105,112,116,105,110,113,110,103,119,110,107,101,93,112,92,106,108,89,103,109,106,112,103,108,106,104,97,93,95,100,108,98,111,100,119,107,83,97,83,95,109,91,108,110,111,99,96,112,98,105,114,101,94,95,108,119,116,103,103,104,105,99,120,102,101,117,103,101,113,101,85,98,107,108,102,96,97,97,96,98,87,80,105,109,99,103,97,87,99,95,100,103,100,96,110,101,109,105,103,104,112,115,87,88,102,99,88,100,108,104,98,104,106,98,105,105,98,104,103,97,104,97,91,92,105,92,96,98,100,93,98,97,108,101,125,104,78,104,105,104,99,102,90,97,100,109,104,113,95,91,102,94,95,105,106,105,92,95,105,87,109,91,98,100,99,84,104,94,98,98,113,99,125,90,107,100,101,100,96,73,110,113,105,95,98,96,87,110,89,120,84,100,98,99,90,99,111,94,99,108,118,104,102,105,97,104,110,94,97,110,94,98,97,102,107,100,95,87,98,104,97,100,87,77,98,107,102,99,93,66,99,93,116,105,95,102,115,105,116,114,99,96,108,95,107,99,96,101,95,103,94,97,94,106,104,91,96,106,91,102,95,105,105,101,106,86,98,106,95,97,116,103,114,104,101,86,96,102,105,102,102,105,87,98,102,123,95,91,110,100,100,104,94,101,103,99,99,91,109,98,99,96,95,90,104,107,101,103,103,101,93,102,100,105,102,96,112,97,108,80,76,107,93,98,99,93,111,96,96,93,116,105,108,101,104,85,101,104,92,93,121,87,98,108,92,95,97,99,94,101,102,98,97,94,100,94,106,116,102,101,109,98,117,116,107,102,103,95,111,109,100,98,100,101,100,104,98,106,83,101,103,90,87,103,99,105,101,102,101,102,108,112,93,106,99,95,104,103,99,98,111,105,98,100,91,99,102,96,95,92,104,91,98,99,108,110,121,98,98,105,100,87,105,106,103,100,98,96,104,101,96,102,101,94,104,94,92,118,97,92,108,113,92,106,104,101,101,102,101,105,114,111,100,110,101,103,100,99,99,102,105,104,93,106,101,108,111,96,108,83,111,96,95,96,101,109,136,121,110,100,103,107,101,102,86,106,108,108,97,115,97,115,101,106,88,105,113,105,96,101,98,101,98,93,94,114,96,95,108,96,107,107,106,88,106,111,104,104,105,106,103,86,107,99,94,97,100,115,97,91,103,101,105,112,100,105,98,89,104,116,117,106,100,120,104,103,109,87,123,99,89,80,100,99,106,102,103,112,108,121,114,100,99,96,104,105,106,103,100,106,85,104,102,103,97,100,92,91,110,99,101,102,100,104,99,102,113,115,103,94,99,106,104,101,100,103,101,108,101,102,99,88,104,96,110,98,105,101,99,104,108,101,105,95,95,84,106,97,98,94,115,91,107,104,96,95,96,103,85,102,109,98,98,106,98,98,98,83,90,103,117,120,102,102,112,97,94,100,115,107,98,109,104,102,93,103,105,95,112,104,107,111,106,103,106,98,102,101,105,64,94,108,140,107,91,104,95,115,94,113,87,104,101,107,106,90,99,102,111,106,100,80,79,95,100,87,103,93,98,92,99,99,107,91,94,112,111,102,101,112,87,91,104,116,102,93,96,111,107,95,101,102,109,96,103,90,94,116,104,95,117,102,105,105,103,100,104,124,102,102,96,100,95,105,103,98,102,105,105,129,106,102,98,110,97,100,111,82,83,120,100,100,116,89,111,92,107,111,131,100,105,90,101,99,93,97,109,101,73,96,109,107,93,110,103,93,108,73,111,106,94,100,101,88,99,108, +689.24725,103,95,113,103,96,88,90,107,101,97,99,126,114,93,105,88,120,101,112,106,101,89,94,103,87,93,91,114,110,103,109,89,78,91,109,100,85,95,112,95,97,100,95,105,114,104,101,93,105,98,87,92,104,96,97,97,105,95,124,72,101,106,96,98,96,110,98,104,90,104,100,106,93,96,96,98,83,114,100,98,122,99,105,104,92,104,102,111,107,94,103,119,104,108,112,100,98,93,92,104,99,100,114,95,110,106,96,105,101,98,102,102,100,104,92,100,105,101,115,100,114,119,106,114,94,103,103,96,120,100,103,104,106,102,113,95,107,115,102,105,94,108,95,110,104,100,95,106,104,100,61,108,102,79,120,112,112,109,106,95,90,95,114,115,94,98,105,110,109,97,102,106,86,100,112,113,102,98,114,107,104,118,93,99,99,107,105,92,102,94,101,92,114,110,100,103,101,97,96,91,94,100,92,117,106,98,98,100,110,114,108,102,90,101,103,98,103,112,96,105,107,111,103,95,97,111,109,106,100,105,85,99,108,105,91,112,100,94,108,105,94,109,98,100,108,113,113,95,106,107,110,99,99,114,101,103,92,115,98,98,95,91,99,90,91,95,106,104,109,103,106,93,94,89,105,113,105,113,98,100,103,104,104,74,105,98,111,103,109,99,108,104,105,107,111,107,101,115,107,112,87,101,102,101,98,108,102,104,99,99,98,77,109,105,101,104,96,117,119,106,99,97,107,102,104,102,105,97,100,106,93,93,127,107,98,98,89,104,93,94,102,94,91,91,102,102,116,104,88,106,104,101,107,100,96,107,106,106,99,101,104,103,93,117,96,117,94,107,104,107,105,99,111,105,98,102,91,107,108,112,106,113,100,98,103,99,87,100,97,90,105,93,105,110,105,94,102,101,110,99,96,106,106,99,95,94,98,102,101,105,91,95,84,93,116,97,114,99,98,104,93,101,96,107,93,91,93,101,112,105,100,98,94,108,104,104,105,96,101,117,110,106,98,110,89,110,102,99,102,116,89,104,98,115,102,115,93,105,113,95,107,106,101,109,111,107,103,95,94,103,99,108,97,91,102,93,114,113,104,115,102,107,102,103,103,95,106,96,90,104,102,126,97,113,91,102,101,101,99,99,108,105,110,105,97,99,96,101,100,99,106,103,101,110,96,112,101,103,107,98,102,104,103,88,113,106,94,100,99,102,98,100,109,121,100,104,104,98,98,103,65,94,100,95,107,97,95,102,79,97,114,101,91,102,95,103,107,104,104,108,108,95,92,90,105,104,123,104,110,95,91,85,102,96,93,107,99,91,99,95,103,99,104,101,97,105,114,103,120,101,91,102,104,104,106,104,92,100,102,110,102,97,111,102,97,97,98,91,109,90,98,90,100,112,108,99,103,104,95,92,103,104,104,103,105,95,97,96,109,95,98,106,103,108,104,113,90,99,96,84,107,103,103,97,106,95,96,102,98,104,106,113,100,107,106,100,111,106,94,95,107,94,105,99,93,101,105,94,112,96,107,99,98,101,103,97,97,121,92,101,106,105,103,104,93,108,98,101,105,110,97,99,120,103,101,102,101,95,97,98,95,104,108,95,91,114,104,98,93,113,99,100,103,101,93,96,60,95,103,97,105,105,89,123,98,95,106,110,107,108,113,98,103,103,97,97,98,92,98,105,105,104,114,95,100,97,111,89,97,98,120,103,100,115,100,80,96,112,107,95,105,106,92,101,108,113,89,109,101,104,127,96,103,90,93,97,100,107,110,97,106,115,106,96,105,101,105,109,102,105,99,106,103,106,99,103,104,96,106,98,94,92,109,101,108,118,98,101,97,92,113,92,97,107,107,94,102,103,107,98,103,102,116,114,110,96,109,93,101,94,107,97,85,93,101,83,100,108,99,106,109,99,94,100,110,100,109,91,90,101,105,99,96,103,94,99,112,99,100,108,103,101,111,99,95,91,78,99,107,101,84,111,109,101,109,132,98,96,96,94,96,92,98,96,91,96,100,109,107,109,113,107,97,100,100,76,111,102,91,87,95,113,98,103,105,101,102,105,94,99,104,107,93,98,100,106,114,112,100,96,86,103,102,103,104,106,97,107,94,90,108,94,95,100,104,98,102,104,113,102,93,103,95,104,106,98,100,116,85,105,108,100,106,116,109,89,110,108,108,94,113,108,99,102,107,104,107,115,98,100,102,102,98,98,100,106,101,105,95,101,103,109,102,82,106,101,97,102,96,106,103,98,101,95,99,101,96,106,121,94,96,114,96,104,98,92,99,103,110,110,97,98,100,102,114,104,100,97,88,121,99,102,110,105,91,111,105,99,92,101,104,99,111,89,98,97,92,93,93,107,96,96,97,102,94,97,97,104,101,98,106,106,108,110,109,100,95,101,102,106,92,95,97,109,88,108,104,110,99,83,99,90,100,97,97,95,99,109,89,94,107,110,95,99,101,95,114,96,107,103,91,96,110,100,88,106,107,110,101,109,106,108,100,91,98,109,111,100,96,101,98,99,107,84,90,103,101,103,94,101,104,99,97,94,112,97,95,98,107,110,101,105,103,101,96,101,104,102,92,96,92,109,108,100,106,109,111,95,104,101,100,103,109,114,105,112,95,75,95,98,103,86,109,102,107,110,94,99,107,98,103,84,104,97,101,98,101,95,95,96,106,102,103,112,98,111,87,115,106,107,104,88,103,101,102,102,74,97,98,104,95,95,114,96,108,110,93,99,116,104,96,99,105,102,95,102,105,98,111,92,105,114,105,106,105,107,96,110,106,105,90,95,98,98,103,73,103,109,120,99,107,107,99,88,92,109,96,109,106,86,99,97,103,98,109,91,92,101,105,108,100,108,105,108,109,117,101,95,115,102,104,99,101,111,104,108,104,101,104,105,116,87,99,107,118,105,102,104,91,97,96,95,107,109,100,100,90,121,97,104,109,106,97,119,95,105,111,103,92,108,90,101,95,92,105,104,104,94,101,107,103,105,102,92,105,107,102,110,105,101,103,92,106,108,108,110,93,102,107,105,102,98,104,108,100,108,99,84,117,94,96,94,99,107,97,99,107,92,102,105,102,109,113,100,106,97,105,103,97,101,106,107,95,106,108,98,92,107,104,82,109,94,99,113,93,98,103,105,95,100,100,109,99,97,109,105,97,96,101,110,104,110,93,106,103,107,116,105,100,95,95,105,103,107,112,91,84,86,103,110,102,92,97,101,101,110,104,98,107,85,117,101,114,95,114,101,105,109,107,113,111,90,111,86,91,109,96,107,102,105,101,93,108,110,98,116,113,99,100,108,109,103,129,106,109,111,95,101,114,109,87,111,101,100,100,96,100,99,109,91,92,101,108,103,94,99,92,105,108,99,117,104,106,124,111,101,109,99,103,105,95,95,107,117,109,103,109,103,108,93,90,103,97,108,102,110,115,97,94,93,98,104,98,105,105,92,91,106,104,95,97,93,99,106,104,99,110,109,105,99,101,104,102,105,96,103,104,113,109,102,107,103,95,119,100,99,100,106,104,112,102,108,98,96,115,106,93,99,102,107,115,110,113,102,112,101,104,104,99,90,101,99,102,109,101,99,108,103,103,100,102,103,110,80,96,93,96,97,100,111,112,95,100,115,106,109,111,92,86,101,109,97,99,124,102,92,99,97,83,114,110,111,103,100,99,99,99,108,113,101,98,112,96,100,92,106,109,104,106,110,103,106,105,91,114,93,106,106,112,82,105,103,104,96,110,98,101,105,103,107,109,105,111,97,96,107,103,105,110,107,108,98,109,96,97,93,109,117,96,118,102,86,116,103,90,112,92,100,90,106,115,104,101,129,94,101,104,103,98,97,100,99,97,103,99,100,88,97,91,120,98,106,96,106,94,91,101,97,99,105,103,100,114,102,107,103,112,102,102,85,102,96,111,94,108,115,99,95,108,104,111,82,95,85,99,108,98,96,94,106,104,99,95,109,96,105,93,94,103,110,100,112,90,98,107,81,101,106,110,98,108,102,100,96,116,98,104,90,101,98,103,104,95,88,109,117,101,103,100,93,109,98,113,104,100,91,102,105,107,97,109,109,101,108,105,108,108,111,102,85,90,109,99,105,98,106,108,102,96,98,109,95,95,109,112,99,105,102,108,105,108,100,93,107,100,102,107,93,104,93,121,120,105,102,104,106,105,105,111,117,121,108,105,105,107,104,108,103,113,102,104,113,107,106,99,111,113,102,107,106,98,103,124,107,101,97,102,100,110,106,107,96,103,81,104,104,101,94,102,105,107,103,110,99,96,110,100,103,103,114,106,94,113,99,99,109,87,104,96,104,108,102,99,102,103,97,114,103,102,110,98,107,109,101,84,115,106,107,100,102,89,110,99,107,99,111,109,105,104,98,91,88,114,104,98,106,101,109,94,115,108,107,97,97,109,113,92,95,89,101,112,120,100,102,108,102,93,95,99,102,91,95,101,108,103,100,99,107,105,111,102,111,84,104,128,102,104,101,98,95,81,98,100,94,112,108,111,99,87,97,98,103,102,94,102,106,104,117,101,101,100,120,105,102,101,95,101,106,98,95,101,98,101,98,105,96,104,99,105,106,91,99,110,104,97,92,112,124,98,112,117,88,104,104,109,85,101,105,102,89,94,85,96,109,105,109,102,91,113,93,98,100,95,101,108,97,104,108,101,91,108,107,102,104,105,98,105,100,96,99,103,105,96,101,104,102,105,106,126,110,106,95,119,102,98,101,91,97,106,86,95,103,102,96,96,110,110,103,104,110,98,90,97,105,108,116,100,79,95,106,94,110,97,98,101,112,105,99,108,106,100,88,98,94,94,109,107,107,99,110,89,92,94,105,113,102,84,112,85,104,101,101,96,114,97,101,120,115,95,95, +689.38855,103,113,107,73,90,95,91,102,100,90,100,86,97,103,98,102,95,119,99,95,106,111,92,106,108,96,91,100,97,113,101,107,99,83,116,107,98,71,90,100,99,97,100,94,103,107,122,109,98,108,107,88,101,75,105,101,114,109,98,102,104,95,110,98,99,96,103,97,91,92,102,94,102,94,94,102,111,103,113,96,109,108,98,120,99,88,114,97,111,111,103,108,98,99,112,100,98,100,112,95,92,110,87,108,108,132,104,98,103,105,104,100,96,106,98,110,86,95,104,103,96,112,108,119,111,93,109,92,110,107,108,102,103,101,109,106,99,101,107,108,100,107,104,111,115,104,99,90,90,96,105,91,98,97,104,112,94,98,103,113,99,100,102,91,99,100,87,103,92,77,104,95,109,101,101,95,93,91,107,96,100,96,96,96,109,101,93,95,102,105,97,90,104,99,99,111,106,103,108,100,111,96,101,94,94,101,104,101,108,105,89,105,98,101,94,102,99,96,96,91,102,97,83,97,99,102,107,101,101,103,101,99,95,103,109,102,112,109,101,97,98,104,107,100,97,104,109,117,100,107,108,94,98,110,98,108,119,95,92,99,104,102,96,98,82,100,87,92,111,80,94,102,121,93,110,101,94,102,96,86,98,107,94,106,112,99,103,99,105,89,102,101,97,100,105,103,112,82,104,106,114,102,104,106,96,98,104,114,100,104,95,114,98,104,111,94,109,112,130,101,101,99,107,102,105,78,99,106,104,104,117,96,133,104,104,100,99,109,112,99,99,103,100,100,101,107,114,102,100,99,112,104,98,100,105,114,98,100,113,99,106,103,96,97,86,103,102,107,106,103,106,103,109,109,105,114,110,100,92,110,108,121,103,98,90,103,94,101,98,94,101,97,93,99,114,96,105,94,100,114,103,104,105,97,95,94,101,102,105,106,94,111,100,103,103,97,101,108,102,96,107,94,106,103,96,89,97,104,100,117,124,95,104,110,100,98,111,109,101,105,100,103,90,90,95,104,100,104,90,95,114,105,109,98,108,86,102,109,105,118,92,96,113,103,107,98,105,101,102,95,92,112,110,104,110,96,90,100,105,101,103,111,98,103,102,99,85,101,108,99,112,105,117,98,109,99,106,110,106,98,95,111,103,91,98,117,99,92,100,123,110,80,109,121,103,116,100,102,99,90,107,91,104,116,105,98,99,95,98,102,94,102,93,90,100,104,96,105,105,117,92,105,100,100,99,102,99,90,94,108,95,95,97,98,113,89,126,99,89,102,91,106,99,106,100,118,104,108,96,125,98,100,96,97,103,131,105,93,102,109,101,98,101,101,97,107,95,116,111,95,98,109,97,95,102,91,103,100,117,99,96,101,98,90,97,108,104,101,101,103,98,104,115,106,106,103,102,83,106,109,104,89,98,101,105,93,109,105,104,100,109,113,108,105,103,103,98,95,114,104,109,106,100,92,103,93,106,111,110,109,105,109,110,95,102,96,100,109,111,105,106,113,106,70,91,104,109,97,110,100,106,119,95,106,100,105,98,110,110,119,107,110,110,101,108,111,103,103,113,111,96,97,94,98,104,99,113,116,102,118,100,93,88,114,104,108,105,117,95,108,117,116,95,96,99,96,95,102,109,108,98,99,107,109,106,103,105,93,95,104,109,102,97,109,97,105,85,103,101,107,113,102,108,105,113,94,87,101,82,112,109,105,94,85,100,122,84,99,101,76,108,97,96,98,89,100,99,97,99,100,106,98,114,95,105,102,96,98,100,103,99,106,99,105,118,129,95,104,91,105,112,105,113,122,89,96,98,103,106,91,109,103,91,95,108,69,107,105,113,101,111,109,113,107,111,99,121,117,106,107,95,100,102,99,95,105,102,103,123,101,104,104,105,110,105,100,116,111,102,115,97,98,111,108,99,98,103,97,101,95,98,105,110,102,101,98,100,103,99,115,105,99,101,105,105,103,92,106,111,112,97,117,107,101,91,106,94,92,101,110,98,100,102,112,101,99,114,106,110,93,105,107,95,105,93,95,102,107,132,105,98,101,105,109,101,108,98,99,106,108,102,103,98,104,110,96,103,112,104,101,104,113,108,99,98,94,94,114,94,83,104,117,105,96,96,117,95,95,105,107,76,95,108,105,90,110,103,103,101,98,93,108,113,105,95,105,105,105,99,107,101,109,95,94,96,102,95,96,99,109,95,89,98,109,105,116,110,96,108,97,103,136,101,99,96,101,86,109,112,102,108,105,112,105,110,100,111,102,105,108,99,103,92,86,109,103,111,108,105,96,92,100,93,108,80,93,132,111,113,118,105,97,109,94,106,108,105,100,105,110,88,108,99,100,98,92,101,103,100,98,98,104,95,107,108,106,101,103,102,105,109,108,109,101,93,99,105,89,108,120,104,103,103,100,106,98,100,107,99,101,100,102,119,107,111,99,102,98,103,102,98,99,100,102,111,94,105,72,110,107,106,100,101,95,111,101,95,106,101,95,91,108,104,101,125,102,110,102,83,101,101,100,96,87,110,105,110,93,115,105,101,104,102,99,98,103,101,107,101,106,109,99,109,91,102,100,90,102,80,98,96,99,103,113,101,82,102,129,98,99,107,104,108,108,105,89,105,104,100,107,107,96,103,90,106,98,90,114,105,91,96,97,117,109,97,96,106,99,100,116,94,111,98,109,100,100,107,106,108,105,104,103,107,113,104,113,108,104,112,102,106,92,106,109,110,102,100,111,107,107,102,112,97,99,98,94,105,103,98,92,108,117,95,95,103,98,105,99,137,100,108,98,105,99,92,94,120,100,104,114,104,117,103,107,100,113,104,114,117,83,100,110,100,95,107,100,107,101,107,115,107,105,108,113,113,108,99,105,98,101,98,99,103,106,96,94,81,111,113,107,86,101,96,106,106,97,100,104,96,102,99,106,95,97,103,106,98,105,114,99,112,104,110,104,101,112,109,103,100,108,102,108,100,104,88,102,102,100,102,97,110,104,90,102,107,107,106,118,99,107,98,100,111,105,103,100,98,103,108,110,94,98,104,104,111,110,102,96,105,103,97,101,100,104,99,91,99,107,100,100,108,104,105,91,100,98,99,104,92,102,111,104,102,108,107,90,94,103,103,103,99,73,100,110,102,100,102,94,104,99,91,107,106,105,106,102,96,105,116,111,103,97,91,90,102,97,84,103,89,107,100,93,99,93,98,99,102,110,97,108,113,108,102,99,97,85,117,91,96,98,93,102,117,96,90,106,98,89,82,103,100,96,106,114,99,95,97,118,99,106,102,81,100,114,101,113,104,101,106,96,88,90,102,109,101,92,99,91,94,105,86,117,94,92,87,108,105,100,108,110,94,106,99,116,100,104,96,98,96,95,97,87,105,108,109,97,106,104,102,104,105,99,114,100,103,109,120,96,133,101,103,102,97,113,101,91,92,98,105,96,111,98,101,98,102,91,100,99,100,106,68,105,105,101,87,98,113,97,117,107,106,108,97,111,102,99,99,93,105,97,103,101,98,107,104,104,108,103,93,99,100,99,97,102,109,102,107,95,98,103,106,113,96,87,97,101,103,94,121,91,97,105,102,110,101,99,108,104,106,101,99,102,112,100,115,110,102,114,103,94,98,105,123,100,89,108,91,77,108,109,101,91,104,102,101,95,107,115,96,97,91,108,97,103,96,99,104,95,94,104,100,117,100,104,108,109,106,99,104,94,108,105,108,97,109,99,113,101,100,93,120,99,74,92,98,101,101,98,106,102,104,90,95,110,89,102,96,104,106,102,106,109,98,104,103,100,97,110,108,98,116,95,97,107,109,104,117,83,95,106,102,97,116,108,108,112,103,94,100,97,98,99,98,105,95,104,101,106,107,98,105,104,108,97,109,106,93,92,99,103,88,109,101,97,105,99,99,100,94,103,88,108,103,100,93,102,88,91,110,111,111,110,100,110,97,101,101,99,98,103,93,99,98,93,94,113,93,101,113,103,100,115,102,97,106,101,107,111,117,100,105,93,107,103,108,100,108,92,105,105,99,109,98,98,106,101,89,106,110,99,109,104,100,83,100,100,108,98,98,94,94,106,111,106,112,108,93,99,100,108,83,100,112,110,78,101,91,95,100,104,102,92,92,109,96,97,97,95,98,110,103,101,115,98,101,93,91,99,106,92,110,110,83,96,96,104,87,89,112,84,104,106,98,105,102,103,107,113,98,99,106,106,111,99,95,86,109,110,99,102,101,101,107,105,89,100,93,96,109,101,100,95,114,102,103,114,111,95,101,96,101,112,91,90,109,109,66,108,91,99,101,110,88,106,120,104,97,99,108,96,101,93,114,96,107,101,104,108,109,100,100,109,103,99,104,103,103,104,96,106,111,109,106,111,98,94,102,108,95,105,91,104,106,91,90,107,84,102,100,112,105,97,104,116,94,105,101,98,91,97,115,98,109,105,98,86,95,101,69,112,93,94,99,113,85,93,110,100,98,99,91,94,87,102,107,96,92,107,109,106,89,99,100,95,94,116,100,99,103,108,100,110,84,116,105,105,105,105,99,93,107,105,108,95,95,109,94,102,92,94,94,86,107,107,113,104,103,104,101,101,95,104,106,102,99,107,107,98,102,110,111,103,102,106,103,100,112,78,111,106,105,106,106,105,91,86,115,80,91,97,105,96,98,102,100,104,109,112,107,106,99,109,97,112,96,98,88,90,100,94,82,96,84,94,104,98,95,87,91,118,99,99,113,109,105,108,100,110,88,99,91,107,114,107,96,95,105,106,106,108,98,115,121,106,109,99,98,107,105,97,104,98,89,94,94,118,95,96,90,101,103,103,102,104,105,108,90,103,105,105,101,99,102,101,106,100,97,106,96,103,106,102,93,133,109,124,103,90,110,99, +689.52985,99,102,91,97,99,104,92,95,102,95,99,97,105,82,98,116,98,121,88,106,90,71,116,97,97,120,110,96,95,94,98,101,99,96,100,107,104,105,100,94,99,94,106,121,104,113,104,104,93,98,96,106,108,104,91,100,112,100,106,105,102,107,108,97,91,101,109,110,100,94,105,104,93,98,92,113,102,106,111,99,102,101,100,89,92,99,96,102,105,94,96,92,107,88,95,107,111,97,112,92,100,104,100,107,94,106,100,94,93,115,96,96,106,99,105,99,98,110,108,102,99,99,110,115,78,106,63,91,93,104,100,103,96,103,82,104,95,91,105,93,103,112,90,93,99,93,101,91,110,101,98,100,104,94,104,111,88,88,107,104,105,81,95,92,118,88,78,107,99,104,100,105,113,107,94,103,102,93,99,109,107,102,107,92,106,99,111,88,109,91,109,101,111,107,99,111,101,101,102,107,109,88,84,106,97,91,94,91,107,111,95,117,92,100,86,95,92,114,107,91,104,95,104,95,103,111,103,87,106,101,89,98,110,105,100,95,113,98,113,101,100,107,108,98,100,110,108,101,103,118,99,107,98,93,97,112,101,113,103,99,107,100,97,91,106,104,114,98,93,97,103,89,98,102,104,96,102,99,110,102,106,98,104,100,109,107,98,99,106,92,111,104,102,98,98,96,100,87,121,99,88,102,105,105,93,94,105,86,104,104,106,125,96,99,93,101,108,98,92,96,104,99,97,100,109,115,96,94,108,101,101,92,108,96,107,102,107,98,96,103,93,95,101,79,101,91,110,104,101,100,89,96,96,95,100,90,96,98,112,116,96,97,101,92,101,98,89,102,99,109,109,90,98,118,98,108,89,101,99,107,101,110,108,107,93,112,88,97,96,109,100,76,108,96,91,88,109,91,102,102,98,103,99,84,92,107,101,79,106,100,99,92,104,99,96,95,103,95,102,110,99,96,98,96,100,104,107,99,101,105,116,108,94,102,109,105,91,91,97,100,106,101,92,98,94,100,109,93,95,100,104,102,108,103,99,102,100,97,97,104,97,95,108,109,109,102,102,90,74,100,96,99,102,96,100,105,106,103,102,89,97,111,107,104,98,92,96,113,97,101,109,105,104,95,92,105,112,95,103,104,113,97,111,114,107,108,90,100,99,95,98,105,103,99,105,115,102,92,83,100,101,97,105,107,102,102,95,117,102,99,90,112,101,97,108,94,101,94,101,92,92,99,102,92,102,110,109,64,106,96,99,94,105,103,98,102,101,81,102,99,100,114,93,107,97,98,94,99,99,100,92,97,108,105,107,102,87,106,96,106,103,93,101,109,101,93,93,97,101,97,103,88,91,102,113,107,100,109,90,89,102,98,103,100,94,108,100,94,99,100,90,102,111,104,104,97,105,87,102,109,104,112,96,105,98,101,91,98,92,100,100,97,91,100,100,99,105,94,91,105,101,101,101,101,99,98,87,92,108,105,90,92,106,103,87,104,108,96,91,108,109,105,103,96,96,106,101,87,100,105,98,95,105,101,88,126,102,91,107,99,96,96,112,93,98,87,106,100,93,99,99,104,92,98,102,107,85,116,113,105,107,97,109,106,102,99,102,108,132,104,100,103,99,100,86,98,100,86,111,102,91,102,98,104,91,100,113,99,92,115,99,97,108,90,103,97,103,89,98,110,109,101,91,93,108,103,106,99,91,117,97,101,90,100,96,95,109,136,87,105,105,103,104,98,103,112,62,93,110,99,106,98,88,98,100,103,102,97,95,114,101,101,101,103,106,105,113,115,104,94,107,112,94,95,102,86,104,84,105,115,101,111,95,105,97,109,104,106,95,103,107,103,86,113,102,94,128,104,100,106,96,98,110,122,91,99,109,106,102,95,109,102,100,106,100,103,80,110,104,110,102,110,110,104,100,108,99,97,98,114,99,100,102,88,88,105,92,103,101,96,99,100,109,110,103,88,102,107,87,93,103,95,92,101,121,110,99,112,100,88,102,107,95,94,111,109,107,106,103,99,95,118,103,107,108,100,96,106,99,98,97,106,111,113,98,84,93,102,102,110,100,109,100,109,108,85,101,100,90,90,95,92,103,98,102,93,99,92,107,89,94,100,94,99,99,104,107,93,109,96,99,105,109,104,123,100,109,105,109,90,107,93,90,99,113,96,110,103,94,104,116,98,95,96,105,96,89,96,94,99,90,100,92,103,97,95,112,95,100,94,98,102,99,93,100,100,98,115,92,102,109,100,89,96,109,101,92,102,100,92,101,72,98,89,94,109,99,105,92,96,111,93,105,95,102,97,103,95,102,93,100,101,105,95,111,103,94,87,93,114,109,103,108,102,98,87,94,95,110,106,103,97,105,92,104,109,93,68,110,94,97,90,103,104,100,95,103,110,106,96,98,105,105,96,101,107,117,96,86,94,105,99,105,99,98,106,97,101,94,108,108,111,105,108,108,95,92,96,105,100,94,102,93,82,111,123,117,106,109,97,106,101,97,106,110,113,93,116,104,105,87,99,77,96,99,106,102,100,93,115,99,103,104,69,101,93,105,98,91,106,117,88,97,88,101,108,102,102,98,105,115,99,84,113,101,135,112,100,110,101,96,101,105,101,79,105,101,109,107,113,98,91,113,89,111,104,98,117,98,113,101,109,96,110,101,109,105,113,101,107,100,102,95,73,97,107,106,106,100,106,99,99,108,99,99,106,117,96,100,105,104,101,113,97,110,94,115,113,96,95,101,109,91,97,105,106,102,99,110,91,117,110,106,94,97,103,80,105,109,105,100,110,100,97,113,111,77,101,95,102,106,101,108,97,110,97,110,112,97,101,106,108,92,97,103,89,98,106,100,114,100,104,98,99,100,103,117,105,94,109,87,105,103,107,71,129,109,101,103,121,87,101,108,105,113,94,108,105,109,96,96,99,96,106,108,102,102,96,113,109,101,107,100,101,101,94,101,91,113,92,100,91,100,96,103,109,100,97,105,94,110,104,121,100,118,106,112,74,100,102,99,95,107,87,105,102,104,101,96,102,106,106,101,109,96,108,108,105,104,100,105,104,86,105,111,113,105,91,99,99,101,100,103,88,98,108,96,106,97,92,109,94,107,116,97,103,99,92,107,105,98,106,102,116,99,90,101,102,107,97,92,93,110,111,109,126,107,93,113,99,106,102,89,109,102,106,103,102,114,115,101,95,105,90,98,105,108,109,93,110,84,97,90,97,97,109,98,107,103,99,102,116,108,101,112,101,98,112,89,109,110,97,98,114,102,100,98,105,110,76,95,87,78,98,102,107,109,112,110,113,105,119,110,82,104,101,107,101,106,99,95,110,98,99,103,105,105,93,110,91,106,115,102,101,105,103,93,105,112,105,103,98,100,112,112,99,96,99,107,104,104,99,101,112,90,103,103,103,104,106,103,115,107,97,96,106,97,117,102,99,120,106,110,105,98,103,104,97,90,90,111,108,104,100,97,106,104,100,123,91,105,101,102,102,109,90,98,101,89,106,102,99,103,98,103,98,103,98,97,102,106,100,98,114,109,112,100,97,95,109,109,104,99,91,98,108,111,112,96,99,102,104,106,102,110,113,105,104,98,101,107,99,91,98,94,94,107,92,103,111,95,113,102,106,103,103,127,107,111,111,92,98,107,108,98,99,98,100,110,98,98,113,103,109,90,104,108,107,100,99,105,94,113,105,114,115,92,102,108,96,102,102,108,103,101,96,98,102,113,100,100,113,100,86,106,95,107,108,106,106,103,100,99,108,101,97,97,98,105,103,100,95,95,98,98,91,108,108,110,85,116,118,98,98,120,108,101,99,86,117,102,108,110,112,108,104,103,112,99,100,116,107,105,97,92,87,108,96,109,96,101,106,102,102,95,103,103,113,102,98,90,104,125,97,100,97,99,102,106,100,104,94,109,86,107,98,93,103,103,105,105,109,98,109,97,116,95,111,89,88,104,111,102,123,111,105,104,98,96,104,110,103,108,99,112,97,100,91,115,100,106,97,101,113,116,112,109,101,92,97,114,104,89,102,104,99,111,83,106,113,110,91,105,113,89,105,105,105,104,86,98,103,107,93,110,109,92,101,126,106,99,98,108,99,103,97,107,104,89,105,103,83,100,114,113,103,125,104,101,111,98,95,101,100,112,98,121,115,90,93,101,110,111,106,71,91,108,107,106,108,94,96,112,99,99,88,112,96,98,115,98,109,98,103,104,95,96,99,98,103,97,98,118,104,101,99,102,113,89,116,105,102,107,103,117,73,88,92,97,103,100,105,99,104,112,100,105,92,88,115,108,114,105,110,103,105,105,105,90,99,110,98,99,96,103,103,109,97,116,99,96,97,109,98,96,101,100,108,103,104,105,113,99,103,104,102,102,107,97,98,84,96,89,108,96,111,102,111,98,92,120,105,105,96,119,102,108,93,93,105,110,96,114,110,103,90,107,96,108,100,112,100,100,98,101,95,110,101,98,111,117,108,99,112,103,113,98,105,107,95,108,115,96,98,107,79,104,107,101,79,101,96,102,112,106,99,105,102,106,101,111,100,80,104,100,106,105,97,100,96,97,102,109,99,110,107,106,94,106,99,110,86,104,115,101,123,122,111,96,100,100,114,112,97,96,100,116,104,116,97,106,98,100,106,110,88,108,107,116,108,113,104,106,105,81,102,106,124,102,110,96,104,108,105,117,105,94,95,101,99,99,104,96,104,102,102,109,106,110,106,105,100,97,89,106,106,77,123,100,100,95,103,113,113,111,102,109,92,110,101,98,93,112,100,102,91,104,103,108,85,103,98,95,113,100,103,109,106,107,106,103,111,95,105,94,96,103,104,103,103,109,100,132,108,104,85,94,101,91,93,106,96,118,110,109,104,113,104,91,102, +689.67114,109,111,97,91,101,88,104,105,96,102,90,107,112,111,98,86,77,109,93,116,101,105,113,107,106,101,127,83,124,111,100,101,104,115,93,93,102,93,101,103,109,100,95,98,103,108,109,97,111,99,100,101,92,88,116,96,98,77,114,78,95,96,102,89,96,102,88,112,100,91,106,94,97,102,94,107,108,99,80,102,112,102,102,102,80,98,82,108,100,100,103,125,109,100,106,113,101,106,101,95,103,102,64,98,93,99,99,110,101,104,99,117,109,105,91,109,90,99,95,97,126,106,129,108,104,117,100,102,102,108,101,103,104,116,115,94,100,103,105,98,95,105,93,96,108,102,108,99,90,102,97,104,102,84,95,94,110,118,105,112,109,94,103,99,96,79,92,97,110,95,89,113,104,100,104,104,99,88,104,110,90,114,94,103,105,108,99,91,109,100,89,97,106,89,101,101,101,105,87,103,97,95,113,78,103,104,93,115,98,97,108,105,106,101,94,99,100,105,86,100,86,95,91,100,104,115,120,95,100,112,91,120,112,101,100,107,94,109,103,95,98,102,99,105,104,97,104,99,98,100,106,99,106,103,101,110,97,101,94,97,98,106,106,95,105,113,103,79,100,105,95,105,105,111,102,101,102,109,103,122,110,103,86,99,98,105,92,101,105,96,99,104,115,105,108,103,113,79,103,110,110,102,110,101,86,102,106,94,95,102,92,103,102,102,112,101,108,109,90,109,100,101,105,106,104,93,104,94,101,102,113,103,86,97,98,95,100,96,101,100,120,96,94,91,96,117,106,98,102,91,87,103,102,106,116,102,102,109,105,104,103,116,98,97,71,111,86,108,103,112,105,97,100,100,112,102,99,94,98,109,98,104,88,99,97,96,98,100,106,97,96,91,77,104,94,93,108,93,111,105,84,106,95,93,95,103,99,94,103,106,111,97,99,97,116,100,95,106,106,93,101,106,98,105,121,104,120,102,98,100,86,100,99,102,90,97,103,100,87,100,107,100,94,106,84,101,95,90,81,112,106,104,101,115,98,99,110,76,95,105,110,102,113,100,101,109,108,104,90,95,105,98,110,95,98,110,94,114,101,100,112,113,107,99,102,95,108,107,94,105,90,92,112,118,93,104,98,87,99,98,103,105,89,108,91,96,115,101,95,97,102,90,124,100,100,102,99,94,105,106,113,89,119,106,96,102,107,108,94,103,98,106,100,99,93,122,118,105,88,112,117,108,101,109,111,114,113,105,95,109,105,107,103,110,104,108,95,101,96,111,96,122,103,113,102,101,91,110,101,109,82,82,105,96,104,104,95,101,106,97,107,109,107,108,104,100,104,110,132,101,119,105,88,92,103,96,99,98,101,108,95,105,111,98,108,91,106,89,111,95,102,105,109,94,99,88,107,97,98,91,107,108,87,100,96,103,95,101,99,91,95,100,94,111,92,101,101,108,93,98,85,105,114,95,96,89,101,95,90,99,107,100,114,111,115,103,109,109,101,93,105,112,117,97,100,109,115,100,110,110,110,101,101,109,91,112,90,95,105,113,112,98,86,101,87,101,100,108,99,105,110,108,114,110,95,92,109,91,121,101,86,91,110,102,107,102,115,108,96,103,107,106,96,97,100,87,95,102,104,95,91,92,96,112,109,96,96,96,96,114,103,89,109,105,95,99,100,97,116,95,116,109,98,96,108,110,104,104,105,91,71,96,94,99,99,99,106,104,99,110,79,111,105,90,87,101,83,99,96,83,94,102,110,111,68,97,99,95,114,103,100,97,100,99,110,104,105,106,91,105,106,103,101,95,113,107,102,95,97,108,100,105,97,100,110,105,109,93,109,95,100,87,87,97,103,100,100,101,99,112,104,113,110,79,117,100,107,87,105,97,122,87,105,110,92,110,103,92,98,100,96,106,107,109,92,98,85,92,105,104,101,101,106,90,97,113,91,101,97,88,95,104,96,105,99,100,105,105,109,86,95,115,104,99,108,106,107,103,92,98,98,129,99,97,103,100,93,110,101,108,103,104,100,107,108,91,109,111,113,128,105,109,96,105,96,102,91,96,86,106,94,100,94,98,105,98,92,99,94,111,98,100,106,99,98,105,99,106,87,109,99,96,105,102,98,113,88,96,104,76,102,104,110,109,101,102,101,104,116,106,108,98,96,100,121,109,104,111,80,84,101,100,100,106,106,102,94,97,91,95,92,107,110,72,100,90,86,98,103,105,112,103,100,105,103,101,78,108,83,95,102,72,110,105,101,98,105,99,96,101,93,95,105,94,93,88,97,106,104,119,102,102,96,114,99,112,117,101,97,107,105,111,104,95,107,95,109,98,92,102,106,99,99,99,106,102,100,113,101,114,101,106,112,101,97,111,103,109,102,97,95,101,99,109,108,101,103,109,95,107,107,104,124,107,109,97,90,108,91,96,106,91,92,100,92,99,105,109,89,114,89,100,90,106,105,103,105,97,114,113,101,109,104,101,104,108,108,95,104,99,99,107,114,112,91,109,99,94,91,95,98,102,109,92,99,93,102,110,94,115,104,95,102,103,101,103,112,113,95,94,115,93,97,104,82,101,98,95,108,97,106,96,88,124,105,97,103,98,91,101,113,95,110,103,101,95,108,94,79,108,104,105,100,101,95,103,104,96,100,96,90,95,102,104,104,102,95,100,106,102,95,101,106,101,95,107,89,98,102,101,102,96,98,104,95,108,103,102,99,94,106,106,113,92,99,97,90,112,104,97,110,95,103,103,113,110,78,92,93,110,95,99,95,95,107,90,93,96,101,90,96,95,92,104,102,95,87,98,91,102,103,109,104,100,102,85,91,95,97,103,98,102,99,100,78,105,96,95,112,90,93,112,79,100,98,107,107,108,91,112,106,101,108,107,91,105,106,104,97,97,120,96,98,118,102,115,113,99,95,106,85,98,96,99,93,103,94,90,119,103,99,102,102,102,96,115,101,103,99,96,109,98,87,95,105,113,102,109,113,96,113,109,101,102,119,96,102,103,88,88,106,94,94,104,100,105,99,104,91,98,97,98,107,98,115,98,115,94,109,105,100,100,98,103,100,99,84,90,110,94,110,87,97,104,101,107,108,105,101,105,88,107,105,107,103,98,105,101,97,112,96,91,113,111,83,84,93,101,102,97,96,105,99,96,95,94,102,94,114,106,113,103,87,98,91,107,104,101,96,70,98,99,93,95,109,100,99,99,104,107,102,102,98,96,96,106,98,92,105,105,100,95,97,98,98,95,98,88,97,101,90,105,101,91,99,95,95,95,95,105,110,102,94,88,89,116,95,105,98,109,108,98,95,104,108,105,104,99,98,104,96,117,102,116,110,106,105,97,99,83,99,113,103,92,99,90,94,102,105,97,104,99,103,106,96,115,102,98,95,105,103,97,100,109,96,101,100,91,98,105,103,95,103,109,93,107,109,101,104,106,94,110,93,97,102,100,103,82,105,90,93,100,96,84,91,102,93,100,105,97,101,106,92,94,113,99,97,107,88,95,100,93,101,109,90,103,106,100,95,115,113,104,104,98,92,114,104,104,98,111,95,100,66,100,107,96,108,106,102,87,92,96,87,110,112,107,95,95,117,103,104,98,103,93,100,94,101,96,108,98,105,93,101,95,94,92,102,90,98,101,96,104,110,103,96,100,93,105,98,108,102,94,111,124,109,122,82,116,98,95,106,97,94,98,100,105,103,92,105,105,100,96,98,97,101,112,104,107,75,80,103,89,103,106,106,116,109,94,103,107,98,102,110,106,106,99,113,107,102,97,106,108,120,99,109,97,103,110,103,102,112,95,103,97,113,110,109,103,101,109,102,112,111,111,100,103,115,95,90,105,99,97,101,104,103,90,89,91,85,109,109,102,92,107,97,83,99,97,96,99,93,108,96,100,108,100,100,87,106,93,108,103,108,95,115,103,93,102,106,100,108,123,95,95,95,93,104,111,102,100,103,103,94,102,109,109,92,92,101,124,101,89,91,92,106,97,113,102,98,106,111,102,104,97,94,106,103,116,105,109,100,105,98,110,102,111,98,95,103,100,103,96,106,88,98,94,95,116,83,102,98,79,110,98,105,102,87,109,87,99,91,94,103,100,108,84,100,104,105,98,107,102,100,100,102,107,104,107,99,102,99,97,102,94,103,100,120,96,95,102,106,95,106,95,101,90,95,98,96,101,103,102,110,101,110,104,98,109,98,107,90,91,108,112,119,91,105,104,104,98,111,97,88,105,98,87,104,95,96,96,102,92,119,109,108,99,104,99,93,112,104,99,104,110,108,92,99,95,107,104,107,106,106,91,99,106,99,108,100,105,77,84,103,110,89,99,106,95,109,106,110,104,107,100,125,105,103,109,109,106,97,109,110,113,102,87,106,106,92,97,104,91,91,104,98,101,116,101,103,99,100,96,102,111,98,93,103,94,99,99,106,102,96,101,102,89,99,97,98,104,95,102,96,104,103,110,98,87,106,100,87,98,88,94,101,98,104,89,93,102,100,99,95,96,102,76,97,108,105,100,109,95,96,108,96,100,93,102,99,116,106,104,107,107,104,112,105,101,109,94,109,96,96,108,112,95,100,105,97,95,96,95,102,109,108,97,111,101,88,89,108,97,102,98,105,105,114,103,101,110,100,107,107,111,107,110,101,112,107,97,109,97,97,95,98,101,77,102,101,98,112,104,111,103,101,105,104,100,106,118,93,113,100,117,83,97,108,113,100,104,93,108,108,108,107,117,91,107,101,95,106,96,108,98,110,104,97,99,103,102,106,90,102,106,106,93,99,113,93,96,95,94,90,101,114,115,104,98,113,100,115,104,95,107,97,107,101,109,100,97,95,103,105,104,98,101,88,103,101,92,110,110,92,98,109,103,100,113,115,95, +689.81244,91,94,119,105,95,106,99,102,92,71,101,97,92,95,101,90,90,115,95,101,99,94,98,92,99,106,89,99,106,102,100,90,98,104,105,103,92,101,84,103,99,98,110,104,87,102,75,105,92,103,110,107,102,102,112,94,91,94,117,80,103,96,63,95,102,121,85,67,111,112,102,117,105,105,74,114,90,112,108,91,98,102,103,90,110,87,102,101,95,74,109,101,79,95,86,86,110,98,102,89,106,89,99,94,95,100,101,97,97,89,96,95,113,101,111,105,96,116,111,95,95,88,99,107,102,100,108,98,104,94,99,96,95,92,106,93,125,103,110,101,106,95,106,103,112,96,95,100,98,101,98,106,108,101,90,103,94,88,96,107,105,97,108,100,95,109,109,95,106,97,92,95,97,99,110,91,114,96,92,89,98,104,87,98,103,104,91,100,100,95,94,109,96,98,100,100,106,109,97,97,98,101,103,98,96,92,100,105,103,98,96,98,113,110,105,107,115,99,95,103,94,100,100,98,97,99,97,111,106,113,108,98,100,95,95,90,97,86,103,92,91,87,102,121,94,116,108,98,105,117,97,109,107,104,93,107,102,111,97,92,95,97,114,92,89,105,101,95,112,109,92,96,96,94,113,93,93,100,100,103,98,104,105,95,85,95,101,99,107,98,98,116,93,103,118,107,105,100,98,110,87,95,99,111,100,71,108,99,109,115,104,96,92,94,76,101,101,112,105,101,97,99,108,99,91,97,107,88,97,100,103,95,105,109,112,98,98,98,95,130,97,100,100,94,94,109,109,93,107,105,107,105,105,117,83,102,102,101,91,100,86,93,98,98,100,99,101,110,100,97,109,106,102,96,107,107,110,106,93,102,101,99,101,101,104,96,105,92,101,97,112,107,98,100,94,105,97,101,112,106,90,114,113,95,95,87,102,92,90,93,91,90,92,106,105,92,99,96,108,93,88,89,95,98,106,103,85,73,87,108,91,112,96,95,108,79,102,102,99,107,101,116,101,92,88,106,98,106,95,105,93,89,107,104,104,98,104,104,82,118,91,108,99,90,117,102,97,96,102,104,99,101,97,103,89,90,98,103,95,104,102,108,121,96,103,103,100,107,102,95,108,105,101,106,101,102,97,102,103,94,106,85,103,89,96,104,109,96,98,94,100,93,101,96,97,95,100,91,101,101,100,99,98,102,102,95,90,90,90,99,86,103,96,112,100,100,105,96,100,101,124,113,93,103,101,104,109,112,100,77,95,94,100,98,104,108,113,101,99,113,99,113,90,105,98,102,103,101,94,99,90,94,86,105,98,99,90,103,96,98,99,80,98,97,103,86,104,106,98,99,104,97,102,97,104,100,112,92,112,93,103,118,103,102,89,94,104,88,107,104,98,109,100,92,83,105,126,100,89,102,101,94,101,91,109,101,88,91,96,102,109,101,96,105,114,100,110,96,99,86,113,97,96,93,88,105,98,106,99,103,91,96,100,102,99,106,111,108,113,103,109,107,101,97,88,91,105,109,107,102,103,90,112,99,103,104,98,95,108,96,101,104,105,94,107,99,109,96,108,83,86,102,106,108,94,96,100,103,104,97,100,113,105,103,110,106,101,104,94,100,113,101,107,97,100,89,89,98,102,104,110,95,100,111,103,95,100,103,98,104,101,96,92,108,103,105,89,104,107,88,107,88,103,90,103,92,99,105,94,96,100,97,101,101,94,101,104,103,100,111,93,100,87,103,91,91,97,100,106,78,97,101,99,102,101,91,104,94,102,104,104,97,102,92,97,111,97,104,100,104,101,94,102,115,109,80,103,91,108,90,98,89,100,79,94,83,102,104,98,99,107,103,97,106,105,98,113,96,103,103,100,107,100,111,92,112,99,86,96,91,94,101,94,113,88,109,96,109,102,95,95,86,84,100,100,100,97,108,100,106,103,105,77,115,94,94,103,90,96,104,108,105,100,108,95,101,95,102,100,94,100,109,113,89,98,102,96,102,96,100,91,107,105,97,101,95,101,108,96,96,99,95,106,95,96,93,95,90,107,110,104,108,100,94,109,98,97,118,94,99,109,109,104,102,98,113,104,115,92,95,95,100,105,106,121,100,96,98,102,98,102,102,114,89,91,95,102,94,93,96,86,95,94,98,81,99,100,110,103,105,102,94,95,90,116,108,101,105,101,92,103,101,103,98,103,83,89,102,109,112,97,105,94,107,100,108,98,99,124,91,99,105,101,104,101,107,81,102,96,105,96,88,93,104,105,95,99,106,101,96,107,77,105,84,102,101,101,102,95,101,95,95,96,108,94,97,99,88,115,99,102,102,109,84,111,87,99,102,103,98,115,85,100,114,111,99,106,98,95,92,112,106,91,99,107,100,96,95,109,104,107,108,109,107,93,99,113,99,108,105,86,100,106,112,96,113,114,100,102,97,92,100,89,92,91,120,97,89,102,101,101,100,95,107,103,107,93,83,107,107,98,102,106,96,100,109,108,90,103,101,110,104,101,104,104,111,92,101,99,99,96,99,100,113,99,93,103,87,96,115,101,108,97,106,96,109,88,125,112,105,97,109,103,100,113,102,106,112,87,92,100,91,97,108,98,84,104,105,97,98,98,98,101,112,109,100,82,96,105,104,98,91,105,93,99,106,106,102,98,99,101,105,96,98,115,115,106,92,95,113,102,108,105,115,105,116,105,99,98,107,113,103,105,97,88,98,91,102,97,88,105,87,92,99,108,104,104,121,91,96,109,87,100,99,116,101,105,116,105,105,107,91,104,107,111,82,104,110,99,105,84,113,96,107,89,94,109,103,102,113,105,96,108,99,91,102,122,98,102,106,110,108,96,80,101,80,102,108,101,106,101,99,114,104,107,99,107,107,98,105,100,98,103,94,105,105,105,95,109,96,109,104,110,109,100,112,96,98,117,96,99,121,98,107,112,97,106,111,99,101,108,102,93,105,108,97,127,117,98,99,88,101,98,95,98,110,97,94,76,101,117,96,94,113,107,95,122,98,99,103,107,100,106,106,116,100,101,100,107,78,96,96,99,90,102,92,103,100,109,110,105,116,105,101,93,93,100,99,99,96,106,101,108,101,93,94,113,102,110,107,80,105,91,111,95,95,118,101,106,104,123,87,92,107,102,102,106,104,98,100,96,92,100,103,102,109,105,100,118,113,103,105,93,109,85,105,103,107,102,113,95,104,106,101,100,114,99,104,105,96,94,109,88,102,111,119,99,99,93,83,102,102,98,107,107,102,97,115,102,109,102,99,106,99,91,95,94,102,106,86,103,108,106,108,98,96,103,113,109,109,104,102,121,102,115,101,99,90,97,102,104,111,90,102,101,104,107,95,79,90,95,110,98,104,97,101,114,104,103,122,113,102,91,96,99,100,101,110,98,97,99,99,115,119,92,99,97,98,105,101,113,97,99,112,111,111,99,98,108,107,107,103,108,94,105,101,98,105,106,93,100,96,113,103,98,120,116,97,110,91,113,103,103,104,98,91,102,113,99,103,109,113,87,89,110,108,105,101,102,115,81,101,110,100,92,106,86,103,97,117,99,98,97,107,96,97,119,112,108,95,96,98,82,110,101,98,104,100,104,90,94,113,103,91,97,87,115,104,90,95,95,108,106,96,93,101,94,94,103,108,110,98,104,108,97,99,98,94,112,106,113,108,96,106,98,114,105,99,109,101,92,99,92,98,107,104,109,104,129,98,98,100,108,97,106,97,105,109,102,74,113,102,99,101,118,109,102,96,113,108,87,106,109,91,98,98,92,101,107,109,100,109,96,104,89,91,101,99,96,102,107,100,113,119,109,103,85,92,102,102,102,100,102,101,91,99,104,92,98,111,100,109,90,107,99,89,95,101,101,92,114,102,96,91,100,79,99,102,108,89,109,104,90,94,100,98,100,102,92,96,105,92,107,101,104,100,111,109,99,101,101,108,88,110,88,106,99,109,99,107,102,103,99,110,104,95,106,109,103,104,103,100,105,100,105,102,94,101,101,115,114,105,108,125,101,108,102,103,104,97,100,100,105,101,107,99,99,94,100,98,95,91,105,109,114,108,100,99,104,100,109,107,100,105,109,114,108,113,108,98,108,97,100,104,102,96,110,101,96,104,105,104,97,121,99,112,96,100,103,100,105,94,94,94,98,106,101,78,100,87,96,106,94,99,96,107,90,98,112,91,101,103,106,109,99,95,106,98,107,92,91,91,106,110,101,104,103,108,97,109,103,102,105,104,111,101,98,98,101,110,113,111,119,98,101,95,103,102,98,109,102,105,96,106,92,97,103,93,96,102,93,114,119,92,95,95,116,103,107,98,95,83,104,93,98,105,114,102,109,104,98,107,95,113,108,109,120,104,97,104,97,92,104,104,100,93,102,97,103,94,99,88,117,129,101,100,109,92,100,97,108,105,85,99,92,106,107,92,105,115,101,105,96,105,107,101,102,104,99,99,88,104,99,107,92,113,109,103,96,93,98,93,96,110,96,95,103,99,111,110,88,97,102,97,102,106,103,95,100,114,96,105,84,121,106,94,81,103,98,91,104,117,108,96,99,95,98,85,113,121,91,120,109,106,105,111,101,90,106,96,101,109,96,97,112,109,103,101,107,91,105,77,127,94,117,102,98,99,100,100,109,100,107,96,93,110,111,111,95,98,97,94,100,107,95,109,99,102,94,97,110,100,106,96,97,105,97,98,101,92,109,104,98,102,96,109,105,100,112,108,99,96,100,107,106,100,100,104,97,101,92,105,99,94,99,104,103,84,95,104,103,104,100,113,103,117,90,87,99,101,101,97,92,104,109,104,98,109,89,94,99,95,90,91,94,98,103,101,97,87,95,97,111,112,95,108,99,101,107,92,89,106,92,109,109,94,94,99,92,105, +689.95374,95,98,104,97,95,95,110,108,99,68,60,98,101,109,100,102,92,97,141,90,89,95,100,95,109,95,100,99,94,101,91,90,97,94,107,102,89,102,92,101,104,105,96,98,102,116,105,92,84,112,102,97,102,91,97,109,102,109,106,77,102,96,94,99,100,100,100,94,96,98,101,113,110,115,98,109,100,101,113,109,106,121,95,106,118,100,92,125,98,103,109,95,106,95,101,100,91,94,91,104,102,93,87,109,98,95,94,109,112,90,92,108,84,103,117,98,96,101,103,100,99,102,110,116,96,104,113,90,114,103,105,111,105,93,99,100,91,99,98,82,95,79,111,95,103,91,106,102,98,93,97,96,97,109,100,85,112,104,95,105,93,106,103,109,94,97,101,93,100,98,109,101,86,108,105,114,106,92,102,104,96,94,99,97,100,93,93,92,92,95,90,92,100,109,116,92,96,100,101,102,97,97,108,101,99,97,101,100,102,101,93,98,91,105,86,104,97,97,95,89,95,105,104,99,106,103,105,99,99,102,106,99,109,97,84,104,105,101,105,68,94,97,103,103,94,67,92,100,92,110,90,100,117,95,98,98,101,97,98,87,92,109,98,95,95,93,100,91,116,95,106,97,103,109,92,100,78,109,95,113,102,101,92,104,108,92,94,105,101,97,92,102,99,91,106,100,95,95,109,97,105,95,99,102,96,113,105,97,109,78,96,106,96,106,111,103,91,94,107,96,102,111,112,100,109,109,95,89,110,106,92,106,105,100,102,113,102,97,107,106,96,103,103,94,107,97,98,99,105,112,103,95,97,99,104,117,106,100,109,97,102,116,95,97,80,116,96,103,90,101,99,103,110,99,111,105,110,94,105,103,115,101,104,105,93,82,102,110,94,102,111,106,106,101,100,100,95,97,95,113,96,107,102,107,97,99,108,99,97,96,94,101,102,105,98,113,97,95,106,102,111,102,99,95,115,95,96,102,109,105,96,104,94,93,105,88,100,115,89,106,102,100,80,107,98,103,107,95,104,99,104,105,95,100,112,91,115,98,100,98,96,106,88,113,103,108,91,99,99,93,103,95,102,98,97,102,100,103,106,105,93,107,108,97,98,106,75,108,99,100,101,101,106,100,78,97,92,101,112,102,109,86,97,102,102,95,79,104,107,110,121,101,93,105,90,110,110,113,102,114,99,93,94,95,106,96,112,108,104,100,98,93,97,88,112,110,109,99,105,106,102,107,109,102,112,111,96,88,92,106,102,102,118,100,118,87,91,98,100,95,105,106,104,83,98,96,118,101,104,106,89,106,107,111,109,102,106,111,109,101,81,98,95,116,92,109,103,103,110,105,102,98,92,104,102,102,106,99,107,90,107,93,109,102,113,92,98,99,97,104,107,98,83,93,119,108,102,101,99,103,103,98,98,101,74,110,100,92,84,116,98,112,101,102,87,104,96,90,97,110,107,93,100,90,104,103,106,107,106,102,106,79,102,108,91,97,104,95,108,93,109,91,105,104,85,101,104,92,107,98,103,105,92,101,103,116,99,92,101,99,106,105,101,101,93,96,87,105,97,99,108,90,97,100,109,112,92,114,105,100,96,98,99,105,109,116,94,107,87,114,106,100,107,103,112,101,94,98,108,107,97,113,105,104,95,119,109,92,92,107,108,102,103,98,97,87,104,98,127,100,94,105,91,94,106,107,91,90,114,92,104,100,98,97,109,98,108,96,97,86,102,112,92,107,104,107,104,105,103,86,100,103,97,95,100,103,91,100,98,89,103,107,100,98,100,111,97,117,97,119,102,98,102,113,98,108,109,88,92,88,95,101,96,108,115,100,99,91,106,102,110,107,87,106,97,91,94,90,101,102,97,109,115,98,103,104,110,76,100,113,109,104,117,98,90,112,107,93,105,103,92,95,105,96,100,86,102,89,118,100,105,104,98,105,99,107,94,109,96,105,97,92,109,106,105,92,105,119,95,100,97,95,108,101,95,97,99,105,108,106,103,103,96,106,92,109,103,108,105,102,105,105,97,99,99,99,110,91,102,110,106,91,113,102,103,96,91,104,101,95,111,91,95,106,88,99,100,100,113,105,110,92,96,122,108,105,96,94,93,105,108,102,114,102,93,104,105,108,110,101,101,107,87,90,97,99,103,93,90,82,100,105,107,111,106,96,86,99,112,117,101,106,114,91,101,99,98,108,108,125,88,105,104,105,97,101,96,93,79,96,104,97,105,98,101,100,114,100,104,98,96,95,104,107,97,99,106,98,76,102,109,105,107,102,101,106,107,104,91,103,97,101,109,97,97,97,100,91,101,105,109,92,100,92,104,108,91,117,96,105,104,94,105,106,94,91,102,122,105,98,101,82,114,89,117,99,105,91,102,99,101,114,108,107,106,95,105,99,96,98,108,108,91,110,109,104,106,104,94,88,107,103,97,103,110,109,119,96,103,103,104,90,96,109,109,99,98,106,110,101,89,83,113,99,101,105,99,106,110,99,100,106,108,103,104,127,99,120,119,103,104,109,98,102,114,87,108,98,110,103,100,88,116,95,100,108,102,98,111,112,102,104,109,109,107,99,100,103,100,89,92,98,104,106,106,91,100,104,97,93,104,95,106,94,101,100,116,109,120,103,105,102,99,96,109,114,101,108,96,100,98,100,113,108,101,105,108,102,87,96,100,97,89,93,99,102,112,84,101,108,106,109,103,103,94,99,97,89,95,103,99,98,102,99,104,104,104,117,105,101,100,96,104,121,103,107,94,106,102,105,110,108,112,111,99,91,98,108,113,91,84,108,98,95,101,93,101,109,107,107,105,94,83,103,102,98,105,116,104,104,106,99,107,109,91,101,98,98,108,107,105,113,109,105,103,113,104,109,98,83,104,105,86,110,85,97,79,107,102,102,102,94,102,97,103,106,99,102,111,94,103,107,95,103,112,112,91,120,96,105,105,96,97,110,97,79,110,104,113,109,103,102,93,108,109,108,103,102,104,80,97,111,100,103,102,109,103,113,89,90,94,100,107,117,98,108,92,98,95,105,99,104,107,103,102,105,109,97,98,98,99,90,103,94,108,102,103,98,99,106,103,102,97,107,106,92,108,97,93,98,119,93,108,109,88,101,95,96,117,104,97,102,95,103,94,97,112,103,101,107,100,105,110,98,143,114,103,101,98,101,102,104,91,98,111,97,96,105,113,113,96,105,102,101,102,116,88,113,108,108,104,99,98,70,98,105,105,79,103,115,96,99,105,104,107,132,97,91,94,104,104,109,100,132,88,96,106,101,104,99,105,92,114,104,97,93,109,102,98,98,103,108,105,100,98,101,109,97,108,100,101,109,106,97,101,100,102,99,95,103,96,112,107,98,99,112,95,106,107,94,98,80,95,99,103,100,89,106,106,103,84,99,104,97,100,109,113,110,101,108,96,109,107,106,99,101,109,100,87,106,98,98,113,98,95,101,106,93,96,103,102,97,111,105,100,108,87,106,110,91,96,107,107,102,107,98,84,106,102,93,96,114,106,104,108,106,112,95,102,96,97,99,101,120,98,99,88,107,116,101,107,104,105,92,91,99,84,101,100,90,87,110,106,90,98,100,102,92,95,95,103,104,94,103,106,96,108,91,93,117,99,98,98,110,116,93,99,98,101,94,96,91,98,98,85,90,89,115,114,87,107,101,105,106,100,95,95,94,95,102,105,103,96,107,101,98,103,105,105,96,93,95,83,95,94,109,105,99,112,91,106,99,104,97,103,111,106,89,98,105,107,100,109,110,98,93,108,92,102,100,112,93,98,103,101,101,104,90,101,103,109,88,101,101,111,105,86,111,93,112,94,110,73,99,105,109,95,103,106,92,100,106,111,111,105,99,98,95,110,97,99,98,97,94,109,94,104,90,108,105,99,96,96,103,102,101,99,98,120,101,94,79,96,104,108,108,100,102,99,108,99,108,80,104,101,101,108,106,95,95,94,86,90,94,90,99,91,110,91,105,113,111,112,101,115,101,102,99,99,103,98,109,103,103,102,99,99,103,100,100,105,103,94,89,117,117,109,100,97,103,103,102,98,104,140,98,93,111,107,104,102,100,104,114,95,102,79,109,105,110,99,112,90,103,103,120,99,83,97,106,108,99,99,105,98,102,115,104,107,100,107,100,101,93,108,106,108,94,98,105,103,101,106,100,101,115,92,110,104,99,108,94,121,102,113,101,101,108,103,113,106,92,100,105,98,105,105,91,108,95,105,102,106,106,101,101,110,108,89,103,100,108,105,88,95,107,75,98,99,105,101,64,104,114,105,110,108,103,104,92,101,102,107,102,100,94,102,119,96,98,117,112,91,97,101,108,105,100,109,101,93,108,104,99,113,94,104,103,106,106,98,105,107,108,106,97,106,112,113,97,96,94,100,96,110,110,105,97,96,106,108,108,108,82,98,111,130,83,98,132,93,99,110,101,96,100,108,91,96,111,97,106,107,109,105,99,101,96,94,102,83,112,121,95,101,122,107,93,78,105,98,99,105,97,97,116,99,117,92,100,106,108,98,98,111,95,109,96,99,94,101,132,99,104,98,105,118,104,103,92,83,95,96,105,118,97,100,92,102,90,100,101,105,107,99,115,107,118,97,94,94,100,97,87,91,96,107,90,98,107,93,93,103,106,110,98,101,108,96,104,93,133,99,97,113,80,109,101,114,102,93,97,103,104,90,92,102,94,94,105,92,97,102,106,99,105,94,103,106,101,101,120,105,110,80,95,91,89,83,108,111,108,102,103,99,101,109,94,92,108,90,96,111,109,103,93,97,93,109,96,118,104,89,109,114,91,104,95,106,108,102,98,101,100,90,101,107,100,106,72,98,91,112,103,113,112,119,110,89,103,120,102,101,85,104,107,87,119,94,110, +690.09503,90,98,108,91,96,101,108,102,106,111,91,104,101,112,100,86,90,108,112,105,101,99,82,102,100,94,92,101,94,115,102,74,105,122,96,88,118,96,99,112,100,137,94,105,112,110,91,105,95,112,94,93,98,91,102,99,104,99,81,90,95,99,103,91,98,100,99,100,99,105,103,83,101,96,102,113,106,99,103,112,102,109,108,106,90,91,106,100,103,105,107,108,92,104,107,94,101,110,101,88,94,96,96,103,104,94,104,104,93,113,103,107,101,81,91,100,101,90,105,111,96,105,96,105,98,103,102,101,110,102,101,102,105,118,95,92,103,112,102,92,103,96,101,97,106,122,103,97,98,91,97,95,130,96,102,105,98,95,102,112,108,100,106,94,112,108,99,104,111,101,91,103,104,95,95,107,94,107,102,112,102,105,92,103,104,94,105,101,105,108,98,100,105,113,103,95,102,89,108,100,97,96,100,97,110,93,107,96,116,101,98,102,96,95,116,96,97,101,104,92,98,102,97,93,108,117,88,96,107,116,99,107,106,96,104,102,103,97,101,105,88,80,91,96,114,87,85,101,117,104,96,101,107,86,105,83,105,100,96,94,91,104,94,102,104,103,96,97,95,91,105,101,102,111,121,97,113,106,98,101,98,94,107,107,104,104,109,92,112,103,102,93,112,104,117,101,112,94,93,103,96,109,93,112,97,112,103,89,109,117,97,113,107,94,117,92,99,99,103,105,100,93,111,99,100,103,108,90,101,99,107,99,100,100,95,107,94,105,107,118,109,114,86,99,99,97,108,112,100,92,88,103,116,112,112,98,98,108,91,106,78,109,103,101,99,99,104,106,97,104,100,103,102,110,97,104,91,90,100,105,120,100,108,120,98,107,92,95,113,93,103,95,94,102,102,100,112,115,102,113,74,95,101,101,89,93,103,106,98,101,87,103,105,109,85,94,93,94,99,105,106,108,105,103,93,101,104,89,101,115,104,93,93,93,91,99,94,105,105,103,111,75,96,107,95,114,99,105,99,99,100,104,97,95,59,103,90,95,114,98,104,103,108,103,107,107,115,90,109,86,100,107,111,99,92,106,102,101,99,106,95,99,84,90,99,100,106,105,97,96,98,111,119,94,104,95,92,113,104,98,105,100,96,105,101,105,100,93,99,102,102,99,91,94,112,95,98,101,112,104,90,96,106,89,110,104,98,94,107,104,62,92,99,91,98,99,104,86,102,108,99,108,99,108,108,114,109,103,103,93,99,90,99,94,101,98,107,92,100,99,97,96,94,100,98,98,107,100,98,111,105,102,101,112,99,92,90,89,98,107,93,99,109,96,99,99,106,87,102,112,105,100,98,100,109,105,99,98,110,92,105,105,104,94,104,102,109,94,101,117,115,93,106,94,111,101,110,110,103,101,103,102,113,101,96,104,117,112,95,99,113,100,106,101,95,99,122,99,97,102,112,95,101,100,95,95,106,101,103,96,99,102,97,94,101,101,123,102,108,84,103,112,67,105,82,101,104,107,100,98,103,95,103,93,103,103,97,108,109,98,105,102,99,102,100,104,101,102,99,113,95,94,113,105,105,106,93,99,114,92,105,109,113,97,101,102,97,106,91,101,97,93,109,108,101,92,101,91,102,103,91,97,106,84,104,100,114,95,109,102,96,91,106,101,101,112,104,93,84,109,104,95,81,98,103,94,96,105,94,114,114,100,109,97,91,108,102,89,99,108,108,102,84,112,103,96,96,95,95,98,109,92,108,109,97,107,98,103,94,94,106,104,102,99,97,108,84,98,90,107,97,105,102,115,104,87,97,99,97,98,101,104,107,96,107,107,107,98,102,96,103,96,100,98,95,105,105,93,113,112,114,97,103,100,91,106,92,103,105,95,101,101,97,109,97,105,106,103,95,88,96,113,102,97,97,98,96,102,86,87,120,109,101,96,95,91,99,109,99,106,95,108,110,129,105,100,93,105,106,115,102,96,88,103,107,99,102,101,103,94,105,97,93,93,104,99,104,109,102,103,112,101,109,100,102,92,99,101,103,106,87,102,98,94,95,98,92,118,99,93,107,103,106,102,106,108,103,101,91,132,96,103,105,99,104,98,98,98,101,99,98,110,106,97,109,96,107,102,97,106,103,97,103,101,92,101,109,109,100,109,114,113,113,115,113,87,100,96,96,114,100,116,91,107,104,108,104,94,87,95,115,96,102,112,110,114,101,92,90,108,91,104,92,93,120,92,113,110,95,88,99,101,97,98,91,97,103,94,105,91,95,99,92,87,115,92,103,87,101,99,93,97,99,102,107,111,96,98,100,100,99,102,92,95,96,107,100,97,105,97,93,100,114,101,105,97,102,110,105,99,114,105,95,92,113,102,110,97,104,102,97,99,116,93,104,109,103,113,95,104,95,95,113,105,98,108,82,101,90,105,98,106,96,102,92,107,104,108,95,99,108,91,103,100,104,94,104,95,106,101,102,99,109,101,98,109,94,110,93,111,118,95,105,110,94,109,98,76,96,96,109,108,105,106,105,100,104,111,97,81,111,103,104,94,105,102,100,110,107,101,99,111,100,94,94,91,102,109,118,97,101,92,93,111,98,90,95,99,99,102,98,102,111,115,101,99,96,110,104,91,78,99,100,103,116,110,106,102,102,107,107,93,105,122,94,114,99,101,107,102,113,106,97,102,104,107,103,103,105,100,104,111,100,96,108,103,110,94,93,90,112,102,105,107,103,98,101,101,96,97,124,108,109,103,112,85,103,108,99,109,113,99,98,96,106,104,122,103,111,92,105,98,101,101,102,95,120,105,98,98,113,93,114,88,95,91,100,103,103,103,99,99,98,107,95,97,113,99,88,92,91,100,88,95,108,112,101,100,105,96,113,103,104,106,84,105,93,119,112,105,120,91,100,108,102,115,98,103,113,75,103,113,90,111,88,104,98,102,104,103,114,97,104,112,95,111,114,106,94,92,113,104,102,87,101,106,89,102,99,115,116,124,94,100,101,100,115,105,107,100,105,95,100,114,104,105,101,97,81,104,105,101,103,101,110,102,112,106,113,95,120,107,105,103,102,106,102,99,96,105,103,115,114,103,108,109,102,87,98,104,104,100,99,112,101,110,91,107,107,99,102,98,83,105,94,105,111,109,113,98,106,93,110,113,102,116,104,95,111,100,104,92,111,93,102,120,104,108,105,102,107,106,105,100,101,94,96,99,97,112,97,92,86,83,100,106,97,120,114,102,102,101,106,112,107,101,107,105,98,96,98,96,113,93,100,112,102,99,103,97,88,95,103,103,110,113,116,113,105,97,95,95,109,106,90,100,100,104,103,117,87,110,94,106,96,102,112,103,95,94,100,111,101,99,99,104,107,105,108,99,100,90,104,98,116,113,108,94,99,108,97,105,104,97,98,108,95,116,96,120,106,99,100,95,113,116,103,110,99,93,101,108,103,83,81,123,110,101,102,103,102,106,109,99,98,130,92,96,110,102,101,101,105,109,94,96,101,102,115,97,103,89,94,104,102,105,115,96,91,102,109,100,96,90,121,105,113,96,92,116,119,94,92,100,102,100,105,94,99,103,101,103,109,102,100,106,103,113,102,101,95,102,108,115,100,88,106,103,101,103,99,107,102,117,108,107,105,98,104,98,106,99,106,119,92,111,102,98,95,94,94,114,102,101,102,87,97,115,100,96,108,103,113,101,100,102,101,99,99,102,91,102,109,96,98,95,136,108,94,92,97,83,96,108,92,102,110,105,109,94,102,94,105,125,94,106,102,89,101,112,101,104,102,106,102,96,96,96,98,105,105,99,109,94,105,99,106,87,107,95,102,109,98,81,119,99,98,101,106,108,99,100,102,100,100,94,99,97,103,105,103,88,105,103,110,99,99,94,106,111,97,114,98,102,101,126,105,113,109,104,105,101,104,96,105,109,105,98,89,112,103,99,97,107,117,106,110,104,86,101,102,107,99,80,94,104,96,104,93,94,104,102,108,106,101,102,95,99,111,102,106,109,99,105,107,107,118,89,99,107,106,95,97,115,104,85,104,105,106,97,112,91,105,130,107,87,98,112,98,99,100,92,106,113,105,100,96,101,102,97,95,99,96,113,105,108,103,101,101,99,96,83,81,105,104,107,102,101,108,106,109,91,101,106,106,107,100,113,99,96,98,121,114,100,102,111,90,102,95,115,112,97,99,100,92,103,103,83,93,112,99,96,113,107,97,98,111,99,101,92,111,94,100,96,102,108,117,91,103,94,105,109,113,109,95,80,73,90,105,100,101,103,95,99,101,100,101,107,106,98,99,88,103,109,103,104,92,104,97,109,111,84,99,99,116,103,100,105,109,94,91,120,95,98,106,120,99,98,107,99,103,105,98,102,102,99,98,107,107,91,110,98,98,109,100,117,101,112,117,119,110,104,98,104,100,113,96,104,90,110,101,115,114,97,104,104,90,99,112,108,113,94,100,119,109,109,96,97,113,114,87,107,101,72,109,100,127,111,105,103,97,96,98,96,106,106,111,115,106,100,102,108,100,105,105,99,98,100,103,115,98,109,111,106,104,100,106,100,106,102,114,95,96,101,103,97,107,106,99,101,100,100,105,103,99,105,100,107,113,108,105,103,102,116,110,97,99,103,118,106,96,86,108,113,107,106,109,105,100,94,95,99,102,65,100,94,103,105,98,99,99,109,109,97,99,105,103,93,97,105,94,84,113,107,98,71,96,106,118,106,104,102,98,101,106,106,90,109,93,103,104,112,115,102,92,95,97,112,108,99,104,103,71,113,112,93,96,115,80,102,103,112,67,106,120,97,102,107,115,95,118,100,100,88,102,114,96,104,116,106,89,108,117,107,106,113,70,103,109,93,104,110,106,97,100,97,95,115,98,77, +690.23639,97,101,92,93,92,100,87,98,97,101,100,87,98,95,99,107,107,97,112,110,108,100,106,99,95,89,102,92,92,103,90,105,105,107,109,94,102,107,98,111,98,106,101,108,85,107,106,98,91,105,120,102,94,100,104,88,106,96,102,90,113,103,92,121,94,113,97,117,93,113,113,100,102,104,100,104,98,83,100,94,107,108,106,106,102,100,103,100,103,97,95,101,103,113,103,93,97,91,101,90,100,99,90,99,106,105,106,114,108,92,92,96,104,94,106,106,93,120,103,106,93,109,105,103,96,95,103,95,115,104,92,109,100,105,104,110,102,95,102,117,109,109,100,104,91,103,104,108,100,111,99,99,109,124,101,109,83,100,96,107,107,117,96,95,102,89,122,100,111,101,100,121,94,94,91,95,96,95,96,102,108,113,99,103,106,99,103,94,109,106,106,100,112,111,99,98,101,113,99,93,96,103,96,106,92,109,86,91,102,99,99,107,102,103,114,91,104,99,98,105,102,93,92,95,82,98,116,98,88,108,102,102,100,90,114,100,112,103,93,110,108,106,102,102,91,95,100,98,105,103,106,111,98,106,95,110,101,102,93,111,88,98,82,99,94,105,95,99,96,101,91,106,113,105,102,96,112,90,100,106,103,101,83,101,80,87,103,101,96,102,97,100,100,117,107,94,97,105,99,96,104,97,96,105,98,107,102,119,95,118,91,102,100,109,101,100,95,110,92,91,105,94,111,96,106,102,104,101,113,104,97,96,95,105,105,98,101,96,102,91,100,107,107,93,95,102,117,102,101,101,96,111,106,83,103,106,102,105,97,106,107,97,108,100,99,100,100,92,101,115,107,99,115,96,102,101,102,101,94,116,104,101,101,121,99,93,111,106,94,105,107,104,88,104,92,82,101,95,98,100,110,111,85,103,96,107,94,100,116,94,95,94,104,110,104,122,95,101,100,110,97,96,106,97,104,112,106,98,111,110,90,107,102,100,102,97,98,101,108,97,104,86,100,101,94,104,99,96,110,119,96,97,97,84,90,93,77,94,96,84,96,104,110,105,96,97,92,91,96,105,121,103,89,88,103,90,101,109,94,98,90,108,98,104,101,90,133,99,87,95,99,104,103,102,93,105,101,83,108,96,100,100,93,74,109,99,96,116,112,95,104,104,104,102,95,104,99,100,103,88,96,99,97,112,96,91,116,97,91,115,104,101,99,97,100,101,105,112,95,111,94,97,95,102,91,94,103,103,94,91,94,113,94,95,96,119,101,100,113,89,102,95,98,103,107,101,103,99,101,87,101,94,97,112,103,102,95,102,98,100,109,101,103,94,105,95,103,109,90,97,100,106,97,94,116,103,108,102,111,85,106,122,102,97,94,109,104,103,110,102,104,101,97,99,89,97,102,103,110,92,95,98,93,111,103,114,97,103,100,101,98,95,93,120,71,110,105,84,115,114,107,99,104,111,110,97,94,92,102,101,97,90,100,104,93,98,99,109,90,94,116,100,91,98,108,107,99,91,98,97,102,95,115,106,105,103,96,95,106,105,107,105,100,106,84,106,87,94,86,95,102,102,108,94,111,95,99,105,102,87,96,100,98,96,103,106,101,105,109,97,107,101,97,96,97,101,96,99,83,100,109,109,109,111,99,97,100,101,103,117,92,97,97,103,100,97,98,84,105,99,96,90,99,109,103,111,103,97,104,104,88,127,106,118,100,109,106,103,90,102,123,100,98,117,108,97,100,109,110,98,117,91,109,97,101,98,101,101,120,96,105,107,112,107,98,94,98,80,117,102,99,113,107,122,93,106,110,101,113,99,105,96,107,105,109,96,95,97,110,119,100,76,118,95,106,107,101,113,108,108,101,103,98,81,102,104,110,91,101,105,105,92,101,92,101,99,99,97,102,96,103,102,105,112,98,104,103,100,102,94,110,100,96,109,94,107,104,105,95,108,101,103,93,106,100,75,87,95,110,106,96,105,110,96,98,91,98,92,91,96,104,104,111,96,94,101,103,109,109,109,108,93,99,102,109,98,90,101,98,112,105,133,103,103,95,106,101,97,95,101,97,117,107,105,105,91,100,107,101,96,110,93,111,108,104,109,96,110,112,96,100,108,106,104,88,108,101,105,106,105,106,93,97,108,110,103,98,106,100,112,91,98,101,109,113,116,108,98,98,109,110,104,103,101,105,96,100,101,102,101,95,117,109,96,92,109,106,93,95,113,98,106,90,96,96,104,107,99,100,96,106,98,95,108,97,91,98,117,109,103,93,100,105,100,94,101,105,97,89,105,106,107,86,101,104,104,106,99,95,100,134,88,102,105,97,102,102,98,102,99,94,103,104,102,98,88,93,106,109,101,97,110,103,112,97,101,95,103,94,68,104,101,103,95,110,98,105,119,112,100,101,111,104,105,91,119,96,106,91,97,103,90,104,115,105,110,97,106,102,95,122,119,105,87,106,95,90,82,104,102,99,105,103,71,98,115,96,105,110,105,96,98,102,100,96,112,100,117,113,98,101,122,125,97,101,98,93,106,103,100,102,93,83,108,89,107,109,99,107,117,94,119,100,83,103,91,87,98,85,101,102,98,79,106,101,100,115,90,111,98,108,102,91,116,108,102,97,105,89,108,104,91,103,104,102,123,111,85,84,106,104,96,97,92,94,101,107,92,105,95,107,98,104,107,109,94,101,93,107,104,107,112,103,96,92,103,115,104,94,117,92,100,109,84,102,100,106,107,87,89,112,108,102,105,99,100,110,100,93,97,96,109,98,97,100,96,108,101,101,113,90,104,96,104,91,91,97,105,102,99,98,94,104,98,86,103,115,110,105,90,106,112,107,99,97,106,102,102,99,112,95,104,96,100,113,98,110,111,97,114,107,96,100,109,103,95,104,99,99,101,95,109,98,90,109,101,104,109,100,101,103,102,95,97,104,113,109,100,102,99,101,114,108,99,92,83,98,115,104,91,110,111,103,90,98,106,108,108,104,95,107,97,104,103,112,109,93,100,103,91,106,104,106,106,123,122,100,114,104,92,103,110,105,92,92,89,80,101,107,97,110,114,104,90,87,95,97,98,104,101,107,115,114,100,113,90,105,95,97,106,98,79,88,118,107,101,83,103,93,107,103,91,85,100,105,105,110,108,113,96,88,99,101,107,97,98,104,109,109,91,104,103,96,99,109,112,97,100,106,110,99,104,110,95,109,108,100,102,105,106,100,95,104,112,98,105,106,107,105,86,107,94,110,98,103,103,98,100,104,91,102,99,102,102,105,101,106,111,95,94,102,96,91,102,106,94,111,95,107,109,101,88,100,106,105,103,95,95,98,100,97,105,103,107,88,103,112,96,114,92,99,99,97,108,96,98,95,116,96,83,90,95,97,112,82,111,104,98,104,102,103,100,105,103,98,103,105,94,92,111,113,100,93,98,101,89,108,105,89,97,110,103,103,121,109,108,98,101,98,114,98,101,94,98,120,100,106,108,101,101,96,115,89,91,113,99,95,96,100,88,103,117,100,104,103,88,107,99,104,100,95,105,93,106,106,103,84,95,109,109,114,95,111,108,91,100,107,99,105,92,100,105,109,65,92,101,100,100,97,98,103,110,110,109,117,110,104,102,95,99,94,98,115,93,100,97,106,104,110,108,99,102,101,103,95,103,101,100,99,101,124,111,105,94,102,99,106,71,117,102,92,127,97,98,81,96,99,112,98,116,93,94,107,100,111,102,102,103,108,93,99,99,96,84,106,95,96,101,122,104,95,87,106,97,98,99,106,104,94,106,108,105,87,113,111,110,95,91,112,95,115,101,104,103,99,117,87,102,105,75,66,107,101,100,102,91,106,98,92,99,107,116,113,97,102,100,104,94,95,79,100,96,99,101,107,97,107,91,88,106,95,108,97,106,105,105,106,97,101,103,104,101,113,104,99,102,101,94,101,119,106,101,105,128,94,100,103,115,98,88,81,68,99,99,98,99,103,100,94,99,103,100,98,100,99,99,104,99,105,103,117,101,108,100,110,109,108,91,111,101,101,101,107,103,100,113,88,106,93,95,103,97,96,108,105,88,97,106,93,91,106,76,96,119,94,110,95,112,103,113,96,94,104,102,108,100,115,97,100,94,119,102,94,102,97,110,98,102,106,96,104,92,98,93,112,91,109,99,114,101,110,109,113,103,95,108,91,96,105,91,97,110,91,98,117,94,105,101,105,105,119,111,108,93,87,101,93,96,103,99,99,87,97,105,100,105,105,93,108,104,101,102,97,98,107,103,107,91,104,104,85,128,106,86,110,99,87,114,96,87,112,98,97,92,98,99,91,105,109,101,98,102,104,101,107,102,91,94,98,103,104,106,105,113,101,91,102,109,113,87,103,102,108,110,91,104,107,114,100,105,95,94,108,103,102,111,83,103,100,108,113,104,90,102,102,106,99,82,99,100,109,106,94,112,116,95,82,99,101,100,107,108,92,105,112,96,100,98,109,104,92,100,85,117,93,106,99,103,93,108,92,104,95,94,98,97,107,104,107,97,106,98,95,112,76,102,104,106,105,111,100,102,105,92,92,113,109,111,98,102,102,95,108,106,105,102,103,96,106,93,103,90,105,105,105,116,107,101,94,119,100,100,99,102,91,77,114,96,92,109,84,106,102,89,105,94,100,102,103,104,104,106,97,107,108,86,113,109,116,96,91,114,106,116,105,91,100,98,105,103,83,92,108,103,98,85,93,111,87,109,117,110,108,102,93,106,91,94,101,98,96,115,104,106,108,99,118,96,99,101,80,90,92,100,105,106,95,94,106,85,99,95,98,112,104,104,97,105,101,101,103,105,113,88,91,134,96,96,105,92,111,105,101,94,105,97,91,112,134,102,98,80,100,105,93,95,99,104,101,104, +690.37769,104,93,94,93,75,116,83,105,95,94,109,98,102,97,108,106,105,103,99,96,98,102,95,117,95,95,108,83,97,96,98,99,92,86,113,100,87,101,92,97,83,115,103,93,91,96,113,108,101,101,101,105,89,75,104,102,96,94,97,93,84,91,105,98,98,117,103,97,105,87,80,93,94,105,85,109,98,98,95,90,92,93,100,111,102,97,106,98,101,79,102,96,96,93,95,97,94,99,96,104,95,87,101,99,108,98,102,115,94,118,100,88,100,103,95,112,101,106,100,91,104,95,103,105,101,96,113,100,106,98,99,94,91,90,95,109,96,90,98,103,107,112,80,91,93,99,97,96,82,100,103,102,108,97,98,102,97,95,106,95,102,114,95,103,110,98,84,103,99,95,108,106,104,100,91,104,103,98,98,106,99,104,107,107,80,108,92,96,99,106,103,106,106,90,94,97,101,104,100,98,98,91,97,100,92,113,90,94,99,109,95,111,96,101,105,104,100,105,97,100,114,105,89,105,96,110,105,113,95,94,104,105,100,86,111,97,101,99,96,100,92,89,122,104,100,90,89,100,104,108,101,95,93,119,96,108,103,104,92,98,77,96,97,99,102,115,102,91,98,94,115,96,91,104,93,94,94,105,102,109,108,97,97,99,99,107,93,94,110,102,97,109,104,98,106,99,103,109,103,91,90,95,100,102,92,106,94,92,97,99,82,91,95,93,92,105,93,100,105,87,90,102,102,101,92,94,99,92,97,112,98,98,106,98,91,108,105,101,96,102,103,104,95,90,104,104,98,95,102,108,95,95,91,96,104,88,98,103,99,103,93,98,100,93,94,97,87,99,97,104,100,93,101,96,105,90,98,92,107,109,106,98,88,108,107,96,117,84,105,101,101,92,95,104,94,88,88,97,91,105,105,114,110,98,108,109,102,99,98,97,89,94,101,99,103,97,102,102,103,97,102,100,86,109,105,91,97,102,98,110,111,97,99,99,86,115,95,94,75,101,102,100,92,102,89,90,106,97,99,103,103,96,81,94,97,98,112,101,102,103,102,90,115,109,97,99,105,109,105,87,101,101,107,96,86,97,106,106,110,99,105,101,103,93,98,123,98,102,106,111,100,97,98,103,93,91,109,99,94,109,97,87,94,88,93,93,96,101,99,101,100,89,96,95,101,116,98,99,108,95,107,95,108,97,96,101,117,105,119,106,105,105,99,94,98,97,101,93,90,105,112,101,105,95,112,103,92,101,113,100,100,104,109,97,97,95,94,91,92,93,98,100,95,109,96,99,108,102,98,92,91,98,104,106,113,104,116,93,105,103,106,97,100,96,95,99,113,92,90,105,100,102,96,96,98,113,95,100,109,88,94,108,112,100,96,74,105,80,97,96,91,94,94,113,98,99,113,91,95,106,94,107,98,106,100,107,101,98,94,91,101,97,85,103,97,105,97,103,104,109,107,113,102,101,92,82,99,97,107,103,93,99,102,98,102,100,98,104,106,105,114,103,83,106,89,100,92,110,111,90,108,119,104,93,97,103,97,103,93,87,106,90,101,100,90,95,97,89,99,99,102,111,93,107,102,110,104,96,99,89,86,91,86,95,97,90,100,98,98,90,98,101,89,109,105,107,94,109,101,107,94,94,90,104,88,104,103,88,94,107,112,114,101,118,95,98,113,98,103,93,96,98,107,90,98,118,111,91,85,105,106,95,106,98,99,104,92,96,95,99,96,87,98,100,102,108,95,87,105,94,106,100,102,111,92,116,104,102,89,104,99,100,97,108,89,109,95,97,97,95,99,97,100,96,96,100,109,109,91,107,110,118,113,81,101,89,115,93,104,101,113,91,103,104,115,91,104,101,111,89,98,98,94,92,98,99,98,87,103,108,95,99,105,95,105,109,104,104,96,90,114,104,95,121,91,102,117,103,107,91,104,104,102,102,98,104,89,107,102,86,99,106,96,107,103,100,91,97,94,95,87,106,101,96,112,88,111,97,101,102,99,112,105,90,109,99,98,105,99,85,112,110,85,100,108,66,92,115,91,99,102,101,95,117,108,84,93,104,106,94,93,95,98,105,99,101,108,96,104,104,111,101,104,100,106,104,98,95,105,99,100,91,110,95,83,113,89,101,97,98,105,102,97,101,95,107,113,99,98,107,84,99,100,109,106,91,100,95,101,116,109,103,97,98,101,103,95,100,96,99,93,104,101,106,105,109,104,95,102,103,90,88,100,102,100,105,97,112,95,96,96,101,93,101,62,89,87,100,86,105,106,106,108,96,104,105,103,107,94,105,98,93,98,112,99,109,95,100,97,111,106,112,104,87,104,94,96,88,107,94,95,107,91,100,111,103,90,78,96,97,109,100,106,99,95,90,87,104,105,87,99,112,109,91,93,110,97,107,102,104,79,92,105,96,91,101,95,111,95,86,100,96,104,96,99,94,92,101,88,92,92,104,94,92,101,114,102,99,107,100,91,105,97,93,104,98,112,74,114,102,96,105,105,124,98,118,98,133,95,96,106,100,103,87,116,105,104,98,96,103,94,99,98,112,100,103,111,100,98,106,92,92,111,95,102,98,102,102,94,110,100,102,93,104,111,88,110,98,108,96,108,106,111,107,102,128,95,93,95,109,105,98,105,88,109,106,111,107,104,92,106,99,101,102,98,109,99,101,100,101,95,106,95,100,95,109,122,99,93,109,101,91,110,117,90,110,92,89,105,101,100,109,98,107,102,98,107,105,100,106,100,124,109,120,105,101,89,99,114,86,99,112,87,92,91,100,96,102,89,104,94,105,93,99,104,101,95,115,104,99,91,95,107,91,98,88,110,106,101,109,96,117,109,90,109,94,89,102,105,114,99,99,99,110,110,94,96,112,80,100,110,102,95,100,102,95,95,100,90,108,98,95,94,78,107,94,103,93,112,104,107,109,95,99,102,104,91,100,113,118,107,108,102,115,101,105,108,112,119,108,106,100,105,82,125,105,102,93,109,99,107,101,101,113,120,103,101,96,113,106,104,99,97,110,102,107,99,79,103,104,103,97,102,108,104,93,88,95,113,91,88,113,98,92,97,105,108,102,110,99,107,95,117,101,95,97,97,110,108,103,94,95,109,106,105,101,97,110,95,103,95,99,104,95,110,93,102,96,95,104,102,102,95,117,113,105,113,94,106,113,105,100,93,107,98,101,105,100,108,94,106,96,108,107,98,117,94,106,93,102,103,104,105,98,96,98,94,97,112,108,89,102,94,127,111,100,96,113,107,95,109,99,107,96,105,93,110,95,92,107,107,103,120,113,100,102,103,97,106,104,94,101,104,117,89,96,93,102,96,95,102,109,99,104,105,98,105,98,104,105,92,111,91,84,100,95,93,103,99,110,104,108,83,119,94,101,103,109,103,108,90,107,98,105,92,98,105,105,109,94,97,107,104,106,97,99,100,100,97,96,105,101,104,107,107,101,101,108,98,110,100,108,85,87,100,109,90,99,116,99,116,106,100,100,103,103,117,96,101,104,119,102,108,110,94,105,100,119,97,112,103,106,106,106,111,99,88,103,113,116,101,99,98,94,101,108,98,107,98,101,108,104,94,108,83,112,99,94,103,111,102,101,99,98,103,84,92,68,107,101,117,109,109,88,100,94,95,104,108,101,105,105,108,117,110,94,104,100,110,92,96,109,100,108,102,102,108,92,104,114,102,108,95,108,103,103,115,99,98,100,93,90,110,100,93,94,104,107,105,105,95,101,105,94,108,121,116,102,105,92,101,89,103,106,106,107,86,111,98,98,98,99,105,104,101,98,107,99,94,96,103,97,105,104,100,107,99,111,113,97,92,111,95,106,96,99,103,101,113,101,102,107,108,110,100,112,97,96,77,109,102,93,105,93,107,102,107,106,111,91,96,99,108,98,106,100,120,99,96,113,92,104,103,105,80,107,103,92,104,108,100,103,103,104,94,90,106,99,102,116,106,96,107,107,110,100,96,106,106,115,104,105,94,105,104,102,101,111,95,102,107,98,96,101,104,99,103,93,106,114,99,98,100,113,103,107,112,116,103,111,99,93,108,103,106,95,104,102,104,97,117,100,109,97,103,80,115,102,96,105,109,103,92,99,101,107,110,104,106,95,99,103,94,113,102,111,97,104,109,106,113,108,83,99,97,100,88,95,82,102,102,91,118,109,96,111,110,116,105,105,103,98,99,104,96,105,93,101,98,102,91,97,106,102,96,106,115,106,95,100,92,112,87,91,103,99,101,95,82,91,100,102,114,85,102,98,106,96,93,105,97,92,96,98,104,104,107,99,103,103,98,72,101,94,106,113,96,97,90,106,77,98,113,99,103,88,111,93,106,103,95,107,109,110,107,92,103,115,94,104,89,98,93,101,105,112,105,103,92,112,103,99,107,103,97,91,106,106,97,96,108,104,104,102,103,101,99,110,97,100,109,100,104,112,109,94,105,106,104,96,109,87,99,100,110,113,106,83,103,91,93,90,102,116,104,98,106,111,99,127,85,96,100,103,100,108,98,102,92,104,97,102,102,107,96,102,97,94,101,90,109,107,111,95,100,109,85,102,100,98,98,92,119,95,107,98,104,95,80,95,88,108,109,112,102,109,88,97,113,101,100,96,105,98,109,93,105,109,103,97,108,125,113,95,108,99,100,92,108,94,98,93,97,97,103,95,84,84,101,92,104,112,104,104,108,88,92,109,112,106,93,106,87,113,99,101,99,106,108,105,125,102,99,107,118,86,96,104,103,97,95,97,113,101,99,107,103,101,98,97,103,101,93,105,100,97,96,112,87,126,106,95,90,102,105,109,98,105,91,103,96,99,98,94,98,99,95,95,108,97,109,94,120,99,104,98,113,105,99,94,101,110,97,105,106,115,102,101,114,90, +690.51898,106,104,111,95,98,93,108,95,124,111,98,91,98,88,93,92,92,119,106,110,97,109,102,92,109,100,98,105,98,104,98,88,116,99,79,102,95,68,94,104,93,106,100,94,100,111,101,103,96,99,106,99,111,90,103,98,102,101,99,97,108,93,86,90,98,100,79,91,107,100,113,98,102,102,90,114,86,108,107,98,99,106,78,87,102,90,99,103,81,92,100,96,95,105,109,111,97,93,92,106,98,92,91,97,102,103,90,95,93,97,91,102,97,107,65,102,99,95,100,102,85,92,84,100,118,116,105,99,99,101,101,100,98,104,110,107,110,95,95,103,103,96,105,114,107,100,106,94,95,99,100,100,104,99,89,112,99,94,97,105,92,92,110,100,98,97,102,94,96,107,102,109,102,94,81,103,78,99,109,110,102,96,105,101,110,111,108,102,93,98,99,105,91,96,99,99,108,101,103,104,99,96,94,82,109,101,98,95,103,108,89,96,98,96,99,95,103,100,101,85,90,83,98,80,110,122,86,103,93,89,90,95,103,102,93,102,94,104,105,98,101,97,98,94,88,99,90,106,105,95,87,93,79,103,104,106,104,94,89,100,98,93,85,101,90,116,99,101,101,108,100,102,87,97,99,93,89,109,103,109,87,91,96,96,118,95,88,84,102,106,99,110,105,100,107,103,108,97,101,90,101,99,110,105,98,119,102,97,101,87,96,117,106,104,97,94,101,98,106,93,132,98,101,101,102,94,94,88,101,106,93,103,116,100,83,99,103,102,102,95,102,100,92,80,104,102,92,91,104,109,98,100,103,99,95,106,98,99,112,99,93,108,99,102,99,98,106,74,96,101,99,104,104,113,89,97,114,92,98,91,119,100,89,104,100,97,92,110,97,96,101,97,86,101,109,86,92,101,109,91,90,99,104,109,91,104,106,98,106,91,81,98,98,101,106,101,95,88,98,105,109,115,90,84,106,102,105,94,97,110,110,105,97,90,102,92,79,97,98,95,103,106,91,99,99,101,103,94,101,100,90,72,92,109,83,100,103,82,113,101,99,105,94,104,94,103,106,100,102,104,103,121,104,105,88,105,104,115,98,99,103,110,79,98,101,81,103,104,84,120,107,102,107,109,92,103,96,100,107,94,106,107,95,102,111,96,94,99,102,96,109,106,97,105,100,93,99,98,100,86,98,97,104,98,101,101,106,103,99,108,98,96,97,104,109,101,107,114,89,104,98,103,97,103,112,90,104,96,103,108,102,103,105,101,98,84,101,95,92,99,102,96,82,85,96,104,95,108,93,103,104,98,96,91,92,110,115,103,99,102,100,96,107,98,96,89,104,97,90,81,97,98,105,106,103,100,90,110,105,99,94,90,94,92,102,93,82,80,93,106,102,104,101,101,97,83,105,93,91,103,104,97,87,89,108,95,87,107,105,100,95,95,97,106,92,97,88,102,88,95,100,93,87,109,94,97,89,98,97,101,91,95,109,95,100,110,96,100,94,95,107,98,112,106,102,112,100,87,103,96,110,109,96,94,95,109,94,104,103,99,99,97,106,98,97,113,101,101,111,104,110,99,106,95,88,99,95,112,106,92,99,87,95,102,101,98,113,101,92,93,107,96,100,102,87,96,97,96,100,94,96,96,88,93,100,105,98,100,95,100,83,99,96,96,94,101,99,95,108,97,101,90,101,92,108,91,105,83,94,95,105,97,98,94,102,92,90,95,103,87,100,98,98,105,99,101,102,87,107,82,108,95,112,100,105,95,92,92,99,91,95,101,78,96,101,111,70,102,104,95,101,104,108,98,97,94,93,99,100,108,97,87,80,107,116,90,93,99,94,101,103,106,93,92,125,100,109,103,102,94,100,95,106,104,94,102,130,96,100,92,92,98,111,110,91,111,84,96,94,101,104,90,108,102,109,99,100,102,93,95,94,103,93,96,102,108,98,108,99,101,95,107,96,113,106,92,93,125,102,111,106,104,103,105,102,92,106,106,91,101,102,106,88,109,107,108,100,107,99,109,91,103,109,94,100,94,118,96,105,114,99,100,100,96,95,105,96,101,119,100,91,108,108,100,100,93,83,107,93,95,101,72,100,119,113,101,95,102,98,74,110,97,106,106,93,114,100,92,99,97,106,92,96,94,97,101,95,109,99,99,112,103,109,100,101,94,95,103,99,109,108,101,97,90,96,102,114,97,110,103,104,104,101,102,106,116,102,111,103,92,106,109,98,111,105,66,96,112,82,99,78,93,103,94,97,97,86,96,96,96,100,95,92,71,107,96,96,91,88,91,90,96,102,97,106,102,99,103,112,102,102,103,98,83,99,110,110,114,107,108,111,97,109,82,107,83,92,110,105,108,100,98,97,102,103,96,100,100,109,94,94,112,111,89,101,98,88,93,97,99,103,92,106,80,96,92,102,95,96,96,96,102,113,96,104,110,108,99,94,107,97,102,101,98,101,118,106,94,91,95,104,86,100,116,99,93,98,89,99,100,97,101,105,102,94,111,95,93,93,97,96,105,105,95,108,94,100,102,101,98,109,99,98,103,100,96,102,96,117,102,102,102,98,103,98,103,91,98,100,100,98,113,91,109,101,114,102,101,101,87,102,92,107,91,95,103,116,112,96,106,106,96,96,103,105,101,93,103,101,103,106,101,104,109,98,97,90,117,105,96,116,109,91,104,100,110,104,93,109,103,100,108,123,98,101,105,104,111,99,117,101,98,105,101,86,101,105,96,94,130,99,98,102,88,104,118,99,113,104,99,108,97,95,103,98,101,107,104,116,89,113,91,102,110,122,102,112,105,99,101,103,99,98,94,90,96,117,106,98,101,103,107,108,92,114,94,99,107,104,96,96,95,98,110,106,105,90,101,87,87,113,101,124,108,113,100,102,103,111,103,92,116,87,97,109,101,98,101,109,103,108,103,103,99,106,96,112,84,106,107,122,99,107,107,89,99,98,97,99,98,107,101,115,90,108,102,95,106,102,104,108,103,94,104,110,100,118,94,100,89,94,102,92,91,98,100,102,110,94,86,100,98,104,101,98,99,81,88,116,100,94,87,91,90,98,103,96,87,98,100,93,105,127,94,110,108,105,95,92,106,90,101,97,96,108,85,117,101,100,105,105,100,103,106,92,96,92,98,101,101,109,114,100,89,103,102,94,101,109,89,117,104,97,101,104,102,107,91,118,102,104,94,102,103,94,99,105,106,98,106,98,95,111,103,102,107,137,104,100,100,101,101,111,98,108,101,105,118,95,96,101,100,99,90,97,112,99,98,99,105,113,101,100,102,98,106,108,95,98,93,108,110,101,113,115,94,103,104,109,106,96,104,103,100,105,104,103,94,104,113,88,100,96,110,102,95,102,93,95,91,98,97,99,111,109,105,98,98,102,98,113,99,108,89,105,92,108,105,94,101,101,94,95,102,100,98,103,107,95,103,100,104,104,98,109,106,116,104,98,100,98,100,110,117,92,110,103,90,112,100,113,98,95,110,105,111,97,113,94,97,108,102,105,113,97,88,105,99,98,99,99,100,111,103,105,105,101,96,105,104,102,95,116,94,91,90,101,99,100,94,101,97,92,102,71,104,102,102,99,101,96,96,96,109,98,86,91,107,101,101,125,105,112,99,101,111,100,101,103,106,97,120,99,107,107,101,103,103,97,93,104,108,108,106,106,95,121,113,109,95,90,107,104,98,103,101,110,95,104,92,95,102,101,93,102,101,107,92,98,97,97,100,93,100,107,103,97,108,96,98,61,100,95,112,94,108,107,113,98,105,95,97,92,102,93,94,100,95,94,96,117,93,98,105,103,101,102,94,96,109,95,101,111,106,102,111,99,94,102,101,101,95,97,107,106,90,98,98,107,106,93,94,96,104,116,93,104,107,105,103,96,106,89,88,74,97,111,99,81,88,99,96,108,90,96,98,109,110,112,86,113,100,116,96,102,105,108,102,98,93,99,106,100,111,87,96,97,109,94,111,96,90,98,102,111,99,88,84,100,96,94,103,83,98,98,96,99,95,101,104,95,100,97,101,98,101,102,110,112,115,104,93,98,103,96,101,93,94,100,91,106,95,101,98,87,111,108,110,97,105,109,108,91,99,98,98,105,100,101,91,102,97,106,98,95,92,75,99,103,94,106,101,97,85,103,107,116,115,88,116,107,98,100,105,107,95,95,101,94,103,103,102,114,98,102,105,101,107,96,108,105,105,96,103,95,101,99,99,104,91,95,87,95,92,114,100,93,96,102,109,101,106,99,98,97,111,89,107,98,118,103,90,102,92,106,112,107,102,87,107,91,102,104,105,103,100,100,77,97,103,106,98,98,119,92,109,106,99,99,101,98,110,104,105,104,92,116,90,101,91,100,102,106,102,103,113,112,88,114,100,92,97,91,105,94,94,95,97,102,91,102,106,112,90,94,95,84,101,105,113,90,102,79,95,91,92,90,97,92,99,93,95,112,101,107,86,80,94,105,113,93,94,87,116,99,113,104,108,107,99,97,90,108,117,94,111,109,118,101,95,95,94,95,91,89,91,92,98,100,89,94,111,109,91,97,120,107,105,87,102,97,88,95,96,113,113,100,94,98,107,100,108,93,81,112,103,100,111,121,102,103,99,101,105,103,109,92,109,120,112,93,117,102,83,96,93,87,90,101,83,125,94,92,111,98,96,105,96,103,110,87,96,98,104,105,103,91,101,89,93,87,100,102,112,99,98,99,93,91,100,110,99,99,101,103,87,95,106,100,106,105,102,110,106,88,100,100,102,96,99,104,89,74,91,105,96,69,83,107,110,135,91,90,107,107,107,106,96,96,93,111,105,105,89,96,94,105,113,96,90,116,116,99,87,92,111,107,99,83,99,101,96,91,97,111,100,111,121,89,110, +690.66028,107,104,95,96,102,103,102,95,99,102,99,93,108,94,106,113,105,112,108,100,104,91,89,101,125,96,112,109,99,106,92,94,101,101,100,108,99,105,101,100,105,87,85,94,105,94,100,92,96,96,102,86,114,98,78,96,97,101,98,109,108,96,91,94,101,110,110,109,100,105,105,124,96,104,97,117,102,108,110,110,92,104,103,117,102,97,109,91,91,101,123,103,97,96,101,105,106,100,106,107,103,99,99,105,113,102,97,96,93,91,108,105,106,104,100,104,108,101,102,100,97,99,96,97,102,106,112,85,108,100,94,98,95,108,120,109,92,118,95,108,97,94,90,109,113,119,104,98,93,105,101,95,119,92,102,110,120,86,99,104,101,111,108,107,98,113,99,105,103,103,102,111,100,104,108,102,121,100,96,104,103,114,103,100,105,98,91,97,102,107,116,101,108,98,101,74,99,104,92,108,82,92,97,108,101,87,101,104,110,90,95,107,95,93,106,99,74,103,97,100,102,114,105,110,103,100,96,108,97,99,93,94,99,109,65,97,102,112,105,106,93,95,94,106,91,98,98,95,106,103,103,105,105,106,115,105,92,108,98,104,101,103,94,105,101,99,118,104,99,111,117,102,104,95,112,92,115,109,87,103,99,107,104,103,106,113,97,105,99,89,106,97,106,91,107,106,114,102,105,109,91,101,98,115,83,114,105,98,104,103,95,91,98,92,96,99,102,95,103,95,118,97,86,90,99,108,89,96,103,91,99,96,90,91,105,109,108,109,103,99,110,109,95,100,105,113,106,113,103,76,96,107,107,104,104,107,103,106,102,103,94,99,98,100,109,103,97,94,90,100,105,90,96,119,91,100,116,100,100,103,112,103,99,109,94,107,102,105,98,99,109,98,112,107,102,116,105,103,83,101,92,99,113,103,88,95,101,101,130,102,97,110,111,87,106,74,91,109,104,106,108,102,105,95,103,97,106,102,102,100,87,102,111,117,110,98,91,97,114,101,101,103,103,105,97,100,94,99,111,100,97,104,97,98,113,101,101,118,104,104,104,88,108,102,108,108,99,102,104,112,95,103,97,105,108,103,99,110,114,103,107,98,114,100,100,94,102,105,88,102,104,108,101,105,96,102,90,106,106,102,105,94,96,105,108,102,98,98,109,107,104,113,114,107,112,100,89,98,101,103,104,100,118,109,102,103,96,96,109,107,104,109,109,102,95,99,110,101,103,110,109,100,107,104,103,106,83,91,102,102,117,106,111,97,101,106,101,93,73,100,92,100,90,108,108,104,90,99,100,102,94,103,97,105,104,104,110,99,94,95,110,90,107,102,99,104,99,110,105,86,102,102,92,101,103,94,105,105,108,89,105,110,115,105,100,97,94,102,100,137,102,102,107,104,112,103,112,97,93,106,102,91,110,83,101,109,115,113,100,94,93,122,106,96,99,109,95,88,92,101,92,114,105,87,104,106,110,98,103,106,107,110,117,108,103,113,95,103,99,107,115,102,95,103,87,103,121,90,114,107,106,105,105,118,113,103,79,108,99,100,88,106,106,95,92,113,97,105,96,94,100,103,96,104,107,104,119,104,106,101,111,102,102,100,96,102,104,100,102,91,98,107,99,95,106,101,97,99,116,106,112,96,108,103,96,91,96,104,97,115,112,101,90,84,96,83,107,95,109,96,98,107,94,98,109,112,105,105,104,106,96,100,93,101,101,98,90,95,95,111,99,98,101,104,95,110,99,97,101,101,88,104,104,106,97,108,113,99,109,101,105,87,112,104,98,96,109,106,113,88,98,104,104,116,114,109,105,101,109,109,101,104,100,108,109,96,107,97,100,92,102,105,98,99,110,105,93,98,109,104,99,92,109,104,107,104,109,102,102,106,101,98,109,94,93,97,110,105,95,88,109,98,100,125,95,100,108,107,102,107,98,107,95,118,105,108,91,101,114,104,101,96,98,97,121,101,92,108,98,88,109,102,107,104,103,110,120,89,105,88,107,98,119,111,73,103,99,106,100,91,95,78,110,106,105,107,99,108,102,101,104,99,110,102,109,104,100,104,103,101,85,105,103,125,91,104,89,108,136,107,104,104,104,104,99,115,99,100,94,104,102,114,121,111,103,102,101,98,106,98,99,105,110,83,107,100,93,93,108,101,101,105,105,119,111,118,104,97,103,102,114,104,106,114,75,103,106,95,101,100,91,89,95,99,95,108,90,96,108,103,96,108,111,100,92,92,96,102,91,90,98,109,106,95,104,96,92,104,95,103,98,100,107,101,105,99,95,111,100,109,92,86,101,105,99,99,110,128,90,91,97,103,98,88,97,107,102,97,107,107,100,98,122,108,102,101,81,101,108,102,95,99,90,105,105,108,79,111,126,99,99,102,86,105,118,118,102,99,111,100,97,113,103,111,112,81,91,113,101,88,105,92,88,104,104,104,96,106,101,99,87,95,96,96,98,99,69,101,85,113,103,107,110,102,100,83,102,93,104,123,112,102,97,99,102,101,90,102,100,105,106,116,110,107,111,104,81,111,113,112,104,79,101,110,95,96,106,106,113,101,98,113,99,101,105,106,101,98,100,96,105,99,113,85,87,108,103,99,120,91,95,96,95,93,91,109,106,93,91,105,104,98,100,90,112,106,113,88,106,112,112,96,104,98,104,102,118,102,96,64,101,101,100,100,108,103,111,96,97,98,108,97,101,96,100,99,105,120,94,113,114,97,112,92,105,110,109,107,106,108,102,115,106,113,98,112,94,98,102,112,107,103,90,121,99,91,101,107,101,100,98,96,93,100,112,103,95,109,89,120,97,91,100,89,98,105,108,112,101,97,107,98,94,102,103,100,112,106,96,99,105,89,103,104,106,101,99,101,94,97,118,106,95,102,112,99,100,87,105,112,101,110,100,104,109,109,94,102,92,99,99,106,106,102,104,106,106,104,101,94,107,107,102,105,98,89,93,112,89,106,99,111,98,93,104,103,99,105,108,112,106,100,104,95,94,109,84,100,96,88,98,98,111,110,101,103,101,110,97,107,69,100,105,89,109,94,98,102,97,98,95,72,99,103,97,94,103,112,104,100,111,102,101,101,104,102,108,99,104,108,95,101,112,96,98,99,93,102,104,96,96,99,106,96,112,89,114,108,100,116,102,94,98,101,90,95,94,105,101,110,112,102,103,106,99,120,108,105,105,100,104,96,94,107,98,94,100,97,97,113,97,100,107,104,96,98,111,92,115,95,98,108,106,108,106,99,91,100,111,118,80,94,108,99,98,92,99,102,104,84,99,100,119,96,98,103,115,101,106,92,100,98,106,102,97,104,92,98,98,94,96,112,94,103,120,94,112,104,124,114,98,107,111,105,100,111,103,96,101,113,110,113,93,108,95,101,104,81,81,109,93,108,107,100,88,102,88,104,111,119,105,107,102,101,91,100,109,99,109,103,104,104,106,102,95,113,99,104,104,104,95,103,98,82,102,109,101,102,103,106,113,108,100,105,94,104,98,102,97,104,106,102,99,102,93,109,103,109,100,102,109,109,106,92,120,106,100,99,96,100,110,90,106,100,98,100,105,91,104,104,86,96,97,92,109,106,92,92,112,104,102,98,100,111,101,92,109,108,106,89,91,101,101,101,91,111,104,109,100,94,95,99,102,96,106,98,103,101,105,97,105,95,97,97,97,111,108,103,97,96,109,105,82,100,100,94,110,89,84,102,100,99,97,87,104,88,107,98,92,97,97,99,93,94,98,102,107,123,87,106,104,107,98,87,108,99,99,102,102,107,99,97,93,108,100,102,92,109,93,101,104,103,104,96,101,96,106,95,102,96,91,109,112,98,100,101,103,81,127,95,98,108,103,90,117,94,109,91,136,96,106,103,105,105,96,103,105,116,101,101,101,109,106,111,98,105,114,93,99,102,99,109,108,109,96,106,94,104,98,91,94,93,96,111,105,98,105,93,101,105,98,98,100,105,92,92,101,102,101,91,107,99,92,104,97,97,100,97,121,103,106,102,102,99,107,111,118,77,104,99,107,112,105,104,108,108,106,104,88,98,113,113,95,91,87,104,96,94,108,102,101,112,86,122,94,101,95,100,100,99,101,105,105,97,93,109,107,109,103,104,101,96,96,106,94,94,104,103,97,92,99,96,104,96,107,97,93,95,104,102,121,101,104,103,112,94,88,100,99,94,96,105,91,98,108,96,132,98,99,111,106,100,115,101,101,106,104,102,95,87,81,103,100,110,94,111,94,103,109,101,99,105,114,113,94,101,102,112,92,105,130,99,100,109,105,106,111,92,96,107,105,110,110,94,94,115,104,102,106,110,106,96,100,97,93,100,99,91,98,106,102,120,112,111,96,121,96,102,98,92,100,112,103,95,98,95,92,100,97,100,105,86,95,117,100,103,106,111,99,93,106,99,95,90,101,110,88,93,96,117,103,113,111,104,113,89,93,100,99,101,109,94,94,103,110,98,109,107,104,106,92,94,85,113,106,105,108,115,97,101,100,98,100,102,104,100,108,108,99,104,102,85,92,71,105,98,100,91,106,105,100,117,100,90,99,95,97,100,100,135,92,88,101,103,100,95,97,98,109,103,82,102,101,76,96,93,108,95,115,103,82,106,94,99,102,102,112,94,99,107,90,95,107,103,93,95,104,115,105,100,110,88,100,93,133,111,98,108,98,113,109,96,93,105,98,115,101,81,95,102,105,102,93,97,96,101,108,101,104,99,75,107,108,100,87,94,93,93,92,99,105,110,108,94,111,83,94,99,102,108,99,96,109,104,94,98,103,103,88,101,135,96,87,102,104,104,93,116,91,113,102,107,117,107,93,106,75,110,90,86,106,96,103,113,103,99,96,112,109,98,90,100,67,91,108,99,116,91,108,97, +690.80157,92,110,101,97,99,115,94,111,101,101,102,106,95,100,103,94,77,129,99,106,101,102,102,93,107,108,101,106,104,102,101,103,114,95,113,103,94,101,96,110,103,99,102,117,95,100,104,99,90,118,115,89,97,102,109,102,99,104,112,90,95,111,133,96,95,100,96,115,116,96,77,113,98,104,93,114,92,106,90,111,105,95,103,109,98,93,106,99,104,86,100,104,107,100,108,109,121,106,93,118,101,75,91,90,98,100,102,111,94,98,107,106,119,95,93,112,121,99,98,105,110,104,105,106,91,114,116,100,102,112,112,110,110,112,106,96,96,107,99,114,103,107,102,95,100,94,107,99,108,102,92,106,112,92,102,112,103,94,108,99,118,92,107,95,99,110,100,103,105,99,108,108,113,96,94,94,100,105,108,107,95,110,103,104,98,99,102,94,95,84,111,114,99,102,113,106,109,78,105,91,100,108,104,94,92,102,107,113,101,101,105,100,110,107,114,104,98,109,107,103,101,99,103,102,104,108,99,99,90,113,94,89,120,109,100,99,108,104,107,109,92,106,122,94,99,94,91,101,113,109,95,98,97,101,101,118,106,105,93,101,86,102,103,100,82,107,116,95,101,106,90,95,105,99,108,113,94,119,102,104,114,115,99,118,89,124,101,96,99,111,115,108,103,115,93,102,112,130,116,103,104,92,108,112,96,115,104,101,116,98,105,97,110,100,106,104,90,112,105,106,101,108,103,108,91,105,101,96,111,110,88,100,114,108,103,115,117,100,103,100,110,99,96,99,100,102,112,107,110,115,109,105,107,105,101,101,103,103,99,89,113,100,100,106,100,110,103,112,110,98,100,92,103,108,90,91,109,98,99,114,111,101,111,102,103,102,109,96,102,95,105,116,94,111,99,110,101,111,113,107,90,102,108,119,95,101,104,93,105,105,110,97,95,106,98,115,102,96,103,107,107,92,93,131,104,99,103,94,99,110,100,109,109,91,100,108,105,106,105,120,115,101,116,102,103,105,87,106,94,99,92,104,100,86,104,101,91,84,113,107,106,101,113,115,109,105,106,102,97,97,101,103,110,101,104,105,107,105,95,96,104,102,129,96,99,98,120,100,105,105,110,95,100,111,106,104,107,97,110,100,101,107,104,104,97,115,92,115,112,103,120,87,107,98,107,96,104,111,105,84,102,103,101,100,107,106,105,101,111,106,94,101,97,109,107,98,124,96,102,101,100,97,95,106,105,104,123,96,110,96,106,112,99,104,94,82,103,102,100,104,91,102,91,107,117,105,100,118,104,124,111,84,99,106,104,103,111,103,113,109,98,106,105,99,105,98,96,100,94,100,90,112,83,106,115,114,94,110,103,93,105,106,108,101,99,100,97,110,108,98,110,102,115,95,104,113,106,96,97,113,102,106,112,99,111,121,96,95,116,102,99,105,97,97,98,99,103,97,93,109,98,112,113,112,97,93,78,94,102,107,118,96,102,107,105,104,95,104,106,104,104,120,93,106,103,100,102,90,102,110,103,103,102,80,75,119,104,116,111,101,104,104,97,95,93,95,103,99,103,100,102,100,96,118,109,109,103,103,112,89,99,100,115,100,99,120,103,98,89,107,100,90,88,100,91,100,109,107,95,111,108,95,119,111,96,89,101,104,102,118,100,94,103,105,109,100,117,100,113,102,96,103,101,101,108,101,91,113,103,99,110,111,102,99,105,94,98,100,91,108,117,97,99,103,85,101,100,108,99,108,110,93,107,99,121,108,105,102,99,99,94,107,111,88,92,111,98,106,99,96,104,109,105,117,105,102,98,99,92,102,118,104,112,106,108,97,100,105,103,95,83,96,95,99,108,107,103,104,107,118,99,100,104,86,106,108,95,96,95,109,108,109,100,96,104,107,115,97,110,109,87,73,114,98,100,103,92,106,87,98,106,104,104,122,100,122,100,101,108,92,108,97,108,113,108,117,92,116,100,111,100,74,86,97,111,104,109,93,98,96,92,101,97,100,104,101,104,98,104,99,109,122,98,112,109,102,105,98,110,107,105,98,125,84,93,96,86,118,109,108,110,128,107,102,104,114,101,105,99,101,105,109,105,106,108,114,101,98,106,106,109,109,102,87,102,100,95,115,104,97,105,97,99,96,102,103,101,94,99,106,112,109,102,108,98,109,106,98,96,101,101,107,106,88,107,96,108,82,102,113,105,108,103,91,99,109,90,97,92,94,105,105,103,111,117,101,96,111,104,85,104,106,92,98,95,94,89,106,98,110,100,104,101,83,114,109,104,97,95,99,99,96,92,102,96,107,101,109,104,98,103,114,108,113,103,102,94,100,98,89,114,101,104,106,105,97,100,100,99,96,92,110,108,94,108,107,110,102,96,111,107,102,109,103,100,106,107,107,105,99,98,104,107,105,103,96,114,100,100,99,100,93,97,92,97,93,94,108,97,100,100,105,122,104,102,98,103,96,107,88,110,93,108,100,92,92,103,99,107,114,102,108,100,107,103,77,104,82,97,109,92,97,104,106,107,89,99,79,83,90,117,115,107,107,109,95,117,114,107,95,98,99,101,75,110,103,112,98,109,84,93,103,87,107,87,88,98,98,101,95,104,89,111,104,109,106,104,108,96,109,106,94,105,93,109,103,95,98,104,108,95,95,108,98,106,107,100,100,103,93,99,91,100,101,97,101,113,98,105,93,85,104,96,101,90,98,118,109,104,98,107,99,111,98,83,99,99,95,107,101,108,93,93,105,95,113,93,98,87,104,111,109,87,97,101,100,108,92,104,94,101,85,105,110,101,92,93,97,111,110,93,96,115,102,98,97,107,95,100,100,98,105,106,105,91,102,88,111,95,117,106,100,94,102,101,98,96,108,96,110,109,74,98,109,110,99,91,118,96,102,95,100,105,105,92,93,101,94,108,88,103,95,109,100,103,94,90,108,104,116,95,104,109,98,89,101,100,121,97,108,100,96,102,99,107,96,102,108,106,88,104,108,105,100,102,96,105,105,93,101,116,106,99,106,106,99,123,96,93,125,104,109,101,98,99,95,106,101,123,102,92,94,100,105,97,101,97,100,92,100,94,101,91,98,114,88,105,102,106,110,99,100,107,101,94,102,108,99,92,98,113,96,102,101,111,95,79,98,109,100,103,103,104,96,109,93,76,98,104,92,109,106,90,102,109,102,94,91,102,108,98,101,100,98,106,109,101,95,100,107,101,105,103,91,91,104,104,103,102,123,113,88,108,115,95,98,82,96,104,102,105,100,102,94,95,91,97,91,86,96,99,99,100,103,98,100,98,105,97,108,94,105,107,104,103,102,103,77,105,82,96,98,105,99,100,97,98,105,95,109,102,102,105,110,98,102,100,101,102,103,90,100,101,99,107,92,105,101,100,101,96,103,96,98,105,92,113,108,89,109,99,100,93,105,107,97,102,109,110,101,103,102,107,92,95,99,92,99,102,102,107,109,94,98,93,111,98,110,104,100,94,99,102,110,94,103,108,100,102,94,113,95,88,114,87,109,104,104,99,106,114,92,109,100,99,91,95,100,108,99,100,93,101,109,101,108,111,114,99,83,91,99,98,99,103,98,85,109,97,90,88,107,99,112,96,99,95,113,104,104,81,89,108,101,88,107,102,91,103,98,107,101,99,99,106,93,61,106,104,96,106,95,88,98,96,102,80,95,104,104,117,108,112,116,98,101,102,92,107,101,104,94,90,94,106,117,94,89,95,95,97,100,99,109,110,100,100,111,92,107,103,98,98,96,105,105,100,110,104,97,102,101,94,103,99,92,109,105,97,98,99,97,108,98,100,112,98,109,112,102,117,97,89,100,98,91,95,108,100,88,104,103,104,111,103,94,105,95,98,85,91,88,98,96,99,97,95,83,76,97,112,93,106,113,100,112,112,102,103,105,103,98,96,98,96,88,95,96,93,100,97,94,94,112,94,94,95,98,99,96,98,99,90,93,95,97,98,101,103,102,105,107,98,107,100,105,94,114,99,96,97,108,104,105,101,105,98,95,97,102,120,96,100,103,105,101,109,83,78,107,100,95,92,83,64,102,104,105,91,104,105,101,91,99,105,105,110,87,99,101,96,94,102,94,97,109,98,94,107,98,109,94,104,90,98,98,101,92,102,96,115,86,99,94,101,99,107,101,102,108,100,99,105,94,101,94,97,112,94,104,110,99,96,95,111,99,100,103,98,115,108,96,115,95,95,109,92,108,104,91,113,92,93,95,90,89,90,111,98,105,113,95,103,96,96,105,84,93,95,100,97,111,100,116,110,104,103,87,92,103,108,116,96,110,92,93,101,117,110,108,107,92,104,97,98,89,109,104,82,104,74,99,102,102,109,100,104,103,108,101,98,95,100,105,97,97,108,105,100,100,91,103,120,109,97,101,91,108,103,102,108,100,96,97,81,105,75,106,91,111,105,109,100,105,96,84,91,98,100,87,94,94,102,97,104,90,89,101,97,105,95,96,107,101,101,105,106,116,103,87,82,99,96,103,100,98,86,103,104,93,96,96,107,101,101,94,90,98,103,109,101,102,112,98,106,113,87,102,105,101,124,98,96,105,100,96,106,101,103,113,89,101,104,100,94,115,111,99,99,95,112,101,101,109,92,110,104,99,96,93,98,111,101,112,96,103,111,105,104,105,100,97,94,107,87,100,113,102,96,87,94,98,93,109,110,113,96,105,103,90,96,96,98,95,106,93,101,89,94,105,101,102,98,101,101,92,95,101,94,109,98,104,109,109,97,101,100,101,94,117,88,108,112,101,109,97,87,96,98,116,70,106,98,109,104,100,91,101,96,102,103,123,100,102,97,103,96,96,113,85,102,96,105,104,95,109,100,113,96,91,103,105,106,88,103,106,90,87,112,118, +690.94287,108,99,96,106,97,116,114,109,85,91,92,81,83,102,101,101,113,107,114,107,102,84,95,108,95,90,110,96,95,98,106,102,91,104,103,98,107,96,100,97,112,97,123,113,104,102,97,94,101,95,105,103,97,110,95,89,79,96,101,97,95,101,103,94,100,98,94,96,113,104,104,98,101,109,96,99,86,119,94,101,118,98,96,121,118,91,89,101,100,85,107,112,112,105,101,91,114,97,93,100,88,101,105,96,104,98,108,102,101,88,102,97,101,106,94,105,102,103,90,106,104,99,98,108,103,74,103,95,95,101,94,110,108,87,102,81,103,113,92,91,108,99,106,95,117,97,110,97,113,109,109,104,108,85,121,99,87,98,103,110,101,80,102,109,87,96,100,104,100,116,98,100,117,91,110,98,100,114,109,99,105,94,93,99,96,89,96,96,87,93,90,113,114,86,99,102,105,73,93,98,102,99,100,101,100,104,92,94,114,95,92,96,99,99,114,103,102,96,92,90,105,109,109,70,95,103,97,113,100,101,115,93,104,116,108,100,98,95,99,101,92,100,102,98,91,90,103,96,107,117,97,104,76,113,97,96,106,94,111,94,96,100,107,89,92,96,110,103,101,95,92,99,90,101,95,102,96,109,115,95,100,96,98,100,105,97,100,101,106,95,105,101,93,101,101,117,94,102,100,96,107,104,98,109,96,122,100,103,83,101,93,105,94,105,97,96,99,95,108,99,97,101,107,102,96,103,99,99,104,103,92,91,110,108,96,111,106,101,84,83,107,112,96,102,88,76,98,95,109,101,102,96,89,106,107,95,105,101,99,104,95,108,94,109,100,91,95,90,102,99,104,89,94,105,104,98,118,105,93,108,99,100,97,108,103,92,103,100,93,96,100,98,91,99,97,99,104,93,105,100,97,88,105,100,114,104,96,87,102,91,92,91,105,96,70,105,124,97,106,93,106,103,108,112,100,83,105,94,99,103,104,95,89,100,94,86,100,92,105,96,99,109,96,109,99,110,103,95,112,115,96,95,92,102,113,116,116,90,102,90,97,110,107,102,74,126,96,86,106,87,117,108,101,107,93,109,104,111,105,100,88,102,103,91,102,86,94,96,110,81,99,95,104,104,91,102,99,103,118,102,112,91,101,104,102,90,94,95,113,101,109,99,97,88,99,105,92,107,83,87,89,102,97,105,105,103,102,74,100,100,98,103,96,93,91,119,94,93,107,105,104,98,97,97,101,86,96,96,102,102,103,90,104,105,96,94,99,97,95,113,102,107,94,98,101,98,118,108,111,94,101,92,95,103,102,98,93,97,113,96,102,99,101,103,93,101,120,90,101,94,94,98,98,93,108,110,96,91,102,112,96,90,97,104,98,109,97,102,101,106,98,98,109,109,111,105,91,97,108,97,98,101,110,100,92,100,91,96,97,90,95,105,107,110,92,108,104,90,91,104,105,114,92,64,102,87,106,94,104,103,104,106,113,102,100,108,104,104,85,100,104,98,104,95,97,109,97,94,90,97,97,103,101,106,89,125,95,99,113,102,105,98,101,79,102,101,103,100,107,103,106,112,107,102,93,103,108,106,86,84,105,102,102,91,101,103,114,101,67,97,106,96,95,96,91,100,99,113,105,95,91,94,102,108,97,104,114,71,100,120,106,97,103,94,86,96,100,116,107,97,78,100,103,109,104,103,111,115,114,107,107,98,96,112,95,102,93,103,104,100,97,103,99,98,92,109,88,108,99,103,109,113,102,99,92,87,92,91,104,99,105,112,99,97,97,90,101,118,88,87,95,98,90,115,107,109,101,89,95,108,95,103,86,103,92,78,96,99,110,97,94,101,93,88,109,83,99,102,105,113,97,93,112,101,100,107,103,110,101,99,112,97,104,97,96,104,101,105,112,110,100,107,111,97,95,94,99,91,105,95,94,96,107,113,101,91,99,103,98,105,101,102,102,99,108,107,103,95,91,106,103,102,96,110,100,98,82,99,89,101,104,107,116,97,113,105,99,102,90,89,108,105,94,99,96,104,108,99,98,104,98,96,103,90,99,101,95,93,101,105,96,104,99,101,103,105,100,82,107,79,106,99,102,105,91,103,96,109,102,103,99,101,108,97,96,94,96,94,90,99,104,96,91,96,88,98,100,97,102,100,99,100,116,95,97,101,98,96,96,95,109,110,98,94,108,108,98,91,100,102,95,116,108,100,100,95,101,94,93,104,102,90,93,98,102,87,91,97,99,95,114,113,102,95,94,101,94,105,107,99,94,87,108,79,112,101,99,93,86,96,110,106,100,100,100,104,95,94,109,107,99,99,114,90,108,96,94,87,107,97,85,103,99,95,117,87,111,105,90,103,91,93,94,84,96,102,103,96,114,105,96,90,95,107,101,106,101,101,97,106,72,112,115,100,86,97,95,100,104,94,92,138,102,109,102,98,101,86,87,99,94,107,94,94,101,100,98,104,98,102,101,97,87,91,99,106,102,96,106,93,99,94,111,104,90,111,90,101,87,100,95,107,106,93,101,103,103,104,97,103,91,74,113,88,99,102,105,101,112,111,98,100,101,107,104,99,96,106,101,94,101,101,108,103,91,60,105,95,107,111,112,113,88,104,110,101,102,100,92,105,99,98,102,93,98,114,104,105,107,73,95,90,106,102,103,106,112,102,98,103,92,96,93,107,106,73,101,91,107,93,95,97,115,100,98,104,104,92,102,104,102,88,106,97,100,99,105,104,103,98,98,97,99,108,106,98,95,102,97,84,112,100,112,105,101,92,97,96,100,101,101,93,89,99,94,89,103,96,102,96,119,112,99,91,94,100,98,107,92,107,96,94,102,105,101,93,90,95,98,104,107,96,97,105,99,107,112,104,101,108,100,106,74,113,102,116,90,103,109,102,104,114,102,110,107,112,109,91,112,101,97,94,98,107,109,98,102,87,92,95,104,105,109,112,87,95,92,100,108,113,92,98,109,96,110,119,103,119,118,95,106,90,102,119,102,100,101,95,105,102,99,94,101,98,108,101,92,98,103,101,101,83,100,110,105,110,102,97,108,93,96,95,108,109,99,97,101,99,95,97,86,114,112,100,106,102,95,100,99,94,110,107,106,105,97,108,95,99,94,101,97,89,106,128,95,83,107,110,95,111,105,102,93,108,108,103,98,93,92,99,98,83,104,95,88,104,119,111,88,110,99,114,113,98,103,105,94,103,104,116,95,102,104,103,105,110,105,102,100,99,98,102,110,110,100,81,104,114,94,95,132,94,95,96,91,98,108,99,98,98,101,94,104,113,106,109,101,104,92,97,98,101,101,94,95,110,102,90,91,90,101,100,91,93,87,101,99,106,96,99,98,104,90,112,105,101,100,97,93,117,106,102,95,102,88,101,75,98,105,104,84,90,100,105,93,97,104,91,113,94,97,94,91,100,107,98,116,99,109,100,106,109,98,90,108,100,96,111,94,91,111,104,105,89,102,94,105,114,115,84,97,99,98,100,104,99,95,98,99,95,115,100,93,101,96,101,97,96,102,103,93,116,99,101,108,106,98,104,97,103,102,94,91,102,95,102,97,95,102,94,94,98,96,67,98,96,113,93,102,110,101,110,109,97,104,93,104,100,110,102,118,92,105,100,95,93,95,96,117,94,100,105,101,95,98,99,100,103,99,99,104,103,88,104,91,96,102,97,108,99,97,103,96,110,94,117,125,107,96,87,109,108,105,92,95,104,104,105,91,115,104,100,99,101,102,107,94,102,107,94,106,82,90,113,101,93,96,110,102,96,99,94,96,110,109,103,97,93,99,101,98,105,113,110,96,101,111,92,91,102,103,101,96,98,101,103,105,90,109,89,102,106,93,106,93,106,104,100,113,106,107,119,101,93,112,96,84,95,99,96,100,108,90,97,102,112,95,99,89,99,97,104,107,109,105,98,91,101,106,97,94,95,97,105,105,101,104,107,107,85,106,105,105,97,105,93,101,106,76,108,100,95,100,95,107,95,95,89,93,96,114,98,98,101,104,101,104,91,113,99,108,91,92,99,102,110,102,109,108,75,97,105,100,107,95,98,105,105,99,98,99,106,120,92,118,100,100,105,98,100,105,101,93,107,96,97,100,124,96,107,99,95,105,110,109,95,110,111,99,109,92,98,95,117,112,104,95,99,99,102,109,116,103,97,88,90,102,101,100,90,102,116,104,110,103,101,96,93,99,112,92,95,93,96,101,102,95,103,104,90,91,104,102,99,101,97,94,104,101,96,99,93,103,109,102,103,97,76,87,89,102,96,113,97,96,98,77,105,99,101,100,106,109,106,105,85,106,117,98,110,109,99,109,107,107,94,115,93,101,103,95,107,110,105,102,106,113,91,112,102,98,102,105,103,101,103,105,107,103,106,104,86,101,94,98,100,91,86,96,88,98,104,97,94,104,111,97,103,93,102,96,98,90,102,97,91,92,106,73,95,101,91,113,96,98,113,96,101,106,94,91,90,106,109,103,96,102,106,103,97,95,90,97,105,113,102,99,106,93,95,90,110,102,101,103,106,91,88,105,104,94,97,101,98,100,100,111,102,91,92,98,81,104,115,109,93,95,102,105,105,107,101,96,107,98,110,99,107,109,105,104,103,105,97,106,110,119,99,108,109,113,104,96,109,95,96,95,94,103,87,105,78,94,102,107,109,94,80,87,94,96,105,100,139,110,105,103,98,73,90,74,98,96,96,109,95,98,107,94,105,117,100,99,91,112,97,100,99,108,108,92,103,110,110,106,111,106,111,106,106,97,125,97,94,101,103,111,100,105,96,114,101,94,105,109,101,88,96,107,98,109,101,101,70,92,110,92,106,109,89,95,102,112,90,90,111,101,99,109,95,104,87,110,100,103,111,102,99,87,101, +691.08417,96,99,104,91,91,102,103,93,104,108,106,88,101,110,101,118,114,99,97,108,105,92,101,93,102,98,93,103,100,106,101,112,98,102,104,93,114,99,109,104,104,88,96,99,103,103,93,100,107,100,106,107,113,109,103,100,93,88,102,92,91,106,97,109,103,71,91,112,105,91,101,95,102,103,109,110,110,111,99,100,105,98,95,96,93,107,106,100,105,111,86,111,92,100,100,114,104,102,102,100,114,93,100,98,104,110,102,108,95,95,97,99,106,98,106,110,92,112,105,89,91,100,109,103,101,102,118,105,101,80,99,104,92,101,115,95,91,104,101,102,101,99,98,95,99,98,111,104,97,96,97,100,104,99,98,104,96,98,92,105,107,91,122,104,93,96,105,100,100,104,87,102,94,97,95,108,96,101,114,98,106,93,109,96,92,100,83,95,109,90,83,103,102,104,95,108,109,98,116,105,96,103,100,112,102,94,101,113,108,112,96,110,98,104,117,99,107,102,95,94,98,105,106,104,108,102,110,98,102,114,105,103,108,100,109,93,103,100,105,100,93,114,106,102,94,94,103,126,104,101,111,114,98,101,101,75,94,109,96,110,91,105,96,105,89,103,111,83,106,109,101,105,109,111,88,108,104,99,102,95,87,110,105,97,99,104,106,104,99,105,104,94,97,112,99,106,114,107,92,109,102,112,95,102,97,114,98,97,107,99,96,103,94,98,94,101,102,107,78,99,89,96,100,90,112,103,92,89,107,108,102,100,118,99,104,99,99,106,102,108,100,107,87,98,110,103,94,112,99,104,102,114,105,99,105,97,109,110,103,101,110,106,96,104,106,97,88,109,100,103,107,94,95,99,100,93,106,102,94,105,98,111,109,110,93,97,110,93,94,89,98,94,88,105,112,84,105,89,96,97,89,85,104,90,96,92,105,104,102,102,101,101,105,105,98,101,99,89,111,106,70,100,90,106,99,113,124,103,100,106,90,105,101,101,95,91,105,109,116,97,111,102,92,95,107,100,96,96,117,106,100,101,96,107,105,103,103,104,107,92,91,115,97,100,102,97,100,99,97,92,91,103,99,91,100,111,98,111,101,107,101,104,107,103,107,94,102,105,105,103,107,110,100,97,100,96,103,91,112,106,104,100,101,103,97,90,99,103,97,105,103,110,100,107,102,115,95,106,87,101,113,99,108,92,109,82,102,97,113,95,100,100,101,113,102,104,100,105,115,81,101,98,95,99,104,79,109,99,113,110,94,114,108,113,93,105,102,103,112,95,97,108,96,98,94,101,98,103,101,97,94,103,112,101,99,95,104,88,98,98,108,100,79,108,98,86,109,100,114,103,100,102,107,111,103,116,104,97,96,112,107,94,106,77,119,99,101,110,90,94,110,90,113,95,120,102,109,118,95,109,109,106,99,100,114,104,115,106,101,114,98,100,84,95,106,107,109,92,122,105,106,108,99,108,95,86,97,99,108,92,95,95,98,98,99,102,98,99,105,112,105,105,101,99,93,96,100,80,107,102,106,103,95,103,106,104,98,110,110,106,100,99,109,98,92,99,87,98,101,105,102,98,88,108,92,86,96,92,96,95,101,97,107,88,103,101,103,111,101,101,97,99,85,91,93,96,92,91,102,117,106,99,107,107,101,102,95,113,90,99,109,111,95,61,102,94,103,90,112,100,105,89,95,97,108,92,92,97,101,101,94,78,100,94,99,95,93,106,102,101,96,116,104,100,87,97,80,106,100,101,108,111,96,101,106,115,98,99,103,103,83,97,103,95,102,101,99,99,95,108,109,91,100,110,94,98,97,110,94,106,113,102,87,98,115,93,92,100,109,98,100,97,101,97,111,115,85,109,98,113,88,107,95,96,109,105,93,97,113,95,93,99,116,98,97,109,102,94,112,105,109,99,103,106,98,97,102,112,101,113,101,107,98,107,96,95,101,99,96,101,96,97,99,124,101,91,104,82,109,74,101,115,105,99,98,95,97,96,102,105,102,95,104,100,96,101,105,106,105,115,99,98,111,99,110,100,109,87,103,114,109,108,100,113,104,92,118,108,104,96,115,106,101,105,98,101,104,95,102,103,118,97,122,104,90,100,92,91,104,99,107,109,113,114,93,91,95,111,96,98,107,95,104,103,101,105,104,112,89,100,117,101,109,100,117,101,99,98,105,97,101,107,128,102,100,99,96,95,94,109,77,114,87,94,99,99,106,101,96,88,105,101,99,90,99,113,101,100,106,99,96,125,104,95,122,95,99,104,86,103,109,75,107,96,108,106,93,98,80,94,106,104,109,82,109,91,99,86,90,87,112,96,96,97,101,91,99,126,104,99,114,105,106,103,107,98,109,99,99,98,108,105,111,94,96,98,112,113,106,100,95,98,107,96,101,91,97,104,108,105,91,95,97,93,98,95,91,102,95,95,102,114,97,102,93,105,98,92,96,101,94,90,98,111,96,99,100,104,121,113,105,103,110,89,103,105,107,100,104,91,96,96,113,107,106,83,95,105,111,97,103,118,111,102,95,97,115,105,93,123,102,99,102,102,100,102,100,109,93,99,105,110,69,103,103,95,103,99,105,99,103,101,107,104,101,105,99,98,100,93,114,110,102,104,101,98,104,95,95,104,99,92,104,97,111,113,110,97,110,100,102,103,96,103,98,92,106,100,90,105,100,112,99,102,101,106,105,100,104,121,91,111,120,102,79,75,98,96,103,110,95,106,99,87,113,108,107,112,93,101,103,101,92,96,108,93,98,108,94,102,108,99,98,98,101,101,104,108,131,87,98,98,82,110,101,102,101,96,99,108,95,112,122,91,103,106,96,113,89,83,98,98,97,92,109,84,107,88,104,112,103,108,100,110,90,97,124,105,113,101,95,109,102,87,91,114,102,93,105,106,101,111,107,101,107,117,112,107,102,104,108,100,95,76,108,101,106,95,98,113,107,86,109,100,104,108,72,106,102,105,105,101,90,99,121,97,102,103,91,105,102,84,104,103,89,100,107,105,104,104,107,108,105,105,108,100,106,107,107,116,107,104,104,95,102,102,99,115,112,106,106,102,109,100,91,103,109,101,106,121,105,101,107,91,104,101,99,102,101,109,101,119,97,113,99,104,90,106,105,105,73,110,105,101,109,103,97,101,102,122,99,95,97,105,97,104,105,100,103,103,97,99,102,97,104,98,98,108,112,102,98,106,104,101,103,104,107,100,104,97,92,105,102,91,95,100,100,89,97,101,106,104,109,105,107,98,100,112,111,105,111,103,99,101,102,93,89,103,104,102,106,98,105,110,105,114,122,105,102,100,109,94,97,100,108,98,101,108,99,104,102,100,110,102,105,96,103,112,108,99,104,104,105,108,81,98,101,93,100,111,107,103,103,117,99,78,111,106,89,105,120,101,78,122,108,111,103,102,100,104,103,112,104,107,102,100,108,106,93,108,98,107,106,118,100,111,113,107,104,104,117,110,104,93,107,109,101,110,84,94,107,109,104,102,92,111,105,100,104,106,109,109,102,98,108,86,102,111,102,112,102,98,110,104,101,114,97,109,107,102,102,101,96,110,98,84,99,95,108,98,102,109,104,104,109,109,106,106,105,94,99,110,114,107,65,96,107,102,97,111,105,109,102,95,103,94,102,103,102,93,107,104,99,105,101,104,106,104,105,112,104,108,105,91,104,105,108,94,114,99,103,106,106,120,104,103,101,107,102,97,107,100,100,99,102,105,100,97,104,98,104,104,112,97,106,107,105,108,100,99,106,91,100,106,94,99,115,97,99,101,101,104,99,111,104,98,87,109,94,121,113,106,108,100,99,108,93,96,105,99,97,113,113,95,108,101,106,102,98,100,101,90,97,108,102,107,94,121,96,102,93,109,105,109,113,99,101,91,92,106,99,97,103,95,102,107,97,92,111,105,112,110,110,103,98,98,102,113,100,113,96,99,89,113,100,101,104,98,101,111,101,100,101,106,101,104,104,103,108,112,92,104,106,93,100,97,105,101,90,102,103,101,112,89,95,107,122,106,108,109,104,89,112,101,111,117,107,88,112,118,94,101,80,124,103,109,98,103,102,113,108,94,116,105,76,103,104,106,95,98,104,111,101,98,90,112,104,106,94,98,92,98,104,103,104,101,101,101,106,112,106,93,102,92,107,109,99,104,99,96,116,116,108,104,105,115,99,109,111,99,103,106,99,115,113,102,113,106,98,97,108,98,108,100,106,106,103,116,110,100,98,107,106,95,100,106,99,105,108,108,103,98,110,111,103,103,103,103,94,99,99,102,109,101,102,101,99,108,96,102,105,110,108,100,101,109,105,114,109,112,113,104,118,110,110,91,105,105,98,108,113,100,106,115,99,96,112,100,112,99,109,103,102,108,105,102,100,125,106,101,110,106,88,95,92,108,102,90,60,111,113,110,98,102,97,101,92,127,114,97,99,102,98,100,102,92,94,108,98,101,100,116,95,117,104,103,107,116,85,102,100,113,102,109,113,95,114,101,98,116,97,114,101,110,109,116,101,105,97,101,107,111,96,100,102,99,105,94,117,108,92,105,108,83,108,104,98,117,101,115,98,103,80,115,103,99,96,95,105,107,107,99,116,120,105,96,114,118,115,108,95,93,105,101,102,102,105,106,96,98,107,101,105,115,98,87,109,95,107,101,96,88,104,102,100,104,103,109,106,86,94,99,106,124,109,109,99,79,112,87,112,98,106,98,104,120,98,96,123,96,92,100,109,120,87,97,100,103,107,102,98,105,103,114,94,105,112,102,100,99,92,98,93,88,87,108,103,102,96,106,100,112,89,108,103,113,110,109,101,102,104,112,104,102,97,102,96,94,100,96,99,111,113,102,92,95,92,101,106,96,117,100,107,97,103,100,103,118,99,99, +691.22546,98,96,104,114,102,115,106,100,100,98,100,92,94,96,90,100,110,94,93,103,97,88,113,93,107,87,103,111,104,99,101,90,100,111,80,100,107,94,94,94,100,110,106,96,99,128,100,109,88,87,100,98,102,99,96,89,100,87,134,90,97,98,109,105,101,96,99,110,101,107,116,108,99,102,91,96,95,100,97,93,103,96,113,112,95,88,98,98,95,105,92,102,93,121,107,96,99,95,87,94,81,95,92,89,95,103,125,97,100,88,90,102,95,98,112,103,106,89,96,97,101,116,104,97,103,94,97,94,107,97,103,96,98,101,94,118,93,105,99,102,97,101,90,92,107,94,107,101,80,98,113,77,93,85,96,103,109,95,105,104,92,100,117,103,116,90,92,93,90,91,98,96,101,93,98,98,102,81,99,91,94,102,104,102,104,102,103,88,95,97,96,104,89,94,100,95,104,104,107,106,110,96,108,98,101,99,98,118,106,99,98,103,102,98,104,102,110,104,106,105,91,104,103,96,105,109,105,97,102,102,108,104,114,101,102,108,111,103,102,94,99,95,105,94,100,99,96,97,94,102,113,101,91,97,100,108,88,101,91,102,97,96,106,94,75,106,94,102,106,97,104,103,105,92,102,94,100,101,107,99,98,97,100,97,105,95,92,98,100,100,105,100,97,99,101,108,90,96,98,104,88,103,110,100,110,104,96,96,92,100,95,109,93,103,95,99,90,99,108,95,103,111,104,98,102,107,96,95,101,134,87,86,108,89,101,94,110,109,97,110,90,101,92,89,102,102,91,105,99,99,88,102,95,104,110,94,91,100,98,81,94,104,93,109,114,95,90,103,92,106,113,106,104,106,100,94,112,99,92,91,98,98,95,93,99,97,86,97,94,94,103,117,103,102,104,95,100,105,96,66,89,99,100,105,83,99,96,104,104,85,93,99,98,102,101,104,107,104,104,99,106,87,90,93,98,89,106,95,91,101,94,101,102,86,92,95,95,108,98,103,104,98,105,97,101,99,103,93,107,106,99,99,92,94,94,88,112,97,101,98,100,99,90,102,118,95,92,96,101,93,95,101,105,105,98,93,105,95,98,95,102,113,87,112,101,100,106,89,96,114,102,100,104,108,111,102,94,112,100,90,114,100,94,91,87,109,89,98,98,93,101,99,82,103,86,99,99,97,88,99,95,103,101,79,101,99,99,97,103,96,105,101,100,93,104,106,99,100,101,107,107,103,104,93,103,93,95,110,90,98,96,99,98,103,78,100,111,99,100,96,103,70,87,110,100,99,104,103,105,97,95,103,109,95,100,97,109,95,100,96,103,87,100,86,105,96,103,101,109,100,113,98,93,102,100,97,94,95,99,92,96,109,103,99,92,102,101,94,95,100,106,102,116,109,99,105,105,93,104,105,95,97,100,90,111,109,97,103,97,108,103,86,99,105,90,102,98,91,102,104,98,102,105,77,92,89,105,105,94,94,121,88,109,109,83,76,101,94,102,105,102,102,95,107,91,109,111,93,97,99,107,108,107,96,103,107,94,94,101,104,105,107,102,84,91,102,98,95,94,102,98,102,98,106,107,94,103,107,98,101,97,98,99,103,109,110,105,106,92,86,102,103,85,98,101,98,96,96,89,96,93,73,101,105,103,106,110,100,110,100,101,104,105,101,100,98,100,87,101,98,95,99,103,114,99,92,100,95,100,100,105,96,104,82,105,102,106,108,96,98,104,98,101,107,99,99,98,101,92,99,110,113,99,92,100,117,102,97,106,105,103,110,103,111,96,103,100,100,95,92,102,105,114,96,93,109,97,82,96,106,83,92,105,105,101,100,104,97,96,100,114,90,93,99,114,102,103,100,107,96,91,97,91,94,91,109,94,99,98,102,81,91,87,106,94,88,98,95,106,102,110,97,108,93,92,100,97,93,99,87,96,105,90,122,103,105,98,103,95,100,87,100,90,89,76,93,95,93,90,106,98,98,117,102,102,98,95,101,102,108,98,107,102,104,92,96,101,107,86,98,72,104,104,102,92,101,101,95,93,96,101,104,102,97,93,105,72,97,91,100,104,109,107,103,96,91,92,92,83,106,107,102,92,101,107,94,103,100,95,98,109,98,95,102,98,111,85,104,108,101,94,98,104,121,94,90,100,102,98,88,95,108,94,100,95,99,95,98,104,101,102,107,102,94,94,94,93,104,88,106,94,104,105,96,92,95,117,90,109,92,90,103,102,108,101,94,94,101,103,95,96,96,105,96,91,104,91,109,95,103,100,100,101,98,91,98,109,100,93,110,105,106,97,102,96,103,103,98,93,113,102,96,107,83,101,92,104,101,80,87,120,104,113,84,104,95,107,100,96,107,106,103,112,96,99,91,101,111,97,91,100,103,100,97,92,111,104,99,96,102,106,101,79,100,79,96,97,100,104,100,106,111,101,91,91,95,99,110,85,103,95,113,102,106,103,100,113,100,95,89,100,102,96,89,88,97,103,106,107,108,107,101,105,118,107,104,90,106,104,105,101,99,113,100,101,105,100,81,100,104,104,88,99,99,109,99,108,99,117,109,104,111,102,123,107,109,87,98,106,95,100,89,104,103,95,104,96,99,102,88,117,93,110,114,69,105,116,94,101,104,105,90,84,87,112,101,100,93,99,87,99,90,94,99,101,102,88,101,98,75,109,99,103,95,96,106,114,101,105,105,109,100,114,103,92,90,94,90,86,97,101,88,102,103,102,99,116,99,98,100,113,106,91,109,92,104,97,97,102,75,112,100,108,102,108,101,107,105,97,102,96,103,95,97,105,117,101,97,113,108,106,101,125,97,70,100,97,71,103,110,87,97,106,105,88,105,99,101,99,91,100,103,98,96,108,97,100,117,117,98,90,100,103,109,106,104,107,98,106,97,101,105,98,99,107,98,108,98,103,100,96,109,94,98,96,99,98,110,95,102,90,102,96,114,97,101,109,102,114,105,95,103,81,107,105,106,98,109,124,95,100,105,99,100,109,98,99,93,93,107,99,92,104,106,99,106,105,102,106,102,109,105,109,109,104,109,108,101,107,110,111,94,96,100,102,99,108,104,89,100,96,112,105,105,106,91,106,106,101,97,93,98,108,108,109,98,94,112,102,111,111,101,95,108,104,101,94,93,100,109,88,102,98,91,108,107,108,101,88,98,108,113,101,105,95,100,105,99,103,104,97,100,110,104,104,101,104,108,107,104,101,100,98,107,99,106,101,103,102,105,114,93,128,99,109,108,93,98,90,93,112,99,104,114,98,108,103,98,104,95,109,105,110,103,105,95,109,95,109,97,92,122,96,96,98,104,104,95,102,96,91,106,105,96,105,101,94,102,116,101,100,106,91,107,97,108,103,107,108,100,104,98,106,111,94,110,101,100,109,99,102,112,99,101,99,97,107,94,94,98,96,112,114,105,101,99,92,100,99,91,114,113,99,107,99,101,92,99,110,91,98,123,96,97,93,110,112,113,105,94,108,119,99,117,103,97,107,107,111,85,106,100,113,108,102,102,103,92,99,106,111,106,98,101,99,97,100,102,105,114,111,98,103,102,101,97,98,98,104,104,103,99,103,106,95,134,105,102,98,119,104,102,108,94,99,114,97,97,103,108,98,108,106,100,101,96,106,98,101,110,94,96,94,91,113,95,96,116,114,99,96,102,105,108,92,89,97,101,97,120,104,108,110,120,102,91,102,102,106,101,93,100,84,96,83,104,109,103,100,94,98,94,93,105,105,94,95,105,120,109,102,106,106,102,110,98,97,101,109,99,99,109,101,125,98,102,104,110,96,94,102,92,99,98,113,94,104,95,100,103,95,99,111,109,89,112,109,97,111,104,102,110,102,102,102,96,100,97,104,109,106,93,114,104,108,85,100,96,93,91,92,90,102,93,100,109,111,96,111,89,102,109,108,95,103,85,98,102,91,107,109,96,105,93,103,112,101,101,99,99,98,101,112,109,108,104,96,105,101,96,109,97,89,97,108,102,87,97,106,103,103,104,101,94,101,101,97,94,99,104,103,105,96,114,105,104,102,111,114,104,104,112,103,101,104,102,96,94,107,111,97,99,105,106,107,109,117,100,88,106,100,118,97,104,95,108,105,105,116,109,108,80,97,96,101,103,97,106,102,105,113,104,96,105,100,106,113,91,100,89,107,106,107,97,116,95,107,103,89,111,111,96,107,109,113,105,105,95,92,114,108,107,109,105,94,98,96,98,100,105,105,88,104,105,101,99,84,97,102,105,101,104,88,100,103,113,103,106,96,107,100,129,102,103,103,100,95,84,102,105,109,74,107,120,102,89,106,110,102,103,98,118,104,129,106,88,104,99,100,103,105,105,108,105,92,98,112,99,110,96,111,118,111,103,76,112,104,99,117,106,91,98,107,104,104,92,94,110,105,102,89,95,102,96,99,95,96,104,107,110,115,108,106,109,100,99,98,100,102,97,98,95,101,93,103,107,114,105,98,112,112,105,90,107,100,98,105,108,95,108,111,100,115,112,100,105,94,101,114,109,105,100,101,79,92,105,113,91,109,98,97,109,101,96,106,112,113,104,98,108,96,93,96,103,104,102,102,97,106,107,96,100,95,99,103,95,112,93,103,111,101,96,106,93,104,100,111,119,97,97,99,93,112,108,92,109,104,101,98,110,114,91,101,100,105,119,103,117,89,91,108,107,106,96,105,108,100,107,100,95,102,101,89,103,97,96,96,95,98,92,101,102,97,94,98,92,100,113,103,101,100,95,104,108,106,109,92,109,88,87,100,108,110,89,96,99,87,108,101,94,104,102,90,109,115,114,118,110,118,91,97,96,103,91,92,104,97,103,96,95,105,96,93,85,120,103,104,112,101,104,104,103,101,108,126,100,92,104,104,91, +691.36682,113,112,91,103,92,101,112,97,99,97,98,99,101,106,117,89,110,107,104,106,92,97,88,103,106,114,99,89,77,107,115,105,94,99,99,88,95,96,92,103,105,97,93,99,100,116,92,91,95,110,103,123,100,104,112,110,104,98,110,93,101,105,88,103,102,100,93,95,99,117,116,108,97,92,84,106,101,112,109,98,108,106,92,89,116,99,106,101,105,100,106,92,98,111,94,102,102,99,93,87,105,107,87,105,98,113,95,106,100,91,96,96,105,102,90,105,91,114,97,107,100,97,116,120,103,94,101,101,107,110,104,119,95,92,101,95,104,98,99,102,92,92,110,95,112,98,92,90,97,97,100,94,102,97,94,102,94,77,98,100,96,103,111,102,100,113,96,102,104,102,91,114,110,89,113,87,93,94,113,99,117,108,97,113,95,95,92,84,95,95,103,92,101,99,95,102,101,86,90,92,103,96,99,91,94,107,97,97,113,98,93,109,98,107,97,108,99,102,96,97,105,104,90,101,94,90,101,103,94,110,96,99,91,110,112,96,100,86,101,91,91,91,111,106,86,103,108,99,101,92,100,105,107,99,113,116,90,96,98,98,92,108,129,92,96,99,111,96,98,99,117,95,103,104,105,105,105,113,117,100,104,109,112,107,109,102,91,97,96,104,87,109,99,102,113,102,102,109,105,96,106,98,112,102,101,98,106,98,100,103,86,104,99,99,105,96,90,100,97,100,81,106,95,98,105,96,105,91,88,103,105,109,106,109,102,97,96,101,119,111,103,96,95,91,102,103,105,82,116,106,107,102,91,115,88,101,99,98,99,108,114,110,102,102,89,100,99,101,99,115,108,102,104,104,98,104,102,101,102,112,94,95,111,93,103,96,102,92,102,116,105,93,106,101,105,94,99,104,103,97,103,104,95,107,98,97,81,109,102,105,104,88,100,105,99,100,96,95,92,97,98,118,98,99,92,99,107,93,90,93,94,104,100,105,100,101,99,93,99,107,113,93,98,96,109,86,94,86,105,102,94,107,102,104,96,99,103,94,100,99,95,104,92,113,110,107,85,91,103,110,105,104,104,93,103,107,113,101,101,104,109,98,100,100,101,93,98,93,105,116,99,110,127,100,99,105,99,96,95,98,110,99,109,105,101,91,112,103,92,95,101,95,103,104,90,96,93,94,111,100,120,104,90,102,107,109,99,104,104,99,102,102,96,107,102,111,110,97,109,104,111,97,104,109,110,91,95,96,115,114,102,105,101,99,104,93,97,101,99,95,107,98,89,102,94,107,94,116,81,88,103,104,103,96,98,105,102,110,106,98,102,94,99,89,103,94,100,98,99,100,105,106,100,99,103,106,113,108,114,97,95,117,95,100,100,107,99,90,95,90,106,102,93,109,94,97,112,93,111,111,100,95,107,105,101,98,97,109,91,94,113,95,90,108,98,100,100,90,119,96,94,95,101,94,91,95,111,92,99,105,85,103,111,109,97,102,91,100,93,102,101,107,95,96,91,93,106,106,96,91,101,90,93,96,95,110,98,110,89,95,102,96,101,102,74,116,92,103,105,96,94,126,113,101,106,114,94,106,103,89,96,100,109,98,105,107,96,96,117,112,112,96,119,92,88,101,97,112,91,97,109,109,85,108,92,98,111,105,98,99,104,108,112,103,94,82,92,97,111,87,107,99,101,105,95,109,93,104,97,117,101,102,111,103,101,116,100,86,106,101,95,121,94,106,109,104,99,101,129,108,119,96,107,101,110,96,98,97,96,109,97,116,104,116,106,108,100,104,100,115,112,119,107,110,101,99,88,98,102,107,100,94,91,107,104,100,109,107,105,98,111,100,103,99,103,85,92,97,107,108,102,93,85,115,104,112,97,97,85,103,108,92,99,110,104,100,102,107,87,104,108,96,100,117,102,88,95,98,104,97,100,109,106,107,102,100,100,96,98,88,102,102,101,102,96,105,103,115,96,110,97,100,96,99,102,111,108,118,86,95,98,109,101,101,114,104,107,99,105,103,96,74,100,100,113,102,109,105,101,98,101,117,101,99,106,95,97,98,110,91,103,114,116,103,106,92,89,100,103,103,99,108,110,110,111,95,102,101,87,115,107,105,107,102,85,95,100,96,101,105,109,104,107,101,101,84,97,97,97,107,96,91,96,89,108,93,105,98,96,108,109,105,99,94,113,92,98,91,94,113,97,86,99,94,104,96,98,97,94,97,108,103,95,103,104,100,96,102,97,97,99,105,98,95,99,99,100,90,107,108,104,108,96,107,110,110,99,90,102,102,93,99,96,95,92,96,101,102,109,101,95,109,114,88,95,107,103,101,102,91,110,109,113,108,115,93,99,116,112,103,99,107,96,98,94,85,114,101,95,98,108,99,100,98,101,109,96,102,103,108,95,99,96,97,95,96,105,110,95,104,110,105,100,101,107,103,97,103,106,92,87,78,102,117,106,99,114,103,109,100,96,96,104,103,89,104,89,99,103,95,90,105,108,93,94,68,93,105,101,99,128,108,104,102,104,95,109,96,99,91,102,111,91,109,103,95,113,85,106,89,101,103,109,97,97,81,97,100,93,85,100,100,105,95,100,126,103,106,91,87,104,110,106,102,91,103,113,112,101,98,96,93,95,92,106,106,86,107,95,98,98,89,109,111,105,101,100,91,102,107,94,110,92,87,101,110,111,114,98,109,103,93,123,101,98,102,105,93,96,106,107,103,96,95,82,96,106,103,99,103,104,103,101,101,107,103,110,99,102,101,103,100,102,91,97,103,99,106,94,102,105,102,93,108,104,107,112,105,108,106,107,87,117,87,101,109,98,105,102,103,91,106,89,102,101,97,92,109,102,104,112,106,99,117,108,112,107,101,102,104,107,100,106,106,91,97,118,104,104,103,107,87,119,103,97,109,92,100,101,99,99,87,88,100,94,96,94,84,95,105,98,100,94,105,94,98,99,99,95,105,94,96,102,96,113,115,94,104,104,104,98,107,99,97,110,105,101,93,133,99,98,80,97,104,102,101,101,105,104,95,96,107,107,100,107,99,112,90,91,102,118,113,105,106,102,111,108,104,103,103,109,97,105,99,109,96,100,87,104,96,105,109,104,95,104,103,94,98,104,89,106,88,104,100,104,86,107,107,102,100,100,111,100,104,100,99,111,94,92,104,96,116,95,107,106,114,87,98,110,98,103,98,105,92,101,94,101,102,91,100,112,101,98,111,104,95,113,99,100,95,106,103,104,112,96,106,102,98,90,104,120,100,96,101,105,106,106,109,95,101,99,83,115,103,108,99,107,85,99,105,86,112,107,113,102,98,96,107,95,106,110,95,95,98,85,102,107,92,99,96,95,95,103,94,92,106,108,87,99,93,94,108,104,97,104,99,106,105,102,93,103,101,108,93,94,74,111,94,107,95,99,96,94,105,103,102,102,98,100,107,99,109,101,108,102,98,109,100,98,86,101,102,95,100,98,101,101,100,116,79,101,112,106,94,116,101,97,106,98,87,105,101,98,106,103,98,99,112,109,107,90,106,103,98,108,96,99,100,101,103,117,124,110,98,106,100,100,92,87,106,94,104,102,102,105,97,99,103,100,97,84,98,98,108,93,93,109,103,99,108,100,108,102,88,104,98,106,96,93,102,93,99,109,97,93,98,106,103,105,88,106,111,97,108,91,80,95,109,115,100,104,103,99,104,106,105,100,97,114,89,94,94,84,103,79,81,117,99,102,94,94,106,95,95,109,112,93,103,109,92,109,112,99,110,106,103,109,97,103,103,92,99,96,108,90,107,98,108,102,109,116,96,107,106,92,99,103,106,104,104,89,108,101,104,83,96,106,99,101,90,107,106,100,96,95,105,101,95,86,84,92,104,107,92,100,100,101,72,94,99,95,92,104,91,84,100,114,89,100,92,108,88,99,66,99,102,103,104,102,102,98,111,87,106,102,100,91,91,104,89,97,102,96,107,92,99,102,103,98,103,102,99,102,100,121,92,119,101,102,109,101,107,95,92,103,100,100,95,109,104,111,87,91,103,101,117,97,93,113,91,93,92,100,108,96,101,91,104,86,101,98,97,115,111,105,107,102,113,96,75,99,101,96,95,104,96,102,102,98,102,94,63,91,92,102,93,92,97,90,91,94,96,86,89,93,108,105,95,100,97,114,95,99,98,100,87,97,105,105,88,100,107,104,98,86,90,90,96,101,111,111,97,95,102,71,107,85,100,102,95,97,89,99,83,109,95,88,116,96,102,108,90,117,94,89,104,108,104,93,108,108,106,96,104,105,109,111,99,105,105,94,102,106,67,96,111,96,104,105,106,101,91,95,106,99,100,92,90,105,95,101,94,106,94,107,86,104,102,103,97,109,92,99,102,108,98,97,103,111,84,95,98,102,87,109,95,90,105,117,113,89,100,105,102,84,100,90,96,96,88,92,106,110,107,111,95,106,91,98,91,91,96,100,102,90,97,103,100,111,87,90,100,102,128,98,104,108,96,95,107,103,92,92,90,100,133,107,108,96,99,104,81,101,106,97,92,101,91,99,102,106,116,103,98,99,87,102,90,88,90,101,93,115,102,101,95,109,99,108,104,85,100,99,96,100,106,76,111,102,102,100,99,108,109,103,103,105,102,108,99,100,100,105,105,101,96,104,89,104,99,63,109,94,109,102,98,73,101,99,101,98,92,94,100,97,105,104,98,99,99,100,90,98,103,95,92,78,101,91,98,105,99,96,107,95,91,95,108,104,105,81,107,96,107,106,108,103,101,95,95,85,107,89,94,107,110,97,87,101,105,109,110,110,102,97,94,99,85,93,95,98,84,95,95,96,94,117,99,91,106,93,104,105,99,83,99,98,112,105,95,106,110,120,100,84,101,101,103,91,100, +691.50812,94,105,92,116,106,103,106,94,103,91,116,100,95,99,101,101,101,104,87,95,104,98,109,94,108,102,121,102,107,108,95,97,100,98,94,98,100,95,103,98,96,102,99,102,113,99,109,113,109,104,110,108,90,100,107,94,99,102,109,102,112,102,91,98,103,108,92,96,96,107,110,102,98,95,97,95,94,99,96,89,89,95,97,96,101,106,99,110,99,101,100,107,105,86,82,97,90,121,96,112,99,106,98,96,104,92,91,103,88,98,96,109,95,107,101,97,96,109,99,95,112,96,107,108,100,94,100,92,107,99,100,102,94,116,122,87,72,98,96,105,118,100,105,96,102,96,105,101,98,90,104,92,113,79,99,98,99,103,97,99,91,102,99,106,102,110,106,101,99,98,85,91,95,102,94,104,108,95,61,103,103,97,95,98,96,90,84,91,100,113,107,111,114,95,77,96,95,102,98,100,94,102,88,94,96,96,101,105,97,111,103,102,108,98,106,108,105,97,102,103,113,106,114,81,104,112,101,96,96,102,95,91,114,97,103,108,98,99,115,96,116,104,99,108,113,105,92,105,96,98,95,101,92,99,102,104,84,107,103,100,85,97,96,94,88,100,103,90,94,102,102,102,109,82,103,103,95,95,91,100,99,99,97,96,103,101,90,113,105,101,93,94,110,97,84,95,100,94,102,110,105,102,101,114,101,91,104,108,94,110,101,111,98,98,100,92,96,89,109,91,102,101,104,106,97,99,97,94,111,103,102,109,105,96,113,95,96,103,96,103,109,102,101,107,96,87,101,105,108,105,97,88,106,100,68,99,107,109,106,99,102,114,109,97,102,99,104,111,104,104,96,100,92,93,110,95,102,94,96,99,104,104,100,104,102,102,98,87,109,101,116,102,92,107,109,92,101,113,99,83,95,105,104,101,98,102,87,98,103,93,95,106,104,111,95,101,100,90,105,106,91,95,88,95,102,90,101,95,95,108,97,102,113,99,95,92,101,103,95,100,111,98,91,102,89,109,90,111,95,108,100,101,78,101,103,96,100,104,106,91,101,105,104,99,93,98,99,105,91,97,103,91,104,81,97,101,105,109,99,101,69,105,102,101,104,106,104,102,108,96,109,104,104,96,101,95,98,94,108,105,87,109,111,100,106,103,108,95,90,90,93,107,90,100,86,109,94,100,107,102,112,97,109,105,93,91,107,90,87,94,105,101,91,107,103,103,94,95,109,105,99,73,103,104,100,101,100,100,95,105,101,109,97,109,92,103,101,108,107,100,115,100,91,124,97,104,102,100,98,107,100,97,115,101,100,101,100,97,97,104,98,103,101,96,105,108,104,97,102,102,95,103,93,91,103,101,108,112,110,91,101,92,100,102,95,94,92,72,104,106,100,98,100,101,97,110,99,97,99,107,93,119,95,109,105,97,99,103,99,103,105,96,102,103,96,104,79,99,109,103,91,102,91,116,105,103,96,96,95,120,92,109,95,109,117,100,113,110,92,110,108,102,77,107,111,102,100,96,114,90,96,96,101,105,101,96,104,107,97,99,117,104,121,108,98,105,96,112,109,102,118,102,105,95,99,106,113,103,98,103,113,105,106,95,110,107,114,102,92,97,104,99,99,102,101,98,107,99,105,102,109,105,91,102,103,99,87,86,105,108,90,100,103,100,76,100,99,98,91,105,100,101,110,99,99,107,110,105,73,103,105,110,108,105,102,84,99,93,100,102,100,99,83,97,108,96,100,95,98,101,112,106,110,107,86,113,109,98,96,95,103,98,103,93,98,123,87,109,103,90,104,111,95,104,95,102,99,93,110,107,99,104,94,94,92,102,102,106,102,97,115,95,97,96,104,90,101,105,100,108,94,109,99,108,101,100,116,90,97,102,103,102,103,109,101,108,107,103,98,95,106,97,98,114,110,98,90,95,105,86,126,99,87,92,91,91,102,105,104,98,94,92,110,88,83,99,98,93,109,86,93,99,109,103,92,103,95,102,90,62,84,105,99,95,104,106,102,90,97,86,113,96,90,113,103,97,95,97,96,106,95,110,106,113,102,97,102,104,102,102,112,99,103,103,105,96,101,100,105,104,106,103,101,101,98,102,109,99,94,108,94,98,111,109,96,102,86,100,99,83,118,101,117,106,96,102,99,94,103,112,110,102,110,91,109,102,116,137,97,109,119,104,96,99,105,101,92,98,98,94,97,108,94,105,98,103,106,100,93,104,99,93,104,91,102,103,100,107,91,112,108,95,103,101,99,92,98,97,90,109,108,102,95,95,106,97,94,111,86,95,100,115,105,103,113,94,116,100,88,101,101,96,100,106,111,109,112,96,111,94,97,97,109,100,102,72,107,109,97,109,102,100,109,100,94,120,118,99,95,103,85,113,107,95,102,93,94,121,96,104,100,106,99,97,100,111,96,95,95,87,101,109,104,101,99,97,100,108,110,105,99,104,97,101,99,104,105,101,123,100,93,98,102,95,98,115,90,100,97,100,96,92,109,101,97,88,86,97,108,106,107,109,99,102,101,100,100,92,93,106,105,109,92,100,104,98,85,101,100,103,112,95,97,109,116,84,100,105,100,97,95,100,99,117,93,90,109,92,102,94,101,103,97,103,108,98,95,95,99,106,97,97,120,91,105,107,104,99,106,100,98,112,109,107,107,95,99,109,99,100,92,113,99,103,101,102,102,95,101,90,98,102,101,108,95,100,97,96,107,100,100,122,114,97,99,113,100,110,90,106,103,95,103,100,109,124,94,100,99,92,105,110,81,108,101,106,103,103,105,95,108,95,94,108,95,103,95,109,102,103,105,97,108,109,101,95,106,96,117,100,106,95,107,98,100,101,105,96,96,106,91,99,106,84,98,102,112,95,113,97,103,86,111,110,95,90,94,107,92,110,100,98,110,93,109,101,109,102,111,89,106,99,97,98,100,105,94,95,108,93,108,103,88,110,102,112,113,91,83,96,89,116,96,92,107,103,104,107,90,94,109,105,96,103,112,96,100,100,100,92,92,96,99,97,111,111,109,103,97,97,83,94,104,104,110,97,117,106,98,98,95,102,85,96,98,93,105,91,100,102,104,113,101,103,99,105,93,96,102,87,107,87,95,117,102,90,84,94,91,110,117,99,97,103,87,105,95,90,108,101,111,104,105,108,96,108,113,105,110,106,103,92,92,89,90,100,113,94,95,102,94,104,101,98,87,95,106,112,112,100,96,112,90,87,99,106,105,83,102,107,109,106,97,110,108,97,110,96,100,110,96,106,107,103,92,87,107,99,96,88,98,98,99,102,109,116,96,94,107,96,111,98,94,108,89,95,88,94,103,103,93,109,106,104,104,104,109,101,101,100,103,106,107,95,98,95,99,89,98,101,103,102,94,107,104,100,100,98,116,93,94,107,106,104,108,102,102,95,98,97,94,96,120,92,92,98,99,101,108,92,100,105,98,100,91,102,110,101,100,102,102,88,91,98,103,96,109,98,101,87,101,115,117,108,98,100,123,104,103,101,105,105,98,102,89,61,95,102,113,102,101,65,108,95,101,97,96,98,92,111,104,101,101,113,111,88,98,101,88,98,98,100,100,100,98,102,113,107,105,92,88,87,105,98,95,96,106,119,89,101,94,102,105,99,106,83,108,88,95,102,92,93,105,98,81,92,90,111,109,99,87,113,100,93,96,97,94,99,98,100,102,101,95,98,103,112,107,104,98,106,99,94,86,100,95,100,101,117,103,107,97,98,108,89,107,93,101,97,97,112,108,100,94,101,98,91,95,105,98,104,95,102,94,101,102,101,106,114,92,99,96,102,99,86,85,99,110,86,98,106,84,100,102,91,93,111,107,104,117,105,92,105,103,106,101,105,98,95,96,97,94,95,102,94,99,108,107,101,87,107,104,100,101,96,91,90,105,93,105,104,101,101,102,100,99,98,76,102,117,89,112,98,80,103,90,106,92,98,107,92,103,113,107,97,114,99,98,99,95,103,97,102,107,95,103,101,100,101,99,88,96,108,111,99,95,104,111,93,97,106,111,99,97,101,98,98,105,93,91,89,106,106,96,105,100,99,96,98,96,102,101,91,111,110,106,104,104,111,105,106,105,99,100,100,99,110,109,110,101,93,96,95,94,100,96,105,99,98,111,100,107,104,108,77,104,114,100,94,93,97,105,102,93,103,91,105,92,110,101,108,95,103,109,105,110,97,97,94,103,91,97,80,91,105,95,104,113,98,90,101,99,97,102,92,99,92,93,98,90,103,91,99,100,101,87,105,101,88,95,99,105,97,95,93,80,101,98,98,106,98,105,93,95,95,95,91,93,97,110,103,72,97,100,92,104,108,85,68,103,101,104,92,92,102,97,105,106,98,114,109,102,135,96,96,91,104,81,111,96,81,90,90,112,97,96,98,93,100,107,88,106,95,97,99,99,98,97,92,108,114,102,103,102,98,105,82,94,101,102,103,108,116,105,97,90,98,107,117,101,94,96,105,94,109,107,102,101,99,104,69,89,100,96,84,97,101,106,95,102,73,91,92,89,104,106,100,99,116,114,95,105,114,121,84,95,93,95,106,105,96,92,94,96,102,114,97,96,98,98,101,107,95,103,102,104,113,109,111,102,103,110,103,99,101,103,97,108,105,93,92,103,128,103,102,96,95,101,103,109,85,103,94,122,104,110,113,98,96,96,102,104,84,99,97,99,88,96,113,104,93,92,89,90,113,99,87,113,112,103,98,101,109,101,101,102,109,92,98,99,79,100,102,104,93,112,93,106,91,114,104,94,109,107,98,97,112,87,100,97,110,106,105,93,97,99,106,87,106,112,101,97,99,102,106,92,95,109,91,98,100,104,68,102,95,89,96,105,112,89,95,105,104,102,101,110,105,118,74,83,93, +691.64941,114,96,99,77,87,97,95,104,113,100,91,111,104,112,96,97,110,105,105,100,92,102,99,80,95,90,96,98,101,91,104,103,118,97,109,106,100,93,84,100,93,119,106,111,108,98,93,103,122,87,95,94,100,101,111,109,99,87,113,99,87,100,103,96,107,113,100,106,101,107,97,103,108,99,94,108,99,95,104,98,111,92,107,100,111,96,102,111,102,86,99,119,90,103,91,97,102,100,105,115,100,111,108,109,96,86,98,101,96,90,99,104,117,99,127,102,95,100,106,102,107,104,95,103,98,99,97,91,105,110,100,106,101,120,86,99,91,99,97,108,83,111,92,109,100,101,105,108,113,94,96,105,109,102,96,102,109,100,99,113,95,94,111,102,90,98,102,108,103,107,96,105,94,117,102,99,105,101,89,98,113,118,95,110,115,101,100,94,109,95,104,102,96,98,98,115,98,105,107,100,108,106,106,109,98,95,90,109,109,95,112,99,112,101,97,101,121,104,100,101,112,104,92,102,106,110,92,103,100,110,87,97,102,97,103,107,106,96,112,72,104,91,116,100,111,97,93,101,97,102,94,95,99,100,102,109,109,101,104,130,93,112,98,97,83,112,99,95,101,103,98,104,95,95,97,106,106,118,101,95,110,113,99,100,96,90,83,91,103,101,91,97,100,100,103,108,92,94,107,106,107,114,99,117,92,104,100,97,92,102,100,97,118,105,101,102,101,101,99,101,95,109,103,92,110,99,107,99,118,99,136,96,107,114,91,106,101,113,95,104,90,106,101,95,104,110,87,103,104,104,98,104,107,100,79,95,109,92,95,106,109,106,99,105,96,95,104,104,103,93,103,103,94,110,104,103,103,114,92,105,105,97,105,117,107,103,97,95,101,95,110,99,100,111,109,102,90,104,101,88,101,104,104,106,98,86,101,86,95,90,91,96,103,107,105,105,99,90,93,104,91,99,114,100,96,94,99,116,96,101,95,104,106,99,88,104,104,103,101,97,107,104,91,98,95,90,96,103,96,112,97,102,112,105,96,104,86,91,106,99,94,108,106,99,111,103,87,92,99,100,114,104,103,87,89,106,103,104,105,98,99,98,106,78,104,92,104,92,98,109,101,107,91,116,99,104,103,91,106,97,102,90,104,90,100,98,102,95,108,107,113,110,101,96,95,109,96,109,96,91,105,94,104,93,96,95,106,104,96,96,104,105,95,84,110,100,96,88,109,106,101,114,107,108,93,90,105,92,100,104,95,98,96,108,111,107,97,87,94,101,96,107,94,103,103,101,111,102,103,96,96,100,95,92,97,102,101,97,95,112,90,97,94,101,108,100,110,98,101,112,101,99,113,103,87,96,97,88,82,98,104,104,95,104,88,94,102,103,99,98,92,102,111,109,94,95,87,101,106,99,88,105,104,107,111,95,112,101,102,114,98,107,96,101,91,106,95,106,114,98,102,101,96,101,94,87,97,79,107,101,107,108,91,102,88,97,109,100,104,109,103,108,95,102,103,110,109,94,110,102,101,104,102,94,113,100,102,97,108,102,108,112,102,109,86,109,105,98,106,97,103,102,106,94,107,92,93,109,97,88,102,98,114,88,109,112,114,111,104,102,107,102,99,99,90,102,94,106,105,97,101,100,97,117,94,92,106,100,106,109,111,97,96,98,103,116,105,108,114,119,97,111,114,101,113,95,95,99,105,106,121,106,91,98,104,113,104,108,104,105,112,96,99,97,99,100,100,104,99,99,88,98,82,95,105,86,96,93,105,97,105,113,106,104,83,117,112,98,108,106,108,106,99,106,118,97,101,98,90,103,102,101,109,109,102,108,102,107,98,94,104,101,95,100,112,99,98,101,108,90,103,97,97,102,105,105,106,98,104,104,106,93,91,100,95,99,114,108,105,113,107,102,99,88,98,100,100,109,95,90,96,107,112,113,101,107,104,98,91,98,99,102,102,105,69,87,94,107,112,111,102,108,98,101,99,126,114,97,104,103,71,96,101,98,106,114,108,100,98,104,115,109,103,98,97,91,104,104,104,97,91,107,99,104,91,90,101,97,104,105,97,112,117,113,104,94,113,100,101,109,101,94,100,103,105,93,105,110,119,108,106,97,113,100,103,92,96,97,109,94,100,103,93,105,92,100,91,107,93,100,106,105,106,107,99,98,103,102,99,96,118,98,102,97,102,91,113,94,99,105,93,105,109,101,108,100,106,99,95,101,103,107,92,87,108,96,91,102,100,95,106,96,92,100,95,101,88,112,105,117,103,99,100,111,104,97,111,110,94,101,89,114,113,93,92,103,100,77,93,116,109,109,74,98,101,107,102,96,95,95,100,100,101,102,94,88,114,104,102,105,97,101,104,93,106,109,113,110,94,89,99,97,93,100,97,109,101,100,95,96,84,102,101,101,96,113,104,100,108,94,114,116,106,109,102,95,102,99,104,93,94,97,91,98,103,93,100,94,97,109,87,83,113,99,106,93,105,91,98,104,103,91,102,101,91,97,96,100,100,84,96,109,94,108,102,102,75,111,95,89,105,103,95,104,92,93,115,64,100,77,104,104,95,99,100,100,104,99,96,98,102,97,100,101,96,99,114,92,109,88,101,98,115,103,106,90,90,102,97,100,100,83,101,106,101,110,92,106,100,104,103,103,92,88,97,91,99,100,97,98,109,88,90,99,95,101,84,117,105,108,89,99,94,98,99,108,94,91,89,109,91,107,113,101,105,103,107,95,100,93,88,107,99,99,100,98,104,113,105,97,103,91,94,101,94,100,100,102,112,103,100,83,88,98,102,98,102,85,109,99,106,93,105,112,106,112,106,107,98,93,102,104,101,90,88,97,101,91,106,102,100,85,93,86,105,96,110,95,109,99,104,104,99,109,88,99,102,99,111,117,94,100,106,102,109,79,103,103,101,107,104,109,96,76,105,91,93,102,96,91,108,100,108,101,97,90,94,99,98,104,104,90,93,94,112,111,105,105,105,108,96,99,106,103,109,101,111,104,101,105,91,87,88,98,110,140,107,103,84,101,91,89,104,96,111,113,103,78,106,100,98,87,105,92,100,97,95,92,104,88,115,108,93,117,105,104,104,106,96,92,102,102,102,114,100,101,95,98,97,102,95,97,112,118,96,97,108,110,114,95,102,106,104,107,111,106,98,104,87,104,131,87,102,101,96,94,117,102,101,107,90,96,104,98,110,92,95,103,98,107,88,92,94,93,97,102,101,91,107,98,100,108,100,103,98,96,101,102,105,98,94,98,102,94,92,98,86,103,110,101,103,98,93,104,107,107,117,100,101,112,105,83,112,98,113,90,90,88,96,103,95,101,101,104,106,105,113,100,95,92,91,93,109,106,113,105,101,107,104,108,90,109,91,94,91,110,99,104,110,109,97,99,100,106,101,105,109,110,94,94,91,95,100,103,94,98,101,105,117,101,99,94,111,99,101,97,100,103,99,93,102,108,100,91,104,95,97,112,91,96,102,102,102,118,104,104,109,96,101,93,108,97,93,102,99,97,92,108,100,108,100,104,109,90,95,94,80,95,90,87,66,96,94,92,103,98,103,101,103,104,98,94,103,102,91,103,92,95,108,103,97,106,103,100,101,84,108,106,101,112,101,102,98,90,108,96,97,97,105,102,104,89,105,102,97,101,97,98,100,86,96,106,105,94,91,91,88,103,104,103,76,82,96,123,101,105,100,97,100,96,111,95,96,97,95,98,97,93,98,103,93,103,93,99,87,113,110,107,100,100,92,94,94,96,102,102,105,95,112,102,101,102,91,99,100,92,91,101,88,107,95,104,92,108,107,99,116,85,102,99,101,101,102,92,102,95,83,88,95,92,95,108,95,112,110,106,96,98,105,100,96,99,88,95,104,101,105,91,97,99,97,95,104,91,100,89,112,93,106,86,106,102,102,91,107,102,96,104,113,99,83,94,98,109,90,98,89,108,97,98,101,105,103,95,109,94,97,105,91,113,104,91,90,101,105,102,107,95,105,97,110,104,93,98,106,106,99,104,100,106,108,102,83,99,105,120,97,80,96,98,101,96,103,99,101,105,93,73,105,99,100,107,102,109,98,108,93,114,87,99,94,92,89,96,86,97,95,93,101,107,72,98,110,107,99,95,113,113,100,108,94,102,99,106,104,98,98,102,100,100,108,101,91,109,90,100,91,115,104,104,109,106,96,96,103,100,100,108,104,102,103,95,109,96,103,105,92,101,104,91,92,102,106,88,105,99,93,96,92,102,115,81,104,104,94,95,101,98,94,111,110,102,99,105,103,93,97,83,92,73,92,107,96,107,99,99,87,89,97,116,81,91,105,103,113,87,110,110,103,95,101,119,113,98,107,99,102,108,98,73,96,99,110,92,102,93,97,106,93,101,88,90,115,100,97,104,97,102,96,88,94,101,103,88,102,91,101,96,103,103,90,99,97,101,98,108,92,105,108,96,95,93,98,100,102,94,96,99,102,92,112,87,97,108,96,100,94,106,107,114,87,97,99,106,105,91,97,106,96,109,95,101,88,74,103,103,101,76,96,100,104,106,126,98,92,112,91,102,101,91,107,91,100,107,107,96,104,100,93,98,90,107,88,103,105,117,104,110,102,101,101,91,107,108,113,86,103,94,87,91,83,99,98,98,99,97,108,95,97,94,107,100,95,98,106,99,109,100,96,104,97,106,109,99,107,103,101,96,111,94,94,109,95,97,100,94,94,93,98,92,101,101,93,98,99,101,101,104,105,92,84,111,108,108,93,98,93,84,98,89,107,101,86,98,93,104,96,109,106,104,91,92,87,101,110,100,98,100,101,113,100,103,88,96,83,106,102,97,93,91,107,97,77,109,99,99,106,103,104,82,105,88,105,94,97,102,98,108,81,104, +691.79071,108,104,89,110,89,85,89,86,100,91,83,86,112,108,101,108,85,110,116,96,121,98,96,110,94,106,92,94,97,102,91,103,115,101,101,87,95,89,108,98,94,109,108,95,101,104,97,99,93,98,91,95,94,102,107,103,97,90,104,95,86,99,96,98,97,121,91,101,98,112,94,95,82,92,89,96,87,92,103,104,100,104,103,105,100,106,95,103,103,100,106,104,80,95,105,104,102,101,102,106,103,113,90,106,105,98,107,88,109,94,110,108,97,93,96,97,98,104,92,88,106,109,109,102,91,89,102,98,69,96,103,102,83,99,110,107,98,123,98,105,97,114,92,98,106,106,92,96,97,98,97,102,92,87,95,102,97,103,92,96,107,102,108,94,94,90,106,101,101,105,73,100,99,95,94,126,90,87,103,99,88,103,105,98,110,95,119,100,107,99,99,100,102,95,93,102,95,109,100,95,102,90,93,99,97,102,112,100,103,68,99,89,105,113,105,98,107,120,98,89,108,98,106,108,103,105,104,98,99,106,96,104,85,80,113,102,111,91,100,91,98,95,100,99,92,101,105,104,122,105,99,100,98,107,102,90,91,105,100,99,108,97,115,102,86,97,120,105,83,93,98,94,84,91,101,100,104,107,101,127,100,101,103,105,93,104,91,112,92,101,107,109,102,113,86,99,99,91,101,98,94,90,108,95,109,100,97,103,98,106,84,108,110,105,110,99,106,108,96,95,109,101,110,98,109,117,80,99,99,97,95,96,99,110,112,99,98,109,102,104,104,86,103,89,99,108,104,104,95,108,104,102,97,109,102,109,93,101,93,96,101,98,100,88,94,92,99,103,86,106,102,94,103,97,98,105,101,113,105,97,106,106,95,99,101,95,101,100,117,88,99,102,85,104,103,99,97,100,96,100,101,100,107,116,98,105,103,98,108,101,96,109,102,105,100,92,90,90,88,94,101,89,103,84,86,98,83,104,99,98,104,102,103,101,107,99,79,97,100,102,92,98,105,110,96,100,106,104,107,97,95,105,102,111,104,69,91,102,110,105,93,105,86,100,91,121,112,100,100,93,103,89,102,99,92,113,92,109,91,92,87,101,114,97,103,95,97,105,105,86,95,94,102,75,111,99,95,97,89,104,99,112,104,105,106,95,93,104,97,99,100,93,105,95,103,104,98,110,79,77,59,96,100,116,100,104,95,102,95,102,96,116,97,101,108,112,102,104,108,97,105,103,96,99,98,96,98,88,104,101,116,109,112,84,98,105,107,82,117,105,104,118,96,99,104,94,97,97,89,87,83,100,107,80,106,120,90,92,103,109,106,112,100,102,97,87,114,105,99,106,93,112,104,103,104,120,106,113,105,92,104,109,102,110,99,106,71,106,94,87,99,102,102,100,104,97,92,95,100,92,92,104,99,104,93,104,96,101,104,104,101,94,98,104,90,91,104,96,108,105,100,117,100,106,97,101,98,106,85,98,102,119,109,97,93,94,121,106,107,105,106,103,96,91,88,90,94,113,102,94,110,101,104,101,108,107,95,104,92,100,104,95,103,110,98,91,86,105,100,103,101,102,89,112,108,102,99,121,95,96,101,96,102,91,113,100,115,101,107,100,94,103,92,99,73,94,100,87,96,99,95,93,104,109,104,100,96,90,97,102,129,102,100,91,110,101,97,102,124,103,106,88,106,107,105,108,97,88,96,105,107,102,130,88,103,86,96,117,109,95,95,103,104,92,94,102,99,107,99,100,99,106,106,105,105,107,96,111,98,92,108,97,103,97,103,93,107,113,112,106,99,99,93,117,107,93,101,109,106,107,100,106,105,101,97,102,106,103,106,105,124,104,100,97,105,105,113,96,107,97,101,105,100,97,103,94,109,102,109,90,104,95,96,93,103,106,104,104,93,100,107,96,117,110,102,90,102,104,92,90,98,93,99,102,95,105,102,116,90,106,101,101,91,98,96,105,98,99,108,97,108,99,113,93,86,96,96,105,90,101,102,109,109,104,103,102,94,118,100,114,113,94,110,113,105,112,95,89,75,99,87,114,109,120,93,92,101,110,90,103,102,105,105,109,97,103,99,117,100,106,98,105,89,96,99,105,96,120,103,105,94,103,97,93,110,94,90,90,120,108,95,100,104,101,103,83,104,121,99,95,106,99,107,112,96,94,98,100,99,104,109,109,105,117,109,96,90,97,87,95,100,106,105,95,98,104,99,102,117,86,109,96,105,92,106,93,86,108,91,98,109,104,100,96,97,94,101,96,95,104,102,111,100,97,106,100,101,96,98,105,90,107,107,101,113,107,107,102,98,105,104,86,99,86,97,96,99,97,97,95,117,97,103,95,114,90,104,100,105,96,93,106,115,90,90,98,106,88,107,100,100,96,85,107,101,84,109,95,98,71,97,113,105,112,107,101,107,99,103,96,96,104,87,99,96,100,103,102,106,111,92,98,100,105,100,117,107,107,87,99,107,99,97,80,102,102,93,90,96,106,91,94,104,89,100,113,105,91,99,99,104,117,100,91,103,102,99,97,95,95,100,105,105,105,102,114,106,100,95,104,99,103,96,96,114,112,94,97,103,104,120,98,108,101,95,123,96,93,101,98,99,121,103,105,99,86,103,107,100,106,100,91,104,87,90,117,91,100,106,95,97,106,125,108,101,95,104,81,116,105,97,102,84,112,92,101,113,100,104,95,94,98,113,99,97,101,104,97,98,101,116,107,108,95,103,98,110,103,102,111,97,97,100,95,100,104,87,98,88,106,113,106,87,92,123,90,109,85,100,103,106,103,102,103,93,97,96,112,109,101,96,99,95,97,100,99,106,117,108,98,94,104,97,105,94,100,121,90,99,98,88,99,103,112,106,99,104,103,109,99,101,105,102,99,103,101,102,102,110,111,95,109,94,110,98,108,90,87,104,106,91,109,99,109,98,86,105,100,96,111,99,94,113,104,102,87,112,111,94,109,119,91,102,101,105,92,102,108,101,97,101,111,106,115,99,98,125,109,102,98,90,90,100,108,106,89,97,101,93,104,106,108,109,91,100,99,120,95,99,101,100,106,90,102,98,100,99,103,91,84,98,105,96,97,96,84,111,105,102,92,98,114,103,104,94,104,89,98,114,106,116,96,104,101,110,97,108,100,94,122,102,87,97,98,102,107,105,97,113,95,112,101,93,106,105,99,101,83,93,90,105,95,92,102,106,93,98,103,87,114,105,103,101,98,93,110,108,91,106,108,98,91,104,103,107,115,107,99,98,98,91,98,104,96,93,87,109,99,90,106,101,94,109,98,93,114,98,83,107,98,100,99,110,99,103,102,97,90,105,89,96,120,103,102,87,106,101,97,115,98,93,95,104,89,89,108,104,107,99,103,101,98,101,105,95,102,102,94,96,103,99,105,91,109,94,101,86,91,105,100,104,102,104,91,97,102,104,93,91,101,87,93,105,98,103,98,102,99,102,95,111,109,112,102,96,102,112,95,111,107,105,100,102,99,108,106,97,110,101,89,101,112,101,110,94,101,108,95,106,117,108,113,102,99,108,103,105,94,105,93,113,97,105,105,100,128,101,103,101,121,101,103,99,109,101,102,117,104,97,112,101,92,100,102,96,110,87,98,106,100,97,114,93,116,98,103,99,105,97,107,104,100,105,116,106,113,108,108,103,97,106,101,106,103,101,97,116,92,121,105,101,116,103,113,96,109,109,99,93,106,92,105,101,102,102,98,101,97,97,96,103,106,102,99,105,103,109,103,104,108,98,102,102,108,102,104,95,100,99,95,103,113,97,105,94,93,95,102,81,97,109,102,104,98,106,105,103,104,106,99,92,106,91,104,92,105,105,90,112,100,97,112,107,102,103,104,98,95,98,103,105,107,98,95,111,91,111,104,96,94,83,110,100,109,99,102,104,103,120,98,111,99,98,105,101,98,99,110,109,88,108,98,107,93,106,102,98,103,101,98,92,105,101,100,104,104,95,77,99,96,100,99,100,104,108,100,110,111,104,106,102,99,97,92,95,94,109,108,107,102,105,100,96,108,105,106,104,95,92,96,114,113,102,94,102,104,105,94,101,99,100,103,100,92,109,114,102,124,95,87,101,111,98,103,109,106,101,102,95,106,97,93,100,103,114,92,93,105,100,78,113,122,102,90,101,115,101,94,104,99,104,99,77,93,92,97,87,106,100,92,108,98,101,96,115,100,100,94,105,96,100,65,100,105,96,87,101,97,101,77,99,103,98,100,100,109,93,109,102,100,104,99,107,100,92,97,105,96,93,108,101,96,103,98,108,101,91,102,103,105,107,100,100,99,108,99,92,100,99,94,100,97,106,85,106,94,101,92,104,89,98,105,97,110,83,111,109,93,98,100,106,107,99,110,92,98,94,125,98,95,105,91,103,108,90,97,108,105,104,85,126,99,92,104,89,103,69,104,102,107,119,97,117,109,93,102,117,93,110,99,111,92,119,96,98,105,97,63,103,94,102,93,93,107,90,105,112,112,87,109,99,94,98,104,104,99,84,103,103,100,99,109,95,87,92,111,93,104,104,108,100,108,101,100,100,104,107,106,93,113,102,102,78,103,107,104,97,93,99,92,108,100,103,102,102,109,105,105,103,101,96,109,104,112,112,99,99,104,107,90,101,90,105,110,95,103,97,89,101,91,96,87,84,98,110,101,90,109,117,99,102,101,107,99,96,106,94,98,106,104,93,99,96,97,76,103,102,96,93,110,105,92,96,107,94,109,86,106,115,102,102,106,107,100,107,92,80,111,99,98,93,108,105,101,100,111,96,99,107,99,99,93,80,96,114,106,111,106,95,107,83,101,98,94,98,93,106,99,109,101,98,92,90,92,98,102,97,79,103,99,123,87,94,97,83,112,107,104,103,96, +691.93201,105,105,96,102,71,108,91,92,92,103,95,87,108,105,111,95,88,117,86,88,115,91,78,67,114,113,101,96,113,93,94,102,105,99,117,97,98,90,104,88,102,110,99,104,101,112,91,110,88,101,105,114,107,94,101,87,101,86,100,108,109,113,107,95,100,106,109,99,94,91,106,100,99,105,93,99,93,101,110,84,98,103,101,95,101,91,94,118,100,105,95,91,104,97,96,96,98,92,103,92,84,104,84,98,104,104,101,100,104,99,100,102,107,99,104,109,78,90,108,96,108,107,99,99,106,106,102,101,112,104,89,113,104,92,115,103,100,109,116,104,93,105,100,94,99,82,101,101,95,101,85,105,93,95,103,106,98,97,106,101,106,106,94,116,102,98,99,112,117,90,91,110,103,98,93,100,103,89,108,97,92,112,94,92,108,97,91,101,82,96,96,99,102,106,94,101,100,97,103,128,102,93,113,94,100,91,96,106,102,100,88,96,109,103,105,100,88,91,104,96,99,107,97,106,96,104,102,94,94,109,98,110,94,111,93,103,101,100,103,96,100,102,105,100,90,94,97,93,107,94,103,99,93,104,99,104,110,83,92,104,101,104,107,100,96,99,94,100,99,97,95,106,108,99,106,96,104,97,97,102,101,107,102,95,107,106,117,98,100,102,78,108,86,125,108,100,98,105,96,119,103,101,107,107,94,96,107,106,104,100,104,108,92,101,107,97,101,93,102,97,89,94,103,101,101,100,96,95,112,93,82,84,108,104,106,100,103,91,100,93,98,106,95,87,100,105,85,101,104,96,91,102,104,97,101,96,100,100,97,103,91,106,91,96,101,120,118,96,97,108,101,95,114,98,103,88,102,101,113,71,101,104,97,97,87,99,104,98,88,98,106,98,97,96,104,105,102,102,108,102,92,95,93,96,106,104,74,101,101,89,97,91,105,90,99,95,100,101,94,116,104,96,96,106,89,92,99,85,98,81,108,111,98,110,98,110,89,107,95,99,102,90,105,105,94,96,98,96,92,101,90,98,108,92,98,92,93,98,101,105,103,100,91,99,99,116,101,96,96,97,99,114,98,105,90,112,104,113,110,89,97,103,104,101,100,101,104,106,93,99,108,106,107,82,101,100,107,92,105,108,103,113,97,95,100,106,100,99,97,108,102,110,86,87,101,90,101,102,97,86,101,95,108,89,109,108,96,92,110,91,102,105,93,88,96,104,102,99,100,96,92,105,84,106,103,107,99,99,91,91,99,105,102,103,98,109,97,94,99,102,102,108,109,98,98,101,99,105,109,90,94,94,106,92,113,95,95,104,98,79,99,94,99,96,100,91,106,94,99,104,108,106,98,102,101,104,94,108,103,100,95,96,104,97,98,98,94,105,91,106,98,101,91,111,101,96,105,99,98,110,104,96,107,102,102,100,103,108,100,108,108,93,97,85,94,86,94,98,79,87,97,95,92,91,82,91,99,102,109,103,98,117,107,99,109,108,115,110,100,104,108,101,99,110,100,99,112,108,109,110,111,106,99,91,96,99,131,96,101,98,103,109,101,80,87,99,109,110,94,101,117,96,93,118,90,107,95,95,100,110,95,87,105,95,104,108,86,117,104,96,103,88,100,91,101,92,99,108,99,92,100,102,98,113,100,88,101,103,102,105,103,101,74,88,89,107,99,98,119,98,108,97,91,102,93,94,111,100,104,118,101,100,100,84,101,107,92,103,102,104,79,112,97,94,88,88,97,96,95,110,100,106,90,90,98,101,96,106,115,94,104,117,103,114,108,102,89,101,95,109,95,100,108,76,94,101,109,88,104,92,103,109,99,105,110,100,101,95,99,96,110,91,111,93,102,91,109,100,107,95,98,98,110,108,105,98,108,116,101,90,99,100,104,113,110,103,104,96,86,106,98,91,104,91,83,105,97,92,95,96,86,97,90,101,101,101,104,109,95,101,101,89,106,98,112,101,104,99,102,101,102,116,100,112,88,101,104,103,101,101,110,107,105,108,121,111,107,88,101,89,114,105,100,101,103,81,98,105,107,101,133,95,104,102,83,102,88,107,86,95,91,95,100,107,108,103,108,100,101,104,76,102,103,99,103,105,95,116,96,97,102,104,105,100,103,97,108,91,106,104,96,94,102,121,107,105,96,92,102,83,86,95,106,96,106,100,93,102,97,100,92,99,99,100,108,96,109,105,99,87,99,83,99,90,96,99,102,79,95,105,107,100,104,110,102,98,87,101,101,96,95,101,113,117,99,102,98,121,94,71,95,109,80,104,97,104,101,95,91,94,93,93,100,99,96,104,102,91,101,100,103,116,101,99,98,101,100,92,103,109,117,104,106,101,103,97,104,111,110,100,97,107,95,106,95,97,108,112,101,104,91,116,105,81,100,99,61,96,99,96,95,102,101,109,103,106,105,100,100,99,95,108,101,108,118,105,92,102,97,87,104,87,89,101,109,92,103,95,107,108,91,97,96,94,107,100,105,102,102,77,100,99,99,92,97,103,113,88,113,106,98,109,104,96,104,90,105,111,93,101,96,108,92,102,96,93,95,102,108,112,96,109,103,100,112,105,122,105,104,100,101,108,92,95,99,106,96,103,94,106,107,81,108,106,100,110,98,72,92,119,102,84,106,98,92,103,100,101,106,103,104,110,101,96,99,111,102,98,88,117,109,98,85,101,109,104,101,107,98,94,104,98,110,110,95,107,103,87,94,98,103,107,118,79,105,97,109,101,94,104,112,101,103,101,87,107,115,106,106,89,99,103,93,108,99,101,105,96,101,110,100,97,92,106,116,99,111,105,97,117,98,93,105,90,101,97,104,88,107,102,91,93,108,103,107,113,97,103,114,99,96,104,107,109,103,87,88,87,99,98,91,100,99,98,99,96,104,93,103,108,111,98,98,106,100,93,93,87,95,89,105,109,105,96,101,109,105,96,95,102,101,108,97,98,101,91,98,97,91,96,103,112,109,98,103,109,104,110,103,100,103,106,98,104,102,110,102,103,108,97,112,94,97,121,119,116,103,96,104,100,117,98,107,89,95,106,99,99,106,101,104,100,100,100,97,108,106,103,98,100,97,108,99,90,95,101,99,112,101,109,101,100,104,98,103,97,109,106,95,108,94,85,102,101,94,109,96,92,113,101,88,96,106,100,73,113,103,109,125,105,102,93,99,84,105,110,114,109,106,110,95,95,112,115,102,100,110,95,102,109,105,103,96,105,94,106,95,100,103,98,91,99,73,113,108,100,100,115,98,111,99,103,104,105,109,98,104,97,96,106,118,103,120,102,110,108,103,92,104,106,100,96,94,103,105,111,106,91,109,103,102,100,108,95,95,120,81,101,106,101,98,109,103,94,97,99,87,97,101,104,99,87,89,100,98,102,109,93,111,122,90,101,87,109,103,106,105,93,96,97,103,94,91,119,102,97,98,105,99,103,98,88,98,113,101,101,97,93,103,109,99,103,111,100,107,95,98,100,104,88,100,110,98,113,103,103,102,96,102,109,104,95,112,125,103,105,96,101,100,103,98,113,97,109,103,98,98,100,109,111,106,111,100,99,106,107,113,103,92,101,105,96,93,114,94,95,107,108,105,105,96,112,99,91,108,92,112,95,99,103,95,89,104,93,95,87,83,103,99,101,102,96,100,108,117,120,109,104,107,96,106,108,104,105,96,103,106,105,94,99,102,112,99,102,80,110,104,106,113,94,103,102,105,84,111,105,95,88,94,99,110,92,121,102,103,92,102,100,90,105,86,98,103,93,102,93,104,103,107,99,109,85,65,98,92,105,105,99,98,116,110,101,105,83,95,98,99,106,94,99,89,106,99,109,100,110,106,95,103,87,103,114,102,115,96,103,92,95,99,92,98,100,106,95,100,108,100,94,97,102,95,101,90,108,106,114,95,98,125,102,92,111,100,91,104,108,104,98,113,98,98,108,92,94,99,102,100,115,97,106,115,105,101,92,106,94,106,100,94,101,102,104,111,87,98,94,101,110,102,93,108,97,108,105,103,114,98,109,120,97,98,96,95,96,103,100,102,102,115,88,108,96,97,73,105,108,87,102,100,103,102,106,107,100,112,95,99,100,101,104,100,91,101,117,98,107,105,91,73,104,90,101,98,93,115,94,104,106,108,107,109,97,100,106,106,87,103,104,100,101,106,108,105,106,102,102,104,94,98,95,102,106,112,101,101,100,118,101,88,107,101,108,103,100,117,101,106,102,108,95,102,113,103,106,92,106,107,104,88,99,119,106,110,116,105,87,100,104,99,113,93,95,106,101,98,99,100,96,107,111,110,109,114,106,98,113,100,100,98,107,107,91,102,91,99,101,102,103,87,104,94,100,95,106,105,94,95,100,94,120,104,107,110,113,100,106,108,101,99,101,95,104,94,107,99,100,95,99,97,100,98,94,100,93,117,100,99,95,99,103,96,112,110,108,100,110,100,87,110,102,83,86,83,112,103,100,108,109,102,100,98,97,106,85,104,102,106,112,105,114,93,84,101,97,101,106,110,102,112,102,103,97,101,103,101,94,98,109,125,101,96,112,111,107,108,100,95,98,106,84,99,102,105,97,108,81,93,104,127,101,112,104,103,111,105,106,92,121,101,91,113,105,101,112,90,101,104,103,110,99,130,102,112,104,93,101,102,101,106,99,96,95,96,109,108,116,107,106,104,97,95,106,110,97,99,100,106,111,109,104,91,108,101,98,91,100,96,99,106,97,98,103,98,114,81,94,95,99,104,92,98,74,102,97,106,83,101,100,97,106,99,104,86,84,104,102,86,98,95,101,109,112,124,98,103,104,105,96,105,108,99,86,90,118,105,101,95,103,120,106,95,95,104,99,93,103,106,113,109,97,110,104,104,96,99,96,90,80,88,105, +692.0733,101,105,106,96,106,75,93,96,106,107,99,90,117,83,117,92,98,102,98,101,109,83,100,111,110,102,95,99,113,102,103,102,90,104,92,95,109,97,101,101,94,116,107,114,102,113,117,92,111,106,94,105,105,74,102,99,94,88,113,103,97,98,110,98,99,116,104,96,116,102,112,99,89,107,83,104,105,109,94,108,91,104,101,95,91,100,99,110,97,96,90,109,91,119,97,102,101,95,108,98,105,108,96,110,97,113,90,107,85,96,96,106,111,100,101,85,98,102,101,97,109,92,102,108,113,108,106,95,99,108,97,105,111,105,101,112,96,96,100,103,108,107,104,99,93,98,113,102,99,103,90,103,95,97,103,95,93,93,91,98,98,94,101,101,98,98,109,95,101,97,98,109,95,102,105,115,99,78,102,107,91,94,101,105,100,112,108,97,102,112,100,102,109,99,88,106,105,103,103,100,96,105,98,116,105,107,96,99,104,95,98,100,100,102,104,96,109,106,103,95,104,102,109,101,92,113,105,103,89,109,108,93,109,95,97,92,103,113,101,102,110,107,104,110,102,106,108,106,100,100,106,110,102,93,102,112,108,116,105,102,97,102,101,102,92,96,106,104,106,102,111,122,102,105,117,93,93,105,99,94,108,93,90,103,106,85,75,104,117,98,107,110,98,108,113,101,118,106,105,99,99,99,103,97,101,109,101,111,95,108,94,103,107,92,95,120,93,103,100,99,94,107,91,119,116,98,101,93,101,103,98,99,104,105,102,112,94,102,97,85,101,107,107,99,106,97,94,117,103,108,102,96,97,112,99,99,104,104,93,95,101,102,99,113,90,94,106,108,104,110,103,75,117,93,108,91,92,96,93,113,98,110,98,94,92,98,105,104,97,107,104,104,98,92,101,123,89,109,103,95,104,96,107,96,103,85,108,108,101,103,94,74,107,133,104,98,105,69,95,103,103,96,98,97,94,96,92,96,94,112,101,104,100,102,90,110,94,91,100,102,110,95,94,90,95,83,103,86,106,99,107,126,93,101,99,93,88,108,121,108,105,109,108,91,99,98,99,99,115,99,113,111,113,96,107,98,89,101,101,112,95,95,105,94,100,102,89,96,100,95,101,112,109,105,91,100,99,93,104,100,101,100,104,101,99,111,104,103,107,100,108,98,107,102,98,104,98,98,74,104,95,109,103,104,106,99,110,102,99,106,100,89,105,77,100,105,98,95,93,110,86,112,96,102,101,105,102,105,98,105,100,113,109,118,99,109,101,100,106,96,118,107,99,94,103,90,96,104,107,99,109,98,93,103,96,99,106,105,100,91,103,113,104,99,107,97,113,101,113,96,99,109,99,101,108,83,99,105,98,106,84,110,98,105,95,95,93,101,95,96,109,101,95,116,94,106,95,99,99,89,99,99,99,99,106,106,80,108,104,105,96,86,109,103,103,93,98,102,104,95,103,109,102,100,93,86,100,92,113,104,104,98,99,109,109,101,100,110,107,101,104,102,105,112,95,110,104,97,111,102,103,107,103,99,125,113,93,104,88,107,116,91,94,91,99,96,104,103,94,95,94,96,78,112,101,98,106,99,94,88,74,101,100,114,104,102,110,87,87,104,102,105,103,95,86,113,105,93,109,100,105,94,93,99,90,101,98,96,113,102,108,111,98,106,101,106,106,97,107,98,99,107,100,104,99,97,104,94,97,94,96,107,84,104,99,101,92,105,98,103,100,105,96,107,93,98,96,97,99,100,96,108,102,109,104,87,111,104,97,102,95,91,110,108,80,100,113,103,92,110,102,101,87,109,111,111,100,100,104,113,106,110,102,104,115,98,101,101,101,99,100,100,102,97,107,90,104,93,101,96,95,103,108,96,104,99,93,106,90,105,91,102,106,95,96,94,109,101,100,96,106,106,110,95,95,95,101,106,90,97,102,94,94,108,94,103,101,105,98,97,108,88,103,99,112,99,93,100,111,101,92,112,83,106,93,85,101,97,103,98,98,118,105,97,113,93,97,104,105,96,91,115,94,108,106,94,100,99,97,86,105,96,109,104,99,100,102,99,92,114,105,102,100,105,96,105,101,110,103,97,106,87,106,104,97,94,99,109,86,102,104,103,106,108,104,99,108,98,98,105,94,92,105,97,98,94,90,108,107,103,104,111,112,99,115,105,88,98,91,111,98,117,106,95,96,89,98,93,113,100,117,112,106,103,103,99,106,90,94,90,112,104,101,98,95,104,104,97,97,91,118,95,98,97,95,100,97,102,108,105,112,100,97,100,94,102,97,87,96,113,94,104,98,103,96,104,101,109,97,99,96,105,94,89,109,94,100,125,105,101,106,90,104,91,97,94,104,96,98,121,85,91,115,99,97,109,110,110,101,123,106,117,105,105,116,103,89,107,96,99,96,104,96,98,101,105,97,97,110,101,100,99,86,89,111,90,100,108,105,106,107,98,91,97,83,111,99,98,106,102,105,106,116,96,107,104,99,110,102,99,106,97,107,97,102,103,92,99,110,96,93,104,102,102,93,104,95,96,97,107,105,108,99,112,90,98,96,102,96,97,121,102,67,86,103,108,82,99,103,92,96,83,100,109,105,83,94,94,104,105,114,94,99,105,87,107,108,95,95,88,97,93,95,98,109,107,103,104,103,104,105,98,102,102,97,99,116,101,95,100,72,101,95,99,109,102,104,99,79,91,97,98,107,113,96,97,99,103,112,107,94,115,102,102,103,99,109,100,98,102,106,110,96,97,87,98,97,110,102,98,98,86,101,89,105,104,104,96,98,112,99,89,107,100,104,94,105,98,112,116,101,106,115,101,106,102,123,104,96,97,100,110,96,101,96,90,97,104,112,97,101,101,111,95,114,96,107,98,102,84,103,99,104,95,103,104,92,96,111,109,96,105,105,106,87,110,121,98,124,113,94,98,97,105,103,109,108,113,111,94,91,109,99,102,96,126,93,106,94,107,107,99,101,84,102,113,99,98,109,103,102,107,108,100,106,108,96,91,102,102,106,93,99,105,110,103,94,110,93,94,94,119,103,98,117,102,104,102,117,102,94,106,104,90,93,98,100,100,102,89,110,111,108,86,103,93,106,102,95,103,95,109,105,100,108,98,89,92,107,97,107,90,74,101,98,99,117,89,98,81,95,106,101,89,105,106,103,97,101,99,111,103,97,123,94,101,107,106,89,112,99,102,100,87,102,98,103,102,89,102,105,106,120,99,112,105,91,92,112,97,111,107,103,110,107,118,107,115,96,98,106,98,109,101,118,102,83,108,95,111,104,103,97,108,106,92,97,101,102,102,100,98,106,65,98,111,89,105,100,105,97,94,95,88,101,105,95,89,96,98,90,101,94,111,92,108,109,124,91,94,92,93,104,103,106,112,101,106,97,101,96,106,91,107,99,107,100,111,93,103,92,97,98,101,92,102,105,83,101,96,102,111,91,98,96,97,101,98,94,96,92,113,104,90,94,107,94,104,97,92,114,92,93,114,107,97,105,97,86,94,110,111,101,113,100,78,85,101,104,100,89,102,106,87,98,97,83,82,98,105,104,95,98,104,95,105,107,94,96,102,96,100,98,108,103,90,105,114,95,101,96,93,102,107,91,103,102,97,111,121,95,107,116,90,103,96,96,107,113,101,107,93,112,107,98,109,91,109,96,91,107,124,107,91,94,90,87,96,107,101,95,102,97,103,94,95,101,103,94,97,99,100,104,96,72,95,102,95,102,96,103,99,102,95,103,99,105,104,102,94,107,97,109,98,105,102,101,94,101,104,95,91,99,91,103,85,102,107,107,107,104,83,99,95,96,97,104,97,101,103,108,114,90,101,91,98,97,99,96,93,91,109,93,103,109,99,93,107,106,87,86,96,101,98,109,96,96,93,91,102,111,101,102,102,99,99,94,103,109,113,114,97,107,91,92,90,101,99,98,111,104,109,90,104,96,90,104,99,91,96,95,106,96,101,103,90,90,98,98,93,89,108,94,98,109,93,87,110,100,109,106,108,102,93,103,102,93,90,87,101,95,96,92,95,84,103,108,99,105,99,91,92,99,113,103,100,98,93,95,98,111,107,86,93,92,110,97,109,96,103,104,102,99,96,101,98,91,98,109,103,105,94,94,96,101,94,86,97,117,105,96,89,99,93,104,94,108,102,87,102,102,111,89,102,117,116,89,101,96,113,106,88,102,94,91,95,94,102,105,100,106,94,106,88,104,104,96,99,99,84,100,102,124,93,92,109,104,105,114,110,112,110,106,96,102,104,102,106,97,105,95,104,94,116,98,101,100,92,102,108,112,104,111,94,96,101,94,95,108,101,104,101,101,98,100,97,100,103,116,101,102,105,105,96,90,106,104,114,101,106,102,121,96,100,86,109,103,110,88,106,88,108,94,104,107,103,92,100,95,107,106,102,93,100,117,102,96,84,96,109,98,99,96,115,99,97,103,83,113,99,95,103,113,95,106,105,94,107,112,94,98,106,113,103,106,100,99,94,105,104,88,95,95,99,102,92,98,110,113,100,98,92,104,109,102,104,100,102,96,133,105,101,94,92,101,93,101,87,100,100,103,100,98,96,117,99,98,80,108,89,96,97,80,99,97,131,110,102,96,101,105,106,98,93,109,97,93,99,101,107,109,99,100,102,101,110,108,89,111,94,100,106,106,102,99,96,103,99,98,91,97,107,110,106,98,99,111,98,114,103,107,95,93,102,94,109,103,99,102,99,102,103,104,102,94,110,92,103,102,95,98,79,104,116,92,105,87,98,102,94,102,113,101,101,106,102,91,102,101,110,113,94,83,91,101,84,111,107,102,111,95,97,96,103,104,110,96,100,98,99,103,94,103,92,117,90,106,106,98,107,117,108,117,103,105,86,92,121,98,90, +692.2146,100,96,74,86,88,98,97,90,101,100,96,104,87,89,108,91,85,117,102,110,105,104,109,104,102,91,103,106,109,108,99,82,96,119,112,96,101,105,98,98,102,103,88,93,92,118,101,109,105,105,100,113,109,98,101,97,96,106,99,95,95,104,97,91,106,107,85,103,90,91,106,94,88,91,99,103,96,100,106,111,103,103,99,100,93,108,105,102,102,117,108,96,102,103,94,79,101,98,116,91,110,94,93,94,98,99,113,114,97,96,99,94,93,96,86,108,101,102,114,98,94,95,99,111,87,115,118,99,98,90,104,104,102,98,104,104,95,97,107,102,103,100,91,105,93,94,99,104,100,92,105,107,100,93,100,103,99,103,105,100,94,94,111,102,102,98,104,102,108,95,111,95,92,106,103,99,108,105,103,120,102,103,98,114,103,97,84,95,94,97,109,104,111,97,98,101,110,96,104,111,114,91,105,113,102,116,103,111,102,114,95,105,100,96,112,101,106,107,98,90,100,104,99,99,99,102,98,105,91,104,106,102,95,96,108,103,104,110,96,109,101,103,108,101,82,94,97,101,92,106,100,96,93,106,91,105,101,104,94,101,95,93,96,101,105,107,106,97,111,100,97,114,95,92,99,98,102,95,99,98,104,112,118,104,103,105,99,106,94,98,113,95,98,105,121,98,101,92,102,105,97,111,100,108,99,98,109,115,102,109,93,94,110,100,109,97,100,112,110,95,97,103,101,95,113,93,105,92,98,95,102,102,93,110,110,113,91,91,106,91,97,97,99,100,97,87,101,102,99,102,107,102,110,96,99,102,111,102,99,104,85,82,87,106,65,105,118,98,108,101,103,100,99,105,92,94,106,105,112,91,96,107,100,100,111,87,98,90,101,89,114,103,109,101,107,95,101,99,102,97,83,92,91,106,101,102,86,100,100,111,96,99,104,97,100,92,90,92,97,98,98,87,105,102,88,105,95,100,90,112,95,96,94,102,90,98,97,101,96,99,94,99,108,100,89,106,74,101,99,112,91,98,98,122,103,93,105,102,104,109,100,112,104,109,104,103,99,98,102,103,105,109,95,96,99,109,98,108,91,116,100,105,86,92,99,96,94,94,108,92,94,101,105,103,92,89,97,98,92,101,105,89,100,101,99,109,93,105,107,103,102,78,97,115,112,122,105,98,109,97,108,84,106,104,88,102,110,102,97,99,90,108,104,105,101,106,100,100,102,105,101,104,103,114,105,100,100,96,99,96,107,100,107,99,89,105,99,105,96,98,114,98,104,94,107,89,103,96,117,97,106,106,103,126,93,89,96,103,106,100,108,99,96,94,94,96,95,109,111,87,90,113,101,91,113,110,105,90,104,103,100,87,91,112,89,90,89,104,112,98,101,96,113,73,112,99,95,92,103,105,90,90,104,97,94,91,95,95,98,98,107,113,104,95,99,95,94,105,100,100,112,97,103,91,97,73,111,102,105,103,114,109,124,104,112,106,111,114,106,106,105,104,105,106,98,123,113,86,111,94,105,94,77,117,102,108,95,99,109,79,100,103,97,102,108,83,105,97,102,103,93,97,100,103,113,111,100,105,101,102,108,95,112,88,109,111,98,96,98,99,136,110,110,109,92,102,97,87,96,95,86,114,95,108,87,98,101,107,107,97,99,100,90,105,104,100,99,103,104,118,110,84,104,94,115,105,101,107,91,98,108,102,101,111,99,124,105,84,86,94,96,94,109,101,90,101,101,102,101,94,95,98,102,103,90,109,102,90,100,98,94,112,108,110,99,91,99,95,103,108,111,110,91,105,107,108,97,107,94,102,92,100,88,108,106,107,99,100,108,98,91,88,96,111,105,108,105,98,100,103,105,118,90,101,92,105,94,103,96,105,100,97,105,95,102,96,107,106,105,94,98,101,95,93,109,100,91,97,92,98,102,84,90,100,105,111,106,104,104,92,100,104,94,107,95,99,94,107,111,91,98,105,99,101,102,107,106,112,104,105,94,103,96,102,104,89,104,97,100,97,95,124,105,101,89,89,102,115,92,100,93,108,110,98,104,98,87,105,94,99,92,95,115,104,103,100,113,87,112,110,105,91,95,91,100,100,96,94,101,109,110,102,64,102,92,103,101,96,103,98,101,134,118,99,91,104,73,109,105,101,94,112,95,90,109,90,99,98,104,90,95,112,100,94,99,82,101,105,68,104,109,108,108,105,102,104,98,95,95,93,104,102,103,98,91,102,103,95,103,106,108,96,93,101,109,107,113,104,98,117,104,89,109,91,116,102,91,96,95,103,92,100,95,105,95,114,105,97,104,110,103,106,108,89,83,105,87,98,95,112,100,93,106,87,93,97,101,100,103,102,79,97,97,90,101,103,105,103,91,94,124,110,104,107,89,116,99,98,120,110,107,94,112,101,96,98,104,106,95,104,100,102,91,106,95,101,97,98,120,92,106,92,96,104,104,94,97,99,108,96,103,103,106,83,74,106,92,113,105,102,95,104,96,98,100,107,102,102,97,94,103,98,99,105,94,87,77,100,96,111,105,103,106,103,102,96,112,94,107,96,109,100,101,87,110,99,93,93,106,91,115,111,97,111,100,91,106,94,113,109,104,87,113,105,97,103,94,88,106,83,102,94,106,93,110,97,102,95,92,92,94,98,107,102,108,106,91,101,97,110,104,102,107,103,97,106,92,100,108,101,103,101,102,137,89,101,97,100,98,105,100,108,108,94,116,100,98,97,95,90,107,104,104,96,106,105,101,106,106,100,100,80,111,113,92,112,104,105,108,102,102,111,98,98,111,96,105,93,95,120,109,108,116,105,100,99,102,109,104,101,91,95,103,101,98,102,95,94,91,97,106,110,97,104,105,103,109,114,92,101,100,98,96,103,92,101,94,95,107,113,101,105,105,99,105,103,83,80,110,102,92,100,96,102,108,82,100,98,100,111,112,87,103,125,96,100,113,100,99,101,85,103,96,78,104,90,106,111,124,86,124,103,102,99,106,110,105,86,99,118,134,110,92,109,102,93,108,102,94,94,109,94,108,87,100,109,103,99,109,100,106,94,83,102,97,87,98,117,113,94,100,106,115,98,116,89,99,99,95,90,100,103,98,94,108,91,85,107,115,99,102,96,60,115,98,94,110,94,105,107,98,101,109,106,93,97,101,100,113,100,98,110,101,100,94,100,91,104,95,103,103,99,95,86,94,95,109,96,98,107,101,105,91,100,99,109,103,103,96,103,87,107,98,62,98,75,94,105,106,90,99,94,99,109,109,102,72,99,102,103,103,100,101,110,99,106,105,104,109,110,101,105,91,89,77,97,100,95,104,103,98,106,87,93,107,104,98,77,115,93,105,104,93,109,103,99,108,104,104,106,104,107,100,113,94,94,108,95,104,104,90,123,91,100,100,92,100,79,106,91,120,101,95,59,103,91,106,104,92,100,106,104,102,105,101,103,107,95,100,90,88,103,109,106,108,115,90,87,110,101,99,99,99,109,101,103,105,110,105,105,94,111,103,106,109,113,105,108,91,101,103,102,103,105,100,99,110,94,97,100,94,86,93,85,107,97,93,100,112,108,85,102,100,99,117,103,105,88,103,96,87,99,123,96,99,86,96,100,115,104,111,102,94,91,99,88,96,104,96,99,101,102,103,94,81,96,96,91,108,101,76,114,99,96,83,99,95,101,106,92,113,106,89,91,101,95,91,91,98,101,107,71,101,85,105,93,103,97,64,93,96,102,102,95,104,106,94,106,96,84,120,87,101,103,97,106,99,100,96,112,104,102,94,106,108,97,97,100,98,95,95,103,107,103,104,94,112,94,94,106,100,95,104,104,94,106,103,104,100,103,101,92,103,101,90,108,98,99,92,105,109,99,77,103,94,103,103,102,96,99,104,93,110,99,106,106,93,75,132,90,109,105,79,103,98,91,95,99,108,113,87,106,102,94,95,87,107,113,100,106,116,89,97,82,103,109,98,105,102,104,110,95,97,108,78,87,89,106,88,100,103,100,95,111,92,107,102,94,92,104,114,98,100,101,97,98,108,90,102,90,126,99,111,91,93,95,103,98,109,105,106,98,85,111,98,107,89,98,92,103,94,104,100,101,101,105,101,96,79,103,98,93,93,99,93,98,98,110,102,112,101,100,90,94,94,102,97,103,105,92,98,99,66,94,109,95,94,108,95,99,88,99,96,115,96,98,95,127,102,98,97,88,100,110,103,96,103,99,102,99,90,98,105,110,112,95,109,87,104,111,102,106,102,91,108,102,98,103,88,98,111,99,103,108,94,98,99,106,112,101,98,100,103,106,94,89,120,102,102,113,105,96,105,99,103,112,95,105,98,117,105,91,111,99,101,98,108,102,94,103,102,100,102,98,106,99,115,99,107,100,103,82,109,93,104,102,95,100,96,91,98,102,91,107,112,109,107,104,95,96,102,103,110,100,102,107,105,95,109,101,96,104,103,90,100,106,107,113,94,95,106,96,91,103,102,83,103,91,104,99,88,102,107,108,86,105,96,106,98,136,113,95,104,101,101,93,118,97,103,105,94,98,97,100,98,110,91,91,98,85,100,98,105,100,95,113,99,87,125,100,96,102,104,101,92,99,109,94,112,99,105,107,101,102,104,104,102,97,91,84,96,105,103,110,92,100,103,104,106,92,91,107,71,96,111,104,112,91,110,88,107,105,102,91,73,106,103,101,104,103,96,102,95,106,96,95,106,103,102,111,103,100,105,103,91,95,112,103,98,90,102,107,110,104,117,99,99,109,91,92,104,103,100,101,95,111,66,102,96,111,121,100,92,99,97,102,105,110,96,106,105,113,106,112,100,116,99,104,108,87,111,92,109,92,98,97,99,89,105,89,100,102,87,102,130,86,102,100,66,91, +692.35596,122,82,83,87,102,109,112,98,93,91,93,103,94,102,105,99,97,115,88,104,95,102,111,103,109,106,109,92,110,101,93,99,105,100,112,105,106,89,107,96,91,100,90,109,86,99,99,99,80,119,94,100,101,95,101,104,102,93,92,113,105,111,111,102,99,109,94,115,98,95,100,101,99,88,97,96,82,99,110,95,97,100,107,116,98,103,106,107,87,98,100,102,95,97,84,101,99,87,89,92,133,98,98,99,109,97,102,102,99,98,98,101,105,95,106,109,92,104,104,97,108,97,96,111,107,106,103,117,103,100,97,95,72,103,102,96,100,107,107,103,93,97,104,96,98,94,107,111,87,94,97,95,98,100,94,99,103,92,103,90,97,105,87,90,111,94,97,95,100,84,99,106,87,90,98,101,103,88,100,105,114,108,104,100,101,91,104,101,107,101,105,88,104,97,104,98,94,89,105,110,101,107,90,101,95,98,102,97,107,101,90,112,111,106,103,100,93,93,103,106,105,105,106,86,83,107,96,101,99,87,105,93,98,92,102,111,104,103,106,98,91,101,107,96,92,102,97,100,107,112,102,112,92,106,105,100,102,99,70,106,101,104,107,100,95,97,123,94,101,110,100,101,103,104,106,103,109,102,96,90,80,96,105,97,100,109,109,97,97,99,88,104,100,112,111,121,90,93,96,99,104,101,95,97,98,94,107,104,92,115,102,99,99,100,103,95,107,99,103,99,99,103,98,101,99,90,114,90,110,112,114,96,99,109,105,102,97,95,90,100,83,97,102,106,80,97,110,113,101,98,104,113,94,95,119,99,98,114,105,108,114,106,98,105,113,101,101,103,95,108,109,103,99,101,104,90,101,89,106,109,109,94,83,96,91,89,99,99,104,103,76,90,110,105,98,100,96,96,106,100,96,97,84,94,108,94,95,97,81,98,96,108,99,94,92,97,97,81,89,102,90,92,91,100,116,95,101,100,91,108,96,94,104,92,101,115,88,100,101,98,104,96,92,112,92,97,104,105,108,105,91,91,99,104,102,102,96,110,96,92,98,103,100,104,103,94,96,92,99,86,98,115,107,93,94,105,79,117,104,98,99,104,114,107,90,108,108,99,117,96,108,107,100,96,87,93,83,102,95,80,95,108,101,95,98,97,101,99,105,114,93,100,104,98,109,97,97,92,101,97,97,97,86,125,107,87,94,94,96,102,97,109,97,101,102,97,95,95,100,110,99,100,99,105,109,94,102,86,102,101,103,94,96,95,105,90,94,90,100,103,113,83,99,108,99,113,114,104,99,82,103,101,99,103,87,105,97,110,96,105,81,99,62,98,95,91,114,109,98,91,84,106,105,99,102,99,90,97,114,97,82,116,97,93,101,95,96,99,94,99,78,87,105,107,103,94,100,91,107,108,103,95,99,96,100,114,101,94,107,105,97,95,92,90,92,99,109,105,99,99,98,100,113,93,96,86,102,95,98,107,91,93,92,91,87,95,105,95,100,103,100,99,110,98,98,82,104,112,88,97,125,102,112,100,103,104,106,67,103,104,108,88,107,94,95,100,105,101,103,102,83,89,99,107,100,99,110,87,91,84,93,102,98,108,106,109,99,102,97,106,113,101,105,96,98,104,99,94,98,97,91,92,100,103,96,69,116,106,83,106,110,94,92,109,96,96,117,122,108,106,104,88,111,100,92,104,90,89,94,107,100,101,99,97,125,103,96,102,101,96,97,106,100,93,90,102,99,87,114,85,112,93,95,83,96,115,97,106,104,88,103,92,99,99,91,93,100,104,92,96,92,103,90,102,104,90,93,87,104,104,86,99,93,99,82,102,100,98,99,91,94,103,93,106,103,95,100,92,92,75,92,107,98,96,99,119,89,101,103,92,94,93,79,105,105,103,98,109,86,108,113,98,100,103,100,92,107,108,97,89,99,108,106,96,98,103,99,105,96,109,109,103,106,103,126,105,99,105,107,90,95,100,98,107,99,108,105,91,105,109,99,87,103,91,101,105,90,104,105,108,81,106,77,115,110,91,91,99,95,105,96,104,102,95,100,98,99,103,100,99,104,103,99,95,99,87,106,105,93,98,98,101,92,95,97,98,105,93,104,87,104,102,100,94,89,105,83,102,95,99,98,105,101,96,105,105,99,95,91,104,101,95,106,104,106,126,97,97,99,105,106,110,92,96,78,95,110,98,94,114,100,68,113,87,102,99,94,100,95,98,91,102,102,96,96,107,106,111,88,102,85,93,105,94,85,102,92,100,90,117,92,87,105,97,112,98,96,100,92,103,85,92,97,115,92,106,100,93,97,88,96,112,107,70,107,94,100,103,109,95,113,99,97,95,110,104,105,96,105,108,92,103,88,82,104,102,108,84,112,105,97,88,97,98,96,106,103,105,97,102,102,90,102,116,85,101,95,99,85,94,96,103,101,96,96,105,96,77,100,88,100,111,103,108,105,88,117,110,117,103,79,89,104,99,93,103,98,92,99,107,104,107,96,95,91,95,98,94,95,104,98,96,100,100,99,76,97,101,97,100,102,94,98,105,95,110,97,96,102,113,97,117,98,85,105,113,88,97,73,91,104,95,87,117,100,97,101,100,108,92,100,90,97,98,102,95,94,100,100,91,113,100,115,93,105,99,87,109,105,95,95,96,109,108,100,109,98,97,98,97,104,99,108,97,100,110,99,96,105,101,96,106,110,96,98,108,106,84,106,98,95,107,105,103,98,96,91,100,109,105,105,99,91,98,107,117,102,95,98,100,105,101,93,98,101,94,93,104,100,103,98,89,98,106,109,100,91,100,92,102,112,110,98,94,101,109,98,99,92,102,113,107,105,90,110,103,99,104,96,113,89,82,99,113,103,91,108,95,107,105,112,105,97,109,109,105,109,94,95,115,102,113,101,95,104,105,94,109,117,91,91,112,91,85,97,110,95,108,106,98,103,112,100,101,93,91,98,97,103,100,96,105,98,104,95,98,96,104,124,97,88,104,92,91,101,102,107,109,97,74,105,105,115,90,107,100,88,105,106,108,113,88,106,92,112,100,95,112,116,101,95,96,108,106,97,99,100,109,94,99,105,101,104,91,106,83,99,126,111,100,93,116,106,107,86,100,101,103,99,97,92,94,98,95,98,96,93,105,95,93,74,102,98,123,99,112,96,100,104,99,107,96,102,102,103,102,95,94,103,106,105,96,99,96,97,106,92,107,99,105,108,98,99,97,91,105,90,110,112,97,76,100,96,76,109,106,88,105,112,109,102,92,92,114,93,100,110,94,101,103,100,94,106,116,94,101,105,103,87,94,100,98,89,92,94,109,99,98,105,109,82,106,102,97,97,103,104,94,99,100,91,99,109,105,96,100,98,95,89,99,95,113,101,101,104,94,107,95,103,91,99,101,102,109,97,96,104,94,96,98,94,98,88,95,97,83,98,98,109,98,92,94,104,95,100,106,100,98,114,102,102,119,111,106,111,104,110,102,123,100,110,100,69,97,104,103,97,100,99,96,101,102,87,107,98,114,111,101,118,95,100,108,113,102,104,119,104,100,109,106,99,102,91,101,103,94,99,91,103,98,92,99,85,107,104,113,103,98,97,102,91,109,94,96,112,98,105,102,96,117,92,86,107,101,105,100,94,94,107,100,101,90,102,101,72,104,103,113,83,104,102,107,88,112,95,109,93,96,99,93,109,100,103,103,97,113,101,114,95,97,102,99,109,100,98,91,113,103,112,102,88,98,97,92,105,96,94,95,94,92,104,80,105,107,104,95,81,98,113,102,103,97,96,93,106,107,96,95,101,108,97,96,105,97,107,98,100,100,98,104,90,104,98,109,91,93,112,96,99,97,89,122,90,112,102,99,95,101,97,81,109,99,99,95,91,91,93,98,86,96,92,94,105,91,114,99,91,91,115,105,105,103,100,97,97,92,109,102,101,94,114,96,96,95,102,102,109,100,102,105,96,104,97,103,97,103,102,102,101,103,109,95,106,106,101,90,83,92,104,100,116,89,93,95,104,89,108,97,113,87,104,105,92,97,113,91,98,97,102,93,105,102,98,101,78,100,111,101,87,95,104,127,103,102,98,96,100,104,91,96,100,103,105,109,105,102,99,90,91,104,93,100,74,96,98,102,101,105,99,84,99,102,90,100,89,104,91,113,112,81,109,109,102,98,116,101,95,109,105,99,106,100,104,104,106,94,98,98,116,113,89,98,93,101,63,105,82,107,100,106,99,92,101,96,102,79,80,110,103,99,108,103,99,106,90,108,104,98,89,109,101,112,99,109,99,97,99,102,116,109,95,97,102,94,94,99,106,99,109,95,98,94,93,103,91,102,101,101,85,101,100,105,101,110,104,105,99,94,106,98,115,109,103,97,94,97,100,97,99,96,100,94,99,97,71,114,92,99,104,108,102,91,100,99,94,101,110,98,102,109,99,100,94,91,109,90,95,97,103,105,89,98,106,98,104,74,101,107,107,95,92,99,100,99,106,111,86,109,105,103,96,86,97,98,101,103,109,96,100,84,108,100,99,101,108,97,101,102,102,93,102,112,91,102,104,124,92,98,99,99,91,99,121,98,101,101,100,94,106,94,101,105,103,100,108,113,81,96,101,89,90,101,99,113,116,103,107,102,109,100,88,88,94,93,100,91,104,103,94,94,103,93,109,92,103,85,99,93,98,95,99,113,110,106,94,98,91,101,107,100,99,108,97,107,92,90,117,95,98,99,116,97,95,106,96,98,95,99,97,95,71,102,94,109,81,106,112,103,108,97,105,113,120,113,75,100,99,114,90,93,97,101,100,97,98,104,108,101,102,97,105,98,102,85,106,116,106,103,103,87,105,94,91,91,109,104,102,98,93,92,103,97,100,105,107,97,106,99,107,90, +692.49725,97,116,113,109,100,98,123,100,111,107,116,94,98,106,98,75,91,109,105,108,98,105,106,103,106,99,107,95,102,118,95,97,119,100,107,112,110,96,99,90,101,113,92,110,86,114,100,113,91,101,97,102,100,92,98,94,93,92,107,110,90,106,107,87,98,108,97,101,91,104,99,94,101,130,95,112,95,92,117,114,90,97,95,103,107,96,108,107,93,117,113,105,110,112,103,108,100,95,107,94,101,107,99,103,113,110,93,101,94,94,110,121,112,96,110,107,110,105,105,97,102,102,106,91,99,100,106,99,102,90,91,104,109,105,110,93,94,104,85,93,98,108,100,97,95,112,88,97,98,91,93,101,99,90,97,103,92,89,103,116,96,95,108,110,113,90,89,110,112,96,116,98,102,106,99,103,109,95,96,112,109,111,98,112,106,112,93,101,102,98,95,100,98,102,100,101,109,106,98,114,101,98,106,97,96,122,98,102,97,99,89,109,103,87,104,102,99,100,106,108,103,98,94,96,108,105,86,108,98,89,102,93,109,106,75,105,95,102,106,104,94,108,102,94,105,98,94,110,120,113,115,101,96,101,104,108,96,107,97,103,92,110,107,96,98,104,94,107,100,96,106,107,106,112,130,101,103,111,104,95,106,103,104,101,102,111,91,112,99,97,97,95,106,91,116,99,108,103,107,98,104,92,106,112,106,102,120,94,96,118,91,107,97,104,107,97,100,96,92,102,107,97,101,109,99,90,112,106,118,121,103,112,110,103,99,114,100,91,99,113,103,104,95,96,101,100,98,139,98,105,85,104,102,105,100,106,109,109,71,107,100,105,96,100,93,81,107,103,115,118,108,85,99,102,110,89,87,104,100,107,120,96,101,99,104,94,113,91,105,102,104,105,108,109,95,100,110,95,98,105,91,97,101,80,97,90,87,97,100,92,103,104,98,102,110,94,102,103,109,98,108,123,112,118,98,99,104,87,90,98,104,103,101,116,103,97,107,106,94,90,111,103,102,103,102,103,101,84,107,109,109,113,107,110,101,101,88,109,102,94,105,110,105,103,120,106,109,103,111,94,110,117,106,109,96,106,95,105,92,104,112,102,113,103,100,104,91,107,117,135,91,106,99,102,97,105,106,109,99,110,109,100,94,107,90,114,100,98,105,96,109,100,97,95,100,108,96,120,82,108,107,86,99,104,98,98,109,104,97,99,108,105,100,105,100,111,99,102,99,115,122,104,97,101,104,97,111,105,106,105,107,107,108,88,91,103,99,102,97,108,104,92,110,101,104,106,108,99,107,111,95,95,96,109,118,105,106,98,107,107,104,103,108,105,107,113,106,98,96,103,102,95,104,109,105,99,103,103,98,93,90,102,106,97,105,98,101,99,105,106,99,103,105,105,107,112,117,98,107,81,101,107,113,96,100,93,98,98,106,91,100,108,97,96,87,72,113,106,104,112,103,94,93,94,84,99,91,110,103,114,106,92,110,92,110,100,100,106,96,93,109,107,114,117,98,107,116,94,109,112,96,112,103,100,100,104,110,96,112,88,109,109,107,101,91,94,99,97,99,95,107,109,107,100,100,110,99,109,105,95,115,106,101,101,111,100,109,100,102,105,113,94,107,99,113,115,106,94,103,109,105,98,99,109,88,97,99,116,99,109,108,107,101,94,100,105,105,98,102,103,104,96,108,101,105,98,107,100,92,101,106,104,110,84,102,110,112,94,100,96,94,113,99,108,106,99,110,108,102,98,107,100,100,108,108,102,115,107,106,103,103,100,108,108,100,106,105,104,108,103,113,114,115,118,102,108,105,105,94,102,98,96,116,96,96,109,105,83,88,102,99,98,106,94,95,131,100,96,124,99,96,110,118,105,92,107,107,98,101,114,104,95,98,92,64,95,110,88,116,92,100,94,111,104,104,100,113,106,115,102,103,98,103,98,102,105,106,105,105,110,94,114,108,108,109,106,110,94,107,88,110,101,111,103,111,81,100,94,98,101,104,110,102,100,91,89,101,112,111,106,96,100,105,113,106,110,100,126,102,108,110,110,97,107,110,95,96,96,105,103,103,103,107,101,95,97,118,100,113,101,111,88,109,99,92,100,98,112,101,105,101,98,112,108,105,101,87,106,103,102,103,95,95,105,95,120,99,106,106,103,94,111,98,95,99,102,108,97,91,110,109,98,113,101,101,109,97,106,100,119,100,100,110,101,98,103,111,109,87,100,116,113,99,91,107,97,99,103,96,111,93,94,101,102,100,94,116,99,91,98,93,105,101,105,104,108,109,80,98,107,97,103,87,96,114,101,101,100,98,109,85,102,103,98,106,109,92,109,106,106,98,99,99,94,98,100,96,116,82,104,101,103,84,108,107,95,98,99,101,108,91,97,117,111,102,121,103,88,107,105,91,95,105,106,114,99,99,108,104,98,101,120,98,95,107,103,80,88,110,101,94,101,94,98,102,110,105,91,115,107,94,94,99,91,102,94,114,101,105,95,87,96,108,92,101,109,103,94,100,105,86,100,103,90,103,113,97,96,89,100,109,125,96,104,103,101,89,105,98,102,117,109,94,67,98,98,111,110,103,108,115,98,88,106,95,100,101,101,95,95,106,112,112,99,87,110,103,90,95,91,104,105,110,102,105,114,108,97,103,105,107,79,99,99,84,95,104,94,127,98,102,101,86,103,113,86,101,114,99,104,97,86,105,86,99,76,101,88,106,106,99,101,98,107,100,101,107,103,102,98,104,103,107,117,110,102,108,99,94,106,104,101,117,112,100,100,110,98,92,97,95,123,99,115,101,99,94,103,90,105,108,99,106,95,107,99,85,96,92,103,91,92,106,105,100,99,104,102,110,106,94,106,96,105,103,99,103,102,103,99,114,116,124,112,101,68,111,112,116,103,117,104,92,109,96,104,100,91,117,106,94,107,87,101,105,102,107,93,98,109,102,103,104,104,95,102,100,103,96,106,77,108,95,101,111,101,112,101,103,94,94,99,100,96,105,102,115,104,96,87,95,107,109,106,96,93,102,98,100,102,101,100,84,98,96,95,94,98,103,107,98,105,99,104,97,94,102,100,104,111,118,125,93,103,105,93,105,107,97,102,105,103,111,105,111,113,104,109,113,85,95,97,91,94,98,105,99,101,106,91,93,108,99,115,109,92,83,104,105,103,107,107,97,101,100,104,114,107,101,101,101,101,96,95,114,113,98,107,96,101,110,99,99,93,105,106,104,75,104,101,96,117,103,100,109,103,98,109,98,96,103,104,95,100,88,104,103,110,107,101,113,89,105,104,105,116,109,101,92,107,108,107,109,101,94,104,111,106,104,91,107,109,104,86,97,109,116,94,101,99,98,111,98,92,95,104,96,121,94,121,92,104,104,89,98,98,101,105,104,109,81,101,103,111,102,106,95,111,102,102,102,92,113,105,93,105,108,101,102,88,101,97,109,105,103,100,100,92,98,97,84,105,108,86,111,108,95,98,113,113,103,115,99,106,99,115,87,108,100,103,116,91,96,110,95,113,103,110,105,115,91,101,109,109,104,90,92,100,94,108,104,106,100,107,115,100,97,103,101,93,103,101,92,119,116,88,109,95,106,83,105,97,103,112,108,105,109,121,106,112,99,108,106,112,94,109,116,89,100,106,103,106,102,108,102,97,92,102,106,104,102,99,84,92,98,94,96,105,98,105,102,99,100,95,106,85,112,101,97,93,108,98,102,97,109,106,100,100,105,85,104,95,99,99,100,103,99,109,88,98,121,101,95,92,109,98,105,95,109,99,82,106,110,106,112,101,106,111,98,88,98,109,95,99,94,96,94,105,87,115,94,100,104,95,96,99,115,98,98,97,102,104,106,94,92,88,89,108,109,95,106,94,93,103,110,98,91,108,101,96,106,103,105,98,97,92,105,93,107,93,96,101,94,91,97,105,100,97,110,87,109,108,90,105,96,106,94,79,102,93,91,93,97,100,123,108,102,99,91,99,98,100,93,101,106,95,97,101,105,99,110,99,106,109,110,98,108,92,103,95,100,98,104,107,114,107,106,93,113,102,89,96,98,98,93,103,93,96,97,102,118,95,107,106,99,109,87,101,101,104,84,100,94,101,85,103,102,100,103,93,105,87,89,96,94,92,98,100,108,100,113,108,93,94,109,96,110,100,105,100,96,109,106,109,100,91,97,106,102,111,117,93,107,107,99,101,106,99,102,99,99,97,108,101,94,101,99,103,107,95,109,87,112,114,107,98,92,95,107,100,99,99,101,102,94,108,108,101,104,83,111,99,104,100,94,97,95,112,93,107,103,112,102,103,102,109,102,96,100,101,88,105,75,113,88,99,110,94,105,109,91,91,106,107,104,95,101,105,103,92,87,95,96,111,98,96,105,103,109,91,100,84,102,113,90,92,93,105,93,96,104,105,97,113,98,93,91,92,98,108,95,97,108,108,100,96,93,104,109,100,91,84,103,111,105,121,112,98,97,92,106,107,93,107,100,105,98,97,93,105,87,100,93,103,112,108,99,103,104,101,97,99,100,104,104,108,94,93,108,88,105,98,111,105,107,114,79,97,105,99,111,90,100,116,99,101,99,96,105,98,90,108,96,103,108,118,111,113,102,96,98,95,88,103,106,100,100,90,105,102,102,105,96,103,101,94,103,97,109,99,92,98,91,100,105,96,103,108,78,97,106,110,117,97,106,99,101,95,104,96,109,107,104,90,86,105,92,94,106,96,103,112,117,99,107,112,93,123,102,88,89,107,99,101,91,110,102,115,95,98,103,97,112,89,98,100,102,96,124,102,98,95,88,102,112,101,101,99,98,100,101,112,98,99,93,116,96,102,109,101,97,100,91,113,100,94,99,88,101,93,111,106,110,116,107,103,77,95,113,94, +692.63855,98,99,96,89,90,102,114,102,97,105,109,96,86,106,104,92,100,103,102,95,95,97,99,96,104,101,92,102,91,104,99,96,103,93,114,104,106,104,105,91,113,102,105,96,110,104,104,105,86,112,111,99,101,95,108,89,101,89,90,100,105,95,96,95,111,109,79,121,87,103,90,112,100,99,100,117,101,99,109,103,104,106,92,114,97,99,102,113,93,105,90,101,91,96,106,93,95,85,92,101,116,101,105,108,83,96,101,97,88,102,98,104,105,92,103,112,97,110,119,104,110,97,87,92,105,103,107,93,96,109,100,108,102,101,98,106,97,108,96,101,105,108,103,106,102,91,103,95,87,109,92,93,99,113,101,105,104,106,104,98,105,92,120,86,105,102,108,99,117,99,99,106,117,91,97,107,91,103,103,107,93,102,97,89,104,96,86,95,112,89,101,101,105,101,105,95,101,108,108,102,84,92,102,104,104,98,98,104,100,108,95,98,105,87,108,95,99,112,83,106,108,105,106,102,100,105,97,104,107,109,93,103,109,105,105,109,102,112,82,98,92,93,109,135,103,106,96,113,91,106,102,106,99,101,104,105,90,116,99,101,95,103,93,93,100,112,99,95,96,90,101,96,103,95,106,104,131,103,97,93,101,102,80,88,99,104,97,105,96,109,102,114,109,101,104,99,106,95,114,99,99,99,103,116,102,106,100,105,103,104,93,108,100,95,105,112,107,103,104,96,109,96,107,99,101,90,94,102,107,110,109,111,104,115,95,95,100,104,103,102,116,100,101,134,101,104,82,101,104,115,110,116,82,96,101,88,111,115,97,94,102,103,90,100,97,87,99,109,101,95,104,95,105,101,95,95,111,101,98,108,101,70,100,98,93,87,119,100,110,100,114,97,95,99,103,97,107,98,102,90,102,107,107,98,106,122,91,100,104,90,98,93,84,94,87,93,92,96,83,94,110,94,83,115,101,96,100,98,92,109,105,99,110,95,96,92,102,101,97,102,90,98,97,106,103,120,106,100,102,99,92,100,97,99,99,99,99,101,95,105,103,104,98,111,108,114,98,94,100,97,98,105,95,100,110,101,84,99,99,99,91,97,99,109,102,95,102,100,96,110,86,104,110,97,95,115,103,95,101,83,95,99,96,97,94,103,92,83,99,98,108,105,114,85,101,101,109,98,100,91,104,100,95,91,91,88,103,106,98,93,100,104,96,100,98,103,101,99,110,105,124,113,100,112,109,105,101,105,94,96,112,97,95,71,100,103,101,102,106,91,107,109,86,98,96,104,98,106,104,99,97,96,92,108,95,100,117,94,94,111,113,101,114,103,104,96,106,105,94,101,125,93,96,99,103,100,93,112,106,100,98,81,100,99,95,95,98,108,123,95,103,112,100,105,105,94,106,87,105,110,101,104,108,97,105,101,97,102,69,99,101,112,94,106,91,100,91,104,103,92,101,89,108,81,85,95,103,95,99,96,107,93,97,100,96,112,112,91,97,101,90,105,110,91,98,107,97,99,98,97,97,106,106,95,103,103,86,88,100,119,113,95,109,105,113,107,99,95,113,109,105,95,105,117,101,104,109,112,101,95,107,98,95,94,114,121,109,109,81,83,95,104,95,102,89,102,111,82,107,80,97,101,102,101,99,88,114,126,101,103,110,109,102,97,93,106,103,98,101,99,91,105,83,90,122,107,95,101,102,101,109,84,96,105,97,108,109,109,120,103,108,107,98,95,106,109,99,116,95,88,94,100,105,96,103,107,108,114,105,106,113,121,107,103,100,108,106,69,97,98,97,99,99,106,97,98,92,91,101,99,86,96,96,100,110,101,98,111,104,103,111,100,93,98,104,104,95,98,119,104,109,95,102,106,97,104,100,92,104,95,114,104,92,104,93,92,98,101,98,109,103,91,86,104,107,106,101,95,100,92,108,93,101,105,98,101,92,107,90,97,96,95,102,96,101,101,108,97,109,95,116,102,99,112,100,102,97,91,92,104,108,104,96,104,88,96,105,109,108,105,99,98,103,111,98,103,100,100,95,97,83,115,95,96,97,103,108,104,94,99,98,104,117,100,97,104,91,100,95,97,105,105,110,92,105,102,112,100,98,128,94,90,103,90,79,99,104,114,63,103,97,91,116,102,92,97,91,96,96,102,88,108,98,106,137,98,101,92,104,105,107,122,110,90,67,97,101,98,106,101,99,102,101,101,98,113,99,102,96,78,99,95,95,102,86,100,101,100,101,105,103,109,88,86,101,82,97,95,93,108,102,92,104,96,87,98,102,82,95,105,88,114,103,76,105,87,94,101,97,94,102,98,109,98,89,103,99,101,109,100,96,104,103,102,102,91,103,97,100,101,110,101,95,114,102,78,95,110,103,101,112,107,99,102,75,122,91,117,100,111,103,103,103,113,112,104,80,100,105,106,74,115,89,98,97,104,94,100,99,102,95,94,93,91,92,104,93,91,105,100,95,102,98,92,92,97,106,98,119,108,102,104,94,107,92,91,95,86,100,102,113,99,110,94,111,93,93,92,99,101,105,98,101,108,100,100,92,102,109,97,91,106,106,98,92,104,108,93,118,87,106,100,100,102,86,104,103,71,111,101,106,100,96,113,76,99,110,101,98,96,102,90,106,89,90,111,107,96,93,116,80,94,105,121,102,104,101,93,105,104,91,88,98,100,95,107,100,102,103,108,101,102,100,113,101,106,103,108,110,112,100,100,112,103,98,95,96,105,104,97,103,112,99,105,112,105,106,107,94,98,100,107,103,97,108,98,100,106,106,100,106,114,105,106,104,102,95,106,116,105,96,107,102,95,95,96,90,103,98,101,100,100,88,113,102,92,103,95,102,108,102,107,100,109,115,91,87,100,104,97,108,107,95,104,100,96,101,101,103,98,103,106,107,92,101,96,102,108,98,110,104,98,95,102,107,94,92,102,90,94,104,99,106,112,103,87,90,107,97,95,99,111,91,95,104,102,101,102,110,96,108,95,97,96,96,102,101,100,92,104,100,101,93,106,101,97,94,96,91,102,97,100,107,94,99,102,104,110,112,91,97,106,98,122,99,104,97,96,90,82,108,112,67,103,106,96,112,101,109,107,99,91,102,89,98,101,111,89,112,111,110,87,90,101,101,106,100,104,93,118,116,75,101,112,103,99,109,101,99,107,100,102,94,109,93,83,92,117,104,94,86,90,104,93,103,99,113,100,99,104,99,95,104,95,104,104,94,106,111,100,103,95,95,105,105,92,93,113,96,107,99,94,113,95,100,109,99,97,113,96,91,98,92,99,113,103,105,92,106,106,105,105,87,97,101,100,100,102,100,96,100,99,106,91,104,89,113,114,101,111,102,96,98,105,91,86,97,93,92,120,100,112,100,101,95,94,104,111,93,103,84,123,105,94,92,102,113,105,105,99,105,98,100,107,104,106,99,99,100,101,95,106,102,96,98,109,97,105,87,102,94,99,105,95,84,95,91,101,109,102,110,86,97,104,83,108,96,97,92,117,115,106,104,117,103,100,101,100,100,103,109,99,90,105,99,101,106,93,101,107,99,102,103,100,104,91,101,92,108,98,97,100,103,97,105,93,88,95,97,95,84,93,95,102,103,90,109,95,109,101,98,112,97,104,112,106,97,95,97,103,100,105,95,105,95,102,107,109,106,80,114,97,108,99,93,109,103,102,115,104,96,91,100,120,97,97,119,106,100,104,94,111,104,94,99,91,106,109,99,99,97,90,92,94,104,83,97,115,102,98,95,103,92,100,110,103,98,95,109,109,92,104,113,114,99,96,97,91,100,94,119,94,108,99,89,109,95,106,101,94,90,99,95,108,81,95,94,90,77,100,108,85,102,96,99,100,95,100,110,103,92,103,88,96,95,96,95,102,100,109,90,101,105,103,110,97,91,87,116,96,100,97,99,100,99,105,98,95,111,106,92,99,99,104,111,80,105,101,109,112,113,98,100,100,100,94,98,106,99,96,101,92,98,94,100,104,99,109,94,106,104,102,96,111,102,99,107,107,124,99,107,93,94,99,112,107,102,99,109,99,99,94,98,109,103,99,109,104,96,108,99,101,92,102,97,110,99,87,115,105,106,97,89,116,96,95,99,90,106,102,118,98,93,95,97,107,97,97,96,104,93,83,101,83,103,99,110,97,98,103,105,105,98,97,104,108,100,96,101,103,102,91,94,98,95,109,103,109,103,117,98,95,96,127,100,96,96,97,114,95,95,101,97,89,113,94,98,99,101,116,94,100,111,114,94,106,107,90,64,108,93,103,103,101,93,104,101,95,107,117,100,104,108,102,98,101,67,104,109,107,105,105,104,100,92,101,105,103,98,104,98,104,116,108,101,93,101,110,105,82,94,104,115,95,98,104,99,96,96,102,101,97,108,103,89,99,106,96,102,114,102,100,94,104,98,96,126,102,102,97,93,102,101,95,108,101,103,97,103,115,95,101,105,99,91,100,93,97,97,96,86,96,78,103,98,109,93,101,123,105,106,81,104,91,108,96,98,106,97,85,110,109,108,108,99,115,101,95,102,99,97,110,115,105,102,99,109,105,96,104,100,103,100,106,103,96,102,98,99,94,100,105,105,107,96,100,95,99,107,99,116,97,105,90,104,119,108,91,104,101,108,104,94,99,102,103,103,101,105,98,108,96,101,94,101,110,101,116,101,103,103,112,126,101,105,102,96,99,94,103,103,98,104,104,104,100,102,104,103,103,103,108,88,105,108,103,107,100,89,88,104,101,97,112,94,101,106,88,106,89,74,100,99,89,102,105,93,100,98,91,106,103,102,99,91,110,98,108,71,103,113,104,98,98,94,107,94,104,108,88,104,93,103,85,92,102,99,132,108,102,96,84,91,96,109,103,110,100,100,81, +692.77985,114,93,105,73,98,102,91,89,86,92,91,104,95,111,105,99,98,100,103,89,96,105,111,92,100,116,96,98,94,101,121,111,108,95,116,98,99,88,107,104,87,116,113,103,91,108,108,116,105,103,98,99,106,99,104,107,106,104,120,100,95,110,96,79,100,98,96,97,96,84,97,94,105,103,109,120,99,98,108,99,97,111,104,101,108,98,99,108,91,87,96,103,95,101,117,83,103,102,96,100,108,97,102,97,91,99,92,93,96,94,110,91,116,96,106,111,100,94,98,89,111,110,104,108,102,98,100,101,103,110,108,106,108,87,95,117,106,97,95,105,88,114,105,96,93,98,108,100,103,109,96,97,111,101,101,93,101,71,108,110,102,99,87,92,102,87,102,95,100,89,108,103,102,94,101,63,87,88,82,101,107,103,95,103,99,105,95,88,106,104,82,85,98,87,105,112,109,99,102,105,79,96,90,99,92,93,102,97,99,111,83,106,115,113,103,104,92,108,101,105,95,105,84,98,94,96,102,98,109,101,80,103,103,98,98,104,101,93,103,107,111,104,94,112,89,92,120,95,110,101,96,102,105,112,101,100,91,100,99,93,94,109,107,95,96,103,105,94,100,83,96,98,107,99,117,90,100,105,93,111,101,99,96,113,99,81,94,109,99,104,97,112,107,118,109,101,110,88,108,98,95,105,101,110,110,109,107,107,112,77,95,105,94,101,102,103,99,100,107,117,99,91,94,88,99,100,90,96,120,100,99,108,97,110,105,101,104,92,91,96,102,104,95,100,101,103,100,108,106,105,123,95,95,109,103,116,104,98,114,109,98,98,101,101,99,98,104,106,104,108,103,101,113,107,112,102,100,111,106,92,113,105,100,102,99,101,97,104,96,96,110,91,88,104,98,109,105,114,90,81,110,101,92,107,94,92,102,110,129,116,105,95,96,99,110,102,106,98,103,92,101,107,83,98,100,91,104,93,109,114,103,104,89,89,86,101,95,111,103,96,108,99,87,99,110,101,94,107,109,109,112,96,101,119,87,118,95,104,99,100,101,98,100,113,97,101,119,101,88,97,99,69,105,99,105,90,81,107,109,101,107,105,109,93,100,91,96,107,102,104,107,100,101,99,105,92,101,106,105,104,109,107,108,94,84,98,95,109,92,79,107,102,101,107,105,104,104,107,91,89,109,102,93,98,92,106,104,100,105,99,86,101,93,105,114,103,110,98,110,112,103,114,102,103,120,101,109,102,106,111,90,108,100,100,102,95,112,99,104,93,106,95,103,112,107,106,117,106,99,91,98,108,111,103,99,103,100,104,104,101,103,93,93,103,108,101,100,108,100,101,95,106,90,105,114,114,110,108,112,106,85,105,98,105,112,85,103,102,103,111,106,101,102,105,95,96,99,97,105,98,103,103,105,83,113,99,100,103,94,109,103,100,95,104,103,109,101,107,100,95,114,121,100,100,97,88,103,96,106,91,97,106,98,113,81,112,90,109,108,103,112,111,101,100,92,80,98,101,105,84,100,102,106,108,64,106,93,96,101,112,102,98,107,102,105,100,100,97,99,102,96,109,103,119,98,96,91,112,113,90,109,97,112,94,108,109,101,82,101,95,100,99,105,111,104,87,98,109,99,66,105,98,87,114,105,106,100,109,104,109,100,98,102,120,97,100,104,96,102,105,122,91,109,97,106,105,94,113,98,100,114,99,100,116,112,102,100,110,101,109,106,107,98,109,92,101,94,105,94,101,103,102,98,100,100,113,98,107,113,107,106,99,105,100,91,114,99,116,109,109,103,109,114,103,98,101,104,114,104,116,107,103,102,94,112,90,103,96,111,102,118,107,108,104,113,89,94,104,101,99,93,109,113,96,126,95,106,98,103,95,99,83,91,99,98,102,106,101,97,112,85,97,108,97,104,108,103,101,97,94,103,97,105,105,101,101,100,102,98,97,102,88,93,102,94,92,110,100,104,106,99,117,104,117,93,108,104,99,94,84,108,98,100,100,88,100,97,118,105,105,112,109,95,105,97,104,102,105,93,98,95,97,106,100,113,101,95,97,91,113,100,95,110,103,101,95,91,90,102,99,105,97,100,108,105,105,101,104,94,105,107,107,94,106,104,104,108,95,98,88,109,103,98,114,113,93,98,107,100,105,102,103,98,105,100,107,100,94,94,105,95,109,96,100,102,101,88,93,98,105,96,100,120,100,98,105,101,101,100,94,111,107,98,100,107,95,89,101,113,95,119,94,100,113,105,97,105,94,92,106,96,94,95,95,103,102,95,96,82,111,96,100,113,97,87,101,98,106,95,94,97,100,109,93,98,93,99,98,100,103,103,107,111,101,110,99,101,108,103,91,108,99,92,121,90,96,113,101,102,104,99,113,96,96,72,115,98,117,103,103,82,95,107,104,102,110,101,95,99,97,104,113,113,106,98,110,90,86,95,90,109,105,111,108,99,101,96,105,104,87,90,107,109,84,107,106,112,104,113,112,98,97,91,105,98,95,98,106,103,106,103,106,107,118,116,102,97,108,103,104,110,109,89,103,104,107,90,98,80,100,97,107,109,107,95,96,107,114,100,97,99,104,92,87,99,94,107,102,108,102,115,101,103,104,87,99,103,97,118,107,129,90,97,86,108,95,98,93,112,106,97,105,109,83,103,112,92,103,116,105,79,116,98,108,100,109,104,98,90,114,105,118,106,98,102,100,106,102,101,112,89,105,98,110,95,109,110,102,106,101,102,111,121,115,108,112,108,100,106,101,109,100,100,105,97,92,109,98,94,99,113,109,89,111,104,108,104,106,105,91,129,104,98,95,95,87,138,106,105,98,104,110,79,108,98,101,100,113,109,102,118,88,93,113,110,96,101,105,97,124,103,100,100,112,87,106,98,105,95,118,111,100,106,102,106,103,95,106,92,97,116,121,101,104,129,107,101,96,103,98,103,116,100,115,79,97,106,103,99,98,86,97,121,106,96,107,115,100,110,104,112,102,103,100,104,109,94,102,102,109,112,94,107,102,106,96,79,113,105,103,83,108,107,97,108,99,100,113,112,95,105,123,110,109,92,100,96,102,111,97,96,101,113,96,107,107,93,99,102,97,101,99,97,104,102,89,101,103,100,75,98,93,101,96,100,105,105,104,104,94,99,94,113,108,94,99,95,90,110,100,84,99,100,105,98,91,104,103,104,120,85,92,95,96,105,100,104,99,93,113,91,110,86,95,92,94,104,93,109,112,107,102,106,106,107,102,79,115,104,100,110,117,104,102,96,108,101,90,98,101,88,103,100,115,96,102,107,106,108,102,120,107,116,103,96,89,98,93,99,87,96,102,100,114,105,97,97,91,102,106,102,124,98,104,105,103,96,104,103,97,100,100,80,100,106,111,102,109,106,111,95,113,104,95,102,102,116,102,101,94,80,98,114,104,101,100,100,102,105,104,105,87,94,112,114,89,109,99,100,99,113,100,108,94,106,101,110,96,109,119,98,105,103,103,102,101,111,89,112,100,101,125,101,108,97,111,103,104,108,110,96,105,95,93,122,109,104,102,99,114,104,122,96,105,95,108,108,102,98,97,125,92,96,95,105,95,109,109,102,107,86,102,99,104,98,92,101,107,99,102,107,102,108,91,96,100,113,113,106,100,108,95,104,101,99,91,94,101,115,102,102,106,94,107,101,104,98,105,89,95,106,101,104,105,102,93,125,106,96,105,95,99,117,100,98,106,100,105,117,102,98,91,105,103,102,104,108,105,104,109,92,105,105,97,96,120,110,96,111,101,93,94,97,108,106,119,100,118,96,92,97,107,93,88,102,110,104,98,105,108,99,109,97,110,106,101,95,91,116,101,112,105,74,101,100,91,109,101,97,96,108,96,96,111,92,101,112,98,66,98,101,117,91,95,98,106,101,94,120,113,113,93,101,103,97,92,95,99,101,98,100,99,91,107,112,103,107,98,93,104,99,110,101,104,113,89,87,100,99,102,104,106,113,101,99,108,110,95,96,101,111,113,105,103,102,106,99,104,85,103,102,107,93,105,107,98,114,102,96,109,100,99,119,101,99,97,103,107,100,98,87,113,95,110,100,109,68,103,108,100,104,99,100,108,102,110,115,104,102,131,105,93,103,114,115,111,70,97,112,105,100,91,91,107,100,108,109,97,104,95,118,110,97,108,104,97,93,103,105,98,103,119,101,99,109,92,100,107,98,108,113,101,105,101,93,98,102,107,69,97,77,93,99,110,97,103,98,104,106,105,95,103,124,95,105,112,102,107,87,113,94,88,123,97,108,117,97,113,96,108,104,105,103,107,102,102,91,97,102,101,101,103,95,99,105,96,105,95,99,108,106,107,101,97,101,105,107,100,113,83,75,101,109,110,97,97,105,120,106,99,92,94,91,101,94,106,104,100,97,113,105,101,107,109,104,113,83,94,101,108,112,106,108,109,91,100,98,87,121,101,96,112,111,102,106,102,92,102,111,96,99,88,108,109,102,101,103,116,98,96,97,114,101,110,94,100,102,109,106,102,105,93,93,119,99,106,115,91,104,95,100,102,98,90,115,109,115,106,106,100,103,106,102,127,89,94,99,93,87,108,107,107,106,109,109,120,105,106,107,94,107,102,77,106,99,98,103,106,107,113,109,99,99,104,104,105,108,98,96,93,85,102,99,101,87,100,98,111,112,94,106,99,117,109,111,95,105,107,93,98,99,110,104,79,91,94,113,97,98,104,103,102,88,109,104,105,102,106,112,108,94,104,94,104,107,109,96,100,96,106,121,100,94,101,101,117,100,104,108,99,112,96,95,105,97,102,94,104,108,124,104,113,96,103,94,112,104,103,94,100,111,104,104,97,109,98,102,129,95,115,109,100,106,93,105,97,116,92,105,80, +692.92114,93,74,100,87,97,104,94,101,87,107,85,101,104,113,95,114,95,92,106,96,101,71,110,111,115,94,105,97,103,96,99,110,98,107,95,98,98,122,95,75,100,105,113,96,96,110,73,88,98,95,102,104,113,89,110,91,107,91,97,88,91,88,99,99,105,112,100,82,98,105,104,102,94,103,85,113,102,95,108,94,104,94,100,92,105,99,94,99,93,86,99,112,106,108,100,94,97,96,109,97,92,93,83,91,99,106,102,60,85,105,70,91,106,101,106,110,97,96,95,96,105,89,104,92,104,118,102,103,115,104,88,88,71,118,104,108,91,99,88,95,108,105,107,109,89,95,114,105,103,111,110,93,102,90,87,92,94,96,92,87,97,100,104,101,97,96,92,117,104,88,93,118,95,103,59,106,86,102,96,102,103,107,106,98,91,104,103,77,94,100,90,100,83,110,89,111,83,99,101,108,99,105,109,99,101,102,98,99,106,114,101,86,96,101,105,98,93,99,95,100,97,113,101,94,88,104,92,110,103,99,92,109,95,103,95,95,114,119,100,89,83,92,114,107,94,109,94,107,99,92,98,94,92,101,95,98,103,106,103,94,100,111,88,105,96,100,91,94,94,102,101,78,100,95,97,116,98,99,90,86,96,103,100,100,101,97,90,100,76,98,98,98,107,96,99,97,87,93,79,91,99,106,103,96,101,118,97,86,95,101,109,103,96,97,97,96,99,110,97,98,97,100,90,101,107,101,78,116,99,100,106,99,105,114,95,107,94,99,103,108,82,107,95,96,102,100,103,87,97,99,101,95,106,93,96,108,98,97,97,86,92,101,109,101,87,87,112,102,100,102,109,91,127,85,96,92,93,107,97,98,97,98,94,99,96,104,94,95,99,96,100,98,95,101,92,90,96,100,107,105,92,98,100,98,86,106,84,95,106,91,99,92,112,100,101,101,101,91,101,103,99,89,95,102,89,103,103,100,107,96,110,79,101,86,102,94,90,102,102,109,101,101,96,95,89,97,90,105,100,100,91,86,103,106,93,105,108,93,106,93,100,108,101,102,93,114,99,95,95,103,92,104,109,102,102,93,98,103,107,86,104,87,112,122,109,96,98,103,87,97,105,109,98,102,100,97,91,106,90,94,102,111,104,102,93,101,105,99,102,85,105,98,95,98,96,94,102,100,91,87,104,97,107,101,97,96,90,104,90,96,96,104,94,96,105,110,106,90,91,109,95,112,90,98,102,101,104,103,102,95,97,108,95,93,67,101,105,88,89,94,98,96,99,92,104,97,104,98,99,95,97,101,116,104,95,98,98,97,108,96,103,93,86,102,98,100,95,90,113,94,97,112,88,95,106,88,100,98,106,100,110,98,98,99,100,91,106,102,103,96,106,105,107,105,105,105,101,108,99,89,106,108,112,96,88,90,123,100,103,108,107,105,91,94,90,96,109,98,100,98,96,100,96,94,109,87,104,97,97,113,97,92,106,107,106,105,97,103,96,114,117,111,102,91,100,99,94,104,109,95,86,101,106,103,89,102,109,98,102,94,109,94,99,96,96,102,97,95,99,104,99,109,103,101,103,88,101,103,111,90,95,104,91,98,86,100,105,109,92,101,97,93,99,102,101,103,95,92,96,92,105,88,103,105,97,94,101,97,95,101,100,91,102,79,108,118,101,99,107,88,101,104,96,96,116,90,97,94,93,103,96,98,109,103,130,96,100,104,107,107,94,93,94,118,95,112,95,91,106,92,110,102,74,100,94,102,100,92,100,91,105,93,112,117,101,93,106,109,95,99,106,132,94,121,95,91,102,113,100,99,97,90,97,99,90,94,99,103,97,90,110,97,104,97,109,92,110,98,104,101,103,108,88,100,114,100,111,113,98,107,97,89,100,104,102,97,95,102,102,105,100,90,100,106,98,98,98,93,101,105,102,103,95,116,91,100,105,102,99,97,101,104,100,104,96,95,84,100,110,98,102,98,95,101,104,111,95,101,88,105,109,94,105,97,93,97,93,103,107,97,95,101,110,107,96,105,95,94,89,100,109,106,105,94,91,92,97,106,104,102,111,91,104,104,99,96,87,100,100,79,92,92,113,104,99,106,93,103,99,110,98,103,97,112,93,92,103,90,104,98,91,118,107,86,91,109,97,98,105,106,110,98,99,105,113,103,107,100,105,111,113,109,100,102,109,106,97,87,102,114,95,90,103,102,93,100,109,85,103,91,100,103,89,112,103,77,83,95,95,98,110,106,105,90,70,102,102,99,102,100,95,94,102,96,96,60,109,102,97,112,97,93,94,120,97,104,86,101,102,105,99,106,97,90,99,100,100,101,100,100,96,106,111,92,101,86,98,98,107,91,103,98,102,101,102,106,105,108,88,99,116,106,93,87,99,98,80,107,104,97,105,100,100,101,106,99,86,102,97,94,92,104,103,105,100,98,108,94,101,104,100,93,104,105,101,104,113,99,109,122,98,103,89,84,102,103,98,103,106,95,108,95,97,100,100,99,106,102,94,101,94,121,97,109,92,100,102,106,89,105,100,99,94,94,93,103,108,99,107,99,100,98,106,104,98,99,95,101,107,106,108,93,99,102,103,106,116,107,101,109,110,104,103,101,105,107,96,87,103,105,94,94,110,110,110,113,98,108,104,96,101,91,107,98,95,104,95,98,97,106,100,96,83,109,100,87,99,95,87,103,116,101,104,103,104,92,101,107,97,102,87,96,100,107,94,87,94,112,102,108,101,99,106,104,94,103,93,110,106,103,98,104,99,97,117,98,101,104,100,97,108,113,109,115,109,93,97,110,105,108,103,95,106,103,111,103,105,107,95,100,109,103,105,106,94,114,106,140,93,106,102,128,108,103,100,95,97,94,85,103,109,99,104,100,103,100,94,108,104,99,105,92,112,110,103,103,94,105,100,110,101,99,102,96,102,102,108,111,88,94,101,105,102,111,96,107,105,109,99,103,100,95,112,96,107,99,101,103,106,88,100,98,92,96,101,78,112,101,94,97,101,79,87,104,97,105,84,98,95,103,104,98,107,110,103,71,105,89,97,97,100,113,101,104,86,99,100,102,90,94,104,105,105,99,111,98,99,97,97,97,106,106,93,106,97,97,100,107,108,98,96,98,102,91,104,97,99,97,94,98,99,95,106,103,102,103,92,115,106,99,98,92,101,108,107,103,117,100,103,110,92,93,92,105,96,100,104,99,109,99,97,105,93,107,99,93,97,96,111,92,101,113,111,107,102,69,93,97,95,95,100,91,99,102,91,90,100,99,106,103,103,105,98,103,97,99,99,100,103,106,110,117,92,104,109,95,95,98,111,88,101,119,99,98,96,105,98,95,101,102,103,113,91,89,103,98,103,109,92,108,93,85,96,94,116,90,101,109,103,96,95,103,109,95,93,104,105,103,92,100,101,106,88,93,104,95,107,105,97,98,83,95,98,88,102,91,108,102,85,92,106,103,101,96,91,108,100,101,100,97,101,102,94,97,101,102,97,105,100,103,89,100,105,80,96,101,101,97,102,103,99,116,107,108,94,103,110,96,102,109,102,91,101,107,96,94,94,97,104,102,100,85,95,100,96,90,99,102,88,94,101,100,101,104,102,103,81,98,105,106,92,102,98,98,91,92,101,87,96,98,111,94,107,114,101,99,109,103,101,90,100,101,106,102,108,103,89,81,100,105,96,98,89,121,105,101,104,92,102,100,110,92,96,105,101,100,111,108,92,112,104,103,87,102,102,112,109,103,99,100,91,102,112,104,114,106,102,110,93,104,95,93,97,103,89,95,93,95,99,106,111,102,105,132,102,108,99,96,105,101,99,109,98,97,92,101,98,88,87,98,98,93,102,99,108,102,97,101,91,93,88,93,91,99,99,97,98,100,110,94,99,99,99,102,86,104,97,97,87,90,106,89,101,97,103,115,101,102,108,92,105,99,85,96,93,99,93,103,95,87,100,100,87,97,94,98,108,99,96,90,106,108,96,92,99,90,94,93,102,101,96,94,121,109,106,93,97,87,105,90,105,104,97,96,108,104,95,96,103,99,103,98,101,87,101,99,102,99,95,95,129,94,100,99,105,98,102,117,115,100,91,110,103,97,100,108,105,96,106,96,100,97,85,109,105,109,99,101,97,98,77,96,97,97,101,99,98,94,93,101,84,114,95,101,114,85,98,106,105,108,94,85,105,114,83,104,92,97,100,98,99,106,101,100,94,91,100,117,102,106,101,99,105,106,103,96,87,99,101,118,100,109,100,103,96,96,99,99,102,102,102,117,100,103,105,106,89,97,113,107,95,95,103,98,95,105,81,97,87,99,99,103,103,100,113,100,112,104,106,92,76,96,93,110,91,99,98,102,98,95,106,104,100,109,101,91,106,101,96,105,106,91,103,105,109,104,99,100,94,100,101,99,108,102,99,88,89,98,105,102,89,97,91,94,101,102,108,100,93,97,108,102,99,94,96,98,103,110,106,104,90,92,87,108,110,106,90,96,99,80,98,98,83,100,104,101,100,99,100,113,102,99,95,82,98,98,102,113,96,106,102,75,106,130,100,98,107,91,89,95,106,102,92,115,94,95,96,102,98,108,102,95,95,115,107,100,98,93,101,93,96,98,99,88,107,100,98,94,102,90,91,74,96,94,110,112,98,98,101,96,107,101,95,108,98,97,98,104,93,93,99,106,104,110,99,113,112,98,93,99,105,99,92,75,94,98,97,83,98,97,96,91,105,99,88,101,97,85,105,102,103,101,95,94,88,95,99,96,95,113,87,94,103,104,102,102,108,101,109,100,114,93,98,102,103,106,100,109,97,71,105,101,95,107,99,95,87,91,105,99,106,87,88,89,93,84,101,106,98,86,110,91,104,101,105,101,118,98,104,96, +693.0625,94,109,93,107,99,98,109,92,107,110,96,118,99,104,99,99,105,102,111,93,114,100,100,102,94,87,79,105,95,101,96,103,103,100,103,110,92,109,97,89,100,99,97,91,96,103,110,95,100,113,94,100,94,93,102,100,93,98,105,91,101,102,102,113,106,102,99,108,109,94,108,98,84,97,87,107,108,93,109,112,105,104,91,100,94,101,107,109,93,104,101,99,116,89,109,87,105,90,94,95,93,91,82,75,96,103,110,100,107,102,98,96,101,98,106,104,99,110,91,88,92,101,99,99,87,106,107,100,104,106,121,105,106,68,103,91,101,100,96,99,99,107,107,97,100,91,111,91,104,100,91,100,101,97,105,105,101,99,91,107,103,115,91,90,106,99,113,97,101,93,98,99,91,95,108,112,107,103,102,105,92,93,100,100,101,92,95,98,99,83,67,100,105,95,99,102,89,92,95,108,100,102,114,104,94,96,98,123,99,104,104,106,92,96,93,101,105,94,96,100,93,104,110,110,102,107,98,106,104,107,91,97,108,95,89,98,108,100,99,104,88,95,110,94,96,93,94,104,118,88,113,114,109,110,95,103,80,105,93,112,78,103,96,105,94,92,100,106,105,104,106,117,93,105,100,106,115,111,97,96,96,104,91,104,80,99,86,105,95,109,96,94,111,106,96,95,97,102,102,103,93,117,140,94,97,104,101,105,106,111,89,91,98,92,105,100,104,95,104,93,100,93,102,106,105,94,94,95,106,95,104,98,99,114,124,99,101,94,89,99,98,106,88,101,92,120,113,105,99,107,96,97,92,108,101,109,105,94,95,97,98,101,95,92,100,101,101,98,83,105,100,100,111,92,103,99,102,97,105,114,108,93,89,91,95,113,101,106,98,105,105,92,86,94,98,93,97,98,110,103,94,93,101,100,86,101,98,101,103,94,96,91,97,99,93,101,99,103,97,98,100,100,103,102,98,93,102,97,100,102,96,98,95,100,98,108,71,112,115,106,107,109,95,104,91,91,97,112,112,112,94,106,99,109,95,101,96,110,99,98,105,98,102,112,111,68,101,99,101,91,96,109,96,104,97,95,100,92,99,104,103,96,113,112,98,96,97,113,93,106,97,103,84,92,93,98,92,102,104,97,101,105,103,106,94,81,88,96,99,96,109,90,87,104,77,105,105,81,105,96,76,95,107,101,110,101,97,115,96,95,106,104,100,92,97,96,102,110,103,98,92,106,98,116,105,95,80,99,114,119,67,101,102,94,97,104,98,105,93,97,102,99,104,95,105,105,101,114,101,101,91,98,103,104,96,92,105,101,99,104,97,84,76,99,97,97,110,98,94,100,101,113,98,112,106,98,98,91,102,101,97,77,110,108,97,104,92,106,113,95,106,76,85,85,107,98,100,96,107,99,99,108,101,101,101,92,98,100,87,104,105,98,99,109,96,104,91,91,113,116,102,100,97,89,103,94,108,114,110,109,99,106,94,108,97,106,97,112,97,107,102,96,96,110,91,102,101,97,108,102,97,109,118,86,101,94,100,107,97,101,97,98,109,94,113,97,113,108,105,106,102,95,101,105,101,113,97,115,107,87,100,105,102,102,105,93,104,95,101,96,114,95,108,100,98,97,99,92,104,94,116,110,108,97,92,91,94,96,94,104,103,87,106,94,95,103,94,90,107,105,113,99,108,104,118,88,99,104,97,102,106,91,78,99,101,106,105,86,107,107,102,100,98,97,98,104,101,101,102,105,104,102,98,97,109,88,106,104,100,96,93,105,104,83,96,101,100,102,97,91,88,100,98,111,103,103,95,114,105,106,101,112,97,95,110,113,101,98,101,102,110,89,99,102,100,101,102,101,116,103,100,123,108,103,95,112,117,95,75,97,97,97,103,96,94,107,107,104,97,82,93,84,79,104,101,101,99,92,96,91,111,96,93,107,95,97,110,98,105,97,91,105,104,94,109,98,91,91,105,106,104,108,98,96,97,114,106,98,98,90,94,109,94,110,106,90,91,99,108,111,106,112,96,104,107,98,109,97,91,102,100,112,95,101,104,93,93,117,127,97,91,101,114,108,103,96,92,94,106,100,96,97,110,99,103,97,108,98,97,97,99,96,105,102,102,109,102,87,94,107,100,96,99,97,92,112,95,97,106,104,106,95,99,99,110,101,102,91,91,103,100,99,107,99,111,112,101,85,106,101,102,105,94,97,95,108,112,96,95,95,87,89,101,102,108,72,92,95,108,96,104,105,98,93,92,101,97,103,99,106,110,110,92,91,116,106,100,95,107,97,98,106,105,104,97,93,102,101,109,94,107,99,105,96,99,105,108,101,106,91,104,95,100,96,106,91,92,107,89,108,99,107,105,92,102,99,109,108,106,98,99,93,102,94,94,105,102,99,103,96,97,104,92,105,101,95,92,88,108,100,95,112,95,105,102,102,98,67,96,118,102,112,97,102,100,96,97,100,98,100,117,97,85,112,94,100,95,114,106,99,103,100,110,104,109,65,98,110,93,102,100,107,105,101,102,91,112,92,101,103,113,93,115,101,90,89,101,97,111,98,99,105,109,97,104,97,105,100,95,96,97,102,106,99,101,94,97,101,121,98,105,107,96,95,107,93,108,112,100,108,95,94,103,90,110,108,105,96,107,96,95,96,112,106,111,103,105,97,112,92,91,122,95,107,106,104,110,95,109,99,104,99,118,110,88,117,100,105,93,104,92,108,95,106,84,92,94,95,91,100,99,101,87,105,103,103,102,98,91,105,109,105,72,105,104,104,85,98,106,100,88,113,94,101,103,102,102,95,105,99,109,95,103,92,99,99,102,103,93,98,102,103,124,102,94,103,91,109,100,121,100,104,108,106,102,105,92,96,96,121,127,106,101,92,73,107,94,112,103,95,106,102,110,118,98,108,97,110,112,96,89,99,96,95,95,96,100,94,96,102,101,112,109,79,98,103,107,108,100,91,113,101,91,91,79,116,102,99,91,98,96,102,96,109,117,97,116,109,111,104,102,106,106,99,114,112,97,105,63,92,107,107,104,81,90,101,103,100,99,104,96,114,96,101,98,98,105,105,93,115,117,100,98,102,100,113,103,100,99,104,96,100,104,109,103,111,100,101,102,94,116,121,97,90,103,97,96,102,106,106,101,108,101,90,110,97,88,98,107,110,100,99,91,100,106,100,109,101,111,100,96,105,100,105,107,86,90,93,99,101,96,95,108,76,106,95,109,103,101,107,97,102,106,107,108,98,87,105,103,121,98,97,99,95,94,99,96,105,94,91,97,85,101,105,98,101,96,87,98,103,100,100,102,96,108,91,99,104,111,103,102,98,106,96,80,89,104,103,106,102,113,116,110,106,112,109,106,87,108,104,102,106,111,98,103,105,95,109,105,100,100,105,95,105,98,98,100,101,96,109,107,106,103,91,109,98,117,101,96,95,96,102,98,99,99,80,104,108,109,96,101,102,106,97,102,95,121,105,108,106,99,104,96,100,101,111,121,95,107,72,100,110,93,94,104,101,108,105,88,100,91,96,107,100,77,108,114,99,96,108,99,95,98,109,107,98,103,97,97,85,97,104,105,114,113,92,101,105,102,108,112,102,104,91,95,106,104,104,111,99,108,98,110,103,105,83,105,89,105,101,103,95,106,100,93,99,101,99,106,109,94,106,104,98,88,99,91,101,126,100,107,108,103,101,103,104,102,94,101,93,104,95,106,105,103,99,114,92,109,99,102,103,116,96,90,106,79,105,95,104,98,93,105,111,97,93,99,102,109,107,99,95,92,106,103,105,105,106,102,104,103,104,95,108,113,114,98,98,97,107,92,90,104,110,95,111,96,84,89,97,107,111,96,96,97,104,97,100,103,106,94,101,102,113,97,93,99,109,95,98,95,101,95,100,109,94,96,105,100,97,98,108,112,103,100,105,95,114,96,105,95,108,107,93,111,108,109,103,99,117,104,102,81,110,113,91,98,106,99,107,95,103,86,100,104,102,100,88,106,108,105,101,105,96,107,114,107,99,106,99,98,131,99,97,108,125,95,92,79,101,110,100,95,100,97,99,101,108,94,117,102,98,100,99,109,105,99,104,99,105,99,97,98,98,98,102,102,83,92,87,93,104,97,104,98,96,107,104,98,116,99,80,91,104,102,111,96,96,113,104,96,95,108,90,122,107,100,100,108,94,107,116,104,96,96,98,94,102,79,102,100,103,89,104,100,110,111,105,97,111,94,107,126,91,95,97,97,102,103,101,107,100,116,103,104,106,106,96,92,98,113,92,105,99,109,97,100,92,102,109,115,105,107,115,102,110,103,112,103,107,100,97,96,95,124,97,105,87,108,103,106,108,119,92,100,108,94,93,104,106,90,101,101,109,96,99,111,99,106,96,93,81,107,100,97,102,91,109,103,101,112,96,101,101,94,97,102,94,103,103,135,106,102,104,79,101,103,102,99,108,93,103,108,114,99,99,93,94,100,101,101,104,113,115,91,107,105,100,113,105,104,88,108,102,109,106,90,104,107,115,106,103,96,98,104,106,94,100,95,100,95,107,95,113,109,108,113,94,87,102,97,106,106,114,110,102,96,99,92,111,97,105,94,97,97,107,101,102,107,95,100,102,102,94,104,105,115,90,104,90,81,100,103,98,98,96,99,90,97,100,106,94,93,103,88,94,109,102,95,94,100,100,102,89,113,107,100,85,103,105,96,103,95,87,92,116,109,96,102,98,100,95,97,104,110,96,97,102,102,111,86,99,106,110,104,117,95,83,98,103,117,103,106,92,113,105,86,98,98,104,96,102,100,78,114,79,113,72,87,101,102,102,97,105,90,103,86,96,97,90,104,101,87,100,101,105,110,102,101,102,108,106,106,103,112,103,107,105,97,99, +693.2038,88,102,97,98,101,97,90,105,96,104,99,82,101,97,132,100,93,99,102,90,91,105,107,97,106,96,101,91,128,109,95,100,111,104,95,101,96,98,100,99,93,75,111,95,123,104,105,97,88,102,105,100,110,101,101,107,84,94,94,93,102,97,102,88,95,111,102,96,111,107,95,99,100,110,105,132,98,115,101,88,104,100,97,124,98,107,102,91,96,100,98,101,103,116,96,95,105,99,111,102,89,102,94,91,95,88,95,99,97,94,104,98,105,91,91,107,98,99,102,96,108,113,91,98,110,117,90,105,97,99,101,98,101,128,95,106,104,100,95,113,102,105,96,94,101,88,98,97,92,106,104,105,110,91,110,89,111,102,114,109,95,86,104,101,82,90,95,100,102,104,95,105,102,91,110,95,105,83,95,118,97,98,101,96,91,98,93,96,92,98,106,100,99,90,104,93,87,101,95,110,86,109,98,100,97,99,93,110,104,106,98,109,99,104,113,110,102,100,90,98,95,105,95,99,95,104,85,103,99,87,102,98,98,95,92,102,102,102,94,93,96,102,94,96,98,102,98,115,95,100,96,101,88,84,88,98,104,97,88,103,92,116,105,104,94,104,100,99,98,105,89,86,94,99,96,105,99,104,95,107,91,108,106,108,92,96,99,93,95,97,102,106,101,90,103,95,107,97,97,93,94,95,92,104,97,103,104,107,101,105,103,114,118,103,104,104,103,106,94,96,105,94,101,103,103,83,91,86,95,98,105,100,101,95,110,95,107,95,94,91,97,99,95,93,111,93,106,102,109,100,99,97,105,105,98,101,97,105,92,106,91,94,98,89,94,96,113,94,107,114,91,91,95,107,95,109,102,95,102,95,101,80,109,101,92,101,87,94,99,99,114,95,92,99,95,102,93,106,99,95,84,97,97,108,91,105,108,101,98,92,92,114,113,97,92,97,100,98,102,97,80,93,98,107,99,95,94,91,91,99,107,93,97,115,106,96,111,98,101,95,106,83,93,105,91,116,102,89,102,109,94,104,101,99,105,105,96,143,109,82,98,114,109,103,105,111,98,109,102,81,101,95,94,102,104,111,109,110,99,108,100,98,109,101,99,90,99,100,94,98,103,106,95,101,100,104,92,103,97,99,103,104,84,73,96,99,98,91,96,90,103,91,71,105,88,102,95,113,61,92,110,106,108,108,103,99,77,104,106,118,94,105,79,108,107,108,98,105,95,105,100,95,99,92,106,85,91,106,87,106,103,112,104,96,83,100,95,91,91,96,111,115,97,122,91,91,88,106,101,96,93,91,105,107,99,71,106,102,97,92,99,96,97,104,96,107,92,108,90,99,98,95,92,99,99,134,99,100,109,94,101,97,103,91,93,93,110,108,93,94,99,103,105,104,98,82,104,121,100,104,99,106,103,98,91,103,105,89,101,123,87,99,109,105,101,107,104,105,104,100,106,102,100,109,85,101,93,63,84,109,90,95,100,106,97,86,99,103,105,105,102,110,110,127,94,103,111,85,99,96,91,98,106,95,94,94,103,111,106,101,106,101,98,105,97,94,94,101,100,97,102,101,95,88,103,113,111,110,97,105,110,97,100,98,97,103,99,108,94,102,95,97,107,103,88,99,101,95,106,105,104,102,97,104,95,101,96,109,91,116,103,101,103,92,109,93,105,105,101,109,113,95,92,91,101,110,97,109,88,111,101,98,106,101,83,97,109,71,100,101,97,113,101,105,98,114,99,110,108,89,104,91,98,105,98,94,101,95,102,104,100,101,111,101,98,91,100,100,83,91,97,99,104,98,114,107,94,90,100,104,92,95,91,92,93,106,95,106,100,87,107,101,97,108,101,96,110,98,111,103,103,98,103,113,100,109,98,99,107,101,104,79,121,91,97,104,90,96,95,94,92,105,98,94,93,95,94,91,98,98,106,95,90,94,80,107,103,99,96,98,108,96,95,88,103,90,90,102,99,105,99,83,96,100,100,100,103,98,95,94,106,101,106,105,93,104,104,102,102,95,81,108,104,101,94,98,99,97,103,119,96,101,121,104,88,101,89,84,110,89,105,94,100,106,112,97,99,94,104,89,104,102,95,101,105,99,100,104,100,81,90,108,92,106,105,104,92,92,105,75,105,99,104,108,99,100,96,106,97,103,105,91,110,110,102,95,102,98,91,100,103,104,113,90,118,117,102,105,112,97,93,95,99,95,101,98,99,90,97,97,104,90,98,103,75,105,91,95,86,103,100,94,96,102,86,91,113,103,98,112,95,89,92,101,105,96,101,99,90,98,90,101,108,98,91,120,101,92,90,94,98,94,95,108,109,117,124,102,91,104,107,94,92,104,102,114,98,104,99,99,99,100,92,88,98,90,106,91,89,94,100,109,106,101,91,103,89,112,96,105,81,104,101,82,102,108,96,105,105,94,100,104,88,104,101,96,93,89,101,96,96,100,79,100,93,109,99,101,105,117,106,106,104,82,117,99,102,93,109,106,104,99,91,93,102,102,95,97,106,96,98,108,108,103,116,102,106,95,99,94,103,111,95,91,103,113,99,101,94,100,88,102,112,83,106,131,99,84,96,93,109,94,78,102,101,89,91,103,102,102,98,97,120,91,113,105,113,110,101,94,110,93,102,94,95,106,95,91,120,105,99,93,114,95,94,102,113,96,100,89,94,107,93,102,101,103,106,101,116,103,98,100,112,105,100,101,107,116,104,101,88,103,101,97,94,91,104,95,91,107,108,97,92,94,105,109,92,102,101,105,99,83,91,100,97,116,86,109,104,101,105,99,88,99,107,109,108,88,104,119,94,93,97,96,98,111,108,97,102,108,111,101,115,110,100,102,90,119,95,105,81,105,117,96,103,97,93,103,95,108,111,100,79,126,113,97,94,93,108,94,116,96,117,113,106,100,71,96,102,111,104,93,96,106,97,119,98,108,107,102,102,109,94,99,101,91,110,109,94,107,98,98,88,103,120,86,87,87,97,97,104,103,101,101,104,84,104,101,99,105,102,84,104,110,111,105,96,95,101,91,109,106,106,108,105,96,79,93,109,95,91,106,93,100,111,106,95,102,112,91,100,101,89,103,113,99,105,114,110,106,86,108,95,107,109,105,106,103,102,103,101,99,102,102,92,85,99,105,98,99,94,95,93,113,108,106,71,91,98,70,108,104,89,107,94,101,101,111,98,102,91,104,96,97,99,96,105,103,100,100,104,106,99,91,105,106,99,105,104,98,107,102,102,102,103,99,85,112,98,115,94,98,119,97,100,104,91,110,126,95,98,96,110,100,87,102,101,98,106,96,98,95,100,101,93,106,89,96,91,96,93,104,97,139,114,113,101,83,103,104,96,100,104,96,109,108,103,111,98,105,109,105,97,101,92,108,96,97,112,99,91,103,95,103,100,81,99,100,94,98,98,96,94,91,102,99,103,115,87,103,104,95,105,102,81,93,108,102,102,92,91,113,96,105,98,103,99,107,96,100,95,98,106,115,109,103,98,91,91,102,104,99,92,108,114,93,105,110,99,110,101,104,100,104,95,98,94,114,95,108,109,102,101,95,102,101,107,93,108,87,101,100,119,110,96,103,99,103,102,101,99,105,103,88,101,104,110,95,93,95,109,101,106,97,96,88,96,108,111,97,104,100,98,93,110,107,89,103,104,107,102,91,87,97,105,97,78,110,97,91,104,112,103,95,93,107,105,100,96,102,92,104,110,95,107,87,105,100,102,96,104,113,104,102,110,89,85,95,101,97,97,91,113,112,108,99,109,103,114,96,96,109,100,101,109,104,103,85,104,101,109,93,106,95,72,92,90,97,106,105,93,92,104,105,87,95,102,104,102,93,98,115,99,101,99,92,109,103,90,104,85,103,101,102,104,88,103,103,99,99,103,93,95,99,106,94,104,97,112,104,98,106,106,94,92,96,116,102,99,93,109,107,116,110,97,99,102,100,95,100,105,104,95,94,99,99,92,102,100,104,108,115,95,102,108,97,104,108,107,101,102,108,105,110,98,107,115,100,99,109,105,100,89,98,100,105,91,108,123,102,101,104,98,99,94,106,91,104,99,100,107,103,96,113,96,106,112,96,97,90,64,101,104,88,100,84,87,98,111,99,95,114,98,102,102,106,83,102,108,98,104,100,92,100,114,98,96,96,108,106,100,107,102,105,98,100,87,109,94,105,105,111,101,102,115,100,112,88,95,103,108,94,98,89,87,93,100,105,107,94,95,104,102,109,126,103,93,102,105,102,110,105,94,87,92,108,101,101,77,101,98,107,86,98,95,109,96,99,111,101,101,104,102,113,101,95,102,105,103,105,98,100,107,89,100,87,112,108,110,101,105,99,96,108,98,100,101,107,95,99,91,91,94,103,87,98,97,101,108,102,98,105,90,105,97,106,101,91,103,126,110,102,95,94,96,81,92,104,106,106,110,104,87,99,103,84,98,105,105,98,102,105,111,87,91,73,89,119,95,94,95,99,99,93,106,103,90,103,95,100,90,103,67,98,104,112,111,100,90,108,109,101,98,86,106,105,101,111,99,112,97,90,105,99,105,100,105,106,111,99,101,87,98,95,103,98,103,112,100,116,108,104,92,120,103,102,110,95,103,97,106,89,89,101,101,91,114,103,107,95,98,93,103,112,97,106,105,100,101,103,105,86,113,112,101,91,91,95,114,88,84,99,102,116,121,88,107,92,83,110,95,106,94,93,101,98,117,86,82,107,108,88,114,101,109,100,93,98,113,77,100,110,106,117,102,102,109,87,96,88,86,105,100,98,102,101,105,108,100,98,98,96,103,100,99,105,110,76,105,99,96,96,105,123,83,91,94,84,103,92,105,98,108,98,100,93,79,104,94,97,100,101,123,89,93,106,104,110,95,101, +693.34509,96,97,88,88,99,101,96,90,100,100,99,99,90,104,102,112,111,99,99,92,108,67,104,90,96,99,102,132,91,122,108,92,95,96,95,108,102,100,111,105,87,111,100,106,90,102,101,100,96,102,94,102,96,96,106,95,89,102,100,104,101,102,106,91,104,113,88,96,91,99,109,90,98,106,109,100,83,101,100,80,96,93,109,100,119,76,103,110,87,97,104,100,109,108,86,105,99,96,105,103,94,99,96,112,106,114,103,101,107,101,108,92,103,95,93,117,86,110,97,102,99,99,106,121,100,113,105,105,98,98,112,84,91,89,68,106,97,101,96,93,100,98,101,101,90,96,109,90,100,95,106,117,102,98,114,96,106,100,113,86,84,92,102,96,101,100,106,107,112,99,92,100,94,92,104,100,101,95,101,125,98,104,102,89,109,93,99,87,99,97,108,98,115,111,82,92,106,94,99,93,105,108,101,91,92,105,100,107,108,103,97,100,97,113,109,96,100,90,98,109,111,114,108,99,97,103,109,99,107,113,104,105,101,103,109,102,126,106,108,92,99,122,104,96,98,98,108,99,95,90,106,99,91,101,93,104,104,106,95,101,89,105,96,108,92,108,109,104,99,103,94,104,103,110,109,94,100,101,103,100,100,103,106,112,107,114,94,90,109,99,114,104,98,111,109,109,103,103,105,100,101,109,109,101,102,91,94,93,102,104,95,114,95,109,97,121,111,106,106,100,102,95,102,92,92,96,109,97,109,105,109,89,106,110,100,105,103,107,93,114,97,103,99,107,91,96,89,108,96,109,105,103,106,98,90,95,115,103,119,97,96,103,99,92,101,92,96,116,102,128,103,110,105,98,95,94,98,96,96,110,109,122,101,96,117,95,90,93,111,104,100,99,89,101,105,77,101,113,107,110,95,96,109,104,92,98,102,90,96,95,96,104,103,112,98,92,111,101,109,90,100,106,90,105,96,96,105,94,104,104,83,90,112,106,99,98,100,111,93,102,103,99,113,88,91,113,118,90,108,102,91,106,104,99,136,90,106,103,114,107,117,69,110,113,95,102,110,101,106,92,104,105,100,87,108,97,101,102,103,99,96,111,109,98,106,98,105,103,92,66,98,102,102,92,88,100,101,96,107,95,118,102,83,85,100,96,108,98,104,98,97,112,96,104,96,102,106,99,100,100,93,108,105,101,83,114,100,87,102,100,83,97,94,91,91,98,105,107,96,105,92,102,115,90,107,100,66,108,109,104,107,93,106,98,102,87,110,110,105,103,104,106,104,102,96,106,119,105,96,100,85,97,112,98,100,106,100,100,100,112,99,105,102,92,84,94,109,98,97,99,106,97,108,105,104,106,99,95,97,116,100,113,100,91,93,95,92,87,100,98,102,95,101,98,101,111,104,92,100,95,100,107,101,86,102,87,110,90,101,90,115,100,94,115,95,108,112,83,104,108,109,108,94,91,108,84,95,88,94,100,86,94,101,104,101,97,102,95,105,96,111,106,105,114,97,101,100,101,112,93,112,107,106,99,104,100,95,97,113,113,103,91,109,90,96,102,88,95,98,102,90,112,87,96,105,104,98,98,99,91,100,97,101,88,98,117,100,100,108,97,95,102,98,92,81,100,109,102,95,102,102,101,87,100,91,102,96,94,100,104,113,110,97,92,98,95,101,115,104,94,105,102,95,106,99,93,99,101,106,107,107,95,91,90,100,103,100,95,121,99,95,97,96,106,93,98,99,103,88,94,117,103,110,102,103,106,92,103,109,103,112,96,112,115,94,101,98,101,103,122,104,100,107,100,98,96,100,97,101,103,103,93,97,99,105,93,98,101,115,100,105,96,101,94,79,98,101,99,94,93,106,93,102,95,92,103,104,106,96,103,104,101,97,98,98,71,121,90,99,97,91,106,108,98,109,90,99,102,92,84,96,94,98,108,88,99,112,95,105,99,103,100,99,91,103,90,87,98,100,78,101,92,99,85,98,97,105,105,100,82,108,109,101,103,95,94,93,112,96,97,108,108,101,98,117,99,107,104,105,98,94,112,103,100,104,109,97,112,100,103,90,101,109,112,113,96,96,111,96,99,130,106,96,104,102,107,93,93,105,104,96,111,100,94,95,109,101,93,108,104,101,96,82,73,107,101,103,120,94,111,108,102,114,104,103,104,97,103,95,97,113,114,103,101,105,105,98,94,89,110,118,104,107,104,108,93,100,100,87,86,97,96,100,98,97,104,90,101,111,96,97,97,92,113,109,99,93,93,97,105,109,107,106,97,96,99,79,107,105,88,105,103,95,104,95,104,102,113,103,103,87,112,112,107,99,102,93,92,118,101,98,98,107,91,104,96,108,108,108,88,95,96,88,104,105,114,96,107,102,98,97,95,77,87,93,88,94,97,108,104,99,94,94,105,100,103,94,108,93,104,104,104,108,106,95,104,99,101,89,72,95,106,102,113,100,100,103,91,109,110,106,97,108,112,108,107,106,102,97,103,99,93,90,97,102,108,113,114,97,91,104,109,95,105,105,100,109,105,99,108,109,105,105,107,103,98,105,112,111,95,110,115,103,99,106,114,105,92,91,100,112,101,102,106,99,87,106,106,106,93,114,104,103,99,122,111,90,113,91,112,107,88,95,100,102,114,112,99,109,83,111,96,94,107,100,98,105,105,100,90,99,92,98,96,103,108,113,116,98,94,96,100,100,101,93,89,101,83,90,98,95,103,71,111,92,117,105,115,107,98,100,102,105,94,96,106,98,111,81,91,96,106,126,106,91,96,98,102,103,99,100,119,88,100,118,97,102,102,97,107,102,103,102,82,98,122,119,100,99,112,96,98,104,102,98,107,108,114,84,109,94,101,100,102,97,94,123,102,99,116,107,109,100,111,102,109,99,98,104,113,104,113,107,113,109,87,102,110,104,120,98,107,98,97,106,101,102,105,101,95,93,98,106,103,112,98,109,99,105,107,102,97,105,96,112,109,116,110,107,112,107,106,105,106,110,110,114,108,105,104,107,90,92,95,103,102,113,92,97,95,102,109,110,105,113,95,110,100,107,103,111,99,101,98,101,96,96,112,121,107,110,102,97,95,99,109,115,109,98,89,102,99,102,104,108,104,110,107,101,99,110,101,101,109,95,105,99,140,100,113,97,109,105,97,110,97,95,107,109,112,105,105,100,105,100,112,110,109,95,110,112,113,108,92,100,106,103,105,95,111,91,113,105,93,116,107,101,104,109,100,103,101,102,107,113,96,97,90,94,94,107,109,101,110,100,102,101,111,112,119,109,96,104,115,108,100,118,95,102,101,104,104,113,105,103,106,99,98,102,98,100,113,106,105,100,108,102,94,91,108,101,105,111,115,102,109,95,105,94,101,66,95,93,103,95,99,98,102,104,103,100,93,121,103,117,109,109,105,96,106,97,99,93,111,106,104,91,117,103,101,105,105,112,105,101,105,111,79,96,108,105,106,90,109,83,111,102,98,107,97,105,104,100,107,102,95,98,106,102,99,103,106,101,101,92,85,101,110,95,109,112,107,103,99,95,102,97,102,113,105,97,97,112,103,103,104,105,90,110,107,86,97,100,95,108,103,113,92,113,110,90,102,98,95,98,100,98,118,101,107,119,106,113,94,112,99,101,99,92,116,99,112,107,104,102,79,110,97,99,102,121,106,85,116,135,114,114,104,95,91,93,99,105,111,97,98,90,108,105,98,109,101,99,98,103,104,108,96,110,108,111,103,99,100,104,107,102,103,107,103,100,90,108,98,110,94,111,98,100,107,97,103,102,100,104,104,98,99,100,83,101,112,91,103,105,111,102,105,91,99,107,100,106,95,104,103,95,105,95,97,97,95,113,99,92,96,87,107,100,99,67,96,107,108,107,104,98,116,101,93,111,106,105,101,105,102,102,101,110,98,113,103,119,105,94,102,93,88,121,97,103,103,89,115,97,107,101,103,100,95,102,105,117,98,84,113,97,106,93,113,94,104,90,100,110,104,103,99,107,101,102,103,104,115,102,96,106,109,101,90,110,102,89,105,101,106,110,105,107,95,111,105,102,98,90,106,96,115,88,109,112,105,83,112,100,104,103,109,93,108,103,100,101,105,102,116,98,111,105,111,111,111,98,102,99,106,106,110,97,109,108,100,96,91,98,99,96,91,106,110,99,107,107,97,102,119,94,104,106,117,87,104,99,109,106,95,102,94,99,115,120,93,95,94,94,110,105,103,121,117,94,112,109,100,103,103,96,93,93,112,100,104,115,101,99,95,106,104,113,85,98,109,96,118,106,101,97,84,101,109,112,105,99,96,108,100,104,111,109,105,107,94,104,109,104,91,99,96,88,97,102,109,93,106,79,109,109,105,113,113,93,99,96,103,107,100,107,107,107,99,99,94,100,107,109,102,91,103,111,99,115,104,103,108,100,105,108,82,100,106,103,104,99,100,105,97,112,101,113,93,83,92,100,114,99,106,103,90,90,100,102,101,96,96,104,98,102,96,103,99,109,108,96,95,107,95,110,102,96,113,93,106,99,98,113,96,98,99,99,108,89,106,104,105,100,107,97,103,96,113,103,100,102,100,113,101,109,108,89,105,105,111,105,121,79,120,98,113,98,97,103,105,111,106,102,94,111,119,101,107,96,83,103,112,105,121,95,110,100,96,100,111,104,112,107,95,100,111,103,102,106,102,112,117,98,95,102,101,102,90,97,94,93,94,101,100,106,96,100,89,103,111,112,110,105,100,97,102,117,103,102,98,116,109,106,92,107,82,101,108,104,97,114,97,109,108,101,95,102,106,117,99,97,103,105,96,101,98,104,110,108,98,100,108,92,105,99,88,93,96,118,111,99,102,106,97,105,108,101,102,107,109,98,98,116,107,115,88,102,103, +693.48639,92,101,92,90,103,107,110,81,91,106,85,107,97,93,103,97,92,113,117,98,108,104,103,104,94,113,104,103,118,100,91,94,101,99,96,105,106,106,102,93,104,103,95,96,96,109,100,113,103,94,116,95,106,109,92,109,105,101,102,93,101,100,82,90,91,100,92,91,96,96,104,96,109,114,103,105,91,109,88,109,99,90,100,107,109,95,101,103,98,106,98,103,96,103,133,93,95,95,100,95,91,95,94,103,103,95,112,92,91,111,99,106,100,100,100,105,102,104,89,121,102,100,88,99,102,107,109,95,108,103,104,98,88,110,84,106,94,103,99,79,98,88,98,110,93,107,105,104,95,105,107,107,94,83,110,102,105,98,102,104,92,87,103,100,99,115,99,94,98,102,108,104,94,112,110,123,99,105,93,95,80,111,108,102,104,93,112,91,102,105,98,113,96,93,95,109,103,96,105,95,107,104,99,109,96,112,100,113,117,109,105,100,97,102,104,110,98,95,94,91,105,113,104,104,92,94,96,105,88,89,102,101,109,109,102,98,114,87,110,113,102,110,114,99,90,94,90,101,101,101,111,103,98,98,102,110,95,108,114,107,110,98,104,95,94,113,106,100,91,104,96,94,91,91,86,101,108,109,97,99,104,102,102,79,90,110,104,100,105,100,98,106,101,103,120,93,108,97,108,105,91,96,102,106,81,104,109,100,108,112,81,98,97,109,99,107,92,94,102,95,104,93,96,93,100,99,104,93,105,103,95,98,109,100,110,97,100,104,105,105,104,89,101,100,109,100,106,110,105,106,103,115,101,101,98,93,109,105,102,103,100,99,89,100,103,105,104,106,91,95,105,108,97,95,101,76,106,96,102,107,99,105,91,109,106,99,97,101,103,103,106,88,98,97,101,79,104,109,105,100,114,101,91,105,87,89,95,101,102,102,97,94,104,103,93,96,102,97,99,92,97,100,110,103,97,92,95,91,95,100,96,100,104,91,93,105,109,109,87,111,95,101,99,93,101,102,102,112,126,96,93,101,112,100,93,93,99,99,101,99,101,101,116,96,104,91,94,95,102,95,104,104,94,95,95,88,112,107,100,98,97,113,108,108,103,98,100,94,118,110,103,110,99,96,95,106,99,96,111,88,107,101,113,108,101,119,94,92,103,110,104,67,87,104,107,94,104,96,103,106,95,98,102,99,113,104,96,110,102,94,95,100,103,102,124,99,103,100,112,103,95,99,105,99,106,112,95,98,100,98,105,109,103,97,104,103,103,99,93,98,116,104,89,102,107,108,114,113,89,95,92,104,96,96,108,100,122,98,101,107,97,94,108,101,97,107,110,109,106,97,90,105,93,109,108,102,97,90,104,102,105,120,108,100,99,112,94,102,101,102,99,84,103,115,99,99,95,109,105,95,103,97,108,90,96,96,100,100,116,109,101,95,101,104,112,108,105,100,101,105,103,106,99,97,103,85,100,87,113,109,102,104,103,114,104,109,96,112,79,100,99,102,101,112,111,97,104,100,107,110,99,101,102,113,102,94,104,92,109,99,101,104,99,104,101,86,102,112,113,100,98,96,85,107,101,96,115,98,104,105,90,108,110,86,105,99,107,99,99,107,91,105,100,103,94,108,96,113,103,92,103,89,103,101,92,97,95,100,100,105,104,100,100,101,105,99,116,95,117,100,99,100,102,99,102,102,99,112,99,105,103,125,83,104,95,103,104,104,102,100,97,108,96,92,93,98,107,107,105,100,126,99,102,101,97,86,105,100,97,94,105,97,100,103,94,101,99,102,95,96,104,92,102,106,98,91,90,107,102,115,98,98,101,98,115,105,101,103,98,99,104,92,96,93,100,109,109,115,107,95,92,95,99,95,102,105,106,95,103,99,99,96,99,100,104,110,105,97,93,97,98,100,106,102,107,104,103,96,94,98,111,112,98,102,97,97,104,100,94,99,106,106,85,94,109,94,99,118,103,87,81,104,109,101,93,113,105,101,111,90,90,105,101,99,99,87,102,106,98,113,105,97,90,109,95,90,95,105,97,112,101,109,87,102,93,100,96,103,90,99,101,109,98,102,107,107,92,95,103,95,98,125,120,105,109,93,110,106,98,101,102,82,105,105,76,94,99,94,96,116,107,103,105,101,96,94,103,98,91,105,112,104,110,103,109,96,95,99,105,106,103,107,99,95,99,104,98,93,98,108,97,95,108,99,93,103,99,102,103,104,98,110,106,99,100,97,104,93,95,95,106,95,97,85,99,105,108,104,109,113,108,91,95,95,101,86,111,109,95,110,110,111,110,107,101,99,109,90,107,93,113,106,111,107,99,108,99,98,103,98,116,98,98,98,102,95,110,114,96,104,96,105,97,109,105,95,107,104,97,106,106,119,105,80,104,87,111,90,105,89,88,91,93,95,102,106,93,100,101,94,101,102,97,87,100,107,104,99,96,94,93,110,94,95,95,97,97,112,101,106,95,87,105,85,87,97,90,115,100,124,95,97,104,100,102,99,107,104,99,101,106,103,88,107,96,106,99,99,92,105,112,108,95,96,111,94,108,99,113,91,113,103,99,91,102,96,97,101,101,99,96,99,107,107,107,84,99,111,94,95,103,104,119,100,81,116,85,92,108,97,92,94,109,109,99,106,106,96,131,88,100,88,102,108,102,106,105,89,101,92,101,96,96,103,103,100,101,112,100,103,102,99,115,113,94,103,100,96,114,103,102,105,101,99,105,108,110,104,122,100,110,104,98,109,109,100,101,109,101,96,104,99,99,87,107,92,105,120,103,111,105,107,113,96,97,73,115,109,98,75,104,100,96,101,102,101,108,107,109,87,96,143,121,103,101,105,94,97,103,105,99,105,101,98,120,92,103,103,103,107,109,90,96,104,100,106,99,96,76,94,95,106,102,101,96,113,108,101,106,87,102,99,101,83,104,101,120,102,112,103,102,97,106,96,104,104,103,109,90,101,98,87,125,92,107,97,83,91,103,107,103,116,74,96,92,100,113,92,104,89,90,101,91,99,108,88,105,112,100,92,102,102,106,113,113,98,106,107,106,105,77,113,95,105,121,105,99,105,114,92,102,104,103,116,120,97,103,92,106,87,104,102,99,93,97,96,95,101,95,92,104,103,109,101,94,90,108,93,132,97,106,73,104,105,95,95,102,95,101,99,107,107,100,104,98,112,100,108,106,95,102,102,101,95,96,87,101,92,90,91,107,102,89,91,100,106,104,104,102,106,101,84,106,101,104,92,80,103,106,102,109,87,112,103,91,90,107,104,101,107,105,95,94,91,107,111,107,107,106,106,98,95,98,103,110,110,103,105,68,91,96,97,100,99,92,104,88,107,112,95,90,99,103,102,100,95,104,74,90,97,97,99,84,100,108,99,101,93,96,96,96,101,104,108,98,107,105,91,106,109,103,98,98,96,98,112,103,102,96,100,92,100,95,105,79,107,106,99,94,94,111,112,89,93,97,88,108,92,106,86,110,110,94,90,108,96,101,95,103,105,95,100,89,110,104,93,90,103,93,87,108,110,106,106,107,109,82,80,100,125,100,95,103,96,101,103,119,103,102,103,104,102,83,106,101,108,104,89,102,96,89,105,94,101,104,95,98,80,95,100,101,100,99,108,97,102,90,63,93,104,94,98,99,103,102,101,104,105,102,97,98,95,91,103,96,115,123,106,100,106,107,95,109,97,103,96,101,97,102,99,113,95,95,104,98,107,104,110,117,99,95,105,103,95,103,83,110,96,100,99,108,95,100,96,91,88,98,84,91,101,90,94,106,105,108,105,108,109,103,108,96,96,98,101,107,98,95,97,84,113,91,113,99,99,99,100,103,95,93,100,103,90,92,108,96,101,105,96,98,102,95,99,99,106,121,86,115,105,103,97,99,99,99,105,83,94,95,95,103,95,129,100,92,102,97,113,96,103,96,72,97,96,89,102,91,104,107,121,91,109,104,102,104,112,107,99,101,86,98,103,103,109,96,106,106,115,103,94,97,96,98,98,108,102,113,108,101,103,104,93,104,118,111,106,102,92,99,98,114,97,104,95,94,95,113,102,100,117,103,98,101,92,106,100,95,106,86,97,116,91,102,115,102,101,94,109,113,105,98,108,120,99,90,113,87,110,102,102,106,109,95,94,93,97,107,133,98,102,109,90,113,112,106,105,106,98,103,96,101,105,97,113,116,102,109,113,87,94,92,108,99,95,103,96,99,99,94,100,108,94,89,113,107,104,96,96,87,97,105,103,106,86,91,103,94,99,107,96,91,103,102,101,109,87,108,105,94,96,102,108,100,95,89,116,100,112,91,105,101,99,110,94,100,99,97,95,91,99,94,104,96,116,102,107,106,98,107,96,103,100,111,103,94,105,107,86,108,100,110,101,97,101,98,109,107,106,108,103,97,93,107,117,104,94,90,94,90,103,115,103,91,103,98,100,92,102,93,96,93,103,94,97,112,102,108,103,92,110,108,105,103,104,95,95,129,97,110,100,100,106,109,101,108,97,108,108,101,103,113,106,109,104,99,105,98,100,93,105,112,95,108,97,103,100,104,98,105,113,117,100,92,96,98,112,108,99,101,103,105,99,99,95,110,107,101,103,106,119,71,111,109,98,95,103,99,108,119,107,89,84,117,96,107,100,96,94,96,109,97,96,97,97,101,103,104,99,99,97,103,89,109,104,83,102,97,89,100,98,79,102,110,109,90,115,104,106,106,101,109,101,107,97,95,108,97,90,95,98,114,93,91,92,90,109,106,94,89,102,97,110,103,109,93,91,98,112,111,107,95,125,101,98,101,95,105,113,100,100,112,108,121,120,81,102,110,104,98,93,93,101,112,94,98,94,105,92,96,111,87,92,94,97,95,91,107,106,94,108,99,117, +693.62775,127,125,95,114,95,113,108,105,96,106,114,105,89,105,119,88,97,104,74,92,114,100,110,104,106,107,94,100,109,92,100,130,104,100,103,105,99,104,109,101,101,102,104,103,108,86,96,104,95,101,97,102,104,105,105,102,107,82,121,94,109,97,105,92,108,102,104,100,87,109,121,98,102,97,98,96,96,114,103,108,105,87,97,107,84,106,100,98,102,112,102,66,102,109,95,100,106,108,105,106,94,94,102,95,88,83,87,103,88,97,99,90,83,101,98,107,122,103,103,82,95,110,102,114,100,99,115,86,107,108,93,111,99,98,114,87,108,105,109,99,95,101,87,100,104,108,108,108,102,100,96,97,107,92,97,101,90,88,96,117,93,102,122,91,86,103,93,111,97,93,93,110,108,84,101,98,103,135,100,108,105,106,98,94,86,89,91,89,128,110,94,105,99,92,100,110,99,109,90,97,110,101,98,100,102,96,102,97,109,107,90,109,104,113,105,109,96,131,99,95,109,99,95,99,93,94,98,105,95,106,91,97,101,113,110,102,102,104,95,81,87,105,114,120,93,98,106,104,104,107,108,108,100,110,101,103,103,94,89,103,103,108,99,109,101,113,93,108,101,98,86,102,97,88,115,104,99,94,95,94,95,99,89,111,80,70,82,95,106,101,95,109,106,95,102,111,98,110,100,108,96,96,94,113,100,101,97,103,105,100,95,112,116,116,98,101,106,101,93,101,96,92,94,95,112,106,102,99,101,116,104,102,106,99,90,92,106,97,88,102,88,97,88,108,100,110,114,105,102,108,109,96,95,93,92,104,102,94,117,125,98,93,108,98,94,96,103,99,103,111,98,105,103,105,117,102,102,95,97,114,108,104,109,102,100,100,111,125,102,104,110,96,109,103,103,92,95,100,105,101,101,103,98,96,89,81,104,98,108,95,95,86,104,94,96,107,102,68,104,97,103,95,81,110,115,124,97,103,103,95,103,104,96,101,105,93,99,83,111,97,106,106,97,110,97,114,100,101,98,105,104,109,98,96,97,104,96,97,109,91,96,101,107,101,91,106,96,106,104,98,103,104,100,95,102,87,99,111,96,101,87,103,100,105,117,95,110,96,97,95,95,101,104,129,101,92,98,98,69,83,112,96,91,104,102,113,78,98,105,94,93,107,108,108,113,98,115,97,92,96,92,97,106,97,103,101,95,109,96,103,91,102,99,106,111,106,98,88,111,101,113,100,104,96,112,102,109,93,108,105,109,94,77,92,101,98,100,115,89,104,105,97,100,94,91,107,97,102,104,99,90,98,101,90,104,137,94,100,102,95,106,106,103,103,102,97,107,94,100,101,105,109,90,75,112,109,101,103,106,93,94,91,96,95,103,93,99,105,87,101,92,92,111,101,98,94,118,95,106,102,112,104,112,97,111,102,96,110,100,102,104,98,89,104,96,107,99,101,109,86,104,101,107,102,98,94,103,102,113,111,69,103,102,100,88,101,100,110,99,95,98,98,96,128,100,93,108,100,99,108,101,104,103,97,92,109,96,85,113,105,111,108,95,97,99,109,90,103,97,102,93,101,99,116,86,83,101,105,102,90,83,88,95,94,109,106,99,114,105,98,86,69,99,109,93,94,88,82,105,96,98,79,126,95,98,97,96,130,95,95,94,97,91,104,96,99,110,90,103,93,101,90,113,102,99,92,104,94,99,111,113,100,119,100,68,87,88,108,113,105,102,104,93,99,96,98,94,103,93,87,103,105,102,105,106,103,112,115,92,96,107,112,112,109,98,110,113,118,97,103,103,110,102,108,96,83,90,118,103,110,99,95,97,100,105,103,106,101,94,108,109,102,99,118,104,97,106,100,100,98,90,100,90,104,112,99,107,86,103,99,102,95,108,98,99,99,96,90,112,114,104,96,98,97,87,98,104,99,98,72,99,107,103,94,104,87,109,107,100,100,101,92,99,95,88,109,92,111,107,122,99,100,110,107,114,106,107,99,99,102,103,90,109,105,101,78,101,103,104,104,108,106,104,102,115,101,94,80,109,104,102,111,98,96,94,109,87,99,105,107,107,90,108,103,99,91,94,101,90,113,100,109,104,103,100,104,107,97,96,106,110,118,99,98,87,113,97,117,103,102,113,113,113,102,102,97,101,97,94,126,107,104,106,83,100,95,105,98,94,111,97,107,104,100,106,103,98,96,98,111,83,102,113,96,101,84,103,104,91,92,103,99,96,98,104,102,96,91,96,96,100,88,104,95,100,89,92,98,109,117,90,96,110,96,82,112,105,114,109,92,95,100,99,113,93,108,103,90,84,104,86,111,111,91,109,88,99,112,98,107,96,103,96,102,120,87,98,95,105,78,87,105,133,106,103,103,95,121,101,108,108,106,104,109,107,108,102,110,92,100,107,108,106,63,105,98,99,118,103,101,99,102,99,89,105,104,94,91,85,92,102,103,96,102,101,107,105,103,106,98,92,95,84,109,97,97,74,101,102,116,103,86,102,103,98,116,79,103,103,108,104,115,96,102,95,102,102,94,100,105,109,99,96,100,109,98,101,108,111,97,84,98,110,104,106,102,113,91,100,96,93,98,89,120,91,100,97,103,102,105,105,88,101,105,102,129,101,97,101,107,102,105,100,98,96,108,103,96,115,98,97,100,111,98,96,97,109,94,114,99,112,91,113,96,99,112,117,104,109,118,100,100,101,107,104,99,104,99,100,110,107,105,106,97,88,99,105,100,94,103,97,108,99,105,116,101,76,98,109,101,105,116,107,117,111,104,94,109,104,97,99,106,97,103,118,111,102,112,102,100,110,104,102,98,99,98,107,112,91,106,100,110,108,120,96,109,119,111,95,119,103,106,100,95,103,111,101,101,102,106,94,99,109,114,107,116,95,100,102,104,106,98,107,114,94,95,95,124,101,117,96,112,91,97,97,106,104,105,106,132,103,106,100,105,98,112,104,105,98,98,108,87,95,97,100,110,108,117,102,109,112,108,105,95,107,93,105,97,98,100,97,96,86,101,98,106,110,106,102,96,106,107,105,116,95,107,102,103,104,104,109,117,111,100,94,106,106,91,99,94,106,84,107,106,100,100,107,116,108,100,105,122,93,103,99,106,111,108,97,103,96,75,109,108,99,103,108,108,107,111,111,96,99,100,118,102,97,110,111,105,119,107,91,96,97,103,102,102,107,99,103,107,96,109,101,107,110,109,92,118,110,101,113,100,93,107,108,102,115,103,97,93,96,105,103,89,95,110,106,107,91,99,105,102,98,100,84,107,93,105,79,102,117,101,92,104,103,108,98,97,106,114,109,104,100,106,103,91,106,103,103,100,115,99,102,102,106,92,108,105,109,113,112,98,98,99,100,110,102,100,100,106,100,101,84,97,99,99,98,96,95,107,100,99,110,111,115,102,95,100,92,106,106,111,99,112,103,109,97,101,89,100,100,107,115,101,98,112,103,109,106,106,111,107,100,102,103,109,106,103,104,102,81,102,107,105,96,96,108,105,112,89,103,109,88,108,112,95,93,110,105,105,111,104,105,112,87,108,103,116,105,104,112,105,103,106,100,107,101,95,109,111,136,102,109,106,106,103,101,109,101,104,101,100,109,98,93,100,99,108,103,106,119,102,93,101,106,105,109,117,105,94,111,117,109,98,102,110,101,113,98,99,102,100,95,100,88,101,105,101,106,104,113,107,104,106,111,91,124,97,98,104,106,113,106,102,96,108,105,91,106,104,103,100,112,102,106,101,109,119,111,123,103,112,98,86,96,105,109,112,103,91,94,109,96,99,103,108,111,110,104,90,103,83,82,102,98,117,104,115,101,106,102,113,107,125,111,106,99,104,100,98,104,111,116,112,104,102,95,109,108,113,103,113,98,92,117,101,98,104,101,113,101,116,100,77,99,111,111,94,96,87,104,103,117,102,111,95,111,98,109,106,96,105,111,103,109,106,98,92,92,109,95,104,102,104,81,102,108,113,112,100,105,105,113,108,93,111,112,97,103,108,113,105,88,89,111,115,106,112,112,100,108,108,100,103,103,102,113,96,108,103,91,112,100,93,93,105,104,101,104,109,96,108,114,102,75,105,109,80,99,111,109,99,102,84,103,110,94,102,117,90,114,99,96,110,94,103,104,103,87,100,99,115,83,98,105,88,104,93,99,96,97,102,127,108,104,101,113,102,105,108,121,99,118,98,104,100,103,103,104,109,109,103,100,100,114,104,114,98,96,109,109,105,82,105,105,100,112,108,100,113,109,101,110,112,123,98,95,103,107,102,106,95,107,111,111,101,100,116,108,124,99,121,97,102,113,107,104,105,106,97,105,107,100,96,108,106,116,104,101,117,101,107,101,105,104,98,116,100,88,113,102,97,103,121,108,112,109,109,102,90,95,98,91,111,122,94,98,112,106,104,104,95,115,100,100,98,113,104,125,105,90,118,103,102,96,110,76,100,97,97,112,100,120,102,108,118,95,102,109,108,99,106,110,119,108,104,103,104,71,94,108,116,131,114,104,115,107,104,98,95,111,96,106,116,102,107,105,105,112,107,106,104,105,113,108,112,101,106,107,109,110,103,112,96,105,106,112,94,97,110,103,107,103,113,89,98,107,102,108,101,109,124,105,96,135,104,117,104,95,83,102,115,120,105,109,95,99,100,98,101,98,110,108,103,96,98,120,107,106,113,100,99,125,101,117,104,99,99,108,96,93,97,103,109,104,100,105,102,117,94,101,98,102,98,98,111,102,109,100,110,95,86,105,103,108,103,89,112,103,95,98,97,112,91,117,119,94,99,115,103,103,105,113,107,100,102,100,100,106,113,102,110,93,114,93,108,99,79,100,114,106,89,113,105,90,104,102,93,111,92,76,106,107,96,116,98,112,106, +693.76904,91,105,83,89,106,103,91,96,84,113,105,77,98,73,109,113,99,94,100,104,100,101,120,99,95,93,102,100,104,100,84,106,87,98,101,95,97,94,91,93,98,100,102,109,101,115,96,110,89,93,91,96,98,93,98,110,97,96,95,105,101,107,108,92,105,84,93,94,101,108,100,103,92,99,87,117,99,101,92,90,100,105,117,93,93,95,104,99,95,90,97,92,91,97,100,91,106,88,96,102,109,97,94,119,98,99,92,92,106,99,96,96,93,94,112,97,96,97,101,103,107,106,108,78,100,102,99,91,94,100,100,114,93,101,102,82,96,74,106,107,94,109,90,94,99,116,109,119,92,109,99,94,98,93,96,110,98,107,107,107,80,94,110,89,108,96,102,90,111,99,89,97,95,106,106,107,99,95,88,86,93,87,93,101,86,79,107,86,118,95,102,92,103,112,103,105,133,92,98,113,105,97,100,101,94,99,96,109,92,105,91,91,103,86,99,97,100,104,89,88,90,101,96,92,96,95,106,105,92,88,92,106,104,96,120,96,98,99,105,92,88,99,106,107,100,98,106,99,104,105,87,113,107,108,87,95,96,94,98,105,102,102,97,99,89,100,103,100,97,100,101,95,113,101,98,95,104,105,94,102,110,104,97,102,97,97,82,96,102,94,104,95,93,97,101,109,101,103,101,114,92,98,95,105,103,102,111,95,96,95,95,105,93,95,111,95,98,106,95,97,108,98,108,95,108,90,100,85,96,102,109,99,109,96,105,99,121,104,88,99,92,101,96,104,94,117,92,101,105,105,102,94,95,101,101,113,107,87,95,98,100,105,105,76,112,109,99,106,96,107,104,102,109,105,99,101,91,113,94,99,102,109,88,109,93,85,103,91,96,98,115,82,100,104,101,98,97,113,96,98,94,102,104,110,92,95,92,93,105,89,94,100,94,109,118,123,103,105,107,104,95,103,96,96,96,88,101,88,95,98,88,99,87,99,103,104,98,106,106,107,106,109,101,106,93,104,62,87,99,101,94,92,90,103,102,82,108,86,107,93,93,104,95,106,106,100,99,95,103,115,110,102,91,102,109,85,102,105,99,108,100,126,106,94,100,92,109,109,105,99,98,64,101,100,83,98,91,91,113,102,110,96,102,116,110,96,91,92,97,96,105,103,102,95,103,88,93,98,108,86,103,93,102,90,112,102,108,108,102,101,106,100,97,103,97,102,101,81,104,109,91,93,95,102,110,104,95,96,106,100,98,108,96,101,99,94,108,91,91,93,105,94,100,85,98,126,102,103,103,105,106,93,112,99,101,98,97,88,93,101,101,93,99,99,95,100,110,107,110,86,98,96,96,110,105,106,92,116,90,94,105,100,105,91,107,96,100,83,104,94,117,103,95,95,108,93,97,100,94,107,104,96,91,92,89,113,91,99,117,90,91,102,95,109,97,100,97,99,113,99,107,105,100,100,100,94,92,100,99,106,98,93,102,103,102,105,98,105,107,106,97,86,101,106,102,106,101,89,105,95,100,104,115,92,101,105,106,112,103,95,111,102,93,97,103,94,102,85,105,102,100,103,107,110,105,108,107,108,96,90,103,86,111,104,100,108,103,106,98,97,93,102,100,113,92,98,77,94,104,94,108,84,95,107,98,110,100,94,96,105,98,100,98,92,96,105,103,104,79,98,103,99,102,99,122,102,101,87,97,108,105,94,97,102,104,99,99,103,104,97,94,98,98,102,94,98,104,91,90,91,114,94,99,94,90,91,99,101,100,88,96,119,97,101,87,97,85,100,102,98,96,95,101,114,95,90,87,101,101,91,90,117,87,101,94,95,111,104,102,97,104,104,100,99,104,109,107,95,105,105,96,114,96,102,103,98,91,95,95,72,96,105,106,95,116,110,89,107,91,104,96,96,95,105,80,91,98,93,109,84,108,106,112,94,101,110,102,84,99,99,109,98,106,97,103,90,87,101,110,86,104,97,93,98,96,108,98,97,90,111,97,99,96,107,107,92,105,99,96,95,92,110,98,101,101,94,95,91,97,93,92,102,100,99,95,95,100,97,101,102,95,90,100,106,106,90,99,97,101,102,107,103,94,105,114,98,96,97,98,101,113,110,98,100,91,98,102,109,91,95,97,103,103,100,90,96,98,101,92,110,101,101,89,106,108,87,97,101,93,100,106,103,101,107,113,121,97,99,89,107,103,96,96,126,103,100,112,110,110,107,106,109,108,87,99,112,109,97,102,97,91,90,89,98,103,90,97,97,103,112,101,110,96,93,110,101,94,110,101,108,86,89,105,98,94,86,100,101,107,113,99,108,112,115,103,99,90,110,111,86,108,96,104,88,102,92,91,108,117,94,104,111,83,107,98,98,103,116,103,101,112,110,122,87,98,94,105,120,105,87,88,104,89,89,112,102,96,106,99,99,100,97,120,104,105,100,94,105,104,97,98,91,101,109,114,111,104,97,117,106,95,111,101,106,102,110,94,110,91,97,113,113,97,102,109,107,104,106,101,93,114,106,100,98,94,109,90,101,106,102,97,128,98,98,100,102,93,94,80,106,98,99,99,106,105,103,117,97,104,98,84,89,93,103,108,96,114,101,105,87,117,110,100,102,103,110,104,79,96,107,97,97,113,123,105,104,96,106,102,99,87,102,98,105,101,100,104,100,100,107,94,115,86,100,103,100,119,87,95,94,99,95,98,103,96,98,99,98,111,97,94,105,93,96,97,115,98,108,106,113,101,123,106,101,97,98,107,99,96,98,108,109,104,93,104,107,94,120,108,113,88,112,103,119,105,96,119,99,104,106,111,101,116,106,96,97,102,100,99,106,108,113,105,104,93,99,104,101,99,112,109,92,95,88,102,96,99,103,105,96,100,107,102,108,116,100,104,102,89,97,98,97,102,102,100,109,106,101,114,109,106,98,92,98,101,106,96,94,110,110,104,104,93,105,103,136,101,99,103,104,93,103,101,93,103,103,99,101,96,99,95,101,110,100,109,89,98,100,95,104,93,110,108,106,104,105,114,105,90,103,95,105,99,88,102,81,107,102,99,99,95,96,102,106,96,104,91,99,100,98,109,127,98,99,108,109,92,80,111,92,108,102,102,113,105,92,105,95,101,91,118,98,95,92,103,111,81,87,100,95,102,91,106,89,105,97,105,92,104,119,100,119,113,103,104,101,96,104,94,96,88,88,101,93,93,98,111,111,112,103,99,100,100,91,108,95,106,81,105,105,106,97,81,104,107,101,73,102,91,101,97,109,95,106,96,83,103,102,95,100,94,94,97,114,105,102,92,103,75,88,103,104,92,116,118,100,92,107,99,96,97,106,96,101,110,98,102,112,103,104,96,100,98,124,98,94,107,97,96,101,87,77,103,112,106,104,99,117,89,103,102,101,108,117,96,101,96,98,94,100,103,102,111,106,90,90,107,104,103,112,102,107,110,103,99,93,96,94,109,104,109,100,122,105,106,107,105,109,99,98,102,105,104,110,115,106,93,99,105,91,99,97,97,98,96,93,105,117,103,125,104,99,105,113,104,102,106,107,94,110,110,92,109,114,96,89,95,99,101,99,96,90,102,104,106,105,100,97,102,99,92,111,101,99,97,89,105,95,104,99,89,92,104,108,101,65,103,97,99,97,100,100,103,109,97,91,98,90,110,95,97,113,105,90,94,100,103,114,104,99,96,92,102,105,108,68,109,103,103,93,99,116,108,97,102,91,106,95,108,94,85,109,105,104,98,105,104,95,107,92,100,105,106,113,100,110,111,95,104,98,94,117,103,109,91,115,104,121,121,98,117,100,105,105,105,94,100,100,92,97,95,107,91,99,93,115,95,88,96,94,100,91,105,98,98,102,107,108,102,113,106,106,103,103,129,106,117,91,96,103,108,102,94,107,98,92,98,101,104,108,98,104,106,92,104,103,100,101,98,98,92,103,105,113,106,119,101,113,106,99,100,106,81,104,115,98,107,100,96,108,110,101,100,112,106,104,99,106,103,108,113,89,106,113,95,106,113,95,95,100,101,103,104,114,104,105,100,95,107,109,121,109,125,109,134,99,112,100,105,100,101,101,103,112,105,107,102,101,102,105,107,98,99,103,104,102,88,105,106,125,98,94,103,101,91,102,110,104,88,106,79,98,98,93,99,105,101,97,90,87,122,99,110,106,119,112,101,112,106,98,115,96,107,109,101,104,103,97,107,117,97,108,90,98,100,105,105,105,111,97,102,110,104,104,91,112,89,117,107,111,96,104,102,97,93,108,107,95,105,116,90,93,85,102,97,90,115,98,92,68,102,95,104,101,98,102,102,100,110,108,108,102,95,98,105,95,101,101,101,102,106,102,91,99,95,104,116,103,105,91,95,106,98,102,96,94,83,101,98,91,107,96,100,102,94,110,95,107,101,100,117,83,95,102,105,105,109,99,106,105,109,105,104,97,111,86,95,96,99,84,97,91,101,109,101,106,104,102,111,89,95,91,103,102,92,97,106,110,96,103,103,99,99,104,95,95,101,107,95,103,105,111,101,105,98,99,110,117,96,104,100,110,108,99,93,103,90,100,100,105,110,127,99,109,115,102,64,98,106,96,98,104,105,105,118,104,104,93,100,98,110,102,98,106,88,104,103,106,96,82,98,97,109,99,112,112,96,103,113,101,98,97,108,100,116,101,101,104,108,105,111,114,102,100,107,92,110,105,94,94,76,81,108,95,95,102,101,101,108,114,138,109,108,112,91,91,118,107,102,100,106,95,100,113,107,105,94,113,95,106,95,99,99,102,119,103,96,104,104,105,116,103,102,100,101,109,106,84,103,101,92,95,102,93,108,99,98,88,105,109,97,111,102,79,83,96,110,79,104,101,106,90,101,130,94,99,112,109,102,92, +693.91034,100,103,104,113,96,100,94,109,91,99,101,100,100,94,92,94,92,113,90,109,113,102,82,118,97,104,110,101,104,95,93,107,102,97,92,99,92,97,96,101,113,106,95,108,102,113,93,105,104,100,88,87,97,101,112,106,101,90,112,83,107,95,97,101,102,102,94,113,88,97,105,81,106,87,101,95,102,99,97,99,101,93,103,104,110,101,97,105,99,101,106,106,91,93,63,102,102,109,89,90,85,91,98,99,95,81,108,96,107,99,92,98,101,100,106,112,87,93,101,115,112,102,106,106,111,112,108,97,88,101,105,76,84,101,99,95,70,104,85,100,72,100,112,109,101,95,106,103,106,102,90,101,96,90,88,100,102,99,105,91,92,102,114,96,110,99,83,99,99,88,103,101,98,107,96,101,92,97,107,97,92,97,99,93,114,96,96,89,105,105,106,100,85,113,106,101,105,109,86,100,109,96,90,106,109,106,106,91,112,100,103,111,97,60,96,101,93,108,101,96,96,88,87,96,97,107,94,96,104,114,107,97,96,97,103,102,102,82,100,105,96,99,110,90,88,90,110,110,99,101,110,101,106,98,99,100,96,90,101,100,103,99,104,95,88,104,107,109,100,90,99,105,113,94,103,98,103,95,99,98,108,103,96,95,105,99,90,88,102,105,104,104,103,96,107,104,105,101,98,113,103,101,127,100,102,104,100,101,109,98,85,106,98,110,98,87,66,84,96,105,95,91,98,100,105,94,94,97,113,105,102,101,105,107,95,102,113,93,97,99,101,104,99,102,97,105,102,103,99,102,97,95,105,104,138,102,99,91,104,100,98,96,90,102,90,106,84,100,91,104,98,101,100,99,99,97,101,81,88,101,99,107,104,98,94,106,96,105,106,75,99,97,88,104,108,105,89,95,89,93,96,99,106,91,112,79,99,109,90,100,96,94,95,114,103,85,98,94,106,92,84,108,101,98,101,105,88,71,92,68,100,94,102,112,92,100,96,112,88,96,106,99,99,102,100,99,109,91,105,104,87,96,98,106,99,101,107,113,107,104,94,104,108,108,84,106,83,89,98,101,99,114,94,99,105,84,104,97,82,96,99,112,99,104,96,87,115,106,100,109,100,100,94,105,88,97,111,107,99,103,99,93,100,105,102,100,95,102,104,102,104,100,99,106,119,98,101,101,103,85,113,107,98,104,100,101,100,101,79,104,99,110,109,99,104,110,107,93,111,103,91,98,95,97,113,94,96,92,93,96,96,91,108,90,88,98,101,112,95,94,107,101,95,93,104,104,84,101,102,88,86,103,101,99,94,89,107,97,111,108,105,87,113,100,101,100,107,101,99,104,100,97,86,103,106,108,97,99,110,101,95,95,94,100,100,104,108,88,104,112,98,98,104,99,103,93,101,100,102,107,109,105,95,96,101,97,102,91,102,94,94,87,99,94,102,95,105,108,99,105,106,107,104,107,90,90,99,94,96,107,93,97,98,110,91,107,107,105,100,91,106,98,98,95,89,96,102,102,101,94,104,109,105,113,86,95,105,97,104,97,72,103,104,92,101,97,94,88,91,102,109,91,105,113,109,100,104,104,94,90,101,79,108,102,101,106,96,106,96,105,97,96,95,107,108,94,90,102,109,97,102,107,93,100,114,95,99,110,103,97,102,97,115,97,94,89,103,110,105,100,104,91,96,99,99,75,98,99,104,100,99,103,99,97,93,100,110,102,104,95,98,103,92,91,99,106,98,93,112,97,108,109,79,92,86,101,94,103,101,97,107,114,102,107,105,91,96,98,97,104,108,91,79,103,107,96,87,101,96,111,92,108,87,98,105,112,87,105,110,102,109,106,99,90,78,95,113,114,90,98,86,93,103,95,102,112,101,101,100,96,94,100,138,115,96,69,114,95,94,114,97,107,109,103,95,107,89,85,107,113,95,88,103,94,102,91,104,116,114,102,99,101,87,107,118,92,86,80,100,110,100,98,87,100,97,90,95,105,100,95,96,95,104,93,104,102,104,100,107,114,103,106,99,105,96,100,85,107,104,86,101,99,110,110,113,96,95,100,96,96,97,98,113,97,96,107,91,96,93,93,106,99,99,96,89,89,103,96,95,109,105,102,96,98,100,101,91,104,97,99,99,112,100,98,110,96,104,108,106,106,108,98,95,88,105,92,92,101,103,95,105,105,98,107,109,105,93,90,97,97,97,98,105,87,95,90,103,95,100,98,92,101,95,117,90,98,98,96,97,94,107,106,97,96,98,92,114,111,96,101,105,103,94,110,101,94,97,62,92,95,95,102,100,100,88,109,104,105,98,93,99,93,99,96,104,106,104,105,97,103,109,115,99,98,107,99,95,100,99,109,92,92,97,97,96,108,100,101,103,106,95,95,107,89,99,103,102,102,110,98,91,103,97,95,87,90,91,106,100,92,92,107,87,97,99,95,106,97,96,94,105,105,105,105,111,104,96,111,102,102,91,96,92,112,99,88,104,99,114,103,108,98,109,100,94,106,103,108,96,94,99,100,90,111,100,105,99,105,90,99,104,111,105,101,101,99,104,95,104,100,94,103,100,80,103,109,102,103,91,109,91,102,87,107,92,106,107,105,106,100,101,105,104,100,101,91,105,107,104,105,99,88,87,105,101,111,104,101,109,103,111,106,100,95,98,95,104,109,113,97,95,100,101,82,100,96,98,98,100,103,102,106,101,100,101,100,98,112,95,100,85,109,111,99,94,104,104,105,106,108,112,99,93,105,104,107,100,109,116,104,107,116,108,94,106,91,98,96,95,93,89,99,89,105,104,98,101,106,94,102,92,98,75,98,111,83,94,110,107,105,113,96,99,103,101,105,94,102,112,101,99,103,106,116,104,97,100,104,102,103,101,107,101,91,102,95,99,101,91,106,92,95,124,103,94,111,103,103,115,102,102,103,99,99,100,98,102,101,102,113,104,103,90,93,90,95,107,104,99,101,90,100,107,100,110,96,91,90,114,104,95,111,101,111,116,96,103,88,102,91,107,102,104,96,91,113,98,88,101,102,107,100,112,91,100,105,94,94,105,109,97,105,100,95,94,98,94,99,116,91,80,105,93,101,105,98,89,96,110,98,111,123,111,93,115,99,97,95,104,112,105,87,104,88,104,96,95,103,104,94,97,113,93,95,103,99,95,104,109,109,105,98,99,102,96,104,111,111,105,97,104,97,102,101,96,105,99,101,94,106,92,109,101,101,85,105,99,102,105,108,103,108,110,104,100,103,107,111,105,93,91,103,115,98,102,101,105,105,104,100,103,72,100,100,113,103,104,99,102,80,100,103,88,102,99,98,92,111,99,104,100,99,117,104,106,97,107,101,99,99,97,101,96,99,102,85,94,91,99,102,117,106,91,104,109,103,96,107,110,98,89,89,105,100,99,117,93,94,100,103,90,102,86,94,99,106,108,96,99,108,91,106,110,119,93,97,102,96,96,108,106,98,113,89,98,106,100,117,106,101,109,105,118,106,86,107,101,94,98,112,102,96,119,92,97,110,107,108,87,83,97,103,101,105,101,96,110,98,93,103,104,83,106,104,101,121,98,109,104,95,101,98,100,106,97,102,106,92,100,105,100,110,84,98,109,95,93,94,103,114,71,106,113,98,88,103,96,100,108,116,108,95,113,86,100,99,102,106,127,108,91,97,102,94,107,93,94,65,96,107,99,105,98,96,103,99,93,106,99,96,91,109,98,96,95,107,102,107,92,103,103,94,96,94,110,94,99,85,101,99,108,97,100,111,102,112,98,101,107,103,105,96,97,105,101,116,113,103,102,91,102,98,96,106,108,75,102,113,103,109,97,119,87,77,101,105,97,80,108,99,95,106,94,104,88,96,140,98,103,102,102,108,96,90,87,94,102,92,91,99,103,117,108,103,113,91,107,98,128,90,113,98,106,101,109,109,101,104,96,94,88,99,94,109,96,101,108,111,107,95,101,101,96,99,94,95,107,95,107,104,108,90,96,100,75,114,99,93,117,92,100,99,98,101,101,103,116,102,102,99,98,87,86,109,113,100,113,103,98,95,91,97,104,98,106,100,96,85,110,96,106,94,101,92,96,106,98,101,89,112,97,105,98,112,94,96,127,100,106,99,62,91,99,96,106,98,102,96,103,96,99,97,111,108,99,94,99,105,101,103,109,102,96,110,106,111,113,105,102,98,107,103,104,100,104,95,113,98,101,108,103,94,109,105,120,99,100,91,99,95,99,96,104,97,100,93,100,98,102,91,95,104,97,105,96,104,91,95,88,84,85,91,122,103,109,101,105,93,102,108,92,92,103,97,92,107,94,101,106,100,91,97,108,109,106,102,107,99,92,95,107,110,96,120,103,99,121,103,88,106,101,110,98,96,93,95,110,102,97,98,95,82,96,99,96,117,96,105,94,95,114,107,103,106,106,103,91,95,100,95,98,98,110,120,73,95,86,98,100,102,107,107,102,102,100,121,113,108,96,99,101,90,107,105,102,98,99,99,96,106,90,99,102,92,87,98,99,102,86,98,94,99,100,121,109,84,102,93,103,103,96,101,110,102,93,101,83,103,100,113,96,82,95,104,95,97,96,102,95,89,100,106,93,115,88,112,99,110,97,90,98,93,72,97,104,97,102,99,110,103,103,91,111,98,108,109,90,92,95,98,88,84,97,106,96,100,98,94,96,105,113,104,105,62,91,97,101,110,101,119,98,102,100,111,99,101,99,106,108,114,101,101,104,99,110,87,99,98,102,116,97,94,92,89,100,104,99,107,100,104,116,107,110,95,110,119,98,98,90,97,113,97,119,108,101,112,87,105,103,98,102,105,103,100,112,107,104,98,112,99,103,108,106,83,105,100,100,99,102,104,89,118,107,83,104,98,115,109,102,92, +694.05164,98,80,88,108,100,93,98,103,95,81,121,99,109,82,90,90,97,105,97,101,90,106,94,110,94,93,104,94,91,89,103,97,99,99,127,96,103,92,100,94,100,99,104,90,105,102,105,106,111,103,98,106,108,91,89,89,81,91,115,87,100,104,95,102,97,103,99,94,95,94,108,105,87,103,124,100,101,89,94,100,98,97,102,100,86,95,105,99,123,109,92,101,109,102,95,105,90,113,88,98,97,72,89,92,102,91,96,101,100,92,85,93,96,103,106,112,100,94,95,123,113,94,99,99,95,101,102,84,102,96,112,92,99,95,118,99,92,107,79,105,103,113,104,94,90,108,95,100,102,94,102,99,99,76,95,103,106,103,106,93,100,95,111,78,105,99,98,97,104,94,99,95,119,92,107,104,101,86,84,102,96,93,91,109,98,91,117,101,97,81,79,113,99,115,92,92,101,104,106,99,105,95,105,107,94,100,106,88,91,102,100,102,102,110,86,94,98,104,116,116,102,107,99,95,99,108,102,98,92,92,91,97,102,98,100,117,96,100,135,94,100,97,101,103,86,90,110,111,100,110,109,98,101,108,92,103,99,104,101,113,107,95,100,100,102,109,104,99,109,97,99,101,98,104,113,86,100,75,106,97,95,105,74,103,109,104,85,103,97,100,103,92,103,100,106,103,101,109,101,92,92,94,101,102,96,104,78,96,115,100,82,99,97,101,96,115,98,100,98,102,107,91,99,96,93,83,78,101,96,98,107,99,106,95,99,95,94,92,66,96,97,109,99,100,118,101,97,104,102,111,96,100,75,96,103,105,112,99,102,94,105,88,103,87,92,95,99,113,93,101,102,98,125,100,100,96,97,96,87,104,96,101,91,104,111,101,102,100,116,99,106,97,98,118,91,108,92,106,110,104,106,96,92,96,99,92,94,108,103,106,106,115,107,78,103,91,110,101,106,98,98,106,103,93,96,98,101,99,113,111,100,110,87,94,100,86,90,108,100,97,95,104,100,100,99,107,77,89,96,108,87,99,96,111,105,103,100,103,107,111,103,99,104,104,97,98,93,108,98,82,101,90,99,96,109,94,98,103,117,118,109,103,105,95,100,101,99,98,101,109,85,103,110,93,118,99,101,103,102,81,107,68,88,118,107,104,90,99,120,102,100,102,98,105,97,101,104,108,96,91,98,105,99,96,93,103,99,95,103,100,99,92,108,96,109,112,92,97,89,127,104,108,110,95,103,104,91,90,104,102,95,93,102,104,93,104,113,106,99,95,104,102,84,112,73,104,99,92,98,99,89,103,90,112,100,100,95,96,92,100,97,96,105,87,88,94,101,113,92,99,84,107,102,102,95,99,99,99,94,101,79,103,109,98,99,104,102,92,99,99,105,93,103,99,104,101,97,120,100,103,105,97,82,96,95,95,95,109,97,99,104,102,103,115,98,105,98,97,107,95,114,105,94,102,94,84,95,99,96,98,98,111,99,100,96,96,104,99,94,84,105,97,96,105,68,102,88,113,99,112,100,96,111,99,92,100,108,99,91,98,101,90,108,91,85,135,88,98,94,100,108,102,106,107,94,80,96,102,100,100,102,104,86,104,106,94,93,71,113,96,93,101,107,111,91,95,104,87,97,106,96,83,96,105,103,94,114,110,104,98,94,108,107,80,96,90,115,95,112,102,110,83,92,105,104,91,94,98,97,106,101,101,73,100,103,102,109,91,108,92,103,106,83,92,95,111,93,105,99,92,97,104,99,92,106,114,90,85,104,102,109,101,99,104,83,111,103,98,101,107,104,105,91,99,93,105,108,112,98,106,111,98,92,103,98,93,99,101,101,104,104,89,111,110,109,94,107,101,99,92,90,109,102,106,89,101,95,94,113,105,115,92,107,106,107,105,96,98,97,101,101,109,100,91,97,95,93,88,100,80,105,99,92,94,96,101,103,95,99,104,97,88,102,106,94,92,95,103,106,102,104,102,92,94,91,96,119,105,116,92,97,102,100,87,108,100,87,106,118,96,100,130,94,95,82,98,94,103,106,99,102,110,104,98,102,96,114,97,103,88,91,104,130,106,105,93,106,98,97,112,118,105,98,100,96,91,82,98,91,111,101,86,96,99,92,97,90,94,97,101,99,109,116,116,92,101,95,110,101,96,98,90,82,102,114,102,94,113,96,119,89,104,102,106,92,109,87,115,102,97,100,113,105,111,100,90,100,124,94,112,89,103,109,92,106,116,94,96,96,87,90,100,98,100,100,100,92,92,99,101,101,107,91,95,98,103,96,95,95,103,72,102,102,95,100,107,105,114,103,106,108,109,105,105,102,101,105,102,105,109,88,101,98,98,99,101,99,107,100,90,103,104,102,102,99,88,110,117,102,104,81,113,98,103,110,103,100,90,101,102,88,98,96,110,100,107,88,99,94,102,103,109,103,105,98,97,106,86,95,105,107,91,100,99,100,101,100,95,112,99,103,89,103,99,97,96,100,93,101,102,91,91,93,97,92,107,96,95,102,102,106,112,110,108,94,88,99,97,102,101,137,94,100,95,106,96,94,118,104,105,97,113,105,95,95,97,95,110,92,99,108,86,98,115,96,101,121,106,103,107,113,79,106,106,100,107,101,97,92,101,93,101,98,86,109,103,110,99,110,101,96,96,101,92,87,112,96,98,102,111,96,108,107,106,94,104,104,106,106,96,98,111,99,120,89,102,91,89,109,64,102,107,106,88,92,97,115,107,95,115,98,107,101,95,107,112,99,107,101,101,112,105,96,102,99,100,97,95,103,91,96,109,103,100,99,86,94,94,100,103,91,60,114,100,111,107,107,108,110,110,98,102,100,99,100,107,101,101,110,88,101,103,108,109,98,95,88,100,99,115,112,91,101,108,99,101,105,108,97,102,101,102,119,109,102,106,91,100,104,105,110,110,111,121,105,102,91,104,110,114,116,101,95,105,104,101,112,109,91,101,100,98,91,101,101,103,101,108,99,98,107,101,110,110,106,111,122,96,94,106,97,90,111,101,112,105,125,94,89,100,97,109,99,93,105,98,106,101,106,106,95,99,99,101,96,104,105,99,99,92,99,96,110,87,121,102,113,100,113,107,94,96,91,98,105,103,106,102,106,98,102,91,95,94,107,115,106,101,97,98,88,95,90,98,105,102,100,98,102,103,105,105,78,102,97,111,93,100,93,93,101,109,103,78,102,97,106,107,105,96,97,101,103,98,104,99,97,109,99,102,107,98,91,108,108,110,100,104,105,108,92,83,90,94,113,96,96,91,107,87,124,80,111,103,102,113,96,103,105,94,99,104,96,109,95,105,106,101,99,95,92,96,81,99,104,100,103,96,110,113,109,92,105,112,108,106,104,113,99,96,112,108,101,100,115,112,108,108,102,91,104,99,121,109,103,104,114,112,103,97,92,94,95,93,91,92,90,102,97,99,95,106,98,93,106,91,94,102,106,109,73,97,96,104,105,101,95,111,108,105,102,106,99,97,87,95,91,97,95,97,105,105,100,101,106,93,110,91,90,102,97,106,110,102,79,101,106,97,102,107,98,104,107,112,112,99,117,105,96,100,100,98,88,97,103,99,109,111,94,108,106,108,101,121,112,97,111,100,108,101,83,99,115,99,104,103,102,102,103,106,111,94,107,113,99,116,91,106,105,98,103,102,106,100,98,84,104,109,106,82,96,101,113,98,131,110,98,103,110,92,102,96,95,103,107,94,116,101,98,99,106,102,106,86,105,96,115,98,102,100,101,116,107,95,98,102,97,81,113,102,106,104,90,102,87,90,103,95,111,104,108,96,99,107,99,105,103,88,81,96,101,110,88,94,104,100,101,106,105,110,105,102,100,96,99,98,101,97,102,104,92,95,101,107,92,98,108,87,100,112,120,100,88,103,95,104,92,103,102,103,92,100,107,99,97,115,105,95,104,87,100,101,89,99,93,99,131,87,94,101,87,100,95,107,93,100,96,100,86,91,97,99,103,95,111,94,117,103,103,101,102,94,95,111,101,96,107,97,93,105,92,85,88,97,99,102,100,108,118,93,105,99,111,92,106,98,73,105,105,99,113,92,90,105,104,104,107,104,92,100,95,107,94,99,109,91,98,94,112,87,102,92,95,101,91,117,90,92,92,108,135,100,91,89,96,95,102,107,90,97,113,102,100,97,108,101,98,108,109,101,104,102,101,112,100,105,110,103,95,109,113,88,109,98,87,101,98,102,105,95,92,110,104,102,110,101,93,94,105,104,98,99,100,94,102,105,94,97,101,104,113,96,106,99,93,99,102,100,109,102,98,109,111,108,93,97,102,101,93,103,104,98,104,116,107,116,109,90,96,114,99,101,116,98,116,109,113,115,106,74,110,97,93,107,97,90,95,102,99,112,95,97,96,105,103,109,96,99,100,107,110,104,81,93,100,94,106,106,102,85,100,101,94,100,104,83,114,94,93,101,98,99,118,102,104,105,103,96,96,105,94,102,107,95,113,94,87,102,106,91,89,72,104,90,105,113,99,109,118,111,104,107,97,95,102,106,98,102,104,105,95,104,105,83,107,108,105,87,68,92,104,94,102,98,90,95,109,117,98,102,109,113,96,102,104,108,110,106,112,102,96,103,94,96,112,104,104,100,111,100,93,97,99,95,94,106,105,108,100,102,108,116,86,94,98,100,106,99,95,101,95,112,89,105,98,97,107,97,107,102,91,110,89,100,104,101,99,90,96,97,112,101,99,108,105,103,107,100,101,123,91,112,112,101,96,116,107,96,101,92,90,111,99,94,97,99,91,101,103,105,120,99,117,100,89,105,98,104,96,99,107,95,109,96,84,91,88,80,94,89,91,119,105,91,106,83,93,97,107,111,89,93,90,92,116,102,109,96,95,102, +694.19299,113,104,91,84,94,90,93,94,97,106,94,91,94,91,133,99,73,93,107,100,96,102,108,102,103,107,95,99,99,111,100,92,98,78,95,106,101,92,108,94,103,88,91,102,98,108,100,107,87,114,100,107,105,98,106,88,104,108,109,89,113,108,103,102,107,91,93,91,91,92,102,89,99,94,138,107,105,92,100,98,105,89,86,95,99,88,108,114,102,110,106,101,101,96,93,92,96,102,111,98,92,95,97,101,97,100,94,98,86,97,108,102,99,96,103,102,95,108,89,102,97,95,105,103,98,101,100,104,103,92,99,101,101,93,114,102,88,103,103,98,106,102,109,91,100,103,109,77,103,98,100,100,100,101,117,106,99,92,106,93,91,94,109,104,104,96,106,106,89,111,105,111,95,119,89,110,107,100,86,104,88,101,114,102,102,95,90,99,112,91,99,99,111,101,106,113,96,104,93,111,89,95,102,97,100,100,104,105,101,103,98,100,110,101,95,102,91,100,92,109,101,98,111,102,101,100,94,104,93,97,92,99,97,114,100,100,100,104,113,100,97,113,92,104,114,101,98,99,103,109,82,88,95,102,97,117,102,109,98,102,91,103,68,74,95,94,104,91,99,109,110,106,103,100,110,83,101,107,96,100,117,89,103,97,95,90,81,105,94,91,100,121,101,110,102,98,107,92,83,117,95,116,104,112,105,111,99,106,97,109,85,104,109,103,106,92,99,90,99,98,106,97,105,94,95,107,98,90,100,94,111,96,95,110,99,101,99,91,118,103,102,99,121,90,107,95,107,109,104,101,115,100,96,113,112,99,95,100,104,77,96,106,95,99,105,101,98,94,101,92,107,97,106,102,96,102,116,107,104,102,95,102,89,99,99,99,90,108,100,104,105,90,102,91,100,108,111,86,94,106,93,92,95,99,97,100,84,97,95,106,83,100,104,93,128,104,96,87,108,94,101,104,101,114,93,96,91,97,100,94,97,109,87,102,105,129,91,105,105,86,100,103,97,95,79,105,95,108,109,117,101,105,99,104,102,95,87,100,109,106,102,99,95,103,96,101,87,101,94,99,91,99,105,73,95,100,87,97,94,110,75,106,113,97,87,99,107,83,105,93,110,112,91,101,96,99,104,104,96,95,107,109,96,96,99,102,80,105,110,97,102,113,102,105,108,84,103,104,100,92,104,84,102,106,100,105,108,109,97,96,95,103,86,91,101,99,91,102,109,103,100,107,103,91,106,102,109,101,110,109,94,99,101,93,101,81,98,94,95,94,113,94,92,105,101,97,100,126,85,111,96,104,101,112,96,103,97,97,103,106,99,111,114,104,104,104,103,95,95,109,91,95,101,91,106,99,75,101,111,94,105,108,100,94,108,99,87,93,104,109,106,93,99,103,95,98,88,94,97,100,102,91,95,103,107,81,95,100,97,101,105,100,88,98,100,90,104,82,85,92,106,100,99,98,111,104,98,94,98,96,76,94,100,102,102,93,102,116,92,106,112,109,100,96,113,97,95,95,78,97,108,98,98,97,93,97,106,90,112,102,95,98,92,98,97,105,105,105,106,105,111,108,94,109,107,106,93,101,103,92,85,94,94,97,93,105,91,98,99,106,92,95,92,95,82,98,88,95,78,102,102,100,108,99,98,103,92,96,113,96,97,107,109,100,94,101,110,77,107,129,74,105,98,95,101,99,100,105,97,83,105,99,106,99,110,98,104,109,116,104,94,97,77,96,99,90,107,86,105,106,98,104,109,98,91,109,89,100,101,99,100,100,105,89,95,114,117,105,116,104,101,101,104,104,90,101,66,109,88,98,101,93,106,113,109,102,99,87,98,92,107,122,92,103,106,95,103,99,97,98,102,88,103,98,101,107,105,108,107,100,103,78,103,101,113,94,109,105,105,97,96,88,101,90,107,95,98,103,94,117,104,102,109,91,88,104,112,100,104,110,112,102,99,102,98,128,102,101,99,97,106,113,103,96,93,92,104,115,101,86,101,110,106,111,90,109,101,93,94,102,103,108,105,92,100,100,122,102,99,104,92,107,115,106,99,98,88,104,82,101,105,93,98,95,95,109,86,100,97,99,109,100,100,112,96,102,91,103,105,100,96,102,110,107,78,83,105,99,97,97,104,100,101,101,100,95,98,99,98,100,104,107,101,104,104,110,95,113,83,112,99,102,97,87,114,96,101,99,99,100,104,98,104,105,101,96,93,94,91,105,101,125,101,105,101,106,94,104,92,99,108,102,116,108,101,111,114,103,101,93,81,106,101,93,108,99,99,120,95,105,93,103,98,96,95,119,103,119,95,112,107,102,108,96,103,94,97,100,83,95,92,96,106,96,96,94,95,105,101,105,96,105,90,103,91,97,105,107,92,107,100,106,93,116,95,95,102,98,87,84,89,98,105,100,98,106,93,101,100,87,96,97,96,95,124,107,96,101,76,96,106,99,99,105,110,96,101,97,116,109,108,105,100,106,96,100,114,106,95,108,68,93,108,105,94,108,93,102,105,102,95,112,103,100,111,117,98,99,91,108,84,101,100,121,102,100,100,101,96,103,101,112,97,99,106,106,92,108,99,96,103,104,94,116,96,116,106,102,94,101,90,99,102,102,102,116,106,98,95,97,108,104,103,101,97,108,106,98,119,89,94,99,110,90,98,102,96,90,105,91,102,111,116,106,98,118,110,94,102,104,95,101,107,106,95,98,106,82,109,105,107,105,96,80,109,107,102,114,103,105,110,113,101,105,103,98,102,123,100,94,99,96,97,73,107,106,109,95,97,107,106,108,105,105,113,100,108,106,98,115,106,96,105,100,106,99,105,110,109,98,103,106,98,98,102,98,107,118,98,116,104,92,118,102,106,105,97,101,96,106,103,93,106,112,86,108,106,108,109,106,106,102,116,119,94,100,96,121,116,108,106,97,116,102,97,101,110,93,105,106,106,101,105,95,112,110,109,116,97,98,93,94,92,104,100,103,104,105,117,103,117,91,105,100,108,96,102,91,97,89,91,104,112,106,99,98,94,100,95,100,87,101,110,73,104,100,89,97,104,104,106,102,99,101,113,105,102,105,112,101,100,101,90,109,101,103,107,93,102,109,102,101,111,102,86,99,115,110,110,106,108,99,109,93,103,104,110,98,108,101,102,90,91,98,110,113,113,91,85,106,108,95,100,95,107,99,116,117,110,95,98,102,103,109,96,105,122,108,108,99,97,99,106,98,100,103,104,99,124,106,104,91,101,100,111,99,118,113,99,103,87,107,108,99,106,93,107,108,108,108,95,95,86,96,105,89,96,103,84,101,101,102,107,97,106,112,80,104,99,93,96,97,109,105,83,108,105,108,110,99,102,94,91,106,93,109,93,107,100,103,91,95,114,111,110,112,103,90,101,98,116,94,104,94,91,103,90,105,105,97,105,100,101,85,95,99,106,105,91,100,101,104,101,92,93,109,109,104,98,93,102,106,97,107,102,91,103,109,111,106,108,107,105,101,99,107,103,106,105,101,98,94,103,112,91,103,99,106,87,88,87,108,102,100,102,95,103,101,97,104,103,104,101,108,101,99,94,109,108,92,97,109,99,112,93,119,91,102,108,102,104,99,98,103,105,95,113,116,109,92,100,99,101,99,101,108,113,107,100,98,118,102,101,103,103,107,97,98,102,99,105,115,93,108,90,108,105,106,103,104,104,114,116,119,106,112,108,106,107,92,108,96,107,98,101,98,104,100,103,101,106,94,86,92,104,87,111,97,98,103,100,92,104,107,84,105,98,101,116,102,113,93,90,83,103,99,97,111,103,98,101,106,111,98,128,94,101,95,95,110,102,111,99,100,93,107,104,94,104,106,102,108,92,100,111,114,90,105,99,107,107,102,87,104,104,87,111,91,105,105,103,110,95,101,107,91,104,105,103,99,105,102,107,92,98,95,97,98,112,80,106,99,103,114,90,113,81,105,102,101,96,99,92,102,85,95,104,112,98,100,106,110,105,106,110,90,91,111,96,90,107,102,102,101,108,94,96,102,102,97,101,102,92,95,106,113,108,114,109,106,110,96,116,101,100,110,94,102,81,103,103,114,104,101,107,103,96,108,95,102,109,97,99,103,94,115,101,93,130,102,112,105,100,112,79,111,98,94,87,97,97,96,91,103,102,109,99,84,92,100,94,108,88,99,108,102,100,103,109,95,98,106,104,98,106,104,113,95,100,102,102,113,98,91,94,108,98,94,103,92,107,97,107,102,100,89,106,95,105,106,108,96,98,98,104,97,99,106,101,102,95,102,101,108,118,97,96,92,91,98,105,99,103,99,106,102,106,98,107,100,111,100,105,112,99,105,96,96,93,105,101,104,106,102,101,95,104,99,104,104,100,103,102,110,93,102,103,111,100,92,98,95,97,105,105,106,92,109,104,88,104,97,109,95,92,100,104,97,96,107,98,100,109,87,101,79,103,105,95,100,94,94,106,104,105,113,107,97,108,101,102,109,88,102,98,110,102,96,95,100,98,98,97,102,99,92,100,104,102,80,98,94,89,98,97,111,108,102,103,102,102,117,127,98,115,116,114,101,98,103,98,97,109,101,93,108,102,103,105,112,102,100,102,101,95,110,97,96,101,96,103,108,116,87,117,82,99,102,113,105,99,104,100,98,94,122,100,103,106,95,104,98,98,97,108,95,106,109,101,89,101,90,97,87,98,110,98,95,111,97,95,82,96,96,106,94,117,103,95,91,110,93,99,104,104,123,100,100,106,102,141,109,109,103,109,98,72,100,108,99,106,108,103,101,114,105,98,97,107,98,106,113,95,84,124,108,94,140,99,109,90,110,96,99,98,101,95,109,136,101,105,104,106,90,93,93,93,100,90,86,105,101,110,103,106,90,102,110,94,93, +694.33429,98,109,94,109,91,105,101,95,104,100,97,104,100,111,115,103,119,107,95,96,86,102,90,102,93,87,94,91,81,103,99,96,103,108,97,99,127,109,105,102,114,96,102,102,96,98,104,97,97,100,109,105,86,111,92,97,89,91,108,100,106,97,93,98,91,104,104,97,89,90,109,107,97,100,99,98,108,97,102,105,97,104,102,94,107,87,112,76,99,100,111,107,97,94,81,96,94,109,94,97,108,98,111,98,106,100,112,93,93,90,96,100,102,96,98,97,112,102,100,97,96,95,104,113,95,79,109,117,97,81,106,102,104,101,102,104,97,109,89,92,100,105,102,82,90,90,105,110,105,106,98,96,99,86,112,91,109,99,98,95,90,100,108,90,104,103,106,101,87,123,105,120,93,102,104,95,103,86,101,103,97,111,99,96,110,103,100,95,99,89,93,99,109,97,99,98,101,107,105,100,99,108,105,100,102,101,105,90,111,103,105,107,98,97,95,94,111,101,75,90,105,107,96,88,96,107,102,110,106,94,103,107,115,90,95,87,119,113,92,86,90,99,113,109,98,93,106,101,102,105,96,98,91,91,94,103,100,98,108,116,104,104,87,90,90,104,101,100,96,89,107,104,103,105,105,101,102,101,103,96,105,103,93,105,99,113,91,97,119,102,103,106,96,105,102,117,108,100,88,74,98,99,97,114,110,103,99,113,108,106,105,99,112,103,106,95,105,109,103,102,95,103,105,101,104,100,90,92,106,106,92,115,103,112,93,104,105,102,86,110,97,112,108,93,109,109,112,94,98,100,86,119,96,110,100,111,110,104,102,99,97,99,104,92,107,92,107,104,87,109,111,99,96,95,93,99,96,106,92,107,98,108,104,98,97,91,94,105,101,92,83,101,102,111,104,109,98,110,106,93,103,97,90,98,100,97,98,118,109,102,105,91,100,119,100,100,102,96,110,94,99,94,100,93,98,101,108,101,93,108,102,99,100,118,102,103,87,114,98,101,100,94,102,102,100,104,108,92,95,91,104,92,102,101,101,96,98,88,97,103,91,105,102,98,104,115,100,83,102,85,109,95,116,102,88,98,125,112,88,102,100,108,116,104,102,108,105,98,91,92,85,104,113,105,114,112,101,104,95,89,117,94,113,101,108,69,98,112,99,97,110,103,106,96,108,97,98,107,111,103,102,92,96,97,104,104,103,104,92,103,96,102,110,93,100,86,94,104,91,108,89,118,87,92,104,107,101,95,107,118,115,103,107,106,103,110,101,109,91,96,98,101,62,94,107,94,104,99,102,113,88,96,99,99,107,102,108,82,106,89,104,94,100,104,93,94,116,112,106,100,114,89,97,97,107,105,93,109,99,88,104,99,116,106,92,110,71,98,99,112,108,100,101,100,107,97,100,103,107,104,105,105,111,98,77,101,61,109,103,93,99,102,107,100,102,113,90,101,109,100,98,108,99,94,99,99,104,103,95,110,98,113,103,103,110,105,99,103,102,95,108,103,103,105,98,102,118,91,103,98,95,111,103,92,82,106,103,91,103,102,99,102,103,104,88,104,106,103,98,114,109,102,94,97,101,103,102,103,106,97,103,93,98,98,99,109,99,103,91,95,96,99,105,96,95,92,83,96,92,110,103,87,93,101,103,85,94,82,86,106,87,102,101,101,107,105,105,96,106,105,107,96,97,95,98,93,102,95,88,93,107,95,109,89,104,102,96,101,115,101,76,109,79,85,101,101,88,96,96,85,105,91,104,117,97,99,119,109,106,101,96,100,109,110,92,91,101,85,97,103,114,112,100,100,104,103,97,101,106,102,97,97,91,84,93,96,109,108,97,95,106,101,103,111,101,107,120,96,121,97,110,100,99,94,92,100,100,102,107,101,103,97,109,95,101,105,98,99,103,88,92,93,110,100,100,81,109,90,105,109,96,92,95,102,99,96,102,111,91,89,104,83,95,90,94,87,104,108,93,107,99,115,106,90,97,101,103,95,90,89,104,114,97,100,107,102,101,95,114,101,97,106,109,95,110,106,102,96,115,92,102,105,94,94,109,99,98,101,96,90,96,106,109,97,100,91,98,102,87,98,90,112,102,95,109,96,103,93,100,95,100,94,95,95,93,99,95,115,88,92,99,96,94,102,111,95,103,107,97,99,106,103,111,106,106,98,97,95,94,95,91,101,99,95,87,101,101,101,93,89,99,92,97,88,110,118,98,103,89,98,95,108,84,94,78,95,90,119,97,116,118,93,110,93,90,87,106,110,105,92,103,87,105,100,102,105,114,80,92,120,106,107,102,112,90,100,104,102,101,94,106,109,100,101,101,113,99,106,101,101,97,100,102,94,100,93,97,105,99,102,99,114,94,103,92,114,109,87,110,102,113,100,89,95,105,101,105,134,132,106,90,90,98,82,103,84,98,99,94,105,99,92,91,99,98,99,102,87,108,93,104,106,94,101,111,107,98,103,104,107,101,99,96,93,103,91,98,92,103,103,99,95,96,114,112,101,106,100,105,107,80,104,90,103,97,93,93,97,99,104,114,99,109,100,105,110,113,107,106,105,99,113,100,103,107,104,101,102,97,95,109,106,94,102,105,103,101,109,101,101,98,106,109,95,102,101,107,100,93,120,96,100,101,101,112,85,114,93,102,101,101,86,100,97,98,100,95,98,101,98,113,99,101,99,109,109,101,110,102,93,103,108,100,108,104,94,95,95,108,107,98,105,94,109,105,110,102,100,100,108,105,119,95,97,96,104,95,101,120,108,102,108,98,98,105,106,96,115,104,112,101,100,105,99,103,102,90,110,99,100,110,80,103,87,100,101,113,102,96,111,107,102,91,111,106,100,115,115,99,85,103,100,106,96,116,104,98,106,92,97,103,99,107,113,96,97,104,98,99,94,105,98,94,101,98,92,88,126,101,93,103,100,101,101,99,105,103,94,106,117,102,104,111,104,91,116,102,107,96,100,102,79,108,101,105,109,111,72,108,97,105,108,98,102,102,112,107,110,106,109,101,112,105,115,99,105,106,98,108,94,96,100,100,103,103,109,110,108,114,114,95,116,103,97,97,107,101,96,105,102,115,105,115,104,95,101,108,102,97,108,110,106,100,106,98,96,98,102,106,98,106,107,112,99,101,97,106,112,92,95,97,85,112,106,104,113,94,102,99,108,92,93,92,99,99,105,99,95,100,96,93,97,119,101,102,99,99,113,104,106,104,107,97,91,98,104,115,97,100,111,108,103,96,99,102,92,106,102,96,110,101,99,109,101,106,117,102,95,97,99,112,96,108,72,109,97,106,103,109,101,126,106,106,101,99,93,97,97,109,91,97,105,102,107,101,121,104,101,95,104,102,109,104,103,103,95,94,102,103,95,115,103,100,106,102,107,102,110,98,98,99,92,109,113,92,98,99,94,104,108,105,98,92,108,102,101,106,113,107,96,96,90,91,102,95,96,101,102,111,104,94,100,106,94,100,96,96,100,110,101,106,101,103,112,106,112,103,134,101,84,101,102,106,108,100,95,103,95,102,97,92,110,109,90,99,104,101,95,101,116,99,107,101,95,107,104,94,105,105,87,106,101,93,124,101,104,116,97,104,102,98,95,105,97,75,108,105,102,105,88,99,108,109,104,106,101,107,101,115,102,94,104,104,101,115,95,123,102,111,99,104,109,102,109,105,109,95,105,106,98,109,100,110,106,106,110,95,128,95,98,99,91,103,100,108,105,110,104,110,116,105,98,106,94,136,101,106,118,98,98,99,103,109,96,101,99,108,114,106,99,90,121,101,79,102,93,112,112,94,103,95,105,100,94,93,105,108,101,106,101,108,105,97,110,95,102,96,95,101,102,111,110,103,86,100,103,93,116,109,98,101,95,81,93,109,105,91,92,106,110,89,106,101,105,100,109,109,96,105,96,106,95,108,108,96,105,100,96,109,99,105,104,91,104,91,100,105,103,106,99,115,106,101,109,112,98,98,105,90,100,115,100,92,91,89,97,105,104,115,105,99,90,96,106,105,101,97,100,102,105,105,80,95,96,104,113,128,110,104,96,107,104,102,94,113,83,102,100,101,97,101,109,108,119,102,137,97,102,98,97,96,105,101,108,96,100,105,97,102,96,98,117,81,93,99,102,102,108,113,103,103,97,91,99,109,100,105,93,110,73,117,107,114,103,103,97,109,106,97,108,109,99,111,107,109,96,100,92,112,97,106,104,97,95,100,120,95,98,100,101,112,103,106,90,84,104,92,97,104,105,87,104,101,102,102,101,105,96,104,105,98,101,113,103,91,84,109,114,104,106,99,100,109,91,92,76,79,116,95,105,114,95,106,103,92,97,104,98,93,104,111,104,72,113,103,93,112,109,88,116,118,107,100,109,104,98,101,90,103,96,96,100,87,96,97,103,82,95,105,104,113,95,107,92,95,93,94,91,98,103,109,112,98,109,86,83,102,104,92,96,101,96,97,109,107,101,97,105,98,93,93,98,93,111,90,102,99,102,102,103,94,92,99,105,97,106,107,120,108,100,95,96,101,115,102,105,109,91,109,93,88,110,101,102,112,115,108,111,84,94,106,87,99,103,108,107,109,105,105,105,96,112,98,105,94,96,100,102,94,90,93,101,99,82,110,95,91,113,112,114,100,100,111,107,98,100,104,111,102,76,103,95,94,113,102,102,95,104,101,104,107,95,107,100,102,99,105,85,96,109,95,91,102,105,91,100,116,108,106,101,103,69,88,107,96,115,97,110,103,98,98,99,102,115,118,111,97,83,93,91,110,119,101,117,104,103,103,100,104,130,111,107,93,95,99,109,102,111,102,105,94,110,105,94,108,102,63,104,113,111,99,109,104,107,105,91,115,106,101,101,98,98,97,102,107,92,109,105,91,101, +694.47559,101,104,92,115,93,106,90,91,92,105,95,97,92,73,107,90,87,104,104,96,91,100,105,100,125,115,91,105,110,93,111,104,89,109,107,100,109,100,102,99,97,129,99,98,104,110,101,99,96,89,102,106,98,105,109,107,100,99,98,98,102,108,99,92,107,99,97,77,96,96,108,101,91,125,81,110,94,104,106,105,102,99,113,97,113,92,104,127,108,86,100,108,83,106,96,107,96,113,105,96,97,121,105,98,100,92,87,125,97,102,95,83,92,97,98,113,111,98,104,104,100,112,81,101,86,97,111,107,115,109,116,103,100,109,98,100,110,103,108,98,105,100,117,96,92,79,104,109,95,100,75,95,98,93,100,130,97,109,99,90,101,93,113,105,101,93,99,96,92,110,94,114,98,102,111,111,96,90,104,102,101,98,101,102,79,106,92,105,109,103,96,105,106,100,105,114,105,95,104,102,95,104,97,101,109,108,94,105,105,106,93,98,99,109,96,98,103,101,109,107,99,103,108,107,106,88,98,95,109,98,117,95,101,104,107,97,97,107,114,101,102,88,98,98,103,100,110,109,94,110,136,106,100,98,102,105,86,104,99,96,95,98,108,102,95,108,107,102,106,102,99,90,115,93,100,99,108,110,110,88,107,110,95,108,94,99,101,111,103,104,91,108,102,96,100,78,96,102,105,118,89,110,105,102,102,113,101,101,103,106,95,99,102,106,102,109,92,105,90,102,108,106,89,106,104,97,98,92,98,110,117,104,103,107,95,95,97,94,100,100,95,108,97,115,113,98,100,101,91,112,87,102,97,98,112,120,100,105,93,107,94,103,106,111,99,96,103,118,119,114,112,103,113,102,96,113,91,97,101,96,110,100,95,111,100,101,101,98,94,104,105,90,103,112,99,99,104,90,99,102,101,104,100,103,103,96,99,94,103,101,97,102,99,97,110,97,101,104,99,100,103,112,96,94,102,103,88,88,108,104,97,104,96,98,97,106,94,72,109,100,99,115,107,105,91,94,93,90,109,109,84,100,102,115,108,101,108,113,92,97,103,105,95,104,106,106,103,97,108,105,110,99,102,101,101,100,97,113,101,97,119,107,105,98,83,90,100,100,95,101,100,114,102,106,90,105,101,100,98,102,108,94,96,110,93,109,108,96,99,102,103,87,96,99,101,90,103,96,91,92,94,97,114,106,110,100,95,101,100,107,103,101,96,103,104,108,99,100,105,104,93,101,101,113,103,101,103,96,107,92,99,120,109,103,126,97,92,95,102,95,101,98,91,111,105,101,96,116,96,89,106,106,93,103,105,107,107,95,97,95,92,93,104,93,111,103,99,112,117,99,98,126,106,101,98,109,100,96,96,96,95,103,96,103,95,102,109,96,101,101,90,92,105,99,99,91,114,93,102,110,99,98,107,101,102,96,99,95,110,103,86,104,114,115,98,101,108,98,104,110,107,109,94,98,103,86,105,97,99,115,88,104,90,98,103,98,98,100,102,95,111,104,104,107,92,104,111,113,112,90,109,110,109,100,99,113,101,105,95,102,103,101,100,80,97,98,99,116,97,104,106,105,103,105,103,108,109,112,103,91,108,104,96,101,106,105,98,100,104,102,99,100,99,98,96,102,89,87,128,118,101,113,105,102,96,105,100,100,89,107,98,103,104,106,94,95,102,103,111,98,108,101,92,97,99,95,113,87,95,109,103,112,103,105,92,106,101,107,105,87,100,103,98,96,95,95,96,98,95,92,99,92,99,100,98,107,133,86,95,95,90,95,107,105,110,108,105,103,96,103,112,101,96,105,105,109,100,94,107,108,105,103,99,94,91,104,102,106,103,92,99,95,118,91,113,115,105,110,119,82,109,105,90,111,99,107,105,108,103,107,100,93,108,101,113,96,101,90,108,109,101,106,120,102,113,96,107,105,91,102,103,102,98,98,106,104,107,103,112,109,122,109,98,115,113,98,117,98,101,103,115,102,99,101,88,102,105,99,84,98,108,102,98,91,102,93,99,100,108,98,98,109,90,103,98,97,97,91,100,99,104,101,101,105,105,96,100,109,112,104,108,110,118,98,104,103,100,98,99,81,82,101,111,95,99,92,100,96,100,99,100,104,91,109,101,101,105,102,106,111,103,104,114,101,105,105,104,106,77,104,110,105,111,108,107,99,101,111,94,108,107,99,93,110,106,102,101,99,98,105,95,104,111,98,102,99,83,93,95,89,104,104,91,104,100,110,107,90,103,106,87,101,108,102,104,109,107,98,112,93,102,105,101,86,105,109,107,101,83,97,91,100,94,95,107,103,125,99,100,100,103,107,98,102,105,113,107,108,98,98,109,99,116,106,91,87,96,84,90,100,99,80,103,111,85,92,107,113,103,102,95,109,112,127,96,112,103,104,99,75,95,106,100,99,103,106,84,101,101,93,98,109,107,111,105,95,109,95,106,95,96,88,97,102,102,104,94,92,113,96,100,91,91,94,105,79,111,87,111,119,95,99,105,101,84,113,101,103,99,111,98,115,100,94,107,104,115,105,99,107,90,99,107,104,108,95,101,112,96,92,95,106,95,91,108,99,96,100,97,98,104,101,100,97,98,107,110,99,106,96,95,95,110,99,99,108,92,100,102,108,99,91,89,91,99,92,101,98,106,102,102,86,103,104,100,100,98,105,97,92,99,100,83,119,95,119,106,101,102,106,96,98,104,117,95,107,104,91,93,94,101,111,91,101,108,105,103,103,109,102,93,89,108,95,102,100,107,100,108,105,92,93,109,104,96,80,97,94,97,109,96,104,101,98,97,108,96,108,102,102,100,93,103,95,97,99,114,104,103,99,98,95,106,105,96,94,91,103,92,100,103,112,120,110,113,97,99,104,102,94,98,104,100,96,83,94,89,88,94,115,101,95,96,92,109,108,101,117,96,100,107,100,103,98,125,99,110,102,88,98,118,104,106,95,99,105,109,119,100,101,96,103,115,91,96,93,102,98,102,92,104,120,103,113,96,102,94,98,98,98,100,105,87,107,109,95,99,97,103,97,107,106,100,101,101,84,103,90,99,112,99,109,99,98,93,90,98,79,104,100,94,106,93,108,106,97,104,98,104,103,95,120,102,105,112,102,100,104,99,94,110,105,103,111,112,90,105,115,102,90,98,104,105,96,109,103,96,95,107,94,110,87,102,90,102,113,108,89,101,112,90,113,102,88,106,92,106,109,95,101,107,102,87,93,109,100,117,72,104,95,105,90,101,99,103,84,109,106,112,102,103,95,104,124,92,97,96,105,108,111,96,101,103,108,103,104,114,99,92,95,98,107,105,95,108,101,85,109,105,78,102,93,110,101,100,94,100,102,100,110,91,110,106,101,113,106,94,104,106,105,113,124,102,104,98,95,98,91,103,93,95,77,89,103,98,116,104,98,103,105,93,95,101,101,110,95,92,104,102,93,87,104,106,107,98,96,120,97,103,94,103,96,102,104,104,109,99,87,104,95,100,109,101,111,100,95,103,102,103,106,102,113,101,95,91,103,108,99,102,92,102,97,84,102,102,109,112,95,99,97,105,94,98,102,100,104,98,88,99,105,100,98,90,99,96,92,96,100,99,103,99,112,111,102,113,101,100,109,120,107,101,105,96,98,93,100,105,105,94,102,89,99,89,113,101,98,76,100,102,97,97,102,99,96,92,112,101,98,99,107,97,93,119,89,99,107,105,92,94,97,106,107,103,90,95,102,95,89,98,110,98,113,106,107,117,106,91,93,108,97,113,93,100,100,106,103,122,101,96,99,100,103,92,108,99,98,103,110,91,92,104,100,103,105,100,104,116,97,110,95,115,99,96,97,88,109,110,78,93,102,101,94,96,99,104,97,101,92,139,97,117,87,98,95,98,93,103,95,88,100,101,109,102,96,102,100,102,89,97,116,112,124,117,98,105,102,102,105,126,93,101,107,98,101,105,108,102,96,96,109,101,101,92,105,100,100,100,106,98,108,102,105,98,103,102,92,104,97,101,101,110,90,107,97,104,98,101,97,90,102,105,99,103,93,105,118,95,93,103,92,91,101,102,112,61,96,100,95,96,93,98,74,91,90,105,96,99,112,101,99,115,116,103,89,96,114,111,100,107,97,103,99,88,108,100,103,96,106,98,101,100,97,89,91,103,92,113,100,109,117,111,111,109,109,101,113,120,104,100,107,108,106,90,102,104,90,104,104,95,95,96,92,100,106,107,100,90,90,113,88,94,95,95,97,99,94,105,112,100,99,102,106,103,93,94,83,104,102,102,99,106,97,102,103,95,106,108,105,95,100,91,96,104,98,108,89,105,105,107,87,105,82,102,108,93,113,124,107,105,113,100,98,110,101,90,108,101,118,95,104,105,104,94,108,102,103,102,89,105,100,93,94,91,100,82,103,106,106,96,96,105,101,97,104,98,95,90,110,100,100,106,117,88,107,98,103,111,98,113,96,110,113,113,91,95,84,86,96,108,101,88,103,105,106,104,106,100,91,108,104,101,94,108,98,102,107,98,104,104,102,116,98,104,92,108,109,94,89,104,91,102,103,109,94,103,97,97,101,91,110,104,95,95,109,99,99,125,97,94,101,104,99,103,113,96,93,118,100,102,103,97,103,96,97,95,96,111,111,100,100,101,98,97,112,100,87,100,92,90,102,94,95,107,89,101,83,105,106,103,94,89,91,92,101,100,95,84,99,95,113,115,91,95,114,94,92,110,108,96,97,79,93,93,102,105,83,101,96,117,108,100,94,102,92,99,95,98,80,107,100,90,100,104,90,101,99,91,90,96,88,108,111,98,104,105,113,101,94,106,105,79,109,88,98,101,80,95,101,99,94,90,103,103,92,109,96,112,112,109,91,104,87,105,86,120,88,104,103,102,97, +694.61688,94,85,86,103,96,97,98,106,103,108,107,98,99,107,96,97,104,100,104,107,110,96,87,119,92,114,106,94,101,97,92,103,107,91,113,98,96,80,103,99,108,106,100,128,106,99,113,103,91,94,93,103,106,96,100,95,102,97,100,97,99,113,118,113,103,106,96,99,91,97,105,88,95,97,89,108,94,90,97,112,95,87,102,97,102,109,91,107,101,100,100,109,111,102,95,104,115,92,98,105,79,99,102,99,110,110,101,113,97,96,99,102,107,91,100,80,107,118,102,108,108,104,105,103,110,106,111,91,106,84,90,109,92,114,121,94,111,106,96,101,69,92,106,94,104,97,99,98,99,100,97,83,106,88,100,107,115,103,122,103,99,97,113,104,105,91,102,95,104,88,113,109,100,85,87,107,101,103,105,95,91,99,99,104,96,92,99,103,95,87,87,101,109,100,100,100,101,105,101,108,99,95,95,102,108,93,92,111,98,102,98,103,98,92,107,86,108,98,112,90,130,98,99,110,101,111,96,113,103,100,94,103,95,112,110,114,107,104,110,88,86,109,102,102,99,113,98,112,109,105,91,107,101,88,100,98,91,105,105,107,90,112,110,89,105,111,103,98,87,114,106,112,89,90,99,89,103,110,90,95,107,126,111,95,90,103,88,103,96,87,91,95,114,108,95,107,112,101,100,98,85,131,99,109,102,108,106,98,95,110,110,90,107,104,108,94,96,88,104,114,101,94,98,104,100,78,95,86,112,108,97,94,95,125,117,104,103,110,106,103,98,105,106,104,99,83,94,138,109,106,107,93,105,101,112,109,103,107,98,102,105,97,98,84,111,99,95,100,101,94,108,92,105,96,101,100,109,96,99,94,96,103,106,102,103,92,100,99,127,96,109,101,108,95,101,117,106,96,113,87,104,105,106,89,97,100,91,106,108,102,96,91,106,97,104,102,94,98,108,88,112,97,110,108,97,106,102,102,112,97,102,95,106,110,109,93,93,112,91,107,108,96,101,97,99,108,79,101,87,106,100,95,90,102,99,110,107,102,104,100,95,95,112,114,106,108,97,86,90,100,99,110,93,106,99,93,90,119,112,96,99,100,110,101,95,98,82,93,100,100,102,108,104,107,118,115,95,113,94,87,101,100,85,104,95,107,98,94,91,100,110,105,96,99,94,98,96,95,97,97,99,109,91,96,110,105,103,112,99,111,101,96,102,98,104,105,134,100,103,111,103,95,92,105,110,65,88,90,96,114,102,106,103,101,95,100,99,100,108,110,94,100,98,105,98,116,96,102,106,92,101,87,121,104,113,101,101,94,107,102,100,86,112,100,97,88,105,109,78,105,111,105,104,104,103,99,104,104,90,102,114,87,103,106,101,101,100,100,100,100,100,97,89,76,103,119,101,103,104,98,93,106,102,109,97,100,109,93,104,111,98,107,107,106,97,100,93,97,90,101,102,103,100,110,104,97,105,109,107,94,105,97,79,102,102,100,99,112,95,100,89,108,127,108,105,114,99,96,108,111,94,105,98,99,102,99,100,102,107,95,112,100,102,105,90,89,102,103,125,103,100,103,107,92,93,92,105,95,105,98,107,97,102,97,97,102,99,104,98,104,101,104,107,102,94,95,105,101,91,103,113,110,99,107,108,95,108,96,110,97,97,93,99,100,100,104,99,84,114,95,111,93,92,100,94,104,98,98,101,105,110,104,103,101,104,140,115,107,109,96,104,105,88,104,94,101,80,109,110,104,102,96,109,92,99,110,101,97,104,106,104,94,115,98,98,98,95,117,83,101,99,99,121,106,101,115,98,112,87,96,108,109,94,98,85,119,94,105,99,100,105,104,108,95,98,101,117,95,114,108,111,107,108,105,99,96,98,95,106,103,100,106,103,93,106,104,78,101,105,108,82,114,105,90,94,94,101,126,104,108,115,95,106,104,105,100,106,108,106,107,106,111,112,113,99,105,97,113,107,102,104,113,101,99,127,80,108,107,99,103,108,105,99,95,102,105,102,106,112,99,104,107,107,114,103,93,113,101,98,101,101,98,95,93,112,99,86,96,93,101,100,99,109,110,106,105,91,102,110,100,103,103,106,112,116,108,114,101,95,103,103,99,102,106,99,88,111,97,104,104,93,107,99,109,92,102,104,110,101,104,100,105,112,104,111,99,104,106,103,117,107,107,100,101,109,101,97,109,96,116,101,88,83,105,110,95,105,100,100,95,105,95,98,109,98,114,105,101,100,106,94,104,105,105,98,94,106,108,87,106,104,99,91,97,112,78,108,109,108,108,118,134,94,105,96,97,115,104,95,117,109,106,93,110,101,104,113,115,103,99,100,103,111,94,115,105,106,108,94,99,102,119,95,108,97,103,122,99,112,102,110,106,98,94,88,107,105,95,107,84,94,116,96,105,100,98,97,110,96,94,95,99,109,95,100,90,108,98,96,105,101,102,97,105,94,92,97,91,97,95,100,106,99,90,112,108,101,102,105,112,96,100,85,110,104,111,99,96,101,98,109,87,99,93,107,103,104,94,90,98,93,92,101,115,108,95,101,99,111,97,105,109,108,89,102,101,79,105,118,98,92,83,104,100,95,99,102,96,114,111,108,100,105,117,92,105,107,99,98,97,111,100,112,91,111,128,112,97,107,97,87,115,104,105,105,94,108,108,100,107,102,103,104,95,93,111,104,95,94,99,99,97,120,101,91,104,111,108,96,109,95,99,104,98,119,104,98,99,104,108,108,91,98,111,105,95,100,104,107,94,90,96,95,98,102,98,104,105,104,95,101,108,109,102,95,92,104,96,110,106,105,97,103,84,101,113,108,99,92,99,102,97,98,98,99,87,100,116,104,99,100,107,93,94,101,91,113,109,106,98,106,87,105,95,102,100,91,99,97,105,102,111,103,95,98,105,93,102,105,96,93,118,108,96,107,92,102,99,98,98,102,82,105,106,98,104,97,107,99,100,91,107,105,117,106,108,94,95,90,105,99,98,96,125,104,100,106,99,100,106,111,101,91,115,103,95,96,95,109,105,95,95,109,97,94,107,104,78,102,93,92,103,92,107,101,83,98,96,99,101,106,105,93,80,106,102,102,90,95,91,111,105,106,110,100,104,99,97,96,98,102,90,97,94,91,102,114,106,97,104,96,93,102,109,96,103,116,86,88,134,107,99,96,97,105,97,108,95,108,97,101,93,92,100,98,99,100,102,99,104,93,88,99,90,98,96,109,118,106,95,107,93,104,122,113,105,100,101,97,105,98,103,87,108,96,88,98,117,97,110,93,102,98,112,104,99,97,82,97,103,104,95,104,106,100,91,104,100,104,97,112,103,100,102,81,104,100,92,99,104,84,106,86,95,99,100,87,98,114,92,106,99,103,107,97,97,84,97,91,91,100,96,99,115,81,77,109,87,92,95,101,97,106,100,96,108,116,101,107,96,96,122,110,77,104,98,99,99,115,108,104,100,98,106,96,99,98,104,101,100,108,102,99,117,100,108,107,109,100,110,106,101,94,103,93,107,99,100,106,97,112,112,107,106,95,85,98,105,103,98,101,101,113,98,108,99,91,97,96,93,91,97,104,101,72,101,112,108,98,105,97,90,99,114,103,93,98,98,106,111,102,104,91,102,100,101,100,95,92,87,111,106,114,102,91,102,105,88,99,91,93,80,91,97,92,97,96,101,101,93,100,95,97,105,96,105,109,97,91,104,96,107,105,104,93,97,98,104,100,97,101,99,90,98,100,94,99,87,108,101,106,95,98,112,103,98,97,91,101,96,103,107,99,104,115,88,102,117,108,103,89,94,111,99,104,111,68,110,100,96,96,88,99,114,102,96,102,86,90,94,102,96,111,108,100,112,94,113,86,99,105,98,85,99,92,115,97,105,103,106,116,109,104,107,90,91,104,89,99,107,88,100,106,102,94,94,97,110,98,104,114,104,94,116,101,100,106,95,96,99,95,104,93,106,104,108,94,88,108,102,113,89,97,107,103,101,103,95,116,102,109,114,98,87,107,91,99,97,93,88,115,111,91,96,104,101,99,80,107,113,109,93,109,98,98,100,112,97,95,108,88,104,105,107,107,103,96,106,99,102,96,95,90,99,102,98,108,95,101,93,96,90,89,93,96,105,81,105,100,100,108,105,87,92,96,103,95,107,102,96,103,98,98,79,99,105,97,101,101,95,112,99,104,121,106,98,103,99,94,105,105,98,100,105,97,84,98,94,96,98,87,96,110,85,102,96,90,102,94,107,100,104,105,98,94,108,101,96,99,107,91,115,107,98,103,109,91,102,103,101,100,113,112,107,99,99,103,102,101,119,88,94,106,97,96,126,98,106,106,97,102,100,104,100,95,92,101,112,95,99,98,105,107,116,113,94,105,98,99,111,91,116,113,101,93,104,94,106,100,108,98,87,114,108,108,96,101,94,104,99,96,106,99,103,112,91,100,84,111,103,94,100,99,113,110,107,108,101,103,110,94,100,104,114,107,110,99,114,112,94,104,87,98,90,102,96,99,91,93,101,93,98,111,101,92,106,112,100,115,128,107,111,113,94,109,108,104,106,95,102,95,85,100,106,113,98,102,81,99,100,99,95,100,103,103,104,109,99,94,95,109,101,103,106,108,112,96,103,95,93,97,89,114,98,99,89,99,93,100,97,97,93,87,97,114,102,98,108,105,95,96,115,112,104,86,88,92,102,104,96,99,108,92,100,95,96,110,100,97,96,97,95,103,106,91,95,94,102,98,99,86,94,92,93,94,94,98,106,92,70,101,110,130,88,95,106,103,104,111,95,103,108,108,100,98,102,98,97,96,94,100,108,85,98,91,102,90,83,113,96,99,104,99,97,110,103,108,99,109,97,97,96,109,94,98,115,96,92,99,99, +694.75824,110,106,91,107,109,105,98,116,102,113,101,104,98,95,96,113,99,117,109,90,104,95,108,91,88,108,120,100,83,111,109,102,100,89,112,97,89,97,97,100,99,96,99,94,109,105,96,111,110,101,107,95,94,104,105,97,109,101,106,97,99,98,111,90,99,107,105,92,98,86,102,96,97,101,100,102,98,113,113,96,101,96,101,95,104,102,106,119,99,106,111,98,96,110,106,104,106,101,101,102,119,97,97,101,101,95,92,104,99,110,105,99,106,104,102,107,105,107,97,101,93,99,104,119,102,111,120,99,108,96,91,89,107,99,91,91,106,103,99,105,96,107,93,105,109,108,106,84,100,105,100,100,98,116,103,104,112,97,108,93,93,103,105,100,108,96,92,102,95,103,99,101,102,95,121,101,102,105,98,99,100,103,112,98,108,98,102,76,100,100,102,103,94,99,108,98,105,115,94,86,104,94,91,92,76,106,102,88,89,122,93,107,103,100,94,98,72,105,105,101,104,92,102,104,89,97,106,108,96,110,97,104,103,99,103,97,107,103,102,108,102,102,93,98,100,114,109,97,99,109,95,101,98,90,102,113,105,98,100,102,95,94,97,75,103,109,104,102,109,98,104,98,108,96,98,100,99,111,106,102,109,106,100,110,110,92,88,101,100,102,103,86,110,105,119,103,105,99,104,113,92,95,95,121,106,106,104,97,105,107,112,112,97,110,94,105,93,104,101,110,90,94,108,98,105,100,91,97,114,106,108,103,105,97,100,104,112,110,103,95,115,94,100,105,121,122,107,101,113,101,107,91,99,103,101,95,110,100,96,91,99,92,106,96,96,102,104,110,105,102,103,96,92,102,94,97,100,100,96,101,102,115,103,107,102,99,97,103,125,101,104,99,96,98,93,93,107,102,100,115,89,94,103,93,96,101,96,98,96,108,116,81,108,100,114,89,119,94,100,105,96,107,101,98,97,96,111,101,107,102,100,126,93,111,107,94,105,95,95,90,99,99,113,104,101,94,89,99,115,116,102,98,95,104,114,104,102,104,91,71,104,107,107,101,110,102,85,105,109,92,99,103,95,96,96,106,93,95,93,93,100,99,105,95,95,98,113,106,99,108,109,115,106,91,110,99,95,94,90,101,105,107,86,90,99,96,91,105,97,115,99,99,107,100,100,94,104,122,99,94,103,104,99,102,114,98,111,101,106,97,92,116,93,108,101,106,101,119,96,98,104,107,101,96,100,100,112,97,112,101,104,103,103,87,91,113,102,100,106,100,96,98,67,105,104,100,105,101,109,93,97,99,108,112,107,105,100,107,103,104,101,93,99,100,101,108,117,102,109,116,103,113,110,103,109,111,90,99,105,97,115,104,114,108,105,95,97,99,100,109,94,98,104,100,100,100,99,103,94,102,112,106,99,107,105,99,100,108,114,101,78,106,105,104,99,99,110,95,105,117,103,111,98,86,104,101,107,99,105,105,105,90,99,110,97,94,99,89,103,100,96,105,91,104,98,105,101,84,101,103,100,111,104,110,99,103,109,109,100,95,115,113,111,91,101,103,95,98,103,95,98,127,97,112,97,94,112,94,112,92,106,105,99,107,103,101,101,109,103,82,100,109,112,94,95,109,100,88,110,97,105,105,96,99,105,100,105,103,108,113,101,83,94,110,97,103,103,97,103,86,110,108,93,108,104,104,104,99,117,111,104,93,101,107,97,95,95,101,96,95,89,105,106,101,64,97,97,99,99,113,111,107,100,109,85,107,101,99,100,96,74,99,101,96,98,115,99,97,102,105,106,100,102,109,113,96,95,110,108,103,101,105,87,90,97,99,102,109,101,99,117,108,94,101,112,92,112,105,101,90,103,103,102,112,100,107,116,102,108,97,103,97,110,100,84,114,97,103,102,116,112,110,106,94,97,105,100,113,107,98,97,95,106,110,101,99,96,107,91,104,74,107,91,96,104,105,95,105,108,107,104,99,104,111,78,106,103,104,98,105,105,113,95,105,94,104,99,101,103,107,94,99,111,112,107,103,95,101,97,101,106,101,108,104,96,98,97,101,102,106,95,99,97,86,95,101,102,94,100,97,101,95,100,116,99,101,105,109,91,112,122,101,75,104,92,88,103,93,106,103,93,102,105,100,105,97,113,101,100,103,102,105,100,107,101,101,100,96,105,106,112,88,105,105,121,105,96,100,110,89,100,111,105,99,103,104,108,100,119,104,102,106,108,106,101,103,109,101,107,114,107,108,99,102,91,96,101,98,94,93,102,104,95,105,112,108,115,107,96,113,91,110,90,101,91,100,97,100,106,102,108,103,99,106,107,85,101,114,99,95,108,109,110,102,112,104,105,107,110,98,104,102,100,112,116,110,108,105,101,102,99,100,110,92,109,106,105,99,88,112,106,94,101,105,100,102,94,105,103,97,109,97,101,96,137,108,101,87,98,108,87,113,103,97,110,91,108,125,96,102,101,87,106,97,104,95,97,94,108,105,101,97,100,107,104,109,103,97,123,108,105,101,105,110,96,94,109,101,104,101,110,100,98,105,103,104,100,111,97,102,104,102,95,99,106,104,90,117,96,102,91,96,109,114,97,108,90,104,114,102,95,96,92,112,108,98,104,106,98,102,99,95,122,87,96,102,89,91,99,95,102,98,101,91,103,101,98,96,96,97,112,117,110,109,100,97,114,107,106,91,102,91,102,105,95,112,94,107,96,91,104,110,99,104,87,96,109,101,101,106,87,115,99,101,101,102,97,86,91,92,112,107,105,90,105,97,99,106,104,94,105,98,97,114,93,98,101,104,99,102,95,106,108,97,103,104,103,99,101,88,102,96,91,108,93,87,104,109,98,107,104,102,100,106,100,107,73,99,110,105,98,95,106,102,98,91,108,113,108,112,100,100,93,113,97,110,97,98,94,98,97,102,93,94,98,100,112,95,117,109,99,99,79,100,108,92,112,109,87,104,105,88,97,92,109,119,101,98,102,104,117,104,100,106,109,109,98,118,105,97,106,96,83,101,104,78,100,89,104,99,101,103,98,112,108,98,105,104,93,99,99,109,108,101,97,98,109,102,99,106,98,102,111,102,106,93,87,101,98,93,103,103,94,115,100,113,103,95,108,98,102,105,101,98,111,89,88,98,103,94,106,98,108,102,98,96,97,87,104,98,96,96,98,91,101,105,84,91,107,95,104,92,106,98,109,106,87,97,93,104,101,105,96,95,109,101,105,96,103,92,105,96,112,109,116,115,92,99,99,101,112,95,103,96,109,103,95,103,109,106,82,100,97,95,113,109,111,96,105,99,98,105,100,103,102,92,107,101,96,92,102,99,103,108,101,106,105,94,113,94,104,106,109,115,108,110,106,101,109,96,112,77,95,95,103,92,94,110,101,96,103,98,106,112,94,104,106,118,112,101,96,99,107,89,83,95,106,110,105,100,77,106,99,108,98,109,108,100,99,90,108,94,97,99,107,100,103,95,98,96,90,105,113,108,107,99,97,106,104,91,109,108,108,100,95,107,103,100,102,102,102,112,105,98,113,105,91,104,96,111,104,105,105,106,101,91,107,106,116,104,105,87,97,107,94,102,113,99,99,104,86,102,104,106,100,84,105,100,96,112,104,108,102,94,96,102,103,85,97,102,95,99,100,108,95,98,103,106,101,103,104,98,95,102,91,103,105,117,103,96,100,100,94,99,108,101,109,113,99,104,90,115,96,98,100,87,107,114,106,103,107,96,98,96,104,106,96,107,99,107,116,99,97,101,98,96,103,101,101,96,87,101,94,105,108,106,105,77,95,105,94,106,120,108,110,91,100,88,99,99,105,108,98,131,97,113,94,101,88,90,107,104,106,99,105,100,96,94,100,100,101,95,85,100,105,98,97,88,98,95,103,112,98,98,101,98,110,108,104,103,106,112,102,90,86,98,105,100,96,92,100,105,97,95,97,91,107,105,95,97,89,96,91,104,97,83,101,94,94,95,101,108,86,107,97,101,128,104,93,111,96,95,97,103,87,95,108,97,98,99,101,100,92,96,92,106,99,95,101,108,95,111,91,91,105,105,91,107,97,93,106,96,111,98,105,112,107,99,96,108,101,111,109,95,98,99,113,94,98,103,103,100,101,102,95,96,105,103,102,96,94,114,91,99,107,108,96,98,104,83,109,66,105,97,112,98,104,113,106,100,95,106,101,107,102,91,98,105,93,104,90,108,114,96,101,99,104,91,90,101,85,100,95,112,96,97,103,99,106,77,101,102,101,99,98,102,95,98,99,100,98,100,105,104,77,99,98,96,100,109,100,108,95,91,98,104,97,92,97,92,105,92,102,106,98,82,96,104,107,105,109,76,109,116,101,107,108,93,99,95,101,102,110,99,83,96,110,100,113,98,96,105,119,110,89,81,113,102,98,86,96,104,96,102,106,100,98,88,99,110,95,102,102,108,98,88,100,109,102,102,106,102,90,106,108,108,108,101,95,89,97,89,97,114,117,109,114,91,110,98,84,109,114,109,98,108,117,95,106,105,100,98,91,90,103,89,101,110,102,111,106,112,109,101,97,122,100,96,100,95,98,103,95,79,70,101,95,96,95,96,99,109,108,98,89,88,92,121,106,92,104,105,106,92,107,117,109,109,102,91,99,110,104,110,95,98,94,109,98,99,101,91,97,96,104,98,107,103,96,100,106,96,121,96,79,103,115,103,65,90,95,104,116,99,102,98,104,110,83,85,99,100,102,90,101,102,101,97,97,98,110,101,102,98,115,100,98,101,108,94,116,91,99,90,115,103,107,74,79,102,106,109,110,101,101,102,97,109,113,105,106,116,102,98,104,113,84,108,93,67,112,90,104,94,112,102,96,118,94,62,109,105,105,93,105,124,94,112,103,113, +694.89954,96,94,105,97,85,101,101,103,101,83,73,94,104,89,97,102,107,101,105,89,97,85,110,104,92,106,104,115,105,88,96,101,92,90,97,107,87,85,95,104,110,90,106,99,109,98,96,90,96,118,87,106,99,101,106,101,87,104,110,86,100,101,101,102,93,108,106,103,106,107,113,88,87,99,96,117,107,97,105,97,91,112,97,107,99,103,105,105,91,99,103,115,110,83,92,105,102,99,111,101,92,112,93,98,97,88,124,95,98,95,93,94,118,96,99,98,92,97,105,99,109,101,102,118,113,98,100,95,103,99,101,91,93,97,109,111,104,102,91,96,101,109,111,97,103,106,94,100,105,90,102,108,106,92,101,87,110,90,114,105,94,103,119,93,97,91,90,99,100,105,98,101,101,101,101,104,98,103,106,100,102,115,110,92,94,92,83,96,100,105,100,101,92,110,98,106,98,98,106,99,104,93,105,96,96,113,103,99,101,95,96,99,108,97,106,110,91,95,93,110,101,104,89,97,103,105,101,109,111,95,89,105,99,94,104,106,99,92,99,105,115,92,70,101,89,104,94,100,104,101,83,92,97,95,100,93,70,105,88,98,96,101,104,97,94,108,99,102,89,92,95,95,96,106,89,91,83,108,105,100,92,96,89,92,96,101,100,95,109,98,89,97,121,94,94,101,101,112,97,102,108,96,87,108,118,100,101,99,116,102,94,100,111,95,112,114,97,91,98,97,93,96,105,101,105,95,105,97,116,108,96,95,103,108,106,98,112,99,99,105,100,98,103,99,107,107,106,114,103,106,113,107,100,90,96,98,109,96,106,104,106,96,93,107,99,93,71,87,101,98,115,97,100,105,98,102,98,94,95,105,109,104,96,95,94,93,110,100,100,105,109,85,102,103,90,91,105,100,105,98,93,95,97,103,106,92,90,98,103,98,112,99,103,109,117,105,94,98,110,95,108,112,104,108,101,96,93,104,96,99,91,108,91,97,99,90,101,103,101,107,100,116,90,101,105,100,102,91,96,116,98,108,106,98,100,92,103,98,116,105,120,99,108,105,96,97,109,96,101,90,98,112,94,101,90,94,88,103,99,100,102,100,101,99,94,102,113,115,101,96,100,98,103,99,107,82,105,95,95,108,97,78,97,95,108,94,100,100,104,106,104,98,95,111,108,105,108,102,105,83,108,98,104,99,107,112,99,93,91,100,103,101,100,93,102,97,115,97,106,117,102,107,103,103,108,97,100,103,93,107,77,97,100,103,102,121,92,104,96,94,111,94,103,93,87,98,102,114,111,99,116,92,98,112,101,109,106,87,100,105,102,116,88,100,103,102,106,100,102,101,102,96,106,110,103,103,94,99,99,99,94,96,100,89,103,92,94,99,96,98,113,94,105,104,91,90,105,96,97,96,101,113,108,92,91,107,99,108,100,108,100,92,102,115,92,98,103,92,100,109,111,96,110,89,111,98,78,96,95,95,107,100,96,95,106,96,117,97,100,99,107,104,102,105,94,95,76,114,104,120,100,93,110,106,78,100,99,100,105,87,104,97,95,89,98,95,103,99,101,93,106,112,102,95,113,108,90,103,95,94,109,106,109,96,102,98,98,105,97,95,100,92,90,91,91,99,93,90,99,94,102,104,100,83,93,89,93,94,98,104,107,106,98,109,73,95,91,86,102,97,105,98,106,75,110,100,109,108,100,94,114,106,95,113,108,100,104,98,100,91,109,91,99,100,97,93,98,108,103,96,109,99,95,100,107,102,105,76,102,105,115,99,105,117,101,103,96,102,105,108,112,110,93,109,110,95,89,111,100,106,95,97,81,113,102,98,101,101,101,100,145,104,93,108,106,91,111,104,121,93,103,105,106,100,100,100,104,107,112,99,100,99,113,106,105,102,103,115,102,95,102,93,103,83,89,101,95,98,98,94,101,97,98,94,101,111,112,109,110,105,111,102,93,100,103,106,106,95,103,102,93,109,92,112,92,101,106,100,108,102,101,99,100,94,105,103,103,104,112,101,98,104,85,99,116,103,108,99,106,104,104,110,104,104,101,102,99,103,108,110,97,109,104,105,98,91,101,97,100,100,97,107,121,108,94,97,105,102,102,87,100,106,102,102,100,106,96,96,98,106,110,105,106,104,92,100,73,86,101,98,101,98,93,112,98,104,98,102,111,98,90,97,105,81,97,93,111,114,104,109,98,99,102,89,83,92,113,86,95,118,94,99,112,93,110,103,101,99,115,87,103,101,89,109,101,111,103,96,94,87,103,104,99,100,109,99,104,99,98,99,91,99,108,110,101,105,101,67,106,99,96,79,94,92,114,82,101,101,85,107,96,111,87,97,102,89,95,92,110,96,105,104,99,103,104,100,100,103,105,102,111,97,102,94,98,101,100,94,111,99,93,105,104,83,92,108,105,98,90,86,98,102,96,106,101,100,100,103,96,101,98,108,97,107,101,112,103,103,92,96,99,85,111,93,100,112,108,99,110,98,95,86,111,106,93,105,99,99,83,111,79,102,98,100,100,92,91,104,105,96,100,102,102,98,91,98,107,102,109,102,102,106,115,99,103,102,98,99,95,102,93,105,95,101,96,104,93,81,105,93,107,91,103,125,103,95,99,102,101,103,89,97,118,90,112,89,101,97,110,95,108,94,104,98,97,111,108,95,101,96,105,116,95,96,96,131,100,96,113,108,104,94,110,103,96,107,103,85,92,110,107,105,98,111,98,106,106,108,110,109,107,104,94,103,102,103,99,105,104,100,97,109,112,105,102,84,108,94,91,108,108,83,97,109,121,98,106,113,104,108,104,109,103,101,108,104,102,104,106,107,110,106,87,102,96,108,103,99,98,91,108,99,120,95,113,105,103,111,88,105,119,102,99,109,97,101,101,107,87,112,107,109,104,106,103,101,105,105,103,100,101,101,76,103,109,104,103,88,105,97,114,100,106,102,87,88,114,101,106,103,103,96,94,109,103,96,100,112,107,98,109,102,95,105,79,94,107,76,84,97,105,92,98,110,104,100,113,104,107,94,92,101,101,85,100,106,122,101,93,94,101,77,99,106,104,101,99,102,99,95,111,107,101,113,108,107,112,95,96,102,125,103,95,107,111,103,90,102,102,93,75,100,105,117,109,96,95,92,97,101,100,102,112,86,110,99,92,89,109,116,99,99,98,97,105,93,109,96,101,105,93,106,102,97,106,96,97,98,92,110,98,94,100,94,102,97,114,98,99,99,96,97,99,109,104,117,101,98,108,99,100,100,91,86,100,94,95,99,100,101,108,91,93,102,100,104,111,100,92,104,106,105,100,115,111,112,109,98,106,91,98,104,88,97,85,99,100,87,94,97,99,113,103,110,104,111,100,101,109,83,106,100,103,98,97,92,124,99,104,80,102,105,103,102,123,105,98,100,96,103,111,93,81,107,113,101,110,101,95,106,102,99,104,102,93,97,103,92,94,99,109,107,91,95,105,102,102,105,113,102,97,85,106,107,128,116,102,101,104,100,110,99,107,99,93,111,103,112,104,108,95,106,101,101,109,105,99,94,98,117,105,97,101,93,101,108,108,108,102,99,102,100,106,106,107,103,97,106,97,92,101,100,107,100,106,99,100,106,67,113,100,97,104,97,112,105,107,109,102,95,106,104,105,95,107,101,94,98,100,103,102,96,108,106,104,117,102,105,90,96,97,97,90,98,98,97,111,103,104,84,115,106,114,101,103,110,102,103,132,94,102,99,108,94,94,97,105,100,109,103,109,111,88,95,90,102,98,95,100,101,101,117,95,107,103,120,105,114,102,121,117,109,99,100,105,106,100,97,107,108,101,100,98,102,101,95,107,105,95,104,98,99,100,107,120,93,101,95,108,101,102,63,116,91,107,101,113,105,98,98,100,103,97,98,115,100,109,101,105,99,95,95,90,97,94,106,97,99,106,113,93,93,89,107,105,95,96,68,84,108,112,91,97,101,85,112,86,98,103,99,95,97,99,109,100,104,101,102,107,102,95,112,106,115,118,102,102,117,109,103,112,92,107,96,102,106,109,110,113,101,96,97,94,88,100,99,95,104,104,88,98,106,109,85,114,108,97,103,101,105,95,85,102,106,100,98,96,100,102,98,101,109,92,112,101,87,100,100,104,98,97,94,86,95,109,94,104,109,106,86,103,116,102,104,104,111,99,69,85,93,103,110,105,96,102,93,107,84,101,101,95,99,86,83,97,105,99,107,110,101,95,129,105,106,85,107,87,83,97,110,99,98,100,90,122,103,100,95,102,103,113,102,106,110,94,89,102,106,102,94,107,104,94,98,101,106,106,98,98,102,105,89,117,93,93,96,109,105,107,100,95,108,108,109,105,98,97,104,101,95,103,117,94,99,85,104,100,109,104,109,84,105,104,106,97,96,97,97,101,94,107,95,91,111,91,106,94,110,107,96,92,106,103,108,100,96,99,105,96,105,97,106,98,95,106,109,101,101,91,98,93,97,103,109,104,109,103,102,103,102,103,113,100,100,101,87,102,107,114,99,93,111,105,90,76,106,109,91,106,66,104,107,121,104,111,121,95,91,106,100,95,97,106,102,113,103,97,94,94,107,103,75,105,102,104,106,112,102,117,91,104,102,105,102,107,112,109,101,103,92,100,98,107,104,117,121,95,103,103,102,98,104,126,106,93,100,115,101,96,98,116,97,106,119,101,93,98,93,91,95,120,93,90,110,99,101,105,110,96,96,113,96,101,105,115,99,105,108,91,105,92,91,113,106,115,105,108,95,97,98,101,91,101,101,99,100,96,104,100,88,95,106,99,99,95,114,92,106,94,98,106,113,88,102,80,112,88,103,107,99,104,104,106,99,101,109,91,113,108,75,102,107,102,104,101,93,93,105,105,102, +695.04083,94,93,104,86,103,108,103,97,86,102,117,105,107,104,112,108,98,107,83,102,97,101,98,108,104,102,97,104,111,97,133,107,96,102,107,104,94,101,102,130,102,106,108,74,88,123,106,97,91,110,105,109,93,115,106,97,97,91,100,98,95,112,98,99,102,117,100,100,117,95,101,99,99,105,93,109,96,98,111,91,111,99,106,117,114,94,101,104,108,94,104,107,114,106,79,95,93,86,106,118,93,102,72,90,88,111,100,102,100,118,102,102,106,100,100,104,83,93,110,106,119,100,102,108,111,105,120,103,105,108,79,100,93,102,107,96,94,111,91,97,95,95,96,97,114,102,95,84,100,92,98,91,119,98,99,85,103,94,103,103,99,106,99,99,112,95,108,106,103,102,97,90,95,101,114,112,100,98,102,110,108,93,100,105,104,93,101,100,97,110,103,108,99,102,86,89,99,100,103,97,94,104,102,99,91,96,103,113,109,104,95,105,93,104,91,104,97,97,105,102,103,109,110,91,97,104,86,95,106,92,100,106,103,88,105,104,113,100,106,99,106,104,104,115,101,103,104,95,100,102,110,98,99,101,100,104,106,95,88,103,101,104,113,92,97,97,99,98,96,104,105,96,102,108,94,101,83,101,96,112,107,105,101,101,118,117,91,95,106,101,92,109,105,103,119,99,102,103,109,106,97,100,108,126,101,107,102,99,98,102,99,125,113,111,100,93,121,99,98,94,89,86,99,116,76,95,99,90,102,103,106,81,104,108,109,115,105,92,98,90,112,95,97,95,98,98,101,101,114,92,112,88,113,108,97,103,108,104,113,96,102,98,93,97,112,96,97,107,98,105,114,105,113,106,86,81,105,96,104,85,107,107,100,103,99,98,90,108,96,100,115,92,96,96,105,109,105,106,91,98,90,100,100,96,105,84,98,95,97,101,99,95,95,114,93,104,101,88,102,97,108,109,90,98,90,102,101,93,95,105,90,107,94,108,112,68,94,106,102,102,109,106,108,110,101,89,89,85,113,115,96,94,103,103,93,100,106,110,104,98,95,103,96,119,103,110,102,92,100,102,92,109,110,101,103,93,91,109,91,94,101,102,91,105,97,86,102,95,94,103,94,103,106,106,97,91,99,106,109,89,108,99,108,101,101,95,92,105,107,98,121,98,92,105,99,93,94,101,96,117,91,96,104,101,107,108,106,99,100,99,96,88,106,103,100,103,98,101,102,102,94,105,95,92,117,94,105,101,99,105,99,101,101,94,94,86,109,89,97,96,96,95,92,115,92,91,102,95,110,102,109,87,80,93,117,102,93,91,102,104,104,91,92,92,103,97,100,109,109,98,110,105,106,96,111,102,88,113,104,86,103,103,107,99,93,102,101,93,108,102,98,90,105,105,103,100,105,101,112,104,101,96,101,90,107,106,97,103,95,95,101,96,91,99,102,113,104,99,101,107,106,106,99,105,105,104,91,96,99,105,102,75,107,105,103,98,97,102,95,109,100,96,91,104,101,83,103,97,102,99,102,99,92,101,103,102,99,98,102,107,77,107,101,106,101,129,96,98,108,103,100,109,101,109,85,109,86,104,99,99,102,108,104,97,100,101,90,100,96,101,98,108,98,110,98,100,114,93,106,99,99,99,105,101,94,91,97,108,102,110,105,104,95,93,104,101,95,97,102,83,95,90,82,91,99,105,97,100,99,94,99,100,102,105,102,99,105,101,97,105,95,110,92,105,88,95,92,103,104,92,104,103,97,100,121,95,103,91,108,98,100,104,103,109,92,98,97,98,90,99,105,102,94,109,106,103,92,109,106,110,92,105,93,104,101,102,100,100,68,102,113,101,78,95,105,138,106,101,108,99,98,119,99,102,107,110,103,106,113,105,98,96,110,106,98,88,100,93,102,97,98,108,103,95,102,97,99,104,88,103,94,113,110,102,90,102,97,105,110,101,96,107,95,102,110,98,111,99,111,88,95,109,106,86,91,103,100,103,103,91,96,102,95,100,90,103,105,112,115,106,94,105,91,117,102,92,92,103,92,107,109,133,121,113,98,103,100,106,89,100,106,94,105,103,89,100,94,103,86,107,104,106,100,101,110,99,103,92,103,106,91,100,99,96,101,97,100,113,105,103,100,102,95,98,90,118,109,92,95,128,93,99,98,106,113,104,113,99,93,102,110,108,95,109,112,104,111,117,95,104,101,103,93,105,104,99,112,96,101,108,93,110,107,94,99,103,99,105,102,94,98,116,99,97,96,105,87,102,98,100,96,98,89,106,99,110,100,91,95,109,97,118,102,97,101,100,99,99,109,103,104,103,110,104,95,114,88,102,100,100,86,95,109,91,108,68,92,107,116,80,102,93,93,114,101,101,105,89,100,97,102,104,108,106,100,95,95,102,106,98,110,99,93,114,93,101,101,97,93,94,102,107,91,97,91,89,100,97,91,102,95,98,96,99,103,101,100,88,112,97,100,103,96,87,101,96,87,100,105,108,102,102,93,100,100,83,98,107,102,105,108,106,100,87,98,103,97,99,102,89,98,100,89,103,95,80,104,107,102,104,106,105,94,92,104,98,104,107,101,91,113,87,103,104,116,95,95,98,109,85,105,109,103,99,113,100,104,100,89,107,104,67,99,96,101,108,105,103,100,96,97,98,101,103,95,101,105,101,90,99,106,94,102,99,103,106,105,101,100,107,115,96,101,106,92,109,100,105,99,104,97,101,91,95,97,98,94,103,94,102,123,107,104,104,107,95,102,115,105,92,112,101,105,96,100,102,89,96,74,108,110,104,91,98,103,90,96,100,93,96,109,103,96,102,105,99,110,105,101,100,102,108,84,115,95,105,98,101,84,95,100,96,107,110,96,87,100,107,101,110,104,96,98,97,106,102,105,91,106,81,100,97,107,88,92,110,94,97,116,100,94,106,90,96,106,91,94,98,102,99,106,117,104,96,94,96,95,115,100,92,84,95,100,105,96,104,101,100,81,97,106,110,108,79,110,96,97,100,71,97,109,104,83,105,89,98,91,97,98,102,92,101,93,97,102,101,106,87,105,102,103,108,96,104,94,94,97,102,102,86,113,107,105,100,110,87,104,104,108,111,103,99,102,98,111,71,98,92,103,94,94,93,104,100,102,95,101,118,100,104,100,94,95,101,112,107,101,99,107,90,99,104,102,97,106,112,99,96,106,103,109,100,117,104,100,89,102,101,98,101,95,115,103,94,109,108,105,100,107,86,108,105,107,116,108,101,104,119,105,103,113,75,100,87,105,100,104,105,103,106,107,96,108,98,106,103,95,91,108,95,98,87,104,94,99,107,99,102,111,84,98,95,104,106,97,107,105,108,109,95,92,101,105,103,94,97,101,94,95,100,102,101,97,93,106,94,102,102,112,96,103,96,101,98,109,70,108,102,101,113,105,107,113,95,87,101,94,97,102,96,95,104,105,107,106,96,112,101,96,91,107,97,105,98,98,102,119,112,106,87,105,103,83,99,82,106,100,98,94,94,101,114,102,104,97,102,99,104,101,115,99,97,78,91,104,96,86,91,101,106,81,101,96,110,94,113,91,96,106,105,102,106,109,112,93,99,101,87,91,103,102,101,103,105,92,94,105,105,87,102,93,101,108,101,91,107,97,104,106,102,105,108,100,102,101,104,96,95,98,105,99,105,101,102,90,102,109,112,96,99,104,108,97,91,110,96,109,99,103,83,91,103,104,93,98,98,108,92,111,97,109,101,89,101,116,102,105,102,75,104,105,94,99,106,104,95,94,101,121,108,104,97,85,90,112,98,112,99,106,105,108,97,100,112,90,101,100,102,104,109,91,112,93,98,93,90,92,106,104,102,96,103,97,101,99,91,87,109,97,104,87,91,106,81,100,103,90,97,87,89,108,103,87,106,101,100,100,93,93,101,106,96,106,94,87,94,100,92,107,92,93,112,92,86,96,105,93,105,87,93,94,101,116,99,101,91,95,107,100,92,100,99,92,104,97,87,102,102,111,88,105,104,93,107,98,96,107,90,95,103,99,105,88,99,102,100,89,104,106,91,106,97,108,92,109,101,91,96,91,89,121,100,95,103,95,107,104,99,95,100,109,89,128,102,106,95,96,87,96,95,99,85,112,99,97,101,97,130,111,93,90,100,101,91,92,96,108,98,102,91,105,114,109,95,105,107,91,107,98,103,99,100,98,105,102,95,100,90,99,113,98,109,101,105,99,97,96,89,101,108,102,92,97,100,109,98,104,93,110,106,121,90,110,101,101,100,101,94,101,113,92,96,110,88,98,98,99,106,92,112,97,107,87,104,101,98,106,100,98,93,102,87,92,100,106,102,100,97,103,102,103,106,103,104,101,96,97,105,109,104,84,110,101,104,64,98,102,97,94,101,93,105,90,98,96,97,98,102,106,92,107,106,97,106,107,92,92,98,107,97,97,109,91,107,97,94,90,98,95,114,97,83,95,102,119,97,99,108,87,99,101,91,101,95,109,101,104,92,100,96,101,106,96,87,87,105,111,102,109,104,106,102,105,97,100,98,104,116,97,97,103,102,108,95,95,95,102,83,90,98,105,100,96,102,108,93,101,104,96,98,93,105,102,88,91,113,106,95,108,96,103,98,98,98,108,92,107,110,92,101,105,92,105,107,108,92,101,94,103,101,87,107,108,102,93,89,102,99,102,85,88,104,82,103,93,77,92,106,103,98,91,101,94,90,107,97,93,98,102,108,85,101,94,93,99,97,98,116,90,120,80,96,98,98,100,101,114,91,99,97,114,117,102,97,106,100,91,91,101,98,118,111,99,104,100,92,87,102,94,106,105,100,100,104,99,108,134,113,106,97,94,93,98,101,114,98,94,104,113,93,91,94,95,103,104,104,102,105,97,87, +695.18219,95,105,77,89,91,103,112,105,92,91,96,105,94,120,92,106,96,96,97,91,99,92,94,103,95,91,98,100,99,118,103,99,105,94,95,109,99,119,80,107,98,98,109,88,92,105,99,106,98,99,100,105,96,103,110,76,97,98,99,101,110,115,101,95,109,111,86,99,97,88,104,89,89,108,90,97,89,109,89,99,104,107,99,93,99,108,108,101,99,104,104,97,102,103,121,92,103,107,101,101,98,107,89,90,76,94,99,104,94,92,68,106,99,101,116,94,89,116,109,92,105,101,98,114,101,109,106,101,117,100,107,108,104,109,103,92,101,109,105,98,95,95,108,107,100,106,103,99,100,86,102,110,115,109,91,112,101,102,101,100,99,104,108,99,104,63,94,87,94,124,74,113,96,97,100,99,91,100,110,102,102,96,102,110,109,98,100,101,106,104,98,104,98,103,94,109,103,98,91,109,82,104,89,110,98,105,92,104,112,100,106,100,98,101,93,102,137,100,112,102,108,118,100,88,89,101,100,111,108,112,101,96,96,98,98,94,101,101,95,111,92,103,106,96,96,90,106,102,95,105,104,83,96,89,99,101,118,100,83,95,110,108,102,93,97,110,105,95,84,97,93,95,97,90,105,96,101,94,108,87,98,98,104,102,103,120,86,101,97,99,105,96,100,115,103,115,101,102,96,94,100,99,91,123,94,118,100,125,105,106,105,118,101,101,93,95,103,93,102,105,99,97,111,101,100,109,99,77,107,95,106,100,104,107,85,109,102,88,103,88,98,99,108,88,100,103,105,109,101,110,101,104,98,102,106,107,101,113,107,109,105,101,100,85,124,100,112,103,88,103,111,95,98,93,90,97,99,106,99,103,91,86,106,100,91,97,90,83,118,88,116,95,98,95,105,108,96,101,91,98,100,104,101,104,101,93,105,103,101,101,94,92,108,101,97,89,103,94,98,93,109,99,99,107,97,87,92,86,106,65,104,114,96,105,103,98,108,103,108,120,110,103,98,108,104,130,87,104,98,102,94,97,103,97,98,91,96,102,103,105,110,104,105,104,95,100,96,99,91,98,98,106,102,96,91,109,102,109,93,97,83,107,103,96,105,106,97,104,101,94,111,99,103,99,104,93,92,108,109,98,96,102,108,101,110,99,99,98,95,107,91,98,92,100,98,97,95,103,97,72,102,110,95,104,109,97,92,99,96,98,96,105,99,92,102,95,99,88,98,77,98,109,105,95,86,97,94,101,112,97,96,80,102,95,102,108,94,111,90,102,104,117,95,107,112,91,122,97,100,91,95,102,98,106,100,120,73,100,99,104,98,98,95,91,101,85,114,98,113,96,106,110,110,102,104,96,102,99,99,108,107,102,106,104,96,101,91,96,103,106,101,106,103,98,116,106,108,102,97,105,104,104,98,99,104,87,104,113,98,94,102,99,97,104,93,107,96,94,98,97,108,119,93,103,101,98,105,101,105,101,96,103,94,104,95,99,105,101,102,101,108,109,103,100,110,105,98,89,103,98,109,95,87,101,95,107,109,93,100,105,102,107,113,87,74,87,99,103,112,107,110,94,102,91,96,102,102,104,101,85,107,87,109,102,106,99,106,80,97,97,98,101,113,115,99,83,91,99,95,101,111,106,110,104,100,104,91,105,94,105,117,106,99,93,93,89,105,103,102,100,104,86,94,117,107,110,93,101,95,102,99,110,103,91,99,90,102,106,106,105,108,95,91,106,88,115,106,110,95,89,80,99,100,105,100,109,96,106,106,93,103,107,111,105,109,99,106,122,100,110,106,102,101,105,102,96,95,121,109,110,92,104,99,100,114,106,105,108,101,117,101,106,88,106,109,103,104,99,100,95,88,104,117,97,98,95,118,92,107,96,105,92,113,94,100,106,108,100,102,96,91,97,93,96,92,91,105,98,102,91,108,96,102,90,97,103,95,95,98,104,92,93,91,65,100,86,93,104,112,94,105,108,109,111,98,103,114,90,98,109,107,96,94,111,104,84,96,101,106,84,98,98,95,93,109,107,105,113,98,102,102,105,102,107,100,93,91,95,102,105,104,92,110,104,97,104,108,95,99,103,95,80,96,102,90,104,89,90,79,99,94,102,99,102,98,95,109,95,106,117,102,96,97,123,73,93,103,98,111,91,112,99,103,113,113,82,89,83,89,109,114,101,111,95,96,104,92,103,106,93,95,97,109,96,87,106,112,94,105,113,105,103,99,104,101,91,91,101,96,95,112,93,99,108,97,104,92,87,86,108,112,99,97,107,103,99,105,104,99,100,89,107,83,110,91,101,104,104,107,108,107,108,106,95,105,106,104,116,113,92,105,109,107,103,98,97,105,110,98,111,112,106,96,104,102,98,99,97,101,89,112,105,98,102,90,111,94,94,95,104,92,104,106,99,106,86,95,97,103,102,102,103,90,101,103,98,87,97,90,99,91,102,84,104,112,95,96,100,97,102,96,121,104,108,98,103,100,95,106,102,92,85,117,109,103,111,96,92,103,102,95,99,98,99,101,94,91,102,88,97,103,98,87,109,95,104,121,113,102,103,109,114,97,97,104,94,94,107,92,101,111,105,104,108,102,102,100,99,104,115,113,104,108,90,92,95,112,95,97,93,92,91,96,98,108,108,95,99,95,104,103,83,86,103,91,110,103,108,111,101,97,100,83,102,105,103,102,102,105,102,99,89,103,104,94,112,99,94,109,98,105,109,99,98,117,106,98,75,92,100,104,95,98,108,113,105,104,113,110,110,115,100,98,100,114,93,92,106,103,103,83,109,93,109,90,101,103,112,105,111,111,106,100,93,95,95,110,106,109,112,103,110,92,102,94,106,89,104,109,102,100,99,110,105,98,103,109,89,108,111,109,107,96,112,77,100,100,94,99,108,96,100,99,103,92,104,101,105,105,101,105,107,96,96,101,99,112,101,97,99,104,99,106,106,92,100,107,105,91,104,100,89,102,82,101,98,103,92,97,95,104,111,88,104,95,113,105,100,93,97,101,101,105,99,117,109,116,102,113,102,104,108,111,103,105,105,112,104,95,94,97,86,100,105,87,105,100,113,100,108,108,100,115,97,107,94,99,114,98,103,103,88,104,113,110,108,101,107,95,98,98,98,116,98,102,101,103,98,97,107,91,94,94,105,98,107,89,102,106,100,111,104,95,95,101,103,101,105,112,105,99,111,90,96,94,97,88,91,105,107,106,102,103,106,101,99,77,94,107,92,120,103,111,112,110,105,97,110,94,111,107,86,91,108,91,105,106,104,102,111,106,77,96,106,91,111,105,105,109,94,94,100,94,108,101,103,96,90,95,88,101,106,98,103,100,107,94,102,106,96,103,108,92,107,98,106,103,105,109,94,109,102,100,94,96,101,104,99,102,109,98,107,108,109,90,104,112,98,97,96,83,91,110,97,108,105,102,66,96,94,103,99,102,67,103,100,101,98,102,99,102,101,93,95,108,121,102,92,110,94,102,98,91,104,108,104,110,103,99,98,111,100,98,103,104,109,103,104,98,103,100,102,112,108,107,109,96,87,120,113,103,92,96,104,97,95,100,102,103,100,91,99,91,107,101,96,108,114,85,102,96,90,104,94,106,97,99,98,96,109,105,100,105,100,103,101,115,108,94,99,101,102,108,106,101,93,91,99,87,100,95,109,109,103,95,97,82,111,94,90,108,92,101,99,91,99,97,104,105,97,101,92,104,81,105,117,107,104,102,101,98,97,110,104,104,101,112,98,108,97,101,116,111,100,90,105,105,95,101,107,100,109,103,105,109,96,100,104,102,100,106,97,104,98,108,106,91,85,97,103,104,105,103,102,108,101,117,96,103,106,86,105,102,102,100,108,100,108,102,103,102,100,92,99,105,104,101,107,95,91,102,96,97,98,91,109,98,96,96,101,116,89,101,103,87,113,96,111,102,105,96,99,87,98,103,115,105,103,94,102,99,95,89,108,95,103,101,93,97,100,103,95,111,94,113,98,96,98,101,106,103,73,87,100,108,94,98,91,104,88,103,102,104,102,99,102,94,99,94,93,105,96,114,93,106,111,99,106,103,94,113,95,116,102,99,113,107,107,97,107,96,92,106,91,102,99,98,103,95,107,97,97,105,99,97,96,113,117,106,98,102,97,92,110,109,98,113,97,106,101,100,104,99,98,110,104,96,89,95,99,103,109,100,109,95,95,109,101,100,101,107,91,127,100,95,100,100,109,96,104,96,103,97,94,98,108,98,95,100,95,100,98,113,100,105,96,102,92,101,109,71,98,107,96,113,110,99,94,99,114,105,103,117,79,99,98,106,102,102,105,107,88,105,64,110,98,102,96,100,103,70,110,99,135,103,98,100,106,108,114,97,116,106,107,106,95,109,104,99,105,105,104,114,94,100,102,96,108,101,90,97,76,99,94,104,105,86,96,93,108,121,107,97,106,110,105,112,96,101,104,104,98,95,103,109,109,103,92,102,114,91,116,108,100,115,104,128,98,92,97,96,98,129,90,96,91,98,100,104,103,95,100,100,105,100,94,100,100,107,105,113,109,113,113,101,94,107,88,103,99,92,104,95,103,97,100,65,105,106,97,97,113,105,98,102,113,112,114,100,91,102,113,100,106,101,94,97,103,100,97,110,98,108,76,102,109,111,120,104,101,101,117,105,105,107,106,90,99,109,102,87,92,91,97,112,104,97,99,96,107,85,99,101,102,97,80,89,107,97,109,97,101,116,100,102,100,111,107,111,101,102,99,83,121,97,109,102,103,100,95,104,96,115,104,108,101,94,107,94,98,100,107,96,93,119,104,102,91,90,95,94,93,108,102,92,95,120,104,105,101,95,95,96,116,104,105,102,102,103,83,110,105,91,98,112,84,91,105,108,98, +695.32349,96,96,96,88,91,109,105,92,91,104,115,117,95,90,99,96,107,105,98,92,100,81,97,101,94,93,112,104,93,99,89,88,95,91,99,87,93,100,86,98,85,101,103,106,97,107,100,86,102,108,92,113,98,92,109,95,105,108,96,104,105,97,90,103,109,108,88,99,112,90,110,93,73,115,91,87,94,108,82,107,99,99,101,102,93,94,97,100,103,91,96,95,104,111,97,100,103,95,104,99,98,97,98,89,76,109,88,93,86,91,99,98,124,100,76,104,93,88,100,102,95,101,97,91,110,106,87,98,104,104,89,101,100,104,107,105,99,102,92,95,100,101,101,101,102,94,100,106,88,112,99,99,101,101,81,107,101,92,104,96,91,99,94,103,100,105,95,102,95,94,108,100,100,102,101,98,97,94,102,95,97,85,96,102,98,97,108,96,100,103,91,100,101,98,93,104,104,102,102,98,114,94,106,109,107,103,106,90,101,104,102,103,98,110,117,99,91,102,91,101,98,105,95,90,92,108,85,97,113,100,103,93,95,106,95,103,129,106,109,108,105,102,102,107,96,92,98,99,96,99,102,105,101,96,89,91,97,98,96,101,92,99,97,96,101,123,95,90,101,96,99,89,105,96,98,97,93,98,95,117,99,103,120,100,98,77,95,96,99,111,94,94,105,104,107,110,99,98,107,110,92,101,104,106,92,95,106,98,91,112,104,106,95,115,84,104,104,95,89,108,91,92,109,87,105,107,97,91,92,105,87,92,110,96,104,93,102,103,102,97,88,96,105,92,95,100,101,105,98,101,101,104,111,103,95,100,117,90,104,108,102,90,110,95,104,82,100,94,100,105,107,100,105,104,100,100,100,89,91,99,92,99,108,98,107,109,99,79,100,105,97,100,105,102,96,94,103,102,89,101,101,97,91,96,94,82,102,104,106,103,96,91,105,97,102,96,88,97,105,98,98,94,108,109,90,88,97,104,97,96,102,99,101,104,92,90,98,114,102,99,109,109,103,98,96,84,98,80,82,98,102,100,97,100,97,97,101,107,98,95,105,103,121,93,99,106,90,86,97,96,93,106,96,91,104,100,96,110,95,111,105,111,100,95,109,125,101,97,97,106,120,94,100,95,100,93,100,95,103,101,124,106,100,103,92,110,94,99,106,114,105,87,96,103,107,110,87,98,98,114,90,97,104,99,105,108,94,104,101,99,112,99,103,93,103,87,100,103,109,89,100,102,87,98,105,106,97,103,109,92,125,100,99,109,100,97,104,102,98,119,95,98,101,99,101,97,106,100,99,105,100,105,113,109,97,105,112,106,106,107,100,105,106,98,94,98,129,78,87,97,101,103,110,101,100,111,95,98,103,111,104,96,107,98,101,107,105,103,99,113,96,92,103,106,78,104,91,92,109,98,97,97,106,97,92,84,96,95,103,84,95,93,96,93,101,105,98,86,98,91,91,101,99,91,95,102,91,101,95,96,92,102,96,103,110,90,99,104,98,112,108,107,104,100,94,93,109,92,75,101,91,109,101,101,92,106,91,107,90,102,103,112,102,89,107,98,75,100,97,100,93,101,100,114,99,100,107,95,108,98,94,78,94,87,119,102,97,108,102,121,102,99,98,91,99,99,106,114,87,109,99,92,103,112,90,100,99,102,93,101,104,107,125,90,96,101,111,101,93,106,96,100,98,98,105,84,99,94,90,102,99,91,102,84,109,101,103,104,91,106,93,106,95,92,99,88,89,90,94,93,99,103,103,104,108,99,100,90,101,93,102,96,103,104,100,95,95,98,69,91,103,95,113,98,97,97,94,102,94,101,88,96,98,91,102,93,97,101,102,98,110,103,91,88,110,95,98,102,103,96,101,113,102,101,98,112,105,97,90,96,100,93,91,88,100,98,106,99,109,97,107,102,97,71,104,101,95,108,112,91,104,94,93,106,105,118,100,96,80,90,90,98,103,107,97,107,88,84,113,103,98,92,94,104,97,93,94,90,107,92,98,98,96,105,105,95,82,94,101,98,114,109,108,118,98,102,101,103,101,97,103,95,104,106,115,100,102,96,95,90,94,96,100,105,90,84,102,105,90,93,109,86,91,97,103,94,94,96,90,92,90,106,97,98,78,98,92,105,92,109,96,101,92,92,100,83,105,99,64,105,107,108,102,108,106,95,96,92,110,90,102,96,98,97,99,103,116,95,106,95,77,101,102,87,95,104,103,93,101,99,90,95,96,95,108,91,99,98,104,96,102,88,102,94,100,94,100,106,107,91,93,100,99,101,100,80,92,94,99,97,105,101,87,94,96,110,99,97,99,96,102,95,101,106,96,119,99,105,111,96,107,104,105,120,106,98,102,108,117,96,94,109,88,94,81,97,66,99,92,109,96,100,89,101,107,95,95,110,100,98,99,98,94,109,99,92,104,83,100,88,97,99,92,98,94,103,117,102,100,86,97,108,91,108,102,103,102,94,111,112,101,108,116,109,99,89,116,96,107,112,98,94,102,91,94,102,105,98,108,103,100,106,98,107,104,95,102,94,100,110,101,100,91,101,95,125,98,106,107,95,106,107,98,87,105,112,103,108,117,89,107,98,86,97,108,116,102,83,93,113,101,92,108,102,93,95,107,109,109,101,113,97,112,98,107,101,119,104,104,106,89,99,108,104,87,111,105,88,114,113,99,95,104,101,105,105,122,109,121,107,95,99,102,121,112,102,101,104,101,100,116,92,108,100,100,97,98,104,110,87,95,96,110,98,108,100,121,99,96,101,100,109,62,91,95,98,95,103,109,104,94,108,100,124,114,105,102,104,103,115,96,104,99,95,84,94,93,107,100,116,106,116,103,102,100,107,103,91,103,118,103,109,102,108,110,102,99,110,93,111,104,112,91,98,94,98,112,64,98,95,104,105,120,92,88,99,94,109,98,102,106,97,93,121,78,96,97,102,99,99,101,97,92,104,93,98,103,101,92,99,113,108,135,105,102,105,98,99,104,100,105,92,107,96,108,110,111,88,99,90,112,106,101,99,110,102,114,98,102,97,106,100,94,104,104,94,112,101,90,99,90,104,75,99,96,105,97,104,100,108,99,119,104,81,87,92,84,104,109,101,103,97,103,98,99,89,99,103,99,105,103,112,108,98,99,109,101,95,91,106,101,128,100,119,101,107,94,93,108,102,106,111,113,102,98,106,107,102,97,94,68,101,103,81,107,88,99,105,100,111,93,94,100,105,109,98,102,99,107,93,100,105,101,109,99,104,81,109,90,97,94,100,110,102,104,94,100,73,99,105,107,97,105,99,102,104,113,91,103,100,100,96,104,99,103,107,83,95,103,93,100,88,104,95,90,96,92,103,120,94,95,102,102,104,105,105,91,106,91,92,100,111,104,109,104,103,104,106,103,94,90,102,99,103,96,89,111,107,85,121,64,105,107,99,61,87,113,106,93,76,109,104,100,103,90,108,96,97,103,91,107,107,96,104,101,105,84,94,111,102,107,106,98,105,109,105,113,102,94,106,100,100,101,110,105,98,99,100,94,82,103,99,99,105,112,102,87,93,100,113,106,84,95,105,93,112,95,94,100,84,89,105,95,109,96,102,109,108,90,113,89,114,113,99,107,88,105,96,106,95,107,105,107,109,98,89,116,109,107,92,116,103,108,108,106,100,90,90,112,106,100,104,104,101,99,102,107,109,99,91,102,101,95,112,99,113,98,110,98,92,102,96,88,102,100,97,107,98,105,95,109,101,86,101,105,98,115,107,107,104,94,97,94,95,95,101,80,104,104,120,91,106,91,105,103,99,104,107,97,102,112,110,104,117,100,110,103,94,93,98,97,101,100,81,105,103,98,99,97,95,110,84,98,82,101,89,110,112,101,96,103,94,102,104,96,109,102,98,98,111,106,90,94,100,93,108,106,104,101,84,100,100,107,87,94,103,101,100,95,94,82,107,102,113,107,92,106,101,114,95,101,83,102,91,95,100,104,98,105,103,98,107,95,98,100,100,106,105,105,109,94,94,102,106,98,91,103,96,113,98,103,107,87,110,102,89,105,95,99,107,101,96,109,94,95,94,111,112,82,108,99,105,107,94,105,108,101,100,86,110,100,104,108,101,104,109,113,102,98,101,98,109,102,94,107,95,103,97,96,102,95,102,83,93,105,109,107,99,106,101,104,111,103,103,95,109,91,107,96,109,114,87,105,98,97,70,91,105,100,102,99,87,103,95,96,98,104,98,106,98,105,103,94,113,82,99,95,104,97,98,105,101,111,100,101,111,91,94,95,101,68,100,104,94,100,91,102,110,89,102,100,113,114,102,116,107,90,113,97,101,90,108,104,104,91,102,107,101,95,96,103,107,105,103,102,87,97,105,93,107,94,114,95,110,100,107,104,96,103,103,98,97,104,107,88,109,95,110,101,98,104,97,95,95,96,110,103,99,91,116,112,97,108,106,107,93,101,99,102,115,96,98,96,96,108,98,105,102,105,99,99,97,97,110,96,124,98,87,98,103,62,104,95,87,100,95,104,99,119,97,99,105,95,93,97,93,95,91,110,99,108,96,101,102,95,100,104,91,103,99,97,90,84,112,102,95,100,94,97,100,99,98,92,107,98,113,99,107,94,109,103,89,101,105,106,112,104,107,122,98,101,103,105,101,109,115,97,105,109,84,104,113,119,98,104,109,105,70,95,108,99,105,110,112,72,97,110,110,89,104,107,92,109,92,106,89,101,92,107,99,109,109,104,100,103,99,105,112,86,97,134,98,95,102,102,91,107,101,90,95,111,93,121,95,93,113,93,101,108,106,103,104,109,91,109,98,94,108,99,108,87,100,104,96,88,107,115,105,102,96,93,92,97,108,97,86,107,103,100,99,121,98,98,104,111,128,108,99,103,110, +695.46478,96,89,99,87,105,95,96,90,104,100,110,101,95,98,114,103,83,94,106,111,93,68,94,113,108,106,76,96,97,109,94,101,84,91,96,88,104,94,115,98,96,99,93,95,96,91,83,104,79,105,91,99,96,98,100,111,101,113,109,91,86,94,98,93,90,108,113,100,100,104,95,105,100,96,99,108,103,103,114,106,102,103,91,106,112,95,90,99,97,94,97,94,107,102,99,101,86,84,96,106,105,108,93,102,94,108,107,80,93,103,104,95,97,100,104,90,94,101,94,100,101,96,98,93,107,103,98,93,96,80,105,104,93,90,93,100,97,92,99,68,85,95,100,97,95,93,103,105,100,102,91,91,100,98,96,102,95,100,113,102,109,109,101,83,91,99,134,95,102,94,102,111,93,90,91,120,106,88,105,99,87,99,107,102,80,103,92,96,102,105,102,108,96,95,100,105,92,102,117,101,100,102,102,78,101,108,105,100,102,97,101,95,103,97,93,91,90,93,90,86,68,109,91,91,98,96,90,110,84,101,94,94,106,99,101,103,90,112,100,103,96,109,104,93,93,101,88,105,99,108,92,101,97,98,101,104,94,108,104,106,96,99,100,107,92,111,94,94,92,106,89,97,103,98,97,90,102,109,91,103,113,105,101,93,109,97,107,79,89,105,97,100,112,92,104,108,99,105,88,109,96,102,97,106,94,99,86,98,101,98,93,110,106,85,109,91,101,103,90,91,101,98,96,107,94,103,85,91,104,106,89,100,103,102,97,100,102,100,86,108,99,107,105,87,102,101,91,124,107,95,100,109,91,101,105,95,86,98,91,97,104,99,106,91,97,105,107,106,110,103,116,102,108,103,108,109,103,92,92,107,100,106,98,98,99,91,104,106,106,91,121,88,100,107,96,92,98,98,100,104,95,116,101,97,96,107,96,107,100,93,104,105,100,118,102,91,96,104,109,101,96,99,107,94,105,88,93,93,97,107,93,102,67,92,109,87,89,100,124,92,94,72,93,101,89,109,105,94,107,116,92,85,100,97,99,94,89,100,101,96,83,101,95,111,105,99,97,96,94,95,99,106,114,91,108,93,108,105,113,97,104,100,109,102,95,107,98,98,99,97,99,117,109,95,99,103,102,96,101,86,103,96,106,103,105,105,101,101,100,96,97,94,94,100,98,110,109,97,117,93,102,99,103,109,75,93,117,110,104,100,105,105,101,105,96,106,100,94,90,106,92,101,101,98,96,93,98,84,98,98,102,117,100,96,87,95,99,87,99,94,87,88,99,103,104,97,98,109,95,101,90,99,109,95,97,102,98,92,90,93,95,91,101,97,105,108,87,98,108,95,100,87,108,95,110,106,112,101,100,98,98,128,103,98,98,104,76,90,103,77,107,97,92,99,110,93,101,101,101,90,87,102,103,110,104,106,87,102,103,102,95,106,93,103,87,104,100,109,116,94,95,93,96,102,95,105,95,92,89,112,92,98,107,99,94,101,104,95,89,91,100,90,115,102,85,98,95,101,98,89,98,104,107,90,91,105,104,109,102,110,96,97,106,101,86,100,91,106,96,100,84,87,106,104,90,101,109,97,100,96,92,91,93,92,87,109,93,94,106,93,88,98,104,98,99,103,102,109,100,91,94,88,107,92,96,85,93,86,110,98,103,92,97,92,98,97,125,101,113,96,97,93,98,101,105,100,110,95,103,103,104,85,95,102,95,92,107,94,91,94,103,96,87,95,83,104,88,94,106,95,107,95,104,100,92,109,86,98,101,92,92,102,107,86,103,93,98,100,95,102,101,109,90,94,91,101,102,97,96,107,98,97,96,106,96,93,102,62,90,98,115,87,87,91,99,94,99,98,94,104,96,86,106,96,68,103,108,103,106,99,96,99,109,101,110,103,96,104,93,97,99,96,105,104,95,87,103,101,83,94,90,107,94,94,90,88,102,104,103,91,99,84,94,103,87,108,97,99,96,90,99,86,102,91,105,88,99,90,105,97,100,91,93,86,93,102,92,104,99,98,99,97,105,118,104,99,91,98,90,107,101,104,100,104,93,106,95,102,90,100,100,103,94,95,94,98,89,87,84,91,94,111,104,85,100,96,102,96,101,105,111,104,109,122,98,105,101,92,94,96,92,105,106,103,97,101,100,109,101,95,101,96,105,101,103,110,105,87,88,97,106,95,92,115,98,106,91,99,86,104,92,98,104,99,89,99,102,98,90,105,99,106,101,102,102,101,88,90,97,105,107,96,108,111,86,97,103,106,105,113,101,114,84,101,101,92,100,110,107,97,91,93,99,97,105,101,96,98,95,86,114,109,98,90,73,91,83,86,95,101,105,99,93,101,87,85,98,107,103,103,98,78,104,99,90,91,107,107,80,100,90,95,106,101,89,78,94,96,109,103,92,99,62,92,102,94,89,99,99,112,99,96,84,91,99,102,106,97,97,94,103,112,97,107,99,97,107,98,105,110,100,103,91,94,110,98,115,100,99,100,99,92,101,104,97,106,100,105,87,109,95,93,98,100,113,99,104,106,100,99,88,110,102,106,98,89,105,100,99,102,99,104,96,90,110,113,98,103,89,91,102,102,87,106,101,101,121,96,101,103,104,93,112,107,111,111,83,90,96,97,109,95,111,102,105,83,112,99,108,89,120,109,92,102,111,98,98,92,104,98,101,82,103,104,109,112,105,111,109,104,101,96,101,99,105,97,97,65,102,98,102,97,103,115,106,86,94,105,94,93,100,110,100,100,90,99,95,101,122,87,115,108,93,105,102,107,100,106,113,105,96,106,79,109,100,104,104,111,111,107,104,87,91,101,109,92,101,108,102,90,98,96,98,72,85,88,119,109,97,109,95,99,109,112,112,97,99,102,104,104,99,97,105,98,111,91,90,103,99,102,94,109,118,97,117,105,95,108,107,100,99,103,108,105,99,105,100,96,105,105,92,105,101,92,99,95,103,99,105,117,98,107,97,102,107,99,99,117,110,91,101,108,99,91,95,87,97,108,96,104,85,99,92,105,105,103,98,93,95,105,93,82,119,92,117,103,121,90,102,101,107,101,102,106,83,105,98,107,102,105,105,108,105,102,104,95,95,97,103,104,107,101,98,123,105,101,97,83,103,101,109,88,95,101,111,100,101,105,109,100,95,97,100,101,99,91,93,91,102,104,102,94,89,100,94,112,91,100,103,110,98,114,100,107,106,93,96,114,93,103,100,94,90,89,104,103,95,92,98,106,104,92,106,111,128,97,91,102,87,100,121,93,87,107,103,101,96,95,113,108,102,97,101,102,117,93,102,104,94,99,94,102,106,98,105,98,106,100,109,94,104,104,98,99,110,95,107,111,96,95,102,95,105,106,112,97,102,98,98,96,115,89,92,95,80,103,100,103,105,91,108,97,103,105,96,97,110,103,107,109,110,106,105,96,89,95,87,111,105,92,101,97,103,117,100,99,102,105,110,94,109,114,104,108,108,80,97,100,121,94,104,87,115,97,95,102,104,100,100,81,107,95,110,103,92,106,96,103,99,106,94,103,105,90,99,106,97,108,93,105,99,92,90,100,97,100,94,104,112,106,89,101,93,105,101,105,107,80,100,97,100,102,106,96,90,95,104,98,111,92,91,91,103,83,96,105,99,100,102,98,91,99,95,96,112,100,102,97,101,91,102,88,91,112,99,97,108,103,102,71,102,98,99,103,96,105,97,97,124,98,92,103,113,101,90,99,102,100,98,106,119,96,94,95,113,101,105,92,104,93,96,100,101,106,96,106,103,91,112,100,98,103,102,87,117,96,103,99,95,104,112,86,97,97,91,101,100,102,105,100,108,109,99,104,95,88,104,99,103,81,96,95,101,110,72,101,93,104,91,99,102,77,93,110,112,103,102,103,108,108,116,106,95,112,93,101,108,102,98,107,97,89,109,105,95,97,103,95,106,97,98,100,99,113,100,103,106,93,98,99,98,101,101,88,101,104,105,122,104,96,98,103,109,103,109,122,110,108,93,94,95,89,100,111,110,97,107,93,103,77,103,106,106,101,110,96,102,102,102,87,97,96,113,100,77,90,113,104,94,95,90,95,101,98,98,104,100,99,88,101,95,98,103,87,100,116,98,95,111,117,104,90,87,80,99,105,104,103,99,100,103,97,100,111,98,106,105,86,105,100,107,102,109,105,91,110,100,106,102,102,101,95,108,113,101,90,103,88,108,102,109,96,98,97,102,103,105,97,106,70,99,95,111,97,87,111,104,97,101,95,101,83,103,100,89,101,103,98,109,104,89,104,87,108,108,98,112,110,105,99,108,96,115,94,105,101,87,102,104,89,103,99,102,92,97,104,97,97,102,102,115,98,129,104,100,94,112,91,101,113,112,97,97,65,96,95,109,96,90,91,95,91,116,109,110,111,94,101,89,98,99,108,96,105,99,106,107,107,105,104,98,119,91,100,105,105,95,100,90,93,98,98,107,113,115,102,99,103,102,111,92,112,102,104,112,96,106,104,95,104,95,99,98,92,104,94,104,103,101,108,92,104,105,112,109,98,95,97,102,90,98,98,114,90,102,105,98,99,92,111,98,89,120,109,100,101,106,105,102,93,105,104,99,92,117,103,99,78,108,98,109,95,102,108,106,98,97,101,102,97,98,95,102,108,101,103,95,99,94,104,99,91,102,120,95,89,103,108,107,106,123,106,100,95,105,91,114,105,96,102,98,109,90,89,97,101,112,101,100,98,118,109,96,105,96,103,93,99,114,110,99,102,90,102,102,102,104,110,92,120,112,94,89,114,90,100,99,100,99,91,111,106,100,98,94,94,101,71,94,103,94,122,97,94,90,103,96,98,96,103,100,112,83,91,110,109,93,109,91,94,117,94,108,85,104,92,110,104,84,93, +695.60614,91,87,98,117,101,108,96,105,92,101,96,95,97,86,91,102,92,105,90,94,114,96,97,109,103,104,102,97,103,92,100,102,104,108,111,96,100,103,95,94,93,104,84,97,101,103,106,107,98,94,106,96,90,99,97,104,112,94,114,99,101,105,106,103,100,106,97,95,93,102,109,108,87,96,91,111,95,110,114,104,103,92,112,90,99,97,101,109,97,100,94,97,99,104,115,98,100,103,105,107,125,93,93,117,101,101,106,95,90,100,96,90,122,105,97,90,88,106,110,99,93,97,89,96,95,107,107,81,99,102,107,100,106,113,109,104,97,101,98,99,98,100,88,91,82,95,114,97,99,98,105,85,105,100,92,111,104,97,106,107,88,101,105,92,90,96,91,93,103,94,87,94,98,94,107,90,100,94,99,101,103,91,98,110,102,96,93,89,103,104,108,91,101,87,96,98,98,94,77,91,98,94,98,101,105,112,99,98,101,86,87,101,99,89,108,93,106,101,100,113,102,97,97,107,81,99,88,104,100,106,112,112,91,103,108,88,104,98,103,95,104,84,98,97,94,98,98,119,98,104,111,96,91,93,100,108,101,114,87,88,91,97,109,90,107,113,91,82,101,95,107,99,104,99,90,104,127,87,105,99,101,93,107,102,99,99,104,94,108,92,95,114,95,95,100,107,108,97,105,105,101,108,90,98,93,89,110,94,97,103,98,101,95,92,101,94,90,97,104,94,117,95,100,113,104,105,91,105,95,96,103,95,105,101,94,104,102,101,98,117,98,101,104,102,104,103,100,104,103,99,105,106,99,104,92,106,96,98,102,101,106,99,114,89,102,101,106,102,105,91,91,91,105,94,98,114,94,103,95,108,97,112,110,102,101,96,100,99,99,97,100,83,84,105,105,98,92,98,112,105,103,72,104,98,106,95,102,90,115,105,94,100,105,99,98,102,91,99,103,94,102,87,107,112,93,67,95,102,104,102,101,103,108,95,77,103,95,106,102,103,108,105,97,107,94,102,99,105,95,109,94,106,93,106,96,100,103,83,117,92,101,112,100,104,113,103,107,127,97,102,108,118,113,96,91,102,109,113,103,109,109,108,114,95,100,96,92,96,99,93,94,99,106,92,106,92,95,107,96,96,109,94,101,105,94,95,109,113,90,102,97,97,103,104,95,99,108,99,99,83,95,99,74,96,99,109,105,107,96,99,91,100,112,91,100,100,105,92,121,96,106,91,100,106,104,97,105,112,112,101,113,98,100,120,90,99,94,87,93,101,108,106,101,108,100,92,115,102,104,91,99,105,96,104,91,108,99,98,114,96,106,100,111,91,101,98,100,102,103,99,117,97,86,100,121,100,107,93,107,104,105,99,96,102,96,93,113,93,97,92,98,94,91,109,98,90,101,98,101,98,109,104,113,108,107,114,102,95,100,105,116,108,98,91,88,97,98,99,102,84,100,96,95,100,101,99,99,108,83,103,114,94,90,105,102,97,115,106,101,82,106,109,106,109,94,104,104,102,111,100,108,112,103,105,94,113,100,93,110,110,95,110,129,100,93,94,104,99,109,105,97,116,105,102,112,102,105,105,107,94,94,101,111,108,112,105,116,109,94,100,106,88,98,104,100,92,114,99,103,96,103,95,112,95,98,98,101,110,97,117,94,99,109,98,101,96,104,96,108,98,98,110,102,95,112,99,104,83,99,93,112,100,101,99,99,88,92,101,101,99,100,133,104,102,113,109,105,98,95,92,105,97,116,97,101,105,99,105,100,101,114,111,100,115,82,105,103,102,99,108,89,97,100,106,96,96,102,101,102,99,94,110,86,99,98,115,92,96,110,102,117,101,105,86,113,108,101,98,111,93,92,109,102,112,102,106,108,92,98,98,97,108,92,102,101,93,102,104,124,100,107,102,96,92,94,92,105,98,99,107,97,111,101,90,96,110,91,97,94,105,107,94,100,108,96,107,102,107,105,91,107,99,94,98,108,124,113,90,97,90,98,99,98,88,92,91,82,106,103,98,101,103,94,109,110,103,92,95,88,96,97,111,121,105,100,99,97,95,95,98,98,98,110,100,102,103,97,104,94,104,125,87,112,109,115,102,106,93,109,130,107,94,105,98,98,103,98,93,105,104,105,104,95,94,114,104,104,100,90,109,97,103,101,98,113,99,106,98,103,107,102,98,102,100,99,87,98,105,106,96,103,88,114,88,100,106,99,105,88,93,95,99,94,103,95,91,95,98,90,95,101,99,98,95,97,95,85,74,97,101,101,97,80,100,106,93,97,106,105,112,95,95,97,99,98,94,99,100,101,89,118,96,103,91,98,97,116,100,97,102,97,110,108,82,109,99,106,99,71,98,98,101,95,97,92,91,99,101,99,103,107,91,105,91,88,108,104,106,102,105,92,103,93,104,107,95,110,96,86,82,104,96,95,105,97,80,104,93,82,101,103,92,96,98,105,120,103,97,112,107,104,95,108,105,96,100,99,105,112,106,101,110,105,102,94,99,111,101,106,107,94,94,114,100,102,96,105,114,91,100,116,101,103,97,96,103,122,114,93,85,103,123,106,96,100,98,85,103,101,88,100,102,96,111,98,100,102,98,88,106,97,105,102,113,99,107,112,98,101,116,101,99,102,91,104,103,113,107,117,102,99,104,107,95,65,108,100,97,100,98,92,103,95,99,101,96,96,105,109,109,106,100,110,109,72,105,115,91,88,99,96,105,102,110,99,115,94,99,88,114,84,101,102,109,100,109,97,104,94,104,99,104,106,85,97,94,100,108,109,98,93,96,106,104,108,97,121,95,100,86,101,106,100,88,105,90,112,109,113,103,98,107,101,114,90,92,112,100,108,95,105,89,94,96,95,98,104,118,99,120,102,108,108,93,109,102,95,100,110,104,91,105,103,102,100,96,110,107,102,98,107,107,107,97,99,101,100,106,103,105,96,97,97,103,99,97,104,103,101,96,97,76,98,89,95,101,95,95,103,102,108,97,104,106,111,91,106,98,96,94,103,106,94,103,104,109,103,113,97,106,99,105,109,109,95,105,99,89,116,108,105,91,102,99,110,86,96,98,99,102,104,98,102,109,102,98,109,101,104,84,116,96,123,121,111,99,95,96,101,96,104,99,98,120,97,108,92,77,103,94,95,96,109,98,104,132,110,92,96,114,103,97,97,99,102,91,111,92,97,98,96,97,117,103,100,106,97,95,90,85,81,90,95,113,100,109,102,99,124,103,101,108,112,105,104,106,106,101,98,103,98,94,110,97,107,117,99,97,95,104,115,107,101,96,101,113,105,103,100,87,102,113,101,111,92,117,95,96,108,99,101,105,105,110,93,95,106,103,103,109,107,113,102,109,92,104,99,98,95,109,103,97,107,100,99,92,117,98,88,101,102,102,105,101,105,107,101,112,90,105,95,100,97,96,96,87,93,113,106,107,117,102,98,100,102,90,99,114,94,91,104,105,109,95,105,105,96,98,100,98,96,98,98,100,97,103,93,95,91,98,103,98,104,99,101,87,97,109,98,100,103,105,89,103,98,106,91,104,110,109,105,94,80,96,89,87,96,95,105,102,104,101,103,105,105,101,94,91,113,70,92,108,98,99,94,94,96,93,111,104,105,104,108,108,117,103,107,93,104,98,123,85,102,102,95,110,101,97,103,98,98,114,115,111,97,94,108,105,112,100,107,108,119,98,108,105,109,107,103,104,94,93,100,97,99,84,104,90,100,103,111,93,104,89,109,95,94,108,105,95,90,101,97,96,115,109,108,102,106,88,96,104,96,100,96,101,106,109,96,106,108,95,98,99,94,111,97,98,91,109,99,107,94,95,92,112,94,85,96,100,99,113,107,99,89,98,95,108,100,101,100,94,95,95,98,100,98,101,94,100,84,102,98,114,103,95,110,95,96,101,98,102,96,91,109,92,111,94,111,112,104,93,101,105,96,113,103,96,80,96,104,103,95,107,108,98,99,79,104,105,98,96,88,91,98,87,110,93,93,107,101,112,91,113,109,99,97,101,94,98,96,112,94,99,110,96,109,104,96,98,99,94,101,102,107,106,109,107,105,102,100,112,93,101,103,121,104,106,97,95,113,99,90,100,103,112,120,110,104,101,102,96,91,95,97,99,97,99,90,86,92,90,95,99,96,101,107,108,102,92,111,100,108,104,96,98,100,100,105,115,92,99,97,98,107,99,100,113,109,106,104,108,100,72,95,99,94,102,113,108,96,92,93,97,135,92,99,95,116,97,116,104,104,105,104,105,103,98,97,105,91,101,98,104,101,103,110,102,98,101,109,112,102,102,91,112,98,106,99,96,105,95,110,114,99,109,108,108,110,105,108,97,104,108,102,108,104,105,92,101,94,100,84,99,102,102,113,78,96,109,91,81,102,97,109,105,108,95,112,98,90,108,100,103,93,99,97,100,100,106,92,104,103,99,104,94,89,108,117,102,83,101,98,110,98,99,105,99,101,96,95,104,111,122,101,100,102,106,98,94,97,102,111,95,101,100,106,103,98,103,92,111,101,92,106,103,111,80,94,107,95,105,111,102,93,103,95,104,88,108,104,94,93,107,106,110,95,98,85,106,100,98,94,104,94,105,96,104,98,89,104,111,103,89,95,95,102,92,95,95,100,119,100,108,96,116,103,97,109,93,90,101,109,98,99,112,109,96,100,99,108,104,102,100,100,100,98,111,99,91,100,97,94,98,110,103,88,89,109,106,108,96,102,106,92,108,101,108,108,96,101,84,103,102,95,108,105,100,94,104,93,92,101,103,98,106,111,111,113,101,108,83,101,96,108,101,87,87,104,106,123,90,102,102,109,107,97,104,102,91,100,109,100,99,97,99,94,100,110,93,97,93,112,95,101,90,95,88,100,80, +695.74744,100,117,89,87,100,93,98,88,93,107,104,98,95,109,103,83,107,89,64,89,96,103,106,98,96,105,94,110,90,102,95,100,102,105,96,98,104,101,87,94,101,99,97,101,105,102,101,97,101,108,97,88,128,79,98,87,98,92,101,114,99,97,95,106,101,98,117,97,101,107,113,96,91,112,101,112,87,113,106,95,93,112,102,111,102,99,89,101,84,108,97,95,110,105,98,112,110,95,97,89,101,72,105,104,97,91,103,101,82,100,95,102,109,100,106,100,99,96,118,102,102,100,96,113,106,111,96,101,103,104,102,99,97,86,96,99,95,95,106,98,92,97,102,96,102,91,98,96,99,88,92,104,99,100,106,101,111,97,101,101,100,105,96,98,105,102,106,93,105,92,87,97,99,99,87,106,101,97,95,93,101,105,111,101,97,91,88,87,97,92,106,105,107,104,92,105,104,106,100,100,108,91,98,104,115,108,93,113,118,105,94,105,89,108,106,95,98,110,104,88,91,98,97,101,97,108,96,98,106,89,106,97,100,106,101,108,104,101,90,101,91,101,98,100,96,93,94,101,91,97,98,98,102,96,92,96,95,111,96,100,86,102,99,108,93,99,94,101,93,91,105,108,101,92,102,105,105,97,97,109,102,87,86,101,104,92,98,95,103,104,106,100,98,101,93,114,110,98,106,103,102,99,96,110,102,108,93,102,97,105,101,102,123,96,101,93,103,95,102,100,92,101,91,115,90,102,93,87,100,112,97,87,100,105,95,91,96,98,99,97,95,98,108,91,105,102,93,102,102,103,103,96,101,90,94,99,106,114,112,98,103,98,99,97,110,99,92,101,102,101,100,94,98,112,108,97,108,97,117,101,97,108,98,105,105,102,109,94,104,96,98,89,86,101,93,103,94,91,88,106,94,88,100,126,100,99,102,67,105,105,90,90,102,98,109,128,104,97,108,106,104,103,95,96,100,87,105,105,97,92,92,99,103,96,102,92,95,100,84,91,104,99,93,103,98,89,96,96,105,103,95,98,112,103,105,94,109,89,92,116,95,105,99,96,92,104,103,105,90,102,96,108,109,107,102,96,106,95,94,101,100,104,86,97,111,100,102,108,105,104,87,89,102,108,88,100,100,109,109,93,106,108,88,108,95,102,101,97,98,107,106,98,96,106,102,95,96,98,98,102,79,96,95,103,100,106,94,87,95,101,95,88,104,88,86,89,110,96,96,102,100,100,76,101,108,87,100,102,95,108,91,89,98,98,94,109,84,97,96,93,107,95,102,97,76,93,105,108,106,99,89,95,100,107,115,107,94,101,96,94,95,100,107,102,129,106,112,116,96,95,99,97,100,87,102,97,97,104,95,99,106,100,99,110,100,91,100,98,104,96,95,98,97,96,104,85,95,97,95,101,78,86,96,98,90,91,93,91,92,97,95,104,99,96,87,97,94,87,101,98,94,110,95,99,99,89,90,100,93,99,88,95,104,112,97,105,95,112,98,96,96,95,101,115,100,90,104,101,113,87,96,95,108,99,101,108,92,100,98,102,91,96,110,91,90,97,84,94,102,98,100,95,97,96,110,105,103,99,121,93,92,85,95,94,107,88,102,96,105,87,102,103,99,86,94,97,103,100,103,94,102,95,99,114,102,98,87,94,112,105,105,96,96,94,89,88,90,91,94,112,105,105,95,99,111,95,89,100,91,96,103,99,101,100,104,94,106,97,100,98,102,119,97,101,66,107,88,106,100,94,96,112,97,87,102,111,101,102,104,88,110,116,104,98,105,100,81,101,104,93,99,99,99,106,106,100,98,109,102,87,102,93,86,98,93,88,103,92,113,97,112,96,96,94,110,95,95,96,100,100,95,98,120,100,95,95,116,95,108,97,87,97,117,91,102,113,103,91,106,93,102,102,95,108,94,76,100,90,97,92,96,97,97,96,84,113,104,116,97,102,115,99,103,110,98,102,104,94,119,103,94,110,91,93,92,101,107,104,86,100,84,106,89,91,98,95,101,108,99,105,97,91,105,94,110,83,94,110,97,94,108,89,109,94,101,92,87,112,101,109,97,98,104,104,100,100,99,95,100,105,95,95,103,91,106,103,108,93,87,100,94,107,106,97,94,95,95,104,98,102,92,101,103,90,87,94,99,98,96,99,100,101,96,80,95,102,98,106,101,110,92,107,97,108,102,79,94,98,96,107,100,92,93,97,90,100,108,102,91,106,92,108,95,105,91,113,95,103,103,110,99,96,101,99,101,93,67,93,97,103,92,105,93,96,107,94,101,102,89,112,94,101,99,101,98,108,99,96,102,95,100,102,95,107,106,103,107,100,98,99,95,96,94,92,99,87,97,95,105,91,106,109,96,96,98,93,109,91,104,105,97,105,87,99,100,106,104,82,81,99,91,109,96,100,89,103,101,106,101,90,106,91,96,104,98,95,95,100,96,106,107,97,96,102,100,104,84,101,107,102,104,102,98,94,97,107,83,91,106,88,104,100,113,97,112,99,101,87,102,94,95,102,105,103,103,89,95,96,102,106,97,98,91,94,98,106,86,93,101,90,96,96,105,97,98,97,100,89,96,99,102,94,97,101,96,105,98,97,108,92,97,71,108,90,92,91,92,95,104,93,97,98,106,86,98,103,91,83,104,99,100,102,97,92,95,99,91,101,105,101,75,106,92,97,107,99,102,94,83,103,92,117,90,109,105,103,90,113,105,94,114,102,100,98,102,107,95,103,92,105,106,97,97,111,98,115,87,100,100,108,102,93,90,102,105,102,91,105,99,96,102,110,86,104,108,95,102,91,93,104,96,100,111,97,101,96,104,106,102,111,99,96,96,98,93,113,91,95,101,89,115,100,91,106,110,101,100,100,99,108,110,110,95,104,111,106,108,98,97,107,92,122,102,96,111,102,105,96,110,113,109,99,96,99,105,110,107,84,94,97,107,101,101,112,109,93,107,93,102,96,104,112,96,121,76,107,99,104,107,97,103,98,94,100,97,109,108,102,107,112,100,98,97,110,108,105,105,97,101,96,87,91,102,86,105,83,89,109,97,88,106,99,108,95,102,108,89,107,117,105,106,95,97,94,66,110,98,91,109,98,96,100,100,106,108,95,92,100,95,108,95,89,115,89,90,95,75,87,95,104,95,87,98,104,101,97,100,101,109,105,99,102,98,88,106,100,103,104,101,111,92,94,97,106,112,97,102,93,108,91,94,107,97,105,101,95,91,92,105,100,89,100,88,113,104,110,109,106,96,94,105,92,91,104,85,108,99,99,102,105,106,90,95,97,99,111,87,115,110,106,106,92,87,98,100,96,97,99,101,105,89,105,105,98,94,105,99,91,94,100,102,101,83,91,106,105,97,83,97,98,105,99,98,110,111,99,97,94,98,97,104,108,101,108,106,94,85,94,95,112,96,84,94,104,107,113,98,99,89,101,100,104,98,97,99,63,102,101,104,94,104,91,90,95,90,93,97,93,110,91,107,116,99,104,104,87,103,101,89,97,100,103,100,95,107,104,98,91,106,83,91,93,93,99,95,101,92,105,101,94,116,93,93,105,97,91,103,93,99,89,83,87,89,101,80,102,101,85,97,98,89,102,95,104,101,87,103,94,92,95,100,96,103,100,91,100,111,103,104,96,101,100,99,106,97,95,99,102,117,91,98,111,105,116,92,106,112,90,99,105,99,105,99,105,104,102,105,94,102,94,106,93,97,69,103,100,93,99,94,97,100,94,97,95,109,91,106,113,103,95,95,98,97,112,104,101,96,110,92,111,101,104,99,97,95,107,91,102,102,94,97,91,102,102,102,107,90,96,87,98,83,115,98,92,97,109,101,88,101,101,90,104,98,96,98,94,87,93,99,98,101,91,110,96,111,101,96,100,111,117,103,92,101,94,95,98,111,103,91,94,102,108,110,102,101,104,96,107,96,98,93,99,91,94,85,99,96,101,101,92,96,104,98,102,94,106,98,98,88,89,103,101,104,86,104,87,90,92,103,105,100,94,109,100,97,76,113,92,102,92,101,91,95,99,109,100,102,99,97,95,101,97,104,95,102,110,94,97,94,106,113,113,96,100,102,106,100,98,104,99,98,87,90,107,97,103,107,95,100,106,94,100,94,91,98,93,92,98,100,93,80,98,99,94,93,99,109,102,106,101,103,105,90,108,92,95,111,105,106,98,114,106,106,90,106,93,100,100,109,103,103,98,84,107,99,91,104,94,104,92,95,101,115,91,95,95,94,95,89,120,100,91,88,84,97,99,113,91,98,108,100,108,113,95,94,112,90,93,104,107,91,104,105,103,97,98,110,102,109,96,110,94,94,102,89,85,108,94,112,97,101,107,106,112,101,99,94,97,91,107,87,107,96,95,105,88,110,92,110,100,90,87,98,87,106,113,93,106,87,101,104,103,116,99,97,106,97,103,101,103,100,92,100,107,102,108,97,99,97,111,93,106,104,95,106,82,119,106,105,99,94,84,83,106,93,115,111,94,82,93,98,91,96,103,101,106,99,99,92,106,92,77,115,95,112,106,99,92,100,94,84,100,108,101,77,109,98,104,94,102,91,100,97,97,107,117,99,100,88,94,84,103,99,105,101,93,101,105,92,101,109,104,97,99,104,109,94,87,93,105,101,95,100,98,95,101,97,81,98,94,101,95,104,116,104,115,108,106,81,102,102,95,100,101,95,97,105,98,107,106,90,103,91,103,100,85,99,99,106,103,105,96,80,99,90,99,106,91,93,104,100,101,96,100,112,107,109,92,101,97,89,99,88,96,93,103,95,92,113,102,104,92,94,108,85,101,106,107,97,102,95,102,87,98,77,118,90,103,118,93,98,87,101,111,111,89,91,96,95,98,99,96,113,72,95,98,99,96,101,95, +695.88873,100,103,89,106,101,102,101,82,103,109,96,74,95,86,106,102,99,91,93,97,102,103,106,98,99,97,92,104,95,103,104,95,106,96,94,100,99,95,97,98,106,100,94,111,88,97,112,98,97,103,102,108,105,100,105,108,103,109,97,91,95,109,112,100,108,112,97,101,103,95,110,94,93,97,93,101,103,97,104,101,97,95,95,107,99,107,100,105,107,93,90,106,98,104,102,99,102,95,95,92,95,95,101,99,89,94,100,108,88,98,106,92,99,97,107,98,97,99,107,95,88,100,102,98,98,100,109,87,106,102,83,114,96,103,91,100,99,93,90,91,99,107,89,108,84,104,98,105,105,86,99,88,109,122,73,95,98,93,95,92,92,99,101,88,100,94,92,95,99,103,106,125,99,93,92,99,97,100,102,106,97,95,106,81,95,97,100,88,108,104,95,117,96,104,94,112,118,92,109,107,104,99,106,99,110,104,105,113,109,102,101,102,109,93,99,99,93,95,110,103,104,103,96,93,90,107,104,91,105,100,102,88,100,101,109,115,103,108,112,99,93,92,113,107,101,113,104,95,106,99,94,103,96,98,92,105,97,100,91,104,108,105,101,89,94,103,102,72,110,97,98,98,104,103,108,101,99,107,98,101,102,117,98,92,95,93,95,104,97,99,94,96,96,99,108,102,100,96,103,106,103,99,99,104,95,91,118,106,104,93,93,108,94,91,91,102,107,96,105,95,95,88,97,103,105,98,97,95,110,108,66,116,113,104,115,113,99,91,107,106,104,100,108,96,99,94,120,105,100,96,99,97,94,104,93,98,102,72,92,116,99,105,105,96,101,94,100,93,95,96,100,90,89,85,102,107,102,98,99,116,99,100,100,103,100,109,100,98,104,87,109,95,102,109,108,103,96,107,94,110,104,95,111,106,98,106,102,98,98,98,92,90,108,84,123,100,90,98,100,100,96,110,104,95,106,101,90,108,107,93,93,101,102,96,97,102,96,100,108,100,107,99,101,94,98,97,91,105,76,105,95,98,91,104,99,101,91,91,116,102,101,102,114,109,106,94,92,89,117,97,100,97,94,95,86,102,95,106,92,111,96,101,101,100,98,101,105,103,99,106,99,100,90,92,103,92,96,94,100,104,110,105,93,99,96,101,94,112,101,99,99,95,91,98,98,99,103,98,101,97,92,98,105,101,106,101,101,106,113,95,95,107,91,98,99,106,100,92,96,108,99,99,87,96,98,103,99,92,109,117,110,106,94,105,95,106,95,97,97,104,119,110,115,103,106,108,98,100,102,87,99,96,102,100,109,110,112,85,112,108,106,89,105,109,82,110,110,97,105,99,99,101,97,109,105,99,69,96,110,86,100,107,97,103,106,99,72,102,95,89,104,116,100,116,112,97,83,98,102,103,104,113,102,88,104,105,109,107,103,103,99,103,106,105,99,105,93,106,113,96,105,115,93,106,101,97,93,90,95,99,90,103,104,91,94,100,102,103,107,80,98,102,102,102,98,101,109,94,102,110,109,107,96,92,94,101,101,100,104,102,106,99,104,103,94,90,98,98,97,102,95,100,101,98,96,102,110,105,97,85,96,94,102,116,96,108,107,106,99,100,97,99,98,100,101,84,102,95,96,95,127,95,117,98,104,102,92,105,107,112,94,109,88,106,100,100,109,102,104,107,99,101,99,96,109,105,109,110,108,113,103,92,87,91,97,99,101,103,103,102,96,92,95,92,97,97,99,105,107,100,102,104,102,105,103,94,101,113,109,94,105,99,104,90,89,99,105,108,97,112,105,97,104,103,100,109,101,100,98,130,96,101,96,87,96,109,101,99,100,103,105,95,100,100,123,103,105,104,93,100,107,102,105,102,90,109,96,96,109,101,108,95,102,102,107,103,99,107,105,100,105,103,101,101,93,100,94,84,110,104,96,96,94,93,98,100,87,101,95,91,97,81,103,97,103,96,103,82,91,105,102,109,105,100,96,90,95,96,97,97,105,93,105,93,103,101,100,104,106,100,100,109,116,88,94,102,92,100,96,95,106,101,103,104,107,99,60,103,106,100,109,106,102,96,113,97,92,111,81,105,83,109,105,93,93,106,96,102,90,104,97,97,107,111,98,88,97,95,94,118,106,95,101,108,97,94,92,111,113,112,95,105,105,100,104,99,111,104,94,97,108,99,91,106,100,95,95,101,109,97,74,100,100,95,96,85,105,96,81,102,102,105,106,96,91,98,99,98,91,91,103,95,97,94,98,88,105,103,104,105,84,104,95,89,104,95,99,84,92,105,104,91,87,109,94,98,94,95,94,97,103,100,99,95,95,92,100,99,94,80,100,97,97,101,100,90,97,103,103,110,104,98,72,109,84,95,95,101,98,102,111,102,108,101,99,95,101,117,123,88,95,105,89,107,83,91,105,98,100,85,70,108,98,109,99,96,92,98,92,101,93,110,92,99,101,110,95,87,94,91,99,103,94,98,90,84,108,111,98,95,101,116,106,107,109,80,104,99,106,98,98,103,99,105,100,96,110,104,109,105,72,94,103,104,104,105,97,104,102,106,106,109,102,99,104,98,77,94,99,84,104,93,110,102,103,87,101,106,113,84,89,110,107,108,102,90,102,100,108,102,120,95,104,95,85,104,103,91,76,91,94,107,101,98,99,106,111,93,125,94,81,83,94,103,95,99,95,101,106,92,99,100,105,98,103,84,103,95,98,104,93,102,113,97,97,112,105,100,96,93,111,110,91,99,81,99,98,95,105,96,93,123,97,98,95,90,91,102,101,96,101,100,100,108,109,101,109,91,104,115,113,99,95,112,91,105,109,106,96,107,97,98,106,112,81,102,102,103,99,101,85,104,103,103,108,108,106,94,95,105,101,98,102,103,104,102,97,83,101,113,105,103,96,110,104,101,100,98,104,102,98,115,103,95,103,109,104,99,99,103,100,93,101,104,102,98,103,105,98,93,111,111,101,71,97,101,102,101,107,116,108,102,94,88,97,84,103,99,108,101,98,100,89,109,103,102,99,107,96,99,108,105,104,81,96,100,92,105,97,98,93,98,91,102,99,105,103,90,97,101,106,110,110,92,107,94,100,104,102,105,103,85,101,105,99,103,99,97,109,93,95,81,101,101,89,90,115,93,107,84,98,95,102,98,101,109,98,89,95,99,96,92,94,113,102,99,102,102,104,82,117,102,97,103,115,106,106,105,99,106,101,106,97,105,91,99,98,93,110,91,105,107,106,110,114,95,105,110,105,101,97,127,108,97,103,97,101,96,99,88,106,86,107,98,94,96,97,99,92,91,104,105,108,99,103,104,105,98,75,97,93,115,103,89,96,106,101,105,109,109,96,99,98,97,98,96,103,97,95,98,104,100,89,98,98,98,99,100,95,95,96,108,98,100,92,103,106,103,96,105,103,91,113,97,107,97,107,92,87,94,104,108,103,97,96,90,101,95,105,110,103,113,104,91,90,97,99,104,100,96,105,94,98,98,105,108,95,95,97,107,107,114,77,98,101,104,105,101,95,96,94,106,104,104,109,105,95,104,112,116,104,96,93,85,108,97,109,104,94,91,87,107,107,110,99,97,97,103,104,99,99,99,107,98,99,96,97,113,103,86,100,97,107,112,96,91,100,96,109,105,105,98,104,101,102,100,100,95,99,102,98,99,95,130,103,106,121,111,99,98,103,101,106,112,101,111,100,100,98,100,92,94,98,97,102,97,108,100,89,99,75,102,75,95,112,105,98,98,101,103,98,105,104,102,105,95,110,84,106,103,102,103,98,102,103,105,107,105,86,99,105,93,106,97,114,105,107,105,103,98,100,108,104,99,98,105,125,99,104,112,102,96,108,105,107,117,93,97,113,90,94,101,109,93,87,99,89,101,96,88,88,103,108,105,95,92,117,92,109,102,97,99,110,102,91,99,98,101,101,96,95,111,98,103,98,111,89,100,95,99,114,102,97,81,96,96,104,89,98,109,107,116,94,101,104,102,96,99,87,95,106,104,102,119,100,116,98,94,108,91,99,106,96,100,113,102,106,108,108,98,89,105,115,104,95,107,87,96,105,101,102,94,94,100,104,116,96,103,97,109,98,89,108,108,100,96,98,97,93,99,94,83,106,103,93,120,108,103,91,87,99,81,90,90,85,99,98,99,105,80,104,100,97,95,87,106,94,94,111,102,106,102,104,97,99,99,100,100,104,107,117,101,102,94,96,103,105,101,100,99,96,94,100,99,80,100,87,72,108,101,105,92,102,97,103,103,104,95,86,96,104,93,107,105,95,108,105,101,101,107,104,99,120,100,108,117,104,108,101,100,107,110,112,100,91,104,99,106,107,98,103,101,102,112,91,114,102,101,90,99,107,106,95,107,92,87,91,98,101,93,104,96,105,98,96,99,99,98,100,106,107,100,98,103,99,91,110,119,100,95,100,99,100,111,100,112,97,96,102,103,98,92,104,109,107,98,104,105,98,96,106,95,109,103,106,111,98,94,94,96,99,94,101,88,106,105,91,90,95,95,96,91,91,104,99,101,110,107,100,100,84,113,115,96,106,105,100,100,100,96,101,97,125,104,109,105,96,95,99,105,104,96,101,99,113,108,99,108,99,97,94,113,103,95,84,109,108,94,93,96,89,94,103,102,96,101,101,102,91,91,91,94,85,113,113,99,108,123,95,98,91,98,108,93,106,100,100,93,110,105,95,98,97,103,91,101,101,107,96,112,98,109,98,78,94,107,97,108,90,97,87,104,101,99,95,105,97,92,97,118,102,104,103,100,97,98,102,103,97,99,110,79,93,93,103,104,109,104,104,102,94,106,110,92,105,92,108,105,115,99,98,103,102,105,99,101,92,102,80,101,105,106,70,105,115,96,94,104,89,100, +696.03003,94,95,96,108,102,109,91,99,108,101,101,98,97,76,108,95,93,103,94,99,109,93,98,87,102,100,102,95,103,95,112,102,86,89,110,97,90,107,95,94,88,103,84,96,97,123,96,88,95,99,107,93,106,96,98,67,93,102,100,75,101,96,104,94,101,110,97,107,116,108,109,111,100,91,108,102,109,95,98,101,107,98,105,84,97,92,93,111,94,102,96,99,90,104,94,102,110,87,100,96,100,130,99,110,103,95,104,112,86,93,104,102,100,106,109,103,104,98,113,99,94,87,89,104,102,96,98,92,103,105,95,111,93,93,106,84,93,109,90,115,70,92,99,105,98,100,94,106,99,97,95,91,100,97,103,92,104,91,111,132,99,103,101,102,100,106,98,92,113,98,91,104,100,105,99,113,92,89,91,92,99,88,96,104,104,113,95,87,97,95,105,112,108,107,101,93,83,102,106,102,99,97,98,106,101,98,100,99,102,105,103,96,112,66,101,105,107,97,99,99,108,95,101,92,101,114,99,107,91,81,106,97,101,86,108,98,90,105,94,87,92,96,85,106,106,88,98,91,95,100,90,105,102,91,101,118,96,100,94,110,94,101,76,94,93,109,94,104,96,108,117,107,100,95,107,104,96,99,100,107,118,111,98,105,98,86,83,107,100,86,110,111,110,83,100,98,90,106,95,104,99,105,98,98,111,98,108,106,97,108,104,114,96,106,103,104,112,108,97,110,90,88,100,97,101,94,99,97,105,107,103,104,114,76,92,84,94,91,100,112,108,102,109,104,88,98,88,99,98,103,108,106,93,82,105,99,98,105,99,106,92,101,103,92,83,96,101,100,87,104,113,94,97,110,97,99,106,97,88,97,104,105,101,103,105,105,108,98,126,102,105,87,98,99,88,100,110,91,101,102,94,90,90,91,109,91,102,102,108,100,98,102,90,106,97,83,114,105,105,94,99,115,103,98,99,95,105,93,96,94,90,104,104,91,101,113,100,107,97,111,106,93,92,101,90,97,98,97,93,104,97,106,102,96,100,111,92,104,113,99,68,104,100,98,105,101,108,87,99,101,97,118,97,101,106,89,97,104,98,87,103,118,95,104,112,98,91,102,88,107,97,105,102,99,94,101,83,85,101,93,106,98,94,98,103,99,97,101,99,93,115,99,102,102,106,116,110,98,113,109,107,99,120,112,91,98,103,99,100,112,100,94,90,107,102,93,98,97,99,103,98,105,97,104,101,112,102,95,108,111,103,100,94,97,129,101,78,97,94,96,101,87,87,103,106,104,97,95,102,107,99,111,103,91,112,99,102,109,111,98,107,113,92,93,93,98,95,106,110,108,108,112,90,89,99,104,95,109,96,100,102,110,100,91,113,96,90,83,86,102,96,98,100,97,69,95,100,96,88,104,102,110,95,90,86,87,88,103,102,96,89,94,96,102,95,100,105,95,107,98,109,113,97,72,104,92,89,97,92,101,93,100,103,98,96,100,108,106,89,97,117,99,104,104,91,103,102,93,97,96,98,100,105,105,97,102,99,87,95,94,100,106,110,132,94,111,97,94,101,110,114,107,95,99,106,92,95,100,100,96,93,109,92,94,96,101,101,99,99,100,109,100,91,106,93,105,91,86,103,101,94,101,96,102,102,66,96,99,106,100,105,98,97,98,88,97,111,93,117,98,100,96,100,68,109,92,103,97,92,106,116,100,108,86,90,91,87,100,110,98,94,93,95,88,93,105,90,101,98,98,109,95,97,105,93,103,104,105,90,117,109,98,107,126,96,94,103,96,102,100,108,108,100,105,98,94,109,96,102,108,82,100,98,97,103,98,95,98,97,96,110,102,103,99,101,104,116,101,94,97,97,102,98,109,96,96,101,103,100,99,103,104,108,103,109,101,89,72,109,104,103,95,101,94,90,93,101,99,84,102,93,101,100,98,97,93,106,94,95,93,87,108,100,105,101,98,90,95,101,97,98,109,97,107,97,100,100,105,99,90,97,89,95,108,99,101,108,107,100,97,100,96,113,98,94,91,90,94,97,95,93,95,100,102,103,93,103,102,97,104,99,86,113,105,102,105,91,92,118,100,101,104,105,108,107,107,105,124,92,97,95,100,95,100,98,92,100,90,98,94,103,104,96,102,105,94,104,107,98,103,106,96,98,105,115,113,107,98,92,101,107,101,83,99,102,104,103,105,102,97,90,95,113,88,87,90,94,98,75,106,93,94,103,92,101,113,84,91,93,87,100,98,80,95,100,89,96,99,89,91,99,87,100,106,112,101,109,90,93,102,101,96,101,108,78,105,100,110,110,101,103,110,104,92,91,108,104,94,102,99,100,94,106,94,103,99,131,103,96,100,109,107,78,98,114,88,103,107,121,97,107,112,100,93,94,113,94,91,88,111,100,96,110,103,104,97,96,94,112,102,90,91,105,110,103,96,92,107,101,101,109,100,87,110,110,94,93,104,98,91,91,105,98,90,95,104,98,103,111,105,102,105,85,104,95,111,105,92,103,104,103,109,104,112,96,99,107,101,105,107,111,106,95,106,113,102,94,103,103,112,97,105,111,99,102,104,99,99,124,91,115,99,103,115,102,93,101,100,98,90,108,98,103,98,100,96,108,99,94,107,107,86,110,96,114,97,100,91,106,92,98,95,97,97,99,104,108,100,116,107,110,106,102,81,104,105,106,95,99,112,90,98,100,97,100,96,109,105,109,106,100,106,98,102,95,113,96,103,98,92,103,104,95,82,106,98,111,124,98,106,129,91,101,106,113,95,100,105,101,105,90,110,94,95,98,100,109,112,88,107,112,95,105,101,107,93,103,106,105,106,108,101,103,112,106,117,96,112,111,99,105,101,100,90,102,95,101,106,93,99,102,102,110,103,100,91,99,106,108,109,91,80,117,106,109,109,96,105,102,102,90,99,98,103,97,106,108,109,105,107,100,100,96,92,93,103,96,99,102,94,95,99,101,101,107,113,99,94,101,96,116,98,75,98,104,105,99,105,71,98,95,113,99,107,102,108,101,96,100,114,99,115,106,96,97,99,102,109,104,97,87,108,106,100,103,91,107,103,106,108,102,91,103,101,103,98,91,98,104,95,93,109,94,99,99,96,104,105,100,99,97,93,105,87,105,80,99,99,107,91,104,99,106,99,103,111,100,89,100,105,107,90,93,108,126,90,116,113,111,102,101,93,88,95,100,92,99,107,102,107,98,96,91,93,92,92,107,90,96,106,110,102,112,110,95,95,100,103,109,112,108,101,114,90,91,110,80,111,106,105,106,94,100,111,97,97,102,94,113,102,94,106,94,103,98,105,91,108,116,93,87,120,97,101,98,101,93,100,102,102,109,112,107,96,109,96,91,100,85,108,86,99,105,98,97,99,112,113,113,100,105,95,103,95,106,106,114,96,99,95,91,105,102,98,108,92,86,112,96,97,97,109,101,118,99,102,102,96,110,102,106,111,98,91,102,111,107,96,109,96,89,91,104,99,103,91,108,101,91,99,106,97,94,108,102,98,95,103,101,94,88,103,106,96,104,93,98,100,101,98,104,100,100,93,108,100,107,89,104,92,106,103,94,112,97,110,96,98,96,99,88,99,115,98,66,90,97,102,104,108,99,102,103,109,100,102,94,101,94,95,111,113,107,102,104,108,97,102,116,108,101,106,108,102,105,102,103,102,104,97,96,97,99,96,95,109,100,98,109,67,111,100,108,85,92,105,103,92,100,96,105,102,92,103,97,119,106,94,97,95,96,99,111,95,95,103,101,99,109,93,85,106,97,105,103,100,88,109,97,101,108,95,102,106,87,96,105,102,73,113,106,100,93,105,93,94,81,106,99,96,98,110,89,94,95,101,102,96,95,106,101,106,103,109,94,100,110,98,98,113,96,94,138,109,103,101,97,96,96,94,103,99,113,110,97,99,99,96,98,102,104,96,100,102,95,99,109,97,104,90,82,96,97,99,102,98,97,99,101,110,115,108,106,102,106,103,74,90,105,100,106,105,101,99,108,103,130,105,98,89,99,119,92,104,117,109,106,99,99,96,119,84,95,104,94,106,101,96,90,105,108,93,97,99,99,102,102,116,91,107,110,91,100,97,103,93,105,100,105,103,105,91,101,108,103,108,102,99,90,99,115,105,104,98,106,105,88,113,99,92,97,111,105,82,101,103,93,112,102,121,95,83,106,105,101,111,99,97,100,100,104,105,100,98,100,118,111,95,102,98,84,84,105,87,92,99,94,104,104,95,99,92,109,97,81,100,104,110,99,102,99,109,109,99,91,100,75,80,95,104,110,106,109,102,99,98,111,113,113,102,100,100,102,94,100,95,109,97,99,101,104,93,102,111,103,111,108,99,104,108,95,101,109,88,107,101,103,114,113,97,101,106,109,111,106,116,103,102,106,93,106,109,102,96,103,106,107,116,101,112,110,98,97,101,106,94,99,92,100,97,99,96,101,93,105,96,98,96,85,99,98,106,99,121,107,104,104,98,89,88,102,115,106,96,100,86,105,96,106,106,102,102,97,89,99,107,103,101,95,98,93,98,100,109,102,108,94,106,89,98,104,98,96,100,105,101,96,105,98,105,97,96,96,92,107,104,107,101,83,93,104,95,93,93,106,90,117,102,118,115,93,107,94,110,76,77,80,103,95,95,95,88,99,107,95,108,111,102,110,98,91,104,109,97,91,97,97,91,97,99,91,88,107,89,94,106,107,97,102,105,101,68,104,108,94,103,103,95,102,102,90,104,102,91,106,93,86,93,93,107,76,100,101,95,107,105,100,102,93,105,102,97,109,91,91,112,96,123,102,99,104,99,104,98,95,97,94,111,116,100,110,100,100,101,104,90,111,102,72,86,97,98,96,84,103,102,108,98,97,105, +696.17139,114,101,106,108,92,103,111,103,101,100,106,111,86,114,125,81,101,105,100,94,104,104,105,105,101,86,101,100,95,111,88,98,109,100,103,102,99,113,89,105,96,96,100,102,105,96,105,91,97,105,105,99,97,96,98,100,105,106,109,100,118,108,120,100,102,105,101,101,105,93,93,100,96,96,93,104,95,105,100,96,90,97,102,95,114,109,116,110,81,96,95,104,105,96,95,92,101,94,102,94,113,106,97,101,101,97,86,105,95,96,109,94,108,109,115,104,120,95,102,107,118,91,91,110,105,100,100,89,98,100,93,104,90,109,97,101,81,100,102,100,97,86,91,104,91,94,92,101,101,100,95,106,103,92,101,103,111,94,100,115,103,105,106,107,105,103,95,96,102,105,88,95,90,94,116,100,96,92,91,97,97,109,99,105,103,100,97,92,108,95,100,96,104,112,102,99,103,100,110,108,94,122,97,103,83,98,101,110,106,110,91,97,102,95,99,100,101,97,104,113,101,101,105,95,100,106,108,85,103,98,98,108,94,94,103,103,98,126,101,88,103,93,91,99,91,92,105,96,88,99,96,96,107,104,92,108,96,102,99,102,98,101,94,95,100,107,101,100,99,95,98,100,95,116,97,107,99,107,104,105,124,78,93,101,107,99,94,96,117,91,77,95,118,108,101,103,110,104,99,107,96,98,95,108,102,117,112,105,100,107,95,109,110,105,97,100,99,95,102,99,99,86,86,105,102,98,94,95,103,104,101,101,107,103,100,109,103,97,105,92,89,88,100,88,112,108,100,102,113,91,94,102,104,108,93,103,104,105,100,94,100,92,90,94,104,106,102,97,92,100,108,98,105,99,106,105,98,98,104,105,75,93,98,95,103,93,93,95,109,100,104,102,97,99,95,80,103,98,101,116,102,101,99,105,97,94,97,94,112,104,113,99,109,96,94,116,80,118,101,99,91,92,99,93,86,101,94,97,91,110,88,94,96,97,96,106,97,108,99,105,100,96,108,98,108,102,83,98,112,110,97,109,108,116,100,99,115,96,101,98,108,93,105,104,96,99,105,97,106,97,102,101,108,100,101,98,102,95,99,104,98,119,114,117,94,96,102,102,114,100,103,103,105,101,99,99,101,99,113,95,110,84,105,100,100,107,106,97,100,105,113,99,100,112,94,105,104,121,101,81,115,94,94,102,99,104,116,103,96,71,105,105,100,116,98,113,75,97,105,93,99,94,103,110,112,99,104,98,105,100,109,106,92,108,85,86,98,107,99,95,103,98,102,107,108,106,106,104,101,98,99,108,90,97,102,121,101,113,105,102,107,108,86,109,104,91,110,97,100,100,98,96,100,99,102,105,91,108,100,84,90,102,103,110,101,99,105,98,105,96,100,88,105,96,106,106,90,102,101,93,99,94,103,99,100,109,99,92,112,107,92,79,97,97,92,106,92,107,104,100,94,101,96,100,90,99,112,94,96,124,99,99,98,111,104,100,102,104,100,105,114,110,93,101,97,98,98,94,101,99,104,94,99,99,95,97,109,101,105,112,104,100,98,96,107,98,100,85,109,109,109,80,99,97,107,94,104,112,103,103,102,92,98,104,95,99,103,100,100,107,104,94,104,95,102,96,95,102,104,96,103,92,103,116,98,92,111,109,95,96,100,106,102,98,101,112,104,98,110,90,103,96,94,91,104,94,100,100,93,102,106,91,80,101,96,96,103,91,109,98,106,102,93,96,91,101,88,100,108,117,105,100,87,96,95,106,79,89,96,100,102,104,110,101,103,104,101,83,106,107,104,104,110,106,107,97,95,101,88,100,103,103,89,97,114,110,101,94,99,106,110,109,96,109,109,105,110,106,96,100,99,105,96,98,101,113,100,105,100,90,93,94,110,104,105,98,100,103,100,112,98,106,126,96,98,104,98,94,104,96,102,108,101,100,70,95,100,99,100,92,114,104,108,100,101,103,101,93,102,100,102,101,105,109,95,99,98,81,100,98,103,95,102,104,102,102,87,109,89,104,101,106,100,81,104,99,100,115,109,96,101,101,97,92,100,98,94,109,95,98,96,95,105,107,112,91,99,109,104,109,117,111,105,110,106,99,100,92,91,102,108,100,102,98,84,95,95,114,94,99,103,93,101,96,96,102,103,105,97,105,92,96,96,100,105,96,103,111,94,96,99,106,105,86,96,97,91,104,92,95,110,92,103,102,90,110,109,103,117,92,94,103,105,93,103,91,89,104,97,97,101,105,98,91,90,101,90,104,99,86,95,101,105,94,100,106,110,92,78,72,86,96,92,108,93,90,105,113,89,97,102,106,100,77,99,103,101,102,113,95,103,107,99,96,117,100,100,105,97,99,98,114,106,119,87,91,95,105,96,95,87,100,97,104,92,108,94,104,103,106,97,110,107,106,106,104,88,90,109,90,97,112,109,107,102,101,99,96,100,79,98,105,113,105,101,113,103,102,106,112,97,89,107,90,94,102,104,103,97,103,107,100,116,108,107,97,101,95,104,99,102,116,108,100,93,106,115,96,122,98,89,102,99,98,100,96,82,117,106,107,101,108,103,109,105,94,93,95,107,94,104,99,96,114,105,96,94,103,105,101,99,113,110,98,98,81,105,101,104,74,119,91,107,90,105,106,107,107,104,99,93,94,110,90,75,96,100,98,102,98,98,108,107,97,116,111,103,76,94,102,87,105,100,100,96,98,111,83,98,100,104,96,103,98,94,103,103,120,97,97,101,101,99,98,89,107,91,111,107,93,113,107,92,106,89,83,100,93,100,110,99,102,96,100,102,104,101,108,99,101,105,98,117,91,98,113,101,107,92,106,108,102,111,98,103,86,96,100,97,97,93,98,92,102,111,96,104,92,92,112,98,104,96,109,105,94,100,107,106,105,104,105,107,94,95,99,97,89,97,89,96,107,89,87,96,107,112,91,106,103,105,113,101,103,100,100,96,99,100,92,105,102,106,92,90,102,97,98,80,111,98,91,103,107,112,103,112,108,108,97,94,107,104,100,102,103,98,97,94,113,97,103,116,109,102,111,112,100,107,102,105,110,97,97,96,81,108,116,96,99,113,107,108,97,107,94,97,93,111,103,101,102,89,79,115,87,94,98,113,108,103,107,101,104,105,102,99,103,73,105,93,104,117,105,100,107,97,97,95,102,102,96,90,115,101,102,122,98,104,97,106,104,99,83,119,102,92,108,109,98,101,93,94,103,108,110,100,98,120,113,99,98,103,108,103,108,98,122,110,107,114,98,108,103,112,103,101,95,103,97,104,91,105,106,103,95,100,94,117,103,102,94,92,102,100,111,90,99,108,92,100,91,94,98,109,101,96,98,100,107,91,103,110,96,96,105,116,95,95,90,97,99,97,109,83,93,95,100,109,97,93,98,106,98,101,99,94,105,98,101,106,87,104,96,84,109,84,95,111,101,101,113,110,84,109,98,107,97,95,94,108,91,112,94,83,94,104,115,100,102,90,100,97,107,111,99,101,91,99,100,99,106,95,106,99,102,92,94,98,96,95,108,102,101,113,101,100,98,111,124,113,87,87,109,105,108,100,101,112,104,101,102,93,99,100,104,105,94,110,119,91,104,104,105,108,100,104,107,110,90,105,100,105,104,88,72,96,99,79,94,100,93,94,103,97,93,105,104,92,103,108,102,95,94,98,93,108,100,104,100,106,108,99,117,96,104,106,95,108,102,106,104,111,103,97,99,122,109,98,109,95,112,108,81,102,94,112,94,91,96,107,107,100,89,96,92,103,79,113,116,100,105,97,104,110,98,99,100,105,97,100,105,104,99,116,97,97,101,98,103,90,105,96,99,106,99,101,92,109,80,99,108,91,107,106,97,103,99,92,115,100,99,95,98,105,100,102,93,94,102,99,102,97,100,108,96,104,92,111,96,108,92,105,106,100,99,98,90,101,114,86,99,103,84,102,109,104,104,106,105,106,89,97,103,106,104,105,93,88,104,108,94,91,115,95,93,109,99,95,106,110,102,92,96,95,98,113,79,95,89,101,101,89,91,98,106,101,107,107,113,101,108,98,101,102,103,113,117,111,97,95,94,108,104,112,112,99,112,93,105,82,118,88,98,101,101,107,95,99,107,103,99,98,95,97,99,107,80,104,97,141,106,95,98,106,106,136,100,95,85,68,107,95,107,102,113,106,85,122,99,107,100,98,102,109,91,94,99,95,103,106,96,100,94,90,101,116,102,103,103,87,104,91,96,105,100,98,109,92,100,93,113,93,95,101,95,113,98,103,103,95,96,92,102,108,100,104,98,96,106,97,106,96,91,94,107,100,94,104,99,118,102,95,96,102,75,103,110,108,107,104,119,95,97,110,102,116,96,106,107,98,101,98,103,104,104,95,101,100,98,89,105,98,103,92,98,103,113,106,109,100,102,89,94,108,117,87,109,99,89,100,122,106,102,110,102,104,101,96,102,103,101,93,114,98,102,100,105,98,100,95,100,106,109,90,105,109,103,101,98,98,96,112,102,98,107,109,111,125,97,101,100,111,97,101,103,99,112,96,98,105,99,114,98,106,73,105,96,84,101,111,95,99,102,93,99,108,99,106,98,102,97,98,111,118,104,103,103,119,107,86,106,108,100,103,104,109,111,99,95,109,99,106,105,92,105,94,112,98,80,102,107,97,104,106,91,116,103,94,113,105,101,110,93,99,87,107,94,97,93,97,120,102,93,98,95,105,101,105,105,104,113,108,93,95,98,133,103,97,98,112,111,96,102,103,102,98,104,99,94,93,101,108,100,94,104,97,89,91,105,113,95,98,96,124,94,87,128,104,109,109,106,100,91,93,91,92,88,109,88,77,92,108,100,99,91,67,108,131,100,94,105,115,102,103,95,102,98,116,94, +696.31268,100,98,99,82,101,104,101,92,105,110,96,71,109,93,96,109,95,101,83,83,106,95,90,102,89,106,98,100,107,108,101,105,91,99,109,97,88,104,103,104,94,89,107,91,101,104,108,102,87,107,106,107,83,112,96,103,78,106,99,100,93,105,101,109,109,106,90,95,112,102,91,100,96,94,84,113,108,109,99,107,95,96,103,103,100,91,99,100,99,94,95,96,104,102,98,104,95,96,75,113,89,101,104,96,104,107,111,105,106,113,111,97,114,94,104,99,84,106,103,94,94,104,104,106,108,110,111,101,104,104,100,117,92,105,83,105,100,104,101,107,108,94,105,97,92,108,113,109,94,104,99,105,105,96,108,101,96,102,108,123,101,106,94,96,101,106,97,102,86,99,105,117,109,108,105,104,117,102,109,100,103,88,75,94,104,90,61,97,111,97,98,98,105,106,88,110,97,102,94,110,97,93,94,103,98,108,107,96,104,97,89,109,107,108,102,95,105,94,107,90,105,105,98,96,98,105,95,95,100,93,89,95,98,108,111,104,93,110,106,117,105,96,103,103,95,97,94,101,100,106,81,117,92,99,101,109,96,103,104,105,104,102,100,102,91,102,97,98,106,98,92,100,109,91,106,105,112,101,103,102,107,104,88,78,96,107,105,101,108,102,91,98,96,77,99,110,98,108,102,101,118,97,93,130,105,117,100,89,95,108,84,86,100,94,100,103,110,106,100,91,99,106,113,99,100,102,91,91,97,91,102,100,111,105,95,104,98,92,109,95,100,101,101,108,85,101,106,104,97,111,100,97,103,104,94,121,99,72,99,104,102,108,104,104,92,108,100,103,100,90,102,100,120,99,91,92,88,97,105,101,88,101,100,102,99,101,83,102,106,106,109,91,103,96,110,99,110,99,107,95,98,103,89,98,102,107,104,110,90,91,88,99,107,107,102,91,94,102,97,91,80,93,92,104,101,91,92,81,132,90,98,98,97,85,97,95,91,102,92,96,99,91,93,98,98,96,96,100,91,104,99,74,104,113,105,101,109,97,113,100,96,96,104,113,101,113,103,105,100,94,103,95,102,102,98,95,95,99,112,105,100,117,105,129,91,105,101,98,74,92,100,93,94,101,93,100,104,92,105,98,105,103,101,98,101,88,101,109,104,102,104,100,104,122,102,109,103,102,92,108,105,110,102,97,75,98,107,104,99,106,102,104,106,91,101,102,104,85,100,99,93,112,106,90,114,91,87,95,88,94,95,104,105,97,120,96,101,110,100,91,111,102,106,108,95,106,114,112,100,92,87,100,110,94,100,109,100,106,113,108,100,100,110,99,107,96,110,109,98,107,92,109,101,92,106,112,97,102,108,97,101,106,91,118,98,103,104,100,101,114,100,101,89,98,95,95,103,101,104,94,104,106,108,97,105,105,89,104,104,108,102,105,87,106,103,108,85,102,114,95,107,104,95,93,101,82,97,95,108,110,105,92,98,109,92,111,102,105,109,92,95,99,96,96,97,89,98,74,101,100,129,90,105,98,109,118,106,102,102,100,126,89,103,102,99,109,105,103,108,107,101,113,99,107,86,100,112,111,110,92,102,107,88,103,99,109,114,103,120,102,112,92,114,90,87,95,97,99,105,116,99,111,116,95,118,104,97,97,97,104,110,101,95,92,91,106,95,104,105,102,116,90,101,102,92,93,110,113,99,109,102,110,109,110,106,95,104,97,106,96,90,108,97,95,95,104,97,101,96,105,100,95,100,90,93,99,109,93,100,70,103,108,109,109,103,105,102,102,99,101,107,102,103,104,99,99,104,95,95,98,96,97,110,106,112,95,94,99,100,100,109,107,95,110,106,99,104,96,113,117,109,106,83,99,111,101,116,100,99,103,103,95,101,84,91,99,99,100,136,107,96,113,109,109,117,97,99,99,91,103,99,91,94,87,103,94,97,98,109,98,107,95,99,100,104,99,103,102,97,112,117,112,104,105,108,103,106,91,95,106,108,101,99,111,110,113,92,83,101,100,102,111,100,98,104,82,95,95,100,104,106,104,112,105,105,98,86,108,104,93,100,78,98,94,115,110,98,108,115,102,97,116,91,109,102,108,100,92,100,108,95,98,102,100,113,78,104,71,88,101,106,93,82,99,99,88,101,89,97,94,103,96,105,101,100,88,110,101,100,94,98,105,105,112,110,103,99,109,92,100,100,95,100,104,107,98,117,95,101,104,94,107,102,96,107,89,106,90,103,97,101,124,106,101,96,109,85,106,107,97,95,102,104,101,104,112,99,100,89,96,96,106,98,97,94,106,111,102,102,100,102,111,98,97,103,105,106,105,99,110,102,92,101,96,108,98,113,99,91,104,105,108,96,105,101,98,109,103,120,106,93,103,112,100,105,113,97,95,101,88,88,99,104,95,95,98,101,101,91,88,101,101,95,99,97,109,106,102,109,101,100,94,94,106,108,101,98,98,99,102,109,101,96,98,105,87,101,103,106,104,107,101,107,97,101,110,84,108,94,100,85,115,98,94,93,98,108,92,105,92,110,99,96,87,104,111,97,103,109,103,101,115,104,87,95,89,92,104,96,87,98,92,97,103,86,89,94,103,98,89,90,91,107,96,92,86,111,97,92,100,97,88,85,105,122,104,92,95,104,92,97,105,100,83,96,93,108,105,102,85,103,107,81,97,83,112,99,92,93,97,89,95,94,102,109,103,108,91,85,101,83,99,108,89,97,101,100,109,104,100,102,103,97,105,101,101,99,92,103,87,108,111,104,101,116,102,95,102,102,100,94,98,104,113,95,96,102,117,69,99,101,91,94,97,88,98,93,82,101,109,99,104,107,105,105,101,94,97,101,118,98,103,96,103,112,101,109,91,96,112,100,100,103,105,101,91,102,109,96,105,93,102,100,105,106,98,95,106,101,112,109,105,89,98,100,99,109,105,107,109,92,117,100,103,102,92,108,103,99,95,89,89,97,90,104,106,97,110,100,93,121,107,90,93,96,103,84,105,89,98,88,97,101,84,110,108,102,102,105,99,94,102,104,85,98,105,115,97,107,94,100,104,90,102,110,89,109,96,90,105,105,90,109,94,109,104,106,101,101,94,95,116,98,105,97,98,100,105,98,98,88,85,86,101,101,89,103,96,98,100,105,87,98,101,97,96,106,97,92,90,99,112,96,102,101,99,80,112,102,100,114,88,105,96,95,98,104,102,93,99,91,102,98,99,83,86,94,99,93,105,95,92,100,102,103,91,96,97,107,110,107,94,91,93,90,101,94,84,103,110,119,98,93,106,65,113,101,91,101,100,90,102,98,98,108,94,95,84,84,93,101,111,95,92,97,108,83,105,107,93,92,102,100,87,95,99,95,101,102,101,97,135,95,106,101,97,94,101,102,109,86,107,102,104,93,106,105,104,92,104,92,92,91,95,97,90,102,103,89,109,89,95,69,102,103,91,100,105,94,105,104,95,92,86,101,103,92,99,102,91,89,101,84,103,101,101,98,105,93,72,109,100,102,102,83,111,103,101,102,108,88,102,100,105,94,102,93,94,86,75,109,98,98,102,94,76,91,93,103,106,96,93,100,80,83,93,105,91,94,100,104,91,101,89,101,105,101,103,97,95,93,98,116,92,104,92,90,98,104,111,93,90,103,65,97,77,102,86,105,96,119,109,83,102,86,91,95,87,99,100,108,91,101,104,96,87,108,90,96,113,99,99,114,98,108,98,91,87,95,92,92,99,95,99,100,97,89,90,109,91,101,87,101,103,89,112,115,91,110,99,97,105,99,111,104,96,103,108,108,93,113,79,101,103,104,97,99,87,102,102,94,100,107,92,94,96,99,95,93,105,90,89,107,112,105,102,93,101,86,92,110,93,88,103,93,96,98,91,103,96,103,104,107,95,91,104,80,101,111,95,92,97,104,106,95,97,100,95,102,91,101,106,98,110,93,87,92,95,100,101,104,104,98,105,80,92,97,104,93,95,92,99,105,98,109,95,98,100,102,94,104,105,102,100,100,97,97,98,61,98,101,93,93,102,100,99,91,98,107,91,100,95,96,93,100,102,98,104,83,108,92,93,85,103,118,112,100,93,95,106,92,100,101,98,104,104,97,107,98,106,90,86,109,104,101,71,96,95,88,108,117,94,80,93,98,109,97,110,98,93,107,99,111,76,97,104,97,111,96,91,102,107,110,95,85,102,92,92,103,103,112,89,102,103,99,89,105,104,96,98,99,87,107,95,116,106,99,93,91,100,110,91,95,95,91,115,90,96,92,104,97,98,102,96,89,91,95,91,104,103,93,87,109,103,99,106,94,98,101,109,93,91,90,92,104,104,106,102,100,104,101,106,108,91,102,106,99,101,99,98,106,95,96,103,87,98,92,108,106,95,88,78,102,86,99,106,106,100,98,93,100,96,102,102,93,95,92,100,101,105,102,90,92,99,95,106,89,103,87,94,106,87,99,90,108,93,103,104,96,96,103,96,91,107,96,70,98,84,98,104,97,89,106,98,99,107,108,104,99,90,97,102,107,95,105,113,103,99,94,100,113,108,101,98,105,101,101,99,96,102,102,101,91,106,101,101,98,109,100,95,103,104,89,106,93,103,93,103,97,92,121,73,108,98,102,105,109,104,111,94,93,97,109,93,109,95,92,91,104,88,100,104,102,99,100,107,120,109,110,109,99,101,98,103,113,100,106,98,102,108,104,116,106,102,85,118,90,95,87,104,111,91,92,99,100,94,105,95,104,100,90,100,108,92,101,94,101,99,105,104,84,96,100,91,95,63,95,97,96,108,109,94,99,92,106,94,93,103,94,102,104,103,91,109,99,100,90,106,88,93,97,94,78,106,93,96,87,125,99,108,108,102,96,82,107,99,115,73,103,94, +696.45404,94,113,91,98,78,96,88,100,99,113,102,100,91,105,108,91,107,99,98,95,111,95,88,112,76,106,109,115,104,96,105,103,91,102,104,97,108,100,99,95,105,101,98,99,100,110,116,111,88,107,109,100,99,113,98,86,105,98,116,103,95,106,98,110,99,105,97,97,96,100,99,106,99,107,100,110,88,95,106,117,98,101,93,96,106,91,91,94,93,101,105,105,104,105,92,107,99,106,117,103,108,97,100,101,104,104,85,101,96,94,116,99,99,101,95,90,115,95,89,99,98,100,107,105,97,107,79,99,114,101,105,98,98,99,112,103,99,95,95,106,95,106,96,106,116,102,98,95,109,105,100,99,108,81,105,105,103,98,101,101,112,100,114,95,104,92,104,87,106,104,94,92,95,98,103,121,99,105,109,113,100,111,91,117,99,109,100,106,103,100,98,103,110,105,103,95,100,93,106,103,95,105,96,73,108,94,108,90,98,107,104,80,99,96,112,102,104,97,98,100,107,96,108,103,97,97,103,104,104,87,101,102,102,98,104,92,106,103,108,102,84,97,96,89,92,95,101,94,113,100,86,114,97,106,98,107,135,117,84,103,94,105,98,107,94,97,102,97,91,95,98,111,104,103,108,89,111,104,94,112,114,106,104,100,108,108,103,98,97,111,107,95,106,102,108,108,94,91,111,109,113,107,99,95,117,103,107,117,102,95,103,109,102,96,100,78,103,104,106,97,112,90,107,103,102,98,105,93,113,110,105,96,115,104,106,101,99,84,100,114,108,86,102,97,90,114,97,106,107,95,98,103,102,102,101,100,94,96,106,110,97,101,98,98,111,98,110,108,103,105,95,98,108,109,109,100,90,97,102,92,119,107,94,104,109,95,95,112,97,99,86,101,93,99,103,106,99,105,104,95,98,104,109,96,89,103,76,110,93,98,101,97,92,107,99,98,109,95,123,104,88,102,100,104,107,97,94,104,107,113,103,102,82,104,106,103,96,97,95,104,106,86,62,74,99,102,100,98,114,111,83,96,105,103,94,88,101,110,103,113,107,101,104,106,83,100,100,103,98,101,91,103,98,109,100,107,105,108,99,94,98,101,111,116,99,86,106,98,94,103,112,108,109,109,105,103,101,108,100,105,105,113,104,103,106,97,99,104,99,96,108,100,91,107,98,96,94,99,104,96,104,98,94,97,105,101,110,103,94,96,96,108,101,98,103,96,108,100,109,100,92,102,84,98,99,109,102,111,93,107,100,102,114,98,108,105,97,99,104,101,105,90,94,91,122,94,98,111,88,94,100,93,109,105,98,75,100,96,100,106,107,97,110,96,94,100,99,104,99,107,106,106,106,100,94,108,105,107,105,106,115,106,101,102,113,109,96,110,107,109,101,94,112,103,105,95,107,101,96,101,108,95,108,105,107,105,101,99,95,109,105,99,96,116,94,98,95,100,91,102,103,108,114,109,89,92,95,99,101,113,113,105,102,109,99,106,107,106,94,116,105,107,125,100,100,99,110,93,116,103,102,110,108,103,96,104,96,112,88,110,110,90,102,97,95,105,82,107,104,104,71,102,96,103,97,98,113,98,100,83,98,94,94,106,112,100,104,122,106,99,117,94,107,99,91,94,97,95,98,105,105,98,112,102,106,109,101,100,96,105,105,109,109,98,99,103,102,106,115,98,101,102,111,100,103,97,107,111,100,95,110,104,102,109,101,93,104,109,101,102,90,102,91,106,96,97,90,118,97,96,104,94,100,113,109,109,104,111,97,98,101,105,107,136,92,94,109,107,105,104,90,106,97,102,97,92,99,115,106,99,99,105,101,105,102,105,105,103,96,99,113,103,102,100,105,95,114,102,111,94,95,108,105,98,104,105,105,112,90,103,104,109,103,93,100,99,122,92,101,99,94,105,103,106,95,102,109,91,106,101,105,98,104,106,105,103,102,101,110,103,117,114,105,101,108,105,112,111,103,103,107,108,101,96,91,100,107,96,102,106,96,117,97,94,118,119,104,107,95,95,100,99,95,97,115,96,102,101,101,87,105,111,104,114,110,110,90,112,100,95,109,104,101,116,83,104,84,113,106,96,116,104,99,105,106,99,97,94,103,118,106,113,110,114,98,97,104,95,102,100,79,107,104,98,118,91,108,108,87,105,110,105,110,102,108,101,99,104,98,99,107,109,111,86,97,103,105,110,97,96,94,114,96,94,105,118,96,104,113,99,91,68,89,105,109,96,96,99,115,104,92,92,86,97,102,100,99,83,94,95,101,109,96,89,109,97,99,97,91,108,94,99,113,98,105,97,108,104,111,105,98,105,97,93,101,117,101,111,107,92,100,103,100,103,104,103,99,96,117,88,107,102,90,101,105,105,105,107,121,107,101,98,108,107,102,98,102,102,121,109,105,105,116,107,103,89,101,105,99,94,107,94,104,92,103,100,96,101,106,100,93,101,89,107,80,81,108,109,100,103,103,102,94,90,90,95,91,99,107,101,104,110,106,109,123,104,88,103,102,102,98,112,99,105,103,98,98,109,112,110,99,101,92,91,95,116,104,124,107,101,99,102,100,100,105,99,106,99,108,94,103,112,102,118,101,113,102,100,97,96,103,108,111,105,98,99,109,107,118,101,98,92,105,104,99,98,108,105,121,97,96,91,113,102,97,109,106,105,117,99,101,99,86,103,111,97,107,97,109,91,99,99,106,101,98,98,98,76,105,102,101,110,93,99,105,103,116,107,100,103,119,112,93,124,102,104,114,101,88,65,94,96,89,98,108,101,101,99,113,94,96,109,97,94,109,91,92,95,104,107,105,98,105,107,113,105,100,105,98,101,113,98,102,101,92,100,99,98,110,97,110,109,101,101,105,98,99,94,89,103,102,83,102,97,99,94,87,115,109,96,102,109,101,109,93,104,107,106,118,107,102,100,107,100,101,97,118,99,105,100,115,105,100,88,105,61,91,103,102,101,93,95,98,97,94,111,100,79,108,102,102,107,92,105,107,96,102,98,96,95,109,97,98,102,118,93,102,95,102,86,107,113,100,89,110,108,123,102,100,102,93,106,96,100,98,103,106,111,90,97,101,104,99,99,100,101,96,88,97,85,123,99,95,102,94,96,102,87,98,102,108,98,100,106,105,83,103,93,113,96,103,109,94,97,109,86,107,107,99,102,113,94,105,86,99,95,95,98,106,86,95,99,105,94,105,95,105,107,101,103,104,99,91,96,95,111,99,95,107,93,107,113,99,114,126,103,102,105,103,104,104,90,98,100,103,97,108,107,100,100,95,91,100,98,97,107,106,102,97,93,98,102,93,101,102,100,89,96,106,91,102,99,99,101,97,112,101,101,87,97,107,114,102,98,79,92,111,96,108,104,112,112,107,101,79,103,119,106,108,83,95,95,111,102,96,92,113,96,102,119,83,96,95,105,90,109,109,96,102,89,107,105,106,93,104,110,100,96,96,103,110,99,100,93,100,101,98,98,109,113,94,106,99,109,102,93,95,84,101,91,116,107,100,121,111,109,106,101,89,98,99,91,94,99,101,108,106,90,86,104,112,95,111,109,104,117,109,101,102,99,101,102,111,89,101,94,108,98,94,95,80,107,110,115,107,98,94,100,99,97,96,101,100,98,78,107,101,114,99,98,94,91,95,112,100,104,97,95,94,104,91,94,95,104,97,92,90,97,95,74,94,103,105,105,105,98,94,97,106,109,105,94,112,97,99,103,97,108,112,109,111,103,88,107,98,102,96,106,99,94,101,124,110,99,113,109,108,102,116,98,98,109,100,103,113,105,107,113,92,92,106,89,95,100,103,100,100,96,89,111,94,104,102,97,84,108,107,102,96,88,85,95,100,102,95,108,69,108,101,98,113,100,95,102,97,101,97,103,101,102,107,99,99,106,102,83,117,98,100,94,98,94,112,102,105,124,98,98,104,103,97,103,97,98,94,101,102,94,92,94,98,96,95,111,103,107,93,95,105,109,99,105,88,101,103,96,96,108,119,90,106,101,97,114,93,91,108,98,107,96,99,111,95,111,94,91,95,93,100,81,108,88,67,95,98,99,108,87,102,104,84,93,107,94,104,107,104,98,100,97,96,96,108,102,93,99,108,104,99,94,100,92,90,107,93,105,104,102,103,100,96,91,92,99,95,101,98,106,99,94,96,104,107,108,101,104,99,106,112,105,97,94,109,103,104,100,110,99,100,106,75,97,91,94,93,93,106,94,97,109,110,102,92,102,100,110,106,93,94,97,111,105,108,102,101,99,109,87,97,100,95,94,100,97,92,101,105,124,105,106,100,91,102,95,106,93,98,83,109,99,100,98,104,99,102,95,94,99,99,108,94,101,103,99,92,103,92,101,95,104,106,112,110,101,128,110,97,100,94,68,98,94,83,100,68,106,81,97,94,97,102,99,91,102,99,105,107,92,100,108,109,97,92,105,96,102,102,112,110,94,94,97,100,99,107,106,109,100,82,101,83,95,95,108,98,77,109,96,92,95,91,97,103,113,101,92,97,104,99,96,99,90,94,104,103,96,111,99,90,106,100,107,108,94,107,99,113,87,85,97,97,107,108,95,100,112,107,108,102,101,102,103,109,108,103,94,101,101,105,96,131,98,103,101,109,90,105,105,99,103,81,108,88,100,79,112,98,99,91,100,99,94,103,103,113,100,99,100,90,85,108,112,107,119,101,87,109,120,103,85,61,93,106,96,95,100,93,99,115,88,98,101,91,103,95,109,103,107,100,109,98,101,117,109,97,94,91,94,100,106,93,84,99,97,97,95,119,102,104,96,109,93,97,101,96,102,99,101,94,100,92,111,98,107,104,104,87,105,101,98,98,116,90,101,100,91,117,104,102,98,97,100,116,95,84,99,98,117,94,90, +696.59534,110,99,83,88,74,102,107,110,93,92,113,101,95,109,105,100,92,121,90,109,106,106,85,90,103,99,97,110,110,85,116,96,100,104,115,65,100,105,96,101,104,107,100,93,98,91,102,107,75,107,107,97,103,95,94,89,95,95,111,96,101,91,96,110,102,94,101,98,78,87,105,102,95,98,95,109,107,96,94,90,104,101,105,77,71,87,97,101,110,101,104,92,83,104,97,105,101,98,109,79,105,95,97,94,93,101,94,94,104,89,101,111,103,106,94,109,98,96,105,106,101,99,110,111,100,111,101,95,96,113,100,100,95,92,113,95,104,106,89,94,109,111,97,91,102,99,105,116,102,97,98,95,104,72,92,105,101,90,105,83,91,102,107,95,106,88,98,99,95,94,109,92,88,105,100,100,105,100,112,88,95,102,93,89,94,113,108,95,98,99,90,109,102,100,86,92,100,104,116,99,75,78,93,102,105,103,115,95,103,102,107,99,104,99,97,101,108,100,93,92,101,101,105,112,93,105,111,110,101,97,109,99,100,90,104,115,100,103,98,97,101,114,90,106,99,99,90,109,104,116,97,113,87,99,99,113,101,100,102,99,108,89,104,91,86,99,87,116,98,107,101,99,75,92,104,102,97,106,108,94,106,100,105,103,113,91,87,94,94,99,104,104,108,97,108,103,99,106,96,100,102,101,102,99,99,113,105,107,99,94,108,109,87,102,108,98,108,98,106,96,103,98,95,108,93,91,101,96,88,97,95,94,113,94,87,95,99,98,99,107,98,94,101,90,105,109,98,100,104,105,106,102,94,96,100,99,100,108,98,89,85,95,87,101,91,89,95,92,104,87,92,115,105,92,94,90,95,101,112,96,99,111,95,98,103,93,100,97,104,88,114,95,86,106,100,90,108,89,104,103,109,111,119,103,99,91,104,95,105,95,99,97,120,104,105,105,107,90,108,108,87,106,102,104,90,98,104,99,91,100,87,107,104,89,104,98,98,109,98,92,102,95,100,103,102,100,107,100,102,105,92,100,95,98,105,98,97,104,92,110,71,103,109,106,102,98,105,91,95,94,103,95,95,87,102,89,104,104,92,105,91,105,100,87,96,105,106,89,94,98,97,95,102,106,105,97,93,100,96,94,110,90,97,99,105,103,101,99,103,96,94,100,92,102,99,106,100,109,100,103,106,90,97,108,105,91,99,100,96,101,95,104,100,94,105,101,97,94,94,85,95,97,74,90,103,95,110,85,97,95,101,108,99,101,103,114,105,99,98,73,104,104,95,99,104,89,106,83,98,101,88,105,94,96,112,104,99,102,91,102,106,89,102,91,98,105,102,103,95,101,106,111,105,96,108,112,91,101,100,93,92,84,97,101,104,92,122,108,95,104,107,104,97,103,99,95,87,96,100,94,103,94,98,96,102,99,97,97,102,106,110,97,95,106,100,109,91,98,105,105,113,100,101,110,95,97,102,102,113,105,88,119,117,101,113,103,97,121,102,99,107,107,101,101,89,96,97,96,103,103,109,103,106,89,88,98,106,112,104,106,106,110,88,89,97,100,92,96,92,109,99,101,90,107,107,108,112,120,105,89,94,101,101,97,91,102,104,100,84,93,108,95,111,101,82,96,92,92,92,102,91,94,101,99,105,90,99,113,90,104,106,98,101,100,96,94,105,97,107,96,102,108,98,106,101,80,99,93,105,95,112,96,101,96,85,98,109,100,112,99,104,103,95,102,91,105,96,118,112,93,101,105,101,103,100,99,99,90,100,92,103,101,104,99,90,104,96,106,93,121,94,88,90,115,100,104,98,103,100,112,89,110,104,101,104,109,97,103,95,98,100,98,108,94,95,99,94,96,104,98,105,101,110,106,92,106,102,99,86,77,94,90,87,116,93,103,92,93,99,94,102,105,100,90,94,99,91,87,92,82,110,105,88,100,106,101,103,103,65,105,103,102,94,103,91,107,100,94,105,103,109,105,102,103,87,98,110,91,102,104,99,96,95,101,97,92,106,109,109,108,84,109,102,99,96,109,96,98,99,99,103,102,99,97,116,92,85,100,94,101,96,96,100,91,86,105,100,104,92,86,108,104,101,96,94,95,101,108,96,103,94,99,100,110,118,91,96,105,107,105,99,100,95,111,108,94,94,109,102,98,105,91,104,100,103,96,105,100,97,91,97,113,86,103,108,113,98,98,98,96,97,110,113,105,102,100,102,98,92,95,93,97,101,97,105,107,89,90,104,102,103,97,103,94,99,91,92,99,103,61,97,103,94,103,102,98,95,89,96,102,88,103,120,98,92,105,92,102,101,91,109,100,97,83,109,92,104,103,96,101,64,97,102,101,104,93,81,109,94,94,99,109,117,101,95,91,99,110,88,93,108,108,104,101,123,102,100,107,104,86,97,101,103,97,83,93,90,91,98,101,100,109,93,93,107,95,104,118,87,94,93,96,97,102,93,105,108,71,110,113,107,109,93,91,100,101,93,124,102,100,90,97,110,99,99,109,107,93,111,96,85,116,104,104,108,100,111,98,100,79,99,106,107,100,109,98,102,91,98,66,97,98,101,96,90,106,103,101,106,89,109,91,91,102,96,95,99,101,105,100,84,106,102,100,103,99,110,88,82,95,99,94,101,93,110,101,83,104,100,98,98,98,104,96,101,97,101,91,113,104,101,104,99,110,110,95,105,102,106,108,109,104,83,108,103,107,101,104,105,99,106,107,91,104,105,90,103,98,95,108,91,98,100,102,100,112,98,105,106,107,94,103,98,106,101,97,88,105,99,89,95,83,87,108,95,92,114,97,98,104,100,105,111,94,100,99,95,97,101,91,100,93,94,105,94,80,87,105,95,105,104,95,89,98,109,93,97,105,101,97,95,80,103,108,98,103,109,102,106,104,100,113,108,113,96,100,94,94,97,88,90,126,91,89,103,99,88,98,94,95,99,103,104,109,93,95,106,99,108,100,99,104,90,98,102,106,124,87,96,114,99,97,105,107,101,99,93,99,87,93,103,104,92,125,104,88,61,98,83,101,90,95,113,101,117,101,95,106,100,98,97,105,106,95,104,97,98,103,108,101,111,104,101,105,98,85,102,119,92,106,109,97,111,110,98,86,97,102,108,99,103,83,105,104,106,104,111,133,96,94,96,97,116,92,103,98,102,67,113,102,100,105,104,94,97,102,100,98,97,108,103,92,106,87,96,91,96,109,109,96,98,100,111,109,103,96,80,64,118,107,94,102,98,106,109,99,98,108,77,98,113,102,112,99,80,95,100,112,102,129,98,110,94,63,93,103,91,103,98,94,95,98,94,99,95,101,100,111,100,80,94,93,95,101,97,92,117,113,100,99,97,94,103,114,95,105,101,118,98,98,95,109,102,103,80,81,91,97,100,93,100,94,100,112,92,107,105,98,111,90,88,102,103,90,119,95,106,99,92,101,109,103,96,90,105,99,103,96,92,100,99,97,96,103,98,113,108,104,96,109,103,106,101,117,95,100,103,114,97,83,110,105,99,114,99,113,113,117,112,108,109,102,111,108,86,101,94,99,94,99,108,103,91,96,108,107,92,102,108,98,102,101,101,98,111,99,89,97,100,94,100,107,118,103,100,105,101,110,99,98,104,90,109,113,95,105,97,106,107,114,106,90,98,102,104,112,106,105,97,102,102,85,103,106,91,104,88,99,109,91,103,96,98,104,98,101,104,102,113,93,101,90,96,103,105,90,112,92,94,107,97,99,101,105,105,79,105,91,107,100,108,98,95,100,88,106,99,76,110,105,100,107,87,112,101,98,91,101,107,102,116,98,92,87,101,93,103,89,97,102,100,97,105,93,98,105,101,104,98,101,101,110,87,87,107,105,102,101,103,104,115,96,99,95,106,94,107,98,108,100,127,104,109,92,87,96,104,94,111,91,92,95,117,94,84,96,102,97,107,110,98,99,98,102,98,108,105,88,100,104,90,97,108,87,104,106,103,103,100,89,108,96,101,103,98,109,96,101,101,106,109,109,94,84,101,105,91,102,107,115,101,106,103,102,102,110,102,74,113,102,93,94,128,92,88,98,105,101,99,102,96,102,90,109,98,97,98,102,97,101,102,98,104,102,108,106,99,99,110,102,111,99,94,95,98,101,96,95,108,100,101,110,100,96,106,105,105,91,90,94,108,94,107,102,111,106,104,95,108,104,117,108,105,92,107,102,87,102,87,91,106,82,97,96,97,96,100,103,98,99,94,104,96,108,107,107,95,90,91,95,102,103,104,105,99,102,100,97,102,109,93,92,109,92,94,100,94,106,97,119,106,113,120,94,119,103,100,94,96,93,104,97,104,92,102,101,108,91,115,93,99,100,101,112,103,95,97,106,103,102,105,117,92,97,95,107,103,117,100,101,93,85,96,107,104,105,96,108,105,92,103,104,94,107,99,107,94,100,100,103,94,112,108,100,108,106,97,97,105,89,87,95,108,102,106,101,87,110,98,94,104,106,108,110,104,94,106,94,111,97,101,97,107,101,109,107,103,111,93,92,96,100,95,99,92,90,100,99,107,97,98,107,113,96,94,100,99,111,97,122,108,87,101,93,113,101,101,99,99,105,87,100,102,104,107,102,102,102,106,100,105,86,96,93,99,95,84,102,105,108,101,99,104,94,88,110,103,92,108,98,106,105,90,100,101,91,101,94,102,109,106,96,111,91,100,99,100,99,87,83,98,97,94,116,93,100,104,92,100,112,117,91,96,101,69,92,98,100,88,88,97,104,120,114,104,88,96,110,80,108,96,102,108,106,95,104,93,101,102,120,119,142,107,112,118,94,107,109,101,110,95,98,88,87,88,95,87,100,105,98,101,87,105,109,107,114,94,104,92,96,92,101,110,104,96,115,84,99,105,98, +696.73663,61,92,93,97,88,94,100,103,105,100,99,110,95,90,107,108,100,91,108,96,97,128,92,102,105,94,90,100,88,106,100,110,101,103,95,83,125,101,96,91,98,105,91,112,108,105,94,113,98,101,99,87,95,99,108,95,92,96,95,92,102,93,94,100,101,97,105,90,92,78,111,108,89,101,93,104,84,101,104,92,98,94,97,99,90,82,87,100,111,100,103,101,103,110,83,101,90,107,98,90,93,95,99,86,102,104,90,115,102,106,99,97,112,93,96,104,97,101,103,103,96,101,94,102,99,101,94,97,99,104,99,104,101,101,104,105,87,101,106,98,90,102,89,102,106,102,103,101,98,101,90,99,94,93,99,97,93,107,98,110,96,100,104,82,95,113,93,111,97,104,109,92,98,93,105,94,88,93,99,96,92,105,103,95,100,87,96,96,103,94,91,98,96,109,91,110,95,96,95,94,97,94,91,86,106,108,105,92,112,113,78,98,104,113,98,98,108,102,91,100,102,96,98,92,67,99,99,98,100,113,106,111,98,86,106,102,101,111,104,98,90,96,101,112,100,91,110,86,89,112,94,103,106,100,101,102,98,101,95,115,96,100,101,100,115,88,99,93,103,92,104,96,97,106,107,90,109,104,93,106,101,110,97,110,100,92,103,98,90,101,90,100,88,91,105,104,104,113,97,79,100,112,101,104,64,99,95,108,96,99,98,99,100,120,123,83,113,95,85,103,100,95,100,89,104,103,108,95,100,106,94,105,111,100,103,96,101,100,88,88,102,95,93,99,99,95,95,98,109,95,111,101,94,86,95,104,97,96,99,105,100,98,103,93,88,105,107,102,92,84,91,101,109,107,100,108,106,102,100,105,105,91,94,100,93,93,92,84,96,100,92,96,91,95,98,107,113,95,102,113,92,95,90,92,99,97,94,102,102,87,88,109,85,104,90,105,96,95,110,87,90,97,102,103,84,97,97,101,101,96,86,97,104,95,97,97,112,101,95,95,95,101,90,87,105,102,103,101,98,94,77,87,91,107,100,110,95,89,101,94,93,100,102,107,100,106,94,105,110,101,97,104,102,96,86,87,105,111,98,108,89,106,102,101,96,93,105,105,90,93,101,116,100,106,100,97,91,93,93,94,107,103,99,101,89,114,89,97,101,96,99,89,90,129,113,100,93,82,95,102,79,97,99,85,96,97,103,97,95,95,104,87,102,104,108,109,104,93,94,98,98,96,107,97,102,100,108,102,102,97,101,101,85,99,103,90,93,90,87,100,100,97,105,94,95,102,94,102,90,98,86,87,96,82,97,117,106,98,103,105,91,87,116,111,109,107,82,90,101,90,100,105,91,92,105,90,99,105,117,91,90,104,96,86,91,91,105,111,98,98,98,106,117,97,68,94,100,97,95,90,116,98,83,96,102,91,88,101,104,96,99,100,93,97,91,103,90,87,109,112,96,106,100,108,98,98,102,104,102,107,99,109,90,104,120,109,94,112,92,105,99,106,106,98,60,96,93,97,107,101,104,101,105,69,95,108,105,103,99,92,101,104,102,97,96,101,92,101,99,96,97,96,126,99,107,98,97,103,91,89,103,89,81,111,93,108,101,105,94,104,88,99,108,98,102,108,99,102,104,99,110,93,107,96,97,95,102,102,105,108,95,99,96,112,66,100,109,95,98,92,106,94,109,96,89,97,109,94,85,101,104,94,90,103,97,108,103,100,108,92,73,97,94,91,101,87,101,104,105,91,106,92,103,97,95,97,99,106,98,110,100,96,103,97,97,107,91,100,99,91,106,94,99,99,103,101,88,95,107,91,94,88,88,88,109,94,108,121,89,90,108,87,107,102,103,101,103,96,99,100,98,100,114,88,94,98,103,95,107,106,96,98,110,101,107,101,96,99,97,95,99,94,91,90,97,89,98,102,96,92,103,103,88,99,103,99,98,106,102,88,108,94,92,106,103,95,97,93,107,100,110,104,78,104,105,100,94,106,105,98,105,96,101,91,101,107,96,121,99,95,104,114,93,104,104,93,101,105,105,101,92,101,106,92,114,90,103,90,99,101,93,100,112,104,94,108,97,100,97,98,101,97,105,102,101,98,95,102,117,102,102,90,99,90,94,106,105,105,109,107,103,102,109,110,98,99,92,98,96,94,94,104,99,106,93,98,108,103,100,104,94,111,95,94,93,100,98,93,95,104,86,106,103,94,95,96,92,89,85,94,94,93,95,101,109,92,104,96,101,83,104,90,102,105,96,90,96,100,96,109,78,105,105,91,103,104,90,94,91,100,97,100,93,80,95,100,101,109,103,99,102,93,104,98,101,92,88,101,101,108,101,93,108,89,104,99,98,105,106,99,99,101,105,94,113,97,93,90,99,96,95,109,100,106,93,96,102,103,95,108,100,101,103,101,88,102,108,94,107,87,97,95,109,90,87,105,97,92,95,102,73,106,104,97,114,108,94,105,100,117,108,123,105,92,89,99,109,91,102,105,105,65,100,113,100,95,101,103,104,97,96,106,111,117,96,110,99,103,115,88,107,100,92,98,101,105,101,99,103,91,104,103,97,101,98,94,100,102,104,94,109,92,96,93,97,103,99,93,91,113,117,96,96,96,107,102,107,106,111,100,96,106,110,84,111,104,103,96,95,109,105,104,73,100,102,112,75,98,98,103,129,103,96,99,90,99,108,107,100,92,94,105,89,120,107,106,93,110,110,88,91,103,104,103,102,100,104,91,90,103,94,102,103,93,108,100,87,110,102,91,100,99,102,96,87,99,96,100,99,110,92,108,99,98,103,96,110,103,106,109,109,99,113,97,99,107,107,93,91,96,100,108,98,95,104,102,94,101,110,96,96,88,96,112,123,105,98,104,99,105,105,92,109,98,95,105,109,121,105,109,97,101,104,100,94,105,98,108,98,104,104,123,96,99,97,98,106,97,95,92,96,107,99,102,103,103,101,101,107,95,105,100,87,96,92,96,104,96,97,112,95,101,100,104,92,105,100,105,113,95,102,99,97,100,101,100,99,94,108,102,100,107,98,108,74,108,104,103,111,110,94,105,100,103,108,100,96,95,98,95,109,113,109,91,94,96,108,105,88,97,116,102,108,108,110,90,92,101,96,94,104,97,95,116,100,96,106,108,105,102,104,109,101,116,103,103,107,106,107,114,105,96,96,110,96,100,105,103,104,95,90,111,101,96,109,103,108,96,101,104,104,107,101,101,95,100,103,105,115,96,108,110,99,98,102,103,108,91,101,103,113,91,104,111,99,111,104,106,108,101,108,88,107,109,98,100,106,121,100,106,103,106,97,97,102,105,96,93,102,105,62,112,99,98,116,99,98,103,108,103,89,98,98,109,95,90,107,102,103,87,103,105,94,96,113,113,103,106,107,104,100,104,97,92,94,86,99,95,103,104,95,91,103,102,105,129,96,111,107,87,103,103,92,92,114,78,109,112,113,83,107,102,102,91,100,103,123,94,98,91,108,106,98,105,104,108,100,102,91,91,94,101,94,101,98,110,121,114,103,104,108,105,97,101,113,104,97,99,98,109,105,101,96,103,95,110,98,106,97,105,97,94,105,99,113,115,112,109,104,117,89,92,98,98,97,100,106,98,103,93,89,102,121,99,100,104,106,91,99,106,90,108,101,101,105,94,106,106,116,94,102,109,109,100,87,106,113,96,96,99,111,105,117,96,110,99,106,100,105,101,104,109,99,90,96,102,91,112,83,99,102,92,103,99,104,102,101,110,92,101,96,100,107,105,80,107,94,88,96,102,106,106,96,104,97,100,97,99,99,98,110,97,109,103,85,100,107,94,97,108,88,102,107,97,94,92,105,103,113,106,95,94,95,112,102,97,110,110,117,101,106,95,103,103,100,117,109,92,98,112,94,113,98,98,103,98,106,104,97,96,124,105,105,99,103,99,111,101,102,94,107,117,99,100,103,84,95,97,101,108,91,89,95,106,102,105,96,101,98,106,99,101,107,104,103,108,103,97,114,101,106,98,103,95,120,93,104,109,102,106,106,98,100,99,105,102,107,100,113,92,101,104,100,102,110,114,108,95,101,102,99,103,100,112,110,91,114,96,89,120,104,95,100,108,109,108,99,97,98,102,99,91,99,102,107,109,104,116,103,107,95,99,95,99,100,107,92,105,87,107,107,104,92,120,101,112,92,104,97,96,100,101,109,122,91,102,107,100,100,96,96,90,97,98,106,71,101,105,103,101,104,88,115,95,120,98,101,104,111,106,106,96,101,94,92,100,119,103,80,83,105,112,106,97,108,90,93,103,104,122,96,106,109,97,108,93,101,101,100,96,107,99,110,99,107,102,101,99,99,93,107,101,108,105,104,99,113,117,94,104,108,103,101,110,101,103,100,101,102,104,97,101,99,113,101,110,93,104,105,99,101,105,117,105,103,111,92,87,91,98,98,103,120,100,99,95,100,106,94,95,99,98,101,100,94,104,101,106,106,75,103,105,106,111,113,101,106,104,83,87,108,102,100,104,96,99,105,101,120,98,102,90,103,111,97,106,110,107,96,106,104,104,104,99,100,102,103,104,97,113,105,99,95,128,111,109,97,130,92,113,94,95,109,97,102,106,96,75,105,100,98,99,113,101,98,92,106,114,100,109,104,91,101,100,97,100,107,106,99,100,94,99,100,112,85,92,116,103,92,107,111,113,109,102,106,100,108,109,101,99,107,108,101,102,83,91,114,113,84,91,91,100,104,94,92,96,112,114,99,95,110,94,95,96,91,105,96,109,95,99,106,109,99,92,98,92,104,110,102,101,110,94,101,104,118,103,100,98,108,109,110,105,95,99,94,107,104,79,88,105,95,98,110,99,99,100,99,98,94,83,103,114,103,103,110,103,94,87,99,87, +696.87799,92,104,92,99,98,98,92,101,99,99,99,88,105,89,99,109,89,100,101,93,93,90,87,103,93,108,104,86,90,108,99,109,114,106,121,96,103,105,105,96,91,96,91,93,102,96,98,105,108,105,105,84,96,96,98,92,88,72,104,99,96,92,87,98,95,103,92,94,102,95,104,106,95,95,96,100,93,103,101,106,99,108,91,95,99,93,108,89,95,104,106,105,93,95,112,96,109,105,101,103,100,103,95,110,100,100,94,103,95,104,88,92,104,101,98,92,95,102,100,105,100,109,94,95,94,100,93,104,90,96,114,90,101,126,96,97,87,103,92,106,93,96,96,99,101,103,84,94,101,91,106,93,97,85,106,96,95,67,105,95,100,98,97,104,97,90,93,89,97,86,101,105,98,95,91,91,97,94,106,99,99,95,108,95,106,104,85,88,111,99,99,104,102,94,99,95,110,93,99,99,95,105,115,94,105,99,100,96,101,101,93,96,99,93,105,103,97,101,97,103,104,87,104,93,104,109,93,106,112,100,101,101,103,94,93,96,110,111,102,101,93,94,99,98,96,92,106,97,98,105,100,103,95,91,112,100,108,98,93,97,99,101,102,107,110,99,96,90,110,96,104,104,96,95,98,106,95,102,94,102,101,99,108,107,88,92,97,102,77,105,95,109,94,104,103,103,99,93,114,99,98,101,105,100,103,101,107,96,93,103,91,111,96,94,98,101,106,105,87,94,92,95,100,94,101,89,96,94,111,104,99,99,104,97,99,100,101,90,99,104,94,105,92,93,95,91,113,95,98,100,103,105,114,97,94,103,98,95,109,96,104,96,100,99,96,92,93,99,91,91,102,105,96,101,106,102,108,101,109,91,97,116,92,106,100,99,93,96,99,103,70,91,99,101,91,95,94,96,99,97,89,100,105,69,77,92,93,100,97,88,92,96,98,91,100,87,99,103,99,106,128,83,98,102,102,91,98,108,101,110,95,93,95,88,90,95,90,99,95,98,105,105,121,104,93,97,100,90,98,112,98,91,92,107,113,90,91,102,102,101,92,85,108,101,102,106,105,101,100,99,112,99,92,95,98,95,66,103,118,96,105,100,97,105,103,91,102,87,102,101,107,104,102,94,93,103,95,86,106,98,93,99,104,108,96,103,96,109,112,99,115,94,101,95,101,102,90,101,98,95,99,103,88,90,109,109,104,114,102,88,108,94,103,90,97,104,96,89,98,96,95,100,102,103,103,96,123,100,112,100,99,102,96,111,109,98,99,100,101,95,95,98,88,96,98,83,114,95,94,101,97,104,86,110,82,94,99,103,107,101,101,96,98,96,101,96,98,104,100,88,102,104,95,93,102,109,97,96,102,91,98,103,109,108,94,97,101,94,104,111,100,103,111,96,99,95,100,110,111,106,107,98,109,99,98,96,105,112,111,107,113,101,109,99,102,95,100,95,108,96,105,101,108,102,88,95,94,90,101,101,90,104,80,105,100,109,88,111,102,112,108,99,96,92,80,99,95,78,84,100,96,105,103,95,102,98,103,94,94,86,91,102,105,80,101,122,93,98,106,84,101,117,94,96,100,87,102,103,108,95,103,95,108,92,92,98,114,94,85,104,109,96,104,124,117,107,98,109,103,101,91,99,104,107,96,95,91,100,99,109,113,101,92,97,94,82,88,92,103,99,111,99,95,106,88,98,103,104,107,112,103,114,104,94,100,90,116,99,106,108,89,96,88,97,108,103,94,109,90,100,104,93,112,105,90,109,104,110,99,95,95,100,98,113,91,94,90,94,92,103,91,105,113,113,109,101,86,92,102,105,105,98,83,100,106,109,105,107,101,98,109,93,94,118,105,105,97,91,94,98,97,97,102,94,99,114,103,101,97,103,102,94,123,94,108,108,103,104,105,99,105,105,98,98,103,88,100,95,87,102,105,92,91,98,101,101,111,107,96,101,95,98,106,100,105,113,105,99,95,104,100,100,94,99,92,86,70,104,113,99,93,111,101,100,92,110,110,99,100,95,102,99,101,108,107,95,102,97,107,100,96,99,103,112,107,97,108,93,103,108,98,105,99,95,94,100,98,111,114,102,94,94,95,99,110,100,100,99,106,99,106,100,107,110,110,91,102,92,96,99,92,107,111,92,105,87,94,101,106,110,89,111,107,99,96,111,112,98,96,108,105,96,97,96,106,96,98,87,101,105,100,102,104,100,99,109,105,91,101,107,92,96,95,96,112,88,97,102,110,103,99,96,92,107,95,100,83,104,96,96,116,96,107,108,111,94,91,96,102,90,90,100,82,102,86,104,110,91,104,97,109,110,108,99,112,95,95,92,98,96,102,103,94,100,103,99,100,107,94,113,109,99,111,92,104,100,120,86,98,104,103,102,119,99,81,109,97,97,94,87,108,119,104,96,92,97,82,120,109,109,98,97,95,112,109,113,106,94,96,90,99,90,93,103,96,100,106,91,102,98,121,101,98,88,98,104,103,105,94,98,102,92,98,105,104,93,105,103,108,97,80,95,107,98,111,102,112,101,94,107,108,99,88,91,97,113,94,103,117,95,96,86,99,98,90,88,104,108,98,91,97,104,95,110,98,91,77,100,107,114,108,110,98,105,85,100,92,104,97,112,108,98,100,85,98,101,84,103,113,101,90,110,99,101,96,100,96,108,90,94,89,102,107,103,103,88,123,105,102,98,101,106,113,106,100,98,100,102,108,120,94,104,99,94,104,91,101,103,92,88,95,102,75,99,101,103,110,105,102,102,97,111,93,86,115,108,105,96,99,87,96,91,91,107,92,110,95,107,106,114,106,100,115,94,102,97,100,97,104,98,109,93,102,113,91,89,88,96,99,115,80,95,104,110,100,95,103,100,104,99,108,108,89,91,89,100,105,98,99,91,117,101,111,94,103,110,106,98,100,79,101,97,93,87,105,99,113,91,108,92,96,107,103,123,96,110,110,104,98,87,92,103,93,105,95,103,93,106,97,103,96,100,97,105,108,111,96,97,108,107,97,113,98,102,102,113,108,90,103,112,102,104,102,96,105,101,100,98,106,114,92,97,98,99,103,96,93,97,103,91,112,99,100,92,98,91,107,100,101,109,108,99,77,103,102,101,103,105,99,95,93,103,100,94,99,91,93,94,93,117,101,84,91,98,97,105,106,89,104,99,113,96,95,98,92,102,106,99,103,94,97,108,109,95,94,99,105,112,101,114,102,99,101,100,100,94,101,103,99,112,102,103,101,117,105,96,101,102,96,86,93,64,99,105,101,104,95,104,91,98,102,109,109,101,106,108,99,101,105,98,100,109,99,105,99,99,91,83,101,97,116,96,97,96,96,102,83,101,105,99,100,94,109,94,103,105,96,99,98,101,92,100,98,85,100,102,95,100,79,95,106,102,106,103,108,104,97,105,110,94,105,101,92,102,97,92,93,120,98,108,67,108,94,98,93,104,112,86,79,105,100,96,113,100,90,100,100,99,101,101,101,98,92,109,99,97,100,103,103,83,105,92,96,103,97,93,113,113,98,92,80,109,97,106,113,92,97,92,97,103,102,101,108,71,99,104,98,99,98,83,109,105,100,87,89,104,103,99,97,86,86,94,96,98,94,85,103,94,112,103,87,106,113,101,92,92,104,91,96,99,106,97,91,95,109,96,110,101,104,83,110,106,104,98,98,118,96,103,104,100,104,94,98,106,98,91,99,98,100,92,96,102,110,97,104,112,107,98,102,116,115,100,100,93,112,91,115,108,100,105,79,102,104,94,98,101,98,89,90,101,101,104,92,103,111,93,103,96,89,99,115,109,105,95,99,115,88,98,97,106,95,92,101,99,94,105,103,113,113,112,105,98,91,95,113,108,122,88,96,106,105,105,100,100,98,94,96,97,103,94,98,99,102,105,107,105,99,102,101,96,123,97,116,90,86,83,103,103,97,103,101,97,93,102,97,110,101,108,98,90,100,108,107,91,101,105,100,100,97,103,109,94,95,97,91,93,91,92,93,110,69,97,91,98,111,108,95,109,96,98,108,99,86,72,91,103,99,96,97,101,104,98,120,96,90,101,93,111,92,106,106,94,94,97,106,108,91,95,91,100,91,103,99,95,96,106,101,92,114,99,101,96,108,96,86,108,117,95,94,106,92,96,102,112,103,97,96,95,93,95,99,106,108,102,113,102,95,104,99,68,116,91,108,114,105,99,95,95,102,107,105,100,104,101,99,98,106,97,102,105,97,99,97,94,128,104,99,98,85,100,103,104,106,97,104,94,101,97,90,97,104,94,108,105,98,95,98,98,103,110,106,97,92,99,104,97,98,99,83,92,98,96,103,93,102,95,102,99,101,103,99,102,101,98,109,115,118,109,97,108,96,109,98,92,87,98,97,105,102,101,88,91,98,97,91,103,93,99,97,102,100,105,109,97,107,92,90,98,94,112,98,98,99,101,95,99,107,100,113,107,91,95,75,102,117,102,92,94,102,106,98,75,111,117,106,100,102,110,110,95,88,96,120,116,92,115,100,94,93,97,108,91,96,85,108,93,102,88,100,95,98,94,112,102,87,87,111,105,103,96,84,95,107,104,110,104,108,96,95,112,92,101,102,106,101,102,92,99,99,90,97,105,102,110,92,100,90,114,100,103,93,97,95,102,94,107,100,93,95,110,91,93,112,98,97,92,88,102,95,98,107,95,97,104,98,95,106,95,95,99,102,115,101,119,103,105,84,86,106,94,101,96,106,112,101,94,94,94,94,105,89,98,111,98,90,93,106,100,89,90,95,99,107,88,95,122,103,109,94,99,106,110,104,107,108,90,108,89,95,75,99,106,113,106,108,107,95,91,101,105,96,92,96,105,108,84,91,113,97,94,98,88,92,86,109,112,96,89,100,102, +697.01929,119,96,103,108,88,96,107,98,91,113,92,101,98,111,107,95,98,105,93,96,109,102,96,101,98,108,107,105,96,98,96,107,103,109,112,104,100,91,98,113,100,94,94,103,110,93,105,98,100,107,95,110,99,93,94,99,99,93,111,102,104,91,107,100,110,122,91,113,90,103,103,100,110,110,96,106,106,98,110,101,99,107,93,112,96,113,89,97,108,96,106,70,99,96,109,96,104,98,97,102,95,98,99,97,101,96,119,95,110,99,111,89,98,102,110,94,102,111,113,94,102,95,99,96,107,107,106,109,116,106,98,104,102,92,99,103,106,101,97,94,101,99,101,99,100,95,103,94,94,114,104,101,103,83,100,110,98,90,101,94,94,92,110,105,91,101,107,105,108,102,102,98,98,101,98,97,102,96,102,94,100,99,95,107,101,100,101,92,97,104,106,101,97,105,106,98,101,99,98,104,110,94,87,101,112,114,90,96,95,95,98,97,105,106,96,102,99,90,99,100,102,102,106,111,101,94,100,101,109,97,100,100,96,103,109,89,100,85,94,98,105,104,98,101,98,97,86,96,101,100,95,89,112,99,90,107,88,103,91,96,100,95,107,101,99,96,94,109,98,97,100,91,95,91,106,97,102,99,102,75,100,99,109,99,105,94,100,104,100,101,101,96,108,94,75,105,92,100,99,91,113,93,101,96,98,100,99,105,105,93,86,84,109,104,98,128,110,99,103,87,101,101,107,95,106,97,98,89,96,104,95,98,88,97,96,95,108,99,91,111,97,93,104,93,95,97,96,108,102,93,103,92,113,97,95,96,105,109,108,104,105,94,98,107,106,96,105,103,93,96,108,104,109,89,117,84,94,104,101,102,99,90,91,106,109,88,100,99,97,94,101,98,95,96,88,106,96,93,108,99,104,102,93,73,85,99,96,101,104,97,83,104,95,101,96,93,101,99,98,106,109,92,96,83,100,90,103,91,87,98,97,105,93,94,106,108,92,99,102,104,102,112,90,99,92,106,95,101,111,100,87,98,87,103,97,102,102,99,113,90,94,102,97,108,103,96,97,104,108,96,96,107,103,88,95,110,88,102,94,103,99,107,111,108,109,93,94,100,87,92,102,90,104,105,97,102,96,107,101,95,104,95,102,93,83,111,91,101,98,95,105,102,96,109,97,90,114,100,101,96,98,99,91,110,104,113,98,100,96,90,91,91,94,99,102,102,101,95,114,105,96,109,104,95,99,102,106,88,104,95,104,101,98,96,106,81,110,86,103,108,102,99,96,102,100,101,105,99,93,93,93,104,104,99,110,104,89,99,118,112,105,96,104,108,104,107,100,107,102,105,105,109,88,87,100,104,104,100,104,92,96,96,107,69,100,95,106,107,97,97,106,101,100,104,111,104,106,94,98,105,95,102,104,104,78,105,113,110,104,99,88,105,93,100,91,105,105,84,98,87,84,102,95,93,98,97,91,102,86,102,93,99,105,92,102,101,95,113,104,117,100,88,98,96,92,97,101,97,118,106,103,95,112,100,86,100,102,102,103,90,101,104,96,94,110,103,94,109,100,100,99,92,82,102,97,94,97,98,98,91,98,91,93,99,97,109,99,108,108,90,112,98,99,99,115,95,91,103,112,92,102,94,107,102,94,100,104,110,107,108,91,94,98,88,96,91,99,90,100,95,109,98,102,112,96,112,101,101,85,96,104,91,91,99,109,103,123,93,102,97,87,94,86,99,89,100,88,102,97,105,106,107,95,104,112,105,94,98,98,97,93,104,113,108,96,110,99,101,108,103,100,101,101,100,106,98,106,101,104,98,103,92,91,94,119,104,101,102,97,91,105,95,94,97,97,100,88,104,107,101,93,109,98,102,104,112,99,98,114,98,93,100,100,95,97,101,119,98,108,103,92,105,113,102,95,100,98,101,95,98,101,100,96,96,118,102,102,91,101,99,103,95,93,110,95,96,106,96,100,109,106,94,94,107,102,103,105,91,83,107,91,109,98,101,112,96,93,111,97,87,102,101,108,96,108,93,98,111,90,96,102,113,99,94,103,100,104,100,90,98,99,106,97,104,114,92,101,109,95,87,112,106,108,105,88,100,105,100,105,105,96,104,98,89,82,99,103,105,94,108,95,102,101,105,110,105,90,110,91,99,108,94,99,102,108,95,103,109,102,90,103,92,90,87,113,99,84,104,93,105,99,93,99,82,97,109,94,99,96,105,101,110,98,102,99,96,107,101,103,92,96,84,93,92,87,98,101,97,101,100,89,99,98,96,112,90,95,98,106,101,97,118,95,99,90,106,88,102,99,92,103,114,99,93,103,103,91,103,106,91,105,106,107,99,99,97,96,101,107,96,88,117,96,83,91,104,96,109,88,98,91,107,97,97,110,102,93,112,99,97,86,98,104,98,92,103,92,98,91,86,89,115,91,95,114,92,120,96,97,98,109,110,96,104,99,102,98,94,120,104,103,111,105,89,85,93,107,106,84,100,115,97,111,104,92,99,96,98,93,100,89,106,93,99,99,109,85,102,97,97,91,110,94,81,95,99,97,106,96,107,113,114,95,109,83,100,94,98,97,86,106,97,83,107,99,96,105,90,102,95,88,91,100,101,99,105,101,99,107,95,101,81,103,89,115,101,98,106,106,98,97,86,103,91,107,114,101,97,110,65,95,109,96,95,85,108,111,95,103,105,108,103,99,98,97,109,102,101,113,109,102,97,96,100,99,100,111,104,108,97,98,98,104,105,100,86,105,100,99,88,102,106,97,95,107,95,81,103,108,87,99,61,94,109,101,112,98,109,98,103,104,93,97,101,90,105,91,113,101,109,88,86,109,101,100,102,101,111,104,107,105,96,100,99,101,93,99,102,83,115,114,104,97,115,106,95,92,93,99,103,113,103,82,111,103,105,118,102,97,100,108,94,100,87,91,97,92,101,102,105,99,91,107,94,100,90,97,103,106,95,99,99,95,93,115,100,93,101,105,100,107,94,100,94,104,95,105,84,106,100,107,98,91,100,106,98,106,88,108,110,92,104,99,93,99,92,111,106,89,97,100,93,101,105,83,96,94,101,100,98,98,120,101,97,117,86,104,94,103,106,92,110,101,109,82,108,87,95,91,96,109,93,99,109,89,93,106,116,105,95,95,90,109,89,114,102,99,102,104,103,96,88,98,106,107,95,98,102,109,103,100,103,110,91,96,92,94,104,97,106,90,104,102,90,91,105,91,113,102,98,106,102,109,99,107,101,101,103,97,103,102,73,90,82,104,94,111,104,113,109,90,100,107,110,102,102,113,106,102,107,109,106,99,101,97,93,93,96,100,93,105,97,115,106,105,94,116,96,97,93,108,96,106,89,98,89,127,98,97,101,98,113,71,98,91,98,110,119,99,91,100,91,102,95,99,91,105,90,106,116,95,106,104,95,101,104,107,104,95,98,111,112,105,98,101,101,108,109,100,100,101,98,106,84,95,92,102,104,100,90,97,76,104,85,112,92,100,90,93,94,103,106,98,104,98,105,99,97,102,116,99,92,97,104,107,95,108,98,97,102,106,99,102,105,105,101,94,121,106,96,90,108,69,97,106,94,103,96,97,103,80,106,103,94,100,92,102,101,105,109,90,95,107,109,102,104,97,99,101,96,100,92,104,109,114,107,105,108,104,98,106,100,102,102,89,99,105,104,96,104,90,97,100,95,102,110,98,107,100,91,93,104,100,105,91,105,99,112,107,98,93,95,102,93,109,76,99,108,108,95,104,86,89,104,101,102,92,117,109,94,82,105,105,102,102,111,96,107,107,102,104,112,109,100,95,87,97,105,97,113,93,98,104,99,103,104,99,109,105,103,98,100,99,111,99,92,92,93,99,91,92,104,91,110,97,96,99,92,112,100,98,73,107,98,95,93,105,109,108,89,90,91,103,93,101,99,104,91,108,94,101,100,88,115,95,109,102,96,105,98,105,108,110,105,105,105,97,91,107,97,100,95,96,100,111,89,108,100,102,91,99,101,103,96,101,101,100,94,100,97,103,106,96,92,107,106,80,92,107,93,104,102,97,104,82,109,113,87,99,111,103,108,103,101,113,99,99,96,103,101,93,86,98,96,88,94,100,103,93,100,97,99,94,103,107,97,95,100,103,104,110,97,100,92,114,102,110,128,98,87,106,102,98,112,102,106,95,108,112,93,111,94,101,100,122,101,96,112,98,102,99,98,87,98,96,102,105,110,95,100,108,95,90,99,91,106,106,93,103,101,100,95,106,102,95,112,105,97,95,109,100,99,109,100,118,91,96,98,102,117,97,105,111,98,110,116,100,87,103,104,105,92,95,106,101,99,105,96,106,97,109,112,117,115,96,87,110,100,102,100,97,100,102,107,120,95,101,106,103,90,83,90,90,105,108,107,113,101,112,99,115,87,106,97,105,98,84,102,95,116,110,108,105,104,98,104,98,102,98,94,93,104,102,100,99,106,100,96,117,97,100,117,85,105,79,101,113,98,94,93,93,99,97,76,101,96,101,106,101,83,111,108,100,95,104,94,105,103,105,99,94,108,104,104,98,103,93,93,87,112,104,98,114,98,102,104,103,112,98,93,113,103,93,92,112,104,89,97,102,104,103,116,97,108,106,94,105,109,111,93,98,105,105,95,103,105,102,109,102,98,92,102,93,99,96,106,103,98,96,99,106,101,107,96,98,94,108,128,98,98,103,94,103,94,113,99,105,98,100,111,104,107,104,103,93,98,99,103,102,106,107,109,100,102,87,104,96,95,89,106,94,98,96,84,93,103,90,117,88,99,109,88,92,95,107,87,87,87,114,77,92,95,90,101,103,93,89,93,106,95,106,103,98,96,100,103,103,117,97,98,103,104,95,92,103,112,99,101,108,82, +697.16058,99,105,103,94,87,96,97,108,74,99,76,91,110,105,97,95,87,91,93,102,97,98,103,98,108,97,100,100,100,101,108,76,103,101,99,108,100,104,91,95,96,98,106,95,109,103,92,105,105,82,97,97,102,108,95,97,92,94,100,94,104,90,87,86,106,109,93,94,94,84,106,113,97,97,102,100,98,103,98,98,107,101,103,96,104,84,122,85,92,86,103,113,101,94,93,93,94,102,88,108,102,101,103,96,91,99,106,100,97,105,91,102,95,92,98,96,100,109,103,90,104,95,100,105,105,99,96,98,99,94,95,110,94,97,109,99,91,107,97,103,86,112,106,105,91,106,98,97,104,99,99,100,105,98,102,106,92,92,98,104,111,97,96,86,109,99,100,108,108,93,95,95,95,96,107,102,105,77,72,85,89,103,89,93,102,90,89,84,96,105,98,94,108,103,89,101,101,98,99,100,98,105,101,96,99,100,100,113,113,102,91,99,97,105,96,97,123,99,106,92,102,105,94,95,95,98,103,102,99,92,94,106,98,89,78,99,93,102,95,93,105,105,105,108,84,100,110,99,91,97,71,95,100,99,104,108,107,102,104,95,91,104,92,104,87,113,100,96,93,97,87,91,96,91,104,97,103,102,86,101,105,102,109,101,104,95,96,109,97,108,97,97,89,102,93,99,98,96,103,99,104,92,97,98,94,104,86,112,110,105,101,101,76,97,98,101,90,102,102,97,103,113,101,104,101,93,101,81,99,100,100,90,101,93,96,101,92,92,108,106,94,100,102,85,102,91,98,103,92,101,97,101,99,102,99,109,96,106,101,109,106,99,101,127,95,101,93,98,91,104,103,87,98,109,98,92,96,88,108,75,111,97,98,105,95,94,90,99,103,97,105,91,107,105,99,93,104,102,100,108,92,112,107,95,100,92,96,115,100,94,102,61,92,100,68,91,95,95,105,100,101,90,96,103,102,89,93,94,85,120,88,99,101,94,97,87,128,118,88,96,107,99,92,99,89,99,88,88,101,94,90,100,97,83,110,101,95,102,101,96,104,99,97,94,99,100,98,118,89,78,106,95,110,105,106,95,103,107,100,109,103,108,103,91,97,106,108,109,90,97,96,95,93,109,94,100,92,106,101,95,93,102,92,90,114,101,78,105,101,95,106,101,97,104,102,124,98,95,106,97,94,108,101,105,99,104,109,99,106,94,92,104,97,105,109,84,94,95,106,99,100,108,71,94,100,95,94,83,103,106,106,96,106,98,94,106,111,99,97,99,97,97,96,99,109,94,92,90,104,90,101,128,109,109,112,102,102,95,106,105,100,106,121,94,104,92,105,97,97,120,84,99,98,103,106,101,99,108,109,101,91,103,100,98,95,102,99,83,95,101,86,85,105,103,83,102,103,97,95,112,102,91,105,107,104,101,101,104,100,100,108,104,105,102,85,104,96,98,108,96,94,98,114,94,92,85,93,94,109,110,119,97,100,107,100,101,112,91,111,91,111,110,104,107,91,95,98,88,110,96,104,99,98,89,108,74,105,94,97,104,101,100,96,90,102,92,115,103,110,96,103,112,105,100,104,102,109,95,115,93,96,92,84,100,102,120,93,98,97,105,102,86,102,97,96,94,97,108,91,97,95,102,105,100,91,96,85,104,93,105,102,107,92,90,101,97,105,92,104,99,90,97,117,100,106,97,86,92,103,99,99,93,109,98,98,106,109,104,97,101,97,94,95,93,91,106,95,104,99,93,109,91,80,106,97,105,97,103,109,98,86,107,104,99,90,82,97,97,114,113,99,98,99,103,93,116,100,103,111,96,98,93,96,94,96,103,89,101,95,104,122,94,110,91,108,96,105,99,117,101,96,97,105,102,95,101,96,101,100,88,104,104,105,105,91,106,115,110,98,102,101,88,94,80,88,98,103,97,99,96,90,66,100,102,103,95,95,99,88,111,101,102,103,104,97,96,89,103,105,104,109,107,97,110,100,96,109,97,97,106,92,97,89,102,101,97,101,118,100,105,96,106,86,97,94,86,111,108,104,87,99,101,108,88,105,109,88,97,92,92,104,99,104,97,103,102,108,96,90,99,101,96,101,95,98,106,102,88,97,88,95,94,94,112,94,90,90,95,117,94,117,106,94,99,96,108,82,105,100,107,91,100,95,108,100,99,105,96,98,103,101,85,94,99,102,95,103,83,102,96,95,100,103,97,91,98,104,102,101,100,104,95,84,119,104,93,101,94,105,99,93,91,93,98,80,88,97,101,106,109,94,98,102,86,111,90,100,104,97,91,95,94,92,109,110,102,93,89,101,106,101,109,91,95,90,101,113,109,107,93,100,99,106,97,125,94,99,106,94,109,91,113,100,94,106,95,91,104,96,102,84,90,90,106,98,101,92,99,104,102,105,108,99,103,86,101,97,100,109,91,107,112,102,90,86,103,101,90,97,87,101,96,88,84,109,101,80,105,105,100,99,117,91,96,88,83,97,100,100,112,102,99,102,106,97,105,102,95,108,103,89,108,98,101,109,97,99,96,89,104,102,102,92,100,92,108,96,108,108,102,103,111,113,96,107,105,84,101,100,91,100,102,94,107,109,83,104,91,111,105,111,100,130,93,98,102,105,125,124,99,90,102,95,90,96,100,101,106,104,96,89,91,103,100,96,106,102,104,93,97,111,110,97,88,105,91,106,99,107,103,101,104,101,87,104,91,98,104,98,108,96,103,102,95,102,89,124,91,101,98,103,102,96,89,104,92,112,91,104,99,102,93,95,104,90,106,108,107,95,88,102,103,97,113,98,85,81,101,104,100,95,93,106,108,102,105,104,103,90,99,97,103,103,104,93,100,94,110,100,106,106,101,91,102,105,91,101,106,92,105,99,109,119,116,96,111,94,103,107,104,104,102,107,109,100,97,99,102,105,99,99,98,100,96,100,108,93,89,104,102,98,96,95,95,109,101,108,98,99,90,113,103,92,101,101,109,107,94,110,95,83,107,98,106,103,97,100,99,101,113,111,96,99,105,109,95,90,93,99,100,105,110,102,103,103,99,105,107,115,98,94,98,95,109,88,113,98,108,114,104,109,101,97,91,107,97,108,104,105,104,103,96,108,109,104,98,97,107,94,101,84,89,105,109,104,96,96,106,91,81,95,96,102,93,102,111,109,107,86,113,104,99,88,107,98,109,87,105,105,83,103,97,96,109,96,99,87,103,70,105,101,103,105,94,101,103,105,105,104,100,95,104,87,99,91,98,87,100,100,107,99,103,113,109,108,98,94,111,111,87,87,103,107,106,102,95,78,97,108,104,105,99,96,102,104,98,95,101,98,95,118,106,95,89,95,100,110,97,96,104,95,102,60,99,96,103,101,100,91,92,104,103,90,89,104,110,101,102,102,108,95,88,71,101,111,93,110,94,106,113,94,103,103,106,100,108,101,104,111,102,96,110,91,96,97,106,102,102,102,105,107,109,91,99,95,105,105,103,101,107,104,119,90,102,107,112,104,106,98,92,101,103,88,106,100,106,100,100,102,100,113,106,89,105,98,111,89,104,103,108,118,81,90,104,106,100,103,107,106,95,106,88,82,111,108,105,99,104,98,113,88,90,102,101,104,96,104,104,96,93,94,109,101,104,99,99,104,105,85,106,92,99,92,113,101,99,104,99,105,101,113,104,102,104,97,96,115,101,103,99,123,93,102,109,104,111,108,95,113,88,94,99,112,101,111,97,105,99,99,105,105,98,103,101,101,109,105,101,112,97,106,105,106,99,106,103,95,85,98,116,97,95,101,102,106,102,88,101,98,87,102,98,96,102,100,109,118,112,97,90,102,102,94,94,102,105,105,100,102,92,102,96,111,104,105,89,101,94,101,99,94,95,111,93,110,96,109,94,96,101,96,110,95,95,107,99,138,84,97,100,104,112,112,92,96,96,101,92,106,99,99,122,97,115,106,102,110,102,79,103,99,101,92,103,110,99,90,100,97,92,106,95,101,107,103,91,97,92,106,105,113,93,109,96,96,85,111,95,109,94,104,101,92,106,104,107,107,99,114,100,102,101,100,86,94,103,108,96,105,95,85,98,99,100,105,99,105,105,96,108,122,97,105,97,103,104,110,100,100,94,95,96,91,103,105,125,96,95,97,99,95,102,96,92,98,103,97,87,100,105,101,104,107,101,79,109,92,105,112,110,96,102,109,109,107,104,101,105,103,96,75,100,103,98,103,100,109,117,105,95,96,97,109,100,107,102,98,96,99,94,110,108,104,101,92,98,77,107,100,100,105,103,110,106,111,96,105,102,96,93,87,89,101,108,92,100,101,101,96,107,104,96,105,105,98,94,92,102,101,101,91,100,105,97,94,90,98,98,106,92,113,110,102,91,122,105,99,111,94,97,96,95,103,105,97,94,98,93,94,92,107,94,104,93,101,100,100,94,107,112,111,108,102,105,103,99,86,94,90,80,110,105,99,102,99,103,95,95,102,102,96,111,95,100,106,106,97,102,102,96,103,90,97,90,98,88,100,91,105,102,96,100,96,94,96,98,105,95,108,99,96,97,99,97,107,126,80,102,91,96,102,96,104,95,121,113,96,113,94,95,92,96,110,89,109,117,105,98,98,74,105,104,110,102,87,98,95,108,94,99,101,101,101,90,94,97,104,98,87,89,100,107,101,100,111,100,99,96,93,98,102,104,115,93,92,107,92,97,102,97,90,73,99,99,103,92,104,94,105,97,94,84,98,84,101,96,95,101,93,97,108,102,112,92,105,95,105,105,99,104,97,101,109,89,86,111,83,105,104,100,100,102,96,104,110,96,95,90,112,106,95,100,98,106,90,105,86,96,107,99,99,108,108,102,95,100,99,87,80,96,122,100,98,91,110,96,100,106,101,87, +697.30194,114,106,100,107,102,101,105,90,104,107,90,93,110,103,109,112,105,104,104,81,99,98,90,100,103,98,100,105,105,87,107,87,104,112,110,106,87,95,103,104,99,98,98,101,101,115,100,99,106,108,96,97,59,97,103,93,111,105,108,90,95,87,109,89,91,109,97,97,98,95,100,98,89,109,97,102,90,95,129,93,96,92,92,93,101,101,105,100,87,105,105,101,88,113,103,102,73,98,97,98,108,91,96,105,96,130,88,104,101,103,95,96,97,98,98,102,98,96,112,106,106,109,103,110,111,105,94,96,106,102,101,105,87,94,100,101,106,107,96,81,100,107,93,105,94,96,100,89,90,105,106,97,101,108,95,78,106,86,108,106,109,102,106,117,85,104,95,97,107,87,103,99,109,88,81,87,105,98,105,111,94,101,97,105,109,107,95,89,100,94,102,101,101,100,79,105,96,104,107,97,82,95,97,105,98,114,94,110,109,100,99,104,104,101,99,99,112,113,99,99,94,82,107,92,96,106,106,100,107,104,105,97,97,101,105,96,98,105,103,107,96,98,101,111,98,100,99,106,105,106,105,104,97,104,106,116,98,108,91,106,97,92,108,112,97,98,97,100,102,96,94,111,96,105,106,120,101,104,98,113,110,95,99,97,85,95,95,98,106,105,112,94,103,102,97,100,107,117,93,103,105,113,99,99,94,101,100,104,101,108,97,114,88,102,98,98,106,120,103,96,92,92,101,99,113,80,105,97,106,103,109,117,101,104,99,105,99,87,91,96,92,104,91,107,92,108,103,98,94,107,100,106,84,105,100,106,108,88,98,95,100,95,109,96,111,90,100,117,100,106,102,98,105,109,100,97,98,103,107,86,124,101,92,107,99,95,99,101,99,103,100,101,101,98,94,99,95,104,95,100,95,87,80,96,87,92,97,100,103,100,100,102,92,105,87,100,88,101,101,106,99,97,111,101,87,97,100,103,100,102,100,103,96,106,105,110,103,104,110,111,93,98,122,101,93,95,105,88,101,101,104,102,96,105,100,113,109,108,112,102,98,105,105,99,120,85,100,89,105,97,109,108,100,115,95,93,94,107,102,96,101,100,92,102,108,105,90,102,88,98,105,95,106,103,92,98,97,100,108,96,110,99,98,95,96,101,92,100,101,113,92,103,106,105,92,99,122,94,93,94,105,100,105,97,98,104,105,102,99,98,99,115,99,101,103,103,104,104,98,107,109,101,94,87,111,105,94,102,94,107,103,109,102,102,102,100,105,95,96,82,99,109,103,113,102,93,97,96,108,100,95,93,98,100,94,99,109,104,102,94,92,91,106,101,105,96,106,97,105,97,105,99,91,96,103,98,102,94,106,98,98,101,104,92,90,104,97,109,100,100,94,104,98,106,92,95,109,91,107,105,108,99,106,78,102,84,92,95,103,111,109,101,112,105,104,104,96,97,102,103,97,82,111,89,110,104,97,98,95,110,96,92,100,105,87,108,100,120,102,91,110,119,97,122,98,95,101,113,98,90,92,105,101,106,101,99,105,94,104,102,93,111,100,98,90,88,105,95,114,103,101,107,97,106,112,102,100,115,114,97,94,91,100,95,96,104,104,75,102,102,91,94,96,104,100,95,97,103,102,106,109,106,109,98,97,99,102,106,104,114,88,91,90,99,103,97,101,105,109,97,104,105,99,95,99,102,113,105,100,102,93,95,92,96,101,108,97,99,99,95,105,106,101,73,103,75,114,98,108,95,95,97,103,101,98,105,97,99,93,100,101,106,113,102,105,102,85,104,106,93,99,105,97,110,103,94,98,103,114,98,95,106,116,94,104,98,100,99,103,95,101,100,114,103,101,103,105,98,97,104,97,104,101,102,114,77,96,91,106,98,105,109,102,99,96,104,101,86,97,109,101,105,105,74,96,85,97,95,97,98,105,99,99,109,93,107,105,96,93,101,101,91,96,106,104,103,103,106,98,92,101,107,117,100,94,87,107,105,93,111,124,100,97,105,106,106,104,108,108,97,106,109,95,111,105,101,105,84,90,106,109,100,99,114,104,110,93,107,109,98,104,101,105,114,103,85,93,97,109,104,115,106,110,95,85,99,97,79,96,100,102,87,94,101,102,92,95,108,91,111,99,106,105,97,98,105,102,103,93,101,98,94,100,94,99,113,100,104,94,91,100,90,98,96,104,97,102,106,109,96,105,93,100,95,83,109,102,99,98,96,93,99,102,87,99,102,100,64,100,114,106,98,96,101,91,98,104,103,105,114,92,87,102,101,101,98,95,106,97,111,96,106,103,112,90,106,110,99,93,101,100,105,109,84,96,96,91,80,99,92,100,91,88,101,116,100,94,116,104,98,110,103,105,107,99,98,97,108,103,94,97,100,104,113,102,95,96,98,107,96,99,106,102,105,102,96,98,121,113,99,116,115,108,95,106,107,98,109,95,103,101,99,105,118,109,95,105,106,95,103,101,89,97,99,98,96,101,94,108,109,105,95,79,105,98,104,93,106,100,106,108,106,108,82,104,108,98,94,103,100,100,102,101,108,99,92,96,79,101,115,104,100,108,97,92,110,93,97,101,96,103,107,98,116,92,105,92,94,106,85,100,99,114,77,107,100,101,100,108,96,105,88,103,95,96,104,106,98,103,94,96,100,92,91,97,91,104,111,99,97,104,108,106,116,106,109,109,103,100,108,106,101,101,94,107,81,94,89,106,104,98,107,103,102,130,94,102,109,98,103,93,102,103,101,79,105,100,102,97,112,130,95,88,100,97,91,114,97,90,103,99,105,94,109,108,100,109,113,106,103,111,99,100,100,94,101,108,101,96,105,98,100,109,111,109,105,109,96,99,109,122,90,106,108,100,111,100,95,111,112,118,98,107,90,96,84,108,104,108,108,96,112,113,96,104,100,96,102,108,94,98,106,94,111,95,104,113,97,99,100,93,100,92,114,98,101,85,105,103,112,111,109,104,104,101,107,99,101,107,109,113,105,105,71,94,122,108,101,121,91,96,102,100,113,121,109,86,109,91,91,109,101,103,95,103,98,94,98,106,88,105,110,108,93,99,95,106,104,101,113,116,104,103,100,105,93,113,110,103,98,98,90,103,108,119,92,95,111,92,105,97,100,112,90,96,115,99,103,100,103,95,93,104,92,95,121,96,98,87,104,106,105,105,102,105,104,110,95,101,105,106,103,106,92,60,106,116,95,88,99,108,102,109,97,95,96,115,100,72,101,103,107,81,116,109,104,99,104,104,104,99,91,105,101,91,101,101,95,86,105,96,103,97,107,103,102,104,106,95,97,93,122,92,96,99,95,95,89,83,102,66,88,112,98,100,97,114,109,96,107,94,105,99,99,95,95,102,98,96,93,102,101,101,102,104,114,95,109,112,106,94,100,102,108,101,107,100,106,94,102,96,98,107,95,100,102,104,103,111,94,104,96,112,94,108,96,107,98,83,102,93,101,92,104,110,101,106,99,90,90,100,111,98,99,106,106,82,102,118,97,92,109,87,105,102,101,92,104,106,108,96,121,101,98,124,103,91,110,103,110,114,100,98,92,101,111,98,99,107,90,112,98,102,99,103,109,100,101,114,108,97,102,104,97,105,94,106,105,105,104,106,101,115,111,97,102,100,96,112,99,102,102,106,117,96,97,104,102,90,105,98,90,106,95,91,103,96,99,117,94,104,104,97,107,86,80,110,124,103,99,107,106,109,97,112,96,101,117,107,102,95,107,94,106,116,109,112,94,102,103,114,100,99,91,107,101,101,97,100,112,99,116,109,98,102,105,103,105,101,94,114,106,105,105,103,95,112,92,99,105,100,109,99,112,96,110,89,116,72,107,121,109,96,100,115,67,104,91,96,91,110,98,116,91,100,97,101,97,106,94,113,87,101,87,104,104,100,105,106,107,98,96,105,100,101,99,117,96,111,102,93,98,116,97,110,109,107,90,96,101,104,106,102,113,109,89,95,100,97,96,102,92,94,96,106,96,117,99,106,92,101,104,88,102,107,107,95,97,91,100,101,105,101,113,104,110,96,106,96,96,103,93,93,94,92,109,105,106,96,98,101,117,101,116,97,100,104,94,92,107,95,101,94,117,102,116,98,100,104,102,92,112,101,92,97,107,96,102,96,105,91,73,102,106,102,105,114,104,94,88,94,102,102,98,106,95,89,99,95,103,100,101,99,113,95,93,102,103,110,99,107,98,95,90,98,102,93,114,95,102,99,103,109,107,103,105,98,99,96,97,97,103,111,86,95,107,104,97,96,104,106,115,89,97,107,100,101,101,94,104,96,112,101,106,113,103,98,87,97,103,93,97,108,102,88,93,97,109,103,92,112,103,109,105,102,109,106,109,103,105,103,102,94,82,115,100,108,113,115,105,110,105,102,109,98,96,102,104,98,97,108,99,91,101,96,109,97,98,111,103,96,103,105,103,99,99,94,98,106,94,107,90,99,113,108,109,114,110,109,104,99,105,95,97,110,96,113,113,110,88,112,107,104,100,108,102,97,95,114,113,105,103,99,96,87,104,93,97,104,100,109,98,106,102,109,96,106,104,95,102,99,83,91,102,97,99,99,95,91,95,106,105,99,101,98,95,106,114,109,105,104,100,115,107,114,101,100,105,97,107,105,112,99,100,96,100,100,93,98,101,93,94,108,104,87,103,92,110,94,103,109,96,108,102,113,95,102,92,106,105,96,95,104,117,108,73,104,86,102,101,94,84,101,112,99,105,100,96,95,98,86,101,106,97,111,102,102,104,95,99,99,88,90,97,95,104,104,86,94,103,108,102,89,93,120,94,100,104,103,105,106,96,72,100,89,95,99,107,111,104,105,98,105,99,102,108,101,112,116,90,104,99,99,113,100,102,100,103,94,96, +697.44324,99,109,110,108,101,103,91,102,103,102,100,85,83,98,113,98,100,104,100,110,105,104,100,104,109,95,104,99,98,116,115,92,85,98,108,112,97,96,91,102,81,110,98,94,102,113,104,106,111,110,104,105,87,90,112,94,65,105,79,97,107,96,108,107,102,101,89,100,100,104,103,97,95,101,98,104,101,91,87,104,87,99,91,100,106,95,101,104,103,91,98,102,122,100,105,98,96,81,105,82,91,84,96,89,106,99,97,104,98,78,94,92,104,99,99,101,112,96,99,96,102,105,86,109,97,101,120,101,99,101,97,109,102,102,97,97,92,103,94,97,102,100,100,88,88,109,108,99,93,97,106,99,93,92,101,99,87,92,101,109,98,105,104,93,100,105,78,113,111,93,90,99,100,102,107,98,104,111,98,99,111,103,104,107,81,103,92,93,101,100,100,94,111,95,103,85,111,84,84,109,98,96,93,112,103,101,104,107,115,104,92,102,104,113,99,97,96,104,99,95,106,103,102,100,94,104,104,94,105,100,112,103,67,100,104,100,105,109,103,99,95,91,103,110,96,103,94,103,91,97,103,88,105,114,106,110,99,97,101,96,87,101,93,101,99,102,98,105,94,83,99,97,95,104,113,96,105,99,107,98,109,97,108,103,104,108,98,103,105,96,99,92,113,105,110,109,104,104,103,121,93,107,114,112,107,109,96,95,98,76,89,111,103,106,87,97,104,100,109,96,111,92,113,93,96,95,97,92,103,104,102,86,101,109,95,98,97,96,108,99,103,96,97,100,94,109,108,106,93,131,108,91,105,105,93,100,116,95,99,93,95,105,104,102,95,92,101,98,98,112,96,103,99,100,101,103,114,100,97,110,106,94,88,116,112,94,105,87,93,113,103,97,80,102,92,105,87,94,112,105,100,101,92,100,89,105,95,113,104,108,101,101,96,103,95,102,116,100,106,106,95,108,108,94,91,91,106,99,100,100,90,92,102,101,88,87,100,109,91,95,96,98,101,96,87,84,106,94,103,110,105,114,97,101,98,96,97,103,109,109,89,97,94,107,111,111,103,95,102,94,103,111,91,90,101,101,106,97,98,88,89,97,123,109,98,100,116,94,106,105,91,107,112,104,87,101,113,104,117,82,108,93,96,102,93,107,80,97,101,97,98,109,98,101,109,93,80,108,107,98,98,108,108,99,92,98,105,100,94,99,96,100,99,93,84,95,100,95,103,117,95,96,99,94,107,104,100,100,103,108,103,106,102,91,123,85,88,103,83,104,101,105,93,104,101,98,109,100,103,99,93,100,101,94,93,91,98,93,95,111,99,102,113,98,111,90,96,99,111,96,111,106,94,100,86,106,98,104,93,105,105,94,105,109,96,93,95,100,96,104,129,110,99,128,127,94,107,95,98,73,92,104,92,108,109,104,94,100,106,112,85,96,83,106,99,109,95,108,105,102,113,104,76,98,95,92,105,99,95,113,102,109,94,113,106,110,88,108,106,117,88,104,106,92,87,105,91,89,106,109,110,104,107,99,114,91,103,93,110,98,98,119,108,100,94,104,98,99,94,81,102,96,92,109,94,106,107,100,107,102,99,63,92,101,108,100,108,92,106,100,91,96,100,98,90,94,101,97,108,95,110,99,105,102,98,96,107,91,100,102,88,96,94,103,97,99,95,90,101,99,114,92,104,107,98,109,104,97,99,109,113,93,103,98,100,103,103,97,101,112,95,98,93,92,94,90,93,92,107,87,106,97,102,113,95,107,93,88,84,84,107,106,99,100,87,108,94,109,91,99,110,111,94,102,101,113,105,104,103,102,95,138,104,96,99,99,106,104,96,96,100,99,102,102,115,99,110,96,90,105,96,103,101,98,96,106,100,97,96,92,90,94,96,113,95,98,102,108,105,91,94,104,100,95,99,103,94,87,99,97,105,100,93,111,102,103,104,125,109,97,100,101,107,95,97,99,121,107,111,95,95,108,96,108,99,99,99,107,130,101,113,108,108,88,101,97,89,100,103,103,103,102,100,109,116,95,98,98,110,111,106,100,115,102,100,98,104,102,106,94,103,94,109,99,96,101,99,64,90,107,107,108,102,110,91,92,102,108,110,105,86,102,111,93,106,96,93,103,103,95,85,92,104,102,103,105,125,99,102,100,106,109,109,98,103,110,119,98,102,104,97,94,99,97,108,82,86,99,103,102,95,103,95,99,100,103,104,107,87,91,106,100,103,115,100,97,100,106,101,95,107,101,106,100,102,94,99,98,114,98,99,92,100,94,112,96,100,90,101,101,110,100,96,98,95,106,77,100,97,90,99,97,97,100,103,94,106,103,94,109,94,100,103,99,102,102,105,94,99,117,105,105,96,89,91,111,102,94,109,105,94,92,91,107,99,112,97,102,108,96,97,104,105,104,101,112,103,98,88,104,94,114,103,112,132,99,91,96,89,89,111,111,101,101,109,103,90,91,108,101,98,117,109,89,103,110,100,87,104,103,105,105,108,87,90,102,96,100,103,105,102,108,101,86,109,110,104,101,94,99,87,99,97,97,101,104,95,107,112,100,101,108,99,93,102,90,91,91,108,102,113,98,103,106,99,87,111,97,99,95,104,98,113,96,97,90,102,93,91,102,101,87,102,97,102,99,104,100,111,96,90,97,95,90,98,93,96,96,110,92,104,111,94,99,95,105,98,99,102,108,101,96,106,106,90,98,95,100,106,112,104,103,110,98,92,99,101,97,103,105,99,104,90,99,103,108,110,99,93,93,94,94,100,85,101,107,106,103,102,114,89,108,106,105,96,98,100,95,117,98,114,101,99,100,91,96,97,110,102,100,86,101,106,81,100,94,102,100,101,102,108,88,101,97,101,106,106,102,100,102,100,89,101,111,94,101,94,109,106,113,96,92,103,103,115,92,94,102,106,95,103,106,101,112,97,100,100,108,92,101,101,104,88,96,101,106,104,102,94,114,102,105,101,96,97,105,123,99,98,103,107,102,93,81,104,101,98,101,98,99,104,87,92,101,97,105,111,87,104,97,99,106,102,104,110,100,103,104,97,104,91,100,104,94,103,97,104,95,90,104,98,110,109,99,102,98,119,87,92,108,110,101,94,101,113,99,97,96,96,99,130,89,97,99,104,91,90,106,99,104,94,97,105,91,99,108,102,89,109,104,103,98,90,95,97,101,95,99,105,114,103,95,111,87,85,100,102,101,101,109,107,104,100,100,99,99,94,99,99,100,108,100,102,107,91,94,85,97,109,100,96,104,96,101,106,95,93,100,92,109,100,100,94,101,104,105,94,104,82,104,120,89,88,102,124,93,108,94,109,106,99,106,98,102,103,105,103,105,115,114,97,94,113,99,98,104,76,92,100,97,71,102,90,103,94,105,88,92,105,104,88,95,106,109,112,107,136,96,114,95,96,93,88,108,106,95,106,88,96,94,95,104,98,92,106,112,89,96,102,75,101,106,98,90,101,79,103,100,95,99,102,108,93,108,110,100,98,107,102,95,101,109,95,105,104,109,91,102,100,93,101,107,83,92,104,99,91,107,104,109,110,96,102,85,106,95,100,91,108,95,102,106,110,105,85,105,98,101,98,94,95,97,100,95,87,97,105,98,103,95,98,94,102,101,99,94,102,108,103,103,102,100,96,104,102,101,95,126,95,102,109,114,84,108,95,101,85,96,121,99,103,93,104,102,104,86,98,92,96,97,88,88,103,95,108,109,99,93,103,96,96,105,93,97,97,101,96,88,109,100,88,89,98,99,113,93,96,103,116,88,90,85,90,117,113,101,100,102,94,104,109,101,102,90,98,100,95,98,107,107,95,109,89,94,108,105,100,97,110,95,91,98,111,109,100,107,95,97,90,98,93,98,93,96,113,103,106,80,92,99,103,102,111,101,98,88,102,87,109,99,103,88,116,103,102,103,100,98,106,94,98,105,104,99,97,87,99,104,83,96,97,109,96,98,113,98,108,102,99,88,97,103,100,102,96,102,96,97,109,102,108,101,91,103,96,68,104,95,100,91,103,94,93,108,105,114,105,96,99,84,104,99,108,96,95,108,94,102,94,102,87,104,99,99,93,102,90,83,104,107,97,96,105,95,108,72,95,93,94,98,100,85,94,98,106,101,98,98,92,110,104,92,95,92,102,115,122,96,96,100,116,94,111,97,103,107,94,104,100,100,105,87,103,109,116,128,100,109,98,111,104,97,98,106,93,93,89,107,94,107,104,99,101,76,97,106,98,87,103,104,97,94,102,104,96,92,104,97,91,103,111,102,100,97,102,99,97,104,96,98,106,92,113,95,112,100,99,98,98,107,99,90,95,102,112,105,97,91,101,123,101,98,103,103,100,96,98,95,101,105,95,100,93,97,101,91,115,107,94,94,102,102,111,102,92,112,92,95,96,103,104,106,93,110,90,94,98,94,98,95,90,122,86,96,121,106,100,101,106,96,91,99,106,97,96,110,93,103,105,106,108,108,95,95,106,99,110,98,106,101,97,102,86,96,97,107,99,104,95,84,98,105,95,93,109,99,98,109,103,91,96,117,100,103,94,103,104,102,91,112,91,80,99,99,111,95,124,93,99,95,98,109,94,91,100,101,90,109,103,88,103,107,101,94,109,96,91,97,98,105,99,95,109,94,109,97,111,102,104,101,98,94,108,104,91,93,100,102,98,113,105,94,106,98,106,102,112,127,92,116,94,93,96,115,97,97,96,104,103,91,96,104,105,86,120,91,89,113,101,93,111,89,109,103,97,98,111,97,108,107,103,86,91,89,101,103,87,103,115,93,104,91,90,98,108,105,108,117,102,99,83,108,96,84,102,106,85,99,116,106,98,105,96,99,101,93,97,114,92,103,108,117,81,106,101,89,97,93,96,91, +697.58459,95,95,106,102,97,94,106,117,107,102,91,95,104,108,107,105,96,102,113,78,100,103,92,84,95,97,92,101,102,107,100,97,96,87,101,98,96,89,95,100,100,116,86,93,103,107,111,96,97,102,95,103,114,96,100,93,97,87,100,90,110,97,87,113,91,103,96,100,96,97,101,90,94,96,111,82,105,95,109,103,88,112,82,97,99,94,108,109,97,100,103,103,100,108,100,99,97,106,94,85,99,98,94,103,108,98,97,101,100,96,106,86,106,107,95,103,93,110,94,105,98,98,130,104,106,103,105,105,114,109,96,100,103,99,100,99,105,100,95,101,92,104,95,90,97,113,93,101,103,90,114,94,101,85,93,109,93,112,97,76,87,95,98,108,102,94,92,103,101,94,105,104,97,104,103,84,106,95,100,98,109,106,100,105,92,101,105,98,95,109,94,91,98,104,97,90,95,97,102,94,96,119,94,100,104,123,100,101,98,109,98,96,97,105,94,102,78,96,84,99,132,96,92,91,95,97,96,102,95,103,94,101,102,103,92,101,94,109,101,100,105,100,106,103,91,79,110,110,98,98,104,101,69,106,107,100,92,113,101,99,106,75,90,101,99,104,97,98,96,89,108,84,97,108,110,102,93,107,92,105,122,100,102,95,88,96,93,97,101,103,104,105,106,101,109,102,100,89,101,113,110,106,104,111,97,90,104,104,98,89,97,107,107,107,101,101,102,94,101,107,98,93,105,93,104,103,105,91,84,99,104,96,96,98,97,97,101,97,102,113,104,107,110,97,99,98,104,96,105,94,99,114,99,105,106,99,111,98,98,94,101,103,97,84,103,108,106,110,106,95,102,89,104,109,102,91,100,95,102,96,101,104,106,102,109,104,86,108,97,99,97,81,95,97,106,86,96,98,92,104,94,98,101,101,95,92,101,95,108,104,80,90,112,105,97,98,101,86,108,114,94,81,95,89,98,84,100,99,99,95,112,104,95,98,109,95,103,101,92,100,93,106,103,99,105,103,101,81,91,112,107,105,95,103,109,106,96,103,98,78,113,94,95,110,108,105,111,91,96,107,106,108,114,90,103,91,106,100,86,106,107,90,108,100,90,94,97,106,106,102,106,118,93,93,102,104,88,116,110,97,91,112,103,112,100,97,93,94,105,96,93,95,95,105,90,99,108,116,92,101,108,102,96,109,100,106,101,96,85,97,97,105,95,94,90,96,95,90,106,111,115,79,96,111,95,96,116,96,102,101,103,101,129,106,102,95,106,98,101,97,98,90,96,113,91,105,101,105,104,110,103,106,95,94,108,104,109,98,110,103,99,103,113,91,102,90,103,114,109,107,98,116,92,84,110,96,92,94,103,99,95,100,115,97,103,99,97,107,93,98,90,96,104,102,107,102,108,106,105,94,105,94,92,98,109,98,95,100,106,105,95,87,116,102,95,108,102,78,91,91,99,98,105,108,92,90,105,108,88,101,100,90,96,109,94,99,101,105,109,104,103,115,113,89,101,102,103,105,113,83,100,104,101,95,93,105,92,91,101,93,103,110,108,99,106,98,87,106,92,102,101,118,101,95,101,105,99,108,104,97,104,100,83,99,99,107,95,99,108,94,102,98,98,101,103,94,103,93,99,107,112,103,100,101,95,87,117,101,94,106,96,106,102,104,94,92,109,93,108,90,105,94,103,104,97,93,104,108,108,98,105,97,102,95,92,96,105,89,94,85,91,105,96,103,102,100,93,102,105,109,92,110,110,91,87,88,104,99,96,83,103,117,122,101,100,102,101,98,101,108,98,99,110,106,108,97,101,105,97,108,96,110,112,101,105,104,102,104,105,104,95,96,97,95,119,101,93,101,129,98,94,96,105,109,100,89,109,101,96,100,97,98,102,94,94,105,94,101,102,98,100,111,102,104,95,101,87,98,99,90,92,100,86,96,83,106,101,71,87,113,80,108,98,100,111,99,82,105,115,105,95,99,100,106,100,96,107,103,101,97,95,113,85,95,102,101,95,105,91,103,108,113,104,106,105,101,106,95,103,109,107,102,101,95,98,95,97,99,102,105,95,104,104,104,103,106,94,78,86,107,103,91,106,99,107,95,93,108,70,94,99,105,101,98,105,102,101,106,101,100,98,99,107,111,95,96,98,92,88,104,96,95,99,99,96,101,92,96,105,99,92,99,93,101,111,94,101,103,92,101,83,101,97,99,113,99,93,104,94,95,122,112,113,106,93,92,92,116,98,98,99,93,102,106,103,95,109,96,98,101,95,104,87,90,99,101,109,111,98,95,95,85,105,104,104,114,104,99,106,92,107,95,100,101,100,97,106,74,90,89,92,108,101,101,101,116,102,98,108,98,95,100,98,92,99,118,112,98,111,109,107,100,108,103,92,95,105,95,93,111,103,100,110,101,103,100,94,116,111,98,108,96,102,113,95,106,109,109,96,103,112,94,103,96,105,98,95,94,116,103,109,94,94,103,105,94,94,112,109,113,107,85,87,100,97,106,93,109,94,95,102,107,93,106,105,102,101,105,96,113,106,104,98,98,106,107,102,109,105,104,98,98,102,100,104,108,103,91,91,104,100,86,105,101,96,98,100,97,111,99,97,98,113,104,91,89,98,121,98,101,106,101,109,93,94,94,107,96,106,100,96,100,111,98,96,108,94,95,108,105,100,101,101,102,96,101,93,88,104,108,94,101,101,96,105,91,92,99,97,87,99,117,112,108,109,109,110,95,111,98,104,100,90,92,92,95,92,100,102,100,94,102,97,96,94,106,92,96,100,82,98,103,92,108,99,93,99,95,109,103,99,95,105,88,98,101,102,111,89,98,101,102,79,95,102,100,99,113,97,108,100,103,91,99,121,96,105,113,109,112,98,100,81,109,98,92,100,91,107,106,101,105,86,103,97,101,97,87,104,100,95,104,87,89,109,95,102,103,100,93,104,108,100,99,97,100,110,98,104,112,101,102,98,109,101,101,120,103,104,95,94,99,92,105,116,106,97,97,92,94,100,91,98,102,103,100,103,95,113,98,105,103,103,94,105,103,103,98,106,92,91,103,112,121,102,98,95,103,98,91,95,107,119,113,113,95,111,95,106,107,110,91,112,93,100,102,95,91,102,101,113,109,97,105,91,106,91,105,86,91,93,102,110,99,109,99,99,99,114,100,99,105,88,115,97,99,107,107,114,99,99,98,99,115,94,94,83,102,94,99,98,101,98,99,93,97,100,90,120,99,104,113,99,102,112,98,95,108,94,103,95,89,105,108,102,100,93,99,86,96,113,96,101,101,90,96,100,96,101,93,91,80,97,105,106,107,97,90,101,92,84,112,94,88,95,105,86,112,88,102,100,104,104,96,99,101,101,98,90,124,97,95,89,82,115,109,108,112,106,94,101,92,95,112,91,92,93,101,105,109,96,102,94,100,104,108,98,91,101,87,101,105,99,93,101,95,95,107,97,92,105,98,104,89,105,104,95,97,109,100,108,99,95,110,111,94,88,95,101,100,99,102,98,102,118,96,92,98,110,106,91,102,102,105,105,111,99,102,109,104,125,120,100,95,98,101,99,102,70,90,98,97,95,94,114,102,92,103,104,94,101,110,102,101,110,98,101,104,110,104,90,105,97,85,88,102,121,103,94,98,111,94,102,112,96,103,90,104,91,100,102,99,92,109,92,99,103,104,96,92,111,95,106,122,99,95,103,101,103,98,103,91,90,106,71,113,103,110,99,99,109,99,95,84,105,105,101,90,105,95,96,101,96,90,87,109,103,109,87,95,104,88,98,90,106,91,126,97,100,102,105,94,97,91,99,102,101,97,97,107,96,97,88,106,101,90,104,100,104,94,99,98,108,98,103,104,71,105,102,102,101,96,90,105,105,99,90,86,116,98,96,98,98,100,89,105,97,107,98,92,102,94,99,100,94,93,96,106,106,101,92,101,111,109,89,101,98,96,102,94,94,106,106,87,100,98,99,87,101,103,100,99,103,110,99,106,95,97,116,100,103,98,101,107,81,94,99,96,92,97,103,96,100,87,91,102,96,95,95,83,110,92,99,97,90,98,92,101,99,103,100,106,100,90,108,112,93,95,115,95,99,109,104,103,99,90,100,91,105,115,109,108,92,103,108,89,94,98,91,98,98,94,102,94,96,82,113,93,105,94,102,98,99,106,97,96,96,101,108,112,100,90,90,100,96,79,62,90,101,105,90,96,97,87,96,114,98,98,109,97,95,93,106,94,98,101,109,98,97,99,89,85,92,89,105,91,88,104,61,101,105,98,101,97,114,98,100,104,100,93,88,95,97,111,104,95,94,97,84,110,92,91,102,89,103,93,96,111,93,86,112,97,95,103,94,94,98,91,119,94,99,106,102,100,108,98,94,100,99,91,98,91,92,95,96,96,88,95,82,88,100,102,108,101,96,102,98,115,97,99,99,103,102,100,89,96,109,103,102,97,90,90,101,95,92,111,87,94,97,99,104,86,98,99,120,107,106,102,98,95,93,107,92,107,89,102,100,92,108,98,102,100,93,104,89,92,95,89,105,93,108,102,102,98,97,91,87,98,86,105,105,101,100,92,93,105,102,100,90,92,100,96,110,115,98,102,96,106,117,103,104,111,104,112,95,97,96,89,91,92,94,84,96,110,98,104,102,93,108,90,98,100,106,105,107,102,98,91,98,86,87,100,91,105,100,98,97,103,102,104,89,97,91,97,105,102,99,91,108,88,105,96,102,99,89,95,99,104,104,97,93,92,113,106,106,95,101,100,98,100,103,82,83,98,96,115,101,115,80,120,110,115,95,94,111,87,95,104,98,101,99,97,94,67,102,98,95,97,103,92,100,104,99,94,101,91,103,93,93,98,83,106,104,99,97,86,101,101,83,92, +697.72589,86,125,98,101,100,104,95,95,92,110,70,92,96,102,99,117,105,107,110,98,108,94,109,99,95,92,101,104,94,106,100,94,101,105,110,86,97,106,105,98,75,98,94,107,98,109,102,95,100,110,86,104,104,102,95,99,87,103,99,92,99,109,103,113,99,104,105,99,114,98,100,100,100,104,99,119,83,108,104,98,87,96,104,91,109,92,109,98,96,103,105,99,98,97,100,105,94,111,96,97,107,101,97,99,90,112,103,106,101,98,102,105,95,97,105,104,103,101,100,90,106,108,94,112,105,103,118,100,100,112,100,111,91,99,99,95,106,95,75,91,94,105,91,105,102,87,102,89,93,101,98,99,108,98,100,101,104,101,108,97,95,108,105,85,109,97,90,103,108,100,97,100,102,98,100,94,91,89,94,103,92,67,115,100,103,92,98,91,104,90,97,103,95,103,104,88,104,90,105,109,90,98,124,118,108,103,105,104,103,109,109,98,90,91,111,92,101,101,97,105,98,96,103,102,105,102,115,110,104,102,95,96,100,98,99,98,101,109,100,96,113,112,108,109,90,100,90,99,91,100,108,110,95,90,95,102,79,99,95,98,100,100,113,89,97,87,105,96,98,97,92,97,109,99,104,99,103,100,91,99,100,96,103,101,99,115,105,97,96,110,107,102,108,113,99,104,103,94,99,88,104,97,106,107,101,101,105,100,98,110,99,93,101,101,101,99,97,95,99,98,108,90,108,103,105,104,95,90,104,129,103,102,101,101,96,105,136,106,75,104,104,114,99,106,95,109,103,102,96,100,102,95,96,104,120,106,101,95,96,92,96,119,98,94,93,95,96,102,110,98,107,109,112,102,100,96,90,98,81,102,95,106,91,97,98,102,100,100,99,91,97,91,94,103,103,100,80,90,95,95,101,96,109,82,95,111,101,100,103,95,96,92,89,108,100,90,102,97,98,86,112,99,98,93,105,99,90,88,98,106,98,105,99,93,106,101,98,99,95,92,106,98,99,98,97,106,103,97,109,102,96,99,107,99,89,99,92,104,101,101,99,97,99,91,108,101,93,112,98,109,92,109,100,98,108,100,102,113,102,90,103,97,108,104,102,105,114,98,98,108,96,111,107,106,103,97,88,97,105,99,102,92,106,94,96,100,98,113,111,101,109,100,85,85,108,99,95,104,100,105,87,67,103,93,105,102,99,105,107,93,106,95,89,88,113,99,118,107,91,109,96,94,100,95,116,109,97,95,112,102,97,109,97,99,109,99,99,99,91,106,88,104,108,94,104,97,92,102,96,91,100,87,95,102,96,76,101,96,103,105,105,99,104,105,104,105,110,103,97,118,105,94,98,103,106,110,106,101,111,103,99,94,96,97,98,100,101,106,101,98,101,86,112,95,108,102,91,107,97,100,94,109,99,102,96,91,102,93,101,114,108,114,95,102,101,113,95,91,99,101,108,99,102,82,93,99,92,95,96,111,90,100,98,104,90,109,122,118,109,96,118,101,101,106,105,101,109,104,109,100,98,107,117,100,101,88,103,108,107,91,103,103,99,114,106,99,82,100,86,96,105,109,102,92,99,101,103,99,108,91,99,103,102,96,118,102,94,113,106,105,103,93,95,105,101,102,103,99,106,88,107,112,108,103,99,98,121,97,109,103,97,109,90,108,108,100,112,103,100,87,101,83,110,100,107,108,106,104,107,101,105,100,101,97,103,95,100,108,120,110,93,99,96,102,94,98,96,99,105,101,114,100,114,92,108,107,108,106,110,95,101,109,95,98,84,103,106,93,104,112,94,101,102,114,109,91,95,106,88,98,95,95,97,94,105,79,102,103,106,101,103,103,83,97,105,108,101,102,109,105,85,107,103,110,97,109,110,104,95,97,99,94,111,105,100,107,102,106,97,108,106,102,101,104,104,100,105,104,97,96,97,95,84,103,81,95,102,99,115,88,87,91,100,100,95,101,100,92,108,84,100,118,114,99,95,95,112,93,104,107,97,106,99,98,109,108,100,102,104,129,95,115,115,127,110,95,94,121,99,100,121,99,109,91,97,79,86,95,98,101,100,106,109,96,102,105,95,109,90,97,96,98,106,99,96,102,109,99,94,100,97,107,89,108,97,122,99,96,96,104,101,94,90,98,93,105,101,108,102,103,95,115,99,99,104,98,108,98,101,106,104,103,101,89,106,133,99,100,92,103,89,100,103,105,110,93,110,95,83,105,94,107,100,99,102,108,99,94,100,99,100,112,106,99,110,95,93,98,106,101,109,101,110,107,98,94,102,103,93,93,111,106,94,98,95,102,91,102,104,122,117,92,99,102,95,105,98,97,110,108,98,91,105,100,101,82,105,106,99,104,103,100,91,104,108,99,94,98,91,112,95,105,88,97,100,98,108,101,106,106,80,106,96,98,88,75,99,102,106,89,102,106,100,71,102,99,109,98,100,95,109,104,97,101,105,101,108,92,90,95,113,97,93,106,112,94,98,95,95,93,97,92,102,106,114,106,105,95,113,99,102,106,100,110,94,102,94,104,98,99,103,76,123,104,96,98,103,108,109,105,105,111,108,99,95,100,99,99,109,95,109,98,101,103,97,99,101,95,101,100,102,103,102,99,111,98,110,99,104,90,107,91,114,96,102,104,103,95,104,101,98,96,99,106,90,100,101,106,102,90,105,104,94,107,99,108,106,89,83,94,81,98,103,107,105,95,100,94,105,103,98,97,90,106,98,111,99,99,92,104,103,105,94,108,112,106,99,104,100,99,87,105,94,103,101,90,88,108,91,100,95,103,98,100,87,99,105,91,90,113,96,100,107,90,96,102,99,98,94,102,98,108,102,103,95,98,103,99,100,103,96,90,103,104,101,105,92,98,106,106,94,99,101,112,112,109,61,101,96,97,106,98,104,104,94,109,106,107,117,100,103,98,97,96,106,106,110,95,91,96,107,98,104,108,107,96,98,91,109,103,94,107,108,98,104,108,98,116,99,92,108,113,92,95,103,107,110,108,110,76,106,95,109,104,107,100,101,99,118,103,88,101,102,99,92,83,111,105,100,99,100,106,99,98,104,99,98,100,102,103,103,104,90,96,106,106,93,96,105,102,110,96,106,108,94,107,92,109,91,103,104,87,89,105,88,99,104,94,92,88,105,96,111,99,108,98,97,106,96,103,101,94,102,116,108,104,99,100,101,95,108,96,94,107,102,90,99,116,105,100,104,110,94,90,107,97,102,108,127,99,95,106,101,109,99,106,96,134,97,90,97,92,102,103,96,85,92,98,87,93,102,87,94,108,94,96,109,95,97,102,108,99,101,97,100,107,98,101,87,98,100,103,102,102,100,97,100,115,108,99,97,98,97,91,101,102,92,98,102,100,101,95,105,103,98,89,108,102,100,97,98,101,95,108,96,96,117,98,96,107,95,96,89,109,98,104,110,105,94,106,101,111,110,98,95,107,100,106,95,94,99,102,106,94,104,110,101,98,96,93,91,102,100,106,109,98,117,100,97,103,99,111,96,116,107,97,99,97,109,107,92,103,95,105,106,101,96,104,102,112,91,89,102,103,102,95,102,91,113,84,95,105,111,96,100,108,94,96,97,106,96,108,95,104,102,110,96,97,105,107,112,91,109,101,111,105,102,102,89,100,102,101,105,102,94,99,88,85,103,84,98,110,100,106,92,97,110,82,97,103,104,108,106,106,94,101,95,109,132,85,110,109,100,104,110,93,112,115,112,101,87,116,100,93,118,104,105,106,96,98,104,107,102,96,97,103,106,92,108,124,98,88,90,102,104,112,106,105,91,95,90,88,105,98,87,95,92,91,78,96,100,112,95,95,87,96,105,95,113,115,91,89,90,105,85,101,103,104,101,105,99,98,92,102,100,111,107,100,102,108,103,105,89,97,99,105,110,92,90,93,104,101,99,100,102,109,98,94,102,99,102,90,98,107,89,100,97,101,90,99,87,101,105,95,105,98,87,79,104,108,93,105,94,102,98,102,102,97,104,95,111,97,102,101,83,99,99,112,103,103,115,102,96,103,104,102,101,98,97,105,76,92,106,98,100,99,105,101,109,95,115,103,96,103,114,98,104,99,91,98,107,94,107,108,103,99,108,100,97,109,94,107,106,116,98,100,98,102,108,99,99,67,97,101,105,102,99,112,113,105,104,105,108,93,97,104,90,114,113,105,107,84,101,105,96,99,106,92,95,106,99,96,101,95,99,99,102,120,94,100,109,100,104,100,95,99,102,95,100,107,111,97,103,105,108,106,106,96,96,104,98,98,113,107,102,100,91,102,105,95,106,97,104,92,76,94,97,110,98,109,97,91,107,91,95,104,110,96,104,110,92,106,107,100,103,109,98,106,97,104,93,102,99,101,99,96,116,100,101,104,86,91,108,99,94,103,94,100,102,108,110,102,100,102,98,109,91,90,95,100,100,100,102,91,99,107,103,116,106,94,100,97,102,104,98,106,96,104,112,84,110,98,96,108,98,115,109,105,106,99,100,98,101,102,93,93,104,99,92,96,97,74,91,92,97,100,94,89,92,95,120,121,102,97,110,115,98,98,96,95,99,97,107,108,109,96,108,107,112,95,105,119,87,104,122,107,106,103,101,89,105,104,100,106,101,98,111,108,98,111,95,96,109,102,97,101,100,110,117,111,102,98,103,106,92,100,105,107,90,85,89,113,61,83,91,103,103,99,102,104,98,100,97,105,103,92,129,94,97,100,102,103,111,100,95,96,99,104,92,95,87,91,94,104,99,106,108,95,87,109,93,94,87,110,105,108,96,116,105,100,107,112,108,101,106,107,99,89,110,115,107,99,91,94,106,95,88,100,112,102,98,103,114,77,96,92,87,100,102,96,107,110,102,87,118,106,84,107,90,76, +697.86719,106,101,100,101,100,96,105,106,96,102,88,107,95,100,108,108,114,105,106,95,100,93,103,97,93,87,108,110,109,104,105,94,104,89,106,98,87,87,106,97,84,101,100,99,104,98,101,114,96,116,91,108,111,107,95,89,104,68,100,88,100,95,91,94,100,102,97,99,111,112,102,111,113,115,94,118,84,106,103,99,102,103,93,94,79,95,96,104,96,103,104,99,90,108,99,95,105,93,99,96,86,101,95,109,97,99,94,97,90,92,120,94,108,91,96,88,83,100,101,105,111,96,113,104,110,107,115,108,96,109,93,91,86,91,102,97,91,105,91,103,99,116,74,91,71,88,101,118,97,101,107,99,95,95,93,101,106,92,97,108,100,94,101,107,94,83,103,83,103,109,100,100,98,95,120,102,99,87,120,107,112,103,95,99,99,115,91,101,101,102,113,105,100,107,93,110,113,105,100,99,104,94,100,98,97,101,99,94,99,107,102,93,109,104,97,97,95,99,99,100,117,107,102,84,106,114,105,105,107,101,94,90,104,96,102,103,102,106,98,98,104,100,97,107,90,95,86,104,95,94,99,70,95,88,98,103,118,95,88,98,97,105,105,82,93,98,108,104,102,97,76,95,97,97,92,94,96,96,108,103,101,112,109,95,100,98,92,105,101,100,108,88,103,106,103,102,92,103,97,87,97,83,105,99,102,100,125,104,101,96,104,103,116,110,84,70,96,104,104,101,97,100,105,102,104,106,87,77,105,106,98,98,106,108,89,97,95,111,105,98,104,83,97,96,108,105,100,105,92,108,108,100,115,116,105,103,102,102,114,99,99,100,100,107,109,104,110,108,95,99,108,99,112,95,103,87,102,98,103,104,94,124,92,100,99,91,101,97,101,92,106,90,105,93,95,103,89,108,102,101,100,94,118,100,93,93,95,101,100,98,92,103,99,110,96,101,101,100,101,99,100,105,101,102,94,90,98,84,100,107,94,100,108,105,98,99,90,105,97,95,107,120,98,96,92,97,97,101,105,101,108,107,96,101,104,91,95,96,97,93,99,118,103,100,102,108,95,115,90,93,91,103,97,99,110,96,104,108,97,97,105,103,107,106,99,89,110,87,98,96,109,105,104,101,93,94,97,100,104,103,114,108,90,94,101,92,91,100,99,106,101,95,78,110,97,97,106,95,116,106,109,99,101,106,110,95,95,112,100,97,88,105,95,90,95,94,104,102,103,113,105,105,101,101,113,101,101,101,95,104,95,98,105,99,104,89,98,93,98,102,95,100,90,84,81,90,95,100,114,94,95,96,88,113,101,114,94,105,92,100,104,113,102,101,107,102,108,112,100,73,103,108,100,91,97,94,99,93,101,101,101,109,103,98,95,100,96,105,94,100,90,107,107,96,104,100,103,92,105,101,99,104,100,90,93,111,100,109,106,107,105,97,100,94,90,99,99,91,92,112,108,100,94,95,98,96,105,91,91,108,108,98,110,107,93,100,101,101,103,100,113,94,110,111,95,100,107,92,116,79,103,100,106,114,88,106,111,90,95,106,98,108,103,92,97,95,92,103,67,93,96,94,91,97,95,101,90,102,105,89,107,104,104,100,102,99,103,98,97,101,106,108,108,83,101,100,95,105,97,95,92,98,91,104,102,93,105,95,98,98,104,98,85,87,98,101,103,94,105,105,97,91,134,85,93,99,100,102,95,108,118,103,98,93,96,100,97,87,93,99,103,105,113,105,96,98,111,99,91,103,99,109,102,110,109,96,96,110,104,94,118,110,103,99,105,122,98,106,97,94,100,102,108,111,100,94,100,98,94,102,90,96,104,104,99,101,102,106,103,108,102,104,91,93,100,95,105,111,107,100,105,102,103,100,94,107,71,97,103,103,104,93,110,110,99,104,92,104,102,107,107,90,107,93,103,102,99,83,75,114,111,107,88,100,96,110,111,90,105,98,87,101,106,92,97,94,98,110,104,109,100,81,104,113,85,96,93,98,99,92,107,114,106,105,111,92,95,97,82,88,102,107,107,108,103,97,93,108,99,93,105,104,95,100,101,93,97,94,99,101,106,107,105,100,98,83,98,100,100,79,95,92,99,108,105,92,110,95,98,116,92,95,101,103,96,99,88,94,74,110,103,101,88,84,90,99,100,86,117,92,117,104,105,101,96,114,108,124,94,108,82,100,94,101,95,117,104,96,95,113,113,87,98,101,95,111,100,93,100,101,101,95,99,103,86,95,89,110,97,103,84,98,101,103,94,99,91,102,95,101,101,107,120,81,105,103,114,94,97,94,99,96,108,103,95,110,94,84,106,93,96,100,101,99,85,100,106,94,101,99,109,95,114,102,117,105,102,100,104,104,93,108,101,107,92,104,105,108,110,94,100,93,112,89,105,99,86,93,106,101,105,110,106,109,97,104,92,105,99,87,108,95,115,94,102,100,100,100,95,100,100,96,94,97,93,102,95,94,125,92,104,104,93,100,105,95,94,94,110,84,99,94,101,100,116,108,95,101,104,116,109,105,98,105,105,90,99,109,109,95,94,93,100,100,95,109,102,98,97,98,96,98,112,97,112,112,101,88,97,87,99,122,97,115,106,91,104,98,95,95,115,99,95,102,102,104,112,105,89,101,94,97,95,101,107,94,92,91,108,83,99,94,93,94,94,107,94,87,102,103,117,106,101,103,99,113,101,97,108,99,88,101,105,95,107,101,92,91,94,98,104,93,118,108,102,101,103,101,103,104,111,105,99,108,105,103,104,107,96,97,102,107,100,99,106,105,98,106,102,98,99,92,94,106,120,98,106,105,103,105,112,94,102,94,104,101,101,103,100,91,103,99,108,87,106,107,86,102,74,99,100,101,112,94,97,88,106,104,96,88,96,108,110,101,96,93,101,87,98,112,98,96,110,94,115,108,104,106,95,103,88,91,86,95,104,78,100,102,83,94,93,105,88,100,97,109,104,131,89,89,109,101,96,102,105,103,103,91,78,88,118,111,83,93,88,95,101,88,98,105,88,82,101,96,107,100,92,90,98,95,95,101,106,94,101,87,87,86,96,100,91,96,101,99,99,105,94,110,110,102,97,109,110,106,95,91,102,95,101,87,97,117,98,105,115,98,100,103,100,101,109,97,101,109,94,92,95,88,87,104,89,93,96,101,95,108,104,94,106,97,113,106,94,96,94,105,106,103,99,99,97,94,98,110,97,93,94,102,101,96,91,101,100,101,99,101,106,99,110,90,79,96,91,108,101,93,95,98,103,92,98,97,102,103,97,94,104,109,110,94,100,93,96,99,96,100,92,96,89,69,109,81,98,84,95,103,92,110,103,100,110,116,100,94,97,102,110,95,120,105,102,94,98,96,104,94,94,98,111,93,108,96,108,87,108,96,93,106,112,112,94,91,97,102,102,105,93,99,117,110,99,98,99,98,107,106,105,97,98,107,98,94,94,100,100,105,91,105,106,96,103,103,94,93,107,104,100,76,94,108,94,71,90,94,105,93,102,81,96,91,110,114,98,102,103,107,92,107,95,101,110,109,91,95,104,103,76,118,108,98,92,97,95,103,109,108,114,91,94,94,106,86,117,96,96,92,96,103,97,105,86,94,117,107,100,90,105,100,110,94,101,100,101,108,98,91,90,84,104,102,100,89,98,106,107,100,83,105,114,89,106,111,112,97,97,98,101,107,100,98,107,102,110,110,104,100,103,77,97,99,105,91,105,100,101,91,105,106,113,104,87,101,100,93,103,101,107,116,108,87,101,101,108,91,100,100,86,96,113,106,97,106,95,103,99,97,98,102,106,100,99,93,96,94,91,113,102,103,111,106,117,113,91,98,112,99,110,105,105,109,102,93,101,100,102,95,108,99,100,129,106,88,95,94,89,106,66,108,95,95,97,95,97,112,104,103,96,100,102,105,101,90,108,97,105,101,104,105,110,115,96,95,100,91,95,98,90,98,87,110,101,90,105,101,101,105,89,98,87,99,99,105,91,101,111,109,96,87,99,105,112,103,95,105,92,96,100,105,96,95,92,95,90,96,106,111,97,100,98,95,112,107,96,94,102,96,98,97,97,99,92,98,87,103,93,103,95,104,79,96,109,103,91,103,112,100,105,92,98,112,102,92,100,91,100,99,94,107,109,102,92,108,101,95,106,94,109,104,89,94,92,95,101,92,104,104,112,95,104,98,103,100,105,104,101,103,100,96,93,91,97,106,95,113,94,94,98,111,118,91,91,99,92,99,93,101,89,103,96,100,105,98,99,97,103,97,95,104,90,98,95,95,93,106,94,96,109,102,92,115,104,100,119,103,113,99,94,92,97,97,109,89,100,102,104,96,108,108,106,104,107,98,81,102,100,100,104,119,105,103,103,114,105,107,94,109,101,108,90,93,95,92,117,113,94,109,103,84,112,88,111,113,103,91,104,99,105,102,89,100,102,101,91,95,93,91,128,93,104,93,103,100,92,95,117,101,96,119,101,98,98,99,98,91,98,98,102,91,90,102,96,88,101,100,88,104,108,65,100,92,97,109,104,100,108,93,96,105,95,102,84,106,106,88,104,100,105,89,86,93,94,89,97,102,95,93,98,98,111,108,93,93,98,97,79,99,97,102,106,96,103,100,105,106,90,106,94,102,98,111,93,93,118,91,96,100,104,107,103,105,102,94,99,102,90,108,106,94,94,93,104,108,102,88,101,91,93,97,107,94,99,101,104,95,113,95,104,94,80,107,102,109,94,96,92,93,99,103,105,103,101,89,112,104,94,97,102,109,98,96,99,98,97,108,105,108,103,105,108,109,111,93,107,101,108,89,101,111,117,98,96,103,102,116,102,101,91,95,95,92,104,98,121,99,103,99,89,95,91,94,70,101,115,107,95,90,111,92,113,108, +698.00854,109,99,101,90,88,105,93,109,94,79,96,104,92,113,97,105,95,108,92,105,94,97,110,92,106,102,96,98,88,107,95,101,95,97,105,103,98,88,94,102,103,99,101,100,92,87,95,92,90,95,91,112,96,100,96,102,101,100,100,99,100,94,95,90,86,104,97,101,94,94,102,96,77,92,96,105,101,111,96,122,103,106,94,94,99,107,92,89,104,95,96,94,110,97,103,79,99,110,97,102,100,103,102,92,92,95,94,96,84,100,104,102,91,104,92,100,101,102,79,102,87,98,103,106,102,97,98,105,85,106,94,106,96,100,109,106,94,114,99,88,106,113,99,99,95,85,108,106,98,89,92,90,106,92,99,97,93,100,87,90,104,100,101,106,90,102,84,98,98,96,102,94,93,91,102,99,100,100,101,115,99,99,103,105,103,93,98,96,113,97,87,88,93,91,124,100,106,96,101,98,105,106,100,88,105,109,95,110,95,110,95,91,103,101,91,96,83,102,102,83,102,91,90,91,91,106,116,101,91,82,97,102,93,101,101,101,97,90,100,91,96,108,94,109,110,95,95,101,99,100,96,101,99,99,99,105,103,99,96,88,101,86,97,90,88,98,92,95,95,90,101,97,105,101,100,96,97,111,114,107,93,103,102,100,91,116,101,100,94,93,105,99,103,106,110,105,108,101,98,106,98,95,91,106,94,104,108,120,102,116,101,99,92,104,103,94,102,99,101,100,103,69,89,92,90,105,99,96,107,101,111,91,109,102,102,103,103,96,100,94,101,104,102,99,103,91,100,89,94,113,101,97,102,105,106,106,109,98,95,104,106,114,99,95,94,106,95,113,101,115,95,84,101,104,105,90,111,86,96,97,101,100,95,97,91,97,101,84,101,88,98,87,76,108,100,89,80,113,105,82,114,101,102,93,94,98,103,94,107,93,92,98,99,94,87,89,93,93,95,103,94,105,105,103,95,91,91,98,91,107,96,101,99,98,105,102,105,104,99,82,100,102,95,95,87,98,96,74,104,94,90,105,101,103,90,98,89,79,90,104,101,94,93,105,103,100,105,92,107,98,103,105,98,96,92,105,103,103,98,106,92,95,116,101,106,102,96,95,114,98,97,97,94,104,96,100,90,94,103,101,102,100,95,92,97,95,86,91,70,106,101,95,106,95,115,102,100,104,116,96,95,100,102,101,96,91,100,106,99,71,89,106,96,105,99,95,111,91,95,103,95,104,101,105,97,91,111,92,97,95,98,104,88,102,104,100,100,87,94,106,90,95,95,93,101,94,95,101,102,102,86,92,93,84,87,95,104,103,100,95,108,97,103,109,99,93,96,93,103,98,102,95,104,100,101,114,111,97,96,99,99,103,85,98,95,100,114,94,92,110,93,108,107,106,92,95,106,98,95,115,102,94,95,93,101,101,98,100,108,87,107,102,101,107,97,97,93,91,105,106,101,103,92,101,96,98,97,97,98,105,95,104,103,85,102,109,99,101,102,99,100,88,95,111,94,64,98,101,105,91,96,99,97,101,96,96,95,91,109,97,97,113,107,83,103,106,98,95,100,101,106,99,103,101,97,94,96,106,108,93,104,98,91,100,94,111,97,105,94,88,99,92,99,84,92,112,104,95,95,97,98,96,105,100,109,97,101,97,96,99,96,103,94,89,101,92,96,86,101,95,95,94,104,109,105,101,105,94,93,99,106,91,90,95,107,100,108,102,90,98,104,109,101,96,102,102,93,101,96,105,100,105,107,107,106,98,107,83,98,99,102,104,118,106,96,102,112,105,94,103,105,97,93,105,95,104,96,107,102,105,87,102,96,106,100,97,107,101,97,109,83,96,76,87,107,92,99,104,104,111,97,103,87,103,95,110,139,103,69,92,91,101,117,93,104,98,96,112,101,100,96,98,104,99,92,100,109,99,101,97,91,101,100,112,96,96,114,95,83,91,105,98,99,109,109,98,85,106,107,93,107,89,90,112,86,102,100,104,100,102,103,106,95,80,94,101,107,98,98,96,94,99,108,108,118,102,88,97,102,97,91,103,112,102,106,100,85,101,101,92,104,102,96,105,97,102,84,112,94,97,100,99,95,95,81,91,99,110,104,98,94,109,90,104,102,98,89,103,109,91,105,102,102,102,81,105,106,108,86,103,102,89,107,99,101,104,117,109,98,104,98,104,104,87,100,107,99,94,110,101,102,108,110,98,104,96,105,100,102,99,106,114,97,95,103,101,91,92,121,92,99,91,89,98,97,96,105,101,79,100,100,105,102,98,104,101,96,101,83,94,102,108,106,101,100,99,101,94,106,104,103,97,105,96,96,108,102,103,103,111,86,96,105,89,103,91,101,105,105,107,95,99,106,97,99,122,84,96,95,87,108,90,104,108,102,100,98,101,102,99,100,108,94,102,93,100,85,116,93,110,87,99,87,90,99,109,95,93,97,104,103,108,90,112,93,103,106,96,95,93,90,99,108,92,82,96,102,92,108,92,109,104,100,102,97,103,91,100,105,104,111,105,94,101,101,99,101,103,79,103,106,93,107,91,106,105,106,107,102,92,99,97,104,105,94,101,91,99,107,83,102,88,97,102,100,113,108,106,111,100,107,76,98,102,106,97,112,98,100,106,95,91,104,96,110,101,88,105,101,103,99,97,99,99,94,105,114,103,96,105,99,105,99,90,107,107,121,110,101,101,95,106,94,95,92,95,86,85,99,95,91,99,107,104,113,104,109,103,102,110,100,103,102,113,110,115,108,102,101,107,96,97,104,101,106,108,95,100,83,100,95,104,100,100,100,85,124,108,109,112,103,103,96,99,97,87,104,94,93,115,95,103,109,100,96,101,98,101,101,113,99,104,96,99,109,108,95,92,96,113,108,106,92,101,108,97,98,112,100,107,109,102,96,105,68,106,102,101,97,107,100,102,108,101,95,101,102,88,93,98,90,97,96,111,104,103,111,110,94,96,98,84,92,105,99,111,123,106,93,106,106,101,104,106,120,105,95,105,94,95,88,87,102,112,109,103,95,97,97,101,102,99,102,101,102,103,109,95,112,107,105,103,100,98,94,105,96,109,95,84,95,112,110,95,99,104,108,96,96,107,105,95,95,101,102,99,102,103,91,95,103,101,101,109,94,104,117,104,93,90,101,99,95,118,108,120,105,95,90,100,97,85,109,68,89,100,100,98,105,112,99,100,100,113,127,94,99,104,101,97,100,102,106,97,99,95,104,103,105,95,100,101,96,100,112,96,111,108,99,100,109,101,99,105,91,107,105,108,99,101,120,90,97,99,93,128,91,95,101,92,99,100,105,105,99,109,99,93,120,98,99,112,100,106,99,92,109,102,108,102,100,102,97,97,108,103,91,127,110,97,105,103,91,104,111,125,94,105,87,97,89,106,112,104,96,104,101,101,94,103,96,98,100,92,95,100,90,100,97,91,101,98,96,96,91,104,99,98,100,103,113,94,102,93,105,104,108,103,102,105,103,98,98,94,95,104,99,99,108,94,103,95,96,104,97,99,93,100,96,104,95,100,107,102,106,107,100,109,101,101,109,95,101,110,100,107,97,106,103,90,99,106,92,110,95,126,104,117,97,106,97,100,100,104,95,97,108,106,95,122,91,101,91,103,97,98,110,112,93,101,114,100,104,103,105,94,94,91,107,94,101,103,104,89,92,80,125,102,92,112,110,105,108,105,105,105,109,96,110,102,101,104,103,93,101,92,108,105,102,96,104,101,101,105,98,96,100,117,101,100,106,109,91,103,111,92,104,95,97,102,94,96,94,109,103,108,101,103,98,99,108,106,94,107,107,105,91,98,104,90,100,111,86,104,100,99,99,96,116,95,90,114,97,103,115,86,131,94,94,96,95,99,113,103,97,86,106,99,95,96,97,109,90,88,92,94,106,95,90,100,98,103,108,112,98,81,101,105,106,95,85,102,92,105,90,93,107,107,92,102,95,117,97,81,106,106,101,92,97,109,97,108,81,97,104,93,95,106,88,102,105,92,101,95,106,108,102,96,114,113,99,99,89,104,110,108,102,101,94,108,100,93,99,127,102,103,101,120,100,102,113,101,94,96,106,109,101,81,113,98,100,94,98,99,112,104,99,97,102,92,113,91,91,95,100,98,98,92,98,98,99,97,95,109,97,102,116,91,91,92,81,111,112,97,90,116,86,110,106,99,103,103,87,100,98,112,103,99,95,118,106,97,95,99,101,91,100,92,101,100,94,99,109,100,97,91,103,113,99,102,99,113,105,99,127,83,99,97,91,100,102,99,100,106,108,105,108,108,98,102,104,106,93,113,94,93,98,102,111,100,110,105,101,101,97,95,102,104,124,105,101,89,114,104,106,97,141,107,95,87,98,93,100,99,127,111,88,109,92,102,103,95,100,105,102,104,90,101,99,97,102,104,94,93,104,103,91,94,93,110,103,98,117,102,95,92,79,108,109,107,100,101,102,101,98,112,113,98,91,105,94,97,98,105,107,112,95,105,98,111,92,110,108,101,100,89,101,102,112,102,123,97,88,113,100,105,101,98,97,106,97,115,106,90,101,106,99,94,97,98,96,95,104,104,97,104,104,101,99,104,91,98,96,112,90,113,112,116,99,96,97,96,105,104,102,102,121,84,94,94,102,104,106,102,97,99,105,102,105,95,107,94,92,107,94,99,107,104,106,98,101,109,113,104,97,103,106,103,110,83,98,112,106,109,89,105,87,100,106,108,88,102,114,101,98,92,107,72,102,100,104,117,98,94,83,106,104,97,108,109,98,88,103,109,97,82,107,99,103,105,112,70,112,108,112,92,99,88,109,96,103,114,96,117,83,106,103,75,109,101,107,100,91,94,106,103,104,120,99,60,89,119,107,95,119,88,109,100,92,110, +698.14984,106,97,90,101,109,102,95,102,101,107,91,81,99,106,102,83,87,105,102,101,101,89,100,117,93,107,97,113,96,99,104,83,98,99,86,97,99,100,95,100,102,108,97,100,95,95,73,106,97,94,113,85,103,95,100,88,102,101,101,94,105,107,95,94,105,102,96,100,109,103,110,136,112,112,94,121,106,95,96,99,95,96,97,82,100,88,87,106,95,100,105,99,98,110,93,96,112,96,116,95,98,88,100,92,97,88,106,97,102,93,99,103,98,104,99,98,97,103,112,103,108,93,77,109,114,105,116,99,110,117,100,107,94,108,129,89,100,97,105,95,100,114,87,92,100,98,109,99,97,100,96,96,108,92,100,92,97,85,96,101,95,94,99,115,98,95,85,108,91,97,95,103,102,108,105,103,96,104,94,103,102,100,93,96,97,72,95,100,99,109,105,105,98,96,93,94,108,112,102,99,94,94,91,118,95,107,100,106,103,115,97,107,108,106,96,97,100,104,104,102,104,88,106,98,73,98,97,124,96,97,87,106,106,102,106,109,101,102,86,101,99,106,93,109,102,105,99,98,100,106,115,95,99,110,90,112,105,104,93,101,103,105,104,106,85,98,109,99,109,96,110,96,100,92,79,91,106,106,106,105,108,110,99,108,97,99,94,117,101,98,102,98,101,102,109,99,87,105,101,100,108,107,107,108,98,122,92,109,100,81,86,101,103,98,98,102,99,114,98,101,96,98,103,106,103,82,92,97,100,107,107,91,99,101,104,104,100,104,101,106,102,111,85,102,109,96,114,96,99,110,110,94,112,102,108,96,109,98,97,84,103,95,94,100,92,97,94,98,100,109,105,88,106,95,108,99,99,94,100,102,97,107,130,110,104,105,92,96,99,97,109,90,101,109,96,100,108,98,101,97,107,98,98,86,96,97,109,105,95,107,95,99,112,106,106,84,99,106,95,101,107,96,112,97,99,99,103,101,94,88,114,114,102,100,109,91,103,100,104,92,107,101,97,106,90,112,109,105,109,112,102,104,106,108,87,88,104,118,99,96,101,82,111,102,97,111,96,104,95,97,100,96,104,95,98,98,102,110,89,101,107,105,103,85,96,109,94,104,110,109,96,103,107,93,100,98,92,94,102,111,102,99,105,98,100,90,99,98,101,106,107,100,98,107,103,100,98,91,101,86,92,104,100,89,106,108,107,103,106,96,90,100,100,101,103,107,98,107,108,104,103,96,91,100,104,100,101,101,92,118,95,102,111,84,97,88,106,89,94,94,96,90,91,102,87,97,104,110,98,98,100,95,98,97,99,91,98,95,105,107,99,103,111,99,100,99,105,110,95,96,96,91,109,88,116,114,109,96,96,104,96,109,101,94,93,105,101,88,118,99,85,96,92,113,99,114,96,95,112,95,108,106,98,103,99,108,97,104,94,129,112,101,102,99,107,104,109,101,97,107,99,99,86,97,94,101,99,109,92,103,94,102,97,97,93,94,100,108,104,115,109,98,105,105,87,111,121,109,87,108,104,102,113,109,97,98,108,101,116,105,117,102,101,93,107,91,97,104,99,104,107,91,96,107,108,89,106,98,88,92,107,95,102,109,97,107,108,101,108,96,103,113,102,95,116,109,99,104,105,108,99,102,108,111,97,103,113,108,102,114,97,117,107,93,101,92,104,98,104,88,100,92,102,95,112,97,114,74,97,95,98,100,98,117,102,110,125,100,100,100,96,108,92,101,103,94,97,104,96,96,95,96,109,102,107,99,90,105,113,87,98,106,104,80,100,106,111,99,96,109,102,91,90,116,106,110,101,129,102,107,117,95,97,99,104,95,106,113,97,98,103,105,101,97,110,100,108,105,103,90,111,91,100,106,103,104,105,112,100,99,98,95,105,97,99,93,99,101,105,107,95,94,99,104,96,98,109,100,92,105,101,100,95,105,101,97,103,99,100,107,108,97,95,94,103,102,93,103,113,101,110,112,97,101,105,91,105,94,108,95,96,110,111,109,103,98,99,101,94,103,98,101,100,99,104,105,96,98,95,88,96,106,108,109,101,97,99,102,92,116,98,99,116,106,103,91,98,105,95,95,108,102,95,98,96,98,101,91,102,105,95,99,100,112,91,95,102,107,97,105,96,100,109,99,95,108,101,107,88,98,100,94,100,103,109,117,103,106,105,93,102,103,107,84,104,107,102,101,92,104,100,92,102,96,107,100,103,116,95,103,100,107,108,88,95,92,95,98,104,101,102,97,109,95,95,100,99,99,101,112,101,105,103,96,111,101,102,95,112,106,95,127,103,109,83,95,109,109,98,101,114,98,100,100,108,121,94,107,119,92,97,72,97,93,92,88,99,110,98,102,108,98,99,116,90,83,112,103,101,103,103,105,101,95,113,107,90,119,114,95,96,110,94,105,91,91,94,108,108,96,87,101,100,98,105,102,103,98,92,101,83,93,97,100,103,118,88,109,99,113,107,98,100,91,97,111,82,120,120,116,101,90,108,91,95,106,95,124,106,103,97,116,95,109,100,100,101,100,105,103,98,98,102,98,103,109,87,94,107,101,94,103,92,93,107,104,92,101,103,83,88,101,93,101,90,106,101,87,112,97,98,111,115,103,102,102,91,101,99,96,93,99,99,97,100,112,89,103,103,109,92,100,104,99,102,108,98,104,98,100,98,106,104,100,96,101,97,100,102,107,102,101,93,100,101,123,108,91,98,97,102,96,96,103,113,111,80,104,99,109,101,100,89,87,109,92,102,104,102,110,98,100,94,100,98,103,102,98,98,97,93,102,108,91,101,101,103,108,111,108,107,90,109,99,107,107,101,109,86,104,109,115,105,107,106,105,109,109,107,108,117,97,77,106,112,93,101,98,93,104,106,102,85,104,99,96,105,121,102,95,94,102,96,109,94,103,109,86,88,92,89,103,89,95,95,108,98,106,91,110,107,104,89,110,119,108,106,95,96,99,97,101,101,113,104,103,96,95,104,93,104,93,98,99,98,99,103,105,105,109,105,119,108,105,108,106,101,89,105,100,88,100,92,101,105,91,111,96,105,107,96,94,92,108,101,104,98,115,122,95,99,104,114,109,108,95,91,93,89,100,85,97,93,108,102,70,72,96,117,108,93,93,103,97,110,86,89,104,94,79,87,84,102,103,103,106,98,104,110,103,117,106,105,113,98,104,106,115,96,100,96,93,99,92,104,102,91,86,104,94,107,104,87,104,93,103,106,96,96,98,98,108,107,107,109,99,103,106,100,105,101,107,97,111,96,101,107,116,119,101,113,100,106,107,90,108,98,87,94,93,93,110,86,112,92,112,98,102,97,98,92,100,91,98,107,109,102,100,108,102,90,85,110,116,105,89,102,102,102,95,99,110,96,99,98,91,98,99,96,99,83,95,85,102,102,107,110,96,106,96,108,94,99,105,100,105,96,89,103,102,107,102,98,83,117,104,95,93,113,87,104,96,102,84,97,91,102,100,113,95,95,102,102,105,96,131,82,111,105,93,100,99,98,110,82,104,101,98,101,115,102,102,107,103,106,100,97,100,102,101,93,107,99,104,85,98,96,103,106,85,92,100,98,90,110,101,105,112,108,105,93,85,91,93,101,101,103,97,102,99,103,103,97,106,99,111,109,105,95,105,87,92,87,100,108,98,103,113,104,95,107,98,92,96,91,101,101,100,94,99,135,101,95,107,99,95,119,106,103,92,98,95,115,102,97,91,108,105,94,102,95,103,98,98,89,100,115,99,107,96,108,95,110,88,100,99,104,101,97,110,92,98,97,100,115,97,105,101,117,102,111,99,99,108,96,98,102,105,109,105,101,117,107,109,103,109,100,93,100,67,102,119,99,98,103,104,101,92,94,108,101,94,97,105,99,99,110,102,87,104,103,107,99,107,91,103,109,97,103,93,89,113,103,103,96,104,110,96,102,98,91,99,101,92,97,110,105,102,98,99,100,109,99,97,111,108,99,106,95,111,104,89,95,123,105,93,97,99,103,112,98,112,96,96,94,105,103,100,113,103,109,103,97,101,95,109,96,102,101,103,96,105,94,79,113,101,90,92,92,103,102,75,95,96,103,108,91,110,101,109,111,96,104,109,95,109,101,98,102,104,106,93,98,103,101,97,101,108,111,98,101,90,89,96,107,113,88,103,100,97,101,108,104,102,109,117,100,104,110,113,120,106,99,99,115,105,109,101,88,106,103,100,100,100,109,97,98,104,99,106,99,105,108,95,108,108,98,112,98,103,104,105,116,104,101,96,100,99,96,74,114,115,103,103,98,101,85,106,109,101,99,102,105,93,98,105,105,101,106,119,104,91,98,109,102,106,119,99,104,109,104,106,101,98,97,102,99,87,107,109,101,103,92,89,79,112,109,129,101,91,85,98,114,104,108,105,101,100,113,105,109,98,105,91,91,82,96,106,99,113,105,96,99,99,92,107,90,107,110,106,101,94,109,103,101,89,106,97,101,99,71,109,90,108,102,98,91,104,102,98,87,106,97,102,93,98,102,105,101,96,107,108,102,90,88,98,95,88,107,102,121,94,111,90,99,113,127,83,100,99,117,92,99,98,103,108,98,103,97,99,99,100,98,104,102,103,93,102,96,98,112,105,78,87,93,102,106,117,101,97,96,91,103,107,105,102,110,97,92,97,109,102,92,106,101,102,96,105,110,96,83,110,97,96,97,99,107,103,97,102,100,89,102,104,108,100,105,91,97,101,95,104,114,87,108,94,84,108,88,93,105,102,106,95,90,103,122,96,87,106,111,86,96,95,86,106,100,109,99,113,109,92,102,97,106,91,100,108,94,102,109,100,94,91,103,96,99,99,108,98,95,110,90,104,100,107,91,103,99,98,99,89,97,102,99,97,79,90,116,88, +698.2912,100,102,98,84,101,80,104,96,90,117,98,95,93,105,102,89,90,109,98,100,90,95,92,96,104,102,115,98,101,101,98,95,94,101,112,105,102,109,102,97,111,86,110,108,104,117,114,111,93,107,118,103,101,88,107,98,99,100,98,105,103,109,90,99,90,112,100,106,108,100,107,111,86,90,100,97,91,100,115,94,114,95,104,96,109,93,102,100,93,107,93,109,89,100,91,95,98,86,95,103,84,95,99,103,98,98,94,101,93,96,113,101,88,101,104,100,95,105,105,114,106,113,113,109,105,117,104,102,113,133,98,96,89,114,118,108,106,104,80,102,115,105,92,105,105,100,96,103,98,100,104,93,116,88,88,100,109,106,105,97,92,105,103,109,105,100,102,105,105,98,103,101,98,104,101,101,95,105,99,109,104,103,102,99,97,99,103,98,106,103,105,89,108,100,93,101,109,96,102,102,99,95,98,94,100,108,68,91,94,100,93,95,90,106,105,101,102,91,104,97,110,107,102,101,104,107,100,103,106,93,99,113,96,100,106,113,107,109,94,89,104,100,116,103,66,109,105,101,96,106,95,87,102,92,103,107,97,101,105,91,99,102,92,109,97,101,109,94,88,98,104,98,99,95,95,102,95,116,74,99,112,104,105,97,95,101,86,102,103,110,101,100,114,101,106,109,103,98,108,106,95,99,107,109,86,111,93,104,103,107,97,107,100,117,106,108,114,101,90,96,95,113,108,100,100,116,102,89,99,107,102,111,103,96,118,102,105,99,95,97,96,101,101,106,102,110,94,90,103,90,110,97,111,92,99,101,111,105,96,103,90,103,61,107,108,95,113,112,94,101,94,101,110,105,97,103,102,102,103,98,107,103,91,103,76,98,109,97,104,84,102,101,105,103,96,95,113,106,103,108,108,104,110,96,99,95,104,91,96,89,91,100,100,91,103,102,95,98,100,114,100,105,91,97,99,91,111,117,99,111,75,102,97,102,104,99,98,117,101,103,97,97,74,98,95,88,96,92,85,113,82,88,86,105,100,101,100,102,101,94,93,98,98,106,103,104,95,106,109,97,105,117,102,102,99,105,98,94,103,101,90,99,106,104,116,92,104,104,114,101,118,107,117,102,101,103,93,98,110,115,105,106,108,99,88,100,104,102,106,114,106,104,98,107,114,98,92,99,93,90,120,91,102,112,94,105,112,106,109,106,107,107,109,98,94,99,101,105,101,106,87,104,96,101,103,99,102,105,126,98,136,104,90,99,106,99,103,102,87,93,105,106,97,104,94,103,101,112,99,98,87,97,103,104,110,89,95,95,95,102,102,101,106,99,104,115,108,100,98,108,113,98,87,92,112,98,101,106,99,97,88,110,100,106,110,99,98,98,82,99,95,96,91,109,112,107,104,101,105,127,113,100,121,97,96,104,96,110,95,105,100,101,98,100,91,108,97,111,94,113,109,101,105,100,86,93,109,103,92,114,97,112,117,124,100,110,97,100,104,110,103,105,97,108,90,103,102,70,106,100,107,83,104,93,98,99,108,108,105,101,101,96,103,95,105,96,104,99,92,106,95,98,101,107,84,98,96,104,106,93,99,110,106,95,99,82,102,111,97,112,106,93,89,86,92,104,97,94,102,101,95,103,100,99,96,106,99,106,96,103,105,91,108,95,107,96,94,97,107,103,112,98,92,99,105,109,109,107,102,98,110,105,102,96,105,92,92,112,99,105,100,100,103,100,103,95,102,94,106,103,99,110,117,103,102,114,105,98,109,105,111,98,111,97,101,112,104,114,101,104,101,106,110,108,95,105,113,91,96,91,93,96,104,101,106,108,98,112,105,108,106,101,107,103,102,97,108,97,109,108,89,106,93,100,105,107,111,100,101,103,100,109,87,97,99,93,96,99,95,95,116,106,100,105,107,88,101,114,109,105,97,95,111,106,98,99,106,94,90,103,137,98,103,100,102,92,101,99,107,103,103,106,104,103,104,108,110,93,106,104,108,103,120,97,107,98,105,105,108,94,106,102,101,104,113,104,98,113,101,103,99,105,97,111,103,97,90,98,92,93,107,99,106,108,98,99,104,121,97,110,106,119,113,99,102,92,100,106,104,101,100,105,109,109,100,97,127,92,96,105,105,102,109,120,94,108,111,98,88,103,100,115,108,115,102,98,96,102,90,105,99,114,109,98,99,105,103,87,117,97,101,105,101,93,104,99,97,97,85,80,104,104,104,96,87,105,100,98,92,94,97,94,106,107,86,94,101,106,105,94,102,113,105,95,105,111,102,107,97,102,96,103,94,99,97,95,96,110,97,96,103,106,97,92,106,104,102,112,103,99,109,99,122,101,107,92,91,107,104,97,104,101,93,95,102,106,111,97,92,103,94,123,101,109,71,94,94,99,104,118,100,111,108,105,91,104,100,95,92,110,106,110,95,106,104,86,110,103,100,104,100,91,96,115,94,106,108,89,114,100,109,101,92,103,100,103,100,113,96,109,100,99,106,76,107,97,93,85,104,107,99,98,101,108,104,101,105,99,101,102,87,103,105,103,105,123,85,111,102,96,101,93,105,101,101,98,110,92,84,89,96,93,91,98,108,100,82,104,110,105,99,91,116,106,109,100,110,91,95,94,102,84,111,85,104,105,90,97,96,73,101,101,103,99,110,102,106,101,110,66,101,99,95,102,98,100,105,98,95,100,98,107,109,109,105,105,103,92,101,94,98,100,106,110,93,101,97,97,94,87,111,105,110,105,109,110,96,103,105,101,101,101,96,102,100,109,102,98,108,101,97,95,108,101,106,96,102,106,83,105,96,100,103,83,114,91,92,117,76,111,99,99,104,105,98,105,96,105,102,115,86,95,101,102,102,104,102,109,103,102,109,101,93,115,103,102,102,99,108,99,108,95,106,106,84,109,104,98,98,104,99,106,94,100,108,94,107,104,102,108,92,99,110,105,97,105,113,110,103,98,115,106,103,98,69,113,103,102,76,87,105,91,99,104,108,97,104,102,103,97,88,86,103,108,95,100,109,96,93,98,95,99,102,101,100,106,105,99,100,101,103,101,100,91,95,97,98,105,106,96,103,94,107,109,115,101,106,94,108,101,102,101,98,104,103,109,100,77,108,95,94,93,113,108,105,90,92,108,100,103,97,100,99,90,104,98,94,101,104,98,100,102,99,103,102,112,107,103,102,111,107,104,89,90,109,102,102,94,99,104,94,96,94,101,94,101,97,96,117,105,109,101,101,108,106,103,87,92,103,93,91,102,95,89,99,79,107,102,91,100,95,92,103,97,89,102,110,106,111,99,104,100,96,98,102,91,93,100,104,94,103,109,87,93,98,104,95,98,98,105,102,102,106,97,106,93,100,107,110,97,103,105,89,101,98,102,98,98,99,111,99,99,95,113,96,98,98,97,108,102,106,96,96,99,78,91,83,103,108,83,94,93,106,107,107,111,108,112,95,96,108,100,95,83,88,97,103,102,87,91,90,98,94,108,109,112,95,107,107,84,113,96,99,103,101,114,96,106,103,102,102,95,101,96,107,102,98,94,108,99,101,94,93,102,100,108,99,94,103,101,89,94,100,95,87,109,95,99,93,103,92,100,97,90,96,94,101,104,100,103,102,91,98,98,94,95,100,102,114,107,96,100,103,92,102,100,101,101,99,104,109,94,94,101,101,96,98,89,100,97,106,99,120,98,96,102,98,107,101,104,101,93,99,90,113,99,93,93,102,136,111,99,98,106,107,107,98,92,92,91,104,72,109,99,102,106,98,124,103,106,108,117,94,105,92,98,108,105,96,103,108,103,106,104,110,102,105,98,94,98,100,108,101,104,92,113,91,93,102,85,103,93,93,75,104,106,92,102,98,101,102,110,97,84,107,87,99,97,101,103,93,101,103,112,95,95,106,107,106,98,96,99,106,102,106,107,96,104,79,103,98,97,98,102,90,100,101,96,96,99,113,108,102,98,97,111,99,96,95,103,104,99,95,102,106,94,109,102,103,101,109,88,92,94,87,90,109,99,139,92,102,97,98,102,108,89,99,100,107,96,101,96,100,86,97,105,110,109,99,97,94,96,97,92,88,110,96,111,92,91,109,98,98,93,108,100,111,98,95,100,104,97,91,101,101,95,100,106,98,106,102,102,101,93,117,100,105,100,96,85,97,107,80,99,98,94,99,105,109,95,108,95,101,90,89,91,97,96,101,105,88,87,111,102,102,108,96,98,101,105,95,112,105,97,109,100,101,108,108,96,120,99,101,102,97,95,102,98,79,105,103,96,94,105,102,101,86,93,100,94,100,122,106,110,110,113,103,110,100,108,93,98,90,100,100,102,113,101,96,106,98,101,108,104,81,110,108,99,100,91,103,105,97,111,97,96,87,98,98,96,94,95,105,99,96,97,97,94,102,102,125,106,112,108,99,102,88,111,95,104,94,110,103,99,121,92,91,102,109,101,91,97,102,109,110,96,91,92,95,114,93,98,99,101,96,103,102,105,108,105,101,96,95,107,96,95,105,98,83,103,105,102,87,96,95,102,113,91,101,112,96,99,95,102,97,100,103,93,101,107,99,93,93,99,113,101,103,102,112,104,100,92,102,99,109,90,102,105,96,101,98,113,99,113,94,103,106,97,121,97,105,102,111,103,95,101,103,104,103,97,117,103,95,105,98,83,118,97,94,100,95,117,103,89,93,97,103,104,99,104,93,101,91,106,104,98,99,100,98,106,101,104,109,108,84,96,87,102,98,110,100,99,102,101,111,114,112,107,100,106,117,108,100,99,95,88,114,113,104,96,106,95,59,93,103,98,94,96,90,101,87,99,96,101,104,110,102,108,102,93,109,110,101,97,117,108,102,103,121,94,106,106,101,106,110,103,113,94,96,100, +698.4325,104,94,94,87,109,98,101,91,95,92,93,100,100,108,87,98,89,98,101,91,108,110,97,103,94,108,96,96,95,110,102,101,102,86,107,108,107,99,102,108,94,98,94,108,98,110,76,104,100,76,117,89,92,98,117,97,98,93,107,99,98,120,117,101,99,107,98,113,100,99,97,101,105,99,105,102,103,107,109,90,90,101,108,100,105,104,98,106,104,97,103,108,116,104,94,92,75,109,102,95,109,97,96,100,118,97,95,106,106,97,108,98,104,95,106,91,106,101,105,101,102,103,103,108,91,104,101,86,115,89,97,112,108,96,96,99,100,108,106,87,94,110,95,101,92,103,103,109,96,93,101,98,105,85,97,97,101,95,99,97,99,97,90,99,100,101,103,90,109,96,113,90,105,110,103,96,121,90,108,98,103,99,108,96,95,104,91,100,108,111,96,100,97,100,99,86,97,95,103,106,110,103,101,112,101,100,115,102,108,106,99,110,111,105,75,101,101,106,97,98,106,98,107,105,101,99,99,100,109,103,93,113,92,98,93,102,113,107,94,98,91,102,99,87,105,92,97,105,92,99,100,99,109,108,99,101,91,95,95,98,78,98,101,82,102,102,90,99,102,96,99,118,98,108,101,92,105,102,97,84,125,105,98,92,101,64,86,109,102,105,103,106,101,102,107,104,100,137,84,96,108,102,95,100,101,102,102,90,87,103,99,114,98,97,102,90,101,101,96,91,96,94,117,103,107,94,89,87,100,109,101,96,108,101,98,111,106,102,93,106,100,112,95,93,92,110,132,98,97,100,104,101,104,105,101,104,109,103,101,83,94,103,101,71,103,91,102,107,102,111,93,99,117,92,108,103,102,98,93,101,102,102,93,85,92,88,90,94,96,122,108,95,98,110,105,100,88,107,96,95,88,106,102,104,105,91,98,97,100,90,96,97,130,98,103,106,96,99,101,102,102,93,100,93,106,88,104,102,103,113,98,98,103,106,114,93,114,97,100,104,109,91,103,102,103,104,99,87,105,102,92,92,107,89,92,94,95,99,98,103,101,97,108,103,108,111,117,99,101,90,106,100,96,104,102,99,94,109,94,93,93,83,110,92,98,88,97,90,99,94,110,92,91,93,102,106,89,88,108,105,112,93,97,91,102,97,85,103,93,85,111,99,106,96,96,91,101,104,103,104,98,91,93,110,101,99,106,106,97,98,94,93,100,104,108,107,109,90,101,111,109,99,96,100,108,96,90,104,85,107,105,96,104,99,100,95,110,97,104,91,109,103,98,104,99,102,97,95,95,94,101,101,106,95,96,115,97,98,107,99,104,98,104,96,87,95,109,118,92,95,104,98,99,108,113,97,112,97,102,108,89,98,91,92,97,97,95,102,111,92,100,118,104,91,111,109,109,97,105,89,88,101,93,104,89,107,80,110,98,98,112,101,97,95,100,118,103,105,101,100,98,86,101,91,97,73,92,91,97,106,104,98,94,95,100,109,95,105,93,94,107,111,94,107,87,99,100,88,91,99,98,112,101,108,107,107,102,100,95,103,100,104,100,105,100,100,104,99,90,99,113,105,101,107,99,120,97,104,91,96,97,94,96,96,110,100,112,109,107,99,100,102,99,95,95,110,88,111,98,91,99,105,102,111,97,99,91,108,99,114,102,102,99,100,101,95,102,90,91,104,85,96,107,98,104,85,94,103,97,110,107,103,91,93,107,90,99,97,107,108,89,77,96,102,93,109,93,93,95,96,99,107,109,103,104,100,109,103,96,88,93,106,111,105,88,111,103,105,101,98,107,97,98,104,106,91,108,102,84,100,102,95,93,112,114,93,104,101,96,97,105,106,98,101,101,99,105,105,100,111,108,108,101,107,112,101,105,97,102,95,103,100,103,100,102,103,107,96,102,106,110,95,105,103,92,101,94,97,104,91,104,108,115,104,95,94,111,110,92,105,93,100,117,100,107,103,100,102,98,94,112,102,106,98,102,104,101,94,100,90,104,98,107,102,97,107,102,103,101,105,96,117,106,102,105,96,100,104,96,102,100,110,89,105,98,105,108,116,102,92,114,116,112,89,73,96,99,116,104,101,104,100,102,110,94,109,105,103,103,92,103,110,108,88,94,103,102,107,101,104,103,100,105,95,89,94,96,99,83,114,123,106,113,105,110,101,119,112,101,109,115,101,94,93,116,97,86,96,83,102,94,92,102,110,100,94,97,101,91,97,91,116,91,99,95,89,114,96,102,98,103,95,111,110,114,104,93,113,94,113,90,101,105,97,99,99,89,102,93,115,65,107,101,100,101,99,105,87,95,99,104,104,111,105,97,106,112,95,112,98,99,108,120,100,103,101,105,97,98,109,100,101,94,94,79,97,93,111,101,98,97,96,113,100,116,96,99,92,95,95,95,98,97,98,93,99,90,103,91,91,94,82,88,107,105,114,103,106,100,104,106,90,96,97,80,92,112,99,98,107,108,101,81,94,113,98,110,101,105,91,107,96,105,109,105,95,102,98,97,101,107,103,95,101,95,85,102,98,101,92,98,97,93,107,86,93,92,112,89,121,110,110,104,104,98,91,100,98,91,87,101,91,101,106,99,108,110,95,108,91,96,105,112,111,108,107,106,92,102,114,94,86,92,91,109,98,97,93,105,95,99,107,103,105,95,101,104,97,98,95,91,111,95,107,98,108,108,108,110,107,95,104,104,106,99,103,98,87,95,99,83,89,111,102,101,100,99,98,96,113,79,110,96,97,93,104,107,104,106,96,104,99,100,98,107,107,104,110,97,91,97,112,103,91,101,98,101,100,101,81,96,94,107,94,111,109,103,102,98,104,101,103,107,93,110,94,101,115,107,107,106,71,87,100,108,101,100,103,80,102,102,99,95,101,109,95,94,101,115,106,102,101,102,104,96,117,99,91,96,87,102,98,92,107,82,114,100,102,113,105,110,103,91,104,102,112,106,97,93,112,92,106,99,96,107,92,98,98,106,106,99,105,104,105,103,108,109,105,101,92,87,101,99,97,121,117,94,108,112,96,95,94,115,103,103,97,85,98,108,100,109,110,100,99,95,91,101,102,102,101,103,95,109,103,99,93,97,100,109,94,95,93,103,109,77,91,92,108,88,106,95,94,96,96,98,94,104,97,94,115,83,108,105,102,103,98,96,101,105,109,97,105,95,103,95,107,102,107,105,106,109,106,107,108,112,88,113,98,101,105,98,103,108,105,105,97,110,94,112,96,106,102,104,114,106,105,109,103,98,110,105,99,103,103,109,71,98,109,108,108,103,95,106,111,92,113,110,95,105,88,112,107,93,100,105,104,91,102,93,92,95,107,105,93,99,102,101,104,87,94,110,116,82,98,92,103,109,101,94,104,100,99,88,95,98,112,100,116,105,98,98,96,109,98,103,97,110,96,95,100,100,101,94,101,99,94,100,107,100,97,112,108,98,100,102,97,92,102,100,103,104,93,92,92,99,112,94,106,95,96,81,102,109,97,84,95,99,94,96,88,98,95,105,108,98,117,108,104,109,109,104,97,106,94,92,91,102,98,105,103,111,91,99,100,96,100,94,109,108,87,94,92,105,109,91,98,101,106,110,102,101,75,102,103,101,96,107,98,105,100,111,98,112,112,96,92,103,87,103,103,104,92,98,106,97,101,102,107,115,102,106,95,110,106,91,101,103,106,113,110,104,113,106,101,109,111,110,103,98,96,99,95,97,105,102,105,99,97,105,106,108,99,99,84,92,100,99,102,112,106,101,90,112,103,106,101,106,101,105,97,95,99,100,101,99,103,109,104,99,116,101,107,108,93,100,92,95,106,100,100,99,108,103,99,107,113,81,99,115,112,103,102,91,95,101,96,104,99,100,114,100,98,106,101,102,104,96,101,108,97,116,91,95,91,104,101,106,90,103,96,95,100,100,102,109,95,97,116,109,104,101,98,91,113,103,94,114,99,85,96,111,117,92,98,102,107,105,99,90,95,110,106,113,96,106,95,89,91,99,91,98,103,92,93,99,92,104,97,102,99,102,89,96,94,107,104,88,114,113,99,100,90,105,103,96,104,92,99,117,99,107,102,91,101,98,98,94,104,86,103,98,91,109,91,101,113,109,94,99,100,95,97,85,104,102,98,92,96,109,99,101,96,101,102,94,100,106,93,103,113,96,100,98,96,118,100,103,108,101,104,95,111,94,108,104,99,103,103,104,95,98,102,99,99,98,91,101,100,97,97,107,91,83,105,107,102,102,109,102,118,104,88,97,102,97,103,102,102,94,109,109,72,94,94,91,98,102,100,97,100,110,95,108,98,102,104,101,99,103,96,104,106,103,94,108,96,98,87,65,109,110,104,109,105,105,103,101,105,96,107,106,104,97,103,98,102,102,98,96,95,98,100,94,105,98,104,104,94,95,100,103,99,93,102,84,97,104,105,107,109,92,112,104,111,108,100,94,107,112,100,92,95,111,104,104,101,97,97,94,93,96,100,96,105,99,123,101,85,91,104,95,94,98,104,100,107,112,88,108,93,85,98,105,109,113,99,100,97,99,111,95,107,100,99,110,101,100,92,104,97,101,105,121,113,109,108,110,94,91,104,104,107,88,98,113,116,104,102,94,89,101,96,109,95,109,104,125,96,104,112,89,127,112,99,98,106,103,101,99,102,100,96,101,98,100,101,111,91,110,102,94,97,110,102,86,91,109,112,96,103,98,87,101,95,103,89,113,102,103,107,104,122,107,101,103,97,94,104,105,103,107,97,81,106,101,92,114,94,103,102,98,99,110,105,96,100,110,92,99,113,99,96,100,87,94,112,98,98,73,95,101,99,97,99,109,103,96,113,111,98,116,100,98,87,111,89,113,105,109,83,96,102,104,101,106,96,94,114,107,97, +698.57385,103,91,90,106,95,95,98,114,99,101,109,103,104,100,74,100,99,104,113,86,98,91,106,67,89,82,105,110,91,103,91,108,98,93,114,96,109,97,90,105,92,106,94,105,118,100,98,100,108,104,105,85,96,91,96,85,96,86,101,99,96,88,102,100,103,99,86,91,93,98,97,105,101,99,82,101,97,94,105,106,110,105,95,98,96,117,98,97,101,100,104,103,112,83,99,84,109,99,107,93,105,117,91,96,98,95,91,104,101,98,105,104,99,96,105,109,99,104,111,90,91,92,97,112,95,101,106,82,101,109,91,101,100,98,106,98,99,115,97,94,96,96,98,96,93,106,106,105,94,94,75,89,114,94,98,90,95,86,104,107,86,108,100,88,104,106,101,97,95,90,96,96,107,101,92,101,101,97,103,101,94,105,78,112,103,92,92,94,114,112,128,93,94,95,87,101,100,102,97,105,99,96,109,110,110,117,102,111,106,103,92,104,115,101,104,108,95,96,98,96,106,83,107,99,90,101,94,103,95,83,96,99,99,95,95,96,101,100,86,97,102,81,86,97,103,109,100,95,99,95,111,104,94,95,100,112,96,111,96,104,100,106,94,89,87,101,101,87,95,102,94,106,96,127,100,110,100,103,95,100,106,90,101,100,101,81,98,105,97,109,99,95,101,96,111,109,112,109,99,103,104,99,92,108,102,99,104,99,113,104,87,107,105,100,106,99,97,108,86,94,95,97,102,110,98,97,98,71,111,112,101,92,108,102,78,95,100,100,104,92,91,104,87,93,102,102,98,82,100,110,110,108,81,90,92,100,97,96,106,100,110,89,100,101,94,104,95,95,98,107,99,100,87,88,105,108,102,94,97,99,96,95,101,93,99,94,93,111,109,91,98,88,96,101,98,100,105,101,95,106,95,101,106,109,116,113,93,108,99,92,96,113,106,99,97,106,97,97,102,114,93,91,99,119,99,92,92,93,104,96,99,94,91,98,99,68,98,76,100,95,95,104,105,114,112,111,109,97,100,96,94,131,95,107,99,97,98,99,93,103,100,95,98,103,99,94,96,97,80,88,100,97,98,90,107,88,98,107,99,96,95,97,94,93,107,103,110,109,95,93,102,109,103,97,96,104,96,94,110,96,92,89,98,105,99,98,110,115,109,99,101,78,91,100,91,87,106,103,112,90,99,99,97,111,106,103,102,102,100,102,100,100,104,98,102,109,87,100,96,101,89,98,97,104,103,99,98,85,91,107,98,110,98,91,94,93,104,99,96,116,96,99,100,99,95,104,108,98,111,98,93,108,97,94,102,95,96,96,100,103,106,105,98,103,94,85,114,99,103,117,100,82,100,97,110,109,93,109,99,104,102,98,102,99,103,89,101,98,109,108,87,95,108,92,98,105,103,100,103,97,100,90,100,97,114,98,97,109,100,112,102,96,101,110,92,77,103,96,103,109,104,96,104,98,103,96,92,101,117,110,97,115,109,90,91,101,112,94,102,114,101,97,105,114,86,105,99,110,123,90,104,99,106,108,111,104,97,93,111,96,100,101,103,97,92,105,101,105,107,113,96,95,100,104,98,82,94,99,101,103,89,73,98,91,100,106,94,101,91,106,94,97,99,103,106,95,88,101,106,99,105,109,105,97,94,93,88,102,94,95,93,96,98,96,101,99,103,100,96,111,98,102,102,100,104,96,104,96,99,98,113,100,99,98,100,89,90,110,104,96,110,102,95,97,92,105,99,105,97,100,104,101,103,89,94,90,100,101,112,105,100,118,104,95,101,118,102,105,92,111,112,111,94,107,87,103,96,92,109,104,101,106,82,101,110,107,90,106,109,90,107,101,112,108,101,96,106,95,108,122,112,94,100,90,93,97,88,98,92,92,106,104,104,100,88,96,110,87,96,92,87,94,98,113,79,90,96,105,113,100,109,100,97,95,109,96,105,102,98,100,92,106,104,99,115,106,92,112,107,103,92,106,99,107,105,103,117,93,114,97,103,91,98,100,97,107,101,135,110,109,106,103,101,93,107,99,95,97,120,100,99,97,99,105,119,88,90,98,101,101,116,95,106,98,95,87,90,96,97,111,98,115,105,108,98,98,98,101,90,100,94,105,105,104,97,89,95,98,101,88,99,90,107,106,91,109,101,87,78,104,103,100,95,101,110,99,98,114,101,87,100,105,104,95,95,91,100,103,64,101,88,92,100,103,65,100,108,104,99,86,94,97,94,94,101,100,107,101,83,98,87,109,103,96,93,99,100,97,96,109,98,96,108,100,116,105,103,99,104,78,102,105,99,96,99,105,106,83,91,106,100,102,100,87,105,107,106,102,95,99,99,111,114,100,112,82,92,100,107,108,105,117,93,99,87,95,92,99,98,95,105,104,99,105,80,102,99,103,78,89,90,100,99,100,109,95,105,109,102,105,94,102,92,99,74,101,99,92,95,93,91,119,94,106,90,110,94,95,95,106,104,89,101,92,102,96,103,100,98,109,103,95,106,100,102,99,111,107,109,96,104,102,100,102,91,100,100,104,100,102,96,105,89,92,104,109,114,106,94,99,85,96,104,88,96,99,95,101,97,88,90,92,122,110,95,93,108,98,99,97,103,96,85,96,104,95,110,100,99,118,106,100,105,95,90,105,112,100,102,98,92,101,103,100,91,99,99,100,103,103,100,93,92,95,113,90,93,106,104,99,103,100,104,100,100,96,98,101,101,99,113,97,109,105,123,84,103,103,98,99,93,104,107,104,109,110,95,97,103,108,100,107,86,105,110,105,94,79,99,92,100,99,82,108,95,97,118,94,84,112,97,107,112,91,95,103,112,102,104,101,93,104,90,100,95,96,105,107,93,105,96,95,108,106,117,102,102,96,92,107,96,92,100,110,100,95,90,103,102,116,107,96,102,94,98,108,98,93,98,102,93,102,90,106,98,99,100,95,111,107,105,112,83,105,116,96,101,106,107,98,108,117,86,87,111,102,108,87,104,87,104,96,95,98,106,100,103,106,101,100,102,86,101,111,107,98,101,90,99,98,88,100,109,96,106,92,92,96,88,101,103,103,99,87,96,104,105,99,102,102,92,99,93,89,110,96,109,110,90,103,109,84,99,107,96,121,106,102,98,95,95,103,117,119,101,101,109,106,91,92,96,102,96,105,95,98,94,99,102,101,98,102,97,101,105,107,109,92,101,94,97,105,91,85,105,98,99,91,101,98,105,102,102,92,89,103,107,101,104,88,102,88,96,106,102,100,107,108,90,104,100,97,100,107,104,102,89,97,99,97,93,89,100,99,94,110,107,96,100,104,94,95,106,93,105,98,96,99,102,86,101,105,108,81,105,91,103,102,105,101,94,95,104,104,113,100,102,96,98,96,102,112,87,99,68,102,98,110,105,101,100,99,100,113,105,94,105,99,106,95,110,82,106,92,92,103,102,101,106,100,100,92,102,96,97,109,103,92,93,86,99,100,103,92,89,100,101,98,106,118,102,106,106,106,101,106,107,96,104,98,105,97,103,97,115,100,91,102,99,109,98,100,95,102,97,98,101,105,95,115,105,110,99,102,95,99,100,106,104,92,100,109,102,100,111,97,103,91,93,97,94,101,85,98,62,93,109,103,118,100,91,107,94,101,93,92,79,95,99,100,105,95,104,101,98,94,67,100,100,101,108,102,94,96,92,90,102,99,102,111,102,97,93,109,102,105,109,105,101,97,104,96,97,97,96,97,110,115,98,95,90,123,94,102,119,100,110,105,109,103,87,97,108,105,102,87,91,97,84,101,119,97,98,97,105,109,118,96,104,105,113,92,94,103,96,98,119,93,102,110,117,107,99,102,94,109,100,111,103,103,101,80,100,116,110,94,104,99,98,96,94,106,104,101,104,106,104,89,93,101,91,96,101,96,87,96,103,89,99,90,101,97,102,88,99,93,102,88,105,109,91,96,93,121,98,105,101,93,95,103,102,91,109,105,77,101,105,106,84,116,109,97,101,86,113,108,93,102,92,99,108,100,100,93,96,94,85,107,99,108,107,108,98,98,102,99,105,105,108,98,96,99,84,90,99,93,129,116,103,119,102,109,104,104,101,106,94,112,106,102,102,110,105,99,107,95,100,102,111,94,101,101,99,101,101,92,106,107,101,98,83,95,95,88,98,106,96,105,98,99,92,105,104,100,113,106,93,104,100,107,98,107,101,98,106,103,107,102,92,101,101,95,94,105,98,98,105,117,112,92,96,114,112,91,101,105,108,99,92,98,96,112,97,97,111,101,110,98,95,104,109,102,106,100,95,107,105,103,98,102,102,109,75,99,103,78,101,95,109,103,96,97,125,105,105,90,105,100,98,107,102,108,102,107,102,77,94,108,99,100,104,105,104,93,100,95,102,117,106,106,87,99,96,105,121,100,92,117,106,99,101,99,107,91,100,94,105,106,115,107,101,110,97,92,93,101,92,94,86,101,103,99,97,97,99,90,96,94,103,100,91,101,91,104,106,101,116,108,94,92,93,97,111,100,101,88,104,113,110,97,93,98,96,112,104,101,94,100,88,102,97,100,103,106,100,90,78,95,92,96,108,112,108,111,101,96,100,97,104,99,90,94,105,108,97,98,94,108,101,96,109,94,89,100,102,89,102,96,93,99,96,98,98,100,103,95,100,98,101,95,94,90,104,111,108,101,101,103,89,101,108,93,89,95,95,104,109,94,108,107,95,93,104,102,103,95,107,99,102,94,103,106,101,114,100,98,100,102,94,96,106,96,102,100,105,111,107,93,91,98,101,95,99,101,100,105,94,105,95,102,99,101,93,85,85,114,110,98,106,104,126,89,101,97,102,95,98,95,101,88,116,106,101,95,109,103,102,119,98,102,95,105,104,103,103,101,98,105,95,90, +698.71515,112,89,91,84,105,105,101,81,105,101,93,111,100,75,112,82,101,85,92,91,105,94,98,105,99,116,73,103,112,109,105,101,105,89,113,98,99,102,100,109,88,95,98,93,98,106,97,111,90,108,107,105,91,105,94,99,96,92,75,103,101,91,104,98,102,114,94,102,112,100,112,99,111,88,97,98,88,102,92,99,99,109,105,100,93,96,106,106,127,107,95,106,87,95,96,106,90,107,103,105,88,95,105,103,97,100,98,103,87,86,100,93,98,86,97,95,106,99,102,106,103,99,90,106,92,99,107,91,76,110,104,96,103,104,95,98,94,98,107,96,99,91,100,96,100,96,95,106,99,106,114,98,98,109,101,96,96,90,102,87,93,100,100,109,86,98,99,97,123,99,108,101,97,96,96,101,101,92,118,97,113,105,100,102,116,97,99,91,92,109,100,110,95,109,97,107,100,96,92,93,106,88,104,98,93,104,108,96,97,99,89,95,108,96,103,92,96,94,97,103,109,107,122,103,110,99,98,90,75,104,99,100,109,98,98,101,102,101,108,97,101,95,111,122,101,78,103,106,105,97,104,102,98,99,107,97,99,103,90,91,100,94,108,102,102,103,101,103,114,99,95,101,104,105,105,96,105,116,94,102,90,93,104,101,95,108,85,108,98,102,113,98,99,109,117,101,76,98,95,96,87,98,112,96,98,103,106,104,103,107,95,104,96,100,110,95,99,99,101,102,92,104,110,109,67,91,100,96,104,97,105,88,105,98,90,76,104,97,102,106,96,104,96,88,105,100,101,97,129,100,103,104,86,104,96,97,95,101,90,110,106,98,96,97,98,99,118,105,113,110,101,99,103,105,114,86,103,97,102,100,110,109,93,91,101,94,82,98,107,97,103,95,94,103,95,98,95,101,102,88,92,95,101,98,98,97,95,107,107,104,101,98,109,98,108,97,98,87,106,102,102,105,101,107,97,101,97,103,105,109,91,108,98,101,103,110,94,95,101,97,107,101,86,95,98,98,90,95,104,109,94,95,105,95,97,95,106,101,109,103,102,104,101,110,100,109,101,97,92,117,92,88,113,100,102,99,96,107,90,99,104,105,104,105,101,101,104,106,109,97,107,94,102,108,89,105,89,101,96,109,101,107,88,95,88,93,93,96,100,96,101,97,105,91,98,103,104,101,98,84,99,101,96,107,100,98,102,96,91,110,100,94,101,108,100,105,109,99,102,101,96,108,99,103,109,96,98,105,100,94,108,96,106,109,107,80,109,92,98,100,100,100,116,106,105,95,101,104,95,94,82,97,94,103,93,95,107,94,101,103,98,90,112,99,101,94,90,86,105,105,112,95,93,93,101,107,104,109,95,89,106,99,88,94,95,113,107,99,77,107,110,94,106,100,110,108,102,105,102,107,103,102,105,100,116,102,99,110,108,91,100,97,88,107,101,107,101,99,106,90,93,104,98,103,93,101,99,92,106,103,105,103,98,106,108,104,111,105,98,95,102,99,93,102,92,94,90,90,106,113,101,89,105,91,106,97,97,91,98,78,98,112,112,96,95,108,98,99,88,107,101,110,103,102,109,94,91,117,100,90,103,106,106,106,103,99,108,105,98,75,110,106,107,100,100,100,103,107,96,111,106,108,114,96,99,91,101,94,86,104,98,95,104,105,92,98,109,100,102,100,109,92,101,109,107,97,101,103,87,97,104,76,92,100,97,101,99,107,98,106,105,93,93,101,95,109,96,97,105,99,115,108,103,99,100,89,103,97,98,130,106,112,102,95,106,103,111,100,95,115,113,103,101,129,96,88,96,98,102,104,95,101,107,102,105,103,107,111,96,104,106,102,98,88,105,103,106,98,95,126,88,119,111,108,115,109,98,95,107,95,97,108,108,92,90,105,101,94,99,104,101,98,101,91,94,109,87,100,80,106,89,88,96,106,100,103,99,99,98,97,95,101,104,95,101,92,78,106,116,103,98,105,99,113,104,92,104,96,91,97,96,104,86,100,110,104,109,107,120,99,106,95,98,105,113,89,97,102,105,102,101,101,96,95,97,107,94,88,88,95,112,120,90,91,100,74,101,104,110,104,108,102,101,103,95,96,96,103,93,100,89,118,105,101,96,95,106,91,94,95,100,133,96,97,101,92,103,96,96,101,105,117,106,99,118,100,102,93,98,106,100,104,104,97,99,95,102,93,106,105,98,104,103,109,107,112,113,99,102,88,92,103,116,102,100,88,103,94,99,111,99,92,103,115,90,94,100,101,93,104,98,99,107,98,107,96,109,99,99,100,93,99,105,114,101,95,114,104,95,100,97,120,95,93,99,107,115,98,96,96,100,96,115,98,104,93,116,100,103,113,94,104,77,86,102,99,108,96,91,97,97,104,101,106,92,121,91,96,96,110,105,105,94,111,98,110,91,120,99,96,116,103,116,81,104,106,100,92,97,99,91,97,93,103,100,103,90,98,100,107,95,106,99,117,87,102,86,102,115,102,108,100,88,108,91,98,100,92,100,106,88,103,98,105,106,100,91,105,109,109,109,100,105,125,115,107,96,100,99,103,108,98,102,101,102,101,85,109,95,82,91,85,95,101,106,103,96,98,97,79,98,117,102,98,104,108,105,105,89,108,106,95,102,98,99,109,104,91,108,105,105,100,105,98,89,103,102,105,92,104,91,100,103,108,84,102,112,93,102,97,93,96,115,101,98,100,104,99,95,99,95,102,94,92,110,98,97,74,100,98,109,94,94,98,97,94,93,91,99,99,95,109,110,94,100,88,100,108,95,106,91,108,90,99,95,92,109,105,98,106,102,109,99,91,95,108,108,96,101,98,103,99,87,112,94,96,94,95,91,96,113,100,98,102,104,93,107,100,110,108,101,101,102,113,98,89,101,95,103,108,93,105,108,103,101,100,86,90,88,95,82,103,90,99,99,95,96,97,103,100,104,96,92,105,100,95,94,95,103,105,106,96,104,108,131,110,95,102,103,95,109,101,99,101,113,87,116,80,105,103,101,102,101,97,101,106,95,69,98,99,107,92,94,104,102,96,107,112,94,117,91,94,105,97,113,98,83,102,82,84,93,103,98,101,113,103,112,90,94,115,116,95,102,109,94,98,97,98,103,96,85,98,96,94,117,97,89,101,89,98,102,96,88,100,99,109,99,95,101,114,96,104,102,96,98,95,100,99,103,99,105,113,92,90,92,105,102,116,91,124,96,98,108,104,101,106,96,95,102,105,99,100,105,98,108,98,108,104,106,104,95,103,100,83,101,87,103,75,92,96,95,112,97,101,73,113,103,96,94,107,98,105,92,109,85,97,97,87,93,95,104,102,93,91,97,96,101,104,109,93,104,95,115,97,101,96,105,110,92,101,104,99,93,90,113,103,100,95,101,91,92,97,99,92,105,104,105,104,92,117,112,98,102,113,108,103,101,108,96,95,83,102,99,107,92,84,97,100,101,95,101,109,101,93,75,100,110,101,104,104,98,104,87,100,95,113,107,103,105,97,103,98,99,100,99,99,103,93,90,116,93,104,100,102,103,108,93,93,101,113,112,86,95,98,104,96,106,108,108,102,81,93,87,102,96,92,104,95,98,101,95,85,95,107,69,88,98,96,97,98,102,93,78,117,96,96,105,89,95,105,101,109,97,102,108,94,86,89,108,93,99,106,106,100,101,95,102,94,102,91,97,96,97,98,96,87,101,111,103,104,105,96,100,107,103,107,87,105,112,103,110,94,88,107,91,98,97,105,106,92,93,106,89,97,109,104,108,98,91,105,109,97,88,95,95,102,103,102,103,103,108,75,98,100,105,99,100,109,100,97,95,101,103,95,95,100,100,101,111,110,115,97,102,102,102,106,94,113,83,96,95,107,106,62,88,91,98,85,92,93,106,89,96,109,97,107,106,94,96,98,96,97,108,99,107,97,91,98,118,102,104,113,88,99,97,101,99,92,96,93,101,103,91,103,101,94,104,93,87,92,106,93,99,99,96,98,92,109,97,83,99,99,90,95,102,91,87,98,69,99,94,117,98,100,112,104,98,102,101,100,90,87,105,88,96,99,106,98,102,95,103,105,100,92,86,104,101,101,95,102,99,96,100,105,93,108,102,91,98,101,106,99,104,87,100,98,99,88,96,105,99,95,103,95,105,91,109,103,100,102,110,112,94,102,98,111,105,105,109,95,96,102,97,104,114,106,107,95,109,99,89,91,102,94,115,93,98,102,100,106,78,99,95,103,95,85,99,103,83,107,105,98,103,111,111,92,98,89,93,106,93,112,120,101,102,96,103,93,84,107,99,107,104,103,110,98,105,96,97,88,100,94,114,105,99,90,105,119,109,100,108,112,86,109,109,102,108,103,94,87,111,104,110,94,105,98,99,99,105,102,98,108,88,106,94,88,99,108,100,100,96,95,96,97,94,113,103,89,101,109,99,92,96,113,93,83,93,90,101,96,92,95,93,101,104,106,100,102,109,112,92,91,107,98,104,95,84,107,96,108,89,93,98,98,107,105,90,93,111,92,97,101,101,101,94,101,84,93,93,98,105,103,112,88,99,103,100,98,109,96,105,94,110,102,115,95,104,84,104,93,81,104,73,104,99,93,104,98,101,102,83,109,106,101,103,110,101,108,98,102,103,99,103,121,100,108,106,93,95,93,109,86,91,92,103,101,94,108,95,93,94,90,96,105,104,101,107,96,86,99,87,106,101,97,98,93,99,80,96,103,106,90,105,99,98,102,85,112,94,102,105,107,112,98,87,105,99,117,97,98,97,109,102,95,117,109,99,107,101,99,118,98,99,99,93,110,85,98,93,104,105,97,96,120,98,92,99,92,122,98,99,98,101,99,104,99,96,98,85,97,104,103,99,104,94,98,106,104,113,104, +698.85645,106,82,101,104,106,91,105,95,112,102,105,86,115,94,115,104,103,112,102,107,103,103,103,98,96,91,92,103,105,99,103,93,116,94,105,94,99,107,100,98,109,100,118,110,107,110,72,99,93,103,100,104,104,91,102,129,114,109,107,94,112,96,103,100,98,104,92,121,109,99,99,105,101,103,100,101,106,97,103,100,97,100,77,90,103,98,101,106,114,101,110,97,98,99,84,103,96,109,100,87,96,105,109,98,106,103,101,102,91,101,91,102,104,98,105,110,103,106,108,96,100,106,98,112,108,95,108,99,101,95,99,96,91,103,103,110,95,102,108,106,105,100,103,89,98,93,110,101,100,114,100,97,113,91,106,106,121,88,108,93,96,104,94,102,89,103,104,104,105,98,98,104,107,97,100,101,105,104,108,111,102,109,97,100,117,84,96,99,108,90,99,99,96,108,110,107,105,101,109,104,100,111,92,106,99,101,105,85,100,100,105,96,98,105,127,101,95,104,102,103,108,94,102,96,99,108,93,99,103,117,97,94,99,105,105,97,102,98,109,98,98,112,103,100,100,93,108,104,103,102,85,104,96,106,97,112,98,101,87,100,121,113,108,94,109,99,97,97,101,117,101,91,106,109,68,95,107,103,113,104,97,103,103,93,107,100,94,109,95,107,99,104,100,103,107,110,97,103,110,93,98,102,95,103,92,104,92,112,104,104,95,112,112,104,93,94,100,99,86,82,121,119,105,95,99,100,102,97,108,104,99,94,102,105,100,115,98,100,101,104,100,104,96,98,103,96,106,109,97,103,103,102,118,106,100,96,103,98,105,98,95,97,93,97,101,99,102,102,112,111,99,101,97,109,98,105,94,103,105,83,108,113,99,101,93,104,109,109,99,96,109,89,97,99,107,98,97,89,111,103,103,100,107,95,102,91,97,83,98,92,104,93,99,103,99,102,107,98,106,104,71,108,103,95,111,95,90,101,98,100,99,91,91,100,106,94,97,99,94,95,95,104,102,99,96,106,105,97,104,98,99,112,94,100,107,104,101,88,94,101,100,88,100,105,109,104,109,103,106,98,103,115,94,107,95,102,89,96,84,94,112,102,109,94,104,102,102,103,96,106,100,111,103,102,91,92,102,98,104,107,108,103,100,108,98,101,95,87,101,107,94,107,94,97,102,95,96,104,95,113,104,122,104,98,110,103,108,106,99,109,102,105,96,99,89,98,117,86,107,109,99,105,100,111,103,106,107,102,116,89,104,110,103,81,97,99,111,102,100,101,97,104,98,100,102,101,102,105,101,99,93,98,106,103,97,106,106,91,101,99,102,97,101,100,104,97,113,103,95,80,107,102,89,103,99,106,91,105,106,92,95,101,108,94,99,94,93,91,104,95,102,90,94,97,97,91,106,96,92,99,96,103,101,106,89,104,92,100,106,96,95,95,97,95,99,105,112,106,114,105,106,91,99,108,117,97,102,111,105,91,94,105,97,103,131,105,111,102,92,105,113,105,97,105,106,97,119,111,109,108,105,101,108,113,104,113,87,110,111,111,105,102,104,92,96,98,107,102,94,104,99,102,101,101,112,100,105,96,101,100,103,93,98,103,98,108,101,114,94,106,100,93,109,99,84,102,109,119,100,96,106,100,100,95,112,104,95,115,122,109,112,108,93,89,100,102,95,94,106,94,100,102,91,101,92,92,102,102,103,105,105,110,96,100,99,93,115,101,102,97,100,99,92,103,103,99,90,98,92,67,100,80,106,103,101,101,105,101,100,98,101,103,108,99,98,92,95,97,99,105,105,105,97,105,109,90,99,107,96,100,93,90,105,97,102,100,102,105,91,96,105,93,100,95,95,99,109,107,110,91,100,102,109,105,100,113,109,98,103,98,104,124,83,94,95,102,113,91,102,121,89,113,121,88,103,96,89,106,107,100,105,97,100,98,92,99,109,95,106,119,102,106,102,107,98,96,98,103,105,99,91,106,106,94,104,107,105,91,96,92,99,97,91,96,106,102,106,117,103,86,94,74,97,97,116,91,98,96,98,103,105,107,117,91,113,106,97,96,97,106,101,105,119,105,99,100,100,115,102,100,104,107,103,108,84,80,110,120,111,100,100,110,89,106,94,114,104,90,88,107,92,88,97,92,104,105,114,91,88,99,89,97,110,99,109,91,110,117,99,99,95,108,99,130,104,111,91,101,99,109,81,99,110,95,103,100,94,100,108,95,102,112,99,96,107,100,97,109,101,105,104,102,114,101,97,102,98,93,107,110,98,111,100,109,106,98,105,96,114,97,91,100,105,108,105,115,97,99,104,107,107,105,97,82,120,102,105,90,121,110,110,104,98,108,71,92,100,110,95,109,98,107,100,104,114,104,102,110,105,94,103,110,105,110,105,102,98,93,99,83,99,105,106,94,102,102,99,95,100,113,92,105,102,105,104,104,95,101,105,96,110,100,101,90,98,93,87,100,101,107,119,107,83,98,102,106,102,64,101,117,112,97,99,98,94,106,88,103,95,90,99,114,131,109,106,96,94,96,87,109,99,100,103,93,91,95,94,94,107,96,105,93,99,90,98,95,101,99,98,98,102,101,102,100,103,107,88,101,96,101,104,96,108,97,99,114,94,93,106,104,110,101,107,99,102,98,105,107,97,116,93,117,111,112,98,92,98,103,105,90,95,110,96,94,112,103,99,100,96,93,110,101,116,106,110,109,105,105,113,105,101,99,108,99,111,92,111,110,107,95,111,102,115,95,101,100,99,100,103,99,111,107,103,115,100,105,104,101,103,94,103,88,75,107,93,97,112,89,113,93,106,96,104,102,99,106,103,101,113,96,102,93,119,100,97,87,109,96,88,91,97,104,96,103,100,106,102,98,100,109,100,106,110,101,98,104,98,103,103,105,105,98,119,94,108,103,120,111,92,101,103,111,102,88,117,101,113,97,96,105,105,103,101,102,94,89,113,101,95,108,92,90,100,99,99,86,91,96,94,104,96,102,103,100,93,94,91,94,100,88,108,99,104,104,95,111,100,96,99,106,106,98,105,102,94,107,71,101,102,106,101,113,93,98,104,104,98,99,92,116,111,95,108,102,97,108,105,98,110,99,98,113,119,105,118,111,99,101,105,97,104,121,94,104,106,85,101,99,106,98,101,99,97,115,101,103,113,102,119,102,112,98,100,115,100,113,106,103,116,96,103,92,107,98,102,97,102,89,101,106,111,97,106,94,96,111,104,99,109,106,98,98,114,104,102,93,103,114,105,115,84,113,99,99,104,92,98,97,110,89,94,88,106,93,97,101,113,106,100,93,112,124,97,94,101,110,101,104,97,110,95,73,91,98,101,103,91,103,81,104,97,92,102,97,108,106,101,102,107,102,94,94,96,114,107,96,100,106,98,101,101,105,82,101,100,101,94,99,101,100,89,87,96,110,102,100,96,102,98,93,112,104,109,98,98,113,96,96,97,92,102,112,104,105,100,112,102,95,103,109,91,101,98,107,75,103,124,94,117,95,113,108,92,112,99,113,103,104,95,91,91,94,109,108,111,97,110,97,98,90,103,98,100,96,107,102,102,103,101,101,111,102,125,94,106,108,111,96,100,108,99,101,101,104,99,105,110,99,98,102,98,109,100,94,99,105,100,87,104,108,95,108,104,103,98,102,98,109,98,110,109,101,106,102,95,102,93,105,96,105,108,106,106,102,111,96,100,110,105,97,99,113,91,93,103,102,106,103,103,102,113,113,85,99,95,94,109,106,96,99,96,110,111,108,102,99,112,96,112,95,99,98,99,110,107,107,102,106,103,105,103,90,106,98,110,98,86,109,104,108,90,104,100,105,98,109,101,101,96,103,99,108,99,102,109,99,96,97,109,98,100,107,103,90,104,92,96,109,98,104,91,104,102,109,106,121,111,107,90,110,101,99,109,92,99,106,97,110,119,95,107,101,95,100,104,96,105,95,105,104,100,105,92,92,99,102,104,91,79,96,100,106,101,97,100,100,105,90,97,99,119,104,110,105,93,95,109,101,107,111,102,100,82,100,111,106,117,116,103,101,106,105,106,83,99,104,105,99,107,98,101,110,104,102,100,102,75,107,100,109,101,99,104,99,111,107,101,105,85,103,100,106,100,89,121,100,111,108,96,119,105,100,99,102,104,98,106,103,86,101,105,94,101,103,107,96,102,105,104,97,99,99,122,101,111,93,95,106,114,99,100,87,90,103,104,92,104,97,102,76,114,99,95,105,99,100,113,113,117,114,104,95,105,95,97,92,98,107,102,103,112,106,91,99,115,98,103,104,91,99,109,106,106,115,106,97,105,110,104,99,100,106,100,100,109,104,108,93,102,109,84,114,81,100,89,90,91,108,105,101,98,119,104,81,128,96,109,101,106,110,104,97,103,98,96,100,107,101,103,101,104,109,103,99,79,100,111,102,112,117,108,96,112,105,106,91,96,114,123,98,101,103,83,96,104,91,104,99,94,103,99,111,105,99,109,100,106,76,101,100,89,105,87,96,97,108,84,85,100,109,114,94,97,110,109,91,118,103,106,112,86,108,98,99,98,106,101,116,98,88,95,91,100,115,94,103,109,101,118,106,94,98,105,99,113,110,101,101,93,98,103,117,95,99,97,92,102,106,98,100,109,98,90,102,102,117,113,104,100,105,89,92,102,104,107,101,104,104,115,105,107,98,101,109,97,96,103,107,98,87,100,109,94,104,94,102,108,88,110,99,112,112,103,90,103,96,88,100,98,104,93,117,107,104,98,112,95,98,85,115,103,106,109,96,90,102,95,105,114,109,105,89,105,104,94,90,101,110,95,102,102,106,97,106,109,91,97,95,108,89,110,113,100,117,102,101,99,104,107,99,120,98,103,92,113,106,115,100,103,106, +698.9978,100,100,96,97,89,87,96,83,93,100,91,100,122,119,90,102,99,96,99,101,95,93,103,88,95,87,104,96,94,104,97,96,92,100,101,130,96,99,97,104,90,99,90,97,89,114,97,111,89,106,97,97,100,83,87,97,99,91,99,96,108,116,109,98,102,99,102,95,117,95,106,120,93,98,103,89,105,107,94,99,120,100,88,97,92,101,85,111,95,95,100,107,99,103,102,97,94,99,83,83,75,100,103,100,104,86,97,109,97,101,98,100,94,98,99,100,107,100,106,82,99,100,94,90,105,101,112,92,98,95,106,102,97,98,97,106,111,102,95,99,89,108,109,101,97,97,105,105,95,90,90,93,97,80,91,99,98,98,102,105,113,113,98,113,99,97,95,97,105,96,97,105,96,114,93,104,100,83,102,99,93,113,106,102,107,108,100,95,91,95,94,102,99,97,105,105,102,102,102,101,98,102,121,93,88,102,87,106,104,96,95,99,97,97,100,98,87,90,96,89,105,104,102,103,93,92,95,99,112,94,99,95,95,99,99,96,106,109,90,96,97,99,100,111,97,99,99,106,111,88,102,82,102,107,92,112,100,101,87,103,106,99,101,97,87,93,92,103,101,89,104,91,102,87,101,102,95,109,75,98,99,103,102,95,97,91,97,106,103,105,97,94,103,87,99,108,98,102,83,94,96,90,110,90,90,103,98,103,96,100,96,117,109,97,97,111,75,88,105,98,86,99,101,99,104,91,99,87,109,105,104,99,117,103,94,90,101,92,101,94,99,86,89,87,104,99,104,91,112,98,109,95,102,91,103,108,101,61,105,106,91,99,98,88,87,93,114,96,92,101,103,105,72,96,106,95,91,104,87,105,110,99,103,100,72,114,103,99,104,101,101,101,91,96,96,90,96,87,97,94,106,99,91,95,94,95,101,109,85,99,96,87,107,111,95,100,91,104,98,75,75,92,104,92,104,93,97,92,84,113,111,86,101,97,111,94,99,104,96,108,104,88,90,81,86,98,89,97,105,100,89,104,112,95,103,96,97,89,92,96,106,107,111,101,98,100,112,100,103,96,102,105,101,83,97,92,94,100,107,92,87,108,98,101,101,96,129,97,89,92,96,95,103,87,103,96,105,93,99,103,97,100,97,108,109,96,97,102,101,98,89,96,103,101,98,101,99,96,93,98,96,101,101,99,117,90,90,93,96,109,103,109,93,106,97,104,103,91,99,107,106,94,99,88,100,95,99,100,114,97,111,95,98,101,111,102,105,97,98,98,98,99,97,98,88,109,101,102,100,91,87,97,94,92,104,104,99,101,100,121,94,99,102,103,108,97,75,103,91,91,95,104,88,92,107,96,106,99,104,97,89,101,103,99,108,96,109,101,92,108,94,98,98,102,101,86,98,88,106,93,81,109,95,97,101,98,99,98,95,88,98,96,103,105,96,105,104,95,98,91,116,94,91,92,97,84,107,85,95,104,96,104,101,89,94,98,84,101,98,105,107,88,100,101,95,91,110,91,105,103,103,95,100,88,94,92,108,96,103,99,99,99,101,91,96,91,105,111,97,95,91,110,93,99,96,98,104,108,86,82,93,95,94,117,104,107,103,104,98,104,98,103,105,107,91,97,96,92,101,103,98,103,106,98,99,95,103,103,110,106,98,95,106,91,99,95,91,89,91,107,96,101,120,91,104,96,100,103,113,87,110,87,107,95,108,87,100,100,102,101,105,107,92,96,113,107,89,104,100,88,104,93,60,97,94,91,97,103,118,90,103,106,106,104,102,100,92,98,96,104,99,100,79,101,106,83,102,87,98,109,96,100,93,97,105,99,100,104,102,102,103,99,106,98,100,100,105,99,87,97,99,100,85,98,100,96,89,103,105,87,104,95,90,106,95,97,89,91,100,106,104,99,95,87,97,96,112,91,98,95,96,102,103,91,97,92,97,97,102,115,92,97,101,97,92,91,102,99,131,104,97,92,91,108,97,98,94,102,96,96,110,109,103,95,98,101,104,101,106,96,106,99,107,103,108,95,104,107,100,83,91,103,101,85,95,96,97,117,86,99,98,87,115,100,106,103,96,103,106,99,103,89,95,99,99,103,102,111,100,95,85,123,96,104,106,99,90,103,98,109,105,109,94,113,89,102,96,102,95,104,112,99,94,105,91,94,98,112,91,101,86,93,107,107,103,96,95,95,101,72,99,98,111,100,104,93,101,99,98,102,87,87,107,90,98,78,100,101,100,101,99,99,71,97,99,110,91,99,107,99,98,112,99,107,104,105,104,99,100,107,92,100,96,102,103,101,107,98,87,94,96,106,109,85,95,99,93,126,90,95,107,113,103,102,98,88,95,118,65,111,82,94,96,82,86,100,109,103,92,97,96,115,99,102,86,92,79,98,91,105,108,99,86,83,106,110,104,94,91,102,93,100,99,76,95,90,98,101,104,87,95,104,95,120,101,109,102,86,102,101,93,99,90,102,103,110,106,91,106,101,91,94,85,109,91,126,98,98,117,94,102,112,113,93,99,98,88,92,97,113,109,101,100,95,121,109,91,117,96,104,99,99,103,100,99,92,94,96,104,90,93,90,92,108,84,92,87,101,108,99,102,101,110,91,102,103,107,100,95,107,106,101,109,95,96,101,98,80,121,100,138,99,101,93,108,92,95,90,105,107,91,94,108,106,101,106,106,95,102,108,107,97,102,111,91,98,107,96,88,104,96,103,94,97,103,98,100,89,79,105,93,105,102,97,103,98,112,103,100,97,91,113,92,90,97,110,70,103,96,99,95,107,98,108,96,98,105,96,109,95,98,109,104,91,88,91,99,106,97,98,107,100,91,122,91,90,106,112,88,106,109,86,101,113,95,100,90,95,71,118,112,100,102,105,102,61,105,105,97,107,112,105,115,96,100,95,97,105,105,92,100,92,94,93,105,99,93,84,97,91,95,98,102,100,101,95,109,103,97,96,98,83,91,92,99,95,104,111,104,96,98,103,100,100,100,102,115,93,101,100,93,101,93,96,96,95,107,112,110,104,78,93,106,99,93,105,108,94,106,109,103,102,98,104,104,91,98,105,104,116,114,109,114,101,113,101,99,102,90,97,95,96,94,109,106,98,104,102,101,106,100,86,109,98,94,100,103,103,99,121,101,102,105,99,109,101,100,93,101,108,109,90,89,102,117,85,102,93,105,108,69,90,106,102,101,99,99,103,87,100,102,120,72,91,100,106,90,92,107,88,104,105,96,97,103,95,113,99,89,109,111,104,107,100,115,103,93,91,110,102,76,129,97,104,97,100,100,98,102,94,98,101,112,105,92,96,100,87,112,93,102,102,114,97,103,102,112,98,116,100,105,100,93,104,108,102,101,98,94,92,102,104,91,101,113,112,99,107,108,103,102,103,104,104,97,94,101,98,112,105,107,102,98,101,91,101,107,96,101,100,106,102,92,93,81,104,97,102,104,99,101,97,88,107,110,94,94,103,106,102,118,95,106,99,100,100,100,100,105,116,108,101,96,101,93,95,105,116,97,96,89,109,95,106,108,94,100,85,97,105,103,112,96,101,94,101,102,90,99,97,94,99,102,98,106,86,94,103,90,103,96,102,103,112,90,101,110,87,96,98,86,95,111,97,98,128,92,88,100,104,100,97,103,109,91,90,82,106,100,108,99,107,102,101,96,92,95,105,110,104,89,90,97,98,101,103,89,97,88,88,104,98,97,93,104,105,87,108,98,89,103,109,97,104,111,97,104,97,98,98,91,95,114,104,100,98,99,98,99,93,97,103,93,91,89,98,96,99,101,105,114,102,99,94,85,99,103,100,94,107,107,96,105,96,97,94,95,92,101,100,104,103,91,98,105,92,90,100,100,99,100,108,84,105,105,84,105,90,86,104,91,100,101,90,99,105,92,90,109,98,106,89,95,103,100,95,91,95,88,99,102,116,93,127,100,76,95,101,101,100,91,103,95,100,95,98,91,100,91,94,90,104,84,101,101,101,98,101,100,100,104,95,108,108,80,99,99,103,101,97,94,90,98,113,95,109,105,91,100,98,114,96,104,101,102,104,94,99,101,96,100,108,101,113,106,114,101,108,92,99,88,102,106,113,100,92,102,102,91,104,94,88,99,95,97,79,93,102,109,92,103,99,96,99,97,103,108,88,95,99,104,103,98,98,98,101,92,101,111,108,102,107,107,106,96,103,111,108,105,96,104,114,107,98,109,99,110,94,110,94,100,96,116,101,96,104,92,101,119,109,85,95,100,93,97,97,98,91,100,109,96,104,103,107,86,97,101,106,93,100,104,97,103,103,102,99,92,101,91,113,95,90,119,96,119,87,120,98,101,98,98,96,108,97,104,106,94,97,97,100,100,103,111,100,94,106,109,104,92,94,109,95,102,106,100,101,92,84,95,79,135,104,91,96,95,90,98,99,96,102,88,90,98,94,99,98,100,89,109,101,101,100,95,101,91,102,91,95,97,102,93,81,97,113,87,107,96,92,113,87,108,88,91,109,85,100,97,130,97,102,93,109,104,96,101,96,105,95,91,102,105,104,95,104,105,116,98,97,101,102,96,97,99,95,104,92,91,97,91,92,91,99,102,83,108,104,99,110,107,94,92,105,100,93,100,102,111,92,110,94,96,100,100,109,91,103,92,104,96,99,101,96,84,100,112,92,101,99,101,95,112,105,110,89,98,76,108,85,94,88,87,98,100,104,101,100,107,100,124,105,102,97,101,108,99,103,103,96,100,91,104,100,94,91,102,103,104,113,100,94,100,105,99,62,94,100,100,104,81,97,99,91,104,99,88,106,107,105,115,75,92,96,101,100,97,102,92,102,118,90,101,94,93,86,99,115,67,87,90,104,98,99,104,91,105,105,106,69,100,96, +699.1391,88,105,103,92,96,104,66,90,99,109,109,94,105,106,115,96,96,98,103,104,101,100,91,104,104,103,88,96,105,105,94,104,109,103,120,106,110,95,105,99,95,97,98,97,110,103,108,102,104,100,103,104,96,97,110,86,89,94,117,91,99,102,90,100,112,107,98,98,91,91,103,91,101,96,101,107,94,97,110,96,105,102,111,82,104,92,102,100,104,98,102,100,99,116,104,111,91,90,99,99,94,111,96,102,103,99,96,98,96,86,88,100,90,93,99,98,108,103,94,108,99,91,107,102,104,103,101,95,112,100,101,100,99,94,112,105,96,99,95,94,103,88,90,99,102,102,99,95,99,106,91,90,101,98,105,102,105,103,99,108,92,94,92,93,99,101,93,105,105,104,98,91,98,100,102,101,83,91,105,103,99,98,100,100,103,95,94,97,98,101,100,101,96,91,96,96,99,109,100,98,98,94,91,86,103,109,105,89,111,90,101,97,105,102,110,105,105,93,106,102,99,96,94,99,92,99,97,106,98,107,93,103,100,108,102,103,102,104,114,95,99,98,105,104,97,92,111,103,103,104,107,111,104,94,104,102,104,99,96,92,96,100,104,91,84,129,104,90,113,90,102,92,94,96,106,104,97,94,89,88,95,100,99,97,113,108,91,102,96,96,94,104,131,83,105,108,83,104,106,99,80,103,96,102,96,95,98,99,97,97,83,105,98,101,99,99,107,101,93,96,104,102,109,106,99,92,102,90,112,112,107,92,98,103,93,90,107,82,103,97,99,82,99,93,101,100,98,99,101,104,106,104,99,106,105,111,85,91,110,110,108,87,91,101,100,109,89,101,110,112,95,98,98,103,98,92,103,95,103,104,100,95,104,99,95,102,99,94,100,101,113,95,100,112,101,82,89,104,95,105,104,102,87,92,103,94,98,95,88,88,92,82,108,101,95,88,97,88,98,93,97,100,81,105,118,106,93,105,93,111,107,97,88,97,95,93,99,92,92,94,101,100,99,94,80,92,85,101,110,103,108,103,94,100,99,97,98,96,97,95,100,112,101,95,68,103,104,99,100,95,99,90,91,96,96,91,109,88,94,91,109,108,87,94,105,97,107,114,93,93,97,105,91,98,92,92,90,105,112,97,91,114,97,108,95,92,106,100,98,108,103,104,102,90,103,102,104,108,95,98,104,91,105,101,104,106,108,92,95,104,103,103,88,95,91,99,89,93,98,103,93,111,93,102,96,96,86,100,106,108,91,90,104,90,98,91,103,105,97,118,100,93,95,96,97,98,112,94,102,102,99,86,100,105,114,100,113,97,82,105,108,91,103,109,96,91,96,102,111,97,109,93,93,91,107,101,105,89,114,93,101,92,105,93,94,94,122,99,90,108,102,99,117,104,95,92,102,96,104,96,101,98,103,88,98,94,102,94,95,74,86,96,99,107,100,96,103,101,104,104,109,83,105,103,87,95,107,100,101,92,88,99,117,101,103,99,88,105,95,104,100,108,103,96,79,91,109,99,124,94,100,96,99,100,101,103,95,91,108,99,103,103,104,101,101,112,94,106,96,98,103,101,105,104,113,88,109,94,100,95,113,97,100,109,95,97,107,103,106,95,102,103,97,90,106,96,91,104,97,93,83,95,101,109,92,77,107,105,102,109,103,91,93,100,89,90,95,95,102,99,107,100,104,103,98,118,99,104,105,121,113,105,81,90,106,91,100,98,82,92,116,126,88,101,96,105,83,103,94,96,99,99,104,91,107,100,95,90,107,100,100,106,114,108,82,104,91,97,120,97,88,92,100,103,91,93,106,101,95,101,90,98,68,95,100,102,91,98,98,104,96,106,108,94,111,93,96,100,96,85,104,105,95,97,112,108,100,107,113,94,101,109,107,96,97,81,98,80,83,97,93,100,108,93,100,106,100,91,97,122,98,100,109,102,97,114,94,95,101,98,97,112,97,100,102,94,97,96,107,100,96,102,104,94,93,93,107,89,97,97,105,106,84,110,97,102,90,106,105,97,98,99,102,116,107,80,92,99,93,101,95,104,102,103,97,94,87,78,105,97,94,92,110,97,99,94,84,113,97,99,106,116,123,88,100,110,90,85,89,100,99,95,99,101,94,97,88,98,101,93,111,87,113,105,104,87,92,101,96,90,96,94,103,98,109,94,102,98,100,108,105,87,94,101,96,97,107,106,99,100,96,94,92,99,97,105,96,106,95,110,88,105,107,106,94,100,94,93,102,93,101,102,89,73,100,96,103,100,112,98,100,102,96,99,110,102,104,111,99,102,105,103,100,106,95,99,93,99,98,100,100,109,99,96,98,96,113,119,109,137,101,92,105,93,102,104,113,104,76,105,103,104,102,98,91,92,95,96,102,100,80,100,96,92,92,115,96,90,98,96,104,95,107,100,108,89,101,101,100,93,108,106,91,93,99,94,102,102,97,91,99,96,98,107,94,95,99,99,117,137,101,87,98,99,104,98,110,99,108,101,79,100,95,103,106,109,101,107,100,97,99,100,105,102,81,101,100,101,102,102,105,108,93,107,107,90,108,96,99,99,100,94,82,100,100,112,80,112,99,98,93,93,97,121,97,94,101,108,104,116,104,101,105,101,106,93,100,110,95,99,95,83,91,102,103,95,104,94,115,101,101,93,106,105,101,102,94,96,108,82,79,94,113,107,112,104,108,98,113,108,108,110,105,96,97,105,108,114,101,108,107,98,102,108,114,95,100,100,102,98,114,94,95,102,95,108,91,106,98,100,91,102,108,102,92,100,77,114,105,93,79,102,106,111,103,99,112,113,133,100,97,101,100,96,86,94,92,107,99,110,117,108,103,106,98,104,89,104,107,112,109,102,108,112,108,98,112,104,107,108,113,95,107,107,90,105,94,100,112,105,105,92,110,108,105,109,89,101,97,102,111,117,110,111,100,88,97,110,100,98,101,106,107,107,99,109,100,94,100,98,96,93,97,101,105,111,119,100,102,81,99,114,118,108,105,105,125,91,87,73,118,101,113,102,112,107,96,110,101,99,113,105,103,107,102,101,98,100,99,91,108,96,85,93,102,109,112,96,117,94,105,109,120,98,102,91,95,100,98,90,65,102,110,105,109,95,108,103,93,124,80,99,111,112,108,91,113,103,94,99,96,92,95,105,102,99,112,105,116,104,90,90,99,99,113,103,93,100,126,99,88,111,94,112,113,89,90,100,83,105,111,104,95,106,110,96,109,109,112,105,105,113,103,120,98,105,87,105,102,98,97,98,90,95,104,97,102,103,94,92,105,103,107,100,94,97,96,101,96,84,92,87,105,92,105,112,96,71,111,96,105,104,103,89,102,105,103,105,91,106,107,96,99,91,100,91,102,102,96,101,98,99,96,99,106,99,96,96,90,110,64,95,98,114,96,100,105,105,105,110,107,99,107,101,96,104,111,99,106,88,101,108,95,91,99,100,97,87,96,101,97,116,101,101,96,95,103,106,99,115,106,87,103,109,97,109,101,98,96,110,114,104,92,107,95,98,104,104,108,104,108,108,100,111,109,103,114,102,73,101,99,103,102,97,100,106,108,107,91,95,96,98,100,102,103,103,100,104,98,104,89,101,121,101,102,92,96,108,104,105,90,98,110,106,102,100,84,91,105,100,91,113,106,104,85,107,96,96,99,76,106,100,101,98,100,103,107,105,106,105,102,95,102,100,101,101,112,98,107,104,93,105,100,100,94,97,108,94,98,101,104,100,91,95,103,108,96,115,104,110,96,104,95,102,109,99,101,96,95,107,102,96,103,116,95,98,91,108,101,100,110,98,96,105,93,94,107,93,91,102,100,109,104,100,99,119,97,100,116,94,110,108,106,121,103,98,110,93,114,111,94,104,95,97,102,105,95,109,98,96,94,103,104,97,90,99,84,92,108,93,98,105,109,113,94,95,101,113,113,107,104,100,97,109,105,95,101,103,96,95,96,99,99,98,112,101,95,100,104,101,103,95,101,97,102,98,93,98,96,102,110,102,97,101,110,102,111,94,105,99,104,110,109,98,105,111,109,96,99,98,95,105,101,91,99,101,98,100,100,87,105,98,97,102,101,100,86,104,106,103,103,98,100,92,100,107,98,99,104,92,115,99,99,101,111,73,88,98,98,96,97,99,105,104,98,111,102,66,106,87,103,96,111,101,88,93,99,100,97,88,104,97,106,108,100,95,104,99,112,105,85,98,108,97,97,98,98,108,114,96,97,101,94,100,102,100,109,101,104,103,113,106,113,103,96,99,100,104,87,110,97,108,109,105,93,108,104,115,99,103,109,105,101,101,99,88,92,110,92,115,100,101,108,109,102,106,91,111,94,128,119,109,111,130,106,94,111,87,105,91,90,101,100,102,104,105,89,117,99,96,95,105,101,105,94,101,85,80,102,96,92,111,115,113,94,87,92,101,96,100,99,101,108,94,109,109,100,105,109,98,104,98,110,102,95,113,98,97,101,109,104,101,97,96,109,109,103,98,100,94,96,69,94,92,88,99,103,95,97,101,89,101,104,102,93,107,104,89,94,96,113,116,100,103,107,105,104,109,96,101,94,95,94,93,102,106,101,95,110,87,100,101,102,101,100,109,99,102,123,96,125,99,106,97,101,96,118,78,121,94,98,105,101,96,95,105,109,113,91,104,94,101,105,90,104,101,98,114,96,97,112,97,113,101,95,96,102,112,93,87,91,82,104,104,103,93,103,98,96,100,115,106,97,96,96,92,102,85,113,111,109,104,106,109,104,102,108,99,99,105,90,92,103,98,102,103,101,113,107,100,107,98,96,91,96,101,98,109,111,106,110,116,98,94,87,111,92,98,100,95,97,94,104,97,93,102,89,96,94,83,128,66,100,110,108,85,88,101,93,108, +699.28046,106,100,106,100,95,113,91,100,99,102,103,87,102,107,106,102,90,103,113,108,109,89,98,98,105,103,99,83,108,105,114,94,110,106,90,109,96,95,94,99,106,122,107,94,94,107,107,105,112,92,104,103,105,97,115,85,113,88,110,102,100,115,109,106,96,118,103,105,109,103,114,97,91,101,102,119,95,96,98,105,108,100,76,98,104,89,83,111,105,94,104,102,88,110,99,118,111,107,95,95,88,105,106,87,88,110,93,99,91,84,100,108,99,89,104,103,94,97,105,92,92,114,108,90,125,110,94,92,107,102,105,98,126,109,99,94,99,97,94,94,100,101,101,98,92,96,98,105,90,107,93,103,104,103,99,96,101,91,104,83,104,102,94,105,109,82,115,103,109,97,100,98,100,95,91,99,104,97,97,110,99,98,92,110,102,90,95,97,101,90,115,103,106,89,98,94,96,113,106,101,101,106,102,100,99,102,90,101,103,107,101,99,99,108,110,108,86,108,100,98,109,109,109,102,112,103,101,109,112,108,102,103,101,103,109,109,105,95,93,107,107,104,112,102,107,100,96,94,102,95,98,109,104,99,91,100,105,101,102,101,95,99,101,94,95,110,116,101,111,80,105,94,108,97,106,101,102,106,101,116,102,109,109,98,106,90,100,101,103,136,107,116,112,103,99,107,106,94,99,98,96,96,108,104,90,80,95,112,105,110,92,103,91,95,102,98,99,96,99,104,104,99,110,99,110,98,101,104,101,83,116,116,113,89,121,102,100,110,99,111,100,101,96,96,97,107,94,101,100,97,109,102,97,97,102,92,105,109,86,106,91,108,105,99,96,102,98,95,107,109,106,110,105,114,113,123,108,102,97,109,99,102,100,106,110,89,110,109,106,99,116,73,102,94,96,83,97,106,87,87,102,103,107,91,97,95,98,93,100,102,108,96,113,91,108,107,99,101,105,99,101,102,85,102,107,94,88,90,100,111,97,92,105,104,101,104,100,106,99,99,98,95,110,101,101,100,104,100,108,99,98,107,121,100,96,100,92,111,98,102,95,99,98,99,124,105,99,106,104,109,94,117,97,84,101,95,94,100,98,98,97,108,118,93,77,86,91,91,88,98,104,101,112,89,97,99,90,105,100,106,95,101,99,108,105,92,100,103,112,98,100,105,113,102,96,101,98,100,83,110,100,97,105,104,96,103,112,97,103,101,106,104,99,100,98,92,107,95,106,108,96,99,90,108,105,96,104,98,96,97,101,97,102,107,100,82,98,97,103,100,90,94,100,106,105,110,100,73,98,114,96,113,105,101,107,97,89,99,91,108,101,96,109,96,99,91,103,97,112,95,95,101,102,84,105,108,98,100,103,96,93,95,97,102,105,93,98,101,93,95,87,105,111,96,106,88,100,78,99,103,102,115,106,102,96,100,99,87,116,110,101,108,101,103,101,110,100,83,95,107,108,106,102,113,105,100,101,83,97,94,99,106,99,100,103,103,108,103,96,103,102,94,102,77,102,109,101,92,109,103,104,108,98,91,92,105,108,104,94,96,112,88,97,100,105,98,96,99,100,95,91,108,92,98,101,91,95,100,121,105,94,97,100,116,99,105,111,102,111,105,101,74,98,94,104,98,95,95,91,108,94,102,109,79,93,106,95,91,102,104,111,92,92,113,95,108,104,72,99,95,105,102,108,110,103,97,98,96,91,109,104,92,90,97,102,101,83,112,96,105,95,100,99,96,102,73,95,98,109,91,102,97,108,93,100,93,95,90,70,104,107,98,108,98,94,90,111,108,107,69,102,103,98,107,103,112,104,102,113,104,106,108,98,109,111,100,113,94,99,94,103,105,100,98,104,102,108,95,97,99,95,105,105,94,96,105,101,98,95,94,112,95,113,94,104,98,94,95,101,98,87,104,93,99,92,100,91,95,89,83,95,97,94,108,102,110,92,93,102,103,92,104,93,99,101,96,93,99,104,91,96,112,96,112,85,91,99,89,111,89,96,100,99,109,97,83,98,102,106,95,101,118,102,93,105,84,95,99,105,103,112,100,94,85,105,95,101,107,103,100,103,113,96,105,102,103,103,99,93,106,101,97,109,116,102,98,101,98,107,108,96,105,114,98,96,83,99,91,108,102,113,102,99,105,94,100,100,90,95,106,99,111,106,101,97,98,104,100,96,104,107,104,91,111,96,96,95,96,95,110,91,102,109,102,106,115,111,96,102,94,95,98,107,103,102,102,98,107,108,95,89,98,110,87,98,88,110,105,92,96,98,85,98,91,116,104,100,90,90,110,96,104,97,105,110,103,105,97,103,84,108,102,104,96,108,106,95,104,120,104,98,105,104,100,106,96,90,98,91,100,98,105,106,89,103,106,101,91,94,88,97,104,104,103,104,101,100,99,96,105,101,105,94,101,99,106,93,100,97,100,93,113,99,97,93,104,98,109,98,101,107,98,84,96,96,102,99,101,102,102,95,91,103,101,110,94,98,92,115,106,102,98,117,97,91,102,97,113,102,99,99,107,98,91,107,104,105,100,98,106,96,96,91,105,105,93,95,105,96,98,96,89,105,98,93,105,101,93,100,93,102,110,104,104,72,104,96,94,95,92,104,97,98,109,105,97,88,102,101,97,109,89,108,94,116,109,89,102,99,87,102,80,96,89,94,99,90,100,80,108,97,83,87,91,109,95,101,109,97,102,98,94,106,103,91,131,112,103,108,133,102,106,114,98,100,113,117,105,86,99,99,100,100,99,109,91,80,84,104,100,95,109,99,99,109,105,109,114,118,102,101,101,96,105,115,106,110,104,107,103,100,98,101,94,93,71,101,94,96,108,68,107,118,94,115,105,87,102,96,111,103,99,99,104,103,98,105,95,95,107,113,96,117,108,109,99,94,102,96,104,108,94,123,107,97,80,105,100,93,113,106,104,99,113,107,87,106,87,94,104,106,108,105,101,91,104,77,100,89,98,110,106,94,98,107,108,99,110,100,93,105,100,113,106,104,105,107,95,102,93,101,101,104,104,104,105,101,100,104,105,107,103,90,92,100,77,102,94,98,98,107,100,100,103,91,102,97,101,92,94,108,113,116,101,99,106,103,107,102,100,94,95,107,109,91,101,102,98,98,106,103,97,91,106,96,95,84,100,92,97,101,96,102,104,109,97,106,103,107,105,100,107,105,93,85,103,102,111,109,105,101,100,106,110,98,92,99,102,92,101,98,101,98,96,101,99,100,113,102,115,96,92,100,112,96,95,97,108,98,104,100,73,102,109,95,99,104,98,95,106,104,76,96,120,89,106,105,114,102,94,99,101,101,124,99,85,101,106,109,101,94,106,106,112,94,103,96,106,103,104,92,116,105,90,95,105,108,113,100,102,96,102,105,115,102,99,102,108,104,106,102,95,103,82,92,100,101,98,113,104,113,94,98,104,108,109,92,98,91,99,104,100,103,105,93,97,100,113,92,99,111,104,117,95,97,109,99,96,113,109,108,111,102,113,104,94,106,103,94,107,100,100,93,105,113,110,110,108,109,105,105,112,99,105,111,103,101,99,98,101,105,96,81,99,93,107,99,104,101,100,104,97,98,106,114,106,105,97,99,117,84,100,102,107,97,91,110,108,107,115,90,105,105,106,86,95,104,83,104,105,100,101,104,99,91,105,85,108,105,103,92,103,97,87,92,92,87,102,98,106,123,100,102,112,106,115,99,110,99,106,93,94,97,96,86,99,102,96,94,95,109,88,110,94,80,114,101,110,97,90,72,97,107,95,102,102,102,99,106,105,90,99,92,116,108,96,103,105,110,104,102,96,107,97,105,100,107,104,84,110,99,112,98,108,105,97,98,104,113,94,108,105,96,98,105,104,98,106,112,95,91,92,96,114,108,97,105,102,95,92,83,102,102,96,95,95,96,100,108,98,96,102,110,106,96,103,99,105,97,99,107,104,101,114,101,106,106,108,111,96,89,113,103,108,116,96,110,84,99,98,107,105,110,95,100,96,87,101,93,97,108,102,95,91,113,90,115,97,106,91,94,102,98,95,100,102,103,95,117,117,109,108,100,76,92,105,100,95,97,103,105,112,101,118,99,103,97,116,100,92,102,95,94,106,102,113,96,100,101,109,89,103,107,102,101,99,99,101,95,99,110,99,89,113,108,101,111,87,102,93,102,103,106,100,103,116,88,106,99,92,113,94,96,103,100,100,91,106,96,102,76,104,113,95,96,93,92,105,126,95,106,91,104,104,120,99,87,99,108,105,109,93,105,104,96,109,101,105,102,104,94,98,102,95,98,104,84,98,96,99,104,103,101,98,82,99,94,106,95,110,102,101,110,109,91,107,97,105,78,105,94,91,118,106,92,101,96,111,99,101,99,97,93,99,109,103,110,101,117,101,94,95,101,110,102,112,96,103,99,109,117,96,98,94,115,90,99,104,103,106,102,106,99,93,107,95,98,108,105,87,103,101,106,109,116,115,94,91,98,113,95,110,100,101,113,93,105,105,95,100,111,97,100,105,91,100,95,113,90,103,102,112,109,100,102,96,98,93,96,97,87,105,106,111,105,99,101,105,94,118,106,103,100,109,96,101,100,100,98,103,81,106,96,112,92,91,117,108,101,103,112,102,112,103,106,88,100,95,104,102,88,107,82,99,113,98,87,115,95,101,98,106,99,115,103,104,105,123,103,101,104,101,102,105,115,99,95,100,114,100,103,106,80,99,95,91,104,96,112,92,105,101,74,99,94,105,109,96,106,93,101,95,106,92,111,115,92,94,95,113,104,95,109,100,103,99,94,97,106,106,102,97,102,107,103,108,103,113,101,116,120,106,113,94,102,80,103,91,101,95,113,104,91,108,104,102,102,102,72,90,113,98,95,106,109,106,97,93,112,94, +699.42175,88,113,107,101,86,89,83,98,93,96,84,87,96,95,95,103,79,75,100,100,91,107,87,105,117,104,94,98,112,99,94,95,108,103,103,102,94,93,101,113,96,105,95,92,106,112,98,95,85,97,99,106,98,95,105,111,116,94,113,92,92,95,95,91,107,92,79,89,100,79,100,96,99,106,89,100,107,101,102,94,109,106,103,98,97,91,105,94,94,118,98,89,83,99,102,96,109,105,100,88,86,100,115,99,96,104,90,99,94,98,117,103,101,111,99,99,101,97,95,97,99,108,95,110,94,107,97,104,94,102,103,105,95,91,90,96,98,96,96,98,88,98,99,85,97,98,95,101,104,91,96,95,104,89,96,86,104,100,103,98,103,94,95,101,92,96,93,95,92,110,101,99,106,98,93,108,91,88,96,100,97,86,93,101,100,103,75,108,105,89,94,103,102,100,97,93,107,100,111,121,97,94,104,114,96,97,96,100,113,95,91,108,96,98,94,108,96,96,94,98,107,98,91,88,101,96,104,97,99,111,89,93,105,95,113,121,105,102,97,109,105,110,97,99,91,87,111,91,104,98,100,101,91,85,106,98,94,108,93,98,87,106,105,96,86,84,94,107,96,89,97,115,102,98,101,94,101,98,92,95,107,102,100,72,92,93,96,105,102,86,95,89,99,96,108,83,112,101,97,95,105,91,95,102,91,103,91,96,95,101,104,116,89,125,104,104,92,93,103,102,107,91,107,105,107,91,98,98,102,94,91,99,97,100,107,90,95,106,119,100,104,95,87,117,107,99,66,105,100,90,109,93,105,105,96,96,88,100,94,90,94,100,100,96,99,92,96,107,95,99,80,98,117,96,105,110,91,108,104,110,95,96,97,103,88,93,87,113,109,99,108,92,89,97,105,91,92,103,100,108,93,107,88,99,92,93,90,95,95,97,99,102,94,99,103,102,103,97,107,100,97,101,96,103,105,98,97,92,97,109,103,108,94,89,101,92,92,101,94,99,104,102,104,95,102,103,92,89,94,101,91,96,101,113,104,104,106,90,100,87,98,102,97,112,101,104,94,96,99,104,100,101,84,91,98,96,100,101,82,104,112,103,104,97,108,112,104,97,97,104,112,100,100,105,106,102,102,100,91,97,93,99,108,105,101,109,94,102,106,79,96,106,87,98,87,91,105,103,92,98,101,96,107,100,89,93,101,98,101,97,95,95,86,81,104,113,84,100,102,95,101,104,105,90,102,99,103,97,90,106,99,95,105,103,98,83,99,91,99,98,95,96,103,91,100,94,99,97,102,94,104,91,98,92,105,102,99,100,95,101,94,104,104,88,90,88,106,113,99,96,103,95,93,84,104,116,100,104,103,99,91,98,92,96,95,101,94,100,89,94,99,92,104,107,104,101,105,101,105,101,101,98,104,99,98,71,89,91,92,98,95,66,93,109,98,89,100,92,66,86,132,100,100,101,88,91,108,95,112,105,94,91,96,96,101,96,95,95,120,102,101,97,96,91,91,95,95,88,94,89,105,93,107,94,96,97,115,119,113,100,104,77,98,93,88,105,79,81,101,95,68,101,109,109,96,98,84,98,94,93,104,96,107,104,96,91,96,103,97,109,95,95,100,79,94,101,97,102,92,103,107,91,108,96,106,95,104,107,98,103,100,99,100,90,103,102,99,104,79,105,108,91,105,81,99,89,91,89,103,99,113,93,96,111,86,85,94,102,103,94,94,102,90,96,85,99,96,95,95,94,108,97,101,92,107,102,85,86,108,103,94,102,106,101,87,99,84,92,103,101,87,94,106,100,100,93,82,96,100,108,106,82,93,101,106,102,100,101,111,101,98,101,99,110,93,100,97,94,94,92,98,107,112,84,85,90,99,96,99,82,109,92,105,101,101,100,94,94,101,100,96,95,106,96,89,94,98,85,96,83,85,98,108,110,101,106,82,100,84,97,107,99,87,102,89,102,108,98,103,110,89,90,117,106,83,99,92,96,100,93,101,98,102,93,88,99,98,102,96,112,99,104,94,106,99,97,98,99,96,91,95,101,109,100,91,95,93,83,91,100,94,106,102,112,103,95,98,91,100,91,107,98,116,97,99,94,95,81,101,99,100,105,104,115,98,89,98,89,104,108,109,96,96,109,89,100,105,96,82,106,94,98,108,95,100,106,114,94,79,98,92,99,95,96,93,97,97,79,92,111,91,106,102,92,84,112,94,98,91,90,98,97,104,85,90,97,106,92,94,91,95,102,97,99,101,103,91,102,97,86,101,98,79,109,114,106,113,93,100,90,92,99,98,97,104,97,108,88,99,94,105,97,96,91,110,95,95,87,107,97,104,102,96,92,82,87,99,101,98,91,92,95,74,99,101,99,93,98,94,99,78,91,98,106,89,88,101,91,102,78,99,109,84,102,91,104,100,88,102,92,82,90,101,95,100,94,90,97,97,97,89,90,98,112,90,100,96,96,106,107,85,102,95,92,102,102,106,104,103,108,107,93,95,109,110,117,88,105,105,111,101,102,107,99,102,107,102,108,110,95,84,96,96,104,107,91,98,106,104,85,95,110,101,101,89,110,88,103,96,95,110,103,96,109,96,101,92,98,102,95,102,105,112,101,103,88,110,87,92,96,100,83,103,99,116,120,101,101,102,88,103,111,107,101,104,99,98,94,98,116,99,97,112,97,102,102,95,95,96,99,92,98,104,117,95,111,102,103,95,94,86,113,102,92,96,95,99,91,93,109,106,109,104,91,96,90,100,105,98,106,98,115,99,83,106,111,95,95,100,91,109,105,102,101,108,110,110,94,92,106,107,100,94,106,96,106,102,100,104,103,109,94,96,105,117,98,95,118,100,106,105,99,106,99,102,95,103,102,101,94,97,103,108,105,113,80,102,109,91,107,96,101,99,94,97,105,98,92,103,94,108,109,99,101,103,109,100,98,114,97,104,110,105,108,96,97,91,102,105,101,102,100,100,97,104,105,102,110,94,103,107,106,99,117,104,128,109,100,107,98,100,95,89,110,119,111,106,79,92,97,105,96,109,100,114,97,101,98,101,96,94,102,96,107,103,101,91,94,89,91,93,117,104,107,91,99,102,102,106,108,97,98,95,109,112,92,87,96,88,104,105,88,95,111,95,96,113,105,86,97,113,93,100,105,101,101,103,94,103,102,90,93,103,96,96,107,107,94,105,107,86,96,98,95,105,111,104,95,98,100,96,71,84,94,96,86,96,102,95,101,104,106,97,100,102,109,100,112,106,94,96,102,98,107,98,123,102,113,102,94,108,97,108,102,100,108,102,103,91,80,98,107,100,109,113,107,91,93,116,98,96,99,112,88,87,97,108,85,100,99,96,109,101,103,105,100,107,105,105,93,94,106,98,115,98,92,105,105,105,95,91,87,102,112,95,102,97,85,97,91,108,96,108,100,102,98,101,95,100,97,92,95,96,104,111,102,95,100,95,108,95,104,104,103,97,100,92,103,92,89,103,103,100,101,107,105,100,101,105,96,111,103,90,108,95,98,103,106,103,99,102,103,98,112,102,111,96,87,86,100,109,93,102,103,98,99,95,101,118,95,98,99,94,106,101,104,99,102,107,98,87,100,116,97,102,94,117,99,99,90,98,94,111,113,97,98,100,103,100,90,92,104,106,106,98,97,94,113,100,99,98,106,81,109,105,84,101,101,113,99,98,100,95,113,101,107,91,106,112,91,88,105,102,95,105,104,99,94,109,96,141,114,91,119,97,103,98,101,94,100,105,105,101,102,92,112,116,102,95,105,106,106,104,112,99,102,104,118,107,103,102,105,106,88,103,102,101,103,104,114,102,97,95,97,100,98,100,90,107,94,102,107,98,91,104,98,91,99,106,105,114,87,104,96,87,108,103,98,97,94,112,109,106,101,97,100,104,101,111,103,110,108,105,101,82,103,95,101,104,120,95,89,100,112,97,111,104,101,91,89,105,119,96,98,111,105,107,103,92,101,96,97,92,84,90,94,104,113,106,87,106,98,103,100,98,113,108,101,108,97,114,98,105,91,109,105,101,98,105,93,101,108,108,96,69,107,106,102,94,96,97,102,92,97,99,106,105,110,90,97,120,101,101,100,95,112,93,104,111,108,106,88,108,104,106,95,106,79,78,105,100,100,101,95,83,112,102,92,98,99,105,108,105,108,104,115,97,114,99,101,110,92,99,102,109,104,105,97,110,96,117,87,90,104,96,124,106,87,100,109,95,96,110,102,101,105,100,84,103,95,90,98,104,109,98,111,86,91,90,112,87,96,96,100,95,100,106,86,91,104,101,101,108,89,96,98,101,94,98,109,109,100,99,113,103,91,114,98,113,101,83,116,93,105,99,105,93,103,100,106,105,93,105,101,107,104,103,109,104,98,104,96,100,103,102,107,100,88,97,97,114,109,110,97,93,104,102,95,102,106,97,112,95,121,74,109,101,73,97,95,71,113,98,105,107,102,93,123,92,105,102,97,103,101,94,101,89,86,94,77,64,109,90,90,102,135,115,100,107,88,89,108,87,98,91,100,101,88,98,97,97,103,97,108,89,108,95,97,101,112,109,97,110,91,90,105,96,88,64,102,95,104,87,100,91,108,108,108,102,86,91,107,102,95,100,98,106,100,101,87,94,101,109,94,95,96,105,97,95,91,90,104,88,90,87,68,94,118,101,95,107,93,97,91,88,112,99,91,104,98,107,97,84,106,103,95,105,98,120,87,125,91,111,84,117,94,94,99,98,109,96,94,91,94,95,124,102,95,100,101,114,97,115,98,105,111,96,112,104,90,90,109,97,96,117,101,101,113,101,102,92,123,90,101,121,112,105,99,110,83,88,102,94,92,100,110,96,102,98,86,120,105,117,75,79,137,101,93,96,101, +699.56311,98,92,95,96,104,110,104,95,92,122,90,107,112,73,108,91,106,106,97,62,93,97,93,104,119,110,117,99,104,104,91,94,107,108,103,100,113,85,103,92,101,92,87,96,106,98,98,121,104,102,97,93,103,100,95,91,103,102,109,99,100,105,99,95,105,101,96,124,98,102,99,113,96,99,86,105,71,109,97,108,100,93,99,98,97,86,107,105,95,104,98,97,98,102,105,101,99,94,97,97,86,96,107,98,67,101,100,70,109,97,97,105,96,111,113,95,101,100,100,100,101,91,104,90,93,117,106,95,103,104,101,96,102,86,110,96,95,99,110,90,96,102,96,98,103,88,95,93,92,100,93,82,111,95,100,84,103,86,118,96,92,98,70,95,94,110,94,103,102,99,94,102,116,86,110,100,102,93,107,84,99,100,105,105,97,97,102,90,97,92,78,101,114,96,96,99,102,102,107,103,109,106,96,103,100,105,106,91,97,89,99,93,104,104,100,93,91,95,97,65,70,98,98,98,98,110,94,89,104,95,96,100,90,114,92,118,119,111,106,109,108,93,113,95,108,90,100,112,102,108,105,103,97,96,94,108,98,104,107,99,102,96,98,100,96,104,96,104,123,97,89,99,91,103,98,95,88,107,107,103,100,94,94,115,100,111,89,102,83,66,92,93,101,113,110,105,105,106,109,98,104,97,106,86,99,113,111,103,93,99,87,104,94,106,91,88,94,101,94,96,93,101,110,103,106,99,92,94,113,102,104,118,104,94,104,103,104,103,98,102,99,97,103,101,102,101,102,106,99,105,107,102,88,103,100,101,108,90,101,87,96,80,103,87,104,104,76,101,105,95,110,90,109,88,99,104,104,107,94,100,91,105,94,101,106,95,103,93,102,101,106,90,116,99,91,108,94,99,92,106,97,98,101,103,99,105,99,102,83,83,96,102,102,96,92,113,93,102,112,111,98,126,86,91,104,88,97,101,91,105,105,101,94,101,93,115,86,107,94,101,107,96,97,92,90,97,108,94,94,108,96,96,96,78,102,92,100,94,102,107,90,95,91,109,97,98,86,97,101,79,102,95,106,103,103,96,100,99,91,103,101,99,112,103,99,105,95,92,86,101,104,101,104,110,95,100,105,95,91,95,100,101,99,100,95,106,82,102,96,107,102,107,94,104,103,103,96,100,103,95,90,90,100,95,116,99,105,93,83,103,93,87,96,93,97,91,100,104,107,107,89,106,97,100,99,97,109,104,104,98,101,98,104,109,98,103,95,92,100,89,91,87,96,106,101,98,99,104,98,102,96,89,95,113,97,101,100,101,95,101,100,90,103,93,109,107,93,92,99,106,107,101,106,102,114,103,103,100,98,94,93,105,96,97,105,93,94,106,105,108,85,109,99,96,109,86,98,109,102,106,90,99,99,101,99,105,101,103,103,104,91,104,95,103,87,106,117,104,97,91,110,100,95,90,98,79,98,98,102,110,90,87,83,114,107,83,110,105,105,98,103,107,101,102,101,94,100,94,102,91,113,117,85,102,100,92,97,84,89,105,109,134,107,94,98,100,90,108,97,112,105,101,80,94,76,91,101,114,103,99,103,86,91,92,96,111,104,99,97,100,96,99,101,98,90,100,100,94,104,98,101,67,103,99,94,101,108,111,106,101,99,112,108,113,98,97,102,97,103,86,99,91,100,107,88,80,95,108,106,101,110,108,97,97,97,98,100,106,95,104,93,89,97,92,88,93,100,92,98,98,108,95,102,106,95,92,103,96,95,105,99,102,107,109,102,91,102,114,97,111,91,102,94,96,94,103,90,98,103,109,92,109,104,100,97,113,99,99,92,101,110,102,95,105,98,95,103,93,103,97,97,82,100,101,107,93,94,90,90,94,97,106,98,98,95,85,94,84,106,103,98,96,92,89,113,91,114,94,92,104,104,98,99,97,93,99,105,100,93,104,90,93,93,101,92,101,91,100,100,113,115,107,112,111,80,100,119,98,91,98,112,97,95,114,99,100,95,98,101,98,115,106,94,104,101,92,100,97,98,98,96,105,98,94,88,90,90,100,95,92,102,112,95,99,91,94,132,93,102,103,114,106,102,110,105,112,100,102,86,92,101,108,100,107,118,98,101,104,90,70,106,100,101,98,102,97,103,107,96,88,117,100,95,100,111,89,103,91,100,88,93,90,91,98,101,100,93,94,97,98,93,106,112,96,99,102,97,101,110,88,99,90,109,115,104,105,97,95,100,96,113,104,100,99,99,92,100,95,106,99,100,108,103,95,101,95,117,99,92,95,92,89,92,107,96,95,96,98,98,93,95,108,95,104,101,108,104,104,110,99,89,123,95,79,91,106,105,95,95,105,94,102,107,100,109,92,115,97,104,98,95,109,108,101,103,98,104,108,95,105,113,103,104,100,98,94,100,109,109,99,110,100,93,105,100,96,104,108,92,88,95,96,86,99,101,118,105,98,112,95,106,84,103,93,106,102,94,95,107,108,108,103,102,101,96,99,98,107,106,105,102,95,108,93,108,101,94,108,102,112,107,102,97,101,96,93,68,114,103,94,102,103,101,106,99,97,98,102,105,92,99,91,96,106,106,86,101,86,93,100,95,95,107,117,106,101,102,105,116,107,106,92,109,102,101,106,113,100,105,94,94,97,103,112,101,97,110,113,116,92,97,91,112,97,103,105,101,98,111,99,107,97,105,83,93,93,101,100,102,101,106,101,109,111,101,98,103,106,103,108,91,105,100,117,115,93,92,118,96,99,102,112,100,89,100,101,102,110,106,93,92,97,102,96,100,102,102,105,105,93,105,99,99,94,97,94,115,103,108,113,101,102,99,102,98,102,95,102,94,99,89,87,108,109,109,106,99,101,99,107,112,99,105,95,106,109,101,98,108,105,103,112,98,110,107,104,93,87,95,115,108,110,87,95,113,99,106,113,105,113,116,97,96,106,104,104,106,94,100,90,107,103,106,115,108,104,108,100,96,112,109,108,103,102,106,106,116,104,100,94,100,96,94,117,102,111,98,99,99,97,102,108,89,105,98,104,92,94,107,102,106,91,77,100,116,109,103,109,108,101,108,101,95,93,105,111,111,100,108,100,113,100,116,97,92,120,99,100,105,96,106,95,99,102,101,103,102,101,103,101,97,95,97,104,105,113,106,100,100,107,96,102,109,100,99,102,100,92,109,101,103,96,108,102,106,102,97,97,96,99,92,100,117,96,89,106,102,104,106,106,101,96,105,113,101,98,97,101,100,98,106,103,104,104,103,103,104,92,112,105,106,99,101,103,97,103,109,111,102,104,106,113,96,117,103,98,102,98,100,96,126,109,101,95,88,100,103,114,102,106,99,103,76,101,111,99,99,95,87,112,108,100,104,94,96,109,90,106,96,111,87,117,99,113,99,100,103,88,110,104,102,104,109,91,103,107,103,110,100,98,98,101,99,97,100,99,105,110,92,98,103,110,109,97,98,98,100,104,99,91,96,118,84,119,98,106,98,116,100,102,112,98,96,111,101,97,106,108,98,93,110,88,117,96,102,117,109,102,105,107,101,99,101,103,104,105,107,107,104,99,105,104,104,97,113,105,90,105,111,105,90,104,117,94,95,102,87,97,104,104,88,100,117,104,101,96,104,110,94,113,109,94,109,98,95,102,97,90,109,98,107,113,106,106,93,101,105,103,111,98,101,110,98,95,100,95,103,109,102,107,91,102,105,98,108,99,104,107,91,99,107,113,97,88,105,93,99,108,113,102,95,94,99,100,100,89,97,102,95,108,99,112,108,116,97,96,105,106,100,90,106,82,104,98,100,96,96,112,106,94,108,95,91,108,98,102,110,96,90,111,113,100,107,116,105,101,106,103,106,97,102,105,97,119,112,105,109,92,112,97,96,93,100,91,102,104,98,88,92,120,120,91,105,101,86,91,107,97,99,97,96,102,105,107,94,110,99,104,104,89,99,97,115,98,100,102,96,92,105,99,112,102,99,93,98,92,95,102,96,102,104,97,106,89,97,101,104,90,101,99,101,95,97,99,101,98,98,101,105,104,103,105,104,125,90,99,100,105,100,90,103,97,93,110,111,91,104,100,96,111,99,101,97,105,113,118,76,107,101,99,105,93,102,94,96,98,104,101,82,96,100,124,101,95,111,97,95,109,98,92,104,112,99,94,103,106,103,96,100,109,102,111,103,100,115,104,98,109,105,96,88,93,90,101,114,113,102,107,98,119,108,114,102,99,92,99,96,99,109,105,112,113,107,94,100,99,102,92,88,107,77,103,98,100,112,110,117,79,91,106,107,108,104,100,83,98,94,102,100,99,113,88,95,95,104,96,99,99,107,109,95,117,115,107,98,100,106,101,98,107,97,100,91,99,103,101,102,112,104,97,87,95,104,110,113,97,91,108,100,104,92,112,104,94,94,89,99,93,90,107,101,101,115,98,109,98,112,102,109,101,101,92,113,109,110,104,98,101,112,108,96,91,104,98,95,108,114,107,88,95,91,87,107,110,93,101,107,92,105,104,91,108,108,100,92,104,105,101,118,105,104,100,104,105,81,121,101,103,102,102,101,103,105,112,99,101,101,91,89,103,113,93,101,100,96,99,111,118,98,97,108,99,105,116,112,107,106,99,109,102,101,102,98,111,96,109,100,105,93,95,88,97,98,106,112,105,108,106,104,101,87,109,103,111,118,104,120,105,104,82,90,108,103,111,99,99,103,95,108,100,107,102,108,93,97,103,96,106,112,99,93,100,101,84,119,100,93,108,104,107,109,101,107,81,96,101,111,96,112,90,64,94,101,111,92,99,101,95,101,99,88,99,95,107,88,106,89,109,112,100,92,101,94,107,99,101,92,94,103,94,101,124,105,93,107,109,94,105,93,96, +699.70441,109,107,101,92,94,105,94,109,83,109,95,90,98,103,97,88,104,105,97,87,101,99,98,92,102,110,104,121,112,96,106,109,101,104,99,102,91,102,105,102,98,104,105,94,115,101,97,108,93,95,108,88,97,97,99,98,101,97,116,88,97,97,88,88,98,112,102,97,96,102,105,97,94,125,97,102,111,102,86,92,91,102,107,103,106,91,64,107,97,98,102,104,95,102,97,95,105,104,99,104,95,118,95,113,97,106,93,97,101,85,96,88,97,105,91,91,91,103,118,113,84,105,113,95,104,100,100,104,100,90,93,105,91,102,98,100,102,101,95,101,94,101,87,104,93,100,100,95,101,106,89,102,102,123,94,113,93,93,98,98,91,108,101,108,104,96,94,98,99,104,112,95,99,86,103,106,100,80,106,94,101,101,98,107,95,97,102,92,101,107,89,108,92,108,100,94,103,92,97,100,108,102,94,107,94,99,93,103,85,101,92,116,109,105,88,102,106,103,98,104,108,103,97,112,96,98,103,113,87,96,95,94,97,83,102,112,101,99,99,101,92,98,100,93,97,108,105,110,80,101,85,101,89,97,105,110,98,92,85,96,96,90,77,108,97,103,102,99,109,93,101,102,97,101,100,95,99,104,87,93,93,91,98,96,103,115,95,96,99,96,99,102,108,100,95,86,105,92,103,99,100,88,106,104,76,98,99,93,109,105,100,109,106,111,111,81,94,103,100,99,97,94,109,88,95,99,94,90,103,108,105,94,93,96,102,113,101,94,112,103,92,97,100,107,100,103,104,89,108,104,114,95,103,101,95,100,97,109,104,101,108,109,100,102,92,88,95,99,99,100,103,97,100,109,97,100,101,102,101,98,103,104,100,108,83,105,98,99,91,100,99,89,93,106,94,100,96,105,108,107,101,96,89,87,98,99,87,116,107,100,91,92,110,101,100,96,98,106,94,105,82,99,114,86,110,100,102,102,99,97,89,105,95,97,97,92,115,101,84,108,94,95,103,86,94,110,100,102,97,99,102,88,104,103,98,95,99,102,114,104,87,105,96,106,114,109,99,97,105,93,91,101,96,103,89,112,91,103,95,97,98,101,105,105,103,98,110,116,108,98,103,96,93,96,99,94,93,83,109,100,106,93,97,93,94,104,100,106,118,88,102,96,101,108,106,103,97,115,101,90,103,98,118,98,106,105,112,103,90,93,104,103,95,91,86,97,101,113,96,98,91,112,99,105,97,124,94,112,106,98,98,90,109,92,90,96,107,90,92,100,102,101,108,102,97,101,110,101,94,94,90,97,101,103,97,95,97,100,101,98,89,102,96,100,108,99,116,105,105,88,97,99,94,100,104,100,102,99,96,97,102,116,100,98,99,82,102,104,107,104,94,101,102,104,100,96,96,96,92,89,106,96,99,101,101,97,94,106,109,101,123,97,98,109,89,99,91,89,98,97,110,93,100,102,93,87,96,90,91,102,80,91,98,93,107,100,98,98,96,101,114,110,103,94,91,102,109,99,109,94,112,87,100,103,104,107,93,106,107,95,102,90,96,97,100,102,103,100,108,99,93,91,102,94,96,104,104,91,101,94,96,95,90,104,99,103,99,110,83,107,102,88,96,103,98,105,99,93,100,97,107,91,90,108,121,96,80,95,76,93,109,106,91,100,91,96,95,96,107,109,100,103,101,101,90,97,102,96,99,103,98,86,91,91,97,113,109,100,100,91,102,103,102,108,98,96,87,98,101,98,101,105,96,110,99,84,110,105,105,109,105,100,109,108,107,95,94,101,107,104,109,104,113,88,104,105,105,92,110,104,95,107,93,107,110,102,87,93,95,106,108,103,113,93,103,103,111,102,101,89,98,94,107,104,95,95,102,103,110,95,102,100,109,100,102,106,103,101,109,104,115,108,109,97,93,107,98,97,101,100,97,94,95,104,104,104,111,102,93,98,108,91,106,95,105,95,113,109,101,108,96,111,109,115,93,100,110,99,96,90,99,106,105,87,103,96,93,106,99,99,113,96,101,100,98,96,113,106,107,108,100,107,104,104,110,100,89,98,96,103,104,112,103,113,101,106,100,108,99,101,86,90,106,100,92,86,115,104,94,95,97,103,112,104,95,109,91,109,108,122,94,108,94,90,91,99,97,95,91,114,105,98,107,102,105,82,97,107,103,94,99,108,99,104,101,99,85,94,100,114,98,104,104,104,96,99,106,97,91,87,95,114,94,100,92,90,103,107,93,93,99,95,99,93,103,123,105,102,95,107,97,98,96,96,102,103,108,102,89,104,90,103,99,106,98,105,85,93,94,109,96,103,92,86,101,119,104,108,114,104,98,114,105,106,114,101,102,99,107,98,99,102,94,89,104,98,112,102,106,109,101,114,102,91,98,106,92,99,101,115,106,104,105,101,100,94,117,110,100,91,103,102,108,81,111,103,96,113,95,94,109,86,88,107,106,88,98,93,99,102,119,105,96,116,99,100,94,117,110,93,93,100,99,95,95,109,103,107,96,104,98,104,96,102,104,91,108,111,86,99,106,106,100,102,91,100,94,111,115,102,102,113,98,99,109,108,102,98,103,99,92,101,95,98,92,97,102,95,105,91,108,92,102,102,112,93,107,90,101,102,107,87,105,111,107,105,127,95,106,98,93,99,112,103,102,99,98,102,103,100,107,85,82,101,95,97,108,100,101,98,97,97,102,94,104,95,108,95,111,96,100,99,95,98,97,94,99,104,107,100,102,98,101,89,101,106,88,98,112,100,100,109,98,103,100,93,104,90,111,100,98,97,109,99,108,106,99,101,102,100,94,75,106,100,89,105,99,97,101,108,102,105,95,102,94,102,95,92,98,96,105,98,101,83,103,88,100,108,102,103,109,94,100,121,85,110,96,91,95,106,105,113,100,71,96,108,95,101,110,110,106,101,94,116,93,104,102,107,105,113,102,108,95,101,102,102,101,100,97,96,99,100,97,91,105,105,103,99,109,98,126,96,88,113,98,103,85,99,102,91,100,90,98,97,96,99,95,94,98,108,104,94,101,87,106,110,110,98,96,109,99,109,104,108,95,94,105,112,92,91,102,112,99,100,120,100,96,96,87,95,95,102,98,107,105,102,111,104,108,84,106,88,103,105,98,94,106,104,99,94,94,98,110,100,93,104,102,106,99,105,98,99,96,99,102,116,103,102,98,104,90,104,117,98,105,93,100,92,101,105,78,109,91,103,95,106,106,95,102,105,102,99,100,103,97,102,99,104,95,86,96,94,74,105,94,100,97,101,105,94,90,84,102,107,105,102,98,97,104,100,102,93,113,116,101,96,99,105,91,109,101,91,104,92,90,105,111,105,115,113,106,101,90,105,96,103,118,98,103,92,100,97,97,98,86,101,99,100,103,97,84,102,104,97,88,102,113,99,91,107,92,101,90,96,101,101,92,106,110,100,113,102,97,100,95,98,100,105,107,95,94,99,106,99,105,101,102,94,105,98,106,100,106,109,96,102,101,102,103,101,94,101,90,100,101,108,103,99,102,103,111,105,92,91,108,107,100,110,87,108,108,93,98,102,103,97,107,92,99,96,95,110,104,95,104,83,109,89,114,97,111,107,106,98,102,98,107,108,103,101,96,101,104,103,108,96,97,87,96,96,96,95,105,102,103,101,98,95,102,68,101,106,102,98,97,96,99,113,96,99,65,96,90,102,114,89,100,88,97,102,97,106,94,100,101,103,107,106,114,103,94,99,106,90,99,105,105,105,108,106,98,93,113,97,98,135,111,97,106,91,111,97,101,109,96,104,114,107,92,92,104,90,104,98,108,118,95,97,91,97,101,119,105,93,113,102,121,87,104,98,95,97,101,112,112,100,92,99,101,95,101,109,97,105,120,101,95,99,100,100,99,100,95,88,107,87,100,109,103,102,102,95,120,108,104,108,99,117,107,101,102,100,99,94,95,106,113,105,94,93,90,104,99,118,94,94,101,103,91,107,87,108,88,99,104,93,67,102,104,97,112,109,100,96,100,104,109,96,107,95,102,101,94,93,91,98,99,99,109,108,106,95,98,101,104,95,99,110,102,83,112,106,109,95,106,105,94,96,98,99,116,92,94,103,97,100,101,88,97,111,87,100,96,86,79,102,99,97,102,84,101,90,95,97,101,110,81,101,100,99,89,107,113,109,99,113,95,98,101,109,96,117,100,103,102,104,89,110,89,108,106,79,98,97,101,106,109,94,99,109,103,97,110,100,97,111,104,105,103,103,107,99,109,90,90,117,122,105,90,101,110,105,110,105,103,105,91,103,103,108,105,101,102,91,100,103,94,104,84,94,104,89,109,104,107,124,84,97,113,96,102,97,110,116,103,108,114,104,92,94,87,109,92,102,102,96,116,98,98,102,94,102,105,92,77,95,98,107,112,87,105,109,86,117,94,95,98,104,92,83,110,106,101,99,90,99,92,117,93,102,93,98,86,104,104,99,99,95,95,102,104,96,107,117,108,99,87,101,96,88,101,96,95,117,103,95,92,109,116,101,95,94,109,87,111,100,102,104,98,102,84,119,105,99,92,72,98,111,99,98,105,91,98,103,97,87,91,106,90,103,101,104,93,106,105,88,122,96,106,105,114,103,96,101,92,90,107,109,105,109,93,95,103,96,105,88,99,97,88,104,95,91,99,117,115,91,107,117,95,97,90,93,106,101,95,100,97,101,100,92,97,106,101,109,109,84,103,88,106,105,101,101,101,103,91,95,106,129,97,103,95,97,94,117,87,97,103,89,103,97,103,110,104,103,103,91,102,111,109,100,109,103,103,92,103,106,105,103,100,100,94,102,104,106,93,97,100,97,119,91,95,104,109,104,111,102,94,104,93,110,98,93,101,95,108,101,104,106,106,93, +699.84576,103,106,85,101,95,113,109,108,94,113,103,96,101,83,102,113,114,91,112,89,91,103,117,97,116,117,92,93,107,105,104,101,103,105,105,97,88,88,96,89,101,111,104,109,109,103,111,97,82,109,92,104,97,102,112,87,105,105,101,87,94,108,84,96,104,103,89,109,90,98,101,105,91,92,93,112,105,96,117,91,106,101,99,99,101,99,100,104,105,74,106,92,106,106,92,96,104,110,95,97,107,97,97,103,105,97,110,99,107,100,108,109,114,104,104,109,105,94,101,113,100,108,99,102,123,104,102,91,107,109,100,99,103,98,114,103,104,92,113,99,103,103,98,110,97,122,95,103,114,101,104,102,101,88,111,134,108,103,106,105,109,90,109,103,102,102,90,100,107,104,106,101,106,94,109,99,98,81,104,98,100,90,101,101,104,91,94,94,111,94,89,96,98,115,105,104,99,105,104,87,88,86,99,95,97,99,103,107,104,112,87,96,106,106,95,99,95,95,89,99,98,103,95,106,102,98,101,103,106,103,91,93,91,95,107,97,105,109,109,101,83,96,101,104,98,98,98,99,109,98,111,96,100,98,106,103,110,107,93,104,102,105,94,117,82,103,94,109,105,96,96,83,109,100,98,105,90,92,104,96,94,103,102,96,94,100,108,102,97,102,110,85,128,97,109,101,103,106,105,97,97,100,106,110,92,93,97,105,111,106,99,110,98,115,88,90,105,107,86,98,97,108,97,99,101,105,113,102,112,110,102,98,102,110,95,104,106,103,102,101,103,104,95,95,102,95,106,99,100,109,100,99,102,109,99,104,94,99,104,124,93,119,96,92,95,91,102,104,91,99,99,91,96,103,101,105,114,100,93,87,111,96,110,100,93,109,92,89,87,96,103,95,93,104,111,95,94,96,107,97,99,101,104,95,95,108,97,114,93,91,94,106,98,102,81,92,97,98,113,93,98,103,86,99,91,101,96,100,97,100,112,104,101,101,88,108,95,105,86,93,109,94,92,85,90,100,99,98,97,110,93,99,89,83,94,94,105,106,106,105,91,104,100,104,100,106,103,91,112,100,101,109,90,93,101,95,102,92,112,116,105,108,111,120,108,80,95,89,93,96,82,104,98,106,89,99,92,107,100,100,101,92,97,91,99,102,98,102,107,104,106,83,95,87,92,85,102,94,104,87,103,110,111,107,111,112,100,99,95,109,107,96,102,96,105,96,110,70,104,112,99,91,91,114,104,100,100,102,95,98,101,110,102,93,98,99,92,111,97,97,99,104,109,98,103,93,95,94,102,102,87,92,104,100,95,100,98,96,100,108,102,94,92,105,89,101,96,102,100,105,101,96,102,86,110,92,95,106,91,101,93,113,105,100,95,101,118,110,100,121,92,100,100,95,103,98,106,96,94,106,107,100,96,92,101,107,101,103,93,90,92,102,95,104,103,90,96,98,105,93,98,106,104,86,101,96,94,98,107,114,102,103,112,107,101,96,102,105,96,106,112,108,92,94,96,110,98,95,115,97,108,97,96,102,95,105,95,103,108,108,101,97,103,117,94,99,87,97,108,103,100,96,97,114,74,100,100,109,96,79,100,103,92,99,106,100,102,99,92,106,81,99,101,97,106,94,98,95,89,91,96,96,104,99,97,105,99,91,101,105,107,103,98,93,99,97,105,97,109,99,108,93,102,95,129,101,96,122,99,108,102,101,100,103,95,99,118,94,107,98,107,107,100,95,91,104,90,91,102,98,103,92,102,106,104,106,64,90,97,92,129,106,104,100,99,112,98,129,99,96,108,110,99,114,102,104,89,102,95,109,102,96,102,110,88,123,104,100,102,97,110,93,95,92,107,101,108,99,113,99,113,113,94,117,123,107,107,107,102,109,92,98,106,110,95,120,109,91,93,104,99,103,113,91,99,108,106,93,110,99,106,93,105,97,97,88,92,97,113,107,90,103,89,101,102,100,85,106,102,104,99,100,102,104,98,93,103,85,95,122,90,105,100,97,92,99,92,110,111,134,100,114,95,101,101,101,99,101,107,106,105,92,94,98,103,102,95,105,91,98,98,107,108,97,97,90,91,108,95,93,109,94,94,110,105,101,98,111,98,98,103,99,102,108,94,106,93,106,66,99,98,102,109,102,79,96,101,101,90,107,95,113,92,105,105,101,100,109,102,105,108,106,105,94,99,90,100,102,101,94,96,94,95,101,88,99,93,96,89,98,101,107,104,97,101,105,99,96,102,94,104,106,101,101,92,98,93,91,101,104,94,91,88,96,104,105,92,99,106,99,93,100,98,108,95,104,74,111,110,91,91,98,95,101,100,94,106,97,98,92,88,96,96,103,100,93,105,108,108,89,87,106,92,94,105,81,100,108,87,101,101,96,113,103,100,126,105,110,100,108,92,100,106,82,98,86,90,108,101,89,101,105,97,99,98,86,109,98,98,89,92,101,101,104,104,80,93,97,79,108,94,102,93,77,99,102,83,93,105,99,111,101,87,103,105,103,90,93,98,103,94,99,107,103,103,97,97,114,86,96,97,103,100,96,102,108,96,100,81,78,110,119,105,91,96,101,91,94,108,105,116,100,106,102,92,93,100,101,100,98,99,97,109,91,109,93,101,88,100,102,109,94,113,92,99,103,98,76,101,91,99,92,101,91,100,103,117,78,107,101,99,87,94,92,85,108,92,94,105,100,104,104,96,102,115,97,97,102,95,93,95,99,96,109,112,121,97,102,96,96,103,108,87,104,108,111,105,114,94,100,102,102,95,95,95,104,102,87,106,106,105,108,113,105,105,102,106,104,103,107,105,107,104,86,95,105,97,94,94,93,93,94,112,103,106,117,99,98,106,84,83,96,99,105,105,105,96,97,100,108,98,96,89,107,95,109,101,99,98,81,111,95,120,106,100,107,93,119,99,94,99,110,99,107,100,103,102,94,97,105,92,108,102,109,90,99,111,109,102,98,105,97,87,101,94,103,107,113,101,106,104,84,103,99,102,100,104,99,99,95,91,72,106,109,102,87,91,101,101,104,95,91,107,93,94,99,109,93,100,105,91,102,102,105,95,100,93,97,106,97,107,92,104,103,107,104,112,106,99,106,110,111,95,130,94,96,82,99,112,102,110,93,86,94,96,88,99,100,88,104,104,103,93,107,103,105,79,91,106,105,105,106,101,100,97,106,105,108,113,103,99,113,100,88,90,95,104,103,109,97,102,110,105,95,92,95,86,90,110,109,104,106,100,108,101,83,95,105,94,106,95,108,111,102,92,109,102,109,91,97,113,105,97,99,99,105,112,104,102,99,99,97,93,97,120,117,101,90,120,106,92,96,107,96,112,102,100,100,110,94,96,101,111,103,105,101,111,88,95,87,94,110,95,106,94,100,115,102,106,86,85,98,108,93,109,93,108,94,94,102,87,110,113,106,100,93,120,98,106,110,101,111,92,112,98,103,104,96,105,83,112,106,107,104,90,86,102,95,112,100,97,103,104,104,105,109,106,99,110,64,95,90,109,108,103,88,99,109,91,99,113,98,101,102,106,101,97,98,101,105,116,100,104,104,90,104,96,100,113,87,97,94,109,111,101,108,100,108,94,99,90,99,90,98,92,98,103,84,99,98,94,106,106,98,104,94,103,87,105,108,92,97,93,106,100,90,88,113,90,106,96,106,94,110,96,107,97,107,100,105,105,98,102,107,98,106,101,105,95,105,103,109,97,94,102,92,95,105,99,92,100,105,88,83,116,95,100,102,106,102,103,95,118,106,136,96,99,109,106,95,92,114,92,106,99,99,92,107,101,94,98,103,106,97,94,94,105,99,102,112,107,104,100,94,98,95,96,102,104,101,108,87,104,107,112,115,99,93,103,92,106,86,99,102,102,93,104,106,92,96,91,99,102,99,110,118,102,101,93,96,100,98,97,100,96,99,100,99,100,100,82,99,100,105,98,104,108,107,103,95,101,115,106,103,102,109,89,108,89,105,104,87,97,100,112,109,104,98,101,99,107,95,99,98,97,104,103,102,91,97,104,105,84,111,104,102,90,100,101,87,101,101,101,99,101,100,94,89,97,106,105,97,91,115,100,104,125,113,94,101,105,101,108,96,100,104,105,100,111,112,108,96,87,94,94,103,102,112,97,113,136,104,80,92,108,92,107,104,105,102,106,98,97,117,93,109,93,97,101,113,115,104,105,106,119,105,95,108,89,99,98,99,102,103,72,102,101,104,103,89,94,96,101,115,94,101,97,101,74,104,102,108,120,94,95,96,107,113,93,108,109,107,95,102,103,107,109,96,91,102,100,99,103,99,102,95,109,99,91,104,102,105,92,99,98,98,104,100,93,100,103,101,101,120,91,98,110,100,109,84,97,99,85,100,96,96,114,110,103,96,98,96,102,109,97,111,95,90,101,102,90,102,106,97,110,107,103,100,101,105,104,105,116,82,109,106,96,102,92,101,92,98,90,85,106,106,91,110,106,106,94,93,99,101,103,95,118,97,101,104,77,88,92,81,107,96,92,104,89,98,91,98,87,101,94,99,108,96,115,73,99,102,75,100,99,104,101,99,95,111,96,74,96,106,109,112,91,99,106,104,101,102,104,99,102,104,97,99,98,81,106,99,100,91,98,104,113,97,89,105,100,95,106,109,117,93,109,100,83,107,94,95,110,98,102,93,102,121,98,96,107,100,101,78,118,100,100,101,91,101,93,107,109,108,96,96,96,115,100,114,108,95,94,87,96,100,105,99,85,105,96,110,103,100,94,110,93,98,94,117,97,88,100,87,97,103,94,105,94,94,96,113,106,104,98,122,99,112,101,95,117,100,96,94,98,95,91,89,106,94,97,108,90,90,111,97,101,110,97,90,96,108,90,96,109,112,117,104,103,94, +699.98706,102,103,100,102,77,130,102,91,86,110,64,97,104,105,99,103,105,103,99,100,103,108,107,101,108,106,97,99,113,114,100,99,90,100,99,103,108,102,95,136,99,108,83,84,102,91,110,102,99,99,78,99,99,93,90,96,101,95,108,107,104,105,96,94,101,109,100,94,91,97,101,103,99,106,99,105,98,106,107,92,91,95,110,99,109,91,101,98,100,98,101,105,94,115,91,91,97,100,95,95,104,105,88,93,101,104,97,82,100,109,93,102,104,98,101,100,83,101,111,98,111,86,90,106,106,104,103,87,92,105,98,105,90,99,85,97,101,106,105,103,99,98,107,85,96,98,93,95,88,98,96,106,98,83,106,97,91,96,108,90,94,97,94,95,110,101,105,95,100,95,104,97,101,105,101,112,100,89,104,92,76,66,98,98,92,91,96,86,111,89,98,97,99,99,95,100,104,96,100,111,96,104,82,105,93,105,109,102,102,103,103,100,98,113,97,105,96,106,109,96,98,98,103,96,107,99,97,103,61,88,87,99,101,98,102,102,105,103,114,77,99,96,99,94,103,95,91,105,107,105,104,108,103,96,96,99,99,98,86,98,95,105,96,92,81,109,104,106,100,109,118,97,113,98,105,109,107,97,99,109,95,92,94,99,99,99,90,99,64,104,107,91,110,102,97,101,99,108,98,110,97,111,100,114,91,99,108,124,94,104,91,80,99,99,101,124,87,102,113,102,107,89,108,107,88,96,95,93,103,103,102,98,104,103,103,102,112,101,101,105,93,106,103,119,101,87,97,103,110,99,112,100,109,94,102,100,101,100,105,100,91,98,94,101,105,102,103,106,99,100,95,95,109,105,99,98,101,100,103,99,98,95,112,106,99,96,92,89,107,92,102,91,104,92,100,91,101,97,92,100,103,102,75,102,112,95,96,108,97,102,96,97,108,108,77,107,110,99,94,96,99,103,99,103,91,96,99,92,86,92,99,107,101,94,91,96,101,102,99,98,86,94,127,97,104,108,98,97,93,95,95,108,106,112,99,91,86,109,102,98,96,94,104,102,102,91,92,95,105,98,97,92,102,97,96,97,100,91,105,98,108,109,100,87,98,100,100,112,88,97,99,104,102,92,100,108,121,98,113,98,103,88,101,98,101,88,84,108,95,102,104,96,103,95,89,103,98,85,91,87,102,95,95,97,95,94,107,100,104,93,91,100,101,102,97,97,99,100,86,109,90,108,96,100,106,90,97,96,101,99,105,79,111,108,101,88,101,90,108,104,99,96,96,94,94,95,99,94,100,102,123,89,98,95,75,105,109,91,116,97,104,99,91,91,116,109,106,106,98,111,92,89,107,114,104,110,98,98,106,105,92,97,102,99,105,103,103,89,103,96,99,102,100,101,105,104,96,97,111,105,103,98,91,106,121,102,102,126,109,100,90,98,105,96,94,101,88,82,76,87,95,105,94,113,97,98,102,64,75,98,86,98,103,104,97,117,101,96,102,86,110,96,105,100,106,99,108,98,107,106,99,111,102,98,98,98,97,97,85,108,97,105,102,92,94,100,102,101,103,109,103,94,95,117,106,96,106,99,105,91,94,97,101,95,95,111,93,102,105,74,99,106,108,120,100,100,92,109,100,88,91,101,99,100,104,92,95,99,84,102,106,111,93,95,100,97,101,97,97,97,114,84,91,101,100,102,100,94,92,106,95,98,110,109,85,98,102,108,102,105,97,93,102,113,94,99,98,94,96,97,103,104,100,91,86,105,104,86,103,105,97,98,101,109,66,87,104,104,102,105,103,92,95,111,98,88,89,113,95,98,91,100,98,116,108,109,95,78,100,75,108,105,97,103,108,98,91,102,103,94,114,105,105,99,90,115,113,95,98,88,90,101,99,98,106,97,100,91,95,100,101,98,102,94,88,104,98,92,115,101,103,90,101,99,100,112,96,109,103,95,103,92,91,102,97,81,100,101,109,95,105,97,96,98,61,104,105,89,94,102,96,91,85,113,101,106,103,116,98,93,89,104,87,116,96,97,97,98,107,99,105,101,104,96,91,99,98,92,86,93,106,103,87,106,99,123,95,112,98,103,102,97,90,79,93,94,95,101,109,97,105,105,100,115,94,95,98,77,111,103,96,95,112,100,103,114,92,107,98,104,96,104,103,105,104,100,85,73,95,103,100,95,92,101,103,118,90,93,85,94,101,105,100,103,96,109,109,88,93,105,97,82,89,103,94,104,79,111,96,96,109,102,94,104,98,104,90,101,93,109,100,101,102,93,114,106,102,97,91,101,93,100,101,109,85,88,111,88,104,90,105,97,96,93,100,84,96,78,90,96,98,93,102,83,110,95,84,109,97,101,91,114,87,93,88,102,109,97,90,82,97,107,99,101,101,106,94,112,103,91,106,97,98,100,112,104,97,103,80,93,94,101,95,106,110,91,95,93,97,99,88,104,96,100,73,99,96,96,104,89,99,103,88,100,100,87,100,87,110,108,88,81,100,102,95,107,93,104,97,83,107,111,102,97,109,102,105,104,92,99,77,91,101,95,111,98,104,108,103,99,107,99,97,110,96,97,105,94,106,104,97,95,95,101,103,105,112,81,97,95,109,106,111,100,98,94,97,90,102,103,113,89,105,99,84,106,89,97,99,115,95,88,104,98,89,105,98,101,92,103,94,112,106,92,96,94,101,100,108,113,88,106,102,98,98,93,105,91,106,97,97,92,102,97,98,103,114,105,102,104,101,98,91,93,93,95,98,94,92,100,82,101,97,100,98,95,98,99,93,104,99,106,92,103,98,95,95,102,102,96,90,110,105,98,103,99,101,92,100,101,100,95,93,98,92,98,100,94,97,93,101,105,97,98,94,103,102,120,96,109,109,90,100,103,101,90,101,104,93,102,117,103,109,101,103,100,93,97,106,91,100,98,79,94,92,99,99,112,91,101,89,111,72,109,96,97,87,108,94,95,97,96,96,85,126,104,88,96,85,96,97,91,90,100,108,94,100,103,90,95,113,91,73,101,105,98,101,87,83,94,97,103,69,97,100,95,91,95,106,102,96,99,103,99,98,96,106,100,92,91,95,101,96,102,86,98,90,96,86,88,116,94,102,115,107,99,90,96,99,96,109,96,112,102,101,110,91,90,104,108,92,96,102,100,97,63,94,78,106,101,91,117,100,102,105,96,91,97,99,109,93,104,95,88,97,96,97,101,90,91,96,94,98,94,101,96,100,88,102,105,104,104,79,101,110,89,91,88,107,89,109,102,98,102,90,100,85,85,105,106,95,74,114,106,91,97,87,124,101,91,104,106,89,109,93,91,86,91,98,95,104,111,91,91,98,93,90,94,106,94,95,95,101,104,93,103,95,108,98,89,103,102,100,99,97,93,91,96,98,97,90,99,100,111,97,103,94,97,112,101,97,94,99,109,65,93,88,89,97,89,101,98,106,87,107,91,90,102,93,89,98,88,96,91,88,109,95,100,90,98,100,133,91,103,103,92,100,103,97,98,99,100,101,100,97,103,109,93,94,95,101,98,89,100,105,97,94,90,104,101,97,91,66,97,89,106,96,90,96,87,79,109,91,83,103,96,104,110,99,101,96,96,101,101,96,93,96,92,103,99,92,85,103,63,93,104,102,99,78,100,89,87,98,110,98,100,108,100,92,98,98,100,94,83,105,91,67,90,98,98,102,99,100,108,83,97,100,91,99,88,95,92,96,92,113,93,102,99,101,101,98,99,98,99,83,103,98,104,99,100,95,97,101,91,104,98,93,92,104,99,92,99,100,101,105,95,97,99,93,103,112,94,104,96,93,108,83,89,90,102,106,91,91,95,84,96,105,95,91,94,96,94,98,102,93,101,89,87,101,97,91,95,102,98,101,105,103,101,97,95,90,121,105,98,95,91,98,105,87,93,104,90,109,99,95,108,100,67,100,98,94,87,98,85,100,95,104,90,93,92,95,103,94,98,97,103,97,91,91,96,102,98,98,92,109,98,102,91,128,100,112,96,94,101,95,97,112,100,95,94,99,100,88,99,94,102,96,89,102,99,102,99,104,98,95,95,96,107,104,89,83,105,98,93,107,108,100,100,98,106,100,93,88,100,93,104,93,102,103,99,113,85,91,94,95,101,93,110,96,98,94,92,97,91,104,92,103,109,88,88,107,100,105,114,94,102,101,96,98,87,99,101,92,89,108,94,108,99,108,107,92,88,103,106,98,96,105,104,88,87,89,107,113,95,87,91,84,83,113,104,86,94,92,87,102,104,94,93,88,111,98,107,94,116,89,99,109,101,96,94,107,85,97,104,89,95,92,91,102,93,99,88,90,95,105,99,99,99,106,99,101,101,110,108,100,97,104,92,95,97,102,100,87,113,104,107,102,107,105,91,90,89,104,92,97,102,92,102,95,101,99,113,108,91,97,91,96,94,110,105,96,101,92,107,101,83,103,100,101,106,92,102,96,101,95,90,93,95,91,110,88,96,88,96,93,96,85,95,90,92,103,95,94,109,93,94,102,90,105,99,100,97,97,98,95,87,110,90,98,103,90,87,111,97,104,99,109,94,80,100,95,106,98,80,102,108,107,100,112,98,94,95,95,106,101,100,103,95,106,94,118,97,104,109,106,116,102,108,113,82,101,91,103,101,97,100,89,84,91,84,85,101,112,102,93,107,106,93,92,97,97,121,108,100,88,90,110,101,106,92,87,97,102,108,113,100,97,101,104,99,103,88,106,106,90,101,109,98,95,97,100,86,92,99,95,99,100,105,101,103,109,110,101,95,98,105,115,96,91,96,87,107,99,83,95,92,112,107,87,107,109,86,96,95,87,100,88,102,95,100,103,110,102,87,93,108,78,97,85,99,104,79,101,105,84,109,101,92,87,111, +700.12842,106,93,95,100,92,108,119,87,106,95,95,89,112,100,94,112,106,86,101,101,106,104,95,97,96,101,107,91,105,100,100,94,92,100,118,101,104,97,98,108,94,120,101,92,99,113,105,101,92,106,96,94,87,98,102,94,71,77,95,97,95,99,101,86,109,103,106,96,103,96,108,89,114,90,93,111,98,109,107,96,117,92,96,91,98,101,113,111,98,96,91,91,88,105,103,104,86,103,102,111,108,102,115,108,94,96,106,93,101,96,102,94,101,106,98,102,89,90,104,92,107,99,94,108,97,104,102,104,114,91,98,91,105,101,91,101,85,101,95,102,104,105,105,87,95,96,100,99,95,99,108,101,99,95,102,109,102,90,108,107,100,99,103,94,95,89,105,97,94,105,101,90,107,97,92,103,94,100,101,93,100,95,89,110,106,93,99,90,98,100,95,99,106,108,96,96,106,97,95,83,99,99,94,106,99,108,103,105,100,100,101,99,99,105,88,102,108,117,94,96,112,89,108,96,91,127,100,98,99,101,95,95,104,85,97,97,105,113,88,100,97,104,111,97,102,103,105,104,100,111,105,103,90,101,106,98,105,97,100,86,98,108,94,97,90,94,102,92,111,90,104,99,95,101,96,90,100,105,92,92,106,91,131,113,112,101,95,100,99,93,101,102,97,106,105,96,117,103,103,103,92,95,119,114,83,101,98,100,102,99,98,87,103,96,101,95,98,92,120,94,102,83,118,105,100,107,105,83,91,112,86,108,100,101,104,114,137,98,96,98,99,95,93,91,100,98,100,98,96,109,105,106,109,113,106,91,104,107,113,107,100,103,103,98,85,93,105,94,97,100,99,92,113,87,100,92,99,92,89,106,106,102,95,92,95,107,93,110,109,98,104,100,93,92,101,111,97,75,95,97,101,90,92,93,94,78,98,97,90,98,99,102,100,100,91,99,98,96,103,87,92,80,97,98,103,89,103,99,106,109,96,116,101,107,103,105,101,101,88,105,90,100,96,97,106,114,97,73,104,95,102,99,88,95,101,95,108,95,110,91,107,105,93,97,99,92,91,92,100,81,95,99,104,90,100,100,90,95,96,92,100,94,94,99,101,95,100,92,107,94,98,100,95,106,99,98,89,101,108,103,101,96,101,94,103,99,100,96,98,82,93,105,99,92,93,109,105,95,103,95,98,109,102,98,103,98,92,93,88,103,100,91,100,102,101,98,106,106,98,118,98,107,109,95,106,108,102,99,92,105,98,64,103,87,110,101,100,94,93,103,93,95,92,104,91,91,102,103,78,106,94,97,101,102,105,100,101,103,95,100,107,91,89,97,94,101,105,99,102,105,123,94,92,102,104,100,94,111,88,86,99,105,110,91,95,95,96,91,97,97,99,107,89,101,98,99,100,97,98,89,104,95,100,99,105,102,98,104,87,89,102,109,92,107,102,106,106,101,95,94,116,93,90,86,108,96,91,125,119,98,98,101,109,94,86,110,114,95,109,108,108,105,110,105,92,100,100,93,108,100,116,103,112,92,101,109,101,91,101,101,101,93,104,92,102,103,92,98,99,104,103,96,99,122,114,88,105,103,95,91,87,93,101,87,93,109,104,101,105,113,94,87,99,101,88,92,90,94,97,107,93,94,90,97,96,91,93,101,88,99,88,103,97,98,104,98,93,108,105,101,104,88,84,90,92,84,124,96,103,104,108,83,106,111,107,100,102,98,103,104,110,99,91,104,100,97,83,105,98,99,92,99,99,95,100,96,105,95,96,82,105,109,91,104,84,101,93,105,107,112,91,99,106,108,96,94,99,99,104,92,104,104,109,106,96,111,106,100,97,95,97,94,87,98,100,100,96,94,100,90,106,109,102,100,97,103,107,108,102,97,100,96,107,98,99,100,114,106,103,106,93,93,101,98,92,95,99,97,103,92,98,100,92,97,102,97,113,81,105,101,93,105,95,102,83,105,106,98,111,99,107,104,99,82,92,109,104,91,95,87,92,110,106,99,79,98,105,107,99,107,105,99,98,97,95,97,108,101,101,97,104,103,105,109,100,93,95,93,91,104,96,100,93,104,101,105,110,96,88,93,101,103,86,101,96,82,95,94,101,89,90,95,98,113,88,98,89,70,109,100,103,115,99,104,96,100,102,101,101,87,109,102,95,103,95,104,90,95,96,96,104,112,87,98,102,91,98,94,106,93,82,104,99,100,100,101,102,117,105,99,105,98,84,91,99,95,105,110,91,102,109,97,100,79,93,83,112,77,71,99,111,104,94,98,101,98,105,99,117,100,87,104,90,105,101,96,106,87,96,99,119,104,105,99,104,105,94,115,96,102,101,80,101,95,111,97,107,106,108,107,93,102,101,114,91,98,103,93,112,108,96,104,107,104,100,105,99,103,99,114,125,100,97,98,86,104,93,93,107,105,92,116,98,100,99,101,92,95,99,98,99,106,94,110,99,106,108,95,101,93,88,94,104,101,103,97,100,97,100,100,104,94,110,100,96,107,91,95,102,100,95,102,94,94,103,109,97,112,105,96,85,106,111,94,91,86,99,99,106,101,101,109,100,101,113,100,98,98,96,102,98,107,99,101,94,103,98,98,105,80,112,92,121,102,98,108,93,104,114,115,99,92,88,105,115,98,114,95,61,93,103,105,105,95,119,99,103,106,103,111,96,91,95,101,96,107,98,102,98,93,99,108,104,104,107,100,93,104,99,110,110,117,95,89,105,102,105,91,103,95,95,104,98,93,101,108,106,102,96,96,94,106,94,104,96,88,90,110,108,103,100,109,95,103,104,99,100,96,92,99,106,100,103,93,102,122,92,105,95,102,98,96,100,118,92,110,91,106,105,109,100,106,113,105,106,103,99,99,82,105,100,102,119,105,100,106,100,108,92,98,104,107,101,114,94,116,119,106,99,102,87,104,108,82,90,117,98,93,91,88,114,95,92,99,111,112,102,95,94,99,87,101,99,98,100,89,104,99,103,101,109,135,110,117,103,100,106,112,108,105,101,127,102,97,107,98,102,112,109,98,92,77,97,104,109,107,92,86,111,104,100,84,100,104,99,103,106,96,97,96,104,106,115,102,114,91,106,98,87,99,117,105,96,116,98,101,102,110,100,97,105,106,100,108,110,106,103,112,88,102,107,108,112,107,114,113,102,105,96,101,104,119,97,102,91,94,109,99,101,99,107,96,88,97,95,92,97,95,113,101,101,107,101,87,94,100,103,111,110,103,107,110,117,120,83,107,88,96,96,99,106,88,106,99,106,104,99,99,100,82,92,89,113,100,99,98,109,95,93,96,93,108,105,102,109,104,102,98,110,103,96,102,101,99,94,94,98,96,103,103,109,109,101,98,105,109,100,98,94,108,94,102,104,105,101,105,96,112,110,101,101,110,98,109,108,90,106,102,106,109,101,106,102,99,98,99,116,105,103,106,102,107,102,100,88,102,104,112,103,97,109,106,91,91,84,77,99,99,102,101,93,99,94,105,109,103,107,96,97,111,102,98,108,101,93,109,95,111,100,104,104,110,99,93,90,87,100,97,102,116,99,89,104,93,110,86,95,66,99,91,84,97,104,103,99,102,109,103,100,108,95,107,108,99,97,92,105,110,116,105,101,103,99,90,107,110,99,94,98,106,102,103,103,106,96,104,103,117,107,90,104,118,102,113,99,102,104,100,103,92,91,96,104,121,99,102,101,117,102,101,107,103,102,100,99,96,102,96,92,93,128,105,100,94,96,109,103,101,105,107,94,104,103,95,98,98,106,97,107,96,104,99,96,115,96,104,106,105,106,99,107,100,99,103,108,95,100,104,100,104,107,111,107,95,106,99,120,110,106,110,104,98,87,106,100,98,91,104,97,97,125,100,96,96,110,99,100,102,100,102,107,113,104,102,111,100,103,98,109,112,103,88,111,107,96,104,106,98,123,111,102,95,99,105,98,94,108,94,99,101,69,88,100,96,93,106,104,105,93,98,109,115,111,97,116,98,106,108,102,122,124,100,103,100,100,102,102,106,94,94,101,102,96,98,100,99,105,102,102,94,104,98,101,96,112,120,91,100,101,99,106,95,98,103,106,101,101,101,115,104,99,104,114,105,98,105,96,97,107,103,101,95,110,106,88,100,100,106,102,109,96,84,95,98,91,115,104,107,98,93,106,94,101,116,104,111,96,97,100,108,110,112,104,94,101,111,103,101,98,105,102,79,105,100,100,96,104,102,110,108,95,99,106,95,100,115,109,98,110,97,90,102,102,96,105,96,102,92,100,117,92,114,109,101,79,109,106,111,107,114,94,98,99,97,95,114,105,105,109,108,111,93,102,99,104,94,96,104,95,111,99,110,107,107,106,106,103,98,99,103,100,111,94,106,101,96,104,104,91,105,89,94,94,98,97,96,104,99,96,87,107,84,98,96,107,107,81,100,99,89,112,108,98,113,100,101,98,79,103,102,93,99,102,102,98,110,98,100,90,101,97,100,98,101,107,109,107,101,96,96,92,111,96,100,102,107,104,102,86,96,83,108,97,95,95,109,98,97,102,107,100,101,97,101,92,108,108,104,95,97,90,94,109,106,109,104,93,95,97,91,92,102,104,105,101,119,101,99,76,92,117,91,114,99,100,105,116,114,98,113,91,100,107,114,95,103,93,97,117,97,107,100,107,110,97,103,105,102,111,93,101,92,106,103,106,93,102,101,121,93,99,99,125,93,98,99,93,112,95,102,100,98,95,115,98,102,102,91,109,97,89,105,95,98,103,101,108,90,99,113,118,105,97,92,98,101,103,111,108,90,99,101,98,97,119,108,109,111,105,93,99,107,90,78,104,110,100,110,98,98,106,102,109,110,111,118,108,109,83,108,102,106,97,103,103,80,102,94,93,122, +700.26971,92,100,90,90,97,91,91,92,95,105,106,96,101,92,92,108,108,103,97,95,92,98,89,91,97,67,99,109,100,111,90,93,94,113,107,85,90,91,99,109,91,99,100,97,113,111,97,103,93,104,106,99,109,116,110,107,91,89,90,97,98,100,94,89,105,104,91,102,96,99,89,105,87,98,112,103,118,93,113,99,89,96,106,93,116,96,88,105,97,102,79,87,98,100,100,75,96,90,92,97,91,85,94,96,64,99,93,99,98,108,107,86,106,94,109,81,100,100,103,90,105,95,94,98,97,99,108,99,123,100,98,123,103,76,92,93,95,117,92,103,96,107,104,103,114,106,104,88,98,101,97,97,95,93,102,104,107,97,91,99,90,99,95,100,99,99,103,81,113,97,102,93,100,96,104,90,109,101,106,79,91,87,109,94,99,89,90,86,96,113,97,95,96,104,95,101,78,101,103,92,94,98,99,96,104,100,95,105,114,111,97,102,105,96,101,97,97,101,96,103,106,109,104,99,89,105,96,112,97,98,100,96,101,97,101,101,96,100,110,93,100,103,105,115,103,96,100,100,87,108,102,98,92,98,97,95,101,105,91,110,91,108,111,90,87,104,97,86,94,93,86,104,91,97,112,108,91,95,108,101,95,102,94,101,107,92,105,84,105,102,84,99,99,114,95,109,101,94,91,119,100,105,98,114,92,104,97,99,98,114,88,94,100,100,104,94,88,97,97,94,99,112,99,108,114,74,105,95,92,96,110,94,93,93,124,98,102,97,92,105,89,93,105,96,101,104,93,95,106,100,94,101,99,97,94,94,105,106,92,98,101,99,95,101,96,103,89,98,101,117,93,92,104,99,104,106,107,97,89,96,102,101,110,90,100,94,109,105,104,101,110,108,106,93,107,101,96,107,105,106,96,118,99,95,95,96,97,106,104,102,90,91,117,91,101,77,94,108,103,102,87,92,96,96,105,86,101,102,122,98,103,95,95,103,96,98,96,99,99,99,102,102,109,99,99,101,94,88,96,109,96,102,95,106,104,101,90,91,102,95,86,107,102,125,103,108,98,103,104,102,92,106,103,104,95,96,93,101,101,90,99,104,110,93,101,98,101,101,90,92,104,107,117,97,90,93,91,106,105,105,109,109,92,98,96,94,105,107,103,94,98,94,101,100,99,100,99,95,93,100,102,103,107,97,105,102,120,101,85,103,104,98,92,94,93,96,99,91,94,101,90,99,98,94,98,102,104,94,89,117,96,112,97,98,105,98,113,98,94,114,97,98,93,90,77,100,112,103,113,102,95,95,111,97,113,104,97,97,82,89,94,112,88,80,97,92,93,105,94,97,110,105,80,106,101,97,110,107,102,93,90,92,102,97,100,109,92,108,105,95,105,95,98,108,105,94,105,100,100,91,95,97,96,101,108,98,102,106,99,94,110,99,100,98,106,97,107,101,90,101,99,107,102,96,96,98,95,91,100,98,102,105,101,101,92,113,96,106,103,126,102,110,105,98,101,100,117,95,100,98,108,96,106,94,97,105,95,103,95,98,96,108,86,89,101,94,99,101,97,109,109,97,96,107,97,105,93,95,103,96,109,92,92,101,93,92,100,115,91,113,104,111,99,95,81,99,91,116,102,102,105,100,112,107,81,94,96,92,101,95,94,101,116,99,95,96,111,89,108,100,106,99,99,105,117,98,93,101,102,102,100,99,94,88,60,110,94,105,113,103,101,88,95,87,83,100,97,111,101,96,103,94,110,93,90,88,106,99,96,93,100,99,99,97,86,91,98,98,97,112,100,106,103,100,102,109,96,92,103,110,96,121,109,91,103,108,111,86,90,92,105,109,89,100,103,99,108,102,96,90,102,100,101,112,103,108,95,100,106,102,98,97,101,106,93,97,87,76,96,95,100,101,117,98,101,86,87,94,93,97,101,78,109,100,105,102,102,95,103,108,101,118,101,106,100,103,101,108,107,105,104,105,106,98,100,98,84,96,97,87,107,91,96,92,83,94,100,110,97,95,92,102,103,106,90,91,97,89,100,112,92,100,106,91,92,105,93,86,107,108,118,112,104,102,84,99,99,95,90,99,91,100,86,98,100,98,92,100,95,95,93,111,105,97,101,99,91,85,89,95,98,93,114,114,104,98,93,104,99,106,97,91,109,124,94,95,104,99,95,107,101,92,94,92,100,125,106,101,100,89,87,105,98,95,93,104,104,98,103,92,97,98,109,100,101,106,101,115,101,95,99,109,114,106,101,82,94,116,96,111,110,97,102,93,93,106,97,100,91,96,96,105,93,107,104,107,99,106,103,89,108,112,106,92,97,106,101,93,98,99,105,116,97,68,109,105,98,92,101,115,96,74,92,88,94,98,96,101,90,91,109,92,104,96,92,102,107,95,101,88,103,100,87,111,101,105,91,96,93,100,86,112,103,110,109,101,87,99,99,92,93,92,105,95,94,101,105,106,109,107,96,92,97,83,91,96,105,99,110,92,97,107,98,99,96,116,100,98,96,106,90,108,105,89,108,105,116,98,98,111,99,95,105,91,105,98,90,102,97,104,107,112,95,100,105,103,120,94,98,97,104,96,91,104,104,101,100,99,110,104,101,98,93,111,98,87,103,98,91,96,98,88,105,85,96,99,110,100,100,82,100,105,99,91,91,111,116,92,109,108,97,96,102,98,102,97,107,104,103,86,90,98,106,105,101,103,93,89,99,91,108,95,106,107,102,104,99,100,94,106,85,93,100,107,104,93,102,106,101,94,103,112,100,94,87,104,101,95,103,87,95,102,94,116,90,92,92,106,102,95,106,98,105,87,81,92,109,97,95,92,94,97,101,98,83,94,98,98,91,95,107,101,103,98,102,97,101,95,102,101,108,90,99,113,103,93,109,118,95,119,94,93,90,105,97,91,103,96,92,95,98,99,103,105,109,101,99,96,102,104,103,109,104,101,101,104,99,94,98,100,107,109,78,88,107,106,94,106,98,98,103,91,104,107,106,102,102,97,121,95,98,99,101,112,96,98,100,95,96,112,110,93,105,104,102,99,104,95,95,109,95,108,93,103,91,94,113,99,94,92,91,104,106,82,105,91,105,86,81,106,103,97,106,110,89,85,102,97,104,102,96,83,100,117,107,95,100,101,94,94,79,93,94,83,108,102,105,97,102,105,110,101,105,94,108,101,107,96,97,86,97,90,93,90,89,95,88,92,105,107,106,94,101,101,97,101,98,93,107,104,103,106,67,92,102,106,122,104,104,95,119,106,98,105,89,109,107,103,70,97,96,85,107,98,127,95,96,100,104,96,102,102,96,108,108,103,109,102,87,96,87,104,95,103,93,103,106,105,103,106,97,104,99,107,95,96,100,76,98,103,98,114,94,108,95,76,107,86,106,97,98,107,102,110,100,101,104,100,114,95,96,98,104,93,97,95,94,106,87,91,101,101,80,95,89,95,102,103,99,102,91,105,109,91,100,111,105,98,117,97,101,114,96,96,112,104,102,100,100,105,103,97,93,117,95,95,104,98,104,119,112,98,106,98,104,104,105,109,102,119,120,99,93,96,111,102,90,97,110,83,117,101,91,95,104,93,106,99,92,96,98,106,100,92,98,92,99,98,105,96,91,99,92,98,91,87,99,92,103,101,92,92,91,94,102,101,72,102,104,94,98,90,106,102,97,92,108,106,97,94,95,101,101,94,110,104,109,100,107,102,97,90,102,97,85,99,106,111,97,85,98,101,98,89,99,89,110,98,101,80,104,88,103,106,98,94,92,94,91,92,105,104,101,97,105,99,97,111,92,96,107,102,105,94,99,95,98,100,94,106,106,102,100,103,98,86,104,111,91,91,98,93,106,106,115,92,115,102,100,96,96,103,101,109,88,100,107,97,99,99,105,86,97,99,104,91,97,76,107,92,91,97,102,92,95,107,97,87,106,101,110,106,90,107,103,97,90,114,103,90,104,100,101,93,96,101,97,96,104,105,94,82,98,102,93,91,92,103,109,90,102,97,93,88,96,96,103,117,100,102,96,94,89,99,99,101,90,91,98,99,95,84,99,101,103,84,98,117,87,95,110,104,93,95,108,98,106,87,105,94,106,95,97,102,102,106,107,105,103,97,98,91,89,93,97,101,99,99,97,109,94,101,104,96,95,100,101,97,90,98,101,95,78,114,112,106,109,116,98,98,112,85,105,99,103,104,98,101,94,92,97,109,101,107,94,99,108,83,101,95,100,101,96,104,103,104,108,95,108,91,101,110,105,87,97,122,102,95,101,100,98,108,102,99,101,103,96,93,93,106,105,103,95,94,119,103,98,96,102,103,99,102,98,107,92,93,116,97,105,88,104,108,91,91,93,78,102,97,111,95,98,99,102,101,90,96,110,97,96,103,89,91,98,97,97,106,97,91,99,76,103,105,92,91,100,92,94,89,100,104,101,97,93,105,97,115,97,94,92,102,93,93,94,103,100,98,111,107,104,103,90,109,105,102,98,114,99,106,109,105,92,100,89,105,99,106,95,89,112,104,98,92,96,90,88,106,91,106,91,108,102,103,105,95,106,96,112,94,105,94,100,87,105,100,97,106,89,99,99,129,98,107,112,96,92,101,101,91,95,98,108,97,110,105,102,99,106,98,104,95,92,106,108,101,103,98,92,98,108,109,114,96,118,102,107,100,98,92,105,108,104,97,99,79,93,98,102,95,111,94,102,87,83,102,90,98,101,93,106,97,96,101,91,98,106,100,96,102,100,89,106,97,101,91,99,116,111,93,96,108,89,91,104,88,89,96,102,94,103,94,107,100,122,107,107,106,103,93,92,120,100,89,110,95,98,109,93,129,77,101,97,103,98,99,111,99,111,95,92,99,94,111,103,86,123,104,101,101,95,90, +700.41107,99,98,94,101,105,91,99,102,82,101,101,102,94,103,82,96,106,107,104,94,106,106,95,97,91,100,104,82,104,99,89,103,95,104,97,97,94,92,91,112,101,103,103,80,79,110,93,112,102,101,103,95,101,90,97,87,96,110,105,96,108,98,101,101,102,95,104,99,104,102,103,101,97,97,102,114,101,97,113,103,114,100,89,96,102,103,91,105,101,105,103,89,110,100,96,100,100,103,100,111,88,103,97,94,109,94,95,99,98,107,103,93,99,91,97,101,95,102,106,106,101,109,114,94,109,99,116,85,110,97,103,98,97,100,83,98,90,103,103,94,101,121,96,112,88,105,102,116,96,102,93,103,96,91,89,99,95,104,100,97,102,104,112,107,108,99,100,99,94,112,112,94,92,96,77,113,99,107,104,98,101,101,96,97,105,79,101,101,108,96,105,91,93,104,90,109,101,114,110,91,104,90,94,102,104,110,104,96,106,114,90,97,98,100,88,100,73,102,97,110,105,90,89,96,113,104,102,118,91,106,74,105,77,109,109,105,107,94,100,101,102,87,102,77,103,96,89,98,99,102,101,96,93,105,110,94,101,103,99,99,87,97,105,129,89,99,83,108,98,99,107,92,99,92,97,99,104,107,106,95,107,103,96,102,101,94,85,99,106,111,96,103,102,100,102,102,89,113,97,99,105,91,106,101,94,129,96,100,102,108,89,116,95,91,88,100,100,95,97,94,107,109,102,94,98,105,100,102,114,115,101,97,88,91,100,108,97,90,98,110,86,98,92,98,97,100,100,103,104,105,90,88,109,91,93,97,95,91,104,104,111,116,75,109,104,96,101,91,98,114,79,101,104,110,109,101,103,99,95,116,106,94,70,100,104,96,102,96,101,92,104,94,90,114,86,107,104,98,98,95,98,94,87,103,107,74,102,107,99,110,89,97,111,97,100,104,113,108,105,85,96,87,99,102,103,87,107,83,85,103,101,104,107,94,101,101,105,93,95,103,105,102,92,74,108,104,92,99,101,111,89,101,106,108,99,109,96,92,101,104,100,113,103,105,88,95,103,96,104,94,99,110,94,96,98,82,90,100,103,101,111,116,102,91,94,103,99,98,96,104,121,113,108,93,94,99,93,110,94,101,96,102,101,109,114,101,91,97,92,105,101,106,95,105,109,100,90,100,98,95,106,90,103,98,84,96,103,91,106,106,109,103,105,87,110,97,96,99,99,101,100,111,99,105,109,105,97,104,95,101,95,109,100,95,103,105,98,110,96,106,113,105,103,95,101,101,111,108,101,101,95,92,90,110,99,91,83,101,95,99,103,95,94,86,108,96,100,105,104,82,105,91,91,93,98,106,88,107,103,97,106,96,97,98,100,104,93,104,96,102,95,93,101,105,104,114,103,105,92,86,125,104,95,106,104,105,111,114,103,99,107,99,97,101,101,100,92,95,88,99,98,99,99,88,84,95,106,87,90,100,94,100,101,98,78,99,98,100,117,93,104,106,104,110,86,107,95,88,110,113,91,103,90,105,101,105,109,104,105,98,109,99,113,101,106,112,97,98,84,95,98,114,97,118,114,105,103,98,115,95,100,92,103,97,100,106,109,94,96,107,108,100,95,89,89,105,102,103,104,101,100,99,105,94,104,109,88,96,108,104,110,101,104,95,107,100,101,98,103,99,94,88,104,97,101,91,104,98,70,105,111,105,111,91,84,104,104,101,117,102,106,108,91,98,89,88,89,95,96,96,98,101,95,94,96,121,101,100,95,95,104,108,104,107,93,78,106,109,103,102,102,99,100,106,105,113,100,104,110,102,106,91,107,103,101,102,106,97,98,98,106,88,106,99,109,105,102,109,104,108,103,107,104,95,109,91,95,105,96,104,95,98,117,121,101,105,91,94,109,102,109,105,97,97,101,92,105,96,95,91,94,109,102,106,112,103,109,110,97,92,105,108,91,112,94,95,140,102,105,98,104,121,100,93,101,94,103,97,102,99,106,100,101,102,111,109,98,102,108,83,102,108,104,115,100,93,102,101,98,104,97,105,102,94,94,92,87,95,104,104,96,103,91,101,96,98,115,99,102,105,102,95,104,105,102,101,93,100,93,104,110,95,103,99,82,110,94,98,100,101,109,98,99,104,104,93,109,103,102,99,94,93,95,96,105,90,108,121,108,108,101,100,110,114,109,99,80,101,98,96,93,107,100,124,113,101,101,91,96,101,90,113,109,106,108,101,105,97,98,98,92,91,105,98,104,84,98,97,105,103,111,99,121,101,110,98,97,99,90,105,93,116,100,103,81,91,108,95,92,92,104,106,109,93,93,97,82,86,100,103,99,101,99,110,112,76,113,110,99,98,95,105,94,99,91,90,118,106,105,95,97,104,71,108,110,86,98,99,114,93,84,105,102,99,96,99,110,100,101,72,102,102,93,104,106,88,97,95,95,81,110,101,102,102,100,98,100,104,90,98,109,94,96,97,109,103,88,104,97,94,96,94,90,110,101,98,100,98,75,98,99,101,102,104,108,95,110,95,93,93,99,98,112,103,103,74,103,96,109,113,106,110,90,91,93,109,84,92,99,89,91,95,105,106,100,99,102,83,112,98,103,102,84,101,96,118,115,103,82,96,106,86,91,95,102,96,94,102,102,98,96,100,114,102,104,98,106,106,106,86,85,93,98,100,108,108,98,101,107,89,95,96,97,109,93,98,97,100,90,95,95,113,102,99,104,100,98,93,104,98,107,109,92,94,97,100,101,97,98,94,111,106,98,100,103,106,94,95,103,84,96,103,99,108,96,96,99,109,107,109,97,98,106,91,102,90,108,101,91,94,93,97,95,109,93,82,100,106,91,117,103,106,108,88,101,94,90,99,80,110,104,103,94,113,91,106,105,106,102,96,89,100,106,96,92,99,95,102,91,104,118,97,91,110,113,95,101,101,125,107,96,98,94,106,88,102,105,83,105,94,111,113,116,98,100,100,105,101,103,95,100,106,103,97,117,94,103,95,99,121,109,104,96,109,97,108,92,112,96,102,108,104,94,96,86,97,105,100,103,118,101,73,98,98,95,89,97,102,80,100,101,103,101,97,111,91,105,108,114,82,96,102,109,106,103,82,96,76,109,87,116,95,89,101,99,100,111,101,104,96,103,87,99,99,91,107,100,98,98,102,106,105,99,98,91,104,95,95,115,96,97,101,91,103,101,98,90,113,85,90,91,100,98,96,113,101,104,105,101,117,95,100,97,105,95,108,77,117,105,97,94,95,96,92,98,97,98,101,99,74,93,99,98,104,93,94,98,90,100,98,98,99,95,100,112,95,104,95,111,97,106,101,96,98,89,95,101,107,114,96,91,98,96,93,105,97,86,103,96,102,93,109,94,100,90,92,97,104,110,115,85,107,99,78,105,105,105,102,106,100,105,86,104,98,97,82,96,100,108,102,94,98,98,97,98,120,106,94,100,99,106,96,103,101,96,105,92,102,85,100,102,102,96,109,97,103,95,104,104,100,113,96,99,99,91,101,107,101,141,96,93,102,107,92,96,122,86,105,103,105,101,87,102,101,95,97,96,99,107,97,88,110,109,94,102,96,91,105,95,102,98,91,106,106,98,95,106,97,99,104,92,96,103,98,105,97,91,99,99,99,110,102,103,83,101,100,79,102,103,97,101,94,101,102,101,90,105,96,102,92,102,98,103,100,102,103,96,92,93,103,91,102,88,97,104,97,101,76,93,95,94,112,99,102,101,99,92,108,103,109,101,95,97,96,104,96,129,99,102,111,97,110,101,100,88,97,98,110,107,105,98,102,103,95,101,103,102,101,99,100,92,102,102,105,101,103,94,103,95,109,90,100,100,102,100,102,98,96,103,95,108,120,96,121,106,102,113,97,93,104,105,109,82,127,102,90,115,94,99,97,102,89,103,94,97,106,99,101,91,108,103,118,96,107,100,99,109,95,95,100,99,97,91,96,102,93,99,95,107,103,98,101,99,98,97,98,92,99,112,105,99,104,97,102,95,98,109,95,132,91,121,103,101,110,83,104,98,94,95,92,99,108,97,98,104,98,102,110,91,111,97,110,97,85,93,108,112,102,91,92,90,98,102,95,94,102,101,112,98,113,110,103,112,104,96,103,110,104,104,105,101,89,96,98,100,101,99,99,105,87,98,115,121,104,95,94,98,109,106,108,117,108,110,105,111,100,106,100,104,100,107,110,96,101,102,99,100,101,100,94,109,98,96,93,108,99,89,105,90,101,98,107,94,110,104,95,109,99,76,102,108,100,97,102,106,106,103,86,88,85,109,104,107,103,92,96,95,96,98,117,101,96,98,90,107,92,100,101,102,107,88,89,99,104,95,106,102,95,103,87,109,99,106,66,105,96,104,121,101,99,90,91,113,112,103,98,105,108,123,95,102,102,90,100,94,102,113,104,106,92,73,101,102,96,96,91,92,87,86,101,109,88,108,97,101,91,115,92,95,100,98,112,90,103,98,95,104,100,89,101,84,88,108,103,95,98,100,101,109,99,98,105,105,89,74,92,116,103,113,92,77,113,89,75,108,97,104,105,107,76,90,87,103,93,103,102,109,94,105,114,99,98,105,99,92,113,99,111,107,99,104,110,106,90,107,107,98,95,61,88,88,102,106,91,99,84,98,91,110,110,89,93,96,102,103,91,98,101,94,94,112,105,106,98,103,105,97,95,94,83,102,99,86,96,99,76,102,100,99,97,96,95,112,99,92,96,102,99,96,90,91,95,98,91,113,98,94,110,98,93,94,91,113,105,107,94,94,99,92,109,99,91,101,102,102,100,109,111,99,104,97,120,105,96,101,107,109,69,97,92,101,116,101,127,107,88,109,97,106,96,101,101,87,95,104,105,105,96,103,109, +700.55237,88,92,99,109,92,113,111,109,98,99,83,98,106,95,103,109,97,104,79,102,103,92,110,89,86,103,113,94,93,109,87,102,100,101,112,87,120,91,104,88,100,99,121,100,90,111,99,99,104,110,100,108,91,93,104,106,101,90,102,87,97,106,74,97,102,91,104,93,98,98,116,105,105,96,101,98,108,104,108,86,105,101,94,103,97,90,98,109,104,99,102,103,99,98,103,94,87,98,113,93,98,116,90,98,90,88,100,89,98,93,110,88,95,99,94,109,107,104,104,95,98,105,98,114,94,110,105,101,117,105,83,107,103,98,110,98,91,83,107,100,71,105,94,122,107,99,112,99,99,95,100,106,99,97,90,103,97,92,111,103,82,105,111,121,94,104,108,88,100,111,105,97,105,109,106,103,104,90,105,88,102,102,97,119,109,96,98,99,110,100,100,106,100,97,94,103,91,96,91,114,115,112,103,96,89,97,104,98,109,99,104,94,103,106,98,106,105,76,95,108,105,99,98,94,101,100,93,90,105,110,100,104,99,97,92,84,99,105,99,88,101,99,85,105,108,91,96,112,105,111,101,114,105,90,103,99,99,109,86,102,94,100,95,97,100,105,119,114,110,100,104,98,109,98,103,102,100,107,95,101,101,110,106,117,101,104,99,99,101,102,104,111,106,120,107,102,113,90,108,112,114,99,89,95,92,104,100,111,104,104,95,101,101,114,105,93,101,101,100,105,122,108,96,98,104,95,103,98,94,102,102,103,105,114,105,109,101,101,85,122,102,107,87,93,103,93,100,105,99,102,99,97,92,95,99,97,104,104,96,97,104,95,100,90,97,96,94,112,105,100,98,82,105,100,100,114,98,103,90,109,101,103,108,94,102,103,96,103,106,100,102,96,97,115,103,107,105,88,93,96,106,93,106,95,108,98,104,115,97,107,93,94,103,100,101,99,90,98,101,93,105,106,100,99,101,100,100,104,97,99,100,106,87,96,97,104,109,108,104,111,101,98,101,99,99,105,106,93,98,91,102,98,95,99,103,99,105,101,108,107,104,100,109,98,111,109,96,109,103,77,109,101,99,99,100,106,102,103,109,102,108,104,100,92,100,95,122,91,94,88,116,89,97,96,96,106,96,100,105,105,107,100,99,110,104,110,100,96,97,104,109,111,100,115,105,107,106,109,105,92,106,104,99,104,90,109,109,109,107,99,92,110,103,106,96,98,108,107,105,98,97,92,110,93,107,99,105,103,106,113,100,108,108,104,96,98,109,89,104,116,109,114,94,115,110,103,106,106,102,111,94,94,104,112,97,104,67,104,108,92,100,91,100,97,108,112,125,100,100,101,110,102,104,98,91,100,108,100,105,100,105,108,110,105,93,94,98,101,94,110,107,105,105,105,110,97,110,107,121,98,99,104,99,108,114,106,109,106,98,98,113,108,101,108,103,91,92,88,96,104,99,107,110,102,95,98,105,108,111,113,106,105,100,108,110,99,97,91,100,101,100,106,111,85,96,103,113,95,108,102,107,100,115,105,98,112,99,108,95,103,109,100,97,100,104,100,102,109,102,93,106,108,95,106,105,93,97,108,103,106,96,102,84,97,100,109,100,84,93,91,94,98,104,107,102,100,97,97,95,95,91,104,104,94,94,111,95,99,104,107,91,106,109,97,59,100,99,94,108,112,105,95,104,103,101,103,93,100,102,99,91,101,109,87,105,97,101,102,95,108,90,105,109,109,98,102,99,98,101,92,104,108,101,109,93,113,108,95,97,109,105,103,101,99,102,121,122,109,106,112,95,108,105,111,106,100,96,109,100,107,100,105,86,106,94,118,64,112,110,98,105,99,94,107,105,110,104,102,110,105,109,103,102,104,113,102,111,104,109,104,99,97,97,110,104,112,101,106,101,110,101,101,100,95,94,117,98,100,102,97,98,106,97,97,96,99,101,103,99,107,99,85,100,109,92,101,94,106,99,102,93,105,105,105,99,99,77,96,94,118,101,101,104,99,109,76,100,103,97,101,95,113,97,102,106,114,102,72,92,99,104,108,101,91,115,92,105,115,99,106,107,115,104,100,102,106,96,99,100,109,109,113,109,93,100,98,105,95,103,104,106,97,99,106,96,99,102,105,102,101,100,89,108,106,96,102,104,103,98,105,92,96,108,109,94,109,124,110,96,114,99,96,97,98,116,93,108,98,109,98,95,95,117,101,103,99,98,106,93,96,94,103,102,97,108,91,97,109,91,105,101,112,107,94,97,80,92,113,104,97,102,120,98,94,94,106,96,99,112,96,108,97,95,109,100,105,109,90,103,105,105,97,104,87,105,95,103,103,108,116,104,79,111,100,104,91,102,110,111,100,126,96,97,100,106,96,100,98,111,104,99,117,104,91,98,104,93,100,102,94,130,105,104,96,93,89,87,107,102,97,101,104,99,103,115,111,113,107,75,108,101,101,90,106,83,95,81,95,104,106,95,104,104,95,104,97,104,99,107,100,110,100,112,99,92,108,93,94,102,103,97,99,101,95,109,100,99,104,98,96,107,115,95,101,106,95,108,106,102,109,98,121,97,113,95,97,104,97,94,108,102,111,89,111,97,97,96,112,75,91,121,105,95,97,90,104,86,105,117,105,92,81,95,96,94,86,95,94,111,97,97,107,110,96,89,94,106,104,110,101,76,114,88,111,106,101,104,100,96,109,92,121,103,97,89,100,112,94,89,119,103,95,97,96,107,94,94,97,98,105,100,101,90,106,108,101,110,110,102,103,95,87,116,95,99,104,107,121,99,105,93,109,91,84,105,94,109,102,111,99,105,102,102,94,111,97,99,108,94,103,97,99,97,106,89,105,104,100,96,107,109,117,108,95,99,105,96,109,132,104,103,102,98,109,96,90,104,101,89,105,96,102,119,99,98,110,102,106,102,106,101,70,100,90,97,93,93,104,73,110,104,98,98,107,84,101,102,99,97,104,95,113,98,102,108,99,103,95,103,101,93,119,101,104,88,103,101,90,92,109,94,95,104,109,104,101,110,102,94,89,96,97,109,99,100,104,104,90,103,110,99,97,91,98,103,97,105,110,95,85,101,113,94,105,102,105,102,108,90,113,83,96,113,94,108,94,91,91,103,93,103,94,98,70,98,92,95,106,97,94,103,96,107,100,104,96,95,98,106,95,109,108,100,100,114,82,95,113,98,116,106,101,98,93,106,102,71,100,98,100,95,94,99,114,104,97,109,101,108,104,101,91,102,102,113,112,109,112,95,97,103,88,100,109,88,89,91,60,103,101,109,97,105,95,87,102,94,108,91,99,109,103,109,90,101,105,96,97,108,70,102,97,98,97,91,101,100,99,108,111,85,101,106,103,83,121,111,102,102,99,105,96,79,104,94,89,95,91,103,101,104,113,88,108,91,101,87,105,100,97,108,97,110,98,97,81,103,98,98,101,105,106,107,119,92,93,106,113,97,101,101,112,113,108,113,101,84,101,113,116,103,99,105,101,91,101,100,101,105,101,99,108,102,88,99,95,105,94,107,101,106,105,112,94,99,99,101,97,107,108,96,98,93,102,110,100,96,103,104,94,101,106,99,101,101,124,96,94,98,82,112,91,106,104,98,101,103,101,79,100,98,109,109,95,105,104,97,97,96,103,109,79,103,113,103,101,87,104,96,106,99,102,97,94,93,92,108,95,95,96,102,105,97,94,109,102,99,100,105,105,106,111,102,99,105,107,112,102,99,85,94,94,96,104,101,109,90,101,100,104,101,100,106,107,105,94,107,98,107,113,91,98,106,103,98,111,104,88,98,94,106,96,105,91,94,100,99,105,106,103,95,113,97,93,87,95,98,105,111,108,98,95,85,110,102,102,99,97,86,100,97,105,100,96,108,87,100,99,100,100,103,104,104,104,104,91,92,112,83,106,96,105,103,95,98,98,104,95,106,105,96,103,81,105,106,96,106,107,88,103,98,98,94,95,111,109,113,108,103,108,99,69,95,102,102,98,105,126,76,93,107,117,99,105,106,101,118,111,95,93,108,108,95,106,115,97,109,89,105,90,103,117,101,109,96,113,94,104,103,96,126,108,85,92,104,102,98,96,100,104,102,101,92,103,111,100,83,109,112,97,100,100,97,100,102,105,93,108,112,103,103,79,93,92,102,100,113,102,100,104,95,126,104,99,100,105,96,97,104,101,103,107,91,100,112,95,94,95,101,100,108,100,87,93,87,111,100,102,97,108,101,113,112,86,94,109,92,97,108,102,97,97,102,99,88,102,105,94,100,106,103,95,91,95,105,98,102,98,99,105,94,99,108,82,105,104,105,100,97,99,111,95,100,97,103,99,101,102,103,95,89,109,101,105,100,98,109,102,111,103,99,88,96,87,113,108,101,96,101,106,127,105,96,94,109,101,89,95,112,111,106,102,97,100,99,96,103,99,93,99,94,95,98,96,111,97,120,100,104,112,93,93,100,96,104,100,86,108,94,98,95,98,103,115,119,101,101,99,92,93,100,96,103,121,109,108,97,107,104,100,93,104,108,105,110,103,120,84,101,101,98,109,106,102,114,93,105,109,106,96,86,92,109,102,97,102,105,94,95,109,101,99,99,107,86,98,94,98,104,105,99,93,101,107,95,106,104,101,113,101,100,99,103,105,105,117,106,104,109,102,102,103,100,111,103,99,115,103,113,101,100,101,124,100,103,88,95,96,99,99,101,100,96,103,106,107,113,110,100,95,105,67,106,109,100,106,95,113,97,106,92,98,100,102,98,97,110,92,92,85,91,109,112,106,81,99,96,103,105,95,95,108,89,82,96,96,104,108,92,103,114,86,113,102,93,113,76,109,97,93,99,113,114,107,102,93,95,107,94,93,95,104,92,103,99,103,101,94,98,105, +700.69373,92,98,79,88,101,101,93,91,98,100,108,98,94,92,111,118,93,101,91,94,111,90,103,95,95,90,102,110,114,97,104,95,95,102,104,99,98,110,103,109,92,89,100,105,104,97,112,98,102,109,104,75,87,101,97,99,110,93,96,110,94,102,97,97,102,104,107,117,93,82,104,96,99,112,99,94,89,92,117,113,101,94,100,98,93,103,104,99,100,91,100,96,85,109,106,87,102,84,103,104,101,104,101,94,100,106,100,100,94,116,103,113,93,92,88,87,97,98,90,103,84,108,106,94,109,91,99,87,110,103,104,109,95,93,92,98,97,100,104,98,97,92,93,99,90,99,70,86,94,97,96,104,110,87,96,100,105,97,102,100,106,102,103,93,93,99,93,93,106,86,98,121,90,98,111,93,111,99,106,97,91,112,94,96,97,96,100,91,107,87,95,112,100,98,86,96,105,94,107,115,94,90,95,102,102,91,113,99,98,109,94,108,101,95,105,117,91,106,91,98,100,107,95,105,97,99,101,107,108,102,106,93,87,103,104,104,92,99,106,77,103,97,114,100,91,102,97,102,117,105,101,82,91,100,93,95,91,101,84,87,100,101,103,104,97,104,104,95,102,100,96,87,109,99,95,91,93,96,99,104,97,103,99,103,95,105,100,100,95,100,103,104,98,115,117,102,104,96,97,96,101,101,103,99,106,105,109,106,106,95,64,98,92,100,110,94,107,101,113,109,96,101,74,102,106,87,102,86,107,104,96,100,106,67,109,114,103,97,95,102,94,95,110,105,91,102,107,93,94,107,95,98,104,96,100,91,92,100,105,102,107,94,108,116,90,99,72,95,79,110,107,100,102,89,91,96,100,116,91,102,103,91,94,91,97,90,82,86,96,89,99,90,95,101,95,101,110,114,102,115,94,103,108,93,96,102,98,104,96,105,83,93,104,105,98,90,96,107,116,91,90,92,92,97,108,91,80,83,88,105,88,111,96,95,92,104,103,87,87,84,95,98,82,99,115,106,95,101,92,105,101,96,107,86,105,103,94,119,109,102,95,93,104,68,106,101,107,98,106,94,93,117,95,110,114,94,98,102,104,117,112,107,90,108,110,101,108,109,99,103,96,108,94,96,86,93,92,90,99,103,106,98,100,101,110,113,95,113,106,92,95,94,96,101,111,94,94,94,90,96,99,102,72,106,105,94,105,117,97,95,76,108,104,100,97,100,105,101,93,88,98,99,108,100,108,104,108,110,99,104,100,96,115,103,96,97,109,117,93,101,113,108,100,108,97,79,112,97,93,87,100,91,102,94,100,108,96,105,111,104,100,93,114,97,93,97,99,108,89,107,108,99,91,108,99,98,105,108,96,96,89,117,109,95,94,93,105,102,105,102,97,96,95,115,105,97,100,92,98,94,104,93,96,110,99,109,92,102,96,116,97,103,104,101,107,118,103,95,73,95,103,104,96,97,94,96,85,95,111,102,94,126,105,98,106,93,111,106,92,103,111,98,98,109,90,96,100,90,102,100,104,104,99,99,97,100,105,109,100,105,99,99,109,100,98,101,96,95,101,108,102,102,91,118,97,99,100,94,80,99,93,95,99,104,95,113,77,106,102,104,107,101,99,96,87,93,99,96,98,95,98,100,100,110,83,95,105,106,105,110,94,100,110,93,109,70,104,102,107,103,97,102,102,95,107,100,106,94,98,103,71,92,100,108,106,94,87,105,101,98,106,94,92,113,92,93,88,91,110,109,101,92,97,97,94,84,105,102,93,96,98,98,90,109,97,105,110,112,96,98,103,95,106,113,107,108,101,102,110,107,98,109,84,111,104,94,106,87,98,94,99,94,102,104,108,92,114,108,107,98,104,116,97,95,96,109,104,100,102,99,104,91,96,100,96,93,100,106,113,90,103,95,96,100,105,95,92,103,91,92,94,87,95,99,97,100,108,103,96,110,83,106,100,98,102,97,91,94,96,110,85,112,98,104,91,105,104,96,90,103,109,98,93,103,93,97,94,91,110,112,103,102,102,99,107,93,106,103,98,102,93,100,101,99,99,91,97,101,94,89,81,108,92,104,101,106,107,104,98,109,93,101,118,112,86,113,100,98,100,105,101,109,92,104,98,105,98,99,105,103,100,101,95,101,93,100,108,101,106,104,90,97,104,98,105,103,99,100,97,107,104,97,99,102,100,97,101,104,91,107,73,97,106,110,96,96,108,92,102,96,94,108,104,99,101,104,85,91,90,63,114,92,100,94,94,109,81,100,96,105,100,104,93,92,102,102,124,92,98,105,92,103,90,101,104,108,94,107,102,86,103,99,105,92,95,95,101,93,109,100,99,99,112,86,89,86,100,110,105,102,83,100,99,104,101,102,86,98,93,108,111,94,104,102,91,102,97,95,98,125,93,92,98,96,98,104,91,82,95,94,101,102,116,110,107,102,115,100,109,96,104,107,98,106,113,107,94,84,106,99,100,86,113,99,101,96,101,83,103,106,91,101,108,99,85,102,98,90,106,109,108,108,83,86,94,100,103,96,99,99,111,90,100,101,103,99,101,98,108,93,103,95,92,100,107,111,100,90,108,108,96,91,100,110,98,108,94,87,104,87,92,101,109,89,97,89,94,100,101,101,109,87,96,85,113,102,95,94,103,95,105,99,95,98,92,79,90,102,109,109,96,100,101,99,110,106,94,111,92,103,93,106,99,108,99,102,100,95,100,99,97,97,110,91,113,103,101,66,106,98,105,100,106,98,107,95,111,111,93,90,93,103,91,102,100,94,90,92,89,105,102,88,109,98,102,94,112,111,101,96,96,102,91,92,102,101,107,104,83,91,107,89,104,104,103,104,93,101,99,105,96,98,87,101,112,91,109,112,96,111,107,104,105,124,104,113,104,96,95,98,98,105,98,102,97,110,95,84,103,95,107,104,84,84,93,100,88,101,106,113,101,101,93,113,72,86,100,102,85,98,109,102,96,90,101,83,97,95,103,112,110,106,105,114,110,109,100,100,100,101,105,98,113,113,111,102,98,88,105,102,91,96,114,93,108,100,97,95,92,95,93,95,97,106,97,95,104,99,101,97,85,105,101,108,109,103,100,99,88,90,102,91,102,110,120,97,98,91,104,95,108,92,92,96,96,117,106,96,109,90,107,103,92,104,100,93,94,98,98,103,102,97,100,98,100,107,104,97,94,112,91,99,92,101,97,105,94,98,87,98,99,98,95,102,100,107,103,93,104,87,101,94,96,107,100,99,98,110,116,103,102,89,105,106,120,103,95,93,97,99,99,96,99,98,96,102,105,105,102,95,102,96,93,101,102,97,102,81,97,93,102,96,86,98,108,95,97,102,114,93,95,101,83,99,96,101,93,94,109,94,91,93,101,101,94,94,85,106,100,98,84,92,112,96,100,104,97,121,106,94,88,97,99,112,95,100,102,99,96,99,105,117,109,107,94,104,106,94,98,100,106,98,112,97,101,113,93,95,110,94,95,106,77,97,96,92,91,91,110,91,109,94,96,104,99,104,96,120,96,101,91,101,105,101,116,105,85,107,104,108,100,100,99,111,92,100,101,100,102,96,94,103,100,105,95,97,108,97,100,109,97,92,98,103,105,111,98,100,104,98,102,110,99,91,113,95,99,105,96,103,98,99,97,107,93,106,95,98,100,100,96,106,104,110,104,93,97,113,99,97,95,99,101,91,106,109,101,94,95,96,99,76,113,100,87,99,108,112,91,92,101,92,103,90,88,100,105,92,111,108,96,85,96,104,92,113,113,89,105,106,97,102,100,102,109,95,99,117,108,100,102,102,96,100,97,105,101,96,104,95,105,107,105,100,104,96,121,101,111,107,105,102,102,90,98,95,95,98,101,92,101,107,101,101,106,91,86,95,99,98,104,78,108,102,103,87,113,94,99,95,113,98,104,113,103,113,99,95,95,102,116,96,98,112,99,104,104,103,95,102,103,116,96,94,106,95,96,103,79,105,97,92,89,106,104,105,98,100,99,94,100,95,93,106,107,105,100,100,93,95,87,109,93,91,90,103,102,101,105,106,104,91,91,102,99,97,98,92,114,101,103,90,93,102,103,107,95,106,99,109,87,99,103,104,94,105,103,87,102,94,98,94,91,106,105,107,100,105,105,97,112,107,117,98,103,100,104,96,103,113,94,106,95,110,91,109,101,119,92,95,106,106,117,108,109,90,106,102,98,95,90,98,94,92,99,104,99,107,106,101,92,98,94,92,91,104,91,107,87,97,105,98,98,91,94,99,104,88,88,105,98,109,108,101,92,95,104,98,113,94,109,94,101,104,106,109,80,105,103,101,96,95,95,110,102,101,94,101,98,100,109,98,115,99,99,103,94,123,104,103,101,100,113,100,97,93,98,106,97,88,95,107,98,102,92,63,100,113,110,92,107,103,95,97,97,98,81,95,80,102,103,104,106,91,106,91,101,102,100,112,93,108,107,100,103,84,98,105,112,105,102,91,90,130,109,112,117,103,102,96,90,108,115,90,65,103,113,103,100,115,99,96,100,99,95,109,103,92,90,101,98,101,100,95,92,99,121,105,98,99,98,92,96,114,104,96,86,114,97,104,104,94,93,99,108,102,115,113,100,92,107,95,101,94,97,89,109,92,99,97,94,93,90,100,108,85,106,85,79,88,95,101,97,101,69,118,102,105,113,105,100,116,100,98,96,101,89,96,104,91,95,91,101,101,97,108,107,94,93,104,90,104,87,104,101,101,95,100,105,105,100,93,112,125,109,91,79,81,113,100,93,96,85,100,113,109,89,100,117,97,97,91,80,109,107,98,104,100,100,99,101,79,109,109,99,96,111,118,96,101,93,111,108,91,101,97,93,103,107,97,97,116,88,104,95,105,100,101,97,112, +700.83502,100,111,94,106,108,129,95,109,93,98,92,104,102,98,113,104,95,106,90,110,95,115,102,116,112,89,103,92,91,90,101,90,87,112,96,96,101,90,102,89,103,103,99,92,96,99,100,105,105,89,110,88,91,108,104,103,103,82,105,87,103,95,101,82,97,97,106,102,110,69,112,96,94,103,82,105,89,101,106,106,118,107,95,92,106,95,98,98,99,104,77,101,94,97,98,108,109,97,98,100,104,89,99,100,96,102,94,91,93,105,99,82,105,91,100,89,91,124,77,95,100,94,90,102,109,110,104,63,100,94,106,106,95,107,129,103,100,93,101,99,98,112,102,92,98,97,113,90,95,104,102,94,92,81,109,103,90,106,101,98,106,101,100,102,98,90,105,75,101,101,87,95,92,102,95,100,102,88,99,94,94,92,100,109,98,97,106,101,98,101,97,106,99,101,95,98,106,96,113,128,94,102,98,90,94,94,88,101,103,109,92,93,100,104,96,91,101,91,96,98,107,92,102,104,98,95,100,100,98,94,98,96,98,97,127,103,108,103,90,95,81,93,102,95,99,100,75,105,89,96,90,111,96,99,96,103,102,106,88,96,78,92,98,98,88,102,96,99,99,91,97,96,103,97,104,100,100,102,99,101,113,101,95,94,104,98,91,109,95,120,102,95,114,107,108,111,95,105,107,96,99,96,101,108,73,86,110,108,105,100,94,109,104,102,85,113,98,99,100,105,112,92,97,105,103,91,99,94,100,102,95,94,102,101,99,108,96,91,108,104,93,99,100,110,117,103,105,102,104,85,112,101,99,88,122,111,102,97,87,104,97,104,101,98,99,89,100,104,95,100,102,102,98,94,98,87,93,106,96,95,104,98,94,95,96,95,94,110,89,83,101,84,95,105,91,102,114,94,99,99,94,95,90,95,97,96,99,105,105,105,91,90,93,101,96,97,106,94,101,102,90,107,92,110,105,83,99,94,98,105,94,113,100,94,95,81,72,96,112,106,117,95,104,96,91,79,101,95,103,98,95,98,105,93,102,93,87,106,101,100,98,87,102,102,96,102,93,96,97,96,101,99,104,100,96,85,102,112,103,86,91,100,110,106,109,88,101,87,100,97,108,93,68,103,99,98,119,95,98,96,98,97,96,109,95,101,106,93,115,95,92,108,95,107,99,98,101,104,108,85,94,101,100,90,100,103,107,95,84,99,96,101,110,93,98,94,99,87,100,99,104,105,95,93,102,102,108,111,102,99,100,94,105,96,107,99,98,101,98,86,102,93,101,98,97,95,109,114,91,111,105,97,99,104,93,110,87,98,95,107,97,96,84,86,106,94,86,87,108,100,109,108,103,96,101,98,100,100,103,98,77,106,100,103,91,98,91,122,98,108,90,100,98,88,100,102,108,97,101,111,102,97,102,67,100,98,97,100,96,112,95,108,100,96,98,96,104,92,109,97,83,105,103,102,99,101,91,103,99,113,103,100,108,106,95,97,97,99,103,102,105,97,108,96,89,104,110,97,93,94,107,91,105,83,82,114,91,113,97,102,99,93,108,116,87,96,99,101,104,103,89,86,84,105,93,98,90,103,108,88,100,97,93,105,99,104,100,105,98,104,98,96,102,106,96,98,84,84,99,93,107,85,94,95,98,108,98,102,95,104,100,100,104,94,87,100,98,91,99,96,108,92,104,102,105,136,108,83,104,102,99,98,114,84,101,105,94,94,98,92,92,96,100,101,101,95,96,102,111,98,98,110,95,99,100,113,96,99,92,98,90,93,104,107,99,90,101,102,96,99,98,92,104,111,94,116,96,80,67,111,91,96,92,109,109,114,91,102,111,90,107,110,94,97,102,97,101,114,102,102,100,108,101,102,110,94,95,96,114,105,107,84,107,105,92,114,98,105,104,110,102,120,103,105,97,80,107,98,92,100,97,97,98,106,104,102,113,96,104,93,81,103,94,99,104,88,93,95,95,103,103,93,83,109,98,100,105,101,91,96,109,95,96,92,90,100,109,105,97,98,96,104,109,109,95,102,83,98,111,95,103,97,111,104,95,102,90,115,95,99,110,103,95,109,88,93,95,90,97,98,117,97,101,105,97,98,100,91,108,100,94,101,98,107,103,97,91,100,92,105,103,107,99,121,103,107,108,112,113,102,89,94,96,90,96,103,103,102,93,101,101,105,96,96,113,92,98,83,101,107,115,84,94,105,105,100,126,73,101,111,107,106,98,97,108,113,90,102,90,95,103,106,106,84,113,100,90,100,101,103,92,100,99,94,110,83,93,96,63,101,105,100,82,109,115,92,99,97,103,95,105,98,122,91,87,92,100,98,109,96,94,107,107,107,96,96,98,109,105,101,102,109,94,106,105,90,103,104,110,94,103,99,94,94,91,101,90,99,103,92,97,96,109,98,95,90,104,109,97,96,91,105,123,105,97,96,105,96,106,98,92,96,88,101,112,105,94,94,113,128,121,97,106,94,111,98,111,100,115,102,95,110,102,100,105,97,60,99,109,105,101,111,110,99,114,94,99,103,100,109,99,106,109,117,101,97,99,102,92,106,91,87,107,106,96,102,96,102,98,101,90,107,94,105,74,95,106,101,90,106,97,101,99,96,101,92,99,102,107,117,102,100,96,97,100,99,87,102,96,107,107,105,102,102,100,95,90,90,97,101,113,96,100,96,98,106,99,82,98,100,99,100,105,111,106,99,101,94,101,95,79,99,106,95,104,108,104,100,95,111,87,101,92,103,92,109,99,106,101,94,65,93,99,95,96,99,92,107,99,100,97,112,101,91,99,108,109,103,87,107,104,98,108,100,108,95,105,98,105,111,99,97,105,94,119,93,102,106,109,107,120,108,91,95,104,95,85,106,96,104,87,109,107,105,120,101,87,102,102,106,108,100,101,102,99,100,116,114,107,95,74,98,92,108,106,91,89,94,97,92,91,102,84,95,117,102,95,99,106,94,99,101,108,105,106,116,96,87,95,102,101,103,93,109,109,80,104,102,98,92,96,109,96,121,101,101,102,93,107,104,103,109,102,105,103,97,129,95,89,104,107,103,106,92,91,104,105,103,96,95,101,97,96,96,107,103,117,109,101,97,92,79,102,90,110,95,100,112,110,107,96,97,102,102,96,106,81,109,100,90,107,104,105,99,117,101,98,96,107,104,110,96,100,100,81,103,99,109,102,104,97,104,90,101,94,90,92,99,100,99,109,98,105,89,107,98,66,106,99,102,96,105,101,97,105,110,98,99,102,99,94,115,99,97,96,75,94,98,111,101,101,93,98,106,94,117,100,101,111,101,103,115,102,106,95,99,94,99,113,104,109,105,116,117,81,105,95,111,101,105,101,105,95,100,100,123,102,93,87,105,135,102,88,101,99,105,109,101,91,115,111,102,107,104,95,100,103,99,97,95,88,103,91,102,107,103,97,111,95,112,97,97,115,102,84,116,109,104,100,98,104,103,111,124,109,103,98,97,107,93,88,104,96,115,98,114,91,95,109,79,103,128,109,105,105,106,103,108,99,108,91,100,117,105,119,96,104,98,107,90,106,100,114,97,103,102,110,100,102,84,88,100,106,98,92,109,102,97,95,115,108,110,110,112,97,101,101,100,96,110,85,97,97,102,104,92,102,105,96,103,95,115,108,107,103,98,92,106,94,94,98,104,90,98,101,91,105,91,101,102,91,98,101,101,95,96,106,107,98,101,107,114,109,104,98,101,98,89,113,100,100,87,100,95,111,110,102,108,110,108,102,102,92,96,105,108,102,95,106,106,101,95,106,117,99,96,93,100,106,99,105,102,108,107,101,105,99,97,96,105,106,98,112,94,103,97,102,98,105,100,98,113,115,95,96,94,98,108,91,108,105,92,100,100,109,102,91,95,102,92,101,101,102,95,105,101,113,99,110,103,102,90,107,102,100,107,107,103,96,98,119,123,72,103,87,108,109,99,100,85,95,113,113,107,100,104,94,102,110,95,111,94,99,97,106,105,109,104,95,97,113,97,101,107,102,96,107,101,98,110,104,104,94,89,79,92,100,111,101,96,108,90,97,107,110,108,101,104,92,105,98,101,100,107,109,103,94,103,109,97,95,107,99,109,106,96,106,84,103,97,97,101,102,104,99,95,100,95,102,95,93,87,100,90,96,95,103,96,91,99,105,106,98,105,112,105,92,106,99,95,100,108,98,105,91,97,105,100,103,93,99,99,86,101,102,103,111,113,99,105,91,105,111,99,102,91,97,98,95,114,94,99,92,103,101,101,91,88,95,102,96,88,106,112,109,110,94,103,100,95,121,90,94,96,116,98,89,92,92,109,112,98,102,108,95,100,102,88,111,108,100,100,97,93,109,108,105,70,110,99,92,103,109,102,100,106,93,115,110,103,112,92,96,109,101,101,101,97,76,108,112,107,105,131,114,92,89,109,101,114,88,112,96,93,94,97,77,83,97,121,96,101,99,95,102,89,101,99,104,109,104,101,103,104,106,111,97,106,90,85,95,100,112,95,103,98,94,104,94,103,103,101,95,88,111,113,105,94,98,94,112,99,89,105,106,105,105,114,92,106,91,92,101,107,99,112,105,93,109,95,94,109,91,103,105,106,89,100,93,107,116,98,98,85,119,105,99,107,110,97,110,95,99,93,89,104,106,92,101,88,99,101,110,107,94,88,106,110,84,93,101,105,91,96,90,115,104,110,101,91,88,72,104,97,97,95,98,88,101,92,105,95,101,96,100,94,98,93,97,120,95,109,104,109,91,92,93,93,96,102,102,109,103,99,93,114,105,95,104,97,100,112,96,104,95,101,95,112,94,104,99,101,95,92,78,100,88,98,108,87,101,103,97,90,110,118,97,96,95,73,101,101,99,86,99,108,100,102,99,97, +700.97638,99,100,85,88,94,93,97,89,93,104,93,101,94,81,101,108,90,95,99,95,92,93,107,94,95,104,83,94,111,102,90,92,103,95,91,104,100,106,103,87,87,103,96,92,84,105,94,106,97,88,112,102,115,70,95,101,102,89,95,102,101,113,90,102,99,105,98,85,96,99,110,93,84,106,116,97,94,98,106,102,99,103,91,95,107,90,111,98,98,96,108,106,98,92,100,99,97,91,106,87,92,95,97,97,94,79,84,92,96,101,103,96,113,92,99,99,111,93,100,102,102,95,106,90,110,100,109,92,115,119,99,104,98,99,99,100,93,83,108,98,95,106,86,103,101,104,139,98,89,109,96,95,105,94,89,106,100,96,99,98,103,109,89,110,108,95,99,90,90,87,105,108,100,96,97,86,103,94,101,92,104,91,99,111,106,106,105,99,92,98,98,103,92,108,95,108,102,104,86,117,111,96,97,94,98,101,101,108,102,100,96,101,98,95,109,94,100,102,101,103,97,108,97,93,107,110,101,103,104,97,98,99,96,103,94,106,119,99,90,92,88,106,112,107,81,95,98,98,90,93,91,102,105,98,98,105,92,102,81,105,103,100,100,95,94,105,95,98,101,105,98,106,100,109,105,80,100,102,95,101,95,101,95,93,97,117,96,94,99,90,90,101,102,106,101,103,99,98,99,101,101,91,92,109,91,101,98,107,87,127,106,106,96,87,98,95,99,103,92,97,102,92,94,101,101,110,98,92,117,99,92,107,109,100,105,94,97,91,103,112,99,92,100,99,99,106,102,105,97,94,107,101,97,103,103,105,103,94,109,95,92,99,99,89,106,94,104,92,99,96,99,108,117,104,100,94,100,101,94,110,103,97,86,100,97,103,96,98,100,99,104,94,94,94,102,109,101,100,91,102,87,92,100,105,106,93,101,91,88,107,98,102,94,103,101,97,94,96,101,92,100,88,97,104,79,99,106,86,91,101,101,103,100,106,93,94,104,107,108,96,113,94,104,94,92,106,86,100,104,98,89,93,103,105,97,93,106,100,105,85,97,92,97,103,85,101,101,103,103,90,102,97,103,88,98,93,82,97,101,96,92,98,112,92,98,95,94,105,64,102,116,104,97,94,90,88,88,110,97,93,104,91,86,85,100,92,100,99,108,103,85,83,91,97,105,103,109,84,90,98,102,92,90,99,101,71,96,113,97,110,86,91,102,97,101,96,103,102,100,72,107,100,86,106,104,103,105,72,91,110,81,101,103,101,98,105,102,100,91,96,95,107,92,109,95,101,104,100,106,97,104,101,89,108,114,107,104,91,97,102,106,100,101,98,103,103,99,98,106,99,97,100,99,107,91,98,89,96,104,77,97,111,95,97,105,95,106,97,95,102,89,97,100,108,106,103,114,90,102,105,108,105,106,102,107,89,102,107,102,109,105,105,97,102,108,111,83,101,103,100,99,109,98,104,95,89,101,94,95,117,97,104,95,109,107,108,105,113,114,100,111,93,104,105,87,98,104,98,99,104,106,122,105,104,98,101,103,96,99,90,86,103,104,95,98,105,103,95,93,107,108,106,97,88,112,95,111,112,86,94,96,104,98,95,101,93,107,110,94,96,98,101,99,99,100,97,96,102,98,100,98,101,89,102,105,93,110,105,106,103,98,94,91,98,89,94,98,100,110,94,100,104,98,111,99,99,91,99,96,95,110,103,93,91,104,97,95,102,102,88,100,104,80,95,91,95,92,88,98,99,112,104,99,101,92,105,90,88,99,93,127,106,97,108,105,102,99,100,97,107,105,89,103,110,96,91,106,110,90,110,93,95,105,97,116,95,97,104,102,102,112,90,96,97,103,102,108,100,96,92,104,103,95,99,99,94,111,91,91,82,97,91,97,90,91,94,97,92,101,102,99,100,98,88,61,104,93,96,93,99,100,105,101,101,97,90,103,108,116,113,104,94,98,100,98,95,89,98,107,100,95,111,100,107,108,90,111,96,102,97,103,99,99,108,104,88,98,89,101,94,94,92,106,104,95,105,96,111,106,93,106,98,111,107,104,101,109,101,97,102,100,91,98,89,98,99,98,100,94,99,100,100,98,115,102,93,109,96,108,129,92,96,105,106,96,106,103,99,105,104,106,107,106,107,106,95,95,115,98,112,96,113,101,101,103,97,96,102,105,88,97,105,103,72,110,91,100,95,107,92,104,103,101,103,103,101,105,104,94,99,98,88,93,95,105,95,98,103,92,92,97,106,111,97,101,109,108,110,98,87,97,93,90,113,95,109,99,107,110,104,98,100,92,105,96,107,106,73,97,91,106,121,109,100,105,92,98,95,96,104,98,67,102,95,105,95,102,96,96,106,103,120,96,100,90,97,95,88,96,104,95,102,94,101,99,104,90,106,114,91,97,100,98,104,96,102,98,93,98,95,94,95,89,98,98,72,96,111,107,93,95,94,95,91,107,100,98,95,103,105,138,105,91,99,92,108,100,99,102,100,92,101,104,107,106,102,97,98,94,96,103,102,98,116,99,94,100,109,86,91,101,95,89,94,104,94,92,99,108,98,102,99,98,101,98,99,105,97,98,100,95,84,96,109,95,77,100,101,112,88,116,95,88,100,101,104,103,106,105,92,116,104,98,97,93,109,105,102,101,99,89,96,88,90,105,98,98,98,100,93,107,103,98,99,97,104,109,97,87,90,99,106,110,88,96,94,105,99,101,97,89,101,105,104,96,106,105,104,86,95,102,99,112,94,94,99,90,99,101,98,91,93,96,93,95,94,95,103,98,96,98,112,95,88,101,101,103,96,113,101,101,105,107,101,88,102,103,91,94,100,100,104,98,108,97,96,94,100,91,96,95,103,98,96,92,94,108,92,97,101,103,81,109,100,94,91,95,101,94,109,94,102,99,110,106,102,98,96,99,96,91,108,101,98,104,97,106,105,94,93,105,96,72,92,106,111,95,101,104,106,97,103,91,89,110,109,101,109,98,108,106,95,98,101,104,88,106,103,97,93,106,95,98,104,110,100,103,92,95,90,103,98,89,102,97,91,102,113,100,110,117,101,102,108,93,101,69,101,104,98,99,101,92,97,103,84,100,99,99,87,88,91,94,102,125,98,100,98,100,105,101,106,108,122,101,88,99,93,103,91,88,106,96,113,98,98,101,102,113,103,93,103,93,105,106,103,107,102,92,107,89,108,103,95,102,93,104,98,95,97,105,94,96,108,89,100,87,104,107,109,110,98,93,103,100,113,92,95,97,112,85,101,101,99,99,100,100,104,110,104,110,96,98,98,98,104,95,104,97,94,108,91,93,73,99,96,95,94,72,101,90,107,94,99,88,106,97,108,104,98,104,94,90,93,99,91,98,104,102,92,99,94,87,104,95,113,84,94,109,111,92,99,94,97,103,98,90,109,93,94,99,80,94,97,100,98,112,95,101,99,102,87,89,96,87,94,110,101,96,102,102,101,104,107,93,113,100,116,111,108,99,96,95,109,92,94,95,111,92,99,96,108,100,103,97,100,107,96,104,100,98,109,95,92,107,104,100,96,103,82,98,87,102,101,104,104,106,85,101,88,95,99,100,106,96,98,97,99,111,105,110,85,95,105,103,94,99,105,98,96,98,105,127,109,120,92,105,102,97,100,86,94,103,115,98,94,87,91,100,105,91,101,103,105,99,99,96,108,85,108,98,82,94,97,104,105,96,125,95,107,95,103,99,96,101,73,94,98,98,96,103,89,100,90,102,99,100,100,114,97,96,83,105,94,89,102,99,92,97,106,99,100,91,98,103,91,95,81,91,96,108,98,99,99,99,104,98,109,98,101,97,94,99,87,98,102,95,105,97,102,117,98,106,99,106,91,98,108,98,97,96,93,102,92,101,106,89,106,96,106,83,109,85,101,106,108,94,103,100,88,119,91,96,111,99,79,102,92,104,106,105,96,105,100,94,100,94,102,98,96,99,104,91,89,110,103,91,90,90,102,102,108,88,98,107,86,106,84,99,109,96,116,105,97,97,97,122,90,95,94,97,93,91,101,94,109,95,110,101,101,103,94,98,94,90,97,91,97,103,83,103,104,94,109,106,109,93,102,95,84,95,96,100,108,110,103,104,106,109,85,96,108,91,106,96,92,102,106,95,105,109,112,95,93,107,97,99,93,92,102,98,102,102,92,94,106,114,119,105,107,99,107,92,106,92,99,102,96,101,106,88,92,102,94,104,93,90,102,105,94,100,94,95,95,81,95,93,94,102,105,102,88,91,86,98,100,105,101,111,121,104,87,106,90,88,95,84,96,111,111,105,113,100,81,102,107,119,100,110,98,105,87,92,105,109,87,116,99,96,102,91,106,100,98,99,105,95,98,94,107,116,103,102,116,102,95,106,94,102,109,85,94,99,99,91,99,99,93,91,96,106,99,92,93,94,115,71,102,102,94,91,101,93,108,105,98,108,99,105,102,102,74,104,94,102,106,99,102,92,107,109,105,100,87,106,103,87,91,96,100,83,96,97,103,99,98,98,93,99,109,99,112,98,97,108,94,101,72,92,104,97,103,107,99,84,99,100,102,103,80,99,94,89,103,104,89,107,107,103,92,82,99,91,99,87,96,101,96,103,96,94,99,106,89,110,102,103,102,111,95,100,98,103,99,99,104,88,97,94,98,99,98,108,94,111,99,105,99,99,104,99,96,109,107,107,93,121,100,103,97,92,107,99,82,106,86,106,89,103,101,117,110,105,96,100,111,92,93,76,100,96,102,88,98,90,107,93,89,89,100,98,83,102,92,93,90,89,101,87,91,91,90,78,91,75,96,111,93,94,93,103,102,100,96,89,92,106,106,120,83,99,90,115,90,100,109,83,101,102,74,95,101,94,108,88,86,109,102,106,83, +701.11768,94,87,97,94,89,92,100,108,99,110,110,90,90,91,84,91,100,103,95,109,96,108,93,103,119,104,96,101,109,103,112,102,96,106,121,85,101,114,87,104,105,101,65,101,105,104,99,105,100,101,102,99,64,127,110,97,91,98,107,88,109,109,92,94,100,104,106,97,86,99,102,98,110,91,94,95,100,92,94,106,109,101,105,93,105,100,101,106,99,93,88,97,90,104,102,102,96,92,90,94,105,100,84,98,101,94,102,88,92,96,100,90,92,108,90,128,101,106,99,103,97,99,101,110,100,106,115,97,110,105,91,102,92,88,100,87,70,87,101,111,91,107,94,106,92,96,109,90,97,86,90,103,98,88,100,99,94,90,99,90,93,95,106,105,106,91,88,95,100,92,89,103,105,97,96,107,105,95,99,86,106,94,98,100,102,83,97,100,110,100,81,87,104,97,84,98,90,89,109,102,99,102,89,110,106,107,102,97,109,100,89,104,95,134,102,100,100,96,94,97,93,103,105,94,97,72,98,102,103,107,90,98,102,96,103,103,94,109,102,100,111,92,102,80,85,90,99,108,104,97,91,87,98,99,95,91,103,110,102,103,101,99,106,95,101,91,102,106,109,109,93,101,116,77,106,93,113,101,89,92,107,95,97,107,90,102,99,100,101,101,106,108,95,107,106,101,100,96,93,98,101,102,96,74,93,103,98,103,87,86,98,109,103,109,107,99,95,104,91,95,95,99,105,103,88,96,92,94,106,101,76,95,93,96,107,107,102,96,106,99,100,100,99,101,93,96,100,105,106,93,103,99,92,98,109,93,107,105,97,95,104,90,104,101,104,92,94,113,93,99,101,98,105,98,90,91,92,101,99,95,98,109,102,104,102,96,106,94,91,92,89,101,95,81,91,91,83,102,97,100,99,100,102,96,88,87,92,107,105,100,92,86,104,99,102,92,94,90,111,82,105,89,106,89,91,84,100,94,101,100,97,107,94,95,101,92,89,99,82,98,99,96,71,106,91,104,104,100,112,94,92,95,99,103,105,95,96,102,97,110,91,96,95,105,110,93,103,94,107,91,100,105,94,110,103,95,102,111,100,94,103,89,106,98,96,86,89,89,110,92,102,96,94,92,96,109,92,100,105,94,109,79,95,108,104,105,102,91,92,97,105,102,100,112,101,101,108,101,113,99,98,104,105,103,106,100,96,100,109,103,97,100,110,103,83,102,104,91,107,100,113,108,96,89,98,107,90,100,99,104,98,89,103,118,104,92,98,88,79,90,91,103,92,93,95,101,96,98,95,101,96,92,105,95,91,113,92,87,89,108,105,99,78,105,99,101,107,95,99,94,96,85,100,102,103,106,106,113,104,110,91,118,90,108,92,101,99,97,93,103,99,106,94,105,107,97,95,93,97,113,106,107,94,95,94,101,88,86,114,102,92,102,102,93,86,98,98,93,100,104,113,96,96,94,92,91,101,100,97,99,97,99,98,101,97,101,100,92,99,118,99,120,81,94,104,109,102,96,99,102,103,104,100,87,102,103,100,104,100,98,104,76,109,95,96,90,105,95,110,105,100,98,102,101,100,89,99,115,101,91,97,105,93,97,100,98,102,109,90,99,94,99,103,101,95,93,91,105,99,104,88,99,93,104,93,106,101,99,100,95,94,101,109,97,96,109,110,104,112,79,93,101,101,99,100,106,110,92,103,113,111,109,95,82,100,96,95,109,106,101,111,101,95,96,99,108,89,106,103,105,98,94,109,101,89,111,101,104,102,97,103,100,109,100,92,90,100,118,98,107,97,94,98,104,94,94,103,103,101,99,108,94,93,111,97,105,88,102,104,110,104,106,90,116,113,103,109,98,102,102,95,102,120,99,101,78,97,94,101,103,108,101,109,88,102,110,95,104,106,101,93,101,103,92,96,83,100,90,106,106,96,97,103,89,114,105,105,95,102,109,100,96,98,103,105,98,80,105,88,108,109,96,100,104,98,87,103,97,104,90,92,101,98,99,107,95,109,101,107,102,109,95,95,104,101,97,100,109,96,96,99,112,100,98,96,113,97,111,107,100,114,117,108,105,99,95,92,98,100,111,112,105,96,92,85,107,98,96,105,95,90,105,101,112,87,97,89,94,106,112,99,104,100,88,96,101,110,77,92,98,92,91,110,99,99,104,100,98,95,105,99,103,106,103,99,97,98,97,99,108,103,102,99,99,112,98,91,88,88,101,100,113,95,131,102,92,94,89,98,96,108,102,113,106,99,98,90,103,96,101,102,98,92,95,93,96,95,98,91,100,96,97,97,109,96,102,107,96,87,96,104,99,95,99,104,97,95,115,112,85,98,92,103,103,102,103,90,97,105,104,101,109,90,90,105,99,101,85,105,106,100,108,98,95,111,88,101,96,99,94,95,109,109,102,91,58,93,99,105,98,100,100,97,101,100,102,96,102,101,99,90,114,83,108,64,93,93,102,101,109,98,96,98,87,93,103,105,91,106,102,104,101,107,99,88,112,104,108,105,100,103,104,104,92,100,94,89,97,98,96,96,87,100,98,92,106,104,113,109,98,92,111,108,99,103,106,114,106,102,97,104,96,97,105,112,96,103,99,112,97,100,108,116,105,93,105,107,87,101,105,99,97,109,89,109,107,91,95,94,97,94,108,102,98,91,108,102,102,95,92,86,106,91,106,107,102,105,100,95,101,97,101,92,123,90,115,97,97,88,97,90,119,104,126,91,109,94,117,96,93,114,97,110,104,105,101,100,107,104,91,102,115,104,96,105,80,97,96,108,99,96,104,92,95,100,94,96,108,106,98,117,86,106,110,103,110,94,95,101,96,95,107,103,98,101,100,98,102,105,101,103,106,107,99,94,104,103,100,98,111,111,96,112,115,99,92,115,91,102,100,95,120,115,102,100,103,98,111,108,97,93,99,89,103,98,110,99,98,105,121,104,98,98,100,106,101,104,111,117,97,115,103,103,116,103,103,95,96,103,87,100,119,104,100,96,105,103,113,101,93,109,89,94,91,99,97,97,100,100,91,96,108,98,92,96,96,106,92,87,91,96,101,98,98,106,84,103,105,101,85,112,96,95,83,85,89,101,96,104,100,116,103,103,113,103,104,98,111,102,104,105,84,97,87,98,90,95,92,98,90,89,99,105,96,101,97,102,95,107,106,96,98,94,106,105,100,116,93,102,118,108,105,100,92,93,96,102,104,94,105,105,93,108,87,97,105,111,92,108,101,106,100,81,108,103,90,93,107,99,105,98,82,108,107,98,102,94,106,101,99,99,99,109,102,105,97,105,104,105,104,104,101,87,94,104,108,94,103,113,102,97,101,106,97,95,99,103,108,101,96,92,108,96,109,91,97,98,104,100,109,91,101,105,103,104,112,104,112,96,110,101,99,92,113,88,106,90,88,103,96,97,103,111,101,101,92,112,109,100,99,101,96,106,98,98,99,93,98,98,94,101,107,101,99,85,89,105,100,108,96,102,91,90,101,109,111,92,92,93,91,100,104,107,109,112,102,103,118,92,103,91,103,102,105,102,99,102,101,101,109,103,86,98,81,105,87,91,98,103,101,105,101,102,106,102,108,97,99,95,93,94,103,99,102,95,81,97,103,98,109,91,96,100,94,109,98,121,111,106,104,99,100,103,93,100,109,105,106,98,93,103,102,117,97,103,103,93,96,104,99,110,113,119,104,91,98,79,112,95,74,96,108,104,105,97,105,91,110,94,101,99,84,105,99,93,99,109,100,110,113,105,99,102,109,111,99,105,100,106,106,108,108,100,101,92,90,104,102,103,85,104,98,99,98,103,99,112,91,95,100,105,98,91,108,101,115,110,95,101,105,94,97,97,100,97,91,113,99,95,95,111,102,107,98,105,111,115,104,94,101,104,81,99,108,108,107,97,96,107,100,103,120,104,98,102,105,97,108,94,99,102,97,95,94,94,104,109,99,87,95,107,98,96,105,95,91,112,102,115,93,100,83,109,92,100,100,101,91,88,91,87,92,103,107,101,98,100,88,105,100,103,110,93,110,98,94,110,101,100,94,95,94,96,105,95,87,116,110,93,112,99,101,91,108,104,103,106,113,86,96,96,100,91,101,95,101,102,97,104,103,114,92,110,99,99,100,105,95,90,112,99,87,98,91,106,103,105,102,89,97,108,121,95,96,103,108,102,111,104,96,117,75,102,100,112,95,103,97,108,92,95,96,106,93,98,97,98,104,96,97,91,93,109,108,90,94,97,101,104,91,91,78,110,96,100,96,96,104,92,107,97,109,102,91,101,104,97,99,95,107,120,113,95,109,119,101,92,113,98,93,95,105,90,103,104,94,95,98,100,103,98,102,107,91,104,91,100,103,100,89,105,108,115,102,114,102,107,71,103,96,96,97,102,100,97,100,103,101,88,91,102,100,104,106,93,93,95,97,92,103,109,111,102,95,102,100,102,100,100,110,97,96,104,95,88,96,104,100,101,98,99,103,96,99,95,113,108,103,98,95,110,105,107,96,97,106,106,113,91,101,104,100,103,101,101,98,88,114,90,97,98,115,95,105,103,97,97,104,89,95,106,94,112,97,100,119,108,89,121,111,101,69,91,92,105,115,110,105,100,108,110,90,101,119,110,97,107,98,115,99,94,92,116,99,92,98,96,131,81,85,104,104,103,104,113,89,111,72,108,96,95,104,102,94,97,97,99,106,97,104,100,99,91,100,101,92,114,86,97,98,113,107,104,110,109,101,93,123,115,87,107,97,95,101,104,90,88,108,101,94,102,104,93,111,99,85,101,103,94,111,97,102,98,106,100,103,115,90,97,99,108,104,103,97,108,110,104,105,114,102,112,105,107,105,103,93,112,101,95,109,100,104,89,105,103,99,91,98,96,100, +701.25903,97,88,104,118,105,104,94,107,86,108,109,101,95,103,95,103,101,92,99,100,103,99,97,108,96,94,94,105,100,102,98,135,121,97,114,99,104,98,96,82,120,104,105,99,106,87,101,90,96,112,94,88,92,102,105,88,112,93,100,89,95,103,107,86,94,96,70,125,98,95,98,109,94,102,97,100,99,96,101,105,92,96,96,94,98,91,99,100,92,104,91,98,108,100,95,103,100,91,100,97,103,113,93,99,94,101,95,91,98,81,98,82,103,100,94,92,96,102,93,112,96,109,101,100,100,105,116,88,109,98,103,99,103,90,106,102,100,102,103,95,102,106,91,108,88,93,95,96,106,100,91,114,101,107,98,95,85,96,111,85,97,99,101,94,118,95,98,98,101,102,92,101,97,102,105,91,91,84,109,105,97,102,104,88,108,98,99,87,112,101,95,103,99,103,82,103,104,113,99,100,94,99,102,105,90,103,87,96,102,110,88,93,99,110,103,94,87,94,88,99,116,101,108,108,91,90,110,98,117,110,104,103,113,100,98,107,106,102,100,99,108,100,101,105,98,100,100,98,82,98,96,100,87,121,95,109,95,107,99,98,95,104,105,99,97,97,107,97,101,95,108,97,109,96,103,106,97,98,101,108,102,105,99,85,110,100,91,100,102,103,97,98,99,99,94,103,99,96,94,91,87,104,106,108,91,103,109,99,89,107,90,105,112,100,102,105,117,102,96,97,101,97,87,99,104,98,96,94,97,99,111,105,108,104,105,87,117,86,101,102,98,99,88,100,98,103,95,104,116,98,99,97,100,94,100,108,100,109,100,102,96,102,86,98,89,107,102,99,95,108,112,112,101,129,121,99,117,103,91,97,111,98,101,91,95,100,99,104,90,107,113,82,90,102,98,94,102,77,97,113,84,99,97,93,98,101,92,96,103,95,95,94,101,113,92,101,101,101,104,100,105,102,93,98,95,99,99,87,84,92,97,106,98,105,102,95,91,94,100,95,112,98,93,116,94,99,95,93,97,97,94,90,96,105,95,102,110,106,98,99,92,102,113,78,85,103,98,97,101,106,95,98,108,98,98,100,95,99,100,101,95,97,105,103,110,96,106,88,104,81,98,104,109,82,102,102,95,89,111,100,106,94,86,97,88,99,118,103,121,96,103,104,107,101,89,96,100,94,102,100,95,100,108,109,108,110,99,91,105,121,92,100,103,98,106,101,100,96,99,109,90,110,86,104,111,102,101,102,101,103,88,87,110,84,108,117,93,96,102,102,106,87,120,103,94,98,95,104,102,109,103,97,101,105,113,112,107,101,106,108,104,80,99,102,83,96,103,108,103,101,107,102,102,96,105,106,92,98,100,104,100,82,97,75,100,97,97,93,105,96,94,103,98,105,109,91,92,98,97,103,110,83,100,111,102,104,101,99,98,97,102,91,93,106,105,106,94,94,105,98,103,108,108,106,105,103,83,104,107,97,99,81,107,104,117,103,107,106,107,96,99,102,94,100,101,105,100,97,105,97,103,110,113,91,99,100,108,96,105,104,99,97,105,94,105,97,95,105,92,90,98,95,105,102,105,103,107,104,93,100,104,88,100,98,93,102,101,91,88,98,97,100,98,108,100,104,107,99,102,101,102,90,107,109,95,99,102,100,98,102,102,100,102,86,104,96,104,100,101,105,96,110,109,101,110,114,103,99,102,100,106,97,107,99,106,97,104,99,113,101,93,99,97,70,95,71,93,98,90,117,104,100,105,100,110,106,96,101,123,104,104,100,106,100,103,101,110,95,101,109,108,104,70,97,103,90,90,113,100,110,108,102,102,91,110,117,121,97,114,91,119,100,99,104,105,106,107,97,93,108,104,108,104,83,108,96,90,94,102,102,95,101,104,95,103,109,96,97,105,114,101,97,97,105,93,95,99,105,99,109,102,111,80,101,91,110,117,112,81,94,105,102,103,104,109,114,88,94,99,103,100,100,91,96,99,92,100,99,100,92,97,108,91,94,97,107,83,106,106,99,77,96,109,100,95,90,108,90,107,98,103,101,99,97,109,114,81,102,102,134,103,101,109,103,95,104,93,99,97,109,96,106,97,90,89,95,94,94,99,98,99,86,105,100,89,101,96,99,108,87,109,96,107,97,95,95,110,114,102,106,89,90,86,94,102,91,98,112,95,106,102,100,105,100,113,106,97,112,101,105,94,100,109,100,94,101,102,93,95,102,97,98,106,96,100,105,92,92,96,98,95,100,106,114,86,102,91,91,91,102,110,105,94,102,97,105,96,95,92,98,105,95,111,98,92,111,100,97,93,96,116,105,110,95,94,74,93,106,112,100,103,109,104,102,108,90,81,112,112,105,112,109,89,112,109,107,109,99,106,99,101,107,91,91,106,103,102,99,109,99,97,104,92,95,102,98,97,101,110,90,97,101,92,108,103,94,92,94,96,99,98,98,89,103,97,84,100,91,73,102,109,112,113,91,87,105,104,91,108,101,99,98,103,102,96,96,101,94,102,97,96,116,105,111,92,102,92,105,94,102,83,90,94,98,102,108,100,103,109,99,99,109,91,107,103,91,93,98,96,96,87,93,96,94,103,99,87,103,105,101,100,91,100,99,113,80,101,102,94,108,100,96,113,95,102,105,98,101,104,91,106,92,102,100,100,98,99,94,105,104,118,105,91,110,101,96,100,97,116,90,97,95,102,112,101,99,113,93,91,103,87,88,100,95,101,119,103,93,113,107,109,106,98,99,121,71,101,106,98,98,104,100,100,103,62,102,97,95,105,111,85,96,103,104,102,92,104,103,124,103,100,99,107,95,98,116,111,95,89,99,102,111,91,102,101,99,95,98,90,120,102,80,100,107,105,106,107,106,104,106,108,92,88,99,105,91,83,107,97,106,96,96,108,101,112,93,117,112,109,94,99,115,93,109,88,105,95,92,104,102,100,91,91,101,89,101,89,97,104,101,97,96,101,99,100,105,106,102,101,101,109,91,104,98,102,97,112,97,98,94,104,91,108,108,112,95,108,87,88,110,94,114,104,113,99,94,109,98,103,102,94,99,98,107,92,108,103,84,94,96,94,93,103,111,98,104,99,95,100,104,100,101,88,104,96,92,98,107,97,93,97,95,80,93,97,96,107,96,101,109,88,103,102,108,104,105,106,103,93,87,99,91,87,90,93,107,98,91,92,105,94,103,101,103,99,88,95,94,95,94,88,100,97,95,79,102,103,100,101,88,114,102,100,116,98,95,105,102,99,93,95,108,103,102,84,105,96,104,105,105,96,102,105,105,101,101,95,96,99,88,101,99,93,104,108,99,100,101,105,94,95,105,100,95,99,90,112,102,91,97,110,107,102,68,93,102,96,96,87,92,97,93,87,93,104,112,85,105,97,106,102,101,105,99,97,105,104,99,104,112,97,99,96,90,94,93,94,95,88,97,92,104,109,103,99,96,102,102,98,114,101,88,100,98,110,109,104,91,100,104,99,130,99,105,99,109,104,121,101,104,116,104,91,99,97,109,113,98,73,113,106,101,98,92,105,98,103,129,96,110,91,102,109,95,102,99,101,98,111,101,102,102,104,103,97,104,89,86,107,102,93,109,98,86,84,92,95,104,102,92,85,101,93,100,107,104,93,93,96,92,90,102,98,105,117,88,99,112,107,95,104,100,98,106,94,95,108,104,103,100,97,106,101,102,104,114,99,102,100,90,105,101,98,93,84,96,109,93,99,105,106,77,100,101,109,100,99,110,102,104,94,91,100,102,97,104,102,93,115,97,87,91,95,108,110,112,102,102,106,103,110,109,109,81,97,97,94,82,106,97,93,101,99,88,85,102,101,84,101,92,108,100,97,107,105,99,95,95,98,104,95,97,94,110,119,95,108,94,99,92,107,108,92,105,94,93,94,97,112,106,102,105,110,93,116,99,90,98,105,100,93,112,96,104,87,92,103,88,92,86,105,91,109,91,72,103,99,95,90,98,112,80,105,102,99,90,92,100,99,106,103,101,100,96,93,107,98,100,89,112,100,105,90,101,103,112,101,98,100,100,105,85,89,95,98,102,93,128,95,91,95,101,103,100,98,106,89,100,102,97,97,99,98,85,92,100,108,102,99,106,108,89,87,102,100,113,118,102,128,95,94,102,107,96,102,103,128,98,92,94,89,99,92,103,102,99,94,110,110,113,104,95,105,106,97,97,117,99,106,92,73,101,98,101,108,108,110,99,106,103,88,96,113,77,92,97,94,84,106,100,104,102,110,103,106,98,91,95,102,104,96,105,104,99,99,93,107,94,90,118,111,108,120,100,99,97,106,100,112,102,104,102,103,114,112,95,97,94,104,104,103,110,97,95,116,100,105,93,100,105,92,106,107,109,107,110,106,104,98,107,88,93,91,102,94,115,103,95,102,98,110,81,111,109,103,99,92,98,102,102,102,105,109,102,98,89,92,98,98,113,91,92,100,90,107,91,108,106,90,94,100,96,93,103,103,99,98,101,102,99,95,100,110,100,94,105,105,104,104,98,99,115,84,84,102,98,102,102,87,101,108,94,103,97,102,98,97,92,95,93,103,89,98,90,116,112,105,108,95,98,100,95,99,105,97,98,93,104,101,106,84,110,101,95,94,99,109,97,88,95,101,87,95,104,93,96,101,94,92,93,87,98,92,103,99,96,99,94,98,94,100,104,114,87,104,97,101,107,114,101,102,102,103,94,123,93,97,109,93,98,111,95,95,99,102,88,82,95,94,94,88,104,104,99,139,98,117,108,90,103,108,97,86,108,99,102,100,96,102,94,101,99,106,97,101,88,114,102,94,96,111,99,102,98,102,105,89,100,99,88,106,103,99,102,83,88,90,107,97,88,109,104,97,100,91,102,101,96,92,99, +701.40039,98,101,100,99,104,104,101,98,92,87,94,101,63,92,113,97,105,98,96,101,103,100,95,99,100,99,97,99,119,94,104,100,107,100,101,93,92,93,87,104,102,88,98,109,83,114,121,101,101,86,93,91,96,114,101,111,97,92,109,92,97,93,104,91,104,105,93,104,102,86,104,105,96,103,100,109,94,103,96,99,101,99,100,81,91,87,97,112,97,96,95,106,101,90,106,97,81,104,93,109,96,87,90,94,99,91,99,87,97,92,105,91,97,109,109,104,98,92,78,97,108,104,102,109,98,100,95,97,95,103,102,109,71,105,95,100,87,94,87,89,94,93,81,104,100,82,111,112,89,105,101,85,97,93,95,93,92,100,106,96,100,101,100,96,110,90,96,92,108,95,98,101,99,100,107,99,100,91,98,100,97,66,94,108,97,94,92,95,113,89,103,89,93,101,105,102,96,102,98,72,93,93,95,99,98,92,93,103,94,98,94,91,109,100,93,98,92,99,97,103,95,101,93,100,100,91,95,92,102,89,96,95,99,102,79,99,62,97,101,105,94,104,100,87,96,105,97,104,97,98,102,101,106,96,79,86,95,94,83,91,95,91,93,106,98,96,93,107,100,93,96,100,103,105,96,99,95,104,80,97,100,107,83,101,94,102,94,99,90,109,95,84,99,91,107,100,96,79,102,104,96,97,102,105,92,102,97,92,99,114,100,94,108,97,80,99,103,97,86,102,99,114,96,101,91,95,97,89,99,84,91,97,105,99,95,87,101,98,104,105,94,96,106,93,91,103,96,102,104,93,101,107,95,95,105,99,94,98,94,83,107,107,98,90,118,91,92,128,102,83,101,100,102,103,101,96,104,95,74,94,110,99,103,89,104,92,94,80,105,93,99,102,94,91,96,98,81,97,94,102,90,113,102,95,92,86,84,98,103,96,80,89,95,110,99,83,89,83,109,95,96,106,95,108,86,98,98,100,93,102,89,99,92,90,101,112,99,111,95,99,101,87,89,106,95,102,96,84,102,110,96,74,93,99,99,99,107,97,103,107,91,104,105,102,91,108,99,95,114,92,93,102,97,93,89,101,102,88,99,96,104,99,95,95,116,99,102,102,97,92,92,96,96,98,99,101,83,102,101,96,105,92,96,109,89,93,93,98,88,96,101,103,107,100,107,113,86,90,95,91,96,94,102,104,100,114,110,100,95,105,88,100,104,100,100,101,98,102,91,113,101,106,103,96,100,102,101,102,97,97,85,96,99,91,100,85,96,94,104,98,101,92,95,95,91,98,112,103,103,95,92,104,89,97,90,94,83,97,94,101,100,92,97,109,97,101,98,105,95,105,72,98,94,95,100,95,96,95,116,90,105,104,97,93,99,95,103,99,72,99,93,105,96,96,104,92,99,97,97,86,109,90,91,98,103,113,99,98,101,105,98,102,95,95,83,98,108,104,75,97,103,93,97,97,87,91,95,101,97,97,75,105,113,101,84,93,96,101,91,99,118,91,98,106,93,93,110,89,107,107,96,99,98,93,106,95,94,103,96,105,101,86,113,91,92,98,102,109,83,106,113,102,97,97,102,99,110,101,99,107,97,95,98,86,103,95,105,106,109,97,93,96,101,113,91,109,114,104,95,92,99,98,107,102,97,88,108,99,84,102,108,105,92,95,99,92,98,97,70,93,101,103,95,100,112,90,97,93,102,105,103,91,106,97,102,108,100,97,95,102,96,88,96,106,89,98,95,104,99,99,96,97,98,84,104,95,102,95,100,101,99,98,98,97,100,100,104,104,99,86,112,120,96,105,103,98,101,94,97,107,103,106,100,95,106,105,99,100,108,96,97,101,85,98,93,92,95,94,97,104,103,62,100,97,101,96,93,109,111,100,118,99,104,96,102,101,103,100,96,100,108,88,96,108,104,93,93,108,97,87,102,107,95,106,95,108,92,103,100,107,95,103,100,105,95,96,96,102,99,106,96,116,108,101,100,127,88,87,105,101,101,106,96,101,102,104,84,98,111,98,102,95,106,99,99,100,102,100,91,109,99,104,106,112,97,88,92,100,106,104,96,98,94,97,94,97,100,96,93,99,102,106,102,95,97,101,110,90,89,103,98,97,105,102,89,107,86,100,98,107,91,99,98,98,88,105,108,137,109,99,89,104,90,109,94,89,95,101,111,102,88,100,104,95,98,90,102,91,105,92,82,99,104,105,91,98,97,101,114,98,90,97,106,93,103,95,101,93,116,100,92,103,108,102,99,79,97,100,109,110,105,95,86,94,94,107,94,110,85,104,70,103,98,99,98,92,93,96,99,103,103,107,93,92,104,104,100,105,90,102,115,97,102,101,108,94,92,99,98,94,98,112,78,92,92,93,114,101,96,107,95,110,104,96,101,106,90,96,97,118,92,90,99,100,95,87,98,96,102,93,107,90,86,96,112,92,104,95,97,82,106,105,89,112,103,108,106,120,97,106,102,106,98,100,89,97,101,103,110,95,95,92,98,98,85,99,102,103,101,99,89,108,101,102,99,102,94,106,107,98,94,106,100,109,99,95,111,93,112,107,101,86,87,98,96,112,105,109,111,95,107,83,108,103,88,104,86,103,104,101,113,84,94,105,87,92,100,103,93,100,119,93,111,94,102,92,98,89,112,111,108,99,105,108,105,94,100,110,113,104,92,99,109,96,94,100,102,95,107,110,91,105,121,93,98,92,90,105,98,103,81,110,106,91,96,102,103,101,98,93,100,108,109,117,104,103,103,94,112,106,100,100,94,103,99,98,118,100,108,88,96,107,112,88,100,109,105,103,98,107,94,96,123,90,100,106,101,98,98,92,94,107,113,107,90,104,102,94,106,104,107,98,105,103,103,94,88,109,103,95,111,106,95,96,87,101,90,99,108,93,107,105,100,96,121,93,92,92,108,116,101,101,102,89,101,105,104,95,106,97,100,100,94,99,79,96,99,104,95,93,87,94,91,95,111,109,108,106,97,93,101,102,95,87,100,93,100,94,87,99,99,113,101,105,105,107,97,93,95,106,102,109,101,105,102,85,96,96,114,112,110,94,93,95,99,97,105,107,96,104,98,97,113,74,98,92,101,100,98,109,102,104,105,111,92,97,92,95,100,95,95,111,91,88,100,90,113,96,93,95,72,102,105,113,100,104,93,100,100,110,101,94,99,104,113,103,104,105,104,103,110,107,95,109,103,93,96,106,91,90,97,103,104,101,88,100,106,104,115,100,107,106,103,100,101,102,87,116,95,106,96,98,105,106,94,105,104,123,104,108,93,104,105,95,91,112,96,93,103,99,104,94,105,100,99,102,98,101,95,86,87,100,99,104,109,103,99,92,97,91,102,98,123,109,102,97,97,98,95,94,99,113,91,108,103,87,97,109,106,106,101,81,89,110,108,100,101,103,90,92,99,73,98,95,96,116,96,104,103,98,99,101,98,103,98,99,101,97,103,99,106,99,108,77,83,109,92,96,105,116,77,99,97,113,97,96,107,100,87,100,108,95,102,87,90,98,107,105,101,102,92,97,97,105,110,101,91,100,99,111,109,99,93,103,106,99,93,102,99,91,99,100,87,100,105,100,67,111,96,112,83,104,105,104,97,80,102,92,104,98,103,108,94,99,107,98,109,107,99,104,94,96,98,92,100,101,92,106,71,95,99,100,93,99,99,94,114,109,101,96,104,90,114,102,88,101,99,115,106,100,98,89,99,101,109,87,102,93,94,106,103,99,93,96,84,106,105,97,104,104,108,102,96,99,104,95,111,107,118,96,95,123,88,99,100,99,106,104,89,94,101,101,107,103,89,99,99,105,88,105,93,95,103,103,105,102,99,104,102,103,83,110,93,103,95,101,113,94,93,105,90,108,108,104,105,94,83,99,92,93,85,90,117,104,93,102,105,102,102,116,91,99,103,90,87,115,87,109,102,103,97,105,99,101,115,98,99,90,103,104,94,94,89,76,114,98,96,92,97,107,101,111,94,101,106,95,98,96,97,102,101,105,96,111,91,92,109,83,98,99,106,96,95,109,122,120,93,96,108,89,102,97,95,103,95,95,109,98,100,101,105,114,105,108,104,104,89,74,99,105,98,98,94,87,97,95,105,100,109,106,99,92,100,88,96,100,101,99,107,99,109,101,101,102,102,90,103,104,97,106,96,92,87,102,109,103,101,106,100,109,107,99,97,104,93,105,103,103,98,108,97,100,110,94,97,98,111,105,115,90,94,88,108,104,93,97,96,79,119,98,101,101,88,98,97,101,91,101,93,83,104,96,91,98,96,103,93,92,98,109,100,89,91,105,103,94,93,102,91,102,100,101,100,106,96,102,113,94,105,101,102,105,125,101,105,96,100,96,111,92,109,109,104,99,103,105,109,105,100,74,96,83,99,98,93,97,67,107,101,102,112,104,106,104,96,105,83,93,97,110,102,112,100,99,104,89,102,106,95,105,102,104,98,106,99,98,94,103,107,96,95,116,87,88,92,98,102,87,102,92,97,105,99,99,93,98,95,103,102,97,105,97,105,100,84,96,95,89,97,104,108,94,107,109,99,99,101,105,98,101,100,105,101,112,102,101,96,97,100,88,92,88,98,101,95,92,104,105,95,100,114,100,96,97,97,106,115,103,80,99,104,95,105,105,95,103,104,93,104,89,109,97,108,105,98,106,104,106,85,97,100,88,97,95,98,93,96,87,95,95,92,94,103,99,90,98,100,91,99,94,110,98,102,101,96,121,104,100,104,100,97,95,104,100,114,102,102,96,87,103,100,95,96,89,95,99,107,108,95,94,116,92,100,97,99,100,103,104,94,90,103,97,100,100,105,111,63,92,116,86,103,94,107,117,92,105,102,90,101,112,99,105,116,100,104,106,110,109,101,95, +701.54169,105,106,81,97,80,93,91,96,105,94,96,100,92,96,117,96,103,105,96,102,116,100,128,106,106,103,103,108,106,98,102,100,95,92,113,93,90,97,98,102,97,99,101,101,101,99,108,117,94,121,90,110,95,86,96,98,92,96,102,92,100,100,100,86,98,98,101,72,106,96,94,96,94,105,95,106,95,114,105,96,98,102,99,107,101,100,100,101,94,101,109,102,94,93,100,100,81,103,110,83,95,104,107,99,105,117,105,96,109,96,99,107,97,94,95,105,105,91,96,106,105,105,96,94,105,101,98,94,99,93,107,108,92,113,109,82,91,103,88,97,94,117,105,95,101,100,112,97,111,94,97,93,99,96,91,113,100,99,92,105,104,100,109,102,106,99,114,94,105,95,113,103,88,110,91,93,95,94,105,112,87,106,101,97,94,113,99,92,102,100,97,104,101,112,103,99,97,109,108,101,95,100,87,108,86,92,108,106,94,106,107,92,84,102,113,110,96,91,94,92,94,104,94,93,103,105,103,102,107,101,99,97,99,95,102,96,103,93,94,89,93,111,113,91,90,114,106,94,87,98,109,90,103,104,109,97,112,99,93,107,88,90,112,91,100,117,108,99,105,91,99,99,104,106,96,97,97,102,85,94,98,96,109,88,102,101,100,110,114,109,103,98,100,96,99,104,100,102,102,91,92,94,106,106,99,95,107,95,100,104,98,115,102,98,90,92,103,99,97,97,91,92,108,109,98,113,106,99,104,107,100,96,94,95,104,101,108,102,92,91,90,103,97,90,95,104,104,87,113,97,105,104,106,107,106,110,97,100,97,102,90,113,106,102,95,100,94,103,99,109,98,93,105,116,111,91,101,100,95,105,95,113,92,113,87,99,91,109,101,92,91,94,90,98,98,90,89,99,112,101,101,109,100,115,106,85,83,107,105,91,111,91,99,100,106,92,105,112,94,98,101,106,87,94,92,91,93,83,98,107,99,113,106,108,95,100,108,87,98,96,94,127,100,105,111,108,100,96,89,104,86,106,94,92,96,101,103,103,103,105,94,106,96,109,124,116,109,93,109,94,96,98,98,95,99,94,116,95,110,96,95,92,95,113,94,106,103,109,102,99,110,111,105,102,93,99,96,105,109,105,101,94,110,99,98,88,101,96,100,103,101,107,105,101,99,113,95,98,109,110,97,82,103,117,99,102,108,104,103,95,93,105,96,85,106,111,105,91,101,99,106,82,95,91,108,103,111,90,104,105,94,99,97,102,97,101,100,97,98,106,113,99,98,100,97,106,104,102,101,83,88,92,108,100,109,99,88,95,110,98,103,99,101,93,92,102,79,98,105,112,105,130,106,94,108,105,95,101,97,102,102,98,103,96,74,88,113,88,92,66,115,92,102,108,109,99,98,97,112,85,103,96,98,100,99,94,95,96,107,104,102,99,91,105,95,106,98,94,100,99,105,110,90,107,103,100,108,110,96,107,101,104,97,90,97,104,99,107,112,86,80,111,102,99,67,99,99,92,96,93,107,93,101,101,91,118,97,98,116,90,105,93,103,107,100,100,91,103,98,103,97,104,103,105,96,92,103,98,96,90,98,102,105,94,107,107,100,99,106,113,104,97,103,90,94,90,95,107,99,113,95,106,96,91,97,109,106,106,102,106,94,94,90,103,90,97,87,105,101,96,114,97,101,105,90,93,97,96,98,98,113,100,99,100,82,100,95,100,104,105,97,95,89,106,93,91,92,102,97,100,105,95,100,90,114,99,99,100,107,98,102,117,98,106,96,120,102,116,104,113,101,109,113,107,75,98,119,96,106,87,102,99,102,91,78,99,99,100,90,99,97,94,112,95,87,98,97,105,107,95,78,105,101,112,102,101,103,111,117,90,103,99,103,96,101,104,102,100,97,94,96,96,100,109,96,96,108,96,96,103,106,100,98,101,97,94,100,106,96,91,83,99,99,94,84,98,101,106,108,104,103,102,99,106,92,94,102,89,106,98,111,109,95,91,96,96,108,106,89,92,97,98,76,102,113,94,95,94,120,101,95,105,107,100,91,98,87,106,98,102,95,104,109,105,107,109,92,103,104,103,101,106,108,103,100,100,106,94,97,99,108,95,99,99,91,111,101,95,109,105,120,102,92,113,95,100,91,93,105,93,108,82,94,111,102,92,105,110,103,114,106,101,101,114,109,110,92,102,103,100,90,90,97,94,103,93,99,96,91,106,93,91,103,86,106,96,110,98,97,93,104,106,84,106,95,89,93,104,104,98,103,99,98,114,109,99,99,108,98,86,92,96,96,115,103,103,102,97,88,114,97,115,93,91,110,106,101,115,109,99,96,104,95,106,99,87,109,106,105,104,99,125,105,91,105,92,116,89,94,93,87,108,99,96,101,101,98,99,83,95,92,111,102,96,105,91,93,96,102,93,100,117,101,99,111,98,99,93,94,99,98,99,100,97,95,104,101,104,105,103,98,110,109,96,103,89,106,91,109,92,100,90,92,105,99,109,100,101,99,99,101,103,89,98,109,95,104,97,102,98,99,113,102,101,113,99,99,101,103,92,112,105,100,101,93,99,95,114,91,94,91,100,97,110,96,95,110,100,101,88,107,103,109,93,104,92,100,99,106,102,110,94,105,99,102,107,98,96,118,96,91,102,113,97,107,110,103,110,109,91,88,104,91,102,103,106,113,101,95,104,96,93,98,100,88,119,101,99,104,104,76,105,101,96,111,109,103,94,106,101,97,102,109,107,109,120,68,102,102,109,99,105,87,88,99,98,88,97,104,105,99,102,113,98,98,106,103,103,115,105,106,99,109,104,102,88,106,107,96,103,106,109,99,113,107,116,104,98,105,103,102,96,98,104,108,109,101,100,113,72,94,117,131,108,99,96,99,101,91,102,97,106,107,112,114,104,102,99,97,106,104,105,115,108,105,101,100,109,90,121,101,103,108,108,96,92,99,108,87,101,104,99,104,97,99,113,110,94,95,96,96,107,102,91,111,97,99,114,106,95,99,115,95,107,91,101,103,90,90,113,102,108,105,104,107,100,105,106,109,103,94,100,95,101,98,90,119,101,98,117,105,87,100,93,102,95,100,118,87,95,109,92,102,106,94,109,105,101,101,96,103,93,101,103,107,105,104,102,101,90,106,97,113,98,99,88,100,97,95,103,108,99,107,98,106,97,83,104,108,100,102,100,101,105,112,94,100,90,99,105,101,106,93,103,91,90,104,113,105,105,108,98,98,107,79,104,103,91,101,100,91,107,100,106,96,100,89,91,88,100,101,94,108,100,100,104,108,113,112,105,112,104,99,80,111,119,110,98,108,105,96,96,100,103,104,104,95,98,96,112,87,109,102,96,91,105,102,101,99,93,100,102,99,104,102,92,97,100,84,95,97,81,100,103,96,88,98,105,99,102,103,112,91,93,109,103,94,93,105,99,104,110,105,96,92,102,101,109,94,108,105,97,105,112,102,104,99,95,98,94,96,105,97,90,97,97,114,104,96,106,69,113,103,104,114,105,97,117,105,105,106,105,91,109,89,95,94,75,98,129,104,95,104,103,102,104,114,97,106,92,106,94,107,90,95,99,106,82,113,94,88,101,101,107,110,94,99,91,106,113,102,111,88,102,105,99,98,107,102,97,94,97,113,104,93,97,97,103,100,95,94,99,91,99,109,96,95,106,100,106,107,104,111,103,107,100,100,102,109,98,96,101,113,99,104,102,101,91,93,112,99,122,98,88,101,105,103,98,98,102,102,84,110,101,103,103,111,91,109,103,100,99,92,107,98,98,102,106,100,108,92,109,109,102,96,100,106,93,106,111,99,108,99,104,111,102,103,97,104,108,95,102,111,120,99,100,88,98,132,107,103,85,101,102,102,92,98,105,96,109,105,110,93,105,105,104,105,96,99,98,98,101,111,104,104,99,100,105,108,106,103,87,102,105,96,105,107,104,89,106,103,98,100,100,106,100,104,85,91,109,106,103,96,97,111,105,90,103,103,102,109,100,120,102,111,108,113,113,103,99,102,93,77,116,92,111,108,102,101,90,100,100,99,115,99,99,103,93,85,100,107,108,100,95,122,102,96,106,97,103,88,100,90,95,101,87,94,102,107,106,99,68,102,118,97,110,84,91,104,108,108,91,103,75,106,100,107,103,109,101,110,100,117,101,107,97,105,106,110,94,102,123,100,95,104,99,104,88,103,112,105,97,99,96,109,96,102,99,99,100,108,105,93,99,106,103,102,117,80,98,92,95,91,100,87,103,107,92,101,106,97,109,95,99,91,103,105,101,109,100,101,96,100,110,120,106,98,110,103,103,102,101,104,108,98,103,80,106,99,95,104,99,100,103,99,91,84,99,99,101,108,102,102,101,100,91,101,98,109,109,93,95,104,94,89,102,105,97,103,113,106,106,102,101,101,92,117,101,91,95,91,100,101,107,98,104,105,98,101,93,87,101,91,98,111,96,110,99,98,98,94,102,85,111,101,95,113,99,106,81,95,90,102,98,91,100,119,106,113,95,100,113,104,98,105,98,101,102,111,97,90,116,100,95,101,113,108,94,96,104,96,96,113,112,81,99,92,102,92,94,101,100,85,112,99,106,100,79,108,96,109,107,108,103,116,115,117,96,124,88,109,92,108,103,100,110,100,106,100,100,107,98,93,100,108,98,104,98,91,109,116,98,102,98,83,96,101,97,103,91,90,102,100,99,109,100,107,105,104,109,124,100,108,104,95,96,93,107,94,79,105,95,87,104,100,99,116,100,94,100,103,107,104,103,107,83,91,87,95,102,111,100,94,108,119,103,91,107,113,93,89,103,102,110,101,105,80,122,109,96,117,78,104,117,110,104,101,97,92,105,108,106,108,87,126,113,111,112,104,87, +701.68304,113,98,98,98,101,108,96,118,102,106,92,100,82,91,108,122,104,116,101,98,102,91,108,101,108,96,103,99,105,118,102,98,97,96,91,101,104,84,96,105,89,100,99,100,91,117,83,104,92,100,98,120,94,101,91,104,105,99,110,99,100,104,114,102,91,105,95,101,96,92,99,99,101,109,94,114,97,114,91,102,106,101,96,93,89,101,114,102,96,100,111,89,99,98,109,105,96,105,104,90,89,98,102,92,101,102,100,95,100,100,102,102,94,100,102,96,110,98,108,100,94,100,105,88,106,87,96,99,116,93,98,100,92,96,113,111,81,89,87,104,90,97,89,101,103,91,99,101,92,106,103,75,102,96,98,98,103,97,97,92,105,106,108,113,96,99,96,95,93,104,101,113,97,100,92,114,94,109,103,102,100,103,101,91,108,95,99,97,96,101,93,103,105,113,94,107,96,88,122,102,100,100,114,102,92,111,87,83,106,87,91,101,101,104,96,99,107,113,97,105,108,112,100,108,97,104,107,103,94,104,95,106,93,106,135,97,99,96,104,99,106,100,91,98,93,94,105,95,102,96,94,99,101,105,99,111,101,100,97,97,93,97,106,107,102,97,106,100,103,90,99,105,117,102,103,106,90,100,98,87,102,104,92,84,101,101,97,97,97,97,98,102,115,105,99,91,101,94,97,99,96,95,99,96,93,120,96,100,105,95,94,94,102,95,107,95,99,108,104,103,95,108,93,88,101,88,106,92,107,106,101,102,91,98,102,100,112,94,77,94,97,100,101,95,98,85,107,104,104,115,101,105,97,93,101,105,103,98,91,108,81,100,100,94,106,102,104,103,116,112,111,100,100,112,99,105,109,98,100,90,106,105,92,96,85,110,100,112,107,90,100,94,95,90,92,107,97,106,99,115,101,96,95,105,94,94,92,98,131,90,93,95,92,102,102,92,102,103,97,101,99,93,82,114,98,105,94,101,112,109,88,99,108,101,101,98,99,99,116,95,109,102,110,94,101,96,100,105,106,106,90,84,104,100,97,104,107,99,106,106,98,97,108,104,108,110,96,94,101,120,96,100,92,94,114,99,100,100,97,116,101,118,107,114,100,95,110,108,95,89,102,99,95,102,101,111,100,101,108,102,83,122,107,112,106,100,101,104,99,97,113,90,110,103,86,106,117,95,68,98,112,94,108,90,99,101,88,108,108,101,92,98,96,94,100,104,92,96,99,101,90,104,96,102,113,90,100,107,102,97,100,101,96,102,103,99,97,100,85,101,96,103,81,103,92,107,108,106,102,99,97,90,101,107,100,112,84,83,104,103,93,94,98,99,102,95,97,98,107,100,98,103,99,100,92,95,100,108,97,100,106,99,96,96,99,96,94,96,82,94,109,76,105,109,94,103,97,100,99,102,109,102,101,105,104,101,96,93,100,95,98,95,96,116,95,101,105,93,99,99,101,94,92,102,100,99,110,102,106,108,91,104,105,92,109,102,107,107,107,105,116,100,102,94,92,104,100,97,103,90,106,112,109,103,85,98,95,90,106,105,107,104,111,86,80,99,96,92,86,98,93,96,94,99,101,91,104,106,104,98,95,102,119,100,103,105,98,103,87,99,99,98,104,107,100,99,101,103,107,97,108,94,101,98,103,99,104,106,105,111,102,94,87,89,92,95,109,95,104,88,100,103,90,89,98,101,103,90,100,104,118,100,102,96,108,105,77,87,99,93,97,103,93,74,98,81,95,68,109,96,105,98,95,106,93,107,106,97,106,101,102,103,112,107,96,110,100,95,100,105,89,98,90,95,105,102,103,113,99,94,96,86,97,98,91,102,88,96,104,94,102,100,104,99,104,103,97,103,99,124,99,99,91,110,99,126,88,90,97,100,103,104,86,105,97,109,116,94,96,109,101,107,95,106,97,92,96,105,96,96,105,86,101,103,80,96,93,98,98,96,95,101,92,93,117,88,92,107,102,97,101,107,105,100,92,91,96,102,95,110,104,100,102,107,93,105,93,96,104,103,100,102,91,109,101,97,100,103,113,115,102,97,103,101,112,88,86,103,100,106,106,108,115,104,113,95,103,93,89,106,107,93,105,105,102,90,101,94,110,96,87,108,112,108,96,96,107,98,101,104,100,110,97,104,102,97,103,104,113,117,96,101,89,95,113,101,97,101,109,99,118,97,104,103,110,103,97,108,89,99,99,104,99,96,94,93,99,99,79,112,96,91,95,90,117,92,106,109,110,114,107,99,100,96,92,100,96,112,99,108,108,92,97,82,100,95,102,98,93,123,93,91,103,96,70,97,96,108,99,90,94,101,96,99,102,100,105,100,104,96,96,94,115,100,95,101,109,111,103,94,98,106,100,96,99,98,100,106,103,97,97,97,97,91,98,90,93,103,91,93,97,73,94,105,106,95,89,86,88,97,95,105,101,92,105,93,103,96,105,97,101,107,99,94,109,97,92,92,102,100,114,99,113,95,90,96,111,107,100,105,95,102,91,94,99,109,102,104,106,100,99,107,95,103,102,97,91,116,99,107,95,100,106,87,97,99,106,102,103,96,94,103,100,87,93,97,108,106,107,103,91,115,95,92,132,93,94,101,111,96,93,105,97,100,105,95,105,94,111,103,98,96,95,86,101,103,104,94,107,114,97,94,104,98,91,88,108,110,96,103,103,102,103,104,98,98,103,99,100,99,104,84,95,112,99,99,97,92,95,99,102,101,102,99,107,108,107,105,100,102,127,105,98,99,104,98,110,113,91,82,100,102,112,94,120,105,106,105,110,93,96,96,95,109,103,106,104,105,119,106,88,105,113,99,91,94,107,112,94,96,102,123,114,109,86,97,98,106,101,91,102,99,108,114,105,88,78,115,95,108,105,96,119,109,101,87,95,101,103,110,97,106,108,106,80,93,86,104,103,101,103,110,96,87,101,107,108,95,90,113,102,109,125,107,87,104,103,92,100,91,101,94,104,107,100,104,113,111,99,91,109,99,91,97,108,98,106,93,106,95,99,96,97,101,117,103,101,107,90,109,101,101,99,101,92,94,103,97,108,97,108,105,94,101,98,103,86,104,89,105,104,113,93,97,99,102,103,99,93,102,108,96,96,113,111,102,95,100,95,106,105,112,100,103,101,100,101,104,99,101,98,99,86,96,105,94,98,98,100,97,105,99,100,95,105,107,100,103,109,96,96,92,92,107,106,99,98,93,112,107,98,101,96,98,106,110,90,106,81,98,102,101,103,100,87,117,103,108,97,90,92,108,99,101,88,101,94,71,108,91,85,99,111,99,102,98,104,92,107,81,109,107,101,105,113,108,96,90,101,103,104,99,98,104,111,101,111,101,93,90,108,94,97,98,103,91,96,93,101,98,109,101,91,107,102,101,84,104,86,108,108,103,102,95,101,99,100,103,96,102,105,112,111,116,105,94,107,106,100,100,84,102,110,109,82,99,102,101,105,101,105,92,107,89,105,106,95,100,105,101,96,102,96,103,98,107,109,99,94,94,110,95,102,104,106,114,101,96,107,94,90,102,104,110,78,114,92,104,91,104,95,96,102,87,95,105,103,94,109,102,112,101,104,107,94,104,98,102,89,107,101,103,108,109,101,81,108,94,116,86,76,98,103,100,108,103,94,100,96,92,107,100,96,111,102,84,95,80,108,98,105,98,102,113,104,105,93,95,104,92,90,96,100,112,109,103,96,95,93,93,83,99,101,95,98,101,102,96,95,123,103,99,92,84,83,101,99,97,93,99,110,87,99,104,106,107,111,122,113,103,87,101,103,104,105,105,82,97,103,98,105,105,97,98,113,105,72,87,105,99,104,97,110,102,101,108,98,101,91,107,89,108,105,95,104,91,92,84,87,101,105,90,100,98,101,110,97,102,98,92,102,104,95,93,103,83,122,93,106,88,89,111,109,92,98,98,105,94,103,94,128,94,97,94,94,97,80,107,99,101,106,102,110,110,96,107,96,101,96,109,102,97,92,104,118,97,101,100,103,111,109,90,98,100,106,107,109,107,88,104,102,102,102,102,102,107,101,98,108,100,96,114,102,99,96,99,102,106,106,122,100,101,95,99,98,93,98,105,103,100,91,93,87,95,86,94,107,107,89,97,106,90,106,68,101,99,105,98,102,105,90,108,96,92,96,101,104,93,92,89,93,108,99,102,94,120,98,104,94,94,100,95,83,113,105,103,101,101,100,100,92,108,100,111,88,96,117,106,103,98,100,94,96,95,103,108,96,109,94,105,97,94,106,98,97,102,102,93,97,110,100,107,95,96,99,91,87,107,115,117,107,107,105,105,102,100,111,101,107,96,111,100,108,105,104,97,103,90,99,104,98,98,78,105,104,116,98,97,121,100,100,106,96,98,95,94,101,100,102,93,92,92,97,102,98,108,111,99,101,104,104,107,107,95,94,90,92,102,92,91,95,109,91,112,106,88,103,101,101,106,92,90,93,103,113,107,104,105,99,76,90,73,101,89,124,89,116,94,113,99,101,90,87,104,98,93,106,100,103,105,103,91,95,94,99,100,101,100,104,98,103,96,109,91,106,121,100,131,108,103,104,89,111,95,103,107,91,86,94,102,105,106,86,95,109,113,94,98,108,109,109,98,112,108,110,77,96,93,92,103,120,95,90,89,105,105,94,111,98,109,104,101,102,96,99,105,101,101,100,94,106,97,106,104,101,103,110,87,98,99,97,92,109,107,94,86,108,106,85,94,108,96,100,113,99,91,112,88,87,107,103,83,83,101,109,93,89,106,103,94,98,90,96,96,104,92,98,91,94,94,91,104,102,93,103,106,101,100,103,98,99,99,89,115,90,116,91,97,94,104,106,109,116,101,102,103,104,105,97,93,109,101,116,103,116,81,112,117,99,83, +701.82434,98,93,95,112,83,110,111,68,93,94,84,105,101,102,92,109,86,109,111,101,110,102,105,90,94,103,96,93,90,104,102,96,101,103,99,108,105,97,104,89,104,71,100,98,93,103,94,93,92,105,95,96,97,105,91,93,102,90,103,93,83,106,103,104,103,103,92,99,95,106,103,93,90,106,112,107,98,103,104,104,101,103,99,102,102,111,100,100,89,97,105,98,99,103,111,105,84,108,119,106,95,131,109,112,91,95,99,100,96,91,100,105,101,97,97,105,107,115,99,99,107,99,98,99,95,102,101,97,85,94,107,95,95,104,96,95,111,90,105,96,108,108,80,97,96,95,98,95,95,94,92,85,99,95,94,93,92,91,89,108,90,107,104,106,96,102,87,91,112,108,86,104,96,101,109,97,102,100,103,117,96,90,102,94,95,106,94,80,103,102,105,112,95,97,98,104,100,99,96,96,99,110,102,96,105,97,100,103,100,105,90,89,114,107,91,108,109,105,109,94,91,100,97,105,100,104,102,93,100,114,98,93,108,84,102,103,103,85,100,104,108,75,108,96,103,98,81,99,101,104,103,99,102,100,91,105,98,114,99,101,97,100,134,105,96,93,97,98,107,73,103,98,96,97,108,100,111,104,89,100,116,106,94,101,90,106,91,98,91,100,90,99,94,100,115,89,98,89,111,106,90,100,97,104,96,109,94,107,99,108,105,104,100,101,97,97,93,91,92,110,105,103,108,107,101,105,98,95,101,108,92,103,92,95,95,70,113,101,111,104,89,109,107,91,105,113,98,90,97,105,100,94,102,102,105,105,102,110,107,98,97,97,96,90,113,106,109,104,102,96,95,93,99,101,93,107,103,105,98,96,88,103,98,90,97,102,97,96,99,92,106,95,108,102,104,95,81,99,94,115,109,95,92,79,103,101,100,100,104,98,102,91,117,95,105,104,94,91,98,105,106,102,100,99,112,89,91,89,95,96,93,95,100,97,103,104,96,107,100,123,100,93,104,106,100,105,93,101,106,109,107,96,112,101,98,100,98,104,105,97,109,103,94,110,113,95,96,99,88,101,94,111,104,105,113,97,108,105,104,96,106,79,101,110,85,105,99,92,103,98,100,108,104,105,92,106,98,91,98,100,94,98,92,105,91,100,106,98,111,95,101,94,114,105,100,98,112,97,109,98,95,100,103,93,113,101,90,105,113,103,86,111,116,104,100,93,113,91,92,105,96,100,103,93,109,98,102,101,112,93,93,90,96,98,98,94,103,102,109,97,101,102,80,129,100,75,106,93,87,102,84,101,100,108,94,100,88,99,99,99,100,97,105,93,96,110,108,95,104,97,102,99,105,96,100,103,95,105,104,109,100,97,113,95,102,100,106,94,97,111,86,106,100,97,98,101,104,105,119,118,108,92,102,95,106,97,97,92,98,105,105,98,94,101,105,100,99,109,117,93,94,112,98,101,109,101,68,97,118,106,99,117,109,101,97,101,103,103,94,104,101,94,94,97,97,92,103,101,96,98,99,100,104,94,97,111,108,100,94,104,110,96,105,108,82,106,104,98,100,111,99,114,114,107,99,94,102,95,81,93,99,112,100,118,108,107,120,105,102,110,103,98,95,101,98,89,86,99,103,102,88,94,109,98,100,93,105,110,113,104,90,102,97,105,92,102,116,104,64,97,105,100,87,104,97,100,98,101,99,100,116,90,83,99,99,102,67,97,106,101,97,105,99,106,81,105,102,101,94,102,97,99,102,92,97,98,93,97,96,108,104,104,103,99,112,105,95,103,93,101,105,111,104,94,79,99,92,105,98,113,96,95,100,117,101,95,104,103,95,119,108,97,80,99,109,98,106,101,109,105,101,112,98,98,106,103,103,97,106,88,108,94,104,97,106,110,113,102,102,102,93,106,106,106,78,107,107,92,91,94,104,88,100,104,86,101,105,99,106,104,84,95,101,96,105,85,93,111,109,98,105,98,88,111,108,100,98,98,104,100,97,102,95,95,105,116,94,117,105,87,104,101,106,110,105,90,95,102,111,100,92,91,117,108,100,83,96,102,104,94,91,107,107,102,101,94,83,95,103,104,103,95,99,95,108,105,96,90,101,86,113,110,109,103,113,116,107,95,79,99,124,109,103,112,92,96,95,96,100,108,98,94,101,100,109,93,103,111,94,102,106,112,99,96,98,104,95,79,96,97,90,101,96,105,97,98,93,105,105,111,99,121,100,111,93,92,105,95,99,100,79,96,112,90,99,104,99,97,112,103,99,105,96,94,103,97,112,94,94,95,93,114,90,98,93,102,107,99,92,97,96,96,102,98,99,104,96,92,108,87,100,99,109,102,102,98,98,104,98,110,96,97,86,92,100,85,112,102,104,98,101,96,73,106,92,95,99,114,99,107,100,103,100,121,76,96,94,121,95,84,99,101,93,99,102,109,116,105,87,94,104,100,93,102,92,97,97,103,117,95,101,106,109,96,89,101,107,102,107,100,98,98,103,120,98,105,105,113,113,101,107,99,111,88,108,135,97,115,92,99,106,92,106,99,100,113,96,104,103,95,93,99,102,88,107,97,97,108,108,95,99,95,99,99,97,106,99,116,102,100,110,98,107,92,110,84,105,104,115,107,104,87,109,96,104,102,106,95,115,110,112,102,109,103,95,94,109,118,101,109,101,99,105,100,85,100,102,113,107,104,101,94,108,106,90,106,95,101,103,109,110,103,104,111,102,106,103,112,94,95,96,101,106,105,99,110,98,111,106,104,100,96,106,102,93,111,100,104,105,108,98,113,103,92,95,106,101,95,107,113,87,102,110,109,97,97,95,77,93,108,106,107,99,95,92,97,102,103,94,97,100,109,106,98,107,119,104,112,99,90,104,94,95,98,101,94,91,99,106,100,102,104,113,106,90,116,109,103,104,98,102,101,95,106,101,105,94,98,92,99,110,104,85,102,97,99,108,115,108,96,98,96,101,94,95,116,98,96,96,94,100,109,105,112,109,99,100,103,101,111,107,104,90,99,108,100,105,90,102,105,95,97,102,110,97,100,102,102,106,112,108,101,102,98,104,91,110,91,102,104,111,102,92,106,108,105,105,103,96,103,109,108,105,103,105,101,101,103,105,92,99,85,103,98,95,98,99,94,96,104,94,87,103,100,102,106,108,99,114,114,108,95,80,98,91,96,93,98,99,97,105,109,101,106,97,92,94,98,95,97,89,98,112,105,103,84,104,84,103,98,109,106,104,96,100,104,107,106,102,109,96,103,98,89,94,102,94,104,104,110,98,92,109,100,105,91,98,105,96,96,117,95,101,106,102,100,90,100,109,92,94,103,95,97,105,90,101,104,99,96,95,95,103,103,99,92,96,101,104,97,91,106,97,98,95,90,98,93,110,106,108,96,107,101,112,110,111,88,110,111,102,100,94,104,101,108,105,107,88,102,104,104,103,100,97,113,103,104,108,99,95,87,97,92,106,107,101,82,104,97,104,97,99,113,104,94,113,106,100,96,98,100,99,103,79,104,96,95,95,97,102,106,92,113,110,109,105,94,101,95,111,83,96,101,99,101,95,113,97,106,91,104,105,111,95,103,123,104,89,95,105,103,101,107,96,110,106,120,108,104,103,102,109,106,88,121,100,97,95,94,103,97,96,94,90,94,97,95,107,117,97,112,96,97,101,96,94,101,92,95,98,99,117,99,97,101,95,113,104,99,93,99,101,109,99,106,94,101,107,100,105,88,110,103,95,100,111,108,101,103,104,103,103,109,104,93,96,92,102,98,105,113,105,112,100,87,105,95,94,103,105,95,104,113,94,115,105,100,90,102,92,115,88,108,97,103,91,92,97,98,97,107,104,122,93,98,99,95,98,108,102,100,102,101,99,106,102,111,95,111,99,105,107,107,87,111,119,87,97,112,97,105,103,107,91,96,92,102,99,105,85,95,97,96,102,110,103,98,71,102,100,111,103,112,103,101,112,106,105,110,90,85,91,106,109,99,104,91,105,107,112,83,106,90,113,106,102,107,99,108,100,97,92,98,108,99,108,87,90,80,107,103,100,94,91,84,96,102,96,96,91,104,106,95,104,103,85,104,102,103,105,100,96,100,90,114,106,98,110,104,100,92,92,115,87,107,90,97,89,94,61,103,87,80,97,93,102,95,93,84,104,108,88,115,99,103,88,103,98,109,104,101,91,98,105,116,100,98,87,99,101,103,100,95,102,95,108,99,103,96,101,88,111,105,101,97,95,93,95,95,73,96,100,92,93,101,105,97,87,102,101,86,105,104,103,92,92,102,99,108,100,96,81,109,106,91,93,88,97,104,99,93,117,110,97,102,106,103,115,111,107,102,97,99,71,99,102,91,93,105,99,108,103,107,95,105,102,100,113,97,96,98,96,95,100,120,103,105,101,100,99,88,102,102,95,109,96,88,103,92,103,92,90,92,95,105,100,91,119,95,99,110,102,98,101,102,90,110,102,97,94,94,99,98,106,105,80,95,107,105,101,106,101,105,103,101,95,96,102,108,87,106,102,107,109,73,102,104,94,93,108,122,110,98,104,106,106,124,100,110,101,109,107,103,102,97,105,97,94,96,103,105,96,110,107,115,104,111,109,107,107,88,95,100,116,93,119,113,106,100,95,123,108,102,96,105,110,106,96,109,111,102,107,85,105,98,102,98,99,102,110,94,103,109,93,98,102,79,108,92,102,100,97,99,98,105,99,110,113,94,105,93,108,105,92,102,96,101,121,104,109,103,96,101,109,95,102,97,94,97,94,91,107,100,99,99,93,104,92,98,100,77,94,94,88,104,116,113,93,100,97,100,88,116,98,104,94,106,109,104,105,97,106,98,102,99,92,100,93,109,91,110,97,94,83,130,118,113,101,109, +701.9657,115,106,93,90,95,103,102,98,83,110,85,90,103,96,95,97,99,87,108,95,94,80,74,89,109,105,100,113,109,98,90,94,87,110,108,109,110,94,77,96,100,110,112,101,93,93,124,107,105,122,105,109,99,104,100,90,93,91,101,88,98,86,105,90,101,112,96,91,102,95,99,100,101,105,82,105,129,95,104,87,89,91,98,104,93,103,94,110,103,94,95,92,109,101,96,109,101,100,102,99,104,105,107,105,88,95,118,81,77,107,90,97,99,94,99,110,105,91,98,109,97,86,108,102,105,115,106,101,110,95,97,106,105,101,104,101,104,108,91,91,103,108,105,96,91,108,95,96,94,90,112,105,117,94,98,99,76,111,99,91,92,91,83,101,99,104,90,97,109,107,105,100,92,102,90,102,94,96,100,103,97,104,97,100,99,104,104,93,86,96,108,104,107,105,94,103,109,86,91,94,102,105,90,98,106,93,96,91,109,100,99,91,104,98,106,100,100,104,91,105,94,97,106,110,108,93,103,100,102,107,95,93,111,98,105,107,105,106,122,84,106,98,112,110,137,90,96,92,101,95,103,96,89,105,93,100,96,107,95,100,96,92,94,93,86,104,99,99,101,87,97,105,88,105,101,94,91,105,99,104,102,87,105,77,105,97,96,107,91,97,98,113,109,89,109,97,105,99,91,100,96,99,104,87,92,99,99,104,93,111,95,114,102,101,93,101,81,99,102,95,101,94,96,95,94,102,94,94,109,102,105,97,84,107,103,97,98,101,91,94,95,98,92,92,103,108,112,105,90,104,97,97,101,108,95,112,104,110,103,103,99,91,105,94,93,102,98,111,99,101,96,90,98,94,113,108,95,95,103,90,110,108,99,109,95,90,110,105,80,106,103,93,112,102,95,89,96,97,99,109,103,86,92,96,101,95,91,103,100,98,87,105,98,107,101,89,98,96,121,92,91,100,107,97,94,87,101,91,90,109,102,92,101,92,95,106,108,89,91,97,104,94,122,122,89,93,94,101,86,83,101,87,101,103,92,101,91,96,109,79,87,99,103,117,98,106,101,91,105,98,93,98,109,111,101,100,105,103,100,99,108,105,109,98,94,100,91,97,112,96,102,92,100,109,100,99,89,95,97,110,124,98,101,102,113,83,96,91,96,95,121,98,98,96,98,98,104,101,110,106,102,94,94,105,100,100,91,98,99,92,99,97,89,94,117,98,83,94,112,99,94,83,90,105,95,74,95,92,105,88,106,97,101,101,100,104,103,110,99,123,98,100,88,96,105,97,95,99,101,96,104,93,100,107,89,103,91,84,86,101,89,95,97,97,94,99,96,99,100,94,106,108,100,97,107,104,94,86,100,95,98,109,102,98,91,101,90,99,79,101,103,93,100,104,102,105,96,94,96,94,101,94,111,88,105,99,102,104,93,101,93,108,91,99,84,113,92,99,105,96,100,99,95,94,90,95,98,99,106,107,97,98,108,98,93,103,104,100,109,104,99,93,94,97,90,94,107,87,111,82,101,101,97,93,95,62,95,102,94,89,103,99,89,90,97,103,105,100,97,79,100,95,94,96,99,99,111,99,107,101,96,110,91,95,91,87,82,101,103,100,96,94,118,100,83,93,109,116,97,100,95,86,104,102,96,80,98,106,97,105,86,94,89,105,95,92,105,100,103,90,106,91,95,105,93,93,101,105,102,93,95,99,102,94,98,95,91,120,96,96,96,101,103,105,95,103,96,94,113,87,103,87,103,98,100,95,85,91,102,100,90,103,95,97,105,93,102,108,94,112,95,105,94,100,92,83,80,104,124,91,95,103,104,101,100,101,105,114,118,101,106,94,99,85,110,104,104,96,113,91,101,111,104,102,95,101,98,109,101,105,103,103,98,95,97,105,90,94,101,101,100,107,115,102,96,90,98,97,90,91,85,79,104,112,101,110,100,105,86,87,91,95,94,100,91,102,94,100,107,109,100,101,100,98,101,95,105,91,91,102,114,99,99,97,108,92,93,114,94,96,91,93,103,96,97,104,94,105,91,113,102,91,101,101,105,90,94,112,91,118,97,110,101,113,103,91,101,88,101,102,108,99,103,91,110,90,88,98,103,97,105,101,106,103,98,101,96,91,100,110,118,81,76,95,98,113,104,109,108,96,99,93,107,92,103,96,92,100,101,91,114,96,110,108,107,100,91,90,104,95,96,99,95,102,95,92,104,97,97,102,122,108,95,95,109,93,97,99,101,94,92,111,95,102,98,114,106,101,100,86,98,102,97,106,125,101,94,102,96,92,92,91,96,109,97,101,90,90,95,101,98,108,95,88,107,63,97,87,90,102,91,97,116,97,103,96,96,96,96,102,90,89,97,99,92,95,101,98,103,108,95,100,99,96,102,107,87,88,104,104,93,99,102,95,106,95,104,99,114,100,92,104,99,90,108,103,92,98,92,97,88,100,101,102,101,103,97,97,107,113,104,103,101,88,108,86,93,102,103,100,84,95,100,91,99,109,97,99,107,94,107,100,96,89,106,81,103,102,89,97,89,110,98,103,77,112,102,107,108,90,102,101,95,106,93,96,102,110,100,101,107,90,96,117,104,91,106,112,109,101,103,112,104,98,101,99,109,98,97,104,96,90,116,113,100,97,109,109,97,106,97,102,94,106,91,112,106,95,113,107,100,98,104,103,91,98,113,99,87,112,106,105,107,111,95,91,95,105,95,96,91,100,110,97,109,103,97,100,105,103,95,101,95,89,102,107,96,112,106,97,91,111,91,94,107,93,92,104,107,112,105,108,103,86,96,98,109,93,102,94,109,101,89,92,91,91,98,100,93,109,95,99,103,89,94,108,93,96,96,107,98,101,107,102,117,104,101,104,118,104,103,113,94,112,99,96,104,95,101,109,100,95,108,121,100,103,93,94,77,97,97,111,97,103,100,101,91,89,110,98,102,100,109,108,99,98,93,108,94,96,92,91,103,109,97,98,94,109,111,107,100,97,105,104,102,116,109,103,95,93,99,86,103,95,98,89,103,111,94,100,100,104,103,104,104,94,82,97,111,100,107,100,94,104,91,100,85,99,96,104,114,104,106,96,115,101,103,104,104,102,102,105,109,78,101,97,95,102,100,94,116,100,95,109,93,103,100,106,65,95,109,89,93,101,111,98,106,86,113,100,104,96,102,111,92,112,106,109,128,110,109,104,109,101,96,95,102,92,83,102,105,92,93,99,100,103,109,102,106,102,95,100,93,103,114,90,96,73,77,101,97,94,91,111,93,105,91,116,87,95,102,104,108,95,95,95,94,101,98,95,101,128,108,92,97,107,95,102,88,100,95,111,98,98,104,105,105,101,96,97,92,108,114,109,97,91,98,94,105,91,93,109,102,101,105,97,96,88,84,99,90,104,103,108,101,91,109,108,101,113,112,92,105,107,104,106,100,94,91,112,104,99,99,98,97,95,109,96,100,103,107,93,101,102,104,101,92,102,100,100,105,106,106,101,105,109,98,107,109,98,91,112,80,113,110,103,107,105,105,102,102,106,98,100,100,111,102,84,111,99,100,109,102,106,99,108,103,113,101,71,115,99,102,96,95,88,103,99,96,104,85,97,107,101,116,83,103,97,104,96,100,101,107,113,110,90,113,110,106,100,104,102,113,67,94,101,92,101,95,94,103,114,102,97,102,109,95,104,106,101,101,98,106,107,105,96,109,95,104,80,102,105,99,104,95,96,114,101,101,91,92,107,113,108,100,96,108,108,107,104,102,99,104,98,98,97,86,104,98,105,88,95,100,110,112,96,100,104,109,86,109,100,92,117,102,104,100,106,97,104,98,104,98,94,95,102,109,103,104,94,92,110,108,108,99,96,105,96,95,120,93,102,93,98,104,94,96,90,113,95,105,95,100,99,82,107,108,95,98,93,95,98,116,106,72,98,97,94,115,101,104,97,100,110,102,81,97,108,104,100,102,101,98,102,108,97,98,112,95,112,105,100,98,95,108,104,96,90,107,98,104,104,91,91,94,98,104,93,94,90,102,86,76,90,98,100,107,109,110,87,109,99,109,99,108,112,99,109,99,108,105,101,99,101,94,110,102,101,104,94,96,96,99,99,105,106,100,101,107,104,88,98,106,123,93,100,109,101,106,88,109,95,93,101,109,93,91,99,106,91,91,107,96,88,95,103,106,79,102,105,113,104,101,105,112,97,96,103,99,101,120,110,99,97,94,101,108,109,92,98,105,101,110,100,97,106,102,108,95,100,115,110,95,97,100,97,101,96,100,103,79,88,112,98,96,100,104,108,101,106,109,101,108,120,95,109,105,100,109,105,112,94,95,93,106,96,117,101,99,109,99,98,100,99,94,99,101,95,106,98,98,103,112,105,92,100,101,101,101,100,109,86,106,95,94,117,104,96,108,106,106,112,101,99,95,98,93,93,91,107,92,105,106,83,87,101,104,99,107,99,91,97,103,104,93,100,98,109,96,101,94,98,89,96,108,103,110,105,93,105,97,114,95,115,113,112,106,107,97,104,105,110,114,113,96,105,105,109,105,75,108,102,104,121,111,95,88,102,107,108,98,107,100,100,105,112,99,98,110,109,107,90,97,104,90,101,102,101,99,102,96,95,103,106,110,97,106,95,97,93,88,99,116,95,103,105,102,89,105,82,94,108,95,101,108,73,100,103,102,93,102,114,90,111,95,104,90,95,105,95,95,113,97,97,93,105,91,113,102,102,99,98,109,113,96,92,99,109,107,93,100,103,102,111,86,92,104,106,104,100,94,89,110,105,106,101,86,106,109,102,95,94,92,102,96,95,108,94,102,105,103,97,98,101,93,96,89,103,113,94,87,111,89,84,102,111,95,99,96,99,112,93,99,92,96,102,111,90,96,110, +702.10699,110,110,93,96,100,102,105,109,111,92,98,96,98,102,97,100,74,105,101,103,92,100,97,100,81,78,129,92,100,103,96,95,91,94,91,101,92,102,108,105,109,109,97,103,104,103,99,110,104,104,107,117,108,99,70,100,88,98,109,105,94,92,102,99,100,104,106,111,108,116,105,110,104,117,104,105,105,107,99,90,108,94,104,106,99,99,98,100,96,106,101,97,130,106,108,98,106,111,106,93,98,110,95,108,105,95,96,93,99,90,98,113,96,90,102,95,103,99,92,106,98,109,92,100,90,93,111,87,109,97,99,118,98,91,111,103,92,90,97,103,113,109,90,95,91,98,106,103,114,104,91,92,107,101,113,104,90,101,97,64,96,101,74,95,100,69,100,89,91,99,107,102,95,97,88,92,97,88,74,109,116,108,92,103,102,101,92,100,104,94,76,100,101,92,98,95,101,100,100,111,114,95,89,106,102,95,100,101,103,105,103,100,95,99,104,98,82,105,94,98,109,103,97,80,99,100,101,100,97,107,93,97,113,107,92,81,102,118,94,104,101,106,113,105,98,104,102,98,104,99,93,105,109,109,101,107,93,90,100,94,95,109,95,90,99,95,92,91,99,105,105,103,98,103,102,106,95,97,96,106,104,95,96,102,96,109,84,98,109,99,101,108,109,111,113,96,100,95,84,101,104,100,106,95,76,101,109,105,110,106,99,105,105,97,103,107,99,94,104,109,105,92,100,109,83,106,92,99,112,90,105,101,91,97,103,101,102,91,98,98,96,102,109,89,108,99,100,106,111,106,100,100,93,98,97,101,76,102,86,98,88,98,104,95,92,97,97,93,102,100,110,97,114,107,95,105,95,105,91,99,100,96,100,96,93,92,91,94,96,91,103,70,83,104,93,106,102,83,94,105,97,114,101,104,98,95,95,109,106,112,102,95,90,102,104,90,91,97,101,88,91,102,94,108,91,91,83,91,98,99,99,98,101,109,98,105,87,104,95,94,98,90,96,100,93,93,105,87,98,104,97,104,99,90,95,103,69,89,90,100,106,92,110,92,103,104,97,104,101,103,74,107,87,96,105,94,96,94,99,101,86,90,104,98,100,96,106,105,118,100,105,95,109,86,109,93,100,97,91,101,95,78,107,104,103,100,90,92,106,101,104,109,91,106,108,91,99,101,89,82,100,109,110,110,106,99,103,109,90,105,88,95,109,90,101,100,109,101,105,109,91,107,95,104,102,95,106,102,98,108,112,106,101,98,92,96,94,102,97,96,101,112,91,100,100,107,104,94,97,95,99,83,76,121,105,100,98,91,84,100,99,84,93,93,95,95,97,86,95,102,91,121,101,100,130,91,93,107,103,105,84,100,100,100,104,100,87,98,82,101,94,91,110,101,117,101,99,98,104,114,109,106,94,90,113,113,101,107,104,100,104,121,93,109,94,96,91,79,99,98,85,109,95,102,94,93,105,93,96,99,87,102,101,116,95,88,108,90,95,102,95,100,100,108,67,102,102,97,101,86,108,125,108,102,105,98,96,106,109,92,67,83,106,103,88,90,96,105,94,92,118,96,87,105,103,104,95,106,115,95,102,107,106,98,93,103,93,100,97,102,85,98,104,95,99,99,100,97,94,86,86,98,106,89,112,95,98,103,98,102,91,102,102,99,95,105,108,100,108,103,109,93,103,89,101,96,94,106,116,99,105,102,95,90,87,101,97,99,98,113,99,97,98,95,111,96,102,105,96,100,96,90,104,97,95,95,101,98,92,90,96,98,115,106,103,91,99,99,100,109,106,103,100,102,105,99,99,104,112,112,71,97,96,103,98,97,101,96,104,106,100,90,101,94,98,104,99,103,105,94,106,97,95,106,103,105,118,98,92,101,105,94,95,96,102,101,110,91,93,95,112,103,99,100,97,91,100,94,92,102,102,105,101,94,107,111,97,105,100,89,92,107,83,107,104,105,97,102,112,115,104,94,102,98,103,97,113,94,87,95,98,97,106,95,100,101,94,97,97,98,102,100,103,102,98,88,95,107,97,103,95,112,102,88,90,101,100,106,105,93,101,114,112,76,109,97,93,100,98,91,97,95,113,105,110,95,105,99,99,92,92,102,91,76,100,94,98,95,114,97,100,99,103,96,101,109,86,101,115,104,97,98,103,70,80,93,103,104,97,102,108,81,94,101,102,114,109,88,102,101,101,82,86,90,104,93,99,93,87,104,100,95,91,99,94,90,91,106,92,96,104,100,106,92,91,92,89,90,100,99,103,99,89,94,103,104,103,109,96,111,102,87,98,106,97,96,97,111,104,100,97,117,105,94,104,94,87,91,104,97,96,104,105,91,98,89,100,105,101,106,105,110,118,88,93,97,98,102,103,100,101,111,83,90,82,99,90,98,106,102,85,102,89,95,96,98,97,104,99,98,92,106,102,89,94,101,94,95,96,97,98,91,93,91,93,106,103,91,102,99,103,95,97,103,94,105,92,87,107,100,101,103,96,122,102,97,105,91,113,94,93,94,103,102,100,98,104,99,89,97,105,96,90,89,111,95,99,95,98,95,106,112,105,96,93,104,88,103,109,96,98,104,88,121,96,107,98,102,95,88,110,99,108,101,95,110,111,101,102,101,97,81,94,99,98,93,106,109,97,100,102,117,101,102,103,92,104,102,100,101,96,101,120,92,102,108,111,106,92,101,91,96,105,108,103,107,104,106,88,113,112,98,100,93,87,115,107,102,104,109,108,85,89,92,108,105,96,104,105,92,87,100,102,99,87,72,90,100,108,84,87,96,85,103,120,87,97,101,101,101,106,99,108,102,102,93,99,98,110,94,104,102,101,106,108,97,98,83,81,108,97,105,99,97,89,107,91,96,105,122,109,104,103,88,96,101,96,91,99,104,94,100,121,96,102,123,95,104,104,103,108,106,104,101,102,105,97,88,110,105,106,103,98,104,103,98,99,102,87,92,105,94,100,104,103,107,96,91,97,100,101,119,97,98,104,99,107,95,81,106,86,86,90,111,109,103,101,102,106,102,99,108,99,95,107,91,92,91,110,106,98,89,109,105,101,100,104,88,104,100,98,111,100,97,100,92,106,100,88,104,97,100,93,98,107,96,100,99,115,104,104,94,101,68,110,96,108,109,98,97,100,96,103,101,99,94,99,97,101,98,102,106,119,91,68,102,106,112,117,86,101,110,97,90,103,80,91,84,92,100,111,101,87,96,96,99,87,92,97,109,112,105,95,105,106,100,99,108,100,104,102,108,91,105,103,100,96,112,114,104,107,97,98,93,99,106,108,99,90,98,92,103,92,101,107,95,106,96,103,91,92,90,94,98,80,97,84,66,102,96,102,102,103,93,100,98,97,97,94,100,102,90,87,115,82,94,114,109,91,105,100,102,104,106,100,119,109,87,99,78,98,95,73,97,101,102,87,102,92,102,94,94,97,98,91,107,109,87,68,100,97,99,96,73,107,95,97,95,99,101,106,96,98,102,100,97,102,115,112,96,100,103,105,96,108,95,108,99,104,104,93,92,101,114,95,108,99,97,104,108,87,90,108,110,94,102,106,99,93,102,102,97,105,108,99,102,97,99,92,115,94,105,105,107,101,99,110,100,103,101,108,97,102,99,103,99,104,98,97,105,79,96,109,109,97,95,103,92,96,109,109,113,96,95,107,92,100,98,97,98,91,86,106,88,104,102,99,98,101,92,102,86,105,94,84,96,88,100,91,107,95,72,100,96,111,104,88,98,100,95,105,102,102,110,95,92,109,94,95,98,107,96,102,102,106,102,104,95,101,117,106,103,110,88,110,105,92,96,95,108,98,111,92,100,89,105,109,102,104,103,105,117,110,111,104,105,99,96,97,90,96,104,92,90,99,81,96,97,94,101,104,96,106,92,95,98,99,97,98,97,94,94,95,98,101,91,87,103,105,84,81,103,100,105,93,99,100,120,98,78,102,101,99,99,101,96,101,104,78,98,103,85,109,104,106,98,98,105,84,95,95,84,104,98,92,98,109,113,87,102,107,98,99,106,102,96,104,98,98,83,94,101,110,102,112,105,106,106,92,95,106,99,96,100,93,104,106,98,104,104,95,97,97,100,87,93,107,102,89,96,105,98,104,90,101,93,96,105,110,87,112,89,106,96,89,113,72,111,100,100,98,105,97,100,99,102,101,112,106,97,93,102,97,90,104,106,92,95,94,99,107,92,91,95,98,108,95,104,104,102,99,94,93,91,101,105,101,110,98,98,94,103,99,108,105,99,101,99,91,106,98,94,84,98,113,105,117,76,91,108,96,91,113,103,99,96,96,111,95,113,106,99,112,102,105,107,99,105,109,93,104,105,107,98,95,96,99,99,100,98,94,101,97,110,104,109,92,112,103,99,95,98,92,109,87,106,96,80,76,103,103,104,95,95,97,87,95,103,113,92,101,105,105,95,102,87,96,100,93,87,93,95,112,99,113,93,116,94,106,100,99,90,107,102,106,98,98,100,98,100,105,90,95,108,96,93,104,102,106,99,102,106,91,89,95,94,104,108,90,97,98,106,104,94,103,95,94,113,97,108,96,73,92,78,101,96,104,97,100,107,87,107,104,96,87,97,94,113,95,100,97,72,95,86,101,93,89,94,104,97,108,89,102,95,99,91,98,89,98,110,96,106,99,90,109,98,91,110,95,91,103,117,107,99,92,100,112,109,108,76,98,100,101,105,95,88,111,101,103,69,113,105,89,91,110,99,109,94,105,92,106,102,102,96,95,94,96,97,106,101,113,96,97,95,93,98,94,89,89,88,70,97,96,99,101,112,98,108,100,104,98,113,95,76,89,91,91,94,108,96,81,105,97,106,101,91,94,109,99,93,104,93,96,92,105,68,101,79,102,90, +702.24835,113,103,96,112,93,104,109,91,114,96,95,90,97,108,89,105,93,87,105,93,88,94,94,103,89,100,103,104,96,96,104,101,110,75,105,99,93,92,101,111,102,96,91,97,103,109,103,82,94,105,92,92,91,97,97,99,103,100,99,99,87,102,99,111,95,105,88,103,91,99,102,100,96,100,97,102,92,105,113,106,96,103,107,102,95,105,99,96,99,100,106,104,106,100,86,90,95,123,99,100,100,94,106,101,91,101,92,90,105,99,111,98,107,94,105,101,102,98,100,96,95,107,104,90,95,91,106,98,106,108,112,106,108,106,95,100,97,89,107,104,106,101,82,96,93,104,114,98,97,102,93,96,109,91,81,95,108,89,99,95,88,99,105,104,100,92,89,85,101,113,108,109,118,104,102,94,103,63,103,97,97,124,100,88,106,100,89,88,100,98,105,101,117,102,97,102,107,110,105,106,102,106,107,106,102,106,101,105,105,111,95,102,93,106,102,95,100,126,108,98,102,96,111,90,109,98,104,95,121,104,83,99,111,102,93,104,98,113,119,108,90,94,107,102,99,96,96,101,100,114,102,105,99,101,85,112,100,96,93,91,84,94,98,101,92,117,100,92,88,97,98,113,113,107,107,96,98,102,95,100,97,100,105,72,103,97,85,101,91,99,98,105,104,102,85,108,100,101,93,108,109,101,96,97,100,99,102,101,114,99,95,105,117,122,101,109,89,94,95,100,87,101,100,106,117,68,94,83,111,109,96,113,99,97,100,98,100,94,103,95,89,95,97,90,91,105,113,100,115,98,100,94,93,97,95,96,105,97,104,110,101,99,105,91,97,91,105,98,110,97,93,100,104,101,100,90,105,87,100,101,96,106,100,109,104,83,83,103,100,108,96,92,87,101,85,113,93,95,99,103,105,99,93,93,94,82,104,110,100,97,101,100,100,89,101,91,83,101,91,109,105,104,92,92,111,98,95,106,95,104,96,106,99,95,100,88,107,100,106,105,109,96,112,100,100,105,86,98,98,111,102,95,96,107,98,95,100,107,84,95,109,97,100,109,99,90,100,91,91,76,111,103,96,95,90,92,96,103,102,107,102,98,107,105,108,96,114,98,98,91,108,103,94,96,91,91,104,104,99,91,107,97,107,110,96,87,86,100,98,109,102,99,121,124,99,111,99,97,102,104,108,105,90,99,100,102,101,93,95,100,92,108,100,104,104,102,102,97,87,113,98,100,93,101,103,109,101,106,101,102,97,101,105,104,90,109,110,92,110,101,100,96,108,103,96,98,98,101,94,107,96,99,99,95,103,107,97,93,79,95,105,104,82,100,120,100,96,104,105,97,107,105,120,100,104,113,116,105,105,79,94,91,105,95,105,100,91,105,81,98,92,91,106,100,97,104,96,75,100,102,90,101,104,107,101,120,100,107,110,99,101,102,101,102,103,104,104,117,99,109,112,115,108,97,86,94,92,93,104,110,104,105,95,97,112,103,98,124,97,102,104,102,106,97,95,91,115,95,111,99,97,80,95,86,92,100,101,99,108,91,101,91,109,100,105,95,104,100,89,120,104,116,89,105,99,100,99,93,108,87,100,106,91,102,110,103,100,111,97,95,97,99,100,99,95,100,84,102,92,105,96,100,100,101,98,91,99,101,92,98,95,102,101,109,102,97,107,89,98,105,93,96,91,94,105,99,102,103,88,100,104,106,86,106,95,94,95,106,103,78,100,105,110,107,85,101,87,106,91,100,112,88,105,92,101,101,99,87,95,96,99,67,103,106,121,98,95,115,91,102,108,103,104,104,102,105,101,97,93,86,104,98,94,95,108,99,92,106,90,95,108,102,90,105,117,116,104,102,107,90,122,105,102,117,98,115,98,95,103,101,112,102,121,93,85,112,105,99,102,102,85,105,99,99,103,98,86,102,105,89,105,86,89,99,93,103,97,97,108,105,85,108,106,101,96,96,99,114,103,97,97,94,106,103,100,100,111,95,99,98,114,92,89,97,85,98,98,94,97,106,106,97,101,112,110,87,114,96,92,95,91,109,97,104,94,95,94,92,97,101,96,102,95,101,108,91,103,101,94,103,107,95,107,103,120,102,89,102,96,101,95,96,91,105,83,107,93,107,112,90,98,94,91,100,97,88,101,103,103,102,111,97,109,107,97,108,96,109,97,104,103,106,99,97,98,95,97,95,98,79,95,102,95,97,107,109,86,103,97,97,90,99,103,87,112,98,106,91,118,100,90,102,97,94,99,110,96,104,96,100,101,101,97,101,99,99,100,109,106,102,95,113,103,116,91,91,94,105,97,84,111,97,107,98,102,105,104,93,90,103,115,101,87,104,103,92,99,100,98,89,95,102,91,99,101,93,101,101,110,99,99,102,112,103,89,106,104,112,93,95,97,112,100,98,107,83,112,99,105,90,95,103,92,100,110,99,99,100,101,105,97,106,77,100,94,92,99,93,95,106,103,99,99,94,107,97,112,101,106,111,79,107,95,103,88,91,96,105,91,103,104,104,108,97,93,93,100,104,93,96,94,113,101,99,98,103,104,104,112,92,107,106,116,118,74,98,105,101,92,117,108,108,103,103,112,86,97,92,103,94,99,99,113,87,100,115,100,95,111,94,109,89,99,97,96,113,108,95,104,91,104,87,101,93,96,105,98,93,92,97,84,99,88,99,104,109,109,107,96,108,103,98,100,105,96,99,102,90,98,101,104,107,101,110,112,95,104,109,102,100,112,105,99,105,101,106,101,104,97,102,97,105,109,93,100,80,92,111,95,102,106,96,97,100,103,102,107,99,101,106,91,98,113,103,98,108,101,117,106,98,107,97,98,115,105,101,102,96,107,99,93,102,108,104,104,107,101,105,101,98,102,98,99,96,97,103,95,103,84,107,104,104,89,95,97,102,88,104,89,101,105,96,95,108,104,112,108,100,96,102,98,75,106,101,102,79,100,109,97,112,101,103,94,94,98,99,109,102,100,109,100,103,97,108,101,96,111,102,99,100,102,95,100,108,96,107,105,103,100,100,76,109,109,102,87,100,101,109,101,99,104,89,94,91,106,94,102,105,103,91,95,103,92,106,96,100,104,83,91,126,99,124,111,104,103,97,99,93,99,99,94,93,103,100,117,104,108,98,90,97,91,98,98,96,99,103,92,102,100,105,72,105,91,92,98,96,92,98,99,102,95,117,91,95,107,107,72,98,110,110,95,87,95,103,95,95,109,95,103,103,101,100,95,104,100,100,118,101,99,102,95,95,106,96,99,107,93,87,109,120,115,92,104,105,107,97,101,100,107,96,97,108,97,87,130,101,103,106,94,103,86,91,84,105,96,92,102,100,104,92,100,99,97,105,103,102,107,109,78,96,100,105,101,97,107,92,112,102,98,95,103,102,110,100,107,101,99,95,109,99,89,108,110,104,96,94,103,109,80,100,95,98,90,110,105,109,106,108,102,97,99,99,107,93,96,104,91,94,95,97,118,99,98,90,96,112,104,87,107,96,108,101,105,112,110,94,99,95,119,109,96,91,112,101,106,102,94,93,100,110,101,114,115,117,109,104,93,75,89,102,91,87,80,92,91,104,110,100,99,95,99,116,108,95,92,101,113,113,107,102,103,99,104,113,91,100,87,94,95,95,101,84,103,115,99,97,96,93,106,101,103,108,96,106,92,98,99,94,93,66,113,95,101,105,105,104,102,103,100,93,88,102,104,87,94,98,94,99,101,95,93,99,96,95,104,99,99,109,104,91,86,95,100,100,109,101,103,98,106,95,99,103,98,102,102,96,109,107,97,103,107,80,101,91,90,106,92,95,99,109,92,103,102,93,98,108,95,96,107,97,112,100,110,111,116,99,98,87,98,92,98,97,108,103,95,112,90,106,95,95,101,107,102,98,96,107,94,93,99,114,98,92,110,105,93,101,91,100,97,96,91,99,86,102,100,91,98,106,94,108,88,102,107,106,91,96,95,95,91,117,112,102,93,106,102,94,109,100,91,103,96,91,97,101,101,98,102,102,101,89,99,98,102,87,113,98,91,110,116,95,106,104,93,95,91,91,94,125,102,102,97,106,101,87,114,103,96,109,93,105,67,108,99,109,98,110,101,103,104,99,95,114,88,99,103,94,100,96,121,100,102,99,96,92,96,87,117,101,87,90,109,95,103,98,119,104,100,102,107,106,101,98,106,100,97,91,96,86,65,104,106,101,105,100,104,103,109,101,107,87,105,100,99,101,106,110,95,110,104,92,89,94,88,99,117,99,100,99,115,100,103,102,105,100,105,100,104,106,101,109,97,98,120,107,98,112,96,100,105,111,105,88,90,94,94,101,103,103,115,99,107,125,104,92,94,108,107,101,87,94,97,104,94,108,95,103,102,108,105,88,100,91,99,98,97,106,100,100,98,109,93,81,94,95,100,97,99,102,91,101,92,114,101,102,104,93,101,97,107,100,105,88,92,96,98,101,90,97,100,92,99,106,108,105,103,93,114,94,103,95,87,91,96,93,95,102,107,101,104,106,110,95,107,99,88,100,99,97,103,121,100,103,107,96,98,96,109,104,100,93,94,97,99,104,102,111,104,95,104,105,97,95,91,113,116,116,98,110,109,103,98,97,100,96,98,87,109,105,109,95,93,95,108,105,97,95,94,106,86,95,85,67,113,95,102,100,99,109,102,103,105,113,94,109,116,84,92,110,87,101,109,109,103,113,97,96,108,108,92,90,128,93,95,117,104,71,105,105,93,116,102,98,102,98,72,107,95,97,100,98,101,99,98,103,109,120,104,68,96,116,98,112,97,92,106,109,103,90,109,103,100,103,88,107,115,112,91,90,113,80,99,116,104,86,108,108,106,98,105,99,116,105,101,103,96,108,76,92,93,98, +702.38971,114,113,107,117,110,94,100,79,99,95,87,75,99,98,104,102,95,96,107,96,87,95,104,98,103,94,104,99,99,100,105,96,96,105,104,107,110,90,110,108,104,117,100,109,94,105,96,102,83,99,99,108,106,97,103,90,90,94,88,91,95,85,105,101,102,105,101,104,102,101,85,110,95,100,137,101,105,96,105,98,101,105,106,102,101,97,105,107,106,106,101,101,98,94,103,98,107,105,105,91,110,102,103,110,92,100,103,64,93,95,109,97,98,91,95,92,89,91,107,102,97,104,107,106,105,109,111,95,92,117,99,110,98,96,105,93,102,99,103,100,100,96,98,95,100,94,106,112,97,95,93,91,105,92,100,97,102,111,112,95,110,103,109,104,111,115,98,97,107,92,112,107,91,97,91,105,96,97,103,96,98,105,103,115,98,104,90,87,122,98,98,98,107,115,98,88,100,103,98,91,102,100,91,102,94,99,98,100,104,111,100,87,99,84,117,91,122,107,110,98,97,103,103,95,100,107,104,98,100,100,101,120,101,92,98,104,98,103,101,97,100,98,112,100,95,117,98,114,105,95,108,88,107,100,100,100,89,110,98,107,103,96,100,103,87,100,107,100,88,100,100,104,107,80,111,94,107,100,102,94,86,108,94,102,106,100,102,103,96,97,102,118,92,111,108,103,103,96,98,96,102,91,90,108,99,111,112,75,110,113,105,83,91,108,100,92,104,90,94,100,99,94,99,99,101,102,101,93,94,107,105,103,100,108,88,89,98,93,93,89,90,97,99,104,97,93,94,102,96,102,91,105,116,83,100,100,106,99,90,114,102,81,90,92,98,108,99,97,106,90,110,108,110,101,100,93,97,103,108,101,107,91,91,94,100,98,73,97,105,103,112,99,104,114,101,81,101,104,101,95,111,105,107,98,90,99,92,96,90,94,109,108,95,95,98,87,100,116,99,94,97,94,86,93,105,104,72,96,93,108,88,102,112,96,102,109,96,95,101,101,101,110,95,105,104,96,108,88,117,102,89,90,87,87,95,96,100,89,98,98,97,100,94,102,112,105,92,98,92,96,101,96,71,98,97,94,109,95,103,103,94,102,102,103,109,91,106,109,110,94,81,104,101,98,107,108,97,100,104,103,104,95,99,91,108,102,98,103,102,103,103,100,100,102,94,105,104,92,100,98,105,100,94,105,98,85,108,104,103,92,99,103,96,94,96,99,100,108,100,99,100,104,105,98,105,104,97,102,103,91,102,105,103,94,95,98,90,110,96,102,101,101,100,110,101,91,105,87,93,100,96,96,99,104,104,102,99,104,86,98,104,99,101,113,95,99,101,98,101,107,92,100,89,101,109,100,96,101,100,111,97,98,102,97,98,94,100,89,95,97,86,96,106,108,113,105,108,110,95,95,84,101,102,91,99,100,97,97,87,103,97,95,100,104,106,111,95,100,97,109,101,99,108,111,106,105,100,97,95,107,96,91,100,94,91,86,101,98,113,102,105,95,107,110,105,89,95,92,96,83,102,100,107,106,96,102,106,83,87,114,105,97,98,111,106,99,101,113,105,107,114,107,101,104,96,97,101,107,91,92,94,95,109,106,105,104,97,106,95,97,93,91,95,109,97,100,99,100,102,101,90,98,114,101,103,100,91,108,94,106,104,98,83,101,87,95,103,90,117,101,104,104,97,108,103,98,90,105,105,111,112,98,93,102,103,97,104,107,97,93,99,112,90,101,92,94,83,112,106,110,86,102,102,104,105,105,108,97,98,94,110,117,100,98,97,88,109,109,102,100,110,116,101,105,85,104,77,114,98,117,96,96,105,104,110,100,95,91,97,93,105,110,100,85,99,105,124,99,91,98,106,91,108,107,92,100,98,109,102,119,100,102,101,98,106,108,97,103,105,103,102,105,96,106,99,88,105,103,102,83,105,105,92,107,101,104,99,103,101,101,94,104,100,100,93,65,95,102,105,99,100,106,110,105,116,112,100,103,100,99,98,105,91,95,102,96,106,105,104,90,98,106,112,98,98,83,96,107,116,104,108,106,106,99,94,99,99,106,100,104,112,110,118,109,104,96,95,110,94,93,99,100,104,96,97,71,92,104,92,110,90,102,96,98,90,101,86,109,114,101,97,96,100,103,88,101,99,92,105,111,99,97,105,99,99,92,111,102,96,98,98,103,113,87,98,97,99,98,98,108,109,98,95,107,94,120,107,91,100,98,101,93,104,93,106,102,92,101,99,93,101,95,110,97,92,89,99,98,101,95,100,97,101,105,93,98,99,95,97,99,89,93,97,82,65,110,120,97,106,93,112,104,95,98,93,101,92,100,105,99,106,98,107,89,111,101,98,112,101,95,88,101,91,102,95,100,95,89,100,110,104,99,109,99,99,91,99,108,93,93,92,110,105,96,110,101,97,99,92,86,98,105,106,109,106,108,107,83,99,112,103,99,84,99,100,98,101,96,102,99,98,88,104,96,97,100,98,110,98,91,100,96,109,93,88,97,96,107,116,91,103,95,104,94,98,102,91,97,92,110,101,91,89,102,105,110,103,95,94,84,113,107,96,93,95,98,98,104,90,105,105,87,97,102,93,100,91,94,112,100,99,93,113,101,108,94,94,93,128,132,108,102,100,93,102,99,94,109,84,98,110,93,107,99,104,108,106,106,102,92,102,100,88,101,106,103,110,91,104,103,96,98,105,102,97,100,95,102,105,93,100,106,110,100,80,98,100,101,87,101,99,98,102,97,98,103,97,110,101,98,104,109,98,112,107,85,101,102,102,116,102,106,88,97,99,107,95,100,105,103,106,88,110,98,102,107,104,109,98,106,102,98,92,110,110,104,102,102,98,95,96,100,93,104,111,107,108,102,89,105,92,106,100,96,97,93,117,96,104,107,95,116,101,79,98,106,96,105,95,115,112,91,91,108,117,100,100,100,103,93,96,105,90,110,97,91,103,99,87,101,97,98,102,103,92,100,101,110,111,103,105,89,99,94,98,103,100,97,99,106,98,100,105,109,105,100,99,99,99,98,103,106,104,85,98,95,98,99,107,99,90,103,93,99,96,89,88,101,98,90,101,104,106,112,117,94,102,105,98,101,96,98,88,95,109,108,102,88,89,98,106,95,99,72,99,102,111,109,106,95,90,91,104,103,93,105,96,108,107,113,106,99,90,87,92,99,99,98,101,105,84,99,104,101,105,96,91,101,104,113,98,100,96,90,101,78,103,101,104,98,95,105,107,112,110,110,100,107,102,99,95,111,91,101,116,103,98,107,100,98,85,99,106,103,104,109,96,96,106,101,94,105,102,96,105,95,98,132,112,87,90,102,94,105,109,99,109,103,94,101,94,101,93,137,102,98,100,87,97,87,87,89,103,98,105,101,91,102,107,96,102,106,99,102,91,93,112,111,93,103,81,87,91,92,100,105,92,99,87,95,104,91,103,99,102,101,104,98,103,128,97,104,98,98,89,104,99,88,105,104,110,102,91,105,99,96,99,89,102,97,95,108,104,110,84,112,106,112,99,94,91,94,99,92,97,103,111,100,95,110,103,92,99,103,101,113,99,95,104,102,97,104,89,103,101,91,95,99,102,94,97,97,96,96,101,100,107,106,92,92,98,92,98,103,111,103,99,94,99,108,97,94,86,101,88,106,89,113,121,96,105,106,106,95,93,100,98,102,104,109,92,108,99,102,118,94,95,95,105,105,97,103,99,91,105,90,90,91,96,78,107,96,95,94,96,98,101,101,113,106,107,101,102,91,89,106,97,98,107,88,101,108,94,117,102,95,94,96,95,101,106,104,114,79,106,99,117,102,87,103,94,101,98,113,98,116,97,94,102,105,96,101,110,101,95,108,103,97,87,102,86,101,102,93,104,102,94,95,99,97,102,98,95,113,103,95,96,107,101,77,114,105,108,102,101,100,95,101,97,97,91,92,88,109,87,92,101,101,97,108,97,97,97,95,100,95,100,102,104,97,100,111,97,113,83,93,102,104,101,80,100,105,113,105,109,97,109,94,103,91,107,101,100,91,98,117,101,102,109,87,109,66,92,105,95,93,98,99,108,112,95,99,97,99,96,106,94,99,79,106,104,97,104,122,111,104,97,98,107,110,92,91,87,105,105,107,90,100,102,95,102,91,95,94,83,85,107,102,106,87,110,101,93,110,112,107,112,100,98,103,99,102,100,97,94,102,93,99,98,103,121,90,99,111,94,106,96,84,111,91,85,106,112,96,99,88,96,113,106,98,114,127,99,95,81,103,100,92,99,109,106,98,102,101,113,135,105,100,96,102,102,103,124,119,96,98,94,102,103,105,88,103,107,105,97,85,92,113,97,104,110,104,94,117,123,106,93,105,99,106,100,112,92,98,95,101,98,103,111,100,115,90,90,100,111,109,101,108,97,96,89,111,85,95,100,96,95,93,89,102,97,96,109,92,90,87,98,103,98,102,99,96,103,97,104,98,98,97,94,101,104,97,101,106,99,106,94,98,99,106,89,101,100,94,102,91,95,113,92,95,98,87,100,94,103,98,98,103,93,99,109,103,95,101,96,108,101,104,93,88,91,94,87,112,115,98,92,100,94,100,95,83,109,102,106,93,101,109,100,94,103,100,95,87,100,96,113,95,106,112,95,103,114,92,88,100,105,87,106,91,98,94,92,97,90,101,103,95,93,96,96,109,93,123,109,102,98,104,103,89,98,98,96,96,88,100,105,100,120,104,97,100,96,85,90,100,100,101,103,109,90,106,102,110,92,113,98,88,98,112,101,129,97,103,99,109,79,98,99,113,94,103,106,101,89,103,93,102,106,95,114,105,92,103,95,91,91,98,110,85,105,89,104,99,108,79,106,93,103,107,107,108,89,94,97,102,101,109,98,95, +702.53101,86,94,90,100,96,95,87,98,104,87,89,102,102,96,112,84,101,97,93,104,96,98,87,111,101,79,95,104,102,97,99,114,102,95,104,104,80,94,93,105,94,95,106,112,96,105,98,102,106,97,89,108,101,104,96,102,99,93,100,99,100,93,90,112,94,98,98,101,100,106,99,108,99,106,91,108,85,98,97,107,105,103,102,93,109,108,99,96,111,89,93,101,90,106,96,99,95,94,114,102,109,119,88,95,101,93,95,102,100,100,104,101,105,102,95,92,98,97,103,98,89,100,96,100,90,110,113,107,109,95,91,103,93,94,95,96,106,108,92,93,98,98,106,91,94,67,113,95,95,87,103,77,102,97,96,96,97,95,101,111,106,105,104,104,104,85,90,91,98,96,98,101,107,106,103,88,96,100,105,106,103,106,97,96,98,88,93,89,112,107,101,102,92,92,92,92,93,92,101,97,96,104,94,93,106,99,95,93,90,108,107,102,89,100,102,97,90,106,91,95,112,102,107,98,104,115,95,105,102,102,103,84,102,99,105,111,96,104,117,97,103,109,103,94,105,109,98,106,100,101,113,110,98,110,91,112,99,93,91,108,88,96,109,104,90,102,97,105,98,96,97,91,106,92,79,98,110,106,94,109,97,94,99,119,90,106,112,90,91,104,99,98,107,109,103,107,102,91,94,103,105,82,99,99,87,97,100,97,95,104,100,109,100,95,106,104,100,105,100,94,100,91,93,109,102,90,97,92,115,97,110,102,108,106,100,103,100,94,95,102,97,99,91,103,94,108,96,104,109,94,70,83,108,104,115,110,110,98,97,92,99,107,101,96,104,97,103,90,95,104,100,89,100,100,108,99,96,102,93,104,105,102,101,119,103,113,104,102,85,101,107,94,97,109,91,97,93,94,100,99,105,87,95,113,99,96,114,101,101,77,79,100,98,91,97,108,97,94,102,95,99,103,97,101,103,97,101,83,107,95,105,101,91,88,99,101,94,102,95,106,121,97,111,95,103,86,101,101,98,100,99,101,84,111,100,100,100,87,103,97,100,104,99,102,108,97,110,89,74,93,110,101,69,100,103,96,108,104,96,100,106,94,100,89,88,85,101,96,95,87,95,110,101,103,83,98,97,107,100,99,107,91,102,98,109,93,110,86,102,99,113,109,109,105,98,109,95,82,101,94,100,93,101,105,104,98,66,103,92,104,97,108,88,83,109,97,95,102,107,99,86,112,96,96,95,83,111,97,95,107,81,111,110,107,95,93,107,94,97,96,80,102,100,99,95,93,104,90,110,101,91,99,103,106,92,98,93,92,94,99,91,91,95,105,95,112,97,105,117,104,92,82,104,86,96,106,93,103,98,108,83,98,83,96,110,90,102,91,100,106,100,92,99,93,103,100,108,94,96,93,96,100,105,94,79,91,106,97,112,110,105,101,109,97,86,98,104,94,95,74,100,94,105,93,105,89,94,91,95,100,106,105,99,106,101,109,99,104,113,94,94,97,93,113,91,102,99,98,100,95,100,103,110,114,112,103,98,94,98,95,104,103,98,103,88,92,109,88,101,95,93,104,106,105,94,105,95,89,99,97,94,95,97,95,100,77,109,99,93,95,98,96,106,106,104,101,104,100,98,93,101,96,103,82,99,98,101,90,98,108,105,102,87,97,93,100,101,95,108,100,101,97,107,106,109,101,96,108,97,109,100,96,87,101,62,97,104,90,101,109,102,93,89,98,95,110,90,96,103,86,108,103,102,95,95,103,97,106,98,92,99,98,101,99,93,80,103,96,107,106,99,113,129,102,97,113,89,101,100,104,105,94,103,99,98,107,106,93,100,109,105,83,96,108,100,104,108,86,100,105,99,106,102,96,110,97,107,89,98,97,103,92,109,104,100,99,101,102,109,106,98,95,110,93,101,89,98,82,91,84,93,92,100,100,106,102,75,104,108,95,87,98,91,110,96,92,102,109,105,117,86,103,99,105,102,100,101,103,97,88,88,96,112,106,95,103,97,96,104,74,98,103,110,91,92,95,97,97,92,96,101,109,104,102,114,99,106,112,88,103,105,112,80,102,99,101,87,96,107,94,101,103,110,80,89,103,95,96,100,98,108,97,117,92,93,98,87,93,101,101,101,105,98,98,86,92,104,87,88,106,92,76,109,95,110,91,109,109,89,113,109,105,96,111,103,96,91,97,89,91,86,92,103,95,95,96,103,92,103,95,100,104,95,102,129,108,99,111,100,100,98,96,96,98,79,105,105,106,116,85,126,107,95,89,109,103,108,99,89,98,93,116,103,99,94,98,91,100,97,98,105,104,106,101,97,105,108,95,100,97,96,99,116,95,112,93,92,104,98,99,99,113,99,104,105,109,108,101,100,101,100,106,108,108,87,103,99,96,99,97,96,105,113,96,101,110,90,90,115,108,111,92,107,93,94,95,91,96,99,109,104,98,113,100,119,97,73,76,105,100,93,99,102,87,103,97,87,100,103,100,98,112,96,92,97,109,94,97,106,103,98,98,90,112,94,94,99,97,97,97,107,101,97,100,99,101,89,97,106,99,95,110,102,83,100,106,113,102,95,96,93,95,98,106,114,113,102,104,91,90,111,95,106,102,95,97,101,105,95,97,81,103,101,100,99,95,99,98,98,101,93,109,119,110,110,100,119,106,99,100,105,107,88,109,105,99,105,100,91,97,105,101,102,96,100,79,117,100,106,96,93,115,106,88,104,99,113,113,95,102,102,86,98,109,96,99,94,109,100,99,92,102,94,109,93,101,96,106,110,108,91,101,101,97,114,104,98,98,110,105,104,100,98,100,103,102,108,104,106,113,100,113,97,97,94,101,101,113,87,105,97,95,109,103,101,104,97,95,104,90,100,100,104,91,104,97,105,96,101,95,109,96,104,92,98,99,100,109,102,104,96,102,102,91,109,100,72,92,98,112,102,107,97,111,100,97,100,97,98,100,95,101,97,93,94,102,109,94,100,101,117,101,112,99,103,93,102,97,110,94,96,90,101,95,108,87,91,98,92,99,106,101,107,92,98,102,112,97,106,98,95,98,99,105,90,99,97,94,104,99,92,95,115,92,116,105,99,95,98,94,115,105,100,105,103,96,104,107,108,99,102,95,115,115,97,99,109,106,104,102,105,96,73,84,96,94,95,122,98,100,104,104,94,89,96,100,97,112,99,111,90,96,101,89,92,107,103,117,97,98,103,93,87,96,103,96,91,93,111,99,109,105,102,101,117,100,114,99,105,106,114,106,89,93,97,100,101,88,102,102,95,92,113,104,99,98,109,75,97,86,108,102,99,111,98,97,105,85,86,96,101,104,107,115,95,105,106,100,86,111,101,100,100,97,101,100,102,108,106,87,105,103,94,106,103,101,96,98,100,114,105,105,106,103,107,102,101,97,102,106,95,93,107,95,95,87,94,107,102,96,113,100,105,91,103,101,101,81,99,96,97,89,105,99,94,98,108,104,112,94,91,100,100,104,102,98,104,98,96,91,106,92,94,107,101,105,101,112,88,115,89,99,105,108,102,99,92,102,107,95,109,91,107,100,109,110,106,102,98,96,124,89,117,96,105,102,91,100,100,91,85,100,98,98,97,98,107,88,108,100,95,98,105,98,104,104,91,94,102,110,125,104,108,106,107,93,98,107,97,103,104,115,99,97,95,109,100,113,121,81,102,87,106,107,105,96,103,106,109,98,99,102,113,94,101,111,103,114,110,103,92,104,97,99,93,98,85,106,79,92,107,93,111,95,110,97,107,107,95,113,87,100,89,90,91,99,112,117,107,87,95,101,84,103,97,90,95,103,101,109,111,100,95,92,104,109,105,77,117,106,103,90,102,97,101,93,98,97,103,92,100,86,97,111,97,96,106,104,87,102,105,98,106,101,98,95,103,102,103,94,106,97,92,91,111,102,98,101,109,90,102,91,98,105,89,95,101,95,102,100,93,113,96,98,101,91,96,99,103,90,100,97,92,99,100,108,99,95,97,93,103,107,102,95,105,89,103,98,104,93,100,112,79,96,87,101,98,101,97,93,80,95,98,105,111,99,100,89,102,88,100,99,104,94,96,115,97,99,94,94,104,98,102,100,94,111,96,95,94,86,102,99,105,92,106,98,103,95,100,97,107,102,88,97,94,88,101,95,104,92,106,101,104,104,95,98,97,106,107,83,97,77,103,101,104,107,94,102,101,103,89,87,102,95,94,110,103,96,103,100,97,85,107,89,100,93,93,90,113,97,118,110,124,103,104,102,92,96,89,110,99,94,100,98,88,100,103,100,109,102,101,97,93,87,103,102,99,107,92,109,113,99,92,96,108,97,107,92,98,108,90,95,97,106,91,101,91,104,98,90,102,100,101,105,91,100,97,109,98,105,84,98,98,102,95,104,98,96,105,113,105,110,103,107,92,100,98,99,101,90,96,106,97,99,89,87,107,98,102,109,89,98,96,105,80,97,113,99,102,93,98,97,108,108,102,103,117,101,102,104,99,105,99,103,94,92,97,92,95,104,108,110,105,101,107,99,89,98,99,100,103,113,109,107,100,114,106,95,88,106,101,93,96,99,91,105,109,93,104,102,112,103,94,107,102,95,100,105,99,101,104,100,99,83,97,89,103,114,117,89,92,84,116,88,100,100,102,95,91,106,105,110,105,98,103,88,104,118,102,77,99,98,94,97,102,100,96,98,110,102,95,103,108,104,98,106,103,105,94,106,103,91,109,135,99,102,98,112,121,100,94,98,112,97,108,103,82,94,94,98,102,95,114,102,98,95,102,105,94,95,97,107,97,99,107,97,102,109,93,102,97,105,101,100,93,101,98,102,102,103,98,88,97,94,91,101,104,108,110,108,101,105,90,108,111,97,106,93,101,86, +702.67236,97,99,88,94,106,101,77,100,80,95,94,95,89,100,110,101,66,96,99,87,103,105,101,102,106,114,101,100,97,101,101,98,103,105,99,106,99,89,99,89,97,95,104,98,101,117,117,95,101,106,94,103,116,103,98,95,105,97,90,97,115,94,91,91,105,76,96,87,99,100,110,109,116,90,96,91,105,112,103,100,90,98,90,99,100,108,97,99,101,97,100,105,97,98,103,105,100,97,92,120,116,100,101,93,107,102,95,95,102,98,105,100,106,104,104,94,103,109,99,100,102,98,103,98,107,91,103,87,108,111,97,98,95,100,101,92,112,99,101,116,105,106,93,102,100,92,101,101,85,98,96,109,105,102,101,97,97,98,108,101,96,86,102,109,94,74,91,88,108,95,103,109,80,92,101,101,104,97,88,108,100,103,100,105,103,106,96,100,110,91,105,100,97,99,98,98,90,96,100,96,83,94,94,92,102,114,102,99,105,106,101,98,106,103,100,92,98,101,84,87,99,108,95,92,92,95,117,104,114,103,109,97,110,95,90,103,103,99,98,104,95,124,103,105,95,98,108,110,101,100,92,107,104,103,108,109,109,110,77,103,85,99,104,94,112,112,93,105,94,101,98,94,106,110,99,106,100,104,89,99,90,94,108,89,90,102,97,93,97,106,109,105,103,99,113,109,93,101,99,93,88,115,58,101,94,102,83,103,86,101,95,105,100,102,98,99,87,100,100,110,96,86,98,102,106,101,88,91,100,106,105,88,87,107,105,105,113,84,101,103,91,100,94,110,98,108,105,102,99,99,101,92,100,108,93,77,87,69,109,107,107,102,95,92,91,99,101,102,104,104,102,91,95,95,93,101,98,94,100,100,97,105,90,109,113,104,103,100,92,96,102,102,96,104,104,100,92,104,100,106,99,95,106,96,91,89,95,101,104,99,100,102,98,95,97,103,133,91,100,102,108,92,104,104,98,90,101,106,105,111,78,110,95,62,103,92,101,102,92,99,100,103,96,104,91,103,94,92,101,104,100,102,97,99,109,87,91,99,99,95,89,92,110,102,88,115,110,100,102,108,92,103,106,95,118,93,109,107,105,113,95,98,100,92,105,92,93,91,96,115,110,109,107,100,94,111,105,99,99,103,110,95,101,93,94,104,100,105,120,96,91,81,106,108,90,97,92,103,94,99,97,103,105,120,112,100,101,106,84,106,83,108,99,94,105,103,109,83,96,101,107,101,96,97,103,95,97,99,96,96,113,118,103,106,92,109,99,118,97,95,79,94,100,96,104,108,108,100,116,98,102,96,103,95,105,105,96,86,95,101,101,87,100,85,93,102,87,90,90,94,102,99,78,90,107,92,96,103,101,90,87,104,111,98,98,91,94,100,99,96,89,98,94,103,103,87,109,95,91,98,90,106,99,93,104,106,106,93,86,96,101,105,89,98,107,105,109,100,109,104,99,92,104,81,89,102,101,83,94,105,92,97,101,89,100,104,104,94,98,97,103,96,110,113,98,96,122,92,105,109,108,95,99,84,90,94,110,109,117,118,107,93,108,102,91,95,102,99,100,102,105,99,113,98,105,99,106,109,92,88,95,92,95,99,87,102,106,112,96,95,103,103,89,85,104,90,106,100,103,94,103,100,95,87,102,106,105,101,101,96,101,99,124,110,105,105,95,89,105,87,98,90,95,109,91,96,98,97,104,100,103,99,103,95,100,99,97,92,103,104,92,95,94,109,96,91,77,94,94,89,102,103,110,101,111,105,98,90,106,102,101,107,103,102,100,97,97,104,100,90,96,99,91,116,116,94,103,106,106,101,95,89,91,107,95,105,105,95,109,95,104,87,98,110,99,100,96,94,106,95,101,100,99,106,76,102,108,92,113,100,110,91,85,105,82,95,109,92,103,92,99,92,105,96,90,104,92,99,110,107,102,91,101,104,85,85,103,96,94,101,103,98,98,101,104,99,104,108,104,105,90,101,101,96,111,95,85,97,93,98,95,99,100,125,105,107,89,107,113,77,98,92,98,96,109,104,108,113,99,91,104,88,102,94,108,100,100,94,94,100,98,107,96,98,112,108,101,107,95,121,97,98,95,97,105,93,102,105,105,101,106,93,103,79,95,95,95,104,94,96,109,103,89,118,98,102,104,97,78,102,133,101,100,110,100,94,103,100,101,109,91,106,102,101,110,105,106,100,103,79,98,112,100,104,97,100,97,98,101,95,93,99,104,108,98,116,113,113,95,97,95,103,83,99,119,99,96,103,97,104,108,101,105,96,100,108,109,103,90,103,91,103,109,103,95,102,106,110,90,91,111,109,104,99,110,95,102,83,108,96,103,95,105,95,103,94,105,100,102,105,97,101,101,112,84,96,100,102,102,102,96,112,104,103,92,100,83,111,71,104,90,101,96,97,110,103,96,108,102,91,96,109,95,100,101,99,105,101,83,108,107,105,93,108,99,97,95,100,104,109,95,115,95,84,98,90,73,106,97,118,106,94,95,103,87,103,85,83,104,109,97,112,100,109,94,77,100,104,78,103,100,95,101,101,107,96,93,105,103,96,113,104,106,102,103,108,116,94,108,95,100,101,93,108,92,106,106,100,95,102,98,93,104,98,111,106,112,91,119,108,97,100,99,94,100,104,90,94,108,93,102,100,113,104,108,119,105,97,100,92,93,104,90,102,94,117,100,110,101,108,95,108,121,97,86,101,102,98,83,100,94,110,102,95,91,86,103,107,98,109,123,99,96,101,113,105,106,116,97,96,107,109,108,108,108,85,100,105,130,105,100,101,98,102,107,122,105,102,98,115,114,101,99,98,95,91,80,95,94,106,107,99,91,120,90,99,101,102,110,100,107,105,96,101,98,99,108,99,101,98,108,88,100,98,103,106,121,91,93,91,99,101,103,104,92,107,96,95,107,103,98,100,108,110,97,110,103,101,98,103,104,92,95,108,109,90,113,105,101,108,98,100,103,90,94,113,102,81,83,87,120,104,104,90,86,97,108,98,94,108,104,100,93,92,95,97,118,89,120,105,88,77,88,93,100,91,103,93,98,93,101,104,99,96,95,95,100,102,101,105,109,127,102,92,108,88,111,105,100,104,100,106,97,103,109,91,97,97,99,108,74,97,101,100,82,95,75,105,97,103,104,95,100,104,99,92,103,98,108,99,103,108,129,114,94,109,109,100,92,99,91,92,92,113,87,88,95,83,64,88,99,104,102,88,106,99,100,99,112,111,99,101,108,110,97,99,101,104,99,97,85,104,103,94,97,110,102,99,109,98,98,79,100,94,95,92,99,107,106,85,89,109,119,99,121,101,114,96,83,98,102,105,97,107,99,108,104,99,97,99,87,102,104,100,101,102,100,103,96,90,95,105,108,98,98,104,93,103,105,98,94,95,110,116,107,109,110,106,96,79,92,107,111,97,94,103,112,107,98,105,99,105,101,104,119,106,87,105,100,100,91,87,104,101,106,102,109,100,95,101,110,107,98,105,98,98,104,100,109,103,99,96,98,97,91,112,87,107,75,105,87,94,106,95,95,103,97,112,93,93,106,102,94,108,99,86,106,107,96,99,108,102,98,103,105,102,107,104,103,99,94,98,96,95,102,101,114,103,107,106,102,106,108,95,99,106,103,92,103,114,110,92,113,99,102,99,104,113,99,85,112,112,100,98,85,79,124,103,96,93,100,100,105,109,97,97,96,102,94,102,90,100,99,104,106,102,94,95,98,93,96,110,104,101,93,105,91,104,99,103,110,102,104,103,100,110,98,99,98,106,97,107,94,110,98,110,100,102,84,107,98,101,95,82,103,99,102,98,98,109,94,91,101,106,94,113,135,116,106,104,69,102,101,104,97,96,107,110,98,105,101,100,103,102,99,95,95,80,101,104,87,65,111,91,99,107,109,87,99,108,130,83,101,101,91,131,102,110,87,98,95,117,94,97,96,101,103,117,95,99,101,112,102,102,92,92,88,102,96,102,98,101,103,85,98,90,105,93,108,97,105,109,112,106,100,108,100,106,99,104,102,106,88,98,106,98,100,103,93,88,105,91,105,99,105,103,104,98,107,109,98,104,99,110,103,98,108,94,91,104,96,93,104,104,91,109,102,101,108,91,114,90,93,101,103,111,95,107,99,99,107,92,97,89,101,104,95,106,76,99,104,78,109,96,104,110,103,92,88,89,103,95,95,101,108,105,105,98,92,103,99,99,89,104,95,102,113,102,100,87,108,96,97,90,102,103,91,112,99,100,106,88,101,122,103,98,99,87,90,109,102,102,107,96,95,91,106,101,98,102,105,93,110,96,110,92,109,87,91,79,95,84,95,102,103,91,99,104,106,113,113,114,112,100,95,106,110,108,98,107,103,87,95,104,94,102,93,104,87,67,106,96,109,91,110,95,91,96,106,101,95,114,107,98,102,107,102,101,102,99,91,112,98,86,99,94,97,91,103,100,90,87,106,104,105,91,107,111,90,100,105,99,104,91,97,108,106,107,105,96,98,101,108,92,101,106,98,105,105,98,92,96,112,100,94,109,99,102,99,111,98,118,109,108,105,109,96,95,87,96,91,101,125,107,100,117,102,96,97,121,100,105,104,99,105,97,106,116,96,94,110,96,107,103,105,103,98,105,98,97,101,92,114,110,99,91,90,98,101,93,106,107,112,100,88,103,100,104,100,93,100,95,99,99,103,105,109,79,97,98,101,108,93,120,113,99,97,99,98,98,93,96,104,104,100,100,102,105,96,94,92,102,110,101,96,104,103,98,92,104,98,88,83,92,109,100,98,99,105,104,113,94,104,102,93,123,108,106,106,100,98,102,92,117,100,98,99,98,105,100,93,100,94,96,93,95,96,102,92,105,103,104,89,105,111,118,112,105,87,112, +702.81366,109,103,90,91,91,105,101,106,93,93,84,101,99,95,83,82,109,129,104,110,109,91,100,104,105,100,85,111,91,111,97,102,117,101,103,95,106,94,92,99,87,105,107,105,106,105,109,95,89,104,101,90,97,102,105,98,97,100,103,93,99,101,97,70,99,94,102,95,98,78,87,102,104,94,96,90,88,107,99,95,105,92,89,99,105,119,104,110,97,77,109,104,101,98,102,101,96,119,110,94,105,113,86,99,96,108,101,102,97,97,105,113,101,102,100,89,97,99,109,106,97,91,95,101,101,99,113,104,113,97,73,107,84,110,116,91,107,102,90,96,93,103,113,104,98,107,87,93,93,95,100,92,101,89,94,94,96,92,116,101,94,128,107,91,105,101,109,107,98,122,101,100,99,102,104,94,97,95,101,102,96,109,93,110,95,90,109,85,105,84,91,102,102,95,93,91,97,107,100,100,98,95,98,105,82,88,99,96,87,75,91,102,105,93,106,101,102,95,88,105,106,102,92,102,95,101,92,100,110,95,88,98,90,100,92,101,109,90,101,88,93,101,120,107,95,97,94,103,114,92,93,99,102,95,99,82,112,93,96,94,102,106,92,101,91,98,96,103,105,106,104,95,110,105,97,106,103,98,105,128,104,114,99,97,98,86,98,99,89,105,92,85,101,100,96,112,83,96,95,88,93,91,64,105,80,97,106,100,96,102,98,95,93,107,95,90,105,96,111,90,101,84,92,105,98,95,96,94,95,108,91,86,102,101,94,104,102,94,81,99,92,91,92,95,90,99,106,101,95,99,109,95,109,99,105,95,101,95,107,95,105,100,100,87,94,108,85,109,100,105,97,103,106,109,101,100,101,98,108,95,108,95,92,81,100,97,94,98,95,92,104,86,77,100,99,92,96,86,101,88,100,108,96,93,100,82,101,109,105,96,87,95,110,93,100,86,100,109,102,88,92,111,95,96,95,93,99,96,97,100,97,92,104,98,96,93,87,98,111,101,88,108,92,95,89,103,104,100,102,97,112,97,94,93,98,94,106,104,104,100,90,101,97,94,99,96,102,101,102,88,94,99,94,98,103,102,98,98,106,95,93,98,115,105,94,105,100,110,104,89,91,91,75,96,92,115,95,101,98,108,111,105,105,101,101,92,78,89,94,107,99,107,100,96,90,105,100,94,88,97,98,89,97,116,81,98,101,116,103,101,103,102,94,96,100,96,88,95,107,104,103,106,95,102,95,80,89,104,108,104,96,104,105,96,96,92,92,78,93,94,94,98,93,91,99,108,101,105,103,88,88,100,92,95,98,97,97,97,99,101,96,89,100,100,97,107,103,117,104,105,101,101,97,98,106,111,101,73,105,95,96,86,108,93,94,97,98,89,90,83,98,105,95,95,112,106,102,102,94,100,105,99,92,105,83,99,94,100,97,98,101,92,99,96,101,105,106,94,96,98,110,102,96,108,95,96,103,96,99,110,89,100,69,97,80,108,115,99,100,99,83,105,96,92,79,94,99,90,106,116,103,93,109,102,81,92,106,115,105,101,98,96,98,80,98,98,97,102,95,87,104,94,85,101,95,104,107,104,107,89,95,91,96,93,93,92,91,72,96,96,99,98,101,109,114,93,101,95,105,101,88,103,101,99,91,98,104,95,107,101,104,79,100,96,91,91,95,105,106,90,101,92,105,101,88,97,91,102,92,84,98,101,115,99,98,103,106,110,112,89,94,101,89,99,104,95,87,93,96,83,101,108,90,116,101,104,100,94,86,103,96,93,99,111,97,118,100,103,91,98,96,99,104,102,73,96,99,100,99,110,100,97,103,100,87,105,107,107,98,89,103,96,93,87,94,106,105,106,111,105,92,97,107,97,98,121,104,104,110,100,107,117,101,94,93,104,103,98,99,102,103,100,97,96,97,96,90,95,79,110,105,98,106,95,95,101,104,101,103,104,97,98,104,113,97,94,98,97,105,116,98,108,96,108,101,98,80,88,96,91,98,98,103,102,96,97,97,98,102,97,94,101,90,91,107,95,100,119,98,86,89,108,105,99,102,92,102,97,103,91,92,94,97,93,96,96,93,102,92,91,95,91,97,102,96,97,80,90,102,99,91,96,103,114,111,109,97,97,100,109,103,84,93,102,90,90,95,89,109,94,107,103,93,105,99,91,104,104,71,105,100,101,103,92,112,110,100,89,99,96,102,97,100,92,80,93,105,107,99,107,94,94,100,122,108,109,108,101,90,98,105,90,109,95,97,112,96,77,94,100,90,100,97,92,117,103,106,100,91,110,92,106,89,113,99,102,102,69,84,105,108,98,102,77,97,109,95,92,125,100,86,100,106,92,106,96,102,107,106,100,109,104,100,99,96,96,95,73,91,84,105,101,109,98,108,107,88,102,96,96,95,105,101,106,88,97,93,106,103,98,85,94,101,89,105,108,100,94,100,104,95,101,86,102,102,93,105,100,104,87,91,104,105,99,104,103,100,102,96,98,110,100,94,121,98,109,87,108,91,96,94,110,102,110,98,91,74,99,91,68,104,101,95,98,95,93,94,95,95,107,99,102,95,94,94,86,96,95,95,86,103,88,105,99,103,109,106,99,100,97,82,107,114,94,91,104,100,112,100,108,114,92,108,101,103,100,108,97,98,93,107,105,105,102,102,103,94,99,97,99,97,101,89,113,92,96,109,98,107,103,100,92,109,98,114,106,102,101,107,109,103,102,106,113,103,100,100,90,99,109,94,93,102,120,114,104,109,112,102,116,93,100,102,85,107,97,101,101,88,99,107,111,101,95,110,114,97,110,94,93,103,106,102,90,89,98,106,114,106,108,95,97,103,105,102,89,97,102,110,108,104,134,108,119,111,98,104,106,103,106,98,91,95,100,95,93,93,97,104,115,101,94,106,102,105,100,103,100,99,102,99,114,107,91,90,102,103,87,87,76,98,105,95,93,102,103,103,107,102,98,108,96,100,100,102,101,96,109,101,107,105,85,92,96,104,100,102,101,98,105,90,90,100,100,102,103,104,102,98,107,101,103,100,121,101,102,102,107,90,101,100,94,100,124,100,100,104,109,91,108,102,104,101,85,88,105,107,104,102,102,105,89,106,105,100,90,98,100,99,107,110,103,121,97,99,97,101,98,98,99,101,63,93,100,85,106,96,96,103,121,110,93,98,100,105,107,95,107,84,116,105,105,93,87,90,81,101,97,104,105,100,95,99,98,100,94,96,103,106,92,100,113,103,111,124,91,103,104,109,102,99,95,95,100,96,101,113,108,111,99,103,101,121,98,93,113,101,87,111,101,113,101,115,108,110,108,101,80,112,97,93,107,69,108,95,101,92,113,112,102,104,98,99,96,119,99,102,91,91,103,96,101,103,115,97,109,105,95,94,108,97,99,99,109,104,101,93,100,102,102,101,95,100,107,91,100,109,97,94,94,105,98,101,91,116,108,112,106,92,98,112,111,100,97,94,101,103,101,111,101,96,99,83,125,88,98,80,94,91,99,103,97,97,108,100,111,103,94,101,105,88,101,93,98,109,104,93,94,96,99,104,100,101,101,112,105,99,111,105,98,96,95,110,98,101,102,100,109,75,103,95,99,90,106,96,91,102,97,95,94,93,105,105,97,94,103,92,97,101,106,109,105,94,99,112,110,91,105,99,97,103,109,104,111,91,93,114,109,105,111,98,95,100,104,104,93,103,105,96,98,112,94,96,94,108,96,100,103,99,105,104,94,96,101,103,110,98,106,110,106,101,95,101,103,102,96,96,97,104,105,99,106,83,98,104,104,103,93,100,104,107,112,101,96,111,109,96,104,103,113,93,101,99,104,76,105,107,94,106,99,93,117,113,105,115,107,98,99,113,97,102,94,95,77,111,98,113,94,110,102,97,105,106,105,95,105,112,94,100,90,90,96,83,95,90,103,106,101,108,90,95,107,90,109,99,107,100,96,106,98,99,109,101,94,89,91,102,104,96,102,103,103,85,93,103,111,100,103,115,85,109,101,94,100,105,102,108,102,98,92,109,99,95,101,98,109,102,103,92,91,111,92,103,92,100,97,102,98,93,106,105,99,95,106,106,108,100,111,95,121,95,98,87,87,93,100,101,83,102,98,98,104,94,98,118,90,96,108,98,108,104,110,94,103,95,93,92,95,103,94,99,114,109,114,93,106,107,111,104,106,112,106,111,104,102,97,110,98,100,99,106,103,106,103,95,102,108,114,105,95,96,107,105,96,99,91,92,109,104,99,95,94,99,100,98,99,75,94,95,107,91,102,107,95,93,105,101,102,109,106,108,111,93,94,100,109,95,109,94,97,97,96,102,106,106,104,94,113,103,95,120,107,115,106,96,107,99,110,106,109,90,105,104,104,104,103,115,107,102,105,89,121,102,110,95,98,91,98,85,97,111,102,108,105,90,98,98,85,101,101,106,110,126,96,125,99,96,107,86,94,102,110,98,96,107,108,90,96,98,111,90,96,80,102,98,93,108,100,102,95,99,96,103,103,112,98,108,102,111,107,92,89,100,115,130,115,89,97,111,102,124,109,102,100,98,73,106,111,94,102,90,89,110,96,95,101,120,96,88,94,111,96,94,100,110,76,105,104,122,96,109,95,111,122,120,110,104,106,102,95,85,94,103,105,90,94,111,103,115,98,97,88,97,95,97,102,64,100,102,102,100,100,106,108,98,103,108,102,110,86,95,97,87,102,114,125,97,100,102,95,135,108,102,107,99,98,105,95,105,99,98,102,112,95,95,109,93,109,97,101,106,112,99,106,102,76,98,108,102,99,99,92,104,99,84,110,95,109,102,109,115,112,101,91,103,103,94,98,97,104,99,113,107,106,110,104,99,109,99,83,116,103,97,91,108,101,125,81,105,83, +702.95502,91,92,90,91,101,99,99,106,105,107,102,100,92,99,110,97,96,113,83,109,109,93,96,114,104,103,95,109,101,104,107,79,93,100,102,102,85,100,87,107,86,89,102,105,95,103,101,92,96,104,95,102,103,84,91,65,98,101,95,103,98,103,106,98,105,97,101,108,99,114,107,95,104,96,99,107,110,100,100,100,96,99,86,98,87,103,102,92,98,97,92,111,92,102,95,98,104,93,104,107,98,94,88,105,99,90,102,96,109,103,98,100,100,107,91,91,102,107,103,105,101,100,105,111,114,95,108,97,109,101,76,97,91,111,101,115,105,103,111,91,107,96,96,96,103,95,99,95,87,105,102,104,100,100,89,109,89,92,91,103,91,98,104,113,96,99,102,110,90,111,106,108,103,94,100,90,96,102,98,110,91,122,97,103,96,105,103,92,102,99,83,116,102,102,95,104,110,100,110,113,102,106,99,97,98,92,93,99,99,107,93,96,92,90,95,93,97,91,82,104,102,105,97,98,95,102,103,94,98,112,85,98,99,89,104,110,102,95,103,106,103,107,106,95,92,95,96,103,99,91,114,100,103,99,104,117,96,106,97,107,111,109,102,92,82,102,103,102,106,102,91,104,96,90,108,96,100,114,105,105,86,104,100,98,103,94,96,100,113,102,91,109,105,104,119,102,98,84,102,101,94,100,103,95,98,98,101,106,103,105,101,117,88,105,103,99,90,94,109,93,106,92,111,95,95,96,97,98,124,96,93,100,101,112,93,96,103,86,92,111,94,94,87,108,112,99,67,96,105,101,116,87,105,109,106,100,101,95,92,97,110,109,105,100,83,98,104,91,92,103,110,101,96,90,94,102,103,116,100,101,98,108,105,102,110,90,92,105,122,103,106,91,101,105,93,100,102,103,100,104,81,101,91,100,86,101,99,94,88,95,94,90,107,102,95,90,104,100,91,91,100,98,98,96,77,98,110,96,95,114,93,98,95,93,94,135,96,100,111,100,94,109,95,106,90,101,95,92,102,104,88,107,102,99,95,105,102,99,102,100,105,92,95,99,102,102,99,96,122,97,120,99,90,102,88,87,93,105,103,109,99,116,102,95,103,100,103,111,105,100,102,114,100,105,93,100,86,91,107,99,84,97,94,97,96,106,112,94,102,114,111,105,99,104,107,96,88,98,90,92,102,105,106,97,104,106,110,100,101,107,101,112,93,93,105,118,95,102,108,98,96,100,97,92,113,105,98,109,99,113,100,108,95,103,112,96,102,106,106,111,103,94,109,97,88,92,96,92,104,101,101,80,95,111,109,75,96,94,101,98,106,89,97,96,101,105,108,111,110,103,95,106,93,112,109,97,87,105,102,115,100,71,100,105,105,89,95,94,92,101,95,94,86,100,87,96,103,92,101,104,99,100,105,94,99,92,104,99,86,121,110,103,97,103,96,122,91,99,100,104,110,105,98,97,94,95,89,92,96,95,91,116,105,95,108,99,97,114,103,93,106,105,105,102,87,96,98,68,97,92,99,110,110,99,109,109,99,95,97,94,107,103,80,123,96,88,99,93,105,97,91,88,88,104,87,83,106,107,99,100,92,96,102,120,98,110,101,105,102,96,107,109,100,97,107,99,93,96,108,101,108,100,98,109,84,89,110,100,102,96,101,112,99,106,101,93,100,94,96,94,79,90,102,90,103,101,83,101,91,110,105,94,97,99,102,124,103,96,104,85,86,94,97,91,98,105,95,108,105,92,92,95,91,101,105,95,90,100,103,95,104,101,103,104,106,111,102,103,92,106,95,100,110,108,70,105,93,104,94,102,97,90,98,106,101,98,108,96,99,87,110,100,97,100,94,100,110,103,94,103,104,104,111,105,101,101,95,106,100,105,97,103,107,132,92,99,107,103,92,101,103,107,106,101,106,90,108,87,104,91,95,98,103,101,97,105,94,85,97,102,99,101,88,91,102,97,93,97,115,75,101,110,118,97,95,106,102,104,107,111,106,96,84,104,102,97,99,107,111,99,106,90,93,76,103,89,100,108,97,99,107,101,104,102,96,114,78,88,108,93,100,100,91,99,92,106,99,97,91,107,92,97,93,97,108,101,92,92,109,100,75,97,102,99,73,100,100,103,97,95,106,101,102,98,105,101,108,114,94,100,102,101,110,98,106,108,95,86,104,103,103,109,96,94,108,89,92,104,106,95,98,109,100,93,99,96,107,93,109,114,97,106,105,84,109,95,95,91,96,103,111,102,95,105,94,100,78,99,102,99,99,100,93,95,94,99,96,100,98,98,102,106,96,107,93,107,99,120,102,100,104,97,100,90,97,94,96,86,83,91,105,99,92,94,96,114,112,109,105,94,101,105,90,99,100,99,101,99,116,103,87,94,105,105,89,86,109,100,103,92,93,99,92,100,99,92,65,98,122,102,99,104,95,107,105,102,85,106,100,76,93,123,93,92,97,102,99,97,105,94,96,93,106,94,98,113,106,106,107,99,100,100,99,107,94,115,95,61,100,96,105,94,103,97,107,91,90,104,100,100,101,103,99,109,105,93,104,97,95,104,112,105,102,102,97,97,96,107,102,103,96,103,101,87,104,95,106,91,95,93,112,101,102,96,107,104,104,105,99,95,92,79,92,89,110,107,97,100,107,94,98,99,97,102,97,85,92,95,106,100,103,94,102,98,108,101,74,91,97,108,101,87,103,99,104,103,106,87,101,101,96,100,97,97,105,99,99,103,98,101,75,95,92,98,107,143,104,99,96,99,85,102,97,94,94,106,87,102,110,99,97,107,113,100,102,99,100,105,102,92,95,99,102,101,100,94,101,103,113,103,97,92,99,103,113,107,94,94,98,97,97,98,105,100,97,103,95,100,99,99,90,98,106,112,101,91,102,101,87,95,77,109,96,92,98,110,104,106,107,97,98,99,103,103,107,99,101,93,99,118,109,101,106,99,89,97,113,97,107,88,107,91,101,98,102,100,95,113,114,109,104,103,98,102,94,94,99,102,96,93,98,106,100,104,95,105,107,87,87,109,105,98,98,133,106,110,104,104,96,101,94,105,103,111,85,108,92,104,92,95,100,108,97,97,104,99,112,109,86,101,104,96,98,99,104,95,107,116,89,103,107,98,98,100,75,95,110,92,107,102,104,99,89,98,108,109,112,90,102,103,103,93,96,100,102,98,97,102,109,102,110,105,108,91,109,97,108,106,92,107,108,83,104,91,104,100,101,104,111,88,96,98,96,108,100,96,111,104,115,91,102,99,103,96,87,83,95,104,94,95,103,104,108,101,111,116,95,106,73,103,111,99,100,104,97,87,104,95,97,93,99,97,89,108,101,105,96,100,100,103,94,96,96,98,99,107,103,96,96,112,105,90,100,99,105,93,89,96,93,94,99,109,96,108,100,113,88,102,98,108,94,100,101,88,80,92,98,105,96,93,126,94,99,104,110,101,96,94,101,101,101,83,104,107,106,86,96,108,98,104,112,101,102,101,97,93,102,113,63,109,99,98,99,97,91,98,75,88,95,104,99,102,112,99,104,99,103,118,100,113,106,99,91,106,113,103,107,87,101,103,106,101,92,104,96,101,101,112,97,91,101,101,92,112,101,97,106,85,111,100,116,100,113,112,86,104,112,78,101,110,94,105,112,91,96,121,101,105,94,99,98,108,92,109,97,98,101,92,99,99,95,89,92,107,98,97,105,95,101,102,99,95,88,100,98,102,100,104,108,100,102,91,106,96,94,98,87,97,102,96,88,96,100,97,106,101,101,95,94,94,115,99,103,92,90,98,95,106,93,101,100,91,105,103,97,97,99,103,103,100,102,94,101,102,97,102,109,100,99,103,102,101,97,100,90,99,104,99,103,96,93,95,96,82,94,99,96,94,94,93,105,99,99,71,103,95,116,87,97,91,94,94,99,98,95,105,100,92,123,115,95,104,96,112,110,91,103,106,97,108,97,98,87,104,94,97,95,101,92,116,105,107,103,109,103,95,91,94,92,102,101,103,99,90,108,103,104,81,107,105,100,101,92,116,108,101,100,96,93,105,95,92,92,99,95,95,98,89,106,109,109,102,103,105,104,108,94,99,93,103,100,102,103,98,95,91,102,94,97,94,92,94,90,92,95,110,104,98,98,123,106,105,106,99,87,106,109,111,93,104,117,83,102,93,101,100,95,111,99,104,88,102,99,106,101,102,92,104,119,105,101,99,92,117,92,102,113,99,100,91,98,105,107,107,90,110,102,97,99,104,100,100,99,104,101,96,106,99,98,98,91,128,102,102,97,102,92,103,95,100,98,101,112,104,117,106,104,104,98,102,98,108,112,104,101,98,104,92,111,102,106,95,108,107,96,104,111,95,94,88,92,97,94,88,104,97,99,102,106,96,104,91,119,106,91,102,89,109,104,106,109,98,91,92,99,99,94,105,96,98,92,101,108,98,92,88,111,94,115,95,86,94,120,93,108,102,99,102,95,97,96,98,101,109,102,97,99,85,103,92,88,103,103,85,102,99,98,114,106,71,99,87,96,93,96,106,107,97,93,105,91,90,107,93,99,108,115,93,101,101,98,97,103,98,94,101,97,98,77,104,112,92,101,115,103,106,100,100,103,111,107,65,91,99,110,92,108,111,101,91,95,98,102,107,90,102,87,103,90,101,96,93,109,90,109,98,108,108,105,98,111,96,118,106,99,92,88,102,103,100,104,92,87,113,102,94,104,94,115,100,85,105,91,94,97,91,97,107,99,100,96,108,103,103,108,99,97,101,109,103,107,102,113,96,107,103,102,103,103,102,106,100,91,96,115,99,85,103,95,107,98,103,94,93,99,99,81,101,108,85,105,104,88,98,117,91,93,103,97,104,120,98,116,104,102,95,99,99,100,89, +703.09637,118,94,82,100,102,104,101,101,113,93,97,94,95,84,105,105,103,97,100,94,101,105,102,107,104,96,101,97,102,97,95,105,85,91,107,104,101,98,81,82,96,90,98,87,107,108,92,95,93,99,87,105,90,101,104,94,97,83,117,108,94,103,91,98,100,121,97,109,101,108,96,102,92,109,101,100,98,104,89,100,107,96,97,99,95,101,85,97,101,90,102,108,93,98,96,101,89,101,96,104,93,106,106,98,106,101,102,105,78,86,96,103,110,92,91,97,111,102,103,106,108,92,102,104,99,102,109,95,95,108,104,92,94,104,95,103,90,101,95,97,115,99,85,94,103,92,107,91,121,89,103,101,105,87,98,105,99,101,103,95,92,105,108,94,105,109,94,99,107,93,91,98,101,99,86,87,93,99,102,101,95,104,108,100,115,102,106,87,86,103,103,91,102,103,95,83,97,96,102,98,95,109,113,98,113,110,101,94,122,104,98,99,99,106,95,96,94,112,88,96,100,99,99,103,100,105,100,108,93,103,97,107,101,85,99,106,109,107,84,93,103,77,105,107,117,95,101,108,106,99,102,104,97,102,133,108,107,100,90,110,91,85,106,90,99,95,109,100,106,97,99,96,87,71,103,97,109,107,98,91,103,109,98,108,92,118,104,99,102,104,103,95,100,105,96,101,82,94,110,105,97,100,109,93,89,108,94,110,96,106,91,104,102,108,111,106,96,98,95,109,99,104,112,107,92,107,112,91,105,95,103,96,95,109,107,100,102,108,111,82,96,96,106,97,91,90,97,105,92,103,109,110,95,100,97,102,94,98,113,99,97,98,86,100,93,106,98,105,106,101,103,100,103,100,108,94,92,98,106,99,102,92,88,106,89,108,105,117,108,98,131,100,90,90,106,99,110,102,101,84,110,94,94,108,104,88,100,111,95,100,96,98,97,109,108,102,100,101,107,103,97,110,114,120,107,84,82,102,109,97,87,97,98,116,106,109,104,100,86,104,92,104,92,94,84,113,90,95,96,105,92,101,101,102,100,109,104,91,104,105,90,101,105,108,117,98,100,99,97,99,99,94,88,104,105,86,103,115,99,102,96,104,113,96,104,91,104,104,99,104,83,94,101,96,98,98,100,87,88,97,98,91,100,112,91,113,99,126,102,91,95,95,106,99,102,101,106,96,112,106,105,99,90,103,106,92,107,106,97,100,88,107,95,99,106,100,110,102,93,96,90,100,92,105,106,96,100,94,96,98,97,117,105,91,101,101,97,79,108,96,99,96,106,104,98,99,90,95,112,92,124,97,92,107,101,100,99,90,104,93,93,103,98,93,109,101,109,103,97,95,110,103,108,98,101,102,81,105,104,110,88,95,102,131,95,97,111,91,98,94,97,99,107,106,105,107,99,90,103,100,95,99,109,102,98,94,91,103,98,91,107,75,104,106,98,107,111,79,90,99,106,95,104,92,88,94,115,90,94,110,94,90,85,113,99,98,99,102,97,95,105,94,102,115,97,99,103,95,102,84,103,97,104,103,92,95,100,108,106,99,91,89,91,99,93,94,94,94,94,95,98,101,101,103,77,101,108,94,93,91,108,101,99,106,105,102,99,100,85,99,91,105,101,104,94,92,97,91,109,100,97,88,97,93,93,96,107,100,105,109,99,100,109,97,95,87,81,98,97,100,100,89,102,108,103,93,97,109,99,94,96,104,96,100,103,93,70,90,94,97,101,87,92,109,100,97,88,105,95,86,89,99,95,105,99,68,100,69,98,102,96,94,94,92,92,92,98,107,81,103,101,105,99,69,97,98,95,103,104,112,113,94,96,100,97,101,98,97,101,88,100,115,103,99,112,98,95,95,105,108,107,102,110,90,103,104,108,101,103,99,111,98,118,97,97,99,111,102,105,80,106,109,100,99,98,101,95,102,101,90,102,101,95,82,86,106,100,95,96,94,101,110,106,105,107,106,101,100,102,100,110,97,97,100,107,94,110,87,94,109,96,102,107,97,96,99,93,100,99,108,114,99,99,101,99,95,103,88,100,95,100,102,106,99,95,95,83,93,83,102,111,99,106,94,102,101,99,98,71,107,105,107,99,103,105,93,97,97,109,107,104,113,115,106,98,98,91,105,98,91,88,88,106,98,95,90,95,101,104,117,89,94,109,90,103,94,94,101,96,95,107,105,96,94,101,90,96,92,100,98,91,102,108,102,96,116,114,93,94,114,92,100,105,89,97,99,102,101,97,101,104,90,106,104,105,97,101,91,98,95,98,114,87,96,98,105,103,110,94,97,92,109,107,101,89,105,90,108,118,90,97,86,94,87,84,90,95,86,105,88,100,99,107,98,99,106,107,124,97,92,91,98,93,119,92,98,99,92,104,97,95,104,100,99,95,98,104,95,91,99,83,100,99,101,113,94,96,93,111,107,96,110,103,105,109,96,104,91,100,99,102,113,93,107,99,106,92,99,117,95,101,96,103,95,96,97,94,109,95,106,98,87,98,117,100,105,90,97,101,86,99,94,99,99,97,96,88,101,96,108,92,109,93,104,93,103,104,102,101,109,105,104,117,102,92,99,106,97,98,97,103,93,99,113,94,98,94,98,86,95,112,100,119,96,102,95,103,96,103,101,105,98,105,97,95,98,100,123,116,101,108,95,85,96,104,107,90,108,104,86,111,87,102,108,99,100,107,100,100,120,108,105,107,111,90,102,109,95,100,114,95,103,99,116,104,105,102,96,95,91,117,102,92,91,96,107,92,111,97,100,104,95,96,97,96,109,91,104,112,99,99,95,102,96,100,92,102,91,110,116,102,102,108,110,92,96,84,101,105,103,107,97,109,99,97,95,90,98,102,99,104,100,108,99,97,94,73,81,96,106,106,104,101,101,101,92,110,96,116,101,100,98,106,98,104,103,98,110,98,105,105,109,92,96,97,117,91,104,94,96,104,108,91,99,98,98,104,110,83,95,100,92,93,89,91,97,88,105,106,92,102,99,96,99,109,112,110,101,101,110,98,104,98,109,107,110,87,91,98,102,91,81,103,97,104,98,108,103,102,100,100,100,102,100,98,94,91,110,97,100,109,103,87,107,116,92,103,96,104,97,116,103,90,102,99,95,105,96,67,100,111,94,91,105,93,85,90,100,99,97,110,89,87,98,103,95,106,100,94,93,103,108,105,102,102,102,110,105,110,96,107,108,88,101,101,83,96,93,101,100,103,94,89,122,93,97,97,105,114,108,108,94,111,101,98,104,125,95,104,105,116,85,92,107,99,98,79,103,106,99,103,85,99,99,100,106,106,98,98,99,115,102,98,92,91,99,94,104,100,89,94,104,96,102,93,98,105,96,85,103,86,95,110,98,107,105,87,80,93,98,96,106,91,100,96,100,100,98,108,91,98,107,100,79,101,84,99,97,103,101,93,95,93,107,84,103,99,94,101,96,102,102,106,103,85,97,95,105,93,99,110,97,87,99,96,98,101,94,114,102,94,128,89,105,100,92,105,101,99,94,99,97,101,95,100,101,83,90,96,103,100,98,96,91,90,103,101,92,98,98,104,88,117,111,99,92,98,96,95,96,109,99,109,105,97,107,105,102,94,105,100,98,94,106,94,91,117,107,102,102,91,111,104,101,102,99,100,91,93,98,83,94,102,101,97,94,103,102,106,68,91,94,100,94,87,104,106,94,95,98,109,97,91,106,104,101,108,109,99,99,97,96,98,101,108,92,101,98,101,100,102,97,102,99,106,92,106,97,94,96,90,106,109,108,103,93,96,105,95,101,99,104,105,105,101,92,96,102,91,96,94,113,112,96,90,82,96,90,92,102,91,104,112,104,105,108,99,98,119,105,104,98,93,95,96,102,103,109,103,92,94,103,98,96,102,94,94,109,100,96,93,92,95,97,101,105,88,104,105,99,102,96,94,108,93,108,104,95,93,105,92,109,92,108,94,109,94,103,85,100,104,109,101,105,83,87,92,97,109,98,94,112,103,106,102,90,98,109,97,103,97,97,100,107,92,101,105,102,104,83,121,112,77,87,102,87,101,105,99,92,101,99,107,105,88,105,97,98,111,98,107,99,107,99,97,97,102,101,96,97,103,104,96,102,96,100,115,96,93,94,92,97,102,93,93,102,98,104,93,97,100,86,98,99,104,104,94,93,102,103,104,109,94,102,112,97,100,111,105,105,105,90,107,95,92,106,102,93,106,83,96,97,99,111,92,83,101,103,93,91,95,98,91,107,97,100,94,109,108,88,100,92,110,107,93,101,109,99,89,114,99,92,101,100,98,108,94,88,88,103,111,106,100,101,88,105,99,105,119,102,95,76,107,106,104,94,110,113,99,101,100,102,109,98,79,110,104,96,100,105,103,100,102,111,101,97,109,94,89,105,105,101,107,98,102,110,98,98,95,106,107,99,70,78,109,96,101,96,100,98,108,105,91,91,101,101,95,102,108,111,106,101,87,108,99,108,108,95,105,99,91,91,99,96,99,102,101,97,101,100,93,94,101,94,96,92,109,102,90,109,101,83,105,106,95,99,94,97,94,70,96,99,107,102,92,100,107,99,99,95,91,102,90,102,102,95,101,93,93,95,95,95,100,102,103,97,104,104,90,91,99,99,105,95,107,101,101,106,104,103,96,100,95,103,96,73,103,99,79,94,95,95,111,94,123,101,103,108,91,98,100,101,98,77,100,95,100,92,104,107,107,100,95,103,101,102,91,91,70,109,87,105,102,100,99,102,97,105,99,96,105,96,99,117,95,115,114,101,108,106,125,101,102,96,111,98,102,111,109,88,109,100,77,101,103,91,101,98,94,98,104,99,98,80,105,117,90,95,97,102,101,104,96,95,94,93,100,102,102,92,97,97,100,112,90,98,101,116,94,100, +703.23767,106,101,98,100,96,100,104,87,100,103,105,79,102,100,123,100,106,92,103,101,105,100,101,113,99,99,84,100,104,98,101,103,108,98,118,94,108,91,105,101,102,92,106,108,108,107,100,87,98,103,97,105,95,102,115,91,99,92,96,104,98,124,94,98,117,80,83,98,104,74,99,107,101,98,105,103,102,95,94,105,115,71,99,101,105,96,93,110,101,77,101,95,103,102,93,101,126,96,103,101,95,94,91,105,76,95,118,90,93,96,90,98,101,108,104,104,101,96,121,96,97,103,96,103,117,107,121,91,103,108,103,99,108,100,103,113,100,96,108,100,100,98,94,71,107,107,104,93,76,95,97,94,107,102,105,112,88,94,124,109,87,107,95,112,98,111,106,97,99,108,109,103,101,91,101,115,98,110,98,105,92,98,105,112,98,101,95,113,106,97,104,102,94,99,99,110,110,91,106,112,97,103,97,104,97,119,95,100,104,104,109,98,102,102,97,97,101,104,94,107,107,99,103,99,92,109,104,90,89,101,104,99,101,104,98,94,95,100,104,99,101,104,99,105,98,93,106,103,115,113,110,95,100,99,102,108,99,91,100,103,100,100,98,87,95,99,108,98,110,97,109,97,98,99,98,94,106,103,109,97,95,94,98,74,97,98,91,114,100,98,101,100,109,102,103,101,110,97,102,92,87,99,97,108,97,102,65,106,103,100,103,108,107,131,100,103,94,106,103,84,103,97,104,97,100,102,88,93,110,114,103,86,96,94,104,107,103,94,102,105,106,106,108,95,98,95,105,82,104,111,98,100,112,117,109,97,97,103,90,95,109,101,93,99,109,98,101,91,103,101,101,92,110,114,98,114,105,103,105,107,102,95,100,102,101,94,98,96,98,91,111,91,108,96,84,110,95,92,106,109,105,103,108,91,103,80,87,107,98,107,98,94,101,99,100,91,97,99,109,104,102,98,82,99,104,94,86,107,76,97,91,99,107,96,98,104,87,110,80,101,98,100,99,94,94,96,93,98,114,102,101,100,81,107,107,93,94,105,98,94,93,94,95,95,105,90,88,102,97,99,134,104,98,86,94,103,103,103,108,100,87,109,117,100,108,94,95,112,100,91,98,82,106,88,89,105,111,97,103,104,118,103,102,95,102,99,102,99,102,93,104,108,79,102,88,98,103,98,86,87,110,104,102,99,102,94,111,99,96,99,108,102,103,100,109,98,103,94,102,98,97,107,101,93,101,89,98,97,99,113,98,98,113,104,110,98,91,87,94,100,88,106,117,100,99,102,103,102,95,104,88,106,96,97,99,107,106,82,101,107,109,99,101,98,108,92,110,101,99,96,104,105,100,99,103,108,99,92,106,99,95,99,94,96,103,96,85,115,99,100,104,101,107,87,99,94,101,109,104,107,92,98,103,106,96,83,94,108,106,83,91,104,73,95,95,103,97,100,109,98,106,99,98,96,110,103,83,97,95,115,100,87,96,105,107,103,96,102,100,99,113,104,108,95,93,94,93,82,116,107,109,117,94,105,104,104,103,100,109,87,104,88,102,96,90,105,107,100,97,100,64,106,98,98,104,113,98,104,105,111,94,90,93,109,103,110,92,108,93,98,101,91,106,108,95,100,99,98,102,109,102,75,101,100,102,92,114,99,93,102,100,91,89,101,96,95,102,101,98,106,116,99,102,106,104,92,92,88,105,95,100,94,108,115,117,106,92,89,111,92,101,107,93,92,70,112,84,77,96,89,113,97,103,116,103,112,102,94,100,107,95,92,104,89,90,104,130,117,102,111,109,95,114,110,107,104,92,94,106,110,87,94,98,94,108,99,109,102,104,95,122,98,96,110,106,101,101,80,109,107,95,100,103,89,103,105,107,101,102,103,104,112,99,106,94,109,104,108,102,109,99,97,105,107,94,83,110,91,94,99,99,89,104,108,96,105,102,108,117,102,104,116,99,109,103,105,112,105,97,107,101,75,109,105,100,93,106,94,104,96,102,109,101,94,110,91,100,92,100,107,98,107,116,94,112,88,102,89,81,91,108,100,107,95,94,93,87,102,106,89,110,101,100,92,91,105,93,108,101,101,98,108,92,104,95,100,102,106,100,110,92,91,102,124,85,103,90,100,92,101,98,100,102,114,96,97,98,101,98,99,97,96,109,90,115,99,100,99,93,108,112,116,103,86,106,104,93,107,114,95,91,105,97,93,100,105,87,104,105,90,99,106,95,114,104,112,99,100,102,109,103,90,88,105,95,94,87,96,110,105,116,105,107,88,110,105,102,106,86,103,94,85,94,100,108,96,116,78,110,99,123,105,93,79,101,98,106,102,105,105,105,97,94,98,98,86,113,120,100,102,107,105,91,105,95,99,107,96,99,96,104,118,80,91,100,106,93,98,97,90,91,103,98,94,100,99,105,85,97,99,99,107,104,96,91,114,101,103,79,94,103,83,88,105,107,103,85,100,97,101,106,88,106,97,94,92,98,106,105,99,87,94,74,104,98,102,103,101,102,82,93,105,93,89,104,81,113,95,109,109,104,84,101,97,100,95,117,107,103,98,103,96,109,106,91,96,102,93,102,88,113,107,96,89,99,92,98,95,100,95,99,93,126,97,96,106,110,96,99,100,109,90,98,103,99,100,83,99,106,83,98,97,96,107,107,94,97,106,102,98,104,98,107,95,92,100,103,81,89,94,96,95,104,97,95,90,113,99,97,101,97,102,103,93,99,107,97,100,105,104,102,103,104,95,98,107,102,100,102,104,103,102,99,106,98,98,95,86,102,107,93,108,109,102,110,99,99,104,98,102,100,108,114,101,110,102,116,116,108,100,99,98,96,101,105,103,125,102,98,103,92,98,89,102,104,93,112,95,99,100,105,105,103,111,93,100,102,109,107,107,101,98,95,113,94,107,97,102,88,107,102,93,99,100,105,103,108,103,101,99,101,92,99,131,88,96,102,96,97,101,93,112,85,99,90,106,100,108,91,111,99,104,102,95,94,116,104,95,94,96,102,87,102,110,99,100,105,95,90,101,104,94,95,91,98,99,92,91,113,111,71,104,101,97,95,96,106,105,93,96,106,106,112,89,103,100,95,93,100,92,102,102,117,93,95,103,89,95,106,101,108,101,91,102,101,96,92,104,97,104,95,77,89,86,95,96,115,112,106,103,96,99,98,97,102,75,88,107,104,94,106,103,95,96,100,85,91,100,83,100,103,102,117,91,84,95,99,91,110,113,98,98,91,106,95,105,96,117,101,96,109,95,100,83,95,98,104,102,91,100,100,90,88,104,96,104,95,103,113,101,116,104,99,107,92,103,105,91,104,92,96,103,95,96,96,92,105,98,101,104,90,102,101,94,95,104,105,90,102,103,97,98,97,99,109,99,104,97,99,94,93,101,113,103,98,109,113,95,113,111,102,93,99,92,103,109,103,98,87,95,89,102,100,110,113,101,101,98,96,104,108,99,102,93,103,100,101,91,102,99,99,100,99,112,104,92,105,96,96,101,105,91,96,100,91,99,91,100,107,95,96,106,102,101,98,100,100,96,113,98,110,91,100,98,96,100,93,100,99,112,94,80,101,122,98,93,108,104,91,104,88,88,116,115,86,91,88,102,86,93,108,95,96,92,98,98,99,96,107,103,87,97,103,99,89,90,95,100,98,100,95,107,101,105,99,103,97,105,101,108,100,91,101,113,94,92,111,99,99,97,105,99,100,94,99,99,106,94,102,105,92,95,90,93,106,113,94,100,99,83,100,98,102,92,102,93,100,100,116,91,86,96,93,97,112,105,100,98,100,104,99,100,104,108,91,122,96,96,108,99,95,106,108,102,100,99,117,95,134,102,94,100,100,110,113,96,98,104,92,87,84,100,87,96,106,92,98,98,97,95,108,104,105,101,80,91,99,126,100,118,105,102,93,99,96,97,91,98,110,106,96,110,102,107,96,100,100,102,100,95,95,94,110,99,92,108,104,95,106,94,97,121,104,104,101,96,95,98,89,107,116,92,95,102,106,100,100,107,109,101,91,103,90,100,110,107,98,102,102,93,84,102,112,105,99,92,110,102,103,98,109,99,88,101,103,107,109,93,96,96,106,106,96,102,108,68,109,105,99,101,105,104,96,101,103,98,94,106,91,101,99,107,98,97,94,109,109,113,87,98,104,105,110,92,111,98,96,86,100,94,101,90,85,98,85,107,113,96,94,93,103,107,105,107,108,91,104,93,98,87,102,92,101,100,90,94,102,97,99,126,106,102,100,110,81,102,103,100,83,104,108,107,105,102,96,95,104,100,103,98,102,107,107,106,117,91,98,87,98,99,121,91,106,117,96,98,102,104,106,105,95,108,95,104,94,94,97,93,102,94,104,104,106,93,98,108,103,87,110,90,107,95,85,94,96,103,96,108,95,106,97,101,95,101,96,92,97,101,91,95,105,108,110,95,91,98,102,98,105,97,96,91,101,100,106,87,97,109,123,84,102,90,89,112,109,87,96,106,96,100,86,89,101,103,97,100,79,96,63,97,96,99,102,134,94,107,92,97,88,96,96,101,105,95,99,107,98,119,100,95,99,99,92,102,98,103,104,91,109,102,96,83,100,109,93,94,98,101,116,102,109,98,96,112,113,102,107,101,88,103,108,98,114,96,94,98,91,96,94,101,98,81,101,101,94,99,102,95,84,98,113,106,99,98,85,98,108,103,100,95,94,90,99,101,99,112,102,93,102,98,95,101,95,94,96,111,97,89,100,102,82,99,92,104,99,95,97,100,92,97,97,102,91,102,116,104,99,104,100,99,105,106,95,93,102,97,98,115,99,120,106,101,91,95,96,111,95,93,106,84,100,109,104,94,112,95,102,113,103,87,119,87,100,117,102,85,104,120,101,89, +703.37903,95,102,96,91,86,101,103,99,97,101,109,103,106,112,109,103,108,94,107,112,106,123,90,117,100,104,101,95,97,103,115,105,97,109,108,98,119,91,103,119,99,105,102,106,109,108,108,110,84,102,98,106,95,103,105,90,93,75,105,102,96,94,80,91,96,118,92,105,94,94,102,93,100,96,87,121,86,90,95,96,106,96,111,93,100,87,105,100,83,92,109,98,79,104,98,103,107,105,91,95,100,93,94,94,103,96,104,96,106,91,95,114,79,109,107,134,107,103,99,98,103,95,92,96,112,90,107,106,109,94,95,101,114,92,97,94,106,107,96,113,100,105,104,97,97,108,97,94,83,96,103,98,102,101,99,100,95,109,106,108,106,95,99,104,104,105,101,96,107,101,105,100,95,104,82,101,109,98,107,97,98,95,97,108,98,99,94,96,100,106,103,96,97,108,101,96,102,91,102,92,104,107,93,99,100,107,96,98,102,98,95,97,96,104,102,87,88,91,97,104,109,100,109,109,95,90,96,96,98,108,114,104,98,113,111,112,108,104,107,105,97,99,122,93,111,103,102,105,81,109,97,99,91,91,102,95,93,106,97,92,96,98,105,79,83,107,94,102,103,97,98,107,104,93,109,103,110,110,109,102,99,100,104,103,99,86,98,100,98,101,96,100,109,95,93,100,106,110,104,111,97,99,90,94,101,101,114,100,92,104,89,112,97,103,92,92,89,92,118,94,93,93,104,100,105,91,118,93,102,105,105,98,98,97,112,112,100,97,103,95,100,107,103,102,94,100,108,96,107,100,96,104,101,93,93,98,106,102,98,108,108,96,109,92,94,103,97,105,91,99,99,94,121,100,101,96,98,94,92,105,118,105,102,102,101,105,91,85,101,99,102,88,88,104,94,113,98,90,117,114,100,90,101,105,105,97,97,99,104,114,95,91,109,107,106,90,92,98,99,99,100,95,99,99,94,80,93,102,100,97,101,97,91,101,103,97,92,94,97,98,103,109,97,98,102,95,98,99,102,99,98,106,89,107,99,102,101,97,96,95,100,105,109,95,108,117,99,98,94,94,108,105,95,100,90,101,104,113,107,108,96,109,107,108,101,99,108,99,96,93,110,111,111,99,106,109,86,78,102,78,127,104,101,86,105,105,91,101,107,85,116,98,106,94,101,105,109,107,96,99,96,103,92,103,102,103,98,98,97,91,108,97,101,90,105,111,106,96,100,107,100,100,99,129,112,97,93,102,102,105,98,92,107,102,104,97,104,90,95,111,99,95,101,94,101,101,120,106,90,94,89,89,103,92,116,93,96,96,113,92,97,105,99,110,93,99,95,102,97,96,107,99,90,101,104,99,105,92,86,102,103,97,101,119,99,100,96,97,114,99,103,105,91,110,105,102,99,105,96,100,99,100,109,103,91,113,90,91,91,95,105,101,95,106,91,130,94,87,109,95,101,110,94,89,108,106,96,99,92,101,86,105,105,109,110,100,107,95,98,100,100,109,100,97,86,100,104,101,98,96,106,114,106,96,102,105,106,99,103,95,97,113,102,119,97,104,106,102,105,104,99,109,104,105,103,101,98,99,95,86,94,103,99,101,101,100,107,102,111,108,106,97,109,91,105,101,93,117,99,102,92,97,104,95,92,95,104,100,96,111,109,96,95,99,87,111,100,106,115,92,95,101,96,102,113,86,102,95,101,106,94,97,98,111,116,101,106,106,104,113,97,104,93,106,96,100,92,110,101,93,98,103,81,106,110,105,92,107,102,103,95,110,99,110,87,90,97,81,90,116,90,98,106,104,100,105,94,109,98,100,103,99,106,97,99,104,100,103,102,104,102,94,114,86,89,105,86,101,96,99,91,94,106,90,107,95,87,96,95,109,106,94,87,107,100,103,91,99,108,113,103,100,98,111,101,72,91,102,110,93,99,121,98,104,92,99,92,103,89,93,101,109,102,103,92,114,105,108,94,110,112,103,97,120,102,103,106,100,97,94,104,117,94,99,107,96,99,102,111,108,99,100,101,101,100,98,101,103,96,94,95,106,90,95,105,100,91,96,97,99,94,98,101,104,117,99,90,106,102,92,114,108,100,92,99,109,95,108,108,95,89,108,96,107,100,88,101,84,105,106,121,98,99,99,99,101,102,102,106,104,107,112,100,105,95,110,102,116,96,90,97,98,107,106,100,92,103,90,93,106,94,109,101,104,99,111,97,91,100,123,98,104,83,98,97,98,104,104,90,107,97,91,104,112,88,107,88,96,90,105,97,102,97,109,117,105,116,101,98,92,92,98,96,91,107,106,114,94,110,91,109,109,93,101,101,109,120,86,98,91,95,117,99,93,84,101,95,95,114,109,100,103,103,97,100,104,96,101,100,87,92,90,113,100,94,100,101,100,98,94,85,108,108,110,122,115,114,81,125,99,108,106,98,95,100,91,106,88,102,100,109,95,99,96,104,92,105,94,110,105,110,96,96,95,96,95,101,91,93,91,99,104,97,91,102,106,74,101,116,98,100,107,101,100,96,88,101,95,100,105,92,100,89,93,93,96,92,99,120,91,97,95,95,97,105,97,98,99,95,87,91,99,107,80,101,97,96,95,111,100,93,94,96,105,104,109,95,97,101,109,106,99,89,87,102,99,117,91,103,107,89,96,88,88,94,96,94,92,100,109,93,100,104,98,88,100,104,97,107,96,99,110,73,98,96,108,81,77,113,61,103,98,101,99,94,101,101,100,102,93,99,96,98,105,105,113,111,103,88,100,111,106,103,87,89,92,93,102,101,92,98,93,87,106,101,87,98,101,112,108,88,96,111,98,105,116,104,111,94,94,102,107,102,111,113,106,87,103,102,109,108,104,90,96,118,108,100,104,92,88,116,97,108,112,93,89,92,116,102,102,107,98,99,104,93,103,97,108,109,104,110,113,93,114,98,93,102,95,107,70,97,109,98,105,98,99,90,98,99,100,99,96,94,98,105,113,106,105,101,100,104,93,99,91,96,100,104,100,114,88,109,106,99,103,105,100,91,109,102,109,88,100,98,103,108,87,104,104,103,79,111,90,93,95,101,99,100,94,95,100,106,109,71,92,103,100,95,99,109,107,94,104,92,108,94,93,91,97,98,96,91,94,109,93,98,89,95,106,100,90,88,97,96,101,112,89,101,130,106,106,123,103,98,104,108,89,110,106,103,104,78,98,106,83,107,102,108,99,102,98,104,101,88,100,99,117,100,104,98,95,97,95,89,111,101,89,79,91,95,105,109,107,86,89,105,98,99,101,102,101,101,101,91,106,110,102,105,104,96,96,109,98,101,109,93,99,101,101,101,111,120,96,110,113,94,101,94,100,106,92,101,99,90,100,100,109,100,99,96,105,98,117,118,106,80,108,90,98,97,95,95,99,105,94,92,106,110,101,97,103,94,100,109,87,88,104,113,92,91,86,82,102,96,96,105,106,105,106,97,105,104,91,90,102,106,92,86,97,98,90,105,112,108,103,105,95,103,95,99,90,100,113,92,101,102,101,114,102,97,108,112,97,114,103,105,89,94,109,105,104,112,95,109,100,93,95,101,117,95,93,93,102,86,98,113,104,89,95,104,89,97,102,95,96,105,92,95,102,99,99,100,100,106,86,81,111,96,94,101,105,105,101,104,98,97,102,99,96,109,97,107,102,92,107,98,101,95,104,93,97,104,98,93,98,108,99,106,101,93,93,100,105,90,93,104,99,100,105,107,96,108,98,100,97,112,121,97,113,92,103,97,101,95,107,98,90,93,88,110,87,94,108,89,103,97,89,103,89,108,88,99,102,105,96,100,105,104,117,98,96,102,113,98,106,96,111,65,104,108,93,107,113,96,101,105,102,95,101,109,109,108,91,105,103,111,88,116,100,96,110,92,96,100,99,102,98,99,92,113,93,105,92,98,107,103,94,106,96,118,97,88,106,94,108,93,100,102,102,102,97,96,104,105,101,91,103,102,112,98,108,99,95,95,95,93,99,103,108,117,112,113,110,114,99,104,95,104,87,95,100,104,91,108,94,100,103,92,97,113,73,104,91,100,116,97,94,102,99,94,87,97,99,93,107,103,104,98,103,84,96,98,101,98,95,85,98,95,97,106,102,105,93,87,108,108,101,105,116,133,104,105,111,94,90,108,108,106,98,101,101,110,101,113,92,105,98,105,109,100,92,107,96,105,106,91,106,100,93,89,107,94,96,116,105,102,81,110,105,110,98,88,103,106,101,100,112,107,98,88,109,107,96,112,104,100,109,101,100,88,87,101,92,103,106,102,104,98,90,100,105,97,102,108,97,98,106,98,111,88,102,93,91,103,104,103,109,96,93,112,105,91,107,117,94,109,98,103,106,89,110,106,117,100,105,99,97,102,99,93,103,105,95,101,101,85,100,84,115,90,94,115,83,91,93,92,98,105,96,91,110,101,101,96,102,101,97,93,101,96,95,96,107,98,95,106,94,113,102,109,97,104,102,104,105,89,116,116,98,89,105,83,100,99,116,102,99,109,81,106,106,106,106,100,96,103,107,95,113,101,112,97,100,100,103,97,102,99,94,87,88,93,102,96,97,113,99,98,100,100,104,105,95,93,89,96,110,103,98,99,97,98,98,96,89,108,102,71,104,128,105,94,97,106,101,79,101,98,97,102,107,94,102,112,98,91,95,99,97,110,94,83,108,110,96,95,99,104,86,91,111,99,96,104,88,125,102,109,95,106,104,108,108,95,105,92,102,114,112,106,101,82,101,103,102,110,96,113,96,103,106,95,103,101,101,105,105,89,96,90,106,99,106,102,112,93,96,98,109,95,92,93,96,92,93,95,95,99,89,102,98,101,107,106,98,94,96,95,102,101,95,101,121,105,105,103,90,104,101,102,96, +703.52039,96,104,98,113,93,104,104,102,97,95,91,102,108,97,97,109,93,98,105,95,98,76,98,103,95,108,108,98,98,74,100,97,97,100,102,102,105,97,112,105,96,105,99,96,98,122,111,103,98,99,106,108,105,106,108,102,97,97,98,95,97,101,97,101,95,108,96,111,114,105,103,106,108,90,88,105,91,93,97,97,99,116,103,98,99,88,75,100,88,95,93,103,87,91,107,94,88,103,105,92,99,101,101,97,112,94,84,88,94,96,104,90,88,83,96,108,101,103,105,109,107,97,100,100,100,107,102,91,107,91,101,114,91,101,97,106,97,94,107,85,87,96,98,92,98,102,108,96,92,102,111,118,103,100,106,113,88,90,114,96,90,103,100,104,102,98,96,101,102,89,95,95,96,94,94,108,105,101,97,92,96,106,96,101,93,106,104,96,106,93,92,83,99,95,93,99,103,98,104,90,102,101,98,92,102,101,101,107,105,103,97,90,90,102,105,105,94,96,66,99,94,109,99,95,109,96,106,97,90,100,86,100,100,94,92,103,99,98,94,89,94,108,98,86,88,108,97,100,98,99,98,106,97,99,91,105,95,96,93,108,103,95,105,94,93,100,93,97,87,96,92,85,98,106,112,105,88,97,98,94,98,104,106,101,88,99,93,98,90,92,103,97,101,104,72,96,106,91,111,83,90,96,105,109,87,95,101,101,109,99,103,107,99,105,99,98,88,92,99,91,92,98,96,100,90,92,86,93,102,99,108,96,98,110,101,96,100,104,101,74,91,91,99,94,91,105,103,101,105,96,103,108,110,101,105,111,98,104,87,109,106,63,101,88,93,112,94,96,92,112,113,96,100,102,97,96,99,88,105,108,91,93,94,101,92,95,93,115,98,88,102,89,103,103,91,93,95,99,94,99,111,100,85,97,90,85,99,99,100,75,94,103,96,102,104,86,132,91,103,96,95,87,101,106,98,93,105,97,100,95,95,99,100,100,98,97,95,97,93,88,91,97,99,103,86,97,94,95,96,101,87,98,95,102,76,99,74,106,85,105,91,94,102,103,104,99,109,89,87,95,99,99,111,104,98,104,117,103,106,107,85,103,106,98,90,108,97,98,93,84,96,97,100,97,102,101,63,96,98,100,103,93,96,92,100,100,101,108,113,96,95,95,92,95,97,102,96,98,104,108,94,95,97,96,88,97,105,97,105,97,95,100,100,99,101,88,103,103,100,94,93,87,108,89,100,100,86,109,108,87,101,90,96,93,111,75,107,97,97,95,92,106,96,93,87,93,103,108,89,90,94,84,100,100,97,103,99,106,90,104,102,103,103,89,95,96,108,102,109,90,86,97,104,79,101,106,103,97,105,99,99,98,102,92,94,99,99,97,117,93,98,91,102,93,90,99,97,103,100,96,93,107,104,102,105,97,100,113,99,104,107,93,94,107,99,101,109,96,95,103,109,95,95,101,87,75,106,95,103,95,95,101,105,101,90,112,102,96,93,98,94,103,99,94,93,117,105,95,102,104,101,104,98,79,89,116,100,98,98,101,97,96,99,89,104,89,99,104,93,105,103,90,98,101,99,87,97,103,105,94,104,89,84,100,80,92,103,101,99,92,109,101,95,101,91,91,97,84,83,82,105,98,109,107,93,98,79,103,93,103,95,96,93,93,95,93,95,100,104,82,107,105,96,102,99,103,97,106,105,102,96,102,101,89,88,91,94,96,95,97,105,107,98,97,95,102,97,97,103,89,104,98,101,88,100,104,105,97,102,71,99,90,100,92,91,108,106,100,93,103,105,74,104,104,94,105,95,94,104,104,94,102,90,101,105,92,100,103,94,97,95,90,90,105,99,104,99,83,108,94,95,99,92,92,109,107,121,92,87,88,103,88,103,110,106,103,92,102,101,109,89,95,101,102,92,95,97,99,99,94,91,91,92,95,95,99,105,97,105,102,93,92,108,84,98,97,105,102,98,95,99,85,98,95,97,102,110,88,93,113,103,104,92,99,101,101,73,97,104,102,101,99,100,84,100,91,109,98,103,100,94,97,100,101,93,101,106,96,94,99,101,100,99,101,117,100,96,97,114,96,108,109,117,105,109,96,96,106,101,104,91,105,95,99,96,100,112,95,100,98,106,84,74,93,91,93,101,87,98,103,108,95,94,95,104,105,106,106,89,102,116,95,101,96,112,95,103,96,81,103,98,82,97,103,96,93,104,98,90,100,87,91,118,91,97,105,90,99,91,100,109,106,106,96,88,89,91,98,98,100,110,92,92,104,110,88,105,97,102,111,96,91,96,101,110,93,103,92,96,106,94,97,116,96,90,102,109,96,97,89,117,97,88,93,100,97,87,106,104,82,89,95,97,98,94,97,98,100,86,105,87,99,105,108,95,89,94,108,97,93,96,96,87,92,98,99,101,89,84,98,93,93,102,96,94,97,101,100,89,98,77,94,98,103,101,96,69,89,98,104,102,107,95,87,100,98,94,100,102,106,99,101,91,97,97,98,100,107,98,111,100,119,104,104,106,108,98,106,113,95,92,103,95,73,98,96,110,107,99,98,106,94,80,99,94,98,96,92,97,81,110,107,94,107,116,98,107,106,110,98,107,98,97,83,108,102,111,100,95,108,106,99,96,87,96,93,97,93,102,95,107,102,93,98,106,82,109,91,108,100,95,86,90,90,93,99,99,101,101,101,101,97,95,104,98,96,95,107,98,102,91,101,104,99,104,87,65,109,96,102,96,72,104,101,98,104,105,105,95,89,98,111,98,97,134,99,91,98,101,102,99,94,106,110,98,96,79,78,112,115,100,89,106,101,91,105,98,102,98,93,109,93,102,105,119,100,103,101,98,99,107,99,93,101,103,105,112,110,112,105,103,73,100,113,104,97,90,94,101,109,97,96,106,109,90,106,91,98,93,98,108,106,81,100,97,93,77,101,99,105,68,98,89,112,110,97,112,104,87,111,90,104,101,93,83,75,98,99,94,94,106,96,102,109,101,106,105,87,97,95,95,102,96,119,94,99,99,96,98,102,94,105,113,96,93,96,109,103,102,113,98,101,106,98,92,101,99,108,94,96,100,98,91,94,98,96,99,96,83,100,92,102,94,101,87,103,101,112,97,70,113,96,91,97,105,93,96,103,92,109,104,100,93,97,100,84,83,95,105,96,103,114,92,71,99,106,92,109,113,105,96,108,99,105,87,96,111,93,95,106,93,112,92,99,96,99,105,96,92,98,95,111,101,113,94,101,94,102,94,96,99,117,92,100,91,94,101,109,96,97,108,99,95,103,88,105,102,101,104,96,91,98,97,110,92,94,91,108,104,96,103,88,93,83,110,86,94,105,107,96,110,107,120,110,98,96,96,96,90,104,97,93,83,95,96,103,98,117,96,98,85,89,104,107,130,100,98,96,102,102,96,108,100,103,100,84,93,102,102,94,97,101,102,105,89,102,115,100,91,96,94,105,98,113,98,99,106,108,93,105,110,97,96,113,110,90,99,122,96,97,87,93,94,108,91,109,100,115,93,100,109,102,110,108,98,92,100,109,99,110,99,96,108,103,98,88,94,113,99,96,98,99,109,94,99,97,101,92,96,96,89,98,76,100,93,101,102,95,100,102,96,88,106,104,87,88,87,91,103,122,89,94,92,120,87,111,92,99,114,93,103,105,109,101,92,99,101,93,103,118,97,98,102,112,94,101,96,95,109,101,103,101,93,95,99,100,119,103,92,101,89,102,92,81,109,91,97,103,105,99,112,91,111,98,108,100,98,111,89,105,71,97,92,109,102,97,99,94,95,99,105,98,94,101,102,87,100,93,88,90,97,106,97,113,102,98,92,99,96,100,128,101,92,108,106,107,98,95,101,100,92,106,100,105,102,109,109,91,91,97,111,93,103,101,101,102,104,104,115,100,110,101,100,102,106,100,101,98,103,97,104,103,80,96,99,95,99,109,100,87,96,99,87,97,97,88,104,101,93,125,103,103,90,101,101,72,103,96,97,104,95,97,95,117,95,101,106,98,103,138,100,94,98,87,100,101,103,113,103,105,80,102,107,92,93,96,98,104,95,94,116,102,105,100,109,115,102,98,104,99,102,101,91,101,102,87,98,100,92,78,89,87,96,101,72,97,91,102,101,104,104,99,100,93,93,96,102,95,112,97,110,108,72,94,102,99,90,103,100,101,115,97,108,104,88,102,108,100,102,100,97,107,102,94,108,101,100,93,100,105,104,98,106,106,116,100,93,100,105,105,91,98,97,109,88,108,93,107,111,97,118,91,107,121,93,99,100,94,102,104,97,89,95,108,112,94,95,98,101,96,96,80,98,98,108,79,99,102,106,88,105,98,116,102,80,100,102,98,98,102,102,101,95,108,96,81,97,91,92,94,97,97,95,91,102,83,98,103,95,95,93,103,94,91,97,101,103,91,105,100,102,99,101,96,113,93,95,99,103,129,89,86,97,101,107,100,96,92,88,109,99,99,94,66,101,103,104,110,96,99,101,93,90,105,104,103,94,110,96,119,89,98,96,84,94,105,102,94,90,103,118,100,106,98,95,105,101,94,91,101,99,105,108,104,114,111,99,100,93,99,96,113,96,94,99,96,95,84,102,64,73,116,103,103,94,102,99,102,108,99,89,95,106,97,95,93,113,93,98,76,101,106,106,93,88,106,93,73,86,100,87,91,113,91,99,92,66,110,98,83,70,94,91,116,117,108,109,83,113,98,109,94,109,96,101,100,104,108,93,93,94,97,105,108,98,115,107,97,92,110,98,113,93,112,94,102,93,103,89,111,102,90,88,83,102,103,104,100,107,112,94,94,97,112,113,99,92,112,94,81,112,92,98,96,107,103,104,92,112,105,102,108,112,89,99,112,99,99,88,107, +703.66168,110,105,107,89,85,104,96,110,96,96,104,99,94,99,108,101,106,102,97,107,118,96,86,105,98,90,105,92,96,100,104,112,100,105,103,90,105,100,101,92,103,93,101,102,100,106,94,101,101,111,94,98,108,99,92,102,83,95,112,85,90,99,114,96,109,110,105,105,102,95,109,107,101,91,104,111,99,97,97,102,91,93,97,101,110,96,100,109,99,106,91,102,100,98,95,104,105,92,100,99,106,95,97,101,91,97,99,105,93,99,115,98,95,100,92,98,101,108,112,105,101,104,103,97,101,97,111,103,112,103,100,105,99,114,99,106,93,107,102,101,98,100,101,97,97,95,105,94,104,95,96,102,91,93,87,106,99,101,94,103,106,105,76,99,96,97,96,102,107,96,96,94,96,109,101,101,99,91,104,92,98,103,93,106,106,103,110,70,115,83,93,102,95,90,100,90,105,99,122,93,99,103,96,104,99,91,94,103,121,97,92,113,101,67,103,100,105,107,100,110,112,102,100,95,101,106,103,94,93,105,94,99,99,93,104,99,102,113,96,100,88,96,106,92,95,100,99,104,91,99,124,103,96,96,99,100,99,102,96,101,94,105,105,95,83,100,107,99,89,100,93,93,95,100,99,93,94,99,92,98,99,103,106,113,99,111,78,97,102,101,98,101,104,100,108,70,110,107,107,108,97,108,93,97,92,108,111,98,106,106,104,102,99,111,98,95,100,103,97,95,103,105,101,111,101,107,102,99,94,115,108,90,98,101,99,103,106,88,96,104,103,101,96,90,109,110,111,98,112,113,106,97,105,100,99,102,103,106,99,102,91,98,92,95,93,107,97,89,84,108,105,102,104,83,99,99,99,97,94,104,105,101,114,105,104,100,100,100,117,91,106,90,98,94,103,101,99,93,96,97,102,91,124,100,92,100,96,101,103,79,99,57,97,105,94,90,109,107,113,92,106,115,104,103,94,106,111,97,99,96,93,87,99,101,88,96,101,107,95,94,104,104,100,99,86,101,94,96,110,100,93,98,96,100,96,101,97,123,102,96,94,101,109,108,113,104,113,99,101,113,102,104,91,87,98,96,67,100,95,110,101,96,96,95,105,99,102,92,98,103,114,116,105,104,98,91,91,90,94,101,89,109,93,94,105,101,100,105,96,100,103,81,98,99,99,96,101,109,105,88,101,96,78,99,94,105,93,109,88,101,106,101,96,91,104,96,109,90,93,101,106,94,88,100,99,108,97,95,106,99,105,95,100,105,106,107,90,89,103,100,92,95,100,99,100,104,102,102,95,98,96,101,97,99,92,96,110,87,92,102,101,101,93,101,100,103,104,119,96,109,104,109,106,87,110,103,103,101,113,101,101,80,97,97,105,90,101,108,109,107,107,100,103,101,105,95,92,120,109,91,104,98,92,104,105,104,106,100,103,95,91,96,99,109,85,95,91,93,112,100,96,89,105,100,102,101,103,92,98,97,97,100,103,104,98,109,100,112,94,107,95,75,94,103,87,98,91,96,114,95,109,102,106,74,97,112,106,101,104,92,104,97,107,96,96,78,95,102,100,98,103,104,107,96,101,99,99,108,96,86,98,101,95,112,109,103,100,103,100,101,105,103,101,96,92,109,95,97,100,101,102,96,98,104,102,96,106,94,90,101,76,99,97,97,104,88,102,90,101,97,100,96,103,98,103,97,110,108,108,98,102,97,75,93,105,100,94,114,90,75,103,94,92,95,98,106,102,95,104,103,98,95,100,114,102,104,87,100,98,96,104,102,107,102,100,114,96,89,95,106,95,90,102,103,110,104,99,101,110,111,92,100,90,95,124,95,110,92,98,115,99,94,102,113,103,112,109,99,109,96,104,107,110,106,105,105,109,93,113,96,106,98,96,115,103,112,100,96,102,101,97,95,103,96,105,106,92,103,99,97,104,100,90,114,102,113,106,101,92,97,116,97,94,112,97,93,103,105,102,103,103,104,97,98,99,111,106,97,95,97,90,100,98,123,97,94,91,97,96,103,95,98,80,104,107,97,93,116,94,103,100,105,110,95,99,98,91,103,103,103,101,106,100,110,100,99,77,101,106,103,95,103,98,90,109,100,100,119,99,96,108,99,106,100,95,102,84,89,101,102,100,94,104,108,92,100,105,101,94,102,99,103,99,100,116,101,86,109,101,106,101,113,100,98,107,93,100,105,100,109,110,108,103,102,99,109,104,100,109,84,105,98,96,97,99,106,95,94,103,92,99,95,99,99,99,96,106,117,103,108,105,90,96,96,108,101,110,108,102,94,110,95,101,104,100,107,97,98,106,103,96,93,99,101,100,97,107,98,91,104,92,104,91,104,97,104,93,103,103,101,94,113,104,68,93,105,103,84,97,104,98,111,104,109,91,106,92,106,101,107,120,101,94,102,110,101,97,99,80,95,98,106,98,108,99,108,91,87,93,97,96,88,92,97,99,113,93,102,106,96,109,93,102,95,101,97,105,70,100,95,97,94,112,92,99,113,104,99,104,101,101,108,104,105,94,105,84,97,107,116,116,94,115,87,100,116,106,105,99,91,84,92,92,104,97,105,102,100,103,87,88,112,97,103,97,105,106,108,117,106,100,109,109,97,105,104,96,107,104,116,107,96,95,99,98,97,108,99,97,109,106,98,101,104,102,105,105,101,95,111,100,117,98,102,94,106,103,99,107,117,92,110,97,102,97,90,99,94,100,89,94,103,104,97,102,104,97,90,109,103,96,98,107,119,112,116,101,100,86,105,105,98,113,94,99,101,100,98,103,105,98,107,99,107,104,118,98,111,113,103,113,137,101,95,108,116,106,109,104,102,106,89,98,100,106,98,91,96,86,109,98,98,93,98,112,87,75,101,105,96,99,100,95,102,115,91,95,96,110,98,105,102,99,94,103,124,104,103,96,110,71,94,96,98,95,111,102,91,105,80,99,104,106,92,106,92,100,98,96,98,93,98,109,102,101,109,98,101,116,97,103,102,99,99,121,106,98,105,88,105,105,91,100,90,116,98,92,108,95,104,87,106,105,96,99,96,95,65,101,110,96,100,95,108,97,103,105,98,104,109,107,111,102,94,104,102,100,81,88,105,101,95,95,95,102,91,95,92,103,106,99,102,93,103,97,90,96,98,99,101,101,92,98,100,106,118,88,105,101,110,94,104,97,102,95,112,111,103,108,109,87,129,98,96,108,95,95,100,91,98,103,93,86,90,103,93,94,101,101,96,91,100,99,105,107,106,109,103,104,92,104,104,101,108,103,91,124,94,98,100,85,104,106,102,92,105,99,113,97,102,104,109,108,96,99,91,104,93,92,86,97,101,95,104,99,100,110,98,119,109,103,116,87,106,98,109,97,96,124,112,105,105,99,99,98,102,110,102,96,96,91,128,103,99,109,106,109,97,105,92,98,90,96,91,96,102,93,101,97,111,103,102,79,91,104,106,116,110,88,96,91,107,94,90,95,106,106,112,99,94,104,111,99,105,103,95,92,88,103,85,101,96,82,108,109,97,99,94,111,107,91,96,99,104,108,99,98,109,100,92,110,103,82,102,99,96,97,101,111,92,96,113,83,98,109,103,98,103,103,95,97,99,107,90,77,97,95,99,95,100,98,99,106,98,102,97,98,108,116,108,92,107,99,103,96,91,95,102,101,93,97,109,98,100,101,99,99,99,117,97,102,90,95,110,99,89,105,104,87,99,110,101,106,88,106,103,106,101,100,106,103,98,102,97,94,90,99,106,97,101,99,92,92,111,98,113,111,90,95,100,95,99,110,96,100,103,96,104,99,105,103,87,105,95,97,104,99,81,101,109,91,94,118,109,102,101,101,91,110,92,120,93,91,104,115,109,107,100,93,104,103,103,92,88,100,104,106,101,101,92,104,106,95,107,95,98,108,102,105,95,111,79,105,94,78,110,104,113,104,93,89,99,94,96,104,94,109,102,94,115,102,86,100,109,103,93,80,95,124,102,92,100,84,104,107,93,107,98,101,107,109,102,92,95,102,92,102,96,104,106,102,88,103,100,103,103,105,95,106,98,98,84,102,87,92,109,106,112,97,99,100,107,88,101,104,121,101,105,97,98,95,104,113,111,110,91,95,100,106,82,107,93,88,99,94,99,101,99,101,117,92,98,112,97,98,103,103,102,105,96,95,99,104,109,96,97,101,104,105,98,104,93,97,102,100,94,113,107,68,101,106,102,99,98,106,117,102,104,91,99,104,97,102,97,102,103,105,113,105,75,101,126,103,102,95,104,100,83,108,114,100,113,104,98,95,103,121,89,110,107,104,106,106,89,102,88,98,108,97,107,104,103,96,109,101,97,109,100,92,101,96,96,108,95,98,94,97,107,104,98,99,101,109,101,99,111,95,107,92,100,93,87,92,107,102,101,120,97,70,86,114,103,95,69,117,90,90,113,104,102,97,104,106,94,99,93,96,99,101,103,109,88,91,107,101,117,102,113,97,106,98,90,91,108,103,114,99,95,103,101,99,97,104,85,103,119,100,106,96,117,102,102,114,93,104,100,104,109,111,90,104,101,106,105,85,109,120,105,91,66,103,90,99,81,87,111,99,99,106,95,104,100,110,102,102,106,112,109,107,89,114,75,105,99,100,110,103,91,107,112,87,88,95,100,91,99,97,92,107,98,94,98,106,89,100,88,96,96,96,97,103,103,102,98,115,95,99,98,108,78,105,113,98,109,92,103,98,103,105,95,102,103,100,80,97,105,106,96,97,100,109,111,111,106,121,101,109,91,96,121,115,96,103,99,105,105,118,102,93,84,99,103,98,100,100,106,99,111,96,109,95,107,102,99,96,88,112,107,105,108,99,104,103,94,106,102,89,99,73,100,108,106,92,105,80,116,109,96,98,91, +703.80304,106,99,108,111,91,97,102,109,83,99,108,106,104,99,101,105,97,99,98,94,102,73,90,104,101,112,100,100,95,101,100,116,99,92,103,95,94,102,110,91,99,102,101,111,102,98,97,110,117,109,99,90,103,97,101,92,100,94,97,73,97,106,90,100,107,116,97,83,96,95,97,96,100,97,94,101,102,96,97,80,102,97,87,107,98,93,92,93,101,100,109,102,89,96,105,95,99,108,105,99,96,97,107,89,87,101,104,95,103,99,109,94,96,98,95,104,109,130,109,93,101,111,95,111,102,107,106,94,90,103,105,78,95,92,94,96,101,99,95,107,115,102,96,99,100,96,98,97,106,100,104,99,112,97,120,94,101,125,100,81,114,118,117,104,105,100,102,89,105,91,95,97,101,119,107,101,102,98,100,93,103,107,102,104,98,99,92,93,97,98,86,103,101,95,102,100,104,93,104,97,100,109,97,101,96,105,95,92,104,73,93,98,109,96,102,100,84,94,104,103,96,91,108,95,98,94,108,106,98,105,103,94,101,94,95,108,95,87,89,129,93,93,101,105,100,95,117,105,93,92,96,100,92,104,107,109,96,101,96,110,101,98,62,99,90,110,97,98,97,98,98,93,97,87,113,99,90,102,105,102,92,107,102,99,109,99,100,98,101,92,123,102,105,100,106,92,106,108,79,95,105,99,94,97,87,96,99,95,108,97,88,117,105,91,98,102,99,121,100,95,90,103,101,105,107,90,98,99,100,106,100,99,100,93,91,97,104,91,100,98,98,110,99,102,92,98,98,107,108,100,112,103,100,92,102,102,108,104,107,100,105,109,80,99,96,99,104,105,96,113,100,107,90,91,104,97,101,109,104,111,95,110,89,104,100,109,101,95,97,86,91,92,93,111,109,96,92,100,106,108,101,97,109,93,97,90,95,104,112,93,84,77,103,102,97,112,117,96,98,101,99,103,97,107,113,104,78,99,87,94,98,99,96,97,96,101,105,89,92,92,93,106,75,107,90,86,103,101,95,101,101,95,95,107,118,100,90,106,115,100,102,95,109,101,97,101,116,96,105,102,98,100,102,114,105,105,117,105,106,99,119,101,111,93,94,102,100,104,109,97,101,101,108,102,92,102,102,98,101,97,101,102,108,101,94,96,106,114,98,97,104,104,91,94,99,103,103,82,87,92,103,91,108,109,94,93,107,101,110,87,89,119,105,94,98,112,102,97,87,103,93,101,97,108,99,90,108,99,96,95,100,99,98,110,100,101,104,98,94,100,111,102,90,91,96,98,103,105,103,105,100,99,98,101,101,105,105,90,95,102,111,102,100,98,95,106,111,98,99,90,65,111,99,92,104,97,92,102,103,105,96,98,103,97,99,104,86,84,97,94,99,103,106,105,96,95,97,99,104,101,107,94,104,94,106,99,101,105,98,88,103,94,99,117,132,105,94,94,112,105,102,105,94,88,99,98,100,88,100,103,98,104,126,113,105,97,108,108,96,99,105,100,107,109,117,94,114,93,104,98,96,118,107,111,110,101,96,95,110,96,111,96,112,113,97,106,94,86,79,104,101,96,98,109,101,105,105,100,93,93,102,97,97,92,94,95,87,107,100,109,95,102,95,101,99,90,99,94,98,96,107,103,99,104,96,90,103,107,99,103,96,96,100,74,90,102,109,108,108,94,95,94,107,105,106,112,103,106,101,101,102,98,99,93,102,101,104,107,102,105,100,93,96,97,90,102,98,102,107,99,99,99,99,102,95,98,98,96,100,90,86,104,96,91,101,103,98,107,100,99,105,105,94,107,100,104,88,109,95,96,105,104,79,107,107,109,100,98,94,91,102,90,82,92,102,96,107,99,91,92,114,95,103,104,97,99,96,102,107,98,98,103,97,92,95,94,97,97,112,107,105,102,117,106,104,84,91,102,95,105,93,102,92,91,99,106,98,103,93,96,104,123,101,70,91,102,98,100,104,95,95,131,98,106,97,95,84,82,106,103,112,104,95,112,98,108,97,109,111,100,101,98,94,105,109,92,102,100,124,105,102,107,97,98,96,106,93,103,109,96,105,97,99,98,101,91,96,109,106,87,104,107,110,114,99,95,90,96,92,98,88,99,109,103,114,86,94,93,107,94,109,106,110,73,88,106,93,93,95,96,100,99,94,101,111,94,109,97,102,102,104,97,109,96,104,98,103,101,95,97,95,109,105,101,100,98,103,98,102,97,102,102,105,99,95,94,103,93,101,95,105,109,99,97,98,87,99,83,98,94,92,103,102,99,99,107,120,105,89,88,86,109,97,110,90,92,93,95,100,103,105,108,65,98,97,103,99,104,110,100,96,87,107,102,102,85,101,102,103,101,109,95,99,97,95,98,101,99,104,83,99,113,110,102,84,92,83,76,99,100,77,96,112,102,100,109,106,98,99,101,90,108,93,103,104,94,92,103,100,94,102,110,98,105,108,104,103,98,99,96,100,97,79,97,94,95,93,102,117,117,98,95,112,101,75,96,93,96,100,104,101,130,99,88,98,94,103,93,94,110,100,87,101,102,100,91,104,92,105,102,104,102,104,98,87,92,96,98,97,105,99,85,94,108,90,96,101,101,105,88,108,122,101,109,120,95,106,102,102,109,99,96,98,86,98,105,94,104,92,71,100,92,102,95,98,97,99,87,104,100,101,101,94,104,84,94,113,101,100,91,102,101,81,93,73,103,104,95,97,87,99,101,101,92,109,96,87,98,87,96,98,95,89,103,104,105,101,106,98,110,98,104,97,100,87,106,92,96,95,100,94,83,103,107,113,100,102,106,124,105,95,93,109,94,98,96,99,96,99,103,93,105,102,94,108,100,86,105,96,105,105,96,110,115,96,83,101,105,79,103,90,102,99,111,87,98,106,99,93,96,92,95,102,98,93,96,103,100,112,99,99,97,90,88,86,101,99,105,97,89,100,112,90,96,94,98,106,101,92,97,94,106,91,93,98,99,87,105,109,93,97,98,100,91,95,93,106,100,99,112,106,100,84,97,97,98,107,81,101,100,103,93,95,100,104,90,102,100,99,101,89,105,99,94,100,102,102,89,102,98,105,100,117,89,103,96,87,114,98,95,89,103,98,101,107,110,97,107,104,102,105,96,108,95,103,96,94,94,115,92,79,76,105,97,99,114,90,100,102,105,103,96,92,94,92,102,87,100,105,97,94,94,90,97,94,101,113,99,106,110,110,98,93,91,91,96,102,98,108,100,98,95,107,95,103,99,104,103,90,95,101,95,85,97,99,132,94,96,100,93,100,87,107,114,89,96,94,110,100,97,95,97,100,97,87,100,103,97,95,90,82,96,101,91,99,103,109,84,101,97,99,98,104,95,110,90,102,102,93,99,85,105,92,99,94,104,102,90,104,98,88,74,103,87,100,100,97,104,100,95,99,91,103,110,96,87,95,98,105,95,93,106,95,94,89,97,109,79,88,93,102,108,89,100,101,104,101,103,120,101,101,105,104,113,95,100,100,97,89,109,106,107,106,110,97,87,95,104,80,103,107,95,96,102,95,100,98,94,99,103,107,92,97,96,106,94,104,102,102,96,83,104,99,101,96,91,98,101,94,95,92,96,108,120,101,90,101,102,104,95,106,94,106,99,102,104,87,87,104,96,94,87,94,101,93,92,100,93,100,104,93,98,100,90,92,103,108,111,105,95,109,79,102,99,99,103,110,93,97,105,105,93,95,97,104,98,97,93,97,89,87,100,95,99,100,95,95,104,92,83,104,95,91,90,109,93,94,84,102,92,97,91,101,99,102,99,92,104,113,102,103,101,101,101,104,106,94,95,97,93,63,108,110,105,95,95,113,100,98,100,99,94,100,88,94,97,102,95,98,112,108,100,101,108,105,95,104,108,102,92,102,95,105,103,106,104,104,91,95,96,96,100,90,101,88,108,107,100,99,102,102,112,99,108,91,113,105,103,93,108,98,92,103,94,106,108,98,95,106,103,101,106,94,104,100,119,95,105,107,98,91,95,96,104,91,110,111,94,104,97,106,107,103,112,100,106,99,107,107,105,111,96,98,106,90,117,121,100,95,98,105,105,118,102,96,79,106,91,105,83,109,98,101,105,96,103,100,94,102,99,102,97,102,99,90,101,117,104,91,103,103,101,95,88,111,97,101,99,105,83,92,93,101,108,92,102,109,108,104,85,102,104,93,102,97,102,98,72,97,100,100,90,98,101,102,83,104,108,95,80,98,99,97,104,105,97,99,102,92,98,83,115,104,98,128,107,97,94,81,109,97,92,107,99,89,93,101,102,99,110,97,94,94,84,78,103,93,98,107,97,134,93,103,98,99,103,101,96,110,96,118,100,109,121,95,96,102,101,101,90,95,94,103,99,96,99,102,103,100,92,98,89,101,112,98,92,99,104,106,111,102,96,96,98,108,107,89,97,95,108,101,115,102,94,103,89,98,93,113,102,95,102,94,109,109,111,119,103,91,96,105,106,108,120,102,98,102,109,94,96,106,96,109,99,99,101,96,87,105,95,99,108,95,102,105,98,109,104,95,103,98,101,93,91,95,99,97,96,118,95,98,100,95,96,107,96,103,102,100,95,92,95,90,83,106,109,92,106,98,98,105,93,101,105,100,100,96,94,99,93,92,109,92,91,85,95,95,95,103,95,102,98,95,102,104,102,108,70,93,106,108,91,94,92,91,100,103,84,95,102,93,117,90,87,109,98,94,87,90,106,90,98,98,103,96,91,100,92,97,101,99,107,87,101,101,109,99,94,98,106,96,104,108,100,95,104,84,98,83,106,100,107,73,102,89,95,97,105,96,120,94,110,84,111,92,96,90,108,110,92,109,98,98,108,110,97,93,98,96,91,97,92,95,92,117,98,99,90,105,95, +703.9444,107,102,91,84,93,107,95,98,99,120,89,72,95,102,100,93,94,95,105,86,111,101,91,101,99,118,87,105,92,116,101,93,100,94,97,93,97,117,99,108,95,99,81,107,100,88,97,119,96,80,85,94,103,97,108,103,91,97,105,94,83,97,106,92,114,107,88,110,92,104,94,99,89,120,78,117,84,89,116,101,101,94,102,109,101,86,97,109,108,99,96,96,101,87,108,97,109,93,82,95,99,88,91,88,98,103,107,96,102,98,102,95,85,99,96,101,66,101,100,103,92,104,99,104,87,106,99,94,100,105,97,104,97,108,99,91,100,110,106,98,80,114,98,101,94,96,93,114,88,90,100,102,99,90,93,103,106,103,101,97,100,97,94,98,105,103,100,96,108,98,96,98,105,97,98,105,100,104,106,117,110,92,92,101,97,116,99,108,96,117,84,108,98,102,110,89,113,107,107,100,87,94,104,104,106,98,102,103,97,84,91,96,105,103,105,86,85,91,103,110,108,98,93,93,94,113,107,104,101,101,99,101,98,76,88,101,98,96,99,94,90,100,94,87,96,98,101,105,103,101,104,104,95,95,99,101,94,80,98,94,95,79,99,106,98,100,97,85,98,93,98,93,105,101,103,99,97,98,101,95,101,95,105,96,89,111,101,103,91,107,104,100,87,97,105,102,104,103,100,110,95,104,100,104,91,97,97,101,110,105,96,102,90,106,107,105,89,87,97,106,101,100,101,108,104,100,103,88,107,95,95,98,97,102,113,99,102,95,91,99,102,106,104,107,101,94,95,106,100,88,87,110,107,97,91,104,101,95,94,84,112,97,92,101,105,78,103,96,97,102,104,100,109,89,109,103,106,102,101,101,91,95,103,113,99,88,90,106,105,80,102,96,97,95,114,92,87,104,104,106,95,102,97,100,98,82,88,102,102,94,93,99,109,106,119,96,94,99,97,102,96,93,92,103,100,96,87,103,110,86,94,106,104,87,69,94,97,93,101,103,103,79,96,105,86,93,92,93,102,103,91,107,107,100,97,92,124,109,102,96,87,100,101,94,95,99,98,98,98,103,98,100,88,90,113,95,95,101,95,98,102,103,104,93,105,92,99,104,98,108,105,103,96,98,95,95,104,90,109,90,105,101,99,94,97,98,97,96,101,92,104,98,95,98,100,98,103,90,110,88,90,92,95,100,99,98,101,92,91,123,86,114,94,88,100,93,108,103,104,98,98,87,99,97,109,100,98,81,92,94,98,106,106,108,100,102,75,99,104,91,102,98,100,88,101,99,92,102,106,69,90,99,102,96,90,100,98,101,97,100,84,94,99,104,95,96,106,94,98,94,103,97,112,97,103,92,102,98,117,96,103,113,103,113,106,93,85,85,101,104,99,98,104,79,103,89,93,94,109,92,113,99,115,94,101,102,109,99,110,97,103,107,101,99,83,85,97,104,89,78,99,97,95,98,95,91,91,100,107,110,90,94,100,96,98,102,112,113,105,95,102,116,102,102,91,78,96,113,109,97,117,101,103,107,95,87,87,99,101,99,110,98,112,100,88,103,117,94,93,105,98,107,104,101,101,89,99,98,92,96,86,94,92,107,106,101,113,79,94,103,106,107,127,95,106,98,106,82,97,96,96,87,102,100,99,106,110,99,93,92,109,104,97,84,97,92,98,94,93,99,87,83,101,101,103,102,97,104,86,94,102,97,101,102,96,107,101,101,110,96,104,95,100,90,94,101,108,101,109,97,102,104,106,81,99,104,111,100,103,96,92,113,109,101,83,106,88,99,108,113,100,109,110,100,83,96,108,90,116,79,97,113,104,96,103,101,94,106,95,100,108,102,98,93,95,95,111,106,103,100,97,107,97,92,98,109,80,96,102,105,104,109,99,94,87,98,106,94,105,107,96,94,111,104,104,97,90,98,88,118,106,95,105,105,91,105,101,94,79,86,93,94,87,96,109,119,95,102,101,96,112,106,104,105,100,100,95,99,107,99,108,96,106,98,96,105,102,111,95,90,94,127,110,106,95,105,83,102,105,90,84,113,115,113,93,83,94,99,90,96,95,95,97,101,115,97,91,84,98,82,105,107,103,100,100,104,95,102,116,91,97,93,108,103,98,101,55,97,97,97,95,87,104,105,99,87,105,108,103,112,101,91,112,97,132,100,95,86,84,108,99,101,103,95,107,85,84,91,92,105,123,107,107,95,97,108,100,103,92,87,112,85,103,93,102,88,100,105,100,93,109,95,107,102,101,89,102,102,95,104,90,96,104,98,102,103,101,109,89,108,105,110,98,102,87,94,98,103,92,79,100,98,103,98,94,103,97,95,102,94,103,94,122,83,90,99,101,102,99,91,98,100,100,93,79,100,108,105,90,95,98,112,88,94,95,100,91,99,90,103,96,86,101,107,96,88,96,103,98,95,99,106,99,93,86,94,106,112,109,91,102,99,86,87,89,105,101,106,99,98,91,85,101,100,91,90,100,104,101,103,101,108,97,91,98,104,99,108,96,106,104,104,109,96,103,96,95,100,101,104,103,104,98,96,100,111,114,115,100,92,90,102,103,103,87,99,89,103,97,97,111,95,98,109,92,94,87,101,87,99,97,100,112,106,109,103,109,98,91,97,105,103,113,91,98,94,91,96,104,100,102,102,97,106,93,104,74,91,95,92,100,90,103,90,104,107,94,99,91,98,86,93,116,98,101,92,97,90,103,99,106,112,100,99,95,98,106,109,93,111,98,88,98,109,106,108,104,105,91,96,92,95,108,98,96,97,93,101,107,98,111,104,93,84,100,93,102,107,96,100,104,95,118,108,93,105,98,90,113,101,100,96,92,70,95,93,94,108,88,104,95,90,102,104,108,96,85,88,92,104,93,106,105,101,98,95,100,97,103,100,103,95,123,95,98,101,89,100,97,97,116,97,99,129,101,101,98,105,98,101,112,96,95,105,82,100,93,98,94,100,101,108,102,87,97,100,98,108,104,108,96,116,85,103,94,106,114,101,103,99,100,100,94,90,104,105,107,110,106,94,98,116,102,113,101,110,105,104,96,107,98,87,94,106,104,93,94,98,100,92,104,95,99,101,100,113,101,97,101,103,103,101,100,94,105,100,99,101,92,98,106,92,94,97,103,77,94,96,92,97,95,96,108,102,97,93,98,106,96,103,97,91,93,95,97,103,107,90,88,98,89,104,87,95,88,101,102,97,94,106,131,106,93,101,95,119,90,95,111,97,83,109,110,96,88,106,102,102,99,96,100,92,96,106,102,103,97,89,83,94,91,104,101,92,105,96,99,98,86,98,92,101,90,94,100,105,94,93,107,71,87,94,81,89,101,83,100,96,102,103,80,121,93,107,88,94,94,98,91,102,101,100,95,92,106,94,103,110,102,99,94,98,96,104,96,102,96,106,114,100,96,98,91,93,109,104,92,95,91,96,99,89,100,104,93,100,95,101,94,103,103,92,93,101,103,92,91,103,96,91,91,95,95,90,104,104,83,97,102,95,98,104,90,109,105,103,113,92,98,102,89,109,104,99,101,115,96,98,103,101,98,85,95,108,112,95,95,102,96,91,106,98,88,103,101,102,107,98,94,101,92,101,87,102,99,93,112,90,97,105,111,96,100,105,94,103,93,98,113,101,89,102,100,95,101,100,86,108,101,98,101,104,92,98,101,98,99,105,111,100,101,91,98,97,96,107,108,98,92,98,108,85,121,116,99,99,108,105,99,100,113,87,98,108,108,98,100,106,99,109,82,98,102,97,77,100,100,83,104,102,85,107,87,117,89,97,99,114,118,105,104,104,102,91,101,101,100,73,101,96,96,93,96,102,94,107,100,67,109,104,111,98,109,96,104,109,84,90,98,99,99,97,104,99,107,97,74,98,96,103,111,92,86,101,109,88,102,97,121,88,104,91,112,104,102,106,102,108,127,99,106,100,98,107,102,98,91,98,93,82,81,91,100,87,108,95,106,96,98,113,91,104,91,87,106,92,104,100,100,100,103,98,102,79,99,98,107,87,87,108,105,97,91,89,107,105,98,91,91,99,97,85,103,97,98,109,93,90,98,92,108,91,102,94,100,96,96,114,99,92,106,96,101,103,92,109,109,100,78,84,107,119,80,111,100,96,109,100,108,99,95,97,106,91,101,94,102,104,98,111,94,102,104,112,96,94,89,109,93,94,110,96,104,101,99,102,90,103,99,94,103,98,94,99,94,79,90,106,117,107,88,101,91,95,87,94,92,96,103,104,103,91,104,99,98,92,106,104,72,104,101,99,72,98,110,101,100,99,98,97,100,94,98,88,75,88,104,101,101,101,107,95,105,92,109,90,104,104,93,129,96,97,98,94,90,104,92,101,104,100,102,103,99,106,93,107,96,98,91,99,89,100,89,103,96,89,90,96,82,107,90,95,97,81,99,102,96,100,92,107,93,97,101,104,102,81,100,99,98,102,98,102,90,89,91,103,88,99,91,96,100,103,92,112,96,92,97,106,117,101,86,101,86,98,98,100,91,108,98,109,102,104,110,101,106,101,84,111,97,98,90,105,95,90,90,100,104,96,93,89,91,102,109,100,90,98,99,101,91,91,107,95,89,101,104,85,102,104,103,108,107,86,94,93,95,100,95,86,105,100,86,89,93,90,100,111,96,92,97,98,87,102,106,105,90,94,72,100,87,96,92,96,100,100,98,94,95,90,105,88,92,100,100,93,97,105,98,102,99,102,112,112,98,96,95,108,112,105,97,91,88,92,97,104,132,94,105,99,98,95,98,103,109,89,96,110,93,100,102,101,102,107,103,104,103,90,98,104,99,95,104,101,102,89,96,114,120,112,107,95,107,103,90,96,98,101,109,110,95,99,96,104,101,87,104,91,103,108,96,85, +704.08569,105,88,90,108,93,99,99,92,92,107,90,94,102,100,108,104,84,96,99,102,77,100,99,110,85,101,90,90,96,100,94,98,91,121,108,105,99,104,105,92,92,89,91,113,94,83,100,101,96,109,100,94,96,95,97,106,94,97,100,79,96,95,114,83,115,103,100,100,101,64,89,98,106,101,90,107,90,102,97,98,95,101,99,100,93,96,70,111,104,98,100,102,100,90,105,97,100,106,100,108,98,104,96,104,100,100,94,111,104,100,103,95,86,101,103,90,104,89,93,92,97,100,97,103,97,96,113,90,106,96,76,102,80,95,91,98,100,96,107,91,100,94,99,99,93,95,97,97,106,97,103,95,94,96,93,95,97,99,102,101,102,99,101,93,115,91,95,97,104,96,75,109,99,97,99,92,90,90,109,85,92,95,94,114,91,99,90,92,97,107,98,95,101,96,98,98,94,101,98,92,102,89,105,96,101,97,92,113,109,96,87,98,107,98,103,101,77,111,102,108,103,100,95,89,98,99,98,106,105,95,100,109,88,107,99,111,108,91,100,77,104,104,100,99,93,84,92,112,103,94,82,97,110,85,97,100,91,97,107,102,91,97,103,92,106,122,96,101,96,105,98,100,104,80,104,89,99,95,100,101,90,117,95,104,87,89,90,99,99,110,92,106,108,102,105,95,98,102,91,107,99,103,109,108,96,98,104,100,103,88,97,113,113,95,103,99,116,107,98,95,93,88,107,93,104,98,103,83,110,113,94,96,99,100,105,107,109,93,98,93,90,102,100,87,106,105,91,104,115,97,99,112,98,98,102,94,102,100,99,99,101,96,85,104,98,104,99,108,102,97,99,67,107,92,110,99,108,92,110,104,100,99,92,98,91,96,104,104,100,106,115,97,108,91,96,106,102,94,98,99,96,88,108,104,96,75,103,97,105,104,98,87,104,90,95,97,109,110,87,73,92,96,69,104,96,111,107,96,95,122,90,108,105,99,90,109,96,92,94,98,111,105,95,96,94,95,99,96,83,103,92,97,100,99,85,101,93,95,85,99,99,108,96,112,112,96,97,101,101,99,102,101,98,94,92,99,95,103,110,95,100,104,96,96,101,86,106,101,108,101,112,111,101,105,86,97,102,114,99,104,80,87,90,89,95,97,87,98,107,108,113,95,105,115,87,87,109,86,100,98,97,101,102,100,103,100,101,104,97,101,108,103,112,98,98,102,102,92,107,103,88,99,96,98,108,90,97,76,99,112,99,103,98,98,97,97,94,97,86,94,100,98,98,95,102,99,108,91,107,107,97,101,98,105,89,104,93,95,80,82,97,94,102,90,100,90,116,94,116,90,100,104,99,98,82,96,99,106,105,96,98,105,101,87,83,102,97,98,95,90,112,100,94,100,98,100,92,96,99,101,100,91,95,91,104,100,85,111,102,98,96,99,105,104,106,112,97,114,94,104,117,103,102,99,104,93,94,95,102,95,118,95,102,92,85,109,101,98,98,96,108,102,104,97,83,94,98,95,102,109,102,110,97,101,101,103,110,108,109,114,96,109,107,100,93,97,95,94,97,102,101,106,98,99,96,103,111,105,97,108,90,68,107,118,122,95,112,109,101,88,92,97,96,99,84,106,96,106,111,89,89,89,116,95,94,98,99,96,108,100,102,103,90,93,101,98,96,87,102,109,105,97,100,100,97,99,95,98,109,109,102,99,104,100,94,100,94,104,98,88,97,129,67,95,102,95,98,90,73,101,104,95,104,93,93,94,101,99,98,94,102,106,94,91,103,107,94,105,99,104,93,96,102,100,101,97,95,96,88,98,107,94,91,99,100,100,105,106,95,95,102,98,98,94,101,98,104,116,108,109,93,113,108,101,96,100,103,114,103,109,83,96,103,110,93,94,101,97,94,111,97,94,99,94,111,94,92,102,100,104,96,97,74,104,92,89,91,95,89,105,98,97,109,106,93,85,105,99,119,104,107,103,94,105,93,99,98,102,110,100,97,99,96,109,106,106,97,120,104,97,93,95,98,112,107,90,83,103,90,100,94,109,104,97,94,97,101,105,109,101,108,112,109,105,92,93,91,95,90,99,118,124,101,82,92,104,99,105,110,91,98,105,101,85,98,99,94,88,96,105,91,105,98,77,102,109,99,100,97,109,98,80,98,107,91,102,100,93,94,102,114,99,95,94,94,105,96,95,87,99,89,91,96,101,98,106,100,91,102,96,102,102,108,101,104,102,93,104,97,97,95,92,97,96,91,96,95,100,99,94,105,100,94,91,107,103,106,107,97,93,103,100,109,102,113,105,101,93,117,103,101,103,101,98,104,101,101,86,95,105,101,104,105,101,94,100,96,110,92,91,93,100,100,101,100,106,108,100,99,109,103,73,94,114,86,103,89,118,100,98,100,110,103,106,91,101,98,109,95,92,95,101,96,93,101,82,93,100,94,95,105,118,117,107,99,99,92,90,103,109,117,97,118,77,101,92,83,92,109,101,95,103,95,107,94,99,99,101,94,99,96,109,88,100,113,98,105,96,97,95,109,95,89,102,99,100,103,106,99,109,105,107,94,105,106,106,98,98,96,88,92,103,101,99,101,105,62,95,107,102,95,89,93,101,95,89,88,102,95,100,101,110,98,100,129,84,97,87,106,98,102,101,102,95,103,81,93,110,109,99,107,66,102,105,120,117,112,108,98,99,109,88,98,99,102,111,109,112,99,100,96,97,100,101,92,114,94,113,95,83,83,99,96,109,105,100,100,117,103,95,105,103,104,103,92,94,98,106,103,95,101,114,101,108,101,105,96,105,108,105,99,91,105,105,95,102,96,113,99,111,103,85,115,93,106,101,86,100,94,100,100,101,107,100,105,92,100,105,94,101,108,114,88,105,100,98,94,96,76,106,89,111,103,83,100,94,117,99,96,100,105,104,96,96,109,112,112,101,96,96,105,102,105,112,101,83,106,101,113,96,97,102,100,93,95,112,98,100,105,96,100,106,94,100,95,107,107,87,104,103,90,90,101,107,105,105,101,103,104,86,104,112,108,99,107,100,109,94,100,99,91,105,100,95,99,95,91,106,113,105,103,106,101,99,112,94,104,95,102,107,110,96,109,103,97,99,103,109,99,98,93,91,99,97,92,98,102,98,98,94,83,101,97,108,108,87,98,94,98,108,96,97,101,97,102,103,113,99,105,96,108,113,109,107,101,99,98,100,98,102,99,109,96,114,99,113,109,101,106,94,98,111,111,108,100,97,113,108,101,100,108,99,99,104,99,105,95,90,109,118,109,103,88,85,94,97,105,96,102,103,108,89,91,107,95,113,100,100,95,90,85,101,104,99,100,113,104,101,97,100,97,102,91,104,106,97,91,105,92,80,103,92,102,93,97,103,109,91,105,95,90,96,100,102,87,95,99,102,105,103,103,96,101,98,112,99,100,94,97,108,112,102,93,113,99,91,96,94,96,106,97,99,100,106,100,95,96,100,99,104,99,100,99,109,123,93,106,101,99,90,106,113,106,107,99,110,100,98,104,111,124,107,97,105,100,91,94,97,104,108,96,98,99,106,91,112,103,98,90,98,91,110,101,100,83,104,112,101,105,99,100,97,113,100,104,89,96,109,87,100,102,97,94,100,98,102,95,72,106,102,99,95,106,104,85,97,99,96,91,99,108,110,90,113,101,96,95,102,101,85,109,92,101,112,89,93,107,102,103,96,104,104,100,97,98,99,100,106,95,57,104,94,110,97,109,97,99,117,121,107,99,96,103,100,107,99,102,93,105,109,69,103,91,103,91,97,94,105,100,105,108,96,100,97,102,109,98,97,107,115,97,99,100,101,96,100,102,99,106,99,105,108,98,108,102,99,105,89,94,107,92,102,101,113,105,92,98,95,94,97,98,107,84,107,109,102,102,95,104,102,95,98,102,104,104,106,97,113,101,94,94,104,96,106,114,90,101,96,95,91,102,90,90,94,98,103,98,100,103,100,97,91,102,106,99,99,104,100,111,98,100,103,105,95,110,100,108,112,113,108,114,104,97,99,103,100,99,109,109,100,102,109,99,110,93,105,97,102,96,102,109,100,104,113,86,94,102,107,108,96,104,106,99,105,97,112,94,98,101,97,94,111,94,104,93,100,117,102,115,116,105,104,73,101,101,100,100,104,100,103,104,99,107,95,94,113,101,106,103,103,98,99,99,105,99,103,105,101,107,94,117,94,93,105,98,102,101,110,101,97,125,108,95,106,85,84,92,98,109,99,107,106,101,113,107,112,111,93,121,108,92,113,97,111,96,98,105,99,111,107,104,93,102,108,97,103,123,102,96,103,121,92,104,98,100,108,101,102,99,106,92,106,108,116,111,97,101,95,109,101,89,108,105,107,93,92,94,101,94,106,102,95,96,98,95,102,92,106,88,89,106,105,102,89,105,100,96,100,97,102,104,106,109,95,104,100,106,73,113,106,99,106,106,113,108,101,85,97,95,100,100,97,91,107,98,93,102,104,101,102,96,102,98,100,97,112,105,110,108,99,99,110,103,105,97,93,101,95,107,100,106,99,95,100,96,85,104,102,92,99,94,87,107,106,108,129,108,105,97,91,94,107,112,99,102,116,86,106,105,101,105,95,103,96,106,104,102,105,103,96,98,104,101,108,103,99,115,108,112,99,94,102,91,101,102,94,102,104,96,98,114,111,109,116,123,106,100,100,101,105,72,106,87,102,123,102,97,96,104,103,100,86,102,108,105,95,113,97,99,99,88,96,79,111,103,109,112,100,97,95,91,102,114,101,96,98,93,97,107,91,110,104,87,95,110,97,96,119,91,112,105,118,104,98,102,105,110,95,96,94,94,95,98,110,99,103,107,110,102,99,99,102,108,105,107,105,108,115,89,109, +704.22705,111,107,120,93,80,110,93,96,87,104,101,96,93,101,99,85,97,99,99,97,96,93,100,96,105,105,91,107,90,106,89,101,101,97,95,109,100,101,117,99,91,104,103,99,96,97,107,120,98,106,94,100,102,99,110,91,103,104,103,91,97,107,93,101,108,108,92,102,90,104,99,74,99,105,101,99,111,99,100,96,94,87,102,112,101,83,94,102,95,90,108,91,95,96,91,93,94,70,107,78,93,100,100,96,94,101,101,98,95,92,105,98,97,91,94,97,95,100,92,110,105,96,104,90,100,111,111,99,110,101,95,101,104,99,105,108,102,98,101,103,110,105,87,97,104,112,96,104,99,93,100,100,106,100,106,104,93,107,108,95,106,99,94,93,89,97,121,98,93,98,93,101,91,103,85,107,98,95,108,99,88,113,102,99,104,102,109,100,102,104,120,90,116,95,95,100,88,99,93,92,97,99,109,101,96,90,106,107,98,99,112,90,108,105,93,88,95,100,80,101,113,97,102,91,98,96,102,101,90,113,96,92,92,105,87,95,98,105,106,97,94,100,103,117,87,92,97,99,102,100,121,95,109,106,108,96,99,106,95,107,95,104,103,119,98,114,104,105,93,100,118,99,103,94,103,92,101,99,99,100,109,99,93,114,120,107,102,100,102,96,97,100,111,109,107,99,111,102,112,96,96,100,103,106,100,105,96,88,103,105,90,100,109,78,102,103,104,92,99,101,97,96,109,106,100,101,95,100,120,106,105,109,98,83,70,102,99,96,83,96,108,95,112,101,92,98,76,107,101,103,94,101,104,111,100,96,102,106,104,91,83,94,98,110,98,102,106,102,112,102,96,116,103,104,87,86,104,104,100,114,108,99,102,109,94,108,91,105,97,105,118,92,105,94,100,92,100,100,103,95,105,94,98,101,111,109,96,117,111,102,91,104,99,97,103,99,104,98,105,94,102,93,110,98,100,73,101,105,92,101,102,99,110,102,103,90,96,95,100,101,109,104,94,101,101,107,99,102,99,112,114,96,111,96,92,98,100,92,118,93,101,88,116,109,94,100,85,99,115,95,91,98,102,91,99,102,93,109,96,114,106,101,110,106,101,102,93,103,91,95,95,118,103,106,96,100,96,97,99,103,98,104,114,95,91,96,93,93,110,94,94,93,91,98,103,97,101,92,95,102,95,95,75,88,90,88,98,83,103,104,98,104,113,90,100,101,76,92,102,100,97,93,98,106,94,93,101,99,99,113,101,97,85,99,97,84,102,102,96,91,117,99,86,95,111,90,111,100,108,96,96,92,100,113,100,98,106,91,104,109,86,120,100,97,101,91,107,99,103,95,98,117,95,89,105,114,97,100,109,95,101,94,105,101,97,90,95,99,67,95,100,103,118,112,102,103,87,108,90,98,98,110,110,97,101,102,102,102,97,92,89,92,79,105,93,100,100,110,106,95,104,107,102,102,106,106,97,94,95,108,101,110,100,118,110,105,113,109,104,98,106,100,108,96,72,114,103,99,101,91,104,108,101,104,98,95,108,99,108,91,101,94,108,94,100,105,95,105,94,97,100,110,96,100,101,102,100,103,95,101,95,100,105,109,101,98,96,105,91,104,91,95,92,99,101,126,99,94,92,100,99,108,89,93,95,97,119,104,98,100,90,109,107,102,109,93,101,98,109,99,108,94,105,99,109,96,81,104,101,97,108,107,100,93,105,100,102,102,104,101,92,83,88,105,97,99,96,98,93,91,108,92,99,91,97,92,105,100,92,102,93,86,110,97,96,100,97,113,100,99,94,106,91,99,95,103,101,104,101,99,101,97,93,104,106,100,98,113,108,100,102,92,98,92,99,97,99,111,106,89,107,97,95,108,79,102,107,101,102,113,109,112,92,98,95,92,101,89,97,93,105,101,87,109,104,127,98,92,112,102,100,80,98,94,92,100,104,95,90,97,99,96,91,79,100,91,102,112,113,102,106,100,109,97,98,99,105,105,99,97,93,89,89,98,92,100,110,112,93,101,99,111,98,108,109,91,98,94,98,99,93,112,101,86,100,95,109,100,95,109,133,92,108,103,99,92,78,129,100,95,99,102,103,95,103,101,109,105,102,112,88,103,112,97,101,104,97,106,98,121,101,104,76,98,95,98,95,99,107,107,100,106,102,96,105,103,100,105,100,112,99,101,116,95,103,92,96,105,96,95,87,93,106,110,102,103,106,101,111,96,87,103,95,120,96,115,106,96,96,101,98,97,104,102,89,87,91,90,104,86,104,97,96,99,107,97,98,94,103,110,92,97,103,95,97,109,119,96,99,109,105,103,95,91,93,98,92,97,106,104,90,109,103,95,104,98,92,97,109,95,95,87,93,107,91,86,98,98,103,95,90,106,110,104,104,112,98,94,101,92,106,107,97,103,92,95,106,98,106,99,103,101,116,96,110,104,97,101,119,90,99,92,92,105,109,93,102,106,106,101,102,91,104,106,100,102,92,100,107,105,95,110,83,110,113,99,86,103,124,98,103,108,98,105,109,88,93,102,93,107,112,95,97,104,95,110,99,99,105,91,97,102,102,106,111,93,98,102,112,83,113,91,88,96,137,97,99,103,95,84,97,64,107,103,107,103,94,135,97,94,101,93,97,74,102,111,107,100,103,106,95,107,108,110,98,102,120,92,104,107,104,106,88,109,103,111,109,112,109,96,104,112,121,105,93,106,92,111,109,91,99,97,99,109,102,102,111,103,97,106,113,100,111,110,102,107,91,108,112,89,100,103,100,93,98,102,92,97,105,106,95,96,88,106,108,91,105,86,105,107,107,95,127,94,108,102,100,98,98,104,99,99,103,94,96,102,88,103,81,97,105,89,98,105,103,101,98,93,92,100,109,101,105,108,102,101,122,97,93,117,106,103,108,95,103,99,119,101,105,104,104,105,103,83,111,103,104,115,108,101,100,81,89,96,96,74,112,94,108,86,95,102,95,101,107,106,112,105,98,110,110,92,72,106,116,97,106,97,99,105,105,101,87,103,96,101,101,101,88,85,86,101,100,97,111,93,111,96,102,95,94,90,86,116,105,105,102,107,100,92,106,105,105,107,94,87,104,93,105,118,109,99,100,106,113,108,107,102,101,98,93,101,102,99,94,105,103,107,109,107,87,95,126,102,89,110,101,101,101,104,105,124,92,101,98,96,106,100,95,102,84,102,101,96,108,87,111,94,100,101,112,106,99,104,105,105,106,109,113,107,103,112,100,110,105,94,106,109,99,107,98,105,102,96,107,101,99,94,100,96,108,106,113,97,106,96,95,110,96,105,91,100,96,95,109,107,96,98,96,102,94,108,107,97,92,103,102,102,108,100,96,97,96,98,101,102,94,107,91,121,104,110,106,112,102,108,96,107,94,105,90,113,101,100,84,106,113,103,95,102,89,113,101,104,101,104,87,100,94,110,92,111,98,89,103,108,108,89,108,108,104,96,93,109,109,104,105,99,90,99,103,98,99,100,97,103,116,102,118,95,88,101,107,112,104,102,96,106,96,97,126,93,92,99,85,99,101,105,97,110,107,97,83,115,107,114,103,105,102,91,87,95,99,104,102,100,92,101,99,112,113,104,101,107,96,96,110,108,115,110,94,113,106,97,100,88,89,95,106,102,94,99,101,78,95,109,98,110,117,105,101,98,109,107,94,92,98,103,91,107,94,98,100,117,104,101,101,95,105,96,110,105,110,101,107,101,107,102,100,89,92,99,102,102,102,102,101,108,94,96,108,105,107,102,99,97,98,98,87,109,102,82,110,102,109,101,100,115,103,107,89,98,83,99,101,111,105,94,112,99,110,106,98,99,110,109,108,92,110,99,117,91,98,96,105,108,95,107,99,99,109,100,115,92,96,97,106,106,119,97,113,105,104,102,100,91,98,98,102,100,106,72,116,97,98,105,108,114,106,98,104,104,74,102,102,100,105,98,93,102,111,96,95,99,98,100,94,97,110,110,102,104,104,104,100,88,97,109,98,112,112,85,103,100,98,113,112,99,106,98,102,96,97,101,104,103,99,106,103,92,98,105,100,92,83,95,109,72,93,108,105,95,95,106,109,98,92,109,106,98,100,109,103,95,108,100,100,103,105,101,90,98,100,104,108,101,115,68,107,102,104,110,107,100,98,111,89,109,113,107,94,109,114,111,104,114,109,104,104,108,107,102,98,108,102,97,85,103,104,91,97,93,101,102,107,87,121,96,99,76,105,104,102,104,95,98,96,102,103,101,94,93,106,107,90,93,105,96,96,94,114,95,100,98,103,105,90,104,96,111,105,103,123,99,91,98,104,106,100,131,113,88,110,83,99,85,108,107,96,103,100,89,104,97,105,100,106,99,102,84,115,109,100,98,93,113,98,104,98,91,98,88,110,104,98,90,90,100,103,106,105,99,91,113,99,97,91,99,92,102,99,88,110,97,106,95,107,100,103,93,100,70,106,109,96,96,89,115,101,105,110,101,105,113,100,106,99,97,104,103,98,79,110,100,107,112,95,96,106,102,99,103,100,97,104,98,105,100,109,110,103,76,111,105,104,98,122,84,99,94,101,105,105,99,104,108,103,110,98,109,105,116,110,100,85,104,95,97,114,109,97,91,99,101,105,80,100,100,98,109,94,101,90,104,101,107,98,105,94,85,86,122,103,109,115,107,104,110,83,92,103,115,104,110,102,111,104,107,107,106,109,78,100,100,113,100,97,95,101,113,103,88,101,99,97,109,96,102,98,111,99,97,103,105,92,102,99,98,86,106,101,93,111,89,94,112,108,93,99,106,95,100,101,94,106,97,107,75,104,98,94,83,102,97,104,103,100,108,108,96,101,95,94,101,104,81,84,91,116,94,98,96,110,125,101,90,114,113,110,92, +704.36841,91,112,89,113,100,98,91,102,102,110,84,102,107,109,107,96,102,94,103,109,97,90,95,100,87,93,103,121,90,113,104,95,96,87,111,99,98,110,108,119,92,100,94,99,105,109,101,97,92,99,101,99,92,95,98,88,91,101,107,97,109,101,101,93,97,110,103,95,108,100,105,90,97,97,78,92,102,93,103,104,105,109,88,87,95,99,89,115,102,91,100,98,105,113,96,125,97,102,103,90,92,80,99,99,87,102,89,103,106,89,77,93,101,112,84,112,101,94,103,92,121,97,96,110,104,79,105,91,110,114,102,102,98,99,94,108,102,95,101,95,99,106,94,98,92,91,105,99,88,85,95,101,107,96,94,94,102,93,103,110,110,110,105,97,100,103,102,101,98,99,85,99,93,95,101,94,101,84,101,106,101,101,103,105,99,104,96,92,106,104,104,107,107,112,104,100,102,108,95,100,104,110,101,98,98,97,96,106,112,107,100,115,113,100,100,93,106,95,84,78,97,93,94,103,97,103,114,105,103,99,107,96,91,95,96,103,107,97,103,93,109,99,106,103,99,100,98,116,108,99,98,96,95,120,111,113,109,105,89,97,100,118,94,97,97,102,110,117,95,90,109,95,100,97,94,98,93,96,106,101,95,104,105,100,101,99,93,107,104,95,95,105,101,106,104,126,101,86,73,110,129,96,106,104,99,104,104,95,99,109,94,103,105,100,102,112,102,98,98,94,103,106,81,102,97,94,110,93,99,107,107,106,110,98,98,98,103,99,104,105,100,97,94,97,96,116,103,97,113,96,99,92,109,97,94,104,98,100,89,111,88,92,102,98,103,114,98,95,93,101,96,93,95,102,106,91,99,119,95,102,107,103,104,101,99,99,106,96,110,105,111,92,87,93,99,91,94,98,91,100,89,105,99,94,98,99,89,99,110,102,74,97,110,100,100,95,91,97,92,109,100,100,100,105,95,99,98,89,102,100,86,97,80,91,102,105,97,123,97,101,84,105,107,96,104,100,104,95,104,110,103,98,112,106,100,107,92,100,104,93,98,101,101,110,114,113,113,102,110,101,93,103,100,103,99,96,99,99,87,103,103,94,108,107,93,109,82,104,107,79,92,104,107,100,96,101,96,105,107,102,99,100,90,100,105,105,112,101,117,97,102,100,92,74,103,106,107,105,113,96,98,97,112,100,104,102,106,100,103,103,93,108,100,107,96,99,114,98,96,106,108,103,95,109,90,100,98,99,95,93,97,98,108,97,100,103,101,91,80,105,107,108,98,100,93,113,113,97,96,70,90,95,109,106,102,101,106,93,90,85,123,105,100,99,99,110,115,112,97,100,96,102,87,92,109,102,99,98,104,100,100,103,116,105,107,103,104,99,99,102,94,110,97,110,105,95,106,89,98,106,101,106,109,94,108,92,94,99,96,100,100,91,105,98,97,104,93,98,106,99,110,105,96,105,94,92,95,105,101,105,88,117,122,108,106,105,93,95,106,90,109,95,100,100,89,95,101,94,100,102,112,98,104,112,108,106,99,91,100,99,99,104,107,106,98,101,98,109,109,102,107,97,98,105,104,104,104,95,98,94,102,98,105,104,99,100,107,99,101,112,92,113,111,95,96,92,101,93,95,104,106,100,98,97,101,113,110,103,108,113,101,100,97,101,101,99,101,92,113,106,107,100,103,98,101,99,98,107,92,101,101,100,90,112,92,102,117,98,111,110,102,101,103,102,111,100,104,130,102,105,97,97,109,105,92,93,102,95,97,92,113,98,119,106,110,100,112,98,98,97,84,108,110,97,97,106,88,112,104,119,110,100,112,106,108,109,106,87,99,101,99,101,94,108,114,107,113,90,97,99,94,104,100,116,103,110,95,101,99,119,103,106,102,100,100,93,106,101,102,106,87,98,100,100,95,94,126,95,94,93,107,66,109,98,99,104,95,92,104,101,99,105,98,96,103,101,103,95,118,118,94,102,100,102,99,93,96,106,104,105,111,112,109,92,98,98,93,101,110,95,98,101,98,102,103,98,97,93,100,101,88,87,94,90,100,112,128,98,101,109,106,101,98,93,99,98,83,111,99,110,102,98,108,108,103,98,105,90,112,91,120,86,112,109,94,103,97,96,109,107,103,110,103,103,107,107,106,98,119,105,103,98,107,109,115,94,114,101,109,97,117,108,100,98,113,97,101,89,92,95,95,105,103,94,102,107,96,89,61,94,92,95,99,106,101,88,100,97,106,97,90,84,98,105,103,106,91,107,94,90,97,99,97,96,95,111,101,111,123,95,107,105,103,100,104,108,94,94,105,104,99,117,108,91,99,110,100,94,95,104,100,115,101,101,108,92,97,98,105,95,107,104,97,93,97,103,109,101,91,92,98,108,97,108,96,110,97,101,95,105,82,101,110,98,95,96,105,95,107,94,101,98,96,102,96,94,86,123,100,85,82,95,89,103,99,95,102,93,97,110,100,94,99,93,91,107,84,112,96,112,105,100,99,98,89,102,102,99,90,97,93,110,90,95,100,100,106,105,104,101,103,79,91,108,100,93,103,102,98,84,108,99,94,103,96,81,100,77,113,100,99,95,92,93,88,108,102,105,106,91,108,95,105,95,101,119,102,88,99,77,105,87,95,99,107,102,99,96,98,88,98,90,105,103,86,97,105,91,100,87,96,102,88,100,109,108,108,90,98,109,96,99,104,100,101,98,91,100,108,97,106,103,85,97,101,100,97,105,103,102,107,97,99,98,108,100,107,108,103,101,96,98,96,99,106,104,103,91,96,94,96,100,93,98,106,91,108,91,104,94,109,96,98,96,88,98,100,102,79,80,91,100,93,107,97,100,102,107,93,107,108,101,84,92,101,100,107,101,96,97,99,110,97,114,97,99,99,99,87,96,105,104,98,96,98,90,105,93,106,95,102,102,96,88,105,99,105,113,99,95,102,94,105,103,105,106,97,105,97,102,114,98,103,102,101,104,90,99,102,104,109,106,94,102,98,86,98,89,100,101,81,134,98,96,95,108,81,97,99,97,103,106,97,86,104,92,115,80,98,99,96,93,94,104,90,94,100,107,91,80,100,108,95,94,114,100,104,124,102,92,104,97,91,108,94,97,96,102,104,96,94,91,97,88,105,83,92,98,83,101,101,97,97,104,106,102,108,98,99,98,106,102,101,95,97,102,109,95,100,104,103,105,96,97,98,86,91,93,99,106,97,101,95,100,105,102,100,93,107,109,101,90,99,97,102,106,96,103,109,103,94,95,94,104,93,99,67,102,98,91,101,103,104,95,92,117,101,96,98,102,125,70,85,101,111,101,97,94,117,95,100,93,77,100,94,93,86,98,99,90,98,106,96,98,106,99,95,94,107,111,102,101,107,105,101,100,94,97,83,93,87,105,100,101,100,82,106,98,98,99,86,104,83,101,91,85,94,101,92,96,105,97,96,87,94,99,108,94,98,98,98,99,96,102,99,111,91,105,106,100,97,103,78,109,98,105,99,106,89,96,100,98,95,98,101,104,105,96,104,101,108,96,93,98,95,92,85,93,94,112,97,94,102,99,99,101,105,103,102,90,91,92,92,97,109,93,98,96,96,91,88,80,98,108,101,101,88,95,93,102,105,104,105,91,99,96,102,100,91,96,105,92,108,109,102,98,85,105,103,91,108,101,104,92,108,74,106,94,96,92,107,92,93,108,93,98,97,85,98,96,102,90,106,90,96,104,94,107,101,96,91,106,95,115,101,98,93,92,108,95,102,95,95,92,98,95,96,103,101,97,105,95,88,113,108,87,101,87,103,111,98,98,98,99,102,94,106,96,101,109,98,100,88,105,92,99,102,88,100,92,105,101,97,108,102,99,100,88,107,96,91,103,95,85,82,99,106,103,94,110,96,99,80,102,95,102,101,89,104,90,93,95,98,97,91,97,86,98,106,104,104,102,102,110,96,109,96,84,94,99,94,112,94,99,102,98,96,97,98,108,100,93,101,100,102,92,95,101,106,98,106,136,93,103,93,101,110,94,116,98,104,95,102,104,95,105,95,113,102,96,101,99,103,92,101,107,100,98,92,99,104,108,100,96,94,104,100,101,96,103,95,97,102,99,99,111,101,94,94,96,85,85,99,110,87,94,95,113,93,96,100,101,97,92,100,95,111,93,94,93,100,105,101,100,113,95,94,112,101,95,109,90,101,89,88,99,87,110,108,109,97,102,87,102,92,94,94,84,100,105,98,99,114,95,106,108,104,91,94,97,101,85,112,102,96,97,105,92,97,90,92,104,103,95,98,94,113,100,97,99,100,102,97,98,101,96,110,78,95,102,92,104,100,101,95,85,107,100,106,92,92,99,91,100,98,96,102,110,98,98,90,98,129,102,91,105,99,93,108,107,96,84,91,97,96,94,90,98,94,88,110,107,107,101,108,91,100,86,99,107,111,101,96,95,100,84,91,98,100,106,113,99,102,96,99,87,92,96,93,104,94,101,80,117,95,99,106,93,94,112,98,98,104,102,97,100,92,98,93,111,99,115,97,91,84,95,104,92,106,111,115,88,96,100,101,103,94,101,101,87,89,90,94,103,97,97,100,104,103,100,97,94,100,92,92,110,103,91,87,108,112,105,102,91,99,103,101,109,96,108,96,99,87,115,97,97,92,89,96,101,95,107,98,99,92,94,84,90,92,85,96,101,106,106,113,91,100,79,101,108,103,105,96,108,89,95,99,92,106,100,109,87,102,94,96,93,97,98,98,96,90,93,80,104,100,98,96,102,82,101,101,89,95,97,98,99,99,92,105,102,96,88,89,107,98,108,88,95,86,102,105,123,95,106,94,104,90,117,107,103,91,109,114,101,105,109,104,102,88,85,101,91,98,100,108,102,95,101,106,97, +704.5097,98,103,102,103,111,94,111,105,99,95,88,97,112,99,92,96,108,91,97,103,102,111,99,107,100,103,124,100,102,105,97,95,104,92,105,99,93,109,100,96,92,105,112,97,106,119,81,99,94,102,103,102,94,100,98,88,96,94,108,96,91,96,107,101,102,115,98,107,110,101,100,97,101,101,109,99,116,104,110,98,115,99,106,106,100,96,93,87,95,101,99,108,101,102,100,100,97,91,109,95,112,99,94,98,107,105,105,111,100,106,104,103,103,91,97,100,108,95,106,103,104,106,115,107,105,92,108,93,86,103,104,101,101,105,96,102,110,95,99,96,89,103,99,105,105,106,82,94,96,100,98,101,107,91,90,105,100,93,98,108,110,91,99,91,111,103,104,95,108,103,91,103,113,105,107,108,97,89,114,99,106,103,103,100,102,111,100,100,106,95,86,105,103,103,103,103,95,107,92,95,105,91,100,112,114,99,98,111,106,109,105,101,98,105,105,110,100,98,103,96,100,107,86,92,95,110,106,117,103,109,90,105,83,107,95,96,99,99,105,100,83,70,119,104,104,101,105,91,94,110,79,87,103,94,98,102,100,113,100,73,95,111,91,105,103,106,87,99,99,91,102,103,119,107,100,105,96,99,104,87,96,104,92,102,95,101,91,106,95,98,92,86,113,101,92,95,101,94,90,115,95,105,95,110,90,100,111,98,105,111,94,98,108,114,102,104,101,103,100,101,92,95,103,106,106,100,91,86,110,97,116,103,98,99,102,114,96,98,95,98,93,96,99,96,99,106,94,97,104,103,95,104,102,101,105,113,102,98,102,101,96,91,94,86,91,86,110,111,94,97,107,98,116,105,99,99,98,102,106,98,110,101,98,109,107,94,99,96,97,105,97,113,100,107,118,85,103,97,116,96,103,99,103,88,87,95,102,112,100,94,96,102,103,112,103,92,110,97,97,95,102,89,90,99,106,95,104,96,103,100,94,105,109,99,116,101,98,132,98,104,108,95,109,101,96,88,107,105,101,107,107,101,112,103,101,99,106,95,110,108,100,97,98,100,107,102,103,104,103,104,104,111,98,105,88,94,100,108,102,105,101,97,106,101,99,102,104,111,108,105,103,106,100,98,89,106,109,95,103,95,99,79,82,100,96,110,93,95,109,91,106,101,116,90,108,99,99,82,97,74,107,84,111,99,110,101,94,96,96,110,93,85,101,105,91,92,113,95,106,103,93,104,99,101,102,96,97,97,113,107,96,105,96,100,92,111,93,93,97,92,100,112,106,96,105,99,101,107,101,95,107,94,94,92,109,103,106,95,93,96,98,102,99,91,103,95,100,99,100,99,102,116,96,92,92,102,103,105,116,104,105,109,97,95,108,95,87,93,95,116,94,92,103,99,105,89,100,98,106,106,95,86,101,96,100,102,86,117,97,97,99,89,99,105,101,109,95,90,102,89,111,112,98,97,98,114,100,91,97,110,84,97,101,70,98,104,99,107,90,98,101,102,93,107,97,101,108,100,113,100,113,101,121,91,98,108,94,113,105,105,104,106,102,94,109,91,103,103,107,100,98,109,95,98,104,94,105,108,103,92,96,105,112,105,111,106,106,103,97,105,103,97,91,116,96,103,88,111,106,106,99,91,109,100,101,104,104,106,86,121,99,105,105,105,103,108,96,106,108,92,114,110,103,96,115,106,109,106,105,116,106,92,97,101,109,91,101,106,94,95,99,104,90,105,101,100,83,103,100,104,106,83,92,105,97,98,97,98,109,90,99,90,102,89,99,105,104,96,93,96,98,102,96,89,113,96,109,103,88,115,97,105,88,87,98,106,102,107,106,98,119,99,102,99,116,108,120,104,105,98,88,109,96,89,105,95,100,104,105,104,128,101,99,106,108,98,100,100,97,105,99,109,103,109,90,97,98,98,99,113,106,66,106,106,94,113,94,107,94,95,104,82,107,116,102,105,99,90,112,106,98,103,112,101,98,105,112,100,96,100,100,97,88,94,95,106,97,106,67,104,99,100,106,101,100,96,91,101,94,112,108,106,105,98,105,103,81,101,92,99,104,102,101,101,100,105,94,104,102,100,103,102,65,105,100,113,108,101,90,94,107,99,111,104,88,98,103,102,103,108,109,95,101,95,93,78,100,103,97,101,95,114,87,98,96,95,103,96,102,103,92,104,109,116,101,90,91,111,97,104,116,87,95,102,98,103,110,104,96,99,96,85,100,109,101,95,90,102,109,96,98,104,101,93,95,85,108,109,97,94,114,92,86,95,112,95,107,103,96,99,94,108,101,100,88,100,87,93,101,112,99,108,103,93,103,94,107,104,91,101,94,100,112,101,101,94,102,105,112,96,100,95,101,96,87,103,103,99,93,100,82,90,105,105,99,114,97,95,100,94,94,108,96,109,106,100,89,95,105,96,96,104,89,109,98,95,109,112,103,99,100,94,94,120,104,107,98,99,102,104,98,103,102,95,94,109,101,98,101,115,103,103,104,107,116,103,97,96,118,102,100,80,113,109,90,101,96,109,107,108,98,103,91,106,108,100,104,92,105,108,100,106,111,94,101,122,110,102,102,98,104,92,97,112,96,92,99,101,111,102,96,99,100,101,93,120,94,106,115,113,104,107,103,84,117,98,97,99,93,92,92,97,107,115,105,103,104,105,114,98,110,109,108,104,104,110,112,94,109,102,102,99,104,101,104,106,102,93,89,103,100,95,115,93,97,106,101,96,100,106,105,114,102,106,106,101,107,91,95,98,101,104,94,99,98,90,98,96,104,113,103,120,106,94,96,102,111,104,105,97,97,100,80,101,95,98,110,103,109,110,101,104,105,109,113,99,104,111,94,110,104,103,99,101,101,103,113,107,94,98,108,116,104,107,109,108,93,99,72,98,105,104,106,97,109,100,98,105,116,95,111,104,107,69,104,100,98,101,103,100,103,95,91,109,112,97,107,110,95,106,103,94,100,93,119,121,88,96,117,90,96,104,88,102,95,99,111,100,96,99,105,100,96,112,97,99,101,73,112,103,97,109,106,93,105,103,96,108,117,119,98,105,92,104,101,100,92,97,101,97,94,108,105,96,114,99,99,104,109,94,104,92,98,110,113,103,100,105,100,102,119,112,106,97,109,104,108,108,100,93,114,87,96,122,107,106,96,101,95,91,96,103,82,97,97,109,107,98,103,94,109,98,97,105,99,92,106,94,98,104,83,103,96,103,94,105,98,104,104,93,104,106,98,83,104,97,94,108,116,104,113,115,98,68,90,97,88,83,94,121,98,110,109,101,99,110,104,115,95,103,110,102,109,100,94,107,109,97,105,106,94,111,105,99,105,93,96,117,94,98,116,115,97,110,96,87,104,107,104,109,95,111,109,76,104,99,97,86,105,89,93,102,100,102,104,80,92,109,104,95,95,97,88,106,100,99,96,98,109,99,106,106,105,103,85,99,99,95,110,98,95,95,114,101,92,103,127,92,106,104,105,95,93,103,99,112,99,99,88,91,101,97,100,106,99,98,97,102,105,114,90,92,101,100,103,101,104,101,92,110,102,92,103,98,109,95,101,105,117,100,91,108,108,90,113,105,120,97,100,106,109,103,100,97,94,83,105,110,105,109,91,112,101,88,96,101,100,99,106,113,102,95,84,97,106,94,105,100,98,100,107,101,111,100,102,109,94,104,111,108,109,94,109,112,113,101,108,93,96,91,107,103,87,93,100,104,105,101,98,102,102,95,99,94,99,72,103,102,98,101,87,100,108,75,108,96,98,105,95,111,98,108,96,111,115,103,94,109,101,89,91,97,107,101,101,94,89,102,95,99,94,110,87,104,98,113,103,114,99,108,101,96,105,105,100,94,111,96,92,99,93,110,106,106,94,95,110,105,97,96,106,105,94,107,125,95,99,91,90,110,99,97,106,115,95,100,94,92,107,90,101,109,108,102,94,110,96,101,87,109,105,102,96,96,87,87,105,89,114,106,102,105,88,99,109,97,97,105,103,104,103,110,97,90,110,100,107,96,90,98,106,105,92,111,107,103,84,99,100,101,101,98,94,100,99,93,100,99,106,98,112,95,99,111,101,106,101,101,102,94,98,78,100,104,75,106,102,101,101,97,106,98,105,99,99,115,109,84,105,102,102,96,105,105,102,105,94,100,97,97,102,96,111,105,99,96,85,121,90,87,101,105,103,102,101,103,107,101,115,100,119,95,103,98,98,98,105,110,100,88,100,102,98,98,95,99,90,106,104,93,97,95,110,104,106,100,109,89,102,106,99,100,94,95,93,108,97,102,98,110,101,113,117,116,108,117,113,106,94,99,97,109,96,99,107,86,99,93,109,100,99,102,87,111,104,101,94,108,102,93,102,101,113,98,103,94,103,110,90,104,105,77,98,106,105,110,106,98,96,90,103,97,96,105,108,104,89,95,93,111,104,109,96,104,102,96,98,99,96,104,95,87,136,104,110,101,106,114,100,103,98,99,97,116,102,103,99,100,99,86,105,88,106,72,111,102,104,102,95,109,104,104,105,100,98,102,92,91,96,129,99,99,109,96,92,109,104,107,96,94,103,93,97,101,96,101,96,98,99,105,99,92,110,103,99,99,104,99,99,112,99,104,118,96,105,92,113,98,106,97,97,108,102,90,97,105,105,108,102,95,93,93,93,93,116,116,99,107,95,102,100,102,107,98,98,101,99,93,96,95,112,104,97,103,100,109,113,91,105,98,108,94,112,108,95,96,94,103,83,94,103,93,97,100,105,94,107,93,112,88,103,100,117,106,102,98,94,114,97,102,100,102,92,113,94,103,108,91,98,109,106,95,101,103,87,128,122,121,98,98,103,76,102,107,106,91,90,112,95,97,97,105,111,98,108,108,104,101,102,94, +704.65106,108,103,97,100,92,90,91,95,90,103,107,96,68,95,106,98,95,92,89,101,113,93,109,102,94,107,104,98,95,108,100,94,108,97,88,109,91,95,98,76,99,103,76,99,106,88,91,102,83,93,84,90,98,104,102,92,107,97,96,113,100,100,100,95,107,105,102,105,99,97,102,90,108,95,96,86,91,102,102,116,104,98,96,110,103,105,100,100,88,81,96,105,99,97,96,96,89,103,97,90,105,97,95,104,105,101,58,96,107,97,109,92,88,93,104,86,94,95,93,102,86,100,93,110,101,106,102,91,101,98,81,96,101,100,98,102,109,104,107,120,108,98,108,94,101,101,111,105,105,90,85,102,116,94,105,102,98,106,101,121,71,91,102,96,91,96,96,97,101,93,99,104,98,95,109,86,99,86,113,97,102,104,94,105,99,94,104,93,101,99,98,92,111,104,100,98,114,97,105,100,103,91,99,105,90,101,96,98,117,105,92,95,97,101,96,103,96,101,100,94,112,102,75,98,97,86,98,110,100,104,97,107,94,101,100,105,91,95,95,97,116,110,80,99,93,105,112,98,107,98,100,109,99,117,98,96,102,109,94,101,85,102,105,105,107,104,87,96,104,106,100,98,92,115,110,106,96,111,103,98,101,95,92,94,107,103,97,107,106,96,80,105,99,100,74,92,105,87,104,97,85,96,105,101,90,112,97,88,92,101,95,108,106,90,95,80,99,100,94,96,104,104,108,108,112,107,100,90,98,88,100,95,99,100,100,109,101,97,96,97,96,102,95,105,87,98,82,118,113,99,95,96,102,75,94,99,99,103,114,103,109,98,98,75,100,102,90,107,100,99,103,96,107,99,110,94,97,95,104,93,96,112,97,102,92,93,104,85,106,102,109,93,93,103,95,102,92,104,99,103,69,106,98,100,94,92,95,108,99,90,92,97,113,98,105,93,113,96,100,112,84,105,101,105,91,101,100,90,99,99,91,94,102,95,95,99,96,105,96,101,97,105,99,97,85,102,90,84,96,93,114,97,97,108,96,100,105,102,105,92,101,102,105,99,105,97,96,106,104,96,100,102,102,77,95,99,88,84,102,102,98,101,103,90,99,100,103,110,90,92,98,103,105,98,68,100,92,94,101,104,110,106,90,91,103,106,88,98,103,104,109,89,108,96,117,102,100,95,75,102,102,100,95,106,102,88,100,100,99,96,102,106,92,113,100,98,101,104,96,108,98,99,95,96,114,101,106,88,100,97,109,100,91,104,89,90,92,97,97,106,91,98,98,99,112,96,105,94,100,109,93,106,103,87,107,105,92,102,100,114,112,101,105,97,101,88,100,108,90,105,107,102,103,100,101,133,102,95,95,100,99,97,97,106,101,119,104,94,105,103,110,89,108,107,106,97,105,92,83,99,92,124,101,105,94,97,97,100,97,102,113,102,97,98,118,102,106,100,106,97,95,114,103,109,97,91,92,91,101,101,99,95,82,100,104,99,98,104,90,103,104,107,107,113,94,99,104,102,88,88,106,105,95,91,113,103,97,96,96,95,92,87,106,96,105,97,97,92,98,97,99,96,95,102,99,96,93,98,100,97,113,94,100,81,106,101,95,93,110,102,101,86,94,95,100,93,102,96,98,96,101,99,95,92,97,97,96,105,100,103,96,106,93,103,106,101,104,89,99,100,101,97,115,97,94,98,91,101,95,99,99,96,99,95,104,91,107,114,119,89,106,106,92,103,86,95,88,96,97,87,103,94,98,99,96,88,82,97,94,102,103,99,95,101,92,116,99,98,95,103,105,108,99,99,115,100,100,103,88,105,112,93,101,97,116,91,91,95,95,87,110,95,95,106,109,90,113,113,91,111,95,100,100,107,103,110,89,96,112,100,116,97,96,87,106,99,91,102,88,97,99,99,110,97,100,114,108,100,98,99,84,98,92,110,95,95,120,104,98,92,108,101,93,117,98,96,96,93,108,94,90,106,95,94,102,96,99,110,105,92,99,93,94,100,112,95,96,108,103,87,102,96,97,101,100,103,96,109,114,101,110,103,94,96,109,97,97,94,91,96,109,97,112,96,102,101,96,90,98,125,97,96,102,107,107,113,92,116,104,99,104,108,99,102,101,95,97,100,95,91,102,100,99,101,106,99,115,109,97,96,106,97,96,101,105,94,99,93,91,94,104,97,92,100,91,100,101,108,92,98,90,81,102,94,99,94,95,84,90,99,106,104,95,97,98,101,103,110,90,104,82,100,116,93,101,91,103,100,97,104,96,89,105,101,117,99,97,98,105,103,92,119,105,109,129,99,109,96,100,103,104,87,103,94,117,101,91,104,85,101,95,107,109,97,98,102,105,109,108,94,106,78,112,109,98,94,104,110,105,109,100,94,97,94,113,100,102,100,99,93,107,97,101,95,87,109,110,100,116,91,106,98,89,94,105,96,106,120,98,95,92,98,103,115,97,99,102,95,93,92,100,99,107,101,108,108,73,110,106,99,105,87,124,104,90,111,98,101,90,102,92,103,111,101,107,105,107,104,101,99,100,105,95,104,96,107,96,88,120,105,100,94,100,101,97,98,106,101,95,92,81,85,91,108,98,96,109,112,81,76,98,102,101,92,112,103,100,93,98,88,108,93,101,105,100,105,100,92,102,99,94,90,93,101,95,104,96,106,108,100,96,101,104,90,95,106,102,104,86,90,96,113,96,103,95,98,103,87,101,94,98,93,92,98,97,105,85,106,91,104,91,105,97,101,102,101,108,114,102,84,96,103,92,101,94,103,96,97,70,61,91,101,97,106,106,105,103,101,117,102,96,102,106,98,106,102,117,101,101,102,115,97,108,99,94,101,99,102,100,101,96,84,90,85,104,107,95,95,112,104,101,105,104,102,93,107,96,101,90,119,101,100,96,107,111,109,89,105,92,109,101,103,94,93,102,113,105,91,98,98,104,97,106,101,100,105,92,110,108,88,106,99,106,101,101,112,98,97,113,94,71,109,105,70,106,93,97,105,98,101,83,97,93,101,112,101,106,102,88,101,93,101,120,116,107,99,106,89,97,98,102,101,93,108,98,81,100,98,103,112,100,94,104,110,96,81,98,96,102,104,101,96,102,98,100,98,96,106,87,90,94,88,95,106,98,91,105,105,91,96,92,94,100,99,100,94,67,83,99,110,95,101,98,109,98,99,92,106,96,114,85,117,104,90,97,94,97,89,87,94,109,98,100,102,100,111,100,90,101,92,110,92,93,100,106,97,99,89,88,102,107,110,103,99,99,94,98,101,104,97,91,91,128,101,98,105,106,86,101,95,98,93,93,90,113,104,96,96,88,92,64,95,100,101,106,103,97,101,89,107,104,83,95,91,104,108,106,74,104,95,100,101,109,95,100,99,99,103,93,109,92,99,93,121,98,97,109,99,97,92,106,109,98,95,103,101,94,96,96,109,96,101,102,87,109,98,98,87,98,102,113,106,98,88,91,104,103,110,100,89,112,107,98,109,105,99,90,92,100,99,105,100,97,93,105,103,120,106,101,102,93,99,104,96,102,102,96,100,100,102,103,99,108,104,102,109,97,92,96,101,98,83,97,94,99,91,87,108,92,99,94,123,104,95,100,94,96,98,103,95,99,95,108,98,103,95,111,100,99,103,99,87,96,82,100,87,105,106,109,102,105,106,101,100,84,84,99,95,100,105,99,100,108,102,99,100,92,100,102,98,105,96,101,78,91,91,106,98,102,100,92,96,102,96,95,91,93,102,106,89,100,101,108,98,93,97,78,103,102,109,85,95,97,96,98,95,95,104,91,111,107,95,95,97,99,89,103,95,88,105,104,75,95,109,100,95,102,92,112,102,106,98,101,98,95,111,96,90,77,104,98,101,103,100,85,111,93,76,104,111,109,83,102,95,94,88,94,90,104,105,98,100,100,101,93,98,88,102,104,96,101,105,88,91,95,94,92,99,100,76,100,97,96,113,79,93,106,108,92,97,97,87,95,97,100,97,91,94,100,65,101,90,104,97,101,107,106,95,105,102,101,100,101,101,100,99,88,104,98,75,107,101,98,116,97,106,100,105,99,99,99,111,93,89,104,104,92,107,98,96,106,106,88,102,89,107,92,95,89,101,102,92,99,116,93,119,104,95,95,95,95,91,93,94,91,101,102,104,99,102,110,99,102,88,97,96,88,115,101,106,106,96,85,91,103,103,92,91,105,94,113,87,99,98,86,95,109,98,97,114,97,92,100,97,91,94,88,92,105,94,97,114,106,90,91,101,99,113,102,99,100,103,106,109,107,97,106,91,119,113,99,102,96,95,75,89,102,96,77,92,117,94,105,99,103,88,101,101,102,105,96,96,107,106,105,99,110,94,98,102,91,105,108,104,91,93,100,93,106,96,87,87,104,93,98,119,83,101,97,97,90,110,80,100,108,92,91,98,85,98,95,102,105,117,111,99,94,107,98,92,98,94,97,97,109,95,92,102,98,98,91,79,101,105,109,97,108,99,95,92,89,98,101,103,116,99,89,92,106,112,93,94,95,101,101,93,103,106,97,90,86,62,101,115,96,95,101,88,100,92,86,99,100,115,97,113,110,101,95,97,110,103,101,100,95,91,98,97,93,101,110,98,108,88,106,95,94,116,107,106,92,95,100,101,93,111,108,92,105,74,89,107,101,98,97,95,113,107,99,92,92,98,87,82,107,105,100,97,102,94,88,85,90,102,93,99,94,98,97,103,91,94,106,100,105,94,107,109,101,101,101,98,105,104,98,102,103,97,104,87,93,108,91,103,100,96,88,114,90,102,119,103,100,100,107,102,91,97,93,106,106,104,105,110,102,100,88,110,117,107,109,100,101,99,109,105,96,107,78,88,93,106,87,104,117,92,97,96,86,83, +704.79242,104,92,96,101,87,104,108,87,83,115,105,98,96,89,95,89,118,112,95,112,96,108,86,101,118,117,99,100,116,109,95,104,87,96,102,101,99,98,109,107,90,97,92,109,108,117,91,106,90,104,95,86,76,98,106,94,115,104,100,92,106,103,94,107,91,108,96,98,101,100,98,80,90,101,99,96,94,109,95,102,91,101,108,102,92,94,100,107,89,99,99,104,101,94,100,105,97,94,107,98,100,103,101,98,92,74,90,91,105,94,106,92,101,83,100,100,99,71,97,99,107,109,98,104,98,106,96,97,98,95,100,92,100,95,109,92,101,79,96,103,100,96,96,108,89,99,107,97,95,93,100,104,107,101,97,103,118,102,106,91,105,94,98,105,93,96,92,106,104,99,108,100,98,101,105,95,97,103,95,104,95,101,104,89,98,79,99,83,97,98,85,97,82,96,106,98,101,94,95,100,100,93,94,86,104,94,95,95,100,98,101,90,87,105,94,112,100,110,87,86,89,108,98,97,97,98,104,108,92,100,99,96,95,91,104,96,99,104,107,102,100,90,97,90,74,107,99,100,98,102,103,94,111,91,98,106,74,110,112,95,101,94,94,99,98,100,98,101,96,100,87,93,98,107,96,104,96,101,102,94,92,111,97,89,98,103,89,101,95,99,108,94,96,100,104,94,95,108,104,92,86,101,108,104,90,104,103,102,107,104,102,113,102,101,103,90,101,95,98,100,97,91,105,107,100,101,92,95,108,101,93,105,110,93,107,107,101,96,101,92,97,109,103,97,97,104,98,109,94,105,103,94,99,84,100,106,99,101,102,94,98,106,87,101,83,98,90,80,96,90,102,71,110,97,91,102,101,97,98,107,95,95,94,99,99,89,101,96,102,102,96,96,107,105,101,100,99,109,95,94,109,104,101,94,100,94,113,105,100,97,94,94,88,100,95,104,84,101,79,104,100,96,102,101,101,89,87,95,101,109,86,105,85,82,97,129,92,106,95,102,102,95,80,104,94,99,102,104,83,105,101,91,79,94,109,95,101,105,105,90,102,106,82,103,103,105,101,107,105,91,87,102,98,98,76,102,126,101,101,99,91,100,104,99,98,95,95,96,108,100,78,110,107,103,93,94,101,107,95,106,97,101,120,105,100,106,99,104,115,95,108,90,101,101,89,114,97,102,104,97,95,95,107,98,100,105,103,110,96,103,95,107,107,89,87,98,101,95,102,95,105,104,93,113,102,99,102,94,104,97,104,94,97,99,104,91,101,100,104,102,102,108,131,105,101,94,102,98,94,88,83,76,105,93,99,80,96,100,120,110,107,99,94,98,135,92,95,102,92,89,106,96,106,95,104,93,91,99,110,93,89,101,104,104,88,109,113,100,97,93,104,111,106,100,96,96,94,89,117,109,99,108,92,95,99,98,97,97,108,94,92,93,97,97,94,99,91,99,98,104,106,102,96,98,91,101,106,93,110,94,99,95,99,98,103,103,100,108,96,93,101,103,98,100,85,101,95,79,116,105,108,103,98,105,101,107,90,103,101,102,101,112,106,98,102,96,103,98,96,105,90,93,97,100,105,91,92,102,102,92,92,100,72,101,100,111,101,92,94,100,92,92,102,98,103,91,88,94,102,106,104,95,100,93,93,83,105,98,98,101,99,97,97,101,99,96,101,106,105,101,102,87,102,100,90,99,92,102,92,108,92,93,93,106,102,89,112,98,108,98,104,98,105,100,87,95,90,105,104,90,114,103,95,97,100,93,101,86,105,101,94,78,97,100,120,97,99,106,95,99,96,100,103,97,105,85,100,89,104,99,103,89,90,106,109,105,91,108,98,97,113,100,102,101,101,98,98,99,101,92,96,112,109,101,102,94,95,97,101,106,105,109,103,101,96,116,105,95,110,105,97,95,100,87,97,104,95,104,109,104,104,93,98,90,91,106,98,109,95,105,103,88,106,95,97,99,98,109,103,95,98,97,121,98,105,107,101,98,112,97,108,113,92,95,91,97,93,112,97,95,96,95,96,94,96,92,70,94,102,110,96,108,102,97,90,96,87,94,103,94,84,98,97,95,101,91,90,88,97,118,113,103,102,113,92,95,93,98,81,105,95,105,88,98,94,118,90,91,106,105,102,88,96,117,97,100,103,93,111,96,98,92,99,104,105,88,91,109,108,103,111,116,98,104,97,93,94,101,98,105,88,105,100,94,105,108,118,98,89,107,90,96,104,99,96,96,102,102,87,112,114,90,106,95,95,95,103,96,88,94,96,95,102,102,104,103,103,93,105,95,92,100,105,98,109,98,107,100,91,92,108,94,95,84,98,96,102,104,107,90,111,93,94,99,92,88,91,97,113,109,100,106,99,90,110,109,108,105,102,90,97,102,98,111,112,86,99,99,109,94,93,89,100,99,99,109,100,103,97,107,101,108,101,95,99,103,101,93,88,95,98,95,90,109,98,128,103,100,112,90,108,107,96,95,93,91,102,93,103,107,95,99,104,98,112,113,92,114,106,120,102,107,95,116,99,100,92,102,91,103,97,94,107,91,97,104,95,102,96,91,102,108,105,87,66,100,92,105,111,95,102,94,93,115,82,99,106,103,101,98,98,96,112,104,92,113,105,101,114,100,102,83,99,87,113,104,95,91,111,99,100,103,109,91,94,99,101,83,110,98,95,101,102,101,99,104,97,101,109,93,102,106,99,98,92,90,96,88,103,97,103,105,89,115,101,103,94,94,110,70,109,118,101,99,102,104,96,92,107,97,113,112,78,117,99,101,95,108,99,102,113,103,87,96,107,92,102,97,101,98,103,94,102,97,124,100,105,98,91,109,88,106,92,90,79,85,102,98,91,96,96,85,100,112,95,100,91,109,102,95,99,97,94,103,109,103,98,97,100,109,98,102,98,107,93,91,101,94,75,91,98,95,92,82,100,101,100,92,95,84,96,98,85,97,91,106,97,92,101,91,93,102,93,91,106,103,89,83,100,98,95,103,97,99,117,102,106,96,99,105,86,94,80,99,103,97,90,96,92,97,96,109,98,101,103,95,99,107,91,100,95,98,99,92,107,91,96,100,82,92,105,89,108,95,110,97,105,88,106,93,120,95,99,111,100,95,99,102,95,101,89,99,74,104,103,95,90,116,102,90,95,97,98,107,99,104,95,98,97,92,109,91,86,91,90,99,88,99,89,95,110,100,99,97,97,87,98,94,83,117,102,83,95,94,90,99,97,105,100,98,101,105,89,106,97,105,100,102,87,97,93,92,104,98,92,91,115,89,109,108,107,101,98,101,92,123,110,101,89,98,99,96,91,94,99,91,104,92,95,91,97,106,102,104,96,98,112,96,131,105,90,109,91,96,90,95,92,102,83,106,88,94,103,105,99,99,88,113,92,97,98,96,118,99,94,101,104,88,91,102,101,101,100,94,101,103,95,98,87,84,99,91,112,104,104,102,104,93,106,96,92,103,112,123,107,104,108,96,107,94,100,98,89,108,98,96,98,100,95,88,95,88,98,77,94,105,94,108,97,91,90,99,102,104,98,106,101,94,98,103,113,99,95,100,93,104,110,82,119,93,98,112,95,93,102,129,109,92,109,100,105,99,104,95,94,84,102,117,94,99,96,97,93,107,136,107,96,89,103,109,98,107,95,89,96,102,90,101,91,96,103,107,99,92,95,105,95,109,105,123,94,97,97,96,84,103,66,97,105,96,110,102,106,98,104,94,102,103,102,98,98,101,94,101,102,100,109,99,84,98,98,97,87,95,101,106,100,95,106,101,95,107,94,102,92,102,102,105,98,112,106,107,102,91,113,97,93,111,109,103,103,98,110,105,107,91,108,106,98,96,100,96,91,103,99,98,101,104,102,90,92,101,99,98,94,101,95,97,95,107,93,95,98,95,80,93,98,105,104,95,93,97,99,101,100,85,109,94,93,95,104,111,89,121,113,94,91,99,115,100,79,102,104,105,99,93,92,94,98,96,101,105,99,95,102,106,94,87,103,91,110,100,105,99,112,101,96,94,103,98,95,93,104,95,100,102,95,94,107,96,105,96,105,102,97,96,97,102,95,105,103,101,102,101,110,104,105,102,90,95,102,102,93,94,107,95,101,92,96,97,97,93,101,108,95,99,99,91,106,103,107,101,99,96,99,98,108,100,95,80,103,98,97,100,112,112,99,99,114,102,109,97,76,102,92,102,115,99,92,91,106,101,101,88,90,107,106,109,110,96,93,99,109,92,87,98,85,99,86,96,101,94,92,107,100,105,99,100,97,99,105,98,111,96,101,96,102,86,101,105,106,101,91,102,93,88,90,102,97,83,109,91,100,95,95,99,97,104,105,91,106,93,98,98,87,134,107,107,89,103,103,109,108,90,96,109,118,100,111,98,90,95,86,103,100,100,98,89,115,99,119,98,92,97,105,86,92,87,99,91,98,101,104,103,103,91,108,110,95,108,98,96,97,102,85,106,87,104,95,92,98,92,88,109,101,108,93,113,98,101,88,92,93,100,100,107,101,98,93,115,91,100,89,91,101,102,110,95,111,104,99,102,107,95,100,96,99,91,91,91,95,99,106,98,116,103,90,98,106,114,100,98,89,95,104,82,102,70,103,94,100,91,89,93,94,99,112,102,94,93,83,100,101,102,95,96,95,98,102,109,104,83,110,106,82,105,104,97,107,99,128,108,95,111,101,97,98,104,90,94,105,105,98,106,96,100,100,99,99,104,103,104,102,106,97,102,100,100,93,98,89,108,74,89,98,104,98,103,94,101,98,96,100,111,102,104,101,93,90,112,121,102,88,95,104,92,103,105,96,92,96,103,87,100,100,105,80,100,92,71,106,89,123,96,100,108,101,100,89,104,101,91,103,88,120,94,98,89,102,134, +704.93372,108,99,88,102,95,98,103,96,87,97,100,91,89,93,91,93,91,105,103,107,105,93,108,91,102,89,98,118,99,98,102,102,98,92,101,103,104,111,91,102,100,97,90,104,91,102,89,102,104,107,98,94,98,105,103,87,104,96,95,89,91,98,82,92,93,85,98,92,96,100,98,98,97,97,94,110,92,101,115,105,105,89,95,90,101,104,97,98,94,84,98,95,100,92,97,94,95,80,99,94,105,92,105,97,81,104,94,94,97,108,96,95,94,104,109,106,106,97,104,95,101,106,100,106,105,106,102,104,100,105,91,115,71,98,113,86,96,94,95,94,101,78,109,102,99,107,100,104,88,97,113,86,114,105,96,99,90,98,96,96,103,85,102,102,95,89,94,99,100,102,99,109,105,91,103,94,101,95,103,104,102,102,94,100,95,99,94,91,96,103,107,94,100,109,95,106,95,97,101,95,116,105,104,100,110,93,102,97,100,108,97,100,96,105,101,96,101,96,90,102,102,110,92,103,96,102,98,90,91,106,100,91,87,104,105,109,97,99,112,95,99,98,102,100,100,96,98,98,103,110,98,116,96,101,102,109,114,100,94,95,95,98,109,103,97,99,99,106,105,90,113,98,95,93,110,98,105,101,108,90,100,107,94,97,100,101,88,88,95,110,101,61,104,99,110,103,79,103,95,101,108,94,92,104,94,99,99,101,98,103,92,99,98,109,97,99,109,106,106,91,102,95,106,102,93,100,109,99,102,102,103,89,100,106,98,92,80,100,94,100,98,98,101,95,100,110,102,117,117,105,89,101,97,92,98,112,88,100,106,99,109,98,95,120,102,90,94,100,95,108,87,101,103,97,91,98,99,101,105,123,109,102,100,87,86,103,94,97,102,98,96,100,116,96,96,94,98,102,81,100,103,98,97,109,101,91,104,99,103,99,91,108,92,97,92,93,84,91,110,99,95,101,93,81,100,88,110,79,100,104,104,95,99,103,101,77,101,105,98,96,100,99,95,97,92,103,98,97,106,96,87,105,88,101,98,98,95,114,104,95,100,110,108,109,107,111,118,95,95,110,97,102,90,96,100,99,91,110,93,97,91,93,100,87,104,110,100,98,90,99,106,99,107,95,102,99,90,102,96,107,106,101,98,101,108,95,94,106,92,102,111,96,94,110,88,102,102,136,92,103,93,106,96,98,106,102,99,102,100,94,105,95,98,95,98,94,99,102,105,106,97,95,96,94,101,95,94,93,103,103,96,101,107,90,93,101,78,88,88,102,92,106,103,108,99,93,104,102,87,97,92,98,101,112,100,113,99,87,97,98,106,100,100,97,100,101,98,99,110,107,103,102,99,98,100,97,113,104,103,98,100,99,97,98,107,100,102,94,104,105,109,104,101,104,107,97,109,82,89,96,98,71,104,99,87,101,99,102,105,90,93,93,88,99,106,103,87,98,110,97,85,98,107,101,96,92,107,84,100,108,97,96,91,95,103,92,90,97,90,93,98,101,104,105,97,105,91,97,91,98,110,113,95,100,96,100,92,98,105,99,102,100,110,91,97,92,108,99,90,100,124,102,95,102,92,102,96,110,99,93,108,94,89,81,106,105,100,100,110,98,100,98,94,103,94,92,106,89,70,93,116,93,108,102,96,105,102,100,99,112,110,99,88,101,105,96,86,69,97,86,104,103,96,96,86,105,108,109,100,95,104,97,113,107,93,112,95,102,97,93,78,94,90,92,86,100,101,105,101,95,91,107,95,100,99,102,101,89,105,99,96,92,88,109,91,86,97,95,92,97,100,99,100,96,104,114,99,108,91,104,95,92,104,103,101,100,115,95,120,101,107,139,92,97,91,97,104,93,97,88,99,103,90,97,115,102,103,98,111,95,94,99,98,93,106,103,68,103,105,96,93,101,110,87,110,103,91,97,99,91,97,111,105,110,105,96,135,110,91,98,102,72,89,101,95,106,97,99,95,101,90,97,112,106,101,94,112,95,92,98,103,108,114,94,94,105,78,101,100,95,90,106,104,101,109,99,101,105,74,95,102,96,99,106,113,92,87,106,97,99,108,101,102,90,93,100,111,102,105,96,103,106,91,111,100,99,110,105,101,84,110,106,97,98,72,100,101,102,95,105,102,102,108,92,95,98,100,95,99,102,106,101,110,99,107,94,105,91,102,103,106,109,103,93,92,82,100,94,103,98,90,95,98,98,96,94,107,95,91,105,98,107,100,108,110,100,95,98,93,105,105,101,95,93,93,92,97,97,100,87,91,104,105,101,97,107,103,97,92,105,95,101,100,125,93,95,96,105,94,92,97,103,100,94,103,93,103,91,99,105,88,100,100,103,98,86,116,97,102,95,102,98,103,88,102,101,96,94,104,109,98,110,101,95,97,113,97,98,105,109,105,100,101,92,96,91,94,110,138,92,109,106,99,101,99,106,105,90,102,97,105,110,98,108,107,104,97,96,107,101,113,103,97,92,102,99,109,107,82,97,81,96,109,118,91,105,102,104,98,114,90,101,105,111,93,92,81,110,92,101,102,103,92,98,105,100,98,104,99,96,98,94,102,89,77,105,90,111,104,93,91,92,106,99,101,109,104,99,115,96,106,102,112,101,87,103,102,99,98,108,114,103,100,93,103,103,95,109,99,104,108,97,104,101,88,102,109,98,109,101,101,100,102,101,95,95,110,102,109,94,91,101,108,105,91,101,97,95,104,91,101,104,117,101,111,97,100,113,108,98,100,108,89,107,110,115,115,92,101,93,102,109,94,101,97,92,98,95,95,98,104,93,99,102,105,105,97,104,104,98,94,90,110,105,103,98,109,100,96,101,106,108,106,120,102,92,96,113,98,97,102,86,102,129,106,97,103,108,91,103,100,96,98,113,87,96,101,92,106,100,70,99,90,100,97,85,110,90,105,104,93,101,98,95,117,98,96,108,98,102,103,96,113,104,90,101,104,102,98,102,102,103,98,88,100,117,102,108,101,90,98,97,113,98,99,96,108,116,99,99,109,96,89,97,103,107,90,113,105,99,100,100,89,95,112,70,103,91,111,95,118,93,91,106,111,91,93,94,97,98,106,95,99,92,101,98,98,102,106,90,100,94,103,109,106,97,83,114,96,101,83,97,96,113,94,100,100,101,104,101,97,117,105,107,113,108,97,102,101,110,98,100,98,97,106,104,105,99,106,87,88,102,102,100,89,102,96,91,98,102,105,89,102,90,91,106,101,100,92,94,100,87,100,106,106,96,104,103,101,109,101,108,92,88,95,93,102,96,103,100,96,87,92,103,101,107,98,101,96,100,109,103,103,110,96,99,86,94,101,97,88,93,95,98,107,92,111,103,95,85,94,102,103,108,121,107,102,96,98,99,90,116,96,92,87,97,91,104,98,104,97,100,99,101,91,89,104,107,93,109,105,105,106,108,96,108,91,98,101,117,91,119,102,91,104,102,98,84,100,106,102,102,91,104,87,99,100,106,98,99,103,113,99,112,104,100,102,98,106,107,108,95,81,107,103,101,96,103,104,99,95,104,91,101,94,98,98,101,104,109,111,89,103,102,98,93,85,105,113,93,90,103,104,87,97,91,99,110,94,107,104,102,114,96,107,102,101,102,104,92,104,91,103,105,92,92,97,94,104,107,103,91,106,92,87,95,103,103,96,106,108,111,103,87,97,100,96,93,103,105,107,93,98,106,96,98,94,64,97,95,104,105,95,96,99,96,110,94,102,91,101,94,101,94,99,99,88,112,109,100,101,103,100,107,100,96,105,93,91,96,94,103,85,76,93,76,100,91,108,105,79,91,108,99,81,103,101,96,93,108,95,98,95,108,102,91,102,104,100,98,105,98,104,110,101,97,110,103,114,103,97,89,92,105,106,94,95,96,94,108,93,103,98,99,95,94,101,94,102,89,99,94,106,96,99,102,102,98,99,102,96,101,98,115,96,109,109,92,102,95,98,100,93,105,95,95,96,84,101,103,92,100,87,99,105,93,100,91,95,101,96,102,90,92,104,124,113,103,96,102,104,87,96,100,94,111,98,99,105,94,96,92,106,89,85,102,97,127,101,97,104,139,99,118,95,106,98,96,105,112,63,95,94,93,91,113,105,93,99,115,105,97,92,96,93,95,106,99,103,107,74,96,92,94,107,107,103,95,96,95,104,85,87,94,93,99,106,101,103,99,94,93,102,98,88,92,110,96,107,102,112,84,96,105,109,96,104,109,104,100,97,125,99,95,95,105,94,98,100,110,99,103,109,94,96,108,107,101,99,100,110,100,103,94,105,91,98,95,112,112,99,94,112,95,113,113,98,99,102,117,109,83,100,108,97,94,101,92,102,92,97,112,116,98,107,115,100,94,99,103,104,105,99,99,92,95,110,95,111,101,91,100,102,99,98,94,102,91,95,104,114,102,93,90,103,83,99,94,95,98,96,106,96,105,104,92,103,90,91,98,101,102,100,107,112,104,90,91,98,98,96,92,100,100,120,108,98,96,96,94,98,102,96,104,103,97,92,101,107,95,99,102,103,96,101,91,105,78,114,97,97,103,93,89,93,104,91,98,105,94,94,100,94,132,115,101,106,96,103,119,94,96,100,91,99,99,95,103,99,131,113,102,91,77,94,96,106,91,112,91,101,87,106,120,96,104,87,97,108,95,96,97,104,93,99,103,112,109,100,91,97,99,99,101,100,100,90,80,101,94,109,94,87,102,96,96,87,107,103,96,100,117,96,101,96,91,100,96,107,97,84,98,112,109,113,98,93,103,75,114,95,92,96,96,113,94,108,99,113,103,106,109,106,106,105,103,106,112,91,100,113,106,97,91,114,98,98,106,102,97,101,109,107,92,105,93,106,109,85,100,107,106,87,94,112,112,111,105,117,93, +705.07507,116,72,92,89,102,105,102,105,99,106,103,95,92,103,108,92,95,124,102,97,114,100,73,109,101,102,108,102,95,104,97,97,105,96,104,113,96,88,106,90,93,99,106,106,107,96,107,112,95,125,91,106,95,101,110,95,102,98,101,95,103,102,102,96,102,99,102,102,99,105,112,113,104,100,101,117,87,103,104,101,90,102,95,93,106,83,99,104,99,96,93,109,128,78,99,81,110,94,106,106,85,98,102,98,87,101,94,105,90,91,90,92,103,96,105,103,94,102,88,84,92,102,107,101,97,103,105,100,101,92,98,101,105,90,104,101,87,112,100,101,91,99,100,99,96,88,107,102,99,90,108,113,103,98,91,100,91,106,109,102,99,98,102,100,105,112,92,105,94,98,112,101,110,102,96,98,102,104,99,104,102,108,91,99,95,98,100,89,98,87,110,102,106,110,94,88,104,98,98,104,105,108,100,95,90,98,109,88,102,106,98,104,101,102,94,97,99,103,100,92,105,108,99,92,91,117,95,91,108,111,89,86,115,102,101,104,97,102,101,106,101,106,104,112,95,98,109,101,98,100,103,99,101,100,96,105,93,99,100,108,105,104,100,107,99,104,100,95,110,87,96,104,91,99,109,99,105,95,104,91,100,101,112,95,84,103,96,110,110,93,87,92,111,104,105,112,104,100,98,103,101,99,87,99,87,110,101,91,91,109,78,114,107,100,89,88,99,105,112,93,99,105,100,109,107,102,100,96,95,105,109,107,104,100,102,110,100,97,101,99,102,100,101,97,96,104,96,104,108,96,99,95,110,103,101,95,102,117,104,95,82,92,95,105,90,94,102,91,104,105,97,92,94,109,108,91,114,91,106,97,102,99,96,101,93,93,97,100,98,97,100,99,101,125,88,97,107,103,99,101,110,95,93,94,91,105,86,90,105,95,99,91,96,114,91,97,113,110,97,92,94,95,96,102,106,105,102,101,93,99,94,100,102,107,97,99,98,84,85,102,102,101,92,96,97,109,86,105,89,108,112,90,96,109,91,97,105,106,91,103,83,105,101,102,105,113,97,108,106,97,98,101,101,100,97,86,83,126,87,109,103,113,108,101,95,101,87,111,100,83,98,104,100,101,100,105,86,90,106,108,100,85,98,96,100,102,86,113,117,89,105,115,87,106,93,94,103,100,96,101,105,102,95,94,114,106,94,98,98,103,100,99,93,105,98,106,95,97,107,103,96,99,81,95,98,94,97,102,104,101,103,92,113,90,95,105,109,95,90,84,104,102,95,98,101,103,106,102,78,94,89,109,104,117,112,105,95,102,104,82,107,92,102,91,92,97,109,96,91,100,97,105,91,103,102,99,101,89,108,102,100,92,114,90,90,96,110,95,103,97,106,124,101,101,102,93,104,101,107,94,102,98,104,100,112,101,103,105,108,105,109,105,87,100,101,107,111,108,109,116,106,100,100,101,92,101,103,96,101,112,102,127,103,102,93,99,99,101,107,117,101,111,97,104,89,114,118,100,104,99,108,86,98,96,91,90,100,95,106,101,107,88,117,95,90,94,105,96,95,103,108,100,89,108,97,95,94,100,99,94,101,88,101,89,106,94,97,101,96,90,106,99,104,100,99,104,96,92,100,93,98,99,97,83,92,96,101,103,102,80,95,97,95,101,80,102,98,93,104,96,107,89,97,95,107,112,103,115,103,98,99,83,111,97,96,99,99,87,102,100,112,109,105,98,88,109,101,98,104,95,111,106,107,93,99,96,91,104,98,96,102,100,126,94,103,95,87,90,100,102,98,97,111,113,100,114,101,91,91,102,115,86,101,97,102,102,116,96,99,107,112,95,91,107,102,106,102,96,96,102,104,118,103,107,101,109,95,100,106,97,102,96,101,100,90,106,105,94,101,108,89,91,101,99,104,97,107,99,96,103,89,88,108,88,101,109,89,97,104,101,110,108,102,90,103,98,115,97,105,100,108,80,106,104,125,108,113,98,105,101,109,110,110,114,111,102,105,102,98,86,95,122,98,98,105,101,113,99,91,110,106,102,98,99,100,98,84,106,94,92,99,102,117,106,100,99,88,100,86,95,99,110,85,96,106,101,95,112,98,106,95,106,107,100,96,97,68,90,106,108,107,108,109,104,104,108,105,91,96,106,102,101,100,101,100,92,108,93,94,113,101,99,71,116,122,102,91,96,113,104,101,104,95,97,105,101,87,91,86,105,104,90,93,104,96,93,89,92,93,93,104,105,96,102,98,109,94,99,91,93,93,98,97,105,101,110,99,105,87,93,91,99,93,96,94,91,103,96,104,101,99,109,92,98,100,106,128,87,113,103,105,94,107,105,101,103,111,74,96,90,101,129,71,112,93,101,100,106,112,107,101,95,105,103,97,110,98,101,97,96,83,97,112,118,101,103,96,105,92,102,100,97,100,79,87,103,104,100,96,100,107,101,97,82,97,99,96,88,104,95,109,112,90,94,104,110,108,101,94,89,108,101,105,106,107,89,95,101,90,108,96,104,92,94,111,102,99,96,100,98,91,99,100,96,103,107,102,113,93,96,100,108,98,85,91,106,102,103,102,99,100,95,83,91,96,92,103,103,105,93,104,97,107,102,89,99,106,115,88,95,107,95,102,77,93,99,98,87,94,94,99,101,108,100,102,125,113,91,108,99,102,96,99,87,96,112,111,106,95,112,106,98,111,107,98,96,98,82,109,110,90,104,99,88,91,108,94,93,97,101,94,103,104,94,94,120,87,89,96,92,115,100,108,90,106,108,91,105,94,96,105,109,107,94,109,98,109,98,116,109,101,104,117,97,94,104,95,97,96,104,103,103,115,109,91,101,122,103,96,99,99,91,91,99,97,97,110,103,97,104,98,104,96,104,111,93,101,116,107,101,108,100,100,105,104,105,98,99,94,99,97,107,101,100,92,105,101,106,104,88,94,131,94,112,85,95,100,110,102,93,100,110,105,104,104,95,94,111,109,105,101,106,91,111,111,94,107,105,104,106,88,97,87,98,96,113,100,110,81,101,110,101,107,88,106,93,117,98,93,102,94,116,92,99,91,99,107,95,105,96,103,106,104,93,101,99,92,110,105,99,101,92,89,110,104,104,105,100,92,100,97,97,72,96,96,101,111,88,96,90,99,102,114,99,92,87,101,95,117,95,80,103,118,111,104,106,104,140,112,108,100,105,102,103,95,105,92,102,96,110,105,120,98,108,104,120,110,113,112,108,122,91,101,99,106,88,93,96,100,102,94,86,99,90,91,105,95,98,111,89,72,96,112,97,95,106,107,100,104,115,93,100,101,113,99,103,103,104,103,91,92,113,93,98,92,103,99,95,111,95,88,96,94,86,132,108,90,102,96,95,106,99,92,99,96,102,102,107,89,94,98,105,97,116,103,102,114,98,98,104,98,101,106,95,98,92,95,108,96,109,101,101,101,97,109,107,102,105,105,94,111,103,91,98,110,113,105,70,109,91,116,106,109,111,108,89,104,94,101,103,117,94,97,96,102,121,103,97,105,102,102,95,103,96,99,95,103,106,98,100,102,97,97,94,98,98,101,106,98,71,90,96,110,99,106,100,100,92,96,98,98,104,102,95,98,81,93,104,108,94,103,101,85,99,103,104,87,96,95,99,99,99,100,102,101,102,104,105,99,100,99,101,95,91,109,95,100,94,102,106,96,96,100,96,101,103,103,98,91,101,97,95,97,96,107,98,105,108,115,95,95,101,87,92,97,103,109,95,107,87,99,105,99,101,106,103,109,109,102,103,107,96,107,98,102,88,98,108,113,102,86,91,103,102,95,100,97,92,86,109,90,97,88,88,111,101,102,106,103,98,103,100,99,103,95,105,101,96,95,112,102,98,90,86,96,105,95,102,95,101,99,104,103,104,107,97,106,101,106,106,87,95,101,124,108,120,98,103,106,98,100,95,97,113,81,104,101,107,109,96,108,117,91,99,104,102,97,102,103,99,100,108,110,95,95,104,120,93,127,106,100,92,94,85,92,109,114,98,99,99,99,105,99,101,101,112,99,96,110,99,99,99,96,91,100,113,98,99,100,89,104,112,105,101,96,100,89,115,102,94,86,99,98,91,96,104,96,104,88,94,93,87,98,94,93,98,92,94,108,111,103,95,100,94,93,104,103,94,103,96,105,87,103,96,96,106,92,106,93,93,95,109,85,94,104,107,81,103,104,121,116,93,104,105,113,93,96,120,99,102,95,126,107,93,97,103,96,104,103,105,89,101,89,88,113,98,98,93,81,92,101,106,93,91,92,93,102,104,101,105,103,97,105,94,97,103,94,91,101,101,98,90,100,107,99,103,107,110,117,96,97,100,106,106,100,91,113,99,102,98,97,111,109,101,97,109,110,122,110,97,91,96,109,101,90,111,118,99,97,91,96,97,96,99,90,97,101,94,95,102,99,107,93,99,107,91,96,99,96,97,92,103,69,102,111,108,105,109,97,99,91,93,89,93,97,100,111,79,94,64,94,101,87,79,96,106,116,100,101,91,94,94,98,96,98,99,96,90,96,91,85,108,101,100,107,110,114,115,94,91,100,89,104,107,108,99,100,100,107,101,101,106,106,96,97,113,101,91,100,100,101,102,106,98,95,109,115,118,107,103,96,91,104,104,100,103,99,91,95,105,99,100,110,105,99,101,111,114,102,101,95,96,102,100,100,106,102,101,95,98,101,92,88,103,96,91,104,98,102,112,95,99,94,111,100,105,92,105,110,113,87,92,126,95,95,90,98,102,88,106,95,95,98,103,86,87,91,103,97,81,103,100,100,88,137,109,84,98,95,95,102,108,92,100,93,106,90,105,99,104,100,120,95,90,108,107,92,104,105,96,112,117,88,97,107,102,113,103,98,103, +705.21643,105,94,107,113,103,100,123,92,107,101,104,91,101,101,102,97,74,116,99,107,109,98,98,99,101,101,105,92,100,103,114,95,95,96,102,92,99,94,113,102,89,133,88,86,99,92,106,105,93,89,101,112,105,112,79,99,98,101,95,92,105,96,89,96,104,109,89,96,106,92,99,107,85,123,102,95,91,93,99,98,108,87,114,121,107,95,99,110,97,109,98,110,103,108,99,95,111,87,106,87,102,96,110,96,98,90,87,109,81,112,91,104,105,109,109,95,98,101,105,100,76,90,91,104,100,92,99,101,100,102,104,99,94,99,97,107,101,101,105,72,104,111,93,107,93,108,106,107,96,90,103,110,97,75,91,92,101,98,103,91,97,108,97,96,110,92,106,98,87,100,104,107,100,100,114,108,93,94,96,95,92,96,103,93,101,106,104,92,107,78,106,98,98,104,104,82,99,96,106,95,109,92,97,92,103,109,94,105,100,94,94,105,90,102,107,91,101,95,91,90,97,98,103,90,101,90,101,103,107,94,103,100,111,96,105,103,89,106,92,98,98,100,100,84,96,103,102,105,99,99,87,106,98,88,96,82,95,107,107,105,95,103,103,97,95,91,101,94,95,95,109,102,108,108,110,107,100,102,109,92,98,95,103,102,98,113,89,105,106,105,92,99,92,102,113,99,104,112,102,92,86,102,113,114,94,109,94,99,103,110,91,102,110,97,100,98,92,102,98,109,97,98,94,91,102,121,88,91,109,107,102,100,93,101,104,106,93,90,92,103,103,86,96,97,99,115,100,97,111,106,105,109,99,107,110,111,105,100,91,106,100,97,96,105,95,88,94,109,98,93,105,92,95,91,102,97,95,103,84,100,110,100,112,99,85,102,88,103,101,95,114,98,96,98,95,96,93,99,112,90,86,102,94,111,94,100,102,106,99,91,88,97,95,98,108,97,94,99,113,95,93,104,94,95,92,104,95,98,97,103,95,106,105,112,99,105,100,99,90,110,105,99,104,103,90,95,114,82,99,108,88,100,109,105,107,101,88,104,101,109,105,133,115,102,105,91,88,95,104,96,100,91,99,94,88,110,91,104,104,108,105,102,97,97,97,106,99,98,92,104,104,97,105,99,92,104,108,101,104,92,114,104,94,103,105,90,99,93,99,108,94,106,106,80,97,97,99,92,89,89,94,98,103,90,102,106,91,112,98,96,62,98,97,90,107,100,96,96,98,99,101,105,96,110,96,107,96,95,99,98,98,110,96,102,96,93,103,109,110,103,106,113,98,105,101,96,94,103,97,105,90,92,87,101,99,103,105,96,113,104,91,104,97,99,93,109,99,103,101,101,95,88,92,98,106,103,96,99,102,115,92,102,101,97,92,87,103,121,97,105,101,98,133,111,98,87,98,98,100,93,91,97,92,92,107,98,97,120,99,106,106,109,95,108,93,104,104,84,103,99,98,94,97,103,105,90,103,104,96,107,98,112,91,101,94,101,110,100,95,94,98,106,90,108,100,132,94,98,95,101,114,103,88,111,110,101,107,98,109,97,102,92,106,98,97,97,92,108,105,77,105,101,86,111,102,90,74,99,106,101,94,86,84,87,93,99,103,104,87,86,108,102,105,97,105,100,97,101,86,90,110,99,94,100,101,102,98,109,96,72,110,92,97,93,109,100,99,97,114,97,113,91,100,100,106,105,107,109,100,114,94,101,98,105,104,103,103,102,95,99,84,101,85,102,105,105,99,104,91,97,103,102,100,101,103,98,114,107,106,95,108,101,97,100,89,105,112,98,99,108,97,111,117,100,103,98,108,121,99,102,97,99,86,87,110,85,95,90,105,113,102,84,102,105,95,98,109,110,95,109,102,109,97,96,105,104,96,91,103,99,108,109,104,95,97,95,88,106,102,100,97,113,102,102,95,96,99,99,95,100,103,83,92,91,96,102,97,105,91,101,92,104,102,98,110,115,92,96,111,109,96,101,100,99,96,100,105,90,108,104,96,95,97,110,99,101,114,107,98,98,101,114,98,102,105,100,87,106,99,95,83,119,94,102,91,96,100,99,97,94,121,90,122,108,105,64,96,98,103,87,109,103,90,74,103,97,94,105,100,102,102,104,106,101,98,104,96,101,107,107,84,101,101,97,104,92,91,103,104,100,104,98,109,110,92,103,107,105,95,101,109,96,109,97,110,111,109,107,96,98,75,109,98,101,105,92,115,91,89,106,97,105,101,113,97,77,99,99,96,96,99,96,103,104,103,99,88,109,99,111,94,106,97,101,101,101,107,102,95,117,86,108,91,94,98,102,122,101,102,101,105,80,99,91,101,101,93,95,98,95,82,96,112,103,104,92,101,98,112,105,105,89,92,99,84,100,113,103,91,91,94,109,102,109,82,106,95,103,93,96,86,86,94,101,108,95,103,95,98,106,96,107,93,107,98,118,97,108,94,83,101,92,87,110,105,100,109,103,108,99,91,100,100,93,102,91,99,97,106,107,104,90,95,74,97,117,92,97,85,92,100,107,117,113,99,101,91,95,93,113,96,94,97,92,102,96,101,110,101,84,95,94,94,101,105,106,93,102,95,94,91,105,91,103,101,99,97,98,106,95,107,102,101,94,113,113,106,105,109,105,98,97,106,101,96,116,103,92,95,96,97,93,109,102,104,95,113,88,104,113,92,100,109,107,111,94,103,97,94,104,113,101,91,93,87,92,103,100,99,109,98,109,100,94,102,89,101,94,90,91,102,110,90,103,100,102,113,118,100,99,90,105,109,94,75,110,94,100,84,90,95,106,101,122,102,95,100,109,100,94,105,109,105,93,96,99,87,99,99,102,119,103,119,101,93,91,91,101,96,96,105,92,103,105,95,95,96,106,108,101,103,101,105,98,99,96,99,96,86,102,104,96,97,99,92,98,91,103,107,106,97,94,106,88,105,83,99,99,101,103,109,92,93,106,101,100,102,111,98,93,90,103,104,105,103,102,96,97,112,105,104,99,95,100,101,89,88,108,96,96,99,91,99,110,111,102,91,102,95,97,109,93,98,101,103,92,97,105,96,115,94,114,101,98,105,95,99,96,90,94,105,89,93,92,102,84,106,90,74,107,103,93,90,109,99,94,103,97,103,89,103,87,108,95,95,91,91,95,97,92,102,96,99,88,103,114,89,92,100,100,98,94,100,106,97,93,100,97,96,106,98,104,102,81,96,94,102,100,93,102,83,101,90,102,108,105,96,95,94,102,111,110,97,101,97,97,113,98,101,96,107,94,102,90,92,103,107,97,85,73,97,107,97,83,95,104,106,101,95,88,106,107,98,112,91,101,103,98,99,106,88,130,101,105,93,113,103,102,112,99,101,94,100,93,99,104,100,100,99,99,99,104,101,96,109,101,106,98,94,91,86,91,97,109,96,107,92,105,99,109,92,100,105,95,94,90,98,85,109,107,103,90,103,97,97,102,106,98,97,89,99,99,102,96,90,106,108,98,102,62,98,96,100,113,90,100,132,102,95,92,103,98,92,91,106,98,92,95,97,96,101,92,110,109,99,98,99,99,109,113,99,99,104,100,111,88,98,102,104,95,105,95,97,109,100,98,105,111,109,102,95,116,81,105,94,94,100,95,106,109,102,97,105,84,103,97,104,93,90,100,95,96,103,98,102,100,98,106,97,108,101,90,103,94,105,104,99,93,98,98,93,92,103,106,109,115,101,100,96,99,101,107,100,92,100,108,100,109,96,106,96,83,100,88,93,103,98,92,107,97,95,89,121,99,92,100,101,101,106,98,92,80,87,100,112,101,103,113,102,92,103,95,109,87,106,98,98,108,94,87,102,105,98,102,112,90,102,104,92,100,99,97,105,109,97,95,94,111,113,98,92,103,100,103,103,97,87,102,98,91,117,88,113,99,92,115,108,89,113,87,98,66,87,93,91,97,98,107,96,103,103,95,81,105,99,95,112,108,93,97,107,94,95,98,96,96,95,75,96,111,97,96,106,104,92,92,113,100,101,111,112,108,79,101,99,104,97,99,98,96,103,90,88,116,93,96,98,95,100,80,80,92,102,99,109,101,83,96,90,104,100,77,93,102,97,99,87,96,97,108,102,102,99,100,104,113,95,104,98,102,101,99,98,108,108,94,98,100,101,99,106,103,94,93,87,106,100,98,93,99,108,100,106,97,103,101,95,116,100,103,101,108,97,100,105,98,98,105,91,100,95,98,99,99,85,94,106,102,99,92,98,96,102,87,98,113,91,91,96,90,94,103,92,91,99,99,105,103,107,98,112,94,105,102,95,93,104,94,95,91,113,87,112,98,107,101,89,106,97,106,100,87,102,99,105,76,111,100,92,116,74,96,105,111,94,83,97,110,98,93,97,96,99,99,102,109,104,109,109,106,87,87,97,98,96,97,96,104,99,98,105,92,98,94,116,93,93,103,100,96,97,98,108,91,92,96,107,90,90,103,103,96,106,100,99,97,102,96,89,105,103,89,91,112,97,99,101,102,101,95,88,97,93,103,67,101,104,102,89,100,98,103,105,97,117,98,97,80,99,92,108,99,93,91,97,94,91,114,89,99,113,87,92,113,108,99,104,90,100,96,96,95,89,105,94,117,108,73,100,96,104,106,111,99,100,112,99,104,92,83,74,91,96,107,90,107,88,104,113,91,105,90,90,97,116,95,98,104,83,100,115,99,93,101,103,104,98,96,95,82,104,97,97,103,91,91,90,98,96,96,107,109,103,100,96,98,109,98,117,98,97,109,94,100,99,98,88,106,94,101,111,93,87,100,106,109,102,106,91,99,108,101,87,91,94,108,92,104,101,101,98,99,92,97,93,91,89,110,103,103,115,93,103,83,88,87,97,109,95,101,105,96,96,93,96,98,113,91,116,103, +705.35773,108,82,106,97,91,101,97,101,109,127,100,93,94,99,105,105,92,109,107,96,102,101,88,107,91,82,90,82,91,114,95,103,104,103,102,100,90,91,82,110,99,104,110,110,107,102,95,90,109,108,121,94,96,104,102,97,142,101,107,96,111,134,95,99,110,104,101,110,107,112,102,96,94,102,104,107,96,104,102,97,114,101,91,112,107,89,96,103,65,95,113,105,94,101,115,87,103,107,98,101,100,106,82,86,95,92,101,107,97,108,103,103,121,99,95,100,94,109,102,95,90,105,97,113,93,92,96,109,97,106,98,107,101,109,110,112,105,110,102,104,87,84,102,88,98,93,123,113,99,98,90,97,108,101,100,95,80,90,111,115,104,94,99,105,97,85,103,97,107,98,97,116,106,90,87,90,111,97,75,110,98,99,88,97,101,90,95,100,103,101,117,86,98,102,93,101,98,91,102,94,103,99,90,100,94,103,89,98,106,103,102,102,101,98,75,93,85,97,98,107,111,105,96,93,101,109,100,105,94,105,88,94,81,110,99,106,108,98,101,102,104,102,103,101,96,95,109,108,97,102,105,111,100,89,101,97,103,100,95,98,100,106,98,105,100,102,98,103,105,108,110,95,104,108,100,93,104,103,117,91,101,100,98,88,107,100,110,95,106,95,99,102,99,97,104,102,98,105,109,104,100,100,96,107,92,117,97,96,100,101,91,102,96,110,97,89,104,104,102,97,101,100,101,87,112,94,105,86,104,112,96,96,109,106,106,110,98,96,105,77,97,93,101,99,106,94,101,106,102,109,96,101,109,112,100,100,101,97,106,104,98,102,100,100,107,106,90,101,109,103,107,101,95,103,89,92,81,105,110,87,106,99,83,107,95,97,93,94,109,100,109,83,92,104,98,112,112,96,96,101,98,92,105,95,108,109,90,98,108,97,96,92,98,102,103,89,92,101,104,98,103,104,97,102,90,101,93,103,96,106,85,109,97,91,95,88,90,102,101,82,107,100,113,107,100,95,98,89,111,105,107,99,94,103,96,104,104,102,109,100,104,100,95,102,103,104,69,114,107,105,106,107,104,97,88,102,97,110,123,100,99,108,106,100,97,88,109,103,97,104,110,98,103,99,87,97,102,107,110,111,101,100,106,106,106,98,91,108,103,100,101,96,100,102,103,109,97,101,106,92,113,98,105,91,114,106,99,94,98,95,82,103,103,101,109,110,99,101,100,84,98,124,77,103,98,89,109,103,106,108,88,107,105,102,104,99,88,104,87,106,115,91,107,103,112,115,121,101,101,101,96,101,102,97,110,99,112,94,110,106,101,109,103,97,110,107,99,106,109,102,100,100,111,99,114,100,100,103,99,99,107,95,90,93,94,102,91,97,128,108,91,99,103,100,102,107,105,113,96,109,99,107,99,101,119,88,101,97,98,101,96,99,96,95,99,112,96,83,107,90,110,103,98,99,102,100,105,103,105,98,102,100,97,97,88,108,99,100,96,108,96,95,97,95,99,105,102,103,107,105,97,107,117,106,108,103,98,100,97,103,103,105,108,99,101,95,92,91,101,89,106,98,105,102,119,111,98,106,107,101,104,94,108,96,117,87,99,105,98,106,98,108,103,102,99,101,98,102,107,113,102,113,101,115,99,105,101,120,102,107,103,108,97,104,93,94,101,109,105,102,108,96,107,96,104,102,100,100,95,106,108,97,107,99,93,116,116,107,95,122,102,99,103,98,98,104,92,98,110,101,112,98,100,104,101,113,100,106,106,90,106,114,97,94,92,101,108,82,98,110,105,103,111,108,110,107,104,96,101,126,109,111,92,100,114,101,106,103,100,104,109,83,96,89,89,110,107,107,110,105,99,114,101,104,99,96,103,94,95,123,106,106,101,102,99,105,109,106,105,101,92,100,104,96,106,96,96,100,98,95,112,102,105,103,101,101,92,100,106,103,102,83,98,110,99,106,83,100,103,102,109,78,102,102,92,113,99,90,101,101,100,97,105,102,103,97,96,121,110,110,116,110,98,106,103,88,116,103,92,93,113,114,90,99,90,107,113,105,103,97,100,106,121,106,98,100,99,105,99,72,108,97,100,94,101,91,100,94,106,106,95,102,99,102,97,96,95,105,115,103,107,99,99,110,83,99,99,96,101,114,102,100,106,105,109,98,101,99,106,104,115,72,104,102,90,103,100,102,103,105,112,98,104,95,108,104,99,97,95,108,90,101,95,106,106,96,100,67,92,96,98,99,98,103,95,107,98,117,89,91,92,106,128,100,104,103,100,103,96,104,105,103,96,109,90,100,100,95,99,91,105,104,102,99,106,110,97,97,101,109,96,98,108,108,105,97,93,102,109,95,111,99,87,102,101,96,107,102,95,105,105,109,100,92,84,98,97,104,93,91,93,112,89,99,101,104,98,104,97,82,101,112,106,112,104,100,98,85,85,98,105,97,93,96,100,100,105,96,99,97,104,115,98,124,98,91,98,104,101,110,136,92,103,96,97,100,95,97,89,94,94,106,86,102,109,98,93,101,86,90,111,104,86,91,93,101,91,92,93,99,94,103,94,95,106,102,105,93,103,101,98,88,82,108,90,104,101,93,104,96,102,111,105,102,87,104,91,102,119,97,101,100,110,98,99,100,105,99,95,83,88,107,99,113,102,95,105,99,95,103,94,101,96,111,98,94,112,80,108,103,96,101,105,101,87,105,95,96,97,96,100,99,104,108,100,92,95,103,122,103,98,100,102,106,105,103,95,102,97,94,98,106,95,105,102,103,95,100,109,105,100,105,101,105,97,99,100,98,107,101,103,83,106,92,94,102,95,99,106,102,120,104,103,101,95,99,95,108,98,108,92,91,108,100,99,100,69,104,93,105,99,91,102,101,102,91,88,92,92,96,95,91,98,100,110,108,101,107,103,107,100,101,96,98,109,101,95,99,102,112,101,95,97,91,98,96,109,91,98,100,99,96,107,91,110,112,102,97,104,105,104,91,91,101,98,101,105,100,102,95,98,103,99,102,102,101,94,94,94,96,92,104,117,97,103,95,104,94,102,90,90,107,93,104,96,92,108,84,96,98,89,106,79,95,100,96,98,107,96,105,104,86,107,107,106,94,100,102,102,109,89,103,93,106,97,99,113,97,102,102,100,101,91,89,98,80,88,108,101,95,101,93,96,102,105,103,91,119,99,106,93,101,90,89,103,105,82,79,105,90,100,100,97,99,97,104,98,108,107,95,108,110,91,104,99,70,102,97,98,93,110,98,104,86,96,113,96,98,78,88,99,93,100,96,100,102,100,102,91,106,100,125,97,82,103,112,92,91,96,104,104,105,93,94,97,100,100,99,97,101,98,94,91,101,100,103,93,106,102,99,95,92,90,92,95,105,95,104,102,94,98,100,99,99,113,94,92,91,90,95,86,96,109,103,97,93,81,99,91,90,96,101,101,88,104,85,90,101,96,108,105,105,95,102,91,124,115,111,92,99,85,95,89,101,100,100,95,112,88,101,86,97,99,110,92,106,100,103,104,98,101,108,113,90,107,104,89,86,109,91,95,103,99,98,102,91,77,106,106,100,97,98,103,104,113,117,94,104,112,105,105,102,99,100,109,101,88,95,95,97,96,93,98,104,107,103,94,101,111,104,103,108,98,102,99,94,101,99,109,106,101,103,96,104,78,104,98,98,95,102,93,98,99,102,111,96,104,102,103,89,108,96,88,102,116,82,96,110,93,99,97,104,106,86,96,104,98,92,97,94,111,92,103,95,110,92,97,112,98,104,93,112,94,113,98,97,109,98,98,105,109,102,108,106,95,103,106,101,101,109,101,100,96,96,98,100,98,102,89,104,89,101,104,104,107,104,96,90,107,100,99,91,98,93,94,104,99,103,99,104,104,91,88,102,93,95,98,92,103,98,96,107,99,104,103,100,94,103,95,105,95,100,92,109,109,102,101,100,108,90,83,102,92,104,94,92,97,109,108,104,109,102,98,103,100,98,100,92,114,92,113,98,106,98,93,100,110,101,89,93,103,101,86,100,84,103,96,113,99,97,96,92,98,96,94,101,99,104,98,91,106,103,100,100,113,109,99,105,95,108,96,74,91,92,105,109,110,98,101,75,95,95,94,108,92,101,97,97,91,106,104,115,106,101,88,109,93,94,92,97,96,102,109,101,102,92,109,121,92,95,115,97,83,82,106,104,102,96,109,100,100,96,106,96,93,104,113,110,104,99,92,97,109,100,100,96,97,99,90,93,98,96,110,109,101,109,102,107,91,101,104,98,99,92,94,108,98,102,95,112,105,123,116,110,93,117,104,103,100,107,105,104,105,97,105,100,89,102,117,78,84,102,103,103,109,99,93,103,99,94,115,109,101,95,108,94,98,110,100,96,99,90,96,103,110,98,96,88,99,98,113,95,87,63,93,89,96,91,99,113,101,101,96,88,96,108,97,96,110,95,94,93,99,102,108,98,96,104,88,88,88,88,83,88,92,106,98,90,97,91,102,100,95,99,105,101,107,95,101,104,101,89,93,82,98,99,90,113,106,104,92,106,103,97,101,102,100,102,83,96,102,88,98,96,100,100,105,98,105,105,89,101,102,102,104,109,103,111,101,91,104,107,91,106,103,100,101,108,100,101,109,95,102,91,106,99,107,92,99,108,98,103,99,100,109,89,92,100,110,100,99,106,101,86,107,98,91,96,96,98,97,94,104,93,101,88,98,97,99,100,111,91,113,105,117,101,101,105,95,109,103,93,108,100,111,98,98,117,100,99,93,107,99,96,100,104,103,101,104,98,108,110,102,93,89,100,93,106,107,96,92,102,93,105,91,114,89,96,89,94,103,96,108,108,95,97,98,121,116,95,107,91,93,96,96,98,109,96,117,99, +705.49908,98,99,105,99,92,105,101,114,105,97,94,104,111,101,108,106,88,114,96,134,103,98,102,100,105,86,94,96,106,101,94,89,94,100,94,99,102,98,104,113,103,104,96,107,98,93,104,106,91,93,101,94,109,105,90,130,108,92,102,89,103,104,91,103,114,108,101,101,95,90,95,112,94,112,96,101,99,102,100,87,88,105,110,95,108,102,99,102,103,94,102,109,101,103,86,95,101,95,106,100,90,101,88,86,118,105,108,103,95,84,105,94,114,94,104,96,110,96,95,101,111,98,105,103,108,112,108,105,111,103,91,104,95,98,101,101,104,109,105,107,97,105,80,122,97,100,97,105,105,98,100,91,101,105,89,106,103,104,114,101,89,112,91,96,96,93,101,102,99,107,101,121,120,104,111,95,102,100,98,117,102,103,99,98,107,90,90,96,98,95,98,85,94,103,113,86,99,101,97,101,101,101,92,104,94,95,106,109,103,111,104,107,100,100,107,106,104,107,94,96,104,96,103,93,96,96,97,101,107,107,96,103,104,113,79,102,102,97,105,94,93,125,112,111,88,101,101,104,97,113,106,102,113,107,106,100,123,107,92,100,89,93,94,108,98,96,94,113,105,105,112,101,86,101,98,98,106,109,99,97,101,100,109,105,101,92,95,100,100,114,89,109,92,105,100,104,104,114,102,100,106,105,106,99,106,107,100,109,101,109,95,102,103,113,100,90,105,106,98,103,97,99,83,105,101,94,98,101,103,95,102,89,102,104,108,96,112,91,91,101,94,97,91,102,98,107,107,136,105,95,99,101,103,100,88,95,108,108,104,100,95,103,100,84,72,99,92,118,98,101,104,100,104,110,107,91,101,96,93,98,100,99,94,93,105,106,101,100,104,95,113,74,97,110,100,102,84,108,99,103,100,95,117,95,99,96,101,106,98,120,93,107,106,93,99,106,101,100,96,83,89,86,95,96,94,94,105,110,94,107,90,105,98,99,103,107,100,85,79,96,91,83,96,102,104,109,101,93,99,123,93,101,106,116,96,102,101,103,109,102,112,98,110,105,106,97,101,99,98,93,109,100,90,93,110,99,94,101,110,92,97,109,107,100,101,95,110,98,96,96,113,97,113,100,110,95,110,99,116,88,103,98,96,99,102,107,91,102,106,104,106,110,98,100,103,107,97,99,112,101,92,99,73,102,100,106,108,102,112,100,93,105,96,114,94,99,106,101,96,106,105,98,100,99,97,109,97,96,104,115,94,95,94,93,99,124,113,117,91,107,100,98,103,110,99,95,87,109,94,101,101,104,99,102,107,97,95,108,106,99,97,95,100,113,99,112,96,92,100,112,109,98,113,108,88,94,100,108,98,98,106,94,104,105,105,98,105,98,103,109,112,83,108,113,100,99,107,103,111,106,100,95,99,107,106,72,93,120,100,99,106,109,100,82,93,98,109,96,109,88,100,110,106,104,99,103,102,96,111,104,97,104,96,106,101,107,91,101,136,96,112,104,98,100,101,106,113,98,98,121,106,113,108,98,101,112,119,97,107,98,105,100,99,100,113,104,109,97,102,95,100,110,114,109,105,88,108,95,106,105,101,88,110,105,94,112,103,103,95,109,109,114,98,102,93,104,96,101,109,90,99,101,99,110,99,64,95,101,105,91,100,106,101,101,101,95,101,86,98,119,104,83,98,98,85,98,102,101,107,90,95,87,109,92,108,103,103,100,106,93,104,94,96,119,97,97,99,96,94,98,106,103,108,88,101,99,109,101,108,105,109,94,111,97,96,101,104,104,92,88,101,101,103,110,75,106,99,90,105,100,70,96,100,102,107,101,107,104,106,106,100,70,95,99,115,99,112,111,81,110,103,96,97,108,97,99,105,100,101,110,97,102,100,100,105,101,105,110,108,97,97,102,101,93,105,94,100,101,100,98,106,101,94,98,91,104,96,99,91,97,108,104,105,97,104,97,96,92,100,103,100,101,99,94,100,108,94,99,113,104,109,95,94,110,102,104,92,108,91,102,106,108,106,110,110,95,97,106,110,74,94,103,108,100,98,105,100,91,91,96,103,108,96,99,109,96,94,99,105,105,102,107,106,95,99,99,90,100,99,92,99,101,91,102,96,94,93,92,100,103,100,95,92,101,102,98,93,95,89,99,88,98,108,104,101,105,98,105,94,102,98,110,107,94,84,96,105,103,111,102,96,89,102,94,105,117,97,86,97,109,83,103,94,105,101,109,103,109,104,111,106,81,109,90,103,90,98,105,83,105,108,98,98,99,99,112,104,106,104,114,94,78,98,101,100,103,104,106,92,96,103,115,105,105,97,100,105,99,103,108,102,110,102,96,105,102,103,107,93,104,108,104,97,85,103,101,105,92,103,102,95,88,107,75,97,90,104,92,102,111,107,95,121,105,102,107,100,96,116,97,82,109,105,96,103,104,92,100,110,94,96,100,84,96,96,104,97,94,114,92,98,92,88,94,92,109,100,95,96,109,98,103,101,91,101,88,84,94,107,92,104,112,113,106,90,94,98,96,94,102,103,94,103,100,104,94,111,99,104,103,103,96,103,87,98,108,101,116,96,95,101,107,101,107,99,103,99,87,113,96,101,106,104,99,90,93,102,116,107,76,113,99,102,78,101,103,117,101,119,98,100,100,101,96,93,91,92,99,121,101,103,108,94,103,105,107,107,111,102,103,97,101,98,112,100,101,112,100,91,97,98,89,106,105,96,115,90,103,97,103,101,104,96,100,105,113,100,91,91,89,91,102,105,68,109,99,104,105,99,109,100,101,119,99,109,106,119,104,93,98,111,102,107,93,95,102,109,99,103,106,104,96,119,104,104,100,97,106,98,96,91,91,98,109,100,91,99,105,98,107,107,97,105,106,107,98,90,94,87,118,94,95,96,93,104,99,93,86,88,89,110,102,90,99,98,100,96,100,105,94,106,103,95,99,109,103,99,102,102,102,99,101,92,109,106,101,94,104,101,101,104,94,99,109,104,92,105,104,84,96,92,105,104,106,116,114,102,108,92,101,101,105,108,96,100,106,102,104,102,96,94,104,102,108,94,92,109,109,84,88,99,100,90,102,102,89,109,98,91,86,108,98,96,83,91,103,89,102,89,91,109,98,93,106,102,112,92,88,99,88,95,103,99,91,133,100,104,103,84,107,93,97,92,91,102,100,103,87,95,100,103,103,102,98,105,101,101,104,97,106,104,98,93,105,103,101,101,88,98,83,92,113,110,104,106,101,92,108,87,102,114,99,108,99,101,92,95,100,104,95,102,89,96,95,105,98,98,101,98,91,102,98,72,105,97,90,109,110,105,91,87,106,100,104,109,92,96,98,111,95,99,104,93,87,87,91,102,90,107,97,107,95,99,101,101,95,101,103,100,95,106,113,88,93,104,98,102,107,101,95,87,102,100,94,100,100,94,108,105,87,108,101,98,107,105,96,99,100,91,96,101,100,98,92,73,95,109,99,98,76,101,96,108,97,103,100,109,105,107,106,106,86,104,96,100,100,104,104,106,101,98,100,99,99,104,101,101,102,99,95,96,101,82,114,100,87,97,101,75,85,110,107,93,115,100,93,95,91,97,104,94,98,104,107,100,98,106,88,83,102,100,105,92,93,97,91,111,101,112,117,99,101,109,105,98,98,97,105,98,105,102,95,79,92,99,77,110,100,104,122,105,98,106,106,104,97,102,95,94,94,96,91,96,106,106,93,105,101,83,102,98,101,105,89,113,92,87,99,94,112,88,100,105,104,101,98,101,114,105,95,96,100,102,100,109,98,99,105,96,103,118,95,99,91,89,99,105,96,89,105,97,104,104,96,105,103,94,95,99,95,97,92,99,98,87,95,91,99,99,97,92,95,87,126,98,96,104,85,95,99,109,96,99,106,108,92,109,90,97,93,90,85,100,96,100,95,71,102,89,96,92,95,96,104,84,99,103,108,90,101,104,97,98,95,104,92,90,99,100,90,99,100,93,91,105,97,103,100,88,105,101,93,106,97,87,92,104,94,99,92,99,88,98,109,103,106,101,99,98,87,95,95,95,103,97,95,100,105,109,92,100,113,91,101,100,97,93,95,96,91,97,93,92,85,101,90,95,104,102,97,95,98,91,92,93,98,105,91,104,101,90,61,77,94,102,96,100,94,98,97,92,98,100,94,116,107,96,116,101,119,87,90,100,88,97,90,92,104,99,93,109,89,92,92,109,97,108,96,100,96,98,109,114,98,100,99,104,116,99,100,82,104,105,98,102,87,91,92,94,102,102,99,91,78,87,84,94,97,96,99,103,97,105,105,106,104,97,99,95,109,97,97,101,100,96,109,95,109,100,101,102,98,84,91,97,98,106,84,114,97,107,90,99,95,88,88,94,87,107,99,80,96,102,83,101,98,90,116,95,90,104,90,102,92,93,95,93,106,100,96,104,94,92,83,97,88,100,88,107,105,96,100,107,103,96,106,91,99,86,100,92,91,90,98,103,109,114,111,92,100,99,100,98,98,101,128,98,104,82,108,84,83,94,105,102,92,91,91,113,93,93,102,105,100,89,95,67,112,93,84,93,96,99,108,95,104,97,90,95,96,103,108,96,103,111,100,105,93,97,100,95,92,99,92,100,94,109,113,105,99,90,84,104,99,95,90,100,104,108,98,89,96,97,122,101,101,103,88,105,93,101,100,105,99,87,82,108,96,104,91,104,100,91,100,95,117,105,87,95,100,98,94,97,108,94,96,84,103,91,100,89,94,95,96,95,98,99,100,103,88,98,91,113,92,96,118,89,103,91,90,101,99,105,88,101,103,92,97,105,92,91,94,97,98,91,95,98,102,102,79,104,113,95,100,103,95,94,93,81,109,92,99,106,85,94,112,91,75,79,93, +705.64044,91,95,105,98,100,106,101,104,89,93,96,92,88,94,96,88,112,111,115,96,104,95,118,99,91,92,94,102,103,100,98,103,95,100,104,101,79,93,79,103,79,103,87,99,96,100,85,99,100,94,105,97,99,100,92,113,89,89,103,92,104,99,110,96,84,98,87,107,115,100,100,77,101,138,96,102,106,96,113,100,105,110,87,110,96,93,92,106,96,86,106,97,90,100,109,103,95,108,94,93,98,88,87,94,107,104,110,98,95,74,93,101,93,90,100,99,102,109,99,100,94,100,92,109,94,101,113,89,109,101,89,109,99,98,95,113,106,98,103,103,99,100,91,94,72,97,104,87,87,91,104,90,94,103,91,94,105,103,95,99,92,99,98,93,103,96,100,109,97,93,100,95,101,97,96,101,109,101,91,92,100,100,97,100,97,89,110,104,104,97,101,107,90,97,100,114,95,110,93,97,98,99,102,96,96,102,97,102,105,100,84,95,99,88,92,104,98,98,101,79,97,98,75,83,107,96,106,99,108,96,88,96,99,82,94,99,90,94,94,105,103,96,103,92,116,85,102,93,89,95,93,90,112,103,95,103,93,102,95,90,97,97,100,99,89,95,108,104,95,95,95,88,106,94,89,94,117,87,94,108,95,100,98,105,101,96,94,99,100,95,87,108,97,87,116,101,94,79,92,98,105,92,97,111,103,105,99,98,108,99,85,94,93,90,107,86,91,97,100,92,104,88,111,100,104,97,79,91,103,98,113,92,105,102,98,100,97,101,115,97,100,100,89,108,99,117,96,95,95,94,99,103,109,95,102,94,92,99,105,101,92,89,96,85,104,97,100,105,96,100,80,98,95,100,103,103,91,103,98,108,95,98,106,98,91,94,97,97,105,99,81,79,108,110,103,118,99,95,114,105,117,105,92,105,93,84,102,98,96,94,98,92,118,113,98,79,94,98,98,100,96,108,97,98,110,97,93,92,95,100,87,96,95,106,103,98,79,99,84,105,104,109,97,107,95,99,103,86,93,95,88,90,98,109,87,95,78,98,90,105,99,100,96,104,99,108,105,92,91,95,98,113,103,101,94,94,97,106,87,103,107,88,102,101,97,96,102,90,108,112,90,110,90,101,96,76,93,98,92,107,104,98,99,107,88,91,104,100,96,103,106,100,91,97,106,99,96,97,103,87,98,96,104,94,99,98,111,102,97,109,96,110,94,94,106,91,91,99,101,109,92,86,88,105,92,86,100,104,104,94,100,99,105,82,93,89,100,98,87,102,103,93,100,102,89,93,102,104,99,96,95,95,92,95,91,100,102,87,106,95,98,93,115,98,100,85,112,99,95,89,97,101,95,102,91,96,95,93,100,97,105,93,106,92,99,106,82,101,97,102,100,92,101,92,97,96,103,94,96,100,103,100,96,96,95,75,94,100,93,120,93,111,99,94,98,91,78,86,90,103,110,93,96,105,94,97,102,94,92,97,93,102,107,96,99,106,103,96,99,91,107,96,104,104,94,102,94,81,108,105,112,100,109,102,95,90,105,99,101,95,95,92,95,96,83,91,96,87,89,109,109,100,93,106,102,104,111,95,111,103,99,95,86,112,110,107,96,99,96,103,103,96,98,91,90,92,99,99,100,109,104,92,101,96,91,94,86,90,100,96,101,80,97,86,97,96,98,95,91,95,96,98,97,103,106,94,94,100,111,99,105,97,105,98,93,101,116,102,98,85,102,95,104,106,97,105,88,105,114,101,105,110,98,109,105,101,99,102,86,93,109,110,106,95,90,115,101,101,103,102,106,103,102,92,96,99,100,89,95,109,89,98,86,107,92,92,99,107,94,105,104,107,94,105,101,99,91,108,113,107,102,106,108,97,97,110,107,95,96,96,112,106,107,113,98,94,96,105,103,105,95,101,96,100,98,102,95,100,99,87,99,101,100,107,99,102,105,96,96,100,99,95,108,87,93,92,93,87,100,110,97,111,95,102,96,90,99,94,66,102,102,95,91,78,100,132,95,118,107,102,88,103,102,98,99,102,100,92,95,100,91,107,108,105,91,102,97,98,106,101,91,99,106,92,99,104,98,100,92,113,96,93,104,98,104,94,91,93,90,100,90,92,91,95,93,113,91,97,99,104,104,88,100,116,92,113,94,110,91,95,96,96,103,102,88,99,100,96,92,108,96,103,92,91,98,91,105,94,98,94,84,98,59,90,104,98,99,92,101,105,90,104,87,96,103,107,96,98,100,98,91,98,96,119,99,100,107,86,109,97,95,99,92,104,108,100,94,106,92,95,110,95,99,105,89,101,109,94,95,93,107,96,96,108,101,102,104,97,105,98,101,95,100,97,105,94,98,100,130,91,97,104,99,92,88,90,91,102,102,98,89,102,96,110,92,127,97,102,90,98,88,106,101,92,97,97,103,108,97,103,90,99,90,92,106,97,93,113,111,92,114,108,91,109,109,105,100,101,99,103,105,111,102,90,99,108,92,94,106,113,112,91,95,94,110,100,93,99,110,101,98,113,90,104,104,96,100,101,100,100,98,119,104,102,112,92,111,101,101,117,98,106,101,104,92,127,100,102,102,93,106,99,99,107,88,104,101,94,106,101,106,98,98,92,105,108,110,84,100,101,104,99,102,101,98,109,106,95,107,95,102,90,118,97,99,102,108,98,113,108,103,93,94,111,104,105,107,88,107,111,91,95,103,92,87,102,122,110,107,103,96,96,110,90,105,100,139,96,102,93,93,94,101,94,70,100,96,103,104,99,111,96,75,96,99,80,100,81,95,104,89,108,102,105,96,101,102,91,99,106,105,92,98,106,90,102,75,104,106,101,105,96,102,101,84,101,95,97,92,69,111,103,96,100,106,107,107,106,87,103,95,105,101,103,99,93,95,109,91,100,104,105,101,93,103,96,93,100,99,109,113,110,98,106,101,73,113,110,97,94,100,109,104,105,97,96,101,83,99,107,97,91,99,91,111,105,101,99,98,97,111,96,104,98,107,99,104,101,90,105,119,96,95,94,105,92,105,95,76,89,91,89,106,103,102,101,106,89,98,109,87,99,106,104,101,102,97,96,102,94,100,106,102,96,98,90,102,95,102,101,93,105,95,98,106,105,97,109,102,98,110,101,104,96,97,116,91,95,92,79,95,101,129,108,100,116,113,103,128,109,103,87,101,116,104,103,104,95,117,118,113,98,89,110,104,91,81,94,90,100,94,95,97,95,95,99,87,101,108,100,100,101,100,103,106,94,101,109,95,96,102,101,94,96,97,108,96,121,93,96,97,98,69,96,98,102,104,90,99,90,102,98,100,89,104,93,109,102,102,98,101,107,109,93,104,101,93,90,92,98,96,109,117,124,96,101,102,110,94,123,102,105,100,98,104,100,118,97,94,101,90,92,113,95,86,100,111,111,79,109,96,100,95,89,100,102,109,117,92,96,113,97,94,102,89,105,96,105,96,90,101,96,106,103,97,105,95,102,103,101,120,96,95,112,104,95,103,101,105,106,96,104,96,101,108,103,102,93,95,98,94,109,101,96,104,100,91,96,95,106,105,99,107,109,115,98,108,96,98,102,91,88,87,106,99,108,107,92,107,111,94,98,99,95,95,99,109,104,116,100,94,87,116,103,104,111,86,102,97,103,96,104,96,105,95,119,96,65,94,106,90,104,102,94,109,94,97,106,116,90,97,104,99,127,101,87,100,105,103,103,97,120,91,95,100,96,98,89,98,98,99,105,84,87,101,95,113,102,108,93,106,102,95,94,104,107,103,103,83,105,97,119,93,110,102,104,97,103,82,105,103,109,109,92,90,107,83,97,107,100,101,101,101,97,106,91,103,101,103,94,101,116,98,113,110,104,89,113,94,104,96,103,102,125,98,89,107,101,96,98,98,95,109,95,93,98,108,97,99,100,97,60,102,103,100,110,105,104,94,89,96,101,99,95,83,103,100,97,97,96,102,105,93,102,94,97,103,103,102,102,97,98,105,106,92,91,95,91,100,103,95,95,99,73,113,112,111,94,99,85,107,100,100,93,104,102,95,102,122,96,104,125,105,72,100,100,92,108,110,107,95,97,102,98,106,102,89,95,107,97,91,85,94,97,99,96,84,110,103,98,84,95,101,99,95,106,97,94,112,101,95,101,102,97,108,103,109,104,116,103,85,102,97,100,106,94,93,102,105,100,105,100,105,102,110,102,113,92,86,98,101,103,102,100,101,106,91,95,104,102,98,91,97,102,99,102,83,112,99,99,98,105,98,101,100,99,102,105,116,115,98,113,104,103,109,104,94,99,101,115,106,95,112,110,84,101,103,101,98,88,98,90,101,111,100,93,102,94,100,94,94,115,109,91,87,107,104,105,103,91,99,102,106,117,99,96,109,110,91,94,94,88,94,94,85,98,98,94,92,99,103,96,101,84,92,104,90,116,93,96,103,107,100,85,104,94,104,96,103,67,97,112,106,95,103,100,98,99,96,103,121,95,96,94,104,96,100,103,105,99,105,94,91,109,98,99,103,107,105,101,105,95,91,104,104,105,95,88,91,101,93,95,98,98,99,104,104,95,94,87,100,105,109,101,107,80,95,103,102,107,98,101,104,117,87,109,111,99,95,86,92,105,96,111,101,103,93,91,98,97,92,99,97,109,113,98,102,105,98,96,102,92,102,102,112,79,100,97,102,102,99,95,103,103,106,99,113,94,99,90,99,104,100,97,98,92,101,96,94,99,102,106,95,96,95,95,98,105,109,103,111,96,117,101,103,99,86,93,74,102,92,92,94,101,105,96,93,92,102,98,105,103,85,90,95,96,103,95,95,95,111,103,101,108,91,90,103,88,113,89,106,95,107,104,94,103,100,98,97,79,101,102,92,93,95,86,98,62,103,118, +705.7818,129,105,104,83,95,108,91,97,104,88,106,111,99,97,105,90,97,94,110,94,100,119,106,68,100,102,98,101,109,100,93,100,103,95,115,112,117,103,97,96,88,106,90,93,98,124,102,99,108,105,92,103,91,97,102,95,102,98,125,100,100,94,115,92,90,109,100,104,107,90,108,105,93,99,103,108,87,102,90,112,93,93,97,100,103,99,104,98,100,98,118,96,101,100,107,100,87,100,86,106,94,109,93,98,93,93,95,112,108,119,92,105,101,86,105,94,91,98,105,101,97,90,101,108,105,98,98,95,103,100,105,106,105,98,108,95,101,92,103,97,80,113,94,91,96,94,100,104,113,110,99,95,108,100,95,98,103,102,97,95,96,98,99,106,90,107,101,101,92,96,104,100,94,99,92,101,89,90,107,100,118,100,100,98,104,99,107,95,91,91,95,96,98,108,112,94,84,92,95,107,85,107,93,89,94,91,95,93,125,95,102,97,106,102,92,98,97,92,91,98,101,107,97,96,98,103,104,91,99,91,97,92,106,68,88,97,102,101,100,101,103,113,106,95,97,112,100,102,95,96,105,102,101,100,109,102,101,107,98,91,91,109,94,74,93,118,98,96,112,91,98,105,94,105,113,110,105,104,124,96,104,109,105,103,104,91,99,98,115,97,92,96,106,96,117,102,93,101,94,87,101,96,93,100,97,101,106,100,101,103,92,90,97,104,98,94,100,105,102,87,89,108,92,104,104,106,111,87,97,84,103,100,99,99,105,101,103,96,89,96,110,100,91,90,97,105,99,103,103,96,97,99,105,107,98,91,109,114,94,107,111,104,93,90,107,88,105,95,110,96,97,99,94,95,96,84,104,94,92,98,110,104,110,113,96,102,104,110,98,96,111,82,89,103,102,130,102,102,96,100,98,101,95,104,109,91,105,94,106,85,97,88,99,112,104,101,96,95,103,76,109,98,93,103,94,111,99,102,91,100,94,111,101,104,100,99,98,92,104,86,104,93,87,91,98,96,101,92,101,108,93,112,98,102,102,101,100,104,104,97,122,110,106,101,117,103,96,100,95,111,101,98,107,107,118,92,99,100,101,118,108,101,112,99,92,112,98,94,105,101,108,96,100,94,98,96,89,95,95,98,103,102,94,109,98,100,104,98,98,98,110,102,101,95,120,108,101,97,107,80,105,100,105,98,98,110,90,98,99,82,96,101,95,110,86,105,113,91,98,109,92,102,91,93,100,93,101,103,95,99,98,101,105,101,101,67,88,104,104,83,106,99,103,106,101,101,103,112,106,100,95,105,96,101,101,108,103,98,106,92,100,101,98,100,99,86,105,106,98,102,91,103,100,95,114,114,94,105,90,99,101,103,105,104,100,98,96,95,104,97,99,84,109,111,106,91,80,95,91,98,102,116,100,99,111,94,102,91,102,100,91,100,90,102,101,90,93,97,109,94,83,109,102,94,96,92,94,93,104,106,108,107,107,102,99,95,104,109,98,90,106,109,106,107,89,102,105,73,102,105,110,101,114,97,100,113,100,96,113,109,100,93,108,97,100,87,104,103,89,72,98,106,97,101,109,93,118,105,91,88,99,102,106,104,94,106,111,105,100,91,88,98,90,101,85,97,111,91,109,101,88,93,96,110,96,99,107,92,96,112,102,106,100,105,96,91,93,91,103,92,103,92,103,111,105,104,114,81,92,107,116,88,99,103,111,87,100,103,102,99,105,103,101,92,91,111,87,98,106,85,101,103,107,102,96,113,96,115,103,99,96,118,100,104,101,103,90,86,107,107,109,102,103,106,96,103,90,91,107,94,103,101,93,107,100,128,109,98,102,89,109,95,100,96,113,97,106,92,104,101,91,113,101,102,103,103,108,102,105,91,105,98,98,106,92,93,109,105,106,99,108,95,109,96,100,110,102,89,106,103,117,105,90,95,97,109,94,107,88,104,106,98,100,100,114,100,94,98,97,96,94,103,100,106,99,99,103,112,100,93,104,100,91,106,98,101,99,111,105,106,90,118,110,110,105,95,104,94,93,102,99,105,109,98,95,100,110,100,91,106,89,98,102,108,112,95,86,115,97,100,98,89,102,96,103,88,99,94,101,107,88,108,99,95,94,102,99,102,90,95,97,100,113,89,109,95,113,107,92,104,95,106,110,106,99,95,98,96,106,110,102,103,100,107,109,94,92,91,87,106,101,105,102,94,100,108,92,102,96,92,96,103,105,101,103,104,95,97,99,99,101,105,101,103,97,87,101,103,100,87,102,97,106,103,95,107,101,106,87,101,94,99,93,99,95,89,118,94,95,98,101,104,101,97,103,101,93,104,100,105,97,101,81,98,104,90,91,111,101,102,82,89,100,100,96,92,111,109,108,98,104,101,100,99,93,73,106,103,114,95,103,103,95,89,95,95,94,105,103,99,111,108,93,107,92,110,110,87,105,98,98,106,105,109,102,102,87,94,115,112,101,110,119,93,101,108,95,99,101,94,102,93,96,103,99,108,101,97,86,121,86,106,101,99,97,110,101,112,90,98,120,101,93,87,88,109,98,101,98,69,101,98,101,95,94,99,100,103,97,80,92,101,89,115,95,100,101,99,100,91,105,98,105,87,113,95,90,99,105,100,98,97,113,88,96,77,104,109,105,106,98,91,95,102,103,103,102,92,105,99,96,109,94,100,96,108,108,93,109,108,89,112,99,102,97,108,98,86,103,107,98,110,87,116,98,100,106,97,96,119,104,99,98,101,93,110,101,99,107,91,107,105,103,95,93,84,90,101,88,104,97,97,97,105,105,96,113,105,99,110,105,97,98,103,100,90,77,95,89,106,102,86,109,102,102,129,84,99,102,105,96,92,101,89,91,102,95,105,97,89,105,65,93,94,100,99,106,106,95,100,94,91,93,99,95,89,96,110,93,94,96,102,98,108,90,102,109,99,107,94,94,99,100,115,92,105,108,106,91,109,100,97,106,94,98,107,106,94,97,107,99,110,89,97,99,98,104,86,104,98,110,77,103,95,95,112,101,111,109,96,93,101,106,95,105,113,102,95,103,106,106,84,98,98,101,94,112,97,109,104,100,97,118,94,98,92,89,102,100,89,105,109,101,99,99,89,103,97,96,100,112,102,107,111,109,88,106,83,103,98,107,74,99,95,103,106,103,108,119,97,120,108,98,103,94,105,97,94,108,94,89,103,101,103,103,99,96,91,96,95,101,103,95,101,100,100,97,101,103,106,100,100,95,102,121,104,98,110,96,92,95,92,99,103,97,105,100,95,106,97,94,81,98,103,100,103,94,100,107,96,87,93,100,96,91,91,101,102,101,112,100,98,110,92,101,102,117,98,101,99,91,106,99,99,95,99,94,105,100,89,104,93,99,97,111,99,89,89,94,97,94,102,101,103,94,94,101,97,85,100,92,94,98,91,94,95,97,95,101,96,99,96,95,104,92,91,111,109,100,101,112,95,87,102,97,96,98,103,91,100,108,101,103,111,108,94,105,101,93,98,106,101,91,105,117,98,102,99,106,97,97,95,101,99,99,101,96,113,101,107,105,97,96,96,95,99,111,97,98,95,79,105,119,101,98,96,100,108,95,99,87,98,98,113,102,87,109,97,106,91,99,97,113,106,104,100,100,107,88,105,89,89,100,97,105,97,92,96,94,88,103,112,107,100,97,91,95,102,114,100,100,98,95,109,102,100,91,107,105,97,95,102,102,90,99,87,104,101,92,102,94,93,98,96,105,83,88,97,94,94,105,98,100,99,89,101,97,92,105,97,98,95,91,95,101,106,112,104,78,100,95,107,120,107,102,97,112,83,95,100,104,94,87,94,100,97,101,96,107,108,119,89,95,105,102,103,103,97,85,104,101,89,94,101,97,93,95,90,96,92,96,93,103,91,91,101,98,100,96,96,97,94,106,98,105,95,101,91,99,90,106,100,94,94,93,103,96,94,97,101,99,104,106,112,106,98,101,100,99,109,101,103,97,112,105,104,101,98,101,104,104,103,88,95,107,94,110,101,100,94,104,101,105,94,93,99,89,92,103,90,116,108,99,101,104,107,95,111,108,102,93,104,102,100,98,99,96,100,102,87,96,104,105,102,100,101,96,113,94,95,96,94,100,105,104,102,92,96,94,97,104,90,90,94,102,94,100,106,102,88,106,101,106,94,95,104,105,91,104,97,115,106,102,101,92,87,83,103,103,106,85,102,98,101,100,111,90,105,118,95,89,105,95,94,106,107,95,99,88,95,97,92,101,112,94,106,88,71,90,107,102,100,111,100,96,101,90,96,72,112,109,101,112,101,102,99,93,105,96,98,99,99,76,98,106,97,100,96,113,96,98,101,100,107,97,102,106,97,108,97,104,94,112,96,101,120,106,103,82,93,100,91,102,114,100,106,87,99,96,113,106,112,91,93,95,107,92,87,102,97,106,102,98,103,101,116,103,93,93,123,101,91,97,105,109,95,96,97,98,102,106,96,101,106,101,105,102,96,106,94,77,102,101,86,105,90,93,95,113,98,88,79,102,105,103,94,91,95,120,103,107,101,93,99,95,95,114,90,95,94,92,102,96,111,104,90,92,89,100,98,105,96,97,104,112,126,109,89,96,103,104,105,92,93,98,105,112,97,89,97,94,98,96,97,85,93,91,103,110,83,88,97,101,104,97,93,88,94,104,77,100,98,105,105,99,94,88,97,94,107,98,113,100,98,89,105,96,107,115,102,103,98,108,103,109,98,109,108,96,98,87,98,115,94,100,103,100,94,93,109,117,85,106,105,110,99,99,97,99,93,122,96,93,96,108,92,63,104,99,102,100,99,91,99,103,93,98,98,109,95,105,89,97,109,70,92,90,99,99,101,102,108,109,92,99,98,91,91,99,101, +705.9231,94,101,96,103,99,104,105,94,87,111,98,104,104,104,109,83,108,114,102,109,103,101,126,91,96,104,104,101,98,110,106,104,99,102,97,104,105,107,96,100,106,105,87,102,100,109,101,104,87,99,128,100,124,111,113,97,110,89,91,98,98,87,108,102,97,109,96,100,106,102,102,91,83,87,101,106,98,93,94,106,102,100,70,87,101,89,102,105,104,92,103,103,116,106,93,88,95,93,92,92,83,106,89,113,105,105,123,66,106,118,105,109,105,97,101,100,101,104,118,99,90,92,90,102,100,99,97,106,97,100,89,104,103,104,102,107,100,102,101,110,112,97,96,93,93,106,99,93,98,95,102,104,93,86,91,113,90,94,100,99,106,112,96,99,100,98,106,101,118,92,105,101,102,86,110,96,91,99,112,96,96,91,91,101,96,98,111,87,102,105,102,95,104,105,86,101,97,108,81,96,98,103,95,107,98,106,98,98,100,105,97,98,103,104,115,105,101,111,114,107,106,97,103,108,97,98,120,101,100,100,89,104,98,110,105,107,88,101,98,100,102,99,96,104,101,85,105,95,96,109,102,101,89,106,104,113,93,97,94,102,88,103,93,98,92,100,94,89,101,95,107,95,89,101,98,102,97,99,98,109,97,113,73,91,109,95,96,99,108,100,84,102,97,105,109,105,114,110,88,91,99,132,103,98,112,112,105,98,95,106,95,109,94,103,99,106,98,102,101,100,105,96,95,96,106,98,98,91,106,101,104,97,98,91,96,107,102,96,97,96,113,94,93,88,110,96,93,103,89,97,103,101,106,98,96,102,96,112,98,86,105,105,80,112,93,99,84,112,100,102,104,109,105,90,113,90,96,102,102,94,95,105,94,96,96,91,99,75,96,100,119,86,93,99,99,105,100,100,101,101,99,95,101,103,105,89,95,104,103,97,107,91,101,114,92,95,98,110,105,110,87,94,92,101,95,99,104,99,114,95,98,90,95,103,114,88,114,98,95,102,104,100,98,106,93,98,90,90,114,114,101,113,98,104,80,108,110,103,107,92,103,96,96,93,93,102,97,88,109,91,95,109,86,106,104,96,108,105,108,106,96,113,104,98,93,72,93,101,101,94,111,106,102,112,99,110,86,91,99,99,104,87,103,92,96,88,95,69,99,89,109,98,83,99,102,109,97,97,94,90,105,105,107,97,101,109,103,86,95,94,103,106,92,107,97,102,110,103,91,103,101,103,98,98,83,110,105,99,98,104,96,112,106,96,92,94,103,107,99,88,94,81,95,91,101,103,101,101,98,100,92,102,109,102,96,98,101,94,109,102,108,102,101,98,111,108,106,93,95,103,104,86,95,108,106,98,103,87,115,94,113,100,100,102,101,96,100,109,92,110,92,109,102,107,101,113,105,100,107,99,105,105,97,98,111,109,101,103,96,100,93,103,105,109,88,83,97,97,91,106,104,114,110,98,96,102,108,86,97,110,101,107,97,97,99,100,96,113,88,100,91,103,107,87,79,91,100,94,98,106,110,113,91,98,99,101,107,91,108,95,108,105,99,103,97,93,106,98,104,102,94,92,94,96,101,97,96,106,89,98,91,104,117,97,107,100,124,110,101,97,94,95,92,96,101,93,106,105,91,105,124,99,98,88,105,90,70,105,96,94,98,95,95,104,100,107,93,75,111,101,106,97,108,106,101,98,81,84,102,103,106,121,104,101,93,109,113,100,111,102,100,105,93,100,90,96,105,108,107,96,105,75,99,93,97,101,105,102,98,68,113,117,100,105,105,93,108,100,105,98,102,82,106,113,110,109,102,98,116,99,86,96,107,101,112,114,103,94,92,92,110,96,103,110,109,99,115,97,112,100,102,96,115,103,94,101,99,109,95,91,104,102,111,100,99,111,101,113,107,101,93,107,102,97,95,89,91,107,96,105,104,94,97,101,62,99,95,105,91,118,113,91,102,91,97,87,98,101,107,112,96,104,91,98,102,94,98,91,103,119,114,95,103,99,101,104,90,106,91,97,97,102,101,106,105,78,105,100,90,95,95,114,107,108,102,96,100,100,96,75,106,102,104,101,100,84,105,103,93,95,97,105,99,102,93,103,88,109,91,109,97,115,97,103,97,100,94,103,102,100,109,98,97,104,100,104,98,90,91,97,94,106,99,103,101,104,118,113,95,92,83,114,115,93,109,95,94,87,99,97,89,92,92,102,104,94,115,96,83,107,100,101,92,105,106,94,78,93,104,88,105,97,105,100,94,98,92,106,99,100,117,96,87,102,100,102,122,101,99,96,84,95,100,107,104,91,109,95,99,92,106,113,103,100,98,112,83,106,88,108,98,101,95,106,101,101,100,91,105,110,103,104,97,86,91,94,97,91,105,98,102,104,117,86,98,101,106,105,115,92,75,108,100,102,92,98,106,95,98,96,93,106,101,108,101,97,88,98,91,100,110,106,91,91,113,109,93,73,98,91,98,107,108,97,92,103,99,104,107,98,97,101,104,106,104,108,76,88,105,98,102,100,95,108,91,102,105,101,102,93,102,108,110,105,111,96,106,96,108,104,96,110,104,97,91,95,93,97,100,98,67,94,88,93,104,111,93,93,94,105,98,104,98,98,104,91,109,99,114,106,96,81,105,98,91,114,95,113,96,96,101,96,100,95,96,92,114,92,110,94,93,104,87,106,96,103,100,94,106,107,96,104,99,93,95,99,94,103,88,99,128,99,102,93,94,107,123,98,63,95,94,103,60,96,99,98,105,96,112,95,99,110,94,92,94,110,97,93,98,96,93,93,79,104,96,98,107,102,97,105,113,92,108,101,101,91,107,107,91,92,90,115,105,95,94,111,92,112,96,97,100,95,104,111,110,87,108,97,105,102,98,101,112,112,104,96,116,91,102,103,85,102,97,91,85,89,88,102,100,114,90,91,87,93,115,106,98,94,117,99,95,106,94,114,107,102,102,103,99,103,101,98,102,94,99,95,106,103,95,92,111,102,94,91,107,99,102,99,98,99,108,100,96,117,99,106,110,101,98,98,93,116,103,94,99,98,101,87,97,98,110,102,113,103,95,111,102,100,107,78,96,107,104,107,103,88,102,103,92,113,107,99,98,106,90,102,83,99,102,108,94,99,101,101,77,102,98,91,100,97,80,98,93,98,122,100,105,99,107,101,109,108,98,100,101,99,105,119,97,103,97,101,97,100,92,84,97,97,129,96,101,101,102,87,108,102,105,103,96,104,98,100,103,101,105,97,99,117,93,104,81,92,99,105,98,98,94,101,97,95,73,93,100,112,96,108,95,102,116,88,102,101,83,100,85,97,90,98,88,99,136,73,100,88,98,99,112,95,105,101,99,101,93,87,87,99,100,104,89,98,89,104,93,81,98,101,105,92,100,99,60,103,104,90,91,103,98,100,103,95,94,102,103,108,127,101,95,87,91,102,98,108,105,95,95,90,117,100,79,97,107,103,102,101,106,110,97,83,113,90,107,98,102,98,89,87,104,98,101,95,102,109,114,106,101,93,106,100,94,109,112,108,99,90,102,95,102,98,96,87,99,93,92,99,117,88,103,92,94,99,107,98,95,107,95,93,112,103,107,98,71,99,111,111,87,97,87,91,91,95,106,105,106,98,99,95,99,99,101,103,95,87,101,105,108,109,105,114,100,105,100,94,94,98,103,89,91,99,115,96,94,98,102,102,99,97,104,102,98,91,97,102,99,90,98,109,100,103,92,93,92,91,116,90,96,100,104,105,95,94,100,94,92,100,90,93,91,109,101,100,93,109,101,95,117,109,105,105,100,98,110,104,108,97,89,99,106,103,98,102,87,100,102,105,88,110,98,101,107,105,91,105,89,109,125,96,109,102,101,110,106,106,96,94,103,79,98,107,108,107,95,90,99,102,106,97,89,96,106,98,109,87,104,106,95,100,107,105,126,100,112,95,87,106,96,99,103,91,95,104,107,104,98,102,112,101,91,103,84,109,100,105,112,100,104,91,96,91,99,90,112,107,99,117,96,91,109,99,109,104,100,92,100,85,110,109,107,98,106,98,98,90,92,97,98,101,101,98,99,105,95,99,82,100,107,101,93,100,100,120,109,100,116,99,101,98,97,97,90,89,101,91,96,106,98,97,105,105,114,109,95,98,98,94,90,110,101,99,101,104,92,116,94,91,99,93,96,101,101,98,101,97,99,113,104,84,100,93,100,103,104,100,92,91,97,108,100,118,104,91,86,93,103,100,119,100,100,97,104,82,99,80,109,102,102,99,96,98,92,114,99,100,104,94,94,84,107,84,98,99,99,99,108,96,99,103,101,96,65,102,100,93,96,105,102,96,97,99,106,95,109,112,97,100,98,95,102,97,102,100,93,95,103,92,99,90,120,99,104,97,98,88,113,103,98,106,102,102,93,88,100,95,89,98,96,107,100,102,102,112,108,105,97,92,87,100,82,93,104,98,110,110,97,103,94,87,98,131,97,101,96,126,97,94,91,96,105,96,96,93,83,96,90,91,100,106,94,130,97,100,97,97,91,112,107,93,98,112,98,92,96,72,101,104,90,89,82,94,87,88,106,90,115,83,98,95,110,90,84,89,91,109,93,106,97,100,99,100,104,97,102,97,113,87,102,87,100,103,101,88,91,110,109,88,91,93,100,89,93,96,93,102,91,87,121,92,102,81,80,116,91,101,104,85,113,100,114,89,95,92,95,102,103,95,95,93,106,93,95,105,105,117,90,94,107,109,106,73,96,92,95,105,105,87,100,117,109,92,99,113,89,99,105,109,101,101,99,77,101,102,103,105,113,108,109,99,97,109,93,108,118,84,110,98,98,96,94,88,96,100,87,102,107,98,102,113,91,103,96,94,105,92,106,107,102,93,100,101,98,100, +706.06445,103,90,89,93,95,100,91,90,100,96,93,95,89,91,120,99,97,100,102,115,91,97,97,103,101,101,97,98,99,100,90,97,97,101,94,94,95,102,105,96,84,96,109,97,97,109,108,111,93,113,97,103,93,95,98,93,90,105,102,92,103,104,97,96,98,100,96,101,88,99,104,113,98,90,98,98,104,88,98,102,101,103,90,91,105,106,92,94,110,105,109,95,94,88,93,90,99,100,105,84,103,109,89,94,104,84,101,94,89,94,93,93,112,95,106,102,94,88,86,109,98,110,101,97,100,99,113,95,99,95,99,97,80,97,96,105,98,98,95,94,73,117,93,97,103,91,97,100,86,78,101,105,108,99,97,100,104,91,101,109,91,105,85,110,102,106,90,89,116,107,116,104,101,107,103,108,93,95,107,114,99,103,100,104,102,90,92,91,92,101,85,97,113,109,112,98,109,87,103,100,94,93,99,102,100,95,98,89,131,109,104,101,108,102,100,90,96,103,94,101,100,104,104,101,102,109,100,95,96,102,99,92,109,114,104,109,92,98,104,102,103,95,101,97,103,91,94,110,101,104,102,99,114,108,100,103,113,101,99,101,93,91,91,90,93,92,104,97,100,93,117,100,106,90,94,114,92,91,104,104,92,113,99,113,96,101,89,98,95,113,98,85,100,99,109,95,123,107,96,92,100,103,99,104,100,107,106,90,91,104,98,92,101,100,110,100,108,90,115,96,103,101,91,107,102,85,73,96,106,98,90,105,104,104,109,101,103,95,95,108,97,108,87,91,95,103,97,103,103,108,109,93,98,102,99,95,88,107,100,99,91,112,96,95,100,113,108,99,100,104,114,96,97,99,108,104,117,90,90,103,113,111,101,99,101,100,111,104,98,96,103,104,102,105,98,99,96,106,99,109,102,102,105,105,91,101,88,109,97,96,90,100,105,100,109,97,100,100,98,94,101,105,95,105,105,100,101,110,94,113,96,92,95,99,109,102,107,94,96,121,100,108,102,104,89,78,90,104,106,101,99,98,103,127,90,93,100,100,100,102,119,94,111,100,105,100,100,101,93,100,91,94,97,104,95,102,90,101,106,106,104,101,97,90,108,105,102,102,98,87,99,103,109,99,91,100,107,102,107,109,109,94,99,99,101,94,98,98,103,99,109,102,114,98,108,97,106,93,102,99,93,83,105,87,105,101,92,100,96,95,101,98,104,102,103,109,100,90,90,116,95,94,101,101,104,98,101,105,109,89,88,106,104,107,98,95,102,98,106,102,94,96,100,102,100,97,109,92,96,122,89,106,98,111,95,101,91,75,115,112,99,102,98,102,104,111,103,115,95,109,93,96,113,92,128,108,97,98,103,101,98,87,97,102,84,97,94,99,94,108,104,108,93,107,112,100,104,106,103,94,95,93,102,98,135,101,97,110,94,112,93,97,98,105,99,109,98,97,109,89,99,100,98,98,92,90,103,102,99,93,91,105,102,101,98,92,91,99,93,86,111,84,99,104,92,104,99,94,94,110,110,96,104,96,91,97,95,114,98,101,98,105,109,105,91,98,102,104,82,108,87,94,99,95,93,97,102,93,97,108,101,103,91,99,90,101,109,108,98,105,103,96,96,93,84,101,99,83,99,116,102,101,101,111,99,102,94,96,99,91,93,99,93,90,105,109,103,93,120,97,102,105,98,97,102,113,92,95,101,95,101,93,110,99,106,102,99,90,110,103,102,100,102,96,98,108,87,91,95,101,92,102,99,93,99,105,106,97,96,89,96,93,102,110,105,104,91,106,102,105,105,102,107,100,103,97,102,109,113,105,89,101,102,104,117,97,107,105,110,93,99,99,113,101,106,101,108,97,101,97,103,100,98,100,103,99,82,106,107,101,99,97,104,94,99,99,97,101,103,89,88,101,105,98,102,88,100,104,97,94,97,83,111,101,101,101,111,98,106,97,104,103,86,100,106,105,95,105,114,88,105,97,110,103,101,77,101,93,104,103,102,118,103,105,99,97,103,96,84,90,107,90,113,118,96,103,96,99,103,103,102,109,101,102,99,102,95,96,97,94,102,104,94,95,89,104,81,106,91,88,106,90,104,100,93,94,98,93,104,105,97,100,99,95,113,102,95,98,96,97,83,94,83,103,94,104,100,96,98,94,102,96,105,103,102,100,95,125,98,100,95,110,97,93,102,95,90,101,99,96,98,103,100,98,94,98,95,85,113,100,109,85,96,96,92,95,92,95,108,100,91,100,101,96,97,106,96,100,90,98,95,101,107,95,110,98,100,95,110,97,88,96,101,110,95,92,106,95,108,91,106,106,105,90,100,106,101,105,111,93,99,88,99,118,110,90,105,103,111,105,95,117,99,93,99,78,99,103,99,97,108,93,103,110,112,89,102,108,97,97,91,102,105,98,100,93,102,96,99,100,103,104,97,108,97,98,82,92,96,104,90,97,100,96,92,103,83,113,104,69,96,96,101,80,98,101,97,120,112,88,99,90,112,103,102,104,94,98,104,100,80,107,107,88,104,97,108,97,104,97,100,73,110,92,85,99,110,118,105,100,100,108,99,97,103,96,100,91,90,115,101,110,101,98,106,98,100,108,96,91,109,93,106,99,88,102,101,98,104,106,99,95,98,95,94,106,106,94,103,93,98,103,108,102,97,92,94,85,97,130,99,92,93,108,110,99,101,90,100,95,105,90,101,93,92,98,105,106,96,114,99,107,96,90,94,108,90,103,94,110,112,97,96,105,109,105,73,103,109,107,106,102,100,89,103,88,95,115,108,106,102,107,90,80,108,104,89,81,104,108,96,105,100,96,100,111,102,108,105,90,83,101,95,99,100,86,89,110,96,93,108,96,72,98,112,97,105,107,104,108,105,97,104,109,107,91,108,100,97,116,98,101,102,118,87,104,101,105,95,111,98,111,101,102,97,109,101,94,99,117,105,95,103,96,109,90,86,98,96,101,95,93,89,91,76,106,100,90,90,97,92,96,103,97,109,98,90,96,117,106,102,100,97,96,107,103,96,107,105,101,100,105,97,96,92,99,91,103,99,99,97,111,92,99,98,103,102,102,100,95,105,109,102,105,116,110,99,101,97,106,100,106,96,94,106,108,87,99,103,92,83,94,108,87,81,96,96,99,93,106,103,104,120,102,108,111,100,100,96,95,110,105,97,110,112,97,106,105,97,108,110,112,99,88,79,100,99,103,94,104,110,100,92,96,103,103,109,91,102,101,103,86,128,104,109,99,102,111,100,98,105,91,91,98,92,94,98,89,101,102,97,112,110,97,91,102,105,100,95,105,96,94,73,101,96,104,91,98,99,96,113,99,80,100,109,96,114,99,106,112,95,100,110,108,100,92,104,87,102,104,97,92,100,95,93,99,107,94,109,100,88,109,103,91,94,94,98,91,109,104,94,95,94,102,109,92,119,90,107,96,98,108,94,105,88,114,117,88,94,87,100,94,92,101,96,98,106,103,105,101,102,98,106,110,105,107,94,91,100,93,102,100,93,105,94,106,93,97,96,95,101,108,104,93,98,96,96,100,102,102,102,83,105,103,105,97,105,94,101,98,97,90,99,111,92,104,99,106,94,101,100,78,107,102,99,98,101,95,96,88,90,105,101,104,108,104,98,100,103,103,118,109,91,108,109,96,94,94,99,87,104,96,94,96,105,105,97,88,104,96,97,90,110,95,105,101,101,101,98,95,99,97,105,95,99,100,115,99,101,77,120,99,96,100,110,100,108,107,88,94,109,96,97,103,105,108,103,99,95,91,102,100,87,100,97,108,97,98,91,97,110,97,91,101,96,103,105,94,92,94,104,101,88,93,95,106,96,103,95,104,102,101,93,99,102,99,105,92,120,96,110,98,105,89,101,83,100,117,100,98,103,106,100,102,100,94,107,90,96,101,97,80,106,100,96,103,104,103,103,101,94,117,98,112,95,100,98,103,96,103,101,101,98,103,94,101,106,103,94,93,98,89,93,90,103,92,94,96,96,106,97,97,106,110,101,98,108,85,98,107,104,101,103,112,103,112,94,92,109,87,100,94,94,79,93,99,96,90,115,101,110,102,106,98,99,104,122,92,103,120,104,111,102,96,109,94,103,99,84,99,91,99,94,106,110,89,99,103,102,110,96,98,91,111,94,102,95,103,105,94,107,103,109,95,96,107,93,112,89,98,92,100,97,103,100,93,105,102,93,92,101,97,87,106,103,87,99,104,95,85,101,101,109,96,89,105,105,103,99,100,92,105,102,106,98,110,93,103,101,107,102,98,101,99,96,100,98,103,90,110,120,98,101,102,104,94,104,102,104,97,99,95,108,92,109,101,101,96,107,103,95,97,95,83,95,105,110,102,101,99,98,102,109,97,98,95,102,98,112,99,105,91,101,98,104,109,102,106,111,104,96,100,88,107,94,104,91,95,94,109,110,99,104,91,112,86,116,93,96,97,106,102,98,98,96,103,88,95,94,102,94,76,95,97,106,107,98,114,91,101,117,103,93,91,91,87,99,106,109,100,92,119,88,114,93,111,89,97,95,97,96,111,96,96,100,102,104,94,93,109,94,96,89,98,95,115,98,98,96,94,100,112,102,101,99,102,96,86,97,77,98,104,94,100,107,107,109,75,108,91,96,109,112,103,105,111,88,94,98,101,93,98,101,100,98,102,104,103,103,84,87,106,63,95,93,97,105,102,96,97,71,89,93,97,106,100,108,91,98,94,104,91,103,97,95,95,119,103,100,101,105,101,95,102,97,105,101,96,102,107,95,114,98,96,94,108,95,106,96,108,105,95,99,109,106,111,100,101,95,95,95,103,100,100,101,109,101,95,99,103,113,113,106,97,110,93,99,115,101,105,116,104,105,98,100,104,115,108,86,92, +706.20581,103,96,98,101,88,103,100,110,99,91,97,94,106,91,103,108,90,94,98,99,104,92,96,123,90,90,71,93,105,98,94,98,100,109,104,101,104,92,94,94,98,108,97,93,106,108,97,106,93,96,106,95,114,93,93,97,102,89,112,78,103,99,102,101,100,100,89,110,78,103,94,97,108,111,108,110,98,107,106,98,99,102,87,96,80,88,102,88,95,90,104,104,93,107,100,101,108,100,98,99,88,91,100,100,96,97,96,106,97,90,99,103,100,96,97,103,96,106,103,96,106,99,99,103,93,104,100,95,100,102,91,98,100,98,110,97,99,98,100,82,106,104,94,96,116,93,108,88,94,99,121,98,113,91,97,93,102,103,98,96,101,110,98,95,114,97,106,95,90,94,97,92,97,91,103,107,105,93,90,101,94,96,100,100,109,102,95,88,106,93,97,85,94,92,98,93,92,106,92,89,98,97,104,108,102,105,94,83,97,99,88,97,103,105,109,100,104,101,102,91,90,73,88,89,97,107,99,96,113,87,104,101,83,102,100,105,81,92,115,95,101,105,110,98,84,88,107,100,106,104,94,100,96,103,101,104,97,103,102,91,94,96,104,86,82,101,98,100,96,109,96,88,93,84,110,98,100,96,94,105,100,103,98,93,100,104,106,103,78,102,91,95,108,96,103,95,93,93,105,100,91,95,104,94,101,106,104,106,101,102,84,112,99,96,104,102,106,86,108,99,95,90,96,102,99,98,105,91,114,101,93,92,94,104,98,100,119,98,87,102,89,110,104,98,95,74,99,108,116,104,100,95,94,98,102,99,105,95,106,95,80,97,105,75,105,100,101,98,95,98,115,93,92,107,101,94,98,97,94,93,88,92,91,110,86,92,100,96,103,91,100,90,100,101,99,95,97,93,108,121,91,87,100,92,103,96,100,98,108,92,95,87,124,66,94,77,94,90,108,98,96,97,98,96,97,92,82,108,101,105,98,94,96,120,93,107,74,98,107,95,109,99,106,98,95,106,98,102,98,101,91,104,93,95,95,94,94,96,104,103,109,107,95,101,103,102,96,94,92,111,97,101,99,95,94,103,89,116,91,102,105,112,106,102,104,94,100,84,101,101,101,103,103,102,96,90,106,96,97,101,114,103,101,94,98,105,88,92,97,96,108,102,99,91,98,101,92,96,94,87,83,96,96,92,87,100,105,101,79,105,120,106,99,97,92,103,102,92,96,115,103,112,97,89,104,98,100,103,99,82,90,99,106,102,101,98,103,95,91,95,103,100,95,99,92,107,107,101,94,101,101,90,101,110,82,97,96,87,105,86,110,102,100,86,85,94,101,99,96,100,106,90,109,103,110,106,108,100,96,105,101,106,98,94,100,102,101,91,97,118,91,95,106,101,109,100,105,99,100,99,80,99,97,94,108,79,100,99,117,117,92,93,101,104,106,100,88,107,91,125,106,87,110,102,101,89,86,83,104,91,96,100,92,92,104,81,106,123,102,97,96,99,104,96,104,108,98,98,98,99,109,97,104,94,88,115,85,76,97,85,87,87,103,89,96,93,110,98,95,102,107,93,87,94,92,99,103,105,100,110,101,82,87,103,100,91,98,98,104,111,99,100,105,97,97,103,91,104,97,95,103,96,107,110,99,94,89,89,102,91,115,108,97,93,74,109,99,76,112,124,106,99,105,102,100,99,101,98,103,101,99,93,95,91,96,93,109,93,105,85,83,101,101,105,94,109,96,90,100,102,88,80,109,104,104,104,85,99,94,94,108,101,103,109,95,111,90,95,96,107,105,98,109,100,106,108,90,101,94,100,95,106,92,109,93,97,101,99,103,94,103,94,105,109,95,104,115,111,106,91,85,109,103,108,95,108,112,93,92,97,107,101,93,105,93,93,104,95,97,96,84,100,99,104,95,100,113,80,102,108,86,99,108,101,99,105,92,101,92,97,97,111,90,103,105,88,93,92,112,113,86,102,95,99,93,103,107,105,100,96,102,107,93,100,92,110,95,94,104,96,116,110,108,102,100,105,109,130,91,101,95,103,93,87,103,93,98,105,103,107,91,87,109,100,90,95,92,104,99,103,105,100,91,98,91,88,109,95,104,100,99,96,100,101,103,97,101,96,102,94,96,98,88,110,101,103,103,106,104,100,106,98,104,108,93,101,101,92,96,91,109,107,109,96,105,104,94,89,100,88,93,106,98,94,97,99,99,98,105,95,94,103,97,101,110,107,110,87,91,94,100,97,88,99,91,98,93,94,87,99,109,94,101,94,103,102,95,103,99,90,97,104,102,104,95,108,108,100,79,98,107,109,104,101,98,95,99,91,90,85,93,92,109,94,96,93,94,104,107,101,107,102,96,99,83,105,92,100,108,87,102,121,96,106,90,91,94,97,101,94,108,99,103,94,95,89,98,107,87,89,99,110,104,87,103,112,95,94,95,97,87,99,88,104,102,102,103,94,110,79,94,90,103,91,131,130,100,105,101,93,89,88,90,94,99,103,101,100,96,87,94,133,111,95,107,94,101,92,92,103,94,103,106,101,94,102,102,110,98,95,101,98,102,99,95,100,91,99,90,109,104,110,105,107,110,104,103,103,106,97,97,102,105,102,98,103,104,95,87,98,87,86,104,94,96,103,93,94,109,98,97,98,101,104,94,98,96,105,114,98,96,98,98,91,113,105,105,82,105,111,98,106,100,99,76,103,98,96,108,107,94,112,109,96,97,101,94,117,105,84,102,100,102,91,99,105,107,102,94,107,111,107,98,97,101,105,96,102,103,94,79,104,94,110,95,87,101,106,115,105,105,105,111,88,103,88,98,101,96,101,106,98,116,100,98,78,94,99,91,107,105,96,95,97,123,103,102,103,89,95,99,100,100,95,99,105,96,92,105,112,102,109,108,102,107,103,102,97,98,99,86,107,92,99,97,69,94,98,116,108,88,101,101,112,100,79,107,101,112,100,95,91,101,101,97,104,94,80,126,101,124,97,98,108,109,96,102,96,94,99,95,106,93,78,92,103,98,109,102,113,96,96,103,98,96,109,100,88,100,110,87,100,109,89,100,101,107,86,100,100,106,97,91,96,97,105,107,100,85,108,100,101,101,83,109,95,91,88,97,107,105,104,108,104,101,86,105,100,102,104,93,102,99,94,111,106,104,89,108,96,105,102,97,98,103,96,104,106,108,97,85,99,104,98,105,90,100,99,84,101,104,97,95,104,99,105,100,97,113,92,106,98,93,119,112,111,100,113,95,87,95,102,97,93,101,106,109,88,104,95,106,77,109,96,94,115,107,106,99,97,99,104,99,102,103,103,93,82,102,91,97,102,102,109,101,108,99,103,97,100,96,92,115,106,95,104,99,102,96,95,102,95,96,107,95,100,105,82,94,100,80,92,109,94,100,104,108,94,107,92,97,87,96,87,113,105,99,99,91,94,106,96,97,97,93,98,109,98,90,104,109,100,96,99,111,94,96,105,113,100,100,98,91,95,94,96,102,95,109,95,110,105,92,101,100,99,79,86,106,108,104,99,112,94,102,93,102,101,98,102,111,92,95,103,81,86,96,101,113,88,93,108,104,92,92,95,102,89,105,107,102,100,105,108,96,100,103,91,96,76,86,101,101,112,108,103,93,81,89,92,104,96,92,107,118,101,88,95,98,103,105,97,98,105,92,104,95,97,94,102,106,117,99,102,96,92,110,101,93,95,104,95,92,94,109,103,103,97,108,107,102,103,104,106,102,94,98,101,88,98,98,94,105,106,94,96,118,86,99,105,100,101,96,108,105,100,96,89,94,94,110,102,92,96,100,100,101,89,98,83,95,117,94,96,93,109,102,88,106,108,96,100,107,93,113,98,86,106,109,102,98,103,90,91,105,103,97,105,99,96,100,102,100,106,88,95,107,91,103,99,100,92,105,102,99,102,101,100,92,98,103,96,95,102,106,100,97,99,95,94,100,95,86,105,91,96,104,88,105,109,112,100,88,91,91,95,94,95,99,93,110,85,111,86,113,103,108,93,100,98,105,104,106,111,79,107,100,98,113,98,105,89,97,88,105,100,100,90,103,94,104,99,93,101,94,108,95,102,91,93,104,102,95,96,107,98,107,104,97,102,97,99,105,95,94,97,105,93,99,100,88,94,97,105,90,98,108,84,103,95,102,94,105,100,89,106,105,112,103,91,107,103,96,98,109,106,91,92,94,97,103,98,101,89,97,96,117,98,113,103,113,92,115,99,93,102,95,108,95,96,92,108,94,98,105,107,106,91,97,107,88,110,99,97,98,98,92,96,109,107,116,95,98,105,85,100,100,116,98,106,106,96,106,101,106,94,95,92,100,108,101,79,107,109,98,104,95,104,105,101,103,103,104,106,108,108,107,100,101,104,93,101,100,104,102,98,94,87,83,101,106,123,95,98,113,105,94,78,98,106,107,92,104,106,103,94,96,115,106,117,98,95,91,100,110,103,112,103,104,92,94,105,95,97,91,91,85,97,110,110,104,97,101,98,98,98,102,108,91,105,103,100,100,100,105,103,99,106,93,120,101,112,112,110,102,96,99,94,87,90,94,85,97,94,102,95,94,83,96,102,96,100,99,94,103,97,103,110,110,106,95,99,101,95,95,95,103,109,93,109,64,100,96,104,77,102,106,104,88,101,93,98,96,107,97,97,121,95,105,89,106,109,110,94,93,102,100,72,100,64,82,87,97,99,84,103,121,119,100,100,104,91,105,95,88,93,107,102,64,102,89,97,96,103,78,100,96,67,92,86,118,100,96,101,107,92,96,103,96,90,101,85,105,105,112,103,95,124,104,117,97,112,110,98,101,105,99,93,97,106,100,95,94,95,95,98,91,100,102,94,97,97,91,85,128,95,99,111,105,102, +706.34717,109,104,79,94,87,112,110,83,95,92,108,112,104,98,97,100,88,103,88,110,107,102,106,96,105,93,83,110,94,104,100,100,89,97,108,91,112,94,103,106,90,102,103,91,100,100,72,95,96,110,98,101,103,103,95,98,101,98,104,91,114,92,96,91,98,116,92,96,96,102,99,108,96,88,94,94,99,90,111,86,99,110,102,101,102,77,101,102,78,94,104,100,97,102,98,94,91,116,114,101,91,103,99,93,92,102,82,105,88,110,94,108,95,101,109,112,99,94,108,96,105,106,98,106,104,118,102,100,74,121,101,103,86,87,100,108,101,103,99,91,87,101,107,101,98,88,105,117,95,108,101,115,104,100,94,92,97,89,97,94,100,100,101,125,111,90,103,102,95,99,107,97,95,104,91,106,98,95,106,99,90,95,95,102,104,97,103,86,105,86,97,105,97,93,105,94,112,91,96,97,94,97,110,115,99,105,107,92,100,113,95,107,99,105,115,107,96,107,93,102,101,102,112,90,96,99,87,122,101,113,97,93,96,104,105,99,106,99,97,95,99,116,86,101,105,104,98,97,101,95,103,90,90,105,92,97,78,102,106,99,87,106,106,84,89,104,90,108,101,92,92,96,103,98,106,107,101,96,87,105,93,104,102,101,111,104,99,97,95,99,101,102,106,87,111,120,104,102,113,108,106,107,103,94,92,104,102,109,101,89,102,93,98,106,97,106,107,96,106,102,91,107,102,102,106,105,101,103,95,104,113,100,93,102,95,98,88,93,97,100,99,97,107,97,101,96,113,104,106,102,80,96,116,97,112,105,113,98,98,94,98,121,90,98,87,102,76,117,92,110,95,98,99,96,109,101,111,103,98,109,105,111,87,95,95,106,95,99,100,97,103,98,105,106,97,100,103,102,100,90,107,99,103,94,104,102,104,102,98,101,101,103,98,93,101,95,99,105,97,102,101,97,91,92,101,104,91,102,91,97,98,104,96,93,79,107,91,94,104,99,100,105,102,118,96,91,94,102,97,101,98,112,100,100,94,114,91,109,110,84,99,100,105,99,106,79,113,102,97,95,110,99,115,103,96,100,112,108,103,108,102,89,108,99,88,106,103,102,109,102,104,109,111,95,95,99,95,91,99,96,109,105,101,115,107,108,105,95,110,96,108,94,104,100,104,102,98,86,105,95,94,101,101,90,91,105,122,98,98,112,100,104,99,91,100,111,120,111,100,97,103,93,103,105,88,105,95,98,98,107,88,104,105,106,99,100,108,91,103,111,93,94,99,112,94,98,100,102,101,92,95,94,92,111,106,110,87,103,90,105,91,105,93,89,98,92,96,95,87,94,105,103,109,105,105,103,93,98,101,100,116,105,108,98,97,97,98,109,107,104,99,81,98,101,103,97,98,99,100,100,95,103,102,104,98,101,109,103,92,95,97,105,112,100,103,95,89,101,105,97,111,106,95,110,102,99,84,77,114,99,88,109,105,94,88,102,109,97,92,98,99,104,105,95,97,90,94,100,107,100,107,88,112,104,116,107,115,109,98,96,113,88,101,89,97,101,96,91,92,99,102,97,109,100,107,94,109,91,99,86,92,97,109,109,105,102,105,95,98,103,98,87,103,96,104,114,102,114,96,97,93,84,102,114,85,101,96,101,116,97,95,100,106,98,99,99,102,87,134,108,110,102,112,98,101,101,98,99,105,105,97,97,103,88,100,99,102,97,103,94,104,114,107,109,75,101,97,97,103,84,107,102,95,96,103,92,100,91,109,99,91,91,99,90,80,99,113,108,83,109,85,97,96,98,96,96,101,100,108,98,84,107,96,88,105,95,109,105,99,97,104,104,104,91,102,99,103,99,101,94,103,101,109,102,97,102,107,108,107,100,110,84,98,90,112,100,92,114,99,94,99,108,102,109,103,98,94,104,98,115,96,60,106,98,104,101,110,101,99,107,88,94,98,104,93,101,97,96,120,106,100,105,101,106,100,96,98,97,108,99,99,95,112,99,103,106,88,94,110,106,98,112,98,106,65,95,93,107,89,98,90,110,101,97,114,92,98,103,90,117,95,99,109,100,102,105,90,84,94,104,104,102,100,95,103,102,98,101,90,100,106,102,112,96,97,100,105,111,90,106,105,107,103,97,95,96,97,112,99,107,121,110,105,100,117,101,99,104,100,97,102,110,97,93,100,101,94,62,102,100,106,105,84,91,101,106,118,92,91,97,93,96,96,104,106,95,91,87,98,88,105,101,127,95,109,93,97,99,99,87,118,97,91,98,92,84,91,99,100,98,116,108,106,104,98,105,105,95,92,104,106,102,85,108,89,112,97,106,95,99,103,94,103,105,107,93,101,108,91,104,102,105,93,99,98,100,103,101,110,95,97,100,93,100,110,96,88,96,105,96,96,102,113,115,102,92,89,100,103,97,98,113,96,95,105,103,94,88,98,97,91,91,110,98,99,103,98,92,103,104,104,105,98,93,91,95,96,87,102,91,93,87,100,98,108,91,96,100,87,111,74,117,110,109,105,90,89,95,95,99,100,100,106,108,111,97,105,92,103,93,99,114,106,105,102,111,96,105,107,82,99,102,99,99,110,90,109,101,107,98,98,99,116,99,105,97,110,99,103,110,103,104,98,89,102,99,105,95,104,95,98,105,106,103,120,124,105,100,108,109,104,113,102,108,95,108,110,112,99,97,104,108,104,96,97,104,97,97,99,115,84,110,108,98,89,98,108,96,98,99,101,103,85,101,109,101,89,113,95,112,108,107,101,108,107,95,97,98,116,91,100,104,100,104,94,93,100,107,105,98,107,101,107,114,99,105,101,107,96,106,104,101,106,97,95,96,109,91,113,100,116,103,104,103,95,113,94,96,102,99,107,105,106,103,92,109,101,98,109,90,104,103,101,94,110,109,105,111,92,102,98,108,105,96,103,105,113,109,110,99,109,97,98,107,101,103,100,107,105,111,93,90,101,97,115,101,95,96,95,101,106,76,95,104,108,92,114,99,101,107,95,97,102,111,109,103,91,91,88,105,97,112,102,92,86,92,104,94,113,103,107,102,93,101,101,103,87,92,105,108,102,106,109,85,103,109,117,101,97,81,99,98,104,109,99,88,101,101,103,102,86,97,91,95,97,99,98,102,96,93,104,92,96,100,95,101,87,92,113,93,107,101,106,84,97,100,103,105,104,87,105,95,101,109,99,91,101,111,106,96,97,101,92,105,99,97,81,113,95,101,108,110,102,111,116,86,85,102,92,96,97,101,100,68,106,104,103,112,109,103,95,93,95,110,98,93,95,101,104,94,97,115,92,96,105,109,90,99,99,106,107,115,92,107,94,93,93,106,104,91,96,96,99,97,91,106,107,100,102,102,75,74,98,100,97,96,98,97,103,110,86,105,95,104,99,87,100,117,99,91,100,108,101,92,101,100,115,85,91,88,95,86,90,100,96,98,105,98,97,110,104,102,92,88,109,99,99,102,111,91,100,95,99,107,74,105,93,91,105,69,108,100,95,97,108,87,118,107,106,101,91,103,97,98,117,112,108,78,115,97,100,95,101,113,98,91,103,98,82,107,85,100,100,95,94,90,96,100,106,113,62,101,104,105,109,100,99,106,78,104,106,101,89,104,108,90,106,100,58,105,101,113,105,81,100,113,93,103,91,97,103,107,84,104,97,95,100,102,98,100,102,105,107,108,93,107,105,103,96,83,94,95,103,105,98,98,104,105,108,111,101,96,96,85,91,104,104,95,98,102,108,115,111,105,100,98,106,88,110,95,83,96,101,101,106,91,95,100,105,109,98,84,96,97,95,137,106,112,91,100,104,108,102,104,101,105,110,118,92,91,104,109,94,101,95,96,85,98,114,101,97,93,114,98,109,100,105,101,105,105,85,97,108,97,99,94,119,98,105,92,93,95,110,93,102,108,106,105,110,114,105,104,99,116,90,104,94,97,97,81,111,104,87,111,101,97,96,105,116,109,106,92,94,101,124,104,105,98,104,102,113,95,97,92,92,97,106,96,105,107,106,106,88,105,94,96,102,98,96,93,107,101,105,102,104,107,95,103,108,92,104,101,102,108,94,106,106,107,99,107,99,104,95,100,107,115,91,102,113,97,88,87,113,106,85,92,120,104,110,107,113,100,97,106,99,102,91,94,87,102,101,99,96,90,99,107,91,100,102,99,88,102,100,116,116,93,87,106,92,99,112,90,106,82,94,94,104,96,103,109,101,86,90,95,91,85,109,105,86,108,95,97,102,90,103,111,102,91,91,101,97,111,107,95,107,116,100,98,96,107,97,105,94,104,109,105,99,96,94,108,98,104,100,99,133,110,97,106,111,102,106,90,110,100,98,85,105,100,112,108,86,104,95,105,98,98,106,105,106,97,98,94,100,104,95,109,94,91,95,99,112,97,88,97,101,102,93,113,103,93,115,97,88,105,109,87,97,94,112,96,102,105,101,102,106,94,93,102,104,99,93,96,101,112,112,93,99,105,83,91,93,97,110,105,104,100,91,111,90,108,94,104,95,102,106,95,106,98,102,92,98,113,108,103,109,90,101,103,91,98,96,111,90,91,111,96,98,106,86,101,94,100,97,103,106,95,102,106,94,105,117,109,108,97,87,104,102,104,88,94,94,98,113,103,103,111,87,100,89,94,98,98,98,99,97,101,101,109,101,100,99,112,97,101,103,103,100,113,100,61,89,97,92,92,106,103,101,116,110,107,111,101,107,95,96,117,109,101,96,97,95,101,102,92,100,113,129,106,93,96,111,95,84,88,101,104,104,102,91,103,105,94,90,101,121,98,109,108,95,98,96,104,87,110,105,105,100,109,116,99,99,95,107,94,91,105,104,96,98,98,105,102,115,102,99,93,108,100,91,99, +706.48846,89,106,87,102,97,110,102,88,98,102,100,112,106,99,91,91,99,83,96,95,106,99,109,91,120,105,95,98,75,88,96,64,112,95,83,91,108,100,98,95,96,100,103,73,96,101,94,92,87,105,95,94,101,92,89,86,99,96,109,92,105,109,91,106,108,99,90,109,90,94,109,111,93,105,96,99,93,96,98,94,96,106,100,117,87,102,92,80,108,108,104,99,87,99,95,98,99,99,99,82,101,99,105,98,107,82,105,100,93,86,107,92,98,88,101,104,101,100,101,99,104,101,109,97,101,98,111,84,92,101,92,113,94,104,86,107,97,98,99,104,103,87,88,103,100,82,103,96,90,93,99,99,95,92,97,88,98,97,105,94,106,100,103,84,95,97,100,83,94,101,106,98,107,87,92,105,113,97,93,102,104,91,98,101,98,103,86,88,98,87,96,88,86,83,86,105,109,96,108,99,96,100,101,106,92,98,99,99,104,100,94,91,106,111,98,99,103,103,91,96,108,97,97,105,99,101,104,102,93,100,93,101,111,108,99,95,96,111,83,100,88,103,105,95,83,109,105,104,82,91,102,100,93,91,97,91,98,95,80,88,97,106,91,109,101,105,92,90,102,107,97,101,105,93,99,89,99,103,102,96,86,92,87,125,104,99,102,92,86,99,94,105,109,104,101,104,94,111,96,88,100,95,106,111,97,91,98,108,92,98,79,100,88,108,90,125,99,88,116,88,95,94,94,101,91,80,82,106,110,103,109,80,102,112,108,94,94,77,86,99,98,103,101,82,90,104,92,99,107,97,99,110,95,103,104,104,98,115,116,113,92,125,102,103,91,101,108,91,99,108,100,77,104,96,102,98,101,102,94,104,107,98,101,105,103,94,96,98,110,98,105,107,97,106,105,94,103,107,100,82,94,99,106,101,94,71,97,105,102,116,95,107,95,105,107,92,88,93,93,95,101,95,95,88,93,101,96,86,105,108,97,100,94,100,88,106,101,98,90,99,93,104,100,98,93,98,114,94,96,108,95,87,90,99,109,100,105,109,99,98,100,102,98,88,108,98,89,95,97,101,104,99,105,96,103,102,89,100,101,83,103,99,105,101,98,79,97,99,85,94,95,113,108,101,99,106,95,95,101,100,110,100,103,96,101,82,91,104,102,89,101,93,103,105,95,94,91,95,106,92,92,96,110,100,101,108,98,92,99,88,91,95,94,104,100,105,100,103,105,101,95,96,97,100,109,90,103,89,106,105,102,98,99,98,94,102,97,107,95,91,102,96,121,106,100,105,114,98,98,109,102,92,87,92,102,99,99,101,88,78,101,99,111,100,127,98,97,98,90,92,98,107,94,97,117,95,95,103,97,100,99,98,114,85,103,96,99,96,115,106,111,94,96,90,101,98,102,89,108,98,98,114,113,93,97,101,104,93,96,106,91,109,100,105,100,107,96,99,103,95,95,87,94,106,91,102,96,98,88,93,93,94,100,103,101,95,95,88,99,103,111,102,92,102,90,90,109,82,109,107,101,99,105,97,86,95,99,106,80,95,81,93,99,83,94,105,101,101,95,97,93,102,100,112,100,104,91,100,87,93,87,98,96,103,96,98,104,103,97,101,92,101,101,91,91,92,88,96,102,93,95,96,118,106,94,92,99,109,97,98,104,94,100,100,99,100,98,94,95,109,109,95,98,91,99,103,104,96,109,98,93,78,94,97,107,95,90,100,102,103,99,105,90,85,87,82,95,94,109,95,103,99,101,109,92,97,86,97,109,97,103,67,86,101,105,106,112,99,101,103,90,95,101,104,107,106,98,77,108,102,94,105,108,92,104,97,100,101,72,101,106,104,95,93,107,82,99,91,96,99,95,100,84,99,93,96,96,80,60,92,102,94,103,87,99,104,104,92,107,109,98,95,106,113,88,100,90,96,109,91,103,91,92,110,95,90,101,99,96,93,99,97,95,105,99,94,95,106,97,92,74,97,104,102,97,112,105,98,101,96,86,110,111,96,102,105,103,94,108,105,91,101,108,109,103,91,108,116,100,97,94,110,94,101,97,89,88,98,95,107,95,107,99,100,97,104,94,101,82,84,103,101,100,106,110,95,100,96,95,93,92,103,101,98,89,102,99,111,97,86,103,96,99,102,96,103,98,96,83,120,96,94,95,91,111,105,102,110,101,105,89,90,103,90,98,94,91,113,109,95,102,94,74,83,94,91,82,88,102,109,84,97,98,91,101,102,97,102,104,110,103,97,100,101,94,89,94,107,84,91,100,91,80,96,95,102,98,99,92,95,93,112,89,104,86,92,89,102,110,87,102,92,94,92,99,99,94,90,93,106,102,96,91,106,95,97,94,104,103,102,112,108,89,97,101,101,99,98,95,101,93,97,91,101,86,101,83,95,97,97,88,102,86,98,98,89,99,93,99,94,83,100,102,101,90,94,116,102,95,107,95,115,92,96,106,91,100,102,101,108,107,97,95,91,100,103,99,106,99,105,102,93,91,100,91,105,91,108,107,102,90,105,91,104,98,98,103,88,90,99,99,107,96,121,104,95,95,96,94,75,104,103,98,94,100,112,102,87,98,94,92,101,103,99,100,110,85,94,109,97,98,99,107,101,95,100,98,82,103,102,112,90,98,94,103,95,96,100,92,99,90,105,100,89,102,104,100,108,91,95,105,102,96,97,97,95,116,107,92,91,88,102,100,117,103,109,95,109,105,107,97,111,106,100,106,95,113,94,91,98,100,102,87,91,98,103,99,89,103,96,98,99,96,101,102,115,94,102,94,109,95,93,109,105,101,91,85,77,108,90,98,104,115,86,102,103,107,117,100,81,105,97,96,99,102,103,87,99,92,104,106,96,100,99,99,102,87,112,91,109,99,97,83,108,104,67,97,91,111,100,109,100,95,92,100,110,96,106,99,99,99,101,96,95,104,104,107,91,103,96,101,102,91,103,90,100,98,100,103,103,98,99,94,89,99,102,100,94,103,95,100,83,88,106,110,104,103,98,106,102,107,106,115,98,99,107,97,91,99,104,99,89,101,95,95,100,102,84,107,101,96,104,103,93,91,97,110,100,114,90,105,102,101,104,93,96,100,104,91,100,100,86,111,102,94,91,93,105,100,92,109,91,110,103,74,102,89,97,99,95,98,90,109,95,109,104,111,90,94,105,95,106,96,103,104,99,98,98,109,98,99,94,89,98,96,102,91,101,86,104,91,116,93,89,103,98,101,102,106,108,107,102,75,111,104,88,96,101,103,97,98,97,95,97,98,89,98,106,104,94,91,89,96,106,116,96,98,89,86,101,116,99,100,92,93,98,102,77,103,95,92,104,101,94,104,98,101,105,91,104,99,91,102,95,92,100,91,95,102,95,94,94,110,93,83,101,94,96,107,90,113,104,106,113,82,101,100,82,103,103,96,96,104,92,93,95,105,102,88,100,99,107,102,110,101,107,96,91,105,95,101,102,103,90,91,102,107,87,103,103,98,107,104,96,104,110,96,101,98,96,88,95,93,99,91,108,101,105,103,105,95,101,101,92,94,106,91,96,96,125,105,94,98,106,92,103,97,96,103,98,99,111,98,119,100,94,97,112,92,100,85,95,103,98,113,99,102,98,104,94,101,97,96,99,97,89,96,86,101,90,81,96,100,103,93,90,87,93,94,97,99,106,100,108,95,98,92,100,109,86,96,94,102,88,101,98,82,98,103,93,100,97,95,110,91,96,99,94,127,96,93,99,87,104,123,113,91,98,92,87,86,97,108,96,94,96,96,85,105,96,94,103,98,104,96,111,100,94,101,99,102,93,101,99,102,99,107,113,112,108,71,99,104,94,89,94,106,102,91,90,97,98,92,96,107,85,101,90,91,84,93,97,95,101,102,83,95,97,97,104,105,87,110,94,87,105,101,92,98,92,93,102,101,99,95,99,104,106,100,104,90,100,72,108,94,109,129,89,105,95,103,106,86,100,106,101,109,105,99,95,118,104,96,95,102,104,91,99,102,99,106,96,108,111,107,93,100,101,101,94,88,102,90,94,108,102,106,97,110,103,97,93,108,98,102,88,93,106,94,100,102,89,108,97,104,113,91,105,98,80,119,89,97,111,99,113,122,106,102,95,96,101,91,95,96,95,112,98,92,109,92,89,85,99,96,102,111,92,95,92,105,99,98,100,94,98,96,115,107,86,106,102,103,99,108,91,99,109,95,102,112,104,76,95,98,90,106,109,105,93,102,88,99,92,85,99,96,89,110,107,102,92,120,72,105,110,103,93,93,97,102,99,101,99,96,100,96,94,89,98,99,97,99,98,107,87,100,98,100,99,110,100,99,94,90,87,106,83,100,97,111,98,106,91,88,99,123,94,94,93,96,99,93,95,94,108,120,108,107,103,102,92,104,79,96,86,102,102,99,96,106,93,98,112,96,104,91,95,104,101,105,99,88,93,112,87,85,96,110,101,101,95,97,102,111,101,87,104,103,102,101,99,100,102,111,97,103,97,103,101,92,102,104,114,115,117,107,109,101,97,104,108,64,101,94,100,93,117,101,95,84,105,91,82,101,96,106,98,84,95,94,99,91,96,96,105,107,90,93,104,94,95,80,110,99,107,99,106,96,102,104,94,105,95,100,94,117,105,96,87,103,92,104,91,100,88,97,96,88,94,102,94,96,99,103,112,95,95,97,69,109,102,102,105,104,92,104,105,115,92,100,104,89,106,92,96,97,110,107,107,95,98,101,113,91,95,92,100,75,113,92,95,103,100,96,99,100,102,81,95,106,121,114,88,95,95,95,110,97,109,98,102,90,91,101,111,109,101,84,109,95,100,91,91,90,100,83,91,107,96,98,110,85,96,104,91,69,105,93,104,100,84,99,92,103,90,95,92,99,95, +706.62982,99,117,77,83,96,105,94,92,96,91,101,97,101,87,92,86,90,94,99,109,115,90,95,106,100,100,91,98,90,97,103,93,115,96,95,124,97,98,95,109,110,94,89,93,105,95,101,108,106,73,95,100,109,96,100,94,104,102,110,83,101,90,106,92,102,102,87,123,77,115,104,102,109,99,105,97,92,79,100,98,104,94,106,96,93,103,93,98,102,98,111,90,104,99,101,86,109,86,125,92,92,101,101,100,94,118,95,100,90,101,105,109,103,96,96,103,96,106,110,102,108,109,107,101,94,101,105,87,106,97,104,112,94,91,113,98,104,113,96,100,101,96,92,100,90,103,103,109,96,106,96,101,102,103,83,99,101,101,103,98,101,103,107,92,89,109,88,97,104,104,95,96,96,90,100,101,97,80,95,120,94,105,92,97,107,99,100,86,112,95,88,97,104,104,101,95,98,100,113,87,102,97,105,100,79,97,97,94,102,96,99,104,96,100,100,101,98,105,88,94,108,91,98,99,94,104,104,102,95,109,92,95,98,95,107,93,106,109,103,116,103,98,103,111,108,102,106,104,100,117,88,102,95,91,90,104,94,97,94,97,104,98,105,94,99,94,98,107,100,101,110,114,96,87,105,100,103,106,99,100,92,101,109,77,100,102,83,112,103,59,96,87,111,95,105,105,103,103,104,105,94,100,103,99,94,94,78,97,109,108,101,105,102,106,105,95,93,105,101,98,92,100,94,95,95,108,97,96,103,102,84,93,105,94,95,90,105,103,105,98,100,104,97,77,104,110,96,98,97,99,98,103,94,92,99,109,101,99,109,101,118,100,106,83,93,103,101,103,98,106,92,101,107,99,108,85,92,96,98,104,107,96,100,100,92,82,96,100,94,112,100,99,97,122,91,95,100,97,101,106,108,100,96,95,111,71,98,103,78,101,96,96,105,105,100,88,99,99,104,105,96,120,101,101,108,98,103,90,101,97,103,97,113,93,97,103,103,98,94,97,102,97,110,110,114,100,94,98,95,96,105,94,103,94,103,94,101,108,71,97,96,97,100,104,98,96,88,101,95,101,98,104,60,71,98,102,98,117,104,101,107,96,110,81,121,113,108,99,104,98,106,88,108,92,101,83,93,96,96,95,104,88,91,103,97,90,88,88,101,110,98,109,90,90,98,103,109,99,101,108,111,96,88,106,93,100,98,106,101,105,95,106,91,79,97,100,103,100,78,91,96,108,97,104,99,96,96,95,110,100,96,97,103,114,88,91,87,88,96,104,97,102,101,87,94,95,103,106,97,102,92,82,106,100,102,105,104,96,94,109,96,99,91,93,99,103,98,104,95,82,96,96,92,96,104,101,99,109,109,105,110,101,101,86,99,105,93,107,104,107,100,97,102,96,104,88,102,100,95,99,104,101,98,94,111,91,84,97,105,96,96,96,107,102,100,89,93,104,104,96,109,103,87,78,95,96,85,108,110,96,93,96,101,107,86,102,99,100,110,97,105,87,101,96,89,89,99,95,96,94,96,98,90,94,101,112,69,93,110,102,112,114,112,115,97,92,110,104,106,105,97,109,105,95,97,101,95,99,96,93,98,92,100,92,100,106,93,104,95,97,98,109,105,87,94,86,94,70,89,99,99,102,118,102,97,85,94,104,94,100,96,101,102,110,92,84,94,87,101,110,101,100,107,109,103,91,87,104,101,104,100,109,95,110,98,93,106,104,104,97,98,89,105,83,104,105,92,101,92,106,89,95,108,98,99,94,109,108,91,96,113,96,99,97,109,111,88,102,104,99,105,100,110,106,106,111,101,118,117,106,93,100,101,99,88,101,101,96,104,96,102,111,90,97,89,99,96,100,97,91,108,104,104,85,92,102,107,95,99,87,102,99,95,109,90,99,106,97,113,97,95,94,102,112,93,102,86,93,103,93,110,94,106,102,94,100,105,91,103,109,118,95,95,98,107,100,96,103,102,110,99,104,92,110,110,90,105,88,102,100,99,92,91,100,100,101,98,106,98,89,107,114,98,109,99,96,113,92,93,99,86,106,100,104,107,110,94,97,99,92,116,112,104,101,109,101,90,94,98,97,99,99,113,95,100,95,98,100,87,106,113,99,106,101,95,95,73,100,99,94,100,80,108,117,95,102,112,99,96,96,97,110,103,102,107,91,108,95,94,96,101,94,123,97,105,108,99,99,101,102,98,101,101,92,97,95,98,95,95,91,104,110,91,102,97,91,100,108,102,93,104,88,91,96,92,83,101,96,91,97,99,88,88,94,102,101,76,88,97,107,102,117,95,101,106,88,97,83,99,94,99,102,100,101,99,94,105,102,100,96,96,86,105,104,96,77,101,99,88,83,98,108,95,100,97,106,108,92,85,108,87,110,100,114,110,90,106,105,100,106,123,102,100,97,111,118,96,90,101,93,95,113,103,100,108,91,98,97,94,96,92,96,72,97,99,97,110,100,101,91,103,100,99,111,107,108,94,91,117,108,107,102,105,94,90,103,97,98,108,108,108,105,103,92,100,97,90,99,93,96,102,94,90,92,104,107,107,105,101,111,99,104,102,105,98,101,105,85,92,94,68,105,112,105,94,98,108,93,92,91,98,89,106,96,100,96,100,97,100,84,116,90,106,102,93,104,101,99,91,88,101,71,91,101,103,90,88,97,109,97,103,93,94,111,104,102,107,83,108,111,94,99,106,110,104,103,100,84,92,93,101,100,104,95,91,95,103,105,99,77,96,97,106,112,112,100,103,105,107,103,106,92,100,98,100,101,76,105,96,96,98,99,102,107,91,92,102,96,97,102,105,100,100,95,95,89,104,112,113,59,91,88,107,99,107,109,100,95,98,102,95,97,99,96,112,110,110,113,99,97,112,100,111,101,101,98,88,95,105,116,98,96,99,113,96,100,135,108,108,91,102,94,93,93,93,80,104,112,109,99,101,100,95,104,97,103,106,105,104,104,106,97,97,92,117,108,92,109,96,95,106,100,97,88,107,98,111,112,96,112,101,96,107,96,97,112,96,95,101,104,99,104,102,86,97,105,103,98,105,104,104,122,99,96,97,88,91,74,93,106,101,99,96,99,112,93,101,108,92,99,91,101,91,112,96,98,99,104,101,71,98,111,104,69,107,100,101,99,94,104,94,87,95,90,100,100,112,98,90,111,101,85,92,93,100,95,104,112,115,102,108,97,96,93,111,104,108,116,107,101,81,100,93,89,96,103,95,94,104,107,98,106,99,100,96,109,103,99,113,95,96,96,98,96,94,101,69,107,111,101,99,87,96,98,105,104,96,88,98,94,111,106,105,110,108,93,98,104,97,87,105,109,93,98,106,106,103,103,95,106,113,106,95,103,95,98,94,117,109,94,90,100,101,98,107,105,102,100,92,102,79,97,103,102,108,104,95,97,109,100,101,94,100,109,104,91,116,106,92,86,101,109,105,105,86,117,105,97,100,92,99,98,102,100,97,99,96,98,101,103,91,96,96,104,107,105,103,87,96,99,102,94,103,104,91,75,95,107,104,116,95,92,99,94,105,99,96,93,96,114,98,96,89,105,97,100,101,101,70,69,103,91,101,104,101,110,105,103,113,97,91,103,111,108,105,106,118,109,112,106,107,108,115,106,102,104,110,110,102,107,101,112,101,110,105,105,96,120,111,108,96,100,109,87,95,104,95,98,95,95,98,86,100,107,100,100,109,104,102,96,94,92,82,96,99,90,107,105,95,100,104,90,93,104,100,98,122,96,109,95,99,112,94,93,98,101,106,102,100,104,102,105,88,104,121,104,99,109,96,101,105,86,117,100,103,83,98,87,91,113,106,95,87,106,93,92,106,93,106,103,94,89,98,107,112,101,98,105,95,104,99,95,99,87,104,90,96,66,85,103,98,100,114,103,108,102,105,94,108,112,104,99,102,103,94,114,98,89,107,95,96,102,84,81,90,88,101,111,91,87,109,103,98,104,100,103,106,93,104,93,99,94,94,93,96,90,93,91,107,101,85,96,92,95,97,100,106,87,105,100,99,103,98,101,102,109,103,102,116,89,73,93,99,98,102,96,99,112,91,109,114,103,98,126,94,113,97,97,97,98,103,102,106,99,92,108,92,79,98,104,115,100,93,87,98,98,103,99,113,100,109,101,100,99,104,102,103,117,107,97,81,84,117,83,100,94,99,106,102,100,105,111,83,100,107,99,103,95,102,103,99,97,105,108,105,106,105,114,104,89,89,93,100,105,91,95,98,96,97,99,95,99,106,92,92,100,106,102,95,111,103,112,113,96,104,104,94,101,105,100,99,92,110,98,100,101,100,103,106,109,102,91,106,108,92,102,111,98,112,94,113,98,99,113,101,103,100,105,95,88,102,80,103,111,106,95,114,107,106,104,94,101,105,98,92,105,105,100,101,88,110,99,105,100,100,71,95,97,113,103,106,104,102,108,104,91,95,98,95,94,94,92,105,102,115,101,104,102,79,103,103,91,98,103,102,96,104,103,104,99,91,96,106,89,95,121,81,101,93,98,97,102,95,97,87,104,114,98,103,102,102,102,103,92,104,98,112,112,93,114,94,105,94,100,92,94,95,98,108,96,97,102,107,105,94,100,110,109,94,80,102,93,106,104,99,95,94,87,101,98,68,101,97,105,93,108,114,91,102,113,108,97,102,104,103,96,80,92,93,90,96,104,101,93,97,96,101,104,114,110,96,100,98,102,91,93,104,102,96,104,105,104,111,103,86,86,102,100,94,95,96,101,102,101,101,93,99,94,92,98,104,84,102,97,100,110,102,94,107,97,103,97,98,97,105,98,86,110,88,124,98,106,98,99,97,108,101,108,106,80,108,100,90,89,88,93,87,93,80,94,111,87,102,113,99,98,95,102,100,96, +706.77118,98,92,102,94,92,104,104,91,89,105,100,102,93,105,94,93,99,95,90,92,94,97,75,111,98,97,100,87,69,105,97,95,101,98,111,103,89,94,106,85,104,100,109,88,106,94,93,101,95,108,108,104,110,104,107,93,98,103,101,113,88,104,102,101,103,94,98,105,96,86,88,95,90,102,106,109,97,97,106,91,99,108,103,104,97,62,103,89,93,100,88,115,100,103,104,100,98,86,106,90,95,97,100,83,99,97,84,109,101,90,93,101,101,105,113,95,91,101,103,109,110,99,100,105,99,102,97,100,113,102,105,102,99,96,109,94,92,102,103,107,100,104,91,104,91,96,108,95,104,100,101,92,95,94,101,95,95,94,106,95,93,104,109,88,96,102,89,98,107,90,103,109,87,89,93,110,101,90,98,106,99,101,101,107,99,104,105,95,113,97,92,98,97,90,105,95,98,82,95,102,83,102,93,108,93,105,84,99,88,103,109,108,99,101,91,91,99,110,106,98,93,98,98,102,98,95,106,100,99,102,86,104,105,100,113,102,105,100,117,101,102,104,113,100,106,97,106,105,111,102,109,94,91,100,96,89,88,104,88,98,95,92,109,106,90,102,91,99,95,110,98,101,98,98,105,97,112,111,100,106,101,67,87,94,96,83,92,105,97,84,96,101,106,103,98,106,105,98,92,100,91,89,100,106,92,98,101,92,104,113,100,114,105,100,113,95,101,101,102,103,105,107,111,103,106,100,102,91,108,115,121,104,104,91,106,86,93,101,102,98,105,109,96,92,94,106,108,98,100,87,114,110,97,96,104,111,104,115,112,110,94,84,98,111,98,93,96,114,92,109,99,103,107,106,108,95,97,98,98,89,104,105,98,100,100,102,103,109,106,106,107,98,98,105,114,105,104,104,97,123,99,106,99,132,103,98,97,98,92,88,99,105,92,94,91,103,90,83,105,93,104,91,100,107,97,95,105,134,94,108,104,100,110,91,94,101,74,105,101,95,94,92,98,103,108,118,87,94,106,104,103,85,106,114,101,100,96,93,100,89,93,87,98,105,97,99,93,113,91,99,106,100,96,95,105,96,99,112,106,104,109,90,105,99,106,98,105,106,106,101,108,104,96,99,93,94,96,99,105,92,104,104,96,100,98,100,93,99,105,111,112,103,96,115,98,105,108,103,93,95,98,104,95,98,105,95,99,90,105,109,94,99,96,91,109,118,99,99,108,106,96,96,107,103,109,91,106,99,112,86,111,72,101,101,104,93,98,104,93,94,99,108,93,101,103,102,99,92,128,82,92,83,87,89,105,109,101,105,100,109,113,104,109,99,96,98,102,106,109,113,85,95,96,94,103,105,97,112,102,102,101,103,105,88,100,99,85,86,88,102,90,91,100,101,87,101,101,106,95,86,102,95,90,99,108,100,99,99,110,100,105,100,119,103,98,96,95,87,104,92,96,97,100,108,104,111,94,95,69,97,124,95,95,100,89,104,95,112,101,114,96,96,110,104,93,93,103,95,92,62,103,106,95,98,92,107,90,95,95,105,102,95,121,83,95,80,91,106,94,110,99,92,105,111,111,94,83,112,97,96,99,98,88,93,94,99,113,90,92,97,95,113,95,90,91,97,96,100,93,69,92,98,93,105,101,93,83,104,115,107,105,79,92,104,97,103,108,100,105,94,99,93,96,95,95,101,93,98,99,117,102,96,82,107,104,98,100,96,102,107,113,76,86,101,104,101,100,101,97,94,110,101,105,83,109,109,104,87,100,104,97,99,104,85,105,109,86,99,107,96,103,96,106,107,99,100,94,114,110,103,109,83,96,101,90,101,100,103,96,104,111,100,95,106,103,98,112,109,105,84,97,108,103,103,108,102,90,106,96,110,102,93,102,116,101,86,112,102,92,102,99,90,113,107,90,99,105,105,96,89,98,98,109,104,108,96,108,110,104,102,105,97,110,101,96,96,106,97,114,100,104,85,105,108,79,104,92,97,100,96,98,118,98,97,97,87,95,100,107,102,96,124,110,102,98,99,101,96,95,100,105,111,101,94,93,115,91,110,104,106,93,109,106,101,99,84,77,105,103,105,102,105,112,97,106,96,95,94,86,104,90,99,112,86,89,101,87,101,91,96,91,119,103,101,106,108,114,94,87,95,99,106,102,92,109,101,102,93,110,101,105,109,87,107,113,102,97,91,105,103,97,92,97,103,97,103,107,95,92,104,99,93,105,102,84,103,96,106,107,104,116,112,91,105,93,89,102,97,100,90,114,98,103,101,101,95,105,94,101,120,97,68,96,104,103,100,99,103,87,94,101,82,105,107,106,99,103,95,102,94,104,91,121,106,99,110,104,108,91,102,83,105,100,100,101,99,122,112,92,97,108,109,117,101,87,101,101,102,100,96,105,93,93,87,98,98,101,90,107,107,71,129,99,104,82,90,97,104,102,108,93,88,94,97,96,100,96,113,107,94,108,100,98,99,100,106,98,75,97,95,97,98,103,96,94,95,93,98,103,98,93,99,96,103,114,99,109,98,94,94,92,103,105,117,105,89,105,107,95,88,88,113,95,108,104,97,98,106,87,111,99,96,94,100,77,97,94,100,95,77,112,102,102,103,102,98,98,76,90,100,96,94,93,99,99,104,88,105,109,95,92,105,109,96,92,93,102,89,108,99,89,98,88,92,116,98,105,79,93,97,91,79,101,102,93,112,105,97,100,94,107,113,92,102,95,83,102,100,86,99,95,100,103,94,97,100,107,99,87,94,102,108,100,101,100,99,98,102,102,95,114,97,109,98,86,97,104,98,105,109,106,92,112,114,87,91,119,91,94,98,92,100,105,103,92,99,102,93,94,99,98,92,91,92,106,109,93,104,104,95,99,92,103,104,109,98,102,98,99,105,100,109,99,99,98,109,101,100,91,124,99,89,109,101,86,101,97,100,95,98,103,99,107,93,101,94,105,100,105,99,107,99,101,95,101,99,98,109,95,99,105,106,118,108,109,108,101,98,103,93,107,102,103,91,99,100,95,87,91,113,100,92,106,94,104,89,98,84,98,104,98,87,91,102,100,101,105,105,82,86,103,114,99,99,95,88,94,95,102,90,92,104,96,103,109,95,105,112,106,99,112,89,97,101,87,94,100,85,98,98,93,95,94,90,109,103,95,91,105,103,88,91,102,98,109,94,104,100,92,99,90,96,88,102,94,103,94,100,93,96,86,100,97,96,95,90,105,103,92,99,109,85,111,109,101,96,94,110,110,105,93,87,111,99,90,98,102,104,100,96,103,83,98,97,77,105,101,98,113,100,102,101,92,104,72,100,92,89,100,97,90,98,91,94,104,99,107,113,108,101,94,96,102,104,96,91,100,95,108,105,103,115,88,101,117,109,99,96,104,91,102,105,103,103,103,113,99,96,101,99,116,104,102,102,111,104,94,97,104,101,76,102,88,95,87,102,97,92,100,98,103,100,96,97,98,106,104,95,102,99,101,98,103,109,104,94,114,106,97,90,118,119,101,99,99,98,105,100,104,121,108,109,101,92,99,95,95,99,104,111,94,90,97,105,98,99,95,87,95,91,98,94,95,109,87,102,94,87,96,97,91,105,105,130,94,84,106,100,99,103,105,101,102,90,95,101,105,113,108,103,92,100,107,104,91,98,93,91,97,109,100,103,106,108,95,85,113,97,91,95,92,97,95,95,101,104,95,81,97,92,100,97,107,100,88,83,96,108,110,89,103,103,80,101,100,102,100,93,103,110,95,92,101,108,96,102,103,91,96,102,91,101,98,100,92,97,100,105,93,99,103,102,104,97,102,102,91,89,102,107,70,102,102,99,89,82,105,89,101,106,94,102,91,106,83,103,100,100,100,137,103,90,91,88,101,99,106,98,83,95,101,103,117,87,105,72,107,87,94,96,84,97,118,108,100,97,98,103,102,97,100,102,91,100,92,99,106,99,93,98,90,92,107,100,96,84,102,99,95,94,91,120,106,95,90,77,93,91,94,99,109,83,104,102,101,90,95,98,95,93,101,100,83,98,104,100,105,88,105,84,108,91,110,92,99,104,96,98,93,100,98,107,84,104,84,108,97,104,95,104,90,108,111,99,91,99,120,99,113,90,83,91,98,118,97,103,89,104,107,99,94,97,96,94,87,105,114,106,97,92,97,94,109,95,94,98,94,93,105,95,113,98,110,90,98,96,85,100,99,106,120,106,97,104,90,110,107,100,97,91,107,98,93,103,87,107,99,106,106,93,108,105,105,92,108,102,104,95,94,112,93,84,95,94,102,117,100,95,98,96,90,101,110,93,101,97,107,100,105,95,100,86,99,105,89,78,100,98,115,100,93,103,92,100,90,103,108,100,104,103,99,100,104,101,97,101,109,105,100,100,100,97,95,93,86,104,99,100,95,98,102,96,78,77,101,99,96,97,97,121,70,101,101,107,111,94,80,100,107,91,88,99,102,94,96,80,104,97,93,93,87,94,98,97,102,101,114,116,93,99,111,101,120,100,127,98,106,108,101,96,105,118,101,100,102,93,112,104,100,104,101,103,109,99,107,109,103,114,88,96,101,90,112,101,99,95,91,110,90,105,106,94,108,107,113,103,111,103,98,98,94,110,100,100,98,98,100,100,100,91,91,93,103,86,78,97,112,95,96,90,96,94,82,103,84,97,103,98,113,95,113,101,99,100,75,100,99,101,91,92,97,99,97,97,98,102,88,91,94,99,100,106,101,103,88,94,92,113,100,81,98,95,80,105,105,124,109,91,96,106,112,97,103,115,102,92,102,105,102,90,107,96,104,106,98,117,84,69,97,100,88,102,90,95,90,97,87,86,87,100,94,100,90,100,111,82,105,101,96,97,82,98,93,101,90,97,100,102,95,98, +706.91254,91,105,88,99,87,105,102,81,102,85,97,83,99,92,96,98,99,117,114,101,103,95,94,113,90,100,91,101,95,114,96,92,100,94,101,110,115,100,103,119,100,101,102,112,92,107,98,91,104,101,99,102,94,109,116,96,92,92,103,94,100,116,100,109,104,102,105,98,117,91,103,98,92,99,94,112,91,96,104,92,93,97,97,94,97,96,103,102,101,112,103,66,104,97,101,100,89,113,91,92,102,103,96,100,102,93,95,100,68,96,92,104,116,96,100,93,105,100,113,99,102,99,115,98,107,100,108,103,100,111,91,111,104,97,99,92,108,110,95,74,100,105,100,93,96,99,100,115,97,101,89,106,100,109,102,104,100,94,111,89,114,95,94,107,103,72,121,111,95,97,99,112,106,96,97,100,88,108,98,104,92,102,94,105,110,98,92,88,101,99,90,90,86,103,89,101,86,98,101,99,98,97,105,102,105,87,110,100,106,103,87,83,98,94,83,105,96,125,93,107,113,104,102,109,98,101,99,105,103,102,100,100,88,111,106,114,106,103,109,96,94,99,100,105,103,102,93,97,110,98,90,101,65,85,99,103,101,101,100,100,100,103,100,109,99,95,93,104,105,94,101,91,82,114,98,95,94,106,101,96,94,103,106,99,86,92,97,108,95,87,107,103,117,104,104,104,104,105,102,98,107,97,106,121,84,103,108,107,90,102,106,108,102,100,100,105,98,101,104,99,103,98,92,100,97,106,94,92,105,117,100,102,99,104,99,107,102,100,102,101,103,110,114,100,105,104,104,91,105,105,98,97,109,108,80,104,110,101,97,66,94,98,94,92,101,105,117,103,91,103,103,108,106,98,112,99,115,107,93,103,104,104,97,107,103,111,105,102,104,98,110,110,84,105,107,87,96,116,100,99,97,105,102,98,104,93,113,101,108,91,88,94,100,111,111,108,74,84,92,113,106,83,82,101,99,91,104,83,101,100,88,92,95,106,102,104,109,101,93,108,97,91,109,100,105,98,112,94,101,100,103,79,109,96,78,100,87,98,92,90,95,105,110,100,102,99,94,101,106,91,92,94,95,99,116,86,99,113,106,88,104,104,113,98,72,87,95,98,96,102,104,108,109,87,91,98,103,92,108,103,104,103,88,104,100,105,101,96,98,103,90,100,92,105,104,82,105,102,90,88,94,107,114,103,98,96,102,82,98,100,99,86,105,104,103,98,87,97,99,107,99,91,75,96,103,93,106,107,104,96,99,113,120,104,90,101,104,100,108,100,105,113,102,105,105,85,112,106,103,113,92,88,101,111,98,100,91,104,95,100,90,98,99,107,96,97,100,114,105,96,105,94,99,115,112,101,105,102,99,95,91,78,101,102,101,95,101,92,91,110,90,97,101,109,86,104,108,112,103,97,102,93,109,91,95,113,106,79,108,104,102,109,105,101,94,104,105,100,97,93,98,85,105,103,95,93,100,95,112,95,103,104,87,116,96,102,98,123,104,103,99,94,109,101,88,100,93,96,112,94,105,102,99,108,97,95,100,89,112,95,114,108,95,89,87,105,96,98,99,97,101,99,97,97,104,100,94,100,96,92,103,110,99,80,101,110,106,113,103,111,104,86,101,86,90,105,104,92,92,84,104,96,97,111,78,97,92,113,100,103,88,109,94,103,99,98,97,105,95,102,98,100,107,112,114,99,99,104,101,94,95,74,104,98,102,93,101,86,91,97,91,93,95,96,87,103,125,89,102,83,113,105,105,114,96,104,117,91,102,95,114,112,106,99,92,97,100,92,95,110,75,93,113,103,101,103,101,101,95,107,94,91,100,96,98,93,104,108,93,89,100,99,97,101,97,103,107,89,95,96,100,95,110,103,106,97,107,106,97,110,96,97,97,105,107,97,94,100,95,100,94,99,97,91,102,91,93,94,95,102,97,64,91,108,101,96,90,91,92,96,90,100,93,113,101,91,87,104,100,114,95,109,102,115,99,118,97,99,95,96,110,83,98,116,98,109,79,106,101,103,99,104,100,103,95,98,99,93,101,98,105,109,95,87,84,97,103,92,106,72,94,104,91,97,98,87,98,97,105,94,99,103,97,108,95,94,101,96,104,100,100,106,92,107,92,91,96,111,95,108,99,104,92,103,104,95,102,100,101,102,97,101,91,79,100,99,107,101,100,105,101,99,100,103,113,114,95,96,102,95,91,90,93,103,103,97,101,90,105,94,97,104,96,92,85,106,95,103,96,93,96,93,101,104,104,95,94,98,98,112,102,103,104,94,103,108,91,97,95,95,77,93,91,101,103,106,99,102,91,100,90,94,97,103,103,98,112,92,100,95,89,104,94,101,94,99,118,96,113,102,121,105,100,99,99,95,106,103,94,95,102,96,99,109,79,93,97,100,88,97,102,101,115,99,87,91,93,90,92,97,109,106,97,88,92,88,104,97,108,102,106,102,94,114,101,103,113,103,113,91,99,96,108,88,96,104,105,103,103,115,105,104,97,98,98,98,99,97,104,87,92,104,88,98,106,103,97,102,100,101,95,95,101,96,100,105,95,95,102,107,100,100,106,106,85,102,111,109,100,103,113,88,96,96,97,109,96,94,108,98,101,109,119,109,97,93,106,98,116,106,96,92,107,86,100,99,104,103,102,93,96,112,103,109,103,113,108,113,99,110,108,101,100,113,99,91,110,102,105,97,86,101,102,104,101,100,112,92,104,65,101,102,87,99,107,93,101,101,89,101,100,113,99,94,112,105,101,99,89,106,101,108,99,100,100,94,98,109,101,102,106,108,100,102,100,104,95,94,103,109,99,108,105,98,99,102,98,103,100,104,91,97,106,99,96,102,102,95,106,104,101,89,103,115,100,106,110,107,102,97,105,89,105,108,111,104,95,100,78,104,116,90,107,86,95,95,97,109,97,97,115,108,97,108,102,105,93,109,80,103,104,84,94,101,91,100,100,97,107,103,98,84,96,101,108,121,100,107,103,95,100,118,101,101,110,99,97,104,100,97,101,93,104,106,109,103,104,102,104,93,96,107,104,98,113,93,108,94,106,103,99,102,92,103,90,95,108,94,103,105,114,78,106,121,108,98,104,96,96,104,97,103,100,108,106,110,63,85,98,99,100,87,108,97,103,103,115,96,114,98,101,96,107,93,118,100,99,84,121,113,103,97,100,112,97,107,112,100,101,109,103,106,96,98,104,105,90,98,104,108,103,97,86,89,116,106,98,101,101,107,100,99,94,115,101,95,100,100,98,98,101,95,112,109,97,102,105,106,96,103,98,92,95,106,99,87,102,92,99,98,111,96,102,102,96,129,100,94,100,100,98,95,102,100,109,107,116,103,98,103,94,102,110,109,98,99,97,105,103,104,104,102,95,97,107,98,104,87,118,110,90,94,105,88,92,105,99,117,100,108,95,109,98,93,101,105,109,104,96,102,105,96,111,95,92,104,97,94,93,101,103,99,85,97,83,100,95,122,93,96,97,102,113,110,97,105,97,100,89,96,89,102,104,93,101,103,109,98,99,118,111,120,106,99,80,98,105,95,93,98,104,94,104,108,91,111,105,77,129,99,94,100,92,110,109,90,89,94,99,108,101,98,95,111,106,99,102,107,99,105,91,96,98,97,95,101,97,110,110,107,103,83,98,108,100,96,91,92,104,100,107,90,96,99,99,100,101,104,106,104,97,93,108,111,108,94,98,105,91,88,91,102,93,104,105,91,109,101,101,101,105,100,102,99,101,103,101,92,97,105,100,96,106,107,104,111,108,101,108,101,71,97,113,107,106,87,113,83,100,95,107,95,107,118,115,102,101,95,100,101,105,103,96,92,97,87,96,98,102,99,99,94,100,104,99,113,105,102,91,92,97,92,97,96,89,91,94,106,92,96,100,103,97,105,100,97,95,76,97,106,101,80,108,97,94,95,92,105,104,96,87,93,82,99,86,103,98,109,91,100,97,91,98,94,109,98,96,103,96,102,102,95,100,99,104,95,91,105,101,100,108,96,109,99,101,113,102,90,88,98,101,102,95,90,112,112,104,100,102,81,98,100,104,87,98,104,91,92,101,105,100,101,105,109,109,100,85,99,105,97,98,88,95,96,101,102,101,92,98,100,92,84,120,93,97,94,97,103,94,99,93,104,95,89,104,98,100,90,91,89,98,113,100,101,96,103,99,112,97,99,107,99,84,90,101,100,106,109,101,118,109,90,104,102,101,97,101,95,96,93,102,106,102,102,102,99,92,100,125,92,106,97,102,101,94,99,110,92,97,101,91,96,108,106,96,93,98,113,99,100,113,110,119,108,112,97,134,121,97,109,106,105,91,102,101,100,110,99,113,109,96,95,103,115,88,94,103,102,95,97,94,105,95,101,96,99,105,93,110,98,86,94,100,109,83,103,100,102,97,83,109,108,109,96,90,86,94,105,92,99,100,95,106,103,98,95,107,103,98,79,98,68,94,110,105,93,110,96,91,98,100,103,102,107,96,94,99,101,92,95,88,87,104,106,92,116,91,88,98,93,98,97,98,85,98,90,105,105,101,95,106,107,103,98,98,87,113,92,93,101,87,92,106,101,110,103,93,102,96,90,98,101,108,99,88,110,99,105,94,96,97,87,108,82,69,98,102,89,117,111,96,98,102,108,102,88,93,92,105,97,87,98,87,98,95,107,112,99,94,99,102,100,103,105,102,96,94,87,97,101,103,98,81,99,106,104,112,105,91,113,103,97,125,111,100,99,95,89,98,99,102,98,111,108,95,115,88,99,90,95,93,109,102,103,105,94,101,120,96,110,100,99,97,103,102,129,95,100,107,104,92,105,100,80,98,108,91,98,96,78,108,102,102,88,113,84,102,94,118,93,108,104,92,91,107,85,105,112,93,96, +707.05383,124,102,82,99,78,105,115,89,109,92,110,97,101,113,102,101,97,92,102,102,89,112,99,100,98,88,95,92,128,113,101,95,105,102,108,91,104,98,109,96,89,99,96,100,94,103,91,88,96,98,95,105,102,102,100,100,102,88,104,85,97,97,86,87,99,90,91,104,82,91,90,95,98,103,94,103,95,92,106,99,97,98,92,91,103,74,101,112,103,91,94,97,97,92,98,97,95,95,101,110,111,103,102,100,96,96,94,100,89,110,96,100,103,97,100,88,80,92,92,91,94,96,98,109,105,98,108,83,108,103,103,91,103,98,96,90,101,102,89,108,99,102,95,110,100,102,110,105,98,94,95,97,107,91,88,104,88,82,93,92,105,110,93,98,109,94,103,98,96,97,96,101,99,96,99,98,104,102,74,94,99,100,93,101,95,90,92,87,104,95,101,106,92,91,97,79,83,94,97,119,96,95,107,95,99,91,93,103,101,85,92,110,112,105,91,100,95,105,97,97,104,98,98,95,98,100,69,90,107,94,102,93,109,110,105,114,104,102,107,100,114,86,109,94,95,101,99,108,95,102,97,99,107,118,98,104,90,102,97,105,92,102,96,98,115,97,81,100,96,90,95,107,98,106,97,103,99,100,98,98,88,104,92,99,103,95,106,101,108,110,105,103,105,107,102,98,93,107,101,99,104,92,79,106,91,103,101,102,101,100,99,109,104,107,97,92,92,101,98,105,99,92,107,112,101,109,98,103,103,103,92,95,94,104,121,103,105,96,86,97,96,117,97,95,95,102,99,97,102,111,94,103,96,101,99,104,101,104,106,91,102,107,109,96,111,92,106,107,106,95,100,102,104,94,95,93,104,89,83,91,101,100,97,114,90,99,92,105,98,90,99,98,94,117,93,99,87,101,100,96,93,97,100,97,88,95,95,99,99,98,91,92,101,103,100,91,102,100,112,103,99,99,93,109,81,96,96,91,99,95,102,98,93,103,106,100,98,99,99,92,107,102,89,89,91,90,83,90,105,99,88,104,103,102,92,102,94,101,99,97,96,101,105,100,100,96,93,95,92,101,99,101,94,96,96,101,96,102,102,105,97,118,109,91,106,97,83,94,114,85,99,97,98,100,91,98,95,88,93,105,99,78,101,109,98,98,91,99,112,89,99,95,93,101,102,88,106,99,96,91,94,102,95,97,108,92,96,110,93,108,91,96,106,104,96,102,97,96,98,99,102,106,105,100,99,100,103,101,103,94,93,98,104,109,87,104,114,111,105,94,108,102,112,96,101,101,112,89,109,105,97,91,108,96,96,96,95,105,106,77,104,94,112,93,100,93,114,94,91,100,96,107,102,103,111,104,95,99,86,95,99,111,91,99,98,93,95,102,102,98,110,96,94,96,99,84,109,98,89,115,98,88,107,97,102,98,87,97,98,105,93,94,96,93,106,103,108,87,94,94,101,100,98,87,102,93,102,89,105,103,99,100,97,91,103,105,92,102,105,101,106,109,109,90,87,112,108,89,99,95,120,99,116,102,102,93,94,92,96,100,98,96,92,93,97,102,88,122,99,101,109,110,104,100,103,98,104,98,101,97,105,94,86,112,102,104,108,95,81,92,91,96,96,90,84,92,89,99,80,96,109,82,92,92,84,100,112,97,105,109,92,101,107,111,95,104,106,94,100,98,104,92,94,103,92,88,91,94,96,112,95,97,106,99,99,101,90,97,95,97,108,110,99,100,91,87,82,96,108,111,113,92,100,87,104,104,98,105,103,91,95,108,107,96,97,99,118,100,85,107,105,94,105,107,76,86,97,97,97,96,101,101,101,97,98,96,111,99,98,98,112,106,97,97,105,109,86,97,95,102,124,98,91,84,103,97,101,98,98,101,102,101,95,102,88,118,105,102,102,110,104,99,108,96,94,92,95,109,102,92,119,82,99,105,87,103,99,105,109,98,104,97,89,95,102,86,91,91,118,113,98,107,96,110,109,91,98,95,114,105,98,105,102,96,97,109,105,107,96,91,90,91,94,102,109,83,95,98,96,91,91,104,99,83,107,88,92,106,89,98,131,105,113,99,104,94,89,107,113,97,87,107,110,104,97,93,96,102,90,95,98,103,87,101,83,99,87,107,105,103,104,99,108,103,94,98,106,94,92,108,88,101,89,106,104,100,95,100,94,99,103,100,107,96,107,102,91,92,105,101,103,94,99,101,95,104,100,95,106,103,95,85,101,90,90,96,102,85,87,106,109,94,101,105,101,96,94,96,107,106,94,101,103,96,88,95,100,85,104,102,91,94,110,97,104,105,96,92,109,94,100,94,100,100,103,92,96,96,86,93,98,87,104,93,99,85,113,107,112,94,101,100,93,82,100,93,102,94,95,99,103,97,92,89,100,91,92,102,109,98,96,100,92,100,103,91,95,93,112,100,96,112,84,91,94,106,95,86,93,99,100,97,79,99,93,95,90,90,107,98,99,95,102,95,101,102,87,103,112,88,108,91,100,87,90,104,84,95,101,101,87,116,90,105,99,89,94,91,86,98,87,100,108,79,104,95,104,96,88,100,109,108,103,115,98,96,113,96,123,93,100,101,97,102,87,103,102,94,95,97,103,79,99,100,98,91,107,100,98,95,109,97,99,95,99,99,101,93,98,100,94,84,112,102,101,99,87,91,88,99,91,105,96,93,91,103,96,102,87,91,92,95,88,95,111,99,96,83,95,101,93,94,102,98,100,107,98,98,101,101,104,95,104,110,104,98,104,105,95,98,95,99,98,108,105,96,101,101,95,95,91,104,101,95,110,92,105,106,97,120,103,94,106,79,100,123,90,107,102,106,86,90,93,96,97,95,94,99,95,108,103,109,95,98,102,88,92,99,106,72,100,98,101,101,109,102,109,102,100,93,94,108,100,91,105,109,104,98,96,96,96,99,97,96,101,103,100,91,96,105,117,96,92,88,92,79,100,102,96,96,105,80,97,91,97,103,106,96,101,107,112,88,88,99,96,98,104,94,108,104,92,105,105,93,105,90,100,106,95,94,97,91,95,98,98,103,63,101,95,107,101,106,104,83,98,100,104,105,85,97,104,104,100,96,95,96,108,111,102,102,98,107,106,100,104,99,101,96,98,100,107,96,96,91,92,91,99,91,102,102,83,92,94,89,104,100,99,91,105,116,101,96,98,102,90,94,91,91,101,96,90,97,100,102,98,100,93,97,88,105,104,95,89,99,103,106,88,93,104,100,97,103,93,90,82,102,91,106,98,92,85,95,98,92,96,101,102,91,102,101,90,84,95,88,90,96,92,109,105,109,101,105,93,91,108,101,97,95,95,96,97,86,107,98,95,104,94,100,91,88,79,113,99,83,97,103,90,89,103,92,101,109,89,103,102,94,103,97,102,91,102,88,93,97,97,101,97,94,105,100,85,91,117,104,113,102,97,108,83,77,107,98,101,95,102,106,101,105,102,87,92,94,109,91,109,102,94,91,106,116,96,101,96,105,99,102,103,87,100,95,103,105,101,105,89,90,101,101,105,105,99,108,91,117,116,95,88,101,87,109,102,94,95,100,91,92,93,86,107,104,94,94,99,104,100,113,97,102,106,93,92,112,108,97,94,101,91,102,92,112,89,101,119,89,107,95,101,94,96,101,89,105,97,113,95,90,99,100,100,101,98,104,109,103,99,100,93,115,103,100,105,93,95,108,108,102,112,91,92,93,87,96,89,101,92,75,91,91,103,88,92,77,93,93,87,115,109,111,89,103,103,112,92,94,106,99,101,96,105,97,95,89,97,94,98,99,99,108,92,100,100,87,115,89,106,102,96,98,95,117,95,98,90,88,92,100,105,106,96,99,106,121,92,102,95,93,99,97,102,86,85,97,95,97,96,100,102,87,92,105,93,93,94,96,104,91,105,100,91,105,98,79,96,98,95,100,102,101,94,91,94,94,96,94,89,99,94,101,95,90,109,101,97,95,106,101,101,103,100,94,99,93,98,115,102,82,100,108,94,91,109,111,95,113,105,97,100,98,95,99,103,99,91,101,106,98,85,89,100,102,96,98,94,94,95,95,105,98,102,102,93,109,89,98,96,83,104,121,96,98,102,94,102,97,96,104,99,105,94,109,99,92,90,104,99,101,104,99,97,96,103,100,93,91,95,112,91,107,92,97,87,106,88,108,98,102,99,107,123,88,98,99,99,117,125,74,95,102,88,99,91,100,88,107,100,96,96,98,103,95,97,102,91,90,94,100,97,98,105,99,100,97,115,97,100,94,105,108,82,94,92,104,99,94,87,90,79,104,95,94,98,104,106,95,99,100,103,105,120,96,122,101,105,100,87,107,101,90,89,94,91,101,90,99,97,92,94,99,98,92,97,98,99,100,97,89,70,104,102,99,98,115,112,99,101,103,96,95,88,98,102,109,103,109,96,73,106,99,92,95,101,100,86,92,105,93,103,121,93,96,86,88,94,100,95,101,99,101,92,103,72,97,97,99,102,97,83,91,102,105,104,104,101,95,91,110,94,107,89,110,93,103,96,94,86,99,102,88,95,102,99,101,98,96,100,109,105,103,98,102,89,98,102,104,96,92,99,91,98,103,94,105,96,92,94,99,113,104,94,98,101,103,98,99,117,98,105,78,94,108,96,92,93,104,78,99,96,100,85,97,98,87,112,109,96,108,97,118,102,85,94,93,128,102,90,94,101,97,84,101,103,95,70,92,99,90,90,96,108,116,107,88,108,100,98,85,93,94,91,110,102,92,104,108,113,100,105,91,101,94,103,111,96,90,97,93,93,93,102,98,120,101,75,105,98,102,101,120,103,85,63,114,102,108,96,115,79,94,98,98,124,105,92,79,97,93,82,101,97,99,108,95,95,92,105,100,102,102,104,85, +707.19519,102,102,87,89,96,95,126,75,92,100,120,91,90,93,102,105,72,102,112,80,91,100,110,104,92,93,93,111,107,109,105,103,93,101,110,121,99,88,89,100,81,98,103,102,97,115,102,105,102,101,98,99,81,95,100,94,100,119,84,89,101,93,102,107,105,106,99,93,91,98,92,98,97,97,99,110,92,104,104,106,98,104,104,103,96,99,97,103,91,96,103,99,99,98,106,110,116,94,105,100,111,89,106,89,93,101,100,102,108,101,109,75,99,98,105,104,96,97,92,100,101,118,101,103,100,104,105,98,114,104,119,105,100,101,105,104,112,107,82,97,101,104,89,112,87,87,88,106,106,102,88,116,94,79,101,101,89,96,108,95,92,94,107,101,110,97,96,100,97,100,98,97,96,105,95,104,90,91,96,102,110,108,103,96,105,91,83,101,105,94,99,105,109,101,110,98,101,102,98,112,91,92,100,101,104,92,91,98,113,108,80,102,93,108,102,105,79,96,105,105,100,105,97,103,105,121,101,101,101,99,94,89,108,99,99,99,97,100,97,111,87,93,107,108,114,97,95,99,91,92,96,107,103,102,101,104,102,101,102,102,83,91,104,100,100,100,100,108,91,92,104,108,97,94,104,103,94,102,85,91,105,110,103,108,98,109,88,104,99,110,98,97,96,99,114,104,101,92,136,100,92,102,99,100,91,109,101,99,103,106,90,102,103,100,91,98,101,106,95,89,93,105,101,91,90,94,93,87,99,101,105,109,102,101,98,103,105,90,96,105,103,105,93,104,93,101,103,108,97,89,101,91,103,110,93,117,91,103,90,96,87,95,102,91,93,95,111,112,96,105,111,103,111,94,99,98,106,100,103,116,107,107,87,103,94,105,90,92,91,91,111,88,99,98,93,103,82,99,103,104,98,99,92,90,109,93,96,98,91,96,82,88,99,96,93,72,102,97,96,92,112,85,101,96,93,95,102,90,99,103,86,124,99,106,89,100,92,94,96,98,101,86,96,98,98,99,96,114,100,95,103,114,95,100,106,94,100,90,96,95,92,104,110,97,103,103,97,91,86,91,98,109,102,99,96,100,99,97,96,94,100,106,102,99,104,98,99,93,102,109,92,95,96,90,93,102,87,105,111,97,107,103,91,98,91,98,96,97,100,106,64,101,113,103,94,106,100,93,93,104,94,92,110,101,94,101,117,91,97,97,94,99,93,94,102,111,101,107,102,101,109,104,104,93,105,91,103,101,96,106,105,99,103,110,95,97,98,100,107,101,100,110,87,102,105,103,104,111,90,90,102,97,97,83,102,88,96,107,96,111,113,94,97,104,104,104,106,115,95,114,97,111,67,101,108,113,98,93,106,87,94,92,108,105,106,95,105,111,86,105,93,89,87,109,87,98,92,109,101,101,109,105,90,97,102,107,93,101,101,97,104,105,108,109,86,102,107,95,117,114,104,104,100,102,91,90,94,92,103,110,93,89,96,100,105,100,97,112,99,113,114,103,98,100,101,90,94,98,100,93,109,95,100,94,105,99,100,96,102,96,100,103,100,100,99,86,98,89,108,116,97,101,104,90,99,94,94,98,100,102,95,97,103,96,106,114,107,113,93,90,100,104,95,97,95,105,98,109,108,99,104,91,91,103,110,98,108,103,92,120,110,99,97,97,93,97,100,106,105,99,96,91,94,100,99,117,119,109,105,105,97,85,109,102,99,86,80,100,97,102,97,109,82,100,122,109,95,92,109,93,100,107,103,103,109,99,98,99,104,102,113,101,104,105,101,114,99,102,100,104,99,86,99,110,77,103,106,85,109,101,109,100,99,100,105,106,104,88,105,101,100,106,92,95,97,103,86,107,102,94,102,95,98,104,102,111,101,103,95,98,102,106,100,95,93,103,100,100,87,93,111,104,106,98,115,89,95,94,102,110,97,89,104,103,94,93,106,91,89,107,97,99,101,102,101,92,97,90,89,121,91,101,95,108,96,96,98,92,96,99,111,104,108,96,106,100,87,100,100,114,97,98,110,97,108,102,108,119,104,103,97,108,100,101,102,95,88,106,101,101,94,103,109,99,94,109,103,91,99,108,107,107,100,111,99,101,83,97,101,99,102,95,115,88,94,96,84,103,114,108,99,124,99,104,93,101,105,93,108,106,101,109,113,106,106,101,103,98,90,107,112,105,106,90,105,100,106,113,95,104,109,88,105,91,101,99,104,91,95,101,89,102,92,98,101,106,97,110,97,96,102,104,107,104,84,99,103,105,94,95,97,104,98,92,94,130,98,106,87,98,97,98,105,102,106,113,95,103,87,85,94,102,114,102,103,99,88,97,92,97,102,121,108,88,107,97,101,108,95,88,97,81,94,89,94,100,101,95,112,84,110,102,70,94,93,99,93,97,96,113,99,102,98,95,103,103,83,110,99,99,104,117,95,99,102,100,114,97,87,88,84,105,91,99,117,102,114,100,120,105,95,98,98,103,101,95,98,98,121,109,109,85,92,99,103,97,93,97,100,108,100,97,106,99,98,101,98,89,91,101,107,99,109,105,97,100,97,101,108,105,84,112,66,92,100,99,116,109,99,102,92,102,96,99,99,100,104,93,110,97,108,90,110,98,97,109,98,101,105,110,112,95,95,88,95,95,103,103,99,98,96,95,105,94,99,80,103,99,100,107,92,100,89,109,104,105,103,86,110,96,95,100,101,97,104,97,113,104,95,104,100,95,96,102,103,97,101,103,102,109,92,100,89,79,102,100,103,106,101,96,92,103,88,95,94,106,92,102,108,91,99,109,110,100,102,95,107,93,109,98,108,101,104,88,101,107,104,109,99,96,98,107,105,101,93,93,108,102,90,115,105,91,110,112,79,93,98,89,107,109,123,99,91,102,95,92,101,100,96,102,99,104,89,110,99,102,100,100,97,103,104,101,95,99,92,103,99,98,106,106,97,98,101,103,106,98,98,98,112,98,101,98,108,93,98,99,96,96,100,107,104,102,105,104,105,105,106,111,106,101,108,93,94,100,99,93,105,124,77,86,114,112,109,85,112,91,106,87,109,106,97,107,97,84,94,106,89,91,100,90,100,96,108,105,103,95,100,99,95,96,103,102,98,104,94,105,109,98,103,86,102,105,104,100,89,99,102,98,94,94,95,96,91,96,91,95,113,89,100,105,103,84,96,119,86,108,107,108,105,107,95,105,105,120,94,99,104,101,105,97,105,98,93,99,97,96,112,110,103,96,95,102,108,99,102,92,93,104,97,100,95,81,93,87,101,106,99,106,102,113,99,91,107,103,104,102,91,101,108,101,109,120,100,109,94,114,90,81,86,87,104,98,105,104,112,102,102,97,100,96,94,128,105,109,108,115,104,96,102,96,96,109,100,108,98,107,111,101,99,97,98,115,102,95,105,106,109,110,98,100,104,104,96,121,103,93,99,103,110,91,98,96,96,97,102,93,102,102,87,98,96,115,107,94,106,107,98,101,103,90,113,98,95,108,96,100,108,108,103,105,98,100,99,116,95,111,98,102,98,102,96,102,99,93,100,106,115,112,91,96,97,107,98,106,101,97,98,106,109,105,95,102,99,102,108,101,96,113,112,106,87,98,104,88,96,87,112,101,91,109,98,97,107,102,102,110,107,90,90,109,100,107,99,106,93,98,96,95,96,102,111,104,102,103,97,96,97,95,88,102,92,99,99,95,102,102,103,105,95,102,99,105,118,105,90,101,101,105,101,112,104,113,94,98,109,108,108,99,103,101,107,98,105,99,107,105,116,102,107,80,103,102,108,100,100,97,94,101,106,96,114,109,110,98,95,103,102,102,93,106,101,100,96,99,97,99,111,122,103,97,107,104,104,112,105,98,101,92,95,97,100,99,102,102,92,95,102,104,108,91,101,101,81,111,109,94,105,88,103,88,102,97,89,114,86,97,111,104,95,100,97,89,92,95,93,101,103,101,91,94,114,91,91,100,116,99,103,102,94,98,112,90,96,105,106,91,84,101,101,91,104,96,95,107,102,93,108,91,108,98,104,108,91,88,95,112,96,100,98,88,92,98,100,106,98,118,98,101,101,98,74,110,100,108,94,105,108,86,103,110,106,97,88,109,107,98,90,103,100,103,94,95,100,103,93,104,102,92,111,107,107,97,92,92,105,109,98,110,97,95,75,102,101,103,98,96,99,103,116,98,99,129,92,106,118,92,102,95,105,86,105,111,102,101,93,98,104,99,104,102,108,116,113,104,100,109,91,112,96,114,108,93,104,110,95,108,105,109,94,107,108,93,101,96,105,94,95,114,107,105,118,98,100,104,107,101,99,105,100,90,96,99,114,92,103,95,100,90,111,104,97,105,99,102,123,99,104,98,97,103,102,89,115,102,104,99,90,103,99,88,93,80,109,92,102,84,97,100,97,109,118,111,97,112,107,105,96,97,103,98,93,102,101,106,92,79,94,108,93,104,100,107,98,94,136,89,117,103,95,94,96,92,105,96,105,109,103,99,90,101,101,91,105,99,109,101,105,102,111,98,103,102,94,92,106,95,87,104,113,90,86,109,102,101,98,108,115,104,96,93,102,88,118,104,104,104,103,112,99,98,105,93,97,104,103,99,102,95,92,97,94,93,105,94,111,96,106,95,112,108,88,109,95,92,104,96,98,96,112,109,88,96,113,104,99,98,112,104,94,87,109,92,101,91,95,98,95,109,89,101,90,96,90,102,97,91,95,90,110,99,97,99,132,99,101,99,88,108,99,93,96,93,121,98,95,100,107,106,97,86,103,92,101,98,112,93,87,105,117,101,95,100,83,98,103,95,113,103,105,99,105,115,93,99,105,95,98,95,93,110,108,111,100,109,109,107,105,117,106,131,139,121,95,97,104,98,97,103,104,101, +707.33655,111,102,101,109,104,102,92,84,100,101,101,100,99,100,97,108,94,101,111,100,104,101,80,95,99,99,103,101,110,101,93,101,99,114,109,101,102,101,106,90,109,103,102,116,109,114,101,101,84,108,96,107,79,95,100,125,83,99,101,97,101,103,104,102,103,91,104,73,98,73,96,106,104,89,109,119,96,99,99,99,108,113,88,99,93,94,86,109,93,95,101,100,90,98,110,95,95,101,94,92,104,106,96,109,102,102,97,94,98,87,105,94,102,106,94,99,110,93,87,122,100,96,100,104,102,105,109,99,106,100,100,99,101,92,97,97,113,91,105,90,101,102,104,95,96,104,110,106,104,108,97,98,99,87,97,92,102,93,101,99,88,101,118,94,101,102,103,90,99,96,96,99,81,112,100,103,96,102,92,106,99,99,91,98,93,113,95,83,103,68,103,99,103,110,116,105,100,106,105,90,93,98,105,95,97,100,103,87,107,111,108,98,99,104,104,92,119,104,96,104,106,102,105,104,97,93,95,87,118,121,86,108,99,104,106,100,103,99,100,102,94,109,115,117,101,106,101,101,105,107,99,109,92,87,105,108,101,110,103,92,103,104,108,99,91,112,103,97,96,107,99,93,100,102,99,97,96,94,74,107,81,106,110,110,97,102,91,95,100,105,92,104,98,94,115,84,108,96,108,103,104,99,105,86,90,94,98,104,90,106,92,109,98,92,100,112,100,102,104,106,105,100,97,110,96,107,99,94,107,103,100,107,103,101,96,106,98,105,87,96,99,109,105,91,98,105,115,97,103,114,104,108,101,106,96,117,101,99,98,99,93,90,93,76,85,109,92,115,100,104,105,106,115,97,106,89,105,102,105,93,103,95,99,111,128,92,101,108,100,103,110,103,90,103,104,94,100,96,99,107,100,113,94,100,95,97,109,104,96,94,95,95,107,107,105,102,95,93,103,84,95,86,91,91,90,96,90,108,104,100,93,102,78,99,104,94,99,99,100,103,101,102,101,95,91,106,97,103,105,114,101,99,101,104,92,100,98,102,96,96,89,94,101,107,105,102,103,101,95,97,106,111,100,115,103,98,91,104,102,111,107,109,103,102,111,99,110,100,98,104,100,100,102,86,93,107,96,100,105,109,114,97,104,99,91,122,97,111,103,98,110,98,99,106,89,96,91,99,92,100,111,100,102,103,88,92,98,104,106,101,89,113,102,94,103,104,104,112,107,98,108,106,91,86,101,117,95,103,106,96,82,100,109,90,101,105,109,99,84,98,94,106,83,107,109,129,106,101,104,91,91,100,108,102,109,95,104,96,89,100,98,96,109,94,98,93,110,96,100,102,112,97,102,100,125,107,100,91,105,76,92,108,106,95,104,92,97,121,102,101,95,101,114,99,109,112,94,106,102,97,109,105,98,98,109,95,106,111,94,104,103,98,100,111,92,105,101,103,100,131,101,108,109,108,101,101,93,99,97,112,87,100,108,102,98,98,99,109,100,101,98,98,107,96,90,102,113,91,102,91,109,99,99,102,95,104,109,98,95,89,121,97,101,94,93,96,94,106,103,100,96,98,96,105,103,111,96,100,111,86,98,98,89,128,100,112,104,111,102,105,100,99,86,104,97,90,94,100,96,98,106,99,97,104,113,95,105,101,104,100,101,103,97,90,90,104,93,96,105,104,106,95,99,101,106,102,101,92,111,100,95,74,99,95,99,104,112,85,100,105,114,102,81,98,95,98,86,101,102,99,108,103,92,101,104,110,103,100,90,100,110,108,110,101,101,96,106,100,92,110,100,100,104,108,104,102,99,112,96,103,95,82,109,92,102,104,109,117,104,101,112,109,111,105,108,93,102,98,100,76,118,88,107,95,110,108,108,99,99,96,98,99,99,113,103,101,97,110,113,103,107,102,116,101,91,101,111,102,105,106,107,89,97,103,103,103,97,104,88,103,97,123,101,95,104,98,106,93,105,96,103,90,102,107,115,90,104,105,103,98,95,101,108,94,102,98,101,106,96,114,97,93,116,117,101,99,94,98,104,111,106,95,106,111,97,101,91,110,104,99,108,95,113,106,107,98,102,113,95,96,105,104,99,103,99,100,123,96,105,108,96,84,95,109,96,100,92,99,102,98,97,98,109,97,92,103,113,107,102,95,101,103,100,98,94,108,109,116,85,102,104,104,108,104,109,103,87,104,101,94,97,103,100,103,101,121,115,99,98,100,86,100,102,97,99,86,94,107,103,95,87,113,108,92,94,92,100,115,100,105,105,105,95,111,103,104,99,98,99,109,92,95,97,116,110,99,103,114,61,98,88,107,104,97,103,77,97,110,109,90,86,88,111,98,101,99,100,91,109,103,92,110,98,98,98,90,98,103,95,109,100,93,104,98,88,83,108,106,105,99,91,107,96,114,95,88,92,98,108,84,95,117,102,103,100,96,112,100,98,91,93,100,92,92,102,110,98,90,106,100,92,104,92,84,95,111,98,97,111,106,99,92,91,100,109,97,106,107,108,99,100,104,100,111,99,87,100,103,91,98,104,94,95,90,85,108,112,87,110,92,105,96,88,95,99,107,85,91,99,85,101,92,80,105,101,93,91,104,114,84,104,96,108,96,108,94,113,93,99,105,93,94,109,89,115,107,88,106,96,89,81,103,100,97,102,95,97,92,93,112,103,97,94,75,109,94,102,95,80,100,87,106,112,106,101,95,94,95,97,124,99,97,111,99,99,93,94,104,98,112,101,109,88,99,104,101,107,101,85,96,99,96,95,102,102,106,108,99,95,92,96,108,110,104,114,94,111,106,104,95,96,98,102,97,101,102,101,91,90,104,102,98,99,94,106,104,95,111,88,109,97,98,93,105,92,101,102,100,91,112,94,102,109,88,98,85,94,100,102,116,108,103,94,102,88,83,94,101,107,102,90,97,103,107,102,105,90,99,90,100,100,105,96,102,107,100,104,103,105,100,95,95,107,104,108,105,96,106,87,92,99,101,93,102,100,97,98,106,84,105,88,91,99,111,94,98,91,94,103,98,91,98,88,101,97,86,109,98,115,100,94,108,108,107,95,94,103,102,105,98,98,97,101,82,95,94,100,94,102,108,113,95,96,101,97,103,106,97,102,105,125,79,92,89,111,95,97,101,88,98,96,99,102,102,96,92,97,101,108,92,109,95,88,89,102,104,109,95,101,108,93,85,91,94,110,91,104,108,108,105,91,98,93,105,95,92,114,94,113,93,98,115,100,90,87,99,82,105,97,102,102,107,104,90,96,102,96,106,92,113,86,95,107,106,87,98,102,97,97,89,111,104,97,105,98,98,91,90,98,106,90,102,99,95,99,102,97,87,100,104,103,106,92,97,101,95,100,89,102,99,98,107,84,85,93,97,102,91,111,94,91,98,102,113,95,88,85,108,105,109,89,96,93,100,96,99,113,101,82,95,104,99,110,89,98,101,86,91,99,97,98,95,90,103,106,104,106,100,88,84,109,102,92,92,105,106,111,85,94,83,105,70,102,98,106,109,106,103,92,111,84,106,94,112,99,98,95,95,84,98,99,108,105,98,94,105,100,100,113,101,91,98,100,103,98,91,91,98,80,102,85,112,101,90,101,97,105,108,105,97,100,101,105,96,101,91,88,98,103,109,100,105,102,100,85,87,98,109,99,90,101,97,109,106,99,91,89,107,109,119,101,109,93,94,101,91,107,101,97,98,100,106,99,96,94,108,101,94,91,94,92,103,98,87,101,104,100,92,103,101,95,108,105,106,102,104,103,102,104,98,86,92,97,100,106,100,89,116,105,95,85,97,96,107,104,111,89,103,98,101,97,91,111,103,105,109,99,101,97,103,100,108,94,90,105,108,97,82,88,101,99,93,98,104,93,89,113,99,105,109,100,93,101,87,100,100,102,100,107,101,96,93,116,107,102,101,100,95,108,111,97,102,90,109,91,101,105,100,94,92,102,83,98,103,82,98,97,96,81,102,113,112,101,109,106,105,89,98,102,109,91,93,111,103,87,96,113,96,113,98,101,103,108,101,103,102,103,105,90,91,115,107,103,98,102,99,105,102,95,115,86,108,104,102,106,105,104,93,107,106,107,101,98,95,92,107,94,61,101,105,88,109,101,106,106,101,101,104,96,103,107,105,126,97,113,97,111,100,98,107,92,101,105,107,105,99,102,106,104,105,106,106,107,95,92,101,99,90,102,113,93,98,95,95,93,101,103,98,114,84,82,109,105,105,98,93,96,98,95,106,100,98,103,121,100,90,108,95,65,96,82,100,109,92,99,90,98,102,94,106,107,111,101,86,96,108,105,99,111,109,95,96,114,100,113,109,94,92,103,105,106,101,100,109,78,84,94,89,108,103,95,105,97,99,102,92,98,103,104,99,97,103,104,98,101,101,104,94,107,93,120,99,104,109,107,93,94,94,97,97,118,115,101,108,98,98,104,95,83,116,84,115,91,119,98,90,103,99,80,112,97,108,88,105,112,96,109,104,76,94,91,86,101,105,106,118,101,109,104,97,102,115,104,83,100,94,96,101,92,107,106,102,108,99,92,115,95,97,95,102,105,108,100,85,86,105,99,97,101,97,89,96,91,95,102,109,105,96,111,95,93,100,95,103,95,91,99,106,94,100,102,98,95,100,90,88,102,109,100,106,92,98,100,109,92,107,97,95,91,105,95,91,101,100,101,98,113,87,97,91,101,85,92,88,80,98,105,94,100,96,97,93,100,94,95,86,87,101,111,97,94,89,95,94,91,98,103,94,102,103,86,96,103,103,101,98,109,98,91,71,92,96,93,100,97,90,112,105,96,100,107,91,96,95,105,102,79,78,106,90,107,96,112,86,97,93,100,87,103,88,96,87,96,106,102,112,93,88,98,83, +707.47791,102,114,109,101,107,104,105,100,103,102,90,95,103,101,97,97,65,109,110,93,127,99,94,110,114,107,87,100,84,104,92,97,95,105,91,99,100,94,116,99,91,99,99,90,100,91,109,99,94,91,102,95,99,97,101,85,94,100,110,92,95,105,130,97,96,103,88,96,108,99,87,101,104,105,79,105,105,94,114,97,94,82,127,101,74,96,92,96,93,107,101,99,112,102,91,97,98,97,101,89,95,99,98,99,105,101,102,106,85,101,92,107,99,98,88,102,102,93,98,110,93,102,96,100,105,98,96,97,102,103,91,99,102,100,119,106,98,100,91,88,100,89,112,102,109,95,109,95,95,86,106,91,95,105,100,100,85,106,94,100,91,137,103,97,97,104,66,113,119,93,102,91,109,105,69,102,106,97,91,110,105,106,97,105,115,91,101,68,93,94,96,95,99,103,98,99,100,110,99,97,113,101,94,107,94,105,100,111,108,106,90,109,104,75,94,101,92,97,112,96,99,101,99,92,91,100,100,108,105,95,98,100,102,65,103,88,103,94,103,107,100,111,100,98,103,88,92,93,109,98,98,96,87,91,96,97,97,99,93,98,92,107,95,102,106,102,106,101,96,102,94,94,105,102,106,69,94,98,100,104,104,107,100,113,109,97,98,98,99,109,90,108,115,106,103,91,101,99,106,106,91,105,92,93,95,96,96,108,108,94,98,101,97,95,104,99,101,102,87,92,111,104,99,100,102,103,95,92,104,100,109,87,114,99,106,68,104,87,102,100,72,96,99,102,108,95,108,106,104,109,92,100,93,98,117,103,93,97,103,102,104,99,97,99,85,89,96,110,95,76,111,99,104,95,103,89,105,99,88,94,124,100,104,104,102,97,99,95,104,105,108,82,102,99,96,96,94,99,100,106,94,105,83,94,100,96,102,106,96,85,91,98,112,98,104,111,102,100,98,101,83,101,100,98,85,95,97,90,96,104,87,113,92,101,96,105,101,117,109,99,108,94,102,95,83,96,90,102,102,99,96,93,96,103,102,102,101,95,99,100,94,101,99,107,99,123,95,97,107,92,94,104,94,113,90,91,105,96,105,103,98,105,107,108,102,99,108,101,98,97,99,95,99,86,87,101,95,88,92,96,105,113,111,101,92,98,98,104,106,106,105,101,104,99,103,94,106,124,93,101,99,95,99,104,98,100,93,103,88,95,98,105,92,94,101,84,97,88,103,100,99,97,98,105,111,99,96,103,105,106,95,103,100,98,107,99,101,94,96,101,113,99,97,99,108,97,95,101,106,97,91,88,93,92,95,102,101,97,66,108,116,98,107,93,97,94,110,101,99,115,104,101,99,77,98,101,110,99,107,109,103,109,99,91,98,88,91,100,90,100,108,96,107,96,105,94,113,93,100,104,107,104,106,88,107,96,105,111,100,116,87,97,91,64,95,101,108,108,100,130,98,105,102,101,89,85,95,90,92,106,100,100,99,101,105,107,100,94,108,103,110,100,97,101,100,98,95,101,101,76,100,108,114,91,104,108,114,105,105,98,106,105,102,101,100,79,86,108,98,106,101,100,97,95,88,103,110,102,94,94,99,96,97,103,102,102,104,95,104,105,93,90,99,104,109,109,98,97,103,99,99,96,108,107,103,91,94,105,93,107,101,101,112,76,101,104,102,98,103,108,103,96,105,98,100,109,61,97,99,97,107,101,99,97,101,91,105,98,113,103,104,97,91,105,101,109,96,91,108,103,102,100,111,120,109,95,105,96,97,106,109,108,105,91,100,98,96,106,95,101,96,91,103,98,97,111,105,107,108,111,99,93,97,106,97,94,88,106,108,100,105,95,94,109,109,93,110,79,110,110,114,108,99,102,106,103,88,101,105,98,106,95,98,100,92,100,98,107,100,95,100,101,102,91,107,88,96,106,93,94,107,103,94,100,99,111,107,103,100,100,84,101,103,105,101,87,76,113,96,92,104,101,104,102,94,93,102,98,98,97,80,106,105,101,106,105,104,133,103,110,107,103,126,105,114,101,87,120,95,101,101,110,107,99,97,100,110,107,80,99,114,101,99,100,107,100,91,117,97,111,108,107,106,113,100,96,109,104,99,104,110,115,100,74,94,97,97,96,98,105,100,99,96,95,105,92,96,108,105,97,97,104,111,102,94,96,100,98,109,108,105,104,98,106,103,98,93,91,96,129,87,94,96,97,95,99,98,96,87,81,93,106,105,101,100,98,96,93,93,86,97,107,108,111,117,91,96,103,98,89,99,98,85,94,103,94,97,98,84,113,100,117,96,102,118,100,97,104,100,104,102,101,110,95,105,97,86,97,90,93,102,100,102,103,108,104,92,118,108,102,109,101,98,107,106,97,100,101,98,97,98,101,75,110,98,104,104,93,98,115,101,95,122,111,77,100,95,113,95,96,94,101,99,117,90,107,94,112,104,106,103,96,99,99,105,91,92,98,99,100,96,99,102,84,93,84,94,101,117,96,101,72,120,93,93,112,106,99,94,102,110,103,92,103,106,107,102,91,98,101,97,96,105,97,93,109,100,96,87,113,97,110,91,93,109,101,108,94,100,90,102,90,91,103,93,102,98,104,95,108,100,98,103,105,96,101,101,96,100,111,87,104,104,98,96,96,85,104,101,98,78,97,92,93,88,101,97,89,98,101,101,87,80,97,87,100,97,101,99,98,106,94,108,99,98,95,101,99,106,110,106,91,112,94,96,97,101,120,101,100,98,101,95,103,105,110,108,100,92,91,87,96,109,99,98,98,93,97,95,95,92,105,98,99,102,101,93,92,100,99,102,101,106,93,93,96,102,97,107,94,106,98,116,103,104,92,98,90,93,105,120,95,99,99,113,96,107,110,93,101,97,103,107,102,96,101,101,109,101,94,104,98,115,110,95,99,95,102,99,85,83,99,111,96,97,101,84,101,106,102,100,102,89,96,98,101,102,105,88,94,89,97,95,87,110,116,106,95,101,97,103,95,93,91,92,101,110,108,90,93,91,85,99,105,111,92,104,103,94,112,95,95,106,103,107,100,106,110,101,103,95,105,104,97,104,102,110,102,79,94,107,110,106,97,100,104,107,109,96,109,92,88,106,103,105,103,104,87,104,104,102,101,98,105,106,101,86,95,102,94,76,106,99,103,107,111,120,102,105,108,100,89,94,105,105,111,96,103,117,98,106,108,85,92,110,100,107,103,92,99,104,109,92,104,96,102,84,121,96,94,108,75,103,108,91,89,99,92,103,101,103,99,87,90,105,98,93,95,113,97,101,99,104,101,109,109,95,97,96,100,113,97,83,104,95,93,93,86,88,91,101,98,101,79,94,95,95,108,103,104,105,93,93,86,98,110,91,97,98,94,83,90,87,119,98,100,97,100,100,96,102,105,94,96,93,98,109,88,97,90,102,103,105,105,115,99,97,104,96,106,109,95,102,85,95,99,91,94,92,114,105,102,93,95,94,112,98,97,104,106,100,87,95,103,105,102,113,99,104,93,116,102,107,96,107,108,110,99,106,109,106,102,92,104,110,106,109,103,92,98,114,90,90,79,97,108,102,95,90,96,95,102,114,93,92,96,110,104,103,99,87,106,102,101,90,95,89,99,111,93,102,105,124,102,91,100,92,90,109,102,95,93,104,102,88,87,102,99,105,90,105,122,99,97,91,105,96,99,100,101,108,103,89,108,109,94,100,100,103,98,114,86,96,97,98,92,99,103,104,103,106,94,101,89,101,92,95,101,101,107,81,98,105,93,101,108,93,109,112,100,93,106,95,105,117,108,90,107,95,83,106,100,95,99,96,116,91,87,92,107,89,105,101,96,103,95,101,103,84,107,104,109,95,83,101,95,92,98,96,89,98,89,103,102,136,99,84,98,91,92,93,108,106,109,112,87,100,100,89,98,98,101,92,103,111,96,100,105,107,102,92,106,113,103,100,95,88,104,95,82,106,95,112,94,104,95,101,97,105,99,102,75,94,93,114,111,86,103,104,116,114,101,100,81,110,96,107,84,75,109,105,91,87,94,101,95,102,83,101,98,97,105,68,106,83,101,98,88,92,94,105,104,101,110,94,108,91,93,97,103,111,88,97,108,131,94,90,104,102,104,98,92,83,101,95,103,86,93,100,100,105,96,101,98,105,92,113,96,95,127,101,95,92,101,106,112,99,93,100,102,99,95,97,98,100,102,87,100,89,90,105,82,105,111,96,95,98,111,98,94,102,103,101,106,106,100,91,104,109,99,114,91,95,102,104,103,92,89,98,117,106,92,112,91,104,101,88,91,98,104,104,94,98,94,113,107,108,104,98,94,101,103,99,101,101,92,83,105,94,87,100,94,107,95,98,100,91,91,104,101,98,98,117,103,101,91,94,100,96,102,104,74,104,109,94,105,96,82,91,84,96,105,104,98,104,100,98,100,84,106,104,99,97,103,104,92,86,114,89,106,98,93,95,98,105,98,99,93,110,95,94,101,86,109,97,101,96,99,90,66,93,100,104,107,104,96,103,109,104,105,96,106,101,94,68,107,90,94,113,98,101,102,137,105,89,95,116,96,91,79,101,105,73,103,110,111,127,111,104,98,97,100,103,102,93,108,113,112,94,104,99,91,97,95,94,108,91,96,99,87,85,101,111,109,101,95,95,98,110,97,92,91,94,84,104,86,99,106,94,95,100,109,112,88,116,105,92,97,103,99,96,98,98,106,111,98,92,98,98,99,100,92,74,122,100,115,102,98,96,92,91,104,109,97,96,103,108,87,108,105,85,101,93,95,95,95,92,100,97,101,88,99,99,98,101,123,93,105,93,88,109,110,99,88,90,103,89,111,104,88,102,93,90,89,101,93,101,110,102,88,96,97,96,116,72,98,120,84,94,83, +707.61926,103,86,98,108,91,89,96,100,96,95,85,101,103,105,105,100,78,106,92,87,125,106,100,114,103,90,89,91,86,113,111,105,86,103,103,108,102,105,92,104,88,102,104,101,99,115,93,105,96,98,104,102,91,110,99,99,99,91,104,105,102,99,100,98,105,99,99,100,104,100,99,105,107,99,94,117,89,96,96,98,96,106,97,102,102,96,99,99,85,110,90,101,107,98,103,97,110,102,96,109,105,94,91,100,106,105,94,103,101,95,104,103,103,100,105,103,88,102,108,106,110,113,105,98,111,103,105,105,104,74,100,103,95,95,108,109,93,98,107,102,104,114,102,90,79,101,77,98,95,99,94,101,98,98,92,101,110,89,93,102,102,116,95,102,106,104,103,99,101,99,95,92,98,72,94,109,96,106,109,109,101,106,96,99,101,109,97,96,98,87,101,99,97,101,101,87,101,95,91,108,104,94,95,104,104,114,102,95,106,105,100,95,103,112,97,97,102,113,91,102,105,106,95,86,93,109,99,104,109,102,108,120,106,109,94,110,105,108,110,101,101,102,102,98,92,113,103,109,95,96,100,103,107,99,98,98,95,106,100,92,104,100,106,95,95,100,101,94,104,91,103,119,110,110,103,88,99,101,104,110,98,91,102,98,117,104,109,99,92,104,101,105,101,102,116,110,99,107,96,77,108,104,97,84,94,117,108,101,101,98,105,113,106,100,105,93,106,98,95,108,97,95,116,106,106,107,99,93,106,98,101,106,109,99,96,102,113,105,95,110,92,106,106,97,102,101,94,111,105,104,114,102,100,99,105,122,111,115,90,99,103,95,101,95,102,109,92,106,104,96,113,107,68,87,110,105,105,99,97,90,108,98,91,99,96,98,100,95,97,76,93,100,101,100,104,98,103,95,94,103,110,105,89,108,96,88,100,107,90,99,69,100,91,104,108,87,91,102,99,111,82,99,88,97,87,98,88,93,106,101,101,112,101,95,106,104,102,98,93,108,110,69,101,94,95,103,96,94,108,97,96,101,101,96,110,93,96,94,99,93,99,104,105,100,104,99,132,86,92,101,105,98,108,97,102,92,95,94,96,105,97,104,112,99,96,129,103,108,110,96,135,96,98,99,103,99,98,100,96,95,98,104,97,96,92,94,96,85,98,121,110,91,72,98,98,109,95,106,102,86,96,94,97,118,100,97,106,106,96,105,97,105,107,93,101,103,95,108,101,87,97,96,91,91,107,85,96,95,99,97,102,108,117,104,98,104,99,100,85,103,97,102,101,105,67,97,105,91,94,93,91,92,110,112,108,106,99,103,102,96,106,102,100,80,103,91,96,102,93,108,101,95,101,102,104,103,99,99,108,102,94,81,101,88,97,91,105,90,99,102,103,100,91,83,108,95,92,91,98,106,98,97,94,97,97,100,105,103,96,100,110,75,88,97,100,96,102,112,108,108,105,108,97,98,88,79,92,87,99,108,104,114,101,103,91,104,105,105,98,108,96,108,111,101,91,102,99,97,101,98,102,110,96,98,99,107,115,100,98,98,97,95,109,106,87,103,86,96,95,76,88,109,103,104,84,103,111,95,97,106,96,105,91,101,94,112,107,104,96,104,106,93,102,93,95,92,96,101,99,76,95,96,90,117,99,98,109,91,86,113,100,101,96,93,92,87,102,100,107,102,104,94,106,106,107,96,104,92,106,107,90,95,99,100,108,106,97,108,110,104,102,109,83,104,90,105,79,114,95,93,108,110,104,94,104,91,93,91,103,100,109,98,108,97,105,102,95,98,96,91,101,90,116,110,106,95,89,114,95,100,105,107,104,84,91,95,109,91,87,109,98,100,94,98,100,105,98,103,108,92,88,103,97,100,89,91,100,87,108,96,108,88,101,97,95,93,99,89,88,100,95,89,113,99,106,102,106,95,97,94,106,101,90,116,103,103,93,91,104,112,98,85,89,99,105,103,83,100,107,93,88,101,106,99,91,103,116,110,97,101,105,112,106,94,109,102,87,107,104,97,94,110,100,98,95,95,96,98,97,102,99,97,106,100,104,94,95,110,97,96,98,133,97,98,100,100,92,112,83,80,103,95,100,96,99,104,95,94,100,98,93,98,90,99,103,92,98,106,99,98,99,99,94,106,98,110,80,103,97,98,102,99,98,104,90,89,104,100,110,104,106,103,112,100,100,110,94,102,96,88,97,93,106,99,89,93,103,95,100,86,92,88,92,98,95,104,100,84,94,101,104,108,106,104,94,98,99,92,106,97,98,101,95,98,109,103,102,112,97,115,97,99,89,101,108,99,104,105,105,97,98,105,99,110,101,96,101,92,97,106,99,97,97,92,98,89,94,113,99,94,99,87,100,110,95,109,98,90,102,90,87,101,91,90,102,108,92,110,98,118,106,97,99,102,97,101,102,99,95,107,82,103,103,100,93,96,106,98,96,104,103,101,97,93,103,101,96,106,108,96,101,98,104,94,94,112,100,101,113,91,89,96,114,104,96,94,103,100,100,100,110,105,109,93,103,99,94,105,94,105,116,87,90,105,104,98,88,106,113,106,92,104,110,95,90,104,114,108,104,95,103,98,116,99,93,109,108,75,110,102,110,99,110,104,105,99,101,99,103,109,98,98,104,90,106,113,109,99,111,96,96,95,109,103,103,100,100,96,94,102,114,106,93,113,113,110,106,102,113,97,108,101,107,106,91,100,107,103,100,98,101,97,101,98,104,100,107,104,91,99,111,94,96,105,91,106,100,103,103,99,107,104,103,106,93,91,106,95,113,104,101,89,94,102,94,94,107,104,104,114,93,99,97,99,101,100,100,105,110,103,95,101,80,102,95,91,90,81,87,100,113,90,95,108,108,81,100,109,99,110,102,114,110,96,99,106,93,97,105,104,94,95,104,94,84,95,106,105,90,112,112,104,96,109,113,96,82,105,92,103,98,88,100,104,94,101,109,101,95,96,108,95,91,94,109,116,96,94,100,97,104,101,95,95,99,99,102,100,98,102,100,102,95,105,109,105,106,98,103,99,76,106,107,99,104,104,100,93,101,107,102,96,93,105,91,95,96,82,100,92,105,105,112,99,98,99,109,105,108,100,94,110,98,104,99,109,100,101,102,101,101,96,94,110,108,105,102,100,93,107,104,97,96,99,97,97,102,92,96,104,106,90,99,110,104,102,106,109,102,99,92,101,124,94,97,87,98,101,95,93,101,105,92,89,105,106,94,101,110,99,102,104,102,103,111,98,100,111,88,100,94,109,83,90,104,109,85,117,96,98,101,96,102,107,90,108,96,98,102,110,103,105,100,112,113,102,94,93,98,86,101,93,104,120,99,90,107,107,123,107,84,94,109,89,100,101,107,99,99,104,94,106,78,109,107,111,117,101,108,98,90,105,112,94,94,95,101,96,96,96,97,98,105,95,99,97,105,98,74,105,91,105,84,100,105,91,102,101,97,99,84,103,108,100,91,96,101,96,100,105,98,109,84,94,102,116,103,94,107,89,106,84,112,111,106,104,100,103,102,90,109,102,109,103,115,102,104,97,111,120,111,87,103,101,101,92,98,95,92,103,100,98,104,138,102,102,105,91,108,104,90,101,113,104,107,102,96,98,108,79,105,96,105,91,98,92,117,102,89,103,83,106,107,102,101,94,104,94,95,97,96,102,98,98,87,91,110,101,94,107,96,108,93,96,103,105,107,104,106,85,103,97,105,88,95,108,103,103,96,108,106,92,105,101,106,97,94,101,100,93,96,98,86,97,102,94,109,95,98,111,139,110,100,100,109,109,99,96,98,102,106,111,95,107,88,108,96,98,103,110,102,94,100,76,83,101,104,99,107,100,108,110,113,106,83,108,88,104,104,109,95,100,101,108,106,104,87,98,103,98,98,110,92,93,95,105,90,101,97,98,106,102,102,105,104,101,102,98,109,106,90,107,96,110,95,103,105,94,105,105,100,118,111,93,103,92,93,96,101,108,104,92,114,95,105,102,103,107,72,106,102,109,102,97,103,100,120,101,89,88,103,106,93,106,106,104,103,107,106,80,92,98,104,101,108,91,94,97,102,99,102,100,99,104,99,113,87,99,101,98,104,87,104,107,106,94,111,95,102,89,112,91,104,108,104,101,100,102,94,98,100,104,97,99,106,103,116,102,102,116,105,100,103,97,97,109,98,100,117,98,99,91,94,100,103,91,115,88,97,99,105,106,94,103,101,86,107,95,106,97,106,109,110,104,85,116,109,113,110,91,107,91,115,105,104,100,103,90,91,116,104,92,97,87,94,132,106,97,101,99,101,99,98,108,104,95,103,105,94,100,113,98,95,97,95,108,107,87,113,103,110,112,99,107,87,100,97,102,88,97,102,101,109,104,94,98,98,97,107,91,96,94,98,100,98,98,99,100,100,100,104,108,99,100,99,98,102,107,99,97,101,103,102,92,98,97,108,116,87,90,99,100,105,114,113,109,94,98,98,99,104,102,93,97,104,100,106,107,100,102,81,105,95,102,109,100,97,103,89,106,104,103,83,103,66,110,85,90,111,99,105,103,110,95,91,108,79,105,94,98,95,92,103,97,117,96,95,93,112,97,106,105,107,99,102,88,110,108,95,109,99,95,103,99,70,92,113,107,97,116,93,103,110,78,98,92,94,89,97,61,102,100,119,103,99,98,114,98,100,88,109,96,111,92,90,96,110,90,91,86,87,76,99,100,91,90,93,96,105,106,113,98,102,96,103,99,97,103,113,115,107,112,104,102,94,110,98,113,117,90,107,102,93,103,97,108,89,90,105,101,109,94,97,93,100,102,110,101,112,69,96,94,104,91,92,108,93,101,107,89,102,97,115,100,98,101,100,97,110,100,99,90,95,99,104,99,102,95,101,102, +707.76056,95,102,97,93,77,105,108,77,94,125,117,100,99,102,101,107,98,111,100,92,104,98,106,98,99,94,91,98,99,94,108,101,98,103,109,117,107,86,91,100,97,104,97,112,113,94,103,111,103,100,111,111,95,98,105,98,99,103,79,106,92,95,100,115,98,101,89,97,93,98,104,98,102,71,92,99,96,94,110,99,104,90,94,113,109,92,104,106,95,90,97,105,106,105,106,99,106,91,107,109,100,102,101,105,117,101,101,103,98,94,101,101,95,95,94,102,90,102,109,97,97,105,109,115,109,103,97,101,92,101,109,99,102,101,124,100,95,94,107,93,93,94,90,95,92,92,107,91,95,102,114,96,105,89,105,102,114,82,101,102,110,101,110,112,106,95,102,96,104,95,99,89,105,100,86,95,98,100,109,93,100,106,107,113,100,91,91,101,90,92,95,107,91,95,104,102,105,106,100,97,103,96,99,97,95,111,90,91,108,106,94,114,91,108,93,100,93,103,95,110,99,101,105,103,97,108,96,101,93,92,99,99,87,93,98,91,105,115,98,86,83,90,131,109,91,101,106,107,89,101,106,95,99,99,100,98,90,111,102,96,110,102,105,94,99,94,95,92,96,104,101,101,97,97,107,99,100,105,102,114,107,97,107,104,99,107,98,113,101,92,99,105,115,90,98,93,108,101,94,95,103,81,107,92,99,100,103,96,90,85,103,94,103,91,97,97,101,105,98,95,103,106,100,111,101,110,96,96,105,107,73,104,96,102,95,91,84,95,85,102,95,103,100,92,102,106,103,96,101,105,101,95,100,100,98,96,87,105,90,90,87,99,99,106,95,93,101,105,95,112,102,103,111,99,108,95,104,90,90,87,100,100,72,116,105,105,100,88,97,84,94,93,89,95,98,95,100,104,96,112,100,94,93,86,98,81,105,93,104,89,108,116,107,95,100,101,101,92,112,98,91,99,89,90,100,84,100,79,96,102,93,93,91,109,92,98,96,95,88,99,104,94,101,105,92,105,101,101,96,92,87,111,95,95,108,97,97,99,99,105,88,97,92,109,104,88,106,105,90,97,92,108,121,86,97,75,92,109,98,100,105,109,111,113,105,94,105,104,101,95,101,101,102,93,96,99,91,95,103,106,94,95,97,100,99,99,88,94,109,99,103,98,109,107,106,108,105,102,102,82,95,101,101,100,105,105,94,116,75,91,93,94,108,96,100,95,101,109,109,94,99,102,91,96,101,99,99,95,99,103,96,104,100,99,84,102,91,92,101,105,97,111,99,89,96,97,93,104,92,94,106,94,106,101,98,98,108,90,97,96,101,95,101,89,94,91,90,99,92,98,104,103,69,88,109,131,99,98,103,100,90,91,112,101,96,95,101,95,100,112,108,105,105,102,98,96,93,106,93,99,104,92,105,79,110,98,91,109,103,95,99,104,100,94,100,100,100,95,107,103,107,101,123,89,107,93,99,101,107,99,101,97,95,100,106,112,100,98,94,97,103,94,105,100,83,103,104,94,108,106,99,109,103,95,94,108,96,101,99,110,103,106,98,99,103,87,91,94,98,102,103,90,91,103,91,95,99,99,87,96,105,112,95,100,104,96,91,105,115,102,103,95,99,76,99,96,100,110,105,97,99,100,100,105,95,81,97,107,100,108,109,100,101,90,91,97,103,90,94,95,98,98,104,110,108,108,94,108,96,99,92,95,105,98,107,94,99,102,93,88,117,101,93,101,87,108,100,102,90,99,103,98,102,96,64,105,103,95,97,91,100,105,110,100,108,117,103,109,91,104,87,94,82,103,105,105,99,92,106,104,95,99,95,105,104,100,107,106,95,96,102,95,83,89,100,100,101,106,107,108,93,105,101,96,91,98,103,87,96,101,108,107,97,105,90,90,114,96,100,106,90,107,103,106,113,104,97,102,100,98,99,99,75,84,99,108,103,100,99,103,95,93,109,95,104,101,105,90,91,90,91,107,92,98,95,100,95,90,91,95,93,95,87,95,103,95,91,121,107,105,103,104,104,95,95,102,103,102,93,105,97,106,97,101,94,100,98,103,84,100,95,90,105,99,98,90,112,115,93,90,109,91,99,99,100,87,95,101,100,83,90,111,100,112,93,105,95,106,110,99,95,103,110,94,94,120,109,96,85,99,87,84,109,119,110,99,91,83,102,90,111,95,99,100,86,112,103,96,103,92,92,92,110,103,101,103,110,75,102,112,86,97,97,116,107,105,94,118,95,99,97,99,86,90,100,91,102,105,103,94,86,104,98,98,116,97,95,100,93,100,87,99,102,98,92,103,94,94,109,96,107,98,99,90,106,100,98,91,110,105,92,107,112,99,110,86,105,116,103,87,92,106,101,97,101,94,102,110,109,116,103,90,110,107,82,98,107,102,97,107,90,105,93,103,111,78,94,98,102,98,93,114,93,107,94,107,100,101,97,105,98,89,99,102,94,103,105,92,123,99,95,107,100,99,103,98,93,104,113,112,94,111,108,99,100,98,97,101,106,102,101,95,103,117,107,107,100,95,100,102,104,97,95,100,109,83,103,102,104,96,99,109,93,100,100,103,117,108,99,83,109,100,91,105,91,102,106,106,108,108,124,102,104,99,102,103,96,122,107,104,87,94,109,92,105,104,62,87,94,82,109,109,93,99,94,96,96,93,97,99,98,104,86,109,102,105,103,103,102,103,95,106,100,107,102,101,103,93,122,102,101,104,94,108,95,107,94,101,105,119,104,87,107,98,86,113,96,96,102,101,109,101,97,91,100,97,99,113,106,105,104,102,97,110,96,112,108,97,107,96,89,96,96,96,118,97,94,109,96,100,107,94,112,97,99,109,95,109,91,99,118,117,96,105,95,98,92,113,92,71,102,103,96,103,95,96,111,100,103,109,103,103,104,93,98,103,99,108,116,104,113,109,99,104,114,99,112,91,93,109,108,103,99,101,101,93,91,102,105,99,86,101,104,108,91,98,90,97,93,103,105,103,97,101,105,111,102,110,105,118,111,83,101,118,98,108,95,105,98,104,105,112,98,86,104,99,99,95,103,101,102,109,95,105,97,96,81,97,104,101,94,108,106,110,100,90,105,105,97,112,109,106,94,105,95,99,103,102,88,94,101,102,95,96,109,94,89,99,104,100,98,93,101,103,87,102,95,97,101,103,104,91,103,107,99,108,103,102,106,84,95,89,96,109,100,96,106,98,117,83,66,109,97,96,89,93,98,104,108,98,102,111,96,103,106,101,91,104,100,94,96,97,101,97,99,105,98,98,103,87,100,102,97,97,96,99,107,100,107,117,99,108,97,112,110,101,79,97,102,107,90,113,101,103,105,111,103,97,103,106,94,115,112,112,96,105,95,92,103,101,105,92,110,110,105,94,91,106,98,102,84,98,110,100,89,115,93,113,92,108,108,104,101,101,103,93,100,109,96,93,113,99,98,100,86,96,92,93,97,107,112,84,116,91,105,106,94,102,101,106,99,106,94,82,109,94,99,98,99,84,94,99,100,113,78,87,98,107,106,102,99,96,109,102,105,103,103,93,89,100,109,96,109,95,90,101,90,96,100,103,100,98,90,104,96,95,117,106,100,97,90,101,102,101,99,101,105,88,103,104,102,105,105,96,98,106,97,94,104,99,102,101,101,100,101,96,105,106,98,95,99,99,100,104,98,99,113,99,116,101,95,101,103,104,101,104,115,109,74,103,117,110,98,104,96,110,93,105,103,100,92,101,96,101,94,99,107,97,100,97,107,102,86,94,103,113,104,96,118,88,93,96,105,109,99,113,106,109,92,95,104,101,101,99,109,104,101,97,91,102,100,102,73,100,99,103,103,108,99,98,96,105,97,92,96,107,105,97,96,99,76,103,97,103,94,95,80,99,101,79,100,104,97,101,113,98,105,93,100,97,99,97,96,103,99,125,91,105,104,106,94,109,90,114,86,101,91,96,102,117,100,96,82,94,104,105,103,109,92,100,100,94,94,106,114,89,93,92,95,65,94,106,101,96,95,106,95,98,104,110,107,103,99,94,106,108,94,94,103,103,95,92,111,100,88,108,104,103,106,100,102,90,101,105,94,119,109,104,108,102,95,91,98,96,96,100,104,101,104,92,99,95,90,113,87,98,87,118,106,120,104,89,93,104,100,103,101,107,98,100,110,100,109,108,104,102,98,108,102,104,111,99,99,109,117,97,110,101,92,92,116,91,103,109,130,100,101,110,106,95,90,104,100,92,94,104,106,101,102,102,103,104,108,100,94,87,101,93,96,100,114,103,112,109,102,109,104,112,106,105,110,110,106,114,101,80,99,95,98,97,104,91,99,98,98,101,99,96,94,115,94,109,101,111,102,104,104,97,97,101,104,95,89,99,98,95,110,105,106,97,85,82,105,98,88,112,104,102,99,100,107,102,101,105,84,93,88,101,106,100,101,104,88,105,92,93,99,95,94,101,108,95,104,101,93,102,101,108,102,96,89,99,95,104,115,110,108,111,100,99,103,91,94,108,100,92,102,107,94,100,109,96,112,92,98,100,92,110,114,92,97,116,106,99,99,92,111,85,99,101,111,88,100,105,95,109,107,101,111,100,93,98,104,102,104,104,78,102,100,98,101,100,96,105,96,95,108,101,93,94,93,82,100,106,95,91,104,109,110,97,88,98,98,94,103,107,102,96,98,92,97,118,100,109,108,96,104,89,108,91,91,104,99,107,106,88,105,88,79,96,99,112,97,93,109,96,86,99,98,105,98,97,93,107,115,98,102,98,96,95,111,92,107,97,97,94,108,108,89,104,98,102,91,104,120,125,100,120,100,117,104,102,95,109,97,88,87,106,106,90,118,93,105,96,106,100,96,91,100,95,113,94,92,98,107,97,101,97,87,106, +707.90192,100,98,107,105,87,75,95,94,89,101,104,104,97,100,95,106,106,109,113,99,96,98,109,106,80,105,104,99,109,93,95,104,106,97,92,102,107,96,102,102,90,110,86,92,97,97,88,105,94,94,110,105,108,102,97,104,97,105,106,100,102,84,101,86,97,96,109,102,106,105,104,96,93,100,98,108,88,99,101,101,105,102,92,101,99,97,96,99,103,90,86,103,88,75,104,116,106,101,114,95,100,98,97,94,106,104,109,84,89,99,102,117,108,102,92,100,105,107,106,99,101,105,100,103,109,96,99,87,105,93,90,96,92,108,101,105,99,110,93,99,90,98,102,77,99,96,100,107,96,107,98,89,99,83,114,92,90,93,88,102,102,82,112,94,94,95,96,87,100,96,92,66,94,99,87,99,103,94,108,100,132,98,78,117,100,92,95,78,102,97,91,104,108,96,97,95,96,96,96,90,94,106,92,106,106,105,98,101,110,101,101,100,100,103,96,89,95,104,93,99,95,89,85,91,107,111,107,90,92,94,90,95,97,91,106,105,95,98,90,96,93,98,103,95,106,96,95,91,96,94,105,105,92,105,98,98,96,105,91,81,93,99,110,97,88,97,95,98,97,99,104,109,101,85,97,90,91,107,97,99,97,93,105,102,117,110,89,93,106,101,88,88,107,82,105,97,96,100,113,103,90,94,95,109,95,109,98,100,101,95,92,109,103,94,91,96,95,105,104,106,88,95,101,107,79,91,87,100,97,81,104,98,97,104,94,101,97,103,92,106,98,89,86,93,110,100,95,99,95,92,99,103,99,107,88,90,93,108,94,107,109,100,104,88,101,92,102,103,106,99,96,100,106,109,95,100,100,99,100,75,95,106,93,94,94,103,103,104,119,103,97,98,92,102,97,95,91,99,102,99,113,91,100,97,103,95,94,101,110,101,97,91,105,106,97,92,91,94,104,100,91,77,86,105,100,98,97,92,82,101,88,98,100,89,98,91,90,113,103,102,114,93,95,106,88,101,90,103,107,100,106,108,99,105,110,71,102,107,105,91,103,90,93,102,101,100,99,98,105,96,116,110,98,100,99,98,92,110,138,97,103,106,114,93,102,92,97,91,105,98,96,98,113,97,87,100,97,106,98,88,102,102,99,85,99,107,95,96,97,99,99,111,98,86,106,99,104,102,98,94,102,97,104,94,106,96,110,86,110,95,95,112,108,89,92,108,92,106,100,113,96,103,104,96,105,104,106,96,112,103,102,101,101,90,83,103,100,81,87,108,115,103,107,100,94,96,112,100,95,97,88,105,94,98,109,90,107,99,99,93,101,97,94,91,100,100,93,111,112,99,93,109,99,90,106,119,97,92,103,102,86,91,89,94,101,91,87,103,107,106,107,98,113,96,105,87,98,107,87,99,98,96,89,91,111,105,99,101,102,94,85,108,91,97,101,101,90,98,90,109,100,67,91,94,94,81,102,92,101,90,91,107,103,103,95,99,99,89,106,103,98,103,89,88,89,89,100,101,104,98,103,95,118,119,100,95,103,94,117,98,107,107,100,81,93,100,95,105,100,101,90,96,96,110,89,101,92,97,104,89,98,93,96,105,106,99,104,103,98,95,75,99,103,97,93,111,102,96,96,94,101,91,106,99,89,101,99,96,102,113,90,97,94,96,101,99,105,101,112,95,97,86,106,102,97,91,101,99,102,113,114,105,113,95,110,98,100,95,97,95,95,108,96,94,97,85,95,94,103,92,110,94,103,94,111,101,104,100,112,91,97,99,99,107,104,97,103,103,98,91,96,102,95,87,103,93,104,90,103,109,92,92,98,98,100,104,103,103,97,80,106,94,90,105,107,108,95,93,102,105,103,105,108,103,115,100,106,89,95,90,95,102,91,104,96,116,91,100,103,111,103,92,103,103,105,102,95,95,104,94,105,96,93,119,105,95,95,99,106,102,93,104,76,92,113,96,92,103,96,88,106,87,102,99,96,103,115,86,95,100,101,98,105,117,107,103,93,101,102,100,101,98,111,99,97,92,90,102,96,85,96,96,103,90,95,90,99,103,81,93,105,112,103,118,105,81,101,107,92,89,104,92,98,98,108,110,89,105,93,107,100,101,114,91,89,94,89,106,111,99,97,97,94,90,102,91,106,99,99,109,107,96,103,102,90,95,98,102,95,95,102,85,106,97,98,89,97,94,94,89,104,89,102,109,87,96,111,89,99,90,97,94,94,97,92,98,101,99,99,100,98,94,98,101,99,99,104,103,85,92,118,105,88,93,105,84,95,93,85,101,95,92,87,97,99,104,93,97,121,97,113,109,105,83,92,95,100,90,85,109,88,107,89,94,106,101,95,108,101,91,96,109,93,109,105,89,98,106,99,94,88,105,104,95,86,97,90,98,89,107,102,108,104,93,95,97,86,99,96,96,91,95,93,91,108,102,98,91,94,98,100,93,104,106,115,112,89,98,111,110,96,102,103,105,105,100,97,100,102,106,91,87,92,98,95,93,100,105,109,103,95,101,93,103,112,88,93,96,90,119,92,98,96,101,102,94,93,91,91,99,98,106,102,99,102,106,100,103,111,87,84,95,100,88,95,100,99,106,137,98,99,112,95,99,100,103,104,96,84,102,102,83,102,98,102,108,62,96,104,90,86,92,98,96,104,98,91,86,106,101,96,103,81,97,97,119,104,97,97,104,106,89,113,101,96,102,104,89,91,98,116,97,104,102,107,101,90,95,104,96,104,101,98,102,96,106,109,93,100,96,97,99,101,95,100,96,103,112,108,113,97,111,101,80,117,99,98,107,106,102,107,104,95,104,108,87,106,97,113,109,88,108,94,99,103,106,113,91,106,106,104,101,100,102,98,91,103,97,95,99,98,91,96,91,100,102,102,103,105,87,94,107,110,104,96,93,90,92,97,103,98,117,94,104,104,91,111,100,94,88,98,98,101,106,91,93,101,101,100,94,103,92,88,94,111,92,98,102,117,96,107,99,95,104,100,107,94,102,95,87,105,102,96,97,102,85,91,99,89,100,96,101,101,100,105,102,94,108,107,109,94,87,108,100,96,112,97,93,93,89,101,104,96,100,106,104,108,90,103,109,105,106,102,98,96,97,98,103,94,97,93,94,104,92,95,89,98,106,76,101,87,100,106,97,101,99,109,98,106,98,95,113,103,99,102,99,91,90,95,101,102,100,108,102,112,98,109,89,92,92,103,104,89,91,101,91,101,93,98,99,106,91,91,116,97,103,97,109,105,91,97,97,87,104,98,98,91,94,87,91,86,93,99,108,90,103,106,117,117,99,92,93,98,99,97,95,97,95,106,94,93,107,98,97,97,98,96,93,103,93,89,93,96,103,90,89,105,99,104,88,95,88,85,116,96,101,105,97,111,94,101,97,122,91,91,97,97,97,101,98,100,97,105,99,100,107,115,124,97,96,104,104,90,90,97,103,75,111,100,97,109,69,88,97,84,99,103,106,110,100,103,113,100,98,101,92,107,93,101,99,106,101,85,100,103,84,97,100,91,108,96,105,108,104,98,113,87,100,90,96,106,77,96,97,103,106,97,103,113,100,103,95,98,105,102,103,97,84,103,98,94,96,98,98,100,95,101,105,95,102,97,97,100,103,90,97,93,91,96,104,95,98,94,115,108,98,84,105,96,107,89,91,102,94,98,85,94,96,87,97,102,92,107,98,97,107,96,102,95,98,96,99,111,109,108,103,97,103,89,103,106,91,89,85,98,91,94,105,91,96,98,99,97,95,102,94,88,100,99,101,121,103,106,103,109,94,93,102,106,87,98,105,97,101,97,99,98,97,101,99,91,98,106,96,100,112,95,100,98,83,107,99,101,94,99,91,97,94,99,97,100,87,88,110,98,98,91,103,97,89,91,91,90,87,99,97,93,96,114,95,104,87,113,108,102,77,95,79,108,87,87,108,102,102,93,97,112,91,81,92,110,85,97,100,101,97,99,97,89,106,115,108,92,85,104,116,101,101,99,95,98,94,101,101,112,121,103,112,100,113,85,95,103,119,91,111,100,97,92,100,90,99,110,92,98,99,106,99,103,92,118,103,93,103,93,113,96,100,104,106,109,88,97,109,92,105,97,103,91,107,111,96,83,98,102,92,93,114,108,87,91,98,108,91,99,115,91,93,94,114,99,102,101,108,104,84,98,101,121,106,99,100,101,98,116,91,105,97,95,108,92,95,101,100,85,110,96,110,95,95,113,89,91,90,96,84,105,100,102,106,101,91,109,93,102,101,96,104,89,100,99,105,104,92,102,93,114,100,93,107,100,107,98,95,102,104,120,112,93,95,101,102,108,108,88,99,112,99,105,100,96,99,119,108,83,95,100,102,105,97,102,89,100,109,89,95,99,108,104,99,109,112,113,95,97,93,100,99,90,114,110,76,96,105,96,101,101,88,103,104,97,105,86,101,94,92,98,96,102,94,98,102,104,100,93,105,95,95,106,97,98,86,98,112,87,97,107,111,109,114,86,115,112,99,104,83,112,96,107,102,103,96,87,93,95,99,98,91,104,97,101,96,87,91,99,102,95,104,78,99,107,104,109,103,113,94,112,107,91,104,91,108,93,93,95,105,95,87,107,90,108,108,89,100,87,83,96,93,104,96,99,104,106,104,93,98,106,103,111,100,103,101,90,93,97,98,92,101,95,96,100,109,109,97,106,106,90,91,103,100,87,89,107,95,93,93,96,98,104,80,97,91,94,85,93,92,88,103,98,102,104,95,111,91,98,109,83,94,102,87,96,90,108,102,99,100,99,98,89,96,96,90,119,96,102,101,98,104,95,97,105,101,90,96,86,102,92,104,97,100,103,87,116,94,106,97,95,112,92,101,103,90,114,104,100,97,103,95,100,127, +708.04327,97,106,107,77,101,113,89,95,100,92,101,109,99,114,97,85,84,108,93,121,108,88,94,113,86,89,108,102,89,98,106,89,109,98,107,102,90,96,107,102,92,95,90,95,95,103,105,106,110,96,95,110,93,103,109,96,95,96,111,86,99,93,109,90,101,101,101,109,108,108,101,101,91,111,86,95,94,105,96,109,85,107,100,100,96,92,104,102,96,97,99,102,106,96,106,90,95,97,98,109,99,88,97,88,100,99,104,102,125,98,94,107,82,89,101,93,94,98,107,104,97,92,96,108,102,106,111,92,108,103,107,102,91,109,100,100,102,97,97,97,98,135,99,101,117,100,109,95,89,88,92,92,100,94,99,103,97,96,104,102,98,111,94,91,113,111,101,97,100,96,105,93,100,94,102,99,90,80,108,95,97,96,100,110,95,89,87,92,95,86,93,99,102,96,85,95,107,80,92,90,104,101,97,100,93,102,95,105,105,101,97,97,86,118,98,112,108,99,92,94,100,100,97,100,99,91,101,93,109,113,89,93,100,83,103,96,115,101,101,95,98,112,103,87,103,100,107,104,103,94,96,96,95,110,97,88,87,103,96,100,110,100,119,98,91,93,101,98,104,89,98,107,107,93,105,95,96,99,93,110,101,84,107,111,102,102,95,96,93,102,101,108,102,93,109,105,92,99,96,101,92,107,100,103,84,109,108,100,110,107,103,101,95,104,109,93,80,78,100,97,104,106,96,84,107,99,99,100,107,105,104,114,105,116,101,102,93,106,91,92,100,108,91,109,94,103,91,100,95,93,96,98,102,88,100,101,104,91,101,96,105,95,110,87,95,100,103,108,99,108,106,105,112,100,86,102,90,93,98,87,106,118,102,104,94,98,95,97,85,85,91,113,93,104,95,90,100,100,102,111,91,90,102,98,92,90,101,95,98,88,88,91,82,103,103,98,118,104,91,93,100,98,103,106,99,93,109,89,99,105,104,115,77,92,99,103,91,105,98,85,109,97,103,94,94,100,100,94,103,108,93,100,95,102,105,99,109,108,110,101,97,97,105,108,108,102,126,92,94,96,101,108,102,95,101,99,89,114,95,102,102,97,106,93,100,95,98,81,96,99,91,106,122,101,109,97,87,90,91,88,87,104,97,96,98,88,98,90,90,102,113,100,94,104,103,106,104,100,106,97,96,110,105,101,102,101,97,106,110,105,93,107,93,95,101,108,97,102,109,98,100,96,100,103,96,101,109,95,117,95,110,112,100,96,78,99,108,97,118,96,100,114,99,90,102,96,87,104,102,101,86,92,100,104,80,104,88,96,102,100,103,101,93,89,98,102,105,97,100,101,102,105,105,103,103,97,110,93,90,101,96,82,81,95,100,94,95,94,102,95,98,101,99,104,106,90,108,97,102,98,91,98,87,98,97,91,81,102,108,103,100,91,104,103,97,102,95,99,102,106,88,113,100,94,91,84,92,99,101,103,86,94,100,116,89,99,101,98,92,115,109,88,103,91,103,106,99,95,98,112,104,95,94,97,92,108,84,101,99,99,106,96,93,92,84,107,87,105,109,102,103,92,95,116,103,100,103,105,108,91,93,94,90,109,94,96,107,95,102,102,110,99,97,101,89,100,92,95,87,95,99,92,94,100,103,98,101,98,97,113,104,98,99,95,98,93,97,101,109,100,97,96,95,103,94,85,111,104,81,96,105,92,84,93,97,108,102,100,91,70,97,119,98,90,91,89,103,102,108,99,114,105,99,91,95,114,97,101,82,86,95,104,95,95,114,103,74,99,106,104,98,104,114,94,107,109,97,96,95,100,105,97,109,91,70,109,101,112,100,102,107,92,96,96,99,106,92,102,108,99,90,119,101,83,109,105,105,84,104,95,117,95,101,84,90,107,92,94,99,98,93,91,107,88,109,98,111,95,101,100,89,104,102,112,94,94,99,96,92,95,97,88,94,116,105,94,96,107,100,108,91,105,93,98,108,88,107,89,102,98,86,100,100,94,91,109,98,99,100,96,104,96,91,109,98,89,108,90,98,101,90,110,111,111,105,84,99,102,89,98,107,110,117,102,101,91,91,94,99,108,79,104,97,99,104,94,116,106,94,112,100,100,104,99,98,89,91,99,111,106,94,92,108,86,99,91,97,101,111,103,95,113,91,91,101,106,119,103,81,106,111,104,102,87,100,90,93,108,102,103,99,98,102,97,109,97,86,93,92,103,100,98,105,95,93,100,110,100,106,98,93,110,102,93,94,95,87,90,95,98,106,97,92,102,96,94,110,113,109,90,102,107,110,106,96,91,97,95,98,96,105,105,96,94,101,94,80,91,95,102,92,105,79,83,92,89,95,106,105,101,95,87,90,99,93,72,95,110,88,101,116,109,91,112,86,105,90,105,109,92,103,99,106,97,95,107,96,108,98,104,88,106,88,110,108,91,97,91,82,106,100,91,83,97,105,95,104,98,114,102,110,107,117,96,102,94,91,84,104,101,91,110,77,101,91,99,109,102,101,96,91,110,108,97,95,98,89,99,107,94,109,77,95,101,111,103,91,94,105,103,89,103,98,95,106,106,106,100,69,100,109,105,92,105,104,100,101,101,116,100,106,94,112,110,96,102,104,111,93,91,102,87,100,94,96,107,107,100,117,102,109,101,97,98,99,106,97,102,119,105,105,103,92,89,100,101,108,100,95,93,98,95,97,90,110,101,118,93,79,102,98,107,105,101,103,100,108,97,102,98,99,102,106,121,102,104,98,84,105,121,105,102,95,96,107,96,94,92,101,101,100,114,112,103,100,91,103,98,102,106,85,106,96,104,95,94,106,91,109,101,110,93,93,100,94,99,101,105,94,104,102,105,99,110,101,96,93,108,95,108,93,95,105,93,107,91,97,105,95,96,103,121,106,99,96,114,94,99,96,102,101,109,77,95,110,109,94,108,104,98,105,107,87,114,94,98,96,97,95,93,92,100,106,95,109,112,103,91,98,97,99,81,89,107,88,92,110,99,98,98,105,103,94,106,107,100,93,95,94,96,99,101,118,82,113,104,103,98,102,113,102,111,108,100,106,102,96,113,106,106,99,99,106,105,99,98,98,101,109,93,87,114,97,108,108,96,94,105,101,98,110,99,95,106,98,95,102,101,118,95,116,87,105,95,103,104,95,102,100,110,97,94,98,97,105,89,102,98,98,95,98,88,97,110,98,105,104,96,106,89,120,108,94,89,95,109,102,97,109,110,108,100,90,112,88,105,104,90,106,98,98,108,108,84,107,109,95,103,93,97,101,94,101,112,102,104,107,105,107,102,115,97,92,102,109,99,91,96,104,97,117,104,101,93,107,95,110,112,105,95,105,104,72,102,93,94,110,83,98,99,102,95,94,101,99,90,98,98,106,96,98,98,115,105,97,102,99,109,125,109,109,92,97,100,103,95,102,103,100,101,115,122,100,110,119,106,110,108,82,97,102,98,91,104,126,107,99,96,103,99,82,95,93,106,116,101,95,101,107,111,109,94,98,110,100,108,106,105,100,101,89,103,104,104,101,114,96,85,96,99,124,106,95,101,94,99,102,102,113,113,98,94,93,96,107,102,96,92,92,100,90,94,107,116,100,88,97,102,101,102,91,111,120,115,88,98,95,103,94,103,94,101,103,78,102,109,104,98,102,85,106,116,91,104,92,90,99,95,100,101,89,108,100,85,87,103,104,115,100,102,101,102,100,95,102,104,103,93,104,92,97,109,94,110,113,106,93,102,110,117,101,112,93,99,107,107,93,91,101,75,82,105,105,97,95,69,100,116,103,104,107,96,110,99,93,93,122,99,95,110,97,108,112,101,91,106,99,105,91,96,99,98,83,105,102,97,102,97,109,115,91,99,94,101,93,111,98,103,102,108,100,118,100,104,101,106,108,101,97,97,84,107,100,93,105,119,110,88,95,109,102,109,91,102,96,103,109,92,94,102,98,116,97,80,103,106,98,94,108,95,105,103,98,90,109,100,98,99,90,112,98,99,101,111,101,119,108,107,91,119,100,89,95,102,110,97,98,103,104,129,91,97,109,94,100,105,96,99,93,99,109,102,84,101,103,117,108,98,100,101,97,92,98,104,105,106,105,96,83,102,98,116,101,102,97,94,99,109,106,105,111,103,97,96,97,98,99,99,103,106,101,102,106,98,110,101,105,101,90,93,106,98,96,101,95,100,91,92,101,85,117,90,107,110,94,100,100,106,112,97,94,100,96,93,107,109,102,96,105,109,98,105,122,108,87,100,92,97,98,136,92,102,94,96,93,102,109,91,110,98,105,96,96,95,110,103,104,103,97,101,98,101,98,99,90,104,99,90,106,98,120,96,102,107,77,98,100,106,101,105,86,112,108,107,99,83,95,98,104,103,99,90,101,76,99,101,81,100,93,107,99,98,95,102,96,98,97,97,106,109,97,102,111,96,97,93,94,98,100,96,94,87,111,98,91,103,99,94,99,98,102,92,101,98,107,95,98,96,97,96,97,98,116,100,95,104,102,112,110,107,96,109,103,102,84,94,93,101,104,91,99,112,112,108,107,104,92,108,99,99,106,94,103,102,110,98,110,89,102,93,83,97,99,104,93,94,100,107,101,87,105,98,101,95,103,107,98,105,98,105,97,99,95,92,90,109,101,103,102,101,90,109,103,105,103,101,103,104,99,90,100,99,111,87,102,103,101,84,113,103,99,96,99,110,70,103,97,96,98,98,103,87,108,108,111,97,104,95,110,119,102,100,103,98,98,112,112,90,90,97,109,95,112,97,96,103,102,117,92,106,116,117,97,90,109,110,120,111,80,102,102,106,103,103,96,108,97,108,105,95,112,114,107,96,109,112,103,103,99,88,98,77,95,98,92,106,100,106,99,108, +708.18463,105,91,108,86,97,114,87,97,105,95,94,90,95,101,114,100,106,113,104,104,95,103,103,111,92,99,109,92,95,104,100,87,82,89,100,91,101,94,106,105,94,95,110,105,95,105,83,90,106,102,97,99,95,98,104,101,90,100,104,90,92,99,99,92,100,106,114,106,98,101,103,101,91,99,107,105,101,99,105,99,80,107,90,74,91,97,92,94,110,107,105,95,83,90,96,98,88,96,105,96,106,95,96,85,98,107,65,84,95,100,95,96,105,96,98,104,100,95,106,99,106,91,93,111,108,105,103,100,94,109,103,78,102,90,100,99,100,100,96,101,102,109,101,96,103,91,104,105,93,94,87,106,104,93,93,111,104,95,105,105,98,100,106,96,109,96,100,109,99,99,92,100,98,82,88,100,92,86,110,103,98,99,104,101,100,104,101,91,103,101,93,98,103,105,113,101,106,109,101,97,98,113,67,95,95,95,87,92,106,104,97,107,101,102,94,98,96,97,90,102,110,94,76,94,88,106,91,112,105,109,106,94,106,113,110,93,110,104,91,99,78,100,108,100,113,104,98,102,86,103,109,99,92,108,98,97,109,97,92,93,87,103,106,87,95,111,100,119,89,96,72,101,97,88,104,96,85,92,106,111,99,103,109,103,99,102,98,102,102,99,99,93,103,91,94,107,113,107,93,100,119,107,93,107,91,110,97,104,98,97,101,105,85,68,100,96,104,98,98,102,108,92,104,95,100,100,95,95,87,104,98,93,96,105,94,95,96,96,106,99,92,101,115,100,97,99,113,105,111,96,104,101,97,105,103,93,103,96,108,109,103,108,91,107,97,106,111,103,89,91,106,94,91,99,94,107,101,103,96,101,97,88,92,101,98,101,92,101,101,95,108,98,93,93,108,96,97,90,103,92,110,100,111,86,87,96,101,114,97,99,96,101,105,96,92,98,94,108,103,98,94,109,104,105,100,90,92,95,92,104,97,107,99,90,96,72,89,78,112,96,103,104,101,96,108,115,97,89,108,104,96,100,101,110,110,110,100,99,117,97,95,96,101,113,109,98,94,102,91,100,90,106,106,103,103,101,91,100,102,117,96,95,104,101,117,93,98,101,101,99,95,98,108,100,113,104,108,98,95,93,100,93,102,121,103,99,101,62,102,103,95,93,99,102,99,99,75,103,102,95,104,111,107,104,98,91,105,102,98,104,75,110,104,101,102,115,104,99,97,106,100,92,104,110,112,118,109,99,92,111,103,97,103,97,100,100,96,110,95,99,106,104,104,75,105,106,96,105,98,95,100,100,95,104,109,101,129,105,98,97,102,108,107,106,94,97,99,100,118,87,101,112,105,102,113,96,96,102,94,96,104,108,97,96,115,89,95,104,101,105,95,96,96,117,108,99,95,96,102,97,105,104,99,95,103,111,108,105,101,86,93,99,98,104,97,99,103,105,104,96,100,102,89,84,97,87,89,97,103,96,101,97,105,104,94,95,106,106,101,104,96,83,100,104,99,92,83,101,105,107,99,104,94,106,105,97,121,108,107,103,103,104,92,90,91,96,95,94,99,104,103,100,102,103,98,99,100,107,101,92,99,105,93,99,93,107,89,107,87,105,81,100,99,90,101,90,87,103,110,106,94,90,96,121,91,96,91,99,98,104,101,101,104,95,98,101,94,104,115,98,106,106,74,87,115,96,96,95,101,118,98,110,100,104,105,94,92,96,96,98,106,109,101,102,102,100,97,95,97,105,105,110,102,89,112,85,98,98,112,94,107,104,108,101,94,95,120,123,91,105,99,97,94,105,108,98,94,101,96,96,99,98,100,105,98,102,101,104,103,97,110,84,106,121,106,94,96,112,105,107,103,107,98,101,102,96,90,99,110,101,98,97,106,99,103,104,108,104,101,101,110,102,62,100,95,102,78,100,96,103,93,102,94,111,89,102,99,104,84,91,101,101,100,107,106,97,87,83,104,99,110,106,100,91,87,106,71,96,95,91,98,104,105,103,102,99,93,117,95,108,105,112,104,102,101,106,97,96,104,101,100,100,105,101,104,109,100,98,90,94,106,104,107,96,98,98,98,103,102,104,115,83,108,101,109,97,99,100,103,99,98,98,92,100,96,98,94,92,94,102,101,100,101,94,101,98,100,94,103,95,102,93,99,97,95,99,106,101,90,113,94,91,97,102,110,97,93,92,82,96,107,106,113,92,93,96,104,99,94,97,97,112,103,110,111,91,103,99,93,92,106,104,96,94,103,79,109,94,99,96,103,98,101,101,103,101,102,102,107,102,95,110,106,97,96,97,115,106,70,91,101,108,102,83,104,100,100,106,92,90,106,97,95,100,110,94,109,113,105,109,109,105,100,102,100,104,96,90,99,97,106,107,88,94,102,106,96,95,104,111,81,95,101,99,98,95,105,105,91,101,94,112,91,106,92,106,101,102,98,96,100,104,84,96,102,105,98,97,100,107,94,98,97,101,91,112,99,99,99,102,107,104,109,100,97,104,91,94,103,102,97,108,97,111,104,102,87,123,96,104,91,99,95,85,93,101,101,98,85,103,111,99,101,97,106,102,94,102,100,99,104,96,101,113,102,99,95,89,106,77,98,104,101,96,88,98,99,95,113,98,106,91,92,89,95,103,106,93,105,91,108,93,103,92,106,100,125,94,95,106,88,99,103,102,99,121,99,100,87,102,98,106,105,104,95,106,106,96,94,99,111,94,98,100,113,105,108,89,91,109,102,96,94,102,87,103,110,96,94,97,95,94,107,91,98,88,94,97,106,97,111,115,105,101,96,110,105,106,99,100,97,99,110,104,97,91,100,92,106,104,109,95,93,110,101,88,95,99,93,100,106,101,100,100,97,95,106,105,98,106,104,103,124,93,105,83,91,102,111,99,87,95,98,89,97,98,100,107,106,100,99,101,98,92,104,106,98,108,109,102,89,124,97,103,101,108,95,116,100,98,102,107,103,95,101,107,106,105,102,101,101,112,91,98,102,102,98,79,101,101,98,107,93,108,100,95,96,104,92,97,92,91,91,91,96,90,98,94,101,102,101,93,85,105,93,95,94,114,87,98,101,99,96,112,96,88,98,116,84,94,104,110,106,109,103,104,91,110,100,93,106,96,106,100,105,88,98,99,101,96,86,101,89,106,101,104,100,109,98,92,106,91,95,102,85,98,109,83,98,104,104,97,94,104,104,95,100,91,100,102,110,100,97,105,100,106,116,105,110,96,96,89,103,102,113,104,112,85,99,92,101,101,99,105,100,107,94,97,105,98,95,98,92,98,108,90,101,108,91,111,114,91,104,110,102,101,74,93,99,100,100,111,100,95,87,104,88,96,108,104,91,103,92,92,102,99,96,99,85,103,96,84,96,97,104,100,99,104,101,87,99,100,105,103,89,92,101,108,96,103,103,114,108,99,87,107,98,107,91,87,91,102,105,109,99,100,95,105,85,97,101,109,84,109,99,107,97,99,103,90,103,105,102,112,100,110,113,95,106,91,92,105,109,91,106,116,111,95,101,102,109,103,106,67,98,104,91,100,102,76,100,102,102,98,112,106,109,92,99,94,94,92,86,101,103,94,101,86,92,98,93,103,102,85,92,92,95,101,95,111,101,102,106,97,92,91,105,101,104,99,91,91,88,120,103,98,97,94,100,102,98,97,91,103,100,105,102,110,116,94,102,100,93,114,113,96,95,95,95,110,109,98,99,99,106,97,107,100,95,94,104,83,97,108,102,100,117,95,98,95,107,102,102,92,106,91,91,91,108,102,103,96,93,98,92,96,109,98,105,105,105,103,105,90,111,108,101,104,103,95,96,101,93,97,107,91,105,96,97,99,101,100,97,97,99,100,90,98,112,94,103,88,109,92,97,95,99,111,101,107,108,96,111,94,94,100,105,113,91,94,106,103,115,94,101,100,105,96,105,98,110,101,76,92,89,117,102,86,93,105,104,97,100,100,95,90,95,102,100,101,102,95,101,91,87,109,98,106,101,105,99,117,85,95,101,97,108,107,105,102,95,108,100,102,107,106,103,90,105,81,100,97,106,114,101,90,96,102,95,97,116,101,88,101,104,104,91,99,97,94,111,95,98,113,96,98,104,95,100,109,102,94,100,100,105,94,103,96,93,103,111,87,110,101,94,93,95,96,103,98,102,66,97,87,96,94,92,94,112,106,96,104,108,99,130,98,105,99,104,101,96,108,105,99,110,105,94,109,101,98,112,99,93,95,92,91,102,109,101,106,109,89,116,99,101,101,95,104,99,105,96,102,105,99,104,103,109,100,90,100,92,100,103,94,107,111,104,97,85,83,78,91,97,105,100,105,115,98,113,104,108,95,98,109,112,105,100,104,98,106,97,106,120,107,106,97,108,104,113,91,97,91,97,109,96,112,105,106,112,102,105,98,109,102,97,92,100,103,103,104,108,106,98,87,111,101,107,94,105,89,103,109,93,85,97,102,93,93,101,109,104,90,95,94,105,111,100,98,99,91,92,98,100,117,124,97,113,98,110,102,95,91,126,96,102,98,100,93,102,113,105,105,90,91,104,105,97,87,99,102,92,96,101,106,99,98,102,105,99,100,100,93,88,92,101,106,99,104,98,87,89,99,106,65,99,101,110,105,98,113,95,95,104,109,94,113,106,98,109,89,94,95,90,95,101,98,103,100,105,114,108,107,113,94,104,100,101,89,125,128,101,97,104,109,116,101,105,101,67,92,96,98,116,94,101,105,107,106,103,88,102,98,104,100,110,100,106,87,102,105,116,87,94,117,110,90,104,85,97,107,106,93,99,110,100,100,106,117,101,93,96,104,91,91,93,102,84,103,97,88,114,111,111,101,100,110,101,100,88,101,106,103,102,100,107,93,87,101,97,83, +708.32599,100,95,108,120,107,95,95,77,97,86,109,88,93,105,108,101,99,110,100,107,98,98,71,107,94,111,106,98,84,109,102,101,93,118,104,95,107,85,100,107,97,100,98,96,101,111,93,102,102,106,100,105,83,107,104,110,104,95,115,94,108,91,112,106,89,104,95,108,79,91,104,109,100,97,91,97,95,123,102,97,107,96,101,99,83,86,97,82,95,81,104,97,103,105,94,105,108,104,106,108,95,113,101,98,101,80,99,98,103,98,91,100,109,96,97,88,110,103,103,94,93,106,82,107,99,105,104,97,103,92,105,114,96,101,105,94,106,101,97,100,102,104,100,92,105,94,96,108,104,91,102,102,99,89,92,105,109,106,98,101,102,97,86,95,103,111,108,99,94,102,97,108,97,83,110,95,106,109,107,111,92,106,101,89,116,104,101,98,104,95,107,107,101,94,104,105,92,98,102,99,91,108,95,90,95,97,97,101,104,105,91,100,89,94,90,93,98,101,90,98,91,107,105,85,95,99,104,104,99,93,108,101,111,100,104,102,104,105,107,123,98,93,92,104,92,105,101,91,99,99,98,87,100,110,100,97,101,105,118,106,89,110,105,91,88,104,107,97,98,92,94,112,109,108,113,107,86,104,91,107,93,94,109,101,95,90,95,101,100,97,88,94,106,93,109,105,99,92,105,104,94,96,82,96,98,108,118,95,102,95,109,92,104,91,108,100,83,101,87,100,93,98,105,106,100,103,104,102,108,104,95,113,97,90,100,101,97,90,95,94,97,94,97,97,93,107,92,110,100,108,99,97,97,102,102,101,106,96,104,106,91,96,93,91,104,87,100,110,100,98,110,100,118,94,90,85,95,108,94,88,101,98,90,94,106,63,100,95,107,87,116,81,91,98,87,97,86,79,99,95,103,98,87,82,98,102,104,99,99,98,83,100,101,99,95,102,106,95,84,101,89,99,91,105,99,88,104,84,112,101,78,108,100,97,103,92,85,109,102,97,99,117,101,102,90,99,98,99,100,107,101,93,97,105,108,96,109,106,111,95,100,84,109,114,98,98,102,105,91,105,100,106,118,93,87,104,108,106,96,97,102,93,102,101,102,84,114,88,98,101,97,103,102,93,103,101,97,109,131,99,103,103,105,99,103,107,93,90,86,93,95,98,87,113,105,90,106,102,102,96,103,109,95,101,98,92,101,110,94,68,80,119,96,100,100,90,101,99,103,94,101,95,107,100,95,109,104,105,101,96,101,110,106,106,101,104,103,96,95,110,99,130,91,103,93,114,99,90,94,99,90,105,111,101,98,103,95,99,106,102,108,92,96,96,94,97,104,109,101,99,105,92,103,96,100,104,98,101,94,93,97,98,96,96,94,91,100,94,90,103,89,103,116,110,109,111,102,100,106,117,95,94,112,93,104,96,84,94,106,102,110,108,97,96,99,113,84,96,98,82,101,97,102,101,96,90,106,100,103,95,95,99,90,117,103,97,97,98,94,103,101,98,100,108,101,106,84,104,99,90,102,100,98,96,85,95,99,100,103,100,121,97,101,87,94,96,97,97,100,102,96,95,95,102,96,66,92,103,94,88,100,97,99,107,105,94,100,92,89,95,99,103,99,92,92,97,93,101,95,103,95,97,90,94,105,98,109,103,96,105,133,109,108,101,110,92,105,104,104,97,85,95,104,97,95,97,103,110,104,94,104,114,99,92,88,91,102,95,99,95,96,109,99,99,96,97,93,87,98,88,105,99,103,101,88,105,101,104,94,94,93,91,112,100,99,120,94,113,94,106,109,94,97,107,104,96,109,106,107,85,100,100,92,101,98,93,103,101,91,93,104,103,95,94,95,102,95,106,94,119,103,101,105,96,100,72,100,98,105,101,108,109,117,98,97,108,105,118,92,99,101,96,105,90,96,113,99,95,97,106,88,99,102,106,105,126,96,93,94,104,94,103,114,94,87,95,86,97,95,98,104,105,109,85,94,99,96,113,109,103,94,105,94,95,96,95,103,117,103,109,119,113,100,104,99,101,98,94,110,99,102,106,108,84,104,136,91,114,96,98,104,106,104,98,101,88,92,107,91,93,93,77,108,97,95,99,86,114,99,102,97,103,109,107,102,100,100,93,93,106,99,91,98,98,96,93,104,101,100,112,91,92,77,108,95,101,104,105,88,101,101,97,107,104,115,97,99,97,94,87,97,94,109,97,99,100,110,99,113,97,106,106,107,104,99,90,93,106,103,106,105,106,98,109,95,93,105,98,92,94,101,100,106,99,110,99,94,105,88,78,83,95,102,113,95,88,92,95,98,102,91,105,105,94,101,106,95,100,104,98,99,91,93,108,99,100,96,95,104,112,101,97,82,88,101,99,104,90,98,107,101,103,107,93,98,105,102,99,96,98,104,104,103,96,88,105,105,118,105,94,85,115,91,94,98,104,68,99,106,98,95,110,88,103,85,92,101,91,102,94,91,104,94,94,99,106,100,97,113,100,96,94,102,107,95,104,108,95,99,98,80,107,83,91,96,91,99,111,100,94,96,90,104,97,98,97,95,106,96,99,98,103,91,72,106,94,100,95,101,99,89,92,89,100,87,95,92,97,96,87,95,94,95,107,91,107,94,102,106,99,84,95,91,91,93,105,105,79,105,83,97,104,120,98,100,94,103,97,105,97,113,96,102,91,98,108,106,93,91,95,86,95,88,98,104,100,107,95,98,82,102,105,96,120,104,99,96,97,91,105,89,102,106,98,91,94,106,105,93,93,96,95,108,90,97,106,98,105,105,109,83,106,95,100,98,99,100,103,97,94,98,106,105,80,100,100,94,103,86,96,106,99,107,90,101,96,78,93,83,106,92,100,99,111,97,109,108,102,96,95,103,89,96,111,100,95,92,116,100,98,97,101,86,104,94,96,94,96,98,94,93,93,91,104,95,97,105,92,95,86,107,92,98,96,95,99,94,104,99,100,94,99,100,91,100,106,108,83,102,107,97,121,95,101,113,101,95,95,87,98,67,84,97,98,100,90,95,108,110,102,93,104,99,97,86,110,101,87,110,102,99,101,99,91,87,94,93,108,98,103,97,104,75,103,99,90,101,99,93,103,102,94,92,95,103,97,100,97,101,93,110,97,95,102,102,103,98,92,83,111,95,104,108,76,107,99,99,98,99,113,100,108,101,114,100,103,105,91,94,93,99,117,88,87,103,97,99,98,98,91,100,96,100,102,104,93,102,96,101,115,102,93,94,96,97,93,82,94,98,105,101,100,102,97,93,94,92,108,87,96,96,98,109,96,95,110,123,97,97,98,102,88,112,95,102,96,99,101,102,96,93,91,96,81,90,110,96,95,104,107,116,91,103,113,91,100,89,91,105,95,90,99,105,104,99,94,90,89,106,105,101,93,93,94,91,102,92,96,113,97,100,90,88,95,93,92,88,100,94,108,67,108,99,96,94,102,91,102,100,100,99,94,103,95,93,85,103,94,107,100,92,92,80,110,96,92,91,95,90,101,98,99,101,91,105,98,100,100,95,103,90,108,91,87,88,102,98,99,102,112,101,98,100,97,95,97,105,98,100,109,98,90,110,106,96,105,98,89,97,93,79,90,96,99,99,89,104,106,108,109,91,97,101,105,101,95,103,105,108,97,98,100,108,104,97,93,91,109,114,91,106,104,102,103,105,93,111,104,90,100,96,100,101,113,95,104,98,110,94,94,103,98,102,102,99,92,100,104,95,105,89,92,93,91,112,99,103,114,95,93,97,88,92,91,101,116,80,95,112,97,95,92,96,96,99,100,106,87,108,95,100,98,107,107,99,96,101,99,102,102,103,95,95,84,100,94,120,88,95,102,104,106,110,90,113,103,93,92,101,94,92,107,93,93,112,93,107,93,87,91,98,95,91,91,59,106,94,100,88,92,97,89,99,99,97,97,81,93,95,104,94,104,103,91,89,96,108,102,79,84,94,92,87,104,107,80,91,94,87,103,85,105,94,105,97,106,79,92,100,102,91,84,111,98,92,97,107,97,91,102,95,92,111,95,96,103,106,96,111,94,111,108,96,102,94,100,91,100,95,78,93,101,96,85,89,110,107,105,117,97,106,105,106,106,73,103,104,110,95,90,106,92,96,113,100,98,100,93,96,100,89,90,89,93,95,89,96,96,104,99,93,98,105,105,103,88,86,93,110,96,99,93,109,100,104,93,84,106,92,84,101,83,94,100,93,106,105,102,87,95,93,102,97,112,105,104,94,98,97,96,95,104,100,94,103,102,97,101,87,105,86,94,101,94,92,98,97,98,90,106,109,97,102,95,102,96,95,96,119,101,101,101,106,92,102,99,97,98,103,98,108,93,91,100,87,109,95,98,100,97,93,102,83,92,95,104,104,102,91,105,101,89,99,99,95,97,100,101,100,98,108,101,92,84,97,94,84,111,96,97,104,94,108,102,107,87,93,102,90,98,104,100,94,95,102,90,107,101,92,95,91,104,100,71,85,99,108,101,96,106,103,87,100,105,95,98,106,96,87,116,102,101,93,94,113,85,100,93,91,100,92,110,103,94,93,103,106,106,96,107,107,98,89,122,100,98,107,92,105,103,91,100,103,113,91,108,98,93,108,76,100,94,101,108,108,116,94,108,120,96,92,93,99,85,98,102,96,100,103,100,94,93,108,104,100,100,100,95,111,98,98,108,104,103,99,104,89,97,90,89,100,89,96,102,77,93,99,90,102,94,94,88,92,100,106,88,102,107,95,80,94,102,97,98,98,80,108,94,98,107,104,91,110,92,95,103,98,98,100,107,104,108,92,92,109,91,112,108,108,94,87,83,109,93,105,110,87,94,111,100,99,76,108,90,102,88,103,108,91,89,99,102,93,105,101,98,78,113,113,113, +708.46735,97,113,95,102,97,73,96,94,108,114,95,102,106,102,99,89,103,109,103,102,105,102,105,99,98,100,119,96,116,93,94,98,89,103,106,105,99,96,101,104,92,107,110,109,105,107,86,112,87,99,100,109,103,116,106,95,98,103,104,90,95,108,110,84,102,109,113,92,102,106,105,98,98,98,97,94,96,104,95,111,106,104,109,100,94,96,118,96,102,95,105,101,111,109,93,93,99,98,104,109,117,103,99,92,92,99,91,107,100,97,99,99,98,101,102,98,96,99,100,103,110,98,103,97,105,97,106,89,94,98,103,101,112,87,102,96,101,101,76,91,101,110,98,90,103,102,106,100,107,99,90,116,104,100,98,105,99,99,99,107,102,90,111,100,107,97,92,100,105,95,87,97,88,106,108,106,106,92,104,97,100,108,103,91,100,102,99,97,103,99,96,101,93,109,105,97,104,112,105,104,95,101,106,87,101,100,108,111,97,107,98,109,106,86,89,105,96,94,110,96,102,101,114,106,102,104,115,102,96,103,107,113,104,98,108,101,139,100,110,103,94,113,108,105,95,104,103,101,101,94,101,114,109,84,89,99,99,119,92,95,91,102,87,93,94,104,94,87,102,95,111,100,89,99,106,103,88,110,102,122,82,101,104,95,93,99,99,84,102,108,100,98,104,94,117,98,108,102,95,95,109,103,104,110,108,98,92,101,105,102,105,101,94,103,100,99,109,83,120,103,99,86,105,93,105,90,97,96,95,96,109,91,104,88,107,96,105,98,98,106,99,100,95,111,101,102,105,98,108,96,113,104,93,95,105,103,103,101,109,114,100,101,106,94,98,105,90,106,84,99,128,100,107,99,86,96,107,99,100,104,97,106,103,121,103,99,102,89,104,96,105,103,87,113,109,105,104,105,106,112,96,105,110,102,108,89,104,99,98,91,100,87,105,91,112,99,98,99,103,97,97,117,91,108,95,100,108,93,95,111,92,102,96,97,106,91,89,108,100,94,118,107,105,87,93,112,107,86,114,112,103,114,95,102,97,101,108,99,105,96,101,98,99,107,100,88,106,98,105,109,103,104,93,97,93,95,99,103,98,109,114,94,99,110,88,92,96,111,96,103,104,98,105,110,102,110,82,102,98,95,109,99,98,100,98,95,93,117,102,96,87,95,98,125,104,106,105,95,105,95,104,96,107,103,90,95,98,102,106,85,101,114,109,104,97,95,107,92,103,103,97,97,90,105,105,95,102,97,99,119,112,110,116,100,78,99,92,90,99,109,102,87,87,103,92,107,109,97,99,103,89,93,110,83,92,105,102,85,104,91,92,103,101,106,106,96,115,105,94,105,104,107,94,90,110,97,103,102,96,97,94,86,100,96,95,101,76,98,94,97,105,102,106,94,86,95,109,96,96,101,106,105,96,100,96,105,104,116,100,111,112,104,105,109,109,95,101,101,101,105,100,104,98,99,97,98,111,96,112,104,99,102,82,104,109,99,91,107,103,109,109,103,101,113,100,113,101,93,98,91,107,97,100,111,106,102,109,107,105,98,102,101,92,91,101,113,96,111,100,99,101,106,104,102,105,100,95,97,108,104,100,98,96,92,104,120,99,100,100,111,102,107,99,104,102,82,99,104,86,111,99,88,108,101,95,101,106,99,96,107,83,103,100,100,93,99,104,86,109,109,99,100,104,105,101,77,99,96,92,99,106,92,96,90,103,103,88,104,104,96,98,98,100,95,94,104,97,111,101,90,115,121,112,108,104,106,88,94,110,93,86,100,109,95,91,108,102,93,100,100,99,110,99,104,82,113,111,110,105,105,93,94,108,111,86,105,99,96,110,96,112,105,98,117,109,97,94,105,101,97,95,90,103,117,102,94,99,99,103,96,107,94,96,113,104,107,111,99,100,94,102,95,111,98,101,103,99,103,93,91,98,81,91,104,92,101,101,105,92,95,85,105,96,105,101,105,95,108,111,92,101,104,105,101,82,108,104,93,109,95,98,121,96,114,91,90,89,109,106,87,102,96,108,98,101,86,101,100,99,95,91,100,96,92,102,97,97,99,101,102,80,99,95,96,98,95,96,96,96,112,95,106,114,91,98,98,90,109,99,100,95,112,96,109,78,89,97,107,101,110,104,103,97,99,97,106,99,110,101,105,100,95,121,103,104,96,99,103,103,108,106,102,77,106,113,107,102,96,99,100,90,97,105,96,90,95,100,95,99,104,109,95,100,105,98,107,96,98,101,100,93,99,107,101,111,87,84,103,101,94,105,98,103,94,107,113,104,96,96,104,95,108,108,105,95,107,99,98,109,100,105,102,106,85,105,89,115,101,104,104,102,108,103,101,96,83,91,114,107,107,97,99,102,114,92,103,97,105,92,109,96,109,96,113,88,113,104,96,88,110,95,100,99,111,111,91,98,108,103,98,110,110,99,114,109,97,101,95,109,103,81,102,107,94,91,95,94,98,93,94,96,109,97,84,87,98,96,98,102,100,95,89,90,99,90,102,98,111,112,104,109,109,94,63,105,89,103,96,84,96,95,98,107,102,95,102,84,105,107,101,101,103,88,102,91,98,86,115,100,87,102,93,96,88,87,86,113,105,99,97,123,92,99,108,109,108,106,99,102,101,95,89,98,98,97,110,99,95,106,100,102,101,109,96,109,98,92,92,94,99,98,104,92,100,93,106,115,103,108,113,95,103,97,99,92,104,80,95,90,96,95,109,94,96,96,89,103,99,98,96,97,94,96,110,95,98,101,101,89,90,113,109,91,99,95,91,93,97,89,106,80,101,96,102,96,104,92,98,96,92,97,106,109,97,116,98,99,86,91,93,111,102,105,74,98,104,99,108,80,99,88,91,88,93,109,114,83,107,90,109,103,110,104,108,92,95,95,109,85,112,91,109,99,104,95,108,112,93,97,104,95,100,80,98,114,97,101,91,100,104,101,104,93,104,99,94,104,104,68,88,80,111,107,103,110,96,104,92,101,83,99,98,110,95,113,87,102,99,110,98,96,109,102,105,102,98,104,97,85,102,92,112,95,94,88,104,111,79,91,97,85,115,94,98,94,93,96,97,104,100,101,98,126,83,109,91,101,103,91,104,99,93,99,99,100,102,86,101,109,96,94,106,102,104,96,99,91,99,103,91,98,85,98,99,100,96,69,99,102,103,86,103,106,96,99,95,93,101,104,89,90,104,99,106,94,98,104,92,97,104,101,106,97,92,98,91,91,96,104,98,108,99,94,102,110,89,99,103,90,98,101,98,94,101,100,109,105,104,94,103,92,105,108,93,92,105,102,101,105,102,102,116,93,105,110,94,110,78,112,98,90,99,102,102,101,90,107,102,90,95,90,93,100,95,100,97,99,101,93,91,95,102,100,97,99,72,91,109,104,91,94,94,89,107,95,96,101,95,94,106,62,104,97,105,95,92,97,112,92,106,99,97,98,106,96,93,99,97,99,109,97,104,106,90,95,108,95,91,107,105,100,103,99,98,105,92,104,100,107,91,100,87,105,112,113,99,108,103,105,80,92,102,88,98,103,98,90,102,75,114,87,106,100,100,87,102,92,98,104,65,110,113,118,94,100,92,103,88,103,92,108,98,107,102,101,82,102,105,103,91,95,84,99,96,102,96,96,97,100,109,96,90,96,102,83,101,120,107,102,92,92,103,105,101,91,93,96,112,104,92,100,96,93,101,95,109,103,111,107,97,103,95,116,99,96,93,100,96,111,91,100,99,102,91,100,102,94,98,96,110,94,98,96,91,87,89,70,101,98,88,92,92,106,110,88,90,107,102,95,87,104,91,122,104,99,106,113,97,92,99,100,100,104,100,98,94,96,88,94,95,76,105,94,105,97,98,87,101,111,92,97,89,104,87,100,109,93,98,101,103,111,97,105,91,98,96,98,91,113,89,99,92,111,87,95,102,94,98,109,98,80,94,85,107,89,109,87,94,92,94,101,112,97,93,95,100,93,87,102,103,94,92,83,97,98,90,84,104,99,111,114,90,97,113,100,109,103,96,93,107,102,87,84,97,104,106,87,93,104,87,95,98,99,92,97,96,90,101,102,102,105,97,81,100,104,97,92,97,94,100,100,86,101,103,95,101,98,101,102,95,109,84,100,104,104,102,94,104,95,92,91,95,111,100,101,98,95,97,102,87,106,100,105,73,102,100,93,109,92,92,94,97,102,90,114,88,103,102,83,98,103,101,87,94,89,94,106,97,84,101,102,91,88,90,92,88,84,111,99,95,91,99,106,106,87,91,99,83,100,104,91,102,109,107,100,100,91,113,96,106,97,102,100,100,92,99,100,103,91,96,90,96,103,100,108,102,99,104,89,89,106,101,115,105,98,99,106,106,93,107,90,95,102,94,83,104,106,108,97,120,90,97,95,124,83,101,77,100,96,103,92,104,110,91,92,98,90,96,99,101,105,95,99,105,114,97,91,92,104,97,101,97,107,100,89,92,126,93,98,98,117,90,101,88,109,103,104,94,100,102,88,93,81,89,94,95,107,104,101,87,91,87,100,101,97,95,95,86,95,85,104,114,110,95,97,93,105,89,92,93,99,114,93,96,101,106,95,93,87,96,94,107,98,105,102,93,105,97,99,99,94,101,98,99,100,100,106,98,88,102,95,92,98,98,91,110,94,89,101,105,91,90,91,98,97,97,106,98,95,101,97,103,98,97,91,99,85,86,107,98,109,112,96,105,94,99,93,105,103,103,109,93,108,91,92,95,101,91,102,102,93,87,104,87,93,113,90,96,102,91,105,107,107,95,102,117,85,100,104,101,100,111,98,91,105,94,103,105,109,105,106,96,97,104,92,105,93,99,108,68,93,88,90,95,115,113,87,109,83,90,100,97,116,97,105,102,87,90,105,100, +708.60864,90,91,85,97,90,79,109,98,109,104,108,97,102,92,107,97,117,105,99,102,108,100,100,108,107,93,101,82,98,117,97,103,80,105,108,105,104,85,103,90,101,95,99,93,95,104,92,117,121,106,96,95,98,108,92,112,102,99,105,91,89,97,95,101,113,106,95,103,88,104,93,98,92,100,97,105,94,93,110,104,96,103,103,99,100,94,71,103,101,104,91,91,98,90,99,96,96,97,95,103,99,102,94,101,101,107,91,106,93,88,110,105,92,75,102,101,91,106,117,105,106,101,99,102,98,102,104,87,112,86,77,115,98,93,99,94,89,96,98,100,94,109,105,104,95,122,106,95,82,110,96,94,99,105,96,95,105,96,95,92,114,107,99,109,99,99,87,92,112,67,108,118,106,99,107,107,99,93,91,114,95,103,102,110,102,97,95,94,99,103,97,103,91,103,89,109,101,101,105,91,100,69,104,110,102,94,91,97,98,99,96,96,110,106,95,98,103,101,92,106,85,86,105,86,95,102,110,101,92,95,99,97,92,110,105,110,92,104,88,94,95,94,100,86,100,96,98,105,94,98,101,100,93,101,97,95,94,101,93,97,96,86,98,100,93,113,109,103,102,103,110,90,103,96,98,105,103,114,106,105,100,105,91,105,97,93,106,104,102,110,101,98,110,103,108,106,95,98,93,103,104,103,107,106,79,110,111,104,101,100,99,102,105,91,100,102,103,104,96,101,103,100,104,103,110,98,96,83,107,111,103,104,103,101,93,110,88,97,107,99,108,94,100,97,85,112,104,103,100,106,111,93,96,107,111,106,104,111,113,111,97,92,96,99,96,109,82,105,95,98,118,102,118,109,112,89,102,97,73,102,99,106,99,99,93,92,68,101,92,100,104,93,109,100,88,111,97,102,97,117,98,100,101,98,108,91,94,105,106,85,103,97,111,102,106,93,106,102,97,99,92,124,92,116,98,99,95,92,91,117,101,90,105,93,95,94,92,96,100,109,100,103,97,116,120,87,97,85,96,106,104,98,98,105,95,104,96,108,100,97,92,89,91,99,102,94,98,99,96,110,75,107,99,92,101,98,114,104,103,107,102,99,99,95,88,96,103,99,93,92,108,102,100,105,92,98,94,108,96,95,119,107,90,116,97,96,110,91,98,97,102,98,101,86,99,100,103,85,93,99,100,97,98,103,101,83,86,106,90,99,104,100,92,91,100,110,100,96,108,102,86,108,105,101,105,88,102,88,105,101,100,94,106,90,112,99,98,98,101,97,105,105,100,103,93,90,98,104,89,104,96,96,95,99,102,94,96,90,102,103,92,88,96,93,103,93,103,101,102,100,98,99,92,99,113,100,102,109,97,90,90,88,98,101,91,86,94,99,94,94,103,112,95,109,104,94,93,104,99,100,92,88,102,100,102,90,91,95,113,104,97,100,78,91,101,115,103,104,88,97,109,103,113,106,91,78,97,116,106,108,95,101,98,109,100,104,101,100,95,100,99,104,99,106,92,94,95,96,102,101,123,105,105,94,102,98,95,101,103,100,104,104,123,89,93,95,104,105,97,92,87,106,97,99,105,101,93,109,119,96,97,94,99,109,114,96,97,103,100,114,101,92,103,91,99,66,82,103,94,95,103,84,91,95,100,91,99,98,90,111,108,94,110,100,102,83,102,101,92,93,98,92,96,90,93,94,89,107,104,104,94,87,99,95,96,93,90,91,100,98,96,110,90,96,95,88,96,86,105,94,101,107,100,91,93,100,107,97,95,97,113,98,93,96,99,107,95,102,101,92,90,94,90,99,104,93,99,89,92,111,99,105,103,95,108,98,97,102,99,98,101,93,101,97,104,108,105,77,107,98,95,101,101,90,104,101,94,106,100,95,92,110,100,98,101,95,105,103,94,86,97,96,105,88,95,96,110,95,95,96,102,103,101,101,77,107,101,87,106,97,92,98,98,103,98,103,101,95,106,102,99,100,96,97,94,99,100,91,97,98,102,98,98,109,105,114,87,94,98,103,99,106,100,101,103,97,94,62,95,106,90,113,98,103,108,105,93,106,87,91,105,112,101,109,93,92,105,90,101,96,98,93,102,103,90,96,86,101,98,100,94,107,97,112,91,101,112,105,98,101,111,100,97,93,101,91,123,106,90,104,90,114,105,96,98,81,99,93,96,102,95,96,104,96,101,96,91,102,87,100,100,90,96,99,92,98,99,102,91,91,98,83,93,108,86,102,97,93,92,100,96,104,103,96,101,97,104,96,101,111,106,92,98,93,109,104,96,115,85,101,92,101,99,92,102,97,106,92,88,100,100,102,90,94,94,94,92,85,101,105,117,109,103,114,98,97,106,114,85,96,93,109,96,88,104,109,97,106,120,102,98,112,104,107,94,90,101,101,99,103,101,103,95,81,100,97,97,118,87,90,99,87,103,103,113,97,94,105,100,97,91,96,100,98,104,96,104,92,104,101,104,97,99,85,108,98,90,100,101,108,96,94,102,103,108,100,124,104,102,91,93,101,94,102,108,101,96,104,105,101,101,105,88,99,100,102,87,108,102,99,115,105,114,92,107,95,101,99,105,88,95,94,92,100,85,104,94,124,108,88,120,96,102,88,93,82,117,84,97,95,92,85,105,88,98,112,106,96,92,103,100,102,100,93,96,97,99,101,112,98,102,99,99,106,97,102,108,98,72,97,100,106,102,101,98,99,104,107,100,105,99,104,102,95,97,105,109,102,97,108,98,109,84,106,106,95,98,102,95,95,88,115,105,97,109,99,89,100,96,95,89,97,91,114,105,97,110,102,101,99,99,101,106,96,92,97,115,95,105,91,91,107,91,73,99,121,101,101,109,96,101,102,101,109,107,111,106,106,94,101,101,106,89,98,84,92,102,105,98,100,96,88,103,106,96,100,91,91,102,99,102,102,101,95,102,95,101,104,97,106,102,111,100,106,91,101,116,108,86,91,87,106,90,65,100,109,101,102,97,103,115,111,91,107,104,93,72,99,102,102,99,91,99,98,100,105,95,104,94,102,104,93,86,100,100,99,104,100,100,104,103,116,87,107,101,102,95,117,105,98,95,109,87,104,95,94,89,101,96,92,94,96,99,94,95,100,99,109,101,98,95,105,95,96,103,102,105,99,101,100,94,92,77,105,95,99,108,102,102,95,93,95,87,92,101,102,129,103,105,102,89,97,99,95,105,93,104,95,79,103,112,101,108,97,94,86,97,93,110,107,96,103,100,108,106,96,108,99,98,85,97,99,92,101,104,88,103,99,95,98,91,95,94,102,100,96,98,98,109,92,102,104,96,105,113,97,98,102,106,83,87,93,98,88,93,112,87,113,91,98,111,103,100,102,91,97,96,93,87,101,91,92,96,102,105,102,95,100,100,105,111,85,108,109,83,103,99,110,101,102,94,101,96,103,84,107,98,107,103,102,94,93,91,103,86,105,102,105,94,89,119,96,104,102,96,100,92,102,88,93,102,105,91,120,97,81,104,98,103,98,95,87,98,111,102,95,111,111,94,96,102,94,90,104,113,107,98,93,97,111,113,105,106,96,90,104,101,105,102,96,98,94,75,88,96,100,99,108,105,97,94,102,95,94,91,90,101,106,90,103,98,97,105,98,107,107,90,107,85,108,97,103,98,116,103,96,91,110,102,95,110,95,90,101,104,103,90,99,95,80,76,92,106,95,87,107,103,101,98,98,103,106,97,63,109,94,107,95,108,92,100,100,94,94,99,100,113,116,128,93,95,92,99,116,92,99,116,99,92,102,93,96,106,109,108,104,91,111,88,106,107,94,107,99,110,91,97,104,99,100,98,81,96,96,83,96,84,104,97,82,99,104,94,106,96,93,103,99,99,97,92,94,91,91,109,93,108,78,104,108,91,104,89,97,95,108,102,101,99,95,99,99,102,101,96,103,98,88,105,97,85,100,80,104,87,93,112,109,102,93,101,94,107,104,96,98,96,101,90,101,100,102,92,112,96,91,101,98,98,105,108,108,104,104,108,101,108,95,105,108,104,102,105,121,107,106,101,101,98,98,96,96,111,93,92,99,97,105,87,105,98,90,94,109,90,105,97,94,105,99,100,105,91,100,94,106,108,93,87,98,95,79,99,102,102,101,100,87,108,99,104,101,96,102,104,101,101,97,96,95,96,70,98,95,96,103,98,93,104,101,100,118,102,103,107,94,96,114,102,92,99,99,101,102,91,93,107,107,112,98,101,100,103,91,94,97,96,100,96,77,63,97,116,99,98,99,104,97,77,108,99,100,89,96,96,102,102,98,96,98,100,87,102,101,111,103,98,109,94,98,91,95,109,95,118,95,96,93,101,104,97,104,93,116,83,84,102,96,101,107,87,113,108,110,98,103,111,102,95,117,108,95,97,95,92,91,97,105,112,96,107,96,104,99,96,108,81,89,109,114,95,102,109,91,95,100,80,96,103,99,91,87,112,114,104,97,99,95,95,100,101,88,91,105,112,76,99,100,100,105,91,89,91,106,104,101,103,106,100,102,99,104,95,95,96,98,97,93,105,111,102,102,105,113,108,108,93,102,84,106,107,84,94,98,104,98,94,102,107,99,92,101,108,102,80,100,109,114,101,97,100,97,96,96,104,96,96,96,98,97,103,98,91,96,96,101,103,81,97,100,102,96,100,94,110,119,113,109,101,100,100,100,94,101,95,102,101,98,124,104,86,102,93,113,103,103,104,104,107,109,104,100,105,109,103,110,89,91,98,117,104,98,101,96,108,105,98,89,117,107,104,109,103,105,108,87,96,100,110,97,99,80,115,107,101,91,97,98,101,95,105,93,87,77,97,96,98,94,100,95,86,100,96,100,94,100,98,114,110,104,106,108,93,100,93,88,103,96,85,109, +708.75,100,91,121,93,100,87,102,106,106,98,96,99,102,106,84,88,84,92,101,103,108,106,108,111,97,110,104,117,107,96,77,95,109,100,114,116,96,106,92,113,101,101,135,100,99,104,94,113,92,87,99,96,92,90,86,89,106,93,110,95,93,95,99,94,87,92,92,110,98,98,95,98,94,90,88,103,101,94,100,107,98,90,108,106,90,101,97,92,93,95,91,96,95,92,103,81,91,97,106,99,96,96,103,98,98,65,100,108,98,97,99,101,105,103,90,99,106,99,94,95,111,101,103,104,96,97,106,88,109,94,88,104,102,97,99,95,100,81,105,91,97,107,97,101,92,102,102,106,96,96,98,117,101,98,98,103,72,88,108,99,106,95,108,98,108,100,102,97,97,96,92,108,102,99,102,97,99,98,110,105,94,109,108,96,91,93,101,92,109,97,90,108,84,96,87,104,102,98,92,94,104,99,86,96,85,111,110,112,96,105,102,111,114,106,100,101,102,105,106,111,101,116,101,98,107,95,96,91,109,108,88,104,99,98,106,96,105,99,106,103,115,101,97,97,104,105,99,108,97,102,99,86,87,106,104,100,95,100,94,101,95,94,96,101,87,98,103,102,98,105,104,98,91,96,110,101,102,102,94,103,106,69,86,108,92,112,104,101,101,103,103,93,109,103,105,98,94,94,101,101,89,97,94,106,98,102,114,109,100,106,83,109,103,81,87,95,95,104,99,92,84,94,116,103,96,94,93,82,109,109,111,95,102,98,96,91,101,101,97,103,91,99,104,96,103,106,113,99,111,110,103,98,88,97,107,99,96,104,105,109,110,100,94,101,98,96,90,103,105,111,99,89,100,105,105,90,95,97,98,105,108,114,113,112,93,104,98,103,97,101,96,112,101,105,96,95,98,100,103,102,91,92,93,98,103,99,110,97,106,100,102,100,96,84,91,88,102,123,104,111,123,97,95,101,108,98,98,116,95,104,82,102,106,95,95,92,95,99,102,99,106,101,88,103,99,94,97,75,106,109,84,102,103,99,107,108,95,108,108,98,92,99,100,97,95,97,98,87,109,101,97,102,111,93,99,95,100,104,90,104,86,95,112,103,97,103,102,107,98,100,103,98,108,95,94,102,90,90,90,80,112,100,106,103,99,111,79,104,71,98,92,96,95,89,98,102,100,97,116,96,91,98,100,109,101,100,118,113,98,99,100,98,97,90,97,92,104,95,95,92,89,97,99,95,108,108,98,93,100,103,105,113,95,101,82,96,101,94,100,95,102,101,99,104,118,107,112,100,121,103,101,88,99,88,115,92,106,103,97,101,97,100,100,95,113,106,100,104,98,92,99,92,118,95,109,109,92,95,106,104,106,98,95,102,91,96,97,111,94,109,88,86,103,115,102,95,107,103,102,108,102,92,101,93,95,92,90,98,105,92,90,111,100,100,95,88,99,89,100,99,110,98,85,92,103,95,93,87,102,105,101,97,106,110,97,100,115,96,101,104,103,108,96,109,91,96,103,101,102,100,96,91,102,101,98,94,99,104,104,94,106,107,102,92,96,100,87,100,94,100,103,98,94,103,107,94,99,103,102,85,98,98,98,90,83,89,100,98,105,99,101,87,88,94,99,90,96,106,98,100,96,90,111,104,104,96,95,87,101,109,108,100,99,95,76,112,109,87,108,103,95,95,110,103,100,100,109,94,105,96,106,102,93,98,95,96,89,90,98,103,89,102,105,107,97,103,92,101,103,86,101,97,109,107,98,98,110,99,113,103,75,101,99,104,100,106,99,100,94,95,80,102,104,102,102,101,89,109,108,108,80,79,82,101,83,123,101,111,102,99,115,108,95,108,100,96,117,104,104,109,113,111,104,80,102,95,99,93,99,106,92,106,103,105,102,112,108,100,105,110,103,99,96,110,96,96,104,96,99,104,98,99,109,95,102,108,108,88,99,104,104,92,97,100,113,95,96,90,113,89,100,99,100,99,90,98,99,91,95,91,90,109,83,99,101,86,95,120,114,96,107,107,85,109,107,103,89,97,105,96,96,107,101,113,90,92,107,95,83,97,117,103,104,106,103,99,98,101,98,101,107,83,106,105,110,90,98,96,91,99,108,106,102,96,99,92,88,100,100,99,94,100,105,105,108,105,96,102,100,109,87,104,104,108,99,103,96,104,104,99,95,98,89,94,128,99,97,95,100,110,110,100,100,102,102,99,94,96,104,102,108,100,94,96,110,92,78,102,97,99,113,112,101,101,96,91,99,95,96,91,101,94,92,99,100,104,83,114,86,102,92,102,94,100,95,112,104,109,100,91,104,110,75,95,104,97,104,91,98,94,85,106,105,109,101,88,107,94,97,95,108,96,107,113,103,96,99,96,105,97,99,108,101,84,99,84,110,98,94,97,92,109,97,105,95,92,91,95,95,109,93,115,104,97,87,95,93,105,92,96,98,102,99,121,100,110,102,101,99,113,105,112,104,97,99,102,98,102,91,109,103,107,102,105,102,106,101,89,99,109,108,97,106,115,103,95,99,98,104,102,104,101,101,101,100,99,94,107,101,96,107,104,101,95,100,106,104,109,90,106,102,104,97,104,102,83,106,93,111,103,113,87,112,98,100,110,99,100,110,93,92,104,101,110,111,110,100,115,103,91,94,103,96,98,98,79,110,90,98,95,95,99,110,102,93,117,117,108,102,101,91,100,91,112,90,109,105,101,94,71,108,100,102,105,102,100,107,118,91,102,103,99,105,102,104,99,96,104,95,98,97,101,95,112,100,96,97,97,79,98,98,100,94,106,114,94,102,98,105,112,93,102,97,100,87,95,89,109,103,99,106,117,93,101,105,95,96,94,100,108,98,104,101,114,109,108,98,96,102,100,99,88,94,103,98,96,96,89,100,104,99,97,116,102,99,99,102,92,96,95,95,107,100,87,109,80,104,103,105,102,92,98,100,101,97,101,105,109,108,90,101,109,100,101,106,114,99,97,107,99,93,98,106,115,102,94,114,115,102,93,106,131,94,109,113,106,102,76,103,113,101,110,96,109,96,98,104,91,108,99,94,113,91,109,95,101,98,101,98,83,99,105,103,87,96,103,100,109,100,102,109,95,100,108,84,99,100,93,96,97,104,99,98,110,101,108,92,100,119,95,94,95,91,124,136,112,105,103,99,105,102,93,87,94,100,84,106,100,113,107,96,98,93,98,109,99,95,109,96,94,103,99,96,102,90,104,107,101,113,109,103,96,90,102,109,95,108,107,101,101,96,97,105,90,102,105,101,103,95,99,98,101,107,84,101,103,83,105,93,87,109,92,96,108,100,102,94,92,107,98,71,103,106,103,95,97,101,106,110,120,101,76,109,99,98,88,96,112,96,95,103,95,94,99,108,96,99,105,95,107,105,93,96,108,81,87,103,93,105,95,95,103,88,105,92,93,106,113,98,94,96,99,98,99,91,96,103,111,84,88,99,129,106,106,96,95,100,88,86,93,102,100,105,103,104,112,105,99,100,100,91,95,97,98,101,92,107,86,101,100,97,106,105,102,104,101,98,95,95,100,96,94,102,103,96,102,105,98,110,89,90,102,100,97,99,101,97,101,100,89,84,89,100,102,88,105,109,92,89,96,91,109,96,97,102,110,94,92,87,104,91,98,97,105,96,97,101,105,94,98,105,103,108,105,111,89,93,102,98,109,94,94,91,107,103,101,103,104,113,103,99,92,99,107,95,95,110,90,101,100,94,99,94,112,99,102,105,103,90,94,102,94,102,95,103,102,103,99,102,98,97,113,99,103,105,98,105,109,104,94,102,95,101,94,89,98,104,111,104,85,101,101,105,101,95,109,98,100,94,92,101,100,113,105,100,106,111,99,97,105,99,95,99,102,95,81,100,91,96,89,101,96,96,95,101,71,90,100,100,102,96,106,101,103,99,102,102,101,104,91,105,109,103,104,85,101,95,82,98,101,99,102,99,103,115,91,103,96,95,96,91,97,102,115,101,105,97,106,92,98,103,96,101,101,109,123,89,101,104,116,98,102,97,95,102,102,87,73,91,96,99,94,107,113,72,86,102,103,98,98,89,103,99,113,102,100,91,99,102,106,102,90,100,101,111,100,105,93,99,92,100,90,98,109,87,105,110,103,103,93,107,97,98,98,104,97,91,108,102,91,94,109,85,102,113,106,110,109,102,108,105,99,110,93,115,97,93,91,90,98,104,97,92,98,99,94,97,95,101,103,94,100,94,104,94,105,96,94,84,104,104,108,110,99,104,95,96,103,95,102,103,109,104,109,87,109,84,104,99,102,112,91,103,90,98,103,113,111,104,101,94,94,96,105,94,102,96,106,95,100,95,100,117,93,110,103,107,106,104,97,87,88,98,83,87,102,105,96,104,102,94,93,101,97,96,99,113,106,109,104,98,99,113,104,94,98,83,101,103,103,107,100,97,111,103,100,84,105,103,92,96,84,105,102,99,94,131,100,101,94,109,125,93,98,93,103,111,98,94,105,94,92,107,91,97,107,111,117,104,91,108,100,101,115,100,103,91,111,100,102,109,103,104,97,95,107,109,115,97,99,108,98,104,113,96,103,108,99,107,98,102,101,114,96,106,96,93,119,96,104,102,103,105,92,103,91,103,94,113,110,91,86,110,106,99,115,105,92,115,105,100,98,103,101,84,101,99,94,100,108,87,93,108,99,100,108,109,91,77,89,105,92,102,92,105,108,108,100,100,88,100,80,99,92,98,95,101,110,98,109,111,95,87,104,99,93,98,90,94,99,96,112,104,103,79,101,92,91,94,107,113,124,102,102,104,97,108,124,98,104,86,109,107,91,101,89,104,116,118,106,99,86,91,99,101,106,111,105,102,83,94,88,99,95,92,102,102,113,97,102, +708.89136,123,113,85,95,107,91,112,98,96,104,103,101,100,102,93,121,106,87,97,98,90,105,98,95,96,101,110,114,100,101,101,108,81,98,100,104,116,94,101,105,98,106,97,106,98,113,108,95,86,103,95,90,99,114,111,110,101,101,106,96,102,106,106,92,92,97,90,113,102,92,119,107,98,97,99,104,116,87,98,108,106,102,94,102,93,85,113,77,104,95,103,90,102,106,99,99,95,100,99,97,98,94,111,103,100,111,91,95,108,98,91,93,106,103,117,96,95,90,94,101,99,105,98,120,100,108,104,107,97,93,97,125,94,115,96,90,97,100,94,98,101,103,93,96,98,91,102,96,97,94,104,113,110,103,103,96,91,90,95,100,87,104,101,97,96,94,94,95,104,94,99,102,90,102,105,104,107,96,109,107,106,98,89,108,101,87,117,86,102,96,107,113,96,108,95,117,87,104,97,111,89,101,76,91,100,104,105,99,113,98,109,102,103,111,95,113,106,106,86,108,91,104,96,109,91,102,102,88,100,94,93,102,95,98,88,107,95,109,101,102,90,97,97,108,99,99,97,95,108,107,102,100,103,98,92,90,96,104,90,91,101,107,96,104,80,91,96,100,102,97,101,94,105,93,105,113,88,109,102,112,92,102,92,87,107,98,98,114,98,95,89,118,105,105,117,97,97,106,114,111,111,93,95,105,92,93,103,106,95,93,92,107,91,105,115,104,92,101,96,107,108,86,101,96,102,100,105,96,106,90,97,100,104,94,102,95,106,101,93,91,100,98,90,91,88,99,82,96,106,104,97,103,99,95,105,108,110,96,94,89,106,95,92,98,96,99,93,95,97,90,111,96,101,99,95,102,93,109,93,102,100,95,97,104,116,104,93,95,96,86,99,96,93,108,93,91,100,99,105,90,97,103,99,93,101,97,98,87,94,94,79,84,103,103,105,113,108,103,100,92,97,102,88,105,96,101,79,85,101,105,95,103,104,98,94,111,93,98,88,100,104,104,92,111,78,119,106,92,108,113,101,100,96,110,92,100,105,85,111,96,95,94,104,106,96,104,101,108,105,100,84,106,117,95,110,103,110,112,98,92,87,104,98,101,109,97,99,115,84,100,100,98,96,102,104,92,113,114,97,108,98,101,95,87,93,103,102,105,112,100,104,100,104,90,109,97,116,104,93,83,102,95,98,99,114,94,122,103,94,102,108,104,109,100,99,104,104,84,104,95,100,101,104,96,97,96,108,97,98,110,104,114,95,100,104,96,105,104,97,108,90,101,113,94,95,109,110,94,99,113,97,97,94,93,102,103,97,110,115,104,107,88,102,90,101,106,106,110,101,92,97,112,79,99,96,108,100,116,107,103,86,98,103,110,117,76,103,101,102,97,104,100,102,91,97,103,97,105,103,102,99,105,96,91,105,103,92,98,107,108,99,93,94,100,103,96,99,91,117,100,97,108,104,92,102,93,98,93,102,112,79,106,101,113,102,96,95,102,92,106,103,101,100,101,96,69,105,107,94,98,96,99,102,96,101,109,99,95,115,96,100,102,98,91,95,95,100,95,106,110,93,101,103,104,122,94,104,104,101,99,97,95,88,99,105,112,110,103,95,101,109,91,105,105,101,102,115,104,106,105,109,97,98,90,87,94,77,100,104,112,105,105,95,85,96,99,97,93,93,100,101,99,106,97,106,109,98,96,94,100,113,99,98,100,108,117,96,83,100,113,106,117,94,102,104,100,67,102,101,91,106,99,97,98,100,98,114,113,101,91,90,92,109,102,107,100,109,103,99,109,97,106,100,104,89,102,101,110,97,109,104,107,82,102,94,100,106,97,106,106,109,73,96,99,105,107,99,103,103,97,115,109,80,105,102,109,99,114,101,93,97,101,95,95,89,120,110,98,109,109,96,91,101,92,108,91,97,101,95,93,113,98,110,102,94,101,84,95,96,100,93,106,91,96,101,103,99,102,103,99,104,96,94,102,100,107,96,101,101,97,101,97,104,94,105,99,95,84,94,97,87,94,96,99,102,97,102,105,88,109,96,98,104,98,100,95,110,93,96,100,88,109,94,101,96,95,96,94,91,104,97,106,124,89,76,110,101,94,103,87,97,101,103,95,98,98,97,84,94,95,106,109,108,91,105,105,111,97,93,111,95,102,105,100,100,113,108,97,102,108,110,110,102,98,92,99,96,92,112,101,99,105,92,101,105,102,111,105,105,105,108,95,113,87,91,95,100,96,88,91,95,104,100,103,98,102,91,108,110,100,105,100,94,108,100,102,111,100,111,101,100,99,98,120,105,104,98,90,98,101,92,104,113,86,95,107,87,101,109,108,111,103,102,91,97,87,99,104,101,105,98,106,99,111,100,63,100,99,99,124,112,107,100,97,100,103,100,112,110,88,101,103,116,104,85,101,98,95,101,107,93,95,97,92,103,112,114,103,103,100,95,93,94,99,104,110,87,90,114,102,101,97,95,93,92,93,109,108,102,96,97,96,101,94,85,104,95,91,105,117,99,108,101,107,97,105,90,90,92,104,91,99,86,94,133,90,92,93,98,100,98,100,101,98,102,115,109,105,91,102,88,80,86,105,92,85,107,102,103,106,92,104,112,96,100,101,109,84,107,98,124,96,95,98,106,97,98,98,96,105,101,102,100,105,98,99,106,111,103,95,93,95,99,96,96,98,107,97,93,98,99,99,109,106,102,113,107,103,101,94,99,109,104,97,95,104,91,107,85,95,101,91,97,93,100,96,107,99,109,102,96,102,102,105,100,98,98,103,87,94,94,97,99,102,89,109,93,97,99,95,104,87,98,91,98,102,98,106,94,108,96,102,97,105,101,93,100,91,104,102,98,103,103,97,91,99,109,96,103,98,98,98,100,107,95,87,99,101,97,108,97,107,111,88,101,75,92,94,98,107,97,94,96,109,90,106,94,85,100,104,101,107,93,97,89,94,88,110,99,97,94,90,99,97,89,102,91,100,97,101,106,105,110,97,98,104,98,97,99,80,98,98,85,105,91,99,95,97,83,90,95,101,106,92,87,99,101,90,88,96,99,96,107,92,91,106,94,79,98,96,100,100,87,89,107,102,110,90,102,112,102,105,87,94,94,96,113,100,87,94,103,91,101,108,109,97,93,100,78,91,110,83,110,93,78,89,98,105,103,100,100,128,100,93,83,87,99,112,113,101,97,95,87,106,83,92,103,83,105,72,78,102,105,97,106,97,84,97,110,108,94,105,98,97,104,95,101,110,101,101,106,99,87,106,95,94,91,103,105,89,98,92,94,92,99,103,103,109,115,113,103,112,91,101,110,101,100,97,73,109,98,102,105,92,122,94,106,101,101,102,88,127,96,93,87,94,101,94,97,101,97,96,97,94,103,108,94,105,99,107,93,109,91,105,104,108,112,97,103,92,105,96,106,103,113,94,92,109,95,94,89,98,91,99,97,93,95,108,96,113,101,98,110,104,96,88,89,106,108,99,103,97,93,105,103,110,98,94,96,122,102,111,90,105,103,97,110,96,94,101,109,99,90,108,97,97,104,103,102,94,87,101,84,109,95,96,104,98,95,98,85,106,100,88,100,87,91,88,102,97,89,113,105,102,103,100,89,79,109,100,102,106,101,100,100,98,110,104,102,102,88,92,97,102,102,101,96,108,101,92,102,99,120,94,72,90,104,116,103,98,106,95,95,85,124,100,102,102,94,100,101,107,86,104,88,101,110,88,99,102,97,101,83,92,94,125,99,85,102,95,104,90,83,106,99,85,105,92,109,97,85,100,112,99,111,95,96,100,95,100,93,111,97,98,100,96,110,102,92,101,99,91,98,94,96,99,106,97,116,96,97,98,103,100,87,91,100,95,106,102,101,91,96,90,105,89,95,89,92,104,99,90,99,106,105,95,99,109,95,97,99,93,103,94,99,84,107,97,97,97,99,98,104,101,102,100,97,86,76,102,98,105,92,105,114,96,91,115,83,112,105,88,112,102,114,100,76,92,98,93,108,107,107,103,98,97,108,104,100,96,105,100,91,86,101,112,96,107,84,98,93,96,98,96,101,117,100,96,103,107,100,99,89,93,108,93,96,109,92,100,102,92,101,99,110,99,105,107,100,100,95,97,95,84,100,106,101,108,108,79,101,94,87,90,100,97,116,102,86,104,110,99,96,94,101,106,88,106,107,95,106,99,86,102,102,106,99,109,106,84,104,113,93,85,98,104,116,91,103,103,104,89,95,84,105,98,115,103,97,109,97,97,107,94,97,102,103,99,88,100,100,106,109,81,98,96,105,106,104,105,107,90,117,97,104,87,97,96,102,90,97,97,99,100,95,103,89,99,98,99,83,107,100,104,93,100,97,112,108,101,88,89,100,111,86,93,102,98,95,101,80,92,104,101,97,99,96,100,104,92,102,83,90,93,105,103,85,88,97,97,96,112,107,88,101,107,97,105,113,109,94,91,99,97,97,101,95,104,87,96,97,106,101,98,101,110,103,98,109,87,103,100,106,102,98,106,92,105,99,100,101,115,88,98,104,105,109,86,96,92,103,90,93,98,98,107,98,102,94,96,100,92,96,106,111,95,113,113,93,112,105,104,100,99,91,107,114,103,105,96,112,88,106,92,113,91,104,72,112,105,98,105,89,106,95,98,105,90,111,98,100,102,102,77,102,111,92,104,102,97,108,106,104,103,108,103,109,95,92,77,97,109,96,107,100,92,107,99,94,105,113,87,93,101,99,94,93,89,95,101,99,91,91,108,99,103,97,108,103,104,89,95,99,103,101,110,91,97,107,97,98,96,93,99,110,100,80,90,109,83,111,125,88,102,102,92,89,102,101,101,99,93,95,95,105,100,99,105,92,106,96,89,104,116,98,102,118,107,105,108, +709.03271,107,88,113,85,107,97,99,85,108,102,91,93,100,94,87,95,101,110,99,106,92,94,93,93,104,91,102,108,99,101,113,99,98,89,107,106,121,105,107,101,92,106,89,84,92,104,105,97,98,91,99,98,100,108,95,92,98,96,101,107,109,98,108,80,95,109,91,102,100,104,98,113,90,109,101,108,108,99,94,109,99,94,114,105,95,96,103,99,112,98,103,99,108,108,97,99,89,92,99,96,103,100,103,110,94,87,96,102,97,97,105,115,109,110,96,91,101,103,103,102,99,111,80,107,99,99,101,93,105,94,97,100,88,96,110,105,105,102,102,91,95,101,98,95,109,102,94,96,93,101,99,96,100,87,105,101,94,95,100,102,105,95,85,108,104,91,97,98,103,100,102,117,100,97,101,97,105,92,79,106,101,100,83,109,97,100,104,97,110,100,92,109,101,105,93,88,108,94,93,80,95,101,103,99,100,96,100,95,92,114,71,96,102,109,107,101,105,95,102,103,108,107,94,95,96,105,102,94,101,106,96,87,93,100,104,99,87,104,105,95,102,98,101,99,104,101,96,109,98,104,95,91,102,107,109,101,98,111,91,96,101,98,94,104,96,105,107,94,94,104,98,108,104,100,102,108,97,109,98,99,96,94,100,101,106,89,87,96,108,98,98,109,97,100,98,94,101,107,101,105,105,89,76,105,84,113,76,106,100,102,97,107,117,94,106,101,106,92,98,101,103,103,105,100,95,101,90,112,101,109,120,88,103,92,122,91,101,101,100,97,101,105,90,84,94,101,113,112,109,98,112,98,109,103,85,96,103,105,110,108,94,95,103,103,104,109,106,108,98,102,111,105,107,101,97,90,128,95,94,91,88,112,96,105,104,101,98,102,94,95,107,99,91,108,94,92,99,103,95,106,98,85,103,107,109,98,104,100,101,96,86,103,106,96,97,86,95,98,99,106,91,106,105,103,100,86,91,104,91,112,110,103,104,91,96,101,109,113,102,103,100,99,105,101,106,105,93,94,96,100,83,97,109,114,109,99,99,101,105,101,105,108,102,100,110,109,87,99,106,106,102,109,92,103,104,103,103,93,92,98,95,107,105,89,86,92,101,105,107,92,90,104,98,96,96,99,107,98,97,98,115,106,98,106,98,104,102,89,109,92,112,109,94,93,102,109,90,106,91,101,106,101,94,113,108,100,103,97,106,103,95,110,112,93,108,109,109,102,101,110,104,104,100,109,104,105,105,90,105,106,108,104,110,105,94,94,95,98,101,106,100,98,105,104,93,100,112,97,111,101,91,90,92,101,102,113,100,108,91,103,109,96,110,104,102,102,110,99,102,94,107,112,118,102,105,103,97,106,105,99,103,98,104,108,102,99,99,108,110,90,89,101,97,104,101,100,106,99,90,90,106,105,110,98,108,101,103,100,102,100,92,98,90,101,105,103,103,95,102,112,92,106,121,105,98,95,108,93,101,109,101,100,95,105,93,101,111,107,96,97,96,96,105,105,88,92,103,111,101,104,99,103,91,97,79,99,104,90,98,97,96,104,103,97,98,92,104,101,103,94,113,104,103,103,108,87,85,104,108,90,99,95,97,117,94,137,113,106,102,92,103,106,100,100,94,94,101,101,105,101,108,103,111,103,88,97,103,93,100,111,110,102,85,90,96,98,99,104,117,104,99,95,89,98,107,98,110,93,107,104,106,103,92,94,93,96,96,92,102,108,105,109,87,103,104,107,94,106,100,98,101,105,104,95,99,100,126,100,106,98,100,113,116,111,104,99,100,94,102,102,116,105,86,105,101,107,96,104,95,120,97,101,102,101,94,99,114,101,105,105,94,97,104,105,102,106,107,91,84,97,102,93,98,104,103,101,108,91,89,96,113,90,110,100,98,100,104,97,103,103,115,116,100,95,102,107,102,109,91,96,102,91,94,94,91,101,93,100,104,100,100,102,99,100,97,101,90,99,108,118,88,96,98,80,99,87,103,110,91,103,96,98,104,76,94,84,104,103,99,101,115,125,93,109,103,99,105,101,99,102,101,98,98,100,106,101,100,103,106,98,99,97,112,86,107,108,95,87,87,105,100,97,96,104,109,98,109,96,105,95,101,106,95,101,92,108,94,115,96,101,94,97,100,101,90,101,95,94,103,115,101,90,106,121,90,90,100,96,107,102,117,98,109,97,118,89,100,116,108,92,109,101,95,96,95,99,106,103,109,104,104,102,104,93,102,105,101,86,95,85,100,97,96,85,65,118,96,101,96,100,102,97,108,98,98,100,101,110,91,129,100,116,96,107,110,99,103,117,108,111,72,99,95,105,105,99,104,93,84,102,107,99,102,101,101,99,119,95,92,93,95,109,107,98,103,101,106,101,99,103,92,101,118,103,88,101,95,106,95,97,95,102,99,100,69,104,98,96,98,90,96,113,125,96,94,100,102,90,96,79,99,109,92,90,113,102,90,85,115,105,104,91,111,93,95,104,83,102,105,93,96,80,120,100,97,111,95,95,100,101,87,85,84,90,68,95,94,99,89,101,92,93,104,104,99,94,100,89,102,96,112,111,95,98,88,101,100,97,104,93,88,98,98,102,97,111,100,111,101,98,102,109,109,97,100,104,100,91,95,89,98,91,99,94,108,103,96,97,102,100,97,93,103,93,93,98,98,90,94,100,96,92,102,90,100,105,107,99,87,95,98,98,105,106,111,100,106,86,106,102,90,93,95,112,96,112,101,103,112,101,85,116,83,102,121,91,103,107,87,96,101,95,98,87,97,94,99,75,105,111,98,107,85,100,101,97,110,102,99,102,97,98,101,97,87,100,111,96,95,94,91,107,98,113,101,72,96,99,107,99,113,93,98,112,104,88,94,109,103,107,101,106,100,99,106,101,106,98,98,101,102,100,103,110,79,98,105,79,95,101,91,101,96,96,98,96,118,96,116,106,96,105,92,110,96,100,95,95,125,102,93,97,99,87,91,106,95,106,112,103,100,98,98,97,83,109,101,93,106,87,105,102,98,100,104,98,109,108,90,89,91,91,90,91,99,88,101,102,98,87,97,110,91,93,90,89,101,106,97,102,101,102,98,92,109,100,96,93,97,77,105,97,101,112,98,92,80,101,100,102,94,97,101,97,94,106,101,103,100,99,94,90,96,90,98,95,93,93,95,104,105,114,97,97,101,88,99,108,105,108,108,96,102,88,95,88,89,92,100,102,90,89,85,96,91,97,95,95,96,126,100,95,114,116,92,106,97,103,106,93,104,88,83,95,96,100,91,106,103,86,91,94,93,114,95,107,106,98,82,78,91,106,98,85,93,112,103,83,92,104,102,104,97,101,92,106,102,87,87,97,109,96,95,104,103,98,91,95,94,99,94,90,87,112,104,97,94,94,105,90,95,96,100,109,104,86,96,104,97,96,97,104,98,99,88,119,98,112,72,97,102,102,106,104,93,101,97,94,92,96,95,101,96,100,98,106,101,106,103,93,101,95,91,104,109,94,99,100,104,98,94,96,85,106,103,95,102,70,104,110,95,96,98,99,87,102,100,92,101,104,96,95,90,98,101,95,95,89,102,110,98,98,98,109,99,108,109,97,102,110,104,90,110,99,100,98,100,107,98,108,98,109,104,93,99,102,95,97,96,95,93,102,104,99,89,91,98,104,99,93,100,103,95,87,94,88,98,98,107,94,100,94,105,97,103,89,96,96,115,95,98,75,90,96,99,98,100,106,90,94,87,116,91,94,98,108,91,107,106,94,108,98,90,100,96,96,91,85,104,116,88,105,97,99,104,99,105,110,111,109,105,97,110,85,99,109,100,88,72,91,90,102,99,107,99,105,90,114,90,106,110,97,99,87,93,106,102,99,98,101,85,93,101,99,94,97,103,104,90,98,101,86,113,97,106,95,99,93,102,94,97,100,103,104,96,99,116,100,102,103,94,108,91,104,94,110,99,87,95,88,88,111,105,95,103,106,97,95,92,91,100,105,103,96,110,94,95,101,121,90,110,90,102,95,95,107,113,84,97,101,98,108,97,97,108,114,95,101,105,95,101,108,99,99,93,132,101,97,94,90,91,120,95,116,133,97,105,98,106,104,105,93,91,99,109,106,105,91,92,97,94,93,99,102,99,100,103,101,99,100,109,93,111,84,100,101,107,100,95,101,91,101,111,97,95,98,102,90,92,98,105,106,92,103,92,100,97,105,98,105,99,103,102,92,99,98,116,102,111,103,98,109,100,92,93,100,100,98,104,100,89,99,110,97,101,113,97,107,80,91,95,98,105,106,104,98,100,92,100,116,95,102,109,101,110,98,91,99,99,96,109,107,95,100,92,86,93,107,96,101,93,101,101,112,92,82,109,80,113,109,90,105,103,104,98,88,95,92,95,102,97,105,98,110,94,99,106,109,90,93,107,101,97,95,99,88,97,112,108,98,107,100,97,88,99,79,91,99,108,94,95,101,99,99,96,89,109,97,90,88,94,102,112,101,95,112,103,99,114,98,88,100,100,112,105,97,99,110,94,100,93,102,101,106,95,106,105,97,88,118,91,97,97,88,94,112,102,100,90,94,96,88,98,84,96,74,111,101,100,100,97,102,98,109,101,102,107,92,83,110,80,83,94,113,105,112,105,109,97,96,101,95,105,87,111,85,102,100,104,98,101,89,107,91,108,103,109,99,97,104,95,100,107,105,99,110,98,95,90,96,97,95,91,103,102,95,116,92,105,100,108,106,91,98,102,108,91,104,97,100,95,101,103,104,103,99,95,96,99,98,80,111,101,92,89,97,97,106,94,108,108,103,83,94,111,90,95,119,103,99,115,106,115,120,101,92,87,87,81,91,88,94,99,104,95,113,80,87,89,106,97,96,93,83,98,98,94,89,104,113, +709.17407,83,78,89,97,92,109,98,82,101,105,88,80,99,122,95,97,95,104,92,98,110,105,95,99,101,104,102,94,110,99,79,106,88,99,98,99,106,87,96,107,90,103,108,95,98,92,102,88,94,107,100,114,99,102,104,106,100,97,99,90,99,114,94,103,90,100,103,105,102,99,108,92,90,83,97,103,98,104,102,87,87,102,102,97,99,96,113,87,89,96,104,95,94,102,97,97,129,98,97,100,99,114,88,99,95,100,96,96,98,93,93,95,103,100,69,90,100,103,99,105,100,96,102,118,98,105,106,93,104,93,92,113,102,104,117,97,99,109,122,107,91,100,100,102,103,87,102,93,95,89,86,100,102,88,93,90,95,97,112,95,88,94,104,108,107,109,105,104,90,95,96,105,106,103,103,94,91,95,111,99,113,90,92,98,100,83,97,89,110,95,95,103,90,95,97,100,100,91,107,112,96,91,94,96,91,102,100,109,105,98,100,102,96,100,100,108,97,101,94,102,99,99,95,100,92,101,110,105,90,101,93,101,104,86,99,85,111,105,100,101,106,112,99,102,107,97,96,112,109,104,101,106,89,101,99,95,99,110,99,100,91,103,99,95,99,84,98,89,95,100,109,106,96,96,115,97,98,88,106,106,87,95,113,104,100,103,97,106,98,95,108,113,99,105,104,97,107,102,87,104,104,96,95,92,93,96,89,87,107,93,90,97,84,100,101,94,91,112,89,104,98,87,108,100,95,90,92,106,113,115,124,101,94,83,98,97,97,91,92,95,106,114,98,88,103,104,99,111,113,101,100,100,100,101,91,93,105,98,98,92,102,117,102,95,97,101,93,132,84,98,104,82,100,96,95,94,100,99,88,109,97,100,97,102,109,94,92,100,99,89,117,90,87,102,100,97,94,101,95,82,104,96,80,92,101,101,102,89,111,102,95,97,96,99,108,101,94,104,110,99,100,98,97,112,93,88,104,95,88,101,87,96,99,95,86,97,92,99,101,98,91,98,98,93,102,109,113,93,103,112,96,86,119,102,94,102,91,111,96,102,96,98,89,102,105,102,111,94,104,105,105,107,92,105,110,104,109,98,98,107,92,90,95,104,101,101,101,92,94,101,101,106,105,90,95,101,100,90,91,105,105,103,103,95,88,95,94,92,106,87,97,102,109,95,101,112,95,101,97,83,110,109,106,92,102,94,99,96,102,105,90,78,97,98,100,98,106,97,105,108,95,96,95,102,104,102,102,92,103,90,114,94,103,98,111,101,100,99,100,95,114,100,91,94,111,100,90,99,101,87,91,96,83,88,102,96,96,90,104,98,97,101,109,86,104,98,106,97,97,85,87,99,99,95,98,110,102,97,100,105,94,102,100,78,93,98,96,109,102,104,106,94,109,92,107,87,107,91,89,110,96,100,115,96,105,92,82,98,100,105,99,92,98,94,101,106,100,89,100,105,113,107,78,95,90,103,91,100,95,98,95,94,96,87,97,94,92,101,107,101,105,108,106,81,95,99,104,105,101,86,94,92,101,86,91,88,99,99,108,110,99,94,105,96,100,99,91,88,99,86,87,97,105,109,103,89,106,105,101,96,95,96,95,93,96,98,98,103,104,96,104,92,105,100,104,91,109,98,102,120,97,104,91,87,95,97,91,86,109,98,101,109,88,100,95,103,108,93,116,105,92,97,99,89,83,84,106,106,91,101,108,97,106,91,102,101,105,80,109,101,93,101,99,99,101,94,86,94,100,104,111,93,128,106,90,102,102,105,105,104,106,102,100,95,92,102,105,97,108,108,91,95,99,102,100,83,93,98,87,96,83,92,106,101,90,110,94,96,79,97,112,88,91,105,92,115,96,112,99,96,93,112,97,97,97,105,95,101,95,92,107,100,99,104,109,103,95,97,88,95,102,95,97,102,91,91,101,97,87,100,96,93,98,98,93,107,94,107,103,99,101,99,96,86,85,101,99,107,95,108,101,87,102,102,94,81,94,93,88,100,108,112,106,99,100,91,91,106,93,100,97,101,90,96,105,87,91,107,98,105,98,102,99,98,103,89,106,100,95,95,102,95,90,84,106,111,90,97,100,98,96,94,99,97,94,94,99,94,105,109,103,104,104,112,94,106,88,94,98,104,98,91,91,108,96,87,100,104,91,93,96,106,101,98,101,100,87,93,101,78,103,94,71,101,95,101,97,86,95,84,101,88,106,101,95,93,107,84,97,96,99,103,96,100,100,105,94,101,97,88,96,110,99,100,91,94,100,94,93,99,108,102,105,97,105,86,104,93,84,88,85,79,98,99,92,98,101,91,102,95,99,106,96,101,112,97,95,91,101,91,95,104,95,96,103,93,92,94,101,92,101,95,92,91,94,84,99,95,112,94,103,88,99,96,99,100,98,87,98,94,91,103,102,99,95,97,98,104,101,96,100,103,84,89,96,105,82,101,112,94,87,93,105,107,102,110,95,100,91,109,99,112,107,88,110,96,97,80,105,102,100,90,97,97,106,106,87,99,101,100,91,92,104,97,104,105,101,112,101,106,100,97,97,113,100,94,98,111,110,97,95,106,76,91,102,90,106,100,88,106,108,97,102,105,95,99,97,101,101,105,97,99,95,91,106,108,69,102,93,110,104,86,96,94,87,107,110,105,95,92,97,98,113,97,95,107,102,97,101,99,100,92,104,98,101,101,109,104,92,101,104,104,93,98,102,106,97,99,104,110,107,98,90,97,111,91,95,92,96,96,100,99,96,96,106,90,124,108,101,113,94,106,107,92,98,97,86,105,111,90,93,108,106,101,111,97,103,107,124,95,117,108,103,91,79,102,102,109,97,114,98,101,95,96,103,102,95,110,91,101,110,94,88,100,114,108,96,95,99,109,110,102,91,105,120,96,100,93,103,102,104,97,113,97,101,117,93,101,110,101,99,94,83,81,102,115,95,103,109,103,107,100,103,118,106,98,108,98,103,107,83,98,97,99,100,117,103,103,111,93,102,96,103,104,103,107,97,96,99,94,98,102,91,109,116,99,107,100,88,112,95,111,110,91,61,99,99,98,108,101,97,113,90,117,96,95,98,103,94,83,102,87,92,100,101,94,102,108,101,108,116,89,107,106,94,86,101,98,88,94,103,92,99,88,93,101,84,113,104,92,99,91,98,107,96,102,95,81,100,90,103,92,91,95,104,96,104,95,97,108,92,104,91,98,99,98,93,95,88,104,93,98,100,97,103,108,105,99,98,103,98,96,91,111,103,111,80,100,95,100,102,96,95,99,81,98,103,100,90,102,137,110,106,106,100,104,97,103,94,78,97,95,95,100,99,104,95,107,94,104,102,95,104,106,81,98,95,103,104,99,97,98,109,100,87,101,104,97,96,103,94,94,96,97,104,99,106,104,100,92,92,93,95,100,98,100,100,115,104,98,113,102,96,96,97,94,97,104,107,93,87,98,104,104,98,95,101,110,102,97,88,106,102,83,99,97,107,94,99,111,88,112,99,108,93,102,105,101,99,93,86,113,106,97,96,100,102,102,90,104,90,99,101,92,103,89,94,104,117,113,100,96,88,111,96,113,106,107,91,91,80,102,95,108,94,88,107,116,94,99,92,105,104,99,103,91,100,101,98,94,90,95,96,105,107,94,115,98,90,106,98,101,96,101,91,92,101,99,103,97,96,104,99,106,120,101,101,100,96,97,103,85,103,102,99,98,105,98,98,102,97,96,94,94,101,104,106,101,97,109,96,92,99,104,102,101,105,94,98,101,95,102,98,79,99,96,109,86,105,111,102,90,98,100,82,104,94,95,88,95,88,102,103,99,102,90,98,105,120,97,97,100,97,105,98,100,109,112,75,90,95,105,107,94,107,104,98,103,98,95,112,95,102,101,105,107,103,99,97,91,97,113,95,87,104,93,103,89,104,85,100,108,103,89,107,112,96,92,103,95,100,102,98,99,90,91,100,105,101,101,105,109,106,100,106,101,100,106,96,106,100,110,87,102,98,101,97,102,87,92,113,78,98,97,98,112,102,99,102,106,100,97,91,104,104,103,83,97,111,83,95,90,105,91,97,113,91,87,96,108,98,101,84,85,106,107,98,107,109,97,72,106,92,103,98,104,93,70,95,94,96,103,96,105,113,95,85,87,107,98,103,106,106,86,109,103,102,103,101,91,98,100,102,105,111,102,94,105,96,95,103,93,101,98,98,90,100,96,95,111,111,101,103,102,94,106,107,89,96,108,91,83,111,104,99,98,105,101,107,109,105,96,93,98,92,86,97,100,101,101,105,102,77,87,109,101,97,106,103,108,94,108,109,104,99,104,96,112,78,98,99,95,101,97,92,97,95,103,109,104,98,97,113,107,106,83,95,102,91,81,98,106,57,101,102,95,101,98,99,93,97,89,98,104,107,96,94,95,95,101,88,106,92,111,96,96,91,102,100,87,95,115,96,100,95,97,104,85,101,105,106,83,92,91,100,101,84,90,90,109,93,90,89,94,92,102,100,105,120,85,97,94,109,98,101,110,79,116,80,103,104,104,85,98,90,92,83,89,94,89,97,104,104,101,94,113,101,106,102,105,103,101,101,107,101,108,90,96,102,115,93,102,93,108,92,101,103,104,84,98,102,96,94,109,102,103,98,103,100,101,90,112,99,117,92,105,115,83,78,101,102,110,100,99,103,89,89,102,87,101,84,95,102,101,94,89,96,100,97,76,111,101,87,97,87,102,98,92,106,89,93,99,99,97,99,100,92,91,107,100,96,89,105,91,92,100,104,95,96,91,102,101,107,100,96,99,99,95,102,104,97,94,96,92,102,94,101,94,97,96,112,99,93,102,109,102,96,113,97,92,103,99,96,107,89,95,76,108,98,98,113,119,94,114,106,105,88,117,105,92, +709.31543,113,96,104,118,114,90,93,100,96,109,91,106,103,100,98,112,87,102,109,97,102,102,99,97,106,89,92,103,82,105,112,94,96,85,86,110,114,98,107,107,99,99,99,94,95,102,98,104,100,102,102,88,100,95,105,119,82,95,104,103,93,121,98,83,104,100,88,105,99,96,97,104,95,91,91,93,96,106,82,107,94,102,102,112,110,100,111,107,95,108,118,107,91,96,97,91,88,106,83,98,98,103,97,96,103,94,113,93,104,99,93,98,105,106,104,88,95,118,91,101,113,106,104,103,99,106,94,87,101,108,100,124,101,102,91,106,110,96,100,95,86,107,90,106,101,106,100,102,102,99,72,112,103,96,98,100,101,101,91,92,97,110,90,97,93,88,98,96,96,93,106,95,101,105,112,99,101,75,97,88,109,93,95,94,97,91,97,93,106,83,104,91,106,110,91,83,94,108,92,94,92,99,109,103,102,102,90,97,111,98,97,98,102,117,92,106,105,109,91,104,108,111,110,105,91,102,105,109,110,94,104,93,109,108,92,106,103,101,101,97,103,101,105,97,100,98,99,98,118,105,106,114,97,99,87,102,95,101,93,99,100,93,103,105,102,103,106,99,106,94,116,91,90,103,99,95,96,100,102,107,94,101,109,102,98,104,105,99,96,91,93,92,106,118,97,107,91,104,103,96,96,99,99,110,90,109,101,94,91,97,105,95,95,93,103,98,93,95,92,83,82,97,106,94,100,96,95,96,103,100,113,100,96,94,100,105,94,109,103,109,82,104,101,99,92,110,104,107,104,82,94,102,110,97,109,92,111,102,101,112,108,101,98,85,97,107,92,99,106,94,114,91,101,93,94,100,93,104,84,92,97,108,95,99,102,98,95,97,109,83,112,91,105,102,100,103,97,92,85,110,96,102,96,102,94,96,104,78,97,117,99,101,97,101,90,96,113,105,101,96,85,87,101,101,105,92,102,102,98,109,95,112,102,97,90,105,93,100,104,98,96,100,90,118,103,89,107,98,96,100,89,97,106,108,112,102,101,97,108,95,110,105,96,92,104,111,112,83,96,111,95,93,109,91,117,96,90,98,98,96,106,107,105,95,100,101,97,98,94,107,110,113,105,96,95,98,80,100,95,100,106,98,88,107,101,95,95,98,105,129,111,97,98,101,86,108,91,96,99,103,120,97,95,109,108,92,98,97,88,89,117,104,91,95,96,103,109,102,98,104,97,106,95,95,95,94,106,95,109,100,95,111,95,98,93,72,100,100,89,103,103,109,105,91,102,93,95,102,101,109,108,96,110,99,94,106,62,101,104,93,106,106,95,97,94,95,106,101,101,89,89,82,88,95,107,97,95,104,107,109,98,96,99,97,105,94,95,89,117,100,91,89,99,96,101,109,102,92,131,113,104,110,99,86,96,90,103,100,86,114,101,100,106,105,91,112,91,78,98,99,104,103,102,97,95,87,93,95,100,110,97,104,108,99,91,96,102,102,84,96,106,115,97,101,103,83,98,104,86,97,91,103,104,97,80,94,106,104,106,113,105,102,101,89,78,101,94,103,102,98,91,102,89,106,94,104,102,101,92,88,90,95,95,91,103,99,84,99,98,103,105,103,104,105,103,98,94,104,92,88,96,95,107,99,112,92,102,91,96,108,83,109,92,93,94,108,87,93,99,98,101,116,105,94,95,92,97,104,97,89,103,98,84,91,102,98,90,110,101,91,89,97,100,91,93,100,98,94,96,106,100,101,99,98,96,100,104,99,100,90,103,99,99,102,95,91,111,102,109,107,105,98,95,106,105,108,101,110,99,96,114,96,101,100,97,96,105,115,76,109,117,97,97,98,99,96,108,97,112,90,110,96,98,103,105,94,99,116,111,103,112,103,108,110,95,108,82,109,111,111,91,108,93,100,102,97,97,90,94,88,95,92,71,101,100,103,122,97,106,98,103,99,124,109,93,117,93,114,108,103,106,109,102,95,118,92,98,99,112,108,96,87,102,93,105,107,96,101,100,104,97,110,84,98,91,91,104,96,94,95,98,107,102,99,103,95,106,96,104,105,105,109,111,93,104,106,101,104,105,105,95,76,99,115,100,91,99,112,100,91,97,115,99,101,81,100,98,95,90,96,93,87,85,99,90,95,100,92,105,94,83,97,105,105,100,78,98,111,97,105,113,97,95,97,99,111,98,96,98,96,95,93,104,95,94,136,90,99,98,97,105,100,97,96,102,103,104,104,102,111,102,99,109,91,102,100,104,114,91,100,104,108,98,109,99,108,88,100,99,102,98,109,99,96,82,94,102,99,105,100,98,104,100,94,98,97,102,111,102,111,109,94,98,116,100,87,95,113,99,102,99,107,100,104,70,119,99,101,100,81,94,107,103,97,104,107,99,104,104,89,88,100,102,98,101,98,90,100,115,98,94,113,99,106,96,98,98,102,97,107,109,87,108,113,99,96,96,102,102,111,109,112,109,114,94,105,102,112,102,115,103,94,110,103,96,101,93,99,105,99,95,104,108,104,88,98,94,112,101,104,98,104,100,109,101,98,90,103,101,89,100,110,109,98,102,98,96,100,99,95,98,95,108,100,105,89,95,87,92,110,91,96,100,102,112,126,101,97,108,113,97,104,99,87,93,108,98,95,87,87,112,98,114,99,105,91,112,98,106,97,100,105,99,98,99,95,109,104,106,116,103,100,94,94,103,96,106,97,105,97,91,101,99,99,99,103,102,107,92,88,102,100,105,89,98,100,103,100,103,103,102,96,92,98,104,99,109,112,99,100,116,92,109,117,103,105,106,93,98,102,99,102,114,98,101,92,111,103,95,108,101,94,104,97,106,90,98,105,90,100,95,92,102,95,99,98,92,102,101,103,114,85,114,94,105,98,105,104,106,103,94,112,112,92,122,107,94,100,91,106,106,100,76,112,107,108,107,109,107,102,108,95,94,114,102,101,65,110,109,105,102,104,97,101,104,113,104,98,103,97,115,105,103,84,116,114,95,107,111,103,98,98,106,113,111,102,108,101,89,102,104,99,105,100,99,96,103,107,95,106,108,106,102,106,109,98,105,99,101,103,109,113,102,88,107,83,92,80,100,101,103,107,94,112,112,71,107,93,98,102,96,92,96,92,95,88,99,101,99,98,100,99,104,94,123,103,105,97,108,105,86,95,92,100,100,104,98,101,95,104,98,94,98,108,95,104,112,102,96,79,108,100,95,104,98,99,99,97,113,103,102,96,99,102,104,92,104,102,101,114,90,101,103,103,98,112,102,103,107,93,114,116,95,102,103,98,109,103,107,110,101,105,103,105,106,101,105,105,114,95,106,101,97,94,108,95,101,99,102,110,97,104,103,102,90,109,100,90,102,97,104,96,108,109,92,108,96,97,102,92,111,116,107,102,95,107,123,99,99,100,96,95,105,96,96,107,108,104,110,102,110,96,99,100,81,103,103,97,102,103,106,97,100,96,95,104,105,99,114,99,104,94,96,102,101,95,100,101,103,108,102,117,99,106,102,109,97,107,105,109,96,102,116,99,116,114,104,92,102,102,110,104,102,98,95,102,104,101,102,97,92,105,114,99,96,104,100,97,129,109,91,112,108,105,89,90,91,99,99,99,91,104,105,104,91,94,102,104,99,97,116,94,106,99,100,104,114,109,96,91,112,102,93,109,99,107,108,98,102,96,103,98,103,110,97,115,111,104,104,113,101,95,95,97,105,106,98,101,105,94,103,106,102,87,99,105,112,95,106,94,83,95,98,103,106,104,98,93,100,109,94,99,93,113,109,102,104,102,106,101,108,98,102,93,98,107,107,99,88,99,103,107,107,106,102,96,100,91,96,92,105,108,102,89,97,94,86,92,95,111,102,93,103,99,95,94,89,102,113,108,99,102,103,93,106,111,99,106,81,100,109,109,109,104,115,102,103,94,101,105,95,116,86,94,103,99,101,109,96,90,98,102,94,93,95,105,95,91,110,108,102,113,98,102,108,95,88,87,107,100,100,104,110,107,100,102,101,108,100,104,95,95,100,92,99,98,99,94,102,82,95,89,99,105,103,93,100,106,94,98,99,100,98,94,107,112,98,96,87,107,108,94,100,99,99,104,98,90,108,103,79,117,108,97,98,106,98,105,100,98,115,99,100,106,109,102,117,93,102,99,103,105,106,100,94,98,96,106,97,110,106,102,103,92,111,103,100,99,124,109,100,112,94,99,100,104,95,102,109,94,92,101,109,114,81,107,108,118,99,113,92,106,95,117,99,105,105,107,97,92,86,95,102,91,90,102,102,102,104,110,76,102,110,103,103,100,103,100,106,99,104,101,102,111,102,87,106,97,118,101,97,101,112,102,108,92,101,114,98,97,96,90,102,97,103,102,108,96,94,97,103,95,106,99,83,99,108,104,110,89,105,99,92,98,102,105,95,101,96,112,113,108,88,98,108,103,100,96,105,103,103,111,96,106,100,98,96,106,103,98,92,99,88,97,103,87,92,111,74,79,95,76,94,107,98,92,110,103,113,99,102,100,107,98,111,102,95,107,96,102,80,114,87,101,107,109,121,102,103,87,96,98,107,99,109,99,92,120,91,89,101,99,111,104,102,103,107,109,84,104,107,116,98,109,106,108,99,101,101,110,108,104,93,107,96,97,106,104,96,98,100,102,109,95,100,105,101,112,106,94,102,88,105,102,108,93,110,95,102,97,94,91,94,108,100,105,102,101,115,91,92,99,104,111,110,87,101,110,107,94,100,114,115,125,99,101,98,97,99,97,101,96,103,98,105,114,109,104,95,106,117,108,104,103,104,97,103,97,75,101,92,101,102,100,98,114,100,113,91,105,107,90,104,96,94,100,98,109,104,95,100,96,100,94,113,112,99,103,96,100, +709.45679,96,104,97,96,85,100,102,86,97,103,91,99,97,101,87,109,101,96,102,98,98,93,105,94,88,91,93,98,110,112,100,95,100,87,126,97,88,113,97,101,94,100,102,94,91,104,99,100,91,108,92,101,113,101,107,94,96,91,108,101,96,101,106,100,102,104,88,102,96,99,112,89,84,100,111,97,102,110,99,100,104,94,106,113,135,87,99,106,99,88,97,123,101,88,78,81,100,96,106,97,96,93,91,106,91,90,90,94,93,91,96,110,91,96,107,97,113,98,104,106,98,95,97,90,95,109,97,98,87,102,93,100,90,92,101,95,103,90,101,88,92,102,96,101,112,108,99,91,111,91,96,92,106,94,93,97,102,99,95,86,91,99,94,90,102,89,87,86,101,86,88,105,99,97,117,107,70,91,98,100,103,99,101,109,87,101,91,108,102,110,101,95,95,96,96,104,114,90,105,107,101,101,96,103,90,93,90,105,109,105,91,99,104,97,106,95,101,88,99,116,97,103,96,105,84,100,91,86,96,116,91,101,91,99,95,101,96,99,104,101,107,87,106,87,97,96,100,111,96,99,107,110,87,93,98,88,96,109,100,109,89,99,99,98,109,97,98,86,91,96,79,100,93,110,102,99,97,93,101,96,97,106,94,98,103,102,83,99,104,96,104,102,99,102,94,99,97,95,110,94,95,98,94,87,90,103,97,106,103,99,98,92,108,96,91,100,104,97,98,83,98,92,88,98,95,100,99,87,102,95,108,102,101,92,104,108,96,95,86,91,91,102,91,89,98,87,98,104,117,107,110,99,101,99,93,102,101,102,95,106,91,93,113,100,94,94,108,104,89,99,101,108,109,98,106,100,114,100,111,102,104,92,101,92,95,92,95,104,93,108,91,84,90,96,112,75,83,79,104,91,90,102,95,103,114,103,89,96,105,93,88,95,98,109,99,102,114,105,98,95,101,107,92,98,69,79,94,86,90,97,97,75,94,90,98,106,94,92,104,100,103,98,92,90,85,92,97,123,99,100,96,94,100,98,81,92,102,67,103,98,94,92,101,110,85,103,97,102,76,107,98,88,93,95,102,106,94,98,92,103,98,104,94,109,98,89,101,101,103,96,99,99,100,98,92,97,89,97,96,102,95,84,92,95,100,92,102,95,100,96,92,103,99,84,97,101,109,97,97,97,104,96,100,93,95,92,109,101,99,92,91,106,106,96,96,92,105,91,92,96,89,70,109,97,101,99,100,93,91,100,99,103,96,99,86,97,92,108,89,89,97,89,95,98,101,97,94,109,94,121,100,99,107,93,85,100,96,86,94,96,93,96,94,79,97,96,102,100,96,97,92,96,97,107,106,71,95,93,95,99,92,108,105,78,88,93,87,103,94,94,94,101,94,94,101,95,106,101,95,99,102,98,105,94,80,93,102,98,88,111,112,95,99,93,92,121,101,96,89,99,91,101,88,102,93,96,103,93,100,98,86,99,98,105,95,92,90,96,99,97,103,99,100,99,101,97,98,102,96,95,105,99,69,91,101,95,108,98,99,94,96,100,102,95,91,109,105,97,102,90,104,106,93,105,95,96,102,107,91,89,94,86,103,115,104,106,98,106,88,100,100,96,92,90,94,87,117,101,94,94,94,100,97,96,101,92,107,98,97,101,103,105,109,94,92,101,102,97,96,74,95,94,109,109,101,83,93,104,94,75,107,98,105,84,76,105,94,106,103,98,97,100,99,92,87,90,87,90,94,87,90,91,108,96,92,98,88,99,86,100,100,101,119,96,93,104,96,91,95,104,95,108,100,116,97,92,102,86,102,99,103,100,84,97,91,96,110,95,112,94,103,103,103,93,100,92,99,105,86,99,90,96,94,106,101,99,106,96,102,98,100,98,104,99,93,100,100,98,95,105,102,101,103,97,89,86,87,98,84,99,98,98,83,107,93,102,91,102,98,97,96,89,99,99,83,97,105,109,101,101,108,88,96,97,90,99,100,98,85,89,89,74,96,102,116,96,94,116,97,105,101,100,84,102,109,106,95,85,91,100,113,103,109,89,100,104,97,98,92,86,101,112,106,101,99,99,108,101,87,104,97,99,102,88,105,98,92,111,95,97,101,106,114,88,76,96,96,102,108,98,100,72,99,101,104,97,99,95,103,94,96,104,94,106,109,98,100,96,101,96,96,109,88,102,98,100,100,94,101,108,99,102,97,100,100,98,103,106,90,99,95,93,104,99,107,105,109,93,76,95,99,96,78,105,126,84,102,93,98,103,100,95,89,96,110,102,110,104,107,95,94,88,105,99,98,101,103,106,97,113,96,106,97,102,88,99,98,107,102,97,94,92,114,95,106,103,96,112,92,92,95,118,102,98,95,97,95,110,103,108,85,101,99,101,96,101,98,95,98,107,85,96,103,101,94,106,101,102,101,88,100,99,110,94,116,100,100,107,99,80,102,104,112,95,111,116,101,108,112,95,95,100,103,92,89,100,102,81,96,88,107,89,110,117,97,109,98,107,98,104,98,109,108,101,108,102,104,113,109,105,98,92,96,94,99,95,86,95,99,105,91,87,109,99,98,102,83,98,101,99,100,101,99,95,95,98,104,96,102,116,106,99,104,107,98,104,98,100,99,97,120,91,95,102,99,101,96,102,102,93,97,94,106,96,95,100,104,101,105,105,99,106,63,96,102,105,89,104,101,102,99,108,94,102,97,100,100,97,100,96,102,99,95,106,105,103,100,91,102,103,104,100,104,107,104,105,105,107,94,115,98,95,97,93,64,94,100,112,99,107,97,105,101,104,94,92,107,99,102,98,94,106,91,97,98,103,130,103,99,99,104,95,111,97,100,103,105,110,105,101,98,97,98,110,101,108,99,104,102,105,102,111,98,105,102,113,99,103,104,106,94,105,88,87,105,100,100,111,105,112,106,106,101,88,113,105,92,97,106,91,92,110,97,101,92,101,83,88,103,96,80,101,98,97,107,104,91,94,105,97,105,105,100,102,107,92,92,103,98,98,88,102,102,113,109,83,95,89,99,108,96,104,108,104,105,90,107,102,113,115,92,111,100,97,93,109,102,105,99,102,108,108,87,107,103,85,97,94,97,91,103,103,105,108,109,98,102,99,87,99,90,95,106,108,103,83,93,96,106,108,98,107,96,100,107,106,98,97,107,102,115,93,90,93,99,95,104,97,101,99,96,103,94,99,110,97,105,98,87,106,107,104,75,94,89,87,100,108,112,94,111,101,109,123,83,93,90,95,89,99,82,83,103,96,104,109,109,105,101,87,101,101,113,94,98,93,95,100,109,104,104,93,100,108,104,101,99,94,105,100,101,99,97,99,100,98,106,88,106,86,98,94,107,106,96,102,101,94,104,99,105,96,97,105,105,97,103,102,102,91,90,97,109,88,103,99,76,94,95,101,101,96,116,103,104,100,101,77,86,88,97,101,101,93,85,100,96,101,92,107,104,87,108,99,100,93,96,102,111,102,99,112,97,99,105,92,101,96,97,85,84,110,141,116,92,113,104,100,98,94,90,96,91,105,99,99,86,93,100,109,99,97,103,104,98,91,102,108,100,85,94,74,90,104,97,93,113,106,104,114,95,105,110,102,109,98,101,103,103,88,88,105,108,110,95,92,100,99,103,105,96,91,102,103,96,101,88,104,93,99,108,104,101,115,109,105,96,109,106,97,98,104,98,90,103,103,109,96,92,106,106,96,115,97,105,97,100,93,103,112,95,116,97,101,108,98,108,96,88,109,98,102,98,117,103,95,113,101,103,91,99,105,101,102,106,109,103,102,102,100,74,104,87,103,98,105,98,95,87,97,83,66,109,103,102,95,103,103,106,101,104,102,89,99,100,96,92,69,106,99,104,88,78,102,99,107,103,102,97,105,100,93,102,104,108,102,100,95,105,96,95,104,106,103,94,104,100,100,87,98,105,112,102,106,103,102,108,97,87,104,95,103,102,87,101,95,99,99,98,107,94,104,91,99,111,87,102,103,98,102,114,111,100,98,105,100,98,90,106,98,113,91,99,93,107,107,109,101,82,93,96,102,101,103,96,97,108,111,94,101,102,99,98,99,105,108,100,107,88,98,95,118,101,125,113,102,87,98,103,109,102,87,96,110,104,95,99,102,101,104,98,98,96,95,96,107,92,94,93,97,109,116,110,90,99,104,99,111,102,98,117,131,97,107,99,100,94,102,90,82,110,117,96,102,105,111,109,99,98,96,91,102,102,125,105,121,101,105,96,98,114,100,115,107,111,109,104,101,107,94,100,94,92,101,97,94,106,97,88,98,107,102,102,103,105,92,106,110,84,103,99,95,101,97,105,96,106,95,102,114,104,91,95,102,99,101,102,96,90,97,97,96,111,103,96,105,109,115,101,94,95,101,100,98,112,117,103,102,88,97,104,99,109,96,103,102,95,89,95,114,96,96,107,92,101,92,104,94,105,110,105,92,106,99,107,94,93,94,95,90,92,104,95,116,99,105,95,97,88,96,94,93,96,100,106,103,105,104,106,107,83,94,98,108,100,87,104,95,101,101,113,117,104,93,93,110,96,98,95,95,103,74,109,111,95,117,105,102,105,96,85,100,99,99,90,89,99,112,102,95,111,86,101,97,101,114,105,112,104,98,104,103,92,97,105,99,104,97,108,89,108,93,114,105,87,106,100,101,103,97,108,100,108,105,82,109,96,102,104,97,91,95,86,99,79,93,96,108,107,105,91,101,113,99,100,96,106,104,116,100,103,97,106,105,109,119,103,107,109,81,97,95,92,99,109,112,101,101,92,90,110,93,111,93,107,93,98,103,102,95,102,112,101,97,110,102,92,108,95,94,93,79,104,110,99,103,95,95,112,92,104,95,106,91,96,93,105,102,91,101, +709.59814,106,79,106,101,97,86,100,99,90,105,77,90,96,84,109,99,99,114,105,97,102,103,96,100,106,100,98,96,82,92,89,101,119,99,98,107,102,95,105,113,96,95,96,93,109,106,97,99,90,98,104,102,102,99,99,99,90,93,95,108,112,99,98,96,113,113,91,104,88,106,99,106,111,99,93,96,93,106,107,103,94,98,82,106,89,90,104,116,100,97,101,109,104,97,84,88,103,102,99,93,90,92,111,95,113,94,101,89,98,99,97,110,99,102,71,114,84,98,108,104,108,85,98,100,120,101,91,91,93,101,94,97,97,102,97,97,97,95,95,100,103,95,98,105,105,95,98,103,99,100,101,91,120,94,98,98,93,76,104,101,117,95,102,100,103,102,95,103,102,100,102,97,104,105,98,109,105,97,109,105,96,104,137,97,104,101,95,91,90,107,89,100,101,102,104,120,111,101,98,107,102,117,97,101,102,107,98,100,103,109,92,97,90,113,114,113,111,100,101,105,106,104,98,99,99,105,108,109,94,98,86,83,87,94,98,97,96,99,91,99,89,99,104,109,98,110,97,103,106,100,98,102,96,105,88,82,104,100,101,97,103,100,93,108,99,104,99,96,95,98,101,85,98,103,83,101,106,99,105,97,95,100,97,90,101,109,97,105,101,91,93,103,101,102,112,105,101,94,95,101,106,108,101,105,110,100,104,102,92,99,105,100,100,109,100,94,101,88,95,105,95,100,102,98,94,91,101,98,112,110,100,106,91,102,95,85,94,105,91,104,87,97,96,97,89,102,93,104,94,103,118,99,93,103,99,99,100,98,100,101,94,93,99,101,93,92,95,115,97,97,103,99,107,92,90,106,99,105,98,99,100,97,88,96,86,94,89,92,112,99,102,95,93,102,103,100,99,94,107,97,113,111,90,97,90,98,105,98,96,95,99,95,97,115,103,109,97,91,111,90,99,112,97,97,99,97,91,102,94,96,97,102,98,104,98,84,93,95,98,94,102,89,90,99,99,101,97,99,106,99,104,101,98,97,93,89,101,100,90,95,98,108,106,103,102,104,114,100,111,92,96,101,104,93,100,106,82,106,90,86,106,99,104,97,89,100,92,97,95,91,89,103,108,87,100,101,102,106,103,111,105,102,97,104,101,101,91,105,109,89,99,87,101,101,87,94,100,98,91,96,99,97,103,96,98,97,97,100,94,100,96,105,107,96,101,99,96,105,94,109,108,114,96,109,100,113,98,104,95,102,93,104,107,99,96,94,101,95,107,100,109,100,104,92,121,108,100,101,108,95,93,90,97,93,101,98,102,97,105,96,101,110,104,104,91,96,102,96,101,84,104,110,101,104,95,111,111,98,105,103,102,101,101,92,93,101,101,99,101,97,100,108,112,95,103,100,98,106,100,99,95,101,96,94,87,83,103,99,102,106,107,98,98,103,100,90,104,94,101,92,102,100,98,100,97,99,99,101,103,98,89,98,91,97,96,101,106,102,94,90,99,97,105,104,88,95,102,97,102,100,100,93,101,92,110,103,106,99,105,100,97,122,101,91,105,95,90,108,114,90,95,102,92,99,99,113,97,109,98,106,110,103,80,96,85,104,101,88,101,100,100,91,107,96,83,109,95,106,93,91,97,91,96,96,98,109,97,104,98,103,96,96,94,112,106,106,116,104,111,98,93,101,84,95,108,89,97,101,101,100,93,98,98,100,102,93,90,94,112,103,91,104,102,96,93,103,98,102,94,95,97,96,92,110,103,95,91,98,97,99,91,96,109,98,89,103,112,98,92,104,100,98,108,110,99,99,92,105,76,110,89,95,88,106,104,99,107,92,103,97,87,96,99,109,108,85,112,92,107,93,102,97,90,95,111,91,100,101,104,91,93,103,69,101,104,95,106,105,100,112,96,98,95,98,99,108,91,94,90,90,107,95,101,108,90,96,97,113,98,111,100,93,102,104,96,96,96,102,102,100,106,105,110,92,90,102,95,99,106,98,95,115,114,92,104,105,95,100,98,111,100,102,101,94,101,100,83,94,93,100,94,96,105,113,96,96,107,83,95,88,96,92,100,96,98,91,96,90,95,96,104,102,99,108,98,105,99,102,98,100,95,95,99,108,96,87,91,93,98,97,100,99,103,112,94,89,102,110,92,114,88,96,100,105,90,102,102,104,111,104,113,96,104,89,99,108,98,91,95,95,109,101,114,100,98,99,97,100,98,99,99,94,101,94,109,92,90,94,94,101,97,83,96,112,98,106,106,107,96,114,99,114,94,104,104,87,109,101,97,101,98,108,99,98,102,101,105,99,95,70,102,105,89,110,94,103,94,108,110,100,112,106,102,98,111,85,96,104,96,106,104,95,101,95,83,104,105,89,102,100,95,84,89,99,95,96,67,106,113,100,114,105,91,119,81,98,97,95,100,94,97,116,88,106,89,101,90,91,92,99,104,90,91,105,89,105,110,94,98,128,98,92,102,92,85,92,98,102,88,93,97,97,99,94,98,107,100,108,104,99,100,99,103,95,105,90,97,102,92,107,110,99,99,105,92,87,85,93,95,113,98,110,105,97,106,98,105,103,108,112,113,93,88,109,112,96,103,94,105,83,103,98,94,105,80,104,104,104,91,92,100,86,105,91,100,95,112,103,84,96,100,105,110,104,89,99,107,106,100,103,94,96,100,102,104,96,97,105,99,99,111,98,93,101,138,105,98,95,90,112,93,97,85,91,101,96,75,101,98,102,106,106,104,98,98,106,108,94,103,100,98,102,87,97,105,100,100,88,104,98,97,94,89,102,104,100,106,104,102,95,111,98,94,82,105,105,93,105,99,98,104,117,95,99,94,101,91,96,101,94,99,113,109,100,108,101,102,94,85,103,99,95,95,101,112,105,94,95,99,97,94,103,107,97,95,112,101,102,92,103,98,91,99,99,112,98,101,101,105,95,95,83,104,83,110,96,98,113,97,105,105,95,96,99,102,101,87,105,96,100,110,93,93,104,95,95,111,104,104,103,105,102,99,98,110,102,106,97,92,83,106,92,108,93,88,110,104,104,97,102,114,102,83,94,100,98,101,92,93,92,96,116,106,96,105,95,105,101,107,111,103,96,95,100,103,109,100,100,97,91,87,102,103,116,96,98,93,97,92,95,95,104,98,98,106,104,107,92,102,108,97,103,100,106,102,98,102,99,111,98,94,114,98,102,95,95,107,98,98,110,103,102,97,101,95,105,108,108,105,100,109,97,96,99,95,98,107,95,111,99,90,96,97,93,95,106,101,105,116,100,87,92,101,90,104,98,104,104,100,103,105,103,94,97,106,104,88,93,100,93,94,112,93,98,95,111,92,103,102,92,96,102,96,102,102,96,94,71,98,100,103,113,91,123,102,103,98,88,103,82,112,97,109,101,92,105,90,84,101,117,98,97,96,94,101,101,109,98,79,109,96,105,108,94,118,94,104,104,106,92,102,95,95,133,99,63,92,104,107,95,105,102,97,99,97,111,102,105,61,92,103,101,92,102,99,109,93,109,105,96,99,97,99,93,100,83,107,105,101,102,103,90,109,105,107,118,101,104,107,104,97,93,95,100,102,98,99,107,95,109,99,99,111,103,106,94,119,104,97,120,103,95,105,99,91,101,106,98,107,107,103,97,105,103,86,98,104,107,97,98,104,106,111,105,93,97,96,113,107,120,100,97,82,100,95,106,104,105,103,98,107,88,107,84,109,101,105,92,89,95,123,91,110,107,95,104,92,107,94,95,91,96,102,96,105,98,102,92,98,104,101,101,93,94,104,105,98,91,95,85,102,108,110,103,98,104,94,116,98,100,97,94,108,106,98,101,94,100,101,95,84,95,125,98,112,102,102,101,95,102,95,99,96,93,87,97,96,105,98,106,100,103,100,100,95,90,104,105,98,95,104,97,108,103,124,102,93,108,111,119,119,104,90,105,107,99,99,93,101,94,91,95,102,104,92,116,97,99,92,106,109,93,106,105,103,103,104,108,104,105,105,83,98,108,103,102,101,100,93,103,104,96,94,108,115,102,96,93,117,96,84,103,88,100,89,103,109,86,98,101,138,98,98,91,96,105,105,112,103,112,102,98,117,99,103,102,101,94,98,97,98,98,117,104,114,107,90,93,106,105,100,104,95,95,104,99,109,96,130,101,96,100,103,98,101,109,101,101,99,102,98,102,97,93,105,105,105,100,93,93,95,99,94,93,94,102,115,99,90,91,101,104,108,100,91,96,102,115,100,102,105,102,115,97,104,101,97,94,99,105,94,102,105,92,109,95,111,98,102,98,119,99,94,115,100,102,108,117,94,93,90,111,105,97,105,102,102,108,105,99,92,84,111,99,102,105,103,102,95,92,87,101,102,96,85,97,98,97,97,96,97,92,106,96,99,110,102,102,102,98,111,101,93,94,95,92,107,93,93,118,113,99,90,120,99,100,109,91,100,109,92,112,101,96,106,98,97,107,96,97,98,104,82,99,100,100,101,105,101,95,100,85,98,109,108,102,100,109,105,105,98,95,88,95,97,94,100,96,98,105,101,103,107,99,94,101,94,102,101,95,102,105,89,104,100,103,97,99,92,102,100,108,81,91,94,101,108,116,105,86,96,103,95,101,87,102,96,96,105,113,99,94,91,89,91,99,103,90,94,90,94,118,97,112,91,104,99,102,102,106,102,113,100,97,102,88,108,95,95,89,108,104,98,98,109,108,98,92,112,99,97,105,95,85,102,98,92,95,100,97,98,91,97,113,96,104,97,103,88,104,100,102,77,113,86,102,109,94,107,90,102,94,80,101,110,100,104,99,80,95,108,89,99,109,93,103,80,120,103,96,86,105,95,99,101,99,104,93,95,88,95,109,80,95,109,110,104,96,102,90, +709.73944,107,97,99,106,97,109,97,98,97,103,96,90,93,103,112,96,89,112,109,101,115,107,96,109,97,100,98,102,100,101,104,111,92,101,109,87,100,103,97,103,98,93,91,95,97,112,101,108,107,130,101,98,102,105,100,100,109,105,88,91,86,86,91,95,91,103,89,96,101,95,109,105,97,96,90,108,90,113,100,88,98,97,66,81,95,93,91,107,106,101,91,101,99,72,95,99,111,101,98,105,77,96,100,90,103,104,85,97,101,101,97,89,103,97,100,107,110,100,100,94,124,104,102,106,96,111,92,99,98,105,103,108,99,103,104,107,110,100,97,94,86,100,101,101,88,99,101,101,107,93,97,105,109,94,92,98,106,96,109,101,107,99,102,92,97,103,98,102,86,107,93,100,93,106,96,91,93,92,75,97,109,104,100,91,99,112,94,85,104,99,103,98,96,99,103,89,93,113,86,100,100,103,96,101,89,96,81,98,98,105,93,104,99,90,91,102,99,95,95,99,100,98,106,108,97,103,100,109,96,96,83,105,100,95,115,100,92,105,100,87,99,97,114,102,94,91,102,105,95,92,99,107,87,92,100,107,102,92,92,105,90,97,88,102,93,103,95,98,100,94,92,101,96,79,103,97,98,98,99,90,104,101,87,103,93,97,95,104,95,101,101,103,99,95,116,106,104,93,98,112,98,97,107,95,108,102,96,105,93,83,72,99,97,95,102,87,102,98,91,99,94,94,102,88,92,104,106,90,101,104,98,91,97,100,108,99,102,86,102,111,99,97,92,80,94,108,90,125,103,106,95,100,84,94,101,101,100,110,94,113,94,95,108,94,104,98,99,96,92,101,99,83,91,99,105,103,101,111,100,94,103,92,90,98,74,100,93,102,97,99,92,86,97,92,115,91,99,111,93,103,101,102,100,102,88,96,102,94,128,102,93,91,95,87,107,97,91,91,103,92,101,94,95,92,87,91,94,92,89,102,101,97,105,89,102,100,99,104,92,99,115,95,92,107,102,98,93,111,96,108,88,98,95,97,103,90,93,104,101,104,96,93,89,85,97,114,92,103,105,95,107,108,103,97,106,98,95,103,97,106,94,96,100,94,98,92,99,97,108,96,100,95,92,101,98,98,83,105,101,102,95,88,96,98,109,102,97,97,101,88,95,91,112,97,88,90,97,86,101,112,91,99,107,102,92,95,115,103,92,100,101,105,98,118,103,105,114,97,116,108,101,85,93,101,110,101,99,97,96,110,98,103,96,103,104,99,96,90,97,96,97,93,99,95,107,95,104,103,97,93,96,88,96,108,99,89,105,102,93,102,103,106,103,101,95,102,89,93,98,90,111,99,95,102,104,104,99,101,99,101,101,105,127,99,80,97,109,89,91,101,101,101,112,97,104,109,111,91,102,87,102,90,105,101,102,97,83,91,92,103,94,117,98,87,94,91,96,101,117,102,89,111,112,94,102,89,99,98,97,94,93,105,102,95,102,105,99,99,101,99,98,74,87,118,89,102,105,109,101,100,97,105,99,101,98,100,103,100,111,94,91,98,141,91,96,91,96,94,104,93,100,95,95,100,102,105,98,109,89,95,99,92,88,94,93,105,98,105,95,99,98,97,106,100,96,93,95,82,100,92,100,90,93,106,87,96,99,95,96,101,114,116,96,107,98,99,100,90,99,98,106,64,96,100,108,92,103,98,104,80,104,97,92,90,109,94,109,99,107,106,104,99,102,93,95,100,96,100,101,85,105,102,93,100,99,102,97,100,99,94,109,90,113,104,105,101,107,96,102,83,104,104,102,105,95,97,88,88,100,104,92,100,100,93,105,88,109,91,90,91,99,98,99,100,112,95,96,95,99,99,112,101,91,92,124,94,95,94,104,105,108,97,100,95,108,99,101,105,101,102,108,113,90,92,100,98,103,106,106,103,98,95,95,92,98,103,99,105,99,80,98,104,105,104,112,100,82,96,100,90,98,101,114,105,104,96,113,111,94,102,86,99,105,101,94,94,97,91,106,97,97,102,93,87,102,92,110,99,99,95,110,98,112,113,108,97,101,91,89,108,102,105,98,113,99,101,107,102,96,104,104,99,110,102,94,103,97,96,102,91,104,97,107,90,101,109,94,98,94,101,90,97,95,103,101,89,104,92,100,87,100,94,103,103,105,96,97,98,101,103,98,98,94,95,102,109,97,100,90,99,102,99,98,67,97,108,99,91,95,95,101,100,104,92,64,101,90,106,99,105,122,101,104,90,76,83,98,110,102,100,82,92,92,89,79,101,104,95,103,94,92,80,97,94,86,100,97,98,96,98,103,100,87,91,90,92,102,101,107,94,90,104,100,112,104,99,109,98,106,93,101,116,100,100,94,101,93,107,106,94,98,96,105,85,101,103,99,95,87,120,98,138,100,103,98,95,97,91,88,100,97,103,95,99,101,70,96,106,98,98,104,97,95,107,104,93,108,107,113,113,110,110,92,93,104,112,96,99,92,113,104,87,111,92,98,103,108,109,102,96,94,101,95,103,100,95,97,96,104,104,103,102,95,104,98,85,93,96,104,99,105,100,93,98,96,98,105,100,99,87,93,123,90,115,102,102,80,95,91,97,117,108,94,103,102,101,113,84,88,94,99,91,92,83,88,98,109,85,108,84,101,94,92,103,91,110,96,98,103,96,105,96,103,102,99,100,104,103,104,118,93,96,100,97,105,103,102,107,102,103,102,98,100,94,101,105,87,96,106,114,117,99,110,88,102,90,94,96,103,98,97,92,99,102,99,109,107,106,107,95,99,115,99,113,102,95,100,112,99,109,108,108,83,93,88,103,85,104,105,101,110,104,101,109,96,98,91,93,89,92,94,87,102,100,91,93,99,108,87,102,99,95,92,105,100,102,105,100,93,113,103,114,111,112,101,102,87,107,103,102,101,98,101,99,93,104,103,102,102,105,97,85,106,97,96,112,99,93,79,105,93,99,91,105,109,107,100,108,106,101,109,89,102,104,105,104,98,98,106,97,113,95,103,105,100,115,100,95,87,104,95,104,104,83,113,99,100,95,95,95,105,101,103,108,93,88,96,102,90,94,95,100,105,95,108,109,111,95,98,107,95,97,99,101,111,98,91,105,105,106,97,101,84,104,98,100,96,96,96,98,103,104,89,106,87,101,95,98,85,98,113,95,98,93,104,111,108,100,100,69,93,102,98,89,108,93,96,95,97,97,90,115,91,110,101,109,99,94,86,100,103,108,109,106,103,96,86,98,99,98,88,90,102,101,78,94,95,98,99,113,95,100,99,110,93,101,98,110,113,108,97,110,100,93,101,99,106,107,114,100,90,95,138,108,108,108,95,102,111,93,98,103,101,95,90,101,88,95,90,95,97,96,102,97,96,104,101,97,96,95,90,113,97,96,95,93,91,88,89,114,94,95,113,117,95,102,97,102,92,97,97,93,91,97,95,97,91,104,102,91,97,92,86,99,101,106,103,87,101,97,110,104,97,96,98,111,104,100,106,96,101,101,89,92,102,92,96,99,91,97,94,91,99,98,105,107,99,89,90,92,94,96,98,94,99,106,109,95,99,85,100,99,96,102,95,109,71,96,100,105,87,102,104,97,95,92,102,107,98,96,103,105,94,95,102,101,90,87,95,122,97,92,99,106,101,97,97,104,93,94,102,99,96,95,92,91,92,92,91,92,96,91,104,107,106,96,101,106,98,89,103,110,81,91,95,93,96,101,97,99,100,123,89,105,91,104,102,99,99,91,93,95,114,90,97,94,101,102,105,97,93,100,105,98,95,95,103,97,104,94,101,115,104,102,102,91,106,100,110,103,100,102,102,96,91,90,110,80,101,90,97,112,99,98,103,117,99,100,98,87,97,99,95,113,92,107,100,95,93,115,86,113,106,95,102,92,93,90,105,93,81,107,95,95,102,102,98,95,98,89,99,109,91,97,97,100,104,89,106,89,99,99,91,99,101,102,84,101,93,91,97,84,89,100,108,97,103,102,102,94,98,95,105,99,105,103,105,95,103,73,97,104,96,100,108,110,103,103,105,97,109,106,110,98,106,101,73,102,111,88,103,102,90,103,101,114,104,90,99,103,93,93,100,101,99,99,109,104,93,104,83,94,108,102,88,105,104,105,113,89,96,85,97,89,103,98,100,94,104,78,108,109,108,112,106,101,93,106,96,103,103,98,108,114,96,84,113,105,97,104,99,101,122,106,100,98,68,102,111,97,104,94,111,95,98,110,101,105,105,108,102,97,120,103,104,100,85,72,94,106,83,102,100,101,116,90,96,93,103,117,111,90,97,94,101,99,97,102,85,96,106,97,108,105,102,97,101,98,106,119,112,99,115,105,95,106,111,117,102,92,101,94,107,106,101,100,111,115,107,93,122,92,100,102,98,95,102,96,104,101,99,99,85,98,99,100,95,93,109,101,105,112,107,96,107,96,116,100,97,98,92,98,111,103,93,93,101,101,88,112,109,104,94,97,104,105,107,103,108,92,113,101,106,100,92,117,99,107,102,100,112,108,97,113,104,87,95,103,104,95,109,105,103,91,108,112,104,97,90,93,89,94,105,99,107,90,97,101,104,126,97,98,101,100,104,98,80,95,103,90,107,91,102,91,112,87,103,94,98,98,102,98,100,86,96,104,100,100,78,84,84,115,98,87,86,108,113,107,92,87,96,105,115,83,115,100,98,98,112,107,100,109,95,103,95,103,124,105,103,97,100,96,101,99,101,111,113,102,100,94,92,113,96,98,102,83,97,93,87,97,97,111,100,90,87,90,117,111,104,99,102,88,101,102,85,93,72,98,120,99,108,101,108,91,98,102,88,103,95,61,99,87,102,95,102,100,88,106,91,96,90,98,111,102,104,71,84,112,83,91, +709.8808,105,92,97,93,97,71,101,104,93,106,87,100,91,98,93,103,98,103,108,101,93,96,98,96,104,110,101,98,95,102,90,90,91,110,95,100,96,106,98,93,89,101,94,101,104,105,82,103,101,100,93,94,96,110,94,96,100,98,94,97,100,104,102,89,93,102,100,100,92,104,98,100,96,113,100,93,94,107,99,109,87,101,102,108,106,99,93,102,117,99,90,120,96,96,99,94,103,77,67,91,95,106,90,92,108,93,106,113,90,98,103,86,112,100,95,86,102,103,106,97,103,110,98,102,106,100,99,104,96,101,99,105,94,104,107,109,95,91,94,94,98,102,100,110,75,101,92,106,92,97,99,84,109,68,90,106,105,85,94,95,110,105,94,102,99,118,93,93,104,97,100,107,94,94,92,96,104,90,105,101,99,101,90,101,95,110,94,95,99,90,102,90,92,91,99,90,93,102,96,91,104,98,104,108,90,95,97,100,109,103,95,98,95,103,103,91,102,70,103,97,103,114,90,109,83,98,98,81,101,101,97,100,104,90,109,97,97,101,96,103,95,97,103,102,82,95,96,101,97,98,79,95,99,98,105,92,100,105,82,97,90,92,86,93,87,114,103,103,102,87,101,95,109,100,91,103,97,103,99,99,91,105,91,112,100,100,98,98,97,104,99,93,108,95,91,106,112,90,111,96,112,119,97,97,96,108,105,94,93,95,91,84,98,97,101,87,97,101,99,96,102,104,109,108,88,103,105,97,99,109,82,97,94,110,131,96,101,91,91,110,105,106,92,98,100,94,98,91,100,93,97,99,117,99,87,95,86,109,100,103,96,94,96,100,98,104,95,101,92,120,106,112,95,118,112,106,98,87,102,109,105,110,90,95,100,84,94,93,100,101,95,99,95,97,100,121,87,94,94,99,96,99,110,91,92,92,104,92,94,104,95,99,103,105,99,112,110,97,94,111,96,99,97,106,105,91,94,95,106,104,101,94,99,83,95,102,83,100,94,91,101,98,98,108,90,101,93,90,96,103,108,102,100,108,98,112,108,105,98,97,103,102,116,100,105,110,107,92,101,89,102,100,92,137,97,100,109,113,83,86,92,101,103,98,92,92,100,101,87,105,100,102,103,103,82,104,95,103,100,98,108,88,97,110,103,98,84,83,96,94,109,95,102,96,92,106,72,102,86,87,99,104,81,99,93,104,102,107,105,100,96,89,103,103,105,100,87,97,104,97,99,106,93,99,101,91,111,95,98,92,93,116,102,103,94,106,101,92,98,91,111,106,100,100,89,95,101,105,111,102,86,94,101,91,97,99,101,117,89,98,95,106,91,94,97,108,98,103,110,112,106,110,105,98,106,98,122,104,100,93,84,96,110,100,103,93,96,109,91,101,115,90,109,105,101,108,100,83,98,95,108,101,94,96,93,102,96,99,90,115,84,108,99,106,95,100,100,96,100,88,108,105,83,100,86,97,91,102,97,100,94,106,101,96,97,95,95,101,95,105,109,97,101,92,110,98,93,66,107,106,102,91,89,99,89,103,93,99,102,100,91,105,112,93,94,105,91,88,95,110,113,97,91,100,105,94,100,100,103,97,97,93,91,104,110,110,96,111,105,99,93,95,102,96,96,103,98,90,105,115,93,99,100,103,88,97,93,111,97,110,98,101,101,97,91,101,92,98,105,99,100,93,92,96,98,96,98,106,95,101,102,91,88,94,102,87,115,97,103,96,102,101,103,109,101,92,94,96,90,104,106,102,100,105,104,105,90,94,94,87,102,108,103,105,106,97,102,97,107,120,97,101,100,110,94,91,92,90,106,109,93,91,100,84,103,96,102,102,106,112,105,91,89,102,118,101,91,110,113,84,104,90,91,105,101,92,105,88,104,105,100,96,96,98,99,103,97,92,98,96,97,90,91,103,91,97,93,95,106,105,107,99,100,97,93,96,89,96,100,95,96,88,90,100,105,93,88,99,109,102,97,96,85,103,99,96,94,100,95,92,105,100,100,93,87,106,92,105,111,94,85,105,100,99,105,77,98,98,104,103,112,88,88,92,97,90,101,100,94,100,99,102,115,94,104,100,90,91,97,91,103,106,107,87,97,62,105,103,96,95,110,103,95,96,98,103,88,104,97,100,106,95,95,110,104,98,93,94,80,108,102,109,102,99,98,90,95,96,101,94,102,104,103,113,104,91,90,95,100,100,93,97,97,108,94,83,96,91,100,104,99,99,83,97,105,87,99,84,109,94,104,103,91,106,87,102,97,105,100,105,85,98,98,89,95,73,109,94,98,92,92,98,95,99,108,109,96,87,90,99,101,117,98,99,98,109,91,85,98,96,112,97,109,88,102,92,102,97,99,94,94,106,96,95,92,109,99,101,113,102,92,98,91,97,107,97,95,114,90,108,97,95,95,88,85,100,100,89,104,107,96,92,120,116,90,104,104,94,92,100,95,108,94,96,87,88,109,98,98,104,108,108,76,91,91,91,79,109,97,96,92,109,101,100,92,103,91,89,101,96,92,108,101,97,105,99,98,97,97,103,109,94,93,97,99,95,91,91,104,94,93,110,106,110,108,106,94,91,107,105,102,91,91,95,90,93,104,95,101,97,109,115,100,94,104,104,105,103,78,102,100,88,99,87,106,98,105,92,97,91,100,83,104,94,94,96,95,89,114,113,100,100,107,105,95,101,107,100,106,100,111,95,95,81,98,104,119,90,113,98,105,110,98,102,80,97,110,112,123,95,105,96,98,105,100,106,106,90,101,111,106,103,107,101,100,102,92,106,103,104,104,101,107,103,100,100,99,102,103,110,101,99,102,104,107,95,96,100,100,101,91,89,91,98,95,91,109,97,98,100,113,102,104,102,90,107,92,82,101,104,107,96,82,106,95,98,96,92,106,111,92,96,104,108,89,99,101,105,105,98,104,101,91,69,97,113,96,104,95,104,104,94,104,96,85,102,96,83,102,100,101,105,98,87,95,107,104,94,96,93,108,102,98,100,101,112,115,100,100,108,95,103,94,103,108,109,100,91,107,89,96,85,95,94,98,91,107,102,98,93,118,105,112,101,101,87,95,104,98,103,113,102,79,109,104,104,93,102,106,96,102,97,99,116,96,102,88,109,101,101,85,82,91,105,113,111,95,100,97,94,100,88,104,100,102,105,77,95,109,110,101,93,107,98,94,102,90,105,88,99,106,110,102,89,101,94,89,113,92,97,93,94,90,96,96,79,99,94,110,101,101,110,70,99,118,91,97,97,96,89,101,99,98,91,101,91,96,96,113,102,116,82,107,104,97,100,105,104,117,93,99,104,98,92,76,109,96,92,92,97,88,111,98,97,88,100,102,100,92,104,104,94,106,98,91,101,94,94,98,98,88,101,110,111,97,108,104,104,100,105,87,94,105,93,92,92,77,93,99,96,111,100,97,100,91,103,95,107,110,95,99,102,97,95,91,86,105,101,101,91,113,98,100,93,102,102,94,118,116,98,98,98,94,102,96,109,99,126,100,106,88,99,67,99,96,104,99,102,98,91,89,96,94,109,94,97,104,109,93,107,108,95,74,119,94,105,91,102,93,95,98,101,105,92,107,97,112,112,95,98,102,100,96,103,82,106,93,91,97,111,88,97,109,109,101,106,91,94,98,95,95,94,119,112,103,105,96,102,98,109,95,109,98,99,103,101,100,99,102,104,104,96,105,107,109,96,110,84,108,101,90,80,98,92,111,104,107,98,104,86,98,91,97,98,104,91,91,98,98,102,85,101,88,93,106,105,95,95,99,100,98,110,114,109,95,100,100,90,117,108,104,99,100,88,92,97,100,103,97,99,85,108,102,95,97,104,104,90,95,83,105,110,97,102,73,101,103,99,98,87,90,100,90,103,102,93,102,96,97,93,94,97,100,103,104,97,107,96,95,98,104,92,96,109,98,89,96,116,92,88,87,97,94,98,87,90,105,93,87,106,109,88,97,95,110,100,114,108,89,106,109,99,96,97,96,98,101,98,104,96,104,99,97,95,97,98,104,97,91,107,92,102,95,95,100,105,99,94,92,99,95,102,102,90,107,97,98,104,102,101,90,106,73,103,104,98,80,97,104,106,102,102,103,96,103,111,109,112,107,95,96,94,97,102,97,101,108,104,101,99,101,109,97,98,91,108,89,100,99,91,104,94,115,103,107,104,97,92,107,94,90,90,95,97,107,97,99,99,119,105,105,98,105,103,105,103,105,98,97,114,97,102,99,111,90,99,86,96,103,90,106,103,102,97,95,93,103,96,89,105,108,111,110,91,99,91,90,107,104,103,86,102,127,105,108,95,101,100,95,87,100,92,98,96,123,87,93,103,96,105,103,98,99,64,100,102,100,97,106,112,100,96,72,107,108,100,104,90,105,99,95,84,99,107,98,92,99,94,102,102,101,103,100,97,113,95,98,103,101,101,96,95,109,82,109,80,110,117,89,98,96,99,101,92,116,101,96,104,99,102,102,109,101,100,103,104,103,102,107,101,108,99,108,108,84,102,109,100,92,106,93,89,96,98,74,111,94,103,99,98,104,101,95,111,102,99,100,103,96,108,92,84,104,105,93,96,103,93,111,103,107,106,90,105,113,87,98,101,92,93,107,99,112,93,92,98,124,97,110,93,107,100,114,101,109,93,108,96,95,95,93,95,93,104,98,92,104,101,102,109,104,112,103,99,104,97,118,90,100,97,98,87,94,104,100,100,87,93,88,108,116,88,89,92,102,96,101,114,94,85,108,100,97,92,115,108,97,95,101,97,100,78,97,88,95,95,91,96,92,94,102,92,93,92,106,92,99,94,99,100,96,94,96,102,99,108,99,92,101,95,107,96,106,105,100,96,73,102,102,88,113,86,79,89,108,109,104,93,83,93, +710.02216,121,101,105,97,103,100,104,102,80,104,102,90,95,96,103,94,101,94,105,108,110,100,101,112,89,103,97,118,98,99,95,92,94,112,117,84,107,95,100,103,102,99,96,101,101,110,109,98,93,102,95,106,122,101,95,113,100,104,105,104,90,110,96,85,105,92,97,99,100,99,109,101,92,107,86,102,94,111,102,102,118,107,102,99,100,100,120,108,97,100,100,89,104,97,97,107,97,81,101,84,104,89,103,94,88,94,100,100,97,93,103,97,107,109,94,101,118,62,87,89,98,87,98,106,98,101,94,107,102,95,116,106,107,100,102,101,99,110,92,90,98,103,100,97,94,101,104,104,92,104,104,109,99,94,111,94,109,102,104,104,111,100,98,98,92,104,95,101,98,84,85,110,93,102,101,91,109,93,104,99,100,98,105,101,108,97,94,85,98,100,103,98,105,97,100,97,112,101,118,102,99,95,99,100,112,102,91,110,107,96,97,107,89,99,101,98,104,107,101,105,91,106,99,94,92,95,119,100,94,91,104,104,97,100,101,102,95,95,113,76,93,91,95,110,106,109,92,88,100,95,100,105,108,105,101,107,114,106,101,108,102,100,105,93,88,101,92,101,93,94,106,112,90,72,104,119,91,100,104,103,102,104,101,100,108,100,111,97,81,96,103,96,99,113,103,66,103,120,91,97,106,96,104,117,94,98,106,117,100,100,89,99,97,96,83,95,107,99,105,92,86,98,113,93,95,106,105,91,100,98,102,100,80,105,102,104,105,99,93,96,100,97,85,109,94,95,97,100,99,127,104,94,106,105,104,99,98,95,102,92,114,95,107,103,101,102,105,113,109,100,95,103,112,99,97,95,104,108,103,110,104,107,110,105,114,101,96,97,96,101,110,99,99,102,100,104,104,96,97,116,92,114,99,105,105,95,94,106,111,106,92,100,97,105,104,84,99,109,107,110,100,99,108,93,93,93,86,86,104,102,108,92,107,91,101,101,101,99,93,100,104,100,95,107,98,95,96,93,95,106,95,94,100,108,104,106,85,102,113,110,102,107,89,101,104,102,94,101,104,107,104,99,103,96,109,98,93,96,96,106,113,94,102,98,114,89,91,107,98,102,85,104,98,103,94,102,97,91,104,94,95,113,102,105,111,94,92,96,109,101,121,96,103,105,95,95,103,99,93,106,93,108,93,101,106,95,104,88,98,99,96,103,102,101,101,104,97,95,101,110,104,101,96,79,113,96,101,103,103,94,101,104,111,101,101,104,106,101,105,94,111,97,99,103,108,100,98,105,99,88,91,95,91,74,109,108,99,95,107,102,96,98,100,96,96,114,103,95,102,102,95,100,92,102,103,87,103,108,104,103,101,96,91,100,113,95,93,99,97,99,88,93,110,120,94,96,104,101,114,100,102,97,120,96,105,112,87,104,101,109,94,104,97,100,95,95,95,96,109,90,104,112,94,91,102,95,92,102,96,98,100,97,103,100,101,100,120,96,104,105,103,99,128,95,96,98,95,97,107,99,100,95,97,108,97,106,96,106,107,102,105,77,101,97,99,84,94,98,102,104,98,95,108,99,109,97,94,92,104,105,97,90,106,106,97,121,98,100,113,104,97,104,118,91,97,108,99,94,102,102,98,83,105,113,99,94,92,100,102,112,94,102,106,92,97,92,101,101,109,71,110,103,89,95,105,105,103,94,98,98,101,104,101,110,96,103,100,96,96,102,99,107,97,103,88,103,97,97,109,93,101,106,116,102,96,99,124,105,100,103,95,97,99,106,92,99,100,106,98,107,94,102,98,111,108,103,95,102,103,110,87,91,99,97,104,111,105,115,106,96,105,115,93,95,95,116,107,107,108,95,97,109,112,98,103,98,105,90,97,103,113,100,101,100,71,129,104,109,96,87,98,104,107,102,97,91,97,109,94,96,103,101,96,121,89,81,101,101,116,94,102,115,80,105,106,102,98,94,113,98,91,112,97,111,106,113,104,83,95,98,99,99,96,104,103,102,101,131,101,100,103,101,96,108,107,98,102,108,107,104,110,110,101,97,102,97,108,120,104,99,111,96,91,89,100,112,97,109,98,106,98,111,79,117,106,95,103,102,91,105,99,96,92,114,92,107,98,102,103,116,106,104,112,103,100,88,102,105,109,100,103,105,95,105,105,101,96,102,87,95,94,98,99,96,106,93,107,98,95,108,97,107,105,97,92,90,95,100,87,91,96,110,106,94,102,103,95,94,93,104,102,93,106,103,98,95,95,63,94,102,103,117,91,96,91,100,98,100,87,118,93,117,100,95,106,110,104,97,107,105,109,102,96,96,110,110,101,104,103,94,102,102,103,103,106,100,97,105,99,96,91,95,105,102,83,96,103,108,97,94,102,105,95,99,91,108,108,99,112,105,97,101,106,136,87,104,100,103,99,98,97,107,95,95,93,90,101,97,94,114,98,104,85,77,102,99,102,93,105,101,114,98,98,92,103,100,106,111,105,98,95,100,105,101,102,109,83,111,101,109,102,92,100,101,99,96,92,98,106,103,97,97,97,102,113,99,88,101,92,92,97,87,103,91,101,94,112,113,89,96,108,106,94,106,107,110,86,95,119,93,124,99,102,100,106,88,113,97,102,94,103,104,98,95,77,101,101,91,102,110,97,90,102,104,100,113,102,98,101,106,89,101,99,95,100,98,107,96,105,104,87,98,110,100,92,109,102,100,94,97,102,97,105,98,99,97,107,113,94,104,113,100,94,94,113,98,110,106,96,82,103,97,92,105,96,96,92,99,101,91,104,105,92,116,94,108,121,106,92,104,110,95,106,96,102,105,106,102,112,103,94,99,97,105,94,87,95,108,95,101,108,99,87,91,104,110,100,99,102,106,104,104,102,100,102,95,100,98,104,106,111,107,105,104,99,101,96,104,104,102,99,97,112,101,92,87,92,98,95,112,96,111,110,106,99,99,81,119,87,93,103,85,88,96,105,108,102,102,98,101,101,100,91,113,100,109,85,105,95,92,96,105,93,108,105,101,99,107,99,106,100,98,99,95,102,93,95,116,123,110,96,100,105,103,96,105,101,88,101,94,92,101,104,97,99,92,109,115,98,101,88,116,97,96,101,105,95,97,92,103,76,104,94,98,98,90,87,106,93,109,96,99,104,106,98,99,104,98,109,102,104,103,105,103,95,101,99,102,110,79,103,99,98,111,106,103,90,89,95,97,101,105,103,102,105,93,104,105,110,94,97,102,90,100,104,83,108,110,111,94,98,97,109,105,116,98,92,97,103,100,96,90,108,114,104,111,102,95,97,99,88,106,91,114,101,108,90,97,91,93,98,107,98,103,95,102,100,102,101,100,101,108,97,88,104,108,100,74,102,112,107,94,95,107,106,113,101,104,105,99,85,97,96,97,96,103,99,90,91,111,102,96,98,97,96,101,103,101,94,97,91,107,103,96,91,95,96,94,101,100,100,77,117,93,100,95,100,99,99,99,103,106,100,97,109,105,98,98,87,95,100,80,100,109,103,101,102,91,81,114,83,103,104,98,112,108,95,99,94,97,102,94,102,112,70,113,105,107,93,98,95,96,109,97,107,104,101,98,95,112,99,99,109,100,100,94,98,102,98,102,108,104,109,96,114,100,101,102,100,100,99,110,104,110,89,95,91,109,95,109,102,104,94,100,98,96,97,105,108,101,101,99,106,108,110,83,96,105,93,96,96,100,91,100,92,115,102,104,88,107,105,85,95,109,99,98,91,93,99,88,103,70,95,104,112,105,99,109,109,106,95,102,108,97,92,108,109,100,98,101,101,94,106,107,90,102,94,118,95,105,97,102,99,82,88,104,107,104,103,101,123,99,112,94,100,105,105,102,98,95,104,100,107,101,101,105,91,84,104,101,83,93,94,100,94,105,100,105,96,103,102,113,99,104,90,103,102,96,94,91,80,104,96,96,88,95,118,103,94,99,107,97,107,104,96,98,105,96,92,99,104,117,95,102,98,100,93,101,91,98,110,96,97,103,93,105,108,87,100,121,99,98,94,90,99,99,97,100,100,88,88,102,91,105,103,95,87,102,105,106,104,95,94,100,108,103,98,100,100,112,111,95,110,100,96,97,113,94,107,94,99,110,95,106,102,109,102,97,71,94,87,102,112,96,93,106,113,106,88,92,106,97,83,92,99,109,96,110,102,116,96,98,102,88,95,105,97,92,99,94,100,96,101,90,102,98,104,109,102,108,106,94,124,95,94,91,73,96,97,92,95,95,96,113,95,86,98,93,104,101,95,108,105,138,100,77,98,100,105,105,85,98,100,104,93,101,92,102,95,98,103,91,95,109,99,104,95,94,109,99,91,91,113,96,95,102,100,101,99,102,116,106,97,117,85,101,94,114,96,87,88,97,87,97,98,103,83,101,92,81,100,109,91,103,107,101,103,99,96,103,97,102,97,102,100,83,96,95,111,91,97,105,97,112,92,108,93,115,110,103,89,84,83,96,106,108,93,100,94,105,82,103,107,109,102,116,96,97,98,102,90,111,103,94,105,100,93,135,106,96,97,99,115,92,95,106,121,91,89,89,91,94,109,84,98,101,95,81,99,101,87,107,105,106,91,106,107,96,100,106,85,103,98,107,91,106,96,93,110,97,101,101,94,105,94,113,94,98,103,100,102,110,95,88,98,98,118,109,105,84,95,104,112,107,101,98,114,98,88,89,101,104,103,97,103,105,105,96,108,92,109,91,73,96,100,93,104,105,101,87,86,94,106,101,114,94,92,110,103,104,92,106,84,125,99,108,93,97,103,115,125,93,104,107,103,99,103,98,95,103,100,97,91,91,90,106,93,100,99,98,104,94,99,95,91,102,108,106,104,102,106,101,109,99,113,101,101,91,95,113, +710.16351,104,86,105,95,94,101,96,105,95,100,101,93,95,105,106,102,99,105,103,106,99,104,99,99,92,99,91,98,96,109,82,86,64,79,90,87,96,104,101,99,95,98,98,99,104,96,102,101,94,98,99,91,99,109,100,104,107,95,107,87,93,96,95,95,107,108,100,103,96,105,112,85,97,97,103,111,87,95,107,95,98,87,99,98,105,98,101,98,107,95,127,100,108,99,99,130,101,96,100,108,92,105,100,103,97,99,103,94,88,97,103,103,110,104,112,95,97,100,98,103,112,94,100,106,103,99,96,96,102,100,92,113,97,101,110,108,96,93,100,114,114,114,87,102,90,80,87,99,97,88,75,97,110,92,88,96,96,100,111,95,98,96,109,86,100,95,96,101,94,93,98,95,95,96,97,97,93,102,107,96,101,101,100,112,94,101,88,90,97,105,105,100,98,99,91,105,96,108,104,95,92,88,103,98,93,99,109,100,102,103,102,100,91,97,94,110,95,105,97,104,106,109,100,97,97,98,107,101,95,106,96,93,96,104,103,100,97,92,108,94,94,105,110,110,95,94,95,108,102,99,106,100,72,105,98,101,91,94,102,92,93,115,100,90,94,111,87,88,93,92,76,97,109,105,105,99,101,106,97,91,108,104,93,101,109,103,89,96,76,95,88,91,91,90,101,113,103,100,101,101,91,99,101,101,90,94,93,98,104,110,98,98,101,109,86,98,103,102,97,93,92,86,89,98,93,96,94,92,103,109,87,101,97,95,91,101,94,104,92,103,102,98,105,98,108,92,98,76,90,91,115,94,96,103,96,103,102,115,97,95,108,91,103,97,108,96,84,98,86,95,89,103,113,96,90,83,94,97,102,94,92,99,84,89,103,97,91,100,93,99,108,89,95,96,100,99,104,99,88,101,92,98,104,97,101,101,102,101,103,96,96,89,110,96,114,108,97,97,101,87,102,98,93,103,100,91,92,101,94,99,104,93,85,101,108,97,84,96,95,99,101,90,109,101,95,112,96,94,108,96,92,105,100,102,98,87,106,92,94,86,108,101,91,108,110,102,96,103,101,82,106,93,108,105,101,97,97,98,91,104,91,89,101,105,86,81,105,91,98,103,92,104,100,89,86,91,96,101,92,88,103,101,101,94,106,98,96,101,105,78,100,102,114,110,99,94,94,93,97,98,104,105,96,103,110,97,99,86,108,101,88,104,74,108,100,107,99,91,108,101,101,97,100,98,104,111,100,105,94,91,101,116,92,83,99,101,100,102,95,97,109,95,102,100,90,110,93,119,90,90,89,89,90,97,84,93,103,90,96,108,86,106,90,113,89,92,102,93,105,102,102,101,98,100,95,105,89,93,98,93,106,97,85,106,96,101,98,106,99,97,101,93,101,93,95,95,106,104,97,102,98,105,97,100,115,117,96,98,103,100,100,98,101,99,96,108,102,68,90,108,93,92,98,74,92,82,100,99,91,106,86,95,99,94,98,91,85,101,87,108,100,98,103,107,96,97,106,102,95,110,99,101,98,93,102,103,103,86,96,94,109,98,104,89,93,94,97,100,94,94,105,105,88,110,104,96,92,101,97,92,95,104,101,100,94,125,99,108,100,94,100,95,103,87,95,93,106,101,97,93,95,86,97,101,90,93,98,102,93,95,110,108,101,102,93,101,100,100,104,92,103,83,92,101,91,91,105,89,89,103,116,102,103,99,100,101,102,101,104,99,100,93,93,103,108,95,90,99,92,97,100,107,105,98,102,101,109,99,109,100,82,102,110,87,91,101,98,96,96,102,104,101,94,110,105,102,98,87,101,106,94,102,90,99,99,96,103,102,104,92,104,100,98,105,105,103,102,92,104,95,101,96,109,101,101,95,105,98,105,94,108,99,104,100,102,106,96,116,101,102,95,99,97,88,90,101,101,103,96,105,90,102,105,106,95,106,103,100,100,87,101,96,92,99,109,114,84,98,75,103,87,98,97,106,87,83,107,88,91,99,90,111,92,101,96,102,105,110,97,90,101,107,97,96,99,87,83,103,97,101,99,100,108,96,103,96,96,108,86,82,101,111,101,97,95,63,102,102,90,92,99,100,106,96,103,91,100,102,90,97,88,109,113,110,66,97,97,91,91,89,92,103,105,112,101,95,103,96,95,96,88,95,103,104,103,105,100,87,87,105,84,114,103,97,100,91,94,103,97,102,102,94,93,94,103,103,112,89,100,100,102,109,99,104,92,100,93,91,112,103,93,94,98,110,94,104,102,102,80,97,98,100,88,93,104,122,108,86,89,104,97,102,100,95,103,98,99,107,104,103,104,97,96,94,98,97,99,88,91,97,105,91,94,97,100,101,87,102,100,88,93,110,96,101,105,95,118,83,97,110,101,96,101,109,76,99,104,108,94,102,99,109,106,101,105,98,98,101,91,95,99,103,100,100,105,92,96,107,102,99,110,95,96,105,96,96,76,99,116,97,98,81,95,101,90,100,104,95,106,103,99,103,97,90,99,97,91,89,91,91,103,92,91,96,105,93,100,84,97,98,106,99,93,102,99,91,100,95,109,91,113,103,103,98,94,91,101,102,97,99,105,96,96,112,102,98,92,108,90,91,112,99,98,94,91,101,99,101,110,103,96,99,99,98,96,112,98,91,96,113,102,106,107,106,94,100,90,89,96,108,102,83,97,103,96,73,101,93,94,131,80,99,99,102,97,99,65,106,91,91,91,117,101,97,103,100,108,96,95,100,95,76,115,100,110,103,94,108,104,109,98,106,111,96,108,96,95,106,97,94,99,98,78,117,111,99,102,111,98,104,101,106,97,89,97,84,96,98,102,106,103,106,101,105,109,105,100,99,87,88,100,90,101,99,104,103,89,107,102,108,82,102,79,105,98,112,107,117,104,105,98,97,113,84,100,107,108,96,100,119,105,95,96,103,101,102,98,82,99,116,113,91,101,112,87,75,106,104,81,101,83,94,74,110,98,99,94,100,126,87,103,99,100,98,90,91,100,103,101,119,108,100,97,109,104,95,101,100,87,96,92,106,110,105,103,113,103,93,121,102,99,104,94,98,97,99,106,102,104,92,95,102,103,96,101,94,103,101,97,105,105,110,97,100,94,94,99,93,92,102,108,89,95,95,88,93,84,95,90,95,93,92,100,100,100,95,94,90,104,103,98,104,101,102,98,104,108,98,102,99,98,100,89,95,109,90,96,100,97,103,112,94,102,93,97,119,97,96,94,92,103,97,98,106,109,100,91,104,95,102,103,99,111,92,89,101,96,108,95,91,105,91,91,94,117,101,110,95,108,92,92,98,89,98,103,100,102,96,94,100,83,101,97,92,98,96,88,106,100,100,100,103,100,98,91,100,96,95,91,91,97,99,91,107,97,105,103,97,108,101,99,101,89,101,109,90,96,104,106,103,102,99,98,100,100,76,111,93,94,95,99,101,99,97,101,98,105,91,103,98,100,105,99,97,95,94,93,98,99,93,101,103,99,99,93,81,70,99,97,88,108,114,112,102,94,109,97,96,95,90,75,106,91,102,96,112,103,109,88,109,100,113,106,83,101,102,100,106,89,90,108,86,97,99,117,105,96,103,95,95,113,99,78,74,72,102,100,91,96,111,97,128,110,94,102,109,92,96,97,104,95,107,88,96,103,100,101,103,100,99,103,101,93,93,115,99,106,87,109,117,109,112,112,106,93,91,106,72,105,91,85,98,102,100,105,111,109,106,96,96,96,123,97,99,103,96,101,98,112,103,97,95,93,105,103,103,102,116,102,104,98,113,91,109,102,92,95,126,88,90,103,88,106,100,100,106,96,105,97,93,96,103,99,92,92,90,103,86,96,99,78,100,94,87,99,117,121,95,96,91,103,97,84,97,101,94,97,102,98,104,103,109,105,91,93,80,113,91,112,71,102,113,117,90,98,103,102,93,104,105,92,109,96,95,96,91,109,103,95,103,107,109,88,100,96,94,96,88,91,108,110,111,104,96,85,93,106,107,94,100,100,92,98,94,102,102,99,96,107,96,108,103,91,92,101,101,77,98,92,88,106,95,105,89,94,103,108,96,104,93,100,96,91,95,100,99,102,94,92,101,103,113,86,112,100,94,94,99,124,88,100,98,95,91,93,95,103,100,105,92,111,97,93,105,99,100,107,103,108,93,119,100,93,105,90,101,106,102,93,101,105,92,92,99,99,82,92,104,97,107,120,97,98,95,93,92,97,96,99,97,94,102,105,98,94,91,103,96,84,113,112,95,113,103,94,107,101,93,95,108,95,95,95,93,114,93,109,101,101,117,96,102,104,109,100,74,105,108,99,96,98,102,91,90,89,99,99,100,111,88,98,92,102,98,92,102,104,91,99,87,102,101,105,113,98,91,102,97,94,94,106,91,114,100,99,95,80,101,85,102,97,93,88,105,106,88,102,104,98,109,98,92,102,96,96,96,94,89,107,91,110,94,100,110,98,93,100,110,105,93,103,99,98,116,105,107,106,100,92,105,100,90,88,104,93,107,101,96,95,103,95,111,93,89,96,117,110,100,91,93,85,106,112,97,94,133,100,94,99,95,95,89,98,102,102,110,95,102,95,105,107,97,101,97,117,106,104,92,90,96,101,99,83,113,103,94,112,106,94,97,108,94,99,113,92,97,105,97,101,126,100,89,94,87,83,101,98,108,98,113,99,93,92,95,105,104,92,95,88,96,94,109,84,104,101,97,96,81,101,96,114,85,94,108,94,79,109,93,93,97,99,110,106,95,96,100,85,109,80,102,89,97,91,96,87,102,99,93,101,96,93,82,106,99,102,105,93,102,83,88,92,106,93,121,104,94,96,90,105,87,99,106,76,102,95,86,93,96,84,89,101,97,94,105,91,113,106,98,102,90, +710.30487,99,109,109,97,91,96,97,98,109,93,94,74,110,88,98,95,92,98,104,92,84,92,94,110,102,97,104,102,100,98,100,87,93,96,110,103,106,101,96,106,98,107,87,101,96,100,98,98,97,108,94,94,97,92,80,97,111,94,107,99,100,116,95,89,101,89,96,109,96,102,107,97,98,99,101,113,95,100,106,93,105,100,98,90,105,102,94,95,101,107,96,108,105,101,94,106,95,104,101,102,101,101,87,97,100,100,101,95,90,97,97,91,100,67,101,100,99,100,97,100,100,109,90,110,107,94,114,93,99,93,99,104,98,91,101,107,94,97,92,107,110,105,93,90,101,91,108,94,88,93,92,97,100,95,107,89,93,92,97,95,76,83,93,90,96,100,90,98,106,103,92,96,106,101,94,100,107,94,95,102,104,98,101,103,93,107,102,79,109,110,93,91,99,86,100,99,101,106,101,93,91,109,95,115,94,102,98,119,102,113,102,91,100,109,101,100,103,101,91,116,98,104,91,97,97,104,111,105,100,103,95,92,110,96,89,113,98,101,86,97,104,105,92,94,89,136,110,106,101,87,90,100,88,111,96,96,102,102,95,108,90,102,94,103,79,95,95,108,116,90,84,91,102,102,100,99,103,105,97,103,96,96,101,106,105,106,103,112,95,100,104,102,103,92,105,120,110,104,82,102,103,89,94,106,104,108,107,109,117,101,92,111,131,102,102,113,104,101,94,102,109,86,90,83,96,98,95,83,101,86,97,93,120,103,95,105,96,107,96,99,101,92,105,95,95,103,113,101,107,99,106,95,86,82,106,101,107,104,97,117,101,92,95,94,101,91,103,109,111,111,95,103,104,106,100,105,108,110,106,108,98,103,94,100,91,96,91,106,103,79,109,102,96,91,116,104,103,106,104,102,87,108,97,103,92,104,104,121,100,90,90,94,108,100,105,99,103,99,124,94,110,92,105,100,96,105,93,101,94,96,98,106,103,99,102,96,91,102,108,87,104,91,101,98,90,91,97,102,99,102,95,97,102,97,95,100,105,97,97,101,106,102,99,110,92,97,108,92,111,101,99,113,113,95,113,87,94,117,94,105,105,107,97,103,98,84,100,95,95,89,109,104,94,98,83,97,107,89,95,91,110,91,99,108,107,83,98,100,113,102,99,109,106,109,97,92,101,94,102,101,103,102,96,125,98,100,102,101,91,104,100,112,96,101,103,92,103,102,102,99,99,97,93,103,114,99,98,105,108,101,102,98,90,96,101,95,97,89,98,90,106,91,96,109,92,105,100,92,79,99,100,94,104,105,107,98,101,108,109,107,96,98,104,107,98,95,96,103,92,106,107,103,121,91,106,102,110,104,95,113,98,94,102,99,108,93,98,100,99,97,104,97,98,105,100,91,111,104,106,100,95,102,103,103,111,103,100,104,105,95,97,101,97,99,90,113,109,104,114,105,101,87,106,100,80,87,111,90,107,101,92,111,97,108,96,99,102,108,102,98,98,97,94,115,95,93,91,102,97,96,109,107,102,94,102,111,103,103,105,103,110,104,95,93,109,102,94,110,82,94,90,102,99,98,101,95,105,113,96,70,109,73,89,110,101,105,100,110,98,101,100,91,108,94,84,91,104,100,109,93,103,101,98,105,91,100,98,101,92,105,111,104,95,98,118,95,100,107,98,98,97,94,102,92,96,98,100,96,97,105,74,117,91,91,98,99,104,82,99,94,91,98,95,114,95,103,104,98,99,93,94,88,99,99,102,101,108,83,107,106,113,105,112,102,101,103,99,105,98,99,95,102,108,112,104,102,104,105,110,116,80,100,89,100,96,120,108,92,95,98,100,98,97,109,102,100,98,96,103,103,91,103,98,104,94,109,106,116,96,103,106,99,102,104,90,102,97,102,90,99,105,99,95,96,104,92,86,101,108,101,98,89,102,97,101,107,98,84,101,108,101,99,88,99,106,100,94,110,106,103,108,117,101,107,90,96,95,77,92,97,106,104,99,96,100,70,102,113,95,96,99,95,107,107,107,117,107,97,101,96,102,89,105,95,104,91,89,101,97,104,102,94,107,102,100,105,94,103,98,98,93,105,102,101,110,104,106,95,108,102,66,101,98,99,97,111,100,99,98,105,99,103,78,114,96,102,106,101,93,100,98,112,110,127,77,105,100,104,90,95,95,110,106,89,107,114,96,98,102,100,108,104,103,99,99,102,105,104,102,110,99,89,87,82,106,109,95,85,99,100,96,95,102,95,103,81,94,113,108,103,105,105,83,109,108,108,101,90,97,107,101,87,104,90,109,106,103,99,95,108,95,114,96,101,106,105,100,98,113,100,97,113,99,91,94,91,101,94,107,94,83,96,81,107,104,93,96,114,99,102,111,89,104,87,88,90,91,118,99,124,94,112,106,95,105,108,109,99,99,97,76,109,94,101,95,89,89,94,110,91,113,114,90,94,103,95,97,88,111,89,101,73,101,93,95,88,95,95,106,118,111,93,99,104,95,106,104,104,99,99,99,86,108,100,104,100,99,106,99,95,90,101,96,98,100,86,103,91,88,99,98,113,86,91,98,99,90,101,99,88,93,91,102,107,83,94,101,103,101,89,112,94,104,84,111,105,95,104,104,91,124,90,92,84,94,107,87,98,113,109,110,101,103,113,89,99,106,94,101,83,120,83,100,103,98,99,120,101,97,95,102,101,109,90,98,103,95,92,89,91,96,98,104,102,100,113,88,108,99,106,106,99,101,107,104,104,98,109,103,91,116,110,96,100,102,105,96,110,106,98,109,93,97,99,107,95,101,103,91,113,102,100,109,91,100,102,103,104,98,92,102,119,100,93,101,104,109,105,109,105,95,104,104,103,100,92,101,98,104,108,91,104,112,103,97,102,98,99,107,104,103,102,103,103,97,84,95,102,118,99,99,111,95,98,104,95,90,86,94,102,92,109,100,99,85,101,98,101,103,102,119,103,97,94,98,111,105,98,113,97,102,100,93,98,111,103,95,106,91,105,100,98,67,113,116,94,101,101,99,107,93,105,99,92,101,77,98,108,109,94,93,105,94,95,92,92,70,95,103,100,91,100,109,87,104,94,111,100,96,106,100,112,101,112,90,104,94,95,86,82,102,96,107,103,98,93,109,105,86,101,98,98,100,106,97,96,103,105,115,103,96,100,94,108,89,105,99,111,115,101,98,92,100,96,100,108,93,96,89,100,89,103,95,84,93,91,98,93,98,100,103,83,107,100,97,95,98,108,96,99,101,90,103,79,101,102,94,107,89,97,110,83,92,106,88,106,108,96,83,97,104,81,91,108,96,98,104,99,91,99,108,99,100,89,96,98,104,93,99,108,94,113,111,104,82,109,90,105,108,89,97,101,89,102,104,95,103,102,102,100,98,108,101,93,93,102,66,103,99,92,94,68,96,103,105,94,86,102,90,94,101,95,102,97,95,75,102,90,106,96,106,97,100,110,100,99,109,87,100,99,102,99,97,80,99,95,105,94,110,100,108,101,99,102,98,72,107,113,86,102,88,96,109,112,87,98,92,102,109,87,105,106,88,109,101,112,99,96,110,87,91,114,103,101,96,103,102,92,91,107,88,95,95,103,92,92,105,101,106,100,93,105,107,85,110,97,99,101,105,102,107,106,88,109,101,107,106,118,99,87,99,91,105,92,92,99,103,93,106,103,103,92,103,102,95,102,83,96,100,92,105,78,106,92,100,95,100,102,99,99,100,103,108,92,90,103,93,104,105,95,106,92,101,107,96,96,107,105,107,96,93,97,94,98,115,98,98,111,102,101,106,97,101,112,108,113,84,91,90,102,97,96,96,96,99,104,93,100,106,80,110,83,90,111,109,104,96,104,94,96,91,97,100,79,96,92,97,91,86,90,103,92,94,103,90,97,106,96,102,101,97,89,98,104,82,102,106,83,99,95,112,96,105,115,91,100,91,94,106,96,96,103,92,103,102,103,101,100,92,107,88,96,106,106,109,96,110,93,95,100,104,90,84,105,91,102,109,96,94,99,102,110,80,109,106,95,95,116,111,104,91,92,95,102,96,107,95,93,105,95,116,117,105,99,105,101,95,98,105,94,107,66,98,104,95,100,92,95,70,113,93,91,100,102,111,98,99,111,104,89,109,105,91,87,107,98,113,103,90,107,99,91,115,91,91,103,92,105,102,97,132,103,99,107,88,105,101,90,88,113,96,96,94,97,95,90,95,88,103,95,90,104,104,106,91,96,95,95,95,108,91,84,107,99,83,99,107,91,86,101,98,106,117,100,103,94,94,105,101,100,114,104,102,97,98,97,112,103,98,110,99,98,112,112,104,101,105,103,99,107,104,105,114,106,89,98,102,97,97,83,109,94,94,104,116,83,111,109,98,90,109,89,92,101,99,86,99,106,96,95,113,95,98,95,100,108,95,102,103,100,98,97,98,101,94,94,106,92,97,102,85,104,103,113,101,116,90,104,88,100,99,93,85,105,111,107,98,88,98,105,96,92,100,69,102,107,91,93,92,105,99,101,87,101,95,109,108,101,98,105,103,108,99,93,102,96,98,97,81,111,98,89,112,108,94,104,102,114,98,90,91,98,106,98,115,113,101,107,107,97,94,108,95,98,100,100,109,104,101,96,85,93,96,91,96,93,88,90,102,94,95,106,66,100,87,97,100,90,100,107,92,115,95,107,95,91,95,91,90,103,96,98,93,88,92,110,103,101,101,101,107,102,94,105,105,95,99,101,104,113,94,104,102,90,104,105,105,111,109,100,110,96,91,95,94,104,89,104,104,108,103,116,97,93,102,98,98,98,96,96,83,113,96,100,82,102,87,110,93,90,99,110,100,102,92,108,105,101,105,94,105,123,103,100,97,100,87,103,96,101, +710.44623,102,91,92,113,97,100,86,81,113,102,96,91,112,92,102,109,100,97,108,95,100,101,105,103,101,104,83,102,109,113,90,94,102,100,98,108,105,90,89,91,95,95,95,92,107,110,101,93,105,107,104,84,96,85,107,90,113,99,116,88,88,111,92,96,96,98,95,92,111,88,107,92,88,103,109,112,96,95,96,89,103,95,100,93,99,105,107,97,97,116,99,103,94,97,99,98,103,102,95,99,86,95,98,93,105,95,100,95,97,96,93,113,98,103,110,107,95,97,115,95,113,111,105,98,113,100,111,98,103,94,91,108,101,101,107,110,109,95,99,93,94,109,96,86,109,98,104,99,96,94,103,108,106,106,98,97,106,109,104,91,94,94,108,93,117,103,89,97,106,103,102,104,95,102,89,104,87,102,105,111,104,101,102,106,97,92,99,98,105,112,99,110,83,95,108,103,90,101,97,96,106,101,97,90,100,92,101,110,107,109,98,102,100,112,103,106,100,107,99,110,102,109,98,95,95,130,109,107,96,99,90,105,95,97,104,94,96,106,99,114,98,95,98,110,100,110,103,91,86,105,102,95,88,100,98,104,95,102,93,97,97,101,99,105,93,104,108,97,108,95,103,108,109,93,92,100,103,101,108,97,99,101,96,105,101,87,92,93,114,100,97,103,96,110,99,101,91,95,91,101,80,100,100,99,98,98,104,105,98,111,86,106,83,104,106,93,116,97,100,101,102,98,97,99,105,85,105,102,93,105,109,96,101,100,104,99,98,94,102,88,97,102,95,101,91,102,117,98,90,97,97,95,109,104,111,89,105,88,103,105,106,95,100,100,94,95,106,103,97,125,104,100,105,111,98,113,102,104,98,107,101,105,97,116,97,100,105,103,103,109,106,92,107,102,97,96,94,92,99,108,114,94,102,108,104,105,102,107,108,101,91,88,94,107,101,102,104,91,107,91,86,98,100,89,98,88,94,91,102,100,103,100,104,76,107,100,86,109,103,113,93,101,92,97,95,82,113,90,106,101,93,116,99,97,97,95,99,102,101,101,103,105,93,109,87,97,101,99,96,107,93,104,114,113,99,108,96,73,92,102,100,96,100,99,106,104,100,96,101,101,94,97,102,97,105,108,121,91,111,86,108,112,95,106,97,101,97,100,108,94,102,101,102,101,100,110,97,96,92,81,98,97,95,101,110,100,100,101,94,105,99,101,102,98,114,100,108,96,107,103,88,112,90,102,87,72,113,95,86,109,109,103,105,92,97,92,106,105,105,108,125,101,94,103,102,93,96,104,90,95,95,84,102,96,110,109,97,98,102,106,98,95,102,95,100,94,91,100,105,110,97,101,81,94,95,104,105,97,91,111,102,104,100,101,99,91,94,90,101,91,100,104,109,111,100,93,99,103,100,98,103,93,87,98,92,95,105,98,113,98,106,114,111,108,93,110,106,99,98,98,96,118,111,90,95,109,106,107,100,109,87,93,100,94,106,108,104,101,108,101,89,105,105,72,90,101,101,94,105,90,96,104,98,101,98,109,133,103,106,103,104,102,106,112,108,98,108,86,106,106,101,93,98,106,106,102,98,104,88,101,116,82,88,107,107,92,104,95,105,101,109,100,100,99,87,108,110,88,99,136,100,95,96,115,93,91,94,97,104,104,105,103,99,98,112,115,105,90,101,105,96,112,103,89,99,92,96,112,91,97,102,98,95,92,93,99,102,100,102,103,102,105,100,92,102,97,91,96,82,100,101,96,103,101,94,104,104,108,100,89,85,105,102,104,100,108,67,102,109,101,94,103,98,102,76,110,106,87,92,110,102,94,95,100,103,99,96,102,86,99,95,97,99,96,104,100,94,97,98,100,112,98,100,100,92,101,88,91,100,107,91,105,103,113,90,106,102,93,92,109,104,113,115,94,91,97,98,101,101,88,102,87,105,107,96,91,95,107,102,103,100,82,103,104,99,94,101,102,72,104,100,111,99,97,84,99,89,93,101,72,99,99,106,108,107,102,108,111,96,106,104,104,91,90,105,87,100,100,115,109,103,93,106,102,104,98,94,107,97,106,100,93,107,100,107,100,90,113,102,75,101,114,105,106,99,103,99,101,110,111,101,95,100,103,100,92,89,89,103,108,94,100,100,106,93,79,117,106,104,97,105,99,84,99,104,95,105,100,104,92,67,114,107,96,94,99,94,100,96,98,102,102,104,103,105,92,94,97,95,91,105,101,95,101,99,106,95,100,102,104,93,107,106,111,95,102,98,101,91,104,91,102,102,107,99,98,102,86,87,110,100,97,93,112,88,110,101,96,98,99,102,100,101,101,107,103,103,95,101,100,95,100,99,99,109,92,104,82,98,105,116,110,94,99,97,97,102,111,96,98,68,114,108,100,77,103,90,99,109,106,104,100,102,108,92,110,117,104,93,101,104,93,95,95,95,102,106,104,106,101,102,91,106,113,102,94,89,89,110,104,101,101,85,96,96,95,98,87,95,96,108,92,92,102,100,84,103,107,92,103,107,104,106,101,124,106,98,98,107,106,71,105,106,98,107,100,110,103,96,95,89,108,104,94,101,100,100,101,100,100,108,109,95,99,95,98,113,106,104,79,99,103,113,102,96,97,107,101,106,96,95,73,103,86,97,99,98,92,91,97,95,101,105,80,98,114,106,87,102,94,90,110,104,131,97,98,108,99,91,104,97,105,104,106,84,96,112,94,87,84,92,101,96,95,99,111,102,122,84,101,103,111,87,99,110,105,98,99,95,100,94,109,100,101,107,98,95,94,103,83,96,106,88,101,100,103,110,102,106,98,112,98,100,96,104,100,106,95,102,109,108,103,104,96,94,85,106,92,84,94,102,98,96,104,95,101,95,105,95,99,111,102,103,104,105,99,101,101,95,101,109,99,120,101,113,96,103,102,101,98,101,104,98,93,99,97,106,100,103,104,98,103,100,98,91,95,98,103,99,111,94,99,95,96,110,96,91,99,97,110,105,91,102,93,108,96,90,82,97,102,100,97,108,86,103,111,100,98,100,98,90,91,107,94,92,100,101,84,105,98,116,106,98,95,104,85,110,99,91,93,103,109,99,101,100,91,108,104,115,105,111,98,104,98,102,94,100,103,102,106,102,107,104,107,109,97,97,106,101,110,102,86,95,98,97,122,102,97,99,100,102,99,108,94,98,94,98,106,102,93,89,101,92,111,116,108,94,105,93,108,99,99,95,91,97,93,111,105,113,97,96,100,113,106,101,75,99,103,107,99,108,100,97,98,98,101,83,99,95,79,100,87,104,114,101,96,102,95,95,101,101,97,106,102,104,105,99,113,102,102,95,99,107,98,93,113,101,99,105,109,82,102,95,102,100,94,87,92,95,103,99,109,83,109,97,92,98,92,76,107,96,104,91,116,98,102,102,87,99,105,88,107,86,94,98,101,96,107,102,107,97,100,103,93,103,101,101,103,108,110,105,108,103,104,108,94,93,90,103,99,112,105,107,111,111,121,102,104,103,97,111,85,106,110,98,100,111,106,101,87,101,107,96,95,94,108,100,98,101,100,113,87,102,106,108,99,105,98,111,107,82,97,99,101,97,113,109,97,99,108,113,111,104,104,103,102,95,104,95,100,107,97,107,98,113,77,112,94,104,109,100,104,100,110,93,107,92,90,94,101,101,96,98,91,98,97,98,122,104,98,101,103,106,99,96,95,83,100,97,80,95,105,98,79,112,102,85,98,98,98,97,94,96,104,100,102,108,106,99,96,95,93,103,97,96,104,109,95,99,98,107,104,95,102,102,93,104,108,108,97,101,101,103,98,94,99,102,88,100,84,97,100,99,105,97,83,105,97,95,78,96,102,109,99,100,105,89,110,110,100,97,104,92,104,103,98,93,106,90,99,92,94,90,103,95,84,81,115,103,83,94,105,110,83,84,97,92,95,90,108,98,90,90,104,98,95,119,107,97,95,101,90,104,105,101,101,106,94,84,107,102,100,102,90,83,91,113,97,97,103,101,94,94,99,101,94,115,91,101,110,106,90,96,97,97,104,114,94,100,101,103,108,108,103,102,100,95,109,106,91,97,101,92,104,113,112,95,117,106,89,85,98,92,99,63,106,102,101,93,93,102,99,99,112,91,100,89,102,99,101,97,74,88,92,103,91,104,104,98,95,98,67,79,105,89,91,88,105,104,109,97,94,93,108,93,101,97,103,95,101,99,93,106,95,100,101,111,98,109,96,97,98,104,106,95,108,97,98,103,102,99,91,100,108,102,96,103,96,92,111,92,104,104,88,95,106,82,95,88,110,94,107,94,104,105,100,88,106,104,121,107,90,103,105,95,97,81,110,97,102,102,87,103,108,94,88,91,107,97,95,101,101,103,102,105,98,97,99,98,110,99,95,107,102,93,97,104,104,100,102,107,99,93,104,99,101,83,107,110,94,94,102,101,91,110,102,94,95,98,112,95,94,98,100,101,104,94,109,97,100,97,97,94,100,109,96,106,105,75,109,99,94,109,98,114,115,100,101,104,100,92,113,99,108,97,102,98,102,92,103,95,113,98,97,106,102,97,95,93,110,100,90,101,106,107,106,108,91,96,105,93,100,100,116,94,114,94,106,101,106,107,96,95,71,96,102,104,110,82,73,92,97,123,101,90,100,101,99,101,99,90,92,112,103,103,103,102,111,90,75,120,99,112,100,116,97,86,91,105,101,102,94,97,75,100,104,102,102,93,102,100,106,90,91,113,100,97,99,100,80,92,110,90,93,121,99,106,116,111,98,104,93,95,94,103,102,104,107,109,98,87,93,100,93,94,100,100,102,114,101,109,102,65,117,117,113,94,101,108,103,105,103,95,109,103,100,95,118,116,98,104,123,99,101,107,95,95,102,94,90, +710.58759,112,97,95,93,112,106,98,114,87,112,111,93,113,87,107,112,107,107,107,102,103,99,95,105,96,115,95,107,106,104,100,112,101,106,100,97,121,90,104,99,95,110,95,101,103,104,103,112,102,100,94,96,98,90,83,95,71,90,100,102,106,93,99,105,108,107,97,103,95,98,111,106,101,93,98,114,108,108,91,103,112,106,87,95,94,106,98,96,96,94,96,94,99,103,97,77,99,100,102,101,98,104,101,100,102,114,105,106,101,100,97,107,101,99,120,97,95,103,96,102,97,88,92,92,85,117,109,101,112,101,94,104,106,102,99,106,91,97,101,88,96,100,102,100,109,100,89,86,93,97,113,102,97,98,83,106,117,94,98,102,91,98,102,110,97,93,101,99,99,98,113,94,90,103,100,102,100,102,102,96,103,106,97,106,84,103,93,92,102,95,107,106,101,100,102,105,95,96,90,106,103,102,91,104,108,109,112,110,102,105,107,112,105,104,96,100,93,103,96,90,106,105,104,101,116,100,100,109,102,109,105,99,103,104,98,98,115,100,121,108,97,100,103,105,101,105,91,99,102,105,100,94,93,108,104,105,101,88,97,101,104,109,96,103,98,93,98,99,91,85,113,90,101,89,105,98,103,96,95,97,95,99,97,96,102,75,103,92,100,101,91,105,96,102,100,106,103,99,121,103,105,98,99,117,93,112,103,98,112,94,97,109,103,116,97,101,100,90,121,91,105,91,109,103,105,94,98,97,101,100,100,93,88,102,109,103,96,105,92,98,96,109,108,95,95,103,108,92,96,104,115,97,89,109,109,99,99,99,108,95,101,101,98,94,92,98,100,105,97,120,100,97,97,99,103,105,91,105,70,104,108,104,99,114,111,102,92,104,100,78,107,91,100,108,99,97,98,97,105,100,100,92,106,97,86,94,98,111,106,99,96,107,106,103,112,95,104,103,109,89,100,105,91,98,96,83,86,92,103,107,92,103,94,96,96,103,90,107,90,82,95,101,96,96,90,102,98,99,108,95,98,104,87,99,104,88,99,99,99,109,99,98,104,99,106,108,98,101,102,111,109,96,83,83,103,101,98,96,100,109,106,107,100,98,105,101,95,108,92,84,104,88,92,98,90,101,95,97,98,104,101,97,99,90,117,90,101,106,89,105,109,108,98,109,98,92,98,101,108,96,108,99,104,98,102,113,98,111,92,91,95,106,111,99,105,101,103,107,93,104,106,100,84,96,104,100,93,101,99,101,100,108,100,101,100,101,105,87,98,95,97,107,105,100,88,109,101,106,100,99,102,104,105,96,84,99,96,91,94,101,96,103,101,100,100,91,106,103,109,98,105,102,114,100,116,113,107,97,92,95,104,109,98,98,92,97,92,94,104,97,87,109,104,111,102,96,97,102,92,122,101,101,103,83,95,95,103,99,105,104,99,102,108,104,109,111,96,95,113,87,109,96,97,103,104,96,97,96,100,100,93,113,99,112,91,109,112,99,112,102,99,114,102,103,96,95,109,95,105,99,104,103,99,100,92,98,96,97,116,100,96,101,114,95,103,97,84,94,107,106,117,93,106,105,108,97,94,101,97,104,95,90,101,103,103,115,104,88,92,102,106,98,103,102,115,94,95,94,92,97,110,95,105,101,111,98,107,108,96,108,97,104,97,105,91,95,95,97,103,103,95,106,113,102,95,87,115,107,96,103,100,108,94,97,101,105,101,86,108,94,98,115,88,95,100,94,94,103,96,86,102,93,97,96,104,98,107,98,106,97,102,97,102,103,102,99,91,101,100,102,105,93,98,105,121,95,114,106,105,101,91,103,111,98,110,90,109,97,101,102,101,99,109,95,109,101,96,89,104,99,98,109,108,80,95,114,99,101,105,106,106,99,104,120,95,107,108,102,114,104,77,109,97,110,102,102,101,102,94,101,101,104,94,103,98,92,92,103,95,113,97,100,98,103,114,95,97,112,100,102,91,109,96,107,95,92,98,91,103,103,95,107,108,106,101,98,108,105,103,104,103,105,103,95,94,95,92,98,98,106,95,108,116,108,120,107,111,98,99,85,101,103,105,92,104,101,93,92,103,102,103,109,110,99,93,103,90,95,99,98,99,101,99,109,102,107,97,101,98,111,115,99,104,102,98,95,98,104,106,78,109,86,107,102,107,104,100,112,97,97,113,101,99,103,108,101,98,102,99,109,91,112,99,99,98,101,109,88,107,97,107,110,86,105,96,101,82,111,91,101,99,100,111,108,111,92,90,101,95,98,107,87,93,109,93,101,106,99,103,94,108,123,97,106,96,104,109,91,117,100,104,110,107,91,108,107,105,110,99,99,100,100,106,95,95,104,105,97,101,111,96,100,94,100,99,101,114,86,111,111,99,102,99,113,97,109,107,92,106,107,107,107,96,107,88,106,106,103,104,104,88,112,97,93,92,108,89,104,106,101,97,95,95,95,100,104,96,92,104,106,93,102,102,101,105,82,96,94,77,96,99,91,116,109,105,100,92,102,110,99,97,113,100,115,100,87,96,94,101,120,110,109,96,98,92,103,85,103,96,102,90,109,104,101,86,101,96,89,91,91,91,84,100,89,105,103,92,101,107,101,93,101,112,99,94,98,98,89,96,107,101,87,101,91,96,105,102,93,97,86,103,90,101,83,117,92,101,91,116,108,105,97,96,96,92,110,111,98,98,103,104,89,99,99,107,95,105,76,83,106,97,69,105,97,97,83,98,106,99,97,94,88,105,101,102,111,107,95,97,102,108,100,112,99,94,128,101,94,99,105,96,104,97,91,107,95,103,87,104,97,104,91,108,94,103,104,105,105,105,103,91,101,100,97,93,104,100,98,90,110,110,109,110,118,111,102,93,100,98,99,97,98,98,107,94,102,92,102,104,99,97,100,93,96,107,98,99,100,90,91,104,97,100,92,105,64,100,100,73,78,109,98,102,123,105,102,101,95,92,100,94,95,102,87,110,109,99,99,107,100,100,91,104,92,92,95,91,102,102,97,107,89,99,101,103,116,84,103,102,101,95,96,106,100,97,94,90,101,107,83,101,96,96,88,96,91,89,98,102,97,103,95,102,96,107,113,76,98,91,102,95,91,92,99,103,90,102,100,95,91,95,99,98,88,97,99,95,80,94,100,95,100,96,96,95,105,92,87,103,103,106,100,95,104,100,98,109,112,111,84,93,97,103,101,101,92,96,112,109,104,104,90,95,97,99,102,113,99,106,102,107,109,100,111,95,100,96,99,119,99,97,102,110,98,103,98,97,100,97,89,105,85,99,92,100,102,113,99,91,90,94,104,92,97,103,99,101,83,100,97,106,81,92,94,99,108,114,104,99,98,98,95,97,105,99,104,110,93,99,92,92,109,92,104,95,110,99,93,102,99,91,113,108,108,93,102,103,100,105,97,105,100,95,94,106,103,104,101,107,88,100,105,117,98,98,104,111,102,90,95,76,102,105,104,93,113,100,102,103,84,92,96,76,107,99,96,95,103,92,113,104,95,92,109,97,109,96,98,99,99,92,117,91,92,103,117,106,99,101,91,99,99,99,95,99,108,83,97,95,96,96,87,96,106,96,91,108,97,97,95,97,116,94,85,94,91,100,96,111,90,101,91,109,106,100,106,97,91,113,99,99,103,92,106,95,97,89,95,83,92,96,100,94,105,103,105,102,103,96,95,87,102,102,92,105,84,116,95,95,96,97,99,117,133,84,111,99,98,92,99,91,93,98,85,115,104,110,112,92,93,102,99,108,95,113,99,106,89,95,104,70,80,92,101,87,98,99,95,97,96,94,102,96,87,121,108,99,90,91,104,102,105,100,97,103,96,101,100,91,88,106,98,92,95,106,91,90,108,103,102,92,106,91,104,110,99,95,109,96,106,108,102,102,94,101,100,99,87,115,87,89,105,105,90,94,106,89,97,95,98,79,91,90,113,95,102,105,76,94,104,93,99,103,102,114,102,102,102,89,102,105,91,87,103,96,101,101,101,94,100,110,113,109,103,109,104,104,76,102,99,100,119,99,90,96,108,98,100,102,103,104,84,104,95,101,105,103,106,89,91,95,98,92,111,100,99,103,94,74,94,87,92,101,98,96,109,104,100,95,93,97,111,100,95,93,97,91,106,128,104,122,105,99,91,106,110,96,96,59,98,107,95,102,91,104,103,92,104,103,94,105,103,105,104,108,110,94,89,89,79,109,115,102,81,96,104,105,103,102,104,94,101,110,105,95,107,99,103,95,106,104,100,102,89,99,101,99,110,101,92,98,88,88,95,94,81,105,99,84,103,107,91,97,98,104,115,98,94,101,93,94,87,96,97,103,98,103,89,108,87,94,102,107,101,93,97,88,97,93,96,88,96,91,101,105,105,96,100,107,102,92,97,91,101,87,105,91,103,87,83,96,97,118,98,96,93,88,106,95,87,84,96,95,111,80,104,92,105,100,96,92,89,102,103,101,104,100,104,94,109,115,100,91,119,93,103,116,98,85,99,87,93,105,93,91,102,105,103,98,94,104,100,110,98,90,101,97,110,101,99,97,105,105,103,106,106,105,91,96,94,113,102,98,96,122,105,102,103,105,93,98,98,96,107,103,95,110,105,106,97,103,109,97,96,89,97,100,113,109,108,95,83,96,106,116,94,93,116,90,98,91,101,99,99,95,91,96,113,97,91,106,92,98,101,96,92,104,93,101,104,97,92,98,102,99,112,109,99,97,118,92,100,96,108,91,98,71,103,99,97,104,101,100,100,98,94,113,91,108,109,105,103,120,104,87,104,116,106,98,95,104,99,102,97,91,101,108,113,77,101,104,105,68,109,86,117,84,87,92,94,89,90,104,95,103,92,100,105,99,92,93,97,91,109,102,105,105,103,106,106, +710.72894,106,100,97,97,97,96,91,105,105,93,105,95,108,84,110,97,107,97,104,86,110,97,110,109,92,99,103,110,99,95,93,93,93,94,105,101,99,96,79,105,99,98,80,109,91,94,90,111,102,99,92,105,98,84,93,97,96,87,107,89,105,95,117,100,99,106,104,97,95,118,105,95,94,94,94,113,99,98,105,101,94,92,90,113,103,94,97,102,83,109,86,98,117,108,105,96,92,91,91,91,96,93,92,99,108,91,92,102,98,100,85,93,110,106,99,104,103,91,91,108,91,103,89,95,108,94,97,105,91,109,96,92,102,94,106,102,88,100,103,117,80,97,96,83,96,92,97,98,100,104,108,99,89,98,103,93,94,99,126,106,74,98,106,114,97,88,95,85,100,91,111,108,106,94,103,108,92,99,93,90,101,98,98,108,105,103,88,78,95,95,97,107,90,117,95,73,105,113,100,106,106,112,94,93,110,96,103,109,105,103,84,97,105,97,84,92,95,99,92,104,100,114,101,98,100,107,99,120,103,113,97,108,101,101,98,99,101,95,104,94,91,97,94,105,93,96,119,103,101,98,97,105,89,97,101,93,103,99,100,108,95,100,87,104,107,95,108,77,99,91,98,90,109,97,113,97,103,98,91,101,94,100,111,110,106,102,98,113,90,93,101,100,107,118,105,98,97,99,98,103,98,96,96,103,96,104,105,102,96,109,105,105,96,99,104,104,98,96,91,83,90,101,86,89,102,86,91,91,105,100,102,90,98,97,105,115,103,99,98,98,80,99,109,91,102,106,101,108,110,99,93,112,106,99,101,104,105,91,105,99,94,100,100,105,87,95,87,108,94,115,109,102,103,97,69,90,100,97,104,91,116,111,105,102,105,97,71,94,101,90,100,97,92,103,102,96,97,95,105,100,99,90,82,89,105,94,97,110,111,90,91,101,99,104,105,103,92,94,103,103,107,102,97,98,98,101,91,109,98,113,94,105,95,101,103,121,99,100,99,108,101,89,94,94,92,95,93,92,96,90,100,96,101,116,95,101,99,117,82,92,102,97,94,113,95,100,99,96,111,89,102,110,92,102,94,92,93,110,98,102,94,102,105,96,104,95,90,95,104,87,97,105,101,109,102,99,98,120,95,90,107,102,109,95,102,95,100,106,96,98,121,97,101,96,92,103,102,107,95,126,100,88,88,93,97,103,99,97,96,96,113,96,95,101,95,99,100,110,97,105,103,101,97,106,103,100,103,96,105,94,100,96,101,91,96,86,94,108,99,102,101,98,91,99,101,106,99,115,97,92,89,100,96,82,97,80,98,96,94,101,106,92,104,97,107,106,100,101,97,85,108,107,91,88,97,112,91,101,100,96,95,87,95,98,87,94,95,94,99,101,110,84,94,101,87,92,108,93,100,111,105,98,105,106,101,103,95,95,102,109,97,97,93,95,99,103,102,106,101,95,99,117,98,97,87,97,107,109,91,104,119,102,100,99,95,107,103,103,109,111,98,107,95,99,83,106,101,103,104,100,94,102,92,111,109,93,92,105,96,86,98,104,102,92,100,98,94,112,97,106,106,101,101,99,96,93,104,91,94,86,111,111,93,105,105,113,105,90,105,99,87,106,98,110,111,87,96,96,104,104,101,103,81,107,95,88,106,97,87,103,95,95,94,92,91,85,95,98,108,106,91,87,105,101,117,98,100,106,112,99,97,98,97,100,95,96,96,112,95,87,111,100,97,100,93,105,102,94,105,102,130,99,97,102,100,104,100,101,107,97,83,104,109,103,97,106,101,101,66,87,91,90,99,105,105,90,78,105,105,104,95,99,94,100,94,102,101,94,83,97,114,112,96,109,106,88,101,102,107,99,103,94,100,99,102,110,100,95,101,104,101,88,90,85,87,101,107,103,106,102,103,103,97,92,100,101,90,102,108,95,105,99,104,113,92,71,97,91,93,98,79,109,89,97,94,98,97,95,102,105,102,105,105,103,99,97,108,97,102,96,99,99,87,98,95,104,102,114,109,105,98,98,107,126,105,104,107,100,98,102,117,108,111,94,109,96,93,92,100,95,97,87,104,95,96,88,100,101,87,102,96,102,100,107,97,99,102,100,95,100,95,104,105,103,92,100,93,97,106,106,96,107,99,112,81,101,111,109,90,104,99,63,94,110,106,102,98,100,98,94,98,105,94,98,93,103,106,92,92,104,91,104,105,101,89,94,98,91,97,94,108,99,92,99,99,101,95,90,102,79,105,92,109,107,120,92,104,92,102,98,105,97,91,92,91,116,102,103,96,111,104,103,96,98,95,107,112,96,100,101,107,114,99,98,103,92,91,102,96,100,100,99,106,88,115,92,106,112,109,96,92,101,82,101,88,113,101,91,94,84,95,101,103,96,89,88,121,91,92,103,87,96,103,107,97,89,95,95,98,96,120,120,108,78,101,107,111,104,105,100,98,110,80,80,100,94,91,100,106,91,93,87,109,93,104,102,94,85,97,95,113,100,106,92,99,106,108,105,101,87,89,104,87,101,103,101,91,100,97,99,102,89,101,100,105,98,101,101,99,108,98,106,95,99,93,102,106,98,103,84,101,92,87,98,98,101,80,99,112,102,94,107,111,99,111,103,101,99,88,95,112,102,101,90,110,104,96,105,95,98,94,87,96,91,99,104,93,98,108,99,76,99,90,103,97,103,111,92,96,86,101,107,97,96,90,86,93,94,106,105,97,104,96,103,102,109,96,93,97,103,95,107,104,98,100,105,105,100,99,98,101,96,98,94,115,93,100,91,92,99,101,110,97,91,96,96,95,109,98,100,95,100,106,100,95,109,91,100,104,105,103,101,99,104,109,99,97,90,105,95,92,105,104,106,102,101,101,102,92,108,106,111,105,97,94,94,101,103,95,100,101,111,112,102,97,98,95,103,108,107,90,99,99,98,96,103,119,90,89,108,104,99,92,101,94,97,104,111,119,92,77,106,92,99,92,120,99,100,88,98,97,106,107,95,109,96,107,104,98,95,105,90,94,105,101,95,102,96,102,100,92,83,93,108,95,108,91,85,99,90,104,93,101,92,95,95,101,105,85,89,107,117,91,116,92,90,105,94,98,110,104,94,109,103,91,94,92,98,106,97,85,101,103,96,91,98,86,87,79,92,92,101,107,102,106,108,103,92,113,116,102,103,104,101,105,102,97,102,99,99,88,100,99,95,103,94,93,94,87,101,101,100,96,77,92,95,113,95,108,91,92,101,102,104,116,101,105,111,85,99,97,84,101,108,95,98,94,97,99,101,93,91,105,98,89,89,99,88,103,109,100,119,100,101,95,113,104,105,102,101,92,109,92,100,94,92,90,95,105,93,95,95,90,104,99,94,100,100,92,99,101,108,94,104,102,100,105,92,112,101,91,106,116,89,82,98,95,102,102,102,100,103,106,109,111,107,93,101,91,106,99,98,111,96,100,105,95,100,95,96,98,102,91,95,100,107,109,86,106,92,107,98,88,99,91,91,103,104,88,93,112,88,105,105,99,100,97,115,107,100,97,107,94,102,109,102,94,94,97,111,113,98,105,90,105,111,105,95,102,96,99,94,97,105,97,95,89,103,101,93,98,91,72,97,100,109,91,104,107,98,105,99,115,99,100,95,93,101,99,103,99,98,108,96,92,89,96,99,104,98,107,100,90,98,94,105,92,117,109,100,99,100,91,101,92,85,112,113,105,97,96,96,90,114,111,107,98,93,108,105,88,109,94,99,75,94,96,100,105,103,109,100,105,92,99,98,107,103,100,101,91,109,98,104,110,88,98,116,87,101,95,92,103,97,95,104,111,98,93,103,98,97,98,103,86,116,98,104,105,92,101,104,98,117,115,101,77,96,96,106,94,98,102,101,105,98,101,98,109,94,88,83,99,100,93,96,106,96,90,93,101,98,103,94,94,92,93,113,117,98,105,84,83,98,96,88,109,102,91,101,107,94,92,101,100,103,105,91,89,102,101,111,97,98,110,102,89,115,94,96,108,99,88,98,95,100,101,103,104,96,94,106,103,100,107,97,101,98,92,97,99,93,105,101,104,95,99,82,94,99,80,96,99,95,91,98,95,98,97,101,85,105,105,100,97,107,103,99,109,101,106,99,97,113,89,85,101,100,98,98,101,95,103,93,102,98,100,102,97,92,102,95,101,100,93,98,92,100,115,94,104,108,98,100,108,100,96,97,102,90,101,88,97,103,86,101,108,102,90,97,90,91,93,102,96,105,94,107,105,106,105,100,88,87,99,108,103,83,83,98,95,112,94,96,93,108,90,101,96,98,98,110,107,105,98,93,100,96,99,94,108,113,103,94,98,109,97,95,99,111,93,110,99,102,97,89,99,100,99,91,93,103,104,97,96,102,93,92,101,94,101,96,96,112,84,98,101,105,89,100,91,102,103,98,104,110,91,109,97,93,87,103,109,89,90,89,97,98,91,108,102,96,106,91,99,99,94,95,89,91,111,96,85,109,105,103,105,94,102,100,102,116,96,121,93,83,101,99,106,112,95,111,91,95,105,110,99,97,97,88,91,108,99,134,109,90,108,82,101,79,108,91,98,111,92,77,69,90,112,102,99,94,95,92,100,102,91,109,95,103,120,108,101,85,113,106,106,98,98,91,98,102,97,103,96,83,109,95,101,88,91,113,111,101,96,100,80,108,104,98,120,91,112,91,93,98,103,94,102,95,102,92,102,96,97,97,98,97,112,115,104,94,116,101,96,104,99,90,94,99,100,97,92,98,88,110,99,92,95,97,97,91,107,100,95,92,102,100,98,92,109,100,97,76,93,91,107,99,105,99,91,106,83,101,98,100,88,106,105,93,99,93,109,101,102,83,93,103,100,78,105,87,100,102,93,112,109,96,98,97, +710.8703,104,92,93,72,105,98,93,117,97,118,84,96,100,104,108,114,96,108,103,102,88,85,83,87,101,101,116,79,103,94,106,99,103,102,90,102,112,94,94,97,112,106,104,112,105,97,96,110,86,114,90,102,105,94,104,105,108,90,106,94,105,103,104,92,106,87,100,100,105,90,105,91,100,92,82,93,102,87,104,104,105,103,96,93,101,90,103,107,90,97,99,94,105,104,79,96,103,118,103,99,98,98,89,86,103,101,89,102,105,97,96,100,112,88,110,108,96,92,102,87,104,82,101,91,105,105,108,100,113,107,106,91,110,90,79,102,103,92,95,90,97,102,102,98,92,93,103,110,105,101,96,101,101,98,100,93,100,101,98,110,91,90,106,118,107,88,112,87,96,93,105,86,90,95,110,95,101,97,107,113,96,102,93,110,102,108,95,93,107,112,104,105,103,90,93,103,96,106,110,98,107,78,103,94,101,96,103,109,107,95,95,99,99,70,103,103,83,100,97,102,98,96,102,98,101,106,98,99,106,112,103,104,96,98,98,103,100,94,109,93,100,90,104,95,96,108,111,109,91,100,106,89,91,106,106,96,100,94,104,100,86,115,106,91,99,95,102,101,101,99,92,110,100,104,104,91,108,103,100,104,97,99,72,105,106,96,92,91,99,99,105,96,106,99,106,102,105,105,93,97,96,106,100,76,101,101,109,102,97,111,99,111,76,94,101,100,111,98,91,97,97,109,112,100,108,94,97,92,97,95,105,93,109,103,105,108,90,92,93,98,97,100,98,104,92,108,102,97,117,113,101,101,101,96,116,104,109,96,99,93,88,112,98,105,90,107,110,101,89,94,105,88,111,92,101,104,95,112,97,106,102,106,105,106,105,105,89,101,106,97,91,92,93,110,96,97,87,104,112,99,106,87,90,103,99,90,105,92,103,101,106,104,109,104,82,97,105,97,112,92,94,108,105,98,107,96,99,98,88,105,117,104,95,94,99,92,97,103,99,90,104,103,87,97,102,99,105,95,107,92,94,105,103,99,90,98,97,92,100,104,99,86,101,97,95,113,87,96,109,96,93,111,108,104,96,104,106,103,95,104,94,108,102,102,101,99,87,94,105,98,106,126,99,109,86,99,91,96,101,105,104,105,101,97,101,99,64,102,112,101,99,106,98,96,106,86,95,99,102,95,101,100,103,93,83,103,99,101,101,104,96,95,92,88,103,116,104,76,92,106,95,110,106,89,106,103,108,100,100,100,103,91,102,100,103,105,109,107,95,95,112,113,96,98,105,101,111,95,98,96,101,99,97,107,110,104,97,87,94,104,95,99,112,94,94,100,106,113,100,101,92,99,99,109,106,105,97,100,107,95,106,91,103,98,82,101,98,102,102,107,107,96,101,105,99,111,100,93,99,105,101,96,101,104,108,88,96,104,100,102,109,99,98,102,104,104,105,95,112,101,88,106,88,92,82,98,104,106,94,109,76,108,108,98,101,103,90,113,110,110,116,109,99,105,94,99,103,113,101,99,101,92,104,86,94,95,99,100,111,94,93,97,102,101,95,97,97,98,101,86,92,100,109,103,105,96,94,96,92,67,101,99,103,104,95,97,102,101,90,101,95,102,104,94,96,97,104,90,117,104,95,97,112,112,96,106,100,98,103,106,104,98,105,89,72,88,108,95,103,96,101,109,96,93,113,100,100,103,117,109,98,101,102,97,96,84,97,94,106,99,95,108,98,95,98,101,94,96,98,86,118,92,123,99,105,105,91,63,97,103,97,92,98,96,113,100,96,111,86,109,116,97,101,95,92,96,98,97,104,101,137,113,95,110,110,106,95,108,100,103,104,99,101,93,100,108,110,85,99,97,101,101,103,106,103,114,108,107,96,102,105,100,109,94,84,96,97,97,102,95,99,107,103,94,110,103,96,102,110,92,105,90,107,100,94,97,94,101,97,125,97,110,99,100,98,101,92,103,94,105,88,100,86,92,100,95,110,105,111,100,100,96,102,98,95,98,101,99,101,106,109,104,108,120,105,96,118,90,98,106,101,101,107,90,107,99,104,98,107,92,112,100,112,110,105,89,96,98,101,91,100,100,102,113,92,84,106,103,65,90,100,96,111,99,94,91,108,92,102,104,116,101,98,90,89,105,113,102,94,106,113,103,96,94,99,79,107,93,73,101,113,96,88,96,106,96,118,85,104,93,105,93,121,104,99,105,107,102,100,92,95,87,106,100,102,100,111,99,91,104,108,95,87,90,92,99,94,88,99,90,108,96,111,92,99,92,94,108,95,89,103,92,96,102,117,94,105,100,104,106,114,110,107,100,90,107,112,102,104,108,89,98,110,103,100,113,96,120,87,107,97,110,86,90,113,100,107,97,100,116,96,97,105,100,95,92,107,90,91,109,92,96,110,104,102,101,83,104,105,103,110,103,100,108,94,106,103,93,87,105,96,93,87,92,94,101,98,86,109,102,103,87,102,98,96,113,101,112,102,106,93,100,99,101,103,90,97,101,84,97,85,106,109,109,102,88,93,102,100,99,96,97,106,109,98,104,98,107,105,98,92,111,106,96,105,99,94,100,104,99,96,93,102,96,96,88,109,92,113,105,102,108,98,89,98,105,87,99,75,101,115,87,99,96,109,112,102,98,99,93,105,97,120,91,97,117,104,103,104,92,109,96,94,85,101,92,108,94,117,101,84,95,111,122,94,99,104,88,95,78,100,109,97,99,101,113,98,91,92,100,99,102,96,96,102,113,104,103,99,98,109,103,102,104,105,77,96,91,99,97,97,98,89,100,108,89,97,103,103,99,102,100,68,102,97,94,80,112,88,96,100,95,113,104,99,106,98,110,101,95,102,96,95,103,105,90,99,103,101,100,104,97,82,105,90,91,98,109,98,108,115,83,122,97,101,117,103,98,98,96,102,103,98,100,92,104,109,86,93,108,97,90,110,105,111,74,111,96,101,87,105,111,87,87,107,108,93,108,104,101,98,106,98,114,106,99,107,107,99,104,96,91,99,108,97,104,100,89,106,104,88,102,105,98,102,98,102,100,100,90,101,102,101,112,90,99,98,86,99,96,112,103,105,101,105,89,97,97,91,98,99,112,101,100,103,102,105,94,96,95,93,100,103,100,100,92,95,109,78,95,100,90,94,93,112,84,89,90,96,104,105,113,81,102,98,87,120,92,101,102,95,99,97,81,99,97,82,94,119,114,99,98,89,76,92,94,105,96,98,95,98,97,114,105,110,109,102,104,98,101,100,97,92,111,111,105,101,106,103,99,81,84,109,98,102,98,105,92,92,102,102,102,98,100,88,104,108,84,106,103,109,98,102,93,96,96,100,106,103,110,109,100,104,104,107,102,98,106,107,89,89,104,93,94,84,102,100,95,106,100,99,101,98,99,95,94,105,103,88,101,96,98,99,109,103,108,102,108,101,112,99,101,94,94,90,91,94,110,109,103,96,113,104,102,100,102,99,101,81,96,104,113,97,105,100,94,84,100,112,85,99,89,90,100,96,102,108,102,100,91,109,86,104,101,104,109,80,99,97,104,104,101,108,91,109,103,107,92,108,94,94,95,112,102,93,91,96,100,112,95,96,99,113,102,109,96,83,95,109,91,103,104,98,99,99,96,104,91,100,108,101,97,102,99,96,85,99,92,102,104,98,98,93,96,97,97,98,103,97,100,99,94,105,117,78,105,96,97,108,97,115,99,102,99,100,97,99,105,109,104,98,84,109,95,96,102,104,91,94,91,90,96,95,96,90,96,102,91,103,95,84,105,101,107,98,98,108,104,89,97,103,90,102,107,109,80,108,91,95,98,102,105,102,89,103,94,103,102,88,108,98,98,97,104,87,95,97,102,89,106,97,102,107,113,110,112,95,104,98,99,95,103,87,102,100,99,104,115,101,103,95,89,104,94,101,110,103,91,69,98,97,96,94,106,95,82,104,103,105,91,96,100,104,99,102,101,102,94,92,109,104,111,103,93,98,104,85,105,105,91,107,90,105,96,116,109,102,104,99,88,94,108,89,87,87,90,105,95,90,101,117,97,102,99,108,88,80,105,92,99,96,101,101,105,106,99,97,106,95,93,99,102,96,95,101,105,99,106,92,100,104,90,90,112,104,99,96,91,101,99,103,93,88,87,99,98,122,98,100,102,97,107,103,108,102,97,94,101,108,110,100,128,101,95,83,102,97,104,100,109,92,100,94,102,105,95,100,104,90,78,94,100,102,101,96,112,104,92,108,95,98,109,98,96,101,96,96,87,96,106,99,75,96,97,83,107,101,97,101,100,100,99,112,98,114,97,94,101,92,92,93,92,98,97,103,101,100,88,102,95,104,110,94,88,96,107,108,106,103,105,109,102,91,85,89,105,94,102,105,94,95,96,84,107,96,108,108,92,95,94,101,104,111,98,89,100,98,105,91,96,105,97,112,98,89,95,108,93,101,97,86,91,102,101,92,111,95,99,101,104,93,97,88,104,91,84,98,101,91,103,91,88,88,95,91,110,109,103,102,97,98,87,91,95,93,104,96,100,92,104,99,100,96,96,109,110,100,107,98,90,89,91,97,91,111,92,106,94,96,96,106,109,98,109,97,103,98,112,82,93,108,88,96,109,99,96,83,105,93,99,88,94,94,94,107,100,95,102,90,114,99,93,108,101,97,99,86,102,93,84,91,101,109,97,98,97,102,79,105,91,88,113,83,86,97,88,101,101,107,92,105,101,105,91,92,102,105,85,99,95,99,81,106,95,109,106,113,99,111,100,131,101,99,91,103,106,102,106,102,112,103,115,107,103,99,95,94,113,110,104,99,99,99,96,90,98,85,111,113,110,99,92,102,88,100,110,93,113,104,106,111,96,106,100,106,92,109,89,106,93, +711.01166,95,90,109,105,89,99,93,106,122,103,84,99,94,98,101,77,94,113,95,98,95,87,97,100,92,79,87,92,98,97,100,110,96,91,112,97,103,120,82,125,106,95,96,104,101,123,89,101,92,101,105,106,91,117,100,109,104,100,108,100,86,98,107,98,107,114,102,91,109,96,86,104,96,102,91,109,103,96,114,110,103,90,99,107,95,103,92,111,101,102,103,92,93,96,93,83,93,96,97,95,97,98,84,104,93,93,101,98,108,101,97,90,101,101,97,94,112,93,104,94,94,98,98,102,87,104,92,103,115,97,92,100,101,93,92,93,92,112,100,95,100,109,99,82,88,96,130,95,81,96,97,95,98,86,86,112,112,108,95,98,94,104,102,98,94,91,93,98,105,94,86,111,100,100,106,89,88,87,103,88,99,96,100,64,105,116,102,87,93,93,102,103,102,103,95,103,102,104,103,116,99,101,99,98,108,102,101,108,92,107,100,107,104,101,105,90,89,99,101,95,93,94,96,96,93,113,90,101,102,102,98,86,99,98,96,100,117,83,99,90,100,97,98,102,93,97,93,98,97,101,103,91,94,97,105,105,99,93,96,99,94,94,90,75,83,87,102,101,91,117,100,102,102,99,95,85,100,106,104,106,98,98,98,105,104,91,88,98,112,96,99,103,105,89,101,104,105,107,107,100,114,98,102,104,97,94,103,91,93,92,96,104,97,113,103,101,93,104,99,102,99,96,99,102,78,102,108,96,94,99,99,95,93,105,90,114,108,88,97,97,94,101,97,92,103,96,104,104,113,86,104,96,123,100,88,100,96,102,103,87,113,96,91,97,91,109,108,103,104,86,94,99,93,95,97,91,92,102,76,100,104,96,105,114,97,86,105,99,98,94,99,89,103,96,93,90,80,99,96,99,92,100,103,91,94,108,93,96,96,86,97,92,93,99,91,99,119,95,105,100,101,86,96,91,102,100,106,96,103,115,94,107,98,105,97,99,89,101,91,98,104,104,93,100,93,103,100,83,98,109,91,96,106,107,101,91,103,107,102,107,97,93,98,92,103,101,96,96,95,128,110,96,110,78,92,95,102,79,97,95,101,100,100,96,113,102,104,114,99,89,99,106,89,95,101,99,100,93,111,89,100,97,100,103,101,107,100,108,93,94,95,98,100,101,99,98,105,95,99,86,108,104,92,100,92,104,105,90,98,108,103,95,93,97,100,86,91,97,101,91,92,105,109,106,103,94,102,106,91,95,110,102,91,104,108,103,109,90,91,108,103,102,114,99,109,81,91,104,101,90,94,107,95,95,105,96,103,110,90,102,95,125,96,102,90,93,102,104,109,101,89,102,103,101,109,96,93,115,103,108,96,101,101,94,101,99,78,89,92,101,89,93,100,88,100,98,106,97,111,92,106,101,102,96,90,104,89,85,96,107,91,100,86,102,102,97,85,90,79,105,104,102,99,99,95,103,93,105,97,91,93,118,117,99,106,109,104,92,103,100,99,103,95,106,95,108,80,91,103,99,101,109,92,98,94,108,95,106,99,96,95,111,98,90,97,97,101,100,97,99,92,94,101,102,103,93,101,95,102,98,95,101,91,92,106,101,104,112,91,87,99,99,104,99,97,96,103,116,104,95,98,101,112,103,113,94,110,93,106,107,98,109,87,93,90,102,110,94,113,95,95,74,92,97,121,88,96,94,100,75,114,100,112,102,91,94,98,101,99,93,95,111,91,105,97,103,101,103,104,95,90,106,99,100,104,110,114,91,109,95,119,98,108,90,96,92,98,100,102,103,104,89,102,111,89,100,87,108,87,100,97,100,102,104,96,95,102,99,95,99,113,84,97,85,115,96,110,98,103,98,106,113,100,84,100,104,108,93,94,105,86,104,91,91,100,109,105,110,119,99,96,97,113,99,96,98,97,93,102,104,102,104,93,96,76,89,103,99,96,100,94,98,100,84,104,87,98,96,90,103,96,113,104,100,101,115,95,93,97,98,103,97,101,93,102,109,98,97,102,97,87,99,95,103,91,93,114,96,109,103,109,106,94,98,108,101,100,94,114,98,100,106,112,98,95,100,97,97,91,102,102,98,102,113,102,88,91,99,90,84,100,100,101,112,105,110,105,91,97,95,92,100,98,104,90,101,99,101,103,107,98,99,107,99,92,99,117,100,92,97,109,96,96,84,101,119,102,99,99,91,101,84,107,102,106,94,110,87,91,109,84,87,110,111,106,96,92,108,99,95,97,92,107,90,105,108,98,101,101,93,109,100,104,92,100,90,118,94,96,112,108,95,96,100,91,95,107,96,109,89,96,97,90,91,84,108,102,103,88,105,107,96,97,95,105,101,87,108,103,113,117,89,91,104,107,92,112,97,91,104,95,96,101,118,103,111,105,95,91,86,99,103,90,99,101,95,96,97,109,92,100,113,90,85,100,101,105,107,88,91,93,101,92,108,105,101,83,80,106,89,91,90,91,92,97,102,82,106,100,105,113,81,100,94,94,108,99,94,106,97,100,105,77,90,104,95,92,100,101,103,102,98,88,107,101,98,104,100,99,93,97,100,104,96,97,101,92,88,112,100,105,102,91,110,100,106,105,116,83,104,113,97,98,94,106,98,91,100,106,102,94,84,103,90,76,115,90,97,100,111,103,94,90,94,98,97,97,111,95,98,108,93,104,104,93,117,111,97,100,105,90,94,107,108,101,94,90,77,87,90,95,106,95,95,99,95,102,87,103,103,114,89,102,102,90,102,94,108,91,98,108,117,95,95,81,102,93,102,104,104,81,79,104,106,105,99,108,107,92,128,96,93,100,73,92,79,95,96,98,100,92,99,105,118,96,97,87,103,84,104,91,93,101,101,97,94,109,97,102,89,91,94,94,109,83,100,91,91,105,97,97,90,105,104,100,98,94,96,100,96,97,108,72,108,99,85,97,105,95,100,103,93,100,107,92,96,82,116,97,97,103,99,107,95,104,109,105,97,101,95,94,100,93,95,111,109,89,97,97,90,97,96,101,87,97,105,114,100,101,120,97,100,102,99,102,105,108,92,108,99,92,96,91,111,99,101,93,103,95,96,83,98,101,93,109,96,84,107,95,100,89,94,99,96,103,98,95,96,99,92,94,95,110,103,96,99,93,96,76,105,85,99,82,91,101,99,96,97,108,100,103,98,104,98,95,95,106,102,90,98,115,101,103,107,92,87,98,93,104,90,85,91,98,104,98,89,110,87,102,98,98,99,99,96,104,99,97,102,110,91,104,77,112,102,96,100,96,98,102,82,105,87,106,108,93,99,101,101,98,87,102,97,96,90,98,102,89,91,96,96,92,101,94,91,104,91,79,101,103,101,109,97,92,91,98,101,103,104,103,117,93,124,90,83,101,116,87,109,129,100,91,97,102,95,88,96,97,88,91,103,95,97,91,100,94,111,95,109,90,94,94,95,95,107,97,89,97,97,95,102,113,96,95,90,83,104,104,95,100,86,94,111,101,98,88,104,92,88,94,105,96,103,83,104,103,68,96,114,102,98,96,118,103,98,103,99,84,95,98,104,101,83,106,91,101,89,91,93,93,81,92,95,116,106,101,96,103,89,100,104,93,97,108,105,100,94,91,91,102,112,95,92,121,102,98,95,106,85,111,99,100,90,97,97,91,88,95,84,102,98,116,111,100,106,98,96,98,90,101,100,90,106,98,110,92,102,103,92,117,97,84,86,99,115,98,94,94,93,106,95,101,98,94,97,101,96,94,100,111,90,90,93,93,77,103,95,83,101,105,100,91,98,99,88,76,99,104,104,91,100,92,106,95,99,101,102,96,96,95,106,90,89,91,104,86,106,122,98,95,94,98,97,96,105,91,94,102,95,101,69,102,98,92,96,111,90,96,95,94,93,88,96,102,98,97,89,105,97,105,94,92,106,104,88,92,109,88,100,102,99,88,87,98,90,100,103,93,80,97,99,97,95,94,103,104,101,95,93,98,100,91,91,96,106,93,90,95,88,96,104,100,88,98,109,87,105,108,88,90,101,101,101,87,96,103,111,99,99,107,107,93,100,112,88,106,117,99,87,97,93,109,96,119,106,99,115,96,100,95,87,95,85,104,105,97,102,104,100,99,111,93,108,91,98,101,98,108,91,112,104,101,102,102,84,95,100,102,111,94,81,93,99,103,110,103,107,94,101,106,106,107,120,91,106,98,105,121,95,105,100,107,96,102,100,105,90,106,91,95,99,91,90,103,102,95,104,99,90,101,102,108,104,91,110,106,96,98,92,92,94,98,89,90,102,100,100,103,109,102,103,102,102,94,103,102,96,98,90,102,98,103,98,110,95,106,90,94,97,91,100,94,101,99,106,105,95,103,107,101,91,94,112,97,98,88,96,86,112,94,91,101,87,105,96,95,99,97,100,102,101,102,107,97,110,95,101,98,102,100,107,104,112,97,98,95,91,99,107,106,91,102,92,97,105,100,103,94,100,99,97,94,96,111,94,114,100,97,113,108,101,93,99,101,105,114,104,96,87,118,100,103,114,93,103,90,101,102,85,97,93,106,98,106,91,94,113,112,101,91,103,108,89,88,87,100,92,88,97,107,110,99,99,81,94,109,94,85,98,104,104,136,105,105,103,86,99,87,90,109,96,96,100,100,96,90,89,92,102,100,98,99,89,103,96,110,98,104,96,83,96,109,92,102,100,102,106,101,108,98,105,97,106,89,96,108,102,102,92,102,114,95,98,96,94,101,87,98,111,93,93,102,112,104,91,96,91,96,102,103,104,105,94,96,91,93,108,102,100,92,108,111,98,105,104,89,108,103,100,97,93,95,105,103,84,90,109,97,87,106,83,73,91,96,120,94,120,84,99,110,91,107,99,109,97,112,105,99,100,100,79, +711.15302,105,96,88,98,101,104,94,91,95,99,100,114,101,99,106,86,94,96,111,87,113,97,101,94,97,94,100,98,106,97,98,107,120,102,109,93,100,101,82,105,89,102,94,105,101,93,95,94,98,97,93,82,106,99,86,95,93,93,103,58,98,99,65,84,100,107,76,93,103,105,101,86,87,103,96,104,95,75,90,105,96,99,114,101,93,91,99,112,89,115,102,94,100,97,97,102,95,91,92,108,100,94,91,100,90,90,104,101,95,101,95,101,92,104,110,82,95,92,99,91,107,101,104,111,103,102,101,96,108,100,107,103,96,95,101,96,105,107,100,94,89,103,87,98,100,102,99,98,98,94,98,103,95,90,104,100,91,86,99,102,100,99,102,118,99,93,88,87,83,100,107,95,104,101,95,90,93,90,106,93,103,87,86,104,95,100,98,88,96,97,84,101,92,86,100,90,99,129,97,100,98,92,108,95,93,98,83,121,95,100,96,91,100,100,104,89,90,106,95,100,100,100,91,91,97,99,96,104,88,96,92,99,88,99,90,99,109,94,94,98,92,98,94,94,84,98,91,100,93,101,102,104,95,100,79,103,108,90,96,102,87,98,108,95,87,96,91,98,117,97,95,99,96,88,112,96,82,110,96,103,98,99,95,109,86,81,109,86,95,105,99,68,96,104,101,106,92,101,101,90,93,87,92,101,97,94,118,96,102,103,89,100,111,96,96,94,91,94,94,106,93,90,96,106,96,99,93,98,101,110,100,86,93,100,97,93,103,92,101,87,95,95,98,96,94,101,70,105,123,100,99,112,102,105,101,113,91,97,95,99,101,87,74,98,87,80,80,106,82,97,108,95,79,85,119,84,100,87,98,105,106,102,85,113,96,92,88,105,96,96,94,96,92,114,93,100,99,97,89,109,82,91,97,84,92,100,100,93,94,97,82,99,99,91,96,92,93,94,114,97,106,94,90,96,93,100,102,92,96,109,96,115,110,93,98,93,91,103,99,94,102,102,99,101,71,98,105,102,98,109,100,97,114,95,96,105,92,100,103,96,91,95,103,87,94,94,99,90,95,99,96,96,98,98,93,84,96,116,98,101,108,110,105,98,96,92,104,91,88,95,99,100,98,108,83,104,96,96,103,100,100,81,106,97,92,93,94,111,95,106,105,107,94,91,98,98,102,96,110,89,101,96,94,105,103,97,91,101,104,108,100,99,96,104,110,99,100,98,86,100,99,101,105,103,111,105,106,101,99,96,88,105,97,81,100,88,113,96,99,105,101,94,110,110,110,96,101,99,101,106,108,90,108,97,109,104,93,107,91,92,105,98,95,111,92,97,93,103,90,89,107,92,104,90,95,99,96,101,110,97,108,100,99,98,93,100,97,90,95,100,95,100,98,103,102,97,94,101,117,97,111,99,98,97,97,95,92,100,111,98,100,98,90,96,94,98,91,99,102,93,101,93,95,110,103,90,105,93,91,114,91,117,104,100,105,101,111,83,96,94,99,105,94,105,100,97,94,79,109,97,107,103,97,101,92,115,96,90,97,98,106,98,109,91,92,95,105,114,98,88,94,83,97,103,95,103,102,97,89,84,116,97,92,96,98,98,93,109,95,108,102,101,98,96,93,68,91,97,101,87,92,90,97,108,94,87,100,94,90,106,98,102,104,101,93,92,97,90,102,94,105,104,86,97,108,93,93,90,96,98,104,113,93,93,96,101,90,98,101,108,108,105,92,90,96,92,99,113,101,97,98,100,97,95,89,80,111,103,110,90,103,92,99,109,108,106,105,102,107,116,98,101,98,110,100,101,100,93,99,94,117,84,86,99,108,110,91,98,95,97,109,96,91,105,100,95,103,97,113,94,96,104,100,105,97,108,102,105,95,102,106,106,93,95,100,104,91,96,83,102,93,103,99,94,92,90,97,88,102,78,90,88,130,90,99,104,95,104,100,104,94,86,95,102,95,99,86,100,104,96,102,98,105,112,96,95,98,74,96,95,104,104,92,109,99,92,76,108,102,90,102,108,102,102,97,98,101,102,97,121,92,88,99,100,101,95,100,105,99,91,97,97,107,99,100,95,86,100,90,98,119,101,107,98,93,99,98,102,104,97,90,103,107,102,96,91,95,108,94,89,97,92,92,98,98,92,101,91,101,105,95,114,101,104,101,95,110,117,91,97,101,97,97,97,94,95,83,89,87,109,97,101,94,105,82,101,93,94,97,96,104,95,102,93,93,88,88,85,95,102,90,83,77,103,97,98,88,105,95,100,85,99,102,87,96,103,101,104,114,88,72,93,103,83,95,107,100,97,89,100,94,101,104,94,101,89,96,100,98,86,97,106,105,86,108,79,103,99,112,95,99,99,87,112,102,93,96,90,87,97,96,92,100,89,96,110,95,98,99,92,112,106,101,103,100,100,103,88,91,111,94,108,110,102,82,103,100,103,95,101,102,89,83,93,107,92,99,94,111,98,88,104,101,95,95,90,97,98,101,97,99,89,90,101,96,103,90,85,100,106,104,106,86,96,110,101,81,94,101,96,102,97,93,98,91,94,109,100,98,98,101,111,91,100,101,94,110,91,107,94,89,91,89,102,88,94,103,104,107,92,106,101,98,97,92,99,113,105,108,104,98,90,88,103,102,89,105,106,66,92,95,95,105,91,92,105,91,90,98,96,98,105,97,99,92,109,102,90,93,117,102,92,113,118,99,103,85,105,96,103,95,106,113,102,111,104,102,110,98,102,98,96,106,98,104,110,110,110,96,103,80,100,101,92,96,96,90,100,93,104,91,92,100,112,81,98,100,100,103,106,105,105,106,87,110,88,101,107,100,115,91,103,100,110,104,104,81,103,97,99,101,75,102,94,98,103,103,99,105,97,101,98,103,108,104,98,91,103,95,105,86,99,110,109,92,97,100,95,117,106,108,101,102,97,73,91,99,95,113,99,102,97,96,109,95,98,111,107,103,105,92,93,96,88,101,126,101,94,94,97,100,95,93,101,105,102,113,94,101,100,102,99,87,105,97,98,100,101,94,106,99,111,99,95,91,92,101,98,99,102,91,81,96,104,98,104,101,103,102,106,110,106,80,96,99,95,94,90,94,96,107,92,101,105,96,91,105,93,105,87,119,96,109,105,105,107,97,108,109,91,97,100,105,102,99,107,99,95,99,91,107,95,93,105,114,98,96,92,102,89,87,98,99,93,98,99,104,90,101,94,97,98,96,105,107,94,105,97,103,98,102,98,102,120,122,105,79,102,101,102,101,101,95,102,91,104,87,105,91,107,96,96,98,90,97,103,98,95,104,94,94,91,106,91,109,100,96,89,84,93,95,99,96,100,109,100,80,90,114,97,87,110,99,99,105,104,106,103,117,97,96,106,98,100,93,103,99,93,92,102,98,98,109,99,104,99,93,94,97,95,104,93,83,99,100,94,93,103,102,103,110,103,100,97,100,88,97,87,91,96,104,99,92,94,94,87,99,96,102,94,100,105,91,109,103,88,99,106,106,105,108,103,96,112,88,123,102,100,107,87,103,87,107,104,114,103,94,99,96,101,98,101,105,99,103,101,97,102,92,94,98,91,103,97,104,106,91,89,109,115,104,99,105,99,106,95,114,97,101,113,96,99,99,113,101,93,84,96,113,100,104,91,94,108,82,105,105,101,91,92,97,91,99,93,102,105,113,99,99,93,97,94,98,102,103,102,107,99,97,95,88,87,102,109,99,91,102,95,95,106,89,94,105,91,101,78,102,106,93,100,105,98,97,95,108,92,97,95,94,97,98,106,97,96,102,105,99,99,97,102,106,98,109,91,99,89,88,93,96,98,89,108,102,97,92,99,101,81,101,99,92,84,101,99,100,98,89,97,97,97,101,101,103,96,106,96,90,97,97,100,88,93,90,98,101,91,112,101,106,100,93,94,93,97,89,98,113,110,106,111,97,104,87,102,105,98,109,94,91,102,96,111,90,103,104,94,92,108,93,95,107,108,103,107,90,98,99,98,91,88,93,96,103,99,108,101,109,92,95,85,99,91,94,97,111,101,92,98,110,102,91,103,94,91,101,111,102,98,91,87,112,116,99,104,91,101,92,128,96,88,75,96,97,94,98,93,103,121,103,98,102,91,88,90,94,111,95,95,95,104,91,89,92,95,100,99,106,87,102,99,100,99,99,96,92,88,96,99,109,95,106,102,101,98,101,93,93,104,87,106,99,90,84,85,101,102,102,91,109,115,95,84,101,101,104,104,97,97,100,91,104,101,113,92,102,93,108,91,106,97,101,100,98,95,97,94,88,100,104,104,98,98,85,100,113,97,93,108,104,97,95,85,103,104,111,99,92,100,87,101,107,105,99,106,95,121,99,95,91,88,92,91,97,97,95,102,105,102,94,96,105,98,91,99,91,105,87,91,94,101,112,96,98,98,99,95,90,103,95,98,102,92,98,134,94,98,96,90,83,113,99,95,112,96,112,79,96,101,96,91,94,94,85,100,114,92,108,94,100,95,98,94,94,99,104,101,109,100,94,99,100,103,98,92,100,94,91,102,100,95,95,110,100,92,92,102,102,87,99,98,90,104,116,90,97,99,103,100,100,103,98,101,85,98,94,110,100,100,120,102,106,100,93,88,85,97,93,109,97,97,92,92,112,98,89,116,94,111,97,94,94,98,110,100,101,95,99,79,93,97,113,101,107,95,116,98,98,106,78,91,103,94,104,101,99,97,94,94,87,99,113,84,92,106,99,99,79,87,120,109,96,104,102,97,91,98,97,88,103,103,104,101,98,108,95,93,93,98,99,106,110,87,101,90,95,97,90,101,91,101,94,106,93,94,98,106,87,102,118,97,97,91,108,87,99,98,90,117,84,100,97,90,84,97,110,97,107,94,94,97, +711.29437,88,106,92,97,84,99,97,83,95,100,100,100,95,87,89,84,98,113,104,111,101,96,103,91,99,107,92,91,102,95,93,91,101,104,115,95,103,98,94,101,105,123,95,106,100,109,92,107,91,107,100,102,65,89,105,87,102,94,99,83,101,101,99,86,100,103,98,99,107,90,91,109,105,91,96,96,109,106,110,105,109,99,100,112,101,97,74,108,108,85,95,93,105,114,95,91,112,102,97,95,96,98,90,98,100,109,97,101,106,107,104,107,109,104,96,102,94,121,94,91,105,109,98,103,101,105,94,99,108,104,102,110,104,104,106,100,106,102,105,100,102,107,100,98,91,95,103,100,96,97,100,104,95,90,98,101,99,99,101,98,94,102,94,102,109,91,100,106,105,94,111,101,105,94,95,100,98,92,95,98,101,110,110,100,108,103,106,95,113,92,94,101,106,96,83,100,107,94,113,103,104,108,115,107,90,114,111,102,106,95,105,112,109,109,109,95,96,107,100,108,107,110,106,106,95,99,94,100,98,110,98,91,108,99,93,110,96,103,107,102,113,89,106,86,88,96,88,94,100,96,108,95,109,93,95,92,95,105,99,95,101,113,97,107,113,111,105,103,104,91,114,89,102,91,111,95,101,114,103,105,98,91,109,111,107,97,94,98,115,102,105,116,109,101,107,105,105,104,100,101,89,109,106,130,89,98,99,103,101,106,102,109,100,108,104,96,91,105,92,98,100,97,96,95,113,93,102,103,102,103,107,95,91,105,103,91,102,109,111,103,91,92,97,99,96,98,90,94,101,102,102,91,105,90,114,98,99,97,104,100,109,94,100,101,85,105,99,91,113,101,110,93,92,99,99,104,97,97,101,101,97,99,101,99,93,102,97,93,98,94,112,109,101,103,103,98,110,105,94,100,101,90,93,95,94,103,104,103,73,95,100,97,104,96,107,96,101,91,100,90,105,94,105,103,97,95,106,87,81,100,102,97,90,99,100,88,104,105,105,98,113,95,83,90,103,95,98,96,94,99,95,98,105,100,100,109,92,96,105,100,112,108,99,98,101,93,98,97,100,95,106,95,95,89,110,100,98,96,104,100,100,99,102,101,109,98,105,107,99,91,100,106,104,107,68,87,101,109,92,112,109,104,93,93,109,100,89,109,107,106,117,101,101,99,100,90,100,111,96,83,78,97,105,114,106,98,99,103,114,101,100,80,101,97,95,103,103,101,97,96,102,103,88,101,104,103,106,91,99,100,94,103,129,111,103,100,84,98,101,102,100,98,102,100,101,91,93,99,83,86,106,75,104,96,96,105,101,91,103,106,96,93,106,97,98,95,102,102,101,103,95,86,100,109,99,94,88,106,100,106,98,108,99,94,115,96,110,95,101,104,92,93,99,94,93,105,94,95,99,90,95,91,94,106,97,102,97,105,106,100,100,101,90,90,90,108,100,95,112,100,114,109,93,91,87,101,87,97,99,116,96,99,100,95,113,99,114,102,91,109,108,100,103,103,91,102,99,101,96,101,100,88,98,95,94,110,100,110,88,105,96,95,109,99,84,103,107,79,107,99,113,91,103,101,112,92,109,101,111,94,104,96,103,98,86,112,102,102,96,99,99,100,103,103,100,93,100,94,90,93,106,84,106,99,100,107,98,100,107,120,110,109,96,100,103,98,105,94,93,108,92,106,99,99,109,98,106,94,109,99,103,94,95,91,87,103,106,101,88,93,92,101,95,101,104,99,96,97,98,105,86,102,109,99,98,102,97,101,101,96,76,98,90,82,89,103,101,119,97,111,99,108,114,92,100,90,91,110,112,117,104,91,94,94,101,84,101,99,95,112,104,93,103,108,104,94,105,89,117,102,94,101,87,105,110,106,95,99,91,101,109,107,109,96,87,97,99,110,93,107,98,104,104,96,95,95,100,85,102,87,82,89,108,105,86,100,84,104,99,91,86,106,110,101,98,87,102,99,98,103,107,97,110,103,93,108,112,96,79,105,104,97,84,100,105,117,92,108,98,100,95,108,115,85,89,87,103,97,95,100,100,106,91,98,94,96,98,103,101,93,90,87,102,105,111,82,96,97,107,94,101,109,105,100,97,98,95,100,90,106,105,105,100,103,89,109,105,99,109,97,98,107,115,103,97,101,105,96,105,104,107,100,93,91,98,101,100,90,94,112,112,98,98,98,92,97,101,92,88,100,100,89,103,97,102,95,95,104,88,98,101,97,98,89,101,109,99,98,100,104,104,109,100,103,91,105,106,116,100,108,100,98,87,102,109,95,101,106,95,105,98,100,102,101,101,100,96,94,101,109,99,112,90,96,98,102,97,96,111,101,101,103,108,108,97,100,101,94,109,108,92,99,104,91,103,106,103,97,104,106,76,97,101,97,97,95,88,103,99,94,96,92,91,105,112,101,86,108,116,94,85,113,94,100,90,111,100,108,106,111,96,104,105,94,96,97,96,79,113,95,92,106,119,98,85,90,99,99,109,104,96,102,105,105,98,98,100,106,98,99,102,101,117,94,91,107,82,95,93,93,95,87,98,94,104,98,91,95,119,80,100,106,94,101,104,92,90,98,103,87,101,94,83,102,98,91,103,99,115,98,101,95,116,93,106,95,107,94,87,99,109,93,92,97,99,105,97,89,106,74,124,108,93,112,94,92,100,89,108,105,110,103,95,102,106,94,100,107,101,100,106,105,92,100,100,102,94,105,108,97,96,113,92,100,104,112,106,91,105,96,96,99,106,95,89,94,102,110,88,105,103,93,103,104,95,103,96,110,110,94,106,98,113,118,89,112,95,85,101,104,97,87,97,101,98,80,104,97,94,91,59,96,93,94,93,108,83,100,109,102,96,95,93,89,101,101,113,103,97,102,104,94,110,105,88,98,99,107,108,95,80,97,109,99,95,91,102,110,102,90,104,102,93,99,100,106,100,97,100,94,90,96,94,108,93,99,116,108,96,91,92,97,92,97,102,93,100,101,101,101,98,98,103,93,101,93,95,95,80,110,92,105,93,92,97,93,92,94,107,111,92,79,105,85,107,101,103,97,98,103,102,86,96,102,89,105,96,103,89,94,95,121,104,96,105,87,109,105,100,91,98,106,100,94,96,103,88,101,97,94,106,92,106,112,121,92,99,113,103,93,95,103,89,89,100,92,112,96,99,90,96,106,72,95,99,89,102,102,102,95,98,101,116,90,101,88,94,99,99,105,106,96,102,103,99,83,104,102,95,101,101,104,103,98,94,104,99,95,87,99,98,95,99,98,101,101,98,101,87,100,96,98,98,106,96,88,101,89,101,91,102,92,101,108,106,102,83,95,97,98,86,93,109,96,94,104,110,96,97,100,93,103,94,99,91,100,90,102,103,95,83,108,94,94,88,91,81,104,106,94,102,100,105,102,94,86,101,93,103,105,103,93,99,106,106,97,106,85,98,104,94,101,104,94,107,98,100,88,95,86,109,98,100,101,102,102,102,103,99,93,98,97,104,95,101,98,105,93,120,89,116,93,110,103,103,100,113,99,98,98,102,119,100,105,101,102,96,108,79,94,105,92,101,92,91,96,100,91,92,110,94,91,107,114,93,97,101,92,95,99,96,92,103,108,94,101,102,83,105,94,99,91,103,109,128,92,105,99,105,95,88,97,96,96,100,102,100,107,95,105,95,113,90,87,98,97,102,98,99,102,104,110,101,105,94,95,101,105,94,92,93,108,96,104,94,97,98,93,99,111,73,98,82,101,99,87,98,101,105,105,100,99,95,98,93,100,95,96,100,106,99,106,96,104,97,104,99,129,106,86,105,87,104,89,100,102,97,94,100,113,104,104,96,115,106,102,96,106,92,113,90,108,117,108,88,105,87,104,95,102,91,99,86,95,94,90,101,95,101,92,105,86,98,98,97,92,92,103,96,97,94,94,113,99,106,98,96,84,98,107,102,102,68,102,94,96,102,97,93,85,100,99,105,97,99,101,89,92,98,113,103,110,105,90,100,94,99,101,105,106,106,98,91,90,102,111,91,92,94,93,96,104,92,83,96,108,103,115,105,90,100,90,107,98,95,98,99,95,92,130,112,101,102,114,107,98,90,103,92,104,108,92,114,109,100,103,102,109,97,100,88,98,96,98,101,94,91,92,87,95,101,98,102,93,91,95,103,120,102,102,100,112,97,102,103,108,98,105,98,95,98,91,100,92,103,96,97,103,88,99,104,106,105,86,93,102,107,103,104,93,100,109,100,99,114,99,100,75,105,106,107,95,92,90,98,102,95,93,101,102,99,102,106,98,91,95,96,101,98,109,101,98,106,100,103,94,98,101,92,91,108,99,118,116,106,104,94,101,112,106,93,101,105,110,112,99,101,105,97,100,102,107,101,91,109,82,98,95,109,88,111,92,100,98,87,111,96,94,110,92,110,101,92,103,99,104,97,101,91,101,96,87,101,98,76,102,108,93,103,100,105,98,100,78,102,101,106,117,108,96,94,101,86,98,91,106,100,105,95,101,91,108,92,92,95,92,94,98,76,109,108,123,84,112,98,100,95,96,101,97,88,103,95,111,102,98,111,96,87,85,104,99,105,95,94,98,101,84,101,95,96,100,117,109,93,102,96,140,103,103,103,104,100,108,108,92,110,90,108,93,101,83,97,113,102,84,82,97,102,102,91,96,93,91,100,98,98,99,102,93,109,107,97,94,120,88,96,94,98,108,91,98,96,113,98,109,106,109,94,95,85,105,106,106,100,102,89,110,88,99,90,102,96,106,97,107,98,93,104,91,100,73,90,95,107,103,95,101,93,87,101,117,97,94,99,94,104,79,96,107,101,100,90,108,93,111,96,110,110,80,117,110,109,93,97,100,112,100,100,99,106,92,94,100,96,100,103,103,106,93, +711.43567,76,99,95,100,84,103,108,99,103,85,94,109,88,102,89,94,105,96,86,103,98,110,92,109,89,105,93,119,103,98,104,97,93,100,94,100,105,92,115,100,101,99,95,105,93,109,97,94,94,116,105,98,96,82,93,113,100,116,101,86,102,90,102,77,102,101,102,98,104,99,86,100,95,101,68,90,99,102,96,100,94,100,107,106,97,95,95,97,96,100,74,92,99,95,102,93,103,97,91,87,88,94,79,104,103,103,97,105,99,105,85,107,90,93,103,93,107,99,100,109,96,94,105,109,94,111,111,97,111,98,105,103,106,99,101,111,110,101,103,100,96,104,99,94,94,94,106,99,95,103,98,95,107,91,81,96,90,98,107,89,97,98,97,106,109,98,105,92,90,103,99,95,103,100,98,92,100,88,104,95,102,95,104,97,100,104,105,79,89,91,89,97,91,98,101,111,108,99,91,105,89,107,101,103,109,92,110,111,114,116,101,110,109,96,88,104,94,98,99,105,102,98,95,95,93,96,94,113,111,96,103,103,99,97,109,95,94,107,99,101,98,96,92,98,96,83,91,108,95,103,96,101,100,109,110,106,94,101,88,100,89,109,109,96,94,98,108,106,103,92,129,100,99,94,104,98,103,93,99,104,88,111,92,107,93,99,93,107,87,100,102,105,103,104,110,96,115,90,108,96,106,101,95,82,69,101,104,95,93,102,99,96,97,90,83,98,97,95,105,94,102,96,109,98,90,93,94,101,107,100,103,108,108,98,100,106,98,91,98,92,100,106,113,96,101,109,108,110,99,80,94,102,95,95,94,110,105,104,98,98,86,92,97,104,92,91,103,96,96,114,105,101,108,98,104,109,103,99,89,94,106,100,95,104,94,106,105,93,103,101,102,104,98,101,96,96,106,108,108,92,104,98,100,93,122,91,92,101,92,93,93,98,92,101,100,103,96,93,82,97,101,108,97,98,100,95,97,99,95,102,100,84,101,90,95,79,64,98,96,100,97,104,100,99,96,100,99,100,94,110,97,108,90,98,116,95,92,101,102,103,100,92,103,93,91,95,98,103,103,103,86,95,94,101,98,100,104,106,105,103,106,95,102,96,91,98,105,96,80,103,103,95,98,112,98,110,97,108,106,88,112,105,114,96,96,98,92,102,101,101,113,111,105,117,89,103,112,112,103,112,94,92,102,95,98,99,108,100,96,93,96,103,89,100,111,94,108,93,105,99,102,97,109,93,112,95,101,103,102,95,96,117,101,94,97,101,112,90,88,99,106,103,99,96,95,95,106,90,101,95,87,90,113,111,103,102,91,88,99,111,89,82,102,94,91,99,94,91,91,95,108,98,98,95,92,107,98,107,94,99,84,100,96,90,87,94,106,90,102,106,105,93,99,110,103,90,93,87,89,102,110,103,101,99,91,91,99,100,103,97,108,99,96,103,92,92,102,95,95,101,103,111,97,98,86,94,110,95,102,113,105,87,109,101,96,106,105,111,96,97,87,106,97,110,95,92,97,107,99,101,105,96,102,96,93,91,101,92,85,103,101,113,113,92,104,92,105,97,103,108,97,105,95,103,109,94,97,88,100,89,94,96,99,109,117,109,99,106,77,96,108,96,103,101,109,98,102,101,93,99,116,85,96,97,92,93,95,98,105,103,99,93,91,112,100,97,101,94,112,99,114,84,96,100,110,123,105,99,105,89,107,101,89,94,103,103,100,92,109,94,100,88,105,105,98,113,98,100,108,99,102,99,104,98,95,95,109,116,99,95,106,102,99,104,100,77,99,99,103,98,102,97,93,71,91,114,93,96,102,101,88,95,98,97,99,110,109,105,102,93,115,102,98,102,104,103,100,94,105,114,98,97,95,110,105,104,94,92,98,109,105,88,103,102,106,111,106,101,104,106,99,105,104,95,85,96,103,88,94,103,99,93,107,107,95,104,88,95,104,98,90,103,103,111,99,85,95,106,99,99,102,110,102,97,99,94,99,83,97,107,103,87,77,105,93,105,93,91,104,97,107,109,110,98,107,93,94,99,88,92,98,110,67,102,99,101,88,98,93,94,89,98,103,102,105,101,100,103,83,109,96,98,97,102,104,84,92,114,99,98,92,94,116,100,94,105,98,86,97,100,89,113,109,99,94,73,97,105,100,110,102,96,93,97,113,91,114,99,94,110,110,104,94,93,119,106,94,101,112,97,87,101,101,93,110,92,102,94,101,98,102,95,100,102,84,94,97,99,96,91,99,94,99,106,107,81,97,72,103,106,101,87,96,106,95,104,112,117,95,92,100,95,138,98,104,95,107,99,99,96,99,101,101,86,100,109,99,95,88,102,92,97,105,96,108,87,96,102,99,109,100,107,99,98,104,103,113,99,101,92,100,107,92,93,98,105,99,102,106,114,102,97,100,93,98,117,89,94,103,90,91,103,105,100,96,109,108,100,92,105,105,96,89,95,104,94,81,97,105,108,113,94,96,79,102,101,106,105,106,105,95,94,106,101,102,110,93,95,101,100,104,96,113,100,95,89,100,94,97,110,85,97,103,102,103,100,104,97,96,99,101,111,92,92,93,105,96,87,100,91,102,93,99,100,107,85,85,101,123,112,99,80,98,87,106,99,92,98,115,103,106,89,104,98,102,104,95,103,102,99,84,106,96,111,95,107,112,103,107,87,123,89,96,109,102,96,100,110,91,88,102,92,98,96,94,107,98,97,98,105,97,102,99,104,95,101,105,103,104,101,98,103,90,103,98,102,106,99,100,96,100,111,112,94,96,96,104,106,94,85,97,104,101,96,102,104,105,112,108,109,106,94,112,87,106,114,101,97,101,78,103,99,89,102,95,100,98,100,92,100,87,99,106,110,100,91,102,103,85,103,108,105,95,101,107,93,98,101,102,111,104,99,109,89,106,105,105,94,102,108,106,105,96,98,114,106,98,102,99,112,103,108,100,102,108,107,102,97,104,100,98,100,94,102,102,106,93,96,101,96,91,107,109,99,103,96,100,105,101,99,97,94,91,102,101,92,106,92,88,109,114,113,89,100,105,81,103,108,91,81,95,102,103,102,87,93,98,101,95,101,105,106,98,106,99,97,79,104,96,96,92,94,97,99,100,94,101,96,99,98,101,95,101,97,105,97,91,93,97,110,99,86,71,96,109,99,89,94,109,100,99,80,102,90,106,99,83,107,99,100,83,95,92,102,91,94,95,88,107,102,102,96,98,88,94,112,97,109,109,92,100,95,104,94,82,107,100,103,102,99,95,102,100,98,102,99,93,102,108,98,83,96,103,92,89,98,104,106,94,84,100,110,97,107,95,97,95,97,89,98,89,119,111,91,102,102,109,103,98,102,102,103,111,101,115,97,96,99,95,89,95,91,92,102,94,98,95,102,109,101,101,93,104,96,105,101,95,83,107,101,82,87,96,104,94,121,96,99,69,102,100,114,97,92,105,103,90,98,97,96,117,100,99,92,106,103,91,88,106,79,113,101,97,76,112,95,121,101,104,110,102,102,87,95,101,99,72,106,83,96,100,101,102,91,92,95,101,102,91,110,105,105,93,98,95,94,87,92,99,94,89,94,99,81,95,106,111,98,102,93,102,99,104,101,104,90,99,103,105,100,90,108,89,100,105,94,101,85,102,97,109,88,91,119,95,105,87,96,106,91,97,100,91,97,93,94,102,105,99,88,109,105,101,103,96,106,98,100,110,105,89,111,106,105,95,109,108,109,84,100,100,94,101,108,92,94,111,98,104,95,104,91,104,102,95,82,103,84,102,95,94,96,87,106,98,101,108,88,104,88,107,104,93,101,104,115,105,95,98,108,98,112,86,93,111,106,113,105,100,93,103,100,117,93,98,115,85,103,104,102,106,106,91,91,92,101,108,98,94,97,99,106,94,105,94,98,116,96,101,116,100,104,100,105,85,98,100,106,109,100,108,99,102,94,101,105,107,95,97,99,99,101,96,105,105,98,100,106,88,99,96,80,97,112,102,109,85,105,107,77,107,106,96,104,104,108,104,87,108,108,95,100,89,98,113,97,85,97,103,106,102,95,93,104,90,93,102,103,93,109,114,98,89,117,96,112,94,101,101,98,103,103,103,98,91,93,98,99,100,97,103,88,111,98,101,95,97,95,107,98,99,92,93,96,94,97,100,100,97,92,106,99,108,89,105,107,93,87,103,104,97,100,129,85,98,92,96,96,104,94,100,101,96,93,99,97,127,102,98,87,95,91,97,98,110,98,87,97,100,113,105,94,102,99,108,92,92,74,96,97,105,95,97,97,117,113,93,112,109,105,99,87,102,103,106,94,95,91,84,98,105,101,102,99,85,96,100,98,104,105,95,98,105,101,91,98,104,96,114,97,91,108,95,100,100,95,98,122,95,95,91,96,88,94,90,109,90,107,101,90,90,94,96,111,98,87,90,86,97,95,97,106,92,99,109,93,91,93,103,96,103,106,100,104,99,99,91,91,95,117,86,95,63,95,104,101,104,99,102,99,104,102,95,97,104,104,105,106,99,106,105,103,92,101,101,102,97,103,107,100,91,103,108,103,106,107,90,102,91,98,95,90,96,97,95,104,94,98,119,108,101,92,84,95,100,101,111,107,99,97,110,103,112,87,107,87,116,98,118,90,102,104,95,102,104,97,96,92,97,96,80,94,99,92,106,78,97,102,95,97,110,99,118,82,117,103,101,88,98,92,81,93,99,95,93,102,100,91,100,103,91,99,93,98,98,95,93,117,105,93,96,91,124,104,100,95,106,92,85,101,108,97,113,105,97,93,128,92,92,88,108,93,98,92,100,114,98,104,104,88,103,67,89,92,92,95,94,94,110,80,83,87,108,92,83,98,70,96,102,96,112,101,105,100,106,94,94,106,102,97, +711.57703,96,79,105,98,89,109,103,97,88,97,106,97,94,109,90,97,104,103,101,99,105,105,90,91,94,110,99,86,102,95,98,92,94,88,98,104,83,103,107,93,92,94,95,89,103,97,102,97,104,117,104,97,114,94,97,96,99,102,98,97,85,98,103,64,100,97,86,105,97,94,85,97,94,100,85,93,91,97,94,97,99,123,93,105,103,93,92,101,101,93,99,104,102,104,99,99,90,106,88,113,95,89,96,94,99,91,97,101,91,96,104,101,105,106,94,92,104,88,105,98,105,119,111,101,105,97,103,94,82,97,104,111,94,100,98,101,91,109,94,100,93,101,106,103,97,97,105,105,96,99,98,98,91,69,95,97,103,88,112,90,91,98,121,106,92,95,100,95,95,91,102,113,105,102,109,90,99,89,101,98,102,100,82,103,105,100,100,94,107,92,90,98,104,96,97,98,86,93,100,105,89,96,103,91,101,90,103,113,104,101,103,106,99,103,114,108,97,100,126,102,90,104,101,83,82,92,115,113,102,100,91,98,105,105,94,103,102,90,80,116,102,95,109,110,90,102,91,101,101,112,105,101,96,100,100,107,104,103,92,92,99,100,85,104,100,102,96,100,90,98,95,105,99,91,110,98,108,95,98,101,112,96,101,102,99,92,102,103,100,111,102,98,97,102,104,110,101,93,99,104,91,100,111,106,87,94,101,95,99,101,95,105,95,133,103,101,91,95,107,97,108,85,107,86,108,97,110,76,105,105,119,90,105,89,116,105,86,96,95,100,91,108,101,92,100,98,118,100,108,96,102,105,88,103,100,112,90,97,96,108,84,104,105,92,94,97,117,93,100,87,107,102,97,96,82,92,97,98,120,92,99,95,96,91,84,105,100,105,96,93,104,88,102,108,93,91,94,95,109,107,100,92,115,105,99,92,108,95,93,100,97,106,85,102,110,106,92,100,104,90,93,101,94,99,88,114,97,90,96,86,107,99,94,83,98,98,98,94,91,93,94,115,101,106,93,96,94,96,105,99,107,103,104,112,103,99,93,106,92,91,93,101,105,105,107,98,105,102,107,87,111,100,96,90,105,104,93,104,117,94,96,109,100,101,101,93,100,111,105,107,110,98,96,100,103,92,87,103,93,91,110,87,94,103,100,96,92,112,100,104,112,97,88,100,100,100,106,100,106,90,95,97,91,103,100,105,105,103,96,100,88,100,87,86,105,101,105,107,113,104,97,73,92,93,103,87,97,104,113,101,101,97,94,90,95,105,129,97,99,100,90,112,85,110,101,114,105,98,99,90,89,99,95,108,110,98,114,86,96,109,99,96,105,95,87,94,100,109,110,105,112,103,100,89,89,106,94,104,102,94,94,104,92,95,88,111,96,99,98,125,92,93,105,100,96,87,103,100,111,91,109,108,96,95,106,92,106,98,104,99,97,113,102,97,100,102,99,93,101,94,108,106,96,102,94,97,94,95,99,92,94,97,117,107,96,91,100,111,101,103,91,80,105,98,88,99,96,92,100,95,98,61,89,95,93,97,87,97,105,100,91,105,95,107,86,65,79,95,105,100,95,104,88,103,103,103,105,106,98,93,96,109,101,96,113,91,102,96,92,98,106,99,95,90,75,94,98,96,89,106,101,97,99,104,95,91,105,104,63,97,108,98,96,101,88,100,98,98,111,104,97,87,95,105,90,100,103,91,102,100,111,92,102,93,100,91,96,102,98,108,97,103,96,99,97,103,99,82,101,92,104,109,87,98,106,101,94,95,101,100,97,86,105,106,101,100,96,110,88,99,106,93,90,109,112,103,90,99,102,95,96,101,108,109,91,106,99,95,114,109,110,94,87,95,101,100,109,99,92,105,98,108,97,105,82,110,93,93,112,98,93,92,104,105,94,108,96,100,99,87,102,99,109,100,97,105,98,94,93,94,101,90,107,103,87,96,103,106,102,97,108,105,91,98,99,106,97,99,83,104,102,109,93,104,96,105,98,100,99,91,91,97,94,100,109,100,90,118,95,103,104,99,102,95,105,97,101,104,93,103,108,97,94,102,101,91,89,101,90,99,87,105,109,91,103,72,100,95,89,96,105,95,100,96,98,88,97,107,112,114,105,72,112,100,97,93,99,95,99,94,87,104,98,96,101,97,97,106,106,105,94,105,95,92,108,104,105,98,100,102,100,93,92,97,91,110,108,95,91,92,94,101,108,95,106,107,109,104,97,104,94,110,97,105,101,91,104,105,108,94,88,110,104,110,96,82,107,98,103,109,96,100,111,92,104,95,117,99,96,113,94,105,94,100,107,96,106,112,96,103,101,101,94,104,105,101,106,99,102,97,102,105,105,105,96,88,98,104,92,107,109,105,98,90,113,98,108,92,91,107,92,101,95,89,99,96,98,88,85,114,92,102,102,91,89,82,96,106,92,82,102,118,102,94,103,100,103,95,91,88,93,88,102,99,105,94,87,91,115,103,121,110,83,102,98,104,95,103,71,79,107,98,95,95,102,94,99,100,105,97,95,111,101,92,100,104,100,104,85,102,96,104,113,107,108,108,89,91,97,99,101,132,98,109,103,90,95,97,83,89,97,97,94,100,93,89,113,95,107,104,100,105,109,106,106,102,105,99,101,88,109,90,97,92,92,92,102,99,113,110,101,113,101,106,92,106,104,110,112,89,103,102,116,103,93,109,109,107,95,96,111,101,99,99,80,105,95,94,113,99,106,99,101,101,105,110,110,98,104,106,105,91,104,98,100,89,113,102,100,104,96,100,100,88,90,97,103,95,106,98,95,106,85,95,93,97,93,101,100,86,102,94,105,101,96,99,100,91,106,87,91,91,99,109,102,96,87,90,107,106,113,103,97,102,103,98,107,98,98,108,104,93,103,110,94,100,93,97,107,97,100,96,104,92,100,98,101,106,97,101,109,100,100,106,95,111,94,86,99,101,96,96,105,98,99,110,92,109,90,103,98,104,101,100,107,104,102,91,101,98,107,105,97,111,105,84,92,106,94,109,105,98,101,100,98,98,100,99,92,103,91,102,109,107,97,97,98,98,111,66,105,112,100,97,106,96,131,91,90,94,97,94,92,105,95,118,107,103,108,98,109,105,102,90,104,93,101,104,98,104,95,92,90,85,106,96,92,106,92,96,97,95,92,90,90,107,100,101,95,91,84,95,84,96,97,101,97,103,114,95,86,90,91,108,102,105,91,92,104,98,101,100,97,98,104,101,103,100,101,97,99,96,97,103,97,107,102,112,71,92,109,99,100,100,99,98,103,106,99,104,89,91,80,100,101,112,99,110,96,90,103,99,101,96,98,101,103,87,106,85,87,100,92,95,100,106,97,102,94,101,83,93,99,89,104,97,106,95,105,97,100,104,93,106,105,95,101,103,113,96,95,102,90,92,87,110,113,98,96,118,104,108,88,112,80,96,106,105,93,88,101,93,98,94,100,109,106,100,95,101,108,101,113,89,102,95,103,97,98,92,95,87,98,101,87,108,101,98,100,102,103,113,94,92,99,98,101,95,98,81,97,101,90,102,91,104,101,105,95,98,90,102,91,127,99,95,97,95,97,91,113,93,100,99,97,114,106,105,111,90,102,96,100,100,101,95,98,96,106,100,87,93,91,97,77,104,91,92,101,101,102,92,101,114,80,94,90,99,106,93,91,101,95,102,100,104,101,89,98,103,91,90,98,96,73,92,97,104,100,95,92,109,100,115,97,112,104,100,105,105,109,103,85,95,97,111,124,106,111,97,110,101,93,103,100,102,103,113,101,94,94,107,100,95,113,101,102,107,102,105,105,102,116,110,97,101,94,88,94,101,88,94,102,109,99,98,101,104,117,99,92,102,105,95,107,92,107,94,98,107,101,93,91,93,98,99,116,100,91,110,103,101,100,95,96,100,103,96,62,101,101,98,116,97,102,100,117,94,99,94,99,103,94,110,101,79,107,100,91,88,96,87,100,115,104,109,75,105,98,117,103,88,98,94,104,97,84,91,90,110,106,101,95,108,100,86,99,98,105,90,100,109,102,95,109,107,97,98,116,100,98,90,96,99,97,100,76,95,106,91,91,102,91,96,94,95,103,123,114,92,110,92,108,102,97,103,91,96,88,87,100,95,95,103,121,104,95,90,95,96,88,97,88,91,106,108,97,116,95,95,94,99,77,110,99,98,98,99,99,87,102,99,102,112,98,109,98,101,103,104,100,97,98,100,98,99,97,109,97,89,107,94,95,90,100,106,90,95,103,105,95,99,102,96,111,99,95,106,109,94,98,104,85,108,110,92,96,91,82,85,102,102,98,107,98,95,101,89,109,96,98,97,101,93,94,94,101,101,101,79,90,103,102,106,84,111,95,86,98,102,102,98,99,104,100,98,96,94,96,102,88,76,94,113,85,112,96,91,91,103,100,95,95,97,98,62,87,96,95,103,112,104,104,104,99,96,93,100,102,101,101,94,100,102,100,102,96,98,98,97,96,75,100,103,109,93,103,107,86,100,100,98,100,95,87,101,108,99,103,109,103,96,95,104,98,100,110,102,95,97,132,103,105,105,94,99,103,107,98,101,100,100,95,100,117,95,96,106,94,93,100,99,89,105,103,101,98,87,94,95,101,107,102,99,101,97,112,94,99,101,96,109,111,99,102,97,103,97,103,106,109,104,114,107,101,104,93,105,99,87,104,118,117,113,103,109,108,102,91,91,85,100,95,96,110,95,98,91,94,96,112,97,99,100,96,105,95,97,104,110,113,96,87,80,112,103,102,106,103,93,100,112,102,96,97,102,104,93,99,98,82,101,92,97,101,109,113,109,97,94,96,98,93,89,98,107,97,95,103,92,125,93,92,84,110,104,97,109,109,102,96,89,103,102,88,95,105,100,92,101, +711.71838,103,108,92,93,98,101,99,104,100,84,114,75,93,97,96,99,97,102,95,93,95,113,91,87,104,97,97,93,93,105,103,97,101,105,102,85,96,98,104,102,100,92,112,100,100,104,93,115,90,110,108,89,91,97,79,119,114,87,92,103,97,98,105,96,94,100,94,105,98,100,107,98,104,93,97,101,109,99,99,106,91,106,105,93,87,98,107,107,94,95,105,105,107,108,99,84,96,101,96,97,99,101,101,93,97,101,96,119,105,100,104,104,111,96,103,96,101,96,106,96,94,103,100,101,91,105,100,93,104,97,101,100,94,103,93,92,101,100,84,93,78,114,99,87,105,103,107,101,88,100,98,95,113,100,92,110,99,102,104,104,92,90,100,106,96,105,101,98,103,101,95,75,109,95,115,97,101,101,95,91,91,103,89,100,98,99,100,84,103,91,97,92,95,98,95,100,97,115,92,104,99,96,96,105,107,97,97,100,106,114,84,114,92,98,105,99,99,106,96,92,106,102,100,104,105,101,97,100,92,103,105,119,109,96,85,100,86,105,92,100,101,94,106,98,93,79,99,110,93,99,86,91,93,97,86,99,94,99,99,94,96,93,100,95,95,98,97,102,103,91,101,106,97,97,99,98,95,107,83,98,93,92,102,104,103,104,84,100,95,90,99,100,104,93,102,111,91,99,98,97,97,108,93,102,92,105,94,88,95,113,108,94,100,103,103,89,96,104,112,99,94,93,92,94,102,91,90,97,101,106,100,95,107,106,107,97,94,107,103,97,95,94,104,91,87,100,90,106,107,86,74,99,95,96,102,98,100,106,106,98,94,81,91,95,101,100,108,114,85,105,108,88,106,98,67,96,109,92,104,94,90,106,99,90,91,93,85,104,103,99,98,100,98,101,102,102,98,102,90,107,101,102,110,99,91,92,91,91,86,89,84,98,86,100,103,100,87,91,102,105,101,98,101,95,101,91,96,99,103,102,90,102,96,101,91,103,92,102,102,102,101,110,109,104,106,101,95,81,99,85,96,102,102,94,102,101,106,101,98,96,130,98,100,95,99,119,89,104,101,108,105,104,82,104,89,97,98,106,113,95,98,96,106,98,107,105,96,106,98,100,91,95,110,105,105,98,92,90,107,94,111,108,86,106,91,91,89,86,96,109,105,89,92,88,92,103,93,101,88,97,86,102,101,96,90,109,106,91,102,96,85,88,83,101,88,103,106,91,88,99,103,104,100,91,111,93,99,104,117,105,98,109,88,90,99,91,114,97,102,91,110,99,100,95,93,95,97,102,104,84,92,101,105,100,104,90,107,109,100,96,99,102,109,105,105,100,110,104,111,89,105,105,94,100,101,104,98,100,98,91,103,91,105,97,83,99,94,85,110,105,96,108,100,106,111,101,100,99,96,111,95,99,109,93,104,97,91,97,100,100,106,97,107,124,97,97,95,100,101,97,96,112,109,90,98,87,86,92,117,112,97,88,100,96,101,101,97,96,94,104,109,74,107,90,95,66,109,88,80,99,97,90,93,110,95,100,92,102,104,101,96,99,108,86,93,101,104,107,108,89,88,109,91,100,95,101,92,105,97,87,90,102,97,100,100,99,96,89,95,99,107,102,113,101,101,110,90,96,92,99,90,88,114,104,98,111,96,102,95,101,103,96,91,106,83,92,105,102,110,95,93,94,102,98,98,96,95,100,97,100,100,96,108,87,103,76,95,102,92,98,82,91,99,103,107,104,105,97,102,100,95,100,102,94,112,105,105,98,96,95,109,95,100,103,98,101,111,103,95,101,98,91,109,105,104,97,101,78,90,96,105,88,94,107,95,102,108,105,106,96,104,94,91,95,102,107,114,103,105,99,102,101,100,105,100,110,99,90,90,96,88,103,96,101,98,96,94,89,94,94,99,100,106,87,92,94,100,93,109,79,97,93,105,100,96,103,98,92,109,91,102,100,101,104,96,92,108,107,104,111,98,77,97,101,108,95,88,100,96,88,100,108,96,104,99,117,100,95,98,103,93,97,102,97,104,88,91,108,102,90,87,97,111,98,100,96,90,105,101,95,96,115,104,101,117,95,83,105,97,100,98,95,100,102,87,105,82,105,99,94,98,102,105,75,97,91,119,97,95,101,100,101,100,104,97,100,96,101,85,105,102,106,95,91,104,96,109,100,102,98,95,102,101,100,105,98,102,83,98,105,96,100,99,104,94,102,101,98,105,102,82,99,98,95,89,91,97,81,99,104,80,102,96,90,95,99,91,99,99,103,100,92,109,98,99,98,106,104,92,90,87,108,111,110,94,96,104,111,103,102,92,99,105,90,118,112,96,92,97,101,109,104,99,94,103,111,77,103,95,100,82,109,87,114,110,95,108,96,108,94,113,113,102,99,111,100,96,121,98,110,98,109,109,112,101,92,92,98,95,89,92,103,100,101,101,104,102,94,86,93,92,98,106,104,99,110,103,92,120,102,108,95,113,84,90,101,97,93,107,108,115,101,101,101,98,106,108,99,107,102,109,102,101,96,100,91,105,93,99,98,100,103,92,94,109,106,88,92,86,101,111,102,94,93,97,103,106,106,102,99,105,103,92,110,97,98,99,100,102,96,100,101,117,102,102,99,106,99,93,107,99,91,95,97,106,97,108,100,109,103,105,99,94,101,97,85,103,94,101,106,98,96,109,113,91,75,99,104,96,108,105,91,95,113,109,96,106,100,105,105,100,95,112,102,115,108,100,104,94,101,97,97,100,108,110,105,114,99,103,93,94,112,103,117,90,105,94,94,98,98,99,103,100,113,103,94,104,99,106,101,98,95,103,96,98,87,109,99,100,108,94,101,76,90,80,106,104,105,94,91,104,101,105,98,106,87,99,104,107,109,103,107,104,104,93,100,95,87,101,108,109,108,93,106,106,103,103,94,99,94,102,105,97,87,102,111,94,102,108,110,88,104,100,98,96,97,103,114,87,95,102,103,105,98,91,130,103,105,108,105,91,104,92,101,111,110,99,104,104,105,100,106,96,111,109,90,97,98,105,93,91,93,102,98,100,102,93,95,108,106,92,95,109,100,99,103,106,104,96,88,101,110,105,99,103,104,92,95,105,110,93,93,84,111,109,104,89,101,99,106,95,81,100,97,111,92,104,99,103,98,93,100,101,98,112,115,99,101,108,113,105,93,107,94,94,93,103,116,108,98,96,107,113,95,103,98,99,96,98,90,101,105,76,93,98,99,99,100,101,94,98,84,95,99,108,105,95,120,98,114,99,99,105,93,103,96,95,99,106,98,87,102,101,93,88,99,107,106,105,105,91,103,103,71,104,99,92,88,96,91,99,113,96,100,99,90,108,101,109,101,87,97,98,97,96,104,102,100,96,92,92,104,113,102,101,113,96,109,109,96,88,99,95,102,97,91,99,83,101,107,92,99,106,99,94,94,101,101,113,98,98,103,97,101,108,89,94,98,99,98,105,109,88,120,109,105,103,102,101,91,97,100,101,100,108,99,97,101,106,95,103,103,102,107,108,100,103,99,107,105,91,95,105,99,109,103,99,101,87,106,105,111,100,98,92,72,87,97,96,105,87,93,99,95,87,102,96,98,98,96,102,107,107,92,95,109,92,100,97,117,105,96,107,98,96,90,73,95,113,107,98,96,84,102,99,100,102,102,109,100,108,102,96,100,95,97,99,96,104,102,104,97,100,108,105,113,99,106,109,90,96,98,105,105,105,108,98,101,96,94,95,102,108,94,97,101,93,97,98,103,118,104,98,101,96,102,86,93,99,97,101,106,87,105,112,97,102,110,95,113,112,106,119,96,109,90,96,99,102,121,102,100,100,103,102,111,108,88,90,96,97,87,90,104,98,101,102,109,103,105,91,94,98,95,109,96,100,97,97,99,93,76,102,104,98,102,93,97,107,93,94,98,101,108,96,91,99,98,105,98,91,92,97,95,103,101,101,100,104,92,115,93,113,97,103,94,97,101,89,100,109,108,92,104,98,97,94,108,92,94,97,101,98,109,94,98,103,95,102,99,99,102,88,95,102,99,103,103,101,94,102,108,103,94,101,95,101,88,95,112,106,102,103,108,113,102,105,105,81,101,123,93,105,113,99,115,91,92,94,101,96,113,93,99,96,81,93,115,104,94,89,98,103,102,102,111,102,109,95,105,106,116,91,88,113,112,100,103,112,79,105,110,94,95,98,101,101,101,90,98,102,104,109,96,100,112,91,117,99,100,89,103,95,98,84,102,96,100,106,98,101,105,110,99,99,101,98,104,93,110,101,116,104,100,104,102,95,96,94,104,100,94,106,84,102,91,93,99,93,101,108,104,109,112,107,71,98,103,106,96,108,103,93,107,103,90,95,105,99,100,95,95,97,106,98,96,109,103,99,100,96,95,104,97,97,108,105,98,99,105,105,94,89,105,105,106,94,100,96,111,96,90,93,100,124,103,99,95,105,108,101,94,89,94,100,107,99,96,87,109,93,103,83,100,103,99,106,100,84,100,99,95,96,96,99,110,109,111,95,99,96,100,102,104,100,102,111,97,105,94,104,101,98,103,96,105,94,106,88,99,97,87,113,96,111,103,95,109,95,100,101,102,97,85,102,105,101,117,97,103,100,97,104,87,96,99,88,97,96,97,110,99,107,97,95,108,97,105,100,94,97,89,103,102,96,111,107,102,107,100,95,101,112,98,101,100,74,102,98,102,95,108,103,112,103,94,109,95,99,104,95,120,97,90,102,100,100,97,92,103,93,93,93,99,102,106,80,104,99,104,95,88,90,89,81,100,98,94,79,89,109,87,98,98,109,112,110,91,103,93,104,101,107,109,101,96,114,94,115,100,110,106,99,90,95,102,96,94,93,75,110,100,100,106,121,106,102,102,98,100, +711.85974,95,100,98,94,95,91,90,91,94,108,77,98,92,93,97,93,90,99,105,109,105,105,107,116,84,103,94,81,87,102,92,102,96,97,99,117,105,105,71,104,99,94,95,108,95,96,112,99,101,103,103,99,95,102,99,95,93,96,95,73,81,93,104,98,92,117,105,96,108,98,104,83,104,104,97,95,101,101,103,101,108,100,120,88,106,95,99,87,93,114,95,105,105,102,97,98,111,100,99,104,98,104,86,102,104,104,96,98,91,102,95,92,110,105,95,114,98,112,102,91,108,104,98,102,100,105,90,97,83,95,116,102,91,108,105,93,93,104,100,106,96,113,101,110,84,104,102,101,100,103,99,95,93,87,91,106,100,106,90,94,102,100,106,105,104,95,97,95,105,102,86,102,105,93,102,96,98,83,98,89,131,95,101,108,106,101,98,108,110,100,96,98,100,111,95,94,102,105,94,96,94,98,108,88,105,92,90,99,90,102,89,91,111,97,91,96,97,104,119,99,109,106,101,92,109,105,99,104,108,101,102,98,101,113,108,101,106,90,86,100,98,105,92,111,93,90,126,100,95,101,101,108,96,100,102,115,99,115,90,92,105,101,119,99,97,93,105,95,99,99,91,81,103,106,104,100,91,99,124,110,116,88,102,88,94,101,86,91,92,96,98,106,105,88,108,100,105,106,99,95,103,106,99,101,91,101,105,96,99,100,94,101,101,91,94,100,95,97,94,95,101,108,109,100,98,84,96,84,113,100,100,90,93,104,103,96,101,104,99,105,90,105,96,99,89,95,106,80,114,113,99,119,99,121,103,95,98,91,99,97,112,101,90,97,103,107,96,99,106,87,100,90,100,90,96,99,95,112,103,99,97,110,90,97,101,105,96,103,103,95,108,104,94,109,99,93,93,112,95,93,107,95,98,101,98,91,88,105,103,78,82,94,107,103,98,86,105,101,99,90,90,103,96,91,101,97,95,99,95,106,92,104,82,100,98,91,102,87,104,103,98,102,102,106,129,102,101,92,108,109,88,97,130,113,95,104,90,104,107,121,100,116,100,104,113,100,101,92,111,99,116,107,101,94,104,90,100,104,98,103,97,96,92,93,105,97,101,109,91,108,100,103,97,104,103,99,88,97,105,95,104,93,92,97,110,113,84,103,97,98,100,113,99,102,99,93,125,99,92,94,100,121,103,97,111,96,109,98,102,104,92,108,100,103,99,98,94,96,106,103,103,93,111,100,96,102,101,98,94,101,104,99,105,106,103,105,97,95,91,102,102,96,97,103,103,97,97,105,90,95,106,97,110,99,93,107,96,100,97,87,104,105,105,89,96,97,99,100,103,97,122,107,107,100,101,112,111,111,101,91,91,97,103,95,102,103,95,67,95,101,97,105,110,92,106,104,104,94,106,111,95,99,102,113,89,87,102,88,105,92,102,103,73,104,83,106,97,113,97,104,91,109,104,97,107,100,101,100,100,102,134,113,95,95,109,103,101,106,88,105,100,108,104,92,83,105,91,96,113,101,99,105,103,91,97,116,95,105,105,102,89,79,97,97,103,95,105,91,91,100,101,105,111,97,95,99,100,98,95,93,104,102,91,103,105,98,101,98,96,94,85,93,88,95,94,100,95,97,105,91,86,105,115,106,93,89,95,101,104,106,101,92,80,80,97,105,110,95,99,94,104,104,75,100,126,96,101,99,105,98,104,100,95,93,91,106,104,100,86,98,82,105,89,96,93,87,74,97,103,82,98,109,107,88,99,139,100,90,103,87,68,116,113,111,97,92,99,100,103,92,95,102,110,91,96,106,97,105,93,107,101,94,96,95,109,107,91,94,103,95,108,95,95,107,113,93,101,102,109,88,96,104,90,113,101,106,98,115,103,109,102,103,105,110,106,112,105,125,107,112,88,107,101,113,81,91,104,106,98,95,100,92,91,103,93,106,95,100,94,105,108,105,97,109,105,100,91,106,101,96,71,109,97,100,88,89,98,100,104,113,101,109,93,92,96,94,85,104,95,89,103,115,116,112,108,103,100,94,98,108,98,126,99,113,89,99,98,95,80,119,98,103,104,105,102,106,105,102,88,95,97,100,100,91,103,88,101,87,98,94,97,99,100,93,108,106,94,104,99,111,110,107,97,101,106,71,107,92,89,98,106,95,108,101,107,106,106,104,90,111,108,108,110,100,101,89,70,99,104,106,88,101,98,101,95,108,96,110,90,105,93,104,94,98,101,84,89,105,93,101,100,97,100,117,91,94,100,102,89,99,89,106,98,101,102,104,102,97,87,95,97,104,103,85,102,97,85,93,104,100,99,108,110,79,93,93,84,98,97,101,110,96,106,90,97,100,93,122,100,110,117,91,97,92,99,89,114,96,102,107,95,103,104,105,110,112,94,94,103,101,111,93,105,106,100,99,102,99,92,92,84,105,102,97,94,106,102,99,115,99,83,100,83,112,95,95,106,114,110,97,95,95,94,91,96,100,97,100,117,103,113,96,101,87,95,110,103,106,103,113,97,106,104,114,99,104,91,108,94,107,107,95,99,93,108,101,91,99,96,102,101,105,98,101,101,110,100,108,91,109,121,109,93,115,87,101,105,105,98,104,102,100,106,105,95,95,98,94,87,104,104,88,96,95,92,109,88,98,111,91,100,93,106,108,90,94,103,96,94,104,106,93,100,99,99,102,105,106,99,102,86,109,102,96,102,101,97,88,100,105,98,97,98,105,102,110,102,89,106,101,94,109,100,112,99,105,102,103,65,87,104,97,100,97,105,83,97,98,100,93,123,97,92,94,101,94,93,98,101,108,98,97,101,94,99,90,93,106,89,91,101,100,97,93,104,85,95,89,95,98,96,93,98,97,97,85,72,107,101,108,121,100,91,94,90,111,98,102,99,96,102,94,93,87,97,94,109,91,118,98,100,96,94,103,80,88,98,90,109,97,98,96,104,100,102,91,98,94,94,101,98,101,88,90,99,104,102,104,103,90,94,98,101,107,107,103,106,104,92,102,101,79,87,99,89,93,104,93,98,108,84,105,101,105,96,91,88,101,100,100,97,105,96,88,102,95,101,108,103,95,103,97,110,99,100,109,113,70,111,108,99,101,102,103,92,97,95,98,105,96,107,87,88,99,116,100,100,106,87,111,97,101,98,90,101,94,90,96,118,113,100,100,98,99,90,94,96,66,104,99,95,99,107,94,91,93,93,99,87,106,93,83,84,86,95,92,89,96,95,95,101,91,99,106,102,101,107,115,94,99,104,98,94,116,104,99,71,100,117,97,95,76,108,99,91,102,104,109,105,93,92,107,95,100,90,104,98,98,115,97,92,103,92,84,96,98,106,94,108,101,106,94,89,110,108,92,99,104,97,109,110,98,71,103,79,108,97,97,83,89,100,90,117,98,95,92,96,101,91,97,98,100,99,101,96,99,93,100,89,94,98,100,118,92,85,97,99,114,99,104,100,99,102,88,98,97,118,100,98,99,113,106,99,105,97,103,92,100,85,100,103,96,101,101,98,110,100,106,92,96,91,96,107,95,99,106,99,103,100,102,104,100,98,104,104,84,99,97,92,86,97,94,99,107,101,101,92,72,112,94,98,100,110,97,100,103,105,101,107,101,100,91,102,92,92,103,111,90,89,102,100,96,101,91,85,92,97,99,89,75,95,98,93,100,102,103,100,89,95,101,130,105,106,101,103,90,95,107,101,79,106,97,98,98,96,96,107,86,104,102,109,78,91,94,92,88,88,93,101,108,99,93,91,99,102,76,94,85,107,98,97,97,79,101,105,98,91,109,96,101,103,90,108,94,96,101,99,100,98,101,92,94,106,100,78,102,107,116,96,88,96,115,87,99,99,93,97,99,104,95,91,109,109,95,100,101,92,106,96,96,94,101,120,92,83,103,96,93,92,105,95,102,103,113,90,105,102,107,96,97,109,95,100,97,110,83,96,101,99,90,91,96,100,108,94,96,91,94,135,109,108,100,90,96,113,98,115,91,95,97,107,113,86,98,98,100,96,102,104,103,92,101,91,104,98,109,105,108,88,107,89,93,94,100,91,99,92,104,90,97,99,102,95,103,90,99,89,101,92,89,104,104,107,94,96,112,102,100,82,91,106,98,100,105,96,105,104,105,100,98,106,91,105,100,104,100,94,98,102,83,105,94,103,93,104,99,114,101,98,99,107,98,96,91,88,109,106,100,105,104,84,112,89,98,95,101,94,96,96,100,102,106,97,101,95,87,94,99,90,102,105,91,104,104,90,102,91,106,102,101,87,108,104,105,97,95,104,109,104,104,87,102,102,90,95,99,102,96,89,95,113,98,101,105,95,106,105,104,94,99,89,100,105,101,95,102,88,102,105,113,101,101,103,96,96,88,103,109,107,95,102,86,93,99,73,106,88,107,101,100,105,97,88,84,94,90,84,111,97,98,96,99,102,105,102,98,98,95,91,96,99,98,87,102,101,102,91,98,99,105,92,93,91,111,106,107,97,114,96,98,96,98,103,100,92,91,109,83,104,97,91,95,98,94,102,117,104,91,104,95,98,105,102,97,105,89,98,103,86,110,98,92,88,102,101,108,94,96,118,103,98,99,115,107,89,94,98,98,97,103,114,93,117,93,105,125,101,110,97,109,94,81,94,100,89,101,90,93,101,101,86,92,106,96,103,101,92,106,106,82,93,109,113,106,97,95,104,91,90,106,100,102,110,103,93,104,92,96,98,106,105,101,97,91,107,101,121,123,101,96,98,107,76,92,88,100,108,98,98,104,97,96,91,105,95,99,111,95,93,95,107,86,88,102,97,80,114,108,100,95,99,103,99,93,83,98,88,101,107,90,116,99,88,80,90,102,109,101,91,87,98,104,82,93,103,102,95,100,90,92, +712.0011,100,94,105,116,99,100,98,106,83,117,105,91,94,99,111,79,101,100,100,102,108,106,90,109,99,83,91,100,98,95,107,101,102,101,111,102,95,78,97,95,87,99,101,97,104,101,102,93,97,109,107,95,114,89,97,98,100,110,93,79,94,111,93,88,99,98,98,109,96,90,94,97,88,111,97,101,100,101,100,109,95,80,107,97,95,102,107,95,96,91,87,104,96,87,89,100,108,100,100,88,102,102,99,95,135,96,93,92,91,77,98,71,114,97,100,100,102,108,101,107,91,87,92,98,95,94,99,99,108,97,99,105,99,93,103,98,95,102,93,115,90,113,100,93,85,91,89,102,89,92,98,90,95,92,98,101,95,91,104,97,91,121,116,105,103,119,88,108,100,109,94,110,90,81,116,105,92,106,103,99,95,87,95,96,97,80,102,89,102,108,103,104,92,106,94,99,108,100,107,105,92,75,89,98,121,105,95,103,101,102,95,104,91,90,120,99,90,104,95,104,92,106,111,87,91,97,94,98,97,101,105,86,111,102,102,94,87,105,97,103,102,90,94,91,86,95,106,96,106,99,104,113,66,103,105,94,97,110,92,94,79,89,104,113,90,105,94,83,100,111,96,95,92,100,107,106,98,107,104,99,93,100,97,104,62,108,97,94,98,103,99,112,98,108,95,103,98,102,109,98,102,108,103,94,95,97,98,88,103,114,96,108,101,105,105,97,99,98,95,101,97,109,103,105,94,101,91,79,105,101,95,106,102,94,106,109,103,93,95,86,99,112,94,105,94,82,104,82,107,91,103,96,104,108,98,91,100,114,105,109,84,92,103,95,100,95,103,106,95,110,126,97,111,96,99,93,99,97,92,106,94,106,87,96,94,90,95,92,93,91,111,83,96,102,100,91,91,108,105,98,108,103,106,102,92,105,98,98,114,97,92,97,87,99,100,86,97,98,102,77,98,103,95,97,106,108,98,93,91,98,92,98,98,106,99,99,99,92,100,103,93,101,100,108,90,87,100,100,103,102,90,86,104,105,97,103,109,91,104,91,99,94,107,98,107,110,111,102,97,96,84,111,102,100,94,99,106,102,103,86,92,102,103,95,94,103,99,64,95,100,98,99,112,93,102,91,106,98,82,93,103,101,109,101,93,94,104,99,93,102,114,105,108,94,110,99,107,114,104,92,106,101,96,107,106,99,102,103,92,80,102,108,105,95,107,98,90,93,103,121,92,105,98,96,100,102,105,99,96,104,97,103,87,107,96,103,104,78,91,107,107,97,96,91,92,105,99,111,96,107,93,87,99,76,98,100,61,100,99,96,82,103,94,92,95,98,108,90,99,99,88,102,99,103,95,108,92,101,98,82,95,98,92,106,95,103,97,91,91,92,95,92,97,119,103,96,90,87,95,105,96,104,103,97,94,105,98,84,103,101,97,106,101,96,84,99,96,105,103,96,100,98,100,94,97,87,88,117,100,108,106,98,98,112,105,102,96,105,103,106,106,97,101,103,98,92,100,101,90,97,103,98,100,99,96,99,110,94,101,106,91,109,100,94,104,98,91,101,94,96,79,97,101,104,107,106,94,98,114,96,95,86,90,84,104,104,108,101,91,97,94,97,95,97,90,96,94,103,88,105,103,105,96,98,100,92,94,96,101,101,105,99,97,99,92,90,102,100,99,99,92,92,113,90,100,102,113,90,103,97,103,106,122,87,96,96,90,94,114,91,94,106,94,92,91,97,98,97,99,86,102,100,102,102,109,109,96,113,99,91,92,88,116,115,89,99,101,106,99,108,103,103,106,98,101,108,100,106,101,103,109,102,91,98,99,114,87,94,99,127,113,100,104,100,97,102,104,105,102,100,88,102,109,107,106,104,105,97,95,93,107,105,101,88,98,98,98,96,100,102,97,101,102,98,99,100,104,104,99,98,95,88,87,104,89,102,89,101,100,88,92,102,87,102,97,83,98,98,112,106,97,116,96,103,93,105,104,101,105,98,96,100,100,91,92,90,86,104,98,104,107,102,92,97,87,86,96,96,101,94,96,102,106,96,109,102,93,98,95,93,100,113,90,103,103,92,95,105,92,104,93,103,98,90,100,101,91,98,111,95,97,113,101,100,101,103,120,105,94,95,102,99,102,100,96,95,108,110,97,99,106,108,97,95,118,99,104,102,97,100,101,87,100,98,101,90,102,102,99,106,89,90,108,100,115,104,97,94,107,91,73,89,103,105,94,90,102,97,97,105,105,86,98,110,106,98,89,100,75,95,105,87,101,95,95,99,100,99,96,108,98,103,103,96,90,109,94,97,102,95,103,114,90,92,103,93,101,93,95,99,87,108,104,99,94,117,103,103,106,99,102,104,97,87,99,100,116,97,113,106,112,114,93,98,92,110,99,105,99,87,109,108,97,102,98,115,97,94,113,92,102,101,104,105,100,102,107,117,97,100,107,97,85,108,107,90,100,87,102,99,92,101,102,91,99,99,78,90,103,109,103,96,92,95,99,113,107,92,103,99,93,99,98,100,98,94,88,99,96,98,106,117,99,102,96,87,87,83,103,102,97,104,103,91,98,78,106,94,105,93,110,95,88,95,100,99,104,101,114,84,102,100,104,87,105,98,110,112,97,70,102,96,104,80,103,100,93,94,104,98,91,93,84,94,91,94,100,106,93,80,91,92,102,102,102,98,106,102,96,112,104,98,95,99,95,99,85,83,98,96,100,106,104,87,102,112,97,116,88,99,98,92,97,102,100,83,94,106,99,100,109,101,98,93,96,93,99,103,96,93,97,106,95,93,96,102,97,100,107,94,98,91,105,102,92,90,106,96,95,91,105,99,104,94,95,100,100,108,95,116,104,106,92,95,96,102,92,105,93,94,96,111,99,105,106,96,74,98,92,91,100,102,95,113,95,100,91,90,107,98,94,83,98,103,96,101,91,102,86,104,106,91,106,91,95,103,103,102,104,94,92,109,90,95,81,94,101,97,108,98,95,100,103,88,111,99,105,96,107,110,94,97,96,87,83,108,91,95,101,97,101,98,94,90,100,96,93,82,100,91,96,108,89,91,92,80,101,102,88,104,107,91,101,87,110,103,103,100,98,94,100,95,115,104,100,68,103,94,100,72,98,105,95,107,98,99,95,106,90,90,90,98,94,107,109,96,90,105,88,94,101,96,114,99,94,104,102,98,100,96,105,107,100,115,119,91,92,101,93,100,97,107,103,96,103,98,91,100,111,96,99,91,99,119,107,93,75,101,100,98,90,94,91,92,92,101,94,94,99,101,83,101,103,93,95,88,101,103,94,97,105,105,84,94,101,106,95,98,95,87,86,92,92,92,106,80,92,98,110,112,86,100,102,102,97,97,113,88,59,96,99,98,97,95,111,105,103,114,87,95,85,99,96,96,84,101,92,85,101,108,99,88,96,102,91,99,93,103,87,108,102,76,101,91,88,93,100,98,106,91,103,88,113,104,96,112,104,95,108,90,96,97,95,95,104,93,104,99,96,108,100,113,100,112,95,100,94,120,97,96,95,92,115,102,105,106,92,111,80,91,93,91,76,105,98,103,96,102,104,87,95,109,90,103,106,101,94,105,97,108,99,101,105,102,100,96,96,99,94,108,107,97,68,95,95,94,98,83,105,96,87,102,105,98,94,94,100,91,83,100,98,102,107,99,93,92,100,104,102,83,100,101,101,104,105,104,94,96,97,102,96,100,104,91,99,100,100,108,91,106,98,97,106,96,95,101,95,100,102,94,111,92,106,110,88,102,108,92,110,107,84,98,103,102,96,91,86,105,95,116,104,97,97,96,87,95,95,100,91,109,87,104,114,107,70,91,98,103,106,108,110,106,100,96,96,120,102,100,95,119,106,98,95,103,104,112,99,98,94,105,94,97,97,105,96,95,117,105,107,100,88,91,94,95,92,99,103,113,105,99,92,97,93,103,88,102,102,106,94,96,98,105,93,99,100,95,80,99,94,113,95,104,101,103,103,93,105,88,100,87,113,99,113,96,103,113,101,99,101,94,100,96,97,110,98,101,102,95,101,92,96,98,105,94,102,97,105,99,106,104,90,102,111,107,87,107,101,100,98,101,93,109,105,89,91,94,92,94,100,103,96,86,99,100,94,100,101,90,110,99,104,93,104,91,102,94,100,99,91,86,72,100,98,96,94,99,88,110,101,96,100,93,106,103,95,89,104,99,91,113,100,92,98,105,99,106,102,110,84,98,88,87,106,96,102,102,89,94,100,111,100,95,96,86,105,101,85,102,94,104,96,86,109,90,100,107,99,110,102,103,102,112,109,127,118,100,101,98,95,90,109,91,105,93,104,93,101,102,98,109,108,94,98,98,98,102,94,102,93,89,87,97,77,106,91,100,109,96,103,102,98,93,101,105,64,92,106,96,100,102,116,89,110,116,100,106,93,106,100,96,99,98,100,102,88,93,104,96,107,103,105,93,91,96,99,87,92,100,92,103,91,92,95,102,88,115,91,116,94,107,106,96,109,101,90,113,98,101,102,97,90,88,89,102,106,95,109,107,92,104,102,95,92,87,102,88,96,102,89,98,104,101,109,98,106,101,96,92,98,97,102,92,94,96,83,96,80,116,106,94,109,91,101,95,70,98,97,102,94,88,109,91,98,100,99,100,89,100,95,109,91,69,93,88,95,104,104,100,93,97,95,102,106,89,93,103,104,96,95,117,87,95,97,102,101,98,88,103,97,98,93,102,91,96,91,87,97,94,95,96,102,104,98,93,99,95,94,99,91,99,87,100,102,87,100,100,101,109,102,96,122,94,102,109,102,100,103,89,97,111,94,120,101,98,90,93,99,91,103,98,90,81,111,105,69,125,105,93,110,102,100,88,93,88,91,98,104,85,110,89, +712.14246,96,93,86,106,96,92,94,87,86,98,105,97,99,101,99,103,99,104,116,100,96,97,80,109,110,117,102,100,92,113,102,97,101,87,104,81,96,85,104,94,89,107,92,94,95,106,89,104,91,108,101,80,103,101,97,107,93,94,116,95,101,104,90,74,106,99,109,94,113,98,101,112,93,103,104,81,97,100,108,104,90,99,94,105,105,99,96,96,113,95,112,100,100,89,96,106,103,99,99,111,95,107,107,97,75,99,102,101,101,78,103,86,102,92,109,102,90,93,99,101,98,105,94,102,110,108,89,107,123,100,102,87,95,102,99,84,108,99,94,102,99,92,112,106,102,98,101,100,110,96,99,96,99,92,96,101,102,86,106,97,103,94,105,105,95,100,101,92,113,91,110,102,92,84,91,94,98,96,103,96,108,100,104,113,105,97,87,94,94,105,91,95,101,99,92,99,110,100,102,98,101,95,98,109,99,95,101,100,115,106,96,96,92,97,92,98,100,95,92,100,97,102,84,94,84,99,104,95,94,92,93,102,107,105,109,108,103,103,86,102,102,97,97,100,89,91,102,103,95,99,92,102,111,98,93,99,92,100,90,129,100,96,91,100,84,95,105,100,99,93,99,96,108,102,90,101,100,88,85,91,102,97,107,97,106,100,97,87,79,98,91,90,96,105,99,98,97,106,100,100,84,106,105,104,92,96,113,103,104,91,102,104,99,100,105,90,96,100,105,92,107,90,100,98,86,102,98,101,104,98,107,90,104,93,99,94,92,102,101,97,91,93,99,72,108,103,94,105,113,88,104,92,87,89,103,105,98,116,93,99,99,92,95,91,95,100,98,103,101,96,103,111,102,114,90,116,101,106,92,96,97,102,107,104,92,81,98,91,105,104,98,82,74,84,100,103,95,101,93,96,107,88,98,109,98,93,94,113,96,113,87,89,105,93,102,118,100,105,100,91,94,101,102,96,92,92,92,105,88,99,89,109,102,91,113,84,105,103,83,96,81,89,102,101,104,101,96,105,110,105,91,105,106,91,104,102,91,86,100,107,94,99,95,95,88,107,100,103,104,112,97,112,88,90,103,95,91,105,95,92,100,65,102,96,101,92,95,89,104,95,115,100,92,102,112,97,95,93,104,100,90,67,102,99,114,104,98,100,104,106,109,88,104,95,99,96,96,108,101,90,99,99,107,91,87,106,112,87,102,95,91,89,107,96,108,114,98,110,107,93,105,100,91,85,105,101,91,99,98,105,90,95,91,105,95,88,101,100,101,107,63,98,101,89,96,99,96,108,106,107,105,84,99,112,101,95,90,105,100,108,91,113,93,100,98,93,103,109,96,91,102,96,112,103,99,106,95,89,104,100,105,92,91,92,105,101,96,103,97,96,99,92,74,98,97,93,99,102,113,92,104,91,99,100,105,96,94,105,96,118,105,95,104,107,105,93,101,96,91,95,95,97,99,101,96,90,99,96,97,94,94,100,136,111,99,92,105,103,98,100,101,94,95,102,92,96,96,94,105,99,113,97,99,104,116,110,104,105,95,110,100,105,100,89,95,92,104,93,103,97,100,92,101,101,100,87,91,106,96,96,82,98,95,93,96,102,96,106,86,95,104,96,90,108,86,109,88,95,104,105,111,83,116,98,97,100,95,104,106,94,103,102,101,102,109,105,98,96,89,103,97,101,93,105,106,79,95,111,102,95,98,90,107,99,107,102,105,105,102,101,90,96,89,97,99,105,102,104,100,94,94,105,99,95,105,96,103,97,97,104,101,98,104,105,100,110,101,99,96,105,101,97,90,101,105,105,93,97,92,92,63,98,82,96,100,99,100,98,101,92,110,91,96,100,107,97,100,102,100,91,95,106,95,108,103,102,103,104,104,100,107,88,107,62,98,99,80,93,100,115,94,100,97,93,97,104,77,101,109,92,95,99,97,112,89,102,97,95,106,97,99,95,95,93,101,102,99,98,108,107,91,104,96,98,98,104,106,82,90,92,105,101,101,78,89,65,88,113,95,96,100,116,109,106,99,96,103,106,95,91,102,105,112,104,108,96,109,104,102,104,78,100,117,72,99,98,91,109,103,104,105,114,97,100,88,94,99,84,97,99,99,109,98,97,86,97,94,94,100,104,98,109,104,104,94,100,79,113,115,101,90,97,98,88,96,95,102,83,103,109,110,98,98,107,104,100,94,88,74,111,94,97,102,112,104,101,98,98,67,96,99,98,95,99,88,105,104,104,96,95,110,100,114,84,88,105,102,98,109,97,88,95,95,99,97,102,98,92,96,99,100,106,112,96,90,103,101,87,95,87,97,103,102,100,100,95,98,105,100,101,99,97,101,93,103,90,100,95,99,97,101,100,83,86,97,104,98,110,93,100,107,119,106,101,94,109,91,110,97,100,96,97,103,126,95,100,87,96,102,101,103,99,86,91,98,102,101,101,108,104,114,102,99,95,100,108,99,91,121,97,96,103,97,87,94,94,88,83,102,96,105,94,100,95,101,121,92,102,104,105,85,103,95,102,100,117,95,94,90,89,105,95,98,77,96,95,110,103,102,99,115,105,101,104,98,111,102,87,104,93,93,90,100,108,95,99,97,92,109,95,95,99,95,100,96,100,99,102,95,107,80,89,105,104,93,104,105,109,109,100,91,107,106,98,104,85,104,87,102,94,98,103,102,100,99,98,104,95,108,98,109,98,110,106,94,114,92,94,91,96,87,95,103,100,79,98,103,88,109,100,94,109,98,102,107,93,98,104,104,100,99,103,101,96,104,87,103,97,117,95,106,97,95,93,101,95,99,94,84,106,98,96,97,98,92,105,111,90,106,99,91,106,103,99,91,103,92,92,92,103,95,99,98,100,103,106,104,108,104,114,101,110,99,113,94,96,98,114,95,117,98,105,102,76,93,98,96,92,96,91,101,105,94,92,100,86,99,90,93,108,128,110,103,105,94,104,110,105,94,100,110,109,94,100,99,107,98,99,94,98,106,116,112,101,97,93,99,110,98,113,116,93,110,73,107,103,107,92,97,109,104,100,104,100,105,100,101,97,99,102,111,92,83,106,95,93,100,91,99,100,101,89,107,91,94,98,98,101,101,91,96,108,94,101,109,100,92,90,103,106,93,95,109,97,96,94,98,98,100,100,103,81,91,97,105,83,102,94,92,113,94,99,95,83,93,112,105,69,102,99,100,96,98,97,99,100,91,93,106,91,107,99,121,113,96,95,103,87,119,108,96,91,104,102,102,96,93,98,94,85,103,94,105,91,91,105,87,103,112,85,95,84,102,105,106,94,94,90,107,96,98,92,100,99,109,102,87,90,94,103,94,107,105,89,87,102,105,110,95,100,94,105,100,103,102,106,73,99,85,101,106,93,95,104,94,99,103,108,91,103,105,104,91,98,96,108,94,100,102,107,102,91,96,101,102,82,81,106,92,98,94,98,91,97,122,108,103,100,89,110,106,112,86,109,79,97,74,98,95,97,101,95,101,100,105,101,94,102,99,109,100,102,92,100,94,96,94,105,98,101,95,109,100,96,92,114,108,111,91,106,102,91,103,98,101,101,108,92,100,96,104,86,97,92,115,107,104,106,104,90,90,95,98,97,109,96,101,101,111,115,91,99,103,102,93,89,116,108,102,101,90,103,104,98,96,93,85,116,95,102,100,101,99,98,91,100,83,100,103,92,105,97,83,77,97,98,95,97,96,91,94,108,91,103,106,91,104,94,103,95,96,96,106,97,94,105,94,103,89,96,97,99,99,100,116,99,108,99,105,102,87,104,105,112,105,106,103,92,98,100,101,108,99,98,98,111,93,93,95,91,113,102,103,102,100,103,100,111,87,97,101,82,103,88,104,100,107,96,106,107,92,100,96,104,105,92,95,98,101,101,109,115,99,101,93,101,106,92,97,96,100,94,108,97,98,101,100,105,117,108,98,111,109,104,92,94,101,93,96,98,96,98,91,87,102,106,103,101,91,101,99,95,93,98,105,99,113,104,91,100,112,97,90,87,101,99,106,101,91,77,101,115,96,95,102,105,93,99,102,88,87,99,96,101,91,100,102,95,102,96,107,110,92,97,94,108,83,101,97,104,98,113,101,94,102,94,109,102,107,104,103,102,94,96,93,111,102,100,106,99,98,95,93,97,103,105,108,94,87,113,100,104,78,99,102,123,104,96,91,95,108,105,106,96,98,101,106,91,104,110,104,95,99,98,99,97,93,101,83,101,94,98,107,89,93,92,95,108,93,101,100,114,109,94,106,59,91,94,87,96,92,103,90,84,92,96,94,101,99,107,91,102,106,72,103,100,99,97,100,100,109,103,99,105,96,94,104,98,106,108,100,105,96,107,99,103,104,86,96,97,92,99,100,93,90,93,89,90,100,96,90,85,99,97,102,95,101,108,92,106,112,99,102,89,90,102,89,101,108,113,102,100,94,136,109,106,106,100,103,102,103,95,107,105,96,98,92,59,96,100,102,99,98,101,103,94,95,96,95,97,98,113,97,98,101,96,90,106,99,99,96,103,87,90,99,109,102,96,83,99,109,111,99,104,124,95,106,99,81,106,94,102,110,101,112,80,109,95,95,104,98,104,97,101,80,110,105,94,96,106,107,107,109,92,104,106,112,110,100,101,109,91,93,113,106,84,104,99,104,99,89,99,106,106,112,97,132,87,86,100,103,107,97,99,96,88,87,93,105,98,94,94,95,112,91,103,108,87,101,106,97,73,108,127,97,92,101,110,99,97,90,102,100,97,109,109,102,101,102,106,111,91,100,96,99,103,94,100,95,92,96,96,86,121,107,105,96,80,102,93,103,100,101,91,107,105,97,85,123,105,106,88,112,101,102,106,97,93,93,107,117,114,119,99,109,103,100,106,102,99, +712.28381,114,95,88,100,109,103,112,92,101,90,91,109,100,103,99,105,93,126,115,113,106,96,94,103,112,98,96,116,94,107,101,108,98,101,100,93,104,97,97,82,106,101,93,103,97,101,92,103,100,112,85,99,108,101,101,93,90,99,103,104,119,124,90,63,95,96,102,106,94,103,133,115,108,105,90,101,96,95,120,96,95,96,99,102,95,102,112,105,109,108,101,96,99,95,96,94,106,102,96,106,94,109,94,88,101,106,100,98,100,94,103,90,97,95,110,95,97,101,100,89,94,94,97,112,104,104,116,106,108,102,101,109,94,93,104,104,102,104,94,88,96,117,101,116,79,92,92,105,108,100,86,98,94,89,101,91,99,100,103,91,96,96,94,78,106,119,97,92,95,100,105,99,109,98,100,95,95,94,116,98,105,113,110,105,103,100,97,101,103,113,98,101,96,93,89,96,99,94,94,92,74,95,100,98,97,97,95,101,103,108,91,107,95,105,98,92,102,86,99,103,107,98,102,104,93,89,94,113,98,97,97,105,103,99,93,106,101,99,93,87,105,100,101,95,77,103,103,106,96,104,91,105,97,90,104,103,96,102,91,96,84,96,95,105,97,97,102,109,92,90,102,102,99,101,97,87,105,110,105,96,113,96,96,96,95,104,99,91,103,102,101,90,101,107,126,107,103,103,102,106,96,103,97,106,82,126,96,92,91,102,95,81,91,96,101,95,106,104,108,101,100,101,113,94,95,97,97,106,100,100,101,97,117,103,102,98,101,85,99,99,107,101,111,96,98,102,109,96,98,96,109,99,94,105,95,104,112,98,83,98,93,96,90,95,96,94,95,119,109,103,113,102,99,96,94,87,105,106,100,105,104,107,88,100,99,83,98,90,90,90,100,95,97,102,101,101,97,95,95,103,96,105,90,101,92,93,98,87,103,99,91,100,97,92,104,101,94,104,102,92,109,94,111,103,106,86,114,99,94,112,100,102,101,95,95,97,100,99,98,95,100,109,97,96,95,108,94,92,117,115,100,82,127,107,108,98,109,98,101,105,103,98,97,102,85,104,109,108,92,94,103,106,108,94,99,86,94,100,105,72,95,96,103,90,113,96,99,63,90,98,90,108,116,97,87,99,96,102,98,99,103,93,97,106,102,101,96,102,102,106,94,112,100,98,99,95,92,99,98,102,108,100,113,91,104,103,106,101,90,99,94,96,98,100,98,113,109,92,100,98,107,104,99,92,110,106,106,94,99,105,96,97,95,104,86,101,97,96,99,93,95,97,118,97,101,93,105,104,103,102,96,111,107,97,105,102,93,108,81,99,104,111,105,86,97,103,110,101,111,99,105,95,83,93,109,104,105,102,99,101,95,102,111,99,103,92,103,102,94,98,108,100,86,110,100,101,101,104,110,97,102,94,95,90,108,105,101,118,97,93,111,99,95,103,82,91,97,95,102,90,104,96,92,75,105,66,93,105,98,103,93,101,101,105,115,114,100,108,98,106,109,103,102,109,101,107,94,91,106,99,107,103,90,102,86,82,101,108,95,99,98,108,103,98,94,91,97,96,101,96,101,96,97,108,102,106,101,99,107,91,93,101,99,98,106,104,98,106,94,97,101,98,96,87,89,94,102,100,96,108,104,99,90,97,88,101,113,105,106,108,110,97,99,88,103,111,95,96,108,121,113,109,95,98,96,99,108,101,108,109,110,96,94,88,92,94,124,99,104,97,100,100,95,97,94,90,82,100,104,98,98,97,99,99,103,114,111,108,105,91,105,96,106,93,92,96,90,105,108,105,99,94,99,110,98,106,97,96,108,94,95,92,100,116,113,114,104,98,94,103,109,89,99,101,105,106,106,102,105,102,102,104,109,103,103,113,81,104,104,126,104,101,104,92,111,99,99,107,104,112,102,90,89,101,90,95,87,90,102,99,94,106,95,101,95,126,93,94,100,109,87,101,109,107,98,91,90,92,119,107,105,97,95,113,95,108,102,98,105,108,99,104,100,108,95,110,105,95,113,97,88,103,94,117,90,101,105,85,103,91,100,93,107,99,101,100,95,108,101,99,92,101,112,88,83,110,104,100,103,105,95,91,91,109,100,103,96,101,103,95,91,91,105,108,88,99,100,99,108,98,95,93,102,108,100,105,108,109,97,107,103,98,108,105,94,98,99,104,94,112,100,106,98,99,101,97,109,104,97,94,90,102,103,94,98,95,104,104,108,106,103,109,98,103,117,95,98,94,99,106,105,95,114,103,97,102,99,95,94,104,104,108,103,72,108,81,118,99,102,108,96,94,103,104,99,95,102,103,104,98,105,96,100,112,100,103,106,107,87,90,75,93,106,90,110,92,97,99,102,111,105,103,108,102,97,102,123,106,87,100,101,104,118,102,96,92,113,95,105,100,109,102,114,112,99,100,95,110,76,92,97,116,99,104,119,117,105,100,95,104,98,96,92,99,95,92,108,92,106,90,87,91,102,99,108,92,97,104,119,99,94,78,88,90,114,105,102,102,101,100,100,98,102,99,113,106,91,93,93,110,106,91,102,98,91,100,97,119,103,98,108,102,101,100,101,103,99,100,96,91,100,102,100,100,90,103,103,98,106,96,97,94,105,107,101,102,103,107,102,104,104,99,91,83,94,94,116,103,95,107,98,94,94,101,104,105,95,92,115,107,93,102,88,97,108,105,107,102,92,104,97,103,96,116,98,99,100,96,96,95,107,108,108,97,101,105,105,117,92,100,92,97,103,104,105,104,118,116,87,99,102,96,100,103,101,103,85,97,105,98,94,105,94,114,107,101,95,88,103,95,104,91,98,97,112,92,104,105,101,105,114,102,98,101,102,101,91,89,96,111,99,94,113,116,112,110,94,100,109,100,102,106,101,104,110,104,92,108,108,96,89,107,106,110,103,105,88,99,92,100,98,102,96,86,103,106,91,87,98,101,102,102,101,103,105,101,107,95,102,87,105,64,96,112,98,110,96,100,100,99,99,101,84,109,120,104,109,103,88,105,104,94,97,107,103,94,107,106,102,107,98,105,111,92,98,92,107,82,107,88,81,102,105,112,95,102,96,87,97,95,93,110,97,95,100,94,107,98,100,115,102,91,92,105,105,113,102,94,96,98,101,93,95,96,102,103,99,101,98,106,88,99,107,94,94,102,96,96,100,103,104,102,106,91,101,105,106,98,98,96,75,100,101,100,99,109,105,109,100,101,97,94,108,93,94,89,96,94,103,98,97,97,113,95,104,85,87,103,88,109,105,111,100,105,98,113,95,109,89,96,99,96,91,102,103,102,106,106,98,102,104,100,100,129,107,99,95,100,100,98,103,104,97,96,88,91,99,96,114,104,92,100,101,100,106,109,106,96,107,107,100,116,99,103,91,111,107,87,107,91,99,109,115,108,91,97,102,96,98,96,102,94,108,99,106,104,98,113,89,98,100,103,97,88,92,102,99,82,102,105,110,97,100,102,95,94,104,99,121,98,103,102,97,105,96,106,105,93,111,82,99,95,95,105,112,102,101,121,96,100,96,105,102,95,108,98,97,101,112,98,97,98,97,104,98,104,97,109,105,104,92,98,98,98,99,105,99,96,105,99,101,97,96,88,101,98,100,98,93,104,94,101,114,99,85,101,91,104,94,103,106,100,104,105,107,99,87,97,105,102,94,112,96,100,100,75,100,94,104,92,72,109,104,112,115,99,95,98,111,85,98,98,109,117,100,100,101,104,104,104,96,87,86,104,104,102,97,96,107,95,97,119,100,94,95,102,94,99,106,108,96,95,92,113,109,101,108,107,95,100,102,97,98,104,98,109,113,88,104,102,97,104,113,98,110,104,96,91,102,104,117,99,95,109,107,102,97,97,100,95,93,113,96,95,106,111,98,97,91,112,95,91,102,103,96,97,111,92,103,86,102,106,103,94,97,95,99,100,109,105,101,104,96,97,102,114,106,99,105,96,103,97,83,105,93,102,97,104,96,91,98,94,92,96,92,87,87,103,121,100,101,103,103,90,94,92,116,95,99,104,92,99,100,96,105,96,96,99,99,81,113,91,93,94,94,100,102,115,98,106,100,108,104,113,104,93,101,105,87,92,100,117,99,95,102,99,103,94,91,98,106,95,98,94,98,102,109,88,100,101,99,106,106,106,88,96,106,101,91,95,108,96,106,92,106,100,84,78,101,102,114,98,103,109,96,102,109,97,93,106,102,96,98,92,96,101,109,108,107,99,105,100,105,102,92,101,108,102,107,105,113,102,105,100,100,93,100,89,102,106,95,98,105,103,96,106,95,84,97,115,100,99,108,97,101,103,74,104,67,102,93,93,95,102,100,96,99,111,100,101,101,100,102,119,100,103,109,98,106,106,91,97,98,95,99,99,83,111,93,99,92,93,100,103,97,102,90,109,105,124,121,98,105,92,102,97,98,94,102,107,106,105,114,101,107,84,139,109,102,105,95,94,105,96,100,100,101,112,98,109,101,100,98,105,111,116,106,102,88,87,85,89,108,101,106,96,95,85,103,105,102,101,92,104,103,101,90,108,109,97,100,98,96,100,99,103,94,113,99,94,106,101,90,98,99,108,95,93,96,96,104,100,98,113,96,109,113,100,99,100,108,93,108,94,94,102,114,102,112,112,87,104,99,116,89,105,93,107,107,96,97,85,97,94,105,103,98,99,98,99,106,100,111,99,97,100,102,85,98,99,103,89,95,106,102,89,126,106,100,101,94,89,107,102,104,101,103,122,115,107,98,99,109,105,109,98,103,102,104,116,86,94,108,107,103,104,100,106,99,78,117,85,103,101,113,99,93,95,105,106,95,96,127,101,101,113,101,91,105,93,94,94,113,100,110,100,106,100,111,97,116,92,100,101,110,102,113,103,85,86, +712.42517,105,105,86,95,83,102,105,105,99,94,106,96,107,100,114,103,95,84,97,90,95,90,100,106,94,105,97,94,95,105,95,109,99,112,95,99,101,101,99,95,90,97,93,110,100,96,101,99,110,103,95,100,94,103,108,97,92,104,99,86,95,97,109,103,109,107,97,93,111,95,110,107,93,100,98,109,104,104,117,101,92,95,101,113,93,91,107,100,95,96,97,103,106,103,94,97,83,102,97,110,100,101,101,101,111,101,90,100,95,96,106,107,93,79,102,120,97,94,95,94,112,104,103,100,105,107,106,88,108,100,90,108,97,112,109,91,106,108,100,98,91,100,86,83,91,94,101,99,110,124,94,99,106,88,90,101,95,102,101,83,99,100,104,95,107,113,99,97,109,100,97,89,95,75,104,105,99,96,90,104,90,100,99,101,98,103,102,97,101,106,103,91,97,96,107,98,101,100,100,104,96,106,96,95,104,99,88,107,103,120,95,100,104,95,104,83,110,104,93,102,101,97,91,99,100,99,95,89,104,109,97,99,92,103,105,110,87,100,99,99,95,99,124,103,91,101,109,102,105,102,90,104,92,104,109,113,99,107,96,97,92,90,90,92,104,95,109,94,90,92,98,87,108,98,95,92,107,97,91,103,113,97,107,93,107,94,87,118,107,100,102,98,101,103,95,110,100,92,100,115,105,100,98,105,102,107,106,104,109,110,121,89,92,107,95,91,94,75,106,103,118,100,95,101,95,109,97,84,108,101,94,104,95,99,99,95,101,102,104,101,101,98,97,92,96,104,88,101,99,109,102,118,118,95,97,99,109,72,105,106,103,104,108,96,100,96,89,111,103,107,97,93,97,98,98,89,99,97,100,94,100,96,91,98,102,99,97,91,116,89,99,107,101,108,100,97,87,95,106,108,100,96,95,94,101,90,108,106,108,117,102,96,92,104,109,109,104,98,96,90,97,101,96,101,85,101,107,97,105,110,100,107,91,102,96,95,96,103,106,101,96,96,103,105,111,102,104,110,95,106,92,81,104,106,103,122,102,94,101,97,110,101,102,112,97,108,104,104,96,91,85,102,103,123,104,97,105,97,108,97,104,106,103,102,97,101,101,99,97,102,112,92,95,96,96,82,94,101,105,114,114,92,100,114,100,105,91,86,99,97,95,88,101,102,99,106,93,107,108,100,99,104,103,91,104,94,98,103,110,100,89,109,87,103,108,83,99,96,95,101,109,101,78,92,103,104,95,100,93,92,105,106,107,122,103,107,101,101,101,101,100,105,97,105,94,109,96,117,96,79,88,95,90,93,103,92,128,101,99,115,102,104,92,93,88,110,104,103,99,91,100,99,89,117,115,103,89,100,104,100,113,101,104,102,97,95,96,102,101,97,100,111,88,102,109,104,100,94,111,107,91,98,107,99,106,102,88,102,95,109,110,102,98,101,96,102,96,96,88,100,101,107,96,96,102,99,98,120,94,99,96,110,108,101,99,115,100,100,94,102,105,103,92,101,87,92,79,100,117,97,111,113,100,100,117,99,101,92,105,98,104,114,116,94,100,102,94,106,97,64,107,113,93,92,100,94,98,105,105,100,96,107,98,99,105,103,92,104,94,90,112,99,105,94,96,98,98,106,95,95,98,112,95,98,99,94,91,100,95,106,103,104,102,98,103,102,100,94,111,93,110,99,78,112,109,107,105,99,121,115,110,94,99,102,100,107,113,102,103,104,100,102,87,101,79,110,88,98,115,82,110,102,101,103,92,109,87,97,104,100,99,102,102,101,101,101,117,105,88,95,102,104,103,99,100,108,100,110,101,101,91,99,93,93,102,96,95,114,109,112,100,102,110,98,93,94,97,100,93,100,97,102,104,113,109,91,97,98,91,99,104,97,98,91,87,102,105,95,113,94,92,90,108,97,90,91,89,104,95,103,86,104,104,99,97,101,96,98,95,104,105,94,99,99,102,92,91,99,95,109,94,100,98,96,91,105,101,102,75,95,103,98,98,93,88,96,95,115,104,92,107,114,100,103,99,92,93,109,98,112,94,104,104,92,104,97,97,94,94,87,95,102,104,108,109,94,101,105,117,105,97,96,94,103,97,92,101,104,113,106,100,119,67,107,93,100,84,93,92,109,102,104,97,107,95,107,94,95,100,103,91,87,95,99,104,102,109,95,108,97,106,100,100,100,116,98,92,98,98,91,87,73,100,85,103,93,114,94,83,100,105,115,105,100,109,99,94,103,104,96,112,99,100,109,92,101,91,103,97,102,109,104,104,105,105,91,108,105,68,102,99,108,81,99,102,100,106,97,91,100,101,98,114,98,109,90,91,100,95,98,102,94,100,95,99,111,87,109,81,96,100,100,85,107,105,97,98,94,108,110,97,105,103,89,101,105,84,100,91,101,90,104,96,103,90,100,79,100,101,109,100,108,98,105,94,96,104,107,97,85,94,111,91,104,97,102,101,95,106,100,96,96,100,93,93,87,108,103,106,99,101,93,99,77,108,106,96,117,95,93,102,105,104,113,107,96,91,100,86,103,96,87,99,98,93,108,91,101,105,95,109,101,108,98,97,101,101,95,100,85,98,76,102,94,98,96,103,100,113,88,102,94,98,94,90,99,106,100,124,97,107,81,116,90,112,97,102,109,87,96,102,87,112,89,101,109,100,110,105,101,106,109,91,102,101,116,94,91,113,101,107,95,129,96,95,102,111,87,95,109,90,113,95,108,96,106,97,108,95,98,97,117,88,98,98,103,100,106,105,98,98,101,102,104,90,102,105,101,93,99,100,83,94,100,95,95,100,95,102,105,113,103,106,91,109,108,103,96,87,98,104,99,102,91,88,98,87,93,95,111,96,98,100,98,103,112,102,104,106,93,109,97,102,108,94,90,94,109,90,92,99,99,99,109,98,98,94,88,86,101,91,96,102,90,98,107,97,91,92,90,106,113,89,96,96,110,95,93,94,108,100,91,96,105,96,98,106,100,109,92,96,98,98,104,106,103,100,108,105,93,99,76,114,94,114,99,108,95,94,99,102,108,95,101,98,89,101,103,101,101,100,102,112,91,95,100,101,109,83,102,100,105,95,92,104,84,92,100,98,99,102,105,92,112,103,95,92,87,102,91,112,97,102,110,97,106,86,97,89,95,100,99,104,100,79,102,95,89,111,108,104,97,107,107,87,104,94,102,96,101,100,99,91,95,97,96,94,97,87,97,101,104,108,95,99,100,93,100,105,104,97,64,93,95,100,98,106,103,101,100,101,106,99,98,105,101,108,113,108,98,109,95,95,101,87,102,98,104,104,99,135,100,106,102,94,113,93,97,100,102,98,100,95,104,94,116,93,97,100,96,110,95,95,108,95,116,98,88,96,106,92,106,105,91,94,98,104,95,105,96,103,72,105,92,92,96,104,95,97,97,96,93,93,94,116,95,94,107,96,95,100,99,97,93,95,98,109,89,92,94,92,116,91,87,99,93,97,103,96,96,109,102,102,113,111,98,111,103,102,97,111,96,105,108,101,111,103,103,104,74,95,95,105,106,105,94,104,108,100,88,100,91,87,108,107,99,95,101,89,82,109,87,104,101,91,103,95,91,97,106,83,107,98,95,104,86,100,99,99,98,103,102,100,98,91,95,101,92,106,115,113,99,104,98,91,99,83,105,89,103,103,111,100,95,90,96,102,106,84,98,107,95,96,108,107,96,100,111,97,96,102,97,98,101,104,99,97,94,109,87,98,95,113,95,101,98,83,99,111,93,100,91,101,103,94,96,100,101,96,110,92,96,88,100,112,98,97,105,104,97,98,95,100,91,102,96,86,101,99,96,98,94,98,101,87,96,101,92,97,101,92,98,91,92,114,101,99,94,95,95,102,100,86,100,105,91,103,101,99,92,97,95,92,95,85,100,91,93,92,109,102,96,107,90,96,103,92,92,75,99,84,95,100,99,92,109,99,109,98,99,95,98,95,84,120,102,93,89,99,104,96,100,109,73,105,105,97,112,102,95,97,101,88,91,94,95,104,68,98,76,116,99,95,79,103,97,99,101,106,100,90,97,85,87,91,91,95,101,92,107,72,108,105,89,109,105,96,94,91,100,97,101,94,100,90,90,107,99,94,103,87,88,102,98,106,98,96,99,99,93,90,102,93,106,99,101,98,93,98,93,103,95,98,103,97,92,90,101,110,104,94,96,79,91,95,94,105,102,92,93,110,90,97,95,95,106,97,97,99,98,77,104,105,109,93,101,123,92,101,96,104,89,95,98,94,104,77,85,98,95,105,98,104,95,88,91,107,88,92,93,99,96,115,95,101,101,116,97,90,110,95,99,104,102,97,98,94,100,106,105,104,106,101,92,96,99,99,93,107,117,92,84,99,109,94,109,102,97,99,98,94,110,96,92,83,110,87,83,101,87,101,88,77,80,100,92,95,96,102,87,98,102,93,93,104,100,101,96,102,100,86,98,97,93,121,101,105,99,93,99,94,87,111,117,84,102,87,106,87,96,108,91,95,95,98,97,101,111,108,91,102,109,99,98,102,99,95,107,108,106,88,95,96,103,99,105,104,76,82,98,102,91,101,96,91,96,111,96,97,106,95,102,94,107,111,107,94,127,101,105,98,101,117,96,91,94,99,105,99,110,91,104,107,97,109,94,108,94,84,90,89,92,95,95,105,97,102,92,90,103,100,76,103,93,93,95,106,97,92,95,95,102,100,100,90,99,100,88,101,103,107,83,107,115,96,120,103,105,97,103,104,91,109,76,102,85,95,100,108,101,94,93,105,96,97,94,84,94,88,95,112,91,87,106,92,92,115,92,100,102,96,99,106,104,91,80,93,93,102,87,98,91,90,100,74,85,119,98,105,66,95,99,96,87,89,80,107,94,93,102, +712.56653,113,117,87,95,103,84,94,110,108,102,116,96,87,91,88,96,103,90,100,104,103,97,114,99,91,105,106,97,107,101,96,94,91,96,110,95,106,100,116,107,93,112,80,99,112,100,98,97,83,114,99,108,103,96,109,88,98,116,101,95,97,94,93,111,112,106,93,97,97,104,101,120,109,105,106,100,99,91,102,102,100,102,105,109,73,85,106,109,111,95,100,110,99,92,103,101,93,98,98,94,102,109,95,98,96,103,93,98,90,94,100,107,93,96,102,84,107,97,106,108,95,82,99,117,99,95,95,101,109,90,96,97,81,115,110,102,83,111,102,90,102,107,104,106,85,91,106,107,102,93,102,97,102,84,97,93,93,103,96,99,86,106,110,107,93,95,87,98,123,95,92,96,99,91,99,96,112,110,105,98,76,81,85,95,100,94,104,79,105,101,95,111,98,96,101,117,104,94,98,99,95,107,95,101,84,103,103,83,109,99,104,107,104,107,102,134,94,94,92,96,100,101,105,110,96,104,103,108,90,107,95,112,103,93,99,98,99,112,101,97,99,98,111,105,91,84,92,107,86,99,103,112,97,102,90,92,102,109,87,106,97,98,105,101,93,100,90,88,106,102,102,97,99,92,108,95,108,85,96,94,95,94,106,98,100,89,92,100,105,98,96,102,104,92,103,100,100,92,102,105,106,103,96,97,99,93,97,99,107,98,89,92,109,90,112,101,94,90,95,95,99,97,104,105,88,75,104,106,105,90,100,92,88,104,103,99,103,101,96,104,100,96,120,83,95,106,100,102,101,99,100,92,94,99,105,95,102,106,96,102,95,91,102,91,101,94,95,99,93,100,96,99,100,95,94,96,91,91,97,101,95,96,106,101,99,97,90,95,102,101,98,100,100,94,104,103,88,96,99,96,97,97,91,96,94,100,90,107,107,100,96,101,97,99,106,95,98,101,107,101,111,95,95,88,110,107,95,96,101,99,105,105,103,107,103,91,93,97,98,96,109,112,84,110,101,103,98,87,91,99,91,97,92,104,90,95,92,83,107,123,104,99,108,119,103,91,107,95,95,101,89,105,102,105,104,95,97,98,97,105,96,99,104,102,104,90,73,105,103,98,111,107,106,97,97,100,97,97,95,103,99,108,105,103,98,104,90,110,97,89,107,109,106,98,101,100,98,92,106,94,90,114,104,96,109,103,102,103,94,100,91,102,99,98,106,100,108,99,98,107,100,98,85,94,101,98,101,102,100,116,106,105,104,107,105,93,116,94,96,108,104,99,97,92,85,99,96,98,92,98,97,104,96,104,99,110,92,94,108,99,101,87,109,91,89,95,94,96,85,100,105,104,100,95,100,110,92,110,104,100,96,109,113,88,97,98,92,98,95,117,97,98,94,75,94,100,105,117,103,91,105,102,100,95,78,100,100,109,108,105,104,104,104,108,95,100,105,91,102,98,98,99,102,96,96,107,105,92,98,104,99,99,96,115,92,103,103,103,90,106,95,96,102,108,88,104,103,99,101,93,101,96,102,98,101,89,95,99,93,100,113,101,92,110,90,104,105,97,99,105,104,102,104,99,99,98,100,93,69,92,97,99,100,105,77,106,102,98,98,100,96,111,110,96,96,97,98,99,91,89,81,99,95,84,106,88,88,105,97,97,105,105,96,95,96,101,104,95,87,104,109,97,91,106,83,96,98,104,95,95,86,109,119,83,97,95,114,104,95,104,101,93,105,107,99,110,87,105,86,91,94,96,101,101,108,117,101,90,93,100,96,103,106,104,102,106,109,96,91,112,107,117,101,99,94,102,97,105,94,103,100,98,97,95,109,106,102,123,107,93,104,101,88,109,99,102,107,94,100,102,111,82,101,101,101,101,109,97,105,97,107,100,95,106,101,95,120,105,94,101,90,102,83,88,94,96,104,98,87,64,94,102,87,100,104,113,93,94,102,93,100,104,100,105,94,85,83,94,112,88,100,97,107,93,104,87,89,102,91,97,109,105,97,109,99,122,103,107,92,81,102,104,117,99,99,96,92,108,95,104,97,73,99,104,96,94,109,103,92,97,94,95,101,109,104,94,114,99,103,95,100,104,92,108,110,115,98,108,101,99,95,105,104,90,98,91,101,88,101,109,91,100,105,102,90,96,91,104,92,108,97,99,83,96,102,98,96,86,95,82,111,113,102,96,107,100,101,103,92,91,95,101,96,106,87,89,91,93,98,94,77,105,107,96,108,108,110,95,103,102,97,101,94,96,96,106,105,112,95,105,101,103,104,98,99,104,110,105,90,103,106,110,100,94,104,103,109,101,103,102,89,101,97,91,106,105,109,95,100,90,95,100,102,99,102,94,100,96,101,95,85,99,107,93,113,101,112,98,103,99,99,99,106,77,102,110,105,100,100,74,96,98,110,98,99,107,121,106,94,87,89,110,104,102,92,83,100,102,92,98,90,106,94,100,100,104,99,93,110,109,96,96,106,92,95,101,104,84,105,88,99,96,89,91,95,96,95,99,84,90,95,106,88,97,98,90,106,88,66,111,113,95,99,98,102,101,91,106,99,87,95,106,92,91,100,92,100,98,91,98,101,98,87,117,94,81,104,94,102,91,107,94,100,97,88,101,101,97,105,98,103,93,103,79,102,105,91,89,83,101,94,120,98,99,107,100,95,101,101,100,95,97,93,104,95,103,113,105,108,106,107,97,90,95,101,108,94,99,90,111,89,87,95,100,101,100,97,96,102,99,106,100,74,99,128,103,108,99,88,98,98,102,99,101,100,97,83,91,100,99,101,104,101,96,105,101,96,98,100,85,105,100,90,81,102,97,107,108,92,115,114,109,101,114,125,112,95,103,98,97,104,108,108,95,87,91,94,103,85,98,93,96,88,113,105,95,136,99,106,106,96,97,113,92,85,101,93,111,106,106,97,94,99,100,96,92,102,95,94,100,102,97,96,100,94,107,105,100,113,98,101,118,98,95,106,109,105,97,94,96,104,104,105,96,89,118,115,89,101,100,102,94,97,101,107,112,109,95,98,101,102,105,109,102,91,94,101,108,108,105,99,99,93,99,95,86,102,96,93,108,103,88,108,92,98,94,105,91,91,102,102,108,97,104,105,100,98,91,101,109,99,95,99,98,109,100,104,100,95,101,100,101,102,109,94,105,93,97,95,109,101,72,86,92,104,119,102,109,95,98,105,94,104,91,105,93,116,112,97,92,104,102,114,111,101,103,113,102,107,95,111,107,92,91,107,95,98,96,97,102,89,101,101,93,95,63,107,97,84,83,104,90,99,101,109,98,117,92,86,99,106,91,106,102,97,103,103,102,79,101,69,95,92,86,94,91,104,97,103,95,94,98,104,97,103,100,98,101,89,90,95,104,88,109,84,100,101,99,96,91,108,81,110,99,103,91,102,97,106,97,106,98,92,73,101,98,97,94,114,97,106,109,108,105,98,83,101,112,94,88,103,95,92,99,111,99,90,96,109,109,97,95,108,105,105,83,101,88,109,112,107,107,92,100,92,101,89,101,98,94,102,112,113,93,84,113,104,97,100,106,95,91,99,110,94,110,101,101,96,98,91,87,105,86,96,97,101,101,104,100,93,100,101,101,107,106,105,99,107,91,93,103,103,103,90,101,88,95,101,96,105,102,103,109,97,88,95,104,88,101,102,99,102,105,95,102,101,94,95,101,104,93,99,96,101,99,92,109,110,87,91,95,108,97,95,98,88,102,91,95,117,87,97,79,98,109,88,94,108,91,100,86,98,97,97,93,98,88,99,95,106,100,93,89,100,93,102,115,104,101,90,104,94,90,106,115,106,89,94,91,99,103,97,101,95,114,105,77,91,121,93,104,99,105,77,120,88,104,91,91,99,90,90,96,99,101,101,85,95,98,91,107,94,105,102,91,90,82,93,105,87,94,92,97,112,107,104,91,100,94,104,96,89,104,98,96,107,72,104,90,115,104,103,105,104,102,101,98,98,99,109,91,83,101,98,96,100,97,98,106,104,97,116,96,101,110,108,108,93,106,90,104,94,106,78,121,113,97,116,91,102,99,92,91,102,102,91,109,105,101,83,107,91,98,90,93,100,90,110,101,94,93,91,84,86,104,80,97,111,103,98,89,94,106,90,102,101,97,102,101,92,95,84,87,109,102,88,99,118,100,107,97,106,109,99,102,97,95,103,95,108,109,99,100,102,103,71,104,95,95,91,101,103,97,94,96,108,107,96,107,97,105,97,98,94,103,107,117,104,107,94,94,116,95,113,100,87,87,98,103,97,94,104,93,106,91,95,112,99,102,103,97,95,104,113,97,100,109,105,95,119,110,95,98,94,83,97,104,87,108,101,83,98,91,101,108,105,102,98,98,106,96,99,89,104,112,92,97,95,89,97,103,97,104,88,99,104,96,101,96,105,102,101,102,95,84,68,97,102,109,94,100,106,97,108,94,91,98,90,100,104,94,82,98,87,102,85,96,107,94,90,90,94,101,116,100,102,107,105,91,104,92,98,89,103,113,97,87,96,100,87,99,93,99,89,97,100,95,100,100,102,97,101,102,97,105,116,90,89,105,94,100,93,98,96,103,99,98,94,102,90,95,105,102,97,109,101,105,101,102,102,103,99,109,87,109,107,105,92,102,110,94,93,99,95,89,103,92,93,97,107,83,96,102,94,107,87,96,86,92,102,110,109,92,92,94,90,99,90,89,93,106,119,102,91,99,104,91,95,81,94,92,101,107,103,96,93,100,105,88,97,85,102,103,107,106,107,103,98,103,93,110,99,108,113,84,91,98,93,89,105,105,103,111,97,107,107,100,93,95,116,105,92,96,89,96,101,92,115,96,112,91,101,103,106,94,98,90,121,88,91,83,95,103,95,83,90,90,96,91, +712.70789,106,91,101,109,97,93,112,102,93,95,104,99,94,92,99,93,91,101,101,93,105,101,101,106,99,87,92,100,105,102,85,97,94,96,98,105,111,96,101,117,92,99,99,95,105,99,110,115,96,90,101,105,96,101,93,98,103,86,104,76,119,87,91,102,97,103,106,101,93,109,97,96,91,104,101,114,99,112,97,101,96,106,104,103,97,127,98,95,98,82,62,95,94,100,90,87,101,75,83,114,94,94,92,103,105,103,100,100,91,101,103,96,94,94,102,97,107,106,110,106,113,97,76,103,94,105,102,95,93,71,117,99,77,117,101,96,97,121,97,93,95,105,87,104,92,100,102,104,88,95,95,96,104,96,94,96,99,92,100,98,93,94,98,109,100,94,104,95,96,103,97,104,108,109,98,115,104,95,101,101,102,99,89,103,106,101,95,95,111,100,87,111,100,95,95,89,99,105,97,103,102,95,111,96,98,104,104,119,110,111,83,96,103,100,101,113,113,105,96,114,97,109,113,98,86,101,95,110,101,95,96,101,110,106,101,104,110,109,87,108,117,100,113,95,97,99,100,103,103,113,93,98,96,94,93,106,93,102,98,92,94,100,107,96,100,103,103,113,70,103,92,108,106,100,110,102,97,102,103,94,97,102,109,94,110,97,95,99,96,81,102,110,106,98,99,91,100,101,104,93,94,105,96,96,95,105,85,92,99,108,101,105,94,96,98,100,105,97,100,92,94,98,91,106,94,95,101,85,116,100,95,94,106,95,87,87,91,106,107,95,100,105,99,95,102,96,86,101,111,96,95,97,99,103,102,102,103,108,101,97,91,98,90,95,97,103,98,106,102,89,110,96,108,103,95,101,108,89,92,108,108,105,91,95,70,92,102,96,98,97,116,91,98,105,105,100,93,101,100,98,91,92,104,92,104,87,97,102,103,82,96,90,92,95,91,100,96,93,98,93,101,98,95,105,101,94,98,97,93,103,100,103,103,104,107,99,91,107,99,102,104,99,93,102,83,88,83,103,100,100,95,100,100,97,88,93,104,102,115,100,126,84,97,101,100,101,101,97,106,96,100,98,103,94,103,105,101,100,86,93,96,92,100,98,102,100,99,91,93,100,104,115,108,95,90,102,95,102,100,95,99,97,98,104,86,99,91,105,97,94,88,85,100,103,85,111,100,97,95,100,98,100,105,97,101,105,92,102,93,103,93,90,98,89,114,101,106,96,100,101,108,99,95,114,115,112,93,104,100,90,103,100,101,106,86,94,104,100,100,107,84,93,99,91,96,103,99,110,98,94,97,114,97,119,106,105,82,94,97,102,101,94,81,112,86,91,108,96,96,87,109,98,101,104,101,102,106,99,106,94,100,89,94,92,95,101,73,109,96,101,86,116,106,97,109,99,106,82,101,111,109,104,93,99,109,98,96,98,96,90,96,92,92,106,95,111,96,80,87,100,103,102,102,97,102,99,105,86,91,101,110,101,108,87,96,103,118,114,90,98,103,92,99,108,95,107,105,80,96,109,103,103,96,100,93,105,91,97,110,100,102,97,105,85,114,103,96,105,97,84,105,93,97,103,101,100,109,86,107,96,107,94,97,103,86,95,100,93,97,108,102,77,96,102,101,98,91,106,106,98,103,98,99,100,108,102,102,93,105,101,105,97,100,97,102,99,105,92,105,98,96,90,98,100,92,102,98,93,88,112,110,109,101,98,100,96,92,100,106,92,108,102,99,101,98,107,75,101,99,101,106,96,102,99,93,102,101,87,106,100,104,100,103,90,99,97,107,107,99,98,102,116,100,101,94,105,94,94,99,106,108,96,111,90,90,103,110,101,107,106,101,102,90,100,99,100,108,101,91,105,117,108,95,113,95,95,94,98,90,102,100,94,103,105,88,110,104,105,91,104,97,100,98,98,89,93,102,91,90,101,118,86,95,102,101,101,104,89,100,95,102,114,104,100,100,102,101,109,95,105,106,101,99,102,98,99,91,98,106,102,116,103,95,102,105,90,104,95,96,106,108,132,98,99,96,92,101,87,95,106,99,91,95,103,122,102,99,129,87,90,95,101,95,110,86,101,97,113,93,104,96,106,105,97,109,97,104,99,87,93,99,98,86,107,100,97,93,106,100,107,107,98,105,108,96,93,102,117,102,92,102,105,95,86,103,103,102,86,93,99,109,103,107,91,101,99,99,91,99,101,73,87,100,104,90,90,101,92,103,109,116,103,91,106,92,90,103,100,112,103,117,121,100,100,105,90,93,107,95,104,98,85,101,100,121,97,99,92,94,88,89,100,96,107,109,105,111,101,86,93,98,94,107,60,89,114,95,102,105,102,104,98,96,98,102,99,104,105,97,103,105,103,95,91,90,97,100,107,96,106,104,112,82,92,91,101,96,104,98,104,83,78,104,106,102,107,110,105,97,98,98,107,96,92,90,89,92,93,95,87,103,97,84,97,103,102,113,92,104,99,98,87,92,100,100,100,94,96,118,95,107,93,96,100,109,105,102,106,93,99,109,106,101,61,98,99,95,107,93,106,110,95,99,102,91,100,95,91,98,102,98,103,102,93,97,98,96,95,96,98,92,104,98,100,100,93,102,89,107,91,112,92,101,106,92,93,105,105,101,96,100,89,101,93,101,98,106,98,104,128,95,113,96,96,88,109,92,109,96,109,107,91,106,100,99,106,108,94,108,100,97,105,99,98,108,110,108,91,101,107,98,100,100,95,104,99,102,91,107,107,86,103,101,103,102,103,112,100,93,97,103,107,90,104,92,101,96,101,99,102,93,106,97,99,95,99,102,100,120,104,109,95,102,109,113,108,91,99,91,98,92,107,105,92,98,109,114,83,94,101,101,103,105,80,109,97,105,102,91,106,107,98,105,100,94,95,125,81,113,113,82,98,110,101,105,100,96,108,100,112,113,100,91,101,100,97,95,97,76,110,101,109,89,100,100,99,102,107,99,93,98,100,101,98,96,111,95,91,93,81,99,105,103,88,107,97,98,96,93,90,91,104,98,101,99,106,89,104,94,98,97,96,105,91,95,94,103,101,101,101,105,92,94,102,101,94,103,98,98,102,105,99,90,99,101,99,96,85,103,93,89,97,90,101,99,85,91,102,105,101,107,96,86,98,100,93,99,94,94,105,95,116,98,98,88,88,90,107,101,110,94,92,96,99,117,98,101,103,97,95,89,95,92,98,98,88,105,91,98,97,105,94,91,113,89,102,113,99,96,105,96,92,98,100,94,98,96,97,91,110,93,102,94,99,87,101,103,92,98,101,103,109,105,100,94,93,98,108,106,98,89,101,88,101,95,98,106,103,98,93,95,109,106,78,102,105,96,100,101,101,100,102,98,110,119,106,98,105,105,96,96,97,91,88,106,102,102,104,105,103,113,94,101,97,87,102,101,92,108,87,80,98,101,93,93,88,85,105,89,104,112,98,133,99,85,96,94,100,93,90,87,99,102,93,105,115,87,105,103,96,84,101,109,112,105,112,104,111,104,92,102,96,94,101,100,95,97,90,105,100,97,95,88,108,102,115,103,107,93,81,108,101,87,98,104,90,95,106,101,97,96,92,97,112,98,106,96,99,100,108,93,100,97,90,112,115,98,108,102,98,99,98,92,93,98,103,97,92,99,117,106,96,93,110,85,107,100,99,106,95,103,115,87,99,119,88,105,97,102,110,103,90,108,117,101,91,108,115,106,94,110,91,95,98,99,100,109,109,102,104,84,101,111,92,90,107,93,100,105,105,101,96,102,103,96,99,104,104,99,91,103,89,94,99,110,100,105,87,88,88,99,94,91,106,105,105,96,101,109,98,94,105,102,97,105,101,109,104,104,98,103,99,92,105,96,95,102,96,97,97,105,107,60,101,92,97,106,97,100,105,97,100,99,107,91,121,106,90,99,110,96,103,127,97,95,93,101,90,93,98,99,101,99,109,103,102,106,100,98,91,103,100,102,100,108,90,92,103,100,100,104,69,98,92,100,98,96,92,103,93,110,103,99,92,97,90,106,85,96,104,99,99,118,106,106,102,105,104,104,101,113,100,96,99,95,104,90,100,112,108,101,89,98,111,110,104,93,110,90,98,104,93,92,103,102,87,108,102,97,102,102,106,89,79,102,99,92,105,102,106,95,95,109,82,104,106,101,108,90,115,100,102,104,93,101,95,93,106,92,104,99,106,90,94,101,100,109,87,97,113,81,117,109,84,103,100,98,98,89,100,92,105,111,89,96,108,99,104,100,103,99,104,98,93,100,110,98,98,93,102,98,102,99,105,99,101,92,103,96,111,98,105,123,110,98,94,105,95,98,95,99,98,104,95,103,98,103,104,111,89,96,87,100,100,87,98,96,95,97,115,94,104,95,114,107,100,104,101,98,101,91,94,103,102,90,93,94,104,87,94,97,94,94,100,108,106,101,100,103,103,97,95,103,98,104,92,102,111,107,102,123,92,105,99,86,97,86,102,101,113,98,99,105,101,103,111,95,100,116,94,92,96,104,98,92,91,95,112,93,109,102,95,88,103,97,98,93,93,108,99,83,77,112,97,96,108,96,108,95,103,98,91,100,98,100,98,92,93,100,93,91,94,106,122,100,98,105,93,91,105,96,93,105,102,102,96,106,103,105,98,95,105,100,104,108,98,95,100,90,97,107,112,112,94,92,106,101,97,105,105,102,105,109,91,107,92,113,98,92,100,108,100,90,105,92,95,109,98,101,108,107,90,106,79,98,105,103,88,106,106,95,105,105,98,108,105,115,108,97,98,90,96,108,98,88,86,83,105,86,91,105,100,92,87,97,101,92,96,116,99,94,102,97,98,100,108,78,98,109,97,107,115,89,93,101,77,83,101,95,96,98,84,98,86,96,99,96,112,92,99, +712.84924,119,111,101,114,90,104,109,108,97,72,94,107,91,97,102,94,125,100,103,92,103,94,95,95,84,116,96,94,96,105,98,114,105,106,103,102,113,97,94,83,89,95,88,105,92,98,107,104,98,100,106,112,86,105,101,108,98,88,92,82,96,96,104,96,92,102,91,96,100,107,103,110,105,103,106,100,97,113,100,105,100,101,95,101,112,105,70,114,104,108,90,108,91,95,94,120,108,111,99,93,102,99,92,69,91,105,93,102,93,87,99,90,104,109,83,109,95,90,109,98,87,105,101,95,107,107,73,96,100,119,105,91,101,95,96,102,94,101,93,88,95,98,98,87,87,86,104,97,99,94,95,85,96,98,98,90,97,98,108,106,101,101,96,93,105,99,102,98,96,95,98,91,94,95,109,117,75,102,104,107,92,87,105,94,103,90,90,97,91,80,101,100,87,91,95,96,99,100,101,96,96,80,95,97,100,100,92,84,94,94,97,98,101,93,96,95,105,99,90,99,109,95,96,94,98,96,105,100,101,102,100,104,107,108,101,103,103,108,101,98,97,99,93,99,93,82,103,103,102,100,94,104,82,93,103,90,90,83,95,111,91,98,96,88,94,108,112,83,96,101,101,89,103,99,95,96,99,94,103,125,100,103,101,112,94,75,99,94,94,98,96,107,100,101,107,109,93,110,105,82,98,88,91,106,93,79,96,111,101,103,88,106,98,118,90,90,98,95,99,101,96,97,88,98,100,99,104,94,101,95,103,91,120,106,99,100,80,102,100,100,95,104,86,95,100,104,100,100,94,99,101,100,112,92,94,94,125,98,99,100,104,96,88,96,91,87,109,109,88,98,127,88,94,83,97,97,106,95,97,88,96,104,100,96,107,95,104,95,94,90,112,94,99,86,101,96,100,98,106,119,97,111,92,82,103,91,116,99,87,108,101,92,99,93,97,97,103,97,103,83,92,92,92,108,100,105,97,93,99,106,93,89,98,92,95,87,103,102,84,100,104,99,96,105,90,106,101,88,105,100,95,101,105,86,105,102,90,91,92,88,91,94,101,107,105,103,98,99,93,101,91,101,99,99,95,105,102,108,105,108,105,98,108,94,100,101,100,97,113,108,99,100,106,98,94,102,96,99,87,92,99,88,94,100,98,109,100,111,108,111,91,94,106,97,97,110,97,90,102,88,102,94,103,102,95,100,95,95,111,93,101,86,109,97,104,85,95,100,86,92,98,102,106,104,106,96,94,96,102,100,76,99,110,114,84,95,106,89,100,90,101,101,103,91,94,97,110,95,86,104,104,74,92,66,104,104,92,87,97,96,103,75,83,104,93,109,111,110,102,100,103,108,112,98,96,109,98,106,104,97,95,102,103,92,101,90,102,90,99,98,95,106,104,101,105,101,106,90,80,100,102,88,97,83,87,102,87,106,109,110,86,113,97,105,99,106,96,89,102,92,97,103,96,101,82,111,86,69,102,105,86,98,95,100,95,95,109,101,112,94,104,99,98,106,92,96,105,97,96,104,93,92,91,100,90,88,98,99,117,101,101,100,103,90,98,91,96,97,92,98,91,94,93,113,86,92,90,102,105,85,98,96,84,93,91,91,90,109,93,82,83,96,108,102,96,90,88,110,96,93,93,83,95,98,95,86,95,85,101,116,95,100,101,105,90,101,107,90,106,90,82,95,99,87,103,110,105,95,100,108,87,90,80,89,105,91,96,112,94,91,98,99,83,100,104,101,90,99,95,98,98,98,106,121,102,124,96,100,105,101,109,104,97,108,104,99,102,111,101,90,100,115,87,105,90,97,93,98,103,101,98,99,106,91,106,88,98,104,104,96,117,102,108,96,89,111,99,105,101,86,109,101,102,101,97,101,99,103,132,99,103,102,97,105,91,98,95,107,96,113,91,96,122,90,90,97,96,92,101,85,87,114,92,103,90,106,99,98,96,98,97,92,101,98,93,105,97,113,121,92,104,105,93,104,89,103,103,94,87,114,104,97,102,92,92,99,97,101,111,90,101,105,105,94,91,98,100,103,101,116,101,118,105,102,101,99,96,97,97,94,104,102,99,103,110,100,93,94,90,102,99,95,102,106,105,88,103,87,99,101,87,100,109,110,90,104,107,102,96,102,102,108,105,112,98,96,104,105,93,91,104,105,104,111,108,99,96,111,102,97,100,102,95,87,125,98,107,121,97,67,92,101,102,100,105,105,101,101,83,101,103,105,78,92,97,101,102,99,97,94,100,101,89,90,96,96,90,96,103,101,108,100,97,96,86,101,107,111,101,91,97,106,102,98,99,93,98,96,94,92,103,91,93,99,101,102,97,95,92,95,117,104,93,77,102,89,92,90,95,98,99,101,91,99,122,96,98,107,113,93,101,95,101,105,92,110,107,101,93,99,99,95,104,118,95,99,101,98,83,88,97,108,96,109,90,97,88,96,107,114,80,97,83,110,96,103,102,99,109,101,103,102,98,91,98,105,101,85,107,103,99,105,103,101,101,97,95,92,106,92,100,112,105,99,85,99,98,98,97,97,94,98,96,95,100,101,95,102,98,98,120,94,107,99,97,97,106,94,76,88,109,94,113,101,98,97,96,95,99,102,92,86,107,90,96,98,100,103,100,104,89,100,105,92,99,94,105,102,102,98,103,80,101,94,96,100,101,103,99,101,99,92,87,112,101,94,110,95,111,101,87,101,92,105,93,111,105,89,93,103,91,94,120,106,102,104,98,103,84,83,108,99,100,94,109,97,100,106,77,112,101,99,100,78,92,93,101,114,109,116,95,96,93,112,113,86,100,103,95,105,100,92,103,111,90,105,103,96,100,93,97,104,112,109,104,92,113,100,103,109,94,101,85,109,98,94,104,109,96,93,94,100,108,99,116,102,111,101,107,103,94,105,100,103,95,115,91,104,99,110,98,101,103,104,97,82,99,97,90,112,108,116,95,99,81,102,113,92,91,99,105,104,98,87,103,95,106,98,113,96,106,105,99,108,102,92,102,101,96,91,100,98,96,101,107,99,86,95,91,89,87,102,104,104,94,79,105,102,98,102,101,108,104,100,87,94,98,102,104,92,108,101,104,102,110,94,95,93,96,97,110,93,107,109,111,106,73,94,114,95,105,92,122,91,101,98,101,95,83,94,99,88,97,74,97,101,97,97,100,100,99,99,100,103,109,99,83,109,91,120,111,84,108,102,113,105,100,102,87,96,104,94,92,83,102,89,108,95,83,100,97,104,95,96,105,104,101,101,112,101,94,91,104,90,97,106,98,96,84,95,100,71,112,101,91,94,98,98,107,105,104,112,91,102,106,107,98,97,95,92,104,93,94,101,95,96,90,104,104,96,94,104,98,107,83,107,109,85,102,101,99,104,102,112,95,103,111,99,104,92,89,99,113,89,97,106,97,91,105,91,101,83,107,95,79,96,86,96,95,113,99,105,97,107,91,98,101,96,97,100,106,99,102,91,93,92,98,94,102,91,102,101,104,102,108,97,101,113,95,104,112,106,93,100,104,96,102,102,100,98,97,94,108,102,98,107,107,98,95,102,103,98,92,100,101,99,103,95,87,96,102,98,98,112,104,99,87,97,100,101,92,93,105,104,100,95,99,91,96,96,100,96,97,109,95,92,106,91,100,100,98,91,104,102,93,95,90,101,100,88,99,107,100,104,95,106,100,105,101,92,103,103,100,102,93,94,102,104,90,104,92,107,97,102,106,98,97,84,103,105,103,100,104,92,104,102,99,99,106,101,112,106,112,102,95,105,100,94,95,107,98,105,87,105,77,94,102,102,105,94,103,92,100,94,95,95,91,93,94,110,98,98,104,100,95,113,97,97,101,98,100,107,94,106,90,101,99,107,98,98,101,93,90,102,92,106,100,86,96,112,94,91,94,106,89,108,108,108,117,96,95,105,99,91,104,97,97,98,92,91,100,105,95,98,88,103,109,93,89,98,105,95,99,108,86,98,100,100,94,109,88,116,102,101,101,102,99,97,111,104,102,103,101,97,105,71,90,70,101,98,100,102,100,97,100,106,95,88,85,78,89,103,97,94,107,115,93,100,111,112,107,100,99,94,94,101,98,88,95,91,95,95,105,92,99,97,105,107,87,90,102,97,89,98,98,101,95,101,108,98,105,134,102,85,107,84,98,105,76,91,98,98,97,107,97,108,101,94,77,96,109,108,95,89,98,97,103,99,100,104,101,94,89,97,96,108,95,115,88,94,100,96,94,100,96,93,98,95,99,92,98,93,105,104,78,98,84,113,101,104,104,112,95,97,104,94,101,101,106,71,91,88,106,79,98,96,91,107,104,94,102,98,109,102,100,100,100,105,102,104,98,109,102,97,88,106,104,105,114,92,94,102,120,105,89,101,101,103,98,100,94,83,103,102,105,114,88,101,102,84,109,101,96,89,124,94,94,93,115,103,103,95,90,105,105,86,99,95,97,102,95,95,100,118,97,104,95,92,95,94,99,92,103,96,118,104,90,109,95,91,103,93,87,102,93,94,106,105,93,94,99,100,111,98,104,102,105,96,96,94,97,101,96,87,99,92,96,108,84,101,98,91,86,94,106,94,93,108,106,95,103,101,102,85,83,115,104,104,102,98,129,98,98,92,98,97,92,100,99,115,89,91,92,116,95,109,97,95,115,100,96,99,88,103,97,100,93,105,110,98,102,95,109,96,109,101,105,103,91,102,104,98,91,106,100,103,104,110,100,109,107,100,102,75,106,102,103,96,86,109,95,90,102,95,88,115,117,109,87,110,98,104,105,95,98,77,81,101,108,90,108,100,84,88,106,99,60,111,99,94,99,116,112,110,98,109,89,101,104,87,92,105,102,88,94,85,104,97,103,124,92,105,116,87,104,92,108,89,88,89, +712.9906,106,113,96,92,97,116,102,102,91,108,79,108,89,102,96,93,89,93,92,89,99,105,91,105,93,103,97,94,109,99,85,105,91,117,97,85,104,87,87,99,114,100,99,100,121,99,101,108,101,114,101,108,93,111,88,86,96,102,115,109,108,103,95,106,93,107,101,104,96,99,99,109,101,102,101,126,96,102,96,104,97,83,98,109,105,97,98,111,94,102,98,112,87,110,106,83,100,93,97,94,102,103,114,92,100,108,85,111,96,83,96,97,106,95,103,100,96,98,105,102,103,103,114,100,103,91,111,107,112,92,104,101,91,117,105,95,88,85,112,96,92,113,84,102,86,101,106,110,86,84,108,82,101,97,94,105,104,109,95,110,107,95,98,105,102,97,103,92,99,93,101,94,91,99,101,104,93,83,100,91,94,101,119,104,99,96,103,97,105,103,100,103,98,113,108,96,93,88,99,108,106,95,105,90,90,101,86,104,110,105,112,91,100,103,101,92,104,96,93,105,97,96,100,102,102,92,100,98,97,108,82,108,94,98,95,98,105,111,108,97,95,106,100,97,99,103,102,88,119,100,97,102,97,89,96,110,96,97,101,94,93,87,96,103,97,99,100,87,90,89,99,94,89,90,103,98,93,102,104,101,100,97,100,110,90,104,93,100,100,96,102,101,106,99,109,109,106,105,108,98,81,108,106,99,100,84,95,106,104,102,81,113,90,95,102,105,100,97,89,105,94,109,99,102,94,76,100,85,110,103,109,99,90,99,101,108,103,94,111,108,106,109,99,93,102,95,102,109,92,94,96,96,95,95,106,90,108,98,79,96,87,98,102,75,84,104,101,97,98,108,81,99,101,97,105,88,103,95,98,106,103,95,88,103,87,91,102,90,98,85,105,84,97,101,100,113,100,100,102,105,89,102,99,105,101,101,93,101,104,90,94,98,98,96,93,102,94,100,99,96,103,98,79,97,92,93,97,100,108,92,106,100,96,105,92,92,92,88,101,94,97,101,96,101,87,101,93,108,74,121,97,98,99,105,114,96,105,97,111,97,103,105,100,87,94,115,109,107,99,98,106,111,113,109,100,96,105,105,101,92,94,109,95,91,94,118,112,104,104,95,94,100,105,103,94,102,101,101,98,91,112,113,106,99,90,101,88,107,104,99,90,93,103,97,92,96,98,101,95,97,98,89,96,103,108,92,90,101,109,105,104,94,99,95,98,100,99,103,105,97,113,99,83,90,108,105,109,93,97,86,96,86,100,102,95,87,103,98,95,96,94,95,100,100,97,97,103,97,94,90,88,98,97,100,98,101,94,97,91,110,104,107,91,91,95,93,98,87,97,100,91,95,93,99,104,97,94,88,98,113,94,120,118,97,104,116,92,100,98,97,87,87,110,115,87,112,86,90,105,91,99,109,104,93,101,106,102,106,98,106,79,98,98,85,87,96,103,93,115,97,92,127,90,91,105,91,100,95,92,112,106,97,114,105,90,81,101,95,102,102,95,98,95,103,91,99,92,102,105,93,96,84,94,101,105,96,84,99,97,114,111,104,100,96,94,107,103,99,100,99,68,101,87,104,100,83,92,106,100,90,96,98,91,93,103,109,107,103,95,93,103,95,91,102,93,86,100,103,102,101,109,107,93,113,90,102,95,100,95,87,97,101,90,96,94,105,92,101,100,94,113,62,101,94,94,102,91,92,99,98,101,89,97,113,82,98,103,81,98,90,95,97,90,83,82,96,85,96,88,96,106,97,98,104,92,98,93,103,105,94,98,99,105,98,96,103,96,100,100,98,98,86,94,104,98,99,102,106,104,107,105,102,88,95,102,96,106,105,104,90,105,102,95,91,105,106,106,99,97,97,101,114,103,104,119,101,107,79,98,93,106,95,112,100,98,106,102,99,99,114,99,105,105,90,109,92,90,91,89,92,91,86,91,105,96,100,110,105,91,91,95,98,90,101,94,95,88,95,108,100,98,88,105,102,103,104,100,98,105,82,119,101,96,106,96,99,94,99,94,106,98,99,102,92,99,93,100,99,88,93,105,107,105,100,101,93,100,88,96,90,87,97,97,97,106,88,91,92,93,107,110,89,93,109,89,84,94,97,97,95,96,94,97,104,97,92,96,102,81,96,96,94,111,101,89,108,98,99,107,98,90,88,111,99,108,93,94,103,100,107,77,113,101,100,111,111,89,92,104,107,96,94,99,98,101,95,104,94,100,92,110,113,91,106,98,91,91,102,86,83,93,84,98,93,101,98,92,104,101,94,98,101,103,87,92,87,104,98,91,98,108,99,93,91,100,103,87,93,102,101,103,103,96,94,108,99,109,93,97,87,106,90,110,97,106,96,101,100,100,100,91,109,88,96,95,104,87,95,90,90,94,99,99,102,97,103,102,78,89,110,77,93,107,114,103,88,97,96,92,86,101,84,101,102,86,112,95,93,101,103,100,95,101,93,96,109,87,93,98,100,86,96,98,90,95,91,90,93,108,100,101,81,97,90,82,96,97,84,91,104,101,106,96,101,100,101,107,105,100,102,103,103,93,98,104,105,99,92,105,90,105,93,113,99,92,102,98,107,86,102,102,68,109,103,91,100,95,92,105,91,99,118,95,98,116,130,100,97,105,94,94,84,93,95,108,97,88,94,98,101,92,94,102,117,101,100,104,97,91,97,112,103,95,98,101,95,114,93,106,98,96,97,91,95,102,104,106,102,96,97,86,83,102,106,105,111,106,96,73,98,108,97,100,105,109,93,84,113,99,92,111,105,108,91,101,96,98,103,107,87,107,99,89,88,100,99,102,102,108,110,101,97,103,102,74,98,91,101,99,91,90,101,101,93,105,99,96,103,90,101,112,88,89,100,100,100,96,93,104,109,100,94,97,109,102,115,94,98,105,94,89,98,110,97,124,91,109,92,95,91,105,105,89,92,98,99,97,88,92,98,101,96,80,94,93,100,98,96,94,100,91,91,104,91,106,105,99,92,99,91,104,117,96,94,90,114,102,95,99,101,92,87,86,80,97,101,99,106,83,102,104,98,112,99,100,97,96,81,103,92,92,94,94,106,88,121,100,94,87,103,104,80,104,84,108,92,98,83,108,96,95,89,101,101,100,99,104,95,97,105,92,98,85,91,98,99,88,104,97,101,88,99,103,91,113,92,104,93,101,95,97,121,103,107,94,103,105,92,96,100,98,100,97,105,97,93,101,95,83,107,84,101,108,112,99,87,93,92,105,96,91,101,91,72,101,87,105,104,91,95,83,98,102,91,100,104,96,94,109,109,100,88,116,90,99,87,98,91,99,97,102,89,109,96,99,114,98,88,105,83,92,104,95,91,97,105,109,97,107,92,94,87,113,92,90,113,109,93,97,101,98,110,95,90,91,101,94,102,104,92,101,101,101,97,103,106,77,98,98,87,108,93,109,106,96,64,94,80,95,90,110,105,100,93,92,110,102,99,99,90,103,92,95,95,112,97,98,109,103,89,109,103,97,91,89,94,90,100,94,90,106,102,97,124,86,92,95,91,100,95,96,95,116,95,94,106,100,105,96,113,110,107,88,102,98,100,104,98,87,104,91,104,84,99,94,98,105,97,98,98,72,87,95,102,100,106,99,113,88,113,88,98,94,107,95,96,104,97,93,98,92,97,108,102,99,104,83,88,105,96,100,94,95,111,90,97,100,95,101,99,100,109,95,106,97,91,91,97,98,105,98,104,103,91,84,97,108,90,102,94,104,97,105,112,94,97,91,94,96,104,104,102,113,100,106,97,105,124,103,100,100,107,109,108,103,105,97,87,106,97,96,102,112,106,103,111,102,85,85,87,109,104,95,96,93,97,113,94,94,90,115,112,105,96,87,108,97,93,93,115,105,89,87,97,101,96,90,99,95,99,88,109,107,102,99,101,107,102,103,63,110,73,99,99,92,104,104,90,95,99,103,107,96,93,100,101,102,98,97,89,96,94,92,106,103,101,106,108,87,98,101,109,90,110,107,93,75,105,92,104,102,101,96,109,93,116,121,95,102,94,96,92,88,95,103,109,96,90,102,100,92,102,87,92,104,95,97,95,102,76,104,99,90,78,87,107,100,103,97,109,91,104,101,100,95,95,99,101,107,102,102,99,102,106,106,96,102,104,87,103,91,88,105,92,99,100,93,87,93,110,103,90,98,110,93,112,92,106,101,86,100,103,94,98,97,94,93,108,95,106,103,101,109,102,100,84,114,102,98,83,97,104,119,107,105,102,119,94,90,97,112,99,102,91,94,90,94,102,96,106,98,107,104,85,103,73,98,96,101,101,95,104,113,102,102,86,97,100,102,97,119,101,113,95,109,105,115,102,105,103,97,107,120,109,92,102,101,99,100,97,98,102,73,95,98,90,99,99,95,96,96,83,96,115,90,99,102,125,90,97,103,98,112,113,102,94,96,102,89,93,103,96,96,103,94,85,91,98,97,101,113,98,111,108,97,108,92,105,103,97,87,89,88,97,101,105,85,102,99,100,94,97,98,94,101,103,99,94,95,109,101,111,100,97,95,97,95,99,99,107,91,94,100,88,106,102,99,99,92,97,105,100,102,93,82,109,105,92,97,99,111,91,101,112,98,102,105,103,103,96,87,96,100,107,95,102,94,120,105,87,107,89,94,107,88,94,95,83,94,87,100,99,110,105,98,87,100,97,99,96,99,93,101,89,100,86,108,94,106,86,91,101,98,107,109,103,88,109,127,95,100,106,102,87,82,101,93,93,95,102,103,92,96,86,87,105,109,106,96,102,102,102,87,91,93,85,94,116,101,96,96,93,101,96,107,95,90,106,103,93,105,102,84,99,86,94,108,99,93,111,89,105,103,106,96,90,87,104,100,94,105,101,103,89,97,101,102,107,101,88, +713.13196,78,110,104,101,88,106,114,104,115,98,100,110,102,98,88,96,100,100,106,103,106,103,88,112,92,90,117,80,98,100,102,105,111,104,118,93,110,106,99,109,76,102,96,82,104,99,89,91,95,112,109,102,100,105,89,94,91,74,96,95,101,102,104,86,94,103,97,106,110,88,105,99,116,108,99,95,101,91,103,101,102,92,86,106,100,97,110,99,108,100,100,111,105,100,85,103,95,87,104,97,92,104,105,99,95,97,79,109,112,99,103,97,101,95,102,106,90,114,105,110,102,93,105,112,92,114,97,99,104,108,98,74,105,99,89,99,103,88,91,105,108,97,82,103,91,71,108,102,109,101,105,92,106,97,97,102,99,100,108,97,94,106,112,94,111,95,88,102,105,102,99,101,98,92,104,94,91,94,93,111,110,101,89,102,100,100,96,97,107,100,95,87,104,92,99,104,95,94,107,102,117,110,94,82,111,100,98,102,95,102,95,91,86,98,106,95,96,95,101,109,114,95,98,100,106,117,96,100,102,100,106,123,124,100,96,101,102,94,108,107,97,97,106,111,89,109,103,103,104,98,100,108,100,94,107,104,96,104,98,105,80,72,94,108,87,98,107,104,102,101,102,86,111,114,109,99,98,104,97,100,109,99,100,101,88,95,108,97,90,97,110,110,84,107,113,100,105,112,106,106,99,109,101,100,94,121,102,105,103,98,95,111,104,102,107,85,106,90,90,106,99,101,91,98,74,100,92,98,102,94,102,97,103,102,105,105,102,95,107,79,106,99,95,97,113,108,102,106,100,92,91,93,101,116,103,113,95,98,101,104,101,86,88,102,101,101,100,105,70,102,104,104,103,100,104,97,107,104,100,108,94,105,93,100,99,103,93,97,98,97,105,106,105,109,104,94,95,99,94,95,104,104,102,79,98,104,111,93,105,98,107,94,97,95,109,81,101,98,106,94,94,99,95,104,85,95,97,95,95,102,98,102,80,106,102,101,97,103,103,96,88,103,98,99,87,88,108,80,94,102,83,103,81,114,105,95,103,98,114,121,96,101,108,106,103,96,106,107,92,94,97,109,105,102,97,94,104,97,95,99,91,110,104,97,103,94,100,95,91,103,99,108,103,110,105,99,106,107,97,88,109,101,102,99,98,98,88,108,104,102,105,107,96,99,89,104,84,102,110,92,96,101,100,94,106,94,94,96,90,97,74,101,99,100,96,92,104,106,99,103,106,102,107,92,91,94,100,97,98,104,102,103,98,101,95,99,110,105,101,97,108,92,88,97,101,96,105,101,92,91,90,88,96,108,98,105,97,97,95,108,96,99,99,90,105,97,108,74,120,121,93,109,94,95,103,103,98,96,94,110,92,90,95,93,98,93,94,98,95,111,107,106,100,103,112,84,112,105,97,92,106,104,101,105,95,103,100,105,107,99,110,85,101,99,98,91,101,98,93,108,102,110,102,112,83,98,92,105,114,109,94,100,105,103,112,106,114,108,96,100,104,105,96,87,93,92,90,88,116,92,98,102,95,99,92,94,98,98,89,99,116,109,101,98,105,90,94,85,95,113,97,105,95,104,101,94,109,105,102,95,106,100,94,115,104,102,115,96,72,100,98,94,94,113,92,94,76,114,100,71,86,92,102,115,94,109,92,110,102,107,115,105,100,100,90,102,101,101,98,102,121,92,96,97,95,86,91,107,100,84,91,97,97,89,96,97,108,102,99,97,98,103,101,97,103,96,90,101,105,88,98,101,113,90,94,107,89,95,108,96,109,117,106,102,111,116,113,102,101,101,91,97,119,107,109,103,102,105,101,108,112,107,81,92,99,96,105,100,104,93,106,102,99,102,110,105,103,109,99,96,98,107,101,107,94,97,108,99,102,101,89,102,105,103,100,110,104,125,96,117,96,91,107,105,93,104,101,111,92,99,100,86,108,100,102,90,90,91,96,108,106,93,94,100,99,94,99,106,76,82,89,99,93,107,86,92,105,86,97,99,99,102,108,91,93,90,109,101,91,105,91,94,98,106,102,91,102,101,86,95,96,109,109,104,103,105,99,96,98,96,91,108,109,64,107,93,100,99,92,92,98,108,101,105,94,93,110,105,96,101,104,98,105,100,106,98,101,99,102,116,96,99,104,104,98,90,95,100,86,102,94,103,115,103,99,112,100,98,96,103,106,90,104,103,87,93,105,99,100,104,89,106,93,94,111,104,96,96,100,98,107,88,101,108,102,96,99,94,95,105,106,95,104,92,103,109,101,105,100,98,107,86,102,93,100,113,98,106,97,90,102,103,100,98,103,99,101,106,109,105,108,95,88,85,108,107,108,83,89,96,117,95,103,95,113,97,96,95,106,99,86,110,98,97,95,96,101,93,105,96,87,102,112,99,95,101,99,103,95,95,100,102,104,93,92,94,102,105,94,99,94,108,95,96,83,102,103,103,89,94,96,95,100,107,122,117,96,95,99,100,90,91,96,100,96,97,100,83,98,98,85,96,97,91,106,107,89,102,109,93,97,100,96,94,109,109,106,92,90,94,99,107,105,100,99,95,104,99,116,99,97,102,109,95,94,102,80,102,76,85,102,101,106,107,101,101,94,105,114,91,103,98,96,90,81,100,99,97,95,112,97,92,101,91,94,105,102,101,105,83,101,102,113,104,108,92,103,105,101,108,98,98,80,97,103,89,103,95,121,95,99,104,91,76,94,100,105,91,96,86,102,105,97,92,101,102,98,109,107,87,96,105,109,96,109,109,95,104,104,96,96,104,99,107,103,67,109,110,79,97,105,103,86,103,87,101,96,109,106,98,102,107,101,91,101,98,91,95,91,99,104,102,89,90,100,92,87,95,92,98,100,89,84,98,101,104,82,103,108,106,100,95,98,107,100,95,100,90,95,95,101,107,86,95,98,92,99,97,105,106,99,95,92,108,102,100,95,112,115,101,106,108,100,92,95,100,98,100,99,98,107,92,95,95,112,96,105,107,101,97,101,107,102,105,109,100,102,74,112,95,99,96,92,111,99,98,99,105,100,99,101,107,107,88,98,100,94,87,98,113,106,98,91,97,99,98,105,100,93,103,94,98,98,99,103,87,97,87,94,96,99,101,104,98,106,106,91,94,94,91,103,98,101,99,93,97,96,98,97,105,89,94,109,101,92,109,71,101,104,107,104,90,88,91,103,92,112,109,91,108,102,93,99,100,94,94,104,105,95,107,99,106,99,99,93,107,106,91,109,90,94,96,96,98,96,100,97,101,101,105,91,88,94,102,88,106,99,106,103,95,107,105,99,126,100,98,99,112,110,107,99,107,94,105,93,103,91,102,105,97,100,113,86,91,103,98,91,95,92,95,96,104,100,91,100,93,98,107,100,100,101,100,100,104,115,107,103,98,100,91,89,93,102,100,98,100,99,103,95,107,83,81,79,97,90,93,93,99,98,103,102,112,102,105,89,113,110,99,94,91,106,96,97,104,98,105,92,97,110,93,102,109,109,99,105,104,105,103,105,95,115,107,121,103,75,109,106,103,96,97,93,99,109,104,103,104,92,101,109,111,103,97,100,98,94,97,83,104,95,80,95,88,107,97,103,98,97,104,102,116,93,107,92,103,109,101,98,116,95,94,91,98,96,98,106,99,102,102,101,108,94,108,124,107,94,103,96,94,87,97,91,95,101,110,96,103,102,116,99,91,83,106,96,110,102,98,101,100,102,104,98,99,101,97,108,100,90,99,111,106,98,93,95,95,96,106,98,96,103,100,103,103,111,109,108,104,113,94,99,101,95,94,113,109,91,105,99,96,97,95,102,110,107,105,98,101,96,126,82,93,91,97,92,100,101,98,86,103,120,103,100,101,93,98,92,95,103,88,87,98,96,105,91,112,100,106,101,100,101,105,95,103,98,102,97,91,115,98,95,97,109,99,112,101,96,94,79,109,110,105,96,95,104,90,80,106,107,103,105,77,98,99,105,104,97,95,103,101,100,101,113,98,103,101,108,90,105,107,106,98,113,105,107,91,93,103,119,97,97,100,105,108,87,103,102,95,98,103,104,105,103,92,103,83,96,107,103,91,99,101,97,100,104,100,110,99,91,106,98,105,103,106,100,102,92,107,89,107,94,109,97,95,94,95,121,97,87,100,100,102,109,92,102,94,104,99,93,104,97,90,100,111,100,105,99,112,97,88,109,101,100,88,101,108,95,102,105,105,117,93,84,79,101,126,90,102,105,103,97,98,92,99,95,91,100,104,82,80,87,105,98,90,106,107,92,100,105,72,88,98,85,94,100,102,99,92,107,98,102,88,105,103,104,108,94,101,92,91,96,98,108,97,98,105,92,98,107,98,106,108,100,99,107,111,97,95,95,105,98,100,101,95,108,87,103,101,95,100,102,104,100,93,101,116,94,109,90,109,80,69,112,100,96,95,112,98,89,100,106,104,105,99,97,110,106,88,100,100,92,86,91,95,104,96,103,129,110,99,99,99,103,95,85,99,117,110,98,102,108,109,104,91,104,101,95,105,91,102,104,99,105,94,83,96,93,109,98,101,95,96,93,94,103,103,107,106,98,94,93,94,102,90,112,102,108,101,96,107,89,97,103,107,109,112,91,104,105,110,105,90,106,91,88,115,104,91,107,100,107,92,98,87,82,110,103,100,104,98,89,108,93,108,98,108,109,99,120,120,110,100,100,99,106,100,113,89,105,104,98,87,88,99,89,107,99,112,96,103,107,96,114,96,97,105,99,96,103,97,94,96,115,103,96,100,109,100,101,104,97,103,99,96,108,102,98,104,102,96,100,91,111,104,85,99,91,81,100,83,98,113,96,95,93,71,90,95,97,93,121,91,111,114,92,98,100,100,91,94,108,100,103,96,96,87,108,99,102,100,100,94, +713.27332,101,100,97,90,95,101,107,102,98,103,86,94,100,110,104,112,86,104,100,91,96,99,109,106,111,98,103,98,105,96,104,105,97,97,103,96,92,98,114,91,103,102,106,100,120,105,107,107,93,115,96,93,98,96,96,105,103,113,91,100,95,102,98,91,101,89,87,100,106,96,95,95,83,101,92,120,87,110,103,96,86,103,102,105,100,108,105,110,103,100,101,101,97,96,83,102,99,91,92,101,96,99,100,109,98,110,98,104,96,98,106,107,87,90,109,100,93,110,96,102,99,91,91,100,103,100,103,100,87,107,107,93,93,91,108,101,95,106,95,94,95,86,104,106,111,100,99,110,87,95,101,91,87,99,91,91,91,104,115,101,103,92,108,99,103,102,95,82,109,101,97,122,97,97,118,104,118,95,104,96,103,110,85,95,94,98,100,91,101,98,93,99,91,95,96,95,103,93,108,103,94,95,100,96,101,101,103,94,114,107,76,103,91,110,102,96,105,111,101,91,107,107,89,122,102,95,103,87,118,106,100,107,99,89,109,108,95,112,87,84,92,100,114,99,77,103,102,107,106,116,90,93,93,84,99,97,86,90,87,103,85,95,90,90,108,95,114,97,103,98,94,96,98,90,100,97,111,96,97,88,107,131,114,98,92,103,94,98,101,100,95,102,107,98,98,96,102,99,98,101,92,91,96,99,91,82,97,100,103,95,100,114,109,105,105,98,98,102,93,88,95,90,90,111,94,94,107,94,113,95,102,101,97,95,111,106,102,102,106,86,101,94,109,91,90,95,96,97,97,101,105,92,99,106,101,95,101,100,100,103,110,115,92,99,95,94,108,96,98,96,106,99,104,95,104,90,97,113,95,106,117,102,79,114,99,96,104,103,104,94,108,106,83,104,97,90,95,106,100,108,99,101,105,88,108,103,109,97,103,95,97,96,103,85,99,86,110,102,112,92,101,102,100,99,98,103,92,95,96,92,103,98,101,104,102,96,96,94,101,109,97,102,93,87,102,104,99,95,85,95,122,96,86,97,98,105,91,91,68,99,103,106,108,104,110,105,99,109,107,106,101,92,98,88,99,99,98,116,114,95,100,75,99,98,93,106,108,104,98,97,105,97,105,103,100,93,79,94,95,97,104,126,93,102,100,97,81,81,91,100,101,92,108,120,94,101,101,105,92,92,99,98,104,101,99,113,107,97,103,99,90,94,96,129,103,106,111,105,88,110,90,107,107,99,103,100,107,105,107,110,100,100,92,96,106,88,101,101,92,97,97,105,99,96,99,107,108,107,104,77,96,95,99,109,101,104,98,94,110,95,106,105,100,112,110,94,101,93,97,99,101,95,101,97,105,95,90,90,97,99,96,98,101,94,102,96,103,97,102,100,97,105,102,110,108,95,107,107,102,125,104,109,107,97,101,104,96,125,104,109,105,105,87,106,100,114,97,93,97,100,106,102,90,97,91,103,87,91,100,102,93,99,103,116,90,113,88,107,100,104,106,92,97,99,98,102,90,93,98,99,100,99,96,104,99,104,87,90,106,83,111,113,100,89,100,104,106,98,106,95,101,101,81,115,96,108,90,96,100,98,106,107,88,99,94,101,102,101,92,106,92,121,105,97,111,109,106,98,95,95,100,90,97,93,100,91,99,104,84,102,103,100,93,97,98,101,102,97,102,107,98,106,93,103,105,100,100,109,92,90,102,100,112,109,92,93,99,100,87,121,81,104,107,102,94,110,95,98,102,87,99,94,119,96,85,100,112,93,108,96,105,100,117,105,91,93,104,109,92,104,109,99,98,104,94,108,100,101,93,95,113,103,105,106,97,102,98,83,93,82,99,102,94,106,105,94,107,102,87,100,94,111,100,102,105,99,94,96,106,98,91,96,117,102,101,104,96,108,104,100,89,103,110,103,106,101,90,96,88,99,100,98,70,104,96,83,97,102,84,108,98,81,86,113,99,85,89,108,103,108,94,93,101,120,97,94,104,102,92,103,98,81,101,100,101,100,97,102,102,99,111,103,104,100,102,91,102,99,96,101,99,112,103,93,101,80,95,105,97,99,102,119,106,96,76,95,92,110,103,96,104,105,108,93,94,95,107,101,96,109,95,78,86,102,92,106,96,112,99,100,109,104,89,70,95,106,62,113,100,94,108,109,94,95,113,111,101,101,90,106,100,98,95,104,95,99,91,100,103,94,100,109,92,104,104,91,101,97,88,111,111,103,100,91,106,95,96,91,97,98,104,92,101,105,105,98,113,100,100,100,91,117,100,91,107,91,119,89,100,94,94,101,93,107,106,89,99,100,102,98,112,96,97,98,100,101,103,101,104,96,96,105,105,110,103,97,96,103,99,104,94,106,97,96,91,94,103,86,104,86,87,103,95,105,90,113,90,133,108,87,91,92,107,108,95,97,92,95,99,92,91,110,93,106,101,100,117,112,93,98,95,99,106,112,107,119,96,97,99,104,114,99,98,94,118,102,102,83,106,96,100,97,105,100,84,103,112,107,94,100,95,96,101,112,97,98,110,100,105,112,107,92,122,90,97,97,102,116,115,92,112,72,92,94,103,89,101,95,102,87,117,104,100,104,90,93,102,97,113,91,99,105,116,100,110,94,109,104,96,100,103,95,97,94,98,105,100,100,91,90,91,117,109,90,98,103,91,106,98,90,93,106,99,102,117,97,99,96,117,91,90,106,105,103,98,100,100,97,93,105,96,99,93,95,102,103,95,112,106,101,108,93,109,113,115,89,104,109,107,96,103,106,97,97,103,105,99,101,110,93,97,115,103,101,104,101,103,95,94,94,100,83,112,94,97,98,101,97,91,96,101,103,107,97,92,91,89,88,104,95,110,102,94,101,104,91,99,103,102,100,113,119,112,111,94,92,92,102,98,107,104,100,113,95,110,96,92,108,92,97,96,111,100,101,107,101,88,112,103,104,112,95,93,109,103,108,105,106,100,90,101,96,104,105,92,99,104,97,105,94,97,113,81,87,103,95,100,101,106,104,100,102,95,109,103,104,109,100,94,96,101,95,108,90,115,96,96,108,105,103,103,100,103,119,102,103,105,107,91,88,92,105,93,101,109,96,102,99,94,112,109,93,105,110,96,106,102,94,85,98,92,100,84,90,105,94,100,104,97,97,106,94,94,85,93,113,104,85,100,113,100,102,87,97,97,99,98,87,98,102,102,112,97,99,91,100,100,102,100,102,109,106,92,101,100,101,101,108,114,102,95,94,107,101,105,111,95,110,102,105,96,97,102,69,95,93,108,100,102,99,92,90,103,100,102,109,109,85,101,97,75,104,91,108,103,96,105,89,102,87,116,103,94,107,103,89,94,113,103,98,94,98,96,97,110,95,95,99,91,102,102,110,101,92,103,93,92,106,108,105,103,97,91,91,93,103,107,104,95,94,108,100,94,99,102,89,102,105,103,101,103,78,96,99,93,89,108,88,83,105,111,80,98,109,95,97,101,98,96,95,101,81,102,105,86,108,105,93,98,98,106,100,97,75,91,106,110,78,94,126,97,105,96,106,105,96,107,95,102,118,118,100,81,91,94,85,103,101,111,96,97,104,111,102,98,90,112,88,123,105,91,97,97,105,89,104,96,92,110,99,104,91,105,108,104,97,90,102,98,102,107,95,94,110,95,103,102,98,105,99,104,111,102,92,96,87,109,106,108,102,92,100,92,108,92,94,97,97,96,95,101,107,93,93,101,96,105,103,107,98,102,102,119,98,97,107,98,103,112,101,96,98,105,107,98,103,100,95,111,70,90,94,109,98,111,99,102,105,107,106,105,94,107,102,103,99,84,109,83,106,97,99,104,95,77,91,108,95,102,94,101,104,91,109,106,115,101,99,101,108,106,104,112,102,87,90,85,99,87,91,105,95,106,102,108,97,97,103,100,99,95,94,117,87,108,103,96,105,106,91,97,111,99,115,96,100,95,106,105,124,109,98,93,84,104,100,119,106,98,78,103,99,107,108,98,97,101,110,90,98,85,89,89,98,80,110,97,108,86,106,106,94,92,99,100,106,95,105,106,106,103,97,94,90,101,94,88,113,109,102,89,103,101,99,104,111,90,102,80,101,109,103,102,117,95,107,93,99,104,100,99,88,95,105,102,97,102,104,96,111,109,98,98,95,76,97,91,100,93,97,106,102,112,98,100,113,93,94,94,95,92,94,98,100,93,93,114,102,106,97,94,90,108,100,102,102,91,97,95,97,113,99,102,88,90,91,104,105,104,106,94,98,108,100,105,94,104,98,90,102,105,105,106,99,97,95,102,98,92,117,100,98,109,109,90,102,106,73,90,100,105,96,97,108,96,96,99,89,99,73,102,92,112,109,100,109,106,92,100,95,95,98,111,110,105,103,95,96,103,90,99,97,101,110,91,99,108,91,97,105,103,98,102,111,95,96,91,99,94,100,66,102,108,113,98,104,95,92,98,103,95,101,100,99,101,96,104,84,90,107,97,97,97,84,98,108,106,102,97,99,96,98,95,99,99,108,103,95,101,96,96,103,104,97,108,94,106,102,89,97,100,98,101,93,113,93,93,91,107,85,101,97,104,105,104,95,103,95,90,104,105,99,91,105,101,95,93,92,84,96,104,101,114,93,71,101,99,97,105,92,98,101,108,107,96,90,95,94,78,88,97,97,96,97,94,103,101,93,111,111,97,98,106,98,106,91,91,97,94,93,91,96,98,110,95,92,107,98,94,104,106,90,107,91,120,91,95,98,94,96,95,102,99,102,99,113,96,103,112,109,105,103,106,105,101,100,105,102,94,101,106,94,100,111,102,104,99,107,90,105,101,82,97,108,95,92,89,103,89,104,90,101,99,97,96,91,110,108,95,95,102,106,95,93,112,109,101,88,102,106, +713.41467,98,105,102,100,93,87,89,105,88,99,105,79,106,98,117,95,105,99,86,93,94,97,97,103,98,86,96,91,121,103,99,96,92,98,105,97,83,94,95,96,106,98,107,98,91,81,108,96,97,111,93,95,95,107,100,97,92,103,106,75,92,98,115,83,111,117,88,94,95,97,108,112,118,106,100,120,99,99,97,104,74,94,98,97,95,100,91,100,98,97,95,105,108,115,91,92,110,93,91,102,103,98,84,120,108,96,95,93,95,91,95,108,107,127,105,98,99,91,100,94,105,100,101,107,89,91,103,103,106,102,89,104,96,104,101,107,64,95,104,96,98,99,102,91,96,91,103,110,91,96,105,90,105,97,95,99,101,105,106,96,97,86,95,87,97,104,98,83,104,69,67,89,95,106,103,102,103,95,101,105,93,100,95,103,101,93,97,91,104,101,100,104,86,102,104,98,97,101,105,99,100,105,102,99,100,110,109,90,91,103,89,101,98,94,102,99,74,99,91,93,87,100,99,94,102,111,90,90,103,99,98,97,94,109,90,89,97,106,94,89,96,101,114,93,91,108,103,97,103,102,105,98,102,97,96,98,97,103,91,97,90,95,86,97,91,99,96,103,97,88,106,93,100,94,101,80,115,109,96,93,87,106,95,93,95,96,93,117,93,117,89,101,93,99,96,99,96,98,105,97,96,115,97,106,83,97,91,92,89,103,92,105,94,101,101,93,98,94,95,82,84,105,104,99,94,109,94,102,101,111,110,96,104,109,103,89,94,87,96,100,107,91,105,95,104,98,94,103,90,91,100,100,92,103,99,108,105,102,92,94,100,103,103,101,93,100,93,92,98,94,99,102,103,94,95,93,96,102,110,103,102,97,96,103,93,99,89,88,102,100,99,78,104,97,94,94,97,91,94,95,82,94,87,99,102,98,104,99,99,87,96,94,104,96,67,83,99,102,110,102,95,104,99,75,100,92,92,108,99,106,87,86,110,93,94,97,101,88,88,102,98,99,105,107,96,97,98,98,95,105,83,103,96,105,101,92,96,117,101,92,102,77,101,109,96,118,101,97,95,94,89,105,96,102,91,97,93,103,112,100,84,101,102,100,100,126,105,96,92,88,105,103,85,95,88,104,91,112,104,94,105,99,93,107,90,99,94,103,110,98,99,92,103,96,93,94,90,125,106,89,88,101,109,99,95,99,117,102,95,110,101,101,88,94,98,111,95,101,103,107,110,91,96,102,100,102,102,99,89,95,102,107,95,96,92,101,77,100,109,91,94,102,98,101,88,98,91,104,101,92,90,90,90,98,99,93,85,89,108,90,118,108,87,94,96,96,94,99,94,112,99,95,95,100,100,104,126,91,102,99,97,102,100,112,94,101,95,91,104,108,112,89,113,100,109,98,106,92,100,105,98,90,100,104,96,104,97,96,105,93,101,96,96,104,78,100,92,109,115,105,94,102,98,106,116,77,98,99,102,101,97,102,101,99,83,97,94,90,95,97,106,108,90,101,93,95,73,90,110,90,91,101,96,87,102,99,111,86,87,109,102,104,100,99,97,90,98,97,84,107,99,108,101,102,89,106,109,93,110,103,86,94,94,93,93,99,101,101,97,99,101,93,107,92,98,98,103,98,102,99,101,89,111,117,94,91,90,102,106,99,100,93,106,91,97,99,93,91,118,105,105,91,98,92,89,105,92,97,91,109,100,105,104,108,81,104,102,95,92,103,95,103,88,97,84,89,97,105,72,102,97,101,111,91,98,96,97,101,105,93,96,97,109,103,104,115,88,113,97,88,108,100,97,109,105,99,98,99,100,117,98,96,103,105,100,103,108,114,98,100,99,106,104,98,101,96,104,105,93,103,87,105,104,100,99,103,105,112,106,97,108,98,96,96,98,93,91,100,113,100,90,96,88,104,100,102,97,104,97,96,91,98,86,97,98,103,101,99,95,106,109,83,98,98,96,99,97,102,102,94,105,97,96,91,101,101,105,103,96,101,99,97,114,95,108,102,95,77,80,115,89,99,90,102,106,96,106,104,86,101,106,111,99,106,108,104,96,102,107,82,88,103,104,105,116,103,93,95,97,79,106,98,113,92,106,111,93,89,99,88,90,95,109,111,82,106,92,100,95,109,106,99,98,99,89,90,100,94,86,102,94,93,117,97,97,91,98,105,105,95,106,106,94,92,84,93,95,104,90,95,88,95,101,98,87,98,101,90,91,93,96,94,107,90,102,86,79,107,104,101,102,79,102,102,99,97,104,100,91,99,112,99,98,96,106,104,99,99,108,106,86,112,98,103,100,97,104,98,97,96,110,104,113,88,97,108,103,101,89,110,103,101,108,100,93,92,97,101,95,115,98,66,105,101,93,101,91,109,92,93,101,111,103,92,83,115,100,109,95,100,94,110,110,104,94,87,90,95,95,96,99,99,101,99,93,78,88,104,100,98,90,96,87,105,92,98,97,87,111,95,119,96,102,98,98,100,105,99,98,95,99,98,77,88,103,100,99,86,98,99,99,114,86,108,108,92,91,98,90,106,107,88,86,94,97,106,113,108,99,93,92,102,105,104,93,110,96,91,107,91,102,112,99,94,100,64,86,104,117,95,108,95,98,93,102,82,104,100,100,92,99,93,92,100,83,108,102,100,105,88,100,99,102,91,95,104,101,101,89,98,82,102,104,101,99,95,101,95,82,92,100,102,112,97,94,99,100,91,120,100,98,96,108,94,101,99,106,97,100,103,109,93,90,91,93,105,104,114,90,91,102,99,92,90,89,90,98,96,103,104,96,105,105,97,94,92,110,92,98,97,102,98,96,88,93,101,106,91,94,93,94,97,98,96,91,101,76,111,101,103,106,100,97,99,108,91,84,104,99,106,103,107,103,108,95,103,95,106,108,116,112,92,109,91,102,98,95,104,93,95,99,104,90,95,97,110,108,88,95,104,106,88,101,100,92,101,103,102,103,98,100,104,104,100,103,94,108,101,93,96,96,108,102,92,109,110,90,99,100,104,95,101,101,89,120,102,96,101,99,100,104,105,101,89,98,102,102,90,107,96,102,69,103,99,85,97,100,106,108,96,101,91,110,93,96,95,96,96,102,102,108,92,111,95,102,106,95,106,102,102,108,102,104,96,103,101,99,110,96,119,100,114,111,92,102,113,95,104,91,105,101,98,105,107,97,98,104,100,104,96,87,99,97,98,98,97,106,97,123,101,91,106,118,88,95,93,95,87,96,94,97,106,90,101,102,95,100,101,82,97,108,112,94,107,98,102,99,105,92,103,104,82,93,89,90,101,105,72,99,98,92,93,102,88,91,97,84,87,89,93,106,109,97,99,92,101,102,104,108,91,91,95,114,106,94,103,99,90,101,101,92,102,86,105,94,109,101,102,101,99,92,92,79,109,95,94,92,108,92,104,106,91,87,97,106,99,91,100,90,97,102,98,106,105,99,87,103,108,97,100,99,109,103,99,83,97,90,123,102,99,103,92,98,92,105,98,97,105,96,96,98,104,98,97,94,105,98,93,90,95,92,105,105,101,93,68,109,100,98,113,96,95,101,95,102,103,111,102,107,97,103,73,104,96,104,97,88,87,98,103,96,105,94,92,97,85,112,102,99,118,88,110,86,93,103,97,101,106,105,92,97,95,94,102,101,89,101,102,95,107,98,99,88,99,94,89,102,103,95,104,98,94,98,87,102,105,113,106,102,105,105,100,93,99,114,101,98,100,104,106,125,103,100,99,90,106,98,102,101,94,88,104,97,98,96,102,98,93,105,93,89,110,90,111,92,112,103,98,107,92,121,95,96,96,74,96,102,84,104,96,88,95,105,110,100,98,96,112,99,89,94,97,123,90,104,112,108,106,88,107,99,105,91,104,113,101,105,94,96,97,107,100,95,111,93,95,112,91,99,95,104,111,103,104,97,101,96,97,87,96,94,96,98,90,103,102,116,109,105,98,93,103,115,110,112,95,104,96,109,100,82,89,84,103,92,97,94,104,94,110,100,93,96,103,96,97,105,107,100,99,93,95,84,93,99,95,113,108,101,85,103,102,97,90,110,94,104,100,109,93,107,95,98,102,103,111,107,95,101,96,93,95,90,100,85,100,98,104,98,104,100,92,98,112,98,100,88,124,91,99,105,93,91,94,91,107,92,99,96,101,106,101,89,111,96,94,88,108,101,101,94,98,89,105,99,98,104,100,98,100,85,90,108,108,106,90,111,111,96,91,110,97,99,100,106,95,100,84,94,104,105,94,106,100,93,98,104,92,97,93,88,90,101,101,105,102,93,94,98,104,101,97,99,95,98,104,101,87,98,94,98,87,97,96,101,86,92,99,109,107,114,112,97,92,88,103,103,107,102,101,96,88,95,106,100,95,103,101,93,97,98,92,85,91,93,105,89,104,97,90,110,105,109,100,92,87,99,90,91,99,103,99,112,110,91,96,109,91,108,105,104,93,99,105,100,95,95,104,93,89,92,99,88,93,110,90,106,103,98,93,103,100,87,111,87,100,111,114,98,100,104,105,98,105,103,94,101,107,99,98,115,94,108,121,100,95,122,89,95,102,107,98,104,97,103,99,93,109,99,103,99,101,97,103,95,111,108,90,96,97,106,104,102,93,99,92,107,102,108,94,105,91,107,91,105,91,102,98,94,87,92,115,110,102,86,92,93,92,106,87,93,104,106,99,89,100,108,99,109,95,98,103,95,113,100,92,94,93,98,93,103,98,95,96,96,98,90,101,98,75,102,97,94,99,96,95,100,102,99,104,100,105,95,106,99,95,94,79,97,87,108,106,110,93,79,94,102,92,97,102,116,119,96,110,104,100,88,95,106,91,98,107,97,114,91,90,92,112,98,94,100,102,101,107,99,103,103,101,91,91, +713.55603,82,97,95,99,102,89,93,109,97,108,81,92,59,91,110,85,83,108,109,104,109,96,104,69,97,108,106,104,107,95,97,99,94,99,99,97,99,94,88,99,106,85,91,95,99,117,93,97,102,102,99,108,99,91,91,99,86,99,110,88,106,88,118,102,95,117,89,104,103,100,101,97,85,95,102,101,93,92,112,98,95,104,92,104,99,98,104,98,96,95,102,103,93,103,105,101,101,100,108,103,89,99,93,108,98,91,88,94,107,106,93,103,103,92,97,106,102,118,129,100,113,96,98,104,86,98,103,92,128,103,100,104,90,112,101,82,96,91,77,100,95,101,97,98,112,108,83,101,98,86,90,88,100,94,87,108,102,103,104,96,96,100,91,93,102,105,96,118,102,101,102,98,87,87,105,95,95,102,97,106,99,106,89,106,105,95,87,102,107,92,95,112,109,91,108,106,108,114,102,88,100,96,92,107,126,93,99,99,99,118,106,108,92,90,103,99,113,105,95,111,95,97,111,91,101,102,103,103,57,98,96,88,98,95,108,102,101,92,98,107,103,94,106,97,105,97,106,105,100,95,100,94,105,99,93,104,94,108,98,98,93,106,106,101,106,95,111,94,99,94,114,101,100,90,104,90,106,97,97,98,102,111,98,110,104,95,101,103,98,96,93,105,100,94,105,94,80,71,95,102,100,105,83,103,100,105,107,98,97,113,99,103,90,95,101,96,99,98,72,101,96,97,103,96,94,97,98,89,109,104,95,99,94,101,91,87,96,100,90,96,100,103,81,94,96,95,105,99,94,110,96,94,99,100,101,99,100,94,98,98,90,99,102,104,98,90,97,95,80,97,115,94,100,101,90,83,97,111,97,116,98,102,100,104,95,82,93,91,103,90,101,68,95,101,104,95,90,98,101,99,96,83,90,103,98,90,87,96,92,100,89,93,99,101,92,100,97,105,105,88,107,102,101,107,100,95,92,96,88,95,107,102,104,106,103,88,96,100,94,90,101,109,101,102,87,106,100,92,100,97,89,95,96,92,100,89,108,100,98,104,98,91,101,102,99,97,107,108,102,102,98,104,97,89,95,100,97,109,102,114,91,110,106,86,95,88,70,100,101,82,97,102,95,100,92,100,98,91,113,101,100,94,96,103,120,100,91,98,102,94,100,94,104,93,95,85,102,107,94,97,98,109,105,92,106,91,105,105,86,112,95,97,99,95,101,100,105,92,99,108,106,115,129,93,99,91,105,93,103,108,96,102,94,95,96,98,114,91,92,102,94,97,92,95,110,97,101,109,85,102,93,107,98,95,102,110,96,93,95,89,84,108,95,98,101,92,95,90,94,97,99,96,104,96,104,108,102,99,102,94,89,99,105,98,83,100,96,91,106,104,96,77,98,129,110,104,95,102,86,110,94,104,116,92,94,94,99,105,98,99,111,103,98,97,95,106,90,89,102,96,102,94,97,105,92,100,97,89,93,101,90,111,106,106,90,107,94,101,102,99,104,111,117,103,83,88,91,82,104,98,105,93,101,100,97,109,110,90,109,91,98,88,101,106,98,97,100,92,110,88,97,101,101,100,95,93,98,105,97,79,100,96,106,93,92,97,100,102,102,97,98,101,96,83,107,98,99,99,116,97,105,90,97,97,99,88,115,101,107,106,104,125,99,94,98,99,90,99,96,97,109,96,93,101,96,90,99,104,93,95,101,96,95,110,108,93,94,99,101,95,98,103,90,97,87,106,117,97,98,104,98,97,103,102,101,106,99,101,94,97,101,100,81,92,107,83,103,103,92,105,112,99,100,107,108,98,98,108,97,93,94,98,99,96,99,99,83,96,91,95,105,99,92,90,97,93,95,113,115,88,102,98,106,94,100,100,99,97,104,101,96,87,92,96,97,98,96,92,88,99,101,106,95,101,106,99,102,98,109,90,98,106,101,108,91,98,108,99,99,88,90,110,83,104,104,87,77,98,101,130,98,84,101,99,100,102,70,91,109,80,102,109,95,89,110,101,104,110,102,108,94,105,102,104,96,93,103,107,92,109,101,105,96,92,103,95,100,104,100,90,101,106,96,99,79,97,87,96,101,91,97,105,106,119,105,103,84,102,115,73,94,109,93,100,96,79,97,90,93,97,105,105,101,105,71,103,100,92,87,96,75,72,91,103,92,109,95,95,90,102,109,97,101,105,95,106,79,109,98,100,95,102,86,106,90,109,94,85,93,108,99,95,101,98,113,91,90,107,90,100,100,91,100,100,101,82,84,105,101,101,103,91,92,100,98,100,107,91,90,78,98,105,98,94,99,91,93,76,102,83,94,105,104,99,103,91,94,102,96,87,97,107,86,90,105,92,98,103,89,104,94,99,101,92,105,95,93,91,90,112,108,101,74,91,87,104,90,107,113,86,95,109,101,106,100,97,100,95,92,99,105,102,87,97,87,106,105,122,96,101,108,103,90,92,112,103,101,96,106,98,98,93,116,102,101,117,99,90,99,105,110,92,105,95,89,109,91,107,107,95,97,102,94,101,99,101,102,90,94,105,95,101,107,97,103,96,103,96,109,105,98,106,96,87,101,100,100,94,108,81,94,108,96,78,99,109,102,96,102,97,106,89,106,92,95,112,111,97,87,105,107,83,83,92,93,102,94,87,110,98,98,103,108,95,98,95,104,91,101,109,105,90,98,99,110,97,103,90,95,94,109,103,98,95,92,102,100,91,109,94,105,85,104,95,95,110,115,102,96,103,92,113,93,103,99,82,100,104,113,104,111,113,99,87,103,102,93,85,99,101,97,102,99,92,99,100,102,94,84,108,113,110,84,98,94,96,91,109,116,110,102,99,97,106,95,95,105,103,97,88,108,94,89,103,102,92,94,109,98,111,96,98,103,110,104,86,108,113,92,99,87,104,93,112,91,97,96,100,103,87,95,106,57,95,91,106,99,93,105,104,98,97,99,96,100,86,104,103,113,98,97,102,101,99,103,107,79,105,101,105,105,111,87,103,110,94,105,99,99,109,98,82,103,86,95,101,99,93,91,90,108,99,103,99,91,95,97,92,113,96,60,99,99,98,97,103,100,104,106,90,96,95,108,101,96,104,96,91,91,108,98,100,100,106,100,93,97,110,106,89,101,102,96,93,108,91,106,106,95,99,97,101,97,93,109,90,105,103,103,90,110,102,96,99,100,97,108,96,85,99,93,75,95,85,110,105,110,103,99,95,98,96,99,94,92,98,100,106,111,95,101,82,105,102,88,98,104,107,101,102,97,97,95,100,92,104,91,102,107,104,93,92,105,97,91,109,101,59,98,99,105,94,96,111,115,89,84,89,111,89,105,103,86,94,113,105,109,96,103,102,95,101,93,102,98,98,104,93,99,99,90,104,87,113,89,94,91,105,98,111,100,101,102,96,109,102,95,95,99,98,103,103,94,102,96,102,97,100,93,70,91,90,84,94,87,99,98,98,103,95,101,81,96,89,102,106,108,84,101,91,104,89,84,106,93,103,90,102,92,101,108,101,86,110,97,103,110,98,114,101,90,103,107,101,108,93,98,96,103,99,99,98,95,104,102,106,101,101,101,102,91,98,94,104,110,104,98,106,105,100,95,106,105,103,113,100,103,91,97,99,104,92,100,77,108,105,99,109,104,98,93,99,100,107,94,88,96,93,91,92,98,110,111,103,101,101,102,67,115,111,110,97,105,113,96,97,94,100,88,99,109,87,102,106,105,108,90,94,94,97,102,109,85,87,87,96,115,100,107,93,70,94,93,95,87,99,97,91,104,106,108,106,91,101,99,94,98,110,101,111,97,95,100,111,108,89,90,95,105,109,87,104,95,104,102,95,104,99,103,95,104,102,87,95,96,111,93,105,111,113,99,90,103,96,95,98,100,104,100,84,94,100,92,96,98,108,101,92,108,89,110,97,88,104,93,103,94,92,103,105,95,108,101,100,98,99,96,92,103,100,83,107,94,109,95,103,94,96,100,107,100,98,101,99,99,93,97,100,94,102,106,104,88,98,103,93,94,106,89,95,94,93,77,114,94,97,113,95,106,92,98,92,95,106,89,98,109,107,97,92,95,101,103,105,87,100,93,118,94,104,105,100,101,101,109,101,103,93,98,94,99,91,89,102,99,98,107,104,90,92,91,98,91,105,99,103,96,102,90,99,84,103,103,103,101,99,104,98,108,98,109,98,91,85,96,97,99,98,97,99,96,98,100,108,82,114,101,102,99,99,90,107,105,92,107,100,92,97,101,107,93,84,102,113,93,102,98,89,97,96,96,95,94,102,81,105,105,103,91,111,100,98,104,101,84,96,91,91,109,107,98,97,115,97,108,91,92,103,97,106,104,107,103,100,91,105,106,92,99,96,106,100,107,109,98,93,93,109,95,89,80,97,101,126,104,106,86,110,100,97,112,103,98,97,104,94,93,108,102,103,113,93,98,98,97,92,103,96,101,99,89,91,101,86,95,103,100,87,101,91,119,90,112,88,92,113,97,100,100,88,92,89,94,109,93,92,92,99,112,90,111,103,96,93,103,84,96,102,101,95,92,107,101,92,107,107,90,98,117,86,109,97,97,103,94,104,103,104,96,99,93,89,107,104,98,100,99,121,104,109,101,103,102,91,94,94,108,108,111,94,95,92,108,98,94,78,86,106,101,90,113,92,99,98,111,83,98,105,92,97,99,100,106,105,98,98,106,95,85,93,95,98,98,92,103,104,86,89,94,99,100,97,109,106,93,99,88,106,107,100,99,91,84,110,93,117,103,105,93,96,96,89,107,91,106,103,92,80,100,94,94,77,101,85,101,96,93,107,97,88,105,101,91,98,98,93,99,85,105,87,97,98,109,96,110,80,92,106,88,95,93,101,95,98,123,101,106,86,100,110, +713.69745,109,110,88,99,94,113,102,88,103,102,87,106,105,91,111,92,96,103,85,103,102,110,108,100,101,102,100,104,112,90,82,101,101,98,110,108,113,99,113,110,94,99,98,105,100,109,90,110,100,98,115,96,88,101,102,95,100,95,106,101,92,117,98,93,104,98,94,109,104,96,99,94,112,101,102,106,89,104,111,97,102,92,106,93,98,94,104,80,109,83,99,95,86,109,106,92,106,119,102,101,90,97,90,99,99,92,97,112,101,97,106,106,105,104,99,102,94,104,104,99,96,106,110,107,109,102,95,100,107,103,113,101,88,103,83,89,99,99,96,114,102,90,92,91,111,102,115,96,72,91,102,108,97,87,106,99,89,97,91,108,105,84,111,114,101,90,101,92,100,101,92,96,101,93,100,105,112,82,98,98,94,84,107,112,94,94,90,83,86,104,99,99,120,109,105,97,107,92,107,99,94,98,108,108,88,98,94,99,110,90,89,108,101,94,97,94,88,98,87,91,118,105,91,81,99,99,110,97,86,93,86,99,105,98,90,97,105,100,90,104,95,98,113,104,93,80,115,99,106,109,97,92,87,98,99,107,99,95,97,104,98,100,100,106,95,99,109,102,95,100,111,90,105,101,107,97,106,106,95,82,99,102,106,105,80,97,99,110,106,103,97,108,98,94,104,104,104,110,100,102,98,93,91,108,94,106,101,97,113,93,97,101,92,98,108,92,108,102,95,96,114,111,100,94,98,102,104,91,84,99,101,99,105,103,102,103,109,93,103,97,94,108,107,98,95,94,97,106,106,104,100,96,104,104,98,102,98,101,96,91,94,93,109,113,95,96,99,111,87,91,100,104,105,84,105,96,106,110,99,95,113,101,101,92,96,102,103,104,104,92,95,95,95,101,93,97,97,106,104,96,99,107,97,92,91,90,97,94,96,99,89,92,97,90,102,103,135,96,103,100,102,100,101,95,92,98,99,87,102,101,90,90,80,100,87,107,87,113,85,103,105,104,95,88,98,92,94,94,99,98,103,95,95,106,103,98,99,100,107,90,101,98,113,104,95,94,114,104,98,99,119,106,98,100,98,110,108,104,95,97,98,100,106,98,106,91,95,96,94,105,91,114,107,94,90,99,94,113,98,93,103,96,94,109,107,102,97,103,95,131,109,95,90,97,101,102,100,100,102,88,93,79,124,103,89,96,91,107,105,68,94,109,100,100,97,99,98,97,105,110,100,108,97,92,97,98,87,86,107,103,106,95,102,104,105,101,100,115,102,92,107,89,110,100,92,94,102,96,93,106,96,97,96,99,101,97,98,97,92,98,99,96,91,91,101,103,98,101,106,101,81,100,99,98,87,103,98,98,113,101,102,91,109,100,100,107,100,96,104,97,88,95,99,95,104,98,101,94,101,102,93,100,97,101,101,87,93,103,94,114,97,99,100,100,96,100,86,97,115,90,108,98,106,109,96,88,95,102,104,92,98,103,106,108,106,100,98,91,93,112,106,97,96,94,93,96,96,114,98,107,94,98,99,102,92,90,101,90,101,100,101,96,106,96,93,94,108,99,96,106,83,92,97,109,92,106,97,101,106,92,87,100,100,98,93,108,112,104,95,104,101,105,91,93,96,95,90,101,97,94,94,90,96,106,96,93,94,101,107,99,115,107,96,91,110,101,101,101,107,100,104,96,105,95,86,89,115,96,100,104,107,96,100,108,98,103,96,107,100,91,88,108,91,113,96,96,111,100,101,91,103,100,89,95,101,96,101,93,116,83,95,110,109,115,122,103,102,95,87,110,115,106,101,102,103,96,87,105,100,109,109,102,91,106,111,95,97,103,99,97,119,105,90,113,104,95,110,103,90,95,104,101,97,87,98,93,99,91,109,90,101,100,106,101,98,108,99,96,102,111,92,106,98,106,93,110,94,100,99,94,94,88,101,101,99,93,93,106,107,98,97,87,94,93,108,99,102,109,103,104,101,106,94,109,108,91,106,105,92,99,86,83,84,112,95,94,101,117,100,94,101,109,94,96,112,97,102,103,89,98,94,96,108,99,129,88,95,95,99,98,101,106,107,107,98,105,99,104,95,94,105,95,97,96,110,96,82,107,114,71,103,106,110,84,86,91,99,99,101,90,95,100,84,82,88,95,110,101,97,97,101,99,105,101,108,93,109,96,87,107,100,109,101,101,100,103,93,96,105,107,101,92,109,89,99,100,97,106,100,89,115,96,90,99,97,91,95,87,93,88,88,104,103,106,86,104,105,67,82,102,106,103,92,102,109,96,97,100,93,106,90,89,75,101,105,101,59,93,105,101,120,105,96,92,95,106,98,98,104,113,106,95,105,103,102,97,106,98,93,105,99,117,92,95,93,101,108,91,101,102,99,104,100,86,95,90,99,97,105,92,88,109,114,94,101,90,96,106,95,105,109,105,104,101,92,105,99,107,101,102,92,111,94,97,85,98,93,110,115,94,98,83,85,103,97,110,95,100,116,87,88,95,99,113,98,104,103,103,96,98,114,104,101,106,100,98,99,102,92,99,73,100,108,103,92,95,109,95,104,104,97,119,112,96,98,101,98,102,97,63,104,99,97,106,88,87,90,90,101,102,101,108,97,99,90,101,99,100,83,105,100,90,101,88,112,115,105,93,94,92,104,100,111,98,107,103,77,94,89,106,97,98,70,109,104,102,99,106,90,97,89,103,87,82,101,97,100,85,102,94,97,106,105,100,106,93,100,100,109,90,93,110,105,105,100,108,101,102,85,106,101,98,128,94,97,107,96,99,92,108,104,110,90,91,104,104,115,98,93,105,99,105,112,97,108,98,101,109,104,109,112,110,103,102,98,88,100,94,99,114,111,102,108,98,112,93,94,98,98,98,107,94,99,100,98,91,100,101,110,101,93,78,102,95,96,97,101,91,103,117,96,100,93,87,99,102,106,74,99,103,116,105,103,104,105,91,110,104,98,95,101,95,94,107,107,113,90,89,106,94,99,92,92,98,87,94,102,102,109,97,102,95,94,106,101,91,92,99,97,95,108,103,98,98,104,92,89,96,105,101,90,109,111,102,97,97,105,97,98,84,100,105,112,94,97,97,87,98,83,100,106,106,100,104,95,96,95,94,94,89,89,102,113,83,117,98,104,88,101,100,83,85,99,95,104,93,102,94,98,105,104,96,95,84,97,102,100,99,81,96,95,96,96,113,100,94,97,107,100,98,122,99,98,92,99,90,87,97,109,103,89,91,93,115,92,92,96,103,93,94,94,111,96,86,99,98,100,106,99,94,101,100,96,98,93,91,104,98,96,93,104,95,94,102,100,92,100,100,94,98,94,106,96,92,85,102,102,94,98,114,88,102,102,96,98,98,95,96,106,98,105,99,93,99,95,100,98,91,99,91,90,95,100,88,100,102,94,98,100,93,95,98,88,96,101,88,95,108,106,84,101,95,97,102,94,102,105,96,97,100,101,126,102,91,93,104,101,101,112,83,99,101,99,112,95,111,99,94,96,112,106,110,96,103,90,94,102,104,104,104,99,95,93,92,95,112,109,108,100,103,103,98,96,99,114,85,95,100,91,96,104,99,94,105,88,100,108,103,109,95,101,102,91,97,94,87,102,101,106,100,101,92,104,99,100,102,97,94,83,104,67,98,98,103,88,99,105,86,80,101,99,103,91,100,69,105,93,95,108,90,100,111,91,112,92,93,106,100,90,90,99,89,114,96,99,109,100,104,104,98,102,88,104,91,91,98,97,103,98,90,102,92,95,104,85,109,108,99,103,101,97,92,98,99,117,91,126,102,97,85,91,98,106,83,90,98,90,95,100,95,98,102,99,79,94,98,110,95,95,107,90,94,92,88,106,93,92,79,95,102,100,101,82,87,91,103,95,93,103,95,100,107,99,109,100,96,114,87,109,96,94,90,103,97,109,98,103,92,105,119,102,100,93,97,88,98,91,105,102,96,111,94,96,100,102,86,96,101,89,73,89,87,84,99,109,109,93,128,97,94,99,94,93,98,109,93,96,91,96,90,97,104,100,93,110,106,95,103,104,100,100,97,106,100,84,107,99,100,99,104,104,95,105,109,95,106,101,84,95,109,101,91,102,88,108,114,96,104,95,112,108,84,98,97,95,88,90,112,112,97,94,99,103,72,105,102,102,104,98,92,99,94,98,96,100,100,93,83,104,91,96,103,98,108,110,91,95,101,93,103,90,97,99,94,94,113,95,113,109,94,102,100,101,105,90,93,96,110,96,101,97,93,94,115,92,92,109,99,91,88,101,99,103,99,103,95,95,100,90,99,104,98,99,95,97,98,95,106,92,94,113,100,101,99,98,99,102,99,98,96,95,108,101,100,107,99,90,102,106,101,98,104,96,66,93,90,91,98,94,100,92,100,100,101,97,110,92,96,102,106,106,100,100,103,109,99,94,99,87,103,114,95,104,120,99,97,98,99,97,105,103,100,93,109,100,91,90,113,98,105,88,102,94,99,112,91,127,99,92,90,88,97,94,107,95,94,103,99,100,90,95,99,100,94,100,95,91,112,91,105,114,102,97,100,115,98,78,93,102,69,113,101,101,95,111,108,105,100,98,105,91,99,109,111,85,105,103,109,106,101,98,98,99,104,108,94,103,107,108,92,105,96,113,100,102,81,112,92,101,77,90,92,98,94,94,100,107,90,95,95,103,100,103,109,113,89,110,117,91,87,105,103,102,109,103,99,100,87,100,90,99,101,91,110,106,98,109,102,116,101,97,100,103,82,101,91,105,100,100,99,99,83,91,108,90,89,90,98,116,104,100,109,87,108,94,107,99,92,110,104,108,97,86,94,105,98,92,95,106,96,118,100,87,94,100,110,91,99,89,94,108,94,102,96,101,76,117,83,91,86, +713.83881,102,97,96,105,90,96,101,96,96,93,89,95,120,105,103,101,115,106,104,98,96,94,103,96,96,95,98,95,95,99,96,101,91,87,112,105,93,87,90,100,93,99,103,105,96,117,105,104,98,90,97,99,104,100,95,104,98,89,98,106,93,118,101,103,100,100,93,98,95,93,104,107,88,113,102,101,119,113,107,97,104,103,111,110,99,94,99,106,102,87,103,93,109,100,88,104,108,114,105,105,108,129,101,102,105,104,93,98,100,83,101,100,109,101,100,94,91,95,89,102,88,115,102,110,73,110,100,70,102,104,98,75,110,98,107,99,106,97,87,102,104,101,85,93,102,103,104,105,101,99,98,105,102,95,96,99,103,97,111,93,99,109,112,92,99,97,106,110,110,95,102,106,112,96,108,113,95,98,108,90,112,94,112,94,109,88,96,91,99,109,89,102,68,105,95,99,102,102,87,110,101,103,101,107,114,100,108,101,108,105,95,91,94,102,92,100,100,93,100,100,103,108,105,100,99,101,104,93,108,101,109,97,99,104,99,109,107,93,98,99,93,110,105,97,104,100,102,103,97,125,98,98,91,72,91,94,105,110,91,114,129,126,106,77,103,108,101,62,104,82,105,84,98,114,106,103,102,97,100,86,103,119,94,97,95,104,92,108,102,110,107,101,93,106,117,94,103,120,92,106,95,111,93,108,99,104,96,107,108,116,81,113,98,104,109,91,128,102,86,99,105,99,119,101,94,97,90,99,80,98,108,104,91,96,96,101,106,86,105,106,101,111,99,86,98,100,88,91,102,106,107,102,103,95,105,100,101,99,102,97,98,96,89,94,90,102,112,116,98,104,104,102,102,96,95,104,76,87,99,110,91,99,94,98,92,94,103,99,68,90,96,90,96,108,98,97,107,94,100,103,106,96,95,99,95,94,108,99,93,95,96,96,101,100,102,98,104,89,112,107,91,98,103,88,90,95,110,102,110,111,99,90,103,102,101,102,101,106,109,103,96,104,104,114,100,90,95,97,101,97,97,100,114,103,102,100,110,101,107,87,89,107,103,98,112,104,103,91,86,85,102,97,104,105,100,107,96,84,99,105,116,109,114,98,103,102,111,113,109,101,99,102,132,93,85,98,78,85,101,93,102,98,103,108,98,107,96,91,101,98,98,86,101,99,92,104,106,99,106,88,110,107,95,102,105,100,113,104,87,103,91,108,99,103,96,118,96,110,112,111,88,100,100,104,112,95,108,109,104,98,105,97,102,104,102,100,102,100,101,114,93,104,103,100,103,101,109,100,95,90,92,84,90,92,95,95,81,92,107,96,106,79,108,95,100,102,96,95,90,127,121,113,99,109,105,106,111,103,95,109,105,108,92,94,100,94,107,96,98,94,100,88,103,84,106,99,105,86,99,98,119,93,99,102,99,101,105,96,106,103,105,96,102,111,99,102,97,99,93,99,94,98,100,95,103,117,96,101,97,101,98,101,99,105,106,95,106,112,103,95,103,100,96,103,104,99,95,106,106,106,115,101,97,103,92,92,97,102,101,96,107,97,100,102,71,101,99,94,98,99,104,104,132,110,104,101,99,108,101,92,94,109,106,103,97,105,102,82,97,73,101,99,102,105,104,93,91,101,91,92,96,90,105,104,107,90,112,96,109,109,114,103,100,87,106,103,99,93,98,108,97,95,100,108,101,99,108,103,100,99,112,87,91,117,107,100,64,95,89,96,98,95,97,96,91,98,109,101,75,90,113,97,117,109,95,102,96,108,98,121,104,97,103,86,97,104,103,96,98,100,102,100,107,100,102,110,103,94,88,104,87,98,96,91,105,105,104,106,96,100,99,96,103,103,96,99,107,111,93,97,98,115,113,115,97,106,96,96,102,80,98,100,95,102,96,130,102,87,103,97,97,98,104,97,87,104,77,86,104,98,94,106,95,102,112,93,86,104,101,105,90,113,100,95,95,101,104,95,92,106,91,93,101,97,93,87,107,97,101,89,110,108,113,100,93,101,90,74,110,103,102,104,98,99,101,104,95,104,102,84,104,116,109,110,99,100,94,90,102,90,103,106,98,108,95,103,96,108,75,109,96,104,121,91,97,99,103,106,87,97,89,112,104,110,101,109,91,99,100,105,95,104,104,104,95,104,111,87,85,107,120,117,120,92,99,120,109,87,91,103,100,115,83,95,100,113,101,104,99,102,88,102,99,105,97,100,109,100,101,110,92,111,105,81,92,89,87,113,107,103,114,107,102,111,105,102,94,104,103,96,101,93,103,95,97,101,104,96,91,97,78,100,91,115,101,96,93,106,103,111,114,107,99,104,100,95,102,102,87,84,97,85,105,97,97,90,106,103,92,98,95,100,104,94,92,93,108,93,99,91,75,88,103,103,92,99,99,112,103,102,95,100,108,90,114,124,102,96,99,97,96,109,104,108,100,107,103,113,106,93,103,97,90,94,96,96,92,102,118,109,95,96,100,94,99,106,103,105,103,96,104,101,108,74,99,101,107,96,93,95,97,106,101,108,99,107,90,70,91,96,99,109,97,89,92,101,107,90,108,103,101,87,90,92,112,106,109,102,94,95,109,105,108,93,89,96,98,98,97,108,102,92,111,71,88,98,97,97,99,94,97,105,97,94,81,106,105,98,109,102,109,113,94,99,102,89,114,103,96,108,97,89,95,104,98,114,112,91,99,87,108,101,114,96,98,113,99,95,100,101,109,99,98,108,95,96,104,110,106,101,98,100,99,96,107,101,94,101,108,98,116,105,107,103,109,105,103,107,103,108,108,106,96,106,103,106,105,102,106,98,104,88,109,99,98,109,111,105,92,91,107,104,97,98,111,103,101,109,96,83,99,102,104,94,114,98,94,100,102,116,102,93,105,98,105,101,100,112,106,108,100,98,88,94,119,111,110,113,111,95,103,94,109,95,100,98,111,92,105,110,83,112,100,105,87,100,98,119,97,79,100,105,101,100,105,101,106,97,105,100,96,93,103,97,102,90,99,120,99,92,106,89,92,93,100,92,107,103,107,95,102,108,104,88,99,104,96,97,97,109,100,101,104,98,84,97,106,90,94,98,98,99,107,100,90,107,102,95,87,95,94,102,82,102,98,99,100,98,102,95,96,95,99,92,95,88,95,102,101,95,92,89,96,104,112,91,104,108,108,94,98,98,89,105,94,91,91,110,96,92,103,103,85,83,105,88,92,104,99,116,95,94,96,93,109,101,105,94,105,108,92,89,112,101,109,109,110,105,93,95,107,110,103,102,98,102,99,103,100,90,115,100,105,105,102,94,101,95,90,96,92,105,98,101,105,100,81,92,93,98,90,104,101,102,109,99,93,135,111,106,101,108,107,98,91,105,103,99,104,85,109,98,98,98,103,98,99,92,103,83,98,108,98,91,120,91,100,89,116,106,105,93,106,102,98,103,99,95,96,98,99,100,105,112,92,100,93,106,61,92,111,98,79,100,76,106,113,100,97,112,99,108,94,102,96,101,96,102,101,100,103,100,98,87,91,92,106,108,102,92,93,101,105,100,87,104,98,98,100,108,120,98,99,109,94,103,100,115,105,98,89,94,112,117,99,80,114,101,108,102,92,102,107,105,97,74,112,100,92,100,102,101,110,98,72,85,101,105,98,110,102,96,91,108,98,106,82,107,108,90,105,103,94,101,96,99,106,94,105,100,99,91,96,100,89,104,106,105,104,100,90,102,98,102,93,91,94,98,102,108,102,101,92,94,122,105,94,91,96,99,109,89,92,110,95,100,81,91,109,77,90,111,100,107,92,94,105,92,100,94,93,100,86,117,103,91,97,95,101,108,96,106,107,88,90,96,71,89,116,100,102,97,99,96,103,106,91,96,93,94,100,105,101,98,100,101,94,90,87,105,94,87,93,98,83,91,92,90,102,96,102,88,105,88,95,108,93,109,104,97,96,80,92,102,101,84,102,97,93,121,92,112,101,93,91,82,98,90,91,109,88,91,103,100,99,95,92,95,99,86,96,98,94,110,100,95,90,110,100,107,98,99,87,87,114,91,100,69,98,101,98,95,92,80,97,97,96,92,88,102,106,92,101,97,95,103,80,111,89,95,89,101,97,105,101,97,96,95,100,102,95,95,94,87,99,86,93,113,93,86,92,99,79,97,100,99,110,98,108,92,100,123,96,97,100,103,121,99,91,106,107,105,84,99,98,104,100,87,97,96,102,99,96,83,92,98,99,88,116,96,94,100,100,93,98,105,102,100,103,97,112,109,106,94,96,87,90,85,84,95,97,96,110,86,106,96,100,107,111,104,103,95,106,108,89,105,107,102,104,105,98,101,98,103,91,88,105,112,101,91,103,112,108,109,100,116,71,89,104,94,101,89,93,108,87,102,107,104,104,84,96,95,100,100,103,106,97,103,113,96,99,111,90,104,103,90,91,94,91,93,81,100,87,121,92,97,104,102,111,97,88,98,93,121,89,107,76,96,93,92,97,94,94,93,94,94,99,83,99,100,91,96,87,100,95,105,90,93,103,102,82,111,94,103,97,105,98,91,95,92,101,93,127,97,94,98,98,99,93,86,97,92,93,107,105,101,105,87,97,100,92,111,107,95,87,94,89,94,99,93,101,101,107,92,105,89,98,90,101,101,100,106,125,98,93,101,106,105,99,86,97,97,92,102,98,91,109,100,102,93,103,117,103,105,105,87,103,93,98,100,92,87,102,106,93,124,101,88,102,96,102,99,77,91,99,95,100,95,105,95,93,99,96,99,99,97,100,93,92,110,109,103,109,72,94,96,90,107,90,101,94,87,88,84,100,86,80,97,88,108,116,92,58,97,91,92,96,88,104,95,104,89,85,91,96,93,101,94,110,93,107,100,104,116,102,131,102,96,101,117, +713.98016,108,99,92,108,105,103,96,90,101,109,91,108,104,97,109,105,103,104,84,103,110,96,96,110,107,95,112,104,92,96,109,98,92,91,102,96,101,96,105,94,111,94,100,104,104,98,88,98,102,85,86,100,105,91,95,96,102,125,96,85,91,98,71,100,98,113,103,102,97,85,101,98,100,99,95,105,103,96,98,104,96,105,98,97,89,101,90,97,89,97,95,90,99,105,86,94,99,83,91,88,99,78,100,101,96,99,95,95,92,94,98,99,115,106,93,107,91,103,104,107,106,105,99,96,104,97,109,101,100,103,105,97,103,97,101,108,103,100,108,92,97,108,101,89,90,88,104,101,93,99,90,105,100,94,91,114,97,93,94,95,102,93,92,102,101,94,93,100,87,99,99,97,72,108,94,89,117,87,93,102,91,99,99,100,98,99,92,100,108,88,75,98,106,107,94,94,102,101,95,96,95,108,104,93,94,89,93,99,101,94,88,99,103,103,97,94,91,90,101,105,100,103,97,91,116,100,95,95,103,96,106,106,109,102,105,95,114,112,95,104,106,97,97,92,114,103,104,99,99,108,89,111,100,97,90,95,100,98,97,100,93,91,95,93,83,90,108,91,101,94,101,90,99,90,107,93,96,96,100,96,99,100,100,109,99,99,91,102,97,104,105,110,98,100,113,109,91,97,88,92,90,100,99,105,96,103,103,94,107,111,97,107,90,106,92,99,97,97,88,101,92,101,108,101,92,105,92,96,116,98,95,108,107,107,115,95,106,100,111,94,118,86,95,86,77,105,101,103,105,107,96,102,91,94,103,102,102,93,105,97,104,89,93,100,94,102,100,102,90,92,115,85,106,95,94,102,97,107,100,96,93,114,102,109,97,96,107,96,95,96,83,102,91,98,91,82,104,105,96,101,109,103,99,91,87,94,97,95,100,98,70,93,99,95,106,94,82,97,87,112,104,92,95,100,89,100,91,95,98,101,95,93,98,98,113,94,95,103,103,108,110,97,101,108,102,94,108,96,98,95,98,108,84,108,93,102,100,99,104,90,99,99,108,107,96,68,100,87,90,100,99,117,94,95,100,93,95,103,110,96,96,86,103,98,103,82,101,93,108,114,113,117,102,91,107,99,93,89,108,94,100,93,100,90,100,92,80,110,108,91,101,94,101,89,96,94,103,102,95,93,100,98,113,101,98,96,95,96,95,87,96,95,107,92,94,99,106,103,102,117,99,98,108,93,100,103,103,85,101,97,103,102,111,85,99,100,92,101,117,112,102,108,87,106,90,97,89,110,88,88,89,96,97,111,99,102,100,80,103,96,100,100,99,95,110,96,97,100,101,99,91,102,94,99,98,98,91,111,102,105,100,89,117,105,102,98,84,85,101,102,88,96,99,102,91,100,115,90,95,96,100,104,106,102,94,105,92,105,80,84,109,90,99,98,97,91,97,91,111,108,88,108,99,107,89,87,109,97,101,96,97,102,98,120,99,99,99,99,107,99,110,96,106,91,80,91,92,67,91,108,94,99,90,104,95,103,104,89,112,100,93,92,103,90,94,94,92,100,105,96,93,98,97,100,98,95,95,99,112,90,101,91,94,110,102,100,111,103,89,97,93,86,90,101,88,94,94,109,106,110,112,98,109,85,100,81,110,101,105,110,90,109,89,105,99,102,86,85,105,106,102,95,98,99,101,97,100,110,86,99,98,104,104,99,96,113,99,101,109,98,114,103,96,112,103,99,86,97,108,95,110,97,105,107,111,88,93,87,98,102,108,109,113,102,103,107,92,96,112,106,99,97,90,102,100,101,103,101,99,101,88,95,98,102,87,92,95,99,99,97,112,87,80,94,105,96,100,104,95,95,100,91,101,100,105,99,96,90,105,99,103,82,108,90,103,118,82,90,106,95,87,82,112,92,87,102,95,94,92,99,102,102,99,94,100,84,99,104,103,99,92,117,111,94,93,98,98,105,111,107,91,88,91,96,94,116,108,97,104,101,112,114,104,110,111,97,105,108,102,96,103,99,105,121,91,93,95,88,104,103,96,112,100,105,98,102,103,107,104,104,95,103,89,99,88,104,88,80,104,83,80,91,98,103,88,102,102,94,88,94,106,134,92,94,102,108,93,97,102,104,83,108,99,106,100,110,112,102,99,98,108,95,99,108,99,114,105,105,99,107,92,108,96,96,106,102,96,99,94,103,87,105,94,105,93,106,103,97,95,100,112,100,101,102,108,109,93,82,101,87,100,101,97,66,102,92,102,87,105,96,83,92,104,94,103,94,94,98,85,98,92,110,104,87,97,98,94,102,108,94,97,96,101,97,111,116,109,95,106,87,106,100,98,97,109,97,87,120,107,104,86,97,93,97,92,105,107,99,93,91,110,98,87,116,100,98,86,97,104,83,79,110,107,116,69,103,98,97,106,94,97,105,96,96,104,105,88,100,102,104,93,98,101,111,103,105,109,97,95,68,97,103,104,92,85,105,98,101,102,95,95,95,100,107,82,94,95,97,94,98,79,107,101,84,102,115,104,101,92,103,106,108,102,90,106,103,92,110,98,98,95,109,95,106,105,109,109,104,100,101,113,95,96,97,69,111,103,107,99,99,107,99,106,102,95,98,107,99,96,96,98,79,101,88,97,107,98,90,108,113,105,83,104,88,96,103,100,103,95,100,94,96,99,103,96,100,107,100,96,112,87,97,112,97,87,106,106,94,89,103,90,95,106,79,102,104,98,105,101,96,87,105,107,109,91,97,88,112,84,103,104,96,114,99,96,90,94,103,87,93,89,88,103,108,106,105,103,92,108,89,109,105,126,100,101,92,107,97,105,98,102,83,113,104,101,95,101,91,100,113,92,101,105,93,105,103,103,104,113,91,99,103,92,113,105,91,98,97,110,100,100,98,96,95,93,97,94,101,103,112,91,98,93,96,93,102,92,89,103,96,98,99,102,93,102,109,94,109,95,99,94,97,105,91,104,112,99,94,96,95,98,104,98,94,102,91,113,105,97,121,99,94,103,105,112,105,99,102,95,97,77,96,101,101,91,95,92,106,99,90,102,116,96,97,90,99,101,97,87,87,109,97,104,99,96,102,98,98,106,102,101,102,96,110,97,90,94,100,98,95,97,88,95,95,102,97,93,108,100,93,92,99,94,91,93,101,96,100,106,105,113,92,105,100,88,98,109,99,100,102,104,92,98,91,100,87,95,94,98,106,103,97,101,89,105,106,94,98,105,100,109,97,100,97,97,87,96,98,96,105,94,101,123,105,113,94,101,97,100,97,96,90,100,100,118,113,117,97,98,98,105,95,94,112,110,92,102,102,103,89,99,97,93,90,101,114,92,111,106,101,98,98,100,109,100,93,92,98,74,100,91,96,100,101,99,102,95,109,97,112,99,97,104,107,99,101,109,86,96,96,96,90,97,99,98,89,87,98,102,105,105,99,96,112,99,115,92,98,97,103,114,102,104,106,97,108,110,98,94,92,83,102,107,108,107,104,96,104,102,90,95,95,80,102,102,93,100,111,98,94,97,100,104,95,109,98,97,103,92,112,112,89,88,96,104,112,109,98,98,100,102,102,113,106,105,102,101,97,108,96,91,104,101,118,108,97,99,92,109,105,95,95,96,99,95,100,98,98,96,109,107,102,109,115,102,90,100,109,98,95,95,90,100,103,99,96,94,105,93,88,108,98,102,108,101,87,97,113,95,94,97,96,74,99,98,105,95,100,89,93,94,97,98,99,103,97,80,94,93,101,109,97,102,89,101,106,105,100,108,103,91,109,104,120,100,97,99,106,94,103,101,95,105,98,92,105,95,104,93,95,94,111,100,99,101,93,102,104,96,101,99,95,103,88,111,97,97,108,102,105,100,102,94,97,88,96,106,91,97,95,97,98,108,99,103,68,108,90,95,91,95,88,110,108,80,110,103,93,103,93,96,101,93,102,87,105,99,100,96,102,101,99,100,95,107,93,79,95,91,97,94,94,102,102,104,107,95,97,87,96,121,97,95,95,95,90,99,98,103,100,101,99,91,94,97,102,95,93,91,93,87,101,100,99,94,112,100,110,101,98,93,112,113,109,108,98,105,85,94,97,93,90,91,98,94,92,98,83,101,111,91,97,101,87,95,99,96,102,100,103,97,98,84,117,84,108,111,92,95,101,106,101,100,99,102,113,96,96,97,98,100,103,98,104,109,110,105,99,95,95,97,94,88,97,118,97,98,96,94,98,93,103,104,97,98,94,100,106,102,96,97,91,103,95,100,89,99,107,92,102,98,109,80,104,109,113,110,98,101,115,102,90,104,106,102,94,103,96,103,93,101,111,104,81,98,96,101,108,95,96,112,101,116,102,103,96,103,98,97,93,102,102,106,96,86,99,107,103,95,91,92,86,93,108,96,68,58,96,117,102,110,117,98,99,107,99,94,97,97,95,95,104,104,86,95,104,110,101,97,95,90,90,103,93,100,95,106,91,100,101,102,97,96,64,106,103,94,111,91,89,100,82,95,94,103,84,107,109,92,113,77,92,93,95,85,98,98,101,100,99,93,97,101,106,109,105,98,96,95,99,106,78,101,102,103,101,102,99,102,88,99,88,110,111,89,102,103,102,122,104,100,108,105,119,101,96,98,99,106,98,95,81,107,115,94,97,94,92,103,108,94,105,96,95,109,70,105,102,107,100,102,105,105,96,109,79,93,95,101,96,97,106,99,92,84,98,102,95,107,99,108,93,99,109,103,77,94,104,99,110,107,93,98,96,96,98,109,106,97,94,100,97,95,101,105,93,91,94,94,90,102,90,91,116,106,94,108,106,93,101,114,102,102,93,87,101,83,103,100,84,86,97,97,99,98,92,96,94,106,87,102,91,89,85,108,97,103,101,91,100, +714.12152,95,106,98,95,110,111,102,93,100,105,106,104,92,91,116,94,89,107,100,112,102,103,99,98,104,101,106,91,97,102,100,94,94,100,103,96,97,90,101,98,105,95,96,99,81,115,91,105,107,85,101,94,105,96,103,103,95,102,101,91,94,106,98,99,92,105,99,105,108,107,99,93,87,99,104,110,97,106,95,117,105,109,80,97,104,108,101,101,95,102,103,97,101,90,96,109,94,102,88,99,92,110,96,82,97,91,97,96,102,98,101,92,101,108,79,100,102,95,107,92,94,103,109,109,101,107,109,91,114,109,104,102,90,99,102,103,93,99,90,94,103,92,93,105,106,99,104,102,93,98,98,114,94,93,109,102,103,94,98,103,103,98,112,101,106,101,98,90,99,98,98,97,90,99,100,97,105,102,107,95,105,116,89,93,97,100,93,82,109,88,102,97,94,87,106,92,94,85,90,96,98,91,101,96,95,105,88,101,94,101,91,100,102,105,109,91,100,102,86,96,98,114,97,108,102,97,111,78,88,86,107,100,104,100,97,96,103,98,103,105,96,102,100,75,88,110,103,98,107,84,90,95,109,96,98,102,97,81,100,104,96,100,103,112,85,93,112,120,105,91,94,100,110,105,129,96,104,95,97,105,100,105,87,128,109,109,94,84,108,100,100,122,94,98,94,94,100,105,97,110,105,93,103,102,94,113,102,98,109,115,101,105,96,104,104,97,97,86,96,94,94,92,100,107,94,94,105,101,115,103,109,95,103,113,104,109,101,104,103,102,103,95,91,99,101,97,94,101,96,109,95,96,104,110,96,108,100,100,101,94,100,93,103,92,93,94,90,100,61,96,108,98,114,107,96,88,97,100,98,103,100,97,86,102,97,97,103,100,106,97,97,101,103,111,100,94,90,101,102,99,108,105,103,88,99,94,125,75,105,111,95,98,99,96,104,100,94,89,104,96,109,99,90,91,80,97,98,91,93,98,103,100,101,84,94,96,106,95,84,87,108,98,100,81,104,109,95,89,104,110,94,95,91,102,97,98,95,94,107,105,100,98,94,101,86,95,100,99,96,101,99,88,102,103,97,93,109,102,88,101,98,109,107,98,98,91,94,90,103,94,95,87,105,105,98,95,93,132,104,90,108,81,95,98,101,105,95,98,105,103,119,97,98,104,103,104,96,99,78,95,99,91,103,100,103,90,97,101,81,100,89,94,101,98,91,96,110,98,90,101,101,91,93,82,99,95,90,101,86,104,100,119,99,98,103,88,99,106,91,95,103,102,101,106,106,91,108,105,117,91,99,91,96,66,99,93,89,104,97,103,103,99,101,103,100,93,101,98,97,96,95,104,107,103,116,100,103,103,106,90,99,102,99,90,88,101,99,97,102,102,104,97,101,96,108,95,108,108,104,100,103,97,95,91,89,102,91,102,101,93,91,101,94,96,95,94,112,105,99,103,97,120,111,101,103,96,107,113,101,110,98,113,102,107,111,106,98,107,85,104,102,96,108,105,87,95,105,98,102,82,100,95,110,103,105,102,106,103,105,106,97,97,103,103,89,112,104,94,91,99,100,105,96,105,98,81,89,101,110,100,104,104,104,92,114,92,96,91,94,96,101,91,95,89,97,84,95,107,102,98,103,83,98,98,108,104,90,98,97,104,109,108,100,69,105,89,114,98,114,102,102,97,98,96,97,100,98,126,90,109,99,88,108,90,103,100,83,97,106,97,111,100,96,106,93,94,87,92,92,93,103,96,97,105,102,103,91,94,93,87,110,105,108,103,112,99,98,103,107,126,106,101,102,99,101,101,110,105,105,116,104,108,80,94,104,100,108,102,99,104,110,97,103,97,113,96,100,102,99,102,95,98,94,111,82,91,100,83,102,89,102,90,102,104,105,99,98,101,113,100,101,105,102,92,101,92,97,98,90,104,70,94,102,103,96,88,99,108,109,101,86,94,95,86,99,93,101,91,105,88,98,117,98,106,104,99,97,95,100,100,117,103,94,109,107,108,94,106,102,95,102,107,90,105,96,83,101,95,111,107,95,115,110,103,95,103,100,105,94,102,100,94,97,101,86,82,103,99,100,91,100,104,102,102,91,104,106,109,101,112,98,116,103,112,104,95,92,91,104,102,77,119,94,98,108,96,106,96,92,90,95,130,71,103,107,106,101,101,95,100,102,100,112,92,91,88,91,100,100,77,111,100,105,98,104,96,95,115,95,105,100,98,99,98,106,101,97,105,85,96,94,92,100,97,93,93,82,81,107,91,95,107,90,97,108,91,98,107,97,105,105,104,96,112,98,93,108,89,91,105,105,109,131,80,100,106,96,89,98,97,112,94,100,92,84,90,101,105,105,105,89,101,96,92,96,105,104,103,101,96,100,106,97,110,95,90,117,109,110,98,92,107,92,93,104,99,92,109,94,102,86,93,93,97,126,93,109,101,90,87,104,101,91,100,98,114,104,104,106,98,95,94,88,91,90,105,112,80,101,106,96,86,112,102,104,105,101,100,104,95,96,105,106,91,92,91,106,89,97,101,119,91,94,103,123,105,103,106,110,96,99,95,97,98,102,97,111,95,100,90,101,88,103,95,98,97,100,100,96,96,101,105,105,103,105,95,100,86,104,104,110,92,104,104,107,122,110,91,107,94,104,91,109,93,96,103,90,97,90,94,95,91,93,91,114,103,108,89,109,104,112,101,101,101,79,100,113,96,101,95,106,94,104,94,83,99,107,106,99,90,96,99,101,106,107,95,93,105,96,100,103,96,96,115,89,92,100,104,121,95,98,102,98,90,110,96,103,104,100,102,95,102,100,91,112,112,96,102,95,96,105,96,98,109,105,107,95,110,108,101,95,101,91,106,104,86,103,98,108,95,92,88,95,106,100,98,101,104,109,115,95,99,98,98,100,112,104,106,99,98,96,99,94,102,85,102,94,102,103,103,108,97,105,103,107,100,105,99,113,101,88,101,104,100,119,108,92,100,102,101,110,98,98,96,100,98,91,104,112,108,110,96,92,94,98,104,98,106,109,108,107,97,94,101,84,109,105,98,109,104,109,102,116,106,99,95,101,101,99,94,108,104,94,113,95,99,96,87,102,97,89,114,116,107,105,97,110,101,102,92,104,90,103,105,93,79,100,103,99,104,95,80,96,122,89,98,120,94,105,102,102,93,110,100,101,100,87,109,107,99,109,100,96,100,102,89,106,103,110,108,98,104,105,100,104,104,91,92,100,101,101,100,117,112,112,112,103,109,108,90,113,91,104,100,103,86,106,102,99,91,96,94,99,98,120,71,100,102,98,83,120,111,95,105,98,96,99,101,114,93,96,94,92,86,108,108,99,106,97,112,93,105,111,108,120,106,97,104,105,105,93,99,98,102,105,107,88,92,106,108,99,101,112,92,111,95,116,107,93,105,101,106,94,103,90,116,95,108,98,90,100,101,98,84,100,108,98,109,95,95,96,119,90,117,102,104,94,102,108,86,102,106,104,102,113,98,104,93,101,89,114,95,104,106,97,115,111,102,101,96,100,102,96,100,122,98,105,115,120,92,104,91,98,99,106,98,111,109,106,97,100,96,115,105,89,105,121,94,105,109,101,95,99,103,92,97,113,96,93,104,84,115,91,105,101,108,94,97,95,112,100,95,105,111,80,105,95,112,98,100,104,103,99,110,99,89,100,98,108,93,93,94,106,98,109,101,102,117,82,93,79,100,94,95,102,103,109,105,89,97,104,112,93,102,103,95,102,108,104,97,97,97,111,91,104,100,114,107,100,95,95,110,92,83,100,95,95,95,96,100,106,103,98,104,99,95,92,99,98,100,88,103,107,95,96,106,96,80,101,91,103,104,102,113,90,93,96,104,102,94,113,88,96,91,95,100,94,104,93,90,94,113,103,104,101,100,104,99,99,101,113,90,102,101,93,103,105,96,112,103,113,74,108,107,88,96,102,99,97,100,108,102,96,98,113,91,96,98,95,106,95,104,108,106,98,99,97,91,93,100,104,95,103,101,101,117,109,86,94,99,102,113,93,100,97,113,97,98,98,93,100,110,97,96,94,109,101,80,97,100,95,94,105,94,84,105,98,104,107,107,108,102,98,91,81,98,100,90,94,104,84,102,100,97,92,98,110,104,103,100,116,98,104,96,111,101,107,113,105,87,96,91,113,101,97,102,111,91,97,100,90,91,99,98,96,102,91,99,93,116,112,109,91,100,101,112,88,104,107,101,93,94,97,97,100,92,98,94,93,114,102,88,99,98,91,100,95,91,101,92,93,105,107,89,105,110,99,103,112,106,102,92,100,98,106,92,95,95,102,94,99,102,97,105,85,100,106,107,105,97,98,104,96,96,104,101,96,83,114,87,104,99,109,105,98,96,93,107,104,96,95,94,104,99,90,98,79,109,99,113,108,104,95,105,98,96,95,120,112,104,89,97,97,106,68,106,105,91,100,107,95,111,105,93,105,92,90,102,104,98,99,98,96,88,96,109,94,105,97,101,109,98,94,100,86,130,103,109,106,97,95,103,91,99,112,109,97,89,97,101,110,91,94,94,115,103,99,103,104,104,102,99,92,105,112,100,100,102,111,92,102,101,98,111,98,94,107,111,102,97,94,97,104,105,107,94,116,99,107,100,84,105,105,94,101,101,101,99,94,110,104,97,96,92,94,98,102,108,95,108,100,103,115,93,96,92,97,93,95,104,102,110,90,112,92,101,102,104,92,99,113,89,98,107,106,77,99,112,82,95,99,101,100,111,101,86,102,104,95,95,98,97,103,108,91,105,92,94,91,90,105,102,93,106,105,113,97,117,89,104,109,104,107,92,101,127,94,88,103,104,99,89,98,106,121,98,103,108,105,117,106,102,112,107,116,112,92,91,95,97, +714.26288,118,96,95,91,96,100,93,95,84,99,83,103,79,95,96,104,85,106,101,100,102,114,105,102,103,116,125,118,98,95,101,102,89,95,113,95,92,97,91,106,105,101,93,87,98,109,106,95,113,95,99,109,107,92,100,98,99,96,94,95,104,102,108,110,106,105,89,105,92,92,124,95,98,89,87,96,105,91,103,107,99,104,99,96,96,96,97,104,96,109,81,99,112,80,118,95,103,104,103,86,96,94,78,89,86,100,93,96,97,102,107,107,96,110,88,92,92,104,107,96,98,115,101,107,94,108,108,100,111,100,96,96,97,92,97,107,92,90,97,93,108,91,88,108,102,98,99,99,99,99,98,105,99,87,93,102,99,92,94,92,103,99,97,113,91,95,101,89,109,96,104,91,97,113,110,100,103,95,95,121,97,99,100,114,103,103,102,93,102,105,95,99,98,105,94,102,98,112,107,103,88,86,86,96,103,96,104,100,117,95,98,104,97,105,96,93,104,94,96,105,83,100,112,100,99,107,104,108,100,99,79,106,108,106,108,107,93,91,96,98,106,96,104,114,86,91,102,96,100,110,96,108,110,108,102,92,102,86,101,107,101,108,113,97,79,103,91,95,85,103,101,98,104,91,112,104,99,90,98,106,96,106,102,104,87,104,77,110,104,103,96,106,94,99,100,109,108,95,94,98,105,90,89,97,97,116,103,102,97,91,112,111,95,102,103,96,91,98,109,105,107,108,97,112,99,96,90,82,95,101,104,102,101,97,99,100,99,107,103,102,101,99,104,109,95,103,101,101,104,96,82,98,91,102,104,91,110,101,103,113,105,100,96,101,111,102,101,98,99,105,103,88,98,113,94,110,113,125,99,94,104,89,90,96,103,90,91,93,104,106,101,97,105,101,104,95,105,99,109,96,100,100,101,91,100,114,104,105,90,107,95,96,113,92,86,102,90,96,103,91,102,106,104,98,104,106,99,104,91,105,96,96,101,102,96,83,100,112,95,98,110,103,100,110,90,103,94,94,90,91,90,95,94,106,100,98,106,112,98,101,95,96,99,100,101,105,101,101,90,102,97,108,102,105,86,92,104,99,102,102,107,99,105,98,96,103,100,101,94,106,105,109,87,97,84,100,92,101,107,94,105,100,102,94,90,110,86,90,102,89,96,103,89,111,90,106,100,93,107,95,102,101,92,97,97,95,96,82,96,100,102,104,105,103,93,92,94,100,98,96,112,95,106,104,98,100,96,104,108,96,99,97,109,103,91,103,94,99,96,107,99,99,96,90,94,99,104,111,89,98,95,94,116,105,113,105,102,97,97,102,105,98,88,97,74,102,99,105,99,79,104,98,95,100,98,71,95,100,98,101,106,100,105,101,106,99,114,103,100,102,105,98,100,106,112,90,112,95,108,99,102,106,83,109,99,109,106,101,106,82,99,97,95,98,100,107,93,97,108,98,101,99,100,97,103,87,92,104,96,105,101,99,94,94,109,100,103,108,100,99,102,95,90,105,94,101,106,95,95,97,98,101,106,90,104,103,103,112,102,103,104,102,105,94,98,111,103,105,99,98,99,103,100,102,102,100,104,105,105,98,96,103,98,106,98,106,100,112,97,101,99,97,105,97,98,98,97,103,106,103,98,97,103,92,93,100,94,105,100,110,90,104,108,116,100,106,90,92,104,110,98,96,106,103,91,105,105,114,106,101,105,103,114,99,102,92,115,108,96,95,99,99,101,91,97,95,103,105,91,96,109,113,104,105,116,106,103,100,93,79,107,95,104,105,107,105,103,114,102,106,100,103,98,99,94,108,111,99,100,100,111,95,83,94,96,103,104,103,97,97,111,99,105,99,108,129,94,99,108,100,107,87,93,102,101,104,95,97,109,108,108,86,89,106,92,105,102,107,103,112,96,97,99,95,84,106,101,98,103,92,114,102,108,105,91,97,97,105,96,93,91,105,100,98,107,109,97,111,105,108,99,113,107,97,90,114,106,99,106,88,98,110,101,109,107,105,101,105,110,110,97,96,105,105,99,112,105,102,94,97,98,98,95,111,87,97,103,97,97,99,107,96,99,104,95,107,98,98,105,112,105,91,86,100,99,110,110,95,94,94,98,106,98,98,99,98,84,95,106,109,97,102,111,95,109,110,97,98,88,106,114,99,105,98,101,98,96,99,89,96,101,105,105,93,99,90,102,104,86,100,97,108,101,101,96,98,92,95,105,110,95,103,95,118,99,108,92,103,92,88,105,104,104,99,105,94,98,96,92,102,100,94,93,83,107,107,114,101,96,95,90,106,99,96,104,105,114,101,106,101,91,106,95,91,92,111,108,104,91,88,102,97,114,95,109,89,85,102,92,98,91,100,105,97,101,104,84,101,92,116,90,98,93,119,102,106,91,88,99,76,99,93,92,90,99,93,82,103,94,90,105,111,95,106,98,120,102,95,94,90,106,101,84,116,108,96,89,97,106,103,100,101,114,94,103,97,110,102,107,104,99,97,117,98,93,105,103,97,98,98,98,109,120,110,109,83,91,101,102,104,102,103,102,100,96,100,101,103,98,105,107,100,100,94,96,97,94,103,109,103,109,89,102,97,94,101,96,97,103,92,104,89,106,95,119,91,123,100,87,102,99,83,108,78,87,102,110,97,99,87,97,98,91,106,98,100,98,96,100,105,91,98,96,101,94,98,108,94,106,111,99,108,98,100,95,111,103,106,104,101,98,111,121,91,98,106,105,111,100,87,102,77,93,100,111,99,98,102,97,104,102,102,98,96,101,98,83,105,107,95,100,104,93,100,95,104,96,101,91,126,96,92,113,94,107,102,101,100,109,117,117,102,105,94,100,100,95,98,105,101,98,108,111,106,112,88,92,98,108,99,100,100,105,104,107,119,133,92,96,99,98,110,104,108,107,92,101,99,109,103,100,106,84,93,92,103,108,103,100,106,102,101,99,104,87,84,112,108,96,115,102,107,93,95,103,95,107,98,66,87,99,90,91,110,95,100,94,107,99,101,89,94,107,101,107,101,88,106,80,100,91,101,101,103,100,104,98,90,100,97,97,106,109,88,94,108,104,104,100,108,104,103,110,103,105,95,112,103,109,113,92,114,98,111,99,93,98,102,106,95,100,101,127,96,95,89,96,106,102,99,79,101,110,87,112,105,112,101,109,108,105,105,100,99,105,97,92,109,103,91,107,105,91,95,113,94,95,109,94,106,97,99,103,107,100,94,99,101,97,105,101,92,98,111,103,94,94,105,102,101,132,96,102,107,98,99,104,91,110,93,97,102,106,109,92,96,93,101,94,105,108,103,108,98,104,101,99,93,97,87,88,95,107,94,93,102,101,101,101,96,102,98,106,93,97,100,101,98,84,98,95,85,87,93,123,105,96,97,107,102,84,107,98,112,97,108,100,90,106,102,106,89,100,93,90,92,100,79,106,94,101,101,94,95,92,98,89,109,92,103,111,109,105,106,99,99,113,117,98,106,94,99,100,99,89,98,98,110,91,101,107,99,100,99,101,83,102,109,105,110,104,101,99,93,101,102,99,97,109,103,102,100,93,94,95,95,101,99,98,113,101,102,97,94,100,125,96,120,99,102,96,106,96,100,102,96,112,93,112,85,96,100,113,97,99,95,98,95,105,93,104,102,104,100,94,105,98,108,110,88,107,105,91,93,93,90,113,104,92,105,99,102,102,106,93,92,100,89,103,101,85,113,93,101,95,100,105,95,95,104,108,96,83,100,100,101,96,108,103,108,105,100,83,61,96,94,97,91,110,109,95,105,93,114,109,100,93,113,98,93,108,96,107,83,98,104,99,83,100,99,90,108,95,96,97,95,105,102,93,97,99,95,96,100,74,104,104,102,98,96,106,98,105,104,109,93,105,102,93,97,104,113,64,95,89,104,103,107,92,88,104,105,117,96,97,110,108,96,101,99,98,104,95,105,96,97,99,106,102,94,88,112,84,101,105,107,91,92,91,107,95,94,95,111,130,89,103,103,114,87,106,96,100,97,108,94,104,93,101,90,100,103,95,94,84,105,103,111,103,88,102,104,102,100,98,106,103,103,88,102,108,98,102,108,91,105,96,106,94,95,99,102,95,102,105,113,94,102,104,116,91,91,88,95,95,95,102,106,106,100,92,94,96,106,111,99,97,89,99,111,102,104,106,100,101,100,95,113,82,106,94,111,109,103,109,99,104,93,103,114,111,106,105,100,104,99,101,113,97,93,104,85,102,97,94,83,95,102,106,97,108,92,107,104,94,96,105,88,97,98,101,90,93,102,109,110,106,105,101,105,106,98,103,113,98,106,101,97,97,91,92,109,101,94,94,99,96,98,115,102,106,100,95,94,109,98,100,114,116,100,98,101,103,94,97,100,105,112,95,92,117,90,114,90,95,73,92,97,108,98,106,104,95,101,108,100,104,89,112,103,111,102,79,81,96,98,104,96,92,93,67,105,93,110,110,100,106,95,95,96,101,96,105,104,99,100,113,101,103,99,98,89,104,113,101,104,108,109,101,104,105,101,93,105,100,102,98,104,110,96,99,74,116,110,105,109,97,95,83,97,91,101,96,121,105,92,90,99,91,100,89,104,99,109,108,106,100,109,103,95,109,107,109,98,107,105,109,103,103,98,100,98,108,101,110,92,105,97,97,98,85,99,101,95,108,106,105,94,105,109,105,108,103,109,100,129,113,95,96,90,135,102,100,105,108,103,107,95,112,96,107,111,88,101,120,93,105,107,99,103,97,107,116,105,102,109,108,104,100,101,109,100,104,101,108,95,107,101,99,113,109,89,92,93,107,98,103,102,92,107,100,109,91,95,96,108,99,104,114,93,97,108,96,97,102,101,94,106,98,107,113,107,92,103,86,99,85,88,103,121, +714.40424,110,101,121,101,92,99,101,101,93,111,113,99,102,105,90,97,90,92,95,100,101,103,106,88,92,105,96,99,100,113,102,98,102,98,112,100,102,102,105,95,110,111,89,102,100,106,106,109,109,91,94,104,89,94,103,88,90,96,107,101,120,86,88,92,97,82,89,114,97,85,100,107,90,102,86,100,98,109,114,98,105,105,104,111,105,99,115,95,91,121,100,97,92,105,102,105,103,94,97,97,112,101,87,95,85,104,94,86,105,105,104,95,101,100,100,91,105,97,99,105,101,106,106,98,102,93,104,95,96,128,93,122,99,100,93,99,95,122,74,99,112,104,98,90,104,91,108,113,97,85,97,93,100,86,101,103,122,96,82,93,84,110,104,111,106,101,98,105,92,105,96,94,96,102,96,91,106,101,120,108,100,101,98,97,100,99,96,94,103,96,93,106,96,93,96,98,101,106,99,99,97,105,91,75,102,106,97,96,118,95,98,108,104,99,74,101,91,109,89,95,99,106,109,88,96,117,106,105,102,92,71,94,106,106,88,99,104,100,100,89,111,101,92,101,105,98,95,105,77,105,100,95,97,103,99,107,92,104,104,99,71,104,96,83,95,102,99,108,98,92,101,92,102,104,92,106,87,104,87,97,88,103,102,104,97,84,90,94,98,105,96,96,117,94,91,95,110,101,105,104,87,99,99,115,97,103,111,68,93,105,89,106,95,91,96,103,112,95,95,92,92,83,108,105,92,95,76,85,102,100,93,99,96,92,93,101,102,107,97,103,97,95,93,92,91,108,90,96,91,100,98,97,106,91,84,106,87,113,110,98,101,97,95,93,100,93,101,100,98,92,109,88,101,93,100,88,110,94,85,97,99,93,93,92,101,98,89,93,96,88,99,91,97,114,95,102,100,101,100,96,98,100,105,90,94,96,102,93,95,86,87,100,102,89,92,80,100,98,95,94,95,100,109,100,100,97,97,88,99,82,101,100,103,102,98,97,94,93,92,101,105,104,104,101,102,99,94,95,103,99,81,87,95,96,96,90,95,105,109,102,99,103,97,118,102,98,99,99,105,102,107,106,100,85,91,97,98,107,113,103,101,98,105,93,92,96,104,95,93,98,96,94,111,93,104,98,98,96,99,98,109,101,96,102,97,101,89,105,99,91,108,95,95,106,106,94,98,102,98,96,96,106,96,97,101,112,100,102,89,102,86,100,99,105,91,107,93,100,91,98,122,98,100,96,103,95,91,93,97,96,105,100,104,88,97,98,99,93,98,103,104,106,100,101,98,98,102,100,96,105,97,91,108,104,116,102,107,106,91,93,90,106,87,112,97,102,98,104,101,101,118,109,95,105,67,116,98,109,118,100,90,86,108,97,95,91,91,105,95,93,90,105,94,96,87,103,105,102,103,100,99,92,96,100,95,94,94,99,106,108,112,96,107,105,91,106,98,73,121,101,98,97,103,106,90,104,94,92,103,98,99,79,93,93,94,97,97,116,105,111,103,99,102,101,93,108,102,93,99,112,96,101,100,93,107,95,99,105,105,93,101,95,102,90,90,92,99,106,113,95,109,90,97,97,95,101,100,93,102,85,106,85,98,108,96,103,97,95,97,101,94,95,86,94,91,94,91,91,102,96,102,104,98,96,103,87,91,89,112,102,91,97,99,85,94,101,88,93,100,97,94,98,93,96,91,94,110,97,101,98,115,92,96,101,98,90,101,106,125,101,106,92,85,101,87,73,86,89,99,87,97,97,91,93,104,85,101,109,99,100,98,88,123,99,98,98,96,105,91,105,100,98,87,99,101,89,83,89,96,101,97,86,106,96,100,96,97,106,97,111,111,93,112,97,99,98,94,105,112,87,102,112,102,101,107,109,110,100,105,101,102,99,93,89,97,105,104,87,102,110,99,93,107,97,91,108,92,94,99,94,105,110,92,95,92,103,99,95,94,101,101,106,97,106,99,88,109,106,102,100,94,95,105,100,100,102,99,88,102,90,104,88,97,102,98,105,96,113,97,115,99,111,109,102,95,102,100,101,111,114,91,99,90,100,89,96,94,102,102,100,109,95,98,108,107,101,86,96,95,102,101,89,98,111,106,93,107,112,98,83,97,106,90,110,91,109,101,92,105,109,104,84,92,95,104,111,120,108,91,108,105,100,100,106,100,88,110,98,87,93,111,107,102,109,100,99,94,105,96,96,97,102,95,96,86,91,104,99,98,98,105,102,88,106,101,97,87,104,99,92,99,106,95,98,97,87,63,101,99,105,99,101,99,101,91,95,91,105,92,92,95,102,80,93,106,112,105,101,103,98,93,97,104,97,106,100,87,108,107,104,101,92,100,94,102,76,111,108,98,89,96,95,108,96,98,109,108,108,92,104,81,96,94,85,105,101,88,107,103,102,101,96,106,108,105,94,96,96,95,103,88,99,97,101,84,89,96,105,100,96,95,104,97,103,106,95,109,122,93,108,103,97,95,111,107,102,90,108,104,113,108,102,113,109,96,104,93,98,105,97,94,99,104,102,89,106,104,98,95,102,95,103,109,90,106,98,99,97,94,110,101,98,105,127,105,100,101,103,107,99,112,108,83,107,101,98,100,103,101,98,90,101,100,109,105,98,103,95,103,111,100,98,94,100,113,92,117,113,108,101,100,86,105,101,104,114,93,95,98,106,104,100,103,103,95,107,100,87,94,103,98,99,111,89,100,100,108,89,108,101,108,93,93,103,102,112,105,102,102,109,92,107,104,109,112,110,108,104,108,100,99,102,93,93,109,118,89,115,93,93,93,105,99,103,108,96,105,97,105,105,98,91,99,89,89,101,99,104,94,96,101,94,101,109,101,94,110,94,98,107,111,88,98,106,102,87,92,101,95,116,109,103,95,109,119,109,98,105,85,107,107,97,97,105,110,103,106,110,106,111,112,103,103,103,96,92,105,90,104,101,97,100,96,88,95,100,103,114,101,100,92,99,94,92,98,110,126,87,101,113,105,97,104,90,114,98,105,106,100,106,96,102,98,104,83,92,96,104,102,105,105,99,104,96,92,103,108,99,103,100,105,113,100,96,100,100,92,102,98,101,94,99,116,113,87,90,101,96,80,86,95,99,95,104,99,95,105,103,99,100,88,92,95,95,93,60,95,93,96,112,98,85,101,87,94,100,96,98,105,99,103,95,92,94,105,89,120,102,109,97,102,100,91,102,97,100,99,105,100,102,119,101,100,104,87,94,102,100,86,88,88,100,90,104,106,99,87,108,99,104,94,89,108,103,100,110,106,93,101,100,89,91,104,106,95,98,101,96,111,86,103,98,106,101,106,107,101,104,98,99,101,94,101,104,123,106,107,96,94,97,91,101,100,107,98,92,94,91,96,101,96,97,100,102,118,99,98,108,98,90,87,87,101,69,101,72,104,101,102,96,101,97,110,110,101,101,100,95,97,111,100,101,102,96,100,100,91,91,113,99,101,96,105,97,102,110,105,98,109,102,95,99,92,92,92,98,98,104,107,97,95,102,99,94,90,91,103,100,117,97,97,104,100,93,102,96,99,88,107,94,106,104,109,100,98,90,91,95,89,103,91,92,94,108,101,100,101,99,85,93,102,87,105,99,93,109,87,103,103,97,90,99,95,89,100,92,82,96,109,99,92,93,94,112,89,107,92,109,98,96,89,100,101,93,99,96,95,94,98,100,102,100,97,108,104,94,91,74,90,101,95,101,100,107,97,113,103,98,96,108,96,105,103,86,115,91,76,108,110,85,93,99,102,92,90,92,105,93,102,109,109,97,90,103,108,109,126,102,100,106,108,90,92,102,99,102,96,85,100,100,99,104,111,110,101,106,100,101,105,94,98,112,99,108,102,103,100,99,101,112,98,115,94,89,98,103,87,93,98,101,97,94,96,108,90,88,88,95,109,94,86,83,112,102,93,104,91,99,96,101,92,97,103,92,102,104,109,110,96,98,90,106,71,95,108,102,96,90,94,105,98,94,102,81,99,107,95,93,101,99,106,84,93,94,95,91,107,92,102,91,102,94,102,93,103,99,102,87,100,101,111,99,105,106,87,100,112,94,91,95,101,99,92,104,104,108,97,98,96,96,120,95,100,101,93,98,131,88,108,93,94,102,95,98,133,97,103,97,93,97,102,88,100,89,105,91,103,93,92,101,90,98,106,94,101,99,105,107,102,102,97,99,96,96,102,99,113,106,97,105,97,106,107,90,93,94,97,101,61,91,85,92,128,101,90,88,95,107,95,90,91,91,107,90,102,106,109,72,87,99,105,101,94,83,98,106,96,95,113,103,93,98,96,109,102,102,100,104,96,104,100,92,98,101,76,88,98,100,99,99,104,107,104,105,105,89,100,105,98,98,86,98,111,99,100,102,98,99,94,99,83,101,91,103,71,102,80,102,105,95,97,110,133,95,99,98,90,93,96,100,100,98,94,85,101,101,103,97,115,96,112,73,100,90,97,114,97,97,86,96,89,117,99,111,102,98,92,90,88,119,98,94,95,102,92,102,105,103,102,77,105,108,96,104,113,94,104,94,96,98,100,99,97,115,104,98,102,78,105,98,90,92,98,102,104,95,95,102,103,94,101,95,89,97,98,105,103,97,113,89,97,101,106,100,115,99,98,102,96,94,84,97,95,95,92,84,116,82,101,97,99,94,93,105,104,104,105,88,114,102,94,100,100,93,99,98,85,116,89,95,99,105,90,103,88,101,102,103,95,99,100,81,116,78,97,103,91,91,94,102,83,93,98,90,99,107,104,102,120,100,105,87,119,89,107,93,101,101,95,111,108,95,101,84,94,89,98,104,94,91,104,93,87,105,83,99,107,111,101,83,91,100,105,97,103,87,89,109,107,99,105,96,98,99,92,95,102,97,72,96, +714.54559,98,86,93,94,88,98,95,96,77,96,95,87,89,114,95,98,94,97,76,100,106,99,104,98,93,96,112,99,102,104,89,97,103,95,100,87,102,90,108,98,85,89,92,99,103,120,110,104,90,117,84,105,108,99,108,99,88,86,82,82,105,101,110,97,93,103,100,100,107,80,113,117,98,105,90,95,102,101,105,101,98,97,100,101,110,106,95,87,96,101,90,101,94,104,103,97,100,111,101,104,97,98,110,100,130,96,96,105,99,79,91,96,112,87,114,107,106,97,83,84,106,95,106,106,107,101,105,79,104,100,112,110,115,100,93,101,102,103,96,110,92,100,90,112,107,91,103,90,107,99,96,94,104,93,86,104,112,95,107,97,107,109,117,93,99,103,105,97,95,98,105,94,86,96,98,109,120,95,110,105,103,101,96,98,107,100,91,95,95,85,100,98,92,104,105,82,105,104,81,99,97,102,111,101,108,104,114,99,64,105,94,97,104,85,98,97,111,98,110,91,113,98,94,85,94,87,104,112,91,102,97,115,97,109,110,105,112,99,100,100,105,105,111,96,95,99,102,103,101,100,96,110,96,101,90,97,101,114,99,97,96,101,96,101,89,78,92,97,103,96,94,97,100,102,98,96,101,90,95,93,104,96,100,100,95,99,91,105,92,95,96,102,95,97,105,99,100,97,92,106,88,107,98,109,101,115,99,111,116,109,83,109,87,82,103,93,114,105,99,99,104,97,106,103,100,81,99,94,108,109,107,94,95,100,100,124,102,92,98,102,100,98,97,96,102,100,118,118,100,99,102,101,95,114,94,110,110,92,104,102,101,79,100,97,95,97,98,114,101,97,92,99,104,100,93,100,78,95,100,105,98,101,99,94,87,95,78,95,104,93,92,89,96,96,103,86,76,92,98,96,93,103,99,98,96,101,92,97,108,101,88,98,106,102,97,87,96,88,113,90,90,94,101,97,100,92,96,99,103,97,98,103,103,98,96,83,100,101,98,100,113,96,99,68,96,94,86,97,101,92,100,96,110,106,108,94,87,107,98,115,94,106,105,102,104,96,106,90,98,94,86,109,103,100,120,101,93,99,100,77,92,113,94,94,106,102,94,111,102,108,97,107,102,94,89,97,103,98,109,96,114,103,105,92,105,109,91,83,103,106,105,109,105,93,99,100,100,92,115,98,111,103,102,89,93,95,100,99,88,99,97,100,97,105,96,103,98,106,100,96,105,106,100,95,106,97,102,98,106,99,99,96,107,98,90,106,105,90,99,105,87,113,104,104,102,104,79,132,100,95,108,98,104,98,91,96,111,99,102,102,104,92,95,95,86,86,95,98,108,95,96,106,98,97,107,105,97,101,106,131,101,114,106,68,100,106,101,124,98,88,91,91,106,111,107,104,97,94,106,98,113,102,91,93,106,85,101,90,93,106,93,102,101,100,101,104,100,93,105,96,85,105,101,100,98,104,95,105,95,102,106,101,97,89,101,98,93,99,93,95,106,106,92,110,98,95,104,104,103,100,98,98,129,101,101,99,99,97,109,84,105,96,114,96,111,99,116,108,84,102,106,96,77,100,103,101,99,111,112,87,124,87,99,93,107,102,93,103,99,97,104,91,103,95,95,104,95,110,103,101,99,101,96,95,99,111,90,94,105,105,103,107,94,92,105,116,104,114,111,104,114,88,92,93,107,110,102,99,103,105,93,99,98,88,103,90,103,87,90,107,117,105,99,108,92,105,90,98,113,101,95,92,112,109,93,110,104,80,97,91,105,105,106,99,95,100,106,93,99,105,106,94,90,96,113,101,101,102,91,108,103,105,100,92,110,98,97,86,99,105,101,102,103,88,105,94,95,104,96,106,102,100,96,118,104,114,114,101,100,102,91,100,90,99,99,99,108,96,101,96,120,103,114,102,89,99,91,105,78,102,94,94,90,97,95,132,90,97,98,103,101,101,106,102,100,98,96,103,106,101,98,94,104,104,91,114,103,105,96,110,101,94,96,99,100,95,90,109,87,100,100,99,95,106,106,107,94,107,95,109,96,101,113,101,99,101,99,104,112,107,90,98,98,79,107,78,100,98,98,86,95,96,111,73,98,100,95,103,82,101,93,102,86,104,104,84,94,100,104,104,103,97,89,112,96,95,109,103,103,109,129,101,111,105,95,121,107,100,119,110,101,113,87,107,107,97,98,99,97,86,95,109,131,95,97,98,86,91,98,109,96,105,101,103,109,101,104,96,129,93,105,102,98,96,102,95,103,101,98,94,105,100,100,96,108,103,97,92,106,91,97,69,91,112,97,102,99,82,87,95,103,99,93,95,99,106,105,95,91,107,104,109,95,104,106,94,95,101,90,86,119,113,98,94,110,95,105,92,100,89,102,104,105,97,93,103,95,113,97,98,101,77,99,95,92,109,97,105,93,89,99,109,99,89,70,109,89,102,106,112,101,101,87,88,113,98,97,94,111,105,101,101,103,90,99,96,83,109,107,100,86,96,104,99,93,108,92,85,98,82,110,117,107,124,95,98,99,101,100,98,97,94,84,100,100,104,101,120,87,101,87,99,83,103,92,98,104,102,92,92,94,94,92,96,93,93,93,105,100,100,104,87,102,105,93,98,93,96,107,102,95,87,105,87,104,98,97,100,103,97,80,91,97,108,94,75,99,92,95,92,102,92,99,97,92,105,105,92,92,94,97,105,101,101,96,105,101,88,90,101,93,101,107,108,102,100,91,89,106,86,121,113,87,102,102,91,99,102,109,100,92,93,101,99,99,107,101,105,96,86,99,93,82,100,87,87,102,103,104,68,110,97,95,99,108,100,106,105,87,100,90,109,89,109,91,82,103,96,90,102,99,104,107,96,90,97,103,95,105,107,104,106,109,117,126,99,94,101,103,92,98,97,89,99,90,92,86,96,94,102,100,95,91,91,96,98,99,101,131,104,105,91,98,101,94,98,107,111,90,95,91,98,102,90,109,97,105,109,93,93,105,83,98,94,103,100,102,96,100,94,97,112,111,103,108,107,105,99,108,97,91,100,88,97,99,102,98,92,98,107,100,115,99,99,86,87,97,96,105,89,115,102,99,94,109,89,102,104,97,108,92,101,103,104,103,103,103,100,111,101,107,95,93,100,97,97,101,95,106,93,108,95,114,106,88,102,95,100,99,99,100,95,92,100,66,96,110,83,97,87,108,94,88,104,99,102,100,95,89,106,93,104,108,91,102,98,102,101,112,100,106,99,88,105,102,94,98,109,80,91,94,99,110,105,102,106,93,92,97,93,105,88,116,100,103,97,97,94,89,102,121,93,107,94,114,109,89,85,108,84,83,102,94,105,99,101,99,105,99,87,81,98,89,103,91,103,86,96,98,92,87,102,91,97,92,94,88,95,96,96,66,91,104,104,71,105,105,112,102,98,97,103,101,79,68,95,107,95,93,89,118,97,88,95,93,107,106,105,95,94,104,116,96,95,92,92,105,98,95,98,101,103,101,102,104,104,112,95,95,95,109,109,90,113,99,102,59,102,99,91,97,110,91,104,100,104,96,96,101,96,104,96,85,105,105,88,103,98,100,88,97,95,108,85,84,99,106,92,104,100,110,106,102,102,100,83,91,101,105,91,91,113,90,99,91,100,104,103,106,101,101,94,96,109,94,95,93,94,109,94,113,100,80,101,86,89,96,93,101,94,107,91,99,105,109,85,108,101,92,91,95,105,95,91,108,92,98,95,96,92,94,83,98,100,97,101,92,111,104,104,101,92,98,98,72,99,100,103,97,113,97,102,104,109,105,95,110,96,108,92,105,100,103,99,94,106,85,92,96,104,102,103,95,97,91,97,102,102,97,98,88,105,101,97,96,96,90,113,112,106,93,98,97,91,102,90,100,91,93,104,99,96,100,101,92,101,83,93,100,96,91,84,95,95,94,91,97,104,98,112,113,97,90,78,84,104,99,91,90,100,93,95,101,96,99,91,96,96,94,105,101,95,100,82,99,96,100,106,107,104,115,94,94,89,105,104,90,98,106,107,94,96,98,96,113,96,95,105,100,96,102,101,101,94,106,116,102,102,99,94,101,98,87,99,119,109,99,100,93,96,98,102,105,100,90,98,107,92,106,100,94,86,94,104,104,102,98,99,95,109,117,91,94,87,88,107,99,77,91,93,103,93,101,98,99,99,102,94,103,98,104,99,104,99,97,93,96,106,104,105,104,89,97,98,91,100,97,93,94,95,92,65,98,99,90,96,100,101,107,102,97,92,104,97,102,90,97,100,104,100,113,108,104,101,97,106,91,101,104,100,106,94,99,97,106,98,99,104,97,95,112,87,104,91,107,100,110,90,97,117,90,113,110,112,89,99,104,101,88,93,99,105,97,105,99,88,101,106,98,94,88,82,94,105,105,87,92,102,106,103,114,97,101,93,101,101,99,94,110,107,106,99,93,99,87,99,107,93,95,99,97,93,99,95,95,102,94,91,101,100,94,100,88,100,102,92,101,104,102,93,84,97,108,101,118,113,89,112,99,100,108,108,97,102,101,100,89,109,105,109,94,95,101,104,97,103,103,76,94,92,93,93,92,100,105,96,98,100,88,104,106,105,101,91,105,111,105,98,103,105,105,96,98,101,85,99,96,108,102,95,87,104,111,105,95,86,93,96,98,98,102,96,109,108,91,88,78,101,94,98,100,102,86,102,96,95,105,99,100,84,96,97,89,104,96,108,92,88,90,107,102,99,99,91,77,105,98,102,99,102,104,93,94,85,92,94,102,95,97,98,112,105,103,99,95,69,102,95,86,97,115,95,106,94,107,95,107,91,91,102,103,92,90,97,90,102,79,95,108,103,113,86,98,112,107,101,97,97,95,90,112,94,108,106,106,95,107,105,109,106, +714.68695,109,101,100,104,86,91,96,113,92,85,96,101,95,117,95,104,98,106,107,97,100,97,102,103,98,105,109,104,105,89,97,109,99,79,117,90,98,98,92,104,95,105,92,114,106,114,106,109,109,108,82,122,96,99,96,90,101,89,92,96,99,114,107,102,92,71,105,98,95,92,118,100,102,89,94,110,114,104,79,101,108,107,99,113,112,103,104,104,95,93,101,88,113,105,97,85,107,89,87,100,95,115,99,104,105,103,102,109,108,107,114,107,105,94,99,99,97,105,107,100,96,113,110,98,97,115,106,91,91,95,121,99,108,89,112,93,99,99,99,108,109,99,71,98,102,109,109,101,84,96,111,92,102,99,100,103,91,90,93,96,97,90,102,116,89,103,99,103,86,97,106,94,95,94,107,105,125,100,103,87,102,119,98,100,106,103,98,101,92,98,100,98,110,93,106,102,95,114,109,101,91,100,108,100,102,106,103,86,94,92,102,103,99,104,93,95,100,104,83,93,96,98,85,94,97,92,102,109,109,105,87,98,91,97,103,105,105,94,99,92,109,100,94,105,103,105,103,104,113,100,95,103,100,116,102,105,94,113,98,100,96,106,99,100,111,110,104,102,101,91,108,106,113,97,101,94,104,113,100,112,101,103,113,95,100,102,97,99,102,91,99,98,100,113,100,93,115,111,105,107,107,100,71,104,105,105,108,90,105,92,97,111,100,79,98,96,87,107,108,94,95,92,103,108,99,80,98,95,110,94,115,99,102,95,99,101,102,96,93,103,100,95,108,105,96,109,98,105,100,102,111,112,97,88,107,94,103,108,98,102,99,92,111,95,94,103,105,115,105,94,96,98,109,101,98,83,95,95,101,100,103,95,100,97,96,97,97,100,93,102,108,101,93,114,100,106,97,88,91,97,91,94,99,94,90,98,90,100,95,103,108,93,94,101,90,99,93,101,109,98,113,95,91,106,99,93,104,94,105,111,108,102,104,106,106,99,90,97,111,100,104,110,102,53,86,99,98,97,101,107,92,95,104,105,105,105,97,84,107,101,108,128,92,98,102,98,92,91,108,98,107,93,102,113,111,123,95,104,96,104,108,95,96,96,86,93,101,97,93,90,102,111,103,96,98,105,101,101,104,98,97,96,110,98,99,100,88,99,97,95,110,108,103,99,93,110,110,113,101,99,110,105,99,100,99,114,103,99,99,97,99,89,92,104,95,104,100,87,99,110,67,94,103,105,104,108,108,93,100,94,108,113,102,109,97,102,105,109,99,108,99,97,95,96,98,95,95,99,98,95,104,104,103,99,102,102,97,94,92,100,83,98,81,91,100,114,107,83,104,96,102,96,99,104,107,99,109,104,107,102,93,98,99,93,104,99,104,116,107,97,95,95,98,94,104,103,107,82,108,94,105,105,101,114,91,95,105,103,97,99,114,107,100,96,101,106,110,96,101,96,109,104,96,110,86,101,93,94,95,110,91,112,103,91,101,105,103,106,97,96,103,103,98,100,68,98,103,96,104,97,99,108,118,107,104,112,100,91,105,97,99,100,103,90,91,90,96,111,96,88,113,110,96,109,96,108,102,99,106,95,102,88,111,99,103,111,107,104,95,84,98,116,99,99,97,98,99,108,101,87,95,98,94,94,96,97,96,96,98,109,105,103,91,104,91,100,99,95,94,101,118,94,96,95,100,106,102,103,116,87,101,98,101,100,106,101,100,101,100,103,101,110,104,101,96,91,90,108,104,80,104,85,103,104,90,104,104,111,101,98,105,102,99,112,93,102,97,112,96,108,99,98,100,96,107,99,109,99,102,89,99,103,94,71,106,113,107,98,95,100,136,112,99,100,101,102,101,97,95,88,98,105,102,112,100,104,102,102,105,76,101,99,97,99,91,104,105,92,94,110,92,100,103,100,96,102,106,103,103,102,100,106,99,109,98,107,91,113,102,103,108,101,108,99,99,83,108,97,110,110,98,95,112,89,107,94,91,114,98,90,98,117,100,113,94,91,113,99,91,89,95,100,103,106,104,97,101,100,104,101,95,108,115,102,99,114,97,90,106,102,105,112,102,102,89,84,110,113,116,109,100,108,99,97,78,101,105,98,102,104,107,130,82,110,88,100,105,89,81,112,106,98,106,100,86,100,110,99,100,106,99,98,107,103,98,102,126,102,97,101,105,116,97,101,98,104,102,100,98,93,83,101,104,102,103,100,97,108,98,95,109,99,102,85,97,95,99,95,89,82,105,106,103,98,116,97,96,100,96,109,104,100,91,105,103,85,92,100,83,87,80,78,98,91,101,103,100,101,101,113,101,105,114,96,91,93,100,90,104,102,112,106,103,110,102,101,101,90,98,104,98,101,117,101,98,93,106,115,98,102,104,105,111,88,96,92,98,97,104,98,99,97,101,110,109,109,94,90,100,92,94,109,99,104,111,111,102,100,97,101,99,106,92,88,124,100,97,105,110,90,108,103,115,101,94,103,93,87,111,113,99,94,102,109,98,88,98,80,104,99,94,104,94,101,96,106,102,105,93,103,91,97,93,102,102,106,107,108,95,92,107,109,103,90,101,97,84,108,100,104,106,87,92,100,96,98,105,104,103,97,108,103,105,105,96,117,112,93,105,105,105,83,112,99,112,116,101,106,95,81,98,97,109,112,79,104,100,108,105,105,106,99,93,105,100,104,95,99,102,107,94,101,110,95,95,137,103,106,91,77,106,95,102,90,98,103,105,102,99,105,108,101,109,89,100,115,102,103,95,100,96,99,104,99,92,104,99,97,100,99,95,100,92,112,107,105,92,104,105,104,99,102,107,88,111,101,103,98,106,101,105,105,97,97,104,99,96,97,93,100,104,105,94,106,101,95,98,112,99,102,108,100,101,121,91,104,102,92,98,109,101,104,104,94,87,113,98,98,109,112,95,109,93,100,94,119,97,93,95,107,108,94,90,105,96,101,96,104,100,98,98,96,105,86,94,95,109,107,96,109,105,105,103,98,95,105,111,106,105,105,98,91,94,114,110,105,105,91,87,104,96,99,118,97,102,89,103,100,104,95,103,97,102,105,103,106,101,99,95,93,108,103,111,97,103,89,100,102,103,92,92,97,99,110,103,108,97,103,100,98,94,105,111,89,104,99,95,99,82,104,97,94,111,107,102,105,101,102,113,81,104,95,85,98,94,102,104,102,96,96,99,99,111,99,112,99,96,97,98,98,117,111,90,91,98,101,103,75,97,93,104,95,101,106,96,97,94,98,97,79,91,91,109,101,105,91,91,87,111,97,99,96,103,96,112,94,100,97,98,108,84,99,101,112,102,111,100,98,97,107,89,71,104,91,67,109,94,105,94,95,106,108,105,104,94,101,110,99,110,109,109,100,101,98,99,108,93,92,91,79,100,107,105,86,97,108,83,92,98,95,112,89,87,102,96,107,106,114,91,106,98,96,94,113,105,98,103,95,101,103,97,101,100,107,94,102,93,106,108,94,81,108,108,101,93,94,94,92,113,93,100,109,93,106,100,84,93,109,121,93,96,102,102,96,106,109,99,104,78,93,107,95,100,102,99,106,96,95,110,97,91,112,93,92,99,102,103,93,99,88,98,103,105,96,100,97,99,104,107,115,104,96,97,98,93,93,112,106,100,107,98,95,98,102,96,112,93,102,93,95,95,101,97,99,104,101,104,102,91,91,106,102,104,103,80,106,94,112,79,93,107,99,110,101,81,90,105,94,105,100,82,92,108,102,117,108,99,110,102,103,99,96,105,104,116,98,116,102,110,105,73,100,96,111,94,100,97,106,101,94,106,105,98,98,96,106,101,88,103,97,84,105,97,92,103,100,94,93,97,93,109,110,111,106,98,97,109,92,108,96,91,101,97,96,106,101,102,100,95,107,107,97,93,106,102,113,101,100,116,105,109,105,72,94,99,102,95,100,99,89,93,103,92,110,105,98,113,91,101,98,94,95,108,99,102,110,105,101,98,105,91,87,107,107,97,100,89,87,103,100,106,97,103,95,104,91,97,104,106,96,113,90,105,95,100,111,101,96,101,101,89,89,109,102,91,105,127,101,108,96,97,104,101,98,103,102,92,95,86,91,108,104,98,103,92,106,107,93,111,96,87,102,103,98,103,99,96,107,92,111,109,90,103,92,105,88,100,110,97,96,101,91,101,106,92,100,105,105,101,98,100,104,86,98,116,105,101,98,108,113,96,98,113,113,91,106,99,103,89,99,103,105,111,108,89,93,89,85,89,92,100,99,108,101,103,98,97,93,87,99,89,107,116,103,91,94,94,96,104,96,107,90,98,108,110,98,98,99,101,113,113,94,98,99,96,92,94,101,88,107,83,96,92,100,92,99,120,97,113,106,94,101,83,103,87,99,99,107,106,100,92,104,91,101,103,110,96,102,108,89,100,102,92,91,96,109,98,102,97,99,101,99,97,98,96,89,112,97,102,89,113,98,94,67,80,98,100,100,101,118,91,91,107,109,94,98,112,97,105,102,116,101,95,87,113,90,93,105,114,109,112,106,98,105,105,110,99,91,102,105,103,104,115,102,106,103,102,97,107,110,100,94,94,94,102,89,93,103,104,102,101,92,103,111,105,101,97,100,101,110,107,92,102,102,106,100,109,102,106,95,105,104,104,96,97,120,103,74,105,88,76,113,95,100,95,102,101,102,108,89,94,102,106,102,104,109,87,110,100,96,89,93,87,105,101,108,111,96,112,100,102,98,100,93,96,100,93,116,93,94,98,92,113,100,103,98,107,101,104,99,103,94,98,99,101,106,104,92,100,98,107,104,100,108,102,95,105,117,94,107,117,106,92,113,96,104,97,106,108,107,104,110,111,100,111,75,86,58,101,100,107,106,93,111,97,95,95,99,68,90, +714.82831,86,105,100,97,94,104,107,101,87,90,109,100,85,90,99,96,97,108,109,109,115,102,100,99,102,105,98,94,97,107,89,97,92,111,105,104,98,90,96,102,100,97,79,94,100,108,92,100,88,102,110,99,111,94,99,95,99,98,109,95,101,78,95,102,97,96,85,98,107,92,110,100,109,104,105,112,105,91,94,93,97,105,97,106,107,104,108,93,96,110,90,104,110,107,93,94,99,88,99,103,104,99,96,98,99,96,98,97,87,99,95,96,97,92,110,105,93,98,86,92,106,92,103,113,96,107,102,101,106,106,87,111,92,113,105,105,109,74,92,103,106,101,86,95,98,100,110,91,92,100,102,99,110,97,97,100,112,93,104,104,105,106,92,90,63,99,97,108,102,99,94,107,90,95,95,87,90,104,92,97,101,105,95,105,104,94,101,88,105,101,99,108,110,99,100,91,91,96,92,99,101,79,103,105,101,100,98,103,114,108,101,107,105,99,94,95,104,100,93,102,111,105,109,109,84,106,110,111,89,101,101,117,103,97,107,111,98,88,78,100,99,89,100,103,94,100,102,107,98,121,105,92,97,108,98,99,96,104,98,107,94,95,109,103,110,104,104,90,103,92,104,108,82,97,99,100,96,104,83,102,102,97,103,104,106,102,94,103,105,84,98,96,104,86,106,109,90,95,106,99,105,98,98,104,96,107,103,105,95,102,99,114,96,100,106,95,91,101,96,97,102,95,103,101,100,95,91,96,107,109,104,92,94,106,105,94,98,108,107,106,97,101,91,98,88,90,102,118,109,99,101,98,109,94,99,107,112,98,102,99,106,93,114,103,105,109,122,96,99,103,103,101,103,96,104,113,93,99,89,107,95,104,101,101,92,94,89,88,89,108,94,96,92,106,93,98,109,95,97,92,96,90,93,69,98,90,92,100,111,95,98,91,105,112,89,105,99,94,88,98,103,112,104,102,89,91,105,101,104,101,85,104,103,110,105,96,101,90,95,103,101,93,90,91,101,103,97,90,91,113,108,93,91,98,91,103,105,100,102,88,99,108,86,105,103,108,106,101,105,118,103,97,99,103,107,103,106,100,104,96,98,100,117,100,118,96,95,104,103,99,106,116,96,97,96,99,93,101,111,104,105,96,109,94,99,85,102,101,102,86,99,102,98,106,97,99,95,107,90,96,97,98,96,109,94,101,106,101,98,100,95,108,106,103,99,105,84,102,101,99,107,92,107,94,101,113,98,120,98,111,94,101,101,91,95,87,109,92,111,98,86,100,95,120,95,84,95,106,104,86,100,106,101,90,106,101,104,102,105,101,82,97,101,93,96,101,104,114,99,97,104,113,100,111,100,103,95,99,83,91,102,106,99,98,100,102,96,113,97,106,96,107,101,107,107,96,95,107,107,102,104,94,102,98,93,102,101,103,105,87,97,101,90,107,99,102,100,95,116,105,95,99,102,109,101,101,91,93,101,94,104,100,108,96,95,96,107,109,95,90,104,91,104,98,100,103,105,93,104,101,93,103,103,100,96,100,106,113,91,88,110,98,90,88,91,105,101,110,80,110,104,108,103,104,87,110,91,97,101,99,102,107,95,91,105,112,100,106,93,106,98,105,87,111,94,92,89,91,99,101,102,101,87,102,91,98,97,95,83,99,101,97,108,97,90,101,101,89,95,119,98,101,101,98,108,103,101,95,90,99,121,88,95,98,98,85,116,110,98,105,128,92,96,105,100,101,96,101,99,92,95,113,95,98,91,103,88,91,103,100,100,99,105,96,108,100,88,100,102,102,107,95,103,104,105,100,99,89,98,111,98,97,92,88,98,84,101,103,75,95,96,94,103,98,93,95,108,105,99,93,95,113,99,98,87,82,105,96,102,97,92,98,97,92,105,94,101,92,98,98,95,108,86,105,99,111,100,97,95,93,104,101,103,99,92,108,88,97,106,102,98,97,109,101,104,98,99,91,115,91,99,101,101,88,94,89,98,96,103,97,100,106,98,103,100,104,99,105,92,79,89,98,93,102,115,95,105,98,99,92,103,110,104,107,106,104,91,100,88,101,103,114,106,121,102,90,93,97,97,98,107,106,122,98,103,101,93,95,114,102,82,83,94,107,86,100,106,109,96,93,114,107,109,102,93,98,80,102,91,105,96,97,98,109,102,107,96,103,108,87,96,108,103,98,106,88,88,111,93,96,97,84,98,92,97,94,106,87,95,100,82,104,99,95,102,94,93,98,110,96,99,106,103,105,102,96,99,102,104,100,97,93,89,97,111,98,111,97,85,97,87,93,98,101,99,95,101,93,107,90,98,110,102,85,107,101,107,94,111,92,102,117,118,82,92,90,91,95,111,96,100,100,106,103,96,102,93,109,100,96,99,87,100,91,107,98,99,102,106,97,91,104,99,97,103,109,104,110,98,98,95,108,98,71,107,104,97,87,95,91,100,106,96,87,87,93,101,98,88,96,102,98,100,89,98,125,98,94,100,98,107,95,97,102,101,106,109,108,95,88,91,109,95,100,109,98,99,106,93,90,98,102,80,103,88,88,100,95,105,97,116,104,102,95,96,100,103,95,90,87,111,93,94,95,85,91,96,102,103,94,103,94,99,94,107,102,97,104,93,99,102,93,102,87,90,94,110,98,100,98,91,106,102,107,99,97,95,88,102,95,119,105,98,99,106,102,102,105,91,104,105,108,93,98,89,115,97,87,75,104,77,98,98,91,103,98,104,103,94,120,100,99,106,103,110,87,108,100,106,100,101,88,88,90,102,101,95,98,80,93,98,100,88,94,97,91,104,108,97,96,99,103,100,99,96,102,107,91,99,98,104,115,115,101,95,99,103,100,94,102,103,96,98,107,98,69,99,107,90,107,110,104,110,102,96,98,91,99,107,105,88,99,99,101,92,109,94,87,92,106,96,109,103,107,93,106,96,100,99,93,101,99,99,100,109,103,88,105,104,88,103,89,102,97,102,92,95,101,98,106,85,104,97,103,92,93,83,100,96,102,84,87,101,107,100,105,104,89,102,110,94,88,97,98,100,89,107,91,90,101,98,107,102,108,100,97,94,101,99,95,84,92,100,88,106,102,109,83,95,101,92,98,96,117,95,94,94,100,87,101,109,92,99,102,101,83,106,100,84,95,102,84,100,100,100,105,91,100,117,97,95,97,91,115,113,118,120,101,103,124,100,113,100,96,94,104,90,101,101,103,100,103,97,94,102,108,88,87,100,104,105,98,100,94,101,94,99,104,103,110,90,95,111,100,95,91,98,99,94,106,96,89,103,101,94,108,99,90,98,115,110,109,90,98,100,97,95,95,96,92,97,103,93,88,101,105,103,104,96,99,98,102,104,92,96,98,105,88,101,94,84,102,80,94,91,94,103,95,109,103,92,111,101,98,104,89,91,92,100,95,101,80,99,93,93,97,114,93,76,105,105,76,98,98,94,100,100,94,90,90,98,102,103,103,97,100,84,113,95,96,95,85,89,102,105,97,100,100,108,87,91,94,97,99,102,90,93,98,94,112,93,95,101,86,96,105,105,98,100,108,96,103,96,90,102,96,105,93,95,98,96,97,99,121,88,100,112,102,100,98,94,96,74,106,82,83,95,101,100,105,98,95,99,89,106,97,96,96,97,102,95,109,103,109,99,98,103,111,112,94,101,104,94,96,89,97,98,111,102,91,95,96,100,99,92,83,108,95,98,89,101,95,102,83,96,86,105,104,94,92,85,94,82,91,98,106,99,98,97,117,100,96,107,104,94,94,91,95,93,105,91,120,64,102,98,108,97,104,101,90,110,94,102,94,93,108,87,84,108,95,97,103,99,95,93,95,115,100,102,104,95,104,102,89,102,105,102,92,99,98,101,100,87,93,94,101,106,95,107,85,96,95,87,93,103,95,102,99,90,88,70,92,99,97,89,101,90,98,100,106,97,90,93,106,87,93,99,91,97,89,104,102,102,99,105,98,98,89,98,89,104,93,81,98,103,101,90,100,92,101,112,88,99,109,104,95,106,107,96,116,102,95,103,102,108,102,103,94,107,96,96,99,130,94,107,96,99,96,101,88,94,100,98,102,104,80,100,94,94,109,91,102,104,118,83,106,95,86,93,93,95,87,87,93,95,86,90,100,94,103,103,92,100,83,100,104,94,92,99,92,100,103,78,94,103,97,93,89,102,88,97,96,96,70,108,90,93,102,103,108,103,105,95,102,92,83,93,103,98,88,95,94,102,102,94,102,96,97,104,98,83,103,99,105,100,98,102,104,96,103,97,98,102,93,97,85,92,103,90,92,104,94,100,94,109,106,99,104,94,112,98,89,77,92,95,92,115,101,101,99,107,97,96,102,89,103,107,94,101,102,101,106,96,97,91,96,99,83,101,99,97,105,103,93,100,89,88,97,100,106,100,95,100,98,92,97,89,93,108,81,106,105,102,92,100,83,96,87,100,102,102,101,101,96,76,98,111,98,90,110,95,88,84,86,107,94,97,93,98,80,102,87,88,95,99,105,104,106,108,101,101,91,100,94,90,101,100,98,99,104,100,99,100,84,104,100,99,102,98,101,108,87,91,101,114,95,97,101,109,95,110,109,100,100,97,97,96,99,100,85,109,114,104,99,120,98,107,104,95,98,97,94,98,114,96,92,98,83,100,91,100,98,100,95,96,106,108,92,102,98,99,91,98,103,95,72,109,102,98,91,102,106,94,85,109,109,103,90,107,104,98,114,102,100,94,91,88,104,109,111,85,100,111,99,88,109,89,81,100,99,64,100,100,101,99,92,88,115,102,106,111,89,119,97,98,90,100,90,98,98,94,88,100,82,90,105,95,101,106,105,99,93,95,96,105,88,67,101,105,101,118,98,113,102,95,101,91,87,97,99, +714.96967,78,109,97,82,100,101,98,97,108,102,103,102,97,97,101,90,108,108,90,95,99,110,97,92,104,101,98,110,99,113,105,92,103,96,110,98,100,94,106,99,98,95,104,100,100,102,100,106,102,104,108,105,107,96,105,104,96,95,103,88,99,100,92,92,97,108,86,105,106,91,107,104,112,117,95,120,83,99,96,90,103,99,91,101,96,100,99,93,102,99,94,72,94,102,105,99,94,96,102,106,128,106,96,92,97,100,100,106,75,97,98,97,99,97,101,102,99,98,100,134,106,98,99,115,97,106,107,94,102,93,96,109,95,99,103,113,93,106,97,101,96,108,100,101,90,103,97,106,101,105,109,110,120,94,85,104,98,104,105,105,101,88,100,86,101,106,103,93,91,92,89,91,93,109,104,96,105,90,103,86,97,92,98,101,95,87,88,97,95,96,101,103,94,88,101,101,108,91,87,97,101,105,94,100,100,135,100,106,104,106,96,100,103,101,108,101,111,99,87,110,100,100,98,90,97,98,96,100,97,104,84,81,104,102,106,96,116,102,97,80,103,106,97,104,104,110,91,98,98,127,106,101,104,111,103,109,105,105,96,91,63,100,114,109,98,104,102,103,102,95,108,99,113,108,98,102,110,104,91,91,90,92,106,95,102,105,79,98,97,81,96,98,104,118,108,103,98,107,102,97,94,104,90,103,82,107,96,96,96,100,99,98,98,98,95,101,103,90,91,96,105,81,99,101,104,113,94,95,106,111,97,100,103,97,98,110,101,86,93,104,92,107,102,94,100,96,92,103,95,107,94,112,105,99,107,93,105,92,109,91,103,96,92,95,100,100,102,100,96,107,99,104,102,98,85,98,94,96,83,92,113,110,108,77,104,94,108,101,97,98,102,96,96,101,91,87,94,91,103,97,91,98,98,99,102,94,94,90,97,92,92,93,95,91,98,98,104,104,99,105,103,103,97,91,86,92,106,88,91,100,89,91,103,110,95,101,96,99,114,101,100,126,94,96,98,92,92,97,97,105,91,95,110,104,106,98,92,97,89,102,103,97,98,94,101,100,100,89,96,108,78,95,83,86,105,103,96,110,95,99,92,104,112,107,84,97,101,91,97,84,102,107,81,92,83,110,96,108,115,107,108,101,93,96,110,96,96,95,102,110,98,98,110,101,90,103,87,99,107,91,100,95,99,108,103,95,105,98,101,101,105,93,110,94,90,96,95,96,90,106,102,96,102,85,118,97,99,100,120,94,102,109,95,110,106,104,96,104,109,93,98,106,94,104,78,101,99,109,98,95,91,95,89,101,100,109,99,104,91,100,99,101,126,105,91,116,103,93,97,92,101,113,88,102,108,104,95,87,97,113,99,122,82,101,101,106,99,100,99,100,100,104,92,96,97,102,87,94,101,92,95,96,104,100,92,106,106,98,95,98,109,100,98,108,95,101,96,97,101,83,91,107,97,92,113,90,94,107,110,99,97,99,110,96,91,103,105,100,98,105,102,103,95,116,79,106,102,93,95,99,108,105,118,105,99,103,100,101,95,99,104,99,98,95,94,105,105,94,103,71,100,92,101,98,85,103,88,100,108,106,99,97,105,96,91,117,102,99,97,99,109,95,103,96,97,113,101,129,89,95,101,85,101,102,97,96,114,104,114,112,104,105,92,108,100,105,95,98,102,96,105,99,89,91,103,106,99,100,83,109,94,89,80,102,112,110,101,98,112,103,102,96,89,93,101,101,103,103,94,103,122,97,105,99,88,111,91,98,99,113,117,103,104,115,89,88,105,104,113,99,109,113,97,109,101,96,115,133,92,104,100,95,96,103,97,101,92,102,112,114,99,97,93,99,101,88,125,100,105,101,103,94,99,105,100,109,88,92,105,98,102,95,115,101,103,99,101,100,100,98,91,97,100,100,102,71,82,89,108,108,110,100,102,92,101,105,94,107,101,95,99,93,101,103,97,101,97,91,111,103,103,101,96,102,91,108,100,91,91,109,103,99,98,91,100,93,103,100,100,116,100,108,97,103,101,101,100,114,102,112,98,104,90,105,91,95,114,88,96,98,110,104,96,97,97,101,100,108,103,101,103,97,96,105,100,94,97,96,100,97,110,102,106,105,87,103,106,97,95,110,99,81,105,90,99,110,91,106,114,100,101,104,103,95,110,121,106,91,107,101,102,101,101,99,102,103,99,115,94,101,96,94,100,99,96,104,104,95,102,107,92,100,93,94,107,95,99,94,105,77,107,101,94,100,97,106,100,111,89,103,98,108,83,95,93,100,104,100,95,98,85,92,90,94,87,106,113,105,94,96,103,111,114,91,105,102,91,95,94,99,102,100,103,95,104,99,98,103,97,106,95,75,96,90,98,92,106,110,106,102,113,119,99,101,92,96,106,109,97,104,88,106,105,115,104,93,108,104,102,97,98,99,86,95,97,109,100,99,95,98,99,98,101,90,109,98,87,94,103,97,90,102,96,91,85,87,96,106,113,92,98,98,104,87,100,95,115,98,101,97,102,105,106,94,107,89,99,107,90,94,98,100,90,96,107,93,87,98,102,93,105,109,116,90,113,96,97,99,101,104,95,102,95,98,89,102,105,109,107,132,98,100,103,99,99,101,93,104,96,105,112,94,96,101,101,106,113,101,99,102,88,98,102,107,94,88,102,98,100,99,107,91,109,105,98,100,98,107,105,103,108,98,118,95,114,109,94,104,101,93,101,103,96,100,92,90,109,93,94,87,106,74,100,109,97,67,87,118,100,97,104,107,82,96,103,90,111,108,88,91,96,107,95,99,105,99,96,109,128,114,105,96,102,103,92,94,109,102,91,90,107,100,95,112,107,86,98,104,100,108,105,113,100,100,98,107,117,100,88,103,102,94,90,116,97,98,96,118,93,98,105,105,100,108,104,94,96,98,99,95,103,97,97,99,106,113,101,94,90,100,104,88,106,96,90,93,92,97,114,95,87,101,105,104,108,111,94,89,100,117,104,107,96,109,101,99,96,108,101,96,97,97,95,117,106,94,104,93,107,97,96,108,104,97,101,105,103,94,104,101,94,99,109,99,102,97,100,93,103,93,106,113,106,103,127,100,95,89,97,108,103,104,102,105,109,89,107,100,101,104,97,68,88,95,97,100,89,86,88,94,106,93,100,104,99,93,109,99,95,95,113,101,97,93,87,98,96,96,95,105,93,94,96,117,103,92,91,88,90,103,104,95,98,91,96,101,102,86,99,116,110,90,106,101,96,96,103,112,92,104,104,111,106,99,100,99,82,100,98,94,91,96,99,91,108,109,105,98,92,91,100,94,102,96,104,108,94,96,88,105,91,111,99,94,101,99,103,95,101,94,88,97,105,100,101,101,91,94,104,94,104,86,99,99,102,104,89,106,104,93,98,91,110,98,99,87,99,101,106,106,108,92,86,100,91,91,94,98,96,96,83,112,101,102,96,98,105,121,98,95,104,102,115,93,90,104,101,105,103,108,101,105,100,104,114,98,96,98,99,98,111,70,100,108,100,97,99,100,103,98,90,109,101,108,99,100,104,96,96,100,100,92,92,91,105,104,99,102,96,101,105,94,105,100,104,114,104,98,110,110,98,95,98,104,92,86,101,97,95,97,102,96,101,101,103,103,101,101,111,106,99,100,83,95,109,102,97,96,102,94,106,94,95,113,92,95,105,84,97,92,97,100,108,105,92,104,112,101,113,102,98,107,103,100,92,90,104,94,67,103,98,101,108,105,106,94,103,98,89,85,93,92,97,94,102,97,94,105,98,91,68,98,91,105,126,116,101,87,112,104,90,89,117,88,99,99,99,96,99,96,88,102,102,80,113,90,112,112,86,95,92,107,98,94,104,100,107,95,109,96,99,93,94,95,93,100,108,109,101,93,100,99,95,91,98,98,95,92,100,91,97,95,106,102,88,104,96,96,94,105,108,98,99,110,115,96,98,129,95,109,97,101,100,105,100,84,94,107,78,100,107,93,97,98,104,110,91,102,89,100,98,95,92,103,110,95,104,97,98,101,110,105,99,109,93,97,100,88,96,99,93,90,113,105,102,104,107,99,106,94,75,101,100,104,91,101,97,111,90,104,103,104,98,105,102,80,100,109,93,92,94,90,100,100,92,106,110,105,99,101,103,88,95,86,90,103,93,87,111,88,112,105,98,109,91,106,95,77,99,99,106,95,90,98,94,100,108,101,92,101,107,87,101,97,112,81,101,90,95,102,92,90,97,95,102,95,96,103,116,109,102,111,121,101,104,91,96,97,90,92,106,97,102,104,104,96,116,101,108,105,109,104,116,106,94,110,107,99,90,106,119,91,94,105,94,109,98,106,106,103,92,92,102,99,106,112,96,95,86,94,95,99,100,102,95,105,92,111,104,105,97,95,105,87,102,108,101,94,87,92,101,101,98,106,98,95,96,80,105,91,104,112,100,101,96,95,102,97,105,101,96,109,99,114,88,99,90,106,90,98,89,97,87,106,107,102,98,119,95,96,100,83,105,88,97,99,99,91,95,114,107,113,95,103,99,95,94,96,97,99,88,96,108,80,106,95,96,104,93,97,94,84,91,105,109,102,98,109,108,95,93,98,98,85,90,100,103,100,94,103,102,93,91,99,114,98,100,96,92,105,106,98,102,96,89,99,87,102,98,104,100,107,95,120,102,96,109,103,106,111,123,100,116,104,100,96,99,96,87,105,97,101,95,101,84,87,97,104,98,97,97,95,90,109,93,95,89,105,94,88,91,101,95,95,101,95,81,94,98,105,116,106,93,90,103,91,80,113,98,102,111,95,110,97,112,103,94,94,103,101,107,98,116,99,96,99,94,91,102,99,109,105,101,91,87,88,98,101,112,98,80,99,94,111,111,100,92,100,83,95, +715.11102,104,88,86,88,86,102,100,92,87,94,100,97,100,95,96,113,93,89,109,96,105,102,94,96,110,101,98,98,104,95,107,108,102,104,109,99,106,90,101,95,93,92,100,94,110,103,101,106,101,115,91,100,89,106,93,95,96,98,100,104,96,106,100,98,91,103,100,101,100,102,97,107,104,94,104,107,95,104,99,97,107,96,99,101,100,101,94,105,99,97,110,109,98,99,83,91,92,109,100,95,101,99,105,97,108,95,102,101,104,93,92,102,99,98,95,104,91,94,106,98,103,103,97,100,98,104,105,105,98,103,96,113,102,96,104,100,103,102,94,96,94,113,106,96,94,86,87,103,94,90,95,83,90,92,100,105,91,92,106,91,100,102,105,90,105,108,99,94,109,100,98,92,93,105,104,84,95,91,111,84,92,100,88,112,98,91,100,98,99,104,100,106,107,100,98,97,103,94,125,108,99,95,79,112,76,107,102,92,105,105,108,99,103,104,102,89,102,102,120,94,104,88,72,93,98,118,94,104,103,84,109,103,104,101,103,104,90,107,102,96,105,105,106,80,114,107,109,100,106,99,99,110,97,118,109,92,102,106,90,105,105,83,100,116,94,95,110,110,100,102,95,94,98,96,100,107,101,99,105,109,98,96,99,86,98,85,89,99,107,98,98,105,117,110,114,107,94,104,98,104,100,98,102,94,95,105,108,108,108,98,100,123,113,99,95,108,109,109,106,104,95,92,93,99,91,92,99,98,97,100,94,125,95,91,105,106,78,99,100,98,105,100,100,94,113,105,94,103,97,95,84,106,103,113,89,97,102,98,121,101,97,96,102,92,113,108,78,111,95,100,113,101,99,93,101,96,112,96,104,111,104,103,100,103,101,98,101,94,103,99,102,91,91,105,91,95,89,77,95,106,98,94,97,93,86,94,109,99,109,113,102,97,99,98,105,96,99,102,98,103,111,103,105,101,87,100,100,93,94,100,96,102,93,107,100,98,105,103,83,96,108,97,98,108,105,96,104,103,112,99,106,96,92,106,112,100,101,98,99,91,104,94,109,85,92,101,101,103,93,97,88,108,97,103,105,100,70,101,105,98,106,99,108,106,94,90,92,94,92,88,94,82,106,109,98,108,88,100,101,94,105,102,105,98,108,96,98,108,106,90,79,94,102,109,109,93,77,89,83,90,96,97,98,99,114,97,99,96,89,98,95,102,113,96,101,97,98,94,92,99,99,91,99,105,97,101,97,99,95,117,98,99,111,100,103,96,117,99,120,103,106,107,95,103,84,90,109,105,105,95,82,103,100,107,98,104,98,94,101,101,93,123,100,95,94,97,98,89,92,104,98,96,101,100,103,91,88,108,100,99,93,102,103,97,90,86,106,97,96,94,87,95,105,101,100,87,100,104,101,109,106,86,94,90,100,90,101,100,100,107,88,89,102,104,97,103,89,89,103,99,104,108,99,100,111,97,92,96,101,107,102,90,95,105,88,102,97,105,99,99,95,100,102,102,86,104,100,108,98,88,113,96,100,106,94,102,102,99,96,102,102,99,102,86,91,99,91,90,110,83,103,90,93,105,99,105,100,120,101,100,97,97,108,107,107,110,99,99,95,83,105,135,101,104,103,106,105,109,101,88,103,99,93,102,84,102,89,104,108,95,101,107,101,105,90,104,107,113,104,104,93,108,104,109,103,95,108,103,95,100,92,94,103,121,102,100,98,102,98,100,107,93,87,104,86,99,102,103,99,90,100,100,93,105,108,97,102,99,105,114,102,101,108,94,105,93,102,101,103,113,116,97,97,98,103,109,93,100,102,116,114,95,99,110,99,106,104,101,103,91,102,98,109,99,89,95,110,105,107,87,79,101,100,103,103,105,105,101,109,104,99,89,95,101,104,103,95,97,110,110,100,98,105,101,95,99,97,89,95,108,101,101,107,96,94,110,103,95,91,93,99,111,99,91,98,98,96,96,104,105,108,102,101,107,103,105,106,102,104,87,103,97,102,111,109,102,104,120,97,100,100,102,99,105,97,93,88,106,95,109,104,94,97,112,103,98,100,93,107,110,95,95,95,107,97,89,93,112,96,99,96,99,102,107,91,116,88,87,98,110,94,96,86,96,105,110,86,99,98,100,101,105,100,106,100,90,102,103,87,108,94,89,103,95,102,105,105,93,70,100,109,105,97,91,114,105,98,88,93,102,92,103,106,86,105,106,114,101,107,98,91,107,88,100,111,105,108,94,93,90,104,99,100,100,102,101,88,101,94,103,108,109,96,95,93,102,104,85,95,96,84,96,106,89,96,83,99,92,101,86,111,95,102,100,104,104,93,111,100,106,114,101,111,93,103,79,72,108,100,101,101,98,106,100,99,94,101,96,105,103,96,104,94,65,111,106,104,85,109,92,95,103,100,80,116,99,101,97,94,109,107,102,82,114,108,106,93,113,104,92,106,91,98,103,99,87,74,91,113,97,94,94,98,96,94,99,86,97,94,101,104,96,110,99,96,99,109,103,99,97,100,116,95,106,113,97,93,82,99,90,98,98,97,101,105,109,105,97,116,112,102,103,91,97,91,106,103,99,94,102,101,100,97,108,95,89,98,95,104,94,97,110,100,109,100,97,108,102,99,97,110,87,106,84,98,102,115,94,87,118,108,99,98,100,108,110,93,109,110,93,94,107,86,109,109,106,106,112,107,103,100,100,104,103,91,113,96,90,91,95,102,109,106,88,100,97,113,86,101,104,97,103,113,107,107,107,94,106,90,102,107,104,105,102,99,88,96,101,109,92,110,95,94,109,107,96,98,102,93,97,103,97,105,96,94,106,89,103,96,108,98,108,113,103,100,92,101,109,93,103,96,93,102,109,101,95,130,105,101,105,98,110,88,99,97,87,92,103,106,117,101,107,111,99,105,105,106,98,89,95,102,98,97,101,112,99,101,95,100,91,96,108,104,102,109,93,108,104,98,98,92,95,102,104,106,102,100,88,97,86,107,94,103,93,91,99,103,109,102,94,101,103,93,112,95,108,95,90,102,102,106,113,107,101,102,92,104,99,95,89,97,81,75,102,93,100,102,104,108,95,105,101,99,97,94,79,96,106,111,108,98,106,113,121,111,108,109,99,92,104,108,87,96,86,93,98,98,98,115,98,102,102,95,101,91,100,108,95,76,111,124,93,95,113,97,99,95,93,111,115,97,101,99,99,93,95,104,109,103,96,103,105,99,102,109,102,108,92,102,83,97,98,99,106,100,97,103,99,100,107,105,99,102,98,91,80,102,96,98,106,99,87,103,100,106,102,108,98,94,98,106,109,108,93,86,100,100,108,98,97,111,93,92,97,93,105,97,94,105,100,105,106,95,109,98,99,81,96,92,82,112,106,88,90,104,98,89,112,101,109,105,105,107,106,94,96,95,98,106,103,107,99,77,87,96,104,92,103,99,93,96,93,93,102,95,106,102,101,97,97,98,106,93,93,95,97,101,97,107,109,91,102,118,113,104,103,105,94,94,95,99,91,116,122,94,98,103,98,113,99,110,100,100,123,106,88,96,94,110,99,102,104,106,101,91,95,101,103,97,105,90,107,100,98,105,106,104,98,97,106,105,90,92,102,93,114,100,100,79,108,99,103,104,94,99,70,110,109,110,103,99,82,94,100,104,102,93,92,100,97,88,102,96,101,87,99,101,109,94,104,87,106,109,85,94,87,103,97,101,87,96,96,113,99,98,105,108,87,89,108,91,98,100,91,102,114,107,102,104,121,105,91,97,91,97,93,84,100,96,108,84,100,91,95,103,88,91,95,100,98,94,95,102,97,95,87,91,108,111,95,92,103,93,104,99,99,105,98,87,98,127,102,106,100,98,88,105,89,104,94,101,102,88,96,112,101,107,100,96,106,94,97,90,107,88,108,94,105,110,90,103,93,112,87,98,100,101,94,105,98,100,98,87,91,88,96,108,95,100,99,92,101,94,101,100,113,109,102,97,108,98,103,95,106,93,97,93,97,101,103,107,98,93,101,90,115,94,104,105,96,103,100,101,103,103,101,105,97,109,94,102,69,105,102,96,109,101,93,100,97,108,87,90,94,98,112,90,93,98,109,96,91,98,100,95,113,92,90,107,98,104,96,91,77,107,98,112,95,102,104,96,93,102,88,102,99,102,82,91,105,103,92,116,102,88,81,92,96,97,105,107,105,97,91,95,97,87,82,107,111,104,101,104,102,101,101,95,107,87,98,99,98,113,95,98,118,101,95,86,99,91,84,89,96,106,102,94,106,106,84,99,99,109,102,103,95,105,96,91,114,103,116,93,94,105,110,109,113,101,100,118,99,99,98,99,81,106,111,111,107,104,99,106,102,96,117,111,100,97,107,97,95,109,108,87,98,93,103,107,101,99,93,93,118,90,95,97,100,109,103,102,96,97,90,93,112,88,96,98,129,91,101,102,102,103,80,105,100,105,113,84,93,96,102,88,82,105,95,98,95,103,97,113,104,100,87,96,83,91,88,103,99,104,101,103,109,102,98,106,104,108,88,97,98,109,100,98,90,104,94,102,77,105,116,103,90,108,90,95,101,91,81,107,107,100,103,100,115,97,95,95,100,110,105,95,103,117,93,91,98,100,92,109,112,92,94,116,105,100,107,104,105,103,104,93,102,98,105,105,95,94,91,83,107,101,94,90,105,98,105,103,108,103,100,104,94,108,117,106,79,102,100,93,94,113,93,97,85,100,90,110,92,102,110,95,91,102,102,108,108,98,110,90,92,108,100,80,80,87,108,107,105,105,97,96,98,81,105,84,103,93,98,79,104,106,108,102,106,90,124,95,104,98,97,91,128,92,104,121,96,92,100,107,90,108,93,87,91,100,78,112,101,105,117,88,97,104,95,104,92, +715.25238,103,88,92,75,118,87,112,93,103,114,98,93,96,100,103,100,95,98,92,96,112,101,103,98,97,94,113,95,99,102,92,87,94,97,107,100,96,104,113,93,105,90,93,88,107,87,89,116,91,94,96,90,93,100,97,113,103,104,102,79,108,76,110,97,95,96,100,100,92,92,100,100,68,117,81,112,97,95,82,99,115,102,103,92,103,99,97,99,95,95,100,93,91,112,104,90,95,102,96,104,96,101,96,103,105,91,93,97,109,86,92,85,94,92,96,94,91,86,98,87,98,103,103,100,102,107,99,89,103,88,102,116,97,108,88,108,98,92,88,90,83,109,82,93,116,84,109,95,71,102,90,95,90,69,90,98,105,91,106,93,105,98,93,99,98,100,102,91,83,103,102,98,100,101,92,70,105,83,109,100,71,101,98,93,95,97,88,90,100,96,104,99,94,102,98,95,97,104,102,103,92,93,87,90,101,105,102,98,78,101,110,105,91,91,93,105,100,100,107,95,104,102,103,95,97,100,105,94,105,111,94,94,102,83,110,97,97,100,94,95,90,99,102,96,93,84,95,95,91,103,101,100,88,108,92,101,90,94,60,97,94,98,96,91,100,91,102,90,106,96,94,92,92,89,98,89,100,91,87,102,100,100,93,71,102,92,93,94,96,98,91,100,91,107,110,108,102,101,99,98,90,88,89,108,132,87,105,97,102,136,89,108,104,72,94,93,93,111,103,94,86,104,101,101,117,91,107,91,103,96,102,94,100,99,102,103,105,91,92,108,101,95,111,87,89,106,104,102,110,90,100,93,103,103,104,96,96,103,105,101,102,90,104,97,101,105,100,99,100,98,92,99,95,96,102,91,108,101,102,107,110,97,99,104,100,95,93,96,100,105,92,94,94,108,90,89,101,92,101,103,89,88,93,90,88,106,97,100,91,107,93,84,106,104,102,86,104,94,107,101,106,104,98,103,98,65,106,99,92,90,99,95,92,94,95,105,93,100,100,88,97,102,100,95,99,94,88,62,96,96,101,92,91,98,103,100,104,87,104,95,104,96,96,121,93,104,98,95,106,104,92,93,96,94,89,106,90,92,98,95,94,91,110,104,98,86,94,100,95,102,113,103,99,102,99,101,95,99,84,95,99,96,91,105,98,95,96,100,99,89,100,100,102,105,104,100,100,100,105,101,102,93,93,97,100,106,99,101,92,112,101,91,82,100,95,96,95,108,98,106,99,95,96,101,100,98,101,104,101,114,87,103,108,105,97,109,107,91,91,94,97,94,109,91,97,96,95,110,102,101,77,97,98,104,92,100,95,113,94,105,105,87,95,113,113,91,120,104,98,101,105,101,94,100,113,108,113,109,94,93,101,95,103,97,96,99,92,103,79,108,87,116,104,106,106,91,100,99,105,98,109,93,107,93,109,96,120,118,97,98,91,96,97,103,93,89,100,95,98,96,111,101,95,97,103,82,95,97,93,95,97,101,104,92,102,96,100,108,88,102,99,96,97,98,94,93,99,102,100,106,105,102,106,105,100,112,100,96,100,108,93,99,78,81,88,96,100,99,89,97,118,96,95,98,109,121,99,113,98,92,91,88,98,107,107,96,101,102,95,102,92,94,98,105,113,98,91,101,91,101,95,80,95,99,93,89,94,87,101,101,97,98,96,96,81,87,110,99,87,96,98,95,108,93,96,96,99,106,83,97,97,71,105,99,101,101,99,99,90,99,96,104,94,105,88,88,89,93,100,83,93,105,97,95,99,73,99,100,104,99,102,95,98,105,99,106,97,94,100,97,93,97,103,109,98,97,103,84,94,111,85,111,86,99,109,94,99,98,96,96,95,112,101,96,102,79,96,96,86,92,101,89,97,103,99,100,100,98,99,100,98,95,95,110,105,99,91,104,86,95,98,96,98,93,88,102,105,99,91,88,96,87,99,90,91,97,97,104,113,109,103,95,100,93,99,116,90,96,90,104,103,105,94,103,90,93,109,90,103,95,108,112,95,102,97,96,88,100,104,94,100,95,96,95,92,87,95,104,95,104,96,95,100,87,102,88,97,106,105,97,103,91,100,91,99,105,80,101,89,99,100,103,109,98,103,108,86,99,99,82,105,91,83,101,93,94,93,102,105,100,88,96,109,105,99,95,108,85,92,105,105,112,96,103,106,94,106,104,94,99,96,102,107,88,107,97,103,107,116,97,103,93,95,98,95,98,103,76,58,94,105,107,95,102,104,96,96,91,117,92,98,105,114,99,98,96,101,106,101,101,88,99,99,75,106,83,98,103,90,96,99,109,95,89,93,108,100,93,90,117,115,95,91,95,101,102,92,97,97,102,93,104,88,96,104,93,80,90,102,110,98,111,113,99,97,92,113,98,95,104,100,96,100,96,97,103,91,99,97,113,105,110,82,89,99,93,92,98,100,108,87,110,110,95,105,99,100,97,87,99,101,89,93,120,99,95,98,88,104,96,102,90,101,102,104,94,104,105,113,108,100,88,93,97,96,102,100,102,93,101,96,94,97,101,95,90,105,102,89,88,111,102,96,99,104,77,94,93,108,92,107,105,99,94,73,106,91,86,92,93,104,102,92,102,98,94,105,93,90,112,106,93,112,96,100,92,96,91,105,102,99,103,84,97,109,101,100,93,119,98,92,90,108,105,79,84,101,90,104,92,106,104,89,113,106,109,104,94,90,104,112,99,96,108,72,98,91,90,91,100,105,94,96,82,86,100,96,89,95,93,99,111,100,109,98,99,102,100,101,86,110,96,89,95,102,88,102,108,113,93,109,104,96,100,99,119,93,81,104,98,103,98,99,91,70,109,101,108,92,112,105,101,102,105,100,101,103,103,96,107,105,89,91,115,115,82,99,96,83,111,92,112,97,110,94,87,84,122,96,99,98,97,83,99,97,96,81,104,113,105,96,105,105,103,92,98,93,97,100,103,104,91,75,96,89,98,91,95,103,106,92,99,113,106,104,102,95,90,94,98,102,105,104,106,100,88,100,96,89,91,88,100,91,99,98,108,87,103,96,102,108,101,111,91,103,100,98,106,105,103,88,97,99,107,102,88,113,93,99,97,100,96,105,103,97,130,105,98,100,94,88,90,100,109,94,102,97,96,96,90,97,88,100,94,94,90,98,111,97,99,94,99,97,87,104,93,91,86,101,102,89,98,97,94,102,102,98,103,110,96,95,98,99,95,95,92,99,90,103,96,110,105,88,95,96,121,100,104,102,92,117,107,105,88,85,99,94,99,94,98,99,102,100,91,93,98,103,100,81,102,95,93,91,109,111,102,99,99,121,98,94,99,100,105,95,93,104,96,102,90,98,85,108,93,71,97,100,106,102,92,80,106,111,104,100,102,97,101,87,99,85,93,98,100,114,95,105,104,97,87,105,106,97,98,93,97,93,100,105,95,97,82,109,99,105,102,99,95,103,89,98,99,103,90,93,91,101,94,104,87,100,108,91,92,98,104,103,80,102,100,100,95,101,97,93,98,106,104,109,95,107,99,95,103,106,96,111,101,91,104,106,93,103,101,105,102,99,95,107,98,95,104,111,81,106,103,100,100,99,110,103,99,102,108,89,101,94,96,98,112,96,104,108,101,105,98,91,103,99,106,100,108,105,102,101,109,105,97,97,107,102,99,93,115,105,108,105,105,96,92,102,111,100,100,92,98,104,98,110,93,97,91,114,99,102,103,96,99,103,91,95,114,103,121,97,114,93,101,117,92,96,100,108,94,100,102,102,102,107,109,85,89,99,101,113,106,95,108,101,101,113,96,85,95,79,95,92,104,89,118,100,105,104,101,99,95,105,95,97,88,100,101,101,107,96,101,84,105,103,100,105,95,94,111,98,97,91,92,101,87,95,94,97,101,115,92,107,94,82,102,89,114,115,99,102,86,105,100,104,88,97,95,109,109,83,94,96,90,105,94,103,94,85,97,92,100,106,112,98,119,108,91,98,111,107,96,105,101,108,93,98,98,94,100,108,95,105,101,98,99,110,104,97,98,89,99,102,92,92,88,97,97,97,94,100,87,102,99,93,100,95,85,70,91,77,106,106,96,113,97,104,101,96,100,103,96,101,103,100,99,95,98,105,100,95,101,101,87,98,101,89,109,89,109,101,95,96,97,106,110,90,106,83,84,111,88,121,108,98,90,110,101,94,95,102,100,101,101,95,96,93,98,100,116,106,98,95,100,102,103,104,104,109,124,96,90,105,105,102,90,91,91,105,100,94,95,94,94,92,95,103,92,111,105,99,106,87,93,102,109,87,131,96,91,101,104,102,98,101,94,115,98,98,122,108,106,101,75,94,112,102,104,106,110,105,98,96,95,85,102,83,92,102,114,100,99,109,102,94,103,94,99,113,100,91,93,99,98,96,88,102,95,104,102,107,112,88,92,104,102,100,106,84,93,98,100,102,101,105,101,106,97,113,113,105,97,105,92,99,103,103,94,109,102,105,92,112,101,110,104,94,101,83,96,112,102,96,98,109,97,119,95,99,110,92,97,90,100,97,91,100,101,96,109,75,108,113,103,100,98,98,108,98,100,97,96,97,93,91,106,95,91,95,107,100,95,117,92,90,96,95,109,91,108,98,106,90,113,103,106,100,95,102,100,105,82,106,98,103,97,102,84,88,107,107,97,117,91,106,94,88,104,115,95,100,114,106,114,105,93,102,114,86,98,94,93,93,103,103,95,93,103,98,109,95,108,96,104,115,97,92,96,114,104,114,98,100,116,108,102,83,99,109,107,106,97,94,112,101,100,100,87,103,89,112,100,101,100,93,95,108,91,100,129,98,107,90,100,93,91,102,110,105,101,96,98,93,94,105,106,95,105,94,91,102,92,92,91,93,88,99,102,83,79,101,97,104,94,102,100, +715.39374,94,101,113,101,103,105,80,86,105,103,88,97,92,108,110,96,86,86,95,97,98,114,96,98,94,95,99,105,107,96,86,98,115,105,82,104,106,85,98,88,98,98,100,105,104,101,102,98,90,107,98,92,99,105,94,97,90,101,107,100,97,89,92,98,94,103,88,106,101,97,105,99,100,104,99,104,98,82,98,108,97,103,97,125,101,105,95,90,93,92,104,98,91,93,105,92,105,104,96,109,100,100,112,106,95,99,109,84,94,104,93,114,95,99,95,101,93,99,102,93,103,92,92,97,101,108,101,100,104,103,108,104,90,92,109,109,92,91,96,94,93,104,113,107,91,116,110,92,83,92,97,104,104,85,95,90,96,85,91,90,101,109,128,99,93,109,118,90,96,91,100,96,100,92,109,82,105,100,94,88,102,86,106,102,108,100,78,95,97,92,91,94,99,107,101,110,105,80,96,103,106,103,107,108,94,95,96,96,105,108,98,99,95,106,92,90,97,94,104,108,98,101,106,95,110,98,99,100,105,110,106,104,87,101,92,107,98,111,100,92,85,101,109,100,110,99,92,103,112,108,115,111,103,104,97,99,99,100,97,86,104,103,95,94,91,106,85,105,108,113,101,98,98,97,99,93,97,98,94,92,104,102,95,103,96,97,100,95,102,95,121,93,94,88,102,101,115,105,102,96,96,97,101,107,110,108,94,113,95,106,91,102,92,107,101,105,91,97,101,102,88,94,99,93,103,97,99,90,98,104,101,91,99,100,101,104,104,102,100,95,100,100,96,84,98,96,100,93,99,92,95,100,98,99,103,100,93,101,106,112,104,84,123,95,95,106,103,82,101,96,96,101,97,80,88,103,95,100,101,104,104,117,105,84,106,99,90,101,105,99,113,89,105,105,107,79,94,90,101,90,105,98,98,94,92,106,86,99,108,101,90,95,94,103,102,109,96,95,89,104,97,96,92,106,116,100,109,91,97,86,108,88,99,90,98,86,101,88,101,99,100,110,109,105,89,92,79,92,98,102,108,104,96,97,91,113,100,96,107,104,112,99,95,96,98,88,108,106,90,86,109,94,102,106,87,101,91,101,84,95,100,96,102,113,108,94,94,101,93,95,94,75,103,105,88,95,88,98,107,108,108,97,108,95,96,108,87,94,100,83,105,99,98,112,87,98,96,100,104,89,102,101,95,98,99,107,106,89,106,100,90,94,96,102,97,104,100,94,101,92,91,99,101,99,103,83,92,99,94,96,79,100,96,96,97,99,97,93,97,98,101,101,94,95,101,105,103,108,95,108,97,102,96,96,104,102,111,103,95,96,105,102,94,99,87,96,73,109,96,100,96,99,94,88,109,113,88,104,108,101,99,107,102,91,92,105,96,98,96,77,92,105,91,94,114,95,92,110,109,109,107,97,104,97,109,99,103,100,126,92,110,94,106,113,100,104,73,98,98,92,114,88,99,97,112,102,92,90,101,105,101,93,95,101,98,91,99,104,93,94,100,104,99,107,90,93,100,99,109,94,117,101,103,98,90,98,102,105,99,91,63,114,94,77,77,106,104,98,104,104,113,98,90,96,96,79,103,93,98,97,109,95,93,103,107,95,100,109,96,96,101,99,94,90,101,90,96,104,97,86,85,93,103,100,89,96,105,96,98,85,95,96,98,99,90,93,100,95,112,101,100,95,105,97,107,97,98,104,103,101,100,98,98,98,71,105,98,97,94,93,84,105,99,96,93,97,80,84,92,98,95,94,105,101,107,96,92,97,103,96,84,100,113,108,98,95,99,91,103,90,99,99,93,86,103,110,94,101,101,103,94,94,96,101,102,98,97,107,109,102,86,98,98,110,108,97,103,95,104,110,103,95,98,99,104,104,95,95,106,103,96,96,118,90,86,113,92,102,92,103,100,87,100,96,109,102,90,98,105,91,86,101,101,95,100,101,100,101,87,110,102,100,100,107,106,86,88,103,96,108,116,93,85,117,105,102,98,94,101,91,107,101,99,104,99,90,107,106,102,101,103,94,101,115,99,93,104,95,94,104,88,64,92,79,98,116,99,104,100,105,94,92,98,103,99,100,99,98,92,93,106,91,85,93,92,87,91,105,82,98,89,105,92,101,87,113,95,95,99,92,118,99,102,105,95,96,96,98,105,104,104,91,116,96,91,113,108,95,100,83,97,104,106,106,101,96,104,101,99,98,93,91,101,90,100,93,95,107,94,99,106,92,89,99,98,105,74,100,93,92,94,105,92,92,96,89,99,96,99,102,88,99,104,109,117,100,96,97,60,95,94,96,98,94,94,94,105,96,82,107,110,112,101,95,98,96,94,97,109,83,109,79,108,93,103,90,101,109,96,92,108,103,89,95,97,94,96,109,99,99,96,106,103,107,97,110,103,97,104,99,99,110,98,110,100,93,102,116,89,97,102,103,92,96,101,114,95,84,112,102,94,106,100,116,119,99,101,85,92,95,111,106,109,94,93,101,104,108,97,103,116,93,108,98,98,97,93,104,110,102,93,94,100,93,88,100,89,104,88,101,98,113,76,105,100,120,103,95,92,105,105,110,101,92,90,100,101,98,97,103,109,102,88,104,90,99,90,93,96,94,102,107,106,100,95,112,99,96,108,101,100,84,87,91,87,99,101,95,104,107,97,90,96,105,104,95,112,92,111,106,111,104,102,100,97,91,101,96,92,109,111,102,99,102,100,106,104,93,91,97,104,96,99,103,96,108,108,98,94,99,92,103,88,103,90,115,103,94,95,95,94,107,107,104,106,102,106,106,101,93,92,111,93,109,113,99,95,105,97,91,103,111,105,96,85,101,89,104,91,106,106,86,105,104,99,100,100,105,88,97,100,106,100,97,103,106,124,112,104,103,97,89,100,106,97,69,98,92,95,98,104,112,92,103,98,111,97,92,112,97,100,99,96,86,101,111,99,101,100,107,104,106,94,105,101,91,128,113,108,104,103,103,92,97,104,117,109,116,102,109,91,96,91,105,109,101,108,76,106,103,105,87,89,104,102,115,100,109,102,94,108,100,92,95,104,101,91,102,100,105,94,91,98,100,100,96,102,97,95,104,97,107,104,96,118,100,108,103,98,97,105,84,112,103,108,97,112,107,93,89,93,85,93,96,107,76,98,96,92,110,98,99,104,77,106,107,91,94,103,107,92,87,103,94,98,100,103,92,97,91,87,85,87,97,100,97,100,102,94,99,94,105,98,104,93,94,112,97,107,94,105,101,105,106,102,92,103,122,91,87,98,103,95,99,98,94,97,109,117,98,104,97,105,103,109,110,96,111,94,94,101,95,101,108,104,110,105,89,100,109,94,104,97,93,94,101,103,100,101,97,98,94,101,98,105,105,97,104,92,103,98,98,104,93,92,100,94,93,92,87,96,104,100,99,97,100,91,92,95,106,106,103,92,95,87,99,104,92,108,95,100,95,106,86,106,107,97,100,99,91,104,112,101,82,92,97,90,97,104,99,106,105,100,112,106,112,107,106,93,95,111,103,97,101,102,110,102,108,95,111,96,100,102,87,104,110,94,98,100,101,105,93,110,82,90,108,74,88,100,96,96,105,98,107,89,87,94,99,106,109,93,115,107,97,100,97,85,109,100,94,104,97,104,114,98,99,97,99,89,104,98,93,104,100,87,99,93,101,95,95,97,102,105,94,90,91,78,104,96,94,97,96,96,102,92,95,94,107,90,94,101,106,89,84,99,98,95,102,105,91,102,91,95,89,96,110,89,110,107,87,93,94,96,96,105,94,106,91,104,107,98,91,99,100,101,96,108,100,99,102,100,87,103,100,102,102,90,101,101,104,91,95,114,105,95,98,108,88,88,88,102,58,96,106,99,97,95,107,95,101,91,113,108,100,103,98,97,104,105,95,113,101,105,103,98,97,91,99,116,89,108,88,118,97,100,98,110,113,108,103,99,102,101,94,101,80,110,112,96,107,100,107,109,106,96,99,93,94,94,103,99,83,88,98,102,101,101,93,93,91,102,87,102,111,100,99,102,102,104,92,100,100,99,98,106,99,87,106,104,98,101,92,102,116,102,100,94,100,101,74,100,98,94,104,101,103,91,102,100,86,114,94,89,107,88,87,103,102,99,88,93,101,96,93,91,82,110,92,108,112,97,108,97,88,99,116,99,105,95,107,103,99,108,92,97,95,102,103,88,99,101,117,96,100,96,105,90,86,93,88,96,95,98,104,105,100,103,71,117,94,103,102,100,81,87,96,106,100,102,94,102,110,98,101,95,107,101,91,96,106,95,110,100,94,106,107,92,98,96,102,97,67,106,103,101,102,100,101,95,99,114,109,117,100,79,103,94,105,103,90,108,83,101,101,83,95,125,95,79,102,89,101,98,107,101,96,106,98,91,103,87,96,99,102,99,69,103,104,95,91,99,102,104,99,99,96,112,93,102,109,95,107,97,94,96,106,94,95,102,102,94,99,100,108,95,96,96,104,94,94,94,91,92,104,98,99,110,112,100,101,90,84,109,101,107,83,90,110,107,98,101,102,93,107,95,106,106,101,94,95,93,101,109,97,101,103,95,94,98,89,90,87,92,92,96,111,92,105,98,96,96,112,96,93,93,105,108,106,110,96,103,94,102,107,112,96,95,92,104,97,85,100,103,94,98,105,96,94,110,96,81,98,94,94,97,99,102,100,91,93,84,105,105,108,75,98,102,103,104,88,112,102,100,105,110,109,110,96,97,94,106,95,99,112,97,97,96,102,107,108,100,101,112,103,103,117,109,95,95,115,95,102,106,103,91,99,95,111,104,99,95,104,98,102,112,109,94,106,97,114,106,101,95,102,86,110,91,108,116,103,96,94,105,95,109,86,101,103,100,91,119,92,103,113,110,106,109,125,96,85, +715.53516,94,106,98,92,81,100,97,109,93,91,94,91,105,83,101,117,87,98,94,90,97,100,97,98,96,103,97,116,108,117,99,95,101,83,112,87,101,109,109,93,105,94,100,83,88,107,100,109,100,98,91,81,96,102,100,95,92,86,98,92,90,74,105,92,96,103,99,102,111,95,95,94,111,85,108,111,97,92,98,100,109,103,97,95,87,97,95,91,84,95,109,93,96,82,95,86,81,102,93,83,101,92,97,92,107,93,96,89,104,95,98,100,99,102,98,95,125,101,98,96,83,112,108,134,93,97,93,97,96,114,110,111,96,101,106,98,114,94,105,102,87,93,101,103,86,85,92,83,95,94,95,95,104,100,99,94,105,92,109,92,107,105,96,96,103,98,98,104,95,88,94,94,101,105,98,101,112,104,108,95,107,100,99,105,88,112,101,93,94,106,94,99,107,101,87,99,95,106,91,101,91,108,96,94,96,84,94,94,103,108,98,112,96,103,108,96,90,109,93,92,107,109,99,101,93,97,100,90,95,95,98,98,91,100,94,101,103,94,111,93,101,96,113,97,92,90,91,104,95,103,100,102,98,106,94,79,99,102,101,100,102,97,98,103,90,103,99,111,98,90,95,105,103,88,103,104,106,108,95,110,101,101,88,107,109,98,108,101,91,113,109,106,92,100,94,106,93,96,99,98,78,106,103,95,90,104,101,109,99,112,87,91,101,110,91,100,107,96,101,98,94,105,111,99,107,96,100,95,100,98,113,101,110,108,99,104,100,91,99,90,109,99,99,91,105,94,101,97,98,106,94,105,116,100,86,87,106,105,97,105,94,98,98,95,87,92,94,103,98,98,95,104,105,105,106,97,94,96,105,89,98,100,100,105,95,88,100,110,98,79,109,97,91,98,97,95,96,97,103,76,61,87,88,87,85,97,113,102,85,92,96,102,90,106,95,95,105,99,104,104,93,79,87,93,106,88,85,101,94,94,95,104,98,87,80,101,93,99,82,98,101,102,94,105,92,90,90,94,93,103,105,97,79,95,104,102,95,96,98,96,87,94,78,96,108,89,94,93,102,101,94,101,105,90,103,93,91,102,78,108,98,100,106,94,86,94,90,98,96,101,96,105,84,105,88,108,88,107,93,95,116,102,91,100,114,96,86,99,96,92,102,102,102,100,106,101,103,91,100,88,98,99,96,93,98,107,107,108,95,101,93,103,114,91,80,87,104,91,106,90,92,108,94,100,98,98,88,87,104,102,107,103,89,100,107,109,96,100,96,98,111,101,93,113,95,98,100,114,99,101,92,96,98,103,95,99,108,95,95,105,107,100,91,112,101,92,113,94,102,112,101,100,94,101,116,106,77,93,98,99,96,97,108,108,93,93,91,103,95,102,80,109,119,98,117,97,103,104,100,99,104,116,89,87,116,98,86,95,101,78,96,101,97,109,91,84,98,99,90,105,103,104,97,100,93,94,91,101,96,104,95,104,102,130,102,98,94,102,105,105,108,91,96,102,90,103,92,99,98,98,100,99,101,107,99,105,103,102,98,74,92,103,102,107,94,95,109,96,107,97,109,97,103,110,113,97,100,105,102,98,109,98,93,96,108,110,97,103,95,102,98,93,106,101,88,94,87,124,100,93,104,102,97,103,100,92,106,95,85,91,115,114,83,102,101,93,105,105,87,98,113,72,90,95,94,82,100,94,105,96,101,100,101,95,96,96,100,101,86,93,107,102,99,84,98,94,109,92,105,99,104,93,96,93,100,95,103,94,95,91,105,100,105,93,100,97,95,109,118,101,95,92,104,120,91,95,95,94,105,80,104,104,102,101,108,91,100,91,131,91,99,95,100,97,102,117,110,102,95,103,92,115,104,97,103,101,98,98,96,123,87,103,96,94,93,92,103,99,82,101,94,110,95,101,113,90,97,92,101,86,99,95,105,105,92,96,102,106,103,124,103,87,101,104,64,105,94,98,106,107,100,100,101,96,95,104,113,90,96,92,99,90,105,94,104,99,71,114,99,98,102,100,90,92,110,76,104,109,96,105,97,99,114,101,106,87,92,102,101,96,100,104,107,96,104,96,106,108,100,96,105,101,91,101,91,102,91,93,111,103,99,101,99,104,92,98,99,73,97,123,102,102,117,101,92,92,109,92,90,97,97,90,106,99,105,99,102,102,91,109,101,98,99,93,104,93,103,92,91,93,100,103,101,70,92,133,97,98,106,91,92,112,92,93,105,109,95,104,100,93,98,108,102,92,86,90,104,106,96,96,99,97,95,93,106,99,94,104,94,94,95,104,104,94,68,106,95,92,106,99,95,100,104,96,104,98,105,96,96,99,97,98,107,94,98,96,105,101,90,82,102,96,104,92,92,101,108,99,100,110,91,78,98,102,88,95,100,104,112,91,120,110,94,105,99,87,91,106,101,94,104,99,106,96,88,99,98,96,68,100,107,87,107,107,100,112,90,98,87,94,103,102,95,90,90,113,102,93,105,106,109,110,108,100,97,94,94,117,99,92,90,101,103,99,103,108,92,102,91,93,108,98,102,96,103,97,93,96,95,94,77,108,101,98,102,102,100,98,94,104,106,86,93,99,98,91,104,104,109,103,99,99,107,105,103,97,90,97,101,109,95,100,109,88,112,100,91,96,101,90,105,90,104,100,93,105,99,98,107,94,104,103,102,101,99,100,111,106,102,95,114,95,98,98,91,102,81,89,95,98,101,102,101,105,101,89,113,91,96,103,96,97,94,113,98,88,102,105,99,104,96,101,99,87,80,101,99,95,108,115,105,98,109,114,96,94,100,106,102,110,101,90,101,97,96,108,108,99,102,92,112,103,87,104,102,116,101,112,98,101,97,88,92,106,110,93,96,109,98,102,117,103,95,110,102,104,93,104,102,85,101,107,100,96,91,98,94,99,93,112,106,105,89,96,102,101,91,66,95,101,103,87,101,91,95,91,99,104,100,94,101,100,94,91,102,102,100,97,106,101,105,93,82,86,102,106,98,106,96,88,94,94,95,103,98,102,83,93,101,103,91,107,97,84,101,94,95,67,96,89,94,92,91,105,96,82,128,100,101,93,102,110,108,96,96,101,97,97,101,87,75,101,110,86,98,102,92,87,96,97,104,94,91,98,91,93,82,109,91,103,113,101,97,95,99,91,80,94,103,99,92,93,103,91,105,98,108,100,118,94,103,98,91,110,91,94,104,102,85,98,102,105,97,95,94,98,116,95,95,101,97,105,120,101,103,107,105,104,95,90,80,94,98,96,96,105,100,110,98,90,96,99,100,101,102,98,119,95,98,94,100,105,98,100,93,96,91,90,99,90,102,92,88,103,109,99,110,99,109,109,97,95,113,103,99,91,92,107,100,92,95,103,75,117,104,95,92,102,99,95,97,113,100,101,95,95,91,95,96,95,91,104,93,93,104,87,99,96,97,95,102,100,104,90,92,104,104,87,90,83,105,95,110,93,97,121,99,101,98,98,98,107,108,100,99,102,88,103,93,87,108,100,91,109,99,101,104,105,87,91,98,91,104,92,105,106,88,97,100,99,99,99,90,106,111,112,90,95,96,106,82,92,99,94,104,88,94,98,91,107,110,94,110,101,93,86,83,93,100,99,91,87,109,106,97,101,101,99,101,113,98,100,88,97,100,110,93,82,102,93,95,104,84,94,94,86,76,97,98,93,73,108,110,107,106,104,95,108,108,84,96,95,97,101,89,100,103,103,101,101,101,93,88,71,91,102,114,95,88,101,98,84,88,93,105,114,100,86,99,97,88,109,92,104,113,99,101,113,106,93,99,89,110,100,112,104,92,57,99,117,90,92,109,107,101,104,113,113,108,99,100,88,98,105,98,100,100,106,101,91,99,98,92,101,112,105,97,113,98,99,91,96,106,96,80,97,104,102,106,90,100,104,104,100,94,90,98,90,92,97,100,86,91,92,90,98,95,91,98,91,102,85,82,109,100,90,93,101,79,107,94,101,97,101,99,96,92,119,102,97,99,102,100,86,100,89,99,101,113,94,103,96,88,87,103,96,91,100,92,95,104,91,111,95,99,109,103,95,97,100,103,101,78,86,92,98,104,96,109,100,100,94,111,103,100,97,93,103,98,116,99,90,92,81,104,103,105,99,95,103,105,102,91,63,108,113,101,94,87,97,102,85,102,100,91,105,100,100,92,94,103,98,95,111,102,93,103,87,94,111,102,84,96,96,98,87,96,97,105,97,95,88,104,98,91,92,97,93,105,97,96,98,104,93,89,102,111,104,90,89,100,107,102,92,89,95,103,98,111,102,90,105,91,104,102,105,89,106,90,103,105,98,102,98,86,93,91,88,106,99,91,94,95,95,105,103,90,113,98,100,106,100,100,106,111,87,103,94,102,108,98,92,98,102,92,77,97,100,94,95,87,98,101,99,99,98,95,92,85,100,106,103,120,114,97,96,120,101,103,104,89,90,98,106,97,101,100,97,67,102,98,100,98,101,100,103,98,102,110,104,91,101,101,92,108,104,109,68,99,107,102,84,78,93,102,91,97,97,63,99,91,92,102,101,103,113,104,96,103,87,96,91,104,100,95,96,94,101,94,106,93,100,98,102,93,111,112,119,101,94,95,111,103,94,99,101,103,101,109,100,99,89,102,112,97,87,94,84,88,85,105,122,104,92,109,100,106,100,104,84,105,100,104,98,101,96,110,108,105,85,99,97,94,109,85,107,109,95,94,96,102,90,110,84,106,101,87,107,90,99,92,124,100,93,94,108,110,103,100,79,90,95,108,94,100,94,96,91,99,104,107,95,101,90,102,86,108,94,100,102,107,76,85,108,102,105,92,97,104,88,103,97,95,91,106,109,98,111,104,113,84,98,91,98,119,111,113,87,97,89, +715.67651,102,100,97,98,105,89,96,108,100,100,99,99,108,97,99,95,85,105,105,111,84,94,75,99,96,109,98,93,104,102,104,105,105,87,112,96,102,95,104,101,88,99,89,98,122,105,105,103,101,100,94,110,102,99,115,109,86,104,100,90,92,117,94,82,101,98,94,90,105,102,98,110,110,95,95,108,99,102,100,100,96,96,102,109,101,95,90,100,100,99,105,96,109,117,97,99,93,98,93,102,96,95,92,96,98,106,100,108,85,94,107,103,101,104,86,101,109,107,108,101,90,106,101,86,103,102,107,85,108,107,101,112,84,91,93,106,104,98,95,103,99,98,101,97,103,103,95,100,99,83,103,99,100,97,104,94,105,90,101,98,101,111,105,96,111,107,95,95,100,90,87,92,96,92,107,100,132,100,94,102,93,100,97,121,87,91,94,90,102,96,95,96,98,96,87,86,92,102,98,97,108,97,105,82,97,105,101,103,87,105,112,87,105,88,101,103,99,104,91,88,108,95,95,97,87,101,96,103,103,105,92,106,111,101,100,102,102,107,101,94,102,98,101,98,83,95,108,105,104,116,97,109,91,104,96,104,84,95,88,107,97,83,98,90,102,108,102,94,104,105,90,104,100,93,96,106,96,102,97,104,93,102,104,111,103,110,91,99,104,99,108,101,104,109,102,112,103,96,99,117,109,103,90,105,100,93,99,86,92,111,97,106,100,97,97,95,102,103,89,98,109,100,101,93,104,103,92,96,86,98,103,97,118,105,85,94,98,101,91,99,91,103,92,92,101,104,96,111,106,103,98,114,92,110,100,108,91,99,100,93,106,107,103,101,105,88,108,114,87,103,99,99,117,106,103,85,107,93,99,94,95,111,98,96,89,92,96,92,89,94,110,99,96,94,99,99,92,99,101,114,113,99,103,106,97,91,105,102,101,91,109,96,72,108,110,98,88,96,109,98,93,99,102,102,95,101,75,97,94,87,88,103,91,94,103,96,98,91,91,97,99,102,91,99,102,100,102,80,100,92,110,98,97,95,104,104,101,105,110,101,104,111,91,102,101,111,95,102,94,98,99,102,105,100,103,84,100,100,99,104,90,107,88,100,94,100,94,132,100,93,94,118,95,100,80,100,99,106,97,98,107,106,93,94,95,95,98,104,94,104,97,102,105,109,101,107,108,94,98,94,95,111,101,101,110,97,96,107,103,96,100,90,97,91,100,92,101,96,102,104,109,102,111,93,109,96,96,102,96,109,98,104,97,79,104,99,101,104,100,92,102,91,108,104,101,106,102,105,99,105,102,87,89,100,94,106,90,97,97,101,94,102,108,99,98,91,102,108,103,94,88,82,100,101,109,87,96,96,105,92,97,96,101,82,93,95,93,100,103,96,100,94,95,110,91,93,100,89,102,102,111,100,94,90,109,95,98,79,109,107,99,102,95,104,101,106,91,101,105,85,101,110,105,100,98,58,91,105,108,86,84,105,99,107,112,108,103,86,102,94,104,104,96,100,84,95,106,93,69,99,110,73,101,90,70,112,112,102,110,87,117,104,97,91,105,101,108,100,97,107,97,110,94,108,101,84,93,104,98,95,87,93,98,98,93,96,99,92,103,94,91,99,99,96,104,97,92,89,94,94,105,78,95,98,94,105,98,75,104,95,96,93,96,94,87,100,106,100,94,100,106,97,105,96,106,96,104,106,104,92,104,92,96,102,87,104,88,103,103,90,93,103,90,92,101,105,100,93,108,101,103,105,88,109,106,98,92,96,98,84,95,99,110,100,88,103,95,108,102,107,99,97,123,89,93,98,97,103,103,102,96,93,99,89,99,90,105,94,99,93,109,107,103,95,108,96,100,107,105,99,101,107,92,98,94,109,105,108,111,102,98,95,99,102,104,101,91,86,84,101,88,106,106,94,89,94,100,102,97,101,92,101,97,96,110,101,104,103,90,99,74,83,101,105,103,86,108,103,104,79,93,106,103,106,98,93,99,92,97,92,103,95,103,84,107,96,97,100,88,96,95,101,100,104,108,99,102,94,77,82,101,105,96,103,97,95,86,87,93,99,100,94,106,100,101,92,93,118,92,112,104,108,97,107,99,92,105,94,105,101,93,99,97,113,99,91,98,100,98,96,98,101,95,106,94,115,123,99,107,98,84,104,82,104,104,103,100,109,105,117,111,107,95,96,99,106,95,97,96,99,101,92,106,99,99,106,101,106,88,95,100,113,103,105,109,98,105,90,98,108,95,118,86,87,96,99,89,95,104,102,94,98,98,90,98,95,95,109,108,109,100,94,96,103,96,90,109,99,99,103,104,102,107,84,96,106,108,92,95,120,106,99,108,92,100,92,94,111,97,104,88,104,98,106,102,110,99,92,100,100,104,116,87,91,101,85,100,102,95,100,102,103,93,109,102,91,101,107,96,81,108,112,91,107,92,111,110,98,100,101,95,87,93,100,100,94,98,88,109,88,96,87,102,107,100,111,99,92,105,96,99,91,105,93,106,81,99,110,96,96,92,111,96,94,109,93,99,117,101,94,90,100,96,84,99,102,96,108,93,103,97,94,113,75,101,84,120,104,99,90,105,91,94,91,87,99,96,123,103,83,97,99,105,99,87,103,101,97,103,97,95,91,99,81,94,92,98,89,93,98,104,91,115,109,92,101,97,111,91,108,98,106,95,109,104,96,88,108,92,104,102,108,95,98,100,114,100,87,103,98,105,101,105,102,105,94,109,100,90,94,95,102,91,100,95,99,99,109,105,94,97,105,96,86,91,107,98,97,98,90,90,104,90,104,102,93,106,93,111,99,110,94,108,103,98,101,103,102,98,97,95,103,102,97,90,91,102,96,100,102,100,98,96,100,104,99,105,111,103,103,84,92,108,109,99,106,102,104,106,101,108,125,131,97,106,106,92,109,99,106,103,108,105,95,99,102,99,102,99,94,100,105,105,94,98,94,115,92,98,96,105,115,98,105,95,98,101,110,109,89,97,101,95,106,107,101,105,100,94,99,104,93,86,106,98,116,102,97,102,106,95,93,103,99,105,104,104,98,111,96,98,98,103,100,93,90,92,104,105,104,107,116,106,96,105,91,109,85,112,104,99,94,102,111,100,100,96,109,95,94,97,94,106,100,102,102,97,97,86,100,100,94,95,107,94,109,116,102,99,85,104,113,96,94,92,102,119,94,101,95,107,98,95,102,99,97,108,89,92,92,101,116,106,109,80,94,91,98,109,102,103,107,99,98,97,95,88,116,99,98,92,94,93,107,100,97,98,99,110,95,111,100,85,109,98,99,103,98,102,102,94,94,102,96,104,89,94,97,124,96,105,115,96,91,98,92,98,91,88,95,91,101,102,101,112,95,96,101,95,103,98,95,94,92,98,96,92,100,105,110,96,96,109,103,103,85,94,75,105,104,102,101,113,105,95,95,100,99,107,98,113,97,103,102,103,91,88,94,103,100,113,102,102,101,93,96,113,93,83,98,103,104,98,99,114,98,100,102,105,89,78,94,97,97,105,93,97,104,104,108,98,104,89,107,99,106,80,94,92,105,105,92,100,95,101,105,87,102,97,101,85,98,87,83,108,102,101,107,101,105,105,98,113,88,92,78,101,102,96,106,103,99,97,100,93,87,87,117,92,114,98,94,101,104,99,99,91,101,92,100,101,121,110,100,99,98,100,90,102,89,97,96,102,100,104,97,105,103,100,86,96,95,92,88,100,91,117,101,104,91,99,99,97,102,107,105,93,99,104,97,94,105,97,93,101,93,92,105,99,101,98,100,113,112,102,103,82,117,112,104,116,98,104,100,98,104,91,97,96,104,85,107,102,101,107,99,108,99,123,98,102,90,99,97,98,108,98,100,95,103,109,95,101,94,105,99,89,91,90,96,93,98,106,94,93,98,99,102,99,97,99,88,103,92,98,96,67,98,97,95,95,93,99,95,92,113,97,102,99,111,103,106,95,103,105,98,102,100,90,81,100,90,90,93,88,89,88,98,99,108,102,87,92,99,90,99,105,109,111,98,109,98,102,94,98,100,96,92,118,108,103,97,101,112,103,111,98,96,92,101,97,99,89,107,113,106,100,105,106,90,96,95,100,101,95,109,94,90,105,102,80,99,81,109,91,106,103,92,97,105,109,90,101,101,108,95,103,98,92,94,99,102,100,109,96,99,100,100,105,89,97,88,91,75,105,98,90,75,103,100,101,98,104,104,94,103,103,101,103,100,95,96,101,109,98,107,95,93,98,101,100,93,135,107,113,105,101,84,95,82,105,103,102,96,106,96,88,83,97,88,89,94,109,109,100,90,104,104,109,99,97,97,103,100,101,87,109,108,106,92,112,96,109,102,88,95,102,82,88,103,114,92,79,97,95,96,107,108,100,96,89,82,100,93,113,100,92,109,110,86,108,101,95,100,108,101,100,105,94,104,97,99,93,113,119,105,92,88,67,98,96,99,99,119,98,104,99,94,97,101,92,97,101,105,103,97,105,124,100,93,99,115,100,94,102,96,88,102,109,100,95,99,91,107,99,106,102,103,106,90,103,96,90,96,95,109,92,95,92,98,100,90,95,95,105,99,98,105,95,106,104,100,98,106,94,95,98,106,104,108,89,100,95,102,101,98,104,104,101,105,100,90,99,102,110,101,100,89,98,93,95,113,92,102,107,98,87,103,98,108,91,110,94,101,98,95,83,94,107,104,104,112,108,94,100,101,104,92,92,100,100,88,120,110,102,71,95,97,107,88,108,87,86,101,92,94,68,100,100,94,76,98,94,112,104,84,102,100,109,96,106,92,90,104,93,108,100,105,94,98,100,110,93,83,71,100,115,95,100,100,100,101,110,102,110,101,110,109,104,89,91,91,99,87,86,105,103,92,84,92, +715.81787,82,96,99,90,95,107,100,88,94,98,93,106,106,88,108,94,92,104,93,109,90,105,115,83,102,103,108,102,95,86,95,102,95,102,95,95,100,86,92,116,110,92,103,99,98,109,97,99,91,86,93,101,96,102,97,95,87,105,98,95,95,106,88,92,100,90,108,93,98,104,104,108,93,108,92,112,88,84,87,98,103,99,93,101,90,88,114,92,103,99,95,95,98,108,94,105,90,97,100,99,94,91,102,92,86,102,93,98,94,103,101,79,103,96,100,96,94,105,112,93,98,93,106,97,106,115,102,104,97,100,109,103,104,95,98,107,90,102,102,91,92,125,109,71,90,120,107,92,95,109,102,100,111,100,119,86,98,93,111,92,87,99,107,95,95,101,99,117,109,96,94,104,89,103,96,99,93,101,101,96,110,102,91,106,100,93,94,95,102,94,97,93,98,101,114,100,102,95,107,82,102,101,94,87,101,110,96,111,110,93,95,95,102,102,92,98,98,101,105,96,118,104,102,103,93,101,104,112,102,111,91,106,110,105,111,99,100,94,102,100,100,88,103,99,87,114,102,96,106,98,91,101,119,110,102,105,103,85,95,100,92,103,102,95,91,109,94,101,104,99,101,105,111,101,112,96,97,98,97,91,100,107,100,97,105,98,95,91,95,104,103,95,100,105,87,113,100,94,105,100,97,117,95,111,94,107,109,106,88,94,91,96,93,87,96,117,104,98,99,94,103,97,112,111,108,102,107,90,119,96,106,88,98,107,117,92,105,103,91,105,100,97,94,94,107,104,89,102,106,111,98,110,97,97,95,94,105,92,112,96,101,108,97,92,95,87,102,107,102,103,100,93,99,104,95,98,88,92,103,99,95,105,105,92,96,100,99,91,95,91,122,97,111,98,131,90,107,103,108,99,82,97,105,95,106,91,106,101,99,96,104,91,110,96,99,94,101,91,105,88,97,114,92,87,104,89,107,88,105,103,105,89,100,96,93,100,82,98,101,93,110,97,95,102,101,95,106,110,101,91,97,94,104,95,102,103,96,97,105,95,98,101,109,98,94,107,99,100,101,103,99,109,105,98,107,102,95,104,111,94,98,111,105,76,96,96,94,101,96,94,96,106,96,100,102,89,116,110,134,94,102,101,88,87,92,107,89,99,118,101,98,104,101,99,100,98,95,105,102,96,98,100,116,105,101,108,93,113,97,97,107,104,112,100,60,111,105,94,105,96,91,104,101,103,113,106,102,115,100,92,95,90,95,95,104,95,111,106,95,103,103,95,91,110,81,95,90,106,114,90,88,98,104,107,100,109,94,97,91,98,108,99,101,102,102,95,121,94,69,101,102,104,101,90,115,112,99,94,98,97,96,102,98,98,101,98,97,101,99,91,104,109,107,95,101,104,98,109,113,118,105,101,106,95,92,103,108,95,103,104,91,96,102,110,93,94,100,100,100,94,84,100,89,93,102,100,98,91,109,105,106,104,111,95,98,97,105,109,97,105,114,98,112,110,93,92,95,97,84,91,84,100,102,108,104,105,99,96,104,93,102,100,104,96,84,96,105,96,105,100,101,95,111,103,100,98,98,92,98,84,104,102,87,84,100,99,102,96,96,91,89,98,103,91,97,94,85,99,97,92,102,95,92,102,103,86,104,100,95,105,100,92,111,96,84,94,93,91,94,95,92,99,96,89,60,98,100,93,99,93,110,93,103,96,106,97,121,85,104,98,97,93,97,94,96,107,95,98,102,92,105,93,125,113,85,98,105,91,99,92,102,107,104,99,97,93,90,98,98,98,105,103,94,96,103,101,82,102,94,96,87,104,92,90,100,95,93,98,104,99,106,111,105,83,107,99,97,109,98,108,97,105,103,102,114,91,99,94,97,86,88,92,114,101,99,102,111,98,101,102,105,106,96,85,97,89,95,104,87,110,106,98,83,113,83,99,90,100,99,87,100,103,95,103,119,96,98,109,106,95,101,93,91,96,102,105,95,97,101,99,87,106,96,109,97,104,94,98,99,102,91,103,105,112,107,95,91,93,111,96,95,100,103,106,102,110,98,96,100,108,101,105,98,104,100,99,96,106,103,99,104,99,93,95,98,99,96,93,101,99,98,99,97,91,100,108,91,90,111,95,108,105,122,94,96,106,90,107,102,105,106,97,109,117,96,94,88,102,98,63,97,115,104,112,103,96,97,112,102,99,83,114,117,108,97,96,108,101,98,100,94,104,107,111,96,96,104,102,97,102,103,100,101,99,93,101,83,108,94,93,92,97,98,84,109,98,98,91,91,99,93,104,97,96,95,112,98,97,102,92,100,111,92,83,99,99,97,92,108,100,104,104,99,91,102,92,98,109,99,112,96,110,99,109,107,98,90,104,90,103,99,102,103,109,102,99,87,96,96,100,103,104,103,86,104,99,83,101,97,95,96,106,97,95,105,97,95,102,93,98,92,85,95,92,92,97,92,95,112,105,93,103,96,98,92,94,96,95,100,100,101,85,64,94,92,98,94,91,101,115,83,110,100,98,99,107,96,105,87,109,101,80,91,95,107,90,101,113,88,93,100,108,98,108,91,102,99,115,103,106,105,93,104,91,99,104,98,107,107,104,99,96,106,99,91,96,103,102,105,101,94,102,98,100,114,98,102,105,105,96,95,100,113,104,102,104,104,107,109,106,87,94,101,109,104,113,101,103,99,103,88,101,103,102,100,90,83,94,97,95,94,102,102,104,100,102,99,102,102,98,98,104,92,105,99,98,103,98,100,95,90,95,91,106,88,92,80,98,107,84,94,112,98,93,94,98,110,104,81,105,101,100,87,93,93,96,106,88,104,100,99,109,108,101,88,73,98,108,105,101,96,96,104,107,102,92,102,96,96,120,95,109,106,101,99,113,93,97,92,105,96,92,119,108,110,96,98,97,92,100,109,101,100,101,110,104,98,99,101,97,91,106,91,98,80,97,105,111,84,97,91,108,95,98,104,107,109,96,109,100,104,96,96,103,108,105,76,67,98,102,103,99,104,100,95,97,88,98,100,87,92,107,103,96,106,103,99,83,90,111,104,105,100,96,96,95,92,97,97,89,100,113,91,94,101,95,103,93,100,94,113,93,94,102,104,101,94,92,105,104,98,100,102,99,121,100,105,85,89,97,107,100,82,93,106,98,98,91,92,92,110,109,96,100,97,109,95,118,109,113,95,106,100,109,92,96,97,109,94,98,101,100,99,100,101,89,99,91,100,101,101,111,109,110,92,90,97,106,95,98,105,103,95,105,99,94,96,87,92,97,105,101,99,95,105,95,105,102,103,98,100,89,101,97,90,97,79,97,93,100,95,102,97,98,83,105,112,95,108,107,98,105,95,102,102,108,93,98,79,104,98,101,95,86,105,102,95,102,108,88,97,89,89,95,106,106,102,89,95,103,94,97,109,101,97,97,105,105,94,103,104,95,102,101,99,104,108,98,94,102,102,103,108,72,96,93,106,91,104,94,113,111,93,101,101,101,102,98,93,88,108,100,101,106,101,107,98,100,92,104,89,95,100,100,91,109,102,96,105,105,109,90,101,92,98,111,100,96,93,110,108,94,91,99,96,123,104,103,93,116,101,99,104,92,98,89,95,92,101,102,84,101,67,104,95,94,76,107,95,100,93,97,100,102,84,113,96,101,92,87,108,115,94,102,92,109,96,97,105,88,97,94,102,109,96,106,108,111,100,100,103,107,89,98,98,92,110,83,90,114,98,98,96,99,96,97,91,103,103,106,113,93,98,103,104,99,90,90,98,97,101,110,108,104,103,102,95,92,98,109,116,98,100,115,102,97,100,87,113,98,107,108,94,87,104,102,93,94,95,102,98,73,109,97,103,90,101,95,98,105,105,117,106,106,120,105,72,92,86,95,116,98,99,102,105,100,104,101,99,93,111,95,113,101,97,100,102,88,107,92,91,102,97,98,106,105,100,88,98,96,87,109,113,103,99,93,87,102,102,101,102,100,91,96,118,96,94,96,105,98,133,98,104,107,112,99,108,106,79,99,100,106,92,76,105,100,95,105,100,102,104,104,98,95,100,83,107,99,82,95,99,107,97,94,102,102,104,108,96,105,110,106,98,95,74,80,102,96,103,91,98,96,99,96,103,107,109,103,87,94,102,87,120,67,108,93,106,102,95,96,101,100,93,100,113,109,93,98,106,95,96,99,98,95,90,95,104,99,94,102,100,98,95,88,93,95,109,97,100,106,101,101,104,91,103,113,101,108,94,107,97,98,110,105,96,98,102,94,107,135,98,99,103,108,131,101,100,98,95,113,92,97,95,101,99,81,99,104,98,90,102,99,109,119,108,98,99,96,99,109,100,97,108,109,89,99,94,100,100,105,100,106,97,102,101,91,101,100,84,95,97,97,92,102,97,102,95,95,101,100,101,97,102,87,110,101,103,104,90,97,115,100,109,101,87,95,95,83,102,96,93,86,88,116,93,101,80,98,94,93,87,95,104,100,103,95,98,102,107,113,97,96,104,109,111,101,103,102,110,108,95,101,122,98,102,97,101,102,96,104,96,116,115,85,99,104,77,89,108,98,106,97,86,84,100,94,95,94,108,102,101,109,102,102,94,101,112,104,112,110,111,108,96,95,110,94,96,97,92,99,103,96,92,105,86,101,102,91,102,94,111,100,81,101,96,98,75,109,90,76,115,99,102,90,100,108,120,98,94,100,97,102,105,106,109,93,90,99,105,105,103,90,104,100,108,102,105,91,98,89,98,108,91,101,101,97,116,109,80,104,114,95,103,101,92,98,110,96,83,103,95,108,84,95,83,102,104,100,105,96,105,105,89,102,90,95,94,92,106,104,98,103,94,109,98,106,88,106,107,94,68,102,110,97,103,76,94,98,105,87, +715.95923,119,103,107,82,88,103,113,90,81,101,96,104,95,93,111,100,92,104,99,105,102,106,100,96,113,87,118,91,106,95,106,93,88,104,98,101,87,104,98,96,61,108,87,105,102,97,100,96,104,101,105,113,102,100,92,104,95,98,105,101,94,95,114,82,100,98,98,95,104,106,102,94,87,100,99,107,96,90,106,111,99,101,99,100,80,104,90,97,98,100,100,98,80,96,100,105,96,95,92,99,99,93,95,93,90,90,98,97,100,105,108,101,107,103,94,109,92,109,105,96,110,107,93,95,100,99,119,91,98,95,96,106,95,111,107,102,105,106,100,104,100,95,95,93,96,95,100,97,97,116,103,99,98,88,91,95,108,91,92,90,96,96,107,98,109,96,96,88,91,117,99,105,94,98,116,98,110,78,101,94,100,97,103,108,115,92,110,109,118,103,113,106,97,98,107,111,107,89,114,95,85,91,87,87,92,96,105,101,99,100,102,96,104,102,101,87,100,102,104,106,97,103,104,103,100,99,105,88,100,100,94,94,91,92,106,95,102,108,100,98,106,94,100,107,96,96,110,89,95,107,101,93,96,101,95,110,95,112,98,96,93,99,90,87,95,98,110,101,99,100,103,106,106,95,103,90,102,98,95,94,96,109,105,96,104,102,101,100,98,99,94,96,97,105,103,103,111,95,105,96,99,96,91,103,89,100,104,110,102,109,104,118,102,103,93,89,85,103,104,102,100,94,100,96,105,103,98,99,101,106,96,100,106,84,108,110,101,100,97,101,92,85,95,87,107,106,94,92,102,101,102,95,106,113,98,106,101,104,103,100,61,97,100,92,104,98,122,103,91,92,96,88,95,90,104,88,103,95,108,103,96,105,75,105,97,95,110,117,87,95,106,89,94,107,99,108,94,100,108,103,113,104,108,105,93,76,96,105,108,64,93,90,87,91,95,90,110,106,100,106,99,99,98,102,91,96,96,97,103,96,90,92,95,98,97,91,106,91,105,100,111,117,97,107,97,102,94,87,94,106,85,90,116,97,101,106,97,103,115,88,105,85,101,90,96,104,96,98,91,99,96,101,99,95,95,107,82,103,96,101,91,76,98,107,90,109,102,103,99,108,98,110,104,97,91,102,99,110,99,94,96,87,100,85,100,104,95,102,106,114,93,98,104,95,109,116,94,95,98,94,96,103,88,104,101,101,98,96,96,98,98,98,96,104,99,89,95,105,91,99,91,102,107,100,121,107,101,93,103,101,93,95,104,89,97,100,95,106,93,98,101,96,86,101,99,109,102,96,87,100,86,95,92,102,107,99,106,99,99,104,110,103,87,92,94,96,99,103,117,99,105,87,106,97,92,100,102,97,117,94,80,105,113,97,107,107,100,106,100,106,89,103,87,105,104,104,97,91,93,98,105,98,94,87,100,104,110,99,99,108,96,102,92,97,92,94,104,92,104,109,100,102,96,114,90,106,92,87,106,103,95,104,104,80,97,117,93,107,101,99,62,93,103,102,101,91,95,92,107,92,106,95,97,118,98,94,94,98,110,109,109,93,96,87,93,113,102,101,116,108,99,94,91,90,105,101,92,97,109,93,96,100,113,102,105,110,103,103,103,87,96,100,89,113,90,93,98,99,99,106,88,91,88,94,101,96,118,99,99,101,97,101,86,94,96,97,99,94,94,90,95,91,100,102,77,101,101,87,102,109,93,98,103,106,108,102,98,100,91,103,100,105,87,109,93,91,98,96,94,96,104,100,90,96,105,102,98,102,83,93,111,92,110,98,102,105,100,107,110,103,105,92,103,89,95,101,85,99,104,114,106,88,75,92,96,101,100,106,107,87,113,105,100,96,103,102,102,97,104,104,99,105,94,102,98,100,103,99,101,94,101,91,104,99,110,108,96,102,97,111,90,106,102,95,100,99,102,94,107,96,86,101,103,97,105,105,93,116,99,109,106,96,92,92,99,94,99,84,107,112,95,101,100,86,102,104,101,85,108,98,100,100,96,90,97,107,92,97,105,101,117,112,102,95,98,93,93,99,96,102,101,108,94,91,88,91,102,104,93,99,98,109,102,103,93,86,124,102,118,94,93,98,99,92,104,90,97,115,99,92,99,105,103,101,103,100,85,107,99,70,103,96,107,94,114,100,97,101,92,105,117,114,99,110,101,103,99,100,80,104,81,92,87,93,113,106,93,101,99,105,100,99,102,91,104,110,101,107,83,92,105,100,116,104,116,98,97,82,97,107,100,102,101,91,102,96,92,104,95,95,102,85,98,90,115,100,95,91,94,108,98,98,86,100,102,90,100,96,96,91,97,97,100,113,101,97,110,97,95,79,106,96,90,97,107,95,98,105,96,91,89,105,97,79,89,90,95,111,105,102,102,97,96,104,89,108,102,94,100,117,91,116,104,88,98,100,79,105,110,99,85,113,80,104,110,112,87,90,106,109,92,87,92,95,87,102,106,97,104,105,102,99,103,100,103,97,127,83,99,117,89,97,100,100,100,103,100,100,91,95,79,102,99,101,100,95,88,105,89,105,101,91,101,101,97,105,101,95,103,105,91,97,98,99,112,90,88,106,97,96,97,110,104,72,99,100,101,98,100,94,107,103,135,96,106,100,95,104,96,99,89,93,97,96,102,102,109,107,103,94,105,99,97,100,101,104,88,110,89,98,99,102,95,101,99,93,104,98,85,113,102,87,118,105,97,96,106,100,105,95,105,105,100,102,105,114,105,103,90,102,99,95,88,106,104,100,101,97,103,114,107,103,82,100,111,109,91,103,95,94,109,102,101,110,114,110,98,95,109,108,99,86,110,92,90,107,101,110,93,111,97,97,90,108,105,100,94,109,94,105,99,98,109,91,99,100,96,113,100,108,96,94,107,96,97,113,95,117,103,99,95,102,102,101,102,87,101,97,93,99,104,98,97,76,95,98,100,99,100,90,105,92,100,101,94,95,106,102,101,95,115,96,103,97,108,106,96,98,109,108,103,90,96,98,105,104,101,106,101,88,64,92,104,103,125,95,102,100,102,99,97,102,116,97,104,95,106,91,105,105,98,102,90,98,92,93,98,94,96,98,100,95,94,97,105,107,100,103,111,99,107,102,117,96,101,88,102,109,104,98,96,101,110,94,95,94,96,103,105,113,98,93,119,101,102,108,96,110,92,101,98,106,91,110,121,105,102,108,112,103,101,95,88,113,103,96,91,95,108,87,104,92,102,105,96,94,99,91,102,95,101,104,100,106,96,103,82,103,101,102,98,93,123,77,98,91,98,105,90,105,93,95,114,111,113,100,116,94,99,102,113,108,83,97,64,98,97,96,104,97,97,97,97,96,98,105,82,91,98,108,99,111,91,100,96,103,97,100,95,104,106,100,98,98,90,106,106,109,101,94,98,105,97,107,96,91,104,98,101,99,101,88,97,100,96,107,94,111,93,79,105,103,104,102,104,92,106,97,100,95,105,91,102,96,87,113,101,92,91,90,101,89,91,107,104,95,113,106,96,103,96,102,96,100,80,111,101,99,95,96,97,102,115,77,105,105,96,101,98,108,109,79,99,104,101,97,88,102,95,92,84,90,73,95,107,105,101,105,112,97,104,97,112,104,105,96,100,105,98,94,104,97,93,95,111,110,99,90,93,108,106,98,104,102,104,100,96,95,93,75,96,106,91,91,100,101,106,97,86,102,88,106,98,122,91,96,115,104,91,84,102,103,98,93,99,103,102,100,110,99,96,108,107,109,112,93,108,96,102,99,101,101,93,111,92,104,105,107,107,112,94,75,96,103,98,100,97,101,95,95,104,91,110,99,87,113,108,119,94,103,84,109,90,87,97,95,95,85,103,98,98,102,92,92,105,99,95,94,92,100,98,96,99,98,89,101,94,84,93,79,99,105,102,105,106,87,107,90,92,97,93,93,100,98,101,109,101,97,107,103,95,96,89,92,93,97,81,99,96,104,113,94,91,97,96,110,91,124,97,94,95,97,95,103,113,91,93,98,112,88,106,95,94,96,106,93,119,103,112,97,105,83,98,97,97,99,101,97,104,99,93,96,97,95,89,105,105,105,102,103,96,100,95,112,98,103,99,107,102,105,98,95,113,103,92,105,98,94,96,87,95,88,99,92,111,98,99,132,108,97,116,104,105,108,99,110,97,105,90,98,104,90,102,98,95,96,93,91,100,87,100,102,95,98,101,95,102,91,104,94,112,97,106,91,108,69,97,100,96,98,100,102,112,86,94,93,101,96,91,100,90,92,112,97,85,96,96,96,96,104,92,115,94,105,102,97,101,99,99,108,83,106,96,104,90,95,117,114,101,89,103,93,97,95,89,106,97,103,91,109,111,87,108,97,98,97,87,92,109,101,99,82,87,101,104,108,102,104,95,102,90,100,102,118,93,90,101,74,95,66,107,93,103,95,87,104,98,104,106,106,99,103,107,109,109,92,86,105,91,101,98,97,89,97,99,99,101,94,105,107,90,99,104,115,108,92,104,110,84,91,96,104,91,105,94,98,100,91,96,106,99,96,92,92,95,105,105,101,102,97,100,102,102,109,95,105,97,103,101,117,105,104,97,108,104,96,91,88,91,99,103,110,101,98,109,114,91,103,99,92,110,117,108,99,112,105,95,117,92,97,103,86,92,113,103,100,105,88,102,104,93,108,100,105,97,109,103,101,97,87,69,111,116,105,97,103,102,102,101,90,103,103,99,109,91,100,98,106,101,104,98,93,89,114,106,101,99,124,100,106,88,102,112,104,106,95,123,102,95,95,101,99,109,110,118,104,98,95,108,102,92,105,93,103,123,111,99,99,94,98,106,102,96,103,105,98,97,108,113,91,99,111,84,98,106,101,100,101,98,91,83,92,95,84,109,89,104,89,110,91, +716.10059,110,92,109,89,99,99,95,100,103,127,87,90,97,102,115,99,91,102,112,87,92,100,90,113,109,101,105,98,100,110,94,103,92,95,100,98,90,91,104,86,94,97,101,96,104,106,91,98,106,101,102,101,102,87,102,91,95,105,104,90,93,105,101,85,105,95,98,98,105,101,99,99,95,106,94,90,93,105,101,90,97,103,93,95,105,93,100,101,65,99,102,105,116,104,103,106,87,105,97,90,98,91,104,100,103,127,88,102,106,92,97,97,105,98,106,90,93,102,102,109,101,112,90,115,102,108,104,99,107,97,101,100,101,99,102,100,93,97,72,102,91,89,88,95,91,97,98,95,91,95,99,95,112,102,105,98,100,97,103,96,99,101,99,99,106,91,104,102,102,98,92,104,89,96,93,87,107,98,103,101,97,99,73,92,96,121,105,100,107,106,91,101,102,87,93,103,82,95,99,100,99,109,99,101,98,87,101,97,82,107,87,99,100,94,106,84,90,68,94,102,89,99,91,118,95,96,100,100,101,97,97,109,95,103,100,101,98,106,99,77,111,92,103,91,94,105,109,101,99,101,107,102,86,105,96,105,138,91,99,93,83,92,103,88,103,100,98,93,99,90,95,103,101,101,101,105,98,95,75,98,104,103,97,102,104,104,89,99,97,104,100,94,95,99,96,106,101,98,99,95,96,116,110,111,91,92,105,109,101,103,84,108,98,108,95,109,90,102,111,91,95,94,96,113,93,81,91,100,91,103,87,83,100,103,108,102,98,99,96,100,104,108,113,93,88,100,93,96,106,97,101,103,94,107,100,104,100,112,96,98,93,94,102,89,101,101,100,93,96,112,107,95,96,101,93,88,96,98,103,99,97,90,108,96,88,95,108,98,105,93,95,89,108,98,80,79,108,99,96,90,93,89,104,105,97,101,100,104,91,103,95,91,100,105,89,95,80,85,88,93,92,109,104,111,102,94,102,105,84,100,93,94,101,115,92,105,102,96,97,109,111,105,89,98,81,92,109,95,101,93,94,97,108,83,79,99,103,98,94,95,97,96,91,107,92,102,109,103,91,90,101,92,106,97,89,94,98,114,95,101,106,100,109,85,102,100,103,103,101,86,100,104,108,91,101,97,93,102,91,106,99,104,109,103,95,99,95,115,112,93,104,99,88,86,91,68,113,97,101,87,95,105,100,93,97,92,104,102,106,102,94,89,98,94,96,86,101,104,105,99,97,106,94,99,94,91,92,106,100,95,93,100,101,104,99,98,91,96,90,99,100,97,100,103,105,79,108,92,100,89,97,94,90,104,97,94,93,111,92,92,105,99,95,110,91,101,95,95,103,104,100,110,116,88,92,111,103,107,103,109,91,100,103,93,103,97,91,95,102,89,91,96,90,104,100,90,102,101,91,110,86,92,95,95,96,102,104,94,91,113,95,90,98,88,96,90,95,86,106,106,98,107,115,99,91,94,102,94,91,98,95,95,98,99,93,99,95,92,105,100,91,108,96,96,87,113,99,102,103,95,107,100,95,88,81,106,105,105,95,104,101,93,95,105,108,104,88,96,109,96,109,110,87,117,103,94,98,131,130,103,92,98,100,92,106,92,112,107,120,107,101,98,99,115,91,98,93,96,100,105,97,101,107,100,88,98,106,103,91,106,106,100,92,89,95,99,105,103,100,89,98,92,112,97,99,109,99,112,91,106,98,91,101,101,111,96,98,96,103,95,99,113,72,96,87,98,103,100,110,111,95,105,96,112,97,102,95,92,85,93,101,96,95,94,91,83,104,105,96,99,104,105,118,90,110,96,96,110,94,95,95,94,89,92,105,94,85,94,111,87,107,96,103,96,91,100,103,111,99,101,105,99,100,109,101,106,99,90,91,95,100,94,95,100,111,110,103,87,101,87,83,103,99,99,99,92,95,85,99,96,96,90,95,102,79,79,109,93,93,114,105,109,94,100,106,119,96,96,107,90,104,99,98,114,100,107,105,106,97,87,99,95,100,87,103,93,92,95,102,91,100,108,101,101,103,106,98,103,91,103,98,98,102,100,101,100,113,111,95,84,93,95,98,99,87,87,102,98,96,99,91,88,105,108,107,96,111,104,84,112,102,99,101,95,90,95,82,100,98,101,93,96,107,93,98,98,99,91,73,95,98,102,112,95,102,105,107,90,90,108,98,98,88,93,99,88,93,112,107,103,98,86,104,87,86,95,97,112,87,90,107,86,90,92,90,80,86,93,112,99,100,95,91,102,97,92,103,83,80,94,101,98,101,94,98,114,112,108,99,98,69,103,98,90,87,94,105,111,94,101,101,103,103,94,94,90,106,102,93,98,101,111,106,99,112,93,93,113,105,100,119,102,105,99,85,96,100,103,99,99,96,103,115,94,100,100,82,100,110,103,108,103,96,78,97,89,95,114,97,86,107,106,99,104,96,107,107,94,88,90,102,100,97,106,99,90,100,104,114,105,109,92,100,87,93,101,91,99,105,100,91,97,106,94,106,102,93,100,97,94,100,114,94,107,96,96,107,100,107,106,105,100,102,85,93,90,98,105,89,102,93,114,94,89,103,97,97,88,113,100,98,101,102,113,91,99,107,95,95,83,108,100,105,105,96,101,103,94,97,96,97,92,99,91,90,108,94,96,96,87,99,102,109,98,100,104,102,98,97,89,101,99,100,101,110,102,110,101,96,102,97,102,100,113,101,116,95,97,97,107,88,92,114,113,105,121,104,96,92,102,100,101,79,93,103,94,99,110,98,87,119,105,95,106,88,101,104,102,102,76,99,96,92,111,99,97,92,98,111,103,115,96,110,99,105,101,93,112,105,105,84,100,99,95,97,95,96,109,93,110,110,93,105,93,94,102,105,103,94,98,104,108,102,114,105,93,105,99,93,103,108,105,101,99,106,114,101,106,111,106,117,98,98,96,110,101,106,100,97,89,106,113,96,107,91,87,98,93,102,93,103,101,101,100,70,120,104,113,74,93,110,94,85,106,112,105,101,112,98,102,94,98,103,115,103,110,104,90,97,95,98,92,113,94,100,92,96,89,98,96,105,115,102,94,107,101,101,99,97,95,100,100,88,97,103,98,106,99,87,112,100,101,112,108,106,102,98,95,104,97,101,88,100,73,114,100,96,110,90,107,96,99,95,97,102,93,100,98,100,101,93,101,106,101,94,110,103,118,92,106,97,105,89,99,111,96,107,113,91,100,101,101,98,101,95,112,98,95,90,109,101,99,101,104,92,109,92,98,94,100,97,93,100,97,91,96,96,105,112,88,103,75,109,102,91,94,106,95,95,94,114,104,100,104,104,105,108,96,108,100,90,101,99,101,96,109,100,104,105,95,102,100,86,107,104,101,101,99,93,103,101,98,105,106,110,95,101,102,91,102,90,109,97,106,103,106,103,88,98,107,93,94,93,103,91,104,106,94,103,88,113,94,93,100,92,93,100,96,105,103,106,99,98,101,83,100,89,96,104,91,90,112,100,106,109,110,69,97,105,104,102,105,88,101,89,88,95,104,102,101,89,92,94,94,104,106,100,95,94,113,104,103,97,100,97,102,109,91,84,91,104,92,98,111,106,106,104,97,107,101,83,112,101,108,95,93,105,103,113,76,87,100,96,91,104,109,103,107,92,94,108,104,98,95,103,101,85,100,103,91,94,109,96,98,104,96,91,89,81,96,109,99,96,109,90,98,73,102,92,97,98,99,93,100,113,97,98,102,89,98,103,100,95,103,103,96,102,102,108,89,97,100,103,88,101,108,96,95,107,103,97,103,98,95,96,95,105,121,96,88,97,105,98,95,101,104,92,97,107,105,92,95,87,95,103,97,104,102,102,86,105,91,106,105,103,96,102,102,96,92,93,102,96,94,99,101,100,96,93,90,94,98,99,101,100,103,106,92,90,106,109,100,99,106,95,98,96,98,95,95,99,105,86,101,98,82,96,103,95,100,88,97,103,93,96,91,95,96,91,98,105,94,86,111,86,88,97,94,87,114,102,96,96,104,85,97,100,96,102,99,105,94,95,102,94,99,105,104,100,97,105,88,96,99,112,103,98,96,91,100,101,101,108,114,94,104,102,112,100,107,88,105,98,116,95,113,100,92,97,107,103,90,95,93,105,83,98,95,94,104,104,96,90,85,91,97,106,87,99,97,105,92,102,110,109,104,96,108,103,107,100,101,95,101,100,96,110,98,95,113,98,98,97,95,88,83,98,101,96,83,96,102,102,105,92,100,94,99,101,102,98,88,102,104,89,109,113,93,96,99,105,99,95,95,103,62,90,105,97,105,105,110,103,102,100,117,99,100,95,110,105,108,96,105,88,97,121,104,97,100,111,113,96,108,103,110,98,105,73,99,97,86,93,118,101,93,98,96,112,96,92,93,108,106,104,99,100,99,91,87,106,101,100,103,95,107,98,111,105,100,93,104,102,92,103,83,121,115,97,104,94,99,91,103,92,73,107,112,96,96,104,97,92,105,96,101,92,104,97,99,93,94,96,104,74,125,103,90,98,96,107,109,96,95,104,97,101,98,101,97,101,95,95,99,104,109,87,104,104,94,79,110,103,96,109,92,106,103,101,95,97,105,119,96,96,100,97,106,95,88,95,104,110,92,85,111,95,107,107,109,93,97,113,100,90,115,90,101,109,89,105,95,104,98,102,102,92,110,99,80,95,109,89,102,81,108,101,101,83,98,91,93,93,94,100,101,96,97,104,98,99,105,100,103,91,94,98,98,102,97,94,107,98,96,104,94,103,110,125,110,89,98,100,94,97,93,83,105,91,94,118,97,90,96,94,102,106,109,104,93,87,92,95,108,96,100,86,110,80,98,95,104,83,97,109,108,101,97,86,100,129,89,114,92,90,97,103,99,93,65, +716.24194,99,87,98,104,107,97,103,94,80,94,88,103,89,97,101,106,92,106,104,99,97,94,97,100,87,100,96,100,95,103,103,92,97,92,105,97,94,102,101,94,102,111,105,94,108,104,104,109,107,89,107,100,94,107,100,114,97,101,101,99,99,94,99,89,109,106,90,113,108,108,99,103,98,100,98,110,108,94,103,105,110,108,96,105,86,96,109,98,103,107,115,102,104,103,102,98,108,103,101,116,93,100,87,109,99,101,99,95,106,110,95,99,101,92,104,105,94,106,96,107,105,99,108,93,80,102,113,111,105,94,99,109,89,97,102,98,100,91,102,105,110,101,105,107,99,101,104,105,98,92,95,103,103,90,87,100,106,99,113,105,109,106,111,106,105,88,99,100,98,106,101,104,107,94,117,104,117,88,131,107,101,95,104,79,104,112,104,97,92,98,92,98,96,99,96,95,106,96,107,104,95,104,105,103,104,108,97,101,106,114,104,103,99,104,113,105,95,97,78,96,95,107,102,90,90,106,98,100,94,110,102,105,94,102,97,102,102,100,104,104,91,93,105,109,97,98,106,91,105,90,80,87,96,107,83,97,107,94,114,107,81,100,93,99,108,100,104,88,113,74,89,93,103,96,99,108,98,111,92,91,100,111,100,98,99,91,108,112,104,97,103,98,103,114,95,104,83,106,100,97,97,108,98,112,95,100,90,100,85,100,96,101,98,105,107,97,101,103,102,112,95,101,107,100,101,96,105,95,100,99,107,84,99,107,101,109,99,95,98,100,80,96,89,90,97,107,91,104,105,93,94,96,87,108,92,110,83,100,106,102,113,111,94,88,104,90,98,85,97,95,110,96,106,96,95,70,100,98,93,95,113,96,98,97,103,93,98,93,112,83,113,100,101,100,97,105,105,89,99,93,98,102,102,95,104,86,95,106,95,100,101,104,99,91,94,101,95,63,96,98,97,95,91,99,99,107,93,99,100,106,140,102,101,102,91,89,104,117,103,98,97,71,92,98,99,100,93,102,97,103,87,99,94,107,105,92,92,96,112,101,109,103,109,100,102,98,100,102,110,101,93,100,99,95,106,98,104,97,105,107,95,91,108,106,104,105,103,100,91,94,109,96,118,109,100,97,96,99,96,91,105,94,101,95,119,104,91,113,98,96,103,112,98,96,107,97,94,96,97,101,95,101,103,104,101,103,109,102,93,107,100,101,108,99,102,97,101,109,100,100,106,99,101,109,94,102,93,103,95,100,105,99,100,98,97,98,103,95,96,95,97,103,95,98,108,99,100,106,108,92,100,99,96,101,82,105,101,100,92,95,100,106,100,95,96,89,103,104,100,90,109,107,95,99,105,107,100,100,110,102,101,94,110,97,97,107,110,88,98,104,88,95,109,97,99,96,102,108,103,106,92,105,97,100,87,95,105,97,92,96,100,106,103,108,88,122,129,97,102,94,101,110,101,96,103,90,104,94,98,109,104,105,99,100,87,106,82,82,106,103,112,105,99,106,102,104,103,96,93,89,106,103,104,93,93,98,105,103,107,95,112,93,115,83,91,90,97,78,99,93,101,100,100,105,96,98,102,99,100,107,96,101,102,108,113,97,97,88,105,103,116,99,109,113,115,93,98,105,91,104,105,99,97,101,101,108,95,115,99,102,104,95,89,93,95,97,104,89,106,101,100,93,103,112,106,92,106,103,97,92,99,95,118,89,91,109,79,108,87,87,117,93,102,105,106,108,98,112,112,101,103,94,105,93,101,105,99,90,66,90,104,115,110,110,95,88,129,81,102,110,95,106,104,100,104,106,87,100,99,88,109,106,95,95,96,131,102,113,106,95,103,98,92,107,95,99,103,104,104,92,101,103,109,89,103,108,105,92,100,104,105,99,106,110,97,98,98,106,108,92,98,101,105,102,89,100,105,91,94,107,122,94,109,94,101,91,108,99,97,89,98,91,95,105,95,110,91,104,99,122,101,91,100,103,96,107,101,97,111,104,99,94,105,100,84,101,96,103,92,102,112,112,106,102,101,101,104,98,117,96,95,112,107,101,104,104,100,93,93,113,96,107,110,102,108,104,94,97,116,101,104,110,98,115,102,93,100,96,101,95,106,100,101,107,91,94,92,79,113,109,94,105,86,100,90,104,109,105,102,109,95,100,99,105,91,104,99,102,105,99,102,109,62,91,102,97,94,100,105,104,97,84,90,86,100,97,104,88,100,91,89,106,95,93,109,94,105,101,97,98,96,106,95,104,108,96,98,112,106,97,105,114,91,90,113,108,105,98,101,98,93,99,98,98,104,100,117,106,103,105,111,102,107,105,96,103,98,95,92,102,97,99,109,102,115,83,112,108,102,119,104,103,91,98,98,108,109,103,108,107,110,118,95,112,100,97,94,110,92,101,107,133,113,125,96,95,91,98,71,91,99,87,91,91,99,114,94,106,101,105,104,98,89,96,101,96,96,102,113,105,102,99,105,94,101,97,101,100,102,98,90,91,100,105,98,102,100,99,93,100,106,111,109,96,93,113,96,96,107,98,100,100,105,104,108,92,108,97,102,101,89,108,101,91,105,101,116,105,101,108,117,99,101,102,100,90,113,99,101,84,101,115,103,90,92,97,107,95,90,113,103,89,109,85,97,97,94,105,108,102,109,87,99,98,94,100,107,81,95,106,108,113,114,83,102,105,90,117,99,100,109,102,102,95,108,116,103,84,95,98,93,103,97,89,96,102,109,96,105,106,105,100,103,100,92,102,105,113,93,100,98,106,88,102,108,99,99,112,97,109,99,111,102,104,101,101,105,98,83,112,110,100,110,103,103,103,98,91,93,98,69,92,88,105,85,76,109,98,102,96,109,101,96,109,105,102,101,111,98,104,102,95,99,107,105,106,83,97,89,99,91,104,102,103,109,102,93,102,101,83,96,102,105,100,119,100,103,98,112,99,103,113,84,103,96,83,95,97,95,91,97,104,97,81,113,102,98,98,94,103,110,113,113,96,108,95,89,92,101,100,99,98,84,113,103,107,95,108,104,113,97,98,113,94,97,105,95,98,98,95,106,111,99,111,88,93,102,101,101,88,104,98,101,101,103,100,111,105,98,95,100,93,107,102,126,107,107,103,99,96,101,91,96,111,95,99,102,96,98,92,109,92,104,99,104,99,103,107,97,107,99,83,102,97,102,112,111,98,113,93,103,104,105,105,106,95,97,96,96,109,93,110,104,91,97,93,101,108,102,98,110,101,102,102,98,99,108,110,109,109,101,101,101,90,106,99,105,98,102,95,113,110,99,98,104,100,127,92,96,106,98,106,100,93,94,89,88,94,98,102,95,97,105,89,99,100,108,112,98,94,106,113,96,83,103,101,98,96,95,97,94,93,99,98,108,106,101,93,102,78,94,103,107,105,94,79,107,101,97,93,102,107,100,100,101,95,87,79,98,87,87,81,100,106,110,102,103,95,98,88,105,93,98,101,116,98,103,105,119,103,109,107,94,107,104,102,89,110,99,95,110,98,97,98,99,108,107,100,81,110,100,101,102,99,107,92,102,101,102,102,105,100,94,104,99,91,72,109,106,98,95,95,104,87,105,96,99,108,105,97,84,101,100,78,105,92,100,80,102,107,101,92,101,98,104,95,96,93,110,102,109,97,109,97,100,95,89,101,107,107,90,101,108,109,96,108,105,86,108,96,106,92,97,105,104,98,95,102,102,106,96,103,99,108,116,110,118,104,103,93,105,100,100,95,92,109,100,96,107,100,105,95,87,101,99,92,94,96,104,94,97,99,98,110,99,118,90,106,92,89,104,90,109,101,95,111,104,116,102,106,108,111,92,92,68,119,109,99,98,108,95,109,99,104,103,99,104,102,112,103,99,92,83,116,99,105,86,97,91,87,90,102,93,98,96,113,100,85,100,99,101,92,104,75,104,91,96,91,98,106,103,103,98,112,92,79,106,93,98,89,98,91,90,99,101,98,96,92,90,86,112,93,87,90,104,99,104,89,99,104,103,97,89,100,101,94,101,90,100,109,96,110,97,114,99,106,101,100,100,97,100,101,90,97,119,94,107,99,104,89,95,108,93,87,89,122,101,100,106,95,99,100,106,104,90,110,100,81,109,101,109,94,99,99,118,102,99,105,102,94,110,128,94,87,108,110,104,109,107,106,91,111,102,100,91,103,97,90,109,113,96,112,87,108,101,99,98,98,97,92,113,110,98,86,92,101,97,106,105,109,95,102,98,97,103,91,90,113,98,103,97,95,99,110,107,79,99,89,93,94,87,106,106,98,99,94,96,96,109,96,89,92,109,98,112,96,109,95,100,104,135,81,87,97,96,95,115,100,102,96,91,100,111,112,99,98,106,96,94,105,101,103,102,109,95,106,101,95,91,90,94,97,89,101,93,115,95,113,93,93,92,104,96,104,92,99,105,89,109,96,98,97,113,94,103,98,106,101,98,97,102,98,101,105,91,89,99,98,95,113,106,81,95,117,103,108,107,73,106,112,111,95,106,97,104,94,108,98,104,91,106,108,95,106,89,103,104,91,107,112,101,103,82,101,95,102,106,95,85,104,91,106,107,105,121,99,102,91,110,108,109,104,99,97,109,99,108,100,84,85,109,86,106,107,100,92,106,106,103,108,76,85,107,81,104,86,79,108,96,102,93,105,101,103,95,100,103,97,101,108,105,108,110,91,103,96,112,105,105,81,103,99,98,101,96,97,85,116,103,97,114,103,92,97,103,105,100,104,108,98,100,109,108,105,105,97,102,102,92,103,93,89,104,110,102,93,96,82,92,98,94,91,95,97,102,116,104,106,110,102,98,102,95,96,93,112,90,113,109,100,92,82,94,99,107,102,98,102,93,95,101,97,107,107,106,105,100,113,87,112, +716.3833,113,90,97,113,91,104,100,91,95,100,109,93,100,101,105,104,96,115,109,93,106,93,94,105,104,100,97,102,102,103,103,112,82,107,106,109,90,92,94,98,90,116,99,95,101,105,99,99,109,115,105,96,94,100,101,100,100,103,114,109,96,105,73,107,104,104,94,121,92,89,89,109,95,110,94,82,91,96,100,107,100,99,93,85,100,96,90,117,91,101,101,93,115,114,91,94,112,99,100,94,101,92,101,90,100,76,93,105,94,103,91,83,107,98,102,111,100,114,102,88,105,94,95,104,102,97,106,101,109,117,101,106,95,88,110,105,84,103,95,97,76,100,98,108,100,95,94,93,99,104,96,96,102,98,91,102,101,87,105,110,101,115,104,100,101,100,98,98,102,94,97,105,91,91,99,95,96,94,107,100,92,104,96,98,97,97,84,98,93,87,68,104,86,97,88,108,106,95,104,102,104,96,95,83,98,107,92,104,122,100,84,101,89,94,97,101,101,98,94,102,97,95,104,94,91,103,99,101,97,101,97,96,104,104,106,87,102,102,100,101,97,105,109,108,103,101,96,102,96,104,91,95,110,96,114,104,95,95,103,108,100,103,104,94,96,103,102,92,91,94,108,100,87,84,103,100,102,100,95,101,99,116,104,98,94,106,97,100,104,106,98,98,96,108,102,115,104,86,92,96,97,102,106,111,96,101,112,92,99,99,97,98,98,106,101,104,95,97,104,104,108,97,97,104,99,84,103,94,103,100,96,108,121,104,98,105,115,104,89,103,98,95,96,94,106,114,95,117,95,88,96,92,99,95,82,97,94,86,105,90,107,78,102,101,88,109,97,97,98,114,112,100,111,105,95,110,105,97,107,105,100,106,101,101,94,100,105,94,96,99,104,100,90,98,106,96,86,96,94,102,104,104,110,100,97,104,106,91,104,95,96,92,106,104,96,92,93,99,89,97,102,92,94,101,101,109,111,103,90,109,100,102,91,103,94,116,106,102,99,109,109,92,105,118,96,113,96,99,100,99,117,104,105,109,97,96,124,94,102,105,99,94,104,99,113,99,92,91,115,89,108,109,109,99,113,102,102,111,100,108,103,110,112,96,102,98,108,103,107,102,106,111,103,101,97,100,100,99,99,93,105,93,96,96,100,104,101,112,111,103,86,104,107,102,105,102,88,101,91,116,100,107,102,100,99,106,105,98,93,99,98,96,94,111,105,97,103,103,113,124,101,65,101,105,110,95,98,109,94,104,103,82,99,105,97,113,100,106,98,100,94,103,94,100,100,108,89,109,97,113,97,93,90,106,112,105,99,107,105,102,101,103,103,99,103,112,105,108,112,105,94,99,98,94,114,91,83,95,103,105,92,99,107,96,97,120,104,104,90,108,103,98,101,110,99,98,94,88,112,94,113,102,109,96,93,103,102,105,99,123,64,91,101,93,93,109,97,93,91,106,103,84,109,104,92,94,106,90,100,115,100,104,103,88,96,96,91,97,97,94,92,102,98,113,100,116,97,94,92,100,115,110,96,106,111,94,100,107,105,102,111,103,101,96,103,89,93,90,108,106,91,90,92,99,104,98,90,91,94,95,125,93,99,101,99,102,98,101,113,101,104,105,92,107,104,89,89,98,103,99,100,88,105,110,110,90,117,103,112,110,98,102,94,116,100,109,93,96,111,99,82,106,114,97,96,96,108,94,96,102,105,92,100,120,100,98,102,91,112,104,109,100,97,101,95,106,108,107,103,112,95,105,102,111,103,102,89,95,108,109,100,114,83,106,103,100,106,96,97,104,99,97,98,106,110,111,106,114,109,107,96,82,96,98,92,98,95,93,92,104,96,109,92,102,104,98,108,104,92,96,103,121,98,108,100,110,89,94,104,87,98,93,100,113,92,102,103,107,108,100,69,105,88,99,109,95,88,103,100,94,110,91,133,102,97,91,96,104,104,91,96,103,105,82,114,103,86,99,117,98,99,108,110,103,103,100,100,91,104,104,101,104,118,103,96,108,107,104,114,96,90,110,97,103,101,113,86,99,97,100,87,98,109,94,109,109,104,109,108,97,96,99,102,83,96,104,95,105,97,109,99,83,101,102,96,98,104,103,102,102,114,108,103,96,101,108,102,98,99,107,104,101,101,108,106,77,108,100,105,109,95,86,114,80,109,108,109,102,99,90,106,101,95,100,99,94,80,111,96,100,97,102,97,100,98,99,97,103,100,94,84,102,95,102,111,100,115,101,102,95,99,99,83,94,108,103,72,107,105,103,91,97,88,86,109,102,107,107,104,106,105,96,94,94,103,106,104,103,97,99,104,92,104,111,110,97,118,93,103,110,96,100,99,124,102,88,88,113,109,95,91,105,105,88,121,101,98,97,91,100,97,100,105,102,95,94,93,99,118,97,102,105,102,99,101,95,96,94,88,95,100,93,101,94,102,99,105,94,103,105,95,95,70,102,101,94,103,102,103,100,100,125,106,96,93,99,104,91,97,91,92,112,96,99,91,109,87,102,111,98,105,107,99,100,94,81,101,105,104,113,107,105,97,95,99,113,93,104,107,117,104,96,101,91,93,95,81,104,97,98,90,85,91,108,92,101,101,108,104,99,94,94,97,103,105,104,100,72,100,102,91,109,96,97,113,99,105,105,105,96,96,114,104,102,91,101,109,97,92,92,104,96,94,104,103,113,103,111,102,92,93,110,109,104,96,100,104,99,111,101,86,102,106,93,108,120,106,94,101,109,102,103,96,111,108,104,107,111,99,114,105,96,85,105,97,97,94,101,95,100,124,105,89,86,101,110,101,101,105,109,105,91,113,89,98,95,118,103,104,85,93,114,111,100,99,107,91,105,103,96,92,96,100,110,102,91,94,107,83,97,113,98,106,110,100,88,108,100,85,107,118,112,123,100,105,110,88,103,102,102,97,106,101,83,103,92,98,75,100,89,95,102,91,97,89,99,106,100,101,108,108,104,100,102,95,119,99,112,86,95,103,102,98,117,111,97,95,91,109,102,99,101,101,112,116,99,102,98,101,92,95,101,101,86,113,108,109,83,93,106,92,97,99,109,101,92,109,101,91,81,101,105,101,107,80,90,105,89,103,95,99,104,106,95,98,99,109,111,88,96,100,97,95,106,103,95,102,113,105,100,91,96,95,88,99,114,113,113,102,108,91,92,99,112,106,106,108,114,90,99,88,100,102,99,104,94,97,112,92,94,84,100,98,108,91,104,112,93,94,94,100,92,112,105,109,100,101,103,94,94,103,88,110,107,91,102,105,77,100,98,100,106,113,98,108,94,95,107,104,87,96,91,91,102,103,100,94,94,92,91,89,80,96,96,98,101,106,95,108,92,113,99,87,101,94,99,104,112,99,101,92,87,100,98,91,99,100,102,99,98,110,105,93,102,100,106,104,98,99,101,95,105,92,96,106,98,72,94,92,90,92,113,103,94,97,103,106,98,104,97,98,111,98,89,98,97,102,105,101,99,101,102,87,99,105,87,90,99,101,76,106,97,97,103,92,101,93,91,72,104,92,110,97,102,84,106,99,101,105,112,111,105,96,110,103,95,90,111,108,92,94,102,87,101,113,95,102,96,96,103,92,107,112,117,97,115,88,96,102,100,99,102,109,95,99,90,104,102,106,104,102,99,106,103,104,97,102,95,108,99,109,97,93,97,91,109,99,98,107,97,105,89,93,113,113,97,98,106,101,97,93,97,108,105,100,108,91,105,106,91,108,90,96,100,96,94,103,98,95,111,95,110,116,82,97,103,94,104,93,85,88,101,94,99,98,96,112,110,98,94,92,89,101,99,85,102,89,99,100,100,90,104,96,115,96,100,110,95,106,97,104,104,101,101,92,91,95,94,98,102,108,98,106,105,96,97,98,94,99,105,93,94,107,111,99,101,99,86,98,101,96,95,100,99,99,103,110,95,108,77,92,108,94,96,98,101,97,101,116,113,101,99,93,95,83,100,103,98,92,101,97,105,101,101,97,94,95,91,88,112,105,91,101,113,98,103,113,98,107,97,97,105,88,91,106,92,101,91,102,91,115,91,109,105,103,101,105,94,95,109,116,100,92,87,99,106,101,99,98,108,97,101,82,96,99,108,105,94,95,104,101,94,96,98,104,107,105,99,98,114,98,86,94,95,98,100,110,95,97,103,99,94,113,95,104,99,93,107,100,104,107,101,95,104,102,83,102,105,91,98,94,91,105,105,96,99,114,104,106,99,89,95,113,96,104,109,98,108,108,109,101,97,107,94,106,96,100,96,102,100,92,92,103,104,115,115,98,100,87,107,97,106,101,102,94,101,92,102,104,91,112,111,105,93,96,82,105,91,92,102,105,104,106,111,104,107,102,108,95,99,88,104,99,114,96,92,95,108,99,97,85,95,98,122,92,100,106,96,104,80,121,103,110,93,107,108,101,105,101,105,103,109,98,101,105,90,94,101,103,94,101,115,107,97,98,106,93,96,109,97,99,96,93,108,105,95,112,106,88,84,95,97,101,121,96,102,101,102,97,94,90,104,132,97,91,100,100,102,91,101,98,111,97,100,94,108,102,102,94,98,103,94,108,109,113,98,106,97,99,99,103,97,91,105,98,110,96,103,96,105,108,98,106,109,100,100,95,94,93,104,95,104,101,117,102,81,94,100,82,96,100,100,94,106,80,90,90,99,93,113,96,100,103,91,98,91,92,103,102,106,91,107,96,97,102,96,109,100,113,105,103,89,103,97,95,102,109,94,110,92,89,97,95,102,98,102,109,95,102,113,106,105,98,97,100,107,99,105,104,93,94,108,89,108,103,102,106,108,98,115,94,109,88,99,102,101,116,107,93,112,89,98,96,92,100,88,104,115,105,90,91,94,96,94,104,106,99,96,92,84, +716.52466,107,89,83,101,98,86,98,106,82,103,87,90,96,101,109,100,104,70,96,91,99,92,92,98,99,106,106,105,103,105,99,99,95,105,105,111,93,60,96,95,86,114,103,100,100,98,94,99,101,103,91,82,92,94,100,92,98,88,102,95,108,93,102,75,113,104,87,96,103,88,117,100,90,100,92,95,94,99,102,95,105,104,93,105,99,96,102,105,99,102,86,89,100,103,100,84,96,97,98,101,101,92,83,95,100,109,101,102,95,103,100,101,89,99,100,95,93,105,94,96,102,96,105,96,108,101,91,91,88,100,90,114,92,96,92,98,98,95,82,91,100,105,84,92,105,87,103,97,105,94,103,85,109,101,94,105,97,93,94,101,103,105,107,103,95,96,98,100,105,91,101,98,94,86,100,101,86,90,102,97,96,94,88,102,99,104,85,105,99,94,94,101,106,113,98,100,99,95,106,96,104,104,105,96,90,114,101,95,113,103,100,104,98,96,105,97,107,97,95,103,102,103,99,103,108,107,117,100,88,93,93,96,92,112,97,92,102,103,99,95,105,95,99,106,86,94,102,91,99,97,92,95,94,95,90,107,96,100,123,91,93,99,127,95,105,100,110,109,101,97,93,96,108,100,107,98,117,102,104,84,112,91,96,96,103,107,95,92,98,105,116,97,110,95,88,92,102,103,100,101,103,92,109,91,101,105,99,96,98,93,97,105,103,96,99,96,112,101,107,96,103,96,105,90,111,99,105,79,90,110,99,87,98,95,101,107,104,105,97,96,100,101,98,89,88,105,105,103,104,106,105,101,96,100,97,98,95,108,98,96,99,98,95,92,101,102,85,103,96,113,93,92,104,98,110,96,95,86,102,105,112,105,92,98,108,99,100,104,101,96,103,98,104,92,105,98,96,92,99,104,105,104,104,96,109,97,100,96,100,84,89,106,98,98,104,99,97,93,99,88,101,97,105,101,98,98,95,108,90,107,102,103,91,93,91,96,102,101,96,99,100,93,97,101,90,93,85,99,99,98,72,104,93,100,104,102,99,105,100,97,106,102,100,99,97,102,102,95,103,93,91,98,95,107,87,103,94,107,100,95,91,112,94,103,101,94,94,100,103,102,96,101,102,95,92,95,97,94,100,96,100,98,92,106,97,91,96,95,95,89,119,105,92,88,92,95,91,87,90,88,112,95,101,98,95,101,98,107,88,92,99,80,89,105,105,105,90,97,106,100,87,98,98,97,103,100,86,99,109,101,97,90,105,100,88,90,106,96,100,104,102,116,99,109,99,96,97,105,103,92,96,101,104,99,99,100,98,105,101,88,107,99,103,91,100,94,97,101,105,95,98,104,101,91,103,105,92,100,100,90,105,95,81,103,81,97,99,100,101,117,105,112,98,91,98,94,80,84,96,91,104,108,99,100,95,73,81,95,91,92,98,90,97,101,94,104,95,95,103,92,100,106,103,104,91,90,95,100,99,96,102,95,110,111,88,99,105,96,99,97,97,103,117,91,105,95,99,85,101,104,103,98,105,90,86,119,102,102,102,102,108,105,103,92,103,95,98,96,101,105,104,91,106,101,70,108,103,94,102,94,105,83,114,80,104,91,105,99,102,99,92,92,101,98,100,96,100,106,98,101,101,94,110,96,93,103,113,85,86,103,102,105,96,101,98,94,96,102,95,104,96,101,94,79,104,107,102,109,99,93,105,97,100,90,106,101,100,100,107,98,80,93,94,94,97,100,87,101,114,96,102,105,106,86,96,96,101,92,95,95,102,101,106,104,98,99,98,97,78,105,98,103,107,100,92,116,101,85,102,102,109,96,95,98,114,88,92,103,97,93,102,99,101,86,95,92,99,99,109,114,96,99,102,105,99,99,100,90,110,98,112,95,103,90,103,104,95,95,98,100,101,99,106,87,97,93,99,96,101,96,100,86,93,110,97,100,104,93,92,100,93,105,104,97,96,102,86,82,102,104,99,108,90,106,110,91,106,92,111,95,116,105,105,105,103,96,95,103,83,94,100,100,92,98,94,103,90,98,97,112,109,102,109,102,104,94,91,99,102,101,95,97,103,95,94,97,94,101,94,95,101,98,110,93,105,104,106,96,91,102,109,100,113,104,84,107,90,105,101,104,103,100,99,79,95,95,113,100,90,88,84,94,107,99,109,94,103,92,103,98,117,101,103,93,94,106,87,90,95,102,102,93,96,101,99,65,102,95,97,72,90,102,100,88,100,102,96,94,78,93,87,100,114,82,101,97,93,101,93,81,100,102,96,92,108,74,99,104,90,95,96,122,86,106,100,99,96,99,73,91,105,95,106,91,93,101,107,81,98,100,99,86,95,102,89,94,98,112,104,92,92,92,94,94,94,97,96,99,90,109,93,97,107,96,103,95,99,99,112,108,93,108,97,96,94,98,95,103,101,101,93,108,100,86,91,96,100,96,87,91,103,93,116,105,101,106,100,88,115,103,108,107,103,67,101,98,100,95,104,104,105,90,94,107,102,116,106,100,117,104,105,92,107,94,99,107,102,94,106,102,100,104,99,106,102,105,101,99,105,93,72,73,110,73,105,98,110,102,95,95,103,98,95,102,102,100,95,90,101,106,101,89,99,98,102,108,121,111,96,98,102,93,102,98,108,96,84,90,106,96,94,110,102,99,99,92,90,97,106,102,99,100,110,114,110,113,106,94,95,104,109,94,99,113,93,95,111,80,105,83,79,112,97,98,92,100,94,108,102,110,97,103,101,100,95,95,101,100,98,101,100,104,105,102,110,101,101,113,108,103,89,108,105,98,95,106,107,107,98,103,98,100,86,101,100,92,98,107,99,109,110,103,104,102,113,108,101,109,96,101,97,88,109,108,98,104,100,83,91,92,95,103,112,99,98,105,106,89,97,104,106,98,103,102,106,110,81,97,110,111,97,112,81,99,92,111,111,97,88,103,87,103,96,113,113,87,105,98,124,108,89,97,105,99,113,106,121,102,105,96,100,92,96,104,106,105,99,102,96,86,95,120,92,116,99,94,92,127,106,96,109,100,94,100,109,95,109,100,102,97,100,102,97,92,96,109,102,88,98,87,111,105,104,102,105,114,94,100,112,100,110,108,97,110,107,83,108,94,114,104,97,93,100,118,112,97,91,100,99,104,100,94,94,104,124,96,87,89,105,112,92,93,92,91,98,97,101,102,87,94,88,110,111,98,105,97,88,91,99,106,100,114,98,97,101,97,110,93,100,96,97,99,106,108,101,100,85,100,95,100,100,104,105,83,92,91,100,103,92,100,92,93,92,107,99,112,104,106,99,96,105,99,93,100,94,101,96,92,91,121,101,88,94,111,98,99,110,95,103,98,97,105,96,96,95,94,100,112,101,106,72,82,103,99,90,99,88,113,99,105,102,97,97,91,94,91,102,102,96,97,82,102,87,97,95,122,97,102,94,100,98,101,98,85,99,100,113,107,93,102,106,102,97,106,98,100,99,79,98,96,93,113,103,113,97,90,111,98,100,103,113,89,107,103,91,97,106,96,109,106,102,109,119,95,102,78,92,92,98,102,107,100,95,110,94,109,96,113,105,97,94,88,100,105,110,99,105,98,102,104,96,95,86,92,103,95,95,87,97,98,99,99,102,105,107,100,91,98,97,106,90,96,109,80,98,91,94,110,99,98,102,104,87,99,91,95,101,98,103,93,96,91,104,102,113,101,105,97,105,103,105,109,100,97,105,100,99,91,92,105,97,105,100,99,86,104,105,103,97,93,105,93,95,96,105,98,96,97,99,100,98,95,93,111,91,92,93,88,97,100,103,98,94,92,97,94,99,91,114,111,107,106,105,108,98,100,104,95,94,93,102,105,89,113,87,101,101,101,100,101,96,96,91,106,95,90,96,97,98,103,101,95,91,105,98,106,105,101,103,101,97,95,81,86,112,107,97,109,103,104,100,102,87,106,99,98,93,104,88,97,95,75,101,98,92,113,103,97,93,105,96,93,104,89,103,92,82,98,115,103,109,105,104,109,93,95,111,98,106,94,93,96,101,98,99,100,109,95,100,98,106,109,98,93,95,103,107,98,91,81,109,102,96,94,107,83,92,110,103,108,93,99,103,98,97,107,100,93,97,112,105,92,102,105,106,113,101,105,108,95,101,106,103,106,109,97,94,102,101,89,101,87,117,101,96,100,99,105,96,94,109,111,104,96,94,96,113,88,123,112,103,94,108,96,96,113,116,98,101,94,97,101,107,98,96,102,94,97,108,99,95,90,105,98,104,89,95,94,86,102,94,103,109,97,96,92,105,98,101,114,97,102,108,89,105,106,112,106,105,98,105,94,100,115,96,95,99,116,100,98,105,99,107,101,95,106,108,89,99,105,100,105,108,95,97,82,101,112,101,106,95,79,101,104,108,114,91,107,104,106,116,98,93,101,83,98,98,98,99,110,103,100,90,106,92,105,98,109,93,101,94,88,111,112,85,106,99,109,100,88,105,106,99,106,114,108,107,103,112,93,92,104,105,99,95,107,95,107,101,95,87,100,91,89,98,116,94,98,102,103,107,113,106,109,72,90,106,81,87,107,90,91,105,102,99,100,109,91,97,100,98,102,100,100,101,93,101,101,94,93,100,98,93,121,105,105,98,92,96,102,108,83,93,105,91,117,91,104,106,102,100,100,95,96,106,64,94,101,101,98,102,102,90,98,93,100,94,92,98,81,99,99,96,96,95,97,98,97,85,96,103,115,100,98,123,92,100,92,103,100,92,101,103,94,109,88,107,97,99,99,106,100,91,97,102,105,101,92,93,99,93,76,96,103,115,103,97,90,94,111,77,94,76,90,96,106,103,98,108,96,123,87,101,107,96,98,92,109,98,84,90,106,97,104,103,100,101,101,101,98, +716.66608,111,98,96,85,101,116,117,102,98,98,93,100,102,97,104,89,89,110,104,102,96,97,90,105,104,105,98,106,117,108,108,97,100,102,100,100,103,109,94,97,98,104,93,99,93,104,99,99,94,118,103,100,91,100,96,98,89,102,111,104,90,109,82,102,104,109,100,97,103,94,105,92,102,103,104,93,91,102,99,89,109,92,95,113,104,79,103,105,101,86,92,88,92,105,97,99,102,121,87,98,102,94,97,92,100,92,87,96,99,102,101,99,95,98,88,90,109,92,106,102,98,96,102,94,87,104,103,92,96,108,90,102,95,98,95,95,102,100,96,96,106,114,97,96,92,87,98,102,101,95,100,96,80,93,91,92,92,96,98,102,114,96,98,98,105,98,93,90,105,93,92,96,95,92,113,99,96,109,91,95,97,97,103,99,100,91,94,104,106,94,84,101,99,90,101,99,102,90,104,101,110,99,83,90,96,91,103,88,102,117,93,92,97,100,102,96,89,99,105,97,91,118,89,96,97,95,90,101,91,104,101,77,101,109,94,95,103,101,91,101,101,101,118,97,94,93,97,110,99,100,84,92,102,97,97,92,88,105,99,106,90,95,101,83,93,90,96,85,87,104,109,91,98,111,112,87,97,100,106,84,103,101,91,103,103,95,104,93,89,92,118,93,104,82,105,89,103,103,98,90,97,98,97,94,96,103,95,107,88,107,111,99,99,84,102,97,96,98,107,97,104,100,92,105,100,106,103,98,103,108,100,110,97,99,96,96,99,77,86,99,106,112,98,90,95,107,100,99,107,101,106,108,90,93,99,95,87,90,91,114,87,96,101,87,94,102,97,113,93,85,95,105,94,93,100,95,106,96,96,95,105,98,101,112,94,93,108,94,117,96,98,92,93,110,95,102,101,104,94,106,97,75,110,108,97,110,95,95,100,98,88,103,89,86,95,90,87,97,99,83,102,93,86,101,100,83,90,85,96,116,94,98,96,87,94,108,105,95,109,91,98,94,113,94,100,101,99,97,98,96,98,105,101,103,104,97,90,86,104,86,94,91,101,111,99,103,80,105,88,95,99,102,98,98,95,88,98,102,79,106,97,92,102,106,100,110,110,102,99,83,92,96,101,96,100,100,78,96,89,100,107,100,72,97,104,94,100,96,107,102,101,89,90,102,99,100,101,103,76,79,95,87,100,106,108,92,96,103,93,95,101,94,94,97,94,99,91,99,101,105,93,110,99,92,108,93,103,100,107,101,93,103,102,94,91,100,80,95,90,102,100,93,106,113,104,99,91,107,90,99,86,113,88,101,95,78,103,99,91,106,91,97,103,99,101,87,89,106,94,89,96,99,97,101,97,106,110,93,101,84,110,107,95,94,101,90,100,101,90,103,99,107,99,103,103,95,89,90,111,102,107,105,100,85,109,104,97,115,86,95,99,94,119,104,95,99,102,97,110,103,91,96,97,97,92,87,89,100,109,106,108,104,98,101,105,92,93,104,90,114,109,104,113,102,87,112,95,102,99,99,103,95,113,89,87,110,92,100,98,97,99,106,115,97,94,87,88,106,109,98,101,110,100,105,83,105,105,100,103,97,102,102,102,101,63,101,99,98,101,110,117,109,115,98,94,93,91,93,99,95,96,104,98,93,89,111,86,115,100,114,94,95,98,103,97,100,112,85,95,93,99,103,127,100,93,115,107,98,107,112,110,95,114,103,105,100,98,107,97,96,108,106,90,108,96,99,87,101,100,114,110,82,105,99,92,107,108,86,105,91,93,100,99,95,88,102,93,99,86,107,98,91,96,96,88,99,104,95,107,99,96,95,99,97,106,119,99,116,98,105,92,101,95,93,99,95,111,106,94,109,104,92,124,97,96,100,111,96,96,94,99,86,99,88,99,99,102,103,104,97,94,109,81,99,95,105,109,94,96,97,102,107,83,101,93,114,95,104,93,91,93,95,78,99,86,107,91,101,101,93,92,103,99,109,93,105,91,100,101,96,96,102,98,108,94,105,101,97,103,88,93,98,95,100,106,101,94,107,91,101,105,106,102,102,87,106,87,91,93,79,108,99,110,102,107,86,114,95,99,98,101,82,105,94,101,97,94,94,105,96,93,102,97,103,88,96,97,71,98,121,98,90,101,100,102,97,95,95,93,94,106,114,97,91,95,96,99,93,100,110,97,108,102,97,104,91,97,96,97,103,100,95,105,103,100,109,105,65,72,97,89,105,103,100,99,96,94,101,97,96,91,101,94,90,109,91,97,97,91,88,101,101,113,81,117,94,90,107,98,104,89,100,91,102,93,117,98,93,95,106,100,96,113,95,109,90,95,104,104,107,99,97,115,92,110,98,87,106,98,96,97,88,99,87,108,85,98,100,98,100,99,95,117,101,92,65,88,98,102,111,98,111,94,99,101,116,102,102,103,95,93,100,79,93,79,101,104,90,100,111,109,108,86,87,90,89,103,102,99,102,94,91,99,90,83,73,99,103,103,96,87,100,88,103,88,111,86,98,113,102,93,99,103,96,103,100,92,99,105,95,102,98,105,90,93,101,100,108,94,94,99,105,80,92,98,98,79,99,105,92,122,92,97,105,96,88,101,78,96,106,112,109,105,100,110,97,101,95,83,97,97,107,110,91,117,97,99,92,92,88,94,110,108,111,102,97,100,100,88,101,99,108,87,115,100,108,92,97,98,105,107,113,99,98,95,98,114,102,98,97,104,106,96,101,98,83,112,79,94,92,97,105,95,103,106,105,106,95,106,101,105,112,90,87,106,95,105,111,103,91,102,96,98,103,102,87,103,101,99,113,119,91,81,96,81,105,104,93,99,98,94,94,108,104,98,88,89,105,96,102,109,105,106,91,104,101,105,100,94,91,88,99,106,100,100,94,95,109,104,111,95,110,100,96,111,94,106,102,103,101,110,100,108,113,112,91,118,104,89,80,124,109,100,90,102,94,112,111,85,98,106,77,96,103,112,101,100,97,97,120,104,99,93,102,100,100,105,107,101,98,106,95,87,100,113,95,96,109,93,101,106,104,61,99,105,98,110,95,112,91,107,113,101,93,95,93,102,75,91,95,105,103,103,91,99,103,106,103,93,98,100,111,95,108,102,102,108,107,107,99,97,101,98,93,102,112,97,98,87,90,87,87,85,101,99,105,98,98,99,105,94,83,89,98,94,99,87,102,95,93,93,103,101,94,99,90,102,102,92,100,89,98,88,82,102,97,99,106,117,109,103,102,108,85,105,96,108,91,116,96,93,104,96,82,108,94,107,111,99,95,107,100,105,100,94,109,112,96,109,105,97,103,102,102,85,108,93,101,101,93,97,101,121,100,99,100,109,97,100,92,92,101,105,105,96,113,111,81,112,102,85,88,94,100,95,96,102,102,88,95,94,108,102,98,108,107,93,116,106,102,101,104,100,95,88,109,104,102,105,96,102,96,93,106,105,95,107,105,92,90,111,96,93,88,106,93,103,105,100,95,98,91,97,94,72,101,114,87,98,98,107,98,94,88,87,108,102,102,106,101,101,100,114,105,101,104,99,104,93,99,90,98,88,89,106,103,101,111,88,93,95,94,98,98,96,98,96,94,101,106,99,92,98,104,96,88,94,114,90,104,87,99,94,108,103,105,99,97,99,98,91,105,96,98,99,97,93,95,103,99,99,97,99,90,86,96,92,110,98,102,88,87,95,97,90,85,106,94,98,94,101,93,104,101,103,94,97,101,99,98,110,102,93,100,93,91,100,78,99,96,102,97,79,92,98,96,98,84,101,96,83,80,79,106,94,95,91,101,101,98,114,106,102,103,100,96,111,99,91,92,95,98,96,90,93,106,99,101,98,125,88,106,91,92,104,97,98,101,96,99,89,93,103,97,104,95,86,97,99,96,101,88,97,112,108,101,116,99,111,94,109,90,101,97,97,111,85,100,97,108,99,99,107,84,92,100,101,95,104,90,90,98,104,102,107,117,91,103,104,103,91,97,72,93,105,84,116,116,95,106,107,95,94,88,98,97,106,107,107,100,100,94,91,106,96,97,118,102,91,102,98,104,103,95,96,88,97,102,95,111,95,113,112,92,100,102,98,101,98,111,96,101,95,93,95,102,105,87,96,96,91,86,96,100,94,100,84,103,95,98,105,92,101,100,99,86,104,98,91,108,103,94,108,83,101,96,88,108,111,92,97,96,104,102,97,101,103,97,99,100,92,98,102,110,104,97,97,116,98,109,110,101,93,99,88,97,107,98,96,96,110,85,104,98,110,96,106,93,97,94,104,100,102,89,121,91,93,100,95,105,100,101,106,101,105,100,95,106,91,106,96,96,105,96,98,101,96,88,96,96,105,94,93,110,95,87,96,94,105,102,94,96,119,112,105,99,91,117,101,113,90,87,92,99,93,99,104,98,99,102,112,93,91,89,94,100,100,91,94,106,99,102,100,91,99,95,106,100,97,93,96,102,103,106,94,103,107,97,106,91,104,97,103,109,110,104,99,102,107,106,85,109,100,102,113,114,118,96,106,100,100,108,92,99,75,108,101,104,119,103,101,110,96,85,94,102,99,92,93,87,101,90,100,112,102,92,93,91,104,89,102,101,81,94,83,83,98,107,96,91,104,111,103,104,109,96,94,100,103,113,99,60,101,100,103,100,107,98,117,104,93,92,99,106,102,95,75,106,91,96,98,93,104,103,96,87,110,100,92,96,72,111,96,94,109,91,112,95,105,98,113,90,96,86,98,96,96,104,100,103,95,89,106,95,109,102,108,85,97,107,113,88,88,99,97,99,103,96,102,109,98,94,98,94,102,107,108,109,113,96,108,98,92,102,94,107,90,116,99,104,97,89,112,98,105,101,99,106,98,80,100,91,107,92,100,100,106,116,100,93, +716.80743,107,93,96,104,107,102,113,94,109,92,108,106,87,103,93,102,94,102,85,95,103,90,99,99,111,107,94,93,104,97,96,81,87,101,100,99,92,101,102,101,86,98,97,103,94,98,101,121,97,80,100,130,94,82,101,103,93,95,85,99,91,104,94,108,88,82,95,114,100,109,84,115,94,94,105,96,101,95,99,104,96,109,107,96,104,102,93,101,105,94,102,85,87,89,106,98,91,99,99,97,97,99,93,104,99,97,107,98,101,99,90,89,104,92,103,99,100,97,106,87,98,101,96,105,90,116,108,96,103,99,102,106,98,109,122,119,98,97,102,99,95,97,102,107,93,92,120,96,95,89,92,117,92,80,85,69,96,100,102,104,99,88,99,92,105,99,87,87,99,108,100,114,103,94,102,96,110,87,97,93,94,103,106,113,99,94,96,85,99,98,105,97,101,95,101,82,115,100,90,106,109,101,92,99,101,97,93,99,109,97,106,99,103,103,93,105,105,96,105,108,95,87,105,103,78,97,100,90,86,100,92,98,98,94,92,105,109,100,100,100,84,93,103,105,94,99,111,92,100,104,105,97,102,109,97,97,95,98,92,100,96,105,104,87,99,97,102,108,104,108,108,102,103,94,121,95,97,98,91,89,94,92,106,97,93,104,92,98,101,97,91,100,98,85,94,118,105,110,99,109,105,99,116,112,93,100,97,94,97,104,112,103,104,95,95,102,95,97,96,90,96,101,89,97,101,95,88,95,107,82,92,96,83,101,92,99,98,88,80,94,89,93,94,100,98,95,104,104,110,103,108,96,93,114,96,97,96,113,97,103,107,98,108,98,104,102,103,95,86,100,108,94,93,97,98,98,100,110,94,103,110,101,102,106,99,108,101,99,104,97,107,98,98,97,100,94,94,99,103,103,92,94,94,93,100,104,102,97,99,82,93,101,99,98,106,91,99,87,104,94,101,99,101,93,106,83,103,98,114,103,90,108,95,100,91,97,93,104,102,97,105,97,96,109,98,95,100,89,96,102,91,99,99,102,107,101,100,84,97,104,94,109,112,108,108,119,90,89,108,96,92,106,112,100,97,104,102,111,99,96,92,99,106,87,108,86,98,103,104,101,95,73,95,108,95,91,96,102,102,97,106,114,105,99,97,108,95,92,101,88,109,111,97,105,106,91,104,101,102,86,98,100,113,102,109,89,98,96,94,94,88,87,113,97,109,92,93,115,93,106,96,102,107,101,107,86,99,107,100,103,87,105,93,95,115,95,102,94,95,97,96,102,96,95,96,106,100,109,96,98,89,83,101,84,101,107,101,80,92,99,92,93,100,105,90,93,96,101,101,105,102,94,91,93,121,101,103,91,111,98,112,105,113,100,92,101,87,98,100,107,92,86,101,101,99,105,111,101,106,99,102,94,96,90,105,105,95,95,100,106,87,90,100,91,93,102,97,105,92,102,94,98,96,110,88,91,96,97,105,117,94,100,98,109,98,103,91,73,99,113,99,107,96,92,88,104,101,96,103,102,104,107,83,99,99,100,90,114,110,91,106,93,113,102,89,96,90,103,111,77,94,88,86,103,99,110,104,102,95,97,97,96,103,90,98,104,103,99,91,99,102,107,99,94,109,85,106,105,91,100,96,102,106,94,88,88,109,101,89,103,106,100,97,104,95,98,103,83,113,102,106,96,110,100,102,108,95,92,101,108,105,91,110,119,103,100,113,106,96,94,103,84,98,106,92,98,92,104,114,109,98,100,101,103,97,106,97,97,100,93,95,101,95,98,106,112,103,100,94,104,86,109,108,109,107,102,108,123,103,109,89,98,108,101,94,98,98,95,95,97,106,97,72,91,113,106,113,100,93,101,121,113,95,99,95,88,102,107,94,102,106,108,100,110,81,94,120,112,106,94,97,96,109,100,99,88,100,95,96,94,97,107,103,107,97,101,93,104,107,99,112,100,99,100,89,109,99,91,121,106,91,106,107,101,89,100,101,103,97,104,99,101,88,104,104,94,100,108,95,110,106,105,98,103,98,97,122,105,87,110,104,106,109,94,102,102,92,93,97,91,108,108,123,104,105,101,106,96,99,107,107,110,97,109,99,106,94,97,105,106,104,107,107,118,73,84,107,124,83,110,103,106,95,100,100,100,115,98,106,105,101,94,112,101,108,98,105,102,108,106,108,100,99,99,114,91,108,94,92,109,102,104,114,96,99,109,99,96,99,94,99,111,98,119,94,106,81,99,113,88,105,93,101,98,96,91,99,95,92,93,110,110,86,102,102,97,116,107,98,99,94,118,99,98,94,107,103,101,104,104,116,107,89,105,103,89,121,96,98,90,92,99,101,70,96,98,91,117,97,79,110,101,103,113,98,99,103,84,106,117,92,88,108,94,76,105,91,99,105,97,92,102,112,102,103,110,103,95,99,107,104,109,106,87,100,98,97,103,99,112,96,103,103,116,92,106,90,97,101,104,107,98,92,83,101,105,91,100,107,75,101,87,117,105,99,106,99,101,106,98,96,116,105,102,107,89,98,105,102,106,109,99,92,99,110,104,93,91,104,102,96,106,94,101,101,110,103,91,97,97,100,94,100,99,88,95,96,109,97,98,99,95,104,94,98,105,95,97,105,102,103,83,91,98,106,91,92,108,106,109,109,98,106,92,99,87,102,93,99,106,93,103,95,100,106,127,113,112,104,113,90,105,97,94,100,99,101,113,101,107,98,99,93,106,97,93,101,110,105,99,103,100,108,113,95,100,92,102,102,99,113,109,88,99,87,100,93,109,98,82,99,114,93,102,107,91,89,116,99,112,90,102,100,101,86,101,106,113,97,96,110,105,105,94,87,98,96,116,91,104,103,96,92,103,103,99,98,98,114,105,108,88,104,97,102,100,99,92,97,98,80,110,107,92,105,98,92,100,83,97,100,99,98,107,105,98,98,92,105,107,92,84,86,105,97,87,100,90,103,95,96,89,92,92,93,100,91,105,100,105,140,102,97,105,110,96,101,105,98,102,103,96,93,99,103,98,102,99,87,97,102,60,97,102,101,99,123,102,90,93,99,106,112,98,106,90,94,109,94,91,104,105,87,91,104,99,109,98,103,95,94,95,103,103,116,88,98,101,92,95,92,104,93,107,108,99,102,97,101,99,90,68,97,94,92,102,92,83,108,103,108,97,105,119,94,96,111,98,110,99,86,95,106,93,93,96,104,89,104,103,113,96,101,93,96,100,100,91,102,94,91,92,98,99,104,98,84,106,96,116,106,98,90,96,90,103,98,89,109,106,93,92,94,105,104,91,95,96,104,94,104,109,100,105,104,99,98,97,100,95,95,93,95,104,94,104,107,95,112,94,107,109,105,109,77,101,102,100,103,98,100,109,97,104,93,96,96,97,96,104,90,100,103,111,106,88,91,84,94,100,100,99,106,96,97,92,108,102,100,97,94,108,102,83,104,106,102,105,110,90,102,79,100,90,101,113,111,78,106,90,96,101,101,105,99,105,101,110,95,100,109,92,97,104,99,111,76,109,100,95,99,116,102,96,101,108,87,93,99,104,100,99,66,102,93,101,106,109,90,91,91,98,83,92,90,89,103,102,102,106,98,92,102,102,108,85,99,99,100,91,105,108,101,96,85,106,119,99,84,103,100,102,98,105,98,115,98,95,101,98,91,106,91,93,92,91,104,95,104,129,98,102,98,108,113,97,123,103,85,88,96,104,105,91,100,94,107,100,90,88,100,88,101,93,97,102,104,96,100,76,96,108,93,94,74,99,102,89,97,94,90,97,104,108,92,97,107,113,84,109,108,94,95,87,96,102,99,87,99,104,94,83,97,91,93,94,107,99,72,96,111,96,96,101,99,96,111,88,95,103,90,98,104,98,110,109,106,100,95,97,100,89,83,108,83,117,99,89,104,101,95,96,107,89,94,97,84,106,93,95,106,98,104,109,100,105,103,95,94,92,95,102,107,106,117,98,96,93,100,97,102,99,106,107,107,100,92,102,105,104,113,100,98,92,103,104,109,105,106,90,99,109,108,100,100,98,93,96,105,103,92,97,105,91,104,101,105,125,95,98,108,102,136,110,100,114,91,80,97,102,125,111,97,110,93,104,103,88,85,95,103,101,98,96,94,113,85,109,98,118,96,96,97,88,105,104,101,103,100,99,97,100,116,104,101,91,84,108,91,101,108,104,99,105,104,102,98,94,102,106,105,94,94,105,86,104,96,110,97,80,104,96,109,105,89,87,94,95,103,93,106,112,96,93,102,91,99,95,85,114,105,101,105,100,102,113,97,95,95,107,100,109,117,98,108,95,92,95,93,98,101,86,99,78,98,96,100,90,83,91,98,100,105,112,105,91,96,96,92,97,106,96,103,106,100,100,107,104,107,106,88,91,93,109,94,99,103,111,94,94,102,91,99,99,98,94,106,95,96,102,97,109,110,95,98,100,83,101,81,100,98,93,94,96,107,103,77,98,90,106,100,88,105,105,98,99,89,101,91,99,104,60,92,107,104,109,126,100,104,104,102,101,93,127,98,96,99,102,99,97,109,112,94,109,99,109,113,106,106,115,97,92,104,99,104,101,104,95,96,105,98,109,94,101,99,102,97,100,101,85,101,101,107,112,132,96,94,90,98,101,96,91,88,96,92,105,103,98,102,94,72,79,95,113,99,98,106,100,96,94,98,106,106,97,95,102,108,90,94,87,99,95,79,99,107,89,101,100,102,102,96,100,99,86,93,93,114,105,99,106,120,89,109,94,100,94,94,101,103,112,106,98,108,93,99,104,100,101,91,96,104,100,98,94,93,85,107,102,86,93,94,112,104,106,86,90,85,94,103,87,106,91,88,96,98,91,98,100,99,85,124,98,110,98,101,107,104,105,77,85, +716.94879,90,89,87,84,92,73,97,74,88,86,94,104,100,84,106,91,101,111,113,109,107,97,85,86,110,95,88,112,121,98,104,108,93,112,98,109,117,92,92,99,102,87,100,90,107,95,101,112,75,99,94,90,91,108,100,97,91,95,99,85,102,101,105,99,99,114,97,116,102,89,96,91,94,97,91,102,97,110,98,97,99,110,102,98,92,91,108,102,93,98,102,105,99,90,101,108,94,104,94,97,97,96,103,94,82,95,94,101,104,94,91,69,80,99,93,96,87,104,102,103,91,97,99,87,87,96,104,95,100,106,102,91,91,107,111,101,91,94,99,91,98,102,94,113,87,98,99,103,97,91,71,99,101,89,101,105,101,99,100,93,92,102,106,102,103,105,90,87,80,100,98,106,123,86,99,93,96,90,101,90,97,90,95,102,98,93,96,99,95,85,96,94,101,94,104,104,104,98,99,90,108,102,87,100,90,105,94,98,105,100,101,101,93,107,98,109,93,97,96,106,110,108,105,97,97,103,110,95,58,98,83,88,102,93,95,114,94,81,104,97,95,109,101,109,98,96,98,106,105,98,90,99,96,94,103,102,97,103,96,83,95,102,99,100,103,96,97,104,95,106,89,95,92,102,95,88,97,97,111,112,88,95,103,98,88,99,95,107,111,104,91,97,110,106,92,113,95,101,108,90,87,109,101,100,92,103,92,106,83,101,92,115,107,106,104,99,105,99,89,92,100,79,108,101,86,93,83,102,94,90,106,101,100,97,102,97,97,90,91,98,103,91,97,84,104,117,88,108,104,89,113,96,108,91,92,102,108,101,109,104,101,86,88,82,94,97,94,105,95,97,87,102,114,94,106,102,101,103,101,120,92,92,114,99,107,100,91,89,105,90,93,89,87,98,100,92,100,89,88,111,109,112,100,87,97,85,96,102,88,90,98,109,107,96,100,100,96,105,100,93,95,95,106,94,102,91,96,98,91,103,95,104,105,106,94,80,91,103,94,95,107,91,96,108,99,103,89,88,96,98,100,105,92,110,94,116,92,103,95,87,94,100,100,100,98,95,106,97,118,106,105,94,95,92,95,93,89,99,96,101,98,107,105,103,98,102,102,99,100,92,96,99,100,98,104,96,100,110,90,92,105,109,93,108,98,104,93,101,108,106,90,98,104,107,102,90,105,97,93,93,108,99,101,98,86,92,93,108,112,92,91,95,102,94,100,98,54,95,92,92,100,93,95,101,92,99,94,92,90,95,100,95,94,116,98,101,109,98,94,96,106,109,91,102,98,91,98,90,83,96,83,85,92,102,93,83,91,100,96,112,94,100,98,110,95,95,109,96,105,92,99,95,101,95,95,104,99,97,97,91,89,98,95,99,97,88,110,108,91,105,90,97,92,92,97,104,95,96,95,104,99,94,96,90,95,112,114,97,99,101,97,86,98,90,83,101,91,96,108,100,115,105,105,95,93,69,105,83,79,118,97,115,101,93,105,97,99,100,105,98,91,93,101,84,93,91,88,110,85,100,99,91,91,82,102,99,106,95,99,100,91,99,100,94,103,94,118,91,104,94,102,95,98,111,98,97,100,97,89,88,92,91,97,102,101,95,100,100,114,91,99,98,88,101,94,91,97,102,108,90,86,92,111,100,81,94,101,98,109,83,96,99,101,76,83,109,95,93,113,98,105,96,103,95,103,94,97,91,90,106,110,87,88,93,95,93,104,99,91,105,107,99,96,98,93,102,87,102,105,89,93,101,104,104,101,89,95,90,95,105,93,94,108,97,90,98,92,107,88,94,104,102,101,95,101,115,94,102,89,100,101,96,123,96,94,107,103,96,98,91,105,89,97,95,105,91,110,97,104,90,90,111,94,79,101,99,102,91,103,88,108,101,106,95,104,102,97,86,110,102,98,97,105,90,95,94,98,107,87,98,96,86,95,105,90,94,87,98,82,105,86,91,104,93,124,106,103,107,105,100,89,101,101,96,85,102,105,84,94,85,98,95,94,96,94,101,94,104,94,83,101,100,95,97,108,97,98,113,99,112,97,105,105,99,108,94,106,68,118,101,97,96,102,101,103,105,104,102,87,112,104,108,101,100,119,94,99,93,92,94,104,91,103,106,99,98,91,99,98,103,105,100,118,106,105,105,104,92,100,100,87,112,105,101,80,100,109,91,98,100,102,89,101,88,104,95,109,101,96,117,87,100,106,101,78,104,92,76,84,86,98,94,106,106,96,101,101,89,101,109,92,106,94,93,98,98,89,100,93,105,96,100,92,93,113,78,100,94,98,96,92,111,102,106,109,101,103,103,97,95,103,101,84,109,105,78,100,126,95,103,95,103,101,105,110,73,100,109,91,100,92,114,92,96,100,100,89,98,96,93,107,92,101,83,82,93,101,104,108,82,102,103,96,100,93,100,102,95,108,101,102,106,97,105,100,100,102,97,85,101,95,84,103,102,98,112,91,91,92,101,95,104,92,83,101,99,97,95,99,102,95,127,100,92,110,109,108,96,100,103,94,103,104,101,109,91,112,102,88,104,109,96,87,104,106,103,107,84,108,90,96,116,100,85,80,109,96,90,102,99,95,102,93,94,91,102,95,101,88,98,102,105,90,91,112,96,104,101,103,81,109,91,93,109,93,106,81,97,94,109,95,102,106,99,79,110,111,91,107,115,66,93,102,103,105,100,100,102,108,101,99,98,109,105,103,94,101,96,95,101,95,92,103,93,96,107,98,95,91,103,99,96,95,102,101,113,101,92,104,105,94,102,88,100,106,94,114,116,113,99,101,98,91,103,109,93,98,96,96,103,103,79,100,107,91,83,91,103,83,94,97,94,90,91,104,97,100,99,91,103,93,83,103,97,108,92,94,103,102,95,101,99,119,109,101,83,101,100,84,100,91,96,100,93,95,111,102,90,87,91,92,110,96,109,110,97,94,98,96,93,101,104,88,115,88,96,108,92,99,97,75,99,109,83,95,75,89,98,107,101,90,100,91,113,85,93,107,99,101,92,99,90,91,104,103,101,101,94,98,97,95,111,99,102,106,99,97,100,113,96,93,93,99,91,81,98,102,91,116,72,114,107,93,98,106,111,101,105,93,93,96,95,117,81,104,94,83,107,108,97,97,101,90,98,101,97,98,100,104,92,96,97,113,104,96,87,110,96,97,99,99,109,89,100,99,99,98,98,99,107,94,98,116,112,94,94,105,104,94,104,104,113,109,93,102,106,91,98,114,90,95,96,101,104,91,98,98,90,92,103,100,98,99,100,100,112,102,101,106,107,100,94,109,102,91,108,92,93,91,89,89,97,98,91,91,110,98,99,113,97,89,119,100,99,106,103,99,106,102,105,98,91,109,105,98,97,97,97,92,96,96,102,108,100,100,98,91,104,102,109,99,104,108,96,96,98,126,86,99,102,91,99,114,92,100,95,98,117,98,86,71,100,101,91,87,109,101,100,86,97,106,100,93,92,63,98,106,103,98,98,106,96,96,104,92,104,101,89,94,90,107,94,95,101,101,91,105,104,94,108,102,98,96,91,97,103,77,104,105,107,98,93,80,96,98,90,110,95,98,84,90,113,96,107,101,99,107,107,91,99,94,99,99,103,100,109,94,86,100,71,105,101,106,101,60,99,93,103,100,92,94,98,91,77,102,101,97,104,106,104,99,96,96,96,100,107,104,87,93,111,98,94,89,96,98,96,103,95,99,75,103,114,87,79,62,101,107,100,98,112,88,96,99,96,99,100,104,101,107,97,101,94,96,104,95,103,111,97,111,106,95,102,94,97,104,101,105,81,87,100,100,97,105,97,86,109,95,84,84,111,91,104,80,107,90,91,97,93,112,100,107,92,106,97,89,97,91,105,104,124,87,101,96,98,88,105,102,93,93,91,88,89,96,94,105,94,94,109,93,89,112,77,81,93,108,107,97,100,104,87,98,90,87,117,93,97,110,98,92,103,96,97,96,91,97,93,94,98,87,97,102,105,82,89,105,86,98,111,92,120,94,100,101,99,100,100,87,94,106,83,107,106,98,97,104,99,112,98,104,94,104,94,93,97,93,100,100,91,96,85,94,99,104,107,102,116,104,109,100,114,79,107,96,101,99,106,110,104,88,107,86,90,106,97,95,99,100,98,109,92,107,91,87,97,103,104,103,95,97,101,105,106,94,83,100,93,92,100,103,92,108,93,92,102,103,107,100,102,96,102,98,89,111,72,98,109,90,98,95,99,66,98,107,103,88,93,105,100,112,101,109,105,99,92,106,100,105,95,118,106,92,87,110,110,111,87,87,94,89,95,97,103,103,99,104,113,96,92,95,100,104,84,92,100,112,100,98,91,106,102,94,98,102,108,96,104,96,95,102,83,85,106,108,105,99,91,111,104,97,100,87,89,93,99,91,102,88,86,106,104,102,90,96,74,103,98,93,106,96,119,98,98,100,109,101,93,97,96,102,99,86,98,101,93,115,99,103,110,99,91,94,87,97,102,106,98,95,107,100,101,89,99,84,104,94,118,105,97,108,109,96,108,96,108,104,80,102,93,103,94,87,104,96,98,99,96,97,100,90,96,80,86,106,108,102,102,101,100,107,93,94,86,115,90,93,106,98,127,93,95,97,90,92,99,97,108,103,101,96,89,94,94,106,91,88,114,94,82,93,98,93,107,101,109,94,97,87,104,96,97,96,105,93,91,92,100,91,89,99,83,100,95,101,102,94,83,109,75,105,85,98,96,97,100,102,101,96,99,105,85,112,88,94,104,113,91,106,96,95,108,105,92,100,92,91,99,96,104,117,108,97,86,89,108,95,93,97,94,109,91,101,100,103,101,95,105,95,114,104,90,88,106,97,91,96,91,90,113,89,99,95,93,109,96,99,94,91,101,88,93, +717.09015,91,86,100,101,96,105,102,102,103,112,117,87,91,108,110,104,95,103,98,96,99,92,94,97,112,99,88,95,75,108,101,107,93,103,109,107,107,82,97,100,96,109,91,95,102,101,110,99,101,112,105,106,109,90,105,92,100,114,108,91,97,81,106,89,100,107,94,75,94,99,104,113,84,105,100,114,82,91,110,93,98,110,91,103,93,100,101,95,100,101,98,100,101,93,94,102,93,101,88,110,105,116,128,101,98,104,92,104,107,110,106,95,93,103,117,109,106,98,105,110,93,94,103,99,103,112,95,102,106,109,100,101,91,102,95,102,101,107,107,96,98,109,109,108,92,97,102,92,95,95,95,101,102,88,89,100,102,106,103,111,100,87,98,79,97,97,113,96,105,99,88,93,90,94,121,99,109,97,106,99,103,113,97,103,99,100,104,95,101,100,101,103,112,112,94,104,97,103,96,102,113,104,92,92,97,101,115,95,103,98,102,112,106,108,85,97,109,94,102,105,106,101,99,72,100,88,113,110,92,102,96,105,96,105,107,102,104,95,95,100,106,109,97,83,98,95,101,100,93,96,94,94,97,109,105,103,92,105,96,110,100,106,104,102,100,98,95,106,100,89,96,88,87,116,119,103,97,103,100,85,109,105,106,104,103,108,98,96,104,95,105,105,90,103,105,101,94,91,102,97,98,93,109,101,104,112,102,104,88,91,101,97,114,102,105,98,100,96,98,99,104,109,95,93,99,104,98,80,102,102,88,102,94,98,97,103,96,98,104,109,106,118,98,106,95,100,99,103,91,112,105,95,106,111,101,94,111,110,99,79,94,107,98,102,110,88,103,91,94,95,92,97,103,99,94,98,107,124,97,85,99,95,93,99,100,92,104,96,93,98,108,96,85,107,100,97,85,94,97,99,101,81,98,106,103,94,91,100,107,109,85,109,98,100,100,101,98,91,103,108,100,97,106,94,94,98,93,87,89,108,98,102,97,103,108,112,106,101,105,98,101,89,97,102,92,96,100,118,101,101,87,90,97,99,105,89,93,100,107,103,87,97,107,95,91,101,86,98,105,99,102,110,97,97,101,90,98,102,96,95,105,91,117,78,112,97,114,98,96,100,107,88,100,92,90,113,99,95,94,93,107,91,96,95,97,97,89,93,104,113,102,102,98,110,104,103,100,99,82,95,106,95,83,97,95,87,94,94,91,102,105,103,97,63,91,98,95,86,110,104,96,96,104,98,109,96,109,113,99,101,92,111,104,104,96,98,81,90,97,109,98,96,108,102,95,108,94,102,111,97,100,88,89,89,99,98,92,94,109,108,94,100,109,96,104,108,110,106,101,110,104,93,112,95,101,100,96,98,102,105,105,94,97,96,98,98,96,95,95,99,91,114,101,95,105,101,102,98,107,97,106,92,80,105,110,96,100,111,110,102,104,90,96,101,87,95,100,95,96,97,105,117,95,94,96,97,101,100,102,92,91,103,102,88,110,104,99,102,108,104,101,107,107,105,86,112,100,97,103,95,95,99,100,108,105,117,105,95,91,99,113,106,102,101,98,101,99,104,113,98,105,104,105,106,104,93,96,92,113,97,83,100,101,87,97,91,102,96,82,92,102,99,112,84,103,98,87,111,103,96,105,79,99,100,97,93,91,90,104,105,91,107,97,100,113,89,104,79,106,97,95,108,92,115,100,90,109,106,94,113,102,109,123,104,104,113,102,95,97,88,96,104,109,106,85,87,89,103,113,108,99,99,114,99,94,111,110,98,103,83,97,105,96,104,104,104,94,101,101,108,105,93,98,97,88,105,90,100,99,116,72,101,93,92,130,103,91,109,106,108,111,102,94,85,102,104,109,102,92,98,95,102,106,95,99,98,97,107,90,88,89,93,101,98,111,104,93,97,99,98,105,98,115,100,87,95,97,95,105,103,105,100,100,79,93,106,98,110,87,94,106,92,96,108,109,103,90,104,102,96,98,108,102,101,88,104,103,91,109,97,98,100,93,111,94,94,94,99,106,97,99,105,107,102,112,104,89,104,82,103,99,110,102,100,92,88,105,112,104,91,104,113,104,107,105,96,93,116,93,105,109,103,100,99,105,123,97,102,95,97,94,113,85,99,104,106,95,93,109,94,90,91,104,91,82,93,98,95,102,101,117,94,105,99,97,93,102,108,98,105,96,98,99,98,99,102,105,96,94,103,103,94,85,107,96,96,115,86,86,103,93,109,98,109,94,103,100,96,98,95,103,109,96,99,92,100,87,100,104,93,97,102,96,93,99,102,98,94,107,113,99,99,97,98,101,110,103,100,94,96,108,111,112,100,105,106,94,105,110,105,111,99,82,98,100,96,95,110,98,103,102,111,100,97,92,113,91,94,105,90,100,109,94,95,94,92,89,106,108,108,106,106,92,106,104,100,95,87,102,99,99,106,91,92,102,95,103,104,106,88,94,100,97,90,97,87,102,100,103,91,100,99,95,106,98,96,95,105,95,100,100,93,115,99,98,92,97,108,91,76,90,107,100,98,95,98,94,95,107,107,110,87,83,101,109,116,102,113,99,97,100,100,94,100,109,106,101,94,97,97,92,98,87,106,81,102,97,95,111,132,99,115,106,100,100,92,99,83,101,94,94,92,104,93,91,103,103,102,117,104,109,94,106,91,94,99,105,89,97,96,106,97,93,97,106,113,101,101,101,94,102,95,96,102,95,100,99,94,98,106,125,98,99,92,100,121,107,102,100,117,107,103,106,101,104,112,112,106,95,99,100,99,107,93,125,92,106,88,114,96,96,100,100,107,114,100,112,111,95,101,109,90,100,102,100,109,100,113,102,101,112,106,101,95,105,101,100,72,106,100,92,102,107,99,103,86,96,103,104,102,95,100,106,116,106,89,103,106,88,101,98,107,109,98,109,99,95,107,98,105,96,108,102,97,102,91,96,98,110,100,89,99,93,105,95,97,106,99,106,99,97,103,95,95,101,101,93,98,95,82,108,105,92,99,109,93,95,97,99,102,98,96,91,99,101,108,105,93,112,102,81,99,106,98,95,94,100,99,99,103,96,89,95,88,91,107,98,106,98,96,104,101,110,107,96,97,83,93,96,87,101,100,102,103,93,110,94,90,103,116,92,100,98,108,108,91,108,112,96,102,93,101,96,109,108,102,102,98,101,124,99,98,93,81,98,80,97,103,96,104,87,116,100,91,106,104,112,97,78,94,96,97,99,102,100,95,109,102,104,93,95,96,96,101,80,100,99,100,95,93,95,61,105,103,104,104,107,109,103,110,103,116,104,107,102,101,101,99,102,98,97,97,93,99,106,100,96,90,101,93,90,107,98,97,100,103,100,90,96,98,97,99,108,102,98,95,110,100,119,87,94,100,99,97,101,103,98,96,100,84,88,99,91,96,92,92,99,105,94,94,102,86,95,105,98,104,97,95,96,90,100,99,106,103,95,71,106,91,101,101,102,81,97,91,93,93,102,108,109,102,98,111,114,96,101,102,96,62,101,91,101,112,95,99,101,96,95,104,109,95,97,97,116,98,95,118,93,101,101,106,104,97,73,97,97,102,98,98,106,79,85,95,95,93,93,91,96,94,111,96,92,101,106,95,85,94,102,106,94,91,90,98,115,99,99,100,96,99,101,108,112,97,95,101,107,95,106,80,100,101,96,100,106,93,93,95,95,97,112,84,107,100,103,103,100,95,118,104,99,107,109,92,100,83,108,97,95,99,91,104,103,92,99,104,105,89,96,99,98,96,71,91,105,90,100,97,96,101,98,92,80,109,97,104,105,110,108,103,99,102,115,79,106,109,106,98,96,99,96,93,101,99,106,109,90,92,108,99,85,87,74,95,101,97,100,97,94,95,103,94,92,91,93,88,95,95,109,95,103,100,101,98,101,93,98,94,107,100,106,95,88,88,98,100,109,103,97,107,106,110,96,95,92,104,91,99,92,99,90,95,104,96,94,109,96,110,93,99,97,97,101,93,100,104,99,99,101,94,101,95,101,94,98,96,107,100,94,95,113,95,104,107,102,93,106,100,89,84,104,96,113,104,101,87,97,92,111,104,99,100,110,109,101,99,107,94,105,98,100,103,112,105,96,104,101,100,98,111,96,109,95,90,96,97,98,113,98,98,99,93,102,85,97,74,93,102,98,101,77,99,104,100,83,103,94,104,81,99,113,90,105,101,102,96,106,105,95,106,102,109,93,94,92,109,92,91,100,104,97,116,85,106,100,102,87,93,98,88,102,89,101,94,104,94,105,102,91,84,97,105,95,98,104,110,96,93,102,91,86,98,97,118,103,99,93,94,94,92,117,105,89,84,107,97,105,96,99,96,101,77,90,104,129,118,91,97,102,109,98,93,96,105,106,102,105,100,105,99,83,114,97,97,83,108,91,101,86,96,113,87,94,96,94,91,109,86,92,102,109,90,101,97,106,105,101,92,104,91,100,100,102,100,110,93,92,102,90,88,118,99,94,82,91,104,113,88,111,109,106,102,104,96,82,99,104,102,97,93,102,100,94,101,96,89,101,90,104,124,100,96,108,103,108,75,98,99,108,99,92,83,104,92,104,108,88,96,99,107,114,83,100,97,107,103,89,93,109,109,105,100,101,96,98,96,112,99,94,90,105,90,103,95,100,102,87,102,72,99,103,94,91,105,98,98,91,111,102,102,99,93,126,99,100,102,99,95,98,105,92,104,101,103,100,109,95,104,85,96,101,106,98,101,93,105,95,103,90,100,100,111,99,100,109,102,92,100,108,99,119,91,98,81,93,105,94,71,86,101,104,88,116,96,109,101,101,91,101,104,114,95,99,107,91,106,91,111,88,100,105,100,93,97,108,106,113,97,91,106,92,108,101,83,113,97,88,96,88,93,87,114, +717.23151,104,112,99,90,91,99,109,86,90,91,105,102,82,106,113,96,76,115,97,103,72,80,100,99,98,104,99,98,96,106,94,91,91,95,87,104,69,97,88,92,91,92,94,98,102,109,97,102,92,95,101,91,88,99,106,97,123,95,107,97,106,111,97,93,104,94,97,98,102,100,105,76,94,91,95,117,92,105,102,108,100,94,99,91,102,83,94,91,101,95,102,101,96,97,92,99,91,102,106,100,100,95,104,94,102,104,102,97,98,98,99,96,94,103,88,102,88,93,125,103,101,109,105,100,96,107,102,92,98,99,98,92,101,100,96,92,100,115,84,91,102,105,117,109,100,91,96,104,96,100,80,100,112,96,91,101,96,123,102,95,85,93,94,93,92,104,87,92,102,98,102,133,107,102,108,108,106,89,105,95,96,99,96,99,105,107,107,93,109,88,90,103,104,98,95,93,94,97,92,94,94,90,81,95,103,115,94,113,91,105,92,101,104,108,101,88,104,101,97,105,102,102,103,95,100,92,97,104,94,90,91,94,109,100,101,78,118,99,106,105,112,88,111,104,94,94,105,102,97,106,90,99,90,71,105,99,85,97,99,104,96,102,100,102,95,95,99,99,91,107,100,100,94,110,99,86,86,96,88,94,103,92,111,94,102,96,96,111,103,98,96,99,105,106,110,96,100,108,105,101,97,84,103,94,99,91,81,103,123,100,91,101,91,99,98,103,89,124,100,94,85,97,106,103,102,100,88,70,106,90,102,93,97,96,109,108,104,98,87,105,100,99,93,97,81,100,98,94,110,101,104,90,107,92,103,102,103,100,101,98,109,87,89,95,114,93,101,96,111,112,99,101,121,113,106,94,104,95,91,106,99,90,101,92,92,99,93,105,95,98,104,104,88,105,97,94,87,100,98,101,99,98,101,96,96,100,98,98,102,99,93,103,102,99,113,102,91,104,106,80,104,109,110,94,122,99,94,99,89,99,95,111,91,93,106,89,100,108,97,95,105,87,95,105,92,100,96,113,106,95,90,104,98,101,103,94,107,104,104,93,101,94,99,102,101,104,94,92,109,101,100,83,101,94,100,108,104,96,101,92,105,113,92,100,98,97,94,95,103,113,90,96,99,102,89,82,102,105,90,102,107,103,88,114,103,102,88,96,91,113,94,102,111,96,94,75,93,72,96,112,85,89,91,97,99,86,101,113,102,111,100,89,109,90,106,98,119,96,91,109,103,108,100,104,113,100,95,94,105,105,101,108,101,130,98,84,103,90,91,94,90,97,117,98,91,91,90,94,108,86,91,104,99,106,99,105,99,99,98,91,106,95,105,98,107,91,99,93,104,101,99,100,104,101,112,111,106,104,100,101,104,102,104,103,97,97,98,106,77,104,107,101,82,78,116,102,100,95,104,102,95,98,89,107,95,91,98,140,100,108,93,102,94,103,92,88,96,86,110,98,113,100,92,99,109,92,92,93,103,106,95,96,96,101,100,80,96,99,100,110,101,100,101,90,89,103,99,101,76,98,101,97,95,106,101,105,95,93,105,98,96,103,113,91,99,101,91,104,105,101,93,101,87,96,114,103,103,104,97,98,98,103,99,94,100,97,99,97,97,95,103,103,90,101,99,104,91,101,102,98,103,102,93,105,95,83,91,94,113,105,102,104,103,101,100,95,100,96,100,99,111,101,100,88,103,90,112,101,94,109,102,93,102,109,104,92,103,100,108,100,100,68,94,94,96,97,104,101,97,100,103,91,110,91,101,95,103,110,97,95,104,95,107,91,103,114,101,105,106,101,102,83,97,109,97,109,94,122,91,98,101,94,92,97,89,97,104,98,113,91,100,100,89,104,104,99,109,109,99,106,103,103,86,108,89,100,99,91,103,93,99,111,93,95,94,103,111,89,99,98,101,116,104,86,100,91,91,97,100,97,98,97,99,107,95,94,96,82,97,95,90,87,99,103,83,105,99,100,105,101,89,116,100,106,104,94,100,98,101,103,106,104,95,94,99,108,102,126,98,88,96,94,104,88,106,93,91,60,100,110,96,109,108,100,109,97,95,107,102,97,96,94,98,105,97,105,98,113,88,102,107,102,100,98,97,105,101,99,90,111,107,100,94,97,111,102,105,85,75,92,97,102,86,97,97,97,95,98,99,98,112,91,100,107,110,102,104,107,82,86,110,100,100,99,106,95,88,88,97,100,101,103,101,116,102,93,114,93,83,105,95,109,102,95,105,87,96,93,101,107,93,95,102,96,94,94,92,93,104,104,102,97,121,96,95,134,99,94,93,98,98,116,97,86,107,97,105,92,101,103,112,96,101,105,99,102,101,89,104,96,85,77,96,100,102,97,94,109,104,102,97,105,90,93,97,98,91,94,90,104,95,94,88,103,90,71,107,91,93,90,94,100,103,106,101,95,105,112,95,96,95,118,99,97,93,82,97,105,93,97,93,93,94,98,110,95,95,95,106,112,100,109,108,91,88,97,108,73,104,94,100,102,95,102,98,111,106,105,95,101,98,105,99,100,94,104,96,107,97,106,97,106,98,95,94,101,105,105,106,94,91,104,105,96,112,97,87,113,95,96,97,103,88,98,99,102,115,108,102,90,140,97,106,99,103,93,98,92,97,95,109,108,96,100,108,105,103,107,105,96,89,98,98,107,94,95,96,99,105,101,100,115,86,105,103,87,113,110,94,100,85,99,105,92,103,102,99,124,99,92,103,102,101,106,98,89,105,80,88,104,100,110,104,109,101,104,108,86,95,109,97,105,101,105,78,102,102,104,100,96,96,106,89,100,105,100,95,102,93,89,101,105,120,86,93,91,95,100,99,113,105,122,98,111,107,95,91,111,99,97,106,95,108,96,107,110,105,103,107,103,96,104,109,104,100,106,80,101,108,90,104,108,98,107,103,101,109,114,115,95,89,94,97,96,115,103,91,106,87,103,112,90,90,93,110,113,78,94,100,103,107,105,88,95,100,103,104,93,96,93,90,99,103,101,103,93,105,101,93,101,108,105,115,109,115,96,99,106,91,100,103,108,104,98,98,116,89,113,98,98,91,115,100,100,103,97,102,80,103,104,103,109,97,102,102,96,111,105,108,95,93,100,93,99,106,95,99,93,99,100,91,96,90,101,108,104,98,98,91,105,106,95,102,110,109,89,117,102,103,105,108,120,95,105,101,96,102,113,100,108,94,87,95,102,98,94,92,106,101,95,106,111,100,91,109,102,99,98,110,89,118,98,111,106,99,105,99,101,105,109,107,97,100,95,97,103,83,99,115,94,90,105,105,113,103,102,102,104,100,102,107,108,101,111,107,109,101,103,109,104,102,101,109,93,98,96,100,106,106,100,106,111,97,111,90,92,112,99,105,94,83,102,98,101,102,105,104,103,102,101,92,103,111,106,94,105,108,94,107,102,106,89,103,112,101,104,94,104,105,91,102,98,104,100,102,100,99,113,112,96,110,105,81,105,101,113,104,97,105,102,94,93,97,103,101,103,93,100,105,83,123,90,100,100,77,114,108,113,105,88,101,91,117,100,108,111,102,118,97,101,114,93,96,98,99,95,98,93,110,100,102,120,98,96,100,100,104,100,100,104,90,96,99,112,109,93,94,90,109,98,103,93,98,105,105,99,95,112,102,113,98,94,103,106,93,103,92,95,103,98,115,110,106,101,99,96,102,98,100,101,110,109,95,102,107,136,105,99,101,102,108,99,89,95,104,95,101,94,95,107,102,94,96,101,100,98,91,92,100,99,108,102,114,98,100,107,100,84,97,98,98,103,94,108,95,107,99,102,103,95,95,84,112,91,94,109,103,97,100,112,91,111,94,100,105,100,96,99,103,97,105,106,99,112,95,88,99,96,115,93,104,107,101,105,91,85,94,100,99,103,109,91,98,99,108,108,105,92,96,111,102,95,106,107,102,104,115,98,94,102,105,101,92,105,95,111,94,105,94,105,93,103,94,104,103,103,91,101,102,104,105,115,105,104,104,97,97,100,113,97,102,101,109,103,91,106,88,94,99,94,100,107,102,89,91,99,99,102,113,97,98,90,107,96,111,95,95,95,94,107,98,100,109,96,102,98,88,101,101,92,95,100,109,97,101,99,94,105,112,100,100,94,99,89,96,100,99,75,104,106,100,106,94,92,105,95,94,120,89,92,73,99,101,111,105,112,98,95,96,98,103,106,94,114,95,100,105,109,95,102,98,96,97,100,110,100,105,110,103,92,96,91,104,97,102,89,97,129,100,99,104,100,107,98,94,105,108,97,107,109,102,102,106,100,96,91,99,104,95,107,104,107,93,103,107,112,106,97,108,87,121,97,98,102,99,103,117,99,102,109,93,110,107,98,105,98,113,99,99,102,99,103,99,100,101,103,104,94,100,102,98,92,100,108,96,95,98,101,95,115,92,98,102,96,108,98,87,99,97,120,110,95,106,116,103,95,104,102,110,99,99,102,96,104,98,103,100,94,105,92,106,106,92,106,106,109,105,89,86,97,107,103,92,102,101,103,108,100,105,92,102,106,105,98,109,109,98,95,99,102,103,94,113,101,112,102,104,102,83,101,97,94,91,110,90,102,100,91,101,103,98,108,104,101,103,106,101,98,100,99,103,102,104,93,103,107,108,101,99,106,101,109,96,103,94,95,113,112,95,98,100,105,92,108,99,92,106,98,98,93,112,108,87,103,98,105,107,92,92,104,94,111,104,95,104,102,104,88,101,99,106,102,100,94,91,93,101,99,96,110,90,98,102,99,106,108,102,79,68,103,92,101,99,98,104,97,94,99,109,95,104,92,95,102,92,97,95,98,101,99,107,102,109,81,84,105,85,99,95,90,97,91,100,87,102,114,113,110,103,96,88,112,90,101,107,105,96,104,97,97, +717.37286,105,100,88,108,89,113,118,91,87,94,88,95,95,100,82,96,101,107,112,98,60,80,110,89,91,90,104,104,126,106,94,93,109,96,108,119,110,85,63,86,102,105,95,100,107,103,100,110,84,111,104,96,101,99,101,104,92,89,99,92,103,98,130,100,119,106,85,97,97,111,108,102,88,103,97,111,99,102,95,103,104,103,103,87,105,94,109,98,97,92,84,112,102,109,101,94,102,99,107,97,94,107,97,98,94,100,93,101,99,92,116,95,113,101,98,107,92,106,105,95,104,92,92,103,93,110,95,104,102,113,108,105,65,101,105,104,102,98,101,100,103,101,105,108,92,101,102,88,96,109,97,101,97,108,100,102,101,100,87,101,99,99,112,104,108,99,93,98,102,92,98,109,103,97,101,99,109,95,88,99,90,111,104,97,94,102,101,90,96,95,97,100,96,87,95,100,89,103,102,98,101,95,108,101,100,109,106,100,111,99,110,95,113,105,102,99,107,96,97,102,98,111,108,97,115,110,106,96,110,96,112,104,102,100,109,109,110,83,108,91,100,101,114,109,91,100,104,110,94,93,81,96,98,106,105,100,101,113,105,93,84,105,92,93,79,114,100,102,93,95,105,94,98,93,90,96,106,101,87,99,97,112,107,105,90,97,94,97,92,100,96,96,82,99,109,116,96,102,105,98,106,92,102,105,97,100,125,98,104,102,97,99,101,80,103,109,98,84,90,99,107,99,100,98,90,107,94,94,107,105,107,97,109,106,112,103,102,87,96,96,96,93,86,97,94,106,94,95,99,99,95,124,110,104,99,91,111,90,106,93,99,87,97,98,100,92,112,112,106,95,110,100,105,98,95,106,107,118,103,98,105,111,112,86,115,92,99,84,106,99,104,95,104,101,109,93,90,103,108,118,105,109,118,101,101,94,104,100,115,117,101,98,105,103,87,97,97,109,101,104,94,104,87,93,95,91,94,94,87,109,93,103,92,91,103,93,80,106,96,103,89,93,94,96,101,113,103,96,102,100,98,100,100,107,95,90,121,98,115,106,94,102,102,96,106,117,113,96,96,97,90,97,87,89,106,102,102,105,98,109,94,109,100,100,103,93,98,91,99,102,96,113,108,105,101,94,97,114,108,77,120,89,92,97,85,102,108,98,112,96,118,101,98,99,95,102,101,94,112,102,104,92,101,108,112,109,99,105,95,102,88,109,122,97,96,108,95,95,109,112,94,120,98,90,110,115,94,102,111,100,102,110,105,91,97,98,117,99,103,106,100,108,102,87,91,104,102,106,101,101,54,84,105,100,106,95,98,102,102,101,114,98,96,93,98,100,102,88,100,94,90,101,101,91,83,107,98,104,104,102,93,90,90,115,108,105,93,93,101,100,95,101,89,93,100,99,96,101,96,92,93,97,104,100,99,99,105,104,99,111,95,101,95,106,92,110,102,89,108,88,91,97,94,98,96,105,103,98,97,104,95,99,92,111,101,104,96,106,95,99,97,93,98,109,94,98,94,96,99,102,108,96,110,106,105,101,96,109,100,95,95,95,100,93,99,93,96,99,86,102,101,106,92,106,99,100,105,88,91,95,89,94,95,86,110,113,123,104,98,99,96,90,97,100,96,99,90,104,97,101,115,95,68,84,90,94,96,94,101,97,96,99,95,104,98,96,86,98,100,113,104,95,104,103,92,98,98,98,105,105,98,97,121,106,104,108,107,112,113,105,98,97,90,95,94,101,101,101,102,104,107,97,106,122,99,99,96,93,102,97,102,93,99,97,108,103,109,116,104,106,102,80,91,104,108,117,99,107,103,96,96,91,110,100,110,93,103,100,106,95,113,98,99,77,97,107,112,112,108,110,103,96,97,97,106,103,108,94,92,88,98,92,103,91,95,95,103,99,116,90,108,97,106,100,100,99,91,97,95,97,89,94,95,99,105,81,99,94,97,86,110,104,102,105,96,91,106,113,111,109,108,102,91,96,95,107,103,93,100,98,108,100,97,98,97,96,97,103,101,94,107,109,124,108,110,99,104,101,106,89,108,109,102,101,95,98,99,99,93,106,102,97,110,102,100,100,91,98,97,98,105,101,98,101,108,92,104,96,105,97,95,100,103,95,106,99,89,116,103,114,100,97,86,97,109,98,99,97,96,109,103,93,101,98,104,109,107,92,90,97,96,110,98,100,93,90,111,117,116,100,88,96,106,99,103,101,104,91,88,103,99,105,101,87,108,105,96,102,107,91,98,101,97,99,103,111,100,101,95,101,99,102,99,93,110,98,107,103,100,97,94,99,108,85,99,98,100,97,119,94,107,92,100,100,98,108,94,109,104,102,97,96,110,100,118,94,100,99,95,105,91,90,98,110,110,104,104,113,105,95,88,101,103,97,86,82,109,105,92,107,108,100,93,100,91,103,96,89,102,93,95,102,87,99,94,63,104,105,92,109,96,104,88,102,73,108,86,108,78,103,99,118,100,90,107,105,100,93,104,106,98,98,90,88,100,103,101,102,102,90,93,105,100,104,100,95,95,101,98,110,103,113,85,102,104,90,98,104,101,96,107,89,96,98,106,109,94,96,85,100,98,90,123,101,95,99,110,92,98,98,108,106,130,96,106,98,87,98,113,78,102,97,92,93,105,95,104,94,100,74,102,95,110,98,110,88,98,92,97,91,102,106,97,98,103,90,109,88,94,99,105,88,105,112,102,110,95,86,101,98,89,104,103,100,100,107,95,105,95,99,109,109,104,107,100,106,96,107,97,89,124,93,100,111,102,117,96,100,105,106,100,103,94,90,102,94,94,95,99,112,114,91,106,102,94,98,95,105,103,67,108,93,83,107,106,100,100,95,104,98,92,102,96,104,111,99,113,102,104,112,111,110,91,102,99,94,104,103,96,110,91,97,106,89,101,104,106,103,90,102,102,108,108,98,105,104,105,93,99,103,102,95,80,100,97,106,109,113,105,98,102,97,102,108,109,106,101,110,97,94,113,104,101,103,96,93,105,96,101,85,86,112,102,100,111,109,115,102,98,105,101,97,105,94,97,99,93,95,98,98,100,90,110,107,78,97,95,92,117,87,109,105,109,95,99,97,116,104,70,100,94,92,91,111,111,88,104,98,102,96,112,104,92,108,91,95,81,99,85,102,95,97,103,106,97,96,87,104,104,95,87,95,92,93,99,98,92,101,103,79,96,95,92,99,106,94,94,90,95,99,98,108,105,97,107,91,111,93,102,96,104,105,96,102,114,95,95,105,101,103,87,93,114,90,137,103,102,91,109,97,99,100,100,104,90,98,105,93,91,93,111,97,97,87,112,104,94,88,101,93,102,99,96,96,91,104,111,101,98,98,98,107,89,105,94,102,95,104,87,104,96,84,102,102,104,94,99,97,82,83,87,108,97,98,99,93,108,106,102,100,92,95,111,121,106,97,108,98,84,100,90,103,99,99,93,96,97,96,111,91,94,98,82,99,102,116,106,95,109,98,106,105,96,104,106,93,105,76,101,101,98,106,88,98,100,103,94,97,98,113,104,116,106,98,91,101,104,102,101,106,93,92,96,103,95,97,99,100,100,84,95,110,98,107,106,110,76,94,88,101,89,105,106,97,96,85,81,99,91,113,98,96,99,98,111,94,117,94,95,100,95,101,98,119,92,103,95,101,97,94,94,103,88,96,102,96,96,104,103,99,101,92,104,92,108,87,107,113,101,86,99,101,99,101,100,96,111,98,94,98,103,80,103,101,98,79,109,106,95,109,95,83,101,102,90,91,60,93,112,108,97,99,105,112,111,69,97,109,105,98,98,104,102,88,76,105,98,98,94,112,92,108,115,99,93,116,102,96,101,104,99,100,97,98,126,102,95,95,95,111,93,103,91,102,93,91,99,95,97,105,87,104,98,94,102,105,98,94,102,97,90,91,106,91,105,100,104,101,94,108,93,104,89,99,92,97,113,98,97,96,92,88,97,116,94,97,113,109,95,101,95,101,91,109,101,87,91,97,97,105,107,95,98,90,97,102,88,97,101,93,92,98,99,104,122,105,95,100,101,96,100,95,85,93,95,97,106,97,94,90,99,94,106,109,106,101,100,106,101,98,99,107,96,104,105,108,106,98,95,103,94,95,107,105,100,102,103,99,102,86,103,96,93,89,104,98,100,96,89,99,106,101,104,102,109,96,95,91,91,106,105,102,96,102,93,100,96,93,83,83,109,97,86,109,76,111,99,96,94,103,99,104,122,98,97,88,107,94,100,101,108,101,96,97,94,92,102,93,109,105,99,108,90,100,84,96,103,102,97,105,102,98,94,95,95,90,101,96,103,105,104,95,102,92,105,105,108,98,99,97,109,96,118,110,110,99,104,110,99,109,99,110,96,100,102,105,90,104,90,113,93,128,91,105,91,111,94,105,96,107,103,96,105,97,87,83,79,84,93,94,109,98,95,106,94,89,103,99,110,104,93,95,87,77,105,115,102,106,111,99,95,99,104,113,88,109,104,97,101,95,79,109,105,102,99,107,98,102,99,94,90,109,75,97,89,102,93,104,105,133,102,87,111,92,110,96,97,109,90,101,107,91,123,103,109,92,108,89,79,100,88,86,99,94,91,115,98,115,100,92,110,114,106,95,101,100,105,100,108,106,99,110,98,93,106,101,101,93,96,90,103,103,107,92,110,84,100,109,95,84,101,111,100,93,85,91,94,85,112,80,102,109,92,98,98,100,99,88,107,91,103,97,105,108,91,98,112,94,96,86,99,104,110,98,92,91,100,110,108,96,104,99,106,101,98,104,108,108,98,103,95,97,94,98,113,82,118,111,98,103,87,91,95,102,85,100,104,100,97,96,112,107,111,127,97,87,112,98,94,101,88,102,94,82,101,97,96,100,86,97, +717.51428,101,123,109,99,98,98,86,100,99,99,96,92,101,94,96,94,97,105,111,97,83,83,90,103,80,96,86,87,94,111,90,90,106,96,115,89,86,88,95,114,106,108,90,98,89,109,100,105,107,103,100,99,104,79,105,103,105,102,95,92,99,103,102,102,97,88,100,106,89,87,105,90,99,110,95,118,99,78,111,99,101,100,104,88,105,90,96,105,98,84,92,99,93,99,119,88,97,89,99,101,83,105,105,103,106,90,102,96,104,94,89,86,90,74,87,96,108,112,111,102,95,100,87,92,100,106,97,101,96,100,96,106,95,102,101,91,106,118,117,102,101,96,100,95,89,105,108,105,93,98,108,92,100,107,100,114,94,96,118,100,95,106,92,101,107,110,92,96,97,102,100,98,110,96,105,98,110,98,99,105,100,105,106,103,99,76,87,89,88,96,100,107,94,94,112,97,99,98,119,99,101,109,101,104,97,95,104,105,110,99,94,111,102,100,104,107,104,98,89,87,106,96,93,99,98,95,104,102,105,96,90,95,100,102,101,106,94,106,101,110,93,94,100,92,96,108,101,101,91,75,101,105,95,101,98,102,102,101,101,94,101,98,98,102,102,98,101,104,98,99,101,87,97,107,95,127,92,99,100,92,94,108,99,100,102,97,94,105,90,91,95,106,101,116,103,89,101,97,99,99,95,108,104,99,98,93,103,99,106,99,94,100,112,95,99,100,104,105,109,94,104,94,101,98,104,75,103,89,103,99,97,100,89,110,98,87,101,94,97,104,90,113,104,109,100,102,95,105,109,104,104,109,109,92,103,106,100,107,106,107,96,101,106,99,95,90,105,117,68,106,108,88,108,107,95,102,99,100,99,107,101,75,93,100,106,90,108,95,96,94,98,90,99,99,96,87,107,90,95,94,105,88,91,99,94,93,99,106,105,108,98,95,95,103,96,95,100,101,106,96,86,96,81,103,105,94,87,97,101,105,102,95,101,107,87,92,104,94,100,98,95,93,99,109,91,94,100,94,108,103,90,88,99,98,102,86,90,106,104,96,100,102,95,107,95,95,96,86,126,104,100,99,108,90,106,92,89,112,96,103,94,100,113,101,104,98,102,102,79,104,106,101,86,105,92,108,87,127,76,101,101,111,111,96,104,98,89,100,103,105,105,107,105,98,96,101,98,92,79,94,105,103,104,102,99,92,92,89,87,89,92,102,96,91,104,86,103,89,101,101,100,104,99,82,102,96,96,90,100,99,100,125,99,93,113,92,95,98,96,98,98,99,98,107,104,105,111,90,105,100,98,83,99,94,99,111,91,98,96,106,100,101,93,99,104,94,105,101,100,86,91,104,96,91,96,103,101,104,111,98,94,93,84,91,99,97,83,99,89,109,109,94,90,89,128,88,88,113,100,99,96,120,105,87,92,95,105,102,100,112,95,98,89,102,114,111,96,92,98,114,107,94,100,104,88,91,96,102,100,103,98,98,103,95,98,87,91,114,101,98,98,98,102,103,93,100,66,93,91,109,115,92,102,99,98,108,94,98,108,96,93,111,108,100,96,107,95,93,95,100,100,91,95,104,100,101,107,120,99,99,111,91,115,92,108,93,98,105,88,106,102,105,98,99,88,113,90,98,107,97,102,97,107,105,91,100,97,83,98,101,89,105,99,102,101,98,87,97,107,99,117,99,108,100,102,87,92,98,95,116,98,92,102,90,97,89,105,100,100,96,99,102,97,95,72,101,87,106,103,87,108,95,104,84,96,89,104,104,109,97,91,104,108,94,99,95,112,99,90,112,106,99,109,102,100,112,96,113,110,95,91,96,90,100,96,104,96,99,104,98,99,85,99,102,96,92,116,111,88,84,112,109,100,93,95,104,102,105,97,98,107,104,107,106,114,111,95,91,107,94,109,95,103,93,94,99,92,94,96,83,99,89,101,95,95,105,93,105,96,96,103,113,105,98,96,99,87,103,125,101,87,100,102,103,99,94,101,98,101,115,103,98,89,114,94,106,96,115,103,108,102,90,104,94,104,104,80,100,95,90,104,105,109,88,97,104,94,116,129,99,108,96,108,103,87,92,96,89,79,99,98,105,90,104,103,93,79,100,98,94,104,108,110,102,103,106,84,96,98,100,119,102,116,98,92,86,106,101,95,89,88,109,109,103,83,87,103,104,99,109,110,96,95,96,100,99,98,82,98,104,94,98,100,103,100,112,110,96,99,100,86,106,103,101,101,96,103,98,90,105,94,105,105,89,92,95,94,97,95,100,108,99,102,95,108,99,96,97,93,91,100,89,104,111,92,102,94,95,109,100,94,101,101,95,96,95,115,95,102,105,99,104,101,95,95,93,93,104,96,94,110,91,98,100,87,102,97,91,97,93,108,104,101,99,92,97,98,95,105,101,92,94,105,90,106,101,101,119,110,97,97,118,104,79,98,115,97,100,110,93,94,90,90,96,107,105,99,86,100,96,92,93,103,100,94,100,112,90,99,95,96,97,104,102,102,106,85,107,111,94,100,104,94,92,106,99,104,99,93,92,96,90,102,100,110,97,111,99,98,106,100,107,94,101,95,102,102,106,91,95,103,106,90,104,90,79,93,98,101,91,100,103,96,67,90,105,108,109,102,104,108,102,112,106,100,100,91,102,102,99,95,93,98,104,99,104,97,91,110,90,105,83,89,104,104,97,101,110,95,94,104,102,106,94,86,102,90,94,97,100,91,93,96,91,91,104,109,96,92,113,105,95,105,105,106,100,113,100,100,98,108,108,107,101,104,106,100,102,100,96,103,109,88,94,107,92,104,100,104,103,101,112,106,88,114,102,88,104,115,103,95,100,102,94,91,100,80,105,102,111,98,100,109,108,109,102,94,112,106,105,105,100,101,109,94,91,97,107,92,104,109,110,111,90,87,99,100,105,105,102,104,101,97,102,95,98,96,96,106,105,98,92,98,96,87,100,103,100,99,87,106,95,97,99,101,98,104,106,102,88,105,103,98,92,92,85,93,96,95,105,99,100,97,103,107,108,100,96,116,97,99,87,102,101,108,92,100,92,99,98,102,95,89,106,89,109,111,99,113,87,97,94,94,96,99,72,108,113,91,96,102,101,98,101,106,91,105,107,102,111,87,92,98,98,111,100,93,94,102,92,96,102,98,109,102,100,96,89,86,96,101,105,101,94,101,105,103,102,95,86,97,96,100,97,107,94,108,96,98,94,96,96,81,96,102,98,96,96,102,90,84,102,92,99,97,86,102,102,97,86,103,98,96,98,99,96,97,92,110,114,115,98,95,108,95,103,89,95,111,98,101,104,105,96,110,103,100,93,95,95,95,88,93,107,85,99,102,98,98,100,91,102,102,94,104,103,99,100,92,95,99,95,98,115,87,104,95,112,104,91,92,105,99,77,113,94,99,92,108,99,99,100,102,93,111,91,97,97,100,93,94,101,113,96,86,91,87,91,116,92,117,79,95,88,90,101,105,102,100,98,106,104,109,103,120,116,109,96,89,99,105,100,94,107,97,101,96,93,89,103,105,115,97,90,117,98,95,87,96,98,106,98,109,107,93,93,109,94,94,90,92,89,106,95,93,105,117,106,93,98,87,95,99,103,109,92,104,98,103,99,89,91,111,110,107,87,98,93,100,98,126,102,104,111,106,109,99,94,102,102,94,113,110,88,87,103,107,106,94,78,102,95,91,105,106,105,125,104,98,67,99,105,98,93,98,93,119,101,104,101,97,105,105,95,98,106,116,94,104,89,92,101,101,92,102,100,103,93,102,99,99,95,95,106,96,104,106,89,100,105,100,96,87,86,94,64,92,92,98,103,102,97,99,91,83,125,98,93,91,109,101,95,96,104,101,98,109,98,98,88,102,99,119,100,99,88,92,88,104,91,97,94,96,105,105,101,106,92,113,99,92,97,108,101,89,96,97,93,93,98,90,104,80,109,98,99,93,102,92,92,105,103,98,91,89,91,118,106,105,89,99,95,98,102,112,91,88,102,106,102,113,88,105,115,100,101,112,99,103,92,101,98,106,99,101,102,107,99,100,92,97,90,101,100,90,103,101,98,110,98,109,101,94,125,94,95,97,102,89,109,99,98,97,92,108,104,95,98,102,104,93,96,86,99,109,113,99,101,95,101,96,106,97,86,105,89,94,103,88,100,112,95,114,96,95,92,96,106,90,99,102,100,101,99,117,91,93,106,113,101,114,84,98,91,92,105,96,104,113,87,83,115,97,94,102,93,102,95,107,102,100,94,104,91,95,107,98,93,101,106,95,102,110,98,94,94,100,96,95,110,100,97,108,100,95,90,102,101,89,98,110,87,92,101,94,98,105,92,118,96,104,104,115,103,100,103,86,107,99,92,84,97,102,77,102,101,104,105,106,90,102,105,98,119,103,118,79,101,109,117,112,107,87,105,103,100,98,101,87,108,108,97,100,104,103,95,108,96,110,106,76,96,97,99,107,74,99,89,99,100,95,96,97,104,103,93,99,107,106,98,97,87,93,95,104,105,104,115,84,102,91,93,91,114,99,103,98,98,118,103,105,102,102,91,100,97,107,99,109,96,94,103,105,107,108,107,106,103,104,103,70,93,103,100,92,90,98,93,97,98,96,98,103,86,101,100,100,103,100,104,88,95,103,102,91,97,110,117,101,100,99,98,100,103,97,110,90,114,95,111,85,104,107,114,93,92,87,102,111,110,93,106,87,104,112,93,98,94,104,102,101,96,95,97,105,104,105,110,99,103,97,106,107,94,91,107,101,91,87,101,92,95,87,100,102,102,94,109,105,101,107,98,92,80,98,102,94,105,101,105,96,86,100,98,83,104,91,110,112,101,98,102,97,107,116,101,89,98,101,93,107,104,102,92,97,84,97,101,110,87, +717.65564,95,110,109,110,68,101,110,104,105,107,105,101,101,105,106,103,95,111,103,99,102,102,95,91,95,106,93,85,106,97,118,92,101,101,95,101,82,96,104,94,110,89,95,99,97,112,99,109,97,108,93,86,112,97,96,98,113,95,92,97,113,89,106,89,97,105,97,101,96,84,99,102,90,112,84,99,104,102,105,100,90,95,96,100,99,97,104,99,96,95,95,98,95,96,95,98,95,92,96,96,79,100,87,106,98,95,92,105,112,95,91,96,93,89,101,100,113,105,101,108,95,99,109,96,105,106,113,99,98,101,95,107,95,97,89,110,95,102,104,99,91,96,96,102,94,96,102,98,90,119,97,93,105,90,93,89,92,89,103,100,100,88,101,102,103,104,99,74,103,99,70,101,108,92,100,116,113,84,98,88,94,104,93,104,118,106,99,89,95,88,109,102,113,104,92,98,107,96,97,99,83,97,106,97,66,95,102,90,108,92,106,109,104,112,94,84,91,109,99,97,106,93,98,96,115,99,94,87,95,97,94,94,102,103,80,100,114,96,110,103,102,93,114,95,88,101,83,110,103,104,91,94,90,91,112,105,104,96,84,95,90,112,102,96,92,114,138,98,105,101,100,95,95,91,105,94,106,96,99,95,100,106,104,96,86,87,93,91,103,106,105,99,98,104,96,95,106,105,92,105,99,93,101,101,103,98,92,95,99,101,97,100,87,94,97,92,114,102,97,100,91,95,98,89,94,97,103,99,101,100,112,100,92,102,107,92,87,96,90,109,95,99,98,91,98,106,73,85,105,100,107,86,87,91,100,92,107,107,86,96,100,100,85,91,102,102,95,103,98,104,98,105,100,103,124,90,111,106,100,93,112,107,94,110,104,90,95,94,102,100,105,99,98,104,96,99,91,99,98,103,111,101,93,96,105,91,94,99,92,92,89,85,96,93,91,95,109,95,105,91,99,103,95,96,92,100,99,87,83,111,99,80,102,92,100,104,101,93,97,96,91,83,106,94,96,101,92,99,94,98,94,99,117,92,91,94,96,94,92,90,110,106,111,114,101,95,100,101,99,115,102,95,83,100,102,98,103,92,94,104,98,109,110,106,95,101,98,92,101,95,99,95,105,100,80,98,107,101,93,91,114,100,90,105,101,94,99,94,99,106,114,84,97,98,103,89,100,106,110,87,107,106,95,91,98,107,100,103,96,91,91,95,106,96,99,95,96,89,100,98,101,95,99,101,106,108,110,98,107,102,106,98,99,96,116,106,84,92,100,106,90,97,86,68,92,102,103,94,104,100,93,90,103,93,89,100,107,98,102,108,98,105,86,104,95,103,98,102,109,98,103,93,101,101,116,109,87,95,102,110,101,97,94,104,95,95,103,100,97,110,96,104,93,96,73,96,93,92,107,98,84,100,94,110,103,92,92,103,103,108,101,89,100,111,93,109,102,103,93,91,104,101,94,101,97,92,91,86,104,94,96,107,102,105,104,102,102,114,88,92,100,97,102,96,77,106,98,90,92,93,98,111,83,107,93,101,93,120,99,71,92,108,105,101,87,92,98,109,107,102,104,99,90,106,79,102,95,95,100,105,103,75,76,94,110,96,101,90,82,112,99,98,101,98,99,97,114,95,96,96,75,104,94,97,95,98,97,97,103,100,94,108,88,99,98,115,90,101,110,91,98,104,101,108,99,90,102,82,99,96,114,89,104,103,98,98,96,91,101,97,87,101,99,100,98,103,87,96,103,111,101,88,98,90,88,101,101,100,103,99,99,79,100,97,106,93,100,94,88,98,94,106,87,109,91,92,99,108,100,106,90,92,86,89,102,101,104,102,98,93,101,99,93,96,109,93,105,110,99,94,100,98,92,100,117,103,93,101,98,101,103,109,108,104,91,103,100,100,98,98,106,111,107,110,97,105,104,96,108,96,96,97,105,88,99,95,93,103,92,90,105,90,102,101,93,92,113,101,108,99,87,103,103,129,97,100,109,85,86,105,110,103,108,102,104,93,93,105,99,102,96,101,107,102,94,100,87,100,95,108,89,112,111,84,105,86,95,88,96,99,94,109,118,91,106,95,100,106,99,103,104,108,114,101,94,109,106,103,89,108,88,115,87,108,101,91,96,91,97,94,111,97,106,97,101,90,99,108,94,100,105,100,103,90,86,99,105,109,91,95,109,102,99,103,92,87,100,88,118,101,97,93,95,100,100,96,99,103,102,103,95,92,96,116,98,92,90,110,89,109,93,104,87,117,100,113,99,99,101,112,92,97,100,96,110,105,112,101,94,104,94,92,101,108,111,98,105,97,96,102,96,106,91,98,102,98,99,81,83,117,95,91,77,90,105,99,117,108,95,88,104,105,98,98,85,83,106,105,95,104,109,108,104,81,93,113,109,107,98,104,99,103,96,101,103,96,94,103,102,95,88,110,103,100,94,96,90,85,109,108,98,98,93,83,98,98,105,87,103,108,95,106,102,92,89,100,94,96,113,95,94,91,101,97,95,94,101,90,106,102,96,112,101,99,102,107,112,99,99,99,89,98,79,92,98,77,98,98,111,114,96,110,102,106,95,97,93,105,83,101,98,94,87,101,104,96,98,93,97,105,103,91,109,102,94,94,99,106,94,96,103,99,106,115,100,92,114,85,87,107,87,99,109,106,84,96,99,101,100,103,105,99,95,105,104,114,112,98,79,77,96,94,89,88,99,115,89,82,96,93,103,99,100,97,105,105,112,101,104,89,106,100,88,112,113,103,101,100,92,110,93,103,110,85,106,90,120,98,104,98,94,93,94,105,90,98,106,100,99,106,103,99,114,82,112,94,111,89,103,104,90,95,98,101,100,94,111,107,91,109,109,83,105,102,104,100,93,103,99,103,108,99,91,106,103,90,95,88,98,110,102,92,95,104,89,88,98,103,100,87,106,110,94,94,92,95,101,103,107,96,102,100,93,109,92,98,113,98,108,87,99,99,97,103,92,113,112,102,80,117,113,98,104,101,98,88,104,99,101,91,97,95,95,102,109,97,109,98,98,104,103,92,93,95,92,96,95,96,109,109,94,98,99,97,99,87,101,113,101,87,85,108,93,92,101,107,97,99,95,90,98,98,108,105,94,94,94,97,94,94,92,91,100,84,99,92,109,100,91,96,100,96,93,98,88,105,95,103,106,93,100,88,97,95,103,109,105,103,104,97,91,104,97,101,102,102,89,97,96,119,94,99,100,99,105,107,93,95,110,99,99,89,101,98,91,96,103,104,89,101,83,107,104,94,96,93,106,95,89,100,96,98,106,99,101,72,97,96,99,91,106,103,99,102,95,95,97,78,85,99,94,89,108,87,95,91,108,96,110,87,101,105,103,92,104,86,105,95,95,95,113,101,90,98,103,95,104,100,108,103,96,103,96,98,97,83,106,90,94,98,90,99,97,95,90,96,91,102,100,86,114,100,103,103,95,101,108,98,93,95,94,99,112,100,95,103,102,68,106,86,102,82,89,102,101,85,101,95,99,100,102,103,78,101,102,104,97,107,106,101,87,98,100,98,100,100,90,95,100,102,114,104,94,99,95,99,104,95,101,93,99,99,113,94,94,95,89,93,98,93,88,99,100,87,101,91,94,104,103,101,98,101,97,103,90,98,98,94,95,98,104,78,87,94,93,100,110,105,103,95,106,101,105,94,83,94,110,95,101,100,108,105,98,97,103,92,100,97,96,80,84,95,100,100,105,101,108,87,104,97,93,85,92,104,105,107,93,98,99,97,104,100,92,106,90,65,98,95,114,99,103,109,112,99,97,98,89,101,97,90,98,83,114,93,104,103,98,98,93,103,93,94,98,112,96,110,109,105,97,103,92,95,101,90,107,106,101,96,116,104,92,88,112,94,96,92,104,80,95,84,92,87,94,91,103,96,87,113,118,100,94,91,103,100,93,93,99,97,64,87,100,103,88,99,97,93,97,83,92,91,101,104,95,100,93,97,105,101,126,85,100,99,94,84,100,83,87,84,96,112,100,100,90,94,92,102,117,100,101,100,120,102,92,98,96,100,84,106,96,95,86,108,110,73,101,95,95,92,95,89,115,85,99,106,99,108,102,90,100,98,105,105,93,94,108,111,102,101,107,93,94,104,100,101,91,109,101,86,94,89,101,98,103,87,95,101,94,102,91,92,76,100,88,106,108,101,108,95,88,87,107,94,98,83,99,102,93,95,91,103,112,91,87,105,84,97,92,101,101,93,100,95,128,112,103,113,94,101,106,112,92,96,113,100,128,108,94,96,93,105,93,72,90,101,100,94,111,87,97,105,79,103,102,104,100,98,93,91,101,111,99,99,103,100,103,92,94,101,97,95,101,94,95,99,103,100,106,87,100,88,92,96,103,110,98,99,98,113,98,109,99,100,91,104,96,105,87,93,109,103,113,98,100,80,99,84,94,90,87,110,97,97,100,111,101,88,108,97,107,95,88,93,91,94,101,102,97,95,109,96,107,96,98,82,109,88,87,99,104,103,99,104,93,87,104,97,106,99,96,94,109,104,101,91,99,97,99,87,100,102,97,102,101,83,95,94,99,94,81,108,100,88,95,96,92,93,99,126,95,90,93,104,101,94,87,104,97,105,95,93,96,100,113,92,103,113,115,95,102,106,96,99,94,106,91,94,100,91,99,101,96,86,97,85,100,97,104,116,108,100,120,79,110,100,80,99,99,103,95,112,91,98,94,87,107,98,104,77,98,103,112,95,100,102,91,79,103,95,110,101,97,94,111,105,105,107,91,102,88,98,98,96,87,112,102,92,102,106,101,84,93,104,97,90,90,105,104,96,103,100,91,100,92,105,84,94,88,99,103,101,103,97,97,91,107,95,103,98,97,73,92,106,91,112,99,103,90,98,94,88, +717.797,111,97,95,100,83,100,99,112,92,101,97,94,95,98,100,91,96,101,108,97,90,108,94,96,108,114,108,107,108,97,92,104,99,109,94,106,91,104,96,102,94,117,99,87,91,98,103,100,97,107,105,92,94,97,72,88,78,105,92,89,103,102,111,91,106,114,97,96,96,102,99,108,104,92,113,102,96,114,98,59,89,93,87,101,93,98,102,90,101,94,94,124,101,103,103,86,93,111,96,110,100,97,88,104,95,106,87,91,88,100,102,114,100,101,110,99,83,98,94,127,90,94,103,101,111,102,93,86,104,97,95,101,105,95,102,99,98,104,99,95,97,101,91,93,91,97,114,90,97,112,95,96,100,96,99,94,101,107,101,97,96,99,94,109,98,85,105,89,95,111,107,101,95,115,105,80,91,108,109,84,104,93,108,88,103,102,100,92,99,105,95,111,71,89,96,99,108,109,99,91,91,99,97,92,104,99,92,99,104,98,99,97,98,112,100,101,88,97,121,111,99,114,101,101,102,102,111,112,98,100,84,98,102,99,101,85,105,124,105,98,94,102,103,110,98,91,104,104,100,106,95,106,94,103,97,119,94,102,103,110,89,119,94,99,97,102,103,115,98,96,104,100,107,100,100,97,94,119,90,96,96,90,99,100,111,91,102,99,97,98,101,96,100,100,132,119,98,95,95,86,103,97,86,106,102,104,117,99,94,95,97,99,89,102,105,110,99,82,99,100,101,92,110,106,104,108,129,91,109,100,113,102,114,100,102,132,103,110,96,92,114,92,99,100,99,76,85,108,103,104,102,104,100,95,91,99,92,99,110,102,95,107,94,95,109,104,101,89,100,103,106,93,99,94,94,89,98,99,101,100,108,102,101,95,94,102,94,101,97,99,110,86,98,98,90,104,105,108,103,106,96,94,101,88,101,107,95,100,100,98,92,78,89,100,98,95,95,98,106,100,85,86,101,87,97,90,108,91,98,100,97,107,102,106,94,114,84,95,94,100,102,101,98,97,105,93,99,104,87,95,96,98,107,101,97,97,88,94,99,100,104,103,104,96,110,103,108,96,80,99,91,96,105,97,93,93,105,97,100,96,88,93,103,88,93,101,99,84,91,86,98,116,112,92,97,95,92,108,105,106,105,89,97,99,111,93,122,84,95,95,92,103,98,101,80,100,96,105,101,93,99,102,113,101,90,97,102,96,88,107,103,93,97,104,96,106,86,100,97,108,102,91,93,104,98,100,112,89,104,96,109,95,114,103,99,101,103,99,92,100,94,98,100,97,107,99,110,106,106,97,90,102,101,103,98,97,103,95,102,114,105,78,100,104,98,90,100,96,100,91,107,101,96,105,105,88,109,95,103,121,112,102,105,96,103,85,96,106,110,103,102,105,103,100,106,92,107,85,103,95,116,99,89,101,102,98,84,99,93,95,97,95,97,87,92,102,103,86,92,108,126,107,95,109,98,101,98,94,92,98,101,109,107,104,90,91,103,109,90,98,95,103,108,102,82,110,95,96,88,92,104,94,110,91,101,113,102,102,102,92,77,92,101,92,99,98,101,94,103,93,113,98,100,109,102,97,104,98,95,90,105,93,101,106,100,96,94,91,99,110,113,92,104,77,118,94,103,106,109,92,99,112,98,110,96,98,98,103,110,102,100,104,80,94,96,95,94,96,84,109,107,100,89,108,96,98,99,104,107,96,100,100,105,88,94,121,86,95,99,96,104,105,95,104,91,95,104,78,107,99,107,93,96,96,95,104,98,99,98,96,102,102,105,99,98,108,102,118,100,106,108,99,101,108,104,94,79,93,98,97,91,101,101,90,103,90,104,103,94,114,107,99,97,110,107,98,106,108,100,93,107,103,103,97,101,94,113,110,108,92,88,105,114,111,112,114,109,93,109,106,100,98,101,104,102,104,97,89,97,76,104,94,97,86,75,109,95,100,97,103,105,97,96,92,101,90,100,110,117,100,98,89,99,95,92,113,103,92,93,107,102,92,113,94,100,107,99,109,97,86,102,96,100,103,104,102,104,98,104,96,95,105,100,121,75,99,91,90,92,104,110,98,109,105,100,88,73,116,100,109,92,94,110,108,96,90,101,96,99,106,97,76,104,113,107,98,106,95,103,93,92,91,111,101,101,109,112,111,95,100,94,89,98,100,126,101,90,103,96,99,100,96,102,90,98,96,95,95,106,88,94,103,102,97,95,102,105,101,104,83,100,106,100,99,102,99,102,97,86,96,102,103,106,91,88,104,108,92,103,102,114,110,99,101,107,98,99,108,97,97,71,97,100,105,98,103,83,103,89,100,95,113,110,106,105,110,97,100,104,95,121,94,112,96,108,99,95,108,94,100,97,107,107,93,93,112,121,107,83,80,76,103,100,97,109,92,124,99,107,92,102,94,93,110,82,112,94,92,97,94,100,97,96,98,112,85,105,102,90,100,111,97,91,87,102,99,72,94,107,106,106,103,102,86,94,102,101,107,100,97,99,87,87,91,92,100,103,101,118,83,108,96,90,92,98,81,107,100,93,91,87,90,95,97,96,95,106,105,100,102,102,111,102,88,100,101,97,108,91,103,102,100,94,94,96,97,97,110,107,101,113,102,97,100,107,105,92,100,110,114,95,98,97,96,100,102,102,99,104,96,97,95,108,109,82,99,90,100,113,99,101,100,102,113,112,108,111,99,89,97,113,112,106,108,88,107,102,94,106,98,110,105,87,92,91,95,110,99,104,103,99,104,84,107,109,87,101,113,101,81,102,113,94,104,102,97,91,109,98,96,98,105,102,101,91,103,85,90,102,109,107,90,98,92,112,92,105,93,91,113,109,108,109,105,107,90,91,91,92,102,89,93,96,93,87,100,103,100,111,97,102,97,103,108,91,93,105,104,105,105,108,98,104,100,103,111,113,105,99,102,114,97,105,98,103,100,102,100,100,100,100,96,98,102,103,106,90,80,99,96,108,97,97,86,98,102,103,94,101,108,91,96,103,105,104,105,85,95,103,103,108,93,101,94,121,107,98,107,98,107,102,108,99,87,109,104,102,101,90,99,95,116,87,106,94,85,99,95,100,101,102,105,119,91,99,97,111,125,104,95,90,96,125,112,101,91,95,91,96,104,94,90,93,107,96,100,100,102,96,97,101,96,99,97,98,95,101,107,113,110,88,107,89,97,94,117,105,95,112,101,101,113,94,97,98,103,90,103,104,97,96,100,96,101,91,87,102,96,82,102,105,95,100,106,106,92,114,101,95,105,92,90,96,98,94,98,88,99,109,96,101,97,105,109,95,106,102,99,109,89,109,103,107,103,115,114,103,97,94,99,85,103,100,96,93,104,105,103,94,97,90,109,101,100,96,112,100,88,92,87,104,99,85,93,92,94,100,102,110,97,97,106,97,104,97,100,97,112,92,90,95,97,96,101,96,100,101,94,106,103,107,105,91,95,101,100,100,98,95,105,100,108,102,83,94,104,100,96,94,93,94,96,97,105,102,107,101,95,103,105,110,106,97,109,97,95,95,95,91,109,108,94,99,100,104,95,107,105,100,95,105,91,96,109,103,104,104,103,100,100,101,95,105,101,104,102,106,104,102,108,91,109,103,99,110,104,103,106,106,96,96,97,105,101,100,96,103,105,107,112,89,97,92,102,89,104,92,105,98,94,98,105,103,91,90,104,103,94,95,97,97,98,91,86,111,99,106,100,97,96,114,99,94,105,102,84,103,101,98,97,94,106,102,91,99,99,98,109,96,102,96,95,93,96,107,99,102,95,112,92,97,110,95,99,111,105,116,101,92,93,110,112,93,106,69,111,101,103,98,100,102,107,97,108,100,89,99,102,101,100,110,113,99,109,97,109,110,92,95,103,109,95,113,95,99,87,101,95,94,112,95,99,107,87,106,88,117,90,95,103,96,86,106,111,75,102,91,102,101,118,126,105,104,92,98,78,109,96,100,86,101,95,100,97,96,96,98,94,94,99,98,99,98,101,88,103,99,94,95,91,120,94,109,98,90,110,99,105,106,106,107,102,93,91,99,75,109,69,102,102,107,102,100,99,92,98,101,105,94,105,118,98,88,100,102,103,94,106,102,104,105,111,95,104,102,90,98,93,90,101,100,106,101,92,101,103,98,104,91,102,102,113,101,102,101,105,119,106,98,92,95,92,92,113,93,101,96,105,104,109,111,101,116,91,109,93,80,91,92,102,98,96,109,100,113,106,96,103,99,94,94,120,98,93,102,110,102,99,96,98,110,87,103,94,90,108,93,93,97,100,100,100,92,109,101,96,105,110,91,109,107,102,112,106,107,95,92,101,96,95,113,92,95,83,103,100,107,87,96,103,95,118,105,103,96,98,116,91,105,96,91,95,103,110,93,94,103,98,107,96,101,93,99,113,95,104,96,108,98,105,104,108,114,95,117,116,92,95,98,98,105,93,100,117,107,107,105,101,93,102,100,101,119,102,96,94,107,106,99,97,97,107,110,105,120,106,98,111,96,88,90,88,101,104,96,97,95,102,103,105,105,104,93,111,97,97,96,98,101,95,107,117,113,122,88,116,108,100,97,81,91,94,91,110,104,109,107,101,111,100,104,101,109,105,103,109,104,105,94,99,106,91,94,97,104,100,92,101,106,105,98,107,84,112,83,96,97,93,99,93,98,89,113,104,99,96,101,97,97,95,108,126,105,108,105,105,103,98,75,104,96,104,134,104,94,103,102,118,121,101,108,97,98,102,100,108,95,83,112,105,111,79,103,115,79,92,97,95,100,95,109,103,96,97,109,109,103,101,98,94,102,101,100,111,107,109,119,100,111,107,95,107,85,103,98,115,95,94,103,84,91,95,116,101,97,106,88,95,108,94,102,100,104,97,102,103,99,97,95,91, +717.93835,95,100,98,114,87,94,104,102,88,97,90,91,106,92,106,107,97,99,90,107,94,90,87,110,96,115,101,94,75,108,88,98,95,105,115,102,104,94,99,79,86,102,101,115,96,89,95,101,96,84,103,102,102,109,77,101,97,101,100,87,102,100,91,95,100,104,100,102,101,105,99,95,84,101,98,88,99,99,105,72,100,98,102,98,101,98,105,100,101,104,101,110,92,105,93,103,101,98,95,99,100,104,102,95,99,102,105,115,89,118,104,114,104,97,102,111,109,100,107,95,90,104,116,99,97,105,104,98,107,108,109,90,91,91,106,103,111,115,99,117,98,100,114,104,107,105,113,106,83,99,103,110,94,89,104,108,83,111,100,100,95,110,92,99,103,100,89,105,94,104,102,100,96,100,104,101,93,110,98,103,107,95,108,104,113,90,93,90,90,105,101,100,98,91,105,84,97,96,101,110,96,91,71,95,97,100,100,109,116,105,98,100,109,99,94,99,122,103,84,103,95,99,99,107,104,106,109,95,92,89,102,100,100,104,97,86,104,110,94,103,99,101,108,96,95,109,102,106,95,116,93,99,89,96,105,99,94,103,96,92,100,99,100,85,92,109,99,99,105,102,101,96,108,93,97,87,100,109,104,102,103,104,105,111,94,92,102,97,99,104,101,106,118,90,97,90,95,100,99,74,110,102,108,103,92,99,103,97,105,96,96,104,93,99,125,93,94,98,92,98,105,110,95,101,109,93,100,88,106,112,94,112,104,99,102,100,99,92,97,97,96,109,102,97,113,104,108,111,105,109,102,111,102,104,101,98,81,99,107,104,100,108,108,101,113,102,92,107,98,99,101,100,111,92,97,106,100,98,103,96,98,101,104,93,108,96,99,104,97,95,92,99,91,94,109,92,87,97,101,111,98,105,109,109,97,85,101,103,96,100,94,94,94,94,98,103,99,92,98,96,102,93,110,105,110,99,106,92,101,89,99,92,101,102,96,113,90,98,99,104,82,103,124,101,105,105,108,102,105,101,98,97,90,103,97,92,102,95,101,118,103,99,91,100,103,106,99,102,103,105,94,109,131,101,100,99,93,108,91,98,97,94,96,98,90,103,96,98,89,106,98,89,106,92,90,98,89,98,108,87,108,95,98,108,71,91,84,91,98,106,114,95,102,107,93,100,95,104,99,86,100,99,102,95,104,94,107,113,99,99,92,94,104,110,103,105,106,100,94,93,101,97,98,97,98,94,89,93,109,99,95,99,99,94,94,94,97,96,81,97,102,108,86,113,102,100,117,98,112,102,102,97,96,87,99,95,95,101,102,104,100,87,100,97,100,102,102,92,109,95,104,90,94,105,98,100,100,96,109,101,107,103,103,110,99,95,100,103,102,91,102,96,99,113,110,104,93,115,93,101,96,106,92,99,107,108,97,101,102,102,104,97,94,107,88,103,95,100,106,87,114,105,104,108,87,87,92,91,98,87,97,97,106,95,105,102,77,113,104,103,84,99,105,108,82,102,95,92,104,108,100,101,108,107,83,109,106,90,112,105,92,111,99,95,97,103,86,93,102,101,97,100,96,102,95,100,105,76,97,77,105,95,97,91,96,106,118,91,97,88,105,102,87,98,97,101,100,105,101,105,105,99,91,109,106,71,90,120,96,107,97,108,91,102,98,126,109,109,84,94,90,104,86,108,90,97,105,100,96,99,99,103,91,96,83,105,102,111,88,98,100,118,93,90,70,106,64,95,101,100,107,99,105,72,95,100,112,99,104,109,96,101,105,101,97,95,77,115,96,95,100,87,92,105,75,110,125,104,99,102,115,101,90,99,103,105,105,108,112,104,105,70,82,101,107,110,107,99,95,97,99,100,97,96,101,91,83,95,96,93,99,103,114,110,97,110,109,92,96,100,96,99,75,92,83,99,98,97,92,101,101,90,88,97,94,111,91,98,101,94,94,95,90,99,109,94,88,103,95,98,99,98,100,86,107,98,97,104,86,104,98,87,101,114,102,103,102,97,113,95,104,104,96,94,106,96,90,102,96,102,111,107,100,97,107,92,104,111,101,100,90,101,98,101,92,95,93,105,89,95,106,119,105,91,85,81,94,95,100,105,100,102,105,99,93,92,96,113,104,87,103,92,100,108,105,90,113,105,96,100,98,103,100,99,90,92,102,97,99,108,102,105,97,93,98,96,85,104,92,113,111,106,103,100,98,93,103,90,99,95,98,96,109,100,105,99,111,109,91,67,100,99,92,103,93,88,98,113,99,101,99,84,91,98,108,95,103,92,102,103,96,71,96,103,88,102,87,98,98,103,107,106,95,80,101,94,88,93,115,100,87,104,109,88,97,101,101,104,106,107,93,81,91,99,102,91,104,102,102,99,92,103,103,102,95,109,95,105,114,100,106,109,109,106,103,99,115,101,76,99,91,112,97,108,113,105,96,105,102,104,105,116,98,100,102,90,92,80,94,91,94,92,91,98,94,98,85,99,99,104,105,102,89,98,91,105,105,93,109,90,114,99,91,91,97,96,106,97,91,104,102,107,105,102,107,102,101,99,96,97,106,98,97,87,91,106,85,116,92,100,99,100,101,93,105,109,112,103,109,89,100,104,87,94,94,104,88,104,110,99,94,90,97,92,91,95,92,96,111,97,87,88,111,99,86,101,97,89,102,110,91,107,100,102,105,101,101,100,109,101,100,98,105,84,97,99,107,86,95,98,92,69,126,113,102,128,105,109,87,106,101,95,104,100,91,99,87,95,105,99,109,88,89,107,88,88,102,99,90,99,102,106,86,108,92,89,97,96,94,100,105,109,98,93,94,105,101,106,89,99,101,110,96,87,92,99,103,102,91,100,104,91,99,102,110,93,98,103,96,91,106,101,99,107,106,103,84,103,89,106,96,103,104,103,91,109,96,95,105,101,98,91,101,96,80,104,100,92,93,103,107,110,102,96,99,95,102,100,101,74,78,109,90,103,91,105,107,105,106,113,107,85,115,93,98,91,112,105,81,97,89,111,106,106,109,89,98,99,125,95,81,107,88,97,112,91,98,89,103,95,99,106,100,100,98,91,104,104,98,99,96,98,111,104,96,104,103,101,93,99,100,103,86,106,83,100,126,104,92,93,75,96,89,119,104,102,95,102,107,83,96,87,107,95,92,99,108,99,92,110,88,91,91,112,91,99,92,101,79,106,91,94,94,100,120,93,103,98,113,97,107,95,96,102,92,91,103,106,93,102,91,115,95,100,109,87,107,81,106,93,91,97,92,102,101,81,97,88,107,94,98,93,101,104,103,106,92,111,107,100,101,99,100,98,103,104,88,97,91,93,102,99,96,94,102,101,96,119,104,95,94,100,93,99,99,101,99,106,116,119,122,94,95,95,105,99,94,103,96,92,100,103,92,112,98,101,89,95,123,98,109,94,97,96,96,117,100,101,107,97,103,101,88,92,104,97,100,98,94,89,108,107,100,96,90,98,84,99,102,100,94,91,101,95,107,99,97,94,96,100,105,88,95,95,88,111,105,102,90,87,99,88,105,95,98,107,102,110,98,102,101,104,101,98,99,109,96,95,101,99,81,92,102,92,97,109,108,96,101,99,100,110,109,99,86,101,98,117,98,85,104,90,106,105,111,94,90,85,102,96,92,102,116,102,78,93,102,95,104,91,106,113,86,99,100,97,101,108,104,87,98,98,89,101,92,102,107,100,87,84,106,84,80,102,87,106,105,97,93,93,100,105,105,98,115,94,96,95,97,107,90,92,109,84,108,113,96,102,91,97,91,94,105,109,111,92,87,93,94,97,98,95,95,97,93,92,104,100,97,96,92,99,82,88,97,92,100,106,99,111,102,102,96,97,95,89,97,97,86,101,105,106,112,99,94,100,98,88,94,104,102,91,91,102,90,97,106,94,88,94,97,105,105,94,93,98,91,94,91,103,101,103,89,100,84,94,93,96,95,95,105,101,91,97,109,98,98,92,96,102,135,91,104,99,88,90,103,101,101,103,102,99,107,102,112,104,101,95,94,104,103,92,109,98,107,108,106,107,106,88,98,102,97,101,95,102,99,93,111,91,108,94,94,99,102,102,101,96,91,99,100,101,98,94,98,100,92,79,119,99,94,100,90,90,103,96,108,66,120,99,87,92,96,95,102,90,93,103,113,101,96,105,117,100,102,101,93,97,109,90,94,112,99,101,105,93,75,87,100,98,108,109,100,91,92,92,97,98,90,95,87,109,105,96,85,84,103,94,115,106,101,110,103,91,98,95,91,91,96,87,87,95,82,90,103,97,91,103,101,105,104,105,101,100,103,98,103,102,97,99,91,89,111,104,96,91,106,100,114,98,111,96,100,103,93,96,96,101,101,99,95,104,99,104,97,107,94,102,101,108,94,105,101,112,95,81,90,101,123,93,128,109,94,90,99,86,89,111,99,119,100,101,98,102,92,90,104,60,109,93,81,92,94,94,105,94,106,102,97,118,90,94,100,109,97,105,100,95,100,89,94,94,97,104,101,77,108,119,109,98,100,105,105,94,110,90,99,92,93,101,116,95,98,95,97,96,98,101,86,98,95,101,88,91,86,101,98,102,108,107,92,110,101,110,108,103,103,85,87,84,105,90,116,95,106,105,96,102,101,105,88,115,93,103,85,104,91,96,96,96,81,91,103,96,96,85,95,111,102,98,93,119,97,100,99,103,103,101,104,93,83,85,84,106,105,78,117,101,96,112,103,93,102,109,87,81,98,104,107,92,95,111,111,97,103,92,104,98,94,102,96,86,91,91,94,80,113,97,96,97,95,94,102,111,85,83,91,104,79,102,99,106,89,90,91,91,95,96,116,107,107,103,96,93,87,100,101,113,93,96,114,86,89,98,73,96,109,108,103,97, +718.07971,106,101,76,95,88,101,96,111,87,92,113,89,103,106,103,100,98,96,91,111,102,90,103,87,113,111,110,96,103,104,105,78,97,95,99,106,83,97,94,119,86,80,105,89,96,97,101,86,109,104,100,103,90,108,98,94,101,108,99,96,95,102,113,83,102,98,89,121,94,103,96,98,117,99,93,113,98,139,99,96,80,89,100,97,99,102,103,102,108,110,103,97,93,93,93,105,93,93,113,101,95,92,95,106,101,95,100,103,98,97,98,102,103,100,110,104,100,98,99,92,106,94,103,108,100,105,101,94,110,89,107,97,112,101,78,93,99,102,88,96,97,101,115,100,88,119,97,82,80,93,109,101,97,90,99,106,99,72,88,101,90,84,97,95,91,108,96,100,119,89,109,101,99,92,96,94,109,79,104,97,110,107,101,109,104,83,110,91,95,99,84,104,108,96,102,99,102,92,109,107,95,104,92,90,98,99,89,84,97,101,103,89,101,98,118,95,95,88,92,100,100,87,103,116,90,106,115,106,87,90,87,98,106,100,99,108,109,99,96,103,95,93,96,94,91,97,99,105,98,98,93,101,99,100,92,80,98,95,87,98,97,105,106,104,96,99,101,104,83,113,90,99,100,98,91,100,90,85,105,95,102,94,96,102,100,99,98,101,107,102,93,93,97,103,110,93,93,107,88,98,103,89,94,95,90,106,100,104,93,95,93,111,99,101,85,97,96,98,91,103,91,83,87,105,102,110,93,92,104,106,100,94,94,90,107,107,97,98,94,102,113,102,104,94,88,107,112,110,104,98,102,90,106,76,96,89,99,121,90,102,95,108,94,92,99,89,92,91,113,92,87,100,97,98,83,92,102,99,107,105,95,99,96,97,98,106,99,92,96,96,110,87,95,94,83,89,91,94,95,95,99,94,88,91,100,104,100,102,91,98,93,98,99,97,98,92,100,102,102,95,104,89,104,93,100,93,113,84,94,102,99,100,87,106,94,105,91,108,99,97,102,104,90,107,87,96,91,109,105,104,103,117,105,100,103,100,101,105,101,110,91,93,98,99,105,104,94,94,110,96,104,106,99,104,105,80,97,108,106,99,102,108,104,99,101,103,108,103,104,86,102,106,91,101,88,100,90,99,100,99,105,104,101,100,89,105,103,90,92,104,105,108,86,92,102,97,99,101,104,104,103,97,101,99,106,89,95,95,94,73,93,101,101,95,91,91,86,103,105,106,101,100,108,98,117,91,98,87,102,102,87,113,101,99,108,113,93,91,106,102,117,102,95,108,100,99,95,102,94,96,86,77,104,92,105,103,101,100,110,90,105,95,97,91,110,106,101,101,98,88,100,96,89,104,113,99,96,100,101,76,110,98,120,101,92,100,93,67,98,104,94,109,105,94,102,89,109,108,100,85,87,103,97,99,95,94,86,100,92,96,99,96,100,88,101,97,93,106,99,98,98,100,96,96,97,88,98,87,101,117,99,79,91,86,109,88,105,88,102,101,104,97,102,101,90,106,113,101,75,97,109,103,102,104,104,88,94,98,102,106,105,106,108,98,109,97,101,109,101,111,100,98,99,116,105,100,106,90,92,86,87,75,96,79,95,99,110,92,93,98,92,97,98,89,99,109,111,89,95,82,101,114,99,97,105,94,86,87,98,111,102,103,90,94,101,95,95,102,113,109,100,87,108,97,85,95,100,109,107,98,98,93,100,89,75,104,98,93,108,97,103,104,92,93,91,92,89,87,104,99,100,92,114,107,92,91,98,97,78,102,98,97,99,108,89,102,113,105,95,109,103,105,105,102,94,102,85,101,105,107,104,95,92,99,104,107,98,99,102,98,113,103,108,101,105,98,97,107,110,100,72,95,100,100,103,105,100,93,101,98,110,105,106,108,103,102,96,128,92,106,103,95,95,94,73,98,93,97,96,118,106,102,77,97,88,92,97,101,84,100,109,92,97,98,99,110,89,87,103,95,101,107,99,95,102,89,96,103,113,103,90,106,103,97,109,96,99,104,91,101,98,99,99,93,99,94,105,110,95,101,104,112,99,88,101,91,87,101,94,103,94,107,97,73,99,90,91,98,106,103,97,103,105,106,101,105,96,102,100,103,100,97,98,109,109,109,90,112,111,99,110,100,100,113,100,105,90,108,96,117,94,96,117,106,102,104,94,105,90,103,107,95,109,93,102,99,97,88,102,86,89,88,99,109,100,105,88,101,98,91,95,102,90,99,103,97,98,88,99,106,95,100,98,69,90,91,97,101,105,101,95,98,116,101,100,103,96,111,96,104,108,99,97,100,98,95,103,95,108,102,96,112,107,81,96,94,89,110,94,99,101,86,90,81,102,95,96,105,106,86,92,93,105,100,101,94,92,88,88,94,105,97,90,91,97,98,86,101,108,103,90,95,99,102,99,110,95,106,101,105,106,104,106,102,102,108,100,101,98,89,98,97,114,91,106,104,99,97,111,110,94,116,98,90,90,98,97,105,109,97,88,95,107,98,102,91,96,99,92,107,107,116,94,102,95,102,96,114,92,99,92,117,88,100,110,99,101,96,99,95,114,105,95,94,94,100,111,92,96,111,100,98,90,98,94,103,100,113,101,92,98,106,101,110,105,96,98,106,94,103,97,98,93,82,110,103,103,92,103,102,107,97,106,108,93,105,104,98,109,99,104,102,92,98,94,102,108,108,95,104,101,99,94,102,101,111,97,102,86,102,110,104,91,123,104,96,92,97,99,104,108,91,97,108,100,91,97,100,109,103,97,98,101,90,88,95,103,113,98,102,109,100,95,108,104,90,95,98,87,100,119,98,105,98,91,102,104,88,99,101,97,102,106,86,101,96,110,95,97,80,104,103,117,92,111,94,127,102,104,92,102,88,101,102,93,104,108,103,100,100,106,109,98,98,89,105,93,97,96,97,79,85,89,95,107,95,107,102,102,109,94,87,93,102,101,113,105,94,112,102,98,99,95,101,102,109,103,101,103,102,102,101,96,92,103,97,97,100,89,105,88,80,100,106,105,96,102,104,89,108,98,91,105,92,104,106,106,103,94,93,101,91,89,102,102,95,104,91,102,100,109,126,93,91,91,88,89,92,117,104,94,97,102,107,100,98,107,99,63,88,101,94,92,89,105,84,102,94,97,93,89,98,80,103,97,104,100,92,101,99,74,105,96,104,93,100,97,96,96,99,93,98,105,99,103,105,101,101,98,95,95,109,91,92,84,99,105,94,108,99,104,97,90,121,103,97,92,105,91,97,86,90,99,99,97,106,98,99,109,79,103,96,97,104,96,107,106,99,98,107,112,101,94,100,100,98,100,93,108,105,68,100,91,87,103,106,96,92,101,92,101,111,107,95,101,95,110,101,101,92,102,108,95,100,106,90,98,98,99,98,92,96,96,98,96,102,100,88,105,98,93,103,106,101,99,95,89,102,98,101,96,97,100,96,92,98,94,101,100,92,97,98,106,107,90,107,106,98,121,95,98,98,104,84,101,107,99,100,92,100,104,99,93,97,100,96,105,96,89,101,87,94,96,75,102,112,77,103,97,97,105,104,98,109,89,110,98,89,106,87,99,93,108,105,98,93,102,99,97,87,91,100,111,92,102,94,94,102,98,98,101,103,104,96,106,68,96,104,96,92,83,107,98,110,95,113,105,111,106,109,91,97,96,96,98,95,97,95,104,108,103,102,95,105,100,99,98,99,100,87,80,100,87,78,94,108,103,92,99,103,109,92,90,100,89,104,102,93,95,93,106,100,110,98,97,97,90,92,95,113,100,98,92,101,104,97,93,96,93,92,106,91,96,87,102,108,97,101,106,95,88,104,104,91,109,99,99,87,85,99,91,83,93,94,92,115,91,94,61,92,105,88,100,103,89,99,93,89,94,95,103,97,97,91,98,105,105,98,92,85,94,90,105,101,94,106,99,113,101,92,103,100,101,98,86,109,100,99,105,67,109,111,97,92,114,90,98,97,87,96,99,96,105,107,106,96,93,94,107,95,96,101,94,102,102,102,111,123,98,79,89,99,91,103,93,106,108,102,110,109,109,95,98,88,101,94,111,104,101,107,92,108,108,98,89,108,128,102,109,98,108,97,93,95,94,102,94,62,106,109,95,90,101,97,104,92,101,99,87,95,102,97,100,93,100,86,105,98,99,90,108,101,104,101,102,92,109,104,106,106,105,101,96,102,94,96,96,106,94,101,103,97,101,102,94,102,105,112,89,103,97,104,101,91,91,88,86,92,102,83,102,99,104,100,106,98,100,92,107,94,97,94,97,101,104,102,109,102,91,96,94,97,103,109,104,103,105,97,98,93,112,90,100,90,97,94,96,96,102,90,104,97,100,97,94,93,96,99,96,102,91,108,97,98,73,97,104,102,101,102,103,95,97,112,91,91,98,94,97,108,98,107,94,81,104,99,97,104,84,105,97,103,103,90,94,85,77,74,96,121,86,107,102,91,87,94,93,95,92,89,100,97,99,105,96,109,112,105,95,93,94,97,93,99,86,103,99,103,100,111,92,106,84,100,93,87,114,90,103,92,94,89,98,92,98,92,96,98,95,88,84,105,100,95,109,100,97,100,94,102,98,104,96,111,93,121,95,92,95,89,105,100,103,103,99,95,108,92,106,93,98,101,102,83,95,95,96,106,93,91,110,100,96,103,108,97,120,76,88,93,102,112,97,99,77,81,70,101,98,99,97,103,93,102,101,100,107,119,90,103,84,100,98,90,98,110,100,90,102,94,94,106,105,109,91,101,100,97,109,100,105,104,101,96,101,94,93,97,98,106,98,97,106,97,97,100,120,101,101,93,115,73,95,92,98,102,84,106,104,101,78,96,114,108,97,87,90,100,102,86,79,102,111,92,113,109,108,93,103,85, +718.22113,115,101,92,97,86,103,97,96,89,98,80,94,98,96,96,102,98,89,104,104,102,97,86,106,104,96,100,100,106,96,100,102,104,97,106,95,95,97,91,109,106,100,110,87,105,106,101,111,110,104,100,96,96,110,103,105,91,111,107,98,94,96,104,101,102,101,94,102,111,110,88,112,91,102,90,119,94,105,111,102,98,102,103,100,99,100,104,93,115,105,106,104,111,97,87,76,110,90,114,110,104,102,83,97,92,98,100,97,118,88,93,111,98,122,105,101,98,95,106,97,98,98,111,106,93,113,108,105,112,111,95,90,100,96,112,110,105,89,103,93,106,105,99,98,94,95,107,102,102,98,96,92,111,102,93,98,104,95,96,94,88,100,94,83,108,99,93,91,95,130,91,91,107,95,106,106,107,93,107,90,103,97,99,122,122,101,109,109,101,116,92,98,105,101,98,105,112,103,99,105,103,94,102,99,88,61,93,94,107,95,91,78,113,108,100,97,102,101,94,108,90,97,103,98,111,99,90,98,117,103,97,103,103,103,101,103,111,95,95,97,103,100,104,100,102,106,97,100,107,105,100,91,99,94,104,78,95,104,96,95,97,89,92,96,97,102,105,111,95,97,94,93,105,95,101,101,95,100,118,96,113,104,120,95,101,97,99,101,94,105,94,106,103,100,97,103,99,102,93,78,100,98,108,106,67,99,108,121,89,99,100,103,79,99,98,93,96,87,92,110,88,93,94,100,103,97,96,92,109,108,99,94,96,90,98,103,114,97,101,90,109,111,100,88,106,109,112,109,107,91,111,97,96,105,103,106,98,95,96,107,106,95,100,104,84,96,114,107,107,111,103,105,95,88,105,97,98,99,97,107,113,106,93,91,94,99,99,84,93,90,103,83,91,110,95,104,98,95,97,106,98,104,98,84,97,90,120,106,104,102,96,96,110,92,108,97,98,101,103,95,96,108,93,98,103,88,93,89,102,112,100,117,113,96,105,89,95,74,88,101,95,110,96,92,88,109,95,97,108,98,87,99,98,108,103,95,108,105,100,112,101,106,91,98,112,111,100,94,105,103,94,108,92,94,92,99,94,87,83,100,93,103,105,100,110,95,105,100,104,97,95,99,101,100,99,101,112,97,115,110,113,91,97,103,95,103,98,96,97,104,114,76,98,106,105,108,122,103,99,98,100,96,105,103,93,93,111,103,102,94,97,99,109,91,97,97,89,94,103,110,91,102,85,96,110,95,114,124,102,98,105,110,118,98,90,92,100,97,96,104,102,100,99,101,104,113,103,97,103,102,97,97,101,92,104,99,110,91,96,101,106,96,97,98,92,95,62,95,112,88,115,114,95,96,84,96,98,96,92,93,91,96,102,97,99,94,101,100,98,86,85,112,101,103,103,101,103,105,109,105,113,88,102,98,108,98,95,106,98,95,89,99,93,107,97,95,96,88,99,97,100,101,106,109,95,100,99,91,109,90,103,104,97,94,100,92,111,97,105,109,91,104,94,90,100,95,101,103,97,95,113,104,96,103,94,90,101,91,105,83,96,99,100,97,90,99,101,98,94,105,101,113,91,97,100,94,97,103,96,105,96,96,98,96,110,110,107,101,98,95,104,98,94,95,91,101,95,112,102,94,103,97,105,100,94,93,102,96,98,102,92,113,60,101,90,106,94,103,102,112,83,85,102,97,98,97,100,88,109,121,116,102,114,95,100,102,101,105,109,95,120,100,95,96,98,90,98,104,101,87,113,106,105,109,103,110,97,96,104,102,103,101,98,112,113,80,100,109,124,116,112,98,99,103,97,96,114,104,97,90,110,75,107,101,109,95,98,109,99,87,104,93,97,96,101,84,112,107,100,92,102,96,97,97,100,99,104,106,97,104,105,99,107,104,94,104,91,100,93,92,96,89,103,94,100,113,91,90,101,89,104,107,97,101,90,102,100,103,104,100,104,116,97,110,93,96,91,104,111,98,110,90,88,96,94,107,105,103,95,98,99,111,105,94,97,103,89,103,98,99,95,112,98,95,92,100,117,124,102,111,99,102,100,94,101,98,104,104,106,101,106,99,106,98,91,92,97,102,98,96,115,101,104,95,90,91,97,100,101,97,69,108,98,104,96,107,104,96,99,111,99,109,113,87,103,112,105,98,108,95,103,98,103,102,109,97,100,105,109,94,102,97,99,93,101,97,102,96,100,102,91,99,108,113,104,103,98,103,93,97,102,107,98,101,99,93,102,104,76,101,85,104,107,108,86,109,99,110,99,122,104,95,117,97,110,97,101,98,104,102,99,112,107,109,99,114,98,108,93,87,95,100,105,80,92,90,100,99,96,104,116,92,98,116,100,97,100,96,107,100,98,95,97,96,101,117,98,100,88,104,111,111,99,102,87,110,105,104,104,125,81,108,104,99,91,108,93,96,112,93,93,96,106,99,102,104,101,99,109,121,85,109,92,107,98,91,104,102,108,102,102,98,96,94,98,87,104,97,102,102,83,99,121,97,100,76,98,104,116,92,97,113,100,112,97,95,93,110,96,96,91,87,106,94,97,100,90,95,104,98,108,113,98,96,95,89,98,102,89,96,103,89,95,101,88,108,99,100,96,95,95,93,110,100,108,106,125,94,101,90,98,91,91,94,99,105,92,91,80,107,91,101,100,98,98,105,90,91,90,111,111,105,96,99,92,98,99,107,100,105,100,99,123,107,95,121,111,95,97,103,90,108,99,110,104,104,104,108,91,86,80,94,99,99,109,101,98,104,106,105,77,94,94,92,96,98,109,104,103,103,101,91,91,110,96,99,106,100,107,111,123,92,116,103,101,101,93,117,97,105,117,92,112,105,107,88,99,100,104,98,108,96,100,98,100,79,83,96,97,102,109,87,99,103,101,101,96,93,100,114,98,108,97,101,112,73,100,93,103,95,102,99,96,105,92,106,88,93,96,101,103,94,102,91,92,106,98,97,99,101,100,101,97,99,106,107,106,100,98,102,98,97,100,108,116,102,75,92,98,108,107,101,104,98,100,94,101,105,112,97,95,93,98,99,99,100,105,102,119,88,96,100,106,101,92,102,93,87,97,104,99,110,94,91,102,94,107,107,106,106,106,105,97,105,96,102,92,108,109,91,94,88,96,102,103,98,98,97,105,95,97,95,99,103,100,101,100,92,101,99,117,94,101,106,88,104,101,98,101,109,95,107,85,93,93,88,90,105,110,108,98,96,87,97,88,103,104,105,107,92,78,105,92,120,94,96,92,108,96,106,106,98,103,89,106,101,90,94,81,101,110,100,97,101,96,85,96,109,95,91,101,101,92,65,108,101,87,81,100,96,101,119,102,99,103,107,111,102,103,106,100,106,99,102,94,93,101,95,87,98,100,93,75,94,98,106,97,113,109,98,94,98,92,97,96,92,100,94,91,107,94,95,88,81,91,98,106,99,108,100,98,102,106,101,88,106,100,103,100,95,112,100,82,102,98,98,97,91,102,105,97,99,92,105,104,112,95,110,102,111,104,106,94,102,93,99,100,108,96,108,71,105,108,87,94,98,101,99,106,97,103,100,99,98,100,95,102,101,91,102,105,95,110,93,104,99,121,100,92,84,85,103,106,100,118,88,81,104,98,88,102,107,115,100,107,95,96,101,95,103,101,105,96,103,95,98,102,109,93,105,96,105,95,102,87,95,103,111,106,95,95,105,91,107,100,106,109,100,96,88,89,92,96,97,108,134,85,97,104,108,106,95,112,85,104,117,91,98,101,99,105,90,96,86,91,99,75,95,106,96,105,99,98,104,90,96,116,96,106,105,108,96,108,105,99,107,91,90,100,88,100,94,109,96,92,101,96,107,98,100,90,98,91,110,105,100,91,103,102,96,97,95,98,89,98,101,89,95,93,95,100,97,99,102,101,90,100,92,100,99,105,91,105,98,100,101,91,83,107,95,103,103,97,102,107,98,89,103,87,102,94,90,103,93,98,92,97,108,102,114,92,123,93,87,103,97,100,94,106,98,84,89,92,95,105,97,92,103,88,102,105,102,109,105,101,108,70,99,109,97,101,91,102,89,101,100,103,95,97,94,100,104,100,96,101,108,95,109,109,106,110,93,96,105,96,87,100,94,101,91,94,88,109,100,109,102,89,99,101,113,103,107,94,87,106,100,103,86,99,110,102,89,103,108,99,107,97,109,88,96,95,95,99,99,90,99,108,100,105,102,96,86,108,95,104,92,107,106,104,88,94,96,97,95,101,100,96,94,115,98,111,79,100,109,92,97,102,89,96,104,99,114,92,104,96,105,98,110,95,96,99,107,109,104,95,98,102,95,90,103,96,89,102,102,102,91,97,104,96,99,101,109,105,99,99,102,105,98,96,91,94,92,112,97,93,101,103,95,106,101,101,93,92,100,96,98,107,94,100,95,111,93,103,91,90,93,92,91,101,109,103,106,101,96,105,96,95,110,100,97,88,96,98,95,97,115,104,97,88,92,119,97,105,96,91,104,92,95,104,95,87,90,113,107,106,105,92,100,99,95,96,108,81,98,101,89,110,93,95,92,95,109,105,97,96,107,106,88,93,95,112,100,94,99,100,93,106,102,123,96,99,103,100,105,95,98,92,105,98,102,102,97,111,96,102,93,107,101,97,92,108,104,102,96,81,107,102,116,93,100,105,107,96,97,97,95,101,100,100,97,108,100,110,95,102,96,88,98,106,91,93,104,109,122,91,83,99,77,100,98,115,102,109,100,88,111,101,95,99,104,117,108,88,103,92,87,90,76,94,97,98,93,101,98,104,93,106,105,98,89,124,87,106,95,96,115,103,90,106,99,65,99,102,120,94,125,101,91,100,101,98,99,109,90,107,100,67,106,82,103,91,93,96,99,90,112,100,101,79,104, +718.36249,90,96,97,93,82,110,95,102,98,90,102,102,111,83,95,86,101,103,100,97,84,90,96,109,105,111,104,96,102,107,94,103,115,88,100,101,106,91,99,98,94,102,126,117,102,112,100,104,93,109,93,96,93,104,96,91,114,75,101,90,108,95,106,105,98,97,101,106,99,101,90,91,98,99,98,100,102,96,96,112,105,94,100,100,101,91,107,89,93,98,109,101,102,112,81,101,95,91,104,95,83,90,105,101,91,82,91,99,96,97,103,112,101,90,106,101,72,100,97,96,111,94,84,79,98,103,103,98,104,98,105,92,93,98,109,105,93,97,93,92,112,97,109,88,97,91,111,114,91,90,100,97,114,104,92,91,105,101,103,110,101,89,109,98,91,98,108,96,101,95,101,129,105,98,101,103,96,105,101,102,116,102,91,103,114,100,117,78,102,106,99,103,94,94,93,96,91,99,95,89,95,108,101,94,94,96,87,94,104,102,98,108,101,116,90,104,104,105,101,95,92,105,124,83,100,107,96,103,90,101,80,98,99,99,105,90,95,105,97,103,104,105,102,101,101,93,93,101,107,97,103,125,98,100,97,101,94,107,93,97,92,105,101,94,88,104,110,92,107,97,96,84,105,100,98,88,115,99,97,99,97,98,102,110,123,105,98,100,98,100,75,107,106,138,101,114,93,103,108,107,101,88,85,101,94,97,104,102,107,118,99,81,103,95,103,96,97,100,90,82,112,99,97,101,76,99,99,109,101,95,99,99,108,106,99,99,105,90,107,96,105,104,97,89,98,101,100,104,103,94,99,101,106,103,100,103,98,111,113,97,107,106,81,90,82,101,101,104,108,103,95,93,107,117,113,80,111,100,94,107,96,113,93,95,105,83,94,94,108,97,106,94,96,110,96,101,99,106,102,106,102,94,99,87,105,101,107,126,99,100,85,98,93,105,105,113,104,90,107,98,112,94,99,106,100,98,100,87,84,116,101,92,93,104,99,94,110,98,94,102,95,104,105,101,92,96,101,95,91,105,107,104,103,100,109,90,94,91,103,97,102,97,96,109,101,99,101,97,89,95,103,89,93,99,82,88,110,111,108,103,101,103,109,110,109,97,108,94,96,108,117,99,96,97,119,96,93,94,105,96,106,108,97,96,93,102,92,87,99,105,104,107,99,96,102,117,103,95,104,105,96,104,100,97,88,92,97,104,87,105,106,105,89,109,106,102,101,97,100,97,110,104,92,95,104,94,112,69,83,96,106,106,96,95,103,96,98,105,95,110,109,97,100,97,105,105,103,105,101,104,100,100,103,99,108,106,74,92,95,99,109,84,86,95,107,91,107,94,106,96,106,105,83,104,102,108,98,66,91,86,100,98,100,101,99,95,93,75,98,113,90,103,105,108,121,94,106,98,106,99,72,109,104,88,103,90,105,102,100,100,113,113,100,114,95,98,103,101,100,97,98,97,91,97,87,94,100,106,106,111,106,108,103,99,97,106,113,102,90,94,103,108,108,100,96,98,100,89,108,104,95,103,96,99,97,107,102,109,107,97,107,104,92,86,89,105,96,98,87,96,100,98,108,98,106,88,100,79,102,92,97,96,91,100,105,120,105,97,112,101,102,90,104,106,105,94,110,100,99,91,92,86,96,105,111,102,90,101,98,101,112,96,102,91,91,99,106,93,95,95,92,89,114,101,99,88,90,108,100,108,102,100,106,87,95,100,113,92,102,101,103,96,106,104,91,107,104,111,93,111,108,107,89,96,97,110,101,91,101,114,101,106,107,91,95,108,93,92,95,93,103,105,93,108,91,106,81,112,113,96,90,87,102,99,116,91,94,94,98,91,95,109,104,98,104,97,113,110,99,93,93,102,96,104,108,103,106,98,104,98,105,106,104,106,94,95,107,94,114,111,103,74,108,96,81,111,96,90,99,92,102,101,102,105,96,103,94,101,100,93,100,97,101,104,96,107,87,95,120,92,96,100,96,94,115,92,91,87,100,88,98,111,100,114,97,111,106,121,108,103,107,95,97,104,99,94,112,94,97,96,107,79,120,98,105,90,102,96,90,92,100,100,97,90,94,94,100,111,123,105,95,100,101,95,108,98,95,78,103,109,101,98,124,98,99,97,100,98,115,111,110,97,98,109,108,98,102,94,109,105,95,104,92,98,103,95,86,100,94,106,102,106,108,92,99,93,105,105,126,94,104,107,114,98,97,105,99,91,90,98,101,125,94,98,107,98,84,98,104,89,98,106,98,103,97,96,96,96,118,104,99,105,99,107,104,65,97,98,96,95,104,109,99,107,100,107,102,109,96,98,97,103,103,97,94,85,107,92,82,97,104,112,106,113,113,94,83,112,99,96,110,103,89,93,113,102,102,97,101,117,91,98,84,97,100,90,103,95,96,97,105,103,101,109,100,92,104,100,91,112,99,96,99,101,106,105,106,107,99,102,91,102,94,103,95,112,97,92,98,102,98,105,105,87,94,94,83,77,104,94,101,76,106,93,84,99,90,98,118,103,98,90,101,96,93,96,112,71,89,96,94,97,87,92,110,101,99,92,96,108,93,110,104,97,99,92,91,100,88,102,100,89,98,115,89,101,109,103,95,88,90,105,89,107,109,98,107,109,97,96,97,93,99,86,88,102,94,90,98,83,83,100,106,114,86,88,98,107,100,94,94,90,86,98,100,103,107,93,102,104,91,101,98,100,92,106,104,97,87,111,94,106,94,97,105,97,124,99,98,92,101,95,88,106,105,95,88,105,98,92,105,86,93,104,93,90,91,101,99,103,95,99,98,105,86,90,103,95,93,110,111,103,100,88,97,97,102,103,99,79,107,96,110,85,94,108,105,109,95,110,87,100,91,113,100,98,102,97,97,97,91,84,107,106,104,94,109,96,100,102,100,105,100,99,88,100,108,104,99,94,90,92,98,102,87,102,101,92,98,95,107,101,101,96,87,100,92,101,98,98,98,98,98,104,109,101,89,104,99,92,97,91,112,101,110,97,127,111,95,96,92,95,96,99,105,104,93,109,95,102,113,103,105,108,102,101,97,88,110,129,92,122,102,102,108,88,104,98,104,89,100,104,90,94,98,98,95,100,94,94,95,102,91,103,99,80,102,106,95,91,102,101,90,99,105,108,96,105,100,97,89,96,103,99,98,107,87,103,102,78,103,97,89,95,90,101,105,101,112,102,103,101,83,96,98,101,104,104,92,120,96,97,89,95,100,92,101,104,104,101,104,96,90,95,103,96,99,106,108,92,102,88,102,106,96,106,90,102,100,95,101,91,100,102,95,102,99,99,98,89,108,89,109,104,105,87,88,97,87,98,101,96,90,93,94,110,98,91,105,92,97,97,113,111,90,108,100,98,100,102,107,99,106,99,102,96,96,115,99,90,87,97,106,108,99,94,105,96,103,107,101,85,102,87,97,97,105,101,92,106,97,95,109,93,95,107,97,94,105,100,113,105,101,95,103,98,108,92,100,101,101,91,112,102,102,95,95,99,98,95,107,76,88,110,102,88,100,97,97,103,98,105,114,91,97,102,94,100,84,95,97,102,92,101,102,100,104,97,100,96,87,95,93,101,101,103,94,95,105,89,98,101,100,99,98,96,105,110,110,103,95,95,99,105,113,101,100,93,106,92,99,106,99,103,100,92,95,102,95,98,100,113,96,98,94,106,96,98,88,97,93,93,113,104,113,102,107,103,96,98,101,95,95,98,101,90,97,102,92,101,109,101,91,90,101,98,107,97,95,103,95,90,102,104,110,86,93,91,94,91,102,96,93,99,94,100,98,105,110,115,84,89,100,87,97,104,101,87,103,92,93,104,103,93,90,89,104,99,96,107,104,102,97,96,95,103,100,93,106,91,99,98,96,100,97,93,107,96,98,110,101,99,94,99,91,104,119,89,113,101,98,98,112,95,102,109,88,90,110,111,96,94,93,107,102,108,101,105,100,96,99,96,97,104,111,109,98,102,93,99,94,98,99,96,94,93,93,96,92,102,102,109,92,99,91,101,102,98,101,94,86,94,85,106,99,94,116,98,101,85,104,95,107,96,95,101,92,106,101,96,104,95,79,105,105,97,98,103,87,105,106,93,97,85,105,101,108,98,100,102,95,98,100,110,98,103,91,109,94,113,108,97,100,87,112,94,103,93,98,90,102,88,105,73,105,97,94,95,97,102,118,98,96,98,98,122,98,94,102,100,91,94,96,96,87,93,105,106,93,87,104,86,86,94,106,91,89,92,95,81,88,100,91,99,97,103,102,99,88,90,90,125,96,108,93,87,101,105,107,105,111,102,99,95,95,83,102,106,98,100,101,101,94,99,103,103,105,89,99,91,87,102,101,95,92,109,98,104,101,88,97,109,88,102,94,101,103,77,101,91,104,82,118,100,111,93,97,93,88,100,105,106,109,97,98,88,97,98,105,102,102,100,95,97,106,96,96,113,78,105,95,122,91,105,112,94,109,97,99,94,94,93,101,112,92,101,103,96,87,104,100,97,94,90,101,108,108,102,98,96,84,91,101,95,96,96,100,101,102,99,90,99,101,83,118,107,102,98,87,109,91,104,92,91,115,99,83,94,95,94,90,100,105,106,95,96,95,91,93,82,104,102,110,97,96,106,92,112,103,86,101,80,108,109,98,96,102,103,116,91,98,94,94,88,100,90,103,84,96,85,110,104,98,101,102,101,94,100,98,102,105,95,105,105,115,96,107,83,103,100,97,99,83,105,103,103,101,100,107,86,105,99,102,105,91,112,93,91,80,99,93,91,121,97,102,104,103,102,98,93,98,110,102,77,105,107,84,104,88,102,107,117,98,103,99,94,104,94,98,95,98,103,100,94,94,112,87,113,87,102,105,97,112,94,120,85,93,113,89,95, +718.50385,101,97,102,96,82,116,108,89,108,94,89,110,97,94,106,102,87,116,99,98,97,101,101,105,78,98,95,101,94,106,95,105,94,103,63,96,104,104,104,96,79,93,98,103,100,110,93,99,89,94,94,87,101,98,100,95,96,100,104,90,86,94,106,76,98,119,87,98,108,87,97,94,104,95,102,104,102,93,104,106,93,98,107,119,105,98,94,111,101,101,93,102,111,104,96,109,99,95,94,109,110,110,104,88,90,106,94,99,99,102,99,101,105,94,101,92,86,91,101,92,107,102,111,105,100,104,106,97,103,87,95,98,94,101,94,90,104,103,100,104,98,100,105,98,107,96,112,86,101,102,103,97,124,90,96,83,102,83,98,94,94,107,90,108,103,109,108,103,104,105,105,107,113,108,105,109,104,112,104,98,107,137,108,97,106,108,95,96,109,95,94,109,97,105,101,104,102,101,105,91,92,86,101,92,101,100,104,102,105,108,112,114,119,105,105,100,98,99,99,94,98,104,87,91,104,105,94,103,108,100,100,101,105,100,111,99,101,104,108,87,100,102,103,98,93,95,92,98,104,96,98,109,95,114,106,99,103,90,90,92,93,100,102,89,105,106,108,96,97,90,90,105,107,87,92,103,108,90,95,90,104,99,101,103,100,95,87,116,106,101,103,87,100,106,100,103,97,109,97,111,98,102,94,113,102,112,101,116,96,112,83,109,100,88,91,108,91,95,106,110,110,91,99,98,112,103,90,94,113,114,105,82,111,98,99,105,109,88,100,106,105,100,101,94,106,104,111,97,101,99,96,103,97,96,104,101,86,101,102,112,105,112,90,105,95,95,90,101,100,105,109,92,105,102,101,100,101,95,71,88,101,103,96,97,95,97,91,93,92,99,111,95,100,98,84,102,91,104,109,110,97,101,113,103,103,91,90,103,98,98,94,87,125,98,123,104,102,88,113,91,95,99,103,106,88,87,96,112,106,109,102,104,96,107,96,97,103,106,97,109,100,102,102,94,109,108,97,100,94,105,113,103,91,113,101,99,103,97,102,102,96,113,111,91,98,104,102,95,100,97,101,94,98,95,105,99,90,104,92,106,96,93,108,105,109,101,104,93,107,92,108,85,64,102,89,104,86,92,100,98,100,99,92,99,100,103,98,106,96,94,105,101,99,102,105,102,95,97,95,99,109,105,109,109,97,97,100,91,93,109,109,92,92,100,108,104,103,93,96,101,104,82,112,114,110,103,94,98,105,106,101,110,102,97,97,91,109,103,102,95,93,106,92,103,102,99,97,79,104,94,105,92,107,102,101,100,98,100,106,100,99,103,85,95,106,113,95,100,91,103,104,97,100,101,105,103,102,90,83,97,92,99,98,111,101,98,87,110,102,103,96,98,112,103,97,93,111,92,96,95,96,102,110,94,95,102,96,98,98,99,92,96,104,91,100,76,102,122,92,100,95,104,101,101,96,95,92,71,112,101,96,97,104,103,98,107,108,104,105,97,96,99,91,106,97,108,100,109,113,95,105,106,99,92,97,99,109,100,108,100,94,92,101,89,101,105,97,98,99,104,100,101,100,97,95,106,101,92,101,84,90,101,119,95,93,99,113,96,102,103,103,98,94,87,88,94,92,97,109,89,92,92,97,102,99,91,102,90,91,101,99,97,93,95,95,99,106,88,105,98,95,93,102,103,97,101,101,97,96,104,109,94,98,92,106,106,105,105,101,101,98,91,107,101,91,99,98,106,100,92,105,117,105,105,96,106,96,102,118,94,97,101,97,98,84,105,94,104,98,98,98,81,92,112,91,106,87,91,91,90,91,104,91,99,104,97,94,105,127,97,102,103,101,91,93,94,110,88,102,113,99,110,105,113,97,104,99,110,108,111,100,103,112,99,94,86,108,97,112,106,82,96,99,94,102,100,92,98,103,109,107,93,92,99,98,101,97,101,101,102,99,102,103,86,96,102,87,98,103,94,95,98,101,103,99,108,96,101,104,98,87,101,108,94,88,101,103,112,114,100,104,94,123,103,122,101,92,103,97,99,97,109,83,98,97,98,95,101,97,97,102,92,103,94,99,105,104,101,98,106,100,105,110,97,94,112,91,102,96,112,108,107,94,100,110,101,94,125,100,100,92,91,101,104,99,105,116,102,106,101,112,98,100,106,99,95,106,101,100,99,102,100,99,96,108,105,97,102,90,102,95,104,105,92,102,105,109,101,97,100,105,109,90,81,109,92,106,103,99,99,96,101,99,106,91,97,99,102,103,98,102,96,95,107,91,89,108,94,91,107,99,111,100,112,100,97,110,102,105,100,112,109,103,98,95,105,102,104,95,102,109,105,98,102,99,93,106,109,96,95,110,105,96,106,96,105,66,106,98,106,103,107,79,103,95,102,91,94,98,112,65,102,94,92,112,95,97,99,110,95,104,103,101,97,106,95,92,104,89,85,103,96,85,96,91,95,103,90,111,98,91,102,79,90,83,96,105,108,103,88,95,92,102,107,103,96,97,91,100,98,118,106,87,99,104,96,84,98,98,98,127,95,94,94,97,102,100,96,99,94,88,116,101,98,100,99,99,105,95,87,90,96,92,103,105,106,107,105,101,77,104,95,110,99,110,106,86,99,100,95,94,91,92,81,95,96,102,92,101,93,126,104,97,106,87,101,101,77,75,81,108,59,102,95,101,105,100,78,101,95,97,96,101,93,107,102,97,88,93,93,106,99,84,91,109,102,107,99,98,88,96,106,96,107,105,96,102,98,102,101,91,102,97,102,90,90,80,90,120,108,88,100,96,111,98,108,95,94,109,105,94,98,104,89,93,111,100,94,84,97,99,97,92,93,93,109,96,98,99,87,106,97,98,106,93,96,99,90,103,109,105,96,120,105,95,93,106,95,99,103,60,98,96,95,90,99,91,88,100,100,105,107,91,101,109,132,98,107,109,103,107,95,101,93,102,102,86,96,92,92,91,100,100,95,103,98,102,97,105,87,107,108,82,99,88,94,99,90,105,80,108,107,91,63,113,102,96,100,96,92,103,93,105,100,93,110,97,97,110,98,95,105,106,92,93,96,96,90,88,95,96,98,109,87,95,97,97,104,95,102,95,100,88,105,98,105,97,99,81,91,102,90,91,95,101,93,98,96,78,96,92,104,97,103,95,92,113,98,115,105,105,106,104,95,90,102,102,95,101,96,101,102,107,95,104,106,87,127,92,90,99,93,95,101,101,101,109,96,101,104,105,100,108,103,105,94,101,92,99,98,110,109,96,96,98,89,106,93,63,104,96,94,96,103,90,102,98,105,103,91,92,108,97,98,110,103,100,71,98,97,104,99,98,105,100,100,111,80,100,99,81,106,95,94,105,92,93,93,90,102,94,104,98,95,97,103,92,109,101,94,83,91,98,104,86,89,103,86,100,108,95,100,94,83,92,103,98,96,99,98,101,97,95,101,90,101,98,92,99,92,99,99,108,97,102,101,96,103,98,101,108,105,97,100,91,103,103,103,109,98,94,88,109,94,91,115,99,102,98,103,97,96,96,99,83,98,86,100,100,97,97,95,103,89,101,95,102,101,99,98,93,101,96,100,94,88,113,90,110,97,92,101,98,106,95,93,87,103,83,109,94,97,101,106,88,103,91,108,99,77,99,89,113,107,95,101,97,113,107,101,101,111,91,93,88,81,108,109,98,92,99,93,96,109,91,87,97,102,87,100,98,98,112,92,90,104,99,100,95,90,106,99,77,87,110,97,92,87,93,96,104,87,94,92,104,92,118,92,102,98,100,100,91,107,105,105,91,98,98,100,102,105,91,99,84,105,100,102,98,100,98,105,105,102,94,104,90,97,98,91,102,94,106,113,101,95,110,84,98,90,100,104,90,95,76,95,99,107,96,91,105,76,93,91,85,86,91,94,87,92,80,96,103,99,91,107,92,103,98,99,104,120,91,101,96,97,106,100,99,101,95,98,90,92,97,87,95,96,90,111,90,105,96,98,108,91,102,82,94,94,93,95,97,105,108,95,109,97,94,102,115,95,100,97,107,98,93,96,98,100,96,95,91,99,107,87,99,102,99,102,105,87,97,98,95,102,97,116,82,98,99,112,105,93,86,100,105,85,93,87,100,97,97,105,104,109,103,88,92,105,104,109,90,104,106,99,116,94,97,100,99,106,92,95,92,98,99,96,102,98,107,95,95,100,89,96,98,97,104,106,86,107,91,100,99,101,108,107,94,101,83,95,95,99,92,105,93,101,112,98,104,91,94,105,90,99,106,92,91,91,81,108,106,106,102,101,101,96,97,116,96,93,105,83,100,94,92,103,100,100,94,91,109,95,98,96,103,99,106,81,104,101,109,113,95,101,92,114,101,100,93,105,107,100,102,99,100,107,95,96,100,95,97,95,110,97,93,100,94,95,106,103,86,95,101,91,94,103,104,104,93,113,99,97,101,90,93,110,102,88,93,105,98,108,99,101,91,107,98,93,94,100,99,97,104,107,98,100,102,84,82,85,93,92,105,108,98,114,96,100,94,99,106,95,101,95,106,93,89,94,84,108,100,96,94,109,107,93,96,96,95,102,102,101,110,96,98,86,98,99,116,104,98,92,100,125,102,120,102,95,113,99,109,94,87,100,112,103,95,109,107,90,99,99,92,97,102,95,103,105,92,89,94,103,111,104,93,95,95,92,96,109,104,127,94,91,97,98,109,96,95,102,86,101,111,102,96,102,98,98,90,91,101,87,101,102,92,76,96,87,109,80,102,89,98,87,101,101,102,100,99,92,103,101,95,100,92,101,97,107,105,79,122,100,101,108,103,94,98,96,89,100,94,97,104,117,93,95,94,99,112,96,96,83,101,109,90,110,84,104,92,99,106,84,108,104,86,108,87,85, +718.6452,112,93,88,92,93,110,93,101,98,102,97,88,84,97,99,90,111,103,96,84,103,97,113,105,92,93,96,102,95,101,106,91,101,90,111,92,110,94,101,96,102,97,93,98,86,99,101,95,96,104,109,101,106,90,99,93,97,106,81,85,107,85,96,88,105,99,98,97,97,95,104,91,93,100,91,100,109,88,108,97,90,106,95,98,98,101,91,97,91,100,82,87,113,95,94,105,96,83,102,101,101,110,89,87,92,102,92,89,96,101,96,95,95,93,97,92,101,107,115,95,92,94,96,104,110,102,106,95,77,80,110,101,94,100,99,94,91,110,108,110,97,111,97,91,106,100,85,91,85,99,99,122,100,87,89,90,105,109,95,101,99,102,82,106,106,91,102,101,94,91,108,105,89,92,103,93,115,100,94,92,91,88,93,96,64,109,92,103,99,104,102,112,101,105,94,101,102,94,104,89,76,98,82,112,102,106,81,99,98,100,96,95,100,104,102,102,87,88,78,98,94,103,103,107,103,104,100,106,84,91,86,98,112,103,103,105,101,95,98,104,93,90,109,106,95,88,96,96,108,102,95,108,105,92,94,100,99,94,95,105,94,95,88,100,91,101,89,97,96,98,99,94,110,97,92,105,94,102,101,98,90,103,92,86,95,99,101,94,101,93,76,99,103,101,92,103,97,92,90,96,81,111,99,95,89,113,107,111,90,99,102,98,82,93,103,100,121,77,109,92,103,87,101,95,90,101,87,83,103,95,108,86,96,97,92,106,106,113,82,99,98,108,95,96,95,90,107,103,109,106,88,91,100,104,91,102,104,102,99,104,101,107,104,88,100,101,92,90,98,98,100,100,101,91,103,99,97,94,106,104,85,100,95,93,93,81,86,100,102,94,95,79,110,104,87,98,88,95,100,107,97,106,106,91,93,94,91,115,103,105,98,101,99,80,105,109,105,97,102,94,95,91,88,117,104,92,99,97,103,105,140,99,97,99,94,109,98,105,105,91,97,107,106,88,100,95,103,93,101,112,101,86,91,113,103,97,99,87,102,103,87,104,95,95,102,97,101,106,115,105,106,105,101,96,77,94,78,105,79,90,104,109,102,84,90,105,107,100,96,96,104,109,99,104,95,110,82,99,99,65,109,100,102,99,94,97,80,93,98,102,98,100,93,107,105,105,110,94,90,95,92,102,80,97,112,88,106,95,92,94,104,93,111,94,93,104,89,83,104,98,104,99,98,99,104,107,112,98,67,95,101,99,94,94,102,104,95,93,94,98,103,91,103,89,98,92,111,105,96,93,86,97,115,99,83,96,86,100,87,98,107,87,107,95,96,100,97,88,101,89,105,87,90,97,105,108,102,105,109,103,99,100,96,95,99,94,95,93,100,95,105,96,100,111,102,96,114,78,102,101,98,99,107,93,107,109,101,112,97,91,106,90,86,95,87,91,89,95,102,96,103,97,101,86,98,90,102,98,74,102,91,94,105,99,97,101,104,98,97,101,105,94,97,101,88,98,98,101,116,88,100,98,108,99,96,88,97,93,103,109,90,108,107,96,94,93,88,105,103,100,94,106,106,95,104,95,90,106,97,98,98,96,108,102,108,104,105,105,94,101,99,99,94,95,84,94,87,106,95,94,91,98,107,99,96,102,99,112,98,112,99,99,102,97,105,95,99,98,109,101,100,102,97,103,91,101,106,83,99,91,96,104,100,102,104,101,94,92,120,92,93,100,100,88,96,104,99,94,107,63,97,93,98,108,94,104,95,87,99,91,98,104,110,93,86,112,96,103,94,107,106,112,94,110,101,102,91,79,101,95,99,96,88,92,106,105,100,101,102,105,90,93,98,87,110,102,97,100,105,99,92,99,98,100,98,98,98,99,108,105,97,95,98,96,99,96,107,93,94,92,87,81,96,102,94,80,91,108,95,91,99,95,99,105,95,97,117,108,86,92,109,95,104,95,97,89,101,92,98,106,103,102,108,101,110,99,98,90,105,97,110,105,90,116,106,103,100,102,90,105,106,99,109,95,100,95,102,113,95,95,94,102,92,102,102,105,97,92,90,92,110,99,109,85,96,100,102,111,107,110,106,101,99,90,84,106,94,96,104,96,95,99,99,106,97,100,98,93,95,105,103,86,98,97,99,101,99,92,104,87,106,99,103,105,98,89,104,102,113,109,87,112,96,92,97,102,101,103,84,99,96,101,101,102,87,87,107,100,91,86,104,105,99,109,100,106,93,92,97,97,95,99,98,95,69,98,83,102,103,100,109,103,96,105,96,102,95,90,83,109,84,103,104,98,91,114,99,92,102,116,126,95,101,132,113,103,79,109,92,105,98,101,99,97,105,90,98,99,98,86,109,101,91,91,105,92,96,97,93,96,105,92,99,91,99,95,110,87,108,89,99,108,111,98,96,104,83,99,95,113,93,100,108,96,91,95,87,99,90,89,88,91,92,106,96,111,92,91,110,101,101,95,94,92,83,97,102,96,89,106,102,103,106,102,104,103,89,96,89,105,96,103,96,86,103,100,93,99,98,101,107,96,97,103,91,102,105,101,102,89,99,106,105,91,90,106,105,91,109,91,100,99,95,103,73,89,120,83,83,90,101,98,109,95,111,92,93,95,115,101,101,78,119,94,103,100,103,94,86,95,101,103,96,97,106,101,88,99,96,90,100,100,98,101,111,90,103,83,79,101,112,103,96,103,97,95,98,85,94,96,101,102,93,102,99,104,91,130,113,107,100,112,90,96,105,105,109,101,99,84,104,107,108,91,101,98,89,100,95,104,97,91,101,106,91,95,103,93,103,102,103,88,104,115,95,91,110,87,84,84,87,106,97,95,90,83,106,106,100,98,89,103,97,108,83,82,103,98,100,99,101,98,90,111,101,94,101,105,95,100,97,86,99,100,95,95,98,105,104,98,98,94,101,102,105,101,99,99,116,89,99,92,86,104,98,89,109,102,120,101,98,91,100,73,104,95,95,92,99,100,109,98,93,106,104,104,100,94,85,112,89,89,98,96,102,114,97,105,98,108,107,99,94,100,90,89,105,101,102,91,107,87,93,92,91,93,104,99,100,111,114,108,93,101,99,88,96,97,98,96,92,92,104,104,105,96,97,108,93,95,103,92,97,106,95,96,94,89,96,98,92,100,97,103,106,107,100,95,105,102,88,95,93,106,90,99,108,108,98,95,96,102,92,87,93,88,95,97,100,96,99,104,92,83,97,95,110,99,120,100,96,105,99,98,100,97,99,108,98,97,88,96,105,94,86,105,100,101,101,90,93,98,93,100,99,106,102,96,94,97,97,97,120,94,104,96,102,100,105,91,84,99,93,94,98,94,105,102,97,103,94,100,102,97,98,98,94,100,103,74,96,102,92,91,109,98,92,103,110,103,97,103,91,79,97,98,109,88,105,94,99,79,87,87,99,94,101,98,84,96,106,108,99,87,95,102,90,94,97,110,100,97,101,93,91,100,99,98,114,87,111,101,84,103,87,88,87,99,96,72,114,103,103,104,113,86,109,92,97,90,99,112,102,93,107,101,97,122,99,106,96,101,98,103,121,94,95,95,87,95,94,92,88,95,111,93,103,92,95,100,84,98,98,90,98,80,93,92,121,97,94,100,108,95,97,94,99,107,93,92,97,95,98,99,97,89,105,92,106,107,101,95,107,96,91,98,103,96,100,97,98,87,100,94,105,92,94,105,106,89,74,112,96,98,92,91,94,94,101,92,92,112,88,89,101,89,102,103,98,98,90,96,90,92,100,85,94,88,102,85,107,99,92,104,104,94,101,90,95,96,101,92,98,98,95,84,86,93,89,101,94,100,97,98,102,99,99,95,97,100,109,103,103,112,75,101,94,92,100,103,103,83,99,91,105,100,115,100,100,100,91,102,106,107,98,105,95,92,100,94,88,93,107,98,106,88,87,95,106,98,91,105,90,103,95,108,96,89,87,104,99,94,115,99,91,90,105,99,96,86,101,95,105,105,95,98,117,94,96,100,110,92,95,104,104,95,100,97,108,91,96,109,104,94,92,95,104,104,98,101,95,98,84,86,78,87,109,96,91,99,88,95,99,107,115,105,102,94,97,103,95,88,99,97,105,94,96,105,92,89,110,93,95,98,91,92,103,99,120,100,81,102,99,96,91,91,95,100,103,100,95,95,106,99,106,91,90,97,94,121,113,96,99,94,110,93,85,85,91,96,94,93,91,93,93,84,90,106,87,94,97,101,108,97,101,83,103,95,96,101,103,90,100,102,98,97,93,99,98,102,106,88,89,91,99,98,91,102,79,97,92,90,96,106,99,95,108,91,90,95,98,72,111,104,103,102,103,104,105,97,101,93,87,109,102,98,108,90,82,115,110,105,101,104,98,96,96,96,107,113,92,93,91,103,87,92,98,117,88,88,112,92,98,103,106,89,99,98,99,109,99,85,91,109,116,89,96,93,103,96,88,97,98,88,94,104,100,100,98,113,81,104,94,97,102,95,90,105,91,91,89,87,103,89,101,91,99,101,83,100,83,113,85,88,86,93,101,81,100,100,92,103,108,97,99,102,114,98,99,102,96,92,103,108,96,83,92,87,99,92,91,104,95,99,91,91,94,103,104,102,93,104,104,95,99,97,112,101,107,94,98,94,101,88,87,105,93,105,101,97,106,98,96,93,101,95,101,112,106,89,99,99,98,100,90,104,104,81,92,100,93,113,102,83,79,106,111,104,106,102,112,73,105,113,87,91,101,101,107,91,96,102,100,112,105,105,82,101,105,112,103,100,116,97,99,95,112,97,109,92,102,103,92,90,104,99,88,95,86,95,107,113,91,102,104,91,88,94,94,85,111,91,94,92,124,90,99,102,104,105,108,85,101,101,83,93,96,108,95,102, +718.78662,95,116,101,113,90,101,98,81,98,95,86,94,101,95,105,108,96,97,92,102,106,92,93,101,92,97,95,92,99,105,97,100,103,98,102,102,95,98,98,91,99,102,95,100,89,104,116,109,100,104,101,100,93,93,99,93,112,113,97,92,89,79,90,116,94,100,100,97,97,91,85,95,93,86,97,118,94,99,97,94,103,90,110,70,117,94,79,122,91,100,106,99,104,102,109,95,98,96,102,106,99,108,93,114,93,100,96,92,92,84,101,95,102,87,94,97,102,96,104,87,100,110,101,104,108,103,113,94,92,112,98,105,82,105,95,101,105,104,87,108,102,93,101,92,97,90,108,94,104,95,94,101,105,92,93,100,95,62,102,91,95,91,104,104,110,99,98,71,100,97,95,101,91,97,89,108,83,105,97,87,98,95,98,100,103,103,100,98,95,88,100,101,104,97,86,103,103,93,100,85,99,91,98,94,96,98,100,107,107,104,101,92,101,99,91,102,110,105,104,94,88,97,93,95,93,104,69,109,102,106,92,110,95,88,103,111,91,88,103,94,100,97,112,116,96,103,101,97,92,99,100,95,92,87,86,106,100,99,101,98,76,96,105,96,90,106,101,104,107,100,87,93,92,103,95,107,95,105,96,90,118,93,101,99,90,97,103,104,90,102,98,112,101,94,104,125,95,93,104,92,97,97,109,106,99,97,100,103,83,88,90,110,101,104,103,98,95,94,108,94,107,107,87,93,106,93,98,93,104,103,95,112,103,100,87,84,104,99,111,100,91,110,97,98,97,104,97,108,128,106,99,99,98,96,100,96,96,93,96,88,95,95,109,89,95,90,94,95,94,104,92,93,101,100,104,99,97,107,90,108,94,96,89,105,101,86,94,100,102,96,108,83,99,117,93,105,91,97,104,104,100,91,111,94,99,96,105,95,102,91,98,104,100,92,94,101,94,93,102,98,71,105,105,108,110,102,85,96,84,100,99,91,92,93,102,97,96,116,86,102,98,102,102,106,93,95,95,110,90,109,96,110,92,94,98,81,99,104,98,99,109,102,110,95,86,104,108,93,113,97,96,99,97,87,82,99,103,101,126,101,100,109,113,98,103,104,104,106,103,76,103,103,93,109,88,101,87,105,94,96,97,96,87,133,100,101,91,118,94,93,104,107,97,101,76,98,101,101,94,91,101,111,87,85,100,86,109,95,88,103,111,106,98,101,96,107,106,95,98,91,98,115,101,100,102,96,103,78,94,99,100,100,98,91,95,91,112,96,87,93,108,91,100,101,91,93,99,97,95,100,93,98,100,94,112,96,105,106,95,94,97,92,108,93,88,111,97,105,101,90,97,97,92,107,103,91,92,97,86,100,96,90,98,90,103,100,98,116,102,103,109,91,92,101,92,96,76,80,97,103,95,104,95,96,106,84,101,115,114,96,95,105,100,113,90,100,98,91,94,93,97,97,105,103,100,98,90,86,92,118,91,104,99,101,97,98,100,104,105,101,98,86,106,108,105,118,100,93,132,97,96,114,99,93,92,107,94,86,106,86,103,97,109,99,86,80,96,86,120,98,102,90,100,93,112,93,89,93,99,90,99,97,87,105,97,103,86,94,90,105,92,101,98,96,91,96,92,104,102,91,99,93,103,84,107,97,109,105,97,113,102,100,98,100,103,96,105,100,103,99,101,95,94,96,95,92,110,98,107,114,106,98,92,96,95,107,103,87,90,95,106,83,97,104,91,113,103,102,96,97,103,113,99,95,97,95,103,96,87,85,97,104,94,103,118,97,98,101,99,113,96,97,108,99,89,108,97,100,106,102,96,91,94,101,111,101,101,86,104,99,93,89,98,101,105,105,105,96,118,106,107,96,117,106,98,102,102,97,98,99,104,109,103,90,105,104,107,103,102,91,95,100,108,79,110,97,100,85,87,95,105,104,100,99,94,98,96,95,100,85,110,93,97,94,97,92,108,100,99,111,104,107,105,96,97,97,109,82,94,90,91,99,105,115,83,99,102,114,105,95,108,108,94,92,115,90,110,99,88,98,88,108,103,96,100,90,85,97,100,99,105,107,97,108,105,96,94,91,95,98,106,107,108,102,101,92,98,95,96,100,100,93,101,104,90,95,104,87,111,92,106,90,98,94,91,87,110,89,100,102,97,106,99,98,103,95,99,94,94,95,109,91,116,91,92,102,104,95,102,101,97,96,91,70,93,112,105,99,85,93,98,92,100,98,82,93,104,91,94,106,106,103,95,114,108,93,109,95,92,91,107,97,102,91,96,103,104,105,106,94,89,103,95,99,104,92,91,92,93,93,101,94,104,91,100,96,95,103,102,101,107,103,95,97,94,93,97,102,98,110,101,108,96,90,99,94,109,109,97,110,106,106,107,99,92,102,95,94,102,103,104,97,97,102,97,106,96,105,101,98,88,96,97,95,88,92,110,102,99,93,105,91,94,105,91,96,101,96,108,100,91,96,102,94,94,105,98,97,100,92,94,91,94,99,107,101,95,96,100,94,83,114,116,98,85,97,105,98,102,107,108,94,102,100,105,112,87,94,106,97,106,102,108,100,106,114,94,97,95,101,113,72,95,115,106,107,73,98,112,106,98,90,112,100,109,106,104,113,97,110,105,97,106,95,97,103,98,102,103,113,104,91,102,105,94,98,87,92,90,103,101,96,101,96,100,104,107,97,95,100,90,103,100,105,89,105,99,89,96,95,95,102,96,98,120,95,106,104,99,98,95,97,105,98,99,103,104,87,94,105,99,102,110,115,91,100,106,95,109,100,85,94,100,113,102,100,98,92,106,99,95,101,96,95,116,100,100,111,75,103,101,85,101,92,91,104,102,102,93,111,100,106,106,99,95,89,88,95,105,103,92,107,96,109,89,90,94,102,104,116,100,94,109,108,102,101,93,91,99,97,97,100,97,101,85,103,95,99,102,104,98,103,91,105,93,99,104,108,88,108,108,101,99,89,105,113,99,101,94,100,101,101,105,99,104,98,111,102,109,111,104,86,96,109,105,103,97,89,107,99,81,102,98,109,106,106,95,93,90,104,91,104,90,94,91,88,103,98,102,97,95,101,103,99,105,95,106,114,91,95,92,98,88,98,91,94,96,103,93,105,93,88,109,109,93,92,101,102,91,101,102,101,92,100,106,104,99,99,98,109,97,105,101,96,95,115,101,103,104,119,94,89,95,93,100,91,95,112,103,103,98,99,87,82,93,105,112,84,86,94,96,98,95,95,102,96,94,108,100,105,81,120,103,104,100,96,97,98,104,95,110,87,119,98,98,108,88,98,95,104,97,96,101,100,95,99,90,88,95,102,96,101,101,93,97,111,109,98,108,99,96,103,96,95,95,99,98,101,92,104,104,102,101,100,106,100,99,103,87,99,102,96,101,98,89,102,98,103,99,104,99,100,74,107,101,101,94,100,103,102,95,112,113,97,96,103,103,98,97,106,110,102,101,105,113,101,107,101,106,95,107,97,86,111,104,105,102,99,93,84,99,101,100,96,101,102,105,114,95,100,85,97,100,95,88,104,94,96,96,111,110,89,102,104,99,110,98,95,113,94,97,121,92,102,100,104,109,100,90,98,103,121,93,106,110,100,98,89,104,108,92,103,107,96,100,102,104,104,96,101,89,103,105,99,102,87,85,111,111,99,104,111,100,96,105,99,105,105,91,95,113,89,101,115,92,94,107,102,105,112,94,95,92,93,99,98,102,107,59,97,75,99,90,96,97,99,104,92,108,100,107,101,98,100,109,93,124,83,91,88,97,100,101,109,105,103,104,108,113,94,100,106,100,91,102,112,102,108,92,95,93,103,97,98,103,105,100,98,110,111,104,96,96,96,102,95,96,98,114,99,93,96,92,84,95,90,104,96,87,93,94,95,86,102,96,93,109,83,94,91,96,104,107,97,86,97,95,100,106,95,90,117,71,103,92,88,100,92,95,89,102,102,93,96,99,91,94,105,90,100,106,102,89,100,95,94,96,100,85,103,106,95,100,88,104,105,102,87,98,103,90,99,94,90,101,82,109,101,102,90,110,104,111,109,94,98,98,92,104,102,101,91,99,99,116,108,98,98,93,96,102,95,96,99,93,113,93,87,98,92,92,93,94,98,94,100,109,94,100,110,105,105,99,83,106,96,104,97,88,95,107,99,101,91,93,113,97,104,105,103,100,101,107,112,104,102,66,90,98,97,99,107,85,101,93,88,109,111,121,111,91,87,105,91,89,107,94,98,83,98,95,110,103,99,109,108,89,115,104,105,106,109,113,112,109,109,91,92,103,103,100,98,105,105,107,103,105,84,100,104,97,83,103,99,105,91,99,96,103,101,98,101,102,112,94,96,95,95,106,89,101,101,104,104,104,105,111,94,115,78,91,57,88,95,78,105,93,91,78,93,115,99,102,91,93,104,105,94,117,106,92,91,102,98,92,108,96,98,108,101,88,92,100,103,106,98,95,97,96,83,75,86,92,98,101,107,85,102,105,95,87,101,95,95,114,103,96,116,102,109,107,102,87,91,102,104,97,90,101,97,101,98,101,98,106,113,98,103,92,102,109,103,107,98,98,98,93,113,107,95,92,93,96,94,94,106,94,96,112,94,119,91,105,99,117,97,100,93,100,102,110,100,100,96,97,89,98,105,98,90,105,98,97,94,110,95,100,103,104,100,102,107,94,110,104,86,97,99,99,106,97,112,95,103,95,91,87,99,114,104,93,91,114,101,98,93,104,114,98,100,102,107,103,99,98,96,98,81,94,102,94,97,91,98,94,90,103,72,93,109,102,97,86,107,107,113,115,110,98,84,105,117,111,92,90,92,91,91,98,81,95,92,94,94,102,96,99,121,102,85,109,98,112,119,96,95,106,103,101,103, +718.92798,87,113,98,91,97,103,68,95,106,109,97,83,106,104,97,105,96,109,103,97,104,97,104,95,89,100,102,87,104,103,110,95,104,109,100,105,105,93,103,110,94,101,91,94,102,108,112,101,90,97,100,93,97,99,96,95,88,93,101,108,100,96,109,97,101,84,98,95,96,101,94,96,103,97,96,103,100,102,90,100,99,86,100,98,105,88,88,97,109,95,102,97,88,100,95,95,97,112,94,97,104,102,96,96,106,109,95,96,105,116,94,100,104,100,84,90,97,91,97,108,99,94,98,105,90,95,113,91,103,110,98,95,106,94,104,111,93,121,94,94,97,101,100,99,93,93,97,95,96,93,95,101,106,67,104,102,95,93,96,91,101,95,94,94,102,112,106,92,90,101,102,111,91,90,97,104,104,106,91,110,124,95,108,117,93,87,89,87,101,87,94,106,101,92,94,99,93,77,95,95,71,79,101,99,102,98,104,96,95,101,106,103,98,95,101,98,96,102,102,110,102,101,93,89,89,99,94,105,97,91,94,86,102,100,104,96,91,96,98,91,92,102,120,106,99,126,109,102,95,101,100,94,95,93,98,98,103,99,101,93,86,111,98,94,103,109,104,104,103,115,120,95,106,100,94,96,91,99,101,90,86,100,82,99,112,97,88,94,101,96,110,92,109,100,101,97,95,77,105,99,99,101,104,104,92,108,97,105,95,95,82,106,101,89,89,97,99,109,100,93,105,91,99,104,99,99,100,105,103,108,102,94,102,80,98,95,106,87,87,100,87,103,101,79,105,102,100,100,96,91,90,96,87,97,127,102,109,99,95,99,104,92,82,87,98,104,105,103,98,98,111,110,104,87,107,88,95,105,110,103,115,99,93,96,96,104,86,105,105,94,111,96,105,90,93,83,94,77,95,100,96,106,85,100,104,98,84,99,103,83,106,101,95,101,96,99,97,92,98,86,124,95,102,113,95,109,92,88,88,96,91,101,96,88,98,96,94,96,105,95,96,107,98,99,91,97,97,89,101,98,97,86,97,109,99,99,105,79,102,92,88,91,100,101,98,99,88,106,89,96,90,108,92,82,81,95,91,100,112,99,101,116,97,99,109,93,120,95,106,87,102,99,104,94,96,105,93,100,99,92,104,109,97,93,98,103,94,104,90,97,102,102,100,96,100,97,91,99,90,101,90,101,90,96,95,101,103,96,101,103,98,100,108,111,104,94,88,96,91,98,99,103,115,108,103,91,90,98,92,101,105,96,106,107,91,82,99,116,93,87,99,97,101,91,105,90,101,95,94,96,95,92,97,100,91,117,95,99,103,106,112,96,100,92,99,86,104,101,100,88,103,101,90,96,105,106,102,99,100,104,99,101,101,88,93,94,92,105,83,100,88,98,101,108,98,99,106,86,91,88,87,100,104,91,108,101,100,98,104,99,97,103,102,101,100,103,96,96,94,106,96,95,95,103,86,94,94,90,98,98,100,102,108,100,99,96,87,102,104,100,108,82,96,99,98,94,102,84,91,101,98,121,90,100,101,102,108,136,96,104,95,91,113,98,86,85,87,113,84,109,87,106,95,104,103,117,103,103,100,98,85,98,106,117,98,98,88,101,93,109,96,97,102,95,98,94,91,94,92,91,108,93,109,100,102,105,93,119,95,117,91,92,126,100,99,100,96,94,84,108,98,105,109,96,92,93,94,92,109,87,67,95,99,95,98,95,103,98,81,105,96,90,98,93,90,98,93,102,105,99,107,99,99,106,95,102,96,96,96,93,95,99,102,104,98,95,91,96,105,101,102,98,98,101,79,94,91,93,105,92,87,94,95,103,103,104,94,88,66,111,91,104,110,72,101,118,116,109,100,100,98,108,74,101,70,102,94,93,101,111,103,109,105,109,101,91,97,100,102,106,92,99,93,91,90,95,107,102,95,97,108,104,96,100,104,105,104,102,98,91,104,97,98,104,104,97,89,87,99,95,103,99,98,105,103,93,105,114,97,96,101,119,101,106,97,97,93,110,103,87,102,103,108,85,98,92,109,95,95,104,98,102,98,102,106,101,105,102,98,86,85,96,100,99,94,101,98,80,104,102,102,95,112,107,94,98,94,106,117,94,99,100,97,102,96,90,106,97,105,108,108,94,90,104,96,92,99,109,107,101,93,91,92,96,97,112,106,83,108,99,107,103,89,98,88,110,96,105,99,101,110,105,96,102,84,96,97,98,96,87,95,105,95,84,97,99,93,110,112,116,88,112,79,107,89,91,97,91,103,102,100,88,99,96,93,105,99,101,83,92,78,94,102,97,84,98,105,109,97,90,97,107,96,90,101,95,93,100,109,96,101,101,96,107,107,69,105,96,102,94,100,101,100,91,104,105,98,87,100,91,101,91,100,112,95,99,97,112,101,100,88,106,105,86,90,97,88,96,93,101,92,103,90,90,99,95,95,103,101,96,109,91,109,94,120,93,86,92,110,108,89,104,94,104,106,104,95,109,76,95,102,97,99,105,99,100,99,91,111,93,102,101,105,104,100,102,99,96,101,105,105,117,104,117,87,105,104,107,102,100,100,105,131,104,121,102,98,92,104,95,86,97,99,116,95,123,100,111,122,100,109,110,117,93,108,109,96,99,93,97,103,97,105,113,108,113,108,102,102,100,101,113,103,103,87,88,101,99,110,98,102,95,101,97,86,90,107,103,101,107,103,104,97,119,103,115,99,96,94,105,96,91,99,102,111,103,103,105,101,63,98,96,108,102,104,113,97,96,108,98,91,93,90,100,111,91,99,98,103,106,92,96,97,117,95,104,97,87,100,109,96,108,95,105,96,103,80,92,93,97,92,111,119,108,102,90,106,110,102,101,99,93,118,96,103,107,92,102,102,104,100,97,94,109,80,94,89,96,103,113,100,102,88,101,100,103,95,104,106,106,91,110,96,101,96,95,105,108,103,111,103,105,93,95,102,107,101,121,93,63,91,107,98,93,107,103,111,86,89,98,113,95,107,102,101,103,106,95,98,95,103,115,98,94,113,100,100,100,106,106,105,108,110,103,112,107,104,103,102,106,105,107,103,97,96,96,102,108,98,97,95,110,110,100,108,105,105,78,87,91,110,105,102,102,100,102,100,98,95,104,104,101,103,99,91,106,94,95,105,99,89,83,107,100,121,113,106,100,101,113,105,103,104,102,99,96,103,103,118,99,105,99,101,91,99,98,92,93,98,102,85,98,105,72,73,99,111,78,99,99,103,100,109,91,107,103,103,103,102,89,113,102,109,102,97,101,98,103,96,89,96,107,99,88,104,99,102,95,109,111,108,104,89,106,88,97,84,90,101,89,98,108,89,105,109,109,89,102,100,100,105,68,103,89,99,101,113,106,103,95,109,94,94,100,100,106,110,119,95,97,108,100,107,111,92,97,91,113,92,101,97,98,99,100,108,106,101,94,105,74,105,103,103,87,120,105,116,106,104,71,101,100,111,92,88,90,104,106,111,99,104,89,105,108,94,98,99,93,98,101,84,104,105,101,109,105,105,105,99,104,100,106,106,103,96,107,96,95,100,113,101,104,85,105,110,91,111,107,100,92,97,101,89,104,115,123,103,101,93,94,89,102,99,102,110,101,103,110,105,120,110,106,103,107,103,79,100,104,95,105,91,101,105,112,106,91,111,101,94,105,100,85,101,109,93,109,111,97,107,107,110,106,110,109,109,105,98,112,102,99,107,103,83,94,109,95,102,87,93,105,105,90,85,91,104,94,90,105,103,106,89,98,101,109,106,95,102,93,107,95,93,92,98,103,95,99,109,106,101,109,108,93,101,105,107,97,105,100,107,108,99,106,96,113,105,99,108,95,88,106,96,101,112,91,99,104,102,105,98,101,97,92,92,89,108,94,109,98,102,93,103,95,90,97,102,85,103,101,99,110,112,100,108,98,59,109,99,104,99,99,104,105,94,104,88,87,98,103,92,101,111,91,113,97,100,97,100,96,91,98,108,108,100,97,88,79,101,102,101,107,95,98,97,103,106,81,107,104,111,107,109,105,94,98,97,100,103,98,116,96,103,91,112,98,97,100,93,101,99,96,94,99,111,104,106,108,104,104,100,100,93,93,96,112,96,101,101,89,101,99,102,91,103,102,99,104,93,80,104,99,103,99,96,98,99,89,108,102,115,98,92,97,88,105,100,95,97,99,113,101,105,91,100,101,110,111,104,106,96,109,94,99,79,92,95,100,94,115,103,101,107,88,106,100,74,100,92,100,90,100,100,102,102,105,121,93,112,111,89,110,87,106,94,99,108,105,98,106,105,103,102,105,112,98,101,95,106,100,98,99,99,95,106,86,98,90,100,98,113,99,105,108,114,109,91,101,107,101,103,106,108,100,77,99,102,117,106,95,104,104,98,107,108,78,99,98,89,101,98,106,102,97,90,105,95,99,101,105,96,96,103,99,104,102,106,92,105,104,105,102,104,99,106,110,98,99,106,113,105,108,102,95,94,110,102,103,93,104,95,95,87,122,90,100,92,96,104,104,98,94,96,97,106,101,112,95,96,102,102,102,98,108,110,96,100,97,102,113,100,103,95,102,100,119,105,102,113,88,97,117,104,82,72,92,91,111,94,112,102,109,95,94,114,77,104,104,100,103,101,125,98,97,101,93,100,104,95,86,89,99,106,106,102,100,93,93,112,91,99,99,103,96,109,94,96,130,102,111,105,95,100,96,94,91,99,87,101,94,96,82,102,94,96,101,91,95,92,104,100,103,109,98,106,98,104,97,97,93,104,95,104,102,104,106,88,100,83,103,88,112,98,65,90,116,110,96,100,107,105,100,100,93,88,94,98,100,105,101,105,100,93,103,93,104,116,113,84,98,101,85,107,103,93,96,114,96,110,98,96,77, +719.06934,104,105,79,86,97,115,106,111,96,97,105,108,101,97,104,102,91,92,113,103,101,104,87,102,89,97,99,98,105,103,86,111,102,121,95,102,98,105,106,100,98,101,103,102,101,110,107,109,94,101,105,96,97,96,103,71,99,103,112,105,104,99,97,99,104,114,94,100,97,105,106,102,107,100,111,103,99,92,103,103,113,99,100,106,101,97,99,109,107,96,110,102,98,102,112,100,107,93,108,113,64,95,100,108,117,94,96,96,108,87,77,114,103,105,110,99,90,98,105,98,98,98,101,96,107,102,100,111,103,111,90,102,99,97,76,107,97,94,93,114,94,96,105,99,96,114,95,99,85,99,86,101,103,101,102,97,84,94,106,92,114,101,86,104,92,121,95,87,96,101,113,113,96,108,95,95,100,96,108,98,105,106,100,103,103,97,107,85,109,107,93,105,101,91,101,95,97,98,103,113,109,101,97,104,107,80,101,98,109,97,101,109,109,101,110,99,100,112,83,100,99,100,103,95,100,105,99,71,106,110,113,105,97,97,107,102,95,81,102,104,91,98,111,102,102,101,106,109,105,92,103,107,97,98,89,115,79,103,102,112,104,99,100,96,90,106,96,109,109,97,103,103,100,108,105,100,99,107,98,105,102,105,110,98,95,107,101,76,106,118,78,121,100,111,111,114,98,98,96,103,105,91,110,98,97,104,114,107,105,108,94,111,101,96,109,107,97,107,111,96,88,97,103,123,103,100,102,99,105,94,95,97,101,122,100,93,104,99,93,111,97,98,103,93,87,91,101,106,104,110,92,95,110,100,109,103,105,104,95,106,90,109,109,102,101,110,95,101,99,101,91,96,101,99,108,101,99,111,99,99,93,94,98,101,99,81,102,93,98,105,99,93,92,105,107,104,90,92,105,105,98,118,104,99,101,68,104,106,108,100,93,96,103,101,107,101,94,80,105,101,110,93,87,112,103,100,95,113,102,125,100,114,98,104,97,98,98,94,110,106,101,98,92,107,106,107,84,115,89,105,101,97,106,107,102,104,119,102,95,102,97,83,94,91,104,102,100,122,93,97,90,92,100,99,99,79,99,102,112,88,104,109,101,95,102,105,112,92,121,108,111,101,95,91,96,94,113,109,107,97,93,94,103,104,91,88,106,90,108,88,101,95,104,98,94,100,103,106,101,102,91,95,93,90,87,99,105,103,101,100,92,102,101,108,94,104,94,89,106,108,108,109,83,106,108,97,113,97,104,103,107,104,105,100,91,101,108,100,95,95,99,98,99,98,95,106,103,97,102,104,98,105,91,96,93,93,92,79,109,114,109,98,97,103,95,103,98,109,105,97,109,95,106,87,102,102,105,99,99,105,98,113,103,101,87,101,115,100,127,94,96,95,103,95,83,99,97,96,98,99,103,95,91,110,97,103,92,104,98,94,100,99,101,109,100,100,100,94,102,128,106,104,108,102,94,93,97,106,98,101,93,103,96,109,96,99,106,82,103,99,105,105,97,113,101,94,109,91,91,102,106,106,95,99,104,96,108,100,101,107,105,95,107,72,102,89,87,99,95,111,90,104,103,101,88,106,104,101,99,99,101,101,105,90,100,98,104,103,109,106,104,92,103,84,96,96,87,99,91,108,69,88,89,105,94,90,93,94,98,119,105,102,100,112,111,89,91,93,103,96,102,99,109,98,105,109,97,95,107,94,95,113,93,102,102,89,93,96,95,95,98,112,98,102,93,94,114,89,98,112,100,101,114,100,89,98,91,107,95,90,104,91,118,98,96,107,101,96,105,104,98,113,103,105,115,95,117,106,87,107,101,104,112,97,110,98,100,95,97,99,108,101,104,102,109,103,101,98,115,89,101,93,98,82,104,103,106,101,106,109,89,95,115,97,104,105,98,96,99,95,103,106,110,100,86,83,89,93,105,96,95,86,101,104,95,104,110,102,105,100,103,126,101,100,109,112,96,103,105,103,104,95,92,100,92,89,99,106,112,82,100,95,104,91,110,96,111,112,87,96,114,107,108,112,105,85,86,94,112,91,99,96,97,97,107,93,110,96,91,91,98,106,94,106,105,104,94,98,90,97,114,110,81,106,98,92,98,104,95,120,98,90,101,110,98,103,97,102,104,99,96,91,107,93,95,106,102,99,105,100,105,103,128,96,112,104,102,90,101,113,107,100,83,101,106,99,100,99,104,107,100,109,103,115,108,100,100,101,103,98,103,110,87,112,115,102,104,104,96,99,114,96,111,104,94,96,109,103,92,101,106,97,99,89,108,95,86,96,95,109,95,92,97,100,102,99,96,95,99,100,99,111,97,85,110,91,110,92,97,100,93,102,108,103,103,108,93,112,102,106,91,115,96,102,99,100,114,90,109,107,118,112,108,86,110,93,105,107,98,104,94,100,91,106,97,98,101,103,105,100,106,105,99,70,98,96,112,107,101,104,105,88,90,101,104,109,91,97,110,102,99,99,69,91,83,102,103,100,109,100,95,87,91,117,91,110,100,98,97,99,103,107,91,95,58,83,100,91,104,102,93,98,83,98,104,101,99,114,105,99,66,102,91,104,105,94,105,87,99,87,110,99,97,111,92,100,104,105,97,115,116,96,98,110,100,106,106,97,116,120,107,95,91,102,96,101,97,99,99,87,93,94,108,101,92,100,107,98,101,92,94,101,92,97,104,99,107,96,105,110,81,95,103,107,107,97,94,92,99,104,98,103,107,109,94,96,93,109,111,116,87,93,112,110,97,102,90,114,100,105,104,110,110,101,104,98,108,115,106,95,97,105,98,106,97,99,88,81,93,92,100,90,97,96,88,91,100,95,94,103,95,106,85,92,92,83,89,104,93,103,96,108,94,101,116,84,100,96,97,98,107,99,107,112,103,92,111,110,108,106,84,99,101,88,111,104,106,98,101,94,98,97,105,95,102,103,94,96,100,103,101,93,110,81,106,96,99,94,100,97,105,107,106,91,101,101,101,104,103,102,91,96,108,109,113,86,94,98,85,110,113,96,107,94,107,94,106,85,108,90,91,100,110,94,102,98,102,103,104,93,99,91,94,92,88,96,94,109,98,87,96,108,105,102,97,87,88,103,96,97,103,103,107,98,97,105,99,117,97,96,88,101,96,98,106,91,100,103,100,98,94,93,101,101,105,80,105,103,101,99,97,108,95,101,91,97,95,93,101,79,97,109,97,96,107,84,92,117,100,107,97,109,84,101,104,101,102,109,107,97,95,100,102,104,113,80,82,100,91,88,98,89,95,101,103,107,103,99,109,85,87,81,105,85,102,100,116,97,106,94,105,89,101,105,99,90,94,94,100,91,106,106,95,100,104,97,94,102,114,102,111,96,104,94,95,92,91,92,101,98,99,107,100,103,98,113,98,99,103,95,96,106,99,103,99,88,96,97,105,95,105,93,95,92,109,100,104,92,93,92,105,98,97,90,113,98,97,108,90,105,101,94,101,96,86,95,94,92,102,102,105,113,93,110,92,95,97,97,95,91,107,109,96,109,91,108,103,98,93,92,92,95,96,95,105,105,95,100,99,102,101,96,100,105,96,95,61,94,103,89,90,98,97,101,104,98,97,103,102,100,103,93,100,108,100,101,101,101,89,123,102,106,96,96,94,89,104,98,92,113,94,95,106,109,100,96,93,103,106,96,104,99,92,67,88,91,93,97,94,105,101,100,91,96,86,101,95,101,103,92,106,93,99,104,107,87,112,99,102,97,110,99,113,101,98,92,105,96,109,93,102,86,100,97,97,104,104,95,101,113,99,97,101,113,105,110,89,105,107,110,110,100,85,103,102,92,98,108,101,94,84,110,75,104,105,102,105,94,105,99,98,94,115,100,105,117,88,89,95,90,96,105,85,99,102,91,96,90,97,95,101,87,110,98,104,104,91,103,88,84,107,109,102,85,90,99,104,103,94,90,80,108,108,101,101,113,92,101,87,101,97,101,97,95,99,98,102,87,103,103,95,122,88,94,87,91,97,86,104,101,93,100,105,100,96,79,101,93,91,87,109,98,82,97,101,100,117,109,105,87,103,101,109,98,96,79,97,96,106,87,101,111,97,105,104,108,99,106,92,100,90,104,92,104,104,108,91,94,108,100,113,99,90,136,100,86,94,108,98,95,101,91,100,101,105,107,105,110,98,96,103,98,99,101,95,106,86,106,84,101,121,96,112,105,105,105,119,102,98,99,99,102,110,104,88,81,102,102,93,94,95,95,98,101,93,102,99,96,108,110,114,91,127,96,92,81,99,98,101,99,97,104,89,90,97,103,97,106,101,104,100,104,96,98,97,109,93,100,98,87,111,94,108,99,107,105,101,93,91,88,106,115,109,101,105,109,94,108,94,88,98,91,102,91,94,103,100,102,95,104,96,98,97,99,105,94,86,103,98,101,93,102,109,67,101,95,94,100,106,99,99,87,101,98,99,86,100,107,99,97,99,92,93,98,108,105,101,102,115,91,98,92,96,88,103,121,101,99,111,98,91,84,100,121,98,108,84,95,97,112,101,108,109,79,102,114,98,103,98,121,101,111,119,99,97,95,109,108,103,90,107,93,122,96,103,104,97,106,120,106,105,106,101,101,118,94,98,99,95,99,87,99,99,100,98,71,101,92,104,106,93,89,88,104,107,105,94,95,100,89,92,102,96,103,103,77,114,96,93,100,100,108,106,88,110,96,94,92,109,103,81,95,108,99,107,107,105,103,111,91,117,108,106,108,87,106,101,109,106,101,101,105,97,99,112,96,96,89,97,102,100,106,108,97,101,104,75,101,106,101,110,94,98,114,92,91,90,113,101,101,105,94,102,95,101,102,87,110,93,95,96,106,80,97,104,100,88,98,109,98,96,93,105,120,99,94,106,106,95,84, +719.21069,86,70,96,95,94,97,101,97,99,97,104,128,93,103,94,73,91,100,104,96,103,80,100,111,110,95,104,122,96,95,104,96,99,97,100,100,91,96,101,95,95,92,105,107,117,107,97,105,88,95,107,98,77,111,90,107,98,99,103,106,103,74,105,90,99,92,91,113,108,105,113,114,99,94,87,103,89,95,107,113,83,101,106,105,88,103,102,103,98,87,96,89,89,99,94,81,99,83,89,102,89,104,106,86,98,116,83,92,94,95,89,90,106,94,101,102,101,92,99,98,106,96,101,105,87,113,116,94,107,114,96,99,98,101,107,115,91,93,83,92,97,98,90,101,108,99,102,113,96,99,94,95,95,93,87,86,93,94,100,98,98,97,94,135,108,97,106,83,93,82,90,104,96,91,122,88,99,91,102,95,85,102,95,99,94,97,107,112,99,98,97,87,97,100,98,96,94,91,90,94,99,94,83,96,86,115,95,91,117,86,103,96,96,94,104,84,98,105,97,97,125,103,105,97,92,108,105,108,103,95,76,93,97,109,111,103,97,100,105,91,97,96,105,93,107,96,93,102,100,109,95,100,86,91,93,99,83,95,105,92,89,100,95,98,102,80,97,102,102,98,94,91,100,102,97,96,94,104,97,102,102,97,106,93,113,101,94,105,97,105,100,105,96,104,95,106,102,94,112,105,98,64,101,83,110,93,94,114,101,109,87,109,108,99,101,101,92,91,105,94,99,93,92,106,107,98,83,97,89,100,104,105,99,98,117,106,108,94,83,93,93,101,108,97,84,101,95,103,105,90,100,111,90,101,96,102,96,107,104,106,86,94,96,92,93,106,99,108,105,95,100,67,103,85,102,88,103,95,87,102,98,104,77,90,104,90,99,94,92,95,96,116,84,103,96,79,113,79,100,105,101,96,101,99,106,93,90,98,109,90,92,91,113,103,99,91,113,93,101,91,105,97,97,99,89,89,87,89,99,109,100,98,65,87,96,112,101,112,106,88,96,96,95,94,88,96,92,89,105,98,97,94,105,113,88,102,95,98,90,96,96,99,106,97,105,109,92,108,102,98,109,106,97,92,94,89,100,96,105,94,97,107,109,106,88,88,93,102,97,95,89,94,106,114,104,96,88,103,91,104,104,98,98,95,92,101,91,98,101,101,103,101,104,100,100,110,93,105,101,89,97,94,107,98,101,92,108,98,75,87,100,98,88,118,105,97,94,86,118,98,99,106,83,96,98,71,108,97,90,93,97,101,102,83,100,93,97,95,95,106,88,88,97,91,87,94,106,101,99,96,88,81,95,96,97,99,95,92,99,99,97,87,94,104,87,89,102,93,110,94,102,103,96,93,102,94,103,98,106,100,90,95,98,99,89,90,95,100,105,90,97,92,106,90,112,96,101,100,94,113,101,105,92,98,89,125,86,93,98,96,112,98,101,102,97,101,103,102,91,96,110,102,88,104,90,84,83,90,94,93,101,98,102,86,102,101,108,108,97,104,102,100,91,95,92,96,103,93,105,101,116,104,87,91,100,94,100,111,96,100,99,104,99,93,92,94,97,100,88,93,99,95,102,108,95,89,94,109,97,92,96,87,69,64,100,100,92,83,81,98,121,92,88,93,87,98,127,82,103,86,105,100,96,102,93,99,100,94,104,109,100,103,93,98,97,104,107,108,105,109,97,86,96,100,96,91,94,97,101,90,95,94,98,100,86,102,99,96,110,102,94,83,93,115,111,108,94,98,102,103,101,99,100,96,104,102,101,102,108,100,94,100,92,104,101,100,91,96,87,95,97,99,101,110,113,110,97,96,93,100,105,87,67,87,97,100,101,101,88,106,83,93,122,97,111,95,107,90,95,104,98,111,100,95,106,101,106,104,92,85,103,99,105,96,111,108,105,97,104,103,91,106,96,99,102,92,99,88,82,92,96,103,94,105,104,96,97,95,93,103,97,102,94,96,106,98,91,101,90,92,101,99,96,103,100,102,97,94,103,105,102,94,125,103,91,115,113,94,103,101,95,108,79,100,104,89,97,103,96,94,100,100,95,109,95,89,90,96,90,101,99,68,111,104,95,97,96,84,93,94,110,75,100,82,95,90,97,100,90,106,86,88,95,132,92,134,93,95,75,101,93,92,101,71,86,95,100,102,96,105,99,94,103,103,102,98,109,102,100,99,114,106,115,95,86,94,106,103,90,88,101,89,100,100,102,105,111,94,79,98,92,101,113,95,95,99,99,89,92,107,104,107,95,93,92,92,86,94,93,108,102,78,91,105,93,98,99,96,90,100,102,104,100,97,95,98,103,97,86,100,92,82,96,96,94,97,96,89,105,92,93,95,95,103,98,86,96,106,101,102,103,90,105,98,94,105,84,95,96,93,101,96,108,108,94,106,91,107,100,92,111,103,102,80,72,107,95,96,87,100,96,103,97,105,110,98,98,95,99,122,109,102,95,119,96,102,103,107,110,108,100,100,109,93,96,88,105,92,100,104,109,99,114,91,105,106,102,108,114,99,107,109,102,88,100,103,97,110,96,98,100,103,94,101,91,95,91,105,108,91,105,109,103,101,91,106,95,98,106,105,95,92,104,109,94,101,92,83,81,94,105,104,106,92,103,96,105,102,95,81,97,99,83,96,95,118,102,100,113,91,107,98,106,98,86,98,103,99,100,102,98,96,101,99,106,103,113,91,106,104,103,96,109,100,115,95,102,98,90,108,102,96,103,101,85,106,107,94,109,104,88,104,104,94,101,98,96,111,94,91,102,115,96,99,93,88,90,114,106,96,98,95,108,97,102,121,129,91,105,101,95,85,101,105,77,115,106,98,98,105,104,106,101,99,97,98,84,107,96,106,92,104,98,114,103,98,95,107,92,98,99,104,100,98,108,103,102,89,95,101,107,106,89,96,88,98,93,104,91,103,109,101,89,99,99,100,105,96,102,101,106,107,101,108,108,93,92,109,113,101,98,102,99,107,100,98,103,103,93,100,102,88,101,104,106,96,100,103,97,103,94,108,98,102,117,104,99,102,95,95,92,100,107,101,90,104,91,105,103,106,105,106,102,105,99,95,104,106,103,98,106,120,110,83,98,102,102,102,105,85,113,107,103,105,105,83,101,116,93,118,106,87,98,108,109,96,113,105,89,96,96,86,102,104,102,103,118,99,99,92,108,104,102,94,101,98,99,91,94,104,99,104,98,90,80,106,99,95,105,105,105,114,106,100,101,91,94,91,102,106,103,111,114,97,97,109,99,105,86,101,98,87,98,100,75,98,92,91,99,104,97,95,109,108,92,79,104,99,103,135,104,114,100,101,110,102,98,91,117,99,104,105,110,94,104,100,95,102,99,97,104,92,104,107,90,89,107,100,102,105,112,99,100,116,98,104,90,99,103,108,93,84,104,88,98,90,93,100,100,88,108,106,106,91,100,91,91,81,98,97,96,92,95,98,88,96,90,101,103,90,94,82,106,96,103,121,98,91,100,94,101,99,93,101,97,101,104,107,101,98,108,100,96,99,98,106,100,99,100,107,101,123,106,109,115,101,124,104,90,104,104,96,106,97,107,104,93,105,97,89,96,98,107,98,97,101,87,108,105,101,92,106,92,100,95,87,96,101,99,98,97,102,102,101,105,101,102,98,102,113,98,99,100,96,91,101,95,103,96,88,101,107,105,99,104,94,95,87,98,103,104,87,98,98,89,89,104,100,101,101,94,95,109,86,95,91,100,84,88,97,100,95,94,97,102,93,101,99,101,73,106,94,91,108,90,101,99,106,102,105,92,100,100,115,94,93,98,113,95,96,109,97,96,106,100,108,96,103,95,102,94,94,102,103,93,92,107,110,104,106,98,98,96,117,98,100,103,97,95,105,90,92,109,98,105,102,94,80,91,102,112,105,97,103,95,102,101,100,99,97,105,113,95,90,87,88,106,101,94,117,109,100,97,109,93,102,102,108,86,83,100,108,92,102,100,91,109,106,99,105,98,100,96,109,112,79,98,98,97,92,102,108,91,106,98,90,108,85,97,94,99,99,96,99,93,104,106,96,105,89,97,81,100,107,95,100,96,94,98,102,102,91,101,104,95,95,93,100,109,105,91,113,101,112,101,116,95,103,97,110,101,102,99,108,97,107,90,105,115,109,95,97,98,83,104,109,110,96,94,99,99,100,100,103,92,99,101,92,99,92,108,97,96,99,106,97,91,103,102,113,95,86,111,105,100,99,102,93,106,99,94,99,98,91,97,104,102,85,106,102,94,99,109,97,92,95,96,101,103,94,97,92,98,93,102,105,99,91,106,111,102,111,95,108,120,93,93,96,99,111,99,93,96,111,101,99,103,91,109,102,98,97,110,94,91,102,87,106,108,95,94,102,100,98,100,94,98,101,100,85,97,98,92,94,108,83,101,94,105,102,106,109,106,99,108,92,101,112,88,111,106,99,100,101,102,95,82,99,103,91,106,98,108,102,102,101,101,81,99,96,98,101,95,107,102,100,99,104,98,109,92,88,112,98,95,98,98,121,95,100,108,110,97,108,110,104,125,94,100,107,101,92,101,101,104,105,103,97,96,102,92,101,99,106,95,90,92,98,95,97,103,101,108,100,111,109,94,105,97,106,102,109,105,104,108,102,102,104,98,89,99,87,106,101,103,100,107,103,95,100,95,82,96,121,107,102,101,108,102,96,105,103,109,107,102,96,107,109,82,102,97,96,93,109,104,104,106,99,105,98,102,95,102,110,90,106,93,100,103,101,103,95,105,69,100,103,110,108,102,89,115,95,105,100,102,107,87,106,103,101,112,104,122,111,111,94,103,105,91,102,108,93,96,113,103,91,89,94,101,101,95,98,92,102,111,100,79,103,98,102,96,110,93,98,102,93,96,100,97,87, +719.35211,93,87,100,99,98,120,107,117,98,96,101,91,96,100,105,107,92,107,92,99,81,91,95,93,95,104,92,95,97,96,90,95,101,100,103,94,93,101,95,102,89,93,85,101,91,98,104,104,94,109,100,97,87,98,97,92,119,100,98,104,82,92,95,88,90,86,103,90,96,96,103,102,96,95,93,105,92,102,104,88,103,100,95,99,104,103,99,103,101,101,102,95,105,95,109,98,92,100,98,104,94,104,99,90,96,110,94,99,86,121,109,102,104,97,91,104,101,102,108,102,106,106,95,90,100,117,102,96,113,109,94,101,96,103,95,101,96,99,92,98,103,89,113,93,97,95,111,89,101,85,98,96,117,100,97,97,91,102,90,95,106,104,114,99,89,104,91,92,102,104,100,100,105,98,103,96,98,90,102,82,79,106,94,104,103,103,96,88,107,101,96,96,97,99,109,91,107,91,87,112,101,96,92,87,101,101,87,103,117,113,99,112,72,104,95,92,95,94,101,95,96,98,104,80,87,100,89,107,103,103,96,91,107,123,96,97,93,120,106,106,96,106,95,93,93,92,109,104,109,106,108,87,97,85,88,97,107,101,87,99,98,99,94,99,97,94,90,100,95,100,101,97,91,95,101,97,96,88,103,93,102,104,95,86,101,92,85,94,95,91,86,91,103,96,100,91,106,98,103,100,88,101,94,109,93,106,94,95,112,98,91,96,100,106,92,109,104,77,87,99,90,100,83,107,92,87,114,92,107,82,99,104,96,94,102,96,87,92,83,97,88,89,104,92,104,87,99,97,102,109,99,73,106,106,96,99,92,102,103,98,102,112,104,90,92,102,108,101,112,96,108,97,104,101,91,93,100,92,93,97,104,98,89,93,99,96,93,89,98,88,103,89,97,116,96,97,100,86,92,107,89,98,98,92,93,94,101,114,78,91,85,98,113,88,105,88,110,94,113,104,87,92,91,98,96,90,93,85,95,113,101,101,93,86,100,102,97,106,90,94,101,105,98,111,82,100,95,100,100,101,113,93,99,120,102,91,105,94,99,82,93,89,102,100,98,109,99,90,96,105,105,95,106,100,95,104,104,102,94,97,90,96,107,84,95,105,98,105,100,94,113,109,95,99,93,98,96,95,112,85,104,98,92,106,95,98,81,98,98,102,100,88,105,95,102,105,96,101,91,103,103,96,100,70,104,103,97,101,80,102,103,98,96,105,99,102,102,96,106,93,90,97,113,94,101,109,79,100,99,88,100,90,92,90,80,87,98,102,92,95,99,98,89,99,96,90,99,99,85,95,94,96,104,101,95,100,102,100,109,91,93,97,97,88,97,113,98,96,93,96,108,97,83,100,98,106,95,104,99,96,98,104,100,100,98,104,112,95,96,94,98,108,100,95,99,104,108,105,93,113,104,105,92,90,103,93,107,106,98,102,97,99,95,96,90,99,110,99,99,95,94,103,97,82,94,87,96,82,90,99,80,91,91,104,87,95,86,110,97,91,104,101,91,100,89,98,100,97,96,105,102,86,94,89,101,99,99,110,96,92,87,103,104,98,94,100,92,108,103,100,99,94,92,93,93,105,93,101,105,100,104,88,108,105,97,110,103,101,88,94,99,95,83,94,90,103,111,91,108,101,92,97,97,101,91,90,101,94,86,104,96,101,118,89,85,96,116,84,93,98,117,92,93,98,113,99,101,101,96,110,101,100,100,98,106,101,95,90,108,96,98,98,86,93,91,94,95,100,91,94,102,96,90,95,93,94,108,100,108,98,89,96,106,106,98,71,95,107,96,98,91,104,97,113,96,100,101,102,100,99,99,98,90,104,103,106,98,100,112,100,79,96,102,90,100,101,96,102,109,96,92,84,90,99,95,108,102,117,114,95,100,93,105,100,98,96,105,106,96,113,97,98,95,94,90,95,104,100,97,90,96,97,101,102,99,95,91,117,104,86,83,94,104,105,97,109,93,92,100,88,86,97,91,98,107,92,97,102,110,123,95,88,91,105,94,90,101,103,96,94,113,103,94,101,92,91,91,85,113,112,95,99,104,104,109,105,110,97,85,96,93,90,101,102,93,94,86,102,102,104,102,113,112,106,107,85,101,107,100,91,93,97,95,103,90,92,96,99,98,96,94,95,100,99,95,97,94,99,105,90,100,84,110,101,87,87,93,123,101,104,95,95,104,95,110,92,93,97,109,92,90,93,95,84,99,106,99,84,101,114,88,105,89,98,88,97,98,101,107,97,86,102,97,114,90,87,96,97,98,104,94,84,105,99,115,104,97,89,96,89,100,111,100,90,97,111,86,97,92,101,103,104,105,93,107,105,106,106,103,93,103,103,95,88,99,91,88,95,95,94,100,101,90,98,96,95,86,95,88,100,97,99,103,103,98,111,100,92,98,105,106,102,107,87,91,109,96,100,91,99,103,99,117,69,99,99,99,100,81,95,89,101,93,101,97,105,103,91,114,114,99,99,102,99,95,90,105,113,101,102,99,95,99,85,100,103,102,94,89,81,104,100,93,104,96,96,106,103,95,91,100,109,111,96,98,108,92,83,108,107,106,106,100,98,103,83,103,99,97,89,106,93,96,105,98,101,94,119,103,78,104,102,102,105,91,102,102,96,91,102,101,100,91,101,117,69,104,103,96,104,103,87,98,92,105,105,92,103,103,94,102,105,98,99,87,100,109,105,97,106,95,100,105,101,93,108,105,97,108,90,78,101,93,108,98,99,103,104,104,100,100,99,104,107,107,102,101,103,98,100,102,92,109,100,107,86,98,90,103,101,101,104,94,109,104,108,101,113,99,108,103,106,119,101,96,103,103,92,101,100,97,106,94,89,98,98,91,102,91,112,98,103,87,104,107,93,102,97,110,110,102,96,121,103,100,102,105,107,103,96,86,108,104,105,90,98,94,87,104,105,109,115,100,96,90,101,86,72,90,84,96,91,77,99,103,98,101,101,95,104,101,97,103,99,89,93,102,102,101,98,112,98,98,102,101,105,94,102,103,98,112,86,93,106,98,98,101,107,109,100,99,94,111,101,105,95,110,120,109,100,108,99,102,98,108,102,97,110,105,104,102,99,100,106,104,91,100,103,98,72,97,103,100,99,92,101,104,93,96,110,98,92,101,103,94,93,90,111,94,97,90,98,107,130,111,93,99,90,95,104,97,99,92,105,106,100,103,99,115,103,104,105,100,102,100,90,105,98,102,101,103,100,104,112,94,100,132,92,109,93,105,103,106,98,93,103,96,99,96,97,98,103,100,101,97,74,108,97,104,115,87,95,94,105,109,105,106,92,96,98,119,100,96,97,104,94,114,99,94,73,102,102,100,101,103,107,102,109,111,95,94,98,113,105,104,102,116,105,112,94,95,115,103,124,124,97,102,101,101,91,90,92,96,100,96,101,98,106,111,101,104,96,99,109,97,91,109,109,100,112,105,91,89,98,106,105,110,94,113,105,105,102,112,94,97,99,102,93,96,102,104,97,100,100,98,73,96,122,99,103,100,97,101,120,100,98,97,103,111,101,98,111,101,85,103,103,103,105,104,121,107,105,94,103,94,100,102,102,105,87,90,87,100,101,98,105,92,101,103,102,100,92,102,99,98,101,101,100,102,105,94,102,109,105,105,100,99,97,105,98,106,97,106,120,105,101,116,89,102,106,107,108,105,101,109,97,91,119,64,108,97,94,95,109,104,92,99,116,96,94,92,100,77,106,101,99,100,100,110,108,98,92,113,96,91,98,100,98,112,102,91,102,98,103,95,102,106,95,101,97,91,92,100,106,100,103,100,105,90,129,103,98,99,105,106,109,102,95,92,91,96,114,105,98,104,105,112,98,93,100,90,102,101,86,104,106,81,85,88,101,93,100,106,85,97,116,91,78,103,104,107,106,88,99,103,106,91,97,102,93,112,101,99,102,105,112,94,97,102,98,97,99,94,100,101,94,93,97,100,100,92,107,91,88,116,105,99,95,105,86,93,115,104,117,114,91,88,108,113,108,119,95,92,97,90,99,115,96,95,95,108,109,92,111,93,109,87,86,101,95,105,107,102,105,91,99,95,93,94,92,107,109,104,105,98,106,101,109,94,110,101,106,102,98,98,99,110,93,103,113,112,100,81,96,102,113,97,95,102,96,100,95,94,96,112,112,101,99,86,76,105,102,112,99,108,115,94,106,104,100,112,98,107,96,108,77,102,82,85,96,88,109,102,98,94,118,95,91,95,74,92,110,105,104,96,99,93,113,96,102,99,95,103,102,97,113,99,98,95,115,103,103,125,106,92,101,100,110,101,110,101,102,120,95,104,100,99,95,99,99,100,94,99,96,85,112,111,100,96,96,109,106,116,107,97,105,106,103,98,102,106,96,107,104,106,100,99,99,104,102,98,101,103,101,97,98,94,101,98,115,99,109,100,95,105,93,90,99,99,100,68,126,111,99,103,100,80,101,103,95,95,97,96,98,87,97,77,95,98,122,97,102,94,94,97,106,95,99,88,101,89,112,98,109,95,96,120,96,108,95,96,95,101,95,98,98,87,104,106,98,93,105,98,96,100,112,120,94,92,94,97,89,97,102,88,95,99,117,107,95,108,99,104,105,107,105,98,104,114,116,99,97,101,107,102,104,96,105,91,98,89,88,97,98,96,97,90,103,102,106,105,90,101,92,101,97,103,95,107,96,98,102,91,105,102,90,113,83,94,74,92,99,88,103,85,97,108,92,92,95,102,99,94,106,100,98,100,100,103,103,97,112,102,100,95,97,101,89,96,114,91,84,111,103,93,113,99,112,95,104,87,91,99,92,98,107,101,100,96,107,112,98,86,92,104,94,110,95,100,87,108,106,105,107,114,98,98,91,97,98,128,116,101,85,100,97,98,109,115,91, +719.49347,106,105,77,97,99,106,106,101,97,98,102,103,106,103,109,89,111,98,90,99,90,104,108,107,72,101,95,117,101,98,98,79,96,92,103,91,87,101,108,87,90,97,113,107,91,100,69,99,78,90,104,105,97,102,91,87,88,100,108,94,83,100,90,94,88,93,99,97,91,101,112,108,94,110,95,100,99,95,107,113,116,103,107,102,105,92,104,92,99,99,89,95,101,96,97,99,100,98,89,95,107,98,104,90,91,98,102,98,110,91,103,102,104,104,103,90,103,110,96,91,78,94,99,98,104,111,115,88,103,103,100,105,99,98,109,110,86,109,111,87,95,92,95,100,110,100,108,101,104,105,96,98,100,94,107,101,105,96,86,96,100,103,97,105,95,93,87,100,88,103,96,96,100,93,102,106,99,99,100,84,103,67,96,111,104,96,92,84,108,95,104,103,106,103,96,110,106,102,104,94,98,94,104,102,95,104,97,97,106,108,87,96,91,95,108,98,96,98,103,106,104,83,107,88,87,98,101,101,99,91,92,100,108,108,94,110,96,103,106,87,95,97,106,101,101,90,99,93,96,96,104,116,97,102,108,105,101,94,93,87,96,105,89,102,102,100,90,99,101,84,87,84,100,102,99,86,94,98,97,94,84,106,92,91,109,98,86,118,88,94,105,108,109,97,99,96,101,103,103,103,110,108,98,109,109,93,103,112,99,100,78,101,89,89,95,109,83,91,105,91,106,86,95,92,92,102,94,93,104,111,103,102,95,104,92,92,94,93,90,98,101,89,92,100,104,109,88,104,106,96,92,114,113,104,111,101,105,105,98,103,109,100,100,96,88,102,110,113,82,103,103,99,104,100,105,106,94,105,94,102,94,96,101,104,102,96,100,97,92,99,110,93,106,101,99,107,100,98,98,98,95,109,107,98,105,102,98,97,104,101,102,103,112,97,104,100,91,96,103,99,99,123,94,98,99,90,87,103,104,108,102,102,101,96,104,100,94,109,100,94,105,94,84,104,104,99,100,87,111,100,86,92,103,92,100,88,111,104,100,101,94,109,96,101,102,99,95,78,93,91,110,95,106,94,98,96,94,105,113,100,94,97,95,97,99,101,108,100,108,87,100,104,102,99,100,90,90,96,79,93,97,103,95,97,102,105,103,96,100,109,101,105,100,108,105,92,103,97,97,98,106,94,109,96,109,99,105,90,100,110,96,101,97,100,101,87,91,104,93,98,99,103,96,105,105,103,98,97,103,100,100,90,107,95,96,89,109,105,92,104,107,98,93,108,97,103,95,104,91,92,90,91,94,105,90,113,98,101,95,99,98,97,90,103,96,116,95,94,104,86,102,104,86,98,103,103,102,101,105,109,91,98,111,105,97,97,103,98,99,85,120,100,109,105,99,103,100,102,99,101,114,97,104,97,106,95,101,101,103,91,105,101,112,91,104,102,101,86,102,86,101,95,96,87,104,90,110,104,94,103,89,103,103,103,114,117,93,96,104,85,100,91,98,86,97,93,99,84,110,97,118,96,101,100,91,109,105,87,93,94,97,100,78,58,88,102,95,90,102,102,100,101,97,108,105,94,98,114,97,116,98,73,100,101,97,110,96,106,96,105,101,105,100,105,102,98,109,88,96,89,108,86,96,100,79,69,113,101,94,104,101,95,101,100,103,95,91,110,103,108,99,96,108,102,105,110,91,100,98,93,98,98,96,105,108,97,103,90,109,84,90,87,108,101,95,109,95,101,89,96,99,93,100,91,91,81,89,102,100,96,92,101,101,95,102,101,87,90,98,102,97,84,108,92,99,104,95,94,101,99,87,106,92,110,101,108,102,106,106,96,106,98,107,104,79,112,100,96,110,122,114,94,99,102,98,100,100,100,106,102,101,88,96,83,94,94,101,95,104,112,100,105,107,100,96,104,98,98,102,92,102,106,101,102,97,94,113,97,104,100,99,88,105,103,100,97,99,99,105,109,103,99,100,103,90,100,114,98,99,89,95,90,101,107,102,106,96,113,82,95,103,86,104,99,95,100,102,105,93,96,96,118,98,96,105,111,101,113,111,102,101,100,77,115,102,105,99,109,101,105,113,97,98,91,111,97,95,101,97,105,82,101,114,109,113,114,97,104,104,95,98,101,101,108,132,105,103,102,106,95,101,103,105,98,108,101,103,112,93,103,106,107,104,91,101,104,94,108,99,101,99,99,95,99,96,97,97,96,94,101,100,78,89,105,99,112,94,102,109,98,97,98,100,95,99,95,92,95,115,103,95,100,102,105,100,102,91,105,84,96,88,109,100,106,95,106,99,100,104,102,101,95,100,88,103,104,107,95,95,100,86,98,91,99,104,87,99,113,98,104,94,109,99,115,99,106,103,109,103,104,81,111,118,98,93,110,85,97,91,105,94,109,100,87,98,96,100,91,97,82,101,108,98,85,100,106,97,104,82,85,101,90,87,102,128,100,94,102,112,103,102,97,101,87,91,91,100,98,96,118,101,98,107,106,103,108,103,96,106,105,98,109,85,99,106,93,93,115,102,102,107,64,102,81,101,102,101,103,98,95,101,110,92,97,95,109,94,96,98,105,109,84,100,109,98,90,93,94,95,92,101,95,95,91,108,97,99,99,99,98,102,94,115,81,86,110,118,94,105,108,98,87,100,102,94,94,92,107,100,89,104,92,84,108,98,100,112,93,95,107,89,101,100,91,88,96,99,87,94,93,98,106,106,100,117,103,96,99,95,107,104,102,96,104,100,99,101,99,101,98,102,105,106,103,95,95,86,97,109,95,91,92,96,105,103,107,95,101,97,95,102,98,103,100,93,91,98,94,108,109,90,105,111,88,95,92,102,107,102,101,96,98,95,113,107,68,87,109,103,97,77,88,93,107,97,94,98,101,104,103,82,97,101,102,109,117,98,104,102,95,95,94,93,102,96,105,94,95,87,107,118,88,95,103,105,98,103,98,91,101,100,101,101,92,104,92,106,103,99,90,103,104,77,95,110,89,105,99,95,100,94,89,100,110,98,97,94,90,107,100,94,105,93,103,101,96,94,98,101,100,101,94,83,100,103,102,102,106,104,99,105,97,91,106,111,107,98,97,95,106,103,81,94,107,88,98,105,102,101,105,100,89,99,98,94,108,118,98,94,82,90,101,103,93,103,98,93,94,97,93,99,102,102,108,103,97,106,95,104,107,105,105,97,99,98,103,96,102,98,102,102,99,74,93,92,97,99,101,91,95,100,92,105,100,114,98,99,100,90,99,110,83,101,123,94,99,97,104,100,95,94,89,100,107,103,101,100,75,94,91,82,95,96,87,108,91,97,91,108,97,95,92,100,99,93,87,98,103,94,96,92,97,103,92,85,102,99,103,89,95,99,105,98,99,111,108,102,90,108,109,95,101,76,95,99,102,102,105,108,96,96,105,88,100,95,104,100,94,96,113,99,88,99,91,94,111,108,109,98,90,97,103,95,93,105,98,108,97,98,95,99,93,100,102,98,89,90,103,97,99,102,95,98,95,95,97,105,97,92,92,99,98,89,101,95,96,97,104,96,118,98,74,94,97,105,101,91,96,97,87,88,97,100,97,102,99,103,104,112,91,94,98,103,98,96,95,97,99,100,95,98,106,107,94,87,87,103,102,97,102,101,114,101,117,94,94,93,88,93,110,101,107,97,96,116,99,94,101,94,94,101,96,98,105,103,110,104,95,87,87,98,95,110,108,88,101,103,98,97,85,94,97,96,80,101,97,109,103,107,95,105,84,96,98,108,93,74,101,93,97,95,96,91,77,94,97,101,116,103,97,109,106,109,87,97,109,91,100,97,109,101,97,89,102,102,95,102,88,89,100,91,98,101,101,102,94,87,94,89,96,86,99,101,87,95,93,100,83,91,89,95,107,87,113,91,102,95,96,89,112,95,88,100,93,86,107,102,108,95,95,105,109,92,101,96,113,95,106,91,103,75,99,93,96,98,102,95,99,89,100,99,93,99,97,96,94,100,103,102,108,105,106,106,101,91,114,103,86,98,102,111,106,90,88,103,103,95,96,98,108,100,92,100,107,94,91,98,91,100,103,103,104,107,104,107,107,98,102,94,102,113,94,97,112,104,96,98,106,103,98,92,100,94,98,94,99,90,111,99,111,97,101,100,104,94,105,108,79,85,101,105,96,110,97,74,107,87,116,97,92,86,107,113,109,95,104,100,100,86,106,115,96,98,93,89,104,108,97,91,105,99,100,100,95,89,108,98,97,107,90,103,102,99,98,107,95,110,95,85,95,93,101,95,95,105,98,105,92,93,101,95,103,95,90,83,102,98,108,109,92,90,98,99,91,101,88,99,102,95,96,98,119,102,102,107,93,106,98,92,91,93,93,108,94,115,93,96,98,106,94,104,96,102,99,104,90,104,91,105,86,102,99,97,105,89,92,102,95,111,103,94,96,96,94,106,98,104,91,107,110,92,92,107,105,106,87,84,92,113,96,85,90,93,103,95,108,100,107,98,105,97,98,94,102,108,103,109,94,102,120,112,100,108,97,85,101,97,105,104,73,97,106,85,93,97,111,101,109,94,98,87,100,113,91,103,106,105,128,94,104,96,87,90,106,95,91,90,98,100,113,97,93,87,89,110,94,102,99,105,97,103,95,91,80,102,107,108,90,93,96,83,93,110,99,93,92,103,88,100,105,102,97,106,93,89,102,96,98,94,98,93,97,91,97,109,94,91,97,105,106,108,102,98,99,79,79,95,105,89,87,105,87,95,102,110,90,92,100,101,117,95,97,99,104,114,102,86,105,83,90,104,89,90,92,93,107,93,97,93,89,99,97,104,98,99,100,99,87,95,85,101,96,105,105,86,92,109,101,89,103,102,94,100,112,112,109,94,100,89,93, +719.63483,106,100,104,101,97,96,98,102,102,106,106,89,94,96,101,96,102,114,102,85,95,104,93,90,99,104,92,97,106,112,99,88,108,102,105,102,87,100,100,93,99,104,109,93,98,99,103,126,101,99,94,109,92,99,119,103,110,91,91,86,82,89,106,87,97,101,102,97,105,108,103,100,96,102,92,116,100,94,107,92,102,89,95,101,101,96,92,102,91,94,83,106,90,99,110,83,100,99,90,93,106,106,82,88,109,107,98,105,85,100,105,93,110,119,105,96,101,102,118,111,98,98,102,99,96,100,99,100,109,101,106,122,91,102,95,97,105,111,109,100,110,109,86,106,96,103,97,107,88,112,105,100,106,97,91,96,94,94,122,99,102,87,102,93,108,99,105,87,99,91,103,107,106,99,87,99,111,97,90,90,84,98,89,117,98,101,103,91,89,111,116,100,98,102,91,96,86,101,89,100,94,108,91,88,92,103,97,103,96,106,97,88,94,110,100,92,90,96,92,102,103,102,99,107,87,106,97,97,99,96,87,100,108,104,91,100,99,100,112,101,95,108,97,98,96,112,103,99,91,97,104,110,103,98,102,113,93,93,93,92,86,92,100,105,93,97,98,97,103,99,103,95,94,93,112,103,102,99,97,113,93,104,104,92,98,93,100,105,103,105,97,85,111,101,96,94,108,97,98,109,100,94,108,112,104,106,101,109,94,109,101,109,108,100,100,97,108,99,97,96,96,102,121,98,99,94,89,97,106,109,112,103,96,93,96,95,96,97,102,102,98,89,102,101,101,101,97,101,105,99,96,85,90,96,101,99,100,104,95,106,95,78,103,99,106,97,104,99,97,110,88,101,108,102,105,93,101,116,92,106,96,109,90,99,88,99,90,96,101,93,100,95,98,115,84,101,107,103,98,92,95,95,105,70,95,93,95,103,108,102,93,96,115,98,94,105,104,93,108,99,93,101,89,103,97,83,108,65,92,108,87,112,104,108,104,99,91,99,104,106,104,98,114,101,92,99,90,93,94,102,90,91,109,94,95,103,108,109,105,100,89,97,105,117,99,96,106,96,101,91,98,110,96,98,78,99,99,94,99,101,92,107,109,99,91,95,93,105,96,92,99,100,104,95,108,100,96,104,102,103,102,94,93,86,107,104,91,100,100,87,111,106,108,111,109,101,91,91,87,80,93,96,98,97,97,83,91,106,72,105,99,101,95,102,100,129,115,102,92,99,105,96,102,90,104,106,105,100,105,100,94,103,97,102,101,105,104,95,99,98,107,75,102,86,97,98,106,102,75,107,88,97,97,107,103,104,101,91,93,93,100,97,104,100,104,100,116,104,98,97,99,110,118,96,92,109,91,88,97,92,106,108,104,90,94,68,98,70,85,100,100,88,110,101,111,82,101,94,102,104,109,99,101,90,99,99,93,89,107,97,104,96,109,98,99,95,96,99,90,93,101,102,101,103,101,105,102,109,90,116,96,109,99,93,96,102,96,92,99,101,107,99,96,99,85,78,101,94,101,91,110,104,102,100,93,104,98,105,104,102,101,96,120,96,86,60,102,107,98,100,94,101,109,103,105,96,95,99,84,93,109,92,97,105,100,88,111,93,105,94,101,110,97,96,96,101,94,109,91,91,96,98,99,102,97,94,92,102,102,106,100,95,99,97,93,87,91,97,115,105,107,98,115,109,104,96,99,98,101,96,109,117,91,92,88,106,97,104,105,101,101,115,110,98,82,95,88,96,103,96,96,97,109,100,100,98,109,87,105,109,105,103,110,99,94,120,91,100,98,105,104,93,90,96,100,101,101,110,97,103,99,95,102,82,91,104,106,102,100,97,98,99,104,110,113,98,101,97,101,109,114,103,92,106,105,104,103,102,117,96,100,94,104,104,115,98,101,103,108,84,92,102,106,107,94,109,91,101,102,97,96,100,108,93,96,94,82,94,102,105,101,91,99,95,99,104,102,107,92,104,96,112,94,89,97,102,106,97,95,73,112,98,109,108,92,106,95,104,90,104,92,103,103,106,111,92,100,102,92,96,101,102,114,105,89,97,86,94,106,93,103,92,98,99,107,91,93,93,97,105,100,116,100,118,100,98,98,96,97,105,101,97,100,99,89,104,94,104,100,103,83,94,100,94,92,99,127,99,84,100,91,96,102,96,103,86,100,99,90,104,108,111,100,99,104,94,100,103,105,95,96,100,110,82,106,105,112,100,110,78,106,100,100,98,111,96,102,96,104,93,106,106,91,92,93,96,100,95,95,121,106,102,106,89,104,99,101,104,96,96,89,97,92,91,96,99,106,91,104,96,104,98,112,98,93,79,104,93,103,106,99,104,100,78,102,87,101,107,93,116,80,99,95,105,105,94,98,101,86,99,99,102,89,100,105,85,93,134,106,96,96,103,93,107,94,73,110,96,89,96,98,125,117,90,100,101,94,100,91,96,97,94,90,91,104,91,88,90,102,104,104,102,108,89,91,94,99,100,99,92,116,86,100,88,100,78,95,97,116,102,100,98,93,113,97,99,99,102,97,108,98,91,88,94,100,98,91,138,97,108,97,112,98,97,86,70,103,104,103,97,96,97,89,97,96,96,102,91,109,91,98,88,107,101,111,104,99,99,86,96,109,101,92,108,98,83,95,119,108,95,98,85,100,110,102,88,92,99,95,98,95,114,108,93,92,100,95,88,97,105,98,108,103,96,100,105,111,103,99,98,96,103,94,105,87,107,93,99,100,96,95,113,100,107,98,109,106,97,95,98,104,110,91,90,98,99,99,86,89,97,93,97,97,98,103,98,101,110,93,88,102,99,97,89,98,88,94,133,107,110,99,102,112,84,92,94,94,97,101,101,109,102,90,96,117,103,99,105,87,112,107,103,99,107,104,101,104,100,101,98,99,64,110,98,99,103,95,111,104,119,91,111,92,109,97,96,108,102,100,99,94,101,102,103,110,95,100,107,98,101,106,112,92,94,110,98,90,107,96,100,111,101,90,98,97,101,101,95,102,91,108,97,104,92,106,98,87,96,99,100,96,99,108,96,100,84,109,108,91,112,98,63,97,112,96,97,117,104,92,118,90,104,94,99,94,93,99,101,109,106,99,97,92,103,97,90,87,108,102,95,102,85,95,92,91,94,96,94,91,86,82,95,90,87,109,94,104,90,104,108,105,100,87,104,101,108,106,103,84,104,88,97,94,90,106,82,99,92,98,113,98,98,89,100,97,101,103,99,103,109,95,98,108,104,100,89,113,107,106,98,96,88,108,88,98,109,99,100,112,108,89,86,94,107,90,104,91,102,111,103,105,94,99,95,98,93,87,100,89,100,102,99,94,88,112,98,100,109,104,91,93,94,98,102,87,117,90,93,103,85,106,96,94,96,98,129,109,108,100,78,97,93,109,96,98,100,96,104,88,99,101,102,93,100,90,112,106,108,95,98,97,85,98,107,94,99,84,100,96,85,97,112,95,101,103,103,69,93,106,121,107,82,102,101,110,100,104,100,95,92,103,105,95,90,99,64,99,97,91,107,88,110,99,91,96,100,99,96,89,116,108,98,95,96,104,91,96,94,104,83,98,101,107,109,105,98,111,101,93,91,98,97,87,101,93,103,101,101,101,100,92,98,118,100,104,95,98,105,97,107,103,97,91,108,94,92,99,102,95,98,96,115,96,101,92,102,87,95,107,92,97,101,92,106,109,92,111,97,101,91,90,94,107,98,103,101,102,95,102,106,94,102,100,103,106,96,99,88,97,94,98,90,85,94,99,89,106,93,106,97,98,103,94,99,97,103,93,98,115,99,99,103,90,104,91,104,99,98,91,111,109,108,87,94,90,99,103,96,102,105,100,98,102,111,90,108,91,113,91,89,100,100,91,91,94,98,94,92,94,89,92,95,97,102,96,92,89,101,99,88,101,105,103,97,101,106,93,91,96,90,89,116,91,99,90,93,110,109,93,98,93,98,106,85,88,100,94,107,95,104,86,105,98,102,107,93,98,95,97,99,110,93,98,81,109,103,102,88,104,96,106,94,100,104,96,92,99,101,103,103,97,96,106,103,109,87,102,96,98,101,107,91,85,106,101,98,82,96,75,104,113,93,95,102,98,101,108,96,105,100,93,90,94,86,107,100,104,93,109,102,104,91,89,100,89,101,96,96,95,98,90,105,103,109,104,100,102,104,102,110,86,108,93,102,99,97,105,109,96,96,110,97,98,91,97,98,116,100,107,101,88,106,89,88,101,96,92,94,95,116,98,98,100,99,88,105,91,84,97,99,109,99,97,104,101,102,94,93,94,98,96,103,107,92,104,107,96,95,110,97,104,88,94,93,97,94,113,122,96,97,93,104,105,101,95,93,109,105,101,121,99,102,101,96,95,106,95,101,108,101,83,92,97,99,104,91,89,103,99,103,104,96,103,87,110,105,92,102,120,102,90,87,102,100,104,96,104,92,100,107,92,89,108,71,102,92,92,94,83,105,95,101,99,84,100,94,97,100,104,91,90,87,101,85,91,71,97,101,96,96,104,97,105,103,111,99,89,101,94,88,102,102,98,103,85,99,106,105,110,91,109,97,105,108,107,98,94,101,107,114,109,105,97,94,89,102,99,109,91,111,105,99,97,101,111,93,116,107,104,86,101,97,107,107,90,101,108,99,103,95,96,99,99,94,99,105,103,95,104,97,109,101,102,118,91,79,106,94,104,99,96,103,88,99,95,102,109,95,97,95,103,99,92,102,87,109,99,110,87,99,100,98,99,97,106,105,105,100,98,99,96,98,92,106,111,97,112,87,101,100,92,108,105,116,119,117,103,94,98,103,111,110,103,107,105,108,96,88,117,107,95,105,106,100,106,91,99,100,72,88,114,91,98,95,85,98,102,100,110,88, +719.77618,102,88,100,88,80,102,106,116,100,102,90,103,86,99,99,65,101,114,87,104,97,107,106,99,94,91,95,92,96,103,95,99,101,95,113,107,103,101,79,96,105,105,104,97,92,102,103,112,93,95,95,103,100,89,99,89,91,94,62,106,100,97,102,95,90,100,103,83,104,92,95,99,98,102,88,107,96,99,101,97,103,99,101,91,108,93,105,103,88,100,99,83,92,90,97,96,95,137,101,100,104,102,101,110,100,105,102,107,87,100,92,105,91,99,96,94,101,106,99,104,98,106,96,101,95,93,93,89,104,97,115,93,108,102,91,89,97,99,105,80,100,106,87,93,94,102,98,95,91,88,102,98,77,89,95,93,101,97,102,130,93,84,113,105,99,96,93,90,98,97,94,98,99,87,95,101,95,89,113,95,87,112,103,96,99,91,90,102,101,96,93,107,94,104,95,102,102,87,102,86,114,106,86,98,91,106,95,99,106,109,93,102,103,103,97,102,97,110,88,90,94,91,101,90,105,106,104,103,93,96,101,105,89,93,91,102,106,100,102,96,97,96,101,97,88,94,96,103,93,102,95,95,83,94,95,100,96,99,100,108,89,100,100,95,97,102,106,104,132,98,108,90,101,91,103,95,94,101,96,87,90,86,99,96,96,101,98,97,86,93,95,98,95,80,96,99,108,104,99,88,98,101,102,100,105,89,81,102,92,110,95,104,113,101,101,88,96,97,104,100,102,94,89,95,106,98,91,100,107,116,95,97,115,102,91,109,82,103,94,98,109,103,99,106,86,104,98,99,114,98,103,101,100,89,100,92,113,93,103,91,100,93,98,102,103,101,106,103,91,97,107,105,101,101,104,101,99,97,98,98,98,106,93,102,102,86,95,85,86,105,110,111,90,100,99,93,101,91,98,113,100,96,112,102,95,109,109,107,101,108,89,84,94,105,93,90,96,105,79,96,100,97,87,83,96,87,92,92,99,98,99,94,100,105,99,94,107,96,103,94,105,90,111,102,90,96,105,92,108,105,90,94,88,109,90,90,84,114,102,95,91,108,98,100,103,99,103,102,100,93,90,99,102,94,98,94,93,100,108,98,98,116,105,92,100,91,106,98,97,96,98,99,102,88,97,98,98,85,91,107,116,108,89,108,95,92,91,109,107,87,104,100,105,98,95,102,109,96,109,94,97,98,109,110,96,108,99,90,105,89,90,100,79,91,93,92,76,97,101,99,104,100,101,100,100,95,103,104,88,103,106,91,100,89,99,95,109,68,93,91,100,99,96,125,100,99,100,95,84,106,86,97,99,100,107,104,101,92,108,108,90,91,105,87,91,95,99,109,101,95,107,97,94,90,99,108,97,111,95,101,92,102,95,93,92,65,111,106,92,100,95,97,101,103,104,100,98,98,96,101,97,99,98,100,97,101,84,96,96,92,92,100,103,103,102,107,113,91,95,109,96,95,90,104,95,97,94,98,94,95,112,93,109,116,102,97,92,103,98,95,122,101,102,91,84,97,93,98,113,92,102,105,100,103,89,101,96,101,103,95,91,105,90,99,101,90,87,101,94,106,105,95,95,107,96,78,99,105,105,82,101,92,106,87,92,86,90,105,102,105,89,100,102,104,102,103,85,95,94,84,85,90,102,101,92,93,105,109,98,105,89,104,85,98,104,97,95,101,101,98,103,103,95,109,105,90,105,113,101,96,102,101,98,89,97,108,97,94,103,102,99,101,83,93,92,93,99,93,103,95,100,95,94,104,108,97,104,89,114,98,114,100,104,101,94,104,120,82,86,93,97,93,105,99,91,98,101,86,84,96,108,109,101,94,107,91,98,98,98,94,102,83,88,95,101,109,126,106,99,81,95,103,104,103,97,95,102,94,101,106,100,89,95,100,98,86,103,93,101,103,99,112,116,98,95,94,105,95,94,70,97,86,109,101,96,98,96,113,87,102,104,102,107,96,102,103,100,101,109,100,103,100,109,93,103,103,106,95,97,93,112,102,105,108,102,102,86,104,98,107,107,101,98,104,101,105,98,124,108,97,95,98,94,90,88,95,89,85,99,121,84,93,97,101,103,100,89,99,95,92,105,96,98,92,88,101,76,105,80,108,109,96,86,87,99,98,93,91,99,93,99,101,101,79,89,100,97,101,102,96,88,95,104,114,102,100,91,98,96,95,94,105,99,88,101,95,102,94,97,92,107,91,88,100,98,108,97,87,98,100,87,86,109,92,93,105,98,90,101,101,100,106,118,107,97,88,91,96,108,104,93,105,110,99,101,91,108,92,105,99,86,104,91,105,95,105,103,90,98,89,107,108,99,85,101,111,99,104,87,115,111,106,95,103,99,89,108,103,107,103,98,100,108,100,97,94,96,89,105,102,100,91,103,106,103,105,92,103,99,92,98,112,102,108,102,94,75,99,95,118,96,102,106,105,103,85,100,99,101,99,99,98,92,106,101,109,102,90,104,97,103,111,88,87,91,99,82,102,118,112,96,98,104,98,99,107,105,101,99,96,91,89,98,100,113,96,83,105,98,106,113,100,90,99,101,95,96,116,103,87,96,95,109,92,111,93,105,101,101,97,100,108,94,100,117,106,95,94,99,105,108,100,107,85,98,104,116,100,89,102,101,94,109,98,98,110,95,98,101,98,102,98,103,117,98,102,108,101,97,95,99,113,90,102,121,102,108,98,103,109,98,92,99,102,101,125,100,91,104,107,102,99,107,94,101,96,109,101,91,92,102,117,83,102,95,100,111,101,104,102,110,116,99,104,112,104,100,93,81,103,96,106,106,93,104,101,96,104,104,97,91,101,101,95,103,96,106,110,87,84,105,100,97,115,107,97,113,97,95,114,102,86,92,90,101,84,104,105,105,100,105,97,96,97,100,91,98,97,106,99,84,105,97,94,101,101,97,83,114,108,95,109,84,87,105,100,98,99,107,97,108,101,92,105,115,106,112,106,103,95,94,103,97,91,92,97,105,107,99,98,96,117,101,101,106,108,105,97,112,113,104,107,101,107,89,99,97,94,94,101,98,104,111,90,96,98,109,106,111,105,84,98,100,66,108,107,95,95,104,100,100,111,88,109,105,101,101,95,99,103,101,99,93,105,90,98,96,102,104,97,98,104,100,97,97,107,103,89,106,101,101,96,96,100,107,109,99,94,103,103,107,106,102,95,96,115,111,88,91,97,90,100,88,93,79,101,110,121,102,99,98,99,92,76,94,103,104,99,107,99,101,82,96,100,96,87,100,95,91,85,118,95,73,106,106,104,108,87,102,106,91,87,103,93,93,107,102,98,102,99,104,107,75,100,107,99,93,96,107,106,92,105,87,98,100,92,110,100,102,93,105,114,101,97,99,95,95,101,94,93,97,105,94,103,93,106,105,97,99,96,84,104,96,108,100,105,102,97,99,101,105,107,105,101,96,102,98,91,105,106,109,109,101,96,75,105,98,104,91,104,100,100,100,91,100,102,106,93,98,103,107,95,95,95,110,103,101,109,88,95,117,104,87,112,108,92,100,96,101,108,91,135,93,108,115,86,104,94,105,114,102,95,97,111,93,104,99,101,101,87,92,99,106,104,105,112,96,95,111,106,90,105,100,99,89,104,104,103,102,115,90,105,120,91,110,100,100,94,107,105,108,87,108,104,102,98,100,101,104,125,92,101,114,101,96,96,72,104,105,90,96,94,105,112,96,95,95,95,99,80,105,89,103,95,104,100,101,91,96,99,105,99,93,85,86,106,104,108,109,104,104,100,109,89,91,104,99,104,100,99,96,110,107,105,106,88,96,110,70,103,109,99,115,95,95,115,88,110,108,97,100,104,100,101,102,107,95,109,100,102,96,94,101,109,102,101,84,113,98,101,112,104,88,95,97,103,95,96,96,96,96,98,106,98,95,98,103,90,99,94,100,86,98,96,105,89,110,98,99,131,100,112,93,85,97,98,110,95,88,97,99,107,107,102,109,94,99,107,122,102,100,107,100,103,102,101,97,93,101,98,111,91,117,88,104,91,104,67,87,95,104,113,102,97,93,100,107,106,103,91,106,101,113,105,98,99,98,95,103,97,104,113,105,94,105,104,97,91,94,110,105,97,88,96,102,102,98,129,86,89,101,87,109,102,113,80,105,109,104,101,85,76,102,98,108,100,99,98,111,105,93,110,98,95,103,100,99,110,99,113,109,104,97,93,101,102,98,87,101,83,98,90,101,96,95,91,98,92,96,95,103,101,109,100,87,80,79,100,97,104,100,105,114,101,115,91,91,104,98,111,103,111,99,68,100,94,85,91,96,101,96,104,103,86,110,88,102,99,96,94,102,90,103,85,100,96,108,99,95,121,91,109,97,103,109,100,107,98,101,107,92,110,80,97,87,96,101,91,98,72,80,83,99,120,91,101,98,95,101,93,98,99,99,95,100,87,102,96,98,115,98,90,99,102,88,90,95,100,112,73,94,109,98,90,107,111,100,105,91,94,95,97,99,96,99,103,110,109,93,96,80,105,102,102,94,101,108,105,98,95,106,97,114,100,87,92,95,77,91,112,99,98,99,99,108,89,108,101,98,99,99,90,108,103,97,102,100,112,109,80,97,104,115,106,87,99,100,95,97,90,111,88,92,93,102,91,103,104,116,89,104,103,107,100,109,100,103,97,95,90,87,88,91,113,99,105,93,105,99,100,114,80,95,91,92,103,104,102,98,95,96,97,92,104,93,101,111,85,104,100,95,97,93,107,98,95,103,107,104,92,92,94,93,87,106,90,112,94,104,90,96,100,115,95,116,121,105,88,84,86,99,99,101,110,100,111,96,114,92,90,101,104,106,94,96,125,93,91,92,103,111,72,97,101,84,90,98,101,104,96,107,99,110,99,96,97,101,91,107,88, +719.9176,104,105,99,101,102,101,84,105,84,89,90,90,93,100,103,98,90,97,85,94,107,92,112,109,90,105,105,94,105,89,110,88,97,94,95,101,114,89,111,87,97,109,87,109,92,89,105,101,91,96,106,92,95,83,94,94,92,97,87,89,92,98,107,91,105,113,103,88,100,97,105,94,86,108,92,96,89,90,105,99,83,109,93,105,88,94,106,109,108,91,98,96,98,93,79,101,110,100,109,97,106,107,94,85,101,97,96,95,90,90,103,97,95,93,107,96,96,94,95,86,101,98,92,95,100,107,99,103,106,105,97,102,85,90,95,88,89,106,94,96,94,107,113,100,100,98,83,80,86,94,100,104,97,98,90,105,103,105,93,88,99,103,97,126,107,98,96,97,103,98,103,75,98,96,92,96,98,82,106,96,97,95,102,96,95,105,98,92,95,110,89,93,106,95,114,93,107,104,102,103,84,106,98,106,103,109,101,92,101,113,100,96,100,91,104,91,108,97,103,96,101,96,100,98,88,104,110,98,87,109,95,107,106,101,88,95,102,105,96,92,97,98,95,104,86,87,96,87,94,78,101,94,100,102,101,101,111,100,99,100,80,98,95,94,85,99,107,81,99,93,103,101,91,101,103,99,91,101,96,100,95,98,104,97,90,96,93,101,87,86,94,101,96,97,94,80,91,88,99,92,85,92,97,106,98,111,104,112,98,93,88,103,84,100,98,105,100,96,100,104,97,92,90,97,89,97,88,92,103,90,93,96,102,100,105,110,104,96,107,99,96,99,100,105,108,101,100,101,88,92,102,96,97,87,90,91,113,96,96,92,103,100,103,88,84,86,97,108,81,102,97,82,122,109,100,96,100,86,97,89,102,103,92,98,105,110,100,106,107,91,94,91,94,82,82,98,87,93,86,95,101,102,101,92,98,96,101,87,99,99,92,104,99,99,101,86,88,103,109,93,85,105,100,98,97,90,103,95,99,104,92,94,101,104,101,103,109,90,92,105,92,101,101,101,92,99,109,99,98,98,96,104,99,100,91,103,97,99,98,91,86,91,96,108,76,136,116,92,92,93,92,112,96,92,94,89,94,94,91,99,95,111,92,93,93,99,96,104,92,96,99,102,121,97,89,99,89,68,113,96,96,101,103,107,101,108,89,97,105,93,98,98,95,101,101,101,95,100,94,92,109,102,109,98,101,94,103,106,89,99,83,104,94,94,94,86,96,97,103,108,109,107,99,98,100,97,86,97,92,99,100,109,97,94,86,92,106,86,102,103,96,111,96,95,104,91,106,93,92,97,93,84,92,99,91,88,91,91,93,104,96,103,94,95,98,94,100,107,97,117,102,105,88,86,91,93,117,86,100,98,104,102,98,80,102,91,95,92,90,93,89,91,104,103,92,91,97,95,87,92,93,109,108,103,92,108,108,103,106,105,101,95,97,93,91,97,101,92,103,81,111,103,82,96,103,83,101,100,99,104,92,95,83,103,81,90,94,93,96,105,109,104,97,83,94,100,104,102,117,95,99,90,99,98,94,96,97,102,101,89,83,105,91,67,93,96,95,105,88,98,96,93,112,105,106,106,103,104,101,99,95,97,94,100,79,95,98,108,87,96,110,85,100,87,84,94,95,96,113,103,93,83,101,103,91,106,105,88,100,101,99,94,106,89,101,91,101,92,105,87,93,102,97,80,100,90,104,91,102,108,110,97,100,99,94,99,98,99,92,101,100,101,84,106,91,111,102,105,106,90,103,99,90,96,105,99,92,109,94,96,101,89,98,106,97,101,68,94,101,108,96,109,98,100,104,124,87,94,110,103,85,103,93,101,117,98,73,98,117,90,107,99,99,88,83,94,98,108,96,93,103,98,96,98,101,95,99,100,106,97,113,88,84,101,90,112,99,99,87,93,90,100,113,92,98,98,99,99,96,92,86,99,89,101,101,96,97,99,104,105,94,90,101,95,93,105,82,99,111,93,105,103,111,108,80,95,101,96,93,95,96,92,100,84,89,99,92,102,93,92,89,104,97,105,99,83,75,98,91,100,98,88,113,93,109,90,98,89,94,89,107,105,100,88,109,86,96,106,100,97,96,81,95,110,104,99,83,96,94,93,101,99,94,95,101,108,97,100,102,86,93,93,97,99,92,109,100,98,92,102,97,102,112,98,91,110,107,101,84,100,95,88,108,87,109,91,96,101,105,109,102,100,103,92,133,100,88,87,97,101,86,100,93,93,98,88,90,89,94,101,101,93,96,96,90,92,92,95,86,97,94,94,116,110,104,100,94,95,92,105,95,104,99,100,102,104,98,86,92,102,102,94,97,91,96,98,88,101,110,94,102,102,83,100,95,103,95,96,105,103,102,95,97,102,95,110,95,99,82,107,94,98,98,108,103,95,102,95,104,101,99,95,106,90,95,80,93,93,91,99,101,99,84,100,88,88,105,106,92,96,117,103,92,101,105,102,101,103,97,101,90,98,103,94,95,108,99,101,101,101,102,115,89,112,98,110,99,93,107,101,109,110,102,117,101,99,94,119,117,98,97,88,103,89,109,92,94,110,101,98,105,94,107,94,96,98,93,97,95,102,108,103,97,109,98,92,95,96,114,97,106,91,99,105,95,98,116,103,94,95,128,93,101,87,102,102,100,95,109,88,104,106,104,109,98,117,115,93,103,100,107,111,98,93,103,95,102,94,95,95,96,99,97,112,101,108,96,82,110,98,94,101,96,99,100,118,102,75,90,91,99,117,87,103,91,98,99,113,113,103,97,106,91,110,99,98,98,112,103,97,100,102,109,96,78,112,103,109,92,107,96,88,92,90,89,91,97,101,101,104,85,113,107,96,98,98,92,90,96,112,109,94,110,121,100,106,94,111,102,96,97,96,115,84,109,91,101,102,96,98,93,95,113,100,96,91,114,90,93,94,116,92,83,94,100,99,103,91,99,102,97,110,101,104,98,105,103,116,98,100,104,93,98,100,104,99,98,101,104,91,111,97,80,87,100,99,116,98,105,112,106,110,120,105,120,93,102,92,99,76,98,100,94,100,107,106,93,108,113,99,103,94,87,115,96,90,106,99,95,76,88,111,105,113,105,76,103,103,93,98,106,93,102,101,99,100,97,102,113,96,93,110,100,101,88,89,101,101,110,92,93,95,105,95,94,100,102,96,98,95,92,96,102,102,114,95,107,104,105,91,58,100,101,101,110,91,96,109,96,99,97,104,105,93,96,102,98,89,103,112,103,99,100,106,93,83,94,101,91,93,91,97,111,97,71,99,105,104,96,104,112,79,97,114,113,111,105,104,99,95,110,96,94,99,94,98,99,87,89,101,96,112,96,103,94,101,97,96,101,120,95,109,108,101,98,104,91,97,96,101,105,108,109,99,95,93,102,96,103,94,102,97,95,115,101,94,100,106,95,106,94,96,99,98,101,91,90,104,93,109,94,106,99,88,101,105,102,98,98,98,91,92,107,87,105,84,97,111,97,93,112,95,93,102,98,109,103,90,94,100,100,100,101,95,105,100,98,96,98,104,102,93,108,100,114,99,101,108,86,108,104,107,95,94,113,106,98,97,110,105,111,98,96,100,108,104,98,99,95,98,94,108,112,103,101,92,108,92,96,101,88,95,109,108,97,96,109,109,105,95,100,103,97,99,97,98,103,112,98,97,93,103,96,102,95,90,101,102,106,92,100,88,87,97,102,103,109,101,94,96,97,99,108,93,90,92,94,90,92,87,99,86,91,102,108,100,110,95,111,102,94,95,103,96,126,95,94,103,97,105,102,109,87,99,100,100,94,110,99,112,100,106,107,111,99,112,100,97,97,106,93,112,95,100,102,110,99,97,99,95,105,98,97,91,111,96,95,100,104,91,85,108,97,90,94,97,90,105,95,92,110,91,100,89,103,91,90,103,95,99,114,108,104,105,99,110,105,98,108,109,113,91,98,96,97,94,85,96,98,102,103,95,100,96,111,95,102,95,95,94,103,104,94,95,99,96,91,100,98,104,100,94,93,95,106,104,92,98,107,99,88,99,102,96,110,109,103,100,104,116,100,106,110,92,132,104,91,88,98,95,107,102,95,128,110,106,115,99,106,103,91,108,105,105,98,101,99,100,100,93,87,100,98,99,101,101,104,109,100,109,99,102,100,75,97,106,99,120,99,111,83,111,104,111,110,102,97,113,117,104,112,96,99,100,107,106,94,100,102,102,102,99,94,99,94,105,109,96,102,93,105,93,98,87,90,108,105,106,106,103,104,91,111,100,95,101,90,102,95,98,96,104,97,105,92,90,96,90,96,92,106,109,104,108,104,106,102,99,100,95,95,104,113,111,79,108,99,107,100,104,88,103,126,104,101,100,91,97,94,102,104,90,104,106,96,109,106,113,100,83,115,91,101,105,100,96,98,104,100,98,92,99,91,97,108,95,92,102,91,111,99,108,98,104,110,91,95,116,113,88,86,117,109,103,99,103,101,105,92,97,98,89,102,99,101,106,113,108,89,80,97,109,106,101,102,102,113,87,97,84,102,102,86,108,97,94,107,101,104,94,88,111,132,109,95,89,106,98,98,104,95,99,132,93,89,108,108,102,97,103,113,102,103,102,100,106,91,110,96,97,107,96,87,95,109,83,106,88,104,97,91,92,100,109,98,82,100,91,90,88,102,91,97,99,105,102,106,108,92,89,98,112,108,102,100,108,103,95,101,98,115,93,101,121,98,98,101,101,107,102,63,96,105,99,101,95,96,104,102,108,96,111,98,77,97,105,86,90,92,97,107,98,96,80,85,106,111,109,102,92,104,97,95,107,107,96,107,70,122,103,98,106,85,96,95,108,96,106,114,86,104,80,94,97,97,106,86,109,101,105,109,95,109,88,96,90,109,96,109,108, +720.05896,95,91,86,100,97,104,87,87,103,80,90,96,92,105,95,90,94,99,95,101,97,99,90,112,95,102,99,91,118,99,101,93,83,92,108,93,94,78,101,97,103,96,104,93,120,90,120,76,97,107,97,89,102,99,95,104,94,97,99,109,98,106,102,96,97,105,93,106,103,92,95,101,100,100,98,106,93,86,119,105,93,98,91,105,101,90,91,96,108,106,98,108,96,87,92,98,90,101,88,98,99,104,94,99,91,106,96,96,97,96,96,107,110,98,129,99,99,101,102,102,98,98,106,109,99,96,110,105,106,110,97,105,90,95,98,110,72,99,102,93,98,110,96,96,83,106,103,101,108,94,97,114,112,95,88,99,98,97,103,84,100,99,99,98,102,99,98,94,99,101,100,93,101,93,103,105,103,96,104,99,90,106,90,99,91,102,92,82,114,114,95,100,95,101,86,96,103,91,126,97,89,102,94,104,88,120,98,88,108,104,107,105,105,99,100,99,97,99,99,89,105,105,91,65,87,117,108,104,103,86,101,98,95,87,95,101,102,103,105,90,91,93,103,111,81,86,90,95,94,105,96,109,93,123,97,97,96,96,93,101,97,98,94,100,98,111,95,93,98,98,105,100,92,100,104,99,97,100,106,100,93,104,91,100,105,106,91,86,91,111,91,95,97,99,71,54,101,99,95,107,85,105,99,112,98,94,106,101,90,106,99,101,110,114,98,103,101,95,100,98,94,96,97,109,105,91,99,77,101,102,101,104,95,91,104,105,97,101,94,101,99,101,103,97,106,105,97,94,98,104,101,101,103,99,102,102,97,94,96,117,110,97,87,90,91,104,103,113,103,104,97,100,108,103,100,81,107,108,102,101,102,105,99,105,91,102,99,97,104,90,109,86,103,100,84,108,89,85,94,105,95,99,98,95,95,90,88,98,95,95,102,98,104,100,101,84,100,110,112,96,80,83,102,105,116,98,101,92,99,106,79,98,101,106,100,98,104,96,92,100,111,98,85,97,94,97,103,83,79,108,125,96,87,104,107,97,101,104,104,97,104,93,109,97,100,105,113,91,102,97,97,101,103,104,106,100,95,80,95,102,101,93,114,102,94,95,103,102,81,100,104,101,109,99,82,103,89,81,92,98,99,96,93,88,107,98,91,107,108,102,91,93,79,95,100,100,106,101,98,96,90,106,101,109,87,93,87,95,86,102,95,104,100,92,101,97,99,103,90,104,104,102,105,110,103,87,106,97,91,103,94,77,105,99,90,92,102,104,89,102,96,99,98,103,96,113,107,109,104,92,89,103,110,101,105,98,95,91,106,103,87,102,102,101,110,101,105,102,112,108,89,98,102,94,96,104,95,96,100,102,105,101,127,99,89,87,89,111,108,104,99,96,103,97,103,94,86,87,117,92,100,103,111,91,114,87,89,143,109,85,104,110,95,102,94,100,106,104,97,96,99,97,95,100,103,91,103,100,107,105,83,95,85,100,104,93,97,99,86,104,104,103,98,102,100,102,95,100,107,99,108,95,91,108,93,92,90,98,101,102,108,98,103,80,99,102,92,91,104,90,101,100,104,103,82,97,94,97,88,112,106,103,111,101,90,94,102,105,103,87,94,103,90,95,107,102,97,96,89,100,109,87,94,84,107,104,69,98,93,106,98,109,95,102,90,137,105,89,112,92,98,106,106,125,107,97,91,101,95,103,96,102,96,100,94,83,94,108,101,100,95,94,90,105,92,97,87,107,108,104,97,103,104,96,94,97,101,85,90,98,105,115,105,102,110,107,79,94,97,97,87,101,92,111,105,87,102,113,111,98,85,96,96,103,95,88,109,110,99,90,109,100,101,94,96,100,108,95,95,90,106,106,89,94,99,94,93,90,95,87,109,98,95,101,107,96,100,107,101,92,93,96,92,101,93,104,96,118,96,91,96,87,104,93,91,103,99,107,100,100,114,95,94,106,92,94,91,105,89,102,79,98,105,99,90,104,105,103,94,101,93,93,100,113,102,95,96,114,90,97,101,100,107,109,113,93,95,109,113,110,107,99,103,97,109,105,104,105,88,95,95,101,95,106,101,88,90,79,100,100,102,86,98,108,97,97,104,96,108,108,105,103,105,102,95,95,108,96,100,113,101,102,101,101,93,79,98,108,100,100,89,104,95,91,101,98,100,116,88,84,102,95,95,97,95,89,106,99,97,106,112,94,94,101,104,88,97,97,93,87,96,90,100,82,102,57,100,99,93,97,99,104,92,81,100,89,98,101,108,100,111,108,99,95,98,99,85,92,94,72,97,101,89,101,75,96,103,95,102,96,104,83,97,92,87,98,100,96,102,113,109,94,116,102,107,92,100,102,99,88,92,97,102,100,105,92,93,93,95,107,114,108,78,96,102,91,99,99,108,100,98,121,94,98,102,104,82,102,107,94,97,110,98,95,108,117,99,92,97,91,106,94,98,89,98,95,95,107,102,108,98,102,109,89,108,98,98,103,99,86,109,87,106,106,95,103,84,100,114,93,95,109,97,102,95,107,87,87,95,105,96,103,93,92,101,105,92,90,97,90,108,108,112,86,99,85,85,96,98,95,99,92,98,95,90,93,100,105,103,91,101,96,123,108,99,94,89,92,97,102,87,96,93,93,97,102,95,97,93,96,103,110,114,104,94,102,99,104,97,95,108,99,100,99,84,104,102,86,101,106,98,97,95,104,96,91,104,101,104,89,99,101,86,105,111,84,105,90,98,102,100,89,98,109,101,98,107,94,102,107,105,101,89,97,90,105,95,105,94,96,98,91,93,99,98,95,92,104,107,95,109,101,103,106,99,83,79,99,105,103,106,108,87,89,94,104,105,108,91,101,107,90,104,101,110,109,93,108,95,112,105,100,104,102,97,112,101,105,93,125,102,80,97,108,97,95,99,99,98,96,97,101,92,100,108,96,90,92,103,108,87,101,97,80,101,95,109,94,99,102,101,93,102,97,93,103,88,96,113,95,102,104,92,101,71,97,105,104,106,94,110,88,102,96,110,92,94,104,101,90,104,106,101,90,92,95,97,99,100,99,115,104,89,89,92,101,104,96,94,92,103,107,102,87,85,86,109,98,106,102,104,108,94,108,111,98,95,92,97,106,100,109,88,95,98,92,91,91,86,93,92,103,98,98,92,107,88,99,99,102,95,103,102,112,97,98,101,95,85,103,94,98,113,100,100,89,105,101,107,102,100,97,93,87,110,99,107,101,102,90,100,102,108,102,92,99,92,101,84,93,107,106,99,106,92,94,90,88,102,99,93,98,94,111,102,92,97,106,101,109,77,113,103,94,109,93,89,88,101,91,89,103,98,91,104,87,93,87,93,91,116,108,105,95,94,104,96,99,105,93,91,103,101,102,109,98,92,103,89,91,97,97,125,101,94,101,104,101,97,101,108,95,103,103,92,86,95,98,102,95,96,100,105,101,90,93,92,90,98,86,104,94,96,84,92,96,99,88,95,101,95,95,95,108,97,97,100,79,103,100,112,80,97,97,98,95,99,105,91,96,91,103,97,105,100,98,83,101,95,95,101,103,88,88,98,92,92,95,94,83,94,102,99,101,89,102,109,103,98,97,87,93,105,91,79,74,86,101,88,93,89,107,100,93,93,91,89,87,99,99,106,82,93,103,98,98,101,120,105,120,95,99,102,93,85,102,96,92,90,99,83,100,100,89,108,103,102,94,94,97,98,88,97,96,98,97,83,92,83,104,100,99,92,102,95,100,98,100,105,102,100,90,112,84,109,79,92,92,98,99,95,102,102,102,90,97,91,90,100,104,105,98,95,100,92,103,91,93,105,102,102,102,94,87,101,89,99,95,115,117,98,110,98,98,103,87,108,97,89,107,84,105,93,95,97,93,92,90,94,100,87,97,102,96,110,110,94,86,95,98,101,91,78,102,95,95,108,91,101,96,89,104,90,100,93,65,95,101,94,85,102,104,98,91,98,96,88,95,99,100,93,117,99,104,106,90,95,88,96,93,103,88,93,80,110,106,101,93,100,107,106,100,90,78,102,95,88,88,110,97,102,113,105,87,98,107,67,98,86,104,112,97,98,107,96,102,93,90,106,109,99,88,103,103,108,101,103,100,99,88,102,90,90,97,102,103,99,89,97,92,98,88,99,91,87,103,90,97,98,103,95,100,102,102,109,99,93,109,98,103,102,102,109,98,102,100,93,94,94,105,98,106,108,99,98,98,81,99,99,93,103,95,96,98,93,91,101,96,102,101,112,89,106,96,96,89,101,97,88,98,103,101,99,97,101,105,102,97,91,107,84,100,106,122,100,85,109,94,88,71,101,103,95,99,100,97,101,107,101,95,91,120,98,103,87,97,97,99,100,101,102,93,89,98,89,94,94,101,111,106,90,94,98,91,95,100,82,102,104,95,100,111,96,95,92,87,79,99,105,97,107,92,104,106,92,80,104,97,91,92,79,92,99,90,102,88,104,87,104,103,91,79,92,109,98,98,115,90,103,88,69,90,101,97,98,96,102,95,91,100,97,88,100,104,103,98,98,111,105,94,102,109,98,102,108,108,105,91,102,88,96,104,91,111,106,94,91,87,105,102,94,101,102,117,84,108,106,94,101,99,102,92,102,87,101,106,97,98,106,93,109,91,106,97,91,101,102,99,103,94,99,92,87,97,114,94,93,96,98,104,104,109,95,96,102,95,109,93,99,94,102,97,91,118,106,96,87,100,91,93,108,75,96,113,112,84,98,99,95,86,79,90,101,101,100,97,93,96,99,94,107,101,112,103,92,96,84,114,102,84,111,95,99,88,94,111,106,107,105,106,94,132,92,101,88,94,85,102,105,128,92,94,101,93,110,95,88,96,102,93,93,69,90,93,92,102,93,96,98,74, +720.20032,101,87,83,88,78,116,99,95,98,113,98,82,108,98,100,102,94,91,112,99,101,94,101,96,90,101,92,109,96,87,105,90,108,105,100,103,86,100,96,92,104,93,87,96,106,104,92,100,117,90,89,102,99,96,105,86,93,104,100,84,91,94,98,96,99,99,93,107,98,101,95,91,90,94,91,97,99,94,99,100,84,96,111,84,85,102,85,97,95,92,98,113,98,97,100,104,82,90,105,104,101,95,93,91,95,100,85,88,82,94,104,104,91,96,96,90,86,111,99,102,92,106,91,101,86,95,107,97,109,139,96,105,72,107,103,99,96,97,106,98,94,63,96,77,99,98,115,94,90,94,102,94,100,97,86,95,97,87,99,97,91,81,107,110,100,93,93,104,92,117,99,96,95,106,99,98,77,98,98,102,93,88,90,110,105,96,86,109,104,126,96,96,102,113,86,89,101,98,98,93,99,86,98,98,103,88,85,101,93,96,98,94,98,104,101,108,98,99,96,90,99,98,56,95,82,102,98,98,101,93,97,100,105,85,86,100,94,92,98,105,83,105,96,94,95,88,97,104,94,99,88,99,106,97,93,91,103,103,93,90,89,98,91,102,93,97,100,104,100,85,104,96,107,93,99,97,112,104,99,91,84,94,86,103,97,95,92,101,89,93,93,105,102,96,95,101,84,114,100,82,88,86,99,114,94,109,101,90,90,96,86,97,101,105,98,96,94,99,110,86,100,93,99,88,96,95,94,89,96,86,99,105,101,106,97,97,94,98,96,84,98,105,95,96,91,99,98,100,89,97,95,90,95,100,94,96,104,85,103,102,104,79,100,93,94,91,100,98,95,102,103,86,102,81,97,95,94,95,89,103,102,96,90,89,103,90,98,101,92,63,95,72,85,106,102,90,100,92,90,104,103,101,108,82,109,99,112,108,104,100,95,95,99,108,99,98,101,113,100,97,101,95,101,97,100,98,89,96,96,93,101,86,109,87,93,101,89,98,103,100,98,93,97,92,99,108,100,77,97,98,99,95,97,101,96,100,91,79,106,100,98,77,106,99,103,102,103,98,103,84,90,106,94,93,70,99,93,102,107,101,93,101,101,105,96,88,106,99,86,101,107,99,104,95,108,88,91,92,96,83,102,92,100,104,99,101,80,96,105,97,107,95,92,103,108,101,91,113,86,101,93,106,77,97,104,95,100,109,97,104,101,97,93,106,97,103,102,92,95,103,92,120,101,74,98,100,106,92,94,97,105,105,100,97,94,89,101,86,102,109,99,101,97,104,101,105,97,96,91,96,92,114,104,93,88,101,84,104,100,102,94,120,106,101,110,95,94,99,92,73,113,101,87,102,107,101,136,90,101,89,106,103,105,99,95,97,109,94,94,109,79,87,98,101,98,100,92,104,100,87,91,97,102,105,99,102,110,103,107,105,97,95,99,109,83,96,108,94,96,96,104,104,91,99,92,108,96,87,112,110,98,109,116,100,104,107,95,111,105,108,101,98,96,91,110,85,113,118,105,92,108,99,97,94,89,86,104,98,92,92,103,95,100,91,89,99,95,104,97,106,106,96,93,99,102,93,91,102,85,92,100,107,97,106,103,108,98,106,101,90,98,99,102,97,98,115,123,99,100,101,95,92,103,95,97,102,120,105,89,113,95,119,93,97,102,96,100,90,109,91,105,94,104,102,94,105,97,101,105,107,110,97,93,104,110,97,94,99,98,105,98,88,101,109,98,96,109,103,86,94,100,100,89,89,101,92,98,103,98,95,108,96,95,98,100,103,102,103,91,98,102,96,98,98,97,98,95,103,101,91,97,101,100,107,101,90,104,106,96,78,105,100,97,73,104,102,102,107,102,101,88,102,97,97,104,91,113,101,117,96,96,99,98,103,114,97,99,104,85,101,99,103,100,94,87,90,99,99,99,105,86,85,93,103,111,98,91,101,91,92,86,99,109,103,100,93,99,96,104,108,92,100,101,98,93,104,108,94,104,96,90,90,102,94,96,97,97,94,105,98,99,105,96,107,96,65,96,115,91,103,103,106,92,95,111,94,86,96,102,104,100,107,110,105,108,110,93,98,97,104,105,100,116,93,110,100,95,107,98,100,91,96,97,104,108,98,93,91,107,93,96,100,100,100,102,96,97,98,105,97,98,105,102,93,100,102,97,96,95,109,95,86,97,92,95,100,97,108,93,109,94,91,92,114,101,101,105,108,92,107,86,97,101,100,94,97,94,92,99,99,99,97,85,94,106,98,105,100,89,105,101,98,99,97,91,94,95,92,91,97,101,103,92,98,105,101,101,87,93,82,102,103,93,91,94,114,114,105,106,105,103,98,107,87,105,96,84,99,103,92,90,97,96,94,76,87,100,101,103,100,94,90,102,95,104,104,105,111,65,105,92,93,105,94,99,93,96,101,100,92,84,104,97,113,91,98,95,94,90,95,74,104,83,107,103,102,95,101,107,96,106,102,92,91,107,99,115,92,112,111,109,94,103,103,101,100,112,95,86,100,94,110,105,102,104,96,101,105,101,113,111,108,105,91,109,97,108,90,96,94,100,102,102,98,87,98,88,103,81,91,103,70,100,104,93,109,97,101,96,100,92,107,100,101,103,98,108,96,106,107,101,92,97,87,102,117,94,92,108,93,95,98,90,104,102,94,102,95,105,98,98,110,94,95,100,108,106,112,100,95,91,104,107,100,100,95,113,97,98,106,101,90,102,103,83,103,102,99,95,89,115,97,91,108,91,106,100,110,101,127,93,102,96,95,100,109,101,102,109,99,93,103,93,102,92,92,97,101,94,116,102,106,102,94,103,95,92,108,120,102,102,87,104,109,94,87,97,124,93,94,90,105,103,91,102,94,108,101,87,105,73,99,90,105,98,98,92,102,117,97,91,112,116,86,94,110,95,104,92,102,96,98,94,98,94,93,112,95,96,94,97,100,99,95,94,101,108,107,94,103,91,88,106,109,121,104,94,94,91,99,113,100,92,103,113,93,91,113,104,103,92,106,99,103,111,114,82,117,92,104,98,102,99,110,101,113,95,98,108,96,100,104,102,97,94,89,95,92,100,96,102,94,104,96,100,108,100,85,100,98,95,99,94,100,99,94,107,105,99,102,103,117,87,96,97,95,97,118,100,86,92,100,104,97,98,102,94,102,98,96,98,94,92,90,96,93,108,102,100,96,96,103,92,96,99,95,109,104,109,104,96,102,93,103,90,95,106,99,92,102,94,100,101,106,100,106,102,104,94,96,103,91,102,107,102,108,116,99,109,101,103,102,96,104,120,104,101,87,104,122,113,97,102,96,106,87,93,92,99,99,90,103,101,105,83,89,96,120,88,107,95,101,98,96,75,94,104,103,110,84,105,91,101,93,93,100,82,110,107,102,91,116,95,86,101,95,109,95,96,94,91,93,96,105,96,99,98,103,96,96,97,106,99,94,92,101,103,102,89,99,99,91,104,100,100,96,108,100,101,91,94,104,99,99,109,90,100,98,95,94,109,103,100,105,97,106,99,94,102,106,110,111,98,98,103,104,93,99,97,110,99,96,107,90,109,95,94,116,99,93,97,117,117,103,99,103,101,111,88,95,94,98,103,97,100,94,106,93,110,96,94,97,97,94,107,90,97,89,101,108,99,96,96,97,101,91,97,68,98,97,96,97,93,101,108,89,96,102,106,97,99,92,102,101,110,88,94,111,105,97,88,84,99,100,94,102,98,97,93,98,95,101,96,94,96,102,95,99,100,125,97,92,101,98,112,83,102,97,108,112,102,101,95,95,91,102,87,104,108,107,91,99,105,97,89,98,106,96,88,98,87,96,99,103,106,102,101,97,97,97,105,102,100,98,101,105,91,101,98,92,91,106,103,97,102,96,86,101,92,104,110,95,99,87,100,79,93,88,111,96,100,88,102,97,69,114,93,95,102,97,102,84,83,105,103,93,98,114,98,106,97,107,91,106,85,93,86,96,111,90,104,99,91,96,108,102,95,91,110,105,103,101,103,97,99,117,108,103,97,96,108,103,83,113,99,97,108,110,102,99,109,95,87,94,88,102,107,116,98,93,86,99,100,105,102,87,101,108,103,96,99,96,109,93,102,100,107,91,94,103,91,107,93,96,100,97,91,96,113,105,122,102,102,98,93,92,100,100,93,101,94,101,105,104,95,91,97,113,128,79,99,110,107,101,109,95,93,91,86,109,110,93,102,96,89,96,100,97,106,107,97,108,113,94,92,100,92,95,98,100,98,99,97,105,96,100,109,91,91,97,108,113,103,101,93,101,102,101,101,105,121,97,110,118,95,99,99,97,91,100,101,99,105,91,102,87,96,113,98,83,106,109,100,106,92,98,83,104,109,109,91,94,71,98,102,108,113,100,95,107,94,96,115,100,97,104,98,94,101,99,105,99,96,97,95,93,78,94,99,101,107,107,98,114,99,95,92,69,109,92,96,93,101,100,108,96,108,115,98,95,84,95,93,103,95,106,117,95,79,99,91,97,100,99,90,92,90,100,100,104,99,84,112,103,103,114,97,96,98,90,93,101,101,96,93,112,107,102,98,79,123,103,96,99,96,96,96,87,107,100,98,101,100,113,94,111,104,100,94,99,116,101,96,97,105,95,101,105,99,96,92,105,109,93,95,93,102,84,104,94,91,108,99,100,105,102,107,91,82,99,98,106,95,115,102,99,101,95,112,105,82,81,84,101,98,93,96,93,101,95,108,91,101,120,111,100,105,113,95,96,94,93,91,98,95,100,105,110,97,64,92,101,109,104,100,117,75,108,107,98,106,97,96,98,108,98,104,95,100,108,109,103,103,91,92,96,101,87,108,100,110,74,101,104,107,84,120,112,84,100,96,108,98,113,106,102,96,91,93,96, +720.34174,88,101,104,97,94,105,101,93,107,103,98,101,101,102,81,91,105,103,94,95,101,100,103,106,86,97,96,98,98,121,116,96,100,97,104,105,108,89,87,100,87,101,92,98,103,103,92,110,88,104,88,98,105,96,104,100,88,100,114,94,87,107,103,80,100,112,87,101,102,91,118,101,96,96,83,108,101,87,107,107,92,102,99,94,85,91,88,105,99,93,91,97,99,94,95,90,97,103,102,101,96,98,101,103,101,98,93,104,98,106,87,100,106,101,107,106,100,97,95,97,92,93,91,107,104,131,100,93,106,110,94,116,101,101,100,102,95,107,91,99,99,108,105,96,98,101,106,96,107,101,96,78,102,91,88,112,91,93,96,99,97,98,101,98,103,83,93,102,99,96,99,90,107,91,114,100,99,104,96,102,95,95,95,77,94,94,101,81,97,98,99,90,102,98,95,105,105,103,98,110,90,107,98,111,102,108,102,105,88,105,98,99,105,98,141,94,80,110,83,101,96,97,106,85,102,103,108,99,96,95,100,108,91,98,94,99,112,103,93,100,93,104,98,104,89,102,122,95,99,92,102,108,111,127,94,102,109,106,98,132,103,98,95,85,110,96,99,86,96,88,101,85,109,97,91,90,79,101,97,97,87,113,94,97,91,103,85,105,96,102,98,98,110,93,87,109,99,87,103,96,98,97,102,102,112,102,91,99,80,115,88,112,94,103,96,98,101,105,104,89,91,95,92,99,95,110,83,98,102,105,95,100,107,97,83,109,100,106,90,106,95,96,102,86,95,100,93,99,99,107,104,98,104,95,91,96,113,90,96,91,74,106,96,97,102,94,94,113,103,97,91,107,85,98,101,94,110,97,94,111,99,109,102,100,117,101,92,98,100,86,106,82,99,103,99,92,100,87,97,105,92,100,95,95,84,88,99,95,102,90,100,97,97,103,93,111,96,95,99,94,100,94,99,98,95,90,93,88,96,99,86,100,90,91,98,94,87,98,104,90,75,103,94,103,83,100,91,96,102,103,104,97,94,103,110,94,86,97,95,112,109,93,101,94,97,92,109,106,90,89,104,106,98,91,99,102,96,112,102,105,100,99,106,103,110,83,92,92,98,92,129,99,95,90,98,93,95,93,95,97,94,100,100,102,101,87,92,96,117,88,107,95,104,99,96,106,99,103,91,78,104,91,104,93,95,91,104,92,105,95,99,107,94,104,101,100,111,100,86,95,98,100,91,95,108,90,91,103,92,94,107,99,91,89,84,105,86,102,92,90,104,94,76,103,97,111,95,96,99,88,93,103,99,108,90,96,64,101,92,92,87,93,86,93,98,88,107,101,101,98,101,92,84,92,120,101,95,92,100,90,104,102,101,87,89,97,100,88,106,102,106,96,113,109,96,89,103,99,102,101,101,103,98,92,100,109,98,93,99,91,100,95,97,95,86,98,89,98,99,105,96,90,104,106,95,93,98,93,103,101,97,96,83,106,101,114,98,116,103,114,114,104,100,100,100,97,107,85,106,108,103,101,106,96,82,95,100,105,103,105,107,121,104,100,102,108,97,105,105,91,89,91,64,90,102,108,95,99,104,80,101,94,97,98,97,105,107,101,99,99,90,103,100,96,94,91,110,103,94,86,94,100,111,117,94,92,95,90,98,108,102,106,105,97,96,101,95,95,104,92,89,83,93,95,105,90,91,96,92,103,98,94,89,108,100,98,113,91,89,106,95,118,99,102,83,98,95,111,97,103,96,88,89,86,96,101,94,100,116,91,101,111,103,96,101,97,107,105,91,109,93,96,110,102,99,100,96,102,113,101,94,106,95,107,93,100,103,94,99,96,102,100,100,106,109,97,100,104,104,95,95,98,97,95,98,114,101,102,101,112,100,91,105,93,100,97,105,90,104,104,92,103,104,110,94,92,98,95,119,94,96,105,99,114,100,104,101,94,100,90,98,92,101,106,94,94,99,105,92,93,110,91,103,100,99,101,96,112,96,91,102,102,100,93,99,118,99,107,97,93,97,92,105,111,96,93,90,76,86,99,94,96,96,99,84,106,93,111,102,92,101,126,98,111,100,105,93,96,101,107,108,86,105,102,102,102,99,110,101,82,84,108,100,100,94,109,91,103,101,97,103,93,106,106,91,101,101,97,105,90,110,82,110,90,112,104,98,103,93,95,113,99,99,99,104,95,96,119,90,120,91,92,94,93,90,101,113,91,103,102,101,96,99,93,93,105,99,95,87,76,100,107,98,101,99,83,106,99,110,100,97,103,99,104,108,101,97,106,104,110,85,74,96,102,91,97,95,107,89,100,105,105,90,83,105,102,129,88,94,105,104,109,100,86,87,89,82,104,108,89,97,116,87,98,80,99,102,87,96,85,67,123,103,95,97,102,96,102,92,100,96,103,107,102,99,96,99,75,105,99,90,100,102,98,100,103,100,98,82,90,99,102,96,68,91,98,95,90,105,108,91,99,94,93,95,106,101,97,91,99,107,95,96,95,116,97,102,92,110,88,93,95,97,94,84,97,116,97,94,99,89,96,92,100,108,98,93,105,80,85,99,117,91,102,96,98,96,95,106,92,99,90,94,102,106,87,88,93,115,98,102,99,103,95,104,75,98,100,104,91,97,91,102,89,85,104,96,80,94,100,93,105,103,113,90,125,88,111,94,109,102,101,100,112,68,107,108,97,89,87,95,97,116,102,93,88,99,90,101,106,97,102,92,105,83,96,103,91,101,99,108,109,103,100,96,101,99,97,100,95,100,99,96,75,100,97,97,101,96,100,95,94,110,89,97,106,111,99,96,98,95,101,93,96,87,105,96,95,102,91,87,99,100,105,99,98,97,93,98,107,102,91,99,107,95,90,89,102,96,90,93,99,92,98,109,93,108,110,91,108,93,99,107,99,93,104,88,106,121,105,96,95,99,108,95,102,94,101,105,102,91,105,96,100,89,93,92,88,97,108,97,110,131,92,93,113,100,88,99,95,101,98,95,95,100,100,102,102,107,102,100,112,85,99,84,94,96,95,94,90,95,99,87,95,107,98,90,113,102,87,98,95,109,100,98,97,95,101,103,88,95,91,67,100,98,87,104,108,101,99,77,96,85,99,103,105,89,104,100,84,99,100,96,98,99,92,92,96,87,76,84,108,100,105,98,105,93,94,105,113,94,88,96,97,90,102,99,101,98,93,95,97,83,92,97,96,98,112,101,101,99,98,101,94,91,94,99,91,101,111,104,96,102,107,100,94,95,112,102,93,96,98,97,97,98,96,97,89,106,83,97,99,88,93,95,102,103,99,96,91,96,85,96,93,92,92,101,105,99,96,100,110,103,91,81,103,64,89,94,99,97,95,104,108,96,94,98,103,103,108,102,100,108,104,100,103,93,98,99,101,114,98,85,104,100,95,65,115,96,86,89,97,99,92,86,116,97,100,103,100,96,98,102,106,96,92,96,95,67,103,91,101,98,88,92,91,104,103,91,90,101,96,87,97,97,101,104,100,95,97,94,94,100,103,99,95,97,89,95,108,106,95,88,113,98,102,94,103,95,98,101,91,98,98,89,91,87,93,109,98,92,137,89,104,104,89,106,94,93,89,97,93,94,104,106,96,104,106,104,97,93,102,103,96,108,81,99,91,94,108,86,96,103,105,99,96,94,102,104,100,94,109,103,94,93,77,95,96,96,91,100,87,93,106,102,112,95,101,77,93,97,96,95,99,92,112,99,101,110,104,91,100,100,87,94,94,102,93,94,98,96,88,96,93,98,92,87,84,106,102,107,107,97,104,103,98,98,109,109,108,97,109,96,91,90,97,84,108,96,95,94,91,100,92,96,97,101,99,119,97,93,106,100,94,102,98,109,100,90,105,93,99,96,107,91,96,94,98,99,92,101,95,95,93,93,103,96,102,90,99,102,93,99,94,93,99,101,101,112,92,86,103,102,101,91,107,101,99,96,110,105,102,98,90,101,107,98,108,86,106,92,103,95,99,109,100,87,93,97,93,98,96,95,97,99,109,104,96,96,105,99,97,87,85,93,87,99,91,92,93,100,91,98,114,93,99,95,102,94,104,102,104,102,107,96,99,104,108,115,93,98,100,99,100,108,88,102,102,96,107,102,105,87,94,90,106,91,102,95,98,109,112,98,102,97,102,113,107,100,95,104,109,113,97,104,98,100,116,96,86,109,98,93,100,99,91,102,107,95,86,100,100,106,96,101,95,98,105,101,95,97,100,96,97,97,83,83,101,97,90,91,91,121,102,94,102,78,112,102,108,103,102,91,97,98,122,95,106,105,108,101,105,106,107,102,69,112,100,96,101,99,82,100,94,93,91,97,88,99,113,107,90,111,100,97,111,96,99,113,101,110,76,103,87,92,92,103,83,107,111,91,79,103,104,99,105,94,96,102,96,105,105,109,90,105,97,98,98,94,104,97,117,106,103,105,92,96,97,98,102,108,71,91,99,96,94,101,91,96,97,86,98,95,105,99,100,94,90,98,96,90,96,94,104,80,100,110,91,98,103,94,91,97,106,104,110,114,95,105,91,98,100,99,97,105,92,75,82,87,100,93,95,103,97,104,108,101,101,99,98,94,116,112,92,100,92,88,102,99,98,109,90,108,102,88,95,101,71,93,98,98,103,95,99,89,98,114,100,109,89,98,101,110,99,101,115,98,103,95,104,106,98,100,100,101,90,102,88,96,83,102,90,91,96,100,105,97,107,78,90,101,94,105,109,99,102,99,94,94,96,100,105,96,106,86,96,110,90,92,100,100,96,91,106,107,92,106,106,100,95,107,88,93,97,102,95,85,97,95,98,96,102,92,92,108,100,110,91,103,105,76,85,103,91,97,91,96,101,97,92,105,89,98,96,104,86,110,103,99,87, +720.48309,109,97,92,104,92,113,95,106,106,96,93,91,89,95,104,110,95,96,103,101,102,97,88,110,104,114,113,94,96,111,94,108,97,101,105,101,99,91,102,71,94,101,101,92,104,87,111,82,91,113,101,107,96,103,112,88,97,100,113,87,77,105,105,93,101,100,88,97,112,88,92,83,96,99,104,109,96,106,100,102,103,93,105,107,97,72,97,96,93,81,100,94,95,97,100,105,112,100,90,98,86,103,95,121,91,99,97,108,96,114,95,101,100,104,90,95,102,100,96,104,98,112,98,100,97,97,106,95,101,103,99,101,87,102,101,101,97,95,103,99,95,109,104,90,91,100,104,95,91,97,59,99,106,95,92,97,87,84,96,95,88,96,101,95,93,101,96,90,106,96,98,96,94,97,107,103,102,84,108,98,94,100,92,101,105,109,100,96,103,105,87,97,104,113,92,106,92,112,100,109,98,102,82,97,107,79,106,93,99,110,91,105,109,106,95,106,95,99,86,100,85,104,83,99,90,97,90,95,95,101,102,101,101,95,98,95,95,103,102,97,100,81,104,87,92,104,92,95,122,103,96,108,89,98,91,99,87,102,109,85,96,97,106,96,105,90,108,87,97,88,94,92,103,95,105,88,104,96,103,98,85,108,94,82,91,98,97,101,94,84,103,91,110,99,105,94,99,95,105,103,94,104,99,107,92,99,90,83,109,106,95,91,104,85,102,92,98,98,102,102,93,87,111,113,100,100,102,94,105,96,116,94,101,99,100,97,100,96,98,97,102,95,94,91,90,113,108,99,103,102,91,95,81,98,90,98,94,106,103,97,94,90,83,102,100,87,95,106,101,108,106,106,104,103,104,95,103,106,93,97,114,93,95,93,87,88,103,103,106,94,106,100,85,91,91,96,98,110,86,97,98,94,88,94,117,99,101,103,109,100,94,87,98,106,93,89,97,102,108,106,98,104,83,99,91,97,88,93,100,105,92,90,88,97,65,74,90,105,107,94,104,98,98,99,89,100,102,86,116,103,99,90,105,105,102,92,102,107,98,99,96,98,90,99,99,93,86,92,97,93,109,104,96,100,83,93,97,80,101,110,106,109,100,114,97,102,111,95,88,105,100,91,101,108,99,98,91,104,99,95,100,80,103,87,105,91,104,97,89,98,105,92,110,111,99,98,105,98,103,90,91,96,95,93,99,97,106,100,100,96,81,105,92,92,98,99,113,108,100,99,106,97,101,101,116,94,116,95,109,101,105,94,96,85,96,78,104,90,95,95,107,101,97,119,91,102,101,106,101,100,72,92,98,95,97,100,91,96,99,95,91,105,109,108,101,95,109,104,96,102,89,99,100,93,109,95,108,97,105,92,96,89,114,106,95,94,104,101,91,117,104,96,116,97,101,97,96,102,92,105,90,99,102,91,94,93,92,92,91,93,90,97,94,107,100,100,102,92,97,112,95,92,98,101,89,96,91,76,105,96,89,95,108,95,97,96,105,105,107,102,102,105,100,100,92,88,102,95,103,91,106,105,101,101,102,106,100,112,87,82,96,98,112,110,99,96,94,87,93,95,104,99,106,103,99,101,90,98,99,101,82,98,106,106,96,95,104,109,115,96,96,91,99,95,84,103,110,96,98,82,103,103,95,95,88,85,93,102,96,103,100,106,86,108,101,105,114,92,99,97,107,84,99,102,93,95,83,87,105,94,99,101,120,77,97,85,90,98,96,109,92,82,91,103,98,100,89,90,100,92,102,83,99,94,80,94,107,101,99,102,89,100,101,88,90,91,98,94,108,88,111,96,86,102,96,98,65,98,94,103,104,98,95,92,86,88,105,105,83,93,105,93,92,96,103,110,116,93,75,98,108,113,96,100,104,104,107,96,111,110,105,93,101,96,103,104,88,88,104,96,84,96,92,95,97,92,91,100,95,101,105,90,101,100,108,95,96,102,138,98,113,103,94,108,96,94,97,105,99,96,95,112,105,109,87,99,101,101,104,94,83,84,106,115,93,102,101,103,102,98,98,105,111,113,87,103,97,107,93,84,117,96,104,97,96,96,93,101,105,94,106,103,99,96,100,90,108,98,78,95,102,106,104,113,98,102,99,98,105,108,100,103,100,94,86,89,90,101,82,102,91,90,95,101,111,93,97,87,104,92,98,100,106,107,91,87,106,107,103,108,100,102,102,95,106,86,92,96,102,87,104,91,102,86,88,100,95,95,106,76,91,93,106,94,88,96,104,93,90,101,96,107,98,107,87,101,91,103,88,94,93,99,110,102,115,108,100,104,90,117,97,94,83,99,92,92,98,94,90,102,109,101,96,93,92,100,90,115,105,88,115,96,97,98,96,98,90,94,89,96,94,87,100,87,98,103,100,89,86,105,99,105,87,98,93,62,92,103,96,103,93,101,93,98,90,96,95,95,98,94,74,105,103,88,91,93,81,111,78,96,100,92,90,101,94,99,100,106,112,99,102,98,104,97,100,109,87,102,114,98,115,115,102,109,102,107,93,110,115,85,109,105,102,113,107,110,129,93,95,107,103,84,101,105,113,96,104,101,88,105,95,113,101,104,89,107,86,98,99,83,115,102,105,102,94,91,92,96,108,98,114,103,102,103,108,98,88,109,105,103,91,97,110,81,108,115,100,98,104,82,124,89,108,110,98,94,95,95,109,98,96,103,102,105,121,102,105,94,102,115,99,107,110,91,83,104,103,103,97,94,110,99,104,102,99,101,107,100,100,101,97,107,94,91,87,108,109,71,102,92,112,98,95,109,94,106,108,99,109,95,96,104,88,101,103,99,98,105,101,98,104,97,99,94,100,103,102,102,102,125,101,101,106,95,99,94,87,108,106,84,115,99,106,99,97,99,95,95,99,98,103,94,102,103,103,95,105,100,105,103,108,104,123,88,95,91,104,100,97,104,94,119,107,97,97,102,95,101,108,110,105,110,94,85,78,96,87,92,90,99,95,101,95,91,99,110,104,92,103,93,102,98,99,100,104,107,125,102,94,97,97,111,99,117,100,108,93,111,94,107,96,115,97,92,100,100,83,96,98,109,104,116,91,116,92,88,94,108,98,93,101,122,106,90,89,99,93,101,102,80,111,101,103,99,101,106,96,113,94,101,101,87,89,109,95,99,92,93,86,109,95,99,114,104,97,106,101,101,111,88,107,94,93,99,104,111,101,102,102,95,105,101,92,110,95,95,98,97,105,91,107,99,105,92,92,88,108,96,103,103,97,104,92,72,106,100,105,106,90,98,97,94,123,104,108,95,92,96,104,112,108,86,94,100,97,88,105,109,92,99,92,99,98,97,95,103,91,85,103,100,103,99,103,94,98,97,89,98,105,98,95,97,93,108,93,94,102,65,106,101,105,108,94,101,109,96,109,101,95,97,100,93,100,108,95,113,105,95,98,95,107,106,96,100,108,95,103,103,101,88,95,113,95,109,114,76,101,103,102,97,96,96,87,88,103,102,109,103,98,98,101,111,107,103,114,93,94,117,100,91,107,103,123,76,78,92,108,97,97,97,103,100,94,96,94,98,98,105,88,102,104,103,90,106,107,102,105,98,92,108,91,127,100,102,120,99,107,81,94,81,105,107,97,101,101,99,99,75,109,103,106,98,101,101,108,98,109,96,106,95,102,112,98,112,97,101,97,98,114,95,107,109,97,99,109,97,93,110,89,101,102,98,101,112,105,110,113,99,109,89,103,93,99,102,109,107,99,106,87,106,103,100,95,106,99,100,84,101,112,97,99,101,100,102,98,98,113,91,113,102,105,98,75,109,99,100,101,108,107,101,99,102,108,105,105,112,97,100,93,105,101,101,104,76,91,102,106,97,106,102,107,109,95,88,101,112,97,124,92,108,93,97,97,88,102,97,109,104,104,101,101,104,100,118,97,106,104,104,98,109,105,90,105,86,102,103,110,83,103,99,98,103,87,106,91,88,106,86,106,94,96,103,102,101,99,101,100,103,96,102,98,118,101,109,98,101,97,85,105,96,100,105,101,95,111,102,88,102,116,100,102,105,99,100,104,108,108,96,102,89,98,99,106,98,100,94,98,99,97,102,109,118,104,101,123,81,103,101,83,112,98,106,95,98,97,105,97,106,102,83,84,101,108,112,89,98,94,91,104,100,99,95,102,99,117,107,104,98,94,101,109,102,107,95,112,98,96,89,103,101,119,123,92,97,113,95,96,105,108,104,105,94,103,90,83,89,110,105,101,96,104,94,105,100,102,109,99,90,107,89,103,101,104,103,117,91,105,88,96,95,102,104,99,98,100,90,96,107,112,100,98,100,101,112,104,108,102,99,105,105,109,93,97,113,110,83,107,104,96,92,98,116,104,109,103,91,102,93,89,97,102,113,98,108,95,107,104,107,105,85,99,87,77,88,88,103,92,107,108,114,110,112,100,99,98,128,88,95,99,104,104,109,100,103,110,95,109,116,102,112,97,102,95,122,108,98,95,92,114,93,94,90,111,107,115,102,106,102,115,89,109,93,96,98,90,105,90,108,107,84,66,104,95,100,107,111,116,123,100,94,103,107,109,91,100,109,108,97,97,104,97,96,90,107,104,114,99,99,104,103,101,112,98,113,104,112,102,113,98,91,96,96,104,92,94,98,99,91,88,95,101,100,102,109,92,100,105,108,80,101,96,93,95,109,99,92,120,118,107,110,104,106,109,100,108,98,113,94,124,86,95,106,98,106,112,113,102,95,112,104,108,99,101,101,92,102,98,112,104,94,79,102,83,83,94,104,113,105,99,102,84,81,106,106,91,91,94,121,89,80,109,100,102,83,98,102,109,109,89,91,120,108,95,93,92,114,99,96,101,98,109,108,97,88,102,90,112,104,91,88,116,94,96,103,106,120,107,78,92,77, +720.62445,105,91,101,101,98,100,99,80,96,104,101,96,96,93,103,95,112,103,103,112,104,106,103,110,102,100,102,102,102,112,103,101,75,100,102,91,98,95,99,94,96,92,105,105,96,105,102,107,93,90,98,101,112,98,97,109,94,93,99,97,96,101,120,98,95,109,105,100,102,92,98,99,99,94,107,106,92,100,95,103,102,106,105,91,88,95,106,101,96,95,111,101,92,95,95,109,89,97,93,92,95,121,91,93,104,91,95,85,101,90,103,110,98,101,107,95,105,101,95,100,89,97,107,100,98,106,95,99,95,105,99,99,63,103,94,98,95,100,109,109,88,126,93,86,95,93,102,110,88,95,99,105,106,72,97,90,92,100,101,108,108,102,99,109,97,97,88,90,99,97,92,94,105,92,111,106,100,85,103,98,91,87,91,99,85,109,105,96,100,91,88,99,102,95,103,92,92,83,98,66,98,96,74,100,105,98,106,91,114,92,101,89,92,102,104,102,102,99,95,96,118,97,99,96,98,105,105,93,110,92,105,97,89,95,106,101,110,112,97,94,92,95,102,102,97,102,94,113,103,106,95,107,84,96,87,105,84,110,97,86,92,103,80,96,95,97,100,97,98,91,104,105,104,103,97,102,76,101,91,104,96,92,98,105,92,111,103,100,89,90,87,99,94,96,108,125,93,75,108,94,106,105,91,101,87,99,96,100,92,105,94,106,98,104,91,102,97,80,101,87,104,92,98,101,99,102,88,85,97,104,103,67,96,104,100,91,113,105,106,109,107,90,95,99,100,114,105,93,100,92,90,86,102,83,99,91,97,102,106,93,90,94,98,96,94,87,89,105,106,97,100,104,103,95,100,100,101,95,87,97,116,100,95,102,109,97,93,85,103,90,114,94,97,101,105,93,97,92,97,104,83,87,102,117,98,106,104,79,97,94,89,97,105,104,99,100,106,107,108,90,117,86,96,101,100,93,121,98,95,101,94,107,98,100,105,86,95,121,98,86,96,99,102,108,92,99,96,89,102,105,90,92,97,101,105,90,86,100,107,95,96,100,104,103,87,101,120,106,103,111,98,117,110,99,100,89,90,109,101,92,105,108,110,99,99,91,94,98,102,94,88,97,101,102,95,80,100,93,125,107,110,103,86,101,91,100,89,98,92,93,100,100,109,96,94,90,101,107,100,97,90,96,102,95,108,100,101,109,97,103,100,97,102,105,89,102,112,97,85,93,94,110,120,99,105,94,112,84,102,97,105,95,87,95,97,105,90,102,105,95,98,109,101,105,96,92,101,91,120,99,100,104,96,102,97,105,93,105,110,101,96,115,103,105,95,102,119,104,101,94,107,114,87,105,102,115,107,94,102,94,93,91,93,96,95,96,102,90,90,86,102,105,104,109,110,99,96,91,98,100,93,88,102,102,97,100,98,104,97,87,85,105,91,93,90,94,108,90,96,84,98,94,105,101,103,85,97,83,92,100,84,90,100,97,109,94,97,98,100,94,106,100,107,113,86,92,108,91,103,95,104,96,99,94,93,99,103,105,91,92,109,98,95,82,105,95,97,97,95,84,103,101,91,107,101,102,108,111,114,106,113,94,107,94,112,109,99,87,104,103,110,84,102,98,91,103,90,96,106,94,99,102,104,104,98,94,101,102,94,130,106,98,97,97,86,100,104,100,98,101,103,100,99,108,96,97,97,110,101,108,97,100,95,93,102,87,76,104,104,105,100,102,100,101,96,90,101,108,93,105,109,97,99,94,90,92,87,94,106,91,103,128,116,99,99,104,84,100,91,101,111,101,97,94,102,103,114,89,89,105,106,90,105,97,95,109,109,101,116,106,111,90,95,94,96,100,109,94,98,99,103,111,109,99,118,110,103,94,93,87,110,100,92,108,102,96,104,98,107,99,114,100,107,89,111,91,109,83,105,101,94,96,96,106,97,102,80,110,109,106,93,90,108,98,93,86,95,92,102,109,99,95,100,90,91,104,98,98,103,111,87,102,97,96,96,98,89,104,80,97,115,110,100,101,94,91,97,117,101,96,95,111,113,93,94,90,91,105,97,99,108,92,101,103,113,97,92,103,89,109,103,98,104,122,94,98,95,94,104,98,101,98,101,91,101,113,99,104,88,109,92,120,103,87,103,103,103,111,92,106,94,98,106,97,79,98,99,105,95,111,108,103,108,97,95,103,101,101,86,94,96,78,90,96,106,96,97,97,96,102,97,110,95,96,97,93,99,93,96,90,93,97,86,99,100,96,97,69,86,113,107,105,100,87,110,104,105,98,101,97,92,90,90,103,103,88,96,83,100,95,103,109,106,97,100,102,101,102,101,100,94,111,106,110,104,93,105,89,110,92,96,106,100,101,101,96,90,108,93,76,111,112,117,95,103,93,93,105,93,106,94,100,101,114,88,98,97,93,116,100,109,110,102,82,98,121,98,93,94,102,93,99,94,88,103,97,99,98,107,110,104,96,98,88,103,98,105,84,102,108,88,100,105,92,103,95,106,97,87,105,99,99,112,102,103,104,99,99,120,97,103,101,93,91,98,131,102,105,92,95,100,101,89,98,86,105,98,99,95,105,91,129,101,95,98,99,98,95,94,93,111,100,108,100,103,95,105,98,110,99,99,72,106,91,99,107,97,100,106,90,95,105,101,102,93,106,105,90,105,96,98,99,106,91,92,93,94,96,107,100,97,110,95,118,88,97,96,100,116,99,81,95,109,97,91,106,81,118,96,97,107,105,108,103,105,95,93,100,109,99,94,108,97,102,90,100,96,93,87,90,99,93,106,90,91,95,105,107,98,97,95,104,103,95,107,109,94,99,94,99,114,124,105,92,104,102,100,99,91,96,107,99,92,97,103,90,110,98,98,97,85,111,105,109,97,100,91,98,100,109,87,100,102,108,88,94,93,102,91,104,106,108,96,91,96,103,97,92,105,99,95,111,102,117,95,100,114,97,106,102,84,92,94,89,95,102,97,98,104,91,104,98,95,92,105,87,102,109,97,95,101,87,98,100,97,106,79,108,94,101,84,108,99,100,104,98,104,109,106,106,83,92,100,102,101,108,101,101,96,109,99,100,94,98,99,103,94,106,97,92,87,94,106,111,97,97,96,99,84,104,100,86,93,101,100,98,97,105,88,91,93,90,102,92,91,100,98,106,109,101,99,97,94,93,91,98,111,100,98,85,81,89,84,83,100,89,92,84,85,105,100,98,97,102,92,97,112,95,104,105,98,105,101,96,101,94,96,95,97,95,91,109,92,96,93,102,95,102,107,83,96,92,86,96,77,99,100,107,91,100,94,106,93,96,102,94,96,88,92,90,94,95,96,96,95,93,91,95,106,107,88,99,105,95,102,97,102,103,89,79,98,99,102,87,98,89,106,109,101,104,104,95,106,110,94,96,94,113,101,96,98,104,93,97,98,100,104,106,84,94,93,98,109,92,101,108,101,99,96,96,99,104,98,104,113,107,98,96,104,89,96,105,100,99,104,103,110,98,112,97,101,99,71,109,97,101,104,111,101,107,106,115,100,98,109,94,97,105,104,102,111,99,98,91,95,100,95,99,102,98,97,68,99,106,109,103,103,94,60,88,88,95,97,91,113,86,99,118,90,114,99,96,84,105,101,87,92,103,102,91,110,83,96,93,111,86,83,94,106,98,94,109,101,101,87,102,91,102,101,99,109,87,64,106,98,96,107,107,102,96,103,66,104,84,97,95,92,100,98,95,103,101,88,84,98,98,102,102,114,87,105,101,94,118,109,101,92,113,101,95,92,97,92,98,104,110,102,100,105,99,103,93,101,104,98,100,101,91,101,92,113,100,101,104,93,96,100,92,97,89,110,100,105,109,106,91,101,98,105,100,100,105,98,92,99,89,94,89,95,109,112,93,108,103,92,109,98,102,110,101,101,95,104,101,111,120,104,93,99,94,97,103,91,109,102,100,104,112,94,102,88,95,102,112,92,107,106,88,77,99,105,105,91,97,128,98,83,99,104,104,105,94,88,89,97,101,91,105,105,96,100,87,99,91,100,102,99,95,105,100,103,91,102,83,95,100,88,109,99,95,110,98,106,97,105,107,95,106,94,100,106,93,100,114,106,97,91,90,101,90,94,97,84,86,94,91,96,122,92,110,105,95,106,86,95,86,101,96,102,100,109,97,97,100,84,125,91,107,102,105,119,94,102,109,100,99,101,100,95,92,94,91,103,101,88,91,95,97,96,88,92,102,102,103,92,92,91,97,103,102,95,95,110,105,102,86,95,75,92,118,90,99,80,95,97,93,108,98,97,102,100,104,88,98,102,98,87,113,106,95,111,100,106,98,95,94,99,101,108,90,105,71,109,94,91,98,117,93,104,84,107,85,88,87,109,106,93,96,96,105,95,90,104,102,92,104,102,105,90,98,112,92,112,90,93,95,90,101,89,117,103,98,98,92,101,89,105,99,102,91,106,102,95,96,98,97,103,102,102,104,96,90,95,101,93,105,98,104,113,102,86,98,110,99,96,94,111,95,101,96,108,99,84,98,103,94,106,93,101,104,95,110,116,95,92,110,106,88,100,101,88,89,100,118,99,94,92,99,99,95,91,88,106,93,109,113,108,120,95,95,107,102,96,109,101,108,100,102,107,95,95,90,96,122,103,90,96,95,105,91,97,89,107,107,100,97,98,97,95,101,106,110,106,98,100,101,94,97,105,106,106,98,101,103,97,92,100,101,77,108,108,109,112,108,108,114,97,98,104,101,98,93,113,91,107,95,110,90,117,86,110,97,106,102,86,98,98,102,101,87,97,104,100,85,98,122,84,89,92,94,105,106,108,101,87,102,100,108,97,89,108,111,101,96,100,103,101,101,92,90,100,95,109,101,103,104,92,100,104,84, +720.76581,109,70,96,100,97,87,118,103,99,96,94,99,96,97,116,92,99,106,76,101,109,99,97,99,101,97,103,99,94,99,100,96,98,101,120,96,105,101,108,103,97,90,109,99,91,100,95,92,104,95,94,107,98,101,99,102,93,98,96,85,97,113,99,105,91,112,111,108,109,95,93,95,94,99,101,110,91,97,93,96,99,96,97,80,102,91,112,108,94,92,109,97,97,99,99,100,100,82,95,80,90,95,103,102,113,99,99,100,98,99,90,100,102,97,103,106,97,107,103,100,100,95,95,98,103,101,101,100,93,109,95,95,128,97,103,104,90,96,94,96,95,105,102,99,114,93,109,90,107,99,97,100,107,86,101,104,108,72,88,98,96,83,100,103,100,99,83,100,99,100,100,95,108,95,102,88,93,94,97,105,103,95,89,107,111,93,100,97,97,99,104,103,105,106,103,96,94,103,107,87,89,91,95,105,101,98,97,106,105,92,104,100,105,101,103,87,100,105,92,101,89,100,104,103,94,98,98,104,106,99,96,102,91,100,83,101,99,103,101,93,95,93,107,98,107,94,87,100,102,94,101,91,91,98,100,104,100,103,85,84,94,129,106,95,94,96,105,94,101,105,120,103,91,95,110,91,90,83,94,88,91,109,95,93,93,100,96,89,90,101,87,99,119,87,101,98,108,97,97,78,85,100,100,104,92,97,99,109,90,106,82,107,89,99,109,92,93,106,99,96,104,96,100,96,93,107,95,99,109,85,97,98,106,105,103,105,104,102,96,100,83,98,86,91,99,91,84,89,107,103,89,88,96,93,95,103,102,96,96,108,99,98,85,98,96,94,96,105,98,108,100,80,113,93,100,94,100,86,97,101,104,109,100,105,99,93,93,94,108,91,107,74,92,99,84,99,94,109,104,104,95,93,95,98,104,98,99,98,88,97,104,98,103,99,98,94,109,101,98,93,90,93,97,115,97,88,104,83,97,98,99,99,96,105,97,97,104,97,100,106,79,86,93,109,93,107,101,94,101,116,87,108,100,101,90,113,93,106,74,108,104,91,112,97,103,98,103,97,115,108,97,106,103,98,101,100,96,108,99,104,95,107,100,102,106,95,102,96,97,105,95,103,108,98,95,96,99,93,97,101,101,96,68,96,95,104,101,104,85,102,107,98,99,103,105,93,109,105,88,93,101,105,98,101,92,97,92,87,100,91,97,97,103,100,104,113,103,96,82,108,112,85,88,98,104,87,95,107,96,95,101,97,91,91,108,92,112,92,101,93,96,102,105,99,88,102,105,93,96,103,88,90,89,92,100,106,99,103,95,110,95,107,106,102,96,94,99,101,90,102,106,97,80,98,108,96,92,100,109,95,96,100,102,103,78,96,118,84,96,106,100,101,103,99,92,100,102,102,97,99,96,101,103,96,103,104,85,93,103,97,100,96,93,91,109,100,93,114,88,102,104,94,100,106,98,94,101,84,91,101,97,104,100,90,106,97,94,104,100,99,86,91,101,91,108,104,110,86,101,87,97,101,108,98,98,102,103,103,98,88,99,94,102,98,83,96,95,93,83,116,98,102,100,102,96,90,92,100,104,99,102,100,109,84,105,103,102,103,90,102,103,102,92,103,96,106,95,96,108,86,99,101,107,102,92,90,111,106,102,102,105,103,84,101,95,101,92,100,107,94,94,93,97,93,90,105,104,87,94,112,107,79,104,100,96,110,101,89,103,95,97,113,94,104,91,95,105,96,100,86,110,98,105,98,101,92,105,100,101,90,104,97,109,95,105,106,83,99,88,117,102,99,95,110,117,95,101,94,96,102,96,104,98,103,97,96,103,95,94,100,104,95,97,105,108,98,135,96,109,98,103,99,98,95,95,103,115,101,98,104,98,96,95,93,93,98,95,99,87,102,106,109,104,92,107,99,108,92,103,98,96,91,95,84,85,89,106,104,87,104,100,96,96,113,105,90,90,99,103,102,88,104,94,98,89,98,98,89,101,88,94,83,85,128,105,96,85,113,96,103,94,99,104,112,92,101,80,97,94,92,109,99,94,91,102,95,104,99,76,91,111,107,72,98,109,99,100,96,106,100,112,96,105,102,100,102,98,87,91,97,104,92,91,86,102,94,91,92,97,103,101,84,97,103,90,83,76,112,92,103,96,97,96,101,91,79,97,94,89,96,100,93,101,95,92,93,104,117,87,100,85,99,98,92,102,97,95,96,93,106,102,102,105,105,91,100,99,90,118,94,108,95,100,91,83,101,101,100,92,92,93,91,93,93,106,110,108,102,89,113,95,105,97,93,96,84,114,97,94,100,96,91,90,88,95,100,86,82,100,105,94,82,101,96,108,95,101,85,90,99,106,76,101,102,105,87,79,112,96,112,104,109,89,102,108,91,106,91,101,104,119,96,93,90,92,102,99,104,94,97,92,105,100,68,95,76,105,99,88,95,99,106,97,104,110,94,101,91,106,117,104,98,105,74,86,99,104,100,98,91,113,98,110,111,103,96,90,104,91,109,102,74,90,107,106,108,97,93,91,100,97,106,69,97,102,105,103,115,106,99,96,108,97,93,115,102,97,98,102,101,94,99,109,96,87,95,105,105,103,95,107,88,118,90,103,98,110,109,94,98,95,101,100,87,97,104,95,98,105,98,96,102,106,84,100,109,94,106,109,89,105,100,90,110,101,105,100,110,96,102,98,102,110,106,84,107,106,98,94,91,106,87,113,92,95,112,99,98,100,103,102,103,96,106,111,101,99,107,100,106,100,106,107,100,110,100,95,109,105,116,110,101,102,114,113,101,97,99,95,107,99,102,102,90,101,92,101,98,113,108,106,93,106,81,108,98,100,94,98,105,100,107,103,61,95,97,106,85,100,99,104,108,103,109,98,93,98,92,111,114,94,112,106,92,58,92,101,93,99,95,107,110,88,118,100,95,90,88,94,93,111,103,102,108,86,99,109,105,88,102,108,99,106,96,101,98,102,105,104,101,95,99,100,98,103,89,106,95,91,86,104,93,95,103,103,107,94,107,105,109,94,99,109,98,101,89,93,91,100,99,89,100,98,102,95,97,96,81,96,89,108,103,102,97,98,98,96,101,92,106,99,99,78,107,106,94,91,104,93,100,108,91,80,100,109,96,105,104,97,95,81,118,92,83,110,103,101,92,109,94,91,106,101,109,88,101,104,97,113,91,91,101,94,95,94,77,100,95,97,107,99,102,98,102,97,105,100,98,105,92,87,108,102,97,109,108,107,111,102,99,91,100,110,101,110,99,100,106,107,87,105,87,106,102,100,99,117,100,88,87,97,107,103,104,96,99,97,101,108,97,101,86,101,84,105,95,96,103,103,95,89,108,95,95,98,92,72,102,92,97,114,102,107,101,101,107,92,115,109,102,98,109,99,98,103,103,99,89,99,107,101,100,97,99,99,103,100,109,91,95,109,102,89,102,101,104,112,96,100,83,103,100,103,84,102,97,112,109,105,94,104,113,103,99,95,98,116,98,90,99,106,91,89,102,96,106,99,110,92,94,96,102,95,94,101,96,94,111,98,95,101,91,94,107,86,93,97,99,96,100,88,110,106,100,98,95,96,91,99,103,100,100,88,96,92,107,93,103,102,101,98,101,108,106,101,101,105,95,94,102,98,91,108,101,98,102,92,112,104,102,120,99,105,103,92,97,92,91,99,104,96,112,97,87,90,94,100,97,102,95,100,99,98,93,98,101,106,88,106,101,113,97,102,100,105,104,104,86,95,98,99,100,102,86,91,98,88,83,98,104,101,107,105,107,91,101,99,99,104,107,107,99,108,92,98,104,84,97,83,92,99,94,92,106,107,104,102,91,103,99,104,107,111,98,103,104,98,88,99,98,100,99,101,106,104,101,96,92,92,85,101,96,113,98,101,108,98,99,100,97,96,91,90,92,112,98,109,99,97,103,91,106,99,116,91,105,94,92,98,89,101,102,87,103,91,98,100,103,92,93,86,104,93,93,108,90,94,96,116,101,106,96,90,113,96,99,113,95,98,99,95,90,98,98,116,107,102,97,105,79,105,110,99,105,94,105,98,97,99,84,98,84,104,100,102,108,91,100,98,104,109,95,91,98,93,99,100,93,98,102,101,87,103,102,104,97,99,107,107,92,109,97,105,97,100,77,86,100,108,89,95,125,114,97,111,100,98,111,101,98,101,95,99,102,96,96,92,89,106,96,111,87,97,101,101,104,102,129,95,99,88,94,105,97,101,96,106,97,100,102,113,103,93,96,92,97,95,94,100,107,103,113,106,98,98,97,91,102,94,110,104,96,95,99,107,91,97,99,101,111,104,99,92,96,95,96,121,95,102,99,97,97,92,116,93,96,102,96,113,110,90,97,98,109,78,75,112,107,97,87,96,79,99,99,107,102,95,100,96,95,95,118,83,97,98,88,88,95,91,93,95,126,106,99,91,92,112,94,108,107,96,87,95,109,112,99,102,94,106,95,116,81,91,100,100,88,97,95,103,94,91,96,103,99,102,115,94,108,94,94,105,107,95,105,84,109,99,98,95,92,103,101,113,94,93,109,104,101,96,84,102,95,101,105,98,103,90,107,100,95,103,105,105,103,94,112,115,103,107,102,88,107,102,64,92,96,94,95,103,87,103,88,92,93,88,105,105,96,104,91,98,102,91,108,88,100,104,108,98,89,97,107,100,102,111,113,103,95,100,95,87,103,92,99,104,99,77,94,108,110,118,97,94,91,100,97,106,102,94,83,102,100,89,97,111,90,97,93,99,95,100,99,104,91,111,98,93,102,95,88,98,100,90,102,95,100,91,93,87,97,115,95,78,96,101,111,77,101,102,81,112,100,95,106,96,100,100,100,97,65,104,86,111,104,84,108,94,101,90,91, +720.90723,105,112,86,95,86,97,100,83,100,105,104,111,93,93,95,112,98,104,87,101,120,90,94,110,95,101,110,93,98,89,104,93,99,108,105,101,88,104,104,94,95,98,117,101,92,104,104,109,91,100,104,96,97,92,126,88,87,95,99,102,99,87,97,94,95,110,98,101,109,111,102,98,96,93,86,90,109,91,101,90,90,90,94,87,88,97,96,87,89,106,95,75,59,83,88,80,99,102,98,91,88,96,98,90,86,97,100,102,96,79,85,83,92,88,101,90,86,106,93,99,102,101,109,99,84,85,96,89,91,94,98,92,96,71,102,106,81,79,93,72,96,96,89,97,101,86,94,90,89,91,103,89,95,85,91,90,100,95,90,98,114,98,97,91,91,97,104,99,86,88,88,100,93,88,98,100,95,100,96,77,94,99,90,95,95,92,87,91,96,82,90,95,77,101,100,95,87,93,110,94,97,93,96,97,91,106,99,72,99,107,90,99,98,117,95,108,81,102,97,108,100,99,100,96,68,89,92,99,89,87,96,96,110,94,101,100,100,105,95,90,89,91,93,98,88,109,91,103,91,91,94,92,93,71,110,105,106,92,108,104,90,93,100,107,92,97,91,100,99,94,104,91,92,90,94,100,84,105,104,71,106,100,102,94,94,98,94,92,94,107,102,104,101,95,98,104,102,85,101,99,101,106,100,97,80,90,89,101,100,96,100,99,93,87,109,102,104,105,99,99,88,91,103,91,97,98,95,97,92,95,102,90,102,90,92,97,86,92,96,89,113,91,108,104,93,98,111,97,96,98,90,98,92,96,103,95,97,97,100,95,92,90,97,102,93,97,101,104,109,103,97,93,105,106,102,100,93,100,95,106,112,98,100,89,92,80,97,84,95,101,105,90,79,89,88,89,99,107,104,105,97,94,105,92,113,92,97,98,97,95,97,106,99,96,114,91,98,92,95,94,102,91,87,104,99,85,87,92,96,97,92,92,87,103,99,103,89,103,92,96,109,86,92,109,96,95,93,92,103,99,104,100,110,96,97,87,81,107,96,105,99,90,99,87,104,102,100,108,102,89,96,116,95,91,88,104,100,101,101,87,103,107,91,103,106,88,95,90,87,99,113,107,88,104,94,98,94,95,101,105,88,99,105,93,105,95,91,90,101,106,103,87,93,107,100,93,80,93,111,99,94,97,109,96,91,96,96,106,95,105,96,95,88,101,91,102,93,96,104,111,97,101,76,94,105,84,97,100,99,90,92,97,95,99,98,87,104,96,96,85,108,99,96,89,97,100,87,104,100,91,88,95,90,97,121,107,102,97,92,100,103,107,108,89,100,90,101,120,102,89,83,100,87,105,101,93,96,92,87,95,117,91,112,112,94,87,92,93,98,106,92,96,103,95,92,93,87,98,112,105,94,94,94,92,100,100,90,105,107,109,101,95,89,100,94,100,97,99,94,97,93,96,93,99,96,89,93,95,101,108,88,97,101,92,91,98,94,80,104,94,110,95,100,108,94,92,110,94,99,108,92,90,88,98,97,108,99,100,97,87,95,88,118,97,88,95,96,87,94,95,98,97,98,105,101,94,88,97,99,105,101,97,109,94,95,99,91,83,83,90,86,99,103,91,90,85,93,94,101,90,108,89,93,107,77,82,104,108,86,98,109,83,83,101,80,91,93,93,100,97,98,96,97,80,98,93,99,96,105,104,113,98,105,90,94,93,105,92,92,91,106,102,88,93,99,96,90,89,100,98,99,100,96,103,85,76,87,96,95,110,102,99,100,103,87,111,100,100,104,99,100,87,90,98,103,108,101,76,91,102,108,89,97,97,104,93,101,101,88,95,95,101,93,97,94,101,87,98,97,83,95,95,109,101,110,99,98,104,99,91,108,111,98,102,92,114,110,98,100,97,93,97,98,97,90,92,85,99,100,88,104,98,90,91,100,99,102,95,99,82,101,92,96,104,100,93,100,98,108,122,96,89,96,99,90,91,105,99,96,93,102,97,96,104,86,103,100,101,99,91,101,102,109,98,101,90,110,100,100,109,97,108,104,102,100,95,93,95,93,102,97,98,96,103,107,94,91,95,93,94,98,106,91,96,112,86,92,106,107,102,93,98,96,88,69,98,90,91,85,107,102,99,103,84,93,100,92,96,92,98,88,99,100,96,102,106,102,105,93,104,103,95,91,101,98,87,104,92,91,100,102,96,104,98,99,105,91,91,91,93,95,98,96,84,99,98,101,116,97,99,78,94,101,96,98,88,95,99,93,97,100,95,91,93,100,106,94,93,88,103,99,74,93,102,101,103,83,109,80,100,93,96,102,99,88,103,100,90,93,107,95,98,99,90,106,89,101,105,104,99,98,115,87,92,92,87,95,86,100,92,92,108,99,78,106,103,87,106,96,102,86,100,91,105,98,100,90,96,105,92,96,102,86,96,98,87,98,94,104,101,103,106,104,100,107,106,99,105,114,99,112,101,108,63,102,98,99,100,104,108,97,89,108,107,103,108,103,101,95,110,99,106,96,104,104,103,99,99,92,110,89,102,89,85,111,105,101,105,85,80,96,106,98,102,105,100,95,94,105,87,95,102,97,107,79,104,106,100,102,102,106,91,102,101,103,96,109,99,100,90,99,95,100,94,98,99,92,98,96,94,97,98,91,99,93,109,96,101,91,87,99,97,85,100,98,103,113,94,91,102,100,102,101,108,91,91,113,95,96,106,100,105,87,99,101,104,102,114,107,99,102,96,91,98,99,92,103,104,95,106,111,106,100,95,99,100,105,104,106,124,102,95,97,110,104,94,94,107,102,102,105,103,107,96,98,100,92,116,87,101,90,94,96,100,98,106,102,100,96,93,106,130,93,105,107,95,94,98,73,106,105,94,96,103,110,98,98,94,106,95,101,104,105,93,112,91,95,94,117,101,101,91,96,92,111,103,100,105,102,100,104,104,93,93,92,101,108,102,100,100,100,94,106,101,108,100,99,107,104,101,116,100,91,101,98,102,103,97,103,96,104,98,101,113,104,107,106,103,102,104,99,105,101,92,102,102,98,107,104,88,93,98,89,101,90,105,102,107,90,94,99,102,102,105,105,113,100,118,95,100,104,101,97,114,100,91,116,106,98,77,95,102,102,111,98,111,99,100,116,107,95,100,106,102,100,105,94,94,104,103,113,105,102,95,105,109,103,108,100,99,92,94,105,99,94,94,109,96,104,94,100,111,95,98,87,102,113,98,103,98,100,101,108,106,99,102,94,99,100,102,105,111,95,102,79,100,99,101,97,84,108,99,123,102,99,103,108,95,103,97,100,98,106,104,101,105,100,95,103,99,99,108,93,106,93,115,110,92,98,102,109,87,101,106,100,91,104,97,109,102,119,94,74,110,104,93,98,102,112,97,102,101,100,101,101,105,102,91,113,104,106,88,100,105,103,109,90,102,101,103,113,104,92,107,103,108,111,110,98,113,95,99,106,94,93,100,77,93,96,96,97,97,92,103,99,105,95,100,90,94,83,102,97,101,96,101,101,92,103,106,84,111,105,97,100,108,105,95,101,106,91,93,102,69,109,93,120,95,102,104,101,99,94,113,100,99,100,110,107,101,85,103,73,105,106,99,108,108,103,94,97,100,110,109,103,100,91,95,95,100,96,94,108,102,93,98,91,89,107,100,83,99,104,97,96,97,122,101,102,95,104,98,112,120,102,92,96,102,93,101,100,103,102,106,92,112,109,103,99,105,98,91,87,100,106,104,96,102,109,113,97,95,96,92,92,106,103,106,122,103,93,108,108,98,100,98,106,97,97,86,112,84,97,100,97,110,99,97,96,100,101,96,97,98,97,104,105,102,104,105,100,101,108,88,109,112,108,100,98,108,98,95,98,98,98,107,101,80,90,65,99,101,98,105,95,105,112,95,107,93,105,98,110,94,103,98,105,107,100,97,96,104,107,102,97,93,91,106,104,95,99,104,86,103,104,98,88,102,99,96,106,111,104,110,100,98,93,101,108,102,113,104,114,90,102,109,106,100,108,88,99,102,111,97,96,106,100,102,110,98,99,108,93,99,101,104,94,99,117,111,104,97,103,95,100,100,99,103,91,100,109,91,99,109,104,106,102,88,102,104,106,83,102,91,105,101,101,102,105,105,98,99,97,96,95,102,93,105,101,84,91,120,102,113,94,99,94,110,104,103,118,98,96,111,108,94,93,99,72,95,99,94,95,103,96,103,116,100,100,94,103,111,109,96,91,112,113,106,100,104,113,100,107,99,99,99,105,92,97,107,107,100,101,101,113,97,101,115,96,101,96,95,104,98,103,94,97,104,99,101,96,94,97,98,94,101,105,96,109,106,100,102,97,121,98,102,108,95,121,96,91,103,105,100,102,104,112,103,100,117,99,95,98,100,109,99,103,99,101,90,90,101,94,89,93,93,91,83,103,96,99,102,106,103,109,98,100,98,103,106,115,95,100,101,99,102,119,100,114,110,95,98,98,108,99,105,95,95,100,98,89,104,101,107,95,109,87,112,110,95,95,101,96,104,117,89,102,88,101,105,94,97,94,95,107,100,110,131,92,97,95,107,87,101,104,93,113,101,104,103,88,123,91,100,96,99,100,101,113,75,106,95,104,103,110,101,98,105,96,89,96,112,104,105,95,112,102,107,97,101,102,100,101,98,109,98,112,106,98,96,102,108,103,107,130,94,89,106,96,85,96,97,96,107,105,96,107,106,104,96,104,116,103,92,109,93,93,104,101,91,111,104,105,102,98,89,105,85,99,109,110,111,91,120,103,97,87,110,102,110,97,101,101,95,100,88,104,100,105,99,114,84,87,111,112,98,103,104,123,100,102,113,107,109,110,104,96,111,98,106,103,103,110,114,102,97,89,104,118,131, +721.04858,130,102,99,106,81,93,110,101,87,98,89,84,94,87,122,98,96,106,93,100,93,108,93,96,112,104,80,105,102,109,95,94,91,96,102,110,85,92,101,91,96,101,104,101,100,111,107,94,107,107,98,92,110,81,92,105,95,105,106,85,103,107,104,88,99,95,95,114,105,100,100,104,90,101,92,110,100,91,95,95,95,111,100,93,78,97,90,106,95,95,100,95,108,101,99,93,106,102,100,95,98,99,84,105,97,92,95,87,98,93,94,94,103,92,117,98,97,95,101,90,107,95,97,97,95,96,105,102,91,117,91,95,97,100,104,97,94,102,82,91,100,88,97,91,95,96,121,98,108,88,99,90,101,86,108,87,95,106,111,98,106,108,102,104,110,92,93,98,96,109,89,91,90,101,102,107,92,94,113,96,100,108,91,92,108,88,94,96,108,88,89,109,107,97,95,106,91,92,95,99,91,93,91,108,96,118,99,93,101,103,90,94,101,105,119,96,89,96,98,101,97,94,99,95,97,99,118,94,103,105,97,94,91,97,100,109,107,84,107,101,108,91,101,90,100,101,101,106,82,107,96,96,100,97,97,94,99,96,88,89,94,100,90,104,86,94,104,106,84,95,107,97,79,80,94,91,94,108,94,102,91,100,100,96,96,102,91,92,98,95,91,96,100,88,104,98,109,100,96,95,92,74,95,106,98,100,89,105,110,110,86,108,112,96,96,69,93,99,88,106,103,102,106,86,91,95,96,93,100,103,100,98,90,109,95,99,91,82,101,94,112,99,94,88,112,103,86,100,104,100,96,95,95,96,88,100,89,106,99,102,95,90,95,114,98,93,98,85,89,94,102,94,100,96,109,102,98,102,99,96,90,101,91,99,112,97,104,90,94,93,104,102,94,104,95,93,101,92,103,98,92,92,93,102,98,102,100,98,102,96,82,97,101,99,98,103,92,92,105,91,95,99,95,97,107,97,94,88,101,113,95,104,85,87,96,92,98,104,89,101,101,94,88,100,97,97,99,82,107,110,91,91,91,101,91,100,103,98,102,91,98,87,90,87,111,102,68,85,107,86,89,86,113,69,85,109,97,98,100,95,92,109,86,97,102,91,83,93,103,92,104,117,87,99,87,97,91,111,112,95,113,102,93,102,92,98,92,99,99,90,101,97,101,105,100,92,97,91,94,91,101,99,103,92,98,105,101,92,90,101,105,115,79,98,98,113,108,101,102,102,90,103,99,118,98,96,92,80,86,100,101,99,100,84,95,90,90,99,97,100,103,101,69,116,106,85,99,100,95,105,95,103,109,94,118,107,83,104,92,98,97,92,94,83,91,90,104,100,102,105,105,93,122,97,102,106,101,102,91,87,94,94,91,95,86,82,102,89,93,103,103,88,105,96,101,106,99,90,92,101,114,96,99,101,95,97,89,100,97,96,110,106,84,104,100,109,96,89,93,106,110,118,110,105,94,98,107,98,96,100,108,102,87,110,99,100,101,101,91,95,110,117,101,103,95,91,95,94,95,95,104,97,95,103,93,114,105,92,95,94,96,102,107,91,91,94,88,98,100,94,102,93,105,107,126,114,113,87,95,76,105,102,85,89,99,92,97,100,63,98,99,97,94,96,92,89,87,87,94,98,96,91,96,109,78,86,88,99,98,114,96,93,98,96,96,88,94,106,103,89,90,92,91,96,109,95,102,103,101,90,80,87,90,95,107,99,104,104,108,100,103,96,94,129,72,95,100,102,107,94,101,66,92,105,99,99,119,90,91,119,123,108,97,101,80,103,95,112,105,107,106,92,112,102,96,76,96,94,114,106,105,95,86,93,105,98,79,81,102,90,106,96,105,88,111,91,112,91,108,95,104,88,87,97,99,105,100,97,87,98,114,95,104,96,97,102,99,100,100,91,91,75,121,94,95,100,82,90,96,102,93,96,103,86,108,99,110,106,95,99,102,101,103,101,101,89,90,100,104,99,99,98,105,107,105,93,105,99,101,102,101,112,100,105,100,94,97,105,102,105,107,108,107,97,90,89,99,93,106,107,108,96,103,87,98,108,86,101,97,91,88,107,105,105,96,96,111,120,93,97,101,89,91,94,103,98,98,107,108,109,102,103,99,89,93,90,88,94,101,109,104,106,103,104,93,103,81,109,98,96,99,100,111,108,104,100,100,103,99,93,102,104,105,104,101,105,101,81,96,95,96,95,102,105,82,92,96,102,93,74,107,94,92,97,101,89,97,78,109,91,90,99,98,87,87,88,96,98,94,110,104,109,101,92,94,90,101,106,112,105,92,101,95,112,102,62,87,107,90,99,118,100,106,90,104,106,105,97,102,103,89,89,101,113,99,88,96,99,98,105,95,106,92,102,108,97,95,101,105,93,103,112,112,90,99,92,99,96,88,95,101,103,103,99,111,110,95,99,101,104,95,113,101,113,100,102,96,104,109,92,84,90,92,95,103,89,101,92,113,97,99,105,88,85,96,99,94,80,95,95,109,102,87,89,97,113,109,83,99,89,95,100,98,100,98,90,96,100,100,121,92,102,95,88,102,89,100,86,87,96,98,92,107,104,94,94,100,105,82,105,102,95,96,106,98,93,108,85,86,93,89,90,96,97,97,110,96,93,98,97,92,107,102,84,100,103,99,94,96,83,94,109,102,115,87,105,101,103,101,91,101,106,91,106,97,101,98,104,106,107,98,101,99,103,90,100,109,90,91,100,106,107,104,91,107,95,99,91,94,93,102,96,94,91,108,96,101,112,98,72,125,106,105,91,91,94,87,92,101,93,95,99,97,98,101,96,89,108,99,93,93,101,102,94,104,98,88,93,102,102,106,100,94,105,103,99,101,98,102,100,99,97,97,108,100,96,98,102,103,99,117,103,82,113,83,107,101,101,109,95,99,99,95,109,95,90,100,111,114,110,107,95,85,96,102,84,90,89,98,110,89,93,91,98,89,96,104,108,97,98,91,99,99,83,107,109,87,105,97,97,110,112,98,93,104,91,109,88,103,109,102,95,93,104,105,100,87,92,88,104,93,96,100,94,93,96,99,104,101,96,99,97,83,105,104,99,105,91,87,103,98,97,107,95,102,86,95,99,98,84,88,97,108,101,98,104,83,103,100,99,98,99,104,94,100,87,96,95,99,104,80,107,101,94,95,109,105,101,104,102,118,99,96,85,90,112,99,101,97,119,95,86,99,107,98,98,94,103,100,113,91,102,91,90,88,80,110,110,105,94,80,95,94,115,108,106,97,93,103,99,95,95,107,111,94,96,82,107,102,87,85,68,109,102,94,84,105,90,101,84,104,97,97,98,90,104,84,104,95,100,91,93,89,85,99,100,105,112,105,102,95,99,107,95,105,94,100,94,97,88,95,107,93,84,96,113,94,93,112,109,83,120,104,87,93,100,114,92,104,94,97,91,96,97,96,89,83,101,96,91,90,110,100,105,88,99,91,70,93,99,100,106,100,85,87,97,87,96,109,106,86,96,100,92,127,99,99,79,98,92,102,92,111,82,91,88,96,102,105,102,106,105,96,91,101,105,99,90,101,103,111,87,98,93,109,99,103,101,86,117,109,118,117,101,83,107,105,103,100,100,97,87,93,94,94,93,85,94,91,111,91,90,98,107,99,108,97,84,102,95,105,95,95,93,102,91,94,96,99,91,88,109,85,109,94,100,94,88,100,94,90,95,107,105,101,93,90,99,98,92,97,92,98,95,101,93,100,94,90,101,97,108,87,98,97,113,91,100,101,109,100,90,102,101,95,91,101,88,98,98,92,109,100,104,93,98,95,112,88,92,109,101,95,94,99,103,109,100,95,98,93,79,71,111,89,98,91,91,101,103,91,111,101,101,99,94,87,100,93,87,95,97,100,98,110,92,101,98,105,91,96,102,97,93,96,103,91,88,107,97,93,103,98,93,91,94,101,97,87,97,89,98,89,96,96,100,101,105,102,80,99,95,84,107,99,100,90,89,93,95,97,102,96,104,99,81,79,90,107,88,98,102,94,93,86,92,100,103,86,93,110,109,110,98,99,93,95,114,100,90,84,95,92,100,105,96,105,100,99,89,99,100,95,106,106,100,88,98,105,109,97,87,89,94,108,103,113,103,95,90,84,95,62,95,99,92,97,101,93,102,105,100,96,77,91,101,104,106,91,107,76,109,102,95,104,102,100,93,86,98,99,97,104,91,101,94,109,95,96,98,109,87,97,93,96,103,90,106,99,97,94,101,100,89,89,101,109,100,102,102,101,89,103,93,101,96,104,94,98,92,85,97,101,97,109,88,96,94,101,92,95,101,95,91,107,92,77,111,93,125,98,93,102,98,95,97,101,91,102,103,108,95,102,107,88,101,98,83,104,105,93,107,94,104,103,101,99,104,97,76,94,75,101,103,88,94,89,98,125,92,99,91,102,96,101,101,98,80,106,100,93,105,102,100,92,94,87,98,98,112,83,100,96,93,98,93,97,101,102,91,96,99,92,94,90,93,95,88,100,87,95,78,108,96,102,98,93,96,105,93,109,105,104,89,96,105,92,98,100,94,94,103,90,102,102,101,105,93,106,109,106,80,101,100,87,93,94,97,101,104,100,96,99,85,94,95,105,112,108,94,109,98,106,96,98,98,93,92,105,94,124,98,101,95,93,100,96,97,94,104,94,95,95,99,100,105,90,103,87,87,103,93,99,97,112,86,93,95,83,99,89,88,89,89,79,101,110,106,86,99,95,107,102,108,98,81,103,99,87,98,102,97,95,91,90,102,112,96,89,97,94,110,117,107,89,87,95,90,91,106,84,90,109,106,96,102,103,100,91,100,117,80,92,95,108,105,101,97,110,80,100,64,93,82,82,90,105,98,92,85,107,105,105,94,93,88,95,89,86,96, +721.18994,104,93,92,90,103,108,98,104,102,104,98,105,97,92,102,104,80,97,100,104,100,104,100,94,111,108,96,103,99,106,101,95,98,104,105,105,96,101,96,97,103,97,96,101,94,98,96,100,75,104,95,87,98,108,92,107,91,93,110,95,95,97,111,93,101,106,94,87,91,102,104,93,95,121,91,118,101,106,95,108,113,75,95,103,104,96,108,80,105,91,109,95,100,102,110,97,105,92,95,90,94,95,107,90,96,97,95,106,87,97,108,86,102,94,105,90,100,102,97,105,104,109,93,88,122,105,100,103,110,99,98,95,101,117,99,98,104,95,96,99,101,98,99,102,98,81,107,104,97,100,103,95,115,88,95,100,105,103,100,96,103,93,116,100,96,99,86,94,97,86,101,97,108,91,105,103,94,87,117,95,88,94,98,96,101,92,101,94,96,96,104,100,93,99,99,108,105,102,105,107,100,99,89,109,95,99,106,100,106,104,94,101,103,110,86,99,83,103,99,109,107,100,98,104,108,103,100,105,97,97,91,99,95,98,99,90,107,97,96,91,109,108,106,99,95,106,101,110,100,103,100,97,95,101,101,90,93,90,117,104,95,106,89,95,88,99,97,103,92,86,106,102,102,106,102,95,99,116,92,105,96,98,96,95,92,94,97,95,103,111,96,113,111,84,100,90,100,100,115,81,102,103,108,104,112,104,98,99,101,104,92,92,102,102,110,94,87,112,100,96,104,84,95,103,101,97,96,90,95,100,94,103,93,109,110,99,101,103,92,104,96,92,95,99,116,103,99,86,100,101,99,98,105,92,104,94,102,87,93,103,104,102,99,91,104,87,95,104,105,108,91,109,105,109,107,105,99,95,108,100,100,96,108,113,101,97,103,102,109,106,98,96,99,95,91,98,95,93,100,103,108,105,90,86,101,112,113,88,99,93,94,94,97,90,98,99,104,92,95,102,97,115,89,95,94,99,105,101,91,105,95,99,95,97,94,108,94,97,105,90,108,95,104,105,104,93,97,92,103,116,102,98,94,106,88,99,91,100,103,128,102,96,98,109,108,103,100,95,111,90,110,113,105,90,101,98,102,104,102,94,95,98,111,108,103,95,107,105,97,94,93,97,104,101,99,76,83,104,102,106,102,100,106,100,90,88,90,85,112,103,90,98,88,99,102,105,108,106,93,97,107,99,82,117,98,91,94,104,104,98,92,110,104,96,92,103,105,103,111,91,107,100,104,101,99,102,94,96,111,116,108,94,104,97,102,94,104,89,91,83,95,100,97,102,99,90,99,83,103,98,96,97,93,93,102,102,100,104,118,104,93,107,110,102,95,106,113,106,106,105,101,101,87,98,104,89,106,104,109,107,80,89,105,107,94,104,106,105,94,98,99,100,96,99,105,101,96,94,92,95,98,70,96,96,97,105,92,100,97,100,87,92,90,92,94,95,101,81,105,104,99,106,86,91,92,97,92,105,107,102,93,97,63,120,91,82,101,101,101,100,92,97,111,91,94,89,109,82,99,104,88,94,104,114,108,102,104,101,101,91,99,98,103,98,95,105,93,100,103,124,105,89,98,97,83,94,98,94,90,83,103,103,79,102,93,103,108,100,95,98,100,101,81,83,88,100,90,91,94,103,87,93,104,105,110,79,103,110,98,110,94,109,90,96,96,104,121,93,105,104,97,96,92,95,102,103,97,110,84,95,83,101,86,97,97,98,99,105,106,107,98,103,86,96,102,112,96,100,105,106,92,100,101,103,99,93,78,90,97,97,102,105,101,105,107,95,100,111,91,106,105,93,83,94,99,95,96,109,91,96,97,98,90,101,92,104,97,97,99,86,100,88,90,91,107,91,100,98,101,100,85,98,101,105,109,116,101,88,104,101,89,96,97,99,91,98,99,102,104,113,110,100,85,103,109,101,91,98,89,93,105,110,107,98,93,100,101,115,97,106,89,90,101,95,104,97,97,106,96,94,99,83,94,88,101,94,102,102,95,99,90,102,109,96,99,103,95,113,103,92,122,106,94,104,100,106,96,102,98,108,101,104,86,100,120,97,105,95,96,97,88,111,116,103,93,95,98,85,92,130,103,91,97,105,107,93,89,103,108,97,102,105,93,108,97,105,95,101,91,97,110,96,109,101,94,103,101,101,96,129,101,102,100,80,90,96,99,101,96,104,112,100,106,101,103,95,128,99,104,106,90,110,95,101,98,100,106,100,95,91,106,87,109,94,97,95,100,99,97,104,97,94,90,97,96,90,79,106,91,101,95,91,103,104,105,108,94,97,101,87,97,129,88,103,99,89,105,79,95,95,84,110,86,95,101,98,99,80,105,100,92,98,98,97,84,100,107,122,95,89,98,95,96,95,98,127,101,93,99,90,101,98,102,101,105,108,96,95,99,101,107,105,101,105,107,104,102,99,112,97,97,95,105,95,106,98,93,97,102,102,96,87,88,112,110,82,94,105,93,106,95,95,101,112,95,109,95,77,109,98,94,93,105,97,100,83,103,90,92,102,91,98,100,106,115,95,88,96,89,92,105,108,83,102,98,106,113,91,84,92,105,113,96,89,109,95,99,90,103,88,95,108,121,102,71,96,110,101,94,90,96,109,97,96,101,112,97,92,91,101,97,99,90,96,90,99,96,99,97,91,78,98,113,105,74,94,88,89,71,95,97,101,84,97,90,113,113,85,102,100,97,100,101,105,92,95,95,97,84,99,95,96,94,105,95,99,111,105,89,96,73,101,92,112,93,107,103,97,110,97,93,97,102,102,101,101,100,109,106,100,112,95,116,117,104,109,103,100,94,117,104,107,99,84,91,89,92,90,97,89,96,93,97,109,103,101,86,100,100,112,95,88,139,98,109,96,95,87,101,100,98,99,87,107,95,113,98,77,98,117,103,100,106,100,102,94,100,106,107,98,107,105,95,91,112,83,91,93,98,102,101,92,105,102,94,95,102,99,101,78,100,100,84,83,105,109,85,119,109,97,97,94,95,102,99,93,92,97,102,90,107,94,103,106,115,106,95,95,102,96,91,103,105,98,97,102,102,79,95,88,108,100,89,109,100,101,112,88,92,91,107,118,101,99,102,86,103,101,110,96,93,75,94,105,100,94,97,104,108,98,100,87,94,89,100,76,98,100,98,93,95,88,86,97,97,101,108,78,102,83,100,90,101,95,98,108,115,95,92,98,100,89,103,102,91,94,99,105,88,100,91,99,99,99,94,109,103,95,127,97,94,105,99,96,98,93,96,96,91,100,98,99,99,81,97,104,87,90,91,96,98,100,99,103,92,103,93,99,96,72,94,104,86,67,108,91,109,87,101,90,99,92,91,104,90,100,99,101,111,94,101,108,91,98,93,104,93,104,98,103,102,103,97,92,98,106,98,103,103,104,81,94,96,93,97,105,99,89,97,102,93,100,81,107,98,98,104,102,89,106,96,102,102,99,95,102,98,102,107,94,100,92,113,103,92,98,95,100,102,86,94,97,89,95,102,105,96,109,103,97,93,96,100,99,99,95,96,100,100,104,97,102,103,84,98,103,92,88,94,103,104,102,97,92,94,101,96,95,96,91,108,111,95,87,100,105,98,92,103,95,84,87,97,94,106,96,98,104,100,100,93,95,79,87,85,95,88,105,103,92,104,92,97,113,103,95,91,109,108,117,93,90,91,109,92,94,91,99,90,93,91,101,100,98,98,83,116,98,111,100,96,102,87,83,106,100,102,99,106,87,100,85,99,97,97,89,98,98,104,96,90,102,97,101,99,92,87,98,113,93,94,102,92,98,88,102,100,112,94,106,106,91,97,100,100,104,94,111,103,101,87,102,96,116,89,102,96,95,100,112,99,76,92,99,102,93,116,94,94,95,79,101,102,105,99,104,109,105,100,96,98,98,98,98,95,97,99,96,121,99,78,89,101,102,98,101,101,121,115,102,84,89,96,102,80,92,97,105,104,91,101,94,111,96,112,92,95,97,103,96,107,97,110,89,94,99,106,94,95,118,101,103,95,101,101,115,102,102,110,101,112,94,102,101,103,101,101,117,105,99,102,89,96,88,86,94,80,88,102,90,93,96,89,88,112,106,92,100,109,97,91,112,102,93,103,103,107,104,97,91,100,97,96,92,99,104,95,102,92,96,90,92,96,101,90,103,102,96,94,85,101,104,97,98,91,112,89,100,104,81,99,101,89,94,105,98,94,106,95,96,110,95,98,112,94,115,108,102,94,102,89,98,104,96,69,70,94,101,91,101,98,100,100,94,104,98,91,95,83,102,90,101,105,105,97,95,91,96,101,98,107,94,97,91,92,94,94,99,94,109,93,93,93,105,102,104,107,107,106,99,90,89,109,109,91,99,104,94,88,92,108,99,89,81,95,96,95,98,103,99,80,89,94,108,98,93,95,102,114,93,95,106,100,86,98,116,78,94,107,107,107,102,104,94,101,100,92,102,97,82,96,107,134,104,96,127,84,90,94,91,105,94,91,121,101,89,98,91,84,97,86,104,95,92,104,101,94,121,106,90,98,111,79,101,111,100,92,104,97,98,108,93,103,94,101,95,111,92,84,83,104,88,89,96,89,101,95,94,87,95,97,96,94,108,97,103,103,68,88,91,98,98,104,107,112,94,112,97,103,93,94,98,106,98,95,107,113,94,79,98,98,92,99,80,90,98,99,91,121,104,98,99,105,92,96,97,100,93,101,96,84,103,106,107,102,107,91,101,92,105,89,95,98,105,105,93,100,95,107,78,94,96,102,97,96,108,115,101,96,97,97,98,100,96,101,96,100,105,92,93,101,87,99,89,130,106,92,108,98,107,94,95,104,83,83,94,93,95,117,103,97,110,92,113,118,95,94,97,97,89,124,100,97,90,122,86,106,87,108,100, +721.33136,96,96,99,88,108,94,97,83,82,87,84,99,108,97,111,110,89,105,103,101,98,93,92,96,109,109,105,105,88,101,65,109,97,114,108,110,107,86,102,96,117,93,93,101,109,106,101,99,91,124,102,99,100,103,97,105,98,98,101,86,73,103,94,96,103,77,98,106,98,100,91,112,100,98,104,103,109,110,88,103,102,91,105,103,103,91,121,89,90,96,101,89,92,98,86,103,95,86,101,98,91,100,94,89,91,91,91,102,101,102,117,106,112,97,105,101,111,96,107,90,99,94,103,101,99,99,94,100,95,103,100,103,91,99,100,108,90,101,94,88,93,105,95,92,98,105,91,101,97,107,99,94,100,101,93,116,98,94,99,94,87,115,105,96,91,87,87,105,91,108,95,96,91,94,98,102,98,92,96,96,101,105,90,92,108,99,104,98,111,87,88,95,97,99,86,103,104,97,105,111,98,87,101,123,92,104,95,98,123,99,89,101,102,110,88,98,121,95,94,105,106,101,105,97,108,106,88,102,114,90,65,103,100,104,99,88,93,92,98,95,94,86,97,104,89,97,84,116,98,96,98,96,88,91,100,96,89,94,109,98,84,108,89,99,93,89,99,104,106,101,96,101,102,92,109,90,98,99,99,87,97,108,101,92,91,92,87,97,102,100,96,103,100,99,107,103,109,100,84,104,100,84,99,98,98,103,98,89,103,88,96,102,95,109,98,94,98,96,86,87,94,102,95,93,114,91,95,96,104,88,107,104,101,102,92,83,111,93,85,95,96,86,105,91,93,98,103,110,105,94,92,96,110,104,103,92,108,99,104,105,109,83,96,98,88,98,103,99,84,100,109,97,91,102,95,98,109,91,109,103,102,95,92,94,99,95,88,105,91,85,109,87,103,95,95,101,93,98,76,101,88,112,86,97,91,94,95,95,99,99,89,92,100,94,95,92,102,87,99,88,87,92,87,95,87,95,87,87,89,109,94,90,97,96,107,99,98,101,101,92,103,96,98,97,98,85,105,99,106,99,95,102,97,65,120,101,94,83,99,87,92,89,91,102,116,98,98,97,97,95,105,98,94,88,96,90,92,98,110,90,90,100,108,101,99,90,107,98,96,91,82,99,98,83,92,96,91,118,103,96,102,105,101,97,86,94,90,112,93,94,105,96,87,73,105,100,94,72,108,92,107,93,96,101,95,96,86,84,105,117,96,92,100,95,98,88,102,104,95,97,91,85,83,97,111,106,76,113,88,93,107,88,95,104,114,76,106,85,100,100,101,93,80,101,94,112,118,99,105,101,82,98,98,102,96,97,97,99,99,105,86,96,103,97,104,100,101,116,101,88,96,104,96,95,100,105,99,118,98,110,91,75,104,84,87,101,107,94,100,95,91,97,99,96,99,87,82,90,110,91,88,102,92,88,96,95,103,93,97,97,92,114,94,97,93,111,95,97,96,98,101,96,90,102,92,125,97,87,93,96,90,100,99,95,98,100,105,101,104,97,103,112,89,101,102,86,98,90,104,104,103,110,112,104,97,94,107,98,93,105,111,95,100,102,80,96,105,97,101,105,97,84,87,92,97,96,95,95,100,97,109,91,106,111,96,94,84,91,95,98,105,99,123,97,87,94,92,115,96,105,101,97,91,94,90,95,93,98,99,94,100,101,97,96,101,85,70,85,104,88,99,90,89,102,98,89,92,83,88,96,114,93,87,86,86,89,125,98,99,96,86,101,75,105,102,98,95,95,97,92,97,100,101,95,98,83,94,100,86,103,93,104,97,93,101,93,105,105,93,103,92,99,98,105,83,104,101,106,105,106,106,95,76,102,100,100,98,95,104,98,86,95,85,88,105,97,102,98,101,104,93,104,105,94,104,103,94,92,68,100,101,103,97,96,95,93,98,99,113,105,101,97,109,87,82,99,100,96,93,78,100,106,95,103,88,104,108,99,104,105,97,107,96,104,98,89,103,96,93,114,87,113,105,100,82,94,111,99,91,92,100,120,108,102,95,94,100,97,107,103,104,104,86,110,103,97,108,101,101,99,100,105,102,102,95,99,96,96,96,108,99,107,96,106,102,91,102,95,98,99,94,90,104,91,92,97,87,80,91,91,125,104,98,83,89,103,93,102,94,109,105,95,92,88,84,90,87,95,98,93,89,98,96,84,99,97,104,95,89,94,91,100,90,87,92,102,105,98,91,98,90,108,102,104,91,106,105,99,94,93,93,97,87,106,93,97,87,96,90,99,100,94,99,86,98,92,104,97,91,113,99,99,97,101,109,96,90,95,95,95,95,99,105,98,106,109,104,100,98,84,86,114,110,95,99,101,102,98,106,109,106,92,98,76,99,88,94,92,98,86,106,94,104,96,92,91,105,94,94,95,96,94,112,95,97,92,87,101,100,95,108,97,90,99,100,102,99,103,113,91,83,104,105,109,94,87,96,96,100,98,102,87,102,95,105,118,87,92,103,91,106,96,103,93,100,96,109,91,106,105,98,91,105,94,100,108,106,94,76,92,90,65,113,88,105,97,100,101,98,103,108,110,106,95,109,91,108,103,109,98,97,102,115,88,112,99,98,93,100,99,100,101,100,107,115,113,101,93,98,80,97,102,110,90,96,94,102,106,84,89,106,88,104,89,100,101,104,98,99,94,96,108,99,97,99,123,106,108,110,94,98,95,97,92,124,98,106,103,95,112,100,97,92,109,108,99,106,97,104,109,92,83,104,98,94,103,97,104,103,111,86,105,99,110,97,110,107,102,97,104,97,105,99,95,106,94,103,97,113,86,107,88,98,79,99,91,88,102,91,103,120,101,73,104,93,108,88,98,114,101,98,95,108,104,88,110,98,102,92,110,101,104,104,109,99,93,107,109,95,101,76,109,91,133,105,89,109,98,100,108,108,116,112,105,95,104,93,101,104,105,98,100,109,100,97,94,99,98,108,102,108,101,98,106,105,93,108,111,101,99,91,100,96,87,98,117,108,104,108,103,100,96,100,105,105,108,106,99,106,91,108,81,92,101,108,98,87,94,94,107,111,99,90,94,108,112,100,98,98,96,105,98,109,102,90,101,105,99,97,105,103,98,108,92,96,98,109,95,109,105,109,108,106,105,109,97,93,101,107,93,110,95,107,97,96,98,106,104,98,99,91,100,103,107,106,90,100,104,109,96,101,94,101,91,109,99,109,99,106,101,94,64,86,105,94,106,92,90,114,109,103,109,102,93,110,99,113,94,112,104,110,96,101,113,103,107,93,103,102,102,101,100,101,103,100,114,105,100,109,95,100,100,113,99,81,94,114,96,91,108,100,102,91,100,110,102,93,102,106,110,101,99,88,90,90,105,97,91,94,106,101,97,109,71,98,101,97,94,103,103,95,92,95,104,99,98,96,105,86,89,99,96,105,89,94,97,107,98,104,100,95,89,108,95,101,96,109,113,114,94,97,102,96,99,102,100,105,108,94,99,103,103,95,101,102,108,93,104,106,98,94,101,97,100,104,101,117,104,96,105,108,101,105,122,98,101,106,103,95,101,100,95,95,106,101,104,83,85,107,102,105,95,97,105,104,107,100,111,101,98,99,99,105,99,94,105,98,107,101,103,108,99,92,105,103,92,113,106,91,102,99,101,109,99,90,103,102,98,111,101,91,90,98,109,93,100,90,89,95,96,101,90,105,97,101,94,92,99,91,87,93,100,104,96,112,91,108,100,90,94,89,98,102,110,107,94,109,102,99,99,87,90,101,102,91,109,104,98,94,97,104,95,109,96,101,103,104,87,87,110,110,98,99,118,101,94,112,91,102,110,111,105,93,102,91,105,94,93,98,99,102,107,105,85,99,100,107,100,92,92,95,93,104,98,99,111,88,96,90,100,100,95,94,104,102,89,102,94,91,101,98,98,105,106,103,104,109,71,102,96,105,97,96,101,87,100,112,104,98,97,93,110,102,117,94,109,97,108,91,94,91,115,102,91,106,99,94,93,97,106,88,98,102,106,116,96,101,110,105,98,104,103,95,90,101,103,108,92,99,94,108,129,86,102,105,105,97,105,104,92,114,95,106,106,90,96,95,111,104,111,101,106,102,99,102,104,99,92,95,100,98,92,97,95,103,105,104,99,102,87,98,87,94,102,96,89,99,111,103,105,101,101,101,102,107,92,113,101,103,98,98,97,99,101,96,102,95,106,96,104,105,112,112,106,107,107,100,95,102,91,97,95,96,97,97,97,94,121,88,85,83,95,102,87,91,70,104,99,81,97,102,94,117,105,88,97,95,94,105,110,96,99,112,100,108,92,97,91,93,97,99,101,104,100,107,108,100,97,103,94,106,105,98,95,103,99,94,106,83,106,100,95,104,100,109,103,106,98,104,104,86,90,106,99,98,100,96,106,109,105,109,90,101,112,100,99,95,97,99,104,103,102,96,95,98,101,87,104,104,98,95,105,99,104,100,108,99,104,100,95,97,86,106,101,97,97,105,104,101,98,89,108,102,107,91,103,102,113,94,94,106,93,98,97,105,109,101,116,102,94,99,103,101,106,94,92,109,111,91,95,101,104,95,103,97,111,96,100,70,111,110,96,95,82,111,95,104,112,96,102,95,101,115,96,91,102,99,102,105,120,110,100,110,110,103,89,107,106,100,105,107,116,91,87,99,97,96,94,100,110,101,109,92,100,121,96,107,105,103,103,102,107,100,105,95,79,110,93,108,101,96,119,84,105,96,92,104,101,99,85,98,92,104,93,96,101,96,100,80,97,98,105,110,99,105,101,113,98,103,91,98,99,107,95,106,97,98,93,95,100,104,101,109,92,116,92,101,99,100,105,109,102,95,97,98,94,96,93,106,107,104,112,88,92,103,94,96,105,96,89,101,105,112,96,109,92,104,101,112,82, +721.47272,106,101,90,90,84,109,99,98,90,94,106,87,104,102,109,105,89,67,102,105,101,98,95,90,100,98,94,116,95,111,100,85,107,105,101,96,102,92,95,72,96,96,94,96,85,110,98,90,91,109,99,104,105,98,106,89,104,103,102,99,101,104,87,100,103,101,105,103,108,90,110,96,91,100,108,113,92,94,99,103,109,109,92,108,103,102,102,105,92,100,115,113,106,102,98,104,99,90,93,98,89,99,96,95,106,100,84,102,113,92,90,86,102,87,112,95,98,102,103,92,94,89,75,105,93,93,101,100,107,101,106,104,92,92,99,110,107,92,91,116,83,109,103,94,94,96,93,98,81,106,96,88,112,98,105,95,104,113,105,105,89,92,106,95,98,109,101,106,64,94,101,96,90,87,112,103,90,92,113,103,102,97,126,91,105,86,93,102,94,94,97,118,99,96,96,98,109,99,95,108,107,93,91,105,95,92,101,95,103,86,67,108,87,90,98,88,105,97,92,109,101,98,95,90,105,95,95,88,108,100,101,84,87,97,105,110,105,85,103,97,100,95,110,95,97,102,105,95,95,96,101,96,96,104,92,102,85,102,93,99,84,94,105,111,98,100,100,100,79,87,90,105,102,98,67,92,103,99,86,104,90,90,102,92,98,114,96,100,96,99,93,101,104,117,106,109,106,93,95,95,98,120,98,101,103,99,102,105,96,99,93,118,97,91,89,94,91,91,101,70,98,89,100,92,101,96,90,102,104,105,91,84,108,103,98,112,83,101,98,99,93,109,96,108,98,101,103,102,94,105,96,102,100,99,98,98,102,93,97,105,106,103,95,96,91,100,105,106,99,99,93,100,104,112,100,91,96,96,90,90,94,94,103,93,96,103,91,109,96,97,93,82,101,101,105,97,93,95,95,101,95,105,106,91,88,97,111,94,105,108,97,90,101,94,103,88,105,86,104,102,87,99,92,88,103,88,111,96,104,91,96,100,97,104,103,106,81,103,91,98,110,103,113,108,97,96,99,138,92,102,99,90,99,97,99,100,109,90,97,94,110,94,99,101,101,99,99,92,101,107,97,105,96,102,101,79,93,107,90,90,115,98,107,94,93,88,101,101,95,103,104,95,101,104,99,97,107,99,90,114,98,98,97,94,86,90,98,99,94,100,99,98,98,108,105,104,85,98,97,100,105,97,110,104,101,92,114,97,98,105,91,90,93,102,95,104,108,97,96,108,88,106,83,100,101,94,102,106,103,99,87,98,94,93,90,94,121,97,88,91,92,98,85,99,91,98,92,95,96,97,89,108,104,101,58,99,86,94,101,90,96,96,99,109,84,98,100,98,89,104,96,101,100,89,101,104,101,107,101,87,106,91,97,83,83,95,94,96,110,91,101,91,101,96,100,111,102,102,97,85,94,90,109,93,88,96,102,94,88,102,84,87,102,86,93,92,88,87,104,103,100,102,98,96,97,95,90,105,88,110,92,105,91,94,91,106,108,95,97,94,94,93,100,105,90,96,96,102,99,101,98,98,103,102,90,105,94,109,92,96,97,99,87,89,91,96,103,114,93,106,84,92,94,97,104,90,103,107,94,87,93,101,92,99,104,99,93,95,93,98,102,100,96,88,94,99,98,97,106,101,97,91,78,96,102,104,84,94,107,102,102,96,87,97,102,98,117,88,92,85,100,93,97,91,114,105,97,87,86,113,95,87,118,96,96,83,101,92,99,100,102,100,77,90,93,95,102,97,101,106,102,101,112,92,92,99,101,98,105,83,97,107,112,92,92,88,94,112,101,103,109,95,100,95,96,95,98,93,100,103,89,99,86,108,107,106,101,103,107,102,97,81,98,99,100,99,113,102,107,103,100,94,92,108,103,87,97,83,106,103,104,86,99,108,77,101,108,85,94,100,97,102,103,96,93,101,92,98,95,88,88,98,96,95,87,113,97,101,105,105,96,97,101,112,101,99,96,98,114,106,97,89,93,103,104,94,103,105,101,100,110,102,93,95,105,92,100,95,101,94,108,106,94,95,88,99,95,105,93,94,111,90,90,95,102,99,84,108,87,103,98,76,105,116,95,95,90,93,91,115,100,100,104,109,100,80,92,103,110,107,109,97,101,103,103,92,97,108,87,100,93,110,96,108,106,100,100,105,103,99,108,94,107,103,111,102,100,103,98,99,103,97,74,99,101,95,111,96,99,106,102,98,99,104,109,107,95,82,83,96,105,103,91,102,96,109,106,91,93,98,115,93,87,105,95,94,91,109,96,100,97,105,104,90,101,97,85,101,103,100,103,95,89,91,96,96,89,95,88,96,101,106,99,93,116,107,99,101,113,90,91,97,102,100,98,87,88,98,96,96,86,99,93,96,90,97,112,97,104,105,97,106,98,73,93,103,97,93,100,95,88,100,89,115,100,97,90,93,98,99,91,112,107,112,98,95,107,108,102,94,109,107,94,103,96,105,113,101,104,106,104,100,99,92,76,102,88,94,100,105,97,89,105,80,91,103,108,98,98,106,96,98,106,109,102,88,97,94,88,102,92,94,91,98,94,99,98,99,101,82,104,124,95,94,108,96,97,93,104,109,103,94,101,97,90,85,100,108,95,100,98,92,104,105,97,96,99,108,104,101,96,92,98,82,94,105,101,96,103,100,103,95,112,96,87,95,109,91,104,100,95,96,93,95,104,98,112,95,99,113,107,106,105,124,79,120,91,100,90,120,96,105,79,108,100,101,105,104,95,94,98,104,102,99,100,117,93,104,95,93,80,97,87,91,111,93,98,100,106,94,99,111,91,105,90,104,101,109,91,101,102,93,101,90,99,103,116,110,101,92,101,99,99,96,101,107,127,95,95,72,92,93,95,97,109,102,100,99,111,106,110,100,100,100,99,105,105,101,106,93,89,102,94,98,76,109,101,106,113,98,97,108,93,104,92,104,99,100,118,103,99,102,93,106,109,106,110,103,99,88,133,90,77,99,116,102,106,98,104,104,99,113,103,101,103,92,101,99,106,104,108,101,89,113,101,94,103,101,97,102,81,104,97,105,101,95,98,102,101,98,99,106,103,89,99,96,87,83,97,100,102,104,105,99,98,112,99,97,92,94,87,98,101,108,125,95,92,102,98,102,90,91,90,95,95,100,87,95,101,95,96,101,104,99,92,92,83,107,102,98,102,90,92,99,94,94,105,112,109,103,91,88,80,98,98,109,108,105,91,95,95,88,111,92,109,93,100,101,106,100,102,100,108,98,95,99,83,102,67,99,94,96,107,102,89,91,95,104,100,102,94,103,96,97,101,100,102,89,90,96,93,99,100,98,103,111,100,102,97,87,93,101,107,98,101,87,104,100,97,100,85,102,107,94,92,109,99,98,102,112,98,111,99,100,91,106,117,96,107,103,91,110,91,100,96,86,100,91,111,106,98,91,87,101,101,106,106,97,100,98,102,113,95,100,92,98,114,99,104,91,106,98,96,104,97,103,96,106,102,97,110,118,102,104,98,108,102,97,93,100,115,102,91,96,95,107,102,94,98,90,103,101,104,94,103,104,105,121,105,116,110,97,115,105,117,93,98,116,108,96,103,94,92,95,91,93,93,98,101,85,101,99,96,102,128,102,109,95,102,113,96,110,105,91,87,108,97,104,105,94,103,109,91,113,103,99,103,104,115,106,106,79,96,108,110,94,108,101,98,88,110,89,113,94,103,98,92,105,97,94,105,98,99,111,95,91,102,80,109,91,117,90,104,104,104,99,93,98,101,112,90,95,100,93,101,97,99,98,108,112,91,102,89,103,98,101,82,80,87,95,109,88,107,99,102,98,98,106,97,104,96,99,98,100,107,98,106,95,90,100,120,103,82,112,93,104,98,87,93,103,103,91,97,97,103,102,109,100,87,102,94,112,89,102,104,103,101,94,102,93,96,96,100,106,98,109,96,109,97,113,94,100,86,98,103,100,103,96,99,112,108,101,109,113,91,113,112,91,92,105,100,104,87,96,102,97,103,91,96,103,112,97,96,92,99,112,91,94,102,100,88,102,98,101,99,111,91,102,99,92,113,103,97,81,83,97,100,108,109,97,96,97,106,102,103,102,79,98,86,100,96,90,103,104,96,97,101,109,100,102,91,88,105,101,107,98,93,102,95,98,93,94,91,96,101,99,99,98,94,96,100,86,108,101,104,100,92,102,95,103,100,96,110,98,100,105,94,103,99,87,110,87,98,110,95,82,103,94,90,98,81,105,103,105,97,92,90,92,102,104,95,99,94,101,87,128,99,89,86,102,93,92,107,96,107,92,95,106,104,91,101,101,96,91,106,89,95,97,97,101,102,92,103,101,91,95,93,100,92,104,89,96,115,101,92,111,95,94,116,74,99,97,99,107,103,109,104,91,96,112,99,99,99,99,105,100,96,72,107,103,107,98,106,105,102,104,85,93,85,109,105,101,99,102,93,93,106,94,95,104,91,111,97,113,102,99,97,89,82,104,93,110,94,98,103,98,98,88,85,96,89,94,103,102,94,95,93,95,98,91,106,109,105,92,90,80,101,98,103,103,83,103,107,108,103,104,100,97,87,88,102,100,96,94,103,92,92,99,102,99,93,106,98,100,96,112,104,95,105,83,99,98,102,97,98,102,109,100,109,103,98,91,98,91,101,98,94,98,103,106,91,100,89,97,110,98,104,100,90,111,97,104,112,91,98,96,91,96,103,106,81,81,94,92,88,96,107,93,101,57,99,96,98,108,96,92,95,103,89,103,106,102,95,80,79,103,97,84,93,85,92,95,98,101,92,110,98,109,110,95,104,96,97,102,97,103,113,94,94,108,90,99,94,98,102,98,95,111,100,89,99,95,97,90,93,104,97,106,103,92,112,102,111,102,93,92,110,95,95,102, +721.61407,71,100,100,89,95,103,109,103,88,109,98,92,96,109,91,97,95,100,103,106,114,99,89,121,99,100,94,112,99,107,99,109,96,96,107,70,87,100,94,111,102,101,108,89,105,106,103,96,105,101,101,104,118,102,107,91,100,101,103,87,100,97,98,94,110,100,96,110,101,130,91,106,101,104,93,110,104,94,111,111,111,92,95,100,99,104,111,103,99,93,93,99,104,105,101,94,95,98,107,95,104,109,95,104,95,114,99,99,93,95,107,95,99,87,83,104,95,97,107,96,96,99,107,118,95,110,113,109,113,94,101,101,90,108,94,107,84,100,96,102,104,87,94,79,97,95,113,78,105,91,103,95,100,95,91,105,104,95,102,103,100,100,109,93,103,106,102,95,88,95,102,102,98,100,113,100,93,99,103,107,97,99,118,107,91,87,106,94,115,99,91,104,117,92,99,92,99,104,88,108,98,107,97,99,106,99,86,84,98,101,113,83,99,105,98,98,95,103,105,72,110,118,100,99,98,101,95,110,94,100,106,98,100,105,107,124,89,92,95,91,94,94,100,99,90,98,101,100,99,102,107,110,94,96,106,107,102,109,104,103,92,103,102,102,101,104,107,91,92,71,117,105,109,102,94,114,93,100,103,98,94,99,102,98,99,110,93,95,98,113,93,103,103,102,102,102,94,106,117,110,89,103,98,99,84,113,109,105,93,112,87,102,105,95,101,84,96,103,95,107,100,83,107,98,92,96,102,92,102,107,96,115,100,94,105,89,99,106,93,102,91,106,103,100,96,103,100,102,105,109,95,96,113,102,103,106,116,100,103,93,105,104,84,67,97,113,115,95,101,108,99,109,115,106,103,102,88,112,97,114,100,119,98,72,88,91,104,96,103,82,109,100,86,112,92,98,97,85,105,102,101,91,94,88,103,97,101,95,121,96,82,105,94,105,91,95,99,107,99,94,104,108,98,109,99,89,91,94,89,100,98,92,95,111,98,81,102,103,96,115,103,83,97,106,89,92,102,105,93,101,93,111,104,101,79,98,99,105,108,103,97,98,92,101,101,109,111,104,97,100,96,100,94,93,93,89,104,112,107,98,92,117,99,97,95,101,103,99,91,110,100,109,107,102,107,117,104,106,94,95,99,99,100,96,103,104,91,94,103,112,116,96,90,76,105,97,84,101,93,93,99,100,103,95,96,115,100,113,92,103,99,113,105,92,86,90,90,95,102,101,92,108,98,102,101,93,93,91,113,103,101,101,97,91,106,110,105,103,96,102,93,114,98,92,87,93,110,100,105,105,98,94,96,83,103,95,86,97,118,101,99,93,97,96,96,105,96,109,109,97,99,94,104,98,105,81,97,104,110,98,98,101,107,103,115,91,112,90,105,99,94,100,110,105,96,87,96,104,98,96,105,99,106,98,99,105,93,99,104,111,92,104,99,108,107,106,98,99,99,101,100,101,96,108,90,90,110,83,108,98,93,99,104,92,106,88,108,106,98,75,104,91,94,93,98,101,88,98,108,101,97,89,87,89,102,102,95,102,100,118,85,101,84,95,103,100,96,98,99,108,97,97,94,113,106,101,90,99,98,90,97,95,89,100,104,101,92,102,102,100,105,108,100,101,95,108,111,105,113,104,99,106,113,106,91,90,98,106,91,102,103,116,100,92,96,97,96,100,129,96,101,105,95,97,96,85,88,100,105,95,98,93,98,100,104,105,105,103,109,96,93,90,97,102,78,95,93,98,115,98,94,102,105,98,91,106,103,92,98,99,96,98,109,107,98,92,86,106,95,96,105,110,101,104,100,104,96,108,93,99,110,99,102,101,94,100,104,99,96,90,117,92,104,91,109,102,104,104,94,97,86,105,80,97,101,92,103,100,106,93,105,100,117,86,104,110,92,91,94,93,97,100,101,96,101,102,102,95,91,95,104,88,98,107,102,99,108,93,95,105,87,101,101,104,95,109,93,99,110,103,94,108,107,95,100,102,87,88,100,93,104,105,82,103,99,101,96,120,99,99,102,110,100,102,104,100,99,96,105,96,101,109,107,106,102,93,92,102,96,101,101,84,105,104,101,101,86,93,96,94,103,96,99,99,95,100,107,114,96,93,100,112,100,99,93,97,104,79,100,95,89,103,102,99,100,103,117,90,88,92,109,101,105,94,97,108,100,97,91,105,100,103,91,99,111,97,92,94,98,97,93,95,102,105,91,96,102,94,100,104,89,102,92,90,107,89,100,88,100,93,101,110,95,101,104,95,91,100,98,110,109,104,91,102,103,98,96,110,91,87,91,113,86,105,82,97,104,103,107,92,107,108,95,96,92,99,95,104,103,102,105,102,93,100,105,92,113,98,95,87,106,108,96,100,92,93,96,108,99,99,97,105,95,98,102,99,94,88,92,104,109,96,92,91,89,87,86,104,99,104,89,97,93,94,98,104,98,100,88,99,107,74,86,101,91,97,107,92,108,91,96,105,103,92,101,95,98,83,110,89,100,85,102,101,94,112,102,110,111,97,101,104,90,102,101,104,122,104,91,114,104,90,110,89,96,100,91,102,102,102,109,98,101,92,99,98,110,97,100,94,88,102,102,120,95,104,94,99,98,109,105,107,102,104,108,97,101,101,96,99,93,99,102,95,95,109,106,89,97,85,101,94,103,104,104,109,107,111,103,102,105,93,103,120,107,97,110,93,97,100,103,97,108,108,96,106,98,109,93,95,101,94,112,98,86,105,102,99,105,80,80,97,77,95,116,102,96,99,95,95,94,97,97,88,110,103,90,100,102,100,93,108,98,92,115,102,102,92,100,96,117,95,87,96,104,96,95,113,107,111,104,101,95,97,107,97,95,112,85,98,100,105,96,108,105,94,80,98,101,104,104,90,92,92,100,97,101,102,97,109,104,95,95,103,104,105,98,108,107,94,95,98,96,92,102,92,102,100,108,99,100,105,96,119,77,96,108,99,95,115,107,104,110,92,97,91,106,103,69,93,97,109,90,96,102,99,98,93,121,104,101,103,96,109,102,102,92,98,96,88,103,90,108,83,127,96,108,112,110,102,102,101,93,98,96,93,111,86,92,109,106,112,93,99,94,98,121,102,95,97,94,92,91,104,100,98,92,114,98,98,88,98,107,101,97,101,114,75,91,97,87,93,109,96,106,98,87,101,108,86,106,92,64,89,73,88,105,95,92,98,103,96,95,101,105,97,105,108,102,100,106,112,99,104,97,97,72,103,116,103,94,92,92,119,98,102,107,106,106,75,103,96,103,95,99,103,98,95,91,91,97,100,103,101,92,106,108,101,91,104,103,99,93,111,99,111,95,98,101,92,106,103,133,97,109,90,95,94,100,101,93,84,93,115,105,100,102,94,103,95,102,94,103,97,105,87,88,99,97,100,90,116,97,101,101,96,106,94,87,92,97,98,102,98,98,93,102,95,93,97,107,90,90,92,91,99,105,99,99,96,104,106,83,109,96,98,103,96,97,92,107,102,105,106,100,84,96,102,87,105,108,113,112,108,104,96,102,107,100,106,97,104,101,78,101,102,94,98,111,110,97,95,95,107,95,95,97,103,108,96,94,96,96,98,102,95,81,94,100,100,111,104,107,90,109,101,108,99,94,95,93,93,94,100,105,95,99,102,102,95,96,102,97,92,83,107,97,101,100,101,120,92,90,111,92,95,107,100,110,102,113,91,111,99,102,97,96,94,93,106,103,94,95,91,110,110,91,110,94,83,93,99,100,91,115,99,102,101,98,104,99,105,98,92,101,87,97,74,113,112,81,102,91,109,100,99,95,91,105,103,110,86,97,101,105,103,104,107,91,101,98,103,96,96,96,90,102,102,101,99,92,95,103,96,99,81,105,105,94,90,108,91,97,100,92,95,102,104,103,103,99,97,94,105,97,121,98,90,104,100,100,90,87,83,93,101,101,98,106,98,103,92,104,94,95,105,98,76,92,105,98,90,109,98,88,101,93,98,96,111,93,107,111,100,106,102,91,90,97,99,110,97,95,88,101,103,111,93,102,96,91,105,87,105,102,93,96,73,106,79,102,103,99,97,91,108,108,101,83,106,93,98,108,105,101,102,90,99,100,94,95,100,93,105,95,98,94,101,87,98,97,104,94,110,98,93,99,101,105,96,102,88,86,95,93,98,104,91,102,83,100,96,109,102,93,109,93,102,97,105,98,95,101,91,106,102,104,90,100,91,94,105,94,94,102,119,113,107,101,100,94,112,104,104,80,101,87,100,109,96,112,86,104,117,95,92,104,95,91,102,92,110,109,103,102,108,92,106,95,74,70,106,103,80,73,95,97,89,99,106,106,104,99,100,95,106,94,96,97,121,123,94,114,107,98,96,102,103,103,109,96,103,101,92,100,104,106,107,105,105,108,95,102,104,94,106,82,96,111,94,106,99,91,108,99,95,97,99,112,107,104,97,100,98,102,94,93,93,92,98,98,104,109,101,105,91,92,104,97,100,93,94,97,107,92,99,109,100,117,103,91,98,97,100,112,108,107,96,96,101,99,112,102,109,99,97,98,104,125,93,105,107,104,113,96,94,101,103,93,93,108,101,94,111,108,93,100,95,100,102,109,98,106,106,110,109,98,100,91,96,75,91,114,96,95,109,90,112,95,94,96,91,105,99,106,102,94,84,103,98,76,90,110,97,104,95,104,113,101,111,106,105,105,100,97,102,91,81,94,94,100,92,90,104,114,103,106,98,93,86,97,104,91,111,97,111,85,104,87,93,110,108,92,102,95,101,103,111,98,95,98,101,78,102,97,107,106,117,100,94,107,95,90,85,109,108,104,93,85,108,99,93,96,115,104,102,108,91,98,87,96,94,98,105,100,113,92,104,105,89,120,88,87,107,102,111,95,102,100,89, +721.75549,91,95,88,109,99,97,104,89,98,121,100,101,95,88,98,84,102,95,109,92,99,91,94,97,99,101,107,115,83,95,89,105,98,101,94,104,106,108,80,97,87,94,105,93,113,137,91,114,86,94,92,95,98,90,103,96,97,93,102,86,103,82,107,96,76,98,91,100,99,88,101,78,95,107,100,108,98,101,102,111,99,94,88,91,99,95,91,88,104,93,101,107,113,109,91,104,101,92,96,96,65,95,106,86,105,106,82,102,92,100,110,105,93,98,105,100,89,107,98,95,90,110,109,110,109,103,100,99,109,89,106,103,99,93,92,117,95,96,95,90,101,127,84,103,108,87,101,105,96,96,91,106,113,84,96,105,88,95,104,106,95,97,102,94,101,101,100,98,97,96,91,104,99,101,100,92,100,89,105,97,104,103,102,110,116,96,98,103,100,93,97,98,102,103,106,101,103,76,97,99,106,100,128,95,99,102,104,91,104,97,90,105,101,104,98,116,93,97,79,93,91,100,103,101,95,100,91,114,101,107,94,89,98,67,106,101,86,104,93,96,93,96,102,94,100,101,92,96,96,98,113,94,83,105,93,106,97,90,105,102,104,102,95,104,104,100,98,100,94,89,85,98,107,126,109,96,105,98,110,90,97,99,86,86,104,100,105,102,91,105,99,90,107,109,100,103,106,91,112,106,97,103,93,102,103,102,101,96,102,92,108,107,115,98,106,92,105,99,92,99,90,102,99,92,104,89,93,102,95,97,99,109,89,113,108,95,107,94,106,99,91,63,95,87,95,102,98,106,97,109,96,93,97,112,97,92,108,107,93,97,78,107,101,98,93,109,97,92,98,110,101,106,96,101,106,102,108,90,96,100,98,99,101,104,101,97,88,100,107,98,92,88,106,100,124,96,92,112,86,101,97,100,101,95,89,89,100,102,109,92,86,83,105,94,88,97,93,91,105,95,77,96,103,98,91,101,99,83,90,102,103,97,113,100,92,101,101,101,104,118,113,95,95,110,90,100,96,92,106,110,92,97,95,102,94,93,93,90,99,104,93,102,95,98,105,108,91,100,94,98,97,111,93,104,108,86,81,99,101,98,93,100,96,92,103,102,105,97,93,96,102,107,95,106,108,99,99,93,105,113,83,99,110,108,94,97,93,101,114,88,98,96,102,99,91,99,94,103,104,86,91,108,64,117,97,95,105,102,98,100,106,101,96,106,105,98,89,111,94,100,87,96,95,99,101,94,91,101,96,99,87,97,95,104,93,102,108,102,81,94,92,95,97,100,104,100,100,106,89,111,91,114,103,95,100,98,94,89,103,83,105,96,101,97,106,106,114,106,110,95,98,114,101,100,112,103,105,99,101,100,91,90,99,93,107,88,95,104,104,102,101,98,105,90,97,90,91,86,94,99,110,95,95,99,95,108,98,101,105,107,112,110,97,97,100,96,95,93,114,87,112,108,100,110,103,79,103,100,103,88,101,95,104,92,99,95,94,100,102,104,106,103,109,103,97,91,107,95,109,103,107,99,98,89,98,96,99,106,97,97,103,97,109,101,98,103,100,107,96,113,109,106,72,110,97,88,97,104,98,82,82,93,106,102,102,103,84,91,98,93,93,93,101,94,94,95,97,94,90,99,101,94,99,94,96,65,61,104,104,106,109,110,96,97,102,109,95,89,94,102,111,89,102,100,99,80,96,112,98,74,94,94,96,94,95,87,98,100,103,97,110,104,95,118,92,94,101,96,106,97,94,99,95,101,90,70,107,105,97,105,118,95,100,92,101,95,95,106,109,98,98,100,100,102,94,106,99,103,98,103,109,101,94,101,100,106,99,101,96,99,94,99,109,92,88,94,105,103,103,95,98,98,101,98,95,88,95,92,93,75,108,93,106,95,96,104,102,113,102,103,93,88,94,96,99,86,99,94,98,118,103,111,97,95,101,96,103,104,101,101,99,113,108,97,117,124,96,100,102,103,105,96,110,106,92,107,100,97,95,87,97,97,105,101,104,102,97,105,107,100,98,97,96,98,100,96,102,99,96,96,98,107,101,101,100,94,95,102,94,94,100,95,91,96,101,106,91,96,100,100,121,105,104,103,107,101,108,108,87,88,98,99,98,125,99,92,98,96,96,98,109,91,106,102,91,83,94,86,95,105,108,114,105,105,102,100,104,101,102,98,97,88,87,120,99,100,106,91,102,96,91,97,99,100,87,99,97,91,93,95,83,104,94,104,95,101,105,101,95,90,106,114,101,90,96,101,92,104,100,95,89,108,92,91,104,107,95,102,102,102,87,99,102,113,107,94,98,97,94,89,101,111,106,91,101,105,108,88,98,105,100,105,94,78,92,95,97,101,91,92,99,93,104,104,85,86,105,106,108,97,100,98,113,103,115,94,101,80,68,101,92,101,102,93,100,93,95,95,104,97,95,96,101,99,89,103,85,92,83,95,95,100,93,100,94,95,85,124,109,101,120,90,99,92,95,90,95,105,106,94,88,86,102,95,100,102,104,101,91,102,99,95,113,93,91,103,97,102,113,109,107,100,102,100,105,99,98,94,108,108,105,106,94,94,98,104,120,91,105,105,103,91,101,116,95,95,97,98,102,103,97,111,99,94,100,110,118,123,89,105,102,102,91,90,99,90,108,96,121,104,97,104,117,101,105,103,101,106,92,100,105,89,87,108,100,106,107,107,102,104,99,97,95,104,99,106,102,96,110,98,97,114,105,105,68,106,104,99,99,86,94,101,101,109,93,103,95,105,78,89,100,108,96,100,104,99,90,89,94,108,90,101,98,94,107,94,98,109,109,105,109,94,109,97,95,105,107,102,95,101,102,93,84,102,111,101,115,104,91,104,104,99,102,113,104,105,96,106,108,99,83,101,102,98,97,103,112,95,103,127,101,134,109,101,99,106,91,99,97,100,95,106,99,101,109,103,102,94,102,96,106,112,91,100,97,96,100,103,107,100,98,106,94,88,102,104,102,98,111,108,103,97,103,112,104,94,94,104,104,95,93,94,101,103,114,100,99,97,109,89,98,104,95,94,95,92,104,101,109,88,99,95,87,86,96,108,101,101,103,109,113,99,100,78,106,105,100,104,96,94,100,109,105,101,101,97,98,106,100,103,97,100,97,99,87,104,100,105,85,91,105,106,110,105,99,97,97,83,99,95,98,83,87,100,93,96,125,105,105,104,96,112,98,103,103,87,95,102,97,106,104,93,99,99,102,109,111,67,102,99,93,91,103,105,105,101,93,107,92,109,94,102,100,102,94,101,97,105,101,86,87,95,101,99,90,102,106,96,88,105,101,101,108,96,106,96,94,94,98,93,101,97,98,96,97,106,100,110,79,106,90,107,97,92,72,95,80,92,98,99,96,99,99,108,101,102,101,103,101,94,92,101,102,98,106,106,100,125,101,103,95,109,101,86,96,91,106,96,99,100,103,100,103,98,98,88,94,89,94,110,111,107,106,94,93,104,98,103,104,95,104,103,99,106,105,98,108,109,91,95,110,99,67,119,98,95,94,103,94,91,86,109,91,102,100,100,97,97,106,107,112,92,102,103,120,87,108,102,92,93,102,106,91,83,86,108,99,90,95,93,98,99,106,100,102,95,120,105,105,83,96,103,102,103,97,104,97,98,102,100,97,98,108,67,100,103,94,92,100,96,95,110,108,106,97,98,101,100,111,85,114,97,111,95,101,97,102,117,85,96,98,100,94,99,107,109,97,96,95,102,104,95,104,93,97,86,109,102,94,99,104,94,96,94,81,97,112,89,107,101,93,94,120,97,104,90,99,103,92,96,105,88,105,95,93,111,94,95,98,98,103,111,107,107,100,96,98,91,87,92,99,104,104,108,86,98,98,101,89,108,98,99,109,110,90,102,104,83,94,101,94,102,75,107,101,94,101,96,99,91,93,107,102,108,93,121,102,79,106,103,107,99,103,91,94,96,110,102,104,92,91,98,92,96,87,101,91,90,88,100,99,101,105,121,99,111,100,97,101,91,115,97,104,83,95,103,97,92,102,91,95,106,83,121,104,105,116,95,95,91,107,113,84,110,111,124,99,104,98,106,98,113,95,108,104,103,102,105,98,96,99,105,102,116,98,100,107,95,102,80,97,105,117,96,99,99,97,98,99,101,81,104,96,101,109,92,90,101,85,100,99,95,91,94,102,105,64,89,95,98,103,107,85,95,96,106,96,105,90,91,115,90,102,98,105,105,104,91,93,104,89,98,107,132,98,96,90,86,88,94,103,105,101,99,90,105,98,97,97,106,99,92,95,102,94,130,95,106,104,104,98,104,99,124,96,106,83,94,101,106,102,93,105,87,101,100,98,108,101,99,96,88,95,102,108,99,102,97,101,102,90,115,101,101,96,112,75,118,116,95,93,92,104,89,101,100,94,95,95,98,105,106,94,109,99,103,98,111,101,105,99,116,101,107,86,106,99,99,103,98,102,96,92,94,106,99,92,96,104,102,111,98,105,86,90,121,96,113,99,92,87,101,96,98,98,105,99,103,104,118,103,100,92,99,102,98,120,82,98,99,101,97,95,95,101,106,98,105,103,100,103,102,97,110,98,96,104,80,111,95,92,101,93,94,90,104,98,106,98,91,101,98,96,93,99,100,113,103,103,115,98,102,106,105,97,97,97,91,98,106,96,88,94,95,101,101,106,108,99,109,113,102,102,97,105,98,89,108,107,112,100,108,81,99,92,94,71,99,105,90,102,108,91,101,98,104,103,97,108,97,102,107,102,107,98,87,104,107,98,97,105,95,101,101,93,96,77,94,93,105,108,97,95,97,94,97,115,95,90,98,94,96,104,113,93,106,67,101,100,100,94,107,96,87,91,102,105,122,94,81,97,74,79,90,122,92,102,105,109,87, +721.89685,98,90,114,112,83,100,85,79,99,71,90,90,94,109,96,104,100,86,96,102,105,100,104,96,84,106,102,107,84,97,93,104,101,86,95,106,104,91,98,100,95,109,110,99,91,114,101,99,96,93,100,98,91,98,104,92,98,104,105,88,103,97,106,90,114,107,106,110,105,76,100,98,88,110,96,94,95,101,104,112,96,89,96,98,96,110,104,92,104,104,91,105,82,88,92,110,101,94,100,99,106,105,104,109,92,98,87,111,104,100,96,89,96,99,105,99,108,103,104,90,86,87,113,114,89,95,100,84,96,83,96,103,61,106,100,95,98,95,89,86,91,88,74,95,99,100,88,107,116,68,93,104,110,91,96,100,99,108,102,88,90,110,97,96,97,105,102,99,101,92,99,94,109,94,101,105,80,97,104,117,96,95,98,103,100,93,95,105,109,93,87,107,101,98,96,90,96,107,98,94,94,84,95,104,101,104,102,102,107,91,100,105,113,108,94,86,92,96,81,97,103,98,94,92,101,111,97,102,103,94,90,109,107,100,92,102,100,103,104,100,94,98,109,108,98,95,101,99,108,78,105,114,103,106,87,88,95,93,94,103,83,99,95,94,96,99,96,99,69,91,103,101,92,110,105,98,119,83,96,106,93,100,94,98,95,106,92,95,97,123,104,100,100,107,94,101,106,101,88,90,100,92,103,108,102,108,104,117,109,107,91,105,93,95,93,89,102,105,115,92,93,89,113,94,87,86,97,107,98,117,98,97,110,107,101,99,100,98,92,95,100,93,97,110,94,99,89,90,91,89,99,90,108,86,69,98,103,110,96,88,96,114,106,100,116,95,104,91,101,99,95,105,96,107,107,94,103,94,96,98,117,100,99,96,98,101,105,109,104,90,96,97,109,94,103,94,89,60,84,97,104,100,94,94,97,91,104,92,101,110,98,92,99,97,84,93,89,100,104,91,82,101,93,92,93,96,88,95,88,99,86,94,100,92,90,95,89,101,85,76,112,99,108,90,91,113,105,101,100,103,113,96,106,109,95,97,88,96,98,107,100,102,110,96,111,108,101,99,99,105,98,110,107,108,101,101,90,110,105,114,90,104,99,96,104,93,108,100,99,98,105,96,104,102,105,100,106,97,95,96,85,97,93,94,97,107,101,109,97,97,101,103,102,93,100,91,99,99,89,104,93,99,99,104,99,100,102,109,103,92,99,100,96,87,106,94,105,104,90,109,98,102,87,91,96,92,104,80,104,104,99,100,100,92,97,98,84,103,102,90,93,99,97,99,103,100,90,101,104,88,95,98,98,101,100,99,102,112,97,104,108,96,96,98,103,96,106,109,105,95,99,106,102,106,103,104,95,94,89,110,99,89,109,101,89,83,94,102,101,99,95,89,105,93,106,93,106,87,89,102,92,97,95,97,101,104,101,97,99,100,93,97,93,75,99,90,101,97,99,99,91,104,103,135,98,99,113,91,99,104,100,109,99,99,103,110,91,98,90,88,103,92,95,111,95,91,114,89,102,96,107,99,95,100,90,102,97,99,102,99,103,104,94,95,84,102,93,89,100,98,107,96,102,80,95,92,101,100,90,89,100,96,109,105,105,96,117,99,94,102,107,91,94,96,91,102,97,96,80,106,84,82,97,102,96,94,106,99,96,106,100,99,103,102,95,100,90,66,104,91,96,91,96,96,98,97,103,103,105,92,98,91,94,93,90,99,108,92,99,81,100,98,100,82,94,99,72,102,79,105,114,97,108,99,92,94,101,106,95,97,99,101,100,95,83,110,103,106,88,93,104,98,96,81,109,83,98,110,88,105,90,103,94,88,94,93,86,113,101,99,101,102,98,103,105,114,98,131,97,99,94,109,101,123,96,105,105,95,99,89,96,98,97,103,95,106,107,97,102,76,95,101,100,95,91,110,105,87,92,107,102,94,90,101,101,75,90,100,112,99,108,107,89,102,109,100,88,96,106,100,99,103,93,95,91,93,112,74,106,105,110,95,102,112,104,93,110,99,105,99,90,105,101,93,95,97,107,102,88,93,109,97,101,101,106,89,94,111,97,101,101,137,96,93,92,109,103,86,91,103,105,102,96,96,100,98,95,98,94,108,95,94,97,101,96,104,101,104,97,96,95,97,102,99,102,96,97,102,106,106,100,93,89,107,96,95,93,91,96,100,90,96,96,95,108,104,95,91,106,105,100,88,86,109,88,94,99,98,94,98,100,98,91,105,104,132,90,102,95,89,97,106,103,100,90,97,99,105,106,105,96,95,96,91,95,95,102,98,100,95,96,100,94,95,101,101,101,97,100,106,109,99,88,99,110,100,95,93,99,97,105,93,101,97,101,114,95,99,104,92,94,106,89,93,86,88,110,97,123,108,117,105,108,91,107,107,109,103,106,99,96,110,97,109,100,113,97,98,107,94,84,107,95,99,99,102,81,95,110,97,101,97,93,96,107,85,90,106,114,119,97,94,115,87,96,96,90,76,102,99,109,94,102,91,98,108,106,91,101,99,99,102,106,98,96,99,97,103,96,100,106,104,106,96,106,102,95,113,91,98,117,114,112,89,93,114,95,101,95,95,97,99,90,103,108,109,101,104,105,98,113,97,110,113,103,96,104,88,106,96,100,92,95,104,92,107,102,96,103,103,89,110,104,102,109,98,115,105,104,87,108,96,101,108,108,101,105,110,100,106,97,97,98,115,93,103,98,82,99,111,96,104,99,102,96,96,110,108,103,101,108,95,94,110,107,104,106,107,100,95,106,100,95,89,95,100,113,105,105,101,96,109,101,105,112,86,98,112,103,102,94,91,96,97,117,102,112,108,94,108,103,107,101,96,93,99,101,122,96,103,106,86,101,94,92,86,86,102,97,113,98,104,94,104,99,97,111,91,99,112,98,96,104,96,98,104,98,106,98,121,95,102,93,98,97,102,87,105,65,88,99,116,102,106,94,87,118,107,108,94,108,90,102,89,104,116,107,101,97,92,103,100,97,101,102,93,87,100,109,92,100,92,79,106,99,102,86,95,93,113,104,93,103,102,98,99,103,91,99,102,95,91,107,94,102,99,102,97,94,101,103,100,103,101,95,91,125,102,100,88,101,89,99,102,94,106,113,95,102,82,83,101,105,97,84,92,107,97,104,108,88,92,69,108,95,91,110,104,106,96,94,105,88,87,117,94,105,88,93,93,104,102,99,81,96,100,88,103,94,102,103,98,100,102,100,99,115,104,104,97,98,93,101,102,102,94,89,105,102,89,105,99,100,80,88,100,107,95,91,103,107,98,96,95,97,109,100,107,92,103,104,88,95,92,104,109,92,93,100,109,114,100,91,96,113,97,92,97,105,97,98,104,100,87,96,98,99,109,109,96,98,109,88,92,108,95,102,104,88,95,101,89,92,103,84,91,94,102,88,109,100,95,95,109,94,104,87,103,95,93,97,94,92,101,93,92,101,95,92,98,97,96,98,92,105,97,105,105,100,98,121,103,101,102,94,97,98,101,87,112,88,105,100,95,99,106,103,100,113,96,96,113,111,96,105,114,99,110,104,84,100,91,92,101,95,95,100,99,87,94,83,90,89,98,105,95,109,86,91,94,89,98,90,102,101,96,91,92,100,104,80,84,97,95,105,89,101,105,98,99,106,98,100,105,83,92,107,89,113,93,92,101,94,97,94,101,93,91,98,90,105,91,108,103,105,88,86,94,127,102,85,94,116,100,100,105,99,99,89,99,99,96,91,95,86,104,79,101,93,110,103,93,98,113,96,88,104,96,102,95,94,113,87,104,102,89,87,95,109,92,119,90,99,115,100,103,101,97,110,97,86,100,98,97,97,105,94,103,104,93,97,93,109,101,104,91,105,108,97,98,99,100,95,106,97,88,102,107,89,89,101,88,87,89,100,98,101,110,99,99,98,109,99,91,95,103,104,102,102,90,105,82,94,105,96,101,98,103,90,84,97,102,115,110,121,100,100,102,79,89,104,100,98,101,101,90,96,100,100,96,94,96,93,102,93,105,86,91,88,101,99,97,98,107,110,91,101,98,105,95,94,131,111,97,96,102,95,112,91,95,107,94,106,104,96,93,91,104,91,110,91,98,96,92,88,91,102,91,90,97,99,90,94,114,95,93,96,96,104,97,115,105,98,92,87,97,95,107,87,91,114,106,104,90,91,101,96,98,96,99,102,100,108,103,98,110,101,109,106,102,98,93,98,90,106,113,101,97,111,105,100,95,102,91,77,103,108,106,105,89,107,75,94,90,96,98,98,91,87,117,113,98,108,103,95,102,101,91,112,99,96,94,111,93,98,99,97,103,89,114,99,94,92,102,107,99,94,106,91,105,99,110,99,117,87,98,106,93,101,105,101,96,93,102,105,94,101,109,96,84,92,93,103,94,106,95,107,93,101,113,102,95,80,98,97,103,80,97,102,104,110,88,87,101,95,106,99,96,102,102,89,95,105,100,99,99,97,95,99,99,103,89,65,100,104,104,86,102,109,100,91,90,100,96,106,110,92,106,95,108,96,103,101,93,100,92,94,94,105,88,88,92,98,101,93,106,101,105,91,96,91,100,97,100,103,95,109,101,103,90,98,101,100,94,95,111,97,87,103,94,101,102,104,102,96,102,102,107,115,93,89,91,93,99,91,107,98,112,108,87,123,79,88,89,129,88,84,101,89,96,109,96,96,98,112,87,95,88,102,93,101,98,105,99,96,100,94,94,100,86,99,102,91,93,88,101,91,102,117,92,89,87,109,99,115,119,93,97,102,96,91,107,111,97,92,100,94,101,102,99,104,87,101,91,109,88,102,99,99,103,97,83,95,99,92,102,84,96,110,103,98,102,105,100,94,89,93,98,88,99,111,87,96,104,98,92,104,86,94,105, +722.03821,93,93,103,97,94,106,92,94,91,104,108,101,102,103,100,99,98,113,99,105,101,101,128,91,86,97,92,96,99,102,96,93,86,110,105,88,95,109,106,100,98,93,102,94,88,100,97,91,95,103,98,77,102,100,90,99,98,97,106,97,98,95,91,84,96,100,97,105,86,106,85,96,91,98,86,104,96,83,100,98,98,95,89,86,99,92,96,95,85,89,103,103,102,85,91,95,92,87,98,94,96,95,87,94,103,96,91,95,98,88,97,95,102,115,105,101,103,108,109,104,104,98,97,98,93,104,100,97,88,104,97,97,92,93,104,98,98,102,98,88,91,96,94,106,90,91,102,96,88,91,84,101,81,89,87,108,95,95,98,98,100,108,104,106,110,91,86,90,97,88,101,94,93,98,108,102,95,91,114,97,99,105,95,95,125,97,86,101,94,107,101,90,102,97,97,88,82,92,107,106,97,100,93,92,104,91,94,93,105,100,83,102,95,95,95,95,97,104,110,112,100,82,95,103,101,102,91,96,87,90,101,97,95,109,94,98,87,102,95,98,90,97,96,101,95,98,86,99,105,92,82,91,104,96,96,106,100,94,102,85,91,80,102,102,97,89,105,105,97,105,100,98,100,92,100,102,91,100,90,107,72,90,102,102,104,107,88,99,89,95,85,95,102,95,101,97,95,97,98,100,103,94,103,102,93,102,98,92,96,100,100,104,102,102,102,101,100,87,94,93,93,97,107,96,99,107,103,87,100,120,101,104,97,96,90,106,99,95,97,97,89,96,96,94,95,108,104,96,111,99,99,93,101,97,89,94,92,100,87,91,109,92,99,82,97,94,88,111,109,100,101,98,82,103,95,88,95,88,102,112,101,107,95,102,111,95,98,97,102,102,104,92,75,95,111,101,89,87,85,96,95,100,98,92,98,98,103,94,103,87,95,102,95,78,99,92,95,90,97,98,129,100,95,102,90,88,98,95,84,90,90,96,98,90,100,104,91,93,94,104,102,98,98,99,99,100,98,105,99,94,95,90,98,99,94,113,98,105,67,96,98,94,99,86,97,91,95,100,105,95,98,97,89,86,100,96,98,108,94,91,97,103,97,84,98,99,101,112,94,109,100,92,93,107,95,89,86,94,96,100,101,88,93,102,75,78,95,91,94,87,102,88,97,101,104,103,90,88,87,89,94,83,100,90,86,96,109,102,116,101,100,95,101,97,90,97,84,98,95,112,91,103,101,99,102,97,98,97,105,100,87,98,99,87,98,90,101,93,90,91,97,96,104,99,100,88,100,93,88,115,91,91,88,102,105,102,97,86,93,104,101,97,105,107,89,95,106,94,93,79,92,100,83,108,98,109,91,94,96,94,78,101,95,96,87,90,100,112,90,95,98,84,102,92,110,87,97,96,98,101,100,98,93,96,99,98,110,100,102,86,83,98,92,102,89,102,105,96,105,96,98,100,101,102,88,94,100,94,91,92,97,109,104,94,101,101,90,100,95,96,120,94,89,100,93,96,107,104,97,97,99,93,100,95,102,105,93,86,86,90,100,98,100,101,86,97,87,99,91,95,100,103,98,97,97,101,103,104,88,100,100,103,98,97,91,100,93,108,95,92,92,88,98,103,96,107,72,95,96,96,99,85,92,100,95,84,89,107,99,92,105,107,109,96,97,101,104,87,95,102,93,95,90,111,98,107,91,98,107,102,97,89,99,96,91,105,96,93,93,98,103,102,84,99,69,103,99,105,95,85,110,101,112,103,110,87,98,98,100,113,109,99,94,109,83,99,101,118,77,103,106,97,102,104,103,108,106,95,88,98,98,102,105,106,97,72,95,98,102,92,109,97,95,93,109,98,99,98,116,95,102,101,96,95,106,92,100,100,97,98,94,93,92,95,94,109,88,99,98,95,83,92,99,106,97,89,96,98,101,93,98,96,92,105,94,91,101,66,90,116,96,95,102,96,87,103,91,102,109,94,99,91,86,93,95,108,99,95,89,95,113,108,90,104,86,103,86,130,75,114,98,100,102,99,103,87,89,102,99,100,96,110,84,91,86,101,113,93,105,83,105,109,96,84,101,96,95,95,80,109,101,97,104,91,101,84,81,95,105,89,93,109,99,96,89,98,96,93,99,104,102,95,101,95,95,95,93,96,108,104,99,102,94,112,105,98,90,102,98,99,104,90,97,100,93,100,89,90,94,89,83,105,97,113,90,97,97,105,96,97,95,100,95,94,94,110,104,109,102,107,93,103,102,105,86,94,101,97,95,105,96,95,109,105,100,91,109,102,79,97,92,106,91,78,95,101,97,96,84,97,111,94,93,78,100,86,103,105,89,97,108,89,108,97,87,103,93,106,96,103,102,97,104,109,80,99,88,102,86,98,108,100,93,98,99,96,89,107,92,110,91,93,94,108,103,107,99,98,90,96,105,102,104,94,99,106,100,87,92,104,100,133,80,111,105,103,100,97,97,100,108,115,98,93,98,106,105,105,85,110,97,95,84,95,105,105,90,106,105,108,105,91,101,93,103,93,91,101,93,109,101,99,100,96,101,85,102,108,104,108,99,117,92,100,101,97,93,98,101,102,93,93,100,98,96,76,94,100,112,88,102,109,105,101,108,89,106,98,90,102,113,96,106,112,104,104,90,90,104,103,97,98,100,100,101,91,108,95,109,98,94,113,93,107,108,110,84,85,96,98,102,91,111,98,99,98,101,81,91,101,97,101,104,87,105,101,108,101,108,106,95,91,98,92,100,102,91,103,96,94,104,102,108,105,102,90,100,98,99,95,103,107,87,95,100,105,102,98,93,101,106,107,88,97,93,103,103,94,107,100,97,106,92,94,102,105,84,100,97,105,99,96,66,87,103,92,106,103,108,99,98,100,91,113,106,97,91,91,106,95,96,109,106,98,91,113,86,100,91,99,105,95,94,91,92,107,117,91,93,103,90,94,88,104,89,89,63,117,109,90,96,102,104,94,109,101,94,92,100,109,108,106,101,105,103,106,103,104,121,106,100,89,114,107,99,98,102,101,108,106,98,106,113,101,104,96,101,96,106,93,95,106,96,120,99,97,120,97,89,93,95,103,100,86,92,92,97,103,103,108,99,105,103,102,74,77,100,94,99,103,102,108,111,101,94,90,93,96,93,103,89,99,92,115,96,99,93,98,94,103,108,101,96,110,100,113,95,102,101,93,96,98,93,87,89,87,104,105,100,99,109,98,97,89,96,108,101,90,105,94,89,100,81,102,95,105,90,95,99,98,102,100,90,90,99,96,90,98,109,76,85,107,99,93,90,91,95,91,109,95,108,96,96,87,109,98,88,93,87,92,104,100,63,84,99,92,102,95,112,95,90,102,102,98,94,104,97,96,105,92,95,102,104,88,105,105,97,98,95,104,99,100,110,88,91,110,107,89,94,102,111,95,102,98,102,100,100,104,87,95,105,108,92,116,101,97,100,103,95,75,88,91,102,104,99,96,94,104,85,95,106,109,61,96,100,91,105,103,105,106,106,108,90,90,102,109,91,100,101,99,96,107,88,91,94,109,87,108,90,105,109,95,99,111,101,90,111,90,99,96,53,74,104,109,97,95,112,98,84,96,102,97,99,93,91,92,90,94,103,96,87,103,92,101,93,93,100,95,90,99,96,114,103,106,85,88,98,113,114,100,91,108,97,102,97,95,110,132,109,100,98,103,106,107,107,102,85,93,95,90,91,99,98,109,105,87,92,87,102,94,99,68,102,106,94,107,95,115,93,94,100,92,109,93,92,91,95,90,100,97,93,83,84,103,103,104,92,99,104,95,118,93,116,88,102,83,105,96,94,90,88,105,89,105,88,96,105,100,94,103,104,97,95,109,114,101,94,96,92,102,96,96,94,97,112,97,97,93,89,91,95,88,94,109,96,102,109,90,111,98,109,94,113,93,96,99,96,105,101,104,96,104,91,102,107,92,92,104,96,99,102,96,103,95,107,92,106,108,85,99,113,105,95,106,98,95,103,102,101,110,98,92,104,91,76,100,102,101,100,100,101,109,96,111,101,89,104,112,102,95,107,95,102,82,98,92,98,95,103,106,105,92,108,88,97,118,92,95,81,103,94,112,99,98,99,97,108,103,101,105,95,98,91,94,99,102,109,86,87,107,108,93,102,85,103,95,89,105,101,85,87,88,103,108,102,110,91,96,105,99,95,92,95,98,95,88,101,99,92,98,99,98,97,79,91,103,108,98,106,108,97,91,98,103,106,103,91,92,91,104,101,100,107,102,113,94,90,97,94,100,111,93,104,94,91,110,79,127,103,104,100,98,116,102,100,100,113,106,98,107,104,87,101,99,105,95,102,92,110,103,108,97,102,105,94,99,93,94,106,97,89,97,92,99,94,98,102,94,107,98,94,99,90,98,96,91,100,106,99,93,98,110,99,87,65,103,80,102,99,99,92,106,96,91,95,93,87,105,99,113,105,96,92,102,105,123,91,103,109,97,70,91,126,100,105,85,102,120,103,91,94,92,97,97,96,97,90,105,94,98,99,100,89,106,91,87,97,103,94,96,94,89,95,100,96,88,101,96,98,135,102,90,106,112,103,94,91,99,88,96,115,105,101,108,106,105,110,80,94,91,98,97,92,87,100,99,92,109,99,93,102,87,98,106,102,113,93,108,101,84,103,93,101,91,109,89,108,76,99,87,91,104,93,111,101,98,105,96,104,97,94,85,98,107,87,92,83,100,104,104,98,110,109,98,95,99,98,77,80,112,94,97,103,95,99,88,89,105,82,90,94,92,74,99,90,98,98,98,99,104,106,105,98,105,106,117,101,98,94,110,102,92,98,91,104,99,95,119,109,99,105,89,99,83,96,102,100,104,108,106,104,97,106,117,98,110,98,88,104,97, +722.17963,115,115,102,103,89,92,92,97,87,101,107,87,96,100,109,100,99,114,99,96,90,95,106,107,97,96,98,99,101,108,100,90,94,100,93,107,99,97,100,94,98,90,97,103,96,71,81,98,85,107,85,100,91,87,100,98,101,95,102,91,94,99,100,81,92,107,100,103,99,99,96,103,91,113,94,111,87,108,90,89,100,97,71,105,99,91,91,106,98,109,92,92,92,89,84,96,107,96,108,86,68,102,95,100,103,103,102,107,100,97,86,93,97,91,99,89,113,98,100,77,90,99,95,117,108,106,102,108,109,96,116,103,98,95,106,99,95,105,93,77,80,99,86,97,97,105,91,108,97,100,104,102,90,88,109,93,101,105,103,104,97,98,95,97,114,101,102,103,91,97,113,94,102,90,103,90,95,107,113,95,100,111,102,122,92,90,94,79,103,94,101,98,101,90,101,85,90,94,101,88,93,106,97,99,88,115,101,99,102,105,98,110,105,100,78,94,91,106,104,102,107,102,81,83,87,100,83,113,104,98,93,108,106,117,103,111,105,96,105,95,96,103,101,99,92,109,109,97,105,101,97,105,91,108,91,92,98,97,101,96,99,97,98,102,97,83,81,97,87,88,93,94,97,101,97,106,102,99,98,76,85,96,83,98,93,98,98,101,103,90,96,100,109,99,97,94,99,100,92,103,95,97,107,116,102,106,99,90,98,100,89,100,95,95,100,97,102,103,102,108,95,95,109,101,96,101,96,90,83,99,98,99,98,99,85,96,94,102,91,91,77,92,103,105,95,113,100,94,95,103,98,96,97,90,98,101,107,106,107,102,98,103,95,94,90,100,91,91,71,88,102,96,88,107,96,83,106,86,98,95,96,115,103,100,96,92,104,95,94,95,98,98,97,94,89,89,104,88,102,98,80,101,88,100,113,90,106,99,97,103,103,92,105,113,96,92,89,85,96,98,89,97,86,100,102,109,105,95,94,100,93,100,110,103,89,93,95,92,96,104,113,106,108,96,98,97,96,88,100,101,99,97,95,108,96,99,100,92,94,93,103,101,95,102,99,106,103,91,98,91,112,99,84,101,82,98,101,118,97,88,77,89,107,95,91,93,86,114,94,93,97,104,102,106,83,95,105,95,99,94,103,100,90,96,90,106,91,93,95,106,107,83,97,92,109,98,96,97,95,86,98,94,97,100,106,103,100,101,100,98,94,101,82,91,93,101,101,108,102,115,92,95,94,100,108,90,95,106,104,103,107,91,92,72,96,110,103,103,103,90,98,104,100,106,109,103,95,100,100,112,89,93,92,105,122,106,104,100,109,102,90,96,88,104,125,93,92,105,109,101,100,103,88,94,100,100,86,95,93,101,98,98,98,100,105,102,91,98,113,101,121,117,111,103,113,98,94,99,101,94,108,98,81,93,99,101,94,102,98,87,97,103,99,98,87,103,98,103,105,98,104,96,90,93,122,90,105,88,99,103,92,97,106,109,90,109,105,110,115,102,110,87,105,109,99,109,105,93,103,97,117,107,92,94,97,99,98,94,103,101,97,95,113,98,64,106,90,98,95,96,89,98,91,97,95,93,99,102,97,101,95,98,104,81,102,100,73,107,93,128,89,104,92,97,84,98,95,100,91,99,99,96,101,96,97,93,89,107,102,105,101,103,102,98,100,101,101,62,109,100,89,101,99,96,95,84,101,101,92,100,108,97,97,105,103,90,107,96,97,102,100,99,81,92,83,88,106,94,92,103,109,100,106,105,88,108,105,109,91,90,105,100,96,95,99,65,96,94,97,96,94,112,108,102,113,87,84,97,92,106,88,96,92,92,102,89,103,101,108,103,98,90,101,94,111,109,111,75,102,94,92,118,106,100,107,105,106,94,98,104,109,89,95,101,117,112,107,112,101,103,93,102,79,96,94,115,97,91,91,105,103,74,110,98,100,106,104,94,97,114,91,99,106,89,100,88,94,91,98,104,107,104,97,109,84,101,103,97,83,98,102,89,104,94,107,97,101,103,107,94,99,117,103,98,102,108,92,99,85,102,103,94,99,101,122,112,82,98,90,94,93,97,81,105,99,102,93,89,107,94,94,106,96,96,100,99,108,98,91,100,99,101,106,107,102,97,102,111,93,96,94,95,90,106,98,95,95,101,97,106,111,130,94,79,97,104,96,111,95,92,107,86,104,102,77,99,99,105,90,98,104,102,114,92,93,92,82,85,80,103,100,101,76,93,97,103,97,89,95,95,89,80,112,92,96,97,101,103,103,110,110,105,109,93,93,91,101,96,97,109,103,107,100,87,103,92,109,95,109,94,102,106,88,86,103,94,99,95,96,91,111,109,91,97,102,88,96,104,98,90,104,103,93,103,102,101,111,91,99,100,92,98,102,102,88,121,103,106,102,95,98,104,99,99,100,102,105,98,95,91,99,97,100,108,108,90,105,101,90,103,100,97,95,108,95,105,85,91,116,103,99,101,108,89,83,96,87,88,111,98,101,95,98,107,80,109,108,98,106,89,99,105,97,110,109,103,92,100,92,107,97,88,111,94,100,98,88,105,103,92,103,113,99,98,101,116,97,101,98,97,91,101,108,103,99,66,107,90,107,96,110,115,112,102,107,100,99,101,104,102,104,85,105,97,99,110,93,81,99,97,93,94,110,105,89,100,103,98,91,102,99,80,98,77,90,136,111,99,96,104,93,93,101,114,91,91,104,87,97,102,94,100,96,93,101,102,80,98,104,90,97,87,89,114,97,95,115,105,122,102,92,100,99,93,71,92,96,107,109,91,99,102,97,103,103,94,110,96,89,104,96,102,103,102,83,95,104,120,102,91,100,101,103,90,121,97,95,95,100,102,100,82,108,96,101,99,102,96,94,92,108,100,111,102,87,96,101,97,104,115,104,79,112,105,110,102,99,100,100,99,101,120,104,97,110,92,101,110,100,93,94,101,97,94,91,90,102,88,89,79,96,92,87,112,105,104,94,88,99,90,102,98,105,96,103,92,92,90,113,104,92,91,99,98,102,95,98,106,110,104,109,104,107,92,92,110,95,96,127,100,94,96,92,106,94,95,100,87,109,94,113,102,115,97,91,104,88,100,100,95,95,101,94,95,109,99,101,100,105,99,94,72,100,110,105,99,60,96,109,105,98,102,105,90,91,96,93,93,66,73,93,94,107,106,94,99,102,104,95,96,101,101,104,90,98,116,99,99,94,96,97,106,92,95,89,107,98,93,116,106,101,93,99,104,105,102,100,116,103,83,106,103,98,98,84,91,106,105,101,104,82,94,109,98,86,93,102,86,103,99,99,91,109,99,102,88,96,107,97,99,83,102,93,106,84,103,100,98,93,105,87,98,105,103,91,91,104,101,96,95,113,87,91,106,108,102,96,106,95,95,96,98,100,98,98,93,120,103,104,102,97,105,97,87,98,87,97,101,96,103,101,97,98,93,95,101,104,105,98,100,103,101,99,86,107,96,75,96,100,111,100,93,96,100,116,96,95,113,91,88,105,113,96,97,101,97,99,114,102,99,106,102,101,95,97,109,94,97,100,101,88,97,102,90,101,82,98,95,111,91,91,96,107,102,96,105,99,111,100,94,98,98,113,94,105,89,98,94,109,86,107,100,99,98,94,94,100,108,94,102,103,100,91,102,90,102,106,90,106,99,104,105,94,100,90,98,101,97,93,81,102,90,104,100,93,99,98,99,103,98,91,104,96,101,96,98,103,96,99,96,95,97,98,92,102,107,89,99,108,94,101,100,105,104,104,97,110,96,99,99,93,99,92,101,98,105,94,96,112,103,107,110,107,89,118,112,106,99,98,100,77,110,100,101,97,107,97,107,104,102,104,95,113,107,82,101,105,101,94,109,103,100,102,101,95,104,108,105,108,97,101,104,84,100,101,90,93,113,98,92,85,89,95,93,105,105,111,100,95,97,99,96,97,99,95,101,96,94,96,99,98,104,98,106,105,97,96,101,105,100,95,102,98,99,107,88,84,105,100,105,103,90,109,97,97,90,104,98,93,100,100,110,104,98,100,111,109,91,103,109,105,91,101,99,103,103,83,103,86,102,97,101,100,104,94,88,85,108,93,98,98,93,101,95,101,104,103,102,104,100,102,92,104,110,106,100,100,100,91,98,104,95,96,91,95,96,100,106,108,116,94,94,100,93,109,96,107,101,93,103,101,109,101,105,83,108,102,102,100,93,105,110,103,91,96,105,99,110,109,98,103,94,104,97,87,92,99,109,96,99,93,93,89,96,99,91,100,90,97,104,76,99,110,65,92,95,113,90,82,94,104,81,91,93,105,101,100,97,90,94,98,105,97,103,98,95,106,107,95,103,92,93,83,114,95,101,103,96,105,92,97,95,101,103,103,99,100,100,97,100,95,88,112,106,90,94,99,102,113,99,100,103,99,87,92,100,91,90,96,107,113,110,109,107,102,105,84,95,102,100,94,104,101,108,99,99,108,95,95,110,98,100,97,103,107,97,108,99,88,88,116,101,91,106,92,93,106,93,112,87,104,110,105,95,99,107,102,93,86,101,103,95,114,105,103,114,114,98,110,99,80,98,102,98,84,100,100,109,114,101,96,90,114,93,100,92,80,98,106,102,99,99,105,88,100,121,104,90,93,99,91,83,108,88,98,101,93,98,102,83,97,102,87,104,106,96,102,107,104,92,105,110,99,87,99,105,110,101,95,77,98,99,93,102,125,121,103,97,117,124,107,108,98,104,88,95,95,103,103,98,107,93,87,95,94,104,116,94,102,100,117,93,91,103,99,110,89,103,103,102,138,93,114,91,103,103,103,102,92,113,106,105,89,97,97,102,92,99,97,100,83,84,99,100,106,86,110,93,100,96,88,97,102,84,112,95,102,113,92,97, +722.32098,84,96,101,100,99,98,91,91,93,106,94,96,114,108,106,96,103,80,109,100,93,107,102,111,103,96,97,94,100,90,99,93,102,98,100,106,96,92,94,97,90,96,97,91,101,106,97,101,96,109,103,97,95,94,94,104,83,88,98,93,86,97,92,101,103,106,96,91,99,101,109,94,92,117,102,98,86,95,99,97,98,101,96,99,101,90,105,108,101,97,113,101,95,99,99,100,90,68,109,94,94,96,108,106,97,106,96,108,102,78,97,100,101,92,87,100,96,103,112,86,105,75,67,95,97,93,109,104,114,95,104,104,95,104,81,93,103,115,93,86,88,94,103,105,113,92,93,99,97,99,99,105,108,92,100,106,108,104,95,106,98,113,98,99,106,97,90,97,119,102,84,74,105,102,106,86,93,89,105,95,100,88,95,104,105,93,90,100,99,95,107,106,105,105,103,114,106,97,77,102,104,83,111,106,105,96,103,76,100,106,91,102,115,104,116,100,95,114,94,97,101,102,100,97,100,102,97,90,100,90,104,96,95,99,102,95,92,102,88,97,106,88,98,100,99,97,103,100,103,83,99,95,98,103,94,102,93,95,105,92,77,109,105,98,96,107,87,99,96,97,94,94,102,106,102,101,124,103,90,103,98,118,111,98,86,95,83,105,77,96,100,103,89,101,103,101,117,108,102,102,100,107,101,110,92,98,103,101,97,95,102,105,99,101,98,91,99,104,90,93,100,92,88,98,100,109,99,99,101,118,100,90,72,102,87,98,99,99,91,103,92,93,102,91,104,98,105,99,95,124,88,96,99,77,96,107,110,97,89,96,96,106,112,106,97,110,98,84,99,115,109,94,86,73,111,94,99,101,94,126,92,109,101,106,119,108,94,89,98,103,105,83,100,103,95,92,85,87,108,91,96,74,98,89,97,94,95,103,105,105,96,98,108,115,99,91,108,101,97,94,95,94,92,86,98,106,87,105,93,102,103,87,98,105,90,102,88,105,102,97,101,106,98,100,95,102,94,93,95,99,89,97,103,116,106,104,94,93,100,102,113,89,109,106,100,111,101,89,109,96,102,99,109,103,89,101,97,115,97,79,95,108,116,114,99,96,88,90,106,79,106,82,88,95,91,112,97,105,98,101,95,99,109,98,95,86,97,109,95,108,97,122,104,89,118,101,102,102,93,104,106,93,109,102,94,70,104,93,103,97,83,100,92,103,87,103,110,106,95,117,112,112,96,92,106,108,103,104,101,94,100,95,95,87,98,106,103,96,91,101,100,102,98,91,90,106,101,92,89,103,96,76,101,89,136,98,92,106,87,103,111,73,112,88,97,92,98,93,100,93,89,110,93,97,90,100,101,97,98,102,91,92,105,99,104,98,102,102,90,85,105,86,109,110,101,99,104,98,113,109,101,102,96,62,98,113,102,113,90,95,101,77,94,122,96,103,101,98,115,103,98,111,103,95,93,95,98,93,92,98,100,96,101,99,96,99,99,109,113,95,85,98,108,122,99,102,104,98,108,95,109,92,97,108,89,100,104,98,111,95,106,99,110,97,93,100,96,100,96,95,106,95,105,88,99,92,100,99,91,94,95,103,94,103,100,109,115,102,96,105,98,105,101,88,97,103,90,104,102,90,101,96,98,109,93,94,83,99,104,110,104,101,88,105,113,91,106,93,108,98,99,109,95,104,101,116,96,111,81,110,104,93,61,94,104,101,102,100,99,110,120,97,97,104,92,119,100,101,99,96,98,100,107,92,110,87,87,111,106,72,100,103,98,100,97,108,85,102,92,101,109,101,90,103,108,106,102,93,91,97,98,98,100,114,109,86,96,113,102,106,96,89,85,97,103,101,109,75,103,92,97,103,97,116,99,99,103,105,84,95,95,85,98,104,97,100,106,96,99,100,69,99,101,94,97,97,110,85,105,111,110,90,99,111,102,108,104,98,103,95,75,92,106,98,100,104,91,103,84,106,105,100,109,111,85,98,104,103,99,103,112,102,90,93,97,100,113,111,96,94,91,110,99,104,99,103,100,95,92,122,98,98,114,109,102,101,93,119,101,92,96,92,102,103,108,93,100,112,98,96,100,100,101,104,109,70,92,103,92,99,99,104,100,94,89,99,99,104,97,113,98,97,92,100,107,105,79,90,99,97,109,98,86,90,96,87,103,95,91,104,110,86,105,99,113,106,91,103,90,100,95,108,100,101,95,80,100,99,91,99,101,98,96,101,91,93,106,100,91,108,104,104,94,97,106,97,123,100,96,105,87,100,83,92,98,109,103,102,101,87,90,101,96,101,88,101,107,94,106,92,107,94,92,86,106,110,96,96,108,96,110,103,110,107,87,112,96,98,89,96,98,100,94,93,115,92,98,105,91,82,95,93,88,98,96,102,104,99,93,95,83,97,93,98,100,101,97,102,95,106,100,99,93,110,104,94,102,99,97,114,87,96,94,103,104,104,87,99,112,106,88,105,94,104,94,90,104,97,98,99,112,96,104,99,90,104,101,95,100,88,96,112,89,100,97,103,95,112,99,86,123,108,91,105,108,106,98,90,118,83,112,113,106,93,94,100,99,114,101,95,92,104,102,93,93,110,94,99,103,96,103,109,100,97,102,106,103,87,108,102,108,120,90,88,94,94,85,72,88,100,100,113,98,106,100,98,103,91,108,102,101,98,91,105,98,100,104,94,99,98,109,100,105,108,89,102,107,100,84,100,91,96,103,95,85,100,111,108,96,102,88,106,93,98,114,91,99,111,102,117,99,102,111,115,90,98,113,87,93,95,108,98,102,99,94,104,106,112,108,116,106,100,110,92,100,88,104,90,105,102,92,96,97,98,102,111,97,105,99,72,100,90,111,96,100,90,110,100,96,104,87,105,92,108,94,104,95,87,99,104,102,93,91,94,103,106,90,103,98,104,97,88,108,99,104,105,93,118,104,101,105,94,102,98,99,95,101,96,89,108,109,105,107,89,101,96,90,101,91,109,99,106,103,96,96,102,107,109,106,98,98,98,99,94,91,98,94,111,100,98,106,102,109,97,95,98,101,97,98,87,84,103,83,95,96,112,97,104,94,106,88,112,95,105,101,93,99,101,103,98,101,100,109,110,100,94,94,124,96,97,106,94,108,100,99,104,89,97,91,96,108,100,91,136,109,100,99,83,105,97,109,89,105,102,90,94,100,102,111,95,106,106,96,92,94,118,90,96,106,116,101,106,95,90,105,99,98,82,108,106,94,94,98,99,110,81,93,106,105,95,102,98,102,94,92,98,109,101,97,91,87,92,104,122,86,110,80,104,104,100,98,109,103,95,105,75,101,95,103,98,98,124,100,97,92,102,95,96,103,96,112,83,109,86,105,94,101,102,103,97,95,103,99,102,102,97,99,94,100,87,92,107,103,100,92,98,105,95,91,95,113,100,98,93,102,91,102,94,84,97,104,98,101,95,96,91,94,123,69,109,110,100,87,101,96,106,83,98,98,120,98,104,90,105,95,104,104,104,100,94,67,87,98,91,107,96,95,113,96,105,98,100,106,106,81,121,103,103,113,101,101,101,100,100,100,109,105,104,105,117,88,111,102,111,100,104,102,105,97,98,68,104,96,99,99,86,85,97,96,91,100,93,100,104,102,99,101,91,98,100,98,110,111,106,87,109,106,101,102,106,99,99,99,106,92,95,107,104,100,109,93,96,94,100,101,101,114,95,107,97,103,92,98,109,101,88,106,95,97,94,105,100,106,94,94,108,95,105,100,105,102,101,98,104,94,72,97,94,106,89,93,103,89,105,104,88,109,100,102,92,104,96,106,102,99,102,100,83,95,102,100,95,100,97,93,106,82,102,110,105,95,101,105,113,96,96,97,87,101,101,102,91,90,96,94,107,88,91,96,92,100,104,101,105,91,97,77,109,93,106,92,102,101,88,102,88,102,116,104,102,98,99,91,113,92,93,98,94,105,101,113,113,105,100,104,97,99,90,103,103,104,96,99,101,105,105,99,97,100,91,99,97,94,110,113,98,111,111,102,105,82,100,102,105,97,121,106,99,97,92,100,92,97,90,98,95,91,104,101,98,109,97,91,101,104,103,101,103,98,104,90,92,96,95,108,100,99,93,97,92,96,93,98,106,99,102,109,97,103,105,99,104,106,92,101,103,94,112,88,92,90,105,101,106,94,103,104,113,104,105,103,93,100,95,95,97,116,104,98,99,96,91,100,94,100,84,117,102,98,83,89,111,102,93,86,96,95,94,107,113,108,102,105,103,101,102,90,96,90,91,116,95,106,102,100,87,109,75,101,90,99,101,88,95,98,94,102,107,102,93,98,92,92,104,97,96,95,85,99,104,94,104,107,100,66,84,99,108,96,99,92,85,121,100,98,105,98,104,105,101,96,85,96,98,105,97,106,121,97,88,102,96,96,103,92,104,90,106,95,104,83,75,90,96,92,92,103,89,89,113,100,102,114,79,96,95,99,121,104,88,88,93,93,94,94,113,99,96,99,96,81,90,99,100,93,100,98,115,114,106,95,101,98,99,96,112,83,109,109,101,97,91,103,91,94,93,104,101,91,94,90,94,94,99,111,98,95,107,121,102,101,116,108,103,103,105,96,103,100,72,101,97,116,111,99,103,101,105,100,92,102,95,98,102,90,90,99,100,97,109,101,96,99,95,101,83,110,105,103,99,103,95,112,117,92,97,112,98,98,93,95,95,106,104,103,93,99,106,99,107,116,102,92,95,124,88,106,86,115,98,106,97,105,91,123,96,104,97,103,102,110,94,116,100,113,95,83,103,108,94,113,108,85,108,99,97,109,97,94,111,98,98,110,103,109,100,95,106,104,84,108,88,105,94,113,91,105,75,95,106,110,101,110,94,106,96,93,89,109,97, +722.4624,96,91,101,92,95,93,95,93,109,106,109,107,99,111,111,94,97,107,118,86,106,91,96,74,95,117,112,87,123,113,115,99,99,102,105,94,99,98,109,109,97,124,104,104,97,101,107,98,99,109,109,98,92,93,102,122,108,95,108,98,108,110,101,95,101,115,98,102,101,100,101,108,99,116,90,119,95,100,106,118,113,101,101,107,93,95,106,101,100,94,98,99,98,91,97,95,102,106,103,92,100,109,106,99,112,95,101,102,78,110,94,97,101,94,99,90,98,99,91,82,108,105,110,105,94,98,119,102,121,101,90,99,104,105,101,98,91,83,101,88,101,105,85,88,101,94,97,112,106,93,102,103,102,92,90,89,86,100,94,95,101,100,103,109,100,105,90,101,91,96,97,113,97,87,111,102,98,100,94,101,109,96,122,101,103,105,104,102,103,92,92,92,97,112,91,106,103,101,92,98,104,119,92,98,99,110,84,99,110,99,101,108,114,106,106,97,92,108,100,92,87,97,93,105,100,108,105,107,94,100,90,93,113,88,104,102,105,97,112,97,99,108,98,97,102,100,92,104,104,106,86,102,102,90,96,101,97,109,105,97,112,98,82,109,98,118,113,100,97,101,104,104,107,101,97,110,104,102,98,104,96,91,98,98,92,90,103,91,109,87,91,105,80,109,105,102,100,86,115,103,103,99,97,97,94,97,100,113,99,108,96,106,104,96,100,88,97,110,100,101,95,92,89,98,102,80,117,92,108,98,102,99,100,96,125,100,106,111,112,101,98,98,113,89,92,132,90,97,101,97,95,111,108,102,110,97,102,99,100,93,123,100,99,102,85,107,101,95,91,98,95,96,100,96,102,97,116,92,100,99,82,95,100,101,106,103,93,98,99,104,109,96,90,97,86,83,100,99,108,94,112,105,96,85,95,97,120,110,94,99,95,99,101,102,103,102,95,105,112,94,102,122,90,95,92,95,112,97,99,96,98,95,93,101,105,106,100,117,106,105,111,98,106,91,102,90,99,94,64,111,101,97,98,103,105,104,100,102,100,101,95,98,113,89,95,98,89,92,103,117,90,104,91,96,104,95,102,107,111,83,99,108,99,82,101,97,97,100,97,98,93,106,99,100,90,98,94,93,109,87,113,102,99,99,102,101,82,100,112,103,95,98,88,100,103,102,95,99,95,98,93,106,98,103,101,97,92,103,103,99,100,98,95,101,101,96,98,91,99,107,101,99,100,109,121,126,113,96,91,112,95,103,100,108,103,99,70,98,91,102,103,110,104,109,103,101,110,102,92,85,101,100,107,95,104,100,92,88,91,104,103,91,105,90,83,102,89,97,111,121,106,104,99,102,108,109,103,103,109,112,99,97,95,92,99,89,97,118,106,101,102,100,95,102,118,99,105,104,102,100,104,89,103,115,101,102,106,90,93,99,94,99,113,114,114,103,101,94,93,101,92,99,97,93,112,86,103,87,104,113,96,97,90,113,105,97,110,108,96,100,108,104,78,108,96,99,94,100,101,67,107,97,105,104,95,79,94,98,111,103,102,102,100,96,94,90,85,88,114,104,104,89,101,120,90,98,98,98,102,93,90,100,93,92,86,122,106,97,91,92,112,98,91,89,128,101,98,101,103,104,76,90,109,106,103,100,100,101,103,124,105,113,98,115,95,98,94,91,106,101,104,95,92,103,98,115,103,118,118,101,98,115,97,105,98,101,97,96,104,92,88,94,88,92,88,106,91,108,110,105,111,101,105,100,96,114,99,102,91,98,102,67,106,107,100,103,90,109,106,102,98,104,93,107,102,105,109,108,97,109,94,100,105,108,113,110,90,100,102,98,118,99,100,92,115,96,101,105,106,98,111,90,103,121,97,107,97,112,106,117,98,102,104,99,85,103,104,100,101,119,106,89,103,112,90,98,98,99,82,99,98,89,108,95,89,99,95,95,115,95,90,95,91,103,104,101,94,110,107,106,93,117,102,105,87,87,77,99,108,108,110,114,103,96,90,89,97,108,98,108,91,104,100,95,100,95,124,98,105,99,106,102,112,100,102,96,96,86,99,110,103,103,103,102,93,97,99,112,110,112,104,104,99,100,75,100,92,93,107,100,97,102,108,108,103,95,79,93,88,106,103,98,102,97,105,101,97,108,98,108,108,117,105,101,94,113,95,103,91,95,94,117,92,95,110,103,125,97,97,104,96,100,98,101,100,101,110,105,97,105,91,108,100,106,96,105,90,101,96,98,104,96,104,94,97,97,94,109,101,101,96,100,96,109,96,95,105,108,100,106,78,90,103,110,85,129,98,105,100,91,96,105,108,95,96,97,90,98,90,97,125,105,97,105,113,101,94,91,100,109,98,108,97,95,88,92,103,102,83,98,83,114,98,105,100,103,101,98,108,105,100,102,109,117,101,104,92,98,104,89,82,111,88,95,106,104,93,101,108,111,98,95,103,105,103,102,98,92,111,103,101,106,102,86,91,110,96,94,113,100,95,98,98,97,92,104,111,107,105,101,74,106,109,95,115,101,111,116,87,96,97,100,96,110,99,103,103,87,119,102,98,101,111,99,94,101,102,98,106,91,93,102,91,95,96,109,97,100,109,93,113,101,106,104,94,92,97,99,102,94,100,102,98,80,99,98,91,101,93,99,101,103,111,91,104,98,104,100,99,100,100,95,108,100,108,108,113,95,110,106,101,90,99,108,84,119,107,106,95,75,104,91,104,93,92,87,95,104,101,111,90,97,97,103,95,102,100,105,99,101,102,102,96,109,84,113,89,83,107,107,95,98,104,109,105,93,90,111,106,99,105,102,108,97,93,91,107,102,99,103,102,102,108,98,106,105,103,111,96,105,108,125,103,100,97,102,116,93,96,109,104,92,96,108,92,104,98,116,91,110,118,104,104,98,114,104,101,93,106,100,100,106,94,89,106,106,105,97,130,108,114,105,95,106,85,98,113,104,97,91,93,98,99,88,97,101,99,101,100,104,102,109,103,102,108,110,98,105,101,94,97,96,101,105,106,97,90,103,96,109,96,109,104,106,100,107,95,97,103,95,88,103,105,102,97,94,109,91,102,100,102,100,82,92,106,109,96,99,101,116,104,96,94,112,106,99,106,100,75,101,97,115,97,108,103,96,70,104,109,96,90,97,104,96,91,101,104,90,109,102,104,96,92,97,102,102,103,91,108,102,80,87,105,91,98,94,106,102,108,103,103,105,105,103,102,98,107,97,100,67,100,90,89,100,130,91,101,104,101,105,92,116,93,90,94,104,101,112,93,103,109,94,117,99,100,92,95,104,95,93,120,103,84,98,97,99,93,86,97,103,83,103,102,104,76,92,95,98,112,101,98,100,96,97,105,102,102,92,103,99,94,98,99,104,102,91,120,105,94,95,92,102,97,94,89,105,112,109,106,76,92,102,101,96,95,95,95,108,108,87,100,100,111,94,116,103,100,96,92,91,90,97,110,94,96,86,110,89,100,96,100,101,97,98,98,94,109,109,109,95,102,103,103,93,98,103,100,104,103,104,91,116,101,104,106,116,91,97,96,110,97,88,104,102,99,93,94,100,107,96,95,90,107,100,108,98,96,96,97,105,83,101,97,101,106,90,90,109,102,100,106,95,110,99,97,105,105,105,108,96,104,106,84,98,105,88,101,116,105,112,88,99,97,103,102,100,96,107,106,94,96,86,112,103,95,99,108,88,99,107,102,104,110,98,108,103,94,96,96,107,100,103,104,102,103,92,101,103,103,92,109,98,98,112,100,111,90,91,106,96,92,94,84,104,109,96,100,105,91,102,99,77,98,103,96,95,96,105,106,113,90,93,100,114,101,104,89,103,105,97,100,95,100,103,102,111,81,96,92,98,92,98,105,91,111,94,103,117,95,100,104,106,106,96,101,95,97,100,100,99,92,98,105,98,109,90,102,99,91,105,105,100,97,117,97,98,109,100,100,103,109,111,106,97,94,100,97,100,110,97,101,83,92,94,117,100,115,96,100,91,102,79,96,106,108,98,106,100,104,98,104,128,100,98,99,104,107,96,100,94,108,104,100,105,80,105,112,98,108,102,105,113,105,102,107,76,105,108,106,110,96,90,112,98,98,111,120,89,97,105,79,104,90,99,95,100,99,109,112,101,108,93,84,108,98,102,109,91,98,88,110,105,107,97,92,107,101,92,101,94,103,108,98,106,91,100,104,102,109,127,107,102,102,100,95,95,114,102,107,99,104,93,104,96,106,95,86,93,94,93,100,92,112,105,92,110,87,91,93,103,102,97,87,100,97,99,104,96,99,98,96,95,110,105,94,105,95,98,100,98,98,101,98,107,95,97,104,93,105,109,97,102,103,67,101,98,96,95,95,96,113,97,102,107,94,102,103,79,107,83,93,96,100,98,105,97,116,101,105,94,109,100,97,115,99,98,94,101,99,103,118,99,97,101,104,100,93,94,114,106,87,106,111,99,103,99,89,107,106,111,96,93,104,104,93,109,96,96,106,86,109,103,87,98,111,111,98,112,98,104,89,97,99,94,113,103,92,100,95,101,109,105,105,89,109,118,113,99,100,101,100,100,90,113,94,104,110,108,111,107,116,108,115,99,90,104,87,108,87,110,116,104,100,97,117,111,100,91,94,97,98,88,102,120,84,97,105,83,92,89,96,107,101,105,91,104,98,111,102,104,103,96,94,102,100,98,99,94,93,99,113,99,102,86,108,113,93,81,109,115,95,100,94,93,121,99,99,108,107,101,94,113,87,117,115,108,102,91,106,109,108,103,116,97,100,91,107,125,95,114,97,112,103,81,117,103,98,105,104,104,96,103,106,109,87,96,100,97,104,97,113,99,117,100,103,91,96,103,105,67,111,95,109,109,99,100,97,88,94,65, +722.60376,104,103,89,96,101,109,104,90,106,101,99,100,104,95,92,102,97,110,94,113,102,93,99,100,88,105,98,91,89,88,96,96,105,98,109,99,101,99,117,104,91,103,94,103,86,87,94,98,95,99,84,112,100,93,100,92,94,97,101,96,97,125,90,81,108,101,102,88,107,89,104,97,90,104,94,103,95,89,102,92,103,98,90,97,102,104,105,102,96,94,87,98,94,91,99,94,97,111,94,96,101,97,89,106,87,108,97,89,95,94,89,106,71,112,95,103,89,91,113,111,101,104,96,95,92,94,110,98,107,102,98,100,96,93,97,102,118,100,98,88,86,104,86,101,104,104,95,95,101,101,90,96,105,95,106,102,102,91,102,101,111,101,103,110,100,96,101,96,94,95,99,94,102,92,100,92,93,92,92,83,100,89,108,107,97,96,105,92,105,85,98,79,108,99,101,95,93,106,95,93,110,105,89,88,108,102,75,105,109,102,94,91,80,107,74,73,94,107,86,97,102,102,97,74,120,97,86,108,98,101,100,94,107,94,71,106,93,108,94,87,99,102,113,103,96,100,91,90,106,91,97,81,94,113,98,95,104,92,106,95,91,105,92,99,80,96,107,108,100,113,93,94,100,101,111,96,98,102,99,97,95,103,101,102,97,90,95,88,106,100,100,99,108,88,89,98,102,93,98,93,95,87,102,102,92,100,95,106,110,103,78,103,87,113,116,89,91,94,97,94,104,105,86,91,94,104,108,94,96,96,102,102,104,103,104,92,95,91,98,103,107,102,87,100,102,111,99,104,102,96,94,112,96,117,93,99,102,104,91,102,96,91,91,99,106,104,99,93,95,104,96,101,80,99,106,100,101,76,99,103,102,103,88,98,99,98,98,83,91,67,98,95,91,113,105,85,98,109,95,121,104,88,94,93,93,99,109,97,105,97,96,90,95,98,64,102,93,103,103,93,103,99,90,92,96,95,115,106,89,102,89,112,93,96,91,100,92,99,101,104,102,110,98,99,98,91,97,93,101,99,98,93,81,101,98,102,105,105,93,98,98,95,104,114,95,100,99,93,90,90,87,97,99,92,89,90,95,110,100,106,99,107,78,109,96,101,88,107,99,95,96,99,95,92,90,100,82,104,99,96,100,96,104,80,99,104,93,100,106,101,113,90,92,90,100,102,92,105,66,101,100,103,100,87,77,97,104,99,106,108,92,98,88,95,91,105,104,91,84,98,103,112,87,92,94,88,95,90,107,93,101,107,109,109,105,99,103,83,93,97,96,96,98,92,102,99,104,110,102,92,64,99,108,98,95,101,82,75,90,95,105,131,90,103,109,89,84,94,111,97,92,102,96,79,94,97,111,101,107,90,94,104,91,95,101,100,73,93,105,86,109,91,102,106,95,86,100,91,103,99,108,97,91,88,91,99,94,99,94,83,93,117,95,104,96,101,94,101,96,99,101,100,86,91,101,95,102,98,79,104,92,104,106,96,101,115,112,101,92,98,93,101,96,109,93,102,78,97,121,97,107,94,101,96,97,116,93,95,100,92,98,105,104,103,98,92,100,89,105,106,99,92,79,110,100,95,93,102,92,101,91,96,100,101,99,100,99,80,103,96,99,103,102,99,100,88,91,109,96,82,87,101,108,99,94,89,93,107,98,109,101,133,89,75,122,96,104,102,101,112,105,95,110,105,108,99,88,102,88,102,104,79,104,70,102,87,98,92,108,95,98,108,91,101,85,84,118,64,104,87,100,99,95,76,103,103,95,97,89,90,99,90,91,85,94,112,81,114,96,94,100,95,102,92,102,94,95,95,101,101,106,108,101,99,104,105,106,100,102,110,106,95,98,96,105,98,104,84,97,118,65,104,99,103,109,100,103,100,98,91,93,101,101,97,95,99,101,101,97,94,96,101,112,89,93,102,110,98,95,94,96,90,99,109,88,111,96,98,100,92,96,97,90,107,120,94,98,82,98,103,106,94,100,111,87,96,96,95,101,96,112,101,91,101,96,103,83,99,108,97,92,108,99,101,85,115,99,104,97,119,92,104,100,103,93,99,87,101,91,100,82,104,104,95,100,85,95,103,79,96,91,87,107,88,93,105,100,99,82,108,102,99,97,113,111,105,100,97,98,92,95,113,97,108,97,91,101,95,107,82,95,86,99,105,110,102,104,99,92,113,109,95,99,93,117,76,92,95,105,98,96,103,111,101,100,100,94,103,87,106,103,99,104,104,99,86,78,83,100,100,105,101,93,93,98,110,95,92,94,99,88,100,66,100,105,92,93,95,99,94,88,111,91,100,115,99,92,83,82,95,100,108,102,102,108,94,96,99,97,104,105,108,116,92,107,87,93,94,129,95,101,98,98,100,99,88,94,99,94,98,112,84,98,104,98,96,93,100,88,96,101,100,105,99,101,104,92,92,111,89,94,89,93,95,92,101,97,98,96,103,105,86,93,108,101,96,94,92,103,101,98,113,96,93,90,101,90,98,99,86,94,89,97,85,100,98,98,93,100,99,104,77,90,103,109,108,97,95,97,97,94,105,94,107,102,89,95,98,114,93,105,102,92,102,92,95,92,92,101,105,93,91,88,106,91,97,98,99,91,101,105,94,100,90,105,102,102,107,97,109,99,79,100,103,96,97,79,83,101,75,93,111,103,103,97,106,94,93,98,101,101,92,91,101,94,100,99,92,116,96,102,100,102,107,98,93,98,90,106,108,100,94,91,106,101,100,105,103,106,91,100,85,91,108,95,97,97,92,98,95,83,100,101,103,102,102,103,102,113,98,101,105,98,97,101,96,108,99,107,104,90,96,106,97,95,102,90,92,111,95,94,89,99,104,98,99,103,97,91,95,100,92,109,91,100,94,89,101,99,100,94,89,100,108,93,86,100,97,96,104,97,110,112,98,102,103,100,95,88,94,104,92,89,100,108,107,103,92,91,117,100,93,88,103,96,93,101,101,93,92,93,104,106,107,104,91,94,106,109,98,111,99,100,98,99,94,99,91,99,94,87,94,98,102,91,104,98,102,99,104,95,95,107,102,88,102,117,89,99,88,97,96,123,112,87,96,101,100,101,87,87,101,105,97,99,99,98,100,104,88,99,108,102,106,92,73,93,99,100,99,87,89,97,116,94,97,101,101,100,100,100,93,101,105,105,106,97,89,106,107,99,103,98,83,87,107,99,96,105,96,93,101,101,99,94,101,95,86,80,112,109,98,97,101,100,104,104,82,98,101,108,89,94,101,96,104,97,115,91,93,99,104,98,98,93,92,95,104,104,98,98,87,101,99,102,99,92,80,102,90,93,102,102,85,95,111,108,100,94,94,108,102,90,90,76,103,106,92,98,91,93,93,85,96,85,101,98,100,99,95,95,98,73,103,109,90,92,97,100,95,96,98,91,104,89,89,102,89,96,88,92,86,95,83,107,86,89,98,96,97,101,105,92,95,81,86,102,108,82,105,87,103,86,94,107,97,92,89,87,85,113,97,79,92,95,107,101,100,94,92,121,96,93,108,97,105,104,92,93,87,93,99,79,106,104,105,103,94,84,114,104,95,104,98,106,101,110,92,102,105,96,98,94,96,103,99,98,101,108,88,95,96,100,89,97,87,101,101,108,101,98,90,94,136,95,102,83,98,92,102,94,119,102,99,101,78,107,100,103,85,101,99,107,98,89,97,95,102,104,90,84,89,103,84,98,98,92,104,98,97,96,98,113,95,103,90,95,93,96,103,103,96,80,90,89,94,105,101,112,83,93,95,108,106,98,103,100,101,102,85,86,101,90,103,101,106,101,103,89,109,87,105,94,102,102,104,90,90,115,106,88,101,92,99,92,101,98,96,82,104,99,92,114,90,84,98,93,100,98,96,92,105,89,99,101,94,105,118,82,84,95,91,100,92,95,96,84,95,106,96,101,90,98,104,95,106,103,96,100,101,91,102,83,98,99,104,104,98,105,94,91,92,107,103,94,100,96,88,95,95,99,101,77,114,107,95,100,85,103,93,105,89,97,105,104,99,95,91,102,99,92,95,91,103,94,108,90,101,98,84,91,99,112,100,103,95,102,108,107,85,97,96,93,96,103,117,87,91,91,96,86,92,107,106,85,96,95,97,88,98,95,104,98,100,106,96,88,104,100,98,96,96,97,94,101,94,104,92,74,89,98,102,109,95,102,105,89,99,106,97,96,99,94,102,100,100,99,77,107,95,87,98,103,97,98,88,102,115,97,94,85,110,99,95,96,109,101,89,110,118,89,101,98,104,93,109,105,100,87,94,90,93,100,91,99,92,97,100,107,107,99,92,85,107,87,89,99,98,104,91,111,98,100,64,101,91,94,99,101,101,81,79,101,108,97,97,94,103,101,103,98,81,101,104,103,110,92,97,100,100,86,83,89,87,83,107,91,75,85,106,103,90,104,95,97,106,86,91,106,83,104,101,96,93,90,101,95,88,100,101,89,93,97,105,94,90,99,93,102,93,96,93,92,109,94,98,106,109,96,96,99,88,95,103,98,85,105,91,96,97,94,99,95,97,101,98,87,93,105,89,98,94,94,89,89,98,94,107,86,101,101,96,102,101,91,101,92,94,96,96,105,92,97,105,68,95,81,98,108,92,95,105,98,101,102,97,100,102,104,109,95,111,95,96,92,93,95,79,95,93,92,100,103,92,97,73,100,96,110,98,107,105,107,98,93,86,88,98,101,87,95,92,99,88,109,99,109,99,89,101,99,108,97,102,88,96,91,111,88,85,97,92,94,89,101,101,105,94,66,91,100,89,105,110,100,71,88,93,108,101,102,91,106,90,92,96,99,100,104,102,95,119,101,105,116,97,93,93,107,95,95,90,113,82,98,99,77,107,83,77,92,111,93,89,94,98,102,83,77,106, +722.74512,85,108,95,97,100,95,112,100,80,91,111,97,92,104,103,90,97,105,106,93,122,109,118,101,100,104,99,108,92,92,80,96,105,102,104,101,104,101,97,96,95,95,91,102,97,103,99,102,101,99,96,95,91,103,102,102,85,117,94,114,98,99,93,97,105,93,82,98,83,114,113,118,103,113,106,97,96,86,101,95,100,104,121,104,92,107,101,97,87,91,103,91,94,100,104,100,87,103,91,93,95,111,93,91,106,91,95,97,103,90,97,100,120,90,104,95,95,113,116,93,110,109,107,87,99,79,96,106,109,111,94,103,91,99,103,105,103,104,101,101,101,92,96,94,104,94,96,83,101,111,106,100,103,90,99,100,102,102,110,92,88,122,100,92,91,97,83,108,104,86,100,97,92,99,97,101,95,91,110,97,96,110,101,97,109,85,94,90,96,98,95,90,92,102,93,97,109,105,87,95,95,104,98,97,91,105,101,97,99,100,97,106,95,109,101,101,107,102,91,94,120,99,100,91,90,102,104,63,98,102,102,83,104,91,102,103,88,100,97,96,113,99,117,100,98,101,110,97,95,93,87,105,82,99,93,99,92,97,89,95,93,99,98,100,74,92,96,109,104,73,106,101,97,92,92,86,95,90,97,98,98,112,101,102,103,97,89,96,112,87,100,104,101,93,91,102,105,94,100,104,93,101,96,100,78,97,98,101,92,82,101,105,102,98,97,98,107,110,94,100,107,70,92,103,106,103,111,79,105,102,98,92,103,102,97,99,93,100,91,96,79,102,91,93,105,90,97,89,117,97,104,96,101,97,91,111,102,99,94,101,96,94,97,87,92,100,100,104,104,98,100,89,103,106,106,88,118,101,95,97,102,97,87,96,105,100,96,103,108,86,109,94,98,107,106,113,94,105,106,102,95,96,101,100,104,98,94,102,99,100,100,91,111,94,107,98,96,104,102,101,101,97,98,95,79,101,102,96,97,95,109,100,88,100,104,94,115,91,101,100,104,98,94,100,86,99,89,103,93,105,80,80,97,113,92,90,94,111,98,92,108,111,105,100,104,106,91,97,103,84,91,98,77,107,94,92,93,107,99,96,84,102,92,101,113,100,93,94,83,101,93,101,109,81,93,106,94,92,124,91,100,98,104,100,105,108,102,95,101,93,121,110,89,93,92,103,91,100,83,89,101,99,98,100,95,103,99,100,91,104,75,87,92,88,91,102,97,100,91,103,84,96,109,88,72,102,95,101,105,102,92,113,98,99,99,97,133,99,92,95,100,98,97,92,95,103,98,102,91,100,93,86,97,116,102,106,105,109,100,103,111,101,112,115,100,107,108,121,104,104,102,91,99,93,103,96,113,85,108,101,96,105,103,94,96,96,111,106,99,92,95,105,92,74,117,104,89,94,89,114,99,96,92,92,99,93,102,95,107,92,67,97,92,110,106,104,100,101,92,107,97,104,101,107,90,91,95,112,91,112,79,108,82,93,100,112,98,106,102,105,106,107,94,110,94,104,102,94,99,93,124,113,91,109,85,92,99,101,108,104,94,91,103,86,87,98,100,102,89,95,98,100,96,99,86,99,103,98,102,100,83,93,96,102,99,106,95,105,97,97,99,101,100,91,89,92,99,99,99,90,106,97,89,97,83,94,118,100,100,102,91,100,105,96,103,98,113,79,105,92,94,93,85,85,113,108,104,102,106,100,94,92,101,100,90,95,105,99,105,98,87,102,94,101,102,94,92,99,102,93,120,103,115,95,86,97,109,97,92,106,103,97,107,97,105,100,94,104,94,86,106,94,97,96,106,104,99,86,92,96,90,101,104,106,117,101,114,109,106,102,94,109,97,95,93,103,93,100,93,71,112,98,100,104,104,103,120,137,101,107,101,99,110,100,92,100,106,115,100,101,90,100,96,94,99,98,90,84,111,104,98,93,86,100,69,96,108,104,96,104,102,104,99,97,97,97,90,110,105,97,91,105,102,105,93,107,99,109,110,97,98,101,100,90,109,95,96,102,103,98,100,103,94,97,83,120,94,90,96,93,90,106,107,106,91,94,101,99,101,94,92,87,108,91,88,95,97,105,99,103,90,98,92,105,104,106,75,92,100,111,93,87,102,102,92,92,92,95,97,102,84,99,105,100,91,99,111,114,67,95,98,100,112,99,106,89,111,104,104,73,103,83,102,112,109,104,96,95,107,101,89,106,91,92,95,100,91,88,99,97,100,95,105,98,94,89,90,104,87,111,98,90,102,99,104,93,89,96,92,107,103,110,95,100,78,100,103,94,101,86,101,105,92,106,103,103,98,101,93,113,101,104,101,100,107,103,102,113,115,108,101,112,113,96,100,97,101,116,102,100,99,95,101,95,94,95,95,97,99,83,92,103,106,105,111,99,91,86,109,89,94,90,99,112,103,103,99,99,90,99,90,116,117,96,94,106,103,89,105,108,106,104,101,108,112,107,94,98,93,107,104,105,107,85,108,100,102,106,112,113,100,106,98,103,97,114,101,124,101,96,111,107,89,96,105,96,98,91,96,109,95,102,101,99,107,100,78,109,99,91,105,100,97,89,102,104,105,110,88,96,96,91,104,97,98,93,105,106,119,111,108,96,95,109,105,94,104,100,103,98,98,98,98,84,100,102,99,100,106,111,104,77,100,96,91,97,110,82,100,102,106,93,94,98,95,87,105,103,106,109,101,98,99,110,86,98,113,99,95,95,99,92,95,100,109,107,116,91,115,98,98,108,103,97,92,95,86,109,95,57,95,102,102,85,112,98,99,103,105,94,103,95,95,124,96,103,101,102,95,107,108,109,107,104,106,99,108,105,105,100,94,95,99,94,105,94,97,89,102,116,96,84,100,98,93,95,112,96,102,96,95,106,101,117,102,98,102,92,88,121,99,90,109,101,100,102,88,87,106,101,97,102,102,99,121,113,96,80,109,99,87,92,108,98,103,106,101,102,100,99,107,94,100,108,103,95,108,105,91,98,86,97,103,99,98,99,90,96,95,94,115,108,96,101,95,107,91,98,94,93,105,100,103,95,91,97,95,103,92,108,60,89,96,102,104,94,96,103,101,99,102,113,112,94,102,77,94,107,107,95,106,102,87,114,109,100,98,102,99,95,104,109,107,106,104,93,98,95,101,87,97,100,95,121,104,112,111,90,108,102,103,87,86,104,103,97,111,99,110,98,101,106,89,103,98,99,102,94,91,78,88,100,93,90,96,105,100,108,109,98,105,89,114,102,131,91,100,102,96,104,93,83,106,94,104,91,65,96,96,100,102,91,109,112,101,71,91,94,97,103,100,101,101,103,108,97,96,93,92,92,98,100,105,87,101,102,107,105,102,104,87,105,102,111,97,105,88,104,97,101,98,90,99,98,109,121,114,108,91,92,98,109,105,98,107,111,103,108,117,99,109,86,93,110,116,110,96,99,106,91,86,102,93,91,96,97,103,101,109,99,102,97,98,101,101,104,106,99,113,93,98,100,114,95,91,91,97,107,109,104,95,104,97,99,97,101,103,102,97,109,91,100,107,102,129,103,112,103,90,95,100,94,90,105,108,95,91,109,101,105,101,113,93,107,98,91,98,95,100,97,95,101,100,104,103,91,101,108,95,98,91,93,103,100,112,92,111,104,83,99,110,98,86,95,97,98,103,96,108,114,102,108,91,124,79,97,113,108,84,90,94,113,98,96,93,104,98,98,115,101,98,87,99,95,106,101,99,106,109,97,109,104,71,98,101,104,100,103,101,101,105,113,110,92,110,106,102,95,102,101,94,110,97,110,105,102,91,104,99,90,112,106,108,90,101,100,101,89,94,102,86,111,95,80,105,98,98,97,104,100,102,100,97,105,97,104,95,94,98,90,94,106,89,88,109,105,88,101,104,102,94,109,102,101,100,99,95,98,95,99,112,105,93,98,94,109,110,104,103,109,107,102,104,104,107,102,102,110,95,99,96,105,101,96,97,101,103,91,87,104,101,95,94,97,106,94,104,101,103,98,105,99,90,95,102,113,106,121,109,86,106,115,94,94,111,102,112,113,95,90,106,101,97,96,108,108,96,103,99,99,107,105,104,99,116,99,104,106,102,81,101,90,102,106,103,97,95,92,95,100,103,103,108,99,108,102,116,101,106,104,103,111,106,106,102,95,107,96,103,101,100,97,100,99,100,108,89,98,108,100,100,92,109,106,95,67,91,99,98,90,97,102,110,113,93,70,99,94,100,99,95,96,102,102,107,100,104,96,101,95,97,106,110,96,113,96,104,98,91,103,94,96,98,113,107,93,94,101,100,106,106,97,102,90,87,104,100,105,95,106,96,89,101,101,103,100,110,95,108,96,100,98,101,110,112,103,102,101,91,112,101,115,105,97,101,102,113,106,93,98,83,105,98,89,105,104,100,96,101,95,105,113,89,101,116,97,87,92,96,85,95,89,106,100,95,88,116,112,107,99,98,95,101,104,101,97,91,86,84,105,102,111,91,90,98,98,86,105,102,101,90,104,95,95,98,101,86,107,106,99,106,97,85,87,104,89,105,98,111,105,97,105,100,99,97,108,113,100,99,88,83,90,94,105,64,102,69,99,128,96,91,95,106,85,108,111,95,110,98,106,112,95,109,103,102,102,109,104,129,102,90,96,98,107,97,100,112,96,97,95,106,81,108,101,102,110,106,89,98,107,97,98,103,109,113,90,111,93,96,99,85,115,97,105,99,101,103,95,108,117,100,109,100,92,113,108,101,91,93,108,95,109,110,101,112,106,109,110,106,101,91,97,91,96,97,118,108,124,99,114,99,110,97,98,117,98,103,97,102,94,117,101,95,105,103,82,84,100,103,96,116,97,102,102,96,91,105,100,100,106,104,93,94,107,88,109,96,94,94,104, +722.88654,96,111,115,100,106,108,102,106,80,101,104,87,100,87,104,90,102,94,97,73,114,97,101,103,96,104,83,104,101,74,90,90,94,107,82,105,112,85,98,116,115,101,110,102,111,91,96,89,98,97,94,104,99,89,108,91,97,88,97,90,94,104,94,100,100,109,91,63,91,92,96,99,98,103,86,77,103,92,98,95,98,90,107,97,97,100,108,100,108,102,91,108,109,101,94,79,100,114,88,111,90,104,107,87,99,94,91,95,96,106,88,104,98,100,104,91,91,97,107,101,97,86,103,107,97,105,99,110,101,102,98,108,102,109,96,99,106,101,103,101,96,102,103,96,91,91,95,101,96,109,92,104,105,86,113,131,89,99,93,86,91,97,92,92,102,87,96,101,110,97,100,101,102,105,99,90,99,91,101,94,82,97,98,94,108,84,99,90,89,86,97,109,94,93,96,95,100,112,93,109,95,120,102,107,118,95,89,100,107,118,103,97,102,105,101,98,87,105,92,85,96,93,109,90,100,101,99,100,86,105,107,98,102,104,97,90,91,101,100,96,100,100,95,99,99,105,104,111,84,114,91,109,101,107,96,93,92,114,92,107,98,93,93,95,91,99,96,93,107,89,95,98,99,101,98,105,87,88,92,105,98,95,100,101,103,98,96,89,95,106,95,92,104,100,98,104,74,98,100,98,105,92,94,100,102,114,92,111,91,105,95,90,106,82,94,100,108,98,105,91,100,101,103,89,98,86,93,97,104,107,100,92,77,103,103,103,96,97,78,93,107,90,95,95,102,95,104,105,100,105,96,104,95,102,88,96,106,96,105,111,87,94,92,105,95,97,112,117,88,98,102,94,101,100,100,80,105,94,90,94,101,101,96,100,108,95,91,116,94,78,99,94,100,103,100,93,82,92,101,108,91,96,104,101,94,93,101,92,100,96,102,86,97,97,99,91,94,91,110,106,97,94,92,104,98,102,102,82,106,105,95,88,108,97,101,101,108,93,96,93,94,98,98,94,90,95,102,100,105,103,102,102,93,97,99,94,93,100,94,99,97,96,101,77,91,99,99,102,101,97,105,101,95,96,104,92,91,106,99,95,102,97,101,87,104,66,96,91,101,96,101,101,100,87,90,90,108,96,97,94,96,99,86,101,94,98,94,107,95,96,91,95,98,102,93,98,99,93,111,97,96,108,90,108,107,108,108,99,100,102,96,102,103,88,91,103,102,90,100,116,87,99,98,110,103,106,96,119,92,102,110,101,107,105,105,97,106,103,101,98,98,96,100,102,97,96,98,112,91,99,98,79,95,100,109,94,102,86,113,102,91,93,102,97,89,106,105,102,97,90,109,108,97,92,104,113,109,76,105,116,101,116,102,100,103,101,96,106,114,101,101,105,105,102,97,95,92,95,98,118,92,90,90,95,100,108,91,88,102,98,109,101,89,99,87,93,93,112,93,100,86,96,99,91,96,100,96,94,102,104,93,100,95,101,91,95,102,111,96,111,103,101,104,110,97,96,95,97,108,87,91,103,87,96,95,98,99,97,83,97,72,99,103,91,102,110,105,89,95,95,102,96,97,112,100,95,107,92,110,92,92,101,111,106,98,91,91,109,105,95,98,104,95,90,99,95,90,95,97,89,95,92,88,97,98,82,101,113,99,92,108,105,64,90,104,100,97,95,73,85,106,131,95,96,94,105,107,93,94,90,94,92,93,93,101,102,87,100,95,93,100,100,90,114,89,82,91,101,89,94,103,93,101,94,91,104,120,106,86,92,100,90,100,102,102,133,84,94,95,108,94,103,83,99,96,92,93,100,100,107,90,98,97,103,107,105,94,94,98,102,94,105,91,96,73,101,106,95,101,105,98,99,96,102,100,91,106,101,102,98,104,92,99,94,103,105,116,106,109,98,65,91,96,91,94,109,103,96,108,99,95,86,98,95,94,94,99,105,100,93,125,97,83,101,103,88,84,91,94,98,106,103,87,90,96,90,94,98,91,100,91,97,98,100,111,107,102,97,97,98,102,88,104,104,114,88,96,92,99,109,105,99,124,95,113,103,103,97,105,101,123,93,99,101,100,96,99,110,109,98,95,95,107,109,106,91,117,94,95,101,107,103,89,102,98,91,110,93,92,85,89,87,113,109,96,100,105,105,93,94,110,104,102,103,95,97,102,106,97,100,104,112,104,111,105,88,102,96,105,96,107,89,97,90,95,102,95,99,95,67,105,107,103,94,101,111,91,99,104,101,107,96,106,98,91,97,90,102,71,109,94,94,102,107,105,96,89,93,94,108,85,113,105,95,91,121,93,98,97,104,99,99,88,97,101,93,94,105,91,73,95,97,98,101,109,98,90,116,109,97,103,95,94,102,81,90,88,97,101,97,95,114,107,96,99,101,95,100,113,104,100,107,112,101,99,88,98,113,90,85,83,117,95,98,95,101,112,102,97,94,88,92,80,100,105,89,98,86,95,95,94,107,107,94,100,102,88,119,102,109,92,100,101,108,100,113,108,108,100,99,98,105,101,94,105,88,99,95,102,98,112,106,81,102,97,111,92,112,102,95,109,93,106,94,103,95,99,103,98,92,95,100,96,94,74,88,100,94,97,90,120,85,96,101,101,92,110,97,109,105,92,89,90,100,95,85,91,98,109,98,94,83,98,95,91,109,105,73,92,109,93,102,95,103,81,105,96,109,96,97,97,96,95,102,91,95,93,83,99,120,95,103,85,108,98,105,106,108,102,82,93,105,99,101,107,99,102,113,92,93,103,96,97,97,87,102,94,100,104,94,90,98,84,106,94,97,99,115,106,97,104,99,102,96,86,108,105,75,100,99,102,103,85,128,101,97,100,97,93,118,102,105,98,98,99,103,94,99,95,110,109,97,102,101,97,98,100,89,97,94,98,102,92,92,102,108,97,102,105,109,103,99,89,107,90,96,97,93,95,111,107,97,88,117,87,92,101,96,93,92,95,103,109,95,104,107,97,100,100,98,91,102,86,108,106,100,101,104,107,90,99,100,95,111,103,103,111,98,95,95,101,111,100,93,93,103,98,100,104,103,102,106,96,121,91,100,107,99,96,95,103,116,109,96,98,102,104,102,104,98,107,92,103,102,84,103,81,98,101,89,104,99,102,113,94,93,81,104,98,99,88,101,113,102,110,101,99,99,102,107,83,91,91,102,97,100,93,100,101,95,101,92,103,112,97,98,97,98,94,74,103,98,91,105,97,97,100,92,98,94,98,101,99,109,99,105,88,114,96,87,100,92,102,99,83,100,109,100,95,102,94,90,111,101,73,99,107,89,82,99,85,104,102,117,97,101,102,90,92,99,85,106,102,102,103,102,105,105,106,93,108,99,97,96,98,93,111,98,104,89,62,95,95,108,105,110,141,102,113,100,97,94,100,104,100,114,110,91,98,102,90,94,95,102,109,102,91,99,105,106,103,93,96,104,103,103,101,108,104,92,100,120,120,111,96,109,92,95,104,91,108,108,95,99,95,95,100,100,117,105,102,105,89,102,91,98,97,98,102,98,105,111,95,111,105,95,98,105,113,105,111,105,102,88,97,98,90,97,101,96,95,105,86,105,99,78,108,106,60,95,95,101,101,97,104,105,108,103,95,105,92,102,97,92,98,87,104,104,98,110,102,88,97,105,92,92,96,112,97,115,113,117,91,95,89,104,108,109,101,106,116,105,89,103,90,100,100,111,97,88,107,91,105,94,93,96,103,97,102,103,102,101,103,90,106,99,94,102,88,98,109,101,103,100,90,97,105,91,104,95,97,110,109,109,104,114,112,101,103,96,112,93,104,89,106,93,97,89,99,92,95,95,102,110,108,119,98,112,105,101,101,98,92,96,126,103,102,108,100,99,101,104,95,98,104,104,106,116,97,95,88,98,99,111,111,94,80,100,111,101,106,96,105,100,101,113,99,92,94,88,102,108,94,99,84,105,100,115,98,94,105,102,98,123,106,94,92,106,86,98,106,102,107,117,99,93,105,96,94,109,109,100,94,94,99,88,95,104,113,106,101,123,100,98,109,110,99,101,105,95,94,87,99,103,103,96,98,97,95,93,101,98,99,99,102,83,95,98,100,95,100,103,93,97,96,106,85,94,108,104,108,94,88,104,104,85,98,91,118,107,91,87,90,100,103,109,107,110,101,88,100,108,110,110,105,104,89,100,90,89,100,101,89,102,92,109,104,88,99,102,107,97,106,102,99,111,113,103,101,87,93,87,103,92,95,110,113,109,109,101,99,101,108,103,89,97,92,97,103,109,97,59,99,92,124,102,95,98,100,112,110,105,108,91,96,86,106,96,87,93,112,101,109,101,99,101,98,96,106,106,101,103,98,106,95,97,95,103,101,93,103,102,95,94,106,102,117,104,90,104,91,100,94,100,105,108,98,109,111,97,104,101,110,97,104,93,95,100,97,112,104,94,105,93,108,101,105,106,113,88,97,108,101,95,95,110,98,108,105,112,108,89,97,99,90,92,122,100,106,90,89,91,86,107,97,102,99,102,105,100,105,104,101,88,92,123,106,95,106,100,96,105,102,97,93,100,106,94,83,92,94,100,103,115,78,97,113,94,104,109,105,98,96,103,105,107,81,103,92,93,123,108,96,108,92,92,94,104,110,91,83,91,85,102,98,94,99,98,104,85,82,74,100,98,110,92,105,87,93,94,111,95,110,104,87,99,109,97,96,88,67,102,100,95,103,107,95,113,114,103,110,93,94,106,94,95,104,80,94,117,94,104,100,127,101,101,122,106,96,105,89,102,91,95,91,97,90,102,104,102,112,98,104,99,96,105,96,97,99,117,99,87,107,117,91,111,87,114,104,83,94,96,110,103,100,98,86,98,108,86,99,90,117,101,116,100,105,106,124,82, +723.02789,97,101,95,98,113,106,91,89,75,107,93,111,100,96,110,87,104,106,79,94,90,92,98,94,93,97,97,104,88,100,95,98,89,95,84,81,103,87,103,91,96,99,96,104,104,97,104,76,93,105,91,92,108,94,99,95,100,103,90,96,106,95,97,86,92,97,96,89,106,91,103,96,102,96,100,100,88,91,100,110,88,97,91,75,96,92,100,95,100,96,100,97,96,97,95,104,94,97,105,100,111,96,103,98,106,71,95,99,87,90,97,91,99,93,94,87,96,91,100,103,91,97,101,107,83,97,109,101,104,104,91,81,101,86,92,103,95,99,97,97,87,108,118,91,111,106,105,90,93,103,95,106,101,94,82,90,109,87,103,100,98,98,96,103,136,96,88,88,95,106,88,93,93,104,97,92,94,84,117,95,88,96,104,103,103,88,76,84,103,95,90,109,110,92,95,97,103,92,90,90,96,96,98,94,99,94,100,104,94,108,96,98,104,98,95,98,98,109,95,85,100,93,101,100,107,103,83,100,103,97,94,93,99,92,100,103,106,98,102,104,94,98,112,84,92,93,90,100,99,100,102,94,87,96,93,116,99,102,94,97,90,105,97,97,84,107,94,105,95,104,111,83,102,91,104,99,103,105,97,87,92,101,104,103,108,62,82,102,101,104,102,97,101,91,100,99,103,91,106,109,99,92,93,111,99,101,93,100,96,106,94,99,106,84,111,86,101,99,93,97,96,96,73,103,102,97,106,91,89,107,108,102,101,86,110,89,97,91,102,105,93,94,96,91,94,103,109,96,94,97,97,97,105,108,91,113,111,109,84,84,96,97,95,96,98,104,89,98,91,99,104,101,108,94,106,94,108,95,99,90,102,108,86,100,102,99,100,95,97,92,108,93,110,88,91,97,96,115,110,102,107,100,106,101,95,74,94,102,91,98,95,94,102,100,110,90,92,106,101,91,92,107,96,81,94,97,85,98,106,93,88,94,113,94,100,84,99,102,102,103,99,101,106,100,95,100,101,94,91,109,97,83,109,84,92,96,93,95,102,101,88,66,98,94,114,106,98,106,97,100,95,112,72,83,94,104,90,107,111,98,93,108,101,105,107,92,86,104,96,113,104,105,99,109,92,98,92,82,100,100,107,98,108,106,92,96,96,108,104,99,101,101,91,92,99,94,111,108,87,115,91,96,94,90,91,92,103,93,98,95,94,108,101,105,101,102,113,93,98,101,94,108,93,94,101,95,101,99,95,105,102,91,96,78,94,107,96,117,97,94,104,101,89,98,99,106,83,115,102,89,86,100,94,92,98,96,91,88,87,102,106,103,89,71,93,94,85,98,94,79,117,107,83,88,119,100,93,108,90,89,95,92,97,95,99,93,76,100,85,93,95,90,98,101,100,91,96,92,87,94,106,98,97,110,97,102,79,95,93,102,89,86,90,92,67,99,100,98,103,104,102,97,101,97,95,87,97,91,94,103,83,100,110,98,104,100,89,105,90,100,107,94,86,110,103,92,100,101,97,92,105,105,101,106,89,97,103,102,87,90,97,107,96,97,92,94,93,100,90,102,100,100,100,100,102,106,104,108,106,94,87,83,103,91,89,89,106,114,105,97,99,94,103,110,87,87,92,92,87,99,91,101,91,97,95,95,97,99,100,109,101,104,97,96,102,103,96,97,91,99,103,96,97,107,93,95,102,94,106,100,107,94,95,98,104,95,95,116,108,91,91,94,94,108,79,92,83,85,89,83,99,93,95,80,97,125,79,100,104,87,115,93,98,101,100,91,109,97,104,112,94,97,94,108,105,98,95,99,84,100,90,111,99,88,102,97,98,99,92,102,106,84,101,91,105,97,101,92,101,95,109,92,106,95,93,101,95,101,96,99,102,95,105,98,90,102,99,95,112,98,98,97,97,111,101,85,105,102,106,93,104,93,101,99,104,93,82,98,109,94,106,95,107,99,97,91,93,97,107,99,100,95,92,99,107,95,102,109,96,97,91,90,112,103,102,106,95,118,98,98,86,94,94,103,106,91,95,86,97,97,102,99,95,105,86,105,94,88,106,98,99,89,89,85,98,93,84,101,96,109,97,105,85,99,102,94,92,102,100,113,100,93,109,100,94,92,95,101,109,91,99,91,98,87,92,92,103,92,92,93,108,108,106,97,106,86,96,84,90,88,102,105,99,99,99,98,105,104,95,98,98,99,100,100,97,102,93,94,85,99,98,91,91,80,87,88,104,91,94,78,105,98,103,105,89,93,90,100,98,95,116,105,93,97,108,96,101,65,100,90,90,116,99,98,90,103,104,99,96,99,93,103,106,91,113,130,87,82,102,89,107,111,126,98,100,90,103,102,94,107,121,100,93,100,100,93,105,83,111,96,97,102,102,87,93,102,99,75,100,111,96,105,90,92,93,95,105,90,98,86,102,101,102,114,110,99,101,98,93,90,99,102,93,99,104,97,103,98,117,92,93,96,90,84,98,90,110,109,100,94,100,94,85,113,101,108,86,99,96,92,112,110,95,88,103,100,96,99,94,83,106,104,109,103,94,107,108,95,98,93,102,95,110,102,88,90,100,89,86,94,106,100,97,90,94,96,94,87,100,83,108,98,112,110,95,119,109,116,101,98,92,109,91,90,109,105,88,96,95,94,108,101,93,92,91,98,98,90,104,94,114,98,96,101,94,91,105,99,88,100,93,93,115,106,96,107,101,88,80,92,103,109,106,96,106,101,119,97,102,98,90,101,98,104,92,103,106,109,93,109,112,107,99,105,107,100,86,101,103,96,92,109,104,96,96,99,96,100,102,109,103,96,81,103,107,97,92,112,103,96,102,103,97,96,92,100,110,96,95,94,116,91,96,99,107,90,89,107,107,102,103,101,88,107,99,95,98,101,99,103,101,94,90,95,100,105,100,92,89,104,94,96,97,88,101,107,109,96,100,103,116,101,88,96,81,102,102,96,101,94,107,98,88,105,89,104,100,100,96,96,100,103,96,90,95,101,106,102,117,92,92,79,100,99,97,91,94,94,95,100,93,108,92,106,108,107,95,98,96,91,105,110,99,104,101,101,98,105,100,98,105,92,99,105,105,96,93,91,91,95,94,99,88,94,98,91,86,113,94,94,92,92,95,104,98,87,109,93,94,101,92,91,95,88,106,102,101,79,101,89,96,102,107,102,99,112,99,94,100,86,98,91,109,92,104,105,97,98,94,97,92,100,83,96,93,87,113,93,102,103,95,106,101,103,106,89,94,105,111,99,101,91,104,90,96,97,87,95,102,103,93,91,101,104,101,103,112,73,91,92,103,106,104,103,104,100,94,91,91,90,100,103,97,113,103,88,98,87,105,105,82,113,99,92,102,101,94,96,107,96,97,98,94,103,114,102,98,98,90,98,95,89,106,97,94,98,109,103,98,107,103,104,91,86,95,90,106,98,79,88,90,99,108,82,87,91,93,78,95,87,96,97,94,106,91,86,79,106,109,101,102,101,109,107,106,107,116,103,102,96,113,99,96,95,96,100,101,59,92,84,96,109,89,106,102,98,99,112,97,100,106,89,100,102,113,94,104,98,92,84,101,83,96,89,97,102,101,65,109,103,98,98,95,93,96,89,101,88,101,96,98,101,108,95,89,97,111,99,104,108,92,91,70,112,101,112,89,96,104,105,108,102,103,96,94,86,84,106,105,110,93,89,114,97,93,86,113,106,97,93,81,92,110,94,92,99,98,104,95,94,89,95,98,97,102,98,110,101,89,107,99,93,104,105,89,104,95,102,96,102,102,105,88,105,93,98,106,104,101,92,102,98,99,93,104,76,84,85,88,108,90,94,96,97,103,97,96,105,107,91,100,91,101,88,101,99,98,98,101,103,96,91,101,97,95,95,115,80,99,99,106,99,99,99,85,100,103,103,106,102,104,107,97,101,94,93,93,101,102,96,88,95,98,103,78,92,103,99,96,94,100,90,104,105,94,87,92,103,87,96,91,109,93,91,120,100,83,101,95,92,98,99,91,89,105,106,94,92,100,111,91,92,95,95,95,90,98,102,100,96,98,100,102,92,88,108,82,91,92,102,81,106,104,94,96,98,109,94,90,86,88,94,91,97,111,96,105,95,99,108,95,120,111,104,93,105,90,99,105,108,93,109,108,106,102,91,98,99,97,93,115,103,100,94,96,105,100,112,106,124,124,105,102,94,91,91,98,105,90,87,110,99,102,94,90,89,108,117,106,80,94,101,109,94,83,108,104,92,90,83,100,110,110,109,106,108,103,93,100,102,95,99,102,89,104,98,101,99,100,94,87,106,98,95,96,100,93,97,105,95,101,95,93,85,104,97,123,93,103,73,98,102,101,96,101,96,104,92,97,102,109,105,107,110,96,102,98,95,100,109,103,94,100,99,97,82,97,99,103,72,109,104,86,93,100,104,94,101,100,101,101,96,112,104,95,79,108,94,107,103,93,93,91,101,113,90,106,87,97,99,101,92,95,109,100,98,103,84,112,93,104,95,93,104,102,100,87,92,95,97,92,101,98,99,105,86,92,118,106,96,87,101,108,99,96,109,97,100,94,101,99,105,99,89,106,116,102,102,101,105,96,88,101,100,102,109,95,108,101,88,106,103,120,96,103,91,118,112,111,104,104,84,98,109,101,105,99,96,99,108,96,93,90,98,94,96,102,100,94,98,100,104,101,89,95,96,101,99,109,90,104,96,85,92,106,103,121,80,103,92,90,91,103,103,85,103,104,106,105,101,97,92,97,94,101,98,106,94,99,95,103,96,99,109,99,108,92,103,95,101,97,93,109,107,98,108,110,91,107,95,92,92,99,91,96,97,118,109,91,95,87,95,89,100,103,102,91,113,91,97,111,98,100,99,87,104,100,118,95,82, +723.16931,111,104,96,87,62,107,99,93,90,111,90,88,97,100,107,95,106,102,103,100,98,93,116,103,94,94,100,99,97,105,107,97,99,100,106,99,91,92,103,99,105,104,110,110,100,109,105,104,106,95,99,91,100,93,98,97,96,87,100,94,94,114,79,101,95,92,103,100,108,102,98,104,102,101,94,108,77,102,90,100,101,95,93,96,101,97,101,106,87,98,100,102,100,92,109,95,105,97,94,109,103,89,92,88,99,91,88,92,86,94,102,99,103,102,105,89,89,100,100,100,104,105,105,101,99,99,109,91,112,94,105,102,90,97,93,104,101,109,98,95,94,91,115,98,97,96,89,101,87,105,102,99,92,90,88,97,97,89,95,90,93,109,95,98,94,100,79,96,119,108,101,96,91,108,105,94,91,89,100,91,94,109,94,83,106,87,96,94,107,75,120,104,98,101,98,97,106,95,109,92,100,95,111,92,101,99,100,103,97,98,91,105,106,113,113,106,99,104,94,96,105,96,107,94,94,103,101,105,95,95,109,102,103,94,92,115,108,92,114,113,101,105,99,108,96,100,95,95,94,95,107,108,84,104,73,104,87,106,97,97,98,108,95,105,92,97,99,107,97,104,100,109,104,104,102,113,108,105,106,100,98,104,105,96,99,94,89,85,96,90,96,100,91,94,94,102,95,97,75,89,91,102,97,102,93,111,109,104,91,96,104,97,106,98,97,99,106,97,95,88,105,100,100,99,102,101,105,95,102,108,91,95,96,97,107,100,106,103,102,91,100,106,71,77,98,108,98,105,105,108,78,106,105,94,110,98,101,90,108,92,95,99,94,92,89,100,118,96,94,99,110,83,101,109,103,97,112,101,103,102,104,97,105,99,99,100,92,95,103,83,104,109,99,103,102,137,118,98,108,95,92,99,95,90,99,89,101,101,94,101,66,102,95,105,96,95,98,100,101,97,92,91,93,90,98,89,115,98,126,104,95,103,110,96,96,100,102,105,95,111,103,91,94,102,87,104,95,89,104,96,105,91,99,101,84,98,92,106,110,96,96,105,108,116,111,103,100,102,87,101,99,111,88,101,97,85,97,101,100,96,93,92,107,105,102,99,105,89,92,91,109,107,102,93,102,94,89,86,92,110,102,88,94,101,102,90,94,104,91,98,108,99,95,97,100,98,96,105,96,88,102,103,102,81,100,97,103,100,107,101,97,106,101,102,101,100,109,95,99,115,96,103,95,102,99,97,94,104,106,107,102,95,107,104,101,95,102,91,96,90,102,102,102,101,100,111,97,107,95,96,98,96,100,101,96,91,93,94,108,98,95,95,109,95,96,106,92,98,96,89,113,102,89,97,90,95,100,95,97,95,96,103,103,98,97,93,89,94,101,104,95,92,101,115,96,100,99,100,90,106,102,98,107,124,99,115,105,94,109,102,100,92,97,92,105,107,85,79,107,101,105,98,100,93,102,98,90,93,106,102,91,102,108,112,103,119,106,100,95,99,116,96,97,102,84,101,103,115,102,101,104,104,101,87,83,97,117,93,104,101,94,104,100,97,94,94,97,121,100,115,102,103,92,99,113,103,100,99,94,99,99,97,93,113,103,100,107,96,92,101,103,95,100,98,100,76,98,87,104,84,100,86,106,75,97,106,104,92,99,90,94,100,119,102,99,94,97,105,109,95,97,100,89,90,103,103,104,104,90,106,109,109,91,96,97,97,101,91,99,95,94,109,106,102,91,106,92,100,108,99,104,103,88,94,113,90,106,110,98,102,98,103,109,99,110,96,86,103,104,101,86,108,103,91,106,101,96,110,101,103,93,79,89,100,123,103,98,95,110,94,106,101,109,86,101,104,105,83,103,96,95,95,109,94,98,101,101,83,98,113,95,98,104,102,104,100,94,103,104,98,95,108,98,103,99,103,96,95,101,93,95,95,101,97,86,107,104,97,98,101,88,115,104,99,97,94,98,92,103,105,98,101,96,107,106,86,110,85,107,98,108,105,94,86,100,100,99,105,104,106,94,109,101,106,110,106,102,106,101,100,108,101,98,85,96,100,92,105,96,84,104,103,76,108,101,97,105,103,93,101,93,93,88,100,106,87,97,98,95,88,104,104,95,110,98,104,98,107,99,107,99,105,97,99,85,105,96,105,105,113,94,107,111,93,116,104,102,90,101,103,97,90,102,105,108,99,93,69,96,91,96,103,113,110,64,90,101,100,97,89,92,88,92,94,92,100,96,106,115,108,100,91,110,114,83,96,98,106,99,100,90,103,95,104,100,93,107,97,102,87,84,91,99,99,108,112,101,99,104,94,105,109,103,84,100,105,101,105,103,88,103,95,82,108,100,102,91,99,96,96,96,124,86,102,100,91,106,96,113,111,101,90,95,110,112,112,100,94,100,102,110,101,106,100,97,107,87,92,102,101,92,100,95,110,99,92,98,94,95,94,90,101,93,91,100,103,102,97,96,104,98,100,97,109,110,93,93,78,98,109,105,98,103,98,110,101,90,98,99,103,87,112,91,102,100,86,100,99,99,110,92,102,102,83,118,94,101,95,111,103,104,103,102,97,115,100,100,101,93,93,108,99,109,97,107,105,98,97,99,100,96,103,120,97,97,89,109,108,97,101,108,87,94,90,108,102,96,94,101,89,102,103,94,89,100,94,112,98,105,103,103,92,95,93,96,92,106,97,101,76,97,109,107,87,92,96,106,102,92,92,104,96,106,95,106,92,98,98,110,59,95,104,99,112,92,101,98,105,109,99,105,110,100,92,99,103,105,105,99,90,105,97,96,95,105,95,93,104,99,91,99,93,114,83,94,98,101,91,98,104,95,104,102,97,101,100,98,99,96,107,103,96,105,95,115,85,94,95,100,113,101,112,105,107,88,63,91,106,108,106,97,106,105,94,103,94,103,113,100,96,89,112,99,96,104,109,99,91,92,102,105,93,97,102,102,112,89,101,103,101,96,104,98,80,92,109,103,99,91,98,103,106,101,99,106,90,100,91,108,101,103,101,77,112,100,105,97,101,92,96,81,102,107,100,103,88,99,103,106,108,99,102,102,98,99,105,108,101,101,96,112,107,104,117,103,102,111,91,109,94,97,101,107,109,101,104,91,106,100,102,97,84,99,101,90,92,98,106,101,96,97,96,109,106,106,97,101,96,91,103,107,96,99,102,92,106,87,83,111,101,103,109,101,91,96,91,92,90,124,111,100,114,83,89,111,92,110,94,94,97,102,104,92,112,107,96,101,108,87,103,102,63,103,120,105,110,93,98,103,95,102,96,114,97,105,100,102,90,112,96,94,114,102,101,96,92,93,106,108,95,100,106,79,103,104,107,107,92,107,103,90,96,99,97,102,88,104,113,110,110,87,96,108,102,99,121,95,102,116,101,108,98,105,105,91,99,122,103,101,105,73,91,111,97,96,102,96,96,100,102,108,92,97,98,97,101,89,98,103,98,106,97,96,90,97,101,121,97,91,104,87,111,92,107,95,112,109,99,79,84,94,101,95,106,96,109,104,91,84,101,86,93,91,98,95,93,103,93,108,105,109,97,95,89,99,102,87,101,109,91,96,104,108,100,101,104,92,102,108,100,103,100,104,100,95,84,102,96,104,92,85,103,118,79,91,107,90,94,91,99,94,101,100,93,94,105,94,98,100,116,101,113,100,111,87,102,99,112,95,91,107,112,96,108,95,102,106,101,96,101,104,104,112,109,106,98,105,95,101,96,107,96,99,100,107,92,93,99,101,105,109,100,120,94,102,96,99,88,99,95,103,91,94,116,98,103,104,92,92,99,110,100,94,107,90,104,99,91,96,101,104,100,101,96,95,98,98,98,98,100,105,104,89,106,109,100,94,103,91,96,100,106,93,95,106,98,106,100,88,103,101,98,120,98,101,113,100,102,117,104,94,79,100,102,101,101,103,105,94,98,86,106,113,112,105,101,95,110,86,112,97,98,98,103,91,102,97,98,103,125,94,95,102,97,100,87,100,101,91,93,105,91,98,99,100,97,103,106,102,105,100,83,94,117,105,96,95,96,101,114,109,98,100,93,97,105,91,95,100,92,100,94,99,120,98,102,100,82,95,104,95,70,97,112,102,98,103,93,95,91,111,97,100,103,99,106,105,88,100,89,107,107,93,95,101,100,105,95,97,98,105,103,99,102,107,113,95,121,109,110,98,99,99,98,93,93,95,117,96,98,96,91,121,110,103,102,112,107,99,92,107,99,100,94,95,94,93,109,117,108,96,111,102,107,91,111,110,96,100,97,100,97,104,106,88,90,95,120,98,115,102,100,107,103,105,94,106,97,103,115,100,96,108,89,96,108,95,102,99,88,96,104,110,103,97,99,100,100,104,92,96,103,104,83,94,91,97,102,102,95,100,87,98,98,89,102,91,96,101,93,106,96,99,73,102,91,96,94,111,102,103,102,96,91,96,96,92,98,105,101,95,103,103,100,119,104,87,98,88,95,87,107,103,101,102,102,101,98,99,81,92,96,104,104,112,98,108,109,105,79,101,95,103,105,93,102,98,96,102,103,97,104,110,92,100,98,99,106,94,90,97,102,104,106,104,99,86,105,90,102,100,109,112,104,108,105,99,97,101,87,106,107,110,77,102,101,113,97,99,108,88,92,91,101,105,101,118,78,99,96,105,76,106,90,103,97,96,106,110,97,112,103,99,98,129,96,100,96,110,93,102,98,105,104,104,96,108,101,104,97,102,112,93,105,97,92,99,97,105,113,106,95,117,96,96,88,100,98,106,112,95,115,114,107,88,111,109,109,91,97,98,87,102,111,101,100,98,104,93,109,111,99,98,93,106,109,87,115,115,87,98,90,103,86,110,98,105,109,82,85,107,105,102,111,123,97,103,115,99,108, +723.31067,113,100,92,90,83,107,90,104,96,109,103,108,93,108,120,98,99,96,130,96,96,88,97,107,98,105,114,107,87,104,104,89,99,103,102,103,96,98,99,118,91,117,112,104,91,108,90,95,90,96,82,114,101,99,98,92,109,110,85,90,108,103,97,104,92,106,103,97,86,97,119,101,101,98,91,94,96,103,110,98,103,87,93,110,107,90,94,101,108,93,99,99,87,93,97,105,85,101,96,80,92,109,90,95,116,98,97,97,97,94,85,94,92,116,98,96,105,117,93,92,100,98,89,126,99,89,119,88,105,95,101,109,104,100,109,122,103,98,101,84,90,105,111,103,96,93,103,96,101,83,98,92,105,105,92,87,99,117,121,94,102,92,96,96,100,94,88,94,112,96,95,101,100,93,115,99,83,94,104,100,98,114,101,101,104,116,93,96,100,101,104,98,98,104,88,102,97,128,95,98,101,92,92,102,95,113,110,91,99,109,96,107,91,113,101,101,92,91,99,88,98,101,106,96,94,101,114,99,108,102,104,100,70,102,90,96,91,111,90,100,98,99,106,93,95,106,93,101,100,98,112,106,88,99,90,103,90,109,94,100,90,103,110,103,96,93,100,96,79,82,90,106,103,93,95,106,91,89,89,109,99,101,104,109,98,95,87,87,97,104,99,117,98,98,97,102,93,92,92,91,106,98,104,92,92,107,91,96,94,100,93,95,95,97,98,96,89,103,99,108,84,95,112,112,102,92,96,88,107,100,106,90,97,98,98,112,94,88,101,106,92,97,100,94,88,109,97,94,90,92,104,109,99,103,86,103,99,97,107,91,110,91,98,98,94,106,93,95,92,93,91,99,102,90,88,96,95,97,99,107,97,88,98,108,102,104,99,100,97,99,95,86,91,109,100,87,102,101,100,86,102,96,94,88,104,97,81,93,103,111,106,92,98,110,112,97,109,90,95,101,102,94,105,92,88,97,100,92,106,95,95,106,105,91,96,98,99,99,100,108,96,87,92,105,94,91,93,96,102,95,101,104,95,102,92,88,99,91,108,113,89,104,98,96,92,95,106,98,94,98,98,113,126,87,103,103,103,111,116,95,111,100,111,107,93,98,97,93,105,97,114,102,93,96,99,108,94,106,106,96,106,97,83,89,95,100,97,86,102,97,99,102,102,92,92,104,97,93,90,98,101,104,118,97,87,105,90,95,95,95,85,97,92,101,95,92,99,96,107,113,82,105,99,96,111,97,109,108,97,93,104,98,104,108,107,91,105,102,95,106,110,105,101,90,79,104,87,96,104,92,100,96,109,94,107,106,97,108,95,100,104,96,96,106,98,94,99,102,101,92,94,100,91,105,104,94,97,103,99,107,97,100,96,98,94,99,94,99,105,91,110,92,99,103,93,100,102,93,114,99,103,100,103,102,94,89,107,106,108,113,98,89,99,99,96,101,87,95,88,99,90,103,98,105,93,90,95,95,104,104,97,110,93,103,100,104,92,110,88,93,105,100,103,97,94,103,101,95,101,91,99,96,101,113,101,97,94,95,97,101,105,90,89,116,90,96,98,92,104,97,108,100,104,101,91,106,94,104,105,87,105,91,92,90,103,104,95,105,106,101,92,98,100,90,101,98,100,107,94,88,105,97,105,109,91,99,98,99,106,109,98,91,84,103,91,94,91,97,109,87,96,103,104,104,89,80,105,107,89,109,109,89,101,100,99,101,100,123,80,103,100,99,100,101,92,94,88,102,99,100,105,83,101,112,93,96,97,89,104,94,95,101,100,109,96,100,110,118,106,75,107,105,111,103,105,104,123,90,71,105,104,104,94,95,106,88,100,97,94,96,106,104,113,97,102,99,101,103,103,105,107,103,105,101,93,103,91,71,107,89,100,102,107,92,96,107,103,101,92,119,90,107,108,105,99,104,104,92,92,96,101,95,85,97,100,94,102,100,98,84,98,97,107,83,102,104,100,114,110,88,100,109,109,93,104,108,99,93,99,97,92,105,96,94,97,88,92,101,98,110,94,101,107,103,102,89,91,98,83,93,105,106,99,94,103,99,106,104,109,80,110,115,106,117,102,103,99,121,90,97,105,115,118,103,103,91,102,101,100,98,92,99,108,104,64,99,102,95,97,100,105,102,91,103,107,106,109,93,100,105,106,100,109,102,108,91,105,100,94,100,103,107,109,88,108,100,91,102,101,92,90,102,107,94,101,97,110,96,83,103,102,103,101,94,99,91,89,107,97,104,99,95,104,83,102,103,105,102,107,95,108,102,110,100,106,106,102,106,89,107,87,105,88,92,98,97,101,108,92,102,110,103,100,105,104,88,90,111,102,91,98,99,93,85,104,95,95,102,91,102,105,118,98,102,90,86,103,97,102,102,95,102,112,99,99,94,101,104,106,78,104,110,92,123,95,90,97,105,90,105,83,97,99,100,95,103,110,90,98,104,101,92,107,93,98,98,98,101,113,98,116,94,94,80,94,99,86,93,106,91,94,90,108,102,89,113,96,102,83,107,92,88,88,109,100,89,96,97,96,106,115,78,101,102,102,109,118,98,107,106,91,99,98,96,102,86,104,91,107,87,101,109,94,96,95,72,98,87,100,94,94,91,110,113,94,108,101,101,93,115,88,96,96,78,105,96,94,98,98,101,100,98,98,98,95,102,92,97,100,95,109,81,95,98,99,89,111,106,96,92,95,99,97,107,92,98,105,87,97,104,114,99,107,98,109,113,99,110,92,100,91,97,95,101,106,108,112,123,98,93,100,97,98,103,97,93,107,99,98,94,98,131,93,102,88,91,97,98,101,90,100,97,108,98,100,98,107,83,95,90,109,103,110,94,97,98,109,104,96,107,113,80,97,108,103,108,106,99,91,101,97,97,97,107,105,100,119,102,116,118,107,101,105,87,104,105,93,96,104,74,98,98,95,94,107,101,111,101,104,112,96,94,101,93,88,90,100,93,94,103,98,107,98,104,104,108,99,104,98,101,98,95,84,96,106,108,105,100,99,97,91,101,101,100,91,96,109,89,101,111,92,99,105,89,97,93,107,102,98,89,92,93,103,116,90,87,99,91,102,105,108,93,87,94,96,81,99,102,100,109,92,94,99,103,102,92,97,99,84,99,106,103,99,101,98,94,95,97,98,102,82,94,104,99,107,93,92,96,92,107,87,91,97,95,102,96,110,86,95,92,69,87,100,93,101,98,100,99,96,105,98,100,101,109,102,88,103,101,110,100,87,102,105,103,99,99,113,98,92,97,89,93,109,101,95,106,100,105,100,117,99,84,102,96,97,109,96,96,98,91,95,83,96,75,102,101,80,94,105,111,98,96,99,87,105,106,104,96,95,96,98,117,89,98,97,98,102,95,92,106,88,108,105,108,98,101,107,89,105,93,92,108,99,106,96,109,107,94,92,105,93,100,100,96,99,108,99,86,109,94,97,112,91,97,108,92,100,88,108,88,77,91,109,108,111,102,96,89,105,91,98,88,96,103,100,102,102,95,109,95,110,104,100,106,105,112,99,108,114,96,90,101,96,95,101,97,92,94,99,100,110,95,105,106,97,92,106,94,102,97,103,101,92,87,101,91,113,88,97,108,85,98,116,104,128,97,94,102,94,107,96,92,108,101,96,109,98,92,106,98,93,89,98,98,91,98,93,104,104,111,93,98,94,105,102,97,95,98,103,102,102,105,106,101,89,95,100,100,90,93,82,107,99,99,99,92,91,92,100,105,102,96,106,105,112,108,102,95,107,107,102,98,97,97,107,99,106,96,99,112,113,95,96,104,100,90,109,101,92,92,102,106,99,98,91,95,104,95,104,95,102,94,96,97,62,108,90,101,85,98,99,106,115,104,98,125,91,109,101,101,96,113,89,111,98,92,105,104,95,104,109,90,96,95,106,98,89,85,102,99,100,99,94,103,96,112,101,89,95,98,99,121,93,109,100,99,92,103,93,101,97,102,102,92,107,95,102,110,98,101,100,100,106,86,105,88,98,100,107,85,121,90,109,103,107,102,104,95,102,98,100,104,92,98,102,109,103,101,92,92,91,101,98,103,89,60,96,104,97,94,110,102,107,106,95,97,92,103,99,103,97,98,105,96,104,113,95,93,99,102,101,97,93,103,101,105,99,98,88,109,101,87,94,103,100,100,97,109,98,95,109,94,108,102,104,117,105,111,110,101,106,104,97,115,100,101,93,93,112,104,93,98,90,94,80,106,105,98,100,99,98,98,105,94,98,90,106,103,80,96,94,91,110,97,99,95,101,87,91,110,92,94,99,89,103,96,100,101,93,99,94,87,102,104,94,67,95,96,101,94,102,94,98,106,100,87,94,95,115,108,100,101,107,106,102,120,101,98,88,93,95,106,96,99,102,91,98,102,108,120,90,99,103,87,98,111,102,92,104,87,113,107,101,88,103,91,95,102,103,67,98,99,95,103,97,93,101,95,96,96,101,103,114,99,107,100,93,100,94,96,91,105,101,102,91,112,108,91,101,87,102,89,98,96,87,104,109,99,110,97,87,111,102,106,96,108,100,97,98,102,95,103,108,96,91,98,94,93,97,72,95,97,100,104,90,84,98,95,107,96,97,108,92,92,95,103,94,105,104,116,98,78,92,95,97,77,87,93,105,103,90,101,101,103,97,77,90,96,103,93,95,95,94,99,100,105,98,94,113,95,104,94,111,118,96,93,94,98,95,99,91,104,105,103,101,94,84,88,103,101,85,118,96,99,97,98,94,106,109,97,97,107,91,111,91,97,105,94,96,88,132,92,107,126,104,92,103,99,97,92,107,92,98,120,101,90,113,102,93,98,101,100,89,106,88,111,88,112,81,98,113,93,101,100,94,109,96,115,99,102,98,101,92,92,106,89,99,126,80,94, +723.45203,105,83,90,118,94,122,93,101,96,90,113,96,110,92,94,93,101,116,111,88,95,107,94,92,99,101,110,99,104,95,92,86,97,114,106,98,100,91,101,88,99,95,97,112,87,108,76,103,104,101,96,97,89,93,97,91,105,103,104,95,100,103,104,89,103,90,101,96,91,102,103,101,98,71,87,105,105,91,100,92,89,102,83,109,91,98,99,95,99,93,95,88,97,96,105,107,100,91,96,101,95,90,102,102,97,93,105,92,84,71,108,87,95,100,95,99,106,105,104,85,101,98,96,101,99,91,99,90,113,94,98,107,98,103,101,102,96,115,107,98,103,94,92,90,87,82,109,96,94,96,98,95,105,94,90,99,94,97,109,91,103,104,96,98,102,95,90,94,96,86,91,99,96,100,107,92,104,83,105,108,98,93,86,93,96,91,93,89,113,83,98,95,97,111,93,101,114,91,96,105,92,106,93,99,97,103,96,97,108,107,99,100,100,104,85,106,89,98,100,100,98,95,104,95,94,100,102,101,115,104,94,101,101,101,90,104,89,108,100,109,91,102,103,96,90,105,110,102,87,87,106,100,101,111,97,99,95,113,95,87,97,91,100,95,89,96,110,101,88,97,99,104,103,82,92,99,103,100,94,99,100,99,100,91,96,78,83,90,94,91,95,98,103,95,97,98,112,113,95,104,111,104,81,104,97,105,101,108,102,103,92,109,99,107,94,95,96,90,110,88,92,88,91,118,91,81,99,89,102,96,110,101,101,94,99,87,103,101,88,95,95,92,101,88,105,101,96,109,94,88,101,105,106,92,110,82,92,103,97,103,94,95,87,90,90,98,100,103,99,100,101,94,101,102,107,93,101,101,98,113,103,99,94,111,93,92,90,93,99,96,118,96,98,90,111,94,97,103,96,108,98,94,109,87,99,98,104,105,99,96,91,96,97,93,93,97,100,100,101,92,112,96,94,102,94,100,99,96,102,103,85,102,101,91,103,90,96,92,88,100,99,72,96,106,97,105,101,93,102,110,99,107,88,114,93,101,97,96,102,105,100,98,90,99,96,116,99,101,107,106,108,99,103,101,98,102,98,109,107,102,93,99,108,107,98,91,95,95,97,99,105,120,104,91,88,112,90,79,102,95,98,99,117,100,100,96,101,100,90,96,101,102,105,105,114,93,89,99,97,99,101,83,84,94,95,103,119,94,67,104,100,103,103,86,106,97,110,99,92,102,90,109,87,108,106,91,103,100,104,90,100,99,108,99,103,97,104,103,98,105,90,87,93,80,95,108,92,107,112,103,87,98,98,108,87,91,98,104,97,93,97,94,78,99,95,105,99,105,95,102,99,96,96,105,102,102,84,101,100,93,96,84,94,90,97,97,90,103,86,99,96,87,103,105,105,83,98,101,100,95,95,102,96,108,102,107,100,96,97,83,104,94,95,96,84,72,95,101,105,95,100,87,106,115,86,92,103,96,92,97,90,100,97,104,104,102,99,98,115,98,104,99,99,111,107,103,92,99,100,110,96,103,91,101,106,99,92,105,102,99,98,106,110,88,92,100,104,90,93,97,103,107,96,102,104,103,99,102,101,90,98,88,98,100,114,106,111,116,110,105,78,105,100,91,93,104,101,88,103,97,98,96,85,96,99,86,96,108,96,100,109,87,100,102,96,96,96,97,94,97,106,91,88,105,106,101,92,100,100,95,102,104,92,99,95,105,103,110,93,87,95,106,107,103,105,103,86,107,100,104,100,91,100,101,74,101,101,103,92,82,101,70,104,100,88,98,106,113,104,105,91,101,99,99,104,97,96,86,102,108,96,95,120,100,90,98,91,95,94,100,90,87,93,94,107,99,101,94,95,116,105,112,95,103,87,108,105,98,106,86,103,96,101,99,98,100,102,106,90,114,101,108,105,94,103,97,103,111,97,95,97,107,102,104,109,105,88,100,101,99,97,103,86,103,90,97,98,98,106,101,100,110,98,97,100,114,109,96,98,100,88,106,97,98,97,117,94,114,81,103,102,106,98,95,92,89,109,85,96,94,98,106,112,101,104,98,95,100,102,95,98,99,99,106,102,110,94,113,109,109,96,101,109,102,100,90,96,98,97,99,93,100,106,107,92,105,96,86,91,93,103,94,113,101,99,103,99,105,94,93,94,95,106,112,101,108,108,96,93,92,96,95,97,99,108,104,96,99,103,96,102,98,104,101,95,104,105,85,101,85,105,110,92,99,101,104,106,92,98,96,98,103,82,98,93,93,106,90,104,102,101,78,101,98,104,102,99,106,106,100,93,107,100,104,111,98,121,80,110,107,109,97,102,77,105,102,98,96,100,90,105,103,104,95,103,86,92,105,101,103,98,99,88,118,88,108,93,107,90,96,99,100,129,114,87,92,94,95,98,99,90,130,113,105,103,86,95,108,107,102,96,86,97,111,94,98,109,100,103,103,104,97,90,105,94,100,92,79,108,103,94,84,98,86,99,100,85,96,112,91,99,111,108,95,87,94,101,88,97,101,99,109,90,96,90,97,108,93,109,98,87,112,99,93,109,97,98,99,104,113,104,105,81,87,88,104,101,74,105,84,91,89,97,108,89,72,96,102,108,94,116,98,103,91,94,95,98,87,100,98,91,98,113,83,84,113,94,91,105,77,93,98,101,103,92,109,99,95,109,88,103,104,88,100,92,91,106,100,107,102,104,96,97,92,97,92,100,89,101,106,95,96,103,100,93,91,98,94,105,101,94,105,105,92,87,92,97,105,104,85,90,113,102,101,99,102,108,80,99,100,100,104,90,94,92,105,85,98,101,109,112,104,90,91,101,105,98,94,101,95,101,101,100,101,97,97,104,95,85,120,109,105,97,92,93,84,92,104,94,106,96,113,101,109,114,98,92,88,105,98,112,99,83,92,116,104,98,101,101,94,99,109,72,91,112,97,106,102,101,92,103,110,101,94,93,96,96,123,91,92,105,114,97,118,98,105,95,106,101,97,118,95,101,92,100,115,102,96,96,100,97,91,95,96,100,108,99,96,91,98,105,103,104,96,95,95,115,90,108,101,98,96,99,98,90,93,98,89,100,100,99,101,110,113,99,104,94,96,100,95,95,104,103,108,91,96,97,101,98,102,92,101,103,102,105,95,102,93,93,100,72,94,106,96,104,94,98,89,98,102,95,102,101,102,95,80,102,92,101,99,92,99,103,104,98,96,109,101,97,103,107,105,82,91,100,100,90,105,107,97,105,100,106,113,105,94,105,109,76,95,108,94,100,87,77,102,107,95,120,102,92,90,105,111,85,97,107,106,106,96,119,101,93,89,104,98,72,94,95,96,104,99,94,100,99,98,95,107,102,98,89,94,94,90,102,95,111,109,99,93,97,96,95,90,98,116,110,104,114,101,115,89,98,104,102,98,103,98,93,88,98,101,98,97,99,89,101,98,93,104,99,106,99,102,94,103,93,105,101,95,83,123,87,95,106,96,99,106,105,98,108,97,99,103,109,96,97,91,100,102,122,78,99,96,101,102,104,100,88,96,108,101,110,101,100,96,91,104,96,106,98,102,95,103,97,117,83,97,91,87,90,97,91,96,105,84,110,95,102,99,98,92,103,88,83,87,104,102,104,96,99,106,101,96,94,101,94,94,100,82,96,104,90,133,104,103,87,121,92,88,96,109,93,100,113,112,95,110,105,96,100,96,103,94,116,105,98,97,105,94,98,121,105,92,102,97,92,99,113,92,105,97,104,92,96,105,96,105,120,98,99,96,94,90,105,94,96,89,99,91,97,93,92,98,97,94,112,99,103,91,124,101,98,94,82,101,107,70,93,109,98,107,94,95,90,95,104,99,97,101,91,96,94,101,101,97,106,90,94,106,84,85,91,102,95,101,108,87,82,103,110,99,99,104,93,100,106,88,97,98,108,84,102,100,91,104,97,99,96,94,109,105,99,108,96,97,107,101,101,112,108,105,106,111,105,100,101,92,89,100,96,109,101,95,102,103,91,102,98,112,108,98,96,100,106,95,109,92,100,90,98,92,98,103,107,103,95,104,111,109,94,95,88,101,92,104,91,101,104,101,101,113,102,108,104,101,101,98,105,111,101,105,91,97,120,105,106,92,109,104,98,98,79,98,91,107,100,115,99,99,109,92,96,101,97,100,105,96,88,88,99,96,104,95,102,100,93,102,99,101,103,136,103,106,113,87,100,93,108,92,98,94,96,106,98,98,110,109,94,105,113,87,92,88,85,110,97,104,103,91,111,92,96,88,76,101,100,87,91,94,101,91,107,94,84,102,84,91,104,99,93,99,97,99,102,89,102,101,85,108,99,104,110,100,98,90,102,101,103,90,107,93,102,100,100,93,101,98,93,90,98,106,75,88,91,104,100,109,83,91,90,88,101,106,90,109,97,97,102,105,101,99,95,105,101,93,97,91,90,100,87,102,105,109,110,88,87,105,89,91,85,92,105,102,91,110,112,100,113,93,94,94,87,113,97,97,96,108,90,93,85,84,92,97,105,105,103,105,103,99,92,90,105,102,96,101,98,102,99,101,96,104,107,101,105,99,101,97,98,115,113,91,111,114,99,94,102,104,108,94,99,95,95,104,101,102,83,115,111,100,101,98,97,101,97,95,96,104,108,102,94,104,93,88,104,96,104,104,102,87,103,94,89,103,101,92,109,104,95,100,94,91,111,93,114,93,95,100,102,92,84,100,89,98,114,105,106,105,99,110,106,99,90,111,93,104,106,100,107,100,95,100,92,119,114,102,104,101,100,92,118,93,99,97,99,83,91,119,91,101,100,105,94,103,106,109,89,94,93,115,110,94,73,90,101,108,103,90,101,96,67,100,97,97,92,97,118,107,111,109,105,99,92,98,106,97,134,103,88,97, +723.59344,93,87,98,122,89,95,99,102,93,125,96,99,100,105,101,99,104,85,87,106,102,101,72,101,99,108,98,93,112,81,95,108,88,101,107,116,101,107,100,107,96,104,102,71,100,107,94,121,98,94,102,105,87,100,86,86,105,97,103,89,79,105,113,94,110,102,101,109,101,107,104,103,100,95,104,103,86,95,98,94,97,103,96,101,97,106,101,99,98,100,107,99,100,100,115,105,108,101,97,98,82,109,102,96,103,98,120,97,92,98,83,87,99,95,89,94,105,101,108,102,90,106,105,101,119,100,97,74,100,88,89,96,81,109,107,106,89,95,87,95,101,104,91,91,94,93,92,99,93,95,106,106,91,105,101,76,95,100,107,85,102,99,99,105,99,102,89,94,103,97,92,96,99,96,89,103,95,93,90,95,90,103,97,105,95,102,91,98,82,95,73,99,105,98,70,113,92,106,92,103,100,101,97,93,97,97,90,80,95,99,86,108,108,101,96,101,119,112,96,97,98,96,102,98,98,100,98,105,114,123,71,95,101,97,126,103,101,108,98,102,101,96,95,101,112,97,76,109,98,107,87,94,90,88,103,97,101,100,95,94,91,100,102,105,94,103,101,105,89,94,99,102,108,97,96,107,100,111,96,96,104,119,109,100,98,103,103,107,108,98,100,100,91,97,100,94,101,102,102,95,97,102,94,109,90,99,100,109,94,98,92,117,109,92,97,102,92,92,96,94,101,97,102,91,97,98,98,93,92,95,102,107,107,102,111,106,91,98,93,105,86,108,86,98,90,92,100,113,98,105,102,100,99,103,86,97,87,96,100,103,90,93,94,102,90,106,101,101,102,84,111,95,107,90,118,98,103,95,95,88,99,105,110,110,91,99,108,115,107,99,116,97,88,97,98,91,105,100,95,119,94,97,95,101,86,108,100,99,108,111,89,93,97,101,94,99,100,94,101,108,78,86,97,91,101,108,94,95,94,107,96,102,104,113,94,103,95,96,99,98,71,96,99,100,113,97,104,98,98,103,108,98,99,106,86,98,101,88,103,96,105,99,98,106,105,112,93,107,105,114,82,104,95,103,100,92,83,113,103,96,93,107,101,93,100,95,104,92,109,99,101,94,105,94,103,91,95,97,110,106,98,96,99,101,108,97,95,98,98,96,96,102,105,98,107,98,100,96,95,97,105,98,94,105,93,108,103,95,97,91,96,99,106,104,99,106,89,90,108,92,94,103,109,91,100,96,100,83,96,100,95,105,113,94,97,97,105,97,100,81,98,100,104,94,92,103,87,90,90,102,78,87,97,98,105,101,101,109,97,98,94,99,107,101,103,109,92,97,107,91,99,109,92,95,99,109,100,100,104,89,104,87,96,102,101,96,102,96,97,92,90,86,109,112,96,102,94,107,98,93,101,95,92,102,94,99,92,91,94,104,102,96,101,99,103,99,97,100,94,92,90,93,110,107,80,86,100,95,105,107,89,94,103,96,97,91,94,78,105,109,113,106,92,99,113,104,108,100,97,111,108,98,91,100,81,92,101,104,104,103,105,98,105,95,95,105,93,97,86,95,102,102,115,91,103,87,101,97,104,91,116,100,85,118,103,109,104,101,103,96,105,105,103,103,92,110,86,76,101,106,92,108,88,100,92,75,94,99,94,108,92,93,93,100,100,110,120,92,85,93,99,96,99,98,100,94,100,100,97,108,97,96,96,82,101,83,98,101,101,96,98,116,99,92,90,105,101,101,99,91,96,100,104,74,100,102,96,95,101,94,104,108,102,113,95,99,105,95,94,105,112,108,96,104,100,102,109,97,108,100,97,90,114,91,102,103,102,94,106,103,106,90,92,108,97,100,107,92,100,128,100,87,100,97,100,100,105,96,96,101,102,110,104,106,95,104,100,104,101,92,97,96,122,101,101,98,86,89,98,98,95,101,109,105,90,93,98,99,93,98,91,104,95,100,118,98,101,102,94,106,101,88,105,96,103,103,100,84,100,104,103,103,106,94,99,110,101,108,91,101,102,97,100,96,98,103,93,107,100,101,92,106,99,101,100,103,82,99,96,94,99,96,107,93,102,100,91,100,99,99,69,112,85,96,100,92,94,101,102,117,139,104,99,102,109,97,106,92,91,106,104,98,87,109,104,101,96,104,101,103,102,98,88,99,86,104,101,101,91,99,99,100,100,90,110,95,107,103,100,107,91,102,105,101,95,100,110,94,96,104,97,103,92,107,112,107,89,96,110,99,103,105,89,95,97,97,101,102,91,100,122,97,97,109,102,98,99,106,93,100,96,92,105,125,109,105,104,111,101,101,113,100,117,83,94,101,98,101,98,100,103,100,105,79,98,96,96,89,116,79,100,93,98,102,94,98,112,88,86,98,101,103,70,99,89,102,92,98,106,105,97,87,98,96,105,98,87,116,101,100,91,101,113,90,100,108,101,106,101,98,101,89,93,83,90,90,87,104,106,105,91,102,101,93,104,99,97,91,110,95,87,101,100,101,107,97,105,98,102,82,81,108,104,81,79,95,101,93,90,106,101,101,96,106,94,96,100,103,98,109,76,97,108,82,90,110,98,97,104,87,89,108,101,95,87,100,101,126,95,102,91,99,104,104,98,98,92,88,100,97,101,82,89,105,96,95,105,87,95,96,102,90,99,86,92,87,98,93,102,93,100,101,73,90,89,94,108,103,63,101,100,93,100,101,102,112,96,95,104,98,118,96,108,98,100,82,92,106,89,86,95,103,97,101,95,103,106,102,101,104,87,107,83,108,104,76,105,104,87,97,89,96,103,102,109,100,107,105,93,101,102,92,110,94,94,98,108,95,92,100,104,93,99,93,92,97,93,98,103,105,113,89,100,99,101,91,103,95,108,103,108,107,95,96,97,95,95,106,99,96,109,97,101,100,90,100,96,102,95,92,103,109,80,91,109,100,120,104,106,102,114,101,100,104,97,105,114,96,95,97,101,104,91,99,99,122,104,99,87,85,101,97,94,94,103,99,88,99,104,110,95,89,100,99,104,105,85,91,92,96,98,96,81,91,104,96,101,90,98,95,101,91,97,107,101,92,95,96,98,84,95,92,95,97,86,87,93,94,95,82,102,98,105,113,103,101,100,112,94,108,94,84,97,104,101,90,112,108,91,91,98,86,99,108,113,107,101,90,105,105,111,92,91,103,98,110,103,102,92,97,93,103,75,104,74,106,98,89,102,93,87,98,95,100,94,105,104,100,100,90,107,102,96,108,101,112,108,101,116,100,92,91,101,92,103,106,91,101,86,94,77,93,97,71,100,105,94,95,98,76,95,95,82,103,103,100,100,102,96,101,93,102,99,88,97,102,102,94,99,91,93,102,87,113,96,82,106,93,91,95,93,87,105,98,97,112,108,100,103,92,94,94,104,91,95,97,96,98,90,96,103,106,101,105,100,94,108,97,97,105,103,87,104,91,91,91,106,98,102,102,105,93,92,121,97,101,97,96,93,79,104,117,94,107,95,105,95,99,93,100,72,102,90,110,104,88,99,95,84,101,97,92,101,100,115,107,94,106,92,101,110,103,89,98,93,109,98,87,106,104,115,100,101,91,100,100,108,98,95,98,87,89,102,94,103,93,97,102,110,104,101,101,102,97,87,105,87,89,129,109,106,100,98,114,96,94,84,91,99,82,83,113,95,101,98,104,95,95,101,98,103,92,99,88,100,100,99,60,90,87,109,93,115,93,103,89,99,106,98,67,102,97,98,97,99,106,83,104,105,104,106,98,95,91,116,97,105,94,104,88,94,91,99,83,87,97,101,104,95,97,103,100,97,108,115,97,91,87,88,101,102,97,101,99,102,98,94,100,99,99,93,103,98,94,101,113,99,117,104,108,102,101,83,97,106,104,100,87,89,87,89,109,106,110,91,94,107,87,95,91,102,104,98,96,98,108,103,99,99,105,112,98,92,108,95,86,98,109,97,93,100,101,87,98,109,104,99,102,106,93,116,98,96,85,100,109,91,94,93,105,97,97,86,96,109,94,103,93,98,109,99,91,89,101,91,101,92,101,66,97,99,89,105,92,106,95,102,102,88,82,103,105,96,94,103,95,93,104,99,89,92,105,101,102,102,97,100,92,93,98,89,95,88,97,93,105,99,90,102,94,104,95,86,65,94,97,84,93,98,92,101,101,109,99,101,104,97,105,92,95,94,110,103,109,95,97,106,96,104,95,106,94,101,98,85,99,100,87,99,92,83,101,93,117,93,95,99,100,101,90,102,100,102,102,105,107,93,94,106,84,102,98,96,77,105,102,90,93,107,105,112,96,91,99,101,106,99,113,88,97,110,103,99,95,102,100,104,107,113,86,94,88,109,103,98,96,92,101,106,92,103,98,93,108,98,103,102,98,99,92,106,92,93,90,98,98,87,93,86,107,105,105,96,92,104,91,96,95,104,100,95,100,97,96,97,83,100,104,90,106,92,97,96,99,105,101,92,103,90,93,104,96,97,117,103,104,95,91,100,87,75,102,94,98,108,102,105,112,87,104,99,89,99,94,100,102,93,99,87,109,99,113,107,101,95,98,106,107,95,105,104,97,95,102,100,101,109,96,101,86,96,113,101,98,104,117,98,100,99,100,99,100,113,104,104,102,102,92,96,92,90,97,100,103,96,107,102,93,112,108,96,96,108,100,102,93,97,105,92,103,95,98,108,103,105,104,105,102,96,96,95,87,96,103,104,90,100,93,104,101,107,107,87,104,104,118,86,91,97,61,89,108,110,81,102,103,104,91,101,116,93,102,89,83,106,98,88,108,96,87,97,93,83,103,115,98,116,98,88,106,107,83,87,103,98,94,98,106,99,105,94,103,104,94,108,100,102,108,108,107,103,95,108,100,103,91,101,102,96,91, +723.7348,87,105,100,109,78,94,94,91,106,96,99,113,98,101,102,113,100,104,89,109,92,98,106,99,96,90,105,101,101,111,96,68,103,100,106,125,98,104,89,111,117,102,101,105,103,102,85,108,92,98,83,93,113,108,85,92,108,105,104,92,92,102,91,95,105,104,94,100,101,86,99,111,95,101,113,95,102,97,91,99,100,85,105,100,89,96,96,123,92,100,78,80,105,97,95,79,120,98,105,100,89,107,91,108,94,104,99,100,105,92,104,89,103,86,104,77,111,90,112,101,104,95,101,109,90,106,72,87,104,108,96,100,97,102,101,104,102,96,91,94,107,106,80,92,90,99,101,107,91,94,91,99,105,102,93,99,94,95,98,107,99,96,91,111,112,100,101,88,94,110,103,102,112,98,109,98,100,104,98,93,98,99,98,94,103,80,89,98,106,104,95,97,108,107,94,95,105,100,109,101,89,104,94,91,100,99,92,92,95,107,91,100,101,107,99,108,101,98,100,95,99,106,95,90,101,109,100,101,101,98,94,109,103,101,109,98,106,96,112,98,103,95,108,109,100,111,102,103,97,85,98,92,94,105,99,97,98,104,84,97,85,103,91,104,106,93,115,98,83,90,96,95,105,101,103,97,101,102,100,98,99,105,99,101,99,102,90,96,105,91,91,112,101,100,124,109,80,95,92,100,100,92,102,80,92,109,92,115,91,96,98,103,103,100,89,97,98,104,100,104,91,95,95,90,103,94,97,88,112,101,93,92,112,107,95,108,113,96,100,116,101,104,98,91,106,97,101,79,97,101,112,105,91,95,75,98,97,98,89,102,98,86,92,102,78,103,104,113,102,103,102,103,102,109,89,99,105,96,93,88,108,106,96,92,105,91,97,94,100,100,103,86,94,118,97,100,101,99,104,110,97,93,101,92,87,100,102,98,88,92,88,97,75,97,104,100,99,104,104,95,99,105,110,84,92,94,86,90,109,102,82,102,107,69,91,101,100,99,100,132,102,105,96,102,98,109,93,91,86,95,95,93,96,95,80,98,99,96,92,109,96,119,100,104,95,106,100,103,101,107,98,104,103,110,112,96,96,97,94,101,95,94,99,87,106,85,82,96,114,90,100,102,105,96,92,94,101,96,87,99,105,79,107,94,104,95,102,88,100,100,92,96,89,91,93,113,105,102,97,97,98,95,89,97,103,100,99,100,97,102,96,84,92,102,88,103,95,104,101,113,94,103,99,92,105,97,100,92,112,103,94,108,93,101,100,96,104,85,95,91,102,123,104,105,104,98,100,101,92,89,95,98,102,91,104,94,97,85,103,105,100,97,89,95,99,96,90,104,114,94,102,105,136,97,105,90,102,100,113,108,103,97,88,98,100,106,93,89,105,101,67,105,101,107,107,100,97,94,108,104,88,96,94,105,100,79,97,106,93,93,91,98,98,90,102,97,87,91,99,90,102,93,101,98,96,98,100,84,105,110,102,104,100,110,95,89,106,109,105,91,105,95,87,95,93,105,108,108,113,71,109,94,93,98,94,108,101,110,101,101,91,76,105,96,97,96,82,113,99,108,102,91,98,105,104,99,92,105,104,99,109,89,99,105,94,100,91,93,92,102,98,102,107,101,102,97,102,93,96,105,91,96,93,101,88,84,96,90,111,78,97,101,92,96,92,101,95,100,96,100,105,88,98,75,95,95,95,102,99,106,97,94,103,98,94,101,97,63,94,106,92,93,98,94,97,95,89,94,105,94,106,98,88,93,103,95,100,102,91,99,90,95,100,96,99,98,110,107,96,120,94,110,82,65,100,106,88,103,104,111,112,92,98,94,102,102,105,103,114,106,105,103,96,85,104,108,103,110,102,96,92,107,90,102,120,103,104,100,80,85,97,97,93,110,94,106,109,103,99,109,95,93,91,102,88,94,102,97,95,98,105,111,95,105,104,99,106,92,120,96,109,84,106,112,99,100,108,101,110,95,106,83,103,100,95,94,96,101,102,111,101,105,104,103,95,93,102,102,109,97,96,93,103,102,103,111,95,104,98,91,102,101,95,100,104,106,109,108,96,95,96,104,107,113,100,99,105,107,88,108,114,98,101,100,100,101,99,98,97,111,93,106,100,97,83,99,102,91,98,108,93,99,94,97,98,92,108,116,94,101,92,112,104,85,99,92,95,78,92,99,100,109,106,92,104,101,92,99,106,96,78,98,98,98,98,96,94,103,106,108,93,99,98,92,98,109,109,99,109,95,100,109,99,114,93,101,104,104,104,111,113,99,101,94,89,101,103,99,92,114,91,115,97,98,91,97,100,99,103,102,102,94,100,109,110,104,116,93,94,95,92,100,105,90,103,96,112,102,94,106,92,116,99,95,73,89,100,107,104,98,97,94,105,105,121,104,101,107,97,101,85,102,94,104,117,92,95,94,108,98,96,100,103,96,97,96,99,61,86,98,99,90,100,101,99,107,107,105,120,114,117,100,101,100,82,98,93,103,109,109,111,96,98,114,102,104,99,98,102,114,95,100,122,81,103,88,85,101,104,107,95,91,91,95,97,99,97,88,105,110,100,124,96,95,101,107,95,99,107,107,106,93,101,99,101,103,103,94,107,94,107,95,100,94,96,89,98,93,104,89,95,84,108,93,104,101,101,99,111,99,91,95,94,92,99,98,95,110,94,107,111,112,94,87,102,103,101,89,100,103,82,109,94,99,87,105,109,91,100,95,105,99,108,105,108,101,99,99,110,90,97,108,95,104,104,109,84,105,104,102,107,108,92,79,90,108,96,99,97,112,100,110,104,103,98,92,107,94,96,101,99,96,106,88,108,119,100,101,88,99,112,113,101,92,114,93,104,99,92,102,106,105,90,76,106,105,107,89,99,99,100,101,104,106,98,93,102,93,103,112,102,97,93,93,104,99,102,95,101,95,93,104,125,107,100,97,113,94,84,100,103,103,111,101,103,83,96,101,98,95,113,112,92,92,87,113,103,104,108,96,120,100,110,89,105,92,98,120,112,100,112,103,100,100,124,92,97,100,100,101,93,88,99,91,98,108,100,98,98,107,100,100,109,103,99,94,107,96,100,94,107,106,90,100,88,92,108,99,103,85,90,139,96,99,119,98,102,96,102,97,102,81,93,98,96,101,103,113,98,97,113,83,99,92,99,103,91,102,98,99,99,99,86,105,97,102,94,87,88,108,90,103,101,90,95,96,98,98,101,88,91,108,96,102,105,101,84,98,106,100,89,112,102,97,95,96,101,108,98,94,101,98,105,105,93,96,92,103,98,98,97,93,88,123,87,104,103,95,96,100,104,99,97,73,99,100,99,95,86,87,89,92,95,103,92,107,97,87,104,99,102,106,91,100,89,108,103,98,96,105,101,105,100,109,90,90,100,88,95,93,100,93,102,116,91,109,105,91,103,96,89,93,86,91,94,112,95,92,100,103,94,90,93,106,87,109,100,101,104,81,94,116,94,96,97,111,96,100,104,101,94,99,108,99,106,102,95,106,97,108,92,100,108,109,108,102,96,98,92,109,100,95,94,103,113,99,100,101,105,105,97,96,113,95,100,97,99,91,108,90,97,98,97,79,117,108,96,105,93,69,100,102,96,111,113,96,113,86,101,106,74,111,103,98,95,95,101,94,95,95,101,104,100,121,112,94,88,117,101,79,92,104,97,98,94,83,104,103,102,102,99,88,101,100,112,77,107,98,100,99,100,97,105,78,94,104,108,96,106,106,88,97,95,95,100,107,92,92,99,111,88,90,99,101,99,91,95,97,103,102,96,108,80,98,105,96,105,99,105,94,116,107,106,100,106,95,105,93,92,95,75,105,92,98,98,105,108,103,95,94,101,98,94,99,102,112,100,107,112,103,102,95,119,103,89,98,86,99,99,102,107,87,106,94,97,97,100,95,106,103,102,88,104,111,95,98,112,100,96,97,95,102,94,96,95,102,100,117,94,100,102,108,121,100,113,92,105,104,92,94,98,100,109,99,91,102,100,101,99,94,104,115,92,110,99,102,107,107,112,86,96,97,87,102,83,96,97,105,116,93,101,107,103,97,92,97,87,106,91,87,104,100,100,91,87,95,103,80,101,98,104,97,96,105,101,101,93,111,99,106,98,100,97,100,114,90,105,98,91,98,131,99,98,104,102,112,98,98,109,99,94,113,76,96,105,95,88,98,88,91,104,98,95,103,100,102,104,98,101,105,98,115,82,105,96,89,95,103,92,101,96,104,102,111,97,101,91,102,100,98,101,93,102,72,106,99,98,98,85,101,98,99,101,104,106,102,91,95,98,107,103,91,107,100,107,104,99,91,99,98,96,103,102,96,101,93,94,116,106,99,101,110,66,106,94,99,98,94,98,84,103,96,87,93,92,89,106,86,86,98,96,92,90,110,94,104,111,117,90,99,97,98,104,68,94,102,92,94,101,102,93,96,103,102,102,86,90,95,105,97,105,100,105,99,102,79,102,105,97,98,96,111,96,99,96,124,105,96,111,105,89,93,108,78,108,99,94,96,115,117,98,111,104,100,95,111,108,93,101,96,91,105,101,90,96,105,110,108,101,105,109,94,100,107,98,100,102,112,103,98,101,108,87,102,98,107,104,107,97,114,108,109,98,102,91,100,109,102,99,98,106,105,109,93,104,99,91,107,107,109,112,95,100,98,101,99,102,107,102,102,110,99,98,91,79,96,100,80,80,108,102,109,93,97,109,83,93,95,98,105,95,91,93,102,91,100,81,95,100,90,94,106,106,106,90,100,97,106,104,96,95,98,91,79,97,102,92,113,100,117,104,99,99,98,98,99,119,106,93,96,84,102,102,96,99,116,93,95,97,95,96,79,111,103,104,106,118,109,89,94,109,112,101,94,73,106,99,95,110,100, +723.87622,100,100,94,91,87,103,98,89,95,115,112,93,94,93,95,108,98,108,112,92,98,100,110,107,83,100,89,92,110,113,103,100,102,96,99,95,104,91,93,91,132,95,97,65,109,102,104,95,89,90,90,82,95,99,91,92,101,84,87,93,99,93,93,96,91,110,97,84,97,92,102,103,98,91,128,111,87,98,98,95,95,101,96,102,92,97,97,110,71,104,89,98,104,96,96,99,110,90,104,98,77,98,104,98,98,99,131,98,87,99,107,102,100,96,97,95,96,87,103,96,110,97,102,113,92,95,98,105,124,101,107,113,93,104,108,91,91,99,104,104,96,108,84,106,91,96,94,83,96,92,102,87,100,94,104,103,94,93,116,99,99,95,93,100,99,106,93,98,109,100,87,107,96,94,89,102,98,96,110,84,100,100,109,94,106,86,97,99,108,117,88,100,109,107,92,102,79,83,91,105,101,98,96,114,87,97,84,106,95,103,102,93,106,101,100,98,87,90,109,101,103,108,108,90,103,99,91,100,98,110,94,94,108,96,103,105,69,105,117,98,92,103,102,102,93,113,107,107,98,94,101,97,102,114,99,94,108,94,92,97,90,110,110,107,97,100,100,104,102,100,91,93,99,99,112,101,93,94,100,106,88,113,95,87,100,99,102,101,84,110,93,107,103,104,90,105,106,96,98,101,104,100,90,113,94,102,95,93,96,112,98,115,109,101,101,90,98,101,97,97,96,102,112,97,104,94,91,99,104,109,97,91,109,98,104,100,96,108,87,100,91,96,99,93,78,105,82,127,95,98,87,99,113,103,107,89,101,103,102,102,94,105,97,98,94,94,95,101,97,106,101,99,114,101,96,99,106,90,95,91,98,94,101,103,100,80,93,102,100,96,110,93,91,96,90,101,95,95,88,96,89,100,96,89,96,88,99,92,99,86,88,92,102,104,92,105,98,87,91,100,110,93,97,132,93,94,99,89,101,96,92,101,91,117,104,98,93,98,90,91,99,96,86,87,94,92,94,92,92,110,90,90,93,102,88,96,96,105,102,97,86,97,102,108,100,106,100,94,102,91,98,114,101,97,105,93,101,103,90,92,97,102,135,106,109,79,84,109,98,107,98,90,100,93,97,86,94,104,95,99,87,103,93,89,93,93,95,95,100,94,99,107,88,95,85,105,91,92,103,90,99,95,95,108,102,101,97,101,107,98,95,104,111,114,92,82,98,101,101,101,87,92,91,102,113,66,105,103,100,102,92,109,104,95,91,104,100,97,103,101,102,95,78,90,90,106,109,112,98,99,95,89,93,100,103,104,88,97,94,94,102,106,102,92,94,105,128,100,99,104,109,102,92,97,99,97,97,95,103,92,96,99,96,91,93,96,69,93,79,98,102,83,93,108,102,101,101,91,95,103,100,98,94,86,96,92,96,86,100,97,100,93,94,110,98,102,87,108,102,102,103,90,98,107,91,83,94,94,91,119,94,93,89,99,93,108,100,105,96,97,93,96,99,99,98,91,103,87,106,97,103,125,92,83,82,109,105,97,96,91,95,109,98,88,86,97,92,96,95,105,96,101,81,98,104,92,97,96,96,113,88,92,97,103,107,100,103,95,100,96,94,123,105,98,100,94,78,114,100,99,97,99,96,98,95,110,111,99,98,100,96,97,97,88,97,86,87,89,102,95,93,100,90,93,101,98,97,103,101,92,97,93,90,87,97,101,88,98,96,106,95,102,90,95,94,104,100,107,75,94,106,117,95,104,87,106,89,88,95,103,109,92,103,103,97,97,93,101,100,87,109,103,101,96,95,99,101,86,102,95,106,106,105,95,107,86,97,95,96,86,97,95,100,102,102,99,91,99,101,91,111,99,91,106,106,100,116,100,93,96,78,93,99,79,93,102,94,107,87,103,89,110,100,101,98,92,100,101,84,100,94,103,105,81,97,100,102,103,105,108,94,105,100,91,106,96,109,95,106,111,95,95,95,109,89,89,108,92,87,96,107,90,103,95,100,104,99,106,91,102,88,102,96,109,98,86,91,102,88,109,93,73,106,92,102,102,91,95,108,102,97,87,103,94,97,94,89,98,84,101,74,89,111,102,97,90,108,101,106,100,87,106,90,105,70,94,97,107,90,103,103,100,104,91,65,96,102,97,102,84,99,104,96,95,129,104,105,98,99,88,105,92,95,93,94,80,97,99,92,84,84,82,109,108,99,103,96,93,94,99,99,98,96,92,104,101,87,100,94,98,105,103,101,87,95,100,100,104,101,105,102,102,100,91,94,101,84,101,95,92,80,102,101,103,94,92,97,105,84,99,99,88,112,92,87,97,113,90,93,98,102,94,107,100,114,97,93,100,100,106,102,110,91,103,99,105,102,98,101,90,106,94,96,106,83,97,89,102,97,96,88,99,103,100,95,101,96,107,105,96,92,107,102,93,105,101,109,99,98,106,67,97,104,97,82,109,100,101,104,106,95,90,81,83,91,103,91,94,91,105,92,97,104,91,81,94,107,89,99,101,98,100,105,88,101,112,98,114,93,94,99,94,107,98,106,103,90,94,83,100,91,83,96,88,76,104,101,94,81,87,92,90,93,109,87,98,97,99,88,104,96,96,91,99,97,96,94,99,107,98,101,98,111,92,101,102,101,93,96,101,107,98,96,107,95,90,98,102,98,92,124,108,94,102,88,100,109,89,95,98,95,98,105,95,92,101,106,100,105,111,100,113,115,98,106,93,99,100,93,95,96,102,99,92,108,113,113,89,95,111,116,102,97,97,91,96,93,105,97,102,91,104,110,113,90,66,88,98,97,89,99,95,95,90,89,102,106,93,95,90,105,97,104,96,96,86,103,107,106,80,104,100,60,101,93,89,108,102,98,92,95,102,97,103,94,96,104,101,106,107,98,106,112,94,88,103,121,98,83,113,114,108,104,91,100,106,102,79,102,109,109,103,105,121,72,96,107,110,100,93,96,109,106,101,104,102,100,101,87,86,105,91,97,110,102,92,106,100,104,106,95,105,90,107,100,101,95,84,92,93,102,93,109,97,106,113,106,92,86,94,106,99,97,94,96,88,99,99,99,104,97,95,98,101,96,102,108,100,100,101,113,106,102,109,87,97,105,99,100,99,97,99,102,101,98,96,99,94,94,105,98,95,109,100,105,99,103,104,99,105,96,98,98,95,103,90,96,98,94,91,79,92,89,98,98,97,98,98,98,106,105,101,97,94,97,108,100,102,116,111,93,92,112,100,94,93,94,101,108,101,95,111,101,98,99,100,104,96,109,108,71,96,105,104,90,101,96,97,97,105,98,103,95,94,100,91,106,98,103,103,88,88,95,96,96,100,100,99,89,103,97,101,106,98,95,98,98,105,105,90,106,93,93,103,101,101,105,100,113,91,98,103,110,104,88,105,102,102,95,103,103,101,107,102,94,111,98,109,99,102,107,100,100,94,100,103,106,114,99,99,131,87,78,95,91,101,95,120,98,98,127,107,109,117,102,96,102,132,94,109,90,104,102,105,79,80,104,109,97,103,99,100,94,92,89,94,98,107,95,99,102,97,108,92,109,97,92,96,101,107,87,85,97,94,88,97,93,98,100,103,110,90,112,105,90,99,108,105,106,96,100,94,107,74,109,100,103,97,105,95,106,92,91,109,90,100,94,96,102,101,87,93,99,100,109,95,100,104,108,84,104,99,79,99,103,99,95,104,79,94,106,98,98,95,102,107,104,95,95,96,96,89,89,95,96,101,101,110,90,100,90,83,84,98,88,113,97,100,102,105,94,95,100,101,97,91,89,104,98,101,112,94,99,96,81,109,93,87,105,99,101,97,91,91,100,97,106,105,79,96,87,102,99,99,92,108,99,93,87,95,101,98,89,92,90,112,102,101,104,91,103,110,117,93,93,120,105,98,115,96,106,100,105,94,104,94,92,97,100,87,92,108,99,103,93,97,105,101,91,98,100,105,98,100,101,97,93,85,100,105,91,102,91,98,101,106,105,98,94,100,107,98,92,95,105,107,105,107,98,100,119,98,73,92,105,97,95,99,112,96,97,98,92,95,111,98,94,103,109,84,99,124,109,100,100,99,80,101,93,95,93,93,95,95,101,99,105,96,91,100,101,96,87,101,117,102,107,107,98,95,102,86,87,83,91,94,110,98,93,103,104,96,104,95,91,105,106,110,111,95,107,109,99,92,99,93,88,75,109,103,101,109,98,117,94,97,90,99,104,102,99,95,98,92,85,91,100,100,96,97,91,110,102,104,109,108,104,105,88,85,95,101,89,95,102,93,99,100,108,107,101,105,99,105,99,93,103,94,99,106,96,105,102,97,96,88,108,98,90,91,93,98,102,103,95,101,96,102,97,95,93,111,87,103,101,117,99,102,107,114,86,94,108,96,90,100,114,91,111,99,99,123,101,100,98,94,87,98,97,100,92,105,109,101,100,91,87,104,98,102,96,94,100,99,113,104,98,106,101,102,100,96,88,100,76,93,103,101,91,99,96,87,94,103,96,98,100,106,98,100,92,94,101,88,75,101,101,96,91,97,98,99,100,97,125,98,98,105,91,121,102,94,103,113,94,90,89,110,101,99,92,107,100,85,98,108,98,94,99,91,96,85,90,101,104,89,97,108,113,91,92,90,102,95,87,109,90,89,104,117,90,102,69,100,100,103,106,87,92,100,94,90,108,92,94,100,93,99,91,85,94,98,92,91,89,95,94,101,97,106,112,113,93,110,120,96,85,113,104,104,100,92,90,112,108,94,95,85,93,100,98,93,113,100,105,104,95,100,89,98,101,109,92,67,110,107,102,109,91,91,75,100,96,97,102,95,87,95,117,96,100,98,104,119,99,88,96,99,92,91,106,116,96,110,102,92,84,107,86,106, +724.01758,94,105,101,87,83,87,98,95,101,90,87,92,98,91,105,93,97,109,112,104,97,98,78,100,118,90,113,89,109,105,106,107,91,105,107,109,102,102,100,96,117,101,113,97,92,106,104,94,102,106,101,117,113,79,104,105,102,100,102,98,102,105,100,100,95,99,95,83,119,98,99,100,99,91,92,97,94,101,103,101,118,107,109,103,109,98,134,104,98,81,95,95,113,73,97,100,99,94,88,103,100,95,112,67,106,102,100,105,104,114,126,96,111,102,102,104,100,102,107,105,83,89,108,91,98,101,105,81,109,102,91,114,87,102,100,102,95,98,91,90,91,106,93,107,87,100,112,109,96,102,99,105,93,94,91,105,99,104,110,100,104,102,103,99,114,93,100,99,101,99,120,105,99,94,96,110,91,97,101,105,106,100,95,94,91,89,104,93,114,98,76,109,98,93,90,104,95,102,88,92,88,99,86,77,98,101,86,113,100,96,96,111,101,100,103,101,105,102,110,108,100,106,112,102,103,99,102,97,112,107,82,84,91,120,100,97,99,110,106,94,83,100,101,108,94,109,97,105,105,104,105,97,90,113,97,112,86,107,95,107,88,109,107,113,99,104,99,106,91,98,114,104,91,103,95,108,100,98,95,99,87,95,108,108,112,109,94,90,97,104,92,102,99,102,95,93,98,100,95,102,105,101,94,94,99,105,114,105,104,91,106,113,88,106,96,101,98,98,94,94,99,99,103,91,99,98,91,98,98,108,112,94,94,108,112,103,81,95,102,99,88,91,97,105,94,95,100,100,100,93,95,96,101,100,107,107,99,97,92,110,90,91,70,106,86,108,113,96,99,99,115,100,106,99,103,96,105,103,84,102,99,106,94,99,109,104,107,94,101,97,96,99,97,94,101,106,92,96,95,98,91,113,121,106,96,95,91,94,94,99,101,92,104,96,89,102,95,94,109,85,100,95,87,111,102,106,101,95,96,102,98,103,100,96,99,108,94,93,97,109,99,104,105,106,82,101,97,100,90,104,88,93,110,99,109,89,100,113,105,95,101,96,105,101,95,110,109,99,108,97,98,103,100,95,98,98,91,95,98,108,112,90,108,103,93,95,102,110,102,97,91,102,105,102,90,93,100,102,97,101,103,96,96,99,110,101,83,98,113,101,102,106,112,113,89,96,92,98,87,89,107,101,99,105,101,113,100,102,103,91,102,105,102,98,101,103,95,106,103,105,101,103,104,105,91,93,98,99,95,91,98,114,100,99,86,91,107,99,96,100,102,96,90,97,101,98,98,104,101,95,88,91,97,92,105,94,105,115,91,108,118,104,96,71,95,110,106,101,101,94,91,101,93,103,107,93,95,90,105,91,104,99,91,97,102,90,112,96,99,108,103,92,97,100,112,106,104,101,90,105,103,101,110,88,109,95,100,106,100,99,104,90,106,102,90,93,93,96,99,106,99,108,112,93,94,97,94,99,100,95,102,102,106,99,104,105,114,92,101,96,104,100,117,100,99,103,114,94,103,113,117,99,112,99,101,90,104,103,105,96,105,109,104,90,92,102,98,100,100,106,97,105,95,109,109,97,105,96,101,93,97,96,101,107,101,105,105,103,91,94,94,101,103,98,102,101,94,97,109,100,124,86,100,100,86,95,102,101,95,102,96,108,105,113,102,104,112,102,117,97,112,95,90,109,100,92,108,95,104,107,100,103,91,93,105,103,101,112,102,106,94,92,106,99,97,84,100,97,101,98,102,99,113,93,97,104,79,102,100,104,103,93,98,102,96,95,101,100,99,118,101,105,115,105,110,85,98,88,99,96,83,87,92,105,95,109,96,100,94,97,104,85,109,108,99,91,104,103,105,102,94,96,113,106,99,111,103,98,118,91,112,96,99,95,107,110,105,108,92,108,105,107,95,89,97,87,102,93,83,102,97,105,104,96,114,87,102,94,86,101,108,93,102,102,95,77,94,103,110,105,94,105,97,82,96,99,103,97,95,92,107,97,106,108,99,133,105,98,92,101,105,112,99,93,111,104,101,101,98,100,95,104,104,101,99,110,100,102,99,108,110,118,97,108,114,81,103,112,87,110,102,103,108,99,98,97,91,91,101,107,116,102,105,96,96,95,99,100,98,106,108,96,98,103,93,105,91,94,98,116,102,109,107,119,107,105,96,94,98,96,109,97,109,110,89,101,94,105,122,99,106,98,107,102,105,102,106,108,94,98,88,96,98,103,95,91,91,91,100,107,98,107,97,91,104,93,110,102,94,116,96,120,100,102,99,99,108,108,98,111,104,112,95,105,96,105,94,92,99,101,99,102,101,88,97,102,99,100,101,112,93,101,99,98,96,87,102,109,90,98,105,107,109,117,96,99,101,92,118,98,100,110,88,105,91,98,96,92,108,104,96,99,91,107,99,90,103,99,107,102,89,103,97,94,111,106,97,92,85,90,107,100,94,108,109,104,97,104,104,110,89,105,108,101,101,109,95,96,92,97,104,98,98,104,94,95,104,87,103,96,103,91,92,91,92,102,103,104,94,109,91,95,107,108,104,96,91,113,89,79,110,119,106,89,99,90,104,91,102,105,98,87,61,111,101,93,105,93,116,94,108,95,102,101,94,91,98,100,110,95,108,96,106,91,98,93,105,88,108,89,116,97,101,102,104,90,107,91,100,92,113,99,109,95,102,96,107,99,79,93,93,93,105,116,91,94,96,95,93,108,93,93,95,115,102,99,104,99,99,108,107,99,85,80,95,94,101,93,94,99,109,92,101,103,101,87,94,99,100,100,94,106,107,109,116,101,85,109,110,99,108,101,105,105,99,94,103,99,98,97,91,96,96,97,92,111,102,97,86,95,102,93,97,119,109,104,113,103,96,104,106,103,98,91,97,91,102,93,96,91,95,96,104,100,98,97,91,97,100,96,103,102,94,93,103,100,98,98,106,103,93,104,98,92,84,90,90,108,110,99,102,99,97,102,114,111,104,95,99,93,110,102,110,99,100,97,102,99,96,105,104,109,94,99,99,97,93,103,87,96,92,90,100,88,87,110,109,109,105,100,99,90,105,93,99,102,107,106,105,98,90,99,112,102,104,86,99,99,103,106,94,99,102,101,102,99,101,74,98,100,118,92,99,121,125,92,84,101,101,95,101,99,103,108,105,97,92,102,101,100,104,97,94,93,108,94,93,102,105,96,93,92,111,90,101,94,98,98,100,119,99,99,98,92,89,104,97,101,102,102,104,91,106,100,100,98,93,111,109,94,104,89,101,88,88,87,93,100,94,106,91,107,120,94,94,99,94,95,101,102,103,108,96,101,95,102,91,91,94,92,98,104,99,96,98,94,99,69,94,97,94,96,103,109,99,99,99,95,102,96,100,100,91,104,105,104,110,104,114,92,99,103,94,88,100,94,100,95,93,101,92,92,97,89,102,94,107,101,90,105,102,102,102,98,110,105,113,80,84,99,98,112,116,98,92,97,98,90,102,89,98,108,87,100,113,111,95,86,96,98,101,95,99,100,95,109,98,105,102,100,95,95,94,101,101,99,99,95,97,112,106,91,106,104,106,100,95,96,103,102,96,98,112,98,97,98,102,113,104,94,94,94,109,104,97,116,89,94,100,105,91,93,92,101,96,111,93,91,103,103,92,106,109,109,99,98,96,94,100,94,105,79,104,95,101,100,95,104,99,103,92,98,100,98,98,102,101,106,98,91,101,95,101,94,94,107,99,98,96,99,93,101,68,87,98,101,93,105,103,97,113,98,100,62,93,92,95,92,103,98,99,98,96,107,112,98,73,88,105,93,108,89,101,95,107,104,104,96,98,112,87,100,106,102,90,92,102,77,97,98,96,102,97,108,111,88,102,98,99,101,113,95,94,103,103,79,108,88,97,110,93,91,94,101,92,99,98,88,102,96,92,97,102,97,103,98,114,106,109,103,95,91,94,101,103,86,98,93,93,94,103,103,94,101,82,117,112,102,101,110,98,107,97,108,95,102,91,109,104,94,94,109,100,92,104,101,100,97,104,97,99,92,88,97,111,105,91,96,100,83,84,88,108,99,97,108,100,104,104,96,118,113,95,99,107,100,97,100,88,101,98,107,98,93,96,100,98,89,97,95,87,91,107,94,111,102,97,102,92,101,99,101,87,101,91,83,102,117,94,96,94,105,104,98,104,99,101,106,97,100,98,109,106,92,79,94,95,95,100,101,106,93,100,101,91,92,81,104,120,104,91,98,94,93,93,108,85,106,99,103,107,96,103,96,109,85,94,90,91,100,103,104,93,94,86,95,100,92,95,97,100,91,109,90,104,105,103,107,105,106,95,96,103,87,92,80,106,104,103,92,108,98,95,106,91,89,98,86,94,97,101,98,91,94,94,95,102,97,97,80,98,87,106,103,90,107,109,100,110,93,96,93,113,107,109,98,93,98,96,106,99,105,104,94,91,77,98,107,104,99,92,91,103,104,103,102,106,92,96,91,78,96,97,100,102,92,113,129,106,103,102,92,106,104,99,99,98,94,101,102,105,112,103,118,111,85,94,100,107,109,96,104,97,101,101,108,99,90,99,94,93,93,99,97,98,105,95,87,89,101,92,110,87,102,113,105,111,120,73,87,110,96,102,97,95,102,97,98,111,99,92,92,100,108,106,99,93,87,105,101,100,93,95,103,96,99,106,113,88,90,94,105,91,104,107,97,91,104,96,90,94,94,106,100,98,83,103,96,105,111,87,107,100,106,100,106,91,116,109,106,85,99,94,87,116,105,75,91,102,105,104,109,68,95,104,95,85,106,98,108,102,88,84,86,98,89,109,101,103,98,93,106,98,94,88,99,99,100,111,111,86,93,100,97,98,88,104,112,91,83,105,106,100,97,101,91,108,103,112,77, +724.15894,112,91,86,89,93,83,87,130,93,93,104,94,86,95,67,93,90,99,119,99,96,104,96,102,92,117,98,76,96,88,81,84,112,96,100,84,95,98,96,94,89,93,106,68,94,116,87,107,99,91,106,80,94,89,90,85,120,87,94,95,86,96,98,86,105,110,90,83,89,87,99,104,96,96,94,97,84,97,118,93,102,97,106,103,102,96,101,95,101,99,104,95,98,96,102,98,82,103,84,97,97,95,93,80,87,96,95,101,106,104,103,81,100,94,98,97,87,104,99,75,103,107,99,97,99,101,101,88,114,92,93,107,96,95,101,81,89,96,94,78,95,98,88,77,86,99,121,102,97,101,90,93,98,76,94,91,92,70,118,89,82,95,97,91,96,111,110,97,95,99,86,98,96,106,94,89,105,92,94,108,78,95,105,69,80,84,90,91,95,98,106,101,87,94,100,106,98,108,104,108,103,91,99,94,97,88,94,98,87,101,95,86,86,97,103,93,91,96,104,91,110,91,91,105,99,93,96,91,97,93,74,89,96,104,81,90,105,107,92,103,92,94,109,98,91,95,95,100,95,98,100,89,99,101,100,106,97,96,89,97,95,87,110,91,93,94,95,94,79,108,93,95,96,97,100,98,87,102,103,89,88,91,96,114,87,94,91,96,102,104,98,95,109,88,101,99,107,93,96,101,94,105,91,101,101,98,118,103,110,106,85,97,95,99,97,92,96,97,105,104,93,104,99,99,95,79,94,83,100,97,99,96,119,86,92,100,95,95,103,89,97,100,96,104,90,99,91,111,98,89,99,106,92,106,71,83,96,99,94,109,89,95,82,91,58,97,99,88,96,103,94,91,95,106,101,83,105,96,97,98,88,104,88,101,95,68,84,95,89,93,84,96,101,96,94,98,101,97,106,93,87,98,97,107,99,86,85,103,85,98,96,99,94,103,100,93,105,91,90,89,97,94,94,87,91,84,97,103,95,101,93,89,100,102,107,108,83,98,94,91,97,96,96,100,94,101,88,90,96,98,104,92,98,97,116,94,95,94,98,101,104,91,96,111,105,99,90,85,95,84,89,95,88,106,107,97,90,92,94,88,104,93,109,100,85,98,93,97,87,96,88,104,108,99,81,106,97,96,99,100,89,115,105,98,98,103,92,120,87,90,107,95,96,99,103,99,95,87,95,111,87,98,109,99,90,94,110,106,96,89,92,95,100,121,94,101,119,98,100,99,97,113,94,87,105,90,109,97,90,96,101,86,103,104,99,90,102,89,92,90,119,94,97,98,109,93,87,95,92,93,99,107,93,100,86,101,97,118,85,101,86,83,96,88,92,83,103,104,95,96,90,94,101,90,104,104,100,82,104,96,89,97,94,104,98,95,97,69,98,96,100,87,102,89,101,89,113,88,106,102,96,90,100,100,103,97,84,107,108,100,86,100,72,93,95,104,100,93,98,112,96,112,108,96,105,88,89,108,97,99,91,95,88,86,67,108,98,84,96,90,99,92,96,99,94,92,104,103,109,105,88,103,97,102,93,87,101,100,102,95,96,98,87,98,88,104,103,97,96,108,103,88,80,90,93,107,94,99,92,91,92,113,88,94,92,105,103,97,102,101,96,96,102,77,93,85,96,89,93,113,93,98,96,103,87,94,102,96,109,81,101,109,93,82,93,95,95,92,106,91,96,87,97,101,94,106,105,106,97,91,98,88,99,97,94,102,102,92,99,96,92,98,96,87,89,90,94,95,86,103,101,87,115,95,93,89,98,104,113,93,91,86,102,99,87,98,97,94,95,100,98,97,91,98,95,90,105,98,97,102,104,93,109,93,87,76,91,98,99,90,95,101,99,103,94,100,99,99,92,95,107,103,96,100,114,101,114,104,93,101,103,96,98,113,87,105,101,91,91,98,96,109,89,104,90,58,95,98,103,91,97,84,103,75,99,105,95,96,87,100,99,98,106,102,86,84,104,92,105,97,106,100,92,95,88,90,99,95,108,99,84,95,94,107,92,101,97,111,94,87,101,91,104,104,99,98,99,107,100,101,98,94,92,90,93,88,98,93,90,101,97,117,100,102,112,95,82,102,93,112,96,116,99,100,93,80,102,103,86,102,98,92,101,116,104,109,102,88,94,104,100,95,92,104,92,106,89,94,95,104,93,83,97,101,99,100,98,95,92,105,98,96,105,94,94,91,99,99,89,100,89,95,99,100,98,105,94,88,84,103,123,99,91,99,97,96,96,84,96,100,95,98,94,96,98,97,103,100,104,98,103,101,99,98,98,96,90,83,90,98,91,97,70,103,91,96,112,92,107,92,91,98,92,95,99,97,105,95,96,94,89,103,101,94,103,86,89,98,96,108,106,76,95,92,84,79,88,93,97,95,104,94,92,102,107,75,97,96,93,101,95,102,111,106,101,87,101,99,102,95,92,94,99,115,104,93,99,93,97,99,99,103,103,59,101,113,100,105,88,108,94,104,122,87,102,91,107,95,105,96,85,94,107,88,102,99,92,96,103,100,78,103,99,111,84,102,101,108,105,90,98,104,99,90,91,105,97,100,99,92,98,93,87,101,93,87,90,99,87,90,104,93,100,101,90,122,103,91,104,109,103,94,96,94,106,101,97,99,98,102,90,92,100,94,96,90,98,102,102,108,100,105,95,102,99,98,96,95,102,95,98,83,96,104,95,106,99,107,98,97,101,105,87,101,106,100,97,82,93,100,110,101,105,93,106,96,92,93,95,105,89,93,103,107,102,100,94,101,81,100,96,111,98,96,102,100,99,94,99,97,83,112,84,106,100,105,92,105,103,100,92,123,106,84,113,104,96,115,101,93,96,101,121,100,90,99,101,93,91,98,98,91,96,105,112,87,91,113,79,111,114,86,92,107,101,108,101,112,93,116,104,103,104,108,107,105,106,105,84,110,96,112,91,93,92,98,111,87,107,111,95,92,83,91,91,95,94,95,92,90,96,104,96,95,103,101,105,93,107,106,102,113,94,95,95,101,116,117,82,100,102,98,100,93,105,103,97,97,95,89,95,87,102,100,105,93,96,104,103,112,97,113,102,98,91,102,96,119,106,106,96,104,90,90,102,95,112,120,103,91,92,98,96,108,86,90,90,98,105,93,103,108,109,81,91,103,85,93,97,99,102,95,96,105,93,99,103,102,98,122,99,97,99,113,104,118,107,105,94,97,103,99,102,111,94,90,99,90,115,93,104,108,109,93,90,101,108,112,106,83,100,105,109,93,81,102,92,99,102,101,95,98,94,101,93,90,95,100,94,101,95,93,94,102,95,110,100,104,109,108,105,107,106,103,98,96,91,95,101,93,89,104,97,113,101,101,109,99,100,106,90,93,84,92,86,98,86,102,106,91,104,95,108,104,94,99,100,102,86,95,104,100,98,78,87,94,93,84,108,96,97,98,89,91,110,111,100,81,97,111,89,107,103,101,106,99,109,97,97,86,113,95,98,99,100,96,101,83,104,79,107,106,96,97,104,92,93,120,108,107,104,100,91,89,91,88,82,110,92,90,98,104,114,87,107,103,95,84,104,97,104,94,96,98,100,108,92,99,104,96,94,90,103,105,92,97,93,84,97,109,94,106,103,102,93,115,96,112,95,99,96,94,78,92,90,95,109,110,90,94,100,99,100,104,95,100,91,87,101,85,98,99,93,103,90,90,98,101,86,99,100,108,103,98,99,99,109,109,93,94,107,100,83,124,101,95,101,117,95,104,98,91,108,94,93,102,110,98,102,100,102,85,99,98,109,95,98,97,109,101,95,102,101,97,96,96,106,92,93,102,99,106,113,69,84,109,95,97,72,95,86,109,109,104,106,88,99,99,91,99,109,98,106,97,93,108,94,88,75,102,87,107,87,97,102,87,98,86,113,96,91,81,87,100,90,100,98,87,87,109,100,100,112,99,93,98,109,103,104,87,92,103,94,100,99,101,100,102,96,101,83,99,88,95,95,91,101,95,91,100,97,90,105,99,103,100,103,105,102,95,102,95,97,103,94,103,114,99,102,92,91,104,103,100,98,91,64,90,98,95,94,91,100,93,109,67,102,92,105,107,90,92,94,105,108,109,94,107,89,80,102,95,90,110,96,99,109,83,100,94,92,107,104,95,101,97,88,99,93,105,92,99,84,97,98,108,91,110,97,102,102,113,108,98,102,106,96,100,102,103,111,105,96,89,108,109,103,121,103,104,99,105,92,93,76,88,114,113,71,103,97,96,116,94,91,100,87,89,100,105,92,97,108,99,98,97,112,105,100,90,104,98,101,99,105,89,92,99,101,109,91,102,112,121,95,87,109,100,93,124,110,99,99,91,91,104,91,101,107,100,94,105,102,110,84,87,95,103,90,98,88,108,97,105,99,106,91,101,110,91,85,96,95,87,110,102,96,110,105,96,107,97,92,97,103,106,106,93,103,94,107,98,109,105,105,87,100,108,92,109,104,120,99,92,104,85,93,102,94,104,97,73,89,97,99,94,97,106,97,101,87,98,101,97,97,108,120,103,99,100,107,95,102,98,108,93,104,106,100,104,96,105,97,97,98,95,98,94,100,89,100,86,96,90,102,90,105,88,107,103,94,97,100,120,93,98,101,96,82,105,101,98,102,97,90,91,101,109,99,121,96,96,96,91,102,98,105,89,90,104,95,89,101,93,109,93,103,93,102,87,99,113,100,102,94,100,110,107,88,108,95,103,76,94,111,104,102,100,105,98,101,95,90,111,82,103,95,108,98,103,97,97,102,98,107,94,91,94,84,117,113,113,95,84,105,101,97,85,99,104,101,98,103,92,105,84,98,106,98,100,97,76,93,94,82,100,90,99,77,96,105,88,89,105,83,88,99,77,104,102,91,76,99,113,101,94,90,102,90,108, +724.30035,97,96,98,92,91,104,105,88,91,91,89,104,86,112,95,100,102,110,107,102,82,90,100,96,99,94,99,79,86,98,106,99,109,96,107,93,88,102,104,93,103,85,87,95,105,107,95,92,99,105,109,96,98,91,110,101,109,105,111,93,108,105,96,95,97,112,97,100,95,90,96,83,98,110,91,93,101,94,100,103,101,104,66,101,93,80,109,112,98,90,103,96,97,94,98,98,110,89,70,79,105,93,91,98,97,88,99,99,90,91,91,92,96,91,86,101,104,97,111,95,113,80,100,103,106,102,96,103,104,106,98,101,89,110,101,96,100,100,102,95,104,99,81,88,97,105,93,102,90,90,99,107,97,79,95,91,94,102,101,107,100,96,86,88,87,94,98,91,100,90,96,104,91,100,100,106,105,85,100,99,89,95,101,101,97,112,94,91,95,94,94,95,108,102,101,91,98,95,92,105,76,105,109,96,90,95,96,91,103,100,106,86,94,106,95,99,81,109,96,106,109,110,99,86,95,107,91,110,98,91,101,95,96,99,100,106,100,91,110,113,105,96,95,102,94,96,101,75,105,105,98,104,104,90,94,97,96,107,90,98,94,91,87,106,108,109,97,99,128,99,99,97,110,95,92,95,84,97,106,94,109,95,95,95,116,100,103,100,93,93,97,94,96,99,100,96,95,103,90,101,87,95,99,93,82,101,97,106,106,122,97,108,108,98,103,90,109,97,93,102,102,90,103,95,92,98,95,94,102,95,108,109,109,94,93,102,104,97,97,90,88,88,89,87,96,104,102,106,95,97,101,99,90,105,91,96,101,103,100,96,95,92,86,97,98,65,102,104,96,100,106,94,106,91,103,97,87,92,104,101,91,98,88,102,88,85,101,102,94,95,92,94,86,96,97,93,99,90,98,93,94,110,97,92,114,98,90,97,95,105,89,95,95,100,98,91,96,93,104,91,86,98,100,100,105,94,96,98,101,102,85,93,102,95,93,99,98,102,88,106,100,106,102,109,90,106,90,100,101,92,89,88,101,100,84,116,87,85,103,88,93,99,108,98,116,106,91,92,104,94,90,118,92,102,101,95,91,104,95,90,91,96,97,98,95,91,104,99,97,97,111,102,95,108,71,92,99,99,114,96,100,94,96,98,106,96,98,104,102,98,99,101,96,87,93,112,100,92,114,95,97,97,101,95,98,100,118,99,93,99,79,98,103,87,107,80,95,95,109,99,104,103,88,97,100,98,110,94,109,93,96,102,105,92,82,73,85,86,95,92,93,92,92,81,97,79,107,107,102,104,86,91,94,98,93,87,100,100,87,116,100,93,107,100,102,98,75,97,98,100,97,101,101,87,104,102,87,98,101,103,97,105,100,97,113,103,101,92,96,107,108,98,94,102,90,98,91,113,105,96,91,112,98,90,99,92,95,110,106,96,99,113,96,103,81,103,94,114,102,99,99,106,95,98,103,101,92,87,97,101,105,107,94,109,101,100,101,98,110,101,94,97,100,100,98,101,75,91,110,90,113,98,97,92,90,91,93,100,88,104,114,97,95,92,96,94,95,77,79,91,98,99,70,105,105,90,105,91,102,97,100,86,95,82,94,108,106,105,96,105,112,97,99,100,104,96,101,94,105,95,94,95,88,106,94,101,88,97,79,96,101,104,89,84,91,87,102,87,91,94,116,105,97,96,101,103,93,98,101,99,111,104,104,107,107,99,102,101,104,92,92,90,101,92,90,100,87,95,111,83,91,96,105,110,97,94,98,87,111,100,99,108,105,87,97,106,98,80,99,98,107,100,98,97,68,99,87,106,93,110,102,94,93,101,110,97,99,97,98,91,107,105,97,99,96,97,126,99,105,95,91,97,108,108,90,98,98,98,95,96,96,65,103,91,104,93,102,96,100,87,86,105,94,92,103,95,98,91,94,94,100,106,88,106,108,100,113,96,109,105,99,98,105,110,87,96,90,101,104,100,104,107,100,108,96,98,68,88,104,105,97,103,105,87,98,95,101,91,91,99,93,91,92,108,94,103,97,97,99,107,86,105,101,100,100,109,92,98,97,89,98,99,99,93,99,106,86,99,97,105,86,95,113,96,92,91,112,99,97,96,95,93,94,88,105,97,102,98,91,88,100,100,105,89,78,99,104,96,97,102,81,110,100,74,106,100,90,96,96,99,101,95,92,93,99,98,92,102,102,111,96,108,96,96,79,103,108,82,99,95,100,96,104,88,94,85,84,104,67,96,102,103,102,86,100,105,93,90,98,94,104,84,100,104,101,105,95,100,98,87,102,98,90,99,91,100,97,104,95,92,110,98,101,91,91,107,86,101,110,96,95,110,108,96,91,94,100,108,80,124,99,99,84,112,100,101,102,99,94,95,98,99,98,102,97,98,101,97,98,106,82,100,108,101,86,98,90,107,96,94,89,99,103,91,85,100,106,90,97,100,98,105,88,102,66,97,93,103,102,104,100,89,105,91,92,96,106,102,108,94,101,97,103,86,110,107,111,97,92,103,84,99,105,99,101,106,100,104,90,99,93,93,95,89,100,102,100,105,101,85,90,111,112,85,101,111,90,103,90,103,103,99,101,99,96,95,83,94,103,98,114,98,73,99,102,100,97,95,94,109,91,89,98,89,105,98,98,100,99,100,100,94,105,102,103,79,94,99,100,92,112,103,103,91,113,103,99,104,92,101,94,105,102,85,94,73,95,103,90,101,101,101,108,92,96,105,99,83,95,93,95,102,108,98,101,101,104,94,109,97,107,99,102,94,97,104,93,98,90,102,99,103,110,94,96,100,108,94,100,97,99,100,100,91,95,109,107,124,127,99,97,109,103,98,98,95,92,102,89,99,99,97,102,98,114,103,92,108,98,101,119,102,107,95,106,100,97,123,105,109,93,94,101,102,121,98,94,107,96,106,106,95,95,94,114,102,97,86,107,103,104,97,115,109,106,99,106,119,101,90,96,107,113,95,113,112,100,105,96,86,114,96,96,92,105,93,97,117,98,98,113,94,105,102,102,92,106,92,93,119,90,103,102,95,100,89,105,103,111,109,105,112,80,99,95,99,98,87,99,100,101,99,110,105,83,89,104,99,102,100,102,88,87,119,98,96,91,96,102,94,109,101,99,102,94,97,76,99,96,105,90,97,105,111,96,101,96,83,98,111,94,106,96,92,97,111,99,106,94,112,103,96,98,106,87,85,99,90,94,100,101,98,96,85,100,95,102,84,97,98,111,103,96,105,107,90,95,101,86,104,103,98,95,95,95,100,115,108,100,91,111,95,113,108,95,100,98,95,98,101,102,104,93,95,95,96,91,96,99,99,104,101,97,97,99,99,96,86,99,106,100,100,109,104,96,85,94,98,63,90,88,106,97,101,87,111,97,83,102,102,96,104,100,102,83,96,95,104,91,100,97,95,101,95,93,97,108,99,87,63,106,108,84,108,102,95,108,104,99,84,95,97,102,96,104,94,102,104,106,97,108,99,106,100,95,90,94,91,95,102,105,103,97,97,94,95,93,104,107,95,90,105,91,93,113,105,96,97,105,109,107,104,109,111,98,93,90,102,105,91,97,91,97,98,89,106,93,98,87,104,85,91,115,106,96,83,97,93,61,77,95,105,101,100,96,99,96,105,105,105,101,95,98,99,110,91,84,96,93,102,103,103,101,117,98,89,90,97,97,85,98,92,93,101,99,94,98,94,93,95,100,107,96,104,93,100,106,95,86,90,100,97,92,94,101,101,128,104,99,92,107,105,105,98,93,96,106,97,99,99,105,100,101,85,101,101,86,101,95,94,103,94,107,88,93,100,106,102,94,107,93,104,96,110,106,78,98,92,78,107,93,99,107,94,106,95,91,94,91,106,88,102,86,104,102,104,93,95,103,101,101,93,101,95,104,104,103,98,109,99,98,108,105,96,97,95,86,93,105,99,92,111,79,107,96,91,100,84,87,93,95,103,72,87,94,92,106,93,88,107,104,86,78,104,98,96,97,105,119,100,106,100,95,92,97,97,103,90,70,95,101,96,97,100,96,113,91,99,114,98,98,99,101,97,98,93,98,87,93,99,104,90,93,98,102,104,112,111,94,103,102,106,96,110,105,107,106,94,107,91,96,92,100,102,94,96,105,113,101,102,92,100,95,91,112,101,105,78,97,89,98,119,113,89,106,88,104,102,97,111,107,102,107,93,103,95,98,104,106,102,105,79,88,86,105,97,106,113,118,94,95,106,121,97,97,94,111,94,118,95,105,110,103,94,100,90,90,90,96,106,92,97,102,76,87,95,102,98,116,94,92,98,91,100,100,101,100,109,95,102,79,93,91,106,98,87,100,93,104,99,107,105,106,97,96,104,101,99,97,93,105,109,102,104,94,104,97,95,95,109,88,102,94,92,95,109,83,98,100,106,101,101,108,100,100,94,95,99,95,98,103,105,97,99,103,101,97,105,107,99,92,99,90,107,106,100,92,95,99,96,79,92,84,98,96,110,101,105,95,97,100,79,102,97,96,108,108,97,102,84,111,114,98,96,105,95,105,94,85,91,97,98,101,101,87,109,100,87,97,90,87,74,108,105,96,98,100,100,96,105,100,97,94,105,96,99,108,105,104,107,101,98,101,100,99,101,95,102,100,102,120,99,103,102,90,102,99,102,99,99,100,100,105,102,104,102,103,92,91,90,99,139,106,104,94,104,91,96,107,103,92,86,86,102,105,112,97,89,95,95,107,96,112,129,93,103,89,101,111,92,97,99,103,121,90,90,96,100,101,80,105,91,105,103,103,102,106,105,94,103,106,102,92,96,103,97,112,103,99,91,68,92,58,94,104,102,95,98,99,97,99,86,105,98,100,105,105,112,84,85,120,104,109,109,108,91,104,114,104,86, +724.44171,104,96,90,84,95,104,83,102,100,104,106,105,93,107,100,97,98,108,89,107,99,91,87,106,90,99,91,94,97,105,96,102,82,101,102,105,101,94,105,99,95,95,99,106,99,94,116,96,100,100,99,99,94,96,102,91,87,96,113,93,82,94,82,93,103,106,91,108,93,88,115,98,87,95,86,104,82,83,94,99,91,96,98,103,101,94,96,117,92,88,86,96,93,81,90,106,90,109,105,91,99,121,93,93,77,95,101,100,106,102,96,95,101,99,98,111,91,98,111,108,92,108,96,104,96,97,96,94,106,95,111,101,102,96,100,97,113,103,95,99,99,103,98,85,107,93,109,118,93,104,125,91,101,94,86,89,101,102,99,91,94,107,96,95,106,96,110,99,95,108,98,98,102,94,98,109,105,86,74,106,101,107,92,107,102,97,93,88,96,110,102,95,104,95,102,102,102,98,81,102,103,96,97,102,103,102,86,97,77,101,116,86,94,124,104,113,103,110,99,99,97,83,104,104,121,108,94,95,96,91,100,95,97,98,104,98,96,101,95,105,101,101,104,90,96,96,93,106,92,107,91,97,87,112,101,105,93,94,88,93,92,96,111,107,92,103,101,95,91,102,108,88,103,96,105,101,95,101,99,96,98,92,98,89,119,81,109,65,105,94,97,91,100,94,101,99,92,100,101,92,105,97,92,115,92,101,93,112,106,98,92,97,92,95,80,109,81,95,96,99,109,91,100,96,91,91,101,88,97,96,107,98,97,98,110,101,108,96,81,109,96,99,102,86,103,95,111,87,101,96,97,95,109,114,109,100,98,92,98,92,108,92,98,93,86,100,95,93,107,95,106,105,111,109,91,100,107,99,107,89,98,93,105,88,96,90,91,104,109,89,105,93,93,113,95,97,92,104,102,108,104,109,100,100,94,102,96,100,108,87,90,89,103,108,99,99,100,95,118,96,93,94,86,96,97,97,100,95,105,117,99,105,97,109,97,98,96,94,94,92,105,109,91,107,86,108,93,95,110,94,98,87,93,100,93,94,92,87,105,91,95,101,105,108,108,95,107,104,102,97,92,115,95,90,100,119,95,101,101,93,82,96,60,95,96,89,101,100,93,98,98,105,109,96,95,94,95,110,99,107,103,99,89,102,106,96,85,95,96,101,104,97,83,101,92,91,107,96,104,97,100,103,99,93,102,98,106,99,94,93,83,104,99,87,99,100,108,83,102,96,100,101,86,105,100,86,101,100,99,98,100,86,108,93,112,103,99,93,102,94,83,102,92,93,91,91,97,105,95,96,103,89,97,99,90,99,89,110,92,101,90,104,98,97,103,99,108,90,96,93,101,95,99,87,101,107,102,94,110,115,91,99,94,94,94,96,100,100,94,94,101,92,98,103,109,96,96,91,86,90,85,107,99,101,96,96,94,92,101,101,91,102,95,112,92,94,101,93,102,94,98,101,98,111,104,90,116,102,111,100,100,109,95,95,103,115,113,91,97,95,100,98,95,108,98,98,94,88,93,102,101,95,100,106,97,96,107,83,95,103,101,95,101,90,95,90,100,92,90,102,96,118,85,103,95,103,91,113,99,83,95,104,97,106,83,100,99,95,94,104,101,98,105,97,93,93,98,104,92,104,119,99,91,83,96,103,74,106,109,95,92,108,96,102,91,105,99,98,113,96,82,88,92,101,105,93,89,102,96,96,105,87,95,92,83,93,86,74,99,99,101,98,94,108,92,102,90,92,87,105,100,96,92,95,100,109,90,94,60,101,89,106,99,92,100,106,101,102,97,101,101,100,95,95,89,109,92,110,100,114,93,96,99,83,87,118,92,95,91,99,92,84,101,113,94,94,103,101,106,88,96,108,101,97,101,109,114,89,99,113,92,90,102,91,96,83,104,103,96,110,101,96,93,109,103,91,103,91,96,95,100,93,100,112,92,100,99,93,101,106,97,78,91,106,91,89,99,90,105,105,102,114,99,95,95,78,61,96,95,97,99,93,105,93,95,99,95,101,105,109,91,105,97,101,96,101,100,121,103,99,106,103,110,90,77,109,102,93,99,103,96,95,106,117,102,103,94,115,104,93,101,98,101,103,96,90,102,105,95,122,89,106,113,93,106,87,90,97,67,103,101,103,90,90,87,83,109,106,101,94,92,104,101,101,107,101,105,96,95,96,107,110,99,106,101,103,88,95,96,94,104,101,92,91,95,100,110,81,94,105,101,99,99,108,104,94,97,89,102,69,95,99,106,69,106,92,80,93,119,98,100,112,92,102,109,102,99,96,83,103,92,93,94,100,92,111,106,107,96,117,107,74,102,97,104,100,108,92,91,90,108,96,96,105,100,94,93,98,97,95,107,102,100,95,98,93,103,104,96,96,93,97,93,86,89,100,99,94,89,96,103,106,109,101,89,92,85,97,87,100,94,111,96,120,110,97,103,93,96,96,116,96,89,108,100,101,105,85,105,99,98,107,96,91,80,100,93,96,104,102,99,99,104,94,76,112,97,110,103,86,115,116,96,97,96,111,93,88,86,105,89,98,104,101,91,96,88,110,103,94,98,95,91,95,95,104,94,103,107,94,99,100,102,108,97,96,108,100,106,92,107,102,106,97,98,93,96,96,97,95,102,90,106,95,93,113,91,94,113,87,83,89,78,113,105,95,102,100,102,91,95,95,102,102,103,109,96,94,105,95,105,96,95,101,83,93,95,97,96,86,104,115,96,91,118,102,91,99,97,100,98,103,108,97,118,109,97,105,90,98,94,116,110,97,99,102,100,112,104,100,96,103,112,102,99,96,101,100,120,102,85,99,110,98,83,95,90,105,101,81,87,95,98,95,98,103,97,108,91,107,102,91,94,104,96,104,92,89,98,113,107,105,102,101,104,95,92,95,91,102,98,119,98,96,108,97,87,101,92,107,95,94,96,96,109,83,98,96,85,102,104,105,99,104,91,68,79,100,109,97,87,87,91,100,100,100,104,84,97,101,102,97,97,100,100,84,98,101,101,91,90,83,91,96,101,89,101,95,95,99,92,111,105,102,100,103,102,88,113,91,93,100,86,106,95,87,109,102,96,94,91,110,92,94,107,95,92,104,85,107,98,101,106,94,100,105,89,97,111,95,96,83,93,91,96,92,102,111,81,93,94,100,98,97,99,88,93,84,101,104,88,89,99,94,98,100,94,108,97,92,101,95,97,70,93,94,100,63,94,104,88,103,97,88,102,100,95,95,100,83,103,97,109,100,106,88,90,97,109,88,88,90,83,99,89,87,91,94,82,100,104,100,109,102,77,107,107,102,115,90,96,100,109,96,91,98,91,88,97,99,88,114,93,92,104,105,105,96,102,103,86,80,92,101,100,102,78,102,98,92,106,91,98,99,94,85,98,98,87,96,84,98,97,96,99,102,95,93,88,106,92,106,91,107,103,90,102,87,92,100,95,101,96,96,98,93,115,96,93,89,105,89,98,97,97,109,100,91,95,90,104,103,101,103,94,89,110,104,91,97,91,110,95,111,100,105,89,106,101,85,96,98,95,95,92,97,104,90,99,95,99,90,101,102,113,99,97,100,103,102,102,117,101,105,79,108,96,93,84,104,91,90,108,91,103,93,109,99,96,116,102,97,94,97,98,77,105,96,98,109,90,108,82,111,88,101,96,103,100,102,95,96,99,100,97,94,102,96,104,95,91,110,109,97,103,89,113,96,100,87,117,102,103,92,105,92,104,105,92,91,98,84,95,117,96,101,96,102,102,117,105,68,97,105,100,100,113,92,104,96,92,102,91,93,97,98,102,104,91,95,73,102,101,102,106,105,104,96,81,104,93,115,105,91,90,104,104,81,100,91,112,105,106,111,95,106,101,101,87,102,110,92,88,96,102,99,99,88,97,87,102,90,100,109,94,98,101,98,99,109,95,109,76,96,99,102,105,93,106,91,113,104,97,98,96,96,101,88,90,99,99,100,109,95,98,104,108,88,95,102,103,101,94,99,101,91,93,90,95,107,114,99,85,104,94,105,96,100,105,97,103,110,97,109,97,107,99,100,95,100,108,91,106,88,94,101,99,94,93,94,108,101,108,74,91,97,91,120,91,104,98,95,112,115,94,103,112,87,91,102,93,104,72,120,101,92,102,99,92,92,114,100,93,97,105,92,87,115,92,94,99,116,98,110,91,109,86,95,99,93,102,103,110,96,106,113,126,102,105,95,96,92,100,106,88,90,99,97,90,81,100,94,99,87,111,105,99,104,106,84,98,108,107,93,109,87,91,101,101,98,91,107,93,89,111,87,97,93,93,108,97,102,96,107,96,91,85,103,88,92,107,88,104,87,92,88,110,100,101,109,86,101,107,107,104,103,103,101,92,105,105,103,96,96,97,94,95,100,79,88,95,99,78,92,103,90,93,90,108,98,109,116,81,104,101,90,99,107,92,108,96,94,101,77,100,99,98,83,113,93,91,96,92,71,102,92,95,94,102,103,93,101,76,104,115,94,103,102,92,96,98,98,93,88,107,90,84,127,97,103,97,100,106,82,102,107,110,100,101,98,93,101,112,88,95,115,98,102,94,95,94,96,118,90,65,85,86,104,89,82,90,101,99,115,95,103,105,91,100,97,89,95,109,104,100,92,81,89,107,102,98,94,98,99,101,95,105,65,101,106,87,108,116,104,89,92,93,106,103,95,93,101,120,109,91,105,106,101,104,90,92,100,99,98,102,87,97,99,123,101,103,103,101,93,100,109,91,115,98,104,93,108,83,98,97,94,104,71,81,98,106,66,115,88,78,101,100,98,100,90,104,97,77,105,104,108,114,113,86,98,100,107,95,98,88,114,89,92,102,105,108,92,107,109,96,98,96,98,107,83,92,94,88,90,96,91,109,98,105,84, +724.58313,105,106,80,92,92,109,83,101,107,104,106,91,85,110,105,105,101,103,103,90,91,97,97,94,86,105,112,77,95,99,98,92,90,106,105,106,91,89,83,76,104,96,98,116,97,106,99,123,91,122,104,99,94,102,104,87,97,88,109,88,98,101,79,93,91,95,98,102,91,90,92,104,100,101,90,102,96,91,97,91,108,121,88,102,89,91,109,98,99,105,97,101,94,102,93,99,102,101,94,101,105,111,103,93,92,89,102,104,91,95,103,106,103,104,90,111,93,113,109,94,91,98,105,96,95,100,122,106,89,100,91,110,89,123,101,100,96,95,93,111,92,99,94,84,100,101,95,90,96,87,92,99,100,91,102,92,103,92,103,100,94,95,104,100,101,105,94,98,84,87,107,93,97,105,91,101,98,80,99,87,106,98,106,78,86,96,82,94,98,97,94,90,97,98,102,100,96,108,91,108,105,105,89,83,94,99,109,102,84,103,92,83,95,101,95,102,114,95,97,104,97,83,88,104,96,92,94,98,101,89,95,96,107,97,102,99,84,95,92,95,96,98,99,95,95,96,100,101,92,126,95,94,107,108,99,121,92,88,96,91,102,100,95,92,94,85,101,107,104,77,86,105,88,97,101,87,102,112,87,74,99,100,97,100,94,99,92,99,95,92,87,91,101,97,91,91,98,100,97,92,100,106,93,99,99,92,93,100,122,106,87,100,84,94,103,97,102,98,105,99,98,88,100,94,98,104,93,95,94,100,98,92,91,99,96,102,101,103,97,96,86,97,103,97,98,96,104,103,109,92,97,111,109,90,93,93,95,92,94,106,91,87,100,102,95,98,95,92,97,108,95,94,90,101,95,100,112,102,89,91,103,99,87,91,97,107,104,79,89,86,93,90,95,97,96,105,99,94,105,95,96,98,91,92,97,102,97,115,99,91,90,79,105,99,115,92,92,101,93,91,89,88,98,98,88,90,94,97,101,100,99,103,94,90,92,105,97,103,95,91,88,90,100,105,103,96,103,94,93,88,90,97,100,105,88,63,88,99,93,106,105,107,99,100,99,105,98,96,107,104,94,100,99,101,98,104,97,109,99,89,91,104,81,99,97,114,97,99,92,101,100,99,114,97,81,102,92,96,70,91,93,97,106,98,89,107,91,92,93,99,112,98,93,106,91,99,100,95,89,99,71,106,100,95,92,98,97,64,104,111,92,101,90,105,97,88,96,119,100,102,88,103,88,93,99,100,96,87,97,87,99,83,101,96,96,92,106,82,89,102,101,101,93,99,90,96,118,92,92,103,93,93,87,96,98,96,95,102,96,105,101,92,98,95,97,109,102,100,111,102,99,100,96,86,97,77,90,98,105,110,89,100,99,94,84,94,102,105,100,109,91,104,95,106,102,86,98,75,100,97,103,95,98,96,107,100,93,97,98,107,88,97,101,102,105,95,107,99,100,100,111,91,99,97,97,105,95,101,101,96,96,109,96,102,102,111,100,111,100,93,106,108,85,97,93,99,105,95,101,99,97,93,95,89,90,93,107,105,105,91,105,93,101,104,91,104,95,102,104,88,93,97,95,109,92,97,98,89,92,97,91,92,94,100,98,91,93,100,83,91,98,105,95,109,96,96,95,99,89,93,102,97,94,116,102,92,96,93,103,94,101,89,97,98,99,94,94,90,100,111,94,90,91,92,93,97,102,86,111,98,100,100,104,94,91,100,95,88,105,102,103,107,96,107,98,93,86,91,72,98,100,95,103,87,107,96,96,85,97,83,101,109,91,108,97,112,100,96,89,103,106,98,105,98,90,78,96,108,94,89,94,102,89,92,101,87,98,95,102,102,97,106,113,95,92,107,105,101,79,99,95,97,96,110,103,92,99,94,101,99,96,99,92,115,85,105,111,92,99,98,97,100,92,105,88,95,100,82,91,81,82,98,97,98,96,106,97,100,87,100,103,117,108,84,88,86,93,93,96,112,94,114,76,96,98,105,100,101,92,106,94,91,94,97,92,96,89,91,102,96,105,95,99,94,96,79,97,93,98,97,101,96,90,96,89,105,90,93,79,100,95,105,95,96,91,90,85,87,94,117,106,103,90,93,94,60,93,96,85,72,90,102,104,101,89,95,96,94,97,94,106,93,97,102,97,94,93,98,100,90,91,108,108,107,102,104,90,97,97,98,111,98,97,96,77,94,105,98,97,95,86,90,100,100,97,94,91,93,99,110,80,101,104,87,82,103,96,102,89,95,117,98,91,82,105,92,82,100,96,91,95,106,98,104,105,99,96,91,94,106,87,89,100,97,97,106,92,105,87,101,101,97,100,95,99,94,98,87,95,76,111,103,95,102,94,94,109,105,108,113,77,88,101,108,64,102,109,93,102,95,97,105,113,97,93,96,90,110,93,94,100,93,98,78,100,90,81,88,86,79,85,92,97,93,96,100,92,90,96,96,98,104,84,96,96,101,94,109,89,108,113,103,113,89,100,98,101,93,106,95,93,102,96,97,98,99,98,106,101,96,92,90,88,93,118,87,83,94,84,89,98,100,108,101,94,93,104,105,105,103,103,98,90,104,96,96,83,106,81,97,96,83,98,101,105,98,103,96,112,94,110,98,97,93,99,100,102,98,101,99,97,89,100,91,93,96,101,94,101,96,88,100,107,98,94,90,97,89,98,87,88,94,104,106,99,101,97,101,99,111,106,96,101,105,98,105,98,89,98,111,102,91,102,91,98,95,96,98,95,96,92,105,93,107,117,68,98,100,106,101,108,128,101,95,90,103,109,77,102,91,99,99,89,94,102,82,104,96,87,101,102,96,93,94,104,105,101,102,104,133,105,96,108,108,107,106,104,99,95,117,99,99,104,102,102,108,80,114,97,108,97,85,102,94,132,94,98,107,110,98,105,103,96,99,101,92,97,96,95,117,88,109,96,104,103,93,100,98,81,102,101,102,78,98,95,102,110,88,72,92,99,107,99,100,106,113,105,92,104,98,120,101,84,112,95,113,109,114,100,93,100,98,100,99,115,96,91,100,97,95,88,96,95,99,94,96,102,81,102,111,97,87,101,91,99,115,94,103,103,102,94,112,83,104,95,102,97,105,99,112,90,105,90,103,108,99,96,93,97,102,104,87,93,97,109,88,110,94,94,105,91,91,102,91,112,103,98,93,105,97,101,94,102,110,105,102,106,102,97,87,88,106,84,97,89,100,104,102,98,102,103,89,90,97,95,105,91,90,107,97,98,96,95,104,115,96,94,98,91,102,104,95,95,106,94,111,103,101,110,100,103,90,104,90,85,100,106,101,102,91,95,109,102,90,96,85,97,93,121,95,96,119,89,76,99,110,105,102,83,100,96,91,95,113,99,92,83,99,97,97,87,101,100,114,103,97,96,103,98,103,105,96,69,106,93,98,103,95,113,102,113,90,102,85,99,81,85,98,89,89,106,107,92,96,94,75,94,95,120,100,87,92,91,91,99,109,98,90,95,87,104,99,93,100,107,100,97,108,92,101,108,101,105,104,100,100,94,91,89,96,97,105,96,95,119,101,95,102,94,105,112,97,108,118,109,101,103,107,90,105,93,105,92,97,94,105,100,100,94,92,97,98,104,106,95,83,94,106,96,95,91,100,97,117,91,115,100,97,93,105,111,95,99,108,107,81,98,97,105,99,95,105,99,93,94,100,93,90,105,88,117,105,103,110,106,98,96,100,104,94,97,93,87,84,108,93,98,98,108,88,88,96,103,96,102,103,98,89,95,105,103,104,84,84,97,95,112,103,99,66,106,104,88,97,101,97,91,102,90,94,101,102,104,105,92,92,99,103,97,100,88,99,92,99,118,94,98,94,84,103,105,104,96,98,102,109,98,93,109,99,109,99,89,94,96,100,105,109,104,105,94,98,112,106,104,93,103,96,99,86,100,89,97,98,104,98,96,98,96,98,94,99,95,106,109,96,104,93,112,93,98,105,104,101,111,103,96,101,83,119,93,95,105,99,101,96,102,103,103,112,91,96,109,87,100,93,102,101,82,101,107,119,95,121,114,94,102,98,110,93,94,91,100,91,104,105,95,80,106,99,98,104,106,88,116,113,101,98,103,112,87,111,105,107,95,105,104,88,90,98,94,117,111,97,97,95,96,97,88,83,101,97,99,87,101,90,102,92,109,95,106,102,96,98,106,100,97,117,102,102,103,101,99,106,96,89,105,100,101,108,101,105,105,100,94,91,111,85,101,97,83,104,96,87,88,107,87,96,95,97,95,97,103,106,83,92,106,109,112,99,98,120,91,106,97,91,95,94,101,105,101,74,97,84,122,97,113,105,96,96,100,100,104,111,109,89,94,93,106,97,102,94,99,106,94,105,102,97,102,94,101,116,106,97,99,95,99,109,105,89,92,91,95,112,111,96,91,104,111,99,98,109,89,113,108,94,85,95,95,93,102,98,97,99,112,87,103,77,97,107,86,98,99,98,102,99,82,96,95,105,95,93,90,91,110,106,83,100,106,100,103,100,108,99,97,103,99,111,102,102,94,99,87,96,83,91,107,108,100,93,95,100,92,102,109,96,119,99,81,94,97,92,95,73,99,112,93,112,86,116,95,98,103,104,97,105,105,100,99,95,98,97,108,89,105,93,111,116,110,91,96,90,99,116,96,85,96,98,96,97,112,101,109,97,98,106,92,96,97,96,104,95,98,97,111,109,100,102,97,103,95,97,99,112,108,91,95,110,106,102,99,104,100,92,90,101,97,115,108,97,102,103,91,98,110,99,101,102,97,101,99,95,99,98,107,101,98,92,100,98,97,93,85,97,97,100,92,97,98,102,107,98,106,109,93,112,89,98,99,99,97,103,105,98,106,96,103,112,94,116,105,100,86,108,109,106,94,93,112,105, +724.72449,105,99,97,90,104,96,96,88,85,105,105,110,96,96,96,91,90,113,98,98,92,106,102,72,94,106,87,124,98,106,110,115,96,91,91,100,98,90,88,95,89,87,100,92,104,98,101,90,104,96,98,128,128,104,109,100,91,100,99,91,105,107,109,94,102,106,93,96,109,92,109,95,99,101,97,104,101,109,104,78,95,109,103,100,103,99,91,106,103,96,90,115,100,103,106,101,114,104,96,100,87,91,93,88,87,88,97,93,104,103,103,102,100,87,90,100,99,100,78,100,112,87,102,113,88,100,96,91,97,95,109,90,90,104,86,90,94,89,94,108,89,103,84,95,96,90,109,98,99,81,106,101,98,95,99,111,101,94,91,97,99,104,103,104,108,93,97,83,108,98,100,96,90,101,99,92,86,92,101,105,95,100,95,104,103,97,100,96,100,90,98,95,104,78,95,90,96,104,110,102,102,100,91,93,92,98,101,103,71,105,89,96,93,99,98,95,91,94,108,113,95,102,95,107,106,86,101,87,100,103,106,98,87,107,102,110,90,103,91,104,89,101,96,96,94,97,96,94,99,106,100,69,93,99,91,103,95,105,108,103,84,107,99,105,100,100,94,102,85,92,74,106,99,97,77,102,95,92,102,96,98,100,108,109,95,110,87,97,114,92,108,94,100,108,90,105,92,93,97,108,93,95,99,99,94,114,104,98,93,106,95,98,109,90,94,97,96,87,112,101,93,100,96,80,90,90,91,99,96,104,96,103,102,96,100,103,91,96,91,100,105,95,93,89,91,110,113,87,99,94,97,86,102,103,96,94,108,92,91,105,84,100,101,93,96,100,93,96,92,101,110,95,103,103,102,98,98,96,94,107,103,82,86,75,100,92,109,95,92,94,100,91,94,89,99,86,95,93,108,95,97,97,91,97,94,94,99,106,98,117,90,84,109,97,98,101,99,91,104,97,93,97,82,92,104,92,98,99,87,112,101,103,103,95,103,91,95,108,81,91,108,86,91,98,93,94,95,91,100,98,98,88,97,107,94,91,102,103,98,96,83,100,113,100,104,103,102,90,106,101,106,100,107,89,104,94,95,82,102,108,95,104,96,101,93,74,72,96,94,98,106,104,96,103,93,91,97,95,95,99,90,87,92,101,91,97,93,95,101,101,99,96,97,105,92,115,102,89,90,89,96,90,101,99,85,98,92,91,104,102,91,92,86,91,95,98,99,91,96,114,91,99,88,86,104,103,91,101,95,61,91,98,97,100,100,94,89,97,86,100,101,101,93,95,103,96,98,100,98,89,83,91,97,100,84,101,91,97,62,101,98,94,103,84,64,110,103,99,96,84,106,91,97,96,102,108,92,88,101,100,94,96,110,106,90,100,99,86,107,119,108,108,92,101,101,85,95,89,99,111,113,99,78,109,111,99,84,91,100,106,95,85,90,82,90,90,110,90,89,105,105,96,95,89,81,90,94,60,92,95,91,107,94,97,101,92,73,97,101,96,104,97,98,124,82,75,107,91,91,96,108,97,102,102,97,98,95,95,94,92,91,96,94,93,88,86,91,99,97,97,97,94,94,104,109,79,102,106,102,83,99,92,98,93,105,97,103,98,97,101,82,103,110,100,86,94,96,99,99,100,105,91,97,105,91,82,108,94,108,92,100,102,100,105,102,102,98,71,109,111,100,98,98,94,97,112,107,102,95,97,100,87,93,95,101,93,91,96,110,85,88,83,100,84,90,100,94,95,111,85,93,88,88,95,102,90,97,96,84,87,105,102,98,98,93,79,99,77,86,101,95,96,107,106,84,92,102,97,100,114,94,82,91,108,91,94,98,103,96,106,105,95,85,93,105,97,88,99,109,98,100,100,96,115,98,91,100,99,100,99,113,108,102,94,104,93,98,96,98,100,84,104,106,97,99,100,101,94,89,97,100,98,91,86,101,110,95,96,94,105,104,98,95,92,91,94,84,101,99,94,93,110,107,97,106,105,90,110,94,97,98,91,104,100,94,97,91,95,96,103,109,103,105,103,96,86,103,95,98,103,92,91,94,94,93,92,93,100,97,97,97,91,102,105,95,79,96,100,88,89,96,91,97,105,98,109,101,91,97,84,91,94,103,92,98,93,99,91,104,97,112,96,88,96,94,93,98,105,90,88,90,97,84,102,112,104,104,91,91,86,97,110,98,99,96,91,115,102,84,86,98,102,97,106,94,100,92,92,99,97,93,96,106,94,86,106,97,97,95,94,92,105,109,95,95,102,93,100,95,93,105,97,99,85,94,95,75,97,102,102,109,108,105,109,100,114,98,96,97,99,100,108,104,98,92,99,97,98,99,85,89,100,108,86,93,103,106,110,85,96,98,100,103,94,106,98,93,85,105,102,91,95,100,95,100,93,90,95,97,89,80,96,92,96,103,108,88,102,107,98,82,103,81,100,91,95,101,96,93,101,102,109,101,101,101,89,107,80,105,95,93,106,106,108,101,96,98,93,93,109,106,93,98,99,96,97,87,96,106,103,95,104,92,95,104,95,96,104,103,100,96,97,100,99,102,120,95,92,94,102,95,98,96,90,93,96,102,108,106,99,109,84,90,87,105,101,98,97,106,87,102,95,101,97,96,99,100,101,91,109,116,100,113,89,98,109,110,110,102,92,75,103,106,101,100,74,104,96,102,84,99,101,108,103,105,72,99,95,105,106,82,113,98,83,94,102,95,102,100,95,102,103,115,98,100,101,106,101,100,105,89,106,92,105,96,91,98,94,90,95,106,109,106,91,96,108,97,85,100,84,90,88,96,97,106,91,83,103,99,99,106,118,101,106,102,124,104,100,99,108,94,101,103,103,95,112,95,100,98,120,104,100,97,109,106,98,102,98,106,96,97,107,109,93,109,96,95,109,92,107,101,108,98,90,104,94,103,105,99,94,99,108,103,106,103,106,107,94,110,101,95,109,112,104,103,98,106,101,89,102,109,105,94,103,101,102,94,100,105,100,95,102,91,97,107,89,95,84,106,96,102,102,100,109,107,106,105,96,106,100,93,99,106,91,109,104,107,93,113,98,97,103,101,105,92,100,114,107,98,106,102,99,110,102,101,109,97,96,96,108,103,111,90,99,107,88,87,89,98,104,104,99,89,111,98,99,87,98,95,93,93,93,91,103,96,101,91,93,91,102,97,93,92,102,95,102,86,109,101,97,103,87,104,94,96,108,98,106,106,105,112,103,86,98,86,101,108,104,98,104,109,109,99,109,116,97,95,98,101,99,95,83,92,96,95,109,96,99,108,102,84,98,102,101,95,98,101,93,94,106,94,77,92,127,103,104,102,104,111,97,99,104,108,96,96,102,100,97,106,105,99,100,99,100,95,98,89,96,99,105,106,102,96,99,98,101,107,103,109,98,108,106,95,104,91,101,98,99,95,100,106,104,104,96,99,101,106,91,118,100,98,99,111,93,94,100,105,110,112,101,98,95,96,105,93,96,109,91,103,104,106,111,106,103,109,108,109,97,94,92,109,105,89,86,103,85,105,113,121,101,116,109,99,96,91,83,94,97,104,110,98,101,91,104,100,100,95,97,98,92,94,91,91,100,101,102,109,101,94,107,91,102,99,106,107,107,104,99,73,110,96,86,93,95,92,90,97,87,99,96,104,92,105,108,100,100,96,106,95,109,101,105,103,80,74,105,96,95,96,101,109,92,111,102,100,93,109,95,103,100,98,72,99,95,102,108,96,106,106,103,90,94,95,105,103,99,100,91,102,110,102,96,104,105,95,91,109,92,104,105,100,103,102,108,101,102,103,116,98,99,116,99,101,91,106,91,94,107,100,97,97,111,94,93,101,97,97,91,96,103,96,105,103,108,100,97,91,81,100,105,98,88,101,96,110,103,93,104,102,103,97,98,104,90,103,119,102,96,100,95,107,90,93,94,101,112,89,100,101,97,102,90,97,109,102,101,101,100,95,93,100,116,88,100,90,109,93,94,95,99,100,103,81,105,99,88,96,102,109,98,99,105,96,96,128,102,109,93,95,96,108,103,100,88,105,99,102,92,105,93,104,97,100,106,95,108,94,98,94,88,117,106,101,98,115,105,94,69,102,100,102,91,106,105,87,102,103,93,94,92,112,91,102,101,111,104,100,81,94,103,94,101,101,90,108,96,104,106,97,90,103,96,124,112,96,88,97,108,101,104,103,98,105,90,105,90,73,103,108,72,106,92,93,94,98,113,99,104,111,99,96,93,103,104,95,100,95,95,106,96,110,97,97,105,93,103,85,109,97,99,98,87,101,96,97,98,103,99,100,94,123,106,102,108,102,101,97,102,93,111,96,110,95,95,100,102,100,102,98,103,99,107,113,102,92,105,109,94,94,110,112,93,113,103,111,93,106,120,111,97,99,89,100,101,103,104,83,99,99,88,112,103,101,101,102,100,88,100,102,95,119,107,112,103,121,94,97,102,105,100,94,90,98,95,101,97,68,97,90,93,92,93,96,104,104,107,104,91,99,92,83,101,106,101,87,75,103,103,95,102,102,108,95,105,98,72,102,107,89,95,106,107,97,100,115,93,103,106,77,97,104,89,101,105,94,95,104,109,94,115,100,93,101,97,99,106,98,93,109,95,91,91,86,91,104,110,117,108,96,109,97,97,103,94,93,103,93,92,106,95,90,101,100,98,91,96,102,95,91,97,107,105,110,95,93,90,99,81,95,92,98,123,92,92,103,95,96,98,87,90,105,104,103,120,102,109,93,97,80,102,107,100,105,95,97,107,101,98,103,99,95,88,104,90,100,96,89,117,96,99,96,97,110,99,110,113,114,95,99,98,89,107,105,108,102,95,93,111,109,87,106,77,105,90,89,99,100,94,97,101,106,100,98,103,99,100,106,101,102,101, +724.86591,104,105,94,93,85,76,84,100,101,98,93,92,105,98,105,88,113,105,108,106,93,96,116,94,98,101,91,87,108,108,90,110,86,101,99,102,91,80,95,98,94,96,90,107,89,98,104,100,112,98,93,92,106,98,98,103,107,102,100,106,103,96,89,77,96,96,101,114,100,87,95,75,118,104,99,106,98,88,93,96,99,104,98,110,92,120,104,106,101,88,96,88,102,91,99,112,106,89,102,91,96,109,97,92,98,104,101,110,92,121,93,94,123,98,94,91,108,92,113,102,112,105,109,94,91,115,95,101,100,94,104,102,92,109,105,97,117,104,108,92,102,101,91,98,91,100,101,102,102,103,95,96,99,101,93,98,97,95,116,90,105,99,86,109,96,99,95,105,70,100,95,107,72,88,105,105,102,94,97,100,97,106,93,106,97,90,86,82,90,96,102,105,100,102,103,89,105,107,92,99,101,109,103,99,94,96,96,91,110,92,86,91,112,115,99,93,102,103,93,90,92,104,98,98,83,103,93,111,93,100,92,91,88,91,98,100,93,109,105,116,90,105,107,92,91,102,103,92,109,102,112,89,109,126,96,93,98,98,95,105,90,114,89,102,98,103,92,97,94,96,98,100,89,103,99,104,93,101,92,113,100,91,104,95,101,99,94,105,92,98,103,96,89,117,111,113,98,106,107,82,87,106,107,107,103,118,100,107,106,102,100,101,102,90,92,95,102,103,100,96,101,103,102,75,94,107,96,104,102,105,101,98,103,87,103,105,96,100,107,126,99,115,109,100,103,87,87,100,100,111,108,109,101,105,101,93,99,107,103,111,95,91,86,95,91,129,101,105,89,106,95,103,103,97,108,95,99,90,101,100,100,104,96,105,100,103,106,99,107,98,112,93,95,99,98,93,84,95,97,103,94,103,96,98,100,98,99,87,96,112,110,92,92,97,98,94,98,100,100,97,96,102,90,117,99,86,90,108,87,106,93,100,103,101,106,100,104,87,92,112,99,110,98,100,97,101,96,103,104,97,98,101,90,99,110,92,101,105,105,94,99,92,113,101,108,104,106,105,108,102,101,109,105,100,102,99,107,101,104,96,108,115,104,100,99,98,97,99,105,108,91,111,102,84,91,109,106,94,95,101,101,104,94,93,104,97,101,102,95,109,103,102,108,101,96,100,95,108,89,100,96,106,106,105,102,106,99,82,95,100,122,103,102,97,95,97,98,97,99,102,106,96,97,104,92,98,98,95,99,103,109,89,104,97,105,101,101,103,93,102,101,99,92,104,101,101,98,95,109,100,96,103,100,91,99,90,105,94,99,104,109,93,99,99,97,97,106,106,105,101,100,114,98,94,112,113,110,106,99,110,101,97,104,90,93,94,105,95,98,92,99,93,107,97,97,103,103,84,102,112,100,99,102,98,105,94,97,88,110,84,106,107,104,90,96,95,100,95,102,95,101,107,92,95,87,97,104,97,108,98,98,107,93,103,94,92,106,103,110,105,110,118,96,99,100,89,95,97,99,84,93,92,96,105,99,104,96,99,84,99,96,89,108,94,96,101,97,101,98,108,87,104,92,109,94,108,106,88,85,105,93,95,98,106,89,92,96,103,88,105,74,103,108,101,105,97,84,97,108,88,99,72,101,106,73,97,91,104,88,106,104,104,92,93,100,102,102,107,90,100,109,94,88,93,99,100,103,102,92,87,89,102,102,93,92,110,93,93,101,94,95,104,95,105,93,105,98,105,101,95,106,99,100,100,100,105,106,95,104,97,100,112,103,109,105,98,78,101,104,105,97,98,100,74,98,102,103,98,101,113,85,90,88,93,100,103,110,109,103,105,92,105,88,92,102,100,104,103,99,91,96,116,97,101,100,106,108,95,104,101,90,99,89,104,100,91,99,89,84,98,88,105,94,103,106,104,90,98,93,91,90,90,93,93,94,97,104,101,99,94,108,100,94,99,118,97,93,100,106,93,101,102,106,94,98,104,103,105,77,93,106,97,90,117,89,117,100,101,102,98,99,113,101,93,97,97,99,99,102,104,105,106,95,109,93,108,91,101,96,94,95,88,104,94,101,87,88,104,94,100,110,108,105,104,83,102,88,102,84,99,95,102,90,99,91,106,94,103,97,105,103,92,103,98,92,103,104,101,114,110,99,102,71,105,110,109,94,99,91,87,100,106,105,98,100,97,89,106,89,92,98,86,105,86,96,102,108,96,96,105,89,108,99,88,101,104,102,105,87,96,96,110,103,99,107,95,71,105,102,101,93,93,83,90,93,92,82,101,94,98,101,83,94,100,89,90,89,101,111,100,103,112,99,83,100,101,106,99,105,81,85,99,108,94,63,75,108,101,114,109,92,106,92,101,101,103,104,99,99,91,104,109,107,107,97,102,98,105,109,91,93,80,98,90,98,91,103,97,106,104,96,102,96,85,94,90,97,98,78,98,97,102,83,109,91,99,87,100,107,98,100,100,97,96,87,97,93,92,106,111,104,91,109,96,89,124,101,99,101,102,97,91,104,92,116,103,98,98,88,96,93,102,114,96,105,96,114,105,105,96,104,105,87,95,97,102,115,91,106,100,100,95,101,108,96,99,100,94,107,98,95,103,99,95,93,98,91,95,92,103,99,91,95,110,108,97,93,87,105,91,97,94,101,103,97,104,96,99,99,107,112,105,83,88,100,100,103,88,96,104,113,87,112,100,101,97,95,80,83,98,106,104,99,92,106,92,91,102,100,102,102,101,100,105,105,106,97,101,98,84,95,93,92,95,101,81,101,102,103,100,99,92,100,95,91,93,103,97,96,91,103,101,93,98,87,97,104,95,87,95,97,102,94,98,89,94,95,103,88,98,96,104,102,98,103,96,100,104,116,103,119,103,109,114,102,95,91,100,94,105,104,105,102,88,96,104,97,94,96,102,97,100,101,94,111,107,103,94,99,99,96,110,108,105,84,102,95,101,102,93,92,97,97,99,91,97,103,101,91,90,92,96,90,98,92,104,97,84,94,103,93,94,105,96,108,70,88,91,96,89,86,86,103,89,102,101,97,94,86,97,92,69,88,88,93,85,101,104,100,95,106,92,106,99,100,78,108,88,103,95,100,97,90,107,88,93,101,104,92,106,95,72,95,103,101,94,99,93,99,97,95,102,87,92,95,100,86,89,100,96,112,95,94,88,104,94,99,91,96,87,97,94,98,87,99,94,98,99,93,98,90,99,97,92,100,104,102,98,100,88,93,98,89,110,106,98,95,101,106,98,83,110,81,93,91,94,103,97,68,102,103,97,102,94,92,95,98,92,110,100,92,104,98,90,101,99,88,92,113,93,75,97,92,96,95,109,105,80,95,106,98,98,103,78,93,89,99,93,93,85,125,88,79,95,104,104,91,96,106,101,97,90,87,90,99,80,89,73,99,98,104,71,95,94,101,94,99,95,91,111,98,96,109,98,97,101,90,107,104,87,94,98,87,83,108,101,94,94,104,84,114,100,116,90,97,95,104,96,101,92,98,93,104,102,91,109,94,108,103,102,93,105,113,89,101,80,96,91,104,107,88,81,105,103,92,92,116,98,94,93,87,93,98,99,97,104,87,110,79,101,97,85,94,106,104,91,79,110,98,96,99,102,92,87,104,105,101,111,92,100,94,100,97,88,97,94,104,87,93,92,95,96,103,94,98,102,99,101,96,108,105,98,103,112,90,94,105,95,98,95,97,92,91,94,83,103,105,91,80,101,105,98,97,94,93,92,94,94,95,104,108,91,96,97,91,99,92,92,99,95,86,95,119,92,116,100,92,102,94,94,108,99,102,100,97,102,90,111,96,98,98,103,98,96,97,91,98,101,96,103,105,103,81,98,94,96,101,96,101,84,98,92,88,93,94,87,109,112,87,97,99,98,84,92,92,100,104,75,104,97,118,94,116,87,110,110,94,97,98,106,101,107,92,101,96,98,111,96,91,104,106,100,87,97,97,77,105,92,80,91,96,104,88,100,104,102,91,85,81,99,102,94,105,92,98,100,71,74,104,101,96,108,118,105,104,113,102,79,100,100,95,92,114,87,98,85,97,99,99,89,113,95,88,94,91,101,89,98,109,91,88,90,100,86,95,97,88,94,109,102,91,89,98,99,95,91,101,96,92,107,101,88,82,92,96,102,83,109,93,100,107,98,105,106,84,91,104,105,87,90,99,85,108,87,86,94,105,95,81,94,108,97,98,113,124,92,105,109,96,92,98,88,106,87,90,97,87,106,100,103,104,91,108,83,103,90,106,101,88,96,97,92,87,88,114,92,95,108,116,84,96,92,99,93,96,104,108,96,98,102,97,94,98,93,96,106,101,79,94,95,94,87,89,98,90,104,101,85,101,94,85,108,100,104,97,95,95,104,94,110,97,80,89,103,93,102,95,95,94,93,102,92,91,113,99,114,94,92,107,99,95,105,100,107,106,92,100,110,66,105,93,101,111,103,102,88,61,90,92,98,96,92,89,93,106,95,92,90,90,91,96,99,92,101,99,97,97,98,90,87,94,108,110,94,90,95,92,87,93,99,112,102,98,86,87,98,98,99,91,89,89,82,104,110,92,91,100,98,90,110,92,102,92,90,88,100,88,86,92,80,99,89,90,84,92,84,116,100,102,84,90,89,96,96,106,87,86,90,91,97,100,88,104,103,99,92,113,105,108,102,92,103,95,111,93,93,106,80,78,99,92,112,100,100,95,87,85,88,95,90,100,98,103,94,89,85,85,102,98,88,94,92,107,91,87,95,97,99,92,96,97,96,95,109,93,97,87,100,99,103,89,100,96,92,96,105,101,104,91,109,105,109,98,92,96,84,92,98,96,100,108,96,97,90,110,95,93,103,104,96,92,101,94,87,117,98,102,95,107,100, +725.00726,115,99,93,92,95,87,94,69,95,88,91,89,92,94,101,106,95,104,90,89,90,90,100,105,84,105,84,86,124,116,106,99,88,101,107,98,59,101,93,104,99,101,92,83,107,113,97,90,96,104,104,113,97,84,106,93,95,94,98,94,93,107,108,96,107,100,107,126,97,107,103,117,92,94,97,104,102,110,98,96,98,98,99,104,91,92,108,100,98,90,87,91,91,99,98,80,92,100,110,114,97,100,92,103,102,90,97,95,96,100,100,105,91,100,84,88,90,90,94,116,98,102,93,110,105,118,105,105,100,116,99,96,93,103,100,105,103,95,93,89,103,111,96,99,90,88,98,90,91,89,95,102,105,95,90,114,100,97,90,95,91,98,88,87,87,96,94,101,85,104,93,90,106,96,81,99,105,97,99,102,101,96,97,95,102,93,95,100,93,97,105,105,102,91,87,97,91,97,105,97,98,101,98,101,93,106,101,96,112,103,90,89,121,80,104,101,87,94,98,91,89,75,101,82,96,85,103,100,101,95,110,91,112,95,93,104,94,96,95,105,75,91,95,95,84,89,93,88,78,109,88,114,86,93,84,92,86,86,97,90,77,102,100,87,83,107,100,99,95,91,87,104,110,89,96,94,91,101,104,100,92,101,104,106,111,90,99,104,100,98,101,111,104,108,99,104,99,103,102,104,106,102,99,107,92,99,95,105,86,112,94,81,115,95,99,86,99,109,96,96,93,103,102,110,89,94,89,97,107,97,90,97,116,103,106,96,81,87,93,126,109,92,110,89,93,118,93,100,106,104,113,78,91,86,101,103,102,114,93,103,90,93,109,82,91,99,92,94,76,91,113,74,95,106,95,109,95,99,126,105,98,101,104,95,106,93,88,92,102,66,100,83,98,100,89,103,109,99,98,90,97,82,96,97,99,97,90,96,114,109,97,87,108,101,94,90,96,98,110,99,117,95,103,99,100,89,99,95,95,106,110,102,99,108,78,98,94,110,97,104,106,110,108,106,98,110,107,99,100,112,89,92,96,96,90,96,93,96,95,96,104,93,80,102,108,112,103,90,105,93,86,102,99,88,97,99,92,91,99,99,96,90,100,100,116,95,89,99,97,106,98,105,82,99,91,95,97,101,97,86,91,100,92,97,95,100,95,105,101,99,118,94,91,100,100,87,98,94,84,93,106,97,96,99,91,95,102,103,98,89,92,97,111,102,99,99,115,86,100,109,103,111,89,99,96,86,106,105,104,95,105,89,93,114,106,94,110,96,94,95,98,90,85,94,92,97,114,87,103,87,79,91,83,91,105,98,91,102,91,101,104,93,90,96,101,100,102,105,99,90,103,100,99,99,94,97,98,91,103,96,97,105,104,91,97,104,97,94,96,100,106,97,105,96,97,92,86,90,109,104,105,110,99,96,95,106,91,107,107,107,109,109,91,106,100,96,98,93,107,83,127,97,105,103,104,94,93,94,97,98,92,105,103,105,97,100,111,105,98,94,102,109,107,109,87,102,101,94,81,85,103,102,98,96,99,109,99,87,100,108,102,101,105,91,98,91,104,102,98,95,110,95,93,104,100,100,91,101,99,79,96,84,101,103,99,98,99,100,90,99,99,99,93,92,98,95,97,92,92,102,94,104,116,103,87,93,96,86,102,106,89,99,100,91,97,98,105,99,121,104,99,83,112,94,105,95,106,95,90,63,104,96,100,95,112,99,110,91,96,91,87,97,94,87,91,92,94,97,96,97,95,101,99,87,87,114,90,109,96,87,100,105,96,108,95,92,104,110,95,106,95,108,95,95,102,95,88,105,90,109,93,91,103,97,101,102,96,89,98,91,99,101,96,86,106,100,105,100,93,79,106,103,86,99,87,109,85,89,111,103,106,89,89,101,103,92,105,100,92,102,98,88,66,105,97,97,99,100,101,92,91,100,102,109,90,99,87,97,89,102,98,102,95,90,99,95,97,91,116,99,94,110,99,114,94,91,99,98,89,106,101,94,105,101,94,100,97,100,101,102,101,107,108,99,101,119,94,105,94,110,105,100,86,97,95,99,88,102,90,98,89,107,103,96,99,97,60,94,101,108,106,101,100,99,101,92,101,67,92,95,85,95,104,105,101,113,97,105,109,105,107,96,102,64,90,93,89,104,95,101,110,90,93,99,105,85,95,92,85,98,105,101,97,102,102,99,86,84,97,96,99,82,101,101,90,117,87,94,88,107,89,95,97,94,103,104,104,91,107,101,103,100,90,98,95,94,94,96,108,76,95,99,92,101,102,95,98,100,99,99,101,85,92,105,88,98,94,103,102,95,94,95,105,88,98,94,79,95,97,100,91,105,91,109,92,102,103,95,102,104,105,98,98,97,87,90,91,102,82,87,95,110,90,100,87,87,95,96,94,100,96,103,100,95,110,79,98,99,97,87,95,88,80,100,92,87,98,91,90,98,109,105,108,104,108,112,86,106,107,105,103,115,101,98,94,103,94,84,99,100,101,89,104,96,101,112,93,94,101,101,109,100,83,101,120,99,98,100,101,100,106,91,101,101,92,112,104,108,101,106,100,107,98,93,108,89,96,97,91,104,95,100,107,91,96,97,117,101,107,90,103,102,99,102,95,83,83,107,104,99,100,101,98,95,93,110,109,100,105,101,87,99,110,101,95,99,106,101,93,96,90,83,99,95,90,103,103,106,95,104,91,96,98,87,99,97,99,94,107,103,97,108,81,98,92,108,103,114,106,91,101,112,95,99,100,109,119,106,98,109,106,95,104,93,105,112,90,99,107,107,90,104,104,110,99,90,100,91,103,106,104,88,100,98,87,114,95,105,90,100,100,94,101,103,91,100,89,96,94,101,97,113,91,106,92,96,93,109,94,112,93,103,108,105,104,93,97,97,96,115,104,98,108,104,86,88,109,105,110,79,87,107,105,87,80,94,101,105,102,108,92,95,105,98,95,79,113,102,103,110,112,101,107,105,90,94,102,106,101,99,99,95,103,103,106,107,104,113,100,100,87,97,102,102,105,96,95,99,104,109,87,116,83,93,109,91,99,94,106,91,93,90,110,105,90,90,95,97,105,95,96,109,105,99,102,87,99,78,93,91,97,102,95,110,98,117,84,96,105,98,91,97,95,89,92,90,98,97,99,90,97,112,102,100,97,95,101,97,101,100,103,101,104,109,68,108,107,102,95,97,105,108,101,98,93,100,106,101,97,95,98,98,93,108,93,86,94,97,116,94,95,100,95,107,109,97,69,100,92,105,93,97,88,90,107,93,82,102,100,91,105,92,99,92,102,98,96,91,94,93,105,101,96,100,108,105,103,83,93,100,104,106,107,82,85,98,97,104,109,96,96,102,101,114,92,101,92,102,100,89,104,111,94,109,96,94,88,99,102,98,82,98,99,101,91,99,86,105,92,98,94,96,95,112,90,87,91,97,108,97,107,105,93,101,95,104,93,99,101,98,92,97,102,92,93,76,99,101,114,106,106,102,100,109,100,98,109,94,115,88,106,116,103,100,109,103,110,108,91,96,93,104,99,105,92,109,95,98,91,71,108,102,95,101,101,95,96,98,110,89,91,86,98,107,96,95,101,110,92,95,95,105,98,89,98,87,98,105,105,108,101,97,103,98,93,97,111,102,106,94,104,100,97,103,93,90,80,92,99,93,110,99,91,101,98,99,101,104,106,88,95,98,109,95,102,93,101,91,103,106,98,99,104,96,111,95,95,104,91,90,112,102,104,95,99,101,91,94,104,110,99,93,97,104,98,89,92,91,112,105,103,93,93,99,97,97,106,96,97,104,85,93,96,101,101,91,99,102,94,97,108,86,97,107,101,111,113,108,107,99,100,99,95,108,97,103,97,98,110,95,100,106,110,98,99,107,100,87,99,97,95,97,98,107,104,100,95,94,104,95,94,88,105,101,99,103,99,92,104,87,95,98,96,105,95,90,102,99,94,97,80,92,108,91,93,98,99,99,91,101,93,92,115,98,105,109,95,95,100,101,106,108,99,94,108,103,100,100,102,97,108,89,91,92,99,111,95,98,101,84,105,96,103,89,96,90,95,104,99,102,101,99,94,96,108,108,88,95,97,96,100,83,93,94,103,109,99,100,95,102,122,91,97,105,101,105,110,101,102,104,104,103,88,97,103,105,111,96,87,96,108,91,91,100,99,109,100,110,93,100,102,101,91,95,97,96,95,97,89,113,99,105,86,100,103,98,110,87,96,107,94,92,101,90,100,84,108,96,101,90,101,98,107,91,88,98,101,125,102,108,96,104,108,95,87,83,112,98,101,83,104,95,109,95,107,98,83,102,77,100,83,101,98,96,100,91,113,103,99,91,100,103,103,106,86,93,97,93,100,98,87,102,102,107,84,109,106,107,97,97,107,90,102,104,99,110,96,106,92,86,100,103,101,95,91,99,98,89,97,104,100,99,110,100,101,100,100,84,101,106,100,105,98,102,103,92,93,95,101,113,97,81,94,115,105,95,88,100,98,105,101,90,95,98,98,95,104,102,100,100,95,100,105,96,106,100,96,97,99,91,109,100,107,92,100,90,90,108,99,84,110,87,102,98,90,90,87,119,105,100,100,111,96,95,91,108,119,104,106,111,99,106,98,87,108,102,112,109,101,105,92,94,106,107,96,93,107,106,91,97,102,106,105,122,104,96,120,95,106,91,111,103,97,103,114,104,105,63,102,98,113,94,98,77,101,101,101,96,89,113,107,98,87,91,98,96,87,88,105,101,97,102,109,105,111,102,105,96,108,102,104,111,89,96,94,108,100,125,97,105,92,104,93,98,127,97,107,99,106,99,110,90,103,99,102,101,97,104,102,94,109,113,101,104,117,82,95,122,107,102,86,91,94,100,104,96,97,102,87,90, +725.14868,96,99,91,105,73,103,111,97,99,101,96,94,104,97,88,136,99,79,97,92,121,97,99,92,100,98,81,92,101,101,89,87,98,118,106,99,96,104,110,96,79,93,101,92,100,98,105,103,97,109,81,83,98,107,102,96,95,100,102,105,92,97,110,96,100,97,89,102,91,103,103,91,98,90,83,108,86,86,100,109,94,107,100,110,105,94,101,101,101,97,102,99,96,98,81,100,99,91,97,112,100,94,100,92,87,102,81,91,108,108,96,99,98,103,98,105,103,81,114,89,104,100,104,101,100,114,102,82,106,101,105,103,99,99,95,100,102,99,92,100,100,112,94,77,101,100,110,93,91,92,108,94,105,96,108,98,103,105,98,96,92,99,99,102,91,88,92,98,96,100,101,106,102,97,105,93,97,90,113,97,103,108,86,95,91,91,93,93,113,101,108,92,92,102,80,102,106,80,109,113,93,93,92,123,88,104,94,92,100,91,95,98,104,106,104,99,103,103,88,100,91,104,98,100,99,107,96,91,102,108,100,95,100,83,104,106,91,103,93,95,88,92,102,90,82,89,96,92,102,98,110,104,84,98,91,96,106,100,92,97,94,106,87,96,93,104,92,103,103,93,98,110,102,105,108,103,97,100,104,96,89,93,96,87,87,95,94,91,109,92,92,94,100,98,81,99,92,105,99,98,95,84,100,98,102,107,93,103,81,100,84,99,91,105,109,98,102,97,98,87,90,94,117,96,101,97,93,94,102,96,112,103,105,99,94,101,98,100,97,76,94,109,85,94,92,109,134,104,99,100,97,90,110,94,100,106,100,114,94,92,96,102,96,73,104,94,91,100,87,96,112,106,108,88,96,121,95,97,105,94,96,106,89,93,97,91,103,106,101,104,98,99,99,106,100,102,90,87,101,97,96,101,98,96,93,100,91,96,99,105,96,89,97,89,92,100,102,94,105,107,94,96,91,89,107,97,91,99,93,100,93,109,99,101,98,98,95,96,92,103,94,96,96,90,102,92,91,87,102,102,75,91,97,109,108,92,91,83,109,85,89,96,88,100,92,97,100,95,87,102,108,99,98,89,98,88,97,95,100,104,95,106,104,99,94,89,86,93,103,102,96,102,95,101,109,91,95,93,108,97,105,97,101,98,99,102,85,94,104,83,98,95,89,109,102,83,98,90,100,82,103,94,100,108,92,109,101,101,85,97,97,102,98,100,93,95,107,105,94,109,111,95,95,91,104,93,96,92,101,94,99,102,102,94,99,83,99,87,97,92,91,87,96,105,96,96,104,90,92,87,98,97,90,83,102,106,88,100,102,101,94,105,108,93,87,98,109,103,108,92,91,97,97,93,101,101,89,99,106,107,96,89,88,96,86,94,90,100,103,92,112,103,96,104,104,87,85,97,86,100,86,102,105,96,100,109,98,104,104,95,98,92,102,75,82,96,91,81,102,95,99,101,92,91,97,85,94,96,102,59,94,100,99,104,94,114,100,106,95,97,97,99,105,95,90,86,105,90,105,100,105,104,95,104,97,105,86,95,99,100,99,97,90,98,98,93,99,96,98,106,94,106,92,108,108,101,104,99,87,114,94,94,105,92,104,92,86,92,94,89,100,84,96,96,106,110,111,104,108,97,108,101,94,99,98,92,99,106,92,95,93,102,103,87,62,97,107,96,101,92,94,95,90,95,108,102,92,97,104,95,105,90,94,98,107,94,98,93,83,92,110,104,94,88,90,95,97,92,92,97,97,100,102,100,98,100,108,100,108,99,105,102,108,92,90,109,98,96,87,94,113,92,94,96,102,103,103,96,96,100,97,96,107,97,91,92,91,104,86,94,111,93,102,97,91,96,104,100,91,96,95,101,90,106,95,94,99,93,94,91,104,102,111,91,112,100,115,96,92,109,96,98,103,92,108,91,104,90,81,86,102,93,80,105,97,98,92,113,108,111,94,97,102,93,77,92,97,100,101,112,103,106,91,104,96,107,109,89,89,103,95,105,94,92,98,104,99,94,94,94,100,107,104,101,84,62,98,91,99,108,93,105,120,82,98,108,88,84,93,111,78,94,104,117,103,97,90,103,114,94,97,99,104,95,98,104,94,88,96,101,94,113,100,90,107,97,99,100,94,89,102,99,118,103,92,91,97,94,103,91,95,99,110,96,99,96,91,89,91,95,93,108,94,97,102,99,99,92,94,89,91,98,90,99,98,96,99,93,91,100,104,96,91,86,105,118,105,107,90,92,87,87,84,110,96,92,97,89,91,103,109,93,95,121,88,90,93,95,88,93,96,105,82,103,102,113,91,110,97,102,105,98,103,97,99,100,102,92,91,88,105,93,102,98,91,77,90,103,105,99,90,92,94,105,90,103,106,92,96,92,102,94,100,96,103,92,107,77,111,95,68,111,99,99,114,90,110,92,98,81,84,107,104,102,89,113,93,112,102,100,101,97,102,106,106,101,100,92,101,89,104,101,102,97,99,103,92,109,102,94,93,91,101,108,93,101,85,104,95,98,97,105,96,105,112,96,114,96,99,110,90,96,100,98,92,101,105,105,116,100,84,108,102,95,101,101,105,108,96,77,100,98,108,99,94,96,96,86,107,93,106,94,108,99,96,97,91,107,93,105,113,118,97,93,89,102,94,105,106,87,107,96,100,92,89,96,96,88,102,101,96,104,105,93,108,102,113,110,103,97,97,104,98,101,103,104,101,74,105,105,95,113,105,89,115,102,92,89,92,90,103,92,112,95,100,102,107,106,103,115,112,104,114,95,110,105,100,102,93,98,102,107,99,100,104,92,119,92,104,107,89,96,104,90,106,100,92,110,98,105,99,105,110,95,104,98,82,93,92,110,109,83,97,108,107,102,100,101,100,100,92,100,98,114,96,79,93,97,126,99,94,94,102,92,116,103,106,78,110,95,116,93,89,108,95,94,94,93,76,103,109,105,105,106,97,102,95,109,91,104,112,103,105,89,92,109,97,87,108,101,105,105,99,111,98,94,106,107,84,95,96,95,110,102,95,113,92,99,100,104,101,114,91,99,87,91,106,98,93,95,104,103,95,107,95,102,109,118,85,99,99,103,104,87,110,101,103,86,110,92,85,98,92,97,102,97,86,100,94,107,107,97,96,79,108,93,89,91,109,104,88,93,97,105,100,101,95,82,102,99,88,98,100,103,102,97,115,107,113,84,79,86,94,100,98,94,99,100,102,96,91,103,94,95,100,91,98,107,102,93,99,108,103,106,104,99,118,97,103,87,95,94,90,98,96,88,89,92,120,100,98,89,102,106,95,100,98,103,94,102,105,104,95,100,102,101,98,95,97,95,97,84,92,99,94,107,98,96,101,100,90,107,101,116,72,95,98,104,105,98,119,102,97,102,101,102,93,101,99,120,91,90,88,105,102,98,118,105,103,95,105,97,92,104,101,89,106,95,104,96,102,101,102,95,113,103,89,105,96,103,97,88,110,92,110,109,92,97,107,98,102,94,101,109,107,87,112,100,111,100,95,105,71,101,88,103,92,94,103,99,91,97,92,91,97,104,82,94,97,114,103,110,100,93,112,106,91,104,107,90,101,109,101,106,105,99,94,103,101,101,89,105,117,114,105,114,99,98,104,89,105,108,90,98,120,95,109,99,103,112,102,85,100,100,102,92,98,106,107,103,106,109,93,116,96,86,97,97,96,103,93,102,118,105,104,101,94,98,98,88,89,82,95,92,87,101,107,85,107,102,108,102,95,96,96,103,102,90,109,104,100,101,101,84,110,95,91,102,98,100,106,99,97,107,104,87,106,99,93,97,98,100,100,102,97,84,101,98,105,100,91,93,95,99,76,94,95,104,103,100,93,105,99,93,97,97,105,100,106,97,99,112,95,98,111,107,98,95,94,93,94,93,105,101,98,96,95,96,96,94,98,101,97,94,92,121,94,99,93,105,97,104,91,106,92,98,91,94,103,111,106,94,97,96,104,100,94,80,98,100,92,111,95,102,90,94,91,105,97,97,101,105,103,99,104,120,102,87,104,101,109,100,91,100,103,113,96,109,102,102,102,102,111,102,96,87,99,105,103,107,83,110,91,108,91,128,91,100,89,107,81,106,100,98,98,106,97,95,106,106,98,101,93,100,95,102,101,87,102,105,87,97,99,97,117,98,104,101,105,105,105,91,105,106,100,96,84,110,104,104,103,87,104,107,100,106,100,95,96,104,106,105,91,102,90,100,109,97,99,104,99,105,92,100,101,113,106,96,110,89,112,94,107,98,99,91,97,79,96,103,93,103,106,85,99,95,97,107,97,101,107,98,91,103,115,94,88,104,95,94,92,87,100,99,97,105,101,109,93,100,98,109,101,97,106,87,108,95,98,101,95,92,105,106,90,101,104,94,105,95,80,89,96,93,95,104,91,92,91,91,105,98,102,88,98,101,98,105,98,105,104,109,100,107,96,84,91,103,101,102,92,93,96,98,96,98,94,98,90,87,86,93,94,113,94,94,93,103,111,99,93,87,98,102,83,99,96,108,97,104,105,98,105,100,100,103,101,89,92,91,104,94,105,94,97,90,100,97,99,96,96,90,113,106,106,106,99,86,105,104,93,107,106,94,87,92,95,99,109,102,103,107,105,87,99,102,108,94,121,99,85,103,93,95,95,102,94,84,84,97,97,91,94,102,87,105,110,102,98,102,97,105,97,107,92,84,97,77,97,108,85,96,85,99,99,98,101,94,100,114,113,96,110,109,113,93,96,101,97,116,98,103,96,104,111,73,96,78,98,114,90,100,102,112,95,111,100,100,82,91,101,89,87,125,101,112,98,98,101,97,95,104,88,107,96,103,110,91,107,84,90,103,103,105,98,95,96,88,103,96,107,95,96,74,101,93,101,88,102,90, +725.29004,105,104,108,94,100,97,107,93,93,86,99,99,91,89,101,114,97,93,97,112,95,97,98,105,101,104,93,98,103,94,99,101,95,105,104,93,111,113,91,106,100,107,98,88,96,112,92,97,102,90,102,96,112,101,106,100,108,86,98,101,97,109,89,103,95,102,105,94,99,92,104,105,101,94,99,102,94,106,102,94,106,103,92,91,89,93,110,110,91,93,91,99,124,71,101,103,102,90,93,98,104,77,87,92,90,110,99,105,89,87,107,96,96,94,102,90,105,99,86,98,98,102,101,101,96,106,108,93,103,98,108,110,107,108,94,103,92,101,97,92,103,104,81,121,107,107,106,75,89,93,92,86,100,92,102,94,74,68,86,99,95,113,94,108,109,101,102,97,88,93,103,98,106,62,104,108,96,89,116,89,96,97,93,97,115,96,101,75,91,100,97,92,98,104,96,109,92,97,91,100,101,100,106,103,99,98,105,95,103,109,95,109,101,99,97,104,105,93,90,104,100,87,88,94,98,99,99,102,80,91,98,101,103,108,101,103,114,90,97,104,95,83,84,108,105,104,97,103,94,92,87,94,85,104,105,101,105,98,101,93,92,106,110,99,100,108,95,104,104,108,96,101,102,107,105,103,101,108,129,107,102,88,99,109,99,105,95,90,106,94,96,92,103,89,101,103,95,96,103,103,95,102,103,103,91,109,112,103,95,99,98,100,104,93,89,86,88,89,93,90,96,91,91,106,91,97,91,92,99,116,94,100,106,96,110,98,107,111,91,94,116,106,102,81,103,101,100,95,97,103,91,102,107,106,97,97,102,94,96,88,87,99,92,87,91,91,98,106,94,96,92,102,100,98,95,99,97,105,87,108,98,101,94,104,101,88,94,106,89,102,109,88,105,95,101,107,104,97,99,99,96,95,101,104,92,88,89,101,101,93,100,93,106,104,102,98,111,94,95,109,105,96,75,120,94,84,97,100,96,98,101,85,97,106,121,94,95,98,89,86,98,94,91,98,90,106,97,101,89,99,87,98,101,98,98,95,104,102,96,106,86,96,95,106,109,110,108,91,96,87,98,99,99,98,93,100,94,105,103,108,90,98,107,86,95,100,100,101,89,102,102,89,91,105,97,88,92,96,97,107,104,98,94,101,100,97,76,76,112,93,98,117,77,95,95,100,98,86,95,80,93,96,109,100,91,100,109,93,95,103,94,105,96,98,93,96,100,105,93,100,93,101,96,101,108,103,102,109,94,103,103,101,101,98,101,97,109,82,95,108,107,105,95,95,109,92,90,103,99,93,92,93,103,97,92,98,104,98,95,99,109,99,97,122,107,101,97,88,87,90,96,102,85,101,111,92,101,101,96,94,89,99,101,99,89,91,93,90,94,97,97,96,100,109,120,94,97,103,100,105,92,110,108,97,96,95,98,91,100,104,92,112,91,81,117,105,97,91,107,99,97,91,93,97,98,102,100,90,100,101,97,92,100,101,97,95,87,101,103,101,93,100,92,100,92,106,95,98,95,104,100,110,99,103,100,100,91,104,90,109,105,104,108,100,98,93,90,106,98,99,102,103,96,95,106,99,112,95,112,91,93,97,108,101,95,102,104,103,86,92,103,91,100,91,94,88,88,99,98,99,94,94,87,97,92,96,98,98,94,103,100,103,98,100,99,107,108,96,111,91,91,93,99,94,100,95,94,96,98,109,94,103,105,96,99,95,95,89,102,100,100,97,102,95,92,110,97,89,99,88,100,100,108,100,92,109,98,101,99,105,94,100,109,105,95,98,105,102,97,98,93,101,101,108,102,101,98,92,90,105,100,100,100,103,96,106,94,113,98,95,104,79,103,95,95,91,105,97,99,99,97,104,98,96,96,96,92,104,97,97,95,97,108,96,100,105,92,97,113,99,94,87,101,104,105,96,103,101,89,87,100,83,90,108,85,104,104,87,88,107,102,93,92,107,109,96,100,95,98,87,89,110,113,98,82,100,96,89,107,97,80,99,92,97,94,98,104,109,104,110,96,105,87,89,96,103,94,100,105,114,100,94,114,93,99,99,91,103,99,95,89,108,111,106,136,100,105,103,92,99,97,95,109,96,97,95,100,100,93,88,100,104,97,109,107,96,131,101,88,95,120,102,107,94,86,99,80,91,101,111,101,95,104,99,103,108,100,98,92,105,96,112,88,93,102,92,87,101,120,94,103,102,97,97,102,97,108,101,90,101,105,92,91,87,93,87,94,83,96,96,96,105,98,90,99,90,87,98,99,102,104,121,94,68,105,97,111,98,87,96,97,92,101,100,85,105,95,95,91,92,103,99,99,94,109,106,75,103,103,87,88,103,104,96,106,97,97,113,101,98,92,110,94,103,116,99,108,106,86,95,84,102,102,89,105,96,100,102,91,102,106,97,98,105,98,87,102,87,107,89,92,102,113,101,89,105,101,111,98,102,97,109,88,96,91,94,94,83,112,105,101,91,93,87,101,99,97,97,100,94,93,115,98,101,104,92,87,102,107,104,116,102,102,95,96,96,103,99,88,106,106,93,93,93,112,102,125,102,101,94,106,93,109,81,98,91,94,111,85,95,107,94,94,104,94,87,106,92,82,101,96,90,103,101,100,87,103,97,90,107,110,84,95,91,104,110,101,98,103,108,99,100,95,112,91,107,102,95,100,87,87,106,88,92,97,108,101,110,103,106,103,105,105,110,93,100,96,82,89,104,92,99,103,105,94,103,116,95,90,95,95,94,118,109,103,104,110,103,94,97,98,91,91,88,69,83,86,99,102,108,94,106,101,98,95,102,95,100,104,103,98,98,109,101,95,91,115,105,94,102,91,101,99,107,88,110,102,109,97,115,80,97,99,91,94,113,100,105,98,95,106,105,95,108,95,96,99,96,94,101,99,91,107,114,97,101,89,101,94,95,95,105,97,95,93,109,100,92,90,99,101,92,104,98,99,107,104,95,101,98,91,103,84,93,110,114,95,107,93,93,101,106,92,88,110,104,111,105,95,102,91,84,106,94,92,105,97,97,91,96,102,99,114,95,104,91,116,105,98,91,100,108,96,104,101,109,104,100,101,88,110,109,109,95,98,106,104,92,96,96,96,90,93,98,98,120,101,121,92,101,89,96,103,111,104,90,97,104,92,98,103,96,97,91,100,104,92,91,100,98,93,93,99,105,100,106,92,95,104,110,96,121,101,93,115,93,105,93,96,100,99,102,84,88,104,97,97,99,99,97,100,94,100,101,108,96,98,109,75,97,100,92,105,98,104,83,100,97,94,77,89,97,96,105,90,79,97,100,101,91,97,101,90,90,100,92,92,87,95,98,75,92,93,116,95,99,104,102,105,99,102,94,105,103,105,85,97,102,90,102,99,97,94,108,109,103,98,100,103,68,101,102,85,93,96,107,105,93,89,91,99,98,92,96,101,91,110,99,92,91,100,89,104,107,89,106,107,85,74,101,85,110,91,101,96,101,81,92,104,136,102,102,102,93,98,106,115,98,97,89,105,95,97,117,90,103,109,83,92,117,93,111,97,96,89,100,103,94,87,96,102,87,100,124,104,95,101,110,100,92,96,105,98,102,87,96,97,102,85,91,96,104,105,95,91,94,87,97,96,107,99,84,100,91,92,108,100,95,106,87,95,101,84,108,91,101,84,113,84,114,102,86,95,96,90,96,85,98,102,101,95,90,98,104,73,99,100,98,104,94,95,89,88,110,102,104,104,98,92,94,102,86,106,88,99,95,95,94,71,98,99,95,92,103,102,107,93,61,99,96,101,96,99,100,96,103,103,105,88,94,107,103,110,104,84,92,104,94,90,108,88,100,89,93,107,113,89,107,100,96,105,96,97,94,92,105,103,110,106,84,106,83,100,98,100,96,94,92,92,95,107,103,90,106,91,98,99,94,101,77,74,89,93,101,96,104,96,102,94,103,95,106,110,96,104,109,103,88,94,103,85,93,94,112,119,101,91,101,99,81,106,102,106,91,101,89,83,100,102,108,103,107,96,97,107,92,103,102,91,97,98,95,91,98,89,104,104,90,103,104,101,90,101,92,99,102,106,95,104,97,111,95,100,105,79,102,90,97,104,98,117,99,107,106,105,108,105,98,97,109,95,95,92,96,92,88,87,96,95,103,99,86,97,84,100,94,101,117,88,94,99,99,96,105,99,88,103,98,95,110,101,91,103,95,84,102,103,100,95,89,99,93,88,95,103,106,96,95,101,97,105,91,112,97,98,100,102,95,100,108,99,91,104,95,90,91,97,95,101,110,105,99,84,103,100,110,103,101,108,103,94,99,93,92,98,97,92,98,94,99,111,91,102,90,102,100,98,88,97,107,107,96,97,99,98,91,92,111,99,106,96,111,91,89,101,93,107,100,91,100,92,81,106,95,89,106,98,99,98,100,106,108,101,99,92,86,79,98,103,91,101,92,98,94,92,96,106,97,103,83,95,100,98,102,104,97,99,100,97,100,95,95,106,102,103,95,106,87,90,89,99,98,103,109,91,104,95,99,98,101,100,91,100,91,98,87,93,100,107,80,111,95,97,90,93,90,94,98,89,108,99,94,109,99,98,94,99,90,120,87,98,104,105,95,99,95,83,109,106,98,108,106,97,95,91,107,104,89,112,101,90,93,106,109,90,91,86,92,100,103,79,91,88,103,103,94,85,123,109,108,106,96,134,92,92,98,94,97,103,90,105,95,95,128,105,104,108,99,107,114,104,102,95,92,97,83,96,98,97,92,91,109,93,85,96,80,105,93,99,95,101,93,102,94,118,91,87,102,112,100,105,98,77,84,79,92,108,96,88,92,99,98,97,107,94,96,85,98,101,86,109,102,112,84,98,73,99,104,101,122,94,92,94,105,91,97,88,107,103,99, +725.43146,68,94,98,97,82,99,105,96,101,83,81,94,97,92,104,102,104,87,117,108,102,89,96,91,98,115,98,106,116,105,96,93,96,98,107,111,102,93,110,90,95,95,101,92,105,103,96,105,94,100,101,97,94,90,101,93,96,90,108,92,104,97,94,100,96,120,87,94,90,95,101,115,89,117,98,102,93,102,93,106,87,83,103,88,95,90,102,93,92,77,95,98,88,94,89,95,103,96,102,101,93,88,100,109,102,108,91,103,95,85,94,100,89,92,94,106,95,103,96,91,106,88,101,97,101,100,101,83,104,97,94,90,97,87,89,105,98,99,95,101,97,95,99,108,92,83,109,100,89,95,104,88,114,84,89,88,88,90,109,100,100,104,97,93,91,91,95,98,98,84,90,96,89,97,93,102,90,101,94,89,87,97,92,100,105,94,100,82,112,109,92,69,91,102,80,95,110,97,98,105,97,95,90,87,101,100,81,96,102,102,97,109,89,103,100,89,96,90,104,106,96,110,100,90,91,102,100,101,84,88,107,96,104,95,109,99,100,105,90,89,98,96,111,108,102,100,96,87,97,93,102,96,93,105,90,103,66,97,94,89,97,89,92,100,98,108,96,95,81,105,94,102,97,106,96,96,98,95,104,90,79,100,99,100,98,96,94,86,104,114,98,94,105,107,76,102,112,105,94,114,90,98,99,104,95,99,99,96,101,107,86,95,97,102,91,87,107,79,90,99,78,102,94,104,99,91,98,87,104,97,99,99,102,98,103,96,93,97,91,91,105,91,100,92,100,96,105,102,96,80,97,87,108,109,97,94,97,99,93,101,94,118,99,102,103,93,99,89,93,101,102,92,108,101,94,91,91,92,96,97,98,98,90,102,97,91,82,100,102,98,109,79,96,88,106,87,101,90,97,102,69,90,96,90,96,98,93,109,111,102,77,88,97,97,98,84,91,95,79,97,91,83,99,93,90,90,97,95,102,95,97,101,85,94,86,98,88,95,93,91,93,106,100,101,90,98,100,92,123,100,92,100,86,93,95,91,102,93,91,99,96,87,93,97,105,105,92,89,106,94,114,101,88,91,104,83,90,91,94,103,95,89,99,91,98,94,95,94,101,91,105,98,95,86,91,94,98,112,104,92,116,102,97,104,93,109,87,97,104,107,100,104,84,102,97,94,97,105,90,88,96,102,135,100,102,110,107,105,100,100,86,94,95,98,100,102,101,88,102,108,61,100,96,100,106,90,109,98,104,97,96,99,101,104,108,102,94,105,89,110,105,80,86,102,96,95,95,75,99,106,89,91,97,97,102,106,87,97,102,104,100,93,94,88,100,83,102,90,100,90,92,85,107,91,84,91,93,97,105,101,103,94,92,93,93,96,90,88,99,99,74,108,82,92,103,94,104,92,101,83,103,105,70,100,96,89,91,103,103,99,80,88,97,101,109,95,67,91,97,98,90,97,118,101,99,88,97,82,93,96,113,102,96,97,104,96,101,93,99,100,105,91,113,103,94,100,106,88,98,95,100,104,95,102,91,91,99,104,93,91,99,96,89,97,99,90,80,101,99,99,93,104,101,93,104,90,86,93,95,100,104,87,100,94,109,90,94,93,90,101,91,104,96,97,102,99,93,108,104,96,89,94,89,103,85,103,101,92,99,99,94,111,86,99,102,94,95,91,109,97,80,100,96,104,102,93,109,88,101,105,106,117,108,97,86,84,95,97,100,105,98,108,86,91,91,105,98,92,99,86,106,97,102,92,97,110,96,90,91,106,94,91,99,110,85,103,106,100,93,109,97,106,87,112,97,101,95,102,105,102,95,104,103,91,101,91,97,103,89,100,100,91,97,98,110,102,87,82,94,104,92,105,93,111,110,100,98,96,94,104,106,104,104,96,99,99,113,101,102,92,93,91,95,98,74,111,102,97,95,113,99,94,92,104,101,96,98,91,103,86,94,84,96,108,89,96,112,115,104,97,88,99,105,104,77,96,101,105,109,79,93,95,101,107,93,106,83,93,102,89,97,103,104,98,91,97,101,94,98,91,96,100,102,85,102,95,102,113,98,94,89,95,97,97,122,88,106,81,119,98,95,98,99,86,101,96,102,95,95,98,101,95,100,92,92,94,98,87,101,97,90,89,94,95,88,92,98,99,99,105,92,91,104,88,103,84,96,97,85,94,104,93,95,100,114,94,91,89,91,111,101,94,97,94,95,104,94,92,84,87,96,96,85,106,86,105,94,89,95,95,94,106,96,88,95,82,110,103,87,87,103,97,88,97,115,90,101,102,100,89,94,91,106,116,100,106,100,88,110,102,108,110,96,96,87,95,62,95,95,86,91,108,90,91,99,84,94,108,94,100,88,102,97,107,90,96,95,98,92,79,95,115,102,100,83,97,95,100,88,93,104,102,98,84,89,100,95,99,106,99,96,98,99,90,94,91,103,95,83,83,95,105,102,105,90,93,95,100,108,108,98,93,102,95,97,98,104,105,100,106,87,98,104,94,90,106,111,93,95,95,102,104,88,95,110,83,94,98,90,104,108,85,99,96,100,95,97,96,102,117,102,107,98,95,98,101,98,103,95,104,90,105,94,106,89,97,101,94,110,91,108,94,103,107,99,105,94,95,102,94,99,84,97,102,92,113,111,102,99,107,117,94,89,104,93,95,87,84,100,95,103,108,102,104,90,100,99,96,100,66,104,96,103,100,105,104,98,93,105,106,100,94,92,102,111,98,102,101,108,76,88,103,101,85,100,111,106,100,96,98,104,99,95,97,89,91,96,109,99,100,103,100,90,104,72,94,107,97,105,107,97,101,105,95,91,114,124,97,96,100,98,93,98,103,85,98,106,104,96,114,97,86,87,101,86,126,98,106,101,91,91,99,98,105,108,90,95,101,96,102,111,104,105,86,95,109,91,114,94,100,99,87,97,100,89,97,97,102,93,99,106,94,95,94,108,99,99,107,104,81,107,104,99,95,105,114,106,100,97,93,103,103,96,97,95,97,108,99,109,104,102,99,85,95,106,94,95,104,103,100,90,104,97,83,108,109,96,102,82,98,80,101,108,75,98,101,101,101,88,76,101,104,98,96,93,95,92,100,87,89,104,95,102,104,97,97,101,102,96,96,91,90,103,107,105,94,92,97,91,104,104,94,91,107,95,96,84,89,99,99,94,95,96,89,99,105,100,102,91,94,120,103,90,85,95,87,94,90,82,105,105,91,94,88,92,102,120,89,94,92,95,101,104,92,104,90,100,102,89,107,85,87,94,87,98,92,100,87,98,103,95,101,93,100,98,92,96,92,96,103,102,108,99,107,80,97,82,94,99,90,87,105,90,88,97,87,96,94,96,99,98,103,87,94,87,99,101,104,98,96,97,95,97,124,106,112,102,114,102,91,102,104,97,94,96,104,101,83,94,92,103,91,105,104,99,104,98,95,109,97,93,98,106,99,93,105,109,102,104,77,92,97,101,95,94,110,99,106,100,87,103,97,104,88,100,102,96,88,96,97,102,91,97,94,98,102,91,95,90,87,103,103,88,100,81,76,90,96,96,105,91,97,92,107,91,103,100,101,96,84,79,94,101,103,91,104,101,103,100,92,96,95,97,99,91,93,95,92,98,100,127,95,100,105,99,87,106,100,88,95,88,92,105,105,88,99,105,96,91,99,101,101,92,101,77,97,94,107,99,97,109,96,105,95,93,99,106,98,95,98,99,116,106,87,100,84,100,101,97,87,106,93,109,100,104,99,101,98,116,103,103,93,100,100,102,87,91,79,103,103,100,88,115,83,102,91,107,93,93,90,113,93,95,106,99,104,91,102,100,100,98,89,101,103,93,103,102,91,104,95,92,73,103,87,96,95,98,80,104,96,94,98,80,99,85,91,101,89,105,85,96,100,99,91,117,83,105,91,101,98,110,96,107,96,106,99,98,83,104,100,86,100,98,100,101,76,100,100,105,92,101,103,113,103,100,93,91,97,79,74,97,99,84,105,89,94,93,99,108,97,104,96,93,100,75,104,103,93,106,117,92,101,98,94,98,98,103,101,113,89,93,101,108,82,90,109,96,91,104,96,98,111,90,101,81,99,90,105,94,105,98,92,106,101,98,106,98,109,89,94,95,98,96,103,100,77,89,101,101,95,96,98,87,81,87,95,91,93,105,102,111,83,93,102,95,108,97,93,110,95,108,87,100,108,109,91,105,94,108,115,107,95,93,102,97,96,105,101,101,88,91,105,101,61,91,103,101,92,102,92,106,103,91,101,90,102,106,93,81,113,95,83,97,92,101,103,102,99,93,97,106,96,91,105,89,100,86,103,106,108,101,95,102,75,92,79,101,102,101,101,102,105,104,100,100,91,96,96,109,100,94,104,99,98,98,96,99,103,90,93,99,92,109,99,99,113,91,98,100,92,101,95,104,90,104,97,79,62,97,105,108,97,101,106,100,93,103,100,97,107,93,102,90,103,97,111,100,90,97,92,112,92,108,100,114,103,87,102,96,89,95,95,96,93,113,101,109,104,108,104,86,99,108,99,94,87,98,109,88,107,96,106,80,98,103,118,99,106,87,97,79,95,107,100,106,90,115,93,91,91,96,102,88,102,90,97,95,96,70,99,104,93,102,100,101,111,98,94,91,93,105,105,107,95,90,96,96,92,92,97,94,102,84,96,100,84,116,103,94,73,101,116,98,105,98,105,108,100,100,85,90,113,98,122,97,93,83,95,103,92,94,87,102,103,92,100,98,112,90,101,101,99,94,70,95,98,115,111,86,102,113,109,92,100,100,85,79,97,100,93,113,97,96,93,101,108,83,97,104,96,106,87,101,103,87,89,96,94,94,102,113,91,110,87,96,87,102,102,96,98,102,101,95,104,93,93,91,109,112,89, +725.57281,97,93,91,102,94,97,101,68,108,104,106,114,82,105,83,89,91,89,103,99,88,83,92,92,102,91,106,80,109,100,91,102,102,89,100,101,99,103,108,104,101,95,96,96,106,97,109,109,102,110,105,95,117,98,90,95,103,91,105,105,87,105,96,103,109,99,102,101,99,106,96,92,84,99,95,116,85,90,110,94,109,104,105,98,88,88,108,79,99,83,113,102,89,66,95,98,97,98,99,95,93,114,95,101,84,96,92,95,93,92,105,92,96,85,97,108,100,94,104,103,104,99,100,97,99,107,91,99,96,100,94,91,90,110,100,90,101,89,93,90,110,98,93,103,90,100,105,95,86,101,113,105,103,105,86,99,104,94,94,85,89,100,103,105,105,97,103,97,97,94,95,99,91,93,105,113,96,89,96,103,107,101,91,98,101,84,90,98,96,88,106,98,102,96,85,97,96,96,92,104,101,91,93,94,95,99,88,104,116,109,77,118,104,97,101,87,98,100,88,84,97,108,107,95,97,102,92,92,104,96,98,103,90,113,87,109,106,103,109,82,96,86,98,93,100,96,98,97,93,87,100,94,93,94,110,97,96,103,101,109,87,104,96,109,92,101,90,101,104,124,95,92,95,91,106,99,93,104,94,104,109,109,97,97,99,100,87,103,98,104,69,87,101,100,99,82,92,104,98,105,93,94,96,118,99,104,104,106,107,92,92,113,86,96,101,96,97,97,95,95,94,96,98,108,98,88,103,89,96,100,102,101,137,98,90,104,94,94,79,102,97,90,94,103,96,97,107,104,101,123,98,102,101,100,98,106,91,99,103,112,106,94,97,96,96,114,97,95,103,109,73,83,94,106,99,91,96,104,90,97,95,105,93,110,99,87,86,86,95,97,108,83,92,97,97,93,84,94,105,105,97,92,101,94,95,100,93,84,102,103,87,103,110,118,109,104,96,97,116,90,89,108,88,100,115,90,89,100,92,96,110,104,104,89,100,98,83,105,104,96,99,94,103,100,98,94,87,96,101,99,89,95,96,95,99,100,94,102,105,94,90,105,99,97,100,123,96,105,84,93,103,105,97,97,99,92,105,106,106,102,96,101,98,105,105,94,96,106,98,96,99,101,89,105,93,93,99,97,110,104,94,91,97,103,98,95,107,100,99,75,109,93,99,106,95,98,90,103,97,112,106,92,99,92,98,84,93,108,106,93,95,77,96,57,99,105,92,88,95,104,93,100,92,98,101,100,89,109,93,98,114,99,113,113,109,91,103,91,98,101,105,85,112,104,89,92,94,100,107,104,98,97,97,95,105,111,101,90,95,110,81,92,114,105,93,103,103,100,98,99,98,96,96,101,98,97,105,100,98,99,78,104,114,100,87,84,77,101,97,86,116,118,101,114,91,95,101,91,93,99,95,80,96,104,84,93,92,103,110,100,103,103,99,95,92,102,110,94,103,102,101,105,106,97,124,102,107,87,105,98,112,98,103,103,94,100,102,103,101,105,96,91,94,90,100,87,95,91,91,110,111,107,94,101,101,118,109,99,104,84,102,102,102,108,92,93,89,97,103,110,104,113,100,99,106,99,95,93,94,110,100,86,92,94,96,91,92,89,100,109,107,98,95,95,100,93,86,100,98,99,101,90,94,104,94,96,104,86,109,130,100,101,95,81,94,85,85,84,105,79,97,111,94,94,96,99,104,90,92,98,105,92,97,91,102,96,99,103,101,97,82,96,101,98,110,106,99,91,97,90,105,108,103,105,106,109,100,93,85,85,97,99,111,107,104,98,95,114,110,106,100,92,113,105,94,100,92,102,102,133,88,97,92,99,96,108,91,96,90,101,91,95,91,97,93,97,100,90,99,96,104,107,104,109,105,103,107,97,98,99,102,95,105,97,100,97,103,101,83,95,97,100,104,96,110,96,108,103,102,94,109,94,95,102,93,114,109,99,106,96,94,101,102,114,98,97,93,97,107,96,108,95,93,89,85,90,105,95,95,103,98,97,97,95,94,78,93,109,109,96,95,103,106,109,108,79,96,108,98,95,82,111,104,96,104,91,94,98,101,97,102,96,101,104,110,89,98,104,90,112,96,99,115,102,99,100,86,96,97,98,92,110,92,99,89,99,92,91,91,99,103,90,95,98,90,121,103,101,88,113,98,114,90,96,103,99,103,92,109,94,98,82,98,102,109,104,107,91,103,94,90,95,102,102,95,103,101,92,84,108,95,105,101,95,117,97,100,102,90,96,99,93,90,100,94,95,101,101,95,102,105,95,109,106,103,95,108,94,97,100,104,100,94,96,105,99,99,101,98,92,98,92,102,95,98,84,107,99,99,112,93,110,103,96,102,85,87,84,100,88,92,111,81,108,91,86,93,97,100,104,94,108,90,93,86,98,100,87,83,105,90,102,101,107,106,95,101,98,106,96,101,109,98,92,104,118,101,102,91,97,95,100,92,91,100,97,95,107,95,115,91,106,105,86,76,111,110,89,104,111,102,96,99,95,95,107,98,93,106,96,102,85,102,102,94,95,108,116,94,103,106,106,94,91,91,119,93,117,101,97,94,106,100,91,90,94,93,95,95,93,110,91,97,102,96,94,101,96,106,109,86,89,106,96,103,105,116,104,96,113,103,85,95,101,93,109,95,93,92,107,92,100,98,84,96,88,109,90,99,113,90,96,95,107,108,97,101,102,113,107,95,101,109,99,95,104,93,106,89,97,67,104,112,98,89,102,102,101,92,110,101,101,102,106,64,100,101,95,116,106,100,115,99,99,99,98,102,107,102,77,103,119,89,117,100,95,81,97,106,100,106,95,118,109,98,96,111,106,78,96,106,106,80,98,90,98,131,105,99,96,96,105,101,108,102,88,98,107,95,107,97,96,89,104,107,91,86,100,105,109,102,105,109,87,88,93,105,91,109,88,81,109,95,88,98,106,95,83,112,98,109,97,102,98,99,100,98,105,81,91,94,100,79,102,105,117,109,91,87,101,109,102,87,104,91,97,110,107,99,102,83,96,99,101,107,94,97,96,91,96,100,93,103,104,103,106,94,97,99,97,91,104,110,95,90,96,98,96,95,101,97,105,89,97,104,103,106,95,91,83,99,106,82,105,96,97,104,104,92,102,96,82,70,99,104,111,99,87,98,95,80,87,99,115,105,107,94,104,94,86,109,90,104,101,96,94,104,102,94,93,96,106,86,89,98,103,96,92,94,108,93,108,93,104,99,98,97,81,98,99,93,99,92,109,100,96,87,104,110,92,105,93,94,100,108,121,92,92,117,85,101,74,89,108,99,100,93,88,97,94,107,99,92,102,99,106,87,98,89,85,95,86,100,105,88,108,95,112,97,94,97,95,106,100,98,90,93,99,102,113,87,96,98,93,94,100,93,90,106,104,93,97,108,103,94,93,87,107,104,90,84,93,97,107,95,99,93,104,110,95,97,102,107,98,89,98,96,103,96,97,99,97,102,97,86,102,101,78,103,95,105,97,96,94,112,100,106,102,83,95,115,109,102,100,108,99,87,88,102,105,93,101,92,89,110,115,99,92,99,108,102,83,101,94,96,105,103,135,98,87,98,80,93,96,95,100,91,100,99,95,102,98,105,90,101,62,103,93,107,85,92,94,91,100,101,115,123,98,92,100,104,86,104,97,87,96,103,81,99,88,100,108,87,97,87,99,104,101,98,102,104,96,100,103,97,84,109,103,105,89,102,95,110,73,98,107,95,95,93,105,106,93,95,97,102,80,99,114,107,95,92,99,108,99,100,103,92,91,103,97,102,104,94,103,117,98,108,106,101,100,93,98,101,110,101,103,100,96,108,103,104,95,100,91,101,99,113,93,99,94,94,96,101,104,108,96,98,102,96,72,94,80,102,113,109,92,97,96,89,98,96,121,96,96,108,96,102,94,97,102,100,91,112,95,92,102,90,99,102,102,93,89,106,115,98,104,93,90,110,92,97,94,95,100,93,93,98,95,98,100,99,93,75,104,83,94,103,105,94,95,107,105,95,89,100,99,95,101,95,84,101,102,88,110,82,100,78,98,95,96,103,89,95,105,96,89,84,96,99,93,111,100,92,105,95,99,97,87,101,96,93,103,105,101,95,98,98,98,95,101,113,94,105,109,93,93,91,101,99,107,89,105,101,93,107,98,114,91,104,87,109,92,85,113,103,110,91,104,98,101,97,105,96,98,82,93,95,95,103,107,86,94,110,100,95,99,103,108,102,101,117,95,94,91,100,97,98,95,95,101,92,98,105,108,99,103,100,100,85,106,92,106,103,96,96,111,104,88,94,100,102,105,109,94,95,92,115,98,94,102,102,88,77,87,83,106,102,100,80,85,105,102,99,98,100,98,108,96,92,98,66,98,92,96,100,108,109,102,106,100,88,97,98,90,92,104,101,95,107,96,113,100,92,88,98,110,92,92,89,102,97,104,108,94,96,91,91,111,97,102,97,102,94,99,102,70,87,95,107,105,103,81,95,108,113,100,91,104,113,94,94,113,94,99,79,105,100,97,104,97,113,76,85,128,96,109,101,91,97,99,76,87,100,104,94,96,109,106,98,102,106,99,94,103,91,98,107,100,106,94,95,102,105,110,87,104,98,98,95,95,99,94,102,96,100,101,104,102,98,96,93,99,97,93,89,95,97,92,113,89,93,112,98,100,90,98,105,103,101,90,98,104,93,91,100,100,109,91,111,100,97,94,109,105,85,103,95,105,101,98,112,101,109,97,94,100,90,84,99,91,102,92,100,91,91,110,96,84,101,108,98,91,98,101,99,97,105,108,106,94,106,102,88,87,101,74,99,101,99,91,102,94,102,100,109,98,94,90,99,95,119,104,95,98,99,103,96,108,88,87,113,91,95,97,94,94,95,95,86,101, +725.71423,126,111,93,93,94,108,92,106,105,91,113,102,116,98,114,94,102,124,97,103,91,101,101,104,102,101,98,99,102,101,94,92,97,86,91,93,109,99,106,90,100,104,101,97,101,100,102,95,106,99,92,96,91,98,88,83,82,95,75,94,102,128,94,94,101,94,95,91,97,99,104,105,100,103,105,94,100,106,92,102,93,92,97,97,100,98,106,91,102,113,88,89,105,102,96,75,105,101,97,100,96,91,98,99,94,101,103,92,97,113,103,111,132,98,99,78,95,111,103,93,94,105,105,99,107,94,111,89,103,104,110,107,93,96,88,117,107,100,92,92,100,112,97,94,89,96,100,98,100,100,90,94,102,94,96,97,101,106,97,98,95,109,84,91,104,105,108,87,95,95,107,102,100,91,99,91,90,92,110,96,108,99,98,97,100,90,89,86,101,84,93,100,92,98,102,100,99,107,98,103,103,92,101,100,104,98,109,95,107,101,100,96,96,100,94,96,97,78,89,101,110,105,90,85,100,102,109,100,103,105,123,106,93,100,95,96,89,116,109,109,98,95,100,106,94,97,97,96,100,87,102,101,93,96,98,105,98,100,99,99,95,113,101,90,86,114,101,108,100,93,105,98,95,89,107,98,107,112,95,89,97,107,88,90,105,93,93,87,105,106,90,111,100,107,118,91,97,117,98,109,99,86,103,115,109,100,96,107,99,108,86,109,104,130,128,95,100,105,99,112,82,98,98,111,100,100,109,95,113,105,104,105,105,114,103,97,112,93,96,92,104,104,94,81,91,90,95,106,102,91,97,96,114,92,92,98,115,97,91,96,98,102,92,94,71,103,87,99,100,99,101,98,103,104,89,104,100,95,109,100,113,103,101,102,92,92,97,105,105,94,104,97,105,102,93,105,101,90,100,113,108,98,94,94,86,95,107,92,100,95,87,101,100,96,109,101,96,89,108,96,96,103,96,105,95,94,92,96,110,99,93,100,93,95,98,90,98,100,61,104,87,98,86,104,98,94,90,95,105,110,101,102,98,107,96,92,98,105,108,99,99,96,95,92,104,103,97,108,102,95,97,105,98,95,94,95,95,95,114,104,91,100,111,105,99,102,100,114,113,104,108,99,104,91,96,101,113,98,109,95,97,95,100,102,100,108,97,89,106,97,130,102,86,70,95,98,104,96,105,95,95,106,104,97,98,94,101,113,101,102,89,97,87,91,90,97,97,93,95,109,96,91,106,97,101,94,99,103,98,101,107,97,112,117,98,111,71,108,96,102,100,106,90,102,110,97,104,103,124,94,85,132,95,95,93,101,105,100,93,87,95,84,102,106,102,112,101,98,99,103,109,92,116,131,101,109,95,97,93,124,91,98,100,100,95,86,101,102,92,96,94,91,103,91,105,93,86,86,88,96,112,101,98,93,101,100,107,96,100,96,98,102,92,84,104,96,92,96,88,94,95,103,102,96,87,89,103,101,100,115,100,114,90,99,73,103,105,95,104,94,100,96,100,104,90,90,101,102,101,99,102,98,99,101,100,96,101,98,100,95,108,103,100,84,91,95,94,108,93,96,92,102,101,103,105,99,95,99,72,83,101,84,101,114,104,115,94,92,102,96,132,107,106,95,94,97,101,107,101,94,103,94,92,104,89,100,97,99,100,95,98,101,95,104,98,91,101,91,107,95,102,87,109,93,98,100,96,97,104,107,103,97,90,100,94,97,100,95,94,99,101,99,93,108,92,112,93,102,108,106,111,113,99,98,105,107,101,87,96,105,99,97,108,105,95,91,97,103,100,116,105,110,115,114,96,101,99,106,101,107,95,86,88,88,96,104,96,96,105,94,98,100,91,95,105,109,104,110,99,97,101,111,92,85,109,106,127,90,110,102,98,103,110,90,107,96,104,91,97,102,87,100,115,98,98,95,102,100,91,93,97,106,98,103,95,131,93,100,87,106,90,82,87,89,108,98,98,97,110,116,105,108,97,94,91,101,105,92,101,92,95,100,92,97,97,90,105,103,90,101,99,97,101,89,104,100,96,106,94,105,95,104,110,108,98,100,102,84,109,97,92,95,91,111,110,106,98,109,97,106,95,101,100,113,88,99,90,95,97,110,113,103,100,98,97,95,94,101,108,96,99,108,99,99,99,70,91,100,100,103,103,99,117,89,100,94,94,104,99,102,99,108,95,95,98,94,109,85,101,88,97,103,108,98,101,110,91,89,101,107,106,106,87,97,110,92,94,93,92,100,95,103,103,99,84,95,93,115,103,100,92,103,102,101,104,103,113,94,98,97,94,103,98,101,99,97,90,110,98,114,97,99,123,98,92,109,101,104,100,98,104,95,110,92,92,82,91,102,102,93,107,97,87,95,95,97,105,103,81,99,92,103,90,94,95,97,92,90,94,99,97,99,103,82,116,94,104,84,94,100,106,115,97,97,98,95,97,108,99,104,99,88,93,93,102,108,92,91,109,103,95,88,97,96,104,97,91,111,94,120,92,83,98,98,77,103,96,104,96,104,94,105,101,93,107,84,100,105,101,114,99,102,96,90,105,80,93,99,109,101,102,108,98,84,93,100,119,82,91,103,89,96,83,102,96,103,92,95,98,100,98,99,108,101,92,89,101,110,95,101,101,94,84,97,97,105,98,113,105,105,98,112,99,103,99,95,103,104,94,104,108,99,97,106,94,98,96,90,102,98,98,86,100,106,100,102,114,89,93,101,102,90,105,101,109,97,117,100,95,92,98,104,92,104,109,100,98,98,94,83,86,96,96,81,106,108,86,101,99,97,92,110,91,106,96,91,96,111,105,96,104,109,97,100,93,96,101,84,102,87,99,103,101,96,106,98,102,110,91,95,103,97,88,115,102,92,102,100,97,92,107,111,101,115,114,98,85,100,106,93,101,101,113,111,108,104,92,133,105,98,100,103,104,95,115,96,103,110,95,104,102,98,96,117,87,92,112,104,90,72,108,101,99,100,101,103,101,97,99,112,103,105,93,97,110,100,103,107,97,94,107,92,95,103,113,102,100,102,101,110,95,102,95,95,94,96,93,95,73,93,101,100,111,109,90,85,108,104,105,87,107,106,109,97,107,92,97,101,95,96,102,104,91,110,103,100,101,102,85,91,100,113,116,100,96,90,98,104,80,110,90,97,104,98,108,98,104,103,100,97,105,96,91,110,96,96,109,102,100,108,91,89,90,89,104,88,97,109,96,107,77,127,90,90,68,98,88,95,104,105,91,100,94,97,105,105,102,95,99,85,79,102,94,91,79,101,95,96,98,97,81,95,96,109,97,94,98,97,116,88,91,90,100,89,101,93,96,102,95,101,103,108,94,102,95,106,113,98,94,92,95,109,91,75,91,107,84,103,91,95,100,95,107,108,110,102,94,102,102,96,103,98,108,101,95,103,104,95,93,106,92,92,127,94,92,83,105,107,97,88,99,90,103,93,96,100,92,95,107,99,98,108,100,99,105,117,96,105,91,95,92,89,91,108,94,101,113,101,117,108,113,88,103,106,94,105,102,96,94,99,97,93,112,102,101,108,89,98,110,100,104,92,89,92,99,97,99,96,97,101,103,96,103,108,103,103,99,89,105,86,101,100,99,96,107,88,100,98,109,86,101,96,102,92,97,99,95,82,104,104,89,94,93,107,97,88,94,94,99,111,105,116,97,100,102,107,95,105,101,96,100,91,107,100,95,77,95,94,82,91,91,88,91,60,109,97,102,104,96,107,103,81,92,90,129,100,99,91,99,88,107,88,98,99,94,92,94,79,101,103,95,132,93,91,105,107,117,114,99,103,116,115,106,118,108,94,95,84,98,98,94,91,104,101,88,100,99,91,94,100,101,105,104,95,90,104,94,104,87,98,95,94,94,91,95,92,100,110,101,106,83,87,92,104,104,94,96,88,119,106,79,94,78,102,106,108,105,99,98,101,94,99,102,109,100,86,94,94,96,79,99,96,96,109,98,95,92,95,98,93,99,97,105,97,111,98,91,97,100,104,99,91,93,109,102,98,105,104,99,86,94,92,94,101,102,102,107,100,94,88,87,92,98,94,95,108,94,103,87,101,113,105,102,111,95,103,89,108,101,101,98,98,98,96,91,113,98,107,100,99,93,90,87,99,97,98,99,96,111,95,105,109,96,92,83,97,95,95,88,95,109,98,108,99,99,110,92,112,103,107,94,104,113,84,82,103,101,97,95,96,105,93,100,91,101,106,120,107,92,101,93,100,93,105,93,109,96,102,102,102,94,96,103,89,95,102,98,91,102,108,92,87,97,125,89,93,107,104,91,99,102,75,100,115,96,106,102,92,113,94,124,92,109,87,109,94,100,102,84,103,106,105,92,116,99,88,109,105,98,90,102,87,104,102,98,101,112,100,98,100,96,90,105,100,101,96,92,103,110,101,112,96,91,98,103,107,92,95,101,100,98,84,100,90,103,99,97,94,111,96,80,94,94,93,118,108,98,98,91,94,99,106,102,101,104,97,106,102,98,106,112,85,106,87,92,96,108,102,92,117,98,97,84,96,98,90,101,93,112,104,101,105,119,94,100,108,96,106,92,100,98,91,100,98,102,90,104,103,96,96,90,99,112,99,105,107,116,105,76,97,106,96,110,94,92,102,89,106,102,96,73,97,115,84,91,109,102,97,100,103,110,101,93,105,95,92,95,115,110,95,100,107,128,100,109,92,98,90,103,87,104,93,97,103,111,102,91,92,111,100,95,107,84,101,104,113,89,95,100,96,96,99,101,100,103,106,113,98,96,106,97,96,101,94,98,99,102,104,91,88,106,108,93,96,92,79,114,99,71,101,106,110,104,108,95,106,87,97,98,114,78,96,95,115,98,92,98,98,110,91,115,107,91,98,95,110,99,104,99,102, +725.85559,102,102,89,110,100,121,87,99,96,99,109,115,97,87,125,114,103,100,95,95,94,86,89,88,104,82,97,99,93,94,95,94,91,110,103,90,103,87,101,92,88,96,109,86,96,105,90,96,92,91,101,91,75,84,85,105,107,105,115,105,117,84,106,102,82,100,92,86,101,89,122,90,95,88,88,96,91,102,99,100,94,100,88,94,97,97,92,76,104,95,91,86,101,91,94,102,97,106,101,93,92,87,97,101,92,97,93,90,92,100,88,83,100,98,94,96,102,100,99,102,92,105,87,102,100,96,97,90,111,102,110,104,93,106,105,98,91,89,96,101,98,91,123,92,95,97,100,104,92,91,94,90,96,93,87,98,87,107,93,97,101,104,105,95,96,89,102,111,100,123,94,100,92,99,92,98,105,99,98,96,117,87,106,95,84,102,89,100,113,95,96,98,105,106,82,114,99,98,101,114,88,100,92,108,94,90,87,95,113,101,111,105,90,86,98,101,89,97,97,94,94,94,94,94,101,96,118,103,128,91,97,95,95,95,100,91,108,100,98,96,103,80,102,89,86,93,98,99,115,102,101,96,95,65,105,97,91,95,99,92,84,95,94,93,95,99,94,83,90,104,105,95,107,104,104,97,93,110,108,98,101,102,96,90,95,105,87,91,97,96,101,106,94,79,97,106,100,92,98,89,108,93,100,106,95,105,97,100,108,109,89,100,103,94,104,95,86,91,96,97,94,83,91,95,93,98,96,90,100,96,96,87,95,106,95,96,99,95,93,107,97,116,90,82,92,91,96,102,94,94,107,91,104,103,95,98,99,110,97,96,83,99,94,85,95,102,97,92,98,91,103,99,100,95,88,97,94,104,102,108,105,99,109,98,95,97,93,101,82,87,101,91,99,88,96,97,96,106,103,96,95,101,95,98,92,90,96,91,102,100,83,90,102,102,90,90,88,80,96,90,95,95,91,103,96,98,102,76,88,99,101,86,106,96,81,92,88,95,70,100,97,93,100,114,94,122,103,88,102,105,94,89,92,104,83,103,96,97,105,107,91,104,108,106,105,100,95,113,101,91,105,90,104,85,90,96,79,99,97,111,97,110,99,108,104,89,91,97,92,102,96,99,88,58,95,113,97,93,88,96,103,101,118,88,88,90,96,91,92,82,99,101,89,100,99,90,100,78,90,95,102,95,92,97,95,86,101,100,90,91,91,102,95,95,99,106,88,98,100,121,97,99,76,102,101,97,100,98,103,108,92,95,100,91,89,88,103,110,90,85,104,91,91,97,91,95,109,97,105,86,94,85,104,96,96,93,84,103,108,96,89,99,104,123,97,94,92,104,99,94,101,98,90,91,104,100,98,94,96,98,84,100,92,95,88,98,92,95,118,94,103,107,98,103,95,102,93,98,102,98,94,91,105,104,85,97,95,97,95,88,106,111,90,96,82,90,88,88,109,91,116,104,92,107,107,97,93,96,92,99,95,92,100,97,95,88,103,115,103,91,91,88,92,95,94,97,96,98,102,101,98,103,108,85,106,90,87,93,82,93,95,89,99,100,101,91,98,101,105,105,99,90,101,106,91,97,87,99,89,91,96,84,86,91,104,90,99,100,98,100,98,94,101,101,97,108,96,104,99,102,97,99,88,97,91,91,107,103,100,99,100,100,100,89,92,92,97,93,107,108,104,94,99,95,100,135,98,104,102,91,109,102,92,96,100,97,102,95,99,76,90,96,84,112,88,99,96,90,80,89,103,110,104,100,92,107,96,96,100,93,104,101,75,100,94,97,97,80,91,100,99,98,98,91,107,95,88,98,93,99,91,101,90,91,96,71,92,87,95,97,121,99,103,97,97,101,100,92,103,109,97,106,96,91,83,91,101,101,91,116,90,87,103,102,93,86,97,91,91,106,105,98,94,90,88,99,103,92,102,98,100,90,84,92,92,100,95,102,88,93,97,100,97,88,94,104,97,99,104,92,100,99,99,92,84,96,95,99,90,97,90,92,83,93,103,108,86,106,100,100,94,102,83,102,96,80,90,96,100,94,100,94,100,98,106,93,91,105,92,113,93,100,99,95,91,100,91,101,82,97,115,104,84,95,98,74,82,92,106,91,92,91,104,104,98,92,95,88,102,110,83,92,101,96,99,106,90,101,90,101,97,97,84,99,94,97,91,100,108,95,94,91,104,95,104,109,89,95,92,105,96,75,100,98,94,102,85,88,94,113,93,91,92,107,99,91,82,97,103,96,105,95,103,97,101,100,108,94,98,99,98,92,91,98,105,103,97,105,80,96,93,99,106,93,94,103,93,91,92,94,85,82,90,97,97,99,102,97,101,102,84,123,102,91,89,84,98,101,101,101,97,108,83,93,99,93,104,91,92,97,95,105,98,104,113,78,99,83,96,105,92,102,94,94,92,99,103,102,98,88,98,112,98,99,84,107,97,88,84,101,98,100,76,100,104,95,102,106,96,84,94,98,106,102,87,98,99,94,88,94,94,89,110,102,116,110,101,88,73,95,100,121,101,97,85,121,110,101,81,98,97,98,100,88,91,71,83,114,91,101,113,108,99,96,108,110,95,105,105,95,105,96,92,89,97,87,91,105,116,94,98,102,117,94,113,102,97,100,114,104,96,110,110,100,90,99,99,102,98,96,109,105,99,104,98,108,81,98,81,101,107,89,96,106,81,102,108,100,107,102,104,110,107,96,89,104,96,92,101,105,95,103,122,117,96,77,107,99,95,100,102,110,111,104,99,105,102,99,98,104,97,97,105,98,105,97,98,90,101,73,101,106,102,111,109,103,107,97,113,95,108,98,102,107,92,102,101,94,84,105,86,105,102,90,88,100,94,101,94,104,109,85,90,100,99,104,87,110,105,83,101,91,89,110,108,106,94,103,109,95,95,89,96,85,93,85,102,89,103,96,104,99,107,93,104,100,105,101,99,87,98,112,100,88,100,104,99,105,102,95,93,90,97,90,96,111,97,91,101,102,98,103,95,91,104,106,107,93,90,97,98,89,91,102,101,115,98,103,106,96,94,94,96,100,97,101,106,103,107,94,106,102,95,93,107,97,124,96,105,101,105,106,101,101,111,95,107,94,105,100,96,109,100,90,101,104,106,98,100,88,93,100,91,102,100,100,102,102,107,91,103,99,105,67,106,102,97,101,95,102,99,94,99,92,97,104,87,99,95,101,110,104,111,103,93,99,96,113,101,96,89,96,79,84,93,120,99,99,107,103,105,103,104,99,106,94,110,96,99,94,91,98,93,99,92,104,96,103,99,98,98,93,110,89,95,101,104,91,96,101,95,112,105,117,95,96,85,99,99,97,102,97,108,91,97,93,104,89,98,105,83,100,94,98,114,99,100,103,97,99,95,100,98,116,102,95,92,98,98,89,93,99,116,101,97,92,105,91,89,108,98,99,97,113,88,93,96,91,98,84,101,106,106,87,103,95,104,98,98,94,98,100,105,93,113,98,98,101,100,86,109,103,104,101,106,90,101,94,98,99,115,95,97,99,100,94,101,103,104,95,104,110,99,95,106,97,115,105,111,110,100,87,106,98,99,98,71,91,83,98,95,88,98,96,91,110,105,97,102,103,99,101,83,97,94,85,98,94,99,93,102,101,98,97,99,101,108,109,90,101,98,99,102,106,104,94,92,109,96,101,101,84,98,96,95,97,90,83,95,99,102,95,108,100,95,96,108,93,100,96,110,90,105,94,96,92,98,96,91,101,107,91,95,105,97,96,99,105,101,99,104,92,105,102,109,102,101,92,98,103,99,108,87,103,96,95,77,95,105,106,100,101,101,93,102,100,98,83,108,97,97,93,89,100,97,100,96,106,91,85,99,98,98,91,100,99,108,99,90,103,90,114,101,94,103,90,102,97,91,103,106,98,93,110,91,102,113,95,97,96,93,100,108,105,105,99,88,104,109,94,94,95,117,102,95,95,97,107,89,101,98,104,124,95,108,102,102,90,98,105,102,106,90,99,97,98,101,102,107,102,100,99,97,93,95,98,102,108,97,92,98,99,90,97,107,97,103,94,96,94,101,97,101,100,93,92,104,104,97,103,99,108,107,112,103,95,102,106,98,104,90,87,98,95,93,118,106,105,95,107,98,102,88,105,100,97,101,102,96,84,93,102,113,93,94,95,100,99,104,91,100,64,99,99,98,89,105,106,99,109,98,98,113,105,103,96,98,98,115,97,108,108,80,94,94,105,96,110,102,98,100,101,90,87,94,103,92,88,93,93,107,106,100,96,101,107,96,100,92,105,106,95,106,108,89,101,102,101,98,97,94,100,96,99,91,105,101,94,93,111,87,93,92,96,94,93,87,92,100,113,100,100,103,110,108,104,110,106,88,100,97,107,99,112,103,97,106,92,102,104,93,96,107,93,95,61,87,90,101,95,100,106,100,90,104,100,92,106,95,105,99,107,99,95,98,90,99,103,94,83,98,95,104,90,107,99,105,96,105,103,93,103,101,103,113,119,104,103,97,97,103,100,96,98,94,81,108,97,84,102,104,97,89,96,100,96,100,92,103,110,96,113,72,97,99,102,101,108,91,110,104,95,113,95,98,94,95,104,105,108,88,91,108,103,106,82,103,106,101,106,95,112,101,112,105,98,96,109,101,104,106,101,101,104,93,99,91,99,109,110,95,98,102,103,101,98,102,97,99,107,103,92,102,91,113,97,90,113,92,95,99,103,98,102,105,71,120,101,96,102,115,106,95,116,87,117,89,105,90,98,105,88,97,105,101,102,94,104,92,104,87,92,97,95,97,93,94,99,87,118,101,108,106,101,101,98,96,106,98,90,101,113,88,113,106,103,98,110,112,95,112,100,82,84,89,103,99,107,84,94,100,89,112,96,94,106,87,75,62,108, +725.99701,100,106,86,96,93,97,114,100,111,105,103,100,103,98,97,115,107,99,81,90,103,89,109,104,85,105,94,98,100,97,96,102,107,107,134,96,97,118,96,68,90,91,103,102,99,90,99,101,91,106,97,108,109,100,99,95,102,86,88,88,95,104,109,90,108,130,93,113,98,95,116,98,103,100,94,108,89,97,99,101,105,97,96,84,95,94,108,97,99,74,96,105,96,104,92,104,99,88,103,94,93,93,97,96,91,100,96,108,104,92,92,100,108,83,101,104,103,102,99,101,105,106,109,112,108,103,85,106,102,98,105,91,90,88,64,94,105,105,95,108,99,96,97,101,100,95,101,97,100,90,91,100,102,87,93,110,117,88,130,94,94,101,107,97,95,99,97,95,105,88,89,88,88,94,124,100,105,97,97,98,86,91,87,104,96,105,104,102,98,99,94,113,104,105,106,102,91,94,97,104,104,103,108,102,86,97,106,93,106,98,99,98,99,101,103,97,93,103,96,100,98,104,102,99,71,91,95,103,103,88,96,105,102,99,98,98,96,108,102,91,108,91,90,98,92,85,91,103,106,96,99,101,106,94,100,104,108,93,93,109,96,99,98,91,99,89,99,91,96,94,101,103,98,82,103,93,108,104,98,97,101,86,103,103,104,120,98,110,98,94,93,117,112,97,104,96,102,95,101,100,103,108,101,114,84,98,98,98,101,112,90,99,100,103,98,103,100,81,90,105,95,97,95,106,101,101,96,95,108,84,105,101,105,94,114,108,99,79,111,94,102,97,96,108,62,97,97,107,94,100,104,92,105,113,106,95,100,102,117,111,94,101,96,96,92,102,98,106,99,101,103,87,95,97,98,91,100,98,96,88,97,98,94,94,103,94,91,105,95,95,95,95,93,102,121,92,80,117,99,97,107,102,101,92,92,84,101,110,95,102,100,94,113,91,106,91,96,96,104,97,74,87,102,101,104,102,96,93,97,100,95,97,98,88,109,96,104,101,92,89,105,104,104,102,97,98,95,91,105,102,96,95,110,101,101,82,97,94,98,103,95,96,98,103,102,100,99,95,117,102,102,95,92,94,99,101,87,100,88,101,89,87,105,111,86,97,97,86,99,96,97,105,94,98,74,91,104,99,93,103,108,120,68,101,96,90,90,101,89,66,100,93,99,114,95,95,90,111,98,98,97,89,102,95,103,102,102,108,82,91,96,111,102,95,93,91,107,98,99,110,75,93,94,103,103,87,97,108,101,99,96,100,105,96,107,99,123,100,105,84,98,103,91,113,101,98,98,97,92,99,93,82,98,116,102,100,95,100,94,95,98,101,103,107,99,90,96,96,100,93,102,102,99,88,104,111,94,94,106,105,100,99,103,97,96,100,105,99,94,95,100,96,97,100,100,88,99,100,98,97,104,105,94,85,95,103,97,92,98,105,109,99,94,109,89,91,101,97,110,115,103,113,91,103,97,103,100,98,101,109,89,95,100,106,95,103,96,101,110,102,111,99,106,88,85,95,97,90,103,95,103,117,89,91,88,99,105,94,94,91,90,101,105,95,102,87,106,101,97,110,96,95,89,104,87,96,104,128,103,95,113,96,104,111,102,100,93,106,101,106,101,106,105,96,92,98,100,100,100,104,92,109,102,100,105,96,109,129,104,103,91,91,98,105,87,91,102,101,95,100,107,91,91,122,98,97,97,100,97,114,103,85,101,105,101,98,110,95,106,109,98,92,105,97,97,100,98,101,115,92,91,101,112,96,111,101,97,99,95,87,107,98,104,104,92,107,99,103,97,107,91,93,103,106,103,99,97,95,102,93,92,100,90,96,99,99,113,104,113,90,105,87,99,127,94,108,98,101,95,98,91,111,99,95,97,92,92,99,97,101,100,92,94,88,106,100,94,89,103,102,96,91,98,103,96,94,106,102,100,104,106,100,88,99,105,75,104,96,98,100,97,100,96,93,98,87,95,98,101,115,90,101,65,113,97,102,101,80,98,99,98,92,90,113,101,105,89,94,95,107,120,106,77,107,129,93,97,99,108,101,106,102,105,101,101,103,98,95,94,92,87,80,111,106,94,92,83,114,90,86,103,92,95,94,95,104,100,97,92,105,95,97,108,102,101,98,109,91,93,107,90,98,95,101,95,116,105,105,103,93,79,90,96,102,90,88,109,104,108,102,105,93,100,103,98,99,82,93,106,102,96,97,102,99,105,101,96,101,91,100,92,97,105,103,110,101,93,96,92,101,101,92,80,87,93,102,97,96,102,97,101,98,90,101,98,99,98,90,96,107,86,88,95,98,99,111,107,105,110,102,88,107,98,97,106,105,104,99,96,95,78,99,97,101,106,97,89,101,105,92,96,117,86,95,91,94,95,102,105,108,86,105,107,100,104,96,96,104,102,96,98,107,98,94,108,102,93,91,101,94,85,99,96,105,96,92,103,98,90,93,102,94,99,86,93,101,93,98,94,118,96,109,96,89,95,95,105,99,100,85,91,88,90,99,102,100,100,106,101,98,97,114,99,107,101,98,92,82,95,109,100,100,107,89,78,103,99,113,104,100,109,102,111,94,110,97,103,89,97,108,100,98,78,96,99,106,95,87,103,89,95,97,107,96,102,99,109,99,100,95,98,97,99,98,115,109,96,88,92,108,98,100,101,105,100,109,98,88,113,97,86,101,94,94,110,98,96,108,92,100,94,93,104,98,103,95,95,105,101,101,94,101,101,104,103,107,92,91,109,97,99,106,92,107,103,99,96,99,93,87,102,112,93,88,102,101,88,111,111,96,104,102,104,103,91,111,97,89,98,112,101,94,103,96,105,113,95,96,84,108,98,67,100,92,103,102,102,95,100,105,98,101,100,106,98,101,121,100,103,96,116,108,107,108,107,123,97,92,108,117,99,107,94,95,100,109,105,104,94,100,105,96,90,84,108,99,99,107,96,99,116,93,94,105,89,101,98,109,94,91,92,92,92,88,105,102,107,99,96,95,109,97,94,86,100,104,101,92,111,101,98,116,95,98,99,99,89,103,100,103,96,102,101,100,104,98,117,91,97,90,103,109,102,106,92,98,102,103,108,97,108,99,105,104,111,72,98,100,120,94,95,91,102,102,102,100,98,97,102,91,96,100,95,102,87,91,106,106,100,99,101,92,102,110,105,106,109,93,101,107,101,96,103,105,127,102,107,103,101,98,101,89,105,103,102,90,108,104,102,76,104,101,103,88,117,93,103,113,96,95,93,105,105,113,100,92,110,110,88,95,96,97,100,106,99,101,91,97,102,95,109,90,101,109,101,88,103,98,105,96,84,111,102,102,101,112,105,103,106,83,81,91,97,94,100,98,104,94,98,86,102,108,81,106,88,92,98,96,100,94,86,97,94,97,90,102,105,109,113,94,97,94,99,109,95,97,96,101,95,104,75,92,93,96,95,93,105,90,107,94,95,67,104,96,111,90,91,108,97,94,100,96,90,99,87,105,96,99,108,87,93,106,92,116,100,108,97,104,89,106,104,95,101,97,101,102,105,101,98,103,93,109,97,97,110,103,97,102,94,110,113,92,113,101,95,104,98,87,90,88,99,106,105,95,88,98,102,96,89,98,94,99,102,95,90,86,99,93,110,96,99,100,103,96,99,101,109,103,99,106,91,96,98,108,98,87,111,85,95,120,102,98,106,100,84,97,95,94,113,96,95,98,104,99,95,76,94,103,95,91,88,108,95,98,89,92,100,97,101,95,111,94,100,94,93,96,91,92,105,90,98,95,97,106,89,99,104,88,104,92,91,97,109,106,97,105,104,118,91,105,110,83,99,89,101,101,84,96,92,106,87,102,107,98,96,115,94,94,94,105,98,97,79,99,96,98,90,94,97,109,65,86,93,95,96,91,94,91,92,93,88,101,92,100,105,128,104,90,97,110,83,93,99,98,102,111,101,96,91,100,95,90,101,118,103,103,94,94,97,102,98,103,97,91,103,102,99,102,88,87,92,94,92,90,106,92,101,97,81,106,100,105,101,97,99,90,94,93,103,112,102,99,93,100,96,102,98,70,106,93,91,87,92,94,91,101,101,93,96,100,107,105,99,113,96,105,103,115,94,95,91,78,76,103,96,113,106,87,99,98,88,120,93,98,89,90,106,91,84,104,106,108,100,109,89,108,95,96,99,96,104,92,92,98,102,100,100,114,98,94,106,87,88,112,94,99,93,98,88,100,100,97,119,99,101,91,94,108,94,94,101,98,98,91,95,94,88,91,106,101,94,91,106,90,98,105,84,103,95,102,100,88,100,105,99,97,87,104,102,94,100,92,100,100,110,102,97,103,95,107,71,98,112,100,102,95,107,97,105,95,99,102,101,107,103,97,98,95,95,97,98,103,88,98,99,104,102,101,96,90,99,88,110,117,98,101,116,102,108,88,107,100,94,97,88,93,112,94,96,102,98,105,113,125,98,75,107,84,94,99,94,98,101,104,87,100,79,94,105,101,94,91,91,98,109,100,99,113,103,91,88,104,98,96,94,105,90,100,99,111,91,108,97,88,107,97,82,91,125,101,93,111,107,94,91,98,104,88,102,100,93,88,93,102,104,94,90,102,105,89,104,106,103,83,90,91,92,100,100,105,104,96,106,104,94,104,95,101,99,91,106,93,94,106,104,97,103,104,91,79,102,87,87,102,108,106,109,103,88,104,101,91,106,100,93,110,92,101,99,97,100,91,91,104,104,91,102,89,91,91,87,105,89,107,94,104,122,95,87,70,103,100,103,98,110,106,106,103,100,96,112,97,97,103,93,112,100,97,71,93,93,95,102,101,114,89,106,96,100,108,102,91,94,97,91,107,96,96,100,105,91,101,109,97,102,103,94,100,103,77,109,98,125,81,104,115,105,92,96,94, +726.13837,102,85,97,93,102,84,112,100,90,101,111,96,95,104,92,101,85,110,113,88,125,106,103,105,86,87,80,104,108,101,104,82,96,93,88,94,97,92,93,105,97,98,84,106,110,127,99,114,102,91,91,103,104,107,99,108,92,104,107,105,95,109,113,106,98,107,118,101,93,97,102,98,105,101,91,97,89,105,84,102,79,102,107,82,96,88,101,106,114,99,95,87,93,83,102,82,95,90,97,107,106,88,88,92,102,108,104,114,87,91,103,80,111,97,103,91,89,95,109,82,106,88,84,110,113,102,112,102,105,86,89,110,112,102,97,102,88,112,102,97,119,99,92,98,91,92,94,86,107,111,111,90,113,88,96,110,101,96,92,109,88,94,100,101,102,99,93,97,97,108,91,75,97,97,101,98,87,89,101,95,108,100,101,99,105,113,100,87,109,101,103,94,100,91,102,98,111,106,104,94,97,98,93,91,113,101,95,104,104,113,80,88,99,95,103,95,91,107,92,94,110,86,98,97,107,90,103,108,71,99,92,87,69,97,95,91,93,101,102,102,100,94,102,96,86,96,97,125,104,94,113,94,103,124,97,93,87,100,88,102,105,113,94,99,92,100,101,85,102,93,107,93,80,103,106,116,101,114,97,101,108,98,102,99,99,104,96,100,104,99,95,93,106,109,104,86,105,94,105,96,87,91,102,102,96,97,101,101,109,108,104,106,108,101,97,104,98,100,113,120,95,92,105,107,95,101,93,97,105,106,98,96,97,113,100,97,109,97,100,100,97,86,98,86,102,81,102,105,94,106,100,107,98,100,107,105,107,94,91,94,96,100,98,88,99,102,101,107,95,101,92,105,110,96,99,95,79,97,95,109,91,107,89,114,96,96,103,95,101,77,107,97,85,95,83,105,95,97,104,99,100,93,96,94,97,97,94,91,95,105,91,110,105,111,106,95,97,91,102,97,87,104,88,108,99,86,86,98,102,95,99,95,90,99,99,95,85,104,98,74,91,101,97,102,105,62,93,94,97,100,102,99,95,91,111,100,102,92,104,92,89,91,103,106,112,97,100,96,101,99,93,107,101,89,95,106,97,103,100,109,95,113,97,99,109,99,105,104,106,95,98,116,101,102,93,112,104,100,98,102,103,81,98,106,95,99,109,100,69,97,99,92,95,95,99,105,101,103,98,79,91,101,93,100,96,90,96,99,106,108,79,95,96,93,92,101,98,102,94,97,88,108,97,97,105,112,98,94,108,94,95,96,106,96,79,102,96,102,99,105,103,100,96,107,96,103,112,83,101,103,95,92,107,93,95,112,102,96,103,94,96,96,98,97,103,98,101,101,104,103,97,102,99,92,113,86,94,102,97,103,105,94,94,100,93,78,94,101,106,109,95,100,103,104,100,98,104,102,102,107,122,104,116,90,97,100,97,109,92,102,91,108,98,98,91,95,110,106,101,92,110,86,106,96,129,92,108,83,99,104,100,110,109,101,108,98,108,109,99,99,101,90,94,100,91,104,86,94,101,105,95,108,94,92,98,93,108,100,98,104,116,108,96,94,96,101,74,107,104,101,100,97,93,118,96,105,92,107,96,109,94,101,94,88,105,90,100,111,105,91,95,106,104,100,101,98,95,103,99,94,96,92,117,116,92,91,104,104,99,107,106,98,101,124,98,98,104,99,104,101,110,99,96,100,91,109,91,107,106,99,107,95,86,103,106,101,102,111,104,102,94,99,90,103,98,104,91,58,97,96,100,107,103,103,86,96,102,98,101,96,102,96,104,101,86,104,88,98,96,102,89,97,109,99,109,125,105,115,96,104,87,100,94,100,118,95,102,99,72,97,132,113,96,103,105,96,99,95,96,93,93,103,98,105,93,113,109,103,97,91,106,99,96,98,105,90,93,97,124,106,112,99,110,99,95,100,95,79,94,90,93,95,79,90,98,95,111,102,79,108,95,91,101,102,102,102,91,91,102,103,99,91,96,98,98,99,107,87,102,99,102,103,96,104,83,110,91,94,110,98,90,106,113,101,107,98,95,126,97,99,101,62,98,83,101,99,107,95,103,92,92,105,112,103,100,99,100,100,98,103,95,97,111,99,101,94,102,126,98,99,94,109,93,99,93,85,104,106,101,103,108,97,99,94,85,106,106,104,101,107,95,97,113,108,113,96,109,107,73,112,97,104,97,97,113,100,96,104,105,105,99,100,101,97,99,107,101,94,93,76,100,109,102,112,107,105,93,113,95,106,100,100,96,96,107,109,105,106,114,109,97,75,104,97,104,97,92,93,103,102,89,111,91,101,91,100,100,97,90,90,108,106,110,96,100,100,98,107,97,103,97,101,99,89,93,90,95,111,104,88,101,98,92,100,109,101,98,101,101,92,100,99,115,115,100,98,99,103,109,100,107,91,110,98,95,112,100,105,95,99,95,114,106,101,109,103,99,98,121,100,94,101,92,103,98,104,95,94,89,98,98,105,91,94,83,114,112,114,104,87,109,102,98,98,95,136,93,100,87,100,102,109,90,112,107,90,106,99,94,98,104,90,99,93,96,60,86,88,103,84,102,95,88,98,92,99,99,104,96,103,100,95,102,103,92,95,99,105,114,79,95,95,102,105,102,101,84,102,103,95,97,87,99,95,101,93,89,105,101,91,100,105,96,113,94,109,95,105,95,92,107,85,102,109,110,90,99,97,100,105,90,94,94,83,95,102,98,101,93,99,92,112,100,94,97,98,123,111,96,98,91,94,89,106,96,112,117,105,94,102,97,103,93,97,124,103,86,101,101,97,103,102,98,104,104,105,101,103,106,95,109,98,102,104,98,93,96,110,114,97,104,105,103,94,105,109,98,108,105,106,101,94,94,110,96,87,99,91,105,99,89,99,95,113,91,113,91,97,93,104,99,98,101,95,107,117,99,108,92,97,107,96,100,103,95,83,96,111,99,95,102,96,84,101,105,110,104,97,84,95,104,98,96,89,105,104,100,95,88,91,102,101,100,99,103,102,96,102,101,99,91,88,88,107,112,101,98,93,107,117,98,98,83,98,103,93,98,101,105,106,83,102,107,106,97,92,107,105,100,100,108,101,120,92,96,91,104,90,89,101,101,104,90,117,104,102,102,101,105,101,91,89,87,98,98,101,98,102,97,103,85,104,92,112,109,103,99,93,88,90,108,113,97,105,95,136,100,108,78,101,104,95,104,92,92,95,105,101,100,114,104,91,90,97,103,104,107,100,123,93,100,112,95,111,102,110,109,114,96,71,95,87,106,93,93,102,90,100,95,114,90,79,107,102,100,103,103,107,105,96,100,98,92,97,92,98,102,97,73,91,91,76,94,108,97,92,90,87,87,101,82,82,93,102,99,104,103,101,101,95,100,74,98,103,97,103,102,90,94,99,89,100,119,114,96,102,92,88,100,98,94,96,89,85,101,96,106,100,97,97,89,98,106,87,89,99,106,106,105,101,128,97,100,107,112,113,91,85,101,96,108,96,99,99,109,110,108,98,94,95,93,100,100,101,87,97,99,112,102,108,98,80,104,103,105,100,87,105,97,98,102,96,98,98,111,94,87,99,102,94,88,104,87,105,97,94,89,103,106,93,77,104,64,97,105,98,95,102,104,96,105,100,99,99,105,80,110,96,104,116,97,99,97,110,95,95,101,107,86,104,92,105,91,78,81,96,101,107,99,97,106,88,95,125,96,98,91,96,102,98,95,120,101,90,102,102,103,74,91,108,100,104,122,94,97,110,107,109,105,100,114,98,108,91,93,101,97,101,99,104,93,113,107,113,105,108,109,99,93,94,116,104,103,107,95,94,102,96,98,103,99,104,99,102,100,87,95,98,98,84,100,102,98,100,106,103,94,101,97,89,90,92,96,95,101,94,97,103,93,84,98,83,91,106,104,101,110,91,104,90,100,98,98,96,103,96,97,75,89,98,94,99,89,99,101,96,91,104,95,96,93,95,101,100,72,84,95,90,93,100,102,98,94,111,92,97,80,97,104,103,99,93,99,95,115,90,113,102,107,117,101,112,101,105,104,104,97,97,106,98,107,89,109,98,104,101,106,109,100,96,100,90,108,91,97,107,98,92,94,106,93,96,94,92,103,107,106,122,83,92,106,87,97,105,90,107,97,95,102,113,104,102,87,87,90,91,113,107,98,87,99,92,100,93,105,106,88,99,101,113,95,106,94,112,93,102,95,106,98,111,110,102,104,94,91,93,102,106,99,90,113,89,106,110,100,101,85,113,106,92,94,103,117,101,97,96,97,94,97,100,113,116,83,99,95,100,102,105,106,100,94,87,101,112,107,97,96,109,98,93,107,100,97,105,105,103,96,98,91,104,98,101,97,112,102,94,107,117,96,94,95,108,104,111,101,104,103,105,92,101,89,95,85,103,96,102,91,98,103,88,114,95,98,100,79,98,98,94,100,108,104,96,99,104,105,93,104,96,120,102,86,108,113,101,105,93,96,91,97,93,96,113,103,93,105,101,106,88,100,103,93,102,83,98,102,98,111,95,109,109,97,85,80,102,102,109,121,90,101,100,112,105,111,92,88,101,105,94,96,98,102,93,108,99,82,90,112,105,103,114,97,91,114,97,96,98,105,102,100,98,103,88,96,92,109,101,102,105,104,113,91,100,111,98,96,100,104,100,101,91,100,108,95,93,108,91,102,108,89,104,119,102,113,103,104,92,90,96,90,103,97,67,83,110,108,97,107,92,94,86,97,105,95,99,103,102,102,104,110,91,108,94,107,92,92,98,112,95,96,91,87,90,107,96,100,96,94,97,88,100,124,103,113,103,100,107,94,88,78,114,92,115,94,104,87,101,87,115,100,111,85,94,96,93,100,101,87,78,100,94,102,103,76,91,112,94,91,98,91,93, +726.27979,119,91,120,109,103,93,112,92,91,98,98,89,93,101,98,105,112,95,90,92,95,107,108,92,108,55,97,101,103,103,100,113,90,92,103,91,101,96,104,59,98,98,105,102,89,108,97,96,109,106,92,109,113,103,93,78,75,87,92,81,98,103,95,102,97,111,89,114,116,86,92,108,90,99,93,104,91,95,98,100,100,107,93,105,88,102,115,124,105,94,87,99,94,111,103,95,103,93,106,96,98,100,87,93,109,110,110,103,95,98,98,113,100,104,99,75,84,108,107,98,108,99,103,112,105,113,110,88,110,108,100,100,92,105,113,90,102,95,95,95,104,108,94,98,101,109,101,105,97,96,102,119,97,76,93,84,93,94,100,115,106,103,97,96,104,101,92,101,90,100,101,107,102,95,102,91,100,95,107,95,95,95,104,114,101,83,96,101,90,83,88,112,93,106,96,102,94,103,83,109,104,92,107,117,106,114,107,92,109,107,117,100,105,95,98,87,92,100,88,103,60,113,96,105,99,99,109,110,105,100,88,89,110,103,92,81,108,106,95,100,93,87,122,92,110,113,99,92,97,102,102,102,97,109,91,96,91,94,106,102,100,111,96,103,83,101,93,92,96,104,105,103,101,113,114,106,96,102,97,102,103,101,89,101,96,92,94,101,98,92,100,95,102,104,95,96,93,105,108,93,110,89,98,116,96,107,105,105,102,107,99,124,97,98,101,87,82,96,107,92,100,109,101,90,100,103,94,95,97,100,95,92,117,110,104,94,119,96,106,121,96,105,96,96,83,100,109,87,104,111,107,90,97,100,99,101,109,99,78,109,101,94,93,85,93,95,96,112,102,94,102,106,102,99,103,100,118,104,90,101,90,97,90,103,98,92,97,101,107,92,109,98,96,89,118,113,91,100,94,99,96,109,97,105,104,90,97,101,102,109,90,95,97,108,94,103,109,97,100,91,91,96,95,98,99,98,95,97,102,93,95,105,112,91,121,93,107,94,101,86,92,102,102,103,88,102,85,86,98,101,90,108,102,110,97,89,104,95,104,91,102,112,102,110,100,103,134,102,102,99,106,95,113,92,87,84,83,102,100,99,82,107,116,94,99,101,111,71,96,114,96,98,88,96,83,84,94,97,93,105,98,97,94,106,93,105,97,99,103,87,99,94,94,102,105,92,105,109,94,84,110,101,130,100,109,98,104,102,102,93,100,91,107,107,95,105,114,104,96,115,92,97,100,106,106,100,81,95,100,111,110,101,98,100,97,88,101,101,99,95,87,106,99,87,92,87,94,84,110,104,99,89,98,96,101,107,101,101,104,106,96,95,91,96,97,101,102,106,88,97,94,111,100,95,99,100,102,99,98,101,120,104,95,107,96,95,94,95,97,105,90,103,105,122,101,89,100,111,108,87,109,88,102,98,107,112,92,108,108,101,100,92,102,97,90,98,100,97,108,107,107,99,105,99,102,93,110,89,101,116,100,99,99,104,105,104,97,104,105,103,104,111,108,106,78,103,81,84,109,94,111,106,101,97,96,105,93,97,109,87,107,101,98,98,102,104,92,99,93,92,91,106,90,102,97,97,104,110,102,96,91,88,102,101,101,85,104,91,102,111,102,88,103,97,94,99,100,94,104,86,101,98,98,90,100,99,105,96,103,95,97,96,103,92,116,99,100,105,112,97,105,93,97,107,105,95,92,95,100,103,112,101,91,98,105,100,111,114,103,97,102,83,99,97,89,96,72,108,93,98,98,109,83,94,91,107,103,113,91,88,109,96,77,99,99,99,112,89,99,102,102,106,109,98,105,100,112,100,92,99,91,96,91,83,102,101,108,101,113,86,104,93,95,107,107,94,109,106,94,95,118,103,109,102,104,103,107,106,91,98,96,110,91,102,97,84,110,104,106,95,97,106,86,103,102,93,93,79,96,127,100,94,102,100,86,90,96,106,91,95,100,96,103,96,92,83,101,88,102,97,98,105,96,99,93,89,109,99,86,95,85,95,109,101,102,99,84,109,112,102,93,99,105,95,84,93,100,103,91,100,104,92,97,102,97,101,104,100,102,99,96,87,114,100,102,101,111,108,94,105,105,109,102,100,93,104,104,105,99,94,107,100,94,101,95,98,103,95,110,108,105,104,117,111,95,105,95,99,113,103,100,95,105,84,102,97,103,109,103,108,103,94,104,91,103,76,102,103,96,95,92,103,92,98,95,98,78,107,91,94,99,95,101,98,108,93,103,92,95,88,89,92,101,98,109,104,102,107,100,105,96,95,98,91,96,110,106,107,104,95,91,102,91,117,107,109,98,108,98,105,105,102,103,107,103,93,96,95,91,100,105,108,113,93,100,93,94,120,93,105,106,100,98,93,88,95,93,107,98,99,102,102,94,110,96,95,87,100,121,98,93,118,103,93,90,109,118,97,99,103,86,63,105,100,94,89,111,96,98,96,113,102,95,110,113,99,88,108,98,98,104,106,99,98,93,108,95,100,99,69,98,93,93,105,100,100,101,104,96,97,91,109,90,108,95,100,98,80,109,98,101,99,99,102,80,104,100,100,103,92,104,95,101,93,97,101,94,102,99,95,108,98,97,90,101,96,102,85,100,110,105,107,112,92,96,97,91,102,96,99,103,86,102,94,94,97,100,90,98,99,100,92,102,99,99,95,97,99,97,108,89,115,100,100,95,92,105,102,99,102,109,89,108,97,97,100,94,96,105,106,93,108,102,109,109,95,101,111,86,102,104,121,95,87,99,109,107,96,108,99,102,98,106,93,109,92,84,91,87,101,115,88,102,95,87,107,104,102,111,95,104,91,107,97,112,103,102,98,110,91,101,108,95,100,100,92,100,103,88,110,110,100,92,99,102,96,101,93,98,105,98,111,107,105,103,101,83,110,99,112,100,93,113,98,100,105,111,101,96,92,91,106,86,101,98,84,98,103,115,103,88,109,97,91,90,101,107,103,91,106,92,88,98,91,96,107,98,99,96,71,107,100,88,108,99,93,101,96,100,91,94,102,98,100,103,88,100,97,87,92,97,107,97,105,95,94,103,91,112,91,95,87,84,92,96,92,108,98,108,91,83,112,106,99,92,105,91,99,91,98,86,96,97,119,100,87,113,85,95,107,104,83,92,106,103,86,97,106,110,92,83,100,98,106,103,104,91,82,79,97,104,87,101,104,101,100,111,94,110,124,93,93,103,102,100,88,96,92,112,88,97,94,88,92,96,93,94,97,106,96,100,97,110,94,85,103,100,79,91,104,96,103,99,78,95,98,89,88,91,86,99,91,109,115,98,91,92,100,97,107,104,112,98,101,112,99,104,86,98,94,97,96,115,94,114,101,84,109,103,97,91,103,104,109,77,105,102,108,96,122,100,88,90,106,99,95,75,115,102,95,97,94,103,95,109,113,96,88,94,100,87,103,95,100,101,98,117,98,95,88,113,99,110,84,102,94,94,98,101,108,86,102,92,93,95,91,101,95,93,84,95,96,90,94,104,103,101,99,81,99,109,107,90,117,94,102,94,104,96,98,102,105,104,113,101,104,109,104,92,95,101,98,93,89,98,102,104,99,98,94,109,84,111,101,94,97,111,87,102,102,92,113,108,106,99,92,102,99,102,99,95,102,114,109,90,85,101,101,96,105,97,94,104,113,92,98,105,99,105,100,106,99,100,105,104,98,130,104,103,105,109,86,99,115,95,105,94,101,117,103,95,104,97,103,108,108,101,100,96,103,82,91,108,92,104,107,99,100,102,71,96,93,99,93,89,105,86,93,105,110,100,106,101,92,106,96,106,100,117,99,95,90,101,82,90,98,96,75,97,101,97,102,85,102,87,109,102,88,105,103,100,96,92,94,109,100,98,95,97,105,102,93,97,98,95,100,96,90,93,91,108,99,107,90,88,93,97,91,94,95,92,105,108,93,109,95,94,100,95,100,97,101,95,93,102,99,98,69,94,94,97,86,103,91,95,108,103,102,88,102,101,99,98,102,94,81,91,95,100,105,125,105,102,100,92,98,104,107,97,100,106,113,87,100,100,108,112,110,103,103,89,99,75,97,93,88,97,101,99,97,98,108,98,93,104,97,93,101,98,93,91,105,105,104,102,87,96,98,101,97,99,118,92,100,101,101,102,99,99,101,97,96,100,95,103,105,104,98,93,90,95,95,98,91,98,106,108,114,98,95,97,113,95,109,94,107,109,97,101,94,112,69,103,90,99,91,94,95,102,89,92,81,96,91,113,107,91,87,100,96,93,99,97,85,70,97,101,99,83,96,99,104,113,91,105,90,109,93,109,108,97,108,91,100,109,105,96,101,97,101,98,101,106,105,104,107,91,100,93,108,102,91,92,121,108,94,105,109,89,104,105,98,94,109,91,113,105,106,109,97,96,90,101,93,89,102,88,100,86,97,101,96,101,88,96,92,102,87,96,102,97,113,103,90,99,92,101,90,93,95,98,95,101,100,102,101,109,98,102,101,99,87,93,101,91,98,97,99,107,87,112,91,96,122,96,100,107,104,93,106,101,114,106,101,99,91,112,105,99,111,93,103,97,100,99,100,104,100,112,91,99,92,100,100,106,96,98,106,105,100,93,104,99,107,103,101,108,97,98,88,95,94,101,90,106,101,107,100,91,93,110,94,106,100,102,108,104,95,91,92,103,89,107,103,104,101,102,98,92,97,114,95,113,103,94,97,93,97,103,97,110,92,100,79,98,97,106,102,99,98,101,94,115,99,91,104,93,111,96,95,119,93,94,108,89,98,105,96,99,90,97,94,108,89,94,85,103,101,94,108,106,106,94,106,120,120,114,110,101,97,93,102,93,102,103,91,97,102,115,93,105,84,81,97,111,98,83,92,100,93,105,112,100,71,95,90,99,93,96,116, +726.42114,92,95,83,93,112,83,101,85,104,85,98,100,89,100,98,113,95,104,85,105,101,102,89,98,98,93,101,84,100,103,102,106,112,88,107,104,102,93,96,94,95,100,92,103,77,100,102,100,95,103,110,111,88,87,87,107,92,100,100,91,96,103,98,82,115,104,93,92,99,98,104,97,97,97,100,105,97,97,80,91,95,109,112,97,106,77,95,94,101,119,75,91,101,105,98,103,102,96,99,99,96,112,78,78,104,126,102,98,92,97,101,101,102,97,113,96,101,103,88,88,80,105,98,99,104,99,118,91,91,102,101,108,96,104,108,105,96,70,92,90,80,109,96,103,106,87,105,91,92,89,86,97,104,104,90,87,88,105,95,95,97,114,113,98,101,94,94,88,100,102,89,92,88,98,108,99,101,95,89,102,101,102,88,103,91,94,99,87,93,110,110,103,107,96,104,98,92,86,103,94,109,86,103,104,97,102,114,115,100,123,110,103,99,96,69,100,88,96,59,94,96,79,108,92,94,98,90,97,109,80,103,95,87,105,102,87,88,99,91,104,83,96,92,78,95,105,103,91,102,113,119,94,100,96,99,106,85,104,85,91,93,105,113,108,98,104,87,103,97,85,88,99,106,105,88,106,94,105,100,91,103,102,89,82,109,95,99,97,96,92,97,92,106,91,96,107,92,98,101,99,83,98,91,106,98,97,97,85,100,99,98,95,95,100,88,79,95,90,96,108,100,112,91,94,106,95,91,94,100,98,101,80,95,109,102,88,98,96,97,96,104,94,98,97,97,87,102,106,88,105,95,90,88,108,83,91,87,98,99,95,105,101,112,93,107,110,99,116,100,105,101,96,93,95,95,85,95,97,95,95,95,99,96,104,101,103,103,87,95,99,105,86,92,100,96,105,89,93,96,99,111,103,102,104,93,100,87,94,102,86,103,69,88,99,78,96,94,96,98,94,94,87,90,97,99,96,89,103,84,94,87,91,92,118,94,103,100,106,92,94,105,98,94,99,89,98,104,93,111,103,99,101,96,108,102,95,93,117,91,90,100,102,109,101,102,91,106,91,78,94,96,93,98,95,97,96,102,102,91,103,90,99,107,86,95,96,107,100,99,95,95,102,104,91,86,100,97,100,102,109,103,95,89,98,92,102,99,91,110,102,106,103,100,108,102,100,96,84,94,81,101,90,100,96,90,103,102,100,92,93,102,87,89,97,104,103,98,102,95,98,97,90,100,107,95,110,94,73,110,91,109,109,101,92,97,87,91,94,110,89,93,98,92,99,103,87,100,97,90,104,100,105,84,97,92,109,100,87,82,96,96,98,102,103,100,96,107,91,88,113,105,100,91,97,101,110,83,101,111,100,89,98,93,101,104,95,106,100,94,92,103,82,105,88,102,90,98,91,108,92,113,98,100,101,102,102,94,108,85,94,87,98,99,85,93,101,100,99,99,108,96,109,101,103,104,90,109,99,94,84,90,106,94,103,94,91,102,104,100,99,91,96,94,90,88,105,134,90,93,91,90,105,90,90,93,94,103,100,80,99,108,94,109,95,102,98,93,103,100,94,96,104,95,102,111,103,105,98,87,94,100,97,92,91,99,102,98,99,104,106,101,96,103,102,90,88,91,97,97,103,101,103,88,98,111,91,100,99,91,93,116,98,98,104,97,97,104,79,95,91,99,96,109,94,101,104,90,96,90,110,98,107,97,91,100,95,96,100,102,102,92,90,85,74,104,100,82,98,104,89,111,89,100,105,105,97,82,99,106,84,90,100,92,109,84,109,109,78,97,103,101,100,92,95,103,92,100,94,94,114,95,91,102,101,93,84,116,92,100,84,93,97,96,104,99,93,99,100,98,97,98,102,97,93,104,105,105,96,95,90,75,95,106,113,92,113,93,90,89,98,95,100,98,92,101,101,93,91,106,89,77,95,110,98,104,91,104,95,88,97,96,99,100,97,78,99,92,108,95,90,97,94,91,106,115,104,98,91,91,100,96,110,97,98,89,98,103,113,104,100,95,99,108,97,83,96,95,97,102,95,93,110,97,97,102,99,92,98,84,101,100,99,110,98,95,89,109,95,95,89,102,99,99,108,91,104,80,91,105,101,117,107,100,92,104,95,99,98,95,91,105,96,112,102,104,106,110,93,85,102,84,92,105,88,101,91,91,109,92,96,113,104,100,90,85,100,97,98,92,102,88,101,104,107,62,93,93,88,102,104,106,95,90,98,94,103,93,103,101,103,99,117,98,105,87,90,84,103,96,112,101,90,98,97,107,94,89,87,84,77,88,88,95,94,93,117,91,90,96,91,107,100,97,103,100,106,95,98,91,88,102,95,97,98,92,90,105,113,100,106,94,108,90,86,90,89,98,108,76,91,119,86,104,93,84,90,92,102,103,94,99,93,105,91,89,101,101,103,102,100,93,105,103,90,104,112,91,87,91,92,98,106,92,102,104,106,95,92,102,108,114,110,106,91,101,109,113,83,101,94,90,95,101,112,92,118,112,97,101,103,99,113,114,109,105,110,94,110,85,111,107,98,107,96,96,102,112,106,103,107,106,106,106,84,96,95,90,96,107,78,95,111,86,104,102,119,109,98,104,100,94,96,107,111,91,116,105,119,109,99,96,92,66,101,97,127,97,100,108,105,108,103,97,98,99,101,97,104,110,101,92,110,101,94,129,97,113,88,94,106,100,105,105,105,102,114,100,99,94,96,88,87,105,104,98,100,112,111,104,110,110,91,90,107,98,103,100,99,82,97,106,89,98,116,112,101,106,95,99,96,99,91,102,76,101,95,107,102,114,102,111,95,104,108,95,98,103,96,110,106,98,98,113,96,91,113,95,99,100,102,112,104,109,103,106,94,106,112,94,99,99,101,107,112,102,100,106,104,101,105,98,116,105,102,99,104,106,112,103,96,99,110,110,105,97,101,98,101,115,103,96,101,106,92,96,91,104,105,94,98,102,95,104,95,107,112,106,105,106,104,108,97,77,101,107,101,106,107,109,109,90,96,89,110,101,106,105,102,102,103,83,58,103,91,99,109,104,106,103,104,92,101,86,111,90,88,91,98,112,107,100,105,107,107,121,97,97,104,101,79,100,104,101,109,94,100,101,108,99,94,91,96,95,105,118,108,87,98,91,103,101,93,109,99,100,103,100,92,105,110,122,96,86,96,93,106,103,93,100,108,98,102,92,105,95,97,96,111,94,117,100,107,98,99,102,93,101,100,99,94,108,89,98,114,103,89,107,94,106,117,101,99,111,101,105,97,95,95,103,98,109,110,98,95,75,100,70,108,110,96,91,108,98,112,91,110,106,79,94,90,99,109,95,86,100,95,99,100,105,106,108,107,95,98,113,104,90,105,107,109,91,100,100,99,107,98,106,90,94,110,101,97,102,105,89,97,99,84,104,102,76,94,125,95,108,101,99,94,97,110,98,103,109,104,96,94,99,100,94,103,108,102,103,91,92,111,106,90,105,103,103,105,109,94,99,104,108,110,101,96,103,103,88,97,94,94,112,107,109,94,89,93,103,106,98,102,94,99,98,92,97,79,94,96,104,110,97,107,106,98,98,101,117,102,110,102,95,104,97,104,89,110,97,96,96,108,105,104,104,100,99,104,112,90,97,104,95,101,109,97,97,92,100,105,99,100,87,76,104,108,111,99,113,101,73,98,80,91,92,80,105,104,91,113,105,104,97,101,97,94,103,95,116,93,107,102,106,108,99,101,98,102,97,96,91,109,101,97,106,104,95,101,102,104,102,116,100,89,101,89,72,100,90,112,100,93,111,111,100,100,99,109,102,103,104,118,87,107,100,87,99,99,107,104,93,103,105,98,99,100,107,91,103,97,100,109,87,107,98,105,101,91,93,104,108,101,116,103,104,100,118,98,92,96,106,95,99,96,104,92,104,101,110,107,91,109,100,97,100,108,106,99,102,107,85,100,121,100,106,106,89,87,103,93,107,91,104,95,89,108,93,99,102,103,100,83,101,96,94,109,105,109,72,104,76,87,116,99,89,102,104,104,90,91,101,109,105,105,109,101,105,95,87,103,82,98,98,106,99,95,104,103,102,104,109,104,99,103,95,104,102,118,99,95,106,105,107,88,91,101,91,98,93,88,104,100,109,97,109,120,103,97,97,103,93,98,97,103,92,96,119,113,112,93,97,102,96,100,105,89,103,87,98,97,91,99,98,101,101,87,95,94,104,111,109,105,98,109,104,99,95,99,104,107,96,98,97,85,99,74,105,99,106,115,73,110,99,100,85,112,92,83,91,102,99,98,110,106,101,95,81,107,96,88,97,94,105,101,99,105,94,104,95,88,107,93,67,91,102,105,90,112,68,105,103,93,112,91,97,99,104,94,86,90,98,97,102,102,104,95,92,75,97,97,104,110,95,94,95,99,100,101,99,96,101,102,91,77,94,97,96,97,95,99,97,91,87,61,87,94,110,101,90,103,95,114,97,100,80,111,100,95,100,73,101,95,110,99,102,97,100,97,98,98,104,93,97,99,112,104,96,102,96,111,97,92,99,91,102,96,95,62,87,91,82,97,106,97,93,100,105,100,108,107,109,97,97,108,108,100,102,103,111,103,96,103,99,95,93,95,98,98,98,114,102,101,101,98,92,85,87,88,106,83,94,103,114,98,113,93,101,92,109,101,107,83,75,96,94,91,103,110,105,98,103,98,90,105,96,108,104,101,94,71,101,116,85,99,92,99,89,84,98,99,102,91,91,96,97,92,109,93,107,107,91,88,87,97,92,100,102,102,109,88,99,102,94,106,113,95,104,88,112,95,96,97,96,99,80,94,94,91,101,94,64,93,91,103,103,95,108,106,108,101,112,109,98,111,85,98,91,102,104,108,127,101,98,111,91,96, +726.56256,105,101,66,88,88,116,83,98,95,105,118,80,99,115,101,91,74,99,101,110,109,95,110,95,91,87,104,104,92,92,83,100,102,109,84,107,96,82,99,95,105,106,112,105,115,122,99,102,99,103,99,88,105,89,93,87,99,104,109,95,122,100,96,86,96,100,100,98,98,94,90,103,99,109,101,110,84,93,98,90,102,88,100,100,91,95,96,91,100,103,104,100,99,113,80,97,100,93,103,98,102,75,104,108,105,114,102,89,112,87,91,107,97,94,111,92,90,102,100,98,109,92,99,102,112,91,114,98,100,95,102,101,87,97,97,78,79,97,92,103,91,98,101,87,101,105,101,95,101,82,98,100,100,105,108,98,101,97,98,101,103,93,103,105,110,101,95,93,94,95,92,112,95,95,114,84,106,85,105,95,100,91,93,97,100,100,87,80,97,93,105,97,99,79,83,102,91,95,116,73,94,95,103,109,97,79,100,110,112,93,92,94,91,96,101,107,113,97,87,96,99,100,99,104,96,96,104,87,99,97,94,104,97,100,105,101,93,97,100,91,96,103,94,105,70,100,96,110,105,103,99,98,96,97,93,105,101,102,97,107,94,91,102,91,95,100,104,90,106,90,100,89,101,112,106,102,97,105,100,101,100,89,91,96,86,106,103,91,98,91,98,96,102,90,96,113,112,97,94,99,89,101,85,109,87,108,92,96,78,93,95,98,96,102,96,109,95,101,105,101,95,96,107,98,95,92,91,92,104,91,93,99,99,87,95,98,99,91,93,96,95,93,93,101,88,90,96,104,121,100,80,98,100,103,96,108,97,95,101,85,91,105,92,108,100,99,109,99,99,103,101,90,103,97,109,94,101,106,99,112,107,100,102,108,85,118,108,92,100,90,99,86,95,100,102,105,92,90,94,100,102,99,96,92,94,94,88,93,90,101,95,91,96,98,102,76,77,101,113,100,100,86,88,101,93,106,100,84,117,109,92,99,87,103,97,95,103,110,108,86,102,94,98,80,94,98,89,95,93,103,93,78,82,102,105,101,90,100,90,99,94,89,107,99,97,104,110,86,102,100,94,80,104,90,100,87,103,102,102,85,110,116,102,98,96,92,96,92,102,91,98,106,97,107,95,101,95,92,105,88,115,99,97,86,81,104,89,101,99,104,96,93,106,90,93,97,92,105,98,90,98,100,102,93,88,99,117,94,102,92,91,105,116,100,96,104,94,91,107,95,86,96,93,97,95,95,105,105,101,107,95,99,99,85,87,98,80,96,103,91,96,102,96,104,102,76,114,101,98,99,100,104,87,94,109,100,97,104,101,98,111,99,95,98,95,105,103,93,93,96,99,104,94,97,97,91,106,104,99,101,98,95,97,96,109,84,94,88,100,92,97,96,108,90,101,100,99,92,93,96,99,97,102,105,88,95,101,83,98,96,98,93,95,87,91,93,95,91,94,95,103,100,96,101,94,93,91,95,100,110,98,107,100,106,100,86,104,99,88,92,107,103,90,94,102,101,101,101,100,91,115,103,96,116,94,97,107,93,101,88,95,101,95,83,78,105,90,95,100,97,95,118,95,110,84,95,98,90,109,101,95,90,90,72,112,107,93,105,87,99,103,103,88,92,102,88,90,103,106,87,112,99,90,98,98,92,97,74,73,104,96,97,88,105,110,85,99,100,102,92,95,101,96,92,96,96,101,96,101,100,99,91,100,91,105,98,92,98,93,92,67,99,97,119,104,93,90,93,93,97,87,104,108,91,125,88,103,99,100,86,97,95,88,89,96,81,98,97,96,99,101,102,96,109,72,91,91,93,89,99,100,98,96,93,95,101,83,84,113,102,110,100,87,85,100,103,107,94,90,96,102,107,107,101,95,104,92,98,105,98,98,105,100,91,93,106,95,93,101,95,87,87,102,100,98,95,99,93,105,97,98,91,90,93,102,95,101,87,80,108,101,103,96,110,90,93,96,101,87,92,103,93,102,99,91,101,101,80,91,91,105,99,95,105,79,99,98,103,91,110,107,97,101,97,102,88,90,92,100,98,105,95,99,102,97,113,93,95,98,96,101,100,113,91,105,96,100,90,105,101,101,108,103,94,92,93,103,92,105,105,84,94,98,117,103,103,89,87,109,82,96,113,108,96,92,104,103,121,111,100,101,93,95,109,95,103,101,92,99,97,108,90,93,72,81,94,107,95,89,95,107,96,109,93,95,105,95,93,88,98,95,116,100,98,114,99,101,106,105,102,88,94,105,97,100,79,102,92,95,101,105,95,98,112,103,106,109,109,95,97,92,114,101,96,96,92,97,97,94,103,95,94,100,100,99,104,106,112,97,99,97,106,88,96,102,101,95,98,96,96,102,110,86,89,89,108,97,92,90,97,99,102,102,97,103,92,111,99,100,110,84,87,88,108,105,91,93,104,99,96,91,100,91,94,90,107,92,94,90,105,97,110,85,98,104,95,93,91,99,86,99,114,92,83,107,103,101,94,101,87,93,96,100,100,95,101,97,98,102,95,91,105,95,95,104,94,102,104,93,90,103,97,93,95,98,101,105,103,100,94,90,114,93,100,100,107,105,94,96,81,109,98,93,97,89,86,94,104,99,110,105,96,106,116,97,108,112,101,102,104,104,109,94,94,101,96,84,102,89,103,91,97,95,76,88,100,81,84,104,102,87,93,94,98,99,105,101,99,90,95,100,99,94,64,100,113,94,98,101,102,100,107,105,108,96,103,103,106,112,99,67,110,89,88,108,94,89,102,106,96,99,95,94,84,97,74,117,76,99,96,93,105,82,100,96,90,95,91,106,97,102,96,108,96,98,96,97,101,113,84,100,102,115,94,110,101,95,100,96,102,95,90,104,104,98,102,97,96,105,109,97,105,100,108,108,97,95,98,92,98,97,99,101,110,94,97,98,104,94,113,99,83,97,85,91,97,110,89,86,97,89,96,99,97,106,95,93,101,104,98,109,105,95,96,106,98,85,88,89,106,100,98,98,88,104,104,96,89,86,85,94,95,91,102,92,109,87,84,98,106,69,93,107,90,108,98,104,95,94,99,100,92,93,93,106,97,98,106,102,80,111,95,95,108,94,77,103,91,99,98,86,113,91,99,97,87,100,104,105,81,102,88,109,96,97,87,95,98,91,102,107,94,97,91,92,94,99,107,102,96,102,95,100,95,100,97,101,93,91,95,100,95,97,105,98,90,105,94,103,89,95,105,113,105,113,99,106,97,98,101,94,108,91,112,102,120,103,107,91,106,95,104,112,92,107,91,84,97,107,90,92,95,112,105,98,112,97,109,80,108,87,100,79,104,104,107,95,90,97,94,111,106,98,98,98,88,109,97,89,111,89,108,87,85,98,93,106,90,98,86,113,113,102,86,100,104,99,94,98,107,95,99,85,97,96,105,101,98,112,105,107,104,100,94,96,94,94,98,81,98,97,104,110,101,109,94,99,94,97,91,108,114,101,112,108,104,96,101,103,97,99,91,93,112,102,113,89,96,91,88,101,100,98,96,98,105,94,88,90,106,99,96,102,106,97,103,90,106,101,103,99,90,96,96,87,114,95,92,98,98,93,112,98,92,101,96,94,107,94,98,102,105,94,105,92,97,95,100,86,88,96,98,102,98,86,99,95,92,98,116,108,98,105,109,87,103,93,93,104,97,94,108,99,109,101,97,96,91,103,94,100,108,105,108,92,96,79,95,101,93,95,91,88,105,95,110,100,94,94,101,96,108,91,94,98,88,107,97,95,102,101,89,114,79,81,103,101,96,92,94,103,91,97,90,98,105,94,121,106,88,107,102,104,108,129,87,98,98,92,97,85,99,87,91,96,90,87,97,104,96,94,90,89,98,100,102,99,96,97,104,95,88,89,102,95,90,94,93,100,108,98,84,97,90,109,123,108,88,90,93,109,97,102,103,84,84,102,94,104,105,120,109,89,110,99,108,94,100,94,109,115,101,104,103,92,103,100,94,90,90,101,105,86,94,101,96,96,88,87,100,97,78,95,113,110,103,102,93,108,93,114,104,103,105,83,106,95,103,100,116,106,104,98,112,107,101,100,123,105,100,97,94,98,92,95,92,100,101,106,99,88,100,115,80,102,84,94,94,99,89,98,88,105,102,92,101,94,100,84,108,89,114,91,92,108,101,102,118,96,109,100,92,110,96,103,99,87,106,95,95,93,91,84,104,95,104,107,107,92,93,99,93,105,90,111,84,108,108,95,87,97,98,132,108,105,105,104,99,102,94,103,89,104,95,99,100,92,99,95,120,92,109,96,108,109,90,93,100,90,96,112,94,95,98,97,96,102,99,100,101,98,97,96,105,95,86,95,98,95,92,105,87,90,105,110,98,88,97,91,98,93,98,101,101,94,101,123,88,104,96,90,86,91,100,95,92,90,95,105,96,103,106,89,94,102,101,113,94,133,109,100,109,103,105,93,102,112,85,96,100,91,108,104,136,102,81,97,102,107,93,93,69,92,107,110,110,99,113,97,99,69,95,91,101,101,111,104,108,104,94,100,115,98,101,116,88,95,96,104,101,92,113,95,117,103,101,106,98,99,92,100,94,98,103,100,101,87,98,96,105,91,117,95,111,97,108,113,100,106,98,100,109,93,89,102,102,109,102,100,114,83,101,111,109,106,87,106,97,96,102,104,95,115,93,80,101,102,78,98,93,96,99,108,100,101,100,99,110,96,85,102,108,95,83,83,126,117,95,100,105,103,113,92,100,95,94,92,104,102,108,85,107,91,94,100,97,107,93,96,101,100,87,109,102,90,103,100,107,101,109,91,90,93,101,96,112,104,87,91,116,102,91,84,102,93,99,100,90,102,108,109,116,107,97,108,98,95,101,109,88,112,88,102,94,108,109,80,95,94,95, +726.70392,106,85,98,100,88,92,97,97,101,96,81,104,100,99,114,79,101,114,112,103,90,105,94,105,97,94,111,121,106,91,98,91,106,100,110,96,100,104,101,110,108,104,105,95,111,88,89,98,105,120,110,105,93,113,99,95,100,107,99,98,97,105,107,98,107,107,104,89,99,96,101,98,94,101,96,100,101,101,111,98,96,91,94,95,94,82,104,114,101,108,97,102,101,101,97,101,97,104,100,105,97,100,93,99,91,90,87,106,96,97,98,96,88,95,93,98,83,98,101,105,105,106,95,94,80,100,109,103,117,106,101,110,109,99,100,97,101,98,92,94,95,107,78,96,97,94,102,94,91,99,98,98,105,100,111,99,91,97,103,100,109,90,94,100,107,98,104,94,106,100,105,104,82,100,108,101,97,87,108,85,96,107,104,111,108,99,102,97,84,98,87,107,109,118,95,89,93,103,80,105,94,93,105,101,81,105,107,101,111,97,98,84,101,105,130,99,101,101,108,89,101,82,100,104,86,104,103,101,96,100,97,92,90,113,100,99,105,103,100,102,94,102,99,101,94,100,106,124,95,107,78,95,85,102,125,103,96,103,109,108,93,101,98,97,100,98,87,98,103,93,95,112,115,104,98,95,97,98,97,95,101,101,99,91,103,101,97,99,103,107,91,110,99,99,105,98,103,100,101,104,108,97,94,105,88,104,107,118,87,97,94,111,100,99,98,95,97,105,115,94,101,102,102,93,113,92,103,99,99,116,91,77,101,97,87,75,98,111,92,97,109,99,97,99,114,79,112,89,106,114,104,102,104,105,95,106,98,114,97,90,111,99,108,85,91,98,95,100,93,106,97,93,106,93,96,94,99,102,92,110,103,94,100,98,104,99,92,80,105,100,105,96,91,90,98,102,86,95,103,108,97,97,100,96,77,91,99,97,95,96,95,100,105,106,110,91,99,93,90,97,100,97,125,95,105,81,97,103,91,101,93,95,98,112,110,95,100,103,109,95,104,94,105,109,100,102,100,92,117,103,84,93,103,100,105,98,93,108,94,92,101,100,101,110,100,115,103,97,100,103,103,104,102,93,99,87,92,109,104,102,100,105,112,108,97,92,95,97,94,101,109,97,102,98,93,81,68,85,98,100,100,91,108,102,96,101,99,104,94,98,96,87,75,104,106,101,103,98,105,97,92,105,97,113,103,105,97,104,100,100,103,99,88,94,94,112,103,99,113,104,90,111,103,95,99,102,98,103,106,93,103,104,102,104,94,89,96,106,84,114,103,81,103,111,113,99,90,109,86,95,97,84,89,82,106,98,98,91,101,97,100,100,83,110,97,102,104,100,101,97,100,114,91,114,99,101,100,97,110,101,95,105,99,102,112,86,94,103,102,92,103,67,109,106,97,102,90,106,103,100,97,104,92,93,100,105,100,104,115,99,100,107,109,99,78,97,103,97,99,96,96,94,97,97,96,98,103,100,120,102,96,118,98,100,96,99,98,105,97,88,91,104,109,112,97,101,104,97,114,94,100,102,97,102,90,92,107,99,100,94,104,89,107,94,102,101,99,97,88,112,98,95,99,103,106,93,107,83,100,85,94,97,99,96,102,100,100,100,90,96,106,87,103,104,105,96,98,93,107,92,106,92,99,99,96,91,97,95,96,99,105,104,101,102,101,103,97,102,93,98,99,103,94,108,97,96,95,109,99,109,101,96,87,94,105,100,97,104,102,91,114,91,105,99,98,94,90,91,103,89,108,102,92,105,97,85,99,112,105,98,100,100,96,99,90,106,92,110,97,102,104,110,98,115,95,98,106,103,95,90,92,108,97,107,96,90,99,96,106,105,106,84,96,95,106,89,100,101,95,97,101,88,96,99,95,103,112,92,92,104,100,94,119,96,98,99,100,88,114,103,65,94,116,103,106,94,100,95,103,99,108,108,87,102,96,74,97,104,95,95,104,82,85,94,106,96,106,108,84,87,105,94,82,106,100,83,100,105,95,96,89,75,92,106,95,99,103,105,105,98,88,98,82,89,100,78,119,91,106,93,102,109,108,94,90,102,101,109,87,132,108,98,103,95,103,92,78,78,90,98,96,104,103,97,101,101,97,98,108,91,94,102,101,113,95,99,98,90,93,89,98,94,99,94,100,90,116,96,98,106,102,111,97,96,108,92,86,120,87,93,107,91,100,105,109,110,100,83,108,105,87,91,104,99,110,105,100,94,89,95,103,92,102,101,95,92,102,101,100,96,94,105,93,94,99,92,95,100,94,95,109,89,101,94,102,109,105,101,91,106,92,109,92,106,95,99,100,101,93,115,117,106,100,88,112,100,103,88,103,84,91,105,86,93,110,91,103,102,103,99,97,91,99,101,81,67,90,118,102,101,105,102,98,93,91,97,80,98,101,95,94,97,104,91,98,106,99,107,86,89,101,103,72,100,109,98,92,96,106,93,95,85,98,112,95,103,96,96,109,94,100,128,107,92,91,100,92,102,104,108,102,81,100,105,109,91,91,88,102,97,93,107,109,113,76,101,105,93,89,101,103,97,100,98,93,105,106,95,99,104,94,102,106,89,102,88,85,117,102,94,101,94,100,96,111,62,98,97,110,90,95,81,107,106,100,102,98,99,102,94,109,85,70,101,105,103,94,85,105,95,103,98,101,95,100,101,102,99,98,109,100,116,116,109,98,101,103,103,102,107,94,101,97,98,103,99,112,86,103,103,97,103,120,97,95,103,107,110,91,84,95,104,91,93,109,105,107,91,103,100,91,98,100,102,102,97,109,97,95,107,96,110,101,98,67,96,100,98,108,93,96,103,103,96,96,93,92,98,106,107,98,94,110,98,93,104,91,106,107,109,105,100,103,111,104,120,98,98,106,110,106,104,102,112,112,100,115,100,70,95,100,97,99,120,101,107,91,107,100,87,119,99,89,104,104,97,102,102,106,99,90,108,98,116,89,88,107,95,107,83,114,79,96,96,119,87,96,105,107,108,102,106,109,102,95,96,94,83,99,90,106,95,88,92,94,102,91,99,102,120,94,110,101,112,96,101,104,105,112,104,91,99,109,99,91,107,102,94,88,89,104,107,98,86,101,97,100,97,95,93,86,104,95,97,104,89,92,105,111,97,101,98,100,107,101,81,93,109,89,93,101,95,99,104,96,99,85,111,98,96,105,106,96,90,98,90,100,103,94,111,97,98,84,106,95,107,102,104,104,109,105,108,116,106,95,82,98,91,101,100,94,113,101,106,105,95,113,104,97,85,98,103,101,93,96,106,108,90,111,106,87,95,102,100,104,95,103,113,94,101,106,116,99,102,105,107,99,99,101,96,91,107,94,85,113,101,107,110,109,103,101,100,99,107,105,86,98,92,109,98,101,114,91,98,66,99,88,101,104,95,104,94,106,107,107,95,105,91,95,99,99,94,94,103,107,89,105,119,102,105,95,99,105,98,94,103,107,91,90,106,88,98,114,96,96,94,104,104,102,99,113,89,97,107,113,114,101,112,106,90,103,91,94,108,101,103,106,99,92,99,110,109,101,105,96,108,102,111,106,102,91,103,104,100,103,105,99,94,100,94,100,98,106,102,57,95,104,97,101,104,106,92,105,98,95,92,108,102,101,95,95,91,116,105,97,98,92,101,90,97,103,86,99,98,103,105,95,107,95,98,117,97,94,109,97,91,83,106,102,96,97,99,97,104,105,101,114,104,106,97,96,95,101,100,98,95,103,104,97,96,95,105,94,97,101,92,92,103,104,98,105,107,88,103,81,93,102,99,91,102,104,115,93,105,114,101,71,106,108,103,105,95,91,104,100,108,109,101,106,102,85,91,98,112,92,93,106,107,115,94,97,61,102,89,97,94,96,88,91,100,97,100,92,105,105,102,94,95,94,106,102,92,105,85,101,100,104,106,98,94,99,95,95,105,83,106,85,110,106,98,92,94,95,109,105,106,108,103,108,72,95,100,99,101,96,95,101,116,100,110,94,109,89,86,101,91,98,102,106,108,120,97,97,101,108,105,108,91,83,98,104,98,87,100,99,97,113,101,108,104,108,88,100,102,103,112,106,105,106,96,86,104,97,97,109,99,90,98,99,94,104,94,98,92,98,91,102,85,95,95,92,88,95,108,109,109,101,110,100,120,112,98,102,98,108,115,115,107,92,92,99,107,109,103,102,102,80,106,101,90,103,104,97,94,120,101,92,101,100,102,96,103,91,94,98,98,91,100,120,97,90,102,100,107,120,101,99,94,95,94,101,107,92,117,98,85,101,96,104,105,92,102,106,97,95,104,93,102,85,102,103,104,104,101,116,97,99,96,101,113,105,105,98,80,116,98,101,98,98,88,103,101,94,104,103,117,97,109,99,95,99,97,120,106,94,105,114,106,101,97,101,93,96,105,107,96,87,88,92,97,94,94,93,97,104,105,98,107,99,102,93,99,102,88,96,105,98,92,98,95,101,87,111,111,106,94,94,101,72,108,100,103,88,110,91,102,102,90,101,100,93,106,88,96,91,102,96,97,111,105,114,101,103,95,96,101,87,97,108,103,120,144,110,104,98,107,93,102,114,105,109,103,131,113,95,96,111,100,98,120,101,90,110,105,102,126,105,110,105,91,101,102,92,96,103,103,95,100,97,103,106,109,103,103,108,92,100,97,101,76,95,90,95,112,101,114,100,95,101,103,106,109,106,104,111,102,102,97,91,107,102,88,90,96,99,108,91,105,92,102,106,106,95,113,112,91,98,102,94,88,100,102,102,120,94,94,106,94,90,108,101,109,100,77,108,94,101,122,106,96,104,100,101,105,102,97,96,97,110,103,109,94,99,92,100,98,82,104,110,100,105,92,106,89,100,93,112,113,101,99,102,102,100,114,94,117,107,92,96,104, +726.84534,113,105,93,92,97,97,86,101,92,92,107,82,88,98,106,105,100,91,104,96,102,101,115,94,106,97,101,90,103,120,94,97,103,105,102,98,95,103,104,100,105,96,109,91,86,111,94,100,94,99,109,105,97,93,109,97,109,90,97,87,84,103,98,97,103,96,61,94,109,106,102,95,88,91,104,116,90,91,104,98,94,107,108,96,101,93,79,102,109,79,97,104,89,94,104,103,102,116,116,100,101,111,104,103,99,97,94,87,97,93,105,101,98,99,90,99,111,92,89,98,96,94,103,115,92,92,88,95,108,101,97,119,96,100,98,101,103,96,97,98,99,93,105,100,102,90,99,87,95,92,92,100,120,102,103,106,92,97,103,103,104,100,106,98,107,93,108,93,89,95,88,93,98,82,91,87,96,100,104,100,95,87,100,106,106,100,94,91,98,79,106,90,104,107,92,101,87,104,103,95,105,100,90,107,93,115,101,98,110,93,105,103,93,104,107,113,91,99,102,101,101,90,88,100,91,101,100,87,73,101,95,96,98,103,96,106,101,102,91,102,94,112,102,104,95,98,89,91,86,105,105,113,91,110,101,97,95,100,94,95,104,94,99,86,114,96,96,89,91,105,91,91,101,97,93,92,98,103,91,91,103,106,97,94,102,93,108,92,102,100,90,98,102,95,103,97,106,98,118,105,118,112,94,112,95,80,98,92,106,110,90,102,112,96,96,95,93,102,106,91,100,94,100,99,101,76,95,93,104,107,108,101,98,103,96,102,91,103,101,95,114,92,117,106,90,99,116,100,107,106,99,91,90,95,93,95,90,95,99,95,98,71,99,92,96,100,94,95,91,105,86,103,101,101,96,93,106,98,99,100,109,104,99,96,101,101,96,97,106,99,116,99,98,102,105,91,96,95,97,102,89,98,95,91,100,91,109,113,108,95,93,93,92,107,104,97,90,97,94,103,85,90,99,125,100,94,99,102,92,108,98,91,104,97,100,97,96,90,107,102,100,100,99,101,83,104,71,96,94,106,94,75,113,101,100,94,111,96,106,89,104,93,100,93,101,103,102,104,100,89,100,126,96,86,97,95,89,100,107,103,105,93,111,90,101,103,95,102,109,96,97,105,103,99,91,102,103,101,106,97,103,96,94,101,83,98,95,119,98,99,101,101,107,108,93,97,87,94,90,101,98,91,100,104,107,95,94,106,92,94,69,96,100,109,83,97,112,102,90,97,107,109,99,98,98,89,97,110,100,116,96,105,104,99,95,92,88,109,88,98,98,100,109,100,96,109,99,94,97,94,93,109,106,110,93,105,96,88,89,107,99,96,103,103,98,94,96,100,100,103,100,108,84,97,109,97,98,107,106,102,100,100,92,105,96,82,87,101,97,107,95,99,94,101,96,89,100,102,97,100,97,93,85,98,90,89,101,103,89,105,91,102,88,96,88,114,106,98,106,113,102,80,94,93,97,89,105,97,91,100,102,103,95,105,103,110,106,108,90,111,99,100,91,99,91,106,104,104,102,92,101,109,109,103,97,99,93,103,118,105,94,91,97,81,106,106,115,106,99,94,95,114,118,113,91,99,94,93,97,92,99,80,97,105,95,100,117,95,82,102,98,88,97,95,93,58,93,96,109,107,112,104,105,103,92,101,95,96,79,108,68,98,87,100,99,102,97,94,98,102,101,95,92,113,82,97,105,111,97,91,97,93,86,94,102,89,93,93,96,92,99,100,91,88,87,94,95,98,102,93,103,96,105,101,94,97,103,102,100,92,95,96,100,103,89,100,101,93,98,102,89,110,96,99,102,92,105,88,94,115,87,99,99,93,98,93,105,100,94,90,106,101,97,115,92,97,101,92,100,97,116,101,98,83,94,109,99,103,99,109,100,87,103,98,109,92,107,101,92,110,102,103,97,109,112,87,96,95,89,86,91,95,101,91,121,105,90,91,97,104,100,103,92,105,107,87,85,98,103,94,95,101,81,107,90,87,102,98,91,97,115,105,122,105,133,96,90,112,99,104,97,97,97,101,97,98,88,99,87,98,100,100,97,96,109,90,100,92,93,90,96,94,106,110,112,98,97,130,99,99,115,93,101,90,123,101,88,102,90,101,72,115,101,100,85,103,93,86,99,83,90,90,95,115,101,90,104,95,94,99,96,106,97,94,95,105,106,101,97,107,94,100,97,104,99,92,95,100,92,100,103,101,108,110,103,103,95,88,106,96,100,91,97,104,102,93,102,102,96,93,102,94,97,90,99,92,101,98,106,108,97,97,96,89,94,100,76,92,102,101,109,110,99,105,94,102,101,96,95,110,95,99,98,103,102,91,90,97,97,98,104,102,106,94,116,100,93,107,109,110,100,115,87,102,93,95,100,104,91,90,105,106,94,94,102,97,65,114,105,100,91,95,98,98,86,103,115,95,96,91,105,106,98,99,99,96,99,107,91,92,105,92,108,102,103,105,100,95,98,106,98,110,105,90,92,96,96,107,103,101,105,109,101,110,103,96,109,105,107,118,98,101,95,97,81,95,99,90,111,104,94,108,105,98,95,99,108,114,106,91,93,110,96,105,97,104,102,90,111,92,91,88,94,102,95,101,85,106,96,93,95,129,121,97,104,90,99,90,105,94,96,95,85,89,100,99,105,99,108,108,103,101,101,100,103,97,104,101,103,109,106,101,102,95,95,95,105,94,94,94,104,102,108,89,93,95,102,98,107,100,106,117,102,110,106,100,92,99,101,97,105,109,97,105,100,95,88,105,95,84,107,94,100,107,105,97,94,93,96,98,95,101,95,96,93,89,95,107,107,95,101,113,106,99,89,97,101,92,105,106,104,96,95,88,99,99,98,109,98,102,99,105,102,120,98,85,105,104,98,94,103,114,93,91,101,96,105,103,95,102,98,100,111,95,109,103,92,100,97,100,99,96,98,97,107,94,96,108,88,102,98,89,88,112,91,106,92,109,89,93,103,92,98,79,103,100,91,91,108,98,103,132,99,99,103,97,92,109,104,94,97,98,96,104,102,100,76,86,95,101,91,99,96,120,95,95,102,93,112,109,98,100,111,105,104,100,107,112,103,100,98,107,100,105,100,93,107,96,84,108,98,105,91,91,101,113,94,94,95,106,94,99,103,103,95,105,101,104,95,96,100,93,94,103,101,92,93,99,104,105,101,91,99,124,101,110,115,101,106,92,104,108,123,100,99,98,96,102,96,104,97,105,81,104,98,108,108,101,97,103,104,95,90,107,106,100,88,108,100,97,96,111,100,101,99,94,109,98,81,94,66,99,96,95,105,109,102,99,103,81,100,107,110,88,90,112,103,93,98,93,84,106,93,110,87,105,95,98,116,92,97,88,104,96,106,105,101,108,103,109,94,86,107,98,87,90,94,106,107,94,98,96,104,94,96,99,104,88,88,100,91,108,93,108,108,105,104,96,105,95,106,96,83,83,96,93,103,101,100,93,100,98,97,97,86,106,97,94,106,92,105,101,93,90,109,106,103,101,63,99,112,99,84,105,91,101,86,90,106,109,100,97,104,91,91,96,104,92,107,95,80,90,106,103,102,101,100,91,101,106,97,104,108,102,99,81,103,97,104,111,90,107,101,99,84,109,87,96,102,99,100,87,101,79,96,92,92,91,95,105,103,90,108,96,104,87,97,106,97,91,104,110,87,101,93,102,92,95,102,100,105,88,89,96,97,96,96,93,80,94,98,104,83,90,104,85,105,83,99,99,92,104,106,98,107,99,99,93,106,102,102,97,101,88,96,102,94,92,104,98,107,104,95,112,103,112,108,110,95,95,108,93,99,109,97,105,106,92,100,113,101,94,105,102,94,91,94,105,100,100,96,90,98,93,109,77,95,105,98,97,100,90,88,98,105,106,89,94,89,95,100,105,99,98,112,96,90,96,91,100,101,94,113,72,94,88,89,87,98,112,95,79,99,105,87,100,117,94,105,94,87,121,115,105,98,99,96,97,100,103,105,101,98,89,100,93,114,109,110,97,101,116,91,98,117,102,100,98,97,102,102,105,97,97,107,97,110,103,91,95,101,92,101,88,94,109,90,95,98,104,97,101,97,121,103,105,100,110,102,105,97,104,99,113,108,100,95,98,90,95,97,109,102,98,94,94,101,104,103,97,96,86,106,87,115,93,96,87,91,98,111,92,100,98,102,92,115,96,101,90,97,108,81,108,98,113,91,106,100,105,97,96,90,96,87,94,120,114,104,93,97,100,98,100,90,100,72,106,117,100,104,104,112,117,97,100,91,93,90,99,93,105,90,104,94,104,98,101,98,103,103,97,97,91,95,94,106,89,96,87,87,90,112,100,106,90,101,99,89,101,88,91,106,94,100,96,109,104,105,94,92,95,110,98,94,104,107,96,112,96,93,95,109,85,90,97,94,106,97,98,105,100,83,101,99,95,84,100,92,92,99,99,104,108,99,95,102,100,123,98,112,74,108,106,100,92,106,99,92,91,101,96,87,90,108,101,100,86,94,98,89,96,108,105,101,95,103,102,93,94,100,129,99,83,91,104,92,103,100,97,101,98,114,107,106,104,103,100,91,99,100,96,95,93,113,97,95,104,85,98,96,104,99,100,93,108,101,113,99,78,99,97,106,66,100,91,100,106,107,92,108,106,105,98,91,116,75,99,94,98,113,93,93,106,108,96,108,117,100,94,111,93,96,94,101,104,100,91,94,94,86,106,101,105,73,101,98,98,90,107,92,99,76,109,121,103,110,96,101,104,96,106,100,93,102,117,104,90,93,87,102,80,92,106,113,85,104,96,117,99,106,96,100,101,100,108,113,101,96,99,110,101,92,95,106,98,104,87,105,96,98,101,94,92,90,79,91,121,115,84,118,112,99,107,88,103,98,88,109,84, +726.98669,93,116,107,105,98,102,101,108,104,101,96,89,105,87,102,109,101,99,101,101,107,99,102,108,92,99,93,104,103,108,98,96,97,98,94,75,126,98,109,114,106,109,104,108,96,91,97,94,101,83,105,99,100,104,88,98,90,112,101,91,93,95,80,99,104,107,90,101,112,95,109,95,102,112,99,94,81,99,107,94,89,93,98,99,112,99,113,110,91,103,96,98,100,92,103,99,109,95,95,99,104,90,103,100,97,94,104,93,102,100,101,94,99,108,97,101,95,98,107,92,96,102,96,103,99,97,109,97,105,101,96,101,101,101,93,99,88,102,98,94,101,97,93,95,100,78,95,89,97,92,90,94,105,87,97,96,108,103,97,102,84,98,102,91,92,109,99,89,101,90,103,94,90,95,79,99,104,112,99,99,94,104,97,100,91,88,94,92,91,95,96,100,100,101,88,116,84,92,94,95,101,93,85,91,95,100,105,108,99,96,97,102,116,100,110,100,100,97,71,87,112,110,99,90,95,94,88,95,90,91,95,93,98,111,101,111,71,100,111,98,94,106,103,92,97,103,91,90,91,104,109,100,107,110,104,89,90,91,113,115,92,101,95,97,99,102,95,97,107,84,97,101,100,102,113,109,97,105,95,92,99,95,93,115,100,100,101,95,100,88,97,94,103,93,100,103,95,97,109,98,107,101,94,100,90,103,96,109,92,96,90,103,101,100,94,97,100,93,96,97,85,106,106,101,109,95,89,101,96,103,108,104,101,95,100,93,93,101,98,107,95,104,91,96,102,103,103,108,98,98,102,95,105,95,96,89,86,57,96,103,96,92,103,92,99,94,103,102,104,97,101,96,109,104,99,99,100,105,106,102,127,102,98,101,102,96,101,86,96,90,112,86,99,90,85,87,94,103,101,101,92,97,98,82,97,92,97,92,92,86,96,118,109,97,110,89,100,100,86,100,102,92,96,97,93,76,95,92,92,109,104,100,98,94,98,81,93,107,99,104,99,98,100,96,94,102,90,95,105,104,99,96,85,99,105,110,92,91,103,86,96,102,93,105,98,109,87,96,97,81,91,109,114,117,68,97,94,92,95,86,90,100,102,95,100,98,117,101,111,93,80,104,111,91,91,97,102,88,106,82,91,87,103,98,98,100,97,109,94,93,98,97,97,97,95,103,101,98,97,103,125,95,97,104,97,87,97,95,95,99,104,88,91,97,105,106,100,95,88,98,103,96,96,88,99,101,105,101,102,93,104,110,102,98,91,97,101,99,109,101,97,108,101,104,100,92,83,104,107,95,91,94,89,110,97,91,106,87,87,91,102,94,100,107,89,102,103,102,80,65,95,102,99,81,87,88,105,99,102,92,104,97,92,101,101,94,107,109,117,94,104,100,89,105,101,107,98,102,105,97,103,103,95,101,87,96,106,94,101,92,90,100,97,99,94,105,99,104,108,102,75,94,105,92,90,95,96,102,106,86,89,99,105,102,95,69,94,99,105,94,100,97,92,99,92,103,103,95,102,98,114,98,112,99,89,94,101,97,85,95,95,103,100,93,94,101,92,101,82,103,99,91,91,96,85,96,100,97,110,96,99,88,109,86,71,103,106,94,87,83,98,72,108,98,93,99,86,97,96,73,118,91,108,101,97,92,107,104,90,104,97,91,96,98,103,95,88,90,101,94,93,101,103,94,85,94,105,96,93,100,108,102,95,102,96,98,87,94,114,96,113,95,91,96,87,114,93,100,95,107,106,114,90,100,88,101,92,91,100,98,90,103,110,97,93,86,90,105,96,106,98,101,106,104,96,86,95,91,96,103,110,94,100,96,113,95,100,79,122,101,102,95,90,96,98,108,94,97,113,100,92,94,91,104,111,108,110,86,102,102,99,89,108,101,95,93,102,101,105,112,83,101,95,93,90,101,101,85,105,84,103,94,92,91,95,97,93,110,101,108,105,87,104,99,105,83,93,103,106,105,103,95,97,111,79,101,85,96,101,98,107,101,99,98,96,99,95,96,87,86,98,98,103,88,94,98,88,113,105,100,98,93,90,94,96,94,108,105,97,89,105,94,103,83,103,95,103,103,105,95,94,102,104,97,92,83,97,98,97,97,114,107,104,97,97,113,91,102,100,112,90,106,101,87,94,109,109,95,102,95,98,103,107,95,106,102,86,102,101,88,95,95,90,100,99,98,86,111,93,100,101,104,81,104,97,96,94,94,97,99,99,103,101,97,91,102,94,96,94,86,98,89,97,98,92,87,101,101,94,100,96,88,104,82,90,105,104,101,85,97,86,96,102,109,91,92,107,96,91,104,92,105,97,97,103,106,96,99,92,93,96,81,106,100,106,93,80,106,116,99,93,97,88,96,103,109,98,106,107,84,92,98,98,101,99,91,111,94,107,104,101,95,97,96,106,97,100,108,98,121,92,117,91,94,107,102,98,90,109,88,88,110,83,96,100,108,86,102,100,102,110,88,59,101,99,101,97,90,106,102,90,94,98,100,94,111,88,94,101,107,104,109,93,97,104,100,107,99,99,96,92,96,98,98,100,101,102,76,107,98,95,107,98,106,102,109,84,90,97,98,96,94,83,109,101,84,106,103,95,100,99,99,101,94,91,109,91,104,105,121,105,92,99,92,96,88,99,98,108,103,105,105,104,99,98,93,91,93,105,113,75,107,103,105,99,84,105,100,88,93,93,92,112,105,88,104,114,98,96,104,99,112,95,99,99,97,111,102,100,97,92,91,99,103,109,100,100,110,100,99,103,94,99,90,102,96,96,97,100,93,116,95,111,106,101,105,98,98,91,119,114,111,112,98,90,99,101,108,97,93,97,98,102,105,111,102,110,95,100,115,104,98,107,102,102,91,97,103,90,102,106,102,90,107,90,91,93,106,99,87,87,103,104,93,111,100,97,105,102,99,106,104,92,98,103,100,103,95,109,99,104,94,98,103,92,85,104,99,102,99,87,114,87,97,106,114,98,104,90,103,109,99,94,87,101,94,105,94,99,94,99,127,102,100,91,95,104,100,94,91,97,88,105,106,98,88,102,100,99,106,100,100,101,108,91,100,87,112,101,88,107,108,98,108,100,103,103,80,104,107,102,102,91,95,98,87,93,100,97,66,96,91,94,101,95,94,95,105,102,99,101,84,93,98,93,103,94,98,94,97,93,87,98,102,98,94,106,100,104,100,106,98,100,109,93,89,93,91,103,111,100,79,92,121,77,103,94,95,95,102,109,96,105,105,97,111,108,113,88,111,102,89,101,103,95,102,91,94,96,95,98,111,98,70,64,104,89,101,106,92,103,91,96,98,92,59,93,97,92,98,92,112,97,92,65,100,94,91,89,93,85,95,103,89,112,97,101,93,98,109,100,104,96,105,95,89,105,93,107,97,84,94,102,100,108,111,97,87,100,104,85,94,90,93,98,95,103,97,99,104,103,103,92,91,98,105,81,100,100,101,109,108,118,98,101,101,94,105,102,101,104,96,92,105,105,100,93,95,114,97,105,100,98,99,101,88,94,93,108,97,104,93,105,96,109,103,95,98,96,102,108,100,98,94,112,105,95,114,94,94,90,97,110,109,93,95,113,81,92,103,71,94,109,102,100,97,106,98,100,115,104,107,103,120,103,101,109,100,101,111,103,105,104,118,97,76,107,113,104,102,106,80,98,109,84,100,102,100,103,101,103,99,100,95,97,105,102,106,104,87,86,107,100,72,89,103,96,102,92,102,108,100,90,99,95,101,102,101,102,91,88,98,112,108,91,100,105,103,103,97,91,106,103,99,104,113,98,94,92,92,112,111,100,98,106,107,101,89,98,98,98,100,105,104,105,108,107,113,90,109,111,89,105,102,108,116,105,97,104,94,103,87,93,97,109,95,120,100,86,103,103,98,97,88,107,101,98,109,99,102,108,96,99,108,95,102,103,102,106,102,106,106,100,112,104,98,103,95,95,100,96,109,91,112,105,96,100,102,91,107,103,104,96,100,105,100,87,97,137,111,111,103,112,93,103,103,79,88,88,106,107,99,87,90,100,112,99,97,117,99,102,104,113,98,108,103,102,104,102,90,96,113,104,119,86,88,100,98,87,94,79,105,95,104,105,114,107,98,100,99,109,98,103,103,101,90,103,114,102,97,127,97,103,102,99,112,116,94,101,98,103,100,96,101,98,95,104,110,105,101,105,94,100,102,101,93,90,100,113,109,85,100,100,94,98,113,83,101,84,100,97,91,125,105,96,104,97,87,100,87,89,108,102,105,95,99,104,101,103,104,105,103,106,107,104,101,107,95,95,97,108,94,117,100,96,111,96,102,92,109,97,96,99,109,97,97,111,99,102,105,111,97,98,98,105,105,108,96,101,93,100,104,100,102,102,100,111,94,101,96,88,95,97,107,100,113,88,98,102,99,122,97,89,103,111,97,105,101,104,95,91,96,98,109,94,88,94,97,98,99,92,99,108,97,94,94,94,104,103,99,87,96,98,95,95,105,99,102,93,98,93,102,93,102,96,103,102,84,109,101,102,89,95,99,121,92,92,97,100,100,95,98,102,102,84,121,99,95,95,85,101,93,99,105,111,94,94,103,98,64,93,115,99,112,98,98,101,121,105,96,104,87,86,87,108,103,104,106,87,111,110,100,109,119,107,90,109,108,101,99,88,96,96,99,100,89,132,111,92,107,99,78,98,95,108,90,102,96,98,111,105,94,85,105,100,94,108,93,109,86,94,104,104,93,91,99,94,99,95,101,103,95,94,103,91,98,102,98,101,92,100,109,91,99,106,87,88,89,95,97,103,99,101,96,94,85,98,104,92,100,108,95,107,94,91,97,92,110,102,97,104,91,98,92,110,100,96,105,101,101,91,102,109,103,105,102,100,97,97,106, +727.12811,86,104,96,88,100,105,104,84,101,108,97,112,87,105,116,105,88,108,101,91,110,96,94,100,92,93,113,115,93,107,101,114,97,98,98,103,97,94,103,110,74,102,93,90,103,106,99,100,70,103,88,98,101,91,102,92,98,90,91,92,109,110,101,88,96,96,96,100,113,91,106,103,98,101,106,100,108,91,112,90,113,104,96,91,105,106,104,105,90,97,86,93,95,101,117,108,91,104,94,105,81,96,101,90,100,114,112,87,98,105,105,100,105,92,109,102,110,103,99,103,100,100,98,103,94,111,100,109,111,109,115,105,101,104,111,101,81,75,94,95,102,108,99,95,100,106,95,104,104,109,100,97,102,75,103,93,96,96,95,94,102,98,104,106,102,100,103,88,89,100,93,114,95,102,114,94,104,98,108,97,105,103,105,108,97,97,90,106,100,90,83,100,95,99,99,112,99,110,104,101,100,84,100,107,105,101,104,103,108,95,93,103,106,95,100,91,93,94,96,100,105,93,105,98,89,108,104,97,95,109,100,99,115,103,95,101,88,102,106,105,93,87,114,101,91,96,94,114,104,100,101,90,92,101,87,101,88,100,100,89,93,98,99,101,96,95,91,104,118,98,101,92,95,86,99,94,96,102,91,111,115,101,106,97,98,97,96,95,103,96,75,93,87,88,96,95,103,100,99,106,105,106,101,96,89,96,109,98,87,95,82,96,100,88,104,97,92,88,99,91,101,101,99,98,106,99,94,96,120,100,97,92,96,99,101,103,102,104,90,96,97,93,105,94,94,80,102,112,104,95,99,69,105,97,111,105,96,104,104,99,95,98,99,100,105,115,110,99,98,84,108,108,94,85,110,109,114,98,99,97,93,108,98,98,97,92,96,100,99,91,104,101,94,109,96,92,98,106,102,98,94,106,93,95,95,94,98,101,88,98,103,98,78,73,91,116,102,91,97,98,89,103,90,112,104,93,97,93,100,103,105,99,102,107,95,93,94,105,92,93,105,102,99,108,96,98,115,100,99,106,93,101,100,101,91,105,90,104,109,100,107,101,92,101,95,106,98,101,104,95,93,109,96,86,101,101,90,103,101,95,95,117,100,98,97,91,96,99,91,67,98,105,96,95,82,95,86,103,94,83,97,100,114,91,103,102,98,99,96,112,106,107,95,103,112,100,99,97,108,99,108,93,99,101,99,93,99,96,93,94,92,106,100,92,109,102,103,102,93,100,96,109,96,103,100,93,97,102,109,105,100,99,87,103,100,101,94,92,100,102,102,90,99,104,102,108,98,91,97,87,96,93,100,88,88,96,97,103,91,100,91,100,98,99,93,83,99,100,99,97,96,97,106,104,110,111,90,113,109,85,93,99,96,102,94,94,100,94,115,104,103,105,97,98,88,96,97,109,98,110,102,101,101,94,92,101,88,101,100,102,99,101,104,95,94,102,94,98,95,97,109,103,86,88,108,102,96,102,98,106,104,93,96,101,97,113,99,110,99,97,103,109,105,95,94,94,102,101,92,93,94,108,99,96,84,96,94,99,99,105,83,108,107,105,109,109,105,101,110,96,106,96,103,108,105,92,99,87,97,92,86,108,99,112,90,90,116,114,102,97,96,92,95,99,91,99,98,87,102,79,101,96,99,113,95,98,92,97,95,80,111,107,93,95,99,88,99,101,93,112,106,107,94,97,102,97,99,89,104,97,96,99,85,100,105,96,107,106,112,87,98,101,103,101,93,90,92,107,93,100,102,97,101,93,105,104,102,98,103,92,101,106,90,106,106,109,86,91,93,105,103,102,101,92,103,99,98,91,107,100,96,107,90,97,104,97,96,107,101,96,84,99,106,74,112,91,112,86,98,101,101,106,97,96,104,96,102,91,108,99,89,96,105,97,93,106,110,86,103,95,85,111,95,59,102,98,93,87,96,96,94,96,95,110,94,91,112,110,100,96,95,88,120,106,105,101,80,95,101,91,109,101,93,96,94,99,95,82,94,91,80,110,89,95,90,99,89,101,100,97,109,112,90,107,104,91,95,100,110,86,73,98,103,87,98,101,92,110,93,98,87,94,103,103,107,78,94,99,105,119,108,87,113,106,112,103,98,101,109,84,99,102,106,100,81,95,97,109,102,104,100,102,94,69,100,115,94,94,94,95,95,90,92,105,101,103,100,99,95,105,106,99,100,103,100,97,102,106,77,107,103,107,76,72,83,96,101,97,105,102,88,103,104,104,80,95,90,84,91,99,99,89,94,105,97,102,102,110,101,92,100,98,91,102,101,101,97,106,98,106,107,99,88,94,79,102,94,95,92,101,113,90,101,94,104,101,97,102,116,100,101,103,100,96,98,98,103,105,105,91,82,101,98,100,89,95,104,108,91,108,122,109,102,89,98,92,92,108,90,98,94,99,95,101,95,100,89,113,95,94,96,98,92,101,105,114,106,71,100,98,98,108,97,93,99,87,113,97,102,102,89,96,90,90,94,90,99,101,97,99,95,80,102,80,77,102,93,91,83,106,96,96,97,90,89,105,101,102,86,94,83,84,82,106,98,83,96,98,100,91,90,109,117,90,94,107,90,100,105,84,93,93,89,104,91,97,87,92,102,88,97,109,104,98,83,92,93,91,95,98,100,98,101,87,95,100,99,94,103,81,109,79,95,95,104,83,97,89,103,91,95,100,99,116,99,99,102,107,104,105,104,102,91,92,87,88,94,84,92,94,111,95,97,96,92,92,94,99,97,97,101,99,95,100,102,91,109,96,92,94,103,87,102,104,88,99,97,103,96,92,92,93,100,105,98,98,101,85,100,94,101,93,105,101,97,98,88,100,85,97,100,101,101,103,95,99,86,92,86,107,102,98,101,91,100,100,103,85,96,93,88,93,98,101,87,97,90,104,101,127,97,106,96,94,84,110,94,95,85,93,96,97,94,91,105,100,84,92,104,102,98,106,90,113,102,89,94,100,95,88,98,98,99,104,95,98,90,89,95,94,107,110,97,99,102,75,98,96,95,94,99,94,91,105,104,91,93,97,93,91,94,97,105,100,97,102,98,101,106,86,88,111,83,66,107,95,102,102,86,105,108,89,79,84,101,96,100,92,79,97,88,97,96,106,95,89,111,92,98,95,87,89,89,98,85,95,90,90,131,98,103,79,98,92,98,89,100,101,100,105,103,112,89,93,81,94,97,91,98,79,88,102,106,101,104,94,84,81,105,89,89,108,95,99,86,95,88,86,92,98,101,96,101,103,94,94,97,103,92,107,104,103,91,96,94,93,100,104,81,98,89,92,95,100,99,95,110,84,91,103,93,110,78,106,102,95,87,89,95,81,97,103,101,90,87,96,91,95,99,92,86,101,96,88,91,94,112,83,102,106,89,97,74,105,99,105,90,103,103,97,97,77,97,97,94,91,93,88,103,98,97,104,98,106,94,97,87,100,92,93,103,103,96,112,94,115,96,72,83,85,91,92,83,84,106,103,106,75,104,87,96,106,88,104,102,100,94,109,99,106,93,102,91,92,94,97,96,104,85,118,96,92,88,94,96,96,107,101,97,99,93,107,98,95,97,95,99,115,93,92,93,92,86,84,94,97,95,114,102,93,93,80,100,101,92,110,109,101,90,91,99,117,91,94,102,87,108,78,87,99,90,103,100,126,96,99,85,96,103,120,98,116,94,105,98,91,83,100,93,103,105,94,94,99,100,88,93,75,93,90,92,102,98,97,98,96,84,102,78,91,85,102,91,94,92,102,94,92,100,93,107,104,114,95,96,94,91,103,97,73,96,107,102,101,96,104,100,100,113,91,102,91,104,109,101,79,106,94,88,81,76,100,86,93,103,100,106,75,83,102,98,92,88,96,97,103,99,96,98,87,93,96,95,95,98,101,98,108,137,109,104,100,95,98,88,96,100,88,91,95,92,88,108,117,94,103,91,92,90,95,90,90,105,102,101,101,94,87,94,100,100,101,94,98,98,98,96,90,93,91,88,84,97,104,102,83,101,108,106,105,104,106,97,97,108,99,98,96,104,93,98,87,82,81,102,98,93,87,90,86,99,87,99,96,104,89,96,91,87,88,97,95,90,102,93,93,90,91,92,101,88,92,96,102,100,105,94,97,87,88,100,93,93,122,102,91,102,99,114,91,93,83,92,91,102,109,126,91,95,90,92,103,98,93,124,99,71,109,95,101,109,93,105,98,110,100,107,100,116,102,109,102,133,87,101,92,77,92,97,95,110,99,105,107,84,96,65,93,91,109,98,85,102,100,87,103,94,120,94,93,93,111,93,101,103,94,99,97,95,110,96,95,97,101,89,91,105,62,99,92,98,98,112,88,90,94,94,87,107,99,94,86,104,108,108,102,100,93,103,92,92,95,91,98,95,97,104,91,109,89,92,94,101,95,96,99,109,95,91,89,91,95,79,95,104,104,91,93,104,102,99,87,114,115,112,98,94,86,86,105,98,90,102,101,102,88,84,98,94,91,88,106,83,102,101,94,107,99,115,85,84,101,94,103,94,96,112,101,100,107,86,99,94,85,116,101,96,86,87,73,100,92,109,85,94,98,94,90,90,94,94,87,110,92,102,100,89,92,83,95,98,91,93,112,101,110,95,121,101,93,103,88,91,99,90,91,99,92,93,99,106,94,98,93,116,84,102,92,98,107,91,84,91,96,106,85,106,94,90,86,91,109,101,93,91,102,101,101,90,109,101,92,96,97,100,87,102,95,101,98,92,92,97,100,91,102,102,96,107,104,90,102,102,100,80,113,98,100,89,98,96,89,93,91,102,103,97,91,88,95,111,86,88,102,95,94,125,97,107,87,110,103,106,116,100,85,92,99,126,87,120,92,103,88,113,68,106,109,98,92,116,95,103,92,99,99,84,99,104,84, +727.26947,110,90,95,109,94,105,95,117,106,118,87,105,94,96,107,96,92,104,98,98,94,102,108,87,103,110,86,104,103,109,110,100,103,106,100,102,93,80,98,101,94,91,103,105,98,106,107,124,93,105,86,119,100,88,113,67,103,102,125,94,102,92,92,90,94,106,95,107,90,111,101,101,98,101,80,102,111,100,100,91,90,95,85,100,96,90,97,99,119,91,98,98,105,98,99,92,87,96,97,90,92,105,102,91,96,92,102,101,102,82,93,100,106,88,87,98,95,102,90,102,103,91,102,115,105,105,107,97,105,101,87,109,108,105,105,80,108,92,98,99,97,88,97,110,96,91,115,105,95,98,97,97,93,93,104,94,105,93,91,100,98,109,104,105,108,108,114,105,96,92,90,107,97,93,92,102,103,78,94,102,84,95,103,104,105,90,115,96,104,100,93,101,104,95,99,97,96,100,99,120,102,99,94,97,99,104,98,88,96,82,97,103,94,106,103,107,102,110,91,88,104,98,97,89,102,96,104,117,98,134,101,107,95,92,103,96,98,103,94,92,103,105,115,96,107,95,112,90,101,99,87,92,102,100,107,101,101,101,75,98,82,102,101,98,108,97,88,88,88,91,109,96,100,83,96,103,99,90,90,106,99,83,125,89,91,102,98,97,106,97,101,91,110,99,93,109,104,104,110,109,100,97,90,86,97,97,101,105,91,100,91,89,104,96,93,102,104,94,92,109,100,90,97,103,99,94,105,92,108,105,104,93,102,109,104,109,103,107,92,97,99,88,109,91,101,99,97,100,95,95,99,100,86,108,105,99,96,101,102,105,89,121,95,95,95,106,87,106,90,102,95,101,106,107,92,102,104,105,103,103,103,99,102,96,99,92,100,106,117,94,108,96,91,104,77,96,90,97,89,76,102,94,98,93,96,89,96,98,93,101,95,87,97,101,83,103,89,90,98,92,109,103,103,102,92,98,95,88,85,105,90,62,95,93,103,102,96,100,94,92,105,96,105,97,89,80,101,95,92,104,105,105,106,101,104,91,96,88,106,104,99,100,99,93,91,106,98,104,102,94,105,91,102,101,110,87,97,107,95,97,97,105,97,93,105,96,107,105,101,93,100,100,103,112,88,99,97,104,90,76,102,105,106,90,83,110,98,97,106,101,106,106,93,101,103,97,103,98,103,97,102,100,99,98,91,105,95,88,94,101,100,91,106,93,104,105,100,102,120,95,99,105,103,94,93,83,112,103,107,96,101,84,105,97,99,94,94,79,97,104,87,102,95,113,97,99,106,106,99,104,78,64,99,104,101,96,105,108,99,92,94,102,74,91,94,104,90,94,99,104,104,97,107,100,100,98,98,96,104,91,96,109,105,100,91,96,91,112,101,100,97,92,111,98,95,108,108,109,85,100,99,99,94,105,108,104,113,97,107,101,114,99,92,109,91,101,96,88,100,94,96,85,97,105,101,101,94,83,96,100,89,112,112,103,102,76,96,109,108,102,109,107,95,93,119,101,100,86,99,87,98,106,103,80,93,100,97,93,105,88,104,93,102,83,95,102,102,103,105,83,97,101,83,87,103,102,103,101,98,111,96,83,99,101,97,113,105,104,84,113,98,110,96,90,94,97,97,93,93,94,103,95,97,99,93,94,90,100,103,101,101,89,89,107,94,112,110,94,102,124,109,105,98,108,102,98,104,94,102,98,101,91,100,107,102,83,99,99,110,95,112,91,84,96,101,94,101,99,105,94,99,121,110,97,114,102,100,66,101,107,95,105,109,101,100,103,98,104,95,104,99,100,103,98,106,96,101,100,110,110,96,91,94,102,92,108,94,103,101,99,113,96,87,98,109,105,109,105,94,107,98,75,94,104,98,83,98,95,102,107,98,101,115,95,96,92,113,96,106,99,101,104,90,88,89,95,100,94,88,97,82,99,99,106,105,92,111,101,95,81,93,99,94,104,86,87,109,98,117,90,92,95,98,99,109,100,113,94,94,96,93,102,97,86,97,107,90,104,100,100,99,102,104,110,93,85,133,104,96,100,91,109,112,111,101,101,90,94,101,96,94,104,106,99,103,94,109,104,71,110,108,107,100,81,121,97,94,78,90,95,96,105,108,98,97,93,97,93,104,97,101,98,109,89,96,106,111,99,80,100,109,99,102,103,101,83,106,99,98,98,96,107,103,95,100,104,102,91,99,95,95,100,96,100,93,102,106,97,88,100,106,99,98,103,97,106,100,91,106,113,105,98,102,107,101,102,93,104,95,98,105,112,94,92,105,94,106,98,102,99,99,99,99,103,98,99,94,106,88,104,114,110,108,96,107,105,103,102,107,96,107,105,101,110,103,92,99,112,105,111,104,97,104,103,95,83,96,100,102,98,95,90,94,90,100,109,92,115,111,103,88,113,95,95,100,101,95,108,106,91,90,94,87,97,104,95,94,117,93,96,106,101,98,97,106,112,100,99,113,103,105,97,109,85,99,103,98,83,106,97,84,85,103,94,90,107,90,105,100,93,91,87,95,91,106,86,102,92,91,102,91,104,100,95,107,102,104,113,105,91,92,101,94,90,93,93,104,87,89,96,108,90,92,121,86,96,75,94,99,109,104,90,89,103,98,113,92,97,108,117,95,92,95,98,102,95,91,98,104,88,110,104,107,121,88,94,98,94,105,103,106,101,98,113,113,85,98,93,101,95,92,96,99,90,112,110,98,93,101,90,94,107,105,97,92,104,109,95,97,91,104,95,97,101,101,104,106,103,102,109,109,94,90,101,88,95,110,118,128,105,96,104,97,111,112,76,103,102,95,102,129,115,95,87,110,95,92,123,97,102,96,98,101,113,86,98,103,101,92,92,99,94,104,109,98,97,96,84,92,99,100,96,103,95,105,102,109,93,106,103,93,105,95,126,94,106,94,105,103,96,95,102,94,106,117,96,97,94,88,126,100,112,89,89,98,97,97,102,98,91,113,98,100,93,103,111,98,96,95,77,94,109,98,102,105,105,97,99,98,83,104,88,90,110,117,98,87,96,83,105,98,106,95,97,101,99,100,93,107,104,85,97,92,91,92,98,94,99,93,109,91,108,102,101,102,96,91,97,104,101,94,96,102,104,106,102,111,100,98,97,97,91,104,101,101,86,107,101,101,93,100,112,107,97,101,97,88,102,90,94,105,92,92,102,97,102,101,82,97,100,94,88,103,98,99,98,97,96,91,96,104,97,98,98,100,96,125,94,117,96,110,110,113,100,108,100,91,100,95,81,99,91,109,97,103,93,104,106,94,110,96,94,95,97,96,100,109,105,102,98,83,94,104,97,104,111,106,73,111,91,85,98,98,88,95,105,103,95,98,90,71,99,93,102,98,87,100,91,100,91,87,77,109,110,97,104,96,105,105,89,97,101,107,102,88,115,106,86,98,102,100,101,102,91,99,99,98,98,91,108,100,84,99,83,106,112,96,111,104,112,95,99,105,97,99,102,105,99,117,97,98,96,104,109,111,102,117,102,82,100,109,102,106,111,86,102,103,117,109,101,97,89,102,104,95,95,89,99,108,103,105,90,96,103,97,97,105,99,101,90,104,99,105,103,100,104,97,113,104,91,104,100,105,107,106,104,95,99,104,102,102,82,96,98,93,84,123,99,106,106,95,96,99,106,105,130,103,104,96,89,102,101,92,100,92,111,100,90,94,104,81,94,103,94,113,95,106,94,96,94,90,107,92,103,101,96,91,109,104,90,108,105,102,105,97,102,104,98,106,106,106,99,78,97,106,91,96,106,117,92,96,106,95,95,84,95,88,104,99,105,91,105,103,108,105,106,90,110,100,107,85,100,102,99,95,100,107,109,95,100,100,111,97,89,97,91,88,99,90,91,90,101,88,82,102,95,84,97,88,94,101,115,106,89,91,94,101,94,94,93,95,101,97,93,95,113,93,94,98,111,75,92,89,107,94,104,108,104,100,100,99,103,99,92,94,111,87,99,90,90,107,101,86,95,102,101,93,105,102,103,100,90,100,86,96,101,81,85,95,116,97,77,97,93,102,130,107,88,105,100,94,98,96,98,102,112,98,99,88,95,106,107,83,107,102,107,100,106,94,99,126,99,100,100,96,110,101,97,94,106,108,102,93,95,113,108,99,94,105,110,102,99,92,96,97,109,97,108,79,104,107,98,113,106,99,121,96,87,106,96,100,94,83,98,112,101,96,102,101,96,104,67,102,100,98,103,91,85,100,98,114,98,106,86,92,103,95,91,77,97,105,89,116,91,90,92,91,97,96,104,93,99,100,99,107,92,107,87,104,111,87,93,87,87,97,101,100,94,92,79,107,93,106,93,87,90,99,96,108,113,117,103,105,105,94,85,98,98,92,85,85,94,97,95,97,95,84,110,89,87,89,96,94,104,99,102,104,98,99,106,101,97,115,101,96,105,95,100,81,106,99,113,99,93,91,102,108,104,91,95,92,89,92,83,127,99,81,96,80,95,90,94,89,99,135,98,102,102,87,101,93,90,96,92,86,102,112,94,110,90,91,101,90,83,96,85,103,99,101,91,98,91,110,100,89,102,103,96,113,104,105,91,91,80,104,104,106,99,100,96,86,108,96,102,98,97,110,117,100,103,106,109,105,95,86,103,109,98,95,97,91,93,102,93,102,103,119,92,94,94,80,94,89,98,114,117,101,102,85,102,99,99,94,102,100,100,101,70,99,100,95,99,89,93,89,96,106,101,100,93,108,99,104,89,109,93,106,101,107,104,92,100,98,105,94,110,129,104,116,92,99,110,119,81,88,105,93,79,102,96,102,95,104,92,136,101,99,109,101,112,97,93,104,92,87,105,96,109,110,87,106,97,98,98,99,101,91,109,94,91,101,100,109,95,106,88,95,105,104,98, +727.41089,95,91,91,86,95,129,106,106,104,99,96,99,88,92,94,93,79,103,109,72,98,107,98,93,102,103,108,104,95,105,96,90,92,106,110,115,108,90,103,93,114,97,100,111,96,94,97,109,103,97,103,109,100,103,95,94,107,94,80,105,88,106,107,93,93,99,98,102,100,101,94,107,90,100,94,101,82,105,94,95,93,102,94,103,93,86,102,87,109,91,98,105,101,96,96,85,93,91,87,97,100,98,97,103,103,98,103,97,109,92,83,89,92,95,103,98,101,99,116,95,98,102,102,101,109,111,106,96,103,103,92,83,97,94,105,96,96,100,94,96,99,99,85,95,95,97,108,98,94,61,98,91,99,96,100,101,94,99,101,99,102,109,105,97,107,97,91,86,104,97,89,93,97,105,102,101,110,99,101,89,93,97,104,89,104,113,91,94,91,95,109,102,112,104,112,102,99,94,94,104,95,94,109,97,92,88,89,100,101,104,99,97,114,95,106,96,117,102,98,94,96,105,101,91,104,99,105,91,100,108,114,96,100,79,96,100,103,106,94,97,96,96,117,101,96,82,103,98,102,98,108,106,87,89,100,112,86,102,99,97,85,98,92,100,86,105,107,101,102,90,96,91,96,95,91,95,94,102,104,95,92,108,98,88,109,109,93,109,104,98,73,87,96,115,110,104,87,89,99,90,101,101,101,101,85,106,95,99,108,96,101,106,93,97,102,96,98,89,95,93,93,93,108,99,87,103,105,99,102,99,100,94,66,117,104,105,105,94,91,102,76,100,95,83,107,94,105,99,94,101,93,97,97,111,99,96,97,98,95,96,105,69,96,78,100,91,101,91,106,103,90,98,102,91,98,96,98,91,93,95,111,102,98,86,92,99,97,91,100,96,103,89,75,96,98,86,83,97,87,102,110,102,109,93,96,83,102,101,94,107,89,91,105,84,101,90,89,96,97,98,97,97,99,121,99,100,96,100,94,96,92,95,91,96,100,100,102,111,87,96,96,102,97,94,94,98,84,77,108,95,84,92,101,100,96,112,106,95,96,102,101,93,110,95,101,103,102,117,103,107,95,80,87,103,96,91,103,101,87,97,101,103,102,91,91,92,82,96,96,91,94,95,107,104,103,93,97,105,93,97,104,94,114,101,93,94,98,93,103,94,90,103,92,101,98,102,93,112,106,121,103,96,85,92,73,95,101,99,100,87,87,101,101,94,108,102,125,94,101,102,98,100,86,96,103,104,100,94,83,101,106,99,104,104,98,88,106,102,98,98,99,102,101,102,97,90,110,101,99,103,87,101,94,98,90,94,91,99,96,101,104,101,106,101,92,96,103,93,101,96,99,96,97,89,98,88,98,88,105,99,104,100,98,82,87,106,94,103,101,94,100,100,88,91,106,95,99,103,99,102,99,95,100,109,99,95,110,96,106,104,91,96,87,97,87,107,102,95,83,92,109,85,99,110,86,95,105,99,100,110,94,93,85,112,96,107,91,93,100,109,100,104,96,105,91,99,106,97,106,92,98,93,96,99,102,105,97,107,109,101,104,102,103,88,88,91,88,107,93,98,107,98,100,106,88,99,76,92,96,93,98,93,93,90,107,109,109,94,78,93,101,87,76,107,99,92,71,99,91,91,103,102,76,99,97,106,99,88,107,95,108,104,91,96,104,98,100,85,104,106,91,88,102,104,101,109,96,93,109,109,106,108,84,90,83,94,91,89,101,100,110,93,96,96,96,94,98,116,75,123,89,92,100,99,96,99,94,98,100,98,96,103,95,109,98,80,102,99,91,109,97,98,104,101,104,131,101,103,100,101,91,88,86,100,101,89,109,97,108,98,109,91,97,106,98,89,98,109,106,104,96,97,100,99,103,102,103,92,105,88,108,90,99,88,105,102,111,98,100,124,88,91,100,97,95,111,92,103,91,98,106,82,89,94,105,95,102,97,90,106,105,110,105,98,93,104,78,107,96,112,123,99,93,90,113,104,97,98,98,103,94,114,88,97,110,76,99,109,89,109,92,101,106,97,102,93,101,107,98,102,85,107,96,92,97,111,85,114,64,114,96,98,88,96,104,90,91,103,88,99,99,100,103,91,98,113,82,89,113,98,91,101,110,97,96,96,88,99,102,94,90,90,99,108,87,108,91,95,97,100,96,97,95,87,96,100,109,113,99,100,110,104,78,101,101,93,82,95,100,93,117,80,105,101,89,111,105,96,97,98,91,100,87,114,101,91,98,99,92,97,93,100,98,100,88,90,101,102,95,94,110,105,115,82,107,104,96,98,90,105,101,101,98,105,104,97,102,103,101,96,117,110,104,102,102,104,112,102,63,97,112,108,106,93,85,90,92,96,92,87,96,88,100,98,92,97,86,95,99,101,95,97,106,108,106,95,101,110,101,103,90,104,92,100,103,94,95,93,111,103,103,98,106,108,100,93,90,97,94,90,95,98,96,81,107,98,110,84,113,101,99,102,105,90,91,104,103,123,96,108,95,90,101,92,95,101,95,80,106,94,98,102,104,106,95,89,112,90,108,116,95,104,101,119,109,98,109,113,114,91,102,105,95,90,99,105,101,86,100,105,100,83,95,90,100,96,127,94,101,97,114,101,102,93,99,94,106,95,107,90,109,90,104,84,99,98,97,90,96,95,100,102,104,81,102,88,89,111,93,106,95,109,96,114,119,99,94,102,88,117,103,98,106,101,95,94,98,97,104,97,94,81,100,102,101,117,86,105,96,99,99,97,103,94,98,103,80,93,101,94,100,103,99,102,104,88,96,109,94,104,91,96,94,93,99,106,91,96,114,114,85,72,93,92,99,95,101,91,103,106,99,101,99,88,93,100,98,102,97,96,87,94,88,96,103,94,89,125,83,100,96,95,101,109,104,103,97,94,97,107,96,96,110,101,101,91,97,101,103,92,98,115,89,100,100,102,101,97,91,101,94,105,91,91,95,96,105,99,87,105,90,98,100,98,107,105,102,95,100,97,105,88,108,96,103,99,106,108,100,99,100,106,104,108,102,96,99,93,104,100,94,100,96,102,100,98,95,103,98,100,105,98,86,103,92,104,90,97,108,113,96,99,91,104,100,109,107,102,94,88,104,99,94,107,100,100,97,100,102,96,99,88,96,101,88,92,105,86,96,103,97,72,109,91,97,88,98,107,91,80,82,87,99,110,95,106,103,100,106,91,101,94,105,103,102,101,105,98,96,102,96,98,92,93,109,100,100,105,110,101,92,110,96,100,97,102,95,100,101,97,98,96,104,101,113,108,97,94,103,94,100,78,107,98,92,100,107,97,103,97,77,94,103,87,94,107,99,99,108,90,96,104,93,109,91,79,96,99,115,94,101,103,86,104,100,94,100,106,94,91,87,104,86,88,78,100,98,103,93,92,96,93,103,88,101,92,95,86,94,101,95,106,101,87,82,102,99,95,98,93,105,100,98,95,95,102,98,93,102,84,106,106,96,100,59,103,98,98,110,99,105,101,86,91,101,103,101,109,97,113,95,106,114,106,109,96,90,102,113,96,105,98,105,90,106,98,94,104,103,97,104,100,102,100,84,81,108,104,84,81,91,94,94,109,120,100,107,87,109,103,92,93,94,104,109,87,104,111,106,95,93,97,99,94,87,88,111,97,106,108,100,97,91,100,102,89,92,98,93,104,98,98,85,104,101,102,99,101,103,101,116,105,105,100,94,90,104,91,99,94,102,102,78,95,90,102,101,95,108,104,95,93,112,97,102,98,106,97,103,95,105,101,103,92,97,102,92,100,110,101,105,98,99,108,106,98,96,95,105,84,101,95,105,85,100,106,94,83,86,99,93,110,92,88,107,94,109,111,98,102,98,109,89,101,95,93,96,79,97,106,92,116,96,100,91,93,98,102,92,101,79,114,96,110,102,106,99,113,107,88,109,94,99,86,101,100,94,97,94,96,102,105,100,94,103,101,102,98,90,114,94,123,83,101,83,101,102,94,107,115,101,93,100,102,98,87,108,102,98,94,101,95,100,104,102,107,102,98,102,111,97,103,105,102,101,101,99,106,90,100,112,98,99,101,94,108,97,100,104,101,104,96,93,109,103,99,93,96,87,104,93,102,95,103,114,101,109,99,94,109,95,88,96,93,101,100,98,100,100,95,108,92,91,96,98,101,103,91,100,71,101,123,97,106,103,108,102,92,106,100,101,119,119,89,91,94,85,105,107,98,97,94,100,92,85,108,71,102,111,107,104,112,112,88,101,117,93,92,98,100,99,90,102,90,88,89,91,88,109,111,99,98,83,92,101,90,93,115,97,111,90,95,115,108,98,102,96,107,105,100,98,99,92,98,100,102,101,102,100,100,94,105,90,91,95,83,95,100,97,102,102,104,103,101,92,95,106,107,116,96,101,97,97,108,98,118,100,88,96,92,99,99,91,89,101,95,95,92,101,106,100,111,95,106,103,102,101,105,92,101,109,91,109,132,99,112,86,105,105,96,89,114,95,99,96,93,88,107,102,92,86,97,102,99,86,109,107,101,94,100,93,93,89,107,95,100,110,97,91,102,95,98,100,91,97,101,102,97,93,94,85,102,99,112,87,94,99,98,109,104,98,103,95,104,101,104,97,98,100,95,104,104,111,88,117,92,100,105,111,100,99,89,117,99,87,104,97,98,87,98,112,96,106,95,102,75,110,94,93,89,96,120,93,92,89,91,91,100,117,93,96,97,101,112,109,103,106,89,101,99,105,98,97,109,103,87,91,102,97,94,116,90,87,102,96,121,106,114,100,101,91,95,118,103,113,101,104,106,101,104,113,104,100,102,100,108,109,95,93,98,115,107,95,106,113,110,86,85,94,87,104,110,93,101,117,96,91,104,98,109,96,73,88,108,103,105,96,96,103,91, +727.55225,92,95,113,80,93,85,100,99,95,90,101,95,86,95,106,103,99,102,91,106,101,105,92,95,67,105,104,105,97,106,103,94,99,95,101,91,95,93,99,101,98,93,104,91,94,103,98,110,96,89,93,110,110,109,99,87,109,86,113,96,106,97,110,96,103,100,98,95,100,94,102,94,97,110,93,96,91,82,106,104,109,97,103,105,93,98,72,106,104,107,94,85,100,103,91,93,83,92,105,90,94,105,88,103,102,97,72,91,82,95,99,96,95,98,101,98,100,106,105,101,114,100,108,101,106,99,109,102,98,116,92,103,114,104,103,107,91,98,101,114,95,99,94,93,95,104,99,94,93,99,93,92,94,84,102,99,102,90,103,102,106,112,102,107,95,99,93,90,99,88,104,110,88,95,106,93,97,109,113,87,101,89,100,104,97,96,87,95,92,117,97,89,88,99,109,80,101,111,89,96,101,97,103,108,93,102,96,97,111,96,86,103,105,99,107,95,105,100,93,104,99,98,98,96,105,106,95,102,106,95,88,106,117,96,109,108,97,98,94,97,99,105,105,93,94,101,109,93,100,93,92,96,99,94,90,110,84,105,94,91,97,103,102,109,98,102,109,105,87,105,100,99,109,109,88,99,101,106,99,97,100,102,103,98,95,97,93,104,92,93,91,94,105,98,100,106,99,101,105,97,84,105,92,109,83,99,101,98,123,95,82,101,96,102,100,87,84,106,94,90,100,96,97,98,103,104,89,91,116,106,103,97,106,108,103,91,99,98,94,100,97,94,88,90,99,98,96,103,108,92,104,95,96,106,109,99,100,93,97,108,109,92,114,89,98,114,105,101,96,95,105,95,99,83,98,113,105,95,101,105,105,91,101,97,111,89,87,105,104,110,105,87,116,108,97,108,106,100,100,96,76,102,100,104,96,97,101,94,93,90,97,93,108,102,103,86,102,108,96,99,106,97,93,109,92,84,102,98,93,86,97,95,78,93,104,88,81,94,93,103,93,102,96,112,101,86,105,99,105,102,98,94,108,92,100,95,95,104,92,94,98,107,116,109,95,102,109,93,99,97,96,105,104,94,105,93,105,85,97,106,63,102,109,108,104,106,95,103,96,94,96,102,97,101,82,98,94,122,95,106,99,96,98,98,96,97,102,93,105,105,110,107,104,113,105,103,91,98,100,96,101,107,111,94,110,89,95,104,108,129,111,104,101,99,95,100,91,91,105,107,94,96,99,101,98,105,86,86,93,107,104,101,90,102,95,94,90,68,102,103,102,107,113,106,99,116,109,114,101,100,98,98,88,100,105,104,109,101,105,89,100,114,101,101,90,97,106,100,112,110,101,102,92,105,103,110,87,96,106,78,76,100,98,108,95,98,102,121,105,102,90,114,86,105,104,100,97,108,94,104,95,103,92,104,111,101,97,105,100,112,99,95,88,106,96,91,88,100,99,96,71,101,88,98,101,84,104,105,99,111,94,104,99,113,98,81,89,104,112,91,109,111,100,104,71,111,93,110,98,100,108,93,95,78,92,110,103,98,105,100,100,110,113,95,88,94,100,105,96,91,97,110,96,100,99,100,97,93,105,106,92,96,100,95,90,105,109,102,99,90,95,96,78,94,99,92,110,102,98,87,97,99,103,104,90,98,95,111,97,99,96,84,108,98,93,94,96,96,98,92,96,96,109,96,107,100,91,95,109,99,97,106,117,110,109,92,105,104,105,103,110,106,97,96,89,109,92,90,99,88,95,100,107,95,103,114,111,104,106,99,104,99,94,101,118,108,100,104,103,99,101,108,91,100,97,101,92,99,95,98,108,95,87,92,107,96,102,104,96,95,98,109,100,88,108,103,97,99,109,114,86,100,106,94,98,97,102,104,101,99,100,91,96,98,101,110,107,85,106,114,98,83,103,83,85,98,100,109,119,104,103,108,96,89,105,99,96,114,108,100,95,93,103,108,98,88,97,101,91,108,99,108,99,113,96,112,108,94,98,95,112,98,107,94,104,96,106,106,94,96,99,105,108,90,109,103,95,121,89,96,93,99,102,103,104,98,88,101,107,90,107,107,98,98,89,111,84,107,98,114,123,95,106,90,94,83,90,104,109,105,92,100,98,101,108,94,79,98,100,109,101,99,103,95,99,101,80,99,100,87,95,101,108,112,106,106,93,116,102,94,99,93,81,102,103,100,90,120,86,104,92,93,99,106,95,97,106,100,96,102,104,72,102,97,100,101,101,100,101,99,99,95,106,110,96,93,97,110,87,90,109,86,106,97,96,103,100,93,93,100,72,108,102,110,103,99,96,96,100,91,106,96,96,91,87,100,91,104,104,95,97,101,107,110,101,91,107,94,97,98,94,91,88,94,92,104,91,97,112,104,105,101,108,108,85,100,96,93,102,95,91,111,98,106,98,104,98,99,107,94,94,99,96,96,101,103,104,106,112,95,98,97,91,110,95,97,93,91,101,97,99,105,98,90,102,90,98,98,98,92,93,109,94,89,99,106,96,86,101,101,98,100,96,96,94,99,110,108,105,84,87,92,107,95,118,96,109,95,115,91,110,95,90,110,95,99,96,102,86,96,105,87,102,107,87,99,102,81,106,96,109,100,96,106,94,98,90,97,98,96,107,101,100,90,87,106,98,92,99,96,89,90,101,94,92,88,90,98,98,96,89,99,97,99,105,110,102,107,91,99,92,101,95,82,105,103,97,101,91,108,101,97,88,88,106,101,125,109,92,83,90,103,86,102,104,95,84,106,76,100,98,118,95,98,99,88,88,102,91,91,92,106,81,91,102,93,106,105,107,109,101,100,115,87,97,101,95,96,94,104,97,103,103,104,102,88,106,105,99,99,90,100,100,97,96,93,98,97,91,102,95,107,92,106,130,95,93,92,109,103,97,104,114,100,104,103,86,103,98,96,98,94,94,93,95,90,102,99,100,104,107,98,93,101,95,94,91,106,109,95,102,116,84,83,123,110,84,98,95,112,98,94,86,106,117,98,89,101,105,92,96,97,93,79,101,97,93,103,102,79,98,104,101,100,105,124,101,96,108,101,94,97,102,103,87,95,91,104,100,97,102,90,101,89,88,103,94,100,106,100,94,93,103,98,99,95,101,94,101,94,113,100,101,87,98,87,94,95,99,88,75,97,105,109,99,109,105,82,98,91,98,81,94,106,96,84,95,104,97,87,113,101,103,94,104,87,96,119,89,94,100,90,87,82,87,106,101,103,104,105,114,102,97,96,99,102,99,97,112,99,85,92,94,105,96,89,98,82,92,96,88,96,98,89,106,99,95,104,97,100,107,91,94,90,93,92,93,103,97,79,83,98,97,84,102,104,102,105,103,96,91,102,100,88,98,101,100,102,110,102,95,108,91,94,109,99,100,98,101,95,89,97,93,90,93,87,97,94,92,89,100,103,94,87,104,99,92,95,101,96,98,102,96,97,109,100,102,96,104,104,106,93,83,80,86,98,97,105,100,98,99,94,93,117,99,96,102,109,103,91,92,96,95,95,92,101,103,91,97,106,91,104,102,97,113,102,98,109,87,115,96,96,98,101,103,99,107,87,97,92,93,103,100,98,99,106,98,103,104,103,95,114,93,97,101,100,101,109,94,103,90,98,103,99,96,88,96,93,88,103,101,101,83,97,101,99,93,88,95,83,107,108,98,97,87,95,96,101,96,85,89,107,98,108,106,101,95,100,102,90,111,118,96,92,100,95,106,98,101,98,98,95,89,92,103,102,96,110,106,86,96,98,102,100,92,81,95,90,97,92,98,86,98,113,101,99,99,90,119,105,113,99,99,87,105,104,106,105,86,105,95,101,102,107,91,93,98,109,101,101,104,108,100,110,106,97,105,76,100,104,100,98,96,91,89,98,103,97,98,96,96,106,104,99,102,91,89,112,83,98,106,90,102,98,97,108,89,102,99,99,96,91,89,108,90,84,94,93,100,108,96,96,99,104,97,98,95,102,106,118,101,104,103,99,97,96,86,97,90,112,101,116,94,93,101,91,101,95,104,83,106,108,101,107,102,101,100,112,118,104,91,99,104,93,109,77,90,92,95,100,115,99,96,95,108,104,99,100,96,112,96,99,87,120,99,92,87,102,99,105,100,94,112,92,113,97,106,107,90,106,109,99,109,85,102,105,87,94,98,91,101,101,96,95,96,74,91,113,101,100,90,97,87,94,99,102,87,111,98,99,102,101,108,101,97,84,99,119,103,97,92,84,101,106,107,91,94,98,98,90,83,83,106,83,95,98,104,87,98,110,88,101,100,97,98,85,100,101,105,106,96,94,115,98,71,102,97,106,113,98,98,110,100,104,90,119,92,107,117,87,89,101,106,98,98,107,95,99,90,106,104,102,98,101,93,96,99,96,94,116,87,88,98,100,91,73,98,116,100,92,116,98,99,98,106,94,91,103,112,103,86,100,83,89,102,98,88,96,128,96,98,94,100,98,103,93,92,94,92,93,107,99,87,98,88,98,99,101,91,82,104,96,91,98,94,105,105,98,90,90,105,96,104,98,106,104,105,96,99,87,94,105,107,97,99,100,110,107,95,109,119,101,107,106,105,100,102,92,108,103,109,91,94,100,96,105,105,94,89,115,97,103,107,100,95,95,101,94,98,95,94,79,98,83,101,93,103,116,114,103,98,80,96,99,114,101,98,119,96,91,93,115,91,103,80,106,91,101,97,97,102,100,96,109,95,82,91,94,100,108,92,86,91,106,97,102,93,93,95,87,89,105,100,97,94,102,94,98,89,95,94,87,90,93,116,104,109,89,90,101,99,98,93,93,91,124,104,103,111,99,84,115,103,97,88,87,81,98,92,109,113,98,87,94,94,93,106,90,101,97,107,85,95,101,94,93,88,71,103,92, +727.69366,101,91,102,90,85,109,105,97,94,108,97,93,95,92,95,100,89,101,112,100,100,137,105,97,103,90,99,104,101,113,96,103,93,96,103,68,78,90,104,95,98,108,105,97,96,107,101,105,87,102,101,96,104,111,95,101,92,106,109,96,94,116,100,94,110,91,96,113,96,86,100,120,100,123,82,109,92,97,92,103,87,98,101,102,102,97,111,111,86,94,95,90,102,104,95,89,105,94,90,105,113,108,87,89,105,85,91,108,105,95,78,94,99,96,102,107,97,95,91,105,103,98,110,98,104,102,100,90,97,94,91,91,94,101,108,104,94,99,90,108,103,112,93,101,91,85,103,109,91,98,102,93,108,90,99,105,101,99,99,90,91,89,99,110,102,100,96,107,93,86,99,87,99,97,90,100,90,94,106,90,97,89,99,89,91,106,93,85,95,98,98,90,104,100,104,99,96,94,95,88,134,101,98,92,98,93,98,95,109,88,110,99,90,86,102,91,111,97,93,90,95,94,106,95,97,73,88,99,87,92,87,102,92,106,88,95,91,112,98,86,96,94,103,116,109,100,102,104,88,99,96,109,108,97,97,95,105,93,83,99,97,92,77,100,88,93,97,95,95,102,102,101,97,101,93,99,101,104,85,101,103,99,104,103,95,96,85,103,97,102,102,94,88,102,99,102,103,103,100,95,87,101,99,97,82,100,100,76,90,106,96,99,105,103,106,101,95,91,103,108,100,94,95,82,100,113,91,78,94,103,106,104,95,111,100,103,101,106,99,99,94,97,96,88,100,95,101,98,106,103,96,101,94,105,95,98,113,99,96,100,102,101,92,100,98,84,103,99,99,106,101,95,105,96,103,89,116,98,106,89,79,102,109,118,109,96,100,84,108,87,105,96,96,90,104,102,96,101,103,100,103,94,99,90,105,93,89,109,86,105,86,93,120,99,99,93,95,94,96,92,99,100,97,90,95,96,87,117,88,86,92,100,90,93,91,95,85,108,91,93,96,89,111,105,97,100,99,102,95,102,91,84,105,112,101,97,96,95,96,96,97,97,97,102,91,98,80,86,101,114,98,92,100,105,101,95,95,102,97,114,93,98,100,103,97,87,100,101,87,86,92,100,95,97,102,100,104,107,98,107,87,95,100,99,95,94,98,88,109,93,96,94,91,107,90,103,84,101,91,91,109,101,99,101,90,109,103,94,100,99,100,105,100,95,97,111,99,95,110,92,100,96,100,95,98,96,89,92,88,95,101,94,96,93,94,98,91,100,108,91,93,97,100,93,106,96,97,103,140,88,94,93,97,98,91,98,86,103,96,103,104,100,95,92,85,104,98,96,95,125,91,102,101,96,99,108,96,106,98,100,87,107,95,86,94,94,90,86,98,100,102,100,96,95,88,106,106,92,96,96,90,104,99,94,97,110,88,91,97,101,93,106,100,97,98,100,92,96,100,107,103,105,102,94,109,95,93,100,97,99,102,95,108,91,97,95,107,104,98,101,114,102,93,110,102,92,97,101,109,100,93,94,91,90,86,99,98,112,59,92,97,97,92,106,97,101,103,91,110,91,85,98,96,111,92,92,90,100,108,98,89,85,103,104,97,86,100,101,95,91,103,95,98,82,99,95,94,97,109,88,102,93,97,94,93,97,90,101,95,99,91,91,102,91,106,96,88,100,92,87,103,94,96,94,99,87,104,101,105,102,98,86,109,91,90,107,104,97,100,95,110,95,83,95,100,102,100,110,95,83,96,110,96,89,94,104,105,96,96,94,84,105,97,114,94,102,101,109,95,107,89,109,85,101,87,97,108,102,98,96,91,109,99,98,103,99,94,103,100,96,104,96,96,100,97,100,83,106,107,96,105,98,96,100,97,105,95,91,95,99,95,106,97,91,89,113,98,101,92,93,103,101,94,97,89,101,98,99,91,110,103,104,99,90,100,109,99,107,96,94,106,106,122,98,97,101,94,110,98,101,87,100,103,90,97,105,88,100,102,98,103,104,99,98,98,98,86,105,94,103,92,89,90,100,114,98,101,89,101,96,90,102,104,96,104,88,98,107,103,97,99,108,92,97,100,106,79,96,107,104,95,93,90,108,90,92,88,95,93,90,101,100,102,92,100,101,98,96,107,103,101,95,100,89,101,109,97,100,97,91,100,99,95,97,115,93,103,91,98,104,108,95,96,89,93,99,93,107,92,110,96,98,117,87,90,101,93,101,90,93,95,100,94,97,107,112,96,101,92,97,89,92,83,104,97,105,92,98,106,96,96,100,95,88,101,94,103,100,87,93,95,100,97,107,95,113,76,101,104,95,94,105,94,102,93,100,96,97,109,100,99,106,94,91,95,95,87,105,96,105,111,101,93,89,92,90,96,94,97,96,108,98,121,90,96,103,97,87,99,114,97,103,93,111,100,95,106,95,77,110,109,97,88,100,90,95,108,89,97,85,98,97,113,103,98,92,107,94,104,93,78,100,89,94,106,100,103,96,106,106,89,103,100,99,84,123,88,83,104,101,94,110,81,97,101,88,103,89,89,107,101,97,101,101,102,93,98,105,100,124,101,95,103,98,111,97,88,106,98,98,103,94,92,105,87,88,87,98,100,91,97,105,100,103,88,99,100,98,97,96,92,99,106,88,107,107,117,101,94,90,107,100,95,100,105,108,89,105,98,102,94,101,93,99,95,84,75,107,106,99,84,100,98,95,92,113,106,96,101,100,100,103,97,92,103,95,92,97,97,100,99,107,97,102,90,102,99,106,93,99,96,95,92,91,92,84,83,98,104,96,101,102,97,107,113,105,107,103,109,100,90,88,101,96,95,84,108,110,64,107,98,96,89,99,99,97,97,95,96,96,89,108,99,87,99,108,102,96,93,125,100,90,97,87,103,84,102,104,101,113,110,95,91,105,91,91,95,102,98,88,80,94,98,94,100,108,92,102,98,90,100,83,84,97,96,104,103,98,87,90,99,80,94,84,111,102,85,101,97,91,106,95,100,92,98,93,74,106,94,114,97,87,95,93,95,92,110,92,92,111,97,103,91,103,102,105,99,94,91,104,98,99,104,98,90,109,100,101,94,109,107,100,98,96,92,91,106,107,99,98,91,109,110,102,94,96,89,98,94,93,90,101,95,103,96,103,97,99,92,95,104,120,102,99,100,99,88,102,108,101,98,97,105,97,93,105,96,115,85,92,95,103,91,89,103,98,87,90,100,97,96,108,102,95,97,95,86,97,89,105,104,92,124,109,97,89,94,100,92,94,91,95,97,99,94,102,102,96,99,105,102,98,100,100,106,98,104,87,108,96,96,92,99,104,97,98,98,92,101,89,94,95,88,81,109,101,83,97,97,101,100,92,84,93,98,108,106,74,91,86,104,107,95,84,98,100,99,107,110,96,93,97,97,106,98,99,112,113,101,100,100,94,101,97,105,102,93,99,93,93,98,98,91,89,103,88,88,104,105,101,89,112,86,91,95,99,87,92,92,85,93,104,85,96,104,96,97,97,91,97,98,103,98,99,90,99,98,97,105,102,106,95,84,99,98,100,89,95,82,91,93,101,116,99,92,96,97,94,101,88,89,86,86,92,93,108,89,91,88,102,83,98,94,97,101,105,116,110,95,96,96,98,101,98,95,68,99,93,105,105,87,109,99,104,98,98,93,95,102,97,110,97,113,99,92,102,101,95,107,101,99,87,98,137,99,93,106,97,82,93,96,97,101,84,97,98,104,72,100,79,86,99,90,98,99,93,99,100,106,104,97,100,103,99,85,102,109,86,101,89,96,103,92,92,102,97,109,94,93,96,110,109,97,117,100,107,105,91,114,89,88,96,98,99,106,106,104,87,103,100,101,87,100,92,99,109,99,92,101,92,91,90,104,92,97,100,111,91,90,96,100,96,116,100,98,101,83,90,91,95,102,97,99,94,101,95,104,96,100,98,105,98,106,97,100,122,98,109,111,99,98,100,98,97,85,105,101,84,104,98,103,88,104,98,112,103,104,96,112,85,104,89,104,100,101,113,104,97,99,106,99,99,110,99,108,112,95,93,95,103,99,92,105,91,100,104,102,92,102,88,85,103,89,103,99,112,111,105,97,105,102,100,101,106,108,107,102,99,102,98,87,95,103,95,92,102,103,107,101,88,100,90,89,86,80,100,93,102,96,92,94,102,109,98,93,104,88,109,95,94,94,91,102,101,97,102,98,94,99,102,108,93,94,105,91,98,111,98,84,106,91,94,102,96,90,107,109,93,99,112,112,106,105,98,101,95,94,88,98,108,96,108,106,91,98,94,99,108,100,98,103,93,97,134,102,109,101,83,90,83,101,98,105,84,76,101,105,96,92,96,103,97,98,102,92,101,96,113,98,101,83,117,94,91,99,102,101,97,89,102,103,79,99,94,100,109,96,91,99,99,102,109,96,96,100,88,85,68,106,105,108,102,113,108,95,85,106,87,91,98,96,110,96,93,86,83,101,100,88,95,110,96,92,117,98,113,104,105,98,89,90,103,88,111,91,86,108,90,86,79,94,98,96,93,104,107,92,97,94,87,101,120,100,88,104,110,105,105,83,105,90,106,92,101,97,93,110,84,99,95,100,102,102,100,99,95,95,101,110,89,104,105,95,91,106,121,98,100,90,98,106,97,109,99,91,100,104,108,95,98,82,94,117,92,127,112,105,88,87,100,94,96,95,99,96,110,96,92,112,105,96,98,97,99,88,108,103,105,107,92,104,88,102,97,108,94,89,101,100,104,88,101,77,89,98,92,94,98,92,107,95,90,92,90,85,102,102,111,102,64,109,94,112,102,103,90,109,102,96,107,125,91,88,66,98,72,109,94,100,96,100,105,94,100,99,91,94,92,98,84,81,94,84,87,91,99,119,97,103,91, +727.83508,114,97,100,85,93,79,106,101,96,102,95,89,103,108,97,100,104,99,112,106,100,97,101,106,112,105,90,104,91,110,88,86,97,96,112,95,100,93,92,100,98,88,99,108,110,95,103,95,122,100,96,95,110,96,105,92,112,110,93,105,106,109,94,95,104,106,94,105,99,98,110,130,88,78,93,98,96,101,106,98,100,97,101,121,95,101,89,103,103,100,105,100,93,92,95,95,95,97,108,111,99,101,90,112,97,92,98,96,87,104,100,103,113,110,112,93,90,105,125,95,90,97,75,100,98,100,108,90,107,111,102,104,102,86,100,96,111,103,96,98,97,104,93,99,97,90,96,95,99,95,97,110,106,101,105,96,101,91,101,90,95,98,107,96,75,95,72,102,92,95,106,98,98,105,102,97,97,88,105,91,100,96,110,111,104,101,96,100,102,76,104,96,113,84,101,94,92,95,88,103,99,92,84,102,93,103,95,108,101,105,102,101,104,100,99,93,103,94,95,105,113,102,94,74,100,98,95,91,103,100,98,102,113,103,97,102,75,103,94,96,99,100,96,97,91,84,96,103,95,95,77,110,100,109,99,109,102,80,87,101,92,96,94,101,102,101,95,100,96,93,99,92,95,96,98,109,111,121,101,95,94,101,100,97,92,101,88,98,102,100,87,98,108,86,102,94,96,96,96,112,94,95,86,71,67,104,100,98,113,96,94,108,106,113,91,88,89,93,95,102,95,89,104,110,96,94,100,95,93,99,111,96,93,106,100,85,101,102,103,102,100,99,101,82,96,102,98,103,101,102,103,116,101,103,100,100,99,99,105,99,91,93,98,92,94,110,96,105,90,99,96,92,97,107,101,80,93,107,96,107,112,96,100,88,105,91,95,97,87,105,96,88,99,97,93,99,94,102,94,83,105,106,106,93,101,100,112,99,92,107,96,96,122,101,105,99,101,99,103,100,103,105,88,97,102,99,99,99,101,106,97,101,98,108,94,101,105,94,95,96,104,109,102,98,104,114,83,111,96,94,97,90,87,97,110,116,96,98,95,94,101,100,98,105,105,98,100,104,84,96,103,96,103,99,104,96,95,96,99,102,91,102,105,98,94,86,91,88,102,102,91,106,95,95,94,98,98,91,100,99,97,93,90,87,86,108,106,101,92,108,98,88,98,123,88,104,100,97,90,86,104,88,97,89,98,95,93,89,103,103,100,94,108,104,100,98,99,92,112,108,90,97,88,96,90,96,95,86,91,100,106,105,102,105,95,90,113,87,102,96,97,111,100,99,92,97,100,99,100,101,94,105,86,65,95,99,93,100,101,88,97,97,95,105,97,92,90,105,102,101,111,94,87,91,104,98,88,105,114,94,94,94,99,97,95,90,98,116,101,102,98,90,106,113,99,102,105,93,106,83,103,87,90,90,115,105,97,96,102,94,100,108,91,105,101,100,87,97,107,98,105,100,97,94,88,94,93,93,100,109,94,94,88,92,115,92,96,93,95,92,100,96,86,89,93,100,87,94,101,113,98,101,89,106,109,109,108,98,95,87,106,107,100,84,98,99,82,84,103,97,93,102,91,102,89,63,93,113,85,94,98,90,94,99,107,117,97,95,93,95,107,114,106,86,104,98,98,89,97,99,95,92,84,99,106,79,91,84,100,96,106,98,95,95,101,102,97,91,83,94,98,89,108,105,100,98,95,96,99,80,108,90,97,97,93,94,89,102,108,97,99,91,103,94,108,97,99,110,103,95,103,99,76,116,99,94,113,87,98,95,101,104,105,113,102,103,98,94,96,105,96,86,97,79,72,95,97,92,104,106,94,104,91,97,112,110,98,102,102,88,102,96,93,89,95,100,100,104,96,90,95,111,94,90,103,88,103,102,96,101,102,108,94,95,96,97,95,95,106,93,101,109,104,100,100,101,113,104,101,93,108,103,86,100,92,108,102,101,101,97,95,96,104,99,95,102,103,93,104,110,100,97,101,97,102,95,103,87,102,100,94,82,92,110,95,89,98,101,94,94,95,95,95,98,95,83,96,108,100,113,93,95,114,96,105,93,91,107,100,93,100,95,102,101,105,95,94,103,93,94,105,96,94,94,94,88,87,85,88,105,102,97,97,100,105,95,89,106,98,128,92,92,116,109,92,95,89,104,98,76,100,100,90,106,95,91,108,110,90,94,96,99,92,105,109,98,93,94,98,97,79,101,97,101,91,96,97,94,97,93,86,115,106,96,102,83,92,94,96,88,112,100,105,102,90,101,100,110,104,110,88,94,109,91,102,83,78,101,80,94,90,91,95,99,104,105,101,94,109,101,90,98,97,96,92,97,95,102,95,99,100,91,99,101,93,101,92,109,104,103,99,89,94,95,97,101,95,104,90,97,101,96,90,97,101,98,98,103,85,67,96,108,109,89,98,98,87,109,97,89,97,109,87,97,100,100,105,99,94,85,97,103,100,110,97,100,91,85,116,115,100,93,98,86,84,94,105,109,91,109,99,96,114,103,101,95,102,81,103,103,101,109,101,94,105,95,100,90,66,97,92,93,92,103,103,101,97,104,101,106,107,95,104,98,108,107,86,95,117,91,96,96,90,108,98,100,103,102,99,94,96,110,113,119,97,91,105,92,101,95,105,84,99,98,119,130,105,87,93,90,99,97,92,102,94,106,98,91,106,90,94,84,96,101,78,104,115,101,103,100,98,108,107,104,101,107,95,97,96,95,96,108,98,96,98,109,94,104,86,90,93,105,96,98,101,119,98,109,89,95,91,96,100,79,108,89,105,98,99,89,94,102,102,95,111,99,88,93,100,105,96,102,106,98,92,103,99,113,62,107,104,93,97,98,101,90,103,100,99,100,108,98,118,100,101,93,110,104,91,94,95,90,106,99,88,96,103,94,105,105,104,102,95,98,94,97,108,93,102,98,101,102,86,99,96,94,99,103,109,98,101,101,115,80,88,101,103,99,97,99,105,104,105,84,87,107,105,109,96,99,106,102,102,113,109,101,92,107,97,105,93,84,99,98,104,99,91,97,99,95,95,95,104,86,104,109,96,110,94,93,95,111,91,97,107,100,92,94,91,107,101,102,108,87,100,92,110,90,84,98,99,97,101,110,108,108,115,101,123,95,98,94,100,92,97,102,87,95,101,105,102,100,93,108,96,105,101,97,110,103,98,94,87,103,79,100,95,91,81,88,100,95,97,117,109,95,101,106,103,114,99,108,90,97,102,96,97,97,105,101,90,114,99,98,104,109,100,103,103,97,91,93,93,103,101,103,87,101,98,101,105,87,101,99,90,93,96,95,88,105,98,96,105,106,99,109,99,93,115,99,102,106,94,104,99,95,102,104,109,102,92,105,110,97,93,100,94,94,102,94,115,91,84,97,94,119,98,90,99,93,96,100,92,108,95,88,99,90,79,107,91,109,97,96,90,107,90,104,85,97,87,102,106,92,97,95,105,94,79,95,98,84,81,98,96,101,100,92,95,99,103,106,104,109,103,95,101,100,101,95,97,109,93,99,91,88,104,106,100,110,88,95,105,95,106,102,87,96,102,101,94,94,106,107,96,93,98,115,80,93,96,97,91,101,96,91,106,100,95,58,80,87,91,99,103,99,93,112,97,99,86,82,112,115,79,101,101,92,94,104,101,95,91,115,92,95,99,102,91,132,104,103,101,107,100,73,94,96,110,98,98,89,102,103,103,93,114,105,101,89,82,118,98,98,90,111,91,102,89,91,94,81,88,93,116,87,106,113,94,102,90,102,60,98,101,91,97,97,112,63,86,97,90,113,105,101,88,102,94,93,108,96,104,102,88,99,107,100,82,105,95,124,98,101,88,96,98,105,96,113,111,103,99,102,102,95,93,96,102,95,101,102,86,93,100,98,104,100,86,105,109,105,99,96,106,83,104,98,95,90,91,87,99,94,103,107,92,106,92,89,102,88,95,95,94,105,108,91,95,98,109,109,108,117,109,103,95,105,94,95,99,102,89,104,104,91,96,101,98,96,96,96,105,108,92,92,96,111,107,110,100,98,97,89,94,104,79,104,68,99,106,107,102,100,94,97,94,104,100,76,109,88,106,108,106,109,93,110,87,92,90,99,110,107,100,112,87,97,111,101,94,97,91,101,98,91,106,100,105,111,105,103,100,84,106,73,98,98,102,96,104,101,112,95,117,100,99,108,99,105,98,96,84,97,88,106,113,93,99,89,103,88,87,95,92,109,72,105,101,108,94,93,108,96,92,99,101,105,101,89,91,98,91,102,85,90,98,96,102,102,105,101,94,101,94,104,90,88,107,98,110,101,98,102,105,101,92,134,128,66,114,114,98,98,108,102,94,90,109,96,94,92,102,118,90,93,104,103,117,95,95,109,102,93,92,87,100,109,117,104,103,89,87,95,92,129,93,104,94,101,92,113,88,102,102,86,99,101,110,111,104,106,83,95,103,101,98,94,100,102,93,97,103,97,103,104,93,94,97,103,89,95,92,101,109,98,99,84,92,96,91,102,104,113,99,116,107,129,105,108,101,90,110,114,106,110,101,98,103,98,95,112,97,91,100,90,96,98,87,98,95,105,89,118,104,94,99,109,96,107,109,104,105,95,109,119,105,68,103,101,100,97,121,90,103,97,105,86,105,91,94,94,105,90,88,106,97,96,111,104,97,85,98,100,95,92,60,95,102,95,92,113,99,100,99,90,96,111,103,99,92,74,97,100,108,100,91,99,95,110,102,105,96,91,88,98,96,95,96,72,94,101,105,103,129,95,98,109,87,100,116,102,94,100,99,113,101,103,93,104,101,98,104,92,119,101,111,108,93,95,113,117,104,96,97,123,98,102,120,89,102,109,103,94,101,95,98,102,112,106,97,68,100,103,91,111,104,89,101,103, +727.97644,105,89,102,95,95,106,97,91,102,101,68,91,96,103,90,95,87,110,106,69,98,107,97,97,102,117,101,108,112,96,100,114,88,96,92,106,103,116,114,101,87,93,109,100,96,102,99,94,99,94,106,103,94,95,92,91,90,101,110,102,90,96,89,83,94,89,105,88,97,93,106,91,81,104,109,114,94,107,86,102,106,95,100,104,107,85,86,113,114,78,103,94,87,97,93,107,97,96,106,109,90,102,92,87,101,91,100,109,105,96,90,105,115,92,106,98,90,103,106,103,102,101,96,103,97,99,107,91,103,107,110,103,83,99,100,113,94,102,115,98,93,101,94,105,107,91,96,92,80,108,94,102,107,84,90,81,101,88,90,112,91,108,108,103,100,87,100,90,101,103,98,102,92,80,102,84,100,83,107,110,107,103,91,110,97,85,87,100,98,96,96,96,103,96,95,88,104,97,107,104,97,94,96,88,99,107,99,105,104,106,87,102,98,101,85,97,97,112,98,108,96,93,101,101,106,97,99,115,99,91,83,101,96,103,94,107,97,101,105,92,88,112,94,109,100,105,107,97,93,101,99,93,104,114,96,97,98,97,88,98,100,92,96,82,109,97,113,97,113,109,96,104,100,93,96,99,93,92,76,86,105,94,95,106,89,97,86,105,108,95,96,101,108,111,93,97,90,110,102,93,94,109,101,109,89,97,105,99,108,93,94,104,113,95,96,96,67,106,99,86,91,83,94,101,108,95,97,94,100,101,100,94,97,97,101,85,96,98,92,109,94,87,88,103,98,104,101,101,104,99,98,95,96,90,103,99,66,96,103,103,101,102,99,81,103,95,104,90,97,104,99,94,102,97,76,100,112,99,97,97,89,87,101,99,100,101,88,116,103,100,100,88,96,99,99,95,108,102,108,94,98,101,99,115,98,93,114,98,98,87,97,86,91,95,96,105,85,112,101,93,89,89,83,100,106,88,101,96,91,98,96,90,98,91,91,94,95,113,92,99,125,99,107,91,97,101,92,100,79,88,92,87,92,104,104,100,98,99,106,102,113,86,111,104,96,104,92,91,99,98,100,95,93,93,99,99,95,96,117,92,110,97,109,91,95,82,108,89,95,105,99,102,96,105,75,86,88,95,103,100,102,90,88,109,97,108,97,104,87,111,101,106,101,93,92,99,103,106,99,75,94,98,109,102,110,106,99,91,96,93,97,103,99,96,93,107,93,97,96,109,84,92,76,104,100,100,98,101,103,98,95,116,112,93,87,104,109,92,98,100,96,86,98,112,94,98,85,104,76,100,90,101,103,102,101,78,106,104,97,106,101,94,95,99,93,97,95,105,96,100,113,97,95,114,96,99,96,101,101,106,93,91,101,109,94,97,94,100,108,97,95,101,104,94,100,104,107,109,99,95,96,99,97,98,93,70,93,91,122,100,70,108,89,96,94,93,108,99,101,100,108,96,110,112,106,95,94,100,98,89,89,100,96,104,91,103,100,109,89,116,105,105,100,100,83,105,105,90,109,94,93,100,96,101,86,114,95,103,108,90,99,94,105,90,88,94,102,90,108,83,103,89,93,107,95,97,103,105,96,94,100,97,100,92,95,102,101,104,125,93,91,88,100,98,93,96,109,97,101,103,70,63,90,99,100,96,114,92,95,101,101,104,96,83,101,103,105,101,101,95,98,91,94,96,91,97,98,101,92,101,94,92,96,85,97,98,95,95,107,95,98,106,95,104,106,90,92,105,94,91,88,98,97,98,101,113,113,89,98,79,108,98,97,92,95,95,105,96,109,94,104,100,91,102,101,91,104,100,92,90,98,95,94,93,107,101,90,109,100,96,108,93,108,90,98,106,110,101,101,95,106,135,99,89,94,99,100,100,100,96,102,97,101,76,90,105,103,96,104,94,105,92,100,89,87,96,94,96,108,99,95,90,99,108,80,94,92,104,105,74,106,101,97,101,94,98,126,101,99,100,86,95,103,91,109,85,113,105,104,76,80,78,100,98,94,96,93,97,105,97,96,111,89,104,90,92,100,91,83,94,104,102,104,103,99,95,92,96,103,104,106,112,95,106,100,103,86,104,100,83,84,103,100,98,107,111,97,107,84,79,98,102,102,121,92,104,98,90,110,108,96,90,99,100,102,100,100,109,98,98,95,104,82,112,96,107,95,105,90,82,90,97,104,91,97,92,100,100,109,101,108,83,92,87,98,99,93,100,96,109,84,110,101,91,96,93,99,106,115,112,92,106,102,107,89,83,97,88,92,99,111,89,105,98,102,109,98,95,95,98,101,104,93,101,101,90,98,96,96,95,101,103,106,89,98,100,93,84,98,101,90,98,88,93,94,100,103,116,113,114,98,110,88,98,88,94,98,88,92,102,84,121,92,102,87,104,95,104,104,106,80,120,96,93,91,101,121,90,88,90,97,94,105,91,103,94,105,96,110,95,96,90,89,98,91,99,93,85,112,109,98,100,101,89,91,100,96,113,93,105,105,82,96,131,94,98,105,99,95,92,103,98,95,93,92,91,101,108,89,105,95,112,102,113,91,81,85,87,121,104,100,102,90,85,95,99,95,106,95,91,104,101,85,104,99,95,94,97,94,85,84,96,104,93,100,91,110,110,89,103,102,93,102,77,93,99,92,100,99,94,92,107,94,75,83,94,103,105,104,106,110,105,98,99,91,89,89,97,93,93,93,90,95,109,97,98,93,103,98,103,109,116,98,96,106,91,88,106,99,94,93,96,107,94,105,97,97,97,94,110,105,92,90,99,96,98,98,93,95,95,99,107,70,101,89,104,93,94,99,98,94,98,96,84,99,99,97,104,79,99,96,109,100,100,96,94,104,99,94,113,98,88,102,102,96,92,102,120,94,89,100,109,91,102,124,91,96,108,95,98,90,86,85,101,101,99,98,91,93,97,100,100,94,98,94,89,91,70,96,95,116,93,92,98,97,101,102,100,102,98,93,93,96,93,102,104,96,91,94,104,90,103,94,89,103,101,98,103,99,101,93,95,93,94,102,96,95,95,98,93,103,100,94,94,107,98,103,98,93,87,120,95,86,98,97,98,101,92,86,96,99,100,101,93,98,87,103,85,99,101,91,90,75,98,80,100,90,98,98,98,97,88,97,101,92,87,107,94,102,95,89,100,84,96,106,103,94,98,100,104,100,88,94,94,99,103,97,101,104,105,101,99,102,89,95,83,84,87,93,110,103,103,86,89,83,100,104,107,106,103,106,103,104,109,93,105,93,99,101,94,91,98,107,106,94,97,92,96,94,92,98,96,98,99,101,108,100,85,117,104,98,96,102,88,100,97,92,92,101,94,96,104,86,89,94,93,114,102,93,104,105,92,109,99,95,97,96,97,108,92,99,108,91,107,95,104,94,98,103,93,102,93,87,96,93,104,95,85,76,101,106,98,92,90,99,93,106,99,96,102,103,91,103,100,106,104,104,101,93,86,103,100,96,91,88,106,100,110,94,93,107,89,97,106,92,108,100,95,90,94,113,105,97,96,93,85,109,96,76,102,114,100,93,102,109,70,101,92,84,82,98,96,83,96,106,102,98,110,96,92,84,94,92,109,83,95,95,100,101,101,84,98,105,84,92,93,104,95,113,105,69,94,96,108,102,91,94,110,94,99,112,119,102,107,110,96,104,113,95,97,104,83,103,97,95,104,102,93,102,91,102,95,108,106,85,106,88,102,107,99,98,115,99,100,95,105,99,92,105,93,98,105,98,88,91,104,90,105,103,102,87,92,90,96,99,105,95,93,115,104,102,94,94,109,105,92,98,100,92,87,108,90,100,100,101,101,95,95,90,113,103,104,94,94,116,87,92,101,93,101,98,102,91,93,91,106,97,94,116,98,95,93,88,100,90,92,99,96,90,101,94,94,134,113,102,103,117,95,106,93,95,108,94,91,90,100,108,92,94,102,89,97,96,104,84,97,106,99,85,107,83,99,102,91,113,85,102,109,104,95,97,87,93,101,101,92,94,96,101,113,102,102,98,105,108,96,101,104,100,105,106,101,84,107,96,97,102,106,104,87,97,89,112,101,85,100,99,98,101,86,107,93,96,111,102,100,83,83,98,100,100,91,99,109,105,86,100,92,84,93,102,99,97,105,105,96,100,89,100,102,108,92,94,111,100,102,99,104,98,102,111,96,115,101,80,96,93,105,113,91,101,101,97,102,91,101,98,110,111,103,96,89,85,92,100,99,102,105,96,108,105,63,104,102,98,95,88,85,97,85,94,101,87,93,105,93,97,94,87,102,105,108,88,91,99,108,100,97,110,103,89,103,111,95,109,87,103,103,96,92,91,95,98,105,107,94,101,105,91,99,95,97,100,104,96,96,104,99,92,92,89,86,102,104,92,94,102,105,87,94,91,95,107,86,90,96,92,99,105,87,93,97,99,98,100,97,96,104,100,96,94,110,100,99,97,105,91,92,106,98,102,84,93,95,87,94,75,102,85,93,101,97,95,94,98,108,111,91,90,94,97,102,97,98,91,93,95,96,93,95,105,85,100,97,101,91,96,109,109,97,103,107,98,90,101,88,103,99,104,72,110,86,99,101,107,99,100,100,101,102,102,110,94,99,113,102,100,114,96,95,72,95,103,94,94,95,96,84,96,95,100,90,102,105,91,68,110,92,96,106,92,93,98,101,97,100,67,92,111,98,92,103,100,101,96,110,113,104,92,100,105,90,100,105,103,109,83,99,99,102,103,99,105,93,81,88,98,111,102,105,98,89,94,91,103,96,106,88,95,99,113,110,108,87,83,88,114,104,107,108,103,91,104,76,95,85,96,102,103,110,86,94,96,92,104,103,82,100,87,89,98,83,99,112,102,84,98,110,98,89,110,108,90,97,98,103,108,103,105,104, +728.11786,110,109,105,115,102,108,112,110,97,92,105,87,98,97,88,103,100,110,104,106,112,103,92,118,74,99,94,104,92,87,102,92,103,105,109,104,94,100,104,95,88,91,103,80,99,107,91,117,89,98,99,85,99,94,102,88,104,98,108,94,100,79,95,92,98,94,83,115,97,101,106,100,93,115,105,113,102,116,106,98,110,103,106,100,105,98,92,88,109,103,117,100,99,83,97,88,91,108,90,99,101,93,93,97,83,95,93,101,85,110,96,97,108,113,93,102,94,94,95,98,92,102,103,109,104,111,100,98,92,80,88,101,82,83,112,106,82,94,102,87,86,98,116,91,83,100,96,95,97,88,96,101,111,101,91,103,103,95,104,101,100,101,94,105,109,107,99,84,89,91,96,108,92,91,96,91,98,89,91,100,102,96,92,99,100,109,99,95,91,116,99,75,83,104,105,105,104,103,94,84,90,95,105,97,96,109,100,101,70,96,107,97,121,96,93,107,92,91,87,102,95,102,91,97,94,94,92,99,100,109,97,99,103,97,93,96,100,107,105,106,96,91,63,101,100,100,102,103,95,94,95,99,96,108,103,94,102,107,100,100,89,105,97,97,90,90,98,104,70,94,100,96,102,100,113,100,93,95,95,86,88,91,91,92,95,102,88,103,94,103,100,96,94,94,100,102,100,103,93,57,93,100,96,116,79,107,109,122,81,111,85,86,90,100,103,104,86,95,110,110,104,80,106,96,110,91,93,104,100,88,109,100,101,99,105,96,96,93,95,69,90,113,101,107,88,117,93,90,116,99,105,97,108,96,101,96,102,112,103,105,102,106,108,93,98,105,106,98,99,101,102,93,100,101,104,114,90,93,96,95,96,96,102,96,98,93,101,87,105,105,106,93,94,96,102,97,98,102,90,101,117,98,91,106,100,107,96,96,89,93,97,103,100,102,83,97,102,99,102,109,93,94,88,94,105,95,91,96,93,97,91,90,100,95,104,84,94,102,89,98,100,103,87,99,101,98,105,100,110,101,101,91,103,101,105,95,95,92,113,100,82,92,102,91,98,105,102,114,114,96,84,101,99,94,101,104,77,99,99,91,108,116,94,92,99,101,109,96,110,91,94,96,101,103,94,90,88,110,105,98,97,97,98,105,101,87,92,99,100,100,102,96,90,96,95,86,102,96,91,91,78,89,91,84,110,91,99,93,99,94,88,100,101,83,96,106,96,109,87,104,85,105,92,105,97,94,96,101,104,104,101,99,116,86,102,91,104,83,108,102,96,92,96,104,88,92,99,100,98,74,92,96,87,99,88,92,101,101,97,100,89,96,106,95,101,103,106,102,98,109,99,95,96,106,107,98,87,95,103,94,95,101,102,90,95,96,94,102,103,88,103,99,92,107,95,102,98,101,99,96,101,91,88,105,94,80,97,104,109,102,86,93,101,109,87,95,94,96,92,103,99,92,94,90,91,92,76,95,97,103,98,88,89,97,97,97,101,97,96,96,76,96,101,97,109,107,113,92,106,91,95,91,98,94,103,99,103,104,113,108,105,93,109,91,97,97,86,74,112,96,93,102,89,109,88,88,100,101,102,97,116,93,102,97,99,93,113,92,90,92,92,96,110,98,97,95,94,84,92,93,87,86,97,111,102,99,92,103,69,110,108,102,87,101,98,100,100,88,106,97,92,94,102,98,91,91,114,100,110,83,104,109,97,100,92,101,98,112,95,91,98,94,104,111,106,106,96,96,92,87,112,90,94,108,105,96,106,96,92,100,96,102,91,95,112,102,93,102,98,96,97,97,92,90,96,85,94,92,101,105,82,95,94,94,95,109,100,93,102,96,105,113,94,99,107,95,105,88,98,84,110,92,101,105,89,97,116,100,104,98,117,87,102,99,88,105,93,110,95,95,88,99,113,105,102,105,95,96,90,89,87,110,93,100,103,91,85,105,104,107,99,92,104,105,105,82,101,101,112,101,94,97,98,105,94,98,106,78,96,102,93,100,98,103,101,101,91,108,107,101,101,95,91,98,104,100,91,102,84,94,88,92,91,91,109,106,95,113,102,96,96,110,101,79,79,105,95,93,100,104,83,104,103,94,100,97,117,101,80,106,101,95,96,103,94,99,92,85,98,100,105,97,94,96,105,98,94,91,93,94,106,93,106,90,103,88,109,94,72,86,88,105,91,95,96,101,81,96,109,104,99,100,114,85,99,94,97,96,101,103,92,101,113,99,101,94,102,83,93,103,90,103,104,107,99,92,95,103,90,108,97,98,94,92,95,82,107,100,96,105,103,103,94,98,95,104,104,89,93,97,102,107,95,99,97,100,92,87,107,91,107,97,100,99,111,103,92,92,91,96,101,101,93,105,101,99,99,103,107,103,103,110,106,95,90,105,101,105,106,79,91,111,104,92,99,95,98,97,96,121,96,100,109,96,103,98,95,103,94,96,101,96,107,110,124,104,95,93,100,106,95,100,98,84,98,99,99,93,108,98,108,104,89,113,105,102,100,119,101,97,78,98,105,95,94,86,100,95,87,97,88,95,90,98,100,100,99,92,92,111,98,109,112,78,98,92,99,115,97,110,101,94,99,110,100,90,101,89,90,95,100,85,105,100,92,109,109,93,98,105,116,97,100,95,99,107,89,96,100,92,91,104,111,88,102,101,95,105,92,91,111,106,92,99,101,87,102,103,108,101,104,94,109,100,108,116,106,84,74,95,110,104,101,77,100,99,92,101,92,116,113,90,101,98,94,99,106,106,112,94,107,102,77,95,90,106,97,103,106,98,92,109,88,100,90,98,107,103,103,93,100,93,101,94,90,98,114,101,105,86,107,100,130,101,101,105,95,101,100,100,111,88,79,103,98,97,113,102,93,105,101,118,99,105,93,106,87,109,105,108,94,94,102,112,101,106,98,111,102,97,97,104,98,98,94,105,115,121,100,99,94,92,117,94,99,72,101,106,104,104,87,102,87,93,98,101,100,94,100,102,107,100,98,100,111,100,107,113,99,97,99,96,91,111,109,104,104,88,102,102,103,109,99,109,93,75,99,94,97,114,98,92,103,92,105,107,109,88,89,101,111,104,108,102,115,92,111,96,103,85,105,96,98,111,101,101,98,102,97,95,100,96,89,106,85,109,96,78,89,101,91,102,94,109,96,96,107,100,104,87,87,85,105,97,97,104,109,93,115,83,99,97,113,105,109,87,69,99,94,108,96,100,97,92,90,91,95,106,65,94,109,104,105,103,107,95,94,100,64,97,102,106,70,108,94,93,90,97,105,91,92,80,105,78,97,94,97,101,95,98,88,100,92,104,105,98,87,88,97,100,96,99,90,89,90,98,98,111,101,109,94,100,98,102,94,106,106,113,93,97,98,104,97,97,103,98,109,107,102,135,105,104,96,98,108,100,95,103,107,97,93,89,93,92,106,81,91,96,105,98,99,101,97,92,91,99,93,100,117,92,101,98,99,102,93,102,102,101,103,106,110,97,101,106,105,100,101,103,94,100,104,94,95,110,89,105,104,98,93,90,106,94,98,105,104,110,97,82,98,102,104,90,105,105,101,100,112,113,94,92,108,112,97,101,101,95,88,91,97,101,98,98,101,97,85,91,104,102,98,103,96,104,98,101,99,100,96,102,104,98,100,109,92,98,98,97,94,73,106,110,102,90,88,91,94,94,87,97,109,103,96,103,113,107,79,88,90,102,102,99,90,99,105,102,105,75,111,99,95,100,102,105,110,96,93,105,90,109,112,94,90,86,101,96,113,92,96,92,101,93,96,106,96,101,96,98,109,103,89,100,106,88,103,115,99,99,97,110,105,108,86,103,91,101,105,98,101,110,102,101,91,102,112,101,98,101,89,100,104,76,100,103,95,97,101,99,111,93,97,108,107,100,94,99,103,100,97,90,105,61,91,81,109,101,103,123,88,110,91,96,101,103,99,108,94,102,101,101,95,105,100,102,94,102,95,91,113,106,96,107,121,104,108,91,114,93,94,110,110,101,113,106,98,98,92,110,116,91,94,100,89,97,100,98,109,97,88,102,104,104,80,101,96,105,97,116,96,101,91,93,87,89,99,112,100,98,102,111,96,101,94,95,99,105,100,102,101,97,103,107,97,102,83,109,98,95,94,95,104,108,106,101,85,100,95,104,102,96,98,84,107,111,95,93,98,88,95,103,107,99,79,99,99,100,105,104,98,112,95,105,90,89,99,104,96,99,103,87,103,93,101,71,103,96,92,99,96,104,96,105,98,86,96,108,97,99,107,102,71,102,96,111,92,98,96,99,95,97,98,109,97,100,108,109,102,71,97,113,103,102,101,92,91,101,96,105,95,103,104,76,92,96,95,91,100,99,108,88,95,99,101,104,102,95,93,108,91,98,99,109,94,94,102,93,91,103,88,104,86,100,104,102,105,110,107,73,104,104,91,115,76,101,102,117,95,91,100,98,121,100,105,98,108,96,105,93,110,96,110,101,112,97,102,80,107,95,98,99,95,96,99,108,109,96,102,102,81,106,104,123,89,89,95,102,112,107,117,99,102,96,100,109,102,96,101,105,103,121,83,109,109,97,96,101,109,115,95,92,96,105,117,99,97,106,93,105,87,105,109,95,103,107,107,97,97,89,104,100,99,90,96,98,95,96,86,100,92,99,103,93,86,98,103,99,101,109,89,108,95,99,95,103,91,97,102,95,112,118,100,110,102,99,99,98,92,105,100,92,104,108,114,79,88,124,91,99,84,96,91,101,98,109,99,91,102,98,107,97,94,105,103,101,123,100,97,114,106,96,96,93,114,112,114,117,110,99,113,103,94,106,114,92,95,103,75,96,104,106,102,92,101,106,102,107,91,98,85,106,93,84,76,106,102,89,92,100,100,86,116,94, +728.25922,82,112,93,112,91,98,113,99,101,100,98,113,97,101,102,96,104,94,102,91,98,92,101,96,110,111,97,95,101,94,99,98,98,82,114,86,100,111,86,109,108,99,91,95,110,101,105,93,92,98,99,93,87,105,101,96,102,109,98,90,114,98,97,92,90,100,91,90,88,84,110,109,100,78,101,105,102,113,97,98,102,97,105,95,109,87,101,104,93,110,101,98,108,92,100,91,96,85,101,91,105,91,98,100,96,88,94,87,100,101,118,96,84,102,110,102,102,112,103,88,106,88,98,108,85,116,96,84,104,92,102,88,103,101,113,93,98,102,89,93,95,101,90,101,93,95,107,93,102,101,90,97,103,98,109,91,100,94,87,86,104,91,110,125,95,104,98,94,104,89,102,114,99,94,95,102,105,91,60,94,92,87,96,91,92,95,105,102,107,83,94,95,108,97,96,106,99,100,84,99,101,95,106,98,104,112,92,95,109,122,112,87,93,92,123,115,91,86,95,91,110,92,104,95,94,105,95,88,104,109,83,87,98,100,89,96,104,95,103,93,97,114,79,100,71,88,79,104,91,109,100,75,101,101,98,105,98,108,91,99,110,94,90,95,81,97,97,88,92,95,75,103,99,100,106,96,87,90,97,94,101,101,96,122,87,84,94,109,101,97,93,92,109,92,111,95,94,101,99,104,73,96,93,92,104,105,101,112,94,88,91,111,101,99,90,95,95,109,111,90,84,75,106,97,103,103,95,90,105,97,102,86,95,100,87,99,103,103,90,95,94,88,98,108,110,94,95,101,101,104,115,104,93,97,89,99,90,97,97,100,108,82,99,112,96,92,107,102,96,118,96,107,94,103,93,91,97,109,85,104,96,103,89,103,93,92,94,95,100,86,99,86,97,115,95,96,85,102,99,91,101,104,93,108,98,100,98,94,107,92,88,87,100,92,98,92,105,78,96,91,88,92,99,97,93,86,116,96,107,105,90,94,98,96,88,90,95,93,94,91,104,92,100,100,103,113,94,105,100,102,90,105,102,98,91,95,101,95,107,102,97,98,91,90,93,102,105,91,91,102,99,80,99,96,93,103,85,98,100,98,102,108,92,100,92,91,106,101,99,95,103,98,98,116,92,82,95,91,109,101,103,107,91,81,83,95,109,98,95,107,109,102,100,96,86,91,100,98,85,104,90,99,99,106,114,105,121,105,110,101,100,103,100,102,93,111,100,104,90,100,94,102,97,94,98,105,94,95,107,102,99,98,106,101,96,94,80,91,102,117,89,102,90,103,98,94,96,99,97,99,90,84,93,97,95,102,89,94,92,95,95,102,104,105,87,95,92,97,99,98,97,105,95,95,94,91,93,96,99,98,96,101,100,89,103,108,86,93,86,97,101,92,95,95,90,89,99,91,108,96,106,100,100,94,101,98,88,91,105,87,86,94,84,94,95,96,89,99,108,98,90,106,98,91,98,88,102,90,107,99,92,93,103,102,88,101,102,95,105,95,93,104,87,110,80,88,103,82,105,95,107,94,105,104,95,101,100,103,94,86,117,99,104,87,86,94,106,98,107,96,100,100,97,97,103,101,100,92,101,89,93,88,95,102,101,103,80,99,96,88,88,99,95,94,88,90,95,104,92,96,98,86,109,105,89,94,87,102,96,112,104,105,101,119,108,92,100,85,80,92,98,89,102,99,109,102,99,105,71,100,110,102,102,100,97,97,87,96,61,101,98,90,87,110,90,102,103,96,98,104,109,90,97,110,91,98,92,116,86,95,105,97,68,94,92,91,96,103,95,86,102,94,100,98,88,93,103,105,86,103,102,101,110,93,101,96,102,91,93,101,118,80,91,101,95,87,97,88,85,96,79,104,101,75,93,105,127,91,97,93,87,92,92,98,98,99,96,103,98,103,92,90,93,101,84,95,87,89,101,93,97,86,97,87,90,107,86,98,96,101,103,109,96,100,91,78,89,96,87,94,98,112,107,100,81,104,108,88,94,106,102,98,93,99,101,94,95,100,96,99,102,104,91,101,118,101,98,96,115,90,94,102,90,96,117,96,90,90,99,105,94,111,103,91,94,101,99,110,94,109,98,108,94,98,105,93,104,84,97,109,105,97,90,91,99,98,102,103,98,105,102,103,104,95,93,99,95,96,91,82,108,98,109,105,101,100,105,109,102,94,94,107,102,88,113,90,98,109,96,96,94,96,105,105,93,108,99,93,94,85,101,103,88,92,106,101,99,97,96,102,90,93,90,97,112,87,95,102,87,99,104,89,93,94,101,97,107,112,107,117,99,98,92,109,103,98,102,81,103,95,108,77,105,80,97,101,96,94,107,100,93,103,97,108,107,90,100,109,87,98,97,103,94,82,98,101,95,106,89,93,106,92,110,105,99,98,93,102,95,113,98,105,101,92,101,92,96,95,83,91,92,93,88,99,105,91,96,98,102,96,105,101,87,98,99,116,107,92,91,96,83,103,97,91,96,94,109,97,95,97,103,88,106,87,109,95,100,96,103,109,93,116,62,91,112,94,85,98,92,96,108,92,109,94,80,98,98,99,113,94,113,106,106,90,101,96,95,105,92,111,103,96,102,102,103,97,97,107,101,91,101,102,94,92,90,96,100,106,102,92,105,96,94,86,99,101,105,98,104,102,94,93,75,109,87,104,96,101,106,106,108,101,100,101,103,104,99,115,100,85,88,87,108,87,89,95,102,93,99,105,101,115,113,97,98,95,109,106,93,98,102,97,113,105,93,112,103,96,93,106,109,105,104,105,101,105,95,99,112,108,107,100,107,119,107,126,100,116,103,95,106,98,101,97,93,93,103,102,103,105,98,100,91,102,91,94,102,101,98,105,97,100,103,102,105,117,90,96,102,92,118,92,96,99,104,96,98,98,108,105,93,93,103,119,100,104,98,103,107,92,91,109,86,101,98,98,96,84,105,104,87,102,102,101,100,99,99,99,102,83,93,99,97,88,106,106,98,104,98,99,97,112,94,103,101,104,113,96,97,92,91,89,108,93,106,99,95,97,83,99,97,106,91,97,101,90,104,108,100,92,104,99,101,102,91,101,88,98,101,109,104,105,100,99,98,104,78,95,101,100,99,106,102,105,105,106,97,94,99,101,103,90,95,111,109,107,89,98,114,95,103,75,113,102,94,97,106,105,105,105,94,97,103,113,100,105,103,103,107,96,109,112,109,102,104,95,94,92,100,121,96,112,101,100,103,93,99,97,106,92,109,105,110,109,95,92,99,104,99,105,106,94,107,106,75,123,116,106,105,102,106,129,90,111,96,106,98,99,100,91,109,109,105,98,106,99,102,100,103,87,87,98,90,96,106,114,96,109,96,98,89,94,113,104,96,95,83,83,92,63,112,103,96,101,104,103,95,94,100,92,97,100,92,101,106,102,103,113,89,101,95,98,101,94,95,89,91,100,98,102,100,104,105,83,96,98,102,107,91,94,105,98,98,88,97,98,133,102,101,96,113,88,100,106,112,88,95,119,87,101,106,100,96,97,96,94,115,94,97,94,108,99,99,100,112,104,99,101,96,100,122,91,87,98,99,106,107,94,95,93,90,97,98,105,87,96,93,113,96,95,101,94,109,98,101,72,99,103,102,97,90,93,97,92,95,92,98,98,105,99,95,101,114,97,95,109,87,105,103,93,95,102,96,103,88,99,99,87,93,92,98,96,84,99,99,98,108,95,97,92,98,94,99,103,97,93,111,100,62,99,87,85,90,89,88,90,98,74,93,102,102,89,105,99,108,93,108,99,98,90,103,106,101,97,105,89,101,113,90,115,107,106,106,94,96,107,103,100,85,96,97,99,97,106,95,96,102,89,80,92,102,103,106,96,103,86,99,94,107,102,103,107,101,94,101,98,92,90,100,103,97,94,108,97,102,92,96,96,95,91,103,96,109,92,109,101,71,102,101,87,106,110,101,98,85,100,111,97,91,116,92,104,98,80,98,98,94,97,109,95,95,106,84,93,105,98,102,90,101,103,99,84,98,115,98,106,101,98,106,78,95,88,96,109,102,100,105,98,103,88,103,87,107,103,94,102,108,95,101,104,93,92,95,101,96,109,114,95,98,94,99,95,97,96,108,120,98,110,100,114,109,95,108,105,100,90,97,96,109,98,99,105,97,93,98,110,97,87,90,101,110,105,97,103,115,105,96,101,105,92,91,96,88,110,99,96,94,110,101,97,105,102,99,98,78,92,95,100,98,94,93,100,103,98,97,92,98,100,96,95,101,95,104,92,100,96,104,101,88,106,88,98,96,103,100,84,98,88,103,104,99,96,105,103,115,111,97,112,106,102,104,107,91,93,105,86,92,109,114,100,92,110,113,94,102,102,121,100,98,102,98,116,98,98,101,86,114,115,111,108,95,93,98,98,97,102,102,103,105,106,108,126,96,99,118,93,91,102,86,103,94,96,90,87,84,107,116,103,94,95,101,105,99,104,99,93,98,103,104,99,103,99,100,94,102,122,100,88,97,86,103,90,103,98,99,96,99,86,115,96,93,92,98,96,103,100,106,93,101,103,100,108,98,109,88,97,108,107,94,104,91,101,88,112,85,89,102,106,104,96,95,92,106,99,90,101,95,99,94,104,104,96,104,94,101,91,110,108,101,104,94,98,95,100,96,98,130,100,102,87,97,99,102,104,85,98,87,97,93,103,94,96,106,104,99,95,93,94,105,84,105,108,91,104,103,113,98,93,116,91,97,93,105,96,86,90,86,98,103,104,98,106,91,102,104,114,99,94,99,100,109,92,91,98,110,105,99,106,96,102,86,83,103,84,107,99,97,103,100,98,89,99,89,94,83,120,96,101,102,110,128,91,96,94,110,96,108,106,85,95,92,99,91,99,109,84,88,104,96,80, +728.40063,118,85,93,90,92,100,93,111,97,101,106,91,83,92,94,105,79,101,78,90,94,92,97,89,101,94,95,100,103,104,96,96,98,98,105,110,83,85,97,86,99,93,93,90,83,104,104,90,90,92,64,83,96,83,102,109,92,86,95,100,102,99,102,99,104,104,97,96,108,103,98,118,89,95,102,101,94,94,86,82,86,77,84,108,94,105,98,99,112,89,86,99,100,98,96,107,98,105,106,106,96,92,95,102,107,81,96,90,109,94,93,95,88,107,94,101,103,92,100,103,91,86,110,111,106,102,103,109,108,109,93,113,87,93,99,108,104,107,98,94,94,107,95,94,100,98,118,94,91,104,87,105,106,92,91,99,106,101,101,90,98,92,104,104,114,104,100,100,99,109,101,91,104,99,109,103,99,105,117,105,95,104,99,97,107,88,87,106,105,106,99,103,99,101,102,91,101,98,99,93,91,95,105,90,94,95,94,101,108,109,105,88,105,73,100,104,113,105,97,98,110,104,102,103,99,97,102,94,101,104,92,92,100,103,101,92,114,104,105,104,99,97,105,102,91,86,83,87,103,91,101,99,91,94,97,95,95,95,88,97,91,100,102,70,102,101,106,82,91,93,94,91,95,107,105,103,100,93,98,104,109,113,97,95,95,93,74,94,105,100,88,91,104,93,97,93,101,105,91,77,91,101,102,97,81,90,102,89,105,97,87,103,102,98,69,102,92,101,101,97,91,98,95,108,95,105,95,100,105,112,104,91,96,97,95,93,102,97,94,101,91,93,87,90,87,113,108,98,109,98,95,96,96,100,105,97,90,89,99,91,98,87,107,98,92,98,99,107,94,101,100,88,113,104,88,97,104,92,96,103,102,97,89,90,81,96,87,90,107,114,109,90,92,94,104,100,84,93,95,90,93,105,102,97,103,71,99,92,66,80,103,93,91,109,97,88,112,97,96,105,97,97,96,97,101,87,86,85,93,109,99,104,102,100,111,92,107,110,105,105,126,86,90,99,91,102,97,96,80,93,101,99,103,115,97,77,100,94,99,92,97,104,103,94,107,99,96,102,87,101,99,79,108,96,98,97,106,96,102,106,96,117,107,101,99,95,94,106,87,100,100,104,105,101,91,99,94,95,96,98,90,94,91,99,94,101,91,99,98,93,105,95,90,92,102,96,90,94,96,91,90,103,108,105,106,101,92,100,101,107,94,101,97,94,103,87,98,99,91,78,90,97,90,97,89,90,96,108,93,110,106,98,92,100,91,96,104,90,93,109,95,103,93,107,101,99,108,108,95,96,87,93,95,106,86,99,97,100,100,99,103,87,94,95,97,84,105,108,96,98,83,94,94,92,102,104,97,100,99,85,103,116,91,87,91,84,99,105,91,91,97,100,100,117,97,99,98,92,96,87,102,106,96,98,98,96,91,83,104,95,103,96,93,104,90,95,93,90,108,98,83,96,103,90,88,95,88,102,93,100,88,99,94,101,90,105,100,100,110,87,111,105,106,106,94,93,103,83,98,95,95,99,99,102,101,104,89,92,89,87,101,108,95,92,73,90,93,90,98,97,95,90,98,97,113,97,108,100,94,102,98,105,91,101,90,125,103,107,92,94,96,108,90,99,98,92,93,100,95,102,94,97,100,97,92,99,88,108,93,95,96,92,98,81,93,101,113,102,113,95,97,94,90,114,103,95,97,101,95,77,116,79,89,103,102,81,99,106,96,88,88,107,79,104,89,86,86,94,105,96,89,94,104,100,100,91,99,91,109,102,101,94,95,102,81,98,103,103,117,110,87,109,108,100,92,91,105,100,109,100,108,97,105,100,92,106,100,91,92,95,104,105,95,83,107,103,88,109,102,91,98,102,100,102,91,101,105,90,91,86,101,83,114,100,101,95,106,113,97,105,100,93,94,103,100,90,98,97,106,100,95,97,93,101,99,105,101,98,91,107,99,101,89,101,96,101,96,103,95,97,99,106,105,100,94,79,96,92,86,94,102,96,113,105,116,99,100,100,105,91,97,98,91,79,100,104,104,105,101,126,101,89,105,95,90,104,112,100,105,84,87,99,105,110,100,100,92,92,74,99,106,89,99,97,94,83,97,94,92,102,89,97,104,116,90,97,93,107,92,86,100,86,106,97,100,91,105,97,95,104,80,105,84,113,86,101,96,68,87,96,99,99,102,99,93,92,98,104,85,105,77,89,91,96,103,87,98,89,100,115,93,100,103,94,92,92,90,113,101,83,80,102,95,100,92,102,99,92,88,113,94,108,89,108,105,105,115,128,82,96,98,96,94,95,95,98,100,92,94,110,117,102,98,88,102,94,87,98,85,102,98,95,96,101,67,96,109,95,82,98,105,92,102,82,95,91,99,96,86,102,97,96,92,106,98,119,95,97,101,83,98,98,111,91,103,108,98,101,95,101,81,110,115,99,106,94,91,114,104,91,112,99,86,105,92,114,97,97,112,127,105,98,91,93,85,120,102,91,103,99,91,95,113,100,100,109,111,95,97,100,100,112,95,98,101,92,81,100,106,104,93,93,93,86,115,97,97,92,87,113,103,108,94,110,95,96,109,95,77,95,112,95,99,92,91,98,101,109,110,86,103,97,112,87,100,93,104,109,103,109,105,94,95,96,105,110,95,90,111,105,90,93,112,102,96,75,106,88,91,97,97,105,97,101,103,97,106,96,102,95,93,99,106,102,95,104,99,107,93,109,87,95,95,83,90,99,101,96,98,100,87,100,94,96,93,92,114,90,115,82,104,108,99,109,96,96,95,112,108,112,93,110,82,100,108,89,85,98,79,88,97,97,105,91,91,103,118,88,105,101,88,97,97,96,121,100,111,92,91,113,89,99,113,122,90,110,80,105,94,104,102,101,93,84,126,104,102,99,102,104,96,101,106,101,93,89,98,114,98,104,113,116,91,100,97,101,105,94,115,94,116,110,99,103,105,99,97,111,96,104,108,112,92,108,92,103,106,103,87,99,87,95,96,98,94,102,95,102,101,101,82,104,104,110,95,92,105,102,100,94,95,99,87,104,98,91,97,93,104,103,94,102,96,95,99,95,111,102,87,103,106,101,101,106,109,103,97,107,98,98,94,108,100,108,74,101,103,94,104,101,96,91,110,102,107,85,102,106,104,94,92,94,100,99,104,74,104,86,107,106,103,80,88,97,98,100,87,99,112,90,102,92,98,103,97,90,105,102,96,120,87,98,94,101,105,103,105,95,101,91,102,91,100,99,100,94,89,106,93,97,90,99,102,104,103,95,101,101,106,84,97,98,98,106,84,107,66,91,101,97,91,109,75,93,104,112,101,93,101,95,84,99,104,109,111,109,102,79,96,96,90,105,106,108,100,94,98,97,96,94,96,91,85,84,95,92,102,82,95,95,91,101,93,120,92,114,103,104,92,110,66,97,94,106,114,121,64,99,91,99,97,101,88,90,130,116,99,68,108,76,100,108,94,73,81,84,109,95,94,90,95,109,97,102,97,91,94,97,98,116,109,83,106,97,97,101,107,104,108,103,104,97,105,94,100,91,84,95,98,105,105,95,98,98,117,97,90,96,95,84,95,82,96,95,104,103,98,99,102,96,97,89,100,88,102,94,97,101,98,92,93,93,110,97,86,100,90,89,108,103,76,106,95,111,98,100,109,102,112,98,100,99,90,99,96,92,95,99,91,94,106,102,106,113,72,94,111,105,102,98,102,100,96,96,99,97,97,90,102,110,98,98,94,96,107,98,84,94,98,110,106,87,99,99,97,108,108,107,92,101,105,99,101,112,77,98,86,96,103,101,106,103,117,95,74,113,87,102,98,106,94,98,92,99,77,98,109,92,96,92,94,96,93,99,99,101,105,104,94,100,94,91,90,88,95,103,88,96,105,94,95,100,106,105,95,119,100,92,115,99,101,100,95,106,105,97,85,92,106,103,98,97,86,102,88,95,102,97,102,98,105,99,98,88,101,100,98,104,97,105,98,96,100,98,101,102,95,98,91,100,111,95,93,101,103,80,114,77,95,113,101,105,91,95,101,104,116,96,105,88,103,99,87,92,98,108,98,99,83,100,106,106,102,95,93,105,91,99,106,90,109,91,83,100,105,98,105,97,121,87,104,107,106,98,101,95,106,101,91,91,100,102,96,110,104,112,102,109,97,109,110,89,103,97,93,108,84,102,95,97,95,101,93,101,95,86,111,91,96,92,94,95,111,96,94,98,84,109,109,92,95,87,93,97,94,102,101,99,83,101,113,92,98,97,97,110,93,113,90,96,93,94,104,90,102,101,115,94,101,101,94,95,102,100,109,87,101,118,104,96,96,95,107,98,106,99,98,100,96,111,104,110,100,103,88,105,91,92,102,88,84,90,106,99,104,99,97,100,95,106,84,109,110,94,96,109,92,96,100,94,93,108,106,96,98,88,87,103,66,111,104,93,103,87,101,108,97,105,94,93,105,91,100,101,86,91,90,111,96,105,87,96,94,110,99,102,109,90,106,97,94,98,91,92,117,101,105,95,102,92,125,110,101,98,109,102,95,101,105,110,98,104,91,105,98,103,110,106,91,96,103,101,103,109,101,92,95,92,97,113,95,108,96,99,97,108,103,97,110,97,94,95,90,100,94,112,122,112,108,90,108,93,92,96,91,91,95,94,91,113,101,90,100,104,116,96,99,106,88,101,100,96,92,100,103,95,98,91,103,94,88,92,101,103,113,111,109,90,105,97,108,109,115,98,104,98,98,105,96,94,98,112,117,99,92,108,102,96,93,111,113,93,103,110,97,108,95,99,101,99,85,113,96,100,103,108,102,107,105,109,102,115,97,98,92,95,94,93,105,105,112,108,107,108,101,92,108,102,88,91,104,102,115,87,107,94,96,88,80,119, +728.54205,110,112,93,104,98,103,88,97,83,111,95,92,89,95,100,95,90,98,98,104,103,114,99,90,108,111,107,92,88,91,102,98,98,92,83,104,87,93,105,91,95,93,95,108,93,109,99,92,96,95,103,93,87,105,92,107,109,89,108,100,102,81,122,104,101,138,91,103,101,96,93,107,103,100,94,89,109,95,96,94,106,124,97,91,105,93,109,100,113,107,109,92,94,99,101,93,88,105,96,103,106,87,101,94,114,106,95,95,104,102,98,97,94,111,101,101,105,102,106,97,84,105,105,107,100,101,106,70,109,90,110,99,107,91,105,99,103,101,91,99,88,95,92,103,79,110,98,97,104,117,99,106,104,91,94,110,95,90,98,102,94,98,102,95,98,103,95,98,105,97,90,91,91,93,106,105,90,96,94,86,91,93,102,93,94,108,91,101,96,93,97,97,101,95,106,94,92,94,92,77,100,97,113,92,102,96,111,109,102,95,95,87,102,95,96,60,87,104,104,105,112,104,99,97,86,110,108,96,98,96,98,101,95,103,99,114,89,100,91,110,94,91,104,108,93,82,105,90,101,99,94,107,103,100,103,108,92,99,100,90,97,106,111,93,101,105,86,104,92,87,100,105,109,101,104,128,97,96,116,142,106,105,91,102,94,99,92,91,88,95,97,99,94,99,105,122,111,102,110,105,91,91,98,94,104,98,99,125,98,91,101,96,101,100,96,97,101,95,99,104,85,94,94,99,101,98,103,79,100,95,100,85,105,96,101,87,101,90,90,94,114,97,110,94,102,95,85,98,101,82,99,94,92,111,96,101,99,98,117,98,85,96,98,95,89,93,99,101,100,109,96,94,97,97,90,100,101,92,100,88,97,91,99,104,87,84,88,83,102,95,98,96,89,99,90,95,93,95,90,97,94,99,118,106,92,93,100,104,101,94,106,96,109,86,94,84,98,102,96,86,96,94,96,99,103,99,86,104,97,94,91,90,98,94,94,101,100,96,94,90,96,101,100,96,103,97,94,101,96,102,87,106,96,109,98,106,97,95,95,92,88,93,108,95,100,79,105,103,107,108,92,97,86,99,106,101,96,105,98,101,102,113,98,80,91,95,94,93,97,98,96,99,87,101,92,100,97,77,103,96,104,85,100,100,95,103,96,112,99,102,115,100,108,95,91,113,99,89,83,96,83,100,93,112,99,104,99,96,90,114,97,95,100,91,92,109,100,108,100,98,91,97,95,131,99,95,98,89,103,99,97,94,94,95,108,98,92,91,77,92,106,103,109,96,93,99,98,104,104,95,97,101,103,112,104,106,102,88,105,93,91,106,100,97,93,88,96,100,100,92,96,79,91,94,127,93,95,86,89,116,103,98,92,103,101,94,98,74,103,112,93,65,92,106,108,92,95,98,99,98,101,98,99,104,105,89,109,109,96,86,105,108,94,101,105,100,89,103,99,95,101,106,91,97,98,95,93,94,102,105,99,95,99,96,118,110,97,105,90,101,92,102,103,96,90,94,129,102,97,89,104,106,108,98,95,93,107,102,104,89,98,94,97,100,97,57,93,90,105,97,100,96,102,92,105,103,117,97,102,99,99,95,105,101,90,109,105,89,88,95,101,90,101,109,92,97,94,95,106,99,101,99,93,100,101,87,93,87,99,100,87,102,68,92,116,84,105,98,98,98,96,92,101,110,100,108,94,110,97,109,105,93,95,95,110,93,98,99,100,96,101,93,118,103,94,110,94,90,82,98,99,68,99,93,105,101,98,95,97,95,119,100,103,97,99,86,94,109,98,100,97,91,96,105,106,91,89,105,91,99,96,88,98,103,94,97,103,106,106,94,70,89,93,104,102,100,117,95,98,112,110,91,96,94,83,88,101,97,100,87,104,97,97,95,95,102,91,101,105,88,98,104,104,102,102,98,96,102,103,95,93,98,100,93,105,106,101,104,81,99,98,78,86,112,100,93,97,103,93,104,89,97,93,95,104,101,103,87,96,89,100,94,93,80,97,100,89,115,100,101,96,110,107,91,98,97,107,103,97,103,101,97,123,93,104,105,90,94,96,88,95,96,86,94,92,91,98,96,91,102,89,95,96,97,107,90,90,105,104,99,87,108,88,81,96,97,103,106,96,95,102,89,96,109,97,98,78,101,113,96,106,94,107,117,100,91,92,88,100,92,101,102,99,101,91,93,96,97,91,94,96,99,97,87,121,91,106,102,101,103,104,103,97,93,91,95,76,83,103,87,98,87,98,99,101,96,107,103,87,110,84,92,93,93,98,96,105,101,98,96,91,95,90,103,109,99,104,103,104,102,108,94,88,98,94,95,103,95,90,96,98,98,97,103,109,92,99,101,99,103,102,103,96,93,101,98,94,104,96,95,79,96,99,91,95,94,98,102,108,92,106,100,102,120,107,93,89,107,96,94,88,114,92,97,96,110,94,109,106,105,103,105,99,97,99,92,105,83,107,85,91,90,104,88,89,101,94,109,105,96,112,98,100,90,91,110,106,95,89,101,85,103,100,94,104,105,103,135,87,94,101,97,102,101,94,87,125,101,109,109,98,99,106,102,102,97,105,101,87,103,109,94,98,110,91,100,102,96,117,94,107,103,121,109,94,96,99,97,88,91,103,103,98,85,92,109,89,95,100,98,102,83,91,99,96,92,93,104,109,95,101,76,97,93,92,108,96,89,99,115,102,102,101,104,101,104,100,96,101,87,94,101,95,79,94,102,102,91,100,97,100,96,96,99,104,71,89,99,92,91,105,112,94,97,104,88,90,105,104,101,97,104,101,108,106,98,93,94,99,103,93,93,98,109,101,116,102,80,85,103,101,84,91,94,84,98,111,84,93,108,93,95,93,96,98,104,109,92,95,101,103,97,91,92,97,94,107,99,106,84,95,108,101,118,96,97,97,93,106,112,92,97,103,89,80,97,91,105,97,98,96,88,90,103,91,90,106,96,105,96,106,92,113,93,72,103,95,96,103,96,100,107,90,94,105,74,99,88,99,104,92,101,109,86,71,100,95,92,97,117,92,107,97,97,95,107,93,99,109,105,92,108,100,92,79,99,94,96,92,77,109,91,103,107,116,95,100,83,86,105,104,81,93,87,112,102,98,102,99,91,111,96,83,90,99,96,95,111,103,90,101,104,93,92,98,100,91,106,104,103,99,100,87,95,96,104,91,117,87,98,94,95,97,89,84,106,87,90,87,93,103,94,88,87,102,119,96,99,122,95,97,103,98,107,96,56,88,95,101,98,95,90,97,99,92,91,97,94,96,89,97,79,99,100,106,59,101,95,85,96,92,92,100,89,98,87,108,99,89,98,96,101,101,95,102,94,98,82,98,101,94,101,112,94,109,102,119,102,97,92,96,100,91,108,98,95,97,106,92,100,95,106,99,87,80,93,101,91,95,101,100,95,96,85,100,108,100,101,93,99,93,100,93,100,90,93,105,94,95,98,95,90,88,93,92,96,90,101,95,92,99,102,108,94,108,104,91,88,83,94,97,104,99,101,89,96,91,109,92,105,98,89,91,93,104,111,94,96,86,100,110,108,120,95,102,96,94,92,106,84,89,99,89,103,88,91,97,105,109,104,106,59,101,103,84,107,106,84,95,109,96,76,102,108,93,101,91,100,99,97,103,97,96,78,87,89,112,105,100,88,100,105,97,95,104,99,108,96,99,92,94,103,71,106,103,92,102,97,88,90,99,96,91,95,84,104,110,96,113,93,115,103,90,94,107,102,98,111,102,99,94,82,101,105,97,96,97,83,97,97,100,103,95,101,95,95,92,92,96,88,86,87,106,92,98,95,94,91,90,100,109,98,107,97,93,87,98,99,100,97,100,97,96,101,94,64,99,107,97,91,95,107,102,82,105,96,95,91,91,92,95,108,96,106,94,97,97,101,87,104,106,95,107,100,91,115,98,98,99,100,90,98,86,104,93,103,102,91,106,98,101,109,89,106,99,109,99,91,97,100,113,86,101,101,104,101,99,87,98,101,109,99,96,99,102,102,98,66,93,97,94,89,91,94,99,108,105,100,105,97,99,98,109,104,100,87,102,88,89,93,94,98,99,103,96,110,95,107,109,106,116,89,82,101,90,113,102,93,106,106,97,113,100,106,103,98,100,100,88,96,109,90,100,106,87,106,100,105,97,108,98,99,105,77,91,95,82,102,99,91,99,87,103,93,102,101,102,88,104,96,100,88,97,122,91,117,103,100,83,87,98,103,100,97,85,104,95,95,106,95,97,105,103,78,93,96,101,97,100,99,91,92,86,98,107,105,76,109,102,95,106,99,105,91,101,110,99,97,105,106,103,88,103,100,90,105,111,109,85,98,125,90,94,103,87,99,112,100,107,71,98,101,120,103,99,88,105,94,106,107,97,88,92,99,103,114,97,105,92,83,97,95,106,98,90,92,97,95,106,99,101,99,108,99,104,114,89,91,97,99,106,103,103,104,101,120,90,117,95,99,94,97,103,97,106,92,104,98,95,97,104,108,94,91,103,104,110,94,98,95,103,92,89,102,106,103,96,85,93,93,99,104,100,87,104,107,109,98,86,110,95,103,98,111,97,101,89,106,96,102,95,107,80,100,91,100,109,102,110,96,100,92,104,105,109,92,92,97,119,91,78,101,91,87,87,92,88,96,104,85,94,93,79,102,101,97,101,100,101,100,100,88,99,104,94,105,96,103,98,103,92,97,98,96,92,100,95,92,106,97,108,91,97,77,98,93,107,108,95,81,94,93,101,100,97,98,101,111,96,106,95,91,92,92,101,101,91,103,105,97,94,104,120,100,96,106,94,94,104,89,115,97,125,93,91,104,97,91,112,104,90,96,90,105,98,94,92,105,99,90,120,98,113,100,92,103,95,95,102,111, +728.68341,106,100,99,86,91,111,81,105,96,103,101,100,97,98,99,99,92,104,106,94,109,105,107,104,113,104,97,107,99,115,106,101,86,106,115,102,100,89,100,103,72,95,104,90,97,98,94,106,98,102,98,99,105,107,110,96,98,99,112,81,98,88,95,91,102,105,100,102,93,107,93,99,120,102,95,67,94,91,90,94,74,101,101,94,101,92,97,99,91,100,95,107,89,97,122,93,101,103,106,97,95,102,104,110,99,92,102,103,116,94,99,97,102,103,111,103,108,103,109,109,103,99,114,89,86,103,100,93,110,101,92,87,100,103,101,102,98,104,87,93,98,105,100,99,102,90,110,109,95,106,92,97,94,94,88,100,103,105,92,82,106,93,105,90,98,102,74,90,101,92,112,105,98,93,100,96,93,101,116,92,88,91,100,96,101,105,97,91,105,113,101,105,88,100,102,91,88,98,95,108,92,92,99,90,90,92,78,103,111,99,87,101,93,95,81,97,96,97,101,89,106,95,83,93,96,108,102,102,101,91,101,102,106,109,100,99,93,105,96,103,92,87,113,106,108,86,117,104,89,97,104,100,108,98,100,100,88,96,95,104,96,95,98,95,95,96,98,106,79,92,110,79,99,100,100,97,91,101,94,95,104,107,107,91,88,88,89,103,108,91,109,93,91,92,100,93,101,109,103,100,111,91,94,100,100,90,111,99,92,100,92,112,105,106,95,106,98,100,105,95,109,94,107,109,108,100,96,94,104,98,102,101,82,96,93,91,99,100,90,101,88,96,95,82,99,96,102,101,95,102,89,89,101,98,88,87,122,117,99,104,90,100,88,101,94,101,109,93,106,109,93,97,95,98,95,97,102,86,99,87,95,104,91,102,100,97,96,87,103,91,96,90,98,103,91,86,93,91,87,107,101,91,102,101,95,93,104,101,109,93,88,95,109,109,96,89,105,97,107,84,100,92,101,92,97,97,102,104,100,101,97,99,102,109,84,90,91,98,97,121,90,99,90,100,96,94,101,98,101,100,99,111,91,100,108,80,90,113,105,99,93,94,95,95,97,104,94,99,108,88,104,100,107,94,94,91,98,102,102,105,99,100,103,96,104,97,98,93,105,103,97,118,96,95,103,107,85,98,95,94,89,97,104,103,97,103,96,96,115,103,115,96,82,94,97,98,105,95,102,88,103,104,94,109,105,92,102,123,96,91,83,100,93,103,88,93,106,103,96,94,101,96,97,103,87,101,107,98,108,103,109,98,101,94,99,102,95,105,108,84,100,100,99,92,96,93,99,95,99,102,89,92,101,98,98,100,97,101,103,101,100,88,102,88,103,89,108,103,110,98,87,95,73,99,103,94,104,95,101,105,96,97,92,93,104,97,92,93,104,108,96,114,103,108,75,99,103,107,79,96,123,98,82,102,87,98,93,97,109,95,101,91,96,110,91,110,103,86,106,101,105,101,96,101,93,96,102,106,104,94,94,104,99,101,98,107,94,102,105,136,100,100,113,102,86,85,101,92,99,96,111,108,99,106,99,98,91,99,96,101,100,113,105,95,103,91,83,106,113,99,104,102,86,101,115,99,98,106,106,101,91,93,100,96,111,92,109,104,91,99,94,105,71,97,106,98,105,98,95,87,95,88,94,109,89,92,102,90,92,108,94,106,78,101,96,88,97,98,100,103,104,98,91,107,92,107,76,104,100,107,102,76,99,97,106,95,104,97,99,91,94,88,96,110,83,106,91,110,113,105,104,78,110,94,90,103,87,91,97,105,96,90,96,97,100,94,104,104,100,94,112,87,109,98,105,101,104,90,99,102,91,113,88,94,93,97,102,104,99,88,91,95,104,95,99,85,109,87,106,103,98,101,103,94,100,93,96,99,111,105,97,101,99,98,103,104,95,93,92,109,97,121,111,100,91,94,94,101,97,94,92,100,97,96,97,100,103,106,96,104,95,104,96,116,87,99,90,92,97,92,81,107,95,102,94,99,98,94,98,99,94,101,92,97,89,97,106,98,96,81,101,106,91,100,99,94,95,104,107,91,103,84,100,96,82,102,86,101,88,92,96,88,109,94,99,98,93,103,101,107,95,104,99,89,111,103,105,99,113,93,105,91,89,106,90,100,95,99,107,107,91,86,110,88,94,99,88,95,96,95,102,104,106,99,94,96,103,111,96,97,96,57,97,72,103,94,106,98,92,119,101,104,101,90,89,96,78,103,91,103,112,106,101,103,102,98,106,92,87,79,97,97,101,102,90,101,112,98,94,101,98,99,96,90,97,101,84,93,94,101,109,110,106,73,97,97,115,98,86,101,97,102,102,95,90,103,101,89,92,98,98,99,102,92,108,95,116,97,91,93,97,110,91,95,84,92,91,87,94,105,84,83,102,113,89,91,95,84,105,95,89,94,89,105,89,94,99,91,112,100,88,102,91,93,98,94,96,101,87,112,87,105,66,100,98,98,95,77,107,110,111,97,96,91,92,95,105,111,104,97,95,87,97,114,109,104,109,107,89,94,109,103,99,86,100,94,107,102,98,102,106,95,91,102,93,100,91,113,92,94,96,99,113,98,111,98,93,96,107,92,103,96,97,101,99,94,89,94,109,109,107,103,95,88,99,103,98,104,108,93,100,105,104,98,104,109,99,90,105,92,110,112,107,87,98,94,99,94,99,100,108,99,108,112,104,89,106,105,99,72,104,89,103,103,97,95,112,100,100,96,103,91,104,87,110,99,93,90,102,95,96,98,94,102,96,98,87,100,97,93,110,96,99,92,72,102,103,94,107,71,95,98,92,102,111,104,92,98,109,105,95,95,96,76,84,104,98,106,108,103,102,95,96,97,102,101,97,106,91,104,103,84,108,100,116,94,81,97,101,118,105,118,100,113,101,94,94,96,98,103,93,100,95,96,96,98,95,125,106,94,97,106,84,102,97,91,97,105,90,109,96,102,89,89,97,101,91,120,112,103,95,91,106,107,106,97,109,97,88,104,103,92,87,93,113,109,100,97,95,99,101,91,94,98,92,93,92,106,91,97,93,99,91,98,103,85,108,88,102,101,98,102,101,97,89,100,100,93,108,100,109,104,96,98,105,84,103,109,78,94,102,91,93,104,115,92,104,105,98,104,95,107,87,103,92,92,93,94,98,94,98,90,90,100,109,112,94,104,97,82,92,99,102,97,87,97,99,92,115,91,98,94,99,94,91,102,97,86,82,97,107,97,94,95,96,97,96,88,88,96,99,103,95,103,98,102,87,95,91,95,96,108,91,94,93,92,97,104,95,105,97,102,94,94,93,100,104,91,96,95,92,104,94,98,95,92,104,85,95,104,89,93,91,86,100,97,106,99,102,98,97,111,91,102,98,94,86,100,94,105,101,104,98,93,95,101,95,101,96,100,96,91,96,108,110,118,100,94,102,96,114,108,101,91,95,101,87,105,99,100,104,105,97,101,92,88,104,108,103,90,94,102,109,87,105,81,105,103,93,94,92,98,100,105,105,96,90,99,103,96,109,110,99,107,96,89,97,95,95,86,84,81,92,91,64,91,97,89,94,108,88,89,91,98,105,103,97,87,95,97,87,92,94,95,102,109,94,109,109,97,99,83,110,104,90,87,100,100,102,90,88,98,98,104,87,83,99,99,94,101,101,98,99,102,99,94,78,90,97,90,99,93,93,100,109,93,87,95,100,94,95,90,86,93,111,97,98,99,93,109,99,95,105,81,100,110,96,95,98,91,98,102,105,95,92,95,104,102,102,104,98,83,101,107,103,99,83,90,93,89,92,108,100,107,102,94,97,105,88,84,109,93,98,100,101,96,92,105,109,96,93,95,97,96,83,110,107,94,95,117,90,98,107,108,93,97,109,102,91,94,109,92,86,97,96,97,93,79,92,105,96,90,101,82,100,101,98,94,105,89,119,97,100,102,96,96,99,105,94,101,98,92,90,91,99,100,103,103,91,94,96,96,95,93,100,98,99,94,88,103,98,109,98,109,96,94,100,105,92,102,108,108,94,92,100,98,99,102,91,90,105,93,103,97,100,95,91,94,101,105,88,88,92,101,97,88,106,93,87,90,110,109,98,111,111,96,102,84,99,98,120,99,99,94,107,102,97,89,87,94,79,81,90,87,88,100,95,104,92,104,87,94,83,87,100,95,109,85,100,108,106,125,112,100,96,91,94,98,104,73,96,97,108,97,99,92,96,108,105,94,102,104,98,106,101,102,101,109,101,101,89,100,95,96,97,95,92,105,107,107,82,89,91,88,100,95,98,81,79,83,103,97,107,98,101,95,102,102,96,105,91,95,95,102,104,95,99,92,83,113,101,107,100,98,98,100,93,95,97,90,110,94,109,88,128,99,110,97,99,93,85,109,97,97,94,95,99,105,103,98,81,90,102,113,102,101,85,117,101,93,96,96,102,86,94,70,96,101,111,106,87,103,109,110,93,102,100,97,99,100,101,95,102,103,93,95,101,93,98,92,99,99,103,87,95,107,88,105,109,96,94,101,100,98,101,93,96,111,102,91,82,105,101,98,100,99,103,114,104,95,91,103,92,96,98,93,100,95,92,105,100,85,115,105,93,102,91,86,99,85,100,102,93,95,97,73,84,93,95,88,98,108,98,98,102,110,74,103,99,101,95,100,98,109,99,99,95,98,103,94,100,89,101,99,98,98,112,98,81,97,91,109,94,93,96,87,87,96,89,83,89,102,101,98,102,109,112,113,105,93,105,93,97,90,79,98,101,96,106,86,101,91,102,100,105,87,102,95,88,117,96,99,105,110,84,117,95,81,99,96,98,93,90,90,104,107,109,109,100,104,98,98,92,110,94,116,90,99,89,88,102,91,89,91,92,101,95,101,79,84,105,98,109,88,111,97,94,117,112,94, +728.82483,106,108,79,83,99,98,95,97,89,79,117,103,100,96,109,96,97,83,101,101,73,97,101,92,95,97,104,88,108,99,96,87,93,97,92,98,76,94,87,108,61,95,109,104,101,104,97,97,100,94,103,105,108,97,92,96,105,94,102,87,91,89,99,103,109,116,100,106,103,97,104,96,106,103,94,104,104,92,102,100,114,100,85,93,114,99,105,111,95,97,99,103,101,109,109,95,111,99,95,113,84,106,99,84,100,95,91,97,76,115,85,111,108,94,103,100,92,99,92,108,101,99,101,101,92,106,106,92,90,92,94,97,95,103,98,92,104,90,98,104,92,105,125,101,92,104,103,105,99,97,104,105,100,94,89,96,104,101,98,94,102,101,95,103,90,89,91,78,91,97,109,98,107,98,95,87,106,100,101,88,91,91,98,101,102,103,95,129,98,97,101,91,90,99,99,91,86,93,108,82,100,99,92,104,100,79,98,107,108,88,97,102,99,87,107,94,97,93,103,113,98,100,97,94,96,91,97,115,94,104,95,107,97,100,100,116,75,94,93,104,94,86,99,106,109,109,98,96,95,107,94,95,97,102,91,95,85,99,90,92,86,99,116,99,98,91,101,90,95,107,92,98,106,96,114,94,98,106,101,91,95,97,116,96,98,93,97,104,96,94,97,111,100,105,100,96,90,93,102,99,94,95,97,93,100,103,103,102,91,94,89,110,110,102,98,102,95,105,94,98,103,95,108,99,111,102,105,76,90,94,108,87,104,99,103,94,85,105,94,105,87,97,91,96,91,103,98,98,110,124,101,95,99,104,86,102,102,93,106,98,92,98,93,83,101,103,97,92,87,98,98,102,101,94,93,98,84,98,90,104,95,99,99,125,96,77,100,101,100,94,100,85,89,98,106,109,99,110,92,94,98,91,105,104,94,94,96,103,95,94,93,101,94,100,90,83,98,87,108,86,98,95,91,97,98,104,97,93,97,104,80,96,103,89,109,96,101,110,94,105,104,102,93,110,95,87,88,89,112,95,89,96,107,98,99,100,95,99,96,92,95,95,97,99,100,105,105,82,101,100,86,119,99,98,97,94,87,82,103,100,95,101,103,101,90,96,100,96,113,93,100,100,94,103,89,100,92,107,94,97,113,105,104,86,88,111,69,105,101,98,104,101,100,90,92,106,91,103,91,93,97,95,103,102,93,102,105,104,100,104,94,95,93,96,99,92,99,83,103,109,97,108,81,99,101,104,96,106,101,99,100,97,101,103,92,73,105,100,100,85,110,94,111,102,100,97,111,97,96,96,96,93,89,89,100,110,108,105,90,71,98,91,102,89,92,96,99,105,126,85,106,99,100,92,94,96,97,81,87,100,98,101,101,88,91,100,93,84,93,95,96,95,105,108,89,93,91,90,94,88,92,108,87,104,94,99,99,79,106,97,101,89,90,94,100,96,91,94,104,102,96,110,95,100,102,83,101,91,96,95,94,99,91,93,94,102,91,113,98,106,102,97,92,91,96,93,96,92,96,92,103,95,88,99,102,92,98,106,99,91,99,107,104,93,109,86,112,95,108,102,82,108,101,105,110,92,87,109,99,96,103,102,97,103,103,111,93,98,91,97,97,96,97,105,83,106,100,105,84,98,91,95,106,96,77,98,96,96,98,111,103,98,99,86,99,97,99,94,97,91,101,100,95,74,106,98,100,104,91,92,109,102,116,106,109,90,90,91,92,110,91,104,90,104,86,93,83,117,105,97,96,88,103,98,96,93,103,110,116,109,92,96,92,96,99,104,99,98,101,101,93,108,111,112,92,92,92,92,100,92,104,91,109,96,99,102,83,93,97,94,113,96,88,99,100,102,110,98,101,103,102,100,100,102,105,89,95,112,119,96,101,113,91,91,93,89,100,94,99,100,82,87,105,106,89,60,98,90,106,97,95,101,88,94,97,99,105,116,101,108,100,101,96,84,116,93,101,102,110,103,103,100,108,101,103,94,90,95,90,109,96,101,102,128,99,98,89,96,108,112,88,98,94,101,110,93,90,98,103,94,74,105,107,101,109,91,100,80,94,100,82,91,99,107,99,79,95,96,108,94,102,95,94,105,100,100,90,99,88,99,98,86,88,104,71,91,98,100,107,105,118,102,104,88,108,101,113,101,96,112,102,99,103,101,95,99,100,98,105,87,90,94,83,92,92,104,86,97,121,86,99,102,88,104,93,102,106,98,113,97,96,97,104,96,102,99,89,92,87,108,101,101,100,98,102,94,93,112,102,79,84,91,90,107,104,105,98,105,87,97,99,98,101,97,100,111,96,87,77,81,109,94,98,100,115,95,94,86,94,101,92,104,95,93,101,79,94,104,96,104,101,93,98,107,104,94,89,79,94,97,96,108,100,94,90,94,95,101,95,99,83,105,106,95,108,86,100,104,109,86,90,118,95,102,103,89,99,111,99,91,101,105,101,104,100,97,88,97,103,90,101,100,104,96,101,94,95,102,96,102,97,95,102,103,100,107,108,105,106,111,102,98,96,98,111,97,117,96,103,104,109,96,93,103,104,101,93,101,101,100,96,102,105,90,95,95,78,106,100,103,102,98,94,129,98,91,91,95,103,100,106,79,102,89,84,103,94,98,110,107,104,90,95,86,88,107,115,94,105,99,101,95,102,93,101,83,95,96,116,113,95,109,98,110,93,91,120,99,84,89,85,97,92,99,94,101,97,105,96,116,110,106,100,92,98,106,110,105,101,97,79,114,95,98,94,88,91,111,98,95,106,103,101,91,95,106,95,91,91,94,106,107,95,103,94,93,101,95,96,92,101,100,99,110,92,92,109,100,133,100,91,93,101,83,98,97,81,99,97,110,106,96,128,77,118,84,109,103,87,101,103,99,99,110,100,96,96,97,98,94,110,100,100,99,95,109,98,85,100,92,99,109,81,100,93,103,86,95,111,100,97,104,96,92,91,127,114,105,97,86,91,97,92,99,105,96,110,116,101,111,94,109,101,87,105,93,90,107,103,109,95,103,105,118,100,105,94,75,109,91,97,98,95,95,119,101,94,98,99,99,95,108,101,106,101,105,95,95,99,86,112,91,100,114,113,98,109,99,109,97,105,95,99,102,98,93,101,98,100,88,94,96,107,108,92,88,95,99,101,108,73,92,90,97,93,94,109,94,97,94,104,85,104,95,96,88,108,85,100,105,98,93,105,96,105,93,96,92,99,110,114,108,95,95,98,104,111,108,95,91,103,106,121,98,112,98,101,117,103,93,93,101,108,98,113,91,106,124,98,104,105,90,105,103,94,98,103,97,92,104,104,104,95,101,108,103,91,95,99,95,100,108,92,110,95,92,90,91,103,105,92,98,95,95,90,99,94,97,96,96,83,81,91,102,109,127,98,95,105,99,80,99,91,100,102,98,84,91,103,99,96,99,97,99,104,97,105,97,96,96,98,96,98,104,91,94,99,106,100,103,102,99,96,102,90,98,96,100,106,88,92,99,89,103,100,96,94,104,101,88,112,101,79,87,91,106,93,92,98,98,101,101,105,98,105,107,98,103,98,108,102,82,101,101,74,106,107,110,100,90,86,96,109,105,101,106,100,101,95,102,90,105,101,110,125,91,106,100,87,96,96,94,102,100,103,98,102,109,100,108,91,110,95,100,100,105,96,104,91,109,96,109,78,83,93,106,113,95,94,98,95,90,99,104,109,93,99,105,87,94,93,98,102,96,105,103,93,90,98,105,108,103,91,99,98,97,91,102,84,97,106,91,97,108,100,104,96,89,100,101,97,103,102,101,101,119,96,109,101,96,104,91,89,102,104,89,98,109,94,94,78,105,98,95,95,94,96,107,110,88,91,87,95,99,95,94,87,113,93,99,90,93,91,78,92,111,93,102,86,95,97,93,102,105,89,101,109,96,89,101,101,103,99,91,92,106,104,89,109,97,95,103,93,96,92,111,94,100,102,107,106,94,111,94,101,103,101,94,93,99,104,109,92,100,103,97,102,93,102,102,110,102,63,105,108,102,94,87,104,97,104,77,81,83,94,103,92,97,103,99,98,103,98,100,89,102,109,105,101,87,111,99,109,98,92,109,110,109,93,89,92,96,102,106,84,101,100,100,98,102,100,90,95,104,95,112,104,104,92,86,105,92,106,121,99,98,96,96,91,93,85,92,109,95,97,107,100,95,95,93,103,109,96,101,99,91,89,104,98,104,105,105,100,97,98,99,117,109,113,97,97,101,102,102,96,127,103,107,94,104,93,98,103,99,102,109,93,89,105,93,105,96,91,95,100,95,109,97,95,98,100,99,99,103,88,111,100,99,106,104,96,107,102,109,92,98,95,93,96,102,100,103,83,103,105,101,105,88,93,83,103,99,105,101,95,100,99,97,94,97,108,96,95,102,90,99,100,101,98,93,108,79,98,94,101,100,88,92,93,96,118,92,95,100,101,104,97,133,106,103,94,99,96,97,105,104,97,104,78,130,94,103,100,88,102,107,100,101,97,89,94,98,104,101,98,109,121,103,96,103,100,103,101,102,110,107,100,103,109,108,94,117,115,85,82,100,107,97,85,97,95,98,91,111,100,99,96,87,96,102,105,81,89,102,102,91,101,98,99,102,106,90,96,113,91,92,101,108,112,99,94,101,100,95,101,100,100,98,95,106,94,95,94,111,110,105,99,102,92,100,114,113,102,95,106,106,96,91,109,96,106,102,94,91,108,109,116,65,105,96,99,109,84,102,99,88,94,83,105,108,105,119,102,90,100,96,106,111,93,105,100,95,102,93,95,105,88,106,97,90,101,94,92,100,98,94,100,106,111,101,96,102,96,104,95,113,98,114,106,102,105,98,78,100,99,87,109,104,84,96,102,90,105,108,105,77,109,80,93,129, +728.96619,118,99,84,94,92,100,100,105,90,109,102,99,92,97,106,101,100,107,96,95,102,96,104,99,103,97,99,114,77,99,83,114,99,103,101,103,102,87,92,100,124,99,96,101,94,101,97,99,96,98,101,102,104,100,100,98,106,101,104,97,103,105,83,99,92,113,100,105,106,104,104,92,112,80,94,110,95,103,102,108,106,107,97,94,95,91,89,105,99,88,101,92,99,103,95,92,97,106,98,90,107,88,117,103,86,107,106,110,106,82,109,96,117,106,99,93,95,91,69,95,96,99,107,104,89,113,104,104,97,111,105,103,114,95,102,105,94,102,110,109,96,94,90,121,100,94,105,96,94,104,96,99,97,86,101,97,94,102,96,107,94,90,106,103,100,113,101,93,128,98,94,98,104,105,104,106,103,108,110,99,122,103,95,106,102,98,98,93,105,73,96,101,105,102,104,106,92,102,101,87,105,83,106,103,104,118,100,94,99,105,91,102,85,97,99,111,99,97,90,109,102,111,94,112,101,100,100,96,101,92,104,91,97,87,92,108,88,107,99,88,98,86,99,105,95,96,93,93,109,85,97,110,100,95,101,96,102,92,98,96,94,108,102,106,97,105,94,94,96,114,101,89,101,98,100,94,87,106,98,92,97,107,92,96,88,102,97,104,90,103,97,73,94,101,126,102,110,108,92,114,97,91,96,99,95,102,104,101,101,103,94,107,108,98,100,100,101,99,110,100,119,96,109,106,107,96,86,107,98,103,98,110,113,109,95,102,99,108,103,94,80,102,101,95,94,102,101,96,107,103,88,109,106,98,94,96,100,102,104,95,93,96,94,101,107,104,100,96,85,95,103,91,104,75,106,97,105,96,97,97,95,105,93,100,98,93,96,101,97,106,106,96,87,105,105,93,98,87,100,106,97,105,100,107,100,100,97,81,94,99,127,97,109,108,100,91,103,94,96,94,93,102,91,95,94,95,98,95,96,102,94,102,105,94,67,97,86,103,61,81,105,89,89,96,100,114,91,75,93,107,95,76,103,116,100,111,102,116,103,91,104,100,104,111,93,108,104,85,105,95,91,112,95,80,101,103,102,98,101,105,106,101,109,104,91,96,97,105,92,97,113,98,102,101,91,114,92,91,103,96,96,93,98,106,100,106,100,98,113,101,113,96,105,98,89,101,98,102,101,107,89,101,96,101,101,69,96,99,100,80,98,105,101,100,97,100,92,104,102,102,108,94,97,114,99,102,91,88,109,105,101,91,86,91,105,88,102,101,89,90,91,105,115,75,105,101,90,94,92,92,99,110,101,82,96,100,100,109,99,91,113,98,125,99,94,101,111,91,97,93,91,107,105,95,100,100,91,84,108,108,89,99,95,96,112,92,107,96,98,106,89,96,104,96,99,99,99,81,104,117,94,92,107,102,101,101,110,101,108,100,79,105,94,105,95,96,106,104,112,99,103,88,99,96,95,87,92,97,102,94,96,113,107,110,101,91,110,109,100,100,111,101,102,99,88,94,98,101,106,94,115,102,93,106,95,95,99,100,85,107,104,107,95,89,98,100,97,105,105,107,95,97,105,102,92,96,102,105,95,97,106,104,102,98,97,106,101,109,103,86,105,93,104,98,93,102,107,90,105,94,112,105,105,107,100,81,91,102,98,104,104,105,97,97,68,102,91,94,99,104,100,95,102,96,99,94,99,99,74,106,104,102,90,97,106,91,91,101,107,84,105,92,111,101,98,96,94,96,94,93,104,89,97,92,110,94,103,106,97,108,106,101,98,96,99,101,113,109,96,88,107,102,95,110,93,99,96,113,101,103,99,96,106,82,106,99,111,103,101,98,105,97,99,83,102,103,93,107,104,106,95,105,103,104,97,103,96,120,100,96,100,105,98,109,92,112,110,100,100,102,82,102,118,104,97,93,90,93,106,107,93,104,95,92,101,88,103,107,99,99,102,92,95,91,99,98,104,106,100,96,95,114,97,124,106,105,106,73,108,81,100,92,102,102,108,111,91,90,92,95,96,101,92,84,114,93,91,95,93,96,100,104,71,102,100,101,78,109,106,94,101,102,97,104,106,105,96,107,85,95,102,105,96,103,96,97,96,101,105,98,95,72,102,85,93,97,104,92,88,102,105,97,104,90,105,94,96,107,99,103,101,101,102,106,94,93,120,96,97,109,102,95,109,95,98,99,92,91,101,97,99,104,102,97,97,109,95,97,94,86,87,96,111,98,91,113,97,106,93,71,102,99,111,93,108,100,91,107,92,106,105,104,82,96,99,100,109,91,88,90,102,86,111,116,104,109,119,109,109,100,101,97,94,91,85,108,109,108,100,88,100,89,93,95,102,87,106,98,91,93,96,122,100,76,98,107,93,107,100,102,94,103,94,95,103,99,115,96,99,101,90,115,104,93,96,92,91,101,88,85,95,117,98,100,92,105,97,93,98,84,112,105,87,105,93,93,106,104,105,96,91,90,117,87,102,103,115,104,110,99,105,88,104,105,93,116,105,104,96,107,99,96,97,106,90,97,108,98,95,97,103,120,99,87,113,94,100,100,112,99,110,102,100,94,102,94,106,101,106,105,90,87,99,92,92,98,109,92,95,91,104,103,119,108,88,97,97,94,99,101,93,87,107,82,103,99,91,94,89,111,100,103,105,95,83,89,98,101,108,93,99,96,99,100,98,97,106,113,91,97,95,112,110,84,96,112,101,98,74,94,102,110,102,91,87,88,108,105,91,91,106,100,94,94,75,135,112,97,98,89,101,103,87,98,113,101,105,106,101,104,106,102,94,109,98,99,87,98,101,80,104,108,105,90,99,110,100,103,114,104,102,90,91,121,89,93,92,100,94,97,96,107,99,86,109,101,103,101,87,99,103,109,102,113,96,93,98,110,91,105,96,100,104,105,93,95,101,93,100,107,94,103,88,99,87,101,102,104,100,90,95,102,91,97,94,98,106,108,103,85,116,95,97,90,108,72,92,108,96,102,102,92,104,103,100,85,108,104,98,91,91,102,100,103,98,92,101,104,87,100,102,94,99,86,95,89,99,119,98,100,92,104,100,98,106,109,102,98,99,94,102,99,98,88,108,97,98,96,88,104,103,111,104,111,95,94,100,101,97,88,95,93,103,101,95,102,99,88,75,101,104,101,94,92,95,94,104,121,123,107,107,106,95,102,97,101,91,97,101,95,98,92,100,89,100,77,99,107,91,113,97,99,92,86,95,101,103,99,103,78,99,109,105,121,100,92,97,111,96,95,104,94,96,98,98,85,72,102,111,105,99,90,104,112,96,101,106,96,87,95,89,103,106,93,106,93,103,92,98,95,89,103,101,88,99,105,103,96,107,101,106,99,109,115,101,103,106,109,110,99,91,96,94,88,88,104,100,101,106,106,92,111,103,109,90,100,98,102,109,105,99,104,93,97,98,84,94,75,91,106,103,98,95,103,89,85,95,93,98,107,104,103,90,106,95,94,119,99,89,120,98,102,87,99,103,93,96,95,98,106,102,99,90,104,102,98,104,102,96,109,93,104,110,92,101,101,96,78,104,103,104,96,97,93,87,108,99,86,105,92,113,101,86,104,100,115,98,98,104,106,92,98,108,114,88,82,104,101,101,100,95,103,96,102,106,102,97,93,102,118,101,108,94,84,95,95,99,89,109,97,95,97,79,116,87,105,101,96,96,95,96,87,92,91,95,95,92,93,103,99,92,101,90,92,68,94,92,91,90,95,100,84,103,106,98,105,108,101,108,97,99,88,98,104,102,87,105,98,107,98,87,95,78,91,93,94,97,108,92,110,95,87,110,104,95,117,96,91,96,108,95,98,105,92,99,89,87,106,97,91,99,90,105,99,105,106,106,106,106,105,95,110,102,93,104,98,96,88,94,100,99,95,104,100,87,91,94,106,90,111,101,88,96,95,109,101,103,105,103,96,92,79,86,115,104,112,94,102,99,101,99,91,94,92,110,88,93,105,93,105,91,104,93,98,103,97,92,110,100,103,88,109,96,106,116,103,110,94,91,98,103,97,92,108,97,99,104,113,105,107,106,110,98,96,84,88,100,85,89,94,101,98,108,99,111,100,101,116,94,99,91,107,109,97,118,81,106,93,101,102,93,75,92,93,100,92,101,83,118,104,108,94,86,104,100,96,106,94,100,90,91,100,109,111,97,105,83,99,97,85,94,91,97,97,105,98,94,105,101,110,93,68,95,87,88,103,108,114,89,104,91,86,106,102,106,84,90,98,110,102,105,100,110,96,106,99,100,97,101,95,98,113,109,105,116,113,100,87,99,114,100,103,100,93,100,98,94,109,103,113,99,96,97,91,104,101,101,96,105,103,107,83,99,103,95,104,95,89,73,116,97,109,100,96,104,101,107,102,99,99,80,93,111,83,102,98,87,102,95,95,117,103,95,98,99,102,100,93,100,103,107,101,92,95,98,93,92,75,105,93,93,97,108,100,108,100,94,109,106,104,84,85,99,96,92,103,106,99,104,98,101,93,100,102,99,92,104,105,103,89,98,96,104,117,99,121,97,92,92,100,101,101,116,103,108,110,104,93,101,95,104,99,103,98,82,111,102,101,91,102,98,95,111,95,107,105,106,100,109,105,108,96,90,106,101,100,101,89,110,92,98,101,93,103,104,93,109,95,100,98,81,87,90,95,100,109,98,105,103,100,116,101,100,100,94,98,108,88,94,98,97,92,98,104,94,104,95,88,100,97,103,95,106,104,96,101,98,100,93,106,85,97,85,111,107,97,109,100,88,97,104,98,90,117,94,104,79,101,85,107,112,101,93,94,105,102,106,110,104,98,102,98,91,110,113,99,88,117,97,96,103,100,101,97,82,90,93,120,99,84,102,104,104,97,96,100,113,103,101,74, +729.1076,96,97,113,88,92,106,96,88,101,97,83,104,107,86,84,90,92,88,101,112,101,92,104,98,93,111,102,105,105,100,90,65,119,100,98,97,90,70,107,75,96,96,100,102,92,102,100,99,97,94,104,96,106,109,95,95,125,95,94,81,100,96,83,108,96,102,89,89,80,100,97,94,98,99,90,99,94,90,106,91,110,98,104,84,97,96,95,96,96,76,104,99,100,73,96,92,97,100,96,101,110,106,96,94,102,96,88,100,101,104,93,100,102,97,101,98,90,109,94,102,95,101,113,105,94,101,102,95,105,106,91,104,103,103,110,90,89,94,98,102,93,111,93,88,91,91,100,104,100,108,103,99,106,86,87,106,113,100,95,93,98,105,92,96,94,87,105,91,100,109,100,106,99,109,100,103,101,91,104,98,99,92,107,97,94,84,91,92,95,95,93,104,101,102,84,96,82,105,94,101,98,104,99,110,85,97,98,100,95,102,92,90,100,101,104,101,92,104,97,99,98,98,108,95,102,116,101,101,99,103,91,96,96,106,110,103,99,119,109,95,90,98,109,97,87,104,91,102,92,96,105,91,100,107,97,99,97,96,94,91,95,109,89,95,97,109,85,102,99,92,102,109,105,105,102,94,103,94,109,100,96,100,97,105,93,97,100,99,113,109,101,100,97,99,94,101,110,93,110,100,99,104,89,95,90,100,92,94,108,99,96,113,106,102,79,94,88,100,94,106,101,95,90,91,89,94,92,102,102,93,97,87,90,84,73,90,91,92,85,103,91,93,101,98,108,92,101,106,97,90,101,101,92,87,102,102,102,100,102,105,94,94,97,109,96,99,101,99,91,83,115,101,95,97,92,101,98,98,107,102,105,93,97,97,107,95,101,96,106,94,109,93,72,99,105,96,96,87,85,109,99,85,101,94,98,102,102,85,116,103,97,96,105,103,91,92,101,87,115,87,95,95,84,93,90,90,96,84,96,109,93,89,93,101,92,102,89,107,83,92,106,97,92,98,92,95,102,85,98,117,60,105,100,86,97,102,100,95,98,97,104,112,112,85,102,97,96,90,96,94,103,96,105,106,92,93,92,102,93,106,91,91,125,101,103,103,102,98,93,104,98,107,98,105,96,103,93,101,99,105,105,103,91,90,101,108,88,105,88,97,86,96,94,94,90,102,100,95,96,96,112,105,103,101,96,97,109,98,95,101,89,101,92,95,109,103,103,87,104,100,96,103,91,100,108,91,106,106,95,96,106,96,105,96,106,100,96,106,99,100,103,101,100,107,102,100,101,92,102,110,94,101,100,96,81,106,91,95,91,93,97,96,103,87,94,91,113,83,99,92,97,101,94,90,95,103,108,103,108,99,103,108,92,95,92,97,100,111,92,104,90,100,113,111,104,96,101,93,94,91,97,95,97,99,101,96,107,108,102,95,103,96,87,101,94,95,100,86,99,97,102,94,93,109,95,93,88,97,93,92,102,92,105,104,105,101,92,88,90,94,109,105,99,97,89,88,89,101,105,105,108,100,103,79,93,98,95,98,104,101,100,92,114,100,93,94,106,92,90,89,99,102,107,104,126,97,112,100,80,86,107,98,92,96,101,92,116,101,97,100,99,102,93,100,87,110,94,101,98,85,100,93,93,94,100,97,102,95,94,99,95,103,93,95,95,100,96,102,107,105,97,98,103,99,89,94,98,98,79,95,113,106,87,102,108,113,95,93,102,95,101,99,101,98,77,101,92,88,100,103,101,98,100,90,87,101,100,102,106,80,99,94,113,89,92,106,93,109,93,113,91,99,104,99,94,102,86,90,98,98,82,108,104,78,92,97,113,104,92,98,104,102,94,92,95,109,107,75,105,92,87,102,98,102,96,108,123,91,103,101,93,92,97,104,96,104,105,106,99,89,70,91,105,98,96,93,90,91,86,96,96,108,89,99,100,92,104,102,95,106,99,97,94,98,91,89,93,98,90,100,109,97,98,81,107,101,102,89,102,81,91,96,98,106,100,90,91,94,95,77,79,101,90,97,98,100,91,95,69,102,103,92,95,108,112,92,79,94,90,99,110,104,100,96,99,89,91,110,106,97,102,101,106,93,115,102,90,88,70,96,95,110,99,95,89,89,94,97,97,88,101,91,95,123,98,81,101,104,98,105,95,100,92,105,108,93,103,83,95,85,102,105,121,83,99,102,86,88,95,91,89,111,97,94,93,105,87,85,84,89,94,109,98,65,94,80,96,99,101,91,105,93,102,99,98,102,91,90,87,103,98,92,98,92,98,104,83,91,83,97,96,94,103,125,91,93,94,97,100,93,100,97,94,90,105,60,99,110,118,101,97,102,95,92,104,85,102,89,105,90,101,105,98,100,97,101,107,105,94,89,99,95,97,97,95,97,104,105,97,109,91,92,114,100,99,91,94,102,92,97,87,105,80,94,103,99,93,89,87,108,93,105,101,79,117,97,108,96,101,94,108,87,95,97,97,97,80,87,98,94,108,95,94,88,94,97,95,105,102,119,98,97,105,91,109,97,93,101,96,99,102,90,91,97,87,97,91,100,104,95,102,102,93,87,96,95,93,95,99,96,109,81,105,94,109,91,91,100,116,94,109,92,106,87,101,96,93,102,91,108,98,98,100,92,89,102,106,104,103,108,101,96,106,84,104,98,91,102,111,105,99,90,79,107,91,104,100,88,102,94,94,104,94,99,98,100,73,90,102,111,95,102,101,93,98,92,98,94,88,108,94,103,81,102,94,98,118,105,101,92,98,97,89,92,100,99,107,99,96,97,95,104,104,108,89,95,100,73,102,106,92,109,99,95,102,101,88,103,94,97,104,92,101,98,99,96,91,107,100,95,98,95,101,95,96,98,105,108,103,97,111,100,99,102,83,90,101,107,95,105,91,121,103,101,99,113,102,99,99,102,93,104,87,87,100,101,109,100,105,109,111,98,94,94,108,105,94,96,87,104,106,100,105,104,100,98,98,96,100,96,90,101,111,107,104,92,102,94,89,89,100,89,105,103,102,93,97,101,89,96,95,87,101,84,105,93,105,90,112,96,103,95,81,92,93,97,100,101,100,105,65,100,91,73,97,103,83,99,97,100,93,100,95,97,103,96,107,95,90,108,97,98,97,98,102,105,96,93,85,95,82,104,90,91,123,105,93,94,100,102,99,99,95,107,117,121,109,90,95,93,98,103,89,105,101,89,94,97,93,103,95,111,96,97,91,95,116,94,107,80,97,105,101,101,96,106,101,110,96,99,92,100,84,94,90,93,105,107,101,102,104,82,92,94,105,93,74,107,90,103,113,94,104,104,103,100,95,95,120,91,90,95,94,73,96,100,100,100,112,89,92,105,100,100,96,100,98,112,98,106,91,86,111,99,92,101,93,91,104,108,93,92,87,106,86,93,101,91,93,108,97,108,96,89,91,95,97,100,86,97,98,98,94,102,91,97,101,94,87,104,98,100,101,90,98,94,120,98,106,98,98,95,88,103,83,102,98,98,96,101,103,100,101,91,95,102,104,90,94,93,92,99,103,82,109,94,90,92,94,113,106,107,100,99,100,106,104,118,94,101,93,85,97,92,92,92,95,107,91,87,101,92,100,96,102,88,98,98,104,83,97,94,98,109,97,98,110,90,82,98,96,98,100,114,98,112,91,103,96,100,98,101,101,99,89,92,104,92,101,95,99,97,112,105,88,103,104,108,104,87,94,71,98,91,104,101,106,101,101,96,87,97,103,84,91,93,103,91,105,100,95,92,100,92,95,92,97,91,95,97,88,101,82,100,124,95,106,92,100,98,109,95,91,98,99,90,102,89,97,106,93,109,99,97,103,95,94,89,91,101,96,98,100,101,88,93,94,90,99,115,94,95,92,108,102,104,99,99,94,100,95,92,87,112,96,99,84,99,95,100,97,88,119,99,97,99,88,90,113,92,104,109,106,98,113,109,94,95,109,100,101,125,90,113,97,96,73,98,108,107,94,93,106,94,111,91,91,88,113,102,112,101,100,89,88,94,102,92,86,93,98,94,99,91,98,103,109,103,96,85,98,96,90,97,87,102,101,93,96,91,97,96,92,101,113,100,88,104,95,95,98,99,97,103,101,89,109,94,82,94,93,83,88,99,92,100,99,98,98,93,107,94,95,102,96,87,105,91,99,88,102,105,101,85,100,97,109,104,106,95,99,109,95,93,86,89,94,94,87,99,93,96,98,111,105,101,108,96,108,92,96,93,83,106,101,106,97,105,83,95,110,105,101,99,95,96,100,95,93,96,109,99,104,115,102,108,97,92,88,106,101,89,100,100,101,97,99,96,103,83,91,85,91,88,105,101,101,94,98,93,90,97,99,97,104,84,97,98,100,94,92,82,96,97,91,102,96,95,106,97,98,97,97,95,98,95,93,100,94,93,106,102,116,93,90,97,96,90,96,98,104,90,108,106,96,102,95,102,103,97,104,88,91,96,111,91,97,106,88,86,56,94,98,93,107,111,94,104,100,99,93,108,94,100,101,109,94,99,98,97,91,97,101,101,92,100,94,107,104,95,97,124,109,106,101,98,73,115,106,103,89,94,92,112,103,108,102,81,105,106,100,102,90,95,101,106,100,94,96,94,102,98,98,98,99,104,107,107,99,104,104,95,91,130,89,94,99,106,99,69,110,95,98,109,94,89,92,99,94,95,100,90,92,88,94,102,91,96,93,97,99,91,105,95,88,104,100,108,97,102,104,102,105,91,93,101,101,98,101,95,97,132,87,102,99,113,99,97,99,89,113,85,105,77,96,101,102,91,115,104,115,97,102,98,106,94,124,95,105,103,102,98,97,95,73,92,83,77,101,106,90,98,86,94,104,102,104,94,97,101,107,83,101,96,109,97,105,92,103,91, +729.24902,97,101,87,104,80,101,91,104,136,104,93,76,94,95,83,99,63,106,87,95,97,90,95,90,105,120,104,103,94,114,100,97,98,74,117,95,97,105,86,95,98,98,96,109,99,87,89,98,123,107,98,95,96,96,103,98,106,99,112,92,118,74,102,93,112,110,112,91,100,103,92,120,97,102,102,98,101,111,106,113,105,128,124,93,104,97,91,90,102,92,100,103,106,94,100,87,100,92,116,100,105,105,101,86,102,106,109,99,87,97,95,100,103,94,80,99,94,113,103,110,109,87,103,89,100,95,94,96,96,104,97,99,98,112,87,104,96,97,106,99,98,91,95,96,95,94,76,101,102,99,101,101,96,87,83,101,102,94,101,97,96,89,103,90,99,99,103,96,106,99,102,97,103,100,96,82,85,92,96,95,96,92,99,97,104,115,100,95,96,76,102,90,109,108,100,101,83,102,93,95,101,106,96,101,95,95,79,103,102,96,85,55,94,105,94,92,108,108,94,89,92,100,100,101,91,100,95,98,96,107,96,90,106,104,112,101,104,103,98,108,94,90,114,94,105,100,102,95,102,104,109,111,94,96,94,101,97,87,101,91,96,100,95,98,109,113,102,112,72,95,109,95,97,102,108,109,103,119,116,99,99,95,116,105,111,89,88,99,91,98,98,94,108,101,110,96,104,93,106,103,104,100,93,110,95,100,104,94,90,118,91,120,103,99,97,89,100,103,88,98,97,94,105,109,93,112,101,83,109,113,101,102,106,97,113,104,91,94,89,106,96,97,92,88,113,100,107,109,93,114,91,121,92,97,107,115,100,101,85,102,101,88,85,87,101,98,101,107,89,110,99,116,98,111,86,96,99,94,99,99,103,104,95,104,99,108,108,101,96,96,102,87,87,95,109,99,96,100,101,98,100,109,96,95,101,96,99,91,120,100,98,104,97,99,101,100,108,106,99,98,107,90,92,102,96,76,89,97,92,96,87,91,108,84,84,105,101,107,95,87,99,99,110,104,91,106,95,86,97,91,88,100,106,102,98,99,101,105,104,111,101,101,89,103,86,106,101,94,99,95,105,99,92,93,108,61,115,95,98,105,109,104,111,92,100,102,102,105,100,103,96,101,99,94,93,96,96,111,97,101,87,94,125,99,101,100,91,94,104,97,99,79,102,95,89,84,88,93,100,83,96,105,97,112,99,92,100,99,92,99,94,93,109,95,106,105,100,104,103,99,100,101,104,102,97,100,106,93,99,100,99,109,97,97,104,92,95,95,93,99,101,100,98,99,96,109,110,98,108,96,83,91,84,109,107,102,100,101,102,98,98,96,100,96,98,105,107,101,105,111,104,100,110,88,125,103,98,96,113,96,97,107,100,108,101,91,105,96,96,105,85,96,111,87,114,100,104,90,110,91,96,100,98,100,95,102,107,92,100,94,96,106,105,96,71,92,101,95,107,88,110,105,96,95,100,102,90,79,106,85,86,101,105,102,96,101,91,101,97,101,105,86,99,103,87,95,107,90,102,95,99,103,94,101,93,94,105,106,96,97,97,95,93,82,100,104,90,102,89,99,99,105,96,103,109,101,104,97,102,88,97,100,102,93,91,108,101,117,97,98,105,94,105,97,109,108,103,83,98,90,96,96,95,92,98,93,84,90,99,116,116,91,97,92,99,108,94,103,102,103,100,87,106,99,100,100,112,95,100,107,110,110,110,108,93,96,111,94,92,113,89,101,92,105,101,89,96,103,94,93,100,105,110,93,107,106,101,107,99,95,97,109,126,95,90,96,95,99,80,100,98,94,104,110,102,98,100,97,97,101,106,97,105,100,93,76,92,104,80,89,106,95,84,99,98,103,103,98,113,64,96,100,96,105,100,102,88,98,88,93,76,103,94,71,93,83,104,97,110,101,100,96,82,111,96,93,91,95,97,94,101,98,93,90,94,80,100,102,97,100,100,94,100,103,101,99,101,106,105,94,100,107,103,106,103,99,105,102,94,114,99,104,104,106,100,106,83,98,97,90,103,96,113,98,110,91,96,95,98,106,87,92,101,104,96,100,92,126,100,95,96,96,113,106,102,101,101,112,99,103,99,97,126,94,100,99,99,100,102,88,100,110,99,89,103,111,87,105,103,106,100,100,95,98,89,96,97,107,97,109,93,100,106,96,91,91,101,97,92,71,111,113,92,98,94,101,104,103,95,114,101,98,105,99,99,97,80,100,100,103,106,99,92,103,104,102,101,103,79,106,99,98,86,105,77,101,92,107,102,99,83,104,88,91,87,98,117,100,88,97,83,98,78,103,103,106,92,98,93,92,86,97,98,87,98,100,89,104,104,94,94,93,109,95,106,94,100,109,107,98,100,104,79,99,83,98,99,123,101,97,100,89,103,94,87,92,92,105,113,84,97,103,87,101,107,77,91,99,87,99,100,104,100,91,107,99,103,95,93,90,96,81,96,86,97,105,100,91,96,99,91,116,93,96,95,98,102,102,107,109,100,107,91,96,91,96,110,102,113,99,94,101,99,100,105,103,92,90,92,91,88,94,91,99,104,102,100,94,97,94,102,107,97,94,96,108,95,103,95,101,108,96,98,103,74,124,95,71,100,95,112,108,98,103,106,103,98,105,100,105,98,103,93,100,102,95,107,103,91,99,99,91,96,96,92,92,102,102,84,106,100,91,106,96,97,104,102,93,91,103,78,102,104,98,94,111,94,102,102,96,100,104,114,100,104,100,98,109,101,98,104,108,94,99,110,100,100,109,106,96,97,94,104,102,121,106,92,102,109,110,104,99,84,98,98,94,94,99,101,97,116,97,105,107,95,98,113,108,97,106,88,114,99,134,104,101,109,96,108,108,96,101,93,109,104,99,102,96,92,98,102,95,100,100,91,96,104,97,108,107,111,109,90,102,92,113,99,92,101,109,109,113,89,99,113,104,98,104,92,105,97,100,94,98,94,88,108,100,108,94,100,109,113,105,102,107,93,98,95,102,102,89,93,93,111,129,99,104,96,94,105,91,100,98,97,99,91,100,106,110,109,107,106,107,102,96,108,92,95,104,94,113,100,93,106,83,108,99,109,97,106,99,90,106,103,112,108,103,100,106,82,106,94,94,109,100,100,98,69,96,99,100,114,95,90,91,107,106,92,94,89,76,99,102,102,107,96,98,105,111,72,94,94,100,91,89,101,87,105,91,111,105,95,107,104,76,107,109,100,98,94,92,93,94,100,99,99,95,103,96,93,90,97,111,98,119,102,109,109,91,101,99,96,103,81,100,106,94,96,102,90,90,93,104,90,102,104,86,106,105,96,105,113,105,106,103,98,92,102,92,93,90,92,105,101,94,101,95,97,81,85,103,107,92,92,106,95,106,99,80,75,98,74,89,92,100,93,100,101,105,104,95,96,89,91,92,102,109,125,94,93,94,96,105,105,92,92,95,99,118,98,85,123,97,97,87,93,106,103,100,102,107,109,101,97,103,95,100,93,99,94,102,100,103,104,103,92,82,100,95,104,97,98,103,100,104,95,102,108,95,80,98,103,100,102,118,95,115,108,110,108,87,97,106,87,97,107,100,99,88,93,97,107,108,99,113,117,99,104,98,97,97,64,107,85,105,112,101,112,99,94,102,111,97,113,106,95,97,114,99,103,96,64,112,103,102,97,109,101,91,100,100,108,103,84,109,95,99,100,100,108,109,111,110,94,101,97,105,100,99,105,108,101,91,95,97,111,108,101,89,93,98,105,92,105,94,85,109,108,90,112,107,86,93,97,92,102,92,94,103,95,106,94,103,86,95,109,96,91,105,110,101,95,109,96,107,100,97,94,113,87,105,99,98,93,119,96,94,103,81,103,106,101,116,95,94,100,80,98,100,101,99,96,94,107,106,99,92,121,92,93,94,100,91,89,101,108,94,110,101,94,102,106,101,98,96,104,110,83,90,92,105,92,110,100,106,103,98,91,108,105,110,97,108,101,95,98,88,112,101,103,95,96,89,107,99,95,92,98,106,103,98,101,102,98,100,106,100,95,99,109,103,105,85,109,90,109,113,102,95,109,100,107,95,104,94,78,134,114,105,102,98,97,103,98,98,96,103,95,98,92,100,104,98,97,83,111,91,106,102,95,99,73,110,101,104,96,94,99,95,105,96,91,81,98,98,98,88,101,96,96,107,103,97,102,99,105,99,96,96,105,97,113,104,97,96,100,101,96,107,97,94,72,109,100,100,106,104,99,98,101,102,94,97,94,104,90,106,104,102,97,94,98,102,100,107,98,88,91,114,101,100,106,96,105,107,93,102,95,102,94,92,109,110,107,91,97,98,98,105,102,93,100,90,91,110,95,104,96,114,106,114,105,102,100,87,76,109,99,88,92,104,99,106,115,96,102,98,106,106,98,100,95,105,103,95,100,121,104,93,109,96,98,117,94,92,102,95,122,90,84,100,102,96,102,100,109,112,102,101,94,102,103,77,114,101,88,104,106,99,71,105,101,105,90,94,104,111,107,101,64,100,100,99,93,105,106,102,102,83,104,103,99,104,94,101,98,93,108,93,112,101,103,108,91,95,105,109,98,108,105,102,90,68,101,98,110,103,99,100,107,99,103,113,115,106,107,104,100,86,102,103,90,99,103,102,116,96,107,101,68,88,101,109,97,100,93,102,111,89,93,98,67,93,97,104,88,113,103,111,103,109,114,104,99,98,102,99,97,89,109,95,84,95,115,108,89,68,99,115,110,96,97,102,103,89,96,92,95,86,96,97,102,85,108,103,87,102,103,95,94,102,102,97,105,108,107,101,96,85,102,99,103,97,100,102,106,98,97,103,104,108,90,101,83,95,95,90,109,94,91,84,91,88,100,104,95,100,111,116,102,97,87,101,113,87,94,102,110,97, +729.39038,92,81,93,100,97,94,99,101,94,90,101,96,106,105,94,98,85,91,97,92,109,89,102,103,77,93,104,94,100,98,83,99,94,95,110,96,104,91,115,94,90,101,119,92,111,130,93,100,87,107,105,96,87,107,101,97,89,97,100,99,93,95,101,108,91,99,89,85,98,100,82,113,101,83,91,109,117,99,100,93,93,99,92,90,102,107,103,95,93,99,111,91,95,114,122,103,88,88,121,108,102,97,99,95,101,94,102,88,95,87,101,102,96,93,90,96,101,97,104,104,106,111,97,105,105,100,78,99,109,104,94,105,96,95,98,88,65,95,106,95,115,103,87,105,109,97,100,92,95,88,99,94,95,99,88,96,99,94,99,86,96,98,100,101,102,110,99,98,104,97,97,100,114,92,95,98,87,91,108,90,85,99,95,106,101,82,101,106,96,93,94,92,91,106,101,94,100,93,98,104,103,102,98,93,98,98,93,103,102,107,99,104,72,95,101,100,114,97,90,116,103,100,92,90,97,104,113,94,111,96,97,96,103,97,106,108,109,91,116,96,104,94,109,92,99,91,96,101,102,99,95,110,112,100,104,101,95,100,130,106,93,119,93,103,79,108,96,92,97,110,94,106,100,95,110,97,96,105,91,96,96,82,109,111,93,104,97,89,108,95,87,100,96,96,99,81,101,90,105,95,94,94,91,88,90,101,101,88,92,102,98,110,95,103,91,109,78,98,105,90,82,98,104,90,111,97,85,94,97,104,96,91,107,100,99,73,103,99,97,100,88,91,86,101,85,97,85,103,94,102,106,97,105,93,113,109,100,97,96,95,103,94,96,98,90,88,99,101,110,101,92,93,92,103,92,98,103,104,98,93,106,92,101,92,101,97,102,91,97,94,79,82,88,101,100,99,101,94,94,100,99,102,100,76,103,84,93,94,93,94,96,85,93,97,90,90,105,95,99,96,96,92,91,99,85,100,94,75,91,102,90,94,95,100,101,90,85,97,96,109,104,98,99,99,99,98,106,90,90,104,97,85,98,90,96,88,89,105,103,106,99,94,101,103,104,105,102,92,101,100,96,93,96,106,90,97,91,96,105,102,100,106,103,96,92,101,105,101,91,104,101,106,105,89,114,104,89,65,101,90,98,92,91,105,94,100,88,94,121,77,95,91,95,101,101,94,102,93,99,94,97,93,105,108,99,93,95,100,119,96,104,108,86,97,101,101,97,102,93,100,107,91,88,87,94,88,96,89,70,107,98,99,97,86,79,99,110,94,98,97,99,113,92,99,104,107,110,94,95,102,93,92,105,90,87,104,99,94,96,105,116,102,70,109,100,86,108,93,87,101,97,87,89,102,114,108,94,96,125,90,94,105,93,108,97,77,99,96,104,117,102,108,105,101,78,77,106,96,102,114,98,99,93,94,96,96,111,91,99,112,88,91,98,105,99,87,97,96,100,105,105,91,99,97,91,89,97,95,96,99,89,71,82,97,94,92,103,102,106,105,98,99,102,68,97,107,95,88,91,98,111,102,90,79,95,106,100,94,102,95,98,96,100,98,106,97,94,98,90,102,66,101,101,98,108,92,96,90,93,91,96,91,100,104,89,101,102,97,104,93,107,91,105,82,91,92,104,92,85,84,102,104,105,108,94,93,76,117,89,101,97,95,94,102,88,95,98,90,95,95,99,100,83,87,128,104,108,91,97,99,97,97,102,94,103,102,97,101,93,106,90,93,97,103,89,97,85,104,102,95,90,99,98,108,96,101,106,98,99,111,111,97,95,110,90,107,110,93,95,94,100,108,104,102,112,104,90,99,83,103,80,99,105,86,99,125,107,93,93,102,96,91,98,93,106,92,110,93,98,93,90,88,90,105,102,100,100,98,97,103,95,92,102,95,104,98,106,95,107,95,102,105,96,96,102,101,96,100,109,87,94,92,101,90,91,109,105,109,96,95,87,77,89,93,90,95,97,101,99,100,96,101,107,105,97,104,103,89,105,91,110,100,110,90,94,100,85,108,102,93,106,97,103,105,101,91,96,96,101,92,96,91,95,79,95,103,87,92,90,94,96,86,105,95,98,99,89,99,99,104,103,116,113,95,91,109,117,94,102,88,102,94,88,94,92,97,113,100,106,105,106,87,104,97,89,91,113,100,94,97,97,94,103,100,100,101,101,86,97,103,85,100,99,98,96,93,94,97,93,112,90,94,107,95,84,104,71,104,107,99,105,110,101,88,102,81,102,93,96,111,79,94,94,96,97,101,93,106,100,104,126,92,101,101,100,98,96,93,92,107,100,93,103,99,101,105,121,89,102,106,104,105,81,84,93,93,89,112,100,97,106,106,102,106,101,106,93,102,106,92,87,110,100,91,101,99,102,95,86,88,84,94,100,79,102,69,119,82,101,92,100,97,104,95,87,94,97,111,105,99,79,109,90,107,96,95,99,101,101,95,93,89,91,91,89,99,101,96,99,96,97,104,91,97,94,83,99,99,101,99,109,78,95,94,91,105,99,102,101,95,73,96,88,99,110,98,110,91,92,91,106,94,95,84,106,101,92,91,102,92,97,97,98,101,98,105,94,86,92,91,84,87,83,99,89,98,100,100,96,100,99,99,102,96,97,96,100,109,91,97,118,101,108,76,109,97,103,92,97,95,97,105,99,97,99,101,100,94,95,102,108,101,106,101,96,84,108,95,98,91,97,106,94,110,99,101,100,98,109,91,97,103,87,96,86,101,95,94,88,99,97,98,104,88,94,92,83,87,88,95,99,104,112,96,105,110,94,106,97,96,96,90,98,101,104,106,94,92,98,102,77,109,100,92,113,89,106,99,104,99,89,96,95,96,91,89,99,101,99,95,84,83,101,103,103,98,100,95,98,96,100,117,85,103,102,86,98,85,99,104,109,99,89,97,110,98,90,105,80,105,94,102,96,93,94,102,93,86,117,88,104,72,89,97,106,112,102,98,87,94,96,85,98,101,112,89,97,96,94,95,96,86,87,91,99,98,102,105,92,90,94,113,92,97,108,96,99,91,92,100,94,101,112,100,83,108,93,99,91,97,102,109,92,110,96,98,90,105,105,91,97,90,108,98,98,100,81,113,96,111,104,100,94,100,93,87,84,116,97,100,109,97,90,96,101,77,99,97,101,94,94,113,96,98,94,100,99,90,91,106,94,108,100,101,109,95,91,99,102,84,92,94,96,100,95,104,92,76,92,95,94,105,89,94,87,88,103,92,98,110,95,104,92,118,108,103,87,98,88,99,95,109,118,102,97,98,69,100,98,94,72,90,99,94,93,103,105,97,100,88,95,99,95,94,107,90,110,105,108,106,80,100,101,94,104,100,95,96,106,105,94,94,99,101,105,105,95,104,103,95,96,94,100,102,87,102,103,96,97,96,93,92,95,101,96,107,98,100,108,101,87,106,101,105,101,101,92,105,107,101,92,92,105,101,91,104,101,100,94,92,102,102,87,91,93,92,91,102,98,97,99,84,102,98,84,61,94,95,92,91,106,97,91,113,98,96,95,102,114,95,99,104,102,102,107,92,95,90,99,98,91,104,97,92,98,99,94,94,90,90,102,97,97,87,106,126,102,101,95,90,91,87,99,101,96,88,115,95,103,76,97,100,95,85,87,96,88,91,95,103,90,95,88,94,94,102,87,102,99,105,112,105,91,97,82,80,113,105,110,96,78,96,106,97,121,95,92,94,91,99,74,90,92,102,88,97,91,93,66,101,88,86,93,101,96,77,96,93,97,87,92,94,101,95,87,89,86,78,115,103,93,86,96,111,105,93,101,107,121,131,112,100,104,119,97,105,87,94,101,101,99,100,105,100,93,100,108,98,98,93,96,95,97,91,100,93,97,98,102,100,110,94,85,89,96,102,107,108,99,101,97,99,97,108,98,99,111,100,108,93,94,104,89,85,108,91,101,94,107,89,103,95,103,100,102,91,84,101,111,99,106,94,98,103,97,100,97,87,91,118,102,94,105,98,99,99,90,101,100,102,97,100,88,102,112,99,98,109,98,98,97,103,90,83,102,108,95,96,94,86,98,94,101,95,94,97,100,94,100,102,112,97,89,95,94,113,88,94,98,100,102,99,97,89,87,105,92,95,96,109,87,107,101,99,76,99,104,104,103,107,87,113,84,88,92,103,97,114,98,87,102,113,98,71,74,103,95,99,99,109,91,99,103,97,86,97,101,101,106,88,97,88,102,83,83,103,105,98,111,107,96,94,106,95,98,99,93,104,109,101,87,105,98,95,102,98,101,93,88,103,116,92,95,101,94,93,103,88,98,99,106,93,106,100,112,106,93,106,113,104,100,109,94,89,103,90,97,93,105,81,113,106,131,112,97,97,91,79,111,98,98,99,96,98,97,88,94,90,104,107,97,99,101,97,90,102,92,105,102,105,102,94,99,92,98,103,83,90,99,108,95,88,98,99,98,102,108,89,100,96,87,86,99,96,106,99,88,96,101,95,104,93,91,99,102,108,107,99,99,99,92,76,97,101,121,104,94,95,91,92,90,100,93,85,96,97,95,103,102,99,101,112,115,99,102,96,114,90,80,97,89,100,92,100,97,67,97,103,98,102,110,94,101,100,97,109,101,89,98,91,102,115,95,59,96,100,112,96,104,112,105,93,96,96,91,101,98,101,97,101,96,97,98,100,102,79,86,102,93,99,93,106,109,98,105,110,98,93,91,85,89,85,85,94,99,99,81,96,101,105,102,101,108,91,109,92,100,104,97,96,95,101,108,100,88,105,105,100,113,104,118,105,89,99,108,100,88,89,105,108,112,91,96,75,106,102,83,96,79,88,106,79,85,104,102,98,81,99,103,94,99,96,102,96,100,92,92,93,96,69,98,92,108,92,98,98,96,100,91,61, +729.5318,109,112,105,97,102,116,100,90,93,93,96,99,102,113,104,88,108,111,116,99,112,83,107,105,113,116,97,112,98,106,86,96,90,99,85,107,88,101,101,102,98,99,102,85,101,92,91,110,96,80,107,108,105,102,92,103,101,100,107,94,109,93,95,97,106,101,102,100,95,96,111,99,96,97,79,93,88,96,94,93,96,93,89,88,102,99,96,107,105,94,102,116,105,98,87,99,99,106,94,111,89,100,95,111,99,102,105,96,96,108,97,95,107,105,93,107,98,105,99,102,77,97,100,100,110,111,66,82,102,101,108,101,86,106,99,101,102,95,90,109,101,109,97,98,96,83,111,109,79,100,95,101,106,92,83,109,101,106,95,93,89,88,76,109,107,80,93,93,98,100,99,97,100,94,99,98,96,102,103,100,94,94,101,104,98,105,91,96,103,102,102,103,112,103,106,105,79,99,93,99,100,90,109,92,104,99,103,92,94,102,104,112,102,111,97,97,99,114,98,104,102,109,91,87,96,93,100,94,110,76,106,93,93,98,101,89,94,105,110,103,94,98,115,110,101,106,102,96,94,102,88,100,102,111,111,95,95,99,96,103,94,99,101,99,92,73,103,106,102,96,104,96,100,99,79,119,96,104,106,95,76,100,103,93,92,101,94,88,99,109,99,98,105,96,113,102,107,72,113,104,89,105,103,94,92,99,98,98,102,106,97,95,105,105,104,103,97,120,106,94,116,98,100,101,95,90,96,80,100,96,92,95,95,95,91,90,95,95,83,102,101,99,105,94,95,98,108,104,101,106,107,96,86,92,109,100,89,104,101,103,104,93,109,69,97,98,91,96,88,97,96,98,102,108,94,111,109,114,95,104,83,99,92,95,96,102,91,100,102,81,95,95,95,88,105,100,127,101,101,110,102,84,87,88,91,97,100,103,98,85,98,94,63,91,92,81,93,109,113,102,100,87,90,105,98,87,114,92,82,91,80,92,86,103,90,101,97,96,96,97,104,100,97,94,108,86,95,87,93,108,94,91,94,99,94,92,87,103,102,104,96,105,101,97,99,101,120,86,101,96,101,109,107,88,99,91,104,103,91,108,104,107,105,99,95,101,93,96,94,99,102,100,109,95,97,91,90,99,100,96,101,110,111,97,101,97,96,98,82,91,97,97,97,105,95,105,99,123,86,96,86,92,111,105,104,99,106,80,106,83,90,89,81,88,105,92,102,99,104,96,98,107,114,107,93,91,98,100,108,90,95,96,92,88,82,93,95,100,88,115,103,106,86,89,95,96,90,94,114,99,105,104,90,100,96,102,94,85,102,79,90,91,105,98,94,68,100,103,99,93,103,98,87,99,100,104,94,91,99,109,96,89,90,95,91,97,100,83,99,96,96,93,116,104,94,98,101,98,102,100,99,98,93,97,103,90,112,110,98,98,105,103,101,102,84,85,103,99,108,86,102,103,94,97,102,99,105,97,110,108,95,99,99,101,99,96,104,109,121,99,97,103,83,96,97,105,100,98,109,96,93,104,82,104,116,94,109,94,101,87,93,92,100,94,97,78,98,102,100,108,103,99,94,95,100,88,89,101,99,94,92,102,102,112,104,94,129,103,93,97,100,97,109,92,91,95,85,88,105,106,87,91,101,101,94,99,105,91,101,94,95,97,96,117,99,98,103,99,85,108,110,100,103,100,97,101,95,100,94,109,105,101,91,93,87,99,99,95,98,92,92,84,102,104,97,116,90,88,95,92,111,95,110,100,92,101,108,95,109,97,107,104,105,96,98,106,95,105,94,117,110,94,103,94,106,102,97,99,99,103,98,108,109,102,88,109,106,106,102,93,98,96,99,104,90,87,95,105,104,102,105,103,103,100,103,110,97,113,94,100,102,91,102,108,97,99,95,91,89,92,83,102,98,96,91,96,99,96,95,102,103,86,100,102,93,106,98,105,96,98,101,105,98,101,97,101,108,97,104,106,91,97,96,105,108,87,104,95,103,103,103,99,110,114,95,94,92,102,104,97,101,102,104,115,113,92,107,96,99,99,99,98,100,102,94,94,97,102,101,103,101,99,113,101,94,91,91,90,100,99,108,101,99,91,86,97,97,97,91,105,105,110,92,100,108,104,99,92,99,93,111,86,100,95,92,94,100,95,97,101,92,105,117,99,107,92,96,96,90,109,87,100,98,90,110,92,99,101,97,118,100,94,100,100,95,100,102,90,99,97,110,99,110,91,107,103,109,100,84,86,105,98,102,97,91,99,86,92,105,91,99,97,102,101,103,106,111,98,113,95,79,95,105,101,100,104,98,105,93,109,103,111,110,93,105,102,108,95,97,95,98,107,93,104,99,98,94,105,108,102,90,93,104,100,88,101,100,93,104,97,107,80,103,93,95,98,95,91,104,95,91,88,100,103,97,96,100,102,92,88,98,110,87,83,83,100,97,112,87,97,98,91,98,104,93,89,102,100,108,103,95,95,84,94,99,133,105,87,104,109,95,112,95,94,99,114,99,98,94,103,105,101,104,94,104,92,101,106,93,103,98,102,103,100,90,101,95,106,84,117,114,97,100,90,83,126,104,104,97,97,95,94,94,93,89,93,96,98,99,80,95,99,103,112,101,96,91,98,98,96,114,97,104,86,102,103,107,92,103,93,103,99,109,110,101,94,96,95,78,106,91,107,95,106,96,106,102,108,91,96,108,94,102,99,95,97,102,94,98,101,105,102,99,102,102,98,95,97,105,95,94,102,94,103,113,99,102,96,102,93,96,105,117,92,97,98,74,98,85,91,99,112,104,113,94,97,98,99,104,92,92,99,107,104,92,91,113,107,100,87,101,96,97,89,94,104,105,98,102,107,87,92,91,93,103,80,110,90,93,106,117,96,99,95,107,85,102,92,103,113,96,97,109,97,97,93,96,94,115,90,97,112,99,97,106,105,91,95,97,101,96,113,94,102,87,93,103,86,84,95,87,92,87,101,95,102,104,95,103,99,107,96,100,96,102,107,93,106,94,105,92,85,87,91,100,92,99,94,95,94,86,97,99,100,103,113,95,97,96,113,94,98,102,96,94,75,107,100,98,92,76,107,119,94,104,91,102,93,101,98,96,88,98,113,100,97,86,106,109,90,81,94,91,84,120,98,97,98,102,101,102,96,88,97,102,108,90,82,99,109,93,98,109,102,92,95,99,92,100,103,94,101,100,104,110,92,96,104,91,98,105,87,103,101,101,91,100,103,119,91,99,94,103,113,95,109,87,109,94,100,104,96,98,96,98,103,79,87,79,94,100,98,107,95,98,95,95,96,99,111,110,107,88,124,98,96,98,94,94,109,95,97,109,93,97,95,97,99,105,102,94,101,96,94,106,95,107,109,104,107,90,105,96,99,98,103,102,95,104,92,98,100,97,99,99,94,102,93,76,94,65,93,98,97,88,94,97,95,92,104,101,103,103,95,103,99,116,102,103,95,103,109,96,95,100,89,99,95,84,96,90,106,99,99,102,88,105,100,95,100,117,103,129,104,103,91,103,94,91,95,88,94,103,114,102,104,107,98,106,102,103,98,104,98,88,99,101,95,103,97,95,96,101,99,95,104,94,96,92,105,88,108,99,93,94,74,102,92,99,97,101,113,93,100,93,107,89,97,91,100,104,94,100,94,97,99,116,101,96,100,110,98,90,107,97,90,96,101,91,102,94,109,97,99,102,89,100,101,94,89,84,91,103,96,100,95,113,98,101,102,95,101,100,94,100,102,99,109,98,108,106,97,90,96,111,71,105,102,94,89,95,109,110,100,100,100,100,109,99,97,118,101,115,90,98,104,105,98,93,109,95,97,100,102,100,104,117,93,74,101,93,103,97,103,96,94,117,100,99,103,96,96,86,98,112,90,101,98,103,89,84,87,102,99,100,104,98,91,98,95,113,94,87,77,87,93,106,88,99,106,106,85,106,117,109,98,100,105,99,91,104,88,89,111,89,84,93,94,92,104,96,103,78,91,101,103,96,98,97,103,112,102,95,98,91,94,107,90,107,91,90,96,107,100,97,98,100,101,106,96,92,91,101,106,91,96,97,101,84,97,99,101,105,92,105,98,87,104,100,102,113,98,98,98,103,96,77,104,95,102,106,104,110,104,108,102,105,108,88,89,104,99,102,83,101,102,98,113,108,90,101,70,104,103,101,112,92,109,93,102,97,100,100,95,96,113,94,96,102,97,103,94,96,93,114,102,100,111,101,113,96,94,109,108,97,117,109,110,99,97,84,94,106,99,91,88,99,101,96,96,97,87,95,109,103,97,110,106,88,107,108,105,62,100,101,92,108,105,90,111,113,91,102,96,96,84,96,106,104,107,98,108,85,99,98,95,81,105,97,89,113,103,104,86,89,102,60,110,99,102,86,75,80,108,88,116,113,94,95,87,93,97,95,101,118,98,87,93,97,101,93,106,102,98,102,94,93,100,106,99,81,91,101,103,95,99,93,95,92,96,98,104,103,96,106,101,94,109,105,95,99,102,101,96,110,101,101,94,102,103,84,89,92,92,106,97,103,91,106,88,98,107,101,84,95,97,96,105,109,110,96,102,93,106,104,95,87,105,114,102,101,104,89,102,98,99,97,79,90,100,102,85,96,78,96,94,99,97,98,100,100,97,97,108,92,94,77,87,86,91,92,97,106,99,99,99,108,102,96,94,92,112,108,95,99,98,99,107,92,107,101,95,98,96,106,94,104,99,96,105,98,98,91,83,96,95,102,94,87,98,66,93,114,91,90,97,103,90,101,108,87,92,99,92,100,95,97,93,98,96,95,111,85,95,94,102,95,101,101,108,128,95,97,96,103,104,89,90,100,94,99,108,103,101,95,87,107,113,85,95,98,96,102,98,117,95,94,106,104,92, +729.67316,106,109,101,98,97,99,99,96,102,107,100,91,101,93,98,106,105,106,109,99,102,96,107,97,94,94,106,96,95,104,92,82,104,99,93,94,100,87,82,91,93,107,103,99,109,97,102,96,93,113,92,118,90,95,99,98,101,86,87,100,82,101,95,79,91,106,77,94,101,78,100,109,89,105,83,100,99,98,103,94,99,89,107,95,90,92,107,111,76,83,99,99,101,96,90,105,74,107,121,101,99,92,82,97,79,93,93,95,103,106,96,101,97,100,102,102,103,87,107,71,97,96,99,91,111,93,95,104,95,112,99,106,98,102,98,104,96,96,93,89,98,108,100,91,96,122,107,103,92,103,89,99,102,91,96,81,89,99,94,99,101,95,96,104,95,109,95,103,88,97,90,102,100,98,113,95,110,89,94,101,117,113,108,98,92,106,102,82,101,91,92,100,96,96,89,100,98,88,102,90,89,92,77,92,100,105,98,104,98,100,100,95,100,92,92,94,89,98,91,96,105,99,101,85,91,100,98,105,104,105,106,100,105,102,114,99,103,94,93,100,105,96,83,116,94,97,98,100,96,96,96,87,115,99,93,104,108,104,96,104,91,98,118,100,94,101,99,108,92,98,87,101,99,90,106,88,102,95,95,102,99,97,94,103,95,104,92,100,107,96,110,66,80,99,99,105,97,95,92,102,93,95,97,109,103,102,117,102,88,100,94,100,111,96,96,79,108,101,97,91,104,94,96,110,111,103,97,104,105,93,103,106,103,106,105,103,101,79,102,99,104,102,99,95,80,109,95,85,105,87,103,91,95,89,101,110,96,101,96,104,98,93,91,98,91,95,103,99,109,112,96,94,91,100,94,87,115,64,99,92,111,83,87,95,91,95,97,93,98,90,97,92,95,81,102,77,101,96,103,100,98,96,90,93,101,103,102,91,95,94,97,97,96,109,94,87,103,99,104,89,91,110,88,98,86,97,89,83,90,102,98,96,100,102,95,74,82,98,102,89,76,109,103,106,75,94,76,71,94,95,86,106,104,100,87,102,103,96,106,88,97,97,98,101,102,92,104,94,97,112,95,105,101,96,98,96,80,108,103,97,104,101,111,92,102,88,101,101,96,92,96,107,94,95,90,88,95,97,99,97,95,97,103,90,100,97,84,93,112,92,107,104,102,108,106,96,84,100,97,85,100,97,110,100,86,107,93,101,90,102,90,90,96,101,93,95,107,97,94,96,99,105,96,104,101,88,105,108,96,100,100,95,104,93,95,94,102,94,95,95,84,100,95,97,96,94,112,95,92,88,95,88,99,79,95,91,98,103,96,106,100,92,104,95,94,101,113,105,100,90,94,89,97,91,103,93,104,114,101,104,94,106,100,97,105,115,97,100,91,96,103,99,102,84,97,109,104,105,99,100,89,97,94,94,102,94,100,100,95,102,96,100,93,94,99,106,97,89,95,71,100,106,112,100,97,90,110,85,105,100,95,96,93,108,95,87,96,81,97,107,114,111,108,94,88,91,99,98,93,95,99,101,111,90,100,95,96,109,101,101,95,103,106,91,97,94,87,90,92,101,85,88,94,97,98,101,104,108,107,90,84,98,106,101,96,99,96,111,90,93,107,102,98,92,93,98,99,108,98,101,87,97,94,130,91,95,104,96,105,92,101,99,98,87,98,92,102,91,109,97,113,97,101,105,89,90,105,95,96,99,114,105,95,96,101,90,101,102,98,115,92,94,108,89,98,111,92,86,94,99,108,104,105,101,94,114,97,104,80,100,113,110,97,103,90,104,100,100,105,91,93,92,99,101,100,99,101,105,109,105,94,98,90,99,92,104,93,114,72,102,95,115,92,92,92,87,116,105,101,95,100,108,98,97,103,116,93,98,87,101,97,92,102,94,107,103,107,100,100,100,92,114,99,106,68,97,99,95,80,88,98,86,103,101,92,97,105,107,96,97,106,110,103,86,100,104,100,93,103,107,100,94,106,100,94,111,98,95,98,98,88,103,92,101,99,100,91,87,93,96,102,95,101,91,101,94,106,105,93,91,96,104,92,110,95,91,93,97,97,90,96,100,91,89,100,87,97,117,91,104,102,103,100,82,93,114,91,90,98,104,98,100,107,122,109,111,94,93,97,105,111,106,113,101,99,88,110,99,100,98,91,110,110,96,112,105,103,101,95,91,105,105,101,96,94,99,91,91,95,107,93,90,106,89,84,112,102,104,90,98,86,83,107,105,102,90,82,85,98,108,86,104,95,104,102,100,102,98,98,98,108,92,96,91,101,102,110,107,100,102,88,95,105,88,95,105,108,91,100,101,102,91,96,98,103,103,105,87,99,96,97,98,98,82,92,80,116,106,91,103,98,111,85,111,94,107,99,83,102,91,95,96,100,76,86,107,102,89,102,99,97,102,96,97,98,70,95,96,117,96,105,100,93,93,81,97,102,95,76,99,94,102,101,99,108,99,101,110,120,106,92,95,119,72,101,108,96,110,93,105,108,95,92,109,101,97,98,91,101,102,87,117,127,102,114,98,100,93,91,107,100,93,96,101,104,109,99,98,100,100,106,101,111,89,99,104,106,94,90,95,101,104,93,110,95,92,99,93,104,97,100,97,108,96,98,97,112,90,96,90,93,75,105,95,101,104,92,103,97,101,91,102,101,106,99,95,101,108,97,101,102,87,99,98,107,101,98,116,92,108,102,101,110,98,103,98,98,92,101,90,103,93,116,105,95,106,102,112,98,99,96,108,99,103,98,132,103,117,105,100,107,105,99,93,100,67,95,101,91,109,99,94,98,97,97,98,104,96,111,66,96,108,99,96,100,101,108,102,110,100,101,119,100,113,103,113,101,136,101,112,94,102,98,112,104,100,105,107,103,93,103,103,106,117,104,104,92,99,100,92,103,101,93,105,113,106,110,102,104,104,104,116,100,94,129,109,101,103,107,103,102,94,89,101,100,98,117,108,97,98,94,75,102,97,105,91,109,109,99,106,104,96,89,106,90,106,102,101,109,108,98,97,105,105,109,116,99,100,95,102,111,105,96,110,90,92,106,72,99,108,95,91,87,98,108,104,117,89,105,94,93,114,98,88,105,96,95,97,90,91,105,101,98,98,107,79,87,106,103,102,98,90,103,99,106,94,101,92,103,104,78,105,107,100,109,95,102,98,101,100,112,87,100,94,93,96,97,95,88,96,101,103,100,105,110,100,95,111,97,106,103,101,95,102,101,94,102,94,109,99,108,94,94,109,113,99,101,103,93,101,102,106,98,112,108,105,100,92,99,88,103,88,133,98,92,94,113,116,99,85,105,93,97,97,95,106,100,92,92,100,92,92,101,93,93,97,83,102,101,109,81,99,109,100,89,100,106,95,103,95,99,97,91,97,105,96,102,91,102,93,94,103,104,89,101,100,108,97,100,105,101,99,98,90,91,107,102,93,100,103,92,94,104,92,91,104,99,102,98,99,97,105,92,107,92,99,97,98,95,99,105,99,94,90,106,95,97,111,97,99,92,109,99,92,101,102,95,102,95,101,101,106,106,95,98,106,88,93,99,97,102,86,93,104,98,108,103,96,105,90,105,89,97,98,100,95,103,102,96,97,97,100,101,95,104,89,105,110,104,90,102,106,104,98,109,102,95,99,99,109,94,98,99,105,100,87,94,101,100,87,116,100,101,111,70,87,99,99,94,94,92,80,101,90,112,99,91,106,104,94,105,98,87,86,98,97,105,91,105,92,105,92,110,96,99,104,100,92,107,97,93,98,107,99,95,96,106,96,111,103,86,93,106,101,98,94,103,105,79,106,109,94,103,107,94,110,102,108,97,93,85,101,98,96,93,104,94,97,85,102,102,105,113,109,116,92,95,102,95,88,79,91,109,99,121,97,109,87,100,87,98,86,96,104,101,98,113,102,108,88,95,86,101,99,116,100,118,98,104,79,98,109,102,97,97,90,101,103,99,110,91,106,106,99,99,99,84,88,97,94,94,95,95,85,99,99,76,104,98,96,78,95,92,98,81,99,98,106,120,99,117,110,100,104,88,96,103,97,90,97,98,102,107,92,102,89,96,94,110,104,99,97,96,95,95,106,107,93,86,108,97,90,87,107,100,106,106,91,100,99,92,101,112,108,102,101,84,89,95,99,109,102,114,93,96,87,104,97,99,102,98,113,96,97,72,86,86,106,93,95,108,100,93,103,108,122,108,104,91,109,97,104,95,93,93,109,111,97,102,105,94,95,99,91,97,117,102,106,96,91,104,89,97,103,90,98,92,92,94,101,94,99,109,100,92,99,101,93,98,106,101,89,108,99,68,82,88,100,95,94,100,95,109,101,94,104,100,110,114,97,83,112,120,100,106,88,100,99,105,121,113,101,112,105,97,104,93,113,92,89,95,96,91,95,75,102,94,71,114,101,109,97,98,109,109,78,90,94,110,103,97,95,101,92,101,88,99,102,94,100,92,91,105,103,104,108,105,100,95,107,98,101,96,102,108,108,108,113,95,101,96,89,91,98,92,121,97,101,91,100,102,110,103,85,99,98,104,102,100,109,91,95,96,116,96,117,100,117,112,102,111,88,98,92,118,101,103,97,102,99,92,97,103,95,102,120,104,109,105,100,99,109,100,100,92,93,99,104,98,96,92,85,96,116,107,100,92,93,102,97,106,95,94,98,94,102,99,106,90,99,99,103,102,109,101,104,118,100,100,97,90,107,101,107,108,110,131,97,90,91,103,97,91,98,107,109,102,107,96,100,104,123,103,94,107,105,103,97,93,101,131,96,102,96,104,89,101,87,96,80,109,84,64,88,81,89,111,93,103,92,98,105,107,94,94,75,88,86,108,103,100,98,101,105,94,107,99,100,96,96,106,96,90,89,107,109,106,97,115,68, +729.81458,101,96,101,59,91,99,102,95,87,94,100,97,101,108,109,71,109,110,105,99,83,92,100,87,95,91,98,105,100,112,104,82,93,96,102,88,95,91,91,91,123,96,97,78,105,110,106,95,91,104,95,96,101,107,89,94,90,80,111,86,99,88,105,85,96,99,83,98,117,70,78,94,105,105,93,93,95,97,106,99,60,97,89,99,100,89,94,95,97,91,99,91,100,96,105,90,94,98,95,100,100,89,91,95,96,93,98,92,96,107,98,109,90,104,95,111,94,103,118,94,100,94,92,110,92,104,98,100,105,97,99,114,101,90,107,112,90,101,96,92,96,103,96,84,92,98,116,92,92,105,93,111,93,87,102,99,109,95,107,83,105,95,133,96,90,92,97,81,99,91,94,97,97,104,108,113,104,90,113,105,78,103,103,93,110,94,94,63,109,105,94,99,101,96,104,99,104,79,105,104,91,89,98,96,105,113,98,94,111,96,96,112,93,105,106,99,92,100,65,102,104,102,100,94,98,100,118,100,100,103,93,107,108,102,99,102,100,106,82,95,104,92,96,96,103,91,100,102,99,87,104,100,96,92,86,89,76,104,95,97,86,107,102,98,88,101,101,106,102,82,100,96,100,96,97,84,91,108,90,95,98,102,102,95,87,92,88,92,95,116,90,110,89,91,103,95,94,93,102,96,91,106,92,96,99,94,112,104,100,104,86,115,96,100,112,105,102,95,94,107,94,91,94,102,101,86,93,97,94,98,110,96,100,97,94,93,94,99,108,106,109,99,95,87,105,96,94,98,113,96,86,90,88,87,109,93,104,103,106,92,112,93,86,90,86,92,98,94,88,102,113,93,103,102,91,84,104,97,91,115,103,95,105,103,101,110,92,88,97,87,100,89,91,96,88,82,96,105,101,93,98,96,92,89,101,95,90,99,102,103,99,95,81,95,100,91,86,94,95,94,107,102,99,91,98,92,93,91,90,97,90,109,97,101,105,97,58,100,91,104,113,86,101,98,91,91,93,71,100,108,85,91,95,91,97,91,91,104,95,97,78,101,86,108,86,92,99,95,90,105,109,97,97,100,88,85,91,110,95,101,91,99,96,98,101,93,96,98,113,109,103,95,102,102,101,92,97,90,110,90,95,107,106,102,96,113,92,102,100,101,91,100,84,107,87,98,87,105,96,99,101,101,96,102,90,91,108,91,109,91,87,101,86,98,91,95,84,92,94,101,104,106,103,91,98,92,105,98,97,105,97,98,105,90,106,89,94,87,96,82,98,91,95,98,86,86,105,82,95,95,92,93,100,105,98,99,86,96,97,93,112,123,97,83,105,105,104,101,108,98,94,112,112,96,109,108,93,101,114,102,106,98,101,94,102,91,90,96,92,100,102,87,110,95,96,97,109,99,103,98,101,97,103,99,103,95,106,103,103,100,93,95,98,105,94,105,92,99,98,100,98,99,101,83,74,96,82,92,98,106,101,97,99,90,94,105,107,118,81,105,102,93,105,99,96,101,100,99,82,95,105,98,104,104,93,95,103,86,98,100,99,100,97,98,102,80,111,114,106,108,93,106,92,96,108,102,90,107,93,110,92,91,96,93,103,106,91,101,98,101,99,90,91,95,99,100,92,108,92,95,96,94,93,96,87,92,110,103,107,93,102,108,89,103,99,95,90,103,99,95,108,97,105,85,103,87,116,109,91,102,123,96,98,92,92,99,102,102,110,85,99,99,89,113,98,103,101,106,90,98,111,100,92,95,107,96,87,100,95,88,100,103,105,91,93,100,105,103,94,110,95,104,108,109,90,95,92,96,87,107,95,93,98,107,104,102,107,108,98,93,96,95,94,96,95,106,98,103,99,110,105,103,101,105,101,94,96,84,103,79,98,85,99,85,97,105,75,97,114,101,88,96,113,92,106,109,73,106,101,87,88,79,101,86,97,95,101,106,107,96,112,87,91,102,84,114,105,105,107,112,95,105,85,100,96,95,91,101,93,101,101,103,102,99,106,94,95,108,101,98,91,99,97,97,98,92,110,101,101,104,106,99,112,105,83,97,78,102,84,103,108,95,96,100,96,104,99,91,89,102,108,97,96,101,97,109,97,100,99,100,103,114,97,97,100,108,98,97,99,91,102,92,101,97,101,97,98,97,99,98,99,106,107,107,105,92,102,106,94,88,93,97,100,102,98,121,85,88,105,100,101,103,88,98,102,99,99,90,103,102,100,98,94,104,98,105,101,94,115,109,93,93,97,103,92,92,112,94,93,107,82,92,98,91,93,103,105,101,90,91,92,99,94,91,108,99,100,92,99,105,107,103,95,99,114,95,90,97,100,87,89,93,85,92,98,92,92,97,104,104,130,96,95,100,89,101,103,101,105,95,93,100,100,72,95,110,99,95,99,105,114,111,93,109,94,105,94,95,96,95,88,102,96,102,102,92,100,100,98,91,98,97,92,90,97,111,90,83,104,106,99,96,61,86,98,77,89,98,101,95,95,92,106,98,108,104,101,97,89,96,98,100,97,105,98,100,100,86,82,92,88,91,99,116,95,99,98,96,94,102,90,91,96,102,117,108,75,94,99,86,102,94,102,101,105,106,92,102,119,91,105,99,111,94,88,105,98,94,93,102,104,81,98,88,95,99,94,90,105,102,96,90,102,104,96,101,97,90,107,94,98,101,95,99,113,95,96,101,104,103,103,101,98,93,92,112,97,72,73,104,90,98,98,108,109,104,101,95,98,90,92,90,90,92,91,105,94,109,93,95,89,97,100,104,112,105,91,99,99,90,92,101,105,91,99,97,116,101,103,106,103,95,105,91,98,108,92,103,95,100,87,96,103,94,96,86,93,105,87,104,93,98,102,105,103,97,92,101,94,106,95,95,102,103,109,83,94,98,100,99,104,94,97,97,99,94,92,107,97,113,99,93,104,97,88,110,104,100,111,105,100,93,102,105,103,95,92,90,73,88,90,79,101,85,99,93,110,98,96,102,105,99,91,106,98,83,88,94,103,95,97,108,97,102,101,99,103,88,95,109,95,100,91,92,98,100,103,73,107,99,65,113,102,106,93,97,105,104,71,99,103,108,96,98,89,103,93,93,103,91,93,83,95,98,105,98,99,100,101,95,98,91,109,92,99,94,94,101,97,103,91,98,103,104,95,113,93,95,99,95,106,103,96,110,100,90,103,102,106,93,95,102,117,94,103,101,105,97,107,92,109,97,105,106,104,84,100,95,100,91,101,108,100,104,96,101,104,116,96,99,95,92,91,102,91,93,98,100,111,102,95,105,96,88,93,101,109,104,94,99,100,100,101,105,108,95,92,104,105,105,91,100,93,92,108,94,97,119,95,101,106,96,101,91,99,106,109,101,99,92,106,112,93,106,101,99,100,101,98,94,85,104,96,89,91,88,106,94,100,102,88,92,101,91,103,100,102,101,110,106,105,96,91,101,94,95,105,98,99,99,98,102,100,109,111,99,108,101,105,106,103,86,82,98,107,94,95,89,103,101,99,104,98,101,97,96,101,95,96,99,97,110,103,99,120,101,100,91,99,85,103,88,109,95,99,105,95,99,98,95,86,85,101,98,92,105,100,97,98,98,91,103,99,97,101,90,103,98,104,93,92,109,99,105,85,103,94,105,101,108,93,97,98,97,94,99,89,101,93,92,106,106,112,107,91,85,99,94,98,96,93,96,108,93,96,99,97,99,88,105,93,92,90,99,95,93,92,99,101,97,98,97,95,101,109,106,111,97,84,103,96,97,97,92,90,91,93,97,102,103,97,92,98,87,80,101,98,108,91,92,102,97,101,92,95,125,96,95,104,101,92,91,101,103,102,101,105,99,105,100,94,101,115,96,100,94,101,98,84,92,87,104,88,95,96,106,108,93,106,93,95,96,96,99,104,106,102,100,103,110,106,83,93,128,100,97,107,98,105,91,102,106,101,106,112,95,103,104,102,96,95,104,92,97,96,113,104,107,100,103,100,103,90,106,107,92,94,101,101,105,95,108,98,96,99,101,87,99,102,99,99,100,91,103,95,108,113,97,102,89,100,104,100,98,105,93,87,95,95,99,97,106,91,97,102,117,89,101,90,80,81,100,95,98,94,105,114,100,86,98,95,93,100,107,103,109,117,96,104,106,109,108,101,89,109,98,104,99,94,97,89,99,101,101,104,96,93,106,88,96,97,90,101,105,100,84,94,97,100,99,95,72,103,96,85,97,95,77,94,98,116,94,105,95,89,101,99,98,103,104,91,90,95,96,97,106,90,93,105,89,103,109,100,103,111,91,104,93,92,102,91,101,99,92,94,104,98,98,88,103,103,117,96,105,97,98,91,91,107,108,102,102,107,104,105,95,110,98,112,110,96,100,100,79,96,105,82,106,103,100,64,96,90,79,89,95,107,100,98,91,97,101,96,91,110,101,100,101,97,101,97,130,89,77,108,103,106,100,94,74,115,66,91,94,101,98,112,94,105,87,91,93,96,99,109,117,101,98,93,97,89,96,93,102,99,97,97,108,105,97,94,118,100,90,105,101,96,97,117,100,94,101,88,104,100,99,101,114,92,102,91,91,87,108,105,102,107,106,91,88,97,103,101,93,102,104,99,98,107,100,96,104,112,87,93,87,98,105,95,72,114,91,96,102,97,95,99,91,94,90,105,84,99,101,104,100,108,112,97,79,95,106,92,105,110,92,106,75,79,83,109,101,80,100,102,88,111,95,96,94,107,92,106,108,97,105,93,91,95,108,99,104,103,109,97,98,94,100,97,91,78,94,105,101,92,102,97,101,81,109,112,91,89,95,109,95,107,106,102,95,108,108,84,104,99,103,82,103,102,92,76,100,101,102,89,97,94,99,108,98,107,94,104,100,99,91,102,105,98,91, +729.95599,100,92,104,90,99,113,95,90,97,108,97,96,92,113,109,97,101,122,140,96,105,91,107,96,107,93,106,98,91,95,85,90,98,92,108,106,102,96,99,97,96,88,96,99,92,105,86,94,95,85,73,118,91,104,100,102,89,90,101,93,97,111,87,83,108,117,92,118,96,90,101,96,95,95,95,106,88,103,83,95,96,96,97,105,94,90,91,105,90,88,76,104,101,101,109,97,94,73,99,93,104,98,98,91,100,95,96,91,88,105,93,112,97,93,107,83,103,95,100,107,73,97,104,104,88,84,87,101,108,106,101,106,103,90,91,97,95,106,105,97,110,98,99,99,95,122,100,96,95,101,103,97,94,93,95,83,91,97,105,97,103,105,105,97,92,93,96,93,95,115,106,95,98,90,105,113,94,101,99,91,100,99,94,113,98,87,82,83,108,109,94,102,61,99,96,94,102,97,91,94,61,90,101,101,110,95,90,97,103,95,97,95,70,102,103,91,93,98,93,101,97,112,101,105,92,97,94,104,107,108,99,94,91,102,101,99,85,95,100,102,100,89,100,99,87,85,94,101,94,101,81,87,103,100,100,102,101,105,90,97,83,107,102,113,90,104,104,105,99,94,92,104,104,114,109,110,127,92,87,95,80,97,102,68,92,79,82,95,96,62,99,102,102,93,100,100,92,108,103,102,92,104,96,105,80,106,89,90,97,95,91,106,100,95,118,97,103,96,92,107,97,105,101,94,97,104,99,94,97,104,91,98,108,101,97,88,93,93,99,108,90,91,92,92,102,85,91,100,96,104,96,92,100,96,100,105,101,100,105,103,106,87,91,102,87,88,96,119,97,106,103,99,96,89,99,100,92,102,95,98,96,77,100,93,100,95,97,103,105,97,85,90,92,89,118,96,100,94,91,102,90,91,98,99,103,100,90,103,111,93,95,96,114,100,77,76,100,100,98,84,96,86,86,93,102,101,96,92,93,87,102,106,102,99,101,97,51,102,101,95,102,93,105,98,93,99,94,104,102,95,87,91,98,90,96,101,96,105,113,99,101,104,98,109,102,109,91,93,100,90,88,100,96,103,98,78,90,91,89,92,98,91,104,97,99,90,105,101,94,106,102,97,106,93,95,83,93,105,72,96,108,107,92,94,91,95,97,92,93,94,101,99,102,106,106,99,102,101,97,96,82,83,102,95,98,100,101,92,91,95,99,83,93,96,96,100,88,101,98,106,95,89,94,93,100,94,104,103,94,106,98,96,94,92,88,85,94,89,96,95,99,98,96,120,97,98,106,100,105,98,96,110,87,96,95,111,98,100,98,93,110,82,106,104,92,96,100,83,125,101,94,97,101,100,104,100,82,97,101,103,102,110,106,100,101,93,97,95,95,103,99,88,89,110,96,99,94,95,93,99,92,104,101,91,107,103,70,114,116,106,102,102,108,109,91,99,100,92,96,91,101,110,102,94,104,97,105,105,104,91,104,98,104,99,95,100,102,87,92,117,98,95,110,89,87,92,92,91,101,108,112,88,96,98,94,96,102,105,97,92,97,99,97,112,89,82,96,86,101,108,99,95,93,96,102,92,99,94,96,86,91,93,102,112,94,103,102,101,102,95,100,98,91,87,100,86,79,101,101,100,100,88,97,102,108,87,99,102,88,102,92,96,105,92,99,90,115,92,104,99,92,91,104,96,104,109,97,96,86,103,102,91,88,90,104,94,109,110,102,112,94,95,102,95,82,96,94,98,90,96,111,110,101,99,95,98,103,97,99,99,107,90,99,96,103,97,98,91,92,88,99,101,96,104,90,113,112,115,96,96,93,97,94,85,77,105,96,102,115,89,104,88,97,91,98,104,99,108,95,104,94,102,95,115,136,93,108,90,101,108,113,94,107,91,92,101,93,93,99,95,95,102,85,98,101,83,101,92,95,98,90,113,101,97,94,108,100,104,91,89,114,97,89,115,87,93,90,107,100,88,102,121,93,97,90,104,97,96,89,89,94,97,93,87,91,93,96,95,96,91,99,108,107,108,105,98,102,79,80,103,99,86,101,97,95,81,113,96,100,75,101,114,95,108,109,95,108,89,108,111,90,104,95,101,107,117,84,110,91,101,101,111,93,105,88,104,102,97,96,100,99,98,95,96,89,102,86,101,95,102,92,98,113,102,102,101,96,100,84,104,92,100,105,107,98,105,88,88,92,95,96,109,110,91,99,86,97,93,99,98,102,100,111,84,98,87,99,104,89,94,99,114,96,102,94,97,93,90,103,101,95,98,99,104,99,95,109,101,98,95,93,109,101,90,92,96,97,95,102,95,99,116,98,91,120,105,103,96,95,94,91,93,105,95,97,83,105,105,103,99,102,91,98,100,94,109,100,96,85,98,104,99,97,109,97,87,91,104,91,108,104,87,90,103,98,101,107,89,101,102,88,113,101,105,103,97,102,92,95,112,105,95,89,92,121,103,97,98,114,98,97,100,95,93,78,96,102,99,89,104,110,116,97,93,82,107,102,92,111,110,88,104,117,110,91,90,94,103,91,104,121,84,94,96,98,101,88,102,105,106,96,104,93,106,122,105,91,94,101,73,100,101,87,106,92,109,99,88,83,96,106,108,84,93,86,99,106,101,105,98,95,103,81,104,96,98,93,97,108,96,97,94,104,80,100,110,96,95,99,104,95,100,104,99,100,76,102,100,101,102,105,105,103,99,104,87,87,78,100,101,109,99,100,103,101,117,99,111,95,99,103,95,92,65,99,97,116,110,89,98,105,108,108,108,97,94,95,103,115,85,96,90,90,108,100,102,90,125,106,100,114,96,96,98,99,88,107,97,95,99,85,90,103,112,111,98,88,90,99,107,106,102,105,92,110,109,103,92,97,95,101,103,90,105,90,91,106,92,97,102,116,101,96,103,95,95,98,114,94,95,98,104,95,101,99,97,93,93,100,89,90,108,87,99,99,99,101,91,80,105,105,98,113,73,100,111,104,93,99,105,106,106,94,95,97,91,113,92,101,83,95,100,97,81,108,96,112,87,91,95,101,108,97,102,106,94,95,97,89,71,96,100,91,91,106,118,101,95,96,97,92,99,108,100,104,89,118,107,102,96,100,112,102,102,112,94,92,94,100,94,90,85,85,104,105,105,92,102,92,90,93,93,92,94,97,101,106,94,97,98,96,96,99,90,100,95,108,96,98,97,100,96,99,105,96,94,96,98,99,102,92,109,104,94,92,87,98,102,105,97,94,116,98,101,97,92,93,100,96,103,97,94,106,103,107,108,97,90,89,97,115,86,107,102,93,109,105,96,97,98,108,104,106,100,100,113,95,97,104,94,102,100,96,83,100,105,99,106,95,97,99,104,94,106,111,98,109,111,104,92,99,100,103,99,108,98,98,95,98,96,108,93,130,92,96,98,99,111,102,97,101,101,105,100,88,100,99,112,105,104,97,90,95,106,111,92,105,101,101,85,96,104,97,93,98,112,108,94,100,103,108,99,101,89,83,100,100,109,103,92,83,88,96,93,100,94,96,91,99,95,100,111,75,93,95,99,97,93,96,100,101,97,96,105,78,91,107,98,104,89,93,115,93,106,105,108,89,98,106,95,95,106,115,106,94,91,108,102,95,109,106,109,90,109,80,75,100,96,100,100,97,99,100,104,98,95,94,100,98,73,104,125,100,101,92,103,96,92,94,90,101,99,100,97,106,100,87,96,109,97,107,97,104,100,97,99,97,92,97,102,111,94,100,94,104,105,87,110,101,96,106,97,101,104,108,121,94,93,120,92,97,102,94,107,109,102,100,89,95,90,104,99,97,82,89,94,98,102,115,84,95,100,99,86,91,102,102,92,103,60,91,100,94,113,111,91,81,106,103,104,87,99,94,100,94,96,89,99,75,99,95,94,99,113,112,95,101,90,99,96,104,102,88,89,95,102,100,98,103,95,87,98,105,103,100,97,95,116,96,115,99,109,121,105,101,101,101,108,96,102,105,88,103,99,112,97,104,94,93,109,95,91,100,97,91,96,103,87,97,96,108,91,86,87,112,90,108,93,97,89,93,98,97,94,101,99,94,83,102,99,103,120,102,99,99,109,90,95,97,98,100,102,104,78,75,103,105,92,103,96,109,100,92,95,101,109,104,94,114,100,105,98,95,84,95,96,99,103,103,109,98,100,94,100,92,101,94,110,83,99,107,91,102,101,103,96,99,103,85,81,88,110,100,99,95,96,105,101,94,100,95,97,104,96,85,97,101,102,102,92,111,91,104,96,105,98,105,90,98,105,97,100,106,91,105,92,105,100,101,98,96,99,118,95,81,103,92,101,104,98,102,104,116,99,83,99,106,99,108,111,92,95,110,102,92,102,93,95,85,97,94,96,111,100,97,110,100,113,102,106,91,86,96,97,87,98,94,91,103,100,109,96,93,104,97,92,90,114,92,100,85,84,104,113,89,97,102,107,98,98,97,100,92,101,101,107,96,109,92,98,91,97,101,87,102,92,109,97,91,96,94,91,98,106,97,86,92,103,111,102,102,98,100,87,100,91,95,90,101,85,100,100,67,99,97,113,102,102,96,102,67,98,91,86,97,74,104,92,102,97,86,81,88,99,102,107,103,104,97,98,96,108,90,94,113,96,100,99,105,97,56,96,118,111,109,106,108,92,102,88,103,96,97,93,94,102,93,99,106,91,108,97,92,97,97,87,108,117,103,96,94,89,85,94,107,80,95,108,105,91,92,103,99,102,101,100,99,109,109,103,94,98,101,90,97,97,86,91,100,93,83,98,105,102,91,92,96,88,105,115,91,105,98,101,83,99,117,92,101,97,87,104,89,102,96,97,87,117,106,89,90,103,112,104,105,93,77,106,101,109,98,98,110,99,105,104,94,107,97,106, +730.09735,101,113,97,106,99,98,110,94,108,103,94,98,119,88,89,77,90,94,87,98,84,84,112,110,119,100,99,103,101,110,106,115,77,107,98,105,94,88,91,98,100,99,95,95,103,116,96,100,89,99,89,97,83,76,93,104,92,92,97,92,113,94,101,94,98,106,92,100,114,101,93,102,81,80,97,99,106,95,114,106,113,94,105,103,104,99,105,89,102,106,95,97,92,98,95,100,95,94,89,91,104,103,92,79,97,109,91,100,95,98,93,96,96,97,100,103,96,106,91,100,94,102,97,101,112,98,105,100,95,100,103,105,96,104,92,121,97,109,112,92,90,106,108,92,98,101,81,101,92,102,90,95,118,97,84,100,97,88,133,100,93,87,95,98,96,107,93,93,90,81,105,100,102,100,101,93,94,97,99,104,111,93,79,92,95,98,89,91,130,97,94,99,94,77,94,92,97,104,101,88,102,94,92,101,100,100,100,86,113,102,99,93,101,102,101,90,101,98,88,102,95,108,96,96,118,115,102,101,97,94,91,90,109,104,101,94,101,98,113,99,98,102,96,112,105,82,95,105,103,102,91,109,104,87,90,115,96,98,101,95,93,102,99,98,93,100,90,92,96,99,95,106,79,104,113,103,88,95,110,98,103,112,104,97,93,102,96,109,95,101,105,101,100,95,99,94,106,99,103,103,103,99,95,110,87,114,109,97,112,101,85,100,105,92,95,102,101,93,82,118,93,86,113,112,101,100,90,90,109,98,96,93,102,86,100,106,104,100,90,91,97,96,97,93,96,96,107,98,100,108,97,104,92,104,108,101,98,97,97,104,81,95,105,101,92,102,113,105,98,103,101,79,88,93,105,91,97,99,101,108,99,106,79,81,99,99,98,94,103,101,109,96,92,101,101,89,92,86,94,107,91,94,98,92,107,88,95,90,92,89,95,94,94,105,93,106,91,88,77,94,95,98,97,88,91,92,95,94,101,99,85,88,81,94,105,92,81,90,101,68,92,100,100,78,101,109,97,96,102,103,107,98,116,111,107,77,108,113,103,91,102,92,70,101,81,105,98,89,90,92,98,99,99,99,98,87,92,98,91,100,96,97,117,91,97,90,94,96,106,105,96,98,93,98,101,111,94,96,95,87,103,99,97,98,87,117,96,91,107,93,110,100,97,94,96,106,89,94,96,95,93,96,92,112,96,114,93,95,95,102,91,91,96,98,90,93,99,91,89,96,101,97,98,90,90,86,110,91,106,98,93,100,100,103,89,87,93,96,95,86,103,93,103,104,95,100,77,98,93,94,89,94,97,105,103,106,98,91,94,119,95,103,103,112,106,105,93,100,92,90,105,105,88,96,115,101,90,87,96,84,96,86,103,91,95,88,119,73,101,99,104,92,99,99,114,96,94,92,106,100,105,95,93,79,91,95,89,99,83,99,102,101,98,100,83,94,93,101,83,97,89,98,94,99,93,87,100,93,93,94,85,90,93,100,101,104,94,97,98,101,106,90,98,95,92,99,102,101,105,97,93,98,102,95,93,102,102,95,113,98,115,94,96,88,96,92,104,74,97,102,92,97,110,117,99,97,110,86,87,97,102,92,99,100,104,68,114,106,94,98,96,94,95,83,86,92,95,89,110,108,95,98,108,110,105,100,106,101,94,99,119,109,94,94,95,89,105,105,94,99,124,91,113,87,83,98,93,90,98,108,108,98,102,98,99,91,110,95,105,97,90,97,92,102,83,93,112,99,102,79,101,92,100,90,97,103,107,95,94,90,89,90,106,100,96,135,93,110,104,105,102,95,96,108,98,93,94,91,105,96,94,100,87,102,95,106,106,114,103,110,112,95,113,96,111,100,89,97,107,105,104,101,101,92,100,100,98,95,101,100,105,102,108,95,96,109,95,98,101,105,93,109,100,98,97,93,95,88,102,93,96,97,116,104,106,97,100,96,102,99,125,101,104,98,99,91,106,87,96,99,107,76,105,87,99,96,96,100,93,105,88,107,91,101,96,100,87,96,102,99,100,101,99,116,102,92,96,106,105,99,90,106,99,95,86,98,83,108,100,94,89,105,98,104,104,105,98,106,97,88,83,100,103,100,106,95,94,92,95,89,95,96,83,84,93,94,85,95,103,108,90,104,107,101,85,97,111,86,98,106,81,114,108,93,104,96,104,87,81,108,104,107,104,91,111,90,102,98,79,115,98,105,99,94,94,101,106,101,94,99,94,91,93,94,96,100,98,97,108,101,90,98,85,91,93,97,87,88,91,97,128,96,93,102,105,90,104,113,88,98,101,95,87,110,85,108,137,93,96,93,110,85,112,89,103,91,112,97,91,96,101,75,89,95,101,92,99,95,87,85,86,108,98,95,92,109,106,105,105,101,99,107,99,106,87,114,98,94,83,117,102,103,100,98,100,97,95,103,86,91,106,104,83,100,92,98,101,118,96,100,99,111,93,107,102,109,97,96,105,90,94,109,100,108,97,95,101,109,99,106,104,101,103,91,105,117,90,103,97,107,91,102,96,98,102,85,97,98,87,106,103,98,103,102,115,108,94,135,101,108,109,105,102,107,109,87,92,119,105,93,87,104,96,106,92,92,106,100,103,97,118,85,84,98,102,104,113,101,101,110,109,93,91,87,108,103,95,97,101,97,85,93,101,96,118,90,109,108,111,96,92,88,100,88,101,104,101,96,110,104,98,106,91,102,110,105,94,105,102,98,101,113,110,109,95,87,83,101,75,100,99,106,88,108,92,100,94,101,100,107,102,97,108,98,108,98,96,99,99,97,99,98,97,110,100,84,99,100,97,107,94,101,110,95,94,99,108,104,102,90,91,120,109,84,110,98,110,104,109,100,99,85,101,99,108,92,107,104,117,87,113,91,91,111,106,95,95,89,100,100,103,100,104,102,94,119,120,95,112,101,89,107,99,100,84,108,74,112,94,97,99,95,95,104,97,89,97,92,95,99,98,97,88,97,89,97,114,93,98,91,96,117,91,109,96,100,85,106,100,86,91,89,101,97,91,99,104,103,101,92,104,95,114,101,100,105,100,91,101,95,107,109,103,101,97,87,91,102,94,90,103,104,112,92,109,97,105,92,85,89,102,103,91,98,94,95,101,91,124,86,103,91,91,105,96,94,102,99,97,106,111,101,101,105,105,100,84,97,91,79,96,98,106,101,97,101,74,106,99,103,97,114,101,98,98,89,92,105,113,101,97,107,83,96,94,83,102,97,116,105,98,108,105,102,100,98,110,102,94,92,97,92,106,91,95,88,98,99,104,99,115,96,109,102,105,92,93,102,99,93,95,112,106,94,119,98,97,91,95,97,97,109,88,114,79,107,103,96,99,104,99,94,106,115,94,104,102,87,77,122,98,90,96,104,94,103,97,102,101,88,91,90,98,109,105,98,91,103,87,92,94,100,98,103,106,91,114,118,106,101,107,102,100,96,101,104,102,96,101,100,86,107,116,99,96,94,100,97,90,99,107,137,105,104,103,101,99,93,101,99,91,97,91,103,101,113,89,113,96,110,98,103,105,104,90,109,102,100,85,113,97,102,97,99,94,93,100,96,99,94,97,94,101,105,105,96,104,108,99,101,100,99,105,108,106,98,101,92,102,89,106,103,115,106,97,104,95,102,108,95,107,97,97,97,98,98,102,107,92,101,111,90,104,109,97,97,103,101,93,102,105,85,108,106,95,107,103,103,101,91,98,91,89,95,113,103,98,106,92,111,99,91,93,104,98,95,99,92,95,111,108,89,105,102,98,109,96,96,113,88,102,95,93,105,85,95,110,109,101,90,102,103,105,102,97,92,103,106,109,96,98,93,112,91,94,98,102,107,95,95,95,103,117,107,109,98,100,115,94,91,111,108,95,104,95,94,107,100,91,94,97,106,107,96,96,97,116,95,92,101,96,106,99,84,105,100,102,106,102,90,91,94,104,102,104,91,111,95,88,98,99,103,96,93,95,93,94,99,94,98,87,97,96,72,114,105,94,93,99,98,102,93,106,93,107,95,98,107,89,82,113,111,91,99,94,95,99,97,92,88,103,97,98,107,94,94,97,112,88,95,106,94,102,97,114,96,102,98,99,100,93,103,88,94,112,113,101,103,92,101,87,90,97,104,100,98,108,100,101,109,95,97,101,89,102,98,99,113,92,105,113,107,105,97,107,93,93,102,99,96,111,98,102,99,107,95,96,100,91,96,92,109,73,102,95,98,97,106,94,89,102,90,101,100,86,97,101,99,84,88,95,98,116,87,90,105,94,98,91,100,93,108,100,85,102,99,108,99,97,99,101,93,101,96,98,103,98,94,97,106,98,105,111,91,90,95,101,113,96,108,113,111,93,106,106,95,111,102,102,100,95,87,102,106,99,107,104,98,92,87,97,74,94,98,88,101,95,92,99,98,96,105,109,101,92,96,92,102,103,100,95,107,109,110,97,93,98,110,101,97,99,88,105,99,113,82,99,112,92,99,94,94,98,100,104,99,100,103,104,101,96,104,106,93,105,106,101,99,89,91,100,97,96,100,102,92,99,85,94,96,98,125,131,97,104,99,106,95,100,100,97,95,97,113,99,97,102,90,105,106,102,112,97,98,100,101,103,100,112,93,119,91,107,94,94,92,108,97,95,88,87,98,98,108,95,93,104,101,98,81,91,92,106,83,108,104,102,116,112,95,104,101,93,109,92,86,108,93,92,101,111,105,75,93,84,110,94,94,101,103,107,90,124,102,105,90,104,100,94,100,119,98,99,95,94,99,110,104,108,105,98,109,100,99,102,109,105,108,99,98,109,81,89,100,107,107,99,97,99,111,90,109,92,105,96,106,96,94,104,106,102,93,103,100,101,97,98,87,95,103,108,86,116,99,121,104,73,76,85,93, +730.23877,96,94,100,97,86,106,114,95,105,95,104,94,94,98,97,100,83,94,95,121,100,91,97,103,103,105,96,100,86,94,100,87,96,100,105,88,70,103,103,101,89,100,92,99,98,102,93,96,92,107,89,102,114,98,89,87,91,105,122,97,95,88,87,106,108,100,94,93,104,94,98,90,95,92,95,106,94,107,108,90,109,95,97,89,101,97,96,91,113,102,96,104,96,96,102,99,96,99,104,95,93,88,90,102,92,101,102,100,102,96,104,104,98,97,91,104,93,97,101,101,96,94,95,114,101,89,110,112,106,109,100,94,99,100,103,106,108,101,91,102,89,98,95,97,110,97,106,90,98,93,110,95,104,88,90,89,95,91,104,83,93,99,97,91,96,93,99,91,102,95,84,95,94,94,93,97,101,96,105,93,101,103,90,105,99,87,96,92,92,101,100,99,101,97,106,101,89,107,105,104,99,90,95,100,98,97,99,99,100,105,88,108,100,112,106,105,90,101,91,76,106,105,104,94,88,104,96,107,91,106,89,98,102,103,96,99,103,78,96,102,110,106,108,106,90,96,88,100,95,97,93,92,105,110,93,102,93,99,99,86,104,105,101,103,95,98,89,96,95,93,101,105,91,89,102,103,107,109,106,106,85,108,97,101,100,122,98,100,97,107,92,108,96,98,104,99,105,102,95,105,93,96,92,98,93,95,110,98,97,92,98,108,95,98,86,102,97,97,97,102,95,103,104,87,96,113,102,95,97,97,96,92,104,96,91,100,104,86,83,98,102,91,89,100,107,99,109,100,109,105,90,93,109,105,93,93,91,95,101,95,105,102,83,108,101,91,86,93,88,101,98,93,102,99,96,93,102,100,114,103,95,96,100,95,100,91,96,92,99,100,112,97,100,91,86,129,87,95,98,118,95,101,100,93,100,87,90,100,114,99,94,87,105,95,113,105,94,117,98,94,90,87,89,93,91,87,104,89,87,101,105,108,106,101,98,89,99,90,98,91,114,91,90,101,84,97,93,100,91,104,95,93,100,99,101,95,99,99,106,98,90,105,94,98,98,94,95,102,100,103,110,98,96,93,92,101,95,101,104,89,93,90,100,105,104,94,105,98,101,83,110,101,114,99,116,88,101,104,96,76,98,111,112,101,98,106,102,91,111,95,102,98,105,110,106,93,97,100,95,96,110,97,95,91,98,100,99,100,81,81,84,96,93,106,99,94,102,101,94,96,104,99,77,104,102,96,98,105,96,96,97,104,105,89,96,101,79,97,95,98,99,72,71,99,103,90,91,90,99,93,87,89,104,96,99,94,94,105,101,114,102,105,101,100,92,94,106,92,102,100,103,90,90,93,104,100,99,96,95,92,102,102,92,109,95,102,101,92,62,112,101,95,98,87,102,96,103,89,110,94,109,96,97,94,108,96,98,103,97,98,102,87,106,106,94,118,92,92,96,97,99,91,102,95,72,87,90,93,98,96,96,99,101,100,106,95,91,90,95,105,109,92,95,108,99,97,99,89,94,102,96,96,80,94,95,98,85,90,101,101,107,90,96,90,92,104,98,99,90,110,96,99,101,94,98,97,96,100,93,100,89,101,79,102,93,101,103,109,97,91,115,103,100,100,87,101,108,95,104,90,95,97,106,93,99,86,94,97,102,106,97,96,96,100,99,105,98,97,99,97,107,100,108,104,108,102,112,97,111,93,103,96,103,92,99,106,101,96,103,89,99,102,88,99,98,93,91,99,106,85,89,98,99,92,107,101,98,91,103,84,106,92,112,107,99,101,91,95,95,84,90,107,100,93,66,104,89,98,104,97,90,91,96,97,101,101,94,103,100,100,114,95,95,87,105,89,101,89,101,84,97,101,100,97,95,100,106,94,101,105,105,89,91,96,94,95,101,93,104,98,98,89,103,101,88,96,91,97,98,104,110,94,91,99,97,99,97,117,90,107,102,90,87,90,95,92,84,99,95,98,92,93,100,99,103,98,104,91,103,96,92,100,105,92,100,104,91,106,95,97,109,93,107,99,96,97,100,95,96,105,98,104,108,90,108,92,81,103,91,104,94,103,111,99,98,96,95,96,103,95,105,90,99,109,111,99,104,83,86,94,98,87,92,93,99,91,98,99,104,101,88,99,102,96,93,90,95,113,106,107,93,95,101,95,70,103,105,100,92,93,105,92,106,89,97,105,89,95,100,95,87,105,95,96,104,101,111,92,72,101,78,91,117,112,95,95,109,93,106,95,89,86,108,106,99,80,106,100,100,94,91,97,92,102,105,100,105,100,101,101,102,94,93,113,91,97,105,104,103,100,88,101,103,98,101,97,93,90,83,103,104,95,88,86,107,99,92,110,94,98,91,93,95,100,109,94,97,116,99,88,116,91,108,99,98,111,98,120,97,97,92,101,88,87,99,104,98,106,98,96,94,94,94,98,108,101,90,108,86,96,91,107,95,109,110,94,95,116,109,104,112,95,94,97,96,100,116,93,117,100,94,97,101,102,116,100,104,79,100,102,96,111,105,112,104,103,96,97,112,107,73,102,90,94,101,98,122,103,108,99,106,108,100,94,95,105,110,97,104,91,96,70,87,104,87,78,95,99,106,84,102,124,124,105,97,95,92,105,104,99,101,94,104,96,93,94,107,103,87,83,112,102,110,100,94,97,104,91,97,76,100,99,106,103,89,87,96,94,102,99,99,95,109,94,92,97,97,91,94,98,77,104,101,95,103,108,106,101,95,113,103,97,92,97,95,108,95,107,87,100,100,87,97,105,117,104,99,104,106,103,88,100,92,103,90,101,97,102,105,108,94,102,94,95,93,93,95,93,98,105,96,78,96,88,111,103,96,95,95,99,106,93,83,94,95,98,99,107,103,106,94,100,102,105,102,91,93,96,89,103,110,88,116,96,100,132,107,106,104,93,112,100,90,105,98,99,104,101,98,103,92,101,101,97,95,98,98,97,94,91,106,103,93,95,100,94,94,97,92,94,104,105,95,106,101,92,108,104,98,91,75,108,93,94,79,96,94,95,98,90,103,105,98,95,104,98,107,93,98,92,113,104,99,73,92,106,69,106,102,94,105,104,91,97,110,105,104,94,91,87,95,88,105,87,101,92,101,106,91,91,114,111,104,101,96,104,89,102,100,95,92,97,102,110,99,94,110,98,103,98,100,92,98,104,95,91,116,103,102,94,99,100,93,109,100,80,93,102,100,108,91,96,113,91,92,116,91,93,102,97,112,103,106,109,102,101,100,97,100,89,90,84,102,96,106,107,95,106,104,105,99,88,97,99,94,94,73,107,88,87,106,95,93,96,128,96,95,88,121,106,87,95,101,86,98,90,109,92,113,105,94,98,96,104,113,91,99,100,103,94,102,96,108,101,95,92,87,102,89,94,95,95,92,102,104,87,101,101,97,84,106,110,111,107,96,109,90,94,98,99,105,88,105,99,100,94,98,101,100,91,109,103,102,90,93,94,124,105,104,95,102,103,99,118,116,97,102,120,100,101,106,100,99,109,95,94,91,110,101,99,99,109,103,107,112,93,92,97,94,103,113,99,106,103,95,103,96,103,110,98,102,103,93,113,90,108,105,98,103,87,93,102,90,99,94,96,101,97,113,90,109,103,99,99,95,91,91,109,91,117,98,92,93,93,92,97,95,109,97,98,110,100,93,105,124,83,91,116,100,94,94,97,110,106,109,93,103,98,91,94,103,99,83,98,102,98,94,104,100,96,99,102,92,99,102,98,95,109,96,85,96,94,104,101,104,95,102,93,103,103,91,101,97,103,94,101,100,94,98,94,105,97,91,96,103,105,98,98,96,100,96,107,102,94,85,92,105,104,105,98,104,98,109,99,93,91,92,95,93,100,101,86,98,91,83,108,99,96,97,104,97,110,103,95,100,107,98,104,95,100,89,100,104,99,93,102,106,99,100,104,106,94,85,99,95,84,82,80,96,105,99,101,104,106,101,100,104,105,93,96,113,91,94,97,102,90,106,116,100,104,98,95,96,103,97,109,109,85,87,98,107,97,109,91,94,108,106,83,98,101,106,95,107,101,96,88,109,105,119,104,102,97,93,93,100,107,99,99,96,111,65,106,102,104,93,106,100,88,90,95,99,94,98,91,90,103,98,101,91,104,120,95,94,97,103,98,111,91,96,103,107,109,101,106,109,99,89,105,101,89,96,96,107,100,92,95,102,97,91,93,98,89,95,94,93,95,105,109,97,95,95,100,82,87,95,97,93,99,97,101,96,96,108,88,107,99,102,104,81,122,101,95,99,107,101,101,99,96,101,107,87,99,88,109,108,108,83,107,84,103,109,99,101,113,104,88,104,100,94,105,99,107,106,97,93,117,106,95,92,95,104,78,113,94,99,101,97,105,81,101,98,79,109,107,83,98,88,108,92,104,102,103,98,102,111,97,106,94,98,102,98,105,103,105,95,93,87,103,95,94,88,96,100,95,92,89,97,98,99,109,93,100,90,107,96,111,95,106,99,108,102,98,92,100,108,96,95,98,87,91,106,106,90,83,98,94,92,82,99,102,91,109,106,104,102,105,109,95,106,106,97,89,93,94,98,104,88,105,103,97,96,108,87,98,96,99,108,103,90,89,123,109,100,99,96,99,100,108,108,95,69,87,116,84,88,95,95,100,99,90,106,80,80,94,103,97,103,101,85,103,99,114,93,103,106,102,101,87,99,101,100,104,87,105,111,113,110,98,93,93,114,98,91,83,94,98,107,112,104,95,98,116,90,105,89,97,87,95,107,96,106,80,94,93,103,129,103,111,75,98,112,93,102,105,99,108,105,111,92,94,108,101,95,91,98,98,90,81,110,95,92,71,101,110,93,101,93,91,107,103,99,96,102,88,109,101,97,100,94,87, +730.38019,100,92,96,117,68,89,94,66,78,96,125,114,104,105,103,100,94,98,96,91,105,102,110,101,92,90,93,105,101,102,99,108,95,97,85,101,106,93,101,95,102,95,88,96,104,78,94,91,100,89,104,96,91,101,97,102,106,101,108,93,89,98,104,110,98,106,95,114,94,101,93,94,100,97,96,107,74,97,103,94,104,93,96,103,106,88,108,99,87,83,92,93,109,113,96,98,116,91,96,101,94,99,97,88,92,91,91,105,100,90,92,93,113,91,98,100,98,102,125,87,94,102,96,121,94,113,92,101,95,94,96,104,86,103,94,85,101,96,94,89,97,106,98,90,118,92,103,93,89,94,102,97,102,93,109,101,100,89,98,94,95,101,105,105,105,108,99,91,87,100,93,94,70,93,97,92,95,69,92,94,95,104,96,98,101,91,84,112,102,88,94,88,89,100,94,110,92,106,100,115,103,66,98,91,91,122,86,103,105,113,103,96,100,94,103,95,88,93,86,90,111,98,91,113,98,93,94,103,87,102,92,90,93,90,96,101,97,94,97,104,102,98,101,101,100,82,96,100,80,97,101,96,79,100,99,96,98,73,83,96,96,110,92,99,91,91,95,97,98,89,97,105,91,98,117,93,110,101,86,94,97,91,110,92,93,98,101,109,96,104,100,96,103,91,104,109,110,95,81,113,101,87,108,110,87,99,100,105,94,97,100,106,88,101,105,87,96,99,102,87,100,105,103,87,101,86,86,97,85,103,101,88,98,102,106,95,87,105,102,100,96,70,96,101,98,86,101,78,98,94,93,94,102,94,98,95,99,93,99,102,92,88,100,100,94,93,93,95,102,88,100,103,101,100,109,101,97,95,89,90,109,94,89,103,96,96,94,102,100,88,101,82,91,107,97,96,102,93,93,72,92,93,94,86,89,86,91,94,99,92,96,87,101,124,104,87,100,102,96,98,95,99,95,94,93,102,107,87,95,100,95,99,95,106,96,93,96,98,93,98,105,86,93,99,92,96,88,91,99,107,81,89,95,96,96,92,99,108,104,92,94,90,105,96,93,105,107,99,86,106,106,112,95,80,94,88,91,103,96,102,102,101,112,93,89,98,97,98,97,95,99,101,96,95,89,96,94,95,87,84,99,104,100,99,99,100,79,89,100,99,91,93,84,106,99,101,96,83,90,67,97,102,90,90,97,90,107,99,100,89,96,96,98,90,95,104,92,88,104,103,100,91,97,78,106,94,102,100,106,102,100,97,98,104,88,93,108,90,92,86,93,76,85,102,104,91,91,102,99,95,84,95,92,105,104,102,102,97,99,96,91,97,101,99,102,101,96,101,99,90,96,100,97,94,100,97,89,95,98,99,105,102,93,96,93,101,96,91,92,100,90,98,115,113,100,97,93,86,98,101,99,95,99,91,89,96,101,92,100,87,102,95,106,91,88,94,104,96,123,87,92,93,90,83,91,89,93,84,92,98,91,95,75,95,101,102,91,105,83,100,91,90,99,91,98,88,113,96,112,88,101,102,102,103,96,90,79,91,112,99,89,98,109,95,67,94,97,111,93,106,105,95,77,100,96,88,94,110,96,108,89,102,93,95,102,102,103,101,91,109,98,91,104,91,95,94,91,96,94,99,95,93,107,102,87,86,98,104,102,108,112,96,118,90,101,99,88,100,85,105,98,93,84,103,99,98,93,99,103,110,102,102,91,94,89,112,99,92,92,88,103,92,99,87,92,88,110,92,98,89,108,77,94,110,103,92,96,100,91,94,109,106,103,114,85,98,99,99,74,104,114,92,101,102,93,105,105,103,88,110,90,102,79,95,97,105,106,101,108,99,99,92,108,94,101,99,96,103,105,100,102,100,93,102,91,101,93,96,120,94,100,93,98,96,93,99,87,91,105,100,92,96,98,95,92,100,89,90,98,93,99,105,94,87,97,88,94,94,90,96,97,97,98,82,97,99,90,103,90,88,99,110,100,103,96,109,101,83,88,96,105,100,97,100,101,93,89,91,109,96,91,108,100,94,91,102,99,97,96,105,98,110,103,96,98,94,77,99,102,90,93,99,87,98,107,100,101,74,95,105,105,117,97,90,109,96,90,94,99,97,100,102,104,101,95,95,88,92,99,94,102,114,100,76,96,88,100,95,90,101,104,95,102,100,109,110,98,96,104,94,138,95,89,96,101,79,109,89,92,100,97,99,101,86,98,88,105,92,85,104,102,83,87,97,102,94,97,108,107,92,91,94,91,87,91,100,96,109,100,97,98,94,105,102,99,102,106,113,94,114,81,95,108,101,84,94,103,88,87,92,106,104,94,97,85,92,102,100,92,94,96,88,96,92,100,90,98,104,104,99,111,98,89,71,94,100,89,105,96,93,92,105,99,97,88,105,86,90,96,100,98,100,99,83,94,104,112,99,91,88,98,86,95,93,103,89,117,106,89,87,95,90,100,112,103,101,99,90,97,114,95,108,86,96,95,99,97,104,104,92,93,91,89,92,92,94,68,101,93,89,92,98,102,95,99,98,96,89,103,117,96,93,85,98,102,98,97,87,111,94,97,105,104,90,101,92,105,90,96,92,91,99,94,87,101,101,103,98,104,87,100,99,112,98,91,90,75,101,99,84,94,88,103,95,84,69,92,108,85,107,107,100,103,101,96,108,100,103,98,83,113,106,90,112,96,87,105,91,94,107,90,95,108,90,98,96,94,96,94,94,96,104,103,96,108,84,99,100,97,102,108,99,100,115,112,94,103,99,106,104,106,85,110,97,87,98,110,107,95,99,99,98,103,96,106,92,92,99,108,101,108,97,96,80,99,104,99,102,99,101,93,99,101,100,86,110,103,90,101,98,100,95,103,109,99,101,82,102,120,102,113,96,95,113,90,95,89,91,93,87,93,91,102,113,94,102,98,68,106,108,96,109,100,79,92,95,104,91,109,95,99,95,73,90,91,96,104,109,92,96,99,89,90,91,100,100,100,104,102,99,105,112,92,100,102,102,102,90,95,96,84,96,88,111,99,95,105,105,92,94,103,88,102,107,109,101,106,91,108,92,100,104,103,96,103,99,100,95,95,98,92,98,88,94,101,96,100,90,98,84,97,99,92,102,87,99,100,103,95,77,105,92,92,93,116,93,103,97,95,91,77,93,100,108,93,97,120,97,102,90,101,86,90,108,96,92,92,102,92,100,93,99,100,101,90,91,101,100,97,108,88,109,101,94,101,91,94,95,88,92,91,98,104,99,105,99,83,114,85,97,110,104,99,111,99,97,79,119,101,112,116,94,100,87,104,101,103,120,101,96,99,84,83,102,110,102,69,88,103,100,107,108,106,89,87,82,84,103,89,87,99,106,102,82,81,102,105,83,102,100,102,98,87,110,106,104,92,111,103,101,97,83,116,62,88,93,102,92,91,97,98,102,90,104,102,89,98,104,94,104,92,95,98,98,92,91,102,112,103,98,98,112,92,99,102,101,102,107,94,84,104,98,96,98,104,104,96,103,93,100,91,99,99,104,97,97,92,113,102,104,99,97,104,102,108,101,90,94,107,97,84,110,99,96,98,102,110,83,95,87,103,106,84,74,93,97,98,98,104,92,94,93,101,91,91,94,104,114,90,98,98,109,97,98,103,98,100,97,109,108,98,110,104,101,97,106,102,104,94,93,102,102,92,112,96,92,105,104,107,102,96,99,98,98,96,84,93,101,93,96,109,104,99,93,98,100,94,99,86,104,97,85,91,87,98,99,96,97,100,109,95,87,97,97,98,104,91,106,101,105,98,100,96,101,91,99,90,89,105,106,95,104,104,94,108,102,96,94,77,101,93,91,92,98,95,98,102,108,104,93,107,92,105,105,110,105,99,102,87,94,90,95,119,99,95,87,109,99,107,89,103,94,108,78,105,72,104,96,102,88,94,115,95,112,96,97,98,87,84,90,106,102,90,97,91,76,100,92,86,101,105,103,97,104,100,99,98,103,105,87,96,95,99,104,91,97,101,91,80,97,98,95,102,87,109,115,94,85,104,100,105,98,88,107,97,99,91,112,97,94,94,93,102,86,97,101,103,91,69,91,99,102,105,101,103,98,103,110,104,101,107,100,105,87,94,105,96,84,98,97,99,109,81,103,90,99,99,106,92,106,97,89,97,94,97,120,101,101,97,81,100,105,97,100,101,95,84,109,103,102,104,105,98,96,108,103,105,98,87,106,116,101,109,86,95,87,112,111,109,92,101,95,97,90,105,99,103,108,101,94,96,94,103,84,102,119,93,94,95,94,96,103,98,94,101,96,103,91,99,82,103,100,101,117,102,97,95,94,104,102,98,89,101,89,94,89,108,105,97,95,89,101,111,99,107,95,104,103,90,97,96,83,107,115,97,98,95,93,78,91,85,104,86,98,90,116,105,90,111,97,102,105,109,92,97,101,98,91,97,109,100,93,101,106,120,77,95,92,103,97,96,112,85,100,106,85,100,99,101,118,89,110,98,109,95,93,105,85,94,96,79,95,94,99,104,106,74,99,92,87,101,93,108,98,94,98,100,90,106,98,95,97,99,96,91,100,102,96,98,94,89,99,104,97,96,91,103,101,101,102,99,114,92,94,91,107,97,102,99,92,113,100,97,113,98,101,92,81,99,98,91,120,83,99,92,107,98,92,78,113,95,94,94,102,98,113,113,108,96,92,107,93,95,101,94,97,84,96,102,76,100,104,93,99,82,95,106,106,97,89,98,109,88,98,104,93,99,90,106,98,101,94,99,95,97,89,95,106,99,104,89,98,101,78,105,93,96,102,88,94,96,110,110,98,104,106,104,91,100,96,108,104,93,108,91,94,105,98,113,87,99,81,101,105,108,104,74,103,88,93,91,107,106,89,109,98,106,96,95,68, +730.52155,97,62,96,91,100,94,97,103,101,84,111,107,92,94,101,95,98,119,98,95,100,100,100,99,97,103,106,111,112,99,95,97,118,99,95,108,94,93,96,105,103,101,99,95,87,106,98,121,104,95,100,113,88,96,87,92,100,86,107,110,95,108,99,99,102,107,92,97,102,93,97,103,95,101,101,106,104,105,90,103,119,93,88,98,98,92,105,96,100,134,102,91,90,99,91,101,97,105,107,99,106,101,89,101,91,100,101,104,100,86,94,88,98,97,98,105,99,108,109,86,95,97,110,101,110,115,99,101,132,102,94,106,87,94,83,103,97,103,92,91,102,94,84,86,94,95,111,102,97,94,93,94,113,89,106,98,105,100,105,98,109,99,124,103,93,95,90,97,113,106,121,104,98,89,95,95,104,102,102,106,101,91,99,104,103,101,112,98,117,108,94,101,100,99,97,92,97,99,100,107,97,99,92,89,93,101,97,105,109,101,99,100,102,108,78,97,129,96,103,105,102,110,101,99,112,105,91,80,105,105,85,105,109,98,102,103,94,100,97,104,103,106,105,98,90,89,103,110,88,100,109,107,117,94,99,96,96,99,99,97,95,100,102,106,87,106,98,92,89,108,103,92,108,97,86,100,91,104,91,103,101,101,92,93,92,130,90,99,95,107,86,103,97,100,125,110,103,87,108,104,91,97,111,113,100,110,96,115,94,108,105,98,106,101,99,98,99,102,86,102,95,102,90,88,91,87,95,92,110,112,116,99,100,95,90,102,98,103,97,103,103,92,107,100,108,107,94,103,102,102,98,98,105,113,108,116,102,94,91,105,96,96,101,86,98,87,105,95,95,96,109,97,92,104,109,121,104,98,97,121,94,88,114,105,101,107,94,104,85,108,110,79,93,113,103,96,96,96,94,94,100,100,90,105,96,104,104,101,91,97,95,104,88,99,96,104,106,121,99,101,87,122,99,98,95,83,94,91,100,111,92,89,102,90,125,94,105,104,89,93,99,95,91,97,94,95,98,85,93,92,94,98,103,107,125,95,103,98,95,108,114,108,117,102,75,101,91,90,99,91,93,92,101,94,104,97,99,90,94,94,105,96,102,95,92,93,100,86,102,101,102,106,93,101,93,112,110,103,100,103,106,92,96,90,99,94,96,103,95,103,100,108,92,89,103,91,99,101,98,100,97,102,101,103,91,100,104,100,101,93,96,97,98,94,92,100,101,94,98,104,96,107,88,81,100,97,93,97,100,96,96,106,96,104,89,95,105,97,94,71,98,88,105,94,91,98,109,101,94,101,99,95,101,102,90,107,89,82,92,118,93,105,91,89,106,106,106,98,105,103,95,110,91,95,110,111,73,98,92,104,95,105,98,102,101,91,91,103,92,89,86,101,102,108,101,98,107,94,110,94,97,93,99,105,101,85,87,105,101,103,96,102,97,95,90,102,95,101,93,95,97,98,91,106,102,90,91,104,93,106,91,93,95,113,99,98,101,93,99,98,108,105,102,100,97,91,105,104,109,100,99,101,108,114,99,104,107,95,103,92,97,100,97,93,97,92,110,117,97,103,94,106,104,97,101,101,93,100,101,85,87,88,87,100,93,105,96,96,96,101,81,93,95,94,95,104,89,90,96,99,101,88,103,88,102,86,108,107,110,104,94,105,104,96,97,97,103,86,93,92,96,79,103,89,112,110,89,100,102,92,112,98,96,83,100,93,100,90,104,88,108,108,90,97,95,101,96,99,94,90,117,86,87,93,103,107,106,85,99,90,94,100,103,109,113,98,102,113,101,104,115,105,93,109,91,96,97,99,113,114,95,100,98,107,97,87,99,101,103,102,118,118,88,90,104,90,101,94,103,95,98,113,116,92,102,91,94,108,87,100,105,89,107,101,91,101,111,86,106,101,92,102,91,101,97,95,91,94,95,93,87,78,82,96,88,99,101,98,103,94,95,93,110,72,122,86,90,110,109,105,105,97,99,90,101,89,99,82,90,98,100,88,112,95,84,106,87,112,91,101,98,103,94,117,98,103,97,88,90,80,98,98,98,91,95,101,93,94,95,110,98,115,132,100,84,95,103,96,99,102,108,102,96,99,95,101,102,90,104,98,99,80,101,96,94,101,100,90,104,85,104,113,97,111,105,97,115,95,97,100,100,92,100,101,105,95,103,106,90,105,97,113,97,95,109,91,93,93,99,83,96,99,107,100,93,107,100,94,102,98,104,106,99,114,95,91,96,119,99,93,103,93,89,92,92,100,94,98,104,103,109,91,86,65,103,87,103,104,88,94,90,106,100,101,91,106,102,87,106,100,111,103,104,91,109,106,91,95,102,97,100,96,100,98,97,89,90,111,112,93,86,117,87,94,101,95,104,92,107,73,100,112,102,96,95,107,111,98,97,99,81,108,99,93,108,102,74,97,95,118,97,91,97,96,120,96,100,107,93,100,96,95,66,102,103,97,99,111,103,98,102,98,101,89,101,101,91,93,91,104,101,92,99,97,91,94,96,100,95,104,89,102,99,96,91,97,100,94,89,93,98,97,102,91,97,93,106,86,108,109,95,109,97,100,95,98,95,102,103,88,94,92,94,109,96,88,100,85,97,90,108,98,107,95,92,102,109,98,98,104,111,100,101,99,80,94,108,105,90,95,92,99,109,99,100,121,87,83,104,81,99,97,102,100,104,107,117,103,107,91,89,95,96,87,106,96,93,89,96,106,95,114,106,99,100,93,99,99,96,97,99,97,98,93,107,98,104,91,104,86,100,99,90,95,91,92,86,100,108,97,92,95,102,92,105,104,92,96,101,102,92,82,94,63,114,88,100,99,105,97,104,93,98,100,101,106,96,96,105,117,101,110,106,98,106,91,96,91,100,100,91,108,101,116,114,92,92,105,95,91,93,96,107,104,92,102,102,108,111,95,102,98,117,106,90,94,94,108,94,96,100,103,96,99,98,92,108,100,98,96,96,98,90,83,108,106,101,105,101,94,104,101,87,104,100,89,80,103,91,108,98,95,101,110,112,100,101,99,94,107,96,91,97,99,91,96,94,90,95,106,82,102,102,108,93,101,93,119,120,106,115,98,79,84,109,88,95,104,97,105,100,102,101,97,107,102,98,99,93,98,104,99,100,84,87,100,112,106,86,93,99,100,93,98,93,104,95,91,95,107,91,98,88,95,98,116,82,104,98,109,109,117,90,97,106,97,106,103,92,87,98,95,83,100,100,100,104,95,83,98,112,98,103,114,104,101,101,109,121,102,94,107,102,99,97,104,100,92,113,83,103,99,89,94,103,94,111,105,96,98,96,101,106,85,105,96,96,90,100,98,101,102,94,94,124,90,96,96,104,101,109,97,99,97,96,90,90,92,87,105,110,98,91,92,98,96,108,104,104,104,93,85,89,100,98,106,91,100,97,94,96,93,85,105,99,95,95,103,87,102,97,99,93,101,83,101,88,90,107,90,98,98,97,94,98,102,99,95,107,96,92,95,104,105,111,80,108,102,106,95,110,106,105,105,87,98,98,117,100,108,99,114,101,98,100,116,98,106,92,104,95,94,98,87,106,101,106,84,88,105,105,96,98,113,97,105,97,104,94,102,92,92,112,99,86,99,107,109,99,100,92,105,96,117,95,104,111,96,103,105,106,96,94,100,97,87,104,94,97,100,98,100,100,105,117,100,95,95,101,95,88,105,90,93,90,107,101,96,104,95,84,104,107,105,99,92,102,96,111,106,100,101,93,119,105,103,96,98,96,106,101,103,90,101,101,97,98,97,91,92,90,101,95,100,85,94,96,109,101,96,99,100,109,90,116,109,110,92,89,94,99,100,101,101,95,104,99,89,95,88,93,103,95,98,100,90,96,96,109,108,94,86,94,93,96,105,105,92,110,87,117,103,103,95,88,101,104,93,99,98,86,93,93,94,104,94,104,89,88,94,101,87,58,99,93,95,111,94,109,111,98,107,92,103,91,88,109,94,101,93,92,89,94,95,100,93,109,94,113,104,94,91,86,96,80,90,108,96,125,100,104,102,106,69,96,104,95,86,104,99,112,99,99,96,103,98,100,97,91,79,104,97,94,108,103,93,97,95,101,97,109,108,102,85,102,90,100,108,97,99,91,91,92,105,103,75,102,106,99,109,119,90,98,81,95,98,103,103,93,101,100,103,99,103,96,102,105,108,88,114,106,100,111,118,98,109,101,94,104,104,95,100,97,112,85,101,94,110,97,94,93,92,102,88,98,95,99,107,107,89,98,102,108,97,95,93,105,84,108,99,85,92,107,107,104,108,112,100,91,111,97,87,102,109,103,106,93,95,116,110,99,103,92,88,102,79,96,107,101,75,93,100,109,105,84,95,105,111,94,104,101,100,80,107,101,98,114,95,98,96,101,99,95,89,101,106,96,96,101,89,122,99,92,108,106,85,105,79,96,102,93,103,92,96,83,104,101,93,114,107,91,94,95,98,110,102,91,92,99,94,86,98,88,100,96,98,94,109,93,94,87,93,88,92,111,102,110,113,91,95,97,111,92,110,100,98,105,95,98,95,108,104,98,97,104,98,91,87,93,94,106,96,95,103,102,103,96,100,93,95,95,103,95,105,99,101,95,93,102,106,89,102,94,94,107,108,102,105,103,104,95,127,100,99,103,87,91,98,103,101,106,102,90,111,89,94,98,108,106,101,114,99,111,111,105,129,99,114,92,97,71,95,96,107,84,90,112,105,79,113,97,101,105,102,123,99,112,107,95,103,103,93,83,98,98,105,92,100,100,89,129,107,105,107,79,101,96,105,108,92,97,101,94,93,106,92,96,97,103,95,104,110,113,121,98,84,84,93,106,86,100,92,106,94,96,91,93,96,108,96,111,100,97,94,98,103,101,101,102,133, +730.66296,75,94,99,79,114,77,103,92,93,88,98,95,98,80,92,66,104,105,93,115,89,94,90,106,91,114,98,97,92,84,102,96,98,88,90,99,93,108,92,100,93,92,102,108,106,104,96,108,100,111,97,90,100,92,94,101,90,97,107,94,93,84,97,88,98,115,107,96,84,100,89,96,103,121,111,108,87,104,114,98,83,101,94,101,107,100,112,104,99,100,95,97,90,90,92,90,99,97,90,100,104,98,75,95,124,100,87,72,84,77,92,110,68,96,108,87,84,110,104,94,94,97,92,101,93,102,107,93,104,103,94,93,86,109,97,96,97,96,93,88,87,98,95,100,100,91,101,93,89,107,111,101,86,88,94,84,103,98,94,74,92,103,100,105,96,98,87,103,99,96,105,89,88,106,110,104,96,88,113,103,94,98,88,101,100,89,90,91,98,102,93,107,88,92,86,88,87,104,100,97,98,93,96,94,95,101,99,96,94,92,106,95,98,95,96,99,97,94,95,103,107,103,86,96,79,104,107,97,91,107,97,96,94,93,98,91,95,92,90,97,100,98,78,91,89,100,95,101,99,104,96,100,95,102,89,90,90,107,90,108,100,95,97,94,96,92,101,101,83,91,97,89,95,92,105,102,81,95,88,93,96,97,110,95,102,85,91,98,105,86,101,98,95,101,96,100,98,92,99,92,101,105,90,110,99,97,106,91,97,99,82,96,90,93,93,87,94,84,96,72,110,110,96,96,92,96,87,89,99,91,100,80,99,91,98,95,86,100,94,93,92,95,85,98,105,97,90,104,90,104,97,97,91,99,94,93,104,92,101,100,92,97,102,93,95,96,96,97,86,78,104,95,97,112,93,121,96,96,95,102,89,113,88,101,104,87,103,96,99,91,98,80,96,102,103,97,101,90,100,92,99,88,98,95,89,90,97,100,107,77,84,110,97,88,105,100,72,94,95,96,102,106,88,103,96,101,91,99,89,109,94,79,104,101,93,106,98,97,98,98,100,91,96,96,105,88,104,91,94,109,80,96,102,109,96,102,101,95,100,105,97,92,98,101,99,113,105,97,113,97,103,94,101,88,111,87,91,105,92,105,95,99,100,107,96,98,109,99,95,87,108,104,95,103,78,101,84,94,101,102,106,99,103,89,108,88,88,92,92,87,100,96,100,105,102,108,103,86,86,81,95,93,83,91,104,90,101,96,92,91,86,90,93,88,91,78,100,97,104,104,96,81,78,95,112,82,93,105,91,95,106,86,94,100,81,95,94,82,86,95,97,93,109,101,91,106,90,93,95,99,97,97,97,110,93,110,91,93,98,92,93,103,97,93,92,97,97,95,88,93,101,101,87,99,94,101,93,95,87,95,100,95,103,90,95,93,95,95,100,96,69,99,95,99,90,95,102,70,96,91,112,87,91,87,91,90,97,106,96,95,99,95,88,90,94,101,87,98,91,95,60,90,91,104,94,93,81,96,98,103,84,94,104,107,100,105,96,94,101,104,112,96,100,101,96,93,91,94,98,99,87,90,115,79,102,101,100,92,86,92,94,117,94,84,94,102,91,92,94,84,95,103,98,107,96,90,94,88,93,96,95,120,104,102,109,107,91,97,92,82,95,70,93,90,91,100,88,107,97,88,94,96,98,94,95,92,110,87,101,98,89,100,99,100,90,104,94,79,93,95,105,96,95,111,98,87,94,100,97,92,94,100,101,97,83,98,94,92,105,98,123,86,96,102,81,102,97,105,91,93,90,86,111,93,102,98,103,93,91,83,85,97,100,100,97,101,103,91,101,107,90,89,122,99,98,107,93,98,96,103,101,96,91,91,98,101,103,96,103,122,98,90,89,101,91,102,88,100,91,99,99,97,106,105,88,104,100,98,96,99,99,93,80,107,97,84,89,90,93,86,87,102,104,100,105,90,83,97,99,86,101,101,101,95,101,91,94,96,93,105,105,89,81,102,97,79,87,101,105,101,97,104,93,104,97,95,102,87,67,97,98,88,84,100,98,103,89,98,96,95,98,105,97,100,100,81,108,93,100,95,105,98,91,110,104,97,82,98,90,104,89,105,119,88,103,97,91,100,76,98,100,104,95,92,92,95,91,94,97,104,108,101,101,96,82,103,90,110,102,96,90,103,89,100,96,82,102,103,105,97,90,92,104,99,101,103,101,90,105,100,99,100,95,91,103,110,86,88,91,104,96,98,99,93,97,109,97,92,98,97,91,96,95,98,100,91,89,99,109,85,101,85,101,89,98,107,99,104,100,93,94,97,93,98,104,110,105,91,89,105,85,112,95,103,87,97,91,98,91,92,102,105,101,96,101,101,102,95,106,100,107,95,103,91,94,101,95,90,101,97,93,109,100,111,72,93,78,95,100,97,101,108,79,104,99,93,95,98,103,98,94,110,95,94,104,82,95,105,91,103,86,98,90,92,99,85,83,100,100,107,104,103,104,102,98,95,94,99,106,98,102,112,108,89,80,95,108,98,99,97,107,86,92,108,90,101,96,101,98,109,97,107,105,99,104,92,65,113,92,100,99,91,104,107,96,102,92,103,115,104,98,108,98,94,94,96,105,104,99,108,96,90,89,100,93,86,87,96,95,105,108,94,107,108,91,102,105,106,88,103,100,95,99,100,103,91,89,76,124,101,91,98,91,107,96,87,88,100,114,102,88,103,85,99,97,101,109,101,105,103,90,105,113,97,106,106,109,95,98,113,88,96,101,102,98,97,92,79,97,95,100,104,88,124,99,101,95,119,95,99,94,121,90,96,98,105,94,97,109,75,100,109,108,95,100,100,95,95,101,106,103,108,127,86,96,98,98,86,94,95,102,105,98,97,87,87,101,107,92,87,97,94,106,117,102,115,111,100,94,100,101,109,97,100,96,99,97,101,92,99,115,109,101,98,100,110,104,86,99,88,100,109,102,106,94,102,99,97,101,100,100,99,91,113,91,103,99,99,106,106,91,96,97,91,107,106,104,98,105,103,104,106,120,95,106,90,102,103,84,93,109,99,94,106,106,101,103,102,106,110,101,105,104,96,107,111,105,85,108,96,100,100,89,103,79,83,97,113,100,98,109,103,107,102,101,101,96,89,101,93,105,99,104,100,107,111,119,113,86,99,98,104,98,93,91,96,92,96,93,106,101,101,102,87,90,101,98,98,116,85,99,88,99,87,85,99,99,99,107,72,98,103,99,97,105,95,100,99,103,100,100,95,115,97,109,89,105,92,102,103,96,98,100,109,93,104,101,105,104,91,100,100,102,88,102,103,82,98,92,98,105,92,96,93,129,94,96,107,103,101,100,100,92,96,106,94,106,96,94,92,102,110,90,98,100,98,107,80,104,93,68,108,86,89,84,90,103,104,98,106,107,94,107,109,101,89,105,112,113,98,99,101,110,106,93,102,97,95,89,103,94,103,99,91,98,95,107,94,100,100,98,99,100,105,94,91,98,100,111,104,103,108,101,91,87,104,103,91,121,94,109,97,90,109,103,102,101,90,106,101,102,113,94,108,93,102,96,116,108,107,101,89,102,94,93,112,90,102,114,109,94,81,97,102,100,110,105,105,93,96,97,87,100,113,97,93,99,94,98,101,102,116,92,101,99,94,94,92,98,100,98,100,104,104,90,103,99,97,111,87,100,95,98,102,97,105,93,101,95,88,117,94,98,92,96,96,80,94,102,98,90,87,93,106,108,95,99,109,96,107,97,83,92,92,96,101,105,91,104,98,104,102,128,105,105,106,91,93,101,108,104,86,101,101,110,105,96,93,113,110,111,114,102,101,103,106,107,108,93,101,96,87,85,100,90,109,94,88,99,106,90,96,98,103,96,100,110,91,101,108,97,102,94,108,101,117,88,94,107,105,102,96,106,98,100,104,98,98,101,100,96,105,94,94,102,89,100,93,107,90,96,96,105,100,105,110,103,95,97,114,97,87,104,113,91,101,98,101,95,98,92,92,100,99,106,103,104,99,103,107,87,90,89,92,101,98,104,87,87,107,106,111,89,92,106,106,103,109,113,103,113,105,94,99,108,107,107,100,104,84,105,94,100,91,97,103,99,95,98,113,109,93,110,104,93,96,98,81,93,91,104,93,96,98,125,109,117,98,99,113,97,83,94,102,94,101,97,108,101,116,91,106,87,92,103,92,91,97,93,84,113,94,109,92,106,102,114,107,86,98,102,96,92,95,106,97,91,100,95,104,102,88,97,98,88,93,100,101,95,92,102,92,103,88,95,102,105,114,116,95,94,110,109,103,98,106,105,108,93,86,104,108,86,101,117,105,109,93,99,111,108,99,102,106,107,104,97,120,98,123,69,91,94,97,100,92,120,98,101,106,100,102,117,87,106,99,119,102,102,101,95,97,96,80,95,97,95,111,99,91,97,80,100,93,93,82,95,97,96,95,94,108,99,95,102,104,87,106,104,104,103,101,105,112,96,97,102,101,95,107,111,94,101,112,103,101,105,99,96,87,85,97,108,107,99,86,104,95,97,87,90,98,94,99,92,93,99,99,102,101,102,100,98,96,98,102,99,92,97,101,91,100,107,91,107,98,105,100,87,92,98,88,85,110,107,76,104,92,96,102,96,96,79,104,94,98,99,94,78,97,94,98,103,107,112,110,101,104,86,88,95,99,101,103,94,95,90,90,107,81,99,102,99,100,103,104,100,113,96,95,92,107,101,111,77,98,101,105,91,93,99,109,102,97,99,91,99,106,96,93,102,99,102,99,91,99,104,98,88,90,90,102,88,102,104,105,98,107,106,88,99,108,104,105,100,97,109,98,85,88,106,100,89,104,106,103,96,105,101,106,100,108,101,101,123,97,86,99,98,115,105,114,98,100,100,96,128,103,94,89,109,92,95,102,92,92,91,104,105,113, +730.80438,100,87,90,104,91,99,104,96,95,107,99,93,99,102,107,111,94,116,98,109,98,91,93,112,99,95,99,93,98,120,96,62,106,103,100,106,105,97,99,96,100,104,104,96,100,98,98,108,99,101,102,108,97,86,99,102,101,98,105,90,85,105,93,100,98,101,90,112,126,97,104,100,96,99,96,102,102,101,87,95,115,91,87,95,103,83,89,117,107,95,101,96,102,92,92,92,92,104,105,97,95,101,92,100,96,109,92,101,101,87,94,99,85,100,101,104,92,101,105,102,100,107,90,104,109,100,104,99,104,95,94,113,96,107,109,92,100,103,98,95,93,106,101,94,90,100,104,105,103,105,104,95,96,97,94,94,92,97,100,90,92,81,99,101,108,95,98,81,101,98,92,94,90,97,103,103,103,91,83,91,113,104,95,86,80,96,93,99,100,102,89,95,109,96,97,107,112,92,101,108,104,88,97,89,99,100,91,97,88,103,100,98,99,94,106,95,96,95,93,87,105,99,88,99,103,108,104,102,96,101,96,104,104,97,106,76,103,109,100,98,91,106,109,97,102,101,108,101,94,101,101,92,99,94,104,107,91,103,116,108,84,109,90,110,87,106,91,110,99,90,108,113,94,84,109,93,95,106,103,120,104,108,89,88,97,125,99,99,95,100,99,111,103,106,113,117,103,95,103,99,96,95,96,96,86,93,97,101,105,106,88,91,102,95,100,103,104,98,86,91,84,86,98,101,101,96,104,98,107,106,110,101,98,93,102,107,102,95,95,112,100,106,93,86,101,105,109,107,94,102,105,101,99,99,99,102,94,102,93,105,97,90,89,91,105,95,97,97,104,101,97,92,102,113,100,112,106,102,95,101,105,94,90,95,100,108,103,99,107,106,98,84,97,109,93,90,102,102,101,102,102,109,109,104,98,87,106,135,112,99,95,97,97,108,98,95,110,111,89,109,96,106,83,97,100,99,99,105,94,107,95,79,99,95,104,110,93,102,96,101,107,88,111,105,103,103,98,95,100,110,106,114,111,116,112,96,93,95,87,102,103,101,97,111,93,104,92,101,101,72,103,87,99,97,98,103,93,95,102,95,95,102,107,89,99,112,102,95,97,97,110,103,103,103,96,90,106,131,102,100,82,98,98,106,99,90,91,104,92,88,97,93,98,89,95,91,100,101,102,94,107,101,95,92,99,95,94,97,81,104,99,101,99,98,94,77,96,105,106,95,99,97,71,92,103,92,107,100,82,97,87,102,87,95,93,101,105,109,114,95,103,98,84,91,97,98,104,96,101,103,105,96,108,98,99,99,92,95,105,102,107,119,104,88,94,91,99,104,117,93,101,99,108,88,102,108,103,97,90,110,103,95,99,98,95,101,101,109,87,112,95,83,103,95,92,87,92,78,102,91,100,108,96,96,133,105,96,108,105,119,98,93,85,107,102,99,100,96,96,92,96,102,93,102,106,105,97,101,100,109,100,100,91,103,100,93,109,88,64,102,99,103,105,90,92,112,116,87,108,102,105,77,91,93,96,106,100,91,104,99,96,94,117,97,96,117,97,105,100,96,95,95,95,103,96,97,109,87,103,85,96,97,116,97,108,107,102,109,98,93,100,96,97,98,116,67,108,97,110,76,108,93,99,93,94,98,97,88,105,90,97,105,98,101,96,95,95,87,99,110,98,103,89,104,107,95,112,99,93,67,99,90,97,95,98,81,101,106,90,98,99,105,94,104,93,105,98,104,119,107,101,94,92,104,108,103,105,101,109,94,99,106,119,100,101,103,91,103,87,103,104,100,92,107,96,110,87,104,105,97,93,95,103,108,96,121,113,92,100,102,102,94,94,101,94,86,108,90,105,100,101,99,97,101,101,107,110,107,100,102,100,99,101,100,77,96,91,106,119,96,106,107,112,89,96,99,113,91,104,92,100,109,105,102,90,100,89,90,101,95,100,108,101,95,99,90,83,81,95,79,111,115,84,98,96,96,108,95,95,99,103,93,95,92,103,105,84,97,103,103,106,105,99,100,98,112,97,110,90,93,87,102,105,84,91,119,104,98,96,94,83,97,99,91,102,84,92,105,99,102,99,106,94,107,87,131,99,98,94,110,103,102,91,87,95,111,105,87,91,108,101,96,91,96,100,84,103,105,95,106,99,95,110,96,111,100,100,114,97,97,88,112,108,97,103,89,93,104,100,104,101,100,97,94,95,105,99,94,94,99,106,87,100,106,104,88,90,92,104,95,92,99,105,98,91,95,91,94,105,112,100,101,93,101,123,108,104,98,94,95,91,94,102,116,100,101,87,87,97,99,100,109,106,88,96,113,95,97,91,96,75,86,82,83,105,93,91,108,102,81,103,103,91,101,96,96,95,98,103,104,98,95,94,113,92,89,93,94,83,96,105,101,101,100,79,98,91,75,92,93,104,91,68,93,102,110,106,96,104,106,90,99,103,102,109,115,93,102,104,105,107,84,95,96,99,92,95,100,83,95,95,89,97,111,108,97,97,98,95,98,95,95,96,102,103,104,103,94,99,110,113,111,88,119,91,99,84,116,99,93,99,96,92,95,119,98,99,95,85,101,82,95,97,105,94,100,94,95,85,100,103,87,97,95,106,98,104,107,93,102,97,91,103,80,92,103,103,109,96,91,90,99,104,96,90,101,107,82,110,99,92,99,98,102,109,92,90,92,105,115,95,92,109,103,86,99,95,91,114,71,103,99,95,93,98,104,111,112,87,89,100,81,94,99,97,95,105,111,109,89,91,97,93,88,115,97,90,102,80,99,78,107,91,90,88,107,102,97,95,94,102,85,102,94,104,105,103,127,89,104,99,103,102,110,103,95,90,95,101,100,92,94,92,106,102,92,94,95,87,101,81,99,112,102,102,98,97,112,115,99,104,75,93,105,109,102,94,98,97,97,95,114,82,91,94,106,87,102,101,102,102,112,93,103,87,98,102,102,94,90,108,98,97,87,110,103,88,97,93,120,97,108,102,105,109,103,113,96,96,92,95,99,107,91,111,94,96,100,98,96,86,99,77,103,104,94,101,105,107,106,105,98,95,98,99,84,92,99,100,94,104,102,110,119,97,90,96,98,116,100,95,105,105,100,108,95,105,105,103,91,98,100,99,90,114,91,87,94,96,100,89,98,96,103,106,99,104,95,100,92,99,98,74,96,102,77,104,102,101,109,97,102,105,103,106,89,99,116,89,87,105,104,87,97,98,101,107,103,107,103,103,106,104,100,94,85,88,105,91,91,105,100,87,104,110,92,98,104,102,96,104,84,107,102,101,94,93,100,90,94,101,89,97,95,88,121,95,90,91,97,92,95,120,94,104,109,101,82,99,100,89,107,96,88,95,101,128,105,92,92,103,86,92,97,106,82,79,97,103,99,87,90,100,93,99,90,103,94,100,90,91,95,103,111,91,96,99,81,84,98,96,103,88,108,100,88,97,97,104,104,94,109,96,100,102,99,104,103,96,94,100,103,83,105,105,97,94,98,105,103,110,113,92,112,95,110,97,112,109,91,105,91,93,97,101,111,90,106,93,106,104,98,109,110,109,100,110,101,106,96,93,109,98,98,89,99,95,91,102,101,98,90,91,82,97,92,100,97,89,109,90,101,96,98,112,110,89,101,97,92,105,98,106,101,88,103,103,87,92,98,94,87,118,100,82,94,100,88,100,89,98,104,93,99,106,86,84,105,105,92,108,84,92,104,92,93,99,94,102,115,95,93,77,89,104,100,86,98,105,95,93,86,93,92,104,104,95,93,96,98,90,88,100,99,98,97,91,101,81,105,104,82,97,97,95,93,94,102,103,102,115,106,93,109,85,95,107,92,103,94,80,108,93,101,98,101,98,93,102,107,94,102,112,99,97,100,100,105,96,91,106,96,108,104,96,93,99,92,99,97,97,100,103,106,102,106,107,98,106,87,107,102,72,112,100,88,97,113,108,88,97,116,97,93,87,93,100,113,89,92,105,91,79,108,98,96,96,112,89,99,120,99,74,98,97,102,94,87,101,110,99,106,94,102,93,98,103,82,103,100,95,99,89,78,97,102,91,100,98,98,95,107,97,106,124,111,115,93,96,88,101,96,113,87,90,105,98,69,92,103,96,91,101,104,85,103,94,98,100,93,102,101,94,94,107,101,101,92,84,93,95,94,93,96,101,106,93,94,100,95,113,101,108,100,105,93,97,98,98,99,99,95,100,88,90,96,113,99,104,97,91,100,103,93,98,85,92,109,93,99,98,103,106,77,99,87,112,82,95,100,96,86,104,101,102,106,92,97,119,108,95,102,94,102,103,128,100,103,106,104,109,96,121,94,99,75,102,101,100,102,92,105,105,84,105,96,105,101,102,102,104,106,111,57,103,103,103,73,91,90,85,101,100,92,92,96,105,105,103,107,111,103,100,92,94,99,96,91,90,98,96,92,97,109,90,87,82,93,115,93,84,105,92,84,95,106,99,97,104,94,90,98,86,95,98,94,91,108,95,94,108,77,97,102,89,94,103,101,100,92,97,97,105,90,103,109,108,103,106,107,106,102,105,100,107,106,106,87,100,102,91,91,87,105,102,97,102,105,100,99,88,104,107,104,95,97,108,110,106,100,91,109,109,94,101,96,109,96,108,94,103,99,113,104,96,92,92,112,100,96,99,99,94,101,99,91,98,118,98,85,92,100,105,92,100,92,109,99,102,96,87,92,97,93,101,94,94,108,113,93,96,107,99,94,86,105,91,86,96,100,77,91,99,105,99,100,101,95,102,95,90,85,88,81,59,89,87,97,102,102,103,81,97,92,110,102,93,93,111,112,99,137,104,94,98,89,81,112,102,102,102,83,98,94,101,99,99,75,94,109,96,94,92,83,113,101,111,104,98,95, +730.94574,111,79,102,111,98,94,87,95,105,109,100,93,96,96,110,101,93,88,101,101,114,93,96,101,94,112,87,108,96,97,97,96,90,91,107,77,98,96,107,102,110,93,94,104,105,110,100,83,95,114,106,99,107,98,101,103,94,80,101,85,97,94,95,88,93,105,95,94,105,106,95,92,103,91,101,111,89,95,97,100,96,91,93,98,102,86,95,86,98,100,96,93,93,79,106,92,91,92,82,108,90,109,72,100,99,95,97,97,93,96,93,103,94,94,114,99,98,89,103,89,95,110,104,104,109,116,106,107,107,98,106,104,96,108,105,108,108,91,104,97,92,103,101,104,105,96,109,97,94,91,96,91,101,91,105,94,99,100,102,89,109,103,108,114,83,121,109,94,90,103,84,95,106,105,102,103,106,113,106,94,97,95,101,101,95,96,110,97,107,98,99,110,95,106,101,100,90,91,91,98,89,91,88,108,92,102,102,103,97,101,98,81,98,99,100,88,102,115,91,93,100,99,84,104,99,92,80,101,89,82,88,109,91,88,94,86,95,97,91,99,97,98,101,102,87,96,94,100,80,103,92,104,93,98,86,113,90,101,87,91,82,94,100,104,91,106,106,107,98,83,95,97,92,101,91,94,113,102,92,101,94,103,102,104,97,106,92,100,98,130,96,103,108,96,103,99,82,103,95,98,99,92,94,111,99,108,110,100,114,108,88,98,101,95,90,96,115,90,92,95,87,91,94,108,87,109,111,84,108,109,108,99,86,112,97,92,103,99,86,95,88,110,79,94,86,102,99,99,98,95,83,97,90,85,94,89,115,100,100,112,98,92,117,87,89,106,97,97,96,110,99,94,104,102,89,99,87,105,99,99,99,96,104,103,99,91,93,102,101,100,105,88,95,100,96,95,81,104,102,106,94,87,94,87,89,89,97,103,98,89,93,97,94,94,101,101,101,94,106,103,108,102,87,108,103,93,94,94,99,97,87,100,100,77,95,94,88,106,99,103,94,85,80,93,100,95,91,103,96,111,95,100,102,96,102,80,95,92,96,100,100,96,87,104,97,104,98,97,101,102,108,94,92,114,112,89,102,109,92,99,100,103,97,101,108,87,94,88,92,90,116,99,99,101,76,103,84,110,95,96,99,92,78,104,107,94,91,65,98,95,105,105,94,111,95,103,109,101,100,96,106,109,90,91,100,98,82,92,92,99,92,98,99,81,78,91,90,111,113,95,98,103,101,101,100,94,95,105,92,98,100,95,94,97,95,97,91,98,90,100,103,95,97,104,97,93,101,94,93,91,86,94,95,94,92,99,91,103,84,97,99,104,99,91,98,95,110,108,105,105,103,96,96,101,98,93,96,99,89,88,98,103,117,95,98,114,95,96,84,92,94,88,80,103,100,93,103,102,97,114,104,93,93,94,106,97,93,93,103,98,101,100,118,95,89,107,96,104,94,93,100,99,94,84,88,85,101,102,103,80,95,110,75,87,101,98,104,97,95,108,92,93,91,100,103,104,99,96,103,99,110,91,104,104,99,101,104,102,107,93,100,91,94,89,85,91,78,97,105,97,97,103,90,96,104,98,85,104,93,95,90,101,92,91,80,102,108,90,88,111,80,98,114,95,86,84,92,95,110,103,91,97,93,88,98,108,104,87,84,95,95,88,95,99,99,97,101,90,103,93,99,89,94,96,96,94,92,94,100,91,98,92,94,98,111,95,105,101,98,108,101,110,93,97,94,96,98,102,102,87,110,104,97,102,96,105,101,86,101,100,87,107,109,100,95,100,94,103,109,101,93,105,99,103,105,109,105,90,104,101,96,97,101,94,90,102,95,94,108,94,107,85,108,107,112,106,96,100,100,97,94,91,104,94,106,94,98,95,98,102,92,95,95,108,100,99,109,92,92,97,103,105,95,91,91,111,92,93,95,76,91,105,101,103,103,96,113,103,104,87,104,95,96,95,98,89,99,96,102,96,96,103,100,109,103,91,99,108,91,99,103,100,93,101,100,99,102,124,90,87,89,97,92,109,100,89,86,100,79,85,105,100,105,95,95,91,91,118,99,98,91,97,94,106,100,91,80,97,101,95,95,105,101,104,92,83,97,90,97,103,75,101,108,104,102,91,103,94,95,103,108,104,103,78,114,91,120,108,93,90,89,105,102,102,99,96,106,91,100,88,102,100,97,96,101,95,95,94,92,91,91,108,99,91,104,95,86,95,85,104,86,106,100,90,100,95,97,96,101,104,92,92,99,103,101,90,105,99,97,102,118,100,91,96,114,103,110,102,96,108,98,116,90,92,101,96,92,96,97,100,97,103,101,96,96,76,103,100,86,105,81,116,104,101,101,90,88,91,101,93,96,104,93,96,90,96,112,93,102,114,104,101,106,101,102,90,107,117,94,101,88,105,96,106,98,85,88,91,90,88,90,104,74,105,101,87,101,101,89,89,98,100,86,101,95,102,106,109,113,106,107,90,100,91,103,89,85,97,108,102,100,98,99,105,110,103,106,93,105,91,100,102,97,87,79,96,101,89,102,98,100,95,100,104,117,91,105,94,81,91,92,111,97,102,93,104,82,108,85,99,103,109,105,100,107,103,112,100,102,96,98,91,95,101,94,106,98,96,81,93,91,91,109,96,97,103,95,91,100,89,94,96,103,97,136,104,110,95,94,96,105,99,98,90,100,102,109,106,97,105,106,117,104,103,93,87,104,84,98,96,94,89,107,106,94,96,95,118,86,97,99,96,105,91,99,74,99,83,104,96,98,103,96,106,100,104,91,108,109,105,104,112,93,94,112,101,100,85,97,99,100,83,98,99,100,95,119,98,100,100,85,96,100,96,95,96,95,94,108,100,84,95,108,108,105,97,112,112,101,112,102,92,97,107,117,94,90,97,88,99,96,94,103,110,99,107,111,98,106,97,94,102,91,92,83,110,107,93,95,103,103,95,92,83,102,101,95,100,105,99,116,89,87,81,101,108,94,106,98,101,112,109,99,91,106,84,104,102,103,100,98,94,103,111,97,103,89,95,94,93,89,89,101,93,109,101,108,92,104,112,105,109,105,99,89,108,95,99,95,92,91,102,106,88,95,88,109,96,93,105,93,87,98,109,91,102,100,100,86,95,101,90,88,104,88,97,94,74,89,97,90,97,101,101,105,96,94,104,96,115,102,83,105,95,95,93,85,98,106,102,82,111,102,99,96,95,98,98,93,102,102,93,95,92,97,100,87,109,104,110,102,94,107,103,102,100,106,103,104,105,101,96,100,101,102,85,91,91,102,102,96,95,102,98,88,93,108,91,96,86,75,96,89,93,90,93,85,88,108,102,99,111,81,94,89,87,92,100,105,101,92,98,100,97,94,89,116,109,94,119,102,110,111,108,103,101,102,97,101,97,121,99,91,107,101,100,98,84,109,77,93,93,105,113,96,100,93,102,97,91,83,99,92,101,105,109,99,102,92,76,97,98,110,93,91,104,125,97,99,98,101,92,103,114,105,105,92,95,103,104,116,105,93,102,98,101,100,113,98,109,94,101,91,110,87,91,96,98,97,107,102,99,90,97,91,93,95,85,93,111,99,102,97,97,87,106,96,75,92,84,103,99,94,105,96,89,94,108,96,106,94,103,76,85,106,97,100,88,91,73,99,106,100,105,105,93,77,98,97,95,100,106,102,107,100,86,102,112,105,82,94,88,101,117,105,91,101,113,90,101,102,102,91,88,105,86,103,98,104,93,80,91,100,97,101,108,74,96,103,139,95,93,103,98,101,100,67,84,92,101,93,91,93,102,113,95,86,95,95,103,100,88,103,76,95,99,109,115,101,94,90,108,99,94,91,100,100,113,99,106,110,98,107,96,119,98,90,82,87,103,107,87,109,89,100,103,102,99,92,105,108,110,91,87,96,97,110,100,105,104,105,97,108,107,91,103,99,95,118,87,106,99,105,101,90,120,109,92,87,95,93,108,103,99,94,108,84,100,97,92,97,100,96,102,99,95,102,111,90,92,123,102,85,96,91,104,103,94,99,84,98,107,98,103,107,100,96,87,104,93,105,98,117,90,88,103,97,97,102,98,98,95,87,113,108,103,95,97,88,102,101,98,100,104,99,96,111,87,91,94,104,101,90,88,95,92,97,102,101,94,103,91,96,101,112,97,90,103,112,101,101,96,104,94,97,93,94,105,113,101,104,91,87,103,108,104,100,88,114,96,100,92,94,109,88,74,100,91,99,87,104,99,109,87,98,99,89,97,100,102,94,100,97,97,94,103,101,99,102,100,109,112,100,99,85,101,104,93,113,106,112,98,106,83,91,95,123,94,99,102,93,80,97,102,101,99,102,98,88,105,107,66,105,94,91,92,107,97,108,100,82,94,94,101,91,93,82,97,92,100,100,97,90,105,87,86,104,96,95,92,103,107,90,85,98,83,100,101,90,110,92,89,108,110,102,97,90,92,106,94,94,93,97,94,102,95,94,109,94,100,94,86,87,90,92,113,96,92,97,95,105,105,110,99,97,110,100,92,126,86,94,89,86,93,104,94,96,90,99,107,102,100,99,89,95,98,130,101,99,92,91,92,93,96,100,104,98,98,99,101,95,98,100,102,107,90,78,110,83,92,92,84,105,103,101,88,100,97,111,100,89,91,104,100,91,115,99,97,112,104,102,66,101,93,98,102,108,103,96,93,108,106,100,102,96,93,108,74,95,106,79,97,92,104,91,104,93,90,111,108,97,105,101,104,101,93,100,99,99,90,94,97,94,91,96,103,98,84,96,107,97,74,109,94,99,106,96,94,102,89,101,96,92,91,109,96,95,101,94,102,90,84,105,97,90,101,109,87,111,80,112,113,97,98,93,93,99,98,95,112,96,96,90,98,95,88,101,89,88,108, +731.08716,104,118,87,101,94,101,85,108,101,99,101,103,98,91,108,83,104,98,89,94,101,100,97,91,106,92,103,91,101,109,110,108,97,98,106,98,103,95,93,98,85,92,107,97,106,101,92,117,109,109,93,99,107,103,112,106,99,86,86,86,100,100,98,97,98,100,96,90,98,101,100,105,108,95,96,103,79,92,90,93,95,95,83,101,97,125,100,110,107,80,96,111,100,105,101,95,83,101,82,88,110,107,93,93,91,93,99,97,91,111,93,104,97,100,110,84,80,95,102,94,97,86,95,86,105,106,113,91,106,92,90,101,102,94,98,97,101,89,92,104,92,95,92,85,117,114,104,103,95,87,98,101,101,87,94,94,89,97,98,92,103,99,118,85,116,87,92,88,98,103,82,104,117,93,100,99,102,102,89,101,110,96,89,104,102,93,90,108,98,113,100,95,91,110,103,104,98,96,93,94,92,98,84,103,93,107,96,87,94,103,83,102,99,98,102,93,87,93,104,89,98,98,90,96,99,99,87,92,93,118,102,98,94,134,101,96,99,102,99,86,90,103,98,98,103,99,85,92,88,92,99,81,101,99,97,105,96,94,98,72,91,101,90,96,94,95,101,85,95,90,101,87,129,90,95,135,96,102,89,96,92,96,94,108,97,83,83,97,105,116,86,104,94,95,114,99,91,95,91,104,109,98,95,100,94,105,103,91,92,88,88,99,101,96,99,90,97,97,88,100,102,96,94,105,102,102,88,95,111,101,102,86,97,87,90,99,97,86,98,92,105,93,90,91,88,98,93,102,75,101,99,84,91,99,104,101,95,108,99,92,94,110,105,85,86,83,99,105,93,104,98,96,87,107,115,88,89,93,106,103,83,108,82,98,90,97,93,89,102,99,95,94,101,102,90,96,105,94,101,93,98,94,100,91,94,82,85,103,95,105,95,75,92,94,104,94,93,96,98,105,89,97,98,104,91,93,97,97,88,102,99,105,95,93,89,85,100,109,95,99,92,96,94,91,96,100,82,106,95,98,89,104,91,99,100,93,105,90,113,91,106,101,98,103,102,93,61,95,80,97,106,96,97,106,93,98,94,105,96,98,85,94,110,86,102,84,89,103,81,91,88,96,95,91,83,90,90,103,98,92,100,68,88,102,103,91,88,97,90,96,95,99,95,98,106,95,92,99,105,72,110,102,103,94,94,90,108,89,95,92,80,97,113,97,94,104,110,99,83,100,101,100,92,117,100,90,105,120,97,97,98,101,105,94,88,101,105,94,106,91,88,101,91,96,82,78,95,99,85,89,98,97,94,109,91,108,94,89,109,95,106,92,102,102,97,94,97,94,87,93,117,94,86,85,118,93,98,87,111,98,95,87,111,105,91,102,89,92,106,112,100,97,107,96,91,106,81,101,95,97,98,96,98,95,90,96,98,96,97,97,100,97,100,121,104,100,86,95,99,82,95,102,105,97,95,92,108,80,95,102,87,93,104,99,100,111,99,94,94,95,99,98,95,96,89,91,110,84,109,94,97,97,96,117,103,98,92,94,98,97,88,98,101,93,102,67,99,100,98,88,101,100,101,105,103,98,97,104,114,87,93,95,96,89,100,88,99,88,98,87,113,101,94,104,93,94,100,99,98,104,105,105,92,92,91,96,101,95,84,102,88,99,104,94,87,103,111,94,108,96,103,82,92,93,108,100,98,96,93,90,93,98,99,88,90,98,97,99,74,82,94,96,98,93,98,96,105,98,106,88,97,97,117,91,93,93,107,99,96,105,95,97,120,99,95,103,113,92,91,91,101,90,92,101,104,94,96,95,112,105,91,97,90,101,101,98,97,97,95,95,93,91,100,94,116,108,110,83,107,98,100,113,106,92,92,99,99,108,110,101,104,105,91,97,94,88,95,99,91,96,106,90,101,93,92,89,107,93,82,99,102,79,96,127,95,124,90,108,95,94,86,98,97,105,97,101,76,101,99,96,100,102,99,100,85,92,96,90,84,100,96,89,108,97,102,108,79,104,95,95,84,96,86,93,103,91,100,97,105,74,109,92,92,87,93,103,94,99,85,113,110,102,102,84,94,99,103,103,100,106,86,100,107,101,98,103,87,102,96,87,88,100,105,95,104,96,103,103,91,109,98,96,93,95,97,98,120,107,93,108,92,90,89,94,97,103,92,96,101,107,92,103,96,98,97,103,94,109,95,110,93,96,105,96,93,83,115,86,100,99,98,96,102,98,110,88,104,87,112,94,71,98,99,99,104,96,98,89,100,102,72,98,85,83,96,98,97,107,90,103,97,92,70,84,122,100,95,113,79,99,92,105,98,68,109,85,106,95,90,96,86,105,98,96,110,106,99,105,94,87,104,93,83,92,92,95,87,101,107,95,109,106,96,94,102,92,97,94,99,100,92,93,99,93,104,93,103,92,99,88,100,96,116,93,87,99,101,90,106,108,100,99,89,70,91,86,98,94,99,97,102,109,105,95,89,92,91,101,95,96,123,102,109,97,91,101,91,95,96,99,97,123,97,87,99,91,91,104,90,108,93,90,81,90,98,104,95,91,92,100,101,102,94,73,102,103,92,96,91,82,98,91,97,102,84,89,102,91,95,105,100,102,89,105,106,96,96,96,93,95,103,87,95,93,81,95,85,84,94,92,91,101,102,90,114,88,100,105,98,99,102,95,69,98,102,102,102,104,99,104,86,94,99,102,96,102,101,100,108,98,85,102,107,99,80,100,94,102,90,92,107,93,94,102,103,97,97,95,107,96,94,84,84,81,94,95,96,100,97,87,105,108,104,98,96,87,98,107,104,86,97,98,94,95,102,94,95,91,104,113,100,104,107,100,94,89,99,107,101,105,109,109,98,107,117,89,89,101,104,109,105,99,105,105,96,87,101,106,105,107,95,107,100,92,102,107,90,110,98,102,98,103,101,91,95,113,84,100,106,98,95,113,101,91,98,101,97,63,87,95,95,87,99,92,104,97,92,106,98,92,100,107,97,109,112,99,109,96,102,97,96,86,75,104,106,113,97,92,89,94,94,96,104,95,108,96,94,103,100,100,89,91,109,105,104,99,87,98,101,98,112,89,90,89,98,92,87,95,110,91,83,96,96,110,102,87,96,103,97,97,95,91,102,97,103,112,105,97,110,91,102,98,119,95,85,105,103,97,99,87,98,87,90,88,86,87,97,101,111,107,100,108,76,98,95,68,123,112,92,91,102,99,83,93,94,94,103,107,94,86,101,96,97,92,94,91,92,95,92,93,98,94,98,89,98,101,90,100,101,84,84,80,102,100,97,103,106,96,114,107,103,92,97,95,83,101,99,87,88,94,96,109,97,98,87,102,98,96,97,116,102,108,87,100,72,97,96,85,113,91,104,107,90,107,98,98,94,102,96,98,111,97,94,99,88,88,97,104,94,106,95,94,106,95,93,118,106,89,93,94,89,106,95,93,101,103,103,109,109,105,101,96,96,96,90,101,96,105,105,103,103,94,92,100,96,90,113,97,94,91,92,104,95,102,117,101,97,96,91,100,109,97,108,95,95,95,83,98,93,83,98,92,106,91,94,113,86,91,94,61,115,91,102,103,107,104,100,112,93,97,92,102,96,105,97,91,76,96,94,84,92,102,97,105,99,90,103,101,105,93,88,98,90,94,89,99,109,89,108,94,94,105,101,101,87,93,94,98,96,85,92,89,97,96,111,101,104,102,96,93,100,91,98,103,106,89,76,91,106,85,107,115,93,109,83,105,106,117,109,99,104,89,97,103,96,94,106,90,109,113,99,98,89,94,103,103,95,65,92,96,100,101,106,95,97,96,98,93,90,96,95,98,84,102,92,90,108,92,71,83,106,80,90,77,104,86,102,94,104,102,98,90,97,88,128,92,94,95,92,104,96,107,98,90,93,92,109,111,95,99,97,91,99,90,94,103,96,83,98,112,96,94,94,97,102,94,99,101,92,92,111,120,97,67,91,91,104,101,82,105,105,103,86,100,92,94,76,98,98,101,103,96,88,112,100,91,112,97,92,108,93,91,86,91,98,102,101,95,105,103,93,94,99,105,103,91,101,107,92,94,109,97,102,101,95,100,98,112,97,100,101,96,95,99,120,105,96,98,99,100,87,89,91,100,107,86,98,102,91,104,104,106,108,94,89,103,102,88,87,96,91,105,99,105,95,94,88,101,106,101,107,102,90,84,103,90,94,104,117,103,108,92,91,86,94,94,99,94,101,87,103,88,97,101,107,103,97,64,100,94,100,88,96,97,96,99,93,92,87,107,100,106,92,105,109,98,101,102,90,96,97,104,98,98,93,98,98,93,91,98,96,69,106,100,104,86,106,99,104,90,83,94,96,92,99,96,104,92,94,92,91,94,106,89,95,106,93,101,91,96,85,82,87,82,94,91,100,92,96,89,105,91,92,97,104,125,96,91,94,111,90,113,99,100,100,91,90,93,97,97,102,103,98,86,101,88,89,98,87,105,94,98,91,104,110,103,84,105,98,97,93,81,92,111,74,111,99,97,96,101,100,97,99,99,107,90,101,92,92,106,91,102,102,102,113,103,100,101,90,86,84,96,95,101,110,110,112,88,92,95,95,81,94,100,101,119,95,102,101,102,80,98,97,103,100,92,109,91,102,93,94,92,95,104,88,100,90,88,102,87,85,89,99,85,93,85,86,100,102,102,94,112,100,105,87,80,95,101,102,106,85,97,100,111,71,89,101,75,104,94,102,99,95,105,89,103,83,96,96,81,95,97,110,117,84,93,96,103,98,76,93,94,101,99,100,100,97,113,97,110,87,107,76,104,90,104,103,99,89,107,101,112,103,97,110,94,94,102,93,98,91,86,87,94,112,112,107,103,101,113,112,109,102,103,90,99,97,103,106,93, +731.22858,119,93,103,60,86,99,89,95,103,107,106,103,85,101,106,96,116,97,104,92,87,105,106,108,98,101,108,99,86,99,93,103,129,96,96,100,105,94,92,90,91,105,107,90,101,99,93,103,104,77,103,93,104,93,88,95,93,91,96,100,97,90,99,98,112,101,91,94,89,87,91,86,88,88,108,108,104,96,109,98,106,104,95,95,97,85,96,82,99,113,93,107,100,97,109,98,99,90,94,98,94,99,94,110,95,108,84,79,105,94,107,92,91,98,78,71,109,104,92,85,101,90,102,107,107,99,89,88,103,90,94,106,103,109,92,106,90,105,98,80,105,97,77,102,99,81,89,92,101,96,95,96,112,93,101,102,113,95,102,93,103,101,81,73,96,108,100,94,102,112,91,100,102,97,102,100,102,96,105,97,104,107,111,96,98,98,86,89,113,82,91,117,92,94,99,87,106,95,112,106,105,91,105,98,97,95,114,97,100,100,95,108,103,99,99,102,99,92,96,87,99,107,97,93,96,98,102,96,103,110,99,100,99,95,98,106,97,125,85,96,93,118,100,102,97,94,95,105,93,91,83,94,91,93,95,92,102,101,88,100,91,103,95,103,104,103,101,92,95,92,100,99,98,101,104,99,109,110,98,93,94,87,94,97,103,93,98,86,94,90,97,111,111,114,104,109,101,100,88,102,92,111,99,108,96,106,95,110,110,101,95,105,99,95,99,97,93,95,97,107,104,91,90,102,95,97,96,90,98,95,101,99,103,98,104,94,100,100,106,100,102,103,92,113,98,95,97,96,103,88,83,104,97,76,90,100,88,99,98,103,86,91,97,88,85,105,91,100,102,93,107,110,98,97,100,91,92,96,96,101,98,101,93,100,103,103,104,101,105,98,99,87,100,105,93,96,100,107,85,97,106,96,102,92,105,96,92,81,99,95,96,92,106,102,100,100,96,90,98,92,98,94,81,105,88,88,93,103,91,101,97,106,99,101,109,117,94,105,97,101,106,109,107,103,91,95,87,108,90,100,109,91,97,102,98,94,104,101,98,102,102,109,104,102,96,102,95,96,101,101,91,98,106,109,102,97,98,104,83,91,94,100,100,96,101,100,101,94,89,99,97,95,96,100,90,72,101,105,91,109,99,91,94,103,99,95,92,95,93,96,100,101,93,96,96,100,97,91,102,91,87,111,117,67,115,102,98,102,87,99,91,121,104,95,98,111,106,108,92,100,95,99,69,92,99,94,93,104,98,101,93,93,97,96,100,96,96,98,94,90,88,100,96,95,96,96,107,95,99,96,106,101,92,109,94,107,96,104,102,95,92,93,103,96,101,99,97,105,95,88,104,105,89,101,95,88,95,116,100,105,99,112,99,100,93,102,87,95,97,91,82,102,99,107,98,95,93,79,120,97,97,76,92,97,102,97,96,97,97,95,108,106,93,105,96,92,93,101,111,96,106,120,99,102,99,88,93,102,105,103,96,105,101,108,100,110,106,100,111,98,94,97,100,105,92,86,92,103,112,92,109,100,91,98,92,104,101,90,104,100,95,104,109,92,92,100,101,97,100,104,104,104,89,102,106,102,96,91,101,97,91,96,93,97,117,106,94,90,95,88,94,95,94,103,99,85,95,76,102,89,108,95,108,97,101,101,110,85,93,103,71,94,61,96,89,92,120,98,107,101,96,97,86,98,103,91,97,102,98,95,91,101,115,94,99,95,87,99,106,99,92,95,119,104,90,103,93,114,94,88,95,90,104,105,94,107,96,107,98,94,96,100,104,102,84,98,93,95,112,103,103,93,103,100,100,100,88,95,91,103,86,92,108,95,93,110,92,113,106,95,108,104,91,96,117,89,105,98,101,101,86,88,103,94,102,97,103,104,106,103,97,109,105,102,93,108,96,94,98,92,88,100,109,92,75,96,99,88,93,93,91,92,96,101,96,79,95,100,106,97,105,96,95,95,95,111,100,106,97,97,101,103,94,108,97,87,99,97,88,100,100,94,97,107,105,115,97,89,91,104,101,101,93,100,114,91,90,94,89,92,96,95,100,108,91,96,100,109,105,103,107,96,90,94,93,97,85,96,92,87,119,100,84,102,103,104,95,86,99,100,95,104,94,91,90,92,96,79,101,104,91,93,97,99,69,99,101,107,79,101,93,92,99,98,109,110,95,91,102,102,102,98,112,101,91,100,95,91,90,96,93,97,104,87,98,113,118,92,95,90,102,94,93,107,91,104,96,95,93,95,83,91,88,89,101,106,104,96,96,98,114,101,97,90,102,96,93,87,101,101,93,91,126,105,96,93,98,90,96,94,103,112,92,101,102,103,104,87,102,93,107,101,101,101,104,94,98,105,96,104,99,86,100,109,90,102,93,100,91,97,98,92,90,93,110,94,84,108,109,107,91,99,91,97,90,92,98,95,95,97,106,109,90,99,83,68,100,96,93,117,95,98,98,96,95,102,98,115,104,91,104,98,91,80,97,91,96,77,92,103,98,98,92,103,91,93,79,91,108,102,90,90,96,103,95,102,99,96,88,84,94,88,101,95,79,106,89,97,91,96,109,96,103,75,116,98,97,100,92,89,100,100,93,90,73,97,96,79,106,94,113,112,87,112,106,117,102,99,113,100,99,87,89,94,93,97,80,96,99,99,98,106,108,88,100,98,102,107,102,105,108,88,101,106,113,110,100,102,103,99,90,101,95,97,103,107,94,94,102,94,98,95,101,102,98,101,89,96,90,92,92,94,105,96,101,100,100,110,106,105,101,96,106,90,91,107,84,99,81,96,79,96,92,94,103,96,105,94,99,96,91,102,101,105,103,97,102,106,95,94,91,106,109,105,96,94,95,98,95,99,101,92,94,98,104,96,111,106,115,114,98,105,88,104,98,94,94,81,97,104,97,98,89,90,85,100,100,102,107,97,98,91,96,83,91,86,92,91,100,84,101,111,101,103,94,99,101,98,99,89,90,84,87,87,99,110,97,98,106,88,96,100,92,115,98,109,102,66,100,99,79,98,93,105,91,88,99,92,99,103,103,100,101,100,97,100,106,79,99,110,89,97,109,103,108,95,95,84,107,100,95,103,91,105,97,105,101,106,88,100,96,95,93,88,99,90,109,106,100,91,93,96,105,90,102,76,91,96,95,111,90,84,89,111,99,94,106,91,98,113,102,95,92,100,103,95,91,101,101,95,93,104,103,88,98,100,98,87,91,95,99,115,95,102,83,102,95,124,107,102,101,98,105,104,95,79,94,108,87,107,84,98,98,108,94,109,96,104,103,101,98,80,90,102,90,111,87,108,90,97,106,102,92,98,95,91,106,90,125,90,91,108,86,94,92,114,109,95,111,92,101,95,86,97,101,110,73,88,106,93,105,110,97,107,113,88,98,99,109,84,102,97,88,92,81,99,98,105,98,98,92,100,97,104,101,106,95,98,111,99,95,99,98,85,93,97,100,99,98,104,103,113,106,92,107,102,110,100,105,94,104,94,112,99,105,101,98,101,100,94,99,81,92,87,101,99,106,105,98,109,97,108,99,98,102,102,59,94,97,93,114,111,93,96,96,103,81,104,111,78,88,83,99,103,88,102,97,90,101,121,93,73,101,109,97,91,109,91,114,98,89,115,111,96,92,104,94,97,107,105,100,102,99,101,111,93,95,98,100,96,94,99,94,96,98,100,90,110,97,92,106,97,108,102,105,111,108,98,106,107,90,87,95,128,92,87,105,102,105,100,101,100,90,89,101,98,96,91,115,102,103,100,105,93,107,102,109,93,102,100,103,108,88,90,105,100,101,100,103,85,90,108,99,97,88,107,94,90,101,87,110,91,92,98,88,101,98,66,107,99,95,87,96,99,109,109,93,101,99,89,89,100,93,91,98,112,99,100,93,85,99,103,100,96,98,99,103,102,96,111,96,92,99,89,85,104,92,89,93,106,99,92,90,103,101,100,113,93,92,99,91,90,97,107,91,91,109,84,87,95,103,106,89,90,107,96,99,98,89,105,127,94,103,94,95,99,97,91,95,94,106,105,94,86,104,95,106,99,114,94,100,101,93,91,86,105,99,107,113,91,97,115,86,113,94,96,99,96,102,99,103,110,94,87,105,117,98,100,91,98,102,89,109,101,103,101,93,98,92,91,100,111,109,101,122,99,106,101,103,100,109,95,98,97,100,99,86,97,100,88,106,110,88,81,92,94,94,105,100,98,101,104,110,100,104,108,98,99,97,90,91,93,120,99,102,104,99,92,91,83,105,94,103,91,102,97,107,96,95,94,101,95,94,96,83,96,106,99,94,83,95,94,94,100,110,103,99,87,89,91,91,85,100,98,84,80,109,113,105,97,94,103,105,105,88,93,109,92,99,95,96,89,97,85,111,95,101,104,97,99,101,81,85,86,91,92,82,83,112,93,107,104,94,103,101,91,87,88,97,92,97,107,92,94,110,96,109,94,95,87,106,95,107,102,109,81,94,115,135,102,106,109,91,93,105,113,95,105,97,81,104,101,92,100,99,102,79,129,104,94,87,99,82,91,87,93,87,94,108,97,83,98,97,99,97,117,104,95,85,98,96,81,100,109,103,94,95,101,101,100,81,97,76,94,86,98,85,102,103,97,101,113,92,112,104,93,91,103,116,102,88,95,102,101,100,98,120,95,96,132,98,94,93,88,89,117,88,123,93,103,100,91,91,94,102,96,107,96,107,102,110,96,97,98,96,90,99,94,92,103,103,96,104,107,100,91,93,103,100,108,101,108,85,92,102,89,106,94,93,109,100,83,90,87,99,103,98,102,101,95,93,93,97,88,101,90,84,96,102,117,100,109,82,92,93,96,71,108,102,104,89,112,99,98,85,103,96,90,85,83,101,106,112,78,96,109,95,91,98,105, +731.37,105,108,108,85,108,96,101,97,79,108,124,90,83,95,92,87,94,96,110,111,97,102,100,120,84,109,110,95,103,92,90,96,96,104,108,79,112,98,95,105,111,102,96,100,104,111,100,104,104,101,96,105,115,96,86,93,77,96,107,96,99,94,98,103,115,95,95,98,101,99,95,101,94,95,92,102,92,95,95,109,109,91,103,125,101,117,104,100,95,97,105,86,100,95,91,103,109,101,99,84,86,99,99,98,101,102,93,99,103,106,97,102,106,98,100,107,87,100,118,98,92,106,85,112,100,89,79,90,104,105,101,100,93,84,90,108,97,99,104,84,100,99,103,88,92,96,103,91,86,101,94,92,91,93,87,92,90,98,108,104,98,110,103,102,96,92,98,96,100,98,112,94,100,98,106,101,95,101,100,109,89,100,99,99,95,96,99,105,98,96,91,92,108,95,106,94,106,100,82,114,104,72,104,104,94,100,95,96,102,102,87,88,101,112,83,94,102,93,86,93,105,97,96,95,102,97,103,96,92,95,106,103,100,103,104,109,97,95,100,105,108,115,104,102,98,106,81,100,110,105,93,95,88,99,91,103,94,97,99,108,93,111,99,97,101,108,108,102,98,99,94,100,115,106,97,107,97,97,100,84,105,107,94,97,94,115,93,91,100,98,109,106,106,101,97,95,110,109,97,106,84,107,75,115,97,108,98,101,109,109,121,100,91,109,103,109,96,96,104,97,91,100,98,100,97,78,90,83,104,117,96,90,102,86,96,83,95,106,98,108,86,100,98,99,100,91,112,108,104,93,98,95,103,89,104,95,102,106,103,100,102,98,95,98,98,86,99,110,95,98,110,96,102,102,100,90,109,111,76,103,100,97,101,97,89,78,98,101,92,106,117,90,88,100,95,102,86,99,99,101,102,84,103,104,93,90,91,105,101,71,93,80,104,96,117,103,114,101,92,98,94,98,94,90,94,102,93,108,103,97,104,86,102,100,101,99,103,102,97,100,101,101,99,96,102,96,84,86,96,93,95,101,104,102,96,74,97,88,87,102,124,102,108,108,104,92,104,107,97,93,95,119,115,74,99,96,95,103,111,132,106,94,95,100,87,97,102,91,98,96,105,97,109,86,97,89,90,94,113,96,101,98,90,99,105,115,91,108,82,83,108,86,86,95,116,102,105,86,104,105,109,98,95,106,107,92,106,101,106,120,98,104,98,92,91,100,95,98,102,99,113,95,97,90,89,106,98,99,97,99,94,104,95,93,93,92,102,93,95,88,97,95,91,100,92,96,97,85,91,98,86,113,96,103,88,100,95,98,91,94,109,98,101,94,87,95,101,94,89,98,86,96,95,95,100,98,91,112,98,93,101,97,99,99,101,91,90,92,99,104,94,102,136,104,117,105,94,96,95,86,94,106,83,100,104,93,93,92,97,109,105,102,101,105,103,94,103,98,101,92,96,97,108,70,109,88,118,98,112,108,92,72,94,98,92,100,98,110,96,102,111,103,85,97,94,102,101,101,95,94,103,114,87,91,96,92,107,91,99,93,103,89,103,91,101,83,104,105,93,92,105,96,94,115,80,109,83,87,87,96,101,99,89,111,102,94,102,92,87,94,103,90,96,99,91,84,108,103,111,102,98,72,95,108,99,93,101,95,95,105,91,84,93,105,103,88,92,91,103,97,102,93,104,95,105,93,96,108,94,101,102,84,85,82,119,99,96,96,101,99,99,100,74,97,90,95,92,98,98,84,105,103,105,97,105,100,101,95,97,88,106,87,97,105,99,105,100,107,110,95,105,106,102,86,99,106,96,86,98,113,97,100,97,101,89,106,102,109,100,93,113,95,116,97,110,102,81,86,94,95,99,79,97,107,88,109,111,91,104,99,100,99,95,102,98,117,104,101,111,106,92,107,98,94,87,98,94,82,90,98,102,99,94,91,103,94,105,89,98,95,111,89,102,89,94,108,94,98,91,93,82,101,94,89,95,109,104,97,105,101,105,103,102,90,102,94,92,105,92,113,105,120,90,100,111,97,105,95,106,91,98,103,104,100,83,96,96,105,100,104,95,101,114,106,100,104,102,100,102,105,99,103,95,106,101,104,107,110,105,99,92,104,93,102,109,102,97,95,110,99,107,116,111,88,96,95,100,98,101,98,100,93,97,93,106,108,106,107,92,93,97,101,104,100,109,96,92,98,110,101,99,102,94,95,100,87,88,95,93,87,98,103,105,82,99,106,94,93,119,95,98,90,104,82,91,86,94,87,85,96,109,96,76,117,89,95,99,92,93,94,90,111,97,90,91,103,104,99,100,97,101,104,101,103,113,90,70,98,102,105,118,102,98,99,97,86,93,109,99,94,92,95,100,93,95,82,122,108,92,96,98,95,105,105,95,93,92,93,96,94,101,117,114,104,89,107,100,104,97,91,107,96,103,108,88,95,94,95,82,88,97,84,86,99,112,114,98,97,106,99,83,94,88,98,123,100,101,98,109,100,120,87,94,89,98,87,103,91,100,94,100,106,95,80,94,93,109,98,88,113,87,94,102,98,107,92,87,113,104,105,97,104,107,94,94,101,92,94,91,98,104,98,106,106,97,96,95,92,104,101,103,110,104,99,98,95,92,100,96,105,106,88,102,89,100,97,94,117,98,105,94,100,100,84,95,94,97,109,85,88,102,93,92,96,94,108,106,100,104,116,92,104,119,103,96,107,83,102,91,100,85,99,99,109,99,105,91,96,95,100,97,96,107,104,106,107,95,106,108,99,112,99,100,109,96,100,104,106,99,97,103,111,106,99,90,117,95,95,101,110,98,99,100,98,103,99,109,100,98,103,97,103,97,107,128,92,100,110,97,105,99,100,100,90,106,85,97,70,96,102,107,105,108,108,89,100,108,96,111,110,96,98,107,112,106,102,94,104,103,94,88,107,113,87,94,106,111,88,104,89,100,87,104,103,80,94,88,110,93,98,95,104,105,85,101,101,96,105,101,96,102,101,101,96,101,107,95,84,97,98,91,101,87,76,98,102,79,105,99,103,95,119,102,91,97,105,83,105,100,98,95,107,102,102,105,86,105,97,104,106,96,102,99,108,95,106,96,90,75,94,113,107,97,101,93,98,101,93,100,104,102,96,104,91,94,97,98,92,95,99,97,101,94,101,82,105,69,102,94,102,101,101,96,89,94,95,102,91,101,110,93,100,97,99,85,96,95,96,88,75,104,97,81,96,94,94,102,98,85,96,113,117,104,111,113,98,109,116,93,101,99,103,106,104,94,96,92,104,105,97,98,88,110,94,98,98,110,87,99,77,99,85,105,82,106,95,86,107,103,96,91,105,99,106,90,98,91,108,105,106,100,101,102,91,104,105,103,91,107,100,102,99,91,101,106,90,98,109,98,89,101,107,106,100,104,122,117,96,98,107,96,87,92,100,93,104,96,118,96,109,105,95,91,98,91,97,97,93,110,100,96,106,109,87,104,121,107,103,101,95,100,108,93,102,101,100,101,95,94,91,94,81,100,116,97,115,94,112,109,116,78,114,93,101,111,114,96,97,100,140,100,93,101,96,97,96,93,101,100,102,91,96,98,105,95,95,105,95,97,101,95,109,100,108,101,83,97,100,103,115,102,109,96,103,71,100,103,94,101,103,96,105,118,109,106,93,104,99,95,104,119,101,104,112,99,90,88,99,94,101,108,89,109,109,102,97,113,119,98,98,107,97,96,99,107,96,115,97,117,106,122,105,95,101,96,101,110,110,104,99,105,96,105,96,98,98,94,92,92,126,97,97,95,72,73,107,103,95,98,111,111,102,101,96,99,99,106,102,108,96,108,112,98,96,101,105,98,96,103,103,102,111,105,107,103,95,100,102,93,98,104,94,98,95,99,99,102,96,98,109,101,103,97,96,91,86,99,99,102,103,87,93,82,98,109,96,100,99,99,103,106,95,95,109,79,102,100,104,102,93,106,92,111,116,97,95,96,91,104,98,108,90,95,106,106,78,90,109,100,94,99,101,95,104,109,99,95,88,106,101,96,111,93,94,98,113,93,92,97,106,97,98,110,99,98,99,101,112,92,103,100,94,100,97,103,104,94,109,98,112,117,90,102,103,98,93,98,109,106,91,109,98,106,101,93,105,114,103,106,101,94,90,95,89,98,100,98,94,100,91,106,105,106,108,91,104,107,106,99,99,102,93,119,105,101,95,77,94,106,99,94,91,92,111,89,104,102,95,89,83,97,108,115,93,100,89,87,96,98,106,101,96,105,61,104,100,101,91,97,101,107,106,81,94,110,99,96,97,103,97,115,95,108,94,109,83,107,95,82,104,94,97,104,92,101,97,100,109,105,104,81,92,110,98,104,102,107,95,104,101,98,113,105,101,91,99,104,103,94,84,91,90,103,106,87,103,85,100,116,95,109,108,110,104,106,99,99,97,107,101,102,111,105,101,107,107,106,84,110,81,120,99,92,101,105,89,109,101,88,97,99,112,95,101,98,113,101,98,96,92,109,100,110,94,106,92,105,115,87,111,117,116,83,107,95,104,96,104,115,99,90,105,93,97,107,99,107,101,92,101,93,106,98,92,95,88,105,97,115,100,101,101,68,99,109,95,101,101,104,100,108,103,106,96,109,99,100,100,98,99,114,96,104,111,92,91,93,101,104,108,93,95,101,106,102,102,95,102,107,100,99,102,103,104,103,103,92,93,93,100,101,96,90,108,95,91,107,103,107,96,118,102,96,97,99,98,99,102,94,103,104,97,100,106,79,113,106,104,103,98,96,76,99,112,100,95,87,99,120,99,109,84,84,98,111,106,89,102,99,97,100,107,103,88,93,106,93,100,105,83,61,96,86,98,105,87,104,111,92,73,108,104,109,90,112,106,93,109,111,97, +731.51135,121,107,110,125,95,83,102,101,107,108,91,95,103,54,98,97,93,106,113,110,103,89,105,105,69,102,86,79,94,105,90,112,85,101,113,96,106,90,75,104,100,93,96,104,95,109,105,99,90,114,91,94,100,104,92,107,107,107,101,95,103,109,103,102,91,111,97,99,90,97,104,100,90,119,99,107,105,96,105,90,97,99,103,103,102,92,94,89,95,98,91,99,71,103,117,99,108,112,105,89,88,100,110,100,86,108,90,97,95,98,96,95,102,87,100,98,102,70,103,100,102,96,112,95,93,99,96,96,110,112,109,104,108,105,94,107,103,90,89,92,98,105,89,105,109,102,105,84,90,95,106,100,106,93,93,97,97,67,95,91,96,98,97,95,106,93,109,83,104,105,102,95,93,101,101,103,102,95,102,96,107,96,103,98,98,104,99,90,98,102,76,96,99,98,99,104,100,101,92,105,95,97,100,110,101,90,101,127,109,95,101,86,99,101,103,92,101,97,91,105,95,94,96,106,102,104,97,104,104,106,94,105,100,99,102,107,106,109,94,95,96,101,98,107,97,97,112,97,107,104,100,89,97,107,98,97,101,96,100,105,93,100,96,102,97,98,97,92,110,93,101,102,93,86,82,91,102,102,100,87,98,96,67,94,99,111,103,93,98,110,96,107,102,97,103,85,92,95,96,87,98,103,105,109,78,105,97,105,97,100,96,109,94,99,111,98,99,98,105,100,106,89,91,96,96,104,116,96,102,104,94,95,110,106,100,110,101,95,101,86,97,103,88,97,100,104,99,104,98,105,90,94,99,102,97,101,117,122,90,107,100,97,108,92,96,98,102,95,104,108,99,99,102,91,106,103,112,106,105,105,93,106,91,95,93,98,96,101,99,93,112,92,92,100,98,111,95,70,100,96,137,130,103,94,91,97,95,97,105,100,96,89,105,96,95,102,95,102,104,108,95,97,96,64,94,87,109,103,92,107,98,101,107,94,100,97,88,95,100,104,98,104,97,101,88,97,106,63,101,97,77,109,93,105,98,94,104,100,87,96,90,108,96,97,92,102,103,105,105,97,113,113,89,100,103,95,96,103,101,101,103,94,100,95,103,99,100,111,108,99,90,100,100,103,86,97,96,91,91,104,100,102,100,100,110,111,85,109,102,112,101,94,95,103,85,105,99,100,95,96,94,97,104,107,71,98,102,107,76,77,102,89,100,106,101,101,90,104,83,96,105,104,91,100,107,100,97,96,96,110,87,123,97,95,92,101,85,84,97,108,101,100,102,104,108,95,91,103,88,99,97,96,109,97,100,101,106,101,98,103,112,96,76,103,101,90,91,103,96,99,109,104,110,70,108,96,93,100,95,109,104,109,103,94,103,91,104,103,92,95,108,94,93,120,104,102,98,86,109,90,99,102,106,98,108,110,94,99,101,109,93,95,66,108,88,95,93,92,100,90,87,95,102,98,98,104,102,97,91,106,108,100,107,102,87,95,106,106,100,99,105,100,102,83,74,95,101,97,97,95,117,96,119,101,108,106,83,99,93,110,101,101,105,87,98,102,88,96,98,103,108,89,96,107,98,93,91,93,96,94,105,109,105,98,88,100,102,98,83,90,108,109,100,97,91,97,99,101,102,95,102,86,86,98,125,100,99,110,97,100,107,107,99,102,85,101,90,107,106,99,93,91,109,109,100,94,105,102,98,94,110,105,96,94,119,103,98,104,100,94,97,100,90,101,105,94,89,97,110,110,105,97,99,93,87,97,104,101,94,93,90,108,104,112,95,96,105,101,95,101,91,98,92,128,96,102,95,108,105,106,100,100,90,99,86,94,104,103,100,94,108,98,128,97,92,104,116,100,104,102,104,103,97,101,93,102,102,105,101,100,101,98,105,105,83,95,97,98,97,102,93,100,102,97,83,90,106,91,98,92,99,106,93,123,92,94,90,88,93,110,102,119,74,103,102,109,91,117,106,104,99,96,95,100,99,105,94,91,99,94,110,108,109,96,102,103,100,100,103,97,99,106,107,100,108,96,111,97,90,108,103,97,108,95,111,131,90,103,95,98,112,104,99,94,117,95,97,100,105,95,91,98,112,101,100,100,83,103,101,105,102,99,108,99,92,95,92,107,109,100,99,113,94,110,97,94,100,115,99,106,90,82,99,113,101,105,105,96,103,102,95,99,100,86,100,91,98,86,98,109,117,92,98,91,87,106,101,97,81,109,96,109,96,95,95,106,89,99,108,93,96,89,100,116,97,117,112,110,108,103,107,85,88,102,91,115,97,95,98,100,87,98,89,99,87,103,102,97,101,98,94,107,104,91,111,95,103,98,99,102,104,98,98,82,94,111,97,105,100,99,104,93,109,101,107,90,97,97,100,105,102,91,112,84,88,111,98,100,102,100,103,90,99,97,103,93,97,105,104,92,99,93,99,93,88,102,99,115,98,99,98,97,88,95,100,90,90,91,106,109,115,101,97,94,89,105,91,84,88,96,110,96,97,90,115,97,87,96,96,89,119,103,105,94,109,100,104,95,94,109,98,90,100,92,102,68,97,91,134,100,100,104,69,91,93,98,97,92,102,102,93,86,102,103,95,101,99,102,98,89,98,99,106,101,102,90,87,95,106,99,111,99,96,109,92,97,87,85,98,87,92,100,104,88,99,94,89,91,76,91,98,102,100,100,110,107,111,89,78,114,103,91,105,99,103,97,125,99,130,105,102,92,100,87,88,104,98,97,96,102,102,95,98,106,101,105,101,106,70,100,96,108,102,93,111,108,104,109,88,87,90,94,106,110,94,98,95,84,87,99,106,102,97,96,133,100,83,98,94,109,110,102,102,83,101,93,83,101,95,90,104,85,105,100,100,105,94,96,99,99,94,100,93,92,95,96,116,99,95,105,109,96,80,90,95,105,108,99,90,77,97,100,97,99,96,102,98,94,101,97,96,99,110,110,109,107,92,96,104,98,111,84,102,89,98,104,91,101,99,90,94,89,106,95,100,90,103,115,102,98,117,75,91,102,85,87,110,103,103,100,93,95,102,108,101,110,107,89,91,89,100,95,95,96,89,99,83,77,95,107,106,101,88,114,128,104,99,95,94,97,91,93,91,106,102,94,94,99,96,98,95,93,93,92,105,100,85,93,95,105,97,99,98,89,95,92,102,88,108,100,83,95,94,104,98,92,96,100,108,94,87,90,101,105,102,65,109,104,96,96,97,109,87,100,97,108,93,107,100,87,97,105,118,101,98,80,97,95,93,106,109,102,96,97,90,95,97,105,97,102,98,99,102,94,90,91,96,102,100,98,101,105,110,95,107,107,104,94,92,94,105,96,98,96,95,89,99,80,95,90,106,100,98,96,93,91,101,102,103,109,82,106,101,85,112,102,95,90,97,98,89,102,97,110,91,105,88,93,89,99,77,70,99,97,101,99,95,97,109,95,108,103,94,98,103,100,95,102,95,92,117,105,109,104,103,91,105,90,108,97,98,109,95,114,103,94,98,100,97,87,101,96,108,95,94,101,104,103,110,98,101,84,84,108,115,107,88,99,99,102,121,105,87,94,102,99,100,85,88,102,96,99,101,98,120,83,104,72,110,91,98,98,103,97,85,91,102,99,105,94,95,96,87,79,82,99,94,90,97,102,89,98,102,109,89,100,92,101,101,98,94,102,99,99,90,90,95,102,101,91,87,85,103,109,91,95,104,99,102,74,102,108,105,98,97,89,93,98,83,94,99,95,96,85,94,91,97,108,96,98,93,105,93,117,100,111,105,71,101,98,83,104,96,94,97,107,105,100,83,102,109,98,97,100,99,99,98,103,92,97,89,85,98,94,105,105,100,103,101,99,102,92,108,99,98,94,95,91,92,104,97,98,116,90,93,96,95,98,97,89,87,93,81,99,102,89,101,88,110,86,99,94,102,94,101,99,98,101,98,95,92,94,94,96,102,116,94,87,101,94,105,105,96,101,100,88,95,87,95,100,63,92,88,97,99,81,94,98,104,97,109,95,98,99,104,88,103,95,80,72,103,101,99,104,98,105,112,102,101,88,100,102,98,94,79,107,104,91,90,115,89,108,99,81,104,101,87,96,89,104,88,109,102,99,101,87,99,94,114,97,106,117,132,101,93,95,98,104,91,88,103,102,94,87,108,97,107,98,83,93,113,98,100,94,96,104,91,95,99,94,107,87,101,84,105,94,98,96,94,98,112,98,101,94,89,92,101,99,99,96,97,93,101,81,85,95,95,96,108,92,94,85,94,100,80,95,101,87,97,108,80,97,101,105,102,105,95,100,91,99,101,98,108,93,93,103,92,93,87,94,101,116,97,97,105,95,92,100,96,96,97,107,100,95,99,96,101,107,114,91,95,112,101,78,97,99,94,92,105,102,92,91,98,95,90,98,97,98,101,97,104,99,95,67,98,93,103,106,99,87,100,100,99,100,104,105,90,92,101,105,89,100,99,89,112,94,111,103,103,106,94,94,97,98,95,130,99,101,104,91,87,87,101,97,103,87,95,102,102,96,103,101,88,106,98,105,96,98,95,101,104,98,103,93,100,97,126,89,92,95,96,96,97,87,99,95,97,91,95,97,87,99,74,105,94,123,97,100,99,108,92,109,98,99,94,92,106,112,98,92,90,81,118,106,92,89,106,97,85,99,94,90,93,101,106,105,102,103,98,99,109,103,107,97,107,97,105,87,95,76,87,97,98,117,94,95,97,105,101,98,74,99,90,88,97,95,88,95,111,105,108,98,94,104,95,101,96,84,110,100,108,105,100,84,97,88,63,90,89,102,101,102,101,87,112,99,104,107,94,87,105,100,106,121,81,105,90,117,106,102,102,109,88,89,91,117,88,100,95,90,113,101,94,102,99,98,112,88,90,64, +731.65277,103,126,101,96,102,74,100,103,104,97,86,87,104,100,71,97,87,91,102,91,107,91,102,111,106,101,82,91,96,114,101,103,98,83,98,108,87,90,105,108,88,99,87,103,90,100,98,110,77,104,94,100,92,101,98,104,92,86,96,98,105,101,93,91,105,97,93,103,92,92,91,108,90,108,90,107,103,107,104,104,96,113,108,79,105,100,111,90,92,101,121,99,98,97,85,101,93,83,97,95,90,103,100,102,97,94,101,93,96,102,108,99,98,103,95,92,91,99,98,90,101,79,95,110,105,111,103,106,99,100,99,95,101,86,114,98,91,95,90,119,91,99,88,86,94,95,115,107,90,83,94,99,112,92,88,106,103,90,102,97,98,98,93,93,103,102,91,98,101,87,105,90,82,99,86,95,91,87,99,96,99,89,88,95,108,79,84,84,106,99,99,97,107,91,97,98,90,90,106,99,94,101,101,95,97,105,104,102,97,107,80,109,91,102,93,98,99,100,97,91,91,101,105,100,97,100,93,99,105,100,101,88,93,88,89,92,100,104,105,89,91,100,97,101,91,95,97,90,121,92,100,101,94,100,107,101,105,97,91,102,92,96,88,84,103,109,98,86,102,97,93,95,92,105,100,85,88,109,103,90,89,95,111,97,91,104,84,85,97,106,96,91,106,100,112,96,98,103,93,91,93,101,91,97,97,87,99,68,92,96,89,94,96,92,113,93,90,105,105,96,88,95,79,87,96,94,99,87,109,108,91,95,98,94,99,112,108,97,103,99,95,98,106,77,97,91,95,98,94,96,106,93,100,95,94,97,95,102,97,98,94,77,99,86,94,98,104,95,84,94,97,86,94,101,83,102,101,92,94,96,94,101,97,92,99,106,90,91,78,97,96,90,95,105,88,99,101,88,95,100,106,95,99,93,103,87,91,100,96,95,92,86,102,91,95,79,95,101,95,94,95,91,94,90,94,97,99,90,95,95,97,95,95,95,113,109,93,109,97,79,108,93,104,94,90,110,95,93,86,95,96,104,90,102,83,102,99,105,108,102,105,94,109,102,99,106,94,97,96,99,71,97,108,86,105,98,104,84,112,69,83,98,88,94,88,96,106,97,98,94,105,100,109,97,97,91,90,97,93,101,104,90,98,96,85,93,89,83,98,95,98,90,91,96,102,97,99,102,90,101,84,101,87,93,97,89,102,108,102,106,113,86,102,91,96,106,91,90,93,107,92,95,107,98,103,102,91,92,109,100,99,94,97,83,96,94,99,96,92,93,95,88,100,107,103,98,96,91,115,107,99,96,99,113,86,102,104,101,87,91,100,106,96,101,89,100,100,107,108,91,103,85,112,95,103,106,88,83,97,107,93,100,108,107,88,105,94,101,95,110,94,98,94,97,88,93,102,89,93,102,62,94,91,99,105,104,92,109,92,96,96,105,97,100,104,95,93,90,105,93,106,96,101,98,100,90,106,93,94,97,103,93,87,110,102,98,106,102,101,99,93,104,96,104,98,99,103,96,100,97,97,86,93,97,87,114,100,96,93,93,100,71,97,96,92,87,97,101,80,94,100,102,98,109,95,96,96,88,100,89,88,77,87,107,90,106,86,95,88,90,91,103,91,92,117,94,98,92,111,95,94,126,99,103,96,88,95,95,109,92,100,110,92,101,96,94,102,96,100,99,95,91,102,96,96,128,98,59,82,93,94,90,97,94,95,92,95,101,101,91,88,93,101,95,77,95,82,102,98,91,100,96,92,95,92,102,88,104,96,90,90,112,109,97,93,108,106,108,97,101,100,102,90,94,89,99,98,94,101,97,93,97,76,103,109,102,106,92,89,100,108,88,103,91,106,86,104,98,78,91,92,104,88,101,79,101,103,101,98,92,98,95,100,91,86,100,78,109,101,90,90,92,106,93,95,66,94,87,94,90,99,96,91,97,104,102,101,96,87,96,96,80,94,96,102,86,87,99,104,92,97,100,95,87,93,87,83,88,100,105,93,96,97,106,91,95,89,112,114,96,95,101,98,97,96,100,77,96,103,108,91,100,103,94,96,94,106,96,94,101,95,113,97,94,94,86,87,101,87,108,104,100,103,97,105,95,92,109,97,104,130,102,105,91,101,89,93,109,99,92,109,90,79,105,89,84,109,107,112,98,101,96,95,103,103,114,102,99,98,99,91,84,95,71,84,107,95,90,102,71,88,106,114,116,102,99,94,93,104,89,101,100,104,94,97,106,101,91,92,92,90,91,103,91,96,109,94,101,89,102,92,106,86,84,95,100,100,86,89,98,97,95,96,111,101,112,95,101,83,89,77,82,105,91,103,115,103,74,101,87,94,110,106,87,108,81,87,105,84,95,95,97,95,95,100,98,89,106,95,106,105,109,101,93,96,108,101,108,99,90,91,97,125,86,96,97,102,110,100,83,80,110,84,98,81,99,105,99,106,114,85,100,109,96,114,77,98,92,99,88,102,95,101,97,97,114,97,91,94,109,93,98,94,99,110,95,105,99,98,98,95,99,81,108,94,87,100,91,89,74,102,102,109,93,97,94,99,102,98,88,95,98,104,101,99,101,98,102,107,102,106,85,94,102,93,85,108,105,95,126,117,96,109,93,101,96,97,90,113,96,94,93,102,107,102,96,106,101,102,100,110,83,117,108,107,105,96,94,91,97,103,111,101,121,97,103,103,83,102,104,102,98,97,111,102,94,96,94,100,94,99,96,100,96,116,100,103,109,107,94,89,98,100,103,111,98,83,102,99,99,102,99,105,108,102,98,105,86,104,96,97,92,99,104,93,120,100,96,101,106,94,96,94,97,93,96,104,99,94,97,96,109,92,96,105,105,94,111,96,107,100,94,94,117,106,94,103,93,101,105,105,104,107,98,98,93,94,109,101,100,105,93,96,104,96,105,89,110,100,87,113,104,92,91,102,102,104,109,92,99,97,99,91,101,100,101,101,98,103,86,111,103,96,96,105,97,87,97,96,101,103,100,96,121,104,96,107,89,97,98,93,97,99,96,108,102,75,104,89,100,84,90,90,103,104,100,113,104,109,103,100,101,91,94,97,109,92,100,94,94,94,109,99,99,92,98,106,97,87,110,92,105,91,104,103,95,101,92,93,103,91,79,99,100,93,88,98,97,92,88,108,88,98,96,104,89,102,88,105,102,103,100,105,100,87,104,90,99,100,99,85,98,89,97,96,105,87,113,104,102,102,103,88,106,104,94,99,90,114,93,108,106,105,105,75,99,108,96,96,105,103,104,105,99,101,93,90,102,97,97,98,97,107,98,102,87,102,94,107,114,96,99,97,101,105,96,116,100,108,91,88,101,103,91,117,97,106,106,108,84,99,97,106,104,103,100,100,103,105,95,99,103,114,96,95,105,101,113,101,96,97,98,101,102,103,111,102,102,98,112,109,95,105,90,103,99,109,93,102,93,100,103,95,125,92,104,101,106,102,95,91,94,109,106,98,95,104,116,97,99,106,95,89,102,95,93,101,100,90,95,87,102,101,107,100,101,105,106,101,103,96,100,110,92,108,108,103,99,106,106,107,98,95,98,100,120,95,101,106,106,93,97,101,100,92,87,100,92,104,100,92,100,91,107,113,98,95,98,105,101,99,101,102,108,99,105,97,105,92,99,97,88,95,109,99,108,72,94,93,94,98,105,87,107,88,106,90,107,97,88,94,89,104,112,91,95,116,109,98,87,97,99,110,103,101,94,102,99,89,94,128,89,103,111,101,97,100,94,110,88,93,97,81,112,102,98,82,105,106,100,100,96,92,112,106,100,100,99,94,108,93,118,99,90,97,100,99,95,87,109,91,103,94,94,108,108,117,106,97,108,94,108,104,93,82,108,110,98,102,98,102,105,91,119,78,93,106,102,91,101,92,103,97,102,100,93,92,97,106,101,95,100,119,102,105,117,103,100,104,101,95,104,101,105,105,103,102,113,98,102,67,109,85,95,100,111,109,103,91,106,98,105,91,103,109,105,102,97,109,112,96,108,108,106,100,92,108,106,107,108,106,98,107,97,97,112,92,105,99,83,84,98,91,99,110,99,96,103,102,97,102,102,94,100,109,95,86,109,101,100,113,97,98,103,97,111,109,105,90,107,98,102,94,99,100,108,96,100,90,113,105,102,107,86,106,105,97,99,105,103,113,112,94,91,100,103,93,122,115,100,109,115,113,101,103,112,98,117,109,84,91,99,102,97,96,103,105,106,95,88,84,99,117,95,102,96,100,109,106,102,107,113,112,105,109,105,99,91,104,92,108,107,98,113,99,100,98,93,101,96,87,111,103,96,100,96,104,103,96,102,109,92,102,102,112,112,102,88,107,102,99,110,95,99,103,95,101,104,99,115,98,100,100,100,106,100,99,92,97,93,107,104,97,98,112,93,95,99,95,101,103,98,114,94,94,97,93,97,97,100,102,104,104,101,93,101,106,98,110,95,103,99,117,93,100,103,102,103,89,104,105,88,92,108,102,113,93,101,106,70,101,101,107,97,134,106,96,78,102,109,97,98,100,92,104,98,101,94,105,105,105,120,108,96,85,93,108,95,93,100,107,94,109,102,95,106,101,97,106,105,96,111,103,97,103,95,108,108,94,105,114,101,105,97,94,97,105,101,94,111,92,94,98,96,94,83,93,100,83,98,83,94,91,106,106,105,96,110,97,110,96,98,96,94,93,109,108,104,93,91,100,89,67,99,92,95,98,100,97,113,100,95,75,87,88,101,96,103,94,92,99,107,101,98,106,117,107,110,97,94,105,85,107,87,102,104,88,93,111,111,105,101,101,99,105,118,104,124,104,108,103,104,97,112,103,106,99,103,103,125,116,91,79,89,107,95,102,112,110,75,102,103,97,87,103,107,108,97,101,109, +731.79419,105,96,67,96,68,87,100,97,100,85,97,97,97,99,105,91,92,111,96,91,100,101,95,98,113,88,99,110,103,85,102,99,99,101,97,96,104,108,113,102,94,101,91,90,87,83,107,105,91,104,101,96,97,99,99,95,116,101,99,83,102,94,97,106,109,100,92,107,104,87,87,100,95,99,98,109,96,93,97,110,64,97,99,91,103,75,105,90,90,103,102,95,109,102,92,91,87,102,79,98,92,98,95,94,93,88,74,100,94,103,93,94,94,107,94,93,101,99,108,104,92,114,106,103,98,102,96,102,107,103,100,85,107,104,96,111,97,96,94,97,78,93,104,99,97,93,105,91,94,75,97,107,85,90,94,91,104,101,96,106,97,107,89,107,100,105,120,111,95,96,92,85,89,86,113,105,96,92,94,103,104,95,98,100,109,97,95,88,118,101,93,117,90,84,93,99,108,105,83,106,99,96,94,97,91,110,91,95,86,104,97,103,93,103,95,105,71,91,93,103,100,103,97,88,94,105,99,109,83,92,95,86,107,99,99,88,90,107,92,87,104,95,104,102,99,82,67,99,95,98,103,99,105,94,100,105,88,92,87,60,89,88,98,101,97,96,102,107,85,93,91,99,118,95,104,110,98,111,92,107,99,102,99,109,95,93,102,92,102,101,105,110,103,103,91,97,116,95,95,92,105,96,97,121,88,93,98,108,97,109,90,96,94,101,100,95,101,75,94,95,102,90,94,114,100,95,99,80,105,110,101,91,103,101,98,109,98,97,83,103,87,83,81,100,94,101,99,96,98,92,82,86,99,110,97,99,100,100,102,90,101,90,91,98,85,101,99,104,91,92,101,93,109,105,108,96,105,100,100,104,102,98,86,85,91,96,97,95,89,106,113,91,95,102,124,84,104,89,103,92,92,87,101,97,101,105,82,118,107,95,96,102,105,105,89,96,106,97,100,106,101,95,100,99,91,97,79,98,92,91,99,93,118,102,98,97,99,106,93,91,112,91,98,106,115,91,97,95,101,92,92,87,104,104,106,103,106,106,102,103,93,108,88,100,93,100,90,96,109,102,101,93,86,105,105,99,101,91,97,103,96,94,103,95,91,94,95,104,96,95,99,98,98,93,97,99,96,118,94,93,111,96,94,99,91,96,96,98,100,87,96,95,95,109,104,91,86,109,110,99,105,84,99,100,104,107,96,99,99,110,94,96,99,87,98,108,97,97,98,105,94,99,103,97,99,89,79,90,131,108,96,101,94,94,104,101,96,109,96,84,102,102,101,101,87,91,94,87,104,95,87,73,93,91,98,101,103,95,95,86,103,108,94,95,88,100,101,99,100,82,107,84,96,120,103,109,93,107,96,107,98,103,102,88,91,92,96,101,102,100,89,100,100,102,107,90,103,106,108,99,91,91,99,87,104,91,96,94,100,107,91,97,98,107,92,121,90,87,90,94,94,84,97,96,84,86,97,89,107,107,100,95,96,91,95,102,101,98,94,104,94,80,98,86,91,108,103,85,98,97,108,99,89,88,97,103,91,97,86,112,93,88,95,102,84,100,108,94,97,103,96,106,92,100,92,97,98,89,90,87,92,89,94,93,92,76,100,103,78,100,108,87,103,93,95,102,105,119,95,98,87,95,101,91,94,99,72,112,93,95,104,117,98,97,97,87,104,90,97,94,105,96,92,98,90,101,100,101,92,101,99,63,88,93,96,89,98,108,112,88,100,92,90,110,95,99,86,92,102,95,97,98,107,91,105,105,87,88,97,100,91,95,107,104,93,94,98,102,80,104,89,95,94,103,94,110,94,106,97,100,101,90,99,97,95,95,105,95,100,95,110,120,101,93,108,104,101,115,93,95,110,111,106,105,106,94,98,105,108,94,102,97,104,102,109,100,94,108,103,102,105,110,101,105,90,94,101,95,86,94,102,103,88,105,93,93,108,98,90,90,96,97,92,98,99,96,102,95,110,87,95,90,98,106,106,101,93,101,108,105,105,102,80,102,96,118,105,99,97,96,122,107,84,109,100,90,103,101,107,98,101,109,103,95,91,89,94,101,106,99,98,101,113,108,92,104,97,108,96,99,97,111,104,100,104,95,91,100,94,94,87,109,107,104,109,109,101,101,113,94,108,99,97,96,98,100,102,96,98,95,102,78,97,101,106,86,96,94,93,93,105,106,81,90,103,86,102,100,113,91,104,100,99,94,89,100,94,95,97,97,102,105,101,82,98,92,96,102,101,79,112,99,87,102,92,69,109,87,102,95,108,102,96,104,113,95,74,88,99,88,97,105,107,100,98,103,90,103,102,98,97,101,99,98,91,101,103,94,92,90,109,95,114,110,105,92,83,107,108,97,99,90,94,100,88,98,112,95,105,100,94,105,107,108,104,100,100,91,95,103,100,95,102,89,105,108,109,109,107,89,101,108,102,89,104,109,101,101,71,100,99,78,89,97,87,91,89,86,93,97,104,99,104,92,101,101,105,103,103,109,105,108,100,99,103,105,96,95,105,109,103,87,102,91,102,95,96,94,98,98,109,102,95,97,98,103,101,101,104,101,104,119,92,98,103,91,101,92,102,100,99,100,96,122,102,107,106,91,108,96,100,111,90,104,123,93,120,95,106,96,99,92,101,88,105,106,101,116,102,112,63,92,102,104,93,86,100,112,97,101,110,86,111,102,93,107,106,142,100,104,98,102,96,109,100,90,128,93,93,100,97,98,105,105,102,102,101,91,78,93,107,105,97,109,100,102,100,97,102,105,101,88,82,88,96,100,106,98,108,98,97,109,103,105,103,100,109,101,93,95,102,99,105,96,121,109,101,91,87,109,88,95,97,85,98,106,101,92,88,98,109,91,93,119,96,85,103,99,105,110,82,99,94,113,103,99,97,105,103,95,108,99,104,107,102,107,96,104,97,99,91,88,104,100,95,103,98,110,101,103,104,100,91,103,95,109,81,109,94,84,99,109,94,105,106,105,100,96,91,101,110,98,99,104,94,108,104,103,95,107,103,89,95,103,116,105,102,102,96,94,103,95,109,95,90,81,93,112,99,101,110,103,108,106,98,108,94,110,84,83,97,109,103,103,110,92,105,88,92,99,99,85,94,100,112,82,93,107,95,101,101,87,100,100,94,97,95,105,113,100,83,106,101,106,105,97,99,106,97,109,112,94,104,106,103,102,101,102,96,105,105,99,104,97,99,110,98,96,100,93,132,93,92,98,99,86,83,96,104,87,94,111,107,102,103,95,106,98,100,87,106,101,102,88,91,98,99,97,86,104,103,82,98,104,98,104,98,116,96,120,105,104,102,102,111,109,104,89,109,97,94,93,92,101,101,98,93,100,102,117,88,109,101,96,93,97,101,103,91,92,95,99,98,115,88,99,101,102,101,108,99,103,113,111,97,91,108,90,95,101,99,88,109,106,92,100,100,99,92,97,98,109,108,108,94,104,96,102,91,102,117,92,89,90,98,108,102,80,97,97,103,115,93,92,97,91,102,95,90,89,103,92,102,102,100,94,112,104,111,95,97,112,106,97,91,101,107,94,104,104,90,110,108,103,99,106,77,95,104,97,96,100,110,104,102,110,121,127,100,100,92,94,96,105,121,97,101,102,105,106,94,115,102,101,100,99,113,119,86,105,100,126,100,105,100,97,97,113,80,92,98,105,94,98,111,96,61,95,86,101,96,106,78,90,104,99,107,80,105,55,94,94,94,94,111,93,101,97,98,103,109,72,106,91,97,91,105,89,84,88,109,109,98,105,99,109,94,87,107,112,103,102,95,117,101,102,101,95,102,95,91,101,108,108,87,99,116,110,105,100,91,96,103,104,97,110,88,94,113,109,106,104,96,97,96,97,97,100,112,105,102,99,113,111,101,88,104,93,99,109,105,91,94,107,98,106,106,97,108,102,103,100,110,107,82,103,104,94,105,100,106,107,107,115,95,100,84,97,98,103,100,105,96,104,103,97,108,109,91,98,106,108,96,93,117,107,102,104,112,86,94,117,101,105,102,92,101,92,102,102,101,98,98,118,100,92,103,103,109,100,100,97,109,104,112,100,104,100,99,100,104,99,102,97,108,102,103,101,100,113,103,91,98,110,100,85,108,99,94,64,88,106,106,90,114,109,103,105,113,98,99,88,100,94,101,92,103,110,85,88,89,108,95,113,116,110,99,105,109,102,103,94,84,110,99,98,96,99,89,95,101,83,98,92,106,93,108,100,95,96,91,96,94,94,98,90,95,101,95,108,102,96,102,101,97,98,86,87,94,106,94,88,91,100,89,97,95,106,98,104,109,94,90,105,101,101,106,93,90,76,103,102,90,97,97,99,109,100,106,113,105,113,106,99,99,105,101,95,112,104,102,98,99,106,93,103,106,104,105,94,98,86,101,100,103,100,98,97,100,103,95,105,94,101,92,90,95,99,96,102,98,117,100,101,94,102,99,94,108,108,92,93,97,99,101,108,100,91,109,99,92,84,95,136,117,92,108,98,110,83,91,93,109,87,102,116,96,100,120,95,105,109,100,95,108,96,104,94,102,96,100,92,104,100,100,104,117,99,95,98,92,99,94,103,101,104,106,115,102,102,99,66,106,108,99,96,105,100,100,96,108,98,102,82,91,98,134,102,102,107,113,107,100,116,102,100,96,119,83,100,92,103,106,102,104,93,97,100,102,97,99,105,103,91,88,96,99,90,96,98,83,111,99,102,104,106,104,92,103,117,99,98,105,108,103,78,94,103,87,107,89,101,92,108,99,104,103,102,101,95,115,98,103,109,99,103,84,98,95,105,97,102,85,96,101,100,92,80,108,114,108,102,94,92,84,94,95,101,103,97,96,115,96,90,110,104,95,87,101,87,109,105,106,97,114,92,128,95,97,100, +731.93555,96,90,90,108,85,78,98,86,99,107,99,88,109,98,105,96,94,100,91,94,86,95,97,107,100,99,96,108,102,98,92,102,89,94,108,100,94,87,92,102,91,113,104,97,109,97,102,99,94,96,98,96,100,93,99,97,101,102,89,87,101,96,104,91,99,112,80,102,94,106,99,99,102,97,97,96,92,92,100,92,113,97,104,107,95,85,111,116,98,97,98,94,89,89,88,89,105,104,99,94,99,95,102,97,100,93,101,94,97,110,103,96,98,84,105,105,93,95,102,104,105,99,102,102,108,95,100,71,100,93,92,99,92,97,94,115,100,96,99,102,101,98,95,94,107,116,102,107,83,96,96,94,93,86,101,94,111,93,107,100,99,99,98,93,107,85,91,85,118,87,89,94,89,79,94,95,88,94,104,109,96,87,102,106,87,97,93,87,95,101,90,91,87,104,95,108,104,102,113,97,101,95,88,108,92,99,103,114,103,91,100,108,92,114,92,86,98,101,77,98,96,103,97,84,97,91,107,93,100,88,97,96,96,98,117,108,93,86,96,94,88,97,100,92,102,97,112,104,106,104,98,91,98,102,106,111,89,103,93,91,91,109,90,93,99,98,96,91,96,100,89,94,102,97,107,102,109,99,108,97,96,104,99,106,97,97,91,86,100,99,83,92,97,91,108,98,107,110,103,100,98,99,93,98,104,94,85,97,108,106,90,109,94,90,98,89,106,96,92,95,95,90,104,105,96,90,96,98,103,106,103,97,97,99,105,101,101,91,98,104,97,89,91,110,88,112,99,99,103,108,101,95,103,110,89,102,102,76,95,96,95,91,102,91,101,93,97,102,89,105,94,91,117,108,107,94,100,93,101,115,102,105,86,98,89,99,98,102,88,95,99,110,100,88,84,98,89,103,99,87,103,98,90,95,96,95,81,108,92,97,91,83,77,96,98,96,102,94,96,92,93,96,92,103,87,93,110,91,93,107,103,100,85,81,105,93,93,100,104,105,92,99,89,102,83,105,96,100,79,105,103,90,93,98,106,93,101,104,98,106,100,102,93,82,102,94,89,63,102,96,103,95,77,80,94,96,89,111,104,98,95,106,90,96,101,99,104,103,97,93,106,81,106,97,96,69,99,87,99,104,103,87,106,95,105,102,104,94,87,98,99,103,92,97,75,106,103,96,98,94,90,102,101,100,95,97,103,107,108,90,100,96,93,92,94,105,94,92,94,99,99,97,111,92,98,100,86,96,97,101,82,97,89,82,79,96,103,93,95,96,107,95,94,105,120,97,94,109,92,99,88,97,103,108,104,99,92,97,98,98,86,99,93,107,95,97,94,97,106,100,83,109,92,97,99,101,91,87,93,105,109,96,97,106,98,94,93,90,98,95,95,72,88,91,91,94,104,95,103,84,96,101,102,96,101,67,99,98,97,100,88,105,91,95,93,105,89,92,85,90,96,97,101,93,66,92,101,92,83,110,83,100,95,97,99,92,107,98,87,111,97,85,97,79,80,79,112,92,101,87,95,96,94,92,104,86,111,112,100,88,94,98,123,81,95,92,88,87,90,106,88,99,94,103,98,93,97,88,95,105,84,97,82,95,103,104,84,106,102,97,101,107,104,89,85,97,95,99,95,114,85,78,98,87,90,100,100,104,103,100,103,108,98,105,102,102,98,86,98,98,107,81,91,90,96,102,75,104,97,86,104,95,107,94,93,92,102,101,91,101,103,112,88,95,91,90,95,94,98,98,97,117,98,81,104,101,127,95,100,110,103,97,86,102,97,77,91,94,93,111,95,100,90,100,96,106,95,124,98,99,97,102,99,107,111,96,82,105,89,99,95,105,77,126,99,96,101,110,105,88,91,100,87,93,106,102,108,91,97,90,101,104,103,102,102,94,101,107,106,96,93,102,98,96,96,99,109,104,94,98,85,97,86,102,94,98,95,93,112,104,93,86,101,100,100,92,97,112,108,104,99,108,100,109,121,93,103,101,105,101,109,104,100,114,99,105,74,75,100,104,116,103,86,106,72,90,91,95,99,95,105,101,95,101,109,96,97,85,101,102,95,103,112,96,108,102,82,101,91,93,98,106,93,104,107,97,109,88,107,108,91,105,90,100,90,97,100,105,101,112,104,100,102,96,104,96,92,91,92,115,91,110,91,87,88,74,110,95,96,78,99,103,92,100,101,91,97,90,99,96,99,95,95,96,100,89,103,96,94,97,97,103,104,104,109,109,89,91,80,104,87,102,96,92,102,91,91,108,100,104,92,97,90,100,99,98,100,89,88,113,82,87,90,84,108,108,106,96,98,102,105,102,100,89,107,95,108,98,101,96,108,107,110,87,108,94,101,99,94,101,101,117,90,88,92,83,101,103,92,98,96,96,101,98,105,113,121,98,101,109,97,107,102,95,101,90,106,99,99,91,88,91,98,100,101,100,95,91,91,92,102,98,114,87,90,101,91,103,110,101,84,110,97,99,100,85,105,70,93,93,103,101,82,100,97,101,104,91,108,92,84,113,97,101,105,102,107,93,116,101,106,106,101,100,98,99,117,108,105,91,103,98,100,100,90,101,91,90,92,103,103,88,104,100,104,102,105,101,99,89,98,92,99,95,92,110,87,88,88,108,96,110,83,90,103,113,98,102,105,87,96,95,100,108,85,102,113,89,95,97,91,100,95,103,103,101,117,103,110,105,109,100,95,101,91,93,104,103,110,111,104,98,98,97,98,113,106,105,100,103,108,98,109,93,88,106,99,100,99,95,100,105,103,89,101,90,95,96,98,94,93,105,95,107,101,103,95,104,106,105,95,105,90,95,87,95,105,108,92,100,96,99,104,96,105,99,95,107,98,108,97,101,98,79,112,105,94,99,93,108,108,94,104,95,101,100,99,95,83,103,103,97,103,87,113,104,95,97,82,96,105,100,89,92,94,100,101,92,100,93,98,107,96,96,88,95,99,91,93,103,94,105,102,99,94,81,93,105,99,85,99,111,102,91,106,103,99,94,113,97,94,88,101,93,111,98,94,103,98,106,100,99,105,98,107,102,117,94,100,120,96,94,94,106,101,97,96,103,80,99,108,99,98,107,109,95,95,73,112,80,105,97,95,99,99,65,90,97,96,108,94,102,124,96,103,94,98,101,105,87,97,100,115,99,92,109,96,114,95,91,109,99,97,102,94,97,98,99,99,99,92,106,101,97,96,102,94,104,96,117,83,94,104,96,92,86,98,108,99,104,98,91,115,108,103,104,92,92,107,90,108,103,82,98,99,108,109,122,95,106,92,97,98,96,102,103,91,97,109,100,94,113,109,102,111,95,99,94,94,96,102,100,97,100,98,92,115,107,102,96,111,97,106,94,105,108,98,91,113,106,101,100,90,105,113,98,97,95,96,110,92,96,91,99,97,105,99,102,91,102,97,91,91,100,86,89,110,95,94,97,101,103,98,96,74,95,100,104,93,109,97,95,89,103,79,102,101,97,102,96,111,104,100,101,103,96,106,100,111,95,111,77,100,103,92,98,100,97,100,93,87,99,94,102,95,102,98,98,103,106,101,102,97,105,101,98,91,96,101,105,94,100,111,107,94,95,92,80,95,103,96,108,88,91,98,87,97,100,97,104,96,104,102,95,94,109,99,97,96,95,104,99,97,95,92,100,106,97,109,97,103,101,87,98,100,96,99,99,99,95,106,90,100,90,126,104,96,100,95,91,88,98,92,87,92,103,102,100,97,100,100,101,104,99,102,109,91,112,92,101,96,101,98,97,108,94,95,95,134,96,94,116,95,94,90,98,100,103,91,94,101,93,125,101,101,96,106,98,97,91,95,100,90,89,89,92,105,106,98,93,94,94,82,86,93,103,113,94,109,101,106,106,99,98,91,104,113,92,90,117,99,105,108,96,102,100,105,99,116,101,98,91,106,107,97,103,102,102,98,108,103,106,86,101,99,103,96,101,95,82,114,100,101,105,129,106,92,93,96,100,136,99,97,90,98,119,101,87,108,95,105,85,89,94,102,99,119,99,110,99,101,108,95,103,95,101,92,100,108,95,95,89,95,105,92,94,107,97,98,94,107,103,113,92,110,107,94,90,94,98,99,106,106,93,108,99,98,92,106,100,110,90,106,95,101,108,100,99,96,99,99,100,82,87,102,97,90,106,101,99,118,102,104,91,96,106,96,100,128,104,109,92,106,100,98,106,90,101,100,113,108,103,103,101,98,99,105,118,100,92,99,127,104,104,93,114,109,99,92,92,108,95,103,93,91,74,66,85,96,92,99,111,87,102,107,93,98,94,98,100,102,98,102,100,91,99,99,97,104,94,96,92,100,106,95,107,98,92,98,99,94,96,118,107,104,111,106,105,101,95,99,103,96,65,88,98,106,100,95,90,106,92,89,102,86,108,102,91,108,111,104,104,96,93,106,100,90,93,95,97,103,103,109,97,98,90,100,98,95,105,93,91,100,100,102,106,102,94,113,93,87,104,98,85,103,113,98,102,90,96,94,97,96,97,101,91,112,108,95,91,103,102,103,94,86,105,98,92,104,95,111,102,101,113,113,100,109,95,96,101,99,94,94,95,104,96,117,95,109,108,99,87,109,103,88,104,99,106,97,98,98,109,104,104,111,108,97,112,108,106,100,96,121,124,100,95,105,90,90,102,87,109,88,104,100,97,105,106,89,110,95,99,103,92,88,105,102,95,94,102,87,94,107,101,104,102,92,93,94,107,92,94,116,110,109,103,107,103,122,90,102,99,105,95,106,108,109,94,97,88,97,98,76,100,97,111,92,103,107,91,107,99,92,87,98,84,95,118,99,100,96,94,106,97,92,104,92,95,105,93,113,101,94,93,100,93,103,115,91,80,111,90,96,95,96,108,115,88,92,83, +732.07697,95,97,88,70,94,121,99,112,110,96,95,97,88,96,92,96,97,100,89,100,103,95,96,83,105,94,92,94,100,100,90,91,105,92,100,89,93,93,105,101,115,96,96,99,101,116,103,99,112,105,101,99,104,109,104,97,94,97,96,91,85,106,100,89,99,106,83,101,105,107,92,82,96,105,91,97,99,100,101,94,106,104,100,96,89,91,107,106,98,108,86,107,95,109,74,88,100,98,101,98,102,97,92,107,112,106,103,101,97,95,83,86,98,100,109,103,91,97,109,113,102,95,98,109,90,103,122,99,100,104,97,107,104,98,90,81,88,93,91,96,91,101,114,95,95,97,113,100,95,103,101,91,99,89,83,99,102,87,83,98,87,105,97,89,86,104,102,108,92,94,98,99,111,103,96,81,97,99,102,92,97,95,106,99,101,100,96,94,93,93,97,96,99,101,104,101,111,100,109,97,103,90,94,101,95,95,105,95,93,98,92,117,100,100,108,92,95,93,103,92,101,93,91,93,95,95,101,100,91,93,97,82,89,91,93,101,91,95,109,95,103,96,97,109,95,101,95,92,104,98,111,101,108,98,99,95,105,102,93,90,100,98,105,93,96,95,102,96,111,89,105,99,106,101,107,94,101,101,95,97,96,102,97,96,96,96,93,97,94,99,95,86,92,100,95,96,110,92,64,103,120,98,96,108,102,97,107,102,96,96,90,106,102,93,93,88,97,99,102,109,99,90,102,93,95,108,103,103,120,114,91,107,100,96,97,91,105,92,95,100,95,96,91,65,102,103,96,98,121,101,93,107,105,102,92,95,105,103,91,82,75,91,100,99,99,95,97,113,93,94,97,100,100,100,102,102,105,102,110,107,99,101,102,95,101,74,94,100,109,89,95,104,100,107,89,85,109,99,100,102,101,91,88,92,100,87,93,102,111,100,106,85,108,105,105,93,101,88,94,98,93,100,99,93,101,72,88,85,90,100,96,125,101,109,113,96,108,106,89,87,111,113,95,107,84,96,96,95,96,98,98,108,98,101,99,101,101,87,106,91,88,95,110,103,108,97,86,98,101,106,104,99,97,104,104,115,103,104,101,103,90,90,101,95,100,85,96,94,102,80,107,111,98,92,77,97,106,103,99,104,101,102,82,112,100,97,99,98,98,100,94,96,112,96,98,96,109,105,94,95,92,102,100,105,110,97,99,100,100,106,94,93,112,96,102,98,93,96,105,101,97,105,96,89,96,105,99,98,112,90,85,99,97,90,106,97,102,92,94,113,95,107,97,104,83,101,102,101,97,81,100,100,95,104,98,91,85,101,96,94,101,121,90,84,98,90,97,104,85,106,96,102,97,123,109,112,91,93,82,96,102,115,99,107,112,89,106,96,98,98,91,101,99,97,105,94,100,99,90,87,104,92,96,93,98,89,90,106,102,99,83,91,74,112,82,104,95,95,91,102,110,93,103,95,101,102,92,92,105,100,98,99,98,96,101,98,95,90,99,102,99,90,113,91,104,106,91,96,86,84,110,91,100,91,100,85,89,101,90,91,100,103,109,89,98,97,97,94,96,112,95,81,93,97,97,99,91,112,97,97,97,88,98,104,78,105,115,99,94,78,86,109,104,83,88,103,103,105,96,90,100,95,100,121,86,100,105,101,103,100,110,124,102,96,84,95,95,86,93,94,119,110,102,106,94,112,114,105,101,92,100,101,94,101,94,89,98,86,102,101,98,113,66,97,96,88,95,97,97,99,95,99,84,101,104,97,101,106,105,106,92,97,100,109,88,101,101,102,97,106,109,96,102,113,97,106,103,98,97,90,96,94,101,96,101,92,104,109,99,93,103,98,88,93,114,101,104,104,95,103,101,108,90,104,90,106,110,91,94,106,111,112,102,106,93,103,97,106,85,111,99,94,100,88,90,95,103,80,94,94,93,89,97,104,105,104,90,107,86,106,102,89,110,97,104,89,87,100,106,108,96,102,114,97,93,99,123,95,94,104,96,106,97,97,78,95,101,117,109,97,106,112,87,85,101,105,100,95,96,97,100,108,109,101,88,108,91,95,97,100,99,95,87,93,63,91,100,90,98,93,108,125,107,101,98,100,96,105,95,106,105,96,107,99,96,103,109,96,100,110,99,103,105,105,102,105,101,102,98,100,75,106,112,116,98,82,101,113,91,97,108,87,107,107,104,113,103,105,96,95,102,86,109,86,84,98,91,92,105,88,95,95,101,90,99,94,102,105,104,112,102,103,92,106,97,96,96,87,114,96,101,109,95,103,96,103,102,98,96,93,89,101,92,103,99,100,98,92,110,94,104,97,104,95,108,99,124,82,94,78,105,101,94,138,101,91,100,100,99,104,89,109,94,101,90,135,102,113,113,97,102,121,108,101,98,102,103,91,76,93,98,101,110,84,91,117,84,99,101,112,105,110,102,100,110,100,104,93,95,91,92,108,96,103,94,103,102,117,103,104,91,103,95,71,92,97,113,103,104,104,100,94,99,104,105,101,98,106,92,98,112,103,102,88,84,103,95,87,72,103,89,90,92,104,87,96,84,99,107,93,107,109,101,113,80,95,97,97,103,102,101,90,125,104,102,109,100,95,109,90,99,101,96,106,99,104,103,103,103,101,93,121,104,96,97,102,105,92,101,96,97,94,95,105,93,100,94,91,97,86,95,101,100,116,114,93,99,98,99,104,101,91,98,113,87,102,100,93,99,94,93,95,108,93,106,97,104,96,96,100,101,93,99,100,95,95,94,106,97,96,107,110,100,105,109,94,101,102,110,97,107,93,103,97,112,110,96,104,99,96,102,93,100,102,87,89,97,95,91,105,104,88,107,92,110,91,95,97,104,106,104,106,106,105,109,103,84,67,104,98,107,107,98,78,101,99,95,103,100,104,95,97,99,102,91,101,102,101,103,99,100,101,106,80,103,113,99,98,111,86,103,102,99,108,89,89,106,92,102,94,104,98,93,100,90,108,94,102,104,88,110,109,99,109,102,98,94,100,100,98,93,80,107,108,95,112,87,98,94,108,104,103,77,100,101,100,114,95,96,101,94,116,87,102,95,99,98,110,100,101,96,101,108,100,111,102,104,100,98,93,93,114,64,114,104,93,88,105,96,93,100,83,102,94,105,96,93,115,82,98,98,94,93,105,103,100,104,103,91,112,91,95,118,102,100,95,96,105,102,108,97,131,95,93,96,94,87,90,101,103,100,111,79,94,104,109,107,91,102,95,102,117,97,98,104,104,113,102,98,100,94,97,99,97,100,108,105,99,100,101,93,85,102,79,113,102,95,107,98,100,105,95,102,95,101,117,107,83,116,96,110,99,93,100,109,105,99,99,92,90,101,94,116,97,99,88,115,96,103,102,103,91,90,97,116,103,104,99,104,107,78,104,105,97,96,92,98,90,103,107,97,90,104,99,106,94,98,94,94,88,99,108,106,98,95,94,97,94,87,94,106,90,85,96,91,100,95,96,97,91,100,105,96,98,119,96,99,99,94,87,104,89,95,91,91,102,83,102,92,107,108,98,98,98,102,101,101,104,98,103,109,102,102,112,100,98,97,89,105,108,95,106,106,103,126,80,101,94,105,102,93,117,95,116,105,93,101,98,90,102,97,94,90,96,105,96,104,108,101,104,105,97,97,112,106,66,92,109,103,94,113,101,97,101,94,103,105,87,100,84,102,90,119,94,106,99,104,100,99,92,94,110,105,101,97,99,99,101,101,85,104,84,102,92,103,96,100,96,115,105,102,92,105,93,103,97,99,99,104,99,93,95,91,128,96,110,105,92,87,101,112,84,103,103,99,100,103,94,92,97,87,113,96,118,118,96,98,94,113,109,103,99,106,97,93,97,88,102,99,112,113,100,100,105,96,98,94,99,102,101,101,115,95,97,103,94,99,95,117,110,97,101,99,100,88,97,75,102,105,93,87,92,111,105,101,90,96,96,97,99,90,104,98,107,107,96,102,93,88,108,102,106,94,100,93,97,105,102,92,97,102,97,96,100,90,106,108,106,91,94,113,114,103,97,109,102,103,93,104,106,94,92,104,98,103,83,98,113,112,98,92,100,98,99,99,106,96,107,97,104,111,91,102,98,109,99,114,101,94,87,94,106,94,90,99,104,98,90,109,106,120,82,94,87,107,102,104,84,102,101,102,98,97,100,99,113,95,93,100,102,101,98,100,92,100,95,95,93,100,100,92,99,102,94,133,107,94,102,84,98,96,105,101,97,91,101,96,108,92,103,110,105,102,99,91,98,96,102,90,109,95,104,95,117,98,96,107,72,95,98,101,94,98,119,88,100,98,100,96,93,107,94,97,96,96,92,112,95,88,109,93,93,99,123,88,113,107,100,103,95,97,98,103,88,88,105,102,99,101,98,102,109,99,87,93,102,94,107,98,104,116,112,97,99,109,101,88,100,105,94,105,121,110,116,95,95,99,97,102,102,105,104,96,104,96,88,93,108,94,92,105,93,87,97,101,106,99,94,99,91,88,107,105,99,91,90,105,99,99,91,97,105,87,104,83,91,102,97,98,86,106,136,106,87,106,95,116,100,97,105,94,104,97,97,89,106,92,93,94,114,116,93,115,99,97,109,116,101,105,113,110,109,91,104,102,105,116,106,110,108,93,105,80,103,94,106,97,102,96,116,101,105,111,83,83,107,84,90,95,104,105,104,108,103,115,105,111,97,95,105,83,98,91,94,114,113,87,97,100,106,93,106,96,96,96,115,97,66,94,109,80,92,94,95,111,98,85,98,103,103,109,98,103,107,97,89,89,121,96,96,100,83,94,97,108,94,93,88,103,98,106,76,97,87,93,91,81,108,107,93,102,87,128,97,117,113,95,95,103,111,98,88,88,97,88,90,101,97,88,93, +732.21838,123,92,101,90,97,99,97,78,89,106,103,107,82,100,101,96,95,105,99,97,101,104,111,114,101,104,104,92,114,99,98,107,93,103,102,94,98,87,95,105,96,102,96,93,85,98,123,116,93,110,92,92,104,107,90,106,96,106,89,86,108,98,98,83,95,102,86,99,95,102,84,88,121,103,100,106,83,96,90,85,94,108,100,91,94,101,116,93,100,81,97,96,100,107,103,103,88,92,96,100,92,98,91,100,110,95,80,104,102,99,88,102,97,99,94,97,92,99,103,95,100,100,103,98,104,102,101,84,107,87,108,94,89,90,102,104,98,96,80,100,117,90,102,94,100,95,108,89,95,104,101,103,120,106,95,95,103,101,101,94,92,102,99,101,96,94,95,87,90,97,94,97,100,70,90,98,101,102,91,84,104,90,75,83,95,112,86,91,114,90,104,80,103,101,97,109,97,98,104,87,106,94,101,93,119,107,90,98,105,97,86,106,99,91,96,98,96,104,86,106,106,79,89,104,72,100,94,108,107,101,95,91,108,105,101,110,96,102,100,101,95,87,104,99,94,93,96,98,101,95,115,105,118,93,95,92,86,85,100,88,82,101,94,94,87,104,103,92,106,87,93,97,136,106,98,89,97,105,107,102,96,93,96,102,110,91,92,113,101,99,101,90,104,100,96,100,99,88,95,100,91,101,94,101,94,91,99,86,103,95,97,107,99,97,93,91,86,90,90,97,101,94,98,113,91,105,97,94,101,95,110,97,100,95,98,110,99,99,98,98,101,60,100,104,109,102,92,100,110,97,91,112,98,105,107,103,108,100,101,98,92,93,99,76,83,92,99,98,68,108,102,104,100,97,106,99,103,92,106,101,101,92,93,113,95,93,97,112,76,89,95,81,100,90,109,101,90,98,87,104,98,106,106,108,98,100,100,98,98,94,93,94,100,96,100,93,98,101,102,113,98,97,84,98,96,86,94,95,102,106,81,93,125,97,93,91,102,104,93,86,99,102,93,103,96,81,106,103,102,105,84,97,93,106,94,101,91,91,96,95,93,109,89,101,83,107,96,98,95,91,104,99,108,112,83,92,107,86,95,107,103,100,102,105,81,89,91,94,115,93,99,98,88,98,98,93,101,81,99,100,107,90,93,98,97,100,96,98,108,101,88,115,95,100,104,100,107,93,98,107,101,94,102,102,89,104,106,99,95,101,93,100,99,108,108,120,102,98,94,102,98,104,90,93,108,96,95,100,125,102,104,93,99,93,93,103,60,79,96,83,100,99,101,104,96,101,95,102,74,91,97,88,102,85,113,111,91,87,96,90,94,98,92,104,104,94,112,97,100,100,106,94,106,94,103,116,94,106,106,98,94,91,95,103,98,98,95,91,106,105,109,95,93,100,104,97,92,93,81,96,111,103,94,107,95,95,83,109,103,105,96,95,106,113,105,93,92,95,91,105,102,92,98,121,88,92,87,93,123,101,93,98,104,103,97,100,108,101,92,116,105,99,91,104,88,91,104,96,98,95,106,90,96,102,106,102,92,111,81,87,96,98,103,90,87,99,106,96,80,97,109,88,97,98,95,97,86,106,101,92,94,97,101,98,101,91,113,116,101,93,82,87,101,101,88,98,104,110,91,106,94,95,90,100,96,80,91,98,98,109,107,108,99,94,93,87,99,87,101,96,99,87,101,105,93,109,100,103,101,87,109,92,99,75,121,101,94,96,98,105,89,99,95,97,72,95,100,97,101,91,104,106,102,103,99,100,105,103,99,103,99,90,110,100,96,112,89,96,106,117,103,103,105,110,90,88,99,99,101,94,100,85,90,88,100,105,116,100,98,95,113,105,113,96,102,99,113,100,98,93,88,103,94,92,97,111,106,95,91,103,87,105,101,101,120,104,107,100,79,94,91,91,112,92,103,94,95,82,92,82,104,101,86,114,87,94,84,105,101,92,106,92,110,90,99,91,96,102,97,99,91,98,89,97,105,106,100,105,97,101,107,102,97,90,112,93,90,108,87,90,102,93,98,98,101,83,98,87,103,104,96,99,89,100,98,93,98,116,87,100,108,99,109,96,94,106,87,96,105,104,99,101,86,108,97,99,96,104,100,94,89,108,103,107,104,105,106,107,103,98,96,100,84,105,103,100,102,102,101,95,101,107,103,108,96,100,90,105,94,82,100,91,94,97,104,105,111,84,104,86,89,95,102,104,81,97,104,107,91,88,96,76,91,101,98,90,105,95,98,98,91,96,110,89,97,100,76,106,102,102,91,99,99,89,98,98,85,94,70,86,100,98,99,105,101,98,109,96,88,91,99,96,99,109,96,95,97,100,96,99,106,93,105,89,101,95,94,98,94,105,97,85,97,101,108,101,108,107,87,98,100,110,98,96,91,97,98,125,100,97,112,95,104,102,103,92,98,93,94,92,105,96,89,89,94,87,97,98,91,90,96,98,95,92,98,98,83,96,114,98,88,100,91,85,105,109,112,94,104,93,120,98,106,106,108,99,95,107,96,100,91,107,86,96,113,87,99,94,101,98,96,100,93,98,101,97,104,101,107,109,99,103,95,79,109,106,91,100,101,97,98,102,96,123,101,97,99,102,106,87,97,88,96,113,98,96,93,92,100,94,100,83,102,109,99,107,101,87,112,94,84,92,100,113,93,97,95,88,97,94,101,97,95,88,93,98,105,94,106,100,99,97,98,104,84,98,105,89,103,84,88,105,93,83,109,105,107,106,90,86,81,92,88,97,114,107,102,107,96,100,106,105,105,74,101,102,98,104,95,102,93,95,106,96,104,93,98,88,102,99,109,98,99,107,98,94,94,113,99,104,92,95,92,95,94,94,95,109,109,84,101,98,92,100,99,106,104,97,88,98,98,97,96,114,123,66,99,105,93,95,93,94,94,92,106,100,97,79,102,93,101,115,104,97,99,107,104,97,102,104,101,101,102,101,121,96,105,90,98,99,101,102,92,96,95,107,103,96,89,95,98,101,99,114,108,100,104,101,86,102,106,101,87,97,100,91,92,95,101,99,91,94,102,92,95,90,106,93,94,99,98,111,93,103,88,108,91,82,99,106,83,87,107,94,100,98,94,91,91,92,100,91,106,108,94,90,94,102,98,93,89,105,100,100,89,86,105,99,104,92,93,89,101,101,106,93,96,105,106,103,101,94,95,96,108,65,101,96,106,103,109,108,102,97,100,97,105,105,101,99,95,98,96,99,106,98,87,107,107,112,91,88,96,96,96,103,93,99,113,90,102,98,102,102,101,105,97,98,94,97,101,91,97,97,105,107,106,99,94,91,98,104,92,101,98,98,95,97,99,97,99,102,98,111,117,101,72,95,111,96,96,102,108,107,110,91,83,91,100,91,101,95,95,101,99,97,105,83,92,92,98,98,102,111,98,97,91,94,98,115,106,105,98,100,92,90,97,99,92,111,98,96,104,98,86,103,92,103,105,94,104,92,79,101,96,104,101,100,87,93,93,102,103,105,105,101,104,99,99,86,116,94,98,99,93,101,106,92,88,101,92,98,101,102,106,109,93,95,102,104,110,102,110,88,109,100,95,105,98,97,87,86,105,99,99,92,104,100,104,99,95,107,99,95,88,96,87,98,110,98,94,91,102,95,93,103,99,96,103,119,97,103,92,105,98,98,90,93,90,87,104,95,104,82,124,100,102,93,91,92,88,104,108,88,104,92,110,109,101,98,107,88,100,101,128,87,109,103,116,108,103,95,100,85,114,94,109,96,87,102,107,84,111,100,103,108,99,92,101,68,97,103,86,116,95,101,88,98,103,98,102,89,101,101,105,98,100,92,98,104,105,101,100,102,104,105,100,95,96,97,99,99,97,109,90,101,94,94,77,97,86,96,98,104,93,96,108,93,91,94,114,105,108,98,97,102,98,100,107,95,104,88,101,96,94,111,98,104,100,95,100,92,94,97,91,99,101,100,93,109,92,99,92,102,86,95,94,111,103,104,98,107,88,96,103,86,89,95,97,101,88,87,128,110,105,100,95,96,89,100,110,97,98,102,107,103,109,91,102,98,99,90,101,94,99,109,105,88,107,92,100,95,87,109,91,98,118,103,91,106,91,99,103,109,100,95,98,92,105,101,110,86,94,93,94,90,88,95,92,95,102,107,93,98,92,92,100,112,99,95,87,96,97,104,93,101,99,97,87,98,93,102,102,97,103,88,108,88,105,97,110,78,96,89,88,109,95,98,111,86,83,97,85,103,100,98,86,126,105,91,102,91,99,98,100,98,101,95,89,107,102,99,97,94,103,90,118,91,93,101,100,104,94,104,95,91,96,76,99,93,97,100,90,106,94,102,97,96,104,86,101,101,108,102,90,100,106,95,93,102,104,103,109,100,98,87,97,106,96,103,95,96,88,104,95,89,72,99,104,95,105,107,96,106,85,99,95,96,100,102,101,95,102,105,101,96,80,89,98,103,104,105,94,87,109,101,103,109,91,91,100,97,102,94,108,109,97,99,100,91,93,97,102,85,90,102,95,94,96,97,90,101,93,108,66,96,102,83,104,102,110,106,95,98,113,101,96,106,87,98,92,97,89,103,95,83,100,96,113,101,105,104,90,116,105,92,88,97,94,94,100,99,89,98,98,90,109,95,104,106,100,94,86,100,111,106,96,100,104,92,83,89,97,87,91,100,108,77,94,105,102,96,109,100,103,97,89,94,101,90,92,101,87,92,87,90,95,91,98,100,108,97,94,106,95,95,109,88,104,113,96,77,95,104,104,87,92,91,94,93,100,106,83,96,88,92,98,71,95,88,108,87,97,87,99,109,91,99,87,94,99,121,108,98,100,104,94,98,110,91,103,102,100,80,102,101,100,104,87,137,129,98,111,102,94,93,100,106,88,109, +732.3598,114,110,107,104,87,102,109,98,102,86,93,103,88,86,66,89,93,103,113,95,97,105,102,130,98,89,97,89,103,104,83,96,83,100,107,94,99,94,106,81,103,96,89,109,102,105,87,110,104,104,111,100,100,107,97,104,101,105,102,94,85,98,96,103,98,100,89,108,90,79,99,99,99,97,90,105,117,96,122,102,102,113,73,103,108,109,97,88,92,101,92,93,98,95,94,89,107,107,83,93,80,99,99,86,93,100,99,97,88,94,98,95,93,97,96,95,92,115,109,102,95,99,105,103,98,109,98,130,93,88,96,95,88,89,99,99,93,98,103,98,83,112,93,107,98,80,98,91,91,89,95,97,98,94,85,100,102,104,95,96,101,109,101,85,109,94,100,87,107,78,108,108,101,104,93,90,100,108,117,90,93,94,102,94,104,94,105,90,91,99,103,93,97,98,83,97,88,102,102,105,104,107,101,104,77,99,97,98,103,99,102,86,87,99,101,97,112,103,90,107,108,90,93,105,107,101,101,108,109,95,86,112,81,104,99,100,91,92,96,104,87,97,108,98,68,99,87,100,106,92,88,107,101,116,94,105,98,102,91,97,86,94,89,82,83,84,101,98,94,80,89,101,104,93,98,92,84,84,94,101,101,102,110,93,90,114,93,108,107,110,99,111,94,91,70,107,94,97,113,101,100,98,90,102,96,96,89,98,105,114,96,103,99,94,89,115,104,96,91,98,97,114,98,82,114,101,97,102,116,100,103,99,90,98,98,95,103,91,96,95,93,102,86,91,91,100,83,115,107,96,102,91,100,94,99,105,104,107,102,94,97,103,101,66,104,92,103,104,95,93,89,93,101,102,103,108,102,97,96,98,106,97,87,101,96,82,95,98,103,97,106,96,97,102,103,87,100,83,102,75,96,87,104,97,93,88,106,101,95,96,90,87,102,102,98,101,100,95,100,89,91,78,106,101,88,89,103,97,98,102,88,91,104,96,100,87,101,99,100,97,111,101,101,92,103,100,92,97,107,109,102,101,94,107,75,99,97,98,98,102,96,95,93,100,105,103,110,94,88,100,106,101,98,87,86,96,95,99,97,105,86,94,105,105,76,83,107,97,123,96,115,102,92,99,78,93,94,100,88,94,103,101,95,100,96,92,87,92,84,91,93,97,94,101,97,101,89,92,97,86,96,88,90,104,99,87,94,94,94,106,82,109,86,105,94,101,101,109,106,98,99,99,97,99,81,92,113,95,107,91,129,92,107,87,101,88,96,96,93,92,99,84,94,101,96,90,92,101,100,98,98,89,92,92,90,106,64,102,85,105,103,96,94,90,99,92,99,102,108,86,115,109,87,95,99,105,104,94,100,82,105,98,119,100,94,100,91,89,95,105,86,107,112,93,95,90,106,97,105,97,94,96,95,101,100,100,88,97,103,93,102,99,88,97,96,97,100,96,107,89,94,93,95,95,93,86,89,90,99,90,90,87,91,99,91,101,101,112,111,96,96,97,98,95,89,124,105,91,100,97,113,91,99,108,98,102,99,97,90,92,104,104,96,88,87,90,95,86,84,100,93,93,96,92,114,96,92,97,89,103,96,91,90,100,86,100,92,97,100,101,100,92,94,97,99,94,89,98,100,94,96,111,96,90,89,101,97,103,87,100,104,96,62,96,98,96,84,93,102,97,100,102,93,107,99,113,103,102,93,104,108,96,104,108,98,109,85,92,100,101,90,106,99,106,87,94,78,98,111,98,118,96,88,93,100,99,92,100,104,112,103,92,113,108,100,109,104,120,109,102,98,96,114,103,96,92,96,97,100,101,104,94,101,81,98,94,105,102,86,87,77,97,101,94,121,94,103,93,98,99,100,95,96,98,94,97,98,106,94,105,92,97,72,107,102,104,100,100,88,95,87,98,102,87,102,89,112,79,97,86,89,92,92,106,91,93,103,112,105,96,106,91,101,92,83,93,91,96,98,103,72,114,105,98,96,99,96,87,99,101,104,101,92,108,92,98,93,94,97,102,112,99,94,93,105,86,96,99,98,100,94,103,97,108,105,112,92,101,95,106,98,112,95,110,96,97,93,87,83,99,92,89,98,90,99,111,91,108,99,82,114,105,101,107,88,95,98,80,96,101,95,93,91,89,95,101,84,90,91,87,89,105,95,109,101,101,98,83,96,102,101,101,105,90,102,99,90,93,96,100,88,97,97,97,105,96,99,93,93,97,107,97,99,98,101,94,105,70,100,95,88,101,88,98,100,92,109,103,119,92,97,106,94,90,102,112,96,106,94,93,83,90,95,105,102,92,102,98,89,101,103,86,96,85,98,103,96,93,79,99,93,105,96,92,100,97,94,105,94,105,85,100,103,94,98,102,92,110,97,90,94,105,97,100,99,93,99,99,103,107,97,103,113,100,101,94,86,95,106,93,101,116,89,91,103,93,108,86,98,97,101,89,79,101,108,108,99,105,94,99,78,93,94,106,94,94,101,112,99,93,100,101,91,95,100,101,84,110,91,102,91,96,104,90,98,96,103,104,109,105,109,93,89,100,98,101,99,95,104,98,93,119,106,104,95,105,97,87,93,96,113,73,90,97,102,96,92,102,97,93,104,100,112,98,89,100,95,92,105,95,108,93,102,93,86,100,90,101,106,80,95,93,93,103,91,94,98,93,88,106,95,98,101,104,87,97,104,99,93,97,92,99,98,101,100,80,105,81,101,98,104,95,106,106,90,104,88,107,100,96,101,95,117,104,101,108,90,95,113,105,97,97,99,97,99,122,92,104,96,100,80,95,104,120,103,98,98,99,100,102,100,63,73,90,92,107,94,101,100,100,105,107,83,106,97,97,108,98,102,110,93,89,92,113,109,103,96,102,101,105,96,99,95,106,99,104,76,99,100,109,93,102,98,91,99,104,95,93,87,79,100,104,87,104,105,104,95,104,96,98,119,101,99,88,81,97,98,94,103,101,95,97,106,101,96,95,88,98,96,91,108,95,101,105,87,104,98,95,101,102,102,93,97,91,97,108,93,105,97,102,104,97,111,90,105,104,104,98,91,105,101,99,124,105,96,97,94,94,90,103,104,103,103,94,110,83,90,92,89,85,103,98,108,105,91,102,96,79,97,95,94,99,107,110,101,96,89,96,102,103,94,100,96,104,127,100,97,97,100,99,98,109,108,99,109,90,112,102,109,108,108,109,71,104,101,94,102,113,95,103,91,97,110,99,92,96,105,130,97,105,94,99,91,94,94,94,102,103,91,89,98,95,98,104,90,95,101,98,95,97,103,82,95,97,112,104,96,92,111,90,102,115,102,110,97,96,98,90,88,99,90,98,120,96,129,104,101,89,108,99,91,92,95,98,95,94,106,94,94,94,104,77,90,108,97,101,112,100,106,89,94,87,107,107,105,99,99,93,96,99,98,98,90,96,92,84,122,103,109,101,92,82,104,96,103,105,98,96,105,71,103,93,90,89,97,94,99,91,104,88,97,97,91,93,89,93,106,99,86,99,101,94,94,99,97,97,94,91,93,97,94,94,97,99,117,102,93,98,120,106,104,86,98,96,117,99,102,99,105,95,97,98,93,102,88,99,95,108,79,99,92,99,92,96,84,91,102,98,99,102,96,123,112,114,101,88,106,91,105,105,105,98,97,91,102,102,88,90,92,95,90,95,99,97,85,102,109,93,111,97,99,95,102,98,105,93,89,95,97,87,100,97,109,96,104,91,103,103,104,102,109,93,95,99,94,94,92,107,95,101,91,105,87,70,98,95,97,77,85,121,93,113,89,102,97,89,99,101,99,102,105,87,99,91,94,99,106,102,103,90,108,106,104,83,92,91,107,95,93,112,109,96,101,106,109,98,101,85,82,96,101,102,102,89,96,99,98,98,97,97,91,96,96,100,109,102,105,90,98,93,101,102,89,109,101,99,108,90,109,91,107,101,98,99,94,104,93,109,78,95,100,94,96,102,95,82,90,96,93,95,101,100,98,91,95,93,89,95,97,89,101,101,91,102,89,93,96,89,102,97,95,95,105,97,101,96,90,109,109,96,95,132,88,106,109,95,101,98,104,109,97,90,91,94,101,108,89,103,91,109,99,91,82,91,93,103,96,96,91,99,110,97,94,89,111,92,99,99,103,106,101,105,105,97,95,106,100,97,102,102,104,102,95,97,92,97,106,106,96,110,87,108,84,109,105,63,101,80,101,89,80,87,80,101,94,95,98,103,97,103,94,91,103,110,92,100,100,109,102,106,100,94,107,102,96,92,101,94,103,103,94,109,97,94,88,102,101,92,104,83,103,100,109,94,106,99,97,98,100,105,101,93,108,100,91,88,107,92,89,91,92,97,100,108,95,88,96,90,102,96,97,80,84,105,105,100,99,102,109,81,107,89,102,91,84,95,80,96,76,86,118,97,87,108,98,98,85,99,93,103,104,103,86,95,87,97,88,110,97,99,105,91,109,87,109,99,111,110,97,100,97,95,98,108,108,98,85,113,101,88,109,98,94,88,90,94,96,103,111,72,100,120,96,104,117,102,100,88,96,90,93,104,92,100,96,102,101,112,97,104,100,93,103,102,101,82,101,104,103,99,106,93,96,113,104,105,94,96,104,95,99,96,107,100,109,104,116,92,97,96,96,102,96,99,83,98,103,90,73,96,104,107,97,103,107,92,99,105,93,97,102,104,102,90,101,77,100,93,91,90,93,102,99,92,105,101,98,92,98,115,106,110,88,90,106,94,83,107,97,91,99,97,98,105,100,94,112,101,87,91,103,120,97,87,95,78,98,100,99,105,105,78,101,103,98,93,94,111,88,107,103,100,90,97,116,101,96,86,98,97,93,104,109,101,93,93,110,93,99,86,98,89,93,84,115,80,95,97,91,89, +732.50116,109,103,92,90,95,95,100,110,93,98,97,60,103,98,105,79,97,96,89,108,104,90,95,94,80,110,95,98,98,104,90,88,99,80,99,94,97,88,103,95,102,110,90,100,92,113,96,99,96,102,98,99,91,101,90,98,102,105,104,98,94,89,90,80,96,106,83,95,96,71,102,98,92,100,97,99,100,87,102,101,106,87,102,88,98,96,86,93,113,92,100,98,91,96,91,92,102,110,86,110,99,105,92,97,99,96,109,94,97,88,115,101,95,105,86,97,101,85,105,92,107,94,100,95,99,105,105,94,101,108,105,103,96,94,113,106,101,91,102,97,107,91,93,99,103,105,101,96,101,94,99,105,99,86,104,99,95,100,95,94,94,102,103,104,98,94,96,97,105,96,98,93,98,94,103,98,96,93,97,97,89,109,103,91,103,107,95,91,109,75,98,94,80,93,108,99,105,106,97,93,90,95,108,97,101,93,99,82,112,104,86,82,97,99,98,97,113,95,102,99,106,99,107,91,94,102,106,106,105,96,107,95,102,104,107,102,94,99,109,108,97,96,97,108,97,96,90,106,97,95,91,103,109,101,103,98,101,96,98,90,86,89,129,98,100,103,105,98,98,96,96,99,100,110,110,97,96,101,101,93,106,96,94,97,99,100,95,100,91,104,85,105,109,94,95,98,96,83,100,109,96,101,90,100,94,100,92,102,96,95,109,101,104,96,83,97,70,90,99,96,96,90,94,113,92,99,103,98,99,92,101,103,93,96,106,109,100,88,86,85,112,93,75,106,95,63,98,98,105,91,96,102,103,108,96,92,101,94,100,94,90,83,93,73,95,97,97,106,98,102,109,90,106,100,97,103,99,102,98,103,112,106,96,105,96,104,99,99,99,91,100,92,94,106,97,89,98,91,99,114,102,107,86,78,99,89,103,90,81,94,100,97,99,97,97,95,94,99,106,96,103,99,97,105,107,93,91,93,98,98,101,92,95,96,107,104,87,98,93,107,89,105,100,103,98,93,98,93,97,101,111,91,104,93,99,95,101,108,103,100,97,91,100,89,112,104,99,94,100,108,91,101,103,99,87,97,100,107,92,113,95,107,106,99,97,92,92,99,100,103,96,98,103,85,74,104,104,105,100,97,97,87,103,102,97,97,94,106,103,96,90,100,96,106,94,103,97,97,105,108,101,98,94,86,99,98,106,87,84,100,88,102,95,102,102,95,69,99,118,90,99,122,97,87,94,95,97,98,107,95,94,92,96,100,91,84,92,93,98,83,102,108,92,98,99,96,107,75,102,91,77,114,105,100,92,108,108,91,90,103,111,102,87,101,94,102,98,96,101,91,106,103,86,107,105,98,105,102,99,90,87,88,109,92,94,98,96,84,97,107,89,100,101,82,114,88,99,92,99,94,92,92,97,96,107,96,95,104,89,92,95,92,106,104,96,99,95,103,105,91,98,98,103,95,98,95,89,112,109,105,68,91,98,85,95,94,110,101,98,95,101,80,100,90,89,87,106,94,82,97,117,95,106,90,86,90,98,100,104,96,95,83,88,94,93,100,93,107,95,112,96,90,96,102,104,96,74,99,103,94,98,88,97,102,105,99,97,114,88,99,106,108,81,87,82,102,86,98,100,91,98,104,90,101,98,97,97,93,91,100,103,95,100,110,96,105,101,89,88,106,91,104,104,107,88,92,94,99,80,96,96,87,107,80,105,101,93,89,105,109,96,96,84,105,91,100,89,97,107,92,103,98,106,100,96,96,61,99,96,96,113,98,97,93,85,107,92,85,107,108,95,95,96,95,106,101,100,112,93,97,97,89,107,106,93,112,114,101,90,101,112,103,83,101,101,100,96,98,90,92,105,88,94,95,101,96,102,92,100,84,96,92,97,96,98,87,99,93,103,95,92,100,105,82,92,109,95,103,98,110,94,101,106,94,97,99,94,97,99,103,94,94,97,90,132,104,94,98,100,108,96,99,99,101,96,97,101,100,89,87,103,105,104,70,85,92,91,77,100,102,82,87,102,101,91,100,90,100,91,101,95,103,108,103,93,85,106,110,96,91,101,103,108,99,109,91,92,102,103,94,132,108,90,95,107,81,98,101,98,106,96,98,109,93,95,120,78,103,99,109,98,98,91,103,104,106,98,106,107,96,100,80,88,102,102,91,113,93,90,102,90,92,85,92,85,92,99,110,97,94,100,99,101,98,92,97,102,93,92,98,83,98,101,101,113,90,104,100,82,107,103,98,105,103,92,97,67,102,91,102,101,104,91,100,79,114,96,102,82,79,94,102,100,96,96,98,95,83,106,92,108,97,95,92,121,112,100,102,107,104,95,92,100,88,105,92,98,113,106,103,103,92,100,97,95,88,99,95,104,102,95,111,99,93,100,104,95,96,98,103,86,92,102,98,105,91,102,96,102,90,104,90,104,107,93,88,120,94,107,89,109,93,95,108,105,91,99,106,111,95,94,113,96,95,90,98,107,98,105,101,92,90,114,99,107,101,112,90,101,98,111,100,100,97,94,118,116,98,89,94,97,110,100,87,101,100,102,89,105,109,101,96,104,98,98,106,95,94,103,84,105,91,101,101,107,92,105,71,103,95,108,100,105,101,83,99,104,101,99,93,105,83,109,104,97,98,100,103,106,116,101,102,90,104,108,100,101,102,111,83,108,100,91,97,104,105,103,102,87,109,100,108,106,91,101,105,104,88,97,93,92,97,73,91,102,96,81,109,86,96,103,102,101,88,100,98,96,109,94,95,95,108,92,84,99,101,86,94,104,91,99,100,94,97,113,88,102,101,106,96,104,87,108,97,98,105,98,112,96,103,102,100,98,84,98,117,99,94,93,97,81,91,108,90,104,103,91,84,79,105,106,100,87,110,98,103,107,112,88,111,88,102,95,83,95,101,99,98,103,100,105,97,68,108,96,94,102,99,98,99,113,104,95,101,91,105,93,113,98,96,96,76,75,75,104,92,100,103,110,92,117,92,105,103,92,101,105,100,97,103,95,96,107,111,100,93,105,104,104,92,99,93,98,91,108,102,102,92,91,111,109,105,93,89,96,94,96,97,97,98,121,92,96,101,110,91,98,111,110,97,99,98,90,111,94,94,113,113,105,96,96,97,91,99,98,91,92,104,95,101,79,95,89,99,106,100,106,93,91,108,108,99,103,102,91,105,100,91,109,101,100,98,106,104,106,92,96,101,101,101,91,102,98,92,102,94,92,97,112,94,99,93,110,110,109,89,96,116,100,85,110,87,103,102,93,96,100,98,95,114,104,77,112,103,100,93,105,96,105,96,90,83,97,100,110,98,89,96,95,99,108,97,97,104,98,119,100,95,109,98,106,109,94,120,114,103,99,91,99,96,104,95,103,104,96,95,109,95,113,97,94,97,102,114,101,85,102,100,102,94,102,100,90,113,79,94,95,100,93,94,94,89,99,113,90,115,93,104,93,97,106,102,113,96,94,101,95,116,98,106,99,99,105,93,81,105,87,107,95,93,99,101,94,104,92,100,95,97,94,95,101,108,92,102,92,111,88,103,105,102,107,102,106,101,109,94,106,135,95,92,100,92,92,108,109,102,96,102,101,100,107,104,85,97,93,102,106,90,103,102,89,93,98,100,91,105,93,94,101,110,103,99,101,104,89,91,86,95,83,99,98,99,90,100,88,99,113,96,98,97,94,88,107,104,103,110,90,104,95,87,89,78,94,112,92,87,97,112,92,95,100,95,102,92,102,105,101,91,80,72,80,100,109,90,101,91,107,89,93,98,96,105,101,100,99,97,90,99,105,106,101,87,107,107,97,109,98,86,63,106,101,108,97,79,105,97,98,96,94,88,96,97,73,100,100,85,87,117,82,92,105,95,101,99,92,102,95,100,99,113,91,101,92,94,89,102,109,91,111,80,102,100,101,105,105,101,91,110,102,91,106,105,105,92,92,107,99,114,91,105,78,115,93,114,97,111,82,100,93,95,78,101,101,89,101,58,92,97,108,92,100,91,100,111,100,101,108,109,103,102,103,108,101,95,112,100,101,104,93,97,103,90,99,101,100,98,100,96,94,102,113,92,91,113,95,95,93,104,103,102,95,97,103,100,102,95,98,93,81,96,98,93,90,104,93,93,105,103,104,95,107,108,80,118,97,101,101,103,92,91,99,98,104,110,107,81,104,95,107,108,115,99,113,99,92,94,99,92,85,99,88,89,97,95,105,101,96,98,106,85,98,96,102,97,95,110,90,112,100,98,94,104,96,112,101,97,89,96,91,97,99,101,104,108,96,102,97,100,88,89,98,113,98,117,103,103,98,101,107,91,103,101,97,87,102,94,103,99,98,116,97,104,91,114,94,101,98,95,99,105,98,108,113,103,106,103,95,72,98,94,85,86,104,99,97,104,96,92,98,95,104,104,63,98,103,92,103,98,82,109,107,105,102,104,112,95,88,84,105,107,106,96,91,91,113,96,96,112,102,94,101,100,98,106,99,106,108,109,83,96,99,95,109,106,101,87,111,95,105,103,102,96,99,103,103,102,94,96,101,94,91,107,104,109,109,115,102,87,102,102,98,88,103,112,111,96,79,94,101,96,96,109,105,91,103,104,93,100,98,90,117,95,95,99,113,105,111,103,114,102,103,106,105,105,102,106,102,121,91,89,106,110,107,99,89,99,111,102,101,104,90,105,111,102,119,99,92,106,93,101,90,89,102,109,99,108,115,84,98,102,109,111,97,99,99,93,94,117,98,101,110,105,92,87,98,99,101,95,86,93,98,95,102,90,97,102,89,113,88,106,110,62,103,96,99,124,93,97,84,113,69,106,103,101,93,102,102,105,99,95,100,106,98,96,105,111,98,83,100,95,80,106,113,97,63,96,98,95,102,103, +732.64258,121,99,105,91,95,104,99,109,97,100,110,87,94,97,102,101,99,89,111,97,100,95,101,92,93,104,98,90,108,83,114,98,95,101,101,94,104,95,97,108,106,109,113,101,101,116,94,114,91,96,113,78,107,94,106,97,106,95,109,105,91,98,105,96,95,99,110,107,99,104,104,99,74,101,92,97,96,95,113,92,108,95,106,102,88,99,108,118,90,101,101,94,101,92,84,104,99,99,88,107,102,124,93,97,93,106,82,90,87,95,97,111,99,91,98,90,101,95,100,96,102,96,99,110,121,107,88,102,88,96,95,132,96,94,85,109,100,99,93,107,113,101,105,112,98,99,99,102,98,107,100,106,109,103,86,103,93,109,103,101,97,96,94,87,100,95,91,104,110,86,102,94,87,87,110,101,88,86,105,98,95,90,95,111,111,98,94,118,105,91,96,115,84,114,104,99,102,109,101,104,87,90,98,92,97,103,101,89,98,96,84,102,102,101,104,99,98,90,102,95,83,114,84,97,101,99,96,95,99,113,102,103,104,107,96,101,90,110,97,99,99,103,108,116,71,96,101,101,117,102,92,95,97,102,103,95,94,101,99,95,95,93,98,109,105,110,106,102,105,92,100,90,103,98,105,97,93,106,82,98,95,103,100,98,91,106,94,107,100,101,101,102,105,98,116,97,97,102,112,100,105,91,108,100,102,130,95,109,101,99,102,113,91,96,93,99,96,96,95,108,98,105,102,97,86,96,96,64,82,114,98,107,99,101,111,92,97,89,87,94,100,98,104,65,105,113,86,91,104,94,98,92,101,97,103,110,86,105,106,94,101,100,102,90,106,97,87,105,93,87,95,100,94,107,96,98,96,79,94,98,96,100,97,106,96,98,101,94,101,101,98,95,101,115,86,94,100,94,96,110,102,98,102,82,90,96,97,100,97,100,93,104,92,92,99,97,99,96,90,87,104,82,92,106,87,100,104,94,102,98,104,86,101,103,99,112,91,110,95,92,101,98,95,107,104,103,101,93,99,102,91,100,87,96,91,87,98,100,124,102,96,82,106,104,98,108,98,99,95,65,88,95,109,88,100,96,98,111,97,93,101,91,98,104,106,91,105,107,100,106,95,111,91,116,91,87,93,103,100,95,88,101,108,109,94,102,97,109,112,86,90,100,110,105,101,94,91,96,101,92,96,105,112,79,103,99,106,92,98,95,102,114,101,95,96,92,99,104,100,105,95,104,86,98,99,101,94,112,97,109,121,103,100,106,107,98,97,91,100,101,96,89,97,99,97,92,120,103,96,90,90,94,94,102,87,97,97,92,103,100,102,94,99,100,103,106,98,96,99,93,100,95,101,95,110,98,102,107,107,98,99,98,115,89,100,99,105,85,97,107,98,105,105,100,101,102,110,105,106,97,103,92,110,89,95,107,94,102,93,110,97,88,98,91,101,88,104,112,122,105,103,96,108,111,91,97,95,91,102,95,98,101,105,94,97,95,110,97,100,90,99,87,98,88,89,97,100,101,112,97,95,104,80,100,97,94,89,111,98,91,100,102,102,85,88,101,79,96,109,116,101,96,95,91,90,95,95,90,80,90,85,108,101,83,109,106,105,91,83,96,112,95,99,107,102,101,103,96,88,102,97,60,106,108,87,95,95,95,99,108,97,110,97,98,66,103,99,88,115,100,105,103,101,90,102,104,79,102,99,108,121,93,92,95,91,98,109,126,106,94,105,93,94,101,95,101,86,95,80,93,105,103,104,100,102,95,101,95,95,93,96,100,101,106,102,106,91,108,92,105,100,99,100,105,94,96,96,91,74,105,102,92,103,99,102,111,106,110,104,94,108,98,104,92,98,92,105,109,95,98,97,98,103,100,102,113,96,88,104,91,104,96,96,98,80,104,100,97,101,99,97,91,98,95,93,95,91,91,101,95,96,96,106,99,77,97,107,107,98,101,105,100,100,97,96,98,89,101,94,103,87,105,103,110,94,91,109,89,94,99,101,96,105,103,108,107,89,112,91,129,102,96,93,101,98,86,87,108,92,100,89,97,101,103,104,100,105,98,96,106,100,98,106,104,102,100,88,99,105,111,116,106,99,106,104,94,90,75,93,96,100,96,103,95,96,98,87,99,116,108,104,92,110,105,104,100,103,92,102,99,102,98,116,109,93,102,110,122,100,100,84,108,77,93,95,96,98,99,86,102,98,103,111,100,93,108,91,104,90,106,97,103,95,95,102,109,106,96,111,98,104,112,95,106,108,100,100,100,119,103,108,92,108,101,106,91,102,87,94,103,86,102,81,78,105,101,102,102,86,100,100,109,98,102,90,91,76,98,97,87,107,99,101,96,98,94,89,100,106,106,96,99,97,93,96,83,98,112,84,105,98,98,94,120,94,98,100,106,101,109,87,102,110,104,104,105,100,95,95,99,97,99,101,90,104,101,105,103,108,97,92,104,81,91,89,113,105,97,109,107,97,105,105,107,98,88,90,95,99,106,105,103,104,88,90,102,91,102,103,106,103,103,102,104,108,95,102,101,91,97,98,86,93,105,94,100,99,103,97,109,101,98,107,95,101,103,108,100,105,95,110,103,117,107,95,81,111,105,94,101,110,92,94,104,107,84,106,104,98,89,101,88,93,101,99,98,103,101,88,102,100,95,108,97,93,110,97,112,99,95,102,102,74,96,105,87,98,98,76,91,94,109,104,104,89,102,112,93,96,92,104,111,95,102,87,104,96,95,94,97,100,98,90,103,111,99,101,91,99,109,98,98,95,99,100,100,87,112,100,90,103,95,95,96,112,71,78,109,112,113,98,94,102,105,106,107,103,98,102,80,95,87,87,114,109,86,91,91,100,97,107,101,106,99,94,96,112,98,92,107,109,96,101,101,100,101,89,102,87,104,108,104,105,85,94,105,106,117,105,102,113,98,102,92,95,107,100,92,113,107,106,95,97,93,90,91,103,113,105,101,92,114,91,91,98,107,99,96,105,91,110,97,98,105,104,107,99,96,94,88,95,95,102,116,106,100,87,102,94,105,91,105,101,97,95,87,101,94,94,93,112,92,92,109,100,95,90,95,101,91,100,100,101,107,99,98,94,108,99,100,98,110,102,108,107,83,94,93,101,105,96,96,100,98,117,103,101,95,111,103,100,86,99,102,99,90,94,104,103,98,103,95,95,100,100,100,100,107,96,87,101,100,107,100,113,103,102,94,91,104,90,103,99,92,91,96,76,95,127,97,105,101,106,111,112,93,95,106,100,104,109,108,96,89,95,98,94,101,126,87,97,105,87,96,105,94,98,98,92,89,104,106,91,107,95,93,103,88,108,103,97,118,105,97,89,99,102,113,99,93,73,101,90,99,89,104,87,91,95,101,90,96,100,94,102,100,94,98,100,103,87,107,107,106,105,99,91,87,94,99,101,97,97,98,97,104,114,95,94,105,95,97,93,105,88,108,102,90,100,96,97,96,98,97,101,98,97,107,93,95,101,102,97,110,97,87,83,100,100,91,99,102,107,91,101,109,95,115,95,86,97,70,100,103,96,109,101,101,97,103,102,91,98,95,107,107,101,94,99,103,97,101,95,99,98,97,93,108,106,96,100,98,107,105,98,94,100,99,100,99,88,112,96,92,99,88,109,98,104,86,81,101,101,86,101,96,107,100,96,94,116,105,89,92,98,89,102,111,109,84,101,109,97,108,90,98,99,94,99,102,92,95,100,96,110,102,94,107,97,97,112,98,94,79,86,104,97,96,105,107,96,106,121,110,91,94,99,106,104,120,105,97,102,112,97,95,97,97,89,105,105,87,88,96,84,109,105,110,90,89,98,107,104,99,98,109,98,95,85,103,98,103,96,106,96,103,80,104,87,107,103,106,102,107,99,90,100,91,93,101,86,104,98,96,104,101,104,92,106,92,95,100,104,101,96,105,90,95,93,96,97,96,88,98,95,106,99,109,95,99,105,124,102,97,91,91,97,99,100,102,112,110,94,93,104,100,98,96,106,110,104,94,101,96,106,91,96,98,99,88,104,98,102,100,97,90,93,99,99,108,91,106,100,104,101,105,104,108,106,104,101,97,94,100,112,102,93,100,99,75,107,100,92,107,102,104,94,98,98,106,96,86,105,97,95,101,107,101,110,87,98,105,93,106,104,98,103,95,94,87,99,109,88,90,90,106,96,102,107,81,98,103,95,95,129,109,97,102,100,94,98,100,96,85,104,105,99,94,102,93,91,80,105,99,96,101,116,103,99,101,129,101,104,89,105,99,93,89,86,102,102,97,101,92,109,95,72,94,100,106,101,107,95,98,83,117,93,106,97,89,115,93,96,105,95,103,95,94,100,86,93,99,103,105,104,93,87,91,95,106,101,95,102,96,92,107,91,100,110,104,107,83,107,110,78,98,95,97,100,95,98,97,96,100,100,94,109,99,99,114,90,100,105,95,113,101,97,99,97,87,101,93,68,98,92,107,97,98,95,85,96,101,100,106,102,108,104,101,112,98,98,101,100,95,100,82,104,95,105,91,113,108,99,94,99,94,111,102,90,95,99,99,105,99,92,98,103,107,104,108,112,87,97,83,99,96,99,109,110,104,94,104,117,104,99,103,88,103,99,101,106,95,97,97,105,88,106,84,95,96,96,102,97,95,108,101,103,88,105,95,103,94,101,94,99,100,97,103,105,99,102,107,103,94,102,94,101,99,95,110,65,104,99,101,97,99,99,72,110,100,96,106,100,105,107,90,91,108,91,98,105,94,92,97,94,101,100,115,105,108,105,98,104,95,96,98,96,103,108,108,93,100,93,109,104,109,100,99,99,100,103,97,91,100,72,108,103,98,118,89,103,104,74,94,117,93,105,122,100,96,91,101,111,107,103,89,98,112,99,83, +732.784,110,89,97,106,94,88,102,90,86,109,105,89,90,100,101,102,96,94,98,94,101,96,96,115,102,99,95,76,90,103,96,83,103,104,101,98,89,111,101,85,99,93,115,97,98,90,108,98,89,103,107,97,85,101,104,95,98,116,103,88,107,93,99,98,94,88,93,92,86,86,120,111,86,106,92,104,86,103,97,91,93,92,99,98,82,97,97,105,86,99,94,95,90,96,94,103,98,95,86,91,90,93,87,95,104,96,93,108,102,95,97,104,102,99,101,99,96,98,92,92,94,87,91,102,105,104,103,101,99,100,101,91,94,100,98,91,105,94,109,98,92,87,82,95,117,96,105,98,98,100,109,98,109,98,96,99,102,84,92,96,91,98,92,110,101,90,97,84,96,92,103,97,92,99,105,97,86,94,97,92,98,92,98,103,95,98,97,92,83,94,92,99,104,100,101,97,98,98,86,99,100,93,92,90,93,105,93,97,107,105,93,82,97,109,96,98,99,87,91,96,85,111,94,87,101,95,86,107,102,102,108,91,80,103,100,104,86,95,99,91,75,96,88,112,97,94,106,93,100,96,106,91,102,111,93,114,92,95,90,105,82,98,98,95,97,98,97,92,91,78,93,112,102,88,97,94,94,102,90,95,83,91,103,115,98,99,86,102,88,104,98,98,88,96,91,105,91,102,84,112,107,97,105,98,91,104,100,100,97,99,88,89,100,71,99,95,97,108,98,90,87,98,98,98,76,102,100,91,103,95,84,90,99,99,96,101,79,96,86,91,94,106,95,101,96,91,90,90,89,96,99,105,106,108,98,92,96,67,102,107,97,93,90,92,87,99,94,102,91,105,96,108,88,89,102,103,98,105,92,108,103,106,99,102,94,105,87,104,94,98,99,88,96,95,92,94,100,98,93,107,96,101,106,98,97,85,100,98,112,104,89,86,95,89,101,104,102,97,95,93,96,93,109,91,98,105,107,84,81,94,103,100,103,94,106,91,95,102,88,92,110,92,87,97,87,98,83,94,89,95,90,85,98,106,109,100,106,109,97,99,96,92,99,98,93,99,102,101,105,98,98,100,105,97,92,96,102,95,97,115,93,103,105,101,98,100,102,95,87,98,109,106,90,105,91,99,94,95,97,97,95,89,101,99,101,94,87,103,91,79,94,92,99,102,103,95,99,92,108,94,96,94,97,105,98,102,108,105,103,96,95,93,92,102,106,97,88,95,88,95,96,104,99,91,94,98,93,93,106,115,73,101,95,95,101,95,102,113,95,85,99,95,89,110,94,96,100,95,96,107,96,85,104,100,90,100,101,102,98,95,109,98,92,105,87,100,98,96,103,96,98,106,102,102,105,93,104,91,86,103,96,96,101,94,101,93,103,88,103,106,110,86,99,97,93,90,96,109,83,96,104,89,100,95,107,98,90,107,101,109,106,88,102,101,82,104,107,101,92,97,98,96,99,104,98,94,88,92,114,101,97,91,97,93,101,90,104,113,104,97,92,101,91,109,97,109,83,87,98,94,101,95,92,102,113,106,85,77,104,96,106,100,100,90,95,98,97,99,94,104,100,97,97,102,88,96,110,101,109,96,91,90,89,100,88,104,95,88,107,100,99,91,97,97,95,101,92,94,110,94,92,90,107,97,87,88,101,89,110,98,103,121,97,89,104,95,102,88,104,99,104,98,86,104,99,101,107,95,98,97,101,79,101,98,105,94,100,87,96,95,99,100,93,87,93,84,83,98,101,100,101,93,92,106,95,96,107,101,90,70,104,101,90,91,99,103,102,98,95,105,92,103,95,99,94,105,100,104,96,97,83,95,85,89,95,90,73,99,117,93,101,108,92,94,103,109,106,102,89,96,101,98,110,95,109,110,103,94,109,105,101,101,94,104,91,99,101,103,100,79,93,106,84,91,89,93,82,87,93,93,108,87,81,103,104,101,101,86,100,91,97,96,90,99,94,100,94,103,108,94,94,89,88,102,89,107,104,87,102,102,99,92,91,98,105,99,87,105,99,104,98,89,92,80,103,87,100,110,106,96,92,102,91,89,101,103,106,98,96,98,113,103,95,100,85,100,82,106,132,102,97,93,82,97,89,106,97,90,99,94,66,95,70,93,82,102,108,102,98,100,108,86,91,95,95,103,99,100,91,102,103,89,91,93,97,103,98,114,84,92,96,100,90,87,91,96,80,98,91,96,100,103,93,104,101,90,100,95,89,107,102,101,88,101,98,91,88,97,104,105,97,95,102,92,87,102,98,98,106,89,99,93,97,88,107,101,108,78,82,96,91,104,97,91,98,92,104,88,84,100,106,103,95,95,98,87,107,91,102,97,95,97,94,83,102,93,88,109,110,99,96,106,100,101,80,93,96,101,87,96,101,101,97,97,110,95,88,104,101,96,98,90,92,90,95,89,82,103,80,95,79,108,95,104,102,107,88,98,101,91,92,99,104,89,96,106,101,108,102,90,81,91,93,99,105,100,111,98,105,102,98,84,99,92,101,101,109,97,110,89,103,106,94,94,91,106,96,110,102,77,108,98,99,86,109,101,92,93,93,96,89,109,110,92,94,88,91,108,92,98,95,86,91,94,99,88,84,91,89,104,101,89,97,95,101,88,98,78,89,108,89,84,100,87,111,100,95,95,104,96,106,89,103,102,94,93,97,87,99,90,100,101,99,97,91,102,103,104,92,105,106,88,116,93,105,100,98,83,99,93,97,98,78,99,90,114,107,110,104,87,104,103,94,112,99,110,108,98,68,110,97,97,100,117,108,102,91,100,96,94,99,94,91,108,91,102,96,104,94,95,100,100,108,90,85,107,100,100,92,103,86,98,105,91,100,87,90,113,91,101,104,90,92,107,94,86,101,98,95,94,103,101,79,94,100,97,103,95,78,103,121,103,102,96,108,110,95,92,101,108,101,94,83,92,97,100,95,91,96,119,105,96,107,91,110,97,102,90,100,99,102,90,97,103,98,88,106,102,106,109,103,112,90,104,102,80,88,112,64,102,115,98,101,110,91,109,109,102,85,95,92,99,94,87,84,96,101,109,95,97,95,103,100,101,93,96,110,105,96,101,97,90,104,96,98,93,98,98,103,97,104,92,94,117,105,98,94,111,108,96,88,98,103,100,111,105,97,99,94,96,102,98,100,100,90,89,107,89,109,108,96,109,92,96,102,101,100,98,98,91,107,105,101,98,99,97,103,101,94,103,104,92,86,91,102,84,95,101,104,110,100,91,100,101,105,107,103,106,101,90,105,95,105,111,83,80,84,98,107,100,104,83,93,97,104,102,119,114,96,87,92,98,96,100,113,115,92,93,97,92,92,109,92,98,98,95,105,102,97,94,94,91,98,102,105,105,99,99,96,98,96,101,102,100,101,98,98,94,105,106,108,95,100,98,99,99,121,92,87,94,79,99,93,99,98,105,98,98,100,102,92,90,97,97,99,95,95,101,93,87,114,94,104,99,89,88,100,99,90,96,95,96,87,116,102,102,93,104,102,94,113,117,97,105,108,100,94,100,102,107,101,100,101,96,95,97,87,110,103,115,99,106,94,99,102,96,90,115,101,90,102,108,95,101,96,95,104,87,99,103,98,104,102,106,75,93,102,113,95,97,95,105,117,102,95,88,98,100,99,97,97,99,95,96,97,97,101,91,105,90,98,104,100,93,92,95,104,96,109,95,114,100,95,96,102,73,103,108,97,96,93,90,99,99,96,89,104,102,101,103,100,98,87,98,92,95,97,93,90,88,95,93,96,103,104,95,98,91,82,98,84,105,92,99,99,93,107,100,98,93,94,109,105,111,99,110,92,86,92,95,101,98,93,111,98,87,117,101,95,95,91,101,97,100,109,98,97,101,101,87,91,94,89,113,94,100,95,101,95,102,103,112,89,99,106,98,93,96,90,94,90,104,107,100,90,104,93,104,97,102,111,88,90,96,98,95,88,92,106,96,96,96,95,101,104,100,100,88,104,95,109,99,88,99,104,100,96,88,105,106,99,98,108,96,104,95,108,105,87,95,106,96,97,96,102,90,102,92,90,99,104,91,98,87,106,114,98,105,80,102,101,108,105,101,103,101,98,104,84,98,94,91,108,102,105,99,83,104,97,95,93,96,90,102,88,96,108,85,89,106,98,87,101,89,97,108,106,95,99,92,99,114,89,101,104,106,113,106,100,95,89,100,113,113,110,107,108,103,89,103,103,85,94,108,94,99,92,97,98,91,92,91,83,100,95,106,96,111,100,108,87,95,102,87,104,102,102,105,101,109,91,110,106,94,91,79,93,97,102,90,102,102,107,113,134,94,100,106,101,104,109,98,88,97,125,112,102,89,98,102,105,115,121,106,97,94,65,104,99,96,103,115,100,95,79,102,99,96,99,94,100,86,85,98,96,94,94,90,115,99,104,98,108,99,88,94,82,90,98,105,100,84,106,95,97,94,100,84,102,85,97,93,94,90,108,96,106,99,97,112,89,99,66,94,101,99,99,93,90,103,102,94,102,98,113,99,109,92,98,114,96,110,94,87,90,104,106,95,99,107,96,100,104,106,91,85,106,105,97,92,89,87,87,100,84,106,102,91,109,102,89,91,97,95,109,103,112,107,98,102,102,99,96,98,102,88,111,101,96,83,87,81,98,100,91,110,104,109,87,100,107,98,102,93,101,102,95,105,113,123,101,107,95,66,91,85,98,90,93,98,80,99,101,95,112,94,113,96,121,97,102,98,106,99,95,107,103,119,107,94,97,100,93,113,103,100,96,99,95,98,106,115,93,101,99,104,99,104,95,115,117,107,94,91,109,103,98,109,119,93,99,94,93,106,80,90,98,91,106,89,110,122,95,110,99,88,93,99,92,98,99,96,109,90,96,102,98,94,78,107, +732.92542,91,100,107,124,96,101,84,85,104,98,91,92,102,104,109,93,104,101,89,93,98,88,100,102,95,102,115,105,97,104,118,81,104,112,104,94,98,92,103,91,89,100,100,91,96,99,98,102,96,114,100,103,103,101,106,92,98,99,103,101,109,98,92,85,100,95,97,95,100,97,95,108,98,116,85,105,77,93,84,98,105,91,93,94,106,89,106,97,82,97,103,97,100,99,91,94,95,92,97,92,108,98,99,96,105,86,99,94,89,88,92,91,100,97,103,107,104,99,103,114,94,66,97,98,109,111,102,109,102,110,89,106,97,98,89,88,98,91,88,92,96,95,93,102,97,92,101,98,98,87,102,98,104,93,90,100,99,109,101,101,92,101,90,96,94,101,89,91,98,86,101,87,108,96,101,88,97,90,104,106,92,94,100,108,88,94,95,91,93,95,103,100,103,98,106,101,113,101,93,98,111,93,98,89,108,88,100,107,110,126,94,106,91,108,95,92,91,99,101,96,96,109,99,95,88,100,93,113,111,97,110,116,90,97,97,97,102,99,97,97,97,96,109,101,105,83,97,104,81,110,99,104,99,98,89,95,86,103,88,105,89,100,98,100,96,98,93,94,91,99,94,86,88,90,99,92,88,70,86,89,97,97,98,94,100,109,90,91,89,108,101,106,92,90,102,96,100,94,90,101,92,104,94,105,93,102,108,104,100,100,86,92,108,110,88,97,82,95,115,97,95,85,86,104,86,95,117,94,101,91,98,80,96,96,95,86,95,97,83,107,99,94,102,100,100,105,106,105,98,86,99,102,96,108,87,94,118,103,102,93,103,106,105,90,91,96,99,94,88,89,103,93,105,92,99,97,95,95,94,94,102,106,100,102,99,77,80,98,100,105,103,104,105,88,106,98,81,109,86,86,106,93,90,86,91,90,93,97,108,93,88,91,102,94,100,88,100,110,93,109,95,101,90,105,103,86,87,83,95,126,94,86,100,99,91,94,113,94,96,91,108,102,104,97,90,111,108,104,105,87,99,94,107,91,76,95,98,94,99,113,95,106,99,101,99,106,102,97,101,105,101,104,92,98,93,101,90,105,104,99,91,101,103,98,94,95,96,105,97,90,100,99,95,86,89,100,96,97,102,73,102,96,98,105,95,102,111,95,94,106,101,99,105,107,91,107,89,95,91,95,95,97,91,92,97,84,109,94,105,92,91,109,100,91,79,90,100,102,99,100,96,99,101,93,96,92,93,90,89,79,95,100,90,89,89,99,89,101,87,88,94,112,109,104,96,91,77,101,87,93,98,101,94,90,95,88,85,86,95,110,97,98,92,102,104,106,94,107,111,97,113,99,92,91,95,91,86,105,108,95,100,102,96,89,98,104,107,89,104,104,102,96,99,98,104,106,94,95,102,93,97,102,97,99,112,88,86,133,108,85,91,99,91,108,84,97,111,98,98,107,100,99,90,103,112,104,100,104,98,96,103,72,103,93,91,100,90,93,98,99,92,99,101,94,93,99,102,123,83,108,97,86,95,91,99,98,91,96,106,91,125,98,94,72,90,93,97,102,96,99,108,118,96,96,93,84,104,97,90,81,83,102,108,104,93,106,103,108,93,97,102,108,100,93,73,92,89,90,87,86,104,101,91,102,104,88,92,101,103,93,100,106,83,102,90,96,103,87,112,102,92,96,81,102,99,102,96,107,96,98,93,99,106,92,96,98,96,99,102,95,91,100,97,99,97,100,98,95,109,92,92,101,103,87,97,92,91,97,96,85,95,94,97,103,93,91,111,91,98,104,89,112,102,99,86,110,101,100,90,103,99,98,96,100,97,99,105,101,111,95,102,98,101,91,97,91,117,105,89,94,99,106,103,90,97,100,94,103,102,100,98,98,97,98,94,90,105,100,96,101,88,84,110,104,87,101,88,89,95,97,99,98,93,105,89,108,92,95,110,99,96,101,94,92,89,94,104,95,102,103,89,108,123,110,99,96,104,72,90,92,96,97,95,92,106,105,99,102,101,92,86,86,105,100,109,95,103,109,107,97,101,97,101,108,90,90,85,86,103,94,90,99,113,91,93,106,105,95,96,88,91,97,112,98,114,106,99,92,95,106,101,98,103,112,105,94,96,100,87,93,105,93,95,104,98,102,92,107,97,95,133,95,102,100,92,99,110,98,89,99,97,103,92,103,108,89,94,87,85,90,94,105,101,101,87,93,104,98,101,95,96,101,96,100,98,96,106,98,99,89,98,90,100,102,98,99,95,93,103,96,94,110,91,89,101,104,98,108,86,96,94,98,96,93,115,97,102,98,90,91,122,100,91,97,82,101,94,101,103,92,109,97,96,90,114,87,100,110,101,93,93,99,92,96,91,92,98,98,94,104,93,83,101,98,105,97,83,106,77,88,96,106,115,97,101,108,93,116,84,93,88,108,108,102,107,99,105,104,90,104,97,98,91,103,91,97,93,107,102,98,87,92,100,85,101,96,101,116,88,91,100,100,114,100,90,105,96,95,112,90,101,97,78,91,91,96,86,58,91,92,89,111,112,105,99,106,104,101,103,110,93,94,96,88,105,93,102,86,88,107,96,85,104,123,77,90,97,100,79,104,102,79,99,114,84,93,110,91,93,96,99,86,95,92,105,98,105,107,93,107,106,103,99,112,102,106,96,92,120,97,94,99,84,102,108,94,105,91,97,107,102,113,98,99,87,94,91,107,97,109,86,85,83,90,92,99,86,99,97,100,105,113,97,112,94,95,96,111,96,104,99,126,103,104,98,103,99,100,105,90,100,107,99,106,80,90,101,93,104,113,97,95,98,89,87,105,90,101,86,88,89,102,83,107,104,97,85,92,94,88,105,116,98,99,86,105,99,97,98,100,116,105,105,103,102,88,95,58,110,94,87,98,108,103,112,116,102,101,101,102,96,98,87,85,99,101,95,98,86,100,90,99,91,92,93,100,100,102,96,88,96,100,81,88,110,108,104,98,92,100,99,100,94,88,103,88,97,97,83,100,91,88,95,114,118,106,79,106,101,100,100,90,97,100,112,99,103,108,101,108,92,101,93,100,102,99,102,93,85,91,101,113,97,101,99,95,106,94,104,125,105,98,83,106,104,79,102,95,65,93,98,95,91,83,102,97,104,99,94,89,82,100,93,87,96,108,94,99,104,79,88,88,95,91,102,86,101,100,101,103,97,98,97,94,105,92,99,97,87,106,100,112,103,93,99,89,92,96,99,104,104,95,95,128,98,100,100,102,82,98,109,94,102,91,95,105,102,93,104,95,88,88,98,101,103,98,106,98,105,91,102,99,99,117,85,118,96,90,99,92,92,93,77,99,88,103,95,110,115,99,105,99,102,104,83,91,92,108,97,97,94,101,95,94,99,102,94,97,102,96,98,94,93,106,90,104,88,98,97,108,107,88,108,91,103,91,104,92,106,96,96,96,100,104,93,103,109,101,97,98,116,101,98,99,89,97,100,96,103,92,104,94,115,100,100,102,96,99,95,96,101,98,98,99,107,96,89,98,104,108,96,91,98,92,93,97,92,104,120,108,103,95,109,103,96,101,96,102,88,85,84,93,76,79,98,95,96,102,86,101,91,105,112,97,85,87,95,97,94,96,117,102,102,101,100,89,89,98,91,100,128,100,84,108,93,102,100,98,105,109,101,101,102,93,109,95,92,100,93,102,100,107,100,103,87,93,96,106,109,98,85,93,99,90,102,90,75,97,99,99,91,98,98,97,97,98,100,94,92,81,90,83,94,84,100,98,91,97,102,97,97,91,89,87,92,83,100,97,96,92,108,96,98,83,93,98,92,96,89,102,97,109,95,107,93,92,112,104,102,97,87,100,94,103,98,90,88,111,100,97,84,95,86,105,92,108,98,104,103,89,108,102,94,102,99,97,102,90,102,113,92,109,95,100,105,93,96,100,66,94,95,94,89,101,76,92,96,101,87,96,104,107,101,89,90,99,87,115,87,98,91,102,93,110,106,98,94,97,98,88,87,98,100,97,98,98,105,83,93,94,101,94,91,98,100,94,99,91,108,94,91,95,98,91,92,96,99,106,106,95,93,115,98,102,94,101,96,102,85,95,89,91,93,112,101,117,94,98,105,99,113,86,86,96,100,109,100,97,83,106,105,100,100,95,105,94,108,99,93,96,96,100,101,101,108,98,87,98,82,99,110,93,103,108,99,109,96,99,102,101,102,90,98,95,99,93,111,87,110,92,89,100,101,92,94,92,106,92,104,97,113,99,109,88,103,104,95,87,96,101,98,99,97,105,119,91,87,98,106,90,89,97,88,108,99,86,83,115,92,88,106,99,95,105,103,111,97,110,97,112,93,95,73,108,103,101,115,95,93,99,93,96,90,102,97,100,108,105,106,91,94,95,94,102,100,101,88,91,95,99,106,100,101,84,94,81,102,92,108,81,93,101,104,103,104,105,91,92,95,98,69,111,119,105,98,96,92,97,88,119,106,100,94,71,102,98,105,96,98,87,90,96,93,95,94,100,95,97,101,102,89,106,88,93,99,94,97,90,104,96,85,97,109,99,89,79,104,89,99,110,100,99,99,111,104,109,107,101,92,110,91,98,71,63,88,101,90,112,100,101,106,106,115,96,112,102,91,108,96,109,98,106,107,69,103,111,86,70,96,95,92,102,105,90,97,98,108,96,109,91,93,105,93,91,102,93,104,96,95,94,93,102,76,93,107,92,108,92,99,117,101,98,118,124,92,101,96,91,103,105,86,98,101,88,97,103,105,110,101,99,97,98,107,100,94,95,90,116,99,90,106,95,99,96,110,85,95,107,97,105,115,104,91,75,83,103,109,103,108,92,90,102,112,105,108,95,101,92,103,99,104,92,94,85,101,99,105,107,103,97, +733.06677,96,112,100,106,97,102,100,109,90,96,100,108,93,96,131,100,99,107,109,107,117,102,94,90,101,100,93,92,97,99,99,102,109,100,105,101,108,94,99,93,111,89,91,91,103,94,95,93,86,103,88,115,90,121,122,108,96,100,111,91,97,92,83,92,105,101,88,111,107,78,100,91,102,92,103,112,102,112,100,99,94,113,96,112,100,91,113,91,101,102,82,72,102,98,94,105,98,108,105,99,100,103,96,94,89,98,111,97,94,101,102,103,91,107,93,102,104,97,95,108,95,100,104,101,97,99,96,102,92,92,78,97,91,92,98,104,97,109,99,96,91,92,83,109,92,108,100,98,98,95,96,94,99,86,89,104,106,102,86,104,103,96,100,102,97,95,83,85,89,95,89,107,94,87,100,106,76,109,95,106,91,103,102,114,97,91,92,87,110,90,87,91,98,110,98,99,98,104,93,109,88,100,94,101,96,102,95,106,104,101,93,95,107,99,95,101,92,103,92,91,75,97,108,96,90,102,93,108,106,98,71,97,101,106,103,108,102,96,102,96,100,89,103,102,87,85,122,96,104,102,108,100,94,97,96,89,97,104,93,95,87,99,102,90,92,93,101,98,95,98,105,94,102,93,96,95,92,109,113,96,95,104,90,94,99,95,100,92,100,107,102,104,100,119,99,104,87,92,97,99,85,97,103,106,101,107,119,110,101,106,94,131,100,98,92,96,103,109,64,112,101,97,92,100,109,104,96,85,98,99,75,95,98,90,98,96,94,87,103,94,98,95,84,96,85,107,108,101,100,99,98,102,103,90,111,89,92,99,93,101,91,121,82,98,83,106,86,105,90,104,77,89,102,109,103,106,108,105,93,117,90,108,88,104,66,91,99,96,93,92,95,79,59,90,95,88,105,95,100,90,99,102,101,90,95,91,96,102,98,104,93,91,106,107,94,111,98,96,103,88,85,96,96,83,98,98,98,101,98,96,83,89,96,98,99,98,102,104,95,112,96,93,105,102,100,96,106,94,106,96,92,99,105,107,93,95,95,95,102,107,84,93,106,105,97,111,101,109,95,104,101,93,100,103,106,94,98,121,100,98,97,99,101,90,88,95,100,102,99,93,94,103,103,90,79,91,104,90,91,91,120,90,100,83,95,93,103,117,103,102,101,96,100,90,101,101,86,100,89,97,101,99,99,88,114,96,102,81,75,91,89,92,96,81,99,105,110,97,90,98,91,100,92,98,87,99,100,88,106,103,113,96,98,108,92,96,97,84,98,108,106,98,90,76,107,94,99,95,100,96,100,93,93,89,95,85,91,99,101,99,110,89,95,99,88,91,104,94,103,101,122,106,94,102,110,98,65,81,109,100,99,105,113,90,101,96,92,99,107,99,106,93,117,92,101,106,109,120,96,97,98,113,94,91,99,91,87,84,96,96,98,98,101,74,91,107,90,88,67,88,94,101,111,90,95,91,101,101,105,98,98,104,105,95,98,94,98,98,95,108,98,93,113,89,95,94,98,97,106,91,102,92,134,91,116,99,99,100,109,95,105,97,103,94,100,102,104,104,100,102,100,85,98,106,98,91,101,87,96,90,98,90,109,92,95,94,99,97,100,95,100,107,101,109,91,96,94,90,112,91,96,92,105,100,94,95,87,105,97,104,108,99,102,90,101,104,88,83,97,98,98,66,104,95,87,101,90,109,92,100,87,98,112,84,98,105,104,98,98,98,95,112,95,98,86,103,92,94,105,95,105,101,101,93,92,99,105,102,100,116,100,123,94,95,88,107,112,99,105,96,98,110,96,89,90,108,102,108,88,112,103,109,91,96,93,109,105,89,92,102,95,94,97,89,91,100,98,113,104,98,99,108,91,98,112,101,71,94,105,110,103,93,102,101,106,98,98,97,98,80,104,96,94,101,95,99,96,83,101,99,93,91,108,109,99,91,94,95,100,95,98,98,96,97,105,92,97,89,98,91,90,105,99,91,88,100,104,97,96,99,101,97,94,97,101,91,97,103,99,102,99,93,99,105,123,107,92,97,92,104,92,104,110,133,90,101,103,116,106,97,112,102,108,108,96,91,91,110,113,106,114,87,100,107,79,86,104,94,106,106,104,102,94,108,96,89,103,93,89,104,102,98,101,98,94,91,91,102,96,102,93,111,107,94,101,96,103,101,93,101,95,109,102,91,107,97,94,98,101,104,100,105,96,98,94,104,105,83,92,100,88,94,92,95,97,94,91,97,109,99,100,102,97,91,90,102,97,96,90,96,126,98,86,114,117,85,97,98,103,91,80,95,108,109,90,115,101,101,104,88,96,100,99,104,96,98,107,86,82,103,109,92,99,95,97,84,97,93,82,105,101,109,101,101,99,99,97,95,105,94,99,100,97,91,90,101,88,93,98,105,90,87,88,101,94,96,90,99,103,80,92,103,80,99,100,92,95,92,96,93,100,95,83,89,95,88,79,86,110,98,96,101,89,92,98,97,94,91,117,99,105,122,97,104,114,112,98,94,98,95,93,109,103,99,96,97,87,97,101,92,110,101,95,97,80,98,94,92,106,103,106,97,97,85,93,115,87,96,107,90,88,99,98,99,95,83,105,105,105,97,90,98,94,75,107,102,100,91,102,98,100,94,80,86,98,105,100,97,93,94,96,101,104,98,105,94,105,87,83,78,102,95,104,104,97,111,96,100,113,95,108,105,106,98,102,103,103,95,86,98,101,106,102,117,108,96,103,96,98,97,103,111,98,108,76,96,86,109,92,96,101,86,91,102,106,94,87,92,97,103,97,100,106,104,102,101,96,103,105,116,109,101,108,105,91,93,96,87,92,78,95,87,103,102,92,102,95,104,91,97,100,104,107,67,106,101,85,102,106,93,101,88,108,110,102,96,98,85,103,94,94,97,107,97,95,111,99,96,91,109,104,101,103,95,93,104,91,77,116,95,102,91,106,112,96,90,102,106,89,88,105,102,111,96,102,103,109,98,94,102,87,106,109,94,101,89,97,112,87,80,100,91,96,103,95,104,106,96,96,122,89,100,102,95,91,90,103,97,101,97,95,111,88,97,95,105,91,98,100,96,84,102,106,102,101,102,93,116,103,98,88,98,88,108,110,95,125,102,100,103,101,60,102,101,100,85,113,100,101,101,88,98,86,93,106,98,124,84,92,106,107,100,91,105,98,103,85,102,100,94,98,101,99,90,94,104,121,106,105,100,103,100,88,108,91,101,91,109,115,112,96,107,92,98,104,93,95,105,111,104,95,96,103,98,101,96,91,101,95,98,92,83,106,101,103,99,102,63,89,87,107,108,95,101,98,99,106,88,106,100,104,99,88,104,103,102,99,108,91,103,77,97,101,100,105,94,104,90,91,103,100,101,93,107,105,88,92,107,98,88,99,88,82,108,105,97,113,100,94,97,96,101,95,104,98,113,94,104,105,109,95,104,102,102,109,101,97,98,106,89,91,93,104,104,99,101,87,108,90,102,95,100,93,110,101,97,94,99,91,110,107,106,99,104,104,99,96,106,88,101,100,95,99,98,104,103,102,108,104,96,113,108,108,100,103,102,95,101,101,81,84,99,100,105,100,92,112,109,94,115,103,113,92,100,120,87,84,93,102,91,102,99,109,104,95,98,99,111,109,110,91,109,88,107,81,87,94,95,105,88,100,105,83,79,90,99,88,98,100,99,98,104,108,102,91,101,87,96,101,110,93,83,106,91,93,96,93,89,97,84,94,101,97,89,113,103,100,91,99,101,107,85,97,108,103,85,100,97,94,103,86,104,91,91,101,101,117,103,93,87,119,102,95,112,113,96,96,102,95,105,85,106,105,96,97,96,82,86,106,98,105,93,99,97,101,104,99,85,96,93,103,93,105,105,93,90,99,99,100,92,104,90,103,91,100,87,90,87,91,98,99,92,98,102,109,93,95,96,96,91,100,99,90,103,98,96,90,112,81,74,92,95,99,97,98,79,98,96,98,110,105,95,88,86,110,96,98,85,102,84,98,97,99,94,91,101,105,88,97,91,98,101,100,108,100,108,98,77,98,105,86,94,93,92,104,102,93,94,96,123,97,105,108,92,96,100,97,100,100,98,105,102,97,98,103,88,112,91,91,100,100,91,95,98,99,93,96,99,104,101,87,93,114,104,110,106,109,96,94,105,101,105,101,99,96,101,93,92,105,83,108,108,109,105,92,95,98,90,96,98,106,100,102,93,101,99,101,111,89,87,91,95,104,98,93,83,83,103,99,114,98,98,104,93,86,91,101,102,93,101,97,99,118,93,94,89,88,94,92,112,88,93,92,101,91,87,83,104,97,103,94,98,102,100,122,100,98,95,108,92,104,103,101,105,90,98,97,131,98,94,98,118,105,105,72,90,94,97,111,116,85,92,100,87,96,103,88,92,79,105,102,101,87,98,91,99,103,83,94,92,91,93,98,102,98,103,96,91,98,99,86,111,92,74,96,94,96,108,101,93,109,66,98,103,93,97,94,88,77,93,86,82,99,110,94,101,90,91,99,103,101,99,96,90,83,101,104,94,108,101,95,90,97,96,97,96,98,95,90,112,93,83,83,103,94,87,102,97,103,97,95,103,96,98,103,93,83,100,74,85,118,96,92,95,99,109,95,98,106,92,87,97,98,89,77,97,118,91,99,88,101,95,101,96,93,98,99,102,103,84,96,121,93,115,93,90,107,87,100,105,79,91,84,94,102,98,103,106,100,100,79,93,95,87,89,92,94,98,99,103,93,74,85,92,108,94,96,97,91,96,102,111,99,96,98,101,98,93,97,122,102,101,102,89,108,101,108,89,109,92,117,88,98,91,87,105,89,82,88,91,100,95,87,101,108,88,99,118,109,98,104,100,82,100,99,103,98,87,102,94, +733.20819,99,103,98,95,90,100,100,112,92,111,107,102,100,74,107,103,100,97,101,98,98,110,93,99,94,95,104,89,136,111,94,99,99,91,104,106,108,98,103,103,100,106,96,109,94,100,125,88,88,98,96,97,109,98,106,94,101,93,91,84,109,97,93,101,87,105,88,117,98,76,103,93,83,94,99,103,106,95,104,84,100,77,104,96,93,83,98,98,99,104,101,102,104,104,85,101,99,103,91,95,91,106,105,107,89,105,102,93,92,101,91,85,94,94,117,109,98,99,115,90,103,96,95,114,100,102,115,103,104,114,94,106,94,102,93,105,94,106,106,101,103,85,88,102,101,109,103,97,94,98,91,112,107,94,110,94,102,105,86,111,100,97,102,96,106,94,101,101,117,100,102,110,100,92,104,92,118,95,95,105,103,108,100,113,96,98,99,96,84,100,99,109,110,104,82,100,105,103,89,94,101,104,102,108,100,109,102,96,103,111,93,91,100,117,97,85,106,96,97,96,104,67,107,105,99,93,103,99,98,96,116,99,104,93,93,111,101,95,84,98,96,62,109,103,110,109,109,109,98,97,111,100,90,105,91,105,100,101,104,97,101,108,99,100,101,105,104,102,110,104,89,100,107,108,113,105,103,108,99,89,103,88,97,91,103,101,96,97,92,99,110,97,98,122,105,96,96,105,105,96,103,102,98,111,95,111,91,101,92,101,103,121,109,113,96,102,96,102,108,88,96,98,101,86,116,95,97,95,107,106,101,97,105,99,104,99,102,84,101,98,85,97,108,92,86,111,96,97,97,101,109,104,101,99,97,92,96,86,88,104,94,96,96,86,94,100,84,100,99,102,105,91,100,107,99,92,91,90,84,101,102,98,100,121,101,100,95,109,113,95,105,101,85,93,114,112,94,102,96,105,93,91,99,90,92,97,115,102,86,98,103,109,88,97,102,92,99,73,92,91,105,101,92,96,103,95,100,94,89,100,99,103,106,100,91,99,78,89,109,102,108,96,103,100,97,97,108,97,110,106,101,98,92,107,90,95,90,99,107,88,91,109,98,94,100,101,95,100,97,92,104,87,109,100,91,91,96,104,97,100,103,107,101,98,118,102,103,102,97,83,104,91,75,95,116,108,95,102,100,100,85,94,113,100,106,101,108,87,110,112,102,104,101,76,91,95,93,98,102,99,90,96,109,95,87,109,105,95,108,103,109,121,95,95,75,101,98,80,85,98,100,102,93,91,115,96,106,92,105,101,103,99,106,93,95,102,106,94,102,103,103,98,98,106,100,104,92,106,102,97,88,98,115,93,131,96,91,98,90,102,95,91,105,100,92,102,104,105,105,95,102,107,92,96,106,97,109,106,94,122,101,86,110,96,90,100,90,103,104,104,77,91,103,103,91,109,95,113,95,100,102,103,96,98,98,94,92,85,102,93,95,88,98,97,100,103,103,91,103,101,107,113,98,79,94,104,108,90,98,108,110,105,99,115,99,99,109,107,99,107,92,101,90,91,96,99,107,102,104,105,114,117,113,97,93,110,96,84,100,104,99,103,103,88,79,98,94,93,92,100,104,104,102,99,109,103,86,101,96,113,96,92,93,105,101,109,110,96,100,89,103,95,85,95,101,106,98,99,95,93,94,98,100,100,106,102,92,107,97,112,88,96,91,96,109,90,102,72,109,105,98,87,100,96,78,105,114,105,97,105,92,103,95,85,101,100,94,96,106,86,108,87,87,99,102,104,95,107,91,92,112,105,109,94,106,95,113,105,116,100,100,109,97,101,85,106,93,107,105,92,106,110,107,100,99,100,67,100,97,109,88,105,101,87,103,99,95,108,107,100,113,100,100,92,104,99,101,101,94,117,102,99,102,115,93,115,94,93,101,106,102,95,107,95,106,108,96,95,97,111,97,101,109,99,64,103,101,97,105,91,101,105,97,100,97,100,101,103,111,110,99,94,110,109,93,82,93,107,95,111,99,110,117,102,91,94,95,100,105,97,98,105,119,104,98,98,101,111,110,101,94,109,101,94,107,90,93,95,107,105,99,90,102,103,91,97,94,105,101,97,92,109,97,103,93,86,96,91,96,103,110,95,110,105,111,96,87,104,94,96,97,92,91,107,96,90,97,94,93,101,95,115,100,96,98,81,97,110,105,111,115,102,105,94,100,96,101,111,90,84,96,100,94,105,106,99,100,99,75,96,101,102,104,104,91,106,91,104,82,95,98,98,108,108,92,108,88,95,102,92,104,84,101,95,90,101,90,97,83,107,110,92,103,86,101,99,100,104,108,97,85,101,82,97,92,99,106,105,96,99,98,112,101,101,108,105,105,95,108,90,95,124,116,98,101,103,100,108,96,120,92,100,92,88,97,105,100,101,103,114,95,92,98,99,104,92,99,93,115,99,103,92,93,103,96,96,98,99,94,104,100,120,117,92,103,93,111,89,85,101,94,92,93,91,88,92,95,99,98,102,87,95,115,91,100,98,100,95,98,107,96,98,120,97,96,100,104,86,88,100,94,106,105,98,97,96,100,97,87,106,106,114,95,105,93,91,87,101,103,102,81,101,94,93,87,91,92,98,88,103,91,94,94,103,98,100,98,93,91,116,100,95,109,102,86,95,90,96,90,96,112,89,102,102,98,102,95,101,112,98,99,97,109,110,83,100,105,98,102,91,101,102,101,99,106,97,101,104,96,100,99,104,105,122,88,101,96,93,98,97,99,98,106,106,95,102,98,101,100,98,95,90,95,102,107,105,104,95,95,114,95,113,92,96,96,104,104,91,94,103,62,113,94,85,91,88,87,95,68,106,93,102,103,85,101,95,90,104,111,99,94,92,96,101,79,98,104,97,94,100,105,99,96,111,91,97,92,94,97,99,94,114,103,104,112,96,107,113,98,83,120,93,100,107,100,102,86,105,87,109,98,94,92,112,101,108,84,76,99,95,104,83,94,100,99,95,103,105,83,96,92,101,95,91,102,109,90,100,109,109,102,104,97,103,95,92,97,100,111,94,94,106,102,104,97,89,101,100,79,92,90,96,110,88,92,106,96,100,97,94,92,90,93,99,92,100,114,101,88,92,112,99,109,87,104,98,81,97,80,101,91,97,100,112,91,100,87,94,92,95,107,93,104,98,81,95,98,96,95,99,105,94,112,98,99,110,101,102,103,96,106,103,95,96,106,95,98,101,108,92,81,97,98,104,99,91,94,92,94,111,89,86,96,103,91,99,96,93,111,92,103,85,96,108,101,101,92,86,103,98,92,100,90,100,94,108,98,91,96,113,87,102,107,90,88,102,79,87,92,103,109,97,92,91,105,99,97,99,95,99,106,95,104,99,86,106,107,104,104,95,101,96,100,110,101,104,77,96,104,93,105,90,108,78,98,97,95,95,86,93,96,98,91,87,96,95,81,99,108,91,98,91,92,100,93,104,90,93,100,101,113,95,106,96,97,101,90,91,91,80,87,89,102,105,96,97,92,95,102,83,101,93,74,106,104,96,96,107,70,87,105,89,103,99,93,94,99,100,100,110,97,109,97,98,88,101,96,94,90,110,101,97,96,99,97,88,103,127,106,91,100,91,88,97,94,98,99,131,99,99,98,93,90,96,100,93,96,88,91,105,106,99,104,97,88,100,93,92,99,106,96,95,86,107,94,96,98,102,78,101,99,101,86,100,92,87,108,100,96,92,102,99,108,93,90,90,104,91,87,96,90,97,95,98,93,93,96,93,93,96,100,101,102,102,70,104,93,88,91,108,101,102,96,106,94,75,94,91,121,87,96,99,100,98,95,95,96,97,102,99,102,96,98,83,105,93,98,95,94,83,97,103,96,95,97,97,109,98,106,101,97,93,98,116,93,101,96,102,99,83,96,98,103,100,89,100,100,99,102,107,105,90,99,101,87,93,101,99,99,98,84,112,111,94,101,96,92,98,101,107,95,101,94,109,96,107,93,110,96,85,99,106,107,98,101,99,94,89,94,85,97,104,101,99,101,87,97,103,100,109,106,97,95,90,99,89,94,103,98,101,108,87,96,93,103,102,95,104,104,95,96,93,97,97,99,99,96,108,90,88,112,94,106,111,90,105,95,87,93,102,96,94,92,98,97,99,109,94,103,99,92,104,95,99,90,103,97,97,81,104,94,103,91,88,97,103,115,106,96,94,96,99,101,98,99,95,109,105,87,99,99,101,100,95,94,86,104,97,111,97,106,96,92,69,95,100,122,88,111,91,104,96,95,100,99,102,85,97,94,94,105,103,87,89,91,87,97,81,97,109,99,65,92,101,98,102,100,95,95,95,102,112,92,99,97,109,86,97,105,90,104,100,104,105,94,95,103,96,105,88,98,113,100,96,91,98,94,110,108,87,92,100,94,99,107,99,94,99,99,120,94,95,101,99,90,114,106,99,96,83,94,97,99,99,102,96,96,100,103,105,107,106,109,94,99,98,96,97,102,109,93,100,96,87,99,113,83,102,99,102,89,99,90,99,97,97,104,108,105,87,97,95,103,91,91,97,94,111,105,120,91,93,100,85,96,92,97,88,102,106,102,106,118,97,114,117,92,105,87,91,96,93,119,100,104,108,99,87,115,89,101,105,98,106,98,99,81,97,117,92,88,91,98,98,95,101,106,88,112,99,80,101,108,108,101,110,99,113,92,100,96,91,94,97,94,88,109,100,98,98,96,92,92,93,105,84,98,88,98,93,101,100,94,108,105,91,94,97,102,108,103,87,102,100,99,100,96,117,90,100,96,72,97,103,113,96,98,87,94,107,117,96,98,96,91,110,106,101,93,102,105,91,93,89,92,104,100,92,76,101,98,102,91,100,89,112,90,104,105,81,106,111,83,93,105,109,99,85,87,108,104,95,97,120,98,91,109,101,98,98, +733.34961,103,94,99,99,93,94,97,87,87,102,101,101,116,93,104,114,99,104,95,103,97,102,89,93,81,110,89,94,108,101,83,103,95,94,104,113,99,102,88,99,95,103,91,96,103,102,97,95,86,111,97,96,105,109,90,95,98,102,96,93,104,74,97,99,81,103,97,108,100,94,106,96,99,101,88,98,94,102,102,104,98,116,93,113,95,84,104,92,96,102,107,99,106,102,91,96,95,94,100,97,110,104,98,91,100,73,91,91,94,89,105,113,100,108,100,101,89,96,97,105,100,103,106,104,100,92,126,97,113,105,87,108,104,107,91,98,109,101,80,90,104,101,97,105,130,91,107,107,102,96,94,91,104,94,95,93,94,101,98,90,95,123,99,94,104,95,104,100,100,93,101,103,94,108,105,93,95,91,96,93,95,103,94,109,93,91,102,95,105,102,89,100,106,110,106,100,95,98,92,105,102,93,90,96,89,95,96,102,102,92,96,96,88,101,100,99,89,96,94,88,96,92,98,94,91,107,100,90,102,106,97,71,92,93,117,98,105,70,106,105,87,97,105,93,95,92,101,106,109,101,106,103,70,100,94,99,92,87,92,84,92,100,101,94,90,97,96,86,92,94,92,94,101,91,94,99,98,109,92,98,102,95,95,101,100,96,86,96,97,105,94,98,105,108,80,97,99,94,91,107,92,100,95,101,73,105,108,93,100,106,103,97,94,91,93,89,75,100,110,97,97,84,110,105,77,98,94,91,113,107,104,100,101,97,94,94,99,97,97,110,101,93,91,97,96,96,93,83,90,105,105,99,92,95,108,96,103,104,105,128,84,101,90,94,103,98,98,97,83,97,99,100,102,91,101,95,90,93,96,103,94,109,97,98,97,103,108,90,96,89,92,105,104,107,99,93,101,88,117,95,67,91,89,94,100,92,90,90,98,110,84,96,94,89,94,88,95,94,99,94,104,94,137,99,93,99,94,104,89,114,97,83,102,98,96,107,109,98,105,105,99,101,95,98,90,94,94,95,102,97,98,99,88,105,101,80,107,105,91,100,102,100,95,89,105,96,103,93,92,91,87,92,94,92,101,93,90,108,98,105,100,101,100,102,101,88,98,98,109,91,90,112,96,95,104,88,90,94,91,92,114,94,106,95,95,87,95,72,92,94,87,94,82,86,88,103,99,109,93,91,96,96,97,98,97,94,91,84,91,96,96,102,107,104,81,128,98,80,94,102,95,117,94,107,104,84,115,101,101,89,88,98,95,98,94,101,104,109,98,82,85,98,98,95,92,82,99,111,97,94,97,85,96,95,99,101,80,99,97,103,101,100,109,91,103,99,105,105,91,95,98,91,90,102,106,101,95,96,97,113,97,100,103,102,89,87,86,97,95,91,99,103,96,90,96,101,88,102,94,101,94,91,90,85,99,96,95,90,99,91,109,106,96,91,68,104,95,98,100,90,103,104,101,95,88,100,96,109,100,102,86,86,100,100,97,95,87,107,85,113,106,104,89,100,92,89,101,93,102,72,90,102,99,107,90,100,103,90,104,103,108,103,109,86,85,91,93,94,91,102,99,93,94,97,91,100,101,101,97,97,98,86,83,90,104,93,104,104,95,77,103,97,81,99,89,103,94,97,94,101,109,95,101,91,78,100,92,99,95,93,89,104,82,98,103,97,103,93,99,87,110,87,95,92,95,95,90,92,101,102,95,117,118,93,93,104,89,106,94,89,99,90,96,93,98,96,98,90,107,92,104,108,112,93,139,104,91,106,90,91,86,101,97,107,106,91,106,121,104,105,106,94,106,104,101,99,105,109,98,103,98,99,96,94,96,101,100,96,98,95,96,90,100,113,119,98,101,96,89,103,92,106,108,99,98,91,108,103,104,98,95,99,93,95,98,106,102,96,87,101,98,114,99,95,84,96,94,88,99,105,84,93,98,101,104,87,103,104,94,96,107,94,91,103,95,83,88,112,93,107,89,93,97,111,86,85,98,92,118,93,97,99,78,92,96,95,87,110,83,101,92,91,97,104,92,87,98,100,106,126,78,97,94,99,99,96,95,98,97,104,101,103,110,98,102,99,91,103,93,91,110,100,95,97,109,94,94,98,94,82,98,86,99,102,93,83,97,97,108,98,105,101,105,114,101,93,104,106,82,85,88,92,96,98,92,103,92,120,89,101,103,105,90,97,103,64,90,85,92,93,91,100,103,90,91,91,100,103,98,82,89,98,98,108,120,94,116,104,101,97,97,101,67,95,106,91,96,90,87,98,91,82,95,94,107,103,100,106,84,96,78,104,83,107,90,93,101,91,95,94,97,101,104,90,101,95,99,105,94,95,99,94,104,92,99,94,100,97,90,96,104,104,97,96,88,92,104,92,95,94,96,90,117,93,90,88,78,96,111,91,91,99,98,108,98,81,98,101,88,83,102,99,78,84,86,102,85,106,62,99,97,91,110,81,104,100,87,101,100,97,113,104,102,89,98,95,98,88,105,96,101,91,96,99,102,92,94,113,94,107,107,97,97,99,94,96,96,97,107,120,98,96,106,85,111,110,87,116,95,89,99,99,91,92,88,93,111,101,116,89,94,97,89,99,88,107,101,101,97,93,106,106,95,91,96,82,95,99,98,102,105,97,98,93,109,96,106,92,96,98,94,93,113,110,105,95,104,88,98,93,99,99,102,97,96,113,102,90,105,100,90,62,106,91,105,101,116,92,98,103,99,113,98,101,84,97,108,94,121,100,103,100,99,99,96,109,101,96,102,98,92,105,95,90,106,93,87,101,99,96,100,99,109,102,107,101,113,109,92,99,108,101,110,108,96,92,101,113,105,107,100,103,104,105,101,109,95,103,96,100,106,95,100,100,99,101,103,109,98,104,101,101,99,103,83,126,105,118,99,98,99,100,112,103,85,105,96,105,103,113,95,97,96,107,92,98,103,98,99,100,90,100,98,102,101,96,105,102,107,101,96,105,102,86,99,112,108,102,105,99,109,102,86,101,88,110,109,100,84,89,128,108,98,100,114,111,83,87,79,95,100,105,87,107,92,94,104,96,107,99,99,105,105,97,89,96,102,95,106,91,109,109,107,68,100,98,103,88,104,99,94,105,105,99,91,99,90,109,99,100,89,102,98,92,87,98,97,95,97,96,105,105,104,92,92,101,95,100,89,95,94,105,88,100,90,103,102,109,109,101,110,101,95,106,105,84,94,98,93,99,105,94,89,103,98,95,93,97,105,106,94,97,98,94,94,99,92,103,93,99,96,105,108,129,92,102,95,96,99,87,102,91,105,103,89,100,98,101,107,99,100,106,88,100,98,101,96,94,83,79,94,101,100,95,73,111,105,95,91,97,102,92,86,91,93,113,95,101,110,92,90,92,108,93,105,104,90,101,98,101,96,96,100,107,100,103,101,102,101,104,99,93,67,80,113,102,102,99,92,104,103,102,95,107,89,99,103,95,99,88,107,111,95,79,97,107,94,90,90,91,96,102,93,107,97,108,98,101,99,91,96,91,97,109,94,103,105,106,105,105,95,104,108,94,103,103,95,98,98,109,108,102,95,102,93,105,108,101,96,99,81,78,87,103,101,108,98,101,94,106,101,109,94,99,74,100,85,114,99,100,107,92,109,102,97,94,84,93,96,110,100,93,93,101,94,108,102,95,86,93,106,115,100,107,98,112,105,105,109,101,110,87,104,99,93,96,103,101,100,95,92,103,98,93,104,105,84,92,100,94,106,104,112,92,92,104,105,96,105,104,85,99,95,96,93,102,95,100,105,89,107,98,99,108,97,95,110,108,89,95,98,102,96,91,93,106,90,99,97,100,102,87,92,98,96,102,97,88,103,101,96,100,103,96,100,91,101,102,106,103,97,95,89,86,80,87,100,105,91,101,94,97,107,92,102,94,105,86,104,101,105,101,101,106,108,102,92,83,106,104,94,97,101,109,105,106,89,92,87,85,98,107,96,103,97,75,98,102,98,102,105,95,105,94,76,105,98,94,94,100,106,100,103,90,92,88,105,98,96,95,87,99,93,103,84,99,105,109,75,96,97,97,107,102,91,84,91,102,94,106,92,96,102,112,91,98,107,98,105,83,109,94,107,74,108,112,95,96,103,91,99,91,91,105,103,99,94,92,106,107,69,92,107,99,107,100,90,101,102,92,116,86,103,100,94,101,95,108,93,99,107,106,96,90,109,88,95,98,99,98,103,95,97,88,103,103,95,101,95,96,84,92,92,90,83,94,95,96,97,81,113,101,98,92,89,95,100,90,99,99,93,84,93,92,106,96,93,85,101,99,106,103,97,96,103,96,95,109,99,123,104,97,94,95,96,94,109,107,98,105,94,108,112,101,89,98,104,95,102,106,105,99,100,96,92,108,105,100,102,96,102,98,94,96,101,92,100,97,106,96,106,93,92,64,100,93,97,94,101,102,115,104,101,99,109,90,95,96,79,101,85,93,98,108,97,102,98,95,92,95,101,92,97,100,84,100,83,101,106,104,89,99,103,103,95,91,101,104,96,100,88,115,91,87,98,107,110,90,99,96,100,87,87,97,122,102,98,107,79,107,95,95,103,94,102,103,110,97,130,100,99,100,102,102,88,111,99,109,93,91,104,121,101,91,85,105,106,87,113,102,100,89,98,111,99,81,104,88,97,97,97,83,92,93,104,90,96,95,104,112,101,97,99,87,99,109,86,99,101,92,95,103,88,94,80,91,92,90,102,97,101,91,99,95,95,82,101,106,100,101,92,89,94,97,106,102,99,107,84,91,101,108,100,98,95,96,106,111,95,96,103,96,91,92,95,96,103,87,109,89,105,105,90,96,80,98,91,105,108,93,110,96,106,104,102,97,101,118,90,91,95,98,108,97,115,94,105,103,72,91, +733.49103,97,104,96,94,89,91,101,93,125,111,90,91,114,100,99,116,94,94,104,105,94,112,76,101,97,98,106,99,103,103,90,110,99,112,94,106,104,97,82,91,92,90,93,98,97,89,93,105,82,99,96,94,89,92,95,106,109,96,104,86,104,108,95,90,105,99,96,100,100,94,118,99,102,117,103,109,110,89,104,96,100,101,96,94,94,94,106,109,97,99,99,99,107,93,98,107,104,88,92,100,90,93,89,88,106,89,99,96,104,98,113,104,100,102,111,88,98,100,100,111,91,122,91,104,100,94,104,96,117,90,90,105,85,101,98,106,110,101,103,104,102,99,103,91,105,97,109,85,96,108,84,106,100,83,90,104,85,101,89,108,100,103,108,104,106,92,100,95,99,86,104,98,84,107,103,103,100,68,95,96,94,96,115,83,100,91,118,88,100,99,96,99,96,102,92,103,101,99,100,88,94,110,102,101,104,100,86,98,110,92,96,102,103,104,94,84,96,113,90,106,107,112,105,96,104,91,103,101,102,110,102,109,104,99,97,104,100,108,101,97,88,107,96,95,90,111,97,92,72,105,112,102,105,91,92,93,95,102,95,100,96,110,94,99,109,87,108,92,96,91,99,109,101,106,98,101,98,107,99,98,109,92,97,105,109,94,98,104,100,95,97,88,98,109,105,115,97,100,87,109,94,98,100,113,90,108,103,112,112,90,98,102,104,102,108,102,94,104,96,74,92,93,100,102,103,104,103,88,112,117,108,100,96,117,103,101,89,94,96,106,105,101,97,103,87,99,105,92,118,103,87,109,96,106,110,99,73,109,81,101,102,85,93,96,95,92,95,109,84,86,97,109,108,100,98,98,89,95,87,100,111,109,95,97,91,91,101,104,101,93,107,97,86,110,107,104,96,91,98,96,96,98,106,100,95,91,106,98,107,110,89,105,84,104,106,99,85,93,94,96,96,108,108,97,88,87,95,106,88,107,102,93,110,88,97,103,88,108,115,94,96,91,94,105,82,105,115,102,104,87,95,109,105,95,103,97,92,93,101,97,93,98,99,110,97,66,96,99,95,95,125,113,98,92,102,90,104,102,95,98,84,108,116,93,109,105,101,101,101,106,90,112,105,107,95,97,82,109,99,95,99,95,96,97,84,104,89,106,95,86,98,106,103,103,99,107,116,100,99,99,100,97,96,104,92,106,96,95,102,105,90,91,90,102,100,104,102,125,102,101,100,113,99,94,113,103,104,108,103,101,109,97,109,101,101,95,110,63,89,101,104,104,90,102,90,100,103,108,96,99,92,108,96,107,109,97,90,100,106,102,105,104,108,97,90,84,92,103,98,104,106,99,102,104,95,117,102,95,95,81,96,103,85,101,98,77,106,99,94,100,91,100,94,102,87,94,91,105,101,103,101,99,118,94,89,102,105,92,105,112,79,84,109,93,102,95,87,104,92,105,114,110,106,101,95,88,82,98,98,102,88,100,100,97,104,91,91,110,90,94,97,104,108,100,82,88,106,97,100,96,104,96,98,110,95,107,69,105,96,105,109,107,94,96,95,98,88,91,93,110,95,103,78,113,103,96,97,103,110,87,102,96,108,105,96,89,100,111,105,98,102,98,91,102,98,105,99,92,114,104,110,96,106,115,105,100,116,104,85,104,106,100,114,92,96,100,96,99,105,102,104,92,102,85,106,100,99,106,93,92,78,96,94,95,111,108,100,92,93,104,99,101,91,92,87,88,94,106,107,97,105,89,99,112,96,100,95,100,99,105,90,102,107,94,111,105,82,91,100,86,107,79,96,96,95,88,96,105,102,90,103,88,88,111,108,98,109,94,94,97,96,93,93,106,99,109,104,99,82,105,94,109,97,100,93,100,101,108,99,98,111,128,108,91,93,105,93,99,107,105,114,92,94,84,99,102,87,90,100,131,100,89,96,105,98,95,91,88,105,101,108,106,98,104,88,92,93,122,102,102,96,101,96,105,98,99,94,94,109,83,88,92,86,88,99,84,104,113,94,97,92,102,104,108,107,108,90,85,98,87,94,99,100,103,104,94,91,111,91,95,110,112,87,108,99,101,99,107,89,100,110,93,110,103,91,124,110,93,107,102,94,123,113,104,91,101,95,104,104,112,107,90,109,86,93,107,106,96,100,111,96,102,108,100,105,113,95,99,93,113,99,112,105,82,105,99,96,109,96,101,106,107,98,89,99,114,97,90,93,94,111,89,95,100,106,104,95,104,101,101,117,98,111,97,106,99,105,103,94,96,118,101,98,99,110,100,100,100,102,86,92,96,107,112,83,101,107,95,81,96,103,91,106,99,98,100,106,105,100,99,96,106,105,101,109,96,102,88,97,89,114,87,114,97,96,96,121,108,104,109,94,97,95,88,104,109,102,106,112,99,101,108,105,97,96,104,99,94,121,89,100,101,88,111,79,104,106,95,98,104,97,98,92,93,97,101,96,89,107,104,98,99,105,86,86,96,92,93,103,98,93,96,98,96,96,117,95,100,98,98,100,115,103,97,95,84,93,98,102,103,97,97,108,102,94,105,83,94,100,99,92,100,89,100,77,91,94,94,100,96,102,105,93,106,101,91,100,109,93,108,109,89,103,85,97,101,109,97,99,102,82,93,92,87,88,105,100,93,106,84,97,99,104,95,101,99,96,84,100,100,110,83,83,90,102,105,97,102,94,103,91,93,111,108,100,104,104,80,92,108,73,94,90,96,92,106,90,97,95,94,106,99,100,102,94,93,108,95,102,94,97,104,95,91,97,101,93,88,100,100,94,103,96,102,89,105,95,103,98,98,98,84,112,95,102,105,106,95,93,101,105,93,95,98,94,89,103,107,97,94,93,106,97,106,99,97,98,100,93,103,113,97,88,97,105,95,100,101,105,105,95,88,106,94,105,103,99,95,100,99,95,106,95,101,107,103,96,81,101,76,83,106,98,99,102,102,100,99,115,95,95,110,95,106,97,98,100,84,76,91,108,106,102,86,95,83,99,95,104,102,96,112,106,101,105,92,90,76,100,106,96,91,96,93,89,87,101,92,92,97,109,105,93,109,91,98,94,92,95,95,100,92,105,101,100,96,102,107,98,101,91,96,102,94,107,89,98,96,99,95,90,91,96,94,79,69,106,100,99,104,103,91,101,114,99,81,99,87,95,60,101,110,76,104,89,95,105,92,98,96,102,98,103,115,98,88,90,110,113,100,110,104,98,89,98,91,101,95,109,103,107,99,98,107,94,96,90,100,106,103,109,86,103,72,98,96,109,101,92,110,85,79,101,90,97,109,95,66,95,102,99,101,98,102,99,101,103,83,89,105,92,104,90,120,103,99,104,103,102,101,91,99,106,87,101,113,89,99,90,96,95,88,95,113,103,104,103,79,90,94,93,94,91,102,96,80,103,115,99,112,98,89,84,92,115,106,88,91,102,93,99,95,97,92,94,106,101,83,103,83,96,108,66,94,95,108,88,90,117,109,86,95,101,92,102,96,101,93,89,97,97,79,101,98,72,101,108,112,105,100,105,100,112,95,102,103,91,112,109,96,88,92,90,88,101,98,92,87,102,97,97,104,77,97,100,93,89,99,108,102,107,105,96,120,91,87,106,96,89,101,91,92,99,93,88,92,92,106,100,100,88,100,104,103,95,83,93,100,99,100,101,96,87,91,95,98,98,92,94,95,89,103,104,94,98,107,93,86,90,80,100,87,93,84,98,94,98,73,99,85,103,95,95,91,98,96,115,92,97,102,103,97,97,101,93,108,102,97,95,97,95,106,92,99,109,95,90,97,97,93,105,93,98,107,83,88,100,86,95,109,86,95,92,106,94,95,89,97,112,92,95,102,76,101,95,102,88,107,98,109,101,96,108,90,106,91,94,89,100,99,118,106,98,105,87,102,112,97,97,104,107,92,112,94,102,103,104,89,86,80,98,115,96,94,88,94,95,102,102,98,107,83,100,102,102,97,95,96,102,102,91,112,95,86,91,88,85,83,104,95,92,106,102,95,109,95,106,79,110,101,105,100,99,110,101,87,110,101,99,101,69,97,98,82,104,93,109,101,101,88,101,87,100,100,77,106,96,92,84,91,104,100,100,94,100,106,100,93,102,97,94,98,98,104,102,127,87,85,99,90,96,93,58,94,95,100,91,112,104,87,107,89,95,102,105,102,76,95,104,95,106,88,92,95,101,88,109,89,95,106,99,107,100,90,88,96,95,94,92,80,97,99,89,105,86,101,120,100,98,105,101,101,110,94,89,87,106,90,115,77,101,94,98,104,92,86,101,106,88,108,92,101,92,104,83,104,106,87,94,82,102,92,94,97,94,93,83,94,100,98,104,99,108,103,99,95,97,91,92,89,108,105,96,91,90,109,102,99,102,93,90,82,102,106,109,99,88,91,101,94,102,94,98,99,99,100,98,89,105,102,97,104,108,118,94,93,112,99,96,97,82,90,100,90,96,105,92,96,107,79,109,95,98,106,99,93,105,108,93,96,91,98,95,99,95,95,102,102,99,92,105,102,92,102,62,98,94,95,96,99,97,91,102,102,102,95,107,105,85,91,90,90,99,101,99,102,109,117,105,102,104,111,99,107,101,100,101,100,92,104,97,99,95,91,104,94,112,102,101,100,87,102,113,101,96,108,101,108,98,88,100,85,100,65,96,82,98,91,102,92,94,89,103,92,88,88,101,83,97,93,110,79,113,89,94,98,105,116,95,104,91,95,96,99,99,68,95,103,98,92,92,101,90,80,103,84,95,92,100,99,104,97,105,89,93,103,102,99,123,87,77,97,85,96,116,97,120,98,104,104,87,99,98,84,90,105,65,102,97,96,88,89,106,102,96,99,103,101,119,96,99,100,99,102,94,100,102,104,91,90, +733.63239,96,94,99,97,102,108,84,88,98,105,96,90,94,86,111,99,99,92,114,115,100,109,93,92,96,97,102,96,95,91,102,106,108,103,106,94,96,81,104,99,104,98,63,100,101,88,114,108,100,107,100,98,95,95,88,118,97,110,100,96,105,93,100,114,100,109,106,112,105,77,106,83,126,94,99,117,92,105,74,104,89,93,94,107,91,95,89,100,102,99,94,104,101,89,105,109,100,92,92,94,97,91,86,91,96,97,97,94,107,95,104,107,109,98,98,101,99,108,102,113,99,94,97,92,103,99,105,89,112,91,95,104,116,105,113,102,109,120,84,101,94,89,98,105,90,94,102,98,88,90,85,92,106,91,109,97,107,108,99,97,101,95,95,102,77,108,103,98,100,78,99,96,115,107,101,98,92,100,106,100,92,106,98,107,99,93,91,73,100,99,103,96,99,106,100,113,101,101,100,94,101,91,100,99,82,91,104,101,98,104,97,109,106,92,101,86,86,103,101,86,118,101,98,98,111,100,109,94,100,94,100,113,103,111,108,101,101,92,89,96,107,96,106,105,95,102,113,96,109,91,96,109,105,99,109,98,102,103,109,103,95,91,84,99,95,96,103,99,94,100,105,134,70,100,95,106,95,100,96,109,95,99,87,94,103,100,88,90,109,98,82,99,87,87,101,108,100,103,95,91,99,113,100,91,107,95,104,112,99,92,93,105,93,85,105,95,87,95,115,103,99,94,110,99,98,97,94,93,110,103,111,87,100,104,99,99,106,101,96,104,100,96,101,88,107,102,99,115,98,80,97,99,103,106,109,104,110,101,84,102,95,104,98,92,102,99,83,100,88,86,108,88,113,101,117,78,108,96,93,100,98,86,98,95,114,110,96,91,102,101,108,95,101,94,104,96,95,96,104,99,90,106,88,105,113,96,83,104,97,98,73,90,95,95,96,97,89,105,90,87,104,109,94,108,92,94,101,76,94,105,105,108,124,94,91,99,85,100,92,100,95,100,100,99,90,93,95,97,96,90,99,94,100,103,89,102,98,107,101,109,96,94,101,96,101,109,98,99,97,95,90,100,89,92,92,95,100,101,100,108,106,90,105,98,90,99,106,91,100,86,99,90,108,95,101,102,105,95,102,98,112,101,108,88,106,98,95,107,100,101,108,104,109,101,98,81,95,93,90,85,107,100,92,94,93,101,103,101,96,100,91,104,103,103,106,105,101,103,96,105,105,103,79,101,93,102,98,93,82,92,106,94,94,81,109,74,94,87,94,105,105,104,98,109,98,97,100,110,108,92,101,91,89,101,99,91,93,102,112,108,115,98,106,97,102,97,100,110,96,110,115,92,98,96,107,117,111,102,91,112,91,100,103,95,101,96,100,112,98,102,99,109,99,105,104,102,91,90,101,86,102,100,107,100,113,91,109,99,112,101,107,116,101,103,96,96,99,88,95,88,109,120,90,100,97,93,114,98,93,99,96,96,105,94,104,102,76,113,97,101,103,98,98,105,92,112,103,96,109,86,115,92,97,101,93,100,97,100,96,95,99,101,102,93,85,99,92,95,90,100,108,104,93,112,117,106,103,102,100,90,106,96,93,95,96,110,90,104,99,93,102,130,85,84,90,117,101,105,98,99,96,91,97,101,85,90,109,105,91,106,111,96,96,104,90,93,91,76,117,92,100,99,105,101,102,102,86,88,109,109,102,100,94,102,90,91,114,98,105,81,110,96,93,92,103,94,97,95,102,96,117,108,120,94,100,100,115,87,103,100,101,101,89,100,98,112,119,100,101,114,99,105,80,100,103,91,93,108,102,100,97,85,99,102,92,90,106,105,87,98,102,96,97,98,109,100,113,107,110,100,100,110,91,98,97,105,104,90,117,97,102,110,101,101,100,99,105,93,89,98,97,98,97,97,98,73,93,94,98,103,85,97,93,97,105,103,103,98,88,101,86,102,105,101,108,107,116,104,106,111,96,108,98,101,79,100,104,94,100,98,100,109,100,79,110,96,106,100,91,99,109,110,103,115,106,106,95,105,101,103,92,108,106,92,95,96,97,106,106,103,98,103,101,106,89,98,95,87,94,96,102,105,106,88,109,89,94,105,100,98,102,109,90,96,98,104,92,104,93,101,96,99,104,93,100,102,109,103,96,100,98,96,99,103,102,103,105,110,89,93,105,103,98,101,105,98,77,102,94,105,99,98,92,101,102,109,101,107,92,103,96,95,103,100,101,99,99,97,105,101,87,116,106,91,95,100,69,94,101,108,99,108,101,105,95,96,92,102,107,100,113,100,83,109,98,94,105,101,91,85,92,98,94,98,99,107,97,94,96,100,106,92,105,74,98,93,90,94,98,125,106,106,102,94,91,94,104,103,106,100,100,112,96,102,97,85,107,98,96,100,87,89,100,109,101,101,107,97,98,101,90,104,99,108,96,102,106,96,100,93,109,103,96,89,104,106,101,97,103,96,97,98,106,86,79,88,98,99,77,104,91,94,100,96,87,97,106,115,106,92,101,103,95,97,109,88,103,92,100,95,91,91,79,108,97,97,91,101,102,99,106,116,103,104,95,103,95,114,92,97,98,91,84,104,89,91,96,108,108,90,98,97,103,101,97,99,110,106,102,106,100,93,85,98,115,99,95,97,105,98,105,103,97,93,106,101,105,98,107,95,90,96,95,112,100,98,106,92,104,126,96,115,102,95,93,110,101,103,103,99,97,96,106,102,101,96,91,94,99,97,102,102,87,101,102,95,95,108,98,104,85,94,90,95,88,100,92,97,99,100,99,105,110,94,98,98,100,106,98,112,105,91,108,92,89,100,98,111,94,108,112,93,105,84,95,91,102,122,80,92,99,108,97,119,102,102,97,95,97,99,101,101,103,95,101,96,97,91,94,96,96,97,98,108,112,90,88,86,99,97,102,97,108,97,101,96,99,88,96,102,102,103,82,110,93,101,110,101,101,103,107,91,107,89,100,108,104,100,99,102,111,94,83,104,113,104,104,99,103,100,93,102,96,99,120,113,100,104,87,91,99,91,95,93,98,84,89,110,97,84,95,95,92,98,100,105,85,100,107,104,95,86,115,92,98,99,103,115,103,89,98,100,103,106,102,90,76,101,94,101,99,94,104,93,93,114,106,96,96,93,87,97,91,106,106,110,105,103,113,102,91,93,99,99,94,99,93,91,95,96,90,95,98,99,91,98,100,102,96,104,100,98,98,105,95,123,96,90,101,94,89,100,107,103,94,97,103,110,90,102,91,91,94,101,108,99,104,89,108,103,96,91,95,85,96,98,92,64,101,100,109,102,102,99,92,108,100,87,94,101,98,114,95,105,102,103,91,94,107,94,81,113,106,109,112,90,103,96,91,94,79,72,76,143,101,109,94,92,103,99,93,112,106,105,95,93,84,108,103,95,96,85,87,95,93,98,93,100,94,108,101,94,97,105,92,88,99,97,96,92,96,102,103,115,111,108,105,83,97,106,97,102,106,105,100,98,79,91,97,97,101,94,110,104,103,87,103,102,97,99,94,88,99,96,109,109,91,96,103,101,112,97,100,105,109,108,99,97,100,99,89,96,91,102,94,91,101,103,112,98,106,99,100,102,94,93,103,98,91,93,99,84,98,110,92,101,83,95,97,105,94,93,94,109,100,94,94,68,108,100,106,100,101,99,84,88,96,103,106,79,98,104,100,97,104,92,91,87,109,93,95,102,97,86,94,94,100,115,98,106,107,101,92,105,87,105,105,127,107,97,91,93,110,102,93,94,88,93,100,106,88,99,90,105,94,101,96,102,93,99,91,99,99,103,104,89,98,96,85,102,87,101,87,91,98,94,101,94,99,104,99,96,113,100,102,103,92,91,96,83,112,83,108,97,96,102,107,92,79,100,96,100,92,104,98,103,93,96,95,106,94,101,99,95,84,90,97,89,101,93,108,87,97,96,97,105,98,111,89,95,104,99,87,102,104,119,99,91,93,94,106,103,90,110,109,108,109,101,99,107,98,88,93,99,86,114,109,86,94,106,101,101,99,95,99,97,96,92,99,93,99,108,95,100,102,94,105,85,112,99,94,105,91,110,95,96,90,103,98,84,101,104,90,106,106,109,91,100,75,108,93,77,86,104,88,90,101,96,95,87,95,87,99,94,101,99,102,97,103,93,111,97,132,99,94,106,101,99,107,105,96,95,95,95,96,103,119,93,100,104,96,103,93,89,89,96,103,121,91,97,90,98,112,100,79,101,99,102,95,94,99,108,109,102,100,105,88,101,91,108,108,103,96,101,122,107,104,101,106,101,95,100,99,101,102,91,95,98,93,94,108,83,109,99,98,94,103,95,107,115,94,111,92,95,104,104,103,100,105,97,105,96,99,99,126,95,94,99,94,96,92,97,108,87,95,92,106,94,95,96,110,96,93,87,93,89,87,94,98,113,112,99,106,101,95,62,87,113,88,96,87,90,102,102,102,91,103,118,97,89,97,111,90,108,110,104,98,97,91,92,99,96,98,84,88,104,106,104,100,91,93,102,107,92,107,108,116,113,96,90,97,92,96,86,98,102,106,106,100,96,96,96,100,103,103,105,93,100,98,95,96,91,95,105,97,90,99,108,103,96,104,103,92,95,91,96,103,87,106,108,90,88,91,101,89,92,106,98,107,109,103,100,95,99,118,93,118,88,89,105,103,99,97,101,105,83,89,95,103,100,96,100,92,89,113,82,97,83,90,98,98,109,104,111,92,84,94,88,108,97,99,100,97,117,110,116,96,97,96,103,101,94,91,109,90,94,84,100,100,95,109,116,102,94,103,102,91,97,74,110,101,91,95,99,93,91,93,101,104,85,90,96,99,84,89,96,101,116,81,103,100,83,94,83,94,93,84,95,100,87, +733.7738,104,93,109,87,96,96,108,109,100,96,98,133,98,111,113,82,103,101,91,96,106,94,86,100,101,105,99,92,85,109,90,102,99,102,102,122,99,108,102,96,101,109,101,86,103,100,84,100,102,115,109,86,104,98,96,95,100,95,103,91,102,114,104,86,92,81,99,85,98,91,106,101,82,121,105,96,90,95,93,89,110,100,103,113,87,99,105,100,105,104,91,104,97,99,93,93,91,103,109,97,91,104,92,98,102,87,92,99,82,91,100,110,101,97,100,99,107,105,101,101,105,90,105,91,98,99,102,98,104,113,87,93,96,92,103,94,101,112,99,94,98,101,99,108,93,96,108,92,90,91,102,98,101,95,85,106,111,96,108,95,98,88,95,93,94,85,102,100,103,82,102,102,83,92,100,104,86,94,107,101,94,95,87,103,98,101,103,90,97,97,90,104,86,102,97,93,96,100,85,113,101,89,90,95,95,70,98,99,114,93,94,87,105,103,105,103,91,92,99,106,96,110,101,97,98,100,81,101,102,106,102,99,102,100,93,114,110,97,92,92,102,88,97,97,97,100,95,81,90,93,93,99,100,88,86,89,100,97,96,98,90,93,102,97,88,99,103,94,103,95,93,93,113,90,101,81,95,96,91,97,103,98,128,101,103,114,98,95,94,107,104,117,97,96,117,105,104,102,101,97,105,95,101,108,91,110,112,105,103,94,101,111,98,95,106,105,95,102,109,97,94,92,98,117,95,94,89,102,99,89,98,94,93,104,101,108,88,91,95,103,92,101,92,91,97,107,92,98,94,96,85,93,102,102,87,100,95,99,95,100,103,95,109,95,96,98,109,97,91,93,100,96,106,82,102,90,96,92,99,97,100,105,100,95,96,92,109,90,100,104,104,91,97,106,95,93,94,83,98,66,93,86,106,106,101,84,95,94,112,103,87,84,102,110,107,81,96,92,97,90,97,94,90,108,93,91,88,93,95,91,85,87,86,65,87,109,109,105,96,106,98,84,90,93,94,96,92,93,107,83,96,105,113,93,104,100,71,103,96,92,96,106,109,94,92,87,95,97,95,101,81,108,101,93,94,99,90,103,108,106,103,101,98,109,101,100,100,99,93,82,105,97,101,101,97,97,99,95,92,92,111,93,95,100,91,95,100,77,103,87,106,94,105,93,97,101,103,106,91,97,106,108,79,98,94,98,110,101,117,97,97,88,99,107,97,94,109,87,98,107,94,88,96,91,108,88,94,90,100,101,97,97,115,99,88,92,102,96,87,87,114,97,90,97,90,98,95,115,97,92,90,82,66,101,84,103,83,91,106,106,100,99,113,87,102,106,105,100,90,103,97,88,86,91,113,84,93,103,97,99,90,88,96,97,95,99,95,93,90,91,93,106,114,85,105,98,100,101,108,95,109,107,85,118,87,101,99,98,97,110,104,93,92,107,90,88,101,103,101,100,95,94,98,101,93,94,101,106,99,105,99,93,95,92,105,107,108,105,99,87,107,103,93,94,94,101,99,97,102,94,98,101,95,85,92,105,91,100,95,104,105,101,106,102,100,95,93,88,100,106,100,108,141,100,80,85,95,109,106,92,102,89,86,97,95,88,99,112,95,97,90,102,103,94,106,88,89,98,98,94,110,94,105,103,96,123,102,103,96,99,97,101,93,101,98,99,110,92,103,86,91,86,113,111,94,71,92,98,88,90,109,101,109,88,88,111,90,95,95,94,92,100,92,101,97,103,95,101,108,96,101,96,107,93,95,99,100,86,101,97,91,105,93,106,87,96,94,92,90,82,104,100,97,107,104,106,78,96,99,106,97,94,79,99,109,90,103,95,117,95,97,100,104,98,109,96,102,100,94,101,98,107,92,93,99,98,100,101,97,81,96,95,91,96,125,96,103,97,100,104,103,115,95,102,95,94,83,110,103,93,114,92,94,93,95,96,124,97,96,95,101,98,93,100,97,79,79,107,94,109,93,109,89,103,99,87,94,102,117,95,103,105,94,93,95,93,87,97,107,93,102,106,100,67,107,103,95,103,93,96,90,95,107,103,111,74,97,79,100,84,102,106,104,103,101,97,100,100,96,99,106,92,94,104,100,94,82,88,105,110,102,101,97,107,92,101,96,91,90,98,99,95,85,101,97,93,105,86,89,99,83,98,94,106,95,99,96,104,96,100,109,99,101,103,107,96,106,101,103,95,87,95,110,84,107,89,87,94,96,94,95,95,93,117,105,98,100,90,120,92,101,86,104,100,95,100,96,96,87,103,87,104,105,103,97,117,102,102,97,90,102,99,97,98,92,100,120,93,103,101,119,100,102,95,101,94,97,101,93,87,95,94,91,93,117,94,86,74,121,92,95,107,98,88,102,90,85,102,103,93,94,100,92,105,98,92,101,98,83,103,107,102,100,99,102,106,88,103,93,88,117,108,110,101,99,93,87,95,86,102,87,95,85,96,92,109,91,94,104,103,94,88,93,93,92,98,97,103,93,90,92,97,101,93,109,98,104,99,94,97,98,108,113,103,92,101,100,105,98,100,103,99,92,98,95,96,106,118,101,93,101,106,115,86,109,92,87,100,87,102,101,96,87,106,101,107,90,96,103,95,101,92,104,103,97,104,104,109,84,98,104,95,89,91,93,111,109,96,103,100,107,100,94,99,108,96,101,93,94,86,100,99,95,104,97,97,107,109,72,107,95,99,117,98,102,98,74,93,98,94,113,105,102,113,105,98,98,104,103,100,107,104,94,101,105,95,102,107,94,98,108,95,104,106,91,104,95,79,121,103,109,108,97,99,92,88,100,100,105,102,101,101,110,96,95,101,103,99,96,107,92,107,100,102,99,95,97,96,104,105,103,106,107,113,115,104,91,98,100,100,116,102,98,100,92,89,102,100,101,96,92,97,94,101,103,93,97,95,105,123,91,109,84,93,101,108,98,95,81,92,99,96,95,107,101,98,99,96,94,92,100,103,100,106,104,103,99,85,97,104,102,113,103,107,112,90,110,100,102,102,93,103,106,100,108,75,83,97,94,99,94,100,102,96,102,95,97,102,93,110,101,100,95,101,103,93,95,116,100,95,113,100,109,96,105,105,98,98,99,93,95,114,99,95,100,87,91,98,99,104,105,100,87,91,125,97,95,95,81,102,97,95,95,115,103,95,97,103,96,110,104,94,97,94,95,101,104,94,99,91,105,114,93,102,99,96,97,98,97,99,99,99,98,91,97,99,100,100,112,109,93,95,97,104,106,102,77,106,102,89,89,104,103,99,91,98,88,101,109,99,103,95,104,98,96,97,99,107,95,94,97,92,98,105,104,93,89,95,100,96,105,110,97,91,92,107,84,93,110,100,103,108,106,111,99,97,94,108,101,97,95,93,97,100,101,99,93,106,90,114,92,101,85,99,90,101,104,102,96,100,91,80,105,93,98,102,113,103,92,100,101,103,104,102,93,102,91,91,108,88,105,95,107,94,104,103,104,98,93,104,100,99,92,108,102,105,104,96,96,103,112,106,96,99,100,93,91,108,92,95,104,114,99,88,101,100,104,92,109,102,109,102,94,105,105,114,109,100,98,89,88,91,90,104,91,98,102,108,95,106,89,97,117,107,95,80,109,105,104,112,103,113,107,119,104,79,105,94,106,102,97,102,105,88,99,83,107,110,102,105,100,113,99,92,95,102,98,95,102,103,104,101,99,114,109,112,96,107,97,97,94,99,100,93,109,98,101,95,111,95,111,93,99,102,72,98,97,98,107,132,112,104,115,104,103,98,94,88,104,99,85,113,94,96,101,101,97,99,108,107,101,107,121,105,95,94,94,97,95,101,101,106,105,94,93,100,91,100,92,102,100,95,89,108,95,98,100,101,102,109,103,101,107,104,110,100,105,114,97,100,99,95,90,108,91,101,107,96,84,92,97,97,106,101,98,100,102,107,108,93,95,94,93,116,89,121,99,90,94,95,96,87,94,98,103,100,105,101,98,109,76,102,92,100,92,86,95,96,99,100,109,90,95,99,100,107,109,82,110,88,96,102,96,87,88,95,103,100,100,100,97,88,113,93,95,100,109,92,92,88,97,111,98,94,105,113,110,102,97,104,102,94,117,109,105,100,94,99,87,99,95,94,105,98,113,103,100,133,105,104,98,83,99,90,88,109,91,100,84,98,116,95,96,99,104,95,101,112,95,96,99,94,108,115,111,105,100,95,108,102,96,100,98,94,105,105,108,105,97,84,99,96,111,120,100,120,96,86,63,97,92,103,98,106,104,107,94,97,81,98,103,94,102,107,102,98,96,92,97,103,98,104,101,95,99,98,100,107,97,105,114,94,113,96,87,96,101,97,91,109,103,100,95,113,91,104,95,91,101,87,113,93,110,95,98,90,94,108,113,92,97,93,87,106,96,97,100,92,111,102,105,90,99,93,97,67,97,98,97,90,108,106,87,112,100,96,106,96,113,97,105,94,99,91,98,100,101,102,105,98,90,95,98,94,92,100,109,106,99,105,114,105,103,101,100,107,98,99,108,109,104,95,93,98,103,64,101,100,98,100,96,103,115,86,87,96,109,88,88,103,102,94,84,97,100,97,105,98,96,97,99,90,105,101,89,95,118,102,106,99,126,103,107,95,129,98,106,98,93,105,92,101,112,100,86,96,84,91,90,101,106,102,105,105,108,108,105,107,83,98,105,114,103,101,98,98,96,95,100,92,83,91,85,96,101,94,96,96,103,98,108,96,105,100,92,96,96,112,98,113,97,85,105,99,101,74,98,102,101,101,98,114,101,102,96,97,98,111,98,95,90,119,96,94,103,120,95,103,102,106,95,112,94,92,93,116,90,101,100,98,101,91,99,117,94,104,96,96,106,87,85,101,111,102,90,101,105,102,80,87, +733.91522,96,92,110,105,93,101,93,86,89,95,93,110,90,106,95,87,125,117,95,93,108,95,97,99,110,105,71,106,104,116,112,103,103,100,93,102,95,94,117,100,105,94,88,104,96,95,99,94,113,106,89,94,95,102,105,90,99,95,105,94,107,97,100,104,92,111,85,100,101,104,112,101,89,108,100,102,88,119,104,103,104,97,103,95,99,79,100,96,102,99,90,114,84,90,87,85,101,98,99,98,93,95,102,96,101,103,86,93,97,93,96,93,102,91,104,94,98,105,101,104,95,101,109,93,111,97,105,102,119,107,79,97,101,85,116,97,84,99,95,101,95,98,97,84,90,94,100,84,86,90,98,112,93,86,96,92,92,96,93,103,82,110,103,71,104,100,89,93,101,98,112,93,93,95,98,92,88,88,105,100,87,99,89,82,96,96,108,92,94,95,98,89,91,105,94,103,97,102,92,106,109,97,92,88,98,105,97,99,104,98,96,98,106,93,92,99,77,109,99,92,100,97,100,89,74,101,92,96,91,100,91,95,94,91,97,96,94,104,97,97,97,105,99,96,99,95,94,112,96,91,93,112,111,98,100,104,98,109,101,94,72,106,99,100,92,102,103,92,96,109,126,92,109,104,105,109,99,95,90,96,102,108,106,103,99,106,108,96,98,105,97,102,82,112,98,102,99,106,109,102,90,107,96,97,87,100,101,103,98,122,97,104,102,90,91,95,91,92,94,110,93,92,100,106,101,91,103,93,97,110,94,86,99,95,95,100,90,113,95,105,105,106,103,87,98,94,95,110,92,91,92,84,101,97,92,106,108,105,101,100,109,110,83,92,89,92,94,95,91,111,102,110,93,72,116,97,92,98,105,100,112,100,99,94,97,96,94,96,94,96,92,89,100,102,91,97,120,92,91,102,99,93,102,86,83,108,105,95,89,87,96,79,99,96,110,94,93,94,90,105,103,85,92,111,88,89,108,105,79,101,89,94,79,96,93,94,98,102,96,93,94,105,97,94,100,98,90,92,99,97,101,101,97,101,107,97,102,112,98,95,105,87,98,102,103,100,107,95,97,93,99,94,99,82,102,110,89,112,106,96,111,104,98,96,113,100,94,105,80,93,92,105,95,93,76,88,95,96,89,100,104,98,97,88,105,109,93,98,110,79,93,93,101,99,95,99,122,92,97,85,104,108,77,84,102,88,107,96,90,89,85,103,105,95,85,94,87,94,101,108,94,89,97,91,99,100,106,107,102,97,100,101,114,89,97,96,94,94,98,92,102,92,95,104,93,101,105,106,108,98,101,94,91,99,97,95,93,103,99,96,96,92,104,93,100,91,94,112,95,103,91,99,88,102,98,106,99,98,77,109,98,97,96,94,99,95,97,106,96,106,99,99,90,104,110,95,97,93,96,99,98,98,100,95,99,87,95,94,91,99,94,97,93,106,77,99,116,96,86,90,94,104,100,117,93,85,99,106,96,113,108,103,94,99,111,97,113,98,100,106,104,94,116,99,96,129,104,105,107,106,91,91,92,109,94,100,94,91,109,90,106,76,110,88,92,94,93,94,100,113,99,105,94,105,101,88,69,99,109,103,102,90,104,91,104,94,96,102,101,92,97,111,94,92,91,91,93,89,94,104,93,102,106,94,91,91,101,110,93,100,74,105,94,93,96,93,101,93,117,95,103,95,84,94,95,90,98,90,104,92,109,93,110,88,92,102,98,125,104,85,100,111,104,92,87,100,78,101,87,87,95,96,97,93,92,98,107,92,96,95,96,93,101,99,95,105,90,111,102,103,109,97,99,89,111,89,99,111,105,111,88,100,98,88,96,79,98,86,97,90,99,86,93,86,105,87,98,104,114,97,90,94,106,97,97,101,92,97,96,75,108,101,97,90,100,87,95,107,106,101,85,91,70,94,89,77,82,88,95,111,94,97,108,87,84,88,94,91,98,100,100,108,92,99,106,86,101,101,110,96,113,92,94,93,90,96,102,104,100,91,95,98,95,116,98,92,85,106,104,102,92,103,101,103,96,107,110,83,95,114,95,117,94,113,107,97,84,97,102,98,110,89,107,91,95,92,73,110,114,98,98,118,105,104,111,98,87,98,94,79,102,110,95,95,109,104,100,96,95,85,97,80,101,101,96,106,110,99,95,97,98,92,106,103,93,105,103,98,93,99,105,102,95,91,108,86,93,96,88,100,86,100,101,107,91,105,94,88,74,96,98,99,98,99,95,95,99,104,109,94,91,92,98,97,75,91,88,104,100,99,105,100,87,90,109,109,100,108,110,92,94,101,90,102,100,99,99,116,94,94,97,91,90,91,101,98,106,92,113,97,110,91,96,86,101,126,95,105,99,96,80,91,100,97,99,100,83,92,90,94,85,117,83,103,87,101,97,88,106,112,99,99,103,100,89,101,86,91,102,80,90,102,102,91,105,97,78,99,99,102,105,118,91,90,97,102,78,70,98,98,96,99,102,94,101,103,110,93,99,103,100,110,104,98,97,100,94,101,116,116,90,104,96,82,105,108,100,90,103,93,99,105,90,90,95,113,95,91,104,96,98,107,92,88,102,98,99,110,105,88,91,95,104,101,94,98,109,99,95,104,109,92,110,101,101,91,104,109,94,108,101,90,93,113,98,101,100,94,101,94,97,91,106,115,86,95,101,106,96,96,92,99,88,102,106,95,105,89,107,100,97,106,100,95,100,104,102,92,106,99,103,102,105,99,104,95,97,96,91,102,107,109,90,98,100,105,96,104,111,93,105,101,106,111,98,91,103,96,101,92,92,93,96,95,98,100,101,109,98,93,105,83,100,101,93,95,117,99,92,97,87,107,95,98,102,83,85,109,82,105,94,101,95,96,94,71,85,91,110,108,90,98,105,110,109,83,91,97,109,98,102,104,91,101,102,111,103,98,91,107,103,113,88,105,105,104,102,100,93,101,103,108,103,83,101,93,95,109,91,97,106,95,94,104,106,104,99,101,98,101,104,94,112,103,98,99,106,98,79,90,101,101,96,93,112,104,103,94,99,105,100,103,96,96,103,98,102,87,107,91,95,119,86,88,90,96,97,109,105,93,104,97,103,117,100,90,86,105,104,94,109,93,102,99,96,108,98,100,97,92,109,101,99,106,108,104,98,99,89,103,100,98,100,103,99,100,94,84,97,101,106,100,93,91,96,99,102,93,109,89,89,85,99,108,93,103,93,90,96,95,107,94,107,80,110,102,104,100,92,102,100,105,96,97,106,89,109,105,97,91,99,73,90,98,112,95,94,110,106,96,102,93,102,104,105,102,94,100,112,93,105,99,90,112,103,107,85,105,100,86,97,99,95,92,109,108,110,91,108,94,100,86,104,91,96,110,96,85,95,101,91,85,105,102,109,97,103,114,94,118,100,106,100,111,102,102,99,91,100,105,102,92,97,95,91,88,110,101,93,98,99,93,94,104,87,92,95,100,102,106,90,113,104,101,91,104,91,99,102,110,100,99,91,100,99,104,102,83,98,94,101,102,105,101,100,101,96,96,100,113,99,97,109,96,96,90,96,96,104,120,85,78,91,96,92,104,99,96,100,108,83,108,95,99,104,93,105,102,97,92,89,92,108,99,109,87,105,105,98,98,87,92,95,114,110,91,89,86,90,97,91,101,98,111,84,98,92,99,96,92,97,99,100,88,99,99,103,105,106,96,109,91,105,106,97,91,97,93,112,98,85,102,98,84,100,96,86,99,100,95,100,102,93,103,106,101,99,94,94,96,101,104,85,99,91,109,107,95,106,104,90,106,90,111,100,100,104,110,88,102,99,99,100,96,90,113,89,102,108,98,86,103,96,102,98,102,98,91,105,92,106,108,106,96,103,101,103,103,97,113,98,89,101,101,98,87,91,96,106,90,98,93,98,94,115,78,90,99,96,101,95,100,115,99,92,101,102,96,105,87,107,98,90,96,82,98,95,89,92,93,84,94,112,105,95,100,92,96,100,104,100,112,106,95,96,102,94,112,104,91,93,108,91,94,121,98,102,93,117,94,105,101,93,96,102,101,102,108,100,105,105,97,103,94,87,103,112,95,108,92,93,106,91,91,99,108,98,101,90,105,96,121,94,101,91,103,96,96,112,102,98,100,91,103,99,96,102,97,98,118,97,91,92,108,87,106,72,101,96,113,112,93,94,107,96,100,108,106,96,95,95,104,100,114,107,96,90,92,98,93,105,87,91,103,100,113,94,95,95,99,92,102,98,90,95,92,91,97,98,98,99,91,111,113,105,96,100,95,85,94,99,100,103,100,105,102,98,96,100,108,128,91,103,104,101,99,88,96,109,96,107,92,94,91,96,96,112,102,113,100,96,91,100,99,94,95,104,105,97,91,105,95,106,109,99,91,104,113,96,100,91,93,94,100,91,104,109,101,109,86,101,115,87,97,96,97,92,97,105,99,93,105,92,98,113,102,105,99,91,103,100,96,98,96,90,102,106,95,98,118,105,99,95,94,104,96,106,98,95,102,105,99,94,93,86,121,110,103,107,98,95,84,93,105,89,102,87,92,96,95,113,101,108,103,90,107,102,112,96,105,106,93,102,109,89,96,105,106,102,93,108,102,96,104,90,99,96,92,100,106,113,101,112,107,95,90,97,109,93,93,94,101,113,116,98,92,95,98,110,77,104,94,99,94,96,91,97,101,87,99,110,90,118,93,108,82,90,94,102,102,88,99,93,93,95,97,87,99,98,118,106,88,102,94,105,97,91,95,104,100,87,98,110,99,107,92,108,98,109,91,99,105,105,98,107,80,105,113,93,88,113,88,109,84,104,99,88,104,102,101,98,101,94,93,90,100,97,95,107,95,90,104,101,83,94,92,114,103,103,96,104,92,95,97,80,95,99,97,92,97, +734.05664,99,102,92,100,77,104,97,102,102,98,92,88,101,118,116,96,78,98,101,97,101,109,91,91,82,97,102,95,92,100,93,109,106,84,102,90,122,86,86,98,103,100,95,97,94,98,106,103,85,103,91,96,87,129,91,90,98,97,106,96,93,99,100,86,94,99,85,97,103,91,96,88,82,99,79,113,83,94,102,98,102,105,105,104,98,92,101,95,98,104,94,88,92,78,87,104,93,93,80,99,96,113,101,95,114,98,107,113,101,96,94,100,76,94,90,98,100,98,83,111,89,102,96,101,97,110,112,96,101,99,102,98,86,96,92,97,97,92,101,92,109,97,93,91,100,105,107,99,100,97,96,86,93,92,93,112,97,96,96,97,100,106,95,87,94,97,79,87,97,95,93,105,83,101,100,105,121,90,93,116,111,92,90,94,108,79,90,96,103,94,89,103,112,97,99,106,90,97,96,107,99,104,112,101,100,105,99,86,100,75,74,97,104,97,93,94,86,97,109,92,118,90,95,100,88,87,111,104,100,104,101,102,91,105,91,113,100,89,91,106,92,95,93,83,85,95,90,106,90,92,92,107,93,97,91,91,96,99,87,99,90,79,103,79,105,96,103,91,103,91,92,92,104,105,106,96,97,81,102,80,96,107,106,83,93,92,104,111,92,90,104,102,104,94,106,99,95,99,90,100,94,110,101,95,89,100,95,105,83,83,86,95,86,109,105,98,98,84,92,95,103,96,95,71,91,94,78,90,100,128,98,104,86,95,91,77,105,79,92,79,104,94,100,101,96,102,86,105,90,97,84,97,87,101,103,104,117,91,83,92,95,93,84,96,85,97,89,105,109,92,93,94,96,102,90,99,90,99,97,93,104,96,92,94,88,97,84,89,94,89,105,105,94,98,94,91,94,101,98,102,94,95,102,98,98,101,93,93,95,87,90,94,98,102,87,92,94,84,102,90,100,87,90,97,74,92,87,96,88,98,91,83,110,93,88,94,93,103,120,78,106,99,94,115,108,96,93,104,94,98,105,95,109,109,108,96,108,97,103,96,90,102,101,104,97,92,96,100,101,78,93,97,87,99,96,94,67,99,92,113,88,97,100,99,93,97,101,99,99,91,101,96,98,93,88,96,85,97,96,101,101,96,97,92,99,102,93,98,84,83,97,73,94,89,113,101,90,99,104,99,101,104,110,97,96,94,95,107,93,104,93,103,93,116,86,92,102,107,87,101,91,105,102,91,113,97,100,99,102,80,102,97,105,111,96,101,101,88,98,97,107,101,95,101,103,101,106,102,101,98,100,111,85,100,78,97,55,84,97,116,98,87,105,100,91,95,123,92,104,96,88,99,93,97,105,101,95,91,107,97,95,105,97,106,102,96,83,104,93,93,104,88,97,93,103,91,105,95,109,93,100,92,108,88,106,95,98,95,104,100,106,87,91,96,88,99,100,90,105,89,96,120,100,98,93,86,94,90,99,98,95,84,99,102,107,96,99,92,103,101,105,100,113,91,86,93,107,95,92,99,111,104,87,87,88,100,95,94,99,71,110,87,101,96,104,102,82,106,95,104,99,98,100,103,106,92,100,91,99,87,85,95,102,83,95,102,100,102,89,94,99,97,100,91,83,99,93,86,96,96,81,102,95,96,74,86,97,87,104,103,108,96,95,96,110,94,101,83,101,113,72,81,109,107,117,105,94,101,98,89,105,93,92,90,93,98,84,90,97,100,104,96,95,92,94,90,93,102,91,84,103,99,102,91,91,97,97,91,91,85,108,94,120,92,88,100,104,113,89,95,121,104,104,92,101,104,85,93,103,102,87,93,92,93,100,99,101,101,106,88,91,98,96,93,108,104,103,104,102,94,105,104,91,97,116,100,87,94,107,93,106,97,82,94,92,108,105,95,101,92,95,96,113,94,70,88,105,80,82,76,93,107,93,92,80,102,96,93,98,96,94,109,97,92,91,71,95,115,107,109,100,91,90,96,88,93,103,100,95,101,99,97,92,93,91,96,92,109,92,100,108,121,101,95,96,92,89,80,95,100,98,103,106,102,95,92,91,89,87,101,99,108,95,99,96,100,94,100,97,100,96,108,93,90,96,95,94,96,78,84,90,93,93,82,105,87,97,94,97,73,92,79,102,104,95,83,103,100,100,88,98,98,70,99,94,83,90,99,98,96,113,98,103,93,101,91,98,91,100,108,80,105,100,97,93,83,99,87,92,95,103,99,102,93,90,84,91,107,94,92,107,96,80,78,93,105,97,89,82,124,83,102,95,104,99,104,90,94,107,96,90,94,93,89,93,96,110,108,96,102,101,117,109,90,95,94,91,87,101,92,94,101,93,105,113,105,99,102,106,85,89,103,84,87,98,90,102,97,101,93,86,101,95,93,99,93,93,92,90,105,99,94,113,96,80,91,98,95,97,97,90,86,95,72,96,95,91,119,98,94,108,101,70,101,90,110,94,89,106,102,97,101,96,79,95,102,96,100,84,103,105,98,100,102,107,125,107,101,104,104,98,103,97,96,107,101,104,75,96,103,115,103,91,96,102,105,106,100,97,111,77,103,89,83,84,109,107,107,102,87,109,103,96,97,100,104,95,92,90,99,101,109,99,93,96,115,101,101,92,103,72,95,93,94,99,109,95,110,95,88,98,99,101,95,89,102,106,101,105,98,95,84,119,88,98,113,103,90,104,83,102,113,94,91,94,95,100,85,96,109,94,105,105,107,95,100,112,90,98,103,109,103,88,95,84,98,97,112,104,99,97,99,102,94,93,96,86,91,102,99,113,103,96,99,92,88,93,87,105,103,98,95,107,81,93,93,89,106,83,87,98,112,99,97,94,88,92,113,95,105,92,100,106,103,103,89,95,90,90,84,92,103,108,98,99,84,96,101,105,108,95,100,104,90,96,111,105,95,98,99,99,130,86,96,101,97,101,103,100,102,95,87,91,94,91,100,102,91,91,100,97,92,100,97,109,104,92,101,100,91,105,105,99,102,95,107,100,88,108,100,106,101,102,94,105,101,113,100,101,100,100,103,95,108,90,101,100,92,94,106,92,109,83,111,73,96,95,96,94,89,97,103,105,96,102,96,107,104,99,96,94,93,93,104,109,98,97,88,100,103,95,99,99,92,93,97,95,103,97,100,90,100,93,104,103,106,105,94,101,89,115,93,98,104,103,104,105,102,100,97,109,103,97,94,98,94,92,105,110,97,85,105,105,107,96,92,99,118,106,79,103,97,96,103,99,96,87,105,87,95,67,97,103,94,93,101,98,94,102,99,105,87,96,97,89,106,100,99,95,93,91,100,104,104,103,121,105,93,102,99,82,111,104,97,91,107,103,96,99,100,100,104,107,116,109,99,100,109,101,93,95,91,97,96,109,101,96,96,90,86,95,90,101,98,98,73,102,108,97,105,98,97,98,94,92,102,99,88,94,96,88,97,93,89,100,84,102,103,88,94,91,100,93,96,103,93,103,96,100,96,105,109,98,94,104,97,94,105,91,104,96,94,99,102,98,102,101,88,95,92,96,80,95,89,100,96,91,99,118,106,109,99,104,95,97,103,109,95,91,79,97,103,96,102,100,93,102,94,89,99,79,98,112,106,95,84,95,100,98,87,97,99,95,106,96,96,98,95,98,83,102,95,107,99,95,95,90,109,98,91,102,103,95,95,88,101,103,95,103,97,93,99,92,96,103,111,105,92,102,95,99,102,88,84,96,97,98,105,93,99,123,100,97,95,97,74,111,100,96,109,104,101,102,99,105,95,110,102,95,117,95,100,102,112,96,98,104,88,107,96,84,67,102,91,95,95,98,90,100,104,93,109,93,92,112,92,113,113,95,99,90,106,100,88,97,95,84,101,95,93,93,98,104,100,101,95,101,95,104,99,90,94,95,97,97,95,77,110,100,99,103,92,97,100,92,76,90,95,100,94,99,91,105,108,93,104,64,88,85,124,105,105,100,87,102,95,95,104,97,107,95,100,82,102,98,94,96,112,110,105,99,87,106,97,96,93,106,89,98,103,87,115,92,103,96,110,108,91,72,88,101,101,118,100,116,93,90,96,98,92,68,88,94,76,92,114,102,110,91,97,103,99,99,95,95,99,97,99,104,91,100,96,99,92,94,103,94,101,97,101,95,89,97,90,104,109,99,96,69,96,98,93,91,136,95,104,87,109,98,82,107,103,88,96,91,107,97,100,95,90,95,96,100,90,97,99,113,113,95,96,99,98,98,102,96,109,107,97,95,107,111,97,99,94,95,99,84,95,117,84,92,102,104,113,100,95,96,103,96,96,104,102,99,105,99,63,95,106,93,102,97,101,99,95,93,113,102,99,99,101,122,98,94,77,103,83,116,92,110,102,112,98,90,108,101,91,100,93,108,99,64,94,114,103,107,98,95,105,100,103,98,103,102,95,100,94,84,79,101,85,106,104,99,110,83,101,108,95,99,100,129,93,98,97,102,109,98,104,119,84,90,98,87,114,83,95,98,97,91,90,97,93,95,95,91,94,102,102,105,105,110,86,110,102,111,85,109,105,90,117,120,95,98,105,99,109,119,96,84,79,87,104,84,103,98,104,96,94,100,106,99,100,96,100,110,105,108,87,110,93,87,95,105,88,100,88,106,103,102,81,98,102,100,93,98,103,94,104,92,98,105,105,96,96,107,94,108,91,106,109,104,103,97,91,87,91,102,93,94,82,109,92,91,98,95,92,95,92,96,91,94,101,92,105,93,96,106,105,109,89,98,97,103,94,108,76,112,93,103,105,104,110,97,98,101,84,103,107,107,95,98,100,96,109,62,92,109,87,79,97,108,98,96,61,103,94,97,98,96,107,107,99,106,97,109,89,84,113,86,93,97,86,99,112,101,103,98,107,89,87, +734.19806,85,90,94,105,92,104,93,94,88,99,116,78,95,95,89,107,92,88,112,107,94,100,91,93,98,103,92,105,107,103,86,104,96,94,91,90,91,94,97,89,84,94,110,101,98,107,103,103,97,97,100,94,88,113,108,98,96,92,108,90,100,103,97,98,105,97,88,110,103,98,91,89,92,114,109,113,94,100,107,96,79,95,104,87,107,96,97,115,106,103,94,97,83,115,92,97,100,95,99,105,93,105,99,86,99,88,91,88,92,97,73,101,98,104,95,90,102,97,109,90,104,100,109,100,97,104,107,86,100,116,91,104,84,92,99,107,98,96,85,96,93,95,103,118,98,87,98,94,102,95,90,109,100,97,98,97,114,94,96,93,105,106,104,104,103,86,95,92,99,102,99,104,92,100,102,106,98,93,100,93,96,104,89,94,99,106,97,99,99,83,91,100,99,108,95,95,100,106,97,97,97,104,93,98,86,92,99,91,99,107,99,95,90,88,106,87,100,99,80,115,95,104,98,91,94,104,107,75,108,97,104,85,97,96,107,98,101,106,100,112,101,100,113,74,113,92,94,103,91,107,96,110,97,87,78,106,90,100,95,115,93,105,89,86,105,106,100,94,105,89,106,99,112,102,113,89,100,101,94,97,101,126,94,105,105,129,95,82,102,101,97,106,114,103,94,103,108,105,100,106,90,95,98,112,80,107,108,89,95,105,93,98,102,95,92,109,103,87,95,105,88,99,102,97,90,95,99,100,113,99,98,94,100,101,89,90,95,107,96,88,96,98,111,100,102,98,100,93,91,93,95,97,104,96,102,94,99,92,91,95,87,97,112,83,95,87,89,107,100,100,95,79,108,103,101,100,109,103,96,98,105,103,99,102,84,98,79,98,86,106,110,87,79,114,96,96,91,98,95,98,100,95,114,98,95,94,104,100,91,100,91,95,113,101,103,90,81,102,98,101,96,99,99,100,91,72,102,88,104,97,96,93,108,94,100,102,103,101,89,104,102,88,71,95,85,98,91,101,103,120,84,88,92,96,92,97,102,90,95,91,92,104,91,103,100,99,116,100,69,100,96,115,96,91,102,107,104,102,106,102,92,98,110,82,72,94,107,104,101,93,98,96,95,104,115,95,80,98,96,90,99,94,88,119,95,100,87,98,85,81,107,107,104,92,112,88,90,90,100,87,106,99,91,97,94,89,97,90,95,97,115,92,104,80,97,98,104,81,109,90,89,103,96,81,109,90,106,96,94,95,117,96,95,96,92,82,99,106,98,86,101,98,112,98,88,99,117,98,102,82,88,98,93,104,101,97,87,92,97,87,95,95,102,100,110,101,90,97,91,76,95,100,94,89,105,101,95,93,95,99,93,83,106,90,95,100,92,98,106,85,100,83,107,113,95,88,92,91,90,105,98,102,97,89,104,112,96,101,104,96,98,80,84,98,89,100,95,97,101,93,98,91,101,108,96,84,96,106,114,109,94,107,111,107,96,108,109,98,90,93,102,98,98,92,89,92,94,92,104,101,108,99,94,93,98,109,99,91,87,98,90,102,87,96,99,98,97,98,117,89,92,93,94,103,96,113,96,80,103,96,95,91,83,95,102,102,87,106,83,87,100,112,90,90,101,104,100,104,98,93,100,98,93,90,84,72,92,99,100,107,99,96,86,92,83,96,96,92,103,100,108,105,98,93,100,101,102,99,95,102,97,103,94,103,110,90,90,108,102,105,97,100,82,89,95,97,91,105,92,92,96,95,116,92,118,115,100,98,102,100,99,93,81,91,103,89,86,109,103,88,104,113,89,105,84,92,97,104,103,101,89,58,90,98,97,104,105,95,97,94,108,106,92,85,121,100,118,103,119,92,97,106,95,111,100,101,93,99,87,89,79,104,108,102,87,91,85,105,97,101,91,88,87,94,89,92,97,83,87,92,103,84,98,91,82,97,98,105,110,97,91,91,106,109,113,82,88,104,103,106,92,94,106,104,90,98,95,103,98,101,105,101,111,98,87,93,101,97,95,114,95,105,104,100,101,97,87,99,108,94,103,97,98,85,92,93,102,103,101,105,103,83,105,109,108,87,96,102,97,94,102,106,97,99,92,91,101,90,90,104,98,83,109,111,91,99,94,105,89,104,100,97,112,111,98,94,105,89,95,92,90,97,102,92,101,96,91,105,101,88,104,94,101,104,102,106,92,102,99,98,90,94,88,105,101,104,85,90,86,98,93,100,86,117,104,93,101,98,100,102,96,105,110,97,96,105,90,102,105,104,100,109,88,94,100,92,107,97,93,97,90,92,89,91,109,104,119,103,86,102,92,92,99,100,80,106,113,70,99,112,98,97,110,94,92,93,95,89,91,94,93,100,98,99,88,101,87,106,99,101,109,108,99,89,104,112,99,105,105,114,104,112,112,101,73,103,106,97,103,102,86,98,81,99,96,72,91,92,107,110,97,95,95,113,107,90,97,96,110,114,102,100,110,94,99,104,103,107,123,104,91,113,95,91,65,99,113,89,104,100,94,87,89,96,89,80,113,113,93,107,96,104,85,93,91,96,93,96,98,102,102,96,117,90,113,98,101,109,101,97,94,88,87,127,108,106,100,89,91,99,105,93,102,95,92,88,106,89,94,95,115,86,91,87,109,95,102,102,100,101,94,99,99,105,104,99,103,92,94,101,89,100,108,86,110,116,120,91,105,121,106,98,93,103,117,107,106,109,107,93,101,97,109,105,98,103,84,90,91,101,97,101,86,105,98,101,101,102,94,97,108,107,95,98,105,108,92,101,99,106,90,92,140,103,93,102,96,97,99,108,97,91,109,103,97,103,105,96,117,100,92,97,91,99,95,88,100,97,101,108,110,99,93,98,117,116,96,100,102,75,97,102,109,102,100,95,97,99,93,87,65,95,95,107,106,93,92,95,84,89,77,97,96,97,77,113,87,102,106,104,108,90,86,99,100,88,88,104,95,84,98,112,91,79,95,102,89,95,87,97,102,85,106,101,103,92,76,87,103,102,100,92,90,95,106,94,89,102,108,93,91,93,94,105,92,103,102,100,97,95,93,102,109,112,102,94,112,98,93,96,105,108,89,90,102,87,94,100,106,94,112,99,99,93,97,98,95,95,85,83,89,88,93,98,95,94,95,93,95,96,87,82,98,97,100,91,117,105,93,100,106,106,88,72,102,93,101,87,101,96,91,98,97,91,92,90,95,113,98,100,94,82,109,92,100,101,102,94,104,102,98,92,101,103,106,107,104,105,99,99,84,87,102,99,92,107,113,113,95,102,105,92,94,117,104,106,110,102,92,96,96,70,89,100,100,96,98,96,101,93,87,100,85,93,104,102,92,96,126,87,97,93,106,91,102,96,94,99,100,103,91,95,96,102,96,96,100,110,97,99,70,102,94,86,91,103,88,95,105,93,101,91,87,104,96,105,87,96,99,97,93,99,98,102,107,100,97,107,98,75,104,93,109,97,92,84,110,107,102,88,106,101,108,98,88,109,103,91,95,102,92,97,96,111,93,99,109,102,91,97,89,91,101,90,105,110,90,98,109,100,114,88,106,117,108,94,96,101,106,102,79,84,95,88,91,115,70,98,91,102,99,104,103,104,117,85,89,126,98,103,102,102,95,100,103,95,106,105,105,96,91,96,94,93,92,106,98,89,101,98,104,107,94,93,89,81,93,85,102,95,101,58,105,91,114,100,111,102,91,68,95,95,86,70,106,102,107,111,98,101,106,110,95,89,79,96,96,102,97,87,101,105,103,93,110,101,101,93,95,101,102,94,105,97,103,101,95,98,120,94,97,89,95,102,94,97,87,101,95,106,93,111,98,86,97,92,98,95,92,102,98,110,90,106,97,104,92,104,95,101,110,83,96,96,97,96,99,102,103,104,110,99,99,99,105,104,106,95,109,89,100,87,106,92,97,103,80,108,108,90,117,87,101,110,92,106,124,94,82,91,104,100,95,92,100,90,95,91,87,99,98,96,100,104,107,65,100,91,114,96,104,111,107,101,113,110,103,96,90,105,74,105,83,97,107,99,99,98,94,101,93,99,104,97,84,100,91,107,96,98,92,94,107,107,88,103,98,99,92,101,102,94,75,103,103,89,97,102,100,78,94,99,103,89,104,102,110,85,109,96,100,87,94,103,98,91,88,93,101,97,96,103,95,101,97,105,95,100,97,103,100,87,94,108,102,105,101,90,99,92,105,94,103,112,86,113,90,126,95,104,93,91,98,102,95,98,92,91,101,102,88,99,117,86,103,102,110,91,95,109,89,94,120,87,105,105,87,90,109,115,90,117,101,99,108,107,66,95,98,109,98,98,101,100,98,98,106,87,100,98,106,106,135,107,91,112,99,97,96,102,101,96,102,101,88,95,120,93,105,107,88,95,101,99,92,105,101,97,97,97,101,93,99,96,99,104,90,89,105,112,107,101,94,94,101,99,104,85,103,108,101,105,101,97,82,94,98,103,98,107,89,104,95,109,90,101,98,101,87,90,77,92,101,95,104,102,103,97,104,99,95,105,99,96,87,106,91,106,91,92,97,112,99,99,96,112,94,100,98,92,99,87,97,93,96,93,88,94,106,95,95,84,91,106,106,115,98,113,95,110,97,104,110,108,99,97,119,109,107,88,90,104,93,102,83,104,99,102,99,98,98,95,99,102,106,96,103,88,106,104,102,100,104,92,100,99,90,102,90,87,100,103,103,88,92,104,111,99,102,91,98,98,101,109,112,105,96,112,90,102,96,98,96,100,117,106,113,103,105,88,88,96,105,89,96,107,109,101,93,121,93,105,94,93,98,89,89,103,102,97,93,104,106,103,105,109,80,104,104,104,105,98,77,96,102,90,100,108,100,109,110,89,106,115,100,114,111,104,94,84, +734.33942,90,106,95,82,94,97,87,90,97,112,89,104,106,95,102,90,84,108,99,100,82,110,96,110,89,98,102,103,96,94,103,84,110,108,105,94,103,69,89,93,88,88,87,98,108,109,95,102,104,101,89,96,92,92,95,100,99,102,109,69,93,96,99,104,88,112,96,108,88,88,92,95,97,88,99,114,87,101,89,94,105,92,96,107,112,98,94,98,109,95,110,92,84,106,85,97,99,108,91,72,105,85,91,99,97,93,96,114,95,96,94,91,105,102,97,95,98,106,102,113,95,97,99,90,101,103,101,104,105,96,100,105,100,100,105,89,109,94,94,95,91,104,96,93,100,90,106,91,98,86,92,93,106,86,95,102,97,88,104,103,88,98,94,97,94,101,90,94,111,90,91,97,95,109,109,87,104,92,110,104,90,91,103,99,102,99,87,100,104,114,102,87,106,90,96,112,94,99,92,103,102,102,108,92,91,99,94,92,103,97,110,94,100,112,100,93,93,109,96,99,110,99,99,101,95,107,89,102,89,115,98,102,99,100,92,76,98,105,89,98,95,95,96,88,98,106,94,98,97,109,100,97,104,92,94,95,89,96,95,93,89,94,92,94,90,62,101,92,98,95,100,87,94,95,104,93,90,101,95,101,91,98,97,109,100,92,100,96,109,73,93,98,102,112,87,103,94,102,90,65,111,100,99,101,93,91,90,104,107,92,93,109,106,91,92,106,97,99,98,105,96,108,100,94,94,86,107,82,107,91,115,105,102,95,92,70,104,80,93,102,98,66,95,94,83,97,91,103,99,95,93,82,101,96,96,105,95,101,99,98,97,100,96,92,97,98,91,94,112,110,105,102,98,83,92,88,104,97,74,107,102,105,104,86,100,101,105,100,103,93,102,88,93,100,88,101,108,105,97,104,100,94,101,90,95,87,85,102,96,83,94,93,90,98,101,94,98,91,99,100,98,87,86,92,91,91,97,106,102,111,96,82,99,97,91,84,104,101,97,95,105,99,82,101,93,98,95,92,101,98,87,90,86,91,88,91,81,99,104,92,104,89,92,98,94,97,105,101,96,101,95,102,88,91,94,87,86,102,85,93,90,111,91,102,86,96,94,95,92,87,78,107,101,90,79,106,91,98,115,89,98,83,107,91,93,112,109,97,96,100,97,100,99,95,104,100,101,96,98,96,99,89,97,94,94,97,96,107,81,90,94,92,94,100,91,92,102,99,98,93,103,107,99,102,96,96,88,97,98,102,103,84,104,111,102,90,98,93,96,95,95,93,96,92,97,95,106,95,100,100,89,104,100,100,95,100,82,89,88,109,90,93,107,95,89,96,110,101,101,99,102,97,93,99,105,97,98,88,107,97,79,99,93,95,100,94,98,93,89,99,96,94,95,99,100,93,94,98,95,103,99,92,105,87,85,101,91,95,103,101,89,103,84,87,85,102,94,87,114,109,97,91,99,87,118,89,109,90,92,103,93,92,95,104,92,104,115,103,97,104,96,99,106,104,97,110,85,94,109,106,101,92,96,107,88,92,88,96,100,86,90,100,109,96,77,97,104,107,91,87,95,105,99,107,98,97,99,100,95,91,76,94,86,105,97,110,114,98,95,93,97,93,93,94,85,91,98,93,90,88,93,97,101,96,86,94,95,96,88,89,100,96,85,85,89,91,94,83,103,74,112,92,88,99,91,107,101,99,91,101,99,94,95,99,97,87,98,93,108,92,90,104,83,95,77,104,93,98,105,83,79,83,94,96,89,66,87,98,99,103,88,91,101,79,89,101,97,81,96,107,98,96,90,100,90,101,107,95,68,99,90,99,92,90,102,98,103,104,94,96,108,90,97,87,104,100,106,96,81,100,96,89,98,79,107,114,101,95,98,94,105,89,98,98,94,88,106,95,102,104,102,77,97,97,97,71,99,91,100,102,101,95,102,117,85,91,100,101,102,98,93,105,105,95,110,95,102,104,99,104,91,106,106,104,87,94,106,98,103,100,87,98,99,100,112,93,100,93,99,89,100,110,113,94,93,71,101,103,97,98,95,109,99,104,89,105,99,109,103,94,92,94,110,104,101,92,100,86,97,93,96,107,67,99,94,85,82,95,96,97,90,103,117,89,80,105,95,96,100,109,101,99,110,105,105,96,104,97,93,104,100,106,117,98,105,88,102,109,97,94,109,97,110,107,102,98,100,103,98,104,83,106,99,99,103,93,94,86,96,87,102,101,83,89,104,91,100,91,98,91,93,105,94,81,101,101,85,96,100,93,98,95,99,74,111,98,81,96,94,101,91,96,92,96,80,88,98,100,98,91,126,102,100,90,90,103,101,94,101,87,96,113,88,92,83,93,94,105,102,94,99,106,85,94,105,90,98,99,100,89,92,104,100,94,94,95,96,104,83,95,102,103,102,92,100,90,94,101,105,110,91,99,113,109,88,101,95,93,96,96,88,100,82,106,96,105,92,96,102,102,84,106,95,93,76,101,93,104,108,105,116,100,102,94,99,102,111,93,95,97,92,96,86,91,101,92,100,99,95,112,91,102,93,101,84,103,104,100,95,93,93,116,89,78,105,92,97,101,101,101,74,94,102,110,88,100,99,100,87,97,104,98,96,102,99,105,105,97,94,101,94,97,122,84,96,103,105,93,99,87,92,95,99,99,92,88,108,91,91,100,104,84,79,112,84,111,103,96,104,105,92,103,98,95,93,66,102,96,108,94,99,99,108,109,110,100,99,100,98,105,104,103,95,95,109,91,84,93,94,93,108,98,128,98,105,104,99,130,97,96,91,100,111,104,116,104,93,110,99,96,109,95,100,89,89,100,101,100,120,100,106,92,100,99,99,99,96,103,105,100,98,94,96,105,109,125,94,103,89,103,92,96,94,105,106,99,104,95,105,108,102,102,111,111,105,108,103,101,85,112,103,94,95,95,97,99,92,99,88,98,93,96,100,91,102,102,105,90,103,94,90,98,73,98,98,107,89,97,101,88,96,97,88,76,98,96,112,98,102,91,83,106,90,100,106,124,91,106,100,93,99,106,99,99,98,102,96,95,98,96,87,95,102,99,89,109,97,99,105,104,107,97,96,110,99,103,98,102,109,116,105,103,102,106,100,100,102,95,97,113,96,111,102,101,107,94,96,87,97,97,93,98,92,96,102,102,100,137,107,97,100,94,92,105,103,101,106,103,86,94,90,98,101,88,95,98,105,100,80,99,102,102,95,97,98,111,102,106,112,87,108,101,108,94,93,94,98,102,94,104,104,94,107,96,106,96,108,94,97,93,90,97,101,110,101,98,98,94,101,93,91,101,95,101,112,94,98,104,98,100,108,96,111,100,101,101,103,101,99,94,92,104,96,98,95,100,89,106,100,96,106,87,94,109,104,99,92,106,97,102,88,93,92,100,108,108,104,98,96,98,97,89,97,79,102,113,101,92,97,102,101,112,95,91,93,98,109,94,101,92,106,93,99,92,102,99,90,96,103,82,105,95,104,106,98,100,105,94,109,79,106,99,102,101,99,109,98,104,76,100,91,111,107,101,102,107,95,102,94,96,113,85,117,107,89,92,91,104,102,87,95,104,100,93,99,94,106,92,87,94,100,99,92,107,98,84,107,91,107,100,99,102,128,92,93,89,93,76,92,106,103,98,104,104,99,92,94,105,98,91,97,106,108,91,93,91,101,100,91,86,98,87,104,117,108,80,91,98,87,98,95,97,101,116,111,107,99,99,106,95,107,94,96,84,110,109,91,97,101,88,102,91,111,102,97,109,97,109,96,94,89,107,96,102,94,106,100,105,108,101,96,93,105,101,96,106,104,91,91,97,92,98,83,95,94,88,102,85,95,98,97,91,99,84,102,113,81,106,110,92,100,92,107,87,95,94,99,94,104,105,104,94,125,88,93,82,92,103,104,97,97,105,103,102,94,104,92,97,102,91,97,100,108,102,102,78,102,96,87,125,103,109,84,90,108,89,96,96,92,93,92,101,89,102,99,88,87,76,91,94,107,103,100,90,94,91,102,90,104,101,100,98,89,94,91,103,84,100,99,104,97,102,96,85,87,100,103,104,104,88,98,94,102,104,112,95,101,105,91,98,115,96,94,99,81,106,99,100,107,100,100,95,105,91,94,100,94,75,89,94,68,99,91,94,96,99,117,97,94,88,98,109,94,97,88,95,91,102,111,99,107,113,95,100,98,108,102,94,104,103,97,92,91,106,101,107,88,95,109,96,77,96,98,110,92,101,109,99,114,95,93,99,103,101,98,103,95,82,102,100,100,98,92,100,98,89,84,87,91,107,94,94,90,101,112,98,101,96,96,111,98,101,103,104,85,98,100,98,102,94,94,102,101,98,80,84,102,95,106,105,85,100,60,96,87,94,94,101,86,91,99,87,94,104,118,97,87,102,104,93,109,103,90,98,90,96,95,99,102,100,104,99,95,97,105,91,98,105,97,99,111,90,99,121,96,99,94,100,99,92,89,99,88,90,117,94,97,97,89,91,99,91,97,84,88,92,104,102,123,92,99,89,110,92,99,101,87,83,106,112,102,110,104,94,95,100,95,102,102,83,99,90,127,102,90,99,103,100,105,99,86,104,101,106,99,105,95,101,96,87,91,96,104,99,102,104,99,99,87,105,96,110,105,84,107,91,98,112,99,92,95,94,95,94,98,95,108,92,108,97,93,84,116,104,96,97,98,93,104,95,87,104,95,100,95,96,100,100,83,95,94,104,94,96,92,84,100,98,102,94,93,97,90,118,108,104,100,81,97,117,87,104,116,96,82,111,100,91,104,105,110,108,106,99,93,91,89,98,90,86,104,89,94,95,93,105,89,91,102,88,90,98,102,99,92,83,115,98,117,93,106,88,107,92,96,87,96,109,70,104, +734.48083,87,97,97,95,96,106,87,98,83,88,92,91,98,96,83,82,91,95,90,106,80,82,94,105,110,103,123,97,80,104,101,100,107,97,114,88,94,92,86,93,88,105,109,77,102,90,83,94,85,108,98,109,90,104,99,97,77,90,108,92,91,90,99,94,97,87,97,97,101,71,107,100,98,106,86,88,95,95,89,82,105,101,92,99,102,91,85,99,60,98,95,89,111,100,89,95,100,96,84,104,80,93,82,101,100,96,94,100,96,94,90,102,90,96,101,93,90,69,114,87,97,92,99,92,97,100,87,99,99,99,102,104,95,95,91,94,96,90,104,88,111,98,97,100,86,109,102,97,96,89,92,96,90,98,88,107,91,86,100,91,96,101,100,88,94,105,95,103,105,84,104,96,92,90,77,105,98,97,113,98,94,106,93,108,102,93,88,87,65,95,102,93,100,99,92,101,112,97,101,98,91,88,94,86,93,97,104,100,84,94,109,101,96,94,93,102,80,87,87,91,69,105,98,110,94,109,100,100,93,101,102,91,101,95,102,99,88,99,101,109,87,92,102,65,77,97,99,101,102,102,99,100,87,106,86,93,101,94,97,83,83,91,91,93,96,100,95,99,100,102,117,92,98,104,107,100,93,91,84,94,102,110,106,92,104,93,87,93,93,104,93,97,102,107,97,100,101,88,112,92,116,93,94,107,82,107,98,106,98,97,88,98,88,96,98,99,109,95,96,82,98,96,86,91,91,92,95,96,99,109,90,87,104,93,92,100,87,89,104,81,71,101,102,92,100,97,101,101,98,96,85,89,106,89,97,97,102,104,97,100,83,98,86,94,83,80,96,108,95,103,105,104,84,105,101,100,93,100,92,88,87,100,101,91,94,84,100,90,95,89,92,105,83,98,102,78,80,97,92,107,90,90,92,98,98,90,107,93,102,101,110,90,91,104,92,82,89,104,107,91,96,103,96,96,95,97,84,102,87,105,93,94,88,90,99,91,107,94,92,87,96,87,81,95,90,96,98,97,68,104,95,108,91,92,93,85,98,93,119,93,99,104,98,100,108,105,113,106,77,106,102,74,98,95,94,88,92,101,99,95,86,96,105,82,90,97,97,97,90,97,89,91,103,102,93,73,89,91,93,100,114,98,97,89,118,91,99,98,105,103,93,108,102,102,95,95,92,100,86,88,102,94,94,98,101,92,103,96,86,97,96,95,91,89,109,97,104,89,87,103,92,106,98,94,104,85,102,99,95,89,92,96,92,101,93,87,97,93,88,91,102,95,96,87,83,89,94,100,96,90,87,87,95,101,94,98,91,76,88,120,101,86,101,101,96,87,92,100,88,90,94,112,88,107,104,96,92,93,114,99,87,118,108,91,89,99,85,96,91,96,102,94,87,101,95,61,87,96,94,92,100,88,104,98,86,93,102,94,95,98,90,95,101,96,96,88,86,88,88,96,107,96,96,91,91,90,100,85,104,80,75,85,96,97,91,99,91,91,95,97,92,105,98,96,75,102,96,106,92,84,95,94,99,94,101,93,83,105,105,99,94,88,100,97,80,97,103,88,87,102,93,91,100,90,103,89,91,95,95,94,99,105,89,98,104,104,97,104,92,99,108,66,104,102,97,108,99,94,95,93,91,93,104,100,100,81,94,92,102,91,93,91,97,93,95,101,111,92,93,107,101,60,93,100,107,101,91,104,112,101,106,95,98,104,105,95,98,93,99,95,94,104,96,96,92,88,88,105,102,98,100,91,111,89,105,104,98,87,89,90,91,96,109,101,98,87,98,90,90,106,111,90,94,103,96,81,83,109,86,91,96,87,86,94,91,106,104,107,100,81,98,86,111,95,103,97,100,103,98,94,98,99,93,96,106,106,97,82,100,93,101,97,90,99,109,109,116,99,92,91,84,96,101,105,102,101,99,86,105,103,101,101,101,92,84,92,98,102,101,87,100,98,109,94,104,73,92,81,97,96,91,99,107,98,98,86,113,89,94,83,93,104,102,67,91,98,95,97,94,93,95,105,110,97,103,94,101,104,88,107,88,103,111,99,87,95,100,88,95,87,111,101,93,92,102,90,100,75,86,99,91,107,103,98,98,93,85,97,85,101,95,100,102,93,94,91,105,101,103,106,94,87,97,87,84,94,101,84,96,127,91,99,91,101,95,101,84,107,80,104,91,94,97,108,103,81,90,94,105,94,91,110,93,115,93,106,97,90,102,97,75,91,98,85,97,90,92,100,98,96,95,95,84,104,102,90,78,94,97,103,101,87,99,99,97,93,91,109,115,100,91,94,94,95,104,88,94,90,83,97,87,99,98,96,90,100,89,90,88,94,103,92,101,94,99,97,104,99,96,95,88,85,92,98,88,84,95,98,91,94,99,93,84,97,101,99,76,94,94,87,94,106,93,96,92,116,88,84,97,98,89,109,92,99,103,100,97,105,90,99,95,92,94,93,107,89,99,105,113,106,93,102,88,109,96,100,120,111,91,112,108,102,106,100,92,92,103,106,80,110,95,104,90,88,93,86,79,57,105,105,102,87,105,93,93,94,98,97,105,90,97,102,107,95,111,95,100,91,93,93,99,90,87,87,94,92,94,90,106,98,101,100,98,100,102,87,100,97,97,87,64,86,101,67,101,105,85,110,99,102,104,100,104,101,93,98,86,101,103,105,84,96,104,102,108,105,113,96,82,99,99,83,91,99,99,96,95,93,96,100,63,101,104,100,88,105,96,106,99,99,103,97,96,103,106,94,95,102,103,103,97,96,99,94,95,94,100,97,100,72,84,93,99,95,122,101,103,98,97,101,101,97,104,100,93,96,106,109,98,112,103,96,103,100,100,88,99,99,104,117,101,96,97,94,95,96,96,105,88,93,109,88,104,93,91,105,97,99,96,103,94,105,108,91,97,99,100,112,94,95,104,99,96,98,98,107,95,97,91,91,98,88,99,114,99,97,99,104,101,105,96,100,97,94,101,108,74,105,87,96,98,105,101,100,96,105,105,95,107,98,97,79,90,103,104,97,106,93,95,104,94,97,96,92,102,98,100,99,90,102,112,96,101,96,94,93,84,100,97,90,92,106,106,104,111,97,90,92,93,99,93,90,88,104,100,105,101,100,92,104,100,94,102,106,102,108,91,89,78,95,92,94,104,98,101,102,91,95,100,90,102,109,95,106,105,99,103,109,93,100,95,103,101,101,113,71,66,90,99,91,106,100,100,77,104,96,98,76,101,88,89,102,98,95,95,105,98,94,92,99,90,95,94,99,99,92,88,94,106,100,99,91,100,102,72,97,98,98,100,99,109,100,109,87,107,108,91,93,110,96,103,96,98,103,91,101,99,93,88,92,101,107,112,103,84,111,87,99,107,94,96,96,99,117,102,92,90,94,87,96,96,99,96,101,98,105,105,98,101,90,104,99,102,102,94,95,100,83,91,101,93,97,94,98,93,104,98,90,92,85,92,93,111,95,108,72,92,113,105,99,92,103,101,96,95,99,108,102,93,93,100,95,99,99,84,92,109,101,97,94,92,102,96,93,95,107,98,100,116,108,94,101,119,101,99,101,101,91,96,89,85,105,100,94,96,95,105,108,100,89,99,111,92,111,107,107,105,97,91,91,85,91,98,105,105,98,92,107,99,95,100,89,102,99,100,99,98,110,103,88,96,86,99,102,96,104,83,101,84,91,109,97,106,105,99,109,99,92,101,85,92,103,94,101,83,91,95,98,87,113,106,100,124,76,104,92,107,98,93,101,109,88,103,102,104,83,100,84,102,106,102,94,91,91,104,88,99,104,102,91,106,96,104,97,98,100,103,96,98,102,97,93,106,94,96,105,106,86,109,98,102,121,93,107,109,94,91,104,102,99,96,104,86,106,99,96,95,91,97,92,113,109,97,104,106,91,101,88,92,91,94,100,94,87,83,101,93,95,101,102,88,106,101,105,91,100,104,109,100,103,96,102,90,95,92,94,99,91,90,98,97,106,92,118,103,97,96,109,89,95,105,105,85,91,94,110,107,96,95,108,90,106,92,101,106,103,104,96,95,105,90,96,107,99,101,95,88,81,95,98,98,96,88,95,98,92,92,99,99,102,96,90,110,102,91,108,101,99,100,97,112,88,87,93,95,105,100,96,109,89,97,97,101,85,101,100,94,87,87,90,96,103,100,102,102,102,106,102,93,99,91,89,101,97,93,99,92,87,103,91,94,100,96,92,98,86,92,109,109,89,92,94,94,105,109,92,98,92,103,94,101,103,97,83,103,105,105,94,90,94,91,93,90,94,101,97,108,98,92,96,106,101,77,89,96,92,91,91,97,93,108,91,98,118,92,91,99,85,100,102,103,123,114,103,99,109,98,92,108,88,83,101,97,99,89,110,102,107,87,95,94,90,90,100,101,95,105,102,91,97,96,91,106,92,96,88,94,100,98,117,105,92,96,106,90,97,112,108,112,97,98,96,106,100,104,96,102,99,93,98,91,100,102,102,94,119,76,108,76,97,95,93,99,98,99,108,94,107,97,90,88,103,98,107,94,101,110,106,111,92,89,92,107,83,98,94,101,104,91,106,98,97,101,99,104,99,76,95,110,107,102,97,92,101,88,102,121,95,106,101,101,93,100,100,98,103,100,88,100,87,84,91,97,101,133,97,95,100,80,92,103,120,108,103,98,101,98,92,103,97,100,105,110,109,92,99,104,99,88,94,100,101,99,88,98,95,126,83,109,102,98,92,93,99,99,87,97,97,87,116,93,80,96,98,111,109,90,99,102,92,95,99,90,91,100,102,100,103,94,101,94,101,100,103,87,117,104,102,96,96,102,95,96,106,97,96,89,80,132,113,111,98,106,87,95,91,108,106,90,99,102,84,102,110,103,98,97,102,93,120, +734.62225,95,99,101,87,107,88,111,98,95,93,109,110,103,103,113,94,102,106,103,91,97,94,91,102,100,105,83,112,98,99,97,87,109,83,97,97,104,96,84,87,93,90,96,98,107,117,104,98,102,88,95,94,101,93,92,102,89,89,97,101,96,95,104,99,91,102,94,110,106,98,101,92,84,102,88,93,101,100,104,90,100,98,102,104,103,101,91,87,105,104,91,110,82,98,108,95,103,107,95,105,93,104,93,96,100,115,97,118,103,101,94,95,97,94,100,97,94,91,102,132,76,93,94,95,108,108,124,86,107,102,99,105,102,86,99,97,89,110,106,89,101,97,90,93,95,109,90,105,102,93,83,116,106,86,96,93,95,99,91,101,95,109,94,92,102,104,103,95,105,98,87,104,83,108,96,96,99,91,102,95,90,100,112,89,95,105,87,98,94,97,102,93,106,85,95,102,94,96,94,108,83,102,99,95,101,93,82,101,101,100,93,99,111,91,106,97,97,96,94,89,95,100,116,81,88,105,91,103,107,105,105,101,105,79,102,102,98,108,91,99,97,95,93,98,101,113,99,89,92,105,106,109,98,93,90,101,89,95,101,87,109,97,86,91,106,98,99,98,98,107,113,116,94,96,94,92,95,95,95,105,104,98,103,101,96,85,86,105,92,101,80,93,94,94,109,100,95,98,94,97,97,86,103,96,100,101,98,105,101,109,69,120,114,92,89,97,99,101,98,109,87,99,97,105,106,93,92,89,101,101,91,108,102,116,83,91,98,90,92,113,99,101,96,98,103,99,109,109,87,92,88,101,113,98,98,100,100,100,105,90,97,91,95,85,93,97,95,102,106,101,96,107,98,92,98,109,111,97,98,100,101,93,106,91,90,89,101,97,84,87,102,102,87,113,83,93,91,96,88,98,95,90,101,94,96,80,96,103,91,95,86,101,101,110,97,94,99,97,97,89,106,100,82,99,97,92,93,90,67,104,94,94,92,96,101,98,98,101,103,97,101,100,95,107,69,94,99,94,104,101,95,109,91,95,94,96,97,92,117,102,90,88,105,99,94,96,88,113,94,84,95,102,97,101,102,99,98,105,95,96,98,103,100,98,94,98,99,105,98,96,105,109,96,92,92,95,100,99,100,100,99,108,97,100,93,90,88,96,102,90,99,97,91,107,102,101,100,87,98,85,100,104,97,98,95,100,102,95,96,95,90,106,101,90,92,106,101,97,99,100,92,100,99,102,103,94,89,95,107,105,111,101,103,97,99,101,95,87,87,97,96,92,103,82,88,93,106,108,97,101,91,94,101,105,80,105,98,100,103,100,87,96,117,108,89,94,94,103,104,92,94,97,92,91,92,104,90,97,100,100,92,104,101,100,102,105,93,89,72,99,91,98,101,92,90,80,101,98,84,104,63,103,100,87,97,109,100,101,100,105,100,104,94,100,97,99,94,79,97,100,76,100,99,97,99,92,100,78,109,112,89,98,105,94,98,105,104,100,92,98,101,97,98,111,84,98,101,82,64,82,91,90,106,99,90,110,114,94,99,105,98,91,93,98,93,92,94,100,105,99,91,103,100,108,91,95,97,106,104,91,89,98,93,97,107,98,93,98,107,95,99,96,92,94,97,96,94,107,93,94,100,97,112,109,98,89,96,95,121,107,102,106,100,100,80,96,103,87,109,99,102,91,94,99,101,89,112,104,92,104,104,97,100,100,104,96,94,112,102,94,91,93,84,91,80,105,89,91,104,92,104,100,103,106,105,97,97,95,93,104,101,96,108,101,83,79,101,100,105,109,101,133,90,106,99,101,97,101,95,92,90,92,97,110,113,102,113,118,107,98,101,111,87,88,98,98,110,106,100,101,103,108,97,103,91,110,100,101,106,93,108,107,100,93,101,106,98,88,98,102,94,88,104,99,107,91,96,95,98,105,100,101,93,96,96,91,99,96,99,95,93,104,108,107,102,95,98,98,108,91,93,105,106,101,96,94,107,105,109,86,100,102,88,98,106,97,110,107,99,96,90,105,97,87,88,103,88,103,97,87,103,100,101,106,88,95,92,104,92,99,98,101,105,95,101,101,79,105,97,112,95,109,71,95,94,93,103,83,101,96,91,100,108,107,87,99,81,90,106,97,107,97,93,104,81,95,102,104,100,102,109,95,107,94,99,94,94,96,105,106,109,93,87,116,99,95,85,108,99,89,92,86,80,97,72,108,94,102,106,100,105,91,103,117,106,92,91,107,102,92,95,92,98,93,84,103,88,106,90,112,101,84,108,91,116,99,95,94,89,96,96,93,83,98,86,101,78,99,101,100,101,99,105,98,101,116,100,98,112,107,94,101,78,93,100,83,102,99,102,91,96,105,96,97,100,102,103,115,94,101,98,90,95,91,109,92,97,103,96,89,98,112,97,101,102,98,101,117,108,86,97,112,96,93,118,104,108,100,91,91,102,99,94,111,105,104,102,106,120,110,93,87,107,99,99,96,107,98,98,101,100,94,107,94,80,117,94,106,99,100,94,109,109,120,96,112,87,88,91,99,99,105,91,100,93,93,98,98,106,95,89,111,94,99,97,85,101,104,97,115,96,89,91,95,105,106,101,105,106,107,118,97,109,95,99,100,88,103,105,104,105,83,100,77,102,104,93,107,103,106,94,96,108,100,97,97,107,96,84,98,95,104,94,100,105,116,112,94,94,109,94,105,99,108,100,96,97,102,96,91,100,105,99,116,91,113,96,107,99,104,106,97,112,91,94,99,97,96,105,93,106,102,97,97,97,91,89,101,107,102,96,98,100,98,100,94,91,106,103,97,81,111,106,92,100,106,116,95,100,101,98,101,117,104,107,96,98,100,96,103,105,93,98,92,97,97,94,99,102,116,110,108,101,109,107,96,90,104,100,95,109,109,105,87,97,105,85,81,98,95,112,98,84,93,80,96,102,92,117,106,96,98,106,95,101,95,92,110,96,101,94,113,110,83,91,104,95,115,88,81,108,103,98,99,108,94,99,99,103,103,98,80,98,106,117,116,103,91,98,95,100,101,84,107,109,98,83,103,105,82,99,110,94,107,85,104,104,92,97,91,100,104,105,111,100,105,97,87,97,103,124,101,94,121,95,94,102,97,103,101,78,116,90,96,93,108,94,103,92,108,115,113,102,91,117,98,109,110,90,100,102,98,101,107,100,112,109,111,105,98,93,102,97,87,100,90,104,94,93,105,99,91,104,88,86,93,101,107,107,96,107,82,99,114,95,109,106,106,86,103,98,99,105,93,101,102,102,98,108,76,113,91,89,98,100,93,98,98,88,93,107,104,100,100,98,108,95,99,106,94,107,106,112,95,97,93,109,104,88,120,94,98,98,105,100,95,96,106,79,95,87,91,87,101,99,107,95,106,103,113,90,103,93,106,103,95,99,102,109,93,88,97,100,98,109,93,97,109,96,101,96,96,92,92,100,106,108,79,97,93,94,93,96,94,107,103,98,98,115,86,103,96,90,98,102,94,107,102,121,100,106,100,97,93,100,104,109,83,104,94,88,94,97,103,97,100,92,102,94,94,101,87,97,100,106,102,107,84,107,91,91,98,78,91,93,93,105,109,80,108,109,104,104,105,106,96,96,95,98,102,89,91,100,105,95,95,103,103,100,101,98,101,106,125,89,93,97,112,102,104,107,99,87,96,94,89,111,102,104,100,109,95,95,105,83,92,104,86,102,91,107,107,88,92,93,101,101,103,107,103,101,102,102,97,98,89,99,96,112,102,105,104,108,102,104,104,92,96,109,108,95,107,101,95,105,91,109,104,75,96,83,99,104,89,91,106,99,99,95,104,97,110,95,104,97,85,110,110,96,105,92,99,101,93,98,101,107,114,102,97,95,85,92,107,107,94,101,94,98,105,94,93,99,93,111,85,102,99,105,100,115,104,104,98,105,103,101,95,105,81,91,95,94,115,91,107,90,106,92,99,93,62,111,93,100,96,102,105,101,96,86,105,102,97,112,90,87,100,103,97,96,85,86,108,105,99,99,101,105,92,95,94,98,94,106,108,117,94,123,91,95,98,102,99,95,94,105,91,109,93,105,97,86,102,95,111,97,90,99,94,101,98,95,93,91,110,93,103,105,107,90,93,94,95,93,95,102,109,107,91,102,92,104,78,105,92,102,96,102,100,94,100,102,104,100,96,87,99,97,104,102,96,116,99,99,106,106,102,98,97,95,82,95,83,92,108,97,100,109,95,95,102,102,100,104,96,89,100,123,115,108,97,103,99,97,104,101,107,90,74,98,95,93,99,97,99,97,102,84,89,102,90,105,103,96,109,91,93,93,106,102,103,108,99,102,90,106,110,102,101,105,94,105,110,85,93,102,100,98,105,103,106,99,117,87,113,108,104,106,102,73,98,105,87,96,108,96,87,90,99,109,93,87,101,106,87,93,108,91,103,103,101,93,91,103,107,107,100,104,101,97,90,93,108,99,108,102,94,103,101,92,99,113,102,101,102,95,100,95,96,92,99,108,100,108,109,102,97,87,94,91,103,102,98,100,108,92,106,105,91,98,107,103,104,100,98,91,102,101,91,96,90,98,95,98,104,100,98,108,104,90,129,100,99,93,111,99,107,98,95,103,94,103,81,106,103,103,92,106,100,102,96,104,105,135,103,98,96,107,91,92,95,107,106,102,92,106,90,91,92,104,104,100,91,98,81,112,96,103,80,106,99,100,117,107,109,106,102,96,115,95,91,98,82,109,97,83,105,95,108,104,93,102,100,105,91,105,101,101,109,96,98,91,98,104,113,94,103,107,101,103,95,98,88,100,103,95,95,86,98,109,115,97,96,72,111,103,106,82,96,98,109,98,91,98,91,86,101,97,96,114,97,109,101,90,110,93,97,105,107, +734.76367,122,99,101,108,90,92,82,99,98,115,96,99,83,103,100,92,89,115,88,91,106,98,107,104,101,108,95,97,100,97,97,109,100,101,89,98,96,99,118,93,100,89,102,93,111,94,109,95,99,71,89,97,86,99,94,84,87,87,100,96,98,102,108,106,110,102,84,113,101,89,106,101,93,92,97,99,96,84,96,101,90,95,96,95,94,95,103,94,97,84,100,96,92,97,100,102,100,114,96,93,96,91,82,95,97,86,88,93,82,109,108,96,82,95,100,85,87,103,105,102,68,86,97,94,106,100,112,98,121,112,92,106,92,103,93,103,109,94,113,94,96,107,83,102,91,79,93,94,94,106,103,104,108,82,96,86,91,98,117,106,87,120,97,98,106,103,85,91,102,91,107,96,101,104,104,112,103,90,96,83,108,112,98,98,98,93,105,88,95,91,87,89,90,94,88,88,107,100,99,96,96,98,103,105,91,95,90,121,95,98,100,92,95,110,93,100,81,103,97,109,97,103,110,96,87,111,101,93,104,103,98,97,112,98,94,81,65,99,99,74,109,82,101,91,87,105,92,80,89,91,102,103,92,99,104,94,101,91,99,94,103,114,102,97,89,101,104,91,90,119,95,104,112,99,95,118,97,88,99,108,99,94,94,95,107,90,92,102,101,96,87,105,114,96,94,100,97,96,100,98,90,100,97,111,78,98,100,97,91,106,96,108,95,95,99,110,95,87,97,101,96,93,99,94,99,92,97,89,93,100,85,95,91,109,107,97,87,91,103,87,92,88,100,91,99,91,107,107,121,98,108,97,96,93,97,93,96,91,91,91,102,96,97,100,103,98,106,98,95,106,96,95,94,92,102,96,86,98,98,107,94,101,95,92,89,103,92,90,107,87,96,94,82,107,92,98,92,86,97,86,94,95,85,98,96,101,95,99,95,89,100,92,98,95,97,101,103,102,100,86,93,101,94,95,90,91,94,102,96,93,98,91,97,88,102,98,91,95,98,87,99,98,95,104,91,100,95,79,107,110,88,87,95,100,89,96,114,97,95,107,97,94,96,98,102,91,106,98,102,91,100,100,90,96,116,96,90,101,105,106,96,96,106,91,98,88,104,101,98,95,109,90,96,103,94,90,104,94,89,94,104,115,95,110,98,93,90,103,97,97,109,100,97,103,95,98,110,93,101,86,108,87,107,95,96,93,106,100,96,93,96,93,96,93,92,95,94,100,92,102,94,95,96,92,99,91,96,105,97,92,91,105,93,106,100,85,95,100,105,90,93,101,104,91,94,76,70,108,95,106,93,80,94,98,98,92,84,104,89,90,88,89,106,86,102,100,105,94,83,94,103,105,93,109,116,103,95,100,100,101,97,99,96,90,93,91,94,96,99,106,106,99,94,103,99,80,93,91,107,92,102,102,96,93,94,90,92,87,106,85,102,95,113,102,95,100,96,83,72,90,101,95,90,98,109,83,96,94,100,108,91,110,87,90,109,94,99,102,88,89,104,103,91,106,102,95,104,102,97,104,107,90,110,92,99,89,93,107,93,99,99,98,99,87,96,111,95,105,92,90,102,84,101,134,92,95,103,95,107,96,101,106,101,100,102,96,94,106,90,99,97,111,88,119,96,96,94,86,88,90,93,94,105,104,98,87,112,89,95,97,104,98,93,105,102,79,90,116,102,112,104,97,95,105,101,102,105,91,105,96,96,95,107,92,88,90,102,98,95,95,106,101,85,88,96,112,100,96,105,77,92,107,103,97,79,96,86,101,86,94,101,101,108,105,101,92,103,94,103,99,94,105,88,109,105,106,93,90,107,96,110,88,89,105,97,99,98,113,109,107,82,78,90,91,88,103,96,89,104,91,92,109,106,103,96,96,99,110,93,86,95,90,103,104,86,99,99,92,100,86,93,90,93,98,103,93,100,88,91,83,88,101,99,68,91,105,106,99,97,106,93,81,110,107,108,98,84,101,100,91,90,102,95,97,97,99,91,97,106,91,103,100,103,96,92,91,89,101,117,87,92,96,100,95,91,98,95,103,105,100,96,109,92,86,106,85,85,98,92,88,101,104,109,103,103,105,100,104,97,92,100,102,97,104,93,94,104,94,92,101,92,95,133,105,97,100,102,92,102,103,94,98,102,111,97,99,105,99,99,93,86,93,91,94,96,91,104,100,101,102,98,101,99,98,105,87,96,89,100,96,87,102,109,97,95,86,104,83,91,92,105,107,92,98,103,110,99,88,98,87,88,90,92,86,101,89,108,90,98,97,86,86,86,101,98,84,100,99,99,90,100,105,88,102,80,106,111,94,91,101,105,95,89,93,93,95,122,96,121,93,91,99,104,104,95,83,87,88,93,99,103,94,105,102,98,92,102,92,103,99,102,99,109,97,101,102,101,96,98,95,97,112,91,94,104,101,101,104,102,81,106,102,105,95,90,94,96,95,99,110,88,104,100,98,93,106,99,87,106,98,102,95,92,87,90,104,96,94,95,88,105,85,106,108,94,106,104,96,101,100,96,118,95,89,109,96,86,99,88,123,109,101,101,89,90,92,104,109,104,99,93,117,99,90,93,104,84,90,88,90,93,110,75,93,101,92,94,117,112,105,105,102,102,95,108,99,114,84,91,103,105,96,98,92,101,92,93,106,91,95,101,96,105,103,96,91,101,101,94,89,94,97,89,90,114,102,80,92,88,91,98,99,105,102,107,102,99,94,88,92,104,97,72,94,99,96,94,94,102,106,101,96,84,116,95,99,96,94,89,100,101,103,98,94,90,96,125,103,92,101,98,85,98,108,106,96,101,93,87,108,98,106,99,102,91,101,103,104,99,83,83,97,89,101,102,101,89,54,88,105,102,104,100,91,104,98,90,121,94,99,100,103,107,104,98,93,87,100,104,104,108,120,111,97,110,107,109,105,98,108,105,83,90,75,93,90,98,92,95,104,100,99,92,98,92,99,111,104,96,82,87,111,90,88,80,114,93,96,88,89,103,92,101,105,81,104,105,98,104,108,97,86,90,100,93,108,99,90,79,100,83,101,103,104,106,94,95,91,97,97,98,106,88,107,92,108,109,99,91,80,98,96,97,91,110,81,112,104,60,98,99,105,95,100,92,99,95,113,100,84,94,106,98,104,101,93,91,97,96,97,91,76,103,100,92,98,102,98,105,99,96,112,86,101,99,91,95,98,93,109,95,99,95,100,100,96,99,96,95,100,102,97,83,90,90,102,90,102,99,94,103,102,104,98,114,93,94,106,88,99,103,91,105,96,94,109,92,117,106,85,96,80,107,98,110,106,106,90,97,101,98,101,100,90,103,88,98,95,95,90,94,106,104,82,99,106,101,99,91,76,102,108,100,83,99,84,91,122,104,94,103,95,95,81,106,78,93,92,91,101,105,94,99,100,97,98,101,96,96,96,103,101,102,98,100,103,90,98,120,93,91,98,98,102,105,107,98,111,101,102,102,96,93,95,97,96,102,94,105,100,98,91,94,94,99,97,93,100,109,98,109,103,100,104,105,100,96,100,99,96,100,97,97,89,91,101,90,109,101,100,100,94,95,100,102,99,89,85,88,84,102,113,104,101,88,103,99,96,67,93,99,105,98,97,101,112,97,106,87,91,85,100,103,86,102,101,87,97,98,98,120,96,110,97,97,97,99,115,95,108,102,104,94,104,93,101,101,104,103,111,98,96,100,97,96,91,96,107,95,94,95,91,108,91,98,95,100,91,103,107,100,100,97,95,101,98,95,103,107,99,95,108,97,97,99,96,102,90,101,83,93,112,85,101,101,88,96,107,88,98,96,88,117,106,87,92,73,96,93,93,102,96,83,98,100,109,88,93,98,103,121,92,97,96,98,96,98,106,97,67,103,97,87,91,100,91,105,92,104,95,102,95,89,117,101,73,106,97,97,93,94,96,96,95,93,103,97,91,97,100,93,102,101,105,89,102,101,93,86,96,106,95,109,102,95,106,95,95,96,99,102,93,90,104,103,92,99,111,90,102,102,95,117,113,88,99,95,93,107,94,105,99,100,96,109,117,97,100,107,97,93,92,97,90,101,95,100,107,100,93,93,105,89,86,104,93,97,116,99,87,101,100,106,107,110,104,101,102,87,98,112,100,98,97,102,101,96,96,95,103,97,84,92,83,97,108,99,85,113,96,103,111,100,91,95,108,92,115,107,95,106,98,103,94,86,98,97,83,96,107,104,92,105,98,101,101,95,97,98,96,95,96,95,101,94,91,102,78,97,104,103,97,88,100,93,103,99,103,97,91,94,94,98,105,102,94,89,91,100,113,89,97,115,94,95,96,95,110,85,97,95,93,89,94,103,85,106,101,100,109,72,103,101,106,87,96,95,94,95,109,113,99,95,95,74,85,100,92,88,103,100,100,97,99,80,107,98,97,108,89,110,98,93,116,86,103,93,92,92,109,100,92,109,103,99,110,98,96,95,97,87,87,94,100,99,108,93,100,98,93,101,69,97,116,97,96,100,100,98,91,88,107,92,95,110,87,100,99,110,105,102,103,94,97,116,113,96,101,99,104,98,95,113,84,102,106,109,93,90,84,94,90,88,94,102,119,113,95,96,99,112,87,96,98,110,105,103,97,96,105,113,91,97,105,104,99,84,91,96,96,109,99,86,103,87,100,81,111,97,105,87,96,91,103,102,97,103,111,79,102,105,111,95,102,98,90,90,87,93,84,89,111,96,101,104,95,106,71,94,91,105,105,106,120,91,88,95,102,104,113,97,109,104,94,91,104,100,98,106,98,97,96,104,101,98,100,107,88,98,83,111,97,87,107,100,103,92,102,104,92,97,98,99,104,105,106,83,94,104,97,98,103,94,95,87,97,97,104,83,90,105,91,107,111,103,109,98,89,91,95, +734.90509,101,95,94,90,116,95,90,106,103,87,99,108,95,95,112,96,96,107,97,95,109,101,90,118,122,102,94,101,93,110,102,97,97,91,93,101,105,112,98,103,98,95,106,92,104,89,102,98,103,99,91,89,99,86,94,83,90,81,87,86,104,88,116,90,96,96,86,87,99,99,108,99,89,91,95,97,87,101,105,90,88,104,98,101,102,96,98,97,94,97,98,96,102,101,102,88,92,94,97,95,99,100,86,95,108,98,86,91,91,95,90,77,92,100,106,93,100,96,101,83,98,100,97,102,91,117,105,85,92,91,95,97,93,105,94,87,101,113,95,108,96,81,92,101,93,100,83,61,85,83,86,80,99,94,98,103,122,76,82,89,102,101,104,105,97,103,80,88,85,96,88,95,107,95,91,99,99,96,90,110,90,98,93,95,94,119,109,83,99,96,91,93,97,78,84,97,97,102,99,100,94,91,96,94,88,97,97,92,102,109,90,95,92,93,101,99,100,100,90,121,97,94,95,84,96,101,109,94,101,99,93,92,99,91,108,105,98,97,109,100,90,98,87,95,96,100,83,100,87,103,89,98,101,96,98,105,82,101,84,94,88,94,86,88,77,101,65,101,92,92,102,100,109,93,108,114,84,93,104,103,100,109,103,91,89,93,93,89,94,90,88,105,105,96,101,101,97,96,104,97,98,94,114,106,93,98,97,102,94,100,95,98,92,107,93,103,102,99,106,96,96,86,96,107,94,97,115,87,101,104,100,94,104,99,99,91,93,95,93,107,83,100,102,84,100,107,87,105,105,103,101,109,91,91,93,95,101,100,107,108,97,92,90,93,93,98,99,99,89,95,109,97,99,98,111,101,95,94,101,99,100,92,96,99,91,102,90,98,111,99,103,98,83,103,91,89,104,86,86,99,101,97,106,97,98,85,98,109,100,90,95,90,102,87,85,86,84,92,100,93,87,87,90,96,113,96,93,105,99,108,91,94,85,91,98,97,99,104,109,95,109,97,95,101,95,93,96,94,103,106,92,101,98,101,92,107,92,102,98,99,101,90,102,103,95,101,104,98,101,91,100,88,91,91,97,105,103,102,107,87,93,90,104,88,94,92,91,91,92,99,95,96,93,88,81,98,90,102,101,96,108,81,97,105,84,98,90,84,98,91,100,98,92,103,94,100,102,99,108,91,84,100,95,96,99,104,99,97,107,95,96,91,97,95,84,102,100,107,90,84,112,106,105,95,110,101,97,96,107,93,106,99,92,89,86,74,94,89,99,93,94,90,92,89,82,102,97,94,101,107,92,103,97,104,102,88,98,98,91,98,92,84,82,81,84,113,97,92,94,83,104,94,86,83,107,98,102,101,96,98,86,106,92,104,92,88,87,107,96,84,98,97,97,96,106,96,93,99,91,117,98,98,100,95,92,98,98,97,85,82,105,110,68,94,101,112,96,98,96,88,100,96,98,96,101,90,91,92,105,96,105,93,98,120,97,108,107,100,97,98,105,113,96,101,90,92,95,93,103,83,114,84,84,101,98,103,95,107,102,104,92,101,84,96,99,104,92,87,84,90,106,121,96,90,102,96,99,88,93,94,95,92,96,99,93,99,91,90,79,103,91,106,91,94,89,98,92,84,90,113,103,94,103,110,112,91,94,93,88,96,87,95,99,86,92,98,94,93,88,94,104,96,85,102,100,88,90,96,90,101,105,77,99,85,97,81,107,92,92,91,104,94,88,102,87,102,91,92,97,108,97,104,99,93,88,103,91,96,93,97,111,94,97,97,85,93,80,105,91,86,99,100,98,109,94,105,93,100,85,96,87,90,107,95,72,95,95,90,86,97,99,95,78,90,103,87,94,99,92,103,83,105,106,102,106,79,91,90,95,91,107,88,98,130,95,103,103,98,95,102,99,112,92,107,90,91,90,82,98,94,106,100,113,99,110,115,102,85,83,97,94,86,103,109,99,99,87,95,92,103,97,116,91,100,95,92,96,94,95,95,101,91,95,109,86,102,90,110,103,94,97,85,103,89,93,80,102,93,91,104,109,103,94,89,102,95,84,97,79,99,105,89,104,102,88,97,87,109,96,89,79,93,97,105,96,100,92,97,101,99,76,105,101,95,91,97,98,105,100,100,113,118,100,95,101,105,105,99,102,88,100,104,96,103,113,94,114,106,93,97,87,92,105,88,97,104,97,99,82,76,60,99,93,95,104,88,109,98,98,100,90,98,104,92,100,106,95,89,91,105,97,99,101,77,86,95,103,100,100,101,94,92,92,109,101,94,97,98,104,96,99,106,91,112,94,95,91,89,84,91,99,78,94,83,92,96,97,95,95,95,94,90,105,93,91,91,102,109,96,118,93,96,95,102,89,95,86,97,81,98,97,107,94,90,90,100,95,68,106,89,83,90,105,99,106,89,96,86,88,94,117,73,96,91,94,98,103,98,93,92,106,106,89,85,91,105,96,76,104,102,95,103,101,88,95,91,100,100,107,88,95,102,95,92,114,99,108,95,95,91,99,106,106,98,101,91,102,99,95,93,103,103,99,93,105,104,101,112,95,100,101,96,98,87,82,99,93,98,95,88,96,91,90,106,102,95,101,81,94,98,94,97,87,91,106,105,112,112,96,99,112,96,91,82,98,93,96,96,98,91,98,100,106,100,97,98,108,91,109,81,80,93,94,101,95,106,97,97,90,100,98,87,100,116,97,108,110,94,95,98,110,106,115,106,97,111,102,102,77,100,97,107,90,101,101,98,81,109,110,98,106,98,99,81,91,103,91,101,96,104,103,95,98,91,102,87,93,97,98,87,110,97,107,111,113,91,104,92,101,95,100,97,95,99,94,92,88,95,91,106,88,95,89,98,98,96,113,88,99,100,94,107,109,105,96,93,79,104,95,114,97,104,99,99,106,77,91,82,107,97,104,103,95,81,101,129,105,107,109,113,94,106,98,103,89,102,105,89,90,95,94,99,91,94,96,107,97,100,89,77,90,101,100,96,87,108,98,97,105,105,89,109,87,104,95,102,78,94,90,110,93,95,102,102,101,90,110,90,106,97,85,96,96,102,99,84,100,96,94,105,106,109,97,99,106,84,92,116,93,96,88,104,96,100,95,93,86,100,94,100,98,98,97,110,112,96,77,93,93,108,93,91,99,106,102,90,114,92,91,103,106,95,93,89,82,102,84,99,107,98,95,107,99,92,96,95,92,85,96,92,71,96,101,100,86,94,100,93,107,95,99,98,104,100,107,94,95,102,93,90,102,93,91,107,96,107,86,108,103,92,90,105,103,97,84,98,102,113,99,89,107,108,107,74,102,100,100,96,94,102,96,93,120,93,92,95,96,86,101,108,98,102,79,93,95,71,95,109,101,101,109,92,88,93,105,106,111,97,92,85,85,84,107,106,90,96,114,102,103,89,92,77,97,91,97,84,101,94,100,113,88,107,122,117,89,98,105,112,102,102,100,106,105,96,71,91,91,94,98,91,100,110,124,100,102,120,96,118,97,100,104,102,100,102,98,102,99,93,92,101,96,102,95,101,107,103,104,81,101,105,99,74,98,95,106,105,96,117,100,96,101,94,90,100,92,101,107,107,104,91,96,110,87,107,102,95,96,102,105,95,101,95,94,113,94,87,105,95,104,96,89,92,101,116,87,92,109,93,96,87,106,108,103,112,94,101,105,99,108,101,79,96,94,105,108,98,99,89,102,90,89,96,99,87,86,102,103,98,99,96,85,114,95,100,91,110,102,98,95,100,94,90,111,95,84,110,97,89,105,94,96,96,95,78,102,101,92,97,100,102,102,95,98,100,105,91,95,93,98,104,102,102,100,88,100,97,98,108,113,105,102,100,103,108,92,99,104,91,71,97,110,104,92,76,99,91,94,94,96,90,102,98,99,104,97,76,97,104,91,99,97,95,99,92,102,101,102,95,102,98,93,93,89,93,100,109,108,87,83,92,101,112,98,93,101,113,94,100,99,100,102,96,94,113,99,101,99,90,106,97,108,105,100,84,92,94,99,95,108,106,99,101,93,109,110,101,99,105,113,93,94,94,102,91,88,105,88,94,91,102,84,97,93,98,99,115,87,101,98,98,98,94,101,105,90,107,87,102,80,95,98,85,98,87,108,95,91,99,90,94,93,91,99,93,101,97,109,95,88,97,107,105,105,101,104,101,86,97,92,104,116,98,92,114,115,110,89,110,85,110,110,97,100,91,109,108,105,95,93,88,85,101,113,108,95,100,102,102,112,94,94,101,108,109,98,96,98,100,90,107,85,81,92,101,96,96,102,92,94,100,106,119,103,96,109,95,94,96,96,91,111,101,85,94,86,105,101,96,88,89,88,88,120,101,97,100,104,97,99,94,104,110,101,112,97,92,95,120,97,96,105,69,104,109,97,98,103,104,103,100,109,91,102,91,106,111,97,101,113,109,97,103,87,121,97,102,94,101,96,93,97,61,111,88,101,93,102,96,90,90,100,92,99,121,125,112,105,99,99,90,80,111,101,103,105,105,94,111,98,95,99,111,57,93,97,110,105,92,90,99,84,92,113,100,96,111,104,101,94,100,105,83,96,112,95,94,93,105,112,111,98,113,69,108,104,105,104,102,91,100,101,83,98,101,105,92,108,105,109,105,101,91,107,92,102,98,101,94,103,89,113,88,100,88,98,89,91,113,87,95,94,99,96,104,96,87,89,100,84,93,96,98,96,77,132,105,99,101,91,103,104,94,96,110,101,98,123,100,107,104,102,112,112,103,128,99,101,96,79,110,95,95,95,93,102,114,94,95,93,96,102,102,101,102,91,104,103,84,105,99,93,113,88,93,93,105,75,97,105,90,97,95,87,106,106,86,91,103,87,77,107,101,101,94,92,105,104,96,91,96, +735.04645,116,101,100,97,83,98,95,99,97,112,98,96,95,100,97,97,95,104,114,116,101,90,99,97,91,119,95,127,110,100,96,108,82,92,101,88,110,61,87,100,99,91,102,96,92,97,88,103,101,69,91,108,109,84,105,118,95,93,86,89,98,94,91,110,90,98,105,103,95,107,90,116,101,106,92,109,98,101,110,97,94,96,91,108,90,99,95,97,100,98,97,99,103,96,83,86,97,105,110,104,94,97,94,101,97,95,91,99,101,88,103,98,90,89,115,96,91,88,99,90,100,94,104,111,97,98,102,93,100,106,110,97,94,97,101,101,96,105,108,102,71,105,92,97,92,99,88,99,95,91,95,95,106,102,99,106,100,110,96,105,93,98,108,103,85,84,111,88,99,99,87,94,88,106,98,106,105,94,97,91,109,103,97,105,102,99,83,90,108,83,89,93,91,95,102,101,105,101,87,105,85,90,92,120,96,104,95,92,83,109,67,94,88,99,104,94,100,95,89,105,100,109,101,95,87,104,84,104,98,93,99,92,102,102,90,112,99,112,93,78,92,98,96,96,95,92,98,102,95,109,105,103,90,99,107,95,97,92,104,94,89,90,94,85,91,95,110,108,94,95,91,93,94,97,95,90,99,102,93,87,95,95,97,109,92,93,98,97,97,93,95,99,102,81,101,94,100,99,89,115,94,107,81,96,103,102,98,109,96,110,102,105,104,108,100,81,96,101,100,93,87,92,107,105,95,90,99,91,100,95,88,96,108,91,89,92,104,104,100,96,94,102,87,91,83,100,108,96,99,93,90,95,106,101,92,84,90,96,97,95,99,95,96,86,99,94,105,79,100,101,83,101,103,101,79,82,95,106,97,103,106,101,108,102,101,99,105,110,97,88,90,86,95,100,94,105,91,95,92,105,103,101,92,97,91,99,92,92,96,97,90,94,98,109,97,101,116,90,95,99,95,99,103,100,105,96,102,85,98,104,95,77,96,102,106,99,84,104,95,85,96,95,105,86,93,105,91,95,101,94,87,104,72,94,96,83,91,100,99,92,100,106,95,103,91,112,98,62,93,101,105,102,87,90,86,110,87,105,97,110,102,106,106,91,86,87,102,96,94,101,100,97,102,99,93,90,97,98,108,79,95,93,96,101,86,108,102,91,100,95,108,103,104,96,91,98,106,107,84,91,93,100,101,92,86,96,105,106,94,99,83,96,102,112,95,107,98,102,105,98,106,100,99,86,107,93,94,100,95,94,88,100,109,101,93,101,103,90,103,93,109,101,95,101,98,89,95,107,97,97,84,102,98,102,98,93,87,93,87,94,95,96,106,93,94,94,100,102,83,115,103,92,96,92,102,103,92,98,97,109,92,100,95,91,92,99,95,98,87,94,86,85,91,93,103,89,95,97,100,98,106,98,103,104,94,102,91,96,117,99,99,103,84,98,92,99,87,88,97,98,96,99,98,98,100,97,98,94,98,97,88,97,87,107,96,94,101,94,106,97,106,99,107,97,70,120,106,85,103,102,92,94,94,82,95,79,103,92,88,95,97,109,104,100,106,103,96,108,103,79,102,102,96,109,105,99,100,107,108,87,87,106,80,106,111,102,99,102,89,96,100,96,94,108,94,99,94,110,107,90,104,86,103,99,94,95,99,96,107,84,94,91,104,77,94,87,78,94,98,101,103,97,105,105,101,102,101,99,93,110,90,105,120,106,106,75,107,98,96,100,102,105,83,87,90,87,102,95,96,104,114,100,97,87,95,106,102,93,99,105,111,93,102,92,100,98,109,103,100,100,109,96,91,107,96,91,88,94,99,99,91,105,92,95,88,105,91,95,88,100,105,87,99,99,106,100,89,96,107,96,98,111,98,92,95,102,104,94,99,79,108,98,95,99,90,105,92,93,102,94,95,102,92,98,92,99,101,95,95,81,87,104,101,87,95,108,82,96,95,101,96,100,99,97,94,101,94,112,99,101,101,98,105,112,92,99,92,97,91,100,92,94,96,94,93,103,100,93,100,100,102,86,102,104,109,90,104,97,95,99,102,105,105,95,106,92,100,97,86,97,115,86,112,91,100,95,90,94,97,102,103,105,104,102,92,94,99,85,94,100,99,101,85,100,91,114,98,98,86,100,91,106,102,100,96,96,104,89,95,93,106,101,99,101,98,104,105,91,100,97,87,101,88,102,100,116,102,112,97,90,85,103,112,103,96,98,106,92,99,91,100,108,94,90,96,94,93,102,95,89,99,87,90,103,96,88,79,87,98,91,86,106,94,100,107,97,62,104,103,94,78,100,114,102,89,97,96,97,87,91,112,99,100,87,101,95,105,94,107,76,87,83,94,86,117,92,80,98,101,103,97,109,87,90,91,86,91,98,91,99,101,103,100,88,101,98,88,101,94,96,92,102,81,107,95,88,101,101,103,105,99,93,93,96,90,90,82,108,92,102,97,101,90,94,92,100,100,100,107,98,99,84,106,92,104,98,101,97,96,100,88,95,99,87,101,102,106,87,89,102,94,108,96,99,105,89,100,101,101,106,100,89,96,103,89,109,87,112,98,93,103,117,104,101,95,110,96,100,86,87,103,87,105,96,86,90,94,102,106,90,104,97,98,99,91,96,95,101,104,108,108,87,102,75,103,97,87,102,107,103,108,90,101,96,97,99,92,97,109,99,102,99,87,116,88,95,104,94,101,115,94,96,89,99,94,95,92,98,101,93,117,92,100,113,101,98,113,98,87,98,109,91,100,100,100,100,113,109,95,87,101,101,95,89,98,98,95,93,112,93,101,102,98,106,98,90,97,104,106,99,93,79,105,91,99,99,85,110,96,92,102,100,107,92,102,93,98,105,90,99,107,94,98,104,102,105,90,109,99,111,107,96,96,111,98,89,99,95,98,103,87,100,89,95,95,100,108,105,105,94,100,117,109,94,100,95,95,93,91,80,105,93,97,102,98,119,112,102,94,108,113,101,96,93,100,113,107,97,109,100,100,89,105,115,91,98,104,110,94,103,92,97,87,107,99,91,93,105,92,98,92,108,112,91,96,87,99,100,99,92,109,95,105,100,102,86,92,103,96,94,98,106,95,99,108,99,95,86,114,83,108,96,103,111,91,89,95,94,98,97,91,95,95,80,96,95,96,108,94,103,102,96,100,95,97,90,99,97,105,85,90,99,89,99,96,93,96,98,96,102,95,101,95,105,91,90,107,94,100,91,95,104,91,83,90,102,110,95,107,100,96,82,102,95,103,103,93,98,94,112,93,103,108,98,94,104,97,93,84,99,94,89,97,90,88,87,105,106,88,107,79,97,87,93,96,96,83,88,104,93,101,99,107,96,100,98,109,115,103,101,98,102,94,110,104,90,94,85,95,99,97,111,97,105,92,112,92,101,99,105,88,95,96,95,88,87,96,93,101,105,96,104,99,94,102,100,93,95,96,83,100,98,99,90,97,96,95,98,92,91,113,102,83,92,100,97,103,90,116,96,83,107,87,102,95,99,103,98,96,94,96,94,90,99,84,90,109,109,104,98,91,104,93,99,104,103,93,100,99,98,94,97,93,103,106,97,99,91,105,97,82,95,91,97,73,100,93,93,92,103,66,116,97,99,100,95,101,110,103,100,95,91,94,106,95,99,96,89,106,109,100,91,111,100,96,103,96,98,92,103,98,102,87,95,79,95,95,106,101,90,102,98,87,99,101,92,98,113,93,78,95,100,94,110,90,92,110,102,100,100,109,95,104,92,115,99,99,101,93,100,104,118,103,92,88,113,84,92,103,95,95,110,99,96,96,97,102,97,92,94,87,98,98,88,85,97,121,90,95,117,94,109,91,101,99,96,109,99,102,93,93,109,99,98,105,90,110,98,95,102,94,95,92,92,106,114,92,94,91,85,105,108,91,102,101,105,94,77,100,100,99,83,109,95,100,97,91,87,99,99,97,110,92,107,103,97,100,100,93,101,87,96,108,98,107,99,108,99,95,108,75,106,93,95,100,93,104,101,106,95,95,100,86,96,100,89,100,95,108,102,99,97,95,91,93,81,100,103,107,92,88,97,100,93,103,96,94,101,101,96,103,96,99,90,102,110,126,92,92,95,85,99,83,97,87,107,127,87,104,83,91,109,94,107,99,104,94,97,93,104,103,101,98,91,100,99,92,92,90,93,99,97,109,103,99,106,98,94,105,103,107,90,89,106,102,91,93,99,95,100,110,98,107,99,104,96,96,112,99,90,96,101,97,97,97,96,102,104,101,102,108,108,96,99,95,96,96,100,76,99,109,104,102,96,107,105,103,96,98,102,104,92,102,109,99,109,97,100,102,107,84,95,96,90,100,98,98,70,95,101,96,112,97,111,95,133,95,97,79,97,106,85,106,100,89,99,109,102,102,85,87,87,107,99,96,97,94,100,87,104,106,110,87,100,112,104,84,110,94,101,94,101,101,97,107,91,98,101,88,108,96,95,102,99,88,103,92,105,97,107,92,94,100,99,96,109,87,98,101,96,94,101,93,92,92,99,102,96,105,98,102,92,74,99,88,109,101,107,107,94,102,103,105,81,115,105,109,84,93,97,97,96,113,114,91,90,102,103,113,103,100,102,109,98,98,97,109,107,110,97,109,95,111,107,102,103,98,104,91,74,94,93,101,96,95,113,103,90,104,107,100,101,95,108,94,100,101,94,91,83,115,120,100,98,83,98,93,68,103,106,98,104,98,96,106,95,100,83,85,96,100,109,98,100,95,97,108,111,110,102,107,104,90,113,118,94,90,102,99,114,103,106,98,100,98,109,93,86,101,84,104,87,108,94,109,105,101,110,94,97,96,106,101,87,89,103,84,98,113,95,95,70,117,93,106,107,78,102,110,105,113,102,101,100,104,93,108,87,91,101, +735.18787,105,103,90,87,90,108,102,103,81,113,101,85,101,89,101,93,69,95,100,91,114,93,91,80,81,90,101,98,106,103,100,98,84,100,102,101,100,90,74,103,96,124,89,101,90,102,89,100,100,104,101,98,89,87,102,88,84,100,109,71,88,96,99,93,90,115,97,101,101,97,97,99,78,99,111,96,89,86,104,98,99,95,88,100,104,97,96,97,105,83,104,100,98,97,95,88,97,98,95,101,101,112,86,82,95,103,91,96,104,92,96,98,91,74,104,93,99,115,85,100,94,102,95,93,108,93,97,95,113,105,94,110,91,106,104,91,96,100,87,99,92,90,86,91,94,91,90,95,110,102,96,91,108,105,91,108,83,91,89,88,86,103,101,91,93,86,94,97,97,91,96,88,92,102,99,87,110,77,93,94,92,96,86,105,104,103,101,93,95,100,94,83,96,106,109,114,87,98,98,100,94,100,95,110,93,91,102,97,105,105,95,106,93,97,99,96,94,87,100,94,91,94,114,104,96,101,99,105,99,99,101,73,97,96,90,95,99,95,95,99,101,102,90,109,100,96,98,104,106,102,102,91,83,113,94,94,95,93,86,96,94,104,91,104,98,100,102,98,90,98,92,100,117,83,101,94,94,95,96,74,112,103,89,100,103,109,92,95,84,85,86,107,104,106,99,111,105,103,91,108,101,94,98,111,84,108,100,106,91,103,94,103,105,99,98,99,91,103,98,76,103,92,96,96,98,95,91,97,110,103,85,98,96,97,98,98,95,88,89,96,101,92,89,105,104,105,102,95,108,87,106,86,105,74,92,87,89,66,96,71,99,75,92,99,109,109,88,95,101,105,96,95,96,109,117,93,94,91,97,102,99,97,100,110,106,94,96,81,94,91,100,93,96,85,84,94,83,86,92,100,91,93,87,96,99,96,102,86,90,95,89,100,92,94,95,96,102,101,100,93,92,93,105,95,94,89,96,94,88,90,85,94,93,79,97,96,96,95,93,109,95,98,85,99,87,94,93,96,101,113,99,91,95,110,87,97,94,89,100,92,102,101,83,106,103,90,98,127,85,113,103,100,97,101,91,90,86,105,90,95,92,96,111,91,86,98,111,98,89,96,84,89,107,93,84,102,86,93,95,93,99,94,90,101,105,90,92,104,108,89,108,97,87,92,92,97,104,98,90,96,77,96,96,101,87,90,101,102,93,101,86,94,89,106,104,100,89,91,95,108,99,139,90,98,108,93,96,91,100,96,96,109,97,125,110,105,110,90,92,88,112,109,104,82,87,101,101,103,95,91,86,97,96,81,88,90,85,96,101,105,94,86,61,105,89,75,101,101,111,106,104,96,92,78,102,98,106,89,90,88,90,101,113,101,57,105,95,92,78,87,99,101,92,94,98,84,106,103,103,88,111,87,102,94,104,97,94,88,97,98,93,95,97,87,105,99,90,97,102,87,93,105,90,102,99,90,79,94,87,58,102,101,103,115,94,93,101,96,107,92,101,82,95,100,97,91,94,90,110,108,105,87,93,106,85,92,105,87,92,84,93,91,108,85,99,92,87,100,100,118,103,100,91,106,101,90,94,90,97,83,92,85,98,97,97,95,93,107,101,97,94,98,114,89,97,109,96,100,91,104,95,96,107,102,83,98,86,101,111,104,113,89,98,101,95,102,104,96,107,96,96,103,101,96,101,97,106,90,101,94,104,99,82,100,89,100,94,83,95,87,95,93,82,93,93,88,102,94,98,77,97,96,92,105,105,96,96,105,104,86,98,103,110,105,103,91,95,105,95,91,99,110,109,96,99,97,88,102,102,98,97,97,100,87,108,99,101,98,95,91,97,103,102,97,98,95,101,112,96,95,100,97,95,91,97,106,99,94,115,93,113,95,94,95,98,111,95,105,91,89,102,98,105,92,90,100,95,76,109,90,97,89,81,94,92,103,99,94,88,92,93,104,89,98,100,88,105,101,100,94,102,98,88,94,85,98,103,87,95,105,109,98,111,109,104,98,90,93,100,91,105,112,109,103,97,86,99,99,94,106,91,103,105,89,100,91,86,107,108,94,97,98,95,109,98,101,94,103,98,92,89,112,91,104,87,108,100,104,67,105,96,98,103,95,95,76,98,100,108,95,105,96,102,93,94,102,99,97,86,102,97,90,99,88,109,90,94,96,85,93,104,85,98,84,104,96,94,85,101,98,82,105,94,102,100,100,103,94,91,79,94,99,98,103,106,101,85,94,96,94,90,82,77,104,77,90,109,94,100,91,99,98,93,91,100,88,91,98,93,90,106,106,82,97,101,105,97,96,91,99,114,102,90,87,87,95,96,95,105,86,86,99,111,92,95,95,103,108,102,128,89,75,87,93,92,99,94,102,89,103,93,86,96,96,84,88,87,97,97,97,105,102,103,83,86,97,124,90,82,105,107,101,88,98,95,98,88,112,85,100,97,106,103,118,96,99,82,91,93,95,96,109,101,93,94,105,91,96,110,84,105,91,102,112,104,95,96,89,95,90,83,101,104,97,110,98,90,106,93,99,97,108,93,99,101,111,96,104,99,93,93,104,103,93,93,105,77,109,91,82,94,103,91,91,105,94,98,102,100,95,108,89,101,103,102,87,96,96,106,109,105,91,91,77,96,103,98,105,109,98,101,105,93,87,92,109,103,84,91,109,100,103,105,104,91,100,100,91,95,104,103,96,104,112,95,96,80,99,109,97,102,97,101,101,86,108,105,94,89,93,91,104,107,99,98,98,98,87,99,86,102,105,98,93,90,93,87,94,103,110,89,99,93,103,101,103,99,99,98,104,103,99,97,84,100,104,108,100,95,92,91,93,92,106,100,89,96,105,102,97,100,92,102,106,99,106,112,97,103,96,102,94,103,96,103,102,85,94,92,97,91,95,99,101,103,102,100,90,101,90,115,88,95,100,107,101,103,101,110,88,88,97,95,102,98,97,97,93,105,107,95,97,100,92,96,105,76,89,102,107,108,108,108,97,107,85,99,105,102,97,99,103,97,86,101,94,95,98,94,95,99,103,91,101,105,89,88,96,108,97,94,99,117,96,120,87,97,109,128,83,99,89,95,86,99,117,102,111,104,85,96,96,99,113,96,90,88,96,93,101,89,96,102,96,93,97,97,80,96,95,94,96,106,100,96,97,92,93,100,115,87,97,103,102,109,105,92,98,100,95,96,98,101,105,98,99,95,96,96,107,102,100,102,93,92,93,102,97,103,106,97,99,99,97,99,90,93,108,66,96,92,92,98,97,101,96,115,101,98,94,96,79,103,98,90,102,99,98,94,96,100,97,100,95,96,104,96,92,76,100,101,100,108,93,112,116,97,95,90,104,90,102,108,112,115,101,89,98,89,79,97,105,102,106,93,94,87,65,101,104,97,102,105,98,99,97,83,87,96,107,84,94,94,94,98,110,86,98,107,101,85,87,91,88,92,92,103,110,99,102,94,88,98,105,92,95,105,90,93,92,104,98,91,105,95,104,93,92,94,91,93,108,111,124,99,104,98,111,80,110,105,98,100,99,92,95,92,105,100,101,100,85,97,106,97,87,105,102,104,72,87,93,97,90,96,99,90,93,98,96,97,100,82,93,85,85,96,94,98,96,99,102,100,97,93,95,99,84,100,108,91,94,95,99,76,104,91,91,106,66,105,115,104,91,86,104,100,98,103,89,87,89,99,101,92,86,99,84,97,94,95,90,86,93,94,92,92,98,97,105,97,94,98,106,105,82,96,107,108,101,94,93,112,104,95,109,98,82,107,109,99,102,105,106,105,102,92,99,100,105,103,98,89,93,101,92,99,107,86,121,94,87,102,100,96,94,94,97,91,98,99,105,98,115,98,102,113,97,84,98,100,105,98,99,81,97,96,95,101,93,98,85,100,93,91,86,98,101,74,89,103,90,98,102,92,94,90,91,94,97,89,97,96,105,95,87,122,102,90,92,93,96,97,94,101,95,94,101,101,93,97,102,99,94,104,83,98,93,101,96,106,101,92,123,103,98,105,84,101,97,102,110,79,86,97,108,103,100,96,101,91,84,104,93,88,91,95,87,107,107,108,83,94,127,99,100,105,90,101,105,101,93,106,93,102,99,96,98,101,92,117,108,99,94,104,95,97,104,101,115,94,100,102,100,95,106,97,100,97,96,93,94,101,92,102,100,94,95,92,85,87,100,94,89,98,85,94,88,99,104,101,76,84,87,102,85,100,94,99,94,101,104,91,94,97,95,101,101,103,95,98,94,100,92,90,104,97,98,96,110,98,98,106,81,103,96,116,96,97,107,105,104,105,105,102,91,101,109,109,108,106,74,91,107,95,100,100,92,95,115,100,100,103,102,94,91,104,102,112,86,104,82,84,111,98,99,92,95,113,100,79,106,112,97,88,121,91,87,93,104,100,93,105,87,84,95,93,109,108,91,92,106,95,116,107,103,85,94,105,98,98,103,87,115,103,93,95,91,116,93,95,100,101,100,80,104,73,106,98,97,110,104,89,108,94,98,95,105,91,116,99,101,111,91,88,94,103,111,96,106,94,106,103,96,94,91,101,98,106,101,101,91,103,96,104,113,100,90,96,89,96,101,94,100,108,91,102,105,71,91,104,97,57,86,90,101,101,104,119,91,103,105,90,95,98,84,93,108,77,98,96,93,87,102,100,86,93,87,91,95,100,110,94,104,89,100,82,107,102,107,120,97,96,112,101,101,108,103,79,93,119,95,94,98,97,98,90,104,89,97,91,100,94,94,99,83,92,95,102,112,103,95,104,100,102,103,66,97,102,99,95,97,87,106,106,103,91,93,102,106,98,100,90,110,104,117,95,116,99,78,91,89,93,96,88,84,111,101,102,92,75,91,97,96,98,106,104,91,90,50, +735.32928,107,108,85,91,91,99,99,111,95,99,100,93,97,97,99,95,96,101,111,106,104,100,113,112,100,96,102,106,102,97,91,91,109,105,106,91,109,98,90,114,96,93,104,91,99,104,99,104,91,104,100,103,101,95,93,96,97,87,106,114,91,104,96,93,106,83,100,92,95,87,103,101,102,107,96,98,95,108,98,109,108,99,94,88,95,106,90,71,95,90,97,103,89,97,97,86,104,88,95,103,94,101,95,89,97,100,95,97,102,98,96,100,109,100,94,97,93,98,101,99,116,87,81,94,109,103,105,90,111,112,96,107,103,106,100,82,97,113,80,96,87,94,101,104,100,83,95,117,105,101,85,91,102,103,102,94,107,104,109,90,107,99,113,109,106,92,98,105,101,68,102,95,108,101,99,105,82,90,108,95,92,99,112,100,96,100,91,83,105,102,88,89,108,101,105,113,93,104,91,104,95,106,97,90,100,108,110,104,110,111,106,96,109,97,97,105,102,93,103,90,95,106,127,107,88,92,114,98,98,100,112,101,92,106,102,101,101,96,93,92,109,95,100,98,98,91,87,102,91,82,100,110,110,100,90,97,97,95,99,93,101,109,89,103,104,112,99,118,101,98,98,100,98,92,89,99,117,105,101,87,108,92,110,103,100,111,100,96,59,101,83,95,83,91,102,99,111,89,104,99,93,90,97,108,90,96,120,101,92,108,102,108,91,100,100,97,99,93,97,103,101,104,96,88,107,98,95,91,91,101,98,79,109,97,109,113,106,99,97,103,96,94,97,94,98,84,92,100,110,103,106,99,96,94,93,107,78,106,88,102,95,92,92,98,94,108,89,110,93,114,99,104,110,95,100,81,105,113,92,100,102,104,85,101,106,100,96,94,93,108,103,95,91,100,99,87,102,96,94,98,94,90,104,94,90,105,95,101,111,97,94,98,94,101,85,98,100,98,107,86,89,95,87,89,100,102,93,98,96,94,88,108,94,108,91,111,94,98,73,86,96,102,102,100,88,101,96,82,99,102,98,97,91,95,98,99,92,101,92,99,95,93,106,109,104,97,101,87,96,100,89,110,126,108,105,100,105,98,106,110,88,94,109,88,95,117,98,94,76,99,93,97,96,93,100,90,99,95,99,94,88,101,97,91,91,109,105,105,83,103,103,83,93,103,94,104,96,67,91,96,114,100,92,90,92,98,105,94,103,132,96,87,90,113,100,100,96,93,102,111,99,99,106,107,105,95,109,105,108,95,108,86,117,105,95,110,116,99,109,94,91,105,96,97,76,82,88,104,96,97,92,104,94,85,100,95,88,97,88,87,101,90,93,96,103,97,111,94,96,98,105,99,91,99,97,87,103,94,99,95,104,96,113,94,93,95,99,100,95,110,83,96,106,104,102,96,95,91,96,99,103,93,102,98,109,89,93,104,95,99,103,108,88,98,101,95,105,101,96,95,109,103,111,90,90,90,95,92,101,107,94,99,98,111,111,98,102,101,93,95,102,102,95,92,95,97,105,99,99,99,114,100,76,106,104,106,99,102,99,96,103,106,86,90,100,101,94,89,88,96,113,104,105,102,89,111,112,110,92,95,101,92,96,96,112,93,108,101,100,103,79,96,103,89,94,104,102,89,112,102,91,101,104,100,101,93,97,101,93,103,77,96,103,97,80,95,91,92,109,104,119,100,101,100,100,94,97,96,103,117,106,100,97,99,96,83,105,89,99,92,102,112,93,111,97,95,100,93,94,78,104,100,104,108,87,107,106,90,108,90,99,107,109,95,84,100,106,97,90,90,97,104,95,105,106,91,93,81,99,95,102,90,104,90,99,115,97,101,101,94,103,90,97,102,111,105,107,88,112,93,99,108,117,97,101,100,101,87,92,95,101,94,95,95,93,105,84,87,91,85,99,107,109,99,99,102,87,99,87,75,105,97,93,98,104,106,92,93,102,105,99,95,91,104,105,105,95,102,104,105,112,98,99,109,100,107,82,109,97,113,108,91,101,100,97,95,100,101,101,115,98,98,109,99,107,89,91,93,78,104,105,108,96,100,88,95,93,107,100,97,97,95,101,95,99,98,100,95,105,93,102,101,95,85,105,103,83,105,103,107,92,101,101,88,101,99,112,100,94,95,105,100,106,87,87,113,118,97,94,104,98,101,101,104,99,106,96,87,97,93,99,86,116,95,98,97,77,103,81,100,94,97,92,112,92,97,93,102,95,103,98,104,104,91,96,102,100,97,95,85,86,104,88,110,89,87,86,96,100,102,102,106,97,97,96,97,111,98,101,83,94,98,101,103,100,99,99,68,94,99,103,104,104,93,107,93,100,92,104,95,80,91,102,102,92,92,94,90,109,101,95,101,102,100,103,105,91,99,94,115,83,112,103,95,99,101,98,57,94,105,92,92,96,90,101,104,90,91,95,83,101,98,87,101,102,114,92,101,89,91,97,100,103,98,82,105,95,100,109,105,88,108,81,73,88,101,98,96,100,98,105,89,97,97,90,98,88,95,110,93,96,95,109,101,92,85,97,113,100,104,97,94,98,90,77,84,98,124,92,83,97,110,95,88,88,97,84,97,102,94,73,106,98,103,101,97,99,98,95,96,95,98,107,103,90,94,83,104,90,89,122,101,96,100,95,99,100,101,91,102,110,93,111,96,82,96,109,102,88,91,95,90,107,97,97,106,95,99,80,108,94,90,96,104,90,103,91,90,89,106,88,89,92,110,93,93,105,90,99,96,99,108,101,94,97,99,92,116,102,91,113,108,100,94,87,97,88,101,101,97,101,100,101,108,108,95,83,107,98,101,99,101,98,83,97,102,100,101,109,91,91,109,100,99,101,94,101,101,93,108,93,88,93,102,88,93,89,96,105,105,136,102,96,83,98,89,100,90,94,108,98,98,103,108,96,96,97,94,108,105,99,102,91,96,94,106,96,98,102,77,109,99,101,97,98,93,99,98,95,96,100,93,93,98,108,102,90,106,107,95,95,91,96,95,112,91,91,103,106,98,90,95,95,113,87,92,96,101,97,109,99,94,111,97,106,95,98,99,106,95,86,120,103,92,98,88,104,87,96,94,107,96,87,92,101,89,104,106,91,111,95,101,86,113,90,98,98,92,104,87,86,98,98,105,95,110,93,94,124,98,97,98,108,95,105,99,103,98,95,95,89,89,88,104,91,92,102,100,82,80,107,100,97,83,104,90,94,84,97,94,104,98,93,88,99,80,98,89,98,122,75,102,98,106,104,71,97,105,92,104,105,90,101,98,93,102,102,95,93,90,93,79,105,92,100,103,101,109,88,99,102,100,101,80,97,58,83,85,94,92,104,92,101,104,105,109,94,101,87,97,96,113,90,105,91,91,94,93,94,96,91,101,89,108,112,123,93,91,101,87,87,96,97,129,105,93,104,91,103,90,93,98,89,91,90,91,88,102,98,106,100,110,83,97,87,93,91,101,91,91,94,96,100,98,80,91,104,94,98,94,101,101,85,104,96,102,95,98,102,91,112,98,82,108,90,83,112,98,96,96,90,87,105,101,103,114,88,106,93,96,110,98,109,98,99,85,97,93,97,94,100,103,82,109,93,96,88,111,82,93,85,97,108,111,88,72,92,109,100,83,107,99,109,95,95,96,106,102,108,103,100,95,94,98,96,92,90,103,102,112,108,91,101,104,99,89,88,96,125,91,91,97,105,110,97,98,117,98,104,83,105,85,104,83,98,86,86,103,97,100,106,103,91,84,109,95,90,93,88,98,94,93,102,104,98,91,96,101,104,99,88,104,98,95,102,98,101,96,96,106,103,97,98,101,93,108,99,87,81,109,86,99,95,96,92,98,102,96,102,108,105,92,106,95,108,87,93,87,105,100,104,96,99,107,92,104,91,90,75,97,93,102,97,101,79,100,100,103,96,97,90,98,105,94,91,106,97,108,101,94,89,107,97,106,106,76,92,100,97,94,104,110,104,91,105,104,92,97,100,101,87,106,84,98,100,112,101,102,95,88,104,92,91,94,96,98,97,95,104,87,99,98,79,88,97,105,103,96,104,100,98,99,108,93,86,94,83,104,102,100,100,110,92,99,88,95,79,88,72,96,94,100,94,87,96,115,111,84,97,95,97,90,98,96,95,93,97,99,98,93,86,102,100,102,101,96,87,109,117,99,101,93,91,102,100,92,91,103,105,104,102,104,116,101,91,105,100,94,103,104,94,88,101,97,96,94,80,100,105,87,93,88,82,98,101,103,87,102,99,97,83,102,94,98,91,92,97,91,94,93,102,108,101,102,94,96,99,92,108,102,97,99,104,91,103,94,99,97,93,100,98,93,97,94,90,94,98,99,82,100,101,111,105,97,90,100,85,96,96,98,93,88,94,102,85,101,98,103,105,89,103,92,96,102,87,99,93,97,95,92,110,72,101,101,95,111,98,100,86,92,111,94,97,85,92,91,80,93,89,95,89,107,98,95,94,110,90,103,84,108,90,86,91,100,101,95,98,88,101,95,94,99,100,104,112,98,104,102,98,93,101,116,85,117,96,109,91,88,95,91,101,107,113,98,98,128,104,104,94,93,87,92,108,110,112,91,86,105,101,100,83,89,89,105,88,79,95,96,101,90,105,91,94,83,95,87,95,96,101,92,97,85,100,95,90,100,108,94,108,97,88,95,87,96,93,103,105,96,97,88,98,86,98,109,103,89,115,90,117,94,94,86,90,100,100,108,107,91,97,91,95,88,106,104,87,88,97,110,92,89,97,111,93,89,94,102,101,109,104,85,96,98,98,93,101,99,87,110,99,79,94,108,91,96,108,117,113,87,83,94,97,99,89,108,93,105,103,104,109,100,97,95,98,102,94,83,87,95,100,105,95,94,133,104,98,92,98,93,84,81, +735.4707,104,100,89,95,99,94,99,84,92,111,88,95,96,96,112,89,85,107,90,95,94,92,108,109,92,94,97,106,90,72,94,103,90,83,94,72,130,98,94,96,75,98,105,111,99,110,103,81,99,106,95,99,87,96,99,97,102,95,104,92,107,93,100,96,94,93,88,104,96,92,93,105,82,97,97,93,104,94,95,105,100,96,97,71,86,100,99,96,87,100,114,102,87,95,116,101,96,90,105,104,113,102,83,91,112,105,105,102,95,91,103,106,105,102,93,99,97,92,75,82,90,97,101,113,102,104,104,104,99,101,90,86,81,95,107,89,98,99,76,100,98,97,97,105,98,92,105,104,109,85,98,93,89,91,91,97,100,103,85,99,91,88,99,88,97,102,106,95,100,107,103,102,69,97,95,100,69,84,96,79,89,102,87,92,97,103,96,101,88,75,94,88,99,105,99,89,100,106,99,101,109,95,113,105,100,96,86,96,108,92,92,106,68,100,97,90,94,101,99,90,96,90,109,66,98,101,88,96,100,104,100,100,89,75,90,105,84,92,123,95,92,93,106,100,87,94,101,105,87,102,106,108,99,100,102,107,87,84,85,94,95,98,96,90,102,101,101,86,111,93,99,89,111,92,99,99,105,101,98,87,105,108,97,98,104,92,101,87,98,87,99,88,98,91,96,97,92,100,91,106,87,101,93,99,93,103,101,101,111,95,86,99,93,104,94,97,116,96,93,89,88,91,97,97,97,99,99,100,95,92,93,99,98,91,74,98,107,106,81,110,88,93,93,93,99,101,86,85,107,92,94,95,93,99,90,91,93,94,103,102,93,92,91,88,101,83,94,99,92,100,98,100,109,105,73,91,95,92,92,102,111,93,98,87,87,94,97,103,87,88,98,95,102,96,98,81,84,106,101,103,95,100,100,87,91,94,95,93,113,96,97,89,95,91,92,93,91,80,98,88,102,88,95,89,98,103,87,93,77,90,95,99,97,88,91,98,101,96,104,92,100,98,104,95,88,95,96,99,99,96,91,92,92,107,96,87,94,104,105,90,101,105,107,95,93,95,95,93,100,101,85,103,92,99,85,102,99,96,94,91,83,95,101,83,95,89,97,102,89,102,109,100,100,92,77,98,91,91,100,85,96,105,93,104,116,99,102,86,94,92,102,99,100,94,91,104,95,109,91,91,97,109,91,93,103,86,99,90,107,92,86,94,89,91,83,106,68,100,96,107,117,92,102,101,110,95,82,92,101,94,105,81,96,103,95,87,98,107,94,95,98,100,106,97,95,97,97,100,77,101,86,101,99,103,91,103,97,106,84,93,97,98,93,100,92,92,116,101,92,98,98,106,94,103,101,99,97,108,89,87,99,96,112,88,92,96,97,87,95,91,93,97,109,110,102,93,91,97,92,94,100,112,107,86,122,87,81,91,108,93,99,103,129,108,92,97,99,87,110,88,100,100,99,82,93,98,100,94,100,113,98,100,88,100,93,97,100,82,96,94,89,93,88,101,92,97,95,93,101,102,96,91,99,106,92,103,96,92,109,93,88,104,103,93,63,90,100,102,91,102,100,93,108,102,95,91,98,94,101,93,94,85,83,97,101,100,105,104,84,95,101,94,102,99,112,97,109,97,96,89,88,122,91,106,97,97,101,88,97,98,101,92,99,92,88,101,102,97,105,94,106,96,96,95,96,97,95,114,103,109,91,92,98,94,103,98,97,100,100,80,87,100,95,95,96,98,94,95,86,96,109,97,87,95,100,90,99,84,99,97,93,89,105,68,95,100,103,96,93,96,97,90,95,94,91,83,105,97,97,97,96,93,97,97,98,93,104,101,100,95,92,84,93,89,103,84,96,101,95,100,110,100,92,93,96,114,112,107,95,91,112,99,97,89,87,95,96,100,84,92,109,101,96,94,89,95,100,90,105,97,104,95,84,110,121,112,104,82,91,95,103,98,95,95,90,91,84,82,107,109,98,98,102,101,84,102,112,92,104,104,97,95,100,104,94,99,94,104,102,95,96,99,96,89,111,95,92,104,106,98,93,95,104,85,99,92,95,92,105,105,99,93,112,92,101,95,93,96,93,98,100,94,104,110,100,98,98,86,97,104,83,109,77,100,93,114,67,89,97,84,89,87,102,95,89,103,96,96,98,98,93,103,89,98,100,102,86,98,95,67,102,92,99,94,91,102,91,100,99,98,91,92,94,98,96,86,100,98,95,108,90,95,106,92,94,103,77,95,98,87,94,82,99,98,92,79,97,106,103,96,100,94,103,81,99,102,100,98,91,102,90,86,101,103,100,105,107,81,92,100,95,102,90,85,113,113,101,97,108,95,94,92,103,99,100,88,96,102,97,97,83,107,96,97,94,96,95,91,93,96,100,130,102,98,61,102,89,88,97,92,85,87,104,113,97,107,101,94,99,95,92,112,102,75,99,78,105,99,105,98,88,102,92,89,87,103,94,108,103,88,106,92,104,87,94,105,104,117,99,100,70,79,99,103,102,111,95,99,92,105,102,108,102,97,88,85,109,102,76,88,99,95,102,104,92,89,99,99,92,93,103,117,96,87,102,89,97,101,106,92,98,81,85,107,104,90,90,102,106,84,107,87,100,104,98,98,101,101,98,101,101,96,102,87,105,103,109,96,101,105,84,103,87,99,100,96,85,90,104,105,102,97,97,103,95,106,94,95,92,107,92,91,99,87,100,94,90,99,97,97,98,103,100,92,97,98,112,87,94,102,103,98,88,112,102,101,94,102,99,96,105,99,97,100,112,95,98,99,92,96,81,95,93,105,104,109,95,107,78,87,104,88,96,90,82,91,100,97,100,98,91,93,97,91,98,103,94,109,99,88,101,95,87,109,101,105,88,100,96,98,105,102,92,95,104,87,91,94,105,108,100,96,93,107,94,97,98,94,104,90,101,113,95,94,108,97,89,77,95,101,94,127,96,91,98,111,95,100,105,98,100,104,102,98,101,100,97,99,105,93,102,84,95,96,82,109,108,111,95,92,96,96,85,105,108,102,93,103,87,95,89,108,88,112,112,106,104,110,87,96,105,97,89,105,100,107,99,104,105,99,107,91,91,90,97,85,99,90,94,99,98,98,108,98,112,101,93,95,107,97,95,95,98,98,110,88,92,88,82,100,102,97,102,97,98,103,94,104,101,101,95,100,81,110,89,116,110,101,103,100,94,99,96,101,105,93,92,102,86,101,98,71,94,87,89,108,110,95,93,94,96,95,115,104,88,109,92,98,99,109,90,101,110,101,93,95,97,97,106,94,93,79,104,94,106,99,104,94,109,102,94,93,75,96,83,98,98,90,104,91,108,102,94,100,110,98,100,91,94,98,98,69,90,103,97,100,110,116,95,102,104,99,98,103,84,98,99,112,111,107,96,95,100,102,107,97,83,115,91,89,90,95,102,104,86,98,82,101,90,99,99,122,88,105,94,94,109,88,97,94,102,89,90,97,98,103,101,98,96,87,106,109,96,107,103,91,73,116,113,89,104,95,85,97,88,98,110,108,101,115,92,106,102,89,98,100,104,96,101,101,99,98,107,102,91,99,100,87,102,76,90,112,72,105,98,108,98,114,82,101,80,87,93,95,99,88,108,105,95,90,103,90,95,92,100,99,103,89,98,95,98,98,100,116,99,95,80,95,71,91,97,109,98,95,86,94,94,74,96,80,92,107,93,96,106,102,95,104,92,100,77,85,92,92,95,97,95,94,104,89,92,83,102,95,101,96,98,105,87,93,112,100,111,95,99,81,97,89,97,89,93,95,89,91,111,98,94,96,101,100,105,102,91,91,105,112,100,98,93,90,105,103,95,86,91,98,90,100,85,91,97,92,99,102,94,113,89,97,104,94,105,96,95,104,75,97,101,97,84,96,91,87,95,104,84,101,98,99,107,102,94,87,101,98,90,90,104,99,98,104,103,91,101,119,101,88,104,92,85,93,96,101,85,86,105,88,105,91,88,92,103,99,93,93,87,87,98,92,95,102,95,89,102,91,99,97,109,96,111,100,101,98,98,101,118,102,84,95,106,89,107,104,117,100,93,92,91,95,96,98,103,95,90,83,101,105,89,104,85,100,107,95,95,84,95,107,94,90,93,93,59,106,111,97,88,91,103,110,108,87,102,95,98,102,101,78,89,99,110,102,92,102,81,113,107,106,97,104,87,92,102,110,101,91,102,95,102,97,97,99,92,92,98,98,106,103,102,106,92,91,95,91,115,104,88,77,92,92,101,92,98,89,87,101,96,99,70,97,101,103,87,95,100,95,85,101,94,110,107,101,97,102,116,96,101,92,100,109,100,103,99,88,104,97,104,91,113,94,96,97,98,91,107,99,90,96,90,93,87,115,109,105,101,101,98,96,101,100,108,101,96,90,91,104,106,75,87,106,95,102,94,96,93,73,93,99,80,97,106,107,100,99,65,88,101,88,91,89,107,93,99,92,92,94,100,103,99,96,95,87,96,102,96,95,96,98,99,94,110,95,88,106,106,103,113,106,93,108,103,96,84,94,90,85,98,90,105,89,102,103,93,105,96,99,106,111,97,102,109,84,100,96,91,106,103,116,95,93,98,107,90,97,105,91,107,99,87,108,81,95,103,93,109,96,89,109,100,97,94,97,97,93,102,88,94,98,96,91,101,106,98,99,95,106,86,90,85,95,95,100,101,90,101,91,106,101,101,105,102,97,99,92,95,99,104,104,102,93,103,100,98,84,102,110,107,98,74,91,100,93,98,98,104,79,103,102,97,89,92,96,96,104,94,90,101,120,100,103,101,100,100,97,87,90,102,104,99,104,83,84,98,102,108,91,99,99,88,96,107,100,95,92,107,99,101,97,85,97,113,98,87,95,104,86,109,113,101,97,98,109, +735.61212,103,97,90,94,91,93,89,93,94,99,88,88,93,99,95,98,89,110,102,112,92,90,94,82,95,91,98,95,93,94,98,81,96,90,115,93,104,91,98,91,97,92,100,98,105,103,115,91,90,98,105,94,110,100,96,100,108,106,104,93,106,59,100,84,106,101,102,103,97,88,102,104,102,102,87,86,98,106,95,106,96,87,109,96,87,97,109,97,111,97,100,109,101,100,108,100,94,91,61,92,101,98,80,95,100,105,83,83,89,85,93,93,100,91,97,101,95,92,110,93,92,101,88,96,98,101,100,96,98,95,97,93,84,90,99,99,90,95,88,95,91,104,97,94,99,84,96,100,105,93,96,99,103,85,92,96,95,89,89,87,91,93,87,92,94,84,104,102,105,87,102,106,95,91,98,94,99,89,104,90,93,101,94,92,96,101,106,62,101,92,75,76,95,100,98,95,106,92,99,105,87,104,95,99,104,102,113,95,103,96,94,92,103,101,97,89,75,94,118,98,93,106,104,93,104,92,100,99,97,100,104,107,100,103,103,94,102,102,99,99,86,93,87,82,98,97,98,101,90,95,98,87,105,105,92,96,98,97,96,101,90,94,89,99,93,101,95,100,99,97,104,92,97,90,97,102,96,93,92,94,85,95,83,102,93,96,93,105,96,101,106,101,88,109,99,107,96,93,99,100,101,95,97,111,93,96,87,99,79,100,86,96,90,87,96,101,90,101,93,97,79,91,99,98,91,110,98,82,103,105,94,91,100,63,96,81,95,95,95,83,98,96,87,104,96,102,101,98,100,92,99,96,101,99,102,109,105,72,113,86,94,97,92,93,104,91,89,89,91,107,101,101,107,91,97,98,94,88,93,95,107,98,96,90,83,92,109,90,106,94,103,86,95,106,92,92,102,112,101,100,97,94,97,100,97,103,88,96,93,97,82,97,96,94,107,100,106,96,107,112,103,93,80,98,102,104,98,98,97,103,94,93,94,95,93,91,95,93,89,96,101,93,85,96,83,89,85,113,104,96,88,100,104,83,109,92,101,100,94,97,102,94,91,98,110,101,94,85,94,102,89,89,91,97,99,98,99,109,102,100,95,102,95,97,95,96,90,93,100,87,94,89,100,109,96,94,88,95,111,97,99,102,97,103,88,99,83,80,109,95,101,101,103,110,102,107,101,96,99,82,87,101,109,99,94,102,103,88,90,80,95,104,105,88,100,92,91,96,94,94,94,103,94,104,70,98,103,104,111,100,103,100,116,94,102,104,92,103,108,97,105,96,91,100,95,104,93,84,90,100,83,90,95,97,97,101,109,100,95,111,102,93,104,93,97,93,99,105,110,91,88,109,95,93,96,96,92,94,92,97,97,73,101,85,94,99,88,100,105,84,101,95,110,101,100,89,104,106,109,107,99,97,99,101,100,94,91,103,86,102,79,92,93,116,93,109,93,88,100,77,98,99,99,74,102,95,97,91,105,93,87,95,111,98,88,117,114,107,100,90,111,85,101,89,85,100,76,93,90,98,107,106,102,101,105,101,105,102,87,99,97,95,117,98,106,96,96,105,93,101,101,100,94,104,98,98,102,101,85,105,98,84,101,90,104,98,110,106,101,96,89,107,91,99,99,91,86,103,100,99,91,104,97,98,81,111,93,105,99,101,95,109,106,98,88,102,125,123,95,97,97,109,108,95,94,96,79,100,83,96,103,90,78,104,97,84,94,98,108,99,94,94,92,108,98,95,89,91,101,92,107,98,105,109,85,98,94,87,98,103,90,92,102,95,94,103,102,87,98,101,99,91,92,108,105,92,98,107,101,104,102,95,97,95,104,89,100,97,98,95,91,114,105,96,95,97,99,97,86,103,102,100,94,103,105,105,109,94,108,99,102,91,101,100,97,102,98,96,93,106,93,90,100,95,98,92,96,92,95,86,100,94,101,89,85,100,96,104,103,89,96,119,89,105,82,94,93,104,94,88,94,99,99,102,65,104,107,102,96,91,100,104,113,101,106,102,98,95,104,93,100,94,93,101,101,97,100,101,93,102,93,109,104,90,99,99,87,100,101,99,98,95,108,95,90,91,94,118,100,72,103,95,96,96,106,103,95,95,87,88,116,104,86,98,106,113,88,88,98,91,102,99,93,98,108,107,106,85,94,86,98,107,81,102,121,92,107,110,93,96,106,104,93,86,94,102,102,103,99,111,99,99,109,84,94,98,96,88,86,86,92,100,95,101,99,94,99,96,87,121,101,90,107,88,104,100,101,103,92,109,100,103,91,99,97,88,110,98,91,90,94,98,92,110,92,103,107,95,92,102,111,95,92,105,103,104,98,95,102,94,83,97,104,103,94,93,109,104,107,101,98,101,98,100,96,91,82,107,105,93,102,104,95,99,94,98,87,113,92,92,92,101,98,91,98,94,100,88,87,79,83,86,102,93,107,92,106,90,99,84,89,95,92,106,104,98,101,95,100,101,94,83,108,89,104,91,112,93,105,110,96,97,105,77,98,94,99,101,107,100,101,88,109,105,96,93,108,94,106,108,103,109,106,84,111,102,84,88,102,91,103,105,92,75,98,68,101,95,90,105,102,90,98,111,94,97,101,103,92,100,95,90,112,87,102,97,101,98,94,107,101,93,104,92,102,103,101,79,97,95,85,105,98,88,87,103,110,98,93,75,102,113,99,114,109,111,97,105,96,97,109,103,105,113,103,99,92,87,98,111,84,110,87,91,88,107,100,105,100,114,105,105,98,102,107,97,99,107,91,105,96,98,102,101,88,92,89,102,100,100,91,107,102,87,113,101,79,99,93,97,99,84,97,91,102,101,99,104,99,95,94,106,113,100,108,111,100,95,93,112,100,100,98,97,101,93,86,95,105,94,107,109,92,115,102,96,92,100,106,94,87,102,105,89,100,84,102,83,107,100,101,98,97,86,99,108,99,102,98,102,95,104,105,90,100,108,107,104,104,97,96,95,111,106,90,103,101,109,99,92,110,98,94,93,91,97,96,101,94,92,79,123,102,102,111,100,90,124,101,103,93,67,97,109,100,97,101,93,115,97,95,105,94,112,88,87,110,98,94,99,100,106,97,98,101,109,100,104,94,96,88,102,91,102,113,103,91,108,104,109,101,98,92,96,98,86,113,104,99,106,93,92,100,96,103,100,99,104,99,103,105,93,99,101,104,114,117,91,96,98,95,101,111,107,93,109,102,102,95,98,97,105,93,91,106,96,119,91,100,75,98,103,107,90,96,95,106,109,101,95,112,94,109,91,92,103,92,95,107,100,97,95,109,92,103,86,105,89,112,97,92,99,95,115,110,105,117,90,96,94,87,99,99,99,90,102,95,89,104,84,103,95,94,116,100,84,89,101,72,96,105,97,99,98,93,103,102,116,108,103,89,105,96,102,102,98,101,100,97,90,94,99,90,91,118,102,112,105,97,97,102,92,99,106,93,99,100,107,101,94,100,92,108,94,98,111,101,94,100,80,105,107,116,85,97,98,100,99,101,100,113,91,94,85,95,102,108,102,98,97,96,98,89,95,96,95,106,94,95,104,103,94,89,107,102,104,92,100,94,101,93,104,111,99,115,106,113,100,104,102,99,97,97,99,102,90,96,98,105,103,96,100,109,96,91,102,70,90,108,101,90,105,101,102,93,83,91,106,87,106,94,113,98,106,96,98,102,89,96,87,95,110,95,80,95,92,99,102,99,93,95,85,89,87,117,98,111,88,116,100,99,95,92,85,103,109,99,108,108,107,100,96,105,94,100,103,101,91,98,97,103,97,87,106,107,117,92,90,90,76,83,92,107,102,109,94,90,101,80,101,105,112,107,97,112,94,110,84,95,103,93,95,102,119,116,97,96,100,87,99,95,84,98,111,99,118,106,97,88,90,90,107,102,101,100,108,109,88,100,90,97,93,100,94,112,112,99,89,97,97,93,93,102,107,100,107,101,100,102,87,103,94,87,93,98,99,100,95,106,103,99,96,98,91,100,90,101,87,107,95,108,97,100,98,97,74,110,106,100,110,96,84,105,100,103,102,101,94,95,95,96,96,97,101,97,105,106,92,95,98,105,106,107,102,104,91,91,88,100,94,99,106,97,105,103,97,101,89,112,90,102,85,98,103,99,89,92,98,99,102,87,90,84,91,103,106,93,97,109,97,97,91,105,104,102,101,93,104,101,103,96,100,95,96,99,79,104,96,95,101,103,91,109,109,100,102,103,113,107,97,99,97,103,87,96,96,96,105,109,103,105,89,101,92,94,98,92,112,97,109,97,99,105,91,99,102,104,106,93,111,86,96,111,98,97,109,103,102,97,86,108,82,96,109,95,108,104,98,111,106,91,101,106,106,108,112,91,88,108,93,92,98,116,95,93,103,107,95,86,90,97,103,92,102,86,105,99,97,104,94,111,103,98,98,89,94,84,102,95,113,83,94,96,104,99,88,97,95,98,99,95,100,96,98,103,107,101,92,97,98,99,99,101,108,95,110,104,92,86,96,77,91,99,97,109,94,108,95,106,113,86,91,106,96,106,79,106,94,106,97,98,101,98,88,99,104,98,106,96,94,105,94,99,98,105,98,100,99,99,99,97,102,100,96,93,97,95,105,91,88,100,105,78,100,102,98,108,108,97,94,104,96,102,108,95,109,96,93,100,77,94,67,94,94,98,100,100,107,99,102,99,116,104,101,93,99,94,96,114,95,111,107,94,93,107,105,105,92,113,89,107,99,106,105,108,94,114,99,114,116,101,98,99,109,80,108,94,87,97,100,109,72,121,103,99,90,96,110,93,110,104,101,109,88,103,106,89,109,101,95,101,103,95,99,99,109,88,88,96,110,108,89,108,91,96,91,115,103,99,98,92,104,109,96,92,105,93,111,96,88, +735.75354,101,112,100,92,87,93,102,97,95,97,115,100,104,100,92,90,100,105,107,93,99,104,91,116,99,90,101,88,99,113,95,86,96,79,106,89,95,99,94,105,93,102,111,104,91,113,94,103,67,108,90,92,98,95,95,105,99,95,103,80,90,103,56,85,105,96,81,102,104,105,102,99,104,93,89,99,102,99,104,100,110,95,95,99,93,97,93,97,93,100,121,101,100,97,95,100,94,102,98,101,77,97,103,92,94,107,105,109,104,86,94,112,95,89,96,112,99,101,110,92,90,98,111,100,101,103,69,101,98,99,110,98,99,75,88,104,100,95,99,94,100,93,96,99,92,98,104,123,91,90,100,92,105,88,100,100,107,90,111,97,93,97,111,99,100,93,100,95,76,101,102,100,92,106,108,92,97,91,103,92,94,95,99,95,102,104,95,82,95,103,97,98,91,101,95,95,92,111,94,79,86,95,100,105,87,95,74,103,116,101,96,87,102,96,97,86,99,97,106,75,109,107,101,99,94,103,89,100,100,97,99,88,102,97,93,113,101,95,107,99,91,97,95,92,104,101,95,92,96,93,94,91,93,88,107,95,109,97,86,91,89,87,100,98,95,96,86,108,92,94,95,93,92,106,101,96,101,72,97,81,94,98,105,101,110,109,105,88,76,84,104,101,103,116,117,93,97,106,95,103,88,111,100,94,99,103,96,90,94,98,95,105,95,104,101,98,93,88,83,92,92,107,96,99,94,92,98,92,101,105,104,101,100,99,91,104,93,98,90,88,110,94,101,71,100,121,98,88,106,112,106,87,130,105,103,98,83,101,109,100,113,106,90,105,96,97,89,96,102,104,102,101,105,86,101,92,92,90,89,106,104,104,101,89,104,91,88,92,101,92,96,106,98,94,89,93,68,99,92,111,98,92,92,86,83,94,91,101,96,107,92,89,91,105,94,104,111,87,102,84,110,93,105,98,101,107,98,105,97,95,93,90,89,92,97,90,96,103,86,94,96,106,87,96,94,89,97,95,105,99,96,87,91,95,101,102,96,122,102,95,103,103,102,102,92,101,97,90,77,94,97,97,105,95,91,93,98,105,103,117,95,97,100,105,91,101,99,99,91,92,97,99,93,97,110,100,99,96,86,107,108,100,96,99,89,105,89,94,113,88,98,98,102,91,105,97,107,93,98,101,92,109,96,96,100,107,104,95,103,103,86,81,98,89,99,98,91,83,99,94,94,100,95,105,110,106,106,108,112,95,102,111,105,92,104,85,95,94,108,104,101,96,86,101,101,95,104,101,98,112,96,93,101,101,91,82,83,89,90,99,83,99,101,103,104,110,114,101,96,90,96,93,87,106,89,103,100,84,102,91,82,97,96,86,99,92,90,90,87,101,95,85,102,87,96,90,91,101,102,108,97,96,107,100,96,91,95,102,98,94,90,84,83,101,86,105,81,101,99,87,99,100,93,90,101,88,97,82,99,95,103,95,92,97,108,92,97,102,92,99,104,101,86,99,83,98,95,94,91,102,108,92,102,101,95,106,105,104,102,110,95,100,105,85,112,99,104,98,81,113,95,100,102,111,99,104,94,109,102,84,97,91,82,101,102,93,93,97,96,100,106,84,114,92,90,91,102,106,92,105,99,95,108,87,94,93,104,99,95,110,106,94,104,96,93,100,91,92,102,98,107,106,101,94,94,74,93,96,102,94,105,94,112,104,94,99,103,92,103,102,102,100,92,97,95,100,91,110,101,86,111,94,104,90,100,98,105,97,96,92,102,111,108,95,100,109,86,110,98,99,97,112,113,103,100,98,117,97,96,91,93,91,97,94,93,97,93,109,100,79,98,100,99,87,105,89,102,93,92,89,79,96,102,113,98,109,106,110,105,95,111,101,107,99,105,97,100,105,106,103,89,83,102,60,99,88,92,103,98,86,94,92,96,110,90,104,101,101,100,91,85,110,82,91,102,88,97,105,101,105,101,99,91,99,95,99,99,93,99,102,98,100,93,100,99,101,91,105,109,98,95,104,105,101,93,99,90,100,92,118,86,105,99,106,113,93,87,94,95,98,91,99,119,102,110,94,66,105,92,88,107,102,104,79,94,90,91,90,92,93,80,93,108,101,96,94,98,93,111,103,107,97,97,95,98,86,104,90,78,94,97,101,106,100,103,93,109,114,100,108,99,107,87,94,97,88,93,97,97,94,88,94,89,99,96,111,104,103,84,96,101,89,98,91,98,104,91,88,105,108,112,86,104,86,92,100,98,104,95,93,105,100,100,99,109,98,106,99,88,96,98,106,89,107,91,99,110,103,96,93,99,93,96,82,101,88,96,66,101,96,93,87,106,103,79,98,98,109,103,96,90,99,88,96,97,90,102,92,78,102,91,105,117,95,105,101,106,94,86,101,122,106,104,93,95,83,98,94,100,104,82,108,81,100,80,99,106,91,80,96,92,117,87,116,109,83,103,92,90,106,99,98,90,99,105,80,109,98,106,104,101,107,97,109,92,98,92,102,100,103,91,90,90,102,135,106,97,113,102,89,103,96,84,88,92,102,98,108,87,97,105,104,95,102,101,98,105,97,105,91,92,96,97,91,103,89,69,103,93,97,99,104,112,103,92,99,98,96,93,99,104,106,103,99,109,100,102,92,105,95,91,95,88,97,81,100,102,100,95,88,125,87,105,98,89,104,104,104,113,101,95,95,95,89,97,94,90,72,100,98,88,97,90,86,87,101,93,98,104,101,91,106,90,103,94,98,111,104,103,96,110,99,105,102,103,105,114,98,110,83,117,98,84,102,95,93,118,103,103,95,96,88,116,103,100,100,109,98,99,109,100,96,106,87,96,92,83,102,96,97,98,86,111,103,85,89,92,109,95,111,94,114,97,110,98,87,81,97,99,94,95,101,91,97,105,94,98,99,98,102,104,104,85,94,102,96,92,101,91,93,92,78,102,106,92,114,100,99,98,96,100,98,96,91,100,99,116,97,88,95,96,102,119,104,103,99,99,89,103,94,90,87,91,94,95,104,96,105,85,96,87,94,105,84,83,91,93,106,95,112,100,93,91,101,84,113,98,91,86,101,83,102,106,94,102,102,96,100,92,91,95,104,87,97,97,101,87,91,100,100,98,103,79,112,96,83,103,95,94,102,93,93,102,97,99,101,102,92,103,86,104,104,95,91,110,106,102,100,103,94,100,68,94,102,89,101,90,102,100,99,107,104,117,100,101,120,97,107,94,107,89,89,96,100,96,90,91,96,104,96,103,103,96,101,105,101,93,101,101,92,108,85,108,107,100,101,104,107,104,95,90,106,92,97,100,101,95,89,100,97,106,105,86,98,95,92,97,103,100,103,99,100,99,121,101,108,96,85,97,97,101,95,102,98,93,98,105,94,112,108,88,107,113,105,93,97,117,98,97,90,104,128,103,93,100,109,108,85,89,96,96,97,80,102,87,107,94,80,106,92,108,90,94,96,105,87,114,98,91,98,108,113,94,112,87,98,101,99,99,90,102,97,110,107,97,106,109,103,100,89,91,95,93,103,101,94,97,105,91,122,101,92,113,90,103,99,97,92,102,87,88,98,101,96,96,102,107,95,101,103,88,89,102,101,85,87,102,100,91,97,99,100,103,112,99,104,105,84,90,108,96,102,107,80,105,98,97,87,98,96,90,104,93,106,100,94,95,95,94,106,83,99,81,92,102,106,113,88,96,81,96,104,95,106,103,101,97,94,98,91,107,98,88,93,81,103,105,94,109,96,101,94,98,93,93,94,101,85,106,91,102,93,97,86,95,104,104,98,103,95,113,113,100,88,101,102,102,102,94,108,89,103,100,102,105,92,106,90,102,90,102,92,77,92,86,84,91,98,96,92,101,99,97,101,96,107,79,91,84,99,85,100,96,116,92,79,101,121,107,99,100,112,120,103,103,106,99,96,95,99,87,99,97,100,112,91,104,110,92,71,96,110,105,108,84,113,96,102,90,104,102,112,99,97,96,92,98,88,109,98,105,106,97,93,83,95,102,96,103,109,113,95,99,97,98,103,110,102,89,104,94,103,95,99,78,108,75,109,94,100,104,104,90,125,100,100,102,89,97,97,98,89,95,85,104,71,100,90,98,109,92,89,102,105,94,103,97,115,107,109,99,98,97,84,96,101,98,88,114,112,89,94,101,99,106,96,109,114,104,105,95,98,104,104,101,107,91,95,93,101,98,98,97,104,88,89,102,103,106,104,115,95,109,89,93,111,95,114,102,96,116,98,110,94,109,96,100,89,100,96,78,84,91,98,100,100,102,105,104,96,98,89,103,107,94,103,98,98,87,79,97,112,99,99,90,101,86,108,91,91,92,106,74,90,85,94,97,102,103,85,99,104,104,102,78,98,100,99,95,98,88,90,103,102,94,99,78,112,105,100,87,108,109,92,99,106,92,102,93,102,100,98,99,102,99,104,89,100,104,99,86,87,113,99,98,99,102,99,100,97,93,107,124,103,105,102,99,102,95,97,89,91,101,95,102,97,91,94,107,100,99,94,94,96,88,115,91,91,92,98,108,101,95,95,101,105,108,93,103,95,92,92,99,104,96,102,88,96,99,103,100,106,95,93,98,102,96,95,100,98,106,104,101,100,102,96,101,93,117,91,92,100,117,99,91,90,99,95,86,91,98,98,118,94,98,98,94,94,99,96,105,104,102,106,98,100,92,118,89,91,91,108,92,106,92,95,93,99,104,89,106,91,86,106,94,85,99,102,101,108,102,94,111,110,96,62,112,105,97,91,102,98,111,94,90,100,81,101,106,95,97,102,94,94,108,115,105,93,100,102,106,95,98,93,99,104,91,83,103,96,88,100,111,104,109,124,107,105,100,90,95,101,96,91,102,92,100,103,91,102, +735.8949,109,92,90,98,89,99,100,96,93,105,90,89,84,99,95,86,89,111,95,90,94,91,95,113,97,89,99,77,112,96,99,100,102,95,104,104,90,88,82,101,85,109,102,62,99,104,100,100,95,98,108,102,103,90,85,98,95,91,102,84,91,80,97,94,113,101,105,111,96,102,78,98,95,95,105,97,98,97,80,79,87,84,100,94,105,83,84,103,93,104,98,104,105,98,102,89,105,104,92,106,92,89,94,92,97,99,100,99,97,92,100,100,102,115,104,88,125,122,98,101,95,97,106,107,93,108,110,98,110,89,125,105,98,98,97,115,94,99,90,100,91,110,88,102,96,97,101,95,96,103,89,92,97,76,89,105,101,83,109,92,107,100,104,102,98,78,95,85,92,93,98,106,99,96,94,98,85,99,90,106,104,95,103,110,103,123,101,106,99,97,105,98,93,94,105,104,102,98,83,108,100,98,92,105,95,55,104,108,107,102,86,98,104,92,96,104,96,99,90,97,108,95,106,84,105,86,98,100,96,98,94,107,101,104,105,103,93,97,96,108,101,107,99,98,90,104,101,103,105,80,102,92,87,97,86,90,109,96,99,108,99,90,119,91,95,112,96,105,104,101,98,90,93,90,99,102,106,97,74,99,97,95,100,105,92,98,87,96,94,96,122,92,94,97,105,108,102,104,104,98,100,100,96,100,100,90,103,104,108,107,83,82,101,115,110,96,93,101,112,93,88,89,95,109,104,101,94,90,112,88,90,80,91,95,98,100,96,107,91,100,94,83,87,89,91,105,93,110,105,87,87,86,108,101,99,101,103,102,105,94,99,85,97,91,87,87,112,100,92,103,105,87,97,103,108,94,102,101,97,116,91,106,86,87,95,98,88,93,99,90,92,97,100,102,94,94,89,94,100,94,97,97,96,89,101,80,98,113,112,95,79,91,98,99,93,97,91,94,104,83,100,99,85,106,95,90,98,81,87,108,101,96,95,95,95,104,87,108,101,100,92,104,87,105,92,88,92,95,98,114,101,94,101,97,96,95,93,95,94,95,109,99,104,109,106,96,109,92,105,98,96,92,92,100,93,95,91,100,93,98,105,107,100,103,93,105,107,95,98,96,110,96,98,97,95,86,90,99,99,115,99,94,84,96,98,100,100,95,108,105,101,113,84,107,95,96,95,90,99,93,104,95,101,96,106,91,107,78,105,94,100,83,96,97,91,97,101,90,105,102,98,112,95,102,94,99,104,91,77,99,96,94,90,94,78,78,98,87,99,101,92,97,92,106,108,91,104,106,93,91,99,99,96,102,103,100,92,94,96,104,95,104,74,75,92,96,96,104,98,99,105,104,96,92,102,90,98,102,91,108,104,96,108,88,91,107,82,89,92,94,87,96,98,103,101,93,102,103,97,99,108,108,103,92,99,91,112,99,98,70,104,105,99,98,101,104,96,94,98,91,101,99,100,90,87,95,96,83,95,96,97,96,79,97,97,105,99,96,111,99,100,100,96,104,96,101,109,89,99,102,93,105,114,100,99,103,91,110,99,88,100,103,108,97,110,94,93,96,101,88,99,97,86,102,105,90,102,99,96,104,95,94,97,91,97,95,98,91,97,101,83,105,99,99,91,109,106,100,97,89,89,94,96,99,84,113,96,113,81,100,107,100,94,102,98,106,96,92,91,104,95,84,126,96,90,93,96,99,88,99,99,94,102,109,89,90,105,98,106,96,94,78,111,102,103,92,87,87,95,101,101,86,97,97,88,93,106,92,94,89,102,102,106,108,90,108,98,104,102,97,84,107,98,110,92,99,102,97,116,110,90,101,84,91,94,97,106,123,102,88,96,90,92,94,108,108,104,87,97,96,99,91,111,104,108,113,103,102,102,96,106,93,104,98,100,105,98,98,104,97,95,99,103,88,94,98,103,94,87,90,111,94,88,97,93,93,106,94,100,92,58,84,85,103,91,102,107,98,97,98,98,97,97,98,103,98,108,105,94,92,109,87,104,97,101,107,86,124,90,105,106,98,111,96,96,123,97,112,96,106,112,95,94,102,92,96,97,97,92,116,113,100,99,108,86,88,94,87,97,101,109,112,99,78,110,91,112,104,100,102,87,82,101,97,102,92,87,110,109,113,113,108,88,105,91,91,110,93,101,90,91,88,92,94,104,94,104,90,92,101,101,95,99,90,95,98,99,101,72,88,91,88,97,105,110,101,87,86,90,86,98,94,107,103,99,98,101,103,104,100,95,106,100,93,85,91,92,108,82,111,114,103,99,93,96,93,98,99,91,106,86,98,106,109,87,92,88,92,89,97,101,111,101,92,100,91,94,92,93,102,108,99,91,105,110,89,93,86,99,97,94,103,94,111,94,104,98,92,100,92,109,118,104,84,93,103,99,89,89,98,97,105,114,93,101,97,91,95,100,99,87,110,97,89,111,98,87,103,80,97,95,100,82,87,94,97,89,96,101,112,91,110,100,88,83,106,95,106,103,102,105,85,105,87,93,86,108,93,101,93,100,112,86,108,89,95,103,98,95,105,85,97,86,96,93,99,101,101,103,98,104,101,101,94,99,95,100,96,105,76,101,98,97,105,105,103,92,101,105,102,81,98,107,99,105,100,93,94,94,98,107,92,98,94,105,108,95,88,84,93,92,88,101,102,83,89,99,102,108,90,102,85,93,100,94,93,100,97,82,91,89,97,100,95,92,99,100,91,90,97,104,94,99,95,101,94,91,97,113,99,88,104,94,78,94,108,105,97,92,85,95,109,90,88,105,89,102,99,109,94,100,93,90,91,93,93,91,92,91,108,92,97,101,103,102,97,100,95,93,91,93,94,98,117,103,105,94,104,83,112,102,91,98,95,101,98,86,96,104,99,94,104,97,98,98,98,93,94,91,105,110,101,103,88,99,100,98,96,105,94,101,103,101,89,88,102,99,113,105,95,99,95,88,90,87,84,113,106,99,92,82,104,97,94,98,105,96,104,91,109,111,97,87,95,103,107,98,96,105,86,95,86,90,98,106,109,105,108,107,92,95,101,107,93,105,93,99,80,98,99,92,97,85,99,101,91,102,102,108,89,113,106,100,87,100,89,106,113,90,90,97,98,95,87,104,93,95,113,106,88,101,102,109,90,109,93,81,95,95,90,77,98,91,106,96,94,100,80,103,92,97,81,89,88,79,83,94,98,102,79,95,96,109,98,96,88,97,95,95,101,95,96,99,100,82,86,110,80,95,109,94,93,100,101,105,88,94,93,85,99,95,97,93,76,98,96,94,99,104,102,101,91,93,87,105,94,104,71,92,93,105,87,97,93,92,97,94,87,97,100,102,108,101,92,90,98,115,92,99,101,96,95,99,92,102,105,114,99,104,97,97,100,77,97,100,96,101,88,99,101,87,97,105,97,95,94,108,97,77,109,94,92,93,118,85,75,100,101,96,96,87,105,96,92,84,73,102,93,96,98,117,112,111,97,94,86,111,101,98,89,97,100,95,92,96,94,94,100,88,99,101,96,95,91,87,84,99,106,106,96,94,94,95,100,110,104,95,86,103,95,115,90,69,89,95,88,105,99,98,97,91,95,93,100,94,94,98,95,98,102,93,101,92,92,99,91,101,106,100,92,97,105,93,94,103,109,103,97,100,112,83,93,84,97,84,102,100,98,98,99,94,100,87,91,96,105,94,95,94,87,88,100,108,100,93,105,93,105,108,104,92,95,100,88,98,102,117,105,99,101,88,88,100,90,97,97,96,98,99,81,100,79,96,95,94,96,97,107,102,89,90,104,99,103,105,97,93,105,100,97,98,98,88,98,97,110,102,89,96,118,100,87,100,101,91,102,110,105,103,105,108,96,94,91,91,99,105,101,91,95,100,93,94,101,92,85,94,93,92,100,94,97,87,115,91,100,105,100,75,101,95,88,98,93,106,99,103,95,101,99,92,99,101,100,101,106,93,95,89,91,90,90,99,111,102,96,60,89,92,109,96,101,97,88,99,98,101,88,104,92,98,68,75,103,93,91,106,106,98,84,91,82,96,102,96,109,93,94,103,97,105,90,104,100,96,88,102,98,92,90,101,102,100,98,87,95,114,102,95,99,84,87,100,96,101,99,92,106,95,108,90,94,90,101,104,95,110,101,104,101,107,105,89,93,112,114,110,91,88,99,100,96,112,98,76,88,87,95,100,92,102,95,69,105,104,107,94,94,111,95,99,95,97,100,95,98,112,94,94,96,88,99,103,102,93,94,102,93,109,85,108,92,89,95,94,95,100,95,92,93,69,96,85,96,100,98,91,99,114,70,89,102,96,110,106,90,96,110,107,107,113,97,102,99,92,90,102,94,97,94,88,104,96,109,91,102,99,89,102,91,106,98,104,89,95,94,101,104,94,102,80,88,98,102,97,101,96,92,98,98,117,105,90,98,72,98,96,94,88,100,90,110,102,103,93,89,108,89,90,108,103,109,99,95,104,82,89,90,115,102,104,112,95,110,103,95,102,97,96,83,94,87,95,97,105,94,99,88,113,97,92,81,87,98,105,98,95,97,92,96,90,99,97,97,101,117,113,101,101,86,96,106,107,97,100,94,91,99,97,105,101,91,98,101,111,104,93,111,107,81,118,111,99,97,129,97,98,88,99,91,87,95,101,107,95,74,97,111,94,98,98,93,93,98,106,94,99,97,89,75,101,107,98,108,103,99,94,113,95,87,113,109,105,111,116,108,101,91,96,88,71,93,111,92,87,89,91,103,111,108,82,106,92,101,103,96,106,96,95,98,93,100,86,85,96,89,90,99,87,92,113,89,85,88,101,98,88,105,101,100,81,108,101,105,104,83,97,101,94,102,87,92,94,106,98,92,94,103,104,90,98,98,105,98,93,96,84,93,125,109, +736.03632,97,97,76,87,93,93,99,90,85,100,108,95,95,101,92,94,89,100,94,108,104,102,94,99,96,101,96,106,104,92,104,108,94,113,103,101,128,98,106,102,105,90,79,101,95,99,82,98,99,110,90,96,99,89,102,83,106,109,97,89,107,93,97,81,95,100,97,135,93,94,103,124,90,91,101,99,87,93,103,106,82,102,88,106,92,86,81,98,95,95,102,85,100,100,94,91,102,100,99,96,97,89,91,81,95,93,95,98,90,101,84,58,95,109,97,102,84,94,107,97,91,102,110,108,100,111,105,90,103,102,103,105,98,100,114,90,94,106,105,85,93,101,103,94,89,81,91,90,94,86,108,104,100,91,96,102,99,96,102,101,102,91,90,109,98,95,105,92,98,99,98,102,98,99,87,89,101,86,91,94,102,71,97,88,100,95,95,88,103,102,92,102,96,99,103,93,94,86,96,114,91,92,101,100,98,105,96,102,116,101,104,109,97,99,101,89,95,91,93,92,104,96,104,93,85,91,99,98,102,101,101,105,97,87,93,104,101,101,95,99,100,107,103,96,101,91,97,102,102,102,96,82,91,106,103,83,100,91,95,109,95,97,105,76,85,100,91,102,92,95,97,107,94,65,103,99,87,92,96,98,95,98,116,101,95,94,102,107,90,92,103,99,96,103,109,102,95,95,99,97,85,88,92,110,90,133,102,91,116,105,82,109,103,98,89,99,92,108,95,105,104,85,90,100,87,87,103,94,105,103,93,96,95,97,100,86,106,81,103,94,89,99,97,100,100,88,76,99,105,92,96,78,92,106,107,93,96,104,91,98,95,90,89,89,93,93,94,93,87,105,97,107,95,97,99,98,92,112,91,92,109,94,91,100,110,101,92,106,88,100,110,93,95,99,100,88,107,85,92,105,95,85,89,100,95,94,91,102,99,88,98,104,94,105,100,103,100,100,101,97,93,86,95,63,108,90,97,94,94,104,115,104,105,95,107,94,112,105,97,94,104,99,97,103,88,97,91,102,104,108,95,93,86,92,104,91,98,103,95,103,100,99,95,90,110,100,97,101,112,94,95,91,106,91,92,89,83,99,100,109,99,89,106,101,99,91,116,110,104,101,100,107,109,95,91,87,66,104,104,96,104,95,98,104,97,96,88,103,97,90,88,89,98,114,111,100,96,95,89,101,100,97,110,96,105,103,112,100,109,101,101,86,95,102,106,87,100,95,100,96,99,100,93,92,106,96,87,97,99,94,93,96,103,104,92,70,94,104,99,99,95,102,90,98,90,98,94,88,102,88,96,87,96,91,91,96,100,108,94,104,103,98,105,98,100,103,97,101,109,114,112,105,106,100,100,92,92,95,99,93,86,98,113,99,101,88,117,99,110,111,100,91,81,95,99,92,90,97,98,86,101,94,102,124,101,101,97,92,89,94,95,90,90,95,98,100,103,100,97,89,100,102,97,101,87,87,94,99,92,106,92,95,73,96,79,88,108,110,93,101,108,76,93,110,92,101,91,87,95,91,110,94,95,91,98,97,93,116,102,82,109,98,101,81,98,105,95,91,99,102,98,91,90,92,88,68,105,95,87,87,97,90,103,91,96,97,109,98,86,94,89,107,94,87,88,97,96,95,98,95,79,95,100,94,96,94,99,99,92,122,96,97,94,92,73,92,92,90,104,97,101,94,110,102,101,94,103,95,93,101,105,101,95,93,88,113,102,92,103,105,99,98,71,95,102,84,92,92,100,96,92,96,89,108,90,94,95,92,97,94,100,88,93,101,95,99,107,83,91,98,105,99,97,93,106,105,96,101,107,101,93,109,93,97,98,95,99,102,83,108,95,94,100,94,103,95,104,86,82,90,102,94,93,101,98,106,102,85,88,93,103,87,113,98,100,89,110,106,103,88,95,102,106,90,94,101,98,99,88,97,94,100,82,98,101,85,113,100,94,102,92,100,96,99,102,87,95,101,103,100,96,89,88,102,91,92,91,92,95,93,114,96,98,96,101,99,93,118,101,96,98,100,88,105,114,84,103,91,101,103,96,101,74,97,94,76,85,95,100,83,95,93,103,105,99,99,94,96,92,95,92,105,101,91,105,91,96,102,96,90,97,88,102,101,101,97,98,101,95,100,98,109,99,97,96,85,96,93,97,92,99,87,101,101,96,82,106,108,109,92,107,96,89,101,99,100,99,89,95,100,100,91,107,97,100,94,100,99,106,101,98,98,101,92,96,97,93,107,95,86,98,99,99,95,91,89,92,109,95,109,101,93,92,90,100,102,105,100,100,94,89,86,100,91,97,91,87,94,85,99,105,99,96,107,102,99,101,110,89,101,92,104,90,91,92,93,85,109,97,93,93,91,97,96,92,98,104,69,98,96,100,102,94,100,92,108,91,90,101,107,96,99,123,96,95,94,92,101,98,94,88,109,97,96,99,105,101,95,77,101,98,89,94,104,94,90,92,105,105,106,99,102,80,97,91,91,90,94,91,101,96,78,114,107,99,109,103,80,116,109,89,107,84,103,96,91,105,100,88,99,98,96,88,91,98,97,113,98,107,108,99,112,97,101,92,105,94,98,101,94,97,92,95,99,98,95,95,99,99,97,106,95,104,93,99,100,101,96,93,95,97,103,95,88,96,100,93,100,99,99,89,106,106,98,91,98,82,91,96,95,103,99,96,80,95,109,100,88,97,83,93,92,98,105,92,107,98,92,102,92,105,108,91,99,104,98,91,95,94,100,90,103,107,101,86,99,92,96,93,104,106,95,107,108,102,89,97,114,88,86,97,103,92,100,90,96,98,105,91,103,99,101,99,95,83,91,95,103,103,90,98,113,100,97,92,106,83,97,93,117,99,109,103,100,107,98,91,59,99,99,105,103,96,106,89,98,101,87,110,110,104,92,98,94,101,94,94,98,101,94,95,62,98,100,106,95,92,92,105,95,95,95,99,94,99,101,103,97,102,95,100,98,90,94,98,97,109,101,99,108,102,116,96,107,110,114,103,74,95,97,114,91,94,115,104,102,90,97,90,97,80,99,107,99,97,95,107,99,96,105,91,95,84,103,103,98,92,105,79,93,101,104,97,90,92,96,81,103,91,107,95,100,95,109,102,93,92,97,104,93,94,91,112,91,98,113,108,113,100,100,97,98,105,97,102,104,88,101,95,99,108,99,94,94,98,107,103,101,90,94,92,100,94,98,100,91,93,100,100,96,99,92,101,98,94,107,101,97,113,91,92,100,109,97,106,85,97,105,96,103,87,85,89,93,87,100,91,101,112,96,107,80,102,104,87,95,99,104,100,97,104,98,105,99,93,109,93,88,96,93,98,90,101,86,97,92,105,100,94,98,91,108,107,100,95,89,98,101,112,97,101,99,95,99,95,89,99,97,101,89,85,77,96,99,97,97,91,93,102,110,106,99,101,110,110,93,93,106,102,83,95,110,102,96,100,87,101,95,89,98,101,83,88,88,101,109,105,115,104,97,98,108,97,107,116,87,99,98,106,86,109,105,101,102,101,110,95,100,88,91,94,121,95,98,91,108,97,105,94,101,106,108,91,121,93,99,106,101,102,93,98,98,99,109,93,95,103,93,107,87,75,114,99,101,94,89,98,101,96,93,97,103,109,101,96,95,88,87,102,88,98,94,80,108,99,96,98,100,105,104,95,103,100,102,82,90,105,101,80,92,96,92,106,97,101,102,101,99,103,94,78,102,100,103,101,95,113,108,104,96,68,101,94,87,92,110,95,100,101,91,108,96,110,98,91,84,60,96,95,102,89,84,97,115,80,99,98,89,92,77,124,100,102,116,95,94,110,103,90,108,91,94,85,103,93,96,103,98,105,105,90,89,108,110,91,101,107,103,95,104,94,93,96,93,120,99,96,86,87,96,88,106,97,95,108,104,112,89,96,93,100,100,97,105,89,90,99,106,99,92,95,95,100,74,99,99,110,87,99,100,105,91,92,97,75,99,75,92,108,96,97,107,91,112,99,93,94,116,94,100,97,98,108,100,91,99,90,133,107,95,107,95,92,102,96,95,117,103,104,79,112,93,100,104,108,102,104,92,83,102,97,102,85,100,88,116,95,94,94,91,79,93,105,98,106,98,99,94,97,89,98,101,95,106,77,102,103,95,99,94,102,88,98,92,94,90,111,105,96,87,105,87,101,99,101,100,106,92,92,92,95,110,117,87,102,104,89,91,103,93,86,95,102,101,97,121,102,79,97,98,116,91,102,97,89,104,92,92,103,96,105,106,107,105,103,101,94,93,87,98,106,98,110,98,98,105,92,98,99,94,110,94,100,101,108,95,95,91,99,117,88,92,108,100,101,98,94,99,97,102,94,92,99,115,95,102,102,98,62,94,107,104,105,98,97,104,95,114,106,84,92,97,106,106,104,105,94,123,105,99,100,103,99,87,93,105,97,95,99,117,104,100,93,96,91,101,101,91,101,85,100,100,104,91,97,105,110,94,94,110,100,101,78,101,95,87,106,103,92,102,86,92,88,102,99,105,91,89,89,101,110,95,99,98,90,103,102,102,98,92,105,111,99,92,93,81,103,90,82,72,83,92,93,97,101,104,91,111,90,89,99,103,88,106,96,104,97,98,69,102,105,83,107,85,87,90,104,100,112,107,86,98,123,94,97,97,92,124,95,101,100,105,94,100,102,94,96,92,99,97,100,106,96,102,106,103,102,80,90,90,100,91,99,90,97,125,69,92,98,91,107,100,117,99,94,67,96,100,100,109,110,104,72,95,110,88,94,100,104,109,96,91,83,103,104,89,99,100,99,108,104,89,112,97,96,94,103,108,119,77,94,103,102,101,98,102,84,117,87,98,103,90,100,98,87,106,92,103,94,89,96,99,94,91,116,99,129,88,114,91, +736.17773,106,88,99,84,98,117,93,87,113,103,101,95,83,99,98,79,86,100,89,84,103,95,73,89,87,95,90,96,89,97,92,86,132,106,97,82,105,93,95,105,94,98,91,105,94,125,83,89,95,102,89,105,92,100,105,97,99,99,117,92,90,101,91,95,102,91,97,106,96,99,105,100,67,91,90,93,87,100,103,94,78,106,97,86,95,86,100,80,79,84,95,101,98,109,80,88,92,94,100,103,87,105,91,91,93,84,93,94,109,90,75,111,100,136,89,94,99,93,95,98,97,97,101,111,93,95,102,111,113,105,89,105,93,98,97,90,107,97,97,89,85,96,101,96,93,95,90,107,91,105,98,84,92,92,86,87,81,90,96,99,102,97,101,116,116,73,88,97,92,87,97,62,87,86,108,113,94,90,90,84,101,93,95,92,99,105,79,88,92,94,84,100,103,84,92,103,91,94,97,96,76,86,89,100,90,107,90,110,98,92,86,79,101,96,96,86,94,99,89,109,86,104,96,95,105,91,93,90,97,92,95,92,91,99,95,82,83,104,99,72,100,90,99,105,85,105,98,96,94,97,99,92,91,94,88,99,97,119,78,85,89,93,97,105,98,91,95,100,96,73,90,77,93,94,108,94,85,99,93,101,85,96,99,99,87,93,99,98,87,96,94,94,97,108,105,101,90,99,102,88,88,95,91,103,86,97,99,110,105,117,109,81,96,99,100,85,110,87,88,101,101,92,106,100,92,93,91,90,91,102,94,86,83,94,92,86,95,97,99,95,82,94,90,100,83,101,95,96,96,103,97,87,80,86,90,98,101,95,86,94,94,101,101,84,83,94,89,102,95,97,103,81,99,97,90,105,100,105,110,89,97,115,85,95,88,88,83,98,92,104,103,91,92,84,96,90,84,95,96,92,94,93,98,94,93,92,102,96,99,100,84,93,96,104,93,94,91,84,95,97,81,98,91,93,95,90,93,91,99,99,96,95,99,108,91,83,93,107,89,105,83,90,87,103,88,90,88,108,99,98,92,95,96,107,93,93,93,93,101,84,98,94,105,97,102,114,93,95,94,93,91,92,97,98,98,89,100,102,89,91,100,93,96,101,99,93,91,88,95,99,93,86,94,92,106,93,98,93,94,98,100,98,104,99,92,100,91,95,97,94,87,96,80,90,96,67,98,105,86,91,90,93,94,89,102,90,97,91,87,95,101,98,90,86,94,87,91,96,89,92,97,90,89,96,100,83,93,89,104,95,96,113,97,90,80,106,100,101,88,88,100,86,98,111,106,90,99,101,97,92,93,91,94,94,99,91,99,95,98,75,91,76,105,83,95,90,92,98,93,83,108,95,101,91,103,94,90,91,88,93,89,95,90,90,79,97,95,118,82,94,89,90,84,100,84,99,93,88,108,88,100,88,93,95,95,86,101,98,96,94,90,96,95,86,85,93,95,93,101,96,94,91,76,92,76,92,95,93,102,103,82,88,110,100,87,107,76,108,101,98,105,89,102,87,97,101,94,90,97,97,103,88,83,111,88,99,99,75,95,87,94,92,91,101,102,87,96,95,99,96,96,95,92,124,97,88,105,104,90,91,88,94,96,89,96,92,93,93,105,79,96,88,94,88,86,91,97,93,96,98,93,96,96,108,82,90,112,99,99,105,100,84,91,88,91,90,70,84,93,100,91,87,97,98,100,90,91,95,101,97,94,88,85,92,87,85,83,92,85,95,108,102,84,101,85,89,97,88,98,94,103,73,90,98,97,106,105,98,85,87,101,104,95,87,94,95,96,93,84,108,98,91,84,113,94,91,90,100,96,100,87,96,93,91,111,100,91,99,98,90,98,89,94,93,107,98,101,90,94,89,98,105,110,101,129,110,91,88,96,100,95,85,98,101,116,117,121,102,99,98,94,108,105,94,100,91,89,97,97,92,101,102,96,110,85,113,83,90,86,101,107,89,100,81,95,101,106,104,110,96,102,96,104,96,86,99,95,96,99,107,104,95,94,86,97,114,85,113,114,103,97,102,85,100,96,100,95,102,106,106,70,99,100,95,96,95,83,97,100,96,89,95,99,96,92,125,105,79,100,90,100,98,109,97,105,98,87,104,113,89,88,105,89,89,79,81,100,85,106,107,100,103,98,93,95,86,95,100,97,109,96,98,104,88,106,101,86,95,79,94,94,95,90,83,100,96,102,90,101,105,97,102,97,88,97,106,95,97,96,101,118,100,90,94,84,104,90,94,101,89,88,94,109,89,98,96,100,104,100,90,104,96,121,92,93,98,99,99,85,103,105,106,92,94,83,101,106,94,95,94,96,96,96,103,98,91,93,103,95,79,90,98,80,100,121,86,93,102,94,95,102,96,88,99,86,110,107,94,93,91,102,101,98,111,89,91,100,100,85,83,109,101,96,103,97,95,88,94,86,102,94,124,78,111,101,96,94,92,97,99,96,93,73,105,102,105,97,106,106,113,93,102,109,91,94,101,93,89,101,93,95,83,87,92,100,115,94,97,105,103,101,83,105,96,90,95,99,95,90,105,83,100,76,91,98,105,91,89,95,96,106,88,104,98,88,93,92,97,95,69,109,99,84,92,99,94,98,99,97,91,102,91,105,103,105,102,108,97,93,94,100,89,102,94,105,105,101,100,99,103,104,99,106,102,92,96,82,97,106,103,99,103,90,104,96,104,101,98,93,106,100,98,105,95,98,103,99,91,106,97,91,117,92,99,72,104,99,92,106,87,101,107,84,93,98,113,98,109,115,91,109,100,103,99,98,108,95,95,96,92,99,101,97,100,100,101,98,89,99,107,104,83,105,105,91,89,97,91,100,95,89,109,93,92,91,90,93,95,94,98,101,98,95,103,111,97,95,92,109,98,98,93,94,104,105,94,95,88,112,105,95,97,111,84,91,91,97,89,99,89,94,96,100,95,100,99,101,100,92,113,77,103,94,93,106,117,95,113,101,86,102,101,107,92,104,102,105,93,94,96,99,91,112,103,101,95,106,94,107,104,99,102,87,115,96,104,108,98,76,103,92,96,105,88,92,94,101,105,99,93,95,105,95,113,96,95,99,110,92,112,98,99,83,92,109,88,111,98,103,101,102,98,88,106,101,89,98,100,99,96,102,100,89,113,100,103,97,98,97,99,95,104,108,93,94,103,70,108,109,102,96,104,93,97,93,112,98,87,98,92,97,99,102,85,111,88,97,99,94,89,102,92,99,79,94,107,102,108,113,104,108,101,102,83,98,104,95,112,91,101,99,98,93,77,94,107,95,106,107,103,96,93,103,105,88,102,96,93,96,100,97,99,99,90,100,103,93,93,93,103,98,101,106,101,99,103,91,110,100,90,92,98,99,87,106,98,92,91,95,99,98,100,100,101,92,113,98,84,106,98,94,98,99,101,76,89,89,105,98,91,86,103,110,109,92,94,87,102,96,98,102,109,102,136,117,101,100,88,97,108,104,98,107,88,89,100,93,95,93,91,98,75,105,89,100,99,99,94,91,92,93,102,97,109,87,100,96,95,99,120,100,91,90,95,103,111,81,106,93,89,105,99,97,106,101,122,106,89,104,102,98,97,104,97,99,88,101,95,105,97,93,97,115,110,106,97,102,107,98,98,95,105,99,105,95,90,95,104,96,103,97,104,109,102,94,99,93,107,102,97,90,95,92,94,91,96,97,99,94,109,101,99,97,102,102,103,84,113,96,94,102,105,89,77,91,102,91,94,99,105,88,96,95,107,90,101,107,101,94,95,93,97,98,99,86,108,90,109,95,81,101,115,92,106,100,102,91,115,105,94,98,108,98,102,95,95,94,103,88,86,98,95,97,98,104,110,100,102,96,102,102,85,109,92,108,106,95,98,95,109,100,102,97,94,101,90,94,95,96,108,89,57,87,106,95,96,106,90,90,71,96,96,123,102,103,98,90,106,92,93,95,113,98,101,98,87,98,97,96,92,106,103,98,98,96,101,100,108,93,104,100,108,102,103,111,101,77,98,104,112,94,95,80,106,101,109,99,91,101,80,107,104,97,90,104,109,89,100,103,100,96,110,112,101,98,96,91,100,91,86,112,97,99,99,116,102,92,99,96,105,104,92,93,95,94,104,94,99,98,85,101,100,111,97,101,90,102,107,107,96,108,100,92,112,90,105,92,106,92,88,92,99,98,100,104,102,84,101,103,99,110,99,99,90,98,97,88,100,99,106,107,99,108,102,91,100,100,109,100,94,95,92,102,97,94,94,98,97,92,86,98,102,111,102,140,99,92,97,105,94,104,107,86,88,99,87,103,97,100,97,105,101,108,98,95,100,107,107,92,95,95,88,100,94,91,95,96,97,94,107,95,107,109,111,83,105,97,96,97,112,95,113,116,99,93,101,105,102,92,96,98,91,95,96,93,100,84,102,92,86,93,113,92,79,105,80,105,98,97,100,101,97,96,99,107,91,105,91,94,83,90,96,95,101,116,95,97,109,94,108,83,91,97,106,86,95,109,106,93,105,95,95,100,101,107,100,90,96,95,93,77,100,104,98,100,104,90,119,96,103,85,106,107,106,92,101,94,94,96,96,115,87,99,102,98,102,109,86,100,107,101,97,100,104,99,107,104,90,104,100,108,101,100,98,96,132,97,82,106,109,94,97,101,115,91,106,98,85,102,93,110,94,94,96,94,94,114,88,93,98,95,95,110,82,97,100,99,101,104,97,96,112,94,96,62,97,103,97,90,103,96,88,91,109,94,94,96,97,103,97,94,93,105,98,96,95,100,98,109,100,96,92,112,99,105,96,107,91,84,107,88,92,97,91,104,100,109,136,102,120,87,106,95,99,105,95,93,119,103,104,107,114,93,96,110,94,117,124,110,106,103,103,94,73,102,103,102,103,88,78, +736.31915,88,89,94,97,88,95,103,91,103,102,106,83,100,92,91,99,100,94,105,110,106,114,93,107,102,97,89,110,98,98,103,105,82,88,97,97,90,100,95,79,101,102,100,96,92,99,97,113,93,102,115,110,99,104,105,99,95,91,99,91,104,104,100,91,96,90,87,112,97,89,109,91,79,101,96,113,97,104,100,106,106,102,106,93,114,94,100,102,105,100,94,111,101,94,90,95,94,75,100,98,108,91,93,108,97,92,87,94,103,96,98,95,100,93,92,79,101,99,108,100,100,101,97,98,90,108,93,106,101,87,88,104,101,103,99,98,95,101,88,79,99,100,84,90,104,92,116,91,95,87,99,93,95,84,103,101,95,97,79,87,90,97,99,96,98,100,97,62,102,93,99,98,89,104,107,95,100,94,108,98,99,81,91,102,106,92,92,93,91,94,95,98,114,107,87,95,107,94,106,102,95,98,107,103,98,107,97,95,87,92,109,76,95,104,108,108,95,97,71,110,95,91,79,108,87,96,96,90,93,93,88,100,92,101,95,109,97,100,96,100,105,96,93,94,99,97,99,98,106,95,98,106,92,102,104,96,90,96,100,91,88,111,93,98,91,94,91,94,101,100,100,93,101,97,92,100,96,82,106,107,95,98,90,96,84,81,107,103,93,87,104,109,110,108,92,93,99,93,107,96,95,110,102,103,97,137,99,96,90,104,99,103,91,113,103,108,83,98,87,96,90,111,98,105,108,116,97,102,103,96,93,105,105,96,99,98,115,95,92,101,84,95,89,93,106,102,106,100,100,98,105,103,99,106,97,100,113,102,92,102,99,79,99,88,99,88,99,108,99,107,79,93,97,91,104,89,97,102,87,102,99,95,108,102,95,100,103,102,99,102,97,83,91,99,99,95,87,96,87,89,91,92,96,82,103,98,103,94,93,105,97,86,101,101,110,88,98,103,104,92,84,102,89,87,94,90,96,87,101,102,97,91,87,99,96,99,95,101,96,91,94,93,100,104,90,101,92,94,98,103,87,87,86,82,102,104,82,100,101,91,95,91,101,95,106,95,111,107,99,106,96,99,103,104,98,100,99,104,103,104,92,92,106,91,97,99,106,95,98,96,94,89,109,92,87,101,90,86,87,91,117,103,94,102,104,99,102,81,72,86,102,108,106,110,92,101,91,92,101,100,95,95,106,102,68,95,106,110,105,88,103,90,95,118,74,96,118,95,102,93,68,107,88,95,98,118,93,104,99,95,100,98,109,101,89,98,98,102,97,100,99,106,102,111,94,98,103,106,101,103,98,101,101,75,99,106,90,86,102,98,97,102,113,99,87,99,100,101,101,97,101,104,91,98,94,99,97,104,104,95,87,83,92,95,107,98,100,92,90,96,94,95,104,99,100,98,105,105,95,102,93,106,95,98,99,136,100,107,104,102,104,98,91,104,85,106,107,98,96,108,103,93,97,88,96,91,85,101,99,103,97,112,99,105,87,102,95,102,104,88,97,98,104,107,98,103,96,103,104,100,103,110,101,84,106,104,104,106,101,97,105,102,101,87,86,100,99,93,101,91,98,92,126,105,98,97,95,103,87,95,91,90,100,104,94,101,88,97,83,102,105,92,98,100,91,95,82,97,94,99,112,87,95,102,105,106,108,100,106,105,85,105,105,99,100,105,83,98,107,97,100,99,105,90,92,97,105,89,95,108,105,88,92,96,98,81,97,105,100,116,87,94,84,97,99,105,91,93,95,91,98,90,88,97,91,110,107,109,104,98,98,99,107,103,99,100,72,100,103,98,96,92,108,88,106,99,105,109,124,89,90,101,107,96,99,95,89,99,104,105,116,91,95,89,105,100,86,102,98,95,102,109,100,112,106,94,109,65,105,91,105,91,104,105,89,103,114,114,105,99,104,98,109,94,102,92,103,101,114,84,93,89,94,106,112,111,99,91,110,109,102,97,107,97,97,92,84,105,96,105,94,101,95,110,92,102,105,97,93,88,94,106,98,101,103,103,107,95,96,90,69,95,90,108,102,105,100,103,104,100,73,108,97,111,90,94,99,97,97,101,121,91,108,100,107,97,95,118,106,95,99,101,104,101,92,88,102,102,69,103,97,105,93,76,104,92,94,104,88,98,114,103,96,111,86,105,90,101,100,102,92,109,101,101,114,93,102,106,99,102,92,86,105,89,100,87,103,100,92,110,91,96,105,97,82,97,102,81,102,99,98,102,105,103,93,96,92,101,100,102,94,96,105,93,108,85,95,96,107,101,109,104,99,94,102,98,95,94,86,87,87,102,99,100,88,76,100,97,104,108,109,92,97,93,107,101,100,89,96,84,105,91,94,96,86,80,104,101,101,95,81,111,105,94,105,90,106,90,97,90,95,102,118,102,93,90,103,94,103,88,110,92,96,102,109,99,106,100,90,98,79,100,89,110,97,92,96,104,92,96,105,103,90,103,94,94,102,92,92,103,96,94,101,96,96,103,101,98,100,97,113,93,91,98,92,82,105,111,107,104,91,101,101,100,98,87,89,94,89,103,106,90,93,103,105,89,89,79,102,95,84,91,92,104,94,92,98,99,100,93,76,82,87,108,101,81,69,101,105,91,110,87,106,96,92,110,100,109,99,111,100,94,100,85,98,103,99,94,100,93,119,106,87,102,88,109,89,76,114,111,89,88,109,98,107,113,110,94,100,106,92,101,105,99,78,107,94,101,94,106,104,98,107,96,99,110,99,104,103,102,123,97,93,104,88,99,94,89,100,99,103,99,100,96,94,114,92,99,105,87,93,107,105,113,98,91,105,104,100,112,95,97,97,91,103,102,107,97,93,110,98,101,97,103,98,101,87,100,95,90,96,100,97,98,100,105,91,101,100,104,100,124,101,109,95,59,93,107,91,107,94,117,101,96,103,114,102,98,92,106,91,99,99,105,94,97,102,90,115,99,95,104,111,85,91,104,104,95,91,111,87,94,97,94,101,100,105,104,101,98,99,103,94,108,92,92,92,93,100,92,102,99,98,105,118,87,102,99,90,108,100,104,108,100,96,103,97,107,105,92,99,100,97,97,101,83,87,108,90,100,100,111,103,78,113,101,126,109,100,88,100,95,80,105,103,104,86,91,102,91,98,93,100,88,117,97,94,86,94,102,96,70,105,96,110,98,97,108,111,93,95,115,89,97,83,93,96,96,98,102,102,113,94,90,97,96,91,106,106,101,112,79,96,87,94,85,84,92,109,95,101,109,101,107,102,92,100,90,90,97,108,99,89,110,95,87,91,101,106,105,100,78,93,98,95,92,108,94,118,96,92,91,97,116,96,109,94,90,98,97,93,100,99,101,100,101,88,99,94,101,100,95,89,90,93,102,89,97,95,96,93,103,95,97,104,87,97,118,104,91,84,102,106,97,89,111,102,88,94,100,109,92,109,88,98,88,88,98,113,99,100,100,102,91,103,96,100,89,88,97,100,72,97,108,92,101,99,101,95,70,101,102,104,98,96,104,93,90,96,83,98,100,107,105,111,111,97,97,99,91,93,109,108,118,80,95,96,55,91,96,107,98,91,94,103,96,90,92,102,88,104,91,104,79,92,111,96,108,104,95,107,100,99,104,102,92,105,92,95,107,115,112,131,97,109,92,94,84,87,112,94,101,97,103,92,106,98,94,104,98,99,92,95,97,97,98,96,100,89,97,71,98,87,93,97,98,104,70,88,94,96,98,114,93,100,88,106,94,90,98,99,105,94,92,106,104,96,106,96,98,106,94,92,101,96,90,101,97,99,102,88,97,87,109,97,92,98,87,98,97,108,93,106,100,99,104,88,81,94,99,99,98,103,88,83,113,101,108,93,105,98,100,83,96,95,100,93,97,87,95,93,96,98,92,84,88,106,98,99,109,98,109,88,100,83,87,99,95,102,102,95,83,104,96,83,104,92,94,100,78,103,108,84,103,97,103,92,104,95,109,105,92,95,87,91,93,105,105,91,101,92,105,96,91,112,96,93,100,98,105,96,103,98,98,103,97,101,94,100,91,104,97,86,97,93,89,105,104,75,98,95,104,105,98,106,98,94,90,87,96,112,101,99,102,97,119,84,102,94,110,95,104,89,95,90,97,99,90,100,88,105,73,111,99,105,106,89,99,88,102,106,101,89,90,97,93,100,88,102,87,92,87,105,96,101,109,94,106,98,98,107,95,82,99,99,111,95,102,108,95,100,88,94,96,96,94,98,99,104,106,85,100,99,100,88,110,94,101,93,95,101,107,108,101,101,112,94,88,92,98,98,102,104,106,101,96,102,118,97,105,100,117,97,104,98,92,100,99,103,93,98,87,106,102,84,106,105,108,107,106,93,110,95,98,92,91,95,90,98,99,90,99,104,91,97,102,96,95,102,101,98,100,83,102,90,115,101,95,105,93,106,112,100,94,94,101,89,80,106,102,102,111,103,105,100,89,97,87,100,88,91,94,106,107,108,92,88,98,98,102,97,103,96,76,100,104,99,104,94,105,94,87,97,106,108,108,88,102,98,101,88,118,88,101,106,105,97,98,109,102,93,100,100,102,103,106,104,93,93,102,98,102,103,73,104,109,99,98,94,106,92,101,94,102,120,94,107,105,128,102,96,100,97,95,100,100,109,102,95,101,97,95,90,97,99,100,105,96,100,89,95,92,95,117,94,97,98,93,84,96,109,98,98,99,91,90,91,96,93,97,99,79,104,98,100,94,109,86,106,99,108,90,102,96,97,113,118,106,87,93,98,98,104,100,98,98,102,90,95,101,97,99,91,84,102,107,104,102,100,103,94,94,100,96,90,87,108,109,93,102,90,120,87,107,94,98,98,75,92,86,96,102,94,82,83,60,91,92,101,100,116,92,101,100,104,96,103,97,103,92, +736.46057,103,92,95,99,95,69,93,98,63,97,99,93,102,112,100,102,76,90,108,99,98,92,79,106,87,99,105,97,122,96,101,87,89,89,106,104,125,100,114,95,106,104,101,130,104,101,97,94,89,104,119,91,97,96,99,100,98,95,97,93,109,109,99,87,101,109,97,102,100,101,108,93,93,90,98,94,91,102,100,110,91,101,92,99,96,94,100,84,84,89,98,99,104,94,90,102,98,91,94,94,76,103,67,96,96,99,105,92,92,85,103,93,95,91,95,72,97,109,96,96,95,109,93,83,107,89,117,79,88,112,88,95,97,99,98,105,99,92,90,88,100,107,88,101,111,99,87,96,103,95,103,92,125,89,108,91,94,92,102,99,85,109,103,97,84,85,82,100,99,89,105,100,97,95,97,91,95,98,99,86,95,97,78,94,96,95,92,89,101,87,126,97,101,104,100,107,112,86,92,75,99,85,104,97,110,103,107,94,103,99,112,96,103,71,106,99,84,85,101,97,101,93,94,94,103,92,102,87,96,116,102,100,101,111,105,99,83,94,100,103,79,100,103,95,80,103,98,99,104,88,102,106,88,91,100,103,97,108,121,88,96,92,103,99,97,106,113,91,93,98,94,100,88,108,102,95,102,82,96,100,106,96,94,100,93,100,100,104,81,104,93,95,89,100,112,93,95,93,98,89,89,99,92,109,97,114,108,103,109,101,92,104,97,88,106,96,99,97,90,110,100,101,94,105,86,90,83,85,102,97,100,93,104,90,110,97,76,95,96,84,98,96,86,101,101,99,93,85,101,89,98,100,94,97,98,94,102,101,97,98,95,94,112,87,108,92,109,113,93,114,96,94,107,89,94,99,98,97,93,98,104,106,93,99,90,104,97,101,103,95,116,91,96,100,82,94,93,90,96,91,103,99,93,90,97,100,94,101,93,99,83,97,105,72,99,88,97,76,90,100,94,79,90,101,98,110,74,96,100,109,95,90,97,96,97,103,106,95,93,108,102,96,95,109,97,100,86,91,94,104,97,99,114,98,80,102,101,102,97,101,106,97,101,100,96,103,96,88,70,88,102,92,107,98,102,92,111,103,94,97,91,100,106,103,103,93,99,87,96,96,97,99,100,90,88,93,91,89,105,105,96,105,97,90,104,93,96,88,97,87,100,90,90,91,108,95,92,94,104,96,104,100,104,100,99,84,98,94,96,92,99,99,112,96,97,105,89,96,93,92,106,91,93,95,98,86,118,101,88,99,92,98,95,102,87,111,103,94,95,97,98,98,95,96,82,102,95,96,87,107,92,102,91,110,110,105,95,111,105,95,92,105,94,76,101,96,89,94,86,97,97,105,103,111,98,104,96,103,99,97,70,106,111,68,93,79,108,91,90,96,97,97,105,89,101,93,104,108,88,100,109,101,98,107,97,104,94,83,91,107,74,94,99,107,87,108,97,92,105,93,93,95,101,93,94,90,92,92,97,110,70,97,108,84,84,93,106,93,92,105,106,97,88,93,93,92,94,89,96,100,106,94,89,107,95,96,92,105,110,86,101,103,98,99,116,87,98,102,92,98,103,105,83,128,96,88,94,101,100,106,94,86,76,91,95,92,82,95,92,101,105,76,104,105,102,84,95,95,86,110,100,95,114,98,80,97,92,103,96,98,74,104,85,92,90,93,92,96,100,106,107,87,100,102,101,98,100,104,105,81,100,90,84,97,98,88,101,89,114,95,98,90,87,93,88,113,94,100,101,97,110,87,95,111,70,88,90,104,90,92,101,105,105,101,96,100,96,98,89,91,98,99,92,101,98,110,87,99,88,99,93,101,98,101,103,96,94,109,103,98,105,100,99,90,105,85,104,103,111,96,88,97,101,102,105,108,108,109,94,105,110,101,98,90,90,94,108,102,97,103,94,99,105,105,95,96,95,93,97,99,91,94,96,96,95,94,104,94,87,100,95,99,113,94,92,100,98,100,104,86,94,103,95,97,103,101,104,107,95,100,115,102,100,97,105,89,96,94,105,99,96,99,98,95,104,93,98,88,94,97,102,96,105,102,94,95,109,114,94,105,102,94,99,96,89,106,100,82,100,97,103,99,104,97,93,92,109,88,99,100,110,101,99,98,97,108,101,95,88,109,105,95,101,94,110,83,105,103,91,107,92,99,107,108,99,95,114,111,93,106,102,100,99,98,99,100,92,89,95,107,87,106,111,96,100,98,117,97,94,99,79,95,101,92,84,103,99,75,99,85,100,91,107,87,100,100,79,96,105,101,97,101,97,99,99,95,99,91,91,98,75,99,102,81,97,97,106,111,91,99,108,100,99,91,90,108,120,104,96,108,97,108,103,94,99,95,98,112,109,84,95,110,77,96,111,97,107,82,99,119,86,111,102,91,99,92,92,98,100,104,97,109,101,102,88,95,101,93,90,94,110,103,98,102,108,87,102,99,104,107,86,117,100,96,92,84,104,99,98,67,88,101,101,92,91,88,90,98,105,102,57,95,96,94,93,108,98,92,104,89,78,100,89,113,101,104,94,101,101,101,96,72,95,95,101,100,103,104,118,104,100,95,90,93,103,117,100,102,96,98,104,99,101,95,87,106,93,104,112,64,92,108,101,97,94,103,93,95,87,96,105,93,100,91,100,105,104,97,98,100,93,102,98,91,64,95,100,102,96,106,93,99,105,91,101,110,94,102,100,109,111,97,102,94,99,103,103,105,104,89,105,101,90,98,95,97,102,97,96,93,96,78,101,109,102,90,96,100,92,80,102,87,98,112,101,102,104,89,94,103,95,97,93,102,94,101,109,93,94,87,98,93,97,102,94,88,102,97,90,93,98,101,98,101,100,67,85,99,90,99,101,94,84,95,97,94,100,104,99,105,94,112,94,89,108,94,100,109,99,100,102,100,92,70,99,90,95,93,99,108,91,92,93,100,93,92,102,102,103,97,95,94,77,94,88,90,109,94,102,96,92,103,109,68,93,99,100,85,96,88,97,106,92,92,99,119,99,100,97,107,94,100,97,105,105,98,70,95,88,100,93,102,100,94,104,109,97,93,99,110,94,105,96,96,95,85,104,87,99,100,105,97,101,93,97,89,107,99,88,105,90,93,98,103,88,99,75,96,107,84,105,108,98,98,106,87,92,102,98,93,101,103,107,95,98,92,99,78,94,94,101,100,98,97,117,112,98,91,104,91,90,101,105,94,105,108,95,98,99,96,103,104,86,90,80,104,101,89,100,103,97,97,102,102,105,92,109,90,87,104,98,106,109,95,102,98,105,89,102,85,109,89,92,98,112,80,105,100,101,89,96,67,104,85,92,95,72,97,101,89,97,100,94,85,76,92,101,94,92,98,93,100,99,96,94,93,102,96,101,98,96,106,100,94,98,93,91,98,91,97,109,102,90,104,97,88,98,81,96,98,110,90,108,93,92,91,105,101,90,86,109,105,96,99,93,97,98,95,93,90,105,101,101,104,97,87,90,103,104,105,101,90,97,103,103,110,100,108,94,95,98,97,96,99,66,107,98,96,89,104,94,97,103,100,111,106,100,94,96,101,100,95,94,104,105,100,95,99,98,98,107,87,94,90,103,93,105,103,104,100,90,96,100,96,109,100,83,99,94,95,97,102,109,110,88,107,95,104,95,97,121,92,97,109,94,109,108,110,87,117,117,96,102,104,92,88,90,89,81,83,104,82,100,114,86,95,108,115,102,92,99,103,99,99,97,86,93,93,95,99,83,97,93,98,97,106,109,93,110,98,93,93,102,97,101,92,108,96,100,110,88,104,101,106,99,97,93,93,96,104,98,103,99,92,85,110,101,84,95,96,94,101,99,104,99,91,99,85,113,92,114,97,94,90,97,97,87,94,92,94,98,110,84,103,112,98,104,96,83,96,101,94,110,93,102,98,98,93,110,117,109,98,92,102,93,107,102,104,96,108,92,87,93,93,91,94,100,96,91,94,100,101,112,93,99,93,110,112,98,81,99,97,88,94,102,88,107,105,94,99,99,97,96,110,105,101,103,96,105,106,102,101,94,95,102,102,93,100,91,101,81,100,84,85,94,103,94,95,91,87,98,97,105,95,118,92,103,96,95,91,102,92,86,104,94,105,98,105,98,105,110,93,104,99,106,87,95,89,109,102,92,108,100,88,104,100,104,90,98,93,111,101,93,91,107,87,94,98,100,103,88,102,96,106,83,108,102,94,86,88,101,101,114,101,101,86,96,95,90,108,87,93,96,98,118,92,89,107,104,96,102,99,104,103,101,100,95,84,94,100,90,99,90,92,118,94,95,97,94,102,106,97,94,95,99,96,101,100,108,94,113,76,96,85,100,97,103,96,88,117,91,94,98,98,107,109,105,100,101,91,88,108,97,93,102,108,94,97,104,89,98,84,91,95,87,88,107,96,106,96,120,107,90,106,89,91,93,88,93,112,103,98,93,100,90,91,102,77,100,90,110,85,93,78,99,113,103,86,94,86,96,93,93,92,118,104,104,98,106,107,93,94,101,101,110,109,105,103,103,99,92,104,97,104,88,100,91,102,92,94,95,100,102,92,88,99,103,89,97,102,96,99,105,101,104,104,110,110,103,80,99,112,106,103,105,99,85,103,94,91,111,98,111,105,100,96,92,101,102,98,111,92,94,102,91,104,99,105,94,105,95,87,86,82,99,108,94,93,88,94,96,96,104,98,102,104,92,105,110,105,99,94,86,91,94,95,101,98,99,96,103,91,106,99,89,106,87,103,90,83,98,99,72,109,77,113,112,96,92,113,94,97,95,103,92,101,97,102,109,88,84,99,94,101,114,95,102,79,75,87,102,105,93,102,93,100,108,103,104,95,103,108,85,106,96,83,93,112,97,98,136,107,100,97,96,99,94,93,102,95, +736.60199,100,95,92,94,87,91,99,102,116,92,91,110,104,89,104,100,94,88,97,98,101,79,99,92,74,90,93,103,98,110,98,100,82,89,106,100,93,82,98,88,85,105,117,91,93,101,87,91,96,85,96,89,108,107,99,79,105,96,99,91,97,94,88,85,100,102,96,79,92,93,87,101,82,101,93,90,93,101,103,102,105,75,96,102,96,84,86,107,91,94,104,106,98,80,92,91,95,96,86,109,96,90,87,97,78,100,83,99,95,89,74,102,73,101,92,101,99,105,90,107,94,103,100,95,115,92,87,92,99,75,87,94,105,98,105,93,84,97,88,88,96,114,103,104,97,80,104,90,128,96,96,81,100,93,90,92,99,96,99,87,104,108,118,113,95,99,96,105,101,90,101,96,92,83,97,95,94,83,105,89,106,106,94,96,94,99,91,87,92,98,94,93,91,89,90,99,95,98,108,95,88,68,93,91,104,88,79,87,111,101,90,92,98,95,105,98,88,95,88,84,100,98,101,82,93,99,96,100,93,107,92,91,104,94,85,95,98,109,103,102,89,100,93,104,109,99,90,94,100,91,98,96,90,90,106,107,100,104,92,98,95,106,95,111,104,100,94,97,104,94,96,98,101,103,80,90,105,99,90,95,105,92,98,92,94,100,91,81,87,91,100,93,90,104,105,93,94,91,98,92,87,93,98,108,90,110,99,101,90,75,96,93,111,100,100,99,75,93,87,88,89,90,84,82,106,96,93,79,103,96,96,92,103,101,100,93,87,92,95,92,92,92,100,85,91,95,97,95,89,96,100,99,65,89,91,98,102,98,95,101,90,94,89,85,92,91,95,108,87,96,104,102,101,93,91,97,91,107,108,95,105,124,89,102,99,95,107,93,102,85,109,101,88,106,90,89,102,103,92,96,105,98,82,88,102,99,83,104,98,113,94,99,97,98,100,100,86,99,98,97,100,94,94,97,90,96,84,100,73,99,100,99,91,100,100,91,88,91,98,103,94,101,98,94,99,91,88,90,102,103,91,103,99,94,94,94,103,92,99,101,106,90,115,98,96,94,109,88,104,90,89,94,99,100,96,96,94,102,94,84,96,105,109,66,83,85,89,87,76,96,110,112,96,92,94,95,104,100,104,94,101,96,96,94,104,91,86,95,100,98,69,98,97,103,106,97,99,102,104,89,96,93,95,100,101,92,91,96,89,98,89,86,82,103,99,97,104,89,104,105,98,95,81,101,104,102,101,90,93,99,98,91,92,104,86,95,85,94,82,94,110,91,93,91,98,98,92,100,94,106,83,106,89,95,102,85,93,114,91,95,107,78,91,99,104,93,92,102,86,92,84,103,101,105,96,95,93,107,122,89,92,89,94,93,94,90,101,100,101,86,90,88,100,91,92,112,109,111,92,92,96,94,105,89,92,107,91,105,97,98,97,97,102,89,85,104,94,83,99,86,95,104,92,102,99,82,100,95,97,105,94,95,94,101,91,89,97,93,90,82,106,96,87,91,101,101,95,89,99,91,102,94,90,112,90,98,105,105,131,91,84,96,91,106,99,91,92,96,92,91,98,91,99,97,110,97,99,99,102,97,101,84,93,104,90,99,96,107,95,100,94,89,105,101,98,97,110,84,93,95,95,87,78,92,113,87,118,95,91,91,99,99,81,95,83,97,91,98,99,93,100,97,93,106,95,106,94,100,93,100,98,89,91,88,83,97,96,92,102,98,96,91,85,96,94,98,90,94,96,94,92,89,113,87,100,96,100,89,94,87,91,74,98,99,88,91,98,104,97,102,92,98,95,104,105,95,111,102,97,89,116,88,96,88,121,97,92,101,109,104,107,102,104,104,88,82,77,105,97,107,100,92,99,99,90,93,73,92,98,100,109,77,105,106,99,91,99,102,100,98,91,92,98,91,97,90,101,82,86,76,99,87,77,104,87,100,92,88,101,117,95,102,92,89,101,103,87,100,93,100,99,106,89,125,91,90,91,101,110,105,100,110,102,86,100,99,102,100,97,102,105,94,92,105,95,92,109,102,104,88,100,96,97,92,107,93,96,90,100,100,96,91,98,103,99,92,86,106,90,104,99,92,93,81,90,89,102,102,113,107,93,117,105,107,68,101,90,97,93,98,103,90,100,106,80,96,98,100,100,100,100,97,102,90,105,104,106,108,94,100,86,97,91,98,79,94,89,104,98,98,95,87,105,92,100,94,102,105,97,94,110,101,88,92,97,99,102,91,83,104,100,87,93,101,109,92,101,104,95,95,93,94,91,89,101,103,96,102,85,97,100,102,101,97,98,86,95,101,95,100,92,105,97,102,94,95,97,101,98,97,97,103,105,96,88,97,95,94,97,105,95,100,95,108,88,83,100,93,84,88,89,86,94,87,82,98,97,91,105,99,92,94,103,101,99,102,77,92,107,102,93,109,98,81,91,96,102,88,101,92,101,96,80,103,97,89,100,98,95,111,91,100,98,112,100,94,83,94,99,100,69,102,97,90,92,99,98,111,102,123,91,97,88,109,99,79,88,109,87,112,103,87,98,84,106,93,90,89,109,95,97,107,83,90,94,71,95,129,89,94,99,104,112,93,127,95,109,95,88,75,108,92,116,101,111,95,105,107,95,92,108,94,108,94,109,94,108,105,101,93,101,104,102,94,100,98,86,93,103,98,96,85,87,85,135,105,102,103,102,90,79,98,103,92,92,103,89,96,109,107,91,98,102,108,103,99,105,93,92,96,96,109,117,109,110,103,96,88,92,108,98,95,92,89,96,110,92,106,91,99,90,110,102,92,100,99,90,97,101,104,110,99,106,75,86,100,105,98,110,97,90,102,95,108,102,99,92,101,106,97,105,96,88,99,93,100,92,97,88,105,104,105,99,114,103,93,101,103,99,91,114,87,102,113,90,107,103,105,101,97,92,96,91,97,91,99,93,95,92,99,73,85,98,104,105,100,98,106,97,106,95,106,100,84,97,92,98,103,92,97,110,96,106,108,96,87,106,96,94,95,100,105,91,100,104,100,105,100,95,90,91,108,92,93,91,99,110,101,102,98,85,78,100,92,86,78,105,91,100,102,125,91,114,98,85,92,95,92,92,100,103,101,91,90,95,101,60,107,95,106,81,90,94,102,88,74,105,105,97,98,94,92,106,92,90,108,100,83,97,126,105,97,88,105,99,94,97,98,101,98,83,93,99,98,89,92,88,99,94,105,89,105,98,72,90,103,97,99,99,94,114,107,100,99,107,94,81,89,98,96,101,102,105,113,88,105,94,98,101,99,94,92,105,102,108,98,109,91,104,85,96,92,89,91,96,99,90,98,114,95,82,97,96,102,95,98,101,100,105,102,90,94,100,90,76,94,97,94,95,91,95,96,98,96,89,104,100,98,103,100,87,100,109,107,91,93,96,97,103,100,94,104,95,94,99,93,95,100,106,88,107,105,95,90,87,94,73,99,93,98,94,110,88,92,100,98,92,107,108,85,101,98,135,107,95,99,104,98,104,91,113,76,88,95,80,93,88,101,103,97,105,93,103,98,97,105,96,102,101,105,103,95,100,96,95,92,98,95,86,96,76,97,84,103,99,102,100,110,90,98,86,102,103,103,108,95,105,109,104,97,99,98,106,110,92,91,103,97,99,94,100,99,101,104,91,102,98,98,90,94,102,126,102,113,76,101,97,96,94,89,109,89,106,93,74,92,109,102,93,89,84,96,109,123,99,77,89,89,116,84,97,91,97,99,100,114,105,96,113,91,96,95,113,91,103,100,99,94,102,109,98,121,96,100,94,108,112,101,105,82,99,99,99,98,99,108,90,102,102,107,110,110,113,96,103,104,98,80,108,83,100,91,95,98,105,108,88,103,83,105,97,108,90,101,103,91,98,94,84,115,91,85,108,112,94,104,101,95,100,103,96,101,111,96,92,92,92,100,106,103,91,89,101,106,100,106,104,95,103,95,95,94,108,90,117,102,104,116,95,67,99,98,93,98,102,97,94,98,99,113,103,91,100,104,112,106,105,104,81,110,97,98,93,98,107,102,92,117,107,109,103,104,99,94,103,71,102,98,92,96,89,120,95,102,84,107,100,99,90,102,81,95,74,92,102,86,93,99,112,122,103,95,88,95,105,99,98,97,100,106,97,101,73,88,103,105,94,94,108,87,102,87,91,96,105,125,88,105,117,113,108,94,108,98,84,98,96,92,94,110,101,90,102,97,96,100,88,113,97,95,88,94,102,96,110,94,98,98,96,94,81,98,99,101,108,93,100,94,95,107,106,90,89,99,102,104,94,94,104,111,108,106,91,96,106,97,100,106,94,127,105,72,94,113,101,95,93,95,92,100,99,106,102,95,97,102,105,104,102,97,97,99,108,96,104,97,102,109,115,96,95,104,105,101,98,99,99,92,88,103,102,93,98,106,89,88,102,101,100,109,94,91,95,98,87,86,102,84,83,106,100,101,95,104,101,123,83,76,109,102,74,104,95,100,105,95,83,92,134,90,92,86,99,86,96,101,95,95,93,96,97,105,94,91,104,89,102,86,103,98,94,101,97,95,87,105,96,107,93,90,104,113,97,114,99,91,95,94,87,81,97,99,100,107,90,104,100,107,103,99,101,101,108,108,100,106,106,106,110,102,93,96,95,84,98,92,99,96,103,90,105,105,95,86,107,94,109,83,92,97,106,109,100,95,117,97,99,112,100,93,102,100,88,91,89,103,104,89,103,105,101,96,96,101,80,98,94,101,105,106,89,103,109,113,103,102,106,97,68,93,94,81,99,98,103,112,104,116,106,90,109,121,90,90,107,96,96,105,95,107,113,104,102,111,90,103,96,84,110,98,91,101,103,104,116,86,101,100,95,100,125,104,97,102,109,88,102,99,106,106, +736.74341,108,86,104,96,85,100,88,98,95,93,100,105,102,86,87,103,77,118,94,95,95,81,83,102,99,99,99,71,106,99,96,115,107,104,102,95,101,90,106,88,95,106,104,86,98,99,100,95,97,94,88,100,96,94,100,75,93,115,104,91,99,101,103,108,96,103,92,99,91,99,90,96,92,103,105,106,107,101,106,107,100,92,91,96,97,105,97,110,113,93,94,92,91,106,102,101,107,104,94,122,117,85,93,105,105,100,84,110,110,96,92,92,109,68,99,100,95,104,93,98,107,100,100,97,84,103,95,93,102,105,93,92,95,107,99,95,100,102,101,105,101,95,82,100,93,87,103,97,89,104,100,94,101,84,93,99,89,97,107,92,85,97,101,100,110,103,94,94,93,100,104,87,84,80,91,108,99,93,97,95,83,104,98,106,101,97,98,96,107,95,83,100,84,98,95,100,87,102,111,96,95,96,94,95,106,87,100,95,104,84,95,101,97,103,105,91,101,95,95,101,97,108,91,98,93,106,95,87,106,110,94,86,92,89,83,92,99,99,98,92,101,98,108,95,94,93,94,96,103,102,94,106,101,87,95,108,100,107,93,91,87,87,100,88,93,90,96,100,88,106,98,97,101,102,98,100,93,99,97,86,97,114,98,101,96,93,94,122,104,94,103,92,108,137,102,103,124,83,94,105,99,93,101,97,92,98,90,97,96,104,87,98,100,101,86,82,93,92,99,101,98,104,102,101,102,86,96,84,101,88,91,95,98,97,110,92,98,103,94,97,86,101,102,99,95,104,100,88,105,105,102,98,117,92,87,102,102,100,88,87,85,98,114,76,85,98,99,100,92,95,89,90,107,107,75,101,103,95,76,102,126,94,92,91,83,114,91,88,115,99,98,88,98,95,102,95,101,85,87,96,89,100,96,83,108,91,93,92,100,89,92,96,105,105,104,81,88,102,94,118,86,96,91,100,86,98,98,87,90,96,107,79,89,74,101,105,99,100,95,91,87,98,96,92,104,98,102,88,90,110,97,84,101,98,93,94,92,98,95,96,106,97,103,93,103,107,94,78,102,97,98,106,105,98,94,101,101,104,102,100,107,86,97,104,101,100,96,95,114,101,101,88,95,102,95,83,95,99,97,96,90,96,100,98,87,95,93,90,99,104,87,102,101,97,99,93,90,94,95,90,103,90,102,93,96,101,107,102,98,99,93,104,98,83,104,92,96,102,92,94,98,105,95,96,106,98,101,89,93,85,101,94,100,94,104,100,76,110,91,97,94,95,92,86,91,90,96,91,100,87,89,91,101,95,98,91,85,94,91,97,102,104,91,94,99,94,97,106,94,92,92,92,96,96,94,94,94,97,88,99,94,90,93,105,91,116,91,87,91,79,68,84,101,92,101,100,106,94,87,91,101,93,105,103,92,94,95,100,92,104,79,95,99,93,85,90,89,94,92,96,99,99,93,100,87,90,109,102,96,95,93,96,89,86,98,95,90,100,91,96,90,100,97,99,99,98,95,87,106,90,102,90,100,104,99,95,98,93,97,91,69,100,99,100,94,96,86,94,87,86,103,91,91,106,95,98,87,100,99,102,101,106,105,96,91,78,106,104,94,95,88,82,98,88,98,110,92,96,99,97,90,88,90,106,102,99,91,104,98,109,95,102,87,86,102,95,114,85,102,97,99,92,106,105,99,102,93,114,111,100,97,95,94,109,85,94,96,96,102,100,98,99,97,91,93,96,83,95,85,92,98,89,104,96,69,87,87,89,98,102,104,108,105,100,89,110,95,94,95,95,102,95,98,96,97,109,100,103,90,108,95,93,94,92,100,98,102,104,77,106,108,93,98,95,101,101,106,89,100,94,103,96,95,103,89,87,90,97,82,81,97,88,103,94,91,103,94,98,97,97,94,95,97,100,100,95,96,96,96,101,88,95,103,91,96,102,97,98,93,106,97,92,93,93,89,99,97,103,106,98,101,107,92,108,100,88,90,93,91,98,108,94,99,97,96,77,99,94,96,104,98,111,98,108,78,92,94,99,105,108,110,85,89,102,133,103,92,98,94,100,90,94,87,102,92,98,121,90,86,100,93,96,102,104,93,94,92,99,88,98,95,96,105,97,88,79,97,105,94,100,103,92,96,94,101,96,112,100,99,88,97,104,95,93,96,91,94,97,97,98,98,82,100,98,104,93,105,81,99,99,99,91,104,107,94,101,97,101,87,85,84,96,94,91,78,101,87,100,112,104,127,92,88,92,94,71,100,67,84,99,92,96,99,97,92,96,103,96,101,87,87,108,109,95,105,100,105,97,92,99,91,102,93,88,102,95,102,95,95,98,95,122,85,110,84,88,103,101,104,77,97,106,87,110,80,103,101,107,95,86,63,101,98,101,104,87,86,91,98,91,108,113,97,99,102,105,91,95,97,98,89,100,110,97,98,88,95,92,106,99,108,102,110,94,109,90,98,89,103,90,110,108,97,97,103,101,104,109,111,95,97,80,94,105,96,103,106,97,103,96,101,98,102,101,100,103,98,116,89,99,110,107,107,100,107,98,109,101,92,94,117,104,94,92,97,101,106,84,82,98,106,100,96,107,86,65,91,95,99,98,101,94,99,92,98,112,99,96,99,98,101,87,113,89,90,100,94,99,102,87,99,87,91,100,72,91,91,91,97,94,99,108,89,106,100,107,102,98,109,101,94,99,93,120,85,108,101,92,106,95,100,93,105,86,96,99,97,100,93,91,93,89,101,101,103,112,109,106,96,101,103,104,94,95,109,118,102,103,104,100,85,100,96,98,106,85,101,87,99,95,98,95,111,90,98,100,94,119,108,114,83,97,102,101,112,105,102,101,70,97,93,101,107,89,91,106,95,106,85,109,95,95,101,99,106,97,94,90,97,97,107,109,97,110,112,94,96,95,108,109,99,100,96,98,91,113,91,86,93,112,104,93,91,102,78,87,119,117,91,101,101,97,96,89,108,108,91,99,93,94,92,111,102,120,104,98,104,99,84,109,94,98,96,100,105,106,103,104,86,103,92,91,99,101,98,93,91,103,111,102,87,112,90,94,107,98,103,98,89,91,84,108,96,87,100,98,97,103,104,97,97,100,97,107,110,101,90,106,90,105,100,95,109,95,107,102,98,113,94,102,97,101,105,103,90,116,99,124,87,94,96,94,97,95,108,88,109,100,98,108,96,93,92,94,96,96,96,97,108,102,101,91,82,109,107,109,95,95,106,100,112,99,102,101,109,105,96,100,95,94,101,91,105,96,83,97,85,96,97,98,93,83,101,102,100,100,97,98,116,99,89,102,90,102,93,100,73,80,99,89,100,98,105,103,92,101,92,102,109,105,99,113,97,93,108,87,90,93,93,89,101,102,103,106,94,92,96,102,106,99,88,106,100,68,116,93,110,98,117,98,99,94,95,100,90,91,104,89,98,109,97,101,106,103,81,97,112,91,99,90,104,96,93,91,88,106,98,108,99,92,89,101,99,115,105,95,91,92,91,95,109,99,102,103,99,105,98,97,98,98,91,103,100,109,79,102,110,102,105,100,102,99,75,110,97,102,84,107,94,118,97,100,98,105,115,104,97,96,86,97,86,93,100,113,97,94,102,105,94,100,100,102,101,102,97,89,103,94,87,100,94,106,100,95,83,88,99,94,102,97,97,106,94,98,106,98,77,92,105,96,117,93,99,95,100,89,110,101,90,93,108,104,99,95,100,98,81,95,89,96,83,88,73,94,103,94,105,100,100,105,103,99,98,96,99,93,102,93,101,88,102,114,97,88,92,88,92,95,89,98,113,96,104,98,99,121,107,71,99,106,97,96,92,102,101,99,108,94,108,93,93,99,94,98,100,92,88,97,97,98,75,102,85,92,92,102,106,94,94,91,84,98,83,100,98,94,95,96,102,101,105,95,108,95,99,104,102,98,102,84,109,103,70,111,104,83,90,102,96,100,98,92,92,100,97,100,99,88,87,95,101,91,94,110,98,98,86,89,97,92,105,99,91,91,93,104,97,101,112,98,103,108,95,100,99,92,68,102,103,97,87,114,100,87,105,97,98,104,115,100,125,99,101,92,103,108,94,104,69,99,95,106,88,95,106,122,87,89,110,96,104,80,94,101,103,104,93,91,105,95,109,98,94,96,87,98,110,97,87,92,97,115,111,99,104,102,105,98,91,105,102,109,105,80,103,103,101,102,88,101,107,103,91,93,85,101,97,99,100,98,88,96,95,90,92,104,94,92,101,98,99,92,99,96,99,94,108,97,93,98,90,84,112,94,95,94,100,96,102,102,98,100,95,93,97,90,85,91,91,105,105,84,94,87,110,84,103,94,100,120,106,105,106,95,98,101,109,95,85,83,98,109,111,106,94,106,102,111,110,92,90,97,108,92,109,109,92,91,99,109,108,93,101,99,99,92,88,101,103,92,100,99,80,101,100,92,98,94,120,96,94,94,107,104,128,90,96,92,94,89,94,92,96,121,80,105,91,105,106,69,92,109,92,104,98,97,85,101,89,104,116,99,91,97,94,106,112,82,97,102,88,98,101,94,106,105,100,99,92,109,90,96,92,93,95,109,107,99,96,104,92,103,102,107,111,99,95,92,95,88,120,103,97,82,99,98,113,99,122,102,97,94,91,111,108,71,92,107,99,97,104,96,82,105,111,92,101,100,92,97,102,95,107,87,102,113,106,108,91,99,80,94,82,99,97,92,105,99,104,95,96,107,98,108,95,91,103,97,93,103,101,116,114,98,90,75,95,90,102,98,106,104,108,105,98,104,126,95,89,101,86,97,83,96,103,111,109,118,102,92,101,99,103,115,95,102,83,96,98,88,107,91,99,98,120,94,88,103,108,102,94,112,101,114,106,96,106,99,95,100, +736.88483,94,92,97,93,107,92,100,87,103,84,98,89,84,71,93,92,92,73,90,89,98,100,109,94,95,107,109,88,97,119,95,92,102,85,98,95,96,74,98,108,97,111,97,92,105,100,97,99,97,104,98,99,97,105,99,93,104,95,74,79,89,98,114,70,103,95,92,90,98,97,109,91,89,105,85,118,98,105,88,85,109,95,112,101,106,86,85,102,90,91,107,95,97,91,92,97,87,79,88,87,92,107,99,66,94,97,88,105,95,90,100,95,106,98,111,90,90,102,102,90,86,91,106,115,115,110,101,93,102,99,97,89,86,93,114,92,110,102,103,89,97,97,94,92,87,81,112,85,89,93,97,103,102,106,104,98,92,97,124,109,89,92,98,100,95,93,93,83,99,87,86,99,96,100,99,96,100,89,116,92,102,101,98,90,96,80,98,83,86,93,83,95,99,98,105,100,83,94,97,87,104,92,117,94,101,94,97,99,114,103,103,100,103,96,100,91,100,98,97,86,88,101,93,105,94,104,102,91,108,101,85,105,112,100,93,96,92,102,94,80,95,94,102,107,112,87,92,91,109,95,102,95,97,102,99,114,106,101,99,95,90,110,104,102,91,102,86,107,101,92,97,124,76,101,101,111,79,96,105,102,110,107,93,90,99,95,92,87,100,101,97,96,109,91,97,94,90,98,106,117,78,78,106,95,97,125,93,73,87,98,88,103,105,109,95,90,94,96,108,92,114,87,89,113,103,105,100,89,104,106,93,97,105,80,101,95,104,84,101,95,91,96,83,112,96,103,86,103,94,100,97,99,98,103,92,107,106,101,90,95,102,98,92,89,88,92,93,102,98,96,93,102,94,92,98,98,108,91,108,98,104,83,95,95,94,104,101,90,103,98,98,90,102,101,91,96,94,106,88,89,104,96,95,90,94,77,92,90,99,98,108,89,94,102,97,91,103,88,88,93,88,99,100,83,101,99,103,92,104,93,106,95,106,85,100,97,90,97,90,101,110,116,100,95,94,97,85,90,92,83,95,105,96,96,61,89,91,92,100,69,88,84,95,103,108,100,91,86,91,92,100,95,99,105,95,85,79,88,91,88,89,108,111,88,95,100,82,82,93,107,92,95,88,101,96,92,96,106,91,93,99,91,83,95,90,93,99,99,105,90,102,87,96,105,91,99,105,88,85,87,89,104,109,107,86,104,96,115,97,93,95,96,104,98,98,96,97,97,91,94,100,97,93,96,100,88,96,104,100,99,95,102,99,97,107,90,89,92,91,106,112,91,101,90,94,90,95,100,97,109,92,86,85,100,83,106,95,90,105,98,99,100,97,97,89,97,84,94,101,108,71,97,85,100,113,91,95,107,97,94,95,89,94,91,97,94,90,101,99,107,103,104,114,118,101,89,106,85,104,94,83,100,90,90,105,98,93,105,92,102,92,106,95,101,83,102,92,93,102,90,105,104,97,97,93,86,85,93,92,100,86,92,93,115,89,101,110,99,103,63,109,101,106,101,93,97,96,91,101,94,97,81,88,97,94,99,78,107,97,95,105,100,105,87,89,95,94,96,87,98,92,92,101,100,101,106,98,82,92,96,101,86,100,100,94,102,113,105,109,101,99,95,94,97,82,95,100,88,101,101,122,83,90,114,94,78,90,102,87,112,75,93,90,82,90,103,89,87,95,100,99,97,95,94,106,93,90,104,97,99,100,97,94,107,101,105,87,99,100,88,102,79,83,89,99,98,82,101,90,101,109,104,114,96,101,87,102,96,94,103,104,110,107,88,97,77,96,95,104,97,105,107,95,102,87,97,89,96,114,124,96,110,94,98,92,102,99,91,105,102,88,113,93,82,96,88,113,103,86,98,90,104,80,100,113,95,105,92,93,97,101,95,100,113,95,103,96,113,112,94,100,96,93,92,113,91,84,93,96,102,95,87,94,101,83,87,93,107,101,89,107,93,96,93,85,94,92,100,111,104,83,102,100,99,98,84,103,82,97,99,100,105,99,106,78,97,104,104,99,96,104,93,100,113,107,94,92,95,98,109,120,101,97,98,106,101,97,84,98,94,99,96,108,103,96,100,104,100,97,106,103,81,103,92,92,109,95,94,96,95,97,103,93,95,94,94,94,91,96,83,97,109,99,91,92,103,99,99,82,91,79,103,105,108,103,99,95,98,92,76,93,105,98,96,105,97,102,100,75,91,98,87,85,87,96,95,92,86,96,102,80,98,90,99,87,115,102,100,94,94,101,87,85,96,83,97,91,99,102,91,106,97,97,94,98,92,92,83,99,96,87,87,91,90,102,94,104,96,106,92,118,107,91,97,109,91,88,98,101,110,92,93,100,86,102,101,94,97,96,89,95,97,91,92,97,79,95,92,83,105,100,92,108,101,97,93,85,96,97,102,96,102,102,103,86,99,113,81,100,100,100,98,96,93,96,124,106,97,89,105,90,101,90,106,98,101,102,79,102,106,106,102,102,82,97,101,95,99,102,101,98,98,87,96,91,100,98,102,103,87,106,98,121,93,118,89,84,106,91,95,86,105,100,98,116,122,89,90,102,106,94,106,96,80,109,100,98,87,97,83,93,93,85,100,93,93,99,96,106,98,97,96,98,107,92,111,108,87,90,93,95,83,104,94,98,91,96,97,66,93,89,91,97,105,97,91,88,98,101,100,98,93,96,111,105,97,108,101,89,96,97,96,91,98,89,87,84,95,101,78,102,109,105,93,95,91,108,110,105,88,91,97,100,110,107,99,104,108,101,103,97,104,91,100,94,92,95,94,96,97,91,103,93,83,111,103,90,92,106,112,101,83,108,90,101,93,102,93,96,94,88,97,99,116,94,98,90,90,85,103,101,96,106,105,103,96,93,92,98,107,97,92,87,103,99,92,88,96,81,99,82,90,101,90,103,99,91,93,99,97,109,98,86,92,95,92,105,101,100,92,101,93,87,92,89,80,117,99,58,100,96,99,102,103,94,73,100,96,94,64,95,96,85,107,100,83,124,101,108,92,104,98,97,106,94,94,91,91,95,92,91,105,91,92,99,103,99,97,105,100,89,111,98,100,87,110,88,95,88,81,110,102,96,100,103,90,103,98,90,91,97,100,88,113,102,102,95,104,84,94,92,91,99,100,89,83,99,84,101,87,86,88,96,97,92,94,97,98,99,101,112,84,92,88,97,94,100,104,89,94,84,104,102,90,116,110,92,92,96,89,108,100,78,91,101,106,86,102,103,93,101,103,94,94,91,82,94,109,86,89,96,102,97,94,92,106,93,104,100,100,84,93,105,102,93,98,95,92,99,87,102,91,87,93,101,80,80,109,96,79,93,100,100,96,108,93,108,87,105,85,112,100,105,97,101,94,80,75,99,101,107,93,96,92,105,97,91,100,80,94,89,101,100,100,91,96,102,67,97,93,91,96,96,85,99,82,103,93,102,86,102,110,84,92,98,96,105,96,87,104,108,95,94,93,90,115,98,107,104,110,93,100,92,98,100,93,94,104,98,94,109,103,88,91,91,99,99,97,89,111,98,96,89,93,99,100,99,97,96,109,111,89,99,108,92,101,100,100,92,101,108,103,96,96,97,100,92,96,106,91,94,110,88,100,72,93,99,86,99,96,99,91,100,88,98,89,93,100,92,103,94,102,84,110,90,100,83,99,94,86,101,106,89,100,90,102,97,108,96,99,98,112,95,95,107,96,111,100,90,98,90,88,94,99,94,87,94,69,97,91,103,97,93,80,90,103,104,108,104,109,93,101,90,87,95,91,97,95,91,95,90,101,105,92,103,107,95,107,103,96,107,98,101,101,89,101,87,100,106,98,84,92,91,66,86,102,107,96,87,102,94,97,104,111,87,95,114,102,97,105,93,98,87,98,91,107,101,108,86,101,109,94,85,94,99,94,109,86,101,96,103,87,94,87,86,101,89,101,87,101,87,94,99,98,97,104,101,78,92,98,124,89,96,83,98,99,97,101,91,94,91,115,92,84,95,84,90,102,96,93,105,108,94,102,98,93,98,102,97,101,96,102,91,102,100,100,103,88,98,98,92,98,118,106,92,93,97,104,86,95,101,112,84,110,101,98,88,95,103,91,99,104,94,85,98,104,93,96,100,92,93,95,65,98,99,96,98,102,109,103,100,100,93,74,103,99,102,106,101,101,103,101,112,96,98,93,92,92,110,95,93,94,103,97,99,98,106,88,90,110,101,95,85,106,99,105,105,106,95,84,80,96,102,102,96,109,92,98,94,90,98,103,94,102,100,89,96,109,94,101,97,111,99,100,101,98,94,95,101,99,103,92,91,87,82,89,92,91,105,95,87,106,105,96,93,83,95,102,97,103,100,91,100,95,96,106,97,99,98,76,95,108,101,108,101,94,99,118,102,85,95,97,90,96,100,97,88,82,96,89,102,110,64,96,95,82,90,92,115,88,92,102,106,91,84,97,101,93,106,100,104,83,92,99,97,95,94,99,91,91,102,92,78,101,85,95,96,91,84,84,91,100,84,104,90,114,95,107,104,104,89,93,97,96,112,105,96,102,105,86,76,102,114,88,88,77,100,96,113,85,94,98,121,105,98,96,94,96,111,88,91,119,121,89,104,115,106,91,76,109,91,88,100,96,83,84,106,97,101,80,94,100,109,93,91,100,103,88,75,101,97,92,105,94,101,104,85,91,91,91,95,107,101,116,103,99,104,84,90,85,113,100,80,109,94,98,101,104,102,97,106,78,99,107,101,98,69,97,97,96,97,90,68,105,115,109,102,101,89,105,97,107,99,99,88,95,90,102,103,89,100,103,99,115,87,97,95,99,102,97,126,109,104,109,94,106,87,110,109,91,104,97,101,94,104,91,95,104,102,92,93,96,95,94,93,101,64,87,98,91, +737.02618,90,111,91,98,97,97,101,96,102,95,93,95,93,85,100,98,89,90,102,62,114,89,96,102,112,99,98,104,112,74,101,112,110,85,117,102,93,90,110,94,105,105,95,97,103,101,100,97,90,101,102,100,100,108,103,96,85,98,103,97,87,106,92,80,84,110,107,92,89,102,104,96,74,90,94,106,88,99,92,98,101,106,96,97,92,100,92,96,92,102,92,95,101,101,97,94,98,97,101,96,97,102,81,89,91,95,101,98,93,94,97,92,118,101,87,96,90,71,90,96,95,110,93,95,96,113,90,88,101,98,98,99,82,99,94,101,91,109,78,104,91,100,95,96,91,117,102,107,95,94,94,104,97,96,102,83,96,88,103,85,83,110,106,96,92,100,111,97,90,108,87,109,96,91,107,91,118,95,91,110,100,92,95,86,105,87,100,92,97,107,99,106,84,101,108,96,99,103,109,93,98,95,96,95,100,99,88,103,105,100,95,109,89,106,101,106,92,99,87,94,86,106,70,93,97,121,96,92,99,95,99,102,108,86,96,95,98,101,106,105,85,92,106,95,87,98,93,101,101,101,92,101,84,95,95,98,89,95,92,93,112,109,92,112,93,97,104,94,92,83,91,97,92,94,91,95,97,80,94,104,99,90,93,95,91,99,110,105,101,98,86,95,92,103,99,99,95,90,91,82,112,106,116,106,86,95,101,105,92,99,100,97,85,93,111,86,97,120,92,89,98,99,96,100,104,99,94,89,94,96,99,94,103,77,83,101,97,89,88,96,99,105,88,97,100,98,99,104,102,91,95,97,99,99,84,97,94,91,99,93,100,101,104,94,88,94,110,103,72,104,99,92,96,90,100,93,98,96,99,104,100,103,97,101,94,96,100,99,97,110,106,86,104,100,78,96,93,75,95,108,96,108,92,83,89,94,93,100,98,82,89,62,94,95,87,93,99,87,102,105,90,83,90,101,90,93,107,91,106,115,96,91,76,93,91,112,90,108,94,98,92,96,96,96,107,98,93,111,103,103,106,86,100,104,94,91,95,89,105,103,91,83,105,99,107,105,98,91,87,97,106,84,104,102,91,100,94,73,92,94,99,99,94,90,97,97,101,106,101,96,84,96,94,101,75,108,84,94,100,98,98,90,102,94,94,102,99,91,102,95,94,98,93,112,94,92,94,106,101,97,86,90,95,106,106,92,99,93,95,90,96,97,97,100,106,101,86,96,95,99,86,93,101,103,87,85,101,95,110,113,97,107,95,90,103,85,100,63,106,100,97,100,97,99,104,98,101,86,97,101,100,87,91,98,109,95,75,88,92,109,92,96,99,101,98,92,111,101,78,94,102,96,90,99,108,89,83,100,87,90,86,98,99,86,84,82,86,91,103,104,109,83,114,116,109,98,95,89,95,97,108,102,87,92,96,95,102,97,91,87,90,105,96,91,101,92,91,90,94,101,91,96,91,98,91,70,87,87,104,104,89,93,85,91,101,76,104,101,97,89,96,111,82,89,87,104,87,104,92,104,99,91,102,100,82,99,100,100,100,90,106,89,97,85,98,95,90,104,92,96,117,98,115,100,92,96,97,104,92,94,93,90,99,97,74,99,101,99,88,102,102,78,92,85,81,95,92,97,97,102,102,91,102,94,98,95,80,106,104,109,98,105,110,83,92,100,112,110,91,93,109,100,94,96,95,100,110,83,98,110,106,96,102,104,109,91,101,106,91,98,93,102,97,97,96,98,83,97,97,86,104,95,105,91,91,93,92,101,132,103,88,97,107,85,105,103,103,101,93,95,100,107,94,110,99,100,103,98,99,88,90,105,97,104,98,110,86,89,93,93,102,101,95,90,99,86,114,96,93,95,97,96,112,107,94,89,100,91,94,94,93,107,104,104,92,84,88,102,91,110,94,93,99,97,98,79,96,100,103,98,96,95,85,118,85,102,104,103,86,98,98,94,80,89,112,94,98,95,97,102,107,99,99,102,113,110,106,94,93,86,92,98,102,97,101,104,76,105,97,77,121,98,111,99,106,106,103,98,109,110,95,96,95,97,95,111,96,91,110,100,102,124,97,74,88,85,97,106,98,98,91,74,100,105,106,95,89,88,108,94,92,117,85,97,88,87,89,90,97,101,107,96,96,102,105,99,89,104,110,98,97,94,109,100,99,95,94,107,123,108,93,113,90,97,101,95,100,95,93,87,90,96,97,99,90,98,95,98,99,104,101,105,100,101,93,104,90,91,96,101,95,101,104,99,90,96,93,99,98,97,91,90,87,113,101,91,102,94,86,106,92,110,101,99,102,97,94,91,93,90,101,97,100,93,96,92,111,91,99,100,97,96,119,97,91,92,82,106,108,101,101,94,94,63,97,115,103,99,88,91,91,97,95,92,94,105,81,103,105,88,84,114,94,102,70,108,92,103,89,92,105,96,97,92,96,97,90,88,88,96,92,75,90,91,109,91,92,94,106,101,94,102,83,104,93,91,102,100,103,84,100,98,102,88,104,104,96,105,102,105,98,110,88,101,103,100,87,87,99,105,88,102,109,96,93,105,105,96,90,102,97,102,113,83,93,96,101,102,95,96,108,101,97,96,100,95,99,81,108,81,94,93,106,108,95,99,97,110,101,101,103,90,112,98,91,109,83,97,110,102,101,109,101,93,89,100,99,116,118,94,101,101,109,97,101,76,111,108,96,115,93,95,104,84,103,89,105,99,102,98,98,109,101,97,97,103,90,88,112,113,100,95,98,118,129,102,89,98,97,97,92,107,95,101,90,93,103,95,95,110,100,92,99,104,100,113,102,96,97,124,108,100,103,104,100,102,96,103,107,98,105,94,97,95,95,96,110,117,96,98,98,106,93,104,103,103,95,106,98,89,83,94,122,98,102,113,96,98,99,97,104,106,87,86,104,97,99,105,95,98,104,85,101,102,102,103,108,94,103,101,106,100,97,105,90,108,97,104,88,112,88,109,94,91,101,103,98,97,98,108,75,104,107,106,100,93,83,101,104,91,94,91,97,105,110,97,94,95,94,99,120,91,107,94,96,104,101,87,103,99,95,90,98,102,101,110,97,105,101,98,109,95,98,84,105,99,111,91,92,101,108,102,113,107,99,120,100,104,98,100,112,117,81,103,94,107,93,98,96,109,101,98,105,91,96,95,112,88,109,106,105,96,94,125,104,112,98,109,102,110,102,105,100,112,95,110,91,97,95,101,117,98,98,91,95,102,108,99,129,99,106,105,99,106,95,85,86,104,102,101,97,101,112,93,110,106,95,111,94,96,92,111,109,104,103,95,124,104,107,90,100,92,105,80,87,100,102,81,112,91,109,105,106,99,104,95,108,105,87,111,96,101,99,100,110,90,92,103,94,97,98,87,95,97,94,95,95,105,92,105,92,100,94,101,100,98,107,90,101,102,100,96,97,88,94,92,105,105,97,100,76,95,104,93,104,103,101,81,107,95,87,83,98,96,91,99,98,99,104,105,97,98,93,114,107,89,109,96,95,101,106,101,129,90,91,92,96,109,94,97,97,120,84,102,95,98,94,97,99,99,105,90,109,88,101,107,101,99,100,106,94,100,107,92,99,91,88,101,115,102,96,91,92,95,98,105,107,108,100,106,94,92,99,104,116,100,104,104,102,102,97,98,100,111,87,113,93,101,94,102,85,105,99,81,89,96,102,102,86,99,103,105,105,105,93,79,110,97,107,99,102,106,110,99,111,100,108,97,104,97,110,97,99,92,100,90,97,95,103,106,107,87,100,92,86,122,102,107,98,99,95,93,105,97,106,107,106,100,92,101,98,97,104,99,100,108,100,91,106,107,103,101,92,105,98,98,109,101,91,90,99,101,98,104,100,100,105,91,109,103,96,94,92,109,94,98,101,98,88,91,91,95,101,109,106,94,117,101,96,99,99,90,107,102,98,112,102,95,109,91,96,100,105,102,93,101,79,95,92,103,98,96,99,98,102,96,99,101,96,101,89,98,90,96,101,91,91,105,106,95,99,104,100,100,105,102,106,119,91,109,107,104,90,81,102,113,92,93,98,95,93,108,101,102,87,100,95,102,101,110,112,97,95,92,97,104,93,98,104,103,96,92,109,102,96,110,91,94,105,98,83,99,86,105,104,95,100,102,106,109,108,99,94,124,92,121,103,107,99,93,103,100,92,104,100,96,85,103,102,111,95,97,91,97,103,113,119,103,97,95,108,98,95,96,88,89,108,125,102,65,88,91,104,101,93,76,97,102,100,103,99,90,90,90,90,105,104,98,94,91,101,106,105,105,99,91,96,92,97,99,93,82,113,108,98,102,99,90,110,108,103,108,99,64,101,95,105,90,106,97,96,101,111,92,96,89,116,113,110,101,93,99,100,107,104,110,99,107,115,96,88,89,121,99,91,104,100,93,97,99,110,107,94,58,111,103,94,100,84,93,107,106,108,111,81,102,104,97,92,96,93,94,105,96,112,104,99,94,111,99,109,76,100,109,96,102,103,96,96,91,88,106,91,94,94,102,103,109,115,104,92,93,91,104,106,91,112,97,112,95,94,106,119,108,98,95,89,94,91,93,84,94,96,93,102,94,97,109,99,106,88,102,104,110,106,104,102,105,107,97,100,87,112,96,55,98,100,112,99,97,85,113,111,105,113,98,113,91,104,83,98,106,106,100,102,102,94,88,92,98,100,110,95,102,116,95,87,89,90,105,91,92,99,114,99,93,102,100,102,112,106,101,102,99,108,104,101,107,114,97,91,96,110,106,107,112,110,101,91,107,95,94,95,94,92,104,96,100,109,105,99,101,88,102,98,112,102,106,97,93,100,107,84,106,94,100,97,93,106,99,99,93,87,92,93,99,96,99,106,97,119,106,109,108,104,112,110,88,96,106, +737.1676,101,102,96,89,88,106,86,104,104,99,99,95,98,96,97,92,102,95,90,109,110,102,97,98,91,112,103,93,101,103,96,97,98,103,117,87,98,110,118,103,96,92,92,91,108,110,104,104,96,110,98,92,97,101,97,100,91,104,125,97,93,106,106,82,85,91,94,110,97,97,101,101,80,103,97,102,106,100,105,96,96,104,99,107,94,98,88,90,90,95,96,96,100,93,95,105,92,97,94,96,94,103,92,95,101,96,94,93,97,86,94,96,110,101,92,102,94,99,110,98,103,112,111,105,108,94,101,100,91,108,100,92,94,96,98,110,87,99,92,100,89,100,99,103,101,95,95,104,92,105,105,92,97,102,115,99,105,96,90,92,107,101,102,97,100,92,97,88,103,92,95,100,103,94,96,87,103,100,102,101,91,93,105,98,102,102,91,93,95,116,100,100,83,105,105,95,100,98,101,96,83,94,101,107,97,97,98,101,103,96,101,90,95,97,105,100,94,99,112,106,97,96,103,95,91,102,102,99,106,95,91,88,91,103,108,98,95,106,102,91,100,110,90,96,102,95,102,93,84,105,98,84,92,102,109,98,89,95,96,84,90,107,106,94,88,109,98,91,104,90,108,98,98,92,99,96,97,94,97,106,89,95,116,95,116,100,87,93,87,97,97,98,121,84,99,115,107,90,101,103,102,106,94,107,92,109,95,93,88,103,99,101,71,103,96,102,101,102,95,98,105,101,101,97,100,96,93,85,103,94,95,85,105,98,96,97,90,98,92,103,96,94,108,90,93,103,109,99,86,106,89,100,93,88,103,88,98,99,83,96,110,95,101,93,93,111,101,99,94,105,100,94,94,103,102,95,105,87,90,98,103,100,100,105,74,95,88,99,93,109,98,102,94,89,121,94,103,98,98,95,99,98,92,90,75,93,98,98,111,106,94,97,106,91,104,101,89,106,95,87,89,108,89,113,89,104,101,90,89,92,90,93,102,95,98,100,98,97,102,84,98,99,97,108,95,93,92,85,90,101,87,92,97,109,109,87,96,94,94,96,110,105,109,100,98,109,103,105,96,90,91,112,93,92,97,100,103,106,99,97,88,98,112,99,100,102,103,110,87,99,110,103,93,96,98,94,78,94,100,100,92,92,111,96,101,105,96,100,93,95,98,100,98,101,109,96,96,95,105,89,96,93,99,96,102,89,110,100,92,88,93,109,94,94,98,90,96,116,81,101,101,97,99,98,98,85,98,110,105,104,77,101,92,100,96,97,97,102,100,98,113,108,100,95,98,98,108,101,84,107,105,87,91,97,92,93,101,94,103,106,99,99,91,107,105,101,94,93,100,93,59,104,92,94,100,104,96,100,97,86,96,105,95,92,105,98,90,85,113,128,96,102,98,103,104,96,96,100,110,71,112,89,94,90,104,93,96,92,98,94,81,86,95,99,96,94,83,101,102,99,96,97,99,80,91,106,89,83,101,95,91,98,99,100,88,104,94,105,88,104,93,92,90,99,88,109,102,103,85,91,95,100,101,92,98,109,102,88,100,87,84,98,100,109,100,93,99,89,100,110,98,99,91,95,97,94,87,94,87,93,124,98,98,98,90,111,100,99,88,93,96,92,98,99,89,93,105,98,108,101,102,93,95,98,98,103,98,90,91,94,103,95,81,85,102,107,105,104,108,94,104,101,91,102,97,109,99,98,101,99,95,105,98,92,103,92,88,95,98,99,91,99,95,88,99,105,101,77,85,96,105,98,101,90,99,100,94,102,94,97,101,111,113,86,103,107,106,105,66,104,96,91,99,102,103,96,107,95,102,95,91,106,105,79,98,99,101,105,93,91,95,111,108,86,99,105,101,92,101,83,99,95,109,91,80,93,105,102,97,92,103,96,99,111,88,112,95,91,94,90,95,98,99,94,100,97,99,97,94,90,100,101,86,104,100,103,92,88,104,100,107,100,99,95,89,90,91,91,105,101,103,101,98,81,103,106,93,105,72,84,105,100,111,90,107,100,99,101,97,98,98,101,114,95,103,94,102,111,97,80,94,76,100,97,103,99,101,98,94,94,96,107,90,95,109,98,94,107,101,98,89,105,99,99,97,89,96,98,99,99,93,113,112,97,94,101,93,85,90,80,96,96,100,93,94,96,100,99,94,92,97,95,99,105,108,92,99,99,86,107,103,115,98,98,96,104,90,98,121,100,98,92,96,101,89,100,94,82,102,90,102,109,102,96,97,112,86,90,94,97,103,88,112,98,99,93,100,109,102,97,103,84,104,98,105,94,99,92,92,109,87,108,93,93,106,95,95,98,82,91,94,93,100,91,92,95,94,91,91,98,98,101,102,95,97,85,106,101,105,96,88,96,96,110,92,104,116,106,91,89,94,101,99,101,101,88,88,90,95,106,122,94,102,99,94,83,104,95,114,89,86,98,98,104,93,95,94,93,101,88,97,93,87,107,109,107,90,98,98,92,106,98,98,96,92,112,107,100,105,109,109,79,114,98,106,105,109,95,94,103,94,116,102,95,100,91,93,72,85,104,101,92,106,101,91,96,102,98,90,99,95,103,98,94,96,106,90,91,95,84,99,107,94,103,95,99,100,94,98,90,107,98,105,101,110,105,103,102,100,107,85,92,98,94,91,104,109,85,105,100,95,85,91,89,96,111,89,99,107,90,109,88,102,94,97,96,91,104,96,102,96,94,99,110,84,102,97,93,88,100,91,104,104,96,95,104,91,100,89,109,103,93,98,98,89,100,88,95,103,93,96,106,95,94,102,109,97,101,105,104,102,97,100,101,101,104,90,98,99,107,110,103,106,89,100,91,105,95,97,108,89,103,103,104,95,101,100,112,83,93,97,98,107,101,103,83,100,90,102,105,100,102,96,100,96,83,90,94,98,108,101,101,100,104,93,97,100,103,89,104,92,110,98,98,87,98,104,85,94,94,100,115,103,105,92,107,97,108,91,87,102,105,99,93,94,112,97,98,94,95,104,90,79,104,113,83,96,93,95,109,64,87,107,102,94,101,100,83,93,98,96,109,104,94,85,97,97,89,104,95,85,85,94,99,84,98,98,104,101,98,103,91,110,103,96,82,99,91,90,84,99,87,101,106,91,105,99,110,104,87,97,96,99,102,102,81,97,97,100,111,109,101,101,103,117,99,96,97,96,104,103,92,93,73,88,102,95,99,103,98,96,91,102,97,96,84,90,97,98,94,95,103,86,98,95,80,92,105,124,100,89,105,109,105,95,100,106,104,97,80,95,98,88,94,90,91,99,98,99,97,93,87,90,95,95,95,93,113,96,100,99,104,100,88,96,104,89,93,94,87,91,98,98,98,102,96,103,111,111,110,87,94,96,103,108,101,84,91,99,108,97,108,102,120,97,92,107,110,100,105,99,97,99,98,85,86,99,90,120,99,92,77,83,91,100,98,108,97,132,100,99,95,113,102,93,97,96,87,88,90,107,99,98,94,101,106,98,102,103,92,96,105,101,87,99,108,101,106,94,105,92,101,89,100,96,100,96,104,83,93,91,90,98,96,104,94,88,96,93,108,113,100,103,94,94,108,102,106,90,93,88,100,94,93,88,98,86,90,94,89,93,95,97,90,92,92,104,97,99,105,85,96,102,101,103,91,96,110,105,97,97,94,93,99,93,97,102,108,117,84,89,94,99,101,100,98,104,96,95,101,84,99,100,103,105,94,120,98,109,95,98,104,64,92,94,92,98,78,98,99,97,89,100,92,94,85,98,111,98,100,95,93,93,84,100,111,84,103,92,101,94,100,94,93,96,104,91,101,108,106,105,91,101,104,103,109,98,105,103,114,100,102,96,95,101,102,100,102,102,87,104,99,95,109,113,96,95,101,95,97,100,102,88,97,87,104,95,102,105,97,97,105,95,104,108,90,109,100,108,97,89,95,106,91,90,96,92,100,102,104,95,93,82,100,104,91,116,103,109,105,93,99,102,88,98,104,96,96,98,98,104,109,90,88,96,97,101,83,102,103,96,96,94,109,95,92,109,94,89,97,94,99,84,106,98,94,101,101,105,90,102,103,92,110,97,104,103,110,90,100,108,106,96,100,91,98,97,103,89,100,104,91,98,92,98,117,99,93,97,89,119,100,100,105,100,109,94,98,117,101,86,103,102,84,96,100,94,111,112,96,100,96,98,97,89,96,98,112,107,104,108,102,97,100,104,109,92,120,102,104,111,96,126,94,99,97,104,95,108,100,93,102,79,105,89,116,91,90,109,97,99,96,102,107,110,114,105,101,97,97,104,116,93,102,100,98,113,77,89,101,101,108,104,88,101,96,102,88,85,92,102,87,100,94,96,103,95,111,100,92,99,100,102,93,106,95,115,92,98,104,100,103,100,103,100,98,100,111,109,106,96,107,109,105,90,97,104,92,90,91,94,111,96,102,88,112,109,108,104,101,95,102,99,104,117,96,92,88,92,101,83,90,102,97,100,87,101,104,100,100,82,89,104,103,103,99,98,88,100,88,100,90,96,95,97,95,96,105,91,106,107,85,111,106,98,96,99,87,97,92,97,102,107,90,98,106,98,98,94,103,95,94,112,92,101,105,101,91,109,89,96,103,97,92,94,82,86,96,124,100,106,109,113,94,107,97,94,92,92,107,89,102,102,110,92,98,85,94,98,100,84,98,96,97,92,98,95,107,92,100,112,105,100,96,100,97,99,105,105,87,89,91,93,105,101,91,103,99,101,104,110,99,92,71,93,113,95,103,89,85,97,82,95,108,94,104,92,104,92,105,100,101,93,101,85,104,113,102,105,88,106,96,91,101,91,93,99,103,98,108,82,113,107,97,90,98,91,96,96,91,94,104,103,98,102,92,76,107,95,94,99,106,104,105,96,104,95,92,124,79, +737.30902,91,113,90,109,73,91,84,90,101,70,105,92,92,110,102,97,84,121,95,121,91,91,96,105,92,129,98,104,92,87,104,96,102,90,99,95,94,104,106,107,101,67,107,107,101,102,95,104,97,100,95,111,95,96,113,82,98,94,95,76,125,103,106,92,102,98,110,106,93,96,105,94,103,97,67,99,129,99,112,103,98,128,101,105,104,96,93,99,92,75,98,83,98,105,82,102,106,97,88,94,90,97,88,90,113,96,94,100,96,103,101,94,113,93,98,91,97,103,110,102,82,103,100,113,97,89,120,94,94,106,84,101,100,102,95,96,98,99,102,103,99,102,102,106,94,89,105,97,92,101,101,98,88,86,96,102,85,103,93,100,118,99,104,105,104,110,99,97,103,94,97,97,99,103,83,117,98,97,126,91,118,105,105,100,100,96,97,88,108,99,89,99,100,84,100,99,95,84,94,94,83,97,82,112,93,105,89,101,105,106,104,103,93,108,106,100,106,112,106,91,94,102,101,101,94,86,92,106,105,97,101,98,96,106,103,102,98,96,89,95,100,96,99,102,97,100,106,107,101,101,102,97,93,94,94,108,92,98,93,103,96,91,103,110,104,89,109,95,90,115,91,100,104,92,97,95,78,100,91,100,93,101,95,92,94,111,106,123,98,74,89,97,103,82,111,101,87,102,96,98,105,95,106,94,97,108,99,111,85,65,98,114,82,92,100,86,88,87,93,107,106,97,107,104,116,108,97,95,111,103,92,95,90,93,112,104,97,93,99,101,97,92,94,93,104,97,97,105,94,100,98,97,101,109,90,91,92,94,93,105,100,87,100,104,89,97,106,103,83,109,105,92,97,103,111,102,96,94,97,114,107,103,98,103,98,95,108,102,87,91,101,94,99,101,86,107,97,93,97,97,105,96,104,94,103,102,113,99,115,96,99,65,104,95,102,88,95,95,92,96,92,83,97,96,100,93,97,79,99,108,75,96,93,91,90,94,93,97,94,101,101,96,99,108,89,93,96,105,97,98,94,69,95,98,104,99,103,96,120,101,98,98,112,98,96,94,101,93,101,100,101,98,97,101,106,102,101,103,101,105,100,97,108,109,92,110,96,104,94,101,97,92,105,96,88,92,98,90,96,102,97,102,99,102,95,92,97,93,125,95,94,95,97,104,102,105,101,90,99,93,95,99,101,121,98,87,105,111,99,98,101,106,100,92,88,104,107,87,93,86,101,87,86,90,87,95,88,105,103,95,101,87,104,104,102,96,100,104,89,91,99,108,96,96,95,76,98,102,89,92,88,108,99,107,87,101,84,101,86,96,111,94,97,93,94,97,100,108,99,101,94,97,95,100,114,100,88,91,103,96,103,96,99,87,92,97,90,98,92,109,87,86,105,91,106,93,96,104,99,109,102,87,96,94,110,113,86,106,95,106,101,102,71,103,99,68,93,87,112,87,91,97,90,116,129,90,77,99,99,105,109,102,108,100,106,93,99,101,94,104,110,102,97,102,97,97,99,94,105,93,92,94,108,98,91,98,93,94,96,89,93,79,97,93,91,94,106,96,100,97,113,89,92,98,115,106,95,96,96,91,94,92,91,86,99,111,102,90,100,82,94,94,86,76,83,101,99,97,93,112,91,105,90,104,94,92,126,97,116,93,97,88,110,90,83,82,101,92,94,101,94,93,99,81,94,101,96,88,99,90,107,98,105,91,104,93,93,79,95,104,90,99,106,87,103,103,109,106,105,101,103,95,110,95,69,91,100,90,98,105,103,100,97,87,88,104,100,96,96,101,94,93,112,104,102,100,104,106,102,90,98,84,93,89,106,93,94,95,109,108,103,96,121,92,99,95,99,107,106,96,87,95,99,86,100,110,100,96,107,111,93,100,94,97,90,89,84,89,96,92,98,94,88,91,103,98,96,99,112,97,100,92,114,105,91,95,93,96,99,96,84,90,104,85,98,93,90,94,97,90,93,100,86,105,100,95,89,91,102,97,92,103,96,93,104,93,105,110,119,96,110,118,97,101,96,100,95,75,97,97,104,110,93,94,96,95,95,91,101,101,94,102,106,90,84,89,89,113,102,99,85,95,106,99,108,127,97,93,91,100,98,105,105,97,99,105,78,94,103,104,95,90,102,97,101,90,97,103,98,95,115,89,100,104,95,99,100,106,101,92,98,108,99,93,93,99,92,98,102,98,91,96,96,101,103,97,105,96,93,101,98,95,93,96,97,96,108,88,104,105,89,107,90,103,94,102,95,97,84,94,92,96,118,91,117,91,96,98,90,115,102,91,83,98,99,96,99,93,98,95,104,93,112,92,95,97,108,85,111,105,102,92,104,105,97,105,90,108,97,109,86,97,97,89,102,104,101,104,90,86,101,94,91,107,100,100,107,95,109,92,92,89,101,92,97,88,104,100,107,84,113,67,90,96,88,86,96,89,96,77,99,98,87,98,103,127,108,80,106,94,104,129,106,86,95,93,106,101,102,91,99,100,100,98,93,111,107,91,104,99,100,107,103,105,97,98,99,101,86,110,103,98,95,91,84,98,104,103,97,84,97,106,106,89,102,89,104,100,95,104,99,84,109,109,83,105,99,93,114,97,94,100,100,101,101,110,105,94,121,94,94,95,91,84,96,93,95,99,79,69,105,102,94,89,101,97,102,94,97,99,95,105,98,93,78,95,90,97,87,102,101,101,95,99,91,117,105,95,104,108,90,98,95,91,100,103,125,108,98,98,106,79,93,108,88,108,102,108,96,95,99,113,105,108,103,101,87,114,96,98,100,106,115,105,83,106,98,94,100,108,100,105,112,99,101,93,126,92,106,95,100,99,99,94,105,96,97,102,95,99,87,85,101,98,87,104,107,100,89,98,101,109,89,103,100,92,100,102,98,108,108,100,108,85,96,89,79,103,95,117,100,103,101,99,94,100,91,84,106,102,103,90,99,101,88,88,90,107,104,92,104,98,106,94,94,101,103,106,102,92,94,96,93,101,102,100,99,104,107,100,104,92,99,90,127,82,100,92,91,101,96,95,87,87,99,99,95,94,96,98,98,100,95,102,108,98,89,103,91,102,103,98,105,101,106,90,101,99,102,96,97,101,108,104,100,88,88,98,101,87,100,102,122,101,99,99,95,106,95,109,101,94,96,96,97,100,92,110,104,98,104,91,98,96,103,91,111,93,95,97,104,81,96,74,102,100,102,106,97,106,102,105,91,82,99,103,101,95,97,96,90,100,92,94,84,77,96,97,90,96,121,92,101,95,94,101,99,95,95,85,100,96,104,93,81,85,98,98,115,91,110,105,94,100,98,99,98,105,99,92,89,109,109,99,94,98,91,98,95,91,95,84,97,97,88,105,110,92,96,95,102,94,107,102,100,103,85,93,106,94,83,103,103,90,103,107,95,98,102,99,90,96,98,106,85,106,104,105,93,97,102,88,97,93,85,109,111,99,100,104,109,101,106,97,99,106,97,92,93,105,101,96,85,96,102,106,89,99,96,114,104,106,100,117,100,101,105,88,103,99,100,106,94,98,93,105,94,99,97,104,98,96,95,98,103,100,109,97,88,105,79,93,99,90,101,104,81,106,96,103,99,95,87,106,96,93,103,103,92,90,101,96,91,94,92,95,98,99,103,107,102,105,91,112,97,97,100,105,95,96,95,104,102,95,97,105,103,102,90,95,101,95,108,98,109,115,104,133,106,91,125,104,95,90,96,95,112,104,95,106,105,100,99,82,87,102,105,110,91,98,101,95,97,95,94,109,94,94,88,107,79,108,97,105,100,92,98,100,95,102,108,89,98,106,98,102,101,91,101,107,84,106,101,101,87,97,92,92,96,98,94,111,89,100,90,106,92,94,103,88,94,88,87,88,108,106,104,86,91,104,101,94,80,97,96,87,96,95,111,101,100,94,108,92,68,94,106,98,91,93,103,93,97,114,104,98,98,99,102,98,94,100,96,96,96,100,101,106,94,105,100,107,99,97,109,93,94,103,110,111,90,97,95,100,106,97,109,110,104,90,107,101,92,104,108,91,99,93,98,106,94,96,92,104,95,102,100,90,91,104,117,104,104,109,80,88,105,97,98,99,105,105,97,98,98,109,93,102,89,106,76,87,95,88,100,94,100,108,110,113,94,91,90,57,97,110,102,102,75,89,91,96,98,95,108,97,90,106,102,102,105,98,101,102,92,102,84,90,96,100,92,101,108,101,102,98,122,101,99,100,93,98,112,90,94,99,90,93,98,102,95,99,102,100,95,93,92,89,101,101,100,96,104,93,111,102,91,107,107,97,99,99,98,98,102,98,99,107,105,103,99,102,84,105,100,104,104,107,103,105,99,87,102,104,100,94,105,109,101,101,104,104,100,122,95,98,98,93,103,85,87,104,92,96,87,114,104,113,98,89,109,102,84,104,88,79,76,108,117,96,97,97,95,109,93,96,96,111,105,97,85,95,97,110,96,81,86,91,115,103,96,117,102,103,95,97,87,106,98,99,99,102,99,105,103,104,101,101,100,107,97,106,97,92,93,112,110,88,91,101,101,119,108,93,94,103,92,102,97,91,83,103,96,93,102,105,87,104,105,112,100,100,98,113,92,99,94,110,93,92,98,96,106,97,107,100,108,112,107,99,91,107,100,86,79,100,104,95,104,82,89,92,100,90,109,69,104,100,93,90,90,102,94,100,106,93,93,103,100,96,93,105,94,98,98,91,104,94,106,98,115,102,90,95,100,98,105,100,95,69,94,97,105,98,104,109,107,95,98,81,97,97,89,104,98,95,74,119,89,98,102,91,87,105,94,90,99,103,97,99,102,99,99,103,91,125,95,92,97,91,93,83,83,101,106,106,96,95,105,108,97,91,84,97,102,101,106,96,96,108, +737.45044,90,92,106,97,106,106,114,98,90,106,95,117,103,106,120,94,95,116,93,86,92,99,99,98,93,108,94,113,95,105,103,104,88,95,123,114,95,94,102,94,85,109,98,97,96,97,87,95,100,95,103,101,97,90,97,101,103,94,97,91,94,92,94,84,96,106,91,88,102,95,93,106,91,111,83,104,99,97,101,107,91,93,93,86,79,92,105,98,109,96,87,87,99,85,98,94,96,87,89,90,89,88,87,98,94,102,93,95,98,104,93,70,102,92,112,95,109,100,98,98,101,97,98,102,94,106,111,101,116,104,101,98,101,100,100,96,95,100,96,100,107,100,100,89,89,97,107,105,89,93,105,104,104,82,91,105,94,111,96,76,96,91,106,102,96,105,91,95,99,115,105,108,103,101,117,100,101,93,93,102,91,111,97,100,92,102,90,101,87,97,86,102,129,88,91,97,93,96,95,104,95,105,106,100,90,93,92,113,89,96,96,96,98,100,92,96,100,99,88,115,99,110,95,87,100,119,106,95,108,94,99,95,96,92,93,99,109,94,103,92,87,79,99,100,100,89,83,100,102,97,85,111,96,100,97,93,93,92,92,76,91,98,100,100,86,87,99,104,92,88,104,101,98,95,99,114,76,97,96,101,98,99,102,92,109,96,94,100,100,102,89,98,116,101,91,103,96,90,117,100,108,99,102,107,84,106,98,116,102,101,77,109,102,108,83,107,101,91,100,90,100,100,97,94,105,93,89,94,113,105,105,99,102,91,101,98,94,99,99,123,88,95,102,80,109,116,103,111,103,100,90,102,83,83,90,93,99,95,79,101,95,98,93,88,100,96,97,109,105,96,99,101,105,80,109,93,109,99,88,100,104,105,104,105,81,94,96,96,109,105,115,86,97,108,94,95,90,101,113,102,103,86,96,115,102,81,102,101,92,103,95,103,104,104,100,94,94,97,99,101,102,99,99,107,88,90,95,96,96,96,88,107,102,110,103,94,98,74,117,95,100,103,88,108,93,98,105,113,99,121,98,96,107,103,99,93,102,103,106,105,93,104,103,93,99,100,104,95,87,103,96,98,94,101,110,85,71,106,108,87,104,102,69,89,100,94,107,96,103,83,108,97,103,108,105,102,83,104,98,101,96,105,103,99,97,95,115,100,99,101,102,105,82,95,98,99,105,92,100,96,116,107,108,108,101,95,91,103,110,93,104,97,114,98,100,97,97,95,97,112,80,102,92,95,97,96,103,91,86,111,91,97,95,111,94,92,99,93,97,97,105,108,101,88,85,84,105,100,92,104,86,99,104,96,99,95,91,86,104,103,102,102,90,87,102,93,101,109,99,97,103,100,102,87,102,99,95,94,121,101,78,108,97,105,96,90,86,96,98,98,104,95,97,114,87,86,102,97,92,104,108,101,82,94,101,93,112,99,100,107,108,95,98,99,102,99,99,100,105,76,85,93,99,92,91,99,94,89,95,104,90,94,97,103,87,94,98,106,97,95,92,88,104,95,104,93,92,103,99,106,97,87,101,102,94,105,87,107,107,91,104,110,109,93,92,106,90,100,100,94,91,98,93,96,84,97,102,96,115,88,106,95,95,92,115,104,100,104,95,94,108,103,101,86,103,92,101,79,91,98,96,92,86,91,90,99,90,101,85,104,106,102,90,58,103,79,103,81,109,96,90,100,105,88,102,88,104,92,94,96,87,101,82,93,101,112,98,103,98,95,105,96,98,93,97,78,89,99,100,91,103,92,107,103,100,98,99,106,87,102,101,99,94,104,93,112,99,103,97,109,97,95,98,99,108,91,100,92,101,89,105,102,108,91,90,90,101,89,102,88,104,97,88,85,108,87,106,100,92,87,96,112,96,103,107,102,88,93,108,97,99,95,78,98,99,94,90,118,87,94,85,104,113,114,97,86,94,100,97,93,102,92,88,103,98,95,100,103,95,111,100,96,100,102,94,67,105,100,121,108,112,112,102,95,90,101,95,85,107,91,112,95,92,103,91,100,75,105,101,101,111,101,102,102,100,99,95,99,103,99,103,106,96,94,91,104,95,108,99,83,88,106,91,106,96,91,95,100,109,104,104,97,104,95,94,101,102,96,92,109,100,73,98,101,84,98,91,91,103,116,138,97,91,90,94,94,100,103,103,105,109,93,102,110,105,112,98,117,89,118,99,96,102,77,113,92,97,94,101,97,94,106,109,93,97,99,94,98,101,105,114,98,91,98,103,101,93,104,94,106,99,102,100,120,95,96,97,103,97,105,98,90,99,92,104,63,99,82,97,92,95,94,109,101,103,91,92,93,95,106,106,92,101,97,98,111,91,108,100,92,110,99,93,94,98,88,89,111,105,91,89,81,108,98,94,107,92,91,99,95,109,100,103,87,102,101,96,92,100,87,95,93,103,93,92,89,103,108,94,97,99,115,94,96,102,103,98,106,62,106,95,79,113,93,100,95,102,84,106,100,95,98,110,95,105,100,103,103,103,95,96,89,109,107,113,101,105,90,131,103,91,95,100,106,100,102,92,92,89,119,97,96,98,100,106,91,109,90,115,102,104,103,87,94,113,98,90,107,100,96,96,100,96,108,81,102,102,99,99,88,108,87,88,85,110,104,104,85,88,100,99,96,103,90,103,97,98,98,95,100,99,98,94,104,91,91,89,89,89,98,88,99,92,114,95,96,86,103,90,115,101,100,95,92,92,103,102,90,105,103,99,100,96,92,100,106,94,100,99,106,99,103,101,102,90,93,102,110,116,84,104,104,93,85,94,100,101,112,110,105,91,100,97,112,106,102,88,102,103,105,96,110,112,100,95,106,87,98,102,101,98,92,109,112,99,97,94,113,79,108,117,93,112,101,116,87,97,112,99,83,95,83,92,113,101,105,94,99,96,99,104,95,101,105,105,88,109,99,99,116,95,110,83,99,112,92,106,95,105,104,95,114,83,99,108,116,103,113,108,102,110,113,97,93,92,92,93,92,112,102,115,104,90,101,96,103,113,90,101,91,99,90,96,115,108,96,105,98,101,106,92,83,92,104,107,97,106,94,105,98,79,106,100,105,96,102,108,97,94,104,88,94,101,94,105,95,95,99,83,102,106,87,93,110,98,97,98,102,97,88,101,94,107,96,101,100,96,107,96,95,107,95,84,106,102,91,91,95,80,96,100,87,98,97,100,104,104,95,90,81,79,101,94,89,96,92,95,96,107,107,104,113,88,95,96,92,96,114,108,104,108,106,97,104,86,98,87,95,94,90,99,90,99,106,94,106,100,106,97,109,108,90,109,99,105,103,101,104,104,96,111,104,108,106,125,92,94,94,107,91,93,101,99,77,105,95,93,99,111,97,101,93,108,100,96,97,96,111,97,90,106,109,98,98,77,97,84,108,98,96,105,100,101,105,96,101,83,103,115,97,106,95,95,84,109,101,99,91,101,95,100,96,102,99,107,81,108,94,82,88,89,95,98,97,96,105,106,103,97,103,104,106,95,91,93,94,93,105,101,95,103,106,108,101,99,81,93,91,94,103,98,118,100,98,98,99,91,106,93,97,117,95,117,106,109,85,105,106,98,76,97,89,96,94,77,80,103,108,98,103,101,105,97,88,101,90,92,97,101,118,107,120,97,89,103,104,102,109,98,113,102,97,91,104,91,97,98,94,104,94,102,97,115,99,99,102,101,97,97,107,101,96,96,110,106,105,97,115,92,90,101,98,107,101,104,99,105,101,99,85,79,104,100,98,91,107,98,102,94,94,94,80,101,93,104,101,110,79,98,113,92,94,97,89,104,97,109,88,121,104,113,98,97,92,85,106,91,101,89,100,97,111,94,89,100,95,113,94,94,102,100,113,110,101,85,103,99,91,90,99,89,106,93,77,94,105,87,99,107,98,105,75,106,104,101,100,108,76,106,93,88,102,107,100,98,103,86,106,101,101,85,95,108,111,103,103,101,93,98,92,112,92,94,78,103,90,97,107,98,102,86,97,92,96,93,87,96,99,109,93,64,107,102,88,106,93,123,102,102,94,100,102,110,88,104,103,100,96,96,98,109,95,95,91,91,109,93,85,100,94,98,109,88,104,95,102,98,97,107,100,104,104,101,103,108,104,108,94,83,102,96,94,113,105,94,93,102,78,105,100,100,80,104,85,106,104,116,107,99,105,112,91,107,100,96,102,93,106,95,99,113,103,117,113,103,94,109,100,109,94,99,99,98,89,103,99,111,102,90,89,100,108,106,98,96,113,83,90,98,103,106,97,100,94,111,95,97,88,100,116,101,101,101,90,103,95,101,103,98,101,113,98,113,98,93,101,113,105,108,104,103,102,105,105,112,96,109,99,90,94,99,105,110,109,64,107,101,99,96,105,95,113,96,97,107,94,104,106,100,103,101,95,91,103,111,96,93,105,108,106,97,93,98,82,97,92,100,117,98,93,106,89,98,104,91,92,115,104,99,95,95,95,104,106,97,107,106,99,112,96,93,108,90,108,105,95,121,106,104,108,94,93,99,104,92,99,100,106,103,98,100,98,83,106,102,89,103,103,108,98,93,94,120,95,92,99,98,99,105,92,89,86,99,98,106,104,102,101,101,95,101,94,105,96,95,106,119,97,103,97,98,97,100,94,90,97,105,105,104,109,93,89,94,102,87,105,103,114,121,112,103,95,108,109,121,91,102,96,110,93,103,105,102,91,106,91,104,88,96,102,93,106,105,119,95,94,116,104,100,117,110,84,107,105,100,113,87,101,103,114,64,90,94,119,109,95,90,102,96,109,105,101,107,104,93,106,94,93,87,98,103,105,91,99,91,104,101,107,103,103,110,98,109,88,96,94,102,106,110,90,100,102,94,78,113,94,94,99,88,96,93,85,81,104,134,79,100,120,100,99, +737.59186,98,100,106,92,88,115,103,82,89,110,107,102,98,90,98,104,106,112,97,104,112,89,86,101,86,93,98,98,98,113,94,101,94,109,88,108,87,89,110,99,115,102,93,105,96,105,93,98,109,98,96,89,108,97,100,89,97,90,93,98,97,104,106,109,110,102,95,90,101,98,108,118,93,92,85,104,104,65,95,101,95,90,100,93,94,101,112,92,111,88,89,108,98,128,83,98,102,83,90,74,114,104,102,102,93,111,89,98,93,99,79,94,104,80,106,107,103,84,98,114,93,97,117,112,105,96,102,83,102,114,98,109,94,94,92,101,79,93,94,104,96,94,86,93,109,80,107,99,87,104,104,102,89,90,94,79,97,97,93,89,101,100,95,97,109,105,100,95,96,101,100,124,93,73,104,96,95,91,113,96,95,99,95,101,91,102,96,82,102,105,88,92,83,97,98,96,84,109,95,90,95,80,107,103,92,79,97,112,92,98,87,71,89,93,110,105,94,90,102,88,103,98,100,100,98,102,93,101,92,101,88,95,91,103,96,101,103,93,104,96,90,90,109,98,92,90,99,96,93,96,131,95,101,102,95,98,106,97,100,68,82,87,104,98,90,96,100,84,98,89,93,93,106,95,104,103,98,86,88,90,97,97,108,87,103,93,86,88,94,118,88,105,100,99,104,99,100,102,98,94,104,109,94,101,93,91,100,120,99,108,105,101,90,105,102,87,94,93,109,105,82,105,96,97,95,106,91,91,108,97,94,89,94,96,95,97,100,99,105,104,89,94,106,104,90,88,100,105,99,99,91,104,108,95,102,96,86,105,95,104,90,99,102,94,84,65,89,96,100,100,108,98,111,112,97,101,106,95,96,82,92,92,98,104,83,95,87,95,99,99,104,90,92,100,98,100,96,99,95,97,99,93,97,98,87,63,77,97,87,102,97,62,94,112,98,105,80,95,98,98,95,93,88,102,87,92,99,111,88,105,96,94,100,88,85,94,109,100,89,68,93,94,87,85,96,100,98,91,92,105,87,89,92,105,90,101,103,102,79,99,97,94,86,97,94,102,104,92,91,102,93,87,101,109,90,85,96,107,92,100,101,101,99,81,87,103,90,95,97,96,100,106,100,101,98,90,97,106,103,97,104,69,96,62,97,98,84,97,88,100,98,108,104,106,95,100,93,79,91,85,92,64,92,100,99,87,111,109,96,99,88,99,91,101,101,103,100,93,100,98,100,83,98,89,105,91,107,95,93,105,95,101,91,90,99,89,110,98,91,103,104,85,102,103,104,89,107,94,84,93,87,94,83,92,100,65,106,84,94,106,100,102,89,96,106,92,109,102,100,87,102,97,99,86,98,94,90,96,76,98,97,107,104,97,99,101,94,109,105,97,88,103,89,88,113,100,91,103,96,108,102,89,95,94,99,115,94,95,104,109,103,109,92,96,99,102,96,100,106,92,97,103,87,90,88,93,100,93,100,105,88,98,90,102,101,100,96,100,101,98,94,94,101,93,88,88,88,103,95,101,90,99,83,106,84,95,96,89,94,96,93,96,99,100,88,110,94,93,90,100,100,115,114,94,104,90,91,91,98,83,102,94,101,86,80,96,102,114,86,106,94,93,95,108,96,101,93,87,104,97,96,93,98,110,94,86,106,87,95,100,101,103,82,94,93,66,103,82,101,100,94,87,105,100,105,93,103,95,103,102,105,82,89,105,103,104,100,96,103,102,103,95,102,97,77,84,100,79,96,95,89,104,105,101,88,99,86,94,84,96,105,98,92,99,94,109,98,102,98,99,106,92,107,75,91,98,97,90,99,101,91,85,108,88,98,104,79,92,104,91,108,94,88,98,95,108,103,107,94,94,92,100,91,99,98,86,95,86,88,111,100,98,114,101,99,77,97,97,78,99,101,94,102,88,100,86,93,96,94,96,59,95,102,107,95,96,93,86,94,102,97,90,99,109,106,89,89,90,109,102,93,94,90,100,97,100,100,97,93,89,93,101,97,100,94,104,76,93,96,90,106,105,109,109,93,114,97,79,89,103,90,106,96,94,106,99,100,100,95,96,98,94,93,109,81,99,95,97,101,100,97,92,110,96,99,88,108,96,108,98,94,84,97,104,83,105,99,95,100,91,104,95,103,101,84,94,89,107,99,105,96,91,107,95,95,88,95,98,96,93,71,101,88,95,103,88,110,98,101,93,95,99,78,100,93,104,88,91,79,124,102,96,96,97,99,110,75,83,67,109,109,88,98,69,95,98,99,99,106,106,89,101,99,88,96,93,102,98,93,109,87,100,88,93,93,106,84,88,101,103,97,97,102,87,99,84,98,101,99,97,90,90,98,92,93,93,97,94,87,96,91,97,100,92,106,98,105,102,91,93,105,102,95,101,93,94,95,92,88,94,55,80,84,91,108,94,86,97,100,102,87,100,86,87,95,99,100,100,101,96,103,102,98,98,101,111,83,101,106,98,94,90,98,75,88,92,106,116,102,95,93,78,106,95,92,98,89,76,109,104,98,98,93,85,106,102,95,97,92,98,101,102,97,77,104,99,94,101,99,97,107,99,91,91,102,99,87,79,103,98,104,101,93,105,99,93,96,115,108,103,98,102,90,92,92,95,92,87,102,102,72,85,110,105,102,104,88,103,98,117,112,91,102,100,92,104,75,96,104,100,99,105,97,92,100,92,93,91,103,82,101,109,99,104,84,105,96,96,84,98,86,105,88,84,99,90,117,102,109,102,102,105,107,118,101,98,102,107,113,116,112,101,105,107,105,127,96,130,97,94,101,98,98,100,91,115,107,101,102,94,101,93,100,85,92,107,105,97,113,103,97,100,91,104,105,75,95,94,95,95,99,88,101,99,95,98,93,95,88,87,108,101,84,104,98,98,98,93,91,106,95,105,98,87,98,99,109,100,93,98,102,100,101,97,93,91,107,94,109,106,101,96,96,99,108,93,101,94,82,94,91,105,99,97,106,101,93,98,117,97,101,93,91,99,102,91,108,83,100,101,98,97,99,98,99,104,95,105,99,100,97,93,100,115,96,86,103,97,98,93,94,109,91,109,95,102,99,101,108,98,93,106,99,92,96,96,93,97,98,98,95,80,90,107,107,90,89,105,103,96,102,90,103,100,108,104,97,79,92,93,100,83,117,105,112,94,94,92,99,98,102,87,93,102,100,102,100,77,96,97,102,121,109,97,83,97,106,115,91,103,102,96,99,93,96,101,101,111,115,113,97,109,120,105,103,94,109,92,106,93,94,90,96,100,98,107,95,108,83,102,94,98,106,106,94,99,99,106,101,93,100,97,105,95,102,111,89,97,92,98,96,96,90,85,99,91,102,110,100,106,91,101,103,95,100,104,110,101,98,96,94,102,81,97,95,97,95,103,87,86,107,97,100,93,97,93,91,106,94,104,104,106,98,106,95,95,109,97,88,107,102,97,97,99,94,123,90,88,94,98,100,92,114,107,85,98,99,105,100,100,93,99,87,116,113,91,114,107,106,102,91,106,98,101,98,97,101,105,97,104,109,110,90,98,100,92,91,96,77,109,109,97,107,91,112,91,93,92,93,89,91,96,92,113,92,98,98,95,86,100,89,119,103,95,102,87,108,92,108,108,96,121,99,102,90,104,102,96,109,85,84,90,103,103,99,96,106,88,88,86,95,114,93,107,97,89,81,95,98,112,104,95,98,94,104,98,102,96,111,95,107,99,92,97,101,92,106,106,93,91,104,94,96,96,99,102,96,99,100,98,112,100,123,99,106,94,110,97,96,96,102,99,84,101,102,110,98,94,96,95,102,95,99,103,91,94,77,104,93,108,93,107,93,84,99,104,112,94,97,102,109,105,103,90,102,98,93,89,96,108,98,94,75,78,95,93,99,97,92,91,100,98,89,100,98,92,83,92,117,93,106,95,94,86,100,78,103,91,96,96,101,99,92,100,90,109,101,93,90,98,97,95,86,117,94,99,84,99,89,97,87,101,92,95,93,88,94,93,107,109,108,70,96,83,99,92,101,98,87,79,98,96,113,94,96,104,92,99,99,95,94,75,101,87,84,98,109,90,103,103,97,94,110,93,103,92,100,107,105,100,97,100,93,97,101,108,103,106,104,92,100,103,89,93,95,91,99,95,107,104,98,110,90,105,97,87,99,86,109,95,106,98,105,99,91,104,101,107,71,94,101,105,103,109,110,92,108,102,90,97,101,100,91,105,94,89,99,105,97,102,99,87,110,97,97,93,93,101,111,95,99,97,95,95,89,88,102,106,92,100,98,98,98,100,105,109,88,92,96,96,109,103,101,113,103,87,104,92,100,113,101,98,101,86,97,99,98,104,104,96,97,100,102,103,101,86,116,92,100,104,94,91,95,105,103,101,102,83,105,87,92,90,90,97,115,119,83,97,101,87,108,102,104,106,90,97,89,99,105,97,99,104,100,108,104,104,94,90,108,100,114,92,103,92,105,103,93,96,102,96,90,93,101,93,96,85,84,99,83,97,97,91,101,104,88,95,92,100,106,97,101,87,107,106,99,92,96,98,87,104,107,97,98,112,93,104,105,94,95,88,90,92,83,104,110,107,84,102,97,108,98,105,94,83,106,116,83,102,99,79,105,102,102,91,100,101,107,100,101,96,91,98,98,96,91,102,103,103,99,93,102,82,70,104,100,86,98,110,95,93,94,106,109,106,103,95,92,85,110,97,92,97,101,75,95,99,83,98,95,90,116,95,93,96,105,101,77,106,104,90,89,96,93,109,99,108,116,104,94,103,87,95,95,87,94,100,96,113,77,95,97,104,104,104,99,106,97,73,100,96,71,96,89,108,93,106,88,105,104,73,99,106,91,104,94,110,106,100,109,83,104,80,104,106,88,100,98,102,97,85, +737.73328,90,100,99,90,93,96,103,99,97,88,99,87,97,89,93,89,100,99,97,91,113,128,99,107,97,101,98,96,86,89,105,95,103,93,97,91,100,97,85,103,89,90,102,103,87,99,85,103,103,107,99,114,94,119,100,100,105,96,98,97,103,111,101,90,98,60,87,95,101,94,103,105,90,104,80,117,96,100,98,107,101,101,64,96,94,87,85,92,90,105,80,91,102,116,93,83,98,87,95,95,107,101,105,105,100,108,95,104,91,106,107,95,104,100,87,90,95,106,92,98,92,101,102,102,103,114,96,97,97,93,110,100,90,98,99,107,76,110,93,95,91,94,101,101,109,90,108,109,82,85,95,98,101,86,92,89,94,104,115,82,95,93,102,102,109,103,94,91,99,96,104,107,101,92,94,93,90,88,99,108,112,99,89,108,97,102,95,96,93,104,87,101,94,108,93,103,100,100,104,94,97,96,99,99,100,105,94,87,99,102,96,104,104,101,99,104,90,98,101,95,105,99,99,100,96,88,101,101,98,102,88,95,90,93,92,109,95,88,92,106,101,99,98,92,81,93,92,119,67,84,96,88,99,105,89,94,89,87,98,94,91,84,90,89,89,104,88,94,90,82,103,95,99,105,98,98,113,90,82,94,100,102,95,97,85,110,93,84,104,103,95,92,106,101,107,99,89,96,100,95,94,97,101,117,89,99,102,90,106,93,97,105,97,109,104,101,96,99,87,90,96,94,87,84,95,89,86,93,96,105,104,95,84,102,99,93,94,89,98,96,109,100,85,89,126,91,101,98,91,114,96,105,94,103,101,86,118,96,87,106,88,92,87,92,93,102,101,102,84,101,109,98,98,102,96,92,87,96,80,96,91,95,101,96,94,79,99,102,98,86,95,92,93,94,93,105,96,101,84,102,95,99,99,86,98,86,110,100,81,97,98,83,84,100,97,97,99,98,95,90,97,99,96,62,102,92,101,84,96,97,92,106,102,97,95,108,89,106,84,86,103,96,96,101,89,105,95,93,93,102,97,97,95,100,89,101,101,98,102,96,87,109,102,92,100,110,101,101,103,103,95,93,129,98,98,93,91,102,97,93,93,100,99,101,99,100,91,96,104,104,114,101,97,97,85,82,105,88,99,91,101,99,102,100,100,101,98,99,106,103,105,102,95,99,110,98,94,97,91,97,96,107,96,102,102,94,107,102,97,100,85,90,95,96,95,94,100,89,92,114,86,105,116,98,104,101,99,105,101,95,109,102,106,108,94,116,89,94,70,109,105,100,97,109,103,84,92,108,106,92,86,93,86,101,94,92,94,90,98,99,105,90,100,104,99,99,111,108,96,107,98,105,115,95,93,104,96,97,105,91,103,101,99,97,97,91,96,107,97,107,102,97,102,96,107,86,110,65,90,99,102,96,101,95,99,112,103,109,99,102,98,91,91,102,92,102,70,95,102,96,92,90,86,97,90,86,82,98,102,97,101,106,104,100,100,98,101,99,120,105,108,96,105,101,74,105,104,81,95,91,97,94,95,104,108,112,89,100,90,100,97,92,102,85,92,101,81,94,94,91,94,98,92,95,102,110,83,103,91,104,91,91,92,80,108,91,97,107,101,93,98,94,107,94,94,97,105,90,102,97,101,111,109,105,93,96,98,87,98,103,102,92,100,89,86,90,111,95,99,93,95,66,98,95,122,97,107,94,92,92,104,102,100,96,94,99,99,79,104,91,97,91,87,101,87,97,101,90,104,100,106,101,102,92,98,97,78,101,94,88,102,97,94,92,92,106,97,107,95,96,106,103,104,106,102,103,87,91,106,105,92,100,58,97,92,108,101,64,94,96,101,86,91,97,125,97,100,79,107,97,89,101,98,99,93,105,95,96,92,97,95,97,97,96,95,101,97,95,98,100,91,94,102,67,94,100,98,97,98,89,99,97,97,95,96,108,97,92,104,95,95,91,99,95,87,84,94,98,98,106,89,99,90,99,93,95,95,104,99,100,105,107,99,117,86,90,98,112,86,106,116,106,88,93,97,84,105,81,90,103,104,105,97,107,100,92,86,89,93,90,99,108,88,105,105,106,93,103,89,92,91,91,92,97,94,105,94,112,118,90,99,95,96,100,99,96,107,91,101,102,93,84,102,93,90,97,104,102,95,94,106,112,108,97,101,98,100,108,98,108,105,105,92,94,100,93,100,87,108,97,107,99,109,105,105,101,79,90,96,97,90,104,94,93,89,92,84,97,114,94,94,86,97,102,97,86,106,96,103,98,92,91,113,99,94,88,87,108,88,98,100,83,109,97,87,103,93,100,92,94,92,99,99,91,105,99,93,95,103,100,98,104,96,95,111,97,101,103,97,81,99,79,93,103,93,107,103,100,97,92,90,93,109,87,91,91,105,63,109,97,99,82,95,105,91,102,93,95,84,88,92,107,106,110,98,98,87,103,91,94,83,84,91,97,89,98,98,88,93,105,94,109,94,86,98,98,96,91,92,95,91,72,100,102,100,96,92,104,99,99,91,111,90,100,116,105,103,97,91,101,62,87,94,93,103,88,97,95,97,93,95,97,107,66,107,98,95,86,92,97,87,109,89,100,100,98,102,87,93,90,98,103,91,98,100,102,93,92,97,107,64,96,97,90,95,98,92,91,97,101,85,100,98,100,95,95,107,99,95,92,101,103,94,102,106,98,108,93,88,94,105,101,104,106,68,107,87,87,77,102,100,84,113,93,106,99,108,91,104,107,99,115,76,97,92,112,80,114,96,95,71,110,96,90,100,87,118,92,100,82,93,88,94,105,101,92,107,97,86,110,100,86,94,83,113,101,110,97,87,91,107,101,98,102,89,98,98,103,92,99,93,89,98,100,98,94,102,94,92,97,106,97,104,105,82,81,94,114,84,106,106,110,87,106,98,89,96,94,91,102,92,104,97,111,95,91,104,96,82,97,97,104,132,93,93,95,99,97,94,83,92,118,104,79,117,97,93,83,97,94,116,98,98,111,96,106,92,100,100,96,106,92,108,98,107,100,85,104,75,78,117,119,97,93,103,93,93,98,105,98,92,94,91,96,91,90,110,91,90,100,100,97,105,87,99,107,102,96,89,101,104,104,99,108,104,76,92,102,98,109,104,104,94,84,103,92,94,94,99,96,96,91,104,103,118,67,103,99,87,94,99,87,89,109,88,92,98,98,91,91,91,104,100,99,94,93,88,104,103,102,91,75,100,90,86,128,100,95,96,89,101,110,108,108,98,100,83,97,94,101,84,86,97,105,106,96,65,95,92,106,92,98,87,83,92,104,93,108,97,84,99,93,96,95,110,104,89,93,76,91,86,101,85,101,96,97,84,109,111,100,94,97,98,101,93,92,105,100,91,90,99,87,89,107,102,98,94,97,103,91,94,105,110,92,106,83,103,92,99,97,102,98,94,99,95,87,99,99,92,92,109,98,95,103,99,87,91,91,91,89,100,100,75,95,102,106,109,102,94,109,86,99,90,91,98,101,106,117,87,87,118,98,99,72,95,95,92,107,97,104,103,112,91,100,104,106,91,92,101,103,95,94,94,87,95,90,95,71,89,113,95,124,101,92,105,101,99,100,105,103,87,89,106,95,96,97,103,95,89,97,89,102,96,104,95,97,81,93,96,101,93,109,93,96,88,105,93,99,73,105,94,95,87,108,105,93,88,103,97,98,96,92,93,97,108,103,117,89,96,81,96,107,105,98,98,98,105,113,91,104,101,88,101,85,101,99,94,104,92,106,97,68,92,89,97,109,98,88,102,109,96,89,81,102,99,93,84,105,93,91,105,105,98,99,99,108,100,86,91,100,89,89,89,98,97,90,100,92,95,99,95,96,98,88,95,105,96,80,91,90,91,87,100,100,94,83,95,72,98,98,93,94,107,103,94,101,104,98,101,88,103,90,108,99,71,93,105,102,97,111,103,87,95,112,91,104,110,101,102,98,101,87,94,109,89,91,115,113,89,97,70,95,86,106,95,90,94,96,90,106,101,104,87,90,88,107,100,90,99,84,105,92,87,95,93,100,76,104,106,98,87,77,95,87,109,99,95,95,95,98,109,98,94,92,95,92,88,97,103,103,99,101,97,101,90,116,95,92,105,92,86,117,121,107,105,87,107,96,100,90,82,99,91,84,101,92,105,101,87,101,94,106,98,94,93,93,73,103,93,88,91,105,102,96,88,88,82,95,90,92,94,84,108,94,112,98,121,112,92,97,97,105,95,102,93,93,94,96,106,94,100,93,105,93,103,98,88,102,90,99,100,109,82,99,113,90,97,100,101,92,86,108,93,102,104,102,106,109,87,106,99,85,98,96,95,98,96,93,107,91,102,91,102,95,104,104,96,91,98,120,87,115,102,95,111,96,97,103,100,108,83,83,102,88,92,88,95,95,104,106,97,90,83,93,97,130,87,100,106,103,97,105,93,85,99,92,83,95,97,96,92,95,98,92,99,105,84,105,92,103,103,77,89,106,101,80,102,114,83,98,90,92,101,59,93,124,98,106,98,95,83,101,107,88,93,96,96,96,109,86,89,96,99,97,102,104,97,98,89,94,94,104,91,98,105,102,105,95,93,103,94,94,94,106,125,109,95,108,108,108,92,94,91,84,108,103,105,103,98,101,89,103,98,107,92,97,101,92,103,93,104,104,99,101,101,69,98,108,106,106,93,99,89,115,100,93,101,96,105,95,97,98,94,102,106,96,98,92,99,87,100,108,98,94,103,95,95,113,99,84,91,88,107,95,107,108,100,92,98,108,97,84,90,94,85,97,91,106,95,109,96,97,85,86,95,106,82,102,98,112,102,107,88,84,97,101,88,134,93,101,88,97,103,94,90,87,91,108,100,96,95,93,110,100,88,88,102,86,100,92, +737.87469,104,108,86,104,102,112,107,93,90,125,100,86,101,91,99,97,111,106,97,100,96,100,96,116,91,97,101,100,100,109,98,102,99,98,103,98,106,98,103,98,102,96,96,105,100,107,88,104,100,112,99,100,113,108,112,105,100,88,97,90,94,100,98,99,92,108,100,97,92,89,100,98,93,93,110,106,81,94,98,91,101,105,93,86,109,86,111,97,98,107,112,92,104,98,94,89,102,98,98,101,96,105,108,107,95,92,100,88,96,75,95,94,110,99,110,94,104,99,85,86,105,104,116,114,95,101,83,93,113,104,106,87,97,108,87,101,119,108,94,107,92,111,105,90,120,91,100,87,91,97,92,101,108,96,96,90,93,91,101,106,108,79,106,97,112,98,92,83,102,96,102,96,109,92,121,96,88,97,107,94,94,104,95,98,96,93,97,87,99,95,108,85,90,118,95,95,98,92,111,91,82,112,97,99,92,95,98,96,96,101,95,100,91,108,91,101,108,110,99,91,93,105,99,93,89,97,94,95,100,106,89,101,101,106,98,103,102,93,100,104,96,101,90,105,105,92,95,101,101,101,96,101,91,102,101,106,89,98,100,99,116,89,92,90,100,100,109,96,94,92,97,102,106,90,98,100,96,82,106,105,91,110,95,97,98,80,98,102,101,101,91,98,92,101,98,111,104,105,100,103,105,105,102,100,92,101,98,105,98,101,93,100,103,90,102,86,88,98,93,90,98,81,93,100,96,109,83,87,103,75,109,100,89,96,97,98,105,91,102,109,121,93,93,99,91,97,104,98,110,97,104,112,95,101,104,100,99,101,109,103,101,93,102,90,90,94,101,96,95,112,92,97,99,87,92,97,95,87,98,99,91,112,96,98,102,88,91,100,93,97,109,85,97,100,90,93,95,79,100,98,85,95,94,84,107,98,80,94,93,92,105,92,98,97,90,85,99,98,97,96,100,92,105,98,97,92,95,88,102,91,96,97,90,100,101,100,102,97,90,83,91,93,93,87,83,110,90,93,88,94,75,90,101,96,111,89,89,87,109,105,99,95,110,97,84,104,109,108,101,86,88,98,90,102,102,96,99,104,96,92,101,107,105,100,99,97,102,103,101,94,113,96,95,105,95,91,99,104,100,100,103,111,100,100,95,87,106,111,100,94,120,105,104,98,96,88,98,95,88,67,89,100,95,106,108,89,100,106,86,94,93,112,96,109,94,91,95,110,97,109,96,91,99,87,95,97,99,87,104,101,97,105,94,91,103,96,103,104,99,91,100,96,83,88,105,100,103,100,96,90,96,109,95,108,92,93,90,102,107,109,95,101,87,97,92,95,100,118,92,99,88,98,93,102,99,104,90,99,93,102,102,97,101,103,101,100,105,82,92,102,96,105,88,85,93,96,100,90,98,94,97,103,93,101,104,89,101,97,101,112,100,99,95,101,94,95,94,92,97,96,76,114,104,101,90,98,104,98,81,99,86,99,96,102,105,96,104,80,106,107,106,111,100,101,92,104,97,93,88,87,86,101,104,99,86,94,85,94,94,116,97,97,110,92,93,94,91,102,95,99,95,101,91,99,92,104,94,111,117,97,102,79,103,105,110,102,98,111,95,101,102,103,106,100,85,106,93,90,103,93,95,105,102,93,97,96,92,96,95,93,102,100,102,103,105,92,98,98,96,99,106,101,101,108,102,108,97,97,101,88,102,100,87,91,75,106,102,98,114,98,88,100,98,89,93,105,100,100,94,89,102,102,96,103,89,87,99,97,92,95,98,90,110,104,95,103,111,103,113,113,84,89,108,108,100,97,106,103,113,90,91,104,98,88,97,94,95,102,88,100,104,93,111,104,88,100,98,103,94,95,105,74,102,99,81,97,106,106,104,97,101,102,97,95,101,106,101,98,121,95,88,110,102,92,94,87,95,87,105,99,93,98,97,118,104,99,103,93,102,99,104,80,88,96,96,87,87,94,95,94,108,104,96,95,85,91,114,110,101,102,101,98,105,99,74,106,92,113,100,91,102,91,91,93,89,90,81,81,100,101,99,107,102,98,101,97,96,98,93,95,112,108,101,92,105,103,107,95,97,109,101,101,95,106,98,86,92,87,99,93,95,97,94,109,89,103,105,100,97,94,112,102,89,94,105,104,103,101,99,61,101,94,103,94,102,107,102,91,107,94,116,102,95,98,108,103,87,95,101,108,100,84,101,87,85,98,93,93,105,100,97,98,96,85,108,95,98,96,104,101,94,107,96,112,101,110,93,93,98,93,113,102,99,101,109,83,109,102,101,91,87,77,105,100,89,108,93,109,89,84,96,102,92,87,111,98,102,92,105,95,93,108,110,95,103,93,97,103,132,80,101,97,102,102,81,88,100,97,94,101,91,95,101,101,89,99,94,110,94,84,103,106,84,94,93,91,97,102,88,98,85,102,95,101,93,85,89,100,83,98,106,99,101,99,109,114,104,92,95,110,83,93,106,93,92,92,91,83,103,98,93,105,90,101,91,102,85,97,86,94,96,94,99,93,103,93,94,99,111,90,94,81,88,97,98,83,93,107,85,108,96,102,107,101,110,88,109,96,109,95,79,91,92,98,88,93,88,102,98,90,96,105,99,94,104,99,101,102,103,103,102,93,108,106,92,106,98,88,92,98,92,74,86,98,98,95,97,94,88,113,105,96,108,139,103,96,99,104,85,114,92,101,108,97,91,100,108,106,94,88,101,99,99,90,98,96,95,117,97,104,100,101,98,95,88,98,103,104,91,106,98,116,98,100,102,101,97,102,81,65,92,103,94,91,94,105,103,99,94,103,101,110,101,106,98,91,107,95,97,97,112,99,98,85,97,98,96,101,86,107,102,98,90,119,105,102,92,95,104,99,108,105,100,98,98,90,77,100,85,113,74,96,95,104,100,114,109,108,97,115,100,101,107,95,97,109,105,96,107,103,102,104,84,105,100,90,102,100,100,99,103,100,92,93,101,119,104,111,70,100,107,75,81,104,106,109,111,101,92,93,92,99,100,91,107,111,102,101,104,101,113,101,106,110,94,107,100,100,98,113,97,98,87,108,98,82,94,100,94,103,95,95,111,105,133,90,94,95,97,83,99,101,109,101,108,102,97,89,103,107,115,104,116,103,69,93,94,100,99,93,98,90,112,100,94,93,98,99,91,103,96,88,94,105,104,90,103,101,113,104,105,100,101,98,109,104,91,109,73,106,98,97,97,111,111,91,99,100,95,109,99,102,103,115,97,100,104,97,104,93,97,96,112,89,96,98,100,105,90,91,101,84,92,96,90,105,95,96,100,96,73,102,102,105,108,101,99,104,108,89,100,104,109,99,107,93,100,97,109,101,98,110,98,103,101,101,94,110,100,102,96,101,102,109,98,109,106,91,94,109,91,92,96,94,83,90,60,100,90,95,100,101,99,84,90,96,97,106,105,96,88,107,109,109,98,87,100,102,98,94,115,100,103,103,91,104,95,102,113,104,101,105,100,103,107,95,103,99,103,93,115,96,95,90,96,98,91,100,91,105,101,102,113,100,106,106,98,97,109,103,102,100,98,109,112,118,88,99,100,90,97,101,102,93,88,96,111,112,103,99,104,108,94,96,103,96,104,111,95,98,90,94,114,104,90,95,109,101,89,106,101,107,103,110,93,91,95,117,96,99,108,100,96,103,80,90,94,79,97,111,109,109,89,109,99,102,104,96,98,94,91,107,118,95,106,109,93,105,110,105,97,99,108,91,99,86,108,106,101,88,94,88,101,96,93,87,98,91,85,128,73,84,104,109,92,87,84,106,104,100,108,98,104,100,88,104,102,102,104,101,96,100,95,104,106,92,98,93,111,107,105,99,95,98,98,110,95,97,92,90,99,98,98,97,96,111,102,100,96,109,93,98,97,88,103,106,95,102,83,100,94,88,101,111,98,91,103,117,108,129,102,95,106,109,96,101,99,96,104,110,112,93,105,106,98,101,93,104,83,101,104,96,97,102,88,92,89,95,95,102,106,94,88,105,104,105,94,101,98,101,94,95,91,96,92,103,110,87,97,108,109,88,106,96,98,105,106,88,96,102,97,105,108,111,104,94,111,110,103,99,105,91,85,105,100,98,106,91,91,100,107,83,92,109,108,97,96,89,92,104,101,106,102,90,99,101,98,98,87,95,101,97,99,95,96,100,88,109,104,116,103,73,100,125,104,105,92,103,90,101,96,104,107,101,112,95,96,99,94,98,104,98,88,105,97,97,83,87,97,83,97,99,101,100,96,93,110,88,94,84,108,104,93,111,113,88,107,114,93,106,105,89,95,102,107,105,108,97,108,102,113,101,97,101,106,96,93,92,102,100,113,92,106,92,94,107,90,96,97,89,92,106,96,103,91,108,99,88,101,98,97,89,89,88,85,109,88,92,106,101,108,94,96,105,97,102,107,98,86,98,101,101,97,88,96,98,77,92,95,101,97,98,102,101,98,89,100,106,95,81,90,96,97,83,96,82,96,109,91,100,94,110,102,94,91,100,110,92,98,106,102,110,114,99,104,99,95,99,93,89,99,98,99,97,94,99,95,99,95,94,95,86,98,117,100,103,95,94,103,96,98,111,99,98,98,102,73,101,101,91,91,105,99,107,104,104,108,112,94,100,104,105,103,100,81,109,98,89,111,108,97,102,102,76,129,99,85,95,93,93,93,94,108,104,101,102,91,95,112,100,89,105,91,102,98,93,103,94,104,98,98,112,95,107,100,90,103,101,110,101,86,97,83,96,98,96,90,70,97,103,91,89,107,93,101,82,100,95,107,114,116,107,110,91,101,102,90,90,99,102,87,101,105,98,106,94,94,104,91,94,111,93,110,112,93,106,98,104,96,96,92,100,96,90,97,91,99,102,94,86, +738.01611,95,103,96,94,100,97,101,93,104,98,87,120,76,103,97,88,106,99,104,92,96,103,95,108,97,89,101,89,94,85,96,84,104,93,107,104,101,97,99,96,91,90,102,104,104,108,97,99,100,104,113,98,109,93,93,87,96,101,99,88,103,103,100,87,94,81,92,100,88,105,105,101,95,102,85,89,94,101,102,109,92,95,87,97,97,96,100,98,98,80,113,112,90,83,97,104,110,112,96,93,92,112,121,107,98,91,91,97,87,99,92,92,109,94,104,117,91,95,110,106,102,101,94,106,89,103,106,97,107,107,106,106,109,106,100,100,102,106,84,88,108,103,103,97,96,89,85,104,97,99,91,93,112,90,93,96,87,101,104,98,98,95,106,97,103,88,90,76,95,109,91,95,124,99,89,105,110,98,100,103,89,107,88,103,97,95,72,98,111,110,96,100,94,95,91,89,102,105,94,94,104,102,93,113,95,96,114,95,103,69,78,102,87,107,92,114,102,102,103,92,104,104,100,94,86,99,105,105,90,102,90,96,93,104,101,100,99,90,101,105,96,97,101,90,96,89,110,109,88,118,91,114,93,97,89,94,100,96,82,83,99,102,109,91,92,97,98,102,95,102,101,108,99,92,94,94,96,102,86,99,86,102,96,100,112,94,92,90,82,100,80,93,99,104,117,88,96,102,99,96,91,76,96,108,89,96,106,109,102,91,91,108,116,73,83,104,91,107,96,106,95,79,107,105,84,100,103,65,110,115,94,92,90,110,97,79,102,100,102,106,92,94,92,96,85,100,100,98,95,101,98,105,99,76,101,110,95,98,96,107,102,98,95,87,97,118,95,94,94,97,100,105,91,103,111,85,101,106,97,101,108,92,100,101,98,103,93,106,97,109,97,98,100,94,93,112,94,88,97,105,101,88,92,82,93,94,99,129,107,104,97,95,97,101,100,116,93,86,103,102,101,92,102,101,99,103,96,89,71,88,93,111,98,100,97,101,104,95,95,85,109,94,98,104,92,100,85,94,96,114,92,100,107,113,100,93,92,87,107,102,96,100,102,118,105,101,96,92,93,92,96,113,92,75,94,104,92,113,105,104,99,114,109,104,96,98,103,98,98,91,118,101,116,87,95,93,101,85,84,95,91,92,98,97,94,100,102,93,102,95,112,99,100,104,109,110,114,92,99,99,90,80,102,91,94,97,103,94,101,93,100,87,96,102,96,95,106,91,94,97,94,96,83,91,102,83,100,92,96,104,95,106,75,106,107,93,111,98,83,100,105,101,87,105,96,105,102,99,98,83,85,88,98,89,114,98,93,94,97,96,104,95,113,98,100,111,108,101,87,100,106,100,105,99,107,97,109,108,93,99,99,104,100,68,92,84,89,104,88,99,99,104,90,106,105,110,94,100,98,84,105,86,108,93,96,106,100,101,97,94,90,92,100,105,95,99,94,87,99,97,71,98,90,95,106,94,110,106,101,103,108,109,95,103,110,94,100,108,103,105,107,103,97,92,90,108,98,84,99,93,109,91,103,94,95,105,92,87,98,97,92,94,82,92,94,92,104,97,101,105,87,99,82,96,98,98,92,93,101,90,91,81,106,78,105,116,100,105,100,96,86,99,87,110,105,95,96,94,107,71,100,96,89,95,92,89,97,103,101,96,114,102,97,104,103,94,96,92,99,95,104,97,97,108,110,108,96,95,102,86,110,98,98,101,106,95,103,111,87,95,100,79,95,81,92,99,81,86,101,101,101,101,106,102,101,104,91,100,106,106,106,116,114,93,102,113,83,96,104,110,86,77,103,102,98,92,96,112,105,101,90,86,101,96,98,97,99,93,94,91,103,91,97,93,96,93,106,104,107,96,95,101,106,101,91,92,111,89,101,96,105,93,100,110,100,96,103,95,85,90,87,102,134,97,93,90,91,93,99,96,80,96,84,96,94,102,91,98,101,100,91,104,92,96,100,98,94,94,107,110,105,84,98,112,95,101,104,97,85,95,115,99,97,104,97,86,110,75,86,107,101,99,98,100,88,95,101,100,106,97,98,91,95,100,91,94,94,97,95,106,92,105,102,109,99,58,76,105,95,99,108,91,106,107,114,101,93,98,111,103,92,100,97,110,89,95,92,104,100,78,88,101,105,92,103,101,90,95,101,95,105,99,107,112,105,89,101,97,93,87,105,93,93,82,105,100,102,100,94,88,116,97,92,88,104,93,111,90,94,96,93,99,93,99,84,94,95,88,87,93,94,101,111,98,104,90,93,110,104,95,98,84,101,97,109,85,99,87,106,99,94,105,105,95,111,107,95,106,83,93,101,91,96,91,100,92,105,96,97,83,97,97,101,97,101,104,95,105,88,88,92,107,88,87,97,93,100,78,88,102,91,96,109,95,97,108,89,88,89,93,96,110,99,101,100,93,104,88,101,86,110,111,111,93,83,91,101,92,92,106,92,108,92,92,94,95,106,93,104,85,94,81,106,77,97,86,94,87,97,95,95,93,91,91,97,90,82,107,103,88,103,98,93,102,103,88,108,88,103,105,92,95,98,107,104,94,99,104,116,84,92,108,97,84,101,90,108,105,79,89,102,104,91,105,91,103,94,81,100,98,98,100,104,116,94,97,116,108,99,101,91,97,100,89,85,94,108,100,92,101,87,102,90,94,72,80,90,93,107,87,92,90,89,94,110,113,103,99,98,89,97,96,102,95,98,82,102,80,95,86,83,89,128,87,98,103,87,107,102,90,100,98,96,99,108,100,103,107,98,103,104,104,86,98,106,99,76,105,105,109,96,97,98,112,101,106,107,91,101,96,98,112,102,95,94,96,92,97,91,91,105,108,94,106,95,90,89,109,94,100,99,83,86,102,97,98,88,102,82,84,98,89,87,111,96,92,98,115,94,94,91,107,104,94,98,103,98,90,98,90,101,91,99,93,104,96,98,86,78,108,96,106,98,95,84,101,108,96,106,109,106,84,60,80,98,112,89,95,99,90,103,95,97,102,109,98,94,90,99,86,106,94,88,91,92,99,96,102,97,100,90,109,96,87,104,91,99,106,101,101,94,101,99,90,103,92,95,99,102,56,79,100,109,92,92,100,87,94,102,93,90,101,93,109,109,92,109,103,74,89,87,91,114,98,101,98,97,90,85,86,106,97,84,96,107,98,93,101,96,101,96,102,88,105,101,102,98,109,107,79,80,90,102,88,90,92,90,79,100,103,84,98,90,124,102,89,106,87,102,97,100,87,83,106,99,120,87,92,93,97,89,96,92,100,96,90,97,89,98,83,94,93,107,102,85,98,95,87,96,94,93,95,97,107,107,106,88,104,103,95,96,92,99,103,109,92,100,90,112,125,101,108,98,99,84,83,97,102,103,83,88,88,83,93,95,98,91,100,100,96,86,86,108,104,94,92,90,85,96,99,68,98,90,108,116,98,88,95,93,105,101,90,100,89,100,94,89,110,107,95,91,86,105,100,102,98,101,109,109,96,104,96,86,99,101,96,103,93,91,91,99,93,105,108,93,103,101,89,112,98,93,95,81,101,98,99,88,105,93,100,97,93,91,98,110,102,81,97,103,101,104,92,96,63,101,105,100,98,97,101,98,88,94,99,102,105,93,85,96,108,98,97,109,92,104,104,102,96,109,100,103,96,102,109,86,89,95,100,97,100,93,111,96,103,94,100,90,101,92,113,110,97,107,104,96,85,102,95,102,99,94,97,93,109,106,90,100,85,95,102,96,94,81,98,96,103,94,95,101,103,96,92,109,95,99,97,102,98,95,97,94,106,94,105,93,95,96,85,96,104,96,107,87,91,93,95,90,88,98,102,95,92,95,110,89,105,113,106,100,103,100,90,94,108,101,97,102,92,72,97,87,88,99,83,101,76,92,88,86,102,107,105,89,104,101,101,102,83,108,98,100,94,107,96,94,104,93,109,100,96,113,91,87,102,103,98,106,89,87,98,93,96,86,111,99,87,94,90,96,112,87,93,90,98,96,102,97,105,91,99,93,87,92,100,105,100,86,98,118,97,93,97,88,92,87,102,85,94,103,102,96,93,66,108,88,96,95,96,88,102,98,101,112,112,103,108,100,101,100,130,92,92,96,103,93,92,99,90,76,93,101,91,97,100,92,91,97,117,91,98,105,95,94,96,108,102,101,93,91,93,102,81,101,101,100,99,101,112,103,98,106,96,102,99,105,82,93,99,87,94,102,97,95,101,96,99,109,95,97,100,104,96,98,98,81,88,101,109,98,94,125,107,99,100,108,86,96,102,98,95,102,75,112,97,98,98,107,98,89,96,81,96,96,109,94,82,121,93,98,91,111,102,91,93,103,97,97,91,89,93,102,100,98,103,95,92,95,96,64,85,92,105,98,107,106,94,93,96,90,95,88,72,94,83,100,108,84,92,102,92,103,97,102,95,96,92,100,105,98,101,96,103,98,103,99,94,91,69,104,114,104,92,106,98,96,104,89,88,90,93,97,75,103,91,100,96,98,98,106,102,101,90,96,97,89,100,94,99,101,100,103,100,97,109,104,87,94,90,85,96,114,95,111,95,90,91,116,89,98,85,95,90,103,102,93,105,116,103,108,99,93,67,86,94,98,96,88,91,102,94,98,94,92,89,95,101,101,92,94,84,92,85,101,101,94,103,80,90,101,103,94,98,104,104,100,86,102,102,87,109,96,80,91,93,98,91,104,102,100,104,82,102,91,90,91,79,87,104,95,107,106,88,93,105,94,77,92,97,111,112,95,94,90,97,85,84,97,75,91,90,88,102,101,95,86,103,92,103,104,98,110,99,90,101,88,110,92,101,94,92,103,104,94,97,108,96,93,98,112,128,97,100,108,94,101,102,84,106,97,106,100,83,94,101,90,98,113,102,106,104, +738.15753,97,77,105,90,94,95,103,104,107,92,105,95,105,106,90,100,91,94,99,88,98,89,104,123,99,78,105,86,106,106,96,101,102,105,123,97,94,95,95,113,101,99,100,113,98,103,101,111,99,105,96,96,86,98,98,86,99,92,104,89,104,99,100,101,98,120,96,103,94,117,82,104,95,99,90,115,106,98,104,98,96,106,104,96,93,100,121,93,99,90,105,98,99,92,110,109,104,100,88,91,96,100,104,94,92,88,84,101,93,91,81,95,98,99,101,83,91,68,101,95,80,100,114,115,101,101,95,91,98,89,113,92,92,109,100,90,109,105,90,91,95,93,95,98,102,107,93,101,94,107,89,108,104,87,116,95,81,72,103,97,86,112,105,101,98,106,107,88,76,84,105,89,125,95,100,76,101,90,116,102,96,102,110,104,106,96,104,102,121,91,108,94,99,98,100,94,86,99,97,100,96,96,102,99,104,98,87,95,104,96,96,92,82,101,100,96,91,108,90,95,98,90,100,97,101,99,98,98,108,100,104,104,101,101,79,108,94,107,94,94,102,103,111,92,97,92,107,104,102,134,93,91,87,103,106,93,98,108,99,90,108,104,104,122,84,92,100,92,99,99,108,92,112,105,114,99,98,103,98,63,106,110,105,98,105,97,94,98,94,92,92,93,110,106,94,103,104,110,109,95,103,87,101,100,90,94,97,92,98,110,88,99,101,101,96,95,102,92,96,101,89,86,114,104,118,102,104,94,109,105,119,86,99,92,100,97,95,95,95,99,97,72,105,94,100,97,89,99,108,89,87,88,96,98,100,105,105,97,98,92,108,89,97,103,94,91,94,95,103,99,97,87,96,103,98,94,103,114,103,102,107,95,98,96,105,95,90,89,90,93,105,81,105,101,90,104,99,96,104,98,101,102,95,103,101,91,104,100,109,99,99,100,109,95,91,112,103,105,98,101,90,84,94,92,99,87,110,85,109,101,120,84,84,109,95,94,84,81,103,102,96,90,101,101,88,94,101,105,99,103,98,94,128,104,101,90,98,90,99,95,110,106,104,100,104,102,104,97,107,92,92,99,83,106,99,97,96,107,105,97,100,102,109,83,100,95,89,99,95,101,78,110,91,111,92,108,98,117,100,94,95,99,87,84,84,98,101,101,101,94,101,90,90,93,94,107,104,98,98,95,67,94,86,95,101,78,107,103,84,81,100,105,102,103,106,84,101,97,88,95,89,103,93,113,100,89,80,98,102,104,92,116,105,88,105,85,94,102,90,98,101,98,98,99,94,84,116,92,102,95,90,95,100,101,105,99,95,90,97,105,83,103,115,99,98,95,99,100,101,95,95,97,106,101,92,111,90,96,98,103,91,107,75,100,82,64,94,102,105,105,91,102,109,105,99,87,105,97,98,89,97,99,100,105,100,103,82,95,78,94,100,108,78,100,91,102,94,92,91,92,105,102,86,100,95,90,102,85,109,98,88,96,96,94,102,95,105,90,116,111,119,97,103,98,103,105,90,89,99,98,103,99,99,100,96,100,92,107,76,94,105,92,103,88,106,91,91,114,90,104,97,103,97,107,99,91,99,95,88,101,105,97,83,95,104,93,107,106,100,104,98,100,100,92,91,86,98,109,99,95,97,89,94,99,97,86,90,102,96,116,100,95,91,72,95,104,107,112,104,95,109,95,105,112,97,91,98,98,95,100,100,97,102,91,89,100,91,95,83,97,102,95,84,90,87,96,86,97,108,95,98,104,99,102,102,91,99,110,101,91,101,101,101,98,96,96,95,83,90,109,115,101,97,93,111,105,98,101,103,108,97,96,110,105,101,102,109,111,104,95,93,94,101,107,109,94,107,96,108,99,95,102,92,98,93,85,103,112,71,101,109,100,92,99,91,93,101,89,97,91,102,103,106,94,95,128,97,90,111,91,93,93,94,104,106,97,101,100,94,83,100,98,95,89,117,102,104,107,108,91,100,88,100,108,91,91,105,98,96,93,108,101,109,93,113,100,91,104,103,106,97,105,108,107,98,101,99,107,98,104,89,109,101,101,98,109,99,102,95,102,95,107,116,88,98,94,94,100,109,105,92,98,102,105,101,100,97,96,105,107,111,94,98,99,103,90,99,98,80,109,106,108,102,85,93,90,115,93,101,93,101,87,96,100,99,90,97,95,98,104,102,100,93,87,97,89,93,107,100,95,94,111,100,87,84,100,107,85,95,95,99,111,98,92,99,101,100,103,93,93,61,100,98,100,96,109,88,108,90,104,95,112,104,89,91,109,93,83,97,96,112,100,95,102,87,107,95,94,86,95,105,113,94,93,110,95,89,99,89,102,96,98,102,96,92,96,102,83,94,91,100,98,89,96,70,98,96,114,92,100,96,106,102,108,93,86,105,107,95,92,90,87,92,101,97,89,100,100,106,96,105,121,98,96,104,94,109,88,91,91,84,93,80,92,94,88,98,98,101,102,92,102,101,93,87,101,72,90,95,94,98,105,93,98,96,83,99,94,105,64,103,109,107,109,98,91,89,96,96,104,95,103,106,73,87,98,93,117,88,109,91,107,88,82,97,79,103,102,125,93,114,103,86,103,96,90,93,91,91,97,113,101,96,97,101,103,104,108,109,105,94,97,105,81,89,98,106,106,104,106,94,96,95,109,98,102,93,83,101,93,89,94,96,90,99,99,103,94,103,86,101,91,99,120,97,94,84,72,99,99,94,114,90,104,73,95,88,107,95,96,103,83,92,98,93,102,72,100,96,83,94,101,115,104,89,71,106,110,76,88,87,96,101,103,101,120,108,106,97,94,105,97,99,90,111,88,112,94,107,97,100,97,96,87,104,96,92,101,104,89,102,86,88,87,66,86,85,92,78,87,101,96,87,90,80,102,92,98,109,103,88,87,105,95,107,98,80,95,100,93,89,94,97,91,103,100,87,90,95,89,79,96,94,96,95,99,88,91,95,101,102,91,89,112,98,104,99,95,95,100,100,102,85,95,97,105,107,114,101,83,91,87,94,87,99,88,90,84,86,87,94,96,103,113,91,101,105,99,95,91,84,100,87,105,89,91,88,72,91,96,88,94,108,90,110,90,91,116,95,94,98,83,92,105,105,89,88,85,105,104,94,102,81,84,104,87,96,99,101,96,96,97,89,101,100,97,93,84,103,88,99,93,94,119,98,97,96,106,103,101,100,96,105,90,105,97,86,72,104,104,95,89,81,91,99,100,94,70,87,96,85,100,89,98,101,81,91,90,110,100,105,91,102,87,97,101,91,104,94,81,66,87,104,91,96,97,91,90,104,96,92,93,87,95,110,94,77,83,84,88,101,106,88,104,98,101,94,132,101,96,91,112,98,91,97,75,107,84,87,91,73,94,99,76,101,109,93,98,83,102,101,98,99,101,83,96,126,101,103,97,94,82,93,89,113,95,92,95,97,106,88,107,97,89,85,91,103,89,103,92,97,95,99,102,92,91,83,88,124,101,105,98,89,102,107,89,110,94,87,99,87,104,90,98,99,98,100,101,92,90,95,105,85,84,117,90,101,93,100,102,99,89,90,99,104,97,109,88,98,102,90,92,80,101,95,86,110,100,93,130,92,89,92,103,101,88,112,94,89,103,78,99,111,90,96,80,101,104,90,97,99,89,94,87,84,94,92,91,107,113,101,107,98,103,98,97,94,84,97,89,94,95,99,97,98,93,110,96,91,99,97,104,87,91,104,99,97,93,111,105,93,91,98,90,97,99,89,108,106,101,92,88,85,98,97,90,118,103,102,104,96,103,88,87,93,104,83,104,87,104,100,95,85,87,94,100,100,98,86,94,89,90,77,85,96,102,97,91,86,94,117,110,104,99,91,97,105,99,91,100,93,97,88,82,96,111,97,99,115,103,113,94,96,96,98,98,86,93,103,101,109,112,88,109,103,87,98,92,99,89,99,95,95,93,101,93,72,101,85,89,88,98,105,101,94,102,95,95,101,98,95,104,113,83,93,93,99,88,97,93,88,86,94,98,107,111,102,113,95,97,104,100,92,94,102,88,104,102,101,96,89,93,101,109,73,91,102,101,89,91,101,93,88,100,101,126,96,100,89,101,105,101,92,100,98,112,88,102,101,107,99,92,92,100,99,108,98,87,93,94,101,91,105,93,99,117,95,88,91,102,110,100,93,94,94,101,94,96,91,94,92,88,91,107,92,97,99,90,91,101,103,92,117,93,109,83,104,103,91,102,88,101,101,94,99,87,88,101,98,98,100,96,109,95,110,102,97,87,84,100,116,110,100,105,97,106,107,88,91,100,101,98,105,107,107,92,94,91,101,101,104,98,102,93,107,86,97,93,101,96,108,96,105,103,90,96,94,101,99,90,102,95,93,98,85,98,101,103,83,101,89,87,97,94,89,113,89,97,108,99,112,98,95,86,101,93,94,90,98,106,88,113,90,101,81,101,94,85,94,94,87,105,89,103,93,94,100,94,84,106,95,100,94,87,100,106,95,103,90,80,97,108,86,89,91,83,76,100,84,93,108,71,78,98,106,105,92,99,99,95,92,91,104,103,91,91,83,90,97,99,91,94,94,96,107,97,104,94,107,94,92,97,98,103,90,87,102,103,102,90,99,104,94,99,92,95,100,98,99,104,68,92,105,89,101,95,102,96,99,97,94,102,101,109,102,92,104,91,105,105,101,101,96,102,104,97,93,90,100,75,93,79,105,95,88,98,91,79,93,97,122,96,88,95,109,69,109,111,111,93,89,87,96,101,101,95,97,102,107,94,93,104,88,99,79,97,102,95,102,98,87,79,100,106,108,86,107,97,97,90,93,91,89,90,83,98,93,79,100,110,79,115,89,87,98,98,103,122,106,97,101,100,101,112,98,85,79,103,85,96, +738.29895,107,94,97,109,92,95,102,92,84,107,97,94,110,92,99,113,92,103,94,101,93,99,101,82,117,90,92,107,96,103,91,100,101,110,117,96,88,85,101,92,97,105,84,87,103,96,91,89,113,94,100,89,94,75,91,91,94,98,99,97,92,120,95,103,98,101,96,100,80,97,99,88,93,105,115,98,101,95,102,109,101,96,100,90,95,106,98,94,101,92,101,109,98,107,97,94,91,98,89,101,97,113,98,88,95,95,97,91,92,95,105,106,96,91,97,97,98,95,101,109,92,99,93,99,100,93,105,90,100,111,101,116,113,107,102,88,94,99,92,94,98,101,108,94,93,99,96,99,82,94,115,92,99,94,85,95,99,93,99,108,99,97,96,84,83,71,135,90,110,100,104,74,87,89,97,95,102,74,112,102,113,99,91,111,109,88,94,94,96,125,93,105,106,105,89,106,101,106,99,94,94,103,102,101,98,95,92,106,118,96,92,94,99,95,95,95,111,104,87,102,103,97,91,104,93,107,106,102,100,104,81,104,102,103,91,108,96,94,99,80,104,91,105,92,97,82,100,103,101,99,102,97,96,105,86,95,104,101,96,90,97,99,106,100,83,98,101,98,98,117,91,97,93,96,87,74,96,98,106,104,98,100,101,107,106,104,88,92,108,96,106,103,95,95,102,95,95,103,102,69,99,113,98,107,102,101,100,97,110,91,80,109,96,109,104,105,108,97,103,100,97,89,101,105,98,111,100,92,93,104,98,110,100,94,95,93,98,87,92,99,91,96,99,115,106,103,96,102,97,91,83,99,104,112,88,98,105,97,66,102,116,91,88,91,105,96,111,94,86,102,106,87,99,92,89,105,97,117,94,100,103,102,94,94,91,94,92,94,103,104,100,78,87,90,101,85,96,89,93,100,85,97,82,96,98,91,99,97,100,102,103,98,99,109,95,99,99,87,92,89,105,101,95,103,97,96,87,101,100,105,85,95,88,95,95,88,99,99,92,92,91,93,95,95,93,101,92,86,95,102,96,105,111,108,91,102,95,100,104,89,98,99,101,97,101,104,106,98,91,93,105,101,105,99,101,87,83,102,108,94,92,88,101,96,95,82,104,66,87,94,93,85,96,101,92,94,91,100,104,102,95,98,95,89,99,102,88,96,90,84,96,96,112,94,105,95,92,88,88,91,94,110,93,99,100,94,102,98,87,93,92,82,108,100,98,106,105,102,91,106,95,97,86,102,108,100,95,95,101,91,98,115,95,100,96,90,95,95,93,96,93,86,99,99,89,92,111,110,116,92,101,96,92,106,98,97,94,102,96,99,102,98,101,91,86,104,102,98,106,93,103,97,110,85,105,107,95,96,94,106,103,106,93,98,99,101,93,94,100,99,99,88,105,106,104,104,89,101,87,93,91,99,89,93,101,100,82,105,112,108,96,122,85,104,102,93,90,97,103,77,108,92,98,89,105,106,110,92,104,103,95,102,87,100,96,101,81,83,98,96,106,98,96,96,98,97,95,89,101,96,105,109,96,99,95,97,104,89,91,103,99,93,109,86,111,97,91,97,90,107,101,96,105,91,106,95,91,109,100,90,92,91,108,86,101,103,96,110,97,109,101,107,101,103,91,111,91,94,96,104,112,94,112,101,100,82,96,103,104,103,83,102,104,108,98,100,103,93,113,91,104,93,112,105,106,95,93,110,105,86,110,114,110,86,102,90,99,111,99,94,96,109,98,108,97,90,90,86,93,82,88,99,104,102,87,87,101,92,98,93,103,95,104,95,94,105,109,118,96,110,91,90,97,116,103,99,95,109,104,91,98,102,89,79,92,107,96,99,102,96,98,100,94,105,106,98,101,104,98,101,101,102,93,109,93,100,101,96,125,99,101,104,101,107,99,108,99,91,71,111,91,110,106,91,94,84,82,100,101,89,94,80,91,101,96,95,100,103,99,95,98,88,106,102,106,89,86,93,107,97,95,113,101,114,103,91,86,115,99,93,105,99,103,86,93,105,101,103,105,105,98,100,104,96,100,95,96,103,70,95,102,104,95,88,94,104,99,97,97,96,89,93,103,103,104,96,96,90,97,103,96,102,90,110,112,95,89,101,86,96,91,116,100,91,108,86,102,99,101,97,91,109,115,95,99,93,108,89,118,112,106,94,109,103,95,98,88,105,91,91,109,110,93,99,102,63,94,101,95,87,91,109,105,100,93,94,93,101,93,103,91,106,93,105,106,88,91,89,99,90,99,105,100,107,102,86,98,88,102,98,109,96,96,81,109,112,117,104,93,75,100,103,101,99,102,95,95,108,95,95,96,88,99,73,100,92,96,96,104,86,106,95,111,87,100,89,100,91,101,98,91,110,101,84,100,102,92,97,99,99,99,96,94,99,102,105,99,88,89,107,97,99,97,107,94,95,86,97,88,102,77,100,105,89,103,101,94,89,96,110,106,91,88,109,101,114,95,88,94,102,89,84,97,110,84,100,104,100,101,110,105,94,101,78,101,96,98,95,99,103,118,99,112,90,93,91,98,106,81,76,104,104,94,90,110,92,89,103,101,100,91,108,83,97,105,96,73,93,106,87,92,110,109,100,103,102,111,95,107,89,102,91,102,87,101,98,94,90,93,101,91,61,98,83,114,95,93,97,91,79,95,79,95,90,99,105,104,87,97,89,97,113,84,109,110,113,98,100,98,95,93,100,98,98,89,91,103,92,118,111,106,96,88,95,98,106,99,104,95,101,89,97,100,98,100,101,94,102,96,102,96,106,96,91,103,110,94,109,102,90,96,91,87,99,101,102,103,99,106,89,97,101,90,101,89,84,98,99,105,108,93,95,101,98,101,91,87,97,86,111,106,91,98,94,101,87,105,88,98,107,96,106,94,91,105,97,83,103,88,95,96,88,108,98,110,97,87,101,112,69,93,103,99,88,92,91,102,99,98,90,109,103,112,103,94,107,101,103,102,102,113,91,104,91,91,91,84,86,92,91,107,92,83,100,91,99,89,105,87,96,99,94,102,100,105,102,98,94,94,111,98,91,107,85,102,97,98,109,101,95,92,110,97,95,89,79,98,103,98,85,94,94,98,103,99,72,92,88,92,90,78,100,100,94,92,100,108,99,106,102,91,96,93,94,95,100,103,100,91,95,79,92,106,99,109,99,105,94,100,100,92,87,100,87,99,86,106,91,94,96,102,95,99,102,99,95,97,99,92,102,103,108,105,90,84,98,91,94,101,99,101,105,97,105,102,89,96,105,98,102,97,88,98,98,91,99,105,85,88,102,97,92,68,110,83,102,114,104,96,102,93,105,96,103,113,94,82,110,98,92,93,94,100,96,102,97,110,100,103,109,84,95,103,96,95,93,98,126,87,91,90,96,95,100,108,91,95,100,103,98,99,95,96,98,92,94,108,99,96,94,92,87,96,84,102,84,102,107,87,96,121,103,95,87,97,69,79,90,102,88,91,96,98,80,99,120,91,99,112,84,96,86,107,99,92,98,103,92,98,92,107,103,81,72,90,91,96,95,97,94,90,97,92,100,107,104,93,91,108,111,98,100,98,120,99,97,78,100,96,98,102,98,100,105,98,100,85,84,83,102,93,98,107,94,92,88,93,91,109,99,95,92,107,100,99,94,102,105,98,106,94,85,94,96,98,91,82,113,104,106,109,101,96,99,86,105,98,98,104,99,98,94,96,97,100,108,97,91,104,98,104,103,97,95,100,101,99,97,109,129,101,103,109,89,96,105,112,98,101,101,84,108,96,97,94,94,96,84,99,108,92,105,71,116,125,86,98,106,101,99,91,98,95,104,96,106,95,98,103,102,83,87,85,106,94,106,108,99,87,98,89,106,102,101,98,92,82,95,91,96,99,93,107,93,92,86,109,88,85,92,99,102,94,97,88,115,94,109,80,86,90,84,102,91,98,88,113,96,95,105,100,88,104,78,106,85,101,95,88,100,87,97,91,95,100,93,105,95,97,102,94,86,88,98,98,110,93,104,94,98,101,106,91,84,100,93,100,88,102,99,107,79,92,100,94,101,86,111,108,96,102,91,98,101,102,106,106,104,102,98,100,100,95,101,93,100,116,101,90,93,93,96,99,89,105,87,100,90,104,92,98,100,93,106,113,92,96,97,94,96,98,90,100,108,91,94,98,91,97,92,105,83,102,91,89,95,90,96,77,97,95,106,136,92,97,76,94,92,95,101,94,85,92,97,92,100,108,98,96,102,97,91,104,96,84,96,87,104,84,98,93,97,95,109,99,100,105,93,104,98,88,81,98,93,102,94,91,103,102,66,91,107,104,96,104,86,109,95,91,97,105,91,93,95,87,87,97,112,93,97,94,98,102,98,90,89,89,106,95,89,91,101,95,92,95,93,103,96,115,90,92,99,111,110,89,98,90,94,92,84,90,105,85,91,89,86,94,91,103,91,108,103,107,98,89,95,103,102,103,110,96,93,88,107,100,108,101,82,98,92,106,97,87,92,95,99,101,87,99,97,104,93,90,106,99,101,90,105,93,105,89,104,89,108,102,91,97,94,107,107,93,108,100,95,90,100,99,75,95,100,101,83,99,96,95,89,105,84,86,107,100,100,91,107,98,92,96,103,92,93,88,101,81,117,90,96,107,108,98,102,98,95,91,92,110,95,98,103,113,93,93,103,107,87,112,95,109,98,77,91,99,95,88,104,106,85,93,110,96,79,107,112,87,94,102,103,101,104,101,102,118,112,96,65,97,93,98,100,98,99,85,99,105,103,91,100,90,104,106,110,88,99,98,105,114,109,91,92,85,100,125,91,99,80,91,100,102,102,92,104,83,89,87,79,100,101,97,92,99,79,100,97,121,107,113,102,98,80,88,86,101,94,97,100,100,91,114,108,89,101, +738.44037,109,98,95,95,94,104,95,87,84,98,88,100,93,114,87,110,92,103,88,86,89,91,94,88,98,98,92,95,94,99,95,92,97,92,66,108,98,103,85,96,85,97,103,91,101,112,99,101,104,97,99,90,101,91,93,71,95,107,106,73,89,104,94,91,90,106,97,96,90,115,95,86,88,100,90,99,86,97,91,91,94,82,89,103,93,87,93,105,97,102,83,90,95,82,101,112,78,95,86,104,113,102,105,98,94,89,90,100,100,105,104,92,98,96,99,97,104,97,95,89,103,90,97,117,101,108,123,95,102,99,92,109,79,100,97,94,104,99,86,91,104,104,95,98,83,108,108,92,94,96,112,97,91,100,90,97,99,98,101,96,98,94,97,92,93,103,103,97,99,101,89,93,93,88,90,98,116,82,95,98,90,99,97,99,113,86,93,83,100,92,99,93,81,101,102,86,95,81,87,99,93,97,95,92,93,90,96,100,111,93,90,93,91,93,98,86,107,99,97,99,93,59,102,88,100,103,106,102,105,91,109,95,84,99,115,117,102,92,105,98,94,101,101,94,99,101,92,106,109,91,104,101,88,84,90,104,102,98,79,97,82,98,100,94,86,83,87,97,83,100,102,101,95,101,101,92,90,104,110,100,82,102,100,97,92,97,83,98,106,91,102,92,103,97,102,105,94,109,107,104,97,101,88,98,110,103,96,102,101,101,85,107,92,92,95,88,102,90,94,88,89,91,94,106,101,97,83,94,89,104,92,90,99,105,98,96,89,84,96,105,100,92,92,110,95,103,97,92,94,88,105,94,103,87,103,89,105,92,106,90,99,99,96,85,97,100,94,100,96,91,100,104,110,108,94,93,88,103,96,106,97,89,97,91,95,92,98,96,99,88,97,80,88,89,87,86,116,109,95,90,104,93,92,87,85,97,63,98,96,99,92,92,89,84,97,94,101,88,110,88,71,90,99,94,88,85,94,95,93,96,91,106,83,103,101,90,97,111,92,87,102,91,87,96,90,87,88,84,101,85,86,99,103,94,100,94,97,106,100,88,90,82,102,111,106,94,99,104,93,106,90,100,99,97,96,87,82,103,73,100,101,89,97,92,110,95,104,103,92,96,103,95,95,93,90,95,95,88,93,98,104,79,95,94,83,90,93,69,92,93,97,102,86,93,99,105,89,94,94,92,96,86,99,75,100,97,100,95,102,91,86,97,62,64,98,90,99,93,94,104,104,109,109,107,95,92,98,109,83,90,107,102,96,107,89,93,110,89,101,98,100,91,91,97,83,89,111,98,114,96,90,83,91,92,109,92,108,86,88,99,92,100,96,88,106,92,100,97,100,88,103,97,110,80,107,104,97,101,86,108,108,88,91,95,91,98,83,106,109,104,92,101,93,92,96,83,99,73,105,96,84,109,93,96,113,88,102,93,97,107,101,109,73,105,79,99,98,94,93,105,101,98,82,94,92,90,78,87,96,109,90,91,83,103,94,105,100,103,97,88,97,92,104,106,104,92,93,95,93,90,104,115,87,98,86,98,129,104,97,87,100,98,101,98,93,100,103,97,87,98,96,96,88,89,103,97,108,96,87,84,96,79,91,93,102,100,104,106,98,102,97,110,90,95,107,97,91,89,88,99,92,92,67,89,92,82,102,97,97,111,95,99,87,93,88,95,111,98,103,92,92,109,104,91,96,88,99,90,76,95,101,91,94,97,87,95,92,108,93,101,63,101,79,106,99,99,82,81,98,84,98,90,100,82,82,91,92,94,89,104,91,84,101,95,91,102,92,95,90,104,96,100,100,104,93,95,93,97,105,95,77,101,75,111,96,101,103,104,87,92,105,98,100,92,100,110,103,103,106,96,85,105,90,91,103,104,101,109,96,104,92,87,102,88,105,81,100,92,100,101,95,95,102,99,88,101,88,90,80,93,104,97,95,86,102,83,104,98,97,101,107,89,88,89,85,99,91,104,90,84,98,82,95,101,96,97,89,94,98,112,98,93,99,97,100,98,84,106,93,89,109,105,71,97,98,91,99,88,97,102,116,96,100,96,98,61,100,87,97,90,93,89,95,98,102,98,94,105,103,91,110,102,94,97,105,90,100,78,96,96,93,106,98,100,84,94,91,78,98,101,97,91,93,91,87,91,108,105,96,96,93,96,106,90,105,102,100,97,97,94,105,101,91,96,97,100,93,96,94,97,91,84,102,95,86,93,108,80,88,101,100,99,129,89,95,85,110,96,91,109,92,94,94,90,91,105,98,101,98,101,96,97,95,104,101,101,104,116,88,90,75,86,93,89,103,92,88,81,95,100,92,92,97,88,94,103,91,87,99,74,99,106,105,94,99,94,90,101,94,83,82,106,104,89,90,90,97,103,97,86,98,94,98,86,104,93,80,95,104,110,99,91,94,99,80,92,91,95,94,87,88,104,94,94,98,89,100,90,96,99,93,103,93,89,101,98,106,94,105,95,75,98,93,92,96,101,100,97,103,98,113,69,100,91,94,98,100,106,100,115,96,93,109,86,101,95,98,94,117,84,114,90,103,100,101,109,96,102,106,101,91,102,98,88,103,93,107,106,102,108,104,84,101,107,94,96,95,88,100,97,98,84,98,96,84,104,103,95,93,109,110,91,101,98,92,95,99,94,98,106,112,86,100,97,91,94,102,95,111,92,98,80,98,109,99,77,108,98,90,81,89,103,100,96,96,101,92,84,97,107,104,100,106,110,101,116,108,90,103,102,105,95,94,102,100,101,92,103,72,95,106,107,93,99,87,93,94,100,104,93,64,101,100,107,97,101,122,92,88,98,104,95,107,90,109,104,104,113,104,95,91,108,106,98,94,110,101,100,91,106,83,96,116,107,98,93,91,120,101,106,93,91,104,104,84,98,86,113,104,96,108,99,101,92,120,106,104,101,84,95,96,87,88,99,93,98,107,101,96,95,110,105,94,98,88,89,117,108,97,97,105,87,96,92,104,113,110,108,108,94,106,91,96,100,103,96,94,101,100,88,92,98,93,102,86,101,101,85,93,91,97,101,97,94,102,93,97,92,91,110,93,90,92,93,96,96,104,96,111,94,105,102,102,101,107,105,99,110,88,97,98,98,105,107,105,92,97,98,108,103,93,109,107,88,90,57,94,100,99,83,80,87,99,100,91,96,91,100,93,82,96,111,98,99,102,87,113,87,108,100,86,94,96,105,100,99,97,103,80,95,100,104,102,104,97,95,86,103,119,94,103,121,95,102,92,113,85,89,117,97,96,96,99,95,96,108,96,109,78,91,95,99,99,103,98,104,95,86,110,91,109,99,104,116,102,98,86,95,93,89,89,103,101,90,101,92,99,86,105,91,103,103,101,101,112,93,74,97,99,87,91,93,74,104,96,100,100,94,103,82,96,95,104,101,107,98,101,97,100,83,78,97,92,94,104,92,94,100,110,106,92,93,88,99,90,99,100,100,93,97,100,92,89,97,93,100,99,101,104,99,100,91,64,105,98,107,86,97,88,104,103,99,100,101,92,102,105,97,106,93,103,93,99,101,101,97,123,92,95,103,101,80,97,100,98,92,89,93,98,98,100,97,88,107,96,97,95,87,66,94,94,95,106,100,100,92,90,97,92,101,93,103,97,100,98,127,97,72,98,100,82,100,101,111,104,89,97,92,105,100,93,105,116,96,99,99,90,104,96,106,87,92,100,100,86,100,91,98,99,100,100,98,80,106,101,100,99,100,89,99,95,89,102,101,96,96,92,91,83,92,98,113,94,97,93,109,100,78,99,101,94,112,90,98,99,99,92,99,110,106,109,91,107,88,98,101,97,90,78,91,81,82,105,91,93,94,84,96,79,90,105,103,68,97,104,99,94,93,92,86,87,100,89,89,98,105,107,92,90,97,101,94,101,105,101,101,101,100,100,99,109,98,104,100,92,96,83,89,100,106,92,108,97,95,93,107,106,100,99,99,109,95,100,92,95,99,96,96,93,106,104,92,90,98,102,107,85,89,102,98,92,105,101,97,104,97,105,105,100,95,91,116,78,112,106,105,103,98,93,87,92,88,104,97,94,99,109,104,95,92,108,100,94,102,100,110,87,94,100,101,85,93,106,97,94,104,109,96,96,92,96,86,94,95,89,87,102,106,102,102,116,108,103,66,96,101,104,110,108,90,96,101,100,87,102,95,90,114,93,97,109,109,100,104,102,88,93,101,83,95,97,102,101,94,86,102,105,96,92,86,112,96,107,113,88,107,105,88,97,94,97,94,85,96,87,105,99,95,82,87,95,106,91,93,84,106,104,98,103,94,112,109,92,111,94,102,90,103,112,103,83,95,72,88,105,81,111,92,107,106,88,99,100,97,105,83,98,104,93,96,99,91,92,109,106,91,100,107,96,104,87,88,96,94,88,120,84,99,106,112,106,98,100,89,88,102,101,96,105,118,105,101,105,92,94,104,110,99,93,97,100,84,91,101,96,102,94,93,89,96,95,83,74,94,97,95,106,105,93,96,100,115,102,91,100,99,97,94,132,103,92,98,84,106,90,94,97,100,108,88,109,95,114,88,96,118,103,79,100,92,88,93,87,91,121,107,107,105,100,98,98,96,91,97,113,100,102,107,97,108,103,98,125,97,94,88,106,113,96,94,130,98,92,96,92,103,99,79,91,114,89,94,104,97,91,105,95,100,89,120,97,93,105,107,91,93,73,93,91,106,103,87,89,108,97,80,99,87,92,95,93,98,96,104,85,75,93,97,100,96,88,95,94,96,97,104,106,98,105,98,107,83,104,95,98,88,102,104,87,102,98,87,102,86,103,92,101,118,107,94,95,99,92,102,102,103,100,102,104,87,112,105,106,92,101,113,104,89,99,99,107,86,112,92,98,99,120,101,84,85, +738.58179,104,103,94,102,85,92,104,91,93,94,102,114,93,95,95,93,98,97,103,92,111,102,88,104,98,109,104,102,86,98,87,92,87,102,102,111,92,102,101,91,101,101,81,101,81,95,89,106,92,100,92,96,94,87,100,95,96,99,113,96,90,106,100,93,94,104,94,88,88,96,90,97,99,84,89,113,85,105,96,94,95,94,85,98,103,92,106,101,92,91,95,84,95,98,96,101,99,90,97,86,91,113,94,93,106,98,94,101,98,60,96,100,98,109,103,99,96,103,93,99,97,95,92,97,99,114,94,91,108,115,86,106,97,105,98,96,101,97,98,95,98,105,95,99,100,96,112,101,100,99,97,101,102,89,69,95,101,92,95,98,91,100,98,89,95,95,92,97,88,96,100,96,106,93,102,101,83,96,94,97,100,94,92,96,104,103,99,94,109,90,86,99,104,91,99,86,68,98,102,98,100,102,93,96,96,93,99,109,93,116,98,101,105,110,97,99,83,94,96,98,101,99,87,90,89,96,95,109,105,101,91,105,98,95,103,101,98,106,89,88,100,109,104,102,98,77,101,95,84,104,100,98,96,99,109,102,103,97,94,112,92,106,101,103,94,90,97,92,98,92,95,102,91,102,85,101,105,110,95,95,96,87,96,112,106,84,93,101,96,104,100,100,95,104,116,90,91,106,94,91,101,96,111,111,93,112,105,109,94,101,93,89,101,101,87,95,97,95,101,94,99,96,105,99,102,89,104,101,94,93,94,95,100,93,98,96,90,91,91,104,92,99,92,91,100,104,103,108,96,97,100,114,98,109,107,99,102,106,95,90,104,89,108,99,102,92,94,95,106,95,90,95,105,97,94,97,94,102,106,103,101,97,95,99,100,93,87,89,89,92,98,117,94,97,95,94,94,72,86,99,86,101,100,97,85,96,91,96,99,89,88,107,101,95,91,91,102,94,82,93,94,86,83,110,99,94,96,83,106,110,96,101,84,97,102,97,92,89,97,102,88,93,96,98,86,94,101,91,98,105,98,91,92,108,97,96,92,96,102,91,96,89,102,102,106,99,99,87,94,102,101,106,98,121,101,88,99,108,102,93,95,91,98,89,91,96,93,97,80,88,97,102,99,82,110,97,102,96,100,91,113,92,90,100,102,90,100,88,101,100,113,105,100,105,99,89,96,98,95,85,99,95,87,98,96,98,99,104,103,109,104,88,91,86,98,89,105,98,94,97,94,100,100,90,94,88,98,100,95,94,94,97,103,93,79,111,91,96,90,90,108,82,89,87,101,100,90,96,101,95,102,95,94,100,103,93,98,90,101,96,93,105,96,96,74,103,94,114,94,91,114,102,94,90,104,92,92,101,95,83,102,103,112,91,95,93,86,100,96,95,101,92,94,91,99,90,87,93,73,112,83,104,95,97,91,85,98,90,92,88,88,94,99,106,77,98,101,108,95,91,104,102,92,100,90,75,94,90,92,83,101,90,98,93,104,92,101,104,109,97,91,94,105,97,91,97,112,95,91,102,96,100,103,101,88,111,96,94,96,97,106,94,103,102,90,93,90,94,105,89,100,96,99,109,102,97,99,109,92,88,100,100,100,86,104,89,91,93,99,96,99,84,95,106,97,100,91,101,103,90,104,102,102,97,95,99,90,97,109,86,83,96,95,101,106,103,99,88,98,104,104,95,87,89,91,83,95,92,94,103,100,93,90,104,101,102,108,101,94,95,96,97,89,95,102,103,80,104,102,107,111,103,113,101,85,97,97,96,105,97,104,89,103,92,98,110,98,108,109,105,91,88,102,103,113,105,104,90,98,93,95,97,96,80,103,97,102,84,106,94,103,100,93,103,93,85,98,95,106,75,95,102,103,96,96,99,88,86,96,105,108,87,92,94,85,122,87,88,96,107,85,96,92,96,99,90,91,93,105,101,103,107,96,93,92,95,100,97,94,96,104,94,92,92,101,95,91,100,94,91,99,95,86,104,107,98,103,87,93,98,107,105,103,103,92,91,90,94,102,99,112,101,91,95,94,87,104,97,88,99,106,104,77,90,99,89,98,95,81,95,93,103,98,87,97,100,97,97,101,92,102,97,101,81,105,103,96,95,95,97,99,104,100,116,103,92,88,89,110,99,97,104,95,91,89,89,94,95,105,91,92,94,103,96,113,104,96,91,111,89,96,106,93,100,97,92,81,97,94,102,93,109,99,93,93,108,88,85,100,97,91,92,97,101,77,90,87,91,96,95,88,98,99,107,96,102,98,102,91,101,95,100,93,94,90,108,107,96,92,99,92,103,98,107,82,100,93,105,96,101,104,110,91,81,86,102,114,92,102,98,94,94,100,89,94,88,106,100,98,91,98,93,107,98,95,93,98,92,113,102,94,105,103,100,96,96,98,88,94,105,97,94,105,96,96,87,100,102,88,100,109,97,92,95,108,96,97,88,100,78,102,106,93,94,92,92,108,110,91,104,93,98,102,97,99,104,92,95,104,105,91,97,102,108,83,99,102,96,94,97,101,113,101,95,92,97,89,107,90,83,97,104,93,90,111,103,94,98,108,106,110,104,98,101,104,87,108,96,104,91,99,91,97,102,108,106,98,99,114,103,105,94,100,101,101,94,101,68,101,97,94,87,111,101,94,108,107,90,107,101,92,120,99,97,103,91,102,96,104,80,94,105,94,104,110,92,113,99,85,111,92,103,94,101,86,98,97,96,83,94,98,110,101,101,99,101,101,86,111,120,100,108,66,110,96,103,91,88,109,105,102,97,103,95,107,99,99,102,94,108,102,93,98,95,94,88,97,103,102,99,105,92,104,101,99,102,100,108,93,104,105,97,94,106,97,105,91,100,100,108,112,97,84,83,98,93,98,110,99,114,101,103,97,102,106,97,89,94,100,108,99,98,101,103,100,92,102,95,91,104,100,94,95,88,87,91,64,97,91,82,83,103,96,94,95,93,87,96,98,100,99,115,100,80,99,128,95,102,106,96,99,90,91,105,101,82,87,102,95,103,109,95,109,115,112,106,110,87,99,99,104,101,85,92,93,102,100,79,100,104,98,91,103,91,110,76,99,90,89,88,109,108,110,87,101,100,105,106,95,80,108,90,81,111,100,90,85,101,91,96,105,88,92,100,72,97,106,101,93,91,98,90,106,89,97,97,97,100,113,92,109,104,90,99,98,102,108,109,96,103,104,95,94,101,81,88,88,110,98,87,108,100,105,96,91,96,106,95,99,110,101,101,106,102,105,92,94,124,98,98,100,92,87,99,107,108,87,98,98,100,89,86,118,96,102,102,93,94,92,95,96,87,77,94,97,90,93,92,102,99,130,115,104,90,117,94,102,103,97,92,90,95,89,109,101,97,96,107,101,88,94,98,109,109,116,105,96,88,117,92,103,91,101,97,117,120,108,94,95,96,91,86,91,105,102,94,94,98,95,101,106,84,93,101,92,97,102,111,105,95,102,107,95,99,100,95,94,95,105,92,96,117,102,96,105,98,100,98,89,98,109,95,102,107,101,101,98,105,94,92,107,99,110,99,107,113,95,98,79,107,104,96,92,101,102,94,101,94,99,89,89,101,104,91,102,97,104,102,90,101,99,94,97,97,99,91,102,105,103,92,106,117,94,102,94,97,116,92,103,102,96,92,90,113,103,101,96,97,96,101,96,101,93,98,98,93,107,88,103,94,89,103,90,117,107,83,98,91,97,97,95,111,99,90,113,102,127,104,103,103,91,87,93,92,90,101,101,102,96,102,86,95,100,95,103,99,97,108,101,105,94,110,94,104,99,92,101,100,78,94,100,106,93,96,87,96,91,104,105,103,92,99,101,91,106,99,103,96,102,90,85,99,99,92,98,96,89,94,95,97,112,83,101,96,100,109,93,97,101,91,106,84,95,90,94,97,92,85,94,99,88,88,112,94,98,96,95,106,99,93,86,95,94,101,98,83,87,112,91,87,111,101,84,96,105,101,80,88,94,89,105,89,100,92,106,95,92,85,103,102,98,93,101,83,122,95,117,114,99,90,106,83,90,110,106,90,98,104,105,103,101,90,99,90,103,98,81,99,95,97,105,106,116,87,85,113,94,105,96,107,103,88,104,91,87,108,103,97,86,100,95,98,104,98,93,109,113,91,88,100,101,91,91,89,89,111,97,101,96,92,82,92,107,107,91,112,85,106,108,84,88,107,94,96,87,100,97,95,95,102,99,101,100,104,106,104,88,96,113,87,97,98,93,107,85,108,94,101,114,99,98,108,105,90,106,103,119,83,92,104,102,109,103,101,101,97,93,105,87,98,105,103,102,102,88,108,92,88,98,99,102,94,95,101,99,98,83,95,109,113,99,109,95,97,121,92,99,79,100,115,93,111,96,104,97,98,103,90,93,96,90,84,100,107,110,129,84,104,102,101,111,92,100,92,95,98,95,84,98,95,90,94,106,98,81,112,107,106,91,94,99,104,102,94,109,103,90,91,85,89,74,94,90,104,92,101,99,97,100,89,102,71,104,99,100,103,87,108,100,98,85,107,108,95,100,105,100,106,92,109,108,107,107,106,99,97,92,102,106,95,88,106,103,93,100,86,108,96,91,102,71,92,79,95,89,102,102,93,107,97,98,101,84,102,109,102,108,97,99,102,94,72,98,106,88,100,100,87,98,108,102,97,104,93,99,91,104,104,98,77,87,108,81,91,118,88,106,94,116,93,105,97,92,105,113,77,88,98,69,101,95,95,102,98,109,112,95,110,88,102,109,102,104,108,86,106,96,99,99,93,90,103,101,101,89,96,98,92,89,93,103,92,100,94,91,100,81,108,103,99,100,112,101,105,86,109,97,104,108,100,108,92,93,105,104,95,97,103,94,83,111,116,92,101,92,89,116,101,102,101, +738.72321,96,100,95,100,85,94,90,95,97,93,102,87,104,88,106,97,98,105,101,101,96,103,87,93,105,108,86,120,110,97,108,95,87,103,106,108,95,91,91,100,88,93,85,98,98,95,93,105,85,108,92,93,97,105,93,106,105,99,93,88,102,102,103,96,103,92,95,96,94,101,96,105,109,95,99,99,83,128,99,112,97,92,96,92,100,87,93,101,94,121,94,91,70,95,97,87,106,81,97,94,98,99,95,75,86,96,100,95,89,95,93,101,105,99,103,99,97,109,97,79,97,109,105,92,101,96,101,91,95,98,95,110,98,93,101,98,93,103,103,100,91,94,97,94,87,86,87,96,85,90,98,101,99,100,82,98,97,87,94,101,102,93,93,102,95,90,89,99,95,77,99,106,90,99,99,105,98,93,94,105,96,97,97,99,81,101,104,99,100,91,102,107,102,101,91,93,103,104,94,100,81,88,79,95,96,110,109,94,125,101,91,103,100,104,94,113,101,102,97,99,99,106,93,110,100,92,97,107,94,108,104,100,90,109,98,95,100,99,103,104,105,94,100,100,99,82,95,96,113,95,94,98,93,96,92,100,100,87,94,100,88,104,97,100,90,97,94,101,91,83,98,89,111,98,101,99,96,104,112,101,93,97,94,97,96,87,87,101,92,99,94,93,101,85,104,117,101,87,88,94,87,80,92,98,85,107,100,112,92,100,84,104,88,92,97,101,100,97,95,98,99,87,94,95,96,85,99,73,95,95,95,104,93,91,88,96,90,91,102,96,89,84,85,92,95,104,92,113,105,97,74,96,109,94,108,92,98,103,106,94,99,94,95,95,96,98,96,103,89,107,100,86,100,89,103,80,108,98,96,92,102,94,121,94,101,100,92,105,91,90,102,86,95,105,101,94,86,93,123,114,97,65,102,57,95,94,104,86,91,91,95,106,90,96,97,84,82,101,99,97,100,83,93,98,97,99,93,96,86,96,68,80,99,98,102,82,95,97,92,94,99,104,93,87,94,85,117,94,94,90,93,114,97,87,110,93,93,96,115,96,87,92,98,95,99,101,96,113,94,97,95,114,94,79,99,102,101,93,108,91,87,110,83,98,88,93,92,91,95,99,95,93,96,92,88,92,97,102,102,91,93,98,94,96,95,92,87,102,98,94,100,110,88,96,93,98,89,96,91,95,102,96,84,105,98,110,100,105,98,116,98,87,96,91,111,106,92,98,113,91,94,86,92,97,104,104,91,93,109,67,109,93,100,104,92,90,105,105,91,98,90,98,72,97,77,69,95,87,95,91,88,90,110,92,91,91,103,97,83,92,100,93,95,83,91,97,94,96,98,86,110,92,105,99,95,104,92,96,99,117,90,110,98,92,101,97,97,96,91,88,90,92,103,87,88,98,99,92,105,102,92,102,97,87,100,80,103,101,100,96,97,91,78,98,84,94,93,97,96,93,87,89,88,105,94,100,98,86,96,95,99,93,108,98,92,99,83,100,98,99,101,94,96,122,91,86,105,94,95,108,102,99,99,92,106,91,97,98,112,96,96,93,98,84,95,91,94,96,82,96,104,98,96,91,98,91,96,92,107,92,83,112,92,96,97,105,103,90,99,82,88,112,93,100,94,108,98,94,84,82,99,98,99,106,92,90,94,106,100,111,94,97,88,99,90,103,93,83,95,91,87,91,92,59,101,98,95,84,104,111,105,96,108,94,89,100,104,88,96,81,93,98,93,89,97,104,94,87,101,96,104,93,95,94,88,87,104,91,96,98,110,111,83,100,93,100,82,105,96,105,102,103,95,96,93,93,102,71,95,103,106,101,105,97,68,93,92,95,102,90,101,89,97,98,85,96,100,91,109,90,97,105,91,91,101,94,107,92,96,90,97,105,97,86,76,97,92,93,121,110,93,109,99,95,61,96,87,100,87,95,96,95,96,97,86,118,95,100,103,119,98,89,101,92,93,93,92,96,99,101,110,95,100,101,95,100,97,80,99,86,96,99,97,88,105,100,94,106,101,97,95,105,97,100,96,129,100,108,100,96,94,99,100,101,100,110,104,107,98,92,94,97,110,94,77,108,100,108,104,96,92,105,91,94,101,80,96,93,83,77,89,121,88,83,86,70,105,99,94,94,96,95,92,98,71,107,100,101,106,102,86,72,98,78,101,101,94,103,93,99,93,103,104,95,83,109,113,94,75,93,97,101,94,96,92,97,95,98,87,102,88,110,111,104,93,92,88,95,94,107,105,113,95,105,87,93,97,91,115,98,95,116,92,94,113,88,92,97,93,96,99,121,97,93,91,95,120,115,96,97,95,94,91,102,97,87,90,93,102,92,93,97,97,87,93,86,100,87,92,106,91,93,95,106,99,93,90,107,79,108,100,99,104,97,96,98,91,108,100,98,104,105,97,97,88,102,100,68,94,87,100,94,106,95,94,93,91,106,93,86,99,98,85,98,109,92,90,98,99,99,100,100,91,111,90,99,94,101,96,93,67,87,95,96,97,99,84,94,84,98,81,103,97,94,99,98,105,101,90,95,84,116,100,103,94,101,112,104,96,85,106,115,99,104,87,100,95,107,111,80,88,92,87,96,99,87,100,93,113,113,109,99,103,100,80,99,97,96,101,112,110,92,96,101,105,95,100,95,95,102,99,97,99,91,105,105,102,93,98,94,97,100,115,94,94,103,103,107,82,85,101,75,104,93,106,102,94,102,108,95,96,100,109,95,100,106,101,99,88,108,101,91,104,99,102,111,105,96,96,83,98,101,99,99,109,107,104,97,107,93,80,102,101,98,99,98,96,82,94,97,101,93,111,99,92,109,99,102,107,87,108,110,109,88,93,97,100,97,116,94,97,91,107,99,99,89,98,100,97,112,110,105,104,100,100,104,101,103,98,102,102,109,103,105,106,94,103,97,95,99,96,108,85,100,100,105,95,91,84,105,112,105,102,106,105,87,85,93,98,88,96,99,98,102,95,97,95,111,105,88,107,97,93,100,120,95,99,102,96,78,111,102,94,104,110,111,105,96,90,98,92,108,96,101,97,96,94,96,106,97,101,92,90,100,97,91,105,109,94,85,96,99,94,92,99,104,107,86,120,97,92,95,97,99,106,108,109,95,79,100,90,89,90,96,95,94,102,105,93,90,85,102,101,89,92,112,107,73,95,101,105,99,95,92,89,97,97,96,90,100,98,80,98,105,109,82,96,97,102,104,108,122,104,93,86,95,105,93,110,94,100,100,87,104,93,87,98,107,94,106,104,105,98,103,98,109,96,96,108,91,97,91,103,85,102,98,83,98,88,74,67,95,107,104,99,110,96,102,93,128,97,98,85,111,100,95,108,101,97,93,98,95,98,111,99,101,90,105,93,96,101,101,101,98,101,104,98,96,99,93,96,101,101,95,92,108,109,99,92,98,100,96,93,93,110,104,95,103,95,100,88,82,97,95,88,108,96,96,100,86,78,104,102,101,91,96,113,101,101,96,92,104,98,105,96,89,94,99,114,95,102,96,103,113,91,108,102,99,101,102,90,105,94,77,90,104,92,100,100,108,110,100,100,102,106,94,96,94,99,111,99,81,86,88,95,96,92,83,94,105,103,111,101,99,96,87,107,98,90,107,101,88,96,105,91,97,92,97,94,103,94,107,102,92,90,106,94,97,96,95,105,97,104,97,94,94,105,98,92,97,99,94,103,105,106,97,104,98,90,101,95,101,94,81,110,94,94,96,84,95,96,72,79,83,106,95,96,95,91,99,108,102,94,92,91,85,90,96,123,102,95,94,96,117,92,108,91,105,88,98,98,83,98,81,95,97,90,95,93,96,102,99,116,95,113,92,98,99,110,98,87,94,96,88,109,95,97,100,104,95,94,106,97,101,97,101,101,88,87,105,104,103,95,108,93,97,94,93,105,91,99,104,97,94,103,91,99,101,92,93,83,109,90,89,102,108,100,101,89,97,76,97,94,109,92,94,87,106,99,96,108,96,95,99,87,101,88,101,98,119,98,96,112,87,96,90,100,87,96,106,100,88,80,109,116,112,98,99,97,101,106,103,99,110,99,99,107,95,94,91,92,90,97,99,97,101,102,87,95,88,102,95,101,100,100,99,103,89,108,103,102,92,99,95,104,90,104,98,92,106,104,100,104,97,116,86,98,90,111,103,110,96,100,90,98,98,101,105,93,105,100,102,99,109,100,105,96,97,113,100,99,83,95,100,84,108,113,135,105,106,97,97,91,95,102,98,103,112,107,103,99,91,99,103,102,109,95,97,101,102,96,88,96,101,98,66,98,98,87,99,113,96,108,95,98,102,98,99,108,109,99,86,96,97,115,102,102,100,96,104,92,93,86,97,89,91,95,108,91,85,111,108,86,109,91,92,105,92,98,84,100,93,95,98,96,83,78,103,100,109,91,102,102,109,113,92,100,99,94,102,95,104,99,96,95,106,105,101,85,108,88,97,103,97,109,113,106,92,98,101,90,95,90,108,89,100,96,114,93,94,93,81,99,94,107,88,100,101,105,100,85,113,98,94,100,85,99,90,101,90,96,102,107,101,109,93,99,95,104,107,104,104,105,105,98,93,122,102,91,108,100,111,100,105,91,104,98,99,97,98,97,97,90,100,96,99,104,124,99,100,99,95,113,105,97,103,97,98,87,109,101,101,102,93,109,90,91,107,100,87,98,98,98,102,122,103,111,113,88,91,90,87,93,94,92,94,100,93,93,99,111,104,90,96,101,90,101,95,111,87,103,81,120,97,97,96,90,101,101,102,94,91,106,86,96,94,91,113,101,96,99,76,104,91,98,99,110,99,105,90,98,91,85,100,99,97,101,95,90,97,94,108,94,98,110,111,98,98,98,106,104,102,89,94,110,109,98,96,95,83, +738.86462,84,92,86,94,99,97,99,93,99,102,102,87,91,112,99,107,86,104,77,94,91,97,94,109,85,96,101,94,90,85,91,102,100,85,102,96,109,93,95,104,84,88,100,89,103,116,95,117,97,75,91,105,97,103,102,80,94,93,112,77,98,94,102,92,101,107,97,105,90,98,102,87,92,102,100,101,108,111,110,111,96,106,104,105,107,79,101,100,93,103,92,98,96,95,110,87,80,91,80,98,99,99,97,95,102,118,102,88,95,89,90,106,99,95,92,97,98,84,95,89,88,93,106,105,100,63,95,92,98,84,95,106,99,99,95,95,92,104,81,91,81,97,101,99,86,93,109,96,102,97,97,79,99,84,100,79,99,98,99,117,100,111,109,96,96,87,90,100,102,70,95,117,102,103,103,92,87,94,97,96,93,99,98,90,98,107,99,87,105,99,74,100,95,101,89,98,94,110,71,78,90,86,99,102,109,103,97,93,92,98,93,101,89,106,97,97,92,102,90,89,96,103,100,102,72,87,115,108,101,97,91,97,90,108,99,100,94,105,92,93,87,96,106,102,91,91,88,99,98,98,101,106,94,96,96,106,92,104,93,89,97,109,91,95,106,79,104,78,99,90,95,90,99,98,99,103,112,114,103,100,102,108,95,95,90,105,105,95,83,90,113,97,100,98,101,91,79,97,86,107,103,95,89,96,93,102,96,105,90,100,96,104,109,96,88,96,100,104,99,110,88,90,101,101,94,92,102,92,91,83,107,103,106,100,110,85,98,101,88,87,98,107,90,88,94,106,105,110,98,103,109,91,111,92,99,112,102,105,100,109,102,97,94,85,94,87,133,100,97,92,93,103,100,95,102,96,94,94,102,91,96,97,93,95,113,92,95,93,103,97,94,108,91,117,100,90,74,97,111,92,91,111,99,95,91,101,95,109,105,100,102,100,89,103,120,91,74,97,105,80,83,90,83,90,88,90,94,92,109,110,101,89,106,120,86,88,98,99,92,90,79,105,98,95,101,95,96,99,98,109,83,83,106,98,108,98,98,97,98,84,94,92,90,103,105,113,92,96,98,95,95,106,102,97,95,91,96,110,106,104,96,92,91,95,99,98,81,100,106,90,99,93,99,102,106,97,91,101,95,96,108,95,102,107,95,97,102,105,96,95,109,93,91,97,88,72,97,86,97,99,104,91,96,101,113,98,115,103,91,100,95,91,96,98,99,93,103,90,97,104,93,101,95,103,98,103,97,102,107,83,95,100,105,99,100,97,100,86,103,90,99,97,92,103,104,98,111,102,99,100,98,92,94,99,105,80,101,99,103,101,92,97,102,101,95,93,101,110,110,99,114,94,101,70,99,95,97,72,104,85,89,84,97,100,95,91,103,95,90,99,96,101,103,100,91,90,92,92,91,99,95,117,97,96,92,96,99,103,99,107,90,85,96,94,96,86,87,79,88,99,98,105,93,103,86,83,86,93,83,96,96,87,110,107,91,113,109,103,97,96,101,94,84,96,88,109,103,116,108,99,113,109,108,112,85,68,90,94,97,93,102,105,107,94,81,99,102,94,97,99,93,98,96,75,95,91,100,105,113,91,94,89,90,98,98,95,95,88,97,95,111,101,101,102,84,102,107,108,79,94,129,83,105,103,92,93,94,97,96,95,100,102,124,112,94,89,92,71,107,94,94,97,100,103,92,87,105,91,95,97,106,96,97,67,96,86,103,93,98,96,106,100,84,97,93,88,81,109,94,101,99,108,104,107,88,107,101,78,93,100,102,100,97,87,93,106,94,99,96,100,103,110,99,111,116,99,91,106,95,87,103,95,87,102,109,103,90,94,102,94,104,86,89,87,104,93,98,101,103,90,100,103,101,98,102,99,105,94,93,101,98,100,93,90,95,104,111,90,102,105,92,98,83,94,97,109,93,97,92,95,89,93,91,95,93,104,130,101,101,94,93,97,98,99,108,92,96,107,95,96,95,108,106,102,89,90,100,93,100,98,104,104,105,93,114,84,98,103,105,93,102,108,96,97,90,108,101,93,89,97,98,86,88,106,100,104,107,105,108,103,100,96,98,112,96,93,87,88,84,93,94,96,104,100,100,92,101,100,81,104,105,67,91,103,100,90,87,96,98,108,100,95,95,94,89,83,86,108,104,99,97,86,107,103,105,90,81,99,97,100,98,106,104,95,111,86,96,72,83,93,92,100,95,88,100,91,109,87,91,92,88,91,104,89,107,94,81,89,91,93,106,97,103,84,98,94,85,101,92,97,97,97,95,91,108,103,87,98,94,96,94,85,101,97,93,74,89,96,106,100,98,99,108,99,97,97,90,86,105,102,105,107,98,96,83,93,94,102,98,104,103,89,96,98,92,103,97,90,104,95,90,95,89,87,103,99,97,109,102,116,109,97,95,94,98,95,79,106,89,94,91,108,98,113,91,87,95,98,117,82,90,98,92,116,124,101,95,92,99,91,102,106,103,78,92,107,94,96,103,96,92,80,114,95,100,92,90,79,102,96,93,105,99,108,98,101,111,89,105,87,107,98,88,101,94,111,95,98,110,95,95,106,94,96,92,103,103,90,91,115,111,93,95,98,79,98,91,96,116,92,101,105,106,89,100,106,108,106,99,99,112,88,85,95,106,107,97,97,85,92,106,107,101,92,107,96,99,117,91,92,104,101,102,102,96,87,101,92,102,98,102,104,101,97,96,109,96,91,98,91,97,99,81,96,103,119,105,96,110,88,98,102,94,92,101,96,89,97,102,88,95,100,111,102,104,89,100,106,82,91,77,107,97,107,98,98,99,96,83,93,100,105,98,89,89,98,98,87,111,99,109,108,101,100,99,97,91,109,102,111,108,84,107,84,106,95,93,108,100,100,108,111,91,91,102,100,106,82,110,103,100,98,88,93,126,102,109,100,102,110,102,98,99,98,94,95,68,100,100,97,76,100,102,102,100,103,114,101,97,84,96,102,116,91,97,101,103,94,101,94,103,104,87,88,95,100,100,84,108,97,89,83,88,109,92,98,111,99,97,100,101,97,91,102,111,94,101,99,90,96,106,107,96,98,103,91,104,105,72,90,90,95,103,95,107,97,113,98,100,90,103,100,98,108,114,98,95,88,92,95,101,89,108,87,103,115,95,88,103,104,91,100,95,99,99,92,106,99,101,97,90,98,113,92,99,98,94,93,109,96,103,88,94,97,94,97,93,95,98,99,87,109,89,113,100,94,90,99,107,95,108,101,103,102,85,90,90,94,86,95,109,94,94,100,100,98,96,98,102,94,102,93,107,105,88,106,103,95,93,99,98,110,95,95,104,96,103,98,80,96,98,101,98,97,83,101,91,107,104,102,93,100,80,105,97,104,98,92,89,93,96,101,96,97,99,103,98,100,101,101,89,100,93,84,102,100,110,93,99,105,95,97,110,93,84,94,100,112,92,97,122,88,99,104,83,96,87,104,96,84,98,97,108,101,60,97,98,95,98,101,106,106,94,106,107,66,90,95,99,94,102,100,87,124,92,107,105,112,90,108,96,108,104,103,104,108,92,105,98,105,103,87,89,96,99,93,96,106,96,91,103,100,103,107,99,103,99,91,102,103,104,113,100,104,112,84,95,105,105,120,96,102,98,121,98,95,91,101,108,117,94,100,102,98,100,89,86,92,97,70,83,108,64,103,90,96,105,104,104,97,103,100,116,101,98,98,98,98,100,96,99,102,111,115,109,67,102,91,82,101,103,102,96,90,96,100,105,98,101,105,101,89,99,108,97,100,91,87,104,101,105,107,86,95,96,98,100,99,107,102,117,95,95,105,99,87,96,91,92,94,94,120,96,99,98,95,101,87,91,94,111,105,97,93,94,97,87,105,96,89,87,98,89,102,98,90,96,91,96,96,102,97,95,102,98,101,109,102,95,96,109,90,114,105,102,90,95,91,104,96,86,92,89,103,106,106,95,96,91,84,97,93,97,93,101,101,97,98,98,91,89,87,98,108,95,88,93,87,101,117,98,99,89,95,96,100,106,99,100,94,94,92,97,100,105,108,102,102,93,84,100,96,108,102,104,91,98,92,96,97,97,95,89,107,95,90,94,99,101,93,90,93,98,99,94,95,69,88,105,94,100,86,88,99,100,100,96,84,108,94,97,107,85,92,102,108,99,96,97,102,96,109,105,100,110,95,87,107,95,96,89,97,104,106,103,102,107,101,92,95,93,100,91,98,84,113,100,113,101,107,66,101,102,106,103,91,97,96,92,100,95,95,100,102,90,100,98,87,105,103,106,86,104,107,76,116,99,103,95,99,105,112,94,103,97,84,97,94,106,97,105,91,93,100,80,105,99,107,98,105,89,91,100,100,87,105,96,99,105,101,103,100,113,95,123,98,101,105,91,113,87,92,90,104,111,98,97,91,98,93,109,101,106,94,93,90,96,104,79,76,100,102,103,109,102,100,104,105,99,101,84,95,101,101,101,96,83,107,103,95,103,99,97,102,99,108,89,88,106,92,91,98,94,99,114,101,87,106,91,97,94,96,106,104,107,96,102,107,117,102,102,117,108,100,97,84,101,91,94,84,100,87,104,95,105,104,99,86,107,118,123,101,106,103,111,95,103,92,101,87,87,88,97,90,98,99,92,112,96,105,102,95,90,79,109,95,128,99,99,91,102,96,106,112,107,100,113,122,106,90,110,103,109,106,104,97,94,102,99,96,94,96,105,103,101,101,108,75,91,111,81,84,102,95,105,114,92,99,98,100,104,98,118,99,108,95,94,93,96,110,109,113,96,92,100,105,113,105,94,122,93,87,95,113,108,72,102,110,96,112,83,92,89,93,96,97,92,98,80,90,100,97,114,89,103,89,103,104,102,102,109,91,101,103,104,94,110,96,87,88, +739.00604,106,88,98,100,88,104,88,68,85,102,88,88,90,109,102,100,91,106,105,84,94,92,102,91,79,97,92,100,109,104,99,97,99,88,95,112,90,102,99,101,82,101,99,100,89,100,99,91,95,93,94,114,95,90,106,89,87,99,108,102,99,91,96,93,103,100,108,93,96,86,103,84,104,87,88,94,100,98,98,97,96,101,89,110,103,93,88,95,86,94,98,97,61,88,109,104,97,96,79,106,119,93,92,87,129,93,97,95,91,89,102,108,86,92,87,106,86,102,96,107,100,97,96,102,98,111,95,92,97,101,88,94,102,88,100,112,81,83,102,102,92,109,92,105,98,95,102,110,93,95,96,96,98,88,87,88,89,113,114,101,100,98,95,97,99,96,94,93,90,83,102,87,96,99,112,102,95,103,99,95,102,100,95,100,95,90,91,87,101,96,86,105,98,107,91,80,94,93,92,94,94,99,109,76,91,97,95,100,112,96,87,98,90,106,90,100,94,96,103,103,100,90,96,100,89,113,103,83,105,85,107,97,97,94,101,95,96,109,104,92,86,71,94,101,99,90,97,98,97,106,103,117,88,100,98,100,111,100,105,113,94,94,91,113,86,95,89,99,83,88,87,97,98,99,98,100,100,96,70,98,88,104,107,100,99,93,87,99,89,103,91,103,106,95,106,96,110,97,96,95,93,102,93,101,101,100,106,96,93,101,106,99,118,101,88,104,81,100,96,98,82,97,107,96,92,85,98,90,100,95,116,104,105,105,104,104,103,94,89,97,84,109,104,92,95,100,79,95,90,116,93,98,95,101,93,101,69,104,107,85,94,95,109,98,93,100,92,101,80,102,97,99,97,103,100,106,91,104,102,98,104,92,88,101,99,91,105,90,90,95,104,97,97,94,86,89,86,94,92,99,96,88,77,92,96,99,90,105,100,96,102,89,93,114,109,95,108,93,101,104,101,93,91,97,101,101,97,97,91,98,93,92,95,87,87,97,88,105,103,95,112,95,80,90,93,95,99,99,104,100,99,102,98,101,92,106,97,90,98,95,95,97,92,84,96,92,100,107,108,65,96,109,86,92,84,86,98,93,91,105,91,99,104,98,105,112,88,110,94,90,105,93,99,102,97,105,88,100,92,96,102,103,92,99,101,97,99,99,102,94,113,92,116,95,110,101,98,87,93,105,101,93,95,102,90,101,99,119,97,82,89,94,101,94,91,109,102,92,101,103,93,101,96,97,97,103,112,97,98,93,95,99,102,97,93,99,95,87,104,95,95,94,87,105,92,91,108,96,97,103,91,91,110,99,102,98,92,95,100,91,99,91,95,78,89,91,104,91,115,99,96,106,94,93,99,90,83,99,96,102,99,108,98,93,97,81,90,99,96,118,100,99,100,97,96,94,117,92,111,93,105,97,104,117,103,98,86,95,103,95,104,99,102,117,92,100,102,88,87,89,102,100,98,83,87,84,110,88,95,111,102,103,112,98,94,104,95,104,99,92,92,98,89,99,99,77,92,98,103,98,105,98,99,96,88,79,62,119,94,80,94,94,99,92,91,95,97,102,93,61,83,112,86,101,105,99,105,99,105,92,107,95,113,95,94,96,97,112,102,100,93,97,91,83,78,108,97,94,96,90,100,86,109,94,101,105,95,101,91,94,88,105,102,102,103,97,87,91,97,89,100,100,105,97,99,95,112,100,102,101,107,95,98,87,93,102,92,91,97,96,99,103,95,97,88,104,88,102,98,90,97,98,99,98,96,92,84,96,99,93,102,93,104,104,84,90,96,99,87,97,99,99,89,92,102,94,89,91,95,99,88,120,93,94,99,105,107,94,101,101,97,91,89,91,118,100,109,97,93,97,89,106,97,91,107,105,93,109,117,100,109,85,101,103,98,95,87,101,114,100,92,108,106,103,90,94,88,71,86,93,85,96,84,105,100,109,104,103,89,98,80,102,92,89,94,94,94,128,101,93,95,100,83,105,95,100,84,98,104,96,103,112,96,83,91,94,81,96,108,105,105,111,98,107,90,98,78,100,98,95,93,100,108,94,114,107,77,97,94,88,96,87,109,95,93,94,109,96,107,116,107,95,118,98,110,104,91,96,104,113,103,101,97,105,97,108,94,108,95,96,99,98,92,115,97,91,101,101,101,89,89,93,90,103,99,96,108,98,90,101,101,94,96,102,97,91,100,109,97,96,95,91,107,93,95,102,95,96,90,101,97,96,105,89,82,123,82,96,88,91,106,91,98,89,114,98,101,101,101,89,92,87,96,89,94,87,100,97,97,107,102,100,96,101,92,106,99,98,98,86,99,106,104,102,99,97,88,91,86,90,98,92,83,93,95,92,104,103,109,91,108,102,94,106,97,83,98,94,94,93,97,120,103,98,101,94,91,105,87,101,88,93,98,90,104,93,109,97,120,95,94,103,100,108,111,114,84,96,91,87,96,100,88,98,92,87,92,97,113,101,98,87,98,89,87,116,88,108,107,101,85,85,101,71,87,100,102,101,108,106,84,97,91,87,101,76,103,88,89,91,110,100,99,95,105,115,105,97,103,91,106,92,108,106,96,100,107,79,103,103,100,107,104,113,101,113,101,115,102,94,105,105,94,102,105,103,121,101,107,85,108,87,109,101,100,106,101,95,100,89,96,105,99,101,87,100,103,103,105,94,91,103,94,70,98,105,86,98,126,109,104,107,104,111,91,95,120,102,92,81,108,102,104,57,98,105,94,103,94,109,90,105,83,106,116,99,107,99,97,79,102,109,110,81,103,96,98,100,101,109,89,111,85,99,105,101,100,110,96,105,98,102,104,87,92,97,115,104,104,106,94,106,102,102,106,97,101,100,100,99,102,94,91,107,114,80,106,102,84,104,101,102,103,113,85,94,97,95,100,110,89,99,95,106,114,107,92,112,105,91,102,113,95,105,103,98,105,94,105,105,89,100,92,99,101,108,101,88,92,96,108,103,91,95,108,94,89,94,105,103,80,105,98,109,115,108,120,119,105,99,100,96,107,88,107,94,102,114,106,111,98,96,110,88,107,111,112,102,82,101,106,118,90,97,94,98,82,97,99,100,110,103,96,99,110,91,95,107,83,103,95,90,105,99,92,103,103,107,100,95,81,89,101,108,78,92,98,99,111,95,92,78,101,100,101,97,97,98,104,100,95,96,90,103,90,109,103,102,105,104,92,100,98,98,100,84,106,112,100,100,118,100,110,94,94,88,113,100,99,91,109,94,62,106,99,118,89,86,83,81,101,100,111,105,111,100,101,103,88,106,100,90,112,101,97,100,75,94,103,101,94,102,97,102,78,87,100,100,101,96,102,114,109,99,96,109,96,88,94,103,96,93,106,106,106,104,96,112,95,100,89,87,103,96,96,106,105,106,90,108,102,109,88,113,94,98,102,104,106,105,106,101,104,95,88,100,104,77,99,101,98,97,96,93,102,91,92,113,98,104,112,98,107,91,89,105,93,96,105,91,97,117,97,127,106,98,94,94,99,93,100,97,99,105,98,104,113,96,94,100,92,96,98,103,99,100,88,95,92,95,102,87,108,94,101,90,106,95,94,94,94,93,88,96,99,102,114,117,110,87,89,95,108,87,87,94,100,122,105,106,88,70,111,94,101,88,100,102,111,95,97,94,93,98,99,97,93,105,93,97,101,108,103,101,89,89,102,99,96,95,98,108,92,91,95,108,101,112,115,106,100,96,106,94,79,92,99,106,98,92,91,92,103,85,102,95,90,97,105,94,101,92,116,98,88,82,100,105,102,103,98,117,112,100,91,98,101,100,100,105,94,105,109,96,88,104,92,98,89,100,90,104,97,87,103,99,90,107,108,94,100,106,103,105,94,109,106,105,96,100,89,107,98,91,97,84,91,84,91,125,85,96,97,87,97,110,94,95,102,92,89,88,95,106,99,102,101,95,110,98,98,106,93,103,96,100,105,96,90,94,107,102,105,99,96,102,79,106,98,108,94,95,93,100,102,96,101,99,104,101,107,98,94,132,94,83,106,102,97,95,98,110,79,101,113,100,82,100,106,95,83,77,100,89,91,105,101,107,97,67,97,107,94,98,99,99,94,105,94,96,88,103,94,101,91,112,102,85,98,111,97,91,95,97,92,97,91,99,98,103,102,96,107,102,98,99,109,95,117,99,113,103,98,90,112,93,78,109,97,104,102,105,101,98,101,100,92,92,108,103,117,102,88,96,93,101,94,100,91,95,94,89,111,96,93,94,97,91,100,106,109,91,121,99,73,91,95,89,99,94,100,103,103,97,80,107,84,95,97,103,111,100,104,98,117,90,100,88,109,96,88,102,98,104,98,95,89,108,84,90,97,115,103,105,102,112,107,96,100,90,101,104,99,101,101,87,100,91,111,93,89,103,87,101,104,99,94,98,94,102,110,103,100,101,87,96,98,98,106,108,98,100,102,98,91,84,97,97,95,81,99,95,99,98,93,100,87,104,94,104,97,76,100,92,97,92,100,98,88,96,94,85,83,91,114,109,101,93,106,105,99,96,92,98,90,104,90,88,99,95,104,107,105,103,90,102,107,100,99,94,61,81,100,97,104,106,88,107,111,103,97,107,104,113,74,109,114,104,91,94,102,86,119,91,99,99,92,97,102,83,99,92,102,103,115,102,99,113,106,98,84,94,108,104,102,104,99,104,98,104,93,109,96,112,101,117,86,92,87,108,96,93,98,103,97,101,86,98,92,108,101,109,89,101,86,72,98,103,113,88,98,89,93,96,101,92,105,96,98,98,99,110,96,99,99,100,94,123,96,105,102,99,102,100,110,100,102,90,88,94,100,107,102,111,91,102,91,80,100,66,107,109,96,98,111,86,88,104,101,91,111,105,92,103,93,104,101,95,90,92, +739.1474,121,92,104,92,97,101,95,112,81,112,96,103,97,105,106,94,94,108,97,105,106,104,98,102,94,103,110,94,97,97,98,104,93,100,103,98,105,87,98,100,97,100,96,94,96,104,83,99,95,89,101,105,97,96,98,100,67,92,113,98,103,97,77,92,95,91,93,108,102,100,109,105,87,98,104,106,98,89,103,98,94,104,105,106,97,96,97,87,102,108,92,94,102,98,89,105,92,90,97,97,86,94,105,109,100,83,89,93,85,86,97,86,101,89,98,96,105,106,98,87,93,101,105,105,97,119,91,91,100,105,94,94,105,105,112,99,89,96,90,88,96,88,86,73,107,100,96,90,104,90,88,85,100,75,110,112,86,104,107,91,98,98,99,103,102,94,95,97,97,99,96,104,102,84,107,92,101,78,110,103,90,95,105,110,101,102,91,103,110,100,63,97,106,88,77,89,90,89,100,98,94,97,93,84,94,84,100,88,101,97,92,99,96,97,100,90,101,91,100,80,98,107,99,95,102,91,93,102,101,101,101,79,98,93,93,86,109,101,82,93,95,102,108,97,102,89,89,92,108,92,107,95,87,93,97,114,99,105,101,97,95,96,94,91,103,116,101,102,93,96,91,96,93,93,99,108,84,106,103,96,89,100,111,93,106,94,89,97,95,105,96,78,102,118,87,103,105,102,100,88,106,92,101,94,98,105,106,94,98,109,86,110,94,98,103,67,93,99,98,100,92,96,100,91,85,89,107,106,108,108,91,97,96,93,101,93,99,93,94,105,90,100,91,92,92,94,94,104,92,101,98,91,95,105,100,59,101,109,95,100,93,90,98,101,110,103,102,91,92,108,107,97,92,85,103,89,94,104,90,99,95,107,94,93,106,91,91,95,92,107,87,87,106,88,105,81,94,89,106,97,94,97,95,81,96,88,91,107,95,97,101,99,88,100,92,91,104,92,92,82,94,101,88,97,105,103,91,98,90,86,96,95,100,94,96,95,91,85,98,94,109,96,105,97,87,97,97,101,99,99,93,100,95,113,81,94,99,103,108,99,92,100,99,95,112,95,97,108,99,111,101,100,118,91,93,100,94,98,115,101,114,102,98,81,86,91,103,80,93,108,85,102,98,103,96,88,96,104,103,92,87,97,87,94,106,102,92,98,106,104,117,94,92,96,97,104,102,92,94,93,96,97,94,88,95,83,106,99,99,104,91,88,97,92,102,90,89,103,93,103,101,105,107,95,104,92,81,91,102,92,92,101,106,104,105,109,95,86,87,89,98,101,108,101,101,108,107,100,93,102,102,107,101,102,101,97,90,98,93,95,99,87,107,81,96,93,92,112,107,110,107,94,106,100,109,96,92,92,111,100,97,102,100,99,117,101,84,108,91,107,99,95,103,89,114,95,93,91,104,103,94,99,99,106,100,101,88,92,100,97,91,90,103,92,86,87,99,88,95,113,94,101,95,95,94,82,95,101,110,101,91,97,96,100,100,91,82,108,92,105,98,101,87,106,90,91,93,95,97,102,99,88,95,103,94,103,108,90,95,95,101,102,122,95,95,94,104,94,92,92,100,110,86,97,95,100,92,89,93,90,93,84,107,95,98,97,99,111,106,86,95,107,110,93,108,95,92,100,96,91,108,91,87,96,85,98,100,90,101,104,93,106,94,87,92,100,100,103,102,93,90,99,94,97,98,103,95,102,100,82,100,93,110,85,97,97,99,100,98,90,94,95,87,89,81,90,101,108,95,95,100,92,110,105,103,108,103,97,100,98,104,93,94,87,105,101,104,104,86,108,93,82,100,101,99,92,95,73,92,104,88,98,87,92,100,116,90,90,89,99,109,102,91,89,88,87,98,114,104,108,97,94,94,97,107,94,75,102,100,95,90,84,99,72,101,105,95,92,80,93,88,89,100,105,85,97,95,97,92,95,92,88,98,95,106,99,93,103,97,94,98,107,96,74,106,101,107,86,83,101,87,95,94,103,84,93,90,99,101,101,109,101,63,101,100,110,102,87,108,108,86,96,101,99,87,96,103,99,86,110,106,96,92,100,100,115,95,90,101,96,95,106,108,101,102,110,88,100,98,90,103,101,104,97,103,82,105,100,100,93,95,101,94,90,92,89,100,93,100,102,88,107,101,106,98,101,96,99,100,103,94,91,80,87,96,92,98,104,93,91,94,97,98,87,102,94,93,90,87,108,92,104,93,92,98,91,92,102,100,86,96,102,97,93,100,106,96,92,87,100,104,88,92,96,94,103,92,100,107,110,94,97,88,98,111,82,101,112,93,96,93,95,101,88,105,110,102,108,88,98,104,118,95,102,96,96,64,91,93,94,103,103,97,83,85,97,94,101,103,95,94,92,97,95,105,99,94,93,102,95,108,105,111,103,95,101,96,96,107,97,87,101,87,100,94,94,97,101,92,103,94,106,91,103,110,80,81,87,98,92,108,96,94,106,106,90,102,100,106,103,97,104,101,89,103,82,94,88,115,95,99,86,103,105,105,99,106,104,110,85,80,108,94,95,110,106,105,103,100,109,107,104,99,88,108,103,89,105,96,92,96,103,101,104,93,111,92,106,106,93,102,101,89,100,102,97,102,94,111,109,95,104,117,102,100,101,100,101,94,108,108,96,104,105,91,95,96,120,106,82,99,97,99,101,105,91,99,109,100,102,92,98,97,102,98,79,107,99,76,99,94,92,92,91,92,96,103,85,86,101,97,103,103,83,100,118,102,88,94,100,107,93,85,102,102,107,98,98,98,96,118,103,113,107,101,85,94,105,94,98,89,99,90,98,103,89,103,101,95,108,98,94,106,98,102,114,103,95,101,96,78,104,102,100,99,96,102,93,91,99,99,92,98,103,92,92,98,92,80,95,97,94,91,111,100,97,77,98,96,113,89,103,100,98,83,117,94,95,100,96,96,66,80,95,103,98,90,100,91,92,103,87,91,101,93,90,103,89,96,74,93,92,96,95,87,108,111,114,71,96,98,111,106,105,100,96,94,113,84,120,88,100,98,99,99,100,114,99,96,85,103,99,94,97,105,91,81,91,107,100,96,96,96,108,101,105,104,110,113,86,105,125,89,103,92,88,106,92,104,108,99,131,101,106,95,93,100,93,100,96,101,109,94,105,98,95,95,100,96,99,64,104,106,109,95,98,99,89,97,114,101,88,99,95,78,98,119,105,93,93,87,88,95,107,97,115,109,112,85,99,100,95,94,91,98,108,99,103,100,99,96,102,100,98,117,96,95,96,107,96,102,105,105,105,110,94,106,98,100,102,90,95,91,106,100,103,103,95,97,108,102,97,97,96,105,99,96,87,108,87,106,98,88,86,96,98,104,83,100,100,103,95,113,108,95,102,101,88,110,101,101,99,96,90,109,98,107,102,88,93,75,89,94,92,96,96,99,116,96,95,99,99,88,108,109,96,102,91,100,91,101,93,129,112,120,87,98,96,101,91,99,84,108,105,98,91,94,99,95,91,102,92,97,93,97,90,102,96,104,102,112,97,84,95,94,91,94,101,87,106,93,97,105,92,98,104,97,113,100,109,103,100,97,97,99,94,104,109,97,91,91,107,104,99,99,97,89,104,98,107,99,98,109,111,100,112,97,104,96,105,107,107,97,106,108,82,99,105,101,108,97,65,106,110,99,104,104,93,90,95,117,101,97,102,100,95,94,101,97,109,81,96,109,99,96,102,112,112,98,72,100,92,98,93,90,104,90,104,124,113,91,99,98,95,94,99,89,120,96,99,89,90,105,121,90,99,110,91,106,113,95,103,114,99,91,101,83,96,97,69,106,93,124,101,87,100,108,98,92,110,96,99,93,96,86,98,110,107,94,102,90,94,105,83,96,100,88,86,101,97,100,97,88,92,95,102,99,98,98,104,95,95,97,94,93,101,71,88,93,87,99,113,103,121,111,94,93,104,107,97,98,100,81,120,80,95,104,97,98,97,104,102,97,105,93,95,107,92,111,95,91,98,108,91,91,110,95,92,98,91,100,105,102,110,105,93,100,86,101,102,98,92,88,87,102,99,98,96,110,97,97,89,98,93,105,93,89,101,77,108,101,101,96,105,99,103,98,95,98,115,94,94,100,97,103,94,105,91,98,101,85,93,90,110,91,93,92,90,73,101,105,97,102,98,98,100,104,105,90,108,106,118,96,102,77,109,94,98,98,92,103,102,102,109,104,99,92,88,97,118,96,93,102,94,85,99,105,100,102,102,92,89,108,90,100,96,85,109,99,104,120,96,107,107,103,100,106,102,94,116,94,95,95,97,94,103,93,97,68,96,101,94,98,105,101,101,97,103,105,99,97,105,96,86,85,94,99,105,117,100,78,90,106,119,104,106,104,114,101,96,112,124,100,102,89,100,110,112,99,97,83,87,86,95,97,98,98,106,92,91,103,98,72,89,90,105,99,100,110,101,112,101,124,98,105,93,102,99,98,95,101,99,61,99,92,102,84,94,109,97,79,89,101,99,103,95,94,117,102,88,91,92,106,95,103,82,98,102,96,97,108,108,82,90,101,92,104,99,109,99,105,110,106,103,95,102,111,93,86,91,109,82,94,102,98,117,100,96,103,103,101,107,70,117,93,95,84,102,88,100,101,105,99,97,103,98,102,97,116,98,102,88,91,107,89,103,106,98,98,101,91,103,99,108,112,118,110,95,92,89,94,105,82,101,109,93,95,88,102,108,102,103,94,96,94,81,95,107,89,97,96,97,104,83,106,94,95,90,91,95,100,96,101,108,100,90,87,95,93,91,88,99,100,94,105,98,88,107,97,102,101,84,97,97,96,105,97,89,99,103,101,105,103,106,96,106,96,92,99,93,107,100,98,97,112,108,98,92,123,101,95,78,109,99,104,109,117,117,100,86, +739.28882,101,93,86,101,90,95,98,85,95,90,91,90,97,92,102,99,92,113,100,86,105,86,105,96,104,91,99,99,107,90,92,108,92,101,101,91,99,101,96,92,97,108,103,89,103,110,100,122,105,89,107,105,93,86,103,96,91,88,109,86,104,96,93,95,100,98,90,100,91,82,105,110,91,99,93,110,99,114,97,96,93,100,92,110,93,92,110,108,94,93,98,96,96,101,95,106,112,97,89,101,96,95,87,88,97,108,99,97,96,100,107,87,95,102,111,94,99,94,110,105,86,100,94,105,95,119,93,105,108,107,113,106,93,102,109,95,88,91,90,97,117,109,85,107,87,95,110,90,97,99,95,109,90,97,107,101,107,105,99,100,103,102,88,91,115,95,103,91,89,88,98,103,95,99,91,94,105,99,96,108,94,94,96,111,105,93,92,93,80,99,83,96,98,92,96,86,82,104,105,90,90,120,101,91,92,101,96,99,102,106,87,99,89,105,89,97,101,90,97,107,95,98,98,98,80,87,104,100,92,88,105,87,97,107,87,112,102,105,99,95,95,83,90,100,91,101,99,102,103,102,92,79,97,101,97,110,100,94,108,95,97,98,97,92,99,96,100,96,95,110,99,96,93,92,101,101,102,94,86,102,106,95,105,102,96,96,92,97,95,93,99,108,94,107,105,118,101,117,93,91,111,98,91,101,81,98,102,105,97,104,83,99,102,96,90,90,93,106,102,97,102,100,100,101,82,100,101,90,83,107,91,114,96,91,106,102,96,103,81,88,97,96,102,101,95,105,107,99,109,114,99,87,101,104,96,101,102,98,100,103,97,91,100,89,84,102,113,95,117,102,95,105,105,97,94,94,89,99,102,101,102,101,101,99,107,105,92,93,98,96,107,88,91,98,91,88,59,91,93,97,90,94,99,90,86,96,79,85,91,86,101,96,103,94,97,96,105,92,96,87,97,91,72,99,104,88,92,97,92,98,88,94,112,75,104,95,90,88,99,108,95,100,98,103,84,88,93,89,98,102,92,91,95,104,97,97,99,93,106,96,91,103,102,94,98,98,98,96,98,106,86,93,94,102,117,94,99,111,92,104,91,104,109,105,89,102,86,95,97,94,104,103,100,103,99,97,95,102,110,107,105,104,117,103,88,100,100,100,102,98,94,89,95,100,103,104,102,103,100,91,96,95,108,98,91,99,100,100,100,89,96,98,99,90,92,96,103,90,96,104,84,84,102,112,99,104,98,96,101,100,96,101,75,97,84,93,105,91,86,100,99,93,99,96,97,96,105,99,88,80,83,104,95,115,86,93,95,107,90,100,89,80,97,94,93,103,91,108,105,65,106,86,107,104,104,102,91,108,110,71,93,99,102,88,96,94,82,100,101,95,94,84,86,100,103,95,97,90,101,79,101,104,94,85,111,77,94,104,96,99,105,108,93,100,85,105,86,89,71,85,102,94,110,87,100,110,95,90,87,119,89,100,79,102,90,105,95,99,92,106,101,103,99,103,91,103,101,99,100,106,100,86,105,102,83,97,92,78,95,94,93,99,108,86,95,104,97,86,97,95,95,91,86,87,101,103,100,96,84,105,101,99,105,100,98,90,96,94,94,81,85,104,92,99,98,102,108,97,97,83,99,79,100,90,94,105,99,104,87,106,89,104,102,97,92,97,104,103,96,95,101,90,97,107,103,100,91,93,86,96,95,84,98,96,91,93,94,100,105,85,83,97,87,108,101,103,101,90,97,83,100,89,100,91,94,101,89,102,92,112,98,87,97,101,106,98,109,103,91,96,89,95,104,98,109,113,107,103,100,95,101,99,107,98,100,99,88,102,104,92,112,103,96,101,86,113,108,88,104,103,92,106,104,103,96,89,103,96,96,90,109,87,91,99,97,103,104,104,90,94,73,110,82,81,97,83,113,88,98,89,100,67,105,105,95,92,94,96,91,102,100,93,90,93,94,91,101,105,112,96,96,122,91,100,92,94,93,101,102,98,97,102,97,108,95,102,88,98,98,98,100,97,107,104,95,86,109,102,102,95,100,101,95,110,94,96,99,92,101,89,94,103,104,105,93,102,85,91,87,95,104,97,95,83,95,94,93,98,87,105,105,92,100,101,92,91,94,99,100,99,76,94,94,100,97,101,105,107,97,92,93,99,109,97,91,90,86,97,79,93,101,95,101,94,120,100,87,116,103,94,96,95,104,93,91,93,100,101,102,93,92,93,95,88,98,96,102,83,81,89,83,83,90,112,91,105,92,96,95,91,101,93,90,93,98,92,102,100,81,89,95,106,109,105,85,106,95,86,98,90,92,99,86,102,99,96,105,105,102,110,103,90,108,108,96,94,87,100,103,92,93,94,106,91,93,92,109,86,98,88,103,91,100,95,91,99,91,96,100,104,85,95,105,93,95,100,101,92,112,88,97,135,86,98,93,106,78,106,84,100,102,105,109,98,109,103,90,91,106,103,99,109,97,90,105,99,108,91,105,112,110,87,103,105,103,105,111,92,92,87,97,99,92,87,100,80,93,112,80,100,118,98,94,92,96,93,88,103,100,94,92,104,98,94,94,90,104,94,97,96,91,92,99,101,100,108,108,101,101,97,96,84,102,106,96,104,102,105,96,120,100,94,91,99,102,101,96,100,97,92,102,96,108,103,99,98,96,92,89,104,91,105,101,108,79,95,109,109,95,101,103,100,103,105,111,96,84,87,105,95,98,116,98,99,105,101,109,107,116,92,97,96,95,102,100,108,104,100,89,95,98,105,91,105,89,102,97,102,86,102,96,94,103,111,112,107,106,100,98,104,104,91,95,94,94,100,93,113,101,94,94,61,102,102,88,100,101,106,91,112,95,94,92,97,97,107,86,103,96,113,97,95,93,98,95,87,108,127,98,103,88,96,103,98,83,100,94,107,111,99,90,90,96,100,92,101,94,75,100,97,103,112,101,105,93,95,95,94,102,83,96,103,88,91,107,106,102,102,97,94,104,98,105,66,97,103,100,91,101,86,91,102,94,109,105,97,109,107,98,105,94,98,96,101,113,102,89,102,97,96,90,95,105,100,93,86,108,115,92,113,108,93,102,100,100,111,93,93,91,94,97,96,109,80,101,86,85,98,98,93,106,91,116,91,107,105,98,103,94,91,94,93,96,102,111,108,88,99,94,90,106,105,98,96,100,101,101,105,96,98,98,103,91,94,110,100,100,93,110,98,115,86,91,91,83,97,90,87,103,111,105,106,106,83,97,104,99,104,95,87,116,87,101,100,89,98,90,96,105,94,90,96,103,100,88,91,97,93,101,97,83,102,92,106,100,106,103,105,101,93,95,99,102,92,117,108,82,98,106,100,109,88,90,99,106,95,109,91,96,102,88,104,85,101,101,92,98,98,105,84,98,89,104,98,97,117,109,95,102,108,95,92,95,91,101,98,102,90,119,99,95,101,99,115,109,110,96,113,90,98,92,95,98,89,100,100,92,102,104,95,107,102,95,95,100,109,110,93,103,95,97,93,93,108,105,91,98,106,87,95,102,90,97,81,92,106,93,88,90,115,103,87,103,93,118,92,99,97,108,98,97,95,105,91,108,109,95,90,98,103,95,88,102,103,103,81,102,90,105,88,93,102,105,97,92,96,99,86,102,95,92,89,96,98,103,103,99,103,99,85,109,103,96,92,91,88,102,100,98,100,106,88,104,95,97,102,95,95,105,87,88,102,98,97,94,93,114,102,93,120,99,112,101,113,106,91,104,103,100,101,108,98,112,95,74,97,98,96,91,100,87,90,114,94,87,91,104,80,102,82,97,93,105,79,113,95,97,106,91,110,93,110,96,91,96,112,97,96,100,102,116,98,92,100,105,112,95,113,83,106,99,101,98,96,99,97,92,96,83,98,98,90,100,98,103,99,106,96,102,105,94,104,84,102,100,98,105,93,109,109,98,95,88,97,106,98,111,63,97,97,109,99,96,81,101,95,95,98,101,95,98,92,96,106,98,98,103,111,98,76,101,101,98,93,96,95,91,116,100,95,87,99,97,96,112,113,93,99,95,80,102,98,109,87,95,100,65,104,93,83,100,108,83,122,84,101,105,98,105,95,97,100,94,104,110,91,103,94,94,105,99,91,93,103,101,96,96,119,97,105,99,112,81,90,94,104,100,88,98,103,97,107,116,102,107,95,92,101,87,95,105,97,109,105,100,98,105,97,114,100,113,101,108,101,96,104,98,105,100,108,94,95,109,101,89,90,80,87,102,102,100,95,106,100,89,94,103,84,96,104,97,93,100,95,103,108,88,92,92,78,109,103,106,120,106,104,91,104,81,94,101,88,102,102,95,88,102,102,96,93,92,94,113,104,98,100,100,97,90,102,93,96,73,111,84,92,102,106,94,96,87,90,103,93,91,92,100,95,108,99,99,96,106,93,99,97,67,109,95,83,98,105,93,95,65,90,103,100,104,103,97,89,92,102,96,84,96,98,106,105,91,91,86,104,88,106,98,101,105,93,94,99,106,95,101,86,104,100,102,105,85,109,110,64,93,114,116,97,84,100,99,97,93,104,98,87,116,90,92,94,85,95,97,99,80,86,101,111,93,108,65,105,109,113,85,105,99,118,104,97,95,96,101,103,105,72,105,96,99,84,99,100,72,104,98,83,100,101,94,105,105,98,95,103,102,98,95,98,102,91,103,97,102,95,93,91,92,105,99,95,99,99,94,100,103,88,97,83,90,94,103,100,99,92,109,88,95,121,93,100,90,102,94,86,92,85,116,97,101,89,95,95,109,97,88,83,90,90,90,100,120,91,102,87,115,95,91,89,101,105,87,102,103,109,95,106,96,96,98,104,105,100,101,86,82,96,94,95,104,104,101,112,98,97,96,87,103,88,94,96, +739.43024,103,97,94,93,88,93,113,101,113,99,107,95,96,94,95,106,82,114,104,112,102,101,102,96,80,94,90,105,96,93,88,99,80,96,79,115,106,89,87,91,103,116,109,113,96,94,115,104,92,79,92,97,105,95,99,97,90,135,102,95,97,101,103,105,107,97,95,103,85,104,96,104,110,100,92,103,130,90,105,102,91,106,93,102,109,95,110,100,90,93,106,90,90,97,97,101,119,100,104,95,100,97,105,98,100,107,95,95,102,97,97,91,82,90,109,105,102,84,95,95,102,105,92,95,84,100,110,103,110,96,92,100,84,99,90,94,97,93,90,104,93,88,94,89,90,80,86,108,96,103,103,106,95,88,90,84,97,94,108,90,92,91,105,79,100,87,90,95,91,86,97,102,98,89,83,97,100,89,117,90,86,93,95,95,95,100,109,98,106,98,82,94,98,92,95,106,75,102,106,87,102,102,107,99,101,84,96,84,103,89,105,59,113,93,96,90,98,100,99,101,98,99,106,99,101,109,87,98,97,103,101,98,87,103,101,90,89,96,88,92,106,92,101,91,87,97,101,96,102,108,94,91,102,99,99,95,91,104,101,110,91,92,98,86,95,87,108,104,100,95,97,96,107,86,109,85,88,100,102,92,102,97,102,90,92,83,79,89,90,110,101,87,102,95,113,94,106,92,97,121,98,88,96,102,81,102,91,105,99,96,91,107,108,112,95,92,99,96,94,106,101,101,102,99,103,105,73,72,102,104,115,95,103,88,101,97,110,99,90,88,102,102,102,91,101,81,94,103,111,106,93,87,90,84,101,78,109,105,94,102,100,87,106,98,84,95,111,101,103,103,96,102,100,86,97,100,98,101,109,117,94,80,84,97,89,93,92,90,91,105,95,93,85,62,87,93,91,91,104,96,86,103,88,96,82,89,95,90,101,96,87,91,97,89,89,87,97,99,106,93,90,88,86,97,93,91,100,93,102,88,101,98,97,82,90,93,100,94,113,101,102,98,94,100,101,95,93,91,104,104,88,91,99,106,98,91,98,104,96,96,100,94,100,103,119,101,94,100,95,99,103,98,102,87,104,103,93,96,102,98,99,102,98,74,104,93,95,100,92,97,97,105,86,88,110,107,83,104,105,84,104,97,96,102,93,104,93,90,98,93,101,98,84,101,101,90,78,99,92,85,99,92,86,98,83,99,101,102,98,85,90,105,87,100,90,105,97,91,106,96,90,94,97,98,89,110,107,108,105,98,98,93,103,101,110,99,103,94,87,99,107,85,71,102,93,104,86,92,96,73,95,100,91,102,109,97,99,97,98,104,94,103,86,96,94,96,107,89,96,101,100,101,96,92,98,103,91,98,106,102,101,105,88,104,100,96,87,90,91,97,100,92,100,96,99,98,94,107,91,90,87,100,90,87,98,100,89,106,105,105,104,97,99,102,88,106,102,97,92,98,105,93,78,95,103,88,86,92,93,112,97,105,99,102,101,100,90,99,89,95,96,98,92,92,87,93,98,103,97,105,94,76,101,90,96,103,102,100,101,97,96,88,96,96,77,84,88,98,88,99,96,106,84,99,99,102,108,92,99,102,96,89,108,97,98,97,97,82,109,98,103,92,98,90,113,111,114,106,106,108,106,93,90,96,93,90,90,96,109,101,105,103,109,93,99,87,128,89,92,97,116,95,99,99,109,88,91,103,97,98,111,97,116,97,100,103,60,81,107,77,98,101,81,98,85,113,99,91,97,99,88,102,96,104,98,99,87,110,104,90,98,88,104,99,83,92,102,77,92,101,107,105,90,108,91,87,99,97,102,102,97,105,88,89,95,101,106,95,110,87,100,103,91,100,102,104,91,98,106,90,89,102,101,93,96,97,96,100,96,106,99,97,97,100,104,70,104,104,96,89,100,105,98,100,99,100,91,87,108,84,86,89,95,95,88,101,105,94,93,128,92,103,97,91,98,91,97,89,102,102,94,104,90,95,103,107,100,106,82,93,91,101,98,95,83,86,104,99,80,112,93,107,100,96,95,95,103,82,98,104,94,99,89,110,104,95,93,100,84,94,101,90,101,107,100,88,109,99,76,95,100,102,105,91,90,101,87,90,101,96,94,92,97,103,83,98,96,91,98,92,94,90,102,104,81,111,100,106,103,90,99,95,112,104,94,89,92,105,84,94,125,95,96,98,101,95,82,83,97,88,82,100,94,100,91,101,111,83,108,93,98,92,117,109,106,95,83,88,103,101,94,89,90,94,87,101,98,95,108,85,99,96,92,87,115,89,95,88,109,98,88,86,94,100,93,90,99,92,100,104,87,109,88,93,95,104,99,92,104,100,100,93,79,87,81,83,85,104,92,95,97,105,95,98,98,98,95,93,94,94,109,94,104,92,86,97,55,108,92,94,101,93,87,109,83,91,92,95,93,92,97,106,103,91,99,97,98,89,97,101,92,90,90,97,83,95,103,88,109,86,98,93,102,80,84,92,87,97,102,99,86,87,130,93,90,106,87,94,88,94,93,97,98,77,88,100,97,91,88,99,103,85,104,95,96,99,102,107,83,89,98,98,87,95,96,102,94,95,95,95,88,98,87,98,95,101,99,89,90,98,95,94,104,75,74,100,100,95,97,102,84,100,92,89,98,109,94,92,96,97,94,94,92,93,86,91,103,93,94,96,101,100,90,99,96,100,93,83,101,96,96,98,122,68,87,103,104,98,93,94,101,92,90,94,103,83,81,105,103,100,91,85,101,100,103,96,101,105,94,94,98,103,102,93,100,101,89,98,98,99,93,90,96,109,94,83,101,92,102,107,103,100,98,92,113,94,106,106,91,103,101,99,106,102,100,92,98,109,95,98,93,95,109,101,97,102,99,99,95,91,106,96,97,120,96,98,114,104,108,103,101,97,93,99,97,103,90,93,100,109,94,100,102,94,101,96,105,102,102,96,96,95,96,96,97,95,107,100,89,98,97,105,104,88,102,105,109,102,97,97,102,90,94,100,102,88,114,87,91,92,96,94,91,98,108,91,104,93,83,103,106,93,110,89,109,85,98,102,113,98,99,99,89,93,83,93,95,106,102,91,98,111,98,94,75,109,88,99,96,89,118,109,91,103,111,95,92,83,102,99,99,100,109,86,99,91,102,98,97,108,94,84,113,99,100,103,103,78,98,90,101,97,102,101,86,107,116,91,110,107,98,92,112,99,102,100,99,95,91,99,97,111,87,97,84,87,103,101,89,94,89,105,95,87,102,96,93,100,94,104,95,93,99,94,100,112,98,94,92,91,105,100,98,102,102,109,100,91,85,90,75,107,96,92,104,104,98,95,91,102,95,84,100,103,102,93,101,94,104,102,87,100,94,99,92,102,93,98,101,100,92,100,101,93,96,97,105,100,99,83,96,96,96,110,90,105,101,107,96,81,95,83,90,93,105,104,94,88,113,89,101,106,99,87,114,87,93,98,106,92,94,87,94,106,90,102,102,76,103,95,98,96,84,100,89,115,93,97,130,106,100,97,97,91,99,103,86,103,95,105,93,120,88,90,103,105,102,101,96,109,110,87,93,99,102,108,101,106,120,90,100,94,95,104,98,94,104,108,96,96,93,92,107,97,100,98,108,100,104,102,102,95,95,108,87,87,102,97,92,73,97,97,94,97,87,109,90,110,93,97,97,107,112,113,79,97,94,87,91,102,85,98,92,100,91,84,92,100,100,94,94,91,97,77,98,104,106,96,95,105,100,83,103,98,97,89,106,102,91,87,98,100,116,86,91,97,89,98,102,113,93,92,86,99,102,95,92,112,96,92,101,93,81,92,101,88,110,99,85,114,91,105,86,99,96,102,113,108,111,90,101,104,91,98,88,97,88,115,104,101,97,94,91,91,116,105,94,105,101,110,113,84,100,98,95,94,104,97,80,85,107,97,103,91,104,89,84,108,97,95,94,95,98,105,93,91,98,92,93,106,103,97,95,102,97,80,95,102,90,97,109,113,88,100,102,97,93,107,105,100,103,95,101,101,100,105,95,73,95,100,98,93,96,94,95,105,95,108,107,106,93,98,100,95,94,88,94,96,110,101,107,101,87,102,115,105,102,109,95,95,94,88,106,90,87,104,98,83,81,99,95,94,94,98,91,106,97,94,103,96,93,101,92,95,105,103,104,98,96,91,100,105,96,103,105,100,80,92,100,90,101,105,97,110,104,86,98,96,89,85,95,90,100,67,94,97,99,102,96,85,95,96,104,94,102,88,89,90,83,98,92,95,103,99,104,96,98,88,83,94,91,96,91,87,101,93,99,100,97,108,94,94,94,99,112,99,96,112,94,107,112,81,96,94,96,91,98,103,98,98,95,92,104,99,90,105,93,93,91,122,83,102,101,96,90,79,106,105,102,98,91,85,94,88,95,113,94,94,93,100,103,84,101,96,95,100,103,98,89,97,95,107,103,97,105,92,107,106,106,98,98,109,136,103,96,101,86,93,92,92,91,93,99,102,101,99,107,95,88,89,79,85,90,104,95,102,97,102,107,87,112,99,97,103,109,99,99,109,91,81,95,104,100,95,94,96,95,102,108,86,95,96,100,100,101,103,91,94,94,85,96,97,91,95,99,89,94,106,85,93,100,73,101,109,93,102,107,94,98,114,95,98,104,115,95,96,99,128,88,89,91,102,95,97,87,95,98,99,93,106,90,102,81,101,97,86,97,106,83,99,75,111,117,100,103,95,86,87,89,104,88,105,107,94,101,102,101,105,99,105,87,98,100,104,103,103,82,98,104,94,110,84,94,80,101,99,125,90,95,99,108,95,95,110,112,113,91,96,105,113,101,93,100,101,87,106,97,76,114,92,105,90,100,98,109,99,100,108,93,96,93,99,92,95,90,98,87,83,105,89, +739.57166,104,96,108,96,90,94,113,87,113,98,104,113,93,87,98,86,98,105,98,105,89,97,100,102,105,86,104,98,97,96,108,112,91,96,106,94,97,110,107,92,99,107,99,95,103,105,93,95,87,105,104,90,100,96,96,96,104,101,101,99,101,92,100,92,81,96,85,93,91,94,99,105,100,101,108,95,93,89,94,100,103,102,104,97,100,112,103,96,87,86,105,100,91,89,92,108,95,102,107,97,94,93,86,98,104,88,97,91,85,100,99,96,85,94,94,104,97,104,98,84,105,99,93,96,103,94,120,93,110,92,118,94,93,76,75,95,59,87,95,97,92,111,94,100,88,69,95,80,91,89,76,85,100,97,99,108,88,93,92,104,92,109,85,107,104,103,93,88,88,104,98,99,98,94,111,116,87,97,107,105,103,88,91,91,100,96,98,96,105,100,92,100,97,86,100,99,97,88,82,95,94,109,105,98,101,100,97,122,105,105,84,103,98,104,99,82,95,100,88,92,98,98,102,87,90,99,98,103,102,104,81,110,103,101,101,103,102,95,92,89,100,77,80,101,93,99,99,91,92,95,95,99,114,101,94,103,87,99,95,92,87,98,112,98,93,109,129,97,102,100,95,94,95,104,87,100,98,94,87,92,106,98,101,97,104,96,98,99,98,98,109,94,101,106,103,98,103,99,105,96,94,89,109,101,93,101,79,98,106,105,101,99,95,95,98,90,98,105,105,97,98,97,99,109,103,113,93,92,98,93,111,94,117,104,92,87,102,99,93,105,90,118,91,92,88,95,95,99,106,106,108,112,101,105,102,102,90,101,98,98,105,86,96,87,79,90,80,84,91,91,117,86,100,94,99,94,91,97,89,84,98,87,93,96,91,87,85,102,103,98,91,95,95,108,114,101,86,100,93,99,88,107,93,83,99,102,76,100,74,94,94,88,96,93,96,93,99,103,102,87,97,97,95,93,104,96,90,101,88,95,83,103,105,86,99,97,91,102,95,99,98,95,89,103,93,94,87,89,97,98,91,87,99,108,94,106,95,94,100,94,94,98,98,99,86,95,100,92,96,101,90,117,97,91,115,80,101,102,98,107,101,111,104,99,99,103,97,105,104,87,105,107,90,90,97,104,97,90,95,99,105,79,92,95,100,99,108,94,101,87,98,107,103,101,105,109,101,106,95,91,98,96,99,101,86,96,88,93,95,121,100,108,102,71,95,69,106,109,102,99,91,108,104,98,106,91,104,93,89,93,107,96,96,98,88,79,101,94,102,91,103,95,94,84,97,97,97,91,96,91,87,95,99,124,99,92,90,102,87,84,92,84,108,97,109,92,96,101,103,90,93,97,103,102,99,100,92,112,92,96,94,108,102,94,93,105,94,88,93,96,88,99,91,116,94,97,108,96,102,107,103,101,102,104,104,104,91,96,90,101,93,107,101,104,94,96,87,84,91,100,102,97,97,96,93,90,105,92,100,103,95,99,95,108,97,93,99,107,105,103,97,104,121,108,103,98,90,94,89,96,119,113,90,89,87,108,89,98,100,101,58,95,101,85,86,97,84,101,95,70,109,86,101,115,91,99,91,103,94,98,99,93,100,99,103,96,75,105,95,103,106,105,92,94,97,93,102,102,94,103,97,98,104,109,93,102,104,95,95,108,102,104,100,88,99,93,105,97,110,91,102,88,108,89,111,95,87,99,99,96,112,96,95,92,86,95,104,65,97,93,99,111,101,104,101,93,92,112,94,102,102,106,93,94,102,92,98,97,100,90,103,101,98,113,80,106,83,104,90,100,95,109,100,109,100,95,94,95,96,102,95,92,97,100,111,109,103,96,116,96,105,105,102,102,92,93,98,109,99,100,108,93,110,99,98,103,97,103,119,99,100,88,102,92,88,100,99,99,91,106,109,115,104,95,89,95,93,83,91,102,97,91,92,102,96,100,106,110,73,99,98,101,108,111,87,92,87,96,109,102,113,103,102,102,92,100,101,99,98,87,94,102,99,111,99,103,86,110,86,103,98,99,103,95,83,101,103,95,111,101,96,103,88,96,111,103,97,95,82,103,95,103,96,91,100,104,98,97,101,92,100,96,89,99,89,89,80,92,104,97,96,105,98,111,93,91,90,98,103,82,102,96,106,96,92,106,100,104,103,88,99,101,98,91,91,91,102,113,104,100,93,113,101,88,100,104,86,102,107,103,90,98,100,92,101,107,91,97,87,104,105,98,100,92,97,95,101,103,88,107,106,98,95,97,89,103,92,94,92,87,99,95,89,76,96,103,94,107,85,75,71,98,101,92,97,97,106,95,88,101,117,101,92,99,118,95,99,92,113,100,91,96,97,106,94,98,96,100,98,90,99,91,106,117,100,113,98,96,86,87,103,95,107,95,88,91,84,87,99,95,101,101,84,96,105,101,94,99,94,103,91,108,98,103,96,95,90,99,95,85,103,99,92,103,80,107,97,95,101,92,100,96,95,88,94,103,102,101,112,109,98,93,101,98,93,109,95,89,96,107,98,104,95,90,98,100,99,97,87,101,95,96,99,81,99,95,105,104,106,106,99,96,100,94,89,65,102,94,103,103,103,91,98,105,96,98,103,93,111,110,107,108,99,102,91,95,107,114,94,122,115,91,97,82,93,92,100,99,108,112,96,94,95,104,99,90,88,94,100,98,108,105,96,96,108,102,94,65,106,109,96,95,98,96,99,102,108,84,94,87,111,102,102,100,94,106,104,97,104,91,99,117,91,107,95,113,106,116,89,92,94,118,106,110,104,87,80,98,109,104,99,100,91,95,98,105,97,107,99,100,102,108,86,97,102,102,106,101,104,95,87,109,87,95,90,95,98,101,95,105,101,101,107,103,125,98,87,102,105,101,109,101,103,98,103,92,101,82,105,101,100,95,113,79,99,101,85,93,92,91,91,103,103,107,91,104,85,102,108,98,96,107,96,108,91,113,97,95,106,89,106,101,98,96,100,108,99,84,93,78,102,87,100,97,94,96,106,100,96,99,90,85,92,100,111,101,112,84,87,101,104,80,113,95,95,87,106,100,104,93,87,77,99,75,99,96,99,96,62,99,102,108,115,98,104,93,83,98,93,93,98,101,111,98,104,92,89,97,99,67,85,90,101,110,97,99,92,99,91,99,87,100,96,121,112,107,105,103,92,105,112,94,92,99,95,102,101,98,99,96,88,95,91,94,102,99,96,98,117,101,101,101,99,96,105,91,102,106,101,100,95,105,106,100,105,97,112,96,100,101,96,100,96,106,105,105,101,111,100,96,94,104,108,114,101,114,105,91,103,91,98,92,105,69,102,88,78,96,98,102,95,84,107,95,111,88,97,103,102,92,96,100,97,106,92,109,89,100,89,98,101,96,115,95,92,104,91,96,113,97,95,91,90,101,100,102,98,105,102,102,98,107,104,110,87,101,105,101,103,112,99,89,109,97,99,109,94,101,91,100,98,101,121,94,108,102,101,113,103,112,101,110,106,96,107,103,99,110,97,98,116,91,93,113,96,100,101,100,101,94,101,99,94,104,106,101,105,112,104,105,102,98,117,92,96,99,91,100,98,94,102,95,96,121,67,85,103,96,93,98,89,108,92,125,105,99,101,98,107,112,99,103,122,111,85,95,106,83,80,106,101,104,112,97,96,94,94,102,103,93,97,101,103,108,96,102,100,96,106,94,95,100,99,102,97,98,101,100,90,104,97,93,104,110,112,117,98,99,76,115,136,97,90,89,91,92,85,96,90,99,104,108,112,94,101,87,97,94,95,94,102,93,91,105,92,96,101,96,98,102,96,112,101,100,101,114,88,84,97,108,100,95,94,75,79,111,98,102,87,88,91,110,104,108,107,112,97,92,100,89,89,67,93,80,97,100,105,100,93,105,103,98,78,98,103,100,112,97,95,93,99,93,98,90,90,87,95,109,102,99,102,102,105,109,98,114,94,84,100,95,99,108,102,101,102,106,96,87,94,103,103,101,98,108,115,92,108,104,104,112,107,102,106,106,63,91,100,96,115,96,102,98,112,104,102,90,91,107,120,87,93,98,101,92,112,93,92,95,93,95,97,97,88,105,91,112,98,123,96,94,93,93,96,112,104,108,91,102,91,111,99,100,85,113,99,87,102,100,101,95,97,95,101,90,100,92,101,101,99,98,106,110,104,107,110,108,94,95,96,100,105,108,104,98,95,65,101,100,108,111,106,90,102,96,113,96,103,106,96,97,100,105,98,88,94,94,113,108,98,96,82,105,115,74,100,90,109,94,90,97,106,96,92,91,103,99,96,95,113,104,105,100,100,84,103,97,105,107,111,103,103,93,88,87,95,96,103,90,87,108,100,124,105,109,102,109,104,100,100,103,105,104,99,107,95,99,93,108,98,94,86,101,103,109,105,99,100,91,98,104,111,97,94,89,98,103,94,92,111,97,101,94,109,106,105,100,92,114,96,98,105,97,100,107,106,102,95,100,91,114,80,99,120,106,101,102,94,103,96,103,92,99,104,99,112,100,114,99,100,102,117,98,117,113,88,101,104,108,102,107,88,109,100,100,100,66,89,96,100,91,103,94,101,110,76,98,118,109,100,92,100,108,100,104,103,97,103,102,100,110,108,97,105,112,98,102,101,109,104,96,92,84,97,90,101,91,93,103,100,93,91,107,94,95,96,105,95,90,106,106,100,92,108,94,116,98,97,106,106,96,93,101,100,106,106,128,112,96,97,95,92,89,113,114,97,100,92,98,109,87,102,113,117,113,103,103,95,94,105,96,98,92,95,105,101,96,85,113,95,105,106,98,107,95,96,100,86,105,93,115,107,109,83,98,107,99,89,106,108,97,89,116,102,96,100,89,90,103,92,103,95,101,108,107,109,111,105,79,97,97, +739.71307,90,100,102,96,91,108,100,92,103,112,100,93,114,89,96,85,98,95,107,110,105,84,90,119,98,98,98,108,106,97,101,88,86,97,115,101,103,97,100,116,88,95,100,96,98,111,100,102,98,116,107,97,101,91,119,93,118,97,91,100,100,101,105,105,88,112,97,100,103,109,105,86,94,106,93,124,97,115,93,94,100,90,100,101,97,88,101,103,95,84,97,106,87,99,96,97,97,95,98,93,95,92,100,94,95,103,93,105,94,81,115,100,95,98,109,104,89,99,99,100,99,100,94,103,102,109,106,93,121,105,91,79,90,97,101,107,96,108,83,102,96,106,110,100,94,82,102,91,94,93,113,101,95,102,91,105,85,97,95,102,95,105,81,104,105,93,103,87,112,100,111,105,102,77,100,105,100,99,105,97,119,103,113,109,100,107,96,86,97,98,110,102,97,110,80,91,97,94,98,92,94,95,109,99,83,111,98,105,105,104,100,89,99,111,106,102,97,105,88,104,98,109,98,111,97,100,96,101,113,96,89,86,101,96,102,95,92,102,106,94,98,90,100,101,105,112,97,90,98,110,93,92,106,93,100,109,93,98,92,94,100,109,98,93,92,101,106,86,97,104,100,93,104,98,88,76,103,105,109,97,106,100,101,103,105,108,91,95,102,90,88,96,107,96,100,98,121,94,95,104,102,93,98,106,104,109,103,93,95,106,101,104,98,95,96,94,91,110,103,101,101,100,107,105,104,91,91,85,101,82,92,96,104,105,109,99,86,97,99,94,94,94,101,87,92,116,95,104,79,98,93,103,99,102,96,98,101,88,98,106,94,104,90,90,107,96,99,100,88,96,98,98,103,90,87,91,98,96,104,100,102,106,101,100,96,99,102,86,101,95,100,89,92,109,95,92,88,96,125,90,94,100,106,82,97,90,101,122,105,89,92,92,95,104,101,95,100,121,99,103,109,101,99,99,100,91,98,88,90,90,87,101,99,90,105,91,98,114,96,93,86,99,91,106,84,107,99,96,86,97,93,108,100,102,98,88,105,95,97,86,95,86,105,108,105,103,87,101,95,104,77,101,97,109,110,111,115,105,103,90,101,97,102,97,102,97,109,102,97,92,104,92,98,97,90,112,100,97,99,82,106,91,97,95,85,118,72,85,110,92,101,106,98,99,100,103,97,100,90,88,95,85,103,87,95,87,104,97,97,100,102,97,96,98,97,101,96,88,110,106,109,102,93,102,80,106,107,83,108,91,107,107,103,108,98,85,96,98,99,105,104,96,92,101,100,106,99,98,107,100,100,106,97,99,100,96,107,97,99,103,83,100,94,106,99,103,104,95,91,89,98,100,90,93,103,103,87,98,107,102,92,100,105,95,95,94,101,94,101,101,87,101,90,105,100,99,98,104,100,71,104,98,89,88,102,101,96,106,97,96,98,85,101,102,87,94,105,100,94,98,105,95,83,100,97,59,106,95,100,106,84,103,97,94,99,102,91,97,115,99,110,101,102,105,92,103,98,97,104,104,102,110,100,130,102,116,101,95,109,103,98,98,97,90,100,105,79,101,98,104,98,101,97,95,104,89,102,106,108,94,90,91,89,119,103,95,104,101,103,99,99,90,106,102,99,120,98,94,94,102,109,92,102,106,96,94,110,90,88,107,100,104,89,104,100,96,102,89,97,100,95,100,100,97,104,102,96,100,87,91,97,93,86,110,95,92,101,91,108,103,114,95,80,110,84,96,88,107,105,96,109,94,106,105,102,107,103,95,97,105,93,102,99,108,108,93,99,111,103,101,81,99,106,102,103,108,104,111,94,94,96,93,90,117,111,95,102,95,106,91,102,109,96,97,99,98,99,111,99,86,100,97,96,111,97,99,101,106,102,105,96,95,105,105,125,102,102,98,101,96,87,91,91,78,93,110,100,97,94,95,106,107,91,95,99,72,97,106,103,102,107,93,92,101,101,100,93,88,106,87,99,102,95,80,99,107,90,77,102,103,103,96,97,101,84,87,101,124,101,94,112,100,82,93,109,96,101,104,102,98,97,96,109,106,99,92,95,106,95,99,87,107,101,101,103,102,96,104,94,105,107,102,107,109,101,91,96,98,113,102,97,126,96,97,91,93,85,104,103,97,90,94,125,113,87,105,111,102,109,110,101,105,91,94,102,113,107,105,95,95,104,88,94,109,97,75,86,95,92,102,90,110,90,95,101,92,96,97,95,97,91,103,104,84,93,92,95,98,79,100,102,99,95,99,93,85,98,99,93,88,100,71,86,100,104,95,107,105,92,94,90,102,89,99,80,99,93,94,101,99,105,104,107,107,96,102,105,99,94,95,98,99,96,104,88,95,89,83,102,111,92,103,95,97,102,91,99,112,94,97,108,109,111,97,91,111,91,94,90,105,92,103,92,109,96,96,87,88,100,86,91,102,95,108,95,103,98,103,104,93,98,101,97,95,91,93,105,106,108,97,94,106,114,104,100,106,87,97,90,100,97,87,98,95,94,107,99,93,97,101,96,96,87,105,116,82,107,111,90,73,84,95,90,89,98,93,109,86,110,100,94,98,95,100,94,113,98,91,88,89,105,94,90,94,84,98,99,103,97,95,96,99,86,87,99,94,98,91,103,109,101,102,109,91,93,105,91,90,109,100,109,102,97,95,108,96,101,95,110,90,98,106,97,100,106,101,99,99,93,98,72,98,105,91,80,96,107,105,81,87,105,100,98,93,92,91,94,93,93,88,88,95,101,95,96,94,97,101,105,90,101,97,95,100,95,92,79,93,93,100,84,108,90,106,86,95,97,105,91,104,109,101,101,101,97,102,106,91,95,92,105,96,87,93,96,98,102,101,84,105,104,103,105,99,97,98,103,93,93,95,118,101,107,104,98,98,95,94,102,88,100,96,110,99,100,101,94,103,98,104,91,91,86,101,103,90,92,106,98,102,110,95,83,95,97,96,113,98,95,99,120,89,87,97,103,97,89,94,103,92,102,93,89,98,79,89,107,87,103,109,94,99,99,113,109,92,92,107,87,96,98,89,88,92,100,88,102,95,90,87,104,99,95,69,96,84,104,107,94,76,106,98,105,109,108,86,108,123,94,94,99,98,96,96,98,87,94,87,98,84,99,107,94,101,107,92,94,74,93,94,101,86,98,112,106,101,93,88,76,97,105,96,94,91,101,90,92,123,100,111,98,94,100,84,94,101,96,97,81,86,133,101,110,107,92,103,100,104,98,105,99,94,99,106,95,98,88,95,106,95,100,95,89,101,87,91,101,113,105,85,97,101,91,99,83,109,106,91,102,97,93,100,102,86,95,99,86,80,103,87,87,108,91,92,102,102,103,93,99,117,107,91,101,108,104,98,100,112,96,98,98,91,101,119,87,92,85,109,108,79,102,94,91,102,85,101,101,88,121,91,96,91,98,96,104,102,91,90,93,111,99,99,88,92,100,102,95,87,91,90,98,100,104,94,101,99,102,93,100,107,94,100,104,105,91,79,100,96,105,98,102,104,100,111,100,112,97,105,104,101,96,107,93,98,100,104,98,103,97,98,102,91,98,107,97,98,99,98,101,97,102,97,92,107,97,110,95,95,93,91,81,98,93,89,99,105,102,94,102,103,109,99,96,98,91,91,98,99,97,94,93,104,102,97,91,98,97,103,95,99,89,94,91,108,95,97,101,87,95,109,125,87,93,97,99,97,101,98,99,101,79,106,108,90,113,91,102,94,103,93,109,95,101,98,115,94,98,94,107,88,97,90,107,97,91,93,103,94,101,105,106,102,93,93,98,92,97,91,93,89,108,92,103,97,85,98,107,104,114,106,91,108,101,100,98,98,97,96,98,95,91,92,98,87,93,101,89,98,105,108,85,105,95,103,88,84,101,97,104,100,93,94,93,108,107,94,88,97,89,98,108,95,105,92,91,100,109,102,96,99,102,112,102,105,92,103,97,93,91,91,93,111,96,106,103,94,97,98,93,100,102,85,100,102,124,103,104,97,96,94,108,92,97,92,87,97,96,94,89,88,95,94,97,98,91,97,115,99,113,67,88,94,87,88,83,93,102,91,95,93,93,100,103,109,97,104,103,96,89,107,105,102,103,108,106,92,93,92,99,101,87,87,102,98,108,98,81,94,105,86,96,126,98,93,88,92,98,110,83,93,91,107,97,93,95,97,118,86,91,98,95,109,100,91,84,97,116,99,99,102,99,105,91,87,105,107,111,95,98,87,92,95,95,90,94,104,87,90,95,94,108,89,108,101,95,102,97,86,99,102,106,102,108,96,93,69,89,98,99,100,91,93,110,99,95,97,102,103,86,92,90,92,102,106,98,87,95,97,93,102,99,109,98,107,89,119,107,99,103,84,80,109,108,117,119,102,99,108,98,94,92,83,102,96,89,104,94,104,100,83,100,101,77,101,104,95,101,97,91,88,101,115,93,100,104,109,101,91,95,110,87,105,97,97,105,111,101,100,90,105,91,95,84,95,92,96,97,95,93,94,98,95,89,98,99,109,95,103,92,103,91,97,87,101,98,107,100,108,106,106,100,107,109,92,86,98,106,118,95,100,100,83,95,94,108,97,99,90,106,106,113,93,95,95,88,99,105,102,99,103,91,97,97,119,111,87,94,109,95,91,92,94,98,101,95,83,93,95,104,100,87,105,85,97,98,92,99,92,111,94,93,99,101,100,103,109,96,87,102,101,99,78,101,110,70,92,96,100,100,92,109,96,96,102,108,102,100,105,96,104,92,109,83,95,85,105,112,93,87,89,87,101,93,103,99,101,99,94,96,104,122,100,101,106,103,92,99,105,97,98,108,108,98,97,95,95,97,96,95,105,89,101,87,101,109,108,91,102,95,94,103,96,86,89,109,97,115,99,88,105, +739.85449,95,108,99,105,85,91,110,95,91,102,100,96,96,126,111,95,101,99,107,93,103,94,83,107,101,107,110,101,100,112,94,100,103,91,109,96,105,94,101,115,107,95,79,80,109,93,84,102,103,103,88,95,97,103,100,101,105,113,107,84,102,108,86,100,79,109,103,102,92,100,90,95,100,118,94,106,96,108,91,108,108,90,116,95,96,100,98,108,93,103,100,109,98,99,99,102,101,96,102,86,89,105,93,98,109,96,90,103,94,108,106,97,101,109,93,94,79,99,96,121,89,99,105,109,89,95,97,97,114,102,105,97,93,95,106,79,94,92,107,100,92,110,106,96,91,86,98,102,92,96,103,90,95,92,96,97,80,105,111,89,100,98,101,98,105,95,105,107,90,94,99,97,91,92,101,97,103,97,95,98,96,102,102,100,97,92,100,94,90,89,88,103,90,91,98,101,98,91,100,117,98,107,109,105,96,112,99,92,104,109,93,99,90,97,101,80,92,97,101,84,100,94,101,78,101,104,102,93,97,98,105,113,94,103,94,90,104,72,98,92,95,110,99,63,83,97,110,98,96,95,98,97,83,93,88,103,92,95,98,107,93,93,98,97,97,116,101,92,92,105,98,99,83,94,99,94,105,100,98,77,107,100,112,100,100,96,94,85,105,95,90,110,108,98,101,107,93,98,93,99,108,101,104,96,95,104,94,105,106,110,91,102,85,86,105,94,106,79,84,105,88,100,104,110,106,87,92,93,119,99,110,91,113,100,88,106,97,97,89,90,95,91,93,94,112,97,95,117,104,96,96,92,102,99,91,101,104,108,105,106,107,94,91,101,95,101,97,96,96,101,97,92,87,106,111,90,92,92,99,105,96,92,94,103,93,91,104,103,102,101,107,102,88,93,88,99,92,100,94,100,101,101,88,93,86,95,101,97,105,101,93,78,90,98,104,100,96,88,90,93,96,101,92,83,91,109,101,105,94,97,101,96,83,111,100,83,97,105,103,106,96,95,107,91,96,103,108,103,102,100,88,99,94,101,103,99,107,100,96,99,96,92,102,95,97,97,98,96,93,86,99,95,101,74,95,84,91,112,102,97,104,95,115,95,94,79,107,97,86,109,100,102,90,97,86,92,135,111,97,88,111,92,91,108,93,104,100,98,79,88,109,103,104,113,105,104,105,104,93,100,106,84,96,76,102,99,108,99,109,96,102,97,108,109,98,97,102,91,96,103,88,99,113,102,67,87,96,111,93,100,90,106,104,104,113,96,103,89,100,105,99,102,91,99,96,91,88,95,104,110,89,84,88,102,86,98,97,106,91,98,102,94,116,102,98,99,101,97,105,107,101,97,100,111,105,92,96,94,99,87,86,91,90,108,98,105,91,87,108,96,103,102,95,95,110,106,108,95,101,100,87,91,109,95,97,93,77,99,101,104,91,101,96,102,83,68,101,86,97,89,97,95,102,102,93,96,67,79,96,109,88,99,90,97,95,101,96,110,93,101,120,98,112,100,86,106,96,91,88,101,100,106,88,97,99,105,94,83,102,102,101,102,98,92,99,114,89,96,103,95,99,106,101,109,105,96,102,99,104,99,97,94,104,102,101,106,90,94,98,93,112,82,96,88,94,96,100,102,105,100,98,93,105,98,93,105,102,106,109,101,103,97,95,105,80,105,91,93,106,92,100,88,95,73,105,98,107,109,99,102,96,96,112,90,95,100,93,94,96,104,86,95,94,102,96,103,88,106,97,114,96,89,111,100,96,96,89,98,64,91,93,101,109,102,86,117,101,100,93,98,105,116,99,99,97,106,93,90,101,103,98,109,87,104,79,99,102,100,122,94,101,95,88,98,102,104,105,106,98,91,98,99,94,93,95,93,102,108,103,104,99,92,107,101,105,95,103,98,98,96,101,96,105,87,80,96,91,105,95,94,95,92,92,104,103,113,110,100,91,105,100,95,95,95,118,107,95,102,108,92,107,90,89,92,65,104,101,107,84,102,108,101,96,96,111,87,89,105,102,83,93,95,96,95,92,103,97,104,87,109,74,102,97,102,104,87,95,98,94,106,95,97,97,105,80,88,99,99,99,91,107,94,100,103,102,94,94,89,97,120,98,111,95,106,101,89,101,105,100,93,100,99,99,102,97,87,100,97,96,101,96,104,121,105,108,94,104,103,95,105,103,98,103,87,82,96,94,84,67,106,105,91,103,87,98,101,97,106,106,88,100,103,95,106,103,117,95,90,100,98,100,90,110,95,113,93,92,107,92,97,89,117,99,90,101,101,104,104,106,103,93,100,100,87,94,100,102,92,103,90,87,97,95,89,101,109,96,92,111,105,92,97,112,94,99,100,94,99,95,97,103,87,88,105,90,91,91,97,100,97,96,90,100,98,94,103,96,100,87,92,96,106,92,105,91,96,103,92,88,111,93,117,106,100,108,95,93,102,94,106,115,89,72,88,104,87,111,89,111,93,92,99,93,83,86,96,106,94,93,94,87,95,103,105,99,99,106,93,91,99,90,93,90,109,103,95,110,87,96,118,100,109,88,104,102,108,90,94,96,103,93,107,91,71,105,103,92,88,94,95,104,92,94,110,99,101,94,95,76,94,105,92,103,104,102,91,111,101,109,100,92,95,92,93,86,93,96,87,91,92,94,94,105,101,89,102,101,92,103,92,94,104,84,93,104,90,111,91,94,101,98,98,98,98,92,80,91,88,87,105,93,92,94,100,114,98,79,97,91,106,91,94,105,96,103,101,91,102,104,104,98,100,102,98,91,96,95,92,98,108,101,88,103,97,101,110,87,101,101,84,103,87,111,105,112,95,113,104,89,103,105,102,107,104,97,102,89,108,100,99,110,95,101,103,107,100,85,98,89,100,102,108,98,112,103,94,99,94,106,108,102,91,123,75,107,107,95,102,102,94,103,105,89,91,90,99,80,96,90,118,94,100,97,106,92,93,91,101,96,95,91,100,97,80,102,97,102,99,102,93,89,91,113,96,92,91,110,97,95,100,91,95,99,95,94,95,100,88,123,109,101,96,108,93,89,93,98,97,93,102,121,89,91,89,91,96,104,100,99,76,94,112,102,107,92,92,92,98,91,101,109,105,64,107,109,93,103,100,105,94,103,96,112,96,101,100,100,106,100,105,91,89,102,91,97,106,100,87,98,106,88,86,97,95,100,101,93,91,94,92,79,102,98,99,85,79,104,105,94,116,94,99,88,100,108,91,96,86,98,115,106,93,103,123,106,103,102,94,98,100,75,92,112,91,78,94,91,94,93,90,97,93,100,106,103,94,94,87,100,91,97,99,91,97,92,90,108,88,85,93,95,113,89,106,99,97,101,103,112,100,94,102,103,104,106,102,91,100,79,98,97,104,103,99,101,101,97,97,98,97,87,91,103,106,102,111,105,87,105,92,89,99,110,101,100,114,64,94,89,96,77,97,84,96,100,102,95,102,94,94,103,109,83,88,92,108,107,94,111,92,109,94,82,102,100,92,94,95,106,91,103,97,104,106,98,103,105,106,102,103,84,102,123,91,102,98,93,86,100,98,106,101,101,104,96,97,105,94,98,102,92,99,94,106,95,109,93,110,95,100,80,94,99,110,97,95,106,96,94,101,82,113,93,89,105,105,98,105,95,87,92,101,98,102,86,100,96,106,100,109,105,67,100,99,97,83,101,82,106,100,66,98,108,103,101,73,87,94,98,105,101,93,92,95,106,103,96,93,97,101,94,109,101,95,96,88,101,84,106,104,101,95,87,102,106,95,92,92,112,105,96,97,86,100,98,91,100,105,99,97,100,80,117,116,101,91,98,105,95,94,80,94,82,102,94,98,94,91,96,102,105,99,94,101,86,107,97,110,90,113,103,93,85,107,107,91,110,92,90,100,95,100,95,96,106,94,96,101,97,95,98,99,78,99,103,99,100,99,110,93,95,89,102,116,89,102,86,96,115,90,83,102,95,115,111,88,82,96,101,92,99,100,93,101,98,85,96,100,96,97,94,95,94,106,88,98,98,93,102,75,83,101,93,95,117,107,95,73,107,91,98,88,93,100,111,101,106,101,94,94,103,101,92,92,102,102,99,101,88,98,97,111,109,102,94,112,102,106,89,106,93,87,85,100,97,99,103,108,89,89,97,88,89,95,92,108,92,96,94,85,106,100,106,91,97,103,101,101,96,113,86,98,95,101,110,120,98,91,101,117,105,93,104,100,92,108,102,109,67,101,101,108,108,79,95,89,96,122,100,103,100,87,103,104,105,88,99,95,72,105,89,97,108,103,102,99,105,94,100,110,94,102,94,98,93,102,105,94,96,95,114,78,90,93,92,95,100,98,93,115,95,100,104,98,94,108,97,108,101,88,103,85,89,102,103,99,95,91,97,83,94,91,91,103,103,97,96,87,98,106,112,100,92,87,95,94,98,96,103,105,103,102,105,109,100,98,91,93,104,83,103,97,100,105,119,105,98,72,104,108,97,91,91,91,112,94,107,104,94,95,94,97,90,100,89,119,99,104,96,82,113,103,94,91,110,93,102,85,105,97,88,113,100,93,102,112,100,106,94,83,97,78,90,97,94,110,94,99,105,95,88,105,115,116,83,95,99,103,91,101,98,94,109,95,101,86,101,94,97,83,98,73,101,99,100,99,96,93,105,98,87,96,107,90,92,96,91,119,97,98,111,103,109,103,97,94,96,105,112,98,101,91,77,99,108,92,105,98,98,103,106,94,115,120,102,101,113,110,106,98,96,96,95,106,99,93,91,93,94,105,109,106,83,87,85,122,90,87,90,97,103,87,107,96,102,108,79,93,109,101,108,104,91,99,95,103,94,93,96,81,113,97,110,91,94,92,100,109,104,88,109,91,95,107,102,101,85,87,94,114, +739.99591,87,107,90,85,87,109,99,96,105,99,93,104,113,111,119,86,107,96,96,93,114,91,90,104,105,91,98,101,107,103,91,92,100,96,96,104,96,93,86,98,108,91,103,97,101,104,90,91,101,97,87,100,97,93,94,99,102,98,110,90,95,90,98,76,108,100,87,101,106,99,96,91,90,90,107,98,100,99,96,101,98,102,91,95,99,101,88,99,94,86,102,95,101,104,114,94,93,106,96,101,101,116,94,95,121,89,100,93,104,91,84,92,105,105,106,101,91,98,121,91,101,109,109,104,104,107,114,90,128,107,92,106,105,118,92,102,100,101,101,100,99,95,88,90,102,102,105,113,98,91,89,92,106,91,95,94,107,97,98,105,91,113,82,109,95,98,105,96,100,87,100,95,111,91,98,111,96,84,99,103,107,97,113,108,98,94,96,95,90,107,96,91,103,98,98,101,97,105,88,93,99,92,94,97,102,99,93,93,95,78,78,95,93,103,96,98,93,116,92,91,91,95,87,96,103,105,100,91,88,100,91,102,113,100,87,97,87,110,117,98,87,110,101,99,101,94,82,106,102,97,103,79,98,92,101,117,96,100,98,92,95,102,104,89,94,99,98,94,113,99,97,99,103,95,101,109,91,101,99,88,103,102,94,99,104,92,98,106,91,105,91,103,94,104,90,104,96,113,100,105,103,104,105,110,91,105,108,103,84,107,100,101,104,94,100,100,107,94,107,98,95,93,100,100,101,91,88,82,105,91,98,94,97,96,96,100,92,108,93,102,93,93,116,111,75,100,109,121,102,91,91,108,89,101,91,108,95,101,101,106,100,98,96,65,107,92,97,103,103,108,96,86,106,84,104,96,106,98,59,98,103,100,98,92,104,109,99,103,97,105,102,95,97,113,93,90,89,117,101,106,101,103,91,86,103,91,104,94,100,89,91,89,94,102,102,88,97,94,102,98,101,92,94,104,94,95,96,105,101,91,82,114,98,106,97,98,88,110,75,86,104,100,100,101,100,90,110,101,95,93,95,108,96,102,104,101,97,91,117,103,99,95,103,107,99,104,95,109,104,88,109,101,92,100,88,97,95,118,71,91,99,89,99,95,86,94,114,106,99,95,105,103,80,78,91,106,88,100,96,107,91,89,99,83,98,101,88,94,97,101,105,121,100,108,108,88,94,90,92,88,84,92,83,96,124,87,107,99,92,94,101,100,101,94,95,92,104,117,91,92,94,99,100,85,107,101,101,99,96,115,105,105,105,103,93,99,112,96,82,99,92,107,92,97,106,88,91,101,99,91,94,99,107,114,102,113,99,100,105,93,100,92,78,82,93,104,109,105,91,88,98,105,97,96,104,93,101,95,92,102,92,95,110,91,112,117,102,93,99,100,101,113,96,68,102,78,96,95,106,102,97,92,101,96,102,104,95,88,96,101,92,95,98,100,90,101,98,100,100,99,96,97,104,108,96,101,97,92,108,92,100,101,98,102,102,96,95,101,109,91,96,93,101,101,74,118,110,91,104,94,95,98,103,99,93,91,100,106,113,96,99,104,105,93,101,98,97,97,103,99,114,96,100,81,92,104,106,91,93,96,93,70,86,99,95,105,94,110,95,111,101,103,94,103,103,99,103,94,99,96,99,91,100,94,83,97,102,110,72,91,102,100,90,86,87,100,103,89,114,92,100,96,102,96,98,97,91,108,99,98,101,107,100,92,100,92,95,99,99,86,104,100,87,109,94,96,97,110,87,88,104,91,112,97,105,101,109,101,105,102,96,99,102,102,101,79,96,114,87,97,101,109,86,94,84,116,87,86,116,112,104,105,92,95,100,99,108,105,94,95,104,104,109,92,103,83,88,102,89,93,100,83,107,95,91,96,98,97,101,97,107,98,100,105,91,99,93,92,96,96,99,113,92,105,87,97,81,99,100,105,97,105,92,102,95,98,110,101,96,92,95,96,100,107,100,95,97,105,103,91,96,98,94,101,101,82,100,80,87,95,92,112,106,99,96,95,106,107,96,87,104,90,107,90,107,92,91,101,104,95,97,101,99,97,99,109,63,95,105,105,96,99,98,101,110,110,87,94,94,90,94,104,101,87,100,95,95,82,104,97,109,100,103,114,85,95,96,99,102,110,102,101,87,99,80,112,103,97,91,122,102,92,97,109,102,107,92,96,98,98,93,97,106,114,104,97,91,89,101,89,95,94,101,88,105,98,97,96,90,87,96,108,113,98,115,116,91,82,93,96,109,101,108,104,71,98,101,96,92,115,90,92,97,86,106,113,92,103,101,106,92,106,85,106,90,104,108,105,100,103,103,94,89,94,104,94,103,98,109,102,105,94,115,83,107,85,100,89,81,102,102,109,88,99,94,94,104,112,91,104,102,106,99,81,110,99,96,111,87,93,94,103,107,87,104,91,95,96,99,102,98,96,99,91,114,107,92,91,91,94,92,90,88,109,95,101,94,84,116,93,96,88,95,97,95,90,103,103,109,96,78,105,101,97,90,103,98,102,102,94,93,102,96,83,102,98,99,98,108,99,99,100,90,101,108,95,92,107,106,91,121,104,96,92,95,98,99,102,90,89,104,94,75,90,94,81,113,91,96,90,97,103,105,91,92,98,109,106,82,83,106,85,89,71,105,101,108,75,92,88,102,97,93,101,100,103,99,95,113,82,104,95,79,103,88,92,95,97,111,102,92,96,98,87,92,97,110,96,100,84,79,101,97,95,101,102,79,99,91,91,98,102,101,89,101,84,98,98,103,85,123,104,98,104,104,96,79,100,98,105,108,99,111,102,110,113,108,108,108,101,98,73,113,108,100,107,86,95,85,94,87,100,117,102,95,92,103,77,96,113,99,105,99,102,103,93,98,96,112,106,77,106,102,111,102,97,102,98,96,111,97,81,92,95,102,102,89,100,103,87,101,101,97,106,104,95,92,102,95,103,107,97,89,97,96,98,109,99,99,97,93,105,96,92,91,103,92,111,97,95,95,92,93,93,101,89,91,89,92,96,95,93,96,103,106,121,109,104,87,101,104,98,106,113,103,102,100,95,84,109,100,97,99,111,79,83,99,128,86,98,95,100,104,91,83,91,101,94,106,101,89,91,104,102,92,102,91,99,106,99,99,103,106,103,98,83,89,99,102,109,91,89,66,107,109,102,104,91,111,96,98,95,100,98,102,100,100,95,105,91,92,102,113,98,110,106,100,98,109,91,102,99,87,98,92,98,105,110,101,111,115,98,101,107,113,101,106,99,92,97,99,102,108,98,98,111,100,90,100,98,91,93,95,101,89,102,103,108,92,90,85,100,107,108,91,91,82,105,98,100,92,93,96,101,106,95,102,88,107,98,88,102,100,93,98,96,92,87,104,95,93,137,100,96,102,94,100,93,105,96,90,93,99,97,93,95,93,92,98,95,92,88,99,108,92,106,97,106,86,86,89,95,102,91,99,94,106,86,105,87,103,93,93,92,99,88,108,100,112,96,95,99,110,103,102,105,83,101,109,85,104,101,90,101,95,105,99,98,105,101,103,111,104,103,96,87,93,92,98,96,87,99,93,103,97,95,83,81,96,94,99,102,85,102,92,90,91,109,104,113,105,104,94,93,107,85,102,110,103,98,98,99,102,96,106,86,71,94,100,97,97,106,100,112,75,100,102,84,105,91,100,105,94,96,95,101,93,91,96,99,112,100,110,105,104,93,96,91,115,90,93,96,97,115,95,102,105,105,91,106,98,100,87,100,105,79,108,103,99,99,102,88,102,98,105,93,93,91,97,108,92,100,99,91,104,91,100,104,66,87,115,104,88,102,107,96,91,108,95,96,85,99,97,108,96,107,100,97,87,110,96,105,99,105,88,101,97,111,99,107,113,104,92,87,91,105,99,91,95,99,98,97,94,84,111,95,94,100,101,82,109,88,105,99,99,101,106,99,98,99,101,93,86,115,103,67,99,98,87,88,97,109,79,102,109,97,103,86,98,101,96,106,101,87,104,87,85,102,103,97,106,98,94,82,98,109,104,91,98,113,96,109,86,103,94,116,102,99,98,93,103,94,108,96,99,98,93,91,92,93,102,95,90,112,106,105,105,108,99,95,103,103,97,99,91,101,98,85,94,113,101,91,92,93,105,94,91,105,94,102,96,93,106,113,100,107,92,99,98,105,91,107,99,98,112,103,92,99,102,97,91,101,100,94,100,98,103,102,106,95,91,87,96,87,80,106,87,105,102,103,96,104,98,107,99,94,94,101,93,97,99,71,105,92,104,128,100,87,91,89,109,101,97,100,103,101,104,105,103,105,100,97,101,92,92,101,102,100,101,107,100,94,99,97,103,106,111,108,100,100,92,92,121,87,96,113,98,91,102,102,76,107,94,105,93,94,100,97,91,91,97,99,93,97,113,98,89,97,93,89,105,115,100,99,102,95,106,92,101,95,99,97,99,102,97,91,94,97,97,99,98,104,114,120,94,104,99,89,106,99,85,104,113,88,106,107,101,97,104,92,93,99,91,93,83,88,94,110,101,105,94,96,89,96,101,103,92,105,94,122,84,106,90,85,86,112,110,88,90,94,98,93,96,71,98,100,104,97,95,103,98,102,101,102,100,84,96,96,106,91,96,120,102,107,106,95,110,93,103,92,89,89,103,103,95,90,107,112,93,94,104,101,96,94,101,102,94,109,98,93,99,101,95,111,95,109,101,98,102,97,93,101,88,101,86,99,104,87,101,100,105,101,95,108,103,109,100,90,96,104,104,134,106,96,100,107,90,101,91,86,94,105,101,96,102,99,102,94,89,97,99,114,94,97,109,89,93,98,98,97,91,109,107,86,97,96,84,109,110,104,106,90,113,69,92,113,106,93,99,93,102,90,109,97,96,100,103,92,73,96, +740.13733,97,102,85,88,91,104,87,87,105,87,86,91,102,88,96,93,100,112,92,112,104,77,96,96,73,92,82,97,114,106,95,89,99,91,88,93,81,83,84,92,88,88,103,94,101,117,89,91,101,92,97,96,96,97,111,79,97,92,85,73,93,105,82,90,91,112,93,94,91,88,106,92,86,102,105,129,97,94,103,98,125,99,103,96,90,102,94,90,96,97,91,96,121,83,99,106,100,101,98,93,100,107,100,101,89,106,78,88,102,114,98,96,104,91,111,95,96,83,94,85,100,97,93,108,119,87,99,88,99,95,109,100,108,91,110,92,94,102,88,107,109,101,94,93,89,98,91,101,85,78,96,86,108,90,94,105,91,107,88,88,94,77,101,87,96,99,92,67,69,99,83,100,89,94,104,103,104,100,100,83,98,105,105,95,89,97,103,89,101,104,83,105,99,103,86,96,91,95,93,100,99,88,96,99,95,95,97,90,102,113,96,101,109,108,97,87,90,96,92,98,90,107,99,98,115,103,98,88,109,98,97,93,87,96,103,95,97,108,99,101,92,90,108,97,92,89,102,102,99,100,101,91,91,81,82,96,103,111,82,92,87,96,90,97,92,95,80,95,95,84,101,103,97,99,89,99,91,102,81,111,100,105,95,102,106,97,86,95,105,92,82,103,109,98,113,108,88,106,100,91,106,101,90,109,80,95,110,91,102,99,112,121,80,101,92,94,83,103,90,85,102,86,103,95,89,111,93,87,104,101,90,69,93,105,102,102,89,89,96,78,108,92,96,65,94,104,80,108,103,94,110,107,101,96,81,97,106,74,97,99,89,98,95,103,87,92,80,86,98,105,96,101,103,102,95,102,97,95,99,96,102,65,97,96,100,85,102,112,99,91,91,105,90,96,93,100,102,58,83,107,92,92,86,72,81,93,109,96,101,103,81,77,110,91,97,99,97,94,90,99,63,109,97,99,94,84,96,87,97,100,97,91,92,104,106,88,109,107,92,106,101,84,96,92,101,97,91,95,95,98,75,112,86,104,89,93,93,106,110,93,94,93,103,101,100,100,101,102,108,98,96,97,104,93,79,90,96,95,95,112,118,109,101,103,102,103,93,96,93,112,98,110,97,105,97,95,96,97,80,102,107,90,100,94,96,98,99,114,88,93,73,96,87,72,104,103,97,99,84,77,94,86,110,112,99,100,98,104,92,95,97,85,94,68,101,109,90,92,90,81,102,101,89,97,92,100,98,104,96,95,97,105,90,74,101,102,104,88,91,91,112,101,96,93,103,100,109,96,106,94,84,82,90,98,97,110,100,86,104,105,86,98,94,86,99,100,107,107,56,84,108,83,94,99,101,102,107,95,91,103,86,95,82,90,114,100,83,95,98,87,88,90,99,95,105,98,87,96,97,97,103,87,93,87,108,88,92,88,97,86,116,104,86,95,96,77,101,102,97,88,101,97,102,102,87,98,95,104,91,57,93,101,105,72,108,85,106,99,119,112,100,101,90,94,86,110,101,95,101,104,110,94,97,91,92,104,117,99,97,98,105,98,93,82,100,102,96,110,97,105,111,98,108,103,97,105,101,103,103,80,99,93,107,91,91,97,98,94,85,95,98,106,101,97,101,79,106,98,84,103,93,75,109,114,100,97,106,106,96,88,96,84,120,96,98,97,111,91,94,90,111,91,100,91,101,109,97,105,92,97,98,94,106,98,84,95,112,103,102,95,94,107,91,101,83,95,90,94,95,86,97,91,89,94,91,114,95,90,98,96,92,92,100,87,105,104,101,101,83,97,100,96,88,96,96,106,101,102,85,89,105,96,100,82,103,104,106,90,111,93,103,84,90,86,99,94,108,106,105,92,94,100,101,92,108,108,110,98,93,98,92,90,116,99,89,108,104,102,98,105,97,86,97,96,90,114,100,95,91,83,95,110,89,103,93,101,94,106,99,101,109,89,89,89,94,100,100,99,98,90,96,94,100,97,87,87,92,111,93,101,101,93,91,102,108,105,97,92,102,96,99,95,98,88,94,104,115,102,76,116,93,107,99,97,100,96,96,101,83,91,75,87,92,100,109,105,93,99,87,115,93,106,102,93,102,101,95,92,97,110,85,108,93,98,96,89,100,100,109,109,95,92,105,111,93,95,90,108,102,96,82,95,96,92,83,74,103,87,87,100,124,91,83,104,101,105,87,102,92,101,95,95,113,100,98,113,88,79,79,97,95,96,108,103,88,90,105,90,94,109,98,97,87,112,92,89,106,95,105,96,96,100,85,102,93,91,97,99,101,100,83,99,98,87,94,95,94,79,92,91,101,105,96,93,84,92,114,93,81,96,93,93,90,113,104,97,75,96,95,97,108,101,98,92,98,107,103,97,94,88,99,90,106,97,90,100,113,86,92,90,95,102,90,92,75,90,85,91,98,96,89,105,89,90,87,96,93,101,106,86,94,87,87,100,91,95,97,91,97,99,97,74,107,95,116,95,98,90,98,94,98,96,107,100,120,95,105,100,87,96,87,100,98,93,85,104,106,95,86,89,102,92,93,91,99,94,98,102,90,101,95,97,96,94,100,104,104,89,105,95,99,83,91,92,89,103,112,77,100,103,100,101,107,92,97,100,101,100,94,93,109,91,100,84,94,96,94,87,111,104,87,101,112,88,92,102,99,78,89,102,102,88,74,111,94,90,91,88,102,97,94,94,112,83,101,105,90,92,94,101,111,90,83,90,80,98,116,93,117,95,95,90,98,87,96,89,99,95,106,88,112,109,87,101,95,95,97,96,98,91,88,101,100,95,88,88,88,93,100,93,101,94,100,97,95,93,109,106,107,90,96,99,94,87,105,87,84,88,68,103,92,99,104,96,104,102,91,97,79,90,111,88,95,83,96,100,95,87,90,99,102,91,103,89,85,98,87,98,94,94,92,101,87,99,83,92,97,83,104,100,106,98,107,99,93,96,99,103,98,84,91,106,76,100,95,95,95,100,94,96,102,73,81,83,104,102,106,88,88,79,103,83,91,110,98,100,95,97,95,104,96,93,96,87,87,96,89,89,103,99,86,103,96,102,84,79,87,110,103,88,117,107,98,97,94,93,90,112,106,108,88,97,102,97,90,91,86,101,97,93,88,87,103,83,73,98,101,106,91,82,88,92,87,92,88,92,99,106,101,75,98,85,93,89,99,96,100,91,105,104,105,94,94,92,87,84,105,97,101,92,95,101,94,97,113,102,105,97,97,110,94,84,96,98,111,85,88,97,102,102,91,109,99,89,97,82,88,109,111,98,96,92,90,105,100,93,104,91,99,95,89,88,99,89,113,108,83,104,91,100,89,100,96,100,88,100,86,100,91,101,101,94,108,98,100,94,85,101,106,97,93,95,108,95,89,108,111,73,94,88,92,106,119,91,84,90,111,76,104,94,95,88,106,89,98,93,76,91,91,89,101,107,105,94,105,99,107,91,94,86,96,89,91,93,90,103,104,94,98,93,96,95,124,105,106,101,94,106,102,91,101,84,83,110,86,97,112,94,99,97,81,94,88,96,113,97,107,86,91,110,102,93,92,91,93,104,112,105,93,102,97,91,98,105,99,90,104,87,95,118,77,100,88,96,99,92,105,99,98,103,93,93,91,100,115,97,87,97,93,99,97,92,91,95,93,103,102,102,99,89,88,108,91,96,89,95,93,93,96,91,94,86,100,101,89,98,83,109,97,90,92,87,93,96,94,92,89,95,103,88,98,101,85,88,95,108,85,105,98,91,61,93,95,94,100,95,97,98,92,86,102,96,92,97,99,96,103,100,92,93,103,88,105,95,100,108,88,101,96,102,80,90,104,103,102,97,101,99,102,86,90,86,94,95,102,85,92,94,105,89,97,111,79,93,96,84,96,90,92,79,93,95,92,117,102,91,106,92,93,91,94,92,103,93,89,84,98,100,108,92,92,91,87,100,107,95,99,90,86,94,99,94,87,94,102,88,93,95,100,110,89,95,87,100,95,79,76,76,93,97,102,93,93,102,100,90,94,108,98,117,106,88,102,88,82,98,93,104,101,98,105,104,91,95,101,108,99,92,98,95,113,97,78,98,99,103,89,105,109,87,104,97,104,93,93,83,98,98,87,106,93,91,95,101,97,95,96,83,103,92,88,101,98,107,89,106,102,90,79,88,98,98,88,99,95,104,92,92,97,100,104,101,99,101,111,91,99,103,100,105,96,88,102,97,101,103,99,100,93,95,84,96,92,99,100,99,106,93,99,88,109,88,92,91,96,109,99,91,95,81,107,95,103,96,109,85,92,99,98,92,95,88,105,101,107,109,100,97,98,88,103,78,97,89,105,87,101,99,99,102,80,87,102,109,98,94,92,92,100,97,97,95,95,101,93,100,97,99,97,91,85,95,106,93,100,100,98,91,95,95,111,99,96,92,88,95,98,91,103,104,93,105,101,93,95,98,111,93,94,99,104,88,102,100,93,96,101,84,87,98,100,95,92,99,91,99,92,99,90,99,100,108,91,102,96,106,93,114,101,97,97,104,108,89,95,84,97,102,97,103,82,109,106,91,76,85,87,107,105,102,73,85,106,93,102,92,105,92,96,104,90,104,89,106,93,107,104,104,110,89,106,105,89,107,88,101,101,98,108,92,89,86,100,92,75,103,94,108,92,90,91,94,96,89,98,82,98,91,103,97,75,105,97,101,81,94,94,86,92,95,93,103,102,111,87,93,93,91,97,105,98,94,94,100,106,116,83,98,102,97,86,87,88,102,100,95,103,100,97,101,97,95,88,94,91,89,91,99,95,97,101,106,100,102,105,91,98,104,93,109,72,106,96,95,96,97,106,95,105,98,97,107,92,95,101,91,101,108,98,124,108,77,107,94,86,103,107,81,93,91, +740.27875,87,89,101,86,78,87,102,96,97,96,100,77,99,93,93,82,109,99,105,96,92,103,95,104,100,94,95,98,95,107,129,101,109,100,92,92,104,104,109,85,92,87,91,97,99,100,98,86,90,118,85,101,104,109,61,108,99,98,99,91,90,109,89,120,105,106,89,98,87,95,94,92,105,101,109,103,87,100,81,91,102,98,85,87,76,95,96,117,92,91,92,97,90,103,112,100,91,94,101,110,107,110,95,104,102,103,91,104,88,114,97,78,105,110,95,89,92,100,95,103,93,101,95,124,91,117,94,99,97,98,101,105,94,103,104,90,84,109,96,88,94,90,119,105,85,91,95,97,86,99,91,92,107,80,88,87,105,109,105,103,92,92,104,83,95,102,95,95,93,92,104,94,100,102,98,109,101,98,92,99,89,92,105,91,107,93,88,84,97,92,89,98,105,100,93,98,96,102,88,109,93,95,86,113,89,92,94,104,98,99,86,102,82,91,101,87,89,99,95,70,86,85,91,98,100,91,108,96,101,98,86,101,95,102,105,99,100,93,104,96,91,94,101,89,95,90,100,95,99,92,97,95,96,98,87,106,88,100,90,103,69,98,92,98,105,101,96,98,106,101,94,94,90,101,83,92,96,99,115,98,96,97,92,94,96,90,95,90,99,93,93,99,105,97,97,99,94,104,101,97,103,87,96,100,95,103,95,100,105,95,111,98,101,94,90,116,91,100,103,87,90,99,101,113,101,94,97,105,94,91,97,100,91,90,96,93,105,96,83,109,86,106,93,87,94,110,104,103,111,90,100,96,96,94,105,107,87,103,91,106,98,99,96,95,105,92,92,97,95,107,105,92,98,100,102,86,92,100,89,104,104,103,95,96,106,88,93,99,99,92,101,93,97,101,97,88,84,105,96,103,97,102,87,97,100,96,103,89,107,106,89,90,102,101,94,88,98,98,92,105,93,102,67,90,93,91,94,84,95,99,97,89,94,92,101,103,89,90,91,106,94,92,101,95,92,99,89,81,110,105,86,101,96,93,95,99,103,112,103,87,94,95,97,106,108,90,95,98,96,95,92,105,99,90,92,96,94,106,98,106,101,104,91,89,99,87,92,94,92,104,94,92,95,97,94,84,90,107,95,97,96,108,94,96,94,100,97,100,98,97,101,94,99,108,99,81,107,89,99,83,90,101,93,97,98,97,108,107,100,101,91,108,88,99,81,94,110,90,86,99,97,91,91,97,106,82,90,100,92,105,104,97,95,97,91,91,89,98,86,96,93,98,62,98,101,101,94,99,99,89,88,83,95,94,96,95,95,96,104,97,94,95,105,95,99,98,104,100,72,105,103,88,93,101,101,108,93,90,96,88,97,98,86,97,105,96,91,94,67,96,99,105,99,100,83,94,99,95,112,97,105,95,100,107,96,104,93,103,107,92,94,100,85,98,91,81,96,84,94,114,99,105,91,93,108,99,98,98,96,103,86,99,91,93,89,104,99,93,104,93,70,91,76,88,88,102,102,94,85,99,92,89,101,109,83,107,104,102,105,102,102,107,96,76,81,96,83,96,95,108,98,101,90,90,114,90,94,82,95,113,83,78,108,90,106,100,93,114,92,87,91,90,97,108,98,101,111,85,91,93,104,95,95,102,99,94,110,118,112,93,110,105,88,97,91,87,96,99,87,105,90,87,93,101,91,102,113,87,95,119,98,92,72,94,95,100,94,95,97,98,99,95,95,84,71,101,69,95,115,90,97,98,115,89,97,94,93,68,95,96,91,101,98,98,84,99,101,90,93,104,91,98,98,98,97,99,90,108,101,75,94,100,88,103,61,92,94,94,97,85,102,98,87,118,87,85,100,99,93,90,97,100,88,112,97,84,96,88,107,104,85,97,101,85,91,85,101,101,93,100,96,106,107,93,94,91,100,88,88,91,102,94,96,94,99,95,91,107,105,93,91,105,82,100,109,93,109,102,99,99,97,88,88,94,86,101,95,93,90,102,97,96,87,101,97,100,95,80,107,85,94,84,90,112,100,105,97,116,96,96,90,104,96,108,100,95,100,88,87,106,91,95,100,102,86,99,88,94,99,95,96,93,101,119,89,90,91,96,95,91,91,100,100,97,91,100,94,85,97,91,100,104,89,89,105,99,108,88,103,106,76,92,67,91,99,88,92,92,85,90,102,103,114,90,104,101,88,97,114,103,90,84,108,92,90,96,114,90,89,94,92,97,87,98,88,79,85,88,96,91,114,95,100,102,98,92,102,85,89,101,94,108,92,87,97,92,97,94,96,104,101,106,113,97,93,98,101,93,86,95,138,103,109,86,102,91,95,87,108,91,102,100,101,88,99,87,99,111,106,87,95,87,86,97,99,87,107,89,87,125,120,92,97,92,97,93,93,100,91,93,89,96,105,86,97,91,100,88,100,93,96,101,97,102,108,88,93,97,87,75,83,97,87,99,102,85,97,87,103,64,93,88,98,101,79,86,103,88,99,103,97,88,100,102,101,78,91,104,102,92,99,88,100,83,83,88,119,108,100,91,83,106,92,102,102,98,94,102,112,92,100,96,101,87,56,93,99,97,95,100,107,92,92,97,102,91,91,93,101,93,88,97,111,100,104,91,99,103,100,102,102,90,106,90,102,94,100,84,85,113,109,86,92,102,91,92,95,95,104,101,95,104,116,106,99,100,102,98,96,98,92,92,101,99,95,100,87,90,91,101,98,95,91,103,113,108,100,96,70,103,104,100,86,95,110,92,117,101,104,108,109,102,97,101,98,99,104,92,108,105,85,84,109,103,99,99,109,96,99,90,103,95,94,89,95,104,93,96,109,104,108,100,101,108,89,104,89,93,94,103,100,88,92,102,91,83,81,103,90,102,98,95,98,116,97,98,92,89,106,104,106,106,106,95,99,98,105,93,113,77,97,97,96,95,94,103,98,95,115,99,93,98,92,98,90,94,103,112,100,97,90,91,97,86,89,103,92,95,108,115,105,99,113,103,87,100,112,92,97,93,103,96,87,95,106,101,103,89,102,98,78,99,103,90,121,90,101,83,108,92,108,65,93,97,96,106,99,87,94,80,105,98,102,97,83,95,84,87,89,98,101,86,92,106,94,96,100,110,106,91,97,77,107,93,98,88,99,96,98,102,110,97,103,96,100,92,88,68,92,99,89,90,92,111,93,87,102,94,100,97,98,88,94,103,95,82,105,93,91,94,105,94,96,73,95,97,99,100,98,92,109,77,87,112,96,100,102,104,92,101,95,101,93,58,87,107,102,91,93,92,90,101,98,105,93,99,96,99,95,88,88,118,74,102,91,99,92,83,94,87,87,92,89,96,106,103,94,101,97,102,86,103,97,103,100,89,93,101,93,98,93,99,94,90,101,101,98,92,96,86,108,93,103,92,94,85,92,95,100,100,88,95,96,102,100,93,100,101,95,107,110,91,84,90,102,110,95,102,94,77,97,105,109,83,94,85,101,97,98,88,62,99,102,99,104,84,91,91,96,96,96,98,90,102,94,96,109,92,96,101,94,95,94,109,95,101,96,107,104,99,97,91,107,100,102,101,101,112,100,101,87,91,93,96,92,95,103,87,95,98,93,98,103,100,96,102,110,91,103,87,96,91,115,95,102,93,97,92,100,86,100,111,113,98,102,97,92,108,115,101,94,97,108,87,88,95,115,92,98,93,87,90,106,98,96,92,95,105,98,105,102,82,94,85,94,94,101,83,95,104,98,101,112,126,101,98,82,90,102,98,97,86,101,95,91,102,93,97,113,102,87,87,80,97,94,103,94,94,76,98,93,107,87,115,97,103,94,89,102,102,99,84,97,95,106,106,117,93,95,94,90,93,99,95,96,108,95,94,95,103,101,89,90,87,99,97,92,92,98,88,97,87,98,93,97,83,101,95,109,97,100,94,94,99,104,107,99,92,105,104,95,107,95,112,100,107,97,95,95,97,95,101,96,94,99,93,105,90,91,95,98,81,87,114,98,94,91,91,95,99,105,104,89,106,110,92,90,100,99,98,98,103,94,89,88,111,103,122,99,108,105,87,98,97,98,94,82,88,88,106,85,102,80,94,100,104,85,104,90,100,106,107,102,95,90,101,104,94,96,100,103,94,90,95,109,96,92,89,99,81,100,96,101,91,90,87,99,100,100,87,103,104,103,93,104,116,92,123,91,115,99,102,110,97,87,102,106,85,102,98,94,96,87,91,115,101,101,79,100,96,96,87,95,100,96,88,94,88,79,96,95,84,100,92,94,90,101,103,99,96,88,100,81,91,102,89,95,83,106,96,97,128,90,105,98,103,97,99,85,100,104,89,87,85,97,82,106,101,95,92,101,93,102,102,96,94,118,105,100,95,92,103,95,102,95,106,94,101,106,96,94,81,88,112,98,110,98,92,113,101,104,97,97,107,81,105,91,91,95,87,88,102,97,94,97,92,100,88,96,98,93,94,86,100,105,99,92,101,76,98,87,88,112,92,98,83,109,112,99,83,98,87,92,100,103,102,101,106,109,105,108,108,85,96,101,89,104,90,115,108,94,89,100,91,90,98,105,110,95,90,85,96,92,97,105,94,97,102,103,110,92,100,88,105,98,98,97,102,87,102,96,94,108,110,104,100,105,96,95,90,116,83,105,91,88,99,91,79,102,99,86,106,90,120,102,94,93,103,128,90,99,92,97,103,100,91,65,102,95,87,107,95,91,84,95,91,95,104,111,102,90,93,88,93,85,98,101,93,110,67,110,104,104,100,103,104,100,111,85,106,100,91,96,96,100,84,81,100,108,94,93,100,90,106,99,95,79,94,92,106,91,113,79,98,96,109,101,105,89,97,109,96,109,114,97,73,85,107,95,92,119,87,87,84,98,91,100,102,97,92, +740.42017,90,103,79,90,96,110,94,93,112,98,100,77,105,114,100,100,106,104,90,97,113,93,84,121,97,101,103,96,100,99,68,102,100,98,99,90,95,96,108,84,97,104,91,77,96,99,91,100,97,109,83,98,89,105,97,97,99,81,103,98,103,100,105,93,102,104,89,80,110,92,95,98,103,103,104,107,95,110,106,105,95,103,106,98,95,91,94,103,96,87,95,97,110,94,126,103,103,106,95,99,88,84,98,102,103,99,107,94,103,106,59,92,104,96,106,91,106,98,105,98,86,101,101,103,102,99,106,89,99,97,99,86,99,97,99,103,79,99,88,91,93,100,91,88,111,100,84,94,83,95,89,107,107,93,98,98,87,94,107,98,93,105,107,93,97,104,109,94,95,92,93,91,98,97,90,95,104,89,95,91,105,89,108,109,95,97,95,93,96,101,100,109,85,89,92,100,100,97,93,95,100,101,94,107,95,97,90,105,100,100,101,86,104,107,105,109,89,95,94,84,96,112,92,95,97,105,90,106,101,77,103,104,97,84,89,104,89,99,90,97,99,91,101,103,80,96,124,105,110,100,102,102,96,92,88,102,95,89,95,105,101,103,109,97,106,107,91,108,100,93,102,100,104,93,97,106,93,105,92,96,99,99,95,104,102,99,91,101,100,103,95,94,98,95,108,100,101,95,103,99,113,102,89,117,91,103,114,117,96,106,93,112,103,106,93,95,102,101,105,110,97,87,98,106,94,84,91,92,98,109,102,102,105,91,106,85,100,94,88,98,85,101,85,99,94,98,99,106,101,84,90,103,101,100,103,109,116,87,104,98,103,103,101,91,107,95,104,100,99,96,102,102,103,107,95,99,113,95,110,111,103,114,94,98,109,99,71,91,94,93,95,99,99,105,97,97,85,97,99,64,97,103,90,82,102,99,93,87,83,88,88,90,110,91,98,91,101,92,106,101,98,97,102,107,90,86,101,85,115,99,97,104,94,97,78,104,92,96,102,87,94,96,90,96,92,102,85,106,98,108,96,105,85,97,99,106,101,101,97,108,106,102,88,101,101,105,107,102,99,98,86,99,96,98,93,103,110,114,101,100,105,99,101,93,93,122,96,102,118,94,94,90,99,96,106,95,94,94,99,93,103,99,90,103,98,99,104,97,100,99,106,93,103,112,94,95,104,80,105,95,100,96,99,102,94,102,103,103,87,91,88,87,101,90,97,100,97,99,99,96,110,96,97,101,96,92,91,108,95,107,93,100,99,75,98,104,95,105,99,97,100,100,91,80,101,98,101,95,114,98,98,98,113,96,97,90,89,101,106,91,66,83,107,93,84,104,101,96,100,100,101,101,100,100,99,89,94,97,93,90,100,125,106,88,99,106,90,106,109,99,93,99,98,98,101,78,102,117,99,105,92,96,100,94,103,75,100,100,105,85,102,101,97,99,102,104,88,104,105,92,115,101,88,104,83,93,101,92,98,100,83,98,109,99,112,92,96,100,101,88,85,95,103,98,82,110,95,104,106,103,95,95,112,108,90,106,100,95,111,106,99,111,103,96,92,99,103,101,104,104,98,108,101,104,82,98,100,96,99,91,95,102,88,104,92,98,95,86,113,106,98,93,98,95,88,91,101,97,87,84,101,105,99,97,97,94,98,98,110,104,100,92,103,100,98,108,100,92,98,106,104,105,89,101,116,95,100,97,97,108,106,82,106,93,91,90,87,86,97,89,105,119,88,101,90,98,96,93,96,96,96,91,95,94,94,88,102,110,91,100,96,104,85,99,109,84,109,106,96,90,103,112,95,101,104,102,109,97,90,94,100,98,97,103,94,86,91,94,110,95,100,99,93,92,78,97,84,99,100,92,92,106,108,102,98,95,99,100,100,93,96,95,95,93,107,95,104,88,113,109,111,105,114,101,99,97,88,94,104,99,109,90,97,96,100,109,100,99,89,103,104,91,90,92,106,87,92,98,101,87,97,113,102,98,98,91,113,95,96,108,104,111,101,105,95,96,93,101,107,95,106,112,95,101,109,93,101,103,108,101,98,103,89,90,104,98,79,104,90,97,100,99,111,99,102,114,95,94,92,119,100,103,91,107,106,91,106,98,103,96,102,106,111,98,95,102,93,93,97,98,104,96,99,112,102,93,103,96,108,106,91,87,110,100,101,94,107,93,102,120,118,86,104,88,111,104,94,89,98,101,103,104,107,93,92,99,97,103,97,105,94,105,111,103,99,87,106,105,107,102,110,114,115,92,93,79,105,100,103,95,101,99,103,108,102,113,113,87,98,125,101,108,97,108,96,97,105,91,98,99,108,105,94,88,97,94,106,80,99,100,94,96,94,101,103,97,96,94,90,65,104,113,92,103,96,98,92,91,104,102,91,97,89,117,75,105,103,102,105,116,94,98,103,102,95,105,99,106,91,79,100,93,112,94,95,100,87,104,102,110,90,102,82,101,102,95,98,95,103,95,105,104,90,80,108,98,110,99,102,105,93,102,95,97,97,108,98,103,103,94,103,101,116,101,92,101,98,86,96,105,108,109,99,91,89,98,101,98,92,109,84,116,104,91,101,93,105,98,109,99,96,97,94,97,95,126,106,106,97,113,105,101,111,102,109,92,98,85,90,103,96,89,96,93,104,107,94,80,105,100,95,89,99,62,86,110,106,96,107,97,88,98,85,83,90,113,117,104,81,85,96,91,112,101,101,104,100,101,95,98,96,87,105,93,93,111,91,101,97,103,105,103,85,109,105,102,107,93,100,89,98,102,94,110,102,100,116,97,98,94,81,96,95,102,93,102,109,101,96,127,97,88,96,103,113,93,102,104,94,90,93,96,99,109,102,97,94,103,103,109,103,95,101,100,101,116,90,88,125,114,103,107,99,105,105,94,97,91,67,118,100,103,94,108,100,96,108,97,98,100,105,102,100,67,102,98,93,101,77,96,106,106,95,97,88,90,97,102,84,89,97,91,106,97,105,100,92,109,101,105,98,103,92,96,94,91,104,87,84,77,97,91,85,96,95,93,99,97,95,95,94,99,73,100,96,98,120,96,111,93,99,106,115,100,93,98,103,105,102,88,100,105,92,94,93,90,99,96,92,100,91,93,93,111,120,95,90,100,102,102,91,95,87,97,106,91,90,99,97,92,94,94,105,94,95,97,99,88,97,99,97,102,92,97,112,86,98,100,101,94,101,103,102,110,95,87,91,95,95,99,103,97,101,102,92,105,96,92,95,104,97,92,95,105,101,95,113,101,99,91,112,91,89,80,89,111,99,98,102,95,91,95,100,99,105,98,105,94,104,86,105,101,102,99,107,102,98,83,105,101,87,97,87,88,95,105,93,98,100,88,99,95,94,100,104,99,106,95,80,87,86,90,106,98,133,104,93,100,110,87,88,104,91,95,101,112,108,109,95,87,99,93,99,96,90,97,98,108,88,96,92,91,92,100,97,91,103,98,106,84,95,92,98,81,97,99,97,113,117,104,112,94,107,103,99,96,104,73,104,92,78,99,99,101,95,95,106,112,98,88,94,125,93,99,109,97,86,81,96,105,100,92,86,99,96,91,93,97,98,83,97,106,103,107,98,98,88,86,96,102,100,97,97,87,103,101,109,113,110,97,103,95,103,101,98,98,95,86,98,112,97,99,95,105,89,92,68,121,95,97,116,93,105,98,94,97,101,102,85,104,96,96,97,109,96,89,103,90,85,89,92,95,113,97,96,99,110,102,94,103,95,91,95,104,92,94,98,93,104,109,112,74,90,59,100,98,83,95,117,91,94,95,111,108,96,98,102,91,101,107,107,93,109,99,100,100,101,102,93,91,84,104,94,90,75,103,96,104,101,88,89,101,101,102,99,102,102,113,102,129,105,93,92,96,103,106,107,88,102,106,101,87,91,113,109,102,101,86,112,100,96,97,98,92,92,104,121,88,108,110,86,95,93,101,112,104,98,107,90,87,98,98,99,95,103,81,99,102,101,98,98,102,119,105,99,94,97,97,96,105,101,106,100,97,96,101,98,106,96,98,121,106,99,100,100,103,89,105,101,94,94,99,102,99,90,93,106,97,96,79,97,105,102,92,107,105,107,85,93,97,103,98,105,103,89,98,94,102,107,110,99,87,94,100,91,94,95,99,95,103,95,98,95,87,103,92,98,113,109,88,90,97,105,102,83,107,99,93,65,100,107,106,98,95,88,109,97,97,85,98,104,110,104,100,92,100,106,92,83,97,103,106,106,97,100,87,104,111,110,107,106,95,102,99,87,97,97,99,77,98,100,104,100,103,100,99,96,100,105,95,100,109,113,104,96,95,95,103,116,103,102,68,98,102,105,101,101,104,100,106,100,104,101,97,93,102,109,103,88,92,96,87,85,104,87,121,91,97,97,101,96,84,96,95,97,98,97,102,97,101,105,107,93,103,90,93,94,98,101,104,102,107,96,85,102,94,82,98,105,89,101,96,96,93,105,96,88,97,104,111,87,94,87,103,121,104,105,98,94,88,99,96,108,100,92,104,101,98,105,98,97,98,93,105,93,105,109,101,99,111,97,110,93,94,83,119,96,95,98,87,83,88,106,109,109,93,99,101,102,92,101,100,102,101,82,104,97,104,91,96,93,90,99,96,103,113,100,97,98,88,99,95,103,88,94,103,95,94,107,88,99,105,102,99,97,88,118,89,94,94,100,91,114,102,104,111,104,103,99,94,105,105,99,109,99,111,105,104,116,110,111,93,93,96,95,91,91,96,87,104,91,98,101,99,95,102,90,98,98,87,103,82,110,84,95,111,93,98,96,89,101,94,78,91,100,109,104,109,95,91,113,104,87,98,99,95,94,118,105,89,84,105,118,95,95,116,94,104,103,103,119,92,107,104,100,93,85,98,83,94, +740.56158,93,103,100,89,94,103,122,98,98,105,103,98,121,93,105,110,97,91,97,102,102,97,96,98,106,103,60,106,100,100,94,105,103,83,98,94,87,87,96,96,102,96,97,103,91,106,98,113,107,101,95,93,94,104,80,94,89,91,100,88,105,103,91,79,92,99,100,90,83,95,95,89,104,91,96,105,87,95,104,96,109,103,91,88,94,96,109,100,95,96,94,95,94,88,91,91,108,98,103,95,112,94,103,95,99,105,100,97,98,106,80,94,92,133,103,99,117,99,103,89,71,100,101,95,95,96,102,107,72,105,92,108,103,93,98,109,106,96,87,101,94,102,101,104,84,99,100,101,107,92,96,90,100,102,109,91,85,101,92,100,102,90,102,104,105,102,100,93,91,95,94,93,93,95,71,96,96,85,102,97,95,94,92,91,93,79,95,98,121,94,91,101,100,86,76,102,99,89,114,108,103,105,97,96,107,98,101,90,98,112,83,106,106,100,96,92,100,121,87,100,106,85,91,109,118,108,101,99,112,93,103,101,100,102,108,96,94,88,105,114,85,99,77,103,100,86,102,92,103,91,100,92,97,90,81,106,109,90,95,104,95,99,90,99,96,96,94,102,98,95,114,98,102,96,87,97,86,96,95,90,106,88,94,94,109,109,104,93,107,107,100,99,97,99,109,99,101,102,99,112,92,95,90,98,101,100,104,106,97,91,89,102,91,102,99,98,100,114,95,95,101,96,92,104,101,98,100,85,86,100,92,90,97,71,103,104,101,93,95,97,95,113,105,100,122,106,86,100,108,102,93,94,102,106,103,88,89,112,95,90,103,92,94,68,96,98,97,89,96,116,88,110,103,90,89,95,102,98,101,118,101,88,96,103,89,101,104,93,105,82,96,100,88,103,96,102,90,88,78,108,99,86,80,93,95,86,92,104,109,98,100,66,109,96,101,94,97,94,103,97,116,93,90,87,111,88,95,81,92,100,93,91,87,98,100,97,75,102,87,103,101,89,93,88,93,95,88,89,106,99,125,87,102,100,96,87,96,102,93,91,90,100,101,91,98,103,92,102,97,88,101,107,96,90,97,78,98,98,95,94,97,90,104,88,100,89,86,90,95,103,93,101,99,97,90,102,86,104,93,97,109,94,78,94,90,102,97,100,102,95,101,91,89,103,107,103,100,91,96,96,86,96,103,100,98,121,98,93,102,99,99,106,86,104,99,105,101,101,110,107,95,100,100,103,98,104,99,87,98,99,90,104,109,103,103,100,104,89,97,94,96,114,85,98,96,106,95,101,99,67,93,108,101,105,114,87,89,106,101,92,102,101,92,105,96,98,111,109,105,88,104,97,101,104,95,98,112,95,114,87,92,101,98,103,84,102,101,94,103,86,100,84,104,107,92,106,99,68,95,92,93,91,93,92,102,98,92,103,96,66,114,98,95,83,80,95,102,70,95,94,113,104,99,99,98,97,95,94,105,96,94,95,83,107,88,99,96,105,102,96,110,100,97,99,101,94,95,101,109,101,109,103,93,107,99,96,96,105,100,90,91,108,107,89,91,90,88,114,96,87,98,96,99,110,94,90,94,102,108,104,100,94,103,99,71,87,108,102,94,92,96,106,104,98,94,96,97,89,96,103,82,84,120,98,107,86,98,94,87,100,110,105,71,97,96,92,99,83,100,93,97,91,83,96,100,94,89,96,87,101,101,91,113,102,112,101,102,88,83,95,89,95,100,105,87,104,80,93,95,93,104,102,100,99,104,102,92,93,89,101,88,88,99,97,106,96,108,114,96,99,104,98,95,101,97,104,91,90,104,94,102,103,106,107,108,101,107,102,113,92,102,91,99,75,111,95,111,102,104,90,104,101,93,99,104,114,101,97,100,102,103,100,104,111,104,123,105,88,95,94,83,105,104,99,95,101,95,99,97,97,97,94,94,89,92,100,108,109,92,95,96,92,97,99,96,99,97,114,100,96,99,102,101,98,90,95,96,84,102,98,88,86,96,100,108,91,96,98,96,103,94,102,83,87,91,95,99,94,105,90,90,83,90,107,89,92,102,89,83,97,95,96,98,114,94,96,78,98,88,88,101,107,104,92,96,107,95,89,97,100,104,103,99,104,96,97,95,116,107,107,91,95,91,100,92,97,86,101,100,90,98,90,94,107,100,93,106,94,95,93,110,105,99,105,95,100,93,91,94,101,97,101,91,106,94,114,103,89,87,102,101,83,100,100,86,75,96,98,95,104,105,92,102,114,93,97,101,100,104,100,99,90,101,107,92,101,87,102,87,123,104,107,88,104,100,101,92,108,97,89,107,92,104,94,99,83,100,99,98,100,102,95,89,98,108,92,92,105,106,95,99,100,94,92,80,89,100,91,81,78,115,109,107,102,104,100,100,91,92,108,104,113,96,97,87,100,82,101,105,96,91,112,107,86,90,99,99,95,83,98,97,110,87,112,90,99,81,75,96,106,103,109,97,84,99,101,105,101,104,96,80,101,105,110,104,118,103,107,109,101,96,97,98,95,103,94,98,94,90,99,99,102,93,106,106,102,97,97,99,100,98,98,96,87,97,107,104,93,99,79,100,97,101,115,98,96,98,96,112,95,104,100,89,99,103,111,100,104,103,102,98,85,106,97,103,109,64,92,98,102,92,92,102,98,73,102,97,85,95,92,96,98,92,102,96,94,109,97,95,108,93,97,101,107,91,102,99,89,99,108,98,104,102,92,97,95,109,98,98,104,94,95,96,92,100,97,102,111,103,92,94,87,91,96,89,92,103,94,98,112,94,93,108,105,88,99,102,105,96,104,92,99,86,106,103,99,96,97,105,106,100,98,93,91,100,106,64,95,97,92,98,112,101,103,104,61,95,107,124,113,106,100,86,73,107,105,89,92,92,87,102,96,105,100,95,98,112,96,97,117,104,104,109,95,102,101,117,95,113,103,88,94,105,102,121,105,109,99,87,78,67,106,96,88,102,96,94,104,87,104,109,101,117,104,99,97,96,101,96,96,96,105,95,100,106,93,101,90,102,99,100,101,108,94,98,79,100,99,95,90,106,77,98,104,98,84,88,99,89,111,107,86,91,92,106,93,96,99,98,87,92,92,102,113,91,94,106,102,103,98,99,94,102,73,98,94,108,125,101,99,81,95,104,105,101,97,101,98,94,108,115,94,97,87,97,107,99,91,109,91,106,93,109,100,99,92,108,102,91,101,97,102,86,100,92,97,97,95,98,109,93,94,87,98,94,106,98,87,97,96,106,93,92,95,87,93,101,107,95,105,90,96,108,105,99,96,110,104,104,102,93,108,103,105,108,98,96,113,93,88,91,102,96,98,107,89,108,107,88,99,105,97,91,107,103,136,118,92,88,103,93,88,91,90,107,104,103,101,94,96,87,96,101,105,113,109,101,97,94,117,94,103,101,109,87,95,97,107,73,89,102,106,100,98,91,91,100,124,93,106,100,105,109,94,99,109,96,107,106,74,98,104,90,112,94,93,95,92,91,94,98,95,105,129,104,90,97,102,106,114,97,99,102,100,96,100,109,88,91,89,99,100,97,103,103,104,100,111,109,97,99,98,98,116,93,107,100,100,95,102,87,98,101,98,112,98,96,103,109,102,93,98,95,88,92,87,89,102,95,108,105,93,98,105,91,91,66,99,91,99,87,100,98,98,92,92,90,90,98,92,92,94,87,109,102,97,100,97,93,99,94,101,105,94,90,82,95,98,107,79,105,103,92,97,88,91,105,85,102,113,107,96,108,100,83,106,96,96,102,98,92,98,99,103,105,101,102,114,93,105,106,94,107,98,96,107,108,88,87,106,99,101,91,89,103,95,105,95,92,98,105,92,105,100,98,99,101,101,99,95,92,111,86,107,93,99,102,94,90,96,96,94,95,102,104,92,103,88,96,103,95,95,109,104,99,97,107,101,101,102,92,97,95,100,105,105,91,92,108,99,103,100,98,108,104,91,105,97,115,108,90,86,106,100,98,94,102,103,97,100,109,87,122,100,113,101,113,102,111,113,98,100,109,91,99,108,94,104,97,95,97,100,98,91,90,97,115,101,104,95,98,88,97,102,106,113,92,99,100,102,102,101,109,88,97,97,109,94,98,93,92,93,93,99,100,89,106,110,120,106,102,99,95,91,97,96,100,98,103,103,108,107,84,99,110,91,102,101,100,101,99,106,96,88,106,90,95,79,91,95,86,90,95,91,95,99,103,102,101,82,94,95,103,105,94,101,94,112,91,98,114,105,94,108,98,93,103,97,93,97,90,101,109,99,109,102,93,114,100,105,100,97,105,115,106,107,99,101,94,99,99,95,114,103,100,92,99,108,104,101,81,100,106,117,109,121,104,104,98,107,98,105,99,103,99,94,94,104,99,113,98,80,96,119,86,95,105,109,101,96,95,95,96,96,110,92,104,99,96,102,97,109,100,105,97,93,102,96,98,95,96,85,101,101,100,100,105,89,100,83,98,97,95,117,109,91,100,99,96,99,97,92,102,99,89,91,92,113,105,108,92,91,113,94,100,94,95,90,94,95,97,92,109,104,96,112,97,110,84,69,101,102,102,118,101,95,103,106,100,99,97,109,78,96,90,91,101,98,98,87,113,105,98,98,94,99,97,94,101,102,95,83,97,58,93,97,107,113,105,92,112,100,90,99,97,109,111,90,100,101,85,98,108,94,101,100,97,99,100,96,105,118,88,107,103,100,100,95,109,95,102,92,86,99,94,107,104,95,106,101,91,103,98,106,103,101,88,93,113,106,106,103,105,91,87,81,83,114,111,106,108,98,97,95,99,92,106,104,89,102,92,117,75,98,102,109,96,111,110,91,93,101,97,96,107,102,87,97,104,87,99,110,107,98,109,94,97,103,95,91, +740.703,101,105,66,97,87,122,100,108,83,100,92,95,93,84,113,93,82,118,112,94,96,103,94,104,109,96,90,87,107,99,102,89,102,101,105,88,90,122,94,109,97,92,104,105,97,100,100,101,104,117,98,99,106,97,103,99,106,105,100,91,87,90,109,88,99,101,92,110,94,107,101,105,104,95,104,92,77,98,91,106,101,99,98,97,98,99,93,96,89,103,108,81,99,79,89,102,99,106,103,93,109,103,90,99,102,74,87,105,95,101,94,101,85,96,94,92,87,108,105,101,89,97,105,102,104,103,99,78,108,100,93,92,93,94,100,104,101,98,97,94,90,102,96,102,101,82,111,103,83,101,97,98,87,97,92,98,102,101,100,103,97,100,101,111,97,91,95,95,102,90,107,99,109,98,96,99,86,87,96,106,93,109,95,105,94,97,101,103,106,108,73,96,103,92,111,108,84,96,95,101,104,106,103,79,91,104,86,108,104,107,105,104,94,97,86,98,91,101,82,90,89,102,99,84,97,102,94,104,109,101,92,97,90,96,96,104,94,105,97,106,102,73,106,78,97,96,95,110,103,107,90,99,98,103,94,105,97,102,96,102,86,106,100,108,113,102,105,110,92,87,87,98,108,91,100,96,95,106,97,106,98,90,98,109,105,102,93,96,111,99,90,110,98,71,107,103,96,91,97,82,102,95,91,100,103,95,115,108,106,99,100,102,99,105,92,95,95,98,109,91,97,86,100,108,99,92,95,93,109,97,113,94,111,72,98,101,100,82,94,97,87,105,88,94,110,90,107,108,109,100,101,90,107,103,100,95,98,95,96,99,104,97,97,88,110,98,99,116,102,103,102,94,102,109,96,103,96,101,110,102,98,113,104,109,91,90,98,94,96,79,93,96,104,95,97,95,96,101,75,109,93,96,107,100,88,97,99,101,114,101,70,107,95,87,93,94,86,90,100,83,101,88,89,99,90,90,88,76,74,97,102,91,94,104,95,91,101,93,94,102,97,89,92,95,99,101,91,88,103,102,96,95,109,105,86,96,100,106,103,85,103,92,104,108,103,92,96,83,97,82,102,105,97,113,101,84,97,106,96,88,90,96,107,99,86,102,98,98,91,97,106,97,98,97,93,97,90,110,91,99,97,87,97,92,105,92,99,99,105,96,99,95,105,96,104,100,93,100,91,88,106,105,96,98,92,97,104,98,102,85,104,100,94,98,95,94,93,85,103,92,110,102,91,96,91,86,100,90,100,89,99,99,103,85,92,102,96,94,89,62,56,88,98,92,84,93,87,101,90,87,96,89,87,98,102,105,93,101,90,104,103,101,100,96,100,85,99,100,125,103,88,101,84,97,96,88,91,97,114,93,91,103,113,82,97,106,99,94,106,99,103,99,91,97,97,88,95,112,96,97,110,88,101,88,109,99,69,93,109,95,95,97,102,94,84,97,90,92,92,104,100,92,95,94,96,90,92,104,101,81,92,100,98,104,92,89,97,95,100,107,102,100,102,96,88,105,100,93,103,104,102,97,99,98,89,98,88,94,104,91,92,118,93,101,105,103,95,92,96,108,118,112,90,81,96,93,90,108,96,102,93,95,83,97,103,102,93,108,96,92,68,100,98,101,97,92,92,93,94,106,99,90,95,98,82,102,87,102,110,84,88,93,96,99,104,88,112,84,94,92,113,88,100,89,100,76,97,114,98,104,94,91,104,100,92,105,96,97,108,90,101,109,90,91,93,102,87,107,101,97,93,94,81,98,99,101,86,95,108,103,108,86,98,109,98,102,98,99,96,93,92,103,114,88,84,100,112,99,99,106,66,75,98,101,96,103,94,102,85,88,112,86,95,109,91,100,93,100,102,103,109,120,103,101,91,92,98,91,92,95,101,90,92,107,84,99,91,97,100,109,92,104,104,90,101,98,97,94,100,91,98,101,104,102,112,103,102,89,94,103,93,100,101,96,96,109,91,82,102,108,95,94,100,97,101,103,87,79,100,96,90,98,91,95,110,104,95,106,90,112,74,99,84,91,90,92,100,96,91,92,91,85,88,85,100,98,95,103,81,89,107,97,97,113,102,99,96,98,97,97,93,102,101,95,98,97,116,92,100,97,101,101,97,100,87,101,94,97,92,105,103,106,109,98,101,90,116,107,92,97,99,102,96,108,109,100,103,108,101,94,110,102,94,96,100,102,74,105,91,106,92,109,98,88,86,114,105,97,79,82,96,97,102,87,100,105,100,95,89,81,90,84,80,81,98,82,98,97,101,92,107,106,82,98,108,94,101,94,94,101,97,96,92,105,106,95,103,99,105,100,97,100,93,98,109,103,106,101,97,93,97,99,103,93,96,67,102,109,101,96,99,101,104,92,103,101,98,91,81,109,102,94,90,98,97,104,99,100,96,97,91,99,96,97,92,103,95,87,99,92,92,122,102,88,91,96,113,93,85,89,97,85,83,89,91,106,100,105,105,103,94,100,95,105,101,95,101,104,97,104,90,89,98,104,111,109,109,112,93,96,101,87,105,100,91,96,94,91,100,101,98,104,105,81,113,93,90,103,95,97,97,103,91,87,83,101,100,94,99,87,101,97,80,97,89,95,89,101,107,84,79,101,108,84,93,104,105,79,107,98,94,106,94,108,92,96,100,96,93,103,97,66,109,93,94,87,90,90,97,89,87,101,99,99,92,100,88,100,106,99,100,89,91,102,94,107,104,90,104,105,104,117,115,100,98,103,103,99,97,84,102,83,97,112,96,106,106,87,101,104,100,101,117,95,99,102,93,98,77,99,88,91,95,97,80,91,92,109,101,102,94,95,99,92,95,100,102,95,104,93,99,104,94,85,99,100,97,98,104,97,91,96,89,112,94,94,99,101,91,97,95,97,107,92,92,90,96,107,96,98,109,98,95,97,87,91,94,94,106,89,105,101,97,100,101,67,97,113,107,89,108,71,109,96,89,102,102,101,97,102,112,105,107,86,98,86,105,100,93,103,99,98,106,95,102,92,108,108,92,98,92,101,91,102,96,102,90,87,95,88,103,94,117,96,97,100,113,103,109,103,100,97,96,97,94,89,96,96,87,101,88,91,87,83,104,94,90,93,89,101,87,96,105,94,87,91,95,103,95,97,80,95,107,100,98,92,101,86,98,91,92,97,91,98,94,107,102,97,102,80,102,96,97,95,97,94,106,101,103,109,83,109,97,112,88,85,84,67,98,92,91,91,93,92,90,98,96,95,106,105,124,92,102,112,94,97,97,92,106,104,110,95,98,98,90,90,98,101,108,100,121,97,90,119,112,100,98,100,94,87,103,95,93,83,99,93,104,87,98,79,90,123,96,88,95,84,94,105,111,105,88,92,103,97,90,111,109,98,99,97,98,96,97,90,95,95,104,96,93,101,80,93,100,96,106,96,109,103,101,102,94,96,97,97,90,98,89,105,94,98,101,114,94,95,93,90,101,110,92,109,109,108,101,103,91,95,93,99,101,91,97,106,100,110,83,101,91,91,88,88,92,85,100,102,91,106,95,105,93,92,104,88,86,96,94,91,75,71,90,121,109,95,91,94,96,98,96,106,87,106,95,104,85,105,105,97,108,113,99,99,87,91,97,97,96,95,101,87,96,66,112,104,104,99,95,95,85,90,98,78,95,102,102,91,93,88,91,97,95,101,94,105,101,95,94,92,86,110,85,87,90,98,101,85,95,101,103,86,101,94,95,83,98,92,91,91,114,109,93,91,93,87,100,103,99,99,97,111,121,99,101,83,101,98,90,89,93,89,94,83,76,93,100,95,113,102,89,97,102,99,93,103,93,94,98,97,90,85,93,105,100,101,94,88,93,98,101,95,99,93,94,99,94,104,108,101,93,96,92,90,92,91,87,117,90,103,101,87,101,93,94,95,92,108,93,92,104,104,97,89,98,90,100,93,88,101,102,93,99,95,97,104,101,96,87,105,94,116,84,109,119,75,90,103,105,91,92,90,101,102,95,98,93,93,105,103,91,98,121,95,97,99,97,95,96,92,106,95,102,93,102,89,84,92,87,110,103,106,93,97,94,78,95,83,97,93,117,113,100,94,87,105,100,89,98,110,92,98,90,100,100,93,94,79,97,103,93,97,92,102,88,93,87,107,102,100,105,91,94,106,99,95,104,85,100,117,94,121,92,63,91,94,100,96,90,106,100,88,102,90,105,72,103,102,98,88,100,94,92,97,90,109,90,95,93,109,103,105,90,100,92,104,95,100,88,100,97,64,104,97,100,104,76,96,85,102,98,103,94,130,103,98,101,96,87,98,93,93,88,131,98,95,96,95,107,100,95,102,72,97,110,96,90,101,105,87,97,107,92,88,90,91,102,94,80,99,97,111,82,95,101,103,101,118,88,87,109,108,97,95,98,108,89,98,96,101,98,111,106,98,113,89,97,91,111,99,81,87,84,105,104,104,94,94,103,96,96,102,120,81,103,88,92,102,97,96,104,100,104,93,88,98,97,93,108,111,88,114,91,104,88,105,89,97,94,96,115,107,110,100,84,85,86,93,116,131,101,96,92,95,104,101,99,90,95,109,100,97,92,80,93,87,92,88,102,90,93,104,102,101,90,102,121,103,104,108,102,101,89,87,99,108,102,105,106,88,106,99,102,106,99,102,102,98,90,95,97,102,99,104,94,93,100,102,104,131,87,99,99,93,97,110,103,108,106,88,99,101,86,101,112,92,63,90,106,88,95,88,88,92,102,82,96,98,100,94,117,100,105,107,97,101,90,96,95,97,96,94,109,89,97,92,88,91,103,100,87,106,87,87,92,85,97,97,119,100,104,100,105,85,93,104,103,106,93,109,90,83,101,88,107,96,105,93,103,104,93,104,96,99,102,101,101,82,84,93,119,105,97,92, +740.84442,96,92,95,97,100,103,91,100,109,125,87,96,93,88,104,98,101,96,111,93,102,107,109,87,99,99,105,109,87,100,94,100,101,99,93,103,88,93,94,82,88,92,100,108,87,91,106,90,88,94,95,99,109,102,104,96,94,89,118,90,94,96,107,89,102,99,85,93,91,99,106,102,100,90,83,111,101,105,113,114,99,94,105,98,103,90,91,124,96,97,111,100,98,82,97,92,97,87,100,95,89,102,103,99,85,93,88,103,99,101,103,95,109,97,99,98,95,99,106,95,105,97,97,98,88,102,76,96,114,98,107,99,83,101,105,97,83,90,100,93,112,110,95,101,96,96,113,101,93,97,100,107,97,92,89,95,92,109,101,84,102,98,93,99,83,104,103,97,98,92,105,96,104,88,92,103,89,95,100,93,101,103,117,91,107,89,80,91,101,93,86,117,103,93,105,99,95,105,91,95,92,101,93,99,97,91,100,89,110,107,109,104,94,103,103,97,86,105,62,108,94,105,109,88,91,102,88,99,101,89,95,102,85,75,110,101,97,99,93,96,94,101,96,100,96,101,109,106,83,107,106,108,100,103,92,94,92,89,95,81,79,104,96,99,97,95,102,104,96,86,98,106,101,97,104,93,88,90,105,95,98,98,101,95,96,95,87,100,106,95,99,92,88,93,107,105,100,91,100,115,88,99,102,130,92,100,106,101,97,121,99,120,110,112,95,93,91,103,98,99,91,96,107,95,87,97,97,85,98,97,96,100,96,94,97,93,106,98,103,119,105,98,95,101,94,110,100,101,117,91,76,104,91,109,113,94,99,88,114,90,95,108,96,92,91,81,94,107,93,102,94,84,105,116,101,117,112,95,90,109,100,99,101,97,100,96,85,94,96,88,97,90,101,101,96,96,102,97,91,95,105,99,103,96,100,100,91,100,94,94,88,98,97,103,85,105,95,90,95,108,79,94,99,100,97,94,86,97,94,84,83,89,104,92,99,83,88,97,91,106,102,89,91,108,101,92,90,86,96,99,91,98,99,93,93,98,99,95,96,112,105,98,88,96,97,91,110,98,96,102,88,88,104,98,96,77,105,70,95,100,83,100,105,106,93,99,92,104,98,98,97,101,96,94,94,93,103,105,113,85,116,100,85,100,93,111,86,96,94,105,107,97,91,86,101,94,100,98,93,91,95,89,92,103,85,94,97,101,97,96,88,88,92,90,99,105,101,96,109,101,101,102,96,102,98,105,88,77,94,97,113,97,95,105,88,88,97,98,84,105,89,95,87,100,98,94,107,95,86,99,89,83,105,93,94,96,95,90,95,92,104,104,89,94,97,102,106,102,79,103,87,106,84,98,100,99,95,103,94,94,93,103,99,109,94,100,92,93,96,86,99,94,88,101,90,87,102,95,102,91,105,101,95,100,90,107,92,110,88,98,99,96,99,104,81,105,105,87,95,104,110,89,94,94,105,94,86,96,92,103,93,101,98,105,91,102,112,105,109,105,81,91,100,94,97,107,107,102,110,91,105,96,99,96,103,91,101,92,105,88,119,100,101,86,92,82,78,87,85,94,92,86,97,96,103,71,94,97,94,87,98,106,94,91,100,102,101,105,115,92,93,94,89,94,85,94,82,91,97,94,97,90,101,100,88,87,86,106,83,107,99,100,89,100,89,105,94,97,102,104,100,88,93,124,93,105,94,93,98,108,100,94,109,94,90,107,105,117,102,104,94,101,92,101,93,100,105,95,112,87,102,96,93,98,97,93,108,91,98,105,100,90,104,98,90,102,95,90,94,87,100,94,94,101,123,97,98,77,91,99,86,108,92,94,99,103,96,106,102,97,105,105,88,105,115,98,103,94,102,90,101,102,101,100,121,111,104,82,100,100,94,87,105,97,88,87,91,91,100,108,102,113,98,106,99,101,89,93,97,101,84,99,113,101,97,96,87,96,82,92,92,101,97,92,96,99,87,105,104,79,91,95,89,95,103,100,98,98,89,104,92,87,97,98,92,96,93,91,90,109,104,91,95,100,99,109,100,100,82,91,95,105,86,86,105,82,94,110,92,99,94,104,104,98,126,101,93,96,105,100,103,99,107,100,93,83,62,104,99,98,106,93,114,92,86,99,96,97,81,87,91,101,110,99,86,94,85,111,96,98,87,108,98,105,104,100,92,90,108,109,105,138,95,92,99,94,90,92,90,101,105,96,75,95,89,102,100,86,94,96,89,96,99,96,99,92,94,102,94,101,97,90,101,101,95,92,92,103,100,101,105,87,105,94,111,106,97,97,109,94,93,100,105,98,106,103,103,92,97,102,105,90,104,91,101,100,95,109,96,97,94,94,88,106,90,85,113,102,99,95,92,84,107,94,103,98,105,99,104,90,95,105,94,99,93,89,88,96,96,96,118,95,100,113,93,102,79,92,86,84,88,98,112,87,91,103,87,99,87,85,91,96,93,72,96,100,96,92,101,103,101,101,82,92,95,104,93,99,95,112,98,90,104,94,101,100,95,98,98,91,104,115,64,91,92,92,107,92,101,100,102,88,100,90,98,89,84,105,99,89,79,103,98,104,96,98,84,97,93,79,101,88,90,110,101,99,98,95,107,90,95,94,94,87,83,66,100,95,90,97,102,89,101,87,109,108,111,100,100,98,120,95,97,102,69,94,99,86,100,92,109,100,97,102,90,83,102,83,93,111,101,103,101,93,87,92,99,99,84,98,81,111,94,83,100,105,95,95,101,85,92,104,92,99,103,114,93,100,95,96,102,106,82,105,110,96,108,108,102,100,61,102,97,85,95,84,99,97,93,103,109,118,98,99,97,94,98,88,80,96,97,106,110,96,105,99,102,103,109,103,117,88,96,104,96,102,104,83,86,108,105,108,96,98,112,109,98,100,88,83,89,91,102,94,106,102,108,108,90,104,95,96,101,91,89,94,102,90,101,96,84,93,93,101,96,79,80,96,112,106,112,95,94,83,99,98,99,100,98,96,105,112,100,118,106,92,96,90,93,89,95,87,91,92,97,88,105,108,101,104,95,98,102,101,107,97,103,94,109,94,94,97,90,92,97,93,99,114,101,98,91,91,117,96,106,96,109,102,96,101,104,99,93,108,102,98,101,101,100,92,103,86,87,100,94,92,95,98,95,90,102,101,94,103,123,106,105,95,94,110,105,102,89,89,63,89,91,100,98,104,108,98,98,94,98,95,91,98,100,97,99,94,106,89,86,88,113,97,104,109,91,97,96,97,97,91,99,103,113,97,98,93,101,91,100,103,96,103,102,87,95,86,93,89,99,81,99,115,92,93,104,101,97,85,92,94,113,100,104,97,90,111,95,102,90,90,90,83,99,91,96,103,95,95,94,101,90,95,94,110,90,100,93,94,103,91,92,104,99,100,75,88,79,103,92,103,114,86,91,101,97,91,99,91,94,83,90,96,84,104,102,106,105,95,116,105,89,98,99,101,106,98,108,96,60,101,100,98,108,91,110,98,88,99,92,105,91,105,98,90,71,95,104,64,97,105,106,124,83,93,105,101,104,97,100,77,93,101,85,105,101,90,66,98,81,92,97,122,106,86,74,101,101,109,94,105,106,93,107,102,94,107,94,91,99,97,104,96,100,109,94,94,101,105,103,96,101,98,89,97,100,94,107,103,92,92,96,104,105,90,100,93,100,99,101,91,95,104,91,89,95,107,93,96,98,93,100,99,89,88,107,103,103,80,100,99,98,96,109,103,94,96,91,88,99,102,98,90,94,95,99,90,104,97,100,96,106,99,100,94,96,89,90,99,94,98,103,95,97,101,84,91,104,99,98,91,103,90,99,97,93,98,100,88,89,82,98,94,97,95,96,92,105,112,90,93,100,82,88,97,93,105,80,96,85,79,104,84,89,102,94,87,103,105,101,105,94,103,104,87,101,96,138,102,106,97,91,95,101,93,87,103,78,109,90,96,92,96,110,94,104,92,87,103,87,94,90,104,87,103,92,94,99,87,110,92,96,93,100,111,99,94,98,113,95,99,93,94,98,94,98,106,113,103,100,86,97,109,91,93,90,79,91,92,94,108,92,98,101,94,98,104,96,103,98,95,78,100,91,97,83,93,92,96,103,94,101,99,89,88,96,95,87,94,99,106,91,95,94,89,94,101,93,99,101,103,92,92,80,90,94,94,88,80,95,100,94,94,102,87,93,91,101,102,108,88,91,83,94,112,94,90,96,92,100,102,104,100,108,103,93,97,96,92,103,105,91,95,94,108,101,103,108,99,105,96,92,88,87,109,102,103,107,99,97,94,91,86,91,95,105,92,106,66,102,98,103,94,93,100,108,93,92,105,93,92,92,94,98,101,90,110,100,102,99,103,97,91,110,90,97,100,112,108,92,101,89,82,107,94,104,91,100,101,106,103,90,92,95,99,103,86,118,95,90,90,80,88,95,104,109,103,93,109,94,95,82,91,98,87,89,90,102,95,84,105,107,74,117,98,93,105,97,89,83,95,116,109,98,97,93,69,95,93,93,101,90,86,101,95,93,99,101,102,105,86,98,87,112,93,97,95,107,94,98,89,94,107,93,82,85,92,94,106,100,87,97,103,96,93,100,108,99,100,108,95,93,121,105,87,98,95,105,87,98,91,116,96,94,108,94,96,96,92,92,97,101,87,94,91,99,87,95,92,98,100,109,76,96,102,105,96,107,85,100,89,98,92,89,93,91,110,90,89,98,109,103,95,106,87,98,89,91,116,94,116,100,96,100,106,91,105,104,110,124,91,80,99,103,98,92,99,100,99,94,101,103,84,82,100,113,97,89,100,90,98,111,102,116,97,82,107,116,87,100,107,108,91,90,94,109,87,106,90,99,133,98,101,104,100,105,93,91,99,99,93,93,100,94,78, +740.9859,105,96,87,92,88,97,90,93,93,94,86,92,92,103,104,109,103,114,103,70,103,104,101,94,92,86,97,92,88,108,87,93,87,76,108,98,98,95,98,96,101,97,96,84,89,106,102,100,99,101,97,77,94,96,92,100,95,84,101,93,101,94,95,94,99,99,109,93,93,101,104,97,89,105,78,65,96,90,96,95,88,96,89,101,75,84,96,89,95,80,98,100,100,109,100,90,96,91,99,83,104,95,93,105,83,107,93,100,100,112,93,101,104,86,101,95,100,90,109,133,100,80,92,111,113,100,100,102,99,119,99,98,103,103,102,94,104,86,95,93,98,102,98,97,88,98,96,100,88,100,89,91,88,88,87,99,86,96,90,99,96,91,104,109,103,95,84,92,90,94,85,95,112,97,103,92,111,96,97,93,103,89,84,120,101,103,113,96,109,110,84,90,112,98,96,98,94,90,93,100,87,93,93,96,97,94,94,89,93,104,96,99,90,95,101,91,108,100,102,98,97,71,101,101,96,118,110,94,95,91,94,108,103,94,91,94,95,100,103,94,95,88,98,106,91,102,100,98,100,97,94,95,94,88,110,92,93,103,94,87,86,94,103,94,84,95,101,94,103,96,100,90,91,113,95,70,92,90,95,106,78,86,81,91,92,101,95,89,96,88,99,86,102,93,105,105,90,124,100,99,102,92,99,115,104,96,100,90,109,93,99,99,89,85,98,92,99,95,101,84,100,90,122,90,97,98,105,104,109,108,101,94,93,89,82,92,96,90,91,119,88,108,98,103,99,102,97,103,69,98,104,98,104,92,98,99,97,104,99,115,78,108,96,99,93,85,92,106,95,93,97,98,91,99,87,91,95,99,95,105,102,96,90,88,95,101,101,106,87,99,99,91,95,93,96,92,83,99,92,96,79,90,80,87,87,84,97,85,102,96,86,97,100,96,104,93,90,90,94,91,71,106,104,88,85,86,101,101,90,109,93,96,110,95,105,100,105,104,101,90,100,111,98,103,93,88,96,94,112,98,98,96,105,99,102,91,102,95,92,91,87,95,99,102,88,105,97,103,97,105,102,100,107,100,93,90,104,94,98,67,95,97,100,108,91,101,110,98,87,100,93,99,105,96,85,83,90,91,100,104,104,99,96,81,96,92,87,95,93,83,105,92,92,101,90,91,100,86,92,94,103,97,97,99,106,92,102,101,83,96,97,118,91,90,93,98,88,88,95,94,86,102,100,91,88,95,99,113,113,92,92,104,97,87,89,97,94,102,100,98,101,106,95,97,89,101,92,88,98,97,90,100,104,91,94,100,87,72,101,109,112,93,114,97,90,96,100,103,105,73,90,99,87,96,97,106,105,111,87,76,100,88,96,89,101,74,89,95,98,95,113,96,95,96,101,87,100,98,87,104,102,101,100,105,104,92,95,104,89,99,100,79,91,98,85,100,103,93,82,95,94,101,89,94,85,89,93,91,96,104,102,87,94,94,102,92,99,115,102,92,98,105,110,105,102,99,75,96,81,97,123,96,101,102,96,113,118,101,79,96,94,99,100,89,77,89,92,98,97,105,96,105,90,103,97,100,90,95,97,89,96,87,87,100,103,94,107,106,79,101,98,86,99,101,88,91,93,89,95,94,85,90,100,102,86,103,96,94,81,102,102,108,94,100,94,106,82,98,92,99,96,103,90,96,102,79,100,99,90,106,102,83,98,107,86,92,91,84,107,90,96,91,102,95,80,82,91,97,91,107,100,94,96,94,92,97,87,100,79,101,109,101,98,93,90,98,93,81,101,92,87,95,95,109,114,94,93,84,93,113,98,100,86,93,86,96,105,86,92,98,110,89,92,95,99,95,91,73,98,81,108,103,100,101,100,102,98,100,101,111,100,94,86,89,98,115,69,96,101,89,83,102,99,94,87,87,96,91,90,95,82,104,95,105,82,100,98,99,97,97,84,102,104,95,99,120,93,105,98,90,100,101,94,91,92,96,87,93,98,87,94,101,96,108,80,99,84,99,94,99,89,105,94,99,105,98,90,105,100,95,104,91,93,100,90,86,99,97,80,100,100,109,100,84,94,85,90,102,100,105,96,103,99,99,89,99,98,101,102,113,93,100,100,99,95,84,97,96,105,116,113,95,101,110,111,94,94,103,93,100,97,86,99,91,97,101,104,97,93,93,105,95,103,89,98,91,106,100,108,95,97,84,106,98,90,98,101,97,92,94,102,104,95,100,74,105,101,96,96,99,95,107,114,92,83,85,94,111,104,91,112,90,101,94,102,94,96,95,97,100,91,111,97,108,91,104,92,95,93,101,96,105,105,93,97,95,93,103,108,95,96,99,108,89,99,83,78,88,91,102,111,105,94,99,95,97,105,96,92,96,93,94,98,101,99,98,87,95,83,93,91,96,109,104,89,91,91,87,96,90,83,87,113,94,105,86,77,112,96,103,100,96,91,88,88,92,91,101,100,97,86,94,111,97,92,95,95,98,101,98,83,87,87,87,104,109,100,87,91,109,99,106,85,98,95,98,109,92,91,111,98,99,97,94,91,91,90,105,97,99,88,96,104,95,102,96,87,98,100,83,95,87,103,100,88,104,96,118,109,96,102,105,91,105,92,102,108,101,94,103,91,91,101,91,97,98,98,99,104,93,93,94,101,58,97,96,100,105,96,91,92,96,92,70,101,91,109,105,92,116,87,91,100,111,94,100,105,93,84,85,106,98,105,94,98,92,105,100,89,101,103,98,106,92,98,109,95,102,99,87,102,89,97,84,89,91,88,97,106,99,100,95,107,92,104,96,114,101,103,101,91,92,88,87,92,102,111,88,95,102,96,102,104,95,103,90,103,102,91,88,92,98,87,96,112,106,100,101,103,104,96,104,101,112,101,98,86,89,94,95,104,101,103,95,102,95,104,106,117,111,97,92,91,106,99,78,95,113,86,103,109,112,104,91,95,87,99,97,100,88,103,108,98,100,86,105,108,98,98,96,112,97,102,100,90,86,96,103,94,106,90,73,98,106,94,102,100,95,95,89,105,98,101,98,87,101,94,112,105,101,83,99,95,95,97,107,98,101,64,66,102,92,105,91,95,94,97,99,103,93,91,79,112,95,114,91,97,101,99,100,99,85,109,101,101,105,85,103,105,100,93,100,91,87,98,100,96,104,106,95,98,105,89,99,95,102,92,100,104,82,91,104,107,95,101,101,93,97,113,98,114,107,92,90,97,90,101,88,102,101,104,87,94,103,93,96,103,105,99,102,104,95,103,98,105,94,109,97,110,94,98,80,100,96,87,93,95,88,94,99,97,96,96,88,100,107,91,92,98,91,98,91,97,97,100,81,82,100,102,96,98,98,82,96,109,101,97,110,89,103,101,87,96,102,103,110,80,98,91,96,92,91,83,98,94,97,105,99,104,117,98,112,96,96,83,106,103,103,93,102,96,111,96,91,88,94,89,99,98,90,94,80,105,74,95,92,92,103,100,83,99,106,98,103,115,129,113,108,101,85,64,94,101,107,95,105,92,98,102,98,91,92,88,97,113,94,104,101,100,112,89,100,95,94,98,78,95,96,98,88,96,99,107,101,93,99,109,93,92,92,84,98,88,107,102,95,96,92,105,91,96,87,99,96,92,97,84,90,89,96,111,99,102,99,83,100,87,96,92,89,98,104,93,107,100,98,96,94,103,102,104,79,99,72,103,92,104,92,100,98,107,102,102,81,98,107,112,90,95,91,95,94,94,92,93,93,96,113,90,105,96,95,92,106,107,103,107,91,89,94,87,100,102,100,86,114,95,100,99,101,94,97,96,87,101,100,101,96,92,101,94,93,105,93,92,98,96,88,96,96,97,103,97,90,92,96,100,101,98,90,94,99,88,97,98,97,92,96,85,87,91,92,100,95,103,89,95,98,112,99,103,113,95,102,113,99,87,91,103,92,100,103,100,105,102,101,82,87,96,91,90,90,101,92,104,102,98,97,92,90,103,97,84,99,96,90,96,98,106,108,93,96,81,100,98,98,95,99,102,107,106,91,93,94,92,103,105,94,107,104,90,92,95,92,99,96,109,94,90,94,103,107,120,103,94,107,86,94,102,98,101,108,109,91,95,109,99,99,97,96,89,103,95,89,109,90,96,103,97,99,89,87,83,99,98,101,102,98,98,101,100,106,98,89,100,110,90,104,94,96,96,106,108,98,89,97,98,91,108,99,91,94,90,92,107,112,97,108,100,98,98,102,96,105,88,106,95,100,91,99,98,99,99,98,106,98,98,105,85,101,100,101,97,98,88,106,100,102,105,118,97,107,90,91,100,105,103,90,91,97,95,71,105,93,92,103,103,97,106,101,86,92,106,93,97,92,104,116,93,104,111,99,89,95,78,103,119,95,95,111,95,87,96,116,99,108,93,82,109,101,97,106,97,102,105,107,90,92,98,92,94,95,87,102,101,90,90,106,96,98,101,75,94,79,108,106,99,79,94,107,101,61,96,104,107,91,101,92,98,111,97,109,98,85,105,106,95,100,96,98,93,91,81,87,88,72,92,90,101,84,102,99,92,82,93,97,101,95,94,92,103,107,74,113,99,89,98,103,102,99,90,117,109,105,95,106,99,104,99,121,88,87,105,88,94,102,98,116,103,130,89,101,86,98,75,100,92,95,92,84,94,92,98,97,99,100,104,104,97,83,110,96,92,111,90,94,97,73,86,108,84,101,98,115,91,101,100,89,97,113,91,93,95,101,93,89,102,103,92,94,104,93,93,95,96,100,97,98,94,99,114,105,97,104,93,87,96,102,84,110,97,98,111,99,117,95,102,114,97,102,102,91,101,87,103,109,83,99,93,97,97,109,97,115,96,90,106,106,101,69,95,89,96,96,96,99,102,92,114,98, +741.12732,94,105,86,110,88,94,105,95,103,101,97,97,84,123,86,108,99,96,91,89,99,106,102,100,101,100,130,98,100,111,86,90,104,100,110,99,105,79,120,104,99,94,97,93,109,109,98,91,98,107,102,104,98,103,110,91,94,103,102,113,99,99,104,100,97,73,102,95,93,96,90,95,89,107,96,102,80,108,90,99,103,90,101,96,83,93,103,96,113,91,95,81,106,87,101,94,97,98,100,87,102,99,93,96,97,90,90,100,93,102,97,94,108,107,110,112,100,104,107,98,104,114,120,101,101,108,104,100,103,97,112,107,113,101,86,106,101,96,94,88,94,107,95,98,93,104,87,102,88,91,96,100,117,93,98,94,98,103,84,101,84,102,101,109,113,89,96,89,101,94,101,97,96,106,91,99,99,88,101,103,94,115,97,103,98,91,94,86,100,76,95,91,88,100,102,103,91,91,103,100,112,100,97,90,98,69,88,88,110,107,94,99,105,98,96,103,90,101,94,94,98,107,93,106,89,104,87,106,105,108,106,96,93,102,102,102,98,103,99,95,95,95,94,88,98,102,99,92,90,94,96,104,95,105,107,94,91,96,99,105,89,106,99,104,100,116,97,99,88,105,116,99,99,87,105,92,98,106,119,106,94,82,88,102,100,99,99,111,88,78,115,95,104,125,107,88,94,95,110,90,99,101,100,107,90,113,105,124,107,105,86,108,94,96,96,87,102,91,101,97,106,92,103,103,106,83,83,101,92,100,104,93,106,91,98,101,92,92,91,94,103,94,102,97,103,104,94,98,107,96,100,99,104,90,92,105,97,99,112,101,90,98,101,105,88,102,100,96,97,106,95,105,94,92,109,93,107,97,88,97,109,111,102,105,87,100,101,94,91,104,107,86,98,99,99,90,100,104,110,116,91,73,90,98,102,90,89,95,106,109,86,98,77,100,114,101,97,95,100,108,99,70,85,91,91,105,101,98,98,88,89,121,100,96,102,99,93,103,93,79,101,105,101,104,90,103,95,90,113,102,90,97,103,115,82,83,97,105,95,112,105,99,101,102,95,87,107,90,98,112,99,98,91,102,103,84,97,109,95,106,109,105,90,98,104,101,99,104,87,97,100,94,106,89,96,103,80,95,104,84,107,99,98,106,89,97,78,91,93,89,103,87,97,99,90,89,95,124,91,102,93,98,102,92,89,95,76,99,96,101,100,88,98,92,109,102,94,91,105,94,96,101,95,104,102,88,99,100,98,94,90,102,105,101,96,95,102,91,92,96,81,98,101,101,99,92,103,106,94,70,87,85,97,106,112,101,96,92,88,113,104,95,99,102,110,91,109,105,91,120,106,97,98,104,103,101,96,93,86,92,91,96,102,82,104,100,82,109,97,87,108,105,105,105,112,101,101,97,108,89,107,101,121,93,115,95,82,98,89,95,96,102,97,94,77,109,104,92,94,104,107,94,102,98,109,80,90,96,112,105,105,114,108,100,86,101,97,108,103,106,89,112,100,104,103,88,99,104,98,107,117,93,107,89,104,102,110,102,96,102,91,101,107,92,93,101,98,75,103,106,93,89,73,95,98,100,104,103,100,109,102,80,103,89,107,91,98,105,93,91,81,110,101,98,92,103,92,87,95,100,109,99,105,104,100,105,101,100,77,89,96,79,103,100,91,97,98,90,104,97,110,99,95,91,114,94,99,97,88,96,95,91,106,97,92,92,96,97,79,95,93,97,75,106,97,103,94,101,109,96,108,117,115,98,98,106,113,100,89,109,102,95,97,102,127,102,93,90,101,105,90,108,99,91,109,107,96,103,97,102,96,103,97,101,90,115,97,89,116,107,121,95,104,109,105,98,112,99,93,80,98,111,94,96,91,102,120,82,98,105,96,94,97,107,92,79,86,102,103,104,79,90,101,88,103,101,99,112,98,94,108,104,99,103,84,102,98,84,96,98,103,101,105,99,102,94,84,98,121,99,95,92,109,104,82,106,108,102,101,89,102,93,101,109,93,106,95,106,106,99,106,105,87,118,96,106,86,100,100,98,99,99,84,95,99,88,87,109,83,97,99,93,97,99,102,102,92,96,96,92,99,99,103,96,96,98,95,100,92,95,97,96,105,94,96,95,101,91,98,105,104,93,90,99,88,113,96,105,113,99,82,100,99,98,90,90,94,109,107,101,97,108,99,101,112,90,98,88,98,108,101,107,98,100,96,92,108,107,79,115,103,111,102,91,87,95,86,97,95,89,110,99,86,109,100,121,98,91,96,110,92,89,96,97,96,85,99,100,97,101,81,101,94,107,104,108,105,96,94,98,104,110,107,97,98,79,111,91,95,104,99,104,106,83,100,102,94,91,107,87,92,108,100,86,93,85,106,102,92,95,100,95,117,116,95,98,101,98,90,99,91,100,101,85,101,125,82,100,103,54,78,110,95,110,100,98,99,104,92,82,102,91,105,97,100,89,105,93,97,82,113,92,90,84,92,93,85,71,95,109,91,94,111,92,95,102,89,100,97,101,86,91,105,73,106,70,81,97,97,95,85,79,95,100,92,121,100,100,95,93,84,95,90,89,81,98,99,90,81,101,110,85,87,94,88,96,96,101,121,107,105,97,109,89,94,91,107,112,93,94,105,84,97,103,103,98,97,98,97,92,97,77,92,94,85,102,91,102,104,93,100,105,100,102,103,104,96,98,92,109,91,105,99,102,100,89,87,99,92,93,111,83,109,72,89,96,96,99,102,106,112,91,100,102,94,102,106,112,100,90,96,96,94,102,101,91,95,98,99,101,98,87,81,104,103,92,97,103,94,88,106,92,104,91,99,99,97,111,90,102,106,96,108,93,95,99,100,103,93,108,107,91,95,105,102,90,89,95,98,98,93,88,102,115,106,79,106,97,103,89,106,70,94,114,92,93,90,98,99,105,93,102,103,109,93,94,89,91,99,92,109,95,96,92,82,101,103,93,99,95,112,93,93,92,94,131,100,93,112,98,100,100,98,93,98,90,99,101,81,96,91,101,94,98,98,96,97,111,92,87,96,97,92,97,93,95,90,104,102,91,100,100,102,93,88,93,101,104,82,52,100,99,64,93,100,94,98,95,87,112,98,94,91,86,103,89,83,99,97,96,101,107,98,95,99,94,100,83,104,110,96,98,113,103,107,113,104,98,109,99,94,103,87,84,114,87,100,96,77,110,81,97,89,106,89,95,100,80,88,102,89,89,90,92,92,100,108,107,108,98,96,94,94,103,101,98,101,98,75,102,94,109,90,105,92,92,96,98,100,105,98,93,108,109,86,94,101,113,100,91,85,113,95,95,101,107,109,82,103,102,104,91,105,90,98,90,100,95,95,90,82,97,99,99,95,101,100,99,95,87,97,102,97,95,100,99,90,100,98,100,64,94,102,98,101,104,102,101,105,87,101,105,97,89,94,96,94,103,105,85,94,107,92,81,87,107,95,103,95,94,121,95,87,81,90,104,94,97,91,100,102,94,92,99,100,95,103,99,98,89,98,98,87,97,90,109,95,105,91,93,113,91,99,96,91,100,95,82,97,87,87,91,93,101,105,95,82,101,98,93,96,100,103,110,92,96,90,99,98,93,88,81,94,111,95,89,82,96,101,101,91,84,104,104,85,79,97,95,96,102,102,98,93,95,82,123,106,104,95,97,100,99,96,98,94,80,105,86,92,102,88,99,117,116,77,93,98,97,83,98,108,99,99,87,108,98,99,84,105,102,104,99,109,80,94,94,95,95,95,94,116,84,98,91,94,89,101,91,99,105,97,93,105,100,102,86,95,87,99,93,104,106,94,91,97,104,94,93,101,100,88,97,105,104,93,92,112,91,100,107,101,103,94,103,88,92,95,92,89,100,92,74,96,88,111,96,96,106,79,84,92,88,104,93,107,92,105,106,122,91,97,100,104,95,100,108,76,99,99,92,94,88,87,109,99,104,105,118,97,95,101,87,94,91,94,101,92,98,90,93,102,93,96,97,102,104,88,90,106,95,96,75,86,95,95,96,94,91,86,92,101,91,99,77,92,93,70,91,75,97,93,70,93,92,87,84,103,92,107,95,81,101,93,87,105,94,89,103,112,93,94,90,99,111,96,103,97,96,103,101,83,93,98,103,103,101,106,91,92,88,106,119,84,83,96,107,104,104,102,87,106,114,108,102,98,105,93,109,102,110,110,94,95,87,116,101,98,113,94,98,95,94,99,105,73,86,101,100,93,105,88,101,94,116,94,92,91,99,101,92,98,98,93,98,95,96,99,96,80,103,100,111,106,98,84,104,87,101,104,108,100,90,119,90,106,109,96,99,92,95,96,91,103,87,113,101,98,79,89,103,98,103,97,102,107,118,98,93,97,89,71,112,97,92,94,103,105,101,89,95,105,75,109,95,99,97,90,96,90,91,110,109,101,91,101,107,83,95,96,110,101,102,109,97,91,80,95,103,88,96,89,106,99,104,113,98,82,100,93,95,91,88,92,106,109,103,105,86,105,95,97,99,94,103,108,92,98,110,90,95,127,106,110,95,92,105,103,103,76,104,87,107,99,91,108,101,94,100,99,90,83,96,101,98,95,98,121,89,101,103,80,108,106,93,83,102,89,98,107,88,101,98,108,98,98,96,102,97,98,87,94,88,95,103,88,107,95,101,97,96,104,87,92,85,96,91,95,98,91,96,101,98,99,100,99,100,114,95,94,115,90,95,94,107,90,98,96,108,107,113,104,102,95,94,87,99,90,98,98,95,95,94,87,103,100,91,107,110,99,85,109,102,99,106,94,87,94,95,101,105,108,90,91,77,92,116,94,102,81,104,94,94,87,99,94,108,96,94,112,92,106,109,106,87,87,85,104,94,104,78,76,99,98,102,101,95,96,99,101,106, +741.26874,93,94,92,92,85,103,91,100,90,75,102,91,89,98,98,78,97,96,82,74,98,87,92,65,86,107,99,96,99,106,86,96,76,97,107,92,99,102,93,102,107,95,96,94,104,98,101,93,100,100,98,91,96,99,96,94,94,86,94,95,93,96,113,99,112,90,117,101,96,91,101,99,101,105,121,117,97,105,100,99,94,96,107,87,101,81,98,101,88,97,87,92,83,94,102,101,87,98,113,99,83,86,87,99,113,89,92,101,86,91,97,99,114,100,107,91,96,103,110,94,98,92,104,98,90,96,109,90,111,106,81,114,110,103,87,104,97,105,90,93,101,103,91,103,99,91,111,94,95,86,102,92,97,92,99,89,67,86,105,98,79,97,101,97,97,91,90,93,100,98,94,104,95,106,101,105,111,94,114,90,84,83,91,94,94,106,98,77,104,92,87,98,88,99,106,102,91,101,108,113,100,101,108,101,92,106,106,89,115,107,103,101,93,79,106,101,80,94,102,94,109,101,75,96,95,89,98,102,96,92,99,108,110,98,89,108,105,109,78,98,100,102,109,103,96,99,100,99,104,116,97,113,101,99,102,92,91,100,85,92,89,59,80,90,92,104,106,92,91,93,105,96,108,91,105,86,98,87,80,100,102,114,101,92,99,103,98,95,100,97,79,101,93,102,113,96,116,105,97,104,97,99,94,95,87,94,102,109,103,96,86,119,96,96,97,105,82,104,98,94,91,89,94,99,113,97,102,82,102,105,94,106,96,93,88,80,98,101,92,88,110,104,105,92,104,103,95,99,103,112,100,94,90,112,85,98,107,99,90,106,99,90,94,91,101,87,62,113,86,112,109,95,105,97,103,98,103,91,104,107,87,93,101,110,97,103,97,94,102,93,107,92,92,100,92,83,90,101,103,85,98,100,95,94,105,91,101,93,85,95,87,88,105,91,103,93,85,95,100,89,92,100,97,100,92,83,102,80,96,107,113,107,83,103,93,100,107,123,89,95,118,87,99,105,88,100,99,92,107,104,102,91,89,98,100,88,101,96,97,93,99,95,94,101,101,78,102,99,96,79,104,93,98,118,103,101,97,101,89,93,94,83,113,91,75,95,111,104,104,100,102,103,94,90,84,109,103,98,94,95,110,109,95,82,87,97,90,115,99,110,107,92,93,87,104,100,93,106,99,90,100,112,102,99,88,91,95,122,103,97,90,117,88,88,100,96,80,90,107,95,98,91,109,94,110,86,100,109,83,106,118,90,107,97,98,105,102,95,90,95,104,97,96,71,106,108,104,94,99,93,96,105,94,102,100,102,89,88,110,84,92,94,100,91,100,91,112,105,96,99,108,98,112,96,99,107,91,104,95,94,98,95,95,98,87,105,92,101,97,96,107,83,105,99,90,98,105,102,99,93,100,73,94,105,115,82,114,106,70,101,107,98,102,90,98,86,84,93,92,79,95,97,102,97,96,89,95,95,88,100,94,84,90,100,96,98,103,103,102,110,88,93,90,89,88,101,98,96,103,98,108,89,103,91,78,106,90,96,71,79,96,90,109,94,101,89,97,91,96,99,95,100,98,100,101,101,97,104,98,91,92,93,99,69,96,102,99,108,100,88,95,95,92,93,93,101,105,70,97,104,100,100,89,103,96,90,101,95,104,103,94,94,92,104,92,101,99,88,93,93,90,101,101,90,99,96,101,107,104,95,103,100,99,90,105,92,104,100,101,89,97,99,94,101,101,94,86,86,97,88,72,95,93,101,104,96,91,98,81,93,100,94,99,101,88,110,108,104,101,100,100,101,103,106,111,103,105,91,91,104,96,101,90,108,105,99,75,106,94,82,101,98,102,70,99,86,105,96,107,106,86,90,102,100,93,98,98,88,100,100,107,95,105,100,101,101,100,85,99,84,101,96,106,109,92,95,93,92,91,86,95,98,93,92,92,106,96,99,93,95,88,97,91,93,101,95,90,100,107,81,91,116,107,105,99,96,86,99,86,100,100,102,99,107,97,82,101,98,102,92,110,93,81,114,104,109,91,95,93,106,98,91,99,96,110,94,106,96,84,93,100,112,98,90,91,89,81,94,94,106,104,105,96,97,96,115,90,94,109,80,105,89,98,100,101,102,93,100,90,103,90,101,93,97,75,89,104,94,103,95,102,101,96,92,93,86,102,106,109,97,88,119,96,95,117,96,94,82,87,98,98,80,100,100,94,96,102,106,100,88,93,91,96,97,92,88,95,91,84,91,100,100,88,93,88,102,85,102,88,99,95,85,101,91,84,99,95,92,110,91,75,99,109,108,100,107,97,94,84,86,112,106,110,70,91,98,100,94,102,89,102,96,88,97,96,96,94,91,97,86,93,91,101,97,91,95,102,92,99,102,98,107,91,93,94,99,86,94,105,100,93,91,99,79,101,93,94,101,94,96,92,92,93,98,91,120,110,109,97,101,106,104,87,101,108,105,100,98,109,101,100,100,98,98,102,110,94,84,111,109,103,90,109,111,104,101,106,77,95,89,112,102,97,102,102,100,90,103,89,105,103,102,107,101,101,115,95,110,86,93,105,113,100,104,100,104,98,111,87,100,84,99,94,120,101,88,102,102,109,108,100,79,102,86,94,108,100,101,96,100,104,88,110,102,115,85,105,101,115,99,95,93,115,104,98,80,98,75,103,102,108,108,95,107,101,97,98,108,99,125,96,106,105,98,100,98,93,60,92,85,91,100,81,113,98,98,70,92,99,98,100,105,91,98,113,99,105,101,101,96,95,97,106,100,95,102,103,94,97,102,104,87,91,98,96,88,93,111,115,99,94,91,113,80,105,95,101,95,112,97,109,88,101,107,105,94,91,102,91,105,108,95,112,102,105,101,102,78,100,108,99,98,109,104,100,92,91,99,107,98,104,109,118,103,97,94,96,101,103,88,77,100,95,92,108,102,96,89,99,103,97,102,95,116,94,95,89,95,96,98,90,115,93,81,129,111,101,97,102,102,111,85,94,68,118,106,111,106,94,106,95,87,99,94,113,106,79,94,103,84,97,95,106,102,94,85,100,95,101,95,91,97,103,102,92,106,104,99,97,85,110,103,106,87,101,104,102,106,127,93,91,87,107,110,103,96,101,97,101,80,95,98,100,105,109,93,93,101,109,103,97,106,102,105,119,103,97,100,93,98,103,95,86,101,96,100,102,110,103,100,88,100,80,97,101,105,92,97,85,102,102,105,104,95,102,104,104,99,103,100,116,105,104,109,104,96,91,105,102,102,94,98,101,102,95,92,114,106,103,89,99,88,100,107,103,105,106,120,109,105,101,113,113,94,108,106,100,95,94,109,107,102,97,94,94,95,80,104,98,98,89,95,117,83,104,104,92,112,97,95,105,124,104,98,98,111,105,98,102,107,87,97,101,96,97,102,88,103,100,107,90,72,104,111,116,95,97,105,108,108,105,100,90,107,92,92,96,109,94,91,102,106,109,97,114,95,108,102,66,100,104,104,96,98,109,115,105,105,92,92,111,104,100,108,98,98,94,80,98,104,104,102,100,99,101,93,101,85,106,111,107,101,97,112,98,102,106,98,95,90,87,90,96,111,95,109,96,102,101,79,92,99,97,114,75,98,101,111,114,108,93,87,105,96,95,89,97,92,99,92,91,98,92,98,101,101,94,103,102,96,112,105,98,93,95,80,100,96,98,103,97,101,96,99,97,94,95,97,103,109,99,107,111,101,101,90,101,101,110,101,93,113,98,98,97,91,92,94,115,89,93,108,92,93,105,102,102,82,107,113,91,112,111,103,98,95,100,99,98,102,113,100,94,104,91,109,75,92,91,113,100,108,101,97,101,118,95,98,91,106,93,94,99,92,88,107,94,99,97,117,111,100,80,97,100,93,92,108,88,105,90,105,128,120,93,103,112,92,96,100,99,108,95,100,93,104,105,69,106,118,104,101,95,109,89,86,96,90,105,103,102,107,101,100,86,93,96,94,98,98,92,107,86,110,111,97,93,107,98,118,112,103,93,90,99,79,104,100,92,98,104,109,104,93,109,98,99,112,110,103,97,95,106,109,101,105,99,92,99,95,94,104,102,99,92,108,103,92,93,100,111,86,99,104,102,99,104,100,96,100,100,105,92,113,75,96,102,98,100,117,100,87,105,103,91,102,100,100,102,102,107,92,97,101,97,100,100,99,120,99,120,100,89,100,113,93,96,96,93,102,113,94,94,91,103,102,101,103,106,103,105,101,106,87,102,103,91,98,108,105,100,95,103,95,98,106,84,91,97,95,93,98,99,98,92,91,111,94,94,108,98,100,99,89,104,92,102,106,103,97,100,101,94,91,103,95,105,113,90,92,85,106,112,97,98,107,95,97,100,95,81,87,95,105,100,104,100,102,98,105,97,91,90,103,94,101,89,91,96,103,110,102,91,101,98,99,87,90,103,117,100,114,96,65,102,113,99,101,102,99,88,100,64,94,103,106,94,102,109,94,80,87,97,104,92,98,109,101,93,88,94,94,99,100,93,100,111,90,98,106,95,106,91,101,116,96,99,88,98,99,95,108,109,106,90,98,106,110,97,98,106,96,102,89,110,88,117,105,100,113,94,100,99,85,103,103,98,104,105,113,116,114,113,107,96,95,99,102,106,109,92,94,103,99,93,98,102,98,109,106,109,96,109,94,88,101,95,105,100,110,98,98,117,86,121,116,105,88,106,102,96,95,76,107,98,108,97,88,97,108,98,96,101,116,102,98,101,103,91,96,98,110,103,101,104,102,102,84,92,91,113,94,105,102,93,95,99,102,91,104,102,102,95,91,120,102,92,105,89,97,111,111,96,107,90,109,112,98,102,98,101,111,98,105,102,107,95,111,101,100,115,97,104,91,106,92,96,95,106,96, +741.41016,86,96,86,106,98,82,92,111,71,92,107,100,102,104,122,77,84,103,104,87,95,102,98,109,97,106,101,98,106,100,82,90,95,98,99,104,103,99,99,97,109,98,101,105,92,105,95,100,86,104,102,98,106,116,98,100,86,96,94,97,116,107,118,106,100,91,106,105,92,102,97,97,87,111,102,109,94,103,90,104,84,94,104,98,92,96,104,91,61,96,103,95,95,96,89,85,87,110,98,100,87,89,104,98,116,97,90,102,92,93,91,99,99,96,113,86,91,102,99,94,79,106,111,113,93,117,98,98,104,100,110,96,89,87,98,102,91,102,93,102,98,101,77,93,95,97,100,77,90,108,98,95,104,93,101,110,106,93,110,93,106,102,79,96,107,97,97,109,112,94,108,107,110,106,96,104,101,93,96,96,101,92,91,96,94,100,102,87,113,108,97,100,99,98,86,99,112,89,88,102,83,90,93,109,90,104,87,102,121,101,93,96,100,117,107,87,94,101,97,94,83,92,88,106,96,98,100,106,92,105,105,95,95,91,87,94,95,105,97,96,91,100,97,105,86,97,91,86,87,87,78,86,87,107,95,130,105,79,84,100,64,102,88,101,93,95,88,96,82,87,98,79,99,93,108,109,102,91,87,94,82,94,98,101,90,88,108,100,113,109,89,104,109,100,100,99,98,101,97,94,88,103,95,97,86,101,93,102,103,89,98,103,118,99,90,88,86,96,100,96,105,98,88,92,97,95,99,81,101,98,105,93,98,97,97,109,95,99,96,91,103,98,82,101,103,98,87,111,108,105,99,92,94,106,90,97,104,116,105,85,91,90,80,91,114,95,103,106,96,98,97,96,89,106,101,89,97,97,97,88,108,93,105,104,101,91,103,102,95,102,100,93,106,100,96,95,97,105,99,106,97,101,97,98,107,86,100,100,105,96,89,90,93,94,109,91,107,97,97,90,96,74,95,87,98,92,93,94,90,106,87,95,78,90,101,96,87,103,95,101,95,96,97,106,94,104,107,106,112,90,94,96,97,100,90,93,92,101,101,87,100,105,104,91,96,95,100,95,90,97,96,94,103,99,109,94,87,105,105,103,92,93,106,101,105,93,101,101,107,105,95,89,98,92,105,77,118,99,105,101,100,105,97,106,100,100,106,108,103,101,92,89,97,107,98,93,119,107,89,87,93,98,110,102,95,105,118,96,98,92,91,95,102,99,105,98,105,95,92,95,101,92,109,97,106,97,92,106,95,106,103,97,88,99,91,96,102,84,86,94,116,99,101,105,111,99,99,113,74,95,95,87,107,90,87,91,101,79,99,96,113,104,104,86,94,81,96,92,95,98,95,97,90,95,100,87,86,99,117,101,87,102,101,90,102,101,98,100,96,95,83,105,103,89,86,101,103,104,94,95,100,101,97,91,101,87,94,90,100,101,102,102,92,95,84,89,95,106,82,110,109,98,87,103,93,97,95,102,103,88,85,102,105,101,98,105,84,98,103,106,100,106,95,102,96,102,104,75,100,100,113,96,109,100,106,94,98,94,90,95,103,104,117,78,100,100,101,87,87,109,103,96,91,104,105,98,98,91,103,89,94,97,96,101,105,91,89,97,101,91,111,89,109,91,86,80,82,99,96,91,101,87,104,106,101,89,100,110,104,100,117,103,85,97,87,96,105,94,97,96,90,100,97,96,109,94,104,95,95,105,104,99,103,100,102,93,107,95,88,97,104,100,100,97,84,116,89,88,95,97,98,97,101,109,94,98,101,93,96,105,94,100,108,99,97,102,104,97,87,100,82,106,92,95,91,104,90,101,91,98,105,101,100,101,105,109,95,101,101,96,100,108,95,99,116,94,102,108,103,102,97,96,106,111,103,95,99,102,98,103,98,97,99,65,90,104,98,94,96,91,104,90,92,105,91,103,97,111,91,57,94,99,101,100,94,106,98,110,102,87,97,89,84,112,95,90,105,98,100,108,93,101,92,110,83,90,107,109,107,93,98,97,115,109,111,94,92,106,86,111,98,96,87,99,97,101,97,90,94,102,95,96,104,112,104,82,92,97,100,96,95,87,88,95,94,99,98,97,107,97,64,100,104,94,121,101,112,98,95,92,112,110,104,106,102,96,93,107,102,96,105,120,103,96,93,97,109,109,104,97,102,98,108,94,101,90,102,92,99,103,104,110,100,93,99,106,102,97,99,121,96,100,110,91,95,91,98,97,99,91,100,101,106,101,91,88,71,84,100,100,94,100,98,91,95,88,97,100,98,97,95,96,90,100,107,91,100,83,101,103,96,103,93,104,81,86,101,95,101,98,101,94,99,83,95,104,94,104,80,97,91,101,97,96,99,94,93,88,104,92,94,95,94,95,97,99,94,82,106,103,95,116,92,94,84,97,97,102,103,100,97,110,96,96,92,68,90,82,100,82,101,94,92,94,90,95,71,94,83,87,95,98,100,89,97,91,92,102,99,93,94,105,98,81,100,95,98,101,96,101,103,97,97,108,104,95,99,88,88,81,92,100,93,94,91,107,83,92,92,107,113,95,104,102,101,99,90,83,92,92,88,95,97,96,95,91,89,105,86,108,96,92,92,95,105,91,90,96,102,100,111,96,97,83,98,98,97,96,88,105,99,77,104,84,100,90,91,95,91,75,85,87,89,102,99,90,100,102,95,103,98,97,83,109,104,94,98,106,101,105,88,104,96,106,83,95,114,85,94,102,105,102,100,100,95,105,101,97,105,87,100,99,94,95,109,94,88,88,102,98,105,109,94,98,92,95,92,94,96,89,87,98,82,87,108,93,92,96,98,100,84,101,87,91,96,101,108,102,96,91,100,89,88,91,84,91,79,94,89,98,101,80,106,97,98,94,95,96,106,93,104,81,90,101,101,79,80,97,107,103,106,99,109,105,93,94,91,113,90,98,96,94,96,93,96,102,91,95,97,93,89,99,97,94,115,100,104,100,88,100,95,103,95,90,94,101,94,95,95,83,95,95,90,99,99,93,104,88,90,87,98,90,105,106,106,105,110,101,89,102,101,84,90,112,100,92,98,102,99,95,90,90,97,92,93,104,101,87,92,89,113,105,91,85,98,93,91,88,100,111,105,102,96,101,122,92,91,92,114,94,108,92,94,100,104,93,109,87,102,100,106,101,97,100,101,109,99,105,93,115,100,104,91,97,96,94,94,105,98,91,83,89,94,102,83,104,94,93,93,113,87,98,101,98,104,100,100,74,110,101,106,90,98,104,96,102,93,90,95,99,102,98,101,97,94,82,105,76,98,92,98,98,99,102,78,102,89,94,87,99,117,113,96,97,112,75,87,97,107,95,99,99,98,105,101,101,103,103,108,106,88,92,97,99,97,89,83,100,95,91,91,103,99,93,102,97,90,105,95,91,110,104,103,98,100,109,106,101,93,101,99,92,103,98,104,98,105,103,96,102,108,105,89,106,92,104,96,112,107,101,90,88,83,98,91,97,101,96,102,95,103,101,93,92,110,107,81,97,86,91,83,98,113,85,94,101,100,112,80,92,97,87,77,93,95,105,108,88,84,96,92,114,100,95,105,100,100,82,87,95,98,84,94,104,102,97,108,99,91,102,100,91,106,83,93,92,104,87,96,105,92,104,98,98,98,91,99,92,106,94,91,87,95,58,57,92,94,90,88,99,90,89,98,87,98,100,77,105,100,109,101,96,103,95,94,88,102,88,87,97,99,97,100,95,98,105,89,97,93,95,99,78,102,96,102,89,96,100,99,82,92,94,101,95,93,84,101,93,104,94,89,108,105,103,99,85,107,99,92,92,91,96,94,102,104,87,94,94,96,106,101,95,93,94,99,102,107,95,102,93,93,105,109,100,78,94,95,97,94,95,101,89,98,101,98,90,98,91,101,100,108,101,102,107,94,89,104,98,81,87,99,91,102,110,109,88,89,99,92,98,98,101,72,97,103,102,101,92,96,96,101,85,110,91,97,89,93,116,96,83,101,99,101,119,95,84,101,98,109,92,106,105,89,91,103,98,112,84,107,94,89,92,97,98,102,95,95,99,101,99,103,95,92,83,98,103,100,89,81,100,91,86,95,95,112,114,94,92,95,87,101,94,100,101,98,107,92,90,104,104,91,84,97,112,108,92,90,107,90,100,83,105,96,88,90,97,117,100,94,88,91,111,95,86,105,108,104,127,102,88,99,91,91,95,100,112,99,94,102,98,96,90,104,109,106,106,96,114,100,105,97,100,94,104,98,91,95,95,104,90,105,99,76,102,104,90,97,105,69,105,90,112,91,102,109,106,100,108,106,103,87,102,98,104,102,113,93,107,90,106,102,92,100,91,94,100,98,101,94,100,99,104,100,102,105,104,98,95,106,104,97,92,88,93,102,70,101,107,100,92,100,91,101,100,99,103,85,116,106,95,99,105,104,85,100,97,91,100,98,102,101,99,82,91,95,85,96,104,101,101,83,98,92,106,102,109,111,113,87,104,104,94,97,99,90,100,97,128,92,99,95,88,97,89,95,70,90,102,101,99,90,91,99,85,102,93,105,103,112,98,87,117,115,88,99,105,83,106,93,98,94,87,96,113,99,94,97,91,108,100,108,99,103,96,83,94,88,103,101,104,108,87,95,105,101,116,101,87,102,98,98,82,101,105,90,117,104,101,131,87,99,94,97,94,95,111,103,101,98,97,92,97,96,107,96,102,92,108,79,101,106,92,86,115,109,93,109,99,109,90,95,94,96,94,114,95,94,91,95,96,84,95,107,92,106,112,98,102,108,109,96,117,112,102,95,79,89,99,92,100,103,77,110,107,109,103,102,106,111,90,121,105,88,104,90,94,90,101,123,78,103,94,103,114,76,102,98,94,117,107,97,97,102,99,73,92,101,101,95,106, +741.55157,104,97,98,100,101,108,100,102,96,113,101,90,106,90,93,62,88,119,101,97,89,101,103,97,112,102,98,92,91,101,103,102,107,107,102,111,89,96,89,104,120,92,89,100,110,110,99,88,93,106,96,96,93,101,99,91,83,91,91,90,97,83,101,101,114,101,92,97,95,101,106,97,105,93,102,107,95,90,107,104,95,90,108,98,95,103,96,102,98,106,102,106,97,109,94,90,94,93,92,100,95,106,97,103,92,100,94,98,91,104,99,98,98,98,94,97,86,95,104,85,86,83,94,114,101,117,97,92,82,102,96,104,100,108,102,91,115,101,95,88,112,101,104,98,91,92,99,88,87,85,114,108,98,92,89,87,105,98,93,88,102,92,100,89,106,96,95,91,101,87,116,89,105,93,102,96,105,99,96,103,99,108,87,93,91,111,82,96,100,95,92,97,97,111,93,107,96,86,104,90,93,99,110,97,105,105,102,101,99,108,94,105,103,104,108,109,100,101,93,96,99,104,113,89,84,106,86,104,105,100,99,108,85,105,83,108,99,105,99,104,93,83,111,89,80,94,92,95,94,97,106,106,105,108,104,105,109,96,99,98,94,107,87,99,107,101,84,93,91,97,93,89,96,98,108,98,93,92,104,94,97,82,104,91,89,95,99,113,85,91,89,91,96,99,102,107,89,110,97,89,92,92,94,103,96,93,97,105,101,109,93,99,101,100,104,94,116,104,102,92,84,102,110,96,100,104,91,63,101,107,96,87,99,100,95,98,104,89,98,96,89,85,93,88,91,97,105,95,85,105,109,93,102,112,102,98,100,101,121,87,91,90,96,109,99,94,90,98,95,93,100,97,106,92,103,105,100,87,105,101,108,96,91,95,92,98,101,96,103,95,110,83,99,107,93,93,101,102,104,100,95,96,97,97,92,89,98,90,93,94,92,103,90,103,102,87,95,91,87,105,98,82,96,93,87,92,101,92,100,99,89,104,75,83,104,96,89,92,91,99,105,98,66,110,87,98,93,99,100,99,111,79,104,104,75,106,100,100,109,74,93,108,106,105,115,111,98,104,94,96,97,96,95,103,97,94,94,103,114,100,101,91,99,101,101,91,100,107,101,77,95,95,107,105,90,100,85,98,80,94,105,103,103,92,98,88,113,101,99,91,87,105,95,95,95,106,98,103,95,94,90,94,100,99,96,98,102,101,100,90,99,101,100,108,95,106,94,98,103,95,93,100,92,130,100,98,97,91,102,107,100,92,106,97,97,90,102,98,89,90,99,100,102,100,98,99,100,112,109,107,78,82,95,101,95,97,111,100,106,107,100,106,82,90,96,93,102,93,95,92,94,101,108,123,95,103,99,97,99,93,94,91,98,104,93,106,90,96,110,101,95,99,95,103,105,99,99,87,92,101,94,99,96,91,95,98,92,89,110,101,77,105,89,98,96,91,104,96,99,95,99,108,87,78,90,89,103,92,92,92,90,95,97,87,98,101,104,105,96,96,109,101,105,97,90,92,104,97,107,103,100,87,105,86,82,95,103,101,98,102,100,100,98,98,100,91,89,100,100,92,99,96,93,102,94,99,93,101,114,91,100,100,82,97,102,105,89,101,96,95,91,93,101,92,102,100,91,97,112,88,95,95,98,92,87,103,103,92,100,105,105,90,86,103,97,86,97,104,116,97,109,89,101,106,101,107,77,108,102,106,95,104,115,92,107,96,109,89,100,89,97,99,99,103,83,80,95,85,93,100,96,96,92,111,97,101,94,109,102,91,94,103,97,111,102,93,109,94,106,103,107,103,102,100,96,103,93,95,97,109,101,99,83,107,101,97,101,99,101,93,105,100,101,104,101,95,91,102,99,98,110,101,109,102,97,99,95,92,91,102,101,98,99,94,95,100,89,94,98,97,99,92,98,102,97,107,102,101,102,69,101,106,99,121,105,103,99,89,111,102,98,107,99,109,102,97,90,89,100,89,93,92,93,101,96,91,104,95,102,103,102,105,92,104,99,96,90,108,101,96,103,103,85,106,109,98,101,101,123,107,100,96,98,97,97,90,85,111,87,98,101,110,100,100,105,83,94,112,104,92,102,97,94,103,104,103,87,100,105,94,100,100,107,110,79,100,93,95,90,98,93,88,100,88,84,111,106,88,84,96,101,111,98,97,91,105,97,99,110,100,95,102,97,95,96,96,88,105,94,97,90,109,92,103,91,89,96,123,90,108,97,101,104,101,101,91,84,90,95,96,108,106,117,111,104,92,85,92,88,96,112,92,97,85,104,101,91,98,91,87,90,99,104,104,95,108,99,91,102,108,93,107,100,88,86,91,114,108,108,88,97,104,83,100,107,97,101,101,106,108,105,91,96,88,91,92,94,82,95,91,91,103,96,110,92,99,89,95,100,106,96,109,96,124,92,106,96,88,94,106,93,110,89,100,100,93,91,75,86,78,102,105,94,102,109,98,95,102,108,101,94,93,103,102,88,102,103,102,99,94,102,81,101,96,94,101,80,70,104,87,97,91,105,95,101,107,83,92,89,100,106,98,102,91,110,93,89,98,107,108,105,99,109,101,85,83,94,94,93,102,97,99,87,90,93,111,103,92,103,104,98,95,96,109,88,97,102,97,91,110,106,79,103,87,101,112,85,98,95,71,95,94,88,97,100,91,91,87,91,94,100,100,92,73,89,91,106,96,101,106,109,92,91,96,87,117,83,128,93,87,96,85,97,95,94,100,103,95,102,103,104,97,87,98,74,105,90,93,98,99,111,118,91,94,89,102,97,106,94,113,92,97,97,100,103,97,117,95,120,82,100,84,96,87,97,104,99,94,113,94,96,104,101,97,99,99,95,88,96,98,113,85,103,110,103,90,110,97,100,101,95,83,99,94,87,107,120,102,106,92,100,114,107,104,97,93,84,98,101,94,94,107,85,93,97,122,99,100,90,81,99,96,96,106,103,92,105,105,103,98,97,103,103,100,80,112,100,100,100,92,109,95,96,98,93,101,115,89,99,97,100,101,94,103,98,101,100,69,80,105,92,98,104,95,91,96,91,103,101,90,96,98,99,94,97,90,111,100,90,91,95,96,87,95,98,94,112,96,108,101,102,92,96,99,102,104,110,92,97,94,92,102,98,95,92,93,95,96,92,93,96,89,93,59,107,94,103,98,92,119,109,92,102,101,98,95,96,102,87,102,95,91,119,106,102,90,96,91,98,101,103,91,109,84,93,88,95,103,99,84,104,102,94,94,99,92,89,103,94,93,89,98,93,100,88,97,96,97,101,98,97,90,109,96,98,87,105,74,96,90,91,102,97,95,97,107,66,76,98,95,95,96,101,104,98,108,96,82,98,103,87,96,108,93,94,91,91,87,102,93,94,109,92,97,89,95,83,91,105,97,89,110,115,104,104,103,93,91,98,105,99,106,101,105,91,119,89,83,90,98,101,83,96,101,96,94,98,102,93,101,96,95,105,88,95,100,72,91,96,95,111,100,102,102,96,89,92,99,102,101,94,81,104,97,96,115,95,98,98,99,104,105,96,93,97,107,91,117,92,102,101,96,97,88,94,87,98,97,110,86,105,104,111,102,93,108,93,103,98,95,97,93,106,90,97,95,98,100,102,105,102,90,97,104,100,93,89,93,100,101,87,91,108,96,85,111,103,116,117,109,96,83,87,71,109,88,98,94,93,96,104,90,87,91,88,109,91,99,98,92,90,102,109,90,94,91,101,76,101,107,96,103,87,97,97,94,99,94,104,101,113,97,100,98,84,90,96,91,96,94,95,100,101,108,96,103,98,99,97,90,103,90,84,101,97,88,103,98,99,100,89,106,82,96,89,82,101,100,95,97,101,97,103,103,93,91,85,100,91,98,107,94,90,80,102,95,90,92,86,93,101,99,97,95,97,95,92,82,99,97,88,87,103,101,83,103,102,93,104,95,93,89,100,90,111,100,100,91,104,93,101,97,92,95,107,100,94,110,85,94,102,99,102,90,110,87,89,94,96,102,89,94,105,103,106,98,103,99,108,108,95,99,60,87,109,101,107,89,105,87,95,96,101,91,100,94,100,87,97,99,105,109,99,106,97,101,94,107,99,104,96,92,102,97,97,97,100,104,98,107,95,92,80,92,99,76,88,92,100,104,91,85,99,94,100,105,94,98,93,91,95,89,80,91,101,100,93,108,99,96,96,97,94,102,100,91,88,87,83,101,92,91,97,109,106,101,94,79,108,112,100,86,90,95,91,96,93,96,86,105,92,89,99,113,83,106,93,110,96,92,94,99,111,91,97,106,99,93,101,95,101,92,94,95,90,96,96,94,91,89,95,87,102,103,88,100,99,97,92,94,109,87,111,90,73,109,98,105,108,100,84,110,115,98,99,102,99,110,93,110,86,92,93,101,96,100,97,98,93,102,107,103,95,108,98,92,97,90,95,78,96,97,92,96,105,92,86,94,94,94,91,94,103,101,107,105,95,91,92,97,100,104,115,101,87,99,99,109,93,93,90,102,96,99,85,104,90,100,85,103,125,102,95,105,110,104,93,88,84,93,89,104,101,103,99,102,111,104,104,87,94,97,87,111,98,96,101,94,89,104,96,97,112,80,102,104,94,108,105,100,113,97,105,95,101,109,98,96,103,103,94,88,99,93,96,98,97,93,100,91,97,88,113,104,102,103,98,92,97,111,98,119,95,83,102,105,105,98,89,91,85,104,96,100,103,104,92,97,98,106,103,100,85,86,101,100,97,84,86,96,94,101,97,105,96,108,109,97,84,110,104,96,98,102,101,59,94,90,97,104,99,81,81,83,113,111,94,91,96,98,94,96,98,109,111,111,123,103,93,110,95,104,94,102,87,83,96,104,90,91,111,100,98,110,103,91,104,93,105,106, +741.69299,105,104,95,104,79,106,102,88,102,112,95,103,117,110,92,106,103,99,109,97,94,92,97,104,111,105,103,104,101,95,107,106,104,97,89,93,101,92,90,86,95,101,98,90,97,106,89,90,97,92,97,111,99,106,106,95,92,101,96,92,102,111,100,109,102,91,86,97,104,116,87,116,97,103,99,108,95,99,102,102,110,113,102,105,103,90,105,106,94,77,114,125,98,93,104,94,95,100,96,92,95,97,98,101,116,97,94,110,95,102,101,88,109,94,100,99,89,101,109,96,97,94,100,106,101,97,107,98,98,121,106,104,104,101,99,89,98,104,94,100,98,108,96,108,102,110,119,97,88,103,100,115,102,94,105,102,105,97,102,95,101,98,117,100,96,96,99,94,98,90,110,107,92,87,100,103,99,97,120,92,81,103,91,108,107,93,105,83,116,98,92,86,93,89,101,110,99,100,117,97,100,97,94,105,95,97,88,97,118,107,119,107,102,101,91,90,99,100,89,105,108,91,96,96,114,101,114,103,87,110,94,111,110,83,107,92,106,94,101,89,93,90,109,96,93,98,99,109,92,93,86,104,86,110,92,92,98,94,89,92,68,94,94,97,102,100,84,84,103,98,100,104,94,100,109,102,91,87,101,91,101,102,92,98,99,97,70,101,106,102,100,92,104,95,118,111,97,111,91,91,90,102,92,100,97,102,97,90,102,111,98,92,104,99,102,98,79,102,109,99,106,94,114,95,100,111,96,80,101,95,109,101,96,103,93,103,84,110,98,90,106,100,86,91,97,100,90,92,105,107,100,109,111,102,102,97,101,102,100,109,101,90,110,87,106,97,101,104,101,92,95,102,90,100,96,104,98,97,101,99,93,94,101,95,74,94,91,91,106,98,110,88,92,99,86,97,90,100,99,108,102,96,81,74,95,100,103,109,99,91,102,91,111,95,111,94,94,71,105,107,106,95,97,95,102,110,89,89,97,109,100,100,98,86,94,113,109,100,96,83,105,96,94,94,95,92,93,97,98,107,91,111,94,97,108,112,97,94,105,106,100,94,101,103,94,99,99,86,95,101,91,101,92,88,87,85,87,99,95,91,105,95,100,108,108,94,102,109,92,91,105,100,92,91,78,92,98,87,100,96,103,105,93,100,100,105,78,93,99,99,104,110,97,97,107,109,105,91,92,87,88,93,96,100,95,97,85,95,93,98,90,106,86,99,100,101,95,95,106,90,106,96,86,112,122,122,91,96,97,105,91,93,103,71,99,94,105,89,103,104,94,92,89,87,112,99,93,108,100,98,88,99,98,104,98,95,103,102,97,113,98,101,103,100,108,94,109,88,101,92,99,100,101,100,109,103,106,98,95,69,107,102,91,108,96,112,81,106,103,95,91,88,101,103,100,98,97,94,91,85,99,93,106,105,107,94,84,95,92,93,98,95,102,91,114,95,100,94,99,101,94,90,92,94,77,109,94,92,95,92,90,100,104,90,108,100,109,86,105,92,102,104,100,97,90,76,112,97,105,98,96,92,97,93,92,105,94,107,114,96,109,91,102,116,96,104,105,83,97,84,90,92,99,98,104,103,107,96,98,92,100,93,90,99,110,96,103,84,94,105,95,98,92,96,98,100,102,102,95,103,100,97,99,85,96,98,92,93,96,104,97,103,92,97,96,95,93,92,101,91,106,101,114,93,99,87,107,102,96,101,116,94,99,106,110,98,96,90,127,102,98,100,92,105,99,105,93,103,103,94,101,109,91,105,107,105,105,113,90,87,98,99,98,97,104,102,83,102,112,98,94,97,106,106,98,117,81,92,105,92,100,98,88,99,93,96,97,95,105,111,98,101,93,101,96,100,107,98,115,100,77,102,92,82,98,112,107,90,95,104,112,91,102,67,96,88,96,98,108,96,101,95,100,106,97,76,106,105,92,94,98,89,96,97,95,111,97,103,97,109,97,85,96,90,86,97,94,99,94,90,91,113,107,97,99,93,103,104,92,99,85,104,109,106,113,103,97,99,95,85,101,103,100,113,98,92,108,87,89,90,97,103,112,94,78,88,95,101,103,97,83,90,92,108,95,102,87,94,63,89,95,92,95,100,101,105,107,105,102,98,113,93,97,103,97,69,98,89,91,100,97,100,84,94,100,98,106,107,101,90,87,100,98,90,102,91,101,99,108,113,98,87,113,93,112,90,104,90,104,102,98,108,101,103,101,90,98,98,79,102,92,95,105,90,104,109,94,100,92,105,109,76,90,102,107,96,90,94,97,105,107,104,96,91,104,83,98,62,104,101,87,109,98,109,97,87,102,97,104,92,102,107,97,109,104,101,96,96,101,108,88,104,106,95,115,101,100,110,112,101,106,99,95,91,101,105,88,90,105,99,92,104,97,90,92,109,104,100,107,88,80,110,100,113,105,103,99,85,98,101,96,105,99,103,104,94,100,91,88,97,100,96,105,91,106,104,94,103,102,70,105,93,88,89,93,106,79,96,114,96,93,97,100,101,106,105,104,106,100,95,106,102,94,103,112,87,107,105,88,99,102,95,107,86,102,89,99,93,88,98,95,88,100,98,91,92,103,93,89,98,102,95,79,108,94,109,110,112,96,87,109,110,103,95,94,102,96,109,86,90,108,91,109,96,95,109,95,82,92,101,109,93,104,98,88,100,99,111,107,99,95,122,82,109,99,91,96,101,99,107,92,99,98,95,94,108,108,96,105,101,95,94,89,91,105,105,109,94,104,108,94,99,91,96,97,100,115,105,92,132,105,98,84,106,86,92,97,98,108,100,93,89,96,102,96,95,109,99,102,102,102,108,99,97,108,95,113,105,98,112,83,95,101,103,97,91,109,90,108,101,99,80,96,101,100,97,94,111,84,104,111,96,92,102,85,97,94,96,103,107,97,79,103,114,96,101,101,106,115,100,96,110,95,87,91,110,102,97,100,96,109,90,108,73,91,84,100,116,89,93,112,101,97,98,103,117,104,112,103,105,109,85,105,92,107,87,102,85,105,86,79,91,94,100,98,98,95,96,90,102,99,95,91,98,97,89,91,94,85,63,100,81,98,92,100,105,95,97,91,100,96,91,102,98,87,97,100,90,91,93,113,104,109,98,88,99,78,106,102,96,100,92,101,107,97,96,96,106,89,96,88,92,104,91,89,104,87,90,98,101,102,110,98,103,97,102,108,92,95,111,88,110,93,103,94,87,109,86,99,94,99,103,86,88,95,100,106,99,104,96,89,96,99,107,96,80,109,115,83,97,96,102,100,99,95,92,96,108,97,98,101,87,98,125,99,98,116,98,104,90,102,97,98,105,96,104,79,90,96,103,88,108,99,88,91,96,111,117,96,92,96,96,104,101,96,98,97,101,94,93,94,75,92,101,82,96,92,95,104,101,83,107,92,96,113,96,99,99,96,104,105,87,87,103,111,93,105,104,104,96,95,98,104,97,101,100,89,93,112,103,88,98,91,89,101,103,106,104,108,96,97,91,106,105,110,104,87,94,104,99,112,108,89,105,99,95,107,102,96,98,98,98,101,84,100,104,94,87,96,124,100,65,108,89,94,108,102,116,101,89,93,87,93,105,95,95,96,97,90,100,92,89,103,91,101,92,87,97,87,93,108,99,87,102,102,102,117,92,95,106,102,95,97,101,105,104,94,96,100,94,87,98,107,96,106,99,101,102,101,98,95,86,92,96,103,81,108,104,96,104,88,105,106,116,110,81,92,101,95,94,97,88,89,105,96,108,100,109,112,91,100,98,92,91,105,100,107,96,93,103,107,105,97,88,93,102,92,92,101,100,106,109,102,102,93,110,98,102,105,103,94,99,96,101,93,111,96,100,105,99,94,101,94,92,92,104,97,99,81,100,103,97,93,102,92,91,99,91,87,95,102,97,98,95,94,98,97,94,107,87,106,100,112,91,95,101,95,89,105,98,71,102,91,107,90,103,103,93,98,95,99,91,95,92,108,99,98,86,95,96,81,90,98,94,120,96,102,108,107,100,99,85,108,97,94,94,105,101,110,98,132,93,111,103,109,104,97,103,91,102,100,89,91,105,102,100,99,100,92,92,100,105,94,105,102,106,72,98,91,99,82,99,104,95,105,100,110,94,105,110,121,98,99,114,101,81,99,102,108,96,111,93,92,94,104,102,96,100,101,98,103,79,96,96,112,99,102,97,101,91,95,101,94,96,106,102,94,98,98,105,105,100,97,91,105,91,114,95,100,102,103,98,101,95,92,104,87,101,108,96,95,96,108,92,97,96,107,85,88,108,96,102,113,101,97,100,98,103,98,109,99,109,87,103,97,107,99,96,95,90,96,82,95,98,89,102,96,108,100,102,89,92,100,104,97,91,103,103,91,88,92,88,101,83,104,107,105,100,92,98,97,83,109,98,83,105,108,91,84,90,115,67,88,94,89,102,108,104,99,116,95,96,93,96,95,97,82,100,104,108,95,97,95,97,106,108,89,91,95,96,99,72,103,93,98,88,98,89,87,91,105,110,90,96,101,102,108,112,93,121,99,88,100,104,98,107,85,108,106,94,98,96,112,99,111,124,108,103,95,100,98,97,98,105,117,97,96,105,68,101,101,93,94,98,93,104,108,102,87,108,106,107,93,107,100,101,115,99,90,117,90,102,105,96,93,99,68,100,97,94,75,109,111,113,100,90,106,101,95,97,94,99,96,98,84,102,100,115,87,106,91,106,81,95,96,91,73,100,105,100,96,95,102,110,95,90,91,104,81,105,94,96,116,112,118,104,100,103,102,104,111,109,108,112,95,97,96,84,109,84,102,95,95,100,83,96,100,102,105,119,100,103,103,92,96,96,82,94,103,99,96,91,99,98,104,99,113,106,91,94,95,119,100,94,104,109,91,97,97,100, +741.83441,123,101,109,83,88,117,95,102,87,97,96,99,97,98,100,105,97,97,95,112,101,88,88,108,103,93,97,97,92,92,95,82,104,93,95,89,103,97,103,87,91,102,92,97,95,106,92,93,84,98,86,95,115,95,99,112,107,93,103,102,100,104,100,100,82,84,97,101,88,105,105,105,72,92,99,99,96,71,96,90,108,95,103,89,109,96,98,106,98,115,98,89,104,88,106,98,65,93,93,103,89,91,101,97,89,111,74,114,93,99,104,98,90,106,98,88,87,109,94,104,97,101,90,126,88,80,91,102,98,93,110,109,83,101,101,116,100,89,80,98,97,101,103,102,96,90,101,89,89,100,86,102,106,93,88,91,91,87,92,98,89,99,106,92,98,101,96,95,100,96,97,92,97,103,98,86,103,97,105,107,81,95,100,92,99,116,83,82,106,99,99,93,104,105,77,96,90,83,98,103,93,89,101,95,88,100,102,96,104,102,94,95,108,99,102,97,98,112,92,94,104,97,97,93,95,105,82,90,95,106,96,90,97,93,96,79,99,96,100,94,95,92,105,85,90,93,87,97,94,103,98,90,93,103,97,108,92,105,100,98,82,92,89,93,100,97,95,96,91,97,101,100,103,90,94,82,95,90,86,71,87,106,79,92,100,96,100,97,108,108,97,100,105,101,95,105,88,89,100,96,97,91,86,100,98,96,96,93,109,83,97,92,93,94,85,98,98,103,101,90,95,86,102,90,97,82,91,90,111,104,106,72,93,102,105,95,82,88,87,94,99,100,105,98,97,108,88,96,112,96,97,103,102,91,98,97,102,108,88,80,100,106,89,104,76,95,94,110,92,100,90,73,98,93,87,69,97,96,87,92,102,101,105,96,97,90,93,94,89,91,98,93,105,100,89,92,97,82,109,91,83,83,88,84,98,88,106,83,96,93,99,97,75,101,101,96,91,89,105,91,106,95,90,104,99,91,96,86,91,108,92,105,88,89,75,83,83,105,92,104,103,99,94,98,92,82,100,107,95,112,93,100,101,101,95,78,78,93,104,98,84,101,101,103,105,108,101,101,106,94,96,94,91,96,99,91,91,88,91,95,88,85,100,100,100,76,101,113,108,60,100,107,100,99,98,91,76,87,90,86,96,96,109,98,94,90,85,104,100,93,95,113,100,95,99,107,107,101,89,86,94,90,97,95,102,97,99,88,91,98,92,92,93,86,88,101,111,89,127,116,89,105,82,94,95,101,77,92,99,104,86,98,97,100,115,106,107,90,96,98,64,83,91,97,102,69,94,105,96,91,83,92,103,93,87,73,92,91,95,92,91,90,109,90,105,92,97,92,97,82,95,107,98,92,96,108,84,93,84,92,91,107,97,101,87,79,94,91,94,81,104,89,101,104,92,84,89,87,102,100,91,112,97,93,81,102,94,116,117,96,92,84,103,97,90,89,91,93,96,100,108,99,88,105,99,88,97,91,106,99,94,88,96,104,86,112,114,105,102,94,111,101,105,92,98,59,101,89,96,93,99,91,97,93,87,101,92,88,114,102,94,94,106,86,93,95,95,98,79,105,96,98,95,102,98,105,84,100,90,107,109,106,117,92,102,100,96,101,74,101,88,99,117,95,95,91,95,89,98,97,104,97,93,106,80,88,96,98,99,96,99,95,97,93,96,89,91,89,106,65,105,96,92,93,92,89,91,99,98,105,112,91,97,93,96,94,97,81,91,99,101,92,95,104,88,83,89,99,92,103,103,102,110,97,100,99,87,95,82,100,102,88,101,96,106,92,95,98,98,99,100,96,110,99,99,95,80,92,103,109,96,95,85,93,95,101,92,101,107,116,101,87,100,113,107,104,113,90,103,118,98,100,96,113,76,91,104,89,81,90,89,81,104,87,99,95,96,93,94,108,96,94,87,90,103,84,90,100,90,92,97,91,97,101,84,112,88,92,109,95,91,96,99,100,90,88,85,87,110,88,99,89,93,89,98,104,118,103,102,101,94,97,81,91,92,98,90,74,108,91,103,92,107,101,97,98,100,104,89,109,94,106,110,97,109,94,104,109,92,93,88,98,87,85,104,92,87,86,106,94,99,101,93,88,98,104,100,102,92,94,98,102,100,97,84,93,89,89,95,106,87,93,99,105,97,84,90,98,94,105,108,97,110,104,103,85,92,104,94,95,103,90,83,96,95,89,93,85,117,97,94,88,98,96,103,96,105,89,79,107,77,96,98,76,99,104,71,102,88,70,98,113,96,89,91,87,75,95,98,91,106,83,109,92,95,89,96,94,92,101,99,104,75,91,120,107,99,104,91,105,101,92,98,87,94,93,105,85,95,97,96,85,92,99,105,92,85,104,87,90,100,99,90,101,99,113,93,98,100,95,101,104,109,97,97,85,93,88,98,98,87,100,93,98,83,106,86,93,98,91,89,93,103,90,109,88,87,96,106,79,99,100,100,95,102,97,103,90,103,96,101,88,104,84,86,91,93,92,107,117,91,82,97,102,97,130,97,100,102,87,88,99,108,104,101,97,98,106,83,102,88,91,105,99,99,114,87,110,108,76,104,92,95,92,96,98,117,106,89,64,111,85,95,108,100,87,101,86,100,102,120,110,93,93,98,96,102,103,99,102,79,106,100,98,109,103,87,91,104,105,107,98,109,96,98,99,89,96,103,93,102,98,109,102,111,91,94,86,100,98,71,113,114,94,80,91,91,94,91,95,94,106,100,106,97,91,104,122,102,101,105,112,95,90,102,111,97,102,94,104,109,104,85,106,98,97,96,92,114,98,105,88,72,98,97,93,93,99,88,103,95,101,106,99,93,99,96,98,106,110,79,107,92,107,84,104,107,97,98,86,101,94,93,106,100,96,92,102,91,104,72,84,92,101,98,101,93,91,109,98,97,104,108,86,87,94,104,97,97,110,102,98,115,103,104,102,99,94,109,95,103,112,98,83,93,113,92,105,94,94,100,100,94,91,107,96,98,113,95,93,109,103,90,101,95,100,82,103,92,100,102,103,87,98,83,108,106,97,81,96,102,110,109,84,95,101,103,111,93,94,99,102,93,94,96,97,93,121,87,99,108,109,95,89,93,97,95,98,90,101,106,102,116,100,94,98,94,97,99,101,105,99,99,100,102,84,96,105,108,99,90,94,104,104,90,102,93,94,109,87,78,98,94,88,98,106,83,110,119,105,96,110,102,98,102,90,94,104,105,100,97,96,109,112,96,96,76,101,103,100,109,92,97,94,100,102,95,108,108,91,106,94,92,98,105,103,99,104,107,106,92,104,101,106,95,99,96,99,94,108,84,87,91,104,114,93,95,95,102,96,89,109,93,94,91,100,98,96,98,92,96,98,100,103,109,104,100,92,94,99,75,93,89,103,87,100,102,95,105,92,96,98,103,102,102,104,107,84,105,107,100,84,108,97,92,105,98,106,97,105,93,91,98,97,102,93,104,98,65,97,104,108,97,101,97,91,62,103,98,85,94,107,102,102,101,99,104,96,99,85,100,101,99,100,94,98,103,97,98,100,101,101,93,118,89,83,107,102,105,99,93,89,96,97,98,95,93,96,96,88,97,98,90,102,91,79,99,93,105,100,99,100,102,98,95,92,91,102,87,89,95,86,103,99,86,99,98,87,106,99,92,106,88,117,106,101,96,95,97,97,101,99,109,97,97,96,90,117,64,93,109,86,96,92,102,93,110,95,90,98,94,94,112,112,102,99,97,103,93,100,121,89,99,104,100,95,95,112,99,95,106,95,110,93,112,102,82,76,102,94,92,83,65,110,90,93,98,105,108,101,104,105,99,100,119,96,93,83,93,94,79,99,100,87,113,93,104,82,92,104,97,93,97,104,99,99,106,114,103,82,85,113,108,112,105,99,117,98,97,107,103,96,111,95,99,92,98,86,100,96,93,102,93,100,91,100,91,95,95,84,87,100,109,94,112,91,94,110,95,89,99,100,101,95,124,102,98,96,88,87,88,96,109,108,100,91,95,83,105,106,102,98,101,101,94,89,96,93,98,91,99,101,97,92,97,101,105,88,93,92,103,98,81,92,79,94,105,110,91,77,92,97,100,95,104,112,94,104,96,107,98,104,98,93,91,95,86,99,94,98,97,94,92,102,96,104,90,97,94,113,118,98,97,98,95,100,117,97,81,96,100,110,115,100,96,102,96,100,104,86,101,96,105,95,64,91,97,107,100,99,97,92,97,96,105,103,94,101,95,91,106,93,97,107,85,90,96,91,109,101,87,110,107,105,106,98,98,99,105,101,98,95,101,103,104,95,85,88,104,108,95,101,106,104,109,86,105,91,95,92,97,88,101,94,94,129,108,104,97,75,100,90,100,102,113,97,102,100,107,99,97,114,97,105,95,90,104,83,87,88,104,100,100,88,87,99,88,94,99,126,97,96,81,100,98,101,89,96,95,97,117,99,106,94,104,109,90,98,109,94,92,93,84,100,101,101,95,107,109,118,90,87,102,88,99,100,104,92,99,100,94,98,89,92,103,99,102,101,98,104,87,94,134,89,103,102,115,96,100,92,91,95,92,77,104,101,105,107,98,95,94,76,94,94,105,102,105,97,94,91,98,93,96,113,87,90,94,95,92,113,101,95,99,92,105,89,91,98,93,104,94,98,77,106,93,94,104,103,102,65,100,97,94,102,94,96,106,113,108,90,98,97,99,90,95,103,88,90,80,103,91,92,74,107,97,90,115,104,105,99,96,101,96,104,100,95,93,101,109,89,87,92,93,108,101,92,113,84,98,91,103,95,105,95,100,111,102,102,91,64,84,98,103,118,105,93,97,95,90,101,102,108,105,101,78,101,98,89,107,115,100,109,105,86,95,95,90,80,108,92,97,91,103,99,120,103,111,96,92,93, +741.97583,98,100,97,68,82,105,108,104,100,102,95,99,96,90,97,122,88,92,93,113,100,87,88,101,106,96,97,105,102,91,90,106,103,96,107,81,90,93,97,101,94,91,95,99,97,96,94,92,110,100,89,93,101,109,104,88,100,86,116,91,90,95,104,97,113,114,91,107,84,91,101,113,102,109,83,96,90,113,111,86,93,100,111,95,93,85,92,99,91,96,92,105,101,106,94,97,100,86,70,93,118,109,86,102,78,94,104,102,85,96,98,99,105,101,99,100,95,101,101,96,103,98,104,100,103,102,104,86,95,84,99,103,105,102,84,100,94,100,92,78,90,99,83,89,95,93,88,103,107,88,91,86,100,86,81,101,92,86,97,71,96,118,94,103,80,65,102,108,105,97,98,92,97,98,101,91,101,94,98,97,94,90,91,100,101,82,92,94,112,93,87,99,100,97,93,96,93,96,103,104,102,109,88,98,89,96,105,95,100,97,97,103,101,94,78,87,105,103,106,99,112,95,91,88,95,95,94,95,101,90,94,92,83,98,103,104,88,105,99,91,102,98,103,104,92,94,97,106,91,91,91,103,105,100,80,95,99,95,83,97,85,103,95,91,88,96,107,92,93,105,97,89,93,91,107,87,79,103,95,94,91,111,94,97,105,105,98,111,83,103,92,92,91,99,110,105,96,97,89,104,105,92,87,110,75,91,87,104,97,99,91,110,93,100,99,104,104,94,99,104,102,104,102,95,95,104,108,90,92,108,97,101,105,102,100,92,97,92,94,102,98,99,94,94,80,95,99,97,96,99,77,98,104,104,99,100,96,107,98,86,116,89,101,88,91,104,101,94,97,102,103,91,92,109,93,101,94,91,100,93,101,100,92,106,97,85,98,101,93,89,92,102,91,79,101,96,104,112,91,100,92,95,94,93,103,81,96,87,99,102,90,87,105,98,106,91,97,101,100,94,94,96,97,105,98,88,101,95,87,98,101,96,92,87,92,101,112,96,86,94,101,94,98,95,98,102,92,90,99,102,93,83,105,90,101,111,98,102,100,113,84,100,102,98,103,95,96,93,100,85,101,109,101,97,91,93,102,113,99,100,88,93,109,93,94,93,100,96,99,92,87,99,94,93,94,95,96,105,101,87,111,93,93,98,98,101,98,96,98,90,98,97,117,106,106,95,102,101,93,84,98,105,94,97,96,98,112,99,97,91,93,93,91,87,89,106,92,104,95,90,106,105,94,97,104,90,92,90,95,96,91,100,87,108,95,98,107,97,95,84,95,87,105,104,104,100,94,110,95,101,95,105,104,102,92,90,93,102,90,88,88,100,113,95,101,87,100,101,92,100,101,95,96,103,115,104,103,85,93,100,94,96,105,101,94,90,97,99,108,96,97,98,92,94,92,93,101,96,91,94,98,77,111,96,91,96,93,98,95,104,101,93,97,100,61,96,84,87,103,97,98,109,93,99,88,96,98,100,92,96,101,92,102,78,99,106,108,102,98,88,105,95,92,75,113,88,99,89,78,94,97,104,109,101,93,101,86,91,108,95,93,109,113,82,105,89,83,94,88,92,104,136,109,86,91,104,97,96,96,99,93,77,67,94,105,92,89,101,114,96,98,90,98,103,78,97,105,85,94,104,82,92,88,102,89,87,94,96,105,100,100,94,92,92,95,95,87,104,113,93,101,88,90,100,99,104,101,102,99,105,100,100,119,107,101,96,98,107,93,105,87,86,93,102,94,101,107,98,94,100,105,98,101,96,86,107,86,100,100,90,106,94,97,105,92,90,93,101,102,117,98,94,100,103,101,105,86,102,81,102,97,93,90,96,89,98,102,84,89,81,101,109,108,87,107,102,89,101,102,95,90,104,88,99,97,100,102,92,84,96,102,101,91,111,92,102,96,102,104,101,100,102,106,96,98,100,95,95,94,102,76,91,98,98,107,89,97,103,96,100,102,88,103,92,85,102,102,103,98,87,101,106,97,94,91,95,98,92,94,97,86,96,97,85,86,89,92,110,106,66,129,92,86,100,124,92,97,101,100,111,100,101,100,94,101,91,81,96,102,96,107,115,99,95,101,98,97,112,93,87,79,109,105,98,101,86,98,101,95,90,92,120,78,129,81,107,80,100,84,91,103,100,101,110,99,93,113,89,99,104,98,99,107,100,93,98,97,96,91,100,105,101,95,88,88,87,91,96,97,103,91,116,90,102,89,105,103,97,96,106,98,98,91,103,105,86,100,96,98,108,105,94,78,101,90,102,95,69,86,102,102,94,91,99,97,111,94,104,96,93,96,98,101,97,115,79,92,100,99,105,128,105,97,97,103,93,87,89,90,89,95,112,108,90,110,100,100,109,98,103,92,89,92,83,85,85,115,88,109,110,106,101,98,83,94,95,73,84,103,78,104,100,111,97,82,100,86,95,83,91,94,120,74,91,103,95,100,95,99,99,99,96,93,97,98,101,95,97,113,90,99,113,92,84,95,84,73,108,98,95,88,81,108,84,96,93,93,83,94,89,92,93,101,95,103,97,94,102,97,99,104,94,100,114,91,93,98,98,85,100,101,105,79,105,109,98,96,102,97,92,91,97,95,94,91,92,100,99,104,92,102,95,97,95,108,92,107,92,97,66,87,83,105,85,106,102,99,97,91,94,102,82,97,95,99,89,113,100,100,86,105,99,96,119,96,97,103,92,92,109,98,106,98,98,115,106,94,108,71,98,104,96,93,82,91,138,102,89,81,97,98,96,91,99,106,88,110,100,99,100,112,100,90,98,93,87,89,96,97,89,99,110,89,100,97,99,87,108,107,97,94,100,104,109,84,94,95,105,87,93,89,101,101,103,103,100,97,98,102,88,105,94,101,90,94,90,112,96,96,111,103,89,89,93,89,77,95,102,115,102,91,100,109,96,96,96,88,93,105,98,100,103,97,94,100,89,98,84,99,95,91,108,98,95,89,91,100,95,91,107,99,102,96,90,93,100,107,78,110,102,107,104,102,95,95,104,91,101,91,101,95,95,90,98,103,112,102,109,95,97,88,108,108,98,98,100,104,97,98,86,110,109,102,95,90,91,86,79,95,100,95,106,109,92,108,98,91,107,86,95,98,96,87,109,104,102,100,96,100,98,94,89,99,103,100,94,78,102,94,96,88,95,102,90,103,99,106,91,95,95,102,89,93,110,97,93,93,103,96,87,91,81,93,106,85,90,101,102,97,90,109,88,107,93,96,76,109,104,102,95,87,109,94,107,99,91,100,98,100,101,106,86,89,105,99,96,102,98,109,103,95,93,97,94,90,96,91,95,96,93,98,93,91,100,107,97,88,91,100,86,83,102,109,105,112,100,102,89,105,98,97,97,103,100,91,97,92,100,96,98,95,92,92,104,98,94,101,95,93,87,80,105,100,106,95,98,89,97,97,102,98,89,72,97,99,91,93,92,95,88,99,100,109,97,99,89,92,97,112,94,103,86,101,104,84,93,88,91,104,92,91,91,102,91,94,100,97,102,98,99,96,98,87,105,95,87,102,101,91,99,102,80,111,105,91,103,97,105,105,101,87,109,70,102,87,99,104,108,102,89,93,95,99,103,92,99,102,94,95,104,65,89,92,103,91,87,101,93,91,98,97,105,98,87,96,89,109,102,103,113,96,74,91,98,94,89,92,109,95,108,91,95,93,97,96,124,107,106,96,103,93,98,94,105,89,110,85,99,98,88,95,99,100,96,90,89,82,98,98,97,95,91,106,90,97,91,99,101,96,104,101,96,106,88,92,102,122,98,93,94,93,101,92,121,96,92,87,88,92,104,104,100,102,103,93,85,95,87,91,93,96,98,88,101,89,104,105,96,116,91,97,108,94,90,102,115,100,87,115,106,95,94,96,96,92,91,120,71,91,96,94,106,101,93,90,105,95,88,90,88,101,87,112,95,102,90,102,95,89,94,84,91,103,97,96,111,92,101,91,124,103,89,91,94,94,101,89,111,106,90,95,103,83,111,93,91,90,96,108,96,98,106,87,82,91,84,110,101,97,92,90,85,99,90,98,92,111,98,111,94,103,94,97,110,113,85,91,108,95,89,105,72,90,117,101,96,107,101,96,91,99,122,85,92,93,97,103,100,100,92,86,96,93,96,92,98,106,109,102,101,108,89,87,97,95,94,95,105,95,100,98,102,96,120,100,97,94,92,89,107,100,101,95,95,96,105,106,89,103,104,99,104,90,106,91,106,97,94,93,91,86,102,94,94,92,103,92,99,109,100,92,95,107,92,99,100,93,93,82,92,91,95,115,99,113,96,94,100,96,93,100,113,102,95,98,105,87,89,95,88,97,84,82,105,98,105,91,105,85,107,102,94,83,104,99,105,110,100,102,94,98,113,90,117,103,99,97,92,101,96,94,85,91,89,102,101,95,103,110,96,105,95,96,100,94,85,104,87,97,91,91,107,96,100,97,98,99,93,104,88,96,113,87,109,94,95,97,92,101,100,84,91,103,94,105,89,87,95,96,110,91,90,89,98,84,97,88,100,104,100,100,103,110,96,95,110,102,96,98,91,91,116,100,85,102,94,92,105,99,100,95,91,88,104,103,76,108,108,103,107,101,93,108,106,93,103,95,100,93,100,108,96,117,97,97,76,105,97,109,98,96,96,103,103,102,96,108,104,92,97,93,90,91,97,103,101,96,99,86,90,91,109,87,83,95,84,100,118,90,93,83,101,91,94,107,93,101,91,120,103,95,114,105,91,93,98,101,89,102,100,91,107,101,100,105,97,100,99,96,98,98,95,94,104,92,103,92,99,81,102,104,83,90,92,87,97,80,103,95,98,101,97,90,113,87,90,104,94,83,83,94,99,89,92,88,99,105,93,94,101,93,103,112,102,103,102,93,87,109,98, +742.11725,99,87,96,111,90,109,99,91,103,93,96,105,105,106,107,94,90,100,89,108,110,101,95,104,103,109,92,92,105,106,104,91,97,80,106,95,102,98,96,86,80,109,94,97,100,108,96,112,90,106,87,102,94,91,84,91,94,104,109,86,108,106,99,77,93,79,103,102,81,89,89,92,92,84,101,117,84,89,105,88,95,98,92,100,104,114,101,101,101,79,104,100,63,95,86,101,93,84,98,112,93,97,97,83,91,87,99,94,104,106,91,92,98,107,97,106,97,90,94,91,91,95,98,103,99,96,80,84,121,93,88,110,92,97,101,107,95,92,93,92,80,113,105,93,95,90,99,93,86,101,100,106,102,94,92,91,102,96,97,74,97,101,84,97,99,97,94,94,92,112,100,100,101,96,91,109,100,94,104,116,96,82,102,103,103,96,90,95,110,85,91,88,85,101,90,101,82,110,97,103,93,101,93,91,92,101,94,101,97,102,91,98,84,83,111,96,102,100,100,108,96,98,98,94,101,96,94,100,106,88,98,78,88,106,103,101,105,96,94,106,91,91,105,80,97,94,94,101,101,98,106,105,92,112,105,99,102,93,80,104,96,99,97,89,81,104,93,92,91,99,97,102,91,101,109,107,108,114,90,113,80,98,101,101,118,98,83,97,87,104,88,101,101,102,90,99,104,93,94,113,97,95,101,100,96,101,95,94,105,97,87,104,95,104,92,99,77,93,104,92,101,94,98,99,98,94,101,99,97,107,100,98,99,109,95,98,105,84,95,106,97,109,134,93,95,92,114,100,105,92,101,76,91,111,109,109,100,113,95,100,99,93,106,100,104,78,87,106,91,108,96,90,105,102,96,91,110,107,102,104,79,101,95,93,99,106,103,93,99,93,99,99,98,100,95,97,94,93,109,99,97,92,102,98,106,98,95,102,105,98,99,96,77,93,92,91,93,115,120,86,84,95,108,97,92,91,116,92,99,103,100,90,100,109,97,94,104,102,101,100,93,96,91,97,92,102,129,105,103,110,96,88,107,96,108,105,90,91,96,98,94,110,107,111,91,99,92,96,105,96,91,98,86,112,72,95,97,101,95,100,96,101,98,97,102,87,88,103,100,112,109,99,104,93,88,106,96,99,106,79,101,94,91,96,96,91,105,97,101,96,90,87,98,94,101,92,117,98,98,105,94,110,99,108,94,91,99,97,98,97,97,104,71,92,109,92,91,104,103,97,100,97,99,107,107,82,97,96,99,94,103,90,102,94,89,99,100,97,97,97,96,99,94,97,95,95,124,99,103,91,99,84,106,104,101,96,91,102,93,86,87,91,93,91,89,91,98,103,99,101,94,100,83,89,96,107,98,92,106,83,104,109,95,108,84,100,93,92,95,94,106,88,100,105,99,106,99,101,98,78,104,97,92,97,89,105,105,94,100,98,102,99,87,102,84,91,90,88,99,108,99,97,86,97,103,85,98,91,95,107,112,114,101,106,100,97,97,109,93,102,98,99,98,96,105,92,108,79,105,99,117,105,111,101,115,102,97,82,105,94,87,81,106,98,96,96,95,91,113,105,120,109,86,95,105,99,97,103,95,90,91,111,100,99,95,98,96,97,110,111,89,90,93,101,84,93,94,94,101,103,98,96,105,98,96,90,101,107,92,100,100,92,93,87,104,95,106,74,107,99,93,97,100,98,103,82,97,104,85,94,98,90,92,105,95,101,97,90,98,106,84,96,94,100,62,104,103,114,103,92,102,100,89,95,106,109,100,105,91,104,94,104,99,87,87,96,107,96,78,99,103,109,95,86,98,94,108,91,97,98,114,99,99,100,97,102,123,103,101,92,120,78,97,103,107,99,96,102,96,103,102,99,103,99,99,108,104,97,99,97,89,105,103,102,105,90,108,110,104,93,95,102,104,92,91,99,94,91,94,96,111,93,96,104,91,90,96,102,102,102,97,90,107,118,116,91,90,93,100,101,103,70,106,94,84,91,115,89,99,94,100,103,112,77,94,94,110,102,94,102,86,99,106,89,95,89,93,92,90,117,105,93,102,109,109,96,102,98,101,104,99,104,110,100,71,88,96,93,97,107,97,91,97,99,92,90,93,96,97,99,107,102,110,95,91,88,92,110,102,89,102,102,96,100,94,84,120,97,86,101,105,99,95,98,99,96,102,99,98,107,114,95,82,99,103,96,94,96,100,110,92,87,107,87,97,120,103,95,98,101,109,104,109,86,99,103,94,106,99,99,95,89,104,69,90,100,105,94,92,104,100,97,88,100,65,116,100,107,98,88,87,93,101,98,80,106,104,91,95,103,111,106,85,94,125,106,93,96,83,98,95,110,100,82,106,85,78,95,107,113,91,103,84,108,97,106,93,96,97,94,93,91,81,102,87,102,88,101,96,105,95,104,103,94,84,90,94,102,99,92,89,105,91,90,84,107,93,96,81,98,81,87,82,100,91,98,63,95,108,99,103,87,92,103,94,95,98,89,100,102,108,89,77,100,92,94,94,98,93,87,83,95,95,107,90,95,96,94,87,90,101,98,108,102,96,98,103,81,102,83,93,106,99,97,106,96,103,102,97,87,107,90,98,89,102,94,98,109,96,91,107,106,99,112,101,104,118,102,99,107,98,94,116,84,95,89,87,98,111,100,100,95,95,103,102,97,93,94,98,92,90,103,102,102,97,95,109,95,104,104,99,109,129,95,93,102,90,115,87,86,93,99,101,96,100,105,98,112,96,78,99,104,101,105,106,99,107,88,104,84,95,104,101,95,89,107,102,98,92,108,98,99,80,106,95,97,95,99,98,102,100,101,103,89,94,100,109,80,90,102,101,93,88,104,113,95,98,103,100,124,100,102,91,105,107,101,99,111,105,103,101,98,105,103,101,105,102,98,95,106,102,97,90,99,102,90,107,100,93,109,100,131,104,91,88,102,87,79,88,88,109,103,96,95,94,89,103,103,103,92,86,97,93,100,100,91,106,91,114,94,101,84,91,96,121,99,111,96,91,90,94,93,114,91,95,106,101,87,85,100,83,109,92,102,102,89,87,82,93,108,94,96,96,96,89,95,100,101,80,79,94,103,92,90,107,91,98,86,97,106,94,92,106,116,103,106,98,101,69,97,98,92,84,102,99,93,93,101,102,94,93,98,91,98,107,102,92,97,106,99,94,93,102,103,102,111,96,95,98,98,95,101,96,97,104,94,116,100,95,96,94,96,85,94,78,85,72,91,106,94,108,100,92,103,95,101,95,102,105,98,103,93,114,104,98,95,112,83,103,98,92,100,97,101,100,101,105,109,109,96,96,104,103,104,111,101,98,97,96,102,93,101,87,100,87,72,99,85,97,99,102,99,96,93,96,103,95,80,107,99,99,106,98,104,88,102,98,94,110,104,86,78,95,104,104,79,105,99,98,107,88,56,117,98,96,86,106,101,101,98,100,97,102,88,92,88,98,91,79,93,98,102,85,93,86,108,101,99,99,97,101,106,107,101,100,102,93,98,106,86,98,91,106,100,96,93,91,103,96,88,85,94,87,97,98,107,97,108,91,108,104,97,104,98,81,102,91,71,101,98,89,92,99,106,112,105,93,93,112,98,87,100,95,100,100,103,108,108,107,77,88,87,104,97,93,122,100,100,105,98,89,81,107,96,93,94,96,93,107,89,84,103,103,82,76,95,100,102,85,107,95,111,96,104,92,98,111,100,80,98,102,99,102,93,98,109,91,97,100,95,95,100,95,88,102,89,104,110,101,89,115,95,104,92,68,108,106,95,107,104,95,104,101,103,91,85,101,80,97,98,109,96,96,98,117,82,98,96,90,120,105,96,95,97,102,95,106,102,100,90,93,97,90,101,106,93,73,99,92,105,103,92,95,109,105,102,105,101,106,105,99,102,97,114,101,98,109,117,111,91,100,96,90,100,88,97,102,100,99,95,95,101,95,103,95,105,94,90,96,97,105,92,113,110,103,84,106,90,94,107,107,106,93,99,87,92,83,112,98,97,98,92,101,97,101,110,92,91,91,91,95,95,71,107,96,102,88,95,99,104,84,91,107,92,111,109,82,102,107,101,101,99,108,106,108,92,104,97,95,103,102,85,93,117,92,95,98,95,102,99,106,101,96,114,88,99,93,84,100,88,93,92,102,83,102,98,104,108,89,101,105,106,96,97,87,93,94,111,111,108,99,97,84,109,99,101,108,101,103,98,96,93,99,111,92,92,105,91,96,93,97,110,106,92,98,90,88,106,109,72,104,97,93,92,94,96,91,94,95,97,92,115,100,107,97,116,89,98,96,114,102,117,104,97,96,104,101,92,107,91,93,107,95,104,104,104,98,113,106,99,107,113,107,124,94,91,103,106,127,93,109,91,115,97,94,90,110,95,106,101,89,90,88,95,104,83,101,98,96,100,107,103,87,102,103,92,89,96,100,85,92,110,91,98,96,98,86,91,103,97,83,95,109,107,98,105,88,91,103,87,95,95,86,98,95,99,100,92,100,114,103,95,106,104,103,99,105,90,99,100,102,93,95,97,109,69,90,109,94,107,93,95,104,103,100,96,92,81,94,97,106,100,105,107,113,103,103,112,89,105,93,95,102,107,106,105,99,98,96,102,126,100,91,91,99,104,105,106,101,101,95,99,99,99,86,94,98,84,97,100,96,102,86,102,110,99,107,103,95,82,100,108,91,103,103,91,91,99,85,91,92,91,95,95,88,97,99,105,97,98,105,101,92,84,90,113,105,108,96,91,88,98,100,114,93,93,95,98,99,91,98,112,101,100,97,94,91,95,91,92,86,95,94,100,109,94,97,101,99,109,98,72,85,96,94,111,87,94,98,102,93,123,86,99,98,92,106,108,95,106,133,102,98,77,96,95,102,103,96,102, +742.25867,99,90,99,106,91,103,98,109,86,81,95,100,90,117,95,86,101,91,91,104,85,115,78,121,93,90,111,92,106,88,110,91,108,91,101,104,102,83,93,88,102,97,88,104,97,95,91,105,94,102,96,92,101,96,93,98,103,98,99,92,98,103,102,100,101,90,92,91,106,92,91,113,94,100,108,98,110,92,105,81,92,105,92,91,81,89,91,105,104,90,99,104,97,103,97,99,114,101,87,93,105,100,71,90,103,87,102,98,93,97,90,95,101,96,100,87,96,100,100,113,104,103,95,95,96,94,97,94,105,102,112,104,93,105,101,107,113,75,94,106,109,103,104,100,92,88,106,89,95,110,108,102,95,89,103,76,95,98,96,96,102,95,90,84,102,104,98,91,89,96,102,101,99,90,105,104,100,82,94,96,98,98,107,109,92,90,101,106,105,112,97,104,98,96,89,90,96,95,96,102,91,96,97,97,96,98,101,93,94,96,95,100,100,110,97,124,101,108,95,100,93,97,99,113,127,115,109,105,93,114,98,94,96,114,104,97,101,97,87,95,91,107,108,99,94,93,97,105,95,100,100,88,104,95,102,105,87,108,93,100,83,104,104,100,102,91,104,95,92,83,104,96,91,97,108,88,99,100,97,103,103,100,93,99,97,96,101,120,100,95,91,66,85,95,79,99,90,95,99,95,80,98,105,106,76,108,103,101,104,101,89,106,99,90,95,91,101,107,95,97,95,93,98,97,96,95,90,95,98,106,104,105,105,91,86,101,135,95,93,98,93,107,110,105,94,104,102,96,94,99,100,98,102,78,101,102,81,108,99,94,102,92,113,93,80,117,113,102,95,106,116,91,106,101,96,99,94,108,99,104,101,102,87,101,92,99,102,97,100,91,106,99,91,112,103,98,97,90,92,105,105,105,98,100,92,97,102,95,93,90,90,92,95,103,94,88,107,95,91,98,93,59,87,95,98,81,99,104,107,102,97,91,101,104,94,84,106,95,110,94,103,94,86,100,86,95,83,83,109,90,95,96,88,98,88,95,94,101,101,105,86,95,101,113,108,104,105,96,95,95,84,105,97,101,80,91,101,116,85,91,93,100,112,101,107,96,93,94,96,101,91,100,98,115,93,107,91,92,101,96,100,100,95,98,90,84,89,106,95,94,90,91,96,102,81,97,105,108,97,94,98,101,91,93,97,101,102,93,93,101,96,97,100,92,103,94,98,98,96,97,78,91,93,87,110,93,94,98,101,109,115,97,69,91,89,105,96,91,105,90,95,100,88,106,107,110,87,97,97,88,92,101,91,98,101,94,100,94,95,101,97,97,100,101,96,101,91,103,97,98,104,91,102,93,92,94,89,99,100,98,90,94,92,92,97,94,111,84,105,107,104,90,95,93,98,100,99,103,95,94,90,108,109,94,96,102,91,94,104,91,92,96,96,91,104,86,93,91,100,105,97,100,101,103,63,97,90,102,101,105,92,95,93,91,107,99,98,101,109,95,105,105,109,99,89,101,95,85,99,101,96,98,97,103,89,100,101,100,102,84,96,128,107,94,96,104,96,101,97,106,81,94,81,101,96,105,76,98,102,89,93,103,83,90,101,109,96,108,98,106,97,102,97,92,90,105,92,92,105,90,97,103,105,102,96,96,101,98,73,99,101,94,86,98,89,100,104,59,95,100,96,118,113,91,104,100,107,94,105,81,103,97,92,93,112,94,97,97,101,93,93,102,91,86,97,88,96,94,91,91,104,98,100,102,105,109,102,86,106,90,95,106,99,112,102,95,84,97,106,105,93,101,94,95,104,93,97,99,99,114,92,96,121,99,95,110,90,93,91,92,108,109,95,96,97,99,103,92,87,87,101,91,94,104,99,109,98,101,90,94,102,91,108,97,82,98,91,110,109,96,102,95,86,87,89,82,99,96,74,90,105,100,98,106,96,104,101,96,98,93,97,105,96,98,93,93,98,97,94,100,100,90,105,86,89,97,99,94,103,92,86,106,96,61,86,104,91,86,78,97,101,102,90,94,94,94,57,100,105,100,78,96,91,110,100,96,91,97,101,109,96,88,91,111,93,106,96,95,108,96,91,104,99,109,107,94,105,72,100,105,111,95,110,100,115,97,102,109,101,92,85,103,105,95,92,100,100,103,93,98,98,88,112,101,107,98,92,98,87,106,101,104,100,98,117,95,92,98,96,89,96,87,105,94,89,88,103,100,97,82,105,94,100,84,104,103,83,93,97,83,92,94,71,108,90,94,95,104,90,102,94,95,93,95,95,108,86,91,87,99,89,75,108,96,92,90,101,98,92,100,91,92,96,84,93,96,95,88,99,107,109,91,109,75,94,106,98,96,86,96,93,91,75,83,104,100,105,101,104,102,99,85,91,104,103,96,95,82,95,104,90,91,100,95,110,101,102,96,100,96,87,99,101,112,95,116,89,97,108,99,95,94,66,91,98,111,95,85,102,115,100,95,79,93,92,92,97,95,97,99,90,102,98,93,94,94,95,97,98,100,93,114,100,107,92,98,97,102,102,124,91,101,105,96,103,106,112,102,100,93,111,103,87,100,92,89,93,103,92,98,97,92,95,93,99,89,91,100,98,94,95,104,95,96,95,94,93,89,100,95,98,88,96,106,91,106,97,96,94,98,98,89,99,97,93,94,108,87,95,101,97,92,101,99,98,103,96,94,97,93,103,90,87,83,98,105,105,83,108,87,94,98,96,91,117,75,121,99,98,100,101,101,92,104,98,109,100,91,99,98,100,101,105,99,84,107,99,101,88,99,88,118,99,101,100,111,110,98,109,96,102,83,103,97,93,109,96,100,102,112,98,100,100,105,96,98,103,112,94,100,100,98,112,108,117,101,108,85,101,96,93,95,87,95,86,102,96,102,93,106,95,102,93,102,94,105,93,87,92,101,74,88,92,93,102,94,99,92,96,104,103,99,91,104,92,95,114,88,84,92,85,99,94,93,102,94,94,107,114,86,105,98,95,88,100,98,111,100,91,97,104,100,90,112,107,104,90,96,112,89,98,99,103,103,98,109,98,104,102,92,96,98,105,99,89,100,101,95,81,87,96,107,78,101,91,95,99,97,93,84,113,101,95,109,113,75,106,125,94,98,87,92,97,90,102,101,99,102,104,105,112,93,98,96,96,100,109,99,107,104,113,96,84,111,91,102,95,92,101,99,88,98,87,102,86,90,88,91,108,102,102,96,94,84,91,96,90,95,87,112,99,107,105,100,88,95,109,91,94,105,98,116,107,89,104,98,91,91,102,92,99,84,112,105,93,102,111,100,102,91,94,100,108,99,93,96,71,99,95,103,98,107,96,105,102,90,98,103,101,101,91,97,78,109,104,99,98,98,94,105,111,90,101,92,105,83,103,103,100,94,92,104,91,103,91,98,99,99,88,87,87,103,100,90,96,102,99,108,102,94,103,86,93,89,92,98,105,97,91,92,97,97,101,103,99,89,90,100,110,82,99,107,94,100,100,93,99,101,98,90,102,91,106,100,92,87,91,99,100,96,98,92,82,100,79,85,92,103,82,96,91,108,94,102,98,97,99,94,87,95,92,108,100,101,101,104,99,90,103,99,105,87,94,97,88,95,93,95,103,90,99,97,75,91,94,102,102,98,86,86,113,111,92,112,97,83,101,85,100,95,99,102,94,101,105,92,97,98,109,104,92,97,98,101,102,95,114,99,87,108,89,101,90,94,97,87,114,91,87,100,87,96,87,94,96,98,95,91,93,109,97,98,102,96,94,103,105,87,95,95,84,104,110,94,90,93,95,117,101,98,98,95,98,92,83,98,92,99,83,104,89,95,105,85,119,94,111,91,100,92,89,94,85,101,98,98,102,80,90,84,65,82,102,98,101,89,107,105,84,105,97,88,100,99,94,93,96,85,75,98,108,99,96,97,94,96,102,103,95,97,89,100,92,91,94,90,101,115,104,99,93,98,98,98,93,80,87,101,98,97,99,92,99,98,100,92,105,109,100,106,102,90,95,100,95,98,98,103,92,106,104,88,97,97,90,82,89,107,104,102,104,104,93,92,94,99,92,103,100,115,112,107,83,94,100,116,82,98,105,69,104,96,94,104,99,96,90,101,101,101,89,98,95,102,109,105,99,92,102,90,92,87,88,92,103,102,108,104,95,98,101,98,102,112,109,93,87,87,94,109,83,99,100,95,87,105,103,88,104,95,97,76,97,88,104,98,87,99,98,95,81,111,101,90,81,93,97,108,90,78,101,91,105,94,103,110,96,96,96,93,100,107,94,97,91,82,97,87,59,104,99,102,91,93,98,101,80,95,85,93,100,96,89,88,94,97,98,94,95,88,79,90,100,102,92,112,85,95,95,98,98,102,94,91,104,92,103,102,104,106,94,87,96,90,87,108,107,81,92,101,101,104,98,98,86,86,90,96,103,98,100,105,101,99,107,102,97,93,91,105,98,113,91,94,102,103,95,105,90,106,105,96,97,108,100,98,98,93,109,87,92,104,92,94,100,99,101,106,103,105,98,88,96,90,112,103,98,94,109,104,106,103,99,94,98,106,105,97,97,117,103,88,115,122,97,108,106,99,101,93,97,104,111,107,80,100,104,98,98,102,75,102,101,96,84,88,120,104,97,109,94,105,97,97,90,93,87,107,101,95,101,102,103,100,101,95,102,101,112,93,98,112,95,99,96,97,98,96,90,103,84,70,92,102,96,88,100,92,88,92,89,93,100,99,98,89,92,107,83,102,91,86,100,101,104,92,102,93,98,99,109,91,113,79,109,108,90,97,109,98,98,87,97,97,99,91,104,105,76,105,105,103,106,105,87,113,95,102,67,92,102,110,91,93,93,97,101,96,99,115,92,90,96,95,90,106,87,106,109,97, +742.40009,90,105,93,93,86,83,113,103,103,100,99,77,95,94,98,78,87,92,101,99,96,98,94,87,89,109,104,99,108,89,102,99,102,97,95,102,102,94,109,101,97,92,106,84,97,99,90,92,102,99,100,98,95,104,108,101,100,99,108,81,109,107,91,102,111,101,101,88,94,104,116,98,90,94,100,102,87,95,89,102,92,93,85,78,108,96,101,99,114,106,90,108,104,100,101,99,101,88,105,105,89,103,104,89,103,99,96,101,104,94,93,96,77,96,101,95,92,109,112,86,103,99,86,105,103,95,117,95,105,105,95,93,100,113,97,86,97,100,99,92,106,110,104,95,90,104,103,102,93,91,96,93,95,98,91,97,93,88,87,104,96,113,104,97,107,114,96,95,82,105,96,93,105,105,106,97,97,92,110,106,91,97,88,107,92,88,104,96,105,94,99,93,91,97,92,117,95,82,100,87,93,99,97,92,86,110,90,108,112,91,97,93,119,103,96,91,103,91,102,103,91,67,97,104,103,91,95,102,92,92,97,105,94,92,89,93,90,104,107,91,94,99,97,96,104,103,84,98,104,100,100,90,90,99,107,95,86,84,86,90,97,95,105,104,95,105,103,103,90,83,98,113,93,102,98,92,96,103,91,104,110,95,103,98,102,90,104,68,102,96,94,103,95,93,109,99,88,106,108,106,100,101,104,106,102,105,98,105,88,105,95,69,95,104,105,91,103,96,110,93,96,92,100,113,105,101,93,100,97,102,100,102,98,107,102,103,85,105,116,88,84,98,88,113,92,104,94,113,105,89,102,101,102,99,106,97,94,106,98,95,102,98,106,109,93,93,91,107,106,101,110,90,106,88,98,96,98,90,104,99,90,101,98,108,103,100,92,126,95,83,117,97,92,109,108,99,100,94,102,67,110,95,104,92,105,96,82,98,108,91,108,97,96,104,96,101,95,92,98,94,109,100,93,88,100,96,109,86,78,89,103,103,96,94,98,64,84,101,100,85,100,91,96,101,93,103,87,102,109,104,94,101,96,120,102,97,100,113,93,96,97,88,102,98,89,98,103,91,105,93,94,85,101,101,94,95,100,95,85,92,91,105,108,90,103,95,104,108,108,95,105,104,102,96,82,103,87,109,95,113,94,103,117,105,92,103,90,100,102,101,101,91,92,101,89,92,102,89,88,93,95,101,107,97,106,98,109,94,85,100,101,100,91,93,91,100,105,92,82,92,113,61,103,91,95,108,104,96,100,91,86,109,101,89,91,99,95,92,95,93,97,110,94,96,87,88,85,101,100,96,89,97,99,99,89,102,97,97,96,88,104,99,106,103,106,99,96,96,98,99,87,111,96,99,100,106,105,109,104,88,96,102,97,90,106,98,107,98,103,96,103,106,95,108,91,96,95,105,101,104,77,103,102,100,99,91,104,99,104,104,95,95,88,100,91,98,103,90,94,95,97,100,96,106,90,102,106,93,107,102,96,95,95,96,104,95,103,99,125,95,102,72,92,98,100,94,109,94,87,89,100,99,95,95,93,86,88,97,93,94,99,100,106,82,85,91,92,103,108,104,92,93,98,102,104,99,93,94,108,121,105,92,98,109,86,101,106,113,101,93,92,98,89,90,104,98,101,92,96,100,95,92,98,98,112,91,87,96,91,79,102,95,107,97,93,103,107,97,96,102,104,104,92,104,104,101,105,127,101,100,92,92,101,96,90,109,111,71,103,93,96,101,88,92,97,97,98,112,99,98,96,93,92,92,95,92,102,98,97,104,87,113,104,96,79,94,99,105,98,109,82,94,96,92,94,96,93,96,103,100,101,98,102,96,105,100,94,104,93,98,89,96,88,106,97,97,102,100,113,105,97,96,103,95,103,107,91,109,104,95,106,100,92,93,103,100,110,97,88,97,100,101,95,108,104,97,92,104,96,93,101,87,100,95,93,96,107,100,90,95,106,94,103,96,106,97,88,97,102,88,107,99,100,96,90,96,97,96,104,100,90,78,100,95,101,107,102,95,94,97,101,98,101,100,89,98,97,97,104,115,94,101,103,87,103,104,100,96,102,106,102,99,98,99,94,91,86,88,97,86,107,101,93,95,82,72,96,112,88,105,112,97,90,91,95,115,97,95,103,95,106,109,106,103,103,95,99,111,107,92,100,82,97,97,101,94,82,104,98,94,95,92,99,104,105,86,83,96,106,110,93,93,96,104,94,95,83,94,89,105,97,102,87,102,115,91,93,100,82,77,105,101,105,93,95,90,98,101,97,95,99,99,118,90,98,97,101,97,83,89,83,101,99,101,89,92,101,97,97,98,97,96,108,83,90,107,97,109,90,106,99,96,88,103,107,99,102,90,104,97,81,101,94,98,94,101,102,94,97,101,80,94,95,98,111,92,91,99,109,94,92,98,99,106,88,89,105,104,96,95,97,92,87,99,124,90,95,99,95,95,88,100,106,108,91,96,93,96,104,92,108,103,88,102,88,104,83,94,109,96,107,82,112,112,83,95,106,95,109,101,95,93,85,100,101,97,104,103,95,76,97,91,88,105,110,98,95,95,109,95,101,91,89,91,65,97,109,94,84,99,107,92,87,98,92,94,93,83,87,86,94,118,106,91,119,89,103,98,94,117,90,76,103,81,93,94,109,84,113,96,107,92,99,98,90,97,96,91,90,99,91,87,93,92,97,87,80,87,90,103,104,110,96,122,89,106,82,80,91,122,96,97,101,89,116,102,103,91,98,97,91,93,98,104,74,98,95,93,89,89,113,102,99,96,91,94,90,92,95,84,104,94,106,99,119,93,105,104,106,73,96,109,108,96,120,87,60,99,103,91,71,96,116,97,93,95,96,99,103,103,103,85,99,96,98,98,95,92,112,100,100,86,97,104,111,86,103,95,86,97,95,106,91,85,96,100,88,92,94,93,64,98,105,97,98,100,97,96,89,103,95,97,109,101,85,92,105,95,107,90,94,115,96,96,103,96,91,112,97,99,117,100,102,108,95,85,99,88,98,109,101,100,101,109,97,100,89,91,102,99,92,88,70,101,106,101,101,103,90,81,90,96,99,106,90,94,97,100,100,90,98,101,95,96,105,94,100,101,101,99,90,94,102,101,103,105,95,105,93,98,101,92,92,99,103,80,102,98,88,89,93,91,99,92,95,90,110,95,94,97,100,98,104,97,94,71,94,95,101,60,104,86,101,106,104,88,95,112,98,88,108,96,103,94,90,89,94,91,105,88,92,94,103,95,99,92,103,112,82,97,99,100,98,118,92,101,101,93,95,99,93,96,101,104,92,92,106,105,95,102,86,91,95,100,90,105,100,90,103,116,98,101,99,102,99,96,105,89,95,104,127,105,96,103,98,95,96,87,88,85,104,100,92,97,99,96,84,96,98,94,98,102,107,89,90,93,91,96,96,98,91,102,94,83,97,95,103,92,111,100,87,96,112,96,99,110,95,97,86,88,104,87,86,88,97,107,95,98,97,91,107,106,92,97,102,98,93,114,90,94,108,80,84,92,102,96,94,95,105,72,83,98,100,96,79,103,102,91,87,91,114,76,84,95,79,102,87,88,102,95,87,91,107,93,95,95,77,94,93,95,96,88,96,99,86,80,91,95,103,95,96,99,104,104,90,101,101,111,104,100,93,99,90,108,103,92,112,109,111,93,87,95,93,91,106,102,72,106,95,88,94,96,92,110,96,89,103,96,103,109,98,91,83,91,94,98,111,97,78,75,101,96,100,96,113,106,99,80,98,106,96,88,105,99,95,101,114,104,93,102,96,104,94,99,112,103,100,95,91,98,103,97,97,87,89,102,116,80,88,103,105,111,107,140,106,103,104,98,91,98,109,100,89,101,90,88,97,105,98,93,96,83,102,83,88,96,101,92,92,100,113,98,102,94,97,92,75,90,95,107,94,112,100,93,90,108,109,118,99,84,61,92,104,99,104,91,95,99,86,97,111,99,101,78,98,115,102,95,87,107,105,95,92,91,102,91,95,94,99,95,95,107,102,111,93,99,116,92,89,100,91,96,102,92,98,101,101,94,114,101,108,94,93,98,99,96,104,88,83,104,99,125,87,108,91,117,98,105,99,103,99,96,99,110,105,89,103,98,103,96,96,90,89,96,109,87,95,76,95,91,94,83,92,90,92,97,95,107,88,97,99,86,106,99,107,95,90,92,115,99,108,105,93,95,93,91,93,100,96,94,92,82,95,105,88,124,89,87,97,89,103,95,112,90,106,110,103,101,95,102,102,104,99,102,89,115,106,75,69,113,105,119,97,83,96,101,85,91,99,98,110,100,107,102,79,101,108,91,87,103,79,95,96,95,92,95,109,108,91,96,91,95,98,89,89,107,99,100,91,108,98,97,98,117,98,97,97,103,102,98,95,83,90,95,94,109,99,105,104,97,118,87,91,91,90,94,98,86,102,93,103,94,95,104,112,90,86,98,89,95,98,90,103,105,100,92,88,110,91,84,99,92,106,97,104,105,104,90,80,88,92,100,95,90,97,95,98,108,91,80,90,92,73,92,91,88,87,93,98,91,119,97,110,99,90,100,88,110,103,101,104,96,95,101,101,110,99,94,100,99,86,102,91,99,87,108,92,101,98,100,106,106,95,100,99,88,119,84,102,112,96,94,100,85,94,101,93,93,94,97,91,99,89,96,97,93,95,102,111,98,105,106,109,91,77,103,99,88,98,92,107,125,97,111,97,103,91,101,104,94,96,103,95,98,108,90,107,96,99,91,87,94,98,96,103,102,101,109,108,90,95,100,98,91,106,84,86,100,91,97,106,100,97,93,108,95,97,93,96,92,95,98,101,105,82,111,101,96,102,92,101,87,101,84,98,84,99,98,117,100,93,91,90,100,101,100,98,114,91,57, +742.5415,110,101,98,87,92,116,104,98,111,97,105,84,122,100,99,104,91,95,94,70,102,104,98,120,97,111,117,106,95,86,97,102,109,117,104,102,99,89,93,79,88,119,89,103,95,65,116,125,96,99,108,113,99,93,101,99,91,97,97,103,100,72,110,86,95,108,91,106,103,104,94,105,93,92,99,114,86,105,101,105,118,89,99,94,83,86,90,92,109,95,85,96,88,103,102,109,88,103,102,110,97,95,96,93,103,100,84,110,99,87,106,105,111,105,90,107,88,112,99,98,96,91,101,94,101,98,100,91,94,86,102,98,104,100,96,98,90,87,101,98,99,91,91,106,93,95,110,101,89,118,108,90,114,97,93,112,96,101,109,113,117,94,107,91,106,106,99,102,109,102,95,100,87,93,99,91,100,91,94,100,90,101,101,105,100,93,89,106,94,94,91,98,84,101,90,94,93,96,96,94,92,93,105,97,100,103,101,102,97,85,87,96,103,94,101,99,93,100,94,98,101,98,93,92,99,95,90,91,91,104,89,101,102,93,109,107,100,103,105,111,90,92,101,111,98,86,91,87,95,100,105,101,92,97,101,108,102,103,112,81,79,101,84,99,94,96,97,79,110,97,91,86,91,102,105,99,98,90,105,78,96,102,97,103,102,93,94,103,105,90,94,97,108,109,108,96,91,95,107,88,89,100,87,97,83,96,110,98,104,101,81,98,102,103,93,95,95,107,104,115,99,93,95,100,106,97,101,91,101,100,104,98,94,106,82,104,108,99,101,96,93,92,99,100,96,89,110,112,108,92,95,93,106,99,89,102,99,98,90,105,94,110,90,101,84,103,102,100,111,91,100,106,94,95,100,88,103,101,67,97,118,90,92,93,111,96,82,107,95,101,103,86,109,99,93,117,101,108,90,94,85,86,93,98,96,100,89,95,67,104,85,81,105,104,88,102,111,96,104,104,98,85,98,108,95,91,93,91,101,97,96,89,85,98,95,109,91,97,83,103,101,94,109,97,92,96,91,105,98,109,101,105,89,101,89,126,83,97,104,99,104,99,108,103,103,104,97,95,95,98,106,109,97,101,97,95,106,99,97,98,104,103,102,114,102,106,93,109,85,101,88,95,91,113,90,85,79,94,99,98,96,88,103,92,108,113,90,100,89,101,97,88,88,88,96,96,100,95,91,87,89,102,93,87,90,99,99,101,88,98,106,94,97,93,91,103,95,94,90,104,99,113,99,110,98,101,92,82,103,93,61,98,91,93,96,101,95,97,123,94,100,100,105,103,99,107,89,118,95,112,98,83,85,101,98,108,105,88,83,97,99,93,106,87,97,83,114,101,117,80,109,104,103,90,104,105,75,109,96,79,78,90,93,109,94,101,90,95,94,95,85,91,92,93,103,89,101,95,83,103,102,105,102,94,97,111,93,126,121,94,93,91,74,115,105,91,100,103,88,97,97,90,90,88,111,86,100,92,102,108,93,105,108,107,97,91,97,110,100,90,78,98,109,103,92,95,96,103,105,90,106,100,98,102,100,73,118,98,98,90,86,94,88,96,95,98,99,92,87,109,109,90,101,106,91,98,93,91,94,91,102,93,95,98,95,104,94,96,75,101,101,101,104,96,99,87,99,87,98,92,100,84,97,97,103,95,97,84,100,97,92,99,105,95,91,92,90,85,101,95,101,105,94,95,92,91,92,102,86,100,104,93,99,84,98,90,92,95,106,77,86,91,99,105,86,115,95,101,96,93,96,100,102,97,100,91,96,82,93,98,100,112,113,91,106,104,101,97,93,92,95,95,92,105,100,99,73,100,100,114,87,102,98,107,102,91,98,106,105,98,108,102,101,95,115,93,101,108,99,97,98,109,98,121,95,99,99,90,89,101,93,101,103,106,103,110,102,93,99,95,89,83,93,95,97,111,81,95,89,95,94,100,87,95,103,106,79,77,100,106,99,91,99,95,90,93,91,100,96,94,90,92,107,108,101,104,108,80,106,95,96,90,96,96,94,90,97,105,90,102,101,97,106,112,97,92,107,102,98,91,103,109,97,97,105,105,71,101,99,91,118,86,98,95,99,92,97,93,96,117,95,93,95,103,96,102,101,91,95,118,95,90,92,83,86,99,98,100,110,96,99,101,101,89,110,92,110,104,88,97,102,100,93,95,108,100,104,95,87,95,104,97,84,89,93,94,94,97,106,106,91,113,98,108,104,92,105,99,93,103,96,94,91,105,90,105,89,101,91,95,98,99,109,97,90,98,86,104,108,99,99,102,96,94,102,93,94,103,89,83,96,116,105,102,96,89,94,91,95,103,102,96,95,86,90,92,99,101,92,101,92,106,101,99,81,95,91,102,94,95,91,104,100,80,101,87,118,84,95,101,87,97,89,100,86,105,87,89,98,99,97,97,93,94,94,97,95,102,101,74,89,93,87,95,85,92,89,98,88,83,107,73,83,95,107,98,99,101,112,117,91,92,96,98,100,99,100,79,102,101,96,91,98,97,96,94,84,100,91,101,84,100,92,100,104,93,89,88,106,96,98,93,99,97,92,98,108,92,104,88,96,105,87,89,92,89,97,110,94,84,88,87,97,105,97,84,101,94,100,92,99,102,94,87,83,90,104,113,91,91,105,83,98,82,94,95,85,84,100,99,93,90,98,97,91,94,107,101,102,96,95,96,99,107,85,95,98,86,106,105,88,113,91,88,100,85,100,102,102,98,74,99,100,91,112,106,99,96,99,88,99,96,102,91,103,104,96,104,97,99,109,95,98,99,104,99,102,89,92,100,96,102,96,88,89,113,89,105,100,100,97,98,93,92,85,89,91,98,92,99,98,95,93,108,96,109,84,96,88,92,96,87,103,109,94,87,107,102,96,104,100,100,91,93,99,99,93,116,85,94,113,99,107,85,106,107,89,87,98,93,103,94,100,104,87,94,97,74,107,102,100,106,104,106,79,97,94,101,103,101,108,102,104,92,101,95,104,89,95,94,100,97,103,94,94,90,101,95,89,87,98,91,95,108,94,106,98,99,107,101,85,102,106,106,101,95,99,100,87,101,107,80,99,95,92,101,110,92,91,97,91,108,102,91,101,111,105,99,102,97,91,93,94,95,89,89,98,101,91,84,88,94,95,105,99,100,100,104,94,97,122,86,84,94,87,112,94,98,97,89,96,92,103,91,102,107,101,93,91,95,99,104,94,111,101,88,92,103,95,90,96,91,105,85,93,81,87,88,96,94,87,97,103,96,96,95,105,98,111,92,92,98,96,107,97,83,93,97,90,107,89,106,104,105,99,116,94,101,83,100,109,96,99,87,82,101,94,89,100,95,88,101,101,91,98,90,84,99,88,101,103,93,72,101,98,88,95,112,99,94,99,95,106,81,96,100,87,97,92,89,95,108,82,94,101,97,96,100,107,100,87,92,87,96,93,91,96,96,102,101,91,99,92,97,88,100,100,105,95,94,90,109,105,97,91,105,92,94,89,88,95,93,93,106,85,91,96,95,87,74,101,98,96,91,125,94,105,100,89,92,113,103,89,104,98,101,98,102,90,108,102,90,100,88,94,92,94,94,86,88,105,95,100,95,82,109,95,98,95,96,90,99,95,90,123,88,77,101,74,94,88,89,112,101,94,89,99,107,95,92,85,103,99,91,87,101,86,99,94,89,100,100,93,96,91,105,99,92,87,92,105,106,108,93,101,131,99,89,92,89,92,101,105,91,98,95,105,99,93,86,95,97,98,86,96,99,96,96,98,108,99,89,93,84,94,100,82,75,82,100,90,88,93,94,96,102,95,94,100,103,95,90,97,95,101,103,100,99,99,97,101,98,101,117,81,94,100,108,86,91,106,112,97,97,102,92,117,91,102,96,87,94,94,99,100,97,93,102,90,87,98,92,96,96,98,84,115,95,92,98,98,95,95,112,88,109,101,114,88,92,98,92,87,99,95,88,104,100,89,93,92,101,101,95,96,94,96,73,92,105,84,124,91,93,98,98,90,93,88,94,105,109,98,86,96,105,110,91,96,95,109,109,132,101,87,104,95,93,101,98,102,95,101,100,94,99,81,92,95,63,107,104,87,96,95,105,104,106,96,95,94,101,100,104,82,111,107,96,90,96,93,94,94,101,101,104,98,97,100,91,92,95,97,92,100,100,94,105,93,115,92,94,98,100,104,106,97,115,98,92,109,87,103,106,101,115,88,109,119,117,108,101,95,84,98,92,111,100,86,83,94,101,108,102,100,101,90,91,82,87,88,99,109,84,108,99,106,97,84,94,97,91,87,117,97,98,96,120,96,116,100,91,106,93,97,89,100,92,95,105,90,91,93,105,98,89,87,101,90,107,98,72,96,108,84,110,107,102,101,93,106,91,98,105,88,128,102,105,98,98,91,83,90,103,104,116,98,99,101,95,117,96,97,97,91,94,95,112,90,112,99,97,106,87,95,101,93,71,100,104,84,88,98,129,96,94,99,104,99,106,98,88,97,92,109,105,106,92,101,103,90,97,97,74,79,103,109,98,102,96,92,103,95,91,102,87,91,85,79,92,90,105,104,93,104,73,110,101,97,106,91,93,94,108,93,97,107,102,82,105,98,92,101,102,94,96,99,104,111,83,103,97,104,93,109,112,92,107,98,104,81,98,104,100,104,100,108,94,94,104,108,105,95,93,93,96,105,94,85,90,107,97,95,84,109,98,115,90,87,90,93,99,102,88,97,114,80,75,94,84,89,101,104,97,112,94,97,104,102,94,83,84,98,102,108,103,108,99,98,96,97,88,106,86,97,113,106,114,104,97,102,99,102,104,104,92,97,91,102,97,99,104,93,96,106,105,88,94,94,90,119,88,85,92,98,94,97,97,108,87,102,111,113,93,122,103,97,101,85,95, +742.68292,99,123,89,97,98,95,97,100,92,102,80,97,87,94,82,97,95,110,112,115,103,101,94,124,103,100,92,95,106,99,102,87,99,96,115,74,97,101,101,100,105,86,105,98,91,92,102,86,94,105,101,103,81,110,103,76,78,89,98,100,92,107,91,78,92,96,103,102,106,95,91,106,101,106,90,99,89,97,136,103,107,87,96,94,103,101,109,108,109,98,91,95,89,91,96,89,69,98,109,88,99,92,103,88,92,96,79,95,94,102,99,91,91,94,92,101,91,93,106,94,96,97,93,100,104,111,116,104,104,96,91,97,83,107,93,94,95,110,101,98,91,109,102,96,107,90,112,89,88,95,101,104,107,93,95,100,87,89,101,110,91,85,106,107,103,98,98,99,93,96,106,92,100,70,99,99,97,94,90,102,93,107,87,91,93,106,98,91,97,90,97,97,103,103,97,105,84,98,95,99,97,101,96,93,86,101,97,101,86,100,100,100,100,96,74,100,92,91,98,92,97,95,84,93,93,92,103,103,94,102,107,107,98,102,84,96,98,98,109,88,90,104,100,105,89,80,94,82,94,90,110,105,90,88,113,104,82,98,79,109,103,92,100,98,87,77,84,93,86,89,91,100,92,86,97,98,91,92,100,101,99,92,101,89,94,91,95,102,101,103,94,101,100,99,84,103,106,83,95,86,90,97,94,91,86,101,110,105,97,100,96,96,92,118,80,88,92,98,103,85,82,90,99,97,97,92,88,94,99,78,95,94,94,95,90,111,96,99,98,109,94,98,90,104,105,99,90,105,105,104,97,97,75,107,97,100,93,102,106,103,98,110,94,87,100,100,91,116,90,93,74,90,107,98,99,97,109,91,105,96,102,97,98,86,80,79,81,99,96,97,105,96,94,89,91,100,94,86,98,91,98,123,90,93,100,87,89,111,95,91,91,76,94,95,91,91,100,82,106,90,76,98,89,85,98,98,95,102,112,103,96,96,82,90,95,112,98,97,93,124,102,92,95,96,104,107,93,99,100,86,101,95,106,106,89,100,98,92,96,87,111,110,95,107,95,102,109,101,95,80,95,104,88,96,107,88,83,104,93,101,138,100,109,90,92,84,95,91,103,85,100,90,79,94,82,101,81,101,85,88,102,97,77,89,105,105,86,97,87,107,103,88,94,97,92,99,98,95,85,85,97,100,107,96,98,105,104,109,95,97,97,105,115,89,107,98,88,85,102,109,92,98,96,104,100,90,93,101,101,77,93,93,100,100,92,93,120,99,124,100,96,86,97,86,91,106,97,101,106,98,100,88,100,109,108,79,93,97,98,106,82,89,105,85,98,93,117,94,98,79,96,101,90,81,105,103,108,104,110,90,103,102,87,79,102,89,77,91,97,106,104,105,108,98,97,85,104,104,96,102,104,97,90,95,108,103,90,124,101,101,96,99,94,95,84,105,99,91,94,80,80,87,105,98,95,97,91,87,108,102,93,92,95,102,86,101,96,93,100,95,101,97,97,107,94,91,108,93,104,97,107,100,96,112,98,99,110,99,107,90,89,106,106,93,99,83,86,101,94,102,87,95,97,102,91,91,92,101,109,100,93,89,109,117,91,96,90,96,93,87,91,90,80,102,82,91,79,90,95,93,96,67,113,107,95,91,97,98,88,100,91,100,104,91,100,92,100,85,106,95,98,102,101,94,102,80,100,100,96,99,99,102,69,91,105,101,103,103,95,104,97,100,106,101,112,95,91,98,96,90,99,105,118,102,96,105,95,86,97,99,92,100,95,91,92,102,97,97,93,92,95,95,113,102,89,97,84,87,103,98,99,103,82,94,81,94,94,98,99,80,100,101,81,91,99,96,93,91,105,101,60,101,92,108,112,96,92,116,86,97,95,82,98,92,92,97,95,88,97,92,90,111,96,82,74,85,98,90,89,96,96,92,86,109,91,98,97,106,102,92,89,99,89,94,91,115,93,105,115,94,112,96,98,105,99,91,100,95,102,93,97,98,93,91,97,101,102,97,86,88,73,105,92,89,108,90,69,103,91,105,87,95,104,91,77,98,89,86,81,91,98,104,97,108,109,92,86,89,88,99,89,92,92,88,90,93,94,99,98,88,98,97,109,84,89,96,95,99,88,101,105,100,93,89,100,104,103,93,104,98,109,94,93,92,96,81,90,90,99,95,92,98,91,102,101,98,100,90,90,122,97,99,95,93,86,99,107,89,79,81,96,98,100,105,100,100,68,94,93,100,97,101,91,108,96,78,62,108,93,93,109,103,86,86,98,103,104,84,79,96,99,97,101,104,92,98,97,83,97,113,105,99,106,91,102,81,91,80,98,101,100,93,90,96,92,101,98,102,103,91,91,107,90,98,91,100,94,90,92,81,98,99,108,98,97,94,93,93,113,89,90,95,88,94,85,84,91,99,89,108,96,102,104,96,95,94,97,99,97,100,92,83,98,84,90,90,68,93,102,93,103,92,96,97,104,102,79,91,94,93,90,103,91,95,92,100,109,99,93,100,96,96,95,90,101,88,87,93,91,112,81,95,112,85,111,94,84,104,94,96,88,107,99,98,111,100,89,102,96,89,93,90,87,109,93,101,95,87,98,90,99,93,90,95,99,91,94,93,97,108,108,89,81,90,103,95,94,96,101,101,86,82,96,95,89,96,87,96,96,99,87,98,89,106,89,103,88,107,74,96,114,100,102,89,99,98,92,88,98,92,96,88,96,92,100,102,96,103,97,95,100,100,98,105,87,89,93,92,94,91,113,80,104,94,92,100,90,104,104,97,83,91,91,92,105,98,107,99,103,98,102,90,106,85,100,91,94,100,96,100,86,86,96,88,80,96,121,91,85,100,93,63,104,102,105,95,115,98,99,102,99,96,85,98,94,99,101,99,108,92,89,95,103,109,94,98,102,86,117,99,87,98,97,85,101,105,101,98,94,108,100,95,93,99,98,90,109,96,86,85,91,97,94,68,100,94,98,96,99,115,89,91,90,91,96,94,107,98,87,92,107,98,93,101,96,98,83,92,99,92,100,102,111,100,92,97,96,97,108,114,100,98,93,109,89,99,102,91,93,96,98,107,96,109,100,98,91,88,93,97,112,85,106,100,99,97,99,104,84,90,96,94,93,105,119,100,98,91,82,87,91,103,88,90,107,100,91,88,109,85,101,97,95,93,113,110,102,100,100,99,83,88,100,90,98,89,80,95,91,113,99,102,104,93,89,66,91,99,105,105,94,89,88,100,100,78,103,106,91,87,104,99,99,93,98,100,93,99,111,88,88,90,100,98,98,94,94,90,95,83,135,95,99,98,98,92,91,93,93,97,86,105,93,87,88,94,105,102,100,88,87,88,101,93,105,88,98,98,119,91,99,90,100,92,92,98,101,90,85,97,94,91,102,107,105,96,96,98,94,104,95,92,91,84,104,109,108,100,97,90,103,102,102,98,96,88,107,103,93,85,99,92,108,86,97,119,96,98,104,92,106,105,105,107,106,98,115,104,94,93,102,93,112,105,95,133,101,107,104,111,95,105,98,98,105,105,94,103,83,95,81,93,96,107,90,94,102,100,91,82,73,91,96,96,89,92,94,85,102,93,90,106,105,85,92,105,98,96,104,95,102,93,102,99,94,97,111,93,75,103,92,93,96,99,90,105,91,96,87,99,91,93,99,92,106,102,107,98,107,98,109,106,90,106,94,102,104,109,97,93,97,92,99,96,90,93,94,103,103,100,103,101,91,87,102,94,84,96,117,102,106,94,112,107,104,101,100,87,99,94,98,98,89,100,96,73,102,103,79,101,104,96,96,103,98,121,91,100,100,101,85,93,94,92,94,108,95,72,115,87,97,110,84,92,90,101,87,100,93,92,98,91,94,96,92,94,97,97,97,99,93,94,102,106,95,94,98,89,103,96,94,85,106,100,94,99,109,100,115,100,113,97,94,96,94,92,108,100,100,99,93,90,100,88,109,101,94,104,88,113,101,100,105,100,83,88,88,104,96,100,97,81,95,93,95,96,92,97,102,94,99,89,102,97,87,96,100,93,106,96,84,97,110,90,92,94,102,101,60,107,100,98,91,107,107,100,99,100,89,101,97,106,96,85,100,99,100,90,93,98,102,101,92,112,97,102,103,93,104,95,94,94,90,89,101,123,108,96,82,96,134,98,99,108,73,103,101,105,104,88,103,89,102,104,94,108,95,98,91,102,112,92,107,97,92,105,95,103,103,100,89,97,100,98,98,96,111,104,93,95,94,98,107,105,96,101,102,87,83,106,94,99,96,96,109,103,99,80,81,105,91,97,77,90,95,97,95,96,87,101,105,103,102,103,108,106,104,90,96,91,92,99,98,108,103,96,107,98,95,92,105,96,98,105,94,107,95,108,98,94,88,90,87,84,86,96,84,98,91,97,115,85,106,79,98,102,97,100,86,100,96,103,97,98,81,85,97,93,103,107,105,93,99,93,101,91,93,107,100,105,93,97,102,91,102,97,91,113,101,94,89,90,91,89,92,111,98,100,99,100,101,108,113,98,111,109,83,103,82,95,102,116,98,101,94,91,86,103,93,88,98,90,112,97,99,88,103,97,99,84,108,92,91,103,94,91,98,115,98,94,80,99,100,83,104,90,101,108,83,88,95,86,95,99,90,101,100,96,94,92,112,90,94,105,95,103,100,101,90,98,89,95,101,96,97,93,104,104,87,91,109,113,100,89,96,103,83,103,102,114,94,104,97,102,92,97,89,109,104,104,95,93,98,95,109,105,97,92,100,112,88,94,116,103,94,92,100,110,95,97,113,86,96,99,96,105,99,103,101,98,94,87,58,82,97,102,94,97,94,98,92,96,107,100,93,104,84,99,94,86,116,84,105,109,93,113,109,106,96,84, +742.82434,101,116,94,90,79,114,124,80,106,109,86,108,107,105,86,101,100,100,99,78,95,106,93,80,100,105,93,75,95,100,91,83,94,91,91,111,101,90,97,81,99,103,106,84,89,103,100,94,79,97,99,96,101,103,88,112,96,104,96,97,86,105,92,84,94,108,96,102,110,98,106,92,97,93,94,85,98,99,93,76,103,104,97,100,99,87,95,95,102,104,87,103,99,86,88,90,96,80,95,94,97,92,94,101,98,97,100,101,92,104,90,98,108,95,99,98,100,95,104,109,92,108,118,113,83,103,101,100,108,104,92,94,96,105,86,101,94,110,113,82,101,116,94,105,96,91,101,91,86,101,92,107,107,89,96,93,101,114,95,96,86,101,109,101,100,96,99,83,109,97,104,98,105,98,104,91,95,91,124,101,106,90,106,101,104,104,77,97,98,95,109,95,110,103,96,111,93,105,79,92,94,105,93,105,91,113,98,110,103,104,99,75,126,105,97,94,81,107,106,99,95,101,89,92,91,107,92,94,113,84,91,96,103,108,93,115,92,86,106,102,91,88,112,93,99,97,89,100,101,101,94,91,101,96,101,108,92,100,92,101,125,99,90,99,98,94,98,101,96,94,100,92,98,87,97,91,84,98,98,92,114,111,103,84,99,100,87,97,98,95,84,97,100,108,91,97,108,113,103,97,86,104,92,105,117,109,102,88,89,105,98,101,109,93,98,92,105,104,83,94,94,82,94,95,104,96,79,95,101,96,104,109,105,128,109,92,92,84,83,96,101,95,98,97,92,110,99,105,96,101,95,102,94,74,88,100,88,95,114,106,104,90,114,98,103,93,106,109,102,102,99,92,96,94,97,88,103,99,104,91,112,104,91,105,85,102,95,86,97,90,99,86,95,107,99,94,96,92,100,107,101,95,90,104,94,93,100,96,103,104,111,96,97,101,98,101,107,93,95,100,98,92,104,101,93,98,101,110,94,125,90,119,98,92,100,105,95,91,90,84,93,102,98,101,89,81,86,101,97,99,103,102,94,97,97,99,101,93,91,94,105,109,94,107,95,98,105,95,97,92,86,70,87,91,104,92,98,108,102,98,86,106,105,108,95,88,98,101,96,91,95,109,97,93,96,105,99,103,96,90,102,102,88,89,86,106,91,94,108,84,96,105,93,103,97,109,76,95,102,87,104,95,99,93,102,108,104,94,95,87,95,93,94,98,102,92,100,100,93,102,109,117,108,99,92,88,96,105,86,112,88,103,84,92,84,93,109,99,95,90,84,99,101,103,97,100,95,104,98,86,103,97,99,93,91,96,86,100,104,96,92,90,87,97,90,113,103,106,94,95,86,96,85,89,110,108,88,100,99,92,88,95,106,78,100,101,92,96,94,97,88,105,95,95,103,95,95,93,100,113,98,104,91,106,100,102,96,92,91,94,92,98,97,97,95,97,86,99,90,92,100,97,104,116,95,80,79,98,97,107,100,102,83,97,99,107,103,98,87,97,109,94,92,100,89,100,100,95,101,102,100,90,105,88,107,102,111,97,99,97,96,100,92,101,102,80,94,99,93,118,94,93,99,101,99,104,97,103,89,92,93,92,103,97,83,88,96,93,110,92,94,92,109,87,82,97,95,99,98,96,92,92,100,96,92,89,98,94,96,119,103,97,93,100,90,95,105,90,99,84,85,97,90,103,87,90,106,102,103,94,106,99,85,85,71,89,102,72,116,95,98,94,95,106,100,99,89,94,98,94,110,99,95,96,92,95,102,102,102,95,101,84,117,102,101,94,100,125,85,97,90,91,113,97,92,97,96,91,92,92,97,101,71,104,99,90,77,115,101,97,82,108,92,92,98,78,104,91,88,98,85,106,100,82,104,101,109,116,95,87,100,98,66,90,113,105,114,95,113,76,98,95,102,91,99,85,102,97,87,93,94,97,91,94,81,100,100,103,88,111,99,75,83,95,73,93,99,95,99,101,105,88,94,106,100,107,94,103,100,87,103,102,94,101,104,97,96,101,95,100,91,101,109,95,101,97,84,98,90,91,85,95,100,90,97,92,89,115,83,99,95,92,107,89,103,95,57,108,84,102,101,100,99,93,94,96,93,106,111,86,101,99,93,98,86,94,106,109,107,95,106,89,57,97,96,96,90,108,87,87,92,96,110,102,98,98,101,107,101,111,99,95,101,101,99,97,87,96,95,90,102,95,100,96,106,102,91,93,83,87,98,84,86,100,108,86,88,109,95,104,93,94,115,101,84,91,96,107,104,105,104,90,100,92,99,98,91,98,95,97,76,77,89,95,112,113,105,96,106,94,105,104,107,92,96,112,101,94,93,94,104,99,103,85,109,89,106,107,102,108,97,93,91,89,99,89,97,98,92,98,96,97,88,96,93,95,95,112,96,90,90,88,100,96,98,118,76,106,95,93,98,100,96,101,83,95,93,81,94,87,97,105,94,105,105,105,97,102,105,95,76,80,95,95,85,98,78,97,106,105,94,94,98,96,101,102,91,94,109,74,106,96,98,103,100,90,105,91,94,98,101,79,93,94,108,106,95,83,92,88,107,97,85,90,87,101,84,101,103,85,104,79,93,98,116,99,97,88,95,83,91,92,114,100,88,105,108,100,101,101,104,89,92,90,96,102,99,91,95,94,103,87,90,91,83,83,107,95,97,96,99,91,95,109,100,108,104,99,95,93,111,106,91,97,100,102,90,93,101,101,96,104,104,84,102,105,91,100,100,96,91,92,85,107,95,95,96,105,90,104,105,117,80,104,104,98,84,97,94,88,81,101,99,101,90,92,100,88,94,86,97,95,104,87,96,97,98,103,100,103,103,98,109,100,91,90,99,95,94,95,103,87,107,90,102,96,90,90,96,96,97,94,93,100,108,86,106,92,83,105,86,96,111,94,94,99,130,94,97,102,90,95,96,71,106,97,95,96,97,105,100,100,90,94,119,118,94,91,101,115,109,104,94,89,106,107,82,97,103,102,91,96,88,105,90,96,108,91,100,116,100,100,96,109,101,104,104,100,100,98,98,98,106,96,133,104,104,99,100,94,104,105,86,98,76,102,96,121,99,90,95,99,97,83,92,113,105,104,88,88,101,94,94,106,104,113,92,92,98,89,93,89,89,93,113,92,105,100,105,94,75,91,106,105,106,106,103,91,94,95,98,88,88,103,103,102,102,103,107,91,85,94,95,97,106,83,108,91,94,97,97,87,103,97,91,112,102,96,96,100,98,96,95,105,95,70,95,103,90,99,116,88,103,104,91,95,96,102,93,100,91,101,87,96,98,91,106,96,100,95,100,90,79,94,101,105,93,98,100,80,102,98,94,83,93,83,95,86,89,93,105,86,104,100,87,98,92,93,100,101,85,92,104,95,92,105,94,110,100,77,93,92,103,111,81,94,97,97,81,99,92,91,92,115,86,94,101,94,96,90,88,101,111,88,105,89,100,93,90,86,103,97,103,78,86,91,96,90,104,93,96,87,99,98,98,97,96,100,99,88,107,88,96,103,98,63,102,84,92,83,109,109,97,86,96,92,96,84,112,97,98,99,92,95,87,103,103,88,96,87,88,98,99,92,84,101,96,95,97,93,95,90,107,101,95,88,101,97,92,103,91,89,98,100,95,98,94,98,95,100,97,88,100,103,95,102,93,89,98,85,103,94,101,94,89,95,83,95,105,101,95,80,92,111,84,112,99,98,83,104,97,93,98,88,88,100,109,91,105,97,98,102,100,94,91,94,86,98,106,113,101,92,101,95,87,104,91,99,92,85,94,90,107,100,110,83,90,96,109,105,112,108,95,87,120,85,115,80,94,104,98,94,90,109,93,91,109,98,96,98,105,102,87,96,92,101,100,99,99,102,101,91,89,87,80,79,97,91,90,94,99,80,84,93,100,93,78,83,105,98,104,87,105,98,88,104,102,104,105,94,103,105,87,99,89,107,103,101,98,103,95,91,89,87,99,100,99,98,90,108,103,99,90,93,89,92,61,90,108,94,110,94,103,85,101,99,97,97,100,96,102,93,98,94,100,107,90,100,100,86,105,108,105,103,86,98,98,109,77,106,89,91,75,90,87,102,97,99,83,97,94,93,97,99,100,103,95,87,102,93,96,85,91,87,92,102,105,101,104,105,91,98,117,104,98,92,92,94,101,99,101,95,95,94,101,79,97,121,91,108,106,90,94,104,100,94,104,111,113,97,93,97,108,92,103,95,97,81,96,106,98,103,103,88,99,97,88,113,103,96,87,87,107,116,90,88,100,88,94,105,97,95,108,91,87,99,91,95,98,113,97,89,97,95,102,87,95,112,89,87,102,89,100,96,91,96,95,94,89,95,96,98,106,97,89,93,97,94,98,104,102,100,96,100,86,107,112,98,99,88,106,95,94,104,106,100,96,94,103,78,99,94,107,82,101,95,101,87,84,95,98,99,90,108,102,91,88,96,100,96,96,83,94,98,97,100,95,98,98,97,97,84,96,103,99,95,102,115,85,89,92,86,85,98,100,110,91,104,104,101,84,100,87,103,100,100,100,99,95,103,97,104,105,89,102,92,96,99,84,101,89,84,102,94,109,89,91,97,89,98,98,83,80,106,85,99,100,98,104,116,95,88,106,91,107,113,109,117,83,107,93,103,95,91,93,82,95,89,104,88,85,83,96,117,102,102,98,84,92,106,98,91,98,100,93,95,109,94,94,97,100,99,94,98,81,98,99,92,94,91,100,90,102,96,104,99,94,87,92,90,94,106,107,102,85,94,105,87,98,119,95,98,80,102,101,102,101,84,92,102,113,96,102,93,103,88,107,90,99,98,104,98,102,100,100,113,96,102,114,85,91,113,96,95,103,101,85,106,105,96,104,105,87,102,105,86,86,100,88,88, +742.96576,89,106,93,84,83,103,95,89,85,92,78,88,89,88,102,88,92,76,98,104,79,105,106,93,109,96,110,91,102,103,105,92,94,93,97,102,92,91,88,91,91,104,87,91,100,102,91,110,99,94,97,87,94,100,101,88,99,87,93,89,93,99,110,87,100,99,89,96,101,101,97,94,93,107,90,102,101,97,98,84,96,113,108,101,72,91,110,120,76,83,100,88,100,99,87,102,104,93,84,105,87,95,90,98,99,94,86,106,95,94,97,100,109,102,93,106,94,96,89,113,98,96,92,107,102,95,92,79,110,103,108,96,100,98,94,98,113,96,97,96,88,101,90,95,98,89,95,97,95,99,100,95,117,91,83,92,99,93,97,97,96,97,106,82,96,95,87,91,87,87,103,98,76,94,99,108,79,88,95,95,100,94,83,114,80,95,91,96,101,108,89,93,92,99,106,94,90,100,96,97,96,101,94,101,100,90,99,107,95,92,94,85,91,110,90,94,100,99,91,93,90,105,110,101,101,96,98,105,104,102,95,96,102,97,93,103,101,86,101,101,82,102,101,105,97,91,86,94,93,61,98,102,99,102,107,97,101,104,98,90,95,102,96,96,99,100,97,91,85,89,94,98,91,96,100,91,95,97,97,92,99,106,93,89,95,91,84,81,87,114,98,100,89,97,106,95,87,96,92,92,90,83,100,102,66,116,89,87,105,95,85,104,88,90,98,83,88,103,91,103,85,96,119,95,94,97,92,100,92,91,99,92,91,97,104,101,95,89,90,101,99,87,102,84,102,115,98,102,94,94,91,103,94,104,112,87,114,87,74,80,99,94,102,99,94,108,84,103,92,107,99,96,101,111,86,97,98,94,97,103,91,91,88,91,104,90,88,96,101,92,101,80,102,100,98,99,90,113,96,102,96,104,91,101,82,95,69,119,88,112,91,96,96,80,97,94,98,107,103,96,108,87,91,104,95,92,92,92,88,104,87,96,91,102,99,97,110,106,98,100,98,106,90,92,90,95,104,97,101,94,92,103,108,95,83,104,98,96,86,75,94,96,95,103,96,95,94,93,93,91,63,100,84,92,88,90,86,96,99,98,99,99,121,94,101,93,94,91,97,95,104,92,96,93,90,100,85,101,94,105,103,100,101,109,94,106,92,86,95,93,96,91,92,96,106,91,82,110,98,93,118,92,90,88,87,97,78,102,94,112,94,73,92,93,101,99,100,93,83,103,91,94,84,106,101,89,101,95,96,99,100,94,97,97,89,100,105,95,84,105,79,102,82,95,97,68,98,106,93,108,99,83,94,95,84,85,88,102,93,98,74,93,97,85,92,88,105,92,96,78,100,108,94,89,108,107,99,93,85,94,95,93,96,104,92,92,94,90,97,83,99,87,99,108,104,97,106,102,101,94,94,90,104,93,88,102,72,100,94,88,75,94,97,90,97,114,87,91,102,90,86,99,109,111,94,73,94,94,108,103,97,106,91,104,97,96,92,87,96,91,99,91,107,94,87,103,106,107,95,88,68,82,86,93,100,100,92,98,105,92,102,93,98,104,88,84,91,84,95,99,96,94,100,91,88,92,96,95,92,80,81,90,105,96,97,102,103,91,102,97,111,98,103,90,82,74,104,98,97,105,96,82,101,95,101,99,97,104,92,104,83,104,108,98,95,84,98,98,100,103,93,93,91,99,93,102,97,99,72,92,101,93,93,96,100,93,104,87,97,94,90,94,94,97,104,93,87,93,98,88,90,96,73,97,96,101,95,103,100,93,110,95,91,104,105,101,95,79,97,111,92,100,106,87,91,81,93,94,97,99,96,87,94,89,103,89,91,87,112,87,96,102,88,94,81,94,109,98,105,87,103,94,105,101,67,100,100,103,94,96,95,87,100,90,102,99,91,98,81,101,97,107,110,107,97,93,97,103,110,99,93,96,100,93,94,91,95,104,94,91,97,98,93,100,93,90,91,101,97,103,91,97,93,100,95,96,63,95,98,86,102,89,91,80,95,101,102,102,92,86,107,89,91,95,99,98,101,81,92,88,93,96,99,102,94,93,89,99,100,94,97,98,103,101,92,92,97,109,87,100,71,93,104,86,99,104,98,87,94,90,90,96,97,97,88,101,98,86,86,94,104,94,97,88,93,101,102,100,98,76,97,101,105,100,105,90,110,109,85,96,101,92,94,84,107,95,66,97,101,98,84,93,91,97,88,99,103,102,98,103,100,83,89,88,94,105,94,115,101,94,101,75,98,88,101,76,105,95,94,93,76,98,88,92,94,83,102,107,89,101,84,91,104,92,95,99,89,85,94,120,96,92,105,81,107,90,89,76,86,90,102,105,99,76,104,79,88,83,102,89,95,87,86,92,94,89,96,106,86,90,88,98,78,87,92,91,88,108,100,86,98,91,98,91,75,106,88,84,92,94,70,93,104,92,91,98,86,101,87,96,97,104,93,95,108,108,93,98,106,98,100,106,90,94,75,105,94,89,101,93,100,84,95,104,103,100,97,103,107,97,82,110,95,92,77,98,108,106,110,103,105,99,106,101,95,94,98,100,109,98,76,91,98,100,95,95,115,75,97,82,92,97,71,106,96,86,95,105,109,91,90,101,100,120,99,87,109,99,100,104,97,98,105,90,103,88,109,107,98,78,97,105,101,106,97,97,109,90,66,104,99,98,71,124,108,92,101,96,94,102,95,78,91,101,91,104,97,83,93,105,110,99,96,89,103,101,104,98,108,103,94,99,102,95,103,100,63,90,119,94,105,100,106,90,90,96,92,102,102,97,94,105,98,111,106,103,107,108,99,91,103,92,100,90,97,96,106,92,105,92,100,100,101,104,90,99,90,99,96,104,109,89,110,100,107,92,108,99,107,102,104,102,102,106,95,104,99,65,97,87,93,91,105,95,95,92,102,99,90,96,108,109,83,87,109,127,98,105,112,106,112,98,90,89,84,106,92,108,83,101,79,93,89,90,101,100,102,101,100,86,93,105,68,106,110,101,103,94,94,97,103,87,100,108,87,95,106,92,102,93,88,93,94,107,102,103,108,96,107,91,93,83,97,92,91,98,101,100,100,102,129,107,87,90,104,90,95,97,103,102,102,93,83,96,120,91,97,113,96,90,105,101,88,100,109,91,102,93,102,91,107,101,99,87,99,96,109,99,122,92,113,106,94,107,92,106,91,95,94,109,96,106,117,89,102,106,102,103,96,107,93,101,104,88,100,79,100,90,112,99,107,104,108,104,106,103,100,92,110,97,93,100,91,99,92,98,99,100,95,102,103,81,94,104,96,96,103,89,92,105,102,98,97,94,107,92,91,90,97,98,98,103,92,104,94,87,96,99,93,112,92,94,102,103,108,89,91,106,94,89,93,94,93,103,88,99,92,105,107,98,108,104,98,111,94,98,103,80,105,103,101,99,88,93,92,86,106,90,97,100,95,104,101,98,91,98,94,98,100,102,95,98,102,97,102,88,97,102,95,99,111,99,92,87,103,112,79,99,98,95,101,111,89,98,92,101,92,102,91,106,102,103,93,99,103,95,97,94,99,111,100,94,97,96,99,90,100,101,94,88,92,98,105,101,107,97,89,105,95,86,80,97,94,99,100,76,95,106,87,99,99,105,109,99,102,119,103,98,101,103,102,95,89,78,88,92,102,93,94,101,102,96,90,87,98,105,108,99,98,91,98,105,105,99,116,99,86,93,113,108,101,103,102,98,89,99,101,99,106,85,92,90,86,108,88,98,99,100,79,94,95,87,102,101,104,107,116,99,101,83,91,92,100,105,96,95,102,111,89,98,95,87,95,93,100,102,103,90,89,92,102,94,100,100,92,88,108,100,102,106,94,97,95,100,106,97,87,97,103,93,85,106,103,108,90,101,95,83,91,98,99,96,100,96,99,104,102,95,103,89,92,92,101,94,95,114,100,98,105,100,116,110,86,103,103,95,94,110,97,96,84,107,93,103,100,95,61,100,94,96,113,96,92,84,99,110,92,104,105,114,109,97,99,99,93,101,102,89,97,87,103,99,85,108,98,102,100,109,100,97,83,102,107,87,88,91,89,63,113,92,103,99,94,97,101,103,100,101,88,100,91,106,100,102,101,109,101,103,96,94,106,96,89,71,97,117,99,107,93,93,94,98,98,99,95,84,111,105,99,104,91,98,106,99,98,98,68,103,98,93,105,109,98,101,105,98,102,109,123,109,110,101,95,93,103,105,95,87,101,86,94,90,104,102,105,91,87,97,98,110,83,105,99,95,96,91,113,111,83,116,108,102,108,103,91,94,89,109,99,100,95,112,114,100,113,112,101,105,94,97,112,84,104,95,104,90,101,101,100,99,89,90,110,101,106,101,105,99,104,97,98,105,97,97,90,110,106,95,96,97,100,91,102,94,105,102,94,83,98,92,107,105,95,108,87,99,93,104,87,95,89,91,107,114,98,87,98,102,84,104,112,95,103,119,97,90,96,102,100,95,99,94,82,100,90,92,106,106,99,95,99,79,95,93,104,105,109,91,95,108,100,103,93,91,105,92,94,100,111,86,104,101,102,94,108,99,102,95,98,102,87,111,113,102,92,95,99,87,104,95,96,96,84,88,103,102,79,117,99,104,103,99,96,73,92,100,95,105,102,90,86,101,105,97,101,93,92,90,98,99,98,84,92,101,102,94,91,109,107,88,111,97,101,115,100,90,105,93,106,93,97,98,96,117,97,97,99,95,97,93,104,94,107,105,90,99,96,100,108,98,91,96,103,90,97,108,93,104,97,107,108,95,111,77,107,100,104,102,89,99,109,99,98,102,102,88,95,102,107,77,103,108,101,83,110,101,102,98,96,108,90,95,126,95,98,102,114,98,93,97,100,98,102,95,107,101,103,111,94,77, +743.10724,101,91,81,62,92,118,99,94,97,112,94,91,77,104,105,97,87,91,99,110,97,97,93,109,95,112,100,100,95,82,99,95,94,101,101,95,92,90,96,99,85,112,97,117,100,91,74,98,96,100,105,94,104,99,94,97,102,106,94,87,99,92,127,98,98,118,101,98,99,113,107,105,80,104,94,96,87,80,117,99,112,102,104,102,103,100,99,107,102,98,104,100,99,111,98,94,82,106,96,91,108,98,110,113,99,97,101,97,102,87,101,94,102,92,92,98,101,92,110,96,91,99,82,127,103,116,109,90,98,98,109,98,74,97,94,105,97,110,101,90,109,106,98,108,93,100,100,93,93,104,77,93,101,104,102,96,111,101,92,94,98,97,125,97,109,94,105,95,116,87,102,98,100,102,102,99,92,92,95,100,94,106,93,97,109,91,95,97,105,88,101,104,106,104,99,111,104,92,100,102,102,120,117,116,103,105,99,67,104,95,96,95,111,105,100,98,109,104,83,105,100,95,103,103,95,104,95,110,84,105,99,105,112,95,91,103,102,106,105,93,103,111,102,108,89,88,104,94,99,96,102,96,100,93,103,102,106,99,95,109,93,103,98,116,95,110,71,95,102,91,97,93,95,88,112,80,106,98,97,97,103,92,100,97,76,58,84,100,93,103,105,120,94,87,95,88,94,101,99,101,98,86,102,104,89,89,105,106,95,92,118,108,96,92,98,94,101,94,91,105,85,94,99,97,97,94,99,96,108,90,78,116,96,94,112,102,102,101,100,102,87,96,94,71,103,95,92,96,101,104,100,83,102,94,101,95,99,73,102,106,94,102,98,101,95,92,98,97,94,95,105,97,98,91,100,102,104,91,106,105,94,114,92,100,99,74,99,89,108,82,117,106,96,119,96,103,86,117,87,100,92,107,95,94,94,95,82,106,115,101,96,85,97,101,107,89,92,96,100,103,79,106,86,87,99,87,108,110,78,114,95,104,103,101,94,88,95,99,98,121,113,94,90,96,104,100,90,104,108,104,95,97,105,99,92,99,97,87,103,105,105,97,95,97,99,101,107,79,107,91,97,106,95,95,95,113,106,99,105,90,99,85,99,99,109,102,98,95,98,93,96,93,97,107,93,101,100,96,97,105,105,98,98,100,106,99,87,97,102,106,109,100,88,100,84,95,105,104,117,84,101,96,103,100,97,110,95,98,103,103,95,95,101,103,95,98,113,95,95,99,88,97,95,108,98,86,95,113,90,110,106,113,110,106,87,95,105,79,100,101,102,108,97,109,113,87,95,97,105,94,89,100,92,103,88,105,105,93,105,97,99,97,103,101,94,101,113,110,94,93,105,101,95,99,106,98,101,94,96,101,101,101,99,102,83,100,75,105,83,96,89,100,108,99,112,101,95,92,94,97,90,101,99,85,103,102,99,97,112,98,89,94,91,96,92,64,97,81,110,105,95,87,110,99,99,98,108,94,99,107,82,101,100,108,93,108,84,98,104,100,96,99,114,97,97,102,85,96,95,98,99,94,101,102,100,98,97,100,88,104,95,90,97,109,90,97,103,95,91,92,113,87,87,104,99,97,93,100,96,121,96,97,93,93,107,101,109,111,98,97,113,101,103,77,98,96,95,88,103,86,113,109,98,87,94,91,95,106,113,100,104,97,97,91,114,95,93,101,108,102,95,100,113,100,107,106,95,91,104,106,123,97,107,91,112,100,106,93,110,96,110,98,100,109,79,101,91,103,94,94,111,89,112,112,97,97,95,95,94,96,97,90,94,102,95,110,106,93,115,103,90,112,89,95,102,100,94,104,94,102,84,103,90,99,96,105,88,85,116,104,97,99,102,101,101,102,87,99,90,99,99,106,102,101,106,101,101,114,99,100,105,94,94,106,88,100,87,104,100,98,113,101,99,95,97,95,97,103,85,104,99,100,95,89,84,118,94,99,101,100,97,95,99,111,94,91,101,96,109,108,88,118,95,98,98,104,98,108,93,100,99,105,95,92,87,88,107,115,115,117,95,107,109,100,112,93,105,110,94,104,92,99,98,94,116,106,98,100,99,111,100,107,107,108,93,96,86,98,105,94,92,106,91,104,103,90,100,87,100,98,101,116,104,103,90,85,94,105,100,96,94,103,87,93,106,102,98,117,99,95,102,83,91,95,103,102,105,100,93,92,97,99,109,88,95,85,85,94,105,98,94,93,107,86,98,97,105,105,112,96,86,110,98,97,103,105,87,97,95,99,100,94,96,108,87,111,94,100,58,96,95,98,86,73,112,97,111,103,80,92,93,103,96,100,98,81,93,105,98,102,113,95,109,98,106,95,99,118,97,85,91,89,96,87,97,95,90,105,103,98,80,104,92,99,95,92,85,102,99,102,97,108,109,114,96,108,84,91,106,102,94,102,101,106,87,98,105,106,79,99,93,106,91,109,116,100,95,91,101,84,85,96,97,105,105,100,84,98,100,95,93,91,93,89,95,87,91,84,104,89,91,91,94,98,93,98,103,109,101,91,106,120,101,92,113,104,97,99,94,97,105,105,100,94,117,80,112,98,94,97,98,108,99,90,86,116,99,101,97,94,80,87,102,105,93,97,104,101,100,99,107,112,99,72,108,100,102,83,96,89,98,87,102,111,116,109,104,115,96,96,97,103,94,102,103,91,108,96,85,90,104,91,97,97,105,103,106,107,89,107,93,85,99,91,97,106,85,89,96,97,94,91,98,101,103,113,98,106,94,94,107,83,86,101,88,93,106,116,97,99,97,83,97,102,109,94,93,87,120,86,95,96,89,97,96,112,94,97,97,93,103,100,99,92,90,91,101,96,98,93,94,89,97,97,99,100,80,103,87,97,100,99,101,96,103,95,104,96,106,109,101,91,104,102,122,85,107,90,84,104,96,105,98,112,93,104,86,90,103,99,94,96,102,81,109,107,103,105,93,108,106,105,86,110,79,97,83,95,88,87,89,98,94,99,104,109,106,104,105,103,106,105,105,96,121,98,91,118,102,89,94,102,78,85,100,98,98,87,95,109,94,102,106,87,95,103,88,111,98,101,76,97,97,98,95,99,87,87,99,102,100,96,104,99,113,97,123,102,104,97,97,100,97,105,103,104,108,96,102,103,72,107,83,68,120,96,92,101,88,99,90,92,100,97,91,98,105,89,97,100,113,100,100,108,104,98,111,101,100,62,87,94,84,112,110,83,95,96,86,106,101,114,93,91,111,104,102,98,105,94,106,90,99,101,108,91,93,105,96,96,95,101,113,94,99,88,101,106,95,86,88,82,98,109,82,98,92,102,95,100,102,93,82,97,97,97,107,97,94,92,87,91,105,107,106,110,103,100,103,92,93,116,99,95,91,95,90,102,97,89,98,93,95,100,102,100,93,92,98,105,88,90,108,105,110,93,112,96,103,104,101,81,100,83,97,108,93,105,97,90,121,99,104,85,101,103,95,99,113,81,97,108,96,70,82,115,98,103,107,92,91,94,97,84,97,111,113,94,99,86,117,96,102,112,97,96,107,93,102,99,102,112,103,93,91,116,93,104,98,91,90,111,86,112,91,89,105,101,90,94,89,106,97,94,99,103,109,111,97,99,99,93,100,93,92,97,104,80,109,96,106,103,87,95,96,109,113,98,91,102,74,105,94,93,85,106,99,95,97,110,103,90,107,95,83,100,98,99,101,89,104,92,106,106,92,103,99,110,114,94,91,84,106,90,109,98,98,106,85,100,109,86,94,93,111,112,116,105,99,102,89,82,100,91,91,102,87,116,113,102,100,102,100,106,104,99,100,97,89,86,92,98,95,95,104,105,94,92,91,102,93,87,94,104,91,88,112,106,98,102,107,109,91,105,117,93,78,100,105,80,101,83,117,102,100,83,108,94,93,94,101,89,97,129,94,89,88,106,105,105,113,80,105,98,105,106,80,80,109,87,101,108,91,116,67,105,93,93,97,101,89,103,99,88,96,94,91,94,87,98,116,96,86,105,83,93,96,90,117,101,111,109,96,88,96,100,103,92,98,97,99,107,99,93,90,97,100,91,87,96,100,87,89,101,105,122,99,90,90,103,98,103,105,109,96,105,91,105,92,91,93,92,96,96,106,100,104,95,94,75,101,98,103,86,97,102,98,95,98,97,95,86,94,87,98,81,93,101,88,100,96,84,97,97,101,102,77,102,99,103,109,105,97,95,91,98,101,89,105,120,95,95,91,101,89,99,108,103,90,96,94,96,100,104,92,84,106,102,101,86,106,77,105,89,102,101,94,92,87,104,96,96,102,98,99,107,91,88,82,121,104,94,85,99,109,99,107,99,91,87,107,83,87,98,102,109,99,113,104,101,102,101,106,97,88,99,114,93,105,94,106,106,110,98,109,89,95,98,92,102,98,95,94,64,88,99,93,100,92,92,92,116,89,99,90,105,104,94,105,96,83,101,106,100,113,91,98,113,87,98,109,99,105,110,107,95,81,98,97,92,100,108,94,96,97,95,103,94,90,96,110,100,86,118,79,88,84,103,92,89,97,109,91,88,90,94,91,103,88,89,92,95,112,92,95,102,86,101,97,103,98,92,90,101,109,98,96,99,91,85,87,94,101,95,102,99,101,102,98,100,101,108,102,96,100,94,101,94,95,105,91,108,95,88,89,89,103,88,91,96,95,94,117,93,110,95,99,97,101,107,105,104,95,91,99,92,94,93,94,92,91,85,90,98,102,91,105,97,94,99,99,98,82,87,102,88,93,90,105,93,79,102,108,99,98,90,101,91,95,108,87,88,96,98,93,98,101,89,102,105,101,105,94,92,92,93,109,97,96,98,92,89,95,113,93,90,72,101,94,95,73,96,98,103,92,88,90,109,88,106,94,103,99,107,108,90,109,106,101,78, +743.24866,102,88,68,93,70,110,95,99,91,97,99,118,110,95,106,93,79,110,88,96,108,90,88,92,82,103,95,107,96,103,101,99,99,101,99,97,98,98,100,100,86,97,110,100,90,97,94,93,94,104,114,93,98,103,92,86,105,87,111,88,86,95,81,102,106,103,91,91,94,105,92,100,94,93,84,100,89,88,94,100,93,98,103,109,117,86,104,103,91,105,97,98,94,95,93,97,79,100,120,93,103,93,85,88,91,93,109,99,86,108,91,102,110,96,102,108,94,97,102,97,87,105,89,107,100,100,93,96,96,95,99,99,87,99,95,100,100,102,86,94,85,99,82,91,97,95,111,88,87,89,93,99,91,93,94,102,106,88,98,95,100,102,92,93,105,96,90,81,98,87,88,97,97,107,97,84,90,93,89,86,79,100,96,97,101,102,85,76,105,104,99,83,108,101,94,101,105,104,90,82,95,95,100,92,95,100,95,87,93,110,89,104,98,105,98,97,92,98,99,86,94,104,97,77,93,110,100,96,106,92,93,101,92,102,108,101,92,103,96,89,91,103,97,89,101,81,94,90,100,97,94,73,93,89,89,96,89,93,101,94,98,117,97,106,101,110,118,100,99,94,72,91,109,87,102,91,90,88,96,78,96,99,94,97,95,99,93,96,93,102,108,99,95,102,105,91,89,95,87,100,102,100,108,95,103,101,105,99,101,93,91,70,101,95,109,88,91,92,101,88,90,93,94,86,103,91,105,95,94,89,99,102,95,90,95,90,97,83,88,104,96,91,98,98,94,95,103,95,95,106,99,103,95,93,94,102,114,99,125,93,90,97,98,89,98,125,96,94,95,95,106,99,96,94,92,88,92,97,115,106,99,100,93,96,104,101,103,93,103,97,97,102,98,105,83,88,89,91,85,85,95,93,91,93,92,94,107,106,88,101,86,97,92,92,85,90,98,95,105,98,94,95,99,93,100,102,93,95,73,103,95,95,89,85,107,102,87,103,97,101,108,92,98,100,83,95,96,83,83,96,85,88,129,94,94,98,93,104,92,97,82,89,100,98,102,100,94,87,108,90,104,83,90,88,106,95,85,111,100,96,99,92,111,100,95,81,107,107,80,87,93,95,100,86,88,95,87,104,100,90,109,91,102,81,94,104,87,97,86,91,96,93,86,91,102,93,91,93,79,82,96,89,106,90,97,98,78,115,80,99,93,100,94,104,90,98,103,74,92,100,86,89,100,97,105,73,102,95,84,90,98,98,95,106,74,93,84,82,82,98,100,100,92,103,99,99,108,108,110,89,85,80,90,120,89,95,95,81,90,98,100,87,100,83,102,89,101,95,108,94,96,110,97,92,96,94,88,96,100,88,106,92,89,86,91,92,105,88,98,125,94,96,101,96,87,93,101,90,101,105,92,97,86,92,99,89,87,99,94,96,100,93,113,99,95,95,98,88,108,101,96,92,91,104,92,83,92,87,90,93,88,98,94,96,91,92,93,94,87,88,108,107,97,95,83,98,95,91,107,98,127,90,93,106,96,92,94,109,99,86,83,98,112,83,94,81,88,104,91,95,95,94,100,125,114,85,92,79,112,92,101,102,108,92,106,104,106,101,105,97,88,89,85,73,107,100,98,95,84,86,100,94,95,110,87,96,108,108,105,108,95,105,92,83,95,88,89,93,106,90,97,97,105,116,99,89,95,98,84,100,102,93,98,85,93,100,94,80,91,102,99,126,89,91,95,106,90,105,91,95,117,94,107,87,86,87,104,99,95,101,98,90,94,107,111,98,87,103,80,100,102,102,95,95,91,106,95,106,99,100,88,80,102,95,98,94,98,102,98,97,117,95,86,95,94,105,99,101,102,90,87,78,99,91,87,102,107,95,97,92,99,104,95,100,96,98,91,84,101,95,91,101,94,102,98,98,99,98,89,90,95,89,93,84,106,94,95,100,101,91,94,93,114,99,96,93,99,79,97,97,104,98,88,101,87,93,128,97,76,105,97,97,96,96,100,93,89,103,92,97,101,95,87,101,94,93,92,84,105,90,92,103,105,109,93,103,86,96,96,92,112,107,113,98,102,90,89,85,95,100,97,100,137,104,101,91,94,105,92,91,101,99,84,104,93,94,86,84,106,110,92,88,92,118,99,97,87,97,101,99,93,93,102,95,107,96,84,85,110,96,96,89,101,79,101,94,88,88,99,106,107,96,90,96,79,82,92,87,91,102,87,91,88,96,101,87,91,83,90,82,97,97,119,83,86,86,92,98,97,88,71,98,97,95,98,93,94,94,97,99,90,98,82,96,99,92,98,105,83,106,93,111,106,101,100,83,104,90,97,101,104,99,98,94,103,90,90,108,102,95,97,104,91,93,88,83,92,82,95,103,93,95,95,99,89,96,103,80,110,86,99,99,83,95,101,103,83,95,83,82,86,133,97,91,102,91,95,101,87,95,103,101,97,101,109,116,87,92,101,92,98,106,94,95,93,91,84,92,104,94,98,87,98,99,101,104,109,98,94,97,91,103,94,109,93,93,80,107,97,100,95,97,98,85,100,81,94,84,94,131,90,103,78,94,105,98,94,93,96,90,90,89,92,102,93,86,105,92,117,94,100,104,104,89,84,90,92,102,109,64,115,90,105,103,106,98,104,107,97,107,78,101,101,98,93,105,106,98,83,98,91,104,98,103,114,105,99,97,99,95,90,91,109,99,89,108,104,91,98,93,99,92,113,99,104,104,101,99,96,89,103,99,102,104,95,95,91,106,96,95,108,98,98,93,97,107,91,103,98,96,82,101,96,100,99,100,102,80,101,104,103,102,90,85,95,101,103,105,100,107,107,100,93,91,97,95,83,106,87,113,113,96,97,102,105,101,106,99,113,91,91,97,107,111,97,96,96,89,86,101,96,100,103,101,98,93,90,90,96,94,83,100,95,94,101,102,94,99,101,95,94,124,98,102,94,109,99,104,104,115,92,98,91,95,115,111,109,127,106,97,101,106,94,107,100,93,105,111,92,82,96,85,103,105,108,96,94,96,106,83,82,99,100,100,96,89,105,85,82,103,96,98,102,90,91,73,102,103,87,102,93,108,98,90,107,91,99,105,121,77,99,100,100,99,107,112,92,119,94,92,89,100,102,87,115,104,95,91,95,106,115,93,100,102,106,106,108,98,94,97,110,88,85,103,101,97,107,96,116,98,96,101,95,87,98,87,95,100,88,100,111,97,102,107,96,104,102,87,104,85,70,93,100,98,104,78,101,108,86,98,94,104,99,106,102,90,97,105,97,96,107,93,94,102,96,105,111,108,100,106,107,90,94,96,98,102,99,85,96,89,105,99,101,92,101,94,92,113,103,100,68,105,93,98,93,104,64,102,89,87,101,92,106,98,99,90,86,103,96,99,97,89,109,108,100,106,104,100,93,87,85,113,76,91,99,89,96,101,103,99,72,105,103,103,96,104,112,105,103,101,102,91,106,98,111,109,96,107,97,87,90,100,89,105,104,99,93,99,104,95,102,103,79,102,81,94,94,99,93,94,91,94,98,103,105,106,96,92,96,92,101,86,95,111,105,93,92,99,102,101,110,97,101,108,89,91,104,97,102,107,90,101,100,101,84,85,83,105,104,92,92,99,101,113,88,95,99,88,108,99,102,103,102,95,94,91,99,107,98,90,123,110,99,87,101,97,105,102,96,89,102,93,94,86,103,97,88,106,91,99,91,111,98,95,107,100,105,119,94,98,100,92,103,82,98,97,98,105,88,93,106,93,96,95,89,95,97,97,102,101,92,103,91,110,102,105,115,109,105,94,103,108,101,95,90,96,95,87,97,103,92,100,94,101,102,106,98,94,89,93,101,93,100,109,93,118,94,95,101,97,91,89,105,106,94,92,95,104,90,92,95,105,99,113,96,98,102,97,104,98,92,107,115,94,103,103,96,79,102,109,93,97,95,105,91,98,101,97,98,102,99,83,91,116,99,91,114,83,100,93,112,98,91,96,110,112,75,98,94,105,105,109,113,106,91,106,111,106,113,100,94,99,97,95,110,103,98,105,108,102,95,97,101,97,105,106,111,101,92,101,93,97,96,105,102,116,100,102,108,106,103,117,62,91,105,117,88,98,87,109,96,95,97,93,90,95,101,103,104,109,90,108,95,88,98,106,100,106,90,93,107,98,109,80,90,100,86,99,104,104,96,105,92,99,90,107,86,93,95,93,103,104,98,91,94,103,103,114,88,101,100,102,98,98,101,89,88,100,96,107,97,101,82,96,92,97,102,94,92,98,97,105,100,104,87,86,93,96,97,103,104,102,90,98,100,92,92,89,102,94,83,94,94,100,101,97,94,98,93,107,91,102,109,98,98,101,96,108,97,100,100,107,90,85,102,100,102,102,123,93,80,86,87,97,94,96,103,101,110,91,113,111,75,108,102,100,94,99,87,115,99,105,97,94,101,100,101,107,104,80,98,108,96,134,96,93,87,104,101,91,96,93,91,106,100,93,104,100,98,94,80,104,96,97,108,102,107,100,105,110,87,101,105,92,104,109,94,98,109,99,103,92,109,91,101,102,106,116,97,91,65,103,83,93,107,109,118,103,90,103,100,104,100,87,89,108,107,120,84,102,111,100,109,90,91,97,106,111,96,63,88,90,97,113,103,96,96,92,90,96,93,103,93,114,109,89,106,110,87,111,102,104,110,87,98,106,109,119,98,106,94,90,80,104,103,84,105,96,93,102,88,97,93,105,106,100,116,102,101,99,94,98,99,98,117,99,91,96,111,112,93,98,99,101,108,100,83,108,82,103,102,98,89,95,106,112,92,103,93,91,89,95,104,96,88,105,91,72,88,91,108,88,102,94,101,90,100,101,86,94,129,99,103,94,106,98,116,86,99,80, +743.39008,102,64,82,99,97,84,94,106,116,107,94,93,101,96,82,105,89,101,101,99,94,92,99,94,122,94,98,98,106,98,96,96,110,92,93,109,112,92,98,104,106,102,104,99,101,91,99,109,96,115,110,94,98,88,79,75,107,99,105,93,104,93,88,100,96,97,106,99,105,94,111,108,94,96,113,102,87,90,92,108,124,117,91,92,88,88,106,111,90,67,85,90,94,91,97,109,102,90,109,105,89,94,85,99,109,102,92,110,93,95,100,98,110,88,109,107,87,91,101,107,101,82,97,102,104,91,95,89,102,99,104,99,92,100,96,99,94,94,103,98,104,96,85,95,101,99,106,102,105,98,97,86,105,83,82,106,92,106,100,79,82,103,103,97,101,98,105,105,100,93,99,99,91,98,97,101,108,106,93,103,108,92,77,96,81,91,87,87,97,102,89,101,99,102,94,86,104,99,67,105,67,97,94,109,101,111,93,96,105,98,101,98,105,82,101,92,99,93,91,101,89,110,95,98,90,107,106,98,107,82,88,94,104,98,100,95,87,107,105,92,105,99,97,107,85,98,81,96,105,92,97,106,90,105,100,95,98,94,105,117,94,87,100,96,101,98,93,93,101,89,97,98,92,101,101,103,97,130,105,95,91,101,97,91,97,100,89,101,93,103,96,110,96,99,103,102,94,92,97,99,97,112,90,111,99,105,93,91,104,104,89,105,98,98,108,100,104,109,106,97,95,87,101,101,89,95,94,110,101,104,99,74,92,90,105,95,113,106,88,109,105,94,107,89,93,101,97,100,99,102,98,95,96,95,77,91,104,96,94,83,94,89,94,96,99,96,103,107,95,106,101,93,102,89,110,87,100,93,98,106,108,98,99,97,96,105,90,99,100,74,98,92,112,97,98,78,97,92,101,93,107,107,95,97,102,83,106,104,97,99,90,87,83,110,95,89,104,98,110,86,92,93,91,90,96,95,101,106,104,95,118,93,85,82,91,94,101,103,88,98,111,112,98,94,102,87,105,66,92,89,101,96,96,80,91,96,95,92,116,91,92,97,112,77,97,104,104,94,94,115,93,91,87,94,90,88,95,98,93,100,104,101,66,75,88,75,107,96,91,94,90,109,98,96,106,98,105,95,81,99,96,95,102,99,102,93,87,99,109,95,97,83,97,99,105,91,91,91,105,96,100,99,98,88,97,98,92,105,97,91,90,98,105,100,97,90,112,87,100,107,92,97,100,89,78,106,84,96,92,98,97,60,103,76,96,98,105,92,96,88,92,97,103,86,97,101,93,100,103,91,94,81,96,98,96,93,98,96,100,99,91,108,91,93,109,96,105,88,97,100,111,98,96,89,103,102,91,97,100,96,96,95,104,91,104,96,71,89,96,109,102,101,98,90,109,92,93,96,94,105,101,110,95,96,102,93,90,96,102,91,99,110,91,102,94,102,90,91,97,90,79,97,102,93,116,94,100,89,83,107,95,104,100,103,91,101,90,96,91,101,105,97,101,100,102,97,102,95,95,103,100,96,86,105,100,105,96,109,110,100,97,88,105,105,73,100,103,113,107,94,102,85,104,111,100,91,87,93,103,98,95,98,99,100,124,108,104,85,72,96,105,88,84,92,107,102,108,102,94,98,97,103,80,104,97,109,87,112,108,104,104,95,102,97,93,97,103,97,104,105,112,100,89,75,99,97,103,89,93,94,109,90,86,103,101,97,109,103,96,98,84,93,90,101,90,97,90,87,94,101,95,95,104,102,98,90,94,88,93,99,104,97,103,99,110,112,97,110,109,100,99,107,109,105,114,98,100,102,110,94,100,96,88,100,103,108,91,106,105,108,121,101,84,92,103,87,115,103,103,101,100,96,95,98,103,102,106,92,107,101,105,106,101,88,110,95,86,105,98,100,114,104,98,90,93,86,87,87,92,94,105,93,91,88,96,100,91,97,107,95,93,97,102,112,107,96,88,108,103,110,97,97,99,105,109,95,93,93,88,95,109,91,91,78,108,83,115,109,85,99,96,112,107,91,107,101,86,102,97,84,105,101,96,97,103,90,92,96,106,109,107,91,91,107,106,94,104,101,102,105,93,99,108,123,83,97,96,95,89,104,94,96,93,96,100,94,82,95,84,105,107,91,100,102,72,103,103,102,108,99,92,106,104,96,111,92,102,98,92,105,115,97,95,98,91,87,94,85,100,92,93,95,110,98,101,102,95,97,92,97,83,70,106,89,96,96,94,104,95,90,105,74,89,96,91,98,99,98,91,108,86,96,105,92,110,83,99,98,124,98,86,95,99,90,64,113,111,88,113,86,100,105,97,90,102,105,101,96,94,101,104,96,85,90,96,84,96,99,91,98,87,101,92,89,97,98,90,105,90,101,78,91,95,111,88,99,98,98,101,108,101,107,90,99,102,89,91,99,92,98,89,97,96,104,81,98,104,99,91,80,98,106,89,86,104,91,102,99,110,108,88,110,107,82,89,108,92,74,99,104,78,98,102,94,103,78,98,106,91,103,93,109,114,99,93,84,95,109,96,112,95,104,85,94,100,101,96,96,90,98,93,97,103,101,93,110,99,88,102,106,97,83,88,105,89,89,91,110,97,98,105,103,112,96,111,105,98,92,87,96,105,107,116,99,98,104,95,87,100,106,97,97,114,117,99,94,104,101,100,98,105,97,93,86,91,111,105,92,98,77,102,100,106,108,94,88,94,84,85,93,92,114,96,100,95,104,99,100,93,94,79,102,93,99,100,106,96,104,99,113,97,98,92,94,97,94,99,117,93,98,93,89,101,92,96,106,96,107,91,109,109,105,106,101,109,97,96,98,88,97,101,103,85,91,96,98,103,102,87,92,91,98,95,101,102,77,94,100,98,98,105,87,75,99,100,92,95,103,104,89,99,102,96,93,102,103,95,99,99,102,99,83,94,98,100,80,95,83,122,96,105,95,95,98,94,91,92,97,86,84,91,105,114,104,96,116,96,108,102,100,123,101,91,93,108,97,106,74,111,74,105,90,94,99,106,99,97,99,101,97,93,98,100,112,97,86,106,99,100,92,105,90,87,94,91,112,99,101,100,98,102,105,99,96,89,98,80,109,94,97,98,90,71,88,98,92,91,104,112,95,106,104,88,109,97,94,92,95,103,103,93,87,102,95,105,106,87,97,98,110,99,109,93,101,98,110,117,108,103,101,95,101,94,96,97,83,102,88,93,103,100,100,92,91,112,87,95,94,98,99,95,100,95,112,93,131,108,100,105,98,95,94,90,92,84,100,87,75,110,87,99,99,101,106,103,102,91,91,102,98,76,116,91,95,98,99,102,94,93,84,100,107,87,86,112,101,90,92,101,96,84,104,111,100,106,97,87,89,97,98,100,89,90,87,92,87,90,96,101,96,89,86,105,91,87,85,98,94,111,83,92,94,96,100,103,90,87,108,117,119,94,89,84,90,96,104,91,83,105,93,102,97,88,98,91,88,111,88,80,103,87,97,95,104,97,105,97,111,112,86,108,100,101,90,111,96,107,105,94,104,83,92,109,87,114,100,96,108,101,105,93,95,94,93,101,93,100,79,96,95,95,102,93,98,100,96,97,96,96,90,87,107,97,102,88,92,90,76,84,84,99,107,104,97,86,97,103,91,99,94,98,91,101,106,97,91,103,97,90,101,96,101,102,96,97,100,104,98,108,103,111,93,87,101,111,94,93,117,96,83,99,88,104,106,113,95,103,92,100,105,95,91,66,97,93,91,106,100,105,96,103,97,93,90,89,96,102,83,112,95,81,88,91,100,106,74,102,106,109,94,105,87,97,100,97,106,107,98,89,103,111,97,98,97,92,101,88,97,100,91,91,109,92,87,103,102,91,88,106,81,93,104,78,84,103,94,89,89,88,93,101,91,94,89,63,102,100,91,93,108,93,98,104,98,95,107,85,90,108,95,98,98,97,106,81,128,94,100,102,87,98,95,96,87,94,93,99,102,85,105,97,101,87,87,92,89,94,99,87,105,102,110,104,95,106,66,95,97,99,97,104,100,68,77,87,109,90,96,98,98,111,92,97,89,95,105,100,102,112,98,92,110,85,100,100,95,99,101,93,105,88,85,95,87,94,102,87,94,97,95,86,119,87,100,89,104,97,102,95,106,94,106,85,97,96,93,100,100,107,96,101,103,88,113,111,104,88,82,109,98,99,97,99,86,99,101,94,92,108,106,94,89,92,103,98,95,97,74,98,94,95,89,103,110,101,98,91,106,124,102,98,101,102,89,85,98,104,98,90,100,106,95,94,61,106,108,104,129,95,95,102,109,87,100,100,99,87,106,103,97,101,94,93,98,99,93,93,94,91,99,101,81,95,92,107,103,85,108,105,112,98,93,101,99,108,121,113,84,109,88,107,101,106,93,94,103,92,95,96,92,110,104,92,97,86,94,90,98,101,107,91,98,94,100,100,91,94,94,91,98,88,91,101,81,98,95,102,94,94,115,105,90,99,83,100,104,102,96,115,90,98,84,99,89,92,80,88,94,99,95,102,110,100,94,95,88,104,79,104,90,92,93,109,108,133,102,92,99,91,88,103,88,95,98,100,91,94,88,92,100,89,73,95,95,96,101,100,103,103,94,91,100,98,91,98,90,99,99,95,91,87,95,112,102,101,94,97,103,100,88,96,94,116,98,91,86,101,101,97,84,94,91,98,96,98,97,106,91,101,80,107,94,92,96,107,95,98,90,102,121,85,108,119,84,92,100,75,90,96,98,67,117,95,98,106,94,105,93,99,95,93,97,93,87,106,101,97,113,102,98,95,104,94,99,107,107,90,98,79,87,90,103,104,100,82,103,90,96,102,92,107,113,101,119,104,93,106,87,103,96,69,80,89,113,96,94,115,103,103,96, +743.53149,97,87,89,88,111,90,96,108,107,95,100,97,101,108,98,88,88,87,102,90,94,102,86,97,78,99,95,91,79,99,100,83,76,93,103,91,81,82,89,93,98,97,98,86,101,112,99,104,98,102,86,92,110,105,78,93,67,88,88,90,94,101,95,90,98,100,89,84,89,97,90,102,105,96,94,113,91,97,94,95,91,91,101,97,104,97,87,92,103,100,107,85,102,108,87,108,91,97,93,92,101,105,96,98,96,92,107,95,85,98,91,94,98,97,101,78,91,96,79,112,100,88,108,92,93,70,103,102,90,96,95,92,92,76,100,102,98,90,103,98,93,108,82,100,95,93,100,101,85,83,107,91,101,96,89,98,94,95,90,99,93,103,102,100,92,91,97,80,102,89,86,91,87,96,95,94,86,85,107,99,100,97,94,101,88,91,92,77,95,79,88,107,78,99,90,97,89,94,91,103,84,97,109,98,105,103,96,96,108,94,99,101,105,100,99,89,102,83,101,95,101,95,99,104,89,105,97,93,93,91,97,85,97,94,93,108,94,96,98,80,80,101,108,96,96,89,83,106,102,92,85,86,89,99,100,102,91,80,91,93,87,101,92,98,84,86,97,94,96,87,78,92,93,69,105,93,91,91,102,103,94,101,93,92,96,94,87,102,91,101,93,83,96,91,116,108,101,88,97,91,89,85,89,105,77,104,99,105,96,92,104,83,116,99,96,97,80,90,100,98,91,89,105,99,109,96,97,96,101,93,96,90,111,97,88,89,96,88,85,94,90,87,91,89,95,95,101,100,104,109,107,97,96,92,102,99,90,100,92,96,102,100,86,108,93,101,98,103,85,111,99,105,99,99,97,90,105,111,88,111,95,97,92,110,87,100,92,79,95,85,96,95,98,95,88,105,80,96,96,111,96,96,99,95,93,93,92,94,98,100,94,72,91,105,95,91,94,96,100,90,94,96,88,97,89,93,96,84,95,109,95,101,96,85,92,114,93,104,76,89,90,106,78,97,99,115,94,93,95,106,99,93,93,98,83,106,123,110,90,92,85,92,99,91,106,97,110,91,95,81,102,93,86,103,102,91,91,103,90,93,104,105,96,91,88,96,100,91,98,91,104,88,101,98,91,91,103,74,101,66,103,85,118,92,89,94,80,95,101,96,110,96,103,87,105,100,116,89,103,90,66,92,98,82,95,94,93,62,106,88,83,95,106,99,105,102,95,79,86,103,106,92,99,91,104,95,98,88,101,98,95,103,100,94,90,111,106,94,106,90,101,107,107,93,72,92,109,82,101,96,92,98,98,99,96,101,65,92,110,97,98,95,98,87,105,97,92,103,103,102,95,98,105,94,98,98,102,98,115,97,90,98,95,102,92,95,88,90,93,100,90,98,96,102,92,87,103,90,97,93,98,85,99,97,99,88,99,103,86,98,110,84,93,99,91,100,110,90,86,93,110,98,80,110,86,95,81,99,105,104,87,102,98,129,101,105,93,102,92,102,90,96,87,107,87,105,89,93,100,97,100,106,100,97,93,106,90,101,91,83,100,98,94,88,94,88,86,94,92,95,99,94,97,113,98,92,98,99,106,83,92,94,90,122,99,97,102,96,85,97,89,96,96,96,88,74,101,88,90,94,102,73,104,94,73,102,87,99,104,105,96,87,93,96,111,98,87,116,95,91,92,84,107,83,93,87,96,101,101,102,105,100,102,87,88,102,93,90,95,98,107,96,91,97,84,90,90,112,100,100,101,97,104,108,94,91,85,88,92,103,106,94,101,105,96,98,92,95,93,86,97,98,100,97,92,90,92,98,95,103,103,105,85,92,95,98,101,94,89,100,108,107,94,95,101,100,111,104,83,87,91,97,101,100,93,99,97,96,88,98,93,91,104,93,94,99,100,101,85,96,92,101,110,98,95,90,104,97,84,93,100,100,88,101,85,73,88,86,85,109,94,95,94,91,94,97,92,96,111,97,94,93,106,88,104,84,90,100,101,92,99,112,102,89,97,92,72,96,97,100,105,72,108,123,93,92,97,101,95,102,102,108,92,96,95,69,94,126,102,83,102,113,109,97,94,90,100,85,91,82,89,94,100,74,107,100,98,99,89,103,84,91,102,99,95,81,94,90,99,89,90,94,90,101,88,99,92,89,100,84,88,88,95,91,104,91,94,88,83,106,107,92,111,95,108,89,109,98,100,99,84,90,98,88,89,89,94,88,87,97,87,92,103,78,89,91,91,103,93,86,88,109,101,96,94,85,90,102,92,101,88,102,107,84,102,100,89,106,100,100,90,107,91,94,91,86,99,93,99,98,81,88,101,88,102,99,102,74,92,84,99,100,78,82,92,110,101,109,90,99,88,94,84,100,98,84,97,86,95,93,93,93,100,92,95,90,88,90,103,98,84,89,73,84,100,100,91,92,99,94,101,97,97,96,83,89,96,92,96,88,92,100,88,107,109,100,84,90,103,93,97,98,97,92,89,95,97,98,98,95,90,95,98,96,96,102,90,105,102,104,91,96,101,101,88,95,109,78,88,113,95,107,90,91,97,106,82,99,102,98,98,97,99,94,88,72,94,92,90,92,97,107,97,109,93,92,89,71,105,110,94,95,115,100,89,98,93,90,94,99,109,82,93,82,109,79,95,102,97,112,97,84,104,98,94,86,91,97,98,91,111,87,79,108,87,105,105,103,89,93,102,108,102,91,95,91,91,103,110,96,85,90,90,96,106,101,93,92,90,76,96,99,95,102,85,108,111,92,90,88,76,105,94,98,97,100,89,109,105,93,96,88,106,99,103,94,99,103,112,95,97,84,113,90,96,97,100,96,98,97,104,106,92,106,96,96,90,113,91,105,112,86,89,109,112,88,110,95,93,100,103,93,109,128,92,87,102,83,93,96,133,95,96,103,98,95,100,105,98,89,99,105,95,87,112,113,100,107,96,111,101,113,93,94,98,96,96,95,102,102,83,94,88,100,99,101,112,111,106,107,103,100,98,101,79,95,96,102,104,95,106,94,89,97,100,102,106,94,99,90,92,99,102,93,90,84,93,98,96,104,97,98,87,75,88,98,110,101,92,95,102,103,116,90,101,77,100,97,88,78,99,102,97,89,97,100,94,109,99,83,92,98,86,110,94,84,96,88,78,94,87,76,105,98,104,98,92,94,101,92,95,93,98,100,97,115,108,94,81,93,97,77,89,90,98,102,84,102,97,94,96,99,94,86,98,87,120,106,102,92,92,100,110,114,113,112,92,91,94,98,98,95,96,102,87,112,103,100,100,98,97,92,94,95,91,101,97,90,102,66,93,98,102,90,106,114,100,87,101,99,104,100,96,74,100,110,94,93,105,86,85,105,102,106,96,96,98,87,113,98,97,105,90,99,103,83,90,96,98,107,92,95,105,107,93,91,103,95,91,98,99,86,98,91,103,118,94,108,93,99,100,104,101,88,80,95,96,92,86,85,98,88,118,101,105,109,102,89,93,95,101,106,106,96,105,89,87,96,109,99,106,94,91,95,95,102,100,96,107,89,87,90,102,96,104,99,95,79,98,97,97,92,92,101,100,108,101,92,117,84,111,111,89,100,100,92,103,100,94,93,93,90,91,101,92,95,90,96,98,105,89,99,106,98,78,87,101,97,83,92,84,105,87,91,94,95,92,98,94,101,109,103,100,90,95,65,96,93,98,117,80,95,91,104,105,87,113,98,92,84,91,98,101,87,100,99,101,102,94,95,105,93,97,84,83,103,95,97,105,98,92,80,94,100,95,100,100,96,103,95,93,104,96,95,98,85,105,106,101,94,101,98,104,96,100,102,96,100,92,89,100,102,94,97,97,100,109,90,96,95,92,91,95,97,103,99,91,104,95,100,99,79,92,102,105,94,82,109,94,110,91,97,97,116,97,94,105,95,106,101,109,88,101,113,93,96,94,101,103,85,92,93,104,104,99,109,108,99,102,99,92,75,111,74,92,76,91,95,94,95,92,93,95,109,99,103,89,91,86,109,123,115,102,104,103,99,93,92,105,75,97,91,80,87,98,92,75,97,96,87,103,95,103,95,97,92,89,89,90,93,103,111,102,104,113,100,95,78,92,109,89,87,102,95,84,102,105,86,80,96,87,100,100,95,108,83,92,92,90,108,105,107,96,90,94,102,102,110,101,88,98,98,101,82,105,90,98,92,102,107,106,108,90,93,101,105,97,91,91,103,100,98,113,80,102,101,105,103,100,82,75,95,105,109,89,91,94,91,110,81,95,100,103,90,94,96,95,106,98,109,88,104,91,106,84,89,81,97,85,108,79,120,89,109,101,94,93,95,93,83,98,98,102,97,92,92,105,93,103,101,110,91,108,105,94,112,101,100,96,94,101,93,97,80,87,91,90,97,106,95,96,90,87,107,101,116,104,97,96,85,100,105,85,92,98,86,98,100,104,101,97,96,100,106,89,91,97,100,98,93,98,102,105,94,91,95,95,91,100,99,98,96,95,110,91,96,99,86,79,98,85,91,94,101,110,97,100,87,93,83,102,111,97,93,83,97,93,93,101,104,96,117,94,99,99,95,92,102,97,100,105,101,99,100,97,85,92,92,90,112,86,99,109,87,88,94,105,95,85,106,109,99,108,101,104,84,107,97,86,97,102,83,99,98,101,90,97,86,106,68,111,101,104,108,104,102,98,99,100,100,91,92,121,95,90,80,88,106,98,97,93,83,88,107,101,94,96,89,87,101,89,104,88,104,105,91,88,90,108,96,98,83,92,79,95,101,95,93,112,92,96,109,116,96,87,94,83,98,103,96,103,109,96,100,113,103,105,80,104,83,91,89,87,109,85,97,88,95,108,103,94,104,109,101,108,101,94,115,82,86,101,101,97,105,102,98,96,108,115,91, +743.67291,91,103,91,100,91,92,135,92,84,103,93,100,93,100,105,95,90,118,99,96,100,93,98,99,100,96,91,83,103,93,86,95,100,94,94,100,102,77,124,91,86,96,91,94,106,107,95,86,93,99,101,89,85,82,89,92,95,95,90,89,95,109,101,97,103,113,82,101,100,96,97,96,94,113,93,98,81,95,104,107,97,94,97,91,77,114,99,96,88,91,91,106,112,86,93,101,91,100,95,85,105,92,88,95,103,101,109,93,85,83,90,103,110,98,91,92,93,118,99,91,89,109,90,112,110,93,101,92,114,103,92,97,75,105,93,106,84,99,88,99,96,104,88,108,91,95,97,98,92,101,96,97,105,85,93,104,95,92,99,106,85,94,104,88,110,101,99,91,94,96,85,101,97,105,90,97,91,94,91,98,95,103,97,96,82,82,90,88,93,97,76,102,94,93,97,88,97,108,97,91,100,82,86,95,87,98,99,110,112,102,90,92,98,109,105,94,95,101,101,93,97,87,112,80,91,110,93,103,114,104,82,115,97,107,101,109,101,127,100,95,98,95,96,99,100,92,103,101,99,95,103,99,86,103,91,97,104,95,93,85,89,100,94,104,100,113,96,100,94,100,103,92,92,93,103,89,89,95,89,96,96,92,95,102,114,87,83,101,94,83,85,93,106,101,102,107,100,87,97,82,85,110,98,116,96,96,106,103,90,103,88,106,97,107,94,102,104,106,87,100,88,102,98,100,93,102,97,87,99,100,110,94,88,105,97,89,112,104,94,104,93,97,106,80,84,110,101,96,107,90,99,96,91,95,102,100,102,98,90,94,92,98,97,97,91,90,99,109,90,98,94,85,97,90,100,86,95,98,93,91,83,89,104,106,89,82,88,94,104,85,98,92,83,99,102,90,97,90,100,106,86,100,100,101,100,98,107,98,94,89,83,95,74,103,104,97,92,99,103,89,102,101,92,117,93,91,89,92,113,102,94,93,101,92,101,98,86,110,96,94,97,92,91,97,86,90,92,99,116,105,108,100,92,86,95,67,83,106,92,105,93,87,99,105,105,105,99,99,95,71,93,95,98,100,88,91,95,96,86,92,84,94,100,98,89,90,95,100,92,90,90,85,100,81,96,86,94,99,99,91,94,106,97,103,101,113,104,95,98,94,101,116,95,98,96,95,93,106,103,85,96,85,96,102,96,104,108,89,104,96,98,105,104,95,96,101,92,99,93,94,70,104,103,89,99,102,84,94,101,87,99,99,86,83,88,106,95,91,85,96,109,90,93,103,91,96,99,102,107,100,102,92,110,92,91,119,100,79,91,99,90,94,101,89,101,84,106,99,95,94,84,102,97,95,101,101,100,75,93,83,99,86,105,94,72,88,89,91,98,91,106,103,99,98,82,93,101,91,98,98,87,92,91,93,93,107,91,103,91,119,108,98,92,98,79,94,83,96,99,90,98,102,88,97,98,101,92,88,97,96,105,102,105,99,88,94,104,135,113,96,64,100,96,97,88,109,92,87,103,92,103,97,102,88,90,108,100,91,99,101,88,92,109,97,97,93,109,107,85,92,107,101,92,99,99,100,98,97,83,88,89,96,77,74,93,100,111,105,102,88,101,99,79,91,105,93,91,108,90,96,101,95,97,103,88,77,94,102,100,109,92,104,95,91,86,86,88,94,95,95,93,95,92,88,106,97,98,90,97,96,95,93,82,83,97,78,103,84,90,102,80,98,88,91,97,117,85,110,95,102,101,98,103,94,91,84,100,89,87,96,102,105,105,100,105,95,100,99,93,98,107,95,105,97,112,91,87,89,99,91,97,87,79,82,111,95,98,91,93,101,89,98,124,102,96,104,110,101,103,93,91,93,93,101,91,106,104,97,108,94,107,101,92,100,98,105,89,97,104,103,113,92,93,103,100,101,109,96,86,118,73,95,99,89,91,93,94,96,93,92,100,96,104,95,93,103,92,94,105,99,90,103,87,101,96,103,97,93,106,97,95,109,90,95,103,89,76,114,100,85,105,103,113,103,97,100,102,95,101,100,118,87,87,97,102,93,90,92,87,101,109,104,91,90,116,59,93,101,91,94,101,103,102,97,101,99,105,92,98,101,84,108,96,105,90,106,103,91,98,100,96,95,96,106,104,89,87,105,90,104,100,99,101,110,90,76,96,110,94,102,105,97,88,73,99,86,101,79,90,98,97,87,92,91,83,92,98,80,83,92,84,101,96,85,92,99,96,99,96,103,86,94,100,96,86,97,89,85,99,108,110,92,91,89,103,67,90,95,91,96,95,83,80,93,90,113,106,93,84,92,104,98,113,93,98,95,91,91,93,102,95,89,106,78,100,89,101,111,104,100,103,93,93,94,87,107,110,94,99,93,92,92,107,101,86,95,89,82,94,104,85,93,97,101,92,91,102,97,108,91,97,101,96,88,93,98,96,100,93,93,94,98,85,100,94,97,92,106,108,84,103,104,96,89,95,100,98,91,97,102,105,88,93,105,95,109,95,81,103,94,91,92,116,94,102,85,102,96,88,98,106,111,95,103,96,104,92,98,102,104,102,100,94,96,105,102,81,103,99,102,96,97,101,94,91,95,103,82,105,90,92,88,109,91,91,102,93,102,96,100,104,98,104,97,109,98,95,111,91,104,105,71,93,99,84,93,106,95,105,93,96,87,91,116,100,97,97,105,112,92,97,96,112,103,83,85,106,97,96,105,95,106,101,98,100,113,109,99,91,97,100,133,89,90,104,98,112,100,96,80,93,109,91,90,93,92,86,82,101,102,96,106,105,101,96,94,98,97,109,109,95,101,104,84,93,98,96,94,107,99,95,111,94,102,100,83,91,96,93,107,86,93,113,100,107,87,88,93,96,93,104,102,89,98,94,91,84,96,95,125,92,95,96,103,103,80,91,102,97,103,103,97,91,93,100,104,104,94,91,102,100,105,79,107,117,99,98,95,105,93,106,100,90,95,96,99,100,106,91,88,95,92,112,89,108,95,106,100,99,101,132,94,93,109,106,96,89,95,97,105,94,97,107,91,97,90,105,94,108,102,116,87,97,99,92,91,98,91,97,85,95,107,107,92,109,107,113,96,95,93,101,94,112,109,94,99,81,102,104,102,108,88,107,110,98,101,98,95,106,98,90,98,100,98,104,112,126,85,108,106,104,91,86,98,94,95,120,106,101,87,98,81,100,72,101,106,95,103,99,97,102,111,82,105,98,97,71,92,112,104,78,96,109,101,98,101,87,112,115,94,109,98,98,99,98,93,91,100,95,108,85,120,104,108,112,99,101,103,98,104,104,98,90,100,123,103,99,90,100,94,100,102,105,98,91,109,98,95,100,106,106,105,99,93,102,90,91,92,94,88,96,106,68,99,92,94,106,127,116,86,100,101,103,102,103,98,98,106,97,102,86,108,97,106,93,102,100,96,94,98,101,101,99,118,99,91,108,93,91,98,105,106,110,104,82,101,105,109,104,110,97,109,97,103,95,88,97,104,96,90,105,107,104,99,99,109,108,99,91,96,109,99,102,111,90,113,101,96,97,91,105,98,111,111,105,99,87,97,96,103,102,96,92,93,108,108,102,103,95,101,90,94,82,109,94,106,112,110,109,93,93,94,106,94,94,80,101,100,95,107,99,111,113,106,86,100,103,95,87,101,102,100,102,91,93,108,93,103,84,101,102,95,98,106,101,100,104,102,99,93,98,109,108,100,88,102,104,105,94,99,91,100,96,102,102,104,94,101,105,92,91,95,104,90,89,72,117,89,89,104,95,103,88,97,102,102,91,104,112,109,109,89,110,96,92,95,97,79,98,98,101,98,103,124,108,104,97,94,89,107,105,97,106,99,107,104,105,94,104,91,81,95,97,96,99,101,108,97,87,98,107,98,92,104,109,102,87,95,92,96,103,94,100,98,101,103,104,91,103,102,91,99,97,116,111,107,96,108,94,80,96,108,105,98,103,96,121,104,92,102,96,99,114,110,110,84,99,96,102,96,89,95,104,119,111,92,112,91,101,90,105,107,103,101,105,99,98,101,106,102,108,90,105,107,95,109,105,107,93,100,118,106,96,103,91,88,94,104,98,96,112,97,94,97,96,113,103,112,106,88,98,104,92,110,95,100,101,102,97,80,94,98,89,99,98,102,99,109,102,94,109,117,91,92,112,111,94,104,95,101,109,102,109,108,111,119,81,90,101,103,108,102,107,79,114,94,89,92,94,100,97,94,105,105,98,102,105,100,97,92,97,66,117,111,97,96,96,91,93,100,87,106,108,101,98,107,97,100,100,104,111,95,114,99,101,85,99,92,87,95,97,97,87,100,93,100,113,107,96,117,105,101,122,111,96,100,104,103,97,103,98,107,101,94,105,107,99,119,113,98,91,65,97,99,102,107,75,103,106,107,92,100,93,102,92,91,98,100,94,108,104,94,108,113,102,100,118,99,105,99,90,94,106,109,100,100,97,101,103,119,93,107,101,87,98,94,101,100,76,104,108,97,103,91,95,119,97,106,93,87,94,95,88,98,91,104,94,96,93,92,88,103,102,89,108,113,100,105,91,99,91,92,109,92,97,81,105,100,106,63,102,113,80,104,107,109,128,102,113,97,97,103,89,108,114,99,112,106,99,99,102,93,110,88,97,86,104,105,96,114,100,100,98,106,109,105,104,104,96,82,98,120,94,95,91,117,99,94,98,109,94,96,108,117,113,95,110,98,97,95,100,100,89,97,76,100,94,100,101,87,87,121,102,95,99,95,96,97,99,113,95,108,101,84,87,113,100,102,87,105,123,97,116,83,102,95,94,108,90,108,101,110,92,92,88,99,132,99,103,109,105,104,111,92,95,104,91,105,97,86,105,108,96,98,113,96,104,82,79,104, +743.81433,99,102,104,100,85,92,95,105,85,87,120,97,96,94,102,111,101,106,93,94,98,95,98,114,94,105,95,99,95,102,100,117,102,96,105,118,105,94,93,94,88,95,96,106,99,111,97,96,106,105,95,91,92,87,102,93,97,102,92,82,103,98,93,105,95,103,91,101,92,95,98,98,96,91,80,95,92,95,102,103,90,88,90,97,86,70,101,100,86,90,101,106,109,89,93,96,101,96,94,107,81,96,97,88,99,85,103,103,95,91,95,90,98,99,106,96,94,96,105,101,90,104,87,93,96,103,100,99,95,91,94,96,90,98,102,101,102,105,87,93,91,105,97,98,95,91,94,88,91,97,81,91,95,86,97,89,81,91,101,97,90,108,112,100,96,83,104,91,97,99,91,84,103,104,102,92,91,113,105,84,81,97,99,103,88,92,84,90,89,91,104,102,98,102,88,95,97,101,102,92,94,88,104,95,104,98,98,95,101,101,103,106,127,99,95,101,104,104,94,101,106,102,97,96,95,98,100,98,95,95,97,102,93,103,102,99,90,93,95,95,91,97,109,96,97,102,93,97,93,99,87,102,101,109,102,96,95,89,87,98,99,85,92,83,90,86,89,92,94,82,97,96,96,89,101,92,81,88,97,91,96,87,105,103,106,99,91,96,87,87,92,96,111,101,100,100,96,92,108,94,102,87,91,99,64,96,100,99,93,98,91,102,101,92,108,94,108,105,99,95,83,100,102,103,86,85,83,84,101,99,97,91,105,103,102,103,102,97,92,106,93,112,102,93,91,97,90,97,104,90,102,91,88,102,97,95,86,104,97,91,85,92,109,91,83,92,104,108,93,102,94,86,101,113,93,100,94,95,99,83,87,95,96,97,96,102,105,94,88,95,97,89,90,106,91,96,100,91,113,104,91,89,90,93,102,95,99,101,98,99,84,87,98,96,99,83,100,91,119,100,90,91,87,87,101,85,102,109,97,101,94,95,110,94,87,83,105,113,95,94,94,102,87,102,91,90,104,94,89,108,85,110,87,109,102,77,98,96,98,91,89,94,97,102,97,94,103,88,91,100,91,92,96,99,94,86,103,108,103,97,92,109,104,98,104,97,102,98,76,114,104,102,92,91,91,86,106,109,98,90,100,94,110,107,85,102,84,91,114,96,88,97,117,97,104,99,90,91,101,85,101,95,93,94,101,91,95,109,101,115,102,106,110,98,97,95,97,95,94,103,92,106,93,98,98,96,83,75,99,99,96,92,96,98,91,100,98,94,89,88,92,91,95,92,80,91,94,95,118,114,93,91,85,95,97,87,89,96,98,98,110,107,96,94,98,99,92,97,99,87,83,92,98,100,95,95,100,86,78,92,91,102,102,92,93,86,87,94,90,96,86,91,103,108,102,93,102,106,93,94,95,91,97,90,96,98,109,88,98,85,78,94,94,103,95,99,92,100,91,109,93,96,89,90,83,80,120,91,95,102,94,92,97,89,91,100,99,76,107,99,102,100,94,95,98,95,102,97,92,85,99,90,96,102,103,110,94,83,102,100,94,95,99,90,91,83,85,99,99,110,103,112,101,113,99,98,82,90,97,99,97,93,97,89,106,97,88,93,98,90,97,108,94,94,87,99,94,65,88,94,101,92,91,94,91,95,99,88,108,94,96,113,87,76,94,102,97,95,93,99,97,94,100,104,106,85,95,92,92,105,103,99,87,100,91,92,94,99,95,90,97,96,91,100,89,107,87,112,96,86,99,91,111,94,100,105,104,87,92,106,95,90,100,91,91,96,86,91,91,100,98,95,87,95,108,96,89,90,82,92,87,76,98,84,99,105,91,95,100,111,100,97,83,107,100,98,100,99,97,96,92,95,89,90,105,98,96,83,101,113,98,97,96,88,88,100,97,99,92,100,86,107,98,93,95,97,97,92,88,102,86,102,88,105,102,104,93,107,126,114,105,101,95,106,100,103,101,102,97,91,91,104,87,97,91,102,98,109,98,91,101,92,98,100,94,83,69,94,100,95,113,105,92,87,106,94,82,102,92,115,94,126,96,108,80,104,101,87,100,87,116,95,70,90,92,86,103,88,113,99,113,96,98,100,104,102,85,90,105,105,95,92,92,96,90,98,96,103,75,88,112,105,86,97,94,113,105,91,85,79,95,86,115,92,92,98,91,94,99,102,98,98,88,95,105,98,96,88,90,82,100,90,106,97,101,104,78,95,99,76,88,108,107,89,95,101,98,76,96,92,95,102,86,101,88,92,94,101,99,113,94,99,114,103,86,107,102,95,91,90,103,96,80,85,90,100,109,98,88,92,95,105,95,91,85,97,105,91,69,83,101,97,107,102,98,90,96,100,98,93,78,102,86,75,92,93,92,103,117,95,100,98,104,100,94,93,89,92,92,92,95,83,90,101,95,94,82,108,106,78,85,96,83,93,89,88,89,93,94,104,93,85,88,104,98,94,104,94,100,92,94,104,101,99,102,100,85,101,94,77,94,102,108,93,110,101,102,99,93,100,97,102,114,99,100,99,109,96,108,112,102,106,106,100,93,91,102,99,91,108,101,108,108,86,103,115,104,98,103,106,103,98,85,103,99,92,90,101,103,105,100,101,87,82,99,96,98,90,104,90,107,89,94,97,106,117,106,87,94,93,94,96,100,107,100,98,101,95,99,97,90,84,97,102,98,102,108,74,101,97,87,106,98,106,98,89,100,102,95,104,99,112,110,92,95,93,106,96,104,102,92,92,96,102,101,94,101,102,111,99,102,105,96,91,82,82,105,91,73,103,112,103,92,98,97,99,99,94,103,98,100,104,103,99,97,96,90,98,94,107,113,97,106,96,91,102,93,107,99,101,74,101,94,106,103,108,83,105,100,105,97,104,116,112,86,95,90,98,96,104,93,82,100,92,98,103,87,86,80,96,101,91,103,99,102,104,71,96,102,107,100,92,99,96,102,107,100,99,96,93,103,94,100,87,102,100,88,100,98,90,113,95,91,96,99,102,82,114,102,93,96,91,99,87,101,91,102,90,104,102,103,107,99,96,91,100,97,94,100,102,100,112,102,109,102,91,105,93,116,83,103,104,84,107,100,93,101,100,98,87,93,103,105,107,110,88,102,100,91,75,100,83,102,98,95,90,91,104,112,100,86,87,95,91,91,100,94,98,96,104,106,97,95,94,93,105,97,107,103,98,96,93,98,88,98,105,117,107,96,109,93,117,93,108,93,95,99,104,89,97,87,95,100,96,98,116,84,91,101,98,99,101,94,100,98,91,85,72,106,105,107,93,105,88,81,96,93,96,105,96,87,92,95,100,102,100,90,89,105,81,91,83,105,102,100,93,121,100,106,115,86,102,94,105,96,103,90,100,91,83,102,95,88,104,97,91,106,97,100,98,87,95,95,95,111,87,106,100,94,100,94,113,101,92,102,109,93,100,98,103,96,100,95,88,95,101,84,88,94,91,86,85,103,91,97,84,91,105,108,94,75,79,93,96,88,104,97,108,88,96,108,109,103,96,80,101,102,100,96,103,83,101,94,102,107,115,100,102,106,107,91,107,89,104,91,115,90,104,111,94,90,91,103,106,111,107,106,93,102,94,91,102,95,105,100,109,74,96,105,103,92,91,103,98,100,87,110,92,100,101,84,88,108,92,95,92,90,101,104,77,99,95,92,107,94,118,96,107,96,106,106,88,108,96,105,98,97,93,106,98,82,102,88,104,97,106,109,99,93,90,101,87,94,87,112,97,84,94,93,93,101,103,86,94,110,91,109,99,91,105,88,104,96,98,107,96,94,103,93,90,104,94,98,116,108,101,104,112,93,83,94,97,80,96,97,99,91,84,91,104,84,92,108,88,109,96,92,101,97,95,108,88,106,87,107,100,99,83,104,98,91,101,87,100,97,84,98,86,110,91,100,98,104,96,93,104,91,93,106,92,101,107,83,89,96,96,95,104,88,96,105,89,101,91,96,94,90,101,92,99,96,99,90,98,87,88,96,88,106,105,95,99,93,87,91,104,106,92,95,87,97,74,88,99,101,86,89,97,85,91,86,105,106,89,84,92,88,105,101,103,97,94,87,111,109,101,94,105,103,99,106,93,106,98,91,104,107,102,96,94,83,96,95,112,108,96,108,99,75,104,101,89,100,97,100,94,81,97,79,85,97,89,91,103,96,88,100,110,95,94,104,106,100,102,98,87,104,83,94,104,107,94,102,111,102,100,100,91,96,88,83,96,106,96,94,102,93,95,93,96,97,108,96,103,95,91,85,87,93,102,97,91,92,97,95,102,110,102,100,102,98,100,107,96,100,98,96,99,92,129,106,95,100,97,112,95,102,94,104,102,93,108,105,107,91,98,101,95,89,96,84,109,87,103,92,100,101,105,87,103,105,85,107,100,90,102,98,97,104,105,101,101,88,111,95,99,99,86,94,110,100,93,99,95,93,101,84,96,106,98,92,102,93,91,98,105,88,97,82,104,92,105,95,106,101,106,91,86,88,99,102,97,94,94,101,101,95,106,108,105,102,104,88,98,103,105,104,102,101,93,109,113,92,91,86,88,105,108,100,96,97,87,104,98,104,101,94,99,91,73,101,100,94,98,87,100,99,103,102,102,116,110,84,90,107,107,91,101,100,104,82,102,107,99,77,104,99,91,98,84,76,90,94,102,98,98,98,95,98,95,102,98,112,90,94,104,98,94,99,96,95,100,94,98,66,97,106,98,101,104,106,85,90,93,115,99,87,105,91,114,89,110,104,103,88,97,110,95,101,105,95,97,116,92,104,108,110,98,90,120,98,95,90,102,90,102,109,97,96,91,85,96,91,91,100,121,80,92,94,98,104,97,97,95,100,106,100,65,105,92,104,95,101,89,110,89,98,89,84,112, +743.95575,76,87,103,89,88,87,96,106,83,108,88,93,88,103,100,92,103,106,115,103,109,91,102,88,95,91,92,92,109,105,94,93,99,90,99,99,102,97,102,100,118,98,104,94,101,84,92,114,109,96,91,111,101,91,95,94,88,99,98,112,84,92,112,92,97,83,93,117,97,96,93,105,90,71,89,105,112,100,95,80,89,94,108,108,92,86,100,87,111,104,105,102,106,99,95,92,101,97,96,112,92,103,106,96,101,109,104,92,104,117,99,87,102,107,96,110,100,102,104,105,96,101,99,98,114,107,96,90,109,97,99,89,88,93,97,103,95,112,106,104,90,98,90,101,84,96,97,98,66,104,102,96,103,97,112,102,104,94,97,89,97,101,95,101,101,87,91,84,93,106,104,88,104,96,90,97,100,75,97,98,89,81,103,90,102,102,102,89,111,95,99,90,102,105,89,102,84,98,92,96,105,106,90,104,92,90,115,101,114,101,105,107,97,95,83,83,92,101,96,104,89,71,98,94,101,94,88,108,113,94,101,105,87,104,109,104,97,104,106,97,99,100,98,91,82,97,100,99,92,93,92,103,101,109,95,96,98,100,83,97,96,114,78,93,91,117,102,97,102,89,96,97,95,84,85,93,92,100,92,102,99,98,113,93,91,92,92,105,103,96,96,96,117,104,102,99,111,103,91,106,87,71,113,106,86,102,105,101,101,103,94,106,100,101,98,98,97,107,97,94,97,98,98,94,96,93,99,95,105,110,95,91,98,107,104,96,91,90,98,103,100,92,106,94,98,89,72,94,104,103,108,87,100,92,113,106,94,98,109,91,90,94,89,103,100,97,92,101,99,98,106,100,112,95,94,94,100,111,92,100,104,100,97,97,85,82,94,90,105,87,87,93,87,104,91,82,88,99,94,106,87,98,85,91,99,85,100,87,102,104,84,96,101,88,102,104,79,104,104,93,102,103,98,99,91,96,107,90,88,101,98,103,89,93,104,87,95,109,90,94,97,109,84,97,99,94,95,87,91,104,98,95,102,89,91,104,92,106,105,96,104,87,96,100,103,101,92,111,100,103,96,100,106,94,97,100,100,105,87,94,105,99,101,118,100,101,95,95,106,95,90,92,101,95,71,93,102,88,84,96,90,113,88,96,96,105,95,96,79,94,120,91,92,93,98,100,108,93,96,87,86,96,98,102,94,102,90,88,94,103,90,96,89,99,98,88,102,89,97,99,101,95,96,104,95,86,97,101,100,104,96,91,109,107,93,102,108,117,95,95,96,99,111,87,89,94,95,93,100,91,95,90,94,90,104,97,105,100,93,105,90,95,120,107,89,98,83,116,100,90,98,98,96,96,99,95,86,101,100,103,88,106,97,94,101,85,93,88,93,95,89,105,89,94,98,100,101,92,91,106,93,86,104,93,92,92,97,108,103,101,90,98,99,93,84,89,88,91,100,125,105,94,105,72,97,92,97,94,101,99,97,102,107,104,86,95,86,100,103,102,91,99,95,89,99,100,103,84,100,105,100,100,91,103,91,99,101,95,104,84,105,110,112,109,88,83,93,100,95,102,108,100,102,104,101,99,109,100,107,90,99,98,91,99,92,106,92,93,102,109,108,108,91,91,92,88,88,94,101,91,87,95,95,83,94,92,87,94,99,106,97,87,100,97,98,63,98,95,97,105,108,99,89,101,94,103,99,98,101,90,107,95,89,115,84,105,100,101,87,75,90,93,105,96,87,100,100,98,95,89,116,91,112,109,96,98,97,104,100,91,93,101,103,94,89,103,89,96,91,110,100,93,80,99,90,87,84,92,96,97,96,87,100,89,101,100,99,109,100,99,100,95,98,81,105,95,98,109,100,100,91,107,96,85,88,106,97,92,102,105,99,104,106,65,93,109,104,87,95,99,113,99,109,92,98,99,100,89,102,94,108,92,87,95,92,105,107,98,92,105,102,102,102,85,104,100,106,97,107,97,89,80,108,100,91,88,101,75,98,81,93,100,93,96,100,92,81,103,86,108,100,117,97,100,99,91,94,100,96,94,110,99,96,88,106,100,94,110,75,96,96,106,96,78,101,96,103,112,97,79,99,104,114,113,104,99,88,98,90,92,98,101,98,105,93,98,84,85,95,90,98,77,101,94,103,99,115,107,99,86,86,71,99,95,86,101,105,98,105,98,104,101,97,99,109,71,96,96,110,94,113,95,99,69,100,91,105,93,96,105,94,96,85,88,94,97,103,92,97,101,101,94,101,101,105,97,101,85,103,103,106,90,85,96,107,92,94,109,88,106,107,96,88,99,89,92,110,76,83,91,94,87,104,83,94,95,92,88,112,83,100,87,98,82,102,115,85,104,83,79,104,101,101,109,88,101,101,93,100,107,95,101,112,81,86,97,99,106,109,99,95,111,97,101,98,107,90,88,103,80,112,96,90,94,96,98,102,106,80,85,101,97,91,113,113,100,82,96,104,96,89,102,106,84,93,95,94,99,91,105,101,85,130,104,100,109,96,90,92,79,96,105,100,95,98,99,97,91,100,97,102,101,89,93,98,95,93,97,91,80,81,90,93,87,93,98,98,104,100,98,105,96,69,102,88,80,105,92,109,90,97,86,108,99,95,102,103,102,90,98,87,95,102,93,92,98,100,106,91,94,78,83,88,108,86,98,75,95,93,80,98,87,83,104,105,96,100,96,92,98,84,95,92,108,105,75,90,97,89,93,99,87,95,105,114,91,96,92,88,104,95,100,96,98,114,112,99,99,91,97,103,102,93,100,103,102,97,108,101,99,94,83,97,100,106,97,99,88,101,109,85,88,95,101,100,98,98,101,96,95,99,90,101,87,101,80,99,97,74,111,104,103,102,91,111,87,97,91,97,107,103,79,88,83,94,101,93,101,93,103,106,99,110,92,93,99,91,86,104,100,96,108,87,87,105,96,103,86,96,82,105,96,91,108,98,84,109,115,101,104,100,91,98,93,101,95,95,98,96,101,88,98,96,92,103,99,92,87,99,88,116,101,96,97,125,90,95,104,97,105,101,96,105,91,88,97,92,93,95,87,91,99,96,85,93,95,95,99,111,106,97,98,96,100,108,86,97,101,96,91,88,110,87,96,101,92,80,83,94,87,87,90,104,92,102,119,121,93,87,102,79,91,94,98,110,92,97,98,103,79,107,99,96,87,91,99,92,94,108,98,89,121,87,88,101,102,100,89,95,103,99,94,89,92,98,103,117,94,107,98,85,87,104,105,98,114,90,95,91,94,89,105,117,107,105,104,94,87,103,103,91,80,99,110,92,108,99,96,110,87,92,98,96,106,99,92,97,81,91,89,87,91,94,94,74,91,102,88,94,102,109,103,92,92,87,92,96,104,98,113,101,102,81,108,94,95,102,93,88,97,94,88,97,105,92,83,102,64,92,102,93,94,100,99,98,102,106,90,94,91,97,108,93,93,89,91,99,102,94,116,109,106,85,95,99,103,100,116,102,89,92,104,100,97,100,97,85,99,91,119,77,102,94,95,89,100,110,96,108,97,93,88,95,97,90,94,88,86,103,108,101,98,90,101,97,111,102,100,95,95,96,86,93,108,91,102,109,96,89,100,93,106,100,97,94,98,87,96,105,106,102,91,99,105,101,97,96,83,95,88,92,94,105,95,89,95,90,99,98,88,95,102,98,103,83,92,91,100,108,103,84,104,109,94,93,90,94,94,97,95,98,93,91,91,105,98,99,93,115,95,96,87,97,91,90,90,90,103,92,87,88,92,107,94,83,87,101,91,96,98,92,109,108,95,102,98,91,95,96,94,101,100,111,102,106,104,79,104,97,95,82,106,80,102,88,99,123,91,107,97,97,102,94,96,101,98,88,95,92,95,126,93,97,90,82,92,95,77,102,106,105,95,94,99,100,107,100,100,98,83,100,87,93,90,101,96,87,79,100,101,102,93,96,97,82,94,94,95,86,92,98,96,108,101,92,101,90,83,97,95,105,96,73,103,103,96,108,91,102,110,95,91,94,98,85,89,100,81,104,104,112,97,104,103,107,97,95,108,94,94,101,106,93,105,96,93,70,104,103,87,103,103,121,109,104,104,81,75,101,90,103,108,98,96,93,101,105,92,98,97,93,103,86,98,100,95,92,122,104,97,104,95,100,89,94,107,89,92,110,86,104,95,107,106,95,96,83,92,103,88,88,67,85,106,97,98,95,97,88,100,106,99,93,90,88,112,106,93,94,87,93,102,101,109,98,95,108,94,100,101,97,84,98,106,99,101,105,95,91,105,94,95,91,85,103,112,76,99,97,109,93,91,96,92,108,99,99,102,99,84,97,85,96,82,92,87,94,105,112,98,85,92,101,96,101,91,91,81,111,96,105,100,104,102,93,89,105,109,97,90,100,90,108,84,102,97,89,115,121,112,94,87,79,102,94,95,82,95,89,99,95,101,106,97,87,113,100,99,100,127,93,106,102,101,106,94,90,84,84,101,88,100,92,110,97,93,103,94,115,107,91,116,97,99,104,98,115,94,92,96,91,99,85,87,111,91,97,101,104,91,94,89,90,90,87,86,98,107,88,103,91,106,104,105,100,106,107,90,83,105,91,93,93,103,94,104,86,95,109,96,97,101,99,95,108,92,80,95,88,96,94,91,96,102,89,94,114,104,99,100,126,129,90,80,89,100,125,67,93,90,94,83,105,104,99,102,108,90,101,92,91,94,94,94,101,99,98,90,81,91,95,94,96,100,108,102,97,87,92,103,95,75,98,103,92,122,93,104,88,97,110,91,93,96,91,100,102,102,92,108,97,92,96,99,103,93,105,92,101,92,99,112,86,101,90,112,86,111,96,86,100,80,97,98,88,94,100,92,99,93,96,98,105,110,94,105,94,96,90,94, +744.09717,68,96,75,97,90,99,107,100,86,100,104,103,103,85,103,103,91,96,98,111,104,89,97,116,93,98,94,97,102,87,104,89,93,103,102,99,100,96,94,95,87,95,97,93,93,121,97,96,105,97,108,97,95,100,90,94,90,93,101,89,99,100,94,87,89,77,100,102,90,109,95,80,100,92,103,97,90,96,98,110,95,112,93,107,93,109,82,103,90,78,87,98,95,100,96,95,95,94,92,109,92,103,103,98,92,91,94,92,104,88,105,92,100,92,95,82,87,109,97,89,107,91,88,109,88,91,108,101,110,80,100,106,88,92,101,99,99,84,98,99,90,103,94,88,91,98,103,99,93,86,107,97,99,91,96,91,90,70,98,95,100,105,99,99,90,87,112,93,91,107,110,104,93,94,99,97,102,67,97,99,89,99,90,91,93,91,68,89,97,100,94,101,109,101,97,95,108,95,95,94,95,104,104,101,111,96,96,105,114,103,93,100,103,91,97,105,106,111,97,90,76,86,107,64,110,108,92,90,95,93,100,98,89,96,97,104,93,105,110,106,89,105,99,93,97,84,83,96,88,76,87,100,89,121,73,102,79,111,100,91,76,98,99,99,92,106,98,98,91,101,99,104,93,90,109,100,91,96,92,83,100,95,106,112,106,88,97,93,100,93,96,90,103,92,102,90,102,104,70,98,106,107,96,97,90,96,90,96,98,103,82,113,95,106,103,97,101,96,97,90,90,85,87,113,108,100,97,84,122,105,97,86,97,92,92,94,84,94,96,100,101,97,72,91,100,80,101,96,100,94,94,98,101,110,91,103,96,103,90,100,100,98,90,94,87,97,104,95,92,97,107,97,94,108,87,107,102,116,98,85,105,102,101,91,104,85,97,99,97,90,112,96,93,106,100,99,86,82,112,106,95,92,90,105,93,91,88,88,84,83,86,91,93,114,104,90,90,103,107,91,118,82,96,93,89,94,89,82,97,101,97,103,103,105,102,89,91,97,111,97,92,81,95,77,87,91,91,96,92,107,105,93,94,96,91,112,102,95,104,100,88,91,105,109,93,106,105,100,102,106,94,99,105,93,83,101,90,109,96,84,92,100,104,91,96,99,91,91,102,93,106,85,87,90,99,95,103,90,94,96,100,98,98,107,98,92,100,95,94,91,93,96,88,97,91,86,96,96,101,108,101,89,90,95,93,85,114,88,96,109,97,113,99,78,94,105,105,107,95,91,105,99,104,110,102,93,96,90,104,101,103,106,97,131,89,100,106,87,90,108,92,118,91,92,90,102,102,97,95,89,86,95,92,106,99,89,86,92,109,80,99,64,92,99,111,94,106,90,98,96,103,89,102,85,120,105,103,95,111,88,89,90,97,88,101,102,91,87,83,87,100,86,100,104,89,98,104,90,100,97,90,91,131,90,91,102,91,94,84,88,86,101,99,107,85,96,102,94,95,64,113,97,100,95,100,86,100,89,79,96,102,71,95,100,91,97,106,101,97,103,98,101,98,93,93,101,104,92,106,103,106,100,98,103,87,110,112,105,111,103,77,91,94,105,92,91,91,102,102,94,92,92,105,107,107,96,94,98,87,91,77,97,106,86,93,92,94,98,94,86,108,112,98,103,87,96,95,86,98,96,104,97,99,84,87,86,85,90,91,102,104,94,100,82,97,97,100,96,118,91,100,99,96,94,98,102,94,107,101,96,97,79,93,90,105,105,108,87,105,103,97,109,85,101,97,109,88,99,78,88,91,95,85,105,102,101,88,97,103,96,102,109,94,97,83,110,73,99,103,101,107,95,101,101,96,109,90,95,97,87,90,103,103,99,104,131,102,90,98,88,84,86,90,96,101,90,96,86,85,106,98,99,94,108,89,101,101,97,94,95,95,95,99,95,95,109,99,94,90,92,100,100,103,93,90,101,89,94,103,97,101,101,101,87,90,93,116,102,94,93,107,98,101,93,87,86,79,98,92,84,87,110,90,82,90,93,100,88,95,90,96,95,102,82,115,97,96,101,100,77,104,101,112,102,102,89,99,115,107,97,101,71,102,101,96,110,86,98,109,101,90,104,95,101,93,98,96,112,87,104,87,106,97,96,101,81,86,102,92,86,98,99,96,99,96,87,104,92,77,97,78,95,110,92,87,96,97,104,105,94,104,94,85,100,102,88,91,108,89,96,112,95,105,94,110,87,88,96,90,90,93,103,91,91,78,91,100,101,83,85,96,106,89,100,84,109,89,108,97,79,106,87,91,78,94,93,88,96,94,91,100,104,85,86,110,104,102,102,91,105,90,99,90,93,82,102,102,101,70,95,100,101,99,91,105,90,92,100,129,96,97,92,100,91,102,87,87,104,96,86,102,97,81,94,111,91,133,83,99,110,94,91,78,95,102,101,94,96,81,91,97,93,119,102,83,102,88,103,95,93,101,99,85,111,93,82,110,93,103,107,100,88,81,102,90,93,95,89,105,108,107,94,82,87,101,82,120,95,95,92,86,99,95,109,85,111,104,93,96,104,105,111,96,76,117,85,100,106,93,91,65,103,105,92,110,92,89,88,118,102,99,109,85,96,99,107,95,88,102,99,86,94,96,96,101,89,97,101,95,95,102,104,112,102,106,106,104,91,96,97,102,94,95,78,93,105,104,101,95,91,105,95,91,91,92,104,111,96,106,103,121,102,92,93,87,109,110,95,87,98,107,94,106,89,87,107,80,98,103,111,104,103,81,100,97,102,96,102,100,104,94,106,88,100,102,113,103,97,106,101,103,100,93,100,99,102,87,91,83,99,116,113,91,94,100,93,95,98,106,120,110,97,109,94,102,103,90,102,100,93,96,102,94,111,100,90,88,97,104,112,91,87,104,102,108,99,98,81,89,101,92,95,92,107,100,89,74,87,92,128,100,100,122,91,95,97,115,94,113,87,95,98,87,93,92,105,104,96,126,95,112,107,98,102,101,83,87,89,107,93,102,112,103,79,106,102,101,97,87,102,110,98,90,98,100,78,104,87,98,93,98,97,100,109,99,95,100,85,87,103,87,97,88,87,84,95,98,94,108,89,117,109,99,78,98,73,95,90,98,101,118,100,90,113,109,100,99,98,119,102,105,98,97,104,94,102,107,96,129,104,109,92,109,97,78,80,102,99,100,100,88,85,100,94,107,96,100,96,103,95,96,97,97,101,101,90,101,107,97,100,108,88,89,98,93,92,97,91,87,98,107,108,96,93,92,104,100,93,94,90,97,90,103,111,105,72,92,88,99,100,95,94,101,100,92,108,82,86,89,91,94,101,89,98,117,125,101,104,111,103,97,101,104,93,91,91,97,109,89,102,87,105,104,102,93,96,97,104,96,85,115,102,95,103,109,99,129,127,93,109,90,104,94,95,91,91,90,98,97,102,90,101,106,98,89,99,106,98,91,90,98,96,78,102,90,88,100,96,99,95,105,92,101,109,116,97,95,99,109,92,101,90,111,110,94,103,91,94,95,98,105,111,104,90,96,99,101,87,88,104,99,94,101,98,94,107,103,97,103,104,99,97,99,84,105,88,79,100,96,98,107,84,101,98,113,94,117,92,102,93,82,103,100,98,107,111,105,98,102,103,96,104,106,94,109,96,92,93,111,96,87,90,103,105,97,98,106,79,111,98,100,97,96,99,105,101,98,96,89,97,98,100,101,90,93,81,83,99,106,93,97,82,106,116,104,102,122,95,90,90,103,107,109,94,102,99,109,93,104,99,100,95,94,103,110,87,110,67,98,100,104,111,98,84,87,106,88,96,97,95,93,97,100,100,125,103,100,91,100,92,104,93,103,98,101,102,88,92,103,104,97,103,100,95,99,104,114,95,87,95,94,108,104,110,104,87,92,98,108,94,105,93,91,90,108,94,98,108,94,93,92,105,107,104,94,95,105,86,97,95,93,101,106,84,98,100,95,106,98,88,99,109,94,103,87,93,104,92,105,99,103,103,93,101,90,101,105,111,100,100,105,106,88,104,117,97,94,97,121,73,98,108,100,98,116,105,109,101,100,89,98,113,102,99,101,96,115,105,103,105,121,96,107,93,90,92,98,101,93,98,105,99,95,100,101,103,93,105,95,106,96,89,98,92,95,106,86,101,109,106,97,104,76,108,106,100,110,104,100,91,90,104,97,92,91,87,86,108,104,90,98,109,98,100,111,97,89,96,97,100,106,105,100,100,94,97,100,99,102,97,103,92,98,103,109,101,110,102,104,85,87,88,105,97,101,92,95,107,107,106,90,98,88,106,93,94,96,84,99,104,93,98,98,94,70,103,95,98,96,109,99,98,98,95,102,89,109,100,95,93,98,96,103,102,96,98,113,106,100,95,110,106,99,104,97,103,96,103,102,102,98,111,109,87,91,84,100,101,89,99,93,88,113,106,91,95,99,82,92,95,101,91,98,97,98,86,104,96,87,102,117,96,96,108,83,87,88,98,108,105,99,88,105,101,100,97,91,107,96,96,88,96,100,105,92,108,88,99,112,98,98,85,90,114,96,95,100,94,109,92,105,93,113,108,109,101,94,106,100,111,93,99,95,114,103,99,101,103,95,98,95,98,98,102,102,105,107,115,109,106,110,87,60,108,88,91,58,103,107,85,99,98,96,95,108,91,89,92,87,95,102,91,90,112,99,106,101,96,110,94,96,95,88,104,89,109,97,99,83,90,119,105,113,96,101,105,102,99,93,86,98,97,73,100,105,104,124,86,99,103,109,93,88,108,98,99,103,112,100,93,103,93,101,101,107,109,111,94,110,109,100,95,98,89,81,99,95,96,90,94,104,106,92,103,103,121,91,98,106,114,113,110,80,95,95,95,92,108,99,99,100,107,103,120,87,94,97,113,105,105,106,101,96,99,100,98,79,90,104,93, +744.23865,97,101,96,83,94,99,113,99,95,103,101,95,100,111,85,98,103,100,96,99,101,80,96,102,101,89,100,88,108,93,93,98,101,81,101,88,75,87,85,100,80,101,99,98,100,91,100,91,100,102,94,87,103,92,101,96,94,105,104,101,98,111,103,96,113,105,102,87,79,79,110,105,98,105,101,105,92,99,98,135,105,93,113,122,108,92,104,107,101,78,81,105,91,91,113,90,99,108,96,94,97,101,93,90,96,89,88,109,65,82,105,109,103,79,93,88,95,96,107,95,108,95,92,96,82,114,103,92,99,99,98,105,105,95,92,97,92,108,90,105,86,123,100,101,103,100,93,104,115,94,88,87,109,75,101,95,102,83,93,101,91,97,105,96,104,94,92,88,92,99,106,99,96,101,106,94,112,67,102,88,102,105,106,106,93,88,96,92,96,108,80,105,103,94,101,84,104,84,87,92,89,110,95,99,90,97,85,103,118,94,72,95,108,98,91,99,108,93,94,99,98,120,78,90,93,97,90,103,101,107,113,91,104,87,94,97,109,106,91,89,105,92,94,104,92,105,99,106,95,91,100,102,95,96,88,104,100,99,98,95,93,105,83,93,87,97,109,91,95,110,79,96,104,94,105,100,108,97,109,96,91,105,101,93,99,99,92,103,96,108,83,98,107,118,97,87,93,101,98,88,105,97,101,107,85,86,92,103,96,106,103,101,95,98,99,97,94,91,98,93,104,99,100,105,96,102,95,84,100,94,92,97,101,101,95,103,108,96,94,91,97,90,86,103,102,97,99,103,92,98,103,94,92,86,101,99,102,101,95,99,104,100,87,64,102,87,85,97,88,108,89,95,103,100,105,91,104,98,92,102,108,107,97,90,107,90,93,93,102,91,103,89,96,99,94,89,92,100,92,96,102,100,95,104,91,92,91,87,100,103,88,96,83,100,131,98,88,93,94,93,101,107,87,96,95,91,97,96,105,93,111,100,91,105,102,103,104,102,99,103,95,97,95,95,121,105,94,93,106,101,96,104,104,101,101,107,99,100,109,104,105,109,104,108,95,94,98,114,112,94,84,100,78,102,96,91,105,107,91,109,105,107,105,103,98,95,114,92,104,94,94,97,99,103,98,96,104,93,107,101,100,102,97,106,107,94,112,105,102,93,101,92,99,91,95,94,99,94,107,94,100,103,105,103,105,113,100,104,101,98,89,71,87,99,95,101,106,92,97,113,102,101,96,112,92,92,105,96,102,94,106,110,115,97,111,97,96,86,106,107,92,92,96,108,112,109,103,107,59,97,93,93,102,86,101,99,108,89,102,88,92,95,86,102,83,93,99,104,113,99,103,97,96,89,105,91,87,86,108,100,100,95,86,104,94,84,94,104,89,90,96,100,96,101,93,92,102,92,94,93,105,88,105,96,101,119,101,121,94,96,99,95,94,104,91,104,92,90,101,81,100,99,93,92,86,88,90,91,106,100,97,88,98,95,95,98,106,109,97,102,93,91,105,105,92,97,96,92,83,93,94,103,103,107,101,97,105,96,105,92,102,103,90,89,93,97,99,101,114,97,100,95,89,104,105,102,101,93,110,102,100,104,75,88,97,110,110,99,101,95,104,101,98,88,90,101,100,88,104,103,97,71,103,84,94,98,91,86,112,109,97,103,95,92,114,87,96,91,93,117,109,101,92,99,100,99,96,101,84,108,94,91,98,135,99,101,105,101,105,108,89,109,77,94,93,100,89,68,103,96,107,109,113,95,104,96,101,107,104,74,96,108,101,104,102,104,95,99,103,68,95,109,101,91,95,112,96,104,96,101,89,104,106,86,91,100,102,93,101,88,88,108,91,90,96,96,90,75,103,127,82,95,111,98,91,92,86,91,101,102,102,102,101,96,94,96,100,100,96,105,95,104,96,106,99,102,100,82,107,96,91,84,101,99,87,104,92,110,94,105,103,92,93,91,96,99,92,113,101,99,109,104,92,101,99,101,68,97,90,100,94,100,102,100,90,102,94,97,85,95,97,105,96,97,90,94,81,105,108,100,99,121,107,85,95,112,96,94,90,97,91,105,117,100,110,98,98,111,83,98,92,95,86,99,98,95,92,99,90,95,88,102,110,96,91,100,94,96,93,102,91,113,100,105,88,109,95,106,103,98,90,95,98,96,130,89,106,91,92,108,102,115,89,111,102,100,90,107,91,94,98,109,103,96,89,91,113,96,88,103,98,98,105,93,73,101,97,100,83,94,96,99,91,100,85,108,90,97,101,99,99,100,93,110,96,99,106,93,88,112,122,109,82,97,94,101,100,101,92,101,98,108,93,90,84,113,106,99,71,103,93,102,95,95,94,89,95,113,106,100,98,100,93,110,64,97,108,103,95,102,104,96,95,93,97,88,86,115,93,97,91,99,99,94,99,87,88,91,109,90,96,106,96,91,77,97,90,91,99,83,106,87,93,85,104,102,92,88,104,92,94,100,91,79,104,101,97,98,100,98,116,96,100,100,90,86,98,106,111,95,102,104,96,98,102,105,90,94,101,117,100,102,87,101,96,86,85,97,98,100,99,117,107,97,107,96,94,108,94,94,93,94,95,91,95,102,107,104,107,103,95,99,95,96,90,101,91,104,101,75,92,92,100,89,102,112,98,94,95,99,109,111,116,95,94,102,102,103,92,101,103,101,100,97,95,113,102,100,77,108,91,100,97,85,93,99,91,101,95,108,107,100,97,82,99,107,71,111,109,91,78,93,91,109,100,94,86,95,100,94,94,102,102,101,105,99,100,103,102,105,87,85,87,104,95,87,97,109,100,96,100,101,103,90,93,102,94,96,86,86,90,110,101,104,108,96,100,102,97,94,89,77,110,90,100,91,96,97,101,100,104,105,98,98,96,97,95,101,93,113,76,99,107,105,113,101,99,95,88,100,96,104,97,101,91,108,99,98,114,82,116,92,97,124,76,96,102,95,97,102,97,97,101,100,96,107,96,101,92,84,99,126,94,89,104,103,97,105,99,106,98,97,124,112,116,97,95,104,100,83,91,105,102,83,103,122,88,86,104,98,86,100,105,94,107,87,100,93,94,91,107,104,87,108,113,102,105,103,108,102,95,100,105,105,116,100,94,105,98,87,101,83,99,101,123,98,95,109,101,100,92,92,96,92,94,99,83,91,93,94,98,88,89,104,106,109,93,99,102,101,98,100,94,117,99,96,95,105,91,113,89,102,93,87,98,90,101,93,106,100,102,98,100,95,91,96,103,102,94,102,88,98,87,97,93,91,81,102,91,108,92,106,95,85,94,99,97,99,111,96,102,93,98,96,97,110,103,98,97,82,97,106,112,102,102,97,97,101,99,102,95,91,98,102,94,97,92,101,105,98,100,90,86,106,96,93,98,81,113,106,93,112,107,107,95,95,105,102,104,104,99,96,101,96,98,102,104,101,80,96,98,110,97,98,92,100,96,113,89,99,98,99,98,107,99,96,110,94,96,98,93,103,94,91,96,101,76,97,90,88,102,108,87,95,92,97,101,102,94,92,101,106,107,108,103,122,116,98,99,106,101,100,89,103,87,96,88,98,103,93,105,94,88,97,83,98,101,100,91,100,99,97,92,98,94,99,97,100,108,112,101,92,92,95,85,87,90,93,97,104,87,87,103,105,96,94,78,91,108,97,96,108,102,99,85,109,92,112,89,108,91,93,99,104,102,98,96,101,100,90,91,99,91,89,93,92,105,101,97,101,99,83,105,110,91,87,100,92,103,93,96,83,106,98,102,73,85,96,129,74,88,99,100,87,97,93,89,96,88,91,91,98,120,103,97,102,103,92,98,100,110,97,95,106,106,102,95,98,104,96,99,93,96,115,104,96,111,97,86,92,93,97,101,97,95,86,96,96,84,80,95,100,89,91,98,90,104,91,113,103,101,87,60,96,112,109,96,96,107,113,94,106,86,95,95,88,99,106,101,99,96,90,93,105,107,103,99,92,86,107,87,98,110,97,113,97,85,96,100,111,110,107,92,103,111,98,101,93,101,109,90,104,90,91,99,101,102,89,102,79,91,94,99,101,102,96,99,91,96,95,106,96,109,103,98,113,96,91,84,90,99,93,94,98,95,109,97,104,103,103,100,108,102,98,103,86,98,104,83,87,95,100,108,99,104,111,103,101,103,91,97,87,109,108,95,101,101,105,95,106,83,74,99,93,98,110,95,104,108,112,90,101,99,97,92,100,93,104,91,88,104,77,97,104,94,105,101,104,112,90,99,92,111,83,116,86,101,79,88,113,105,101,101,83,92,97,103,100,93,103,94,91,108,117,86,87,83,95,99,98,104,101,103,97,83,103,109,95,92,108,95,88,88,105,88,83,105,99,101,91,96,99,86,100,99,92,107,106,87,96,79,81,83,107,102,103,90,95,107,103,102,99,92,89,94,108,97,92,100,92,104,101,104,117,90,97,100,110,95,112,90,96,103,102,95,97,102,109,88,89,99,107,90,99,105,103,101,98,100,98,93,97,94,95,99,95,93,96,99,115,93,78,100,97,97,73,117,98,96,97,112,102,96,98,90,96,99,97,95,110,88,110,94,102,117,112,99,106,112,105,102,93,95,99,117,98,97,102,93,95,80,87,95,77,108,86,105,91,104,90,92,109,98,88,102,85,114,103,93,95,98,93,102,84,91,93,108,111,111,99,96,94,85,93,101,96,103,109,112,85,97,102,90,110,104,65,92,82,99,109,106,108,111,80,118,92,96,81,89,103,96,100,91,113,101,112,104,82,94,83,99,104,98,132,94,94,96,117,105,96,110,101,98,100,99,99,109,107,102,100,95,91,90,106,94,109,97,91,98,101,99,85,99,91,110,99,103,113,83,101,115,104,103,81,96,110,99,102,102,93, +744.38007,105,106,96,116,86,101,72,98,99,94,110,97,104,107,96,95,97,87,94,101,94,96,97,107,80,102,107,81,74,104,90,88,92,93,93,96,109,105,105,105,103,96,88,116,96,83,109,106,97,96,99,104,105,107,81,98,98,103,96,96,95,106,107,95,104,103,95,99,103,91,91,115,107,98,101,103,94,86,110,86,104,98,88,91,96,93,90,89,99,90,96,103,109,93,114,107,97,94,101,85,90,96,93,94,111,88,87,94,94,105,104,98,102,86,93,106,109,105,104,91,100,77,99,99,97,112,94,93,117,102,113,101,102,107,92,96,100,95,107,96,87,100,85,110,93,98,104,92,92,90,92,96,97,93,102,96,94,99,101,93,102,96,104,111,102,84,101,105,97,89,98,90,88,99,96,72,99,89,88,103,112,96,102,100,100,97,95,96,91,89,90,96,100,96,84,84,109,104,85,100,93,87,91,91,96,98,86,100,130,100,92,98,87,104,108,91,102,84,100,103,93,98,107,103,101,106,101,83,109,108,82,107,92,98,91,102,104,112,95,101,100,84,71,100,91,94,101,83,86,91,100,99,92,93,87,86,104,97,91,101,86,105,95,100,102,101,109,105,108,109,89,89,105,106,84,99,95,90,106,96,102,97,101,97,97,106,109,103,90,96,94,103,100,107,97,97,106,98,93,110,97,91,98,104,91,105,90,102,78,96,111,108,95,114,100,91,97,102,88,99,94,87,97,95,99,90,97,89,98,104,97,101,108,98,98,99,103,90,97,94,87,96,94,73,99,98,103,94,101,78,93,98,92,109,101,101,63,100,91,106,91,90,95,89,76,91,98,100,91,95,112,87,95,95,96,92,94,97,94,100,105,93,95,100,102,97,91,93,97,87,95,106,100,101,109,96,94,94,87,102,115,87,97,100,103,83,95,109,91,96,95,88,91,102,94,90,98,112,96,96,101,97,98,108,100,99,92,90,83,95,88,95,100,99,90,99,92,93,101,83,98,91,101,111,112,92,99,102,95,115,96,97,106,106,88,98,77,99,90,97,94,97,105,89,112,114,92,102,90,94,125,99,100,96,91,100,93,108,110,91,94,106,73,100,97,96,100,109,102,88,94,96,96,95,88,96,104,86,97,78,103,92,101,79,101,93,95,96,102,89,100,93,86,100,93,102,118,91,95,95,89,96,97,92,103,112,98,97,106,96,104,95,108,91,91,95,105,96,108,100,96,88,87,102,106,103,102,93,99,104,92,98,107,109,103,102,102,96,106,99,99,98,95,97,102,87,95,100,100,100,79,92,95,66,96,95,107,97,109,99,80,98,105,95,101,105,107,94,93,90,100,96,94,92,95,104,104,103,108,105,93,87,96,102,96,98,87,103,100,92,93,85,103,102,99,94,89,95,97,103,99,95,96,98,111,107,92,101,99,101,89,99,91,103,91,105,101,110,96,101,84,96,90,93,103,86,107,79,95,91,93,88,89,102,91,104,106,99,87,100,103,100,103,107,91,88,91,91,101,85,106,98,121,88,95,97,102,97,105,116,114,96,74,89,98,101,97,87,98,95,99,114,85,109,104,101,94,99,99,87,108,85,91,102,100,106,106,97,93,87,105,94,90,104,96,98,91,90,94,98,106,89,96,101,91,102,95,98,100,91,94,95,102,95,92,92,103,102,99,92,102,101,101,113,98,105,94,88,97,102,97,96,91,97,101,96,90,84,100,104,95,85,96,101,83,104,106,96,109,101,84,92,100,107,90,103,98,96,103,105,111,89,87,101,95,94,100,97,108,101,96,84,87,89,110,92,106,104,88,104,89,89,96,97,98,100,110,91,90,93,110,95,94,82,100,105,89,95,95,109,110,104,91,86,100,108,101,92,101,96,96,92,104,95,92,101,87,106,100,98,95,95,96,100,103,93,92,102,92,87,111,100,91,84,75,99,95,98,78,103,100,106,92,92,100,95,103,105,105,108,96,102,102,97,93,87,95,93,88,86,101,96,102,106,112,101,97,99,97,108,106,104,103,103,98,68,101,109,96,101,88,96,105,97,94,83,98,98,96,88,95,94,100,96,97,94,103,94,93,105,111,103,108,98,104,92,101,109,101,101,113,100,95,92,105,92,87,91,112,97,97,99,102,91,88,90,108,91,95,91,97,95,103,89,107,90,96,103,104,93,105,89,91,95,102,91,90,98,103,90,96,93,93,93,97,101,94,101,92,96,99,102,96,106,110,93,96,103,96,107,102,109,103,102,102,93,93,94,95,96,98,101,98,97,102,98,107,95,92,96,93,92,105,99,98,91,87,112,102,107,93,101,101,93,121,93,93,94,101,87,80,95,98,101,91,92,97,106,101,90,94,103,108,102,92,108,90,99,104,106,86,103,104,116,89,93,102,70,101,111,93,108,93,98,97,99,87,96,88,97,97,111,97,107,91,109,110,103,101,89,101,97,94,96,102,95,84,96,105,110,104,109,103,87,88,93,92,99,104,97,104,84,92,92,95,97,91,80,97,83,96,101,101,104,87,94,95,96,88,100,97,97,97,98,96,98,88,108,99,84,93,100,106,94,96,82,77,90,93,92,85,98,83,98,103,91,89,96,104,93,103,91,100,98,109,92,98,95,98,103,109,83,111,92,96,104,83,96,103,102,97,96,106,95,97,106,97,98,98,93,94,102,93,93,100,98,118,84,94,112,93,94,96,88,91,105,96,83,101,82,76,100,90,87,89,102,108,109,103,98,94,107,102,108,95,102,97,107,106,93,109,109,99,90,85,97,88,92,102,103,104,79,87,79,102,89,77,98,107,105,110,88,101,86,79,96,94,111,95,103,99,87,97,102,79,105,85,92,90,107,87,79,94,91,102,93,87,91,83,97,105,93,106,96,87,92,113,92,98,106,95,109,97,96,89,103,97,87,75,99,104,102,92,99,90,104,95,101,111,99,96,101,94,91,100,106,103,107,97,84,99,100,97,86,98,102,104,100,97,98,99,91,83,99,105,99,110,84,107,103,109,103,91,108,115,92,98,91,87,101,94,95,105,98,100,100,109,98,102,85,97,104,82,92,101,90,100,94,98,61,100,103,94,102,109,99,100,106,90,106,100,94,92,95,89,99,101,101,96,99,93,93,96,103,96,113,101,97,94,95,93,94,72,101,104,91,87,94,84,93,102,92,85,89,100,101,96,105,106,102,96,104,95,93,91,97,87,96,91,121,113,103,97,100,51,83,95,92,99,105,100,93,100,101,101,103,102,93,96,98,96,98,100,110,105,95,93,92,103,95,94,97,103,94,86,99,95,110,97,104,101,112,91,99,107,101,95,78,102,97,92,104,83,94,87,110,99,87,102,92,86,98,99,104,89,105,92,87,102,86,91,102,89,89,96,110,98,105,92,94,90,88,107,94,95,97,96,87,83,97,91,90,95,102,94,105,97,91,88,89,100,93,100,74,83,96,93,97,104,105,94,93,63,92,77,105,95,90,104,94,101,93,94,110,98,93,112,115,108,107,99,100,84,106,87,105,92,93,96,99,96,100,92,90,86,112,102,102,102,110,108,104,108,101,112,109,91,105,124,80,99,96,94,90,96,97,100,98,98,89,85,90,109,98,102,97,109,103,105,94,80,102,100,104,89,91,102,91,94,93,90,96,83,120,105,86,93,112,111,66,87,102,92,97,111,90,98,100,91,99,92,100,87,99,99,91,104,93,105,93,86,105,97,95,101,84,105,103,98,97,102,99,105,90,98,94,103,102,91,86,84,90,98,97,91,83,98,98,93,100,91,111,94,117,95,119,94,103,106,98,79,100,93,106,85,90,93,89,101,106,92,92,101,107,93,105,94,104,88,96,93,98,91,100,95,102,116,98,90,90,98,92,96,101,94,97,90,99,78,99,101,97,113,90,114,102,112,78,88,92,95,88,110,111,103,94,88,105,102,97,88,96,105,93,87,97,111,90,96,80,88,96,88,107,90,104,78,101,91,110,101,105,81,111,106,81,89,92,82,106,107,99,91,97,87,93,97,96,102,90,106,89,101,103,93,101,101,92,108,101,100,109,98,99,102,93,87,99,95,97,103,107,92,98,93,108,91,104,96,98,113,92,78,97,135,103,96,88,90,98,99,102,97,103,90,94,94,99,105,103,97,95,100,85,91,99,97,106,95,64,114,97,109,95,109,103,91,106,84,89,111,101,98,105,93,88,102,93,99,100,94,101,90,93,90,106,104,103,95,94,100,104,101,92,97,98,100,116,109,94,104,94,90,86,92,109,85,102,91,99,95,101,105,94,103,93,89,98,98,101,108,99,97,100,113,99,97,95,99,97,83,86,103,91,109,105,96,99,98,99,104,102,93,105,83,109,98,97,98,107,94,96,101,104,91,84,91,100,100,96,80,89,100,98,96,95,91,88,94,92,107,83,101,100,86,97,98,100,99,101,98,86,97,79,92,84,101,98,94,92,101,97,96,89,95,100,93,100,102,90,108,94,95,101,102,94,89,100,87,98,95,99,90,114,94,68,106,89,113,94,104,102,83,94,100,96,89,98,98,98,93,104,88,98,101,99,100,92,91,86,93,91,113,90,105,101,101,86,112,88,95,91,79,102,98,92,111,95,96,92,97,87,94,91,99,89,91,111,107,104,86,73,108,98,95,117,100,99,98,98,82,95,109,94,88,104,99,104,84,105,105,109,101,94,95,92,102,85,92,86,102,108,95,101,104,102,95,86,100,104,109,96,93,102,87,99,92,95,98,99,96,99,104,93,97,97,98,90,91,100,95,103,109,98,95,104,85,106,96,89,102,90,91,97,84,90,99,101,98,94,104,102,97,108,89,103,89,111,108,101,87,101,85,92,95,93,93,105,96,82,94,82,83,95,107,99,109,83,90,102, +744.52148,91,97,86,86,103,85,99,90,105,93,104,104,97,97,99,91,97,87,82,97,95,87,102,99,93,98,96,95,101,100,94,95,82,101,111,100,95,94,102,102,101,101,103,86,100,107,95,84,107,93,98,97,104,91,108,94,91,103,107,101,99,95,109,76,102,114,109,102,95,99,108,96,93,98,99,101,99,106,109,105,101,66,97,103,86,96,65,93,105,85,101,98,89,90,87,93,97,97,117,92,85,109,101,91,77,107,103,105,94,100,96,104,106,103,89,86,100,99,118,101,93,104,104,101,88,93,100,91,101,90,111,118,92,93,66,90,86,104,89,93,87,108,94,117,87,88,96,102,104,96,111,104,96,91,87,98,109,88,96,101,97,100,90,99,98,77,98,100,98,95,97,108,96,90,106,95,101,93,102,100,96,99,89,95,93,90,93,100,95,84,83,99,103,98,86,104,107,104,100,61,103,93,101,93,101,121,94,109,95,100,95,106,92,87,93,95,97,97,105,105,97,101,100,99,90,104,120,106,102,89,110,94,104,85,114,91,100,105,113,108,99,91,95,101,103,102,99,91,110,101,101,100,97,105,102,95,86,100,91,95,74,107,94,97,82,102,109,93,105,101,100,99,108,113,110,99,116,105,89,91,90,100,87,101,99,102,91,98,90,102,103,94,96,94,99,93,95,91,102,102,94,96,103,101,91,96,100,103,97,103,96,102,102,94,93,99,102,110,94,109,89,100,103,98,92,86,90,93,123,97,91,109,93,89,100,101,98,109,97,95,97,107,100,96,79,98,96,100,95,107,100,100,100,86,112,95,112,96,98,109,102,110,101,100,97,92,115,117,99,105,108,92,113,77,95,96,82,105,97,98,107,97,95,94,93,86,103,99,96,97,91,72,91,99,101,87,89,97,95,82,91,91,80,86,104,88,55,94,100,103,104,107,92,97,81,97,113,92,94,106,101,93,98,102,93,95,98,93,95,100,85,110,86,105,104,94,101,103,87,93,104,93,103,97,95,93,83,87,93,97,94,104,98,101,102,105,106,97,100,94,100,95,104,100,90,103,97,102,87,104,96,93,92,86,102,97,102,103,93,93,85,105,106,70,89,91,99,95,101,102,110,90,74,99,107,92,101,84,89,82,97,72,100,103,93,101,92,103,96,109,97,102,81,102,108,93,95,88,100,98,94,103,98,86,107,101,97,80,89,91,90,114,95,91,107,90,102,99,91,96,77,91,91,98,116,98,97,83,112,83,105,103,87,110,98,91,96,97,93,87,102,102,87,93,91,90,106,90,93,98,77,92,99,91,93,104,105,100,88,116,93,91,91,86,101,82,88,82,97,72,95,98,94,101,95,105,93,88,98,91,72,104,100,100,111,93,98,91,94,100,102,96,107,107,80,92,97,98,117,101,122,79,113,101,98,98,93,105,95,96,91,99,96,99,91,95,83,87,94,92,95,97,98,103,100,80,99,88,96,107,96,92,97,100,101,100,102,99,112,98,92,101,93,104,97,105,101,96,88,88,110,103,106,103,97,97,88,86,101,96,96,96,94,94,80,87,91,93,100,100,87,104,95,106,98,100,98,88,95,87,93,106,96,90,83,103,97,101,66,92,89,104,91,97,95,108,105,87,100,98,100,109,101,101,101,92,90,109,107,105,106,102,97,98,97,98,104,107,85,100,87,91,90,87,108,97,100,104,94,95,100,97,86,95,98,85,96,96,95,100,97,75,95,100,87,103,102,102,98,97,58,101,107,98,101,90,102,97,98,93,94,93,92,102,91,104,92,96,103,101,90,85,100,97,94,90,87,102,105,96,89,106,88,95,105,105,109,116,109,94,88,86,108,105,99,110,102,105,107,100,96,101,103,101,98,104,94,112,94,93,96,104,86,99,91,112,99,91,104,99,91,86,101,98,97,93,94,95,97,102,113,88,80,100,92,106,98,102,106,103,92,99,104,99,106,93,100,100,113,87,99,100,92,97,101,67,100,94,96,94,97,105,85,110,99,89,81,109,108,101,86,89,123,105,92,89,90,107,100,107,86,113,103,90,87,89,89,105,88,94,89,92,106,97,106,87,91,94,98,95,106,87,92,104,90,94,98,97,101,105,101,104,113,94,127,101,96,93,86,96,99,102,100,120,90,98,101,108,100,102,101,105,102,104,108,100,108,102,96,96,98,88,97,94,103,79,81,63,101,110,92,106,99,101,74,101,99,94,100,92,80,103,98,95,93,111,103,103,94,54,77,100,113,86,93,86,86,107,94,100,100,99,70,110,95,98,97,99,94,98,90,91,96,95,96,108,101,87,109,101,96,103,101,83,99,98,94,102,102,96,78,91,97,92,110,92,113,91,104,89,107,94,94,93,97,102,95,98,97,55,86,91,94,93,97,100,109,100,91,102,86,112,108,96,86,101,93,95,101,86,97,107,126,95,95,91,94,113,98,88,92,91,106,82,94,93,91,92,110,96,93,102,95,97,92,86,87,99,102,107,72,92,88,98,83,84,105,103,110,106,98,80,105,98,97,93,85,113,97,89,105,105,94,94,101,100,80,96,93,91,94,90,95,88,97,92,94,100,91,84,98,89,84,88,90,90,93,98,104,87,109,87,91,111,88,87,98,93,91,101,103,84,95,85,99,92,91,103,112,88,96,100,100,102,91,93,85,84,113,100,88,91,102,96,102,102,104,85,91,94,86,73,96,95,91,112,99,107,88,90,124,89,87,101,97,99,104,98,92,101,93,96,83,109,93,99,97,94,86,98,98,99,92,93,76,99,94,98,98,93,83,96,94,98,107,96,108,93,80,97,92,91,99,94,120,93,102,92,86,104,93,83,88,92,93,108,92,79,92,96,109,89,98,102,92,106,109,105,94,82,84,92,100,106,94,89,90,96,99,95,104,92,97,107,90,102,92,100,91,98,99,96,96,85,100,102,96,91,95,84,97,96,96,98,109,94,103,89,91,94,102,97,99,91,92,110,100,109,94,99,102,76,75,99,107,87,88,90,106,86,100,98,101,85,91,104,106,88,98,104,97,98,92,100,101,113,109,99,99,108,93,93,91,99,96,97,105,86,100,92,101,97,89,97,101,99,90,107,86,95,98,96,104,92,112,96,113,104,94,80,79,91,104,95,91,89,105,92,100,101,75,95,86,92,107,100,94,97,103,79,100,107,83,107,95,83,87,95,100,93,92,93,103,94,88,105,103,93,97,107,92,94,96,84,78,100,105,99,90,93,106,94,118,92,95,102,93,105,100,98,92,95,106,117,93,91,88,95,98,92,100,94,99,113,98,91,102,102,86,94,91,93,80,86,101,97,98,95,98,99,83,90,100,94,87,106,85,98,106,109,94,98,101,94,89,100,74,89,104,105,100,88,97,96,101,99,101,95,98,90,89,89,108,96,91,94,99,96,93,91,96,97,94,104,103,102,99,108,112,92,90,87,100,96,108,91,96,97,101,88,97,98,97,95,90,89,96,79,102,97,107,97,95,95,105,99,109,97,116,90,108,79,90,104,87,110,94,98,83,101,95,113,95,90,103,96,92,103,105,100,117,98,101,91,93,103,83,90,109,84,92,90,87,96,97,99,97,90,90,91,97,95,106,96,99,90,96,98,87,90,100,104,95,98,98,109,99,105,103,85,68,88,94,105,96,101,94,102,109,101,101,111,86,93,110,97,83,100,101,85,100,110,97,109,95,96,97,102,87,100,94,90,87,103,97,103,92,102,94,95,97,109,96,94,108,94,108,102,98,100,90,100,97,91,98,117,91,90,100,99,94,106,101,102,94,92,100,89,93,103,94,98,100,100,102,98,101,98,96,100,100,102,96,102,94,98,104,97,87,86,98,94,90,103,86,93,100,100,86,95,101,117,89,97,107,69,93,96,112,92,98,99,68,97,100,91,104,108,94,106,103,95,97,97,92,98,94,103,80,84,97,98,96,98,88,96,103,104,96,98,93,105,90,100,95,93,102,101,93,93,102,99,93,86,96,87,96,93,100,92,105,87,90,92,93,95,98,101,113,96,84,97,74,102,98,100,107,107,92,97,96,101,94,85,93,87,100,95,94,102,98,100,100,121,111,113,84,107,98,103,99,97,98,97,92,104,95,106,107,103,100,91,83,111,92,105,100,102,99,111,102,93,83,93,94,100,100,102,94,83,99,83,106,110,96,105,109,102,92,111,101,92,91,98,99,89,80,90,89,93,96,98,80,92,92,92,88,103,99,99,99,113,99,102,96,90,106,96,111,103,102,91,90,89,101,104,97,93,87,98,105,102,93,93,101,106,100,92,90,106,95,104,113,96,103,94,103,97,93,94,107,86,94,92,109,90,97,97,108,112,88,95,111,98,97,99,94,95,79,100,99,104,89,99,101,85,102,104,106,83,97,87,105,115,90,110,92,90,103,95,100,108,92,104,102,96,95,104,112,96,100,90,100,100,98,88,88,87,97,98,88,99,92,97,86,106,100,108,100,103,87,95,102,102,98,97,96,111,105,86,112,85,91,103,85,82,100,88,101,105,89,102,95,98,116,93,87,105,113,97,113,107,118,94,94,108,102,101,102,90,114,96,114,106,91,96,89,102,99,106,95,102,101,100,87,97,85,97,104,96,102,104,97,97,84,93,90,100,111,107,91,94,125,97,92,62,91,89,82,89,98,98,92,99,85,98,106,100,89,131,105,64,101,96,92,95,96,88,87,99,93,90,89,108,102,113,94,97,94,102,98,107,101,99,89,100,95,88,76,98,101,100,102,86,90,97,95,94,95,87,98,104,103,107,86,95,100,115,112,96,95,100,88,99,106,92,95,101,92,98,93,107,83,88,100,100,93,102,101,84,117,103,99,102,101,110,92,94,78,120,102,105,111,100,90,105,104,92,80,101, +744.6629,96,107,93,86,82,105,100,94,77,92,90,86,98,105,97,99,99,107,100,85,104,101,102,84,92,114,90,109,94,111,89,86,99,88,101,93,101,100,90,95,96,83,102,96,103,100,82,101,100,77,105,105,81,90,93,84,96,87,106,87,97,102,96,97,99,100,73,96,91,91,87,102,77,96,95,101,97,81,105,90,88,98,94,101,100,94,85,92,114,87,92,111,98,118,82,107,99,90,92,95,94,100,90,91,88,92,99,87,95,93,87,92,100,88,97,109,103,101,100,108,87,91,120,81,106,112,106,95,105,88,102,91,82,89,94,96,103,94,94,83,90,94,93,99,95,101,85,90,101,110,93,92,85,88,109,85,102,95,87,100,85,92,96,103,99,108,104,91,90,102,97,83,100,79,95,122,103,72,75,113,94,111,92,101,94,94,96,104,93,102,82,93,95,96,81,97,71,96,95,106,95,101,90,98,96,97,117,105,104,106,86,99,97,97,98,97,113,99,92,103,94,99,91,99,100,100,97,100,92,90,111,97,94,103,94,110,92,94,94,96,99,100,71,91,89,95,104,98,104,102,105,89,101,92,91,93,95,91,98,91,69,104,104,96,89,90,113,96,82,99,98,88,95,94,126,97,92,122,92,100,105,90,88,91,114,102,98,78,91,90,95,99,94,102,104,109,91,86,100,97,99,91,101,108,88,105,102,84,103,90,98,95,92,86,61,99,93,101,93,90,114,110,108,94,90,96,104,96,104,92,90,92,95,104,93,94,101,96,91,95,107,88,103,99,94,91,92,103,106,99,70,91,94,97,90,105,90,91,98,87,88,100,97,101,91,93,84,91,90,85,99,102,108,97,62,94,110,92,95,83,99,96,62,99,125,89,110,86,100,97,113,94,77,90,100,82,100,88,95,95,100,86,92,91,92,74,99,106,94,75,89,93,105,96,103,88,99,103,95,101,94,100,102,102,87,84,91,88,106,109,91,86,91,101,86,86,96,88,90,105,94,87,104,105,97,90,77,97,92,103,100,81,88,99,89,98,99,95,104,95,115,100,95,107,95,100,86,96,97,70,92,99,103,85,87,91,94,99,106,105,95,97,109,97,99,91,106,97,90,100,103,86,101,90,97,83,81,106,103,97,87,108,93,101,90,100,86,101,103,92,107,103,97,98,94,94,99,133,101,87,88,96,89,96,103,87,103,97,86,112,90,100,93,77,108,100,97,91,91,90,100,102,86,82,91,96,100,111,104,88,105,108,87,102,90,111,89,94,105,104,96,100,91,90,95,93,84,100,94,112,95,92,99,88,101,98,90,109,99,91,83,91,74,86,99,96,91,116,98,96,101,125,89,92,105,91,98,102,104,92,99,95,98,94,99,96,91,99,87,96,91,95,101,101,88,99,96,108,90,91,113,95,104,87,101,97,96,112,102,101,93,106,87,86,86,108,97,86,105,100,99,96,97,93,81,97,95,96,91,95,80,101,98,101,94,94,99,95,87,90,85,109,112,97,95,85,99,101,97,99,109,95,108,99,96,98,92,101,109,96,96,95,103,95,92,108,92,92,83,108,78,94,97,90,102,92,95,86,91,86,74,85,78,107,101,91,90,96,82,104,94,89,106,109,76,101,85,97,87,98,94,103,94,107,100,95,103,91,101,96,77,97,83,91,84,94,104,103,96,72,85,93,104,106,87,85,79,89,109,104,90,85,106,83,107,84,88,91,93,106,97,95,95,94,84,97,90,89,108,91,106,100,106,104,91,100,99,101,95,99,108,112,100,83,88,99,93,90,87,99,101,87,98,104,93,93,80,95,97,95,90,95,83,75,90,90,94,104,94,99,93,91,101,92,101,110,111,78,96,97,109,101,99,94,110,99,93,110,81,84,105,92,106,90,76,104,84,97,92,93,94,96,101,93,99,103,131,102,96,106,94,95,87,104,95,92,88,104,107,100,99,80,72,108,104,105,93,105,100,88,95,86,100,94,87,110,99,84,96,92,113,95,85,98,90,100,92,105,97,103,103,92,114,103,104,94,98,101,105,106,96,104,93,103,78,102,88,97,85,90,108,104,98,92,106,87,93,95,97,101,94,86,90,90,106,99,97,96,105,95,100,97,97,90,97,94,103,90,103,115,90,99,95,91,98,97,94,73,92,99,77,100,97,97,108,104,105,94,86,102,104,104,92,87,105,102,99,86,102,103,102,97,110,94,87,96,104,93,101,88,95,101,108,91,94,106,117,101,111,82,73,99,101,85,79,101,85,95,109,98,108,89,82,102,96,97,92,109,87,101,89,91,87,114,99,108,88,97,89,88,83,102,101,84,92,99,95,87,90,91,103,101,118,90,94,90,86,96,106,95,96,110,90,98,92,87,100,84,96,94,85,65,95,94,103,99,98,95,93,114,105,84,72,88,97,96,96,93,96,105,109,101,100,88,103,86,89,112,97,87,97,68,92,88,91,101,93,99,102,101,88,63,89,90,90,126,95,93,104,114,89,105,106,101,95,91,101,89,110,100,86,112,104,85,96,97,94,94,93,91,95,102,98,105,88,99,91,95,117,120,83,97,98,81,88,91,110,109,106,93,96,97,80,86,71,100,92,101,95,88,101,112,99,58,91,92,90,102,89,84,98,103,99,92,114,99,93,80,124,100,105,102,106,97,92,105,105,99,109,99,97,114,96,93,105,102,100,105,93,96,96,105,98,105,92,94,92,95,101,92,100,105,95,98,92,95,86,101,91,96,98,77,102,103,105,106,96,82,92,99,103,98,82,88,110,101,95,96,94,85,75,105,110,98,114,100,102,94,122,90,80,91,108,86,96,72,112,97,93,117,111,84,101,95,111,99,93,106,69,87,91,100,106,107,91,72,102,77,91,105,96,100,97,94,88,92,96,103,102,99,97,94,103,100,103,98,91,105,100,107,110,97,107,98,110,89,100,91,99,95,88,99,101,101,80,112,95,114,104,96,84,105,87,117,107,93,102,100,97,94,106,96,98,100,109,90,102,102,97,89,94,91,95,101,105,107,98,99,75,101,97,97,101,93,84,100,90,103,106,104,110,116,98,100,106,88,95,104,108,92,108,93,96,86,102,102,98,102,86,99,104,101,81,104,88,101,95,62,97,82,87,86,96,106,68,68,104,82,101,90,93,79,76,80,95,114,105,92,103,99,97,88,103,85,87,94,108,91,111,105,95,92,98,101,105,92,119,104,113,89,87,96,93,87,80,93,102,101,100,94,100,92,79,101,93,96,95,103,105,95,91,94,104,90,89,107,87,100,101,105,92,100,109,88,92,89,87,108,97,90,85,113,93,94,90,88,105,83,88,94,79,92,99,100,93,112,89,87,100,119,102,96,103,108,100,111,84,87,102,89,101,104,96,89,114,112,101,89,100,109,96,107,116,84,114,89,92,99,90,97,71,107,95,103,103,82,97,93,87,98,89,107,104,85,104,94,106,95,94,108,110,104,113,95,95,93,103,94,101,98,99,101,104,97,77,97,107,115,90,88,96,88,108,65,86,89,98,88,96,113,93,113,85,95,102,99,97,91,101,94,101,99,89,91,102,91,89,98,91,118,100,86,99,101,93,97,98,81,90,91,91,105,117,96,101,100,93,87,104,99,95,108,99,122,99,98,97,103,76,99,87,105,98,97,105,92,94,99,104,100,94,112,98,93,100,84,103,102,96,89,92,95,121,93,80,105,88,100,101,81,90,96,110,88,98,97,100,112,74,100,90,100,75,86,102,86,122,107,106,100,79,107,94,99,111,102,114,91,103,91,88,98,88,95,92,98,96,100,100,98,100,102,95,103,96,89,96,81,101,99,96,85,105,95,91,95,91,109,95,100,103,110,113,101,81,105,99,101,102,101,94,95,91,99,104,89,96,87,93,91,105,93,100,111,106,109,96,109,117,98,91,110,95,96,91,94,94,97,82,103,96,104,101,109,97,105,106,95,96,97,106,92,96,88,91,102,98,108,89,105,110,104,106,90,99,91,98,90,103,82,111,96,96,109,103,112,94,99,92,102,118,90,101,109,95,94,97,100,114,91,93,88,100,92,90,94,95,108,100,96,113,100,106,95,100,94,95,96,117,123,103,105,110,92,95,98,101,100,91,83,86,92,100,99,98,100,89,106,91,112,99,87,124,92,86,106,113,106,104,108,116,96,94,106,98,117,91,108,97,99,100,84,112,96,102,90,90,99,88,88,106,100,98,95,97,100,102,91,112,93,97,90,89,104,98,94,115,105,110,91,87,91,106,94,107,86,84,107,82,89,90,108,100,103,93,97,101,93,90,95,95,98,103,101,106,99,95,90,86,93,105,102,98,95,103,96,93,121,105,94,98,98,94,96,96,100,113,89,96,95,76,95,94,79,105,105,93,92,111,91,95,116,86,104,91,97,93,87,106,101,95,90,113,89,101,82,83,123,92,108,113,90,97,101,98,112,100,82,96,110,103,93,84,75,94,98,89,93,110,100,89,100,105,91,89,107,95,88,97,88,129,97,89,95,96,96,104,95,96,90,91,95,97,90,105,102,91,99,94,99,99,110,91,95,101,105,95,94,102,69,97,97,94,90,101,107,101,96,102,92,91,102,88,100,99,98,106,103,78,98,106,114,87,88,108,96,90,117,96,123,92,99,104,107,88,90,103,100,96,101,98,117,105,99,96,115,108,108,98,100,92,110,100,96,97,97,107,82,87,93,97,97,91,88,81,82,114,97,113,100,105,103,92,91,90,97,106,106,98,90,83,90,98,98,96,102,104,96,89,75,77,101,93,88,83,129,101,98,96,94,101,86,100,91,68,109,106,119,91,93,94,114,101,92,97,101,95,90,96,110,90,112,110,97,103,100,110,106,108,122,110,92,88,109,114,107,96,87,99,99, + + +Date and Time: Wed Aug 13 21:47:04 2025 +Software Version: 4.28.30050.0 +Temperature (C): -30 +Model: DC-152Q-C00-FI +Data Type: Counts +Acquisition Mode: Single Scan +Trigger Mode: Internal +Exposure Time (secs): 10 +Readout Mode: Full Resolution Image +Horizontal Binning: 1 +Vertical Binning: 1 +Clockwise rotation: false +Anti-Clockwise rotation: false +Horizontally flipped: false +Vertically flipped: false +Vertical Shift Speed (usecs): 0 +Pixel Readout Rate (MHz): 200 +Serial Number: 745 +Pre-Amplifier Gain: 16-bit (low noise & high well capacity) +Spurious Noise Filter: On +Photon counted: false +Data Averaging Filter Mode: No Filter +Electronic Shuttering Mode: Global +Acton SpectraPro 2300i: +Serial Number: +Wavelength (nm): 570 +Grating Groove Density (l/mm):150 + diff --git a/makeitwright/datasets/__init__.py b/makeitwright/datasets/__init__.py new file mode 100644 index 0000000..42c258c --- /dev/null +++ b/makeitwright/datasets/__init__.py @@ -0,0 +1,7 @@ +import pathlib + + +__all__ = ["PL"] + + +PL = pathlib.Path(__file__).resolve().parent / "PL_hea_entropy_ex10sec_obj1_lowpower250um 1.asc"